diff --git a/Cargo.toml b/Cargo.toml index bc51f617d..056d10d46 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,17 +24,17 @@ serde = { version = "^1.0", features = ["derive"] } termcolor = "^1.2" walkdir = "^2.3" -tree-sitter = "=0.22.6" -tree-sitter-java = "=0.21.0" -tree-sitter-kotlin = "0.3.6" -tree-sitter-typescript = "=0.21.2" -tree-sitter-javascript = "=0.21.4" -tree-sitter-python = "=0.21.0" -tree-sitter-rust = "=0.21.2" -tree-sitter-preproc = { path = "./tree-sitter-preproc", version = "=0.20.2" } -tree-sitter-ccomment = { path = "./tree-sitter-ccomment", version = "=0.20.2" } -tree-sitter-mozcpp = { path = "./tree-sitter-mozcpp", version = "=0.20.3" } -tree-sitter-mozjs = { path = "./tree-sitter-mozjs", version = "=0.20.2" } +tree-sitter = "=0.25.3" +tree-sitter-java = "=0.23.5" +tree-sitter-kotlin-ng = "1.1.0" +tree-sitter-typescript = "=0.23.2" +tree-sitter-javascript = "=0.23.1" +tree-sitter-python = "=0.23.6" +tree-sitter-rust = "=0.23.2" +tree-sitter-preproc = { path = "./tree-sitter-preproc", version = "=0.20.3" } +tree-sitter-ccomment = { path = "./tree-sitter-ccomment", version = "=0.20.3" } +tree-sitter-mozcpp = { path = "./tree-sitter-mozcpp", version = "=0.20.4" } +tree-sitter-mozjs = { path = "./tree-sitter-mozjs", version = "=0.20.3" } [dev-dependencies] insta = { version = "1.29.0", features = ["yaml", "json", "redactions"] } diff --git a/enums/Cargo.toml b/enums/Cargo.toml index a917c5c14..ad1c8505d 100644 --- a/enums/Cargo.toml +++ b/enums/Cargo.toml @@ -8,17 +8,17 @@ edition = "2021" clap = { version = "^4.0", features = ["derive"] } askama = "^0.12" -tree-sitter = "=0.22.6" -tree-sitter-java = "=0.21.0" -tree-sitter-kotlin = "0.3.6" -tree-sitter-typescript = "=0.21.2" -tree-sitter-javascript = "=0.21.4" -tree-sitter-python = "=0.21.0" -tree-sitter-rust = "=0.21.2" -tree-sitter-preproc = { path = "../tree-sitter-preproc", version = "=0.20.2" } -tree-sitter-ccomment = { path = "../tree-sitter-ccomment", version = "=0.20.2" } -tree-sitter-mozcpp = { path = "../tree-sitter-mozcpp", version = "=0.20.3" } -tree-sitter-mozjs = { path = "../tree-sitter-mozjs", version = "=0.20.2" } +tree-sitter = "=0.25.3" +tree-sitter-java = "=0.23.5" +tree-sitter-kotlin-ng = "1.1.0" +tree-sitter-typescript = "=0.23.2" +tree-sitter-javascript = "=0.23.1" +tree-sitter-python = "=0.23.6" +tree-sitter-rust = "=0.23.2" +tree-sitter-preproc = { path = "./tree-sitter-preproc", version = "=0.20.3" } +tree-sitter-ccomment = { path = "./tree-sitter-ccomment", version = "=0.20.3" } +tree-sitter-mozcpp = { path = "./tree-sitter-mozcpp", version = "=0.20.4" } +tree-sitter-mozjs = { path = "./tree-sitter-mozjs", version = "=0.20.3" } [profile.release] strip = "debuginfo" diff --git a/enums/src/languages.rs b/enums/src/languages.rs index 92e378c90..f7d490495 100644 --- a/enums/src/languages.rs +++ b/enums/src/languages.rs @@ -3,7 +3,7 @@ use tree_sitter::Language; mk_langs!( // 1) Name for enum // 2) tree-sitter function to call to get a Language - (Kotlin, tree_sitter_kotlin), + (Kotlin, tree_sitter_kotlin_ng), (Java, tree_sitter_java), (Rust, tree_sitter_rust), (Cpp, tree_sitter_cpp), diff --git a/enums/src/macros.rs b/enums/src/macros.rs index 3846c251b..3b7c79191 100644 --- a/enums/src/macros.rs +++ b/enums/src/macros.rs @@ -19,17 +19,17 @@ macro_rules! mk_get_language { ( $( ($camel:ident, $name:ident) ),* ) => { pub fn get_language(lang: &Lang) -> Language { match lang { - Lang::Kotlin => tree_sitter_kotlin::language(), - Lang::Java => tree_sitter_java::language(), - Lang::Typescript => tree_sitter_typescript::language_typescript(), - Lang::Tsx => tree_sitter_typescript::language_tsx(), - Lang::Javascript => tree_sitter_javascript::language(), - Lang::Python => tree_sitter_python::language(), - Lang::Rust => tree_sitter_rust::language(), - Lang::Preproc => tree_sitter_preproc::language(), - Lang::Ccomment => tree_sitter_ccomment::language(), - Lang::Cpp => tree_sitter_mozcpp::language(), - Lang::Mozjs => tree_sitter_mozjs::language(), + Lang::Kotlin => tree_sitter_kotlin_ng::LANGUAGE.into(), + Lang::Java => tree_sitter_java::LANGUAGE.into(), + Lang::Typescript => tree_sitter_typescript::LANGUAGE_TYPESCRIPT.into(), + Lang::Tsx => tree_sitter_typescript::LANGUAGE_TSX.into(), + Lang::Javascript => tree_sitter_javascript::LANGUAGE.into(), + Lang::Python => tree_sitter_python::LANGUAGE.into(), + Lang::Rust => tree_sitter_rust::LANGUAGE.into(), + Lang::Preproc => tree_sitter_preproc::LANGUAGE.into(), + Lang::Ccomment => tree_sitter_ccomment::LANGUAGE.into(), + Lang::Cpp => tree_sitter_mozcpp::LANGUAGE.into(), + Lang::Mozjs => tree_sitter_mozjs::LANGUAGE.into(), } } }; diff --git a/generate-grammars/generate-mozcpp.sh b/generate-grammars/generate-mozcpp.sh index 81db27b68..0af5ce5a3 100755 --- a/generate-grammars/generate-mozcpp.sh +++ b/generate-grammars/generate-mozcpp.sh @@ -53,8 +53,14 @@ npm install -y # Exit tree-sitter-cpp directory popd -# Copy tree-sitter-cpp `scanner.cc` functions into the `src` directory -cp --verbose $TS_CPP_CRATE/src/scanner.cc ./src/scanner.cc +# Copy tree-sitter-cpp `scanner.c` functions into the `src` directory +cp --verbose $TS_CPP_CRATE/src/scanner.c ./src/scanner.c + +# Since the tree-sitter-mozcpp `scanner.c` file contains the very same functions +# present in the tree-sitter-cpp `scanner.c` file, to avoid having a +# multiple symbol definition error during the linking phase, +# those functions will be assigned a new prefix. +sed -i 's/tree_sitter_cpp/tree_sitter_mozcpp/g' ./src/scanner.c # Exit tree-sitter-mozcpp directory popd diff --git a/generate-grammars/generate-mozjs.sh b/generate-grammars/generate-mozjs.sh index a0a662b3e..9ff20b574 100755 --- a/generate-grammars/generate-mozjs.sh +++ b/generate-grammars/generate-mozjs.sh @@ -12,7 +12,7 @@ TS_JS_CRATE="tree-sitter-javascript" JSON_CRATE_FILENAME=".cargo_vcs_info.json" # Get the current tree-sitter-javascript crate version -TS_JS_VERSION=`grep $TS_JS_CRATE Cargo.toml | cut -f2 -d "=" | tr -d ' ' | tr -d \"` +TS_JS_VERSION=`grep -m 1 $TS_JS_CRATE tree-sitter-mozjs/Cargo.toml | cut -f2 -d "," | cut -f2 -d "=" | tr -d ' ' | tr -d } | tr -d \"` # Name assigned to the compressed binary crate downloaded from crates.io CRATE_OUTPUT="$TS_JS_CRATE-download.gz" @@ -50,13 +50,14 @@ git checkout FETCH_HEAD # Exit tree-sitter-javascript directory popd -# Since the tree-sitter-mozjs `scanner.cc` file contains the very same functions -# present in the tree-sitter-javascript `scanner.cc` file, to avoid having a -# multiple symbols definitions error during the linking phase, -# to those functions will be assigned a new prefix and the relative -# output file will be saved into the `src` directory. -SED_PATTERN="s/tree_sitter_javascript_external_scanner_/tree_sitter_javascript_external_scanner_mozjs_/g" -sed $SED_PATTERN $TS_JS_CRATE/src/scanner.c > ./src/tree_sitter_javascript_scanner.c +# Copy tree-sitter-cpp `scanner.c` functions into the `src` directory +cp --verbose $TS_JS_CRATE/src/scanner.c ./src/scanner.c + +# Since the tree-sitter-mozjs `scanner.c` file contains the very same functions +# present in the tree-sitter-javascript `scanner.c` file, to avoid having a +# multiple symbol definition error during the linking phase, +# those functions will be assigned a new prefix. +sed -i 's/tree_sitter_javascript/tree_sitter_mozjs/g' ./src/scanner.c # Exit tree-sitter-mozjs directory popd diff --git a/src/checker.rs b/src/checker.rs index 4d60c3024..75c433b82 100644 --- a/src/checker.rs +++ b/src/checker.rs @@ -253,7 +253,7 @@ impl Checker for CppCode { return false; } if let Some(parent) = node.parent() { - return node.kind_id() == Cpp::IfStatement && parent.kind_id() == Cpp::IfStatement; + return parent.kind_id() == Cpp::ElseClause; } false } diff --git a/src/getter.rs b/src/getter.rs index 8428533df..a694c1815 100644 --- a/src/getter.rs +++ b/src/getter.rs @@ -396,10 +396,24 @@ impl Getter for RustCode { use Rust::*; match node.kind_id().into() { + // `||` is treated as an operator only if it's part of a binary expression. + // This prevents misclassification inside macros where closures without arguments (e.g., `let closure = || { /* ... */ };`) + // are not recognized as `ClosureExpression` and their `||` node is identified as `PIPEPIPE` instead of `ClosureParameters`. + // + // Similarly, exclude `/` when it corresponds to the third slash in `///` (`OuterDocCommentMarker`) + PIPEPIPE | SLASH => match node.parent() { + Some(parent) if matches!(parent.kind_id().into(), BinaryExpression) => HalsteadType::Operator, + _ => HalsteadType::Unknown + } + // Ensure `!` is counted as an operator unless it belongs to an `InnerDocCommentMarker` `//!` + BANG => match node.parent() { + Some(parent) if !matches!(parent.kind_id().into(), InnerDocCommentMarker) => HalsteadType::Operator, + _ => HalsteadType::Unknown + } LPAREN | LBRACE | LBRACK | EQGT | PLUS | STAR | Async | Await | Continue | For | If - | Let | Loop | Match | Return | Unsafe | While | BANG | EQ | COMMA | DASHGT | QMARK - | LT | GT | AMP | MutableSpecifier | DOTDOT | DOTDOTEQ | DASH | AMPAMP | PIPEPIPE - | PIPE | CARET | EQEQ | BANGEQ | LTEQ | GTEQ | LTLT | GTGT | SLASH | PERCENT + | Let | Loop | Match | Return | Unsafe | While | EQ | COMMA | DASHGT | QMARK + | LT | GT | AMP | MutableSpecifier | DOTDOT | DOTDOTEQ | DASH | AMPAMP + | PIPE | CARET | EQEQ | BANGEQ | LTEQ | GTEQ | LTLT | GTGT | PERCENT | PLUSEQ | DASHEQ | STAREQ | SLASHEQ | PERCENTEQ | AMPEQ | PIPEEQ | CARETEQ | LTLTEQ | GTGTEQ | Move | DOT | PrimitiveType | Fn | SEMI => HalsteadType::Operator, Identifier | StringLiteral | RawStringLiteral | IntegerLiteral | FloatLiteral @@ -478,13 +492,17 @@ impl Getter for CppCode { match node.kind_id().into() { DOT | LPAREN | LPAREN2 | COMMA | STAR | GTGT | COLON | SEMI | Return | Break | Continue | If | Else | Switch | Case | Default | For | While | Goto | Do | Delete - | New | Try | Catch | Throw | EQ | AMPAMP | PIPEPIPE | DASH | DASHDASH | DASHGT + | New | Try | Try2 | Catch | Throw | EQ | AMPAMP | PIPEPIPE | DASH | DASHDASH | DASHGT | PLUS | PLUSPLUS | SLASH | PERCENT | PIPE | AMP | LTLT | TILDE | LT | LTEQ | EQEQ | BANGEQ | GTEQ | GT | GT2 | PLUSEQ | BANG | STAREQ | SLASHEQ | PERCENTEQ | GTGTEQ | LTLTEQ | AMPEQ | CARET | CARETEQ | PIPEEQ | LBRACK | LBRACE | QMARK | COLONCOLON | PrimitiveType | TypeSpecifier | Sizeof => HalsteadType::Operator, Identifier | TypeIdentifier | FieldIdentifier | RawStringLiteral | StringLiteral - | NumberLiteral | True | False | Null | Nullptr | DOTDOTDOT => HalsteadType::Operand, + | NumberLiteral | True | False | Null | DOTDOTDOT => HalsteadType::Operand, + NamespaceIdentifier => match node.parent() { + Some(parent) if matches!(parent.kind_id().into(), NamespaceDefinition) => HalsteadType::Operand, + _ => HalsteadType::Unknown, + }, _ => HalsteadType::Unknown, } } diff --git a/src/langs.rs b/src/langs.rs index 819f5a976..9ee9e1a8a 100644 --- a/src/langs.rs +++ b/src/langs.rs @@ -53,7 +53,7 @@ mk_langs!( "kotlin", KotlinCode, KotlinParser, - tree_sitter_kotlin, + tree_sitter_kotlin_ng, [kt, kts], ["kotlin"] ), diff --git a/src/languages/language_cpp.rs b/src/languages/language_cpp.rs index 71b847fd7..c359fce00 100644 --- a/src/languages/language_cpp.rs +++ b/src/languages/language_cpp.rs @@ -7,493 +7,642 @@ pub enum Cpp { End = 0, Identifier = 1, HASHinclude = 2, - LF = 3, + PreprocIncludeToken2 = 3, HASHdefine = 4, LPAREN = 5, DOTDOTDOT = 6, COMMA = 7, RPAREN = 8, HASHif = 9, - HASHendif = 10, - HASHifdef = 11, - HASHifndef = 12, - HASHelse = 13, - HASHelif = 14, - PreprocDirective = 15, - PreprocArg = 16, - LPAREN2 = 17, - Defined = 18, - BANG = 19, - TILDE = 20, - DASH = 21, - PLUS = 22, - STAR = 23, - SLASH = 24, - PERCENT = 25, - PIPEPIPE = 26, - AMPAMP = 27, - PIPE = 28, - CARET = 29, - AMP = 30, - EQEQ = 31, - BANGEQ = 32, - GT = 33, - GTEQ = 34, - LTEQ = 35, - LT = 36, - LTLT = 37, - GTGT = 38, - SEMI = 39, - Typedef = 40, - Extern = 41, - Attribute2 = 42, - COLONCOLON = 43, - LBRACKLBRACK = 44, - RBRACKRBRACK = 45, - Declspec = 46, - Based = 47, - Cdecl = 48, - Clrcall = 49, - Stdcall = 50, - Fastcall = 51, - Thiscall = 52, - Vectorcall = 53, - MsRestrictModifier = 54, - MsUnsignedPtrModifier = 55, - MsSignedPtrModifier = 56, - Unaligned = 57, - Unaligned2 = 58, - LBRACE = 59, - RBRACE = 60, - LBRACK = 61, - RBRACK = 62, - EQ = 63, - Static = 64, - Register = 65, - Inline = 66, - ThreadLocal = 67, - Const = 68, - Volatile = 69, - Restrict = 70, - Atomic = 71, - Mutable = 72, - Constexpr = 73, - Signed = 74, - Unsigned = 75, - Long = 76, - Short = 77, - PrimitiveType = 78, - Enum = 79, - Class = 80, - Struct = 81, - Union = 82, - COLON = 83, - If = 84, - Else = 85, - Switch = 86, - Case = 87, - Default = 88, - While = 89, - Do = 90, - For = 91, - Return = 92, - Break = 93, - Continue = 94, - Goto = 95, - QMARK = 96, - STAREQ = 97, - SLASHEQ = 98, - PERCENTEQ = 99, - PLUSEQ = 100, - DASHEQ = 101, - LTLTEQ = 102, - GTGTEQ = 103, - AMPEQ = 104, - CARETEQ = 105, - PIPEEQ = 106, - DASHDASH = 107, - PLUSPLUS = 108, - Sizeof = 109, - DOT = 110, - DASHGT = 111, - NumberLiteral = 112, - LSQUOTE = 113, - USQUOTE = 114, - USQUOTE2 = 115, - U8SQUOTE = 116, - SQUOTE = 117, - CharLiteralToken1 = 118, - LDQUOTE = 119, - UDQUOTE = 120, - UDQUOTE2 = 121, - U8DQUOTE = 122, - DQUOTE = 123, - StringLiteralToken1 = 124, - EscapeSequence = 125, - SystemLibString = 126, - True = 127, - False = 128, - Null = 129, - Comment = 130, - Decltype2 = 131, - Final = 132, - Override = 133, - Virtual = 134, - Explicit = 135, - Public = 136, - Private = 137, - Protected = 138, - Auto = 139, - Typename = 140, - Template = 141, - GT2 = 142, - Operator = 143, - Delete = 144, - Friend = 145, - Noexcept2 = 146, - Throw = 147, - Namespace = 148, - Using = 149, - StaticAssert = 150, - CoReturn = 151, - CoYield = 152, - Try = 153, - Catch = 154, - CoAwait = 155, - New = 156, - DASHGTSTAR = 157, - LPARENRPAREN = 158, - LBRACKRBRACK = 159, - DQUOTEDQUOTE = 160, - This = 161, - Nullptr = 162, - LiteralSuffix = 163, - AloneMacro = 164, - AloneMacroCallToken1 = 165, - CACHETRYINSPECT = 166, - CACHETRYUNWRAP = 167, - FORWARD = 168, - FORWARDSETATTRIBUTE = 169, - IDBTRYINSPECT = 170, - IDBTRYUNWRAP = 171, - LSTRYINSPECT = 172, - LSTRYUNWRAP = 173, - SDBTRYINSPECT = 174, - SDBTRYUNWRAP = 175, - PSGET = 176, - PSGETANDSET = 177, - PSGETLOCKLESS = 178, - QMTRYINSPECT = 179, - QMNOTEONLYTRYUNWRAP = 180, - QMTRYUNWRAP = 181, - QMWARNONLYTRYUNWRAP = 182, - MOZDECLUSEGUARDOBJECTNOTIFIER = 183, - MOZALLOCATOR = 184, - MOZALLOWTEMPORARY = 185, - MOZALWAYSINLINE = 186, - MOZALWAYSINLINEEVENDEBUG = 187, - MOZASANBLACKLIST = 188, - MOZCANRUNSCRIPT = 189, - MOZCANRUNSCRIPTBOUNDARY = 190, - MOZCANRUNSCRIPTFORDEFINITION = 191, - MOZCOLD = 192, - MOZFALLTHROUGH = 193, - MOZFORMATPRINTF = 194, - MOZHAVEANALYZERNORETURN = 195, - MOZHAVEASANBLACKLIST = 196, - MOZHAVENEVERINLINE = 197, - MOZHAVENORETURN = 198, - MOZHAVENORETURNPTR = 199, - MOZHAVENOSANITIZEATTR = 200, - MOZHAVESIGNEDOVERFLOWSANITIZEATTR = 201, - MOZHAVEUNSIGNEDOVERFLOWSANITIZEATTR = 202, - MOZHEAPALLOCATOR = 203, - MOZHEAPCLASS = 204, - MOZIMPLICIT = 205, - MOZINHERITTYPEANNOTATIONSFROMTEMPLATEARGS = 206, - MOZINITOUTSIDECTOR = 207, - MOZISCLASSINIT = 208, - MOZISREFPTR = 209, - MOZISSMARTPTRTOREFCOUNTED = 210, - MOZMAYBEUNUSED = 211, - MOZMAYCALLAFTERMUSTRETURN = 212, - MOZMUSTOVERRIDE = 213, - MOZMUSTRETURNFROMCALLERIFTHISISARG = 214, - MOZMUSTUSE = 215, - MOZMUSTUSETYPE = 216, - MOZNEEDSMEMMOVABLEMEMBERS = 217, - MOZNEEDSMEMMOVABLETYPE = 218, - MOZNEEDSNOVTABLETYPE = 219, - MOZNEVERINLINE = 220, - MOZNEVERINLINEDEBUG = 221, - MOZNONHEAPCLASS = 222, - MOZNONNULL = 223, - MOZNONNULLRETURN = 224, - MOZNONAUTOABLE = 225, - MOZNONMEMMOVABLE = 226, - MOZNONOWNINGREF = 227, - MOZNONPARAM = 228, - MOZNONTEMPORARYCLASS = 229, - MOZNORETURN = 230, - MOZNORETURNPTR = 231, - MOZNOADDREFRELEASEONRETURN = 232, - MOZNOARITHMETICEXPRINARGUMENT = 233, - MOZNODANGLINGONTEMPORARIES = 234, - MOZNOSANITIZESIGNEDOVERFLOW = 235, - MOZNOSANITIZEUNSIGNEDOVERFLOW = 236, - MOZONLYUSEDTOAVOIDSTATICCONSTRUCTORS = 237, - MOZOWNINGREF = 238, - MOZPOPDISABLENONTRIVIALUNIONWARNINGS = 239, - MOZPRETENDNORETURNFORSTATICANALYSIS = 240, - MOZPUSHDISABLENONTRIVIALUNIONWARNINGS = 241, - MOZRAII = 242, - MOZREQUIREDBASEMETHOD = 243, - MOZSTACKCLASS = 244, - MOZSTATICCLASS = 245, - MOZSTATICLOCALCLASS = 246, - MOZTEMPORARYCLASS = 247, - MOZTRIVIALCTORDTOR = 248, - MOZTSANBLACKLIST = 249, - MOZUNSAFEREF = 250, - MOZXPCOMABI = 251, - JSPUBLICAPI = 252, - RawStringLiteral = 253, - TranslationUnit = 254, - PreprocInclude = 255, - PreprocDef = 256, - PreprocFunctionDef = 257, - PreprocParams = 258, - PreprocCall = 259, - PreprocIf = 260, - PreprocIfdef = 261, - PreprocElse = 262, - PreprocElif = 263, - PreprocIf2 = 264, - PreprocIfdef2 = 265, - PreprocElse2 = 266, - PreprocElif2 = 267, - PreprocExpression = 268, - ParenthesizedExpression = 269, - PreprocDefined = 270, - UnaryExpression = 271, - CallExpression = 272, - ArgumentList = 273, - BinaryExpression = 274, - FunctionDefinition = 275, - Declaration = 276, - TypeDefinition = 277, - DeclarationModifiers = 278, - DeclarationSpecifiers = 279, - LinkageSpecification = 280, - AttributeSpecifier = 281, - Attribute = 282, - AttributeDeclaration = 283, - MsDeclspecModifier = 284, - MsBasedModifier = 285, - MsCallModifier = 286, - MsUnalignedPtrModifier = 287, - MsPointerModifier = 288, - DeclarationList = 289, - Declarator = 290, - FieldDeclarator = 291, - TypeDeclarator = 292, - AbstractDeclarator = 293, - ParenthesizedDeclarator = 294, - ParenthesizedDeclarator2 = 295, - ParenthesizedDeclarator3 = 296, - AbstractParenthesizedDeclarator = 297, - AttributedDeclarator = 298, - AttributedDeclarator2 = 299, - AttributedDeclarator3 = 300, - PointerDeclarator = 301, - PointerDeclarator2 = 302, - PointerDeclarator3 = 303, - AbstractPointerDeclarator = 304, - FunctionDeclarator = 305, - FunctionDeclarator2 = 306, - FunctionDeclarator3 = 307, - AbstractFunctionDeclarator = 308, - ArrayDeclarator = 309, - ArrayDeclarator2 = 310, - ArrayDeclarator3 = 311, - AbstractArrayDeclarator = 312, - InitDeclarator = 313, - CompoundStatement = 314, - StorageClassSpecifier = 315, - TypeQualifier = 316, - TypeSpecifier = 317, - SizedTypeSpecifier = 318, - EnumSpecifier = 319, - EnumeratorList = 320, - StructSpecifier = 321, - UnionSpecifier = 322, - FieldDeclarationList = 323, - FieldDeclarationListItem = 324, - FieldDeclaration = 325, - BitfieldClause = 326, - Enumerator = 327, - ParameterList = 328, - ParameterDeclaration = 329, - AttributedStatement = 330, - LabeledStatement = 331, - ExpressionStatement = 332, - IfStatement = 333, - SwitchStatement = 334, - CaseStatement = 335, - WhileStatement = 336, - DoStatement = 337, - ForStatement = 338, - ReturnStatement = 339, - BreakStatement = 340, - ContinueStatement = 341, - GotoStatement = 342, - Expression = 343, - CommaExpression = 344, - ConditionalExpression = 345, - AssignmentExpression = 346, - PointerExpression = 347, - UnaryExpression2 = 348, - BinaryExpression2 = 349, - UpdateExpression = 350, - CastExpression = 351, - TypeDescriptor = 352, - SizeofExpression = 353, - SubscriptExpression = 354, - CallExpression2 = 355, - ArgumentList2 = 356, - FieldExpression = 357, - CompoundLiteralExpression = 358, - ParenthesizedExpression2 = 359, - InitializerList = 360, - InitializerPair = 361, - SubscriptDesignator = 362, - FieldDesignator = 363, - CharLiteral = 364, - ConcatenatedString = 365, - StringLiteral = 366, - EmptyDeclaration = 367, - Decltype = 368, - ClassSpecifier = 369, - ClassName = 370, - VirtualSpecifier = 371, - VirtualFunctionSpecifier = 372, - ExplicitFunctionSpecifier = 373, - BaseClassClause = 374, - EnumBaseClause = 375, - DependentType = 376, - TemplateDeclaration = 377, - TemplateInstantiation = 378, - TemplateParameterList = 379, - TypeParameterDeclaration = 380, - VariadicTypeParameterDeclaration = 381, - OptionalTypeParameterDeclaration = 382, - TemplateTemplateParameterDeclaration = 383, - OptionalParameterDeclaration = 384, - VariadicParameterDeclaration = 385, - VariadicDeclarator = 386, - ReferenceDeclarator = 387, - OperatorCast = 388, - FieldInitializerList = 389, - FieldInitializer = 390, - FunctionDefinition2 = 391, - ConstructorSpecifiers = 392, - FunctionDefinition3 = 393, - Declaration2 = 394, - FunctionDefinition4 = 395, - Declaration3 = 396, - DefaultMethodClause = 397, - DeleteMethodClause = 398, - FriendDeclaration = 399, - AccessSpecifier = 400, - ReferenceDeclarator2 = 401, - ReferenceDeclarator3 = 402, - AbstractReferenceDeclarator = 403, - StructuredBindingDeclarator = 404, - RefQualifier = 405, - TrailingReturnType = 406, - Noexcept = 407, - ThrowSpecifier = 408, - TemplateType = 409, - TemplateMethod = 410, - TemplateFunction = 411, - TemplateArgumentList = 412, - NamespaceDefinition = 413, - NamespaceDefinitionName = 414, - UsingDeclaration = 415, - AliasDeclaration = 416, - StaticAssertDeclaration = 417, - ConditionClause = 418, - Declaration4 = 419, - ForRangeLoop = 420, - CoReturnStatement = 421, - CoYieldStatement = 422, - ThrowStatement = 423, - TryStatement = 424, - CatchClause = 425, - CoAwaitExpression = 426, - NewExpression = 427, - NewDeclarator = 428, - DeleteExpression = 429, - LambdaExpression = 430, - LambdaCaptureSpecifier = 431, - LambdaDefaultCapture = 432, - ParameterPackExpansion = 433, - ParameterPackExpansion2 = 434, - DestructorName = 435, - DependentName = 436, - DependentName2 = 437, - DependentName3 = 438, - ScopeResolution = 439, - QualifiedIdentifier = 440, - QualifiedIdentifier2 = 441, - QualifiedIdentifier3 = 442, - QualifiedIdentifier4 = 443, - OperatorName = 444, - UserDefinedLiteral = 445, - AloneMacroCall = 446, - CallMacroWithDeclFirstArg = 447, - MacroStatement = 448, - MacroAnnotation = 449, - TranslationUnitRepeat1 = 450, - PreprocParamsRepeat1 = 451, - PreprocIfInFieldDeclarationListRepeat1 = 452, - PreprocArgumentListRepeat1 = 453, - DeclarationRepeat1 = 454, - TypeDefinitionRepeat1 = 455, - TypeDefinitionRepeat2 = 456, - DeclarationSpecifiersRepeat1 = 457, - AttributeDeclarationRepeat1 = 458, - AttributedDeclaratorRepeat1 = 459, - PointerDeclaratorRepeat1 = 460, - FunctionDeclaratorRepeat1 = 461, - FunctionDeclaratorRepeat2 = 462, - AbstractFunctionDeclaratorRepeat1 = 463, - SizedTypeSpecifierRepeat1 = 464, - EnumeratorListRepeat1 = 465, - FieldDeclarationRepeat1 = 466, - ParameterListRepeat1 = 467, - CaseStatementRepeat1 = 468, - ArgumentListRepeat1 = 469, - InitializerListRepeat1 = 470, - InitializerPairRepeat1 = 471, - ConcatenatedStringRepeat1 = 472, - StringLiteralRepeat1 = 473, - ClassSpecifierRepeat1 = 474, - BaseClassClauseRepeat1 = 475, - TemplateParameterListRepeat1 = 476, - FieldInitializerListRepeat1 = 477, - OperatorCastDefinitionRepeat1 = 478, - StructuredBindingDeclaratorRepeat1 = 479, - ThrowSpecifierRepeat1 = 480, - TemplateArgumentListRepeat1 = 481, - TryStatementRepeat1 = 482, - LambdaCaptureSpecifierRepeat1 = 483, - AloneMacroCallRepeat1 = 484, - FieldIdentifier = 485, - NamespaceIdentifier = 486, - StatementIdentifier = 487, - TypeIdentifier = 488, - Error = 489, + LF = 10, + HASHendif = 11, + HASHifdef = 12, + HASHifndef = 13, + HASHelse = 14, + HASHelif = 15, + HASHelifdef = 16, + HASHelifndef = 17, + PreprocArg = 18, + PreprocDirective = 19, + LPAREN2 = 20, + Defined = 21, + BANG = 22, + TILDE = 23, + DASH = 24, + PLUS = 25, + STAR = 26, + SLASH = 27, + PERCENT = 28, + PIPEPIPE = 29, + AMPAMP = 30, + PIPE = 31, + CARET = 32, + AMP = 33, + EQEQ = 34, + BANGEQ = 35, + GT = 36, + GTEQ = 37, + LTEQ = 38, + LT = 39, + LTLT = 40, + GTGT = 41, + SEMI = 42, + Extension = 43, + Typedef = 44, + Virtual = 45, + Extern = 46, + Attribute2 = 47, + Attribute3 = 48, + COLONCOLON = 49, + LBRACKLBRACK = 50, + RBRACKRBRACK = 51, + Declspec = 52, + Based = 53, + Cdecl = 54, + Clrcall = 55, + Stdcall = 56, + Fastcall = 57, + Thiscall = 58, + Vectorcall = 59, + MsRestrictModifier = 60, + MsUnsignedPtrModifier = 61, + MsSignedPtrModifier = 62, + Unaligned = 63, + Unaligned2 = 64, + LBRACE = 65, + RBRACE = 66, + Signed = 67, + Unsigned = 68, + Long = 69, + Short = 70, + LBRACK = 71, + Static = 72, + RBRACK = 73, + EQ = 74, + Register = 75, + Inline = 76, + Inline2 = 77, + Inline3 = 78, + Forceinline = 79, + ThreadLocal = 80, + Thread = 81, + Const = 82, + Constexpr = 83, + Volatile = 84, + Restrict = 85, + Restrict2 = 86, + Atomic = 87, + Noreturn = 88, + Noreturn2 = 89, + Nonnull = 90, + Mutable = 91, + Constinit = 92, + Consteval = 93, + Alignas = 94, + Alignas2 = 95, + PrimitiveType = 96, + Enum = 97, + Class = 98, + Struct = 99, + Union = 100, + COLON = 101, + If = 102, + Else = 103, + Switch = 104, + Case = 105, + Default = 106, + While = 107, + Do = 108, + For = 109, + Return = 110, + Break = 111, + Continue = 112, + Goto = 113, + Try = 114, + Except = 115, + Finally = 116, + Leave = 117, + QMARK = 118, + STAREQ = 119, + SLASHEQ = 120, + PERCENTEQ = 121, + PLUSEQ = 122, + DASHEQ = 123, + LTLTEQ = 124, + GTGTEQ = 125, + AMPEQ = 126, + CARETEQ = 127, + PIPEEQ = 128, + AndEq = 129, + OrEq = 130, + XorEq = 131, + Not = 132, + Compl = 133, + LTEQGT = 134, + Or = 135, + And = 136, + Bitor = 137, + Xor = 138, + Bitand = 139, + NotEq = 140, + DASHDASH = 141, + PLUSPLUS = 142, + Sizeof = 143, + Alignof = 144, + Alignof2 = 145, + Alignof3 = 146, + Alignof4 = 147, + Alignof5 = 148, + Offsetof = 149, + Generic = 150, + Asm = 151, + Asm2 = 152, + Asm3 = 153, + Volatile2 = 154, + DOT = 155, + DOTSTAR = 156, + DASHGT = 157, + NumberLiteral = 158, + LSQUOTE = 159, + USQUOTE = 160, + USQUOTE2 = 161, + U8SQUOTE = 162, + SQUOTE = 163, + Character = 164, + LDQUOTE = 165, + UDQUOTE = 166, + UDQUOTE2 = 167, + U8DQUOTE = 168, + DQUOTE = 169, + StringContent = 170, + EscapeSequence = 171, + SystemLibString = 172, + True = 173, + False = 174, + NULL = 175, + Nullptr = 176, + Comment = 177, + Auto = 178, + Decltype3 = 179, + Final = 180, + Override = 181, + Explicit = 182, + Typename = 183, + Template = 184, + GT2 = 185, + Operator = 186, + Try2 = 187, + Delete = 188, + PureVirtualClauseToken1 = 189, + Friend = 190, + Public = 191, + Private = 192, + Protected = 193, + Noexcept2 = 194, + Throw = 195, + Namespace = 196, + Using = 197, + StaticAssert = 198, + Concept = 199, + CoReturn = 200, + CoYield = 201, + Catch = 202, + RDQUOTE = 203, + LRDQUOTE = 204, + URDQUOTE = 205, + URDQUOTE2 = 206, + U8RDQUOTE = 207, + CoAwait = 208, + New = 209, + Requires = 210, + DASHGTSTAR = 211, + LPARENRPAREN = 212, + LBRACKRBRACK = 213, + DQUOTEDQUOTE = 214, + This = 215, + LiteralSuffix = 216, + AloneMacro = 217, + AloneMacroCallToken1 = 218, + CACHETRYINSPECT = 219, + CACHETRYUNWRAP = 220, + FORWARD = 221, + FORWARDSETATTRIBUTE = 222, + IDBTRYINSPECT = 223, + IDBTRYUNWRAP = 224, + LSTRYINSPECT = 225, + LSTRYUNWRAP = 226, + SDBTRYINSPECT = 227, + SDBTRYUNWRAP = 228, + PSGET = 229, + PSGETANDSET = 230, + PSGETLOCKLESS = 231, + QMTRYINSPECT = 232, + QMNOTEONLYTRYUNWRAP = 233, + QMTRYUNWRAP = 234, + QMWARNONLYTRYUNWRAP = 235, + MacroStatement = 236, + MOZALLOCATOR = 237, + MOZALLOWTEMPORARY = 238, + MOZALWAYSINLINE = 239, + MOZALWAYSINLINEEVENDEBUG = 240, + MOZASANBLACKLIST = 241, + MOZCANRUNSCRIPT = 242, + MOZCANRUNSCRIPTBOUNDARY = 243, + MOZCANRUNSCRIPTFORDEFINITION = 244, + MOZCOLD = 245, + MOZFALLTHROUGH = 246, + MOZFORMATPRINTF = 247, + MOZHAVEANALYZERNORETURN = 248, + MOZHAVEASANBLACKLIST = 249, + MOZHAVENEVERINLINE = 250, + MOZHAVENORETURN = 251, + MOZHAVENORETURNPTR = 252, + MOZHAVENOSANITIZEATTR = 253, + MOZHAVESIGNEDOVERFLOWSANITIZEATTR = 254, + MOZHAVEUNSIGNEDOVERFLOWSANITIZEATTR = 255, + MOZHEAPALLOCATOR = 256, + MOZHEAPCLASS = 257, + MOZIMPLICIT = 258, + MOZINHERITTYPEANNOTATIONSFROMTEMPLATEARGS = 259, + MOZINITOUTSIDECTOR = 260, + MOZISCLASSINIT = 261, + MOZISREFPTR = 262, + MOZISSMARTPTRTOREFCOUNTED = 263, + MOZMAYBEUNUSED = 264, + MOZMAYCALLAFTERMUSTRETURN = 265, + MOZMUSTOVERRIDE = 266, + MOZMUSTRETURNFROMCALLERIFTHISISARG = 267, + MOZMUSTUSE = 268, + MOZMUSTUSETYPE = 269, + MOZNEEDSMEMMOVABLEMEMBERS = 270, + MOZNEEDSMEMMOVABLETYPE = 271, + MOZNEEDSNOVTABLETYPE = 272, + MOZNEVERINLINE = 273, + MOZNEVERINLINEDEBUG = 274, + MOZNONHEAPCLASS = 275, + MOZNONNULL = 276, + MOZNONNULLRETURN = 277, + MOZNONAUTOABLE = 278, + MOZNONMEMMOVABLE = 279, + MOZNONOWNINGREF = 280, + MOZNONPARAM = 281, + MOZNONTEMPORARYCLASS = 282, + MOZNORETURN = 283, + MOZNORETURNPTR = 284, + MOZNOADDREFRELEASEONRETURN = 285, + MOZNOARITHMETICEXPRINARGUMENT = 286, + MOZNODANGLINGONTEMPORARIES = 287, + MOZNOSANITIZESIGNEDOVERFLOW = 288, + MOZNOSANITIZEUNSIGNEDOVERFLOW = 289, + MOZONLYUSEDTOAVOIDSTATICCONSTRUCTORS = 290, + MOZOWNINGREF = 291, + MOZPOPDISABLENONTRIVIALUNIONWARNINGS = 292, + MOZPRETENDNORETURNFORSTATICANALYSIS = 293, + MOZPUSHDISABLENONTRIVIALUNIONWARNINGS = 294, + MOZRAII = 295, + MOZREQUIREDBASEMETHOD = 296, + MOZSTACKCLASS = 297, + MOZSTATICCLASS = 298, + MOZSTATICLOCALCLASS = 299, + MOZTEMPORARYCLASS = 300, + MOZTRIVIALCTORDTOR = 301, + MOZTSANBLACKLIST = 302, + MOZUNSAFEREF = 303, + MOZXPCOMABI = 304, + JSPUBLICAPI = 305, + RawStringDelimiter = 306, + RawStringContent = 307, + TranslationUnit = 308, + TopLevelItem = 309, + BlockItem = 310, + PreprocInclude = 311, + PreprocDef = 312, + PreprocFunctionDef = 313, + PreprocParams = 314, + PreprocCall = 315, + PreprocIf = 316, + PreprocIfdef = 317, + PreprocElse = 318, + PreprocElif = 319, + PreprocElifdef = 320, + PreprocIf2 = 321, + PreprocIfdef2 = 322, + PreprocElse2 = 323, + PreprocElif2 = 324, + PreprocElifdef2 = 325, + PreprocIf3 = 326, + PreprocIfdef3 = 327, + PreprocElse3 = 328, + PreprocElif3 = 329, + PreprocElifdef3 = 330, + PreprocIf4 = 331, + PreprocIfdef4 = 332, + PreprocElse4 = 333, + PreprocElif4 = 334, + PreprocElifdef4 = 335, + PreprocExpression = 336, + ParenthesizedExpression = 337, + PreprocDefined = 338, + UnaryExpression = 339, + CallExpression = 340, + ArgumentList = 341, + BinaryExpression = 342, + FunctionDefinition = 343, + Declaration = 344, + TypeDefinition = 345, + TypeDefinitionType = 346, + TypeDefinitionDeclarators = 347, + DeclarationModifiers = 348, + DeclarationSpecifiers = 349, + LinkageSpecification = 350, + AttributeSpecifier = 351, + Attribute = 352, + AttributeDeclaration = 353, + MsDeclspecModifier = 354, + MsBasedModifier = 355, + MsCallModifier = 356, + MsUnalignedPtrModifier = 357, + MsPointerModifier = 358, + DeclarationList = 359, + Declarator = 360, + FieldDeclarator = 361, + TypeDeclarator = 362, + AbstractDeclarator = 363, + ParenthesizedDeclarator = 364, + ParenthesizedDeclarator2 = 365, + ParenthesizedDeclarator3 = 366, + AbstractParenthesizedDeclarator = 367, + AttributedDeclarator = 368, + AttributedDeclarator2 = 369, + AttributedDeclarator3 = 370, + PointerDeclarator = 371, + PointerDeclarator2 = 372, + PointerTypeDeclarator = 373, + AbstractPointerDeclarator = 374, + FunctionDeclarator = 375, + FunctionDeclarator2 = 376, + FunctionDeclarator3 = 377, + AbstractFunctionDeclarator = 378, + ArrayDeclarator = 379, + ArrayDeclarator2 = 380, + ArrayDeclarator3 = 381, + AbstractArrayDeclarator = 382, + InitDeclarator = 383, + CompoundStatement = 384, + StorageClassSpecifier = 385, + TypeQualifier = 386, + AlignasQualifier = 387, + TypeSpecifier = 388, + SizedTypeSpecifier = 389, + EnumSpecifier = 390, + EnumeratorList = 391, + StructSpecifier = 392, + UnionSpecifier = 393, + FieldDeclarationList = 394, + FieldDeclarationListItem = 395, + FieldDeclaration = 396, + BitfieldClause = 397, + Enumerator = 398, + ParameterList = 399, + ParameterDeclaration = 400, + AttributedStatement = 401, + Statement = 402, + TopLevelStatement = 403, + LabeledStatement = 404, + ExpressionStatement = 405, + ExpressionStatement2 = 406, + IfStatement = 407, + ElseClause = 408, + SwitchStatement = 409, + CaseStatement = 410, + WhileStatement = 411, + DoStatement = 412, + ForStatement = 413, + ForStatementBody = 414, + ReturnStatement = 415, + BreakStatement = 416, + ContinueStatement = 417, + GotoStatement = 418, + SehTryStatement = 419, + SehExceptClause = 420, + SehFinallyClause = 421, + SehLeaveStatement = 422, + Expression = 423, + String = 424, + CommaExpression = 425, + ConditionalExpression = 426, + AssignmentExpression = 427, + PointerExpression = 428, + UnaryExpression2 = 429, + BinaryExpression2 = 430, + UpdateExpression = 431, + CastExpression = 432, + TypeDescriptor = 433, + SizeofExpression = 434, + AlignofExpression = 435, + OffsetofExpression = 436, + GenericExpression = 437, + SubscriptExpression = 438, + CallExpression2 = 439, + GnuAsmExpression = 440, + GnuAsmQualifier = 441, + GnuAsmOutputOperandList = 442, + GnuAsmOutputOperand = 443, + GnuAsmInputOperandList = 444, + GnuAsmInputOperand = 445, + GnuAsmClobberList = 446, + GnuAsmGotoList = 447, + ExtensionExpression = 448, + ArgumentList2 = 449, + FieldExpression = 450, + CompoundLiteralExpression = 451, + ParenthesizedExpression2 = 452, + InitializerList = 453, + InitializerPair = 454, + SubscriptDesignator = 455, + SubscriptRangeDesignator = 456, + FieldDesignator = 457, + CharLiteral = 458, + ConcatenatedString = 459, + StringLiteral = 460, + Null = 461, + EmptyDeclaration = 462, + PlaceholderTypeSpecifier = 463, + Decltype = 464, + Decltype2 = 465, + ClassDeclaration = 466, + ClassDeclarationItem = 467, + ClassSpecifier = 468, + ClassName = 469, + VirtualSpecifier = 470, + ExplicitFunctionSpecifier = 471, + BaseClassClause = 472, + EnumBaseClause = 473, + DependentType = 474, + TemplateDeclaration = 475, + TemplateInstantiation = 476, + TemplateParameterList = 477, + TypeParameterDeclaration = 478, + VariadicTypeParameterDeclaration = 479, + OptionalTypeParameterDeclaration = 480, + TemplateTemplateParameterDeclaration = 481, + OptionalParameterDeclaration = 482, + VariadicParameterDeclaration = 483, + VariadicDeclarator = 484, + ReferenceDeclarator = 485, + OperatorCast = 486, + FieldInitializerList = 487, + FieldInitializer = 488, + FunctionDefinition2 = 489, + ConstructorSpecifiers = 490, + FunctionDefinition3 = 491, + Declaration2 = 492, + TryStatement = 493, + FunctionDefinition4 = 494, + Declaration3 = 495, + DefaultMethodClause = 496, + DeleteMethodClause = 497, + PureVirtualClause = 498, + FriendDeclaration = 499, + AccessSpecifier = 500, + ReferenceDeclarator2 = 501, + ReferenceDeclarator3 = 502, + ReferenceDeclarator4 = 503, + AbstractReferenceDeclarator = 504, + StructuredBindingDeclarator = 505, + RefQualifier = 506, + FunctionDeclaratorSeq = 507, + FunctionAttributesStart = 508, + FunctionExceptionSpecification = 509, + FunctionAttributesEnd = 510, + FunctionPostfix = 511, + TrailingReturnType = 512, + Noexcept = 513, + ThrowSpecifier = 514, + TemplateType = 515, + TemplateMethod = 516, + TemplateFunction = 517, + TemplateArgumentList = 518, + NamespaceDefinition = 519, + NamespaceAliasDefinition = 520, + NamespaceSpecifier = 521, + NestedNamespaceSpecifier = 522, + UsingDeclaration = 523, + AliasDeclaration = 524, + StaticAssertDeclaration = 525, + ConceptDefinition = 526, + ForRangeLoop = 527, + ForRangeLoopBody = 528, + InitStatement = 529, + ConditionClause = 530, + Declaration4 = 531, + CoReturnStatement = 532, + CoYieldStatement = 533, + ThrowStatement = 534, + TryStatement2 = 535, + CatchClause = 536, + RawStringLiteral = 537, + SubscriptArgumentList = 538, + CoAwaitExpression = 539, + NewExpression = 540, + NewDeclarator = 541, + DeleteExpression = 542, + TypeRequirement = 543, + CompoundRequirement = 544, + Requirement = 545, + RequirementSeq = 546, + ConstraintConjunction = 547, + ConstraintDisjunction = 548, + RequirementClauseConstraint = 549, + RequiresClause = 550, + ParameterList2 = 551, + RequiresExpression = 552, + LambdaExpression = 553, + LambdaCaptureSpecifier = 554, + LambdaDefaultCapture = 555, + LambdaCaptureIdentifier = 556, + LambdaCaptureInitializer = 557, + LambdaCapture = 558, + FoldOperator = 559, + BinaryFoldOperator = 560, + UnaryLeftFold = 561, + UnaryRightFold = 562, + BinaryFold = 563, + FoldExpression = 564, + ParameterPackExpansion = 565, + ParameterPackExpansion2 = 566, + ParameterPackExpansion3 = 567, + DestructorName = 568, + DependentName = 569, + DependentName2 = 570, + DependentName3 = 571, + ScopeResolution = 572, + QualifiedIdentifier = 573, + QualifiedIdentifier2 = 574, + QualifiedIdentifier3 = 575, + QualifiedIdentifier4 = 576, + AssignmentExpression2 = 577, + OperatorName = 578, + UserDefinedLiteral = 579, + AloneMacroCall = 580, + CallMacroWithDeclFirstArg = 581, + MacroAnnotation = 582, + TranslationUnitRepeat1 = 583, + PreprocParamsRepeat1 = 584, + PreprocIfRepeat1 = 585, + PreprocIfInFieldDeclarationListRepeat1 = 586, + PreprocIfInEnumeratorListRepeat1 = 587, + PreprocIfInEnumeratorListNoCommaRepeat1 = 588, + PreprocArgumentListRepeat1 = 589, + DeclarationRepeat1 = 590, + TypeDefinitionRepeat1 = 591, + TypeDefinitionTypeRepeat1 = 592, + TypeDefinitionDeclaratorsRepeat1 = 593, + DeclarationSpecifiersRepeat1 = 594, + AttributeDeclarationRepeat1 = 595, + AttributedDeclaratorRepeat1 = 596, + PointerDeclaratorRepeat1 = 597, + ArrayDeclaratorRepeat1 = 598, + SizedTypeSpecifierRepeat1 = 599, + EnumeratorListRepeat1 = 600, + FieldDeclarationRepeat1 = 601, + ParameterListRepeat1 = 602, + CaseStatementRepeat1 = 603, + GenericExpressionRepeat1 = 604, + GnuAsmExpressionRepeat1 = 605, + GnuAsmOutputOperandListRepeat1 = 606, + GnuAsmInputOperandListRepeat1 = 607, + GnuAsmClobberListRepeat1 = 608, + GnuAsmGotoListRepeat1 = 609, + ArgumentListRepeat1 = 610, + InitializerListRepeat1 = 611, + InitializerPairRepeat1 = 612, + CharLiteralRepeat1 = 613, + ConcatenatedStringRepeat1 = 614, + StringLiteralRepeat1 = 615, + ClassDeclarationRepeat1 = 616, + ClassSpecifierRepeat1 = 617, + BaseClassClauseRepeat1 = 618, + TemplateParameterListRepeat1 = 619, + FieldInitializerListRepeat1 = 620, + OperatorCastDefinitionRepeat1 = 621, + ConstructorTryStatementRepeat1 = 622, + StructuredBindingDeclaratorRepeat1 = 623, + FunctionPostfixRepeat1 = 624, + ThrowSpecifierRepeat1 = 625, + TemplateArgumentListRepeat1 = 626, + SubscriptArgumentListRepeat1 = 627, + RequirementSeqRepeat1 = 628, + RequiresParameterListRepeat1 = 629, + LambdaCaptureSpecifierRepeat1 = 630, + AloneMacroCallRepeat1 = 631, + CallMacroWithDeclFirstArgRepeat1 = 632, + FieldIdentifier = 633, + NamespaceIdentifier = 634, + SimpleRequirement = 635, + StatementIdentifier = 636, + TypeIdentifier = 637, + Error = 638, } impl From for &'static str { @@ -503,20 +652,23 @@ impl From for &'static str { Cpp::End => "end", Cpp::Identifier => "identifier", Cpp::HASHinclude => "#include", - Cpp::LF => "\n", + Cpp::PreprocIncludeToken2 => "preproc_include_token2", Cpp::HASHdefine => "#define", Cpp::LPAREN => "(", Cpp::DOTDOTDOT => "...", Cpp::COMMA => ",", Cpp::RPAREN => ")", Cpp::HASHif => "#if", + Cpp::LF => "\n", Cpp::HASHendif => "#endif", Cpp::HASHifdef => "#ifdef", Cpp::HASHifndef => "#ifndef", Cpp::HASHelse => "#else", Cpp::HASHelif => "#elif", - Cpp::PreprocDirective => "preproc_directive", + Cpp::HASHelifdef => "#elifdef", + Cpp::HASHelifndef => "#elifndef", Cpp::PreprocArg => "preproc_arg", + Cpp::PreprocDirective => "preproc_directive", Cpp::LPAREN2 => "(", Cpp::Defined => "defined", Cpp::BANG => "!", @@ -540,9 +692,12 @@ impl From for &'static str { Cpp::LTLT => "<<", Cpp::GTGT => ">>", Cpp::SEMI => ";", + Cpp::Extension => "__extension__", Cpp::Typedef => "typedef", + Cpp::Virtual => "virtual", Cpp::Extern => "extern", Cpp::Attribute2 => "__attribute__", + Cpp::Attribute3 => "__attribute", Cpp::COLONCOLON => "::", Cpp::LBRACKLBRACK => "[[", Cpp::RBRACKRBRACK => "]]", @@ -561,23 +716,35 @@ impl From for &'static str { Cpp::Unaligned2 => "__unaligned", Cpp::LBRACE => "{", Cpp::RBRACE => "}", + Cpp::Signed => "signed", + Cpp::Unsigned => "unsigned", + Cpp::Long => "long", + Cpp::Short => "short", Cpp::LBRACK => "[", + Cpp::Static => "static", Cpp::RBRACK => "]", Cpp::EQ => "=", - Cpp::Static => "static", Cpp::Register => "register", Cpp::Inline => "inline", + Cpp::Inline2 => "__inline", + Cpp::Inline3 => "__inline__", + Cpp::Forceinline => "__forceinline", Cpp::ThreadLocal => "thread_local", + Cpp::Thread => "__thread", Cpp::Const => "const", + Cpp::Constexpr => "constexpr", Cpp::Volatile => "volatile", Cpp::Restrict => "restrict", + Cpp::Restrict2 => "__restrict__", Cpp::Atomic => "_Atomic", + Cpp::Noreturn => "_Noreturn", + Cpp::Noreturn2 => "noreturn", + Cpp::Nonnull => "_Nonnull", Cpp::Mutable => "mutable", - Cpp::Constexpr => "constexpr", - Cpp::Signed => "signed", - Cpp::Unsigned => "unsigned", - Cpp::Long => "long", - Cpp::Short => "short", + Cpp::Constinit => "constinit", + Cpp::Consteval => "consteval", + Cpp::Alignas => "alignas", + Cpp::Alignas2 => "_Alignas", Cpp::PrimitiveType => "primitive_type", Cpp::Enum => "enum", Cpp::Class => "class", @@ -596,6 +763,10 @@ impl From for &'static str { Cpp::Break => "break", Cpp::Continue => "continue", Cpp::Goto => "goto", + Cpp::Try => "__try", + Cpp::Except => "__except", + Cpp::Finally => "__finally", + Cpp::Leave => "__leave", Cpp::QMARK => "?", Cpp::STAREQ => "*=", Cpp::SLASHEQ => "/=", @@ -607,10 +778,34 @@ impl From for &'static str { Cpp::AMPEQ => "&=", Cpp::CARETEQ => "^=", Cpp::PIPEEQ => "|=", + Cpp::AndEq => "and_eq", + Cpp::OrEq => "or_eq", + Cpp::XorEq => "xor_eq", + Cpp::Not => "not", + Cpp::Compl => "compl", + Cpp::LTEQGT => "<=>", + Cpp::Or => "or", + Cpp::And => "and", + Cpp::Bitor => "bitor", + Cpp::Xor => "xor", + Cpp::Bitand => "bitand", + Cpp::NotEq => "not_eq", Cpp::DASHDASH => "--", Cpp::PLUSPLUS => "++", Cpp::Sizeof => "sizeof", + Cpp::Alignof => "__alignof__", + Cpp::Alignof2 => "__alignof", + Cpp::Alignof3 => "_alignof", + Cpp::Alignof4 => "alignof", + Cpp::Alignof5 => "_Alignof", + Cpp::Offsetof => "offsetof", + Cpp::Generic => "_Generic", + Cpp::Asm => "asm", + Cpp::Asm2 => "__asm__", + Cpp::Asm3 => "__asm", + Cpp::Volatile2 => "__volatile__", Cpp::DOT => ".", + Cpp::DOTSTAR => ".*", Cpp::DASHGT => "->", Cpp::NumberLiteral => "number_literal", Cpp::LSQUOTE => "L'", @@ -618,51 +813,58 @@ impl From for &'static str { Cpp::USQUOTE2 => "U'", Cpp::U8SQUOTE => "u8'", Cpp::SQUOTE => "'", - Cpp::CharLiteralToken1 => "char_literal_token1", + Cpp::Character => "character", Cpp::LDQUOTE => "L\"", Cpp::UDQUOTE => "u\"", Cpp::UDQUOTE2 => "U\"", Cpp::U8DQUOTE => "u8\"", Cpp::DQUOTE => "\"", - Cpp::StringLiteralToken1 => "string_literal_token1", + Cpp::StringContent => "string_content", Cpp::EscapeSequence => "escape_sequence", Cpp::SystemLibString => "system_lib_string", Cpp::True => "true", Cpp::False => "false", - Cpp::Null => "null", + Cpp::NULL => "NULL", + Cpp::Nullptr => "nullptr", Cpp::Comment => "comment", - Cpp::Decltype2 => "decltype", + Cpp::Auto => "auto", + Cpp::Decltype3 => "decltype", Cpp::Final => "final", Cpp::Override => "override", - Cpp::Virtual => "virtual", Cpp::Explicit => "explicit", - Cpp::Public => "public", - Cpp::Private => "private", - Cpp::Protected => "protected", - Cpp::Auto => "auto", Cpp::Typename => "typename", Cpp::Template => "template", Cpp::GT2 => ">", Cpp::Operator => "operator", + Cpp::Try2 => "try", Cpp::Delete => "delete", + Cpp::PureVirtualClauseToken1 => "pure_virtual_clause_token1", Cpp::Friend => "friend", + Cpp::Public => "public", + Cpp::Private => "private", + Cpp::Protected => "protected", Cpp::Noexcept2 => "noexcept", Cpp::Throw => "throw", Cpp::Namespace => "namespace", Cpp::Using => "using", Cpp::StaticAssert => "static_assert", + Cpp::Concept => "concept", Cpp::CoReturn => "co_return", Cpp::CoYield => "co_yield", - Cpp::Try => "try", Cpp::Catch => "catch", + Cpp::RDQUOTE => "R\"", + Cpp::LRDQUOTE => "LR\"", + Cpp::URDQUOTE => "uR\"", + Cpp::URDQUOTE2 => "UR\"", + Cpp::U8RDQUOTE => "u8R\"", Cpp::CoAwait => "co_await", Cpp::New => "new", + Cpp::Requires => "requires", Cpp::DASHGTSTAR => "->*", Cpp::LPARENRPAREN => "()", Cpp::LBRACKRBRACK => "[]", Cpp::DQUOTEDQUOTE => "\"\"", Cpp::This => "this", - Cpp::Nullptr => "nullptr", Cpp::LiteralSuffix => "literal_suffix", Cpp::AloneMacro => "alone_macro", Cpp::AloneMacroCallToken1 => "alone_macro_call_token1", @@ -683,7 +885,7 @@ impl From for &'static str { Cpp::QMNOTEONLYTRYUNWRAP => "QM_NOTEONLY_TRY_UNWRAP", Cpp::QMTRYUNWRAP => "QM_TRY_UNWRAP", Cpp::QMWARNONLYTRYUNWRAP => "QM_WARNONLY_TRY_UNWRAP", - Cpp::MOZDECLUSEGUARDOBJECTNOTIFIER => "MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER", + Cpp::MacroStatement => "macro_statement", Cpp::MOZALLOCATOR => "MOZ_ALLOCATOR", Cpp::MOZALLOWTEMPORARY => "MOZ_ALLOW_TEMPORARY", Cpp::MOZALWAYSINLINE => "MOZ_ALWAYS_INLINE", @@ -761,8 +963,11 @@ impl From for &'static str { Cpp::MOZUNSAFEREF => "MOZ_UNSAFE_REF", Cpp::MOZXPCOMABI => "MOZ_XPCOM_ABI", Cpp::JSPUBLICAPI => "JS_PUBLIC_API", - Cpp::RawStringLiteral => "raw_string_literal", + Cpp::RawStringDelimiter => "raw_string_delimiter", + Cpp::RawStringContent => "raw_string_content", Cpp::TranslationUnit => "translation_unit", + Cpp::TopLevelItem => "_top_level_item", + Cpp::BlockItem => "_block_item", Cpp::PreprocInclude => "preproc_include", Cpp::PreprocDef => "preproc_def", Cpp::PreprocFunctionDef => "preproc_function_def", @@ -772,10 +977,22 @@ impl From for &'static str { Cpp::PreprocIfdef => "preproc_ifdef", Cpp::PreprocElse => "preproc_else", Cpp::PreprocElif => "preproc_elif", + Cpp::PreprocElifdef => "preproc_elifdef", Cpp::PreprocIf2 => "preproc_if", Cpp::PreprocIfdef2 => "preproc_ifdef", Cpp::PreprocElse2 => "preproc_else", Cpp::PreprocElif2 => "preproc_elif", + Cpp::PreprocElifdef2 => "preproc_elifdef", + Cpp::PreprocIf3 => "preproc_if", + Cpp::PreprocIfdef3 => "preproc_ifdef", + Cpp::PreprocElse3 => "preproc_else", + Cpp::PreprocElif3 => "preproc_elif", + Cpp::PreprocElifdef3 => "preproc_elifdef", + Cpp::PreprocIf4 => "preproc_if", + Cpp::PreprocIfdef4 => "preproc_ifdef", + Cpp::PreprocElse4 => "preproc_else", + Cpp::PreprocElif4 => "preproc_elif", + Cpp::PreprocElifdef4 => "preproc_elifdef", Cpp::PreprocExpression => "_preproc_expression", Cpp::ParenthesizedExpression => "parenthesized_expression", Cpp::PreprocDefined => "preproc_defined", @@ -786,6 +1003,8 @@ impl From for &'static str { Cpp::FunctionDefinition => "function_definition", Cpp::Declaration => "declaration", Cpp::TypeDefinition => "type_definition", + Cpp::TypeDefinitionType => "_type_definition_type", + Cpp::TypeDefinitionDeclarators => "_type_definition_declarators", Cpp::DeclarationModifiers => "_declaration_modifiers", Cpp::DeclarationSpecifiers => "_declaration_specifiers", Cpp::LinkageSpecification => "linkage_specification", @@ -811,7 +1030,7 @@ impl From for &'static str { Cpp::AttributedDeclarator3 => "attributed_declarator", Cpp::PointerDeclarator => "pointer_declarator", Cpp::PointerDeclarator2 => "pointer_declarator", - Cpp::PointerDeclarator3 => "pointer_declarator", + Cpp::PointerTypeDeclarator => "pointer_type_declarator", Cpp::AbstractPointerDeclarator => "abstract_pointer_declarator", Cpp::FunctionDeclarator => "function_declarator", Cpp::FunctionDeclarator2 => "function_declarator", @@ -825,7 +1044,8 @@ impl From for &'static str { Cpp::CompoundStatement => "compound_statement", Cpp::StorageClassSpecifier => "storage_class_specifier", Cpp::TypeQualifier => "type_qualifier", - Cpp::TypeSpecifier => "_type_specifier", + Cpp::AlignasQualifier => "alignas_qualifier", + Cpp::TypeSpecifier => "type_specifier", Cpp::SizedTypeSpecifier => "sized_type_specifier", Cpp::EnumSpecifier => "enum_specifier", Cpp::EnumeratorList => "enumerator_list", @@ -839,19 +1059,29 @@ impl From for &'static str { Cpp::ParameterList => "parameter_list", Cpp::ParameterDeclaration => "parameter_declaration", Cpp::AttributedStatement => "attributed_statement", + Cpp::Statement => "statement", + Cpp::TopLevelStatement => "_top_level_statement", Cpp::LabeledStatement => "labeled_statement", Cpp::ExpressionStatement => "expression_statement", + Cpp::ExpressionStatement2 => "expression_statement", Cpp::IfStatement => "if_statement", + Cpp::ElseClause => "else_clause", Cpp::SwitchStatement => "switch_statement", Cpp::CaseStatement => "case_statement", Cpp::WhileStatement => "while_statement", Cpp::DoStatement => "do_statement", Cpp::ForStatement => "for_statement", + Cpp::ForStatementBody => "_for_statement_body", Cpp::ReturnStatement => "return_statement", Cpp::BreakStatement => "break_statement", Cpp::ContinueStatement => "continue_statement", Cpp::GotoStatement => "goto_statement", - Cpp::Expression => "_expression", + Cpp::SehTryStatement => "seh_try_statement", + Cpp::SehExceptClause => "seh_except_clause", + Cpp::SehFinallyClause => "seh_finally_clause", + Cpp::SehLeaveStatement => "seh_leave_statement", + Cpp::Expression => "expression", + Cpp::String => "_string", Cpp::CommaExpression => "comma_expression", Cpp::ConditionalExpression => "conditional_expression", Cpp::AssignmentExpression => "assignment_expression", @@ -862,8 +1092,20 @@ impl From for &'static str { Cpp::CastExpression => "cast_expression", Cpp::TypeDescriptor => "type_descriptor", Cpp::SizeofExpression => "sizeof_expression", + Cpp::AlignofExpression => "alignof_expression", + Cpp::OffsetofExpression => "offsetof_expression", + Cpp::GenericExpression => "generic_expression", Cpp::SubscriptExpression => "subscript_expression", Cpp::CallExpression2 => "call_expression", + Cpp::GnuAsmExpression => "gnu_asm_expression", + Cpp::GnuAsmQualifier => "gnu_asm_qualifier", + Cpp::GnuAsmOutputOperandList => "gnu_asm_output_operand_list", + Cpp::GnuAsmOutputOperand => "gnu_asm_output_operand", + Cpp::GnuAsmInputOperandList => "gnu_asm_input_operand_list", + Cpp::GnuAsmInputOperand => "gnu_asm_input_operand", + Cpp::GnuAsmClobberList => "gnu_asm_clobber_list", + Cpp::GnuAsmGotoList => "gnu_asm_goto_list", + Cpp::ExtensionExpression => "extension_expression", Cpp::ArgumentList2 => "argument_list", Cpp::FieldExpression => "field_expression", Cpp::CompoundLiteralExpression => "compound_literal_expression", @@ -871,16 +1113,21 @@ impl From for &'static str { Cpp::InitializerList => "initializer_list", Cpp::InitializerPair => "initializer_pair", Cpp::SubscriptDesignator => "subscript_designator", + Cpp::SubscriptRangeDesignator => "subscript_range_designator", Cpp::FieldDesignator => "field_designator", Cpp::CharLiteral => "char_literal", Cpp::ConcatenatedString => "concatenated_string", Cpp::StringLiteral => "string_literal", + Cpp::Null => "null", Cpp::EmptyDeclaration => "_empty_declaration", + Cpp::PlaceholderTypeSpecifier => "placeholder_type_specifier", Cpp::Decltype => "decltype", + Cpp::Decltype2 => "decltype", + Cpp::ClassDeclaration => "_class_declaration", + Cpp::ClassDeclarationItem => "_class_declaration_item", Cpp::ClassSpecifier => "class_specifier", Cpp::ClassName => "_class_name", Cpp::VirtualSpecifier => "virtual_specifier", - Cpp::VirtualFunctionSpecifier => "virtual_function_specifier", Cpp::ExplicitFunctionSpecifier => "explicit_function_specifier", Cpp::BaseClassClause => "base_class_clause", Cpp::EnumBaseClause => "_enum_base_clause", @@ -903,17 +1150,25 @@ impl From for &'static str { Cpp::ConstructorSpecifiers => "_constructor_specifiers", Cpp::FunctionDefinition3 => "function_definition", Cpp::Declaration2 => "declaration", + Cpp::TryStatement => "try_statement", Cpp::FunctionDefinition4 => "function_definition", Cpp::Declaration3 => "declaration", Cpp::DefaultMethodClause => "default_method_clause", Cpp::DeleteMethodClause => "delete_method_clause", + Cpp::PureVirtualClause => "pure_virtual_clause", Cpp::FriendDeclaration => "friend_declaration", Cpp::AccessSpecifier => "access_specifier", Cpp::ReferenceDeclarator2 => "reference_declarator", Cpp::ReferenceDeclarator3 => "reference_declarator", + Cpp::ReferenceDeclarator4 => "reference_declarator", Cpp::AbstractReferenceDeclarator => "abstract_reference_declarator", Cpp::StructuredBindingDeclarator => "structured_binding_declarator", Cpp::RefQualifier => "ref_qualifier", + Cpp::FunctionDeclaratorSeq => "_function_declarator_seq", + Cpp::FunctionAttributesStart => "_function_attributes_start", + Cpp::FunctionExceptionSpecification => "_function_exception_specification", + Cpp::FunctionAttributesEnd => "_function_attributes_end", + Cpp::FunctionPostfix => "_function_postfix", Cpp::TrailingReturnType => "trailing_return_type", Cpp::Noexcept => "noexcept", Cpp::ThrowSpecifier => "throw_specifier", @@ -922,27 +1177,54 @@ impl From for &'static str { Cpp::TemplateFunction => "template_function", Cpp::TemplateArgumentList => "template_argument_list", Cpp::NamespaceDefinition => "namespace_definition", - Cpp::NamespaceDefinitionName => "namespace_definition_name", + Cpp::NamespaceAliasDefinition => "namespace_alias_definition", + Cpp::NamespaceSpecifier => "_namespace_specifier", + Cpp::NestedNamespaceSpecifier => "nested_namespace_specifier", Cpp::UsingDeclaration => "using_declaration", Cpp::AliasDeclaration => "alias_declaration", Cpp::StaticAssertDeclaration => "static_assert_declaration", + Cpp::ConceptDefinition => "concept_definition", + Cpp::ForRangeLoop => "for_range_loop", + Cpp::ForRangeLoopBody => "_for_range_loop_body", + Cpp::InitStatement => "init_statement", Cpp::ConditionClause => "condition_clause", Cpp::Declaration4 => "declaration", - Cpp::ForRangeLoop => "for_range_loop", Cpp::CoReturnStatement => "co_return_statement", Cpp::CoYieldStatement => "co_yield_statement", Cpp::ThrowStatement => "throw_statement", - Cpp::TryStatement => "try_statement", + Cpp::TryStatement2 => "try_statement", Cpp::CatchClause => "catch_clause", + Cpp::RawStringLiteral => "raw_string_literal", + Cpp::SubscriptArgumentList => "subscript_argument_list", Cpp::CoAwaitExpression => "co_await_expression", Cpp::NewExpression => "new_expression", Cpp::NewDeclarator => "new_declarator", Cpp::DeleteExpression => "delete_expression", + Cpp::TypeRequirement => "type_requirement", + Cpp::CompoundRequirement => "compound_requirement", + Cpp::Requirement => "_requirement", + Cpp::RequirementSeq => "requirement_seq", + Cpp::ConstraintConjunction => "constraint_conjunction", + Cpp::ConstraintDisjunction => "constraint_disjunction", + Cpp::RequirementClauseConstraint => "_requirement_clause_constraint", + Cpp::RequiresClause => "requires_clause", + Cpp::ParameterList2 => "parameter_list", + Cpp::RequiresExpression => "requires_expression", Cpp::LambdaExpression => "lambda_expression", Cpp::LambdaCaptureSpecifier => "lambda_capture_specifier", Cpp::LambdaDefaultCapture => "lambda_default_capture", + Cpp::LambdaCaptureIdentifier => "_lambda_capture_identifier", + Cpp::LambdaCaptureInitializer => "lambda_capture_initializer", + Cpp::LambdaCapture => "_lambda_capture", + Cpp::FoldOperator => "_fold_operator", + Cpp::BinaryFoldOperator => "_binary_fold_operator", + Cpp::UnaryLeftFold => "_unary_left_fold", + Cpp::UnaryRightFold => "_unary_right_fold", + Cpp::BinaryFold => "_binary_fold", + Cpp::FoldExpression => "fold_expression", Cpp::ParameterPackExpansion => "parameter_pack_expansion", Cpp::ParameterPackExpansion2 => "parameter_pack_expansion", + Cpp::ParameterPackExpansion3 => "parameter_pack_expansion", Cpp::DestructorName => "destructor_name", Cpp::DependentName => "dependent_name", Cpp::DependentName2 => "dependent_name", @@ -952,51 +1234,69 @@ impl From for &'static str { Cpp::QualifiedIdentifier2 => "qualified_identifier", Cpp::QualifiedIdentifier3 => "qualified_identifier", Cpp::QualifiedIdentifier4 => "qualified_identifier", + Cpp::AssignmentExpression2 => "assignment_expression", Cpp::OperatorName => "operator_name", Cpp::UserDefinedLiteral => "user_defined_literal", Cpp::AloneMacroCall => "alone_macro_call", Cpp::CallMacroWithDeclFirstArg => "_call_macro_with_decl_first_arg", - Cpp::MacroStatement => "macro_statement", Cpp::MacroAnnotation => "macro_annotation", Cpp::TranslationUnitRepeat1 => "translation_unit_repeat1", Cpp::PreprocParamsRepeat1 => "preproc_params_repeat1", + Cpp::PreprocIfRepeat1 => "preproc_if_repeat1", Cpp::PreprocIfInFieldDeclarationListRepeat1 => { "preproc_if_in_field_declaration_list_repeat1" } + Cpp::PreprocIfInEnumeratorListRepeat1 => "preproc_if_in_enumerator_list_repeat1", + Cpp::PreprocIfInEnumeratorListNoCommaRepeat1 => { + "preproc_if_in_enumerator_list_no_comma_repeat1" + } Cpp::PreprocArgumentListRepeat1 => "preproc_argument_list_repeat1", Cpp::DeclarationRepeat1 => "declaration_repeat1", Cpp::TypeDefinitionRepeat1 => "type_definition_repeat1", - Cpp::TypeDefinitionRepeat2 => "type_definition_repeat2", + Cpp::TypeDefinitionTypeRepeat1 => "_type_definition_type_repeat1", + Cpp::TypeDefinitionDeclaratorsRepeat1 => "_type_definition_declarators_repeat1", Cpp::DeclarationSpecifiersRepeat1 => "_declaration_specifiers_repeat1", Cpp::AttributeDeclarationRepeat1 => "attribute_declaration_repeat1", Cpp::AttributedDeclaratorRepeat1 => "attributed_declarator_repeat1", Cpp::PointerDeclaratorRepeat1 => "pointer_declarator_repeat1", - Cpp::FunctionDeclaratorRepeat1 => "function_declarator_repeat1", - Cpp::FunctionDeclaratorRepeat2 => "function_declarator_repeat2", - Cpp::AbstractFunctionDeclaratorRepeat1 => "abstract_function_declarator_repeat1", + Cpp::ArrayDeclaratorRepeat1 => "array_declarator_repeat1", Cpp::SizedTypeSpecifierRepeat1 => "sized_type_specifier_repeat1", Cpp::EnumeratorListRepeat1 => "enumerator_list_repeat1", Cpp::FieldDeclarationRepeat1 => "field_declaration_repeat1", Cpp::ParameterListRepeat1 => "parameter_list_repeat1", Cpp::CaseStatementRepeat1 => "case_statement_repeat1", + Cpp::GenericExpressionRepeat1 => "generic_expression_repeat1", + Cpp::GnuAsmExpressionRepeat1 => "gnu_asm_expression_repeat1", + Cpp::GnuAsmOutputOperandListRepeat1 => "gnu_asm_output_operand_list_repeat1", + Cpp::GnuAsmInputOperandListRepeat1 => "gnu_asm_input_operand_list_repeat1", + Cpp::GnuAsmClobberListRepeat1 => "gnu_asm_clobber_list_repeat1", + Cpp::GnuAsmGotoListRepeat1 => "gnu_asm_goto_list_repeat1", Cpp::ArgumentListRepeat1 => "argument_list_repeat1", Cpp::InitializerListRepeat1 => "initializer_list_repeat1", Cpp::InitializerPairRepeat1 => "initializer_pair_repeat1", + Cpp::CharLiteralRepeat1 => "char_literal_repeat1", Cpp::ConcatenatedStringRepeat1 => "concatenated_string_repeat1", Cpp::StringLiteralRepeat1 => "string_literal_repeat1", + Cpp::ClassDeclarationRepeat1 => "_class_declaration_repeat1", Cpp::ClassSpecifierRepeat1 => "class_specifier_repeat1", Cpp::BaseClassClauseRepeat1 => "base_class_clause_repeat1", Cpp::TemplateParameterListRepeat1 => "template_parameter_list_repeat1", Cpp::FieldInitializerListRepeat1 => "field_initializer_list_repeat1", Cpp::OperatorCastDefinitionRepeat1 => "operator_cast_definition_repeat1", + Cpp::ConstructorTryStatementRepeat1 => "constructor_try_statement_repeat1", Cpp::StructuredBindingDeclaratorRepeat1 => "structured_binding_declarator_repeat1", + Cpp::FunctionPostfixRepeat1 => "_function_postfix_repeat1", Cpp::ThrowSpecifierRepeat1 => "throw_specifier_repeat1", Cpp::TemplateArgumentListRepeat1 => "template_argument_list_repeat1", - Cpp::TryStatementRepeat1 => "try_statement_repeat1", + Cpp::SubscriptArgumentListRepeat1 => "subscript_argument_list_repeat1", + Cpp::RequirementSeqRepeat1 => "requirement_seq_repeat1", + Cpp::RequiresParameterListRepeat1 => "requires_parameter_list_repeat1", Cpp::LambdaCaptureSpecifierRepeat1 => "lambda_capture_specifier_repeat1", Cpp::AloneMacroCallRepeat1 => "alone_macro_call_repeat1", + Cpp::CallMacroWithDeclFirstArgRepeat1 => "_call_macro_with_decl_first_arg_repeat1", Cpp::FieldIdentifier => "field_identifier", Cpp::NamespaceIdentifier => "namespace_identifier", + Cpp::SimpleRequirement => "simple_requirement", Cpp::StatementIdentifier => "statement_identifier", Cpp::TypeIdentifier => "type_identifier", Cpp::Error => "ERROR", diff --git a/src/languages/language_javascript.rs b/src/languages/language_javascript.rs index 45c9072bd..6dbb96069 100644 --- a/src/languages/language_javascript.rs +++ b/src/languages/language_javascript.rs @@ -25,19 +25,19 @@ pub enum Javascript { Switch = 18, For = 19, LPAREN = 20, - RPAREN = 21, - Await = 22, - In = 23, - Of = 24, - While = 25, - Do = 26, - Try = 27, - Break = 28, - Continue = 29, - Debugger = 30, - Return = 31, - Throw = 32, - SEMI = 33, + SEMI = 21, + RPAREN = 22, + Await = 23, + In = 24, + Of = 25, + While = 26, + Do = 27, + Try = 28, + Break = 29, + Continue = 30, + Debugger = 31, + Return = 32, + Throw = 33, COLON = 34, Case = 35, Catch = 36, @@ -46,234 +46,228 @@ pub enum Javascript { EQ = 39, LBRACK = 40, RBRACK = 41, - GlimmerTemplateContent = 42, - GlimmerOpeningTag = 43, - GlimmerClosingTag = 44, - JsxTextToken1 = 45, - JsxTextToken2 = 46, - HtmlCharacterReference = 47, - LT = 48, - GT = 49, - Identifier2 = 50, - DOT = 51, - LTSLASH = 52, - SLASHGT = 53, - DQUOTE = 54, - SQUOTE = 55, - StringFragment = 56, - StringFragment2 = 57, - Class2 = 58, - Extends = 59, - Async = 60, - Function = 61, - EQGT = 62, - OptionalChain = 63, - New = 64, - PLUSEQ = 65, - DASHEQ = 66, - STAREQ = 67, - SLASHEQ = 68, - PERCENTEQ = 69, - CARETEQ = 70, - AMPEQ = 71, - PIPEEQ = 72, - GTGTEQ = 73, - GTGTGTEQ = 74, - LTLTEQ = 75, - STARSTAREQ = 76, - AMPAMPEQ = 77, - PIPEPIPEEQ = 78, - QMARKQMARKEQ = 79, - DOTDOTDOT = 80, - AMPAMP = 81, - PIPEPIPE = 82, - GTGT = 83, - GTGTGT = 84, - LTLT = 85, - AMP = 86, - CARET = 87, - PIPE = 88, - PLUS = 89, - DASH = 90, - SLASH = 91, - PERCENT = 92, - STARSTAR = 93, - LTEQ = 94, - EQEQ = 95, - EQEQEQ = 96, - BANGEQ = 97, - BANGEQEQ = 98, - GTEQ = 99, - QMARKQMARK = 100, - Instanceof = 101, - BANG = 102, - TILDE = 103, - Typeof = 104, - Void = 105, - Delete = 106, - PLUSPLUS = 107, - DASHDASH = 108, - StringFragment3 = 109, - StringFragment4 = 110, - EscapeSequence = 111, - Comment = 112, - BQUOTE = 113, - DOLLARLBRACE = 114, - SLASH2 = 115, - RegexPattern = 116, - RegexFlags = 117, - Number = 118, - PrivatePropertyIdentifier = 119, - Target = 120, - This = 121, - Super = 122, - True = 123, - False = 124, - Null = 125, - Undefined = 126, - AT = 127, - Static = 128, - Staticget = 129, - Get = 130, - Set = 131, - AutomaticSemicolon = 132, - StringFragment5 = 133, - QMARK = 134, - HtmlComment = 135, - Program = 136, - ExportStatement = 137, - NamespaceExport = 138, - ExportClause = 139, - ExportSpecifier = 140, - ModuleExportName = 141, - Declaration = 142, - Import = 143, - ImportStatement = 144, - ImportClause = 145, - FromClause = 146, - NamespaceImport = 147, - NamedImports = 148, - ImportSpecifier = 149, - ImportAttribute = 150, - Statement = 151, - ExpressionStatement = 152, - VariableDeclaration = 153, - LexicalDeclaration = 154, - VariableDeclarator = 155, - StatementBlock = 156, - ElseClause = 157, - IfStatement = 158, - SwitchStatement = 159, - ForStatement = 160, - ForInStatement = 161, - ForHeader = 162, - WhileStatement = 163, - DoStatement = 164, - TryStatement = 165, - WithStatement = 166, - BreakStatement = 167, - ContinueStatement = 168, - DebuggerStatement = 169, - ReturnStatement = 170, - ThrowStatement = 171, - EmptyStatement = 172, - LabeledStatement = 173, - SwitchBody = 174, - SwitchCase = 175, - SwitchDefault = 176, - CatchClause = 177, - FinallyClause = 178, - ParenthesizedExpression = 179, - Expression = 180, - PrimaryExpression = 181, - YieldExpression = 182, - Object = 183, - ObjectPattern = 184, - AssignmentPattern = 185, - ObjectAssignmentPattern = 186, - Array = 187, - ArrayPattern = 188, - GlimmerTemplate = 189, - JsxElement = 190, - JsxText = 191, - JsxExpression = 192, - JsxOpeningElement = 193, - MemberExpression = 194, - JsxNamespaceName = 195, - JsxClosingElement = 196, - JsxSelfClosingElement = 197, - JsxAttribute = 198, - String = 199, - Class = 200, - ClassDeclaration = 201, - ClassHeritage = 202, - FunctionExpression = 203, - FunctionDeclaration = 204, - GeneratorFunction = 205, - GeneratorFunctionDeclaration = 206, - ArrowFunction = 207, - CallExpression = 208, - NewExpression = 209, - AwaitExpression = 210, - MemberExpression2 = 211, - SubscriptExpression = 212, - AssignmentExpression = 213, - AugmentedAssignmentLhs = 214, - AugmentedAssignmentExpression = 215, - Initializer = 216, - DestructuringPattern = 217, - SpreadElement = 218, - TernaryExpression = 219, - BinaryExpression = 220, - UnaryExpression = 221, - UpdateExpression = 222, - SequenceExpression = 223, - String2 = 224, - TemplateString = 225, - TemplateSubstitution = 226, - Regex = 227, - MetaProperty = 228, - Arguments = 229, - Decorator = 230, - MemberExpression3 = 231, - CallExpression2 = 232, - ClassBody = 233, - FieldDefinition = 234, - FormalParameters = 235, - ClassStaticBlock = 236, - Pattern = 237, - RestPattern = 238, - MethodDefinition = 239, - Pair = 240, - PairPattern = 241, - PropertyName = 242, - ComputedPropertyName = 243, - ProgramRepeat1 = 244, - ExportStatementRepeat1 = 245, - ExportClauseRepeat1 = 246, - NamedImportsRepeat1 = 247, - VariableDeclarationRepeat1 = 248, - SwitchBodyRepeat1 = 249, - ObjectRepeat1 = 250, - ObjectPatternRepeat1 = 251, - ArrayRepeat1 = 252, - ArrayPatternRepeat1 = 253, - GlimmerTemplateRepeat1 = 254, - JsxElementRepeat1 = 255, - JsxOpeningElementRepeat1 = 256, - JsxStringRepeat1 = 257, - JsxStringRepeat2 = 258, - SequenceExpressionRepeat1 = 259, - StringRepeat1 = 260, - StringRepeat2 = 261, - TemplateStringRepeat1 = 262, - ClassBodyRepeat1 = 263, - FormalParametersRepeat1 = 264, - PropertyIdentifier = 265, - ShorthandPropertyIdentifier = 266, - ShorthandPropertyIdentifierPattern = 267, - StatementIdentifier = 268, - Error = 269, + HtmlCharacterReference = 42, + LT = 43, + GT = 44, + Identifier2 = 45, + DOT = 46, + LTSLASH = 47, + SLASHGT = 48, + DQUOTE = 49, + SQUOTE = 50, + StringFragment = 51, + StringFragment2 = 52, + Class2 = 53, + Extends = 54, + Async = 55, + Function = 56, + EQGT = 57, + OptionalChain = 58, + New = 59, + PLUSEQ = 60, + DASHEQ = 61, + STAREQ = 62, + SLASHEQ = 63, + PERCENTEQ = 64, + CARETEQ = 65, + AMPEQ = 66, + PIPEEQ = 67, + GTGTEQ = 68, + GTGTGTEQ = 69, + LTLTEQ = 70, + STARSTAREQ = 71, + AMPAMPEQ = 72, + PIPEPIPEEQ = 73, + QMARKQMARKEQ = 74, + DOTDOTDOT = 75, + AMPAMP = 76, + PIPEPIPE = 77, + GTGT = 78, + GTGTGT = 79, + LTLT = 80, + AMP = 81, + CARET = 82, + PIPE = 83, + PLUS = 84, + DASH = 85, + SLASH = 86, + PERCENT = 87, + STARSTAR = 88, + LTEQ = 89, + EQEQ = 90, + EQEQEQ = 91, + BANGEQ = 92, + BANGEQEQ = 93, + GTEQ = 94, + QMARKQMARK = 95, + Instanceof = 96, + BANG = 97, + TILDE = 98, + Typeof = 99, + Void = 100, + Delete = 101, + PLUSPLUS = 102, + DASHDASH = 103, + StringFragment3 = 104, + StringFragment4 = 105, + EscapeSequence = 106, + Comment = 107, + BQUOTE = 108, + DOLLARLBRACE = 109, + SLASH2 = 110, + RegexPattern = 111, + RegexFlags = 112, + Number = 113, + PrivatePropertyIdentifier = 114, + Target = 115, + Meta = 116, + This = 117, + Super = 118, + True = 119, + False = 120, + Null = 121, + Undefined = 122, + AT = 123, + Static = 124, + Staticget = 125, + Get = 126, + Set = 127, + AutomaticSemicolon = 128, + StringFragment5 = 129, + QMARK = 130, + HtmlComment = 131, + JsxText = 132, + Program = 133, + ExportStatement = 134, + NamespaceExport = 135, + ExportClause = 136, + ExportSpecifier = 137, + ModuleExportName = 138, + Declaration = 139, + Import = 140, + ImportStatement = 141, + ImportClause = 142, + FromClause = 143, + NamespaceImport = 144, + NamedImports = 145, + ImportSpecifier = 146, + ImportAttribute = 147, + Statement = 148, + ExpressionStatement = 149, + VariableDeclaration = 150, + LexicalDeclaration = 151, + VariableDeclarator = 152, + StatementBlock = 153, + ElseClause = 154, + IfStatement = 155, + SwitchStatement = 156, + ForStatement = 157, + ForInStatement = 158, + ForHeader = 159, + WhileStatement = 160, + DoStatement = 161, + TryStatement = 162, + WithStatement = 163, + BreakStatement = 164, + ContinueStatement = 165, + DebuggerStatement = 166, + ReturnStatement = 167, + ThrowStatement = 168, + EmptyStatement = 169, + LabeledStatement = 170, + SwitchBody = 171, + SwitchCase = 172, + SwitchDefault = 173, + CatchClause = 174, + FinallyClause = 175, + ParenthesizedExpression = 176, + Expression = 177, + PrimaryExpression = 178, + YieldExpression = 179, + Object = 180, + ObjectPattern = 181, + AssignmentPattern = 182, + ObjectAssignmentPattern = 183, + Array = 184, + ArrayPattern = 185, + JsxElement = 186, + JsxExpression = 187, + JsxOpeningElement = 188, + MemberExpression = 189, + JsxNamespaceName = 190, + JsxClosingElement = 191, + JsxSelfClosingElement = 192, + JsxAttribute = 193, + String = 194, + Class = 195, + ClassDeclaration = 196, + ClassHeritage = 197, + FunctionExpression = 198, + FunctionDeclaration = 199, + GeneratorFunction = 200, + GeneratorFunctionDeclaration = 201, + ArrowFunction = 202, + CallExpression = 203, + NewExpression = 204, + AwaitExpression = 205, + MemberExpression2 = 206, + SubscriptExpression = 207, + AssignmentExpression = 208, + AugmentedAssignmentLhs = 209, + AugmentedAssignmentExpression = 210, + Initializer = 211, + DestructuringPattern = 212, + SpreadElement = 213, + TernaryExpression = 214, + BinaryExpression = 215, + UnaryExpression = 216, + UpdateExpression = 217, + SequenceExpression = 218, + String2 = 219, + TemplateString = 220, + TemplateSubstitution = 221, + Regex = 222, + MetaProperty = 223, + Arguments = 224, + Decorator = 225, + MemberExpression3 = 226, + CallExpression2 = 227, + ClassBody = 228, + FieldDefinition = 229, + FormalParameters = 230, + ClassStaticBlock = 231, + Pattern = 232, + RestPattern = 233, + MethodDefinition = 234, + Pair = 235, + PairPattern = 236, + PropertyName = 237, + ComputedPropertyName = 238, + ProgramRepeat1 = 239, + ExportStatementRepeat1 = 240, + ExportClauseRepeat1 = 241, + NamedImportsRepeat1 = 242, + VariableDeclarationRepeat1 = 243, + SwitchBodyRepeat1 = 244, + ObjectRepeat1 = 245, + ObjectPatternRepeat1 = 246, + ArrayRepeat1 = 247, + ArrayPatternRepeat1 = 248, + JsxElementRepeat1 = 249, + JsxOpeningElementRepeat1 = 250, + JsxStringRepeat1 = 251, + JsxStringRepeat2 = 252, + SequenceExpressionRepeat1 = 253, + StringRepeat1 = 254, + StringRepeat2 = 255, + TemplateStringRepeat1 = 256, + ClassBodyRepeat1 = 257, + FormalParametersRepeat1 = 258, + PropertyIdentifier = 259, + ShorthandPropertyIdentifier = 260, + ShorthandPropertyIdentifierPattern = 261, + StatementIdentifier = 262, + Error = 263, } impl From for &'static str { @@ -301,6 +295,7 @@ impl From for &'static str { Javascript::Switch => "switch", Javascript::For => "for", Javascript::LPAREN => "(", + Javascript::SEMI => ";", Javascript::RPAREN => ")", Javascript::Await => "await", Javascript::In => "in", @@ -313,7 +308,6 @@ impl From for &'static str { Javascript::Debugger => "debugger", Javascript::Return => "return", Javascript::Throw => "throw", - Javascript::SEMI => ";", Javascript::COLON => ":", Javascript::Case => "case", Javascript::Catch => "catch", @@ -322,11 +316,6 @@ impl From for &'static str { Javascript::EQ => "=", Javascript::LBRACK => "[", Javascript::RBRACK => "]", - Javascript::GlimmerTemplateContent => "_glimmer_template_content", - Javascript::GlimmerOpeningTag => "glimmer_opening_tag", - Javascript::GlimmerClosingTag => "glimmer_closing_tag", - Javascript::JsxTextToken1 => "jsx_text_token1", - Javascript::JsxTextToken2 => "jsx_text_token2", Javascript::HtmlCharacterReference => "html_character_reference", Javascript::LT => "<", Javascript::GT => ">", @@ -401,6 +390,7 @@ impl From for &'static str { Javascript::Number => "number", Javascript::PrivatePropertyIdentifier => "private_property_identifier", Javascript::Target => "target", + Javascript::Meta => "meta", Javascript::This => "this", Javascript::Super => "super", Javascript::True => "true", @@ -416,6 +406,7 @@ impl From for &'static str { Javascript::StringFragment5 => "string_fragment", Javascript::QMARK => "?", Javascript::HtmlComment => "html_comment", + Javascript::JsxText => "jsx_text", Javascript::Program => "program", Javascript::ExportStatement => "export_statement", Javascript::NamespaceExport => "namespace_export", @@ -469,9 +460,7 @@ impl From for &'static str { Javascript::ObjectAssignmentPattern => "object_assignment_pattern", Javascript::Array => "array", Javascript::ArrayPattern => "array_pattern", - Javascript::GlimmerTemplate => "glimmer_template", Javascript::JsxElement => "jsx_element", - Javascript::JsxText => "jsx_text", Javascript::JsxExpression => "jsx_expression", Javascript::JsxOpeningElement => "jsx_opening_element", Javascript::MemberExpression => "member_expression", @@ -534,7 +523,6 @@ impl From for &'static str { Javascript::ObjectPatternRepeat1 => "object_pattern_repeat1", Javascript::ArrayRepeat1 => "array_repeat1", Javascript::ArrayPatternRepeat1 => "array_pattern_repeat1", - Javascript::GlimmerTemplateRepeat1 => "glimmer_template_repeat1", Javascript::JsxElementRepeat1 => "jsx_element_repeat1", Javascript::JsxOpeningElementRepeat1 => "jsx_opening_element_repeat1", Javascript::JsxStringRepeat1 => "_jsx_string_repeat1", diff --git a/src/languages/language_kotlin.rs b/src/languages/language_kotlin.rs index 6adbbbe60..bbb446edb 100644 --- a/src/languages/language_kotlin.rs +++ b/src/languages/language_kotlin.rs @@ -5,364 +5,295 @@ use num_derive::FromPrimitive; #[derive(Clone, Debug, PartialEq, Eq, FromPrimitive)] pub enum Kotlin { End = 0, - AlphaIdentifier = 1, - HASHBANG = 2, - ShebangLineToken1 = 3, - AT = 4, - File = 5, - COLON = 6, - LBRACK = 7, - RBRACK = 8, - Package = 9, - Import = 10, - DOTSTAR = 11, + Identifier = 1, + AT = 2, + File = 3, + COLON = 4, + LBRACK = 5, + RBRACK = 6, + Package = 7, + SEMI = 8, + Import2 = 9, + DOT = 10, + STAR = 11, As = 12, - Typealias = 13, - EQ = 14, - Class = 15, - Interface = 16, - Enum = 17, - Constructor = 18, - LBRACE = 19, - RBRACE = 20, - LPAREN = 21, - COMMA = 22, - RPAREN = 23, - Val = 24, - Var = 25, - By = 26, - LT = 27, + Class = 13, + Fun = 14, + Interface = 15, + Object = 16, + Val = 17, + Var = 18, + EQ = 19, + Typealias = 20, + Companion = 21, + Init = 22, + Constructor = 23, + This = 24, + Super = 25, + LT = 26, + COMMA = 27, GT = 28, - Where = 29, - Init = 30, - Companion = 31, - Object = 32, - Fun = 33, - DOT = 34, - SEMI = 35, - Get = 36, - Set = 37, - This = 38, - Super = 39, - Dynamic = 40, - AMP = 41, - Quest = 42, - STAR = 43, - DASHGT = 44, - Label = 45, - For = 46, - In = 47, - While = 48, - Do = 49, - DOTDOT = 50, - QMARKCOLON = 51, - AMPAMP = 52, - PIPEPIPE = 53, - Null = 54, - DOLLARLBRACE = 55, - DOLLAR = 56, - If = 57, - Else = 58, - When = 59, - Try = 60, - Catch = 61, - Finally = 62, - Throw = 63, - Return = 64, - Continue = 65, - Break = 66, - COLONCOLON = 67, - PLUSEQ = 68, - DASHEQ = 69, - STAREQ = 70, - SLASHEQ = 71, - PERCENTEQ = 72, - BANGEQ = 73, - BANGEQEQ = 74, - EQEQ = 75, - EQEQEQ = 76, - LTEQ = 77, - GTEQ = 78, - BANGin = 79, - Is = 80, - BANGis = 81, - PLUS = 82, - DASH = 83, - SLASH = 84, - PERCENT = 85, - AsQMARK = 86, - PLUSPLUS = 87, - DASHDASH = 88, - BANG = 89, - BANGBANG = 90, - Suspend = 91, - Sealed = 92, - Annotation2 = 93, - Data = 94, - Inner = 95, - Value = 96, - Override = 97, - Lateinit = 98, - Public = 99, - Private = 100, - Internal = 101, - Protected = 102, - Out = 103, - Tailrec = 104, - Operator = 105, - Infix = 106, - Inline = 107, - External = 108, - PropertyModifier = 109, - Abstract = 110, - Final = 111, - Open = 112, - Vararg = 113, - Noinline = 114, - Crossinline = 115, - ReificationModifier = 116, - Expect = 117, - Actual = 118, - Field = 119, - Property = 120, - Receiver = 121, - Param = 122, - Setparam = 123, - Delegate = 124, - LineComment = 125, - ReturnAT = 126, - ContinueAT = 127, - BreakAT = 128, - ThisAT = 129, - SuperAT = 130, - AT2 = 131, - RealLiteral = 132, - IntegerLiteral = 133, - HexLiteral = 134, - BinLiteral = 135, - UnsignedLiteralToken1 = 136, - L = 137, - True = 138, - False = 139, - SQUOTE = 140, - CharacterLiteralToken1 = 141, - BacktickIdentifier = 142, - BSLASHu = 143, - UniCharacterLiteralToken1 = 144, - EscapedIdentifier = 145, - AutomaticSemicolon = 146, - ImportListDelimiter = 147, - QMARKDOT = 148, - MultilineComment = 149, - StringStart = 150, - StringEnd = 151, - StringContent = 152, - SourceFile = 153, - ShebangLine = 154, - FileAnnotation = 155, - PackageHeader = 156, - ImportList = 157, - ImportHeader = 158, - ImportAlias = 159, - TypeAlias = 160, - Declaration = 161, - ClassDeclaration = 162, - PrimaryConstructor = 163, - ClassBody = 164, - ClassParameters = 165, - ClassParameter = 166, - DelegationSpecifiers = 167, - DelegationSpecifier = 168, - ConstructorInvocation = 169, - ExplicitDelegation = 170, - TypeParameters = 171, - TypeParameter = 172, - TypeConstraints = 173, - TypeConstraint = 174, - ClassMemberDeclarations = 175, - ClassMemberDeclaration = 176, - AnonymousInitializer = 177, - CompanionObject = 178, - FunctionValueParameters = 179, - FunctionValueParameter = 180, - ReceiverType = 181, - FunctionDeclaration = 182, - FunctionBody = 183, - VariableDeclaration = 184, - PropertyDeclaration = 185, - PropertyDelegate = 186, - Getter = 187, - Setter = 188, - ParameterWithOptionalType = 189, - Parameter = 190, - ObjectDeclaration = 191, - SecondaryConstructor = 192, - ConstructorDelegationCall = 193, - EnumClassBody = 194, - EnumEntries = 195, - EnumEntry = 196, - Type = 197, - TypeReference = 198, - NotNullableType = 199, - NullableType = 200, + LPAREN = 29, + RPAREN = 30, + Where = 31, + By = 32, + Get = 33, + Set = 34, + LBRACE = 35, + RBRACE = 36, + For = 37, + In = 38, + While = 39, + Do = 40, + Enum = 41, + Sealed = 42, + Annotation2 = 43, + Data = 44, + Inner = 45, + Value = 46, + Tailrec = 47, + Operator = 48, + Infix = 49, + Inline = 50, + External = 51, + Suspend = 52, + Const = 53, + Public = 54, + Private = 55, + Protected = 56, + Internal = 57, + Abstract = 58, + Final = 59, + Open = 60, + Override = 61, + Lateinit = 62, + Vararg = 63, + Noinline = 64, + Crossinline = 65, + ReificationModifier = 66, + Expect = 67, + Actual = 68, + Field = 69, + Property = 70, + Receiver = 71, + Param = 72, + Setparam = 73, + Delegate = 74, + Dynamic = 75, + QMARK = 76, + AMP = 77, + DASHGT = 78, + PLUSEQ = 79, + DASHEQ = 80, + STAREQ = 81, + SLASHEQ = 82, + PERCENTEQ = 83, + PLUSPLUS = 84, + DASHDASH = 85, + PLUS = 86, + DASH = 87, + BANG = 88, + BANGBANG = 89, + SLASH = 90, + PERCENT = 91, + PIPEPIPE = 92, + AMPAMP = 93, + BANGEQ = 94, + BANGEQEQ = 95, + EQEQ = 96, + EQEQEQ = 97, + GTEQ = 98, + LTEQ = 99, + QMARKCOLON = 100, + BANGin = 101, + Is = 102, + AsQMARK = 103, + DOTDOT = 104, + DOTDOTLT = 105, + ThisAT = 106, + SuperAT = 107, + AT2 = 108, + If = 109, + Else = 110, + When = 111, + Try = 112, + Catch = 113, + Finally = 114, + Return = 115, + ReturnAT = 116, + Throw = 117, + COLONCOLON = 118, + DQUOTE = 119, + StringContent = 120, + StringContent2 = 121, + DOLLAR = 122, + DQUOTEDQUOTEDQUOTE = 123, + DQUOTEDQUOTEDQUOTEDQUOTE = 124, + DOLLARLBRACE = 125, + SQUOTE = 126, + CharacterLiteralToken1 = 127, + EscapeSequence = 128, + NumberLiteral = 129, + FloatLiteral = 130, + Out = 131, + Label = 132, + Shebang = 133, + LineComment = 134, + Semi = 135, + ClassMemberSemi = 136, + BlockComment = 137, + BANGis = 138, + In2 = 139, + QMARKDOT = 140, + StringContent3 = 141, + SourceFile = 142, + FileAnnotation = 143, + PackageHeader = 144, + Import = 145, + Declaration = 146, + ClassDeclaration = 147, + ObjectDeclaration = 148, + PropertyDeclaration = 149, + TypeAlias = 150, + CompanionObject = 151, + AnonymousInitializer = 152, + SecondaryConstructor = 153, + ConstructorDelegationCall = 154, + TypeParameters = 155, + TypeParameter = 156, + PrimaryConstructor = 157, + ClassParameters = 158, + ClassParameter = 159, + TypeConstraints = 160, + TypeConstraint = 161, + ConstructorInvocation = 162, + FunctionDeclaration = 163, + FunctionValueParameters = 164, + Parameter = 165, + DelegationSpecifiers = 166, + DelegationSpecifier = 167, + VariableDeclaration = 168, + MultiVariableDeclaration = 169, + PropertyDelegate = 170, + ExplicitDelegation = 171, + Getter = 172, + Setter = 173, + FunctionBody = 174, + Block = 175, + ForStatement = 176, + WhileStatement = 177, + DoWhileStatement = 178, + ClassBody = 179, + ClassMemberDeclaration = 180, + EnumClassBody = 181, + EnumEntry = 182, + ValueArguments = 183, + ValueArgument = 184, + Statement = 185, + Modifiers = 186, + ClassModifier = 187, + FunctionModifier = 188, + PropertyModifier = 189, + VisibilityModifier = 190, + InheritanceModifier = 191, + MemberModifier = 192, + ParameterModifiers = 193, + ParameterModifier = 194, + PlatformModifier = 195, + TypeModifiers = 196, + Annotation = 197, + UseSiteTarget = 198, + UnescapedAnnotation = 199, + Type = 200, UserType = 201, SimpleUserType = 202, - TypeProjection = 203, - TypeProjectionModifiers = 204, - TypeProjectionModifier = 205, - FunctionType = 206, - FunctionTypeParameters = 207, - ParenthesizedType = 208, - ParenthesizedUserType = 209, - Statements = 210, - Statement = 211, - ControlStructureBody = 212, - Block = 213, - LoopStatement = 214, - ForStatement = 215, - WhileStatement = 216, - DoWhileStatement = 217, - Semi = 218, - Assignment = 219, - Expression = 220, - UnaryExpression = 221, - PostfixExpression = 222, - CallExpression = 223, - IndexingExpression = 224, - NavigationExpression = 225, - PrefixExpression = 226, - AsExpression = 227, - SpreadExpression = 228, - BinaryExpression = 229, - MultiplicativeExpression = 230, - AdditiveExpression = 231, - RangeExpression = 232, - InfixExpression = 233, - ElvisExpression = 234, - CheckExpression = 235, - ComparisonExpression = 236, - EqualityExpression = 237, - ConjunctionExpression = 238, - DisjunctionExpression = 239, - IndexingSuffix = 240, - NavigationSuffix = 241, - CallSuffix = 242, - AnnotatedLambda = 243, - TypeArguments = 244, - ValueArguments = 245, - ValueArgument = 246, - PrimaryExpression = 247, - ParenthesizedExpression = 248, - CollectionLiteral = 249, - LiteralConstant = 250, - StringLiteral = 251, + NullableType = 203, + NonNullableType = 204, + ReceiverType = 205, + TypeArguments = 206, + TypeProjection = 207, + FunctionType = 208, + FunctionTypeParameters = 209, + ParenthesizedType = 210, + Assignment = 211, + Expression = 212, + PrimaryExpression = 213, + UnaryExpression = 214, + AnnotatedExpression = 215, + LabeledExpression = 216, + BinaryExpression = 217, + InExpression = 218, + IsExpression = 219, + AsExpression = 220, + SpreadExpression = 221, + RangeExpression = 222, + InfixExpression = 223, + CallExpression = 224, + AnnotatedLambda = 225, + LambdaLiteral = 226, + LambdaParameters = 227, + LambdaParameter = 228, + AnonymousFunction = 229, + IndexExpression = 230, + ThisExpression = 231, + SuperExpression = 232, + IfExpression = 233, + ParenthesizedExpression = 234, + CollectionLiteral = 235, + WhenExpression = 236, + WhenSubject = 237, + WhenEntry = 238, + WhenCondition = 239, + RangeTest = 240, + TypeTest = 241, + TryExpression = 242, + CatchBlock = 243, + FinallyBlock = 244, + ReturnExpression = 245, + ThrowExpression = 246, + CallableReference = 247, + NavigationExpression = 248, + ObjectLiteral = 249, + StringLiteral = 250, + MultilineStringLiteral = 251, Interpolation = 252, - LambdaLiteral = 253, - MultiVariableDeclaration = 254, - LambdaParameters = 255, - LambdaParameter = 256, - AnonymousFunction = 257, - FunctionLiteral = 258, - ObjectLiteral = 259, - ThisExpression = 260, - SuperExpression = 261, - IfExpression = 262, - WhenSubject = 263, - WhenExpression = 264, - WhenEntry = 265, - WhenCondition = 266, - RangeTest = 267, - TypeTest = 268, - TryExpression = 269, - CatchBlock = 270, - FinallyBlock = 271, - JumpExpression = 272, - CallableReference = 273, - AssignmentAndOperator = 274, - EqualityOperator = 275, - ComparisonOperator = 276, - InOperator = 277, - IsOperator = 278, - AdditiveOperator = 279, - MultiplicativeOperator = 280, - AsOperator = 281, - PrefixUnaryOperator = 282, - PostfixUnaryOperator = 283, - MemberAccessOperator = 284, - PostfixUnarySuffix = 285, - PostfixUnaryExpression = 286, - DirectlyAssignableExpression = 287, - Modifiers = 288, - ParameterModifiers = 289, - Modifier = 290, - TypeModifiers = 291, - TypeModifier = 292, - ClassModifier = 293, - MemberModifier = 294, - VisibilityModifier = 295, - VarianceModifier = 296, - TypeParameterModifiers = 297, - TypeParameterModifier = 298, - FunctionModifier = 299, - InheritanceModifier = 300, - ParameterModifier = 301, - PlatformModifier = 302, - Annotation = 303, - SingleAnnotation = 304, - MultiAnnotation = 305, - UseSiteTarget = 306, - UnescapedAnnotation = 307, - SimpleIdentifier = 308, - Identifier = 309, - ReturnAt = 310, - ContinueAt = 311, - BreakAt = 312, - ThisAt = 313, - SuperAt = 314, - UnsignedLiteral = 315, - LongLiteral = 316, - BooleanLiteral = 317, - CharacterLiteral = 318, - CharacterEscapeSeq = 319, - LexicalIdentifier = 320, - UniCharacterLiteral = 321, - SourceFileRepeat1 = 322, - SourceFileRepeat2 = 323, - SourceFileRepeat3 = 324, - FileAnnotationRepeat1 = 325, - ImportListRepeat1 = 326, - ClassParametersRepeat1 = 327, - DelegationSpecifiersRepeat1 = 328, - AnnotatedDelegationSpecifierRepeat1 = 329, - TypeParametersRepeat1 = 330, - TypeConstraintsRepeat1 = 331, - FunctionValueParametersRepeat1 = 332, - EnumEntriesRepeat1 = 333, - NullableTypeRepeat1 = 334, - UserTypeRepeat1 = 335, - TypeProjectionModifiersRepeat1 = 336, - FunctionTypeParametersRepeat1 = 337, - StatementsRepeat1 = 338, - StatementRepeat1 = 339, - IndexingSuffixRepeat1 = 340, - TypeArgumentsRepeat1 = 341, - ValueArgumentsRepeat1 = 342, - StringLiteralRepeat1 = 343, - MultiVariableDeclarationRepeat1 = 344, - LambdaParametersRepeat1 = 345, - WhenExpressionRepeat1 = 346, - WhenEntryRepeat1 = 347, - TryExpressionRepeat1 = 348, - PostfixUnaryExpressionRepeat1 = 349, - ModifiersRepeat1 = 350, - ParameterModifiersRepeat1 = 351, - TypeModifiersRepeat1 = 352, - TypeParameterModifiersRepeat1 = 353, - IdentifierRepeat1 = 354, - InterpolatedExpression = 355, - InterpolatedIdentifier = 356, - TypeIdentifier = 357, - Error = 358, + CharacterLiteral = 253, + VarianceModifier = 254, + TypeParameterModifiers = 255, + QualifiedIdentifier = 256, + ReservedIdentifier = 257, + SourceFileRepeat1 = 258, + SourceFileRepeat2 = 259, + SourceFileRepeat3 = 260, + FileAnnotationRepeat1 = 261, + TypeParametersRepeat1 = 262, + ClassParametersRepeat1 = 263, + TypeConstraintsRepeat1 = 264, + FunctionValueParametersRepeat1 = 265, + DelegationSpecifiersRepeat1 = 266, + DelegationSpecifierRepeat1 = 267, + MultiVariableDeclarationRepeat1 = 268, + ClassBodyRepeat1 = 269, + EnumClassBodyRepeat1 = 270, + ValueArgumentsRepeat1 = 271, + StatementsRepeat1 = 272, + ModifiersRepeat1 = 273, + ParameterModifiersRepeat1 = 274, + TypeModifiersRepeat1 = 275, + UserTypeRepeat1 = 276, + TypeArgumentsRepeat1 = 277, + TypeProjectionRepeat1 = 278, + FunctionTypeParametersRepeat1 = 279, + LambdaParametersRepeat1 = 280, + IndexExpressionRepeat1 = 281, + WhenExpressionRepeat1 = 282, + WhenEntryRepeat1 = 283, + TryExpressionRepeat1 = 284, + StringLiteralRepeat1 = 285, + MultilineStringLiteralRepeat1 = 286, + TypeParameterModifiersRepeat1 = 287, + QualifiedIdentifierRepeat1 = 288, + Error = 289, } impl From for &'static str { @@ -370,118 +301,68 @@ impl From for &'static str { fn from(tok: Kotlin) -> Self { match tok { Kotlin::End => "end", - Kotlin::AlphaIdentifier => "_alpha_identifier", - Kotlin::HASHBANG => "#!", - Kotlin::ShebangLineToken1 => "shebang_line_token1", + Kotlin::Identifier => "identifier", Kotlin::AT => "@", Kotlin::File => "file", Kotlin::COLON => ":", Kotlin::LBRACK => "[", Kotlin::RBRACK => "]", Kotlin::Package => "package", - Kotlin::Import => "import", - Kotlin::DOTSTAR => ".*", + Kotlin::SEMI => ";", + Kotlin::Import2 => "import", + Kotlin::DOT => ".", + Kotlin::STAR => "*", Kotlin::As => "as", - Kotlin::Typealias => "typealias", - Kotlin::EQ => "=", Kotlin::Class => "class", + Kotlin::Fun => "fun", Kotlin::Interface => "interface", - Kotlin::Enum => "enum", - Kotlin::Constructor => "constructor", - Kotlin::LBRACE => "{", - Kotlin::RBRACE => "}", - Kotlin::LPAREN => "(", - Kotlin::COMMA => ",", - Kotlin::RPAREN => ")", + Kotlin::Object => "object", Kotlin::Val => "val", Kotlin::Var => "var", - Kotlin::By => "by", + Kotlin::EQ => "=", + Kotlin::Typealias => "typealias", + Kotlin::Companion => "companion", + Kotlin::Init => "init", + Kotlin::Constructor => "constructor", + Kotlin::This => "this", + Kotlin::Super => "super", Kotlin::LT => "<", + Kotlin::COMMA => ",", Kotlin::GT => ">", + Kotlin::LPAREN => "(", + Kotlin::RPAREN => ")", Kotlin::Where => "where", - Kotlin::Init => "init", - Kotlin::Companion => "companion", - Kotlin::Object => "object", - Kotlin::Fun => "fun", - Kotlin::DOT => ".", - Kotlin::SEMI => ";", + Kotlin::By => "by", Kotlin::Get => "get", Kotlin::Set => "set", - Kotlin::This => "this", - Kotlin::Super => "super", - Kotlin::Dynamic => "dynamic", - Kotlin::AMP => "&", - Kotlin::Quest => "_quest", - Kotlin::STAR => "*", - Kotlin::DASHGT => "->", - Kotlin::Label => "label", + Kotlin::LBRACE => "{", + Kotlin::RBRACE => "}", Kotlin::For => "for", Kotlin::In => "in", Kotlin::While => "while", Kotlin::Do => "do", - Kotlin::DOTDOT => "..", - Kotlin::QMARKCOLON => "?:", - Kotlin::AMPAMP => "&&", - Kotlin::PIPEPIPE => "||", - Kotlin::Null => "null", - Kotlin::DOLLARLBRACE => "${", - Kotlin::DOLLAR => "$", - Kotlin::If => "if", - Kotlin::Else => "else", - Kotlin::When => "when", - Kotlin::Try => "try", - Kotlin::Catch => "catch", - Kotlin::Finally => "finally", - Kotlin::Throw => "throw", - Kotlin::Return => "return", - Kotlin::Continue => "continue", - Kotlin::Break => "break", - Kotlin::COLONCOLON => "::", - Kotlin::PLUSEQ => "+=", - Kotlin::DASHEQ => "-=", - Kotlin::STAREQ => "*=", - Kotlin::SLASHEQ => "/=", - Kotlin::PERCENTEQ => "%=", - Kotlin::BANGEQ => "!=", - Kotlin::BANGEQEQ => "!==", - Kotlin::EQEQ => "==", - Kotlin::EQEQEQ => "===", - Kotlin::LTEQ => "<=", - Kotlin::GTEQ => ">=", - Kotlin::BANGin => "!in", - Kotlin::Is => "is", - Kotlin::BANGis => "!is", - Kotlin::PLUS => "+", - Kotlin::DASH => "-", - Kotlin::SLASH => "/", - Kotlin::PERCENT => "%", - Kotlin::AsQMARK => "as?", - Kotlin::PLUSPLUS => "++", - Kotlin::DASHDASH => "--", - Kotlin::BANG => "!", - Kotlin::BANGBANG => "!!", - Kotlin::Suspend => "suspend", + Kotlin::Enum => "enum", Kotlin::Sealed => "sealed", Kotlin::Annotation2 => "annotation", Kotlin::Data => "data", Kotlin::Inner => "inner", Kotlin::Value => "value", - Kotlin::Override => "override", - Kotlin::Lateinit => "lateinit", - Kotlin::Public => "public", - Kotlin::Private => "private", - Kotlin::Internal => "internal", - Kotlin::Protected => "protected", - Kotlin::Out => "out", Kotlin::Tailrec => "tailrec", Kotlin::Operator => "operator", Kotlin::Infix => "infix", Kotlin::Inline => "inline", Kotlin::External => "external", - Kotlin::PropertyModifier => "property_modifier", + Kotlin::Suspend => "suspend", + Kotlin::Const => "const", + Kotlin::Public => "public", + Kotlin::Private => "private", + Kotlin::Protected => "protected", + Kotlin::Internal => "internal", Kotlin::Abstract => "abstract", Kotlin::Final => "final", Kotlin::Open => "open", + Kotlin::Override => "override", + Kotlin::Lateinit => "lateinit", Kotlin::Vararg => "vararg", Kotlin::Noinline => "noinline", Kotlin::Crossinline => "crossinline", @@ -494,241 +375,220 @@ impl From for &'static str { Kotlin::Param => "param", Kotlin::Setparam => "setparam", Kotlin::Delegate => "delegate", - Kotlin::LineComment => "line_comment", - Kotlin::ReturnAT => "return@", - Kotlin::ContinueAT => "continue@", - Kotlin::BreakAT => "break@", + Kotlin::Dynamic => "dynamic", + Kotlin::QMARK => "?", + Kotlin::AMP => "&", + Kotlin::DASHGT => "->", + Kotlin::PLUSEQ => "+=", + Kotlin::DASHEQ => "-=", + Kotlin::STAREQ => "*=", + Kotlin::SLASHEQ => "/=", + Kotlin::PERCENTEQ => "%=", + Kotlin::PLUSPLUS => "++", + Kotlin::DASHDASH => "--", + Kotlin::PLUS => "+", + Kotlin::DASH => "-", + Kotlin::BANG => "!", + Kotlin::BANGBANG => "!!", + Kotlin::SLASH => "/", + Kotlin::PERCENT => "%", + Kotlin::PIPEPIPE => "||", + Kotlin::AMPAMP => "&&", + Kotlin::BANGEQ => "!=", + Kotlin::BANGEQEQ => "!==", + Kotlin::EQEQ => "==", + Kotlin::EQEQEQ => "===", + Kotlin::GTEQ => ">=", + Kotlin::LTEQ => "<=", + Kotlin::QMARKCOLON => "?:", + Kotlin::BANGin => "!in", + Kotlin::Is => "is", + Kotlin::AsQMARK => "as?", + Kotlin::DOTDOT => "..", + Kotlin::DOTDOTLT => "..<", Kotlin::ThisAT => "this@", Kotlin::SuperAT => "super@", Kotlin::AT2 => "@", - Kotlin::RealLiteral => "real_literal", - Kotlin::IntegerLiteral => "integer_literal", - Kotlin::HexLiteral => "hex_literal", - Kotlin::BinLiteral => "bin_literal", - Kotlin::UnsignedLiteralToken1 => "unsigned_literal_token1", - Kotlin::L => "L", - Kotlin::True => "true", - Kotlin::False => "false", + Kotlin::If => "if", + Kotlin::Else => "else", + Kotlin::When => "when", + Kotlin::Try => "try", + Kotlin::Catch => "catch", + Kotlin::Finally => "finally", + Kotlin::Return => "return", + Kotlin::ReturnAT => "return@", + Kotlin::Throw => "throw", + Kotlin::COLONCOLON => "::", + Kotlin::DQUOTE => "\"", + Kotlin::StringContent => "string_content", + Kotlin::StringContent2 => "string_content", + Kotlin::DOLLAR => "$", + Kotlin::DQUOTEDQUOTEDQUOTE => "\"\"\"", + Kotlin::DQUOTEDQUOTEDQUOTEDQUOTE => "\"\"\"\"", + Kotlin::DOLLARLBRACE => "${", Kotlin::SQUOTE => "'", Kotlin::CharacterLiteralToken1 => "character_literal_token1", - Kotlin::BacktickIdentifier => "_backtick_identifier", - Kotlin::BSLASHu => "\\u", - Kotlin::UniCharacterLiteralToken1 => "_uni_character_literal_token1", - Kotlin::EscapedIdentifier => "_escaped_identifier", - Kotlin::AutomaticSemicolon => "_automatic_semicolon", - Kotlin::ImportListDelimiter => "_import_list_delimiter", + Kotlin::EscapeSequence => "escape_sequence", + Kotlin::NumberLiteral => "number_literal", + Kotlin::FloatLiteral => "float_literal", + Kotlin::Out => "out", + Kotlin::Label => "label", + Kotlin::Shebang => "shebang", + Kotlin::LineComment => "line_comment", + Kotlin::Semi => "_semi", + Kotlin::ClassMemberSemi => "_class_member_semi", + Kotlin::BlockComment => "block_comment", + Kotlin::BANGis => "!is", + Kotlin::In2 => "in", Kotlin::QMARKDOT => "?.", - Kotlin::MultilineComment => "multiline_comment", - Kotlin::StringStart => "_string_start", - Kotlin::StringEnd => "_string_end", - Kotlin::StringContent => "_string_content", + Kotlin::StringContent3 => "string_content", Kotlin::SourceFile => "source_file", - Kotlin::ShebangLine => "shebang_line", Kotlin::FileAnnotation => "file_annotation", Kotlin::PackageHeader => "package_header", - Kotlin::ImportList => "import_list", - Kotlin::ImportHeader => "import_header", - Kotlin::ImportAlias => "import_alias", - Kotlin::TypeAlias => "type_alias", - Kotlin::Declaration => "_declaration", + Kotlin::Import => "import", + Kotlin::Declaration => "declaration", Kotlin::ClassDeclaration => "class_declaration", - Kotlin::PrimaryConstructor => "primary_constructor", - Kotlin::ClassBody => "class_body", - Kotlin::ClassParameters => "_class_parameters", - Kotlin::ClassParameter => "class_parameter", - Kotlin::DelegationSpecifiers => "_delegation_specifiers", - Kotlin::DelegationSpecifier => "delegation_specifier", - Kotlin::ConstructorInvocation => "constructor_invocation", - Kotlin::ExplicitDelegation => "explicit_delegation", + Kotlin::ObjectDeclaration => "object_declaration", + Kotlin::PropertyDeclaration => "property_declaration", + Kotlin::TypeAlias => "type_alias", + Kotlin::CompanionObject => "companion_object", + Kotlin::AnonymousInitializer => "anonymous_initializer", + Kotlin::SecondaryConstructor => "secondary_constructor", + Kotlin::ConstructorDelegationCall => "constructor_delegation_call", Kotlin::TypeParameters => "type_parameters", Kotlin::TypeParameter => "type_parameter", + Kotlin::PrimaryConstructor => "primary_constructor", + Kotlin::ClassParameters => "class_parameters", + Kotlin::ClassParameter => "class_parameter", Kotlin::TypeConstraints => "type_constraints", Kotlin::TypeConstraint => "type_constraint", - Kotlin::ClassMemberDeclarations => "_class_member_declarations", - Kotlin::ClassMemberDeclaration => "_class_member_declaration", - Kotlin::AnonymousInitializer => "anonymous_initializer", - Kotlin::CompanionObject => "companion_object", - Kotlin::FunctionValueParameters => "function_value_parameters", - Kotlin::FunctionValueParameter => "_function_value_parameter", - Kotlin::ReceiverType => "_receiver_type", + Kotlin::ConstructorInvocation => "constructor_invocation", Kotlin::FunctionDeclaration => "function_declaration", - Kotlin::FunctionBody => "function_body", + Kotlin::FunctionValueParameters => "function_value_parameters", + Kotlin::Parameter => "parameter", + Kotlin::DelegationSpecifiers => "delegation_specifiers", + Kotlin::DelegationSpecifier => "delegation_specifier", Kotlin::VariableDeclaration => "variable_declaration", - Kotlin::PropertyDeclaration => "property_declaration", + Kotlin::MultiVariableDeclaration => "multi_variable_declaration", Kotlin::PropertyDelegate => "property_delegate", + Kotlin::ExplicitDelegation => "explicit_delegation", Kotlin::Getter => "getter", Kotlin::Setter => "setter", - Kotlin::ParameterWithOptionalType => "parameter_with_optional_type", - Kotlin::Parameter => "parameter", - Kotlin::ObjectDeclaration => "object_declaration", - Kotlin::SecondaryConstructor => "secondary_constructor", - Kotlin::ConstructorDelegationCall => "constructor_delegation_call", + Kotlin::FunctionBody => "function_body", + Kotlin::Block => "block", + Kotlin::ForStatement => "for_statement", + Kotlin::WhileStatement => "while_statement", + Kotlin::DoWhileStatement => "do_while_statement", + Kotlin::ClassBody => "class_body", + Kotlin::ClassMemberDeclaration => "class_member_declaration", Kotlin::EnumClassBody => "enum_class_body", - Kotlin::EnumEntries => "_enum_entries", Kotlin::EnumEntry => "enum_entry", - Kotlin::Type => "_type", - Kotlin::TypeReference => "_type_reference", - Kotlin::NotNullableType => "not_nullable_type", - Kotlin::NullableType => "nullable_type", + Kotlin::ValueArguments => "value_arguments", + Kotlin::ValueArgument => "value_argument", + Kotlin::Statement => "statement", + Kotlin::Modifiers => "modifiers", + Kotlin::ClassModifier => "class_modifier", + Kotlin::FunctionModifier => "function_modifier", + Kotlin::PropertyModifier => "property_modifier", + Kotlin::VisibilityModifier => "visibility_modifier", + Kotlin::InheritanceModifier => "inheritance_modifier", + Kotlin::MemberModifier => "member_modifier", + Kotlin::ParameterModifiers => "parameter_modifiers", + Kotlin::ParameterModifier => "parameter_modifier", + Kotlin::PlatformModifier => "platform_modifier", + Kotlin::TypeModifiers => "type_modifiers", + Kotlin::Annotation => "annotation", + Kotlin::UseSiteTarget => "use_site_target", + Kotlin::UnescapedAnnotation => "_unescaped_annotation", + Kotlin::Type => "type", Kotlin::UserType => "user_type", Kotlin::SimpleUserType => "_simple_user_type", + Kotlin::NullableType => "nullable_type", + Kotlin::NonNullableType => "non_nullable_type", + Kotlin::ReceiverType => "_receiver_type", + Kotlin::TypeArguments => "type_arguments", Kotlin::TypeProjection => "type_projection", - Kotlin::TypeProjectionModifiers => "type_projection_modifiers", - Kotlin::TypeProjectionModifier => "_type_projection_modifier", Kotlin::FunctionType => "function_type", Kotlin::FunctionTypeParameters => "function_type_parameters", Kotlin::ParenthesizedType => "parenthesized_type", - Kotlin::ParenthesizedUserType => "parenthesized_user_type", - Kotlin::Statements => "statements", - Kotlin::Statement => "_statement", - Kotlin::ControlStructureBody => "control_structure_body", - Kotlin::Block => "_block", - Kotlin::LoopStatement => "_loop_statement", - Kotlin::ForStatement => "for_statement", - Kotlin::WhileStatement => "while_statement", - Kotlin::DoWhileStatement => "do_while_statement", - Kotlin::Semi => "_semi", Kotlin::Assignment => "assignment", - Kotlin::Expression => "_expression", - Kotlin::UnaryExpression => "_unary_expression", - Kotlin::PostfixExpression => "postfix_expression", - Kotlin::CallExpression => "call_expression", - Kotlin::IndexingExpression => "indexing_expression", - Kotlin::NavigationExpression => "navigation_expression", - Kotlin::PrefixExpression => "prefix_expression", + Kotlin::Expression => "expression", + Kotlin::PrimaryExpression => "primary_expression", + Kotlin::UnaryExpression => "unary_expression", + Kotlin::AnnotatedExpression => "annotated_expression", + Kotlin::LabeledExpression => "labeled_expression", + Kotlin::BinaryExpression => "binary_expression", + Kotlin::InExpression => "in_expression", + Kotlin::IsExpression => "is_expression", Kotlin::AsExpression => "as_expression", Kotlin::SpreadExpression => "spread_expression", - Kotlin::BinaryExpression => "_binary_expression", - Kotlin::MultiplicativeExpression => "multiplicative_expression", - Kotlin::AdditiveExpression => "additive_expression", Kotlin::RangeExpression => "range_expression", Kotlin::InfixExpression => "infix_expression", - Kotlin::ElvisExpression => "elvis_expression", - Kotlin::CheckExpression => "check_expression", - Kotlin::ComparisonExpression => "comparison_expression", - Kotlin::EqualityExpression => "equality_expression", - Kotlin::ConjunctionExpression => "conjunction_expression", - Kotlin::DisjunctionExpression => "disjunction_expression", - Kotlin::IndexingSuffix => "indexing_suffix", - Kotlin::NavigationSuffix => "navigation_suffix", - Kotlin::CallSuffix => "call_suffix", + Kotlin::CallExpression => "call_expression", Kotlin::AnnotatedLambda => "annotated_lambda", - Kotlin::TypeArguments => "type_arguments", - Kotlin::ValueArguments => "value_arguments", - Kotlin::ValueArgument => "value_argument", - Kotlin::PrimaryExpression => "_primary_expression", - Kotlin::ParenthesizedExpression => "parenthesized_expression", - Kotlin::CollectionLiteral => "collection_literal", - Kotlin::LiteralConstant => "_literal_constant", - Kotlin::StringLiteral => "string_literal", - Kotlin::Interpolation => "_interpolation", Kotlin::LambdaLiteral => "lambda_literal", - Kotlin::MultiVariableDeclaration => "multi_variable_declaration", Kotlin::LambdaParameters => "lambda_parameters", Kotlin::LambdaParameter => "_lambda_parameter", Kotlin::AnonymousFunction => "anonymous_function", - Kotlin::FunctionLiteral => "_function_literal", - Kotlin::ObjectLiteral => "object_literal", + Kotlin::IndexExpression => "index_expression", Kotlin::ThisExpression => "this_expression", Kotlin::SuperExpression => "super_expression", Kotlin::IfExpression => "if_expression", - Kotlin::WhenSubject => "when_subject", + Kotlin::ParenthesizedExpression => "parenthesized_expression", + Kotlin::CollectionLiteral => "collection_literal", Kotlin::WhenExpression => "when_expression", + Kotlin::WhenSubject => "when_subject", Kotlin::WhenEntry => "when_entry", - Kotlin::WhenCondition => "when_condition", + Kotlin::WhenCondition => "_when_condition", Kotlin::RangeTest => "range_test", Kotlin::TypeTest => "type_test", Kotlin::TryExpression => "try_expression", Kotlin::CatchBlock => "catch_block", Kotlin::FinallyBlock => "finally_block", - Kotlin::JumpExpression => "jump_expression", + Kotlin::ReturnExpression => "return_expression", + Kotlin::ThrowExpression => "throw_expression", Kotlin::CallableReference => "callable_reference", - Kotlin::AssignmentAndOperator => "_assignment_and_operator", - Kotlin::EqualityOperator => "_equality_operator", - Kotlin::ComparisonOperator => "_comparison_operator", - Kotlin::InOperator => "_in_operator", - Kotlin::IsOperator => "_is_operator", - Kotlin::AdditiveOperator => "_additive_operator", - Kotlin::MultiplicativeOperator => "_multiplicative_operator", - Kotlin::AsOperator => "_as_operator", - Kotlin::PrefixUnaryOperator => "_prefix_unary_operator", - Kotlin::PostfixUnaryOperator => "_postfix_unary_operator", - Kotlin::MemberAccessOperator => "_member_access_operator", - Kotlin::PostfixUnarySuffix => "_postfix_unary_suffix", - Kotlin::PostfixUnaryExpression => "_postfix_unary_expression", - Kotlin::DirectlyAssignableExpression => "directly_assignable_expression", - Kotlin::Modifiers => "modifiers", - Kotlin::ParameterModifiers => "parameter_modifiers", - Kotlin::Modifier => "_modifier", - Kotlin::TypeModifiers => "type_modifiers", - Kotlin::TypeModifier => "_type_modifier", - Kotlin::ClassModifier => "class_modifier", - Kotlin::MemberModifier => "member_modifier", - Kotlin::VisibilityModifier => "visibility_modifier", + Kotlin::NavigationExpression => "navigation_expression", + Kotlin::ObjectLiteral => "object_literal", + Kotlin::StringLiteral => "string_literal", + Kotlin::MultilineStringLiteral => "multiline_string_literal", + Kotlin::Interpolation => "interpolation", + Kotlin::CharacterLiteral => "character_literal", Kotlin::VarianceModifier => "variance_modifier", Kotlin::TypeParameterModifiers => "type_parameter_modifiers", - Kotlin::TypeParameterModifier => "_type_parameter_modifier", - Kotlin::FunctionModifier => "function_modifier", - Kotlin::InheritanceModifier => "inheritance_modifier", - Kotlin::ParameterModifier => "parameter_modifier", - Kotlin::PlatformModifier => "platform_modifier", - Kotlin::Annotation => "annotation", - Kotlin::SingleAnnotation => "_single_annotation", - Kotlin::MultiAnnotation => "_multi_annotation", - Kotlin::UseSiteTarget => "use_site_target", - Kotlin::UnescapedAnnotation => "_unescaped_annotation", - Kotlin::SimpleIdentifier => "simple_identifier", - Kotlin::Identifier => "identifier", - Kotlin::ReturnAt => "_return_at", - Kotlin::ContinueAt => "_continue_at", - Kotlin::BreakAt => "_break_at", - Kotlin::ThisAt => "_this_at", - Kotlin::SuperAt => "_super_at", - Kotlin::UnsignedLiteral => "unsigned_literal", - Kotlin::LongLiteral => "long_literal", - Kotlin::BooleanLiteral => "boolean_literal", - Kotlin::CharacterLiteral => "character_literal", - Kotlin::CharacterEscapeSeq => "character_escape_seq", - Kotlin::LexicalIdentifier => "_lexical_identifier", - Kotlin::UniCharacterLiteral => "_uni_character_literal", + Kotlin::QualifiedIdentifier => "qualified_identifier", + Kotlin::ReservedIdentifier => "_reserved_identifier", Kotlin::SourceFileRepeat1 => "source_file_repeat1", Kotlin::SourceFileRepeat2 => "source_file_repeat2", Kotlin::SourceFileRepeat3 => "source_file_repeat3", Kotlin::FileAnnotationRepeat1 => "file_annotation_repeat1", - Kotlin::ImportListRepeat1 => "import_list_repeat1", - Kotlin::ClassParametersRepeat1 => "_class_parameters_repeat1", - Kotlin::DelegationSpecifiersRepeat1 => "_delegation_specifiers_repeat1", - Kotlin::AnnotatedDelegationSpecifierRepeat1 => { - "_annotated_delegation_specifier_repeat1" - } Kotlin::TypeParametersRepeat1 => "type_parameters_repeat1", + Kotlin::ClassParametersRepeat1 => "class_parameters_repeat1", Kotlin::TypeConstraintsRepeat1 => "type_constraints_repeat1", Kotlin::FunctionValueParametersRepeat1 => "function_value_parameters_repeat1", - Kotlin::EnumEntriesRepeat1 => "_enum_entries_repeat1", - Kotlin::NullableTypeRepeat1 => "nullable_type_repeat1", + Kotlin::DelegationSpecifiersRepeat1 => "delegation_specifiers_repeat1", + Kotlin::DelegationSpecifierRepeat1 => "delegation_specifier_repeat1", + Kotlin::MultiVariableDeclarationRepeat1 => "multi_variable_declaration_repeat1", + Kotlin::ClassBodyRepeat1 => "class_body_repeat1", + Kotlin::EnumClassBodyRepeat1 => "enum_class_body_repeat1", + Kotlin::ValueArgumentsRepeat1 => "value_arguments_repeat1", + Kotlin::StatementsRepeat1 => "_statements_repeat1", + Kotlin::ModifiersRepeat1 => "modifiers_repeat1", + Kotlin::ParameterModifiersRepeat1 => "parameter_modifiers_repeat1", + Kotlin::TypeModifiersRepeat1 => "type_modifiers_repeat1", Kotlin::UserTypeRepeat1 => "user_type_repeat1", - Kotlin::TypeProjectionModifiersRepeat1 => "type_projection_modifiers_repeat1", - Kotlin::FunctionTypeParametersRepeat1 => "function_type_parameters_repeat1", - Kotlin::StatementsRepeat1 => "statements_repeat1", - Kotlin::StatementRepeat1 => "_statement_repeat1", - Kotlin::IndexingSuffixRepeat1 => "indexing_suffix_repeat1", Kotlin::TypeArgumentsRepeat1 => "type_arguments_repeat1", - Kotlin::ValueArgumentsRepeat1 => "value_arguments_repeat1", - Kotlin::StringLiteralRepeat1 => "string_literal_repeat1", - Kotlin::MultiVariableDeclarationRepeat1 => "multi_variable_declaration_repeat1", + Kotlin::TypeProjectionRepeat1 => "type_projection_repeat1", + Kotlin::FunctionTypeParametersRepeat1 => "function_type_parameters_repeat1", Kotlin::LambdaParametersRepeat1 => "lambda_parameters_repeat1", + Kotlin::IndexExpressionRepeat1 => "index_expression_repeat1", Kotlin::WhenExpressionRepeat1 => "when_expression_repeat1", Kotlin::WhenEntryRepeat1 => "when_entry_repeat1", Kotlin::TryExpressionRepeat1 => "try_expression_repeat1", - Kotlin::PostfixUnaryExpressionRepeat1 => "_postfix_unary_expression_repeat1", - Kotlin::ModifiersRepeat1 => "modifiers_repeat1", - Kotlin::ParameterModifiersRepeat1 => "parameter_modifiers_repeat1", - Kotlin::TypeModifiersRepeat1 => "type_modifiers_repeat1", + Kotlin::StringLiteralRepeat1 => "string_literal_repeat1", + Kotlin::MultilineStringLiteralRepeat1 => "multiline_string_literal_repeat1", Kotlin::TypeParameterModifiersRepeat1 => "type_parameter_modifiers_repeat1", - Kotlin::IdentifierRepeat1 => "identifier_repeat1", - Kotlin::InterpolatedExpression => "interpolated_expression", - Kotlin::InterpolatedIdentifier => "interpolated_identifier", - Kotlin::TypeIdentifier => "type_identifier", + Kotlin::QualifiedIdentifierRepeat1 => "qualified_identifier_repeat1", Kotlin::Error => "ERROR", } } @@ -756,3 +616,4 @@ impl PartialEq for u16 { *x == *self } } + diff --git a/src/languages/language_mozjs.rs b/src/languages/language_mozjs.rs index 08f629df8..5187924ca 100644 --- a/src/languages/language_mozjs.rs +++ b/src/languages/language_mozjs.rs @@ -46,234 +46,229 @@ pub enum Mozjs { EQ = 39, LBRACK = 40, RBRACK = 41, - GlimmerTemplateContent = 42, - GlimmerOpeningTag = 43, - GlimmerClosingTag = 44, - HtmlCharacterReference = 45, - LT = 46, - GT = 47, - Identifier2 = 48, - DOT = 49, - LTSLASH = 50, - SLASHGT = 51, - DQUOTE = 52, - SQUOTE = 53, - StringFragment = 54, - StringFragment2 = 55, - Class2 = 56, - Extends = 57, - Async = 58, - Function = 59, - EQGT = 60, - OptionalChain = 61, - New = 62, - PLUSEQ = 63, - DASHEQ = 64, - STAREQ = 65, - SLASHEQ = 66, - PERCENTEQ = 67, - CARETEQ = 68, - AMPEQ = 69, - PIPEEQ = 70, - GTGTEQ = 71, - GTGTGTEQ = 72, - LTLTEQ = 73, - STARSTAREQ = 74, - AMPAMPEQ = 75, - PIPEPIPEEQ = 76, - QMARKQMARKEQ = 77, - DOTDOTDOT = 78, - AMPAMP = 79, - PIPEPIPE = 80, - GTGT = 81, - GTGTGT = 82, - LTLT = 83, - AMP = 84, - CARET = 85, - PIPE = 86, - PLUS = 87, - DASH = 88, - SLASH = 89, - PERCENT = 90, - STARSTAR = 91, - LTEQ = 92, - EQEQ = 93, - EQEQEQ = 94, - BANGEQ = 95, - BANGEQEQ = 96, - GTEQ = 97, - QMARKQMARK = 98, - Instanceof = 99, - BANG = 100, - TILDE = 101, - Typeof = 102, - Void = 103, - Delete = 104, - PLUSPLUS = 105, - DASHDASH = 106, - StringFragment3 = 107, - StringFragment4 = 108, - EscapeSequence = 109, - Comment = 110, - BQUOTE = 111, - DOLLARLBRACE = 112, - SLASH2 = 113, - RegexPattern = 114, - RegexFlags = 115, - Number = 116, - PrivatePropertyIdentifier = 117, - Target = 118, - Meta = 119, - This = 120, - Super = 121, - True = 122, - False = 123, - Null = 124, - Undefined = 125, - AT = 126, - Static = 127, - Staticget = 128, - Get = 129, - Set = 130, - Preproc = 131, - AutomaticSemicolon = 132, - StringFragment5 = 133, - QMARK = 134, - HtmlComment = 135, - JsxText = 136, - Program = 137, - ExportStatement = 138, - NamespaceExport = 139, - ExportClause = 140, - ExportSpecifier = 141, - ModuleExportName = 142, - Declaration = 143, - Import = 144, - ImportStatement = 145, - ImportClause = 146, - FromClause = 147, - NamespaceImport = 148, - NamedImports = 149, - ImportSpecifier = 150, - ImportAttribute = 151, - Statement = 152, - ExpressionStatement = 153, - VariableDeclaration = 154, - LexicalDeclaration = 155, - VariableDeclarator = 156, - StatementBlock = 157, - ElseClause = 158, - IfStatement = 159, - SwitchStatement = 160, - ForStatement = 161, - ForInStatement = 162, - ForHeader = 163, - WhileStatement = 164, - DoStatement = 165, - TryStatement = 166, - WithStatement = 167, - BreakStatement = 168, - ContinueStatement = 169, - DebuggerStatement = 170, - ReturnStatement = 171, - ThrowStatement = 172, - EmptyStatement = 173, - LabeledStatement = 174, - SwitchBody = 175, - SwitchCase = 176, - SwitchDefault = 177, - CatchClause = 178, - FinallyClause = 179, - ParenthesizedExpression = 180, - Expression = 181, - PrimaryExpression = 182, - YieldExpression = 183, - Object = 184, - ObjectPattern = 185, - AssignmentPattern = 186, - ObjectAssignmentPattern = 187, - Array = 188, - ArrayPattern = 189, - GlimmerTemplate = 190, - JsxElement = 191, - JsxExpression = 192, - JsxOpeningElement = 193, - MemberExpression = 194, - JsxNamespaceName = 195, - JsxClosingElement = 196, - JsxSelfClosingElement = 197, - JsxAttribute = 198, - String = 199, - Class = 200, - ClassDeclaration = 201, - ClassHeritage = 202, - FunctionExpression = 203, - FunctionDeclaration = 204, - GeneratorFunction = 205, - GeneratorFunctionDeclaration = 206, - ArrowFunction = 207, - CallExpression = 208, - NewExpression = 209, - AwaitExpression = 210, - MemberExpression2 = 211, - SubscriptExpression = 212, - AssignmentExpression = 213, - AugmentedAssignmentLhs = 214, - AugmentedAssignmentExpression = 215, - Initializer = 216, - DestructuringPattern = 217, - SpreadElement = 218, - TernaryExpression = 219, - BinaryExpression = 220, - UnaryExpression = 221, - UpdateExpression = 222, - SequenceExpression = 223, - String2 = 224, - TemplateString = 225, - TemplateSubstitution = 226, - Regex = 227, - MetaProperty = 228, - Arguments = 229, - Decorator = 230, - MemberExpression3 = 231, - CallExpression2 = 232, - ClassBody = 233, - FieldDefinition = 234, - FormalParameters = 235, - ClassStaticBlock = 236, - Pattern = 237, - RestPattern = 238, - MethodDefinition = 239, - Pair = 240, - PairPattern = 241, - PropertyName = 242, - ComputedPropertyName = 243, - ProgramRepeat1 = 244, - ExportStatementRepeat1 = 245, - ExportClauseRepeat1 = 246, - NamedImportsRepeat1 = 247, - VariableDeclarationRepeat1 = 248, - SwitchBodyRepeat1 = 249, - ObjectRepeat1 = 250, - ObjectPatternRepeat1 = 251, - ArrayRepeat1 = 252, - ArrayPatternRepeat1 = 253, - GlimmerTemplateRepeat1 = 254, - JsxElementRepeat1 = 255, - JsxOpeningElementRepeat1 = 256, - JsxStringRepeat1 = 257, - JsxStringRepeat2 = 258, - SequenceExpressionRepeat1 = 259, - StringRepeat1 = 260, - StringRepeat2 = 261, - TemplateStringRepeat1 = 262, - ClassBodyRepeat1 = 263, - FormalParametersRepeat1 = 264, - PropertyIdentifier = 265, - ShorthandPropertyIdentifier = 266, - ShorthandPropertyIdentifierPattern = 267, - StatementIdentifier = 268, - Error = 269, + HtmlCharacterReference = 42, + LT = 43, + GT = 44, + Identifier2 = 45, + DOT = 46, + LTSLASH = 47, + SLASHGT = 48, + DQUOTE = 49, + SQUOTE = 50, + StringFragment = 51, + StringFragment2 = 52, + Class2 = 53, + Extends = 54, + Async = 55, + Function = 56, + EQGT = 57, + OptionalChain = 58, + New = 59, + PLUSEQ = 60, + DASHEQ = 61, + STAREQ = 62, + SLASHEQ = 63, + PERCENTEQ = 64, + CARETEQ = 65, + AMPEQ = 66, + PIPEEQ = 67, + GTGTEQ = 68, + GTGTGTEQ = 69, + LTLTEQ = 70, + STARSTAREQ = 71, + AMPAMPEQ = 72, + PIPEPIPEEQ = 73, + QMARKQMARKEQ = 74, + DOTDOTDOT = 75, + AMPAMP = 76, + PIPEPIPE = 77, + GTGT = 78, + GTGTGT = 79, + LTLT = 80, + AMP = 81, + CARET = 82, + PIPE = 83, + PLUS = 84, + DASH = 85, + SLASH = 86, + PERCENT = 87, + STARSTAR = 88, + LTEQ = 89, + EQEQ = 90, + EQEQEQ = 91, + BANGEQ = 92, + BANGEQEQ = 93, + GTEQ = 94, + QMARKQMARK = 95, + Instanceof = 96, + BANG = 97, + TILDE = 98, + Typeof = 99, + Void = 100, + Delete = 101, + PLUSPLUS = 102, + DASHDASH = 103, + StringFragment3 = 104, + StringFragment4 = 105, + EscapeSequence = 106, + Comment = 107, + BQUOTE = 108, + DOLLARLBRACE = 109, + SLASH2 = 110, + RegexPattern = 111, + RegexFlags = 112, + Number = 113, + PrivatePropertyIdentifier = 114, + Target = 115, + Meta = 116, + This = 117, + Super = 118, + True = 119, + False = 120, + Null = 121, + Undefined = 122, + AT = 123, + Static = 124, + Staticget = 125, + Get = 126, + Set = 127, + Preproc = 128, + AutomaticSemicolon = 129, + StringFragment5 = 130, + QMARK = 131, + HtmlComment = 132, + JsxText = 133, + Program = 134, + ExportStatement = 135, + NamespaceExport = 136, + ExportClause = 137, + ExportSpecifier = 138, + ModuleExportName = 139, + Declaration = 140, + Import = 141, + ImportStatement = 142, + ImportClause = 143, + FromClause = 144, + NamespaceImport = 145, + NamedImports = 146, + ImportSpecifier = 147, + ImportAttribute = 148, + Statement = 149, + ExpressionStatement = 150, + VariableDeclaration = 151, + LexicalDeclaration = 152, + VariableDeclarator = 153, + StatementBlock = 154, + ElseClause = 155, + IfStatement = 156, + SwitchStatement = 157, + ForStatement = 158, + ForInStatement = 159, + ForHeader = 160, + WhileStatement = 161, + DoStatement = 162, + TryStatement = 163, + WithStatement = 164, + BreakStatement = 165, + ContinueStatement = 166, + DebuggerStatement = 167, + ReturnStatement = 168, + ThrowStatement = 169, + EmptyStatement = 170, + LabeledStatement = 171, + SwitchBody = 172, + SwitchCase = 173, + SwitchDefault = 174, + CatchClause = 175, + FinallyClause = 176, + ParenthesizedExpression = 177, + Expression = 178, + PrimaryExpression = 179, + YieldExpression = 180, + Object = 181, + ObjectPattern = 182, + AssignmentPattern = 183, + ObjectAssignmentPattern = 184, + Array = 185, + ArrayPattern = 186, + JsxElement = 187, + JsxExpression = 188, + JsxOpeningElement = 189, + MemberExpression = 190, + JsxNamespaceName = 191, + JsxClosingElement = 192, + JsxSelfClosingElement = 193, + JsxAttribute = 194, + String = 195, + Class = 196, + ClassDeclaration = 197, + ClassHeritage = 198, + FunctionExpression = 199, + FunctionDeclaration = 200, + GeneratorFunction = 201, + GeneratorFunctionDeclaration = 202, + ArrowFunction = 203, + CallExpression = 204, + NewExpression = 205, + AwaitExpression = 206, + MemberExpression2 = 207, + SubscriptExpression = 208, + AssignmentExpression = 209, + AugmentedAssignmentLhs = 210, + AugmentedAssignmentExpression = 211, + Initializer = 212, + DestructuringPattern = 213, + SpreadElement = 214, + TernaryExpression = 215, + BinaryExpression = 216, + UnaryExpression = 217, + UpdateExpression = 218, + SequenceExpression = 219, + String2 = 220, + TemplateString = 221, + TemplateSubstitution = 222, + Regex = 223, + MetaProperty = 224, + Arguments = 225, + Decorator = 226, + MemberExpression3 = 227, + CallExpression2 = 228, + ClassBody = 229, + FieldDefinition = 230, + FormalParameters = 231, + ClassStaticBlock = 232, + Pattern = 233, + RestPattern = 234, + MethodDefinition = 235, + Pair = 236, + PairPattern = 237, + PropertyName = 238, + ComputedPropertyName = 239, + ProgramRepeat1 = 240, + ExportStatementRepeat1 = 241, + ExportClauseRepeat1 = 242, + NamedImportsRepeat1 = 243, + VariableDeclarationRepeat1 = 244, + SwitchBodyRepeat1 = 245, + ObjectRepeat1 = 246, + ObjectPatternRepeat1 = 247, + ArrayRepeat1 = 248, + ArrayPatternRepeat1 = 249, + JsxElementRepeat1 = 250, + JsxOpeningElementRepeat1 = 251, + JsxStringRepeat1 = 252, + JsxStringRepeat2 = 253, + SequenceExpressionRepeat1 = 254, + StringRepeat1 = 255, + StringRepeat2 = 256, + TemplateStringRepeat1 = 257, + ClassBodyRepeat1 = 258, + FormalParametersRepeat1 = 259, + PropertyIdentifier = 260, + ShorthandPropertyIdentifier = 261, + ShorthandPropertyIdentifierPattern = 262, + StatementIdentifier = 263, + Error = 264, } impl From for &'static str { @@ -322,9 +317,6 @@ impl From for &'static str { Mozjs::EQ => "=", Mozjs::LBRACK => "[", Mozjs::RBRACK => "]", - Mozjs::GlimmerTemplateContent => "_glimmer_template_content", - Mozjs::GlimmerOpeningTag => "glimmer_opening_tag", - Mozjs::GlimmerClosingTag => "glimmer_closing_tag", Mozjs::HtmlCharacterReference => "html_character_reference", Mozjs::LT => "<", Mozjs::GT => ">", @@ -470,7 +462,6 @@ impl From for &'static str { Mozjs::ObjectAssignmentPattern => "object_assignment_pattern", Mozjs::Array => "array", Mozjs::ArrayPattern => "array_pattern", - Mozjs::GlimmerTemplate => "glimmer_template", Mozjs::JsxElement => "jsx_element", Mozjs::JsxExpression => "jsx_expression", Mozjs::JsxOpeningElement => "jsx_opening_element", @@ -534,7 +525,6 @@ impl From for &'static str { Mozjs::ObjectPatternRepeat1 => "object_pattern_repeat1", Mozjs::ArrayRepeat1 => "array_repeat1", Mozjs::ArrayPatternRepeat1 => "array_pattern_repeat1", - Mozjs::GlimmerTemplateRepeat1 => "glimmer_template_repeat1", Mozjs::JsxElementRepeat1 => "jsx_element_repeat1", Mozjs::JsxOpeningElementRepeat1 => "jsx_opening_element_repeat1", Mozjs::JsxStringRepeat1 => "_jsx_string_repeat1", diff --git a/src/languages/language_python.rs b/src/languages/language_python.rs index e36ada6cd..1d12c16d1 100644 --- a/src/languages/language_python.rs +++ b/src/languages/language_python.rs @@ -69,14 +69,14 @@ pub enum Python { CARET = 62, LTLT = 63, TILDE = 64, - LT = 65, - LTEQ = 66, - EQEQ = 67, - BANGEQ = 68, - GTEQ = 69, - GT = 70, - LTGT = 71, - Is = 72, + Is = 65, + LT = 66, + LTEQ = 67, + EQEQ = 68, + BANGEQ = 69, + GTEQ = 70, + GT = 71, + LTGT = 72, Lambda3 = 73, PLUSEQ = 74, DASHEQ = 75, @@ -94,7 +94,7 @@ pub enum Python { Yield2 = 87, Ellipsis = 88, EscapeSequence = 89, - NotEscapeSequence = 90, + BSLASH = 90, FormatSpecifierToken1 = 91, TypeConversion = 92, Integer = 93, @@ -198,87 +198,88 @@ pub enum Python { BooleanOperator = 191, BinaryOperator = 192, UnaryOperator = 193, - ComparisonOperator = 194, - Lambda = 195, - Lambda2 = 196, - Assignment = 197, - AugmentedAssignment = 198, - PatternList = 199, - RightHandSide = 200, - Yield = 201, - Attribute = 202, - Subscript = 203, - Slice = 204, - Call = 205, - TypedParameter = 206, - Type = 207, - SplatType = 208, - GenericType = 209, - UnionType = 210, - ConstrainedType = 211, - MemberType = 212, - KeywordArgument = 213, - List = 214, - Set = 215, - Tuple = 216, - Dictionary = 217, - Pair = 218, - ListComprehension = 219, - DictionaryComprehension = 220, - SetComprehension = 221, - GeneratorExpression = 222, - ComprehensionClauses = 223, - ParenthesizedExpression = 224, - CollectionElements = 225, - ForInClause = 226, - IfClause = 227, - ConditionalExpression = 228, - ConcatenatedString = 229, - String = 230, - StringContent = 231, - Interpolation = 232, - FExpression = 233, - FormatSpecifier = 234, - Await = 235, - PositionalSeparator = 236, - KeywordSeparator = 237, - ModuleRepeat1 = 238, - SimpleStatementsRepeat1 = 239, - ImportPrefixRepeat1 = 240, - ImportListRepeat1 = 241, - PrintStatementRepeat1 = 242, - AssertStatementRepeat1 = 243, - IfStatementRepeat1 = 244, - MatchStatementRepeat1 = 245, - MatchBlockRepeat1 = 246, - CaseClauseRepeat1 = 247, - TryStatementRepeat1 = 248, - TryStatementRepeat2 = 249, - WithClauseRepeat1 = 250, - GlobalStatementRepeat1 = 251, - TypeParameterRepeat1 = 252, - ArgumentListRepeat1 = 253, - DecoratedDefinitionRepeat1 = 254, - DottedNameRepeat1 = 255, - UnionPatternRepeat1 = 256, - DictPatternRepeat1 = 257, - ParametersRepeat1 = 258, - PatternsRepeat1 = 259, - ComparisonOperatorRepeat1 = 260, - SubscriptRepeat1 = 261, - DictionaryRepeat1 = 262, - ComprehensionClausesRepeat1 = 263, - CollectionElementsRepeat1 = 264, - ForInClauseRepeat1 = 265, - ConcatenatedStringRepeat1 = 266, - StringRepeat1 = 267, - StringContentRepeat1 = 268, - FormatSpecifierRepeat1 = 269, - AsPatternTarget = 270, - FormatExpression = 271, - Isnot = 272, - Notin = 273, - Error = 274, + Notin = 194, + Isnot = 195, + ComparisonOperator = 196, + Lambda = 197, + Lambda2 = 198, + Assignment = 199, + AugmentedAssignment = 200, + PatternList = 201, + RightHandSide = 202, + Yield = 203, + Attribute = 204, + Subscript = 205, + Slice = 206, + Call = 207, + TypedParameter = 208, + Type = 209, + SplatType = 210, + GenericType = 211, + UnionType = 212, + ConstrainedType = 213, + MemberType = 214, + KeywordArgument = 215, + List = 216, + Set = 217, + Tuple = 218, + Dictionary = 219, + Pair = 220, + ListComprehension = 221, + DictionaryComprehension = 222, + SetComprehension = 223, + GeneratorExpression = 224, + ComprehensionClauses = 225, + ParenthesizedExpression = 226, + CollectionElements = 227, + ForInClause = 228, + IfClause = 229, + ConditionalExpression = 230, + ConcatenatedString = 231, + String = 232, + StringContent = 233, + Interpolation = 234, + FExpression = 235, + NotEscapeSequence = 236, + FormatSpecifier = 237, + Await = 238, + PositionalSeparator = 239, + KeywordSeparator = 240, + ModuleRepeat1 = 241, + SimpleStatementsRepeat1 = 242, + ImportPrefixRepeat1 = 243, + ImportListRepeat1 = 244, + PrintStatementRepeat1 = 245, + AssertStatementRepeat1 = 246, + IfStatementRepeat1 = 247, + MatchStatementRepeat1 = 248, + MatchBlockRepeat1 = 249, + CaseClauseRepeat1 = 250, + TryStatementRepeat1 = 251, + TryStatementRepeat2 = 252, + WithClauseRepeat1 = 253, + GlobalStatementRepeat1 = 254, + TypeParameterRepeat1 = 255, + ArgumentListRepeat1 = 256, + DecoratedDefinitionRepeat1 = 257, + DottedNameRepeat1 = 258, + UnionPatternRepeat1 = 259, + DictPatternRepeat1 = 260, + ParametersRepeat1 = 261, + PatternsRepeat1 = 262, + ComparisonOperatorRepeat1 = 263, + SubscriptRepeat1 = 264, + DictionaryRepeat1 = 265, + ComprehensionClausesRepeat1 = 266, + CollectionElementsRepeat1 = 267, + ForInClauseRepeat1 = 268, + ConcatenatedStringRepeat1 = 269, + StringRepeat1 = 270, + StringContentRepeat1 = 271, + FormatSpecifierRepeat1 = 272, + AsPatternTarget = 273, + FormatExpression = 274, + Error = 275, } impl From for &'static str { @@ -350,6 +351,7 @@ impl From for &'static str { Python::CARET => "^", Python::LTLT => "<<", Python::TILDE => "~", + Python::Is => "is", Python::LT => "<", Python::LTEQ => "<=", Python::EQEQ => "==", @@ -357,7 +359,6 @@ impl From for &'static str { Python::GTEQ => ">=", Python::GT => ">", Python::LTGT => "<>", - Python::Is => "is", Python::Lambda3 => "lambda", Python::PLUSEQ => "+=", Python::DASHEQ => "-=", @@ -375,7 +376,7 @@ impl From for &'static str { Python::Yield2 => "yield", Python::Ellipsis => "ellipsis", Python::EscapeSequence => "escape_sequence", - Python::NotEscapeSequence => "_not_escape_sequence", + Python::BSLASH => "\\", Python::FormatSpecifierToken1 => "format_specifier_token1", Python::TypeConversion => "type_conversion", Python::Integer => "integer", @@ -479,6 +480,8 @@ impl From for &'static str { Python::BooleanOperator => "boolean_operator", Python::BinaryOperator => "binary_operator", Python::UnaryOperator => "unary_operator", + Python::Notin => "not in", + Python::Isnot => "is not", Python::ComparisonOperator => "comparison_operator", Python::Lambda => "lambda", Python::Lambda2 => "lambda", @@ -519,6 +522,7 @@ impl From for &'static str { Python::StringContent => "string_content", Python::Interpolation => "interpolation", Python::FExpression => "_f_expression", + Python::NotEscapeSequence => "_not_escape_sequence", Python::FormatSpecifier => "format_specifier", Python::Await => "await", Python::PositionalSeparator => "positional_separator", @@ -557,8 +561,6 @@ impl From for &'static str { Python::FormatSpecifierRepeat1 => "format_specifier_repeat1", Python::AsPatternTarget => "as_pattern_target", Python::FormatExpression => "format_expression", - Python::Isnot => "is not", - Python::Notin => "not in", Python::Error => "ERROR", } } diff --git a/src/languages/language_rust.rs b/src/languages/language_rust.rs index 9303fae3d..e9b9f8e9a 100644 --- a/src/languages/language_rust.rs +++ b/src/languages/language_rust.rs @@ -100,256 +100,261 @@ pub enum Rust { Enum = 93, Fn = 94, For = 95, - If = 96, - Impl = 97, - Let = 98, - Loop = 99, - Match = 100, - Mod = 101, - Pub = 102, - Return = 103, - Static = 104, - Struct = 105, - Trait = 106, - Type = 107, - Union = 108, - Unsafe = 109, - Use = 110, - Where = 111, - While = 112, - Extern = 113, - Ref = 114, - Else = 115, - In = 116, - LT2 = 117, - Dyn = 118, - MutableSpecifier = 119, - Yield = 120, - Move = 121, - Try = 122, - IntegerLiteral = 123, - DQUOTE = 124, - DQUOTE2 = 125, - CharLiteral = 126, - EscapeSequence = 127, - True = 128, - False = 129, - SLASHSLASH = 130, - LineCommentToken1 = 131, - LineCommentToken2 = 132, - LineCommentToken3 = 133, - InnerDocCommentMarker = 134, - OuterDocCommentMarker = 135, - SLASHSTAR = 136, - STARSLASH = 137, - Shebang = 138, - Zelf = 139, - Super = 140, - Crate = 141, - Metavariable = 142, - StringContent = 143, - RawStringLiteralStart = 144, - StringContent2 = 145, - RawStringLiteralEnd = 146, - FloatLiteral = 147, - OuterDocCommentMarker2 = 148, - InnerDocCommentMarker2 = 149, - BlockCommentContent = 150, - DocComment = 151, - ErrorSentinel = 152, - SourceFile = 153, - Statement = 154, - EmptyStatement = 155, - ExpressionStatement = 156, - MacroDefinition = 157, - MacroRule = 158, - TokenPattern = 159, - TokenTreePattern = 160, - TokenBindingPattern = 161, - TokenRepetitionPattern = 162, - FragmentSpecifier = 163, - TokenTree = 164, - TokenRepetition = 165, - AttributeItem = 166, - InnerAttributeItem = 167, - Attribute = 168, - ModItem = 169, - ForeignModItem = 170, - DeclarationList = 171, - StructItem = 172, - UnionItem = 173, - EnumItem = 174, - EnumVariantList = 175, - EnumVariant = 176, - FieldDeclarationList = 177, - FieldDeclaration = 178, - OrderedFieldDeclarationList = 179, - ExternCrateDeclaration = 180, - ConstItem = 181, - StaticItem = 182, - TypeItem = 183, - FunctionItem = 184, - FunctionSignatureItem = 185, - FunctionModifiers = 186, - WhereClause = 187, - WherePredicate = 188, - ImplItem = 189, - TraitItem = 190, - AssociatedType = 191, - TraitBounds = 192, - HigherRankedTraitBound = 193, - RemovedTraitBound = 194, - TypeParameters = 195, - ConstParameter = 196, - ConstrainedTypeParameter = 197, - OptionalTypeParameter = 198, - LetDeclaration = 199, - UseDeclaration = 200, - UseClause = 201, - ScopedUseList = 202, - UseList = 203, - UseAsClause = 204, - UseWildcard = 205, - Parameters = 206, - SelfParameter = 207, - VariadicParameter = 208, - Parameter = 209, - ExternModifier = 210, - VisibilityModifier = 211, - Type2 = 212, - BracketedType = 213, - QualifiedType = 214, - Lifetime = 215, - ArrayType = 216, - ForLifetimes = 217, - FunctionType = 218, - TupleType = 219, - UnitType = 220, - GenericFunction = 221, - GenericType = 222, - GenericTypeWithTurbofish = 223, - BoundedType = 224, - TypeArguments = 225, - TypeBinding = 226, - ReferenceType = 227, - PointerType = 228, - NeverType = 229, - AbstractType = 230, - DynamicType = 231, - ExpressionExceptRange = 232, - Expression = 233, - MacroInvocation = 234, - TokenTree2 = 235, - DelimTokens = 236, - NonDelimToken = 237, - ScopedIdentifier = 238, - ScopedTypeIdentifier = 239, - ScopedTypeIdentifier2 = 240, - RangeExpression = 241, - UnaryExpression = 242, - TryExpression = 243, - ReferenceExpression = 244, - BinaryExpression = 245, - AssignmentExpression = 246, - CompoundAssignmentExpr = 247, - TypeCastExpression = 248, - ReturnExpression = 249, - YieldExpression = 250, - CallExpression = 251, - Arguments = 252, - ArrayExpression = 253, - ParenthesizedExpression = 254, - TupleExpression = 255, - UnitExpression = 256, - StructExpression = 257, - FieldInitializerList = 258, - ShorthandFieldInitializer = 259, - FieldInitializer = 260, - BaseFieldInitializer = 261, - IfExpression = 262, - LetCondition = 263, - LetChain2 = 264, - Condition = 265, - ElseClause = 266, - MatchExpression = 267, - MatchBlock = 268, - MatchArm = 269, - MatchArm2 = 270, - MatchPattern = 271, - WhileExpression = 272, - LoopExpression = 273, - ForExpression = 274, - ConstBlock = 275, - ClosureExpression = 276, - ClosureParameters = 277, - Label = 278, - BreakExpression = 279, - ContinueExpression = 280, - IndexExpression = 281, - AwaitExpression = 282, - FieldExpression = 283, - UnsafeBlock = 284, - AsyncBlock = 285, - TryBlock = 286, - Block = 287, - Pattern = 288, - TuplePattern = 289, - SlicePattern = 290, - TupleStructPattern = 291, - StructPattern = 292, - FieldPattern = 293, - RemainingFieldPattern = 294, - MutPattern = 295, - RangePattern = 296, - RefPattern = 297, - CapturedPattern = 298, - ReferencePattern = 299, - OrPattern = 300, - Literal2 = 301, - LiteralPattern = 302, - NegativeLiteral = 303, - StringLiteral = 304, - RawStringLiteral = 305, - BooleanLiteral = 306, - LineComment = 307, - LineDocCommentMarker = 308, - BlockComment = 309, - BlockDocCommentMarker = 310, - SourceFileRepeat1 = 311, - MacroDefinitionRepeat1 = 312, - TokenTreePatternRepeat1 = 313, - TokenTreeRepeat1 = 314, - NonSpecialTokenRepeat1 = 315, - DeclarationListRepeat1 = 316, - EnumVariantListRepeat1 = 317, - EnumVariantListRepeat2 = 318, - FieldDeclarationListRepeat1 = 319, - OrderedFieldDeclarationListRepeat1 = 320, - FunctionModifiersRepeat1 = 321, - WhereClauseRepeat1 = 322, - TraitBoundsRepeat1 = 323, - TypeParametersRepeat1 = 324, - UseListRepeat1 = 325, - ParametersRepeat1 = 326, - ForLifetimesRepeat1 = 327, - TupleTypeRepeat1 = 328, - TypeArgumentsRepeat1 = 329, - DelimTokenTreeRepeat1 = 330, - ArgumentsRepeat1 = 331, - TupleExpressionRepeat1 = 332, - FieldInitializerListRepeat1 = 333, - MatchBlockRepeat1 = 334, - MatchArmRepeat1 = 335, - ClosureParametersRepeat1 = 336, - TuplePatternRepeat1 = 337, - SlicePatternRepeat1 = 338, - StructPatternRepeat1 = 339, - StringLiteralRepeat1 = 340, - FieldIdentifier = 341, - LetChain = 342, - ShorthandFieldIdentifier = 343, - TypeIdentifier = 344, - Error = 345, + Gen = 96, + If = 97, + Impl = 98, + Let = 99, + Loop = 100, + Match = 101, + Mod = 102, + Pub = 103, + Return = 104, + Static = 105, + Struct = 106, + Trait = 107, + Type = 108, + Union = 109, + Unsafe = 110, + Use = 111, + Where = 112, + While = 113, + Extern = 114, + Ref = 115, + Else = 116, + In = 117, + LT2 = 118, + Dyn = 119, + MutableSpecifier = 120, + Raw = 121, + Yield = 122, + Move = 123, + Try = 124, + IntegerLiteral = 125, + DQUOTE = 126, + DQUOTE2 = 127, + CharLiteral = 128, + EscapeSequence = 129, + True = 130, + False = 131, + SLASHSLASH = 132, + LineCommentToken1 = 133, + LineCommentToken2 = 134, + LineCommentToken3 = 135, + BANG2 = 136, + SLASH2 = 137, + SLASHSTAR = 138, + STARSLASH = 139, + Shebang = 140, + Zelf = 141, + Super = 142, + Crate = 143, + Metavariable = 144, + StringContent = 145, + RawStringLiteralStart = 146, + StringContent2 = 147, + RawStringLiteralEnd = 148, + FloatLiteral = 149, + OuterDocCommentMarker = 150, + InnerDocCommentMarker = 151, + BlockCommentContent = 152, + DocComment = 153, + ErrorSentinel = 154, + SourceFile = 155, + Statement = 156, + EmptyStatement = 157, + ExpressionStatement = 158, + MacroDefinition = 159, + MacroRule = 160, + TokenPattern = 161, + TokenTreePattern = 162, + TokenBindingPattern = 163, + TokenRepetitionPattern = 164, + FragmentSpecifier = 165, + TokenTree = 166, + TokenRepetition = 167, + AttributeItem = 168, + InnerAttributeItem = 169, + Attribute = 170, + ModItem = 171, + ForeignModItem = 172, + DeclarationList = 173, + StructItem = 174, + UnionItem = 175, + EnumItem = 176, + EnumVariantList = 177, + EnumVariant = 178, + FieldDeclarationList = 179, + FieldDeclaration = 180, + OrderedFieldDeclarationList = 181, + ExternCrateDeclaration = 182, + ConstItem = 183, + StaticItem = 184, + TypeItem = 185, + FunctionItem = 186, + FunctionSignatureItem = 187, + FunctionModifiers = 188, + WhereClause = 189, + WherePredicate = 190, + ImplItem = 191, + TraitItem = 192, + AssociatedType = 193, + TraitBounds = 194, + HigherRankedTraitBound = 195, + RemovedTraitBound = 196, + TypeParameters = 197, + ConstParameter = 198, + ConstrainedTypeParameter = 199, + OptionalTypeParameter = 200, + LetDeclaration = 201, + UseDeclaration = 202, + UseClause = 203, + ScopedUseList = 204, + UseList = 205, + UseAsClause = 206, + UseWildcard = 207, + Parameters = 208, + SelfParameter = 209, + VariadicParameter = 210, + Parameter = 211, + ExternModifier = 212, + VisibilityModifier = 213, + Type2 = 214, + BracketedType = 215, + QualifiedType = 216, + Lifetime = 217, + ArrayType = 218, + ForLifetimes = 219, + FunctionType = 220, + TupleType = 221, + UnitType = 222, + GenericFunction = 223, + GenericType = 224, + GenericTypeWithTurbofish = 225, + BoundedType = 226, + TypeArguments = 227, + TypeBinding = 228, + ReferenceType = 229, + PointerType = 230, + NeverType = 231, + AbstractType = 232, + DynamicType = 233, + ExpressionExceptRange = 234, + Expression = 235, + MacroInvocation = 236, + TokenTree2 = 237, + DelimTokens = 238, + NonDelimToken = 239, + ScopedIdentifier = 240, + ScopedTypeIdentifier = 241, + ScopedTypeIdentifier2 = 242, + RangeExpression = 243, + UnaryExpression = 244, + TryExpression = 245, + ReferenceExpression = 246, + BinaryExpression = 247, + AssignmentExpression = 248, + CompoundAssignmentExpr = 249, + TypeCastExpression = 250, + ReturnExpression = 251, + YieldExpression = 252, + CallExpression = 253, + Arguments = 254, + ArrayExpression = 255, + ParenthesizedExpression = 256, + TupleExpression = 257, + UnitExpression = 258, + StructExpression = 259, + FieldInitializerList = 260, + ShorthandFieldInitializer = 261, + FieldInitializer = 262, + BaseFieldInitializer = 263, + IfExpression = 264, + LetCondition = 265, + LetChain2 = 266, + Condition = 267, + ElseClause = 268, + MatchExpression = 269, + MatchBlock = 270, + MatchArm = 271, + MatchArm2 = 272, + MatchPattern = 273, + WhileExpression = 274, + LoopExpression = 275, + ForExpression = 276, + ConstBlock = 277, + ClosureExpression = 278, + ClosureParameters = 279, + Label = 280, + BreakExpression = 281, + ContinueExpression = 282, + IndexExpression = 283, + AwaitExpression = 284, + FieldExpression = 285, + UnsafeBlock = 286, + AsyncBlock = 287, + GenBlock = 288, + TryBlock = 289, + Block = 290, + Pattern = 291, + TuplePattern = 292, + SlicePattern = 293, + TupleStructPattern = 294, + StructPattern = 295, + FieldPattern = 296, + RemainingFieldPattern = 297, + MutPattern = 298, + RangePattern = 299, + RefPattern = 300, + CapturedPattern = 301, + ReferencePattern = 302, + OrPattern = 303, + Literal2 = 304, + LiteralPattern = 305, + NegativeLiteral = 306, + StringLiteral = 307, + RawStringLiteral = 308, + BooleanLiteral = 309, + LineComment = 310, + LineDocCommentMarker = 311, + InnerDocCommentMarker2 = 312, + OuterDocCommentMarker2 = 313, + BlockComment = 314, + BlockDocCommentMarker = 315, + SourceFileRepeat1 = 316, + MacroDefinitionRepeat1 = 317, + TokenTreePatternRepeat1 = 318, + TokenTreeRepeat1 = 319, + NonSpecialTokenRepeat1 = 320, + DeclarationListRepeat1 = 321, + EnumVariantListRepeat1 = 322, + EnumVariantListRepeat2 = 323, + FieldDeclarationListRepeat1 = 324, + OrderedFieldDeclarationListRepeat1 = 325, + FunctionModifiersRepeat1 = 326, + WhereClauseRepeat1 = 327, + TraitBoundsRepeat1 = 328, + TypeParametersRepeat1 = 329, + UseListRepeat1 = 330, + ParametersRepeat1 = 331, + ForLifetimesRepeat1 = 332, + TupleTypeRepeat1 = 333, + TypeArgumentsRepeat1 = 334, + DelimTokenTreeRepeat1 = 335, + ArgumentsRepeat1 = 336, + TupleExpressionRepeat1 = 337, + FieldInitializerListRepeat1 = 338, + MatchBlockRepeat1 = 339, + MatchArmRepeat1 = 340, + ClosureParametersRepeat1 = 341, + TuplePatternRepeat1 = 342, + SlicePatternRepeat1 = 343, + StructPatternRepeat1 = 344, + StringLiteralRepeat1 = 345, + FieldIdentifier = 346, + LetChain = 347, + ShorthandFieldIdentifier = 348, + TypeIdentifier = 349, + Error = 350, } impl From for &'static str { @@ -452,6 +457,7 @@ impl From for &'static str { Rust::Enum => "enum", Rust::Fn => "fn", Rust::For => "for", + Rust::Gen => "gen", Rust::If => "if", Rust::Impl => "impl", Rust::Let => "let", @@ -476,6 +482,7 @@ impl From for &'static str { Rust::LT2 => "<", Rust::Dyn => "dyn", Rust::MutableSpecifier => "mutable_specifier", + Rust::Raw => "raw", Rust::Yield => "yield", Rust::Move => "move", Rust::Try => "try", @@ -490,8 +497,8 @@ impl From for &'static str { Rust::LineCommentToken1 => "line_comment_token1", Rust::LineCommentToken2 => "line_comment_token2", Rust::LineCommentToken3 => "line_comment_token3", - Rust::InnerDocCommentMarker => "inner_doc_comment_marker", - Rust::OuterDocCommentMarker => "outer_doc_comment_marker", + Rust::BANG2 => "!", + Rust::SLASH2 => "/", Rust::SLASHSTAR => "/*", Rust::STARSLASH => "*/", Rust::Shebang => "shebang", @@ -504,8 +511,8 @@ impl From for &'static str { Rust::StringContent2 => "string_content", Rust::RawStringLiteralEnd => "_raw_string_literal_end", Rust::FloatLiteral => "float_literal", - Rust::OuterDocCommentMarker2 => "outer_doc_comment_marker", - Rust::InnerDocCommentMarker2 => "inner_doc_comment_marker", + Rust::OuterDocCommentMarker => "outer_doc_comment_marker", + Rust::InnerDocCommentMarker => "inner_doc_comment_marker", Rust::BlockCommentContent => "_block_comment_content", Rust::DocComment => "doc_comment", Rust::ErrorSentinel => "_error_sentinel", @@ -642,6 +649,7 @@ impl From for &'static str { Rust::FieldExpression => "field_expression", Rust::UnsafeBlock => "unsafe_block", Rust::AsyncBlock => "async_block", + Rust::GenBlock => "gen_block", Rust::TryBlock => "try_block", Rust::Block => "block", Rust::Pattern => "_pattern", @@ -665,6 +673,8 @@ impl From for &'static str { Rust::BooleanLiteral => "boolean_literal", Rust::LineComment => "line_comment", Rust::LineDocCommentMarker => "_line_doc_comment_marker", + Rust::InnerDocCommentMarker2 => "inner_doc_comment_marker", + Rust::OuterDocCommentMarker2 => "outer_doc_comment_marker", Rust::BlockComment => "block_comment", Rust::BlockDocCommentMarker => "_block_doc_comment_marker", Rust::SourceFileRepeat1 => "source_file_repeat1", diff --git a/src/languages/language_tsx.rs b/src/languages/language_tsx.rs index 31a003152..e90204510 100644 --- a/src/languages/language_tsx.rs +++ b/src/languages/language_tsx.rs @@ -21,394 +21,390 @@ pub enum Tsx { Import2 = 14, From = 15, With = 16, - Var = 17, - Let = 18, - Const = 19, - BANG = 20, - Else = 21, - If = 22, - Switch = 23, - For = 24, - LPAREN = 25, - RPAREN = 26, - Await = 27, - In = 28, - Of = 29, - While = 30, - Do = 31, - Try = 32, - Break = 33, - Continue = 34, - Debugger = 35, - Return = 36, - Throw = 37, - SEMI = 38, - COLON = 39, - Case = 40, - Catch = 41, - Finally = 42, - Yield = 43, - LBRACK = 44, - RBRACK = 45, - GlimmerTemplateContent = 46, - GlimmerOpeningTag = 47, - GlimmerClosingTag = 48, - JsxTextToken1 = 49, - JsxTextToken2 = 50, - HtmlCharacterReference = 51, - GT = 52, - Identifier2 = 53, - DOT = 54, - LTSLASH = 55, - SLASHGT = 56, - DQUOTE = 57, - SQUOTE = 58, - StringFragment = 59, - StringFragment2 = 60, - Class2 = 61, - Async = 62, - Function = 63, - EQGT = 64, - QMARKDOT = 65, - New = 66, - Using = 67, - PLUSEQ = 68, - DASHEQ = 69, - STAREQ = 70, - SLASHEQ = 71, - PERCENTEQ = 72, - CARETEQ = 73, - AMPEQ = 74, - PIPEEQ = 75, - GTGTEQ = 76, - GTGTGTEQ = 77, - LTLTEQ = 78, - STARSTAREQ = 79, - AMPAMPEQ = 80, - PIPEPIPEEQ = 81, - QMARKQMARKEQ = 82, - DOTDOTDOT = 83, - AMPAMP = 84, - PIPEPIPE = 85, - GTGT = 86, - GTGTGT = 87, - LTLT = 88, - AMP = 89, - CARET = 90, - PIPE = 91, - PLUS = 92, - DASH = 93, - SLASH = 94, - PERCENT = 95, - STARSTAR = 96, - LT = 97, - LTEQ = 98, - EQEQ = 99, - EQEQEQ = 100, - BANGEQ = 101, - BANGEQEQ = 102, - GTEQ = 103, - QMARKQMARK = 104, - Instanceof = 105, - TILDE = 106, - Void = 107, - Delete = 108, - PLUSPLUS = 109, - DASHDASH = 110, - StringFragment3 = 111, - StringFragment4 = 112, - EscapeSequence = 113, - Comment = 114, - BQUOTE = 115, - DOLLARLBRACE = 116, - SLASH2 = 117, - RegexPattern = 118, - RegexFlags = 119, - Number = 120, - PrivatePropertyIdentifier = 121, - Target = 122, - This = 123, - Super = 124, - True = 125, - False = 126, - Null = 127, - Undefined = 128, - AT = 129, - Static = 130, - Readonly = 131, - Get = 132, - Set = 133, - QMARK = 134, - Declare = 135, - Public = 136, - Private = 137, - Protected = 138, - Override = 139, - Module2 = 140, - Any = 141, - Number2 = 142, - Boolean = 143, - String3 = 144, - Symbol = 145, - Object2 = 146, - Abstract = 147, - Accessor = 148, - Satisfies = 149, - Require = 150, - Extends = 151, - Implements = 152, - Global = 153, - Interface = 154, - Enum = 155, - DASHQMARKCOLON = 156, - PLUSQMARKCOLON = 157, - QMARKCOLON = 158, - Asserts2 = 159, - Infer = 160, - Is = 161, - Keyof = 162, - Uniquesymbol = 163, - Unknown = 164, - Never = 165, - LBRACEPIPE = 166, - PIPERBRACE = 167, - AutomaticSemicolon = 168, - StringFragment5 = 169, - QMARK2 = 170, - HtmlComment = 171, - FunctionSignatureAutomaticSemicolon = 172, - ErrorRecovery = 173, - Program = 174, - ExportStatement = 175, - NamespaceExport = 176, - ExportClause = 177, - ExportSpecifier = 178, - ModuleExportName = 179, - Declaration = 180, - Import = 181, - ImportStatement = 182, - ImportClause = 183, - FromClause = 184, - NamespaceImport = 185, - NamedImports = 186, - ImportSpecifier = 187, - ImportAttribute = 188, - Statement = 189, - ExpressionStatement = 190, - VariableDeclaration = 191, - LexicalDeclaration = 192, - VariableDeclarator = 193, - StatementBlock = 194, - ElseClause = 195, - IfStatement = 196, - SwitchStatement = 197, - ForStatement = 198, - ForInStatement = 199, - ForHeader = 200, - WhileStatement = 201, - DoStatement = 202, - TryStatement = 203, - WithStatement = 204, - BreakStatement = 205, - ContinueStatement = 206, - DebuggerStatement = 207, - ReturnStatement = 208, - ThrowStatement = 209, - EmptyStatement = 210, - LabeledStatement = 211, - SwitchBody = 212, - SwitchCase = 213, - SwitchDefault = 214, - CatchClause = 215, - FinallyClause = 216, - ParenthesizedExpression = 217, - Expression = 218, - PrimaryExpression = 219, - YieldExpression = 220, - Object = 221, - ObjectPattern = 222, - AssignmentPattern = 223, - ObjectAssignmentPattern = 224, - Array = 225, - ArrayPattern = 226, - GlimmerTemplate = 227, - JsxElement = 228, - JsxText = 229, - JsxExpression = 230, - JsxOpeningElement = 231, - NestedIdentifier = 232, - JsxNamespaceName = 233, - JsxClosingElement = 234, - JsxSelfClosingElement = 235, - JsxAttribute = 236, - String = 237, - Class = 238, - ClassDeclaration = 239, - ClassHeritage = 240, - FunctionExpression = 241, - FunctionDeclaration = 242, - GeneratorFunction = 243, - GeneratorFunctionDeclaration = 244, - ArrowFunction = 245, - CallSignature2 = 246, - FormalParameter = 247, - OptionalChain = 248, - CallExpression = 249, - NewExpression = 250, - AwaitExpression = 251, - MemberExpression = 252, - SubscriptExpression = 253, - AssignmentExpression = 254, - AugmentedAssignmentLhs = 255, - AugmentedAssignmentExpression = 256, - Initializer = 257, - DestructuringPattern = 258, - SpreadElement = 259, - TernaryExpression = 260, - BinaryExpression = 261, - UnaryExpression = 262, - UpdateExpression = 263, - SequenceExpression = 264, - String2 = 265, - TemplateString = 266, - TemplateSubstitution = 267, - Regex = 268, - MetaProperty = 269, - Arguments = 270, - Decorator = 271, - MemberExpression2 = 272, - CallExpression2 = 273, - ClassBody = 274, - FormalParameters = 275, - ClassStaticBlock = 276, - Pattern = 277, - RestPattern = 278, - MethodDefinition = 279, - Pair = 280, - PairPattern = 281, - PropertyName = 282, - ComputedPropertyName = 283, - PublicFieldDefinition = 284, - ImportIdentifier = 285, - NonNullExpression = 286, - MethodSignature = 287, - AbstractMethodSignature = 288, - FunctionSignature = 289, - AsExpression = 290, - SatisfiesExpression = 291, - InstantiationExpression = 292, - ImportRequireClause = 293, - ExtendsClause = 294, - ExtendsClauseSingle = 295, - ImplementsClause = 296, - AmbientDeclaration = 297, - AbstractClassDeclaration = 298, - Module = 299, - InternalModule = 300, - Module3 = 301, - ImportAlias = 302, - NestedTypeIdentifier = 303, - InterfaceDeclaration = 304, - ExtendsTypeClause = 305, - EnumDeclaration = 306, - EnumBody = 307, - EnumAssignment = 308, - TypeAliasDeclaration = 309, - AccessibilityModifier = 310, - OverrideModifier = 311, - RequiredParameter = 312, - OptionalParameter = 313, - ParameterName = 314, - OmittingTypeAnnotation = 315, - AddingTypeAnnotation = 316, - OptingTypeAnnotation = 317, - TypeAnnotation = 318, - MemberExpression3 = 319, - CallExpression3 = 320, - Asserts = 321, - AssertsAnnotation = 322, - Type2 = 323, - RequiredParameter2 = 324, - OptionalParameter2 = 325, - OptionalType = 326, - RestType = 327, - TupleTypeMember = 328, - ConstructorType = 329, - PrimaryType = 330, - TemplateType = 331, - TemplateLiteralType = 332, - InferType = 333, - ConditionalType = 334, - GenericType = 335, - TypePredicate = 336, - TypePredicateAnnotation = 337, - MemberExpression4 = 338, - SubscriptExpression2 = 339, - CallExpression4 = 340, - InstantiationExpression2 = 341, - TypeQuery = 342, - IndexTypeQuery = 343, - LookupType = 344, - MappedTypeClause = 345, - LiteralType = 346, - UnaryExpression2 = 347, - ExistentialType = 348, - FlowMaybeType = 349, - ParenthesizedType = 350, - PredefinedType = 351, - TypeArguments = 352, - ObjectType = 353, - CallSignature = 354, - PropertySignature = 355, - TypeParameters = 356, - TypeParameter = 357, - DefaultType = 358, - Constraint = 359, - ConstructSignature = 360, - IndexSignature = 361, - ArrayType = 362, - TupleType = 363, - ReadonlyType = 364, - UnionType = 365, - IntersectionType = 366, - FunctionType = 367, - ProgramRepeat1 = 368, - ExportStatementRepeat1 = 369, - ExportClauseRepeat1 = 370, - NamedImportsRepeat1 = 371, - VariableDeclarationRepeat1 = 372, - SwitchBodyRepeat1 = 373, - ObjectRepeat1 = 374, - ObjectPatternRepeat1 = 375, - ArrayRepeat1 = 376, - ArrayPatternRepeat1 = 377, - GlimmerTemplateRepeat1 = 378, - JsxElementRepeat1 = 379, - JsxStringRepeat1 = 380, - JsxStringRepeat2 = 381, - SequenceExpressionRepeat1 = 382, - StringRepeat1 = 383, - StringRepeat2 = 384, - TemplateStringRepeat1 = 385, - ClassBodyRepeat1 = 386, - FormalParametersRepeat1 = 387, - JsxStartOpeningElementRepeat1 = 388, - ExtendsClauseRepeat1 = 389, - ImplementsClauseRepeat1 = 390, - ExtendsTypeClauseRepeat1 = 391, - EnumBodyRepeat1 = 392, - TemplateLiteralTypeRepeat1 = 393, - ObjectTypeRepeat1 = 394, - TypeParametersRepeat1 = 395, - TupleTypeRepeat1 = 396, - InterfaceBody = 397, - PropertyIdentifier = 398, - ShorthandPropertyIdentifier = 399, - ShorthandPropertyIdentifierPattern = 400, - StatementIdentifier = 401, - ThisType = 402, - TypeIdentifier = 403, - Error = 404, + Assert = 17, + Var = 18, + Let = 19, + Const = 20, + BANG = 21, + Else = 22, + If = 23, + Switch = 24, + For = 25, + LPAREN = 26, + SEMI = 27, + RPAREN = 28, + Await = 29, + In = 30, + Of = 31, + While = 32, + Do = 33, + Try = 34, + Break = 35, + Continue = 36, + Debugger = 37, + Return = 38, + Throw = 39, + COLON = 40, + Case = 41, + Catch = 42, + Finally = 43, + Yield = 44, + LBRACK = 45, + RBRACK = 46, + HtmlCharacterReference = 47, + GT = 48, + Identifier2 = 49, + DOT = 50, + LTSLASH = 51, + SLASHGT = 52, + DQUOTE = 53, + SQUOTE = 54, + StringFragment = 55, + StringFragment2 = 56, + Class2 = 57, + Async = 58, + Function = 59, + EQGT = 60, + QMARKDOT = 61, + New = 62, + Using = 63, + PLUSEQ = 64, + DASHEQ = 65, + STAREQ = 66, + SLASHEQ = 67, + PERCENTEQ = 68, + CARETEQ = 69, + AMPEQ = 70, + PIPEEQ = 71, + GTGTEQ = 72, + GTGTGTEQ = 73, + LTLTEQ = 74, + STARSTAREQ = 75, + AMPAMPEQ = 76, + PIPEPIPEEQ = 77, + QMARKQMARKEQ = 78, + DOTDOTDOT = 79, + AMPAMP = 80, + PIPEPIPE = 81, + GTGT = 82, + GTGTGT = 83, + LTLT = 84, + AMP = 85, + CARET = 86, + PIPE = 87, + PLUS = 88, + DASH = 89, + SLASH = 90, + PERCENT = 91, + STARSTAR = 92, + LT = 93, + LTEQ = 94, + EQEQ = 95, + EQEQEQ = 96, + BANGEQ = 97, + BANGEQEQ = 98, + GTEQ = 99, + QMARKQMARK = 100, + Instanceof = 101, + TILDE = 102, + Void = 103, + Delete = 104, + PLUSPLUS = 105, + DASHDASH = 106, + StringFragment3 = 107, + StringFragment4 = 108, + EscapeSequence = 109, + Comment = 110, + BQUOTE = 111, + DOLLARLBRACE = 112, + SLASH2 = 113, + RegexPattern = 114, + RegexFlags = 115, + Number = 116, + PrivatePropertyIdentifier = 117, + Target = 118, + Meta = 119, + This = 120, + Super = 121, + True = 122, + False = 123, + Null = 124, + Undefined = 125, + AT = 126, + Static = 127, + Readonly = 128, + Get = 129, + Set = 130, + QMARK = 131, + Declare = 132, + Public = 133, + Private = 134, + Protected = 135, + Override = 136, + Module2 = 137, + Any = 138, + Number2 = 139, + Boolean = 140, + String3 = 141, + Symbol = 142, + Object2 = 143, + Abstract = 144, + Accessor = 145, + Satisfies = 146, + Require = 147, + Extends = 148, + Implements = 149, + Global = 150, + Interface = 151, + Enum = 152, + DASHQMARKCOLON = 153, + PLUSQMARKCOLON = 154, + QMARKCOLON = 155, + Asserts2 = 156, + Infer = 157, + Is = 158, + Keyof = 159, + Uniquesymbol = 160, + Unknown = 161, + Never = 162, + LBRACEPIPE = 163, + PIPERBRACE = 164, + AutomaticSemicolon = 165, + StringFragment5 = 166, + QMARK2 = 167, + HtmlComment = 168, + JsxText = 169, + FunctionSignatureAutomaticSemicolon = 170, + ErrorRecovery = 171, + Program = 172, + ExportStatement = 173, + NamespaceExport = 174, + ExportClause = 175, + ExportSpecifier = 176, + ModuleExportName = 177, + Declaration = 178, + Import = 179, + ImportStatement = 180, + ImportClause = 181, + FromClause = 182, + NamespaceImport = 183, + NamedImports = 184, + ImportSpecifier = 185, + ImportAttribute = 186, + Statement = 187, + ExpressionStatement = 188, + VariableDeclaration = 189, + LexicalDeclaration = 190, + VariableDeclarator = 191, + StatementBlock = 192, + ElseClause = 193, + IfStatement = 194, + SwitchStatement = 195, + ForStatement = 196, + ForInStatement = 197, + ForHeader = 198, + WhileStatement = 199, + DoStatement = 200, + TryStatement = 201, + WithStatement = 202, + BreakStatement = 203, + ContinueStatement = 204, + DebuggerStatement = 205, + ReturnStatement = 206, + ThrowStatement = 207, + EmptyStatement = 208, + LabeledStatement = 209, + SwitchBody = 210, + SwitchCase = 211, + SwitchDefault = 212, + CatchClause = 213, + FinallyClause = 214, + ParenthesizedExpression = 215, + Expression = 216, + PrimaryExpression = 217, + YieldExpression = 218, + Object = 219, + ObjectPattern = 220, + AssignmentPattern = 221, + ObjectAssignmentPattern = 222, + Array = 223, + ArrayPattern = 224, + JsxElement = 225, + JsxExpression = 226, + JsxOpeningElement = 227, + NestedIdentifier = 228, + JsxNamespaceName = 229, + JsxClosingElement = 230, + JsxSelfClosingElement = 231, + JsxAttribute = 232, + String = 233, + Class = 234, + ClassDeclaration = 235, + ClassHeritage = 236, + FunctionExpression = 237, + FunctionDeclaration = 238, + GeneratorFunction = 239, + GeneratorFunctionDeclaration = 240, + ArrowFunction = 241, + CallSignature2 = 242, + FormalParameter = 243, + OptionalChain = 244, + CallExpression = 245, + NewExpression = 246, + AwaitExpression = 247, + MemberExpression = 248, + SubscriptExpression = 249, + AssignmentExpression = 250, + AugmentedAssignmentLhs = 251, + AugmentedAssignmentExpression = 252, + Initializer = 253, + DestructuringPattern = 254, + SpreadElement = 255, + TernaryExpression = 256, + BinaryExpression = 257, + UnaryExpression = 258, + UpdateExpression = 259, + SequenceExpression = 260, + String2 = 261, + TemplateString = 262, + TemplateSubstitution = 263, + Regex = 264, + MetaProperty = 265, + Arguments = 266, + Decorator = 267, + MemberExpression2 = 268, + CallExpression2 = 269, + ClassBody = 270, + FormalParameters = 271, + ClassStaticBlock = 272, + Pattern = 273, + RestPattern = 274, + MethodDefinition = 275, + Pair = 276, + PairPattern = 277, + PropertyName = 278, + ComputedPropertyName = 279, + PublicFieldDefinition = 280, + ImportIdentifier = 281, + NonNullExpression = 282, + MethodSignature = 283, + AbstractMethodSignature = 284, + FunctionSignature = 285, + ParenthesizedExpression2 = 286, + AsExpression = 287, + SatisfiesExpression = 288, + InstantiationExpression = 289, + ImportRequireClause = 290, + ExtendsClause = 291, + ExtendsClauseSingle = 292, + ImplementsClause = 293, + AmbientDeclaration = 294, + AbstractClassDeclaration = 295, + Module = 296, + InternalModule = 297, + Module3 = 298, + ImportAlias = 299, + NestedTypeIdentifier = 300, + InterfaceDeclaration = 301, + ExtendsTypeClause = 302, + EnumDeclaration = 303, + EnumBody = 304, + EnumAssignment = 305, + TypeAliasDeclaration = 306, + AccessibilityModifier = 307, + OverrideModifier = 308, + RequiredParameter = 309, + OptionalParameter = 310, + ParameterName = 311, + OmittingTypeAnnotation = 312, + AddingTypeAnnotation = 313, + OptingTypeAnnotation = 314, + TypeAnnotation = 315, + MemberExpression3 = 316, + CallExpression3 = 317, + Asserts = 318, + AssertsAnnotation = 319, + Type2 = 320, + RequiredParameter2 = 321, + OptionalParameter2 = 322, + OptionalType = 323, + RestType = 324, + TupleTypeMember = 325, + ConstructorType = 326, + PrimaryType = 327, + TemplateType = 328, + TemplateLiteralType = 329, + InferType = 330, + ConditionalType = 331, + GenericType = 332, + TypePredicate = 333, + TypePredicateAnnotation = 334, + MemberExpression4 = 335, + SubscriptExpression2 = 336, + CallExpression4 = 337, + InstantiationExpression2 = 338, + TypeQuery = 339, + IndexTypeQuery = 340, + LookupType = 341, + MappedTypeClause = 342, + LiteralType = 343, + UnaryExpression2 = 344, + ExistentialType = 345, + FlowMaybeType = 346, + ParenthesizedType = 347, + PredefinedType = 348, + TypeArguments = 349, + ObjectType = 350, + CallSignature = 351, + PropertySignature = 352, + TypeParameters = 353, + TypeParameter = 354, + DefaultType = 355, + Constraint = 356, + ConstructSignature = 357, + IndexSignature = 358, + ArrayType = 359, + TupleType = 360, + ReadonlyType = 361, + UnionType = 362, + IntersectionType = 363, + FunctionType = 364, + ProgramRepeat1 = 365, + ExportStatementRepeat1 = 366, + ExportClauseRepeat1 = 367, + NamedImportsRepeat1 = 368, + VariableDeclarationRepeat1 = 369, + SwitchBodyRepeat1 = 370, + ObjectRepeat1 = 371, + ObjectPatternRepeat1 = 372, + ArrayRepeat1 = 373, + ArrayPatternRepeat1 = 374, + JsxElementRepeat1 = 375, + JsxStringRepeat1 = 376, + JsxStringRepeat2 = 377, + SequenceExpressionRepeat1 = 378, + StringRepeat1 = 379, + StringRepeat2 = 380, + TemplateStringRepeat1 = 381, + ClassBodyRepeat1 = 382, + FormalParametersRepeat1 = 383, + JsxStartOpeningElementRepeat1 = 384, + ExtendsClauseRepeat1 = 385, + ImplementsClauseRepeat1 = 386, + ExtendsTypeClauseRepeat1 = 387, + EnumBodyRepeat1 = 388, + TemplateLiteralTypeRepeat1 = 389, + ObjectTypeRepeat1 = 390, + TypeParametersRepeat1 = 391, + TupleTypeRepeat1 = 392, + InterfaceBody = 393, + PropertyIdentifier = 394, + ShorthandPropertyIdentifier = 395, + ShorthandPropertyIdentifierPattern = 396, + StatementIdentifier = 397, + ThisType = 398, + TypeIdentifier = 399, + Error = 400, } impl From for &'static str { @@ -432,6 +428,7 @@ impl From for &'static str { Tsx::Import2 => "import", Tsx::From => "from", Tsx::With => "with", + Tsx::Assert => "assert", Tsx::Var => "var", Tsx::Let => "let", Tsx::Const => "const", @@ -441,6 +438,7 @@ impl From for &'static str { Tsx::Switch => "switch", Tsx::For => "for", Tsx::LPAREN => "(", + Tsx::SEMI => ";", Tsx::RPAREN => ")", Tsx::Await => "await", Tsx::In => "in", @@ -453,7 +451,6 @@ impl From for &'static str { Tsx::Debugger => "debugger", Tsx::Return => "return", Tsx::Throw => "throw", - Tsx::SEMI => ";", Tsx::COLON => ":", Tsx::Case => "case", Tsx::Catch => "catch", @@ -461,11 +458,6 @@ impl From for &'static str { Tsx::Yield => "yield", Tsx::LBRACK => "[", Tsx::RBRACK => "]", - Tsx::GlimmerTemplateContent => "_glimmer_template_content", - Tsx::GlimmerOpeningTag => "glimmer_opening_tag", - Tsx::GlimmerClosingTag => "glimmer_closing_tag", - Tsx::JsxTextToken1 => "jsx_text_token1", - Tsx::JsxTextToken2 => "jsx_text_token2", Tsx::HtmlCharacterReference => "html_character_reference", Tsx::GT => ">", Tsx::Identifier2 => "identifier", @@ -538,6 +530,7 @@ impl From for &'static str { Tsx::Number => "number", Tsx::PrivatePropertyIdentifier => "private_property_identifier", Tsx::Target => "target", + Tsx::Meta => "meta", Tsx::This => "this", Tsx::Super => "super", Tsx::True => "true", @@ -587,6 +580,7 @@ impl From for &'static str { Tsx::StringFragment5 => "string_fragment", Tsx::QMARK2 => "?", Tsx::HtmlComment => "html_comment", + Tsx::JsxText => "jsx_text", Tsx::FunctionSignatureAutomaticSemicolon => "_function_signature_automatic_semicolon", Tsx::ErrorRecovery => "__error_recovery", Tsx::Program => "program", @@ -642,9 +636,7 @@ impl From for &'static str { Tsx::ObjectAssignmentPattern => "object_assignment_pattern", Tsx::Array => "array", Tsx::ArrayPattern => "array_pattern", - Tsx::GlimmerTemplate => "glimmer_template", Tsx::JsxElement => "jsx_element", - Tsx::JsxText => "jsx_text", Tsx::JsxExpression => "jsx_expression", Tsx::JsxOpeningElement => "jsx_opening_element", Tsx::NestedIdentifier => "nested_identifier", @@ -705,6 +697,7 @@ impl From for &'static str { Tsx::MethodSignature => "method_signature", Tsx::AbstractMethodSignature => "abstract_method_signature", Tsx::FunctionSignature => "function_signature", + Tsx::ParenthesizedExpression2 => "parenthesized_expression", Tsx::AsExpression => "as_expression", Tsx::SatisfiesExpression => "satisfies_expression", Tsx::InstantiationExpression => "instantiation_expression", @@ -793,7 +786,6 @@ impl From for &'static str { Tsx::ObjectPatternRepeat1 => "object_pattern_repeat1", Tsx::ArrayRepeat1 => "array_repeat1", Tsx::ArrayPatternRepeat1 => "array_pattern_repeat1", - Tsx::GlimmerTemplateRepeat1 => "glimmer_template_repeat1", Tsx::JsxElementRepeat1 => "jsx_element_repeat1", Tsx::JsxStringRepeat1 => "_jsx_string_repeat1", Tsx::JsxStringRepeat2 => "_jsx_string_repeat2", diff --git a/src/languages/language_typescript.rs b/src/languages/language_typescript.rs index 43326d831..ff997606a 100644 --- a/src/languages/language_typescript.rs +++ b/src/languages/language_typescript.rs @@ -21,153 +21,153 @@ pub enum Typescript { Import2 = 14, From = 15, With = 16, - Var = 17, - Let = 18, - Const = 19, - BANG = 20, - Else = 21, - If = 22, - Switch = 23, - For = 24, - LPAREN = 25, - RPAREN = 26, - Await = 27, - In = 28, - Of = 29, - While = 30, - Do = 31, - Try = 32, - Break = 33, - Continue = 34, - Debugger = 35, - Return = 36, - Throw = 37, - SEMI = 38, - COLON = 39, - Case = 40, - Catch = 41, - Finally = 42, - Yield = 43, - LBRACK = 44, - RBRACK = 45, - GlimmerTemplateContent = 46, - GlimmerOpeningTag = 47, - GlimmerClosingTag = 48, - GT = 49, - DOT = 50, - DQUOTE = 51, - SQUOTE = 52, - Class2 = 53, - Async = 54, - Function = 55, - EQGT = 56, - QMARKDOT = 57, - New = 58, - Using = 59, - PLUSEQ = 60, - DASHEQ = 61, - STAREQ = 62, - SLASHEQ = 63, - PERCENTEQ = 64, - CARETEQ = 65, - AMPEQ = 66, - PIPEEQ = 67, - GTGTEQ = 68, - GTGTGTEQ = 69, - LTLTEQ = 70, - STARSTAREQ = 71, - AMPAMPEQ = 72, - PIPEPIPEEQ = 73, - QMARKQMARKEQ = 74, - DOTDOTDOT = 75, - AMPAMP = 76, - PIPEPIPE = 77, - GTGT = 78, - GTGTGT = 79, - LTLT = 80, - AMP = 81, - CARET = 82, - PIPE = 83, - PLUS = 84, - DASH = 85, - SLASH = 86, - PERCENT = 87, - STARSTAR = 88, - LT = 89, - LTEQ = 90, - EQEQ = 91, - EQEQEQ = 92, - BANGEQ = 93, - BANGEQEQ = 94, - GTEQ = 95, - QMARKQMARK = 96, - Instanceof = 97, - TILDE = 98, - Void = 99, - Delete = 100, - PLUSPLUS = 101, - DASHDASH = 102, - StringFragment = 103, - StringFragment2 = 104, - EscapeSequence = 105, - Comment = 106, - BQUOTE = 107, - DOLLARLBRACE = 108, - SLASH2 = 109, - RegexPattern = 110, - RegexFlags = 111, - Number = 112, - PrivatePropertyIdentifier = 113, - Target = 114, - This = 115, - Super = 116, - True = 117, - False = 118, - Null = 119, - Undefined = 120, - AT = 121, - Static = 122, - Readonly = 123, - Get = 124, - Set = 125, - QMARK = 126, - Declare = 127, - Public = 128, - Private = 129, - Protected = 130, - Override = 131, - Module2 = 132, - Any = 133, - Number2 = 134, - Boolean = 135, - String2 = 136, - Symbol = 137, - Object2 = 138, - Abstract = 139, - Accessor = 140, - Satisfies = 141, - Require = 142, - Extends = 143, - Implements = 144, - Global = 145, - Interface = 146, - Enum = 147, - DASHQMARKCOLON = 148, - PLUSQMARKCOLON = 149, - QMARKCOLON = 150, - Asserts2 = 151, - Infer = 152, - Is = 153, - Keyof = 154, - Uniquesymbol = 155, - Unknown = 156, - Never = 157, - LBRACEPIPE = 158, - PIPERBRACE = 159, - AutomaticSemicolon = 160, - StringFragment3 = 161, - QMARK2 = 162, - HtmlComment = 163, + Assert = 17, + Var = 18, + Let = 19, + Const = 20, + BANG = 21, + Else = 22, + If = 23, + Switch = 24, + For = 25, + LPAREN = 26, + SEMI = 27, + RPAREN = 28, + Await = 29, + In = 30, + Of = 31, + While = 32, + Do = 33, + Try = 34, + Break = 35, + Continue = 36, + Debugger = 37, + Return = 38, + Throw = 39, + COLON = 40, + Case = 41, + Catch = 42, + Finally = 43, + Yield = 44, + LBRACK = 45, + RBRACK = 46, + DOT = 47, + Class2 = 48, + Async = 49, + Function = 50, + EQGT = 51, + QMARKDOT = 52, + New = 53, + Using = 54, + PLUSEQ = 55, + DASHEQ = 56, + STAREQ = 57, + SLASHEQ = 58, + PERCENTEQ = 59, + CARETEQ = 60, + AMPEQ = 61, + PIPEEQ = 62, + GTGTEQ = 63, + GTGTGTEQ = 64, + LTLTEQ = 65, + STARSTAREQ = 66, + AMPAMPEQ = 67, + PIPEPIPEEQ = 68, + QMARKQMARKEQ = 69, + DOTDOTDOT = 70, + AMPAMP = 71, + PIPEPIPE = 72, + GTGT = 73, + GTGTGT = 74, + LTLT = 75, + AMP = 76, + CARET = 77, + PIPE = 78, + PLUS = 79, + DASH = 80, + SLASH = 81, + PERCENT = 82, + STARSTAR = 83, + LT = 84, + LTEQ = 85, + EQEQ = 86, + EQEQEQ = 87, + BANGEQ = 88, + BANGEQEQ = 89, + GTEQ = 90, + GT = 91, + QMARKQMARK = 92, + Instanceof = 93, + TILDE = 94, + Void = 95, + Delete = 96, + PLUSPLUS = 97, + DASHDASH = 98, + DQUOTE = 99, + SQUOTE = 100, + StringFragment = 101, + StringFragment2 = 102, + EscapeSequence = 103, + Comment = 104, + BQUOTE = 105, + DOLLARLBRACE = 106, + SLASH2 = 107, + RegexPattern = 108, + RegexFlags = 109, + Number = 110, + PrivatePropertyIdentifier = 111, + Target = 112, + Meta = 113, + This = 114, + Super = 115, + True = 116, + False = 117, + Null = 118, + Undefined = 119, + AT = 120, + Static = 121, + Readonly = 122, + Get = 123, + Set = 124, + QMARK = 125, + Declare = 126, + Public = 127, + Private = 128, + Protected = 129, + Override = 130, + Module2 = 131, + Any = 132, + Number2 = 133, + Boolean = 134, + String2 = 135, + Symbol = 136, + Object2 = 137, + Abstract = 138, + Accessor = 139, + Satisfies = 140, + Require = 141, + Extends = 142, + Implements = 143, + Global = 144, + Interface = 145, + Enum = 146, + DASHQMARKCOLON = 147, + PLUSQMARKCOLON = 148, + QMARKCOLON = 149, + Asserts2 = 150, + Infer = 151, + Is = 152, + Keyof = 153, + Uniquesymbol = 154, + Unknown = 155, + Never = 156, + LBRACEPIPE = 157, + PIPERBRACE = 158, + AutomaticSemicolon = 159, + StringFragment3 = 160, + QMARK2 = 161, + HtmlComment = 162, + JsxText = 163, FunctionSignatureAutomaticSemicolon = 164, ErrorRecovery = 165, Program = 166, @@ -223,60 +223,60 @@ pub enum Typescript { ObjectAssignmentPattern = 216, Array = 217, ArrayPattern = 218, - GlimmerTemplate = 219, - NestedIdentifier = 220, - Class = 221, - ClassDeclaration = 222, - ClassHeritage = 223, - FunctionExpression = 224, - FunctionDeclaration = 225, - GeneratorFunction = 226, - GeneratorFunctionDeclaration = 227, - ArrowFunction = 228, - CallSignature2 = 229, - FormalParameter = 230, - OptionalChain = 231, - CallExpression = 232, - NewExpression = 233, - AwaitExpression = 234, - MemberExpression = 235, - SubscriptExpression = 236, - AssignmentExpression = 237, - AugmentedAssignmentLhs = 238, - AugmentedAssignmentExpression = 239, - Initializer = 240, - DestructuringPattern = 241, - SpreadElement = 242, - TernaryExpression = 243, - BinaryExpression = 244, - UnaryExpression = 245, - UpdateExpression = 246, - SequenceExpression = 247, - String = 248, - TemplateString = 249, - TemplateSubstitution = 250, - Regex = 251, - MetaProperty = 252, - Arguments = 253, - Decorator = 254, - MemberExpression2 = 255, - CallExpression2 = 256, - ClassBody = 257, - FormalParameters = 258, - ClassStaticBlock = 259, - Pattern = 260, - RestPattern = 261, - MethodDefinition = 262, - Pair = 263, - PairPattern = 264, - PropertyName = 265, - ComputedPropertyName = 266, - PublicFieldDefinition = 267, - ImportIdentifier = 268, - NonNullExpression = 269, - MethodSignature = 270, - AbstractMethodSignature = 271, - FunctionSignature = 272, + NestedIdentifier = 219, + Class = 220, + ClassDeclaration = 221, + ClassHeritage = 222, + FunctionExpression = 223, + FunctionDeclaration = 224, + GeneratorFunction = 225, + GeneratorFunctionDeclaration = 226, + ArrowFunction = 227, + CallSignature2 = 228, + FormalParameter = 229, + OptionalChain = 230, + CallExpression = 231, + NewExpression = 232, + AwaitExpression = 233, + MemberExpression = 234, + SubscriptExpression = 235, + AssignmentExpression = 236, + AugmentedAssignmentLhs = 237, + AugmentedAssignmentExpression = 238, + Initializer = 239, + DestructuringPattern = 240, + SpreadElement = 241, + TernaryExpression = 242, + BinaryExpression = 243, + UnaryExpression = 244, + UpdateExpression = 245, + SequenceExpression = 246, + String = 247, + TemplateString = 248, + TemplateSubstitution = 249, + Regex = 250, + MetaProperty = 251, + Arguments = 252, + Decorator = 253, + MemberExpression2 = 254, + CallExpression2 = 255, + ClassBody = 256, + FormalParameters = 257, + ClassStaticBlock = 258, + Pattern = 259, + RestPattern = 260, + MethodDefinition = 261, + Pair = 262, + PairPattern = 263, + PropertyName = 264, + ComputedPropertyName = 265, + PublicFieldDefinition = 266, + ImportIdentifier = 267, + NonNullExpression = 268, + MethodSignature = 269, + AbstractMethodSignature = 270, + FunctionSignature = 271, + ParenthesizedExpression2 = 272, TypeAssertion = 273, AsExpression = 274, SatisfiesExpression = 275, @@ -366,29 +366,28 @@ pub enum Typescript { ObjectPatternRepeat1 = 359, ArrayRepeat1 = 360, ArrayPatternRepeat1 = 361, - GlimmerTemplateRepeat1 = 362, - SequenceExpressionRepeat1 = 363, - StringRepeat1 = 364, - StringRepeat2 = 365, - TemplateStringRepeat1 = 366, - ClassBodyRepeat1 = 367, - FormalParametersRepeat1 = 368, - ExtendsClauseRepeat1 = 369, - ImplementsClauseRepeat1 = 370, - ExtendsTypeClauseRepeat1 = 371, - EnumBodyRepeat1 = 372, - TemplateLiteralTypeRepeat1 = 373, - ObjectTypeRepeat1 = 374, - TypeParametersRepeat1 = 375, - TupleTypeRepeat1 = 376, - InterfaceBody = 377, - PropertyIdentifier = 378, - ShorthandPropertyIdentifier = 379, - ShorthandPropertyIdentifierPattern = 380, - StatementIdentifier = 381, - ThisType = 382, - TypeIdentifier = 383, - Error = 384, + SequenceExpressionRepeat1 = 362, + StringRepeat1 = 363, + StringRepeat2 = 364, + TemplateStringRepeat1 = 365, + ClassBodyRepeat1 = 366, + FormalParametersRepeat1 = 367, + ExtendsClauseRepeat1 = 368, + ImplementsClauseRepeat1 = 369, + ExtendsTypeClauseRepeat1 = 370, + EnumBodyRepeat1 = 371, + TemplateLiteralTypeRepeat1 = 372, + ObjectTypeRepeat1 = 373, + TypeParametersRepeat1 = 374, + TupleTypeRepeat1 = 375, + InterfaceBody = 376, + PropertyIdentifier = 377, + ShorthandPropertyIdentifier = 378, + ShorthandPropertyIdentifierPattern = 379, + StatementIdentifier = 380, + ThisType = 381, + TypeIdentifier = 382, + Error = 383, } impl From for &'static str { @@ -412,6 +411,7 @@ impl From for &'static str { Typescript::Import2 => "import", Typescript::From => "from", Typescript::With => "with", + Typescript::Assert => "assert", Typescript::Var => "var", Typescript::Let => "let", Typescript::Const => "const", @@ -421,6 +421,7 @@ impl From for &'static str { Typescript::Switch => "switch", Typescript::For => "for", Typescript::LPAREN => "(", + Typescript::SEMI => ";", Typescript::RPAREN => ")", Typescript::Await => "await", Typescript::In => "in", @@ -433,7 +434,6 @@ impl From for &'static str { Typescript::Debugger => "debugger", Typescript::Return => "return", Typescript::Throw => "throw", - Typescript::SEMI => ";", Typescript::COLON => ":", Typescript::Case => "case", Typescript::Catch => "catch", @@ -441,13 +441,7 @@ impl From for &'static str { Typescript::Yield => "yield", Typescript::LBRACK => "[", Typescript::RBRACK => "]", - Typescript::GlimmerTemplateContent => "_glimmer_template_content", - Typescript::GlimmerOpeningTag => "glimmer_opening_tag", - Typescript::GlimmerClosingTag => "glimmer_closing_tag", - Typescript::GT => ">", Typescript::DOT => ".", - Typescript::DQUOTE => "\"", - Typescript::SQUOTE => "'", Typescript::Class2 => "class", Typescript::Async => "async", Typescript::Function => "function", @@ -491,6 +485,7 @@ impl From for &'static str { Typescript::BANGEQ => "!=", Typescript::BANGEQEQ => "!==", Typescript::GTEQ => ">=", + Typescript::GT => ">", Typescript::QMARKQMARK => "??", Typescript::Instanceof => "instanceof", Typescript::TILDE => "~", @@ -498,6 +493,8 @@ impl From for &'static str { Typescript::Delete => "delete", Typescript::PLUSPLUS => "++", Typescript::DASHDASH => "--", + Typescript::DQUOTE => "\"", + Typescript::SQUOTE => "'", Typescript::StringFragment => "string_fragment", Typescript::StringFragment2 => "string_fragment", Typescript::EscapeSequence => "escape_sequence", @@ -510,6 +507,7 @@ impl From for &'static str { Typescript::Number => "number", Typescript::PrivatePropertyIdentifier => "private_property_identifier", Typescript::Target => "target", + Typescript::Meta => "meta", Typescript::This => "this", Typescript::Super => "super", Typescript::True => "true", @@ -559,6 +557,7 @@ impl From for &'static str { Typescript::StringFragment3 => "string_fragment", Typescript::QMARK2 => "?", Typescript::HtmlComment => "html_comment", + Typescript::JsxText => "jsx_text", Typescript::FunctionSignatureAutomaticSemicolon => { "_function_signature_automatic_semicolon" } @@ -616,7 +615,6 @@ impl From for &'static str { Typescript::ObjectAssignmentPattern => "object_assignment_pattern", Typescript::Array => "array", Typescript::ArrayPattern => "array_pattern", - Typescript::GlimmerTemplate => "glimmer_template", Typescript::NestedIdentifier => "nested_identifier", Typescript::Class => "class", Typescript::ClassDeclaration => "class_declaration", @@ -670,6 +668,7 @@ impl From for &'static str { Typescript::MethodSignature => "method_signature", Typescript::AbstractMethodSignature => "abstract_method_signature", Typescript::FunctionSignature => "function_signature", + Typescript::ParenthesizedExpression2 => "parenthesized_expression", Typescript::TypeAssertion => "type_assertion", Typescript::AsExpression => "as_expression", Typescript::SatisfiesExpression => "satisfies_expression", @@ -759,7 +758,6 @@ impl From for &'static str { Typescript::ObjectPatternRepeat1 => "object_pattern_repeat1", Typescript::ArrayRepeat1 => "array_repeat1", Typescript::ArrayPatternRepeat1 => "array_pattern_repeat1", - Typescript::GlimmerTemplateRepeat1 => "glimmer_template_repeat1", Typescript::SequenceExpressionRepeat1 => "sequence_expression_repeat1", Typescript::StringRepeat1 => "string_repeat1", Typescript::StringRepeat2 => "string_repeat2", diff --git a/src/macros.rs b/src/macros.rs index 7096382cf..784876f24 100644 --- a/src/macros.rs +++ b/src/macros.rs @@ -1,15 +1,15 @@ macro_rules! get_language { (tree_sitter_cpp) => { - tree_sitter_mozcpp::language() + tree_sitter_mozcpp::LANGUAGE.into() }; (tree_sitter_typescript) => { - tree_sitter_typescript::language_typescript() + tree_sitter_typescript::LANGUAGE_TYPESCRIPT.into() }; (tree_sitter_tsx) => { - tree_sitter_typescript::language_tsx() + tree_sitter_typescript::LANGUAGE_TSX.into() }; ($name:ident) => { - $name::language() + $name::LANGUAGE.into() }; } diff --git a/src/metrics/cyclomatic.rs b/src/metrics/cyclomatic.rs index 19c0b4ea0..eeec1740f 100644 --- a/src/metrics/cyclomatic.rs +++ b/src/metrics/cyclomatic.rs @@ -187,7 +187,7 @@ impl Cyclomatic for RustCode { use Rust::*; match node.kind_id().into() { - If | For | While | Loop | MatchArm | MatchArm2 | QMARK | AMPAMP | PIPEPIPE => { + If | For | While | Loop | MatchArm | MatchArm2 | TryExpression | AMPAMP | PIPEPIPE => { stats.cyclomatic += 1.; } _ => {} diff --git a/src/metrics/loc.rs b/src/metrics/loc.rs index f180ca820..b8be3c237 100644 --- a/src/metrics/loc.rs +++ b/src/metrics/loc.rs @@ -729,12 +729,23 @@ impl Loc for RustCode { | RawStringLiteral | Block | SourceFile + | SLASH | SLASHSLASH | SLASHSTAR | STARSLASH + | OuterDocCommentMarker | OuterDocCommentMarker2 - | DocComment => {} - LineComment | BlockComment => { + | DocComment + | InnerDocCommentMarker + | BANG => {} + | BlockComment => { + add_cloc_lines(stats, start, end); + } + LineComment => { + // Exclude the last line for `LineComment` containing a `DocComment`, + // since the `DocComment` includes the newline, + // as explained here: https://github.com/tree-sitter/tree-sitter-rust/blob/2eaf126458a4d6a69401089b6ba78c5e5d6c1ced/src/scanner.c#L194-L195 + let end = if node.is_child(DocComment as u16) { end - 1 } else { end }; add_cloc_lines(stats, start, end); } Statement @@ -767,8 +778,8 @@ impl Loc for CppCode { } WhileStatement | SwitchStatement | CaseStatement | IfStatement | ForStatement | ReturnStatement | BreakStatement | ContinueStatement | GotoStatement - | ThrowStatement | TryStatement | ExpressionStatement | LabeledStatement - | StatementIdentifier => { + | ThrowStatement | TryStatement | TryStatement2 | ExpressionStatement + | ExpressionStatement2 | LabeledStatement | StatementIdentifier => { stats.lloc.logical_lines += 1; } Declaration => { @@ -788,6 +799,15 @@ impl Loc for CppCode { _ => { check_comment_ends_on_code_line(stats, start); stats.ploc.lines.insert(start); + + // As reported here: https://github.com/tree-sitter/tree-sitter-cpp/issues/276 + // `tree-sitter-cpp` doesn't expand macros, providing a single `PreprocArg` node for the entire macro argument. + // Therefore, all lines from `start_row` to `end_row` must be added to PLOC to account for the unexpanded macro content + if let PreprocArg = node.kind_id().into() { + (node.start_row() + 1..=node.end_row()).for_each(|line| { + stats.ploc.lines.insert(line); + }); + } } } } @@ -2972,7 +2992,7 @@ mod tests { #[test] fn java_foreach_lloc() { - check_metrics::( + check_metrics::( " int arr[]={12,13,14,44}; // +1 for (int i:arr) { // +1 @@ -2987,12 +3007,12 @@ mod tests { { "sloc": 4.0, "ploc": 4.0, - "lloc": 1.0, + "lloc": 3.0, "cloc": 3.0, "blank": 0.0, "sloc_average": 4.0, "ploc_average": 4.0, - "lloc_average": 1.0, + "lloc_average": 3.0, "cloc_average": 3.0, "blank_average": 0.0, "sloc_min": 4.0, @@ -3001,8 +3021,8 @@ mod tests { "cloc_max": 3.0, "ploc_min": 4.0, "ploc_max": 4.0, - "lloc_min": 1.0, - "lloc_max": 1.0, + "lloc_min": 3.0, + "lloc_max": 3.0, "blank_min": 0.0, "blank_max": 0.0 }"### diff --git a/tests/repositories/rca-output b/tests/repositories/rca-output index bb3c00776..f155a5e26 160000 --- a/tests/repositories/rca-output +++ b/tests/repositories/rca-output @@ -1 +1 @@ -Subproject commit bb3c007765985ef5f4c4c585465f5ffd8e16e877 +Subproject commit f155a5e26d152a3f4a83b4ba55cc5f81e3ed30c3 diff --git a/tree-sitter-ccomment/Cargo.toml b/tree-sitter-ccomment/Cargo.toml index d2f34f1a9..d9df06f4e 100644 --- a/tree-sitter-ccomment/Cargo.toml +++ b/tree-sitter-ccomment/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-ccomment" description = "Ccomment grammar for the tree-sitter parsing library" -version = "0.20.2" +version = "0.20.3" authors = ["Calixte Denizet "] license = "MIT" readme = "bindings/rust/README.md" @@ -21,7 +21,10 @@ include = [ path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = "=0.22.6" +tree-sitter-language="0.1.0" [build-dependencies] cc = "^1.0" + +[dev-dependencies] +tree-sitter = "=0.25.3" diff --git a/tree-sitter-ccomment/bindings/rust/README.md b/tree-sitter-ccomment/bindings/rust/README.md index cdc8f2862..854adc4a2 100644 --- a/tree-sitter-ccomment/bindings/rust/README.md +++ b/tree-sitter-ccomment/bindings/rust/README.md @@ -1,6 +1,6 @@ # tree-sitter-ccomment -This crate provides a Ccomment grammar for the [tree-sitter][] parsing library. To +This crate provides a Ccomment grammar for the [tree-sitter][] parsing library. To use this crate, add it to the `[dependencies]` section of your `Cargo.toml` file. (Note that you will probably also need to depend on the [`tree-sitter`][tree-sitter crate] crate to use the parsed result in any useful @@ -8,11 +8,11 @@ way.) ``` toml [dependencies] -tree-sitter = "0.17" -tree-sitter-ccomment = "0.17" +tree-sitter = "0.25.3" +tree-sitter-ccomment = "0.20.3" ``` -Typically, you will use the [language][language func] function to add this +Typically, you will use the [LANGUAGE][] function to add this grammar to a tree-sitter [Parser][], and then use the parser to parse some code: ``` rust @@ -22,15 +22,18 @@ let code = r#" } "#; let mut parser = Parser::new(); -parser.set_language(tree_sitter_ccomment::language()).expect("Error loading Ccomment grammar"); -let parsed = parser.parse(code, None); +let language = tree_sitter_ccomment::LANGUAGE; +parser + .set_language(&language.into()) + .expect("Error loading Ccomment parser"); +let tree = parser.parse(code, None).unwrap(); +assert!(!tree.root_node().has_error()); ``` If you have any questions, please reach out to us in the [tree-sitter discussions] page. [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -[language func]: https://docs.rs/tree-sitter-ccomment/*/tree_sitter_ccomment/fn.language.html [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html [tree-sitter]: https://tree-sitter.github.io/ [tree-sitter crate]: https://crates.io/crates/tree-sitter diff --git a/tree-sitter-ccomment/bindings/rust/lib.rs b/tree-sitter-ccomment/bindings/rust/lib.rs index 079011fe8..990029e07 100644 --- a/tree-sitter-ccomment/bindings/rust/lib.rs +++ b/tree-sitter-ccomment/bindings/rust/lib.rs @@ -5,9 +5,9 @@ // See the LICENSE file in this repo for license details. // ------------------------------------------------------------------------------------------------ -//! This crate provides a Ccomment grammar for the [tree-sitter][] parsing library. +//! This crate provides Ccomment grammar support for the [tree-sitter][] parsing library. //! -//! Typically, you will use the [language][language func] function to add this grammar to a +//! Typically, you will use the [LANGUAGE][] constant to add this grammar to a //! tree-sitter [Parser][], and then use the parser to parse some code: //! //! ``` @@ -19,30 +19,27 @@ //! } //! "#; //! let mut parser = Parser::new(); -//! parser.set_language(&tree_sitter_ccomment::language()).expect("Error loading Ccomment grammar"); -//! let parsed = parser.parse(code, None); -//! # let parsed = parsed.unwrap(); -//! # let root = parsed.root_node(); -//! # assert!(!root.has_error()); +//! let language = tree_sitter_ccomment::LANGUAGE; +//! parser +//! .set_language(&language.into()) +//! .expect("Error loading Ccomment parser"); +//! let tree = parser.parse(code, None).unwrap(); +//! assert!(!tree.root_node().has_error()); //! ``` //! -//! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -//! [language func]: fn.language.html //! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html //! [tree-sitter]: https://tree-sitter.github.io/ -use tree_sitter::Language; +use tree_sitter_language::LanguageFn; extern "C" { - fn tree_sitter_ccomment() -> Language; + fn tree_sitter_ccomment() -> *const (); } -/// Returns the tree-sitter [Language][] for this grammar. +/// The tree-sitter [`LanguageFn`][LanguageFn] for this grammar. /// -/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -pub fn language() -> Language { - unsafe { tree_sitter_ccomment() } -} +/// [LanguageFn]: https://docs.rs/tree-sitter-language/*/tree_sitter_language/struct.LanguageFn.html +pub const LANGUAGE: LanguageFn = unsafe { LanguageFn::from_raw(tree_sitter_ccomment) }; /// The source of the Ccomment tree-sitter grammar description. pub const GRAMMAR: &str = include_str!("../../grammar.js"); @@ -55,10 +52,10 @@ pub const NODE_TYPES: &str = include_str!("../../src/node-types.json"); #[cfg(test)] mod tests { #[test] - fn can_load_grammar() { + fn test_can_load_grammar() { let mut parser = tree_sitter::Parser::new(); parser - .set_language(&super::language()) - .expect("Error loading Ccomment grammar"); + .set_language(&super::LANGUAGE.into()) + .expect("Error loading Ccomment parser"); } } diff --git a/tree-sitter-ccomment/package.json b/tree-sitter-ccomment/package.json index ed1cc1ea2..6b89cd065 100644 --- a/tree-sitter-ccomment/package.json +++ b/tree-sitter-ccomment/package.json @@ -13,7 +13,7 @@ "nan": "^2.14.2" }, "devDependencies": { - "tree-sitter-cli": "^0.20.7" + "tree-sitter-cli": "^0.25.3" }, "scripts": { "build": "tree-sitter generate && node-gyp build", diff --git a/tree-sitter-ccomment/src/grammar.json b/tree-sitter-ccomment/src/grammar.json index f7b0b0883..6f4ca7777 100644 --- a/tree-sitter-ccomment/src/grammar.json +++ b/tree-sitter-ccomment/src/grammar.json @@ -1,4 +1,5 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "ccomment", "rules": { "translation_unit": { @@ -163,6 +164,6 @@ } ], "inline": [], - "supertypes": [] -} - + "supertypes": [], + "reserved": {} +} \ No newline at end of file diff --git a/tree-sitter-ccomment/src/node-types.json b/tree-sitter-ccomment/src/node-types.json index b19bfc97d..7f29335af 100644 --- a/tree-sitter-ccomment/src/node-types.json +++ b/tree-sitter-ccomment/src/node-types.json @@ -31,6 +31,7 @@ { "type": "translation_unit", "named": true, + "root": true, "fields": {}, "children": { "multiple": true, diff --git a/tree-sitter-ccomment/src/parser.c b/tree-sitter-ccomment/src/parser.c index 89cc60dec..69011d1f5 100644 --- a/tree-sitter-ccomment/src/parser.c +++ b/tree-sitter-ccomment/src/parser.c @@ -1,7 +1,8 @@ -#include +/* Automatically generated by tree-sitter v0.25.3 (2a835ee029dca1c325e6f1c01dbce40396f6123e) */ + +#include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif @@ -14,9 +15,11 @@ #define EXTERNAL_TOKEN_COUNT 1 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 3 +#define MAX_RESERVED_WORD_SET_SIZE 0 #define PRODUCTION_ID_COUNT 1 +#define SUPERTYPE_COUNT 0 -enum { +enum ts_symbol_identifiers { sym_nothing = 1, sym_preproc_continuation_line = 2, sym_preproc_line = 3, @@ -168,22 +171,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(20); - if (lookahead == '"') ADVANCE(5); + if (lookahead == '"') ADVANCE(6); if (lookahead == '#') ADVANCE(23); - if (lookahead == '\'') ADVANCE(6); - if (lookahead == '/') ADVANCE(7); + if (lookahead == '\'') ADVANCE(7); + if (lookahead == '/') ADVANCE(8); if (lookahead == 'R') ADVANCE(21); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(22); if (lookahead != 0) ADVANCE(24); END_STATE(); case 1: if (lookahead == '\n') ADVANCE(27); if (lookahead == '\\') ADVANCE(2); - if (lookahead == '\t' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(1); if (lookahead != 0) ADVANCE(4); END_STATE(); @@ -204,62 +204,61 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(4); END_STATE(); case 5: - if (lookahead == '"') ADVANCE(29); - if (lookahead == '\\') ADVANCE(18); - if (lookahead != 0) ADVANCE(5); + if (lookahead == '\r') ADVANCE(33); + if (lookahead != 0) ADVANCE(32); END_STATE(); case 6: - if (lookahead == '\'') ADVANCE(30); - if (lookahead == '\\') ADVANCE(19); + if (lookahead == '"') ADVANCE(29); + if (lookahead == '\\') ADVANCE(18); if (lookahead != 0) ADVANCE(6); END_STATE(); case 7: - if (lookahead == '*') ADVANCE(9); - if (lookahead == '/') ADVANCE(32); + if (lookahead == '\'') ADVANCE(30); + if (lookahead == '\\') ADVANCE(19); + if (lookahead != 0) ADVANCE(7); END_STATE(); case 8: - if (lookahead == '*') ADVANCE(8); - if (lookahead == '/') ADVANCE(31); - if (lookahead != 0) ADVANCE(9); + if (lookahead == '*') ADVANCE(10); + if (lookahead == '/') ADVANCE(32); END_STATE(); case 9: - if (lookahead == '*') ADVANCE(8); - if (lookahead != 0) ADVANCE(9); + if (lookahead == '*') ADVANCE(9); + if (lookahead == '/') ADVANCE(31); + if (lookahead != 0) ADVANCE(10); END_STATE(); case 10: - if (lookahead == 'd') ADVANCE(11); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(10); + if (lookahead == '*') ADVANCE(9); + if (lookahead != 0) ADVANCE(10); END_STATE(); case 11: - if (lookahead == 'e') ADVANCE(13); + if (lookahead == 'd') ADVANCE(12); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(11); END_STATE(); case 12: - if (lookahead == 'e') ADVANCE(16); + if (lookahead == 'e') ADVANCE(14); END_STATE(); case 13: - if (lookahead == 'f') ADVANCE(14); + if (lookahead == 'e') ADVANCE(17); END_STATE(); case 14: - if (lookahead == 'i') ADVANCE(15); + if (lookahead == 'f') ADVANCE(15); END_STATE(); case 15: - if (lookahead == 'n') ADVANCE(12); + if (lookahead == 'i') ADVANCE(16); END_STATE(); case 16: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(28); + if (lookahead == 'n') ADVANCE(13); END_STATE(); case 17: - if (lookahead != 0 && - lookahead != '\r') ADVANCE(32); - if (lookahead == '\r') ADVANCE(33); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(28); END_STATE(); case 18: - if (lookahead != 0) ADVANCE(5); + if (lookahead != 0) ADVANCE(6); END_STATE(); case 19: - if (lookahead != 0) ADVANCE(6); + if (lookahead != 0) ADVANCE(7); END_STATE(); case 20: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -271,20 +270,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_nothing); if (lookahead == '#') ADVANCE(23); if (lookahead == 'R') ADVANCE(21); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(22); if (lookahead != 0 && lookahead != '"' && + lookahead != '#' && lookahead != '\'' && lookahead != '/') ADVANCE(24); END_STATE(); case 23: ACCEPT_TOKEN(sym_nothing); - if (lookahead == 'd') ADVANCE(11); + if (lookahead == 'd') ADVANCE(12); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(10); + lookahead == ' ') ADVANCE(11); END_STATE(); case 24: ACCEPT_TOKEN(sym_nothing); @@ -305,8 +303,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_preproc_line); if (lookahead == '\n') ADVANCE(27); if (lookahead == '\\') ADVANCE(2); - if (lookahead == '\t' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(1); if (lookahead != 0) ADVANCE(4); END_STATE(); @@ -326,15 +323,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 32: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(17); + if (lookahead == '\\') ADVANCE(5); if (lookahead != 0 && lookahead != '\n') ADVANCE(32); END_STATE(); case 33: ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(32); - if (lookahead == '\\') ADVANCE(17); + if (lookahead == '\\') ADVANCE(5); + if (lookahead != 0) ADVANCE(32); END_STATE(); default: return false; @@ -356,22 +352,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11] = {.lex_state = 0}, }; -enum { - ts_external_token_raw_string_literal = 0, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token_raw_string_literal] = sym_raw_string_literal, -}; - -static const bool ts_external_scanner_states[2][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token_raw_string_literal] = true, - }, -}; - static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { + [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_nothing] = ACTIONS(1), [aux_sym_define_token1] = ACTIONS(1), @@ -380,7 +362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(1), [sym_raw_string_literal] = ACTIONS(1), }, - [1] = { + [STATE(1)] = { [sym_translation_unit] = STATE(11), [sym__top_level_item] = STATE(2), [sym_define] = STATE(2), @@ -395,7 +377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_raw_string_literal] = ACTIONS(13), }, - [2] = { + [STATE(2)] = { [sym__top_level_item] = STATE(3), [sym_define] = STATE(3), [sym_string_literal] = STATE(3), @@ -409,7 +391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(17), [sym_raw_string_literal] = ACTIONS(19), }, - [3] = { + [STATE(3)] = { [sym__top_level_item] = STATE(3), [sym_define] = STATE(3), [sym_string_literal] = STATE(3), @@ -506,38 +488,52 @@ static const uint32_t ts_small_parse_table_map[] = { static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), + [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0, 0, 0), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [15] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), + [15] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [21] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [23] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3), - [26] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8), - [29] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4), - [32] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5), - [35] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3), - [38] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 1), - [40] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 1), - [42] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 1), - [44] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 1), - [46] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define, 2), - [48] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define, 2), - [50] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define, 3), - [52] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define, 3), + [21] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), + [23] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3), + [26] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [29] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [32] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5), + [35] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3), + [38] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 1, 0, 0), + [40] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 1, 0, 0), + [42] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 1, 0, 0), + [44] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 1, 0, 0), + [46] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define, 2, 0, 0), + [48] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define, 2, 0, 0), + [50] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define, 3, 0, 0), + [52] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define, 3, 0, 0), [54] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), [56] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), [58] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), [60] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [62] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_define_repeat1, 2), SHIFT_REPEAT(10), - [65] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_define_repeat1, 2), + [62] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_define_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [65] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_define_repeat1, 2, 0, 0), [67] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), }; +enum ts_external_scanner_symbol_identifiers { + ts_external_token_raw_string_literal = 0, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token_raw_string_literal] = sym_raw_string_literal, +}; + +static const bool ts_external_scanner_states[2][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token_raw_string_literal] = true, + }, +}; + #ifdef __cplusplus extern "C" { #endif @@ -547,13 +543,17 @@ bool tree_sitter_ccomment_external_scanner_scan(void *, TSLexer *, const bool *) unsigned tree_sitter_ccomment_external_scanner_serialize(void *, char *); void tree_sitter_ccomment_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 -#define extern __declspec(dllexport) +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) #endif -extern const TSLanguage *tree_sitter_ccomment(void) { +TS_PUBLIC const TSLanguage *tree_sitter_ccomment(void) { static const TSLanguage language = { - .version = LANGUAGE_VERSION, + .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, @@ -572,7 +572,7 @@ extern const TSLanguage *tree_sitter_ccomment(void) { .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, + .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, .external_scanner = { &ts_external_scanner_states[0][0], diff --git a/tree-sitter-ccomment/src/tree_sitter/alloc.h b/tree-sitter-ccomment/src/tree_sitter/alloc.h new file mode 100644 index 000000000..1abdd1201 --- /dev/null +++ b/tree-sitter-ccomment/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/tree-sitter-ccomment/src/tree_sitter/array.h b/tree-sitter-ccomment/src/tree_sitter/array.h new file mode 100644 index 000000000..a17a574f0 --- /dev/null +++ b/tree-sitter-ccomment/src/tree_sitter/array.h @@ -0,0 +1,291 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(push) +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(pop) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/tree-sitter-ccomment/src/tree_sitter/parser.h b/tree-sitter-ccomment/src/tree_sitter/parser.h index 2b14ac104..cdbe64ccc 100644 --- a/tree-sitter-ccomment/src/tree_sitter/parser.h +++ b/tree-sitter-ccomment/src/tree_sitter/parser.h @@ -13,12 +13,17 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -typedef uint16_t TSStateId; - #ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata TSLanguageMetadata; +typedef struct TSLanguageMetadata { + uint8_t major_version; + uint8_t minor_version; + uint8_t patch_version; +} TSLanguageMetadata; #endif typedef struct { @@ -27,10 +32,11 @@ typedef struct { bool inherited; } TSFieldMapEntry; +// Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; -} TSFieldMapSlice; +} TSMapSlice; typedef struct { bool visible; @@ -48,6 +54,7 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); }; typedef enum { @@ -79,6 +86,12 @@ typedef struct { uint16_t external_lex_state; } TSLexMode; +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + typedef union { TSParseAction action; struct { @@ -87,8 +100,13 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { - uint32_t version; + uint32_t abi_version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; @@ -104,13 +122,13 @@ struct TSLanguage { const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; - const TSFieldMapSlice *field_map_slices; + const TSMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; + const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -124,15 +142,48 @@ struct TSLanguage { void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; + const char *name; + const TSSymbol *reserved_words; + uint16_t max_reserved_word_set_size; + uint32_t supertype_count; + const TSSymbol *supertype_symbols; + const TSMapSlice *supertype_map_slices; + const TSSymbol *supertype_map_entries; + TSLanguageMetadata metadata; }; +static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + const TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + const TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + #define START_LEXER() \ bool result = false; \ bool skip = false; \ + UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -148,6 +199,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -166,7 +228,7 @@ struct TSLanguage { * Parse Table Macros */ -#define SMALL_STATE(id) id - LARGE_STATE_COUNT +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) #define STATE(id) id @@ -176,7 +238,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value \ + .state = (state_value) \ } \ }} @@ -184,7 +246,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value, \ + .state = (state_value), \ .repetition = true \ } \ }} @@ -197,14 +259,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \ diff --git a/tree-sitter-mozcpp/Cargo.toml b/tree-sitter-mozcpp/Cargo.toml index 028997905..7924acb47 100644 --- a/tree-sitter-mozcpp/Cargo.toml +++ b/tree-sitter-mozcpp/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-mozcpp" description = "Mozcpp grammar for the tree-sitter parsing library" -version = "0.20.3" +version = "0.20.4" authors = ["Calixte Denizet "] license = "MIT" readme = "bindings/rust/README.md" @@ -21,13 +21,16 @@ include = [ path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = "=0.22.6" +tree-sitter-language="0.1.0" [build-dependencies] cc = "^1.0" # This dependency is not used at all for this crate, but it is here so that # dependabot can send notifications when there are updates for this grammar -tree-sitter-cpp = "0.22.3" +tree-sitter-cpp = "0.23.4" [package.metadata.cargo-udeps.ignore] build = ["tree-sitter-cpp"] + +[dev-dependencies] +tree-sitter = "=0.25.3" diff --git a/tree-sitter-mozcpp/bindings/node/binding.cc b/tree-sitter-mozcpp/bindings/node/binding.cc index f85e0e4eb..d6f9f72ae 100644 --- a/tree-sitter-mozcpp/bindings/node/binding.cc +++ b/tree-sitter-mozcpp/bindings/node/binding.cc @@ -4,7 +4,7 @@ using namespace v8; -extern "C" TSLanguage * tree_sitter_cpp(); +extern "C" TSLanguage * tree_sitter_mozcpp(); namespace { @@ -17,12 +17,12 @@ void Init(Local exports, Local module) { Local constructor = Nan::GetFunction(tpl).ToLocalChecked(); Local instance = constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); - Nan::SetInternalFieldPointer(instance, 0, tree_sitter_cpp()); + Nan::SetInternalFieldPointer(instance, 0, tree_sitter_mozcpp()); Nan::Set(instance, Nan::New("name").ToLocalChecked(), Nan::New("cpp").ToLocalChecked()); Nan::Set(module, Nan::New("exports").ToLocalChecked(), instance); } -NODE_MODULE(tree_sitter_cpp_binding, Init) +NODE_MODULE(tree_sitter_mozcpp_binding, Init) } // namespace diff --git a/tree-sitter-mozcpp/bindings/node/index.js b/tree-sitter-mozcpp/bindings/node/index.js index 3bed6bf33..23961d461 100644 --- a/tree-sitter-mozcpp/bindings/node/index.js +++ b/tree-sitter-mozcpp/bindings/node/index.js @@ -1,11 +1,11 @@ try { - module.exports = require("../../build/Release/tree_sitter_cpp_binding"); + module.exports = require("../../build/Release/tree_sitter_mozcpp_binding"); } catch (error1) { if (error1.code !== 'MODULE_NOT_FOUND') { throw error1; } try { - module.exports = require("../../build/Debug/tree_sitter_cpp_binding"); + module.exports = require("../../build/Debug/tree_sitter_mozcpp_binding"); } catch (error2) { if (error2.code !== 'MODULE_NOT_FOUND') { throw error2; diff --git a/tree-sitter-mozcpp/bindings/rust/README.md b/tree-sitter-mozcpp/bindings/rust/README.md index c92a1ccb1..307be1f42 100644 --- a/tree-sitter-mozcpp/bindings/rust/README.md +++ b/tree-sitter-mozcpp/bindings/rust/README.md @@ -1,6 +1,6 @@ # tree-sitter-mozcpp -This crate provides a Mozcpp grammar for the [tree-sitter][] parsing library. To +This crate provides a Mozcpp grammar for the [tree-sitter][] parsing library. To use this crate, add it to the `[dependencies]` section of your `Cargo.toml` file. (Note that you will probably also need to depend on the [`tree-sitter`][tree-sitter crate] crate to use the parsed result in any useful @@ -8,11 +8,11 @@ way.) ``` toml [dependencies] -tree-sitter = "0.17" -tree-sitter-mozcpp = "0.16" +tree-sitter = "0.25.3" +tree-sitter-mozcpp = "0.20.4" ``` -Typically, you will use the [language][language func] function to add this +Typically, you will use the [LANGUAGE][] function to add this grammar to a tree-sitter [Parser][], and then use the parser to parse some code: ``` rust @@ -22,15 +22,18 @@ let code = r#" } "#; let mut parser = Parser::new(); -parser.set_language(tree_sitter_mozcpp::language()).expect("Error loading Mozcpp grammar"); -let parsed = parser.parse(code, None); +let language = tree_sitter_mozcpp::LANGUAGE; +parser + .set_language(&language.into()) + .expect("Error loading Mozcpp parser"); +let tree = parser.parse(code, None).unwrap(); +assert!(!tree.root_node().has_error()); ``` If you have any questions, please reach out to us in the [tree-sitter discussions] page. [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -[language func]: https://docs.rs/tree-sitter-mozcpp/*/tree_sitter_mozcpp/fn.language.html [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html [tree-sitter]: https://tree-sitter.github.io/ [tree-sitter crate]: https://crates.io/crates/tree-sitter diff --git a/tree-sitter-mozcpp/bindings/rust/build.rs b/tree-sitter-mozcpp/bindings/rust/build.rs index 150725089..6f8c5537b 100644 --- a/tree-sitter-mozcpp/bindings/rust/build.rs +++ b/tree-sitter-mozcpp/bindings/rust/build.rs @@ -1,29 +1,19 @@ -// Adapted from tree-sitter-python bindings -use std::path::Path; -extern crate cc; - fn main() { - let src_dir = Path::new("src"); + let src_dir = std::path::Path::new("src"); let mut c_config = cc::Build::new(); - c_config.include(src_dir); - c_config - .flag_if_supported("-Wno-unused-parameter") - .flag_if_supported("-Wno-unused-but-set-variable") - .flag_if_supported("-Wno-trigraphs"); + c_config.std("c11").include(src_dir); + + #[cfg(target_env = "msvc")] + c_config.flag("-utf-8"); + let parser_path = src_dir.join("parser.c"); c_config.file(&parser_path); println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); - c_config.compile("parser"); - let mut cpp_config = cc::Build::new(); - cpp_config.cpp(true); - cpp_config.include(src_dir); - cpp_config - .flag_if_supported("-Wno-unused-parameter") - .flag_if_supported("-Wno-unused-but-set-variable"); - let scanner_path = src_dir.join("scanner.cc"); - cpp_config.file(&scanner_path); + let scanner_path = src_dir.join("scanner.c"); + c_config.file(&scanner_path); println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); - cpp_config.compile("scanner"); + + c_config.compile("tree-sitter-mozcpp"); } diff --git a/tree-sitter-mozcpp/bindings/rust/lib.rs b/tree-sitter-mozcpp/bindings/rust/lib.rs index f343d2ac1..ad9a0a21a 100644 --- a/tree-sitter-mozcpp/bindings/rust/lib.rs +++ b/tree-sitter-mozcpp/bindings/rust/lib.rs @@ -5,46 +5,43 @@ // See the LICENSE file in this repo for license details. // ------------------------------------------------------------------------------------------------ -//! This crate provides a Mozcpp grammar for the [tree-sitter][] parsing library. +//! This crate provides Mozcpp language support for the [tree-sitter][] parsing library. //! -//! Typically, you will use the [language][language func] function to add this grammar to a +//! Typically, you will use the [LANGUAGE][] constant to add this language to a //! tree-sitter [Parser][], and then use the parser to parse some code: //! //! ``` //! use tree_sitter::Parser; //! //! let code = r#" -//! int double(int x) { -//! return x * 2; -//! } +//! int double(int x) { +//! return x * 2; +//! } //! "#; -//! let mut parser = Parser::new(); -//! parser.set_language(&tree_sitter_mozcpp::language()).expect("Error loading Mozcpp grammar"); -//! let parsed = parser.parse(code, None); -//! # let parsed = parsed.unwrap(); -//! # let root = parsed.root_node(); -//! # assert!(!root.has_error()); +//! let mut parser = tree_sitter::Parser::new(); +//! let language = tree_sitter_mozcpp::LANGUAGE; +//! parser +//! .set_language(&language.into()) +//! .expect("Error loading Mozcpp parser"); +//! let tree = parser.parse(code, None).unwrap(); +//! assert!(!tree.root_node().has_error()); //! ``` //! -//! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -//! [language func]: fn.language.html //! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html //! [tree-sitter]: https://tree-sitter.github.io/ -use tree_sitter::Language; +use tree_sitter_language::LanguageFn; extern "C" { - fn tree_sitter_cpp() -> Language; + fn tree_sitter_mozcpp() -> *const (); } -/// Returns the tree-sitter [Language][] for this grammar. +/// The tree-sitter [`LanguageFn`][LanguageFn] for this grammar. /// -/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -pub fn language() -> Language { - unsafe { tree_sitter_cpp() } -} +/// [LanguageFn]: https://docs.rs/tree-sitter-language/*/tree_sitter_language/struct.LanguageFn.html +pub const LANGUAGE: LanguageFn = unsafe { LanguageFn::from_raw(tree_sitter_mozcpp) }; -/// The source of the Mozcpp tree-sitter grammar description. +/// The source of the Mozjs tree-sitter grammar description. pub const GRAMMAR: &str = include_str!("../../grammar.js"); /// The content of the [`node-types.json`][] file for this grammar. @@ -55,10 +52,10 @@ pub const NODE_TYPES: &str = include_str!("../../src/node-types.json"); #[cfg(test)] mod tests { #[test] - fn can_load_grammar() { + fn test_can_load_grammar() { let mut parser = tree_sitter::Parser::new(); parser - .set_language(&super::language()) - .expect("Error loading Mozcpp grammar"); + .set_language(&super::LANGUAGE.into()) + .expect("Error loading Mozcpp parser"); } } diff --git a/tree-sitter-mozcpp/grammar.js b/tree-sitter-mozcpp/grammar.js index a85b055c2..93a55ee21 100644 --- a/tree-sitter-mozcpp/grammar.js +++ b/tree-sitter-mozcpp/grammar.js @@ -1,7 +1,7 @@ const CPP = require("./tree-sitter-cpp/grammar.js") module.exports = grammar(CPP, { - name: 'cpp', + name: 'mozcpp', rules: { @@ -92,14 +92,12 @@ module.exports = grammar(CPP, { '(', $.parameter_declaration, ',', - commaSep(choice($._expression, $.initializer_list)), + commaSep(choice($._expression_not_binary, $.initializer_list)), ')', )), ), - macro_statement: $ => choice( - 'MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER' - ), + macro_statement: $ => 'MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER', macro_annotation: $ => choice( 'MOZ_ALLOCATOR', @@ -368,11 +366,6 @@ module.exports = grammar(CPP, { ...[8, 16, 32, 64].map(n => `uint_fast${n}_t`), ...[8, 16, 32, 64].map(n => `uint_least${n}_t`), )), - - concatenated_string: $ => seq( - choice($.raw_string_literal, $.string_literal), - repeat1(choice($.raw_string_literal, $.string_literal, $.identifier)) - ), } }); diff --git a/tree-sitter-mozcpp/package.json b/tree-sitter-mozcpp/package.json index 84ffdb6c1..26a6e5d56 100644 --- a/tree-sitter-mozcpp/package.json +++ b/tree-sitter-mozcpp/package.json @@ -13,7 +13,7 @@ "nan": "^2.14.2" }, "devDependencies": { - "tree-sitter-cli": "^0.20.7" + "tree-sitter-cli": "^0.25.3" }, "scripts": { "build": "tree-sitter generate && node-gyp build", diff --git a/tree-sitter-mozcpp/src/grammar.json b/tree-sitter-mozcpp/src/grammar.json index 8658533b9..c5d0fb644 100644 --- a/tree-sitter-mozcpp/src/grammar.json +++ b/tree-sitter-mozcpp/src/grammar.json @@ -1,5 +1,7 @@ { - "name": "cpp", + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", + "name": "mozcpp", + "inherits": "cpp", "word": "identifier", "rules": { "translation_unit": { @@ -24,66 +26,69 @@ "type": "CHOICE", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "function_definition" - }, - { - "type": "SYMBOL", - "name": "linkage_specification" - }, - { - "type": "SYMBOL", - "name": "declaration" - }, - { - "type": "SYMBOL", - "name": "_statement" - }, - { - "type": "SYMBOL", - "name": "attributed_statement" - }, - { - "type": "SYMBOL", - "name": "type_definition" - }, - { - "type": "SYMBOL", - "name": "_empty_declaration" - }, - { - "type": "SYMBOL", - "name": "preproc_if" - }, - { - "type": "SYMBOL", - "name": "preproc_ifdef" - }, - { - "type": "SYMBOL", - "name": "preproc_include" - }, - { - "type": "SYMBOL", - "name": "preproc_def" - }, - { - "type": "SYMBOL", - "name": "preproc_function_def" - }, - { - "type": "SYMBOL", - "name": "preproc_call" - } - ] + "type": "SYMBOL", + "name": "function_definition" + }, + { + "type": "SYMBOL", + "name": "linkage_specification" + }, + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "_top_level_statement" + }, + { + "type": "SYMBOL", + "name": "attributed_statement" + }, + { + "type": "SYMBOL", + "name": "type_definition" + }, + { + "type": "SYMBOL", + "name": "_empty_declaration" + }, + { + "type": "SYMBOL", + "name": "preproc_if" + }, + { + "type": "SYMBOL", + "name": "preproc_ifdef" + }, + { + "type": "SYMBOL", + "name": "preproc_include" + }, + { + "type": "SYMBOL", + "name": "preproc_def" + }, + { + "type": "SYMBOL", + "name": "preproc_function_def" + }, + { + "type": "SYMBOL", + "name": "preproc_call" }, { "type": "SYMBOL", "name": "namespace_definition" }, + { + "type": "SYMBOL", + "name": "concept_definition" + }, + { + "type": "SYMBOL", + "name": "namespace_alias_definition" + }, { "type": "SYMBOL", "name": "using_declaration" @@ -135,6 +140,122 @@ } ] }, + "_block_item": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "function_definition" + }, + { + "type": "SYMBOL", + "name": "linkage_specification" + }, + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "statement" + }, + { + "type": "SYMBOL", + "name": "attributed_statement" + }, + { + "type": "SYMBOL", + "name": "type_definition" + }, + { + "type": "SYMBOL", + "name": "_empty_declaration" + }, + { + "type": "SYMBOL", + "name": "preproc_if" + }, + { + "type": "SYMBOL", + "name": "preproc_ifdef" + }, + { + "type": "SYMBOL", + "name": "preproc_include" + }, + { + "type": "SYMBOL", + "name": "preproc_def" + }, + { + "type": "SYMBOL", + "name": "preproc_function_def" + }, + { + "type": "SYMBOL", + "name": "preproc_call" + }, + { + "type": "SYMBOL", + "name": "namespace_definition" + }, + { + "type": "SYMBOL", + "name": "concept_definition" + }, + { + "type": "SYMBOL", + "name": "namespace_alias_definition" + }, + { + "type": "SYMBOL", + "name": "using_declaration" + }, + { + "type": "SYMBOL", + "name": "alias_declaration" + }, + { + "type": "SYMBOL", + "name": "static_assert_declaration" + }, + { + "type": "SYMBOL", + "name": "template_declaration" + }, + { + "type": "SYMBOL", + "name": "template_instantiation" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "constructor_or_destructor_definition" + }, + "named": true, + "value": "function_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "operator_cast_definition" + }, + "named": true, + "value": "function_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "operator_cast_declaration" + }, + "named": true, + "value": "declaration" + } + ] + }, "preproc_include": { "type": "SEQ", "members": [ @@ -178,8 +299,11 @@ } }, { - "type": "STRING", - "value": "\n" + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "\\r?\\n" + } } ] }, @@ -220,8 +344,11 @@ } }, { - "type": "STRING", - "value": "\n" + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "\\r?\\n" + } } ] }, @@ -270,8 +397,11 @@ } }, { - "type": "STRING", - "value": "\n" + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "\\r?\\n" + } } ] }, @@ -370,3489 +500,5000 @@ } }, { - "type": "STRING", - "value": "\n" + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "\\r?\\n" + } } ] }, "preproc_if": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "#[ \t]*if" + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*if" + }, + "named": false, + "value": "#if" }, - "named": false, - "value": "#if" - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "STRING", - "value": "\n" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_top_level_item" - } - }, - { - "type": "FIELD", - "name": "alternative", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "preproc_else" - }, - { - "type": "SYMBOL", - "name": "preproc_elif" - } - ] - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "#[ \t]*endif" + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } }, - "named": false, - "value": "#endif" - } - ] - }, - "preproc_ifdef": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "#[ \t]*ifdef" - }, - "named": false, - "value": "#ifdef" - }, - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "#[ \t]*ifndef" - }, - "named": false, - "value": "#ifndef" + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block_item" } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_top_level_item" + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_else" + }, + { + "type": "SYMBOL", + "name": "preproc_elif" + }, + { + "type": "SYMBOL", + "name": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" } - }, - { - "type": "FIELD", - "name": "alternative", - "content": { + ] + } + }, + "preproc_ifdef": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { "type": "CHOICE", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "preproc_else" - }, - { - "type": "SYMBOL", - "name": "preproc_elif" - } - ] + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifdef" + }, + "named": false, + "value": "#ifdef" }, { - "type": "BLANK" + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifndef" + }, + "named": false, + "value": "#ifndef" } ] - } - }, - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "#[ \t]*endif" }, - "named": false, - "value": "#endif" - } - ] + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_else" + }, + { + "type": "SYMBOL", + "name": "preproc_elif" + }, + { + "type": "SYMBOL", + "name": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + } }, "preproc_else": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "#[ \t]*else" + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*else" + }, + "named": false, + "value": "#else" }, - "named": false, - "value": "#else" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_top_level_item" + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block_item" + } } - } - ] + ] + } }, "preproc_elif": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "#[ \t]*elif" + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elif" + }, + "named": false, + "value": "#elif" }, - "named": false, - "value": "#elif" - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "STRING", - "value": "\n" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_top_level_item" - } - }, - { - "type": "FIELD", - "name": "alternative", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "preproc_else" - }, - { - "type": "SYMBOL", - "name": "preproc_elif" - } - ] - }, - { - "type": "BLANK" - } - ] - } - } - ] - }, - "preproc_if_in_field_declaration_list": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "#[ \t]*if" + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } }, - "named": false, - "value": "#if" - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "STRING", - "value": "\n" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_field_declaration_list_item" - } - }, - { - "type": "FIELD", - "name": "alternative", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", - "name": "preproc_else_in_field_declaration_list" + "name": "preproc_else" }, - "named": true, - "value": "preproc_else" - }, - { - "type": "ALIAS", - "content": { + { "type": "SYMBOL", - "name": "preproc_elif_in_field_declaration_list" + "name": "preproc_elif" }, - "named": true, - "value": "preproc_elif" - } - ] - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "#[ \t]*endif" - }, - "named": false, - "value": "#endif" - } - ] - }, - "preproc_ifdef_in_field_declaration_list": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "#[ \t]*ifdef" - }, - "named": false, - "value": "#ifdef" - }, - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "#[ \t]*ifndef" - }, - "named": false, - "value": "#ifndef" + { + "type": "SYMBOL", + "name": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_field_declaration_list_item" } - }, - { - "type": "FIELD", - "name": "alternative", - "content": { + ] + } + }, + "preproc_elifdef": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { "type": "CHOICE", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "preproc_else_in_field_declaration_list" - }, - "named": true, - "value": "preproc_else" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "preproc_elif_in_field_declaration_list" - }, - "named": true, - "value": "preproc_elif" - } - ] + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifdef" + }, + "named": false, + "value": "#elifdef" }, { - "type": "BLANK" + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifndef" + }, + "named": false, + "value": "#elifndef" } ] - } - }, - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "#[ \t]*endif" }, - "named": false, - "value": "#endif" - } - ] - }, - "preproc_else_in_field_declaration_list": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "#[ \t]*else" + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } }, - "named": false, - "value": "#else" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_field_declaration_list_item" + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_else" + }, + { + "type": "SYMBOL", + "name": "preproc_elif" + }, + { + "type": "SYMBOL", + "name": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } } - } - ] + ] + } }, - "preproc_elif_in_field_declaration_list": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "#[ \t]*elif" + "preproc_if_in_field_declaration_list": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*if" + }, + "named": false, + "value": "#if" }, - "named": false, - "value": "#elif" - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "STRING", - "value": "\n" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_field_declaration_list_item" - } - }, - { - "type": "FIELD", - "name": "alternative", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "preproc_else_in_field_declaration_list" - }, - "named": true, - "value": "preproc_else" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "preproc_elif_in_field_declaration_list" - }, - "named": true, - "value": "preproc_elif" - } - ] - }, - { - "type": "BLANK" - } - ] - } - } - ] - }, - "preproc_directive": { - "type": "PATTERN", - "value": "#[ \\t]*[a-zA-Z]\\w*" - }, - "preproc_arg": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": -1, - "content": { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": ".|\\\\\\r?\\n" - } - } - } - }, - "_preproc_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "preproc_call_expression" - }, - "named": true, - "value": "call_expression" - }, - { - "type": "SYMBOL", - "name": "number_literal" - }, - { - "type": "SYMBOL", - "name": "char_literal" - }, - { - "type": "SYMBOL", - "name": "preproc_defined" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "preproc_unary_expression" - }, - "named": true, - "value": "unary_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "preproc_binary_expression" + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } }, - "named": true, - "value": "binary_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "preproc_parenthesized_expression" + { + "type": "STRING", + "value": "\n" }, - "named": true, - "value": "parenthesized_expression" - } - ] - }, - "preproc_parenthesized_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_preproc_expression" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "preproc_defined": { - "type": "CHOICE", - "members": [ - { - "type": "PREC", - "value": 14, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "defined" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "defined" - }, - { + { + "type": "REPEAT", + "content": { "type": "SYMBOL", - "name": "identifier" + "name": "_field_declaration_list_item" } - ] - } - ] - }, - "preproc_unary_expression": { - "type": "PREC_LEFT", - "value": 13, - "content": { - "type": "SEQ", - "members": [ + }, { "type": "FIELD", - "name": "operator", + "name": "alternative", "content": { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "!" - }, - { - "type": "STRING", - "value": "~" - }, - { - "type": "STRING", - "value": "-" + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_field_declaration_list" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elifdef" + } + ] }, { - "type": "STRING", - "value": "+" + "type": "BLANK" } ] } }, { - "type": "FIELD", - "name": "argument", + "type": "ALIAS", "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" } ] } }, - "preproc_call_expression": { + "preproc_ifdef_in_field_declaration_list": { "type": "PREC", - "value": 14, + "value": 0, "content": { "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "function", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "preproc_argument_list" + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifdef" + }, + "named": false, + "value": "#ifdef" }, - "named": true, - "value": "argument_list" + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifndef" + }, + "named": false, + "value": "#ifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_field_declaration_list_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_field_declaration_list" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" } ] } }, - "preproc_argument_list": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", + "preproc_else_in_field_declaration_list": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*else" + }, + "named": false, + "value": "#else" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_field_declaration_list_item" + } + } + ] + } + }, + "preproc_elif_in_field_declaration_list": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elif" + }, + "named": false, + "value": "#elif" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_field_declaration_list_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_preproc_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_field_declaration_list" }, - { + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { "type": "SYMBOL", - "name": "_preproc_expression" - } - ] - } + "name": "preproc_elif_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" } ] - }, - { - "type": "BLANK" } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] + } + ] + } }, - "preproc_binary_expression": { - "type": "CHOICE", - "members": [ - { - "type": "PREC_LEFT", - "value": 10, - "content": { - "type": "SEQ", + "preproc_elifdef_in_field_declaration_list": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "FIELD", - "name": "operator", + "type": "ALIAS", "content": { - "type": "STRING", - "value": "+" - } + "type": "PATTERN", + "value": "#[ \t]*elifdef" + }, + "named": false, + "value": "#elifdef" }, { - "type": "FIELD", - "name": "right", + "type": "ALIAS", "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } + "type": "PATTERN", + "value": "#[ \t]*elifndef" + }, + "named": false, + "value": "#elifndef" } ] - } - }, - { - "type": "PREC_LEFT", - "value": 10, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "-" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_field_declaration_list_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_field_declaration_list" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" } - } - ] + ] + } } - }, - { - "type": "PREC_LEFT", - "value": 11, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { + ] + } + }, + "preproc_if_in_enumerator_list": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*if" + }, + "named": false, + "value": "#if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { + "name": "enumerator" + }, + { "type": "STRING", - "value": "*" + "value": "," } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" + ] + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_enumerator_list" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_enumerator_list" + }, + "named": true, + "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_enumerator_list" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" } - } - ] + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" } - }, - { - "type": "PREC_LEFT", - "value": 11, - "content": { - "type": "SEQ", + ] + } + }, + "preproc_ifdef_in_enumerator_list": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "FIELD", - "name": "operator", + "type": "ALIAS", "content": { - "type": "STRING", - "value": "/" - } + "type": "PATTERN", + "value": "#[ \t]*ifdef" + }, + "named": false, + "value": "#ifdef" }, { - "type": "FIELD", - "name": "right", + "type": "ALIAS", "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } + "type": "PATTERN", + "value": "#[ \t]*ifndef" + }, + "named": false, + "value": "#ifndef" } ] - } - }, - { - "type": "PREC_LEFT", - "value": 11, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { + "name": "enumerator" + }, + { "type": "STRING", - "value": "%" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" + "value": "," } - } - ] + ] + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_enumerator_list" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_enumerator_list" + }, + "named": true, + "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_enumerator_list" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" } - }, - { - "type": "PREC_LEFT", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { + ] + } + }, + "preproc_else_in_enumerator_list": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*else" + }, + "named": false, + "value": "#else" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { + "name": "enumerator" + }, + { "type": "STRING", - "value": "||" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" + "value": "," } - } - ] + ] + } } - }, - { - "type": "PREC_LEFT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { + ] + } + }, + "preproc_elif_in_enumerator_list": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elif" + }, + "named": false, + "value": "#elif" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { + "name": "enumerator" + }, + { "type": "STRING", - "value": "&&" + "value": "," } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" + ] + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_enumerator_list" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_enumerator_list" + }, + "named": true, + "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_enumerator_list" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" } - } - ] + ] + } } - }, - { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", + ] + } + }, + "preproc_elifdef_in_enumerator_list": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "FIELD", - "name": "operator", + "type": "ALIAS", "content": { - "type": "STRING", - "value": "|" - } + "type": "PATTERN", + "value": "#[ \t]*elifdef" + }, + "named": false, + "value": "#elifdef" }, { - "type": "FIELD", - "name": "right", + "type": "ALIAS", "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } + "type": "PATTERN", + "value": "#[ \t]*elifndef" + }, + "named": false, + "value": "#elifndef" } ] - } - }, - { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "^" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 5, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { + "name": "enumerator" + }, + { "type": "STRING", - "value": "&" + "value": "," } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" + ] + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_enumerator_list" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_enumerator_list" + }, + "named": true, + "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_enumerator_list" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" } - } - ] + ] + } } - }, - { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "==" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" + ] + } + }, + "preproc_if_in_enumerator_list_no_comma": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*if" + }, + "named": false, + "value": "#if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "enumerator" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" } - } - ] + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" } - }, - { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", + ] + } + }, + "preproc_ifdef_in_enumerator_list_no_comma": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "FIELD", - "name": "operator", + "type": "ALIAS", "content": { - "type": "STRING", - "value": "!=" - } + "type": "PATTERN", + "value": "#[ \t]*ifdef" + }, + "named": false, + "value": "#ifdef" }, { - "type": "FIELD", - "name": "right", + "type": "ALIAS", "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } + "type": "PATTERN", + "value": "#[ \t]*ifndef" + }, + "named": false, + "value": "#ifndef" } ] - } - }, - { - "type": "PREC_LEFT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": ">" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "enumerator" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" } - } - ] + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" } - }, - { - "type": "PREC_LEFT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": ">=" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" + ] + } + }, + "preproc_else_in_enumerator_list_no_comma": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*else" + }, + "named": false, + "value": "#else" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "enumerator" + } + } + ] + } + }, + "preproc_elif_in_enumerator_list_no_comma": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elif" + }, + "named": false, + "value": "#elif" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "enumerator" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" } - } - ] + ] + } } - }, - { - "type": "PREC_LEFT", - "value": 7, - "content": { - "type": "SEQ", + ] + } + }, + "preproc_elifdef_in_enumerator_list_no_comma": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "FIELD", - "name": "operator", + "type": "ALIAS", "content": { - "type": "STRING", - "value": "<=" - } + "type": "PATTERN", + "value": "#[ \t]*elifdef" + }, + "named": false, + "value": "#elifdef" }, { - "type": "FIELD", - "name": "right", + "type": "ALIAS", "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } + "type": "PATTERN", + "value": "#[ \t]*elifndef" + }, + "named": false, + "value": "#elifndef" } ] - } - }, - { - "type": "PREC_LEFT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "<" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "enumerator" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" } - } - ] + ] + } } + ] + } + }, + "preproc_arg": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": -1, + "content": { + "type": "PATTERN", + "value": "\\S([^/\\n]|\\/[^*]|\\\\\\r?\\n)*" + } + } + }, + "preproc_directive": { + "type": "PATTERN", + "value": "#[ \\t]*[a-zA-Z0-9]\\w*" + }, + "_preproc_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" }, { - "type": "PREC_LEFT", - "value": 9, + "type": "ALIAS", "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "<<" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } - } - ] - } + "type": "SYMBOL", + "name": "preproc_call_expression" + }, + "named": true, + "value": "call_expression" }, { - "type": "PREC_LEFT", - "value": 9, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": ">>" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_preproc_expression" - } - } - ] - } - } - ] - }, - "function_definition": { - "type": "SEQ", - "members": [ + "type": "SYMBOL", + "name": "number_literal" + }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "ms_call_modifier" - }, - { - "type": "BLANK" - } - ] + "type": "SYMBOL", + "name": "char_literal" }, { "type": "SYMBOL", - "name": "_declaration_specifiers" + "name": "preproc_defined" }, { - "type": "FIELD", - "name": "declarator", + "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_declarator" - } + "name": "preproc_unary_expression" + }, + "named": true, + "value": "unary_expression" }, { - "type": "FIELD", - "name": "body", + "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "compound_statement" - } + "name": "preproc_binary_expression" + }, + "named": true, + "value": "binary_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_parenthesized_expression" + }, + "named": true, + "value": "parenthesized_expression" } ] }, - "declaration": { + "preproc_parenthesized_expression": { "type": "SEQ", "members": [ + { + "type": "STRING", + "value": "(" + }, { "type": "SYMBOL", - "name": "_declaration_specifiers" + "name": "_preproc_expression" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "preproc_defined": { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "defined" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": ")" + } + ] + } }, { "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_declarator" - }, - { - "type": "SYMBOL", - "name": "init_declarator" - } - ] - } + "type": "STRING", + "value": "defined" }, { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_declarator" - }, - { - "type": "SYMBOL", - "name": "init_declarator" - } - ] - } - } - ] - } + "type": "SYMBOL", + "name": "identifier" } ] - }, - { - "type": "STRING", - "value": ";" } ] }, - "type_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "typedef" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "type_qualifier" - } - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "_type_specifier" + "preproc_unary_expression": { + "type": "PREC_LEFT", + "value": 14, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "~" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + } + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } } - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "declarator", + ] + } + }, + "preproc_call_expression": { + "type": "PREC", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_type_declarator" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "_type_declarator" - } - } - ] - } + "name": "preproc_argument_list" + }, + "named": true, + "value": "argument_list" } - ] - }, - { - "type": "STRING", - "value": ";" - } - ] + } + ] + } }, - "_declaration_modifiers": { - "type": "CHOICE", + "preproc_argument_list": { + "type": "SEQ", "members": [ + { + "type": "STRING", + "value": "(" + }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "storage_class_specifier" - }, - { - "type": "SYMBOL", - "name": "type_qualifier" - }, - { - "type": "SYMBOL", - "name": "attribute_specifier" - }, - { - "type": "SYMBOL", - "name": "attribute_declaration" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_preproc_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_preproc_expression" + } + ] + } + } + ] }, { - "type": "SYMBOL", - "name": "ms_declspec_modifier" + "type": "BLANK" } ] }, { - "type": "SYMBOL", - "name": "virtual_function_specifier" + "type": "STRING", + "value": ")" } ] }, - "_declaration_specifiers": { - "type": "SEQ", + "preproc_binary_expression": { + "type": "CHOICE", "members": [ { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_declaration_modifiers" - } - }, - { - "type": "FIELD", - "name": "type", + "type": "PREC_LEFT", + "value": 10, "content": { - "type": "SYMBOL", - "name": "_type_specifier" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "+" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] } }, { - "type": "REPEAT", + "type": "PREC_LEFT", + "value": 10, "content": { - "type": "SYMBOL", - "name": "_declaration_modifiers" - } - } - ] - }, - "linkage_specification": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "extern" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } }, { - "type": "FIELD", - "name": "value", + "type": "PREC_LEFT", + "value": 11, "content": { - "type": "SYMBOL", - "name": "string_literal" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "*" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] } }, { - "type": "FIELD", - "name": "body", + "type": "PREC_LEFT", + "value": 11, "content": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "function_definition" + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } }, { - "type": "SYMBOL", - "name": "declaration" + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "/" + } }, { - "type": "SYMBOL", - "name": "declaration_list" + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } } ] } - } - ] - }, - "attribute_specifier": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "__attribute__" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "argument_list" }, { - "type": "STRING", - "value": ")" - } - ] - }, - "attribute": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "prefix", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { "type": "STRING", - "value": "::" + "value": "%" } - ] - }, - { - "type": "BLANK" - } - ] + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } }, { - "type": "FIELD", - "name": "name", + "type": "PREC_LEFT", + "value": 1, "content": { - "type": "SYMBOL", - "name": "identifier" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "||" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] } }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "argument_list" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "attribute_declaration": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[[" + "type": "PREC_LEFT", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } }, { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "attribute" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "attribute" - } - ] + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "|" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } } - } - ] - }, - { - "type": "STRING", - "value": "]]" - } - ] - }, - "ms_declspec_modifier": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "__declspec" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "identifier" + ] + } }, { - "type": "STRING", - "value": ")" - } - ] - }, - "ms_based_modifier": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "__based" + "type": "PREC_LEFT", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "^" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } }, { - "type": "SYMBOL", - "name": "argument_list" - } - ] - }, - "ms_call_modifier": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "__cdecl" + "type": "PREC_LEFT", + "value": 5, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } }, { - "type": "STRING", - "value": "__clrcall" + "type": "PREC_LEFT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "==" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } }, { - "type": "STRING", - "value": "__stdcall" + "type": "PREC_LEFT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "!=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } }, { - "type": "STRING", - "value": "__fastcall" + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } }, { - "type": "STRING", - "value": "__thiscall" + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } }, { - "type": "STRING", - "value": "__vectorcall" - } - ] - }, - "ms_restrict_modifier": { - "type": "STRING", - "value": "__restrict" - }, - "ms_unsigned_ptr_modifier": { - "type": "STRING", - "value": "__uptr" - }, - "ms_signed_ptr_modifier": { - "type": "STRING", - "value": "__sptr" - }, - "ms_unaligned_ptr_modifier": { - "type": "CHOICE", - "members": [ + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, { - "type": "STRING", - "value": "_unaligned" + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } }, { - "type": "STRING", - "value": "__unaligned" + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } } ] }, - "ms_pointer_modifier": { - "type": "CHOICE", + "function_definition": { + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ms_unaligned_ptr_modifier" - }, - { - "type": "SYMBOL", - "name": "ms_restrict_modifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] }, { "type": "SYMBOL", - "name": "ms_unsigned_ptr_modifier" + "name": "_declaration_specifiers" }, { - "type": "SYMBOL", - "name": "ms_signed_ptr_modifier" - } - ] - }, - "declaration_list": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] }, { - "type": "REPEAT", + "type": "FIELD", + "name": "declarator", "content": { "type": "SYMBOL", - "name": "_top_level_item" + "name": "_declarator" } }, { - "type": "STRING", - "value": "}" + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "compound_statement" + }, + { + "type": "SYMBOL", + "name": "try_statement" + } + ] + } } ] }, - "_declarator": { - "type": "CHOICE", + "_old_style_function_definition": { + "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "attributed_declarator" - }, - { - "type": "SYMBOL", - "name": "pointer_declarator" + "name": "ms_call_modifier" }, { - "type": "SYMBOL", - "name": "function_declarator" - }, - { - "type": "SYMBOL", - "name": "array_declarator" - }, - { - "type": "SYMBOL", - "name": "parenthesized_declarator" - }, - { - "type": "SYMBOL", - "name": "identifier" + "type": "BLANK" } ] }, { "type": "SYMBOL", - "name": "reference_declarator" + "name": "_declaration_specifiers" }, { - "type": "SYMBOL", - "name": "qualified_identifier" + "type": "FIELD", + "name": "declarator", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_old_style_function_declarator" + }, + "named": true, + "value": "function_declarator" + } }, { - "type": "SYMBOL", - "name": "template_function" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "declaration" + } }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, + "declaration": { + "type": "SEQ", + "members": [ { "type": "SYMBOL", - "name": "operator_name" + "name": "_declaration_specifiers" }, { - "type": "SYMBOL", - "name": "destructor_name" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "gnu_asm_expression" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "init_declarator" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "gnu_asm_expression" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "init_declarator" + } + ] + } + } + ] + } + } + ] }, { - "type": "SYMBOL", - "name": "structured_binding_declarator" + "type": "STRING", + "value": ";" } ] }, - "_field_declarator": { - "type": "CHOICE", + "type_definition": { + "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "attributed_field_declarator" - }, - "named": true, - "value": "attributed_declarator" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "pointer_field_declarator" - }, - "named": true, - "value": "pointer_declarator" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "function_field_declarator" - }, - "named": true, - "value": "function_declarator" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "array_field_declarator" - }, - "named": true, - "value": "array_declarator" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "parenthesized_field_declarator" - }, - "named": true, - "value": "parenthesized_declarator" + "type": "STRING", + "value": "__extension__" }, { - "type": "SYMBOL", - "name": "_field_identifier" + "type": "BLANK" } ] }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "reference_field_declarator" - }, - "named": true, - "value": "reference_declarator" + "type": "STRING", + "value": "typedef" }, { "type": "SYMBOL", - "name": "template_method" + "name": "_type_definition_type" }, { "type": "SYMBOL", - "name": "operator_name" - } - ] - }, - "_type_declarator": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "attributed_type_declarator" - }, - "named": true, - "value": "attributed_declarator" + "name": "_type_definition_declarators" }, { - "type": "ALIAS", + "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "pointer_type_declarator" - }, - "named": true, - "value": "pointer_declarator" + "name": "attribute_specifier" + } }, { - "type": "ALIAS", + "type": "STRING", + "value": ";" + } + ] + }, + "_type_definition_type": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "function_type_declarator" - }, - "named": true, - "value": "function_declarator" + "name": "type_qualifier" + } }, { - "type": "ALIAS", + "type": "FIELD", + "name": "type", "content": { "type": "SYMBOL", - "name": "array_type_declarator" - }, - "named": true, - "value": "array_declarator" + "name": "type_specifier" + } }, { - "type": "ALIAS", + "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "parenthesized_type_declarator" - }, - "named": true, - "value": "parenthesized_declarator" - }, - { - "type": "SYMBOL", - "name": "_type_identifier" + "name": "type_qualifier" + } } ] }, - "_abstract_declarator": { - "type": "CHOICE", + "_type_definition_declarators": { + "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "abstract_pointer_declarator" - }, - { - "type": "SYMBOL", - "name": "abstract_function_declarator" - }, - { - "type": "SYMBOL", - "name": "abstract_array_declarator" + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_type_declarator" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_type_declarator" + } + } + ] + } + } + ] + }, + "_declaration_modifiers": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "storage_class_specifier" }, { "type": "SYMBOL", - "name": "abstract_parenthesized_declarator" + "name": "type_qualifier" + }, + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "SYMBOL", + "name": "attribute_declaration" + }, + { + "type": "SYMBOL", + "name": "ms_declspec_modifier" } ] }, { - "type": "SYMBOL", - "name": "abstract_reference_declarator" + "type": "STRING", + "value": "virtual" } ] }, - "parenthesized_declarator": { - "type": "PREC_DYNAMIC", - "value": -10, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_declarator" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - }, - "parenthesized_field_declarator": { - "type": "PREC_DYNAMIC", - "value": -10, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_field_declarator" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - }, - "parenthesized_type_declarator": { - "type": "PREC_DYNAMIC", - "value": -10, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_type_declarator" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - }, - "abstract_parenthesized_declarator": { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_abstract_declarator" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - }, - "attributed_declarator": { + "_declaration_specifiers": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_declarator" - }, - { - "type": "REPEAT1", + "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_declaration" + "name": "_declaration_modifiers" } - } - ] - } - }, - "attributed_field_declarator": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_field_declarator" }, { - "type": "REPEAT1", + "type": "FIELD", + "name": "type", "content": { "type": "SYMBOL", - "name": "attribute_declaration" + "name": "type_specifier" } - } - ] - } - }, - "attributed_type_declarator": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_declarator" }, { - "type": "REPEAT1", + "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_declaration" + "name": "_declaration_modifiers" } } ] } }, - "pointer_declarator": { - "type": "PREC_DYNAMIC", - "value": 1, - "content": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "ms_based_modifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "*" - }, - { - "type": "REPEAT", - "content": { + "linkage_specification": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "extern" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "string_literal" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", - "name": "ms_pointer_modifier" - } - }, - { - "type": "REPEAT", - "content": { + "name": "function_definition" + }, + { "type": "SYMBOL", - "name": "type_qualifier" - } - }, - { - "type": "FIELD", - "name": "declarator", - "content": { + "name": "declaration" + }, + { "type": "SYMBOL", - "name": "_declarator" + "name": "declaration_list" } - } - ] + ] + } } - } + ] }, - "pointer_field_declarator": { - "type": "PREC_DYNAMIC", - "value": 1, - "content": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", + "attribute_specifier": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "ms_based_modifier" - }, - { - "type": "BLANK" - } - ] - }, { "type": "STRING", - "value": "*" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "ms_pointer_modifier" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "type_qualifier" - } + "value": "__attribute__" }, { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "_field_declarator" - } + "type": "STRING", + "value": "__attribute" } ] + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "STRING", + "value": ")" } - } + ] }, - "pointer_type_declarator": { - "type": "PREC_DYNAMIC", - "value": 1, - "content": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", + "attribute": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", "members": [ { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ms_based_modifier" + "type": "FIELD", + "name": "prefix", + "content": { + "type": "SYMBOL", + "name": "identifier" + } }, { - "type": "BLANK" + "type": "STRING", + "value": "::" } ] }, { - "type": "STRING", - "value": "*" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "ms_pointer_modifier" - } - }, + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "CHOICE", + "members": [ { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "type_qualifier" - } + "type": "SYMBOL", + "name": "argument_list" }, { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "_type_declarator" - } + "type": "BLANK" } ] } - } + ] }, - "abstract_pointer_declarator": { - "type": "PREC_DYNAMIC", - "value": 1, - "content": { - "type": "PREC_RIGHT", - "value": 0, - "content": { + "attribute_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[[" + }, + { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "*" + "type": "SYMBOL", + "name": "attribute" }, { "type": "REPEAT", "content": { - "type": "SYMBOL", - "name": "type_qualifier" - } - }, - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_abstract_declarator" + "type": "STRING", + "value": "," }, { - "type": "BLANK" + "type": "SYMBOL", + "name": "attribute" } ] } } ] + }, + { + "type": "STRING", + "value": "]]" } - } + ] }, - "function_declarator": { - "type": "PREC_DYNAMIC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "_declarator" - } - }, - { - "type": "FIELD", - "name": "parameters", - "content": { - "type": "SYMBOL", - "name": "parameter_list" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute_specifier" - } - } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_qualifier" - }, - { - "type": "SYMBOL", - "name": "ref_qualifier" - }, - { - "type": "SYMBOL", - "name": "virtual_specifier" - }, - { - "type": "SYMBOL", - "name": "noexcept" - }, - { - "type": "SYMBOL", - "name": "throw_specifier" - }, - { - "type": "SYMBOL", - "name": "trailing_return_type" - } - ] - } - } - ] - } + "ms_declspec_modifier": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "__declspec" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": ")" + } + ] }, - "function_field_declarator": { - "type": "PREC_DYNAMIC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "_field_declarator" - } - }, - { - "type": "FIELD", - "name": "parameters", - "content": { - "type": "SYMBOL", - "name": "parameter_list" - } - } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_qualifier" - }, - { - "type": "SYMBOL", - "name": "ref_qualifier" - }, - { - "type": "SYMBOL", - "name": "virtual_specifier" - }, - { - "type": "SYMBOL", - "name": "noexcept" - }, - { - "type": "SYMBOL", - "name": "throw_specifier" - }, - { - "type": "SYMBOL", - "name": "trailing_return_type" - } - ] - } + "ms_based_modifier": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "__based" + }, + { + "type": "SYMBOL", + "name": "argument_list" + } + ] + }, + "ms_call_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__cdecl" + }, + { + "type": "STRING", + "value": "__clrcall" + }, + { + "type": "STRING", + "value": "__stdcall" + }, + { + "type": "STRING", + "value": "__fastcall" + }, + { + "type": "STRING", + "value": "__thiscall" + }, + { + "type": "STRING", + "value": "__vectorcall" + } + ] + }, + "ms_restrict_modifier": { + "type": "STRING", + "value": "__restrict" + }, + "ms_unsigned_ptr_modifier": { + "type": "STRING", + "value": "__uptr" + }, + "ms_signed_ptr_modifier": { + "type": "STRING", + "value": "__sptr" + }, + "ms_unaligned_ptr_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "_unaligned" + }, + { + "type": "STRING", + "value": "__unaligned" + } + ] + }, + "ms_pointer_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_unaligned_ptr_modifier" + }, + { + "type": "SYMBOL", + "name": "ms_restrict_modifier" + }, + { + "type": "SYMBOL", + "name": "ms_unsigned_ptr_modifier" + }, + { + "type": "SYMBOL", + "name": "ms_signed_ptr_modifier" + } + ] + }, + "declaration_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block_item" } - ] - } + }, + { + "type": "STRING", + "value": "}" + } + ] }, - "function_type_declarator": { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "declarator", - "content": { + "_declarator": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", - "name": "_type_declarator" - } - }, - { - "type": "FIELD", - "name": "parameters", - "content": { + "name": "attributed_declarator" + }, + { "type": "SYMBOL", - "name": "parameter_list" + "name": "pointer_declarator" + }, + { + "type": "SYMBOL", + "name": "function_declarator" + }, + { + "type": "SYMBOL", + "name": "array_declarator" + }, + { + "type": "SYMBOL", + "name": "parenthesized_declarator" + }, + { + "type": "SYMBOL", + "name": "identifier" } - } - ] - } + ] + }, + { + "type": "SYMBOL", + "name": "reference_declarator" + }, + { + "type": "SYMBOL", + "name": "qualified_identifier" + }, + { + "type": "SYMBOL", + "name": "template_function" + }, + { + "type": "SYMBOL", + "name": "operator_name" + }, + { + "type": "SYMBOL", + "name": "destructor_name" + }, + { + "type": "SYMBOL", + "name": "structured_binding_declarator" + } + ] }, - "abstract_function_declarator": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_abstract_declarator" - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "FIELD", - "name": "parameters", - "content": { - "type": "SYMBOL", - "name": "parameter_list" + "_declaration_declarator": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributed_declarator" + }, + { + "type": "SYMBOL", + "name": "pointer_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_function_declaration_declarator" + }, + "named": true, + "value": "function_declarator" + }, + { + "type": "SYMBOL", + "name": "array_declarator" + }, + { + "type": "SYMBOL", + "name": "parenthesized_declarator" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + "_field_declarator": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "attributed_field_declarator" + }, + "named": true, + "value": "attributed_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "pointer_field_declarator" + }, + "named": true, + "value": "pointer_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "function_field_declarator" + }, + "named": true, + "value": "function_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "array_field_declarator" + }, + "named": true, + "value": "array_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "parenthesized_field_declarator" + }, + "named": true, + "value": "parenthesized_declarator" + }, + { + "type": "SYMBOL", + "name": "_field_identifier" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "reference_field_declarator" + }, + "named": true, + "value": "reference_declarator" + }, + { + "type": "SYMBOL", + "name": "template_method" + }, + { + "type": "SYMBOL", + "name": "operator_name" + } + ] + }, + "_type_declarator": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "attributed_type_declarator" + }, + "named": true, + "value": "attributed_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "pointer_type_declarator" + }, + "named": true, + "value": "pointer_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "function_type_declarator" + }, + "named": true, + "value": "function_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "array_type_declarator" + }, + "named": true, + "value": "array_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "parenthesized_type_declarator" + }, + "named": true, + "value": "parenthesized_declarator" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "signed" + }, + { + "type": "STRING", + "value": "unsigned" + }, + { + "type": "STRING", + "value": "long" + }, + { + "type": "STRING", + "value": "short" } - } - ] + ] + }, + "named": true, + "value": "primitive_type" + }, + { + "type": "SYMBOL", + "name": "primitive_type" } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "reference_type_declarator" }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_qualifier" - }, - { - "type": "SYMBOL", - "name": "ref_qualifier" - }, - { - "type": "SYMBOL", - "name": "noexcept" - }, - { - "type": "SYMBOL", - "name": "throw_specifier" - } - ] + "named": true, + "value": "reference_declarator" + } + ] + }, + "_abstract_declarator": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "abstract_pointer_declarator" + }, + { + "type": "SYMBOL", + "name": "abstract_function_declarator" + }, + { + "type": "SYMBOL", + "name": "abstract_array_declarator" + }, + { + "type": "SYMBOL", + "name": "abstract_parenthesized_declarator" } + ] + }, + { + "type": "SYMBOL", + "name": "abstract_reference_declarator" + } + ] + }, + "parenthesized_declarator": { + "type": "PREC_DYNAMIC", + "value": -10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "trailing_return_type" + "name": "ms_call_modifier" }, { "type": "BLANK" } ] - } - ] - } - }, - "array_declarator": { - "type": "PREC", - "value": 1, + }, + { + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "parenthesized_field_declarator": { + "type": "PREC_DYNAMIC", + "value": -10, "content": { "type": "SEQ", "members": [ - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "_declarator" - } - }, { "type": "STRING", - "value": "[" + "value": "(" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "type_qualifier" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] }, { - "type": "FIELD", - "name": "size", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": "*" - } - ] - }, - { - "type": "BLANK" - } - ] - } + "type": "SYMBOL", + "name": "_field_declarator" }, { "type": "STRING", - "value": "]" + "value": ")" } ] } }, - "array_field_declarator": { - "type": "PREC", - "value": 1, + "parenthesized_type_declarator": { + "type": "PREC_DYNAMIC", + "value": -10, "content": { "type": "SEQ", "members": [ - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "_field_declarator" - } - }, { "type": "STRING", - "value": "[" + "value": "(" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "type_qualifier" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] }, { - "type": "FIELD", - "name": "size", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": "*" - } - ] - }, - { - "type": "BLANK" - } - ] - } + "type": "SYMBOL", + "name": "_type_declarator" }, { "type": "STRING", - "value": "]" + "value": ")" } ] } }, - "array_type_declarator": { + "abstract_parenthesized_declarator": { "type": "PREC", "value": 1, "content": { "type": "SEQ", "members": [ - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "_type_declarator" - } - }, { "type": "STRING", - "value": "[" + "value": "(" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "type_qualifier" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] }, { - "type": "FIELD", - "name": "size", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": "*" - } - ] - }, - { - "type": "BLANK" - } - ] - } + "type": "SYMBOL", + "name": "_abstract_declarator" }, { "type": "STRING", - "value": "]" + "value": ")" } ] } }, - "abstract_array_declarator": { - "type": "PREC", - "value": 1, + "attributed_declarator": { + "type": "PREC_RIGHT", + "value": 0, "content": { "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "declarator", + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "REPEAT1", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_abstract_declarator" - }, - { - "type": "BLANK" - } - ] + "type": "SYMBOL", + "name": "attribute_declaration" } - }, + } + ] + } + }, + "attributed_field_declarator": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ { - "type": "STRING", - "value": "[" + "type": "SYMBOL", + "name": "_field_declarator" }, { - "type": "REPEAT", + "type": "REPEAT1", "content": { "type": "SYMBOL", - "name": "type_qualifier" + "name": "attribute_declaration" } + } + ] + } + }, + "attributed_type_declarator": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_type_declarator" }, { - "type": "FIELD", - "name": "size", + "type": "REPEAT1", "content": { + "type": "SYMBOL", + "name": "attribute_declaration" + } + } + ] + } + }, + "pointer_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { "type": "CHOICE", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": "*" - } - ] + "type": "SYMBOL", + "name": "ms_based_modifier" }, { "type": "BLANK" } ] + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "ms_pointer_modifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } } - }, - { - "type": "STRING", - "value": "]" - } - ] + ] + } } }, - "init_declarator": { - "type": "CHOICE", - "members": [ - { + "pointer_field_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_based_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "ms_pointer_modifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, { "type": "FIELD", "name": "declarator", "content": { "type": "SYMBOL", - "name": "_declarator" + "name": "_field_declarator" } + } + ] + } + } + }, + "pointer_type_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_based_modifier" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", - "value": "=" + "value": "*" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "ms_pointer_modifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } }, { "type": "FIELD", - "name": "value", + "name": "declarator", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "initializer_list" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] + "type": "SYMBOL", + "name": "_type_declarator" } } ] - }, - { + } + } + }, + "abstract_pointer_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "declarator", + "type": "STRING", + "value": "*" + }, + { + "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_declarator" + "name": "ms_pointer_modifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" } }, { "type": "FIELD", - "name": "value", + "name": "declarator", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "argument_list" + "name": "_abstract_declarator" }, { - "type": "SYMBOL", - "name": "initializer_list" + "type": "BLANK" } ] } } ] } - ] + } }, - "compound_statement": { - "type": "PREC", - "value": -1, + "function_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, "content": { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "{" + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + }, + { + "type": "SYMBOL", + "name": "_function_declarator_seq" + } + ] + } + }, + "_function_declaration_declarator": { + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "parameter_list" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "gnu_asm_expression" + }, + { + "type": "BLANK" + } + ] }, { "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_top_level_item" + "name": "attribute_specifier" + } + } + ] + } + }, + "function_field_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" } }, { - "type": "STRING", - "value": "}" + "type": "SYMBOL", + "name": "_function_declarator_seq" } ] } }, - "storage_class_specifier": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "extern" - }, - { - "type": "STRING", - "value": "static" - }, - { - "type": "STRING", - "value": "register" - }, - { - "type": "STRING", - "value": "inline" - }, - { - "type": "STRING", - "value": "thread_local" + "function_type_declarator": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_type_declarator" } - ] - }, - { - "type": "SYMBOL", - "name": "macro_annotation" - } - ] - }, - "type_qualifier": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "const" - }, - { - "type": "STRING", - "value": "volatile" - }, - { - "type": "STRING", - "value": "restrict" - }, - { - "type": "STRING", - "value": "_Atomic" + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "parameter_list" } - ] - }, - { - "type": "STRING", - "value": "mutable" - }, - { - "type": "STRING", - "value": "constexpr" - } - ] + } + ] + } }, - "_type_specifier": { - "type": "CHOICE", + "abstract_function_declarator": { + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "struct_specifier" - }, - { - "type": "SYMBOL", - "name": "union_specifier" - }, - { - "type": "SYMBOL", - "name": "enum_specifier" - }, - { - "type": "SYMBOL", - "name": "class_specifier" - }, - { - "type": "SYMBOL", - "name": "sized_type_specifier" - }, - { - "type": "SYMBOL", - "name": "primitive_type" - }, - { - "type": "SYMBOL", - "name": "template_type" - }, - { - "type": "SYMBOL", - "name": "auto" - }, - { - "type": "SYMBOL", - "name": "dependent_type" - }, - { - "type": "SYMBOL", - "name": "decltype" - }, - { - "type": "PREC_RIGHT", - "value": 0, + "type": "FIELD", + "name": "declarator", "content": { "type": "CHOICE", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "qualified_type_identifier" - }, - "named": true, - "value": "qualified_identifier" + "type": "SYMBOL", + "name": "_abstract_declarator" }, { - "type": "SYMBOL", - "name": "_type_identifier" + "type": "BLANK" } ] } + }, + { + "type": "SYMBOL", + "name": "_function_declarator_seq" } ] }, - "sized_type_specifier": { + "_old_style_function_declarator": { "type": "SEQ", "members": [ { - "type": "REPEAT1", + "type": "FIELD", + "name": "declarator", "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "signed" - }, - { - "type": "STRING", - "value": "unsigned" - }, - { - "type": "STRING", - "value": "long" - }, - { - "type": "STRING", - "value": "short" - } - ] + "type": "SYMBOL", + "name": "_declarator" } }, { "type": "FIELD", - "name": "type", + "name": "parameters", "content": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PREC_DYNAMIC", - "value": -1, - "content": { - "type": "SYMBOL", - "name": "_type_identifier" - } - }, - { - "type": "SYMBOL", - "name": "primitive_type" - } - ] - }, - { - "type": "BLANK" - } - ] + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_old_style_parameter_list" + }, + "named": true, + "value": "parameter_list" } } ] }, - "primitive_type": { - "type": "TOKEN", + "array_declarator": { + "type": "PREC", + "value": 1, "content": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "STRING", - "value": "APIENTRY" - }, - { - "type": "STRING", - "value": "ATOM" - }, - { - "type": "STRING", - "value": "BOOL" + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } }, { "type": "STRING", - "value": "BOOLEAN" + "value": "[" }, { - "type": "STRING", - "value": "BYTE" + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "STRING", + "value": "static" + } + ] + } }, { - "type": "STRING", - "value": "CCHAR" + "type": "FIELD", + "name": "size", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + { + "type": "BLANK" + } + ] + } }, { "type": "STRING", - "value": "CHAR" - }, - { - "type": "STRING", - "value": "COLORREF" - }, - { - "type": "STRING", - "value": "DWORD" - }, - { - "type": "STRING", - "value": "DWORDLONG" - }, - { - "type": "STRING", - "value": "DWORD_PTR" - }, - { - "type": "STRING", - "value": "DWORD32" - }, - { - "type": "STRING", - "value": "DWORD64" - }, - { - "type": "STRING", - "value": "FLOAT" - }, - { - "type": "STRING", - "value": "HACCEL" - }, - { - "type": "STRING", - "value": "HALF_PTR" - }, - { - "type": "STRING", - "value": "HANDLE" - }, - { - "type": "STRING", - "value": "HBITMAP" - }, - { - "type": "STRING", - "value": "HBRUSH" - }, - { - "type": "STRING", - "value": "HCOLORSPACE" - }, - { - "type": "STRING", - "value": "HCONV" - }, - { - "type": "STRING", - "value": "HCONVLIST" - }, - { - "type": "STRING", - "value": "HCURSOR" - }, + "value": "]" + } + ] + } + }, + "array_field_declarator": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ { - "type": "STRING", - "value": "HDC" + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } }, { "type": "STRING", - "value": "HDDEDATA" + "value": "[" }, { - "type": "STRING", - "value": "HDESK" + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "STRING", + "value": "static" + } + ] + } }, { - "type": "STRING", - "value": "HDROP" + "type": "FIELD", + "name": "size", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + { + "type": "BLANK" + } + ] + } }, { "type": "STRING", - "value": "HDWP" - }, + "value": "]" + } + ] + } + }, + "array_type_declarator": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ { - "type": "STRING", - "value": "HENHMETAFILE" + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_type_declarator" + } }, { "type": "STRING", - "value": "HFILE" + "value": "[" }, { - "type": "STRING", - "value": "HFONT" + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "STRING", + "value": "static" + } + ] + } }, { - "type": "STRING", - "value": "HGDIOBJ" + "type": "FIELD", + "name": "size", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + { + "type": "BLANK" + } + ] + } }, { "type": "STRING", - "value": "HGLOBAL" - }, + "value": "]" + } + ] + } + }, + "abstract_array_declarator": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ { - "type": "STRING", - "value": "HHOOK" + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_abstract_declarator" + }, + { + "type": "BLANK" + } + ] + } }, { "type": "STRING", - "value": "HICON" + "value": "[" }, { - "type": "STRING", - "value": "HINSTANCE" + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "STRING", + "value": "static" + } + ] + } }, { - "type": "STRING", - "value": "HKEY" + "type": "FIELD", + "name": "size", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + { + "type": "BLANK" + } + ] + } }, { "type": "STRING", - "value": "HKL" - }, - { - "type": "STRING", - "value": "HLOCAL" - }, - { - "type": "STRING", - "value": "HMENU" - }, - { - "type": "STRING", - "value": "HMETAFILE" - }, - { - "type": "STRING", - "value": "HMODULE" - }, - { - "type": "STRING", - "value": "HMONITOR" - }, - { - "type": "STRING", - "value": "HPALETTE" - }, - { - "type": "STRING", - "value": "HPEN" - }, - { - "type": "STRING", - "value": "HRESULT" - }, - { - "type": "STRING", - "value": "HRGN" - }, - { - "type": "STRING", - "value": "HRSRC" - }, - { - "type": "STRING", - "value": "HSZ" - }, - { - "type": "STRING", - "value": "HWINSTA" - }, - { - "type": "STRING", - "value": "HWND" - }, - { - "type": "STRING", - "value": "INT" - }, - { - "type": "STRING", - "value": "INT_PTR" - }, - { - "type": "STRING", - "value": "INT8" - }, - { - "type": "STRING", - "value": "INT16" - }, - { - "type": "STRING", - "value": "INT32" - }, - { - "type": "STRING", - "value": "INT64" - }, - { - "type": "STRING", - "value": "LANGID" - }, - { - "type": "STRING", - "value": "LCID" - }, - { - "type": "STRING", - "value": "LCTYPE" - }, - { - "type": "STRING", - "value": "LGRPID" - }, - { - "type": "STRING", - "value": "LONG" - }, - { - "type": "STRING", - "value": "LONGLONG" - }, - { - "type": "STRING", - "value": "LONG_PTR" - }, - { - "type": "STRING", - "value": "LONG32" - }, - { - "type": "STRING", - "value": "LONG64" - }, - { - "type": "STRING", - "value": "LPARAM" - }, - { - "type": "STRING", - "value": "LPBOOL" - }, - { - "type": "STRING", - "value": "LPBYTE" - }, - { - "type": "STRING", - "value": "LPCOLORREF" - }, - { - "type": "STRING", - "value": "LPCSTR" - }, - { - "type": "STRING", - "value": "LPCVOID" - }, - { - "type": "STRING", - "value": "LPCWSTR" - }, - { - "type": "STRING", - "value": "LPDWORD" - }, - { - "type": "STRING", - "value": "LPHANDLE" - }, - { - "type": "STRING", - "value": "LPINT" - }, - { - "type": "STRING", - "value": "LPLONG" - }, - { - "type": "STRING", - "value": "LPSTR" - }, - { - "type": "STRING", - "value": "LPTSTR" - }, - { - "type": "STRING", - "value": "LPWOID" - }, + "value": "]" + } + ] + } + }, + "init_declarator": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "initializer_list" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } + } + ] + } + ] + }, + "compound_statement": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ { "type": "STRING", - "value": "LPWORD" + "value": "{" }, { - "type": "STRING", - "value": "LPWSTR" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block_item" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + } + }, + "storage_class_specifier": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "extern" + }, + { + "type": "STRING", + "value": "static" + }, + { + "type": "STRING", + "value": "register" + }, + { + "type": "STRING", + "value": "inline" + }, + { + "type": "STRING", + "value": "__inline" + }, + { + "type": "STRING", + "value": "__inline__" + }, + { + "type": "STRING", + "value": "__forceinline" + }, + { + "type": "STRING", + "value": "thread_local" + }, + { + "type": "STRING", + "value": "__thread" + }, + { + "type": "STRING", + "value": "thread_local" + } + ] + }, + { + "type": "SYMBOL", + "name": "macro_annotation" + } + ] + }, + "type_qualifier": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "const" + }, + { + "type": "STRING", + "value": "constexpr" + }, + { + "type": "STRING", + "value": "volatile" + }, + { + "type": "STRING", + "value": "restrict" + }, + { + "type": "STRING", + "value": "__restrict__" + }, + { + "type": "STRING", + "value": "__extension__" + }, + { + "type": "STRING", + "value": "_Atomic" + }, + { + "type": "STRING", + "value": "_Noreturn" + }, + { + "type": "STRING", + "value": "noreturn" + }, + { + "type": "STRING", + "value": "_Nonnull" + }, + { + "type": "SYMBOL", + "name": "alignas_qualifier" + } + ] + }, + { + "type": "STRING", + "value": "mutable" + }, + { + "type": "STRING", + "value": "constinit" + }, + { + "type": "STRING", + "value": "consteval" + } + ] + }, + "alignas_qualifier": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "alignas" + }, + { + "type": "STRING", + "value": "_Alignas" + } + ] + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "type_descriptor" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "type_specifier": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "struct_specifier" + }, + { + "type": "SYMBOL", + "name": "union_specifier" + }, + { + "type": "SYMBOL", + "name": "enum_specifier" + }, + { + "type": "SYMBOL", + "name": "class_specifier" + }, + { + "type": "SYMBOL", + "name": "sized_type_specifier" + }, + { + "type": "SYMBOL", + "name": "primitive_type" + }, + { + "type": "SYMBOL", + "name": "template_type" + }, + { + "type": "SYMBOL", + "name": "dependent_type" + }, + { + "type": "SYMBOL", + "name": "placeholder_type_specifier" + }, + { + "type": "SYMBOL", + "name": "decltype" + }, + { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "qualified_type_identifier" + }, + "named": true, + "value": "qualified_identifier" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + } + ] + } + } + ] + }, + "sized_type_specifier": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "signed" + }, + { + "type": "STRING", + "value": "unsigned" + }, + { + "type": "STRING", + "value": "long" + }, + { + "type": "STRING", + "value": "short" + } + ] + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "SYMBOL", + "name": "primitive_type" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "signed" + }, + { + "type": "STRING", + "value": "unsigned" + }, + { + "type": "STRING", + "value": "long" + }, + { + "type": "STRING", + "value": "short" + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "signed" + }, + { + "type": "STRING", + "value": "unsigned" + }, + { + "type": "STRING", + "value": "long" + }, + { + "type": "STRING", + "value": "short" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "SYMBOL", + "name": "primitive_type" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "signed" + }, + { + "type": "STRING", + "value": "unsigned" + }, + { + "type": "STRING", + "value": "long" + }, + { + "type": "STRING", + "value": "short" + } + ] + } + } + ] + } + ] + }, + "primitive_type": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "APIENTRY" + }, + { + "type": "STRING", + "value": "ATOM" + }, + { + "type": "STRING", + "value": "BOOL" + }, + { + "type": "STRING", + "value": "BOOLEAN" + }, + { + "type": "STRING", + "value": "BYTE" + }, + { + "type": "STRING", + "value": "CCHAR" + }, + { + "type": "STRING", + "value": "CHAR" + }, + { + "type": "STRING", + "value": "COLORREF" + }, + { + "type": "STRING", + "value": "DWORD" + }, + { + "type": "STRING", + "value": "DWORDLONG" + }, + { + "type": "STRING", + "value": "DWORD_PTR" + }, + { + "type": "STRING", + "value": "DWORD32" + }, + { + "type": "STRING", + "value": "DWORD64" + }, + { + "type": "STRING", + "value": "FLOAT" + }, + { + "type": "STRING", + "value": "HACCEL" + }, + { + "type": "STRING", + "value": "HALF_PTR" + }, + { + "type": "STRING", + "value": "HANDLE" + }, + { + "type": "STRING", + "value": "HBITMAP" + }, + { + "type": "STRING", + "value": "HBRUSH" + }, + { + "type": "STRING", + "value": "HCOLORSPACE" + }, + { + "type": "STRING", + "value": "HCONV" + }, + { + "type": "STRING", + "value": "HCONVLIST" + }, + { + "type": "STRING", + "value": "HCURSOR" + }, + { + "type": "STRING", + "value": "HDC" + }, + { + "type": "STRING", + "value": "HDDEDATA" + }, + { + "type": "STRING", + "value": "HDESK" + }, + { + "type": "STRING", + "value": "HDROP" + }, + { + "type": "STRING", + "value": "HDWP" + }, + { + "type": "STRING", + "value": "HENHMETAFILE" + }, + { + "type": "STRING", + "value": "HFILE" + }, + { + "type": "STRING", + "value": "HFONT" + }, + { + "type": "STRING", + "value": "HGDIOBJ" + }, + { + "type": "STRING", + "value": "HGLOBAL" + }, + { + "type": "STRING", + "value": "HHOOK" + }, + { + "type": "STRING", + "value": "HICON" + }, + { + "type": "STRING", + "value": "HINSTANCE" + }, + { + "type": "STRING", + "value": "HKEY" + }, + { + "type": "STRING", + "value": "HKL" + }, + { + "type": "STRING", + "value": "HLOCAL" + }, + { + "type": "STRING", + "value": "HMENU" + }, + { + "type": "STRING", + "value": "HMETAFILE" + }, + { + "type": "STRING", + "value": "HMODULE" + }, + { + "type": "STRING", + "value": "HMONITOR" + }, + { + "type": "STRING", + "value": "HPALETTE" + }, + { + "type": "STRING", + "value": "HPEN" + }, + { + "type": "STRING", + "value": "HRESULT" + }, + { + "type": "STRING", + "value": "HRGN" + }, + { + "type": "STRING", + "value": "HRSRC" + }, + { + "type": "STRING", + "value": "HSZ" + }, + { + "type": "STRING", + "value": "HWINSTA" + }, + { + "type": "STRING", + "value": "HWND" + }, + { + "type": "STRING", + "value": "INT" + }, + { + "type": "STRING", + "value": "INT_PTR" + }, + { + "type": "STRING", + "value": "INT8" + }, + { + "type": "STRING", + "value": "INT16" + }, + { + "type": "STRING", + "value": "INT32" + }, + { + "type": "STRING", + "value": "INT64" + }, + { + "type": "STRING", + "value": "LANGID" + }, + { + "type": "STRING", + "value": "LCID" + }, + { + "type": "STRING", + "value": "LCTYPE" + }, + { + "type": "STRING", + "value": "LGRPID" + }, + { + "type": "STRING", + "value": "LONG" + }, + { + "type": "STRING", + "value": "LONGLONG" + }, + { + "type": "STRING", + "value": "LONG_PTR" + }, + { + "type": "STRING", + "value": "LONG32" + }, + { + "type": "STRING", + "value": "LONG64" + }, + { + "type": "STRING", + "value": "LPARAM" + }, + { + "type": "STRING", + "value": "LPBOOL" + }, + { + "type": "STRING", + "value": "LPBYTE" + }, + { + "type": "STRING", + "value": "LPCOLORREF" + }, + { + "type": "STRING", + "value": "LPCSTR" + }, + { + "type": "STRING", + "value": "LPCVOID" + }, + { + "type": "STRING", + "value": "LPCWSTR" + }, + { + "type": "STRING", + "value": "LPDWORD" + }, + { + "type": "STRING", + "value": "LPHANDLE" + }, + { + "type": "STRING", + "value": "LPINT" + }, + { + "type": "STRING", + "value": "LPLONG" + }, + { + "type": "STRING", + "value": "LPSTR" + }, + { + "type": "STRING", + "value": "LPTSTR" + }, + { + "type": "STRING", + "value": "LPWOID" + }, + { + "type": "STRING", + "value": "LPWORD" + }, + { + "type": "STRING", + "value": "LPWSTR" }, { "type": "STRING", @@ -4092,393 +5733,4459 @@ }, { "type": "STRING", - "value": "SERVICE_STATUS_HANDLE" + "value": "SERVICE_STATUS_HANDLE" + }, + { + "type": "STRING", + "value": "SHORT" + }, + { + "type": "STRING", + "value": "SIZE_T" + }, + { + "type": "STRING", + "value": "SSIZE_T" + }, + { + "type": "STRING", + "value": "TBYTE" + }, + { + "type": "STRING", + "value": "TCHAR" + }, + { + "type": "STRING", + "value": "UCHAR" + }, + { + "type": "STRING", + "value": "UHALF_PTR" + }, + { + "type": "STRING", + "value": "UINT" + }, + { + "type": "STRING", + "value": "UINT_PTR" + }, + { + "type": "STRING", + "value": "UINT8" + }, + { + "type": "STRING", + "value": "UINT16" + }, + { + "type": "STRING", + "value": "UINT32" + }, + { + "type": "STRING", + "value": "UINT64" + }, + { + "type": "STRING", + "value": "ULONG" + }, + { + "type": "STRING", + "value": "ULONGLONG" + }, + { + "type": "STRING", + "value": "ULONG_PTR" + }, + { + "type": "STRING", + "value": "ULONG32" + }, + { + "type": "STRING", + "value": "ULONG64" + }, + { + "type": "STRING", + "value": "UNICODE_STRING" + }, + { + "type": "STRING", + "value": "USHORT" + }, + { + "type": "STRING", + "value": "USN" + }, + { + "type": "STRING", + "value": "VOID" + }, + { + "type": "STRING", + "value": "WCHAR" + }, + { + "type": "STRING", + "value": "WORD" + }, + { + "type": "STRING", + "value": "WPARAM" + }, + { + "type": "STRING", + "value": "bool" + }, + { + "type": "STRING", + "value": "char" + }, + { + "type": "STRING", + "value": "int" + }, + { + "type": "STRING", + "value": "float" + }, + { + "type": "STRING", + "value": "double" + }, + { + "type": "STRING", + "value": "void" + }, + { + "type": "STRING", + "value": "size_t" + }, + { + "type": "STRING", + "value": "ssize_t" + }, + { + "type": "STRING", + "value": "intptr_t" + }, + { + "type": "STRING", + "value": "uintptr_t" + }, + { + "type": "STRING", + "value": "charptr_t" + }, + { + "type": "STRING", + "value": "intmax_t" + }, + { + "type": "STRING", + "value": "intptr_t" + }, + { + "type": "STRING", + "value": "uintmax_t" + }, + { + "type": "STRING", + "value": "uintptr_t" + }, + { + "type": "STRING", + "value": "ptrdiff_t" + }, + { + "type": "STRING", + "value": "max_align_t" + }, + { + "type": "STRING", + "value": "wchar_t" + }, + { + "type": "STRING", + "value": "sig_atomic_t" + }, + { + "type": "STRING", + "value": "int8_t" + }, + { + "type": "STRING", + "value": "int16_t" + }, + { + "type": "STRING", + "value": "int32_t" + }, + { + "type": "STRING", + "value": "int64_t" + }, + { + "type": "STRING", + "value": "uint8_t" + }, + { + "type": "STRING", + "value": "uint16_t" + }, + { + "type": "STRING", + "value": "uint32_t" + }, + { + "type": "STRING", + "value": "uint64_t" + }, + { + "type": "STRING", + "value": "char8_t" + }, + { + "type": "STRING", + "value": "char16_t" + }, + { + "type": "STRING", + "value": "char32_t" }, { "type": "STRING", - "value": "SHORT" + "value": "char64_t" }, { "type": "STRING", - "value": "SIZE_T" + "value": "int_fast8_t" }, { "type": "STRING", - "value": "SSIZE_T" + "value": "int_fast16_t" }, { "type": "STRING", - "value": "TBYTE" + "value": "int_fast32_t" }, { "type": "STRING", - "value": "TCHAR" + "value": "int_fast64_t" }, { "type": "STRING", - "value": "UCHAR" + "value": "int_least8_t" }, { "type": "STRING", - "value": "UHALF_PTR" + "value": "int_least16_t" }, { "type": "STRING", - "value": "UINT" + "value": "int_least32_t" }, { "type": "STRING", - "value": "UINT_PTR" + "value": "int_least64_t" }, { "type": "STRING", - "value": "UINT8" + "value": "uint_fast8_t" }, { "type": "STRING", - "value": "UINT16" + "value": "uint_fast16_t" }, { "type": "STRING", - "value": "UINT32" + "value": "uint_fast32_t" }, { "type": "STRING", - "value": "UINT64" + "value": "uint_fast64_t" }, { "type": "STRING", - "value": "ULONG" + "value": "uint_least8_t" }, { "type": "STRING", - "value": "ULONGLONG" + "value": "uint_least16_t" }, { "type": "STRING", - "value": "ULONG_PTR" + "value": "uint_least32_t" }, { "type": "STRING", - "value": "ULONG32" - }, + "value": "uint_least64_t" + } + ] + } + }, + "enum_specifier": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ { "type": "STRING", - "value": "ULONG64" + "value": "enum" }, { - "type": "STRING", - "value": "UNICODE_STRING" + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "class" + }, + { + "type": "STRING", + "value": "struct" + } + ] + }, + { + "type": "BLANK" + } + ] }, { - "type": "STRING", - "value": "USHORT" + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_class_name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_enum_base_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "enumerator_list" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "enumerator_list" + } + } + ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "enumerator_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "enumerator" + }, + { + "type": "STRING", + "value": "," + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_if_in_enumerator_list" + }, + "named": true, + "value": "preproc_if" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_ifdef_in_enumerator_list" + }, + "named": true, + "value": "preproc_ifdef" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_call" + }, + { + "type": "STRING", + "value": "," + } + ] + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "enumerator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_if_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_if" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_ifdef_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_ifdef" + }, + { + "type": "SYMBOL", + "name": "preproc_call" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "struct_specifier": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ { "type": "STRING", - "value": "USN" + "value": "struct" }, { - "type": "STRING", - "value": "VOID" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "macro_annotation" + }, + { + "type": "BLANK" + } + ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_class_name" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_class_name" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "virtual_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "base_class_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "field_declaration_list" + } + } + ] + } + ] + } + ] + } + }, + "union_specifier": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "union" + }, + { + "type": "SYMBOL", + "name": "_class_declaration" + } + ] + }, + "field_declaration_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_field_declaration_list_item" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_field_declaration_list_item": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "field_declaration" + }, + { + "type": "SYMBOL", + "name": "preproc_def" + }, + { + "type": "SYMBOL", + "name": "preproc_function_def" + }, + { + "type": "SYMBOL", + "name": "preproc_call" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_if_in_field_declaration_list" + }, + "named": true, + "value": "preproc_if" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_ifdef_in_field_declaration_list" + }, + "named": true, + "value": "preproc_ifdef" + } + ] + }, + { + "type": "SYMBOL", + "name": "template_declaration" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "inline_method_definition" + }, + "named": true, + "value": "function_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "constructor_or_destructor_definition" + }, + "named": true, + "value": "function_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "constructor_or_destructor_declaration" + }, + "named": true, + "value": "declaration" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "operator_cast_definition" + }, + "named": true, + "value": "function_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "operator_cast_declaration" + }, + "named": true, + "value": "declaration" + }, + { + "type": "SYMBOL", + "name": "friend_declaration" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "access_specifier" + }, + { + "type": "STRING", + "value": ":" + } + ] + }, + { + "type": "SYMBOL", + "name": "alias_declaration" + }, + { + "type": "SYMBOL", + "name": "using_declaration" + }, + { + "type": "SYMBOL", + "name": "type_definition" + }, + { + "type": "SYMBOL", + "name": "static_assert_declaration" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "SYMBOL", + "name": "macro_statement" + } + ] + }, + "field_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "bitfield_clause" + }, + { + "type": "FIELD", + "name": "default_value", + "content": { + "type": "SYMBOL", + "name": "initializer_list" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "default_value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "bitfield_clause" + }, + { + "type": "FIELD", + "name": "default_value", + "content": { + "type": "SYMBOL", + "name": "initializer_list" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "default_value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "_field_declaration_declarator": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "bitfield_clause" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "bitfield_clause" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + } + ] + }, + "bitfield_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "enumerator": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "variadic_parameter": { + "type": "STRING", + "value": "..." + }, + "parameter_list": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "optional_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter_declaration" + }, + { + "type": "STRING", + "value": "..." + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "optional_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter_declaration" + }, + { + "type": "STRING", + "value": "..." + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "macro_annotation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_old_style_parameter_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "parameter_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "SYMBOL", + "name": "_abstract_declarator" + } + ] + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_specifier" + } + } + ] + }, + "attributed_statement": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "attribute_declaration" + } + }, + { + "type": "SYMBOL", + "name": "statement" + } + ] + }, + "statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "case_statement" + }, + { + "type": "SYMBOL", + "name": "_non_case_statement" + } + ] + }, + "_non_case_statement": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributed_statement" + }, + { + "type": "SYMBOL", + "name": "labeled_statement" + }, + { + "type": "SYMBOL", + "name": "compound_statement" + }, + { + "type": "SYMBOL", + "name": "expression_statement" + }, + { + "type": "SYMBOL", + "name": "if_statement" + }, + { + "type": "SYMBOL", + "name": "switch_statement" + }, + { + "type": "SYMBOL", + "name": "do_statement" + }, + { + "type": "SYMBOL", + "name": "while_statement" + }, + { + "type": "SYMBOL", + "name": "for_statement" + }, + { + "type": "SYMBOL", + "name": "return_statement" + }, + { + "type": "SYMBOL", + "name": "break_statement" + }, + { + "type": "SYMBOL", + "name": "continue_statement" + }, + { + "type": "SYMBOL", + "name": "goto_statement" + }, + { + "type": "SYMBOL", + "name": "seh_try_statement" + }, + { + "type": "SYMBOL", + "name": "seh_leave_statement" + } + ] + }, + { + "type": "SYMBOL", + "name": "co_return_statement" + }, + { + "type": "SYMBOL", + "name": "co_yield_statement" + }, + { + "type": "SYMBOL", + "name": "for_range_loop" + }, + { + "type": "SYMBOL", + "name": "try_statement" + }, + { + "type": "SYMBOL", + "name": "throw_statement" + } + ] + }, + "_top_level_statement": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "case_statement" + }, + { + "type": "SYMBOL", + "name": "attributed_statement" + }, + { + "type": "SYMBOL", + "name": "labeled_statement" + }, + { + "type": "SYMBOL", + "name": "compound_statement" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_top_level_expression_statement" + }, + "named": true, + "value": "expression_statement" + }, + { + "type": "SYMBOL", + "name": "if_statement" + }, + { + "type": "SYMBOL", + "name": "switch_statement" + }, + { + "type": "SYMBOL", + "name": "do_statement" + }, + { + "type": "SYMBOL", + "name": "while_statement" + }, + { + "type": "SYMBOL", + "name": "for_statement" + }, + { + "type": "SYMBOL", + "name": "return_statement" + }, + { + "type": "SYMBOL", + "name": "break_statement" + }, + { + "type": "SYMBOL", + "name": "continue_statement" + }, + { + "type": "SYMBOL", + "name": "goto_statement" + } + ] + }, + { + "type": "SYMBOL", + "name": "co_return_statement" + }, + { + "type": "SYMBOL", + "name": "co_yield_statement" + }, + { + "type": "SYMBOL", + "name": "for_range_loop" + }, + { + "type": "SYMBOL", + "name": "try_statement" + }, + { + "type": "SYMBOL", + "name": "throw_statement" + } + ] + }, + "labeled_statement": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "_statement_identifier" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "statement" + } + ] + } + ] + }, + "_top_level_expression_statement": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression_not_binary" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "expression_statement": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "if_statement": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ { "type": "STRING", - "value": "WCHAR" + "value": "if" }, { - "type": "STRING", - "value": "WORD" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "constexpr" + }, + { + "type": "BLANK" + } + ] }, { - "type": "STRING", - "value": "WPARAM" + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "condition_clause" + } }, { - "type": "STRING", - "value": "bool" + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "statement" + } }, { - "type": "STRING", - "value": "char" - }, + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "else_clause" + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "else_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "else" + }, + { + "type": "SYMBOL", + "name": "statement" + } + ] + }, + "switch_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "switch" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "condition_clause" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, + "case_statement": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ { - "type": "STRING", - "value": "int" + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "case" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "STRING", + "value": "default" + } + ] }, { "type": "STRING", - "value": "float" + "value": ":" }, { - "type": "STRING", - "value": "double" - }, + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_non_case_statement" + }, + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "type_definition" + } + ] + } + } + ] + } + }, + "while_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "while" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "condition_clause" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + ] + }, + "do_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "do" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + }, + { + "type": "STRING", + "value": "while" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "for_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_for_statement_body" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + ] + }, + "_for_statement_body": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ { - "type": "STRING", - "value": "void" + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "initializer", + "content": { + "type": "SYMBOL", + "name": "declaration" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "initializer", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": ";" + } + ] + } + ] }, { - "type": "STRING", - "value": "size_t" + "type": "FIELD", + "name": "condition", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } }, { "type": "STRING", - "value": "ssize_t" + "value": ";" }, { - "type": "STRING", - "value": "intptr_t" - }, + "type": "FIELD", + "name": "update", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + }, + "return_statement": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "return" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "return" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + }, + { + "type": "STRING", + "value": ";" + } + ] + } + ] + } + ] + }, + "break_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "break" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "continue_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "continue" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "goto_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "goto" + }, + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "_statement_identifier" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "seh_try_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "__try" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "seh_except_clause" + }, + { + "type": "SYMBOL", + "name": "seh_finally_clause" + } + ] + } + ] + }, + "seh_except_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "__except" + }, + { + "type": "FIELD", + "name": "filter", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, + "seh_finally_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "__finally" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, + "seh_leave_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "__leave" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression_not_binary" + }, + { + "type": "SYMBOL", + "name": "binary_expression" + } + ] + }, + "_expression_not_binary": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "conditional_expression" + }, + { + "type": "SYMBOL", + "name": "assignment_expression" + }, + { + "type": "SYMBOL", + "name": "unary_expression" + }, + { + "type": "SYMBOL", + "name": "update_expression" + }, + { + "type": "SYMBOL", + "name": "cast_expression" + }, + { + "type": "SYMBOL", + "name": "pointer_expression" + }, + { + "type": "SYMBOL", + "name": "sizeof_expression" + }, + { + "type": "SYMBOL", + "name": "alignof_expression" + }, + { + "type": "SYMBOL", + "name": "offsetof_expression" + }, + { + "type": "SYMBOL", + "name": "generic_expression" + }, + { + "type": "SYMBOL", + "name": "subscript_expression" + }, + { + "type": "SYMBOL", + "name": "call_expression" + }, + { + "type": "SYMBOL", + "name": "field_expression" + }, + { + "type": "SYMBOL", + "name": "compound_literal_expression" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "number_literal" + }, + { + "type": "SYMBOL", + "name": "_string" + }, + { + "type": "SYMBOL", + "name": "true" + }, + { + "type": "SYMBOL", + "name": "false" + }, + { + "type": "SYMBOL", + "name": "null" + }, + { + "type": "SYMBOL", + "name": "char_literal" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "gnu_asm_expression" + }, + { + "type": "SYMBOL", + "name": "extension_expression" + } + ] + }, + { + "type": "SYMBOL", + "name": "co_await_expression" + }, + { + "type": "SYMBOL", + "name": "requires_expression" + }, + { + "type": "SYMBOL", + "name": "requires_clause" + }, + { + "type": "SYMBOL", + "name": "template_function" + }, + { + "type": "SYMBOL", + "name": "qualified_identifier" + }, + { + "type": "SYMBOL", + "name": "new_expression" + }, + { + "type": "SYMBOL", + "name": "delete_expression" + }, + { + "type": "SYMBOL", + "name": "lambda_expression" + }, + { + "type": "SYMBOL", + "name": "parameter_pack_expansion" + }, + { + "type": "SYMBOL", + "name": "this" + }, + { + "type": "SYMBOL", + "name": "user_defined_literal" + }, + { + "type": "SYMBOL", + "name": "fold_expression" + } + ] + }, + "_string": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "raw_string_literal" + }, + { + "type": "SYMBOL", + "name": "concatenated_string" + } + ] + }, + "comma_expression": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + } + } + ] + }, + "conditional_expression": { + "type": "PREC_RIGHT", + "value": -1, + "content": { + "type": "SEQ", + "members": [ { - "type": "STRING", - "value": "uintptr_t" + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } }, { "type": "STRING", - "value": "charptr_t" + "value": "?" }, { - "type": "STRING", - "value": "intmax_t" + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + } + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", - "value": "intptr_t" + "value": ":" }, { - "type": "STRING", - "value": "uintmax_t" - }, + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "_assignment_left_expression": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "call_expression" + }, + { + "type": "SYMBOL", + "name": "field_expression" + }, + { + "type": "SYMBOL", + "name": "pointer_expression" + }, + { + "type": "SYMBOL", + "name": "subscript_expression" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + ] + }, + { + "type": "SYMBOL", + "name": "qualified_identifier" + }, + { + "type": "SYMBOL", + "name": "user_defined_literal" + } + ] + }, + "assignment_expression": { + "type": "PREC_RIGHT", + "value": -2, + "content": { + "type": "SEQ", + "members": [ { - "type": "STRING", - "value": "uintptr_t" + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_assignment_left_expression" + } }, { - "type": "STRING", - "value": "ptrdiff_t" + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "%=" + }, + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "<<=" + }, + { + "type": "STRING", + "value": ">>=" + }, + { + "type": "STRING", + "value": "&=" + }, + { + "type": "STRING", + "value": "^=" + }, + { + "type": "STRING", + "value": "|=" + }, + { + "type": "STRING", + "value": "and_eq" + }, + { + "type": "STRING", + "value": "or_eq" + }, + { + "type": "STRING", + "value": "xor_eq" + } + ] + } }, { - "type": "STRING", - "value": "max_align_t" - }, + "type": "FIELD", + "name": "right", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } + } + ] + } + }, + "pointer_expression": { + "type": "PREC_LEFT", + "value": 12, + "content": { + "type": "SEQ", + "members": [ { - "type": "STRING", - "value": "wchar_t" + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "&" + } + ] + } }, { - "type": "STRING", - "value": "sig_atomic_t" - }, + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "unary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 14, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "~" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + } + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 14, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "not" + }, + { + "type": "STRING", + "value": "compl" + } + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + } + ] + }, + "binary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "+" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "*" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "/" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "%" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "||" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "|" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "^" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 5, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "==" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "!=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + } + ] + }, + { + "type": "PREC_LEFT", + "value": 8, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "or" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "and" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "bitor" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "xor" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 5, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "bitand" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "not_eq" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + } + ] + }, + "update_expression": { + "type": "PREC_RIGHT", + "value": 14, + "content": { + "type": "CHOICE", + "members": [ { - "type": "STRING", - "value": "int8_t" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "--" + }, + { + "type": "STRING", + "value": "++" + } + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] }, { - "type": "STRING", - "value": "int16_t" - }, + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "--" + }, + { + "type": "STRING", + "value": "++" + } + ] + } + } + ] + } + ] + } + }, + "cast_expression": { + "type": "PREC", + "value": 12, + "content": { + "type": "SEQ", + "members": [ { "type": "STRING", - "value": "int32_t" + "value": "(" }, { - "type": "STRING", - "value": "int64_t" + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } }, { "type": "STRING", - "value": "uint8_t" + "value": ")" }, { - "type": "STRING", - "value": "uint16_t" - }, + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "type_descriptor": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ { - "type": "STRING", - "value": "uint32_t" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } }, { - "type": "STRING", - "value": "uint64_t" + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_specifier" + } }, { - "type": "STRING", - "value": "char8_t" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } }, { - "type": "STRING", - "value": "char16_t" - }, + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_abstract_declarator" + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + }, + "sizeof_expression": { + "type": "PREC_RIGHT", + "value": 13, + "content": { + "type": "CHOICE", + "members": [ { - "type": "STRING", - "value": "char32_t" + "type": "PREC", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "sizeof" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + } + ] + } }, { - "type": "STRING", - "value": "char64_t" - }, + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "sizeof" + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + } + }, + "alignof_expression": { + "type": "PREC", + "value": 13, + "content": { + "type": "SEQ", + "members": [ { - "type": "STRING", - "value": "int_fast8_t" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__alignof__" + }, + { + "type": "STRING", + "value": "__alignof" + }, + { + "type": "STRING", + "value": "_alignof" + }, + { + "type": "STRING", + "value": "alignof" + }, + { + "type": "STRING", + "value": "_Alignof" + } + ] }, { - "type": "STRING", - "value": "int_fast16_t" - }, + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + } + }, + "offsetof_expression": { + "type": "PREC", + "value": 8, + "content": { + "type": "SEQ", + "members": [ { "type": "STRING", - "value": "int_fast32_t" + "value": "offsetof" }, { - "type": "STRING", - "value": "int_fast64_t" - }, + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "member", + "content": { + "type": "SYMBOL", + "name": "_field_identifier" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + } + }, + "generic_expression": { + "type": "PREC", + "value": 15, + "content": { + "type": "SEQ", + "members": [ { "type": "STRING", - "value": "int_least8_t" + "value": "_Generic" }, { "type": "STRING", - "value": "int_least16_t" + "value": "(" }, { - "type": "STRING", - "value": "int_least32_t" + "type": "SYMBOL", + "name": "expression" }, { "type": "STRING", - "value": "int_least64_t" + "value": "," }, { - "type": "STRING", - "value": "uint_fast8_t" + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_descriptor" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_descriptor" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + ] + } + } + ] }, { "type": "STRING", - "value": "uint_fast16_t" - }, + "value": ")" + } + ] + } + }, + "subscript_expression": { + "type": "PREC", + "value": 17, + "content": { + "type": "SEQ", + "members": [ { - "type": "STRING", - "value": "uint_fast32_t" + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } }, { - "type": "STRING", - "value": "uint_fast64_t" - }, + "type": "FIELD", + "name": "indices", + "content": { + "type": "SYMBOL", + "name": "subscript_argument_list" + } + } + ] + } + }, + "call_expression": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "argument_list" + } + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "SYMBOL", + "name": "primitive_type" + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "argument_list" + } + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "_call_macro_with_decl_first_arg" + } + ] + }, + "gnu_asm_expression": { + "type": "PREC", + "value": 15, + "content": { + "type": "SEQ", + "members": [ { - "type": "STRING", - "value": "uint_least8_t" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "asm" + }, + { + "type": "STRING", + "value": "__asm__" + }, + { + "type": "STRING", + "value": "__asm" + } + ] }, { - "type": "STRING", - "value": "uint_least16_t" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_qualifier" + } }, { "type": "STRING", - "value": "uint_least32_t" + "value": "(" }, { - "type": "STRING", - "value": "uint_least64_t" - } - ] - } - }, - "enum_specifier": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "enum" + "type": "FIELD", + "name": "assembly_code", + "content": { + "type": "SYMBOL", + "name": "_string" + } }, { "type": "CHOICE", "members": [ { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "STRING", - "value": "class" + "type": "FIELD", + "name": "output_operands", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_output_operand_list" + } }, { - "type": "STRING", - "value": "struct" + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "input_operands", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_input_operand_list" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "clobbers", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_clobber_list" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "goto_labels", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_goto_list" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "gnu_asm_qualifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "volatile" + }, + { + "type": "STRING", + "value": "__volatile__" + }, + { + "type": "STRING", + "value": "inline" + }, + { + "type": "STRING", + "value": "goto" + } + ] + }, + "gnu_asm_output_operand_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operand", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_output_operand" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "operand", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_output_operand" + } + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "gnu_asm_output_operand": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "FIELD", + "name": "symbol", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "constraint", + "content": { + "type": "SYMBOL", + "name": "string_literal" + } + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "gnu_asm_input_operand_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operand", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_input_operand" } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_class_name" - } - }, - { - "type": "CHOICE", + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_enum_base_clause" + "type": "STRING", + "value": "," }, { - "type": "BLANK" + "type": "FIELD", + "name": "operand", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_input_operand" + } } ] - }, - { - "type": "CHOICE", + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "gnu_asm_input_operand": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "FIELD", + "name": "symbol", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "constraint", + "content": { + "type": "SYMBOL", + "name": "string_literal" + } + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "gnu_asm_clobber_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "register", + "content": { + "type": "SYMBOL", + "name": "_string" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", "members": [ + { + "type": "STRING", + "value": "," + }, { "type": "FIELD", - "name": "body", + "name": "register", "content": { "type": "SYMBOL", - "name": "enumerator_list" + "name": "_string" } + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "gnu_asm_goto_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," }, { - "type": "BLANK" + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "identifier" + } } ] } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "enumerator_list" } - } - ] - } - ] - } + ] + }, + { + "type": "BLANK" + } + ] + } + ] }, - "enumerator_list": { + "extension_expression": { "type": "SEQ", "members": [ { "type": "STRING", - "value": "{" + "value": "__extension__" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "argument_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" }, { "type": "CHOICE", @@ -4487,8 +10194,21 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "enumerator" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + }, + { + "type": "SYMBOL", + "name": "compound_statement" + } + ] }, { "type": "REPEAT", @@ -4500,8 +10220,21 @@ "value": "," }, { - "type": "SYMBOL", - "name": "enumerator" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + }, + { + "type": "SYMBOL", + "name": "compound_statement" + } + ] } ] } @@ -4513,1011 +10246,1578 @@ } ] }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - }, { "type": "STRING", - "value": "}" + "value": ")" } ] }, - "struct_specifier": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "struct" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "macro_annotation" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", + "field_expression": { + "type": "SEQ", + "members": [ + { + "type": "PREC", + "value": 16, + "content": { + "type": "SEQ", "members": [ { "type": "FIELD", - "name": "name", + "name": "argument", "content": { "type": "SYMBOL", - "name": "_class_name" + "name": "expression" } }, { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_class_name" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "virtual_specifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "base_class_clause" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "field_declaration_list" + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": ".*" + }, + { + "type": "STRING", + "value": "->" } - } - ] + ] + } } ] } - ] - } - }, - "union_specifier": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "union" - }, - { + }, + { + "type": "FIELD", + "name": "field", + "content": { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "ms_declspec_modifier" + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "_field_identifier" + } }, { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "name", + "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_class_name" - } + "name": "qualified_field_identifier" + }, + "named": true, + "value": "qualified_identifier" }, { - "type": "SEQ", + "type": "SYMBOL", + "name": "destructor_name" + }, + { + "type": "SYMBOL", + "name": "template_method" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "dependent_field_identifier" + }, + "named": true, + "value": "dependent_name" + } + ] + } + } + ] + }, + "compound_literal_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "initializer_list" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_class_name" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "virtual_specifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "base_class_clause" - }, - { - "type": "BLANK" - } - ] + { + "type": "SYMBOL", + "name": "_class_name" }, { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "field_declaration_list" - } + "type": "SYMBOL", + "name": "primitive_type" } ] } - ] - } - ] - } - }, - "field_declaration_list": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_field_declaration_list_item" - } - }, - { - "type": "STRING", - "value": "}" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "initializer_list" + } + } + ] } ] }, - "_field_declaration_list_item": { + "parenthesized_expression": { "type": "CHOICE", "members": [ { - "type": "CHOICE", + "type": "SEQ", "members": [ + { + "type": "STRING", + "value": "(" + }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "field_declaration" - }, - { - "type": "SYMBOL", - "name": "preproc_def" + "name": "expression" }, { "type": "SYMBOL", - "name": "preproc_function_def" + "name": "comma_expression" }, { "type": "SYMBOL", - "name": "preproc_call" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "preproc_if_in_field_declaration_list" - }, - "named": true, - "value": "preproc_if" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "preproc_ifdef_in_field_declaration_list" - }, - "named": true, - "value": "preproc_ifdef" + "name": "compound_statement" } ] }, { - "type": "SYMBOL", - "name": "template_declaration" - }, + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SEQ", + "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "inline_method_definition" - }, - "named": true, - "value": "function_definition" + "type": "STRING", + "value": "(" }, { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "constructor_or_destructor_definition" + "name": "_assignment_expression_lhs" }, "named": true, - "value": "function_definition" + "value": "assignment_expression" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constructor_or_destructor_declaration" - }, - "named": true, - "value": "declaration" - }, + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + "initializer_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "operator_cast_definition" - }, - "named": true, - "value": "function_definition" + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "initializer_pair" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "initializer_pair" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } + ] + } + } + ] }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "operator_cast_declaration" - }, - "named": true, - "value": "declaration" - }, + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ { - "type": "SYMBOL", - "name": "friend_declaration" + "type": "STRING", + "value": "," }, { - "type": "SYMBOL", - "name": "access_specifier" + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "initializer_pair": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "designator", + "content": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subscript_designator" + }, + { + "type": "SYMBOL", + "name": "field_designator" + }, + { + "type": "SYMBOL", + "name": "subscript_range_designator" + } + ] + } + } }, { - "type": "SYMBOL", - "name": "alias_declaration" + "type": "STRING", + "value": "=" }, { - "type": "SYMBOL", - "name": "using_declaration" + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "designator", + "content": { + "type": "SYMBOL", + "name": "_field_identifier" + } }, { - "type": "SYMBOL", - "name": "type_definition" + "type": "STRING", + "value": ":" }, { - "type": "SYMBOL", - "name": "static_assert_declaration" + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } } ] + } + ] + }, + "subscript_designator": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" }, { "type": "SYMBOL", - "name": "macro_statement" + "name": "expression" + }, + { + "type": "STRING", + "value": "]" } ] }, - "field_declaration": { + "subscript_range_designator": { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_declaration_specifiers" + "type": "STRING", + "value": "[" }, { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "_field_declarator" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", + "type": "FIELD", + "name": "start", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "FIELD", + "name": "end", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "field_designator": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "_field_identifier" + } + ] + }, + "number_literal": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[-\\+]" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0b" + }, + { + "type": "STRING", + "value": "0B" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[01]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[01]" + } + } + ] + } + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[1-9]" + }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0x" + }, + { + "type": "STRING", + "value": "0X" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + } + ] + } + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "0" + }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[0-7]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-7]" + } + } + ] + } + } + ] + } + ] + }, + { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "," + "type": "PATTERN", + "value": "(ll|LL)[uU]?|[uU](ll|LL)?|[uU][lL]?|[uU][zZ]?|[lL][uU]?|[zZ][uU]?" }, { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "_field_declarator" - } + "type": "BLANK" } ] } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "bitfield_clause" - }, - { - "type": "FIELD", - "name": "default_value", - "content": { - "type": "SYMBOL", - "name": "initializer_list" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "default_value", - "content": { - "type": "CHOICE", + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[eE]" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[-\\+]" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + } + ] + } + } + ] + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[eE]" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[-\\+]" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + } + ] + } + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_expression" + "type": "STRING", + "value": "." }, { - "type": "SYMBOL", - "name": "initializer_list" + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[eE]" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[-\\+]" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + } + ] + } + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] } ] - } - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ";" - } - ] - }, - "bitfield_clause": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - }, - "enumerator": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "variadic_parameter": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "..." - } - ] - }, - "parameter_list": { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "parameter_declaration" - }, - { - "type": "SYMBOL", - "name": "optional_parameter_declaration" - }, - { - "type": "SYMBOL", - "name": "variadic_parameter_declaration" - }, - { - "type": "STRING", - "value": "..." - } - ] - }, - { - "type": "REPEAT", - "content": { + }, + { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "," + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0x" + }, + { + "type": "STRING", + "value": "0X" + } + ] }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "parameter_declaration" - }, - { - "type": "SYMBOL", - "name": "optional_parameter_declaration" + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + } + ] + } + } + ] + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[pP]" }, { - "type": "SYMBOL", - "name": "variadic_parameter_declaration" + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[-\\+]" + }, + { + "type": "BLANK" + } + ] }, { - "type": "STRING", - "value": "..." + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + } + ] + } + } + ] } ] } ] } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "macro_annotation" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "parameter_declaration": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_declaration_specifiers" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_declarator" + ] }, { - "type": "SYMBOL", - "name": "_abstract_declarator" + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "([fF](16|32|64|128)?)|[lL]|(bf16|BF16)" + }, + { + "type": "BLANK" + } + ] } ] } - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "attributed_statement": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "attribute_declaration" + ] } - }, - { - "type": "SYMBOL", - "name": "_statement" - } - ] - }, - "_statement": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "case_statement" - }, - { - "type": "SYMBOL", - "name": "_non_case_statement" - } - ] + ] + } }, - "_non_case_statement": { - "type": "CHOICE", + "char_literal": { + "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "attributed_statement" - }, - { - "type": "SYMBOL", - "name": "labeled_statement" - }, - { - "type": "SYMBOL", - "name": "compound_statement" - }, - { - "type": "SYMBOL", - "name": "expression_statement" + "type": "STRING", + "value": "L'" }, { - "type": "SYMBOL", - "name": "if_statement" + "type": "STRING", + "value": "u'" }, { - "type": "SYMBOL", - "name": "switch_statement" + "type": "STRING", + "value": "U'" }, { - "type": "SYMBOL", - "name": "do_statement" + "type": "STRING", + "value": "u8'" }, { - "type": "SYMBOL", - "name": "while_statement" - }, + "type": "STRING", + "value": "'" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "escape_sequence" + }, + { + "type": "ALIAS", + "content": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[^\\n']" + } + }, + "named": true, + "value": "character" + } + ] + } + }, + { + "type": "STRING", + "value": "'" + } + ] + }, + "concatenated_string": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "raw_string_literal" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "raw_string_literal" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "raw_string_literal" + } + ] + } + } + ] + } + }, + "string_literal": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ { - "type": "SYMBOL", - "name": "for_statement" + "type": "STRING", + "value": "L\"" }, { - "type": "SYMBOL", - "name": "return_statement" + "type": "STRING", + "value": "u\"" }, { - "type": "SYMBOL", - "name": "break_statement" + "type": "STRING", + "value": "U\"" }, { - "type": "SYMBOL", - "name": "continue_statement" + "type": "STRING", + "value": "u8\"" }, { - "type": "SYMBOL", - "name": "goto_statement" + "type": "STRING", + "value": "\"" } ] }, { - "type": "SYMBOL", - "name": "co_return_statement" - }, - { - "type": "SYMBOL", - "name": "co_yield_statement" - }, - { - "type": "SYMBOL", - "name": "for_range_loop" - }, - { - "type": "SYMBOL", - "name": "try_statement" - }, - { - "type": "SYMBOL", - "name": "throw_statement" - } - ] - }, - "labeled_statement": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "label", + "type": "REPEAT", "content": { - "type": "SYMBOL", - "name": "_statement_identifier" + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^\\\\\"\\n]+" + } + } + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] } }, { "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_statement" + "value": "\"" } ] }, - "expression_statement": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", + "escape_sequence": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", "members": [ + { + "type": "STRING", + "value": "\\" + }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_expression" + "type": "PATTERN", + "value": "[^xuU]" }, { - "type": "SYMBOL", - "name": "comma_expression" + "type": "PATTERN", + "value": "\\d{2,3}" + }, + { + "type": "PATTERN", + "value": "x[0-9a-fA-F]{1,4}" + }, + { + "type": "PATTERN", + "value": "u[0-9a-fA-F]{4}" + }, + { + "type": "PATTERN", + "value": "U[0-9a-fA-F]{8}" } ] - }, - { - "type": "BLANK" } ] - }, - { - "type": "STRING", - "value": ";" } - ] + } }, - "if_statement": { - "type": "PREC_RIGHT", - "value": 0, + "system_lib_string": { + "type": "TOKEN", "content": { "type": "SEQ", "members": [ { "type": "STRING", - "value": "if" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "constexpr" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "condition_clause" - } + "value": "<" }, { - "type": "FIELD", - "name": "consequence", + "type": "REPEAT", "content": { - "type": "SYMBOL", - "name": "_statement" + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[^>\\n]" + }, + { + "type": "STRING", + "value": "\\>" + } + ] } }, { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "else" - }, - { - "type": "FIELD", - "name": "alternative", - "content": { - "type": "SYMBOL", - "name": "_statement" - } - } - ] - }, - { - "type": "BLANK" - } - ] + "type": "STRING", + "value": ">" } ] } }, - "switch_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "switch" - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "condition_clause" - } - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "compound_statement" - } - } - ] - }, - "case_statement": { - "type": "PREC_RIGHT", - "value": 0, + "true": { + "type": "TOKEN", "content": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "case" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - { - "type": "STRING", - "value": "default" - } - ] + "type": "STRING", + "value": "TRUE" }, { "type": "STRING", - "value": ":" + "value": "true" + } + ] + } + }, + "false": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "FALSE" }, { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_non_case_statement" - }, - { - "type": "SYMBOL", - "name": "declaration" - }, - { - "type": "SYMBOL", - "name": "type_definition" - } - ] - } + "type": "STRING", + "value": "false" } ] } }, - "while_statement": { - "type": "SEQ", + "null": { + "type": "CHOICE", "members": [ { "type": "STRING", - "value": "while" - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "condition_clause" - } + "value": "NULL" }, { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_statement" - } + "type": "STRING", + "value": "nullptr" } ] }, - "do_statement": { + "identifier": { + "type": "PATTERN", + "value": "(\\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})*" + }, + "_type_identifier": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "type_identifier" + }, + "_field_identifier": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "field_identifier" + }, + "_statement_identifier": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "statement_identifier" + }, + "_empty_declaration": { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "do" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_statement" - } - }, - { - "type": "STRING", - "value": "while" - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "parenthesized_expression" - } + "type": "SYMBOL", + "name": "type_specifier" }, { "type": "STRING", @@ -5525,1890 +11825,2051 @@ } ] }, - "for_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "for" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "initializer", - "content": { - "type": "SYMBOL", - "name": "declaration" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "initializer", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "comma_expression" - } - ] - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "STRING", - "value": ";" - } - ] + "macro_type_specifier": { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" } - ] - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "CHOICE", + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "comment": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "comma_expression" - } - ] + "type": "STRING", + "value": "//" }, { - "type": "BLANK" + "type": "PATTERN", + "value": "(\\\\+(.|\\r?\\n)|[^\\\\\\n])*" } ] - } - }, - { - "type": "STRING", - "value": ";" - }, - { - "type": "FIELD", - "name": "update", - "content": { - "type": "CHOICE", + }, + { + "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "comma_expression" - } - ] + "type": "STRING", + "value": "/*" }, { - "type": "BLANK" + "type": "PATTERN", + "value": "[^*]*\\*+([^/*][^*]*\\*+)*" + }, + { + "type": "STRING", + "value": "/" } ] } - }, - { - "type": "STRING", - "value": ")" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_statement" - } - } - ] + ] + } }, - "return_statement": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "return" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "comma_expression" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ";" - } - ] - }, - { - "type": "SEQ", + "placeholder_type_specifier": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "constraint", + "content": { + "type": "CHOICE", "members": [ - { - "type": "STRING", - "value": "return" - }, { "type": "SYMBOL", - "name": "initializer_list" + "name": "type_specifier" }, { - "type": "STRING", - "value": ";" + "type": "BLANK" } ] } - ] - } - ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "auto" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "decltype_auto" + }, + "named": true, + "value": "decltype" + } + ] + } + ] + } }, - "break_statement": { + "auto": { + "type": "STRING", + "value": "auto" + }, + "decltype_auto": { "type": "SEQ", "members": [ { "type": "STRING", - "value": "break" + "value": "decltype" }, { "type": "STRING", - "value": ";" - } - ] - }, - "continue_statement": { - "type": "SEQ", - "members": [ + "value": "(" + }, { - "type": "STRING", - "value": "continue" + "type": "SYMBOL", + "name": "auto" }, { "type": "STRING", - "value": ";" + "value": ")" } ] }, - "goto_statement": { + "decltype": { "type": "SEQ", "members": [ { "type": "STRING", - "value": "goto" + "value": "decltype" }, { - "type": "FIELD", - "name": "label", - "content": { - "type": "SYMBOL", - "name": "_statement_identifier" - } + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "expression" }, { "type": "STRING", - "value": ";" + "value": ")" } ] }, - "_expression": { - "type": "CHOICE", + "_class_declaration": { + "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "conditional_expression" - }, - { - "type": "SYMBOL", - "name": "assignment_expression" - }, - { - "type": "SYMBOL", - "name": "binary_expression" - }, - { - "type": "SYMBOL", - "name": "unary_expression" - }, - { - "type": "SYMBOL", - "name": "update_expression" - }, - { - "type": "SYMBOL", - "name": "cast_expression" - }, - { - "type": "SYMBOL", - "name": "pointer_expression" - }, - { - "type": "SYMBOL", - "name": "sizeof_expression" - }, - { - "type": "SYMBOL", - "name": "subscript_expression" - }, - { - "type": "SYMBOL", - "name": "call_expression" - }, - { - "type": "SYMBOL", - "name": "field_expression" - }, - { - "type": "SYMBOL", - "name": "compound_literal_expression" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "number_literal" - }, - { - "type": "SYMBOL", - "name": "string_literal" - }, - { - "type": "SYMBOL", - "name": "true" - }, - { - "type": "SYMBOL", - "name": "false" - }, - { - "type": "SYMBOL", - "name": "null" - }, - { - "type": "SYMBOL", - "name": "concatenated_string" - }, - { - "type": "SYMBOL", - "name": "char_literal" - }, - { - "type": "SYMBOL", - "name": "parenthesized_expression" - } - ] - }, - { - "type": "SYMBOL", - "name": "co_await_expression" - }, - { - "type": "SYMBOL", - "name": "template_function" - }, - { - "type": "SYMBOL", - "name": "qualified_identifier" - }, - { - "type": "SYMBOL", - "name": "new_expression" - }, - { - "type": "SYMBOL", - "name": "delete_expression" - }, - { - "type": "SYMBOL", - "name": "lambda_expression" - }, - { - "type": "SYMBOL", - "name": "parameter_pack_expansion" - }, - { - "type": "SYMBOL", - "name": "nullptr" - }, - { - "type": "SYMBOL", - "name": "this" - }, - { - "type": "SYMBOL", - "name": "raw_string_literal" + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "SYMBOL", + "name": "alignas_qualifier" + } + ] + } }, { - "type": "SYMBOL", - "name": "user_defined_literal" - } - ] - }, - "comma_expression": { - "type": "SEQ", - "members": [ + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_declspec_modifier" + }, + { + "type": "BLANK" + } + ] + }, { - "type": "FIELD", - "name": "left", + "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "attribute_declaration" } }, { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "right", - "content": { + "type": "SYMBOL", + "name": "_class_declaration_item" + } + ] + }, + "_class_declaration_item": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_expression" + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_class_name" + } }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_class_name" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "virtual_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "base_class_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "field_declaration_list" + } + } + ] + } + ] + }, + { + "type": "CHOICE", + "members": [ { "type": "SYMBOL", - "name": "comma_expression" + "name": "attribute_specifier" + }, + { + "type": "BLANK" } ] } - } - ] + ] + } }, - "conditional_expression": { + "class_specifier": { "type": "PREC_RIGHT", - "value": -2, + "value": 0, "content": { "type": "SEQ", "members": [ - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, { "type": "STRING", - "value": "?" + "value": "class" }, { - "type": "FIELD", - "name": "consequence", + "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "macro_annotation" } }, { - "type": "STRING", - "value": ":" + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_class_name" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_class_name" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "virtual_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "base_class_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "field_declaration_list" + } + } + ] + } + ] + } + ] + } + }, + "_class_name": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" }, { - "type": "FIELD", - "name": "alternative", + "type": "SYMBOL", + "name": "template_type" + }, + { + "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_expression" - } + "name": "qualified_type_identifier" + }, + "named": true, + "value": "qualified_identifier" + } + ] + } + }, + "virtual_specifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "final" + }, + { + "type": "STRING", + "value": "override" + } + ] + }, + "explicit_function_specifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "explicit" + }, + { + "type": "PREC", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "explicit" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": ")" + } + ] } - ] - } + } + ] }, - "_assignment_left_expression": { - "type": "CHOICE", + "base_class_clause": { + "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "call_expression" - }, - { - "type": "SYMBOL", - "name": "field_expression" - }, - { - "type": "SYMBOL", - "name": "pointer_expression" - }, - { - "type": "SYMBOL", - "name": "subscript_expression" - }, - { - "type": "SYMBOL", - "name": "parenthesized_expression" - } - ] + "type": "STRING", + "value": ":" }, { - "type": "SYMBOL", - "name": "qualified_identifier" - } - ] - }, - "assignment_expression": { - "type": "PREC_RIGHT", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_assignment_left_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "CHOICE", + "type": "SEQ", + "members": [ + { + "type": "SEQ", "members": [ { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": "*=" - }, - { - "type": "STRING", - "value": "/=" - }, - { - "type": "STRING", - "value": "%=" - }, - { - "type": "STRING", - "value": "+=" - }, - { - "type": "STRING", - "value": "-=" - }, - { - "type": "STRING", - "value": "<<=" - }, - { - "type": "STRING", - "value": ">>=" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_declaration" + } }, { - "type": "STRING", - "value": "&=" + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "access_specifier" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "access_specifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "virtual" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "virtual" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "access_specifier" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] }, { - "type": "STRING", - "value": "^=" + "type": "SYMBOL", + "name": "_class_name" }, { - "type": "STRING", - "value": "|=" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "BLANK" + } + ] } ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_declaration" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "access_specifier" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "access_specifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "virtual" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "virtual" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "access_specifier" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_class_name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } + ] + } + ] }, - "pointer_expression": { + "_enum_base_clause": { "type": "PREC_LEFT", - "value": 12, + "value": 0, "content": { "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "operator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "*" - }, - { - "type": "STRING", - "value": "&" - } - ] - } + "type": "STRING", + "value": ":" }, { "type": "FIELD", - "name": "argument", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - "unary_expression": { - "type": "PREC_LEFT", - "value": 13, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "operator", + "name": "base", "content": { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "!" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "qualified_type_identifier" + }, + "named": true, + "value": "qualified_identifier" }, { - "type": "STRING", - "value": "~" + "type": "SYMBOL", + "name": "_type_identifier" }, { - "type": "STRING", - "value": "-" + "type": "SYMBOL", + "name": "primitive_type" }, { - "type": "STRING", - "value": "+" + "type": "SYMBOL", + "name": "sized_type_specifier" } ] } - }, - { - "type": "FIELD", - "name": "argument", - "content": { - "type": "SYMBOL", - "name": "_expression" - } } ] } }, - "binary_expression": { - "type": "CHOICE", + "dependent_type": { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "typename" + }, + { + "type": "SYMBOL", + "name": "type_specifier" + } + ] + } + } + }, + "template_declaration": { + "type": "SEQ", "members": [ { - "type": "PREC_LEFT", - "value": 10, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "+" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } + "type": "STRING", + "value": "template" }, { - "type": "PREC_LEFT", - "value": 10, + "type": "FIELD", + "name": "parameters", "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "-" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + "type": "SYMBOL", + "name": "template_parameter_list" } }, { - "type": "PREC_LEFT", - "value": 11, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "*" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "requires_clause" + }, + { + "type": "BLANK" + } + ] }, { - "type": "PREC_LEFT", - "value": 11, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_empty_declaration" + }, + { + "type": "SYMBOL", + "name": "alias_declaration" + }, + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "template_declaration" + }, + { + "type": "SYMBOL", + "name": "function_definition" + }, + { + "type": "SYMBOL", + "name": "concept_definition" + }, + { + "type": "SYMBOL", + "name": "friend_declaration" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "constructor_or_destructor_declaration" + }, + "named": true, + "value": "declaration" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "constructor_or_destructor_definition" + }, + "named": true, + "value": "function_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "operator_cast_declaration" }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "/" - } + "named": true, + "value": "declaration" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "operator_cast_definition" }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } + "named": true, + "value": "function_definition" + } + ] + } + ] + }, + "template_instantiation": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "template" }, { - "type": "PREC_LEFT", - "value": 11, + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "declarator", "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "%" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + "type": "SYMBOL", + "name": "_declarator" } }, { - "type": "PREC_LEFT", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "||" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "STRING", + "value": ";" + } + ] + }, + "template_parameter_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "optional_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "type_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_type_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "optional_type_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "template_template_parameter_declaration" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "optional_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "type_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_type_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "optional_type_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "template_template_parameter_declaration" + } + ] + } + ] + } } - } - ] - } + ] + }, + { + "type": "BLANK" + } + ] }, { - "type": "PREC_LEFT", - "value": 2, + "type": "ALIAS", "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "&&" - } + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": ">" + } + } + }, + "named": false, + "value": ">" + } + ] + }, + "type_parameter_declaration": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "typename" }, { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "STRING", + "value": "class" } ] - } - }, - { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", + }, + { + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "|" - } + "type": "SYMBOL", + "name": "_type_identifier" }, { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "BLANK" } ] } - }, - { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", + ] + } + }, + "variadic_type_parameter_declaration": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "^" - } + "type": "STRING", + "value": "typename" }, { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "STRING", + "value": "class" } ] - } - }, - { - "type": "PREC_LEFT", - "value": 5, - "content": { - "type": "SEQ", + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "&" - } + "type": "SYMBOL", + "name": "_type_identifier" }, { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "BLANK" } ] } + ] + } + }, + "optional_type_parameter_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "typename" + }, + { + "type": "STRING", + "value": "class" + } + ] }, { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "==" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" } - ] - } + }, + { + "type": "BLANK" + } + ] }, { - "type": "PREC_LEFT", - "value": 6, + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "default_type", "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "!=" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + "type": "SYMBOL", + "name": "type_specifier" } + } + ] + }, + "template_template_parameter_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "template" }, { - "type": "PREC_LEFT", - "value": 7, + "type": "FIELD", + "name": "parameters", "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": ">" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + "type": "SYMBOL", + "name": "template_parameter_list" } }, { - "type": "PREC_LEFT", - "value": 7, + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_type_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "optional_type_parameter_declaration" + } + ] + } + ] + }, + "optional_parameter_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "FIELD", + "name": "declarator", "content": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": ">=" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "SYMBOL", + "name": "abstract_reference_declarator" + } + ] }, { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "BLANK" } ] } }, { - "type": "PREC_LEFT", - "value": 7, + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "default_value", "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "<=" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + "type": "SYMBOL", + "name": "expression" } + } + ] + }, + "variadic_parameter_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_specifiers" }, { - "type": "PREC_LEFT", - "value": 7, + "type": "FIELD", + "name": "declarator", "content": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "<" - } + "type": "SYMBOL", + "name": "variadic_declarator" }, { - "type": "FIELD", - "name": "right", + "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_expression" - } + "name": "variadic_reference_declarator" + }, + "named": true, + "value": "reference_declarator" } ] } + } + ] + }, + "variadic_declarator": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "variadic_reference_declarator": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "&&" + }, + { + "type": "STRING", + "value": "&" + } + ] + }, + { + "type": "SYMBOL", + "name": "variadic_declarator" + } + ] + }, + "operator_cast": { + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "operator" + }, + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_abstract_declarator" + } + } + ] + } + }, + "field_initializer_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" }, { - "type": "PREC_LEFT", - "value": 9, - "content": { - "type": "SEQ", + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "field_initializer" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "field_initializer" + } + ] + } + } + ] + } + ] + }, + "field_initializer": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "SYMBOL", + "name": "_field_identifier" }, { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "<<" - } + "type": "SYMBOL", + "name": "template_method" }, { - "type": "FIELD", - "name": "right", + "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_expression" - } + "name": "qualified_field_identifier" + }, + "named": true, + "value": "qualified_identifier" } ] - } - }, - { - "type": "PREC_LEFT", - "value": 9, - "content": { - "type": "SEQ", + }, + { + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "SYMBOL", + "name": "initializer_list" }, { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": ">>" - } + "type": "SYMBOL", + "name": "argument_list" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "..." }, { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "BLANK" } ] } + ] + } + }, + "inline_method_definition": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "compound_statement" + }, + { + "type": "SYMBOL", + "name": "try_statement" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "default_method_clause" + }, + { + "type": "SYMBOL", + "name": "delete_method_clause" + }, + { + "type": "SYMBOL", + "name": "pure_virtual_clause" + } + ] } ] }, - "update_expression": { - "type": "PREC_RIGHT", - "value": 13, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", + "_constructor_specifiers": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_modifiers" + }, + { + "type": "SYMBOL", + "name": "explicit_function_specifier" + } + ] + }, + "operator_cast_definition": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_constructor_specifiers" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "operator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "--" - }, - { - "type": "STRING", - "value": "++" - } - ] - } + "type": "SYMBOL", + "name": "operator_cast" }, { - "type": "FIELD", - "name": "argument", + "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_expression" - } + "name": "qualified_operator_cast_identifier" + }, + "named": true, + "value": "qualified_identifier" } ] - }, - { - "type": "SEQ", + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "argument", - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "SYMBOL", + "name": "compound_statement" }, { - "type": "FIELD", - "name": "operator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "--" - }, - { - "type": "STRING", - "value": "++" - } - ] - } + "type": "SYMBOL", + "name": "try_statement" } ] } - ] - } + } + ] }, - "cast_expression": { + "operator_cast_declaration": { "type": "PREC", - "value": 12, + "value": 1, "content": { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "(" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_constructor_specifiers" + } }, { "type": "FIELD", - "name": "type", + "name": "declarator", "content": { - "type": "SYMBOL", - "name": "type_descriptor" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "operator_cast" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "qualified_operator_cast_identifier" + }, + "named": true, + "value": "qualified_identifier" + } + ] } }, { - "type": "STRING", - "value": ")" + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "default_value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] }, { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "STRING", + "value": ";" } ] } }, - "type_descriptor": { + "constructor_try_statement": { "type": "SEQ", "members": [ { - "type": "REPEAT", + "type": "STRING", + "value": "try" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "field_initializer_list" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", "content": { "type": "SYMBOL", - "name": "type_qualifier" + "name": "compound_statement" } }, { - "type": "FIELD", - "name": "type", + "type": "REPEAT1", "content": { "type": "SYMBOL", - "name": "_type_specifier" + "name": "catch_clause" } - }, + } + ] + }, + "constructor_or_destructor_definition": { + "type": "SEQ", + "members": [ { "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "type_qualifier" + "name": "_constructor_specifiers" } }, { "type": "FIELD", "name": "declarator", "content": { - "type": "CHOICE", - "members": [ - { + "type": "SYMBOL", + "name": "function_declarator" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "field_initializer_list" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, + { + "type": "ALIAS", + "content": { "type": "SYMBOL", - "name": "_abstract_declarator" + "name": "constructor_try_statement" }, - { - "type": "BLANK" - } - ] - } + "named": true, + "value": "try_statement" + }, + { + "type": "SYMBOL", + "name": "default_method_clause" + }, + { + "type": "SYMBOL", + "name": "delete_method_clause" + }, + { + "type": "SYMBOL", + "name": "pure_virtual_clause" + } + ] } ] }, - "sizeof_expression": { - "type": "CHOICE", + "constructor_or_destructor_declaration": { + "type": "SEQ", "members": [ { - "type": "PREC", - "value": 8, + "type": "REPEAT", "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "sizeof" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "type_descriptor" - } - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - } - ] + "type": "SYMBOL", + "name": "_constructor_specifiers" } }, { - "type": "SEQ", + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "function_declarator" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "default_method_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "default" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "delete_method_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "delete" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "pure_virtual_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "PATTERN", + "value": "0" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "friend_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", "members": [ { "type": "STRING", - "value": "sizeof" + "value": "constexpr" }, { - "type": "STRING", - "value": "..." - }, + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "friend" + }, + { + "type": "CHOICE", + "members": [ { - "type": "STRING", - "value": "(" + "type": "SYMBOL", + "name": "declaration" }, { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "identifier" - } + "type": "SYMBOL", + "name": "function_definition" }, { - "type": "STRING", - "value": ")" + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "class" + }, + { + "type": "STRING", + "value": "struct" + }, + { + "type": "STRING", + "value": "union" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_class_name" + }, + { + "type": "STRING", + "value": ";" + } + ] } ] } ] }, - "subscript_expression": { - "type": "PREC", - "value": 16, + "access_specifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "public" + }, + { + "type": "STRING", + "value": "private" + }, + { + "type": "STRING", + "value": "protected" + } + ] + }, + "reference_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "argument", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "STRING", - "value": "[" - }, - { - "type": "FIELD", - "name": "index", - "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_expression" + "type": "STRING", + "value": "&" }, { - "type": "SYMBOL", - "name": "initializer_list" + "type": "STRING", + "value": "&&" } ] + }, + { + "type": "SYMBOL", + "name": "_declarator" } - }, - { - "type": "STRING", - "value": "]" - } - ] + ] + } } }, - "call_expression": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", + "reference_field_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", "members": [ { - "type": "PREC", - "value": 14, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "function", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "SYMBOL", - "name": "argument_list" - } - } - ] - } - }, - { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "function", - "content": { - "type": "SYMBOL", - "name": "primitive_type" - } + "type": "STRING", + "value": "&" }, { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "SYMBOL", - "name": "argument_list" - } + "type": "STRING", + "value": "&&" } ] + }, + { + "type": "SYMBOL", + "name": "_field_declarator" } ] - }, - { - "type": "SYMBOL", - "name": "_call_macro_with_decl_first_arg" } - ] + } }, - "argument_list": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", + "reference_type_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", "members": [ { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "initializer_list" - } - ] + "type": "STRING", + "value": "&" }, { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "initializer_list" - } - ] - } - ] - } + "type": "STRING", + "value": "&&" + } + ] + }, + { + "type": "SYMBOL", + "name": "_type_declarator" + } + ] + } + } + }, + "abstract_reference_declarator": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "&&" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_abstract_declarator" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "structured_binding_declarator": { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] } - ] - }, - { - "type": "BLANK" - } - ] + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "ref_qualifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "&" }, { "type": "STRING", - "value": ")" + "value": "&&" } ] }, - "field_expression": { - "type": "CHOICE", + "_function_declarator_seq": { + "type": "SEQ", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "PREC", - "value": 15, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "argument", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "STRING", - "value": "->" - } - ] - } - } - ] - } - }, - { - "type": "FIELD", - "name": "field", - "content": { - "type": "SYMBOL", - "name": "_field_identifier" - } - } - ] + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "parameter_list" + } }, { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "PREC", - "value": 15, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "argument", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "STRING", - "value": "->" - } - ] - } - ] - } + "type": "SYMBOL", + "name": "_function_attributes_start" }, { - "type": "FIELD", - "name": "field", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "destructor_name" - }, - { - "type": "SYMBOL", - "name": "template_method" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "dependent_field_identifier" - }, - "named": true, - "value": "dependent_name" - } - ] - } + "type": "BLANK" } ] - } - ] - }, - "compound_literal_expression": { - "type": "CHOICE", - "members": [ + }, { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "(" - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "type_descriptor" - } - }, - { - "type": "STRING", - "value": ")" + "type": "SYMBOL", + "name": "ref_qualifier" }, { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "initializer_list" - } + "type": "BLANK" } ] }, { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "_class_name" - } + "type": "SYMBOL", + "name": "_function_exception_specification" }, { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "initializer_list" - } + "type": "BLANK" } ] - } - ] - }, - "parenthesized_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "_function_attributes_end" }, { - "type": "SYMBOL", - "name": "comma_expression" + "type": "BLANK" } ] }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "initializer_list": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, { "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "initializer_pair" - }, - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "initializer_list" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "initializer_pair" - }, - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "initializer_list" - } - ] - } - ] - } - } - ] + "type": "SYMBOL", + "name": "trailing_return_type" }, { "type": "BLANK" @@ -7419,98 +13880,79 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "," + "type": "SYMBOL", + "name": "_function_postfix" }, { "type": "BLANK" } - ] - }, - { - "type": "STRING", - "value": "}" + ] } ] }, - "initializer_pair": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "designator", - "content": { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { + "_function_attributes_start": { + "type": "PREC", + "value": 1, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { "type": "SYMBOL", - "name": "subscript_designator" - }, - { + "name": "attribute_specifier" + } + }, + { + "type": "REPEAT", + "content": { "type": "SYMBOL", - "name": "field_designator" + "name": "type_qualifier" } - ] - } - } - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "CHOICE", + } + ] + }, + { + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_expression" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_specifier" + } }, { - "type": "SYMBOL", - "name": "initializer_list" + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } } ] } - } - ] + ] + } }, - "subscript_designator": { - "type": "SEQ", + "_function_exception_specification": { + "type": "CHOICE", "members": [ - { - "type": "STRING", - "value": "[" - }, { "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "field_designator": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." + "name": "noexcept" }, { "type": "SYMBOL", - "name": "_field_identifier" + "name": "throw_specifier" } ] }, - "number_literal": { - "type": "TOKEN", + "_function_attributes_end": { + "type": "PREC_RIGHT", + "value": 0, "content": { "type": "SEQ", "members": [ @@ -7518,8 +13960,8 @@ "type": "CHOICE", "members": [ { - "type": "PATTERN", - "value": "[-\\+]" + "type": "SYMBOL", + "name": "gnu_asm_expression" }, { "type": "BLANK" @@ -7530,354 +13972,373 @@ "type": "CHOICE", "members": [ { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "STRING", - "value": "0x" + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "attribute_specifier" + } }, { - "type": "STRING", - "value": "0b" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_declaration" + } } ] }, { - "type": "BLANK" + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_specifier" + } + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "attribute_declaration" + } + } + ] } ] + } + ] + } + }, + "_function_postfix": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "virtual_specifier" + } }, { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9]" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "'" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9]" - } - } - ] - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "0b" - }, - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9]" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "'" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9]" - } - } - ] - } - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "0x" - }, - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "'" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - } - } - ] - } - } - ] - } - ] - } - ] + "type": "SYMBOL", + "name": "requires_clause" + } + ] + } + }, + "trailing_return_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "->" + }, + { + "type": "SYMBOL", + "name": "type_descriptor" + } + ] + }, + "noexcept": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "noexcept" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" }, { "type": "CHOICE", "members": [ { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "throw_specifier": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "throw" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_descriptor" + }, + { + "type": "REPEAT", + "content": { "type": "SEQ", "members": [ { "type": "STRING", - "value": "." + "value": "," }, { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "'" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - } - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] + "type": "SYMBOL", + "name": "type_descriptor" } ] - }, - { - "type": "BLANK" } - ] - } - ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + "template_type": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "template_argument_list" + } + } + ] + }, + "template_method": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_field_identifier" }, { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { + "type": "SYMBOL", + "name": "operator_name" + } + ] + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "template_argument_list" + } + } + ] + }, + "template_function": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "template_argument_list" + } + } + ] + }, + "template_argument_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PREC_DYNAMIC", + "value": 3, + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "PREC_DYNAMIC", + "value": 2, + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "type_parameter_pack_expansion" + }, + "named": true, + "value": "parameter_pack_expansion" + } + }, + { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "REPEAT", + "content": { "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9]" - } + "type": "STRING", + "value": "," }, { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "'" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9]" - } - } - ] - } - } - ] - } - ] - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[eEpP]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[-\\+]" - }, - { - "type": "BLANK" - } - ] + "type": "PREC_DYNAMIC", + "value": 3, + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } }, { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - } + "type": "PREC_DYNAMIC", + "value": 2, + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "type_parameter_pack_expansion" }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "'" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - } - } - ] - } - } - ] + "named": true, + "value": "parameter_pack_expansion" + } + }, + { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "expression" + } } ] - }, - { - "type": "BLANK" } ] } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "u" - }, - { - "type": "STRING", - "value": "l" - }, - { - "type": "STRING", - "value": "U" - }, - { - "type": "STRING", - "value": "L" - }, - { - "type": "STRING", - "value": "f" - }, - { - "type": "STRING", - "value": "F" } ] + }, + { + "type": "BLANK" } - } - ] - } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": ">" + } + } + }, + "named": false, + "value": ">" + } + ] }, - "char_literal": { + "namespace_definition": { "type": "SEQ", "members": [ { @@ -7885,87 +14346,103 @@ "members": [ { "type": "STRING", - "value": "L'" - }, - { - "type": "STRING", - "value": "u'" - }, - { - "type": "STRING", - "value": "U'" - }, - { - "type": "STRING", - "value": "u8'" + "value": "inline" }, { - "type": "STRING", - "value": "'" + "type": "BLANK" } ] }, + { + "type": "STRING", + "value": "namespace" + }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "escape_sequence" + "name": "attribute_declaration" }, { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[^\\n']" - } + "type": "BLANK" } ] }, { - "type": "STRING", - "value": "'" + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_namespace_identifier" + }, + { + "type": "SYMBOL", + "name": "nested_namespace_specifier" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "declaration_list" + } } ] }, - "concatenated_string": { + "namespace_alias_definition": { "type": "SEQ", "members": [ + { + "type": "STRING", + "value": "namespace" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_namespace_identifier" + } + }, + { + "type": "STRING", + "value": "=" + }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "raw_string_literal" + "name": "_namespace_identifier" }, { "type": "SYMBOL", - "name": "string_literal" + "name": "nested_namespace_specifier" } ] }, - { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "raw_string_literal" - }, - { - "type": "SYMBOL", - "name": "string_literal" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - } + { + "type": "STRING", + "value": ";" } ] }, - "string_literal": { + "_namespace_specifier": { "type": "SEQ", "members": [ { @@ -7973,201 +14450,220 @@ "members": [ { "type": "STRING", - "value": "L\"" - }, - { - "type": "STRING", - "value": "u\"" - }, - { - "type": "STRING", - "value": "U\"" - }, - { - "type": "STRING", - "value": "u8\"" + "value": "inline" }, { - "type": "STRING", - "value": "\"" + "type": "BLANK" } ] }, { - "type": "REPEAT", - "content": { + "type": "SYMBOL", + "name": "_namespace_identifier" + } + ] + }, + "nested_namespace_specifier": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { "type": "CHOICE", "members": [ { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[^\\\\\"\\n]+" - } - } + "type": "SYMBOL", + "name": "_namespace_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "::" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "nested_namespace_specifier" }, { "type": "SYMBOL", - "name": "escape_sequence" + "name": "_namespace_specifier" } ] } - }, + ] + } + }, + "using_declaration": { + "type": "SEQ", + "members": [ { "type": "STRING", - "value": "\"" - } - ] - }, - "escape_sequence": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", + "value": "using" + }, + { + "type": "CHOICE", "members": [ - { - "type": "STRING", - "value": "\\" - }, { "type": "CHOICE", "members": [ { - "type": "PATTERN", - "value": "[^xuU]" - }, - { - "type": "PATTERN", - "value": "\\d{2,3}" - }, - { - "type": "PATTERN", - "value": "x[0-9a-fA-F]{2,}" - }, - { - "type": "PATTERN", - "value": "u[0-9a-fA-F]{4}" + "type": "STRING", + "value": "namespace" }, { - "type": "PATTERN", - "value": "U[0-9a-fA-F]{8}" + "type": "STRING", + "value": "enum" } ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "qualified_identifier" } ] + }, + { + "type": "STRING", + "value": ";" } - } + ] }, - "system_lib_string": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "<" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[^>\\n]" - }, - { - "type": "STRING", - "value": "\\>" - } - ] - } - }, - { - "type": "STRING", - "value": ">" + "alias_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "using" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" } - ] - } - }, - "true": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "TRUE" - }, - { - "type": "STRING", - "value": "true" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_declaration" } - ] - } - }, - "false": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "FALSE" - }, - { - "type": "STRING", - "value": "false" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" } - ] - } - }, - "null": { - "type": "STRING", - "value": "NULL" - }, - "identifier": { - "type": "PATTERN", - "value": "[a-zA-Z_]\\w*" - }, - "_type_identifier": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "identifier" - }, - "named": true, - "value": "type_identifier" - }, - "_field_identifier": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "identifier" - }, - "named": true, - "value": "field_identifier" + }, + { + "type": "STRING", + "value": ";" + } + ] }, - "_statement_identifier": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "identifier" - }, - "named": true, - "value": "statement_identifier" + "static_assert_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "static_assert" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "message", + "content": { + "type": "SYMBOL", + "name": "_string" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "STRING", + "value": ";" + } + ] }, - "_empty_declaration": { + "concept_definition": { "type": "SEQ", "members": [ + { + "type": "STRING", + "value": "concept" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "=" + }, { "type": "SYMBOL", - "name": "_type_specifier" + "name": "expression" }, { "type": "STRING", @@ -8175,83 +14671,12 @@ } ] }, - "macro_type_specifier": { - "type": "PREC_DYNAMIC", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "type_descriptor" - } - }, - { - "type": "STRING", - "value": ")" - } - ] - } - }, - "comment": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "//" - }, - { - "type": "PATTERN", - "value": "(\\\\(.|\\r?\\n)|[^\\\\\\n])*" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "/*" - }, - { - "type": "PATTERN", - "value": "[^*]*\\*+([^/*][^*]*\\*+)*" - }, - { - "type": "STRING", - "value": "/" - } - ] - } - ] - } - }, - "decltype": { + "for_range_loop": { "type": "SEQ", "members": [ { "type": "STRING", - "value": "decltype" + "value": "for" }, { "type": "STRING", @@ -8259,477 +14684,406 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "_for_range_loop_body" }, { "type": "STRING", "value": ")" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } } ] }, - "class_specifier": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "class" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "macro_annotation" - } - }, - { + "_for_range_loop_body": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "initializer", + "content": { "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_class_name" - } + "type": "SYMBOL", + "name": "init_statement" }, { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_class_name" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "virtual_specifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "base_class_clause" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "field_declaration_list" - } - } - ] + "type": "BLANK" } ] } - ] - } - }, - "_class_name": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_identifier" - }, - { - "type": "SYMBOL", - "name": "template_type" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "qualified_type_identifier" - }, - "named": true, - "value": "qualified_identifier" + }, + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" } - ] - } - }, - "virtual_specifier": { - "type": "CHOICE", - "members": [ + }, { "type": "STRING", - "value": "final" + "value": ":" }, { - "type": "STRING", - "value": "override" + "type": "FIELD", + "name": "right", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } } ] }, - "virtual_function_specifier": { + "init_statement": { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "virtual" + "type": "SYMBOL", + "name": "alias_declaration" + }, + { + "type": "SYMBOL", + "name": "type_definition" + }, + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "expression_statement" } ] }, - "explicit_function_specifier": { - "type": "CHOICE", + "condition_clause": { + "type": "SEQ", "members": [ { "type": "STRING", - "value": "explicit" + "value": "(" }, { - "type": "PREC", - "value": 14, + "type": "FIELD", + "name": "initializer", "content": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "explicit" + "type": "SYMBOL", + "name": "init_statement" }, { - "type": "STRING", - "value": "(" + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" }, { "type": "SYMBOL", - "name": "_expression" + "name": "comma_expression" }, { - "type": "STRING", - "value": ")" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "condition_declaration" + }, + "named": true, + "value": "declaration" } ] } + }, + { + "type": "STRING", + "value": ")" } ] }, - "base_class_clause": { + "condition_declaration": { "type": "SEQ", "members": [ { - "type": "STRING", - "value": ":" + "type": "SYMBOL", + "name": "_declaration_specifiers" }, { - "type": "SEQ", + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + }, + { + "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "public" - }, - { - "type": "STRING", - "value": "private" - }, - { - "type": "STRING", - "value": "protected" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_class_name" + "type": "STRING", + "value": "=" }, { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "..." - }, - { - "type": "BLANK" - } - ] + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } } ] }, { - "type": "REPEAT", + "type": "FIELD", + "name": "value", "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "public" - }, - { - "type": "STRING", - "value": "private" - }, - { - "type": "STRING", - "value": "protected" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_class_name" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "..." - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] + "type": "SYMBOL", + "name": "initializer_list" } } ] } ] }, - "_enum_base_clause": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "base", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "qualified_type_identifier" - }, - "named": true, - "value": "qualified_identifier" - }, - { - "type": "SYMBOL", - "name": "_type_identifier" - }, - { - "type": "SYMBOL", - "name": "sized_type_specifier" - } - ] - } + "co_return_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "co_return" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "co_yield_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "co_yield" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "throw_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "throw" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "try_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "try" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" } - ] - } - }, - "auto": { - "type": "STRING", - "value": "auto" - }, - "dependent_type": { - "type": "PREC_DYNAMIC", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "typename" - }, - { + }, + { + "type": "REPEAT1", + "content": { "type": "SYMBOL", - "name": "_type_specifier" + "name": "catch_clause" } - ] - } + } + ] }, - "template_declaration": { + "catch_clause": { "type": "SEQ", "members": [ { "type": "STRING", - "value": "template" + "value": "catch" }, { "type": "FIELD", "name": "parameters", "content": { "type": "SYMBOL", - "name": "template_parameter_list" + "name": "parameter_list" } }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, + "raw_string_literal": { + "type": "SEQ", + "members": [ { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_empty_declaration" - }, - { - "type": "SYMBOL", - "name": "alias_declaration" - }, - { - "type": "SYMBOL", - "name": "declaration" - }, - { - "type": "SYMBOL", - "name": "template_declaration" - }, - { - "type": "SYMBOL", - "name": "function_definition" + "type": "STRING", + "value": "R\"" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constructor_or_destructor_declaration" - }, - "named": true, - "value": "declaration" + "type": "STRING", + "value": "LR\"" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constructor_or_destructor_definition" - }, - "named": true, - "value": "function_definition" + "type": "STRING", + "value": "uR\"" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "operator_cast_declaration" - }, - "named": true, - "value": "declaration" + "type": "STRING", + "value": "UR\"" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "operator_cast_definition" - }, - "named": true, - "value": "function_definition" + "type": "STRING", + "value": "u8R\"" } ] - } - ] - }, - "template_instantiation": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "template" }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_declaration_specifiers" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "delimiter", + "content": { + "type": "SYMBOL", + "name": "raw_string_delimiter" + } + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "raw_string_content" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "SYMBOL", + "name": "raw_string_delimiter" + } + ] }, { - "type": "BLANK" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "raw_string_content" + }, + { + "type": "STRING", + "value": ")" + } + ] } ] }, - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "_declarator" - } - }, { "type": "STRING", - "value": ";" + "value": "\"" } ] }, - "template_parameter_list": { + "subscript_argument_list": { "type": "SEQ", "members": [ { "type": "STRING", - "value": "<" + "value": "[" }, { "type": "CHOICE", @@ -8742,73 +15096,33 @@ "members": [ { "type": "SYMBOL", - "name": "parameter_declaration" - }, - { - "type": "SYMBOL", - "name": "optional_parameter_declaration" - }, - { - "type": "SYMBOL", - "name": "type_parameter_declaration" - }, - { - "type": "SYMBOL", - "name": "variadic_parameter_declaration" - }, - { - "type": "SYMBOL", - "name": "variadic_type_parameter_declaration" - }, - { - "type": "SYMBOL", - "name": "optional_type_parameter_declaration" + "name": "expression" }, { "type": "SYMBOL", - "name": "template_template_parameter_declaration" + "name": "initializer_list" } ] }, { "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "parameter_declaration" - }, - { - "type": "SYMBOL", - "name": "optional_parameter_declaration" - }, - { - "type": "SYMBOL", - "name": "type_parameter_declaration" - }, - { - "type": "SYMBOL", - "name": "variadic_parameter_declaration" - }, - { - "type": "SYMBOL", - "name": "variadic_type_parameter_declaration" - }, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ { "type": "SYMBOL", - "name": "optional_type_parameter_declaration" + "name": "expression" }, { "type": "SYMBOL", - "name": "template_template_parameter_declaration" + "name": "initializer_list" } ] } @@ -8823,26 +15137,39 @@ ] }, { - "type": "ALIAS", - "content": { - "type": "TOKEN", + "type": "STRING", + "value": "]" + } + ] + }, + "co_await_expression": { + "type": "PREC_LEFT", + "value": 14, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "STRING", - "value": ">" - } + "type": "STRING", + "value": "co_await" } }, - "named": false, - "value": ">" - } - ] + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } }, - "type_parameter_declaration": { - "type": "PREC", - "value": 1, + "new_expression": { + "type": "PREC_RIGHT", + "value": 16, "content": { "type": "SEQ", "members": [ @@ -8851,58 +15178,113 @@ "members": [ { "type": "STRING", - "value": "typename" + "value": "::" }, { - "type": "STRING", - "value": "class" + "type": "BLANK" } ] }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_identifier" - }, - { - "type": "BLANK" - } - ] + "type": "STRING", + "value": "new" + }, + { + "type": "FIELD", + "name": "placement", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_specifier" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "new_declarator" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + }, + { + "type": "BLANK" + } + ] + } } ] } }, - "variadic_type_parameter_declaration": { - "type": "PREC", - "value": 1, + "new_declarator": { + "type": "PREC_RIGHT", + "value": 0, "content": { "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "typename" - }, - { - "type": "STRING", - "value": "class" - } - ] + "type": "STRING", + "value": "[" + }, + { + "type": "FIELD", + "name": "length", + "content": { + "type": "SYMBOL", + "name": "expression" + } }, { "type": "STRING", - "value": "..." + "value": "]" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "_type_identifier" + "name": "new_declarator" }, { "type": "BLANK" @@ -8912,7 +15294,7 @@ ] } }, - "optional_type_parameter_declaration": { + "delete_expression": { "type": "SEQ", "members": [ { @@ -8920,24 +15302,7 @@ "members": [ { "type": "STRING", - "value": "typename" - }, - { - "type": "STRING", - "value": "class" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_type_identifier" - } + "value": "::" }, { "type": "BLANK" @@ -8946,361 +15311,464 @@ }, { "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "default_type", - "content": { - "type": "SYMBOL", - "name": "_type_specifier" - } - } - ] - }, - "template_template_parameter_declaration": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "template" - }, - { - "type": "FIELD", - "name": "parameters", - "content": { - "type": "SYMBOL", - "name": "template_parameter_list" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_parameter_declaration" - }, - { - "type": "SYMBOL", - "name": "variadic_type_parameter_declaration" - }, - { - "type": "SYMBOL", - "name": "optional_type_parameter_declaration" - } - ] - } - ] - }, - "optional_parameter_declaration": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_declaration_specifiers" - }, - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_declarator" - }, - { - "type": "BLANK" - } - ] - } + "value": "delete" }, { - "type": "STRING", - "value": "=" + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "BLANK" + } + ] }, { - "type": "FIELD", - "name": "default_value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "SYMBOL", + "name": "expression" } ] }, - "variadic_parameter_declaration": { + "type_requirement": { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_declaration_specifiers" + "type": "STRING", + "value": "typename" }, { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "variadic_declarator" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "variadic_reference_declarator" - }, - "named": true, - "value": "reference_declarator" - } - ] - } + "type": "SYMBOL", + "name": "_class_name" } ] }, - "variadic_declarator": { + "compound_requirement": { "type": "SEQ", "members": [ { "type": "STRING", - "value": "..." + "value": "{" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "}" }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "identifier" + "type": "STRING", + "value": "noexcept" }, { "type": "BLANK" } ] - } - ] - }, - "variadic_reference_declarator": { - "type": "SEQ", - "members": [ + }, { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "&&" + "type": "SYMBOL", + "name": "trailing_return_type" }, { - "type": "STRING", - "value": "&" + "type": "BLANK" } ] }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "_requirement": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "expression_statement" + }, + "named": true, + "value": "simple_requirement" + }, { "type": "SYMBOL", - "name": "variadic_declarator" + "name": "type_requirement" + }, + { + "type": "SYMBOL", + "name": "compound_requirement" } ] }, - "operator_cast": { - "type": "PREC_RIGHT", - "value": 1, + "requirement_seq": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_requirement" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "constraint_conjunction": { + "type": "PREC_LEFT", + "value": 2, "content": { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "operator" + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_requirement_clause_constraint" + } }, { - "type": "SYMBOL", - "name": "_declaration_specifiers" + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "&&" + }, + { + "type": "STRING", + "value": "and" + } + ] + } }, { "type": "FIELD", - "name": "declarator", + "name": "right", "content": { "type": "SYMBOL", - "name": "_abstract_declarator" + "name": "_requirement_clause_constraint" } } ] } }, - "field_initializer_list": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "field_initializer" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "field_initializer" - } - ] - } - } - ] - } - ] - }, - "field_initializer": { - "type": "PREC", + "constraint_disjunction": { + "type": "PREC_LEFT", "value": 1, "content": { "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_field_identifier" - }, - { - "type": "SYMBOL", - "name": "template_method" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "qualified_field_identifier" - }, - "named": true, - "value": "qualified_identifier" - } - ] + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_requirement_clause_constraint" + } }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "initializer_list" - }, - { - "type": "SYMBOL", - "name": "argument_list" - } - ] + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "||" + }, + { + "type": "STRING", + "value": "or" + } + ] + } }, { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "..." - }, - { - "type": "BLANK" - } - ] + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_requirement_clause_constraint" + } } ] } }, - "inline_method_definition": { - "type": "SEQ", + "_requirement_clause_constraint": { + "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "_declaration_specifiers" + "name": "true" + }, + { + "type": "SYMBOL", + "name": "false" + }, + { + "type": "SYMBOL", + "name": "_class_name" }, { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "_field_declarator" - } + "type": "SYMBOL", + "name": "fold_expression" }, { - "type": "CHOICE", + "type": "SYMBOL", + "name": "lambda_expression" + }, + { + "type": "SYMBOL", + "name": "requires_expression" + }, + { + "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "compound_statement" - } + "type": "STRING", + "value": "(" }, { "type": "SYMBOL", - "name": "default_method_clause" + "name": "expression" }, { - "type": "SYMBOL", - "name": "delete_method_clause" + "type": "STRING", + "value": ")" } ] - } - ] - }, - "_constructor_specifiers": { - "type": "CHOICE", - "members": [ + }, { "type": "SYMBOL", - "name": "_declaration_modifiers" + "name": "constraint_conjunction" }, { "type": "SYMBOL", - "name": "explicit_function_specifier" + "name": "constraint_disjunction" } ] }, - "operator_cast_definition": { + "requires_clause": { "type": "SEQ", "members": [ { - "type": "REPEAT", + "type": "STRING", + "value": "requires" + }, + { + "type": "FIELD", + "name": "constraint", "content": { "type": "SYMBOL", - "name": "_constructor_specifiers" + "name": "_requirement_clause_constraint" } + } + ] + }, + "requires_parameter_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "optional_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter_declaration" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "optional_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter_declaration" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "requires_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "requires" }, { "type": "FIELD", - "name": "declarator", + "name": "parameters", "content": { "type": "CHOICE", "members": [ - { - "type": "SYMBOL", - "name": "operator_cast" - }, { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "qualified_operator_cast_identifier" + "name": "requires_parameter_list" }, "named": true, - "value": "qualified_identifier" + "value": "parameter_list" + }, + { + "type": "BLANK" } ] } }, + { + "type": "FIELD", + "name": "requirements", + "content": { + "type": "SYMBOL", + "name": "requirement_seq" + } + } + ] + }, + "lambda_expression": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "captures", + "content": { + "type": "SYMBOL", + "name": "lambda_capture_specifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "template_parameters", + "content": { + "type": "SYMBOL", + "name": "template_parameter_list" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "constraint", + "content": { + "type": "SYMBOL", + "name": "requires_clause" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "abstract_function_declarator" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "body", @@ -9311,97 +15779,125 @@ } ] }, - "operator_cast_declaration": { + "lambda_capture_specifier": { "type": "PREC", - "value": 1, + "value": 18, "content": { "type": "SEQ", "members": [ { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_constructor_specifiers" - } + "type": "STRING", + "value": "[" }, { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "operator_cast" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "qualified_operator_cast_identifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "lambda_default_capture" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_lambda_capture" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_lambda_capture" + } + ] + } + } + ] }, - "named": true, - "value": "qualified_identifier" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ + { + "type": "BLANK" + } + ] + }, { "type": "SEQ", "members": [ + { + "type": "SYMBOL", + "name": "lambda_default_capture" + }, { "type": "STRING", - "value": "=" + "value": "," }, { - "type": "FIELD", - "name": "default_value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_lambda_capture" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_lambda_capture" + } + ] + } + } + ] } ] - }, - { - "type": "BLANK" } ] }, { "type": "STRING", - "value": ";" + "value": "]" } ] } }, - "constructor_or_destructor_definition": { - "type": "SEQ", + "lambda_default_capture": { + "type": "CHOICE", "members": [ { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_constructor_specifiers" - } + "type": "STRING", + "value": "=" }, { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "function_declarator" - } - }, + "type": "STRING", + "value": "&" + } + ] + }, + "_lambda_capture_identifier": { + "type": "SEQ", + "members": [ { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "field_initializer_list" + "type": "STRING", + "value": "&" }, { "type": "BLANK" @@ -9412,1500 +15908,1179 @@ "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "body", + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "qualified_identifier" + }, + { + "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "compound_statement" - } + "name": "identifier_parameter_pack_expansion" + }, + "named": true, + "value": "parameter_pack_expansion" + } + ] + } + ] + }, + "lambda_capture_initializer": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "&" }, { - "type": "SYMBOL", - "name": "default_method_clause" + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + "_lambda_capture": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "BLANK" + } + ] }, { "type": "SYMBOL", - "name": "delete_method_clause" + "name": "this" } ] + }, + { + "type": "SYMBOL", + "name": "_lambda_capture_identifier" + }, + { + "type": "SYMBOL", + "name": "lambda_capture_initializer" } ] }, - "constructor_or_destructor_declaration": { - "type": "SEQ", + "_fold_operator": { + "type": "CHOICE", "members": [ { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_constructor_specifiers" - } + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": "<<" + }, + { + "type": "STRING", + "value": ">>" + }, + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "%=" + }, + { + "type": "STRING", + "value": "^=" + }, + { + "type": "STRING", + "value": "&=" + }, + { + "type": "STRING", + "value": "|=" + }, + { + "type": "STRING", + "value": ">>=" + }, + { + "type": "STRING", + "value": "<<=" + }, + { + "type": "STRING", + "value": "==" + }, + { + "type": "STRING", + "value": "!=" + }, + { + "type": "STRING", + "value": "<=" }, { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "function_declarator" - } + "type": "STRING", + "value": ">=" }, { "type": "STRING", - "value": ";" - } - ] - }, - "default_method_clause": { - "type": "SEQ", - "members": [ + "value": "&&" + }, { "type": "STRING", - "value": "=" + "value": "||" }, { "type": "STRING", - "value": "default" + "value": "," }, { "type": "STRING", - "value": ";" - } - ] - }, - "delete_method_clause": { - "type": "SEQ", - "members": [ + "value": ".*" + }, { "type": "STRING", - "value": "=" + "value": "->*" }, { "type": "STRING", - "value": "delete" + "value": "or" }, { "type": "STRING", - "value": ";" + "value": "and" + }, + { + "type": "STRING", + "value": "bitor" + }, + { + "type": "STRING", + "value": "xor" + }, + { + "type": "STRING", + "value": "bitand" + }, + { + "type": "STRING", + "value": "not_eq" } ] }, - "friend_declaration": { - "type": "SEQ", + "_binary_fold_operator": { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "friend" - }, - { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "declaration" + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "+" + } }, { - "type": "SYMBOL", - "name": "function_definition" + "type": "STRING", + "value": "..." }, { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "class" - }, - { - "type": "STRING", - "value": "struct" - }, - { - "type": "STRING", - "value": "union" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_class_name" - }, - { - "type": "STRING", - "value": ";" - } - ] + "type": "STRING", + "value": "+" } ] - } - ] - }, - "access_specifier": { - "type": "SEQ", - "members": [ + }, { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "STRING", - "value": "public" + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "-" + } }, { "type": "STRING", - "value": "private" + "value": "..." }, { "type": "STRING", - "value": "protected" + "value": "-" } ] }, { - "type": "STRING", - "value": ":" - } - ] - }, - "reference_declarator": { - "type": "PREC_DYNAMIC", - "value": 1, - "content": { - "type": "PREC_RIGHT", - "value": 0, - "content": { "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "&" - }, - { - "type": "STRING", - "value": "&&" - } - ] + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "*" + } }, { - "type": "SYMBOL", - "name": "_declarator" + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "*" } ] - } - } - }, - "reference_field_declarator": { - "type": "PREC_DYNAMIC", - "value": 1, - "content": { - "type": "PREC_RIGHT", - "value": 0, - "content": { + }, + { "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "&" - }, - { - "type": "STRING", - "value": "&&" - } - ] - }, - { - "type": "SYMBOL", - "name": "_field_declarator" - } - ] - } - } - }, - "abstract_reference_declarator": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "&" - }, - { + "type": "FIELD", + "name": "operator", + "content": { "type": "STRING", - "value": "&&" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_abstract_declarator" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "structured_binding_declarator": { - "type": "PREC_DYNAMIC", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - } + "value": "/" } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - } - }, - "ref_qualifier": { - "type": "CHOICE", - "members": [ + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "/" + } + ] + }, { - "type": "STRING", - "value": "&" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "%" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "%" + } + ] }, { - "type": "STRING", - "value": "&&" - } - ] - }, - "trailing_return_type": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "->" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_qualifier" - }, - { - "type": "BLANK" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "^" } - ] - }, - { - "type": "SYMBOL", - "name": "_type_specifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_abstract_declarator" - }, - { - "type": "BLANK" + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "^" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&" } - ] - } - ] - } - }, - "noexcept": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "noexcept" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "BLANK" + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "&" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "|" } - ] - } - ] - } - }, - "throw_specifier": { - "type": "SEQ", - "members": [ + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "|" + } + ] + }, { - "type": "STRING", - "value": "throw" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "=" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "=" + } + ] }, { "type": "SEQ", "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<" + } + }, { "type": "STRING", - "value": "(" + "value": "..." }, { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "type_descriptor" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "type_descriptor" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] + "type": "STRING", + "value": "<" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">" + } }, { "type": "STRING", - "value": ")" + "value": "..." + }, + { + "type": "STRING", + "value": ">" } ] - } - ] - }, - "template_type": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_type_identifier" - } - }, - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "SYMBOL", - "name": "template_argument_list" - } - } - ] - }, - "template_method": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_field_identifier" - } - }, - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "SYMBOL", - "name": "template_argument_list" - } - } - ] - }, - "template_function": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } }, { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "SYMBOL", - "name": "template_argument_list" - } - } - ] - }, - "template_argument_list": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "<" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<<" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "<<" + } + ] }, { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PREC_DYNAMIC", - "value": 3, - "content": { - "type": "SYMBOL", - "name": "type_descriptor" - } - }, - { - "type": "PREC_DYNAMIC", - "value": 2, - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "type_parameter_pack_expansion" - }, - "named": true, - "value": "parameter_pack_expansion" - } - }, - { - "type": "PREC_DYNAMIC", - "value": 1, - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PREC_DYNAMIC", - "value": 3, - "content": { - "type": "SYMBOL", - "name": "type_descriptor" - } - }, - { - "type": "PREC_DYNAMIC", - "value": 2, - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "type_parameter_pack_expansion" - }, - "named": true, - "value": "parameter_pack_expansion" - } - }, - { - "type": "PREC_DYNAMIC", - "value": 1, - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - ] - } - } - ] + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">>" + } }, { - "type": "BLANK" + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": ">>" } ] }, { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", "content": { "type": "STRING", - "value": ">" + "value": "+=" } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "+=" } - }, - "named": false, - "value": ">" - } - ] - }, - "namespace_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "namespace" + ] }, { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "namespace_definition_name" - } - ] - }, - { - "type": "BLANK" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "-=" } - ] - } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "-=" + } + ] }, { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "declaration_list" - } - } - ] - }, - "namespace_definition_name": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "identifier" + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "*=" + } }, { - "type": "SYMBOL", - "name": "namespace_definition_name" + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "*=" } ] }, { - "type": "STRING", - "value": "::" - }, - { - "type": "CHOICE", + "type": "SEQ", "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "/=" + } + }, { "type": "STRING", - "value": "inline" + "value": "..." }, { - "type": "BLANK" + "type": "STRING", + "value": "/=" } ] }, { - "type": "SYMBOL", - "name": "identifier" - } - ] - }, - "using_declaration": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "using" - }, - { - "type": "CHOICE", + "type": "SEQ", "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "%=" + } + }, { "type": "STRING", - "value": "namespace" + "value": "..." }, { - "type": "BLANK" + "type": "STRING", + "value": "%=" } ] }, { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "identifier" + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "^=" + } }, { - "type": "SYMBOL", - "name": "qualified_identifier" + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "^=" } ] }, { - "type": "STRING", - "value": ";" - } - ] - }, - "alias_declaration": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "using" - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_type_identifier" - } - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "type_descriptor" - } - }, - { - "type": "STRING", - "value": ";" - } - ] - }, - "static_assert_declaration": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "static_assert" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "message", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "string_literal" - }, - { - "type": "SYMBOL", - "name": "raw_string_literal" - }, - { - "type": "SYMBOL", - "name": "concatenated_string" - } - ] - } - } - ] + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&=" + } }, { - "type": "BLANK" + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "&=" } ] }, { - "type": "STRING", - "value": ")" - }, - { - "type": "STRING", - "value": ";" - } - ] - }, - "condition_clause": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "|=" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "|=" + } + ] }, { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "initializer", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "declaration" - }, - { - "type": "SYMBOL", - "name": "expression_statement" - } - ] - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "comma_expression" - } - ] - } - } - ] + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">>=" + } + }, + { + "type": "STRING", + "value": "..." }, + { + "type": "STRING", + "value": ">>=" + } + ] + }, + { + "type": "SEQ", + "members": [ { "type": "FIELD", - "name": "value", + "name": "operator", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "condition_declaration" - }, - "named": true, - "value": "declaration" + "type": "STRING", + "value": "<<=" } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "<<=" } ] }, { - "type": "STRING", - "value": ")" - } - ] - }, - "condition_declaration": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_declaration_specifiers" - }, - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "_declarator" - } - }, - { - "type": "CHOICE", + "type": "SEQ", "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, { "type": "FIELD", - "name": "value", + "name": "operator", "content": { - "type": "SYMBOL", - "name": "initializer_list" + "type": "STRING", + "value": "==" } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "==" } ] - } - ] - }, - "for_range_loop": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "for" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_declaration_specifiers" - }, - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "_declarator" - } - }, - { - "type": "STRING", - "value": ":" }, { - "type": "FIELD", - "name": "right", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "initializer_list" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "!=" } - ] - } - }, - { - "type": "STRING", - "value": ")" + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "!=" + } + ] }, { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_statement" - } - } - ] - }, - "co_return_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "co_return" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "<=" + } + ] }, { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_expression" + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">=" + } }, { - "type": "BLANK" + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": ">=" } ] }, { - "type": "STRING", - "value": ";" - } - ] - }, - "co_yield_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "co_yield" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&&" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "&&" + } + ] }, { - "type": "SYMBOL", - "name": "_expression" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "||" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "||" + } + ] }, { - "type": "STRING", - "value": ";" - } - ] - }, - "throw_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "throw" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "," + } + ] }, { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_expression" + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ".*" + } }, { - "type": "BLANK" + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": ".*" } ] }, { - "type": "STRING", - "value": ";" - } - ] - }, - "try_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "try" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "compound_statement" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "catch_clause" - } - } - ] - }, - "catch_clause": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "catch" - }, - { - "type": "FIELD", - "name": "parameters", - "content": { - "type": "SYMBOL", - "name": "parameter_list" - } - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "compound_statement" - } - } - ] - }, - "co_await_expression": { - "type": "PREC_LEFT", - "value": 13, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "operator", - "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "->*" + } + }, + { "type": "STRING", - "value": "co_await" - } - }, - { - "type": "FIELD", - "name": "argument", - "content": { - "type": "SYMBOL", - "name": "_expression" + "value": "..." + }, + { + "type": "STRING", + "value": "->*" } - } - ] - } - }, - "new_expression": { - "type": "PREC_RIGHT", - "value": 15, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { "type": "STRING", - "value": "::" - }, - { - "type": "BLANK" + "value": "or" } - ] - }, - { - "type": "STRING", - "value": "new" - }, - { - "type": "FIELD", - "name": "placement", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "argument_list" - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "_type_specifier" - } - }, - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "new_declarator" - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "argument_list" - }, - { - "type": "SYMBOL", - "name": "initializer_list" - } - ] - }, - { - "type": "BLANK" - } - ] - } - } - ] - } - }, - "new_declarator": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "FIELD", - "name": "length", - "content": { - "type": "SYMBOL", - "name": "_expression" + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "or" } - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "new_declarator" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "delete_expression": { - "type": "SEQ", - "members": [ + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "and" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "and" + } + ] + }, { - "type": "CHOICE", + "type": "SEQ", "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "bitor" + } + }, { "type": "STRING", - "value": "::" + "value": "..." }, { - "type": "BLANK" + "type": "STRING", + "value": "bitor" } ] }, { - "type": "STRING", - "value": "delete" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "xor" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "xor" + } + ] }, { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "STRING", - "value": "]" - } - ] + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "bitand" + } }, { - "type": "BLANK" + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "bitand" } ] }, { - "type": "SYMBOL", - "name": "_expression" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "not_eq" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "not_eq" + } + ] } ] }, - "lambda_expression": { + "_unary_left_fold": { "type": "SEQ", "members": [ { "type": "FIELD", - "name": "captures", + "name": "left", "content": { - "type": "SYMBOL", - "name": "lambda_capture_specifier" + "type": "STRING", + "value": "..." } }, { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "abstract_function_declarator" - } - }, - { - "type": "BLANK" - } - ] + "type": "FIELD", + "name": "operator", + "content": { + "type": "SYMBOL", + "name": "_fold_operator" + } }, { "type": "FIELD", - "name": "body", + "name": "right", "content": { "type": "SYMBOL", - "name": "compound_statement" + "name": "expression" } } ] }, - "lambda_capture_specifier": { - "type": "PREC", - "value": 18, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "lambda_default_capture" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "lambda_default_capture" - }, - { - "type": "STRING", - "value": "," - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - } - ] - } - ] - } - ] - }, - { + "_unary_right_fold": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "SYMBOL", + "name": "_fold_operator" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { "type": "STRING", - "value": "]" + "value": "..." } - ] - } + } + ] }, - "lambda_default_capture": { - "type": "CHOICE", + "_binary_fold": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "SYMBOL", + "name": "_binary_fold_operator" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + "fold_expression": { + "type": "SEQ", "members": [ { "type": "STRING", - "value": "=" + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_unary_right_fold" + }, + { + "type": "SYMBOL", + "name": "_unary_left_fold" + }, + { + "type": "SYMBOL", + "name": "_binary_fold" + } + ] }, { "type": "STRING", - "value": "&" + "value": ")" } ] }, @@ -10920,7 +17095,7 @@ "name": "pattern", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -10947,6 +17122,23 @@ } ] }, + "identifier_parameter_pack_expansion": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "pattern", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "..." + } + ] + }, "destructor_name": { "type": "PREC", "value": 1, @@ -11026,6 +17218,10 @@ "type": "SYMBOL", "name": "template_type" }, + { + "type": "SYMBOL", + "name": "decltype" + }, { "type": "ALIAS", "content": { @@ -11086,8 +17282,12 @@ "name": "template_method" }, { - "type": "SYMBOL", - "name": "_field_identifier" + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "_field_identifier" + } } ] } @@ -11125,8 +17325,25 @@ "name": "template_function" }, { - "type": "SYMBOL", - "name": "identifier" + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "template" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] }, { "type": "SYMBOL", @@ -11135,6 +17352,10 @@ { "type": "SYMBOL", "name": "destructor_name" + }, + { + "type": "SYMBOL", + "name": "pointer_type_declarator" } ] } @@ -11216,6 +17437,101 @@ } ] }, + "_assignment_expression_lhs": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "%=" + }, + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "<<=" + }, + { + "type": "STRING", + "value": ">>=" + }, + { + "type": "STRING", + "value": "&=" + }, + { + "type": "STRING", + "value": "^=" + }, + { + "type": "STRING", + "value": "|=" + }, + { + "type": "STRING", + "value": "and_eq" + }, + { + "type": "STRING", + "value": "or_eq" + }, + { + "type": "STRING", + "value": "xor_eq" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } + } + ] + }, "operator_name": { "type": "PREC", "value": 1, @@ -11349,6 +17665,10 @@ "type": "STRING", "value": ">=" }, + { + "type": "STRING", + "value": "<=>" + }, { "type": "STRING", "value": "&&" @@ -11385,6 +17705,50 @@ "type": "STRING", "value": "[]" }, + { + "type": "STRING", + "value": "xor" + }, + { + "type": "STRING", + "value": "bitand" + }, + { + "type": "STRING", + "value": "bitor" + }, + { + "type": "STRING", + "value": "compl" + }, + { + "type": "STRING", + "value": "not" + }, + { + "type": "STRING", + "value": "xor_eq" + }, + { + "type": "STRING", + "value": "and_eq" + }, + { + "type": "STRING", + "value": "or_eq" + }, + { + "type": "STRING", + "value": "not_eq" + }, + { + "type": "STRING", + "value": "and" + }, + { + "type": "STRING", + "value": "or" + }, { "type": "SEQ", "members": [ @@ -11437,10 +17801,6 @@ "type": "STRING", "value": "this" }, - "nullptr": { - "type": "STRING", - "value": "nullptr" - }, "literal_suffix": { "type": "IMMEDIATE_TOKEN", "content": { @@ -11464,15 +17824,7 @@ }, { "type": "SYMBOL", - "name": "string_literal" - }, - { - "type": "SYMBOL", - "name": "raw_string_literal" - }, - { - "type": "SYMBOL", - "name": "concatenated_string" + "name": "_string" } ] }, @@ -11658,7 +18010,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "_expression_not_binary" }, { "type": "SYMBOL", @@ -11680,7 +18032,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "_expression_not_binary" }, { "type": "SYMBOL", @@ -11708,13 +18060,8 @@ ] }, "macro_statement": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER" - } - ] + "type": "STRING", + "value": "MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER" }, "macro_annotation": { "type": "CHOICE", @@ -12010,36 +18357,34 @@ ], "conflicts": [ [ - "_type_specifier", + "type_specifier", "_declarator" ], [ - "_type_specifier", - "_declarator", - "macro_type_specifier" + "type_specifier", + "expression" ], [ - "_type_specifier", - "_expression" + "sized_type_specifier" ], [ - "_type_specifier", - "_expression", - "macro_type_specifier" + "attributed_statement" ], [ - "_type_specifier", - "macro_type_specifier" + "_declaration_modifiers", + "attributed_statement" ], [ - "sized_type_specifier" + "_top_level_item", + "_top_level_statement" ], [ - "attributed_statement" + "_block_item", + "statement" ], [ - "_declaration_modifiers", - "attributed_statement" + "type_qualifier", + "extension_expression" ], [ "template_function", @@ -12048,17 +18393,13 @@ [ "template_function", "template_type", - "_expression" + "expression" ], [ "template_function", "template_type", "qualified_identifier" ], - [ - "template_method", - "field_expression" - ], [ "template_type", "qualified_type_identifier" @@ -12067,33 +18408,50 @@ "qualified_type_identifier", "qualified_identifier" ], - [ - "dependent_type_identifier", - "dependent_identifier" - ], [ "comma_expression", "initializer_list" ], [ - "_expression", + "expression", "_declarator" ], [ - "_expression", + "expression", "structured_binding_declarator" ], [ - "_expression", + "expression", "_declarator", - "_type_specifier" + "type_specifier" + ], + [ + "expression", + "identifier_parameter_pack_expansion" + ], + [ + "expression", + "_lambda_capture_identifier" + ], + [ + "expression", + "_lambda_capture" + ], + [ + "expression", + "structured_binding_declarator", + "_lambda_capture_identifier" + ], + [ + "structured_binding_declarator", + "_lambda_capture_identifier" ], [ "parameter_list", "argument_list" ], [ - "_type_specifier", + "type_specifier", "call_expression" ], [ @@ -12101,50 +18459,88 @@ "_constructor_specifiers" ], [ - "_declaration_modifiers", - "operator_cast_declaration", - "operator_cast_definition", - "constructor_or_destructor_definition" + "_binary_fold_operator", + "_fold_operator" ], [ - "_declaration_modifiers", - "attributed_statement", - "operator_cast_declaration", - "operator_cast_definition", - "constructor_or_destructor_definition" + "_function_declarator_seq" ], [ - "attributed_statement", - "operator_cast_declaration", - "operator_cast_definition", - "constructor_or_destructor_definition" + "type_specifier", + "sized_type_specifier" + ], + [ + "initializer_pair", + "comma_expression" + ], + [ + "expression_statement", + "_for_statement_body" + ], + [ + "init_statement", + "_for_statement_body" + ], + [ + "field_expression", + "template_method", + "template_type" + ], + [ + "qualified_field_identifier", + "template_method", + "template_type" + ] + ], + "precedences": [ + [ + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "SYMBOL", + "name": "type_qualifier" + } + ], + [ + { + "type": "SYMBOL", + "name": "_expression_not_binary" + }, + { + "type": "SYMBOL", + "name": "_class_name" + } ] ], - "precedences": [], "externals": [ { "type": "SYMBOL", - "name": "raw_string_literal" + "name": "raw_string_delimiter" + }, + { + "type": "SYMBOL", + "name": "raw_string_content" } ], "inline": [ - "_statement", - "_top_level_item", "_type_identifier", "_field_identifier", "_statement_identifier", "_non_case_statement", "_assignment_left_expression", + "_expression_not_binary", "_namespace_identifier" ], "supertypes": [ - "_expression", - "_statement", - "_type_specifier", + "expression", + "statement", + "type_specifier", "_declarator", "_field_declarator", "_type_declarator", "_abstract_declarator" - ] -} - + ], + "reserved": {} +} \ No newline at end of file diff --git a/tree-sitter-mozcpp/src/node-types.json b/tree-sitter-mozcpp/src/node-types.json index 36b3f5bec..b9f8fb3fe 100644 --- a/tree-sitter-mozcpp/src/node-types.json +++ b/tree-sitter-mozcpp/src/node-types.json @@ -80,9 +80,93 @@ ] }, { - "type": "_expression", + "type": "_field_declarator", + "named": true, + "subtypes": [ + { + "type": "array_declarator", + "named": true + }, + { + "type": "attributed_declarator", + "named": true + }, + { + "type": "field_identifier", + "named": true + }, + { + "type": "function_declarator", + "named": true + }, + { + "type": "operator_name", + "named": true + }, + { + "type": "parenthesized_declarator", + "named": true + }, + { + "type": "pointer_declarator", + "named": true + }, + { + "type": "reference_declarator", + "named": true + }, + { + "type": "template_method", + "named": true + } + ] + }, + { + "type": "_type_declarator", + "named": true, + "subtypes": [ + { + "type": "array_declarator", + "named": true + }, + { + "type": "attributed_declarator", + "named": true + }, + { + "type": "function_declarator", + "named": true + }, + { + "type": "parenthesized_declarator", + "named": true + }, + { + "type": "pointer_declarator", + "named": true + }, + { + "type": "primitive_type", + "named": true + }, + { + "type": "reference_declarator", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + }, + { + "type": "expression", "named": true, "subtypes": [ + { + "type": "alignof_expression", + "named": true + }, { "type": "assignment_expression", "named": true @@ -123,6 +207,10 @@ "type": "delete_expression", "named": true }, + { + "type": "extension_expression", + "named": true + }, { "type": "false", "named": true @@ -131,6 +219,18 @@ "type": "field_expression", "named": true }, + { + "type": "fold_expression", + "named": true + }, + { + "type": "generic_expression", + "named": true + }, + { + "type": "gnu_asm_expression", + "named": true + }, { "type": "identifier", "named": true @@ -148,11 +248,11 @@ "named": true }, { - "type": "nullptr", + "type": "number_literal", "named": true }, { - "type": "number_literal", + "type": "offsetof_expression", "named": true }, { @@ -175,6 +275,14 @@ "type": "raw_string_literal", "named": true }, + { + "type": "requires_clause", + "named": true + }, + { + "type": "requires_expression", + "named": true + }, { "type": "sizeof_expression", "named": true @@ -214,49 +322,7 @@ ] }, { - "type": "_field_declarator", - "named": true, - "subtypes": [ - { - "type": "array_declarator", - "named": true - }, - { - "type": "attributed_declarator", - "named": true - }, - { - "type": "field_identifier", - "named": true - }, - { - "type": "function_declarator", - "named": true - }, - { - "type": "operator_name", - "named": true - }, - { - "type": "parenthesized_declarator", - "named": true - }, - { - "type": "pointer_declarator", - "named": true - }, - { - "type": "reference_declarator", - "named": true - }, - { - "type": "template_method", - "named": true - } - ] - }, - { - "type": "_statement", + "type": "statement", "named": true, "subtypes": [ { @@ -320,61 +386,35 @@ "named": true }, { - "type": "switch_statement", - "named": true - }, - { - "type": "throw_statement", - "named": true - }, - { - "type": "try_statement", - "named": true - }, - { - "type": "while_statement", - "named": true - } - ] - }, - { - "type": "_type_declarator", - "named": true, - "subtypes": [ - { - "type": "array_declarator", + "type": "seh_leave_statement", "named": true }, { - "type": "attributed_declarator", + "type": "seh_try_statement", "named": true }, { - "type": "function_declarator", + "type": "switch_statement", "named": true }, { - "type": "parenthesized_declarator", + "type": "throw_statement", "named": true }, { - "type": "pointer_declarator", + "type": "try_statement", "named": true }, { - "type": "type_identifier", + "type": "while_statement", "named": true } ] }, { - "type": "_type_specifier", + "type": "type_specifier", "named": true, "subtypes": [ - { - "type": "auto", - "named": true - }, { "type": "class_specifier", "named": true @@ -391,6 +431,10 @@ "type": "enum_specifier", "named": true }, + { + "type": "placeholder_type_specifier", + "named": true + }, { "type": "primitive_type", "named": true @@ -444,7 +488,7 @@ "named": false }, { - "type": "_expression", + "type": "expression", "named": true } ] @@ -490,6 +534,18 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "gnu_asm_expression", + "named": true + }, { "type": "noexcept", "named": true @@ -498,6 +554,10 @@ "type": "ref_qualifier", "named": true }, + { + "type": "requires_clause", + "named": true + }, { "type": "throw_specifier", "named": true @@ -509,6 +569,10 @@ { "type": "type_qualifier", "named": true + }, + { + "type": "virtual_specifier", + "named": true } ] } @@ -518,12 +582,16 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ { "type": "_abstract_declarator", "named": true + }, + { + "type": "ms_call_modifier", + "named": true } ] } @@ -547,6 +615,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "ms_pointer_modifier", + "named": true + }, { "type": "type_qualifier", "named": true @@ -598,118 +670,143 @@ } ] } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + } + ] } }, { - "type": "alone_macro_call", - "named": true, - "fields": {} - }, - { - "type": "argument_list", + "type": "alignas_qualifier", "named": true, "fields": {}, "children": { - "multiple": true, - "required": false, + "multiple": false, + "required": true, "types": [ { - "type": "_expression", - "named": true - }, - { - "type": "initializer_list", + "type": "expression", "named": true }, { - "type": "preproc_defined", + "type": "type_descriptor", "named": true } ] } }, { - "type": "array_declarator", + "type": "alignof_expression", "named": true, "fields": { - "declarator": { + "type": { "multiple": false, "required": true, "types": [ { - "type": "_declarator", - "named": true - }, - { - "type": "_field_declarator", - "named": true - }, - { - "type": "_type_declarator", - "named": true - } - ] - }, - "size": { - "multiple": false, - "required": false, - "types": [ - { - "type": "*", - "named": false - }, - { - "type": "_expression", + "type": "type_descriptor", "named": true } ] } - }, + } + }, + { + "type": "alone_macro_call", + "named": true, + "fields": {} + }, + { + "type": "argument_list", + "named": true, + "fields": {}, "children": { "multiple": true, "required": false, "types": [ { - "type": "type_qualifier", + "type": "compound_statement", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "initializer_list", + "named": true + }, + { + "type": "preproc_defined", "named": true } ] } }, { - "type": "assignment_expression", + "type": "array_declarator", "named": true, "fields": { - "left": { + "declarator": { "multiple": false, "required": true, "types": [ { - "type": "call_expression", - "named": true - }, - { - "type": "field_expression", + "type": "_declarator", "named": true }, { - "type": "identifier", + "type": "_field_declarator", "named": true }, { - "type": "parenthesized_expression", + "type": "_type_declarator", "named": true - }, + } + ] + }, + "size": { + "multiple": false, + "required": false, + "types": [ { - "type": "pointer_expression", - "named": true + "type": "*", + "named": false }, { - "type": "qualified_identifier", + "type": "expression", "named": true - }, + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "assignment_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ { - "type": "subscript_expression", + "type": "expression", "named": true } ] @@ -758,6 +855,18 @@ "type": "^=", "named": false }, + { + "type": "and_eq", + "named": false + }, + { + "type": "or_eq", + "named": false + }, + { + "type": "xor_eq", + "named": false + }, { "type": "|=", "named": false @@ -769,7 +878,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", + "named": true + }, + { + "type": "initializer_list", "named": true } ] @@ -878,11 +991,11 @@ "required": true, "types": [ { - "type": "_statement", + "type": "attribute_declaration", "named": true }, { - "type": "attribute_declaration", + "type": "statement", "named": true } ] @@ -896,6 +1009,14 @@ "multiple": true, "required": true, "types": [ + { + "type": "access_specifier", + "named": true + }, + { + "type": "attribute_declaration", + "named": true + }, { "type": "qualified_identifier", "named": true @@ -920,7 +1041,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -977,6 +1098,10 @@ "type": "<=", "named": false }, + { + "type": "<=>", + "named": false + }, { "type": "==", "named": false @@ -997,6 +1122,30 @@ "type": "^", "named": false }, + { + "type": "and", + "named": false + }, + { + "type": "bitand", + "named": false + }, + { + "type": "bitor", + "named": false + }, + { + "type": "not_eq", + "named": false + }, + { + "type": "or", + "named": false + }, + { + "type": "xor", + "named": false + }, { "type": "|", "named": false @@ -1012,7 +1161,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -1032,7 +1181,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1064,20 +1213,168 @@ "named": false }, { - "type": "_expression", + "type": "alignof_expression", "named": true }, { "type": "argument_list", "named": true }, + { + "type": "assignment_expression", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "char_literal", + "named": true + }, + { + "type": "co_await_expression", + "named": true + }, + { + "type": "compound_literal_expression", + "named": true + }, + { + "type": "concatenated_string", + "named": true + }, + { + "type": "conditional_expression", + "named": true + }, + { + "type": "delete_expression", + "named": true + }, + { + "type": "extension_expression", + "named": true + }, + { + "type": "false", + "named": true + }, + { + "type": "field_expression", + "named": true + }, + { + "type": "fold_expression", + "named": true + }, + { + "type": "generic_expression", + "named": true + }, + { + "type": "gnu_asm_expression", + "named": true + }, + { + "type": "identifier", + "named": true + }, { "type": "initializer_list", "named": true }, + { + "type": "lambda_expression", + "named": true + }, + { + "type": "new_expression", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "number_literal", + "named": true + }, + { + "type": "offsetof_expression", + "named": true + }, { "type": "parameter_declaration", "named": true + }, + { + "type": "parameter_pack_expansion", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "pointer_expression", + "named": true + }, + { + "type": "qualified_identifier", + "named": true + }, + { + "type": "raw_string_literal", + "named": true + }, + { + "type": "requires_clause", + "named": true + }, + { + "type": "requires_expression", + "named": true + }, + { + "type": "sizeof_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "template_function", + "named": true + }, + { + "type": "this", + "named": true + }, + { + "type": "true", + "named": true + }, + { + "type": "unary_expression", + "named": true + }, + { + "type": "update_expression", + "named": true + }, + { + "type": "user_defined_literal", + "named": true } ] }, @@ -1154,7 +1451,7 @@ "named": false }, { - "type": "_expression", + "type": "expression", "named": true }, { @@ -1174,7 +1471,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1245,15 +1542,23 @@ "named": true }, { - "type": "switch_statement", + "type": "seh_leave_statement", "named": true }, { - "type": "throw_statement", + "type": "seh_try_statement", "named": true }, { - "type": "try_statement", + "type": "switch_statement", + "named": true + }, + { + "type": "throw_statement", + "named": true + }, + { + "type": "try_statement", "named": true }, { @@ -1286,7 +1591,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1324,9 +1629,13 @@ "named": true, "fields": {}, "children": { - "multiple": false, - "required": false, + "multiple": true, + "required": true, "types": [ + { + "type": "character", + "named": true + }, { "type": "escape_sequence", "named": true @@ -1395,7 +1704,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1421,7 +1730,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1436,7 +1745,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1451,7 +1760,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1461,11 +1770,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "comma_expression", "named": true }, { - "type": "comma_expression", + "type": "expression", "named": true } ] @@ -1480,6 +1789,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "primitive_type", + "named": true + }, { "type": "qualified_identifier", "named": true @@ -1511,31 +1824,38 @@ } }, { - "type": "compound_statement", + "type": "compound_requirement", "named": true, "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { - "type": "_statement", + "type": "expression", "named": true }, { - "type": "_type_specifier", + "type": "trailing_return_type", "named": true - }, + } + ] + } + }, + { + "type": "compound_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ { "type": "alias_declaration", "named": true }, { - "type": "alone_macro", - "named": true - }, - { - "type": "alone_macro_call", + "type": "concept_definition", "named": true }, { @@ -1550,6 +1870,10 @@ "type": "linkage_specification", "named": true }, + { + "type": "namespace_alias_definition", + "named": true + }, { "type": "namespace_definition", "named": true @@ -1578,6 +1902,10 @@ "type": "preproc_include", "named": true }, + { + "type": "statement", + "named": true + }, { "type": "static_assert_declaration", "named": true @@ -1594,6 +1922,10 @@ "type": "type_definition", "named": true }, + { + "type": "type_specifier", + "named": true + }, { "type": "using_declaration", "named": true @@ -1624,6 +1956,32 @@ ] } }, + { + "type": "concept_definition", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, { "type": "condition_clause", "named": true, @@ -1633,11 +1991,7 @@ "required": false, "types": [ { - "type": "declaration", - "named": true - }, - { - "type": "expression_statement", + "type": "init_statement", "named": true } ] @@ -1647,15 +2001,15 @@ "required": true, "types": [ { - "type": "_expression", + "type": "comma_expression", "named": true }, { - "type": "comma_expression", + "type": "declaration", "named": true }, { - "type": "declaration", + "type": "expression", "named": true } ] @@ -1671,7 +2025,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1681,17 +2035,197 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] }, "consequence": { "multiple": false, + "required": false, + "types": [ + { + "type": "comma_expression", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "constraint_conjunction", + "named": true, + "fields": { + "left": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "constraint_conjunction", + "named": true + }, + { + "type": "constraint_disjunction", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "&&", + "named": false + }, + { + "type": "and", + "named": false + } + ] + }, + "right": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "constraint_conjunction", + "named": true + }, + { + "type": "constraint_disjunction", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + } + }, + { + "type": "constraint_disjunction", + "named": true, + "fields": { + "left": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "constraint_conjunction", + "named": true + }, + { + "type": "constraint_disjunction", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "or", + "named": false + }, + { + "type": "||", + "named": false + } + ] + }, + "right": { + "multiple": true, "required": true, "types": [ { - "type": "_expression", + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "constraint_conjunction", + "named": true + }, + { + "type": "constraint_disjunction", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", "named": true } ] @@ -1715,6 +2249,10 @@ "type": "_declarator", "named": true }, + { + "type": "gnu_asm_expression", + "named": true + }, { "type": "init_declarator", "named": true @@ -1730,7 +2268,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1740,7 +2278,7 @@ "required": false, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -1750,7 +2288,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -1787,10 +2325,6 @@ { "type": "type_qualifier", "named": true - }, - { - "type": "virtual_function_specifier", - "named": true } ] } @@ -1804,23 +2338,11 @@ "required": false, "types": [ { - "type": "_statement", + "type": "alias_declaration", "named": true }, { - "type": "_type_specifier", - "named": true - }, - { - "type": "alias_declaration", - "named": true - }, - { - "type": "alone_macro", - "named": true - }, - { - "type": "alone_macro_call", + "type": "concept_definition", "named": true }, { @@ -1835,6 +2357,10 @@ "type": "linkage_specification", "named": true }, + { + "type": "namespace_alias_definition", + "named": true + }, { "type": "namespace_definition", "named": true @@ -1863,6 +2389,10 @@ "type": "preproc_include", "named": true }, + { + "type": "statement", + "named": true + }, { "type": "static_assert_declaration", "named": true @@ -1879,6 +2409,10 @@ "type": "type_definition", "named": true }, + { + "type": "type_specifier", + "named": true + }, { "type": "using_declaration", "named": true @@ -1895,7 +2429,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "auto", + "named": true + }, + { + "type": "expression", "named": true } ] @@ -1915,7 +2453,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1958,7 +2496,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -1988,7 +2526,7 @@ "required": true, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -2005,6 +2543,21 @@ } } }, + { + "type": "else_clause", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + } + }, { "type": "enum_specifier", "named": true, @@ -2013,6 +2566,10 @@ "multiple": false, "required": false, "types": [ + { + "type": "primitive_type", + "named": true + }, { "type": "qualified_identifier", "named": true @@ -2055,6 +2612,16 @@ } ] } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_specifier", + "named": true + } + ] } }, { @@ -2076,7 +2643,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2094,6 +2661,18 @@ { "type": "enumerator", "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true } ] } @@ -2107,7 +2686,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2122,11 +2701,26 @@ "required": false, "types": [ { - "type": "_expression", + "type": "comma_expression", "named": true }, { - "type": "comma_expression", + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "extension_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", "named": true } ] @@ -2147,11 +2741,11 @@ ] }, "default_value": { - "multiple": false, + "multiple": true, "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -2165,7 +2759,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -2198,10 +2792,6 @@ { "type": "type_qualifier", "named": true - }, - { - "type": "virtual_function_specifier", - "named": true } ] } @@ -2305,7 +2895,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2326,6 +2916,10 @@ "type": "field_identifier", "named": true }, + { + "type": "qualified_identifier", + "named": true + }, { "type": "template_method", "named": true @@ -2334,7 +2928,7 @@ }, "operator": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "->", @@ -2343,6 +2937,10 @@ { "type": ".", "named": false + }, + { + "type": ".*", + "named": false } ] } @@ -2395,179 +2993,377 @@ } }, { - "type": "for_range_loop", + "type": "fold_expression", "named": true, "fields": { - "body": { + "left": { "multiple": false, "required": true, "types": [ { - "type": "_statement", - "named": true - } - ] - }, - "declarator": { - "multiple": false, - "required": true, - "types": [ + "type": "...", + "named": false + }, { - "type": "_declarator", + "type": "expression", "named": true } ] }, - "right": { + "operator": { "multiple": false, "required": true, "types": [ { - "type": "_expression", - "named": true + "type": "!=", + "named": false }, { - "type": "initializer_list", - "named": true - } - ] - }, - "type": { - "multiple": false, - "required": true, - "types": [ + "type": "%", + "named": false + }, { - "type": "_type_specifier", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "attribute_declaration", - "named": true - }, - { - "type": "attribute_specifier", - "named": true - }, - { - "type": "ms_declspec_modifier", - "named": true - }, - { - "type": "storage_class_specifier", - "named": true - }, - { - "type": "type_qualifier", - "named": true - }, - { - "type": "virtual_function_specifier", - "named": true - } - ] - } - }, - { - "type": "for_statement", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ + "type": "%=", + "named": false + }, { - "type": "_statement", - "named": true - } - ] - }, - "condition": { - "multiple": false, - "required": false, - "types": [ + "type": "&", + "named": false + }, { - "type": "_expression", - "named": true + "type": "&&", + "named": false }, { - "type": "comma_expression", - "named": true - } - ] - }, - "initializer": { - "multiple": false, - "required": false, - "types": [ + "type": "&=", + "named": false + }, { - "type": "_expression", - "named": true + "type": "*", + "named": false }, { - "type": "comma_expression", - "named": true + "type": "*=", + "named": false }, { - "type": "declaration", - "named": true - } - ] - }, - "update": { - "multiple": false, - "required": false, - "types": [ + "type": "+", + "named": false + }, { - "type": "_expression", - "named": true + "type": "+=", + "named": false }, { - "type": "comma_expression", - "named": true - } - ] - } - } - }, - { - "type": "friend_declaration", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "declaration", - "named": true - }, - { - "type": "function_definition", - "named": true - }, - { - "type": "qualified_identifier", - "named": true - }, - { - "type": "template_type", - "named": true - }, - { - "type": "type_identifier", - "named": true - } - ] - } - }, - { + "type": ",", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "-=", + "named": false + }, + { + "type": "->*", + "named": false + }, + { + "type": ".*", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "/=", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<<=", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": ">>=", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "^=", + "named": false + }, + { + "type": "and", + "named": false + }, + { + "type": "bitand", + "named": false + }, + { + "type": "bitor", + "named": false + }, + { + "type": "not_eq", + "named": false + }, + { + "type": "or", + "named": false + }, + { + "type": "xor", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "|=", + "named": false + }, + { + "type": "||", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "...", + "named": false + }, + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "for_range_loop", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + }, + "declarator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + } + ] + }, + "initializer": { + "multiple": false, + "required": false, + "types": [ + { + "type": "init_statement", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "initializer_list", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "for_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": false, + "types": [ + { + "type": "comma_expression", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + }, + "initializer": { + "multiple": false, + "required": false, + "types": [ + { + "type": "comma_expression", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + }, + "update": { + "multiple": false, + "required": false, + "types": [ + { + "type": "comma_expression", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "friend_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "qualified_identifier", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, + { "type": "function_declarator", "named": true, "fields": { @@ -2584,151 +3380,413 @@ "named": true }, { - "type": "_type_declarator", + "type": "_type_declarator", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parameter_list", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "gnu_asm_expression", + "named": true + }, + { + "type": "noexcept", + "named": true + }, + { + "type": "ref_qualifier", + "named": true + }, + { + "type": "requires_clause", + "named": true + }, + { + "type": "throw_specifier", + "named": true + }, + { + "type": "trailing_return_type", + "named": true + }, + { + "type": "type_qualifier", + "named": true + }, + { + "type": "virtual_specifier", + "named": true + } + ] + } + }, + { + "type": "function_definition", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "compound_statement", + "named": true + }, + { + "type": "try_statement", + "named": true + } + ] + }, + "declarator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + }, + { + "type": "_field_declarator", + "named": true + }, + { + "type": "operator_cast", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "default_method_clause", + "named": true + }, + { + "type": "delete_method_clause", + "named": true + }, + { + "type": "explicit_function_specifier", + "named": true + }, + { + "type": "field_initializer_list", + "named": true + }, + { + "type": "ms_call_modifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "pure_virtual_clause", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "try_statement", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "generic_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "type_descriptor", + "named": true + } + ] + } + }, + { + "type": "gnu_asm_clobber_list", + "named": true, + "fields": { + "register": { + "multiple": true, + "required": false, + "types": [ + { + "type": "concatenated_string", + "named": true + }, + { + "type": "raw_string_literal", + "named": true + }, + { + "type": "string_literal", + "named": true + } + ] + } + } + }, + { + "type": "gnu_asm_expression", + "named": true, + "fields": { + "assembly_code": { + "multiple": false, + "required": true, + "types": [ + { + "type": "concatenated_string", + "named": true + }, + { + "type": "raw_string_literal", + "named": true + }, + { + "type": "string_literal", + "named": true + } + ] + }, + "clobbers": { + "multiple": false, + "required": false, + "types": [ + { + "type": "gnu_asm_clobber_list", + "named": true + } + ] + }, + "goto_labels": { + "multiple": false, + "required": false, + "types": [ + { + "type": "gnu_asm_goto_list", + "named": true + } + ] + }, + "input_operands": { + "multiple": false, + "required": false, + "types": [ + { + "type": "gnu_asm_input_operand_list", + "named": true + } + ] + }, + "output_operands": { + "multiple": false, + "required": false, + "types": [ + { + "type": "gnu_asm_output_operand_list", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "gnu_asm_qualifier", + "named": true + } + ] + } + }, + { + "type": "gnu_asm_goto_list", + "named": true, + "fields": { + "label": { + "multiple": true, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + } + }, + { + "type": "gnu_asm_input_operand", + "named": true, + "fields": { + "constraint": { + "multiple": false, + "required": true, + "types": [ + { + "type": "string_literal", + "named": true + } + ] + }, + "symbol": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", "named": true } ] }, - "parameters": { + "value": { "multiple": false, "required": true, "types": [ { - "type": "parameter_list", + "type": "expression", "named": true } ] } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "attribute_specifier", - "named": true - }, - { - "type": "noexcept", - "named": true - }, - { - "type": "ref_qualifier", - "named": true - }, - { - "type": "throw_specifier", - "named": true - }, - { - "type": "trailing_return_type", - "named": true - }, - { - "type": "type_qualifier", - "named": true - }, - { - "type": "virtual_specifier", - "named": true - } - ] } }, { - "type": "function_definition", + "type": "gnu_asm_input_operand_list", "named": true, "fields": { - "body": { - "multiple": false, + "operand": { + "multiple": true, "required": false, "types": [ { - "type": "compound_statement", + "type": "gnu_asm_input_operand", "named": true } ] - }, - "declarator": { + } + } + }, + { + "type": "gnu_asm_output_operand", + "named": true, + "fields": { + "constraint": { "multiple": false, "required": true, "types": [ { - "type": "_declarator", - "named": true - }, - { - "type": "_field_declarator", + "type": "string_literal", "named": true - }, + } + ] + }, + "symbol": { + "multiple": false, + "required": false, + "types": [ { - "type": "operator_cast", + "type": "identifier", "named": true } ] }, - "type": { + "value": { "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "gnu_asm_output_operand_list", + "named": true, + "fields": { + "operand": { + "multiple": true, "required": false, "types": [ { - "type": "_type_specifier", + "type": "gnu_asm_output_operand", "named": true } ] } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "attribute_declaration", - "named": true - }, - { - "type": "attribute_specifier", - "named": true - }, - { - "type": "default_method_clause", - "named": true - }, - { - "type": "delete_method_clause", - "named": true - }, - { - "type": "explicit_function_specifier", - "named": true - }, - { - "type": "field_initializer_list", - "named": true - }, - { - "type": "ms_call_modifier", - "named": true - }, - { - "type": "ms_declspec_modifier", - "named": true - }, - { - "type": "storage_class_specifier", - "named": true - }, - { - "type": "type_qualifier", - "named": true - }, - { - "type": "virtual_function_specifier", - "named": true - } - ] } }, + { + "type": "gnu_asm_qualifier", + "named": true, + "fields": {} + }, { "type": "goto_statement", "named": true, @@ -2754,7 +3812,7 @@ "required": false, "types": [ { - "type": "_statement", + "type": "else_clause", "named": true } ] @@ -2774,7 +3832,7 @@ "required": true, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -2800,11 +3858,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "argument_list", "named": true }, { - "type": "argument_list", + "type": "expression", "named": true }, { @@ -2815,6 +3873,33 @@ } } }, + { + "type": "init_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "alias_declaration", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "expression_statement", + "named": true + }, + { + "type": "type_definition", + "named": true + } + ] + } + }, { "type": "initializer_list", "named": true, @@ -2824,7 +3909,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -2850,9 +3935,17 @@ "type": "field_designator", "named": true }, + { + "type": "field_identifier", + "named": true + }, { "type": "subscript_designator", "named": true + }, + { + "type": "subscript_range_designator", + "named": true } ] }, @@ -2861,7 +3954,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -2892,12 +3985,42 @@ "required": true, "types": [ { - "type": "_statement", + "type": "declaration", + "named": true + }, + { + "type": "statement", "named": true } ] } }, + { + "type": "lambda_capture_initializer", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, { "type": "lambda_capture_specifier", "named": true, @@ -2907,12 +4030,28 @@ "required": false, "types": [ { - "type": "_expression", + "type": "identifier", + "named": true + }, + { + "type": "lambda_capture_initializer", "named": true }, { "type": "lambda_default_capture", "named": true + }, + { + "type": "parameter_pack_expansion", + "named": true + }, + { + "type": "qualified_identifier", + "named": true + }, + { + "type": "this", + "named": true } ] } @@ -2946,6 +4085,16 @@ } ] }, + "constraint": { + "multiple": false, + "required": false, + "types": [ + { + "type": "requires_clause", + "named": true + } + ] + }, "declarator": { "multiple": false, "required": false, @@ -2955,6 +4104,16 @@ "named": true } ] + }, + "template_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "template_parameter_list", + "named": true + } + ] } } }, @@ -2997,11 +4156,6 @@ "named": true, "fields": {} }, - { - "type": "macro_statement", - "named": true, - "fields": {} - }, { "type": "ms_based_modifier", "named": true, @@ -3069,6 +4223,36 @@ "named": true, "fields": {} }, + { + "type": "namespace_alias_definition", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "namespace_identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "namespace_identifier", + "named": true + }, + { + "type": "nested_namespace_specifier", + "named": true + } + ] + } + }, { "type": "namespace_definition", "named": true, @@ -3088,31 +4272,41 @@ "required": false, "types": [ { - "type": "identifier", + "type": "namespace_identifier", "named": true }, { - "type": "namespace_definition_name", + "type": "nested_namespace_specifier", "named": true } ] } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + } + ] } }, { - "type": "namespace_definition_name", + "type": "nested_namespace_specifier", "named": true, "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { - "type": "identifier", + "type": "namespace_identifier", "named": true }, { - "type": "namespace_definition_name", + "type": "nested_namespace_specifier", "named": true } ] @@ -3127,7 +4321,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3187,7 +4381,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -3203,12 +4397,43 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] } }, + { + "type": "null", + "named": true, + "fields": {} + }, + { + "type": "offsetof_expression", + "named": true, + "fields": { + "member": { + "multiple": false, + "required": true, + "types": [ + { + "type": "field_identifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_descriptor", + "named": true + } + ] + } + } + }, { "type": "operator_cast", "named": true, @@ -3228,7 +4453,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -3257,10 +4482,6 @@ { "type": "type_qualifier", "named": true - }, - { - "type": "virtual_function_specifier", - "named": true } ] } @@ -3291,6 +4512,10 @@ { "type": "_declarator", "named": true + }, + { + "type": "abstract_reference_declarator", + "named": true } ] }, @@ -3299,7 +4524,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3309,7 +4534,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -3338,10 +4563,6 @@ { "type": "type_qualifier", "named": true - }, - { - "type": "virtual_function_specifier", - "named": true } ] } @@ -3355,7 +4576,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -3395,7 +4616,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -3424,10 +4645,6 @@ { "type": "type_qualifier", "named": true - }, - { - "type": "virtual_function_specifier", - "named": true } ] } @@ -3468,7 +4685,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -3484,7 +4701,7 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ { @@ -3498,6 +4715,10 @@ { "type": "_type_declarator", "named": true + }, + { + "type": "ms_call_modifier", + "named": true } ] } @@ -3511,11 +4732,15 @@ "required": true, "types": [ { - "type": "_expression", + "type": "comma_expression", "named": true }, { - "type": "comma_expression", + "type": "compound_statement", + "named": true + }, + { + "type": "expression", "named": true }, { @@ -3525,6 +4750,36 @@ ] } }, + { + "type": "placeholder_type_specifier", + "named": true, + "fields": { + "constraint": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "auto", + "named": true + }, + { + "type": "decltype", + "named": true + } + ] + } + }, { "type": "pointer_declarator", "named": true, @@ -3576,7 +4831,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3597,6 +4852,40 @@ } } }, + { + "type": "pointer_type_declarator", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type_declarator", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "ms_based_modifier", + "named": true + }, + { + "type": "ms_pointer_modifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, { "type": "preproc_call", "named": true, @@ -3676,6 +4965,10 @@ "type": "preproc_elif", "named": true }, + { + "type": "preproc_elifdef", + "named": true + }, { "type": "preproc_else", "named": true @@ -3726,13 +5019,145 @@ "required": false, "types": [ { - "type": "_statement", + "type": "access_specifier", + "named": true + }, + { + "type": "alias_declaration", + "named": true + }, + { + "type": "concept_definition", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "enumerator", + "named": true + }, + { + "type": "field_declaration", + "named": true + }, + { + "type": "friend_declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "linkage_specification", + "named": true + }, + { + "type": "macro_statement", + "named": true + }, + { + "type": "namespace_alias_definition", + "named": true + }, + { + "type": "namespace_definition", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_include", + "named": true + }, + { + "type": "statement", + "named": true + }, + { + "type": "static_assert_declaration", + "named": true + }, + { + "type": "template_declaration", + "named": true + }, + { + "type": "template_instantiation", + "named": true + }, + { + "type": "type_definition", "named": true }, { - "type": "_type_specifier", + "type": "type_specifier", "named": true }, + { + "type": "using_declaration", + "named": true + } + ] + } + }, + { + "type": "preproc_elifdef", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": false, + "types": [ + { + "type": "preproc_elif", + "named": true + }, + { + "type": "preproc_elifdef", + "named": true + }, + { + "type": "preproc_else", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ { "type": "access_specifier", "named": true @@ -3742,15 +5167,15 @@ "named": true }, { - "type": "alone_macro", + "type": "concept_definition", "named": true }, { - "type": "alone_macro_call", + "type": "declaration", "named": true }, { - "type": "declaration", + "type": "enumerator", "named": true }, { @@ -3773,6 +5198,10 @@ "type": "macro_statement", "named": true }, + { + "type": "namespace_alias_definition", + "named": true + }, { "type": "namespace_definition", "named": true @@ -3801,6 +5230,10 @@ "type": "preproc_include", "named": true }, + { + "type": "statement", + "named": true + }, { "type": "static_assert_declaration", "named": true @@ -3817,6 +5250,10 @@ "type": "type_definition", "named": true }, + { + "type": "type_specifier", + "named": true + }, { "type": "using_declaration", "named": true @@ -3832,14 +5269,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "_type_specifier", - "named": true - }, { "type": "access_specifier", "named": true @@ -3849,15 +5278,15 @@ "named": true }, { - "type": "alone_macro", + "type": "concept_definition", "named": true }, { - "type": "alone_macro_call", + "type": "declaration", "named": true }, { - "type": "declaration", + "type": "enumerator", "named": true }, { @@ -3880,6 +5309,10 @@ "type": "macro_statement", "named": true }, + { + "type": "namespace_alias_definition", + "named": true + }, { "type": "namespace_definition", "named": true @@ -3908,6 +5341,10 @@ "type": "preproc_include", "named": true }, + { + "type": "statement", + "named": true + }, { "type": "static_assert_declaration", "named": true @@ -3924,6 +5361,10 @@ "type": "type_definition", "named": true }, + { + "type": "type_specifier", + "named": true + }, { "type": "using_declaration", "named": true @@ -3979,6 +5420,10 @@ "type": "preproc_elif", "named": true }, + { + "type": "preproc_elifdef", + "named": true + }, { "type": "preproc_else", "named": true @@ -4028,14 +5473,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "_type_specifier", - "named": true - }, { "type": "access_specifier", "named": true @@ -4045,15 +5482,15 @@ "named": true }, { - "type": "alone_macro", + "type": "concept_definition", "named": true }, { - "type": "alone_macro_call", + "type": "declaration", "named": true }, { - "type": "declaration", + "type": "enumerator", "named": true }, { @@ -4076,6 +5513,10 @@ "type": "macro_statement", "named": true }, + { + "type": "namespace_alias_definition", + "named": true + }, { "type": "namespace_definition", "named": true @@ -4104,6 +5545,10 @@ "type": "preproc_include", "named": true }, + { + "type": "statement", + "named": true + }, { "type": "static_assert_declaration", "named": true @@ -4120,6 +5565,10 @@ "type": "type_definition", "named": true }, + { + "type": "type_specifier", + "named": true + }, { "type": "using_declaration", "named": true @@ -4139,6 +5588,10 @@ "type": "preproc_elif", "named": true }, + { + "type": "preproc_elifdef", + "named": true + }, { "type": "preproc_else", "named": true @@ -4160,14 +5613,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "_type_specifier", - "named": true - }, { "type": "access_specifier", "named": true @@ -4177,15 +5622,15 @@ "named": true }, { - "type": "alone_macro", + "type": "concept_definition", "named": true }, { - "type": "alone_macro_call", + "type": "declaration", "named": true }, { - "type": "declaration", + "type": "enumerator", "named": true }, { @@ -4208,6 +5653,10 @@ "type": "macro_statement", "named": true }, + { + "type": "namespace_alias_definition", + "named": true + }, { "type": "namespace_definition", "named": true @@ -4236,6 +5685,10 @@ "type": "preproc_include", "named": true }, + { + "type": "statement", + "named": true + }, { "type": "static_assert_declaration", "named": true @@ -4252,6 +5705,10 @@ "type": "type_definition", "named": true }, + { + "type": "type_specifier", + "named": true + }, { "type": "using_declaration", "named": true @@ -4302,12 +5759,17 @@ ] } }, + { + "type": "pure_virtual_clause", + "named": true, + "fields": {} + }, { "type": "qualified_identifier", "named": true, "fields": { "name": { - "multiple": false, + "multiple": true, "required": true, "types": [ { @@ -4334,10 +5796,18 @@ "type": "operator_name", "named": true }, + { + "type": "pointer_type_declarator", + "named": true + }, { "type": "qualified_identifier", "named": true }, + { + "type": "template", + "named": false + }, { "type": "template_function", "named": true @@ -4347,29 +5817,249 @@ "named": true }, { - "type": "template_type", + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + }, + "scope": { + "multiple": false, + "required": false, + "types": [ + { + "type": "decltype", + "named": true + }, + { + "type": "dependent_name", + "named": true + }, + { + "type": "namespace_identifier", + "named": true + }, + { + "type": "template_type", + "named": true + } + ] + } + } + }, + { + "type": "raw_string_literal", + "named": true, + "fields": { + "delimiter": { + "multiple": false, + "required": false, + "types": [ + { + "type": "raw_string_delimiter", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "raw_string_content", + "named": true + }, + { + "type": "raw_string_delimiter", + "named": true + } + ] + } + }, + { + "type": "ref_qualifier", + "named": true, + "fields": {} + }, + { + "type": "reference_declarator", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + }, + { + "type": "_field_declarator", + "named": true + }, + { + "type": "_type_declarator", + "named": true + }, + { + "type": "variadic_declarator", + "named": true + } + ] + } + }, + { + "type": "requirement_seq", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "compound_requirement", + "named": true + }, + { + "type": "simple_requirement", + "named": true + }, + { + "type": "type_requirement", + "named": true + } + ] + } + }, + { + "type": "requires_clause", + "named": true, + "fields": { + "constraint": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "constraint_conjunction", + "named": true + }, + { + "type": "constraint_disjunction", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + } + }, + { + "type": "requires_expression", + "named": true, + "fields": { + "parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "parameter_list", + "named": true + } + ] + }, + "requirements": { + "multiple": false, + "required": true, + "types": [ + { + "type": "requirement_seq", "named": true - }, + } + ] + } + } + }, + { + "type": "return_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "comma_expression", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "initializer_list", + "named": true + } + ] + } + }, + { + "type": "seh_except_clause", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ { - "type": "type_identifier", + "type": "compound_statement", "named": true } ] }, - "scope": { + "filter": { "multiple": false, - "required": false, + "required": true, "types": [ { - "type": "dependent_name", - "named": true - }, - { - "type": "namespace_identifier", + "type": "parenthesized_expression", "named": true - }, + } + ] + } + } + }, + { + "type": "seh_finally_clause", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ { - "type": "template_type", + "type": "compound_statement", "named": true } ] @@ -4377,51 +6067,54 @@ } }, { - "type": "ref_qualifier", + "type": "seh_leave_statement", "named": true, "fields": {} }, { - "type": "reference_declarator", + "type": "seh_try_statement", "named": true, - "fields": {}, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "compound_statement", + "named": true + } + ] + } + }, "children": { "multiple": false, "required": true, "types": [ { - "type": "_declarator", - "named": true - }, - { - "type": "_field_declarator", + "type": "seh_except_clause", "named": true }, { - "type": "variadic_declarator", + "type": "seh_finally_clause", "named": true } ] } }, { - "type": "return_statement", + "type": "simple_requirement", "named": true, "fields": {}, "children": { "multiple": false, "required": false, "types": [ - { - "type": "_expression", - "named": true - }, { "type": "comma_expression", "named": true }, { - "type": "initializer_list", + "type": "expression", "named": true } ] @@ -4445,6 +6138,16 @@ } ] } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "type_qualifier", + "named": true + } + ] } }, { @@ -4466,7 +6169,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -4482,7 +6185,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -4533,6 +6236,10 @@ { "type": "escape_sequence", "named": true + }, + { + "type": "string_content", + "named": true } ] } @@ -4604,6 +6311,25 @@ ] } }, + { + "type": "subscript_argument_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "initializer_list", + "named": true + } + ] + } + }, { "type": "subscript_designator", "named": true, @@ -4613,7 +6339,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -4628,21 +6354,43 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] }, - "index": { + "indices": { "multiple": false, "required": true, "types": [ { - "type": "_expression", + "type": "subscript_argument_list", "named": true - }, + } + ] + } + } + }, + { + "type": "subscript_range_designator", + "named": true, + "fields": { + "end": { + "multiple": false, + "required": true, + "types": [ { - "type": "initializer_list", + "type": "expression", + "named": true + } + ] + }, + "start": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", "named": true } ] @@ -4684,7 +6432,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -4710,28 +6458,40 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ { - "type": "_type_specifier", + "type": "alias_declaration", "named": true }, { - "type": "alias_declaration", + "type": "concept_definition", "named": true }, { "type": "declaration", "named": true }, + { + "type": "friend_declaration", + "named": true + }, { "type": "function_definition", "named": true }, + { + "type": "requires_clause", + "named": true + }, { "type": "template_declaration", "named": true + }, + { + "type": "type_specifier", + "named": true } ] } @@ -4781,7 +6541,7 @@ "required": false, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -4810,10 +6570,6 @@ { "type": "type_qualifier", "named": true - }, - { - "type": "virtual_function_specifier", - "named": true } ] } @@ -4839,6 +6595,10 @@ { "type": "field_identifier", "named": true + }, + { + "type": "operator_name", + "named": true } ] } @@ -4967,7 +6727,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -4978,19 +6738,11 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ { - "type": "_abstract_declarator", - "named": true - }, - { - "type": "_type_specifier", - "named": true - }, - { - "type": "type_qualifier", + "type": "type_descriptor", "named": true } ] @@ -4999,43 +6751,100 @@ { "type": "translation_unit", "named": true, + "root": true, "fields": {}, "children": { "multiple": true, "required": false, "types": [ { - "type": "_statement", + "type": "alias_declaration", "named": true }, { - "type": "_type_specifier", + "type": "alone_macro", "named": true }, { - "type": "alias_declaration", + "type": "alone_macro_call", "named": true }, { - "type": "alone_macro", + "type": "attributed_statement", "named": true }, { - "type": "alone_macro_call", + "type": "break_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, + { + "type": "co_return_statement", + "named": true + }, + { + "type": "co_yield_statement", + "named": true + }, + { + "type": "compound_statement", + "named": true + }, + { + "type": "concept_definition", + "named": true + }, + { + "type": "continue_statement", "named": true }, { "type": "declaration", "named": true }, + { + "type": "do_statement", + "named": true + }, + { + "type": "expression_statement", + "named": true + }, + { + "type": "for_range_loop", + "named": true + }, + { + "type": "for_statement", + "named": true + }, { "type": "function_definition", "named": true }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, + { + "type": "labeled_statement", + "named": true + }, { "type": "linkage_specification", "named": true }, + { + "type": "namespace_alias_definition", + "named": true + }, { "type": "namespace_definition", "named": true @@ -5057,31 +6866,55 @@ "named": true }, { - "type": "preproc_ifdef", + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_include", + "named": true + }, + { + "type": "return_statement", + "named": true + }, + { + "type": "static_assert_declaration", + "named": true + }, + { + "type": "switch_statement", + "named": true + }, + { + "type": "template_declaration", + "named": true + }, + { + "type": "template_instantiation", "named": true }, { - "type": "preproc_include", + "type": "throw_statement", "named": true }, { - "type": "static_assert_declaration", + "type": "try_statement", "named": true }, { - "type": "template_declaration", + "type": "type_definition", "named": true }, { - "type": "template_instantiation", + "type": "type_specifier", "named": true }, { - "type": "type_definition", + "type": "using_declaration", "named": true }, { - "type": "using_declaration", + "type": "while_statement", "named": true } ] @@ -5109,6 +6942,10 @@ { "type": "catch_clause", "named": true + }, + { + "type": "field_initializer_list", + "named": true } ] } @@ -5132,7 +6969,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -5142,6 +6979,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_specifier", + "named": true + }, { "type": "type_qualifier", "named": true @@ -5168,7 +7009,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -5203,7 +7044,40 @@ { "type": "type_qualifier", "named": true, - "fields": {} + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "alignas_qualifier", + "named": true + } + ] + } + }, + { + "type": "type_requirement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "qualified_identifier", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } }, { "type": "unary_expression", @@ -5214,7 +7088,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -5239,6 +7113,14 @@ "type": "-", "named": false }, + { + "type": "compl", + "named": false + }, + { + "type": "not", + "named": false + }, { "type": "~", "named": false @@ -5284,6 +7166,18 @@ "multiple": true, "required": false, "types": [ + { + "type": "alignas_qualifier", + "named": true + }, + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, { "type": "base_class_clause", "named": true @@ -5308,7 +7202,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -5421,7 +7315,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -5450,10 +7344,6 @@ { "type": "type_qualifier", "named": true - }, - { - "type": "virtual_function_specifier", - "named": true } ] } @@ -5473,11 +7363,6 @@ ] } }, - { - "type": "virtual_function_specifier", - "named": true, - "fields": {} - }, { "type": "virtual_specifier", "named": true, @@ -5492,7 +7377,7 @@ "required": true, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -5537,6 +7422,14 @@ "type": "#elif", "named": false }, + { + "type": "#elifdef", + "named": false + }, + { + "type": "#elifndef", + "named": false + }, { "type": "#else", "named": false @@ -5645,6 +7538,10 @@ "type": ".", "named": false }, + { + "type": ".*", + "named": false + }, { "type": "...", "named": false @@ -5685,6 +7582,10 @@ "type": "<=", "named": false }, + { + "type": "<=>", + "named": false + }, { "type": "=", "named": false @@ -5749,6 +7650,10 @@ "type": "L'", "named": false }, + { + "type": "LR\"", + "named": false + }, { "type": "LS_TRY_INSPECT", "named": false @@ -5793,10 +7698,6 @@ "type": "MOZ_COLD", "named": false }, - { - "type": "MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER", - "named": false - }, { "type": "MOZ_FALLTHROUGH", "named": false @@ -6033,6 +7934,10 @@ "type": "MOZ_XPCOM_ABI", "named": false }, + { + "type": "NULL", + "named": false + }, { "type": "PS_GET", "named": false @@ -6061,6 +7966,10 @@ "type": "QM_WARNONLY_TRY_UNWRAP", "named": false }, + { + "type": "R\"", + "named": false + }, { "type": "SDB_TRY_INSPECT", "named": false @@ -6077,6 +7986,10 @@ "type": "U'", "named": false }, + { + "type": "UR\"", + "named": false + }, { "type": "[", "named": false @@ -6105,10 +8018,50 @@ "type": "^=", "named": false }, + { + "type": "_Alignas", + "named": false + }, + { + "type": "_Alignof", + "named": false + }, { "type": "_Atomic", "named": false }, + { + "type": "_Generic", + "named": false + }, + { + "type": "_Nonnull", + "named": false + }, + { + "type": "_Noreturn", + "named": false + }, + { + "type": "__alignof", + "named": false + }, + { + "type": "__alignof__", + "named": false + }, + { + "type": "__asm", + "named": false + }, + { + "type": "__asm__", + "named": false + }, + { + "type": "__attribute", + "named": false + }, { "type": "__attribute__", "named": false @@ -6129,10 +8082,42 @@ "type": "__declspec", "named": false }, + { + "type": "__except", + "named": false + }, + { + "type": "__extension__", + "named": false + }, { "type": "__fastcall", "named": false }, + { + "type": "__finally", + "named": false + }, + { + "type": "__forceinline", + "named": false + }, + { + "type": "__inline", + "named": false + }, + { + "type": "__inline__", + "named": false + }, + { + "type": "__leave", + "named": false + }, + { + "type": "__restrict__", + "named": false + }, { "type": "__stdcall", "named": false @@ -6141,6 +8126,14 @@ "type": "__thiscall", "named": false }, + { + "type": "__thread", + "named": false + }, + { + "type": "__try", + "named": false + }, { "type": "__unaligned", "named": false @@ -6149,18 +8142,54 @@ "type": "__vectorcall", "named": false }, + { + "type": "__volatile__", + "named": false + }, + { + "type": "_alignof", + "named": false + }, { "type": "_unaligned", "named": false }, + { + "type": "alignas", + "named": false + }, + { + "type": "alignof", + "named": false + }, { "type": "alone_macro", "named": true }, + { + "type": "and", + "named": false + }, + { + "type": "and_eq", + "named": false + }, + { + "type": "asm", + "named": false + }, { "type": "auto", "named": true }, + { + "type": "bitand", + "named": false + }, + { + "type": "bitor", + "named": false + }, { "type": "break", "named": false @@ -6173,6 +8202,10 @@ "type": "catch", "named": false }, + { + "type": "character", + "named": true + }, { "type": "class", "named": false @@ -6191,16 +8224,33 @@ }, { "type": "comment", - "named": true + "named": true, + "extra": true + }, + { + "type": "compl", + "named": false + }, + { + "type": "concept", + "named": false }, { "type": "const", "named": false }, + { + "type": "consteval", + "named": false + }, { "type": "constexpr", "named": false }, + { + "type": "constinit", + "named": false + }, { "type": "continue", "named": false @@ -6289,6 +8339,10 @@ "type": "long", "named": false }, + { + "type": "macro_statement", + "named": true + }, { "type": "ms_restrict_modifier", "named": true @@ -6322,21 +8376,41 @@ "named": false }, { - "type": "null", - "named": true + "type": "noreturn", + "named": false + }, + { + "type": "not", + "named": false + }, + { + "type": "not_eq", + "named": false }, { "type": "nullptr", - "named": true + "named": false }, { "type": "number_literal", "named": true }, + { + "type": "offsetof", + "named": false + }, { "type": "operator", "named": false }, + { + "type": "or", + "named": false + }, + { + "type": "or_eq", + "named": false + }, { "type": "override", "named": false @@ -6366,13 +8440,21 @@ "named": false }, { - "type": "raw_string_literal", + "type": "raw_string_content", + "named": true + }, + { + "type": "raw_string_delimiter", "named": true }, { "type": "register", "named": false }, + { + "type": "requires", + "named": false + }, { "type": "restrict", "named": false @@ -6405,6 +8487,10 @@ "type": "static_assert", "named": false }, + { + "type": "string_content", + "named": true + }, { "type": "struct", "named": false @@ -6469,6 +8555,14 @@ "type": "u8'", "named": false }, + { + "type": "u8R\"", + "named": false + }, + { + "type": "uR\"", + "named": false + }, { "type": "union", "named": false @@ -6493,6 +8587,14 @@ "type": "while", "named": false }, + { + "type": "xor", + "named": false + }, + { + "type": "xor_eq", + "named": false + }, { "type": "{", "named": false diff --git a/tree-sitter-mozcpp/src/parser.c b/tree-sitter-mozcpp/src/parser.c index 5b2044828..7c68b9013 100644 --- a/tree-sitter-mozcpp/src/parser.c +++ b/tree-sitter-mozcpp/src/parser.c @@ -1,7 +1,8 @@ -#include +/* Automatically generated by tree-sitter v0.25.3 (2a835ee029dca1c325e6f1c01dbce40396f6123e) */ + +#include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif @@ -14,525 +15,679 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 5270 -#define LARGE_STATE_COUNT 1949 -#define SYMBOL_COUNT 485 -#define ALIAS_COUNT 4 -#define TOKEN_COUNT 254 -#define EXTERNAL_TOKEN_COUNT 1 -#define FIELD_COUNT 34 +#define STATE_COUNT 9298 +#define LARGE_STATE_COUNT 2795 +#define SYMBOL_COUNT 633 +#define ALIAS_COUNT 5 +#define TOKEN_COUNT 308 +#define EXTERNAL_TOKEN_COUNT 2 +#define FIELD_COUNT 50 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 155 +#define MAX_RESERVED_WORD_SET_SIZE 0 +#define PRODUCTION_ID_COUNT 229 +#define SUPERTYPE_COUNT 0 -enum { +enum ts_symbol_identifiers { sym_identifier = 1, aux_sym_preproc_include_token1 = 2, - anon_sym_LF = 3, + aux_sym_preproc_include_token2 = 3, aux_sym_preproc_def_token1 = 4, anon_sym_LPAREN = 5, anon_sym_DOT_DOT_DOT = 6, anon_sym_COMMA = 7, anon_sym_RPAREN = 8, aux_sym_preproc_if_token1 = 9, - aux_sym_preproc_if_token2 = 10, - aux_sym_preproc_ifdef_token1 = 11, - aux_sym_preproc_ifdef_token2 = 12, - aux_sym_preproc_else_token1 = 13, - aux_sym_preproc_elif_token1 = 14, - sym_preproc_directive = 15, - sym_preproc_arg = 16, - anon_sym_LPAREN2 = 17, - anon_sym_defined = 18, - anon_sym_BANG = 19, - anon_sym_TILDE = 20, - anon_sym_DASH = 21, - anon_sym_PLUS = 22, - anon_sym_STAR = 23, - anon_sym_SLASH = 24, - anon_sym_PERCENT = 25, - anon_sym_PIPE_PIPE = 26, - anon_sym_AMP_AMP = 27, - anon_sym_PIPE = 28, - anon_sym_CARET = 29, - anon_sym_AMP = 30, - anon_sym_EQ_EQ = 31, - anon_sym_BANG_EQ = 32, - anon_sym_GT = 33, - anon_sym_GT_EQ = 34, - anon_sym_LT_EQ = 35, - anon_sym_LT = 36, - anon_sym_LT_LT = 37, - anon_sym_GT_GT = 38, - anon_sym_SEMI = 39, - anon_sym_typedef = 40, - anon_sym_extern = 41, - anon_sym___attribute__ = 42, - anon_sym_COLON_COLON = 43, - anon_sym_LBRACK_LBRACK = 44, - anon_sym_RBRACK_RBRACK = 45, - anon_sym___declspec = 46, - anon_sym___based = 47, - anon_sym___cdecl = 48, - anon_sym___clrcall = 49, - anon_sym___stdcall = 50, - anon_sym___fastcall = 51, - anon_sym___thiscall = 52, - anon_sym___vectorcall = 53, - sym_ms_restrict_modifier = 54, - sym_ms_unsigned_ptr_modifier = 55, - sym_ms_signed_ptr_modifier = 56, - anon_sym__unaligned = 57, - anon_sym___unaligned = 58, - anon_sym_LBRACE = 59, - anon_sym_RBRACE = 60, - anon_sym_LBRACK = 61, - anon_sym_RBRACK = 62, - anon_sym_EQ = 63, - anon_sym_static = 64, - anon_sym_register = 65, - anon_sym_inline = 66, - anon_sym_thread_local = 67, - anon_sym_const = 68, - anon_sym_volatile = 69, - anon_sym_restrict = 70, - anon_sym__Atomic = 71, - anon_sym_mutable = 72, - anon_sym_constexpr = 73, - anon_sym_signed = 74, - anon_sym_unsigned = 75, - anon_sym_long = 76, - anon_sym_short = 77, - sym_primitive_type = 78, - anon_sym_enum = 79, - anon_sym_class = 80, - anon_sym_struct = 81, - anon_sym_union = 82, - anon_sym_COLON = 83, - anon_sym_if = 84, - anon_sym_else = 85, - anon_sym_switch = 86, - anon_sym_case = 87, - anon_sym_default = 88, - anon_sym_while = 89, - anon_sym_do = 90, - anon_sym_for = 91, - anon_sym_return = 92, - anon_sym_break = 93, - anon_sym_continue = 94, - anon_sym_goto = 95, - anon_sym_QMARK = 96, - anon_sym_STAR_EQ = 97, - anon_sym_SLASH_EQ = 98, - anon_sym_PERCENT_EQ = 99, - anon_sym_PLUS_EQ = 100, - anon_sym_DASH_EQ = 101, - anon_sym_LT_LT_EQ = 102, - anon_sym_GT_GT_EQ = 103, - anon_sym_AMP_EQ = 104, - anon_sym_CARET_EQ = 105, - anon_sym_PIPE_EQ = 106, - anon_sym_DASH_DASH = 107, - anon_sym_PLUS_PLUS = 108, - anon_sym_sizeof = 109, - anon_sym_DOT = 110, - anon_sym_DASH_GT = 111, - sym_number_literal = 112, - anon_sym_L_SQUOTE = 113, - anon_sym_u_SQUOTE = 114, - anon_sym_U_SQUOTE = 115, - anon_sym_u8_SQUOTE = 116, - anon_sym_SQUOTE = 117, - aux_sym_char_literal_token1 = 118, - anon_sym_L_DQUOTE = 119, - anon_sym_u_DQUOTE = 120, - anon_sym_U_DQUOTE = 121, - anon_sym_u8_DQUOTE = 122, - anon_sym_DQUOTE = 123, - aux_sym_string_literal_token1 = 124, - sym_escape_sequence = 125, - sym_system_lib_string = 126, - sym_true = 127, - sym_false = 128, - sym_null = 129, - sym_comment = 130, - anon_sym_decltype = 131, - anon_sym_final = 132, - anon_sym_override = 133, - anon_sym_virtual = 134, - anon_sym_explicit = 135, - anon_sym_public = 136, - anon_sym_private = 137, - anon_sym_protected = 138, - sym_auto = 139, - anon_sym_typename = 140, - anon_sym_template = 141, - anon_sym_GT2 = 142, - anon_sym_operator = 143, - anon_sym_delete = 144, - anon_sym_friend = 145, - anon_sym_noexcept = 146, - anon_sym_throw = 147, - anon_sym_namespace = 148, - anon_sym_using = 149, - anon_sym_static_assert = 150, - anon_sym_co_return = 151, - anon_sym_co_yield = 152, - anon_sym_try = 153, - anon_sym_catch = 154, - anon_sym_co_await = 155, - anon_sym_new = 156, - anon_sym_DASH_GT_STAR = 157, - anon_sym_LPAREN_RPAREN = 158, - anon_sym_LBRACK_RBRACK = 159, - anon_sym_DQUOTE_DQUOTE = 160, - sym_this = 161, - sym_nullptr = 162, - sym_literal_suffix = 163, - sym_alone_macro = 164, - aux_sym_alone_macro_call_token1 = 165, - anon_sym_CACHE_TRY_INSPECT = 166, - anon_sym_CACHE_TRY_UNWRAP = 167, - anon_sym_FORWARD = 168, - anon_sym_FORWARD_SET_ATTRIBUTE = 169, - anon_sym_IDB_TRY_INSPECT = 170, - anon_sym_IDB_TRY_UNWRAP = 171, - anon_sym_LS_TRY_INSPECT = 172, - anon_sym_LS_TRY_UNWRAP = 173, - anon_sym_SDB_TRY_INSPECT = 174, - anon_sym_SDB_TRY_UNWRAP = 175, - anon_sym_PS_GET = 176, - anon_sym_PS_GET_AND_SET = 177, - anon_sym_PS_GET_LOCKLESS = 178, - anon_sym_QM_TRY_INSPECT = 179, - anon_sym_QM_NOTEONLY_TRY_UNWRAP = 180, - anon_sym_QM_TRY_UNWRAP = 181, - anon_sym_QM_WARNONLY_TRY_UNWRAP = 182, - anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER = 183, - anon_sym_MOZ_ALLOCATOR = 184, - anon_sym_MOZ_ALLOW_TEMPORARY = 185, - anon_sym_MOZ_ALWAYS_INLINE = 186, - anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG = 187, - anon_sym_MOZ_ASAN_BLACKLIST = 188, - anon_sym_MOZ_CAN_RUN_SCRIPT = 189, - anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY = 190, - anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION = 191, - anon_sym_MOZ_COLD = 192, - anon_sym_MOZ_FALLTHROUGH = 193, - anon_sym_MOZ_FORMAT_PRINTF = 194, - anon_sym_MOZ_HAVE_ANALYZER_NORETURN = 195, - anon_sym_MOZ_HAVE_ASAN_BLACKLIST = 196, - anon_sym_MOZ_HAVE_NEVER_INLINE = 197, - anon_sym_MOZ_HAVE_NORETURN = 198, - anon_sym_MOZ_HAVE_NORETURN_PTR = 199, - anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR = 200, - anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR = 201, - anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR = 202, - anon_sym_MOZ_HEAP_ALLOCATOR = 203, - anon_sym_MOZ_HEAP_CLASS = 204, - anon_sym_MOZ_IMPLICIT = 205, - anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS = 206, - anon_sym_MOZ_INIT_OUTSIDE_CTOR = 207, - anon_sym_MOZ_IS_CLASS_INIT = 208, - anon_sym_MOZ_IS_REFPTR = 209, - anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED = 210, - anon_sym_MOZ_MAYBE_UNUSED = 211, - anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN = 212, - anon_sym_MOZ_MUST_OVERRIDE = 213, - anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG = 214, - anon_sym_MOZ_MUST_USE = 215, - anon_sym_MOZ_MUST_USE_TYPE = 216, - anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS = 217, - anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE = 218, - anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE = 219, - anon_sym_MOZ_NEVER_INLINE = 220, - anon_sym_MOZ_NEVER_INLINE_DEBUG = 221, - anon_sym_MOZ_NONHEAP_CLASS = 222, - anon_sym_MOZ_NONNULL = 223, - anon_sym_MOZ_NONNULL_RETURN = 224, - anon_sym_MOZ_NON_AUTOABLE = 225, - anon_sym_MOZ_NON_MEMMOVABLE = 226, - anon_sym_MOZ_NON_OWNING_REF = 227, - anon_sym_MOZ_NON_PARAM = 228, - anon_sym_MOZ_NON_TEMPORARY_CLASS = 229, - anon_sym_MOZ_NORETURN = 230, - anon_sym_MOZ_NORETURN_PTR = 231, - anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN = 232, - anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT = 233, - anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES = 234, - anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW = 235, - anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW = 236, - anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS = 237, - anon_sym_MOZ_OWNING_REF = 238, - anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS = 239, - anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS = 240, - anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS = 241, - anon_sym_MOZ_RAII = 242, - anon_sym_MOZ_REQUIRED_BASE_METHOD = 243, - anon_sym_MOZ_STACK_CLASS = 244, - anon_sym_MOZ_STATIC_CLASS = 245, - anon_sym_MOZ_STATIC_LOCAL_CLASS = 246, - anon_sym_MOZ_TEMPORARY_CLASS = 247, - anon_sym_MOZ_TRIVIAL_CTOR_DTOR = 248, - anon_sym_MOZ_TSAN_BLACKLIST = 249, - anon_sym_MOZ_UNSAFE_REF = 250, - anon_sym_MOZ_XPCOM_ABI = 251, - anon_sym_JS_PUBLIC_API = 252, - sym_raw_string_literal = 253, - sym_translation_unit = 254, - sym_preproc_include = 255, - sym_preproc_def = 256, - sym_preproc_function_def = 257, - sym_preproc_params = 258, - sym_preproc_call = 259, - sym_preproc_if = 260, - sym_preproc_ifdef = 261, - sym_preproc_else = 262, - sym_preproc_elif = 263, - sym_preproc_if_in_field_declaration_list = 264, - sym_preproc_ifdef_in_field_declaration_list = 265, - sym_preproc_else_in_field_declaration_list = 266, - sym_preproc_elif_in_field_declaration_list = 267, - sym__preproc_expression = 268, - sym_preproc_parenthesized_expression = 269, - sym_preproc_defined = 270, - sym_preproc_unary_expression = 271, - sym_preproc_call_expression = 272, - sym_preproc_argument_list = 273, - sym_preproc_binary_expression = 274, - sym_function_definition = 275, - sym_declaration = 276, - sym_type_definition = 277, - sym__declaration_modifiers = 278, - sym__declaration_specifiers = 279, - sym_linkage_specification = 280, - sym_attribute_specifier = 281, - sym_attribute = 282, - sym_attribute_declaration = 283, - sym_ms_declspec_modifier = 284, - sym_ms_based_modifier = 285, - sym_ms_call_modifier = 286, - sym_ms_unaligned_ptr_modifier = 287, - sym_ms_pointer_modifier = 288, - sym_declaration_list = 289, - sym__declarator = 290, - sym__field_declarator = 291, - sym__type_declarator = 292, - sym__abstract_declarator = 293, - sym_parenthesized_declarator = 294, - sym_parenthesized_field_declarator = 295, - sym_parenthesized_type_declarator = 296, - sym_abstract_parenthesized_declarator = 297, - sym_attributed_declarator = 298, - sym_attributed_field_declarator = 299, - sym_attributed_type_declarator = 300, - sym_pointer_declarator = 301, - sym_pointer_field_declarator = 302, - sym_pointer_type_declarator = 303, - sym_abstract_pointer_declarator = 304, - sym_function_declarator = 305, - sym_function_field_declarator = 306, - sym_function_type_declarator = 307, - sym_abstract_function_declarator = 308, - sym_array_declarator = 309, - sym_array_field_declarator = 310, - sym_array_type_declarator = 311, - sym_abstract_array_declarator = 312, - sym_init_declarator = 313, - sym_compound_statement = 314, - sym_storage_class_specifier = 315, - sym_type_qualifier = 316, - sym__type_specifier = 317, - sym_sized_type_specifier = 318, - sym_enum_specifier = 319, - sym_enumerator_list = 320, - sym_struct_specifier = 321, - sym_union_specifier = 322, - sym_field_declaration_list = 323, - sym__field_declaration_list_item = 324, - sym_field_declaration = 325, - sym_bitfield_clause = 326, - sym_enumerator = 327, - sym_parameter_list = 328, - sym_parameter_declaration = 329, - sym_attributed_statement = 330, - sym_labeled_statement = 331, - sym_expression_statement = 332, - sym_if_statement = 333, - sym_switch_statement = 334, - sym_case_statement = 335, - sym_while_statement = 336, - sym_do_statement = 337, - sym_for_statement = 338, - sym_return_statement = 339, - sym_break_statement = 340, - sym_continue_statement = 341, - sym_goto_statement = 342, - sym__expression = 343, - sym_comma_expression = 344, - sym_conditional_expression = 345, - sym_assignment_expression = 346, - sym_pointer_expression = 347, - sym_unary_expression = 348, - sym_binary_expression = 349, - sym_update_expression = 350, - sym_cast_expression = 351, - sym_type_descriptor = 352, - sym_sizeof_expression = 353, - sym_subscript_expression = 354, - sym_call_expression = 355, - sym_argument_list = 356, - sym_field_expression = 357, - sym_compound_literal_expression = 358, - sym_parenthesized_expression = 359, - sym_initializer_list = 360, - sym_initializer_pair = 361, - sym_subscript_designator = 362, - sym_field_designator = 363, - sym_char_literal = 364, - sym_concatenated_string = 365, - sym_string_literal = 366, - sym__empty_declaration = 367, - sym_decltype = 368, - sym_class_specifier = 369, - sym__class_name = 370, - sym_virtual_specifier = 371, - sym_virtual_function_specifier = 372, - sym_explicit_function_specifier = 373, - sym_base_class_clause = 374, - sym__enum_base_clause = 375, - sym_dependent_type = 376, - sym_template_declaration = 377, - sym_template_instantiation = 378, - sym_template_parameter_list = 379, - sym_type_parameter_declaration = 380, - sym_variadic_type_parameter_declaration = 381, - sym_optional_type_parameter_declaration = 382, - sym_template_template_parameter_declaration = 383, - sym_optional_parameter_declaration = 384, - sym_variadic_parameter_declaration = 385, - sym_variadic_declarator = 386, - sym_variadic_reference_declarator = 387, - sym_operator_cast = 388, - sym_field_initializer_list = 389, - sym_field_initializer = 390, - sym_inline_method_definition = 391, - sym__constructor_specifiers = 392, - sym_operator_cast_definition = 393, - sym_operator_cast_declaration = 394, - sym_constructor_or_destructor_definition = 395, - sym_constructor_or_destructor_declaration = 396, - sym_default_method_clause = 397, - sym_delete_method_clause = 398, - sym_friend_declaration = 399, - sym_access_specifier = 400, - sym_reference_declarator = 401, - sym_reference_field_declarator = 402, - sym_abstract_reference_declarator = 403, - sym_structured_binding_declarator = 404, - sym_ref_qualifier = 405, - sym_trailing_return_type = 406, - sym_noexcept = 407, - sym_throw_specifier = 408, - sym_template_type = 409, - sym_template_method = 410, - sym_template_function = 411, - sym_template_argument_list = 412, - sym_namespace_definition = 413, - sym_namespace_definition_name = 414, - sym_using_declaration = 415, - sym_alias_declaration = 416, - sym_static_assert_declaration = 417, - sym_condition_clause = 418, - sym_condition_declaration = 419, - sym_for_range_loop = 420, - sym_co_return_statement = 421, - sym_co_yield_statement = 422, - sym_throw_statement = 423, - sym_try_statement = 424, - sym_catch_clause = 425, - sym_co_await_expression = 426, - sym_new_expression = 427, - sym_new_declarator = 428, - sym_delete_expression = 429, - sym_lambda_expression = 430, - sym_lambda_capture_specifier = 431, - sym_lambda_default_capture = 432, - sym_parameter_pack_expansion = 433, - sym_type_parameter_pack_expansion = 434, - sym_destructor_name = 435, - sym_dependent_identifier = 436, - sym_dependent_field_identifier = 437, - sym_dependent_type_identifier = 438, - sym__scope_resolution = 439, - sym_qualified_field_identifier = 440, - sym_qualified_identifier = 441, - sym_qualified_type_identifier = 442, - sym_qualified_operator_cast_identifier = 443, - sym_operator_name = 444, - sym_user_defined_literal = 445, - sym_alone_macro_call = 446, - sym__call_macro_with_decl_first_arg = 447, - sym_macro_statement = 448, - sym_macro_annotation = 449, - aux_sym_translation_unit_repeat1 = 450, - aux_sym_preproc_params_repeat1 = 451, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 452, - aux_sym_preproc_argument_list_repeat1 = 453, - aux_sym_declaration_repeat1 = 454, - aux_sym_type_definition_repeat1 = 455, - aux_sym_type_definition_repeat2 = 456, - aux_sym__declaration_specifiers_repeat1 = 457, - aux_sym_attribute_declaration_repeat1 = 458, - aux_sym_attributed_declarator_repeat1 = 459, - aux_sym_pointer_declarator_repeat1 = 460, - aux_sym_function_declarator_repeat1 = 461, - aux_sym_function_declarator_repeat2 = 462, - aux_sym_abstract_function_declarator_repeat1 = 463, - aux_sym_sized_type_specifier_repeat1 = 464, - aux_sym_enumerator_list_repeat1 = 465, - aux_sym_field_declaration_repeat1 = 466, - aux_sym_parameter_list_repeat1 = 467, - aux_sym_case_statement_repeat1 = 468, - aux_sym_argument_list_repeat1 = 469, - aux_sym_initializer_list_repeat1 = 470, - aux_sym_initializer_pair_repeat1 = 471, - aux_sym_concatenated_string_repeat1 = 472, - aux_sym_string_literal_repeat1 = 473, - aux_sym_class_specifier_repeat1 = 474, - aux_sym_base_class_clause_repeat1 = 475, - aux_sym_template_parameter_list_repeat1 = 476, - aux_sym_field_initializer_list_repeat1 = 477, - aux_sym_operator_cast_definition_repeat1 = 478, - aux_sym_structured_binding_declarator_repeat1 = 479, - aux_sym_throw_specifier_repeat1 = 480, - aux_sym_template_argument_list_repeat1 = 481, - aux_sym_try_statement_repeat1 = 482, - aux_sym_lambda_capture_specifier_repeat1 = 483, - aux_sym_alone_macro_call_repeat1 = 484, - alias_sym_field_identifier = 485, - alias_sym_namespace_identifier = 486, - alias_sym_statement_identifier = 487, - alias_sym_type_identifier = 488, + anon_sym_LF = 10, + aux_sym_preproc_if_token2 = 11, + aux_sym_preproc_ifdef_token1 = 12, + aux_sym_preproc_ifdef_token2 = 13, + aux_sym_preproc_else_token1 = 14, + aux_sym_preproc_elif_token1 = 15, + aux_sym_preproc_elifdef_token1 = 16, + aux_sym_preproc_elifdef_token2 = 17, + sym_preproc_arg = 18, + sym_preproc_directive = 19, + anon_sym_LPAREN2 = 20, + anon_sym_defined = 21, + anon_sym_BANG = 22, + anon_sym_TILDE = 23, + anon_sym_DASH = 24, + anon_sym_PLUS = 25, + anon_sym_STAR = 26, + anon_sym_SLASH = 27, + anon_sym_PERCENT = 28, + anon_sym_PIPE_PIPE = 29, + anon_sym_AMP_AMP = 30, + anon_sym_PIPE = 31, + anon_sym_CARET = 32, + anon_sym_AMP = 33, + anon_sym_EQ_EQ = 34, + anon_sym_BANG_EQ = 35, + anon_sym_GT = 36, + anon_sym_GT_EQ = 37, + anon_sym_LT_EQ = 38, + anon_sym_LT = 39, + anon_sym_LT_LT = 40, + anon_sym_GT_GT = 41, + anon_sym_SEMI = 42, + anon_sym___extension__ = 43, + anon_sym_typedef = 44, + anon_sym_virtual = 45, + anon_sym_extern = 46, + anon_sym___attribute__ = 47, + anon_sym___attribute = 48, + anon_sym_COLON_COLON = 49, + anon_sym_LBRACK_LBRACK = 50, + anon_sym_RBRACK_RBRACK = 51, + anon_sym___declspec = 52, + anon_sym___based = 53, + anon_sym___cdecl = 54, + anon_sym___clrcall = 55, + anon_sym___stdcall = 56, + anon_sym___fastcall = 57, + anon_sym___thiscall = 58, + anon_sym___vectorcall = 59, + sym_ms_restrict_modifier = 60, + sym_ms_unsigned_ptr_modifier = 61, + sym_ms_signed_ptr_modifier = 62, + anon_sym__unaligned = 63, + anon_sym___unaligned = 64, + anon_sym_LBRACE = 65, + anon_sym_RBRACE = 66, + anon_sym_signed = 67, + anon_sym_unsigned = 68, + anon_sym_long = 69, + anon_sym_short = 70, + anon_sym_LBRACK = 71, + anon_sym_static = 72, + anon_sym_RBRACK = 73, + anon_sym_EQ = 74, + anon_sym_register = 75, + anon_sym_inline = 76, + anon_sym___inline = 77, + anon_sym___inline__ = 78, + anon_sym___forceinline = 79, + anon_sym_thread_local = 80, + anon_sym___thread = 81, + anon_sym_const = 82, + anon_sym_constexpr = 83, + anon_sym_volatile = 84, + anon_sym_restrict = 85, + anon_sym___restrict__ = 86, + anon_sym__Atomic = 87, + anon_sym__Noreturn = 88, + anon_sym_noreturn = 89, + anon_sym__Nonnull = 90, + anon_sym_mutable = 91, + anon_sym_constinit = 92, + anon_sym_consteval = 93, + anon_sym_alignas = 94, + anon_sym__Alignas = 95, + sym_primitive_type = 96, + anon_sym_enum = 97, + anon_sym_class = 98, + anon_sym_struct = 99, + anon_sym_union = 100, + anon_sym_COLON = 101, + anon_sym_if = 102, + anon_sym_else = 103, + anon_sym_switch = 104, + anon_sym_case = 105, + anon_sym_default = 106, + anon_sym_while = 107, + anon_sym_do = 108, + anon_sym_for = 109, + anon_sym_return = 110, + anon_sym_break = 111, + anon_sym_continue = 112, + anon_sym_goto = 113, + anon_sym___try = 114, + anon_sym___except = 115, + anon_sym___finally = 116, + anon_sym___leave = 117, + anon_sym_QMARK = 118, + anon_sym_STAR_EQ = 119, + anon_sym_SLASH_EQ = 120, + anon_sym_PERCENT_EQ = 121, + anon_sym_PLUS_EQ = 122, + anon_sym_DASH_EQ = 123, + anon_sym_LT_LT_EQ = 124, + anon_sym_GT_GT_EQ = 125, + anon_sym_AMP_EQ = 126, + anon_sym_CARET_EQ = 127, + anon_sym_PIPE_EQ = 128, + anon_sym_and_eq = 129, + anon_sym_or_eq = 130, + anon_sym_xor_eq = 131, + anon_sym_not = 132, + anon_sym_compl = 133, + anon_sym_LT_EQ_GT = 134, + anon_sym_or = 135, + anon_sym_and = 136, + anon_sym_bitor = 137, + anon_sym_xor = 138, + anon_sym_bitand = 139, + anon_sym_not_eq = 140, + anon_sym_DASH_DASH = 141, + anon_sym_PLUS_PLUS = 142, + anon_sym_sizeof = 143, + anon_sym___alignof__ = 144, + anon_sym___alignof = 145, + anon_sym__alignof = 146, + anon_sym_alignof = 147, + anon_sym__Alignof = 148, + anon_sym_offsetof = 149, + anon_sym__Generic = 150, + anon_sym_asm = 151, + anon_sym___asm__ = 152, + anon_sym___asm = 153, + anon_sym___volatile__ = 154, + anon_sym_DOT = 155, + anon_sym_DOT_STAR = 156, + anon_sym_DASH_GT = 157, + sym_number_literal = 158, + anon_sym_L_SQUOTE = 159, + anon_sym_u_SQUOTE = 160, + anon_sym_U_SQUOTE = 161, + anon_sym_u8_SQUOTE = 162, + anon_sym_SQUOTE = 163, + aux_sym_char_literal_token1 = 164, + anon_sym_L_DQUOTE = 165, + anon_sym_u_DQUOTE = 166, + anon_sym_U_DQUOTE = 167, + anon_sym_u8_DQUOTE = 168, + anon_sym_DQUOTE = 169, + aux_sym_string_literal_token1 = 170, + sym_escape_sequence = 171, + sym_system_lib_string = 172, + sym_true = 173, + sym_false = 174, + anon_sym_NULL = 175, + anon_sym_nullptr = 176, + sym_comment = 177, + sym_auto = 178, + anon_sym_decltype = 179, + anon_sym_final = 180, + anon_sym_override = 181, + anon_sym_explicit = 182, + anon_sym_typename = 183, + anon_sym_template = 184, + anon_sym_GT2 = 185, + anon_sym_operator = 186, + anon_sym_try = 187, + anon_sym_delete = 188, + aux_sym_pure_virtual_clause_token1 = 189, + anon_sym_friend = 190, + anon_sym_public = 191, + anon_sym_private = 192, + anon_sym_protected = 193, + anon_sym_noexcept = 194, + anon_sym_throw = 195, + anon_sym_namespace = 196, + anon_sym_using = 197, + anon_sym_static_assert = 198, + anon_sym_concept = 199, + anon_sym_co_return = 200, + anon_sym_co_yield = 201, + anon_sym_catch = 202, + anon_sym_R_DQUOTE = 203, + anon_sym_LR_DQUOTE = 204, + anon_sym_uR_DQUOTE = 205, + anon_sym_UR_DQUOTE = 206, + anon_sym_u8R_DQUOTE = 207, + anon_sym_co_await = 208, + anon_sym_new = 209, + anon_sym_requires = 210, + anon_sym_DASH_GT_STAR = 211, + anon_sym_LPAREN_RPAREN = 212, + anon_sym_LBRACK_RBRACK = 213, + anon_sym_DQUOTE_DQUOTE = 214, + sym_this = 215, + sym_literal_suffix = 216, + sym_alone_macro = 217, + aux_sym_alone_macro_call_token1 = 218, + anon_sym_CACHE_TRY_INSPECT = 219, + anon_sym_CACHE_TRY_UNWRAP = 220, + anon_sym_FORWARD = 221, + anon_sym_FORWARD_SET_ATTRIBUTE = 222, + anon_sym_IDB_TRY_INSPECT = 223, + anon_sym_IDB_TRY_UNWRAP = 224, + anon_sym_LS_TRY_INSPECT = 225, + anon_sym_LS_TRY_UNWRAP = 226, + anon_sym_SDB_TRY_INSPECT = 227, + anon_sym_SDB_TRY_UNWRAP = 228, + anon_sym_PS_GET = 229, + anon_sym_PS_GET_AND_SET = 230, + anon_sym_PS_GET_LOCKLESS = 231, + anon_sym_QM_TRY_INSPECT = 232, + anon_sym_QM_NOTEONLY_TRY_UNWRAP = 233, + anon_sym_QM_TRY_UNWRAP = 234, + anon_sym_QM_WARNONLY_TRY_UNWRAP = 235, + sym_macro_statement = 236, + anon_sym_MOZ_ALLOCATOR = 237, + anon_sym_MOZ_ALLOW_TEMPORARY = 238, + anon_sym_MOZ_ALWAYS_INLINE = 239, + anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG = 240, + anon_sym_MOZ_ASAN_BLACKLIST = 241, + anon_sym_MOZ_CAN_RUN_SCRIPT = 242, + anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY = 243, + anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION = 244, + anon_sym_MOZ_COLD = 245, + anon_sym_MOZ_FALLTHROUGH = 246, + anon_sym_MOZ_FORMAT_PRINTF = 247, + anon_sym_MOZ_HAVE_ANALYZER_NORETURN = 248, + anon_sym_MOZ_HAVE_ASAN_BLACKLIST = 249, + anon_sym_MOZ_HAVE_NEVER_INLINE = 250, + anon_sym_MOZ_HAVE_NORETURN = 251, + anon_sym_MOZ_HAVE_NORETURN_PTR = 252, + anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR = 253, + anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR = 254, + anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR = 255, + anon_sym_MOZ_HEAP_ALLOCATOR = 256, + anon_sym_MOZ_HEAP_CLASS = 257, + anon_sym_MOZ_IMPLICIT = 258, + anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS = 259, + anon_sym_MOZ_INIT_OUTSIDE_CTOR = 260, + anon_sym_MOZ_IS_CLASS_INIT = 261, + anon_sym_MOZ_IS_REFPTR = 262, + anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED = 263, + anon_sym_MOZ_MAYBE_UNUSED = 264, + anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN = 265, + anon_sym_MOZ_MUST_OVERRIDE = 266, + anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG = 267, + anon_sym_MOZ_MUST_USE = 268, + anon_sym_MOZ_MUST_USE_TYPE = 269, + anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS = 270, + anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE = 271, + anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE = 272, + anon_sym_MOZ_NEVER_INLINE = 273, + anon_sym_MOZ_NEVER_INLINE_DEBUG = 274, + anon_sym_MOZ_NONHEAP_CLASS = 275, + anon_sym_MOZ_NONNULL = 276, + anon_sym_MOZ_NONNULL_RETURN = 277, + anon_sym_MOZ_NON_AUTOABLE = 278, + anon_sym_MOZ_NON_MEMMOVABLE = 279, + anon_sym_MOZ_NON_OWNING_REF = 280, + anon_sym_MOZ_NON_PARAM = 281, + anon_sym_MOZ_NON_TEMPORARY_CLASS = 282, + anon_sym_MOZ_NORETURN = 283, + anon_sym_MOZ_NORETURN_PTR = 284, + anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN = 285, + anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT = 286, + anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES = 287, + anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW = 288, + anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW = 289, + anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS = 290, + anon_sym_MOZ_OWNING_REF = 291, + anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS = 292, + anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS = 293, + anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS = 294, + anon_sym_MOZ_RAII = 295, + anon_sym_MOZ_REQUIRED_BASE_METHOD = 296, + anon_sym_MOZ_STACK_CLASS = 297, + anon_sym_MOZ_STATIC_CLASS = 298, + anon_sym_MOZ_STATIC_LOCAL_CLASS = 299, + anon_sym_MOZ_TEMPORARY_CLASS = 300, + anon_sym_MOZ_TRIVIAL_CTOR_DTOR = 301, + anon_sym_MOZ_TSAN_BLACKLIST = 302, + anon_sym_MOZ_UNSAFE_REF = 303, + anon_sym_MOZ_XPCOM_ABI = 304, + anon_sym_JS_PUBLIC_API = 305, + sym_raw_string_delimiter = 306, + sym_raw_string_content = 307, + sym_translation_unit = 308, + sym__top_level_item = 309, + sym__block_item = 310, + sym_preproc_include = 311, + sym_preproc_def = 312, + sym_preproc_function_def = 313, + sym_preproc_params = 314, + sym_preproc_call = 315, + sym_preproc_if = 316, + sym_preproc_ifdef = 317, + sym_preproc_else = 318, + sym_preproc_elif = 319, + sym_preproc_elifdef = 320, + sym_preproc_if_in_field_declaration_list = 321, + sym_preproc_ifdef_in_field_declaration_list = 322, + sym_preproc_else_in_field_declaration_list = 323, + sym_preproc_elif_in_field_declaration_list = 324, + sym_preproc_elifdef_in_field_declaration_list = 325, + sym_preproc_if_in_enumerator_list = 326, + sym_preproc_ifdef_in_enumerator_list = 327, + sym_preproc_else_in_enumerator_list = 328, + sym_preproc_elif_in_enumerator_list = 329, + sym_preproc_elifdef_in_enumerator_list = 330, + sym_preproc_if_in_enumerator_list_no_comma = 331, + sym_preproc_ifdef_in_enumerator_list_no_comma = 332, + sym_preproc_else_in_enumerator_list_no_comma = 333, + sym_preproc_elif_in_enumerator_list_no_comma = 334, + sym_preproc_elifdef_in_enumerator_list_no_comma = 335, + sym__preproc_expression = 336, + sym_preproc_parenthesized_expression = 337, + sym_preproc_defined = 338, + sym_preproc_unary_expression = 339, + sym_preproc_call_expression = 340, + sym_preproc_argument_list = 341, + sym_preproc_binary_expression = 342, + sym_function_definition = 343, + sym_declaration = 344, + sym_type_definition = 345, + sym__type_definition_type = 346, + sym__type_definition_declarators = 347, + sym__declaration_modifiers = 348, + sym__declaration_specifiers = 349, + sym_linkage_specification = 350, + sym_attribute_specifier = 351, + sym_attribute = 352, + sym_attribute_declaration = 353, + sym_ms_declspec_modifier = 354, + sym_ms_based_modifier = 355, + sym_ms_call_modifier = 356, + sym_ms_unaligned_ptr_modifier = 357, + sym_ms_pointer_modifier = 358, + sym_declaration_list = 359, + sym__declarator = 360, + sym__field_declarator = 361, + sym__type_declarator = 362, + sym__abstract_declarator = 363, + sym_parenthesized_declarator = 364, + sym_parenthesized_field_declarator = 365, + sym_parenthesized_type_declarator = 366, + sym_abstract_parenthesized_declarator = 367, + sym_attributed_declarator = 368, + sym_attributed_field_declarator = 369, + sym_attributed_type_declarator = 370, + sym_pointer_declarator = 371, + sym_pointer_field_declarator = 372, + sym_pointer_type_declarator = 373, + sym_abstract_pointer_declarator = 374, + sym_function_declarator = 375, + sym_function_field_declarator = 376, + sym_function_type_declarator = 377, + sym_abstract_function_declarator = 378, + sym_array_declarator = 379, + sym_array_field_declarator = 380, + sym_array_type_declarator = 381, + sym_abstract_array_declarator = 382, + sym_init_declarator = 383, + sym_compound_statement = 384, + sym_storage_class_specifier = 385, + sym_type_qualifier = 386, + sym_alignas_qualifier = 387, + sym_type_specifier = 388, + sym_sized_type_specifier = 389, + sym_enum_specifier = 390, + sym_enumerator_list = 391, + sym_struct_specifier = 392, + sym_union_specifier = 393, + sym_field_declaration_list = 394, + sym__field_declaration_list_item = 395, + sym_field_declaration = 396, + sym_bitfield_clause = 397, + sym_enumerator = 398, + sym_parameter_list = 399, + sym_parameter_declaration = 400, + sym_attributed_statement = 401, + sym_statement = 402, + sym__top_level_statement = 403, + sym_labeled_statement = 404, + sym__top_level_expression_statement = 405, + sym_expression_statement = 406, + sym_if_statement = 407, + sym_else_clause = 408, + sym_switch_statement = 409, + sym_case_statement = 410, + sym_while_statement = 411, + sym_do_statement = 412, + sym_for_statement = 413, + sym__for_statement_body = 414, + sym_return_statement = 415, + sym_break_statement = 416, + sym_continue_statement = 417, + sym_goto_statement = 418, + sym_seh_try_statement = 419, + sym_seh_except_clause = 420, + sym_seh_finally_clause = 421, + sym_seh_leave_statement = 422, + sym_expression = 423, + sym__string = 424, + sym_comma_expression = 425, + sym_conditional_expression = 426, + sym_assignment_expression = 427, + sym_pointer_expression = 428, + sym_unary_expression = 429, + sym_binary_expression = 430, + sym_update_expression = 431, + sym_cast_expression = 432, + sym_type_descriptor = 433, + sym_sizeof_expression = 434, + sym_alignof_expression = 435, + sym_offsetof_expression = 436, + sym_generic_expression = 437, + sym_subscript_expression = 438, + sym_call_expression = 439, + sym_gnu_asm_expression = 440, + sym_gnu_asm_qualifier = 441, + sym_gnu_asm_output_operand_list = 442, + sym_gnu_asm_output_operand = 443, + sym_gnu_asm_input_operand_list = 444, + sym_gnu_asm_input_operand = 445, + sym_gnu_asm_clobber_list = 446, + sym_gnu_asm_goto_list = 447, + sym_extension_expression = 448, + sym_argument_list = 449, + sym_field_expression = 450, + sym_compound_literal_expression = 451, + sym_parenthesized_expression = 452, + sym_initializer_list = 453, + sym_initializer_pair = 454, + sym_subscript_designator = 455, + sym_subscript_range_designator = 456, + sym_field_designator = 457, + sym_char_literal = 458, + sym_concatenated_string = 459, + sym_string_literal = 460, + sym_null = 461, + sym__empty_declaration = 462, + sym_placeholder_type_specifier = 463, + sym_decltype_auto = 464, + sym_decltype = 465, + sym__class_declaration = 466, + sym__class_declaration_item = 467, + sym_class_specifier = 468, + sym__class_name = 469, + sym_virtual_specifier = 470, + sym_explicit_function_specifier = 471, + sym_base_class_clause = 472, + sym__enum_base_clause = 473, + sym_dependent_type = 474, + sym_template_declaration = 475, + sym_template_instantiation = 476, + sym_template_parameter_list = 477, + sym_type_parameter_declaration = 478, + sym_variadic_type_parameter_declaration = 479, + sym_optional_type_parameter_declaration = 480, + sym_template_template_parameter_declaration = 481, + sym_optional_parameter_declaration = 482, + sym_variadic_parameter_declaration = 483, + sym_variadic_declarator = 484, + sym_variadic_reference_declarator = 485, + sym_operator_cast = 486, + sym_field_initializer_list = 487, + sym_field_initializer = 488, + sym_inline_method_definition = 489, + sym__constructor_specifiers = 490, + sym_operator_cast_definition = 491, + sym_operator_cast_declaration = 492, + sym_constructor_try_statement = 493, + sym_constructor_or_destructor_definition = 494, + sym_constructor_or_destructor_declaration = 495, + sym_default_method_clause = 496, + sym_delete_method_clause = 497, + sym_pure_virtual_clause = 498, + sym_friend_declaration = 499, + sym_access_specifier = 500, + sym_reference_declarator = 501, + sym_reference_field_declarator = 502, + sym_reference_type_declarator = 503, + sym_abstract_reference_declarator = 504, + sym_structured_binding_declarator = 505, + sym_ref_qualifier = 506, + sym__function_declarator_seq = 507, + sym__function_attributes_start = 508, + sym__function_exception_specification = 509, + sym__function_attributes_end = 510, + sym__function_postfix = 511, + sym_trailing_return_type = 512, + sym_noexcept = 513, + sym_throw_specifier = 514, + sym_template_type = 515, + sym_template_method = 516, + sym_template_function = 517, + sym_template_argument_list = 518, + sym_namespace_definition = 519, + sym_namespace_alias_definition = 520, + sym__namespace_specifier = 521, + sym_nested_namespace_specifier = 522, + sym_using_declaration = 523, + sym_alias_declaration = 524, + sym_static_assert_declaration = 525, + sym_concept_definition = 526, + sym_for_range_loop = 527, + sym__for_range_loop_body = 528, + sym_init_statement = 529, + sym_condition_clause = 530, + sym_condition_declaration = 531, + sym_co_return_statement = 532, + sym_co_yield_statement = 533, + sym_throw_statement = 534, + sym_try_statement = 535, + sym_catch_clause = 536, + sym_raw_string_literal = 537, + sym_subscript_argument_list = 538, + sym_co_await_expression = 539, + sym_new_expression = 540, + sym_new_declarator = 541, + sym_delete_expression = 542, + sym_type_requirement = 543, + sym_compound_requirement = 544, + sym__requirement = 545, + sym_requirement_seq = 546, + sym_constraint_conjunction = 547, + sym_constraint_disjunction = 548, + sym__requirement_clause_constraint = 549, + sym_requires_clause = 550, + sym_requires_parameter_list = 551, + sym_requires_expression = 552, + sym_lambda_expression = 553, + sym_lambda_capture_specifier = 554, + sym_lambda_default_capture = 555, + sym__lambda_capture_identifier = 556, + sym_lambda_capture_initializer = 557, + sym__lambda_capture = 558, + sym__fold_operator = 559, + sym__binary_fold_operator = 560, + sym__unary_left_fold = 561, + sym__unary_right_fold = 562, + sym__binary_fold = 563, + sym_fold_expression = 564, + sym_parameter_pack_expansion = 565, + sym_type_parameter_pack_expansion = 566, + sym_identifier_parameter_pack_expansion = 567, + sym_destructor_name = 568, + sym_dependent_identifier = 569, + sym_dependent_field_identifier = 570, + sym_dependent_type_identifier = 571, + sym__scope_resolution = 572, + sym_qualified_field_identifier = 573, + sym_qualified_identifier = 574, + sym_qualified_type_identifier = 575, + sym_qualified_operator_cast_identifier = 576, + sym__assignment_expression_lhs = 577, + sym_operator_name = 578, + sym_user_defined_literal = 579, + sym_alone_macro_call = 580, + sym__call_macro_with_decl_first_arg = 581, + sym_macro_annotation = 582, + aux_sym_translation_unit_repeat1 = 583, + aux_sym_preproc_params_repeat1 = 584, + aux_sym_preproc_if_repeat1 = 585, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 586, + aux_sym_preproc_if_in_enumerator_list_repeat1 = 587, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 588, + aux_sym_preproc_argument_list_repeat1 = 589, + aux_sym_declaration_repeat1 = 590, + aux_sym_type_definition_repeat1 = 591, + aux_sym__type_definition_type_repeat1 = 592, + aux_sym__type_definition_declarators_repeat1 = 593, + aux_sym__declaration_specifiers_repeat1 = 594, + aux_sym_attribute_declaration_repeat1 = 595, + aux_sym_attributed_declarator_repeat1 = 596, + aux_sym_pointer_declarator_repeat1 = 597, + aux_sym_array_declarator_repeat1 = 598, + aux_sym_sized_type_specifier_repeat1 = 599, + aux_sym_enumerator_list_repeat1 = 600, + aux_sym_field_declaration_repeat1 = 601, + aux_sym_parameter_list_repeat1 = 602, + aux_sym_case_statement_repeat1 = 603, + aux_sym_generic_expression_repeat1 = 604, + aux_sym_gnu_asm_expression_repeat1 = 605, + aux_sym_gnu_asm_output_operand_list_repeat1 = 606, + aux_sym_gnu_asm_input_operand_list_repeat1 = 607, + aux_sym_gnu_asm_clobber_list_repeat1 = 608, + aux_sym_gnu_asm_goto_list_repeat1 = 609, + aux_sym_argument_list_repeat1 = 610, + aux_sym_initializer_list_repeat1 = 611, + aux_sym_initializer_pair_repeat1 = 612, + aux_sym_char_literal_repeat1 = 613, + aux_sym_concatenated_string_repeat1 = 614, + aux_sym_string_literal_repeat1 = 615, + aux_sym__class_declaration_repeat1 = 616, + aux_sym_class_specifier_repeat1 = 617, + aux_sym_base_class_clause_repeat1 = 618, + aux_sym_template_parameter_list_repeat1 = 619, + aux_sym_field_initializer_list_repeat1 = 620, + aux_sym_operator_cast_definition_repeat1 = 621, + aux_sym_constructor_try_statement_repeat1 = 622, + aux_sym_structured_binding_declarator_repeat1 = 623, + aux_sym__function_postfix_repeat1 = 624, + aux_sym_throw_specifier_repeat1 = 625, + aux_sym_template_argument_list_repeat1 = 626, + aux_sym_subscript_argument_list_repeat1 = 627, + aux_sym_requirement_seq_repeat1 = 628, + aux_sym_requires_parameter_list_repeat1 = 629, + aux_sym_lambda_capture_specifier_repeat1 = 630, + aux_sym_alone_macro_call_repeat1 = 631, + aux_sym__call_macro_with_decl_first_arg_repeat1 = 632, + alias_sym_field_identifier = 633, + alias_sym_namespace_identifier = 634, + alias_sym_simple_requirement = 635, + alias_sym_statement_identifier = 636, + alias_sym_type_identifier = 637, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [sym_identifier] = "identifier", [aux_sym_preproc_include_token1] = "#include", - [anon_sym_LF] = "\n", + [aux_sym_preproc_include_token2] = "preproc_include_token2", [aux_sym_preproc_def_token1] = "#define", [anon_sym_LPAREN] = "(", [anon_sym_DOT_DOT_DOT] = "...", [anon_sym_COMMA] = ",", [anon_sym_RPAREN] = ")", [aux_sym_preproc_if_token1] = "#if", + [anon_sym_LF] = "\n", [aux_sym_preproc_if_token2] = "#endif", [aux_sym_preproc_ifdef_token1] = "#ifdef", [aux_sym_preproc_ifdef_token2] = "#ifndef", [aux_sym_preproc_else_token1] = "#else", [aux_sym_preproc_elif_token1] = "#elif", - [sym_preproc_directive] = "preproc_directive", + [aux_sym_preproc_elifdef_token1] = "#elifdef", + [aux_sym_preproc_elifdef_token2] = "#elifndef", [sym_preproc_arg] = "preproc_arg", + [sym_preproc_directive] = "preproc_directive", [anon_sym_LPAREN2] = "(", [anon_sym_defined] = "defined", [anon_sym_BANG] = "!", @@ -556,9 +711,12 @@ static const char * const ts_symbol_names[] = { [anon_sym_LT_LT] = "<<", [anon_sym_GT_GT] = ">>", [anon_sym_SEMI] = ";", + [anon_sym___extension__] = "__extension__", [anon_sym_typedef] = "typedef", + [anon_sym_virtual] = "virtual", [anon_sym_extern] = "extern", [anon_sym___attribute__] = "__attribute__", + [anon_sym___attribute] = "__attribute", [anon_sym_COLON_COLON] = "::", [anon_sym_LBRACK_LBRACK] = "[[", [anon_sym_RBRACK_RBRACK] = "]]", @@ -577,23 +735,35 @@ static const char * const ts_symbol_names[] = { [anon_sym___unaligned] = "__unaligned", [anon_sym_LBRACE] = "{", [anon_sym_RBRACE] = "}", + [anon_sym_signed] = "signed", + [anon_sym_unsigned] = "unsigned", + [anon_sym_long] = "long", + [anon_sym_short] = "short", [anon_sym_LBRACK] = "[", + [anon_sym_static] = "static", [anon_sym_RBRACK] = "]", [anon_sym_EQ] = "=", - [anon_sym_static] = "static", [anon_sym_register] = "register", [anon_sym_inline] = "inline", + [anon_sym___inline] = "__inline", + [anon_sym___inline__] = "__inline__", + [anon_sym___forceinline] = "__forceinline", [anon_sym_thread_local] = "thread_local", + [anon_sym___thread] = "__thread", [anon_sym_const] = "const", + [anon_sym_constexpr] = "constexpr", [anon_sym_volatile] = "volatile", [anon_sym_restrict] = "restrict", + [anon_sym___restrict__] = "__restrict__", [anon_sym__Atomic] = "_Atomic", + [anon_sym__Noreturn] = "_Noreturn", + [anon_sym_noreturn] = "noreturn", + [anon_sym__Nonnull] = "_Nonnull", [anon_sym_mutable] = "mutable", - [anon_sym_constexpr] = "constexpr", - [anon_sym_signed] = "signed", - [anon_sym_unsigned] = "unsigned", - [anon_sym_long] = "long", - [anon_sym_short] = "short", + [anon_sym_constinit] = "constinit", + [anon_sym_consteval] = "consteval", + [anon_sym_alignas] = "alignas", + [anon_sym__Alignas] = "_Alignas", [sym_primitive_type] = "primitive_type", [anon_sym_enum] = "enum", [anon_sym_class] = "class", @@ -612,6 +782,10 @@ static const char * const ts_symbol_names[] = { [anon_sym_break] = "break", [anon_sym_continue] = "continue", [anon_sym_goto] = "goto", + [anon_sym___try] = "__try", + [anon_sym___except] = "__except", + [anon_sym___finally] = "__finally", + [anon_sym___leave] = "__leave", [anon_sym_QMARK] = "\?", [anon_sym_STAR_EQ] = "*=", [anon_sym_SLASH_EQ] = "/=", @@ -623,10 +797,34 @@ static const char * const ts_symbol_names[] = { [anon_sym_AMP_EQ] = "&=", [anon_sym_CARET_EQ] = "^=", [anon_sym_PIPE_EQ] = "|=", + [anon_sym_and_eq] = "and_eq", + [anon_sym_or_eq] = "or_eq", + [anon_sym_xor_eq] = "xor_eq", + [anon_sym_not] = "not", + [anon_sym_compl] = "compl", + [anon_sym_LT_EQ_GT] = "<=>", + [anon_sym_or] = "or", + [anon_sym_and] = "and", + [anon_sym_bitor] = "bitor", + [anon_sym_xor] = "xor", + [anon_sym_bitand] = "bitand", + [anon_sym_not_eq] = "not_eq", [anon_sym_DASH_DASH] = "--", [anon_sym_PLUS_PLUS] = "++", [anon_sym_sizeof] = "sizeof", + [anon_sym___alignof__] = "__alignof__", + [anon_sym___alignof] = "__alignof", + [anon_sym__alignof] = "_alignof", + [anon_sym_alignof] = "alignof", + [anon_sym__Alignof] = "_Alignof", + [anon_sym_offsetof] = "offsetof", + [anon_sym__Generic] = "_Generic", + [anon_sym_asm] = "asm", + [anon_sym___asm__] = "__asm__", + [anon_sym___asm] = "__asm", + [anon_sym___volatile__] = "__volatile__", [anon_sym_DOT] = ".", + [anon_sym_DOT_STAR] = ".*", [anon_sym_DASH_GT] = "->", [sym_number_literal] = "number_literal", [anon_sym_L_SQUOTE] = "L'", @@ -634,51 +832,58 @@ static const char * const ts_symbol_names[] = { [anon_sym_U_SQUOTE] = "U'", [anon_sym_u8_SQUOTE] = "u8'", [anon_sym_SQUOTE] = "'", - [aux_sym_char_literal_token1] = "char_literal_token1", + [aux_sym_char_literal_token1] = "character", [anon_sym_L_DQUOTE] = "L\"", [anon_sym_u_DQUOTE] = "u\"", [anon_sym_U_DQUOTE] = "U\"", [anon_sym_u8_DQUOTE] = "u8\"", [anon_sym_DQUOTE] = "\"", - [aux_sym_string_literal_token1] = "string_literal_token1", + [aux_sym_string_literal_token1] = "string_content", [sym_escape_sequence] = "escape_sequence", [sym_system_lib_string] = "system_lib_string", [sym_true] = "true", [sym_false] = "false", - [sym_null] = "null", + [anon_sym_NULL] = "NULL", + [anon_sym_nullptr] = "nullptr", [sym_comment] = "comment", + [sym_auto] = "auto", [anon_sym_decltype] = "decltype", [anon_sym_final] = "final", [anon_sym_override] = "override", - [anon_sym_virtual] = "virtual", [anon_sym_explicit] = "explicit", - [anon_sym_public] = "public", - [anon_sym_private] = "private", - [anon_sym_protected] = "protected", - [sym_auto] = "auto", [anon_sym_typename] = "typename", [anon_sym_template] = "template", [anon_sym_GT2] = ">", [anon_sym_operator] = "operator", + [anon_sym_try] = "try", [anon_sym_delete] = "delete", + [aux_sym_pure_virtual_clause_token1] = "pure_virtual_clause_token1", [anon_sym_friend] = "friend", + [anon_sym_public] = "public", + [anon_sym_private] = "private", + [anon_sym_protected] = "protected", [anon_sym_noexcept] = "noexcept", [anon_sym_throw] = "throw", [anon_sym_namespace] = "namespace", [anon_sym_using] = "using", [anon_sym_static_assert] = "static_assert", + [anon_sym_concept] = "concept", [anon_sym_co_return] = "co_return", [anon_sym_co_yield] = "co_yield", - [anon_sym_try] = "try", [anon_sym_catch] = "catch", + [anon_sym_R_DQUOTE] = "R\"", + [anon_sym_LR_DQUOTE] = "LR\"", + [anon_sym_uR_DQUOTE] = "uR\"", + [anon_sym_UR_DQUOTE] = "UR\"", + [anon_sym_u8R_DQUOTE] = "u8R\"", [anon_sym_co_await] = "co_await", [anon_sym_new] = "new", + [anon_sym_requires] = "requires", [anon_sym_DASH_GT_STAR] = "->*", [anon_sym_LPAREN_RPAREN] = "()", [anon_sym_LBRACK_RBRACK] = "[]", [anon_sym_DQUOTE_DQUOTE] = "\"\"", [sym_this] = "this", - [sym_nullptr] = "nullptr", [sym_literal_suffix] = "literal_suffix", [sym_alone_macro] = "alone_macro", [aux_sym_alone_macro_call_token1] = "alone_macro_call_token1", @@ -699,7 +904,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = "QM_NOTEONLY_TRY_UNWRAP", [anon_sym_QM_TRY_UNWRAP] = "QM_TRY_UNWRAP", [anon_sym_QM_WARNONLY_TRY_UNWRAP] = "QM_WARNONLY_TRY_UNWRAP", - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = "MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER", + [sym_macro_statement] = "macro_statement", [anon_sym_MOZ_ALLOCATOR] = "MOZ_ALLOCATOR", [anon_sym_MOZ_ALLOW_TEMPORARY] = "MOZ_ALLOW_TEMPORARY", [anon_sym_MOZ_ALWAYS_INLINE] = "MOZ_ALWAYS_INLINE", @@ -769,8 +974,11 @@ static const char * const ts_symbol_names[] = { [anon_sym_MOZ_UNSAFE_REF] = "MOZ_UNSAFE_REF", [anon_sym_MOZ_XPCOM_ABI] = "MOZ_XPCOM_ABI", [anon_sym_JS_PUBLIC_API] = "JS_PUBLIC_API", - [sym_raw_string_literal] = "raw_string_literal", + [sym_raw_string_delimiter] = "raw_string_delimiter", + [sym_raw_string_content] = "raw_string_content", [sym_translation_unit] = "translation_unit", + [sym__top_level_item] = "_top_level_item", + [sym__block_item] = "_block_item", [sym_preproc_include] = "preproc_include", [sym_preproc_def] = "preproc_def", [sym_preproc_function_def] = "preproc_function_def", @@ -780,10 +988,22 @@ static const char * const ts_symbol_names[] = { [sym_preproc_ifdef] = "preproc_ifdef", [sym_preproc_else] = "preproc_else", [sym_preproc_elif] = "preproc_elif", + [sym_preproc_elifdef] = "preproc_elifdef", [sym_preproc_if_in_field_declaration_list] = "preproc_if", [sym_preproc_ifdef_in_field_declaration_list] = "preproc_ifdef", [sym_preproc_else_in_field_declaration_list] = "preproc_else", [sym_preproc_elif_in_field_declaration_list] = "preproc_elif", + [sym_preproc_elifdef_in_field_declaration_list] = "preproc_elifdef", + [sym_preproc_if_in_enumerator_list] = "preproc_if", + [sym_preproc_ifdef_in_enumerator_list] = "preproc_ifdef", + [sym_preproc_else_in_enumerator_list] = "preproc_else", + [sym_preproc_elif_in_enumerator_list] = "preproc_elif", + [sym_preproc_elifdef_in_enumerator_list] = "preproc_elifdef", + [sym_preproc_if_in_enumerator_list_no_comma] = "preproc_if", + [sym_preproc_ifdef_in_enumerator_list_no_comma] = "preproc_ifdef", + [sym_preproc_else_in_enumerator_list_no_comma] = "preproc_else", + [sym_preproc_elif_in_enumerator_list_no_comma] = "preproc_elif", + [sym_preproc_elifdef_in_enumerator_list_no_comma] = "preproc_elifdef", [sym__preproc_expression] = "_preproc_expression", [sym_preproc_parenthesized_expression] = "parenthesized_expression", [sym_preproc_defined] = "preproc_defined", @@ -794,6 +1014,8 @@ static const char * const ts_symbol_names[] = { [sym_function_definition] = "function_definition", [sym_declaration] = "declaration", [sym_type_definition] = "type_definition", + [sym__type_definition_type] = "_type_definition_type", + [sym__type_definition_declarators] = "_type_definition_declarators", [sym__declaration_modifiers] = "_declaration_modifiers", [sym__declaration_specifiers] = "_declaration_specifiers", [sym_linkage_specification] = "linkage_specification", @@ -819,7 +1041,7 @@ static const char * const ts_symbol_names[] = { [sym_attributed_type_declarator] = "attributed_declarator", [sym_pointer_declarator] = "pointer_declarator", [sym_pointer_field_declarator] = "pointer_declarator", - [sym_pointer_type_declarator] = "pointer_declarator", + [sym_pointer_type_declarator] = "pointer_type_declarator", [sym_abstract_pointer_declarator] = "abstract_pointer_declarator", [sym_function_declarator] = "function_declarator", [sym_function_field_declarator] = "function_declarator", @@ -833,7 +1055,8 @@ static const char * const ts_symbol_names[] = { [sym_compound_statement] = "compound_statement", [sym_storage_class_specifier] = "storage_class_specifier", [sym_type_qualifier] = "type_qualifier", - [sym__type_specifier] = "_type_specifier", + [sym_alignas_qualifier] = "alignas_qualifier", + [sym_type_specifier] = "type_specifier", [sym_sized_type_specifier] = "sized_type_specifier", [sym_enum_specifier] = "enum_specifier", [sym_enumerator_list] = "enumerator_list", @@ -847,19 +1070,29 @@ static const char * const ts_symbol_names[] = { [sym_parameter_list] = "parameter_list", [sym_parameter_declaration] = "parameter_declaration", [sym_attributed_statement] = "attributed_statement", + [sym_statement] = "statement", + [sym__top_level_statement] = "_top_level_statement", [sym_labeled_statement] = "labeled_statement", + [sym__top_level_expression_statement] = "expression_statement", [sym_expression_statement] = "expression_statement", [sym_if_statement] = "if_statement", + [sym_else_clause] = "else_clause", [sym_switch_statement] = "switch_statement", [sym_case_statement] = "case_statement", [sym_while_statement] = "while_statement", [sym_do_statement] = "do_statement", [sym_for_statement] = "for_statement", + [sym__for_statement_body] = "_for_statement_body", [sym_return_statement] = "return_statement", [sym_break_statement] = "break_statement", [sym_continue_statement] = "continue_statement", [sym_goto_statement] = "goto_statement", - [sym__expression] = "_expression", + [sym_seh_try_statement] = "seh_try_statement", + [sym_seh_except_clause] = "seh_except_clause", + [sym_seh_finally_clause] = "seh_finally_clause", + [sym_seh_leave_statement] = "seh_leave_statement", + [sym_expression] = "expression", + [sym__string] = "_string", [sym_comma_expression] = "comma_expression", [sym_conditional_expression] = "conditional_expression", [sym_assignment_expression] = "assignment_expression", @@ -870,8 +1103,20 @@ static const char * const ts_symbol_names[] = { [sym_cast_expression] = "cast_expression", [sym_type_descriptor] = "type_descriptor", [sym_sizeof_expression] = "sizeof_expression", + [sym_alignof_expression] = "alignof_expression", + [sym_offsetof_expression] = "offsetof_expression", + [sym_generic_expression] = "generic_expression", [sym_subscript_expression] = "subscript_expression", [sym_call_expression] = "call_expression", + [sym_gnu_asm_expression] = "gnu_asm_expression", + [sym_gnu_asm_qualifier] = "gnu_asm_qualifier", + [sym_gnu_asm_output_operand_list] = "gnu_asm_output_operand_list", + [sym_gnu_asm_output_operand] = "gnu_asm_output_operand", + [sym_gnu_asm_input_operand_list] = "gnu_asm_input_operand_list", + [sym_gnu_asm_input_operand] = "gnu_asm_input_operand", + [sym_gnu_asm_clobber_list] = "gnu_asm_clobber_list", + [sym_gnu_asm_goto_list] = "gnu_asm_goto_list", + [sym_extension_expression] = "extension_expression", [sym_argument_list] = "argument_list", [sym_field_expression] = "field_expression", [sym_compound_literal_expression] = "compound_literal_expression", @@ -879,16 +1124,21 @@ static const char * const ts_symbol_names[] = { [sym_initializer_list] = "initializer_list", [sym_initializer_pair] = "initializer_pair", [sym_subscript_designator] = "subscript_designator", + [sym_subscript_range_designator] = "subscript_range_designator", [sym_field_designator] = "field_designator", [sym_char_literal] = "char_literal", [sym_concatenated_string] = "concatenated_string", [sym_string_literal] = "string_literal", + [sym_null] = "null", [sym__empty_declaration] = "_empty_declaration", + [sym_placeholder_type_specifier] = "placeholder_type_specifier", + [sym_decltype_auto] = "decltype", [sym_decltype] = "decltype", + [sym__class_declaration] = "_class_declaration", + [sym__class_declaration_item] = "_class_declaration_item", [sym_class_specifier] = "class_specifier", [sym__class_name] = "_class_name", [sym_virtual_specifier] = "virtual_specifier", - [sym_virtual_function_specifier] = "virtual_function_specifier", [sym_explicit_function_specifier] = "explicit_function_specifier", [sym_base_class_clause] = "base_class_clause", [sym__enum_base_clause] = "_enum_base_clause", @@ -911,17 +1161,25 @@ static const char * const ts_symbol_names[] = { [sym__constructor_specifiers] = "_constructor_specifiers", [sym_operator_cast_definition] = "function_definition", [sym_operator_cast_declaration] = "declaration", + [sym_constructor_try_statement] = "try_statement", [sym_constructor_or_destructor_definition] = "function_definition", [sym_constructor_or_destructor_declaration] = "declaration", [sym_default_method_clause] = "default_method_clause", [sym_delete_method_clause] = "delete_method_clause", + [sym_pure_virtual_clause] = "pure_virtual_clause", [sym_friend_declaration] = "friend_declaration", [sym_access_specifier] = "access_specifier", [sym_reference_declarator] = "reference_declarator", [sym_reference_field_declarator] = "reference_declarator", + [sym_reference_type_declarator] = "reference_declarator", [sym_abstract_reference_declarator] = "abstract_reference_declarator", [sym_structured_binding_declarator] = "structured_binding_declarator", [sym_ref_qualifier] = "ref_qualifier", + [sym__function_declarator_seq] = "_function_declarator_seq", + [sym__function_attributes_start] = "_function_attributes_start", + [sym__function_exception_specification] = "_function_exception_specification", + [sym__function_attributes_end] = "_function_attributes_end", + [sym__function_postfix] = "_function_postfix", [sym_trailing_return_type] = "trailing_return_type", [sym_noexcept] = "noexcept", [sym_throw_specifier] = "throw_specifier", @@ -930,27 +1188,54 @@ static const char * const ts_symbol_names[] = { [sym_template_function] = "template_function", [sym_template_argument_list] = "template_argument_list", [sym_namespace_definition] = "namespace_definition", - [sym_namespace_definition_name] = "namespace_definition_name", + [sym_namespace_alias_definition] = "namespace_alias_definition", + [sym__namespace_specifier] = "_namespace_specifier", + [sym_nested_namespace_specifier] = "nested_namespace_specifier", [sym_using_declaration] = "using_declaration", [sym_alias_declaration] = "alias_declaration", [sym_static_assert_declaration] = "static_assert_declaration", + [sym_concept_definition] = "concept_definition", + [sym_for_range_loop] = "for_range_loop", + [sym__for_range_loop_body] = "_for_range_loop_body", + [sym_init_statement] = "init_statement", [sym_condition_clause] = "condition_clause", [sym_condition_declaration] = "declaration", - [sym_for_range_loop] = "for_range_loop", [sym_co_return_statement] = "co_return_statement", [sym_co_yield_statement] = "co_yield_statement", [sym_throw_statement] = "throw_statement", [sym_try_statement] = "try_statement", [sym_catch_clause] = "catch_clause", + [sym_raw_string_literal] = "raw_string_literal", + [sym_subscript_argument_list] = "subscript_argument_list", [sym_co_await_expression] = "co_await_expression", [sym_new_expression] = "new_expression", [sym_new_declarator] = "new_declarator", [sym_delete_expression] = "delete_expression", + [sym_type_requirement] = "type_requirement", + [sym_compound_requirement] = "compound_requirement", + [sym__requirement] = "_requirement", + [sym_requirement_seq] = "requirement_seq", + [sym_constraint_conjunction] = "constraint_conjunction", + [sym_constraint_disjunction] = "constraint_disjunction", + [sym__requirement_clause_constraint] = "_requirement_clause_constraint", + [sym_requires_clause] = "requires_clause", + [sym_requires_parameter_list] = "parameter_list", + [sym_requires_expression] = "requires_expression", [sym_lambda_expression] = "lambda_expression", [sym_lambda_capture_specifier] = "lambda_capture_specifier", [sym_lambda_default_capture] = "lambda_default_capture", + [sym__lambda_capture_identifier] = "_lambda_capture_identifier", + [sym_lambda_capture_initializer] = "lambda_capture_initializer", + [sym__lambda_capture] = "_lambda_capture", + [sym__fold_operator] = "_fold_operator", + [sym__binary_fold_operator] = "_binary_fold_operator", + [sym__unary_left_fold] = "_unary_left_fold", + [sym__unary_right_fold] = "_unary_right_fold", + [sym__binary_fold] = "_binary_fold", + [sym_fold_expression] = "fold_expression", [sym_parameter_pack_expansion] = "parameter_pack_expansion", [sym_type_parameter_pack_expansion] = "parameter_pack_expansion", + [sym_identifier_parameter_pack_expansion] = "parameter_pack_expansion", [sym_destructor_name] = "destructor_name", [sym_dependent_identifier] = "dependent_name", [sym_dependent_field_identifier] = "dependent_name", @@ -960,49 +1245,65 @@ static const char * const ts_symbol_names[] = { [sym_qualified_identifier] = "qualified_identifier", [sym_qualified_type_identifier] = "qualified_identifier", [sym_qualified_operator_cast_identifier] = "qualified_identifier", + [sym__assignment_expression_lhs] = "assignment_expression", [sym_operator_name] = "operator_name", [sym_user_defined_literal] = "user_defined_literal", [sym_alone_macro_call] = "alone_macro_call", [sym__call_macro_with_decl_first_arg] = "_call_macro_with_decl_first_arg", - [sym_macro_statement] = "macro_statement", [sym_macro_annotation] = "macro_annotation", [aux_sym_translation_unit_repeat1] = "translation_unit_repeat1", [aux_sym_preproc_params_repeat1] = "preproc_params_repeat1", + [aux_sym_preproc_if_repeat1] = "preproc_if_repeat1", [aux_sym_preproc_if_in_field_declaration_list_repeat1] = "preproc_if_in_field_declaration_list_repeat1", + [aux_sym_preproc_if_in_enumerator_list_repeat1] = "preproc_if_in_enumerator_list_repeat1", + [aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1] = "preproc_if_in_enumerator_list_no_comma_repeat1", [aux_sym_preproc_argument_list_repeat1] = "preproc_argument_list_repeat1", [aux_sym_declaration_repeat1] = "declaration_repeat1", [aux_sym_type_definition_repeat1] = "type_definition_repeat1", - [aux_sym_type_definition_repeat2] = "type_definition_repeat2", + [aux_sym__type_definition_type_repeat1] = "_type_definition_type_repeat1", + [aux_sym__type_definition_declarators_repeat1] = "_type_definition_declarators_repeat1", [aux_sym__declaration_specifiers_repeat1] = "_declaration_specifiers_repeat1", [aux_sym_attribute_declaration_repeat1] = "attribute_declaration_repeat1", [aux_sym_attributed_declarator_repeat1] = "attributed_declarator_repeat1", [aux_sym_pointer_declarator_repeat1] = "pointer_declarator_repeat1", - [aux_sym_function_declarator_repeat1] = "function_declarator_repeat1", - [aux_sym_function_declarator_repeat2] = "function_declarator_repeat2", - [aux_sym_abstract_function_declarator_repeat1] = "abstract_function_declarator_repeat1", + [aux_sym_array_declarator_repeat1] = "array_declarator_repeat1", [aux_sym_sized_type_specifier_repeat1] = "sized_type_specifier_repeat1", [aux_sym_enumerator_list_repeat1] = "enumerator_list_repeat1", [aux_sym_field_declaration_repeat1] = "field_declaration_repeat1", [aux_sym_parameter_list_repeat1] = "parameter_list_repeat1", [aux_sym_case_statement_repeat1] = "case_statement_repeat1", + [aux_sym_generic_expression_repeat1] = "generic_expression_repeat1", + [aux_sym_gnu_asm_expression_repeat1] = "gnu_asm_expression_repeat1", + [aux_sym_gnu_asm_output_operand_list_repeat1] = "gnu_asm_output_operand_list_repeat1", + [aux_sym_gnu_asm_input_operand_list_repeat1] = "gnu_asm_input_operand_list_repeat1", + [aux_sym_gnu_asm_clobber_list_repeat1] = "gnu_asm_clobber_list_repeat1", + [aux_sym_gnu_asm_goto_list_repeat1] = "gnu_asm_goto_list_repeat1", [aux_sym_argument_list_repeat1] = "argument_list_repeat1", [aux_sym_initializer_list_repeat1] = "initializer_list_repeat1", [aux_sym_initializer_pair_repeat1] = "initializer_pair_repeat1", + [aux_sym_char_literal_repeat1] = "char_literal_repeat1", [aux_sym_concatenated_string_repeat1] = "concatenated_string_repeat1", [aux_sym_string_literal_repeat1] = "string_literal_repeat1", + [aux_sym__class_declaration_repeat1] = "_class_declaration_repeat1", [aux_sym_class_specifier_repeat1] = "class_specifier_repeat1", [aux_sym_base_class_clause_repeat1] = "base_class_clause_repeat1", [aux_sym_template_parameter_list_repeat1] = "template_parameter_list_repeat1", [aux_sym_field_initializer_list_repeat1] = "field_initializer_list_repeat1", [aux_sym_operator_cast_definition_repeat1] = "operator_cast_definition_repeat1", + [aux_sym_constructor_try_statement_repeat1] = "constructor_try_statement_repeat1", [aux_sym_structured_binding_declarator_repeat1] = "structured_binding_declarator_repeat1", + [aux_sym__function_postfix_repeat1] = "_function_postfix_repeat1", [aux_sym_throw_specifier_repeat1] = "throw_specifier_repeat1", [aux_sym_template_argument_list_repeat1] = "template_argument_list_repeat1", - [aux_sym_try_statement_repeat1] = "try_statement_repeat1", + [aux_sym_subscript_argument_list_repeat1] = "subscript_argument_list_repeat1", + [aux_sym_requirement_seq_repeat1] = "requirement_seq_repeat1", + [aux_sym_requires_parameter_list_repeat1] = "requires_parameter_list_repeat1", [aux_sym_lambda_capture_specifier_repeat1] = "lambda_capture_specifier_repeat1", [aux_sym_alone_macro_call_repeat1] = "alone_macro_call_repeat1", + [aux_sym__call_macro_with_decl_first_arg_repeat1] = "_call_macro_with_decl_first_arg_repeat1", [alias_sym_field_identifier] = "field_identifier", [alias_sym_namespace_identifier] = "namespace_identifier", + [alias_sym_simple_requirement] = "simple_requirement", [alias_sym_statement_identifier] = "statement_identifier", [alias_sym_type_identifier] = "type_identifier", }; @@ -1011,20 +1312,23 @@ static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [sym_identifier] = sym_identifier, [aux_sym_preproc_include_token1] = aux_sym_preproc_include_token1, - [anon_sym_LF] = anon_sym_LF, + [aux_sym_preproc_include_token2] = aux_sym_preproc_include_token2, [aux_sym_preproc_def_token1] = aux_sym_preproc_def_token1, [anon_sym_LPAREN] = anon_sym_LPAREN, [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_RPAREN] = anon_sym_RPAREN, [aux_sym_preproc_if_token1] = aux_sym_preproc_if_token1, + [anon_sym_LF] = anon_sym_LF, [aux_sym_preproc_if_token2] = aux_sym_preproc_if_token2, [aux_sym_preproc_ifdef_token1] = aux_sym_preproc_ifdef_token1, [aux_sym_preproc_ifdef_token2] = aux_sym_preproc_ifdef_token2, [aux_sym_preproc_else_token1] = aux_sym_preproc_else_token1, [aux_sym_preproc_elif_token1] = aux_sym_preproc_elif_token1, - [sym_preproc_directive] = sym_preproc_directive, + [aux_sym_preproc_elifdef_token1] = aux_sym_preproc_elifdef_token1, + [aux_sym_preproc_elifdef_token2] = aux_sym_preproc_elifdef_token2, [sym_preproc_arg] = sym_preproc_arg, + [sym_preproc_directive] = sym_preproc_directive, [anon_sym_LPAREN2] = anon_sym_LPAREN, [anon_sym_defined] = anon_sym_defined, [anon_sym_BANG] = anon_sym_BANG, @@ -1048,9 +1352,12 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LT_LT] = anon_sym_LT_LT, [anon_sym_GT_GT] = anon_sym_GT_GT, [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym___extension__] = anon_sym___extension__, [anon_sym_typedef] = anon_sym_typedef, + [anon_sym_virtual] = anon_sym_virtual, [anon_sym_extern] = anon_sym_extern, [anon_sym___attribute__] = anon_sym___attribute__, + [anon_sym___attribute] = anon_sym___attribute, [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, [anon_sym_LBRACK_LBRACK] = anon_sym_LBRACK_LBRACK, [anon_sym_RBRACK_RBRACK] = anon_sym_RBRACK_RBRACK, @@ -1069,23 +1376,35 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym___unaligned] = anon_sym___unaligned, [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_signed] = anon_sym_signed, + [anon_sym_unsigned] = anon_sym_unsigned, + [anon_sym_long] = anon_sym_long, + [anon_sym_short] = anon_sym_short, [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_static] = anon_sym_static, [anon_sym_RBRACK] = anon_sym_RBRACK, [anon_sym_EQ] = anon_sym_EQ, - [anon_sym_static] = anon_sym_static, [anon_sym_register] = anon_sym_register, [anon_sym_inline] = anon_sym_inline, + [anon_sym___inline] = anon_sym___inline, + [anon_sym___inline__] = anon_sym___inline__, + [anon_sym___forceinline] = anon_sym___forceinline, [anon_sym_thread_local] = anon_sym_thread_local, + [anon_sym___thread] = anon_sym___thread, [anon_sym_const] = anon_sym_const, + [anon_sym_constexpr] = anon_sym_constexpr, [anon_sym_volatile] = anon_sym_volatile, [anon_sym_restrict] = anon_sym_restrict, + [anon_sym___restrict__] = anon_sym___restrict__, [anon_sym__Atomic] = anon_sym__Atomic, + [anon_sym__Noreturn] = anon_sym__Noreturn, + [anon_sym_noreturn] = anon_sym_noreturn, + [anon_sym__Nonnull] = anon_sym__Nonnull, [anon_sym_mutable] = anon_sym_mutable, - [anon_sym_constexpr] = anon_sym_constexpr, - [anon_sym_signed] = anon_sym_signed, - [anon_sym_unsigned] = anon_sym_unsigned, - [anon_sym_long] = anon_sym_long, - [anon_sym_short] = anon_sym_short, + [anon_sym_constinit] = anon_sym_constinit, + [anon_sym_consteval] = anon_sym_consteval, + [anon_sym_alignas] = anon_sym_alignas, + [anon_sym__Alignas] = anon_sym__Alignas, [sym_primitive_type] = sym_primitive_type, [anon_sym_enum] = anon_sym_enum, [anon_sym_class] = anon_sym_class, @@ -1104,6 +1423,10 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_break] = anon_sym_break, [anon_sym_continue] = anon_sym_continue, [anon_sym_goto] = anon_sym_goto, + [anon_sym___try] = anon_sym___try, + [anon_sym___except] = anon_sym___except, + [anon_sym___finally] = anon_sym___finally, + [anon_sym___leave] = anon_sym___leave, [anon_sym_QMARK] = anon_sym_QMARK, [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, @@ -1115,10 +1438,34 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_AMP_EQ] = anon_sym_AMP_EQ, [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, + [anon_sym_and_eq] = anon_sym_and_eq, + [anon_sym_or_eq] = anon_sym_or_eq, + [anon_sym_xor_eq] = anon_sym_xor_eq, + [anon_sym_not] = anon_sym_not, + [anon_sym_compl] = anon_sym_compl, + [anon_sym_LT_EQ_GT] = anon_sym_LT_EQ_GT, + [anon_sym_or] = anon_sym_or, + [anon_sym_and] = anon_sym_and, + [anon_sym_bitor] = anon_sym_bitor, + [anon_sym_xor] = anon_sym_xor, + [anon_sym_bitand] = anon_sym_bitand, + [anon_sym_not_eq] = anon_sym_not_eq, [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, [anon_sym_sizeof] = anon_sym_sizeof, + [anon_sym___alignof__] = anon_sym___alignof__, + [anon_sym___alignof] = anon_sym___alignof, + [anon_sym__alignof] = anon_sym__alignof, + [anon_sym_alignof] = anon_sym_alignof, + [anon_sym__Alignof] = anon_sym__Alignof, + [anon_sym_offsetof] = anon_sym_offsetof, + [anon_sym__Generic] = anon_sym__Generic, + [anon_sym_asm] = anon_sym_asm, + [anon_sym___asm__] = anon_sym___asm__, + [anon_sym___asm] = anon_sym___asm, + [anon_sym___volatile__] = anon_sym___volatile__, [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_DOT_STAR] = anon_sym_DOT_STAR, [anon_sym_DASH_GT] = anon_sym_DASH_GT, [sym_number_literal] = sym_number_literal, [anon_sym_L_SQUOTE] = anon_sym_L_SQUOTE, @@ -1137,40 +1484,47 @@ static const TSSymbol ts_symbol_map[] = { [sym_system_lib_string] = sym_system_lib_string, [sym_true] = sym_true, [sym_false] = sym_false, - [sym_null] = sym_null, + [anon_sym_NULL] = anon_sym_NULL, + [anon_sym_nullptr] = anon_sym_nullptr, [sym_comment] = sym_comment, + [sym_auto] = sym_auto, [anon_sym_decltype] = anon_sym_decltype, [anon_sym_final] = anon_sym_final, [anon_sym_override] = anon_sym_override, - [anon_sym_virtual] = anon_sym_virtual, [anon_sym_explicit] = anon_sym_explicit, - [anon_sym_public] = anon_sym_public, - [anon_sym_private] = anon_sym_private, - [anon_sym_protected] = anon_sym_protected, - [sym_auto] = sym_auto, [anon_sym_typename] = anon_sym_typename, [anon_sym_template] = anon_sym_template, [anon_sym_GT2] = anon_sym_GT, [anon_sym_operator] = anon_sym_operator, + [anon_sym_try] = anon_sym_try, [anon_sym_delete] = anon_sym_delete, + [aux_sym_pure_virtual_clause_token1] = aux_sym_pure_virtual_clause_token1, [anon_sym_friend] = anon_sym_friend, + [anon_sym_public] = anon_sym_public, + [anon_sym_private] = anon_sym_private, + [anon_sym_protected] = anon_sym_protected, [anon_sym_noexcept] = anon_sym_noexcept, [anon_sym_throw] = anon_sym_throw, [anon_sym_namespace] = anon_sym_namespace, [anon_sym_using] = anon_sym_using, [anon_sym_static_assert] = anon_sym_static_assert, + [anon_sym_concept] = anon_sym_concept, [anon_sym_co_return] = anon_sym_co_return, [anon_sym_co_yield] = anon_sym_co_yield, - [anon_sym_try] = anon_sym_try, [anon_sym_catch] = anon_sym_catch, + [anon_sym_R_DQUOTE] = anon_sym_R_DQUOTE, + [anon_sym_LR_DQUOTE] = anon_sym_LR_DQUOTE, + [anon_sym_uR_DQUOTE] = anon_sym_uR_DQUOTE, + [anon_sym_UR_DQUOTE] = anon_sym_UR_DQUOTE, + [anon_sym_u8R_DQUOTE] = anon_sym_u8R_DQUOTE, [anon_sym_co_await] = anon_sym_co_await, [anon_sym_new] = anon_sym_new, + [anon_sym_requires] = anon_sym_requires, [anon_sym_DASH_GT_STAR] = anon_sym_DASH_GT_STAR, [anon_sym_LPAREN_RPAREN] = anon_sym_LPAREN_RPAREN, [anon_sym_LBRACK_RBRACK] = anon_sym_LBRACK_RBRACK, [anon_sym_DQUOTE_DQUOTE] = anon_sym_DQUOTE_DQUOTE, [sym_this] = sym_this, - [sym_nullptr] = sym_nullptr, [sym_literal_suffix] = sym_literal_suffix, [sym_alone_macro] = sym_alone_macro, [aux_sym_alone_macro_call_token1] = aux_sym_alone_macro_call_token1, @@ -1191,7 +1545,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = anon_sym_QM_NOTEONLY_TRY_UNWRAP, [anon_sym_QM_TRY_UNWRAP] = anon_sym_QM_TRY_UNWRAP, [anon_sym_QM_WARNONLY_TRY_UNWRAP] = anon_sym_QM_WARNONLY_TRY_UNWRAP, - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER, + [sym_macro_statement] = sym_macro_statement, [anon_sym_MOZ_ALLOCATOR] = anon_sym_MOZ_ALLOCATOR, [anon_sym_MOZ_ALLOW_TEMPORARY] = anon_sym_MOZ_ALLOW_TEMPORARY, [anon_sym_MOZ_ALWAYS_INLINE] = anon_sym_MOZ_ALWAYS_INLINE, @@ -1261,8 +1615,11 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_MOZ_UNSAFE_REF] = anon_sym_MOZ_UNSAFE_REF, [anon_sym_MOZ_XPCOM_ABI] = anon_sym_MOZ_XPCOM_ABI, [anon_sym_JS_PUBLIC_API] = anon_sym_JS_PUBLIC_API, - [sym_raw_string_literal] = sym_raw_string_literal, + [sym_raw_string_delimiter] = sym_raw_string_delimiter, + [sym_raw_string_content] = sym_raw_string_content, [sym_translation_unit] = sym_translation_unit, + [sym__top_level_item] = sym__top_level_item, + [sym__block_item] = sym__block_item, [sym_preproc_include] = sym_preproc_include, [sym_preproc_def] = sym_preproc_def, [sym_preproc_function_def] = sym_preproc_function_def, @@ -1272,10 +1629,22 @@ static const TSSymbol ts_symbol_map[] = { [sym_preproc_ifdef] = sym_preproc_ifdef, [sym_preproc_else] = sym_preproc_else, [sym_preproc_elif] = sym_preproc_elif, + [sym_preproc_elifdef] = sym_preproc_elifdef, [sym_preproc_if_in_field_declaration_list] = sym_preproc_if, [sym_preproc_ifdef_in_field_declaration_list] = sym_preproc_ifdef, [sym_preproc_else_in_field_declaration_list] = sym_preproc_else, [sym_preproc_elif_in_field_declaration_list] = sym_preproc_elif, + [sym_preproc_elifdef_in_field_declaration_list] = sym_preproc_elifdef, + [sym_preproc_if_in_enumerator_list] = sym_preproc_if, + [sym_preproc_ifdef_in_enumerator_list] = sym_preproc_ifdef, + [sym_preproc_else_in_enumerator_list] = sym_preproc_else, + [sym_preproc_elif_in_enumerator_list] = sym_preproc_elif, + [sym_preproc_elifdef_in_enumerator_list] = sym_preproc_elifdef, + [sym_preproc_if_in_enumerator_list_no_comma] = sym_preproc_if, + [sym_preproc_ifdef_in_enumerator_list_no_comma] = sym_preproc_ifdef, + [sym_preproc_else_in_enumerator_list_no_comma] = sym_preproc_else, + [sym_preproc_elif_in_enumerator_list_no_comma] = sym_preproc_elif, + [sym_preproc_elifdef_in_enumerator_list_no_comma] = sym_preproc_elifdef, [sym__preproc_expression] = sym__preproc_expression, [sym_preproc_parenthesized_expression] = sym_parenthesized_expression, [sym_preproc_defined] = sym_preproc_defined, @@ -1286,6 +1655,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_function_definition] = sym_function_definition, [sym_declaration] = sym_declaration, [sym_type_definition] = sym_type_definition, + [sym__type_definition_type] = sym__type_definition_type, + [sym__type_definition_declarators] = sym__type_definition_declarators, [sym__declaration_modifiers] = sym__declaration_modifiers, [sym__declaration_specifiers] = sym__declaration_specifiers, [sym_linkage_specification] = sym_linkage_specification, @@ -1311,7 +1682,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_attributed_type_declarator] = sym_attributed_declarator, [sym_pointer_declarator] = sym_pointer_declarator, [sym_pointer_field_declarator] = sym_pointer_declarator, - [sym_pointer_type_declarator] = sym_pointer_declarator, + [sym_pointer_type_declarator] = sym_pointer_type_declarator, [sym_abstract_pointer_declarator] = sym_abstract_pointer_declarator, [sym_function_declarator] = sym_function_declarator, [sym_function_field_declarator] = sym_function_declarator, @@ -1325,7 +1696,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_compound_statement] = sym_compound_statement, [sym_storage_class_specifier] = sym_storage_class_specifier, [sym_type_qualifier] = sym_type_qualifier, - [sym__type_specifier] = sym__type_specifier, + [sym_alignas_qualifier] = sym_alignas_qualifier, + [sym_type_specifier] = sym_type_specifier, [sym_sized_type_specifier] = sym_sized_type_specifier, [sym_enum_specifier] = sym_enum_specifier, [sym_enumerator_list] = sym_enumerator_list, @@ -1339,19 +1711,29 @@ static const TSSymbol ts_symbol_map[] = { [sym_parameter_list] = sym_parameter_list, [sym_parameter_declaration] = sym_parameter_declaration, [sym_attributed_statement] = sym_attributed_statement, + [sym_statement] = sym_statement, + [sym__top_level_statement] = sym__top_level_statement, [sym_labeled_statement] = sym_labeled_statement, + [sym__top_level_expression_statement] = sym_expression_statement, [sym_expression_statement] = sym_expression_statement, [sym_if_statement] = sym_if_statement, + [sym_else_clause] = sym_else_clause, [sym_switch_statement] = sym_switch_statement, [sym_case_statement] = sym_case_statement, [sym_while_statement] = sym_while_statement, [sym_do_statement] = sym_do_statement, [sym_for_statement] = sym_for_statement, + [sym__for_statement_body] = sym__for_statement_body, [sym_return_statement] = sym_return_statement, [sym_break_statement] = sym_break_statement, [sym_continue_statement] = sym_continue_statement, [sym_goto_statement] = sym_goto_statement, - [sym__expression] = sym__expression, + [sym_seh_try_statement] = sym_seh_try_statement, + [sym_seh_except_clause] = sym_seh_except_clause, + [sym_seh_finally_clause] = sym_seh_finally_clause, + [sym_seh_leave_statement] = sym_seh_leave_statement, + [sym_expression] = sym_expression, + [sym__string] = sym__string, [sym_comma_expression] = sym_comma_expression, [sym_conditional_expression] = sym_conditional_expression, [sym_assignment_expression] = sym_assignment_expression, @@ -1362,8 +1744,20 @@ static const TSSymbol ts_symbol_map[] = { [sym_cast_expression] = sym_cast_expression, [sym_type_descriptor] = sym_type_descriptor, [sym_sizeof_expression] = sym_sizeof_expression, + [sym_alignof_expression] = sym_alignof_expression, + [sym_offsetof_expression] = sym_offsetof_expression, + [sym_generic_expression] = sym_generic_expression, [sym_subscript_expression] = sym_subscript_expression, [sym_call_expression] = sym_call_expression, + [sym_gnu_asm_expression] = sym_gnu_asm_expression, + [sym_gnu_asm_qualifier] = sym_gnu_asm_qualifier, + [sym_gnu_asm_output_operand_list] = sym_gnu_asm_output_operand_list, + [sym_gnu_asm_output_operand] = sym_gnu_asm_output_operand, + [sym_gnu_asm_input_operand_list] = sym_gnu_asm_input_operand_list, + [sym_gnu_asm_input_operand] = sym_gnu_asm_input_operand, + [sym_gnu_asm_clobber_list] = sym_gnu_asm_clobber_list, + [sym_gnu_asm_goto_list] = sym_gnu_asm_goto_list, + [sym_extension_expression] = sym_extension_expression, [sym_argument_list] = sym_argument_list, [sym_field_expression] = sym_field_expression, [sym_compound_literal_expression] = sym_compound_literal_expression, @@ -1371,16 +1765,21 @@ static const TSSymbol ts_symbol_map[] = { [sym_initializer_list] = sym_initializer_list, [sym_initializer_pair] = sym_initializer_pair, [sym_subscript_designator] = sym_subscript_designator, + [sym_subscript_range_designator] = sym_subscript_range_designator, [sym_field_designator] = sym_field_designator, [sym_char_literal] = sym_char_literal, [sym_concatenated_string] = sym_concatenated_string, [sym_string_literal] = sym_string_literal, + [sym_null] = sym_null, [sym__empty_declaration] = sym__empty_declaration, + [sym_placeholder_type_specifier] = sym_placeholder_type_specifier, + [sym_decltype_auto] = sym_decltype, [sym_decltype] = sym_decltype, + [sym__class_declaration] = sym__class_declaration, + [sym__class_declaration_item] = sym__class_declaration_item, [sym_class_specifier] = sym_class_specifier, [sym__class_name] = sym__class_name, [sym_virtual_specifier] = sym_virtual_specifier, - [sym_virtual_function_specifier] = sym_virtual_function_specifier, [sym_explicit_function_specifier] = sym_explicit_function_specifier, [sym_base_class_clause] = sym_base_class_clause, [sym__enum_base_clause] = sym__enum_base_clause, @@ -1403,17 +1802,25 @@ static const TSSymbol ts_symbol_map[] = { [sym__constructor_specifiers] = sym__constructor_specifiers, [sym_operator_cast_definition] = sym_function_definition, [sym_operator_cast_declaration] = sym_declaration, + [sym_constructor_try_statement] = sym_try_statement, [sym_constructor_or_destructor_definition] = sym_function_definition, [sym_constructor_or_destructor_declaration] = sym_declaration, [sym_default_method_clause] = sym_default_method_clause, [sym_delete_method_clause] = sym_delete_method_clause, + [sym_pure_virtual_clause] = sym_pure_virtual_clause, [sym_friend_declaration] = sym_friend_declaration, [sym_access_specifier] = sym_access_specifier, [sym_reference_declarator] = sym_reference_declarator, [sym_reference_field_declarator] = sym_reference_declarator, + [sym_reference_type_declarator] = sym_reference_declarator, [sym_abstract_reference_declarator] = sym_abstract_reference_declarator, [sym_structured_binding_declarator] = sym_structured_binding_declarator, [sym_ref_qualifier] = sym_ref_qualifier, + [sym__function_declarator_seq] = sym__function_declarator_seq, + [sym__function_attributes_start] = sym__function_attributes_start, + [sym__function_exception_specification] = sym__function_exception_specification, + [sym__function_attributes_end] = sym__function_attributes_end, + [sym__function_postfix] = sym__function_postfix, [sym_trailing_return_type] = sym_trailing_return_type, [sym_noexcept] = sym_noexcept, [sym_throw_specifier] = sym_throw_specifier, @@ -1422,27 +1829,54 @@ static const TSSymbol ts_symbol_map[] = { [sym_template_function] = sym_template_function, [sym_template_argument_list] = sym_template_argument_list, [sym_namespace_definition] = sym_namespace_definition, - [sym_namespace_definition_name] = sym_namespace_definition_name, + [sym_namespace_alias_definition] = sym_namespace_alias_definition, + [sym__namespace_specifier] = sym__namespace_specifier, + [sym_nested_namespace_specifier] = sym_nested_namespace_specifier, [sym_using_declaration] = sym_using_declaration, [sym_alias_declaration] = sym_alias_declaration, [sym_static_assert_declaration] = sym_static_assert_declaration, + [sym_concept_definition] = sym_concept_definition, + [sym_for_range_loop] = sym_for_range_loop, + [sym__for_range_loop_body] = sym__for_range_loop_body, + [sym_init_statement] = sym_init_statement, [sym_condition_clause] = sym_condition_clause, [sym_condition_declaration] = sym_declaration, - [sym_for_range_loop] = sym_for_range_loop, [sym_co_return_statement] = sym_co_return_statement, [sym_co_yield_statement] = sym_co_yield_statement, [sym_throw_statement] = sym_throw_statement, [sym_try_statement] = sym_try_statement, [sym_catch_clause] = sym_catch_clause, + [sym_raw_string_literal] = sym_raw_string_literal, + [sym_subscript_argument_list] = sym_subscript_argument_list, [sym_co_await_expression] = sym_co_await_expression, [sym_new_expression] = sym_new_expression, [sym_new_declarator] = sym_new_declarator, [sym_delete_expression] = sym_delete_expression, + [sym_type_requirement] = sym_type_requirement, + [sym_compound_requirement] = sym_compound_requirement, + [sym__requirement] = sym__requirement, + [sym_requirement_seq] = sym_requirement_seq, + [sym_constraint_conjunction] = sym_constraint_conjunction, + [sym_constraint_disjunction] = sym_constraint_disjunction, + [sym__requirement_clause_constraint] = sym__requirement_clause_constraint, + [sym_requires_clause] = sym_requires_clause, + [sym_requires_parameter_list] = sym_parameter_list, + [sym_requires_expression] = sym_requires_expression, [sym_lambda_expression] = sym_lambda_expression, [sym_lambda_capture_specifier] = sym_lambda_capture_specifier, [sym_lambda_default_capture] = sym_lambda_default_capture, + [sym__lambda_capture_identifier] = sym__lambda_capture_identifier, + [sym_lambda_capture_initializer] = sym_lambda_capture_initializer, + [sym__lambda_capture] = sym__lambda_capture, + [sym__fold_operator] = sym__fold_operator, + [sym__binary_fold_operator] = sym__binary_fold_operator, + [sym__unary_left_fold] = sym__unary_left_fold, + [sym__unary_right_fold] = sym__unary_right_fold, + [sym__binary_fold] = sym__binary_fold, + [sym_fold_expression] = sym_fold_expression, [sym_parameter_pack_expansion] = sym_parameter_pack_expansion, [sym_type_parameter_pack_expansion] = sym_parameter_pack_expansion, + [sym_identifier_parameter_pack_expansion] = sym_parameter_pack_expansion, [sym_destructor_name] = sym_destructor_name, [sym_dependent_identifier] = sym_dependent_identifier, [sym_dependent_field_identifier] = sym_dependent_identifier, @@ -1452,49 +1886,65 @@ static const TSSymbol ts_symbol_map[] = { [sym_qualified_identifier] = sym_qualified_identifier, [sym_qualified_type_identifier] = sym_qualified_identifier, [sym_qualified_operator_cast_identifier] = sym_qualified_identifier, + [sym__assignment_expression_lhs] = sym_assignment_expression, [sym_operator_name] = sym_operator_name, [sym_user_defined_literal] = sym_user_defined_literal, [sym_alone_macro_call] = sym_alone_macro_call, [sym__call_macro_with_decl_first_arg] = sym__call_macro_with_decl_first_arg, - [sym_macro_statement] = sym_macro_statement, [sym_macro_annotation] = sym_macro_annotation, [aux_sym_translation_unit_repeat1] = aux_sym_translation_unit_repeat1, [aux_sym_preproc_params_repeat1] = aux_sym_preproc_params_repeat1, + [aux_sym_preproc_if_repeat1] = aux_sym_preproc_if_repeat1, [aux_sym_preproc_if_in_field_declaration_list_repeat1] = aux_sym_preproc_if_in_field_declaration_list_repeat1, + [aux_sym_preproc_if_in_enumerator_list_repeat1] = aux_sym_preproc_if_in_enumerator_list_repeat1, + [aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1] = aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, [aux_sym_preproc_argument_list_repeat1] = aux_sym_preproc_argument_list_repeat1, [aux_sym_declaration_repeat1] = aux_sym_declaration_repeat1, [aux_sym_type_definition_repeat1] = aux_sym_type_definition_repeat1, - [aux_sym_type_definition_repeat2] = aux_sym_type_definition_repeat2, + [aux_sym__type_definition_type_repeat1] = aux_sym__type_definition_type_repeat1, + [aux_sym__type_definition_declarators_repeat1] = aux_sym__type_definition_declarators_repeat1, [aux_sym__declaration_specifiers_repeat1] = aux_sym__declaration_specifiers_repeat1, [aux_sym_attribute_declaration_repeat1] = aux_sym_attribute_declaration_repeat1, [aux_sym_attributed_declarator_repeat1] = aux_sym_attributed_declarator_repeat1, [aux_sym_pointer_declarator_repeat1] = aux_sym_pointer_declarator_repeat1, - [aux_sym_function_declarator_repeat1] = aux_sym_function_declarator_repeat1, - [aux_sym_function_declarator_repeat2] = aux_sym_function_declarator_repeat2, - [aux_sym_abstract_function_declarator_repeat1] = aux_sym_abstract_function_declarator_repeat1, + [aux_sym_array_declarator_repeat1] = aux_sym_array_declarator_repeat1, [aux_sym_sized_type_specifier_repeat1] = aux_sym_sized_type_specifier_repeat1, [aux_sym_enumerator_list_repeat1] = aux_sym_enumerator_list_repeat1, [aux_sym_field_declaration_repeat1] = aux_sym_field_declaration_repeat1, [aux_sym_parameter_list_repeat1] = aux_sym_parameter_list_repeat1, [aux_sym_case_statement_repeat1] = aux_sym_case_statement_repeat1, + [aux_sym_generic_expression_repeat1] = aux_sym_generic_expression_repeat1, + [aux_sym_gnu_asm_expression_repeat1] = aux_sym_gnu_asm_expression_repeat1, + [aux_sym_gnu_asm_output_operand_list_repeat1] = aux_sym_gnu_asm_output_operand_list_repeat1, + [aux_sym_gnu_asm_input_operand_list_repeat1] = aux_sym_gnu_asm_input_operand_list_repeat1, + [aux_sym_gnu_asm_clobber_list_repeat1] = aux_sym_gnu_asm_clobber_list_repeat1, + [aux_sym_gnu_asm_goto_list_repeat1] = aux_sym_gnu_asm_goto_list_repeat1, [aux_sym_argument_list_repeat1] = aux_sym_argument_list_repeat1, [aux_sym_initializer_list_repeat1] = aux_sym_initializer_list_repeat1, [aux_sym_initializer_pair_repeat1] = aux_sym_initializer_pair_repeat1, + [aux_sym_char_literal_repeat1] = aux_sym_char_literal_repeat1, [aux_sym_concatenated_string_repeat1] = aux_sym_concatenated_string_repeat1, [aux_sym_string_literal_repeat1] = aux_sym_string_literal_repeat1, + [aux_sym__class_declaration_repeat1] = aux_sym__class_declaration_repeat1, [aux_sym_class_specifier_repeat1] = aux_sym_class_specifier_repeat1, [aux_sym_base_class_clause_repeat1] = aux_sym_base_class_clause_repeat1, [aux_sym_template_parameter_list_repeat1] = aux_sym_template_parameter_list_repeat1, [aux_sym_field_initializer_list_repeat1] = aux_sym_field_initializer_list_repeat1, [aux_sym_operator_cast_definition_repeat1] = aux_sym_operator_cast_definition_repeat1, + [aux_sym_constructor_try_statement_repeat1] = aux_sym_constructor_try_statement_repeat1, [aux_sym_structured_binding_declarator_repeat1] = aux_sym_structured_binding_declarator_repeat1, + [aux_sym__function_postfix_repeat1] = aux_sym__function_postfix_repeat1, [aux_sym_throw_specifier_repeat1] = aux_sym_throw_specifier_repeat1, [aux_sym_template_argument_list_repeat1] = aux_sym_template_argument_list_repeat1, - [aux_sym_try_statement_repeat1] = aux_sym_try_statement_repeat1, + [aux_sym_subscript_argument_list_repeat1] = aux_sym_subscript_argument_list_repeat1, + [aux_sym_requirement_seq_repeat1] = aux_sym_requirement_seq_repeat1, + [aux_sym_requires_parameter_list_repeat1] = aux_sym_requires_parameter_list_repeat1, [aux_sym_lambda_capture_specifier_repeat1] = aux_sym_lambda_capture_specifier_repeat1, [aux_sym_alone_macro_call_repeat1] = aux_sym_alone_macro_call_repeat1, + [aux_sym__call_macro_with_decl_first_arg_repeat1] = aux_sym__call_macro_with_decl_first_arg_repeat1, [alias_sym_field_identifier] = alias_sym_field_identifier, [alias_sym_namespace_identifier] = alias_sym_namespace_identifier, + [alias_sym_simple_requirement] = alias_sym_simple_requirement, [alias_sym_statement_identifier] = alias_sym_statement_identifier, [alias_sym_type_identifier] = alias_sym_type_identifier, }; @@ -1512,8 +1962,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LF] = { - .visible = true, + [aux_sym_preproc_include_token2] = { + .visible = false, .named = false, }, [aux_sym_preproc_def_token1] = { @@ -1540,6 +1990,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_LF] = { + .visible = true, + .named = false, + }, [aux_sym_preproc_if_token2] = { .visible = true, .named = false, @@ -1560,14 +2014,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_preproc_directive] = { + [aux_sym_preproc_elifdef_token1] = { .visible = true, - .named = true, + .named = false, + }, + [aux_sym_preproc_elifdef_token2] = { + .visible = true, + .named = false, }, [sym_preproc_arg] = { .visible = true, .named = true, }, + [sym_preproc_directive] = { + .visible = true, + .named = true, + }, [anon_sym_LPAREN2] = { .visible = true, .named = false, @@ -1660,10 +2122,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym___extension__] = { + .visible = true, + .named = false, + }, [anon_sym_typedef] = { .visible = true, .named = false, }, + [anon_sym_virtual] = { + .visible = true, + .named = false, + }, [anon_sym_extern] = { .visible = true, .named = false, @@ -1672,6 +2142,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym___attribute] = { + .visible = true, + .named = false, + }, [anon_sym_COLON_COLON] = { .visible = true, .named = false, @@ -1744,15 +2218,23 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LBRACK] = { + [anon_sym_signed] = { .visible = true, .named = false, }, - [anon_sym_RBRACK] = { + [anon_sym_unsigned] = { .visible = true, .named = false, }, - [anon_sym_EQ] = { + [anon_sym_long] = { + .visible = true, + .named = false, + }, + [anon_sym_short] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK] = { .visible = true, .named = false, }, @@ -1760,6 +2242,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_RBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, [anon_sym_register] = { .visible = true, .named = false, @@ -1768,14 +2258,34 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym___inline] = { + .visible = true, + .named = false, + }, + [anon_sym___inline__] = { + .visible = true, + .named = false, + }, + [anon_sym___forceinline] = { + .visible = true, + .named = false, + }, [anon_sym_thread_local] = { .visible = true, .named = false, }, + [anon_sym___thread] = { + .visible = true, + .named = false, + }, [anon_sym_const] = { .visible = true, .named = false, }, + [anon_sym_constexpr] = { + .visible = true, + .named = false, + }, [anon_sym_volatile] = { .visible = true, .named = false, @@ -1784,31 +2294,43 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym___restrict__] = { + .visible = true, + .named = false, + }, [anon_sym__Atomic] = { .visible = true, .named = false, }, - [anon_sym_mutable] = { + [anon_sym__Noreturn] = { .visible = true, .named = false, }, - [anon_sym_constexpr] = { + [anon_sym_noreturn] = { .visible = true, .named = false, }, - [anon_sym_signed] = { + [anon_sym__Nonnull] = { .visible = true, .named = false, }, - [anon_sym_unsigned] = { + [anon_sym_mutable] = { .visible = true, .named = false, }, - [anon_sym_long] = { + [anon_sym_constinit] = { .visible = true, .named = false, }, - [anon_sym_short] = { + [anon_sym_consteval] = { + .visible = true, + .named = false, + }, + [anon_sym_alignas] = { + .visible = true, + .named = false, + }, + [anon_sym__Alignas] = { .visible = true, .named = false, }, @@ -1884,6 +2406,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym___try] = { + .visible = true, + .named = false, + }, + [anon_sym___except] = { + .visible = true, + .named = false, + }, + [anon_sym___finally] = { + .visible = true, + .named = false, + }, + [anon_sym___leave] = { + .visible = true, + .named = false, + }, [anon_sym_QMARK] = { .visible = true, .named = false, @@ -1928,6 +2466,54 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_and_eq] = { + .visible = true, + .named = false, + }, + [anon_sym_or_eq] = { + .visible = true, + .named = false, + }, + [anon_sym_xor_eq] = { + .visible = true, + .named = false, + }, + [anon_sym_not] = { + .visible = true, + .named = false, + }, + [anon_sym_compl] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_or] = { + .visible = true, + .named = false, + }, + [anon_sym_and] = { + .visible = true, + .named = false, + }, + [anon_sym_bitor] = { + .visible = true, + .named = false, + }, + [anon_sym_xor] = { + .visible = true, + .named = false, + }, + [anon_sym_bitand] = { + .visible = true, + .named = false, + }, + [anon_sym_not_eq] = { + .visible = true, + .named = false, + }, [anon_sym_DASH_DASH] = { .visible = true, .named = false, @@ -1940,10 +2526,58 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym___alignof__] = { + .visible = true, + .named = false, + }, + [anon_sym___alignof] = { + .visible = true, + .named = false, + }, + [anon_sym__alignof] = { + .visible = true, + .named = false, + }, + [anon_sym_alignof] = { + .visible = true, + .named = false, + }, + [anon_sym__Alignof] = { + .visible = true, + .named = false, + }, + [anon_sym_offsetof] = { + .visible = true, + .named = false, + }, + [anon_sym__Generic] = { + .visible = true, + .named = false, + }, + [anon_sym_asm] = { + .visible = true, + .named = false, + }, + [anon_sym___asm__] = { + .visible = true, + .named = false, + }, + [anon_sym___asm] = { + .visible = true, + .named = false, + }, + [anon_sym___volatile__] = { + .visible = true, + .named = false, + }, [anon_sym_DOT] = { .visible = true, .named = false, }, + [anon_sym_DOT_STAR] = { + .visible = true, + .named = false, + }, [anon_sym_DASH_GT] = { .visible = true, .named = false, @@ -1973,8 +2607,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = false, }, [aux_sym_char_literal_token1] = { - .visible = false, - .named = false, + .visible = true, + .named = true, }, [anon_sym_L_DQUOTE] = { .visible = true, @@ -1997,8 +2631,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = false, }, [aux_sym_string_literal_token1] = { - .visible = false, - .named = false, + .visible = true, + .named = true, }, [sym_escape_sequence] = { .visible = true, @@ -2016,14 +2650,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_null] = { + [anon_sym_NULL] = { .visible = true, - .named = true, + .named = false, + }, + [anon_sym_nullptr] = { + .visible = true, + .named = false, }, [sym_comment] = { .visible = true, .named = true, }, + [sym_auto] = { + .visible = true, + .named = true, + }, [anon_sym_decltype] = { .visible = true, .named = false, @@ -2036,51 +2678,51 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_virtual] = { + [anon_sym_explicit] = { .visible = true, .named = false, }, - [anon_sym_explicit] = { + [anon_sym_typename] = { .visible = true, .named = false, }, - [anon_sym_public] = { + [anon_sym_template] = { .visible = true, .named = false, }, - [anon_sym_private] = { + [anon_sym_GT2] = { .visible = true, .named = false, }, - [anon_sym_protected] = { + [anon_sym_operator] = { .visible = true, .named = false, }, - [sym_auto] = { + [anon_sym_try] = { .visible = true, - .named = true, + .named = false, }, - [anon_sym_typename] = { + [anon_sym_delete] = { .visible = true, .named = false, }, - [anon_sym_template] = { - .visible = true, + [aux_sym_pure_virtual_clause_token1] = { + .visible = false, .named = false, }, - [anon_sym_GT2] = { + [anon_sym_friend] = { .visible = true, .named = false, }, - [anon_sym_operator] = { + [anon_sym_public] = { .visible = true, .named = false, }, - [anon_sym_delete] = { + [anon_sym_private] = { .visible = true, .named = false, }, - [anon_sym_friend] = { + [anon_sym_protected] = { .visible = true, .named = false, }, @@ -2104,6 +2746,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_concept] = { + .visible = true, + .named = false, + }, [anon_sym_co_return] = { .visible = true, .named = false, @@ -2112,11 +2758,27 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_try] = { + [anon_sym_catch] = { .visible = true, .named = false, }, - [anon_sym_catch] = { + [anon_sym_R_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_LR_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_uR_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_UR_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_u8R_DQUOTE] = { .visible = true, .named = false, }, @@ -2128,6 +2790,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_requires] = { + .visible = true, + .named = false, + }, [anon_sym_DASH_GT_STAR] = { .visible = true, .named = false, @@ -2148,10 +2814,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_nullptr] = { - .visible = true, - .named = true, - }, [sym_literal_suffix] = { .visible = true, .named = true, @@ -2232,9 +2894,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = { + [sym_macro_statement] = { .visible = true, - .named = false, + .named = true, }, [anon_sym_MOZ_ALLOCATOR] = { .visible = true, @@ -2512,7 +3174,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_raw_string_literal] = { + [sym_raw_string_delimiter] = { + .visible = true, + .named = true, + }, + [sym_raw_string_content] = { .visible = true, .named = true, }, @@ -2520,6 +3186,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__top_level_item] = { + .visible = false, + .named = true, + }, + [sym__block_item] = { + .visible = false, + .named = true, + }, [sym_preproc_include] = { .visible = true, .named = true, @@ -2556,6 +3230,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_preproc_elifdef] = { + .visible = true, + .named = true, + }, [sym_preproc_if_in_field_declaration_list] = { .visible = true, .named = true, @@ -2572,6 +3250,50 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_preproc_elifdef_in_field_declaration_list] = { + .visible = true, + .named = true, + }, + [sym_preproc_if_in_enumerator_list] = { + .visible = true, + .named = true, + }, + [sym_preproc_ifdef_in_enumerator_list] = { + .visible = true, + .named = true, + }, + [sym_preproc_else_in_enumerator_list] = { + .visible = true, + .named = true, + }, + [sym_preproc_elif_in_enumerator_list] = { + .visible = true, + .named = true, + }, + [sym_preproc_elifdef_in_enumerator_list] = { + .visible = true, + .named = true, + }, + [sym_preproc_if_in_enumerator_list_no_comma] = { + .visible = true, + .named = true, + }, + [sym_preproc_ifdef_in_enumerator_list_no_comma] = { + .visible = true, + .named = true, + }, + [sym_preproc_else_in_enumerator_list_no_comma] = { + .visible = true, + .named = true, + }, + [sym_preproc_elif_in_enumerator_list_no_comma] = { + .visible = true, + .named = true, + }, + [sym_preproc_elifdef_in_enumerator_list_no_comma] = { + .visible = true, + .named = true, + }, [sym__preproc_expression] = { .visible = false, .named = true, @@ -2612,6 +3334,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__type_definition_type] = { + .visible = false, + .named = true, + }, + [sym__type_definition_declarators] = { + .visible = false, + .named = true, + }, [sym__declaration_modifiers] = { .visible = false, .named = true, @@ -2772,7 +3502,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__type_specifier] = { + [sym_alignas_qualifier] = { + .visible = true, + .named = true, + }, + [sym_type_specifier] = { .visible = false, .named = true, .supertype = true, @@ -2829,10 +3563,23 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_statement] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym__top_level_statement] = { + .visible = false, + .named = true, + }, [sym_labeled_statement] = { .visible = true, .named = true, }, + [sym__top_level_expression_statement] = { + .visible = true, + .named = true, + }, [sym_expression_statement] = { .visible = true, .named = true, @@ -2841,6 +3588,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_else_clause] = { + .visible = true, + .named = true, + }, [sym_switch_statement] = { .visible = true, .named = true, @@ -2861,6 +3612,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__for_statement_body] = { + .visible = false, + .named = true, + }, [sym_return_statement] = { .visible = true, .named = true, @@ -2877,11 +3632,31 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__expression] = { + [sym_seh_try_statement] = { + .visible = true, + .named = true, + }, + [sym_seh_except_clause] = { + .visible = true, + .named = true, + }, + [sym_seh_finally_clause] = { + .visible = true, + .named = true, + }, + [sym_seh_leave_statement] = { + .visible = true, + .named = true, + }, + [sym_expression] = { .visible = false, .named = true, .supertype = true, }, + [sym__string] = { + .visible = false, + .named = true, + }, [sym_comma_expression] = { .visible = true, .named = true, @@ -2922,6 +3697,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_alignof_expression] = { + .visible = true, + .named = true, + }, + [sym_offsetof_expression] = { + .visible = true, + .named = true, + }, + [sym_generic_expression] = { + .visible = true, + .named = true, + }, [sym_subscript_expression] = { .visible = true, .named = true, @@ -2930,6 +3717,42 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_gnu_asm_expression] = { + .visible = true, + .named = true, + }, + [sym_gnu_asm_qualifier] = { + .visible = true, + .named = true, + }, + [sym_gnu_asm_output_operand_list] = { + .visible = true, + .named = true, + }, + [sym_gnu_asm_output_operand] = { + .visible = true, + .named = true, + }, + [sym_gnu_asm_input_operand_list] = { + .visible = true, + .named = true, + }, + [sym_gnu_asm_input_operand] = { + .visible = true, + .named = true, + }, + [sym_gnu_asm_clobber_list] = { + .visible = true, + .named = true, + }, + [sym_gnu_asm_goto_list] = { + .visible = true, + .named = true, + }, + [sym_extension_expression] = { + .visible = true, + .named = true, + }, [sym_argument_list] = { .visible = true, .named = true, @@ -2958,6 +3781,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_subscript_range_designator] = { + .visible = true, + .named = true, + }, [sym_field_designator] = { .visible = true, .named = true, @@ -2974,14 +3801,34 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_null] = { + .visible = true, + .named = true, + }, [sym__empty_declaration] = { .visible = false, .named = true, }, + [sym_placeholder_type_specifier] = { + .visible = true, + .named = true, + }, + [sym_decltype_auto] = { + .visible = true, + .named = true, + }, [sym_decltype] = { .visible = true, .named = true, }, + [sym__class_declaration] = { + .visible = false, + .named = true, + }, + [sym__class_declaration_item] = { + .visible = false, + .named = true, + }, [sym_class_specifier] = { .visible = true, .named = true, @@ -2994,10 +3841,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_virtual_function_specifier] = { - .visible = true, - .named = true, - }, [sym_explicit_function_specifier] = { .visible = true, .named = true, @@ -3086,6 +3929,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_constructor_try_statement] = { + .visible = true, + .named = true, + }, [sym_constructor_or_destructor_definition] = { .visible = true, .named = true, @@ -3102,6 +3949,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_pure_virtual_clause] = { + .visible = true, + .named = true, + }, [sym_friend_declaration] = { .visible = true, .named = true, @@ -3118,6 +3969,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_reference_type_declarator] = { + .visible = true, + .named = true, + }, [sym_abstract_reference_declarator] = { .visible = true, .named = true, @@ -3130,6 +3985,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__function_declarator_seq] = { + .visible = false, + .named = true, + }, + [sym__function_attributes_start] = { + .visible = false, + .named = true, + }, + [sym__function_exception_specification] = { + .visible = false, + .named = true, + }, + [sym__function_attributes_end] = { + .visible = false, + .named = true, + }, + [sym__function_postfix] = { + .visible = false, + .named = true, + }, [sym_trailing_return_type] = { .visible = true, .named = true, @@ -3162,7 +4037,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_namespace_definition_name] = { + [sym_namespace_alias_definition] = { + .visible = true, + .named = true, + }, + [sym__namespace_specifier] = { + .visible = false, + .named = true, + }, + [sym_nested_namespace_specifier] = { .visible = true, .named = true, }, @@ -3178,15 +4061,27 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_condition_clause] = { + [sym_concept_definition] = { .visible = true, .named = true, }, - [sym_condition_declaration] = { + [sym_for_range_loop] = { .visible = true, .named = true, }, - [sym_for_range_loop] = { + [sym__for_range_loop_body] = { + .visible = false, + .named = true, + }, + [sym_init_statement] = { + .visible = true, + .named = true, + }, + [sym_condition_clause] = { + .visible = true, + .named = true, + }, + [sym_condition_declaration] = { .visible = true, .named = true, }, @@ -3210,6 +4105,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_raw_string_literal] = { + .visible = true, + .named = true, + }, + [sym_subscript_argument_list] = { + .visible = true, + .named = true, + }, [sym_co_await_expression] = { .visible = true, .named = true, @@ -3226,6 +4129,46 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_type_requirement] = { + .visible = true, + .named = true, + }, + [sym_compound_requirement] = { + .visible = true, + .named = true, + }, + [sym__requirement] = { + .visible = false, + .named = true, + }, + [sym_requirement_seq] = { + .visible = true, + .named = true, + }, + [sym_constraint_conjunction] = { + .visible = true, + .named = true, + }, + [sym_constraint_disjunction] = { + .visible = true, + .named = true, + }, + [sym__requirement_clause_constraint] = { + .visible = false, + .named = true, + }, + [sym_requires_clause] = { + .visible = true, + .named = true, + }, + [sym_requires_parameter_list] = { + .visible = true, + .named = true, + }, + [sym_requires_expression] = { + .visible = true, + .named = true, + }, [sym_lambda_expression] = { .visible = true, .named = true, @@ -3238,6 +4181,42 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__lambda_capture_identifier] = { + .visible = false, + .named = true, + }, + [sym_lambda_capture_initializer] = { + .visible = true, + .named = true, + }, + [sym__lambda_capture] = { + .visible = false, + .named = true, + }, + [sym__fold_operator] = { + .visible = false, + .named = true, + }, + [sym__binary_fold_operator] = { + .visible = false, + .named = true, + }, + [sym__unary_left_fold] = { + .visible = false, + .named = true, + }, + [sym__unary_right_fold] = { + .visible = false, + .named = true, + }, + [sym__binary_fold] = { + .visible = false, + .named = true, + }, + [sym_fold_expression] = { + .visible = true, + .named = true, + }, [sym_parameter_pack_expansion] = { .visible = true, .named = true, @@ -3246,6 +4225,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_identifier_parameter_pack_expansion] = { + .visible = true, + .named = true, + }, [sym_destructor_name] = { .visible = true, .named = true, @@ -3282,6 +4265,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__assignment_expression_lhs] = { + .visible = true, + .named = true, + }, [sym_operator_name] = { .visible = true, .named = true, @@ -3298,10 +4285,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym_macro_statement] = { - .visible = true, - .named = true, - }, [sym_macro_annotation] = { .visible = true, .named = true, @@ -3314,10 +4297,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_preproc_if_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_preproc_if_in_field_declaration_list_repeat1] = { .visible = false, .named = false, }, + [aux_sym_preproc_if_in_enumerator_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_preproc_argument_list_repeat1] = { .visible = false, .named = false, @@ -3330,7 +4325,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_type_definition_repeat2] = { + [aux_sym__type_definition_type_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__type_definition_declarators_repeat1] = { .visible = false, .named = false, }, @@ -3350,35 +4349,51 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_function_declarator_repeat1] = { + [aux_sym_array_declarator_repeat1] = { .visible = false, .named = false, }, - [aux_sym_function_declarator_repeat2] = { + [aux_sym_sized_type_specifier_repeat1] = { .visible = false, .named = false, }, - [aux_sym_abstract_function_declarator_repeat1] = { + [aux_sym_enumerator_list_repeat1] = { .visible = false, .named = false, }, - [aux_sym_sized_type_specifier_repeat1] = { + [aux_sym_field_declaration_repeat1] = { .visible = false, .named = false, }, - [aux_sym_enumerator_list_repeat1] = { + [aux_sym_parameter_list_repeat1] = { .visible = false, .named = false, }, - [aux_sym_field_declaration_repeat1] = { + [aux_sym_case_statement_repeat1] = { .visible = false, .named = false, }, - [aux_sym_parameter_list_repeat1] = { + [aux_sym_generic_expression_repeat1] = { .visible = false, .named = false, }, - [aux_sym_case_statement_repeat1] = { + [aux_sym_gnu_asm_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_gnu_asm_output_operand_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_gnu_asm_input_operand_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_gnu_asm_clobber_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_gnu_asm_goto_list_repeat1] = { .visible = false, .named = false, }, @@ -3394,6 +4409,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_char_literal_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_concatenated_string_repeat1] = { .visible = false, .named = false, @@ -3402,6 +4421,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym__class_declaration_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_class_specifier_repeat1] = { .visible = false, .named = false, @@ -3422,10 +4445,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_constructor_try_statement_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_structured_binding_declarator_repeat1] = { .visible = false, .named = false, }, + [aux_sym__function_postfix_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_throw_specifier_repeat1] = { .visible = false, .named = false, @@ -3434,7 +4465,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_try_statement_repeat1] = { + [aux_sym_subscript_argument_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_requirement_seq_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_requires_parameter_list_repeat1] = { .visible = false, .named = false, }, @@ -3446,6 +4485,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym__call_macro_with_decl_first_arg_repeat1] = { + .visible = false, + .named = false, + }, [alias_sym_field_identifier] = { .visible = true, .named = true, @@ -3454,6 +4497,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [alias_sym_simple_requirement] = { + .visible = true, + .named = true, + }, [alias_sym_statement_identifier] = { .visible = true, .named = true, @@ -3464,41 +4511,57 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, }; -enum { +enum ts_field_identifiers { field_alternative = 1, field_argument = 2, field_arguments = 3, - field_base = 4, - field_body = 5, - field_captures = 6, - field_condition = 7, - field_consequence = 8, - field_declarator = 9, - field_default_type = 10, - field_default_value = 11, - field_designator = 12, - field_directive = 13, - field_field = 14, - field_function = 15, - field_index = 16, - field_initializer = 17, - field_label = 18, - field_left = 19, - field_length = 20, - field_message = 21, - field_name = 22, - field_operator = 23, - field_parameters = 24, - field_path = 25, - field_pattern = 26, - field_placement = 27, - field_prefix = 28, - field_right = 29, - field_scope = 30, - field_size = 31, - field_type = 32, - field_update = 33, - field_value = 34, + field_assembly_code = 4, + field_base = 5, + field_body = 6, + field_captures = 7, + field_clobbers = 8, + field_condition = 9, + field_consequence = 10, + field_constraint = 11, + field_declarator = 12, + field_default_type = 13, + field_default_value = 14, + field_delimiter = 15, + field_designator = 16, + field_directive = 17, + field_end = 18, + field_field = 19, + field_filter = 20, + field_function = 21, + field_goto_labels = 22, + field_indices = 23, + field_initializer = 24, + field_input_operands = 25, + field_label = 26, + field_left = 27, + field_length = 28, + field_member = 29, + field_message = 30, + field_name = 31, + field_operand = 32, + field_operator = 33, + field_output_operands = 34, + field_parameters = 35, + field_path = 36, + field_pattern = 37, + field_placement = 38, + field_prefix = 39, + field_register = 40, + field_requirements = 41, + field_right = 42, + field_scope = 43, + field_size = 44, + field_start = 45, + field_symbol = 46, + field_template_parameters = 47, + field_type = 48, + field_update = 49, + field_value = 50, }; static const char * const ts_field_names[] = { @@ -3506,40 +4569,56 @@ static const char * const ts_field_names[] = { [field_alternative] = "alternative", [field_argument] = "argument", [field_arguments] = "arguments", + [field_assembly_code] = "assembly_code", [field_base] = "base", [field_body] = "body", [field_captures] = "captures", + [field_clobbers] = "clobbers", [field_condition] = "condition", [field_consequence] = "consequence", + [field_constraint] = "constraint", [field_declarator] = "declarator", [field_default_type] = "default_type", [field_default_value] = "default_value", + [field_delimiter] = "delimiter", [field_designator] = "designator", [field_directive] = "directive", + [field_end] = "end", [field_field] = "field", + [field_filter] = "filter", [field_function] = "function", - [field_index] = "index", + [field_goto_labels] = "goto_labels", + [field_indices] = "indices", [field_initializer] = "initializer", + [field_input_operands] = "input_operands", [field_label] = "label", [field_left] = "left", [field_length] = "length", + [field_member] = "member", [field_message] = "message", [field_name] = "name", + [field_operand] = "operand", [field_operator] = "operator", + [field_output_operands] = "output_operands", [field_parameters] = "parameters", [field_path] = "path", [field_pattern] = "pattern", [field_placement] = "placement", [field_prefix] = "prefix", + [field_register] = "register", + [field_requirements] = "requirements", [field_right] = "right", [field_scope] = "scope", [field_size] = "size", + [field_start] = "start", + [field_symbol] = "symbol", + [field_template_parameters] = "template_parameters", [field_type] = "type", [field_update] = "update", [field_value] = "value", }; -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { +static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [2] = {.index = 0, .length = 1}, [3] = {.index = 1, .length = 2}, [4] = {.index = 3, .length = 1}, @@ -3547,148 +4626,217 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [6] = {.index = 6, .length = 1}, [7] = {.index = 7, .length = 1}, [8] = {.index = 8, .length = 2}, - [9] = {.index = 10, .length = 1}, - [10] = {.index = 11, .length = 1}, - [11] = {.index = 12, .length = 1}, - [12] = {.index = 13, .length = 1}, - [13] = {.index = 14, .length = 2}, - [14] = {.index = 14, .length = 2}, - [15] = {.index = 16, .length = 1}, - [16] = {.index = 17, .length = 2}, - [17] = {.index = 19, .length = 2}, - [18] = {.index = 21, .length = 1}, - [19] = {.index = 22, .length = 1}, - [20] = {.index = 23, .length = 2}, - [21] = {.index = 25, .length = 2}, - [22] = {.index = 13, .length = 1}, - [23] = {.index = 27, .length = 2}, - [24] = {.index = 29, .length = 1}, - [25] = {.index = 30, .length = 2}, - [26] = {.index = 30, .length = 2}, - [27] = {.index = 16, .length = 1}, + [9] = {.index = 10, .length = 2}, + [10] = {.index = 12, .length = 1}, + [11] = {.index = 13, .length = 1}, + [12] = {.index = 14, .length = 1}, + [13] = {.index = 15, .length = 2}, + [14] = {.index = 17, .length = 2}, + [15] = {.index = 19, .length = 1}, + [16] = {.index = 20, .length = 1}, + [17] = {.index = 21, .length = 2}, + [18] = {.index = 21, .length = 2}, + [19] = {.index = 0, .length = 1}, + [21] = {.index = 23, .length = 1}, + [22] = {.index = 24, .length = 1}, + [23] = {.index = 25, .length = 1}, + [24] = {.index = 26, .length = 1}, + [25] = {.index = 27, .length = 2}, + [26] = {.index = 29, .length = 2}, + [27] = {.index = 31, .length = 1}, [28] = {.index = 32, .length = 1}, - [29] = {.index = 33, .length = 2}, - [30] = {.index = 35, .length = 2}, - [31] = {.index = 37, .length = 1}, - [32] = {.index = 38, .length = 2}, - [33] = {.index = 40, .length = 1}, - [34] = {.index = 41, .length = 1}, - [35] = {.index = 42, .length = 1}, - [36] = {.index = 43, .length = 2}, - [37] = {.index = 45, .length = 2}, - [38] = {.index = 47, .length = 2}, - [39] = {.index = 49, .length = 2}, - [40] = {.index = 51, .length = 1}, - [41] = {.index = 52, .length = 3}, - [42] = {.index = 55, .length = 1}, - [43] = {.index = 56, .length = 1}, - [44] = {.index = 57, .length = 1}, - [45] = {.index = 58, .length = 2}, - [46] = {.index = 60, .length = 2}, - [47] = {.index = 62, .length = 2}, - [48] = {.index = 64, .length = 2}, - [49] = {.index = 66, .length = 2}, - [50] = {.index = 68, .length = 3}, - [51] = {.index = 71, .length = 2}, - [52] = {.index = 73, .length = 2}, - [53] = {.index = 75, .length = 2}, - [54] = {.index = 77, .length = 3}, - [55] = {.index = 80, .length = 2}, - [56] = {.index = 82, .length = 3}, - [57] = {.index = 85, .length = 2}, - [58] = {.index = 87, .length = 2}, - [59] = {.index = 89, .length = 2}, - [60] = {.index = 91, .length = 1}, - [61] = {.index = 92, .length = 2}, - [62] = {.index = 94, .length = 2}, - [63] = {.index = 96, .length = 2}, - [64] = {.index = 98, .length = 1}, - [65] = {.index = 99, .length = 2}, - [66] = {.index = 101, .length = 2}, - [67] = {.index = 103, .length = 2}, - [68] = {.index = 105, .length = 2}, - [69] = {.index = 107, .length = 2}, - [70] = {.index = 109, .length = 2}, - [71] = {.index = 111, .length = 1}, - [72] = {.index = 111, .length = 1}, - [73] = {.index = 112, .length = 3}, - [75] = {.index = 115, .length = 2}, - [76] = {.index = 117, .length = 1}, - [77] = {.index = 118, .length = 2}, - [80] = {.index = 120, .length = 3}, - [81] = {.index = 123, .length = 3}, - [82] = {.index = 126, .length = 3}, - [83] = {.index = 129, .length = 2}, - [84] = {.index = 131, .length = 3}, - [85] = {.index = 134, .length = 2}, - [86] = {.index = 136, .length = 3}, - [87] = {.index = 139, .length = 2}, - [88] = {.index = 14, .length = 2}, - [89] = {.index = 30, .length = 2}, - [90] = {.index = 141, .length = 2}, - [91] = {.index = 143, .length = 2}, - [92] = {.index = 145, .length = 1}, - [93] = {.index = 146, .length = 2}, - [94] = {.index = 148, .length = 3}, - [95] = {.index = 151, .length = 2}, - [96] = {.index = 153, .length = 2}, - [97] = {.index = 155, .length = 2}, - [98] = {.index = 157, .length = 3}, - [99] = {.index = 160, .length = 3}, - [100] = {.index = 163, .length = 3}, - [101] = {.index = 166, .length = 3}, - [102] = {.index = 169, .length = 2}, - [103] = {.index = 171, .length = 3}, - [104] = {.index = 174, .length = 2}, - [105] = {.index = 176, .length = 2}, - [106] = {.index = 178, .length = 2}, - [107] = {.index = 180, .length = 1}, - [108] = {.index = 181, .length = 2}, - [109] = {.index = 183, .length = 3}, - [110] = {.index = 186, .length = 3}, - [111] = {.index = 189, .length = 2}, - [112] = {.index = 191, .length = 2}, - [113] = {.index = 193, .length = 1}, - [115] = {.index = 194, .length = 1}, - [116] = {.index = 195, .length = 2}, - [117] = {.index = 197, .length = 2}, - [118] = {.index = 199, .length = 1}, - [119] = {.index = 200, .length = 2}, - [120] = {.index = 202, .length = 1}, - [121] = {.index = 203, .length = 4}, - [122] = {.index = 207, .length = 5}, - [123] = {.index = 212, .length = 1}, - [124] = {.index = 213, .length = 2}, - [125] = {.index = 215, .length = 3}, - [126] = {.index = 218, .length = 1}, - [127] = {.index = 219, .length = 2}, - [128] = {.index = 221, .length = 2}, - [129] = {.index = 223, .length = 3}, - [130] = {.index = 226, .length = 4}, - [131] = {.index = 230, .length = 3}, - [132] = {.index = 233, .length = 2}, - [133] = {.index = 235, .length = 3}, - [134] = {.index = 238, .length = 3}, - [135] = {.index = 241, .length = 1}, - [136] = {.index = 242, .length = 2}, - [137] = {.index = 244, .length = 2}, - [138] = {.index = 246, .length = 3}, - [139] = {.index = 249, .length = 6}, - [140] = {.index = 255, .length = 4}, - [141] = {.index = 259, .length = 2}, - [142] = {.index = 261, .length = 2}, - [143] = {.index = 263, .length = 3}, - [144] = {.index = 266, .length = 3}, - [145] = {.index = 269, .length = 2}, - [146] = {.index = 271, .length = 2}, - [147] = {.index = 273, .length = 7}, - [148] = {.index = 280, .length = 4}, - [149] = {.index = 284, .length = 3}, - [150] = {.index = 287, .length = 4}, - [151] = {.index = 291, .length = 4}, - [152] = {.index = 295, .length = 3}, - [153] = {.index = 298, .length = 3}, - [154] = {.index = 301, .length = 4}, + [29] = {.index = 33, .length = 1}, + [30] = {.index = 34, .length = 2}, + [31] = {.index = 36, .length = 2}, + [32] = {.index = 20, .length = 1}, + [33] = {.index = 38, .length = 2}, + [34] = {.index = 40, .length = 1}, + [35] = {.index = 41, .length = 2}, + [36] = {.index = 41, .length = 2}, + [37] = {.index = 23, .length = 1}, + [38] = {.index = 43, .length = 1}, + [39] = {.index = 44, .length = 2}, + [40] = {.index = 46, .length = 2}, + [41] = {.index = 48, .length = 3}, + [42] = {.index = 51, .length = 1}, + [45] = {.index = 52, .length = 2}, + [46] = {.index = 54, .length = 1}, + [47] = {.index = 55, .length = 1}, + [48] = {.index = 56, .length = 1}, + [49] = {.index = 57, .length = 2}, + [50] = {.index = 59, .length = 2}, + [51] = {.index = 61, .length = 2}, + [52] = {.index = 63, .length = 2}, + [53] = {.index = 65, .length = 2}, + [54] = {.index = 67, .length = 1}, + [55] = {.index = 68, .length = 3}, + [56] = {.index = 71, .length = 1}, + [57] = {.index = 72, .length = 1}, + [58] = {.index = 73, .length = 1}, + [59] = {.index = 74, .length = 2}, + [61] = {.index = 57, .length = 2}, + [62] = {.index = 76, .length = 2}, + [63] = {.index = 78, .length = 2}, + [64] = {.index = 80, .length = 2}, + [66] = {.index = 82, .length = 2}, + [67] = {.index = 84, .length = 2}, + [68] = {.index = 86, .length = 3}, + [69] = {.index = 89, .length = 2}, + [70] = {.index = 91, .length = 2}, + [71] = {.index = 93, .length = 3}, + [72] = {.index = 93, .length = 3}, + [73] = {.index = 96, .length = 3}, + [74] = {.index = 99, .length = 3}, + [75] = {.index = 102, .length = 3}, + [76] = {.index = 54, .length = 1}, + [77] = {.index = 105, .length = 2}, + [78] = {.index = 107, .length = 2}, + [79] = {.index = 109, .length = 2}, + [80] = {.index = 111, .length = 1}, + [81] = {.index = 112, .length = 2}, + [82] = {.index = 114, .length = 2}, + [83] = {.index = 116, .length = 2}, + [84] = {.index = 118, .length = 3}, + [85] = {.index = 121, .length = 2}, + [86] = {.index = 123, .length = 1}, + [87] = {.index = 124, .length = 2}, + [88] = {.index = 126, .length = 2}, + [89] = {.index = 128, .length = 2}, + [90] = {.index = 130, .length = 2}, + [91] = {.index = 132, .length = 2}, + [92] = {.index = 134, .length = 2}, + [93] = {.index = 136, .length = 2}, + [94] = {.index = 138, .length = 2}, + [95] = {.index = 140, .length = 1}, + [96] = {.index = 138, .length = 2}, + [98] = {.index = 141, .length = 2}, + [99] = {.index = 143, .length = 1}, + [100] = {.index = 143, .length = 1}, + [101] = {.index = 144, .length = 3}, + [103] = {.index = 147, .length = 2}, + [104] = {.index = 149, .length = 2}, + [105] = {.index = 151, .length = 2}, + [106] = {.index = 153, .length = 2}, + [107] = {.index = 155, .length = 3}, + [108] = {.index = 158, .length = 1}, + [109] = {.index = 159, .length = 1}, + [111] = {.index = 160, .length = 3}, + [112] = {.index = 163, .length = 3}, + [113] = {.index = 166, .length = 3}, + [114] = {.index = 169, .length = 3}, + [115] = {.index = 172, .length = 2}, + [116] = {.index = 174, .length = 3}, + [117] = {.index = 177, .length = 3}, + [118] = {.index = 180, .length = 2}, + [119] = {.index = 182, .length = 3}, + [120] = {.index = 185, .length = 2}, + [121] = {.index = 21, .length = 2}, + [122] = {.index = 41, .length = 2}, + [123] = {.index = 187, .length = 2}, + [124] = {.index = 189, .length = 2}, + [125] = {.index = 191, .length = 1}, + [126] = {.index = 192, .length = 4}, + [127] = {.index = 196, .length = 4}, + [128] = {.index = 200, .length = 2}, + [129] = {.index = 202, .length = 3}, + [130] = {.index = 205, .length = 2}, + [131] = {.index = 207, .length = 2}, + [132] = {.index = 209, .length = 1}, + [133] = {.index = 210, .length = 2}, + [134] = {.index = 212, .length = 2}, + [135] = {.index = 214, .length = 3}, + [136] = {.index = 217, .length = 3}, + [137] = {.index = 220, .length = 3}, + [138] = {.index = 223, .length = 2}, + [139] = {.index = 225, .length = 2}, + [140] = {.index = 225, .length = 2}, + [141] = {.index = 227, .length = 2}, + [142] = {.index = 227, .length = 2}, + [143] = {.index = 229, .length = 2}, + [144] = {.index = 231, .length = 3}, + [145] = {.index = 234, .length = 2}, + [146] = {.index = 236, .length = 2}, + [147] = {.index = 238, .length = 1}, + [148] = {.index = 239, .length = 2}, + [149] = {.index = 241, .length = 2}, + [150] = {.index = 243, .length = 3}, + [151] = {.index = 246, .length = 2}, + [152] = {.index = 248, .length = 3}, + [153] = {.index = 251, .length = 2}, + [154] = {.index = 253, .length = 1}, + [155] = {.index = 254, .length = 2}, + [156] = {.index = 256, .length = 2}, + [157] = {.index = 258, .length = 4}, + [158] = {.index = 262, .length = 5}, + [159] = {.index = 267, .length = 1}, + [160] = {.index = 268, .length = 1}, + [161] = {.index = 269, .length = 2}, + [162] = {.index = 271, .length = 1}, + [164] = {.index = 272, .length = 1}, + [165] = {.index = 273, .length = 2}, + [166] = {.index = 275, .length = 2}, + [167] = {.index = 13, .length = 1}, + [168] = {.index = 13, .length = 1}, + [169] = {.index = 277, .length = 2}, + [170] = {.index = 279, .length = 1}, + [171] = {.index = 280, .length = 1}, + [172] = {.index = 281, .length = 4}, + [173] = {.index = 285, .length = 5}, + [174] = {.index = 290, .length = 2}, + [175] = {.index = 292, .length = 4}, + [176] = {.index = 296, .length = 1}, + [177] = {.index = 297, .length = 3}, + [178] = {.index = 300, .length = 2}, + [179] = {.index = 302, .length = 3}, + [180] = {.index = 305, .length = 1}, + [181] = {.index = 306, .length = 5}, + [182] = {.index = 311, .length = 2}, + [183] = {.index = 313, .length = 2}, + [184] = {.index = 315, .length = 4}, + [185] = {.index = 319, .length = 2}, + [186] = {.index = 321, .length = 2}, + [187] = {.index = 323, .length = 3}, + [188] = {.index = 326, .length = 4}, + [189] = {.index = 330, .length = 4}, + [190] = {.index = 334, .length = 2}, + [191] = {.index = 336, .length = 3}, + [192] = {.index = 339, .length = 2}, + [193] = {.index = 341, .length = 3}, + [194] = {.index = 344, .length = 3}, + [195] = {.index = 347, .length = 2}, + [196] = {.index = 349, .length = 2}, + [197] = {.index = 351, .length = 2}, + [198] = {.index = 353, .length = 2}, + [199] = {.index = 355, .length = 3}, + [200] = {.index = 358, .length = 2}, + [201] = {.index = 360, .length = 2}, + [202] = {.index = 362, .length = 3}, + [203] = {.index = 365, .length = 2}, + [204] = {.index = 367, .length = 6}, + [205] = {.index = 373, .length = 2}, + [206] = {.index = 375, .length = 2}, + [207] = {.index = 377, .length = 4}, + [208] = {.index = 381, .length = 5}, + [209] = {.index = 386, .length = 3}, + [210] = {.index = 389, .length = 4}, + [211] = {.index = 393, .length = 2}, + [212] = {.index = 395, .length = 1}, + [213] = {.index = 396, .length = 4}, + [214] = {.index = 400, .length = 3}, + [215] = {.index = 403, .length = 2}, + [216] = {.index = 405, .length = 1}, + [217] = {.index = 406, .length = 7}, + [218] = {.index = 413, .length = 5}, + [219] = {.index = 418, .length = 2}, + [220] = {.index = 420, .length = 2}, + [221] = {.index = 67, .length = 1}, + [222] = {.index = 422, .length = 5}, + [223] = {.index = 427, .length = 4}, + [224] = {.index = 431, .length = 2}, + [225] = {.index = 433, .length = 2}, + [226] = {.index = 435, .length = 5}, + [227] = {.index = 440, .length = 2}, + [228] = {.index = 442, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3710,396 +4858,585 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_arguments, 1}, {field_function, 0}, [10] = + {field_type, 0}, + {field_value, 1}, + [12] = {field_body, 1}, - [11] = + [13] = {field_name, 1}, - [12] = + [14] = + {field_body, 0}, + [15] = + {field_body, 1, .inherited = true}, + {field_name, 1, .inherited = true}, + [17] = + {field_body, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + [19] = {field_value, 1}, - [13] = + [20] = {field_scope, 0}, - [14] = + [21] = {field_arguments, 1}, {field_name, 0}, - [16] = + [23] = {field_type, 1}, - [17] = + [24] = + {field_requirements, 1}, + [25] = + {field_constraint, 1}, + [26] = + {field_parameters, 0}, + [27] = {field_declarator, 0}, - {field_parameters, 1}, - [19] = + {field_parameters, 1, .inherited = true}, + [29] = {field_body, 1}, {field_declarator, 0}, - [21] = + [31] = {field_declarator, 0}, - [22] = + [32] = + {field_constraint, 0}, + [33] = {field_pattern, 0}, - [23] = + [34] = {field_argument, 0}, {field_operator, 1}, - [25] = - {field_type, 0}, - {field_value, 1}, - [27] = + [36] = + {field_argument, 0}, + {field_indices, 1}, + [38] = {field_body, 1}, {field_captures, 0}, - [29] = - {field_parameters, 0}, - [30] = + [40] = + {field_parameters, 0, .inherited = true}, + [41] = {field_name, 1}, {field_scope, 0, .inherited = true}, - [32] = + [43] = {field_path, 1}, - [33] = + [44] = {field_argument, 1}, {field_directive, 0}, - [35] = + [46] = {field_declarator, 1}, {field_type, 0}, - [37] = + [48] = + {field_left, 1, .inherited = true}, + {field_operator, 1, .inherited = true}, + {field_right, 1, .inherited = true}, + [51] = {field_declarator, 2}, - [38] = + [52] = {field_body, 2}, {field_value, 1}, - [40] = + [54] = {field_type, 2}, - [41] = + [55] = {field_body, 2}, - [42] = + [56] = {field_name, 2}, - [43] = + [57] = {field_body, 2}, {field_name, 1}, - [45] = + [59] = {field_base, 2, .inherited = true}, {field_name, 1}, - [47] = + [61] = + {field_body, 1}, + {field_name, 0}, + [63] = {field_condition, 1}, {field_consequence, 2}, - [49] = + [65] = {field_body, 2}, {field_condition, 1}, - [51] = + [67] = {field_label, 1}, - [52] = + [68] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [55] = + [71] = {field_label, 0}, - [56] = + [72] = {field_type, 0, .inherited = true}, - [57] = + [73] = {field_parameters, 1}, - [58] = + [74] = {field_declarator, 2}, {field_type, 1, .inherited = true}, - [60] = + [76] = {field_arguments, 2}, {field_type, 1}, - [62] = + [78] = {field_declarator, 2}, {field_type, 1}, - [64] = + [80] = {field_placement, 1}, {field_type, 2}, - [66] = + [82] = + {field_parameters, 1}, + {field_requirements, 2}, + [84] = {field_declarator, 1}, {field_type, 0, .inherited = true}, - [68] = + [86] = {field_body, 2}, {field_declarator, 1}, {field_type, 0, .inherited = true}, - [71] = + [89] = {field_declarator, 0}, {field_value, 1}, - [73] = + [91] = {field_body, 2}, {field_declarator, 0}, - [75] = - {field_left, 0}, - {field_right, 2}, - [77] = + [93] = {field_argument, 0}, {field_field, 2}, {field_operator, 1}, - [80] = - {field_argument, 0}, - {field_field, 2}, - [82] = + [96] = {field_body, 2}, {field_captures, 0}, {field_declarator, 1}, - [85] = + [99] = + {field_body, 2}, + {field_captures, 0}, + {field_template_parameters, 1}, + [102] = + {field_name, 1}, + {field_name, 2}, + {field_scope, 0, .inherited = true}, + [105] = {field_body, 2}, {field_declarator, 1}, - [87] = + [107] = {field_name, 1}, {field_value, 2}, - [89] = + [109] = {field_name, 1}, {field_parameters, 2}, - [91] = + [111] = {field_condition, 1}, - [92] = + [112] = {field_alternative, 2}, {field_name, 1}, - [94] = + [114] = {field_declarator, 2}, {field_type, 0}, - [96] = + [116] = + {field_left, 0}, + {field_right, 2}, + [118] = + {field_left, 0}, + {field_operator, 1, .inherited = true}, + {field_right, 2}, + [121] = {field_type, 1}, {field_value, 3}, - [98] = + [123] = {field_declarator, 3}, - [99] = + [124] = + {field_declarator, 2, .inherited = true}, + {field_type, 1, .inherited = true}, + [126] = + {field_declarator, 0}, + {field_parameters, 1}, + [128] = + {field_declarator, 0}, + {field_declarator, 1, .inherited = true}, + [130] = {field_arguments, 3}, {field_type, 2}, - [101] = + [132] = {field_declarator, 3}, {field_type, 2}, - [103] = + [134] = {field_placement, 2}, {field_type, 3}, - [105] = + [136] = {field_name, 2}, {field_prefix, 0}, - [107] = + [138] = {field_body, 3}, {field_name, 2}, - [109] = + [140] = + {field_body, 3}, + [141] = {field_base, 3, .inherited = true}, {field_name, 2}, - [111] = + [143] = {field_base, 1}, - [112] = + [144] = {field_base, 2, .inherited = true}, {field_body, 3}, {field_name, 1}, - [115] = + [147] = {field_body, 3}, {field_name, 1}, - [117] = - {field_body, 3}, - [118] = + [149] = + {field_body, 2, .inherited = true}, + {field_name, 2, .inherited = true}, + [151] = + {field_body, 2}, + {field_name, 0}, + [153] = {field_condition, 2}, {field_consequence, 3}, - [120] = + [155] = + {field_alternative, 3}, + {field_condition, 1}, + {field_consequence, 2}, + [158] = + {field_initializer, 0}, + [159] = + {field_assembly_code, 2}, + [160] = {field_arguments, 3}, {field_declarator, 2}, {field_type, 1}, - [123] = + [163] = {field_arguments, 3}, {field_placement, 1}, {field_type, 2}, - [126] = + [166] = {field_declarator, 3}, {field_placement, 1}, {field_type, 2}, - [129] = + [169] = + {field_body, 3}, + {field_declarator, 2}, + {field_type, 0, .inherited = true}, + [172] = {field_declarator, 0}, {field_value, 2}, - [131] = + [174] = + {field_declarator, 1}, + {field_declarator, 2}, + {field_type, 0, .inherited = true}, + [177] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [134] = + [180] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [136] = + [182] = {field_body, 3}, {field_declarator, 2}, {field_type, 1, .inherited = true}, - [139] = + [185] = {field_declarator, 0}, {field_size, 2}, - [141] = - {field_argument, 0}, - {field_index, 2}, - [143] = + [187] = + {field_alternative, 3}, + {field_condition, 0}, + [189] = {field_declarator, 0}, {field_default_value, 2}, - [145] = + [191] = {field_size, 1}, - [146] = + [192] = + {field_body, 3}, + {field_captures, 0}, + {field_declarator, 2}, + {field_template_parameters, 1}, + [196] = + {field_body, 3}, + {field_captures, 0}, + {field_constraint, 2}, + {field_template_parameters, 1}, + [200] = {field_body, 3}, {field_declarator, 1}, - [148] = + [202] = {field_name, 1}, {field_parameters, 2}, {field_value, 3}, - [151] = + [205] = {field_alternative, 3}, {field_condition, 1}, - [153] = + [207] = {field_alternative, 3}, {field_name, 1}, - [155] = + [209] = + {field_operator, 0}, + [210] = {field_declarator, 3}, {field_type, 1}, - [157] = - {field_declarator, 2}, + [212] = {field_declarator, 3, .inherited = true}, - {field_type, 1}, - [160] = + {field_type, 2, .inherited = true}, + [214] = {field_arguments, 4}, {field_declarator, 3}, {field_type, 2}, - [163] = + [217] = {field_arguments, 4}, {field_placement, 2}, {field_type, 3}, - [166] = + [220] = {field_declarator, 4}, {field_placement, 2}, {field_type, 3}, - [169] = + [223] = + {field_left, 1}, + {field_right, 3}, + [225] = + {field_body, 4}, + {field_name, 3}, + [227] = + {field_designator, 0}, + {field_value, 2}, + [229] = {field_name, 0}, {field_value, 2}, - [171] = + [231] = {field_base, 3, .inherited = true}, {field_body, 4}, {field_name, 2}, - [174] = - {field_default_value, 1}, - {field_type, 0, .inherited = true}, - [176] = + [234] = {field_body, 4}, {field_name, 1}, - [178] = + [236] = {field_body, 4}, {field_name, 2}, - [180] = + [238] = {field_body, 4}, - [181] = - {field_initializer, 1}, - {field_value, 2}, - [183] = + [239] = + {field_body, 3}, + {field_name, 0}, + [241] = + {field_body, 3, .inherited = true}, + {field_name, 3, .inherited = true}, + [243] = {field_declarator, 1}, {field_type, 0, .inherited = true}, {field_value, 2}, - [186] = + [246] = + {field_initializer, 1}, + {field_value, 2}, + [248] = {field_alternative, 4}, - {field_condition, 1}, - {field_consequence, 2}, - [189] = + {field_condition, 2}, + {field_consequence, 3}, + [251] = {field_body, 1}, {field_condition, 3}, - [191] = - {field_designator, 0}, - {field_value, 2}, - [193] = + [253] = + {field_update, 2}, + [254] = + {field_initializer, 0}, + {field_update, 2}, + [256] = + {field_condition, 1}, + {field_initializer, 0}, + [258] = + {field_body, 4}, + {field_condition, 2, .inherited = true}, + {field_initializer, 2, .inherited = true}, + {field_update, 2, .inherited = true}, + [262] = + {field_body, 4}, + {field_declarator, 2, .inherited = true}, + {field_initializer, 2, .inherited = true}, + {field_right, 2, .inherited = true}, + {field_type, 2, .inherited = true}, + [267] = {field_value, 3}, - [194] = + [268] = + {field_operand, 1}, + [269] = + {field_assembly_code, 2}, + {field_output_operands, 3}, + [271] = + {field_assembly_code, 3}, + [272] = {field_default_type, 2}, - [195] = + [273] = {field_default_value, 2}, {field_type, 0, .inherited = true}, - [197] = + [275] = + {field_body, 2}, + {field_parameters, 1}, + [277] = {field_name, 1}, {field_type, 3}, - [199] = + [279] = {field_condition, 2}, - [200] = - {field_body, 2}, - {field_parameters, 1}, - [202] = + [280] = {field_length, 1}, - [203] = + [281] = {field_arguments, 4}, {field_declarator, 3}, {field_placement, 1}, {field_type, 2}, - [207] = + [285] = {field_arguments, 1}, {field_arguments, 2}, {field_arguments, 3}, {field_arguments, 4}, {field_function, 0}, - [212] = + [290] = + {field_declarator, 1}, + {field_declarator, 2}, + [292] = + {field_declarator, 1}, + {field_declarator, 2}, + {field_declarator, 3, .inherited = true}, + {field_type, 0, .inherited = true}, + [296] = {field_declarator, 4}, - [213] = + [297] = + {field_body, 4}, + {field_declarator, 3}, + {field_type, 1, .inherited = true}, + [300] = {field_declarator, 0}, {field_size, 3}, - [215] = + [302] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [218] = + [305] = {field_size, 2}, - [219] = + [306] = + {field_body, 4}, + {field_captures, 0}, + {field_constraint, 2}, + {field_declarator, 3}, + {field_template_parameters, 1}, + [311] = {field_declarator, 1}, {field_default_value, 3}, - [221] = + [313] = {field_alternative, 4}, {field_condition, 1}, - [223] = - {field_declarator, 3}, - {field_declarator, 4, .inherited = true}, - {field_type, 2}, - [226] = + [315] = {field_arguments, 5}, {field_declarator, 4}, {field_placement, 2}, {field_type, 3}, - [230] = + [319] = + {field_body, 2}, + {field_filter, 1}, + [321] = + {field_left, 2}, + {field_right, 4}, + [323] = {field_declarator, 1}, {field_default_value, 2}, {field_type, 0, .inherited = true}, - [233] = + [326] = + {field_declarator, 1}, + {field_declarator, 2, .inherited = true}, + {field_default_value, 2, .inherited = true}, + {field_type, 0, .inherited = true}, + [330] = + {field_declarator, 0, .inherited = true}, + {field_declarator, 1, .inherited = true}, + {field_default_value, 0, .inherited = true}, + {field_default_value, 1, .inherited = true}, + [334] = {field_body, 5}, {field_name, 2}, - [235] = + [336] = {field_declarator, 1}, {field_type, 0, .inherited = true}, {field_value, 3}, - [238] = - {field_alternative, 5}, + [339] = + {field_condition, 1}, + {field_update, 3}, + [341] = + {field_condition, 1}, + {field_initializer, 0}, + {field_update, 3}, + [344] = + {field_declarator, 1}, + {field_right, 3}, + {field_type, 0, .inherited = true}, + [347] = + {field_initializer, 0}, + {field_update, 3}, + [349] = {field_condition, 2}, - {field_consequence, 3}, - [241] = - {field_body, 5}, - [242] = - {field_body, 5}, - {field_initializer, 2}, - [244] = + {field_initializer, 0}, + [351] = + {field_member, 4}, + {field_type, 2}, + [353] = + {field_operand, 1}, + {field_operand, 2, .inherited = true}, + [355] = + {field_assembly_code, 2}, + {field_input_operands, 4}, + {field_output_operands, 3}, + [358] = + {field_assembly_code, 3}, + {field_output_operands, 4}, + [360] = {field_default_type, 3}, {field_name, 1}, - [246] = + [362] = {field_declarator, 1}, {field_default_value, 3}, {field_type, 0, .inherited = true}, - [249] = + [365] = + {field_name, 1}, + {field_type, 4}, + [367] = {field_arguments, 1}, {field_arguments, 2}, {field_arguments, 3}, {field_arguments, 4}, {field_arguments, 5}, {field_function, 0}, - [255] = + [373] = + {field_end, 3}, + {field_start, 1}, + [375] = {field_declarator, 1}, - {field_declarator, 2, .inherited = true}, - {field_default_value, 3}, + {field_default_value, 2}, + [377] = + {field_declarator, 1}, + {field_declarator, 3, .inherited = true}, + {field_default_value, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [259] = - {field_body, 6}, - {field_update, 4}, - [261] = - {field_body, 6}, - {field_condition, 3}, - [263] = - {field_body, 6}, - {field_initializer, 2}, + [381] = + {field_declarator, 1}, + {field_declarator, 3, .inherited = true}, + {field_default_value, 2}, + {field_default_value, 3, .inherited = true}, + {field_type, 0, .inherited = true}, + [386] = + {field_condition, 2}, + {field_initializer, 0}, {field_update, 4}, - [266] = - {field_body, 6}, - {field_condition, 3}, - {field_initializer, 2}, - [269] = - {field_body, 6}, - {field_initializer, 2}, - [271] = + [389] = + {field_declarator, 2}, + {field_initializer, 0}, + {field_right, 4}, + {field_type, 1, .inherited = true}, + [393] = + {field_operand, 0, .inherited = true}, + {field_operand, 1, .inherited = true}, + [395] = + {field_register, 1}, + [396] = + {field_assembly_code, 2}, + {field_clobbers, 5}, + {field_input_operands, 4}, + {field_output_operands, 3}, + [400] = + {field_assembly_code, 3}, + {field_input_operands, 5}, + {field_output_operands, 4}, + [403] = {field_condition, 2}, {field_message, 4}, - [273] = + [405] = + {field_delimiter, 1}, + [406] = {field_arguments, 1}, {field_arguments, 2}, {field_arguments, 3}, @@ -4107,38 +5444,48 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_arguments, 5}, {field_arguments, 6}, {field_function, 0}, - [280] = + [413] = {field_declarator, 1}, - {field_declarator, 2, .inherited = true}, - {field_default_value, 4}, + {field_declarator, 4, .inherited = true}, + {field_default_value, 3}, + {field_default_value, 4, .inherited = true}, {field_type, 0, .inherited = true}, - [284] = - {field_body, 7}, - {field_condition, 3}, - {field_update, 5}, - [287] = - {field_body, 7}, - {field_condition, 3}, - {field_initializer, 2}, - {field_update, 5}, - [291] = - {field_body, 7}, - {field_declarator, 3}, - {field_right, 5}, - {field_type, 2, .inherited = true}, - [295] = - {field_body, 7}, - {field_initializer, 2}, - {field_update, 5}, - [298] = - {field_body, 7}, - {field_condition, 4}, - {field_initializer, 2}, - [301] = - {field_body, 8}, - {field_condition, 4}, - {field_initializer, 2}, - {field_update, 6}, + [418] = + {field_constraint, 0}, + {field_value, 2}, + [420] = + {field_register, 1}, + {field_register, 2, .inherited = true}, + [422] = + {field_assembly_code, 2}, + {field_clobbers, 5}, + {field_goto_labels, 6}, + {field_input_operands, 4}, + {field_output_operands, 3}, + [427] = + {field_assembly_code, 3}, + {field_clobbers, 6}, + {field_input_operands, 5}, + {field_output_operands, 4}, + [431] = + {field_register, 0, .inherited = true}, + {field_register, 1, .inherited = true}, + [433] = + {field_label, 1}, + {field_label, 2, .inherited = true}, + [435] = + {field_assembly_code, 3}, + {field_clobbers, 6}, + {field_goto_labels, 7}, + {field_input_operands, 5}, + {field_output_operands, 4}, + [440] = + {field_label, 0, .inherited = true}, + {field_label, 1, .inherited = true}, + [442] = + {field_constraint, 3}, + {field_symbol, 1}, + {field_value, 5}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -4146,57 +5493,109 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = { [0] = alias_sym_type_identifier, }, - [12] = { + [16] = { [0] = alias_sym_namespace_identifier, }, - [13] = { + [17] = { + [0] = alias_sym_type_identifier, + }, + [19] = { [0] = alias_sym_type_identifier, }, - [26] = { + [20] = { + [0] = alias_sym_namespace_identifier, + }, + [36] = { [1] = alias_sym_type_identifier, }, - [27] = { + [37] = { [1] = alias_sym_type_identifier, }, - [40] = { + [43] = { + [0] = sym_primitive_type, + }, + [44] = { + [0] = sym_pointer_declarator, + }, + [54] = { [1] = alias_sym_statement_identifier, }, - [42] = { + [56] = { [0] = alias_sym_statement_identifier, }, - [54] = { - [2] = alias_sym_field_identifier, + [60] = { + [1] = alias_sym_namespace_identifier, + }, + [61] = { + [1] = alias_sym_namespace_identifier, + }, + [65] = { + [0] = alias_sym_simple_requirement, }, [71] = { - [1] = alias_sym_type_identifier, + [2] = alias_sym_field_identifier, }, - [74] = { - [0] = alias_sym_field_identifier, + [76] = { + [2] = alias_sym_type_identifier, + }, + [94] = { + [2] = alias_sym_namespace_identifier, }, - [78] = { + [97] = { [1] = alias_sym_field_identifier, }, - [79] = { + [100] = { + [1] = alias_sym_type_identifier, + }, + [102] = { + [0] = alias_sym_field_identifier, + }, + [110] = { [1] = alias_sym_type_identifier, }, - [88] = { + [121] = { [0] = alias_sym_field_identifier, }, - [89] = { + [122] = { [1] = alias_sym_field_identifier, }, - [114] = { + [139] = { + [3] = alias_sym_namespace_identifier, + }, + [141] = { + [0] = alias_sym_field_identifier, + }, + [163] = { [2] = alias_sym_type_identifier, }, - [117] = { + [167] = { + [1] = alias_sym_namespace_identifier, + [3] = alias_sym_namespace_identifier, + }, + [168] = { + [1] = alias_sym_namespace_identifier, + }, + [169] = { + [1] = alias_sym_type_identifier, + }, + [197] = { + [4] = alias_sym_field_identifier, + }, + [201] = { [1] = alias_sym_type_identifier, }, - [137] = { + [203] = { [1] = alias_sym_type_identifier, }, }; static const uint16_t ts_non_terminal_alias_map[] = { + sym_pointer_type_declarator, 2, + sym_pointer_type_declarator, + sym_pointer_declarator, + sym_expression_statement, 2, + sym_expression_statement, + alias_sym_simple_requirement, 0, }; @@ -4211,143 +5610,143 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7] = 2, [8] = 2, [9] = 2, - [10] = 10, - [11] = 11, - [12] = 10, + [10] = 2, + [11] = 2, + [12] = 2, [13] = 13, - [14] = 13, - [15] = 11, - [16] = 10, + [14] = 14, + [15] = 15, + [16] = 16, [17] = 17, - [18] = 13, - [19] = 10, + [18] = 18, + [19] = 19, [20] = 20, - [21] = 13, - [22] = 11, - [23] = 17, - [24] = 17, - [25] = 25, - [26] = 17, - [27] = 11, - [28] = 28, - [29] = 28, - [30] = 30, - [31] = 31, - [32] = 32, - [33] = 32, - [34] = 30, - [35] = 30, - [36] = 32, - [37] = 32, + [21] = 20, + [22] = 14, + [23] = 13, + [24] = 15, + [25] = 15, + [26] = 14, + [27] = 14, + [28] = 13, + [29] = 15, + [30] = 13, + [31] = 20, + [32] = 20, + [33] = 33, + [34] = 34, + [35] = 35, + [36] = 33, + [37] = 37, [38] = 38, - [39] = 30, - [40] = 30, - [41] = 32, - [42] = 30, - [43] = 32, - [44] = 28, - [45] = 45, - [46] = 31, - [47] = 47, - [48] = 30, - [49] = 28, - [50] = 32, - [51] = 45, - [52] = 45, - [53] = 31, - [54] = 32, - [55] = 30, - [56] = 30, - [57] = 32, - [58] = 32, - [59] = 59, - [60] = 30, - [61] = 45, - [62] = 32, - [63] = 30, - [64] = 31, - [65] = 32, - [66] = 30, - [67] = 67, - [68] = 68, - [69] = 69, - [70] = 70, - [71] = 71, - [72] = 67, - [73] = 67, - [74] = 67, - [75] = 71, - [76] = 70, - [77] = 68, - [78] = 69, - [79] = 68, - [80] = 71, - [81] = 70, - [82] = 71, - [83] = 69, - [84] = 70, - [85] = 68, - [86] = 69, - [87] = 69, - [88] = 71, - [89] = 70, - [90] = 67, - [91] = 68, - [92] = 92, - [93] = 92, - [94] = 94, - [95] = 94, - [96] = 96, - [97] = 96, - [98] = 96, - [99] = 96, - [100] = 96, - [101] = 96, + [39] = 35, + [40] = 37, + [41] = 41, + [42] = 37, + [43] = 38, + [44] = 35, + [45] = 33, + [46] = 41, + [47] = 37, + [48] = 38, + [49] = 35, + [50] = 41, + [51] = 38, + [52] = 37, + [53] = 38, + [54] = 37, + [55] = 38, + [56] = 37, + [57] = 38, + [58] = 38, + [59] = 37, + [60] = 38, + [61] = 61, + [62] = 37, + [63] = 38, + [64] = 37, + [65] = 38, + [66] = 37, + [67] = 38, + [68] = 37, + [69] = 38, + [70] = 37, + [71] = 38, + [72] = 37, + [73] = 38, + [74] = 37, + [75] = 38, + [76] = 37, + [77] = 38, + [78] = 37, + [79] = 41, + [80] = 80, + [81] = 81, + [82] = 82, + [83] = 83, + [84] = 84, + [85] = 85, + [86] = 86, + [87] = 83, + [88] = 85, + [89] = 84, + [90] = 82, + [91] = 86, + [92] = 83, + [93] = 84, + [94] = 85, + [95] = 83, + [96] = 84, + [97] = 85, + [98] = 86, + [99] = 86, + [100] = 82, + [101] = 82, [102] = 102, [103] = 103, - [104] = 102, - [105] = 102, - [106] = 103, - [107] = 107, - [108] = 108, - [109] = 103, + [104] = 86, + [105] = 103, + [106] = 84, + [107] = 82, + [108] = 83, + [109] = 85, [110] = 103, - [111] = 102, - [112] = 112, - [113] = 113, + [111] = 103, + [112] = 103, + [113] = 103, [114] = 114, - [115] = 115, - [116] = 116, - [117] = 117, - [118] = 118, - [119] = 119, + [115] = 114, + [116] = 114, + [117] = 114, + [118] = 114, + [119] = 114, [120] = 120, [121] = 121, - [122] = 122, - [123] = 123, + [122] = 121, + [123] = 121, [124] = 124, - [125] = 125, - [126] = 126, - [127] = 127, - [128] = 128, + [125] = 121, + [126] = 121, + [127] = 121, + [128] = 124, [129] = 129, [130] = 130, [131] = 131, [132] = 132, - [133] = 133, - [134] = 134, + [133] = 132, + [134] = 132, [135] = 135, [136] = 136, - [137] = 137, + [137] = 132, [138] = 138, [139] = 139, [140] = 140, [141] = 141, - [142] = 142, - [143] = 143, + [142] = 131, + [143] = 130, [144] = 144, - [145] = 145, - [146] = 146, + [145] = 136, + [146] = 135, [147] = 147, [148] = 148, [149] = 149, @@ -4394,41 +5793,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [190] = 190, [191] = 191, [192] = 192, - [193] = 107, + [193] = 193, [194] = 194, [195] = 195, [196] = 196, - [197] = 197, + [197] = 132, [198] = 198, [199] = 199, [200] = 200, [201] = 201, [202] = 202, - [203] = 108, - [204] = 204, + [203] = 203, + [204] = 132, [205] = 205, [206] = 206, [207] = 207, [208] = 208, - [209] = 209, + [209] = 136, [210] = 210, - [211] = 211, + [211] = 140, [212] = 212, [213] = 213, - [214] = 112, + [214] = 214, [215] = 215, [216] = 216, - [217] = 112, - [218] = 218, - [219] = 112, - [220] = 108, + [217] = 217, + [218] = 135, + [219] = 219, + [220] = 220, [221] = 221, [222] = 222, [223] = 223, - [224] = 107, + [224] = 224, [225] = 225, - [226] = 108, - [227] = 107, + [226] = 136, + [227] = 227, [228] = 228, [229] = 229, [230] = 230, @@ -4445,1069 +5844,1069 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [241] = 241, [242] = 242, [243] = 243, - [244] = 244, + [244] = 144, [245] = 245, [246] = 246, [247] = 247, [248] = 248, - [249] = 249, + [249] = 135, [250] = 250, [251] = 251, - [252] = 252, + [252] = 141, [253] = 253, - [254] = 148, - [255] = 166, - [256] = 138, - [257] = 136, - [258] = 135, - [259] = 134, - [260] = 133, - [261] = 118, - [262] = 132, - [263] = 131, - [264] = 130, - [265] = 113, - [266] = 153, - [267] = 126, - [268] = 124, - [269] = 123, - [270] = 122, - [271] = 121, - [272] = 120, - [273] = 119, - [274] = 119, - [275] = 118, - [276] = 276, - [277] = 164, - [278] = 117, - [279] = 116, - [280] = 171, - [281] = 115, - [282] = 149, - [283] = 150, - [284] = 141, - [285] = 120, - [286] = 121, - [287] = 191, - [288] = 122, - [289] = 289, - [290] = 147, - [291] = 114, - [292] = 155, - [293] = 123, - [294] = 158, - [295] = 124, - [296] = 126, - [297] = 162, - [298] = 164, - [299] = 166, - [300] = 167, - [301] = 160, - [302] = 168, - [303] = 116, - [304] = 172, - [305] = 153, - [306] = 173, - [307] = 175, - [308] = 128, - [309] = 176, - [310] = 115, - [311] = 113, - [312] = 130, - [313] = 192, - [314] = 142, - [315] = 174, - [316] = 178, - [317] = 157, - [318] = 188, - [319] = 190, - [320] = 185, - [321] = 170, - [322] = 149, - [323] = 169, - [324] = 165, - [325] = 163, - [326] = 161, - [327] = 159, - [328] = 140, - [329] = 150, - [330] = 131, - [331] = 144, - [332] = 145, - [333] = 148, - [334] = 334, - [335] = 157, - [336] = 132, - [337] = 160, - [338] = 129, - [339] = 334, - [340] = 145, - [341] = 176, - [342] = 142, - [343] = 343, - [344] = 344, - [345] = 178, - [346] = 137, - [347] = 144, - [348] = 133, - [349] = 137, - [350] = 350, - [351] = 134, - [352] = 171, - [353] = 135, - [354] = 174, - [355] = 136, - [356] = 138, - [357] = 177, - [358] = 139, - [359] = 179, - [360] = 151, - [361] = 141, - [362] = 147, - [363] = 182, - [364] = 183, - [365] = 114, - [366] = 181, - [367] = 155, - [368] = 144, - [369] = 145, - [370] = 148, - [371] = 157, - [372] = 160, - [373] = 158, + [254] = 254, + [255] = 255, + [256] = 256, + [257] = 257, + [258] = 258, + [259] = 259, + [260] = 260, + [261] = 261, + [262] = 262, + [263] = 132, + [264] = 264, + [265] = 265, + [266] = 266, + [267] = 132, + [268] = 268, + [269] = 132, + [270] = 270, + [271] = 132, + [272] = 147, + [273] = 167, + [274] = 138, + [275] = 186, + [276] = 162, + [277] = 153, + [278] = 163, + [279] = 154, + [280] = 155, + [281] = 164, + [282] = 165, + [283] = 166, + [284] = 168, + [285] = 172, + [286] = 173, + [287] = 175, + [288] = 156, + [289] = 176, + [290] = 157, + [291] = 179, + [292] = 182, + [293] = 183, + [294] = 184, + [295] = 139, + [296] = 174, + [297] = 181, + [298] = 148, + [299] = 152, + [300] = 161, + [301] = 187, + [302] = 171, + [303] = 178, + [304] = 138, + [305] = 185, + [306] = 158, + [307] = 307, + [308] = 149, + [309] = 151, + [310] = 139, + [311] = 138, + [312] = 307, + [313] = 159, + [314] = 160, + [315] = 177, + [316] = 139, + [317] = 221, + [318] = 144, + [319] = 141, + [320] = 141, + [321] = 130, + [322] = 131, + [323] = 150, + [324] = 140, + [325] = 131, + [326] = 140, + [327] = 200, + [328] = 130, + [329] = 144, + [330] = 187, + [331] = 185, + [332] = 162, + [333] = 149, + [334] = 148, + [335] = 163, + [336] = 164, + [337] = 165, + [338] = 166, + [339] = 186, + [340] = 168, + [341] = 172, + [342] = 173, + [343] = 177, + [344] = 159, + [345] = 179, + [346] = 167, + [347] = 148, + [348] = 152, + [349] = 161, + [350] = 184, + [351] = 171, + [352] = 160, + [353] = 186, + [354] = 152, + [355] = 161, + [356] = 167, + [357] = 147, + [358] = 175, + [359] = 187, + [360] = 171, + [361] = 182, + [362] = 183, + [363] = 184, + [364] = 181, + [365] = 178, + [366] = 177, + [367] = 150, + [368] = 149, + [369] = 160, + [370] = 159, + [371] = 178, + [372] = 174, + [373] = 176, [374] = 174, - [375] = 184, - [376] = 177, - [377] = 127, - [378] = 179, - [379] = 162, - [380] = 187, - [381] = 139, - [382] = 151, - [383] = 182, - [384] = 183, - [385] = 184, - [386] = 187, - [387] = 188, - [388] = 189, - [389] = 167, - [390] = 125, - [391] = 186, - [392] = 180, - [393] = 189, - [394] = 143, - [395] = 156, - [396] = 168, - [397] = 172, - [398] = 186, - [399] = 181, - [400] = 127, - [401] = 146, - [402] = 152, - [403] = 125, - [404] = 129, - [405] = 127, - [406] = 181, - [407] = 180, - [408] = 137, - [409] = 178, - [410] = 142, - [411] = 343, - [412] = 344, - [413] = 176, - [414] = 150, - [415] = 149, - [416] = 115, - [417] = 116, - [418] = 117, - [419] = 129, - [420] = 118, - [421] = 125, - [422] = 119, - [423] = 120, - [424] = 121, - [425] = 122, - [426] = 123, - [427] = 124, - [428] = 126, - [429] = 153, - [430] = 173, - [431] = 113, - [432] = 130, - [433] = 131, - [434] = 132, - [435] = 133, - [436] = 134, - [437] = 135, - [438] = 136, - [439] = 138, - [440] = 139, - [441] = 141, - [442] = 147, - [443] = 114, - [444] = 155, - [445] = 158, - [446] = 334, - [447] = 162, - [448] = 164, - [449] = 166, - [450] = 167, - [451] = 177, - [452] = 179, - [453] = 175, - [454] = 168, - [455] = 172, - [456] = 128, - [457] = 151, - [458] = 173, - [459] = 175, - [460] = 128, - [461] = 192, - [462] = 191, - [463] = 190, - [464] = 343, - [465] = 344, - [466] = 185, - [467] = 170, - [468] = 169, - [469] = 165, - [470] = 163, - [471] = 182, - [472] = 183, - [473] = 161, - [474] = 159, - [475] = 140, - [476] = 152, - [477] = 350, - [478] = 146, - [479] = 192, - [480] = 171, - [481] = 154, - [482] = 117, - [483] = 184, - [484] = 191, - [485] = 190, - [486] = 154, - [487] = 185, - [488] = 170, - [489] = 169, - [490] = 156, - [491] = 350, - [492] = 143, - [493] = 165, - [494] = 140, - [495] = 163, - [496] = 161, - [497] = 159, - [498] = 180, - [499] = 187, - [500] = 143, - [501] = 156, - [502] = 188, - [503] = 186, - [504] = 154, - [505] = 146, - [506] = 189, - [507] = 152, - [508] = 154, - [509] = 212, - [510] = 212, - [511] = 199, - [512] = 241, - [513] = 200, - [514] = 195, - [515] = 197, - [516] = 250, - [517] = 229, - [518] = 240, - [519] = 237, - [520] = 218, - [521] = 245, - [522] = 246, - [523] = 198, - [524] = 199, - [525] = 218, - [526] = 201, - [527] = 215, - [528] = 243, - [529] = 200, - [530] = 242, - [531] = 208, - [532] = 240, - [533] = 208, - [534] = 228, - [535] = 241, - [536] = 242, - [537] = 243, - [538] = 244, - [539] = 231, - [540] = 201, - [541] = 213, - [542] = 233, - [543] = 234, - [544] = 215, - [545] = 243, + [375] = 181, + [376] = 185, + [377] = 153, + [378] = 154, + [379] = 155, + [380] = 156, + [381] = 157, + [382] = 158, + [383] = 151, + [384] = 153, + [385] = 154, + [386] = 155, + [387] = 162, + [388] = 151, + [389] = 163, + [390] = 164, + [391] = 165, + [392] = 166, + [393] = 156, + [394] = 168, + [395] = 172, + [396] = 173, + [397] = 147, + [398] = 175, + [399] = 176, + [400] = 150, + [401] = 157, + [402] = 158, + [403] = 179, + [404] = 182, + [405] = 183, + [406] = 150, + [407] = 240, + [408] = 262, + [409] = 266, + [410] = 268, + [411] = 411, + [412] = 243, + [413] = 255, + [414] = 195, + [415] = 260, + [416] = 202, + [417] = 245, + [418] = 261, + [419] = 206, + [420] = 262, + [421] = 215, + [422] = 216, + [423] = 266, + [424] = 270, + [425] = 219, + [426] = 192, + [427] = 427, + [428] = 196, + [429] = 199, + [430] = 201, + [431] = 223, + [432] = 207, + [433] = 205, + [434] = 224, + [435] = 225, + [436] = 268, + [437] = 189, + [438] = 229, + [439] = 230, + [440] = 195, + [441] = 233, + [442] = 215, + [443] = 234, + [444] = 235, + [445] = 219, + [446] = 223, + [447] = 224, + [448] = 236, + [449] = 237, + [450] = 229, + [451] = 230, + [452] = 240, + [453] = 241, + [454] = 242, + [455] = 238, + [456] = 246, + [457] = 247, + [458] = 248, + [459] = 239, + [460] = 240, + [461] = 213, + [462] = 462, + [463] = 253, + [464] = 256, + [465] = 258, + [466] = 259, + [467] = 264, + [468] = 265, + [469] = 217, + [470] = 220, + [471] = 222, + [472] = 202, + [473] = 203, + [474] = 210, + [475] = 214, + [476] = 203, + [477] = 270, + [478] = 241, + [479] = 242, + [480] = 206, + [481] = 245, + [482] = 261, + [483] = 268, + [484] = 195, + [485] = 202, + [486] = 207, + [487] = 207, + [488] = 210, + [489] = 221, + [490] = 246, + [491] = 190, + [492] = 191, + [493] = 193, + [494] = 194, + [495] = 198, + [496] = 200, + [497] = 221, + [498] = 247, + [499] = 216, + [500] = 225, + [501] = 248, + [502] = 233, + [503] = 234, + [504] = 235, + [505] = 236, + [506] = 237, + [507] = 238, + [508] = 239, + [509] = 250, + [510] = 255, + [511] = 254, + [512] = 257, + [513] = 213, + [514] = 228, + [515] = 231, + [516] = 208, + [517] = 232, + [518] = 227, + [519] = 190, + [520] = 243, + [521] = 189, + [522] = 212, + [523] = 266, + [524] = 191, + [525] = 253, + [526] = 206, + [527] = 214, + [528] = 232, + [529] = 192, + [530] = 256, + [531] = 257, + [532] = 228, + [533] = 231, + [534] = 250, + [535] = 251, + [536] = 255, + [537] = 260, + [538] = 538, + [539] = 258, + [540] = 259, + [541] = 260, + [542] = 214, + [543] = 262, + [544] = 251, + [545] = 213, [546] = 196, - [547] = 216, - [548] = 247, - [549] = 218, - [550] = 194, - [551] = 197, - [552] = 196, - [553] = 194, - [554] = 216, - [555] = 206, - [556] = 200, - [557] = 199, - [558] = 221, - [559] = 201, - [560] = 235, - [561] = 236, - [562] = 222, - [563] = 223, - [564] = 248, - [565] = 237, - [566] = 238, - [567] = 239, - [568] = 250, - [569] = 204, - [570] = 205, - [571] = 244, - [572] = 207, - [573] = 209, - [574] = 210, - [575] = 211, - [576] = 212, - [577] = 202, - [578] = 253, - [579] = 215, - [580] = 251, - [581] = 249, - [582] = 225, - [583] = 242, - [584] = 241, - [585] = 240, - [586] = 222, - [587] = 223, - [588] = 245, - [589] = 204, - [590] = 213, - [591] = 205, - [592] = 207, - [593] = 246, - [594] = 209, - [595] = 221, - [596] = 247, - [597] = 248, - [598] = 198, - [599] = 210, - [600] = 211, - [601] = 229, - [602] = 230, - [603] = 206, - [604] = 244, - [605] = 231, - [606] = 195, - [607] = 252, - [608] = 250, - [609] = 228, - [610] = 249, - [611] = 221, - [612] = 245, - [613] = 225, - [614] = 211, - [615] = 210, - [616] = 209, - [617] = 207, - [618] = 205, - [619] = 222, - [620] = 223, - [621] = 225, - [622] = 239, - [623] = 238, - [624] = 237, - [625] = 202, - [626] = 253, - [627] = 204, - [628] = 252, - [629] = 251, - [630] = 232, - [631] = 194, - [632] = 228, - [633] = 196, - [634] = 197, - [635] = 230, - [636] = 229, - [637] = 198, - [638] = 251, - [639] = 234, - [640] = 249, - [641] = 195, - [642] = 230, - [643] = 252, - [644] = 235, - [645] = 253, - [646] = 202, - [647] = 236, - [648] = 231, - [649] = 248, - [650] = 247, - [651] = 234, - [652] = 233, - [653] = 208, - [654] = 232, - [655] = 232, - [656] = 213, - [657] = 216, - [658] = 206, - [659] = 235, - [660] = 246, - [661] = 233, - [662] = 236, - [663] = 239, - [664] = 238, - [665] = 665, - [666] = 666, - [667] = 667, - [668] = 666, - [669] = 667, - [670] = 667, - [671] = 667, - [672] = 666, - [673] = 666, - [674] = 674, - [675] = 666, - [676] = 666, - [677] = 667, - [678] = 665, - [679] = 667, - [680] = 666, - [681] = 681, - [682] = 667, - [683] = 665, - [684] = 684, - [685] = 685, - [686] = 686, - [687] = 103, - [688] = 102, - [689] = 689, - [690] = 689, - [691] = 689, - [692] = 689, - [693] = 689, - [694] = 689, - [695] = 689, - [696] = 107, - [697] = 112, - [698] = 108, - [699] = 138, - [700] = 144, - [701] = 123, - [702] = 122, - [703] = 121, - [704] = 140, - [705] = 120, - [706] = 119, - [707] = 118, - [708] = 159, - [709] = 117, - [710] = 174, - [711] = 116, - [712] = 115, - [713] = 149, - [714] = 686, - [715] = 150, - [716] = 176, - [717] = 161, - [718] = 142, - [719] = 178, - [720] = 137, - [721] = 190, - [722] = 126, + [547] = 198, + [548] = 264, + [549] = 265, + [550] = 208, + [551] = 232, + [552] = 270, + [553] = 227, + [554] = 190, + [555] = 191, + [556] = 192, + [557] = 193, + [558] = 194, + [559] = 212, + [560] = 196, + [561] = 198, + [562] = 199, + [563] = 200, + [564] = 201, + [565] = 243, + [566] = 189, + [567] = 212, + [568] = 199, + [569] = 205, + [570] = 217, + [571] = 220, + [572] = 193, + [573] = 194, + [574] = 222, + [575] = 188, + [576] = 215, + [577] = 216, + [578] = 250, + [579] = 251, + [580] = 219, + [581] = 223, + [582] = 224, + [583] = 225, + [584] = 205, + [585] = 203, + [586] = 210, + [587] = 229, + [588] = 230, + [589] = 589, + [590] = 233, + [591] = 234, + [592] = 235, + [593] = 236, + [594] = 237, + [595] = 238, + [596] = 239, + [597] = 208, + [598] = 241, + [599] = 242, + [600] = 600, + [601] = 217, + [602] = 246, + [603] = 247, + [604] = 248, + [605] = 228, + [606] = 231, + [607] = 220, + [608] = 222, + [609] = 201, + [610] = 253, + [611] = 254, + [612] = 188, + [613] = 256, + [614] = 257, + [615] = 258, + [616] = 259, + [617] = 227, + [618] = 245, + [619] = 261, + [620] = 264, + [621] = 265, + [622] = 254, + [623] = 623, + [624] = 624, + [625] = 625, + [626] = 626, + [627] = 625, + [628] = 626, + [629] = 629, + [630] = 630, + [631] = 630, + [632] = 626, + [633] = 625, + [634] = 629, + [635] = 629, + [636] = 630, + [637] = 637, + [638] = 638, + [639] = 639, + [640] = 640, + [641] = 641, + [642] = 642, + [643] = 643, + [644] = 643, + [645] = 643, + [646] = 646, + [647] = 646, + [648] = 646, + [649] = 643, + [650] = 650, + [651] = 641, + [652] = 646, + [653] = 643, + [654] = 643, + [655] = 646, + [656] = 643, + [657] = 646, + [658] = 646, + [659] = 646, + [660] = 643, + [661] = 646, + [662] = 643, + [663] = 136, + [664] = 646, + [665] = 643, + [666] = 135, + [667] = 641, + [668] = 668, + [669] = 144, + [670] = 131, + [671] = 141, + [672] = 140, + [673] = 130, + [674] = 164, + [675] = 165, + [676] = 178, + [677] = 149, + [678] = 174, + [679] = 172, + [680] = 181, + [681] = 167, + [682] = 148, + [683] = 152, + [684] = 173, + [685] = 161, + [686] = 187, + [687] = 171, + [688] = 147, + [689] = 175, + [690] = 185, + [691] = 186, + [692] = 151, + [693] = 163, + [694] = 642, + [695] = 166, + [696] = 153, + [697] = 176, + [698] = 154, + [699] = 177, + [700] = 155, + [701] = 156, + [702] = 179, + [703] = 157, + [704] = 160, + [705] = 168, + [706] = 158, + [707] = 182, + [708] = 183, + [709] = 159, + [710] = 162, + [711] = 640, + [712] = 184, + [713] = 639, + [714] = 714, + [715] = 714, + [716] = 716, + [717] = 716, + [718] = 716, + [719] = 716, + [720] = 716, + [721] = 716, + [722] = 716, [723] = 723, - [724] = 153, - [725] = 113, - [726] = 130, - [727] = 131, - [728] = 132, - [729] = 181, - [730] = 133, - [731] = 127, - [732] = 134, - [733] = 163, - [734] = 129, - [735] = 125, - [736] = 124, - [737] = 177, - [738] = 135, - [739] = 179, - [740] = 685, - [741] = 684, - [742] = 136, - [743] = 139, - [744] = 141, - [745] = 165, - [746] = 152, - [747] = 146, - [748] = 151, - [749] = 171, - [750] = 147, - [751] = 145, - [752] = 148, - [753] = 182, - [754] = 157, - [755] = 114, - [756] = 155, - [757] = 158, - [758] = 156, - [759] = 162, - [760] = 160, - [761] = 183, - [762] = 143, - [763] = 184, - [764] = 169, - [765] = 164, - [766] = 166, - [767] = 723, - [768] = 167, - [769] = 168, - [770] = 172, - [771] = 173, - [772] = 180, - [773] = 186, - [774] = 175, - [775] = 128, - [776] = 192, - [777] = 191, - [778] = 189, - [779] = 188, - [780] = 185, - [781] = 170, - [782] = 187, - [783] = 783, - [784] = 784, - [785] = 784, - [786] = 784, - [787] = 784, - [788] = 788, - [789] = 788, - [790] = 788, - [791] = 791, - [792] = 791, - [793] = 793, - [794] = 791, - [795] = 791, - [796] = 796, + [724] = 723, + [725] = 723, + [726] = 723, + [727] = 723, + [728] = 723, + [729] = 723, + [730] = 730, + [731] = 731, + [732] = 731, + [733] = 733, + [734] = 733, + [735] = 733, + [736] = 731, + [737] = 737, + [738] = 738, + [739] = 213, + [740] = 262, + [741] = 741, + [742] = 742, + [743] = 742, + [744] = 742, + [745] = 742, + [746] = 746, + [747] = 746, + [748] = 742, + [749] = 742, + [750] = 746, + [751] = 751, + [752] = 752, + [753] = 753, + [754] = 754, + [755] = 755, + [756] = 756, + [757] = 757, + [758] = 758, + [759] = 759, + [760] = 760, + [761] = 760, + [762] = 760, + [763] = 763, + [764] = 760, + [765] = 763, + [766] = 766, + [767] = 766, + [768] = 766, + [769] = 769, + [770] = 766, + [771] = 769, + [772] = 772, + [773] = 769, + [774] = 769, + [775] = 772, + [776] = 766, + [777] = 763, + [778] = 769, + [779] = 772, + [780] = 766, + [781] = 769, + [782] = 769, + [783] = 766, + [784] = 766, + [785] = 769, + [786] = 766, + [787] = 769, + [788] = 769, + [789] = 766, + [790] = 766, + [791] = 769, + [792] = 769, + [793] = 769, + [794] = 766, + [795] = 766, + [796] = 772, [797] = 797, [798] = 798, - [799] = 793, - [800] = 793, + [799] = 799, + [800] = 800, [801] = 801, - [802] = 801, + [802] = 799, [803] = 803, - [804] = 804, - [805] = 796, - [806] = 801, + [804] = 798, + [805] = 803, + [806] = 806, [807] = 807, - [808] = 801, - [809] = 793, - [810] = 801, - [811] = 811, - [812] = 796, - [813] = 813, - [814] = 814, - [815] = 815, - [816] = 803, - [817] = 817, - [818] = 815, - [819] = 817, - [820] = 803, - [821] = 821, - [822] = 817, - [823] = 823, - [824] = 824, - [825] = 824, - [826] = 826, - [827] = 813, - [828] = 826, - [829] = 826, - [830] = 814, - [831] = 804, - [832] = 811, - [833] = 797, - [834] = 798, + [808] = 808, + [809] = 763, + [810] = 806, + [811] = 807, + [812] = 808, + [813] = 758, + [814] = 800, + [815] = 801, + [816] = 799, + [817] = 803, + [818] = 798, + [819] = 806, + [820] = 807, + [821] = 808, + [822] = 801, + [823] = 799, + [824] = 803, + [825] = 798, + [826] = 806, + [827] = 807, + [828] = 808, + [829] = 800, + [830] = 801, + [831] = 799, + [832] = 803, + [833] = 798, + [834] = 806, [835] = 807, - [836] = 836, - [837] = 154, - [838] = 838, - [839] = 839, - [840] = 838, - [841] = 838, - [842] = 838, - [843] = 839, - [844] = 839, - [845] = 839, - [846] = 838, - [847] = 838, - [848] = 838, - [849] = 849, - [850] = 850, - [851] = 851, - [852] = 852, - [853] = 853, - [854] = 854, - [855] = 855, - [856] = 856, - [857] = 857, - [858] = 858, - [859] = 854, - [860] = 860, - [861] = 861, - [862] = 862, - [863] = 863, - [864] = 864, - [865] = 865, - [866] = 866, - [867] = 867, - [868] = 858, - [869] = 869, - [870] = 853, - [871] = 858, - [872] = 872, - [873] = 858, - [874] = 860, - [875] = 854, - [876] = 852, - [877] = 108, - [878] = 861, - [879] = 852, - [880] = 112, - [881] = 860, - [882] = 866, - [883] = 152, - [884] = 146, - [885] = 866, - [886] = 886, - [887] = 854, - [888] = 852, - [889] = 860, - [890] = 890, - [891] = 872, - [892] = 850, - [893] = 893, - [894] = 894, - [895] = 853, - [896] = 896, - [897] = 897, - [898] = 890, - [899] = 207, - [900] = 863, - [901] = 154, - [902] = 864, - [903] = 865, - [904] = 861, - [905] = 180, - [906] = 854, - [907] = 872, - [908] = 908, - [909] = 867, - [910] = 869, - [911] = 850, - [912] = 893, - [913] = 186, - [914] = 894, - [915] = 137, - [916] = 916, - [917] = 849, - [918] = 897, - [919] = 919, - [920] = 853, - [921] = 897, - [922] = 860, - [923] = 923, - [924] = 924, - [925] = 924, - [926] = 852, - [927] = 927, - [928] = 894, - [929] = 916, - [930] = 930, - [931] = 849, - [932] = 221, - [933] = 863, - [934] = 853, - [935] = 864, - [936] = 923, - [937] = 865, - [938] = 886, - [939] = 129, - [940] = 886, - [941] = 893, - [942] = 850, - [943] = 225, - [944] = 125, - [945] = 866, - [946] = 867, - [947] = 869, - [948] = 849, - [949] = 924, - [950] = 923, - [951] = 886, + [836] = 808, + [837] = 800, + [838] = 801, + [839] = 799, + [840] = 803, + [841] = 798, + [842] = 806, + [843] = 807, + [844] = 808, + [845] = 800, + [846] = 800, + [847] = 797, + [848] = 797, + [849] = 797, + [850] = 797, + [851] = 801, + [852] = 758, + [853] = 759, + [854] = 763, + [855] = 763, + [856] = 757, + [857] = 756, + [858] = 754, + [859] = 755, + [860] = 752, + [861] = 751, + [862] = 754, + [863] = 753, + [864] = 758, + [865] = 759, + [866] = 752, + [867] = 753, + [868] = 756, + [869] = 757, + [870] = 755, + [871] = 751, + [872] = 759, + [873] = 763, + [874] = 874, + [875] = 752, + [876] = 874, + [877] = 874, + [878] = 874, + [879] = 751, + [880] = 756, + [881] = 874, + [882] = 757, + [883] = 874, + [884] = 874, + [885] = 874, + [886] = 874, + [887] = 874, + [888] = 874, + [889] = 874, + [890] = 874, + [891] = 874, + [892] = 874, + [893] = 755, + [894] = 874, + [895] = 754, + [896] = 874, + [897] = 753, + [898] = 759, + [899] = 899, + [900] = 900, + [901] = 899, + [902] = 902, + [903] = 902, + [904] = 902, + [905] = 902, + [906] = 902, + [907] = 902, + [908] = 902, + [909] = 902, + [910] = 902, + [911] = 902, + [912] = 902, + [913] = 902, + [914] = 759, + [915] = 915, + [916] = 915, + [917] = 917, + [918] = 763, + [919] = 915, + [920] = 915, + [921] = 921, + [922] = 922, + [923] = 921, + [924] = 922, + [925] = 921, + [926] = 922, + [927] = 922, + [928] = 921, + [929] = 922, + [930] = 921, + [931] = 922, + [932] = 921, + [933] = 922, + [934] = 921, + [935] = 935, + [936] = 936, + [937] = 763, + [938] = 938, + [939] = 939, + [940] = 940, + [941] = 941, + [942] = 942, + [943] = 943, + [944] = 944, + [945] = 945, + [946] = 946, + [947] = 947, + [948] = 763, + [949] = 949, + [950] = 950, + [951] = 951, [952] = 952, - [953] = 143, - [954] = 869, + [953] = 953, + [954] = 953, [955] = 955, [956] = 956, - [957] = 923, + [957] = 759, [958] = 958, - [959] = 154, - [960] = 872, - [961] = 867, - [962] = 865, - [963] = 924, - [964] = 864, - [965] = 890, - [966] = 966, - [967] = 923, - [968] = 863, - [969] = 897, - [970] = 970, - [971] = 971, + [959] = 763, + [960] = 763, + [961] = 763, + [962] = 139, + [963] = 759, + [964] = 135, + [965] = 138, + [966] = 136, + [967] = 967, + [968] = 967, + [969] = 967, + [970] = 967, + [971] = 967, [972] = 972, - [973] = 916, - [974] = 894, - [975] = 206, - [976] = 924, + [973] = 131, + [974] = 130, + [975] = 150, + [976] = 150, [977] = 977, - [978] = 893, - [979] = 239, - [980] = 238, - [981] = 237, - [982] = 861, - [983] = 916, - [984] = 236, - [985] = 235, + [978] = 978, + [979] = 141, + [980] = 980, + [981] = 981, + [982] = 982, + [983] = 983, + [984] = 251, + [985] = 985, [986] = 986, [987] = 987, [988] = 988, - [989] = 850, - [990] = 216, - [991] = 849, - [992] = 890, - [993] = 872, - [994] = 890, - [995] = 886, - [996] = 858, - [997] = 213, - [998] = 850, - [999] = 893, - [1000] = 195, - [1001] = 198, - [1002] = 894, - [1003] = 897, - [1004] = 201, - [1005] = 869, - [1006] = 867, - [1007] = 865, - [1008] = 864, - [1009] = 196, - [1010] = 194, - [1011] = 863, - [1012] = 854, - [1013] = 897, - [1014] = 204, - [1015] = 894, - [1016] = 205, - [1017] = 252, - [1018] = 209, - [1019] = 861, - [1020] = 893, - [1021] = 210, - [1022] = 211, + [989] = 989, + [990] = 990, + [991] = 991, + [992] = 992, + [993] = 176, + [994] = 994, + [995] = 980, + [996] = 996, + [997] = 997, + [998] = 998, + [999] = 999, + [1000] = 1000, + [1001] = 147, + [1002] = 1002, + [1003] = 255, + [1004] = 1004, + [1005] = 1005, + [1006] = 1006, + [1007] = 1007, + [1008] = 260, + [1009] = 1009, + [1010] = 1010, + [1011] = 221, + [1012] = 1012, + [1013] = 1013, + [1014] = 1014, + [1015] = 190, + [1016] = 191, + [1017] = 1017, + [1018] = 192, + [1019] = 174, + [1020] = 193, + [1021] = 194, + [1022] = 198, [1023] = 1023, - [1024] = 858, - [1025] = 872, - [1026] = 890, - [1027] = 228, - [1028] = 863, - [1029] = 864, - [1030] = 865, - [1031] = 867, - [1032] = 853, - [1033] = 869, - [1034] = 861, - [1035] = 231, - [1036] = 860, - [1037] = 916, - [1038] = 852, - [1039] = 233, - [1040] = 249, - [1041] = 866, - [1042] = 923, - [1043] = 1043, - [1044] = 924, - [1045] = 248, - [1046] = 866, - [1047] = 916, - [1048] = 247, - [1049] = 886, - [1050] = 1050, - [1051] = 246, - [1052] = 245, - [1053] = 849, - [1054] = 1054, - [1055] = 244, - [1056] = 243, + [1024] = 181, + [1025] = 200, + [1026] = 1026, + [1027] = 262, + [1028] = 1028, + [1029] = 216, + [1030] = 185, + [1031] = 225, + [1032] = 213, + [1033] = 1033, + [1034] = 229, + [1035] = 230, + [1036] = 233, + [1037] = 182, + [1038] = 234, + [1039] = 1039, + [1040] = 183, + [1041] = 235, + [1042] = 236, + [1043] = 237, + [1044] = 238, + [1045] = 239, + [1046] = 254, + [1047] = 228, + [1048] = 257, + [1049] = 258, + [1050] = 231, + [1051] = 259, + [1052] = 264, + [1053] = 265, + [1054] = 208, + [1055] = 232, + [1056] = 227, [1057] = 1057, - [1058] = 234, - [1059] = 1059, - [1060] = 1060, - [1061] = 1061, - [1062] = 1062, + [1058] = 243, + [1059] = 189, + [1060] = 212, + [1061] = 1033, + [1062] = 980, [1063] = 1063, - [1064] = 1063, - [1065] = 988, - [1066] = 129, - [1067] = 977, - [1068] = 239, - [1069] = 143, - [1070] = 988, - [1071] = 987, - [1072] = 972, - [1073] = 971, - [1074] = 955, - [1075] = 970, - [1076] = 986, - [1077] = 952, - [1078] = 238, - [1079] = 966, - [1080] = 958, - [1081] = 862, - [1082] = 143, - [1083] = 1043, - [1084] = 108, - [1085] = 112, - [1086] = 228, - [1087] = 1050, - [1088] = 231, - [1089] = 930, - [1090] = 233, - [1091] = 927, - [1092] = 896, - [1093] = 919, - [1094] = 908, - [1095] = 1023, - [1096] = 236, - [1097] = 235, - [1098] = 862, - [1099] = 851, - [1100] = 855, - [1101] = 1101, - [1102] = 216, - [1103] = 1043, - [1104] = 1054, - [1105] = 856, - [1106] = 152, - [1107] = 857, - [1108] = 1057, - [1109] = 1059, - [1110] = 1060, - [1111] = 211, - [1112] = 146, - [1113] = 1061, - [1114] = 234, - [1115] = 1050, - [1116] = 221, - [1117] = 252, - [1118] = 1062, - [1119] = 1101, - [1120] = 210, - [1121] = 221, - [1122] = 248, - [1123] = 247, - [1124] = 206, - [1125] = 228, - [1126] = 237, - [1127] = 246, - [1128] = 245, - [1129] = 244, - [1130] = 209, - [1131] = 243, - [1132] = 243, - [1133] = 956, - [1134] = 955, - [1135] = 244, - [1136] = 245, - [1137] = 1101, - [1138] = 207, - [1139] = 125, - [1140] = 129, - [1141] = 108, - [1142] = 952, - [1143] = 857, - [1144] = 856, - [1145] = 180, - [1146] = 246, - [1147] = 855, - [1148] = 247, - [1149] = 137, - [1150] = 956, - [1151] = 896, - [1152] = 927, - [1153] = 112, - [1154] = 851, - [1155] = 1023, - [1156] = 930, - [1157] = 248, - [1158] = 908, - [1159] = 919, - [1160] = 137, - [1161] = 205, - [1162] = 958, - [1163] = 966, - [1164] = 970, - [1165] = 971, - [1166] = 186, - [1167] = 972, - [1168] = 1101, - [1169] = 1101, - [1170] = 1101, - [1171] = 201, - [1172] = 204, - [1173] = 231, - [1174] = 1101, - [1175] = 225, - [1176] = 977, - [1177] = 233, - [1178] = 234, - [1179] = 986, - [1180] = 249, - [1181] = 239, - [1182] = 252, - [1183] = 194, - [1184] = 987, - [1185] = 125, - [1186] = 196, - [1187] = 213, - [1188] = 249, - [1189] = 180, - [1190] = 237, - [1191] = 1054, - [1192] = 236, - [1193] = 1057, - [1194] = 206, - [1195] = 235, - [1196] = 186, - [1197] = 195, - [1198] = 216, - [1199] = 1059, - [1200] = 213, - [1201] = 1060, - [1202] = 195, - [1203] = 198, - [1204] = 238, - [1205] = 201, - [1206] = 196, - [1207] = 198, - [1208] = 1061, - [1209] = 1062, - [1210] = 211, - [1211] = 194, - [1212] = 210, - [1213] = 225, - [1214] = 152, - [1215] = 146, - [1216] = 204, - [1217] = 205, - [1218] = 207, - [1219] = 209, - [1220] = 1220, - [1221] = 1220, - [1222] = 1220, - [1223] = 1220, - [1224] = 1224, - [1225] = 817, - [1226] = 817, - [1227] = 817, - [1228] = 1228, - [1229] = 1229, - [1230] = 1230, - [1231] = 1224, - [1232] = 1224, - [1233] = 1233, - [1234] = 1233, - [1235] = 1233, - [1236] = 1236, - [1237] = 1233, - [1238] = 1233, - [1239] = 1233, - [1240] = 1240, - [1241] = 1241, - [1242] = 1233, - [1243] = 1233, - [1244] = 1233, - [1245] = 1233, - [1246] = 1246, - [1247] = 1247, - [1248] = 1246, - [1249] = 1247, - [1250] = 1247, - [1251] = 1246, - [1252] = 1252, - [1253] = 1247, - [1254] = 684, - [1255] = 1252, - [1256] = 1256, - [1257] = 1247, - [1258] = 1247, - [1259] = 1252, - [1260] = 1252, - [1261] = 1246, - [1262] = 1262, - [1263] = 1247, - [1264] = 1252, - [1265] = 1252, - [1266] = 686, - [1267] = 1252, - [1268] = 1268, - [1269] = 1269, - [1270] = 1270, - [1271] = 1271, - [1272] = 1272, - [1273] = 1273, - [1274] = 1274, - [1275] = 1275, - [1276] = 1276, - [1277] = 1277, - [1278] = 1269, - [1279] = 798, - [1280] = 1280, - [1281] = 811, - [1282] = 807, - [1283] = 1283, - [1284] = 1224, - [1285] = 1285, - [1286] = 1286, - [1287] = 797, - [1288] = 804, - [1289] = 1268, - [1290] = 1290, - [1291] = 1291, - [1292] = 814, - [1293] = 1272, - [1294] = 1294, - [1295] = 1295, - [1296] = 1296, - [1297] = 813, - [1298] = 1298, - [1299] = 1299, - [1300] = 1300, - [1301] = 1301, - [1302] = 1302, - [1303] = 1303, - [1304] = 1271, - [1305] = 1305, - [1306] = 1306, + [1064] = 1033, + [1065] = 980, + [1066] = 980, + [1067] = 1033, + [1068] = 175, + [1069] = 980, + [1070] = 178, + [1071] = 980, + [1072] = 206, + [1073] = 214, + [1074] = 266, + [1075] = 1075, + [1076] = 1076, + [1077] = 250, + [1078] = 268, + [1079] = 1079, + [1080] = 195, + [1081] = 202, + [1082] = 184, + [1083] = 138, + [1084] = 1084, + [1085] = 136, + [1086] = 135, + [1087] = 139, + [1088] = 136, + [1089] = 138, + [1090] = 135, + [1091] = 139, + [1092] = 307, + [1093] = 1093, + [1094] = 1094, + [1095] = 307, + [1096] = 307, + [1097] = 1094, + [1098] = 1094, + [1099] = 150, + [1100] = 1100, + [1101] = 150, + [1102] = 1102, + [1103] = 131, + [1104] = 1100, + [1105] = 131, + [1106] = 141, + [1107] = 150, + [1108] = 1100, + [1109] = 150, + [1110] = 1100, + [1111] = 1100, + [1112] = 1100, + [1113] = 1100, + [1114] = 130, + [1115] = 141, + [1116] = 130, + [1117] = 225, + [1118] = 1039, + [1119] = 985, + [1120] = 986, + [1121] = 987, + [1122] = 260, + [1123] = 190, + [1124] = 191, + [1125] = 988, + [1126] = 193, + [1127] = 194, + [1128] = 990, + [1129] = 147, + [1130] = 175, + [1131] = 991, + [1132] = 992, + [1133] = 200, + [1134] = 994, + [1135] = 996, + [1136] = 997, + [1137] = 998, + [1138] = 182, + [1139] = 183, + [1140] = 184, + [1141] = 999, + [1142] = 1000, + [1143] = 1005, + [1144] = 1006, + [1145] = 1007, + [1146] = 1010, + [1147] = 1013, + [1148] = 1017, + [1149] = 216, + [1150] = 1150, + [1151] = 178, + [1152] = 221, + [1153] = 1075, + [1154] = 1076, + [1155] = 190, + [1156] = 191, + [1157] = 192, + [1158] = 193, + [1159] = 194, + [1160] = 198, + [1161] = 200, + [1162] = 233, + [1163] = 216, + [1164] = 225, + [1165] = 234, + [1166] = 235, + [1167] = 229, + [1168] = 230, + [1169] = 236, + [1170] = 233, + [1171] = 237, + [1172] = 238, + [1173] = 234, + [1174] = 235, + [1175] = 236, + [1176] = 237, + [1177] = 238, + [1178] = 239, + [1179] = 239, + [1180] = 228, + [1181] = 231, + [1182] = 254, + [1183] = 257, + [1184] = 176, + [1185] = 258, + [1186] = 259, + [1187] = 264, + [1188] = 265, + [1189] = 208, + [1190] = 232, + [1191] = 227, + [1192] = 255, + [1193] = 243, + [1194] = 189, + [1195] = 212, + [1196] = 250, + [1197] = 251, + [1198] = 266, + [1199] = 268, + [1200] = 195, + [1201] = 202, + [1202] = 206, + [1203] = 255, + [1204] = 260, + [1205] = 214, + [1206] = 147, + [1207] = 175, + [1208] = 1079, + [1209] = 182, + [1210] = 183, + [1211] = 184, + [1212] = 981, + [1213] = 254, + [1214] = 178, + [1215] = 982, + [1216] = 257, + [1217] = 176, + [1218] = 983, + [1219] = 174, + [1220] = 181, + [1221] = 208, + [1222] = 232, + [1223] = 262, + [1224] = 185, + [1225] = 213, + [1226] = 227, + [1227] = 1039, + [1228] = 243, + [1229] = 189, + [1230] = 212, + [1231] = 1075, + [1232] = 174, + [1233] = 181, + [1234] = 1234, + [1235] = 1076, + [1236] = 1150, + [1237] = 1079, + [1238] = 262, + [1239] = 266, + [1240] = 981, + [1241] = 206, + [1242] = 185, + [1243] = 213, + [1244] = 214, + [1245] = 982, + [1246] = 983, + [1247] = 192, + [1248] = 1150, + [1249] = 985, + [1250] = 986, + [1251] = 987, + [1252] = 229, + [1253] = 230, + [1254] = 988, + [1255] = 990, + [1256] = 991, + [1257] = 992, + [1258] = 994, + [1259] = 996, + [1260] = 997, + [1261] = 998, + [1262] = 989, + [1263] = 999, + [1264] = 250, + [1265] = 1002, + [1266] = 1004, + [1267] = 1009, + [1268] = 1012, + [1269] = 1000, + [1270] = 1014, + [1271] = 1026, + [1272] = 1028, + [1273] = 251, + [1274] = 1057, + [1275] = 1063, + [1276] = 1005, + [1277] = 1006, + [1278] = 1150, + [1279] = 1007, + [1280] = 258, + [1281] = 259, + [1282] = 1010, + [1283] = 228, + [1284] = 264, + [1285] = 265, + [1286] = 1057, + [1287] = 231, + [1288] = 1063, + [1289] = 1013, + [1290] = 1017, + [1291] = 268, + [1292] = 195, + [1293] = 202, + [1294] = 989, + [1295] = 1002, + [1296] = 1004, + [1297] = 1009, + [1298] = 1012, + [1299] = 1014, + [1300] = 1026, + [1301] = 221, + [1302] = 1028, + [1303] = 198, + [1304] = 1304, + [1305] = 639, + [1306] = 640, [1307] = 1307, [1308] = 1308, [1309] = 1309, @@ -5517,40 +6916,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1313] = 1313, [1314] = 1314, [1315] = 1315, - [1316] = 1316, - [1317] = 1317, + [1316] = 1311, + [1317] = 1310, [1318] = 1318, - [1319] = 1319, + [1319] = 1309, [1320] = 1320, [1321] = 1321, - [1322] = 1322, - [1323] = 1323, - [1324] = 1324, - [1325] = 1325, - [1326] = 1326, - [1327] = 1327, - [1328] = 1328, - [1329] = 1329, - [1330] = 1330, + [1322] = 1313, + [1323] = 1314, + [1324] = 1321, + [1325] = 1308, + [1326] = 1321, + [1327] = 1313, + [1328] = 1313, + [1329] = 1312, + [1330] = 131, [1331] = 1331, [1332] = 1332, - [1333] = 1333, - [1334] = 1334, - [1335] = 1335, - [1336] = 1336, - [1337] = 1337, - [1338] = 1300, - [1339] = 1339, + [1333] = 754, + [1334] = 753, + [1335] = 752, + [1336] = 751, + [1337] = 756, + [1338] = 757, + [1339] = 755, [1340] = 1340, [1341] = 1341, - [1342] = 1342, + [1342] = 1321, [1343] = 1343, [1344] = 1344, [1345] = 1345, - [1346] = 1346, - [1347] = 1347, - [1348] = 1348, - [1349] = 1349, + [1346] = 1345, + [1347] = 1318, + [1348] = 1341, + [1349] = 130, [1350] = 1350, [1351] = 1351, [1352] = 1352, @@ -5559,3918 +6958,8139 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1355] = 1355, [1356] = 1356, [1357] = 1357, - [1358] = 1358, + [1358] = 307, [1359] = 1359, [1360] = 1360, - [1361] = 1361, - [1362] = 1224, - [1363] = 1224, - [1364] = 1270, + [1361] = 307, + [1362] = 1362, + [1363] = 1363, + [1364] = 1364, [1365] = 1365, [1366] = 1366, - [1367] = 1305, - [1368] = 1301, - [1369] = 1280, - [1370] = 1366, - [1371] = 1366, - [1372] = 1224, - [1373] = 1366, - [1374] = 1366, - [1375] = 1366, - [1376] = 1295, - [1377] = 1309, - [1378] = 1290, + [1367] = 1367, + [1368] = 1368, + [1369] = 1369, + [1370] = 1370, + [1371] = 1371, + [1372] = 1372, + [1373] = 307, + [1374] = 1374, + [1375] = 1375, + [1376] = 1376, + [1377] = 1377, + [1378] = 1378, [1379] = 1379, - [1380] = 1286, - [1381] = 1366, - [1382] = 1230, - [1383] = 1269, - [1384] = 1290, - [1385] = 1305, - [1386] = 1276, - [1387] = 1275, + [1380] = 1380, + [1381] = 1381, + [1382] = 1382, + [1383] = 1383, + [1384] = 1384, + [1385] = 1385, + [1386] = 1386, + [1387] = 1387, [1388] = 1388, - [1389] = 1295, - [1390] = 1388, - [1391] = 1274, - [1392] = 1283, - [1393] = 1309, + [1389] = 1389, + [1390] = 1390, + [1391] = 1391, + [1392] = 1392, + [1393] = 1393, [1394] = 1394, - [1395] = 1394, - [1396] = 1301, - [1397] = 1277, - [1398] = 1286, + [1395] = 1395, + [1396] = 1396, + [1397] = 1397, + [1398] = 1398, [1399] = 1399, [1400] = 1400, - [1401] = 1296, + [1401] = 1401, [1402] = 1402, - [1403] = 1402, - [1404] = 1402, - [1405] = 1400, - [1406] = 1307, - [1407] = 1400, - [1408] = 1399, - [1409] = 1399, - [1410] = 1358, - [1411] = 1332, - [1412] = 1331, - [1413] = 1326, - [1414] = 1228, - [1415] = 1229, - [1416] = 1330, - [1417] = 1327, - [1418] = 1324, - [1419] = 1346, - [1420] = 1341, - [1421] = 1339, - [1422] = 1337, - [1423] = 1353, - [1424] = 1230, - [1425] = 1351, - [1426] = 1349, - [1427] = 1340, - [1428] = 1325, - [1429] = 1313, - [1430] = 1347, - [1431] = 1315, - [1432] = 1317, - [1433] = 1342, - [1434] = 1320, - [1435] = 1348, - [1436] = 1359, - [1437] = 1350, - [1438] = 1345, - [1439] = 1319, - [1440] = 1343, - [1441] = 1356, - [1442] = 1360, - [1443] = 1311, - [1444] = 1323, - [1445] = 1316, - [1446] = 1322, - [1447] = 1321, - [1448] = 1314, - [1449] = 1333, - [1450] = 1334, - [1451] = 1336, - [1452] = 1312, - [1453] = 1335, - [1454] = 1357, - [1455] = 1344, - [1456] = 1354, - [1457] = 1310, - [1458] = 1328, - [1459] = 1355, - [1460] = 1329, - [1461] = 1352, - [1462] = 684, - [1463] = 1463, - [1464] = 686, - [1465] = 1300, - [1466] = 1308, - [1467] = 1467, - [1468] = 1388, - [1469] = 1299, - [1470] = 1228, - [1471] = 1394, - [1472] = 1229, - [1473] = 1394, - [1474] = 1474, - [1475] = 803, + [1403] = 1403, + [1404] = 1404, + [1405] = 1405, + [1406] = 1406, + [1407] = 1407, + [1408] = 1408, + [1409] = 1409, + [1410] = 1410, + [1411] = 1411, + [1412] = 1412, + [1413] = 1413, + [1414] = 1414, + [1415] = 1415, + [1416] = 1416, + [1417] = 1417, + [1418] = 1418, + [1419] = 1419, + [1420] = 1420, + [1421] = 1421, + [1422] = 1422, + [1423] = 1423, + [1424] = 1424, + [1425] = 1425, + [1426] = 1426, + [1427] = 1427, + [1428] = 1428, + [1429] = 1429, + [1430] = 1430, + [1431] = 1431, + [1432] = 1432, + [1433] = 1433, + [1434] = 1234, + [1435] = 1435, + [1436] = 1436, + [1437] = 754, + [1438] = 1438, + [1439] = 1439, + [1440] = 1440, + [1441] = 753, + [1442] = 1442, + [1443] = 756, + [1444] = 757, + [1445] = 755, + [1446] = 752, + [1447] = 1447, + [1448] = 1448, + [1449] = 1449, + [1450] = 1450, + [1451] = 751, + [1452] = 1433, + [1453] = 1453, + [1454] = 1454, + [1455] = 1455, + [1456] = 1455, + [1457] = 1457, + [1458] = 1455, + [1459] = 1455, + [1460] = 1457, + [1461] = 1457, + [1462] = 1356, + [1463] = 1093, + [1464] = 1455, + [1465] = 1457, + [1466] = 1455, + [1467] = 1350, + [1468] = 1455, + [1469] = 917, + [1470] = 1084, + [1471] = 956, + [1472] = 1472, + [1473] = 1473, + [1474] = 1473, + [1475] = 1473, [1476] = 1476, - [1477] = 1477, - [1478] = 1388, - [1479] = 817, - [1480] = 1480, - [1481] = 803, - [1482] = 1467, - [1483] = 1274, - [1484] = 803, - [1485] = 1275, - [1486] = 1467, - [1487] = 1277, - [1488] = 1488, - [1489] = 1467, - [1490] = 1276, - [1491] = 803, + [1477] = 1473, + [1478] = 1478, + [1479] = 1473, + [1480] = 1476, + [1481] = 1476, + [1482] = 1482, + [1483] = 1476, + [1484] = 1473, + [1485] = 1473, + [1486] = 1420, + [1487] = 1487, + [1488] = 1476, + [1489] = 1476, + [1490] = 1476, + [1491] = 1491, [1492] = 1492, - [1493] = 817, - [1494] = 684, - [1495] = 686, - [1496] = 1477, - [1497] = 817, - [1498] = 1476, - [1499] = 1499, - [1500] = 1500, - [1501] = 1308, - [1502] = 1299, - [1503] = 1280, + [1493] = 1493, + [1494] = 1494, + [1495] = 1307, + [1496] = 1492, + [1497] = 1497, + [1498] = 1497, + [1499] = 1427, + [1500] = 1494, + [1501] = 1501, + [1502] = 1502, + [1503] = 1493, [1504] = 1504, - [1505] = 1505, - [1506] = 1506, - [1507] = 1507, - [1508] = 1508, - [1509] = 1509, + [1505] = 1426, + [1506] = 1494, + [1507] = 1492, + [1508] = 1304, + [1509] = 1494, [1510] = 1510, - [1511] = 1511, - [1512] = 1508, - [1513] = 1505, - [1514] = 1508, - [1515] = 1515, - [1516] = 1516, - [1517] = 1515, - [1518] = 1518, - [1519] = 1516, - [1520] = 1520, - [1521] = 1508, - [1522] = 1522, - [1523] = 1506, - [1524] = 1524, - [1525] = 1525, - [1526] = 1526, - [1527] = 1508, - [1528] = 1528, - [1529] = 1529, - [1530] = 1530, - [1531] = 1530, - [1532] = 1530, - [1533] = 1530, - [1534] = 1510, - [1535] = 1529, - [1536] = 1536, - [1537] = 1529, - [1538] = 1520, - [1539] = 1530, - [1540] = 1529, - [1541] = 1529, - [1542] = 1522, + [1511] = 1497, + [1512] = 1501, + [1513] = 1502, + [1514] = 1493, + [1515] = 1504, + [1516] = 1492, + [1517] = 1494, + [1518] = 1497, + [1519] = 1501, + [1520] = 1502, + [1521] = 1497, + [1522] = 1493, + [1523] = 1504, + [1524] = 1429, + [1525] = 1494, + [1526] = 1501, + [1527] = 1497, + [1528] = 1501, + [1529] = 1502, + [1530] = 1493, + [1531] = 1504, + [1532] = 1502, + [1533] = 1494, + [1534] = 1497, + [1535] = 1501, + [1536] = 1494, + [1537] = 1502, + [1538] = 1497, + [1539] = 1493, + [1540] = 1504, + [1541] = 1308, + [1542] = 1493, [1543] = 1543, - [1544] = 1536, - [1545] = 1545, - [1546] = 1520, - [1547] = 1522, - [1548] = 1510, - [1549] = 1549, - [1550] = 1549, - [1551] = 1549, - [1552] = 1549, - [1553] = 1549, - [1554] = 1549, - [1555] = 1555, + [1544] = 1492, + [1545] = 1504, + [1546] = 1492, + [1547] = 1494, + [1548] = 1428, + [1549] = 1430, + [1550] = 1550, + [1551] = 1551, + [1552] = 1497, + [1553] = 1501, + [1554] = 1502, + [1555] = 1504, [1556] = 1556, - [1557] = 1556, + [1557] = 1557, [1558] = 1558, [1559] = 1559, - [1560] = 1560, - [1561] = 1555, - [1562] = 1560, + [1560] = 1559, + [1561] = 1561, + [1562] = 1559, [1563] = 1559, [1564] = 1564, - [1565] = 1565, - [1566] = 1555, - [1567] = 1556, + [1565] = 1564, + [1566] = 1564, + [1567] = 1567, [1568] = 1568, - [1569] = 1559, - [1570] = 1565, - [1571] = 1571, - [1572] = 1556, - [1573] = 1556, - [1574] = 1555, - [1575] = 1560, - [1576] = 1559, - [1577] = 1555, - [1578] = 1559, - [1579] = 1555, - [1580] = 1559, - [1581] = 1556, - [1582] = 1555, - [1583] = 1559, - [1584] = 1584, + [1569] = 1569, + [1570] = 1570, + [1571] = 1564, + [1572] = 1572, + [1573] = 1559, + [1574] = 1574, + [1575] = 1575, + [1576] = 1564, + [1577] = 1559, + [1578] = 1578, + [1579] = 1579, + [1580] = 1564, + [1581] = 1581, + [1582] = 1582, + [1583] = 1448, + [1584] = 1491, [1585] = 1585, - [1586] = 1586, + [1586] = 1439, [1587] = 1587, [1588] = 1588, - [1589] = 1589, + [1589] = 1436, [1590] = 1590, - [1591] = 1589, - [1592] = 1592, - [1593] = 1593, + [1591] = 1582, + [1592] = 1435, + [1593] = 955, [1594] = 1594, - [1595] = 1595, - [1596] = 1596, - [1597] = 1584, - [1598] = 1598, - [1599] = 1599, - [1600] = 1590, - [1601] = 1589, - [1602] = 1602, + [1595] = 1594, + [1596] = 1442, + [1597] = 1453, + [1598] = 1582, + [1599] = 1438, + [1600] = 1454, + [1601] = 1594, + [1602] = 1582, [1603] = 1603, - [1604] = 1604, - [1605] = 1595, - [1606] = 1606, - [1607] = 1590, - [1608] = 1592, - [1609] = 1589, - [1610] = 1589, - [1611] = 1611, - [1612] = 1612, - [1613] = 1613, - [1614] = 1587, - [1615] = 1588, - [1616] = 1596, - [1617] = 1592, - [1618] = 1585, - [1619] = 1592, - [1620] = 1589, - [1621] = 1602, - [1622] = 1589, - [1623] = 1589, - [1624] = 1590, - [1625] = 1593, - [1626] = 1594, - [1627] = 1604, - [1628] = 1585, - [1629] = 1593, - [1630] = 1595, - [1631] = 1594, - [1632] = 1604, - [1633] = 1590, - [1634] = 1595, - [1635] = 1589, - [1636] = 1612, - [1637] = 1589, - [1638] = 1602, - [1639] = 1590, - [1640] = 1611, - [1641] = 1585, - [1642] = 1612, - [1643] = 1613, - [1644] = 1644, - [1645] = 1588, - [1646] = 1611, - [1647] = 1584, - [1648] = 1590, - [1649] = 1590, - [1650] = 1595, - [1651] = 1604, - [1652] = 1593, - [1653] = 1589, - [1654] = 1589, - [1655] = 1584, - [1656] = 1596, - [1657] = 1590, - [1658] = 1584, - [1659] = 1611, - [1660] = 1612, - [1661] = 1661, - [1662] = 1611, - [1663] = 1594, - [1664] = 1592, - [1665] = 1613, - [1666] = 1604, - [1667] = 1585, - [1668] = 1590, - [1669] = 1612, - [1670] = 1613, - [1671] = 1593, - [1672] = 1594, - [1673] = 1588, - [1674] = 1587, - [1675] = 1613, - [1676] = 1586, - [1677] = 1587, - [1678] = 1613, - [1679] = 1612, - [1680] = 1587, - [1681] = 1588, - [1682] = 1589, - [1683] = 1603, - [1684] = 1611, - [1685] = 1585, - [1686] = 1598, - [1687] = 1584, - [1688] = 1590, - [1689] = 1596, - [1690] = 1596, - [1691] = 1595, - [1692] = 1594, - [1693] = 1693, - [1694] = 1593, - [1695] = 1604, - [1696] = 1592, - [1697] = 1595, - [1698] = 1596, - [1699] = 1587, - [1700] = 1588, - [1701] = 1596, - [1702] = 1603, - [1703] = 1592, - [1704] = 1590, - [1705] = 1590, - [1706] = 1598, - [1707] = 1707, - [1708] = 1708, - [1709] = 1709, - [1710] = 1710, - [1711] = 1711, - [1712] = 1711, + [1604] = 1594, + [1605] = 1605, + [1606] = 1594, + [1607] = 1399, + [1608] = 1594, + [1609] = 1449, + [1610] = 1450, + [1611] = 1431, + [1612] = 1482, + [1613] = 1432, + [1614] = 1440, + [1615] = 1590, + [1616] = 1447, + [1617] = 1590, + [1618] = 1618, + [1619] = 1594, + [1620] = 1620, + [1621] = 640, + [1622] = 1618, + [1623] = 1352, + [1624] = 1624, + [1625] = 1472, + [1626] = 1307, + [1627] = 1627, + [1628] = 639, + [1629] = 1351, + [1630] = 1304, + [1631] = 1421, + [1632] = 1353, + [1633] = 1551, + [1634] = 1634, + [1635] = 1558, + [1636] = 1575, + [1637] = 1351, + [1638] = 1353, + [1639] = 1352, + [1640] = 1307, + [1641] = 1491, + [1642] = 1304, + [1643] = 1643, + [1644] = 758, + [1645] = 1478, + [1646] = 1487, + [1647] = 1647, + [1648] = 1648, + [1649] = 1648, + [1650] = 1650, + [1651] = 1650, + [1652] = 1650, + [1653] = 1653, + [1654] = 1654, + [1655] = 1648, + [1656] = 1653, + [1657] = 1657, + [1658] = 1650, + [1659] = 1653, + [1660] = 1654, + [1661] = 1650, + [1662] = 1648, + [1663] = 1650, + [1664] = 1551, + [1665] = 1653, + [1666] = 1653, + [1667] = 1653, + [1668] = 1653, + [1669] = 1653, + [1670] = 1654, + [1671] = 1561, + [1672] = 1650, + [1673] = 1557, + [1674] = 1567, + [1675] = 1570, + [1676] = 1579, + [1677] = 1581, + [1678] = 1556, + [1679] = 1568, + [1680] = 1574, + [1681] = 1578, + [1682] = 1572, + [1683] = 1569, + [1684] = 1684, + [1685] = 1648, + [1686] = 1653, + [1687] = 1687, + [1688] = 1688, + [1689] = 1689, + [1690] = 1690, + [1691] = 1691, + [1692] = 1692, + [1693] = 1690, + [1694] = 1694, + [1695] = 1695, + [1696] = 1689, + [1697] = 1697, + [1698] = 1698, + [1699] = 1690, + [1700] = 1689, + [1701] = 1689, + [1702] = 1689, + [1703] = 1690, + [1704] = 1704, + [1705] = 1689, + [1706] = 1704, + [1707] = 1690, + [1708] = 1689, + [1709] = 1689, + [1710] = 1689, + [1711] = 1690, + [1712] = 1694, [1713] = 1713, - [1714] = 1708, + [1714] = 1689, [1715] = 1715, - [1716] = 1716, - [1717] = 1717, - [1718] = 1708, - [1719] = 1719, - [1720] = 1713, - [1721] = 1721, - [1722] = 1719, - [1723] = 1723, - [1724] = 1723, - [1725] = 1708, - [1726] = 1721, - [1727] = 1721, - [1728] = 1708, - [1729] = 1721, - [1730] = 1709, - [1731] = 1719, - [1732] = 1707, + [1716] = 759, + [1717] = 1690, + [1718] = 1690, + [1719] = 1690, + [1720] = 1694, + [1721] = 1605, + [1722] = 1704, + [1723] = 1690, + [1724] = 1689, + [1725] = 1690, + [1726] = 1726, + [1727] = 1689, + [1728] = 1690, + [1729] = 1689, + [1730] = 1730, + [1731] = 1731, + [1732] = 1690, [1733] = 1733, - [1734] = 1734, - [1735] = 1721, + [1734] = 1603, + [1735] = 1735, [1736] = 1736, - [1737] = 1716, + [1737] = 1737, [1738] = 1738, - [1739] = 1708, - [1740] = 1723, - [1741] = 1741, - [1742] = 1721, - [1743] = 1708, - [1744] = 1721, - [1745] = 1723, - [1746] = 1721, - [1747] = 1721, - [1748] = 1719, - [1749] = 1733, - [1750] = 1750, - [1751] = 1734, + [1739] = 1736, + [1740] = 1735, + [1741] = 1737, + [1742] = 1736, + [1743] = 1736, + [1744] = 1736, + [1745] = 1737, + [1746] = 1737, + [1747] = 1737, + [1748] = 1748, + [1749] = 1749, + [1750] = 1736, + [1751] = 1751, [1752] = 1752, - [1753] = 1738, - [1754] = 1721, - [1755] = 1723, - [1756] = 1719, - [1757] = 1721, - [1758] = 1721, - [1759] = 1759, - [1760] = 1738, - [1761] = 1721, - [1762] = 1723, - [1763] = 1719, - [1764] = 1713, - [1765] = 1765, + [1753] = 1736, + [1754] = 1551, + [1755] = 1737, + [1756] = 1756, + [1757] = 1757, + [1758] = 1758, + [1759] = 1735, + [1760] = 1760, + [1761] = 1575, + [1762] = 1736, + [1763] = 1736, + [1764] = 1737, + [1765] = 1558, [1766] = 1766, [1767] = 1767, - [1768] = 1768, - [1769] = 1769, + [1768] = 1737, + [1769] = 1736, [1770] = 1770, - [1771] = 1766, + [1771] = 1736, [1772] = 1772, - [1773] = 1773, - [1774] = 1774, - [1775] = 1775, + [1773] = 1737, + [1774] = 1737, + [1775] = 758, [1776] = 1776, - [1777] = 1777, - [1778] = 1778, - [1779] = 1765, - [1780] = 1780, - [1781] = 1781, - [1782] = 1782, - [1783] = 1775, + [1777] = 1735, + [1778] = 1737, + [1779] = 1735, + [1780] = 1735, + [1781] = 1736, + [1782] = 1737, + [1783] = 1783, [1784] = 1784, - [1785] = 1785, - [1786] = 1786, - [1787] = 1787, + [1785] = 1737, + [1786] = 1735, + [1787] = 1736, [1788] = 1788, - [1789] = 1785, - [1790] = 1775, - [1791] = 1787, - [1792] = 1782, + [1789] = 1789, + [1790] = 1790, + [1791] = 1791, + [1792] = 1792, [1793] = 1793, [1794] = 1794, - [1795] = 1781, - [1796] = 1765, - [1797] = 1777, - [1798] = 1776, + [1795] = 1795, + [1796] = 1796, + [1797] = 1797, + [1798] = 1798, [1799] = 1799, - [1800] = 1773, - [1801] = 1772, - [1802] = 1766, - [1803] = 1769, + [1800] = 1800, + [1801] = 1801, + [1802] = 1802, + [1803] = 1803, [1804] = 1804, - [1805] = 1788, - [1806] = 1787, + [1805] = 1805, + [1806] = 1806, [1807] = 1807, - [1808] = 1785, - [1809] = 1782, - [1810] = 1781, - [1811] = 1765, - [1812] = 1777, - [1813] = 1776, - [1814] = 1773, - [1815] = 1772, - [1816] = 1766, - [1817] = 1769, - [1818] = 1807, - [1819] = 1804, - [1820] = 1799, - [1821] = 1821, - [1822] = 1822, - [1823] = 1794, - [1824] = 1824, - [1825] = 1822, - [1826] = 1786, - [1827] = 1827, - [1828] = 1780, - [1829] = 1784, - [1830] = 1780, - [1831] = 1784, - [1832] = 1822, + [1808] = 1808, + [1809] = 1790, + [1810] = 1810, + [1811] = 1811, + [1812] = 1793, + [1813] = 1794, + [1814] = 1795, + [1815] = 1796, + [1816] = 1797, + [1817] = 1798, + [1818] = 1818, + [1819] = 1799, + [1820] = 1800, + [1821] = 1801, + [1822] = 1802, + [1823] = 1803, + [1824] = 1804, + [1825] = 1805, + [1826] = 1826, + [1827] = 1806, + [1828] = 1807, + [1829] = 1808, + [1830] = 1810, + [1831] = 1811, + [1832] = 1826, [1833] = 1833, - [1834] = 1794, - [1835] = 1769, - [1836] = 1767, - [1837] = 1780, - [1838] = 1766, - [1839] = 1772, - [1840] = 1774, - [1841] = 1784, - [1842] = 1785, - [1843] = 1799, - [1844] = 1773, - [1845] = 1827, - [1846] = 1788, - [1847] = 1804, - [1848] = 1776, - [1849] = 1794, - [1850] = 1807, + [1834] = 1834, + [1835] = 1835, + [1836] = 1836, + [1837] = 1837, + [1838] = 1838, + [1839] = 1839, + [1840] = 1840, + [1841] = 1841, + [1842] = 1835, + [1843] = 1837, + [1844] = 1844, + [1845] = 1838, + [1846] = 1846, + [1847] = 1844, + [1848] = 1826, + [1849] = 1833, + [1850] = 1834, [1851] = 1851, - [1852] = 1784, - [1853] = 1822, - [1854] = 1782, - [1855] = 1786, - [1856] = 1781, - [1857] = 1821, - [1858] = 1786, - [1859] = 1794, - [1860] = 1824, - [1861] = 1799, - [1862] = 1767, - [1863] = 1799, - [1864] = 1777, - [1865] = 1781, - [1866] = 1784, - [1867] = 1767, - [1868] = 1794, - [1869] = 1833, - [1870] = 1822, - [1871] = 1765, - [1872] = 1782, - [1873] = 1777, - [1874] = 1784, - [1875] = 1776, - [1876] = 1786, - [1877] = 1774, - [1878] = 1799, - [1879] = 1821, - [1880] = 1794, - [1881] = 1788, - [1882] = 1799, - [1883] = 1778, - [1884] = 1807, - [1885] = 1824, - [1886] = 1774, - [1887] = 1824, - [1888] = 1822, + [1852] = 1852, + [1853] = 1853, + [1854] = 1841, + [1855] = 1837, + [1856] = 1844, + [1857] = 1826, + [1858] = 1833, + [1859] = 1834, + [1860] = 1860, + [1861] = 1861, + [1862] = 1839, + [1863] = 1840, + [1864] = 1841, + [1865] = 1837, + [1866] = 1826, + [1867] = 1833, + [1868] = 1834, + [1869] = 1826, + [1870] = 1833, + [1871] = 1826, + [1872] = 1841, + [1873] = 759, + [1874] = 1826, + [1875] = 1826, + [1876] = 1826, + [1877] = 1834, + [1878] = 1861, + [1879] = 1851, + [1880] = 1861, + [1881] = 1861, + [1882] = 1861, + [1883] = 1861, + [1884] = 1861, + [1885] = 1861, + [1886] = 1861, + [1887] = 1861, + [1888] = 1826, [1889] = 1889, - [1890] = 1890, - [1891] = 1785, - [1892] = 1833, - [1893] = 1780, - [1894] = 1775, - [1895] = 1774, - [1896] = 1788, - [1897] = 1824, - [1898] = 1807, - [1899] = 1821, - [1900] = 1824, - [1901] = 1804, - [1902] = 1780, - [1903] = 1786, - [1904] = 1804, - [1905] = 1767, - [1906] = 1769, - [1907] = 1775, - [1908] = 1807, - [1909] = 1804, - [1910] = 1769, - [1911] = 1766, - [1912] = 1772, - [1913] = 1772, - [1914] = 1769, - [1915] = 1773, - [1916] = 1766, - [1917] = 1772, - [1918] = 1822, - [1919] = 1786, + [1890] = 1846, + [1891] = 1818, + [1892] = 1399, + [1893] = 1826, + [1894] = 1791, + [1895] = 1792, + [1896] = 1826, + [1897] = 1889, + [1898] = 1898, + [1899] = 1899, + [1900] = 1900, + [1901] = 1901, + [1902] = 1902, + [1903] = 1903, + [1904] = 1904, + [1905] = 1905, + [1906] = 1901, + [1907] = 1907, + [1908] = 1908, + [1909] = 1909, + [1910] = 1910, + [1911] = 1911, + [1912] = 1912, + [1913] = 1913, + [1914] = 1914, + [1915] = 1902, + [1916] = 1916, + [1917] = 1917, + [1918] = 1918, + [1919] = 1900, [1920] = 1920, - [1921] = 1774, - [1922] = 1775, - [1923] = 1807, - [1924] = 1776, - [1925] = 1773, - [1926] = 1776, - [1927] = 1777, - [1928] = 1765, - [1929] = 1775, - [1930] = 1781, - [1931] = 1788, - [1932] = 1920, - [1933] = 1824, - [1934] = 1782, - [1935] = 1785, - [1936] = 1773, - [1937] = 1780, - [1938] = 1804, - [1939] = 1777, - [1940] = 1765, - [1941] = 1781, - [1942] = 1787, - [1943] = 1782, - [1944] = 1785, - [1945] = 1788, - [1946] = 1946, - [1947] = 1947, - [1948] = 1948, - [1949] = 1949, - [1950] = 1228, - [1951] = 186, - [1952] = 1952, - [1953] = 1953, - [1954] = 1954, - [1955] = 797, - [1956] = 814, - [1957] = 180, - [1958] = 804, - [1959] = 152, - [1960] = 146, - [1961] = 813, - [1962] = 811, - [1963] = 798, - [1964] = 807, - [1965] = 140, - [1966] = 1966, - [1967] = 171, - [1968] = 1966, - [1969] = 1966, - [1970] = 1268, - [1971] = 1300, - [1972] = 1365, - [1973] = 1361, - [1974] = 811, - [1975] = 797, - [1976] = 814, - [1977] = 813, - [1978] = 804, - [1979] = 807, - [1980] = 798, - [1981] = 1309, - [1982] = 1953, - [1983] = 1301, - [1984] = 1286, - [1985] = 1985, - [1986] = 1954, - [1987] = 1295, - [1988] = 1305, - [1989] = 1952, - [1990] = 1290, - [1991] = 803, - [1992] = 1272, - [1993] = 803, - [1994] = 803, - [1995] = 817, - [1996] = 815, - [1997] = 1271, - [1998] = 815, - [1999] = 1268, - [2000] = 1306, - [2001] = 1302, - [2002] = 2002, - [2003] = 1294, - [2004] = 1300, - [2005] = 2005, - [2006] = 2006, - [2007] = 817, - [2008] = 1303, - [2009] = 1361, - [2010] = 817, - [2011] = 2011, - [2012] = 1365, - [2013] = 1291, - [2014] = 2014, - [2015] = 2015, - [2016] = 1283, - [2017] = 2017, - [2018] = 1268, - [2019] = 2019, - [2020] = 803, - [2021] = 1270, - [2022] = 1286, - [2023] = 2023, - [2024] = 2024, - [2025] = 1305, - [2026] = 1394, - [2027] = 1300, - [2028] = 1301, - [2029] = 2029, - [2030] = 1273, - [2031] = 1388, - [2032] = 1295, + [1921] = 1921, + [1922] = 1900, + [1923] = 1923, + [1924] = 1924, + [1925] = 1925, + [1926] = 1926, + [1927] = 1927, + [1928] = 1928, + [1929] = 1929, + [1930] = 1902, + [1931] = 1923, + [1932] = 1924, + [1933] = 1902, + [1934] = 1934, + [1935] = 1925, + [1936] = 1926, + [1937] = 1937, + [1938] = 1903, + [1939] = 1904, + [1940] = 1905, + [1941] = 1907, + [1942] = 1908, + [1943] = 1909, + [1944] = 1910, + [1945] = 1911, + [1946] = 1912, + [1947] = 1921, + [1948] = 1903, + [1949] = 1904, + [1950] = 1905, + [1951] = 1907, + [1952] = 1908, + [1953] = 1909, + [1954] = 1910, + [1955] = 1911, + [1956] = 1912, + [1957] = 1921, + [1958] = 1958, + [1959] = 1958, + [1960] = 1902, + [1961] = 1901, + [1962] = 1962, + [1963] = 1902, + [1964] = 1964, + [1965] = 1901, + [1966] = 1925, + [1967] = 1903, + [1968] = 1904, + [1969] = 1905, + [1970] = 1907, + [1971] = 1908, + [1972] = 1909, + [1973] = 1910, + [1974] = 1911, + [1975] = 1912, + [1976] = 1921, + [1977] = 1962, + [1978] = 1923, + [1979] = 1924, + [1980] = 1926, + [1981] = 1958, + [1982] = 1958, + [1983] = 1902, + [1984] = 1901, + [1985] = 1927, + [1986] = 1928, + [1987] = 1929, + [1988] = 1923, + [1989] = 1924, + [1990] = 1934, + [1991] = 1925, + [1992] = 1926, + [1993] = 1993, + [1994] = 1901, + [1995] = 1902, + [1996] = 1996, + [1997] = 1997, + [1998] = 1998, + [1999] = 1999, + [2000] = 2000, + [2001] = 2001, + [2002] = 1903, + [2003] = 1904, + [2004] = 1905, + [2005] = 1907, + [2006] = 1908, + [2007] = 1909, + [2008] = 1910, + [2009] = 1911, + [2010] = 1912, + [2011] = 1921, + [2012] = 1958, + [2013] = 1902, + [2014] = 1934, + [2015] = 1901, + [2016] = 1925, + [2017] = 1903, + [2018] = 1904, + [2019] = 1905, + [2020] = 1907, + [2021] = 1908, + [2022] = 1909, + [2023] = 1910, + [2024] = 1911, + [2025] = 1912, + [2026] = 1921, + [2027] = 1923, + [2028] = 1924, + [2029] = 1927, + [2030] = 1929, + [2031] = 1934, + [2032] = 1925, [2033] = 2033, - [2034] = 1290, - [2035] = 1309, - [2036] = 1296, - [2037] = 1307, - [2038] = 817, - [2039] = 2039, - [2040] = 1272, - [2041] = 1298, - [2042] = 2042, - [2043] = 2042, - [2044] = 803, - [2045] = 1271, - [2046] = 2046, - [2047] = 1295, - [2048] = 1337, - [2049] = 1339, - [2050] = 1342, - [2051] = 1319, - [2052] = 1302, + [2034] = 1916, + [2035] = 1917, + [2036] = 1901, + [2037] = 1901, + [2038] = 2038, + [2039] = 1928, + [2040] = 1925, + [2041] = 1903, + [2042] = 1904, + [2043] = 1905, + [2044] = 1907, + [2045] = 1908, + [2046] = 1909, + [2047] = 1910, + [2048] = 1911, + [2049] = 1912, + [2050] = 1921, + [2051] = 1927, + [2052] = 1929, [2053] = 2053, - [2054] = 1324, - [2055] = 1327, - [2056] = 1330, - [2057] = 1328, - [2058] = 1329, - [2059] = 1332, - [2060] = 1333, - [2061] = 1334, - [2062] = 1335, - [2063] = 2063, - [2064] = 1346, - [2065] = 1336, - [2066] = 1305, - [2067] = 1353, - [2068] = 1312, - [2069] = 1314, - [2070] = 1321, - [2071] = 1322, - [2072] = 1311, - [2073] = 1343, - [2074] = 1347, - [2075] = 1349, - [2076] = 2076, - [2077] = 1351, - [2078] = 1357, - [2079] = 1352, - [2080] = 1355, - [2081] = 1310, - [2082] = 2076, - [2083] = 1354, - [2084] = 1344, - [2085] = 817, - [2086] = 1286, - [2087] = 1301, - [2088] = 1316, - [2089] = 2089, - [2090] = 1290, - [2091] = 1291, - [2092] = 2092, - [2093] = 1306, - [2094] = 1345, - [2095] = 1350, - [2096] = 1309, - [2097] = 1359, - [2098] = 1348, - [2099] = 1320, - [2100] = 1317, - [2101] = 2101, - [2102] = 1315, - [2103] = 1313, - [2104] = 1325, - [2105] = 1340, - [2106] = 2014, - [2107] = 1294, - [2108] = 1331, - [2109] = 1341, - [2110] = 1303, - [2111] = 2076, - [2112] = 1358, - [2113] = 1326, - [2114] = 1356, - [2115] = 1360, - [2116] = 1323, - [2117] = 2117, - [2118] = 2118, - [2119] = 2119, - [2120] = 2120, - [2121] = 2121, - [2122] = 2122, - [2123] = 2123, - [2124] = 1283, - [2125] = 2125, - [2126] = 2126, - [2127] = 2127, - [2128] = 2128, - [2129] = 2129, - [2130] = 2125, - [2131] = 2118, - [2132] = 2132, - [2133] = 2133, - [2134] = 2118, - [2135] = 2135, - [2136] = 1283, - [2137] = 2137, - [2138] = 2017, - [2139] = 2117, - [2140] = 2125, - [2141] = 2141, + [2054] = 2054, + [2055] = 2055, + [2056] = 1923, + [2057] = 1924, + [2058] = 1923, + [2059] = 1925, + [2060] = 1903, + [2061] = 1904, + [2062] = 1905, + [2063] = 1907, + [2064] = 1908, + [2065] = 1909, + [2066] = 1910, + [2067] = 1900, + [2068] = 1912, + [2069] = 1921, + [2070] = 1927, + [2071] = 1929, + [2072] = 1934, + [2073] = 1925, + [2074] = 2074, + [2075] = 1923, + [2076] = 1924, + [2077] = 1926, + [2078] = 1926, + [2079] = 1926, + [2080] = 1927, + [2081] = 1929, + [2082] = 2082, + [2083] = 1926, + [2084] = 1923, + [2085] = 1924, + [2086] = 1958, + [2087] = 1927, + [2088] = 1929, + [2089] = 1925, + [2090] = 1927, + [2091] = 1929, + [2092] = 1926, + [2093] = 1927, + [2094] = 1929, + [2095] = 2095, + [2096] = 2096, + [2097] = 2097, + [2098] = 1902, + [2099] = 2001, + [2100] = 2096, + [2101] = 1925, + [2102] = 1926, + [2103] = 1924, + [2104] = 1903, + [2105] = 1904, + [2106] = 1905, + [2107] = 1903, + [2108] = 1904, + [2109] = 1905, + [2110] = 1907, + [2111] = 1908, + [2112] = 1909, + [2113] = 1910, + [2114] = 1911, + [2115] = 1912, + [2116] = 1921, + [2117] = 1907, + [2118] = 1958, + [2119] = 1993, + [2120] = 1908, + [2121] = 1909, + [2122] = 1910, + [2123] = 1911, + [2124] = 1913, + [2125] = 1914, + [2126] = 1902, + [2127] = 1997, + [2128] = 1912, + [2129] = 1921, + [2130] = 1958, + [2131] = 1901, + [2132] = 1998, + [2133] = 1355, + [2134] = 2001, + [2135] = 2096, + [2136] = 1993, + [2137] = 1913, + [2138] = 1914, + [2139] = 1997, + [2140] = 2140, + [2141] = 1998, [2142] = 2142, - [2143] = 2128, - [2144] = 2144, - [2145] = 2145, - [2146] = 2146, - [2147] = 2147, - [2148] = 2148, - [2149] = 2117, - [2150] = 2150, - [2151] = 2151, - [2152] = 2152, - [2153] = 2117, - [2154] = 2005, - [2155] = 2155, - [2156] = 2156, - [2157] = 2006, - [2158] = 2158, - [2159] = 2159, - [2160] = 2145, - [2161] = 2015, - [2162] = 2125, - [2163] = 2163, - [2164] = 2164, - [2165] = 2165, - [2166] = 2166, - [2167] = 2167, - [2168] = 2168, - [2169] = 2169, - [2170] = 2125, - [2171] = 2171, - [2172] = 2172, - [2173] = 2135, - [2174] = 2133, - [2175] = 2132, - [2176] = 2176, - [2177] = 2127, - [2178] = 2178, - [2179] = 2179, - [2180] = 2180, - [2181] = 2121, - [2182] = 2182, - [2183] = 2183, - [2184] = 2145, - [2185] = 2117, - [2186] = 2186, - [2187] = 2187, - [2188] = 2188, - [2189] = 2189, - [2190] = 112, - [2191] = 2024, - [2192] = 2128, - [2193] = 108, - [2194] = 2194, - [2195] = 2145, - [2196] = 2171, - [2197] = 2002, - [2198] = 2128, - [2199] = 2199, - [2200] = 2200, - [2201] = 2145, - [2202] = 2089, - [2203] = 2122, - [2204] = 2204, - [2205] = 2205, - [2206] = 2206, - [2207] = 2207, - [2208] = 2011, - [2209] = 2209, - [2210] = 2210, - [2211] = 2211, - [2212] = 2212, - [2213] = 2213, - [2214] = 2214, - [2215] = 2125, - [2216] = 2118, - [2217] = 2217, - [2218] = 2218, - [2219] = 2219, - [2220] = 1388, - [2221] = 1394, - [2222] = 2222, - [2223] = 2223, - [2224] = 2118, - [2225] = 2225, - [2226] = 2226, - [2227] = 2227, - [2228] = 2128, - [2229] = 2229, - [2230] = 2230, - [2231] = 803, - [2232] = 2232, - [2233] = 2146, - [2234] = 2204, - [2235] = 797, - [2236] = 814, - [2237] = 813, - [2238] = 804, - [2239] = 2223, - [2240] = 2232, - [2241] = 1270, - [2242] = 2029, - [2243] = 2019, - [2244] = 1294, - [2245] = 1954, - [2246] = 1302, - [2247] = 2232, - [2248] = 2014, - [2249] = 2014, - [2250] = 807, - [2251] = 2023, - [2252] = 2230, - [2253] = 2014, - [2254] = 1306, - [2255] = 1300, - [2256] = 1273, - [2257] = 1952, - [2258] = 2232, - [2259] = 2033, - [2260] = 1291, - [2261] = 1953, - [2262] = 1303, - [2263] = 811, - [2264] = 798, - [2265] = 1268, - [2266] = 1394, - [2267] = 2159, - [2268] = 1309, - [2269] = 1295, - [2270] = 1301, - [2271] = 1290, - [2272] = 1305, - [2273] = 2046, - [2274] = 1388, - [2275] = 1286, - [2276] = 817, - [2277] = 2014, - [2278] = 1296, - [2279] = 1307, - [2280] = 1298, - [2281] = 1336, - [2282] = 2089, - [2283] = 1323, - [2284] = 1316, - [2285] = 1326, - [2286] = 1360, - [2287] = 1357, - [2288] = 1358, - [2289] = 2205, - [2290] = 2092, - [2291] = 1341, - [2292] = 1331, - [2293] = 2293, - [2294] = 2219, - [2295] = 1361, - [2296] = 1340, - [2297] = 1325, - [2298] = 1313, - [2299] = 1315, - [2300] = 1317, - [2301] = 1320, - [2302] = 1348, - [2303] = 1359, - [2304] = 1350, - [2305] = 1345, - [2306] = 2293, - [2307] = 2156, - [2308] = 1344, - [2309] = 1354, - [2310] = 1310, - [2311] = 2189, - [2312] = 2148, - [2313] = 2183, - [2314] = 2182, - [2315] = 2180, - [2316] = 2178, - [2317] = 2176, - [2318] = 2168, - [2319] = 2164, - [2320] = 2158, - [2321] = 1355, - [2322] = 1352, - [2323] = 1351, - [2324] = 1349, - [2325] = 2101, - [2326] = 1347, - [2327] = 1343, - [2328] = 1311, - [2329] = 1322, - [2330] = 1321, - [2331] = 1314, - [2332] = 2123, - [2333] = 1312, - [2334] = 1365, - [2335] = 2226, - [2336] = 1353, - [2337] = 2053, - [2338] = 1356, - [2339] = 1327, - [2340] = 1324, - [2341] = 1335, - [2342] = 2227, - [2343] = 1334, - [2344] = 1346, - [2345] = 1333, - [2346] = 2151, - [2347] = 1332, - [2348] = 1329, - [2349] = 2225, - [2350] = 1328, - [2351] = 2179, - [2352] = 2212, - [2353] = 2210, - [2354] = 1298, - [2355] = 1330, - [2356] = 1319, - [2357] = 1342, - [2358] = 2186, - [2359] = 1339, - [2360] = 1337, - [2361] = 2214, - [2362] = 2159, - [2363] = 2156, - [2364] = 2144, - [2365] = 1348, - [2366] = 1359, - [2367] = 2121, - [2368] = 2127, - [2369] = 2132, - [2370] = 2133, - [2371] = 797, - [2372] = 2135, - [2373] = 2163, - [2374] = 1350, - [2375] = 2166, - [2376] = 2167, - [2377] = 1326, - [2378] = 2214, - [2379] = 1345, - [2380] = 2222, - [2381] = 814, + [2143] = 1927, + [2144] = 2001, + [2145] = 2096, + [2146] = 1993, + [2147] = 1901, + [2148] = 1913, + [2149] = 1914, + [2150] = 1997, + [2151] = 1964, + [2152] = 1998, + [2153] = 2001, + [2154] = 2096, + [2155] = 1993, + [2156] = 1913, + [2157] = 1914, + [2158] = 1997, + [2159] = 1998, + [2160] = 1993, + [2161] = 1903, + [2162] = 1913, + [2163] = 1914, + [2164] = 1997, + [2165] = 1904, + [2166] = 1998, + [2167] = 1905, + [2168] = 1993, + [2169] = 1907, + [2170] = 1913, + [2171] = 1997, + [2172] = 1908, + [2173] = 1909, + [2174] = 1958, + [2175] = 1910, + [2176] = 1911, + [2177] = 1927, + [2178] = 1929, + [2179] = 1923, + [2180] = 1924, + [2181] = 1912, + [2182] = 1921, + [2183] = 1958, + [2184] = 1929, + [2185] = 2074, + [2186] = 1354, + [2187] = 1923, + [2188] = 1924, + [2189] = 1927, + [2190] = 1929, + [2191] = 1904, + [2192] = 1926, + [2193] = 2074, + [2194] = 2074, + [2195] = 2074, + [2196] = 2074, + [2197] = 2074, + [2198] = 1934, + [2199] = 1958, + [2200] = 1925, + [2201] = 1903, + [2202] = 1904, + [2203] = 1905, + [2204] = 1907, + [2205] = 1908, + [2206] = 1909, + [2207] = 1910, + [2208] = 1911, + [2209] = 1912, + [2210] = 1921, + [2211] = 1923, + [2212] = 1924, + [2213] = 1926, + [2214] = 1958, + [2215] = 1902, + [2216] = 1901, + [2217] = 1925, + [2218] = 1926, + [2219] = 1903, + [2220] = 1905, + [2221] = 1907, + [2222] = 1908, + [2223] = 1909, + [2224] = 1910, + [2225] = 1911, + [2226] = 1912, + [2227] = 1921, + [2228] = 1958, + [2229] = 1902, + [2230] = 1901, + [2231] = 1927, + [2232] = 1929, + [2233] = 1923, + [2234] = 1924, + [2235] = 1900, + [2236] = 1900, + [2237] = 1911, + [2238] = 758, + [2239] = 741, + [2240] = 262, + [2241] = 174, + [2242] = 176, + [2243] = 181, + [2244] = 213, + [2245] = 1575, + [2246] = 185, + [2247] = 1558, + [2248] = 1423, + [2249] = 1421, + [2250] = 1400, + [2251] = 758, + [2252] = 2252, + [2253] = 2253, + [2254] = 2254, + [2255] = 759, + [2256] = 1351, + [2257] = 1352, + [2258] = 1353, + [2259] = 1353, + [2260] = 1352, + [2261] = 1351, + [2262] = 2262, + [2263] = 2262, + [2264] = 2264, + [2265] = 2265, + [2266] = 2266, + [2267] = 2267, + [2268] = 2268, + [2269] = 2269, + [2270] = 2270, + [2271] = 2270, + [2272] = 2272, + [2273] = 2272, + [2274] = 2274, + [2275] = 2269, + [2276] = 2269, + [2277] = 2270, + [2278] = 2272, + [2279] = 2274, + [2280] = 2269, + [2281] = 2272, + [2282] = 2269, + [2283] = 2270, + [2284] = 2272, + [2285] = 2274, + [2286] = 2274, + [2287] = 2272, + [2288] = 2274, + [2289] = 2269, + [2290] = 2269, + [2291] = 2270, + [2292] = 2269, + [2293] = 2269, + [2294] = 2269, + [2295] = 2270, + [2296] = 2270, + [2297] = 2269, + [2298] = 2270, + [2299] = 2270, + [2300] = 2274, + [2301] = 2269, + [2302] = 2270, + [2303] = 2269, + [2304] = 2270, + [2305] = 2270, + [2306] = 2270, + [2307] = 2269, + [2308] = 2270, + [2309] = 2270, + [2310] = 2270, + [2311] = 2270, + [2312] = 2270, + [2313] = 2269, + [2314] = 746, + [2315] = 2269, + [2316] = 2269, + [2317] = 2272, + [2318] = 2274, + [2319] = 935, + [2320] = 2269, + [2321] = 2321, + [2322] = 2322, + [2323] = 2323, + [2324] = 2323, + [2325] = 2321, + [2326] = 2322, + [2327] = 2321, + [2328] = 2323, + [2329] = 2321, + [2330] = 746, + [2331] = 2321, + [2332] = 2322, + [2333] = 2321, + [2334] = 2323, + [2335] = 2321, + [2336] = 2321, + [2337] = 2323, + [2338] = 2321, + [2339] = 2321, + [2340] = 956, + [2341] = 2321, + [2342] = 2321, + [2343] = 2321, + [2344] = 2321, + [2345] = 2321, + [2346] = 955, + [2347] = 2321, + [2348] = 2322, + [2349] = 2321, + [2350] = 2323, + [2351] = 2322, + [2352] = 2323, + [2353] = 2322, + [2354] = 2321, + [2355] = 2322, + [2356] = 746, + [2357] = 1234, + [2358] = 956, + [2359] = 955, + [2360] = 1356, + [2361] = 1356, + [2362] = 1350, + [2363] = 1350, + [2364] = 757, + [2365] = 755, + [2366] = 756, + [2367] = 751, + [2368] = 752, + [2369] = 754, + [2370] = 753, + [2371] = 1350, + [2372] = 1356, + [2373] = 1429, + [2374] = 1429, + [2375] = 935, + [2376] = 1350, + [2377] = 1356, + [2378] = 2378, + [2379] = 935, + [2380] = 1429, + [2381] = 1350, [2382] = 1356, - [2383] = 2223, - [2384] = 813, - [2385] = 1360, - [2386] = 1323, - [2387] = 1316, - [2388] = 1334, - [2389] = 2165, - [2390] = 2152, - [2391] = 2150, - [2392] = 1335, - [2393] = 1353, - [2394] = 2207, - [2395] = 2189, - [2396] = 1357, - [2397] = 2169, - [2398] = 2187, - [2399] = 2188, - [2400] = 1343, - [2401] = 2172, - [2402] = 1311, - [2403] = 2148, - [2404] = 2179, - [2405] = 2183, - [2406] = 2155, - [2407] = 2204, - [2408] = 1358, - [2409] = 1317, - [2410] = 2217, - [2411] = 2182, - [2412] = 2180, - [2413] = 2178, - [2414] = 2176, - [2415] = 2024, - [2416] = 2168, - [2417] = 1322, - [2418] = 2209, - [2419] = 2159, - [2420] = 2164, - [2421] = 2017, - [2422] = 1315, - [2423] = 1321, - [2424] = 1302, - [2425] = 1291, - [2426] = 2194, - [2427] = 2141, - [2428] = 2199, - [2429] = 2158, - [2430] = 1342, - [2431] = 2123, - [2432] = 2218, - [2433] = 1314, - [2434] = 2205, - [2435] = 807, - [2436] = 798, - [2437] = 811, - [2438] = 1319, - [2439] = 1313, - [2440] = 2119, - [2441] = 1320, - [2442] = 2213, - [2443] = 1325, - [2444] = 1344, - [2445] = 2120, - [2446] = 1340, - [2447] = 1354, - [2448] = 2129, - [2449] = 108, - [2450] = 1306, - [2451] = 2122, - [2452] = 2126, - [2453] = 1330, - [2454] = 1310, - [2455] = 1327, - [2456] = 2227, - [2457] = 2151, - [2458] = 2015, - [2459] = 1312, - [2460] = 2142, - [2461] = 2147, - [2462] = 2137, - [2463] = 2186, - [2464] = 1331, - [2465] = 1341, - [2466] = 2226, - [2467] = 1347, - [2468] = 112, - [2469] = 1339, - [2470] = 2211, - [2471] = 1303, - [2472] = 1337, - [2473] = 1294, - [2474] = 2210, - [2475] = 1351, - [2476] = 1336, - [2477] = 1355, - [2478] = 1328, - [2479] = 2146, - [2480] = 2219, - [2481] = 1329, - [2482] = 804, - [2483] = 2225, - [2484] = 1352, - [2485] = 2200, - [2486] = 2206, - [2487] = 1332, - [2488] = 1333, - [2489] = 1349, - [2490] = 2159, - [2491] = 1346, - [2492] = 2063, - [2493] = 1324, - [2494] = 2212, - [2495] = 814, - [2496] = 1283, - [2497] = 1954, - [2498] = 2498, - [2499] = 1952, - [2500] = 2159, - [2501] = 797, - [2502] = 1953, - [2503] = 804, - [2504] = 811, - [2505] = 798, - [2506] = 807, - [2507] = 813, - [2508] = 2508, - [2509] = 817, - [2510] = 2508, - [2511] = 2498, - [2512] = 2512, - [2513] = 2513, - [2514] = 2513, - [2515] = 1272, - [2516] = 2513, - [2517] = 2513, - [2518] = 2513, - [2519] = 2513, - [2520] = 2513, - [2521] = 1271, - [2522] = 2522, - [2523] = 1298, - [2524] = 2524, - [2525] = 2522, - [2526] = 2524, - [2527] = 817, - [2528] = 2522, - [2529] = 2522, - [2530] = 2530, - [2531] = 2522, - [2532] = 2532, - [2533] = 2524, - [2534] = 2524, - [2535] = 2524, - [2536] = 2522, - [2537] = 1361, - [2538] = 2530, - [2539] = 2522, - [2540] = 2522, - [2541] = 2524, - [2542] = 1365, - [2543] = 2530, - [2544] = 2532, - [2545] = 2524, - [2546] = 817, - [2547] = 2524, - [2548] = 2548, - [2549] = 2548, - [2550] = 1348, - [2551] = 2551, - [2552] = 1355, - [2553] = 1320, - [2554] = 1317, - [2555] = 2551, - [2556] = 1315, - [2557] = 2551, - [2558] = 1358, - [2559] = 112, - [2560] = 1313, - [2561] = 2548, - [2562] = 2562, - [2563] = 108, - [2564] = 1394, - [2565] = 1345, - [2566] = 1325, - [2567] = 1340, - [2568] = 2548, - [2569] = 2562, - [2570] = 2548, - [2571] = 1330, - [2572] = 1327, - [2573] = 1350, - [2574] = 1324, - [2575] = 1346, - [2576] = 1273, - [2577] = 2577, - [2578] = 1339, - [2579] = 2577, - [2580] = 2577, - [2581] = 2551, - [2582] = 1337, - [2583] = 1336, - [2584] = 2548, - [2585] = 1335, - [2586] = 1334, - [2587] = 2562, - [2588] = 1344, - [2589] = 1354, - [2590] = 1310, - [2591] = 1331, - [2592] = 1341, - [2593] = 2593, - [2594] = 1270, - [2595] = 1333, - [2596] = 1332, - [2597] = 1329, - [2598] = 1352, - [2599] = 2577, - [2600] = 1388, - [2601] = 1328, - [2602] = 1351, - [2603] = 1357, - [2604] = 1326, - [2605] = 1319, - [2606] = 1342, - [2607] = 2577, - [2608] = 2562, - [2609] = 2548, - [2610] = 2562, - [2611] = 1356, - [2612] = 1349, - [2613] = 1316, - [2614] = 1323, - [2615] = 2548, - [2616] = 1347, - [2617] = 1314, - [2618] = 1312, - [2619] = 2551, - [2620] = 1359, - [2621] = 1343, - [2622] = 2548, - [2623] = 1311, - [2624] = 1360, - [2625] = 1353, - [2626] = 1322, - [2627] = 1321, - [2628] = 1272, - [2629] = 1271, - [2630] = 1296, - [2631] = 2046, - [2632] = 2011, - [2633] = 2006, - [2634] = 817, - [2635] = 1307, - [2636] = 2005, - [2637] = 2002, - [2638] = 2023, - [2639] = 2029, - [2640] = 2011, - [2641] = 2092, - [2642] = 2642, - [2643] = 2643, - [2644] = 2033, - [2645] = 2002, - [2646] = 2053, + [2383] = 1234, + [2384] = 1304, + [2385] = 1307, + [2386] = 935, + [2387] = 955, + [2388] = 1234, + [2389] = 956, + [2390] = 935, + [2391] = 1429, + [2392] = 956, + [2393] = 955, + [2394] = 1309, + [2395] = 2395, + [2396] = 917, + [2397] = 1429, + [2398] = 2398, + [2399] = 2399, + [2400] = 149, + [2401] = 754, + [2402] = 753, + [2403] = 752, + [2404] = 751, + [2405] = 756, + [2406] = 757, + [2407] = 755, + [2408] = 2408, + [2409] = 160, + [2410] = 754, + [2411] = 1312, + [2412] = 1308, + [2413] = 1234, + [2414] = 752, + [2415] = 753, + [2416] = 1311, + [2417] = 751, + [2418] = 1310, + [2419] = 1234, + [2420] = 2420, + [2421] = 2421, + [2422] = 756, + [2423] = 757, + [2424] = 755, + [2425] = 956, + [2426] = 955, + [2427] = 754, + [2428] = 753, + [2429] = 752, + [2430] = 751, + [2431] = 756, + [2432] = 757, + [2433] = 755, + [2434] = 955, + [2435] = 956, + [2436] = 2436, + [2437] = 2437, + [2438] = 2438, + [2439] = 1428, + [2440] = 1430, + [2441] = 1427, + [2442] = 1426, + [2443] = 758, + [2444] = 759, + [2445] = 2445, + [2446] = 1357, + [2447] = 755, + [2448] = 1312, + [2449] = 2449, + [2450] = 1399, + [2451] = 753, + [2452] = 1364, + [2453] = 752, + [2454] = 1643, + [2455] = 758, + [2456] = 751, + [2457] = 1647, + [2458] = 2458, + [2459] = 1359, + [2460] = 754, + [2461] = 1309, + [2462] = 756, + [2463] = 1311, + [2464] = 1310, + [2465] = 757, + [2466] = 1388, + [2467] = 759, + [2468] = 1350, + [2469] = 1395, + [2470] = 1414, + [2471] = 1379, + [2472] = 1368, + [2473] = 1397, + [2474] = 1413, + [2475] = 1372, + [2476] = 1374, + [2477] = 1375, + [2478] = 1427, + [2479] = 1426, + [2480] = 1383, + [2481] = 1398, + [2482] = 1356, + [2483] = 1415, + [2484] = 1369, + [2485] = 1394, + [2486] = 1416, + [2487] = 1418, + [2488] = 2408, + [2489] = 1403, + [2490] = 1404, + [2491] = 1405, + [2492] = 1406, + [2493] = 1407, + [2494] = 1408, + [2495] = 1409, + [2496] = 1425, + [2497] = 1392, + [2498] = 758, + [2499] = 1378, + [2500] = 1390, + [2501] = 1401, + [2502] = 917, + [2503] = 1410, + [2504] = 1411, + [2505] = 1412, + [2506] = 1417, + [2507] = 1428, + [2508] = 1422, + [2509] = 1430, + [2510] = 1380, + [2511] = 1381, + [2512] = 1377, + [2513] = 1424, + [2514] = 1402, + [2515] = 1356, + [2516] = 1396, + [2517] = 1350, + [2518] = 1308, + [2519] = 1393, + [2520] = 1382, + [2521] = 1384, + [2522] = 1386, + [2523] = 1387, + [2524] = 1367, + [2525] = 1371, + [2526] = 1389, + [2527] = 1385, + [2528] = 1391, + [2529] = 1365, + [2530] = 1366, + [2531] = 1419, + [2532] = 1370, + [2533] = 1376, + [2534] = 2534, + [2535] = 2535, + [2536] = 759, + [2537] = 1093, + [2538] = 1307, + [2539] = 2539, + [2540] = 1304, + [2541] = 1482, + [2542] = 2542, + [2543] = 758, + [2544] = 2544, + [2545] = 2545, + [2546] = 1450, + [2547] = 1439, + [2548] = 1432, + [2549] = 1442, + [2550] = 1312, + [2551] = 1454, + [2552] = 759, + [2553] = 1435, + [2554] = 1311, + [2555] = 1310, + [2556] = 1309, + [2557] = 1438, + [2558] = 917, + [2559] = 2559, + [2560] = 1453, + [2561] = 1447, + [2562] = 1448, + [2563] = 1449, + [2564] = 1440, + [2565] = 935, + [2566] = 1436, + [2567] = 2438, + [2568] = 2542, + [2569] = 1399, + [2570] = 2570, + [2571] = 2408, + [2572] = 2572, + [2573] = 2544, + [2574] = 2570, + [2575] = 2437, + [2576] = 2542, + [2577] = 1478, + [2578] = 2544, + [2579] = 1420, + [2580] = 2570, + [2581] = 2408, + [2582] = 2572, + [2583] = 1429, + [2584] = 2408, + [2585] = 1429, + [2586] = 1487, + [2587] = 2436, + [2588] = 2588, + [2589] = 1308, + [2590] = 2559, + [2591] = 2591, + [2592] = 2592, + [2593] = 2436, + [2594] = 1557, + [2595] = 2592, + [2596] = 2592, + [2597] = 2597, + [2598] = 1364, + [2599] = 1569, + [2600] = 1357, + [2601] = 2592, + [2602] = 1574, + [2603] = 2603, + [2604] = 2592, + [2605] = 2605, + [2606] = 2606, + [2607] = 2542, + [2608] = 2608, + [2609] = 2437, + [2610] = 2610, + [2611] = 1567, + [2612] = 1570, + [2613] = 2613, + [2614] = 1579, + [2615] = 1581, + [2616] = 1578, + [2617] = 2408, + [2618] = 2438, + [2619] = 1572, + [2620] = 2408, + [2621] = 1491, + [2622] = 1420, + [2623] = 2613, + [2624] = 1356, + [2625] = 1556, + [2626] = 2544, + [2627] = 2592, + [2628] = 1350, + [2629] = 1561, + [2630] = 2613, + [2631] = 1568, + [2632] = 1234, + [2633] = 1359, + [2634] = 2408, + [2635] = 1435, + [2636] = 2636, + [2637] = 1438, + [2638] = 1453, + [2639] = 1383, + [2640] = 1447, + [2641] = 1407, + [2642] = 1379, + [2643] = 1403, + [2644] = 1448, + [2645] = 1442, + [2646] = 2646, [2647] = 2647, - [2648] = 2647, - [2649] = 2019, - [2650] = 2642, - [2651] = 2643, - [2652] = 2101, - [2653] = 2006, - [2654] = 2654, - [2655] = 2654, - [2656] = 2005, - [2657] = 2222, - [2658] = 2187, - [2659] = 2207, - [2660] = 2211, - [2661] = 2661, - [2662] = 2213, - [2663] = 1394, - [2664] = 2029, - [2665] = 2200, - [2666] = 2033, - [2667] = 2126, - [2668] = 2150, - [2669] = 1388, - [2670] = 2210, - [2671] = 2141, - [2672] = 2172, - [2673] = 2011, - [2674] = 2194, - [2675] = 2199, - [2676] = 2227, - [2677] = 2155, - [2678] = 2166, - [2679] = 2002, - [2680] = 2148, - [2681] = 2163, - [2682] = 2119, - [2683] = 2209, - [2684] = 2179, - [2685] = 2123, - [2686] = 2152, - [2687] = 2019, - [2688] = 2167, - [2689] = 2188, - [2690] = 2023, - [2691] = 2006, - [2692] = 2218, - [2693] = 2005, - [2694] = 2694, - [2695] = 2023, - [2696] = 2189, - [2697] = 2164, - [2698] = 2033, - [2699] = 2699, - [2700] = 2029, - [2701] = 2212, - [2702] = 2226, - [2703] = 2229, - [2704] = 2182, - [2705] = 2705, - [2706] = 2176, - [2707] = 2168, - [2708] = 2186, - [2709] = 2709, - [2710] = 1273, - [2711] = 2151, + [2648] = 1093, + [2649] = 2649, + [2650] = 2650, + [2651] = 1387, + [2652] = 1408, + [2653] = 2408, + [2654] = 1398, + [2655] = 1366, + [2656] = 1404, + [2657] = 2657, + [2658] = 2658, + [2659] = 2449, + [2660] = 2438, + [2661] = 1367, + [2662] = 1380, + [2663] = 1393, + [2664] = 1368, + [2665] = 1406, + [2666] = 1370, + [2667] = 1371, + [2668] = 1397, + [2669] = 1643, + [2670] = 1482, + [2671] = 1365, + [2672] = 1401, + [2673] = 1402, + [2674] = 1413, + [2675] = 1414, + [2676] = 1415, + [2677] = 955, + [2678] = 1388, + [2679] = 1439, + [2680] = 1436, + [2681] = 1416, + [2682] = 2682, + [2683] = 1418, + [2684] = 1381, + [2685] = 1382, + [2686] = 1412, + [2687] = 1425, + [2688] = 1376, + [2689] = 2689, + [2690] = 2690, + [2691] = 1389, + [2692] = 1378, + [2693] = 1390, + [2694] = 1424, + [2695] = 2437, + [2696] = 1234, + [2697] = 1391, + [2698] = 1417, + [2699] = 1394, + [2700] = 956, + [2701] = 1385, + [2702] = 1419, + [2703] = 1395, + [2704] = 1449, + [2705] = 1440, + [2706] = 1392, + [2707] = 1396, + [2708] = 1491, + [2709] = 1384, + [2710] = 2710, + [2711] = 2436, [2712] = 2712, - [2713] = 2019, - [2714] = 2225, - [2715] = 2156, - [2716] = 2180, - [2717] = 1270, - [2718] = 2178, - [2719] = 2183, - [2720] = 2158, - [2721] = 2205, - [2722] = 2705, - [2723] = 2699, + [2713] = 2713, + [2714] = 1422, + [2715] = 1647, + [2716] = 2716, + [2717] = 2717, + [2718] = 1369, + [2719] = 2719, + [2720] = 1432, + [2721] = 2408, + [2722] = 2559, + [2723] = 2723, [2724] = 2724, - [2725] = 2709, - [2726] = 2726, - [2727] = 2726, - [2728] = 2728, - [2729] = 2726, - [2730] = 2730, - [2731] = 2731, - [2732] = 2731, - [2733] = 2733, - [2734] = 2734, - [2735] = 2735, - [2736] = 2726, - [2737] = 1388, - [2738] = 2738, + [2725] = 2725, + [2726] = 1409, + [2727] = 1410, + [2728] = 1405, + [2729] = 1372, + [2730] = 1374, + [2731] = 1411, + [2732] = 1450, + [2733] = 758, + [2734] = 2408, + [2735] = 1375, + [2736] = 1487, + [2737] = 1386, + [2738] = 1377, [2739] = 2739, - [2740] = 2740, - [2741] = 2694, - [2742] = 817, - [2743] = 2709, - [2744] = 2731, - [2745] = 2731, - [2746] = 2730, - [2747] = 2699, - [2748] = 1394, - [2749] = 2046, - [2750] = 2731, - [2751] = 2694, - [2752] = 2726, - [2753] = 2730, - [2754] = 2726, - [2755] = 2730, - [2756] = 2705, - [2757] = 2730, - [2758] = 2758, - [2759] = 2730, - [2760] = 1307, - [2761] = 2761, - [2762] = 2726, - [2763] = 2739, - [2764] = 2730, - [2765] = 2733, - [2766] = 2730, - [2767] = 2731, - [2768] = 2739, - [2769] = 2731, - [2770] = 2730, - [2771] = 2735, - [2772] = 2735, - [2773] = 2735, - [2774] = 2735, - [2775] = 2730, - [2776] = 2739, - [2777] = 1296, - [2778] = 2739, - [2779] = 2735, - [2780] = 2734, - [2781] = 2781, - [2782] = 2782, - [2783] = 2178, - [2784] = 2176, - [2785] = 2785, - [2786] = 2189, - [2787] = 2787, - [2788] = 2788, - [2789] = 2168, + [2740] = 1478, + [2741] = 2445, + [2742] = 1432, + [2743] = 1579, + [2744] = 2744, + [2745] = 1581, + [2746] = 1435, + [2747] = 1438, + [2748] = 1453, + [2749] = 759, + [2750] = 1447, + [2751] = 1572, + [2752] = 1447, + [2753] = 1448, + [2754] = 1448, + [2755] = 1575, + [2756] = 1558, + [2757] = 1454, + [2758] = 1574, + [2759] = 1578, + [2760] = 1450, + [2761] = 1561, + [2762] = 1569, + [2763] = 2763, + [2764] = 1556, + [2765] = 1435, + [2766] = 1439, + [2767] = 1436, + [2768] = 1432, + [2769] = 1453, + [2770] = 2770, + [2771] = 2559, + [2772] = 2449, + [2773] = 2445, + [2774] = 1449, + [2775] = 1643, + [2776] = 1568, + [2777] = 1442, + [2778] = 1440, + [2779] = 1647, + [2780] = 1454, + [2781] = 2542, + [2782] = 1450, + [2783] = 1439, + [2784] = 1449, + [2785] = 1440, + [2786] = 1399, + [2787] = 1436, + [2788] = 2544, + [2789] = 1442, [2790] = 2790, - [2791] = 2205, - [2792] = 2705, - [2793] = 2164, - [2794] = 2794, + [2791] = 1438, + [2792] = 1567, + [2793] = 1570, + [2794] = 1557, [2795] = 2795, - [2796] = 2796, + [2796] = 2559, [2797] = 2797, - [2798] = 2123, - [2799] = 2799, - [2800] = 2797, - [2801] = 2158, - [2802] = 2092, - [2803] = 2803, - [2804] = 2787, - [2805] = 2805, - [2806] = 2795, + [2798] = 2798, + [2799] = 1399, + [2800] = 2800, + [2801] = 2801, + [2802] = 2802, + [2803] = 1643, + [2804] = 1454, + [2805] = 1084, + [2806] = 1643, [2807] = 2807, - [2808] = 2782, - [2809] = 2807, - [2810] = 2799, + [2808] = 2808, + [2809] = 2436, + [2810] = 2810, [2811] = 2811, - [2812] = 2812, - [2813] = 2790, - [2814] = 2699, - [2815] = 2782, - [2816] = 2807, - [2817] = 2817, - [2818] = 2803, + [2812] = 2437, + [2813] = 640, + [2814] = 2814, + [2815] = 2445, + [2816] = 1428, + [2817] = 1647, + [2818] = 1430, [2819] = 2819, - [2820] = 2787, - [2821] = 2790, - [2822] = 2151, + [2820] = 1420, + [2821] = 1426, + [2822] = 2822, [2823] = 2823, [2824] = 2824, - [2825] = 2148, - [2826] = 2819, - [2827] = 2794, - [2828] = 2186, - [2829] = 2186, - [2830] = 2817, - [2831] = 2799, - [2832] = 2819, - [2833] = 2824, - [2834] = 2817, - [2835] = 2817, - [2836] = 2794, - [2837] = 2794, - [2838] = 2838, - [2839] = 2803, - [2840] = 2805, - [2841] = 2823, - [2842] = 2156, - [2843] = 2782, - [2844] = 2819, - [2845] = 2824, - [2846] = 2823, - [2847] = 2180, - [2848] = 2807, - [2849] = 2794, - [2850] = 2819, - [2851] = 2805, - [2852] = 2803, - [2853] = 2226, - [2854] = 2854, - [2855] = 2811, - [2856] = 2182, - [2857] = 2803, - [2858] = 2795, - [2859] = 2823, - [2860] = 2183, - [2861] = 2795, - [2862] = 2817, + [2825] = 2825, + [2826] = 2449, + [2827] = 1429, + [2828] = 2828, + [2829] = 1647, + [2830] = 2449, + [2831] = 2831, + [2832] = 2445, + [2833] = 639, + [2834] = 2834, + [2835] = 2438, + [2836] = 1427, + [2837] = 2837, + [2838] = 946, + [2839] = 2839, + [2840] = 2840, + [2841] = 2841, + [2842] = 942, + [2843] = 1647, + [2844] = 2844, + [2845] = 2845, + [2846] = 2846, + [2847] = 949, + [2848] = 2848, + [2849] = 2849, + [2850] = 2850, + [2851] = 2851, + [2852] = 952, + [2853] = 947, + [2854] = 950, + [2855] = 2855, + [2856] = 2856, + [2857] = 1344, + [2858] = 2858, + [2859] = 951, + [2860] = 2860, + [2861] = 2861, + [2862] = 943, [2863] = 2863, - [2864] = 2805, - [2865] = 2787, - [2866] = 2158, - [2867] = 2787, - [2868] = 2824, - [2869] = 2807, - [2870] = 2790, - [2871] = 2164, - [2872] = 2872, - [2873] = 2824, - [2874] = 2799, - [2875] = 2205, - [2876] = 2790, - [2877] = 2156, - [2878] = 2226, - [2879] = 2817, - [2880] = 2795, - [2881] = 2805, - [2882] = 2168, - [2883] = 2799, - [2884] = 2787, - [2885] = 2824, - [2886] = 2024, - [2887] = 2053, - [2888] = 2823, - [2889] = 2819, - [2890] = 2176, - [2891] = 2709, - [2892] = 2227, - [2893] = 2178, - [2894] = 2225, - [2895] = 2790, - [2896] = 2225, - [2897] = 2794, - [2898] = 2803, - [2899] = 2694, - [2900] = 1300, - [2901] = 2151, - [2902] = 2799, - [2903] = 2212, - [2904] = 2017, - [2905] = 2782, - [2906] = 2212, - [2907] = 2210, - [2908] = 2863, + [2864] = 2864, + [2865] = 2865, + [2866] = 1420, + [2867] = 2867, + [2868] = 2868, + [2869] = 2869, + [2870] = 2445, + [2871] = 2871, + [2872] = 1647, + [2873] = 2873, + [2874] = 1558, + [2875] = 2449, + [2876] = 2876, + [2877] = 2877, + [2878] = 2878, + [2879] = 938, + [2880] = 2880, + [2881] = 2881, + [2882] = 1399, + [2883] = 2883, + [2884] = 2445, + [2885] = 2885, + [2886] = 2886, + [2887] = 2887, + [2888] = 2888, + [2889] = 2889, + [2890] = 130, + [2891] = 2891, + [2892] = 2892, + [2893] = 2893, + [2894] = 2894, + [2895] = 1575, + [2896] = 1643, + [2897] = 2897, + [2898] = 2898, + [2899] = 2899, + [2900] = 2900, + [2901] = 2901, + [2902] = 2902, + [2903] = 2903, + [2904] = 2904, + [2905] = 2905, + [2906] = 944, + [2907] = 2907, + [2908] = 945, [2909] = 2909, [2910] = 2910, - [2911] = 2807, - [2912] = 2015, - [2913] = 2799, - [2914] = 2805, - [2915] = 2101, - [2916] = 2916, - [2917] = 2823, - [2918] = 2782, - [2919] = 2795, - [2920] = 2180, - [2921] = 2182, - [2922] = 2179, - [2923] = 2838, - [2924] = 2183, - [2925] = 2189, - [2926] = 2926, - [2927] = 2927, + [2911] = 2911, + [2912] = 936, + [2913] = 939, + [2914] = 2914, + [2915] = 2915, + [2916] = 940, + [2917] = 1315, + [2918] = 941, + [2919] = 2919, + [2920] = 2920, + [2921] = 2921, + [2922] = 2922, + [2923] = 1643, + [2924] = 2924, + [2925] = 2925, + [2926] = 131, + [2927] = 2449, [2928] = 2928, - [2929] = 2926, - [2930] = 2928, - [2931] = 2926, - [2932] = 2932, - [2933] = 2926, - [2934] = 2926, - [2935] = 2935, - [2936] = 2926, - [2937] = 2188, - [2938] = 2938, - [2939] = 2939, - [2940] = 2940, - [2941] = 2941, - [2942] = 2942, - [2943] = 2943, - [2944] = 2944, - [2945] = 2945, - [2946] = 2946, - [2947] = 2938, - [2948] = 2150, - [2949] = 2152, - [2950] = 2943, - [2951] = 2951, + [2929] = 1448, + [2930] = 1307, + [2931] = 756, + [2932] = 757, + [2933] = 755, + [2934] = 1310, + [2935] = 1439, + [2936] = 753, + [2937] = 752, + [2938] = 1312, + [2939] = 1491, + [2940] = 1643, + [2941] = 1487, + [2942] = 1442, + [2943] = 751, + [2944] = 1449, + [2945] = 1440, + [2946] = 2449, + [2947] = 1309, + [2948] = 1432, + [2949] = 2559, + [2950] = 917, + [2951] = 1450, [2952] = 2952, - [2953] = 2953, - [2954] = 2954, - [2955] = 2941, - [2956] = 2956, + [2953] = 1435, + [2954] = 1438, + [2955] = 1311, + [2956] = 1304, [2957] = 2957, - [2958] = 2928, - [2959] = 2959, - [2960] = 2960, - [2961] = 2926, - [2962] = 2926, - [2963] = 2952, - [2964] = 2939, - [2965] = 2024, - [2966] = 2155, - [2967] = 2222, - [2968] = 2968, - [2969] = 2141, - [2970] = 2167, - [2971] = 2971, - [2972] = 2941, - [2973] = 2166, - [2974] = 2156, - [2975] = 2935, - [2976] = 2951, - [2977] = 2977, - [2978] = 2926, - [2979] = 2926, - [2980] = 2926, - [2981] = 2205, - [2982] = 2982, - [2983] = 2926, - [2984] = 2926, - [2985] = 2942, - [2986] = 2189, - [2987] = 2971, - [2988] = 2183, - [2989] = 2910, - [2990] = 2927, - [2991] = 2172, - [2992] = 2182, - [2993] = 2180, - [2994] = 2994, - [2995] = 2995, - [2996] = 2943, - [2997] = 2997, - [2998] = 2942, - [2999] = 2938, - [3000] = 2178, - [3001] = 3001, - [3002] = 2176, - [3003] = 2944, - [3004] = 2927, - [3005] = 2168, - [3006] = 3006, - [3007] = 2017, - [3008] = 2164, - [3009] = 2946, - [3010] = 2982, - [3011] = 2939, - [3012] = 2158, - [3013] = 2944, - [3014] = 2935, - [3015] = 2971, - [3016] = 3016, - [3017] = 2939, - [3018] = 2163, - [3019] = 2211, - [3020] = 2941, - [3021] = 3021, - [3022] = 2910, - [3023] = 2928, - [3024] = 2952, - [3025] = 2148, - [3026] = 2945, - [3027] = 2151, - [3028] = 2946, - [3029] = 2186, - [3030] = 2932, - [3031] = 2954, - [3032] = 2994, - [3033] = 2123, - [3034] = 2226, - [3035] = 2932, - [3036] = 2928, - [3037] = 2946, - [3038] = 2951, - [3039] = 2928, - [3040] = 2785, - [3041] = 2932, - [3042] = 3016, - [3043] = 2994, - [3044] = 3044, - [3045] = 2213, - [3046] = 2926, - [3047] = 2187, - [3048] = 2926, - [3049] = 2943, - [3050] = 2200, - [3051] = 3051, - [3052] = 2812, - [3053] = 2928, - [3054] = 2952, - [3055] = 2982, - [3056] = 2945, - [3057] = 3057, - [3058] = 2944, - [3059] = 2944, - [3060] = 2941, - [3061] = 3061, - [3062] = 2944, - [3063] = 2994, - [3064] = 2946, - [3065] = 2951, - [3066] = 2994, - [3067] = 2926, - [3068] = 2015, - [3069] = 2943, - [3070] = 2939, - [3071] = 3016, - [3072] = 3051, - [3073] = 2927, - [3074] = 2199, - [3075] = 2942, - [3076] = 2935, - [3077] = 3077, - [3078] = 2945, - [3079] = 2119, - [3080] = 2941, - [3081] = 2951, - [3082] = 2944, - [3083] = 2939, - [3084] = 2927, - [3085] = 2952, - [3086] = 2225, - [3087] = 3016, - [3088] = 2126, - [3089] = 2971, - [3090] = 3090, - [3091] = 2207, - [3092] = 2945, - [3093] = 2954, - [3094] = 3094, - [3095] = 2971, - [3096] = 2212, - [3097] = 2227, - [3098] = 3057, - [3099] = 2209, - [3100] = 3100, - [3101] = 2928, - [3102] = 3102, - [3103] = 2926, - [3104] = 2945, - [3105] = 3105, - [3106] = 2957, - [3107] = 112, - [3108] = 2210, - [3109] = 2179, - [3110] = 3110, - [3111] = 108, - [3112] = 2926, - [3113] = 2951, - [3114] = 2994, - [3115] = 2194, - [3116] = 2945, - [3117] = 2218, - [3118] = 2952, - [3119] = 2952, - [3120] = 2951, - [3121] = 3001, - [3122] = 2995, - [3123] = 2932, - [3124] = 2935, - [3125] = 2946, - [3126] = 2994, - [3127] = 2935, - [3128] = 2942, - [3129] = 2935, - [3130] = 2943, - [3131] = 2959, - [3132] = 2928, - [3133] = 2927, - [3134] = 2942, - [3135] = 2812, - [3136] = 2785, - [3137] = 2939, - [3138] = 2926, - [3139] = 3105, - [3140] = 3140, - [3141] = 3141, - [3142] = 3105, - [3143] = 2705, - [3144] = 3144, - [3145] = 2910, - [3146] = 3146, - [3147] = 3147, - [3148] = 3148, - [3149] = 3044, - [3150] = 3146, - [3151] = 3148, - [3152] = 2694, - [3153] = 2709, - [3154] = 2699, - [3155] = 3144, - [3156] = 3146, + [2958] = 1647, + [2959] = 1453, + [2960] = 1447, + [2961] = 2445, + [2962] = 1478, + [2963] = 754, + [2964] = 1436, + [2965] = 1556, + [2966] = 1561, + [2967] = 1436, + [2968] = 1399, + [2969] = 1569, + [2970] = 1568, + [2971] = 1438, + [2972] = 1312, + [2973] = 1557, + [2974] = 1440, + [2975] = 1448, + [2976] = 1427, + [2977] = 1309, + [2978] = 1439, + [2979] = 1420, + [2980] = 1453, + [2981] = 1450, + [2982] = 1364, + [2983] = 1359, + [2984] = 1426, + [2985] = 1310, + [2986] = 1491, + [2987] = 917, + [2988] = 1432, + [2989] = 1430, + [2990] = 1449, + [2991] = 1578, + [2992] = 1304, + [2993] = 1558, + [2994] = 1311, + [2995] = 1442, + [2996] = 2438, + [2997] = 1567, + [2998] = 1570, + [2999] = 1357, + [3000] = 1428, + [3001] = 2437, + [3002] = 2449, + [3003] = 1574, + [3004] = 1447, + [3005] = 2445, + [3006] = 1435, + [3007] = 2436, + [3008] = 1581, + [3009] = 1575, + [3010] = 1308, + [3011] = 1572, + [3012] = 1643, + [3013] = 1647, + [3014] = 1579, + [3015] = 1307, + [3016] = 1392, + [3017] = 2881, + [3018] = 2883, + [3019] = 2885, + [3020] = 1308, + [3021] = 2886, + [3022] = 2888, + [3023] = 2891, + [3024] = 1428, + [3025] = 1430, + [3026] = 917, + [3027] = 1427, + [3028] = 1426, + [3029] = 1482, + [3030] = 1311, + [3031] = 1310, + [3032] = 1309, + [3033] = 2449, + [3034] = 2445, + [3035] = 1424, + [3036] = 1397, + [3037] = 1312, + [3038] = 1575, + [3039] = 1396, + [3040] = 1379, + [3041] = 1383, + [3042] = 1398, + [3043] = 1422, + [3044] = 1393, + [3045] = 1558, + [3046] = 1370, + [3047] = 1371, + [3048] = 1365, + [3049] = 1401, + [3050] = 1402, + [3051] = 1413, + [3052] = 1414, + [3053] = 2957, + [3054] = 1416, + [3055] = 1418, + [3056] = 1425, + [3057] = 1376, + [3058] = 1093, + [3059] = 1378, + [3060] = 1390, + [3061] = 1372, + [3062] = 1374, + [3063] = 1375, + [3064] = 1403, + [3065] = 1404, + [3066] = 1405, + [3067] = 1406, + [3068] = 1407, + [3069] = 1408, + [3070] = 1409, + [3071] = 1410, + [3072] = 1411, + [3073] = 1412, + [3074] = 1417, + [3075] = 1377, + [3076] = 1366, + [3077] = 1367, + [3078] = 1368, + [3079] = 1369, + [3080] = 1380, + [3081] = 1381, + [3082] = 1382, + [3083] = 1384, + [3084] = 1386, + [3085] = 1387, + [3086] = 1388, + [3087] = 1389, + [3088] = 1391, + [3089] = 1394, + [3090] = 1385, + [3091] = 1419, + [3092] = 1395, + [3093] = 1643, + [3094] = 1647, + [3095] = 2952, + [3096] = 2957, + [3097] = 2898, + [3098] = 2952, + [3099] = 1454, + [3100] = 917, + [3101] = 1415, + [3102] = 1453, + [3103] = 1447, + [3104] = 1448, + [3105] = 1442, + [3106] = 1439, + [3107] = 1436, + [3108] = 1478, + [3109] = 1432, + [3110] = 1307, + [3111] = 1450, + [3112] = 1304, + [3113] = 1454, + [3114] = 1491, + [3115] = 2535, + [3116] = 2534, + [3117] = 2539, + [3118] = 759, + [3119] = 1449, + [3120] = 1440, + [3121] = 2545, + [3122] = 1487, + [3123] = 2952, + [3124] = 2957, + [3125] = 1435, + [3126] = 1438, + [3127] = 1308, + [3128] = 3128, + [3129] = 1557, + [3130] = 1575, + [3131] = 2535, + [3132] = 1643, + [3133] = 1311, + [3134] = 1310, + [3135] = 1558, + [3136] = 1478, + [3137] = 1309, + [3138] = 2534, + [3139] = 1487, + [3140] = 2545, + [3141] = 1556, + [3142] = 1427, + [3143] = 1572, + [3144] = 1568, + [3145] = 1569, + [3146] = 754, + [3147] = 753, + [3148] = 752, + [3149] = 751, + [3150] = 756, + [3151] = 757, + [3152] = 755, + [3153] = 2899, + [3154] = 1426, + [3155] = 1567, + [3156] = 1570, [3157] = 3157, - [3158] = 3110, - [3159] = 3144, - [3160] = 3110, - [3161] = 3146, + [3158] = 3158, + [3159] = 3159, + [3160] = 3160, + [3161] = 3161, [3162] = 3162, - [3163] = 3148, - [3164] = 3146, - [3165] = 3148, - [3166] = 3044, - [3167] = 3146, - [3168] = 2785, + [3163] = 3163, + [3164] = 3164, + [3165] = 3165, + [3166] = 3166, + [3167] = 3167, + [3168] = 3168, [3169] = 3169, - [3170] = 3146, - [3171] = 3144, - [3172] = 1228, - [3173] = 3173, - [3174] = 3144, - [3175] = 3175, - [3176] = 3176, - [3177] = 3177, - [3178] = 2812, - [3179] = 3044, - [3180] = 3110, - [3181] = 3105, - [3182] = 3140, - [3183] = 3177, - [3184] = 3175, - [3185] = 3162, - [3186] = 3162, - [3187] = 3140, - [3188] = 3175, - [3189] = 3169, - [3190] = 3169, - [3191] = 3175, - [3192] = 1949, - [3193] = 3193, - [3194] = 3162, - [3195] = 3195, - [3196] = 3196, - [3197] = 3195, - [3198] = 3140, - [3199] = 1394, - [3200] = 1388, - [3201] = 2812, - [3202] = 3177, - [3203] = 2910, - [3204] = 3204, - [3205] = 3196, - [3206] = 3169, - [3207] = 3207, - [3208] = 2785, - [3209] = 3207, - [3210] = 1949, - [3211] = 3211, - [3212] = 3204, - [3213] = 3213, - [3214] = 3110, - [3215] = 1394, - [3216] = 3105, - [3217] = 2953, - [3218] = 3044, - [3219] = 1388, - [3220] = 3220, - [3221] = 3090, - [3222] = 3222, - [3223] = 3223, - [3224] = 2699, - [3225] = 3225, - [3226] = 3226, - [3227] = 3227, - [3228] = 2705, - [3229] = 3229, - [3230] = 3230, - [3231] = 3231, - [3232] = 3232, - [3233] = 3233, - [3234] = 2699, - [3235] = 3232, - [3236] = 2705, + [3170] = 1574, + [3171] = 1647, + [3172] = 1579, + [3173] = 1430, + [3174] = 3174, + [3175] = 2449, + [3176] = 2445, + [3177] = 1581, + [3178] = 1312, + [3179] = 2889, + [3180] = 3180, + [3181] = 3181, + [3182] = 3182, + [3183] = 2876, + [3184] = 1428, + [3185] = 1578, + [3186] = 1561, + [3187] = 2539, + [3188] = 1561, + [3189] = 1578, + [3190] = 1308, + [3191] = 1572, + [3192] = 3192, + [3193] = 1366, + [3194] = 1454, + [3195] = 1365, + [3196] = 3192, + [3197] = 1378, + [3198] = 1569, + [3199] = 2952, + [3200] = 2957, + [3201] = 1393, + [3202] = 1567, + [3203] = 1557, + [3204] = 1579, + [3205] = 3205, + [3206] = 1372, + [3207] = 1581, + [3208] = 1403, + [3209] = 1556, + [3210] = 3210, + [3211] = 1570, + [3212] = 1568, + [3213] = 1574, + [3214] = 3214, + [3215] = 1365, + [3216] = 3157, + [3217] = 3180, + [3218] = 3159, + [3219] = 3160, + [3220] = 3161, + [3221] = 3162, + [3222] = 3163, + [3223] = 3164, + [3224] = 1359, + [3225] = 3166, + [3226] = 3192, + [3227] = 3169, + [3228] = 3165, + [3229] = 3181, + [3230] = 3182, + [3231] = 1378, + [3232] = 759, + [3233] = 3192, + [3234] = 1372, + [3235] = 3192, + [3236] = 3236, [3237] = 3237, [3238] = 3238, - [3239] = 3239, + [3239] = 3192, [3240] = 3240, - [3241] = 3241, - [3242] = 3242, - [3243] = 3243, - [3244] = 3240, - [3245] = 3245, - [3246] = 3246, - [3247] = 3162, - [3248] = 1949, - [3249] = 3249, - [3250] = 3232, - [3251] = 3251, - [3252] = 3252, - [3253] = 3253, - [3254] = 3251, - [3255] = 2705, - [3256] = 3256, - [3257] = 3257, - [3258] = 3258, - [3259] = 3258, - [3260] = 3257, - [3261] = 3261, - [3262] = 3175, - [3263] = 3169, - [3264] = 2699, - [3265] = 3140, - [3266] = 3140, - [3267] = 3267, - [3268] = 1307, - [3269] = 1296, - [3270] = 3140, - [3271] = 3271, - [3272] = 3175, - [3273] = 3140, - [3274] = 3175, - [3275] = 3169, - [3276] = 3162, - [3277] = 3277, - [3278] = 3278, - [3279] = 3162, - [3280] = 3280, - [3281] = 1949, - [3282] = 3282, - [3283] = 3283, - [3284] = 3169, - [3285] = 3175, - [3286] = 3162, - [3287] = 3169, - [3288] = 3288, - [3289] = 1394, - [3290] = 1272, - [3291] = 3291, - [3292] = 3283, - [3293] = 3291, - [3294] = 3267, - [3295] = 2699, - [3296] = 1273, - [3297] = 3277, - [3298] = 3271, - [3299] = 3282, - [3300] = 3288, - [3301] = 1271, - [3302] = 3283, - [3303] = 3303, - [3304] = 1272, - [3305] = 2705, - [3306] = 1271, - [3307] = 1388, - [3308] = 3271, - [3309] = 3282, - [3310] = 3267, - [3311] = 3288, - [3312] = 3303, - [3313] = 3313, - [3314] = 3314, - [3315] = 3211, - [3316] = 3316, - [3317] = 3317, - [3318] = 3318, - [3319] = 3319, - [3320] = 3320, - [3321] = 2092, - [3322] = 3322, - [3323] = 3323, - [3324] = 3220, - [3325] = 3242, - [3326] = 3326, - [3327] = 3313, - [3328] = 3328, - [3329] = 3329, - [3330] = 3330, - [3331] = 3331, - [3332] = 3229, - [3333] = 3323, - [3334] = 3334, - [3335] = 3335, - [3336] = 3336, - [3337] = 3337, - [3338] = 3237, - [3339] = 3339, - [3340] = 3340, - [3341] = 3140, - [3342] = 3169, - [3343] = 3241, - [3344] = 3344, - [3345] = 3267, - [3346] = 3346, - [3347] = 3253, - [3348] = 3348, - [3349] = 3175, - [3350] = 3350, - [3351] = 3351, - [3352] = 1230, - [3353] = 3346, - [3354] = 3354, - [3355] = 3313, - [3356] = 3356, - [3357] = 3357, - [3358] = 3323, - [3359] = 3359, - [3360] = 3288, - [3361] = 3344, - [3362] = 3362, - [3363] = 3340, - [3364] = 3364, - [3365] = 3162, - [3366] = 3337, - [3367] = 3336, - [3368] = 3368, - [3369] = 3318, - [3370] = 3246, - [3371] = 3371, - [3372] = 3329, - [3373] = 3313, - [3374] = 3374, - [3375] = 3374, - [3376] = 3368, - [3377] = 3377, - [3378] = 3213, - [3379] = 1949, - [3380] = 3380, - [3381] = 3271, - [3382] = 3331, - [3383] = 3223, - [3384] = 3330, - [3385] = 3314, - [3386] = 3283, - [3387] = 3282, - [3388] = 3377, - [3389] = 3316, - [3390] = 3390, - [3391] = 3319, - [3392] = 3392, - [3393] = 3393, - [3394] = 3394, - [3395] = 3348, - [3396] = 3392, - [3397] = 3322, - [3398] = 3350, - [3399] = 3339, - [3400] = 3317, - [3401] = 2092, - [3402] = 3402, - [3403] = 3403, - [3404] = 3335, - [3405] = 3403, - [3406] = 3392, - [3407] = 3393, - [3408] = 3334, - [3409] = 3403, - [3410] = 3410, - [3411] = 3326, - [3412] = 3357, - [3413] = 3380, - [3414] = 3362, - [3415] = 3320, - [3416] = 3328, - [3417] = 3359, - [3418] = 3418, - [3419] = 3356, - [3420] = 3392, - [3421] = 3271, - [3422] = 3288, - [3423] = 1388, - [3424] = 1388, - [3425] = 3282, - [3426] = 1394, - [3427] = 1394, - [3428] = 1270, - [3429] = 3267, - [3430] = 3283, - [3431] = 3431, - [3432] = 3432, - [3433] = 3432, - [3434] = 3434, - [3435] = 3432, - [3436] = 3432, - [3437] = 3432, - [3438] = 3438, - [3439] = 3432, - [3440] = 3432, - [3441] = 3431, - [3442] = 1270, - [3443] = 3443, - [3444] = 1476, - [3445] = 3432, - [3446] = 3432, - [3447] = 3431, - [3448] = 3448, - [3449] = 3432, - [3450] = 3432, - [3451] = 3432, - [3452] = 3448, - [3453] = 3448, - [3454] = 3432, - [3455] = 3443, - [3456] = 3456, - [3457] = 3456, - [3458] = 1296, - [3459] = 1307, - [3460] = 1307, - [3461] = 1296, - [3462] = 1477, - [3463] = 3456, - [3464] = 3464, - [3465] = 3464, - [3466] = 3466, - [3467] = 3467, - [3468] = 3464, - [3469] = 3467, - [3470] = 3464, - [3471] = 2910, - [3472] = 3464, - [3473] = 2812, - [3474] = 3467, - [3475] = 1268, - [3476] = 3464, - [3477] = 3464, - [3478] = 1300, - [3479] = 3467, - [3480] = 3464, - [3481] = 2785, - [3482] = 2910, - [3483] = 3467, - [3484] = 3467, - [3485] = 3467, - [3486] = 3464, - [3487] = 3464, - [3488] = 3467, - [3489] = 3464, - [3490] = 2812, - [3491] = 2785, - [3492] = 3464, - [3493] = 3467, - [3494] = 3467, - [3495] = 3467, - [3496] = 2910, - [3497] = 3464, - [3498] = 3467, - [3499] = 2785, - [3500] = 1474, - [3501] = 2812, - [3502] = 3467, - [3503] = 3503, - [3504] = 1295, - [3505] = 3503, - [3506] = 3506, - [3507] = 3507, - [3508] = 3507, - [3509] = 3509, - [3510] = 3507, - [3511] = 3503, - [3512] = 1309, - [3513] = 1290, - [3514] = 3506, - [3515] = 3509, - [3516] = 1272, - [3517] = 3506, - [3518] = 3506, - [3519] = 3506, - [3520] = 1271, - [3521] = 3509, - [3522] = 3503, - [3523] = 3506, - [3524] = 3503, - [3525] = 1305, - [3526] = 3509, - [3527] = 3509, - [3528] = 3506, - [3529] = 3509, - [3530] = 3507, - [3531] = 1286, - [3532] = 3503, - [3533] = 3503, - [3534] = 3503, - [3535] = 3503, - [3536] = 3503, - [3537] = 1301, - [3538] = 3538, - [3539] = 1474, - [3540] = 3540, - [3541] = 3540, - [3542] = 2812, - [3543] = 3543, - [3544] = 3543, - [3545] = 3540, - [3546] = 3538, - [3547] = 3543, - [3548] = 3543, - [3549] = 3549, - [3550] = 3543, - [3551] = 3551, - [3552] = 3538, - [3553] = 3553, - [3554] = 3543, - [3555] = 3543, - [3556] = 2910, - [3557] = 3543, - [3558] = 3543, - [3559] = 3543, - [3560] = 3538, - [3561] = 3540, - [3562] = 2785, - [3563] = 3540, - [3564] = 3543, - [3565] = 3565, - [3566] = 3565, - [3567] = 3565, - [3568] = 3565, - [3569] = 3565, - [3570] = 804, - [3571] = 811, - [3572] = 798, - [3573] = 807, - [3574] = 813, - [3575] = 3565, - [3576] = 814, - [3577] = 797, - [3578] = 3565, - [3579] = 3565, - [3580] = 3565, - [3581] = 3565, - [3582] = 3565, - [3583] = 3565, - [3584] = 3565, - [3585] = 3565, - [3586] = 1294, - [3587] = 3565, - [3588] = 1303, - [3589] = 3589, - [3590] = 1306, - [3591] = 1291, - [3592] = 1302, - [3593] = 3565, - [3594] = 3594, - [3595] = 3565, - [3596] = 3565, - [3597] = 3597, - [3598] = 3598, - [3599] = 3599, - [3600] = 3599, - [3601] = 1286, - [3602] = 3597, - [3603] = 3599, - [3604] = 3599, - [3605] = 1283, - [3606] = 1270, - [3607] = 3607, - [3608] = 3608, - [3609] = 3597, - [3610] = 1388, - [3611] = 3597, - [3612] = 1394, - [3613] = 3607, - [3614] = 2089, - [3615] = 3607, - [3616] = 3616, - [3617] = 3617, - [3618] = 3618, - [3619] = 3619, - [3620] = 3620, - [3621] = 3597, - [3622] = 1301, - [3623] = 3623, - [3624] = 3597, - [3625] = 3599, - [3626] = 3616, - [3627] = 3627, - [3628] = 3628, - [3629] = 3616, - [3630] = 3630, - [3631] = 3631, - [3632] = 3632, - [3633] = 3597, - [3634] = 3634, - [3635] = 3635, - [3636] = 1290, - [3637] = 3599, - [3638] = 3616, - [3639] = 3607, - [3640] = 1309, - [3641] = 3641, - [3642] = 3616, - [3643] = 1295, - [3644] = 1305, - [3645] = 3607, - [3646] = 3607, - [3647] = 3647, - [3648] = 3648, - [3649] = 3599, - [3650] = 3607, - [3651] = 3597, - [3652] = 3616, - [3653] = 817, - [3654] = 3599, - [3655] = 3616, - [3656] = 3656, - [3657] = 3656, - [3658] = 3656, - [3659] = 3659, - [3660] = 3660, - [3661] = 1954, - [3662] = 2146, - [3663] = 3663, - [3664] = 3664, - [3665] = 2223, - [3666] = 3663, - [3667] = 3656, - [3668] = 3656, - [3669] = 3608, - [3670] = 3641, - [3671] = 3598, - [3672] = 3628, - [3673] = 3656, - [3674] = 3674, - [3675] = 3656, - [3676] = 3663, - [3677] = 3677, - [3678] = 2133, - [3679] = 2132, - [3680] = 2127, - [3681] = 2121, - [3682] = 3663, - [3683] = 2204, - [3684] = 3608, - [3685] = 3660, - [3686] = 2135, - [3687] = 3674, - [3688] = 3688, - [3689] = 3627, + [3241] = 3236, + [3242] = 758, + [3243] = 2591, + [3244] = 1403, + [3245] = 3174, + [3246] = 2608, + [3247] = 3210, + [3248] = 3214, + [3249] = 3167, + [3250] = 1366, + [3251] = 3158, + [3252] = 758, + [3253] = 3237, + [3254] = 3238, + [3255] = 3240, + [3256] = 3236, + [3257] = 3240, + [3258] = 3168, + [3259] = 2846, + [3260] = 3238, + [3261] = 3240, + [3262] = 3236, + [3263] = 3238, + [3264] = 2605, + [3265] = 3238, + [3266] = 3240, + [3267] = 3236, + [3268] = 1393, + [3269] = 3238, + [3270] = 3240, + [3271] = 3236, + [3272] = 3240, + [3273] = 3236, + [3274] = 3240, + [3275] = 3236, + [3276] = 2535, + [3277] = 3192, + [3278] = 2597, + [3279] = 2534, + [3280] = 1478, + [3281] = 3237, + [3282] = 3214, + [3283] = 3238, + [3284] = 2539, + [3285] = 2603, + [3286] = 1364, + [3287] = 3238, + [3288] = 3214, + [3289] = 2545, + [3290] = 1487, + [3291] = 3214, + [3292] = 3214, + [3293] = 3214, + [3294] = 3214, + [3295] = 1357, + [3296] = 3205, + [3297] = 3128, + [3298] = 3192, + [3299] = 3299, + [3300] = 1389, + [3301] = 3166, + [3302] = 3167, + [3303] = 1391, + [3304] = 1359, + [3305] = 3168, + [3306] = 1412, + [3307] = 759, + [3308] = 1364, + [3309] = 1390, + [3310] = 2724, + [3311] = 3192, + [3312] = 1392, + [3313] = 1401, + [3314] = 3299, + [3315] = 3163, + [3316] = 1367, + [3317] = 1394, + [3318] = 2591, + [3319] = 2608, + [3320] = 3192, + [3321] = 1402, + [3322] = 3164, + [3323] = 3165, + [3324] = 1413, + [3325] = 1374, + [3326] = 3158, + [3327] = 1375, + [3328] = 3157, + [3329] = 3169, + [3330] = 2739, + [3331] = 1418, + [3332] = 3192, + [3333] = 1425, + [3334] = 3159, + [3335] = 2605, + [3336] = 3192, + [3337] = 1422, + [3338] = 1385, + [3339] = 3299, + [3340] = 1419, + [3341] = 2725, + [3342] = 1395, + [3343] = 1370, + [3344] = 1368, + [3345] = 2597, + [3346] = 3299, + [3347] = 3192, + [3348] = 3160, + [3349] = 2603, + [3350] = 1369, + [3351] = 1404, + [3352] = 1377, + [3353] = 1405, + [3354] = 3192, + [3355] = 1561, + [3356] = 3299, + [3357] = 1557, + [3358] = 1376, + [3359] = 1411, + [3360] = 1417, + [3361] = 3192, + [3362] = 1371, + [3363] = 1406, + [3364] = 2717, + [3365] = 1407, + [3366] = 1567, + [3367] = 1570, + [3368] = 759, + [3369] = 1380, + [3370] = 1381, + [3371] = 3192, + [3372] = 1579, + [3373] = 1581, + [3374] = 1382, + [3375] = 1384, + [3376] = 3192, + [3377] = 3161, + [3378] = 3192, + [3379] = 2559, + [3380] = 1408, + [3381] = 1409, + [3382] = 1414, + [3383] = 1415, + [3384] = 1386, + [3385] = 1410, + [3386] = 1093, + [3387] = 1387, + [3388] = 2682, + [3389] = 1556, + [3390] = 1388, + [3391] = 3128, + [3392] = 1568, + [3393] = 3174, + [3394] = 1574, + [3395] = 1578, + [3396] = 3162, + [3397] = 1424, + [3398] = 3180, + [3399] = 1397, + [3400] = 3181, + [3401] = 3182, + [3402] = 1572, + [3403] = 1569, + [3404] = 2658, + [3405] = 1482, + [3406] = 758, + [3407] = 1396, + [3408] = 1379, + [3409] = 1416, + [3410] = 1383, + [3411] = 1398, + [3412] = 1357, + [3413] = 3299, + [3414] = 3192, + [3415] = 1374, + [3416] = 3180, + [3417] = 2834, + [3418] = 3159, + [3419] = 3160, + [3420] = 3161, + [3421] = 3162, + [3422] = 3163, + [3423] = 3164, + [3424] = 1375, + [3425] = 3165, + [3426] = 3181, + [3427] = 2811, + [3428] = 3182, + [3429] = 2763, + [3430] = 1396, + [3431] = 2811, + [3432] = 2724, + [3433] = 1404, + [3434] = 1405, + [3435] = 2811, + [3436] = 2837, + [3437] = 1406, + [3438] = 1407, + [3439] = 2790, + [3440] = 1408, + [3441] = 1409, + [3442] = 1410, + [3443] = 1411, + [3444] = 1379, + [3445] = 1412, + [3446] = 1417, + [3447] = 1377, + [3448] = 1383, + [3449] = 2807, + [3450] = 2808, + [3451] = 1398, + [3452] = 3174, + [3453] = 2822, + [3454] = 2824, + [3455] = 1367, + [3456] = 1368, + [3457] = 3128, + [3458] = 1369, + [3459] = 1422, + [3460] = 2658, + [3461] = 2811, + [3462] = 1380, + [3463] = 1381, + [3464] = 1382, + [3465] = 1384, + [3466] = 1386, + [3467] = 1387, + [3468] = 1388, + [3469] = 3166, + [3470] = 3205, + [3471] = 2811, + [3472] = 1391, + [3473] = 2739, + [3474] = 3167, + [3475] = 1370, + [3476] = 1371, + [3477] = 3168, + [3478] = 1394, + [3479] = 1385, + [3480] = 1419, + [3481] = 1395, + [3482] = 2725, + [3483] = 2717, + [3484] = 1401, + [3485] = 1402, + [3486] = 1413, + [3487] = 1414, + [3488] = 1415, + [3489] = 1416, + [3490] = 1418, + [3491] = 1399, + [3492] = 2436, + [3493] = 2744, + [3494] = 2810, + [3495] = 759, + [3496] = 3169, + [3497] = 1425, + [3498] = 1376, + [3499] = 1393, + [3500] = 1365, + [3501] = 3210, + [3502] = 2682, + [3503] = 2438, + [3504] = 1420, + [3505] = 3192, + [3506] = 2810, + [3507] = 1093, + [3508] = 1378, + [3509] = 1424, + [3510] = 2437, + [3511] = 1397, + [3512] = 1372, + [3513] = 1403, + [3514] = 3157, + [3515] = 758, + [3516] = 1366, + [3517] = 2559, + [3518] = 2802, + [3519] = 1390, + [3520] = 1392, + [3521] = 3158, + [3522] = 1482, + [3523] = 1389, + [3524] = 3168, + [3525] = 3192, + [3526] = 952, + [3527] = 2886, + [3528] = 2902, + [3529] = 3157, + [3530] = 2863, + [3531] = 2807, + [3532] = 3532, + [3533] = 2878, + [3534] = 2883, + [3535] = 1084, + [3536] = 1357, + [3537] = 3537, + [3538] = 3180, + [3539] = 3532, + [3540] = 2888, + [3541] = 2650, + [3542] = 3532, + [3543] = 2885, + [3544] = 2834, + [3545] = 3532, + [3546] = 939, + [3547] = 940, + [3548] = 1364, + [3549] = 2878, + [3550] = 2891, + [3551] = 3532, + [3552] = 2898, + [3553] = 3159, + [3554] = 941, + [3555] = 3166, + [3556] = 2646, + [3557] = 2647, + [3558] = 2649, + [3559] = 2863, + [3560] = 3192, + [3561] = 3160, + [3562] = 3161, + [3563] = 2825, + [3564] = 2744, + [3565] = 3162, + [3566] = 2846, + [3567] = 2811, + [3568] = 938, + [3569] = 3163, + [3570] = 3169, + [3571] = 2798, + [3572] = 3164, + [3573] = 2837, + [3574] = 2902, + [3575] = 2797, + [3576] = 3205, + [3577] = 2810, + [3578] = 2636, + [3579] = 3192, + [3580] = 3167, + [3581] = 3165, + [3582] = 3192, + [3583] = 3583, + [3584] = 2712, + [3585] = 3181, + [3586] = 2713, + [3587] = 2716, + [3588] = 2770, + [3589] = 2719, + [3590] = 3182, + [3591] = 3591, + [3592] = 2811, + [3593] = 3591, + [3594] = 3532, + [3595] = 3174, + [3596] = 942, + [3597] = 131, + [3598] = 2790, + [3599] = 639, + [3600] = 3532, + [3601] = 3158, + [3602] = 2811, + [3603] = 949, + [3604] = 2808, + [3605] = 3168, + [3606] = 3606, + [3607] = 2823, + [3608] = 2822, + [3609] = 1359, + [3610] = 2763, + [3611] = 2846, + [3612] = 3532, + [3613] = 3613, + [3614] = 950, + [3615] = 3606, + [3616] = 951, + [3617] = 3606, + [3618] = 3210, + [3619] = 943, + [3620] = 2802, + [3621] = 3128, + [3622] = 2824, + [3623] = 2807, + [3624] = 2808, + [3625] = 3174, + [3626] = 2822, + [3627] = 3157, + [3628] = 3158, + [3629] = 3180, + [3630] = 2834, + [3631] = 3159, + [3632] = 3160, + [3633] = 3161, + [3634] = 3162, + [3635] = 3163, + [3636] = 3164, + [3637] = 3165, + [3638] = 3181, + [3639] = 3182, + [3640] = 2837, + [3641] = 3166, + [3642] = 3167, + [3643] = 2881, + [3644] = 3169, + [3645] = 944, + [3646] = 3192, + [3647] = 1491, + [3648] = 945, + [3649] = 130, + [3650] = 2710, + [3651] = 2824, + [3652] = 3192, + [3653] = 640, + [3654] = 2723, + [3655] = 759, + [3656] = 936, + [3657] = 946, + [3658] = 947, + [3659] = 2802, + [3660] = 3128, + [3661] = 3532, + [3662] = 1420, + [3663] = 1410, + [3664] = 939, + [3665] = 940, + [3666] = 941, + [3667] = 2795, + [3668] = 3192, + [3669] = 639, + [3670] = 1647, + [3671] = 2860, + [3672] = 3192, + [3673] = 2873, + [3674] = 2897, + [3675] = 3210, + [3676] = 944, + [3677] = 945, + [3678] = 2848, + [3679] = 2810, + [3680] = 640, + [3681] = 2840, + [3682] = 2878, + [3683] = 2844, + [3684] = 946, + [3685] = 947, + [3686] = 2712, + [3687] = 2713, + [3688] = 2716, + [3689] = 2719, [3690] = 3690, - [3691] = 3656, + [3691] = 3691, [3692] = 3692, - [3693] = 3656, - [3694] = 3656, - [3695] = 3656, - [3696] = 3641, - [3697] = 1952, - [3698] = 3674, - [3699] = 3699, - [3700] = 3656, - [3701] = 3656, - [3702] = 3598, - [3703] = 3703, - [3704] = 3663, - [3705] = 3663, - [3706] = 3660, - [3707] = 3656, - [3708] = 3628, - [3709] = 3656, - [3710] = 3674, - [3711] = 3711, - [3712] = 3627, - [3713] = 3656, - [3714] = 3619, - [3715] = 2122, - [3716] = 3623, - [3717] = 3663, - [3718] = 3656, - [3719] = 3656, - [3720] = 3720, - [3721] = 3660, - [3722] = 3722, - [3723] = 3723, - [3724] = 3724, - [3725] = 3725, - [3726] = 3726, - [3727] = 3230, - [3728] = 3227, - [3729] = 3231, - [3730] = 3730, - [3731] = 3731, - [3732] = 3732, - [3733] = 2147, - [3734] = 3734, - [3735] = 3732, - [3736] = 3730, - [3737] = 3737, - [3738] = 3738, - [3739] = 3732, - [3740] = 3732, - [3741] = 3732, - [3742] = 3742, - [3743] = 3627, - [3744] = 3730, - [3745] = 3239, - [3746] = 3746, - [3747] = 3747, - [3748] = 3748, - [3749] = 3730, - [3750] = 1388, - [3751] = 3730, - [3752] = 3608, - [3753] = 3243, - [3754] = 3225, - [3755] = 3730, - [3756] = 3722, - [3757] = 3722, - [3758] = 3730, - [3759] = 3549, - [3760] = 3732, - [3761] = 1298, - [3762] = 3732, - [3763] = 3598, - [3764] = 3245, - [3765] = 1307, - [3766] = 3233, - [3767] = 1296, - [3768] = 1394, - [3769] = 3249, - [3770] = 3722, - [3771] = 3771, - [3772] = 3730, - [3773] = 3641, - [3774] = 3238, - [3775] = 3252, - [3776] = 3256, - [3777] = 3777, - [3778] = 3628, - [3779] = 3726, - [3780] = 3732, - [3781] = 3222, - [3782] = 3226, - [3783] = 3551, - [3784] = 3784, - [3785] = 3785, - [3786] = 3786, - [3787] = 3786, - [3788] = 1339, - [3789] = 1337, - [3790] = 1336, - [3791] = 1335, - [3792] = 1334, - [3793] = 1333, - [3794] = 1332, - [3795] = 1329, - [3796] = 807, - [3797] = 1319, - [3798] = 1342, - [3799] = 3785, - [3800] = 3800, - [3801] = 3786, - [3802] = 3786, - [3803] = 1353, - [3804] = 798, - [3805] = 811, - [3806] = 1312, - [3807] = 1314, - [3808] = 1321, - [3809] = 1322, - [3810] = 3786, - [3811] = 1311, - [3812] = 1343, - [3813] = 1347, - [3814] = 1349, - [3815] = 1351, - [3816] = 1352, - [3817] = 1355, - [3818] = 1310, - [3819] = 1354, - [3820] = 1344, - [3821] = 3785, - [3822] = 804, - [3823] = 1365, - [3824] = 1345, - [3825] = 1350, - [3826] = 1359, - [3827] = 1348, - [3828] = 1320, - [3829] = 3785, - [3830] = 1317, - [3831] = 1315, - [3832] = 1313, - [3833] = 1325, - [3834] = 1340, - [3835] = 1331, - [3836] = 1341, - [3837] = 3837, - [3838] = 3800, - [3839] = 3839, - [3840] = 814, - [3841] = 3841, - [3842] = 797, - [3843] = 3837, - [3844] = 3785, - [3845] = 3800, - [3846] = 1346, - [3847] = 3786, - [3848] = 1326, - [3849] = 1324, - [3850] = 1327, - [3851] = 1330, - [3852] = 1361, - [3853] = 3837, - [3854] = 1328, - [3855] = 3785, - [3856] = 1356, - [3857] = 1360, - [3858] = 3837, - [3859] = 1323, - [3860] = 1316, - [3861] = 3837, + [3693] = 2893, + [3694] = 3691, + [3695] = 3692, + [3696] = 2811, + [3697] = 1093, + [3698] = 2900, + [3699] = 2868, + [3700] = 2849, + [3701] = 2905, + [3702] = 2650, + [3703] = 2910, + [3704] = 3690, + [3705] = 2850, + [3706] = 2904, + [3707] = 938, + [3708] = 2797, + [3709] = 3691, + [3710] = 3692, + [3711] = 2845, + [3712] = 2811, + [3713] = 2871, + [3714] = 942, + [3715] = 949, + [3716] = 1344, + [3717] = 943, + [3718] = 2449, + [3719] = 2825, + [3720] = 2559, + [3721] = 2819, + [3722] = 2814, + [3723] = 2800, + [3724] = 2801, + [3725] = 2856, + [3726] = 2831, + [3727] = 2710, + [3728] = 2723, + [3729] = 950, + [3730] = 2811, + [3731] = 951, + [3732] = 3690, + [3733] = 2855, + [3734] = 2858, + [3735] = 2770, + [3736] = 2903, + [3737] = 2798, + [3738] = 2646, + [3739] = 2647, + [3740] = 2649, + [3741] = 2823, + [3742] = 1643, + [3743] = 2636, + [3744] = 1424, + [3745] = 2915, + [3746] = 1397, + [3747] = 2846, + [3748] = 2919, + [3749] = 2889, + [3750] = 2909, + [3751] = 1482, + [3752] = 2841, + [3753] = 130, + [3754] = 2911, + [3755] = 1396, + [3756] = 1379, + [3757] = 1383, + [3758] = 1398, + [3759] = 2436, + [3760] = 2892, + [3761] = 2920, + [3762] = 1422, + [3763] = 2907, + [3764] = 2881, + [3765] = 2883, + [3766] = 2885, + [3767] = 2886, + [3768] = 2888, + [3769] = 2891, + [3770] = 952, + [3771] = 2861, + [3772] = 2902, + [3773] = 2864, + [3774] = 131, + [3775] = 2445, + [3776] = 1371, + [3777] = 2921, + [3778] = 2877, + [3779] = 1401, + [3780] = 1402, + [3781] = 1413, + [3782] = 1414, + [3783] = 1415, + [3784] = 1416, + [3785] = 1418, + [3786] = 1425, + [3787] = 1376, + [3788] = 2851, + [3789] = 2867, + [3790] = 2880, + [3791] = 2438, + [3792] = 2914, + [3793] = 2717, + [3794] = 2846, + [3795] = 1307, + [3796] = 1304, + [3797] = 3192, + [3798] = 3192, + [3799] = 3192, + [3800] = 2899, + [3801] = 936, + [3802] = 1315, + [3803] = 2924, + [3804] = 2863, + [3805] = 2898, + [3806] = 2901, + [3807] = 2894, + [3808] = 2869, + [3809] = 2724, + [3810] = 1390, + [3811] = 1392, + [3812] = 2876, + [3813] = 2887, + [3814] = 1374, + [3815] = 1375, + [3816] = 2922, + [3817] = 1404, + [3818] = 1405, + [3819] = 1406, + [3820] = 1407, + [3821] = 1408, + [3822] = 1409, + [3823] = 1411, + [3824] = 1412, + [3825] = 1417, + [3826] = 2925, + [3827] = 2839, + [3828] = 2928, + [3829] = 2865, + [3830] = 2437, + [3831] = 1377, + [3832] = 2828, + [3833] = 2739, + [3834] = 3192, + [3835] = 1234, + [3836] = 2725, + [3837] = 1367, + [3838] = 1368, + [3839] = 1369, + [3840] = 1491, + [3841] = 1432, + [3842] = 1450, + [3843] = 1449, + [3844] = 1440, + [3845] = 1380, + [3846] = 1435, + [3847] = 1438, + [3848] = 1453, + [3849] = 1381, + [3850] = 1382, + [3851] = 1384, + [3852] = 1386, + [3853] = 1387, + [3854] = 1388, + [3855] = 1447, + [3856] = 1389, + [3857] = 1391, + [3858] = 1448, + [3859] = 1442, + [3860] = 1439, + [3861] = 1436, [3862] = 1394, - [3863] = 1357, - [3864] = 813, - [3865] = 3786, - [3866] = 3866, - [3867] = 3785, - [3868] = 3837, - [3869] = 1388, - [3870] = 3837, - [3871] = 3871, - [3872] = 1358, - [3873] = 3873, - [3874] = 3874, - [3875] = 3873, - [3876] = 3876, - [3877] = 3608, - [3878] = 3876, - [3879] = 3874, - [3880] = 3880, - [3881] = 3876, - [3882] = 3873, - [3883] = 3617, - [3884] = 3884, - [3885] = 3874, - [3886] = 3886, - [3887] = 3887, - [3888] = 3876, - [3889] = 3887, - [3890] = 3598, - [3891] = 3628, - [3892] = 3648, - [3893] = 3874, - [3894] = 3887, - [3895] = 3876, - [3896] = 3896, - [3897] = 3876, - [3898] = 3898, - [3899] = 3620, - [3900] = 3887, - [3901] = 3874, - [3902] = 3876, - [3903] = 3635, - [3904] = 3874, - [3905] = 3896, - [3906] = 3627, - [3907] = 3632, - [3908] = 3876, - [3909] = 3876, - [3910] = 3887, - [3911] = 3887, - [3912] = 3876, - [3913] = 3873, - [3914] = 3874, - [3915] = 3641, - [3916] = 3896, - [3917] = 3896, - [3918] = 3876, - [3919] = 3887, - [3920] = 3551, - [3921] = 3549, - [3922] = 3922, - [3923] = 3876, - [3924] = 3267, - [3925] = 3925, - [3926] = 3926, - [3927] = 3927, + [3863] = 1385, + [3864] = 1419, + [3865] = 1395, + [3866] = 1084, + [3867] = 3205, + [3868] = 1370, + [3869] = 3869, + [3870] = 2844, + [3871] = 2868, + [3872] = 942, + [3873] = 943, + [3874] = 938, + [3875] = 2902, + [3876] = 2914, + [3877] = 2861, + [3878] = 2889, + [3879] = 2864, + [3880] = 936, + [3881] = 2851, + [3882] = 946, + [3883] = 2907, + [3884] = 947, + [3885] = 2922, + [3886] = 2928, + [3887] = 2898, + [3888] = 2744, + [3889] = 754, + [3890] = 753, + [3891] = 752, + [3892] = 2801, + [3893] = 751, + [3894] = 756, + [3895] = 757, + [3896] = 2860, + [3897] = 755, + [3898] = 2449, + [3899] = 2445, + [3900] = 2899, + [3901] = 2869, + [3902] = 2893, + [3903] = 1311, + [3904] = 1310, + [3905] = 2904, + [3906] = 1643, + [3907] = 1427, + [3908] = 1647, + [3909] = 1309, + [3910] = 2900, + [3911] = 2819, + [3912] = 2814, + [3913] = 1426, + [3914] = 2800, + [3915] = 759, + [3916] = 2856, + [3917] = 2881, + [3918] = 2846, + [3919] = 2802, + [3920] = 3128, + [3921] = 2831, + [3922] = 2849, + [3923] = 2828, + [3924] = 3924, + [3925] = 2850, + [3926] = 2807, + [3927] = 2808, [3928] = 3928, - [3929] = 3929, - [3930] = 3664, - [3931] = 3931, - [3932] = 3932, - [3933] = 3933, - [3934] = 3926, - [3935] = 3283, - [3936] = 3288, - [3937] = 3283, - [3938] = 3938, - [3939] = 3288, - [3940] = 3271, - [3941] = 3282, - [3942] = 3267, - [3943] = 3271, - [3944] = 3282, - [3945] = 3945, - [3946] = 3946, - [3947] = 3947, - [3948] = 3282, - [3949] = 3949, - [3950] = 3283, - [3951] = 3951, - [3952] = 3933, - [3953] = 3953, - [3954] = 3659, - [3955] = 3955, - [3956] = 3945, - [3957] = 3957, - [3958] = 3288, - [3959] = 3959, - [3960] = 3960, - [3961] = 3961, - [3962] = 3955, - [3963] = 3931, - [3964] = 3931, - [3965] = 3965, - [3966] = 3267, - [3967] = 3967, + [3929] = 3174, + [3930] = 2822, + [3931] = 2883, + [3932] = 2858, + [3933] = 2891, + [3934] = 2878, + [3935] = 2885, + [3936] = 2795, + [3937] = 939, + [3938] = 3157, + [3939] = 2873, + [3940] = 2845, + [3941] = 2892, + [3942] = 940, + [3943] = 3943, + [3944] = 2909, + [3945] = 941, + [3946] = 2840, + [3947] = 2841, + [3948] = 131, + [3949] = 3158, + [3950] = 2871, + [3951] = 2846, + [3952] = 1344, + [3953] = 2903, + [3954] = 949, + [3955] = 3180, + [3956] = 2834, + [3957] = 3159, + [3958] = 3160, + [3959] = 3161, + [3960] = 3162, + [3961] = 3163, + [3962] = 3164, + [3963] = 3165, + [3964] = 3181, + [3965] = 3182, + [3966] = 1315, + [3967] = 2837, [3968] = 3968, - [3969] = 3271, - [3970] = 3970, - [3971] = 3970, - [3972] = 3972, - [3973] = 3973, - [3974] = 103, - [3975] = 3975, - [3976] = 3975, - [3977] = 3977, - [3978] = 3977, - [3979] = 102, - [3980] = 3975, - [3981] = 3970, - [3982] = 3982, - [3983] = 3977, - [3984] = 3970, - [3985] = 3975, - [3986] = 3986, - [3987] = 3970, - [3988] = 3988, - [3989] = 3989, - [3990] = 3975, - [3991] = 3975, - [3992] = 3977, - [3993] = 3977, - [3994] = 3994, - [3995] = 3988, - [3996] = 3977, - [3997] = 3977, - [3998] = 3975, - [3999] = 3970, - [4000] = 3970, - [4001] = 4001, - [4002] = 4002, - [4003] = 4003, - [4004] = 4004, - [4005] = 4005, - [4006] = 4003, - [4007] = 4007, - [4008] = 4008, + [3969] = 2886, + [3970] = 2867, + [3971] = 2880, + [3972] = 2863, + [3973] = 2901, + [3974] = 2894, + [3975] = 944, + [3976] = 2925, + [3977] = 2919, + [3978] = 945, + [3979] = 2877, + [3980] = 2839, + [3981] = 1312, + [3982] = 2865, + [3983] = 2876, + [3984] = 3166, + [3985] = 2905, + [3986] = 950, + [3987] = 2887, + [3988] = 3167, + [3989] = 3168, + [3990] = 1575, + [3991] = 951, + [3992] = 2910, + [3993] = 2897, + [3994] = 2888, + [3995] = 2855, + [3996] = 1430, + [3997] = 1558, + [3998] = 754, + [3999] = 2848, + [4000] = 753, + [4001] = 752, + [4002] = 2921, + [4003] = 751, + [4004] = 2744, + [4005] = 756, + [4006] = 3169, + [4007] = 757, + [4008] = 952, [4009] = 4009, - [4010] = 4010, - [4011] = 4011, - [4012] = 4012, - [4013] = 4013, - [4014] = 4014, - [4015] = 4015, - [4016] = 4016, - [4017] = 4017, - [4018] = 4018, - [4019] = 4015, - [4020] = 3551, - [4021] = 4011, + [4010] = 2811, + [4011] = 755, + [4012] = 2911, + [4013] = 2846, + [4014] = 2924, + [4015] = 130, + [4016] = 2846, + [4017] = 1428, + [4018] = 2920, + [4019] = 2915, + [4020] = 759, + [4021] = 2559, [4022] = 4022, - [4023] = 4001, + [4023] = 4022, [4024] = 4024, - [4025] = 4007, - [4026] = 4013, - [4027] = 4027, - [4028] = 4028, - [4029] = 4028, + [4025] = 935, + [4026] = 1307, + [4027] = 4022, + [4028] = 2822, + [4029] = 4029, [4030] = 4030, - [4031] = 2024, + [4031] = 4031, [4032] = 4032, - [4033] = 4033, - [4034] = 4003, - [4035] = 4011, - [4036] = 2017, - [4037] = 4009, - [4038] = 4002, - [4039] = 4013, - [4040] = 4011, - [4041] = 4041, - [4042] = 4042, - [4043] = 2015, - [4044] = 4022, - [4045] = 4012, - [4046] = 4005, - [4047] = 4047, - [4048] = 4004, - [4049] = 4042, - [4050] = 4050, - [4051] = 4008, - [4052] = 4041, - [4053] = 4014, - [4054] = 4013, - [4055] = 4024, + [4033] = 4022, + [4034] = 4022, + [4035] = 2802, + [4036] = 4036, + [4037] = 4024, + [4038] = 4030, + [4039] = 4022, + [4040] = 2449, + [4041] = 4030, + [4042] = 2808, + [4043] = 1647, + [4044] = 4032, + [4045] = 4032, + [4046] = 4024, + [4047] = 4032, + [4048] = 4022, + [4049] = 4024, + [4050] = 1308, + [4051] = 4032, + [4052] = 4024, + [4053] = 4032, + [4054] = 4024, + [4055] = 4022, [4056] = 4024, - [4057] = 4014, - [4058] = 4015, - [4059] = 4032, - [4060] = 4022, - [4061] = 4032, - [4062] = 4005, - [4063] = 4012, - [4064] = 4015, - [4065] = 4008, - [4066] = 4004, - [4067] = 4028, - [4068] = 4027, - [4069] = 4002, - [4070] = 4041, - [4071] = 4027, - [4072] = 4042, - [4073] = 2213, - [4074] = 4042, - [4075] = 4016, - [4076] = 4001, - [4077] = 4041, - [4078] = 4002, - [4079] = 4017, - [4080] = 4008, - [4081] = 4016, - [4082] = 4012, - [4083] = 4015, - [4084] = 4084, - [4085] = 4017, - [4086] = 4014, - [4087] = 4001, - [4088] = 4013, - [4089] = 4024, - [4090] = 4004, - [4091] = 4005, - [4092] = 4022, - [4093] = 4016, - [4094] = 4014, - [4095] = 4017, - [4096] = 4009, - [4097] = 2141, - [4098] = 3271, - [4099] = 4011, - [4100] = 2207, - [4101] = 4016, - [4102] = 2211, - [4103] = 4003, - [4104] = 4013, - [4105] = 4013, - [4106] = 4017, - [4107] = 4003, - [4108] = 4022, - [4109] = 4005, - [4110] = 4004, - [4111] = 4007, - [4112] = 4042, - [4113] = 4113, - [4114] = 4041, - [4115] = 4024, - [4116] = 4116, - [4117] = 4013, - [4118] = 4001, - [4119] = 4024, - [4120] = 4011, - [4121] = 4007, - [4122] = 4041, - [4123] = 4042, + [4057] = 4057, + [4058] = 2849, + [4059] = 4059, + [4060] = 2837, + [4061] = 4022, + [4062] = 4032, + [4063] = 2834, + [4064] = 3691, + [4065] = 3692, + [4066] = 4022, + [4067] = 4067, + [4068] = 4022, + [4069] = 4059, + [4070] = 4022, + [4071] = 1454, + [4072] = 4072, + [4073] = 4032, + [4074] = 4024, + [4075] = 2445, + [4076] = 4057, + [4077] = 4059, + [4078] = 4057, + [4079] = 4059, + [4080] = 4022, + [4081] = 2860, + [4082] = 4057, + [4083] = 4059, + [4084] = 4057, + [4085] = 4059, + [4086] = 4057, + [4087] = 2807, + [4088] = 4059, + [4089] = 4057, + [4090] = 4059, + [4091] = 4057, + [4092] = 4059, + [4093] = 3210, + [4094] = 2903, + [4095] = 4095, + [4096] = 4067, + [4097] = 2864, + [4098] = 3205, + [4099] = 1643, + [4100] = 4030, + [4101] = 4101, + [4102] = 4032, + [4103] = 4022, + [4104] = 4024, + [4105] = 2797, + [4106] = 4022, + [4107] = 4022, + [4108] = 2797, + [4109] = 4030, + [4110] = 4095, + [4111] = 4067, + [4112] = 1304, + [4113] = 4095, + [4114] = 4095, + [4115] = 4067, + [4116] = 4022, + [4117] = 4095, + [4118] = 4067, + [4119] = 4030, + [4120] = 4095, + [4121] = 4067, + [4122] = 4057, + [4123] = 2871, [4124] = 4124, - [4125] = 4003, - [4126] = 4004, - [4127] = 4005, - [4128] = 4001, - [4129] = 4022, - [4130] = 4009, - [4131] = 4002, - [4132] = 4027, - [4133] = 3283, - [4134] = 3282, - [4135] = 4014, - [4136] = 4013, - [4137] = 4008, - [4138] = 4012, - [4139] = 4011, - [4140] = 4140, - [4141] = 4027, - [4142] = 4028, - [4143] = 4014, - [4144] = 4013, - [4145] = 4015, - [4146] = 4016, - [4147] = 3267, - [4148] = 4015, - [4149] = 4028, - [4150] = 4016, - [4151] = 4017, - [4152] = 4017, - [4153] = 4124, - [4154] = 4001, - [4155] = 4022, - [4156] = 4124, - [4157] = 4032, - [4158] = 4012, - [4159] = 4032, - [4160] = 4027, - [4161] = 4028, - [4162] = 4008, - [4163] = 4050, - [4164] = 4009, - [4165] = 4002, - [4166] = 4009, - [4167] = 4032, - [4168] = 4027, - [4169] = 4169, - [4170] = 4170, - [4171] = 4005, - [4172] = 4004, - [4173] = 4012, - [4174] = 4042, - [4175] = 4041, - [4176] = 4028, - [4177] = 4008, - [4178] = 4003, - [4179] = 3288, - [4180] = 4002, - [4181] = 4124, - [4182] = 4009, - [4183] = 4183, - [4184] = 4024, - [4185] = 4032, - [4186] = 4186, - [4187] = 4187, - [4188] = 107, - [4189] = 4189, - [4190] = 4190, - [4191] = 4191, - [4192] = 4192, - [4193] = 4193, - [4194] = 4194, - [4195] = 4195, - [4196] = 4196, - [4197] = 4197, - [4198] = 4198, - [4199] = 4199, - [4200] = 4200, - [4201] = 4201, - [4202] = 4202, - [4203] = 4203, - [4204] = 4204, - [4205] = 4205, - [4206] = 4206, - [4207] = 4207, - [4208] = 4208, - [4209] = 4209, - [4210] = 4210, - [4211] = 4211, - [4212] = 4212, - [4213] = 4202, - [4214] = 4214, - [4215] = 4215, - [4216] = 4216, - [4217] = 4217, - [4218] = 4218, - [4219] = 4219, - [4220] = 4220, - [4221] = 4221, - [4222] = 4222, - [4223] = 4223, - [4224] = 4224, - [4225] = 4225, - [4226] = 4198, - [4227] = 4227, - [4228] = 4228, - [4229] = 4197, - [4230] = 4230, - [4231] = 4231, - [4232] = 4232, - [4233] = 4233, - [4234] = 4234, - [4235] = 4235, - [4236] = 4236, - [4237] = 4237, - [4238] = 4238, - [4239] = 4239, - [4240] = 4240, - [4241] = 4241, - [4242] = 4242, - [4243] = 4243, - [4244] = 4244, - [4245] = 4193, - [4246] = 4192, - [4247] = 4191, - [4248] = 4248, - [4249] = 4187, + [4125] = 2877, + [4126] = 2919, + [4127] = 936, + [4128] = 2873, + [4129] = 2848, + [4130] = 2868, + [4131] = 938, + [4132] = 1643, + [4133] = 2925, + [4134] = 939, + [4135] = 940, + [4136] = 941, + [4137] = 1420, + [4138] = 2841, + [4139] = 2876, + [4140] = 2860, + [4141] = 4124, + [4142] = 2845, + [4143] = 2873, + [4144] = 2897, + [4145] = 944, + [4146] = 945, + [4147] = 2839, + [4148] = 942, + [4149] = 2851, + [4150] = 4124, + [4151] = 1575, + [4152] = 1558, + [4153] = 1478, + [4154] = 1487, + [4155] = 4124, + [4156] = 2850, + [4157] = 4124, + [4158] = 2865, + [4159] = 4124, + [4160] = 1647, + [4161] = 3691, + [4162] = 3692, + [4163] = 2892, + [4164] = 4124, + [4165] = 4124, + [4166] = 1344, + [4167] = 943, + [4168] = 946, + [4169] = 947, + [4170] = 3692, + [4171] = 2867, + [4172] = 4124, + [4173] = 2880, + [4174] = 2535, + [4175] = 4124, + [4176] = 4124, + [4177] = 2904, + [4178] = 2893, + [4179] = 2900, + [4180] = 2889, + [4181] = 2849, + [4182] = 4124, + [4183] = 2848, + [4184] = 2922, + [4185] = 4124, + [4186] = 2534, + [4187] = 4124, + [4188] = 2539, + [4189] = 2850, + [4190] = 2904, + [4191] = 2845, + [4192] = 2871, + [4193] = 949, + [4194] = 3583, + [4195] = 2868, + [4196] = 4124, + [4197] = 950, + [4198] = 951, + [4199] = 2924, + [4200] = 2855, + [4201] = 2858, + [4202] = 2899, + [4203] = 2903, + [4204] = 4124, + [4205] = 2928, + [4206] = 2893, + [4207] = 2911, + [4208] = 130, + [4209] = 131, + [4210] = 2861, + [4211] = 1315, + [4212] = 2911, + [4213] = 4213, + [4214] = 2919, + [4215] = 2855, + [4216] = 2909, + [4217] = 2924, + [4218] = 2841, + [4219] = 4124, + [4220] = 2897, + [4221] = 2858, + [4222] = 2545, + [4223] = 2892, + [4224] = 952, + [4225] = 2861, + [4226] = 2864, + [4227] = 4124, + [4228] = 2877, + [4229] = 2851, + [4230] = 2867, + [4231] = 2880, + [4232] = 2449, + [4233] = 2901, + [4234] = 2894, + [4235] = 2445, + [4236] = 2922, + [4237] = 2925, + [4238] = 2839, + [4239] = 2928, + [4240] = 2865, + [4241] = 4124, + [4242] = 3691, + [4243] = 2901, + [4244] = 2900, + [4245] = 2894, + [4246] = 2909, + [4247] = 4247, + [4248] = 1567, + [4249] = 4249, [4250] = 4250, - [4251] = 4190, - [4252] = 4252, - [4253] = 4253, - [4254] = 4254, - [4255] = 4204, - [4256] = 4256, + [4251] = 2445, + [4252] = 1556, + [4253] = 1568, + [4254] = 1569, + [4255] = 4249, + [4256] = 4249, [4257] = 4250, - [4258] = 4258, - [4259] = 4259, - [4260] = 4260, - [4261] = 4232, + [4258] = 3691, + [4259] = 4249, + [4260] = 2449, + [4261] = 3692, [4262] = 4262, - [4263] = 4263, - [4264] = 4259, - [4265] = 4234, - [4266] = 4266, - [4267] = 4259, - [4268] = 4268, - [4269] = 4269, - [4270] = 4236, - [4271] = 4268, - [4272] = 4259, - [4273] = 4273, - [4274] = 4231, - [4275] = 4266, - [4276] = 4202, - [4277] = 4277, - [4278] = 4278, - [4279] = 4259, - [4280] = 4280, - [4281] = 4187, - [4282] = 4282, - [4283] = 4283, - [4284] = 4259, - [4285] = 4253, - [4286] = 4250, - [4287] = 4204, - [4288] = 4259, - [4289] = 4218, - [4290] = 4187, - [4291] = 4248, - [4292] = 4204, - [4293] = 4248, - [4294] = 4259, - [4295] = 4278, - [4296] = 4266, - [4297] = 4256, - [4298] = 4268, - [4299] = 4236, - [4300] = 4300, - [4301] = 4234, - [4302] = 4232, - [4303] = 4231, - [4304] = 4283, - [4305] = 4259, - [4306] = 4250, - [4307] = 4253, - [4308] = 4187, - [4309] = 4248, - [4310] = 4277, - [4311] = 4253, - [4312] = 4259, - [4313] = 4236, - [4314] = 4234, - [4315] = 4232, - [4316] = 4231, - [4317] = 4256, - [4318] = 4280, - [4319] = 4282, - [4320] = 4191, - [4321] = 4192, - [4322] = 4193, - [4323] = 4190, - [4324] = 4191, - [4325] = 4192, - [4326] = 4193, - [4327] = 4197, - [4328] = 4198, - [4329] = 4239, - [4330] = 4254, - [4331] = 4235, - [4332] = 4197, - [4333] = 4198, - [4334] = 4283, - [4335] = 4254, - [4336] = 4259, - [4337] = 4224, - [4338] = 4209, - [4339] = 4195, - [4340] = 4194, - [4341] = 4202, - [4342] = 4268, - [4343] = 4343, - [4344] = 4344, - [4345] = 4345, - [4346] = 4266, - [4347] = 4278, - [4348] = 4202, - [4349] = 4259, - [4350] = 4280, - [4351] = 4282, - [4352] = 4352, - [4353] = 4218, - [4354] = 4204, - [4355] = 4250, - [4356] = 4259, - [4357] = 4256, - [4358] = 4278, - [4359] = 4266, - [4360] = 4268, - [4361] = 4254, - [4362] = 4253, - [4363] = 4187, - [4364] = 4248, - [4365] = 4198, - [4366] = 4197, - [4367] = 4277, - [4368] = 4283, - [4369] = 4236, - [4370] = 4234, - [4371] = 4232, - [4372] = 4231, - [4373] = 4259, - [4374] = 4254, - [4375] = 4190, - [4376] = 4193, - [4377] = 4192, - [4378] = 4191, - [4379] = 4191, - [4380] = 4250, - [4381] = 4192, - [4382] = 4259, - [4383] = 4190, - [4384] = 4193, - [4385] = 4239, - [4386] = 4197, - [4387] = 4198, - [4388] = 4388, - [4389] = 4268, - [4390] = 4202, - [4391] = 4280, - [4392] = 4282, - [4393] = 4393, - [4394] = 4282, - [4395] = 4193, - [4396] = 4192, - [4397] = 4191, - [4398] = 4253, - [4399] = 4399, - [4400] = 4259, - [4401] = 4218, - [4402] = 4204, - [4403] = 4193, - [4404] = 4192, - [4405] = 4231, - [4406] = 4253, - [4407] = 4232, - [4408] = 4234, - [4409] = 4191, - [4410] = 4248, - [4411] = 4187, - [4412] = 4248, - [4413] = 4236, - [4414] = 4187, - [4415] = 4253, - [4416] = 4250, - [4417] = 4259, - [4418] = 4250, - [4419] = 4419, - [4420] = 4236, - [4421] = 4278, - [4422] = 4232, - [4423] = 4231, - [4424] = 4266, - [4425] = 4268, - [4426] = 4197, - [4427] = 4193, - [4428] = 4192, - [4429] = 4191, - [4430] = 4236, - [4431] = 4248, - [4432] = 4187, - [4433] = 4248, - [4434] = 4253, - [4435] = 4250, - [4436] = 4253, - [4437] = 4191, - [4438] = 4192, - [4439] = 4193, - [4440] = 4198, - [4441] = 4197, - [4442] = 4442, + [4263] = 4249, + [4264] = 4247, + [4265] = 4250, + [4266] = 4249, + [4267] = 2534, + [4268] = 1572, + [4269] = 2535, + [4270] = 2539, + [4271] = 4247, + [4272] = 1356, + [4273] = 4250, + [4274] = 1561, + [4275] = 1350, + [4276] = 4262, + [4277] = 4249, + [4278] = 1574, + [4279] = 1578, + [4280] = 4247, + [4281] = 1647, + [4282] = 4250, + [4283] = 4247, + [4284] = 1557, + [4285] = 1579, + [4286] = 4247, + [4287] = 1581, + [4288] = 1570, + [4289] = 4247, + [4290] = 4250, + [4291] = 4249, + [4292] = 4247, + [4293] = 1643, + [4294] = 4250, + [4295] = 2545, + [4296] = 4250, + [4297] = 1365, + [4298] = 3691, + [4299] = 1491, + [4300] = 3691, + [4301] = 4301, + [4302] = 1378, + [4303] = 2725, + [4304] = 4304, + [4305] = 1307, + [4306] = 3692, + [4307] = 3692, + [4308] = 4301, + [4309] = 1403, + [4310] = 3692, + [4311] = 2724, + [4312] = 1491, + [4313] = 3692, + [4314] = 956, + [4315] = 1372, + [4316] = 1366, + [4317] = 4304, + [4318] = 1393, + [4319] = 4319, + [4320] = 3691, + [4321] = 4304, + [4322] = 3691, + [4323] = 3692, + [4324] = 955, + [4325] = 1304, + [4326] = 3691, + [4327] = 2717, + [4328] = 4301, + [4329] = 2739, + [4330] = 4330, + [4331] = 4331, + [4332] = 4332, + [4333] = 4333, + [4334] = 3692, + [4335] = 4335, + [4336] = 4330, + [4337] = 1575, + [4338] = 4330, + [4339] = 4333, + [4340] = 4330, + [4341] = 4036, + [4342] = 3691, + [4343] = 4333, + [4344] = 4332, + [4345] = 4330, + [4346] = 4335, + [4347] = 4029, + [4348] = 1307, + [4349] = 4335, + [4350] = 1304, + [4351] = 4332, + [4352] = 4330, + [4353] = 4335, + [4354] = 1558, + [4355] = 4335, + [4356] = 1359, + [4357] = 4333, + [4358] = 4333, + [4359] = 4330, + [4360] = 4333, + [4361] = 1364, + [4362] = 1357, + [4363] = 4332, + [4364] = 1491, + [4365] = 3691, + [4366] = 3692, + [4367] = 4332, + [4368] = 4335, + [4369] = 4333, + [4370] = 4335, + [4371] = 4332, + [4372] = 4332, + [4373] = 1420, + [4374] = 1401, + [4375] = 1385, + [4376] = 1405, + [4377] = 1397, + [4378] = 1369, + [4379] = 2545, + [4380] = 1414, + [4381] = 1392, + [4382] = 1415, + [4383] = 1395, + [4384] = 2534, + [4385] = 1406, + [4386] = 1383, + [4387] = 1367, + [4388] = 3691, + [4389] = 3692, + [4390] = 1384, + [4391] = 1386, + [4392] = 4304, + [4393] = 1368, + [4394] = 1370, + [4395] = 1407, + [4396] = 1429, + [4397] = 1377, + [4398] = 1375, + [4399] = 1396, + [4400] = 1387, + [4401] = 1408, + [4402] = 1409, + [4403] = 1410, + [4404] = 1411, + [4405] = 1412, + [4406] = 1356, + [4407] = 1374, + [4408] = 1416, + [4409] = 1402, + [4410] = 4301, + [4411] = 2539, + [4412] = 1422, + [4413] = 1350, + [4414] = 1417, + [4415] = 1418, + [4416] = 1388, + [4417] = 1390, + [4418] = 1380, + [4419] = 1381, + [4420] = 1425, + [4421] = 2535, + [4422] = 1404, + [4423] = 1371, + [4424] = 1234, + [4425] = 1419, + [4426] = 1376, + [4427] = 1389, + [4428] = 1398, + [4429] = 4319, + [4430] = 1424, + [4431] = 1413, + [4432] = 1394, + [4433] = 1391, + [4434] = 1379, + [4435] = 1382, + [4436] = 3169, + [4437] = 3180, + [4438] = 3182, + [4439] = 4439, + [4440] = 4440, + [4441] = 4441, + [4442] = 4304, [4443] = 4443, - [4444] = 4444, + [4444] = 3162, [4445] = 4445, - [4446] = 4446, - [4447] = 4447, - [4448] = 145, - [4449] = 4449, - [4450] = 148, - [4451] = 4451, - [4452] = 157, - [4453] = 160, - [4454] = 171, - [4455] = 140, - [4456] = 174, - [4457] = 4457, - [4458] = 4458, - [4459] = 4459, - [4460] = 4460, - [4461] = 4461, - [4462] = 4462, - [4463] = 4463, - [4464] = 4464, + [4446] = 2535, + [4447] = 2889, + [4448] = 4439, + [4449] = 3692, + [4450] = 4440, + [4451] = 3159, + [4452] = 2539, + [4453] = 4453, + [4454] = 3163, + [4455] = 4455, + [4456] = 4445, + [4457] = 2876, + [4458] = 2725, + [4459] = 3160, + [4460] = 2545, + [4461] = 4301, + [4462] = 2739, + [4463] = 935, + [4464] = 3692, [4465] = 4465, - [4466] = 4466, - [4467] = 4467, - [4468] = 4468, - [4469] = 4469, - [4470] = 177, - [4471] = 4471, - [4472] = 179, - [4473] = 4443, - [4474] = 151, - [4475] = 182, - [4476] = 4476, - [4477] = 4477, - [4478] = 4467, - [4479] = 4479, - [4480] = 183, - [4481] = 184, - [4482] = 4482, - [4483] = 187, - [4484] = 188, - [4485] = 189, - [4486] = 4467, - [4487] = 144, - [4488] = 156, - [4489] = 127, - [4490] = 4467, - [4491] = 4491, - [4492] = 181, - [4493] = 4477, - [4494] = 4457, - [4495] = 4495, - [4496] = 4443, - [4497] = 178, - [4498] = 4458, - [4499] = 142, - [4500] = 176, - [4501] = 4501, - [4502] = 4502, - [4503] = 4444, - [4504] = 4491, - [4505] = 4449, - [4506] = 4471, - [4507] = 4467, - [4508] = 4460, - [4509] = 4461, - [4510] = 4468, - [4511] = 4451, - [4512] = 4464, - [4513] = 4513, - [4514] = 4476, - [4515] = 4466, - [4516] = 4462, - [4517] = 4502, - [4518] = 150, - [4519] = 4467, - [4520] = 149, - [4521] = 115, - [4522] = 4469, - [4523] = 4523, - [4524] = 4467, - [4525] = 116, - [4526] = 4465, - [4527] = 4467, - [4528] = 117, - [4529] = 4529, - [4530] = 4467, - [4531] = 118, - [4532] = 119, - [4533] = 4467, - [4534] = 120, - [4535] = 4535, - [4536] = 4467, - [4537] = 4467, - [4538] = 121, - [4539] = 122, - [4540] = 123, - [4541] = 4463, - [4542] = 4459, - [4543] = 124, - [4544] = 4544, - [4545] = 4545, - [4546] = 4482, - [4547] = 126, - [4548] = 4548, - [4549] = 153, - [4550] = 113, - [4551] = 130, - [4552] = 4552, - [4553] = 131, - [4554] = 132, - [4555] = 133, - [4556] = 4442, - [4557] = 134, - [4558] = 135, - [4559] = 4523, - [4560] = 136, - [4561] = 138, - [4562] = 139, - [4563] = 141, - [4564] = 147, - [4565] = 114, - [4566] = 155, - [4567] = 158, - [4568] = 4442, - [4569] = 162, - [4570] = 164, - [4571] = 166, - [4572] = 167, - [4573] = 4447, - [4574] = 4446, - [4575] = 4445, - [4576] = 168, - [4577] = 172, - [4578] = 173, - [4579] = 175, - [4580] = 4544, - [4581] = 128, - [4582] = 192, - [4583] = 4479, - [4584] = 4495, - [4585] = 191, - [4586] = 4586, - [4587] = 4587, - [4588] = 190, - [4589] = 185, - [4590] = 4482, - [4591] = 170, - [4592] = 169, - [4593] = 165, - [4594] = 163, - [4595] = 161, - [4596] = 159, - [4597] = 4459, - [4598] = 4463, - [4599] = 4465, - [4600] = 4466, - [4601] = 4468, - [4602] = 4602, - [4603] = 4603, - [4604] = 4471, - [4605] = 4587, - [4606] = 4444, - [4607] = 4443, - [4608] = 4477, - [4609] = 4445, - [4610] = 4610, - [4611] = 4446, - [4612] = 4612, - [4613] = 4613, - [4614] = 4614, - [4615] = 4479, - [4616] = 4451, - [4617] = 4447, - [4618] = 4618, - [4619] = 4464, - [4620] = 4587, - [4621] = 4545, - [4622] = 4622, - [4623] = 4623, - [4624] = 4476, - [4625] = 4625, - [4626] = 4626, - [4627] = 4535, - [4628] = 4467, - [4629] = 4502, - [4630] = 4630, - [4631] = 4631, - [4632] = 4632, - [4633] = 4445, - [4634] = 4535, - [4635] = 4635, - [4636] = 4446, - [4637] = 4637, - [4638] = 4447, - [4639] = 4502, - [4640] = 4457, - [4641] = 4458, - [4642] = 4460, - [4643] = 4461, - [4644] = 4462, - [4645] = 4469, - [4646] = 4646, - [4647] = 4647, - [4648] = 4648, - [4649] = 4463, + [4466] = 4441, + [4467] = 4304, + [4468] = 3158, + [4469] = 3691, + [4470] = 3164, + [4471] = 2534, + [4472] = 4472, + [4473] = 4473, + [4474] = 4443, + [4475] = 3161, + [4476] = 2899, + [4477] = 935, + [4478] = 3165, + [4479] = 4445, + [4480] = 4472, + [4481] = 4439, + [4482] = 3128, + [4483] = 3166, + [4484] = 4473, + [4485] = 4440, + [4486] = 3167, + [4487] = 3181, + [4488] = 4301, + [4489] = 4455, + [4490] = 2724, + [4491] = 3168, + [4492] = 4441, + [4493] = 2717, + [4494] = 3174, + [4495] = 3691, + [4496] = 3157, + [4497] = 1575, + [4498] = 1440, + [4499] = 4301, + [4500] = 3210, + [4501] = 1344, + [4502] = 1436, + [4503] = 1315, + [4504] = 3205, + [4505] = 1453, + [4506] = 3691, + [4507] = 1420, + [4508] = 1442, + [4509] = 3692, + [4510] = 1447, + [4511] = 1435, + [4512] = 4512, + [4513] = 1449, + [4514] = 1350, + [4515] = 1448, + [4516] = 1356, + [4517] = 1454, + [4518] = 4518, + [4519] = 1558, + [4520] = 4304, + [4521] = 1450, + [4522] = 4522, + [4523] = 4518, + [4524] = 4518, + [4525] = 1438, + [4526] = 4526, + [4527] = 3691, + [4528] = 1491, + [4529] = 3692, + [4530] = 1432, + [4531] = 1439, + [4532] = 3205, + [4533] = 1356, + [4534] = 1399, + [4535] = 1429, + [4536] = 944, + [4537] = 4304, + [4538] = 945, + [4539] = 946, + [4540] = 947, + [4541] = 1350, + [4542] = 4301, + [4543] = 130, + [4544] = 4453, + [4545] = 131, + [4546] = 4445, + [4547] = 4441, + [4548] = 4439, + [4549] = 4440, + [4550] = 2825, + [4551] = 942, + [4552] = 3210, + [4553] = 943, + [4554] = 4301, + [4555] = 950, + [4556] = 1344, + [4557] = 4453, + [4558] = 951, + [4559] = 1304, + [4560] = 4304, + [4561] = 2798, + [4562] = 952, + [4563] = 1307, + [4564] = 4301, + [4565] = 4304, + [4566] = 4301, + [4567] = 1234, + [4568] = 4304, + [4569] = 4304, + [4570] = 4301, + [4571] = 1315, + [4572] = 2823, + [4573] = 936, + [4574] = 4574, + [4575] = 938, + [4576] = 939, + [4577] = 940, + [4578] = 941, + [4579] = 949, + [4580] = 3163, + [4581] = 1430, + [4582] = 4440, + [4583] = 1420, + [4584] = 3159, + [4585] = 1427, + [4586] = 4301, + [4587] = 3169, + [4588] = 1426, + [4589] = 4445, + [4590] = 4304, + [4591] = 1575, + [4592] = 3162, + [4593] = 955, + [4594] = 1558, + [4595] = 4512, + [4596] = 3163, + [4597] = 3160, + [4598] = 956, + [4599] = 4599, + [4600] = 4600, + [4601] = 3158, + [4602] = 3167, + [4603] = 3128, + [4604] = 3174, + [4605] = 3157, + [4606] = 955, + [4607] = 3174, + [4608] = 3164, + [4609] = 3165, + [4610] = 4445, + [4611] = 4441, + [4612] = 4439, + [4613] = 4440, + [4614] = 1093, + [4615] = 3168, + [4616] = 4522, + [4617] = 4439, + [4618] = 1491, + [4619] = 4453, + [4620] = 4620, + [4621] = 3180, + [4622] = 3161, + [4623] = 4304, + [4624] = 3157, + [4625] = 4301, + [4626] = 3158, + [4627] = 3691, + [4628] = 956, + [4629] = 3180, + [4630] = 3159, + [4631] = 3160, + [4632] = 3161, + [4633] = 3162, + [4634] = 3166, + [4635] = 3164, + [4636] = 3165, + [4637] = 3181, + [4638] = 3182, + [4639] = 3169, + [4640] = 4441, + [4641] = 3128, + [4642] = 3182, + [4643] = 3692, + [4644] = 3166, + [4645] = 3167, + [4646] = 1428, + [4647] = 3168, + [4648] = 3181, + [4649] = 4649, [4650] = 4650, - [4651] = 4465, - [4652] = 4652, - [4653] = 4447, - [4654] = 4446, - [4655] = 4445, - [4656] = 4466, - [4657] = 4468, - [4658] = 4479, - [4659] = 4659, - [4660] = 4471, - [4661] = 4482, - [4662] = 4523, - [4663] = 4444, - [4664] = 4664, - [4665] = 4548, - [4666] = 4477, + [4651] = 2725, + [4652] = 1478, + [4653] = 1312, + [4654] = 4654, + [4655] = 4649, + [4656] = 4656, + [4657] = 1311, + [4658] = 1310, + [4659] = 1309, + [4660] = 4650, + [4661] = 2717, + [4662] = 4662, + [4663] = 4654, + [4664] = 4649, + [4665] = 4656, + [4666] = 4666, [4667] = 4667, - [4668] = 4668, - [4669] = 4669, - [4670] = 4476, - [4671] = 4671, - [4672] = 4672, - [4673] = 4464, - [4674] = 4659, - [4675] = 4675, - [4676] = 4491, - [4677] = 4449, - [4678] = 4451, - [4679] = 4464, - [4680] = 4476, - [4681] = 4681, - [4682] = 4682, - [4683] = 4451, - [4684] = 4449, - [4685] = 4491, - [4686] = 4523, - [4687] = 4687, - [4688] = 4502, - [4689] = 4689, - [4690] = 4529, - [4691] = 4587, - [4692] = 4692, - [4693] = 4693, - [4694] = 4467, - [4695] = 4695, - [4696] = 4535, - [4697] = 4697, - [4698] = 4457, - [4699] = 4459, - [4700] = 4463, - [4701] = 4465, - [4702] = 4466, - [4703] = 4468, - [4704] = 4471, - [4705] = 4444, - [4706] = 4445, - [4707] = 4443, - [4708] = 4544, - [4709] = 4545, - [4710] = 4552, - [4711] = 4477, - [4712] = 4548, - [4713] = 4458, - [4714] = 4482, - [4715] = 4460, - [4716] = 4552, - [4717] = 4717, - [4718] = 4502, - [4719] = 4461, - [4720] = 4462, - [4721] = 4469, - [4722] = 4469, - [4723] = 4462, - [4724] = 4461, - [4725] = 4460, - [4726] = 4458, - [4727] = 4459, - [4728] = 4728, - [4729] = 4469, - [4730] = 4462, - [4731] = 4586, - [4732] = 4459, - [4733] = 4733, - [4734] = 4467, - [4735] = 4457, - [4736] = 4495, - [4737] = 4461, - [4738] = 4586, - [4739] = 4695, - [4740] = 4740, - [4741] = 4502, - [4742] = 4622, - [4743] = 4460, - [4744] = 4535, - [4745] = 4614, - [4746] = 4479, - [4747] = 4747, - [4748] = 4458, - [4749] = 4535, - [4750] = 4586, - [4751] = 4529, - [4752] = 4614, - [4753] = 4482, - [4754] = 4754, + [4668] = 4650, + [4669] = 4654, + [4670] = 4649, + [4671] = 4574, + [4672] = 4656, + [4673] = 4654, + [4674] = 4656, + [4675] = 4441, + [4676] = 4676, + [4677] = 4656, + [4678] = 1420, + [4679] = 4656, + [4680] = 1454, + [4681] = 1432, + [4682] = 1450, + [4683] = 1449, + [4684] = 1440, + [4685] = 4656, + [4686] = 4656, + [4687] = 4656, + [4688] = 1435, + [4689] = 4656, + [4690] = 1399, + [4691] = 1438, + [4692] = 1453, + [4693] = 1429, + [4694] = 4656, + [4695] = 1448, + [4696] = 1442, + [4697] = 4656, + [4698] = 4656, + [4699] = 1439, + [4700] = 4656, + [4701] = 1436, + [4702] = 4702, + [4703] = 4656, + [4704] = 2724, + [4705] = 4705, + [4706] = 754, + [4707] = 753, + [4708] = 752, + [4709] = 751, + [4710] = 756, + [4711] = 757, + [4712] = 755, + [4713] = 4439, + [4714] = 4650, + [4715] = 917, + [4716] = 4702, + [4717] = 4654, + [4718] = 4650, + [4719] = 1487, + [4720] = 4720, + [4721] = 3205, + [4722] = 4304, + [4723] = 4301, + [4724] = 4654, + [4725] = 4649, + [4726] = 4656, + [4727] = 2739, + [4728] = 4702, + [4729] = 4654, + [4730] = 4649, + [4731] = 4445, + [4732] = 4656, + [4733] = 4440, + [4734] = 3210, + [4735] = 4650, + [4736] = 1447, + [4737] = 4737, + [4738] = 4440, + [4739] = 1575, + [4740] = 4445, + [4741] = 4741, + [4742] = 4441, + [4743] = 4439, + [4744] = 4744, + [4745] = 4440, + [4746] = 1304, + [4747] = 3168, + [4748] = 4748, + [4749] = 3182, + [4750] = 4750, + [4751] = 1579, + [4752] = 4741, + [4753] = 4441, + [4754] = 4439, [4755] = 4755, - [4756] = 4447, - [4757] = 4446, - [4758] = 4552, - [4759] = 4523, - [4760] = 4523, - [4761] = 4614, - [4762] = 4548, - [4763] = 4545, - [4764] = 4457, - [4765] = 4668, - [4766] = 4622, - [4767] = 4476, - [4768] = 4464, - [4769] = 4622, - [4770] = 4614, - [4771] = 4451, - [4772] = 4449, - [4773] = 4491, - [4774] = 4586, - [4775] = 4622, - [4776] = 4552, - [4777] = 4447, - [4778] = 4659, - [4779] = 4548, - [4780] = 4446, - [4781] = 4545, - [4782] = 4544, - [4783] = 4587, - [4784] = 4482, - [4785] = 4785, - [4786] = 4445, - [4787] = 4754, - [4788] = 4523, - [4789] = 4587, - [4790] = 4479, - [4791] = 4467, - [4792] = 4529, - [4793] = 4491, - [4794] = 4449, - [4795] = 4479, - [4796] = 4469, - [4797] = 4622, - [4798] = 4586, - [4799] = 4459, - [4800] = 4463, - [4801] = 4462, - [4802] = 4465, - [4803] = 4466, - [4804] = 4461, - [4805] = 4468, - [4806] = 4460, - [4807] = 4471, - [4808] = 4444, - [4809] = 4443, - [4810] = 4477, - [4811] = 4458, - [4812] = 4614, - [4813] = 4457, - [4814] = 4814, - [4815] = 4477, - [4816] = 4463, - [4817] = 4465, - [4818] = 4451, - [4819] = 4586, - [4820] = 4476, - [4821] = 4443, - [4822] = 4495, - [4823] = 4444, - [4824] = 4471, - [4825] = 4467, - [4826] = 4544, - [4827] = 4545, - [4828] = 4466, - [4829] = 4464, - [4830] = 4548, - [4831] = 4814, - [4832] = 4695, - [4833] = 4468, - [4834] = 4552, - [4835] = 4835, - [4836] = 4836, - [4837] = 4837, - [4838] = 4838, - [4839] = 4839, - [4840] = 4840, - [4841] = 4841, - [4842] = 4842, - [4843] = 4843, - [4844] = 4844, + [4756] = 3158, + [4757] = 1557, + [4758] = 4758, + [4759] = 4759, + [4760] = 4760, + [4761] = 1567, + [4762] = 1581, + [4763] = 4763, + [4764] = 3157, + [4765] = 4765, + [4766] = 3158, + [4767] = 4767, + [4768] = 4768, + [4769] = 4769, + [4770] = 3180, + [4771] = 3159, + [4772] = 3160, + [4773] = 3161, + [4774] = 3162, + [4775] = 3163, + [4776] = 3164, + [4777] = 3165, + [4778] = 3181, + [4779] = 4741, + [4780] = 3182, + [4781] = 4741, + [4782] = 4662, + [4783] = 4441, + [4784] = 4439, + [4785] = 3166, + [4786] = 1569, + [4787] = 3167, + [4788] = 1572, + [4789] = 4741, + [4790] = 3168, + [4791] = 3169, + [4792] = 1308, + [4793] = 4793, + [4794] = 4440, + [4795] = 4445, + [4796] = 1304, + [4797] = 4441, + [4798] = 4439, + [4799] = 4440, + [4800] = 2837, + [4801] = 4440, + [4802] = 4802, + [4803] = 4803, + [4804] = 4767, + [4805] = 759, + [4806] = 4741, + [4807] = 4763, + [4808] = 4765, + [4809] = 4465, + [4810] = 4810, + [4811] = 1427, + [4812] = 1428, + [4813] = 4767, + [4814] = 1430, + [4815] = 2802, + [4816] = 3128, + [4817] = 1426, + [4818] = 4818, + [4819] = 4819, + [4820] = 4767, + [4821] = 4821, + [4822] = 4822, + [4823] = 4744, + [4824] = 4767, + [4825] = 1556, + [4826] = 4826, + [4827] = 2807, + [4828] = 2808, + [4829] = 4767, + [4830] = 4830, + [4831] = 4301, + [4832] = 3174, + [4833] = 4826, + [4834] = 4834, + [4835] = 2822, + [4836] = 4744, + [4837] = 3128, + [4838] = 3591, + [4839] = 3174, + [4840] = 2834, + [4841] = 4741, + [4842] = 2837, + [4843] = 4741, + [4844] = 4793, [4845] = 4845, - [4846] = 4846, - [4847] = 4847, + [4846] = 4767, + [4847] = 1399, [4848] = 4848, - [4849] = 4849, - [4850] = 4850, - [4851] = 4851, - [4852] = 4852, - [4853] = 4853, - [4854] = 4854, - [4855] = 4855, - [4856] = 4856, - [4857] = 4857, + [4849] = 2744, + [4850] = 1307, + [4851] = 4741, + [4852] = 1491, + [4853] = 1568, + [4854] = 1364, + [4855] = 4744, + [4856] = 3180, + [4857] = 1561, [4858] = 4858, - [4859] = 4859, - [4860] = 4860, - [4861] = 4861, - [4862] = 4862, - [4863] = 4851, - [4864] = 4864, - [4865] = 4865, - [4866] = 4866, - [4867] = 4866, - [4868] = 4868, - [4869] = 4861, - [4870] = 4840, - [4871] = 4871, - [4872] = 4862, - [4873] = 4858, - [4874] = 4874, - [4875] = 4856, - [4876] = 4865, - [4877] = 4877, - [4878] = 4878, - [4879] = 4879, - [4880] = 4880, - [4881] = 4862, - [4882] = 4871, - [4883] = 4883, - [4884] = 4884, - [4885] = 4842, - [4886] = 4886, - [4887] = 4845, - [4888] = 4888, - [4889] = 4844, - [4890] = 4837, - [4891] = 4839, - [4892] = 4857, - [4893] = 4893, - [4894] = 4835, - [4895] = 4895, - [4896] = 4896, - [4897] = 4897, - [4898] = 4835, - [4899] = 4884, - [4900] = 4900, - [4901] = 4901, - [4902] = 4841, - [4903] = 4893, - [4904] = 4904, - [4905] = 4905, - [4906] = 4906, - [4907] = 4907, - [4908] = 4904, - [4909] = 4848, - [4910] = 4842, - [4911] = 4911, - [4912] = 4912, - [4913] = 4913, - [4914] = 4883, - [4915] = 4865, - [4916] = 4916, - [4917] = 4866, - [4918] = 4918, - [4919] = 4861, - [4920] = 4857, + [4859] = 1570, + [4860] = 2834, + [4861] = 4826, + [4862] = 3157, + [4863] = 3158, + [4864] = 3180, + [4865] = 3159, + [4866] = 3160, + [4867] = 3161, + [4868] = 3162, + [4869] = 3163, + [4870] = 3164, + [4871] = 3165, + [4872] = 3181, + [4873] = 3182, + [4874] = 3166, + [4875] = 3167, + [4876] = 3168, + [4877] = 3169, + [4878] = 3159, + [4879] = 4744, + [4880] = 3166, + [4881] = 3169, + [4882] = 3128, + [4883] = 4826, + [4884] = 3174, + [4885] = 3160, + [4886] = 3161, + [4887] = 3162, + [4888] = 4445, + [4889] = 4304, + [4890] = 4741, + [4891] = 3163, + [4892] = 4737, + [4893] = 1574, + [4894] = 2802, + [4895] = 1558, + [4896] = 2807, + [4897] = 2808, + [4898] = 1578, + [4899] = 2822, + [4900] = 1307, + [4901] = 4826, + [4902] = 1429, + [4903] = 4741, + [4904] = 4441, + [4905] = 4439, + [4906] = 4741, + [4907] = 4445, + [4908] = 4453, + [4909] = 4909, + [4910] = 3167, + [4911] = 3164, + [4912] = 4744, + [4913] = 4741, + [4914] = 4445, + [4915] = 4915, + [4916] = 3165, + [4917] = 3157, + [4918] = 3181, + [4919] = 4737, + [4920] = 4920, [4921] = 4921, - [4922] = 4858, + [4922] = 1386, [4923] = 4923, - [4924] = 4856, - [4925] = 4845, - [4926] = 4895, - [4927] = 4839, - [4928] = 4928, + [4924] = 1387, + [4925] = 4925, + [4926] = 4926, + [4927] = 4927, + [4928] = 1370, [4929] = 4929, - [4930] = 4895, - [4931] = 4931, - [4932] = 4901, - [4933] = 4912, + [4930] = 4930, + [4931] = 1388, + [4932] = 4925, + [4933] = 1371, [4934] = 4934, - [4935] = 4859, - [4936] = 4849, + [4935] = 4935, + [4936] = 1389, [4937] = 4937, - [4938] = 4904, - [4939] = 4939, - [4940] = 4940, - [4941] = 4906, - [4942] = 4934, - [4943] = 4943, - [4944] = 4944, - [4945] = 4945, - [4946] = 4939, - [4947] = 4947, - [4948] = 4948, - [4949] = 4897, - [4950] = 4950, - [4951] = 4865, - [4952] = 4837, - [4953] = 4866, - [4954] = 4954, - [4955] = 4861, - [4956] = 4956, - [4957] = 4886, - [4958] = 4858, - [4959] = 4959, - [4960] = 4856, - [4961] = 4845, - [4962] = 4838, - [4963] = 4963, - [4964] = 4964, - [4965] = 4965, - [4966] = 4868, - [4967] = 4950, + [4938] = 4938, + [4939] = 1391, + [4940] = 4929, + [4941] = 4930, + [4942] = 4942, + [4943] = 1402, + [4944] = 1413, + [4945] = 1414, + [4946] = 4946, + [4947] = 1398, + [4948] = 4929, + [4949] = 4930, + [4950] = 4304, + [4951] = 4951, + [4952] = 4301, + [4953] = 4929, + [4954] = 4929, + [4955] = 1383, + [4956] = 1415, + [4957] = 4929, + [4958] = 4929, + [4959] = 4942, + [4960] = 4960, + [4961] = 4961, + [4962] = 1304, + [4963] = 1422, + [4964] = 4930, + [4965] = 4961, + [4966] = 1416, + [4967] = 4967, [4968] = 4968, - [4969] = 4840, - [4970] = 4970, - [4971] = 4846, - [4972] = 4847, - [4973] = 4850, - [4974] = 4974, - [4975] = 4861, - [4976] = 4976, - [4977] = 4856, - [4978] = 4864, - [4979] = 4931, - [4980] = 4868, - [4981] = 4944, - [4982] = 4963, - [4983] = 4868, - [4984] = 4963, - [4985] = 4985, - [4986] = 4976, - [4987] = 4987, - [4988] = 4865, - [4989] = 4989, - [4990] = 4852, - [4991] = 4991, - [4992] = 4854, - [4993] = 4855, - [4994] = 4994, - [4995] = 4883, - [4996] = 4964, - [4997] = 4839, - [4998] = 4989, - [4999] = 4999, - [5000] = 4835, - [5001] = 4843, - [5002] = 4921, - [5003] = 5003, - [5004] = 4845, - [5005] = 4874, - [5006] = 4965, - [5007] = 4965, - [5008] = 5008, - [5009] = 4923, - [5010] = 5010, - [5011] = 4921, - [5012] = 4860, - [5013] = 4851, - [5014] = 4939, - [5015] = 4866, - [5016] = 4848, - [5017] = 4893, - [5018] = 4879, - [5019] = 4994, - [5020] = 4842, - [5021] = 4976, - [5022] = 4900, - [5023] = 4911, - [5024] = 4844, - [5025] = 4877, - [5026] = 4835, - [5027] = 4884, - [5028] = 4900, + [4969] = 4969, + [4970] = 1418, + [4971] = 4971, + [4972] = 4972, + [4973] = 4972, + [4974] = 4929, + [4975] = 4975, + [4976] = 4930, + [4977] = 1425, + [4978] = 1394, + [4979] = 1376, + [4980] = 4980, + [4981] = 4981, + [4982] = 1385, + [4983] = 1419, + [4984] = 4984, + [4985] = 4925, + [4986] = 4986, + [4987] = 4934, + [4988] = 4927, + [4989] = 4938, + [4990] = 4938, + [4991] = 4935, + [4992] = 4992, + [4993] = 4993, + [4994] = 4993, + [4995] = 4925, + [4996] = 4942, + [4997] = 1395, + [4998] = 4993, + [4999] = 4938, + [5000] = 4993, + [5001] = 4942, + [5002] = 3210, + [5003] = 1396, + [5004] = 5004, + [5005] = 4975, + [5006] = 4935, + [5007] = 4445, + [5008] = 4441, + [5009] = 4439, + [5010] = 4440, + [5011] = 4972, + [5012] = 5012, + [5013] = 1393, + [5014] = 4938, + [5015] = 4993, + [5016] = 4942, + [5017] = 4967, + [5018] = 5018, + [5019] = 4972, + [5020] = 4992, + [5021] = 3205, + [5022] = 4993, + [5023] = 4972, + [5024] = 4967, + [5025] = 4968, + [5026] = 4304, + [5027] = 1307, + [5028] = 4969, [5029] = 5029, - [5030] = 4886, - [5031] = 4934, - [5032] = 4861, - [5033] = 5033, - [5034] = 4906, - [5035] = 4862, - [5036] = 4871, - [5037] = 4904, - [5038] = 5038, - [5039] = 4888, - [5040] = 4907, - [5041] = 4859, - [5042] = 4895, - [5043] = 4921, - [5044] = 4878, - [5045] = 4916, - [5046] = 4840, - [5047] = 4964, - [5048] = 5048, - [5049] = 4900, - [5050] = 4884, - [5051] = 4837, - [5052] = 4944, - [5053] = 5003, - [5054] = 5010, - [5055] = 4896, - [5056] = 4900, - [5057] = 4897, - [5058] = 4893, - [5059] = 4959, - [5060] = 4856, - [5061] = 4871, - [5062] = 4950, - [5063] = 4858, - [5064] = 4937, - [5065] = 4883, - [5066] = 4895, - [5067] = 4929, - [5068] = 4918, - [5069] = 4928, - [5070] = 4880, - [5071] = 4884, - [5072] = 4904, - [5073] = 4878, - [5074] = 4861, - [5075] = 4912, - [5076] = 4874, - [5077] = 4901, - [5078] = 4912, - [5079] = 4858, - [5080] = 4839, - [5081] = 4866, - [5082] = 4901, - [5083] = 4865, - [5084] = 4868, - [5085] = 4991, - [5086] = 4837, - [5087] = 4895, - [5088] = 4864, - [5089] = 4844, - [5090] = 4906, - [5091] = 4934, - [5092] = 4842, - [5093] = 4841, - [5094] = 4896, - [5095] = 4856, - [5096] = 4888, - [5097] = 4893, - [5098] = 4921, - [5099] = 4906, - [5100] = 4934, - [5101] = 5101, - [5102] = 4844, - [5103] = 4963, - [5104] = 4848, - [5105] = 4886, - [5106] = 4840, - [5107] = 4937, - [5108] = 4976, - [5109] = 4965, - [5110] = 4964, - [5111] = 4985, - [5112] = 4851, - [5113] = 4987, - [5114] = 4836, - [5115] = 4939, - [5116] = 4994, - [5117] = 4959, - [5118] = 4913, - [5119] = 4989, - [5120] = 4847, - [5121] = 4950, - [5122] = 4921, - [5123] = 4850, - [5124] = 5124, - [5125] = 4871, - [5126] = 5008, - [5127] = 4912, - [5128] = 5010, - [5129] = 4940, - [5130] = 4943, - [5131] = 4945, - [5132] = 4947, - [5133] = 4948, - [5134] = 4901, - [5135] = 4857, - [5136] = 4911, - [5137] = 4844, - [5138] = 4877, - [5139] = 4916, - [5140] = 4950, - [5141] = 4959, - [5142] = 4852, - [5143] = 4964, - [5144] = 4854, - [5145] = 4931, - [5146] = 4855, - [5147] = 4965, - [5148] = 5148, - [5149] = 4871, - [5150] = 5150, - [5151] = 4968, - [5152] = 4974, - [5153] = 5153, - [5154] = 4976, - [5155] = 4994, - [5156] = 4989, - [5157] = 4959, - [5158] = 1361, - [5159] = 5008, - [5160] = 4987, - [5161] = 5010, - [5162] = 4862, - [5163] = 5163, - [5164] = 4911, - [5165] = 4877, - [5166] = 5166, - [5167] = 1365, - [5168] = 1948, - [5169] = 4851, - [5170] = 4880, - [5171] = 4893, - [5172] = 4879, - [5173] = 4879, - [5174] = 4883, - [5175] = 4862, - [5176] = 4871, - [5177] = 4888, - [5178] = 4896, - [5179] = 4851, - [5180] = 4994, - [5181] = 4868, - [5182] = 4907, - [5183] = 5008, - [5184] = 4929, - [5185] = 4918, - [5186] = 4928, - [5187] = 4911, - [5188] = 4877, - [5189] = 4901, - [5190] = 4970, - [5191] = 4912, - [5192] = 4994, - [5193] = 4985, - [5194] = 4937, - [5195] = 5008, - [5196] = 4940, - [5197] = 4943, - [5198] = 4945, - [5199] = 4911, - [5200] = 4877, - [5201] = 4947, - [5202] = 4948, - [5203] = 4950, - [5204] = 4994, - [5205] = 4959, - [5206] = 4963, - [5207] = 4964, - [5208] = 4877, - [5209] = 5153, - [5210] = 4944, - [5211] = 4965, - [5212] = 4968, - [5213] = 5101, - [5214] = 5003, - [5215] = 4956, - [5216] = 4974, - [5217] = 4976, - [5218] = 4886, - [5219] = 4839, - [5220] = 4883, - [5221] = 4843, - [5222] = 4845, - [5223] = 4939, - [5224] = 4934, - [5225] = 4906, - [5226] = 4904, - [5227] = 4859, - [5228] = 4895, - [5229] = 4921, - [5230] = 4970, - [5231] = 4916, - [5232] = 5232, - [5233] = 5101, - [5234] = 5003, - [5235] = 4884, - [5236] = 4835, - [5237] = 4843, - [5238] = 4897, - [5239] = 4893, - [5240] = 1947, - [5241] = 4842, - [5242] = 4837, - [5243] = 4886, - [5244] = 5101, - [5245] = 5003, - [5246] = 4850, - [5247] = 4847, - [5248] = 4840, - [5249] = 4883, - [5250] = 4880, - [5251] = 4840, - [5252] = 4845, - [5253] = 5101, - [5254] = 5003, - [5255] = 4868, - [5256] = 4886, - [5257] = 5101, - [5258] = 4963, - [5259] = 5008, - [5260] = 5003, - [5261] = 4837, - [5262] = 4848, - [5263] = 4900, - [5264] = 4844, - [5265] = 4862, - [5266] = 4944, - [5267] = 4842, - [5268] = 4841, - [5269] = 4965, + [5030] = 5030, + [5031] = 1378, + [5032] = 1390, + [5033] = 4961, + [5034] = 4972, + [5035] = 1365, + [5036] = 5036, + [5037] = 1392, + [5038] = 4934, + [5039] = 4961, + [5040] = 4927, + [5041] = 1366, + [5042] = 4972, + [5043] = 4967, + [5044] = 4968, + [5045] = 4969, + [5046] = 4967, + [5047] = 4968, + [5048] = 4969, + [5049] = 1084, + [5050] = 1372, + [5051] = 4968, + [5052] = 4969, + [5053] = 1367, + [5054] = 1374, + [5055] = 4961, + [5056] = 4929, + [5057] = 4929, + [5058] = 4935, + [5059] = 4930, + [5060] = 1368, + [5061] = 1375, + [5062] = 4301, + [5063] = 4992, + [5064] = 5064, + [5065] = 4925, + [5066] = 4934, + [5067] = 4927, + [5068] = 1369, + [5069] = 4929, + [5070] = 4935, + [5071] = 4445, + [5072] = 4930, + [5073] = 5004, + [5074] = 4930, + [5075] = 4441, + [5076] = 4439, + [5077] = 1403, + [5078] = 1404, + [5079] = 4440, + [5080] = 1405, + [5081] = 1406, + [5082] = 1407, + [5083] = 5064, + [5084] = 1401, + [5085] = 5085, + [5086] = 4942, + [5087] = 4975, + [5088] = 4993, + [5089] = 4942, + [5090] = 5090, + [5091] = 1380, + [5092] = 5092, + [5093] = 5093, + [5094] = 4975, + [5095] = 2797, + [5096] = 4938, + [5097] = 1408, + [5098] = 1381, + [5099] = 4925, + [5100] = 1409, + [5101] = 4937, + [5102] = 1410, + [5103] = 5103, + [5104] = 1411, + [5105] = 4929, + [5106] = 1412, + [5107] = 4934, + [5108] = 5108, + [5109] = 4930, + [5110] = 5012, + [5111] = 1417, + [5112] = 5112, + [5113] = 1379, + [5114] = 4925, + [5115] = 1377, + [5116] = 4934, + [5117] = 4927, + [5118] = 4934, + [5119] = 4927, + [5120] = 4935, + [5121] = 4938, + [5122] = 4980, + [5123] = 1424, + [5124] = 4984, + [5125] = 1397, + [5126] = 4935, + [5127] = 5004, + [5128] = 5128, + [5129] = 4992, + [5130] = 5130, + [5131] = 5036, + [5132] = 5036, + [5133] = 5036, + [5134] = 5036, + [5135] = 5036, + [5136] = 1382, + [5137] = 1384, + [5138] = 2851, + [5139] = 5139, + [5140] = 2900, + [5141] = 5139, + [5142] = 2877, + [5143] = 5139, + [5144] = 5012, + [5145] = 2899, + [5146] = 5139, + [5147] = 5147, + [5148] = 2919, + [5149] = 2909, + [5150] = 2845, + [5151] = 1315, + [5152] = 2841, + [5153] = 2848, + [5154] = 5012, + [5155] = 1487, + [5156] = 5139, + [5157] = 2871, + [5158] = 4445, + [5159] = 2849, + [5160] = 4441, + [5161] = 4439, + [5162] = 4440, + [5163] = 2889, + [5164] = 1344, + [5165] = 2868, + [5166] = 5139, + [5167] = 5012, + [5168] = 1478, + [5169] = 2850, + [5170] = 2861, + [5171] = 2864, + [5172] = 5012, + [5173] = 2903, + [5174] = 2867, + [5175] = 2880, + [5176] = 2897, + [5177] = 2860, + [5178] = 2904, + [5179] = 5179, + [5180] = 2873, + [5181] = 2901, + [5182] = 2894, + [5183] = 2855, + [5184] = 5184, + [5185] = 5139, + [5186] = 5012, + [5187] = 5187, + [5188] = 2858, + [5189] = 2922, + [5190] = 2925, + [5191] = 5191, + [5192] = 2839, + [5193] = 2928, + [5194] = 2911, + [5195] = 2865, + [5196] = 5196, + [5197] = 5012, + [5198] = 2876, + [5199] = 2893, + [5200] = 2924, + [5201] = 2892, + [5202] = 1359, + [5203] = 5203, + [5204] = 1575, + [5205] = 5012, + [5206] = 5206, + [5207] = 5012, + [5208] = 5012, + [5209] = 1574, + [5210] = 5210, + [5211] = 1572, + [5212] = 5012, + [5213] = 1567, + [5214] = 1558, + [5215] = 1558, + [5216] = 4441, + [5217] = 1558, + [5218] = 1578, + [5219] = 1568, + [5220] = 1357, + [5221] = 5012, + [5222] = 1570, + [5223] = 5012, + [5224] = 4445, + [5225] = 5012, + [5226] = 5206, + [5227] = 1420, + [5228] = 1491, + [5229] = 4439, + [5230] = 1557, + [5231] = 5203, + [5232] = 1575, + [5233] = 1575, + [5234] = 4301, + [5235] = 4440, + [5236] = 4440, + [5237] = 1350, + [5238] = 5012, + [5239] = 1569, + [5240] = 1356, + [5241] = 5012, + [5242] = 4304, + [5243] = 1579, + [5244] = 1364, + [5245] = 5210, + [5246] = 1556, + [5247] = 5247, + [5248] = 5012, + [5249] = 1561, + [5250] = 1581, + [5251] = 4441, + [5252] = 1411, + [5253] = 1403, + [5254] = 5012, + [5255] = 1375, + [5256] = 4445, + [5257] = 4445, + [5258] = 1365, + [5259] = 1417, + [5260] = 4441, + [5261] = 1385, + [5262] = 4440, + [5263] = 1390, + [5264] = 1401, + [5265] = 1392, + [5266] = 1402, + [5267] = 4439, + [5268] = 1377, + [5269] = 1379, + [5270] = 1419, + [5271] = 1381, + [5272] = 1404, + [5273] = 1382, + [5274] = 1384, + [5275] = 1413, + [5276] = 1412, + [5277] = 1405, + [5278] = 1422, + [5279] = 1368, + [5280] = 1369, + [5281] = 1374, + [5282] = 4439, + [5283] = 1406, + [5284] = 1391, + [5285] = 1414, + [5286] = 1378, + [5287] = 1386, + [5288] = 1387, + [5289] = 1380, + [5290] = 1395, + [5291] = 5291, + [5292] = 1383, + [5293] = 1394, + [5294] = 1415, + [5295] = 5291, + [5296] = 1407, + [5297] = 5297, + [5298] = 1416, + [5299] = 1398, + [5300] = 1424, + [5301] = 1093, + [5302] = 1366, + [5303] = 5303, + [5304] = 1397, + [5305] = 1418, + [5306] = 1372, + [5307] = 1425, + [5308] = 1408, + [5309] = 1388, + [5310] = 4440, + [5311] = 1396, + [5312] = 4441, + [5313] = 1409, + [5314] = 1389, + [5315] = 1410, + [5316] = 1376, + [5317] = 5012, + [5318] = 1482, + [5319] = 1370, + [5320] = 1367, + [5321] = 1371, + [5322] = 5297, + [5323] = 1393, + [5324] = 5291, + [5325] = 5297, + [5326] = 5297, + [5327] = 5297, + [5328] = 5291, + [5329] = 5012, + [5330] = 5012, + [5331] = 5297, + [5332] = 5291, + [5333] = 5012, + [5334] = 5012, + [5335] = 5297, + [5336] = 5291, + [5337] = 5012, + [5338] = 5291, + [5339] = 1478, + [5340] = 5297, + [5341] = 5291, + [5342] = 1558, + [5343] = 1431, + [5344] = 1487, + [5345] = 1575, + [5346] = 5012, + [5347] = 5347, + [5348] = 5347, + [5349] = 5291, + [5350] = 5350, + [5351] = 5350, + [5352] = 5297, + [5353] = 1435, + [5354] = 1356, + [5355] = 1438, + [5356] = 1350, + [5357] = 1453, + [5358] = 5291, + [5359] = 5297, + [5360] = 4441, + [5361] = 1449, + [5362] = 1447, + [5363] = 5297, + [5364] = 1448, + [5365] = 1440, + [5366] = 5366, + [5367] = 5347, + [5368] = 5297, + [5369] = 5291, + [5370] = 5350, + [5371] = 1436, + [5372] = 5350, + [5373] = 1429, + [5374] = 5297, + [5375] = 5297, + [5376] = 4440, + [5377] = 5012, + [5378] = 4439, + [5379] = 5291, + [5380] = 5297, + [5381] = 5012, + [5382] = 5012, + [5383] = 5383, + [5384] = 5297, + [5385] = 5012, + [5386] = 5347, + [5387] = 5350, + [5388] = 5291, + [5389] = 5297, + [5390] = 5291, + [5391] = 5347, + [5392] = 1450, + [5393] = 3583, + [5394] = 5350, + [5395] = 5012, + [5396] = 5297, + [5397] = 5291, + [5398] = 5347, + [5399] = 5350, + [5400] = 5012, + [5401] = 5347, + [5402] = 5291, + [5403] = 1442, + [5404] = 1432, + [5405] = 5347, + [5406] = 4445, + [5407] = 5350, + [5408] = 5350, + [5409] = 1491, + [5410] = 1439, + [5411] = 5291, + [5412] = 5347, + [5413] = 5291, + [5414] = 5414, + [5415] = 5415, + [5416] = 5416, + [5417] = 1431, + [5418] = 5291, + [5419] = 5297, + [5420] = 5414, + [5421] = 5414, + [5422] = 5414, + [5423] = 5291, + [5424] = 5297, + [5425] = 5414, + [5426] = 5414, + [5427] = 5414, + [5428] = 1431, + [5429] = 5414, + [5430] = 5416, + [5431] = 5415, + [5432] = 5414, + [5433] = 5416, + [5434] = 5415, + [5435] = 5416, + [5436] = 5414, + [5437] = 5416, + [5438] = 5415, + [5439] = 2682, + [5440] = 5416, + [5441] = 5415, + [5442] = 5416, + [5443] = 5415, + [5444] = 5414, + [5445] = 5414, + [5446] = 5414, + [5447] = 5414, + [5448] = 1561, + [5449] = 1557, + [5450] = 1567, + [5451] = 1570, + [5452] = 1579, + [5453] = 1581, + [5454] = 1556, + [5455] = 1568, + [5456] = 1574, + [5457] = 1578, + [5458] = 1572, + [5459] = 1569, + [5460] = 5414, + [5461] = 5414, + [5462] = 5414, + [5463] = 5414, + [5464] = 5415, + [5465] = 5465, + [5466] = 5466, + [5467] = 5467, + [5468] = 5467, + [5469] = 5465, + [5470] = 5465, + [5471] = 5466, + [5472] = 5472, + [5473] = 5473, + [5474] = 5465, + [5475] = 5297, + [5476] = 5466, + [5477] = 5291, + [5478] = 5291, + [5479] = 5465, + [5480] = 5297, + [5481] = 5465, + [5482] = 5297, + [5483] = 5465, + [5484] = 5466, + [5485] = 5291, + [5486] = 5466, + [5487] = 5487, + [5488] = 5487, + [5489] = 5487, + [5490] = 5465, + [5491] = 5465, + [5492] = 5291, + [5493] = 5466, + [5494] = 5466, + [5495] = 5466, + [5496] = 5473, + [5497] = 5291, + [5498] = 5297, + [5499] = 5466, + [5500] = 5466, + [5501] = 5467, + [5502] = 5297, + [5503] = 5503, + [5504] = 5467, + [5505] = 5466, + [5506] = 5466, + [5507] = 5467, + [5508] = 5291, + [5509] = 5473, + [5510] = 5510, + [5511] = 5467, + [5512] = 5465, + [5513] = 5466, + [5514] = 5465, + [5515] = 5473, + [5516] = 5487, + [5517] = 5487, + [5518] = 5473, + [5519] = 5467, + [5520] = 5520, + [5521] = 5465, + [5522] = 5465, + [5523] = 5466, + [5524] = 5465, + [5525] = 5297, + [5526] = 5487, + [5527] = 5527, + [5528] = 5487, + [5529] = 5465, + [5530] = 5487, + [5531] = 5466, + [5532] = 5466, + [5533] = 5465, + [5534] = 5467, + [5535] = 5465, + [5536] = 5466, + [5537] = 5487, + [5538] = 5466, + [5539] = 5466, + [5540] = 5467, + [5541] = 5466, + [5542] = 5465, + [5543] = 5543, + [5544] = 5291, + [5545] = 5297, + [5546] = 5546, + [5547] = 5547, + [5548] = 5546, + [5549] = 4029, + [5550] = 5543, + [5551] = 1454, + [5552] = 4036, + [5553] = 5553, + [5554] = 5554, + [5555] = 5297, + [5556] = 5554, + [5557] = 5543, + [5558] = 5546, + [5559] = 5559, + [5560] = 5291, + [5561] = 5546, + [5562] = 5562, + [5563] = 5563, + [5564] = 5291, + [5565] = 5565, + [5566] = 5554, + [5567] = 5559, + [5568] = 5553, + [5569] = 5543, + [5570] = 5554, + [5571] = 5297, + [5572] = 5553, + [5573] = 5562, + [5574] = 5574, + [5575] = 5297, + [5576] = 5554, + [5577] = 5291, + [5578] = 5578, + [5579] = 5543, + [5580] = 1429, + [5581] = 5581, + [5582] = 5543, + [5583] = 5546, + [5584] = 5554, + [5585] = 5291, + [5586] = 5543, + [5587] = 5546, + [5588] = 5565, + [5589] = 5297, + [5590] = 5553, + [5591] = 5291, + [5592] = 5546, + [5593] = 5554, + [5594] = 5297, + [5595] = 5546, + [5596] = 5565, + [5597] = 5565, + [5598] = 5559, + [5599] = 5565, + [5600] = 5559, + [5601] = 5565, + [5602] = 5565, + [5603] = 5562, + [5604] = 5559, + [5605] = 5565, + [5606] = 5559, + [5607] = 5562, + [5608] = 5562, + [5609] = 5559, + [5610] = 5562, + [5611] = 5562, + [5612] = 5559, + [5613] = 1605, + [5614] = 5562, + [5615] = 5559, + [5616] = 5559, + [5617] = 5565, + [5618] = 5562, + [5619] = 5565, + [5620] = 5562, + [5621] = 5562, + [5622] = 5565, + [5623] = 5559, + [5624] = 5565, + [5625] = 1603, + [5626] = 5559, + [5627] = 5562, + [5628] = 5565, + [5629] = 5559, + [5630] = 5565, + [5631] = 5559, + [5632] = 5562, + [5633] = 5565, + [5634] = 5562, + [5635] = 5559, + [5636] = 5559, + [5637] = 5565, + [5638] = 5562, + [5639] = 5565, + [5640] = 5562, + [5641] = 5565, + [5642] = 5559, + [5643] = 5562, + [5644] = 5559, + [5645] = 5562, + [5646] = 5562, + [5647] = 5647, + [5648] = 5559, + [5649] = 5647, + [5650] = 5562, + [5651] = 5565, + [5652] = 5559, + [5653] = 5647, + [5654] = 5565, + [5655] = 5647, + [5656] = 5559, + [5657] = 5657, + [5658] = 5565, + [5659] = 5657, + [5660] = 5657, + [5661] = 5562, + [5662] = 5559, + [5663] = 5562, + [5664] = 5565, + [5665] = 5565, + [5666] = 5559, + [5667] = 5562, + [5668] = 5657, + [5669] = 5562, + [5670] = 5559, + [5671] = 5671, + [5672] = 5657, + [5673] = 5671, + [5674] = 5671, + [5675] = 5565, + [5676] = 5559, + [5677] = 5562, + [5678] = 5559, + [5679] = 5657, + [5680] = 5565, + [5681] = 5565, + [5682] = 5562, + [5683] = 5657, + [5684] = 5565, + [5685] = 5559, + [5686] = 5562, + [5687] = 5562, + [5688] = 5565, + [5689] = 5565, + [5690] = 5562, + [5691] = 5691, + [5692] = 5691, + [5693] = 5693, + [5694] = 5694, + [5695] = 5691, + [5696] = 5559, + [5697] = 5562, + [5698] = 5565, + [5699] = 5699, + [5700] = 5559, + [5701] = 5559, + [5702] = 5559, + [5703] = 5565, + [5704] = 5559, + [5705] = 5562, + [5706] = 5565, + [5707] = 5562, + [5708] = 5671, + [5709] = 5709, + [5710] = 5710, + [5711] = 5711, + [5712] = 5712, + [5713] = 5694, + [5714] = 5714, + [5715] = 5710, + [5716] = 5712, + [5717] = 5717, + [5718] = 5718, + [5719] = 5710, + [5720] = 5671, + [5721] = 5712, + [5722] = 5710, + [5723] = 5712, + [5724] = 5724, + [5725] = 5712, + [5726] = 5710, + [5727] = 5710, + [5728] = 5710, + [5729] = 5712, + [5730] = 5730, + [5731] = 5731, + [5732] = 5732, + [5733] = 5710, + [5734] = 5710, + [5735] = 5712, + [5736] = 5671, + [5737] = 5712, + [5738] = 5710, + [5739] = 5717, + [5740] = 5710, + [5741] = 5693, + [5742] = 1344, + [5743] = 5710, + [5744] = 5717, + [5745] = 5745, + [5746] = 5718, + [5747] = 5730, + [5748] = 5712, + [5749] = 5745, + [5750] = 5750, + [5751] = 5731, + [5752] = 5752, + [5753] = 5732, + [5754] = 5717, + [5755] = 5717, + [5756] = 5717, + [5757] = 5712, + [5758] = 5712, + [5759] = 5717, + [5760] = 5710, + [5761] = 5710, + [5762] = 5711, + [5763] = 5712, + [5764] = 5712, + [5765] = 5710, + [5766] = 5711, + [5767] = 5717, + [5768] = 5712, + [5769] = 5710, + [5770] = 1315, + [5771] = 5717, + [5772] = 5712, + [5773] = 5712, + [5774] = 5774, + [5775] = 5775, + [5776] = 5776, + [5777] = 943, + [5778] = 5778, + [5779] = 5779, + [5780] = 5780, + [5781] = 950, + [5782] = 5774, + [5783] = 5780, + [5784] = 5779, + [5785] = 5778, + [5786] = 5779, + [5787] = 5774, + [5788] = 5732, + [5789] = 944, + [5790] = 951, + [5791] = 940, + [5792] = 5780, + [5793] = 5776, + [5794] = 5794, + [5795] = 5774, + [5796] = 5780, + [5797] = 5775, + [5798] = 5776, + [5799] = 5778, + [5800] = 5779, + [5801] = 5779, + [5802] = 5776, + [5803] = 5778, + [5804] = 5804, + [5805] = 5776, + [5806] = 5780, + [5807] = 5780, + [5808] = 5774, + [5809] = 5730, + [5810] = 5810, + [5811] = 5671, + [5812] = 5780, + [5813] = 5778, + [5814] = 5814, + [5815] = 5778, + [5816] = 5731, + [5817] = 5776, + [5818] = 945, + [5819] = 5780, + [5820] = 5774, + [5821] = 952, + [5822] = 939, + [5823] = 5778, + [5824] = 5824, + [5825] = 5718, + [5826] = 5718, + [5827] = 5827, + [5828] = 5780, + [5829] = 5774, + [5830] = 5830, + [5831] = 5779, + [5832] = 5779, + [5833] = 5833, + [5834] = 5776, + [5835] = 130, + [5836] = 5780, + [5837] = 5774, + [5838] = 5776, + [5839] = 5778, + [5840] = 5778, + [5841] = 5778, + [5842] = 5752, + [5843] = 5779, + [5844] = 5844, + [5845] = 5779, + [5846] = 5780, + [5847] = 5774, + [5848] = 5776, + [5849] = 5732, + [5850] = 941, + [5851] = 5779, + [5852] = 5779, + [5853] = 949, + [5854] = 5776, + [5855] = 946, + [5856] = 5776, + [5857] = 5731, + [5858] = 5827, + [5859] = 5778, + [5860] = 5804, + [5861] = 5780, + [5862] = 5774, + [5863] = 5779, + [5864] = 947, + [5865] = 5780, + [5866] = 5780, + [5867] = 5774, + [5868] = 5774, + [5869] = 5814, + [5870] = 5827, + [5871] = 5780, + [5872] = 5780, + [5873] = 942, + [5874] = 5779, + [5875] = 5875, + [5876] = 5774, + [5877] = 938, + [5878] = 5776, + [5879] = 5814, + [5880] = 5776, + [5881] = 5778, + [5882] = 5776, + [5883] = 5779, + [5884] = 131, + [5885] = 5776, + [5886] = 5776, + [5887] = 5778, + [5888] = 5814, + [5889] = 5814, + [5890] = 5730, + [5891] = 5814, + [5892] = 5776, + [5893] = 5779, + [5894] = 1315, + [5895] = 5778, + [5896] = 5774, + [5897] = 5778, + [5898] = 5778, + [5899] = 5780, + [5900] = 5776, + [5901] = 5901, + [5902] = 5814, + [5903] = 936, + [5904] = 5780, + [5905] = 5774, + [5906] = 5778, + [5907] = 5779, + [5908] = 5774, + [5909] = 5774, + [5910] = 5779, + [5911] = 1344, + [5912] = 5912, + [5913] = 5775, + [5914] = 5804, + [5915] = 5745, + [5916] = 5745, + [5917] = 5774, + [5918] = 5779, + [5919] = 5778, + [5920] = 5920, + [5921] = 5921, + [5922] = 5922, + [5923] = 5671, + [5924] = 5924, + [5925] = 5925, + [5926] = 5926, + [5927] = 5927, + [5928] = 5928, + [5929] = 5929, + [5930] = 5930, + [5931] = 5931, + [5932] = 5932, + [5933] = 5933, + [5934] = 5750, + [5935] = 5935, + [5936] = 5936, + [5937] = 5931, + [5938] = 5938, + [5939] = 5939, + [5940] = 5671, + [5941] = 3210, + [5942] = 5931, + [5943] = 5943, + [5944] = 5925, + [5945] = 5945, + [5946] = 5938, + [5947] = 5945, + [5948] = 5931, + [5949] = 5927, + [5950] = 5927, + [5951] = 5927, + [5952] = 5952, + [5953] = 5953, + [5954] = 5925, + [5955] = 5922, + [5956] = 5956, + [5957] = 5945, + [5958] = 5927, + [5959] = 5922, + [5960] = 5943, + [5961] = 5931, + [5962] = 5928, + [5963] = 5925, + [5964] = 5964, + [5965] = 5945, + [5966] = 5931, + [5967] = 5925, + [5968] = 5945, + [5969] = 5922, + [5970] = 5970, + [5971] = 5971, + [5972] = 5933, + [5973] = 5931, + [5974] = 5922, + [5975] = 5922, + [5976] = 5976, + [5977] = 5977, + [5978] = 5927, + [5979] = 5979, + [5980] = 5980, + [5981] = 5952, + [5982] = 5980, + [5983] = 5671, + [5984] = 5984, + [5985] = 5970, + [5986] = 5931, + [5987] = 5987, + [5988] = 5988, + [5989] = 5931, + [5990] = 5990, + [5991] = 5927, + [5992] = 5931, + [5993] = 5929, + [5994] = 5922, + [5995] = 5925, + [5996] = 5996, + [5997] = 2682, + [5998] = 5922, + [5999] = 5976, + [6000] = 6000, + [6001] = 5671, + [6002] = 5945, + [6003] = 5932, + [6004] = 5927, + [6005] = 6005, + [6006] = 5927, + [6007] = 6007, + [6008] = 5935, + [6009] = 5928, + [6010] = 5971, + [6011] = 5922, + [6012] = 6012, + [6013] = 6013, + [6014] = 5980, + [6015] = 5971, + [6016] = 6016, + [6017] = 5929, + [6018] = 5926, + [6019] = 5931, + [6020] = 6020, + [6021] = 6021, + [6022] = 5928, + [6023] = 5971, + [6024] = 5932, + [6025] = 6025, + [6026] = 5724, + [6027] = 5925, + [6028] = 5935, + [6029] = 5931, + [6030] = 5929, + [6031] = 6031, + [6032] = 5928, + [6033] = 5929, + [6034] = 5932, + [6035] = 6035, + [6036] = 5935, + [6037] = 6037, + [6038] = 5931, + [6039] = 6039, + [6040] = 6005, + [6041] = 5714, + [6042] = 5922, + [6043] = 6043, + [6044] = 5927, + [6045] = 5996, + [6046] = 5945, + [6047] = 5922, + [6048] = 5671, + [6049] = 5932, + [6050] = 5935, + [6051] = 5925, + [6052] = 5922, + [6053] = 5927, + [6054] = 5931, + [6055] = 5924, + [6056] = 5922, + [6057] = 5927, + [6058] = 5990, + [6059] = 5945, + [6060] = 5927, + [6061] = 6061, + [6062] = 5928, + [6063] = 5920, + [6064] = 5925, + [6065] = 5929, + [6066] = 6066, + [6067] = 6067, + [6068] = 5932, + [6069] = 6069, + [6070] = 5935, + [6071] = 5945, + [6072] = 6072, + [6073] = 6037, + [6074] = 6020, + [6075] = 6075, + [6076] = 5671, + [6077] = 6077, + [6078] = 6078, + [6079] = 6079, + [6080] = 6080, + [6081] = 6081, + [6082] = 6082, + [6083] = 5984, + [6084] = 5964, + [6085] = 6085, + [6086] = 6086, + [6087] = 6079, + [6088] = 6088, + [6089] = 5671, + [6090] = 6090, + [6091] = 5936, + [6092] = 6082, + [6093] = 6093, + [6094] = 6094, + [6095] = 6088, + [6096] = 6096, + [6097] = 6075, + [6098] = 6098, + [6099] = 6000, + [6100] = 6100, + [6101] = 6101, + [6102] = 6075, + [6103] = 6103, + [6104] = 6012, + [6105] = 6105, + [6106] = 6072, + [6107] = 5921, + [6108] = 5956, + [6109] = 5930, + [6110] = 6079, + [6111] = 6080, + [6112] = 6112, + [6113] = 6013, + [6114] = 6075, + [6115] = 6115, + [6116] = 6075, + [6117] = 6082, + [6118] = 6118, + [6119] = 5939, + [6120] = 6082, + [6121] = 6121, + [6122] = 6007, + [6123] = 6123, + [6124] = 6124, + [6125] = 6125, + [6126] = 6126, + [6127] = 6127, + [6128] = 6128, + [6129] = 6129, + [6130] = 6080, + [6131] = 6131, + [6132] = 6132, + [6133] = 6069, + [6134] = 6082, + [6135] = 5979, + [6136] = 2810, + [6137] = 6137, + [6138] = 6088, + [6139] = 6043, + [6140] = 6140, + [6141] = 6082, + [6142] = 6039, + [6143] = 1304, + [6144] = 6061, + [6145] = 6075, + [6146] = 6075, + [6147] = 1307, + [6148] = 6148, + [6149] = 6149, + [6150] = 6079, + [6151] = 3210, + [6152] = 6088, + [6153] = 6153, + [6154] = 6082, + [6155] = 1344, + [6156] = 5671, + [6157] = 950, + [6158] = 5745, + [6159] = 5745, + [6160] = 130, + [6161] = 5718, + [6162] = 942, + [6163] = 131, + [6164] = 5732, + [6165] = 2682, + [6166] = 5730, + [6167] = 2608, + [6168] = 949, + [6169] = 6169, + [6170] = 6170, + [6171] = 6171, + [6172] = 5730, + [6173] = 939, + [6174] = 5833, + [6175] = 5928, + [6176] = 5929, + [6177] = 5932, + [6178] = 5935, + [6179] = 6179, + [6180] = 940, + [6181] = 952, + [6182] = 5928, + [6183] = 2597, + [6184] = 5932, + [6185] = 5935, + [6186] = 6171, + [6187] = 941, + [6188] = 5731, + [6189] = 936, + [6190] = 5732, + [6191] = 2878, + [6192] = 951, + [6193] = 1315, + [6194] = 943, + [6195] = 5718, + [6196] = 5901, + [6197] = 2811, + [6198] = 6198, + [6199] = 6171, + [6200] = 6171, + [6201] = 5731, + [6202] = 640, + [6203] = 2605, + [6204] = 944, + [6205] = 2603, + [6206] = 945, + [6207] = 6207, + [6208] = 2902, + [6209] = 639, + [6210] = 946, + [6211] = 947, + [6212] = 938, + [6213] = 6171, + [6214] = 2591, + [6215] = 5929, + [6216] = 6216, + [6217] = 6217, + [6218] = 6218, + [6219] = 5745, + [6220] = 6220, + [6221] = 6217, + [6222] = 5932, + [6223] = 5932, + [6224] = 2437, + [6225] = 6217, + [6226] = 5928, + [6227] = 6217, + [6228] = 6217, + [6229] = 6217, + [6230] = 6230, + [6231] = 2863, + [6232] = 2658, + [6233] = 5731, + [6234] = 5731, + [6235] = 6217, + [6236] = 6230, + [6237] = 5929, + [6238] = 6217, + [6239] = 6239, + [6240] = 6217, + [6241] = 6241, + [6242] = 6230, + [6243] = 2436, + [6244] = 6230, + [6245] = 5935, + [6246] = 6239, + [6247] = 5928, + [6248] = 6239, + [6249] = 6239, + [6250] = 6230, + [6251] = 5718, + [6252] = 6230, + [6253] = 6230, + [6254] = 5928, + [6255] = 6239, + [6256] = 5929, + [6257] = 5932, + [6258] = 5732, + [6259] = 6216, + [6260] = 6239, + [6261] = 6230, + [6262] = 6230, + [6263] = 6230, + [6264] = 5935, + [6265] = 6230, + [6266] = 5928, + [6267] = 5671, + [6268] = 5929, + [6269] = 5932, + [6270] = 6230, + [6271] = 6271, + [6272] = 6239, + [6273] = 5929, + [6274] = 5732, + [6275] = 6230, + [6276] = 6276, + [6277] = 6239, + [6278] = 5745, + [6279] = 2438, + [6280] = 5935, + [6281] = 6239, + [6282] = 6230, + [6283] = 6230, + [6284] = 6239, + [6285] = 1315, + [6286] = 6286, + [6287] = 759, + [6288] = 5671, + [6289] = 6230, + [6290] = 6290, + [6291] = 5935, + [6292] = 5730, + [6293] = 6230, + [6294] = 6294, + [6295] = 6217, + [6296] = 1344, + [6297] = 6230, + [6298] = 5730, + [6299] = 5718, + [6300] = 6300, + [6301] = 6149, + [6302] = 5731, + [6303] = 6101, + [6304] = 6112, + [6305] = 5732, + [6306] = 6105, + [6307] = 6307, + [6308] = 6308, + [6309] = 6309, + [6310] = 6310, + [6311] = 6311, + [6312] = 6312, + [6313] = 6313, + [6314] = 6314, + [6315] = 6315, + [6316] = 6307, + [6317] = 6317, + [6318] = 5928, + [6319] = 2712, + [6320] = 2713, + [6321] = 2716, + [6322] = 2719, + [6323] = 6317, + [6324] = 6317, + [6325] = 6309, + [6326] = 6310, + [6327] = 6311, + [6328] = 6312, + [6329] = 6313, + [6330] = 6314, + [6331] = 6315, + [6332] = 6307, + [6333] = 6317, + [6334] = 5929, + [6335] = 6086, + [6336] = 5928, + [6337] = 6317, + [6338] = 6338, + [6339] = 5932, + [6340] = 6340, + [6341] = 6341, + [6342] = 6342, + [6343] = 5935, + [6344] = 6344, + [6345] = 2650, + [6346] = 6317, + [6347] = 6317, + [6348] = 6317, + [6349] = 6078, + [6350] = 6096, + [6351] = 6118, + [6352] = 6121, + [6353] = 5745, + [6354] = 6127, + [6355] = 5929, + [6356] = 1344, + [6357] = 1315, + [6358] = 6129, + [6359] = 6317, + [6360] = 6317, + [6361] = 6361, + [6362] = 2710, + [6363] = 2723, + [6364] = 5671, + [6365] = 6090, + [6366] = 5718, + [6367] = 6317, + [6368] = 6124, + [6369] = 6317, + [6370] = 6093, + [6371] = 5745, + [6372] = 5932, + [6373] = 6373, + [6374] = 2646, + [6375] = 2647, + [6376] = 2649, + [6377] = 6317, + [6378] = 5730, + [6379] = 5671, + [6380] = 5935, + [6381] = 2636, + [6382] = 5731, + [6383] = 5732, + [6384] = 6317, + [6385] = 6385, + [6386] = 6077, + [6387] = 6085, + [6388] = 6100, + [6389] = 6132, + [6390] = 6153, + [6391] = 6103, + [6392] = 2881, + [6393] = 5718, + [6394] = 2883, + [6395] = 2885, + [6396] = 2886, + [6397] = 2888, + [6398] = 2891, + [6399] = 6399, + [6400] = 6317, + [6401] = 6317, + [6402] = 6317, + [6403] = 6403, + [6404] = 6094, + [6405] = 5730, + [6406] = 6309, + [6407] = 6317, + [6408] = 2898, + [6409] = 6310, + [6410] = 6311, + [6411] = 6312, + [6412] = 6313, + [6413] = 6314, + [6414] = 6315, + [6415] = 6317, + [6416] = 5935, + [6417] = 6417, + [6418] = 6418, + [6419] = 6419, + [6420] = 6417, + [6421] = 5928, + [6422] = 6417, + [6423] = 6423, + [6424] = 6424, + [6425] = 2559, + [6426] = 5928, + [6427] = 5929, + [6428] = 5932, + [6429] = 5935, + [6430] = 6430, + [6431] = 6431, + [6432] = 5928, + [6433] = 5929, + [6434] = 5932, + [6435] = 5935, + [6436] = 6423, + [6437] = 6423, + [6438] = 6424, + [6439] = 5928, + [6440] = 5929, + [6441] = 5932, + [6442] = 5935, + [6443] = 5928, + [6444] = 5929, + [6445] = 5932, + [6446] = 5935, + [6447] = 6447, + [6448] = 5932, + [6449] = 6423, + [6450] = 6417, + [6451] = 6451, + [6452] = 6424, + [6453] = 5932, + [6454] = 5929, + [6455] = 6424, + [6456] = 6456, + [6457] = 6457, + [6458] = 6419, + [6459] = 5935, + [6460] = 6460, + [6461] = 6417, + [6462] = 6419, + [6463] = 5929, + [6464] = 6417, + [6465] = 6424, + [6466] = 6466, + [6467] = 6424, + [6468] = 6423, + [6469] = 6424, + [6470] = 6466, + [6471] = 6471, + [6472] = 5928, + [6473] = 6419, + [6474] = 5935, + [6475] = 6447, + [6476] = 6423, + [6477] = 6477, + [6478] = 6417, + [6479] = 5928, + [6480] = 6418, + [6481] = 5929, + [6482] = 5932, + [6483] = 5935, + [6484] = 5928, + [6485] = 5929, + [6486] = 5932, + [6487] = 5935, + [6488] = 6488, + [6489] = 6489, + [6490] = 6490, + [6491] = 6447, + [6492] = 6447, + [6493] = 6447, + [6494] = 6447, + [6495] = 6447, + [6496] = 6460, + [6497] = 5928, + [6498] = 5932, + [6499] = 6499, + [6500] = 5932, + [6501] = 6417, + [6502] = 5928, + [6503] = 5935, + [6504] = 6504, + [6505] = 5929, + [6506] = 6417, + [6507] = 6430, + [6508] = 6431, + [6509] = 5929, + [6510] = 6417, + [6511] = 6423, + [6512] = 1344, + [6513] = 6513, + [6514] = 6513, + [6515] = 2591, + [6516] = 6513, + [6517] = 6513, + [6518] = 6513, + [6519] = 6513, + [6520] = 6513, + [6521] = 6521, + [6522] = 6513, + [6523] = 6523, + [6524] = 6524, + [6525] = 6523, + [6526] = 6524, + [6527] = 6513, + [6528] = 2605, + [6529] = 6521, + [6530] = 6513, + [6531] = 2597, + [6532] = 2603, + [6533] = 5745, + [6534] = 5718, + [6535] = 5730, + [6536] = 5731, + [6537] = 5732, + [6538] = 5928, + [6539] = 5929, + [6540] = 5932, + [6541] = 6513, + [6542] = 5935, + [6543] = 6521, + [6544] = 5745, + [6545] = 5718, + [6546] = 5730, + [6547] = 5731, + [6548] = 5732, + [6549] = 6513, + [6550] = 5928, + [6551] = 5929, + [6552] = 5932, + [6553] = 5935, + [6554] = 6554, + [6555] = 2591, + [6556] = 2608, + [6557] = 2605, + [6558] = 2597, + [6559] = 2603, + [6560] = 6513, + [6561] = 6523, + [6562] = 6513, + [6563] = 6513, + [6564] = 1647, + [6565] = 2608, + [6566] = 6521, + [6567] = 6309, + [6568] = 6310, + [6569] = 6311, + [6570] = 6312, + [6571] = 6313, + [6572] = 6314, + [6573] = 6523, + [6574] = 6315, + [6575] = 6307, + [6576] = 6513, + [6577] = 6521, + [6578] = 2449, + [6579] = 6579, + [6580] = 6580, + [6581] = 2445, + [6582] = 5671, + [6583] = 6523, + [6584] = 5928, + [6585] = 5929, + [6586] = 5932, + [6587] = 5935, + [6588] = 5928, + [6589] = 5929, + [6590] = 5932, + [6591] = 5935, + [6592] = 6521, + [6593] = 6523, + [6594] = 6513, + [6595] = 6513, + [6596] = 6521, + [6597] = 6523, + [6598] = 6513, + [6599] = 6513, + [6600] = 6600, + [6601] = 1643, + [6602] = 1315, + [6603] = 6603, + [6604] = 6310, + [6605] = 2658, + [6606] = 6606, + [6607] = 6607, + [6608] = 6311, + [6609] = 6606, + [6610] = 6610, + [6611] = 5928, + [6612] = 5929, + [6613] = 5932, + [6614] = 5935, + [6615] = 6615, + [6616] = 5928, + [6617] = 5929, + [6618] = 5932, + [6619] = 5935, + [6620] = 2658, + [6621] = 6220, + [6622] = 6606, + [6623] = 6603, + [6624] = 6624, + [6625] = 6606, + [6626] = 6431, + [6627] = 6606, + [6628] = 6628, + [6629] = 6460, + [6630] = 6624, + [6631] = 6631, + [6632] = 6632, + [6633] = 6603, + [6634] = 6312, + [6635] = 6309, + [6636] = 6312, + [6637] = 6313, + [6638] = 6315, + [6639] = 6603, + [6640] = 6310, + [6641] = 6311, + [6642] = 6314, + [6643] = 6624, + [6644] = 6314, + [6645] = 6603, + [6646] = 6307, + [6647] = 6313, + [6648] = 6610, + [6649] = 6315, + [6650] = 6650, + [6651] = 6651, + [6652] = 6652, + [6653] = 6603, + [6654] = 6603, + [6655] = 6430, + [6656] = 6606, + [6657] = 6632, + [6658] = 6624, + [6659] = 6418, + [6660] = 6650, + [6661] = 6650, + [6662] = 6606, + [6663] = 6606, + [6664] = 6664, + [6665] = 6632, + [6666] = 6466, + [6667] = 6603, + [6668] = 6606, + [6669] = 6650, + [6670] = 6307, + [6671] = 6650, + [6672] = 6603, + [6673] = 6603, + [6674] = 6309, + [6675] = 6606, + [6676] = 6632, + [6677] = 6677, + [6678] = 6309, + [6679] = 6679, + [6680] = 5929, + [6681] = 6677, + [6682] = 5932, + [6683] = 5935, + [6684] = 6677, + [6685] = 1692, + [6686] = 6677, + [6687] = 6310, + [6688] = 6688, + [6689] = 6689, + [6690] = 6311, + [6691] = 6312, + [6692] = 6313, + [6693] = 6677, + [6694] = 6314, + [6695] = 6677, + [6696] = 5928, + [6697] = 6677, + [6698] = 6315, + [6699] = 6307, + [6700] = 5929, + [6701] = 6677, + [6702] = 5932, + [6703] = 5935, + [6704] = 6677, + [6705] = 6677, + [6706] = 6677, + [6707] = 6677, + [6708] = 6148, + [6709] = 6709, + [6710] = 6710, + [6711] = 6123, + [6712] = 6712, + [6713] = 6677, + [6714] = 6714, + [6715] = 6677, + [6716] = 6677, + [6717] = 6717, + [6718] = 6677, + [6719] = 6677, + [6720] = 2801, + [6721] = 6721, + [6722] = 6677, + [6723] = 6723, + [6724] = 6724, + [6725] = 6677, + [6726] = 5928, + [6727] = 6677, + [6728] = 6728, + [6729] = 6313, + [6730] = 6730, + [6731] = 6731, + [6732] = 6309, + [6733] = 6733, + [6734] = 6734, + [6735] = 6735, + [6736] = 6736, + [6737] = 6309, + [6738] = 6738, + [6739] = 6739, + [6740] = 6738, + [6741] = 6741, + [6742] = 1575, + [6743] = 1558, + [6744] = 6741, + [6745] = 6466, + [6746] = 6736, + [6747] = 6741, + [6748] = 6730, + [6749] = 6730, + [6750] = 6310, + [6751] = 6309, + [6752] = 6311, + [6753] = 6314, + [6754] = 6736, + [6755] = 6755, + [6756] = 6756, + [6757] = 6312, + [6758] = 6309, + [6759] = 6313, + [6760] = 6310, + [6761] = 6738, + [6762] = 6738, + [6763] = 6431, + [6764] = 6764, + [6765] = 6765, + [6766] = 5745, + [6767] = 6738, + [6768] = 6768, + [6769] = 6741, + [6770] = 6314, + [6771] = 6730, + [6772] = 6741, + [6773] = 6741, + [6774] = 5745, + [6775] = 6315, + [6776] = 5718, + [6777] = 6307, + [6778] = 754, + [6779] = 5730, + [6780] = 5731, + [6781] = 5732, + [6782] = 6782, + [6783] = 6311, + [6784] = 5718, + [6785] = 6736, + [6786] = 6312, + [6787] = 6313, + [6788] = 6788, + [6789] = 5730, + [6790] = 6730, + [6791] = 6309, + [6792] = 6310, + [6793] = 6311, + [6794] = 6315, + [6795] = 6795, + [6796] = 6312, + [6797] = 6313, + [6798] = 6310, + [6799] = 1315, + [6800] = 6311, + [6801] = 6314, + [6802] = 6315, + [6803] = 6738, + [6804] = 6307, + [6805] = 6736, + [6806] = 6314, + [6807] = 6738, + [6808] = 6315, + [6809] = 6809, + [6810] = 6307, + [6811] = 753, + [6812] = 752, + [6813] = 751, + [6814] = 6814, + [6815] = 5731, + [6816] = 1344, + [6817] = 6460, + [6818] = 6307, + [6819] = 5732, + [6820] = 6820, + [6821] = 6312, + [6822] = 6736, + [6823] = 756, + [6824] = 757, + [6825] = 755, + [6826] = 6315, + [6827] = 6418, + [6828] = 6828, + [6829] = 6829, + [6830] = 6736, + [6831] = 6730, + [6832] = 2811, + [6833] = 6741, + [6834] = 6310, + [6835] = 6311, + [6836] = 6313, + [6837] = 6314, + [6838] = 6307, + [6839] = 6730, + [6840] = 6840, + [6841] = 6312, + [6842] = 6430, + [6843] = 6843, + [6844] = 6311, + [6845] = 6845, + [6846] = 6846, + [6847] = 6845, + [6848] = 6848, + [6849] = 6845, + [6850] = 6850, + [6851] = 6845, + [6852] = 6852, + [6853] = 6845, + [6854] = 6854, + [6855] = 6845, + [6856] = 6309, + [6857] = 6310, + [6858] = 6311, + [6859] = 6312, + [6860] = 6313, + [6861] = 6314, + [6862] = 6315, + [6863] = 6307, + [6864] = 6845, + [6865] = 6310, + [6866] = 6314, + [6867] = 6307, + [6868] = 6845, + [6869] = 6431, + [6870] = 6466, + [6871] = 6418, + [6872] = 6460, + [6873] = 6309, + [6874] = 6874, + [6875] = 6312, + [6876] = 6313, + [6877] = 6315, + [6878] = 6310, + [6879] = 6311, + [6880] = 6314, + [6881] = 6307, + [6882] = 6845, + [6883] = 6845, + [6884] = 6884, + [6885] = 6885, + [6886] = 6845, + [6887] = 6845, + [6888] = 6888, + [6889] = 6889, + [6890] = 6848, + [6891] = 6845, + [6892] = 6430, + [6893] = 6893, + [6894] = 6894, + [6895] = 6893, + [6896] = 6894, + [6897] = 6897, + [6898] = 6893, + [6899] = 6893, + [6900] = 6893, + [6901] = 6893, + [6902] = 6893, + [6903] = 6897, + [6904] = 6893, + [6905] = 6893, + [6906] = 6893, + [6907] = 6893, + [6908] = 6908, + [6909] = 6893, + [6910] = 6910, + [6911] = 6893, + [6912] = 6893, + [6913] = 6908, + [6914] = 6908, + [6915] = 6910, + [6916] = 1315, + [6917] = 6893, + [6918] = 6893, + [6919] = 6893, + [6920] = 6908, + [6921] = 6894, + [6922] = 6910, + [6923] = 6910, + [6924] = 6893, + [6925] = 6910, + [6926] = 6910, + [6927] = 6910, + [6928] = 6430, + [6929] = 6431, + [6930] = 6466, + [6931] = 6418, + [6932] = 6460, + [6933] = 6893, + [6934] = 6309, + [6935] = 6310, + [6936] = 6311, + [6937] = 6312, + [6938] = 6313, + [6939] = 6314, + [6940] = 6315, + [6941] = 6307, + [6942] = 6897, + [6943] = 1344, + [6944] = 6893, + [6945] = 6894, + [6946] = 6893, + [6947] = 6897, + [6948] = 6488, + [6949] = 6314, + [6950] = 6314, + [6951] = 6951, + [6952] = 6307, + [6953] = 6310, + [6954] = 6954, + [6955] = 6955, + [6956] = 6956, + [6957] = 6956, + [6958] = 6499, + [6959] = 6956, + [6960] = 6460, + [6961] = 6466, + [6962] = 6309, + [6963] = 6123, + [6964] = 6964, + [6965] = 6965, + [6966] = 6966, + [6967] = 6314, + [6968] = 6312, + [6969] = 6313, + [6970] = 6451, + [6971] = 6971, + [6972] = 6955, + [6973] = 6310, + [6974] = 6315, + [6975] = 6956, + [6976] = 6307, + [6977] = 6477, + [6978] = 6978, + [6979] = 6971, + [6980] = 6956, + [6981] = 6489, + [6982] = 6982, + [6983] = 6310, + [6984] = 6984, + [6985] = 6311, + [6986] = 6955, + [6987] = 6311, + [6988] = 6307, + [6989] = 6956, + [6990] = 6311, + [6991] = 6955, + [6992] = 6992, + [6993] = 6430, + [6994] = 6971, + [6995] = 6971, + [6996] = 6314, + [6997] = 6431, + [6998] = 6307, + [6999] = 6956, + [7000] = 7000, + [7001] = 7001, + [7002] = 6418, + [7003] = 7003, + [7004] = 6311, + [7005] = 6310, + [7006] = 6148, + [7007] = 7007, + [7008] = 7008, + [7009] = 7009, + [7010] = 7010, + [7011] = 1360, + [7012] = 7012, + [7013] = 7013, + [7014] = 7014, + [7015] = 7013, + [7016] = 7016, + [7017] = 7017, + [7018] = 7016, + [7019] = 6309, + [7020] = 6312, + [7021] = 6310, + [7022] = 6311, + [7023] = 6314, + [7024] = 6307, + [7025] = 7025, + [7026] = 6310, + [7027] = 7027, + [7028] = 7028, + [7029] = 6311, + [7030] = 7030, + [7031] = 7012, + [7032] = 6313, + [7033] = 7012, + [7034] = 7034, + [7035] = 7010, + [7036] = 6309, + [7037] = 1363, + [7038] = 7009, + [7039] = 7016, + [7040] = 7016, + [7041] = 6307, + [7042] = 7042, + [7043] = 7010, + [7044] = 7044, + [7045] = 7045, + [7046] = 7010, + [7047] = 6315, + [7048] = 7048, + [7049] = 7030, + [7050] = 7025, + [7051] = 7013, + [7052] = 7052, + [7053] = 2811, + [7054] = 7054, + [7055] = 7055, + [7056] = 6314, + [7057] = 7057, + [7058] = 2591, + [7059] = 7052, + [7060] = 7012, + [7061] = 2608, + [7062] = 6312, + [7063] = 7063, + [7064] = 7064, + [7065] = 6313, + [7066] = 2605, + [7067] = 7025, + [7068] = 7013, + [7069] = 7052, + [7070] = 7025, + [7071] = 7052, + [7072] = 7025, + [7073] = 7052, + [7074] = 7025, + [7075] = 7052, + [7076] = 7025, + [7077] = 7052, + [7078] = 1362, + [7079] = 2597, + [7080] = 6315, + [7081] = 2603, + [7082] = 7082, + [7083] = 7083, + [7084] = 7084, + [7085] = 7085, + [7086] = 7086, + [7087] = 7087, + [7088] = 7088, + [7089] = 7089, + [7090] = 7084, + [7091] = 7091, + [7092] = 7085, + [7093] = 7086, + [7094] = 7085, + [7095] = 7085, + [7096] = 7096, + [7097] = 7097, + [7098] = 7098, + [7099] = 7086, + [7100] = 7100, + [7101] = 7101, + [7102] = 6607, + [7103] = 7086, + [7104] = 7104, + [7105] = 7105, + [7106] = 7086, + [7107] = 7107, + [7108] = 6664, + [7109] = 7089, + [7110] = 6652, + [7111] = 2658, + [7112] = 7085, + [7113] = 7113, + [7114] = 7086, + [7115] = 7115, + [7116] = 7116, + [7117] = 7117, + [7118] = 7085, + [7119] = 7119, + [7120] = 7086, + [7121] = 7121, + [7122] = 7105, + [7123] = 7107, + [7124] = 7085, + [7125] = 7089, + [7126] = 7126, + [7127] = 7127, + [7128] = 2811, + [7129] = 7105, + [7130] = 2811, + [7131] = 7116, + [7132] = 7119, + [7133] = 7127, + [7134] = 7107, + [7135] = 7087, + [7136] = 7087, + [7137] = 7137, + [7138] = 7116, + [7139] = 7119, + [7140] = 7127, + [7141] = 7084, + [7142] = 7142, + [7143] = 7143, + [7144] = 7144, + [7145] = 6123, + [7146] = 7146, + [7147] = 7147, + [7148] = 7146, + [7149] = 7149, + [7150] = 2790, + [7151] = 7151, + [7152] = 2811, + [7153] = 7153, + [7154] = 6314, + [7155] = 7155, + [7156] = 6310, + [7157] = 7153, + [7158] = 7158, + [7159] = 7149, + [7160] = 7151, + [7161] = 6312, + [7162] = 7151, + [7163] = 7163, + [7164] = 7149, + [7165] = 7149, + [7166] = 7166, + [7167] = 7167, + [7168] = 7153, + [7169] = 7149, + [7170] = 7153, + [7171] = 7151, + [7172] = 7144, + [7173] = 7143, + [7174] = 7144, + [7175] = 7144, + [7176] = 7149, + [7177] = 7153, + [7178] = 7151, + [7179] = 7149, + [7180] = 7180, + [7181] = 7181, + [7182] = 6309, + [7183] = 7183, + [7184] = 6311, + [7185] = 7153, + [7186] = 7144, + [7187] = 7151, + [7188] = 6315, + [7189] = 7158, + [7190] = 7153, + [7191] = 7153, + [7192] = 7149, + [7193] = 7144, + [7194] = 7151, + [7195] = 7195, + [7196] = 7196, + [7197] = 7143, + [7198] = 7146, + [7199] = 7199, + [7200] = 7151, + [7201] = 7144, + [7202] = 7202, + [7203] = 7143, + [7204] = 6307, + [7205] = 7144, + [7206] = 7144, + [7207] = 7149, + [7208] = 7151, + [7209] = 7167, + [7210] = 7146, + [7211] = 7146, + [7212] = 6313, + [7213] = 7153, + [7214] = 7214, + [7215] = 2811, + [7216] = 7216, + [7217] = 7217, + [7218] = 7218, + [7219] = 7219, + [7220] = 7220, + [7221] = 7221, + [7222] = 7220, + [7223] = 7223, + [7224] = 7224, + [7225] = 7219, + [7226] = 7226, + [7227] = 7219, + [7228] = 7228, + [7229] = 7219, + [7230] = 7230, + [7231] = 7231, + [7232] = 7230, + [7233] = 7233, + [7234] = 7234, + [7235] = 7230, + [7236] = 7236, + [7237] = 7237, + [7238] = 7223, + [7239] = 7239, + [7240] = 7220, + [7241] = 7230, + [7242] = 7233, + [7243] = 7243, + [7244] = 7230, + [7245] = 7245, + [7246] = 7246, + [7247] = 7247, + [7248] = 7248, + [7249] = 7249, + [7250] = 7246, + [7251] = 7239, + [7252] = 7252, + [7253] = 7239, + [7254] = 7221, + [7255] = 7255, + [7256] = 7256, + [7257] = 7243, + [7258] = 7248, + [7259] = 7221, + [7260] = 7239, + [7261] = 7243, + [7262] = 7224, + [7263] = 7263, + [7264] = 7239, + [7265] = 7216, + [7266] = 7218, + [7267] = 7267, + [7268] = 7224, + [7269] = 7269, + [7270] = 7233, + [7271] = 7248, + [7272] = 7218, + [7273] = 7220, + [7274] = 7219, + [7275] = 7230, + [7276] = 7249, + [7277] = 7277, + [7278] = 7243, + [7279] = 7248, + [7280] = 7249, + [7281] = 7216, + [7282] = 7226, + [7283] = 7256, + [7284] = 7239, + [7285] = 7269, + [7286] = 7277, + [7287] = 7243, + [7288] = 7249, + [7289] = 7247, + [7290] = 7256, + [7291] = 7245, + [7292] = 7221, + [7293] = 7269, + [7294] = 7249, + [7295] = 7224, + [7296] = 7277, + [7297] = 7297, + [7298] = 7297, + [7299] = 7247, + [7300] = 6123, + [7301] = 7301, + [7302] = 7247, + [7303] = 7230, + [7304] = 7226, + [7305] = 7223, + [7306] = 7306, + [7307] = 7239, + [7308] = 7255, + [7309] = 7221, + [7310] = 7245, + [7311] = 2811, + [7312] = 7219, + [7313] = 7226, + [7314] = 7247, + [7315] = 7247, + [7316] = 7231, + [7317] = 7249, + [7318] = 7256, + [7319] = 7269, + [7320] = 7277, + [7321] = 7233, + [7322] = 7297, + [7323] = 7323, + [7324] = 7255, + [7325] = 7239, + [7326] = 7247, + [7327] = 7327, + [7328] = 7223, + [7329] = 7329, + [7330] = 7247, + [7331] = 7331, + [7332] = 7255, + [7333] = 7333, + [7334] = 7256, + [7335] = 7335, + [7336] = 7230, + [7337] = 7337, + [7338] = 7239, + [7339] = 7223, + [7340] = 7230, + [7341] = 7239, + [7342] = 7239, + [7343] = 7247, + [7344] = 7233, + [7345] = 7224, + [7346] = 7346, + [7347] = 7226, + [7348] = 7231, + [7349] = 7297, + [7350] = 7301, + [7351] = 7247, + [7352] = 7239, + [7353] = 7233, + [7354] = 7218, + [7355] = 7335, + [7356] = 7248, + [7357] = 7218, + [7358] = 7358, + [7359] = 7239, + [7360] = 7220, + [7361] = 7239, + [7362] = 7249, + [7363] = 7256, + [7364] = 7219, + [7365] = 7230, + [7366] = 7366, + [7367] = 7231, + [7368] = 7337, + [7369] = 7230, + [7370] = 7269, + [7371] = 7255, + [7372] = 7269, + [7373] = 7226, + [7374] = 7277, + [7375] = 7243, + [7376] = 7248, + [7377] = 7243, + [7378] = 7256, + [7379] = 7233, + [7380] = 7231, + [7381] = 7245, + [7382] = 7218, + [7383] = 7220, + [7384] = 7219, + [7385] = 7230, + [7386] = 7245, + [7387] = 7216, + [7388] = 7239, + [7389] = 7389, + [7390] = 7231, + [7391] = 7391, + [7392] = 7252, + [7393] = 7297, + [7394] = 7219, + [7395] = 7243, + [7396] = 7252, + [7397] = 7277, + [7398] = 7269, + [7399] = 7216, + [7400] = 7231, + [7401] = 7233, + [7402] = 7219, + [7403] = 7230, + [7404] = 7216, + [7405] = 7223, + [7406] = 7406, + [7407] = 7249, + [7408] = 7256, + [7409] = 7269, + [7410] = 7277, + [7411] = 7216, + [7412] = 7220, + [7413] = 7297, + [7414] = 7297, + [7415] = 7221, + [7416] = 7247, + [7417] = 7277, + [7418] = 7223, + [7419] = 7337, + [7420] = 7297, + [7421] = 7247, + [7422] = 7337, + [7423] = 7226, + [7424] = 7220, + [7425] = 7252, + [7426] = 7223, + [7427] = 7427, + [7428] = 7221, + [7429] = 7246, + [7430] = 7297, + [7431] = 7224, + [7432] = 7239, + [7433] = 7216, + [7434] = 7220, + [7435] = 7301, + [7436] = 7335, + [7437] = 7239, + [7438] = 7219, + [7439] = 7231, + [7440] = 7247, + [7441] = 7233, + [7442] = 7442, + [7443] = 7230, + [7444] = 7301, + [7445] = 7335, + [7446] = 7223, + [7447] = 7447, + [7448] = 7448, + [7449] = 7245, + [7450] = 7301, + [7451] = 7335, + [7452] = 7452, + [7453] = 7216, + [7454] = 7337, + [7455] = 7247, + [7456] = 7249, + [7457] = 7301, + [7458] = 7335, + [7459] = 7337, + [7460] = 7256, + [7461] = 7269, + [7462] = 7277, + [7463] = 7301, + [7464] = 7335, + [7465] = 7243, + [7466] = 7230, + [7467] = 7301, + [7468] = 7335, + [7469] = 7297, + [7470] = 7301, + [7471] = 7252, + [7472] = 7247, + [7473] = 7220, + [7474] = 7247, + [7475] = 7218, + [7476] = 7335, + [7477] = 7297, + [7478] = 7230, + [7479] = 7337, + [7480] = 7252, + [7481] = 7481, + [7482] = 7247, + [7483] = 7483, + [7484] = 7230, + [7485] = 7485, + [7486] = 7255, + [7487] = 7226, + [7488] = 7231, + [7489] = 7248, + [7490] = 7246, + [7491] = 7239, + [7492] = 7226, + [7493] = 7239, + [7494] = 7230, + [7495] = 7218, + [7496] = 7233, + [7497] = 7226, + [7498] = 7218, + [7499] = 7220, + [7500] = 7224, + [7501] = 7248, + [7502] = 7218, + [7503] = 7220, + [7504] = 7504, + [7505] = 7219, + [7506] = 7248, + [7507] = 7230, + [7508] = 7216, + [7509] = 7231, + [7510] = 7510, + [7511] = 7249, + [7512] = 7256, + [7513] = 7269, + [7514] = 7277, + [7515] = 7515, + [7516] = 7245, + [7517] = 7297, + [7518] = 7248, + [7519] = 7223, + [7520] = 7520, + [7521] = 7521, + [7522] = 7522, + [7523] = 7523, + [7524] = 7524, + [7525] = 7521, + [7526] = 7526, + [7527] = 7527, + [7528] = 7528, + [7529] = 7529, + [7530] = 7530, + [7531] = 7524, + [7532] = 7532, + [7533] = 7533, + [7534] = 7534, + [7535] = 7535, + [7536] = 7536, + [7537] = 7537, + [7538] = 7538, + [7539] = 7539, + [7540] = 7524, + [7541] = 7541, + [7542] = 7542, + [7543] = 7543, + [7544] = 7544, + [7545] = 7521, + [7546] = 7546, + [7547] = 7523, + [7548] = 7527, + [7549] = 7541, + [7550] = 7542, + [7551] = 7524, + [7552] = 7552, + [7553] = 7553, + [7554] = 7552, + [7555] = 7555, + [7556] = 7556, + [7557] = 7537, + [7558] = 7541, + [7559] = 7542, + [7560] = 7552, + [7561] = 7553, + [7562] = 7553, + [7563] = 7537, + [7564] = 7535, + [7565] = 7565, + [7566] = 7566, + [7567] = 7567, + [7568] = 7568, + [7569] = 7569, + [7570] = 7524, + [7571] = 7537, + [7572] = 7546, + [7573] = 7523, + [7574] = 7527, + [7575] = 7575, + [7576] = 7576, + [7577] = 7577, + [7578] = 7535, + [7579] = 7524, + [7580] = 7546, + [7581] = 7523, + [7582] = 7527, + [7583] = 7583, + [7584] = 7520, + [7585] = 7585, + [7586] = 7535, + [7587] = 7566, + [7588] = 7546, + [7589] = 7524, + [7590] = 7546, + [7591] = 7523, + [7592] = 7527, + [7593] = 7523, + [7594] = 7527, + [7595] = 7535, + [7596] = 7524, + [7597] = 7546, + [7598] = 7523, + [7599] = 7527, + [7600] = 7600, + [7601] = 7601, + [7602] = 7602, + [7603] = 7603, + [7604] = 7521, + [7605] = 7605, + [7606] = 7535, + [7607] = 7607, + [7608] = 7524, + [7609] = 7546, + [7610] = 7523, + [7611] = 7527, + [7612] = 7575, + [7613] = 7613, + [7614] = 7535, + [7615] = 7524, + [7616] = 7546, + [7617] = 7523, + [7618] = 7527, + [7619] = 7619, + [7620] = 7620, + [7621] = 7577, + [7622] = 7528, + [7623] = 7535, + [7624] = 7524, + [7625] = 7546, + [7626] = 7523, + [7627] = 7527, + [7628] = 7628, + [7629] = 7629, + [7630] = 7630, + [7631] = 7631, + [7632] = 7535, + [7633] = 7524, + [7634] = 7546, + [7635] = 7523, + [7636] = 7527, + [7637] = 7535, + [7638] = 7638, + [7639] = 7639, + [7640] = 7535, + [7641] = 7535, + [7642] = 7535, + [7643] = 7643, + [7644] = 7575, + [7645] = 7607, + [7646] = 7583, + [7647] = 7613, + [7648] = 144, + [7649] = 7577, + [7650] = 7520, + [7651] = 7585, + [7652] = 7546, + [7653] = 7523, + [7654] = 7527, + [7655] = 7530, + [7656] = 7601, + [7657] = 7569, + [7658] = 7658, + [7659] = 7600, + [7660] = 7602, + [7661] = 7661, + [7662] = 7603, + [7663] = 7663, + [7664] = 7664, + [7665] = 7665, + [7666] = 7535, + [7667] = 7565, + [7668] = 7668, + [7669] = 7669, + [7670] = 2909, + [7671] = 7671, + [7672] = 7672, + [7673] = 7619, + [7674] = 7620, + [7675] = 7520, + [7676] = 7676, + [7677] = 7585, + [7678] = 7546, + [7679] = 7523, + [7680] = 7527, + [7681] = 7681, + [7682] = 7682, + [7683] = 7628, + [7684] = 7629, + [7685] = 7685, + [7686] = 7686, + [7687] = 7638, + [7688] = 7630, + [7689] = 7631, + [7690] = 7690, + [7691] = 7672, + [7692] = 7692, + [7693] = 7535, + [7694] = 7600, + [7695] = 7630, + [7696] = 2867, + [7697] = 7602, + [7698] = 7533, + [7699] = 7699, + [7700] = 7528, + [7701] = 7603, + [7702] = 7530, + [7703] = 7703, + [7704] = 7533, + [7705] = 2880, + [7706] = 2841, + [7707] = 7535, + [7708] = 7008, + [7709] = 7692, + [7710] = 7521, + [7711] = 7711, + [7712] = 7712, + [7713] = 7524, + [7714] = 7714, + [7715] = 7715, + [7716] = 7541, + [7717] = 7542, + [7718] = 7552, + [7719] = 7719, + [7720] = 7720, + [7721] = 7537, + [7722] = 7722, + [7723] = 7619, + [7724] = 7620, + [7725] = 7524, + [7726] = 7575, + [7727] = 7727, + [7728] = 7577, + [7729] = 2901, + [7730] = 7520, + [7731] = 7619, + [7732] = 7585, + [7733] = 7546, + [7734] = 7523, + [7735] = 7620, + [7736] = 7527, + [7737] = 7600, + [7738] = 7692, + [7739] = 7739, + [7740] = 7603, + [7741] = 2894, + [7742] = 7638, + [7743] = 7628, + [7744] = 7629, + [7745] = 7638, + [7746] = 7746, + [7747] = 7607, + [7748] = 7629, + [7749] = 7749, + [7750] = 7619, + [7751] = 7620, + [7752] = 7752, + [7753] = 7753, + [7754] = 7754, + [7755] = 7628, + [7756] = 7661, + [7757] = 7629, + [7758] = 7758, + [7759] = 7607, + [7760] = 7630, + [7761] = 7631, + [7762] = 7630, + [7763] = 7763, + [7764] = 7600, + [7765] = 7631, + [7766] = 7607, + [7767] = 7767, + [7768] = 7569, + [7769] = 7769, + [7770] = 7676, + [7771] = 7535, + [7772] = 7692, + [7773] = 7672, + [7774] = 7774, + [7775] = 7607, + [7776] = 7583, + [7777] = 7777, + [7778] = 7661, + [7779] = 7602, + [7780] = 7541, + [7781] = 7672, + [7782] = 2925, + [7783] = 7783, + [7784] = 7672, + [7785] = 2839, + [7786] = 7542, + [7787] = 7787, + [7788] = 2865, + [7789] = 7638, + [7790] = 7790, + [7791] = 2811, + [7792] = 7552, + [7793] = 7638, + [7794] = 7583, + [7795] = 7661, + [7796] = 7692, + [7797] = 7553, + [7798] = 7798, + [7799] = 7535, + [7800] = 7661, + [7801] = 7801, + [7802] = 7692, + [7803] = 7535, + [7804] = 7528, + [7805] = 7530, + [7806] = 7631, + [7807] = 7528, + [7808] = 7808, + [7809] = 7809, + [7810] = 7530, + [7811] = 7583, + [7812] = 7812, + [7813] = 7672, + [7814] = 7535, + [7815] = 7815, + [7816] = 7661, + [7817] = 7521, + [7818] = 7575, + [7819] = 7524, + [7820] = 7686, + [7821] = 7583, + [7822] = 7822, + [7823] = 7528, + [7824] = 7530, + [7825] = 7541, + [7826] = 7542, + [7827] = 7552, + [7828] = 7661, + [7829] = 7686, + [7830] = 7830, + [7831] = 7533, + [7832] = 7537, + [7833] = 7833, + [7834] = 7583, + [7835] = 7835, + [7836] = 7583, + [7837] = 7613, + [7838] = 7583, + [7839] = 7583, + [7840] = 7583, + [7841] = 7521, + [7842] = 7524, + [7843] = 7526, + [7844] = 7575, + [7845] = 7541, + [7846] = 7542, + [7847] = 7552, + [7848] = 7520, + [7849] = 7585, + [7850] = 7546, + [7851] = 7523, + [7852] = 7553, + [7853] = 7527, + [7854] = 7537, + [7855] = 7600, + [7856] = 7533, + [7857] = 7603, + [7858] = 7672, + [7859] = 7566, + [7860] = 7860, + [7861] = 7619, + [7862] = 7620, + [7863] = 7628, + [7864] = 7629, + [7865] = 7630, + [7866] = 7866, + [7867] = 7867, + [7868] = 7868, + [7869] = 7528, + [7870] = 7870, + [7871] = 7530, + [7872] = 7686, + [7873] = 7575, + [7874] = 7613, + [7875] = 7875, + [7876] = 7577, + [7877] = 7577, + [7878] = 7685, + [7879] = 7879, + [7880] = 7585, + [7881] = 7546, + [7882] = 7523, + [7883] = 7527, + [7884] = 7533, + [7885] = 7885, + [7886] = 7672, + [7887] = 7520, + [7888] = 7888, + [7889] = 7600, + [7890] = 7602, + [7891] = 7603, + [7892] = 7663, + [7893] = 7893, + [7894] = 7565, + [7895] = 7603, + [7896] = 7638, + [7897] = 7692, + [7898] = 7638, + [7899] = 7535, + [7900] = 7900, + [7901] = 7585, + [7902] = 7528, + [7903] = 7663, + [7904] = 7619, + [7905] = 7620, + [7906] = 7546, + [7907] = 7907, + [7908] = 7692, + [7909] = 7909, + [7910] = 7676, + [7911] = 7524, + [7912] = 7912, + [7913] = 7913, + [7914] = 7541, + [7915] = 7542, + [7916] = 7552, + [7917] = 7917, + [7918] = 140, + [7919] = 7628, + [7920] = 7629, + [7921] = 7685, + [7922] = 7630, + [7923] = 7631, + [7924] = 2904, + [7925] = 7925, + [7926] = 7535, + [7927] = 7546, + [7928] = 7523, + [7929] = 7527, + [7930] = 7600, + [7931] = 7569, + [7932] = 7628, + [7933] = 7583, + [7934] = 7934, + [7935] = 7935, + [7936] = 7936, + [7937] = 7934, + [7938] = 7938, + [7939] = 7939, + [7940] = 7936, + [7941] = 7941, + [7942] = 7942, + [7943] = 7943, + [7944] = 7944, + [7945] = 7945, + [7946] = 7946, + [7947] = 7938, + [7948] = 7948, + [7949] = 7949, + [7950] = 7950, + [7951] = 7951, + [7952] = 7935, + [7953] = 7953, + [7954] = 7954, + [7955] = 7955, + [7956] = 7956, + [7957] = 7957, + [7958] = 7949, + [7959] = 7941, + [7960] = 7960, + [7961] = 7961, + [7962] = 7962, + [7963] = 7963, + [7964] = 7964, + [7965] = 7965, + [7966] = 7966, + [7967] = 7967, + [7968] = 7968, + [7969] = 7969, + [7970] = 7970, + [7971] = 7971, + [7972] = 7942, + [7973] = 7973, + [7974] = 7974, + [7975] = 7955, + [7976] = 7976, + [7977] = 7977, + [7978] = 7978, + [7979] = 7979, + [7980] = 7934, + [7981] = 7938, + [7982] = 7982, + [7983] = 7983, + [7984] = 7984, + [7985] = 7936, + [7986] = 7986, + [7987] = 7987, + [7988] = 7988, + [7989] = 7989, + [7990] = 7990, + [7991] = 7990, + [7992] = 7982, + [7993] = 7993, + [7994] = 7994, + [7995] = 7939, + [7996] = 7996, + [7997] = 7997, + [7998] = 7998, + [7999] = 7999, + [8000] = 7955, + [8001] = 8001, + [8002] = 8002, + [8003] = 7934, + [8004] = 7953, + [8005] = 7954, + [8006] = 7943, + [8007] = 8007, + [8008] = 7944, + [8009] = 7946, + [8010] = 7978, + [8011] = 7950, + [8012] = 7948, + [8013] = 7951, + [8014] = 7969, + [8015] = 7954, + [8016] = 7938, + [8017] = 7939, + [8018] = 7969, + [8019] = 7939, + [8020] = 7973, + [8021] = 7974, + [8022] = 7977, + [8023] = 7979, + [8024] = 7969, + [8025] = 7987, + [8026] = 7988, + [8027] = 7936, + [8028] = 7970, + [8029] = 7971, + [8030] = 8030, + [8031] = 7935, + [8032] = 7970, + [8033] = 7941, + [8034] = 7955, + [8035] = 8035, + [8036] = 8036, + [8037] = 7983, + [8038] = 7971, + [8039] = 7968, + [8040] = 7949, + [8041] = 7955, + [8042] = 7990, + [8043] = 7973, + [8044] = 7949, + [8045] = 7996, + [8046] = 8046, + [8047] = 7970, + [8048] = 7971, + [8049] = 7982, + [8050] = 8001, + [8051] = 8036, + [8052] = 8001, + [8053] = 7934, + [8054] = 8054, + [8055] = 7943, + [8056] = 7944, + [8057] = 7946, + [8058] = 8058, + [8059] = 7950, + [8060] = 7951, + [8061] = 7954, + [8062] = 7973, + [8063] = 7955, + [8064] = 7943, + [8065] = 7944, + [8066] = 7984, + [8067] = 7949, + [8068] = 7974, + [8069] = 7974, + [8070] = 7977, + [8071] = 8071, + [8072] = 7979, + [8073] = 7946, + [8074] = 7941, + [8075] = 7943, + [8076] = 7970, + [8077] = 7971, + [8078] = 8078, + [8079] = 8079, + [8080] = 8080, + [8081] = 8081, + [8082] = 7950, + [8083] = 7951, + [8084] = 8084, + [8085] = 7954, + [8086] = 8086, + [8087] = 7949, + [8088] = 7949, + [8089] = 8089, + [8090] = 8054, + [8091] = 8091, + [8092] = 7935, + [8093] = 7963, + [8094] = 8094, + [8095] = 8095, + [8096] = 7977, + [8097] = 7942, + [8098] = 7987, + [8099] = 7955, + [8100] = 7988, + [8101] = 7962, + [8102] = 7963, + [8103] = 7982, + [8104] = 8081, + [8105] = 7968, + [8106] = 7966, + [8107] = 7979, + [8108] = 8108, + [8109] = 7976, + [8110] = 8110, + [8111] = 7949, + [8112] = 7953, + [8113] = 8113, + [8114] = 8114, + [8115] = 7949, + [8116] = 8116, + [8117] = 7944, + [8118] = 7962, + [8119] = 7942, + [8120] = 7999, + [8121] = 7939, + [8122] = 7949, + [8123] = 7955, + [8124] = 8124, + [8125] = 8080, + [8126] = 8078, + [8127] = 8127, + [8128] = 7984, + [8129] = 8080, + [8130] = 8081, + [8131] = 8084, + [8132] = 7942, + [8133] = 7996, + [8134] = 7949, + [8135] = 8054, + [8136] = 8091, + [8137] = 7935, + [8138] = 7978, + [8139] = 7949, + [8140] = 7955, + [8141] = 7938, + [8142] = 7936, + [8143] = 7942, + [8144] = 7955, + [8145] = 7935, + [8146] = 7962, + [8147] = 7963, + [8148] = 8148, + [8149] = 7983, + [8150] = 8150, + [8151] = 8151, + [8152] = 7982, + [8153] = 8153, + [8154] = 7968, + [8155] = 7976, + [8156] = 8156, + [8157] = 8157, + [8158] = 7987, + [8159] = 7988, + [8160] = 7978, + [8161] = 8091, + [8162] = 7938, + [8163] = 7936, + [8164] = 7983, + [8165] = 7942, + [8166] = 8078, + [8167] = 8080, + [8168] = 8001, + [8169] = 8084, + [8170] = 7939, + [8171] = 7966, + [8172] = 8054, + [8173] = 8091, + [8174] = 8174, + [8175] = 7996, + [8176] = 7934, + [8177] = 7999, + [8178] = 7939, + [8179] = 7955, + [8180] = 7962, + [8181] = 7963, + [8182] = 7946, + [8183] = 7996, + [8184] = 8084, + [8185] = 7968, + [8186] = 7976, + [8187] = 7955, + [8188] = 7941, + [8189] = 7943, + [8190] = 7944, + [8191] = 7969, + [8192] = 7946, + [8193] = 7950, + [8194] = 7973, + [8195] = 7974, + [8196] = 8078, + [8197] = 8084, + [8198] = 7986, + [8199] = 7979, + [8200] = 8200, + [8201] = 7953, + [8202] = 8054, + [8203] = 8203, + [8204] = 8204, + [8205] = 8078, + [8206] = 7987, + [8207] = 7951, + [8208] = 7988, + [8209] = 8081, + [8210] = 7963, + [8211] = 7999, + [8212] = 7976, + [8213] = 7955, + [8214] = 7968, + [8215] = 8036, + [8216] = 7976, + [8217] = 8036, + [8218] = 7973, + [8219] = 7999, + [8220] = 7996, + [8221] = 7970, + [8222] = 8222, + [8223] = 8078, + [8224] = 7971, + [8225] = 8084, + [8226] = 7974, + [8227] = 7954, + [8228] = 7966, + [8229] = 8054, + [8230] = 8230, + [8231] = 7949, + [8232] = 7994, + [8233] = 7963, + [8234] = 8234, + [8235] = 7968, + [8236] = 7969, + [8237] = 7955, + [8238] = 8078, + [8239] = 8084, + [8240] = 7973, + [8241] = 7974, + [8242] = 8054, + [8243] = 7994, + [8244] = 7970, + [8245] = 7977, + [8246] = 7963, + [8247] = 7979, + [8248] = 8001, + [8249] = 8054, + [8250] = 7987, + [8251] = 7988, + [8252] = 7982, + [8253] = 8054, + [8254] = 7971, + [8255] = 8001, + [8256] = 7934, + [8257] = 8091, + [8258] = 7943, + [8259] = 7944, + [8260] = 7946, + [8261] = 7950, + [8262] = 7951, + [8263] = 7954, + [8264] = 7984, + [8265] = 7984, + [8266] = 7990, + [8267] = 8230, + [8268] = 7978, + [8269] = 7970, + [8270] = 7971, + [8271] = 7977, + [8272] = 7969, + [8273] = 7982, + [8274] = 7979, + [8275] = 7978, + [8276] = 7945, + [8277] = 7938, + [8278] = 8278, + [8279] = 7986, + [8280] = 8036, + [8281] = 8230, + [8282] = 7938, + [8283] = 8001, + [8284] = 8081, + [8285] = 7994, + [8286] = 7934, + [8287] = 7943, + [8288] = 7944, + [8289] = 7946, + [8290] = 7950, + [8291] = 7951, + [8292] = 7954, + [8293] = 8293, + [8294] = 7990, + [8295] = 7936, + [8296] = 7949, + [8297] = 7984, + [8298] = 7969, + [8299] = 7986, + [8300] = 7936, + [8301] = 7936, + [8302] = 7987, + [8303] = 7988, + [8304] = 7978, + [8305] = 7954, + [8306] = 7983, + [8307] = 7934, + [8308] = 7943, + [8309] = 7978, + [8310] = 8078, + [8311] = 7944, + [8312] = 7987, + [8313] = 7938, + [8314] = 7948, + [8315] = 7936, + [8316] = 7953, + [8317] = 7973, + [8318] = 7946, + [8319] = 8036, + [8320] = 7950, + [8321] = 7974, + [8322] = 8001, + [8323] = 7941, + [8324] = 7939, + [8325] = 7969, + [8326] = 8080, + [8327] = 7973, + [8328] = 7951, + [8329] = 7955, + [8330] = 8081, + [8331] = 7974, + [8332] = 7988, + [8333] = 7977, + [8334] = 7949, + [8335] = 7979, + [8336] = 7977, + [8337] = 7969, + [8338] = 7970, + [8339] = 7979, + [8340] = 7971, + [8341] = 7954, + [8342] = 7973, + [8343] = 7974, + [8344] = 8084, + [8345] = 8230, + [8346] = 8346, + [8347] = 7977, + [8348] = 7979, + [8349] = 7938, + [8350] = 7939, + [8351] = 7987, + [8352] = 7988, + [8353] = 7998, + [8354] = 8354, + [8355] = 7936, + [8356] = 7987, + [8357] = 7988, + [8358] = 7978, + [8359] = 8359, + [8360] = 7987, + [8361] = 7988, + [8362] = 7954, + [8363] = 7949, + [8364] = 7936, + [8365] = 8365, + [8366] = 7996, + [8367] = 7953, + [8368] = 7987, + [8369] = 7999, + [8370] = 7978, + [8371] = 8001, + [8372] = 7988, + [8373] = 7950, + [8374] = 8001, + [8375] = 7934, + [8376] = 7943, + [8377] = 7944, + [8378] = 7946, + [8379] = 8379, + [8380] = 7950, + [8381] = 7951, + [8382] = 7954, + [8383] = 7998, + [8384] = 8054, + [8385] = 7984, + [8386] = 7984, + [8387] = 7998, + [8388] = 7948, + [8389] = 8091, + [8390] = 7998, + [8391] = 7999, + [8392] = 7998, + [8393] = 7955, + [8394] = 7998, + [8395] = 7998, + [8396] = 7998, + [8397] = 7998, + [8398] = 7998, + [8399] = 7998, + [8400] = 7998, + [8401] = 7998, + [8402] = 7998, + [8403] = 7998, + [8404] = 7998, + [8405] = 7970, + [8406] = 7971, + [8407] = 8407, + [8408] = 7951, + [8409] = 7977, + [8410] = 8410, + [8411] = 8411, + [8412] = 8412, + [8413] = 8413, + [8414] = 8414, + [8415] = 8415, + [8416] = 8416, + [8417] = 8417, + [8418] = 8418, + [8419] = 8419, + [8420] = 8420, + [8421] = 8421, + [8422] = 8422, + [8423] = 8423, + [8424] = 8424, + [8425] = 8425, + [8426] = 8426, + [8427] = 8427, + [8428] = 8428, + [8429] = 8429, + [8430] = 8429, + [8431] = 8431, + [8432] = 8432, + [8433] = 8433, + [8434] = 8434, + [8435] = 8435, + [8436] = 8436, + [8437] = 8437, + [8438] = 8438, + [8439] = 8439, + [8440] = 8440, + [8441] = 8441, + [8442] = 8442, + [8443] = 8443, + [8444] = 8444, + [8445] = 8445, + [8446] = 8446, + [8447] = 8447, + [8448] = 8448, + [8449] = 8449, + [8450] = 8450, + [8451] = 8451, + [8452] = 8437, + [8453] = 8453, + [8454] = 8454, + [8455] = 8455, + [8456] = 8456, + [8457] = 8442, + [8458] = 8458, + [8459] = 8456, + [8460] = 8460, + [8461] = 8461, + [8462] = 8462, + [8463] = 8463, + [8464] = 8464, + [8465] = 8465, + [8466] = 8425, + [8467] = 8467, + [8468] = 8439, + [8469] = 8469, + [8470] = 8410, + [8471] = 8471, + [8472] = 8472, + [8473] = 8473, + [8474] = 8474, + [8475] = 8475, + [8476] = 8476, + [8477] = 8473, + [8478] = 8478, + [8479] = 8479, + [8480] = 8414, + [8481] = 8450, + [8482] = 8425, + [8483] = 8413, + [8484] = 8484, + [8485] = 8422, + [8486] = 8423, + [8487] = 8487, + [8488] = 7202, + [8489] = 8424, + [8490] = 8484, + [8491] = 8425, + [8492] = 8492, + [8493] = 8439, + [8494] = 8479, + [8495] = 8495, + [8496] = 8423, + [8497] = 8497, + [8498] = 8412, + [8499] = 8435, + [8500] = 8446, + [8501] = 8451, + [8502] = 8458, + [8503] = 8503, + [8504] = 8445, + [8505] = 8505, + [8506] = 8506, + [8507] = 8507, + [8508] = 8460, + [8509] = 8479, + [8510] = 8427, + [8511] = 8511, + [8512] = 8512, + [8513] = 8460, + [8514] = 8514, + [8515] = 8420, + [8516] = 8455, + [8517] = 8440, + [8518] = 8424, + [8519] = 8519, + [8520] = 8520, + [8521] = 8521, + [8522] = 8438, + [8523] = 8435, + [8524] = 8461, + [8525] = 8525, + [8526] = 8512, + [8527] = 8527, + [8528] = 8415, + [8529] = 8416, + [8530] = 8503, + [8531] = 8531, + [8532] = 8419, + [8533] = 8533, + [8534] = 8425, + [8535] = 8435, + [8536] = 8536, + [8537] = 8471, + [8538] = 8531, + [8539] = 8539, + [8540] = 8511, + [8541] = 8541, + [8542] = 8428, + [8543] = 8456, + [8544] = 8419, + [8545] = 8461, + [8546] = 8546, + [8547] = 8453, + [8548] = 8548, + [8549] = 8511, + [8550] = 8550, + [8551] = 8551, + [8552] = 8463, + [8553] = 8553, + [8554] = 8503, + [8555] = 8555, + [8556] = 8425, + [8557] = 8437, + [8558] = 8410, + [8559] = 8559, + [8560] = 8495, + [8561] = 8546, + [8562] = 8562, + [8563] = 8511, + [8564] = 8564, + [8565] = 8476, + [8566] = 8472, + [8567] = 8450, + [8568] = 8464, + [8569] = 8438, + [8570] = 8570, + [8571] = 8456, + [8572] = 8572, + [8573] = 8492, + [8574] = 8442, + [8575] = 8505, + [8576] = 8576, + [8577] = 8577, + [8578] = 8439, + [8579] = 8579, + [8580] = 8458, + [8581] = 8576, + [8582] = 8546, + [8583] = 8505, + [8584] = 8584, + [8585] = 8476, + [8586] = 8479, + [8587] = 8587, + [8588] = 8449, + [8589] = 8589, + [8590] = 8450, + [8591] = 8451, + [8592] = 8592, + [8593] = 8551, + [8594] = 8594, + [8595] = 8521, + [8596] = 8596, + [8597] = 8431, + [8598] = 8464, + [8599] = 8599, + [8600] = 8533, + [8601] = 8415, + [8602] = 8416, + [8603] = 8435, + [8604] = 8570, + [8605] = 8511, + [8606] = 8606, + [8607] = 8431, + [8608] = 8456, + [8609] = 8458, + [8610] = 8495, + [8611] = 8439, + [8612] = 8612, + [8613] = 8503, + [8614] = 8453, + [8615] = 8615, + [8616] = 8616, + [8617] = 8533, + [8618] = 8618, + [8619] = 8619, + [8620] = 6043, + [8621] = 8410, + [8622] = 8495, + [8623] = 8623, + [8624] = 8503, + [8625] = 8625, + [8626] = 8503, + [8627] = 8627, + [8628] = 8413, + [8629] = 8629, + [8630] = 8630, + [8631] = 8431, + [8632] = 8576, + [8633] = 8633, + [8634] = 8634, + [8635] = 8492, + [8636] = 8456, + [8637] = 8413, + [8638] = 8463, + [8639] = 8442, + [8640] = 8442, + [8641] = 8458, + [8642] = 8414, + [8643] = 8643, + [8644] = 8644, + [8645] = 8645, + [8646] = 8471, + [8647] = 8479, + [8648] = 8648, + [8649] = 8649, + [8650] = 8650, + [8651] = 8649, + [8652] = 8652, + [8653] = 8653, + [8654] = 8654, + [8655] = 8655, + [8656] = 8521, + [8657] = 8449, + [8658] = 8658, + [8659] = 8618, + [8660] = 8660, + [8661] = 8661, + [8662] = 8415, + [8663] = 8416, + [8664] = 8450, + [8665] = 8453, + [8666] = 8666, + [8667] = 8667, + [8668] = 8667, + [8669] = 8450, + [8670] = 8570, + [8671] = 8671, + [8672] = 8410, + [8673] = 8446, + [8674] = 8674, + [8675] = 8460, + [8676] = 1643, + [8677] = 8471, + [8678] = 8414, + [8679] = 8495, + [8680] = 8562, + [8681] = 8505, + [8682] = 8505, + [8683] = 8473, + [8684] = 8410, + [8685] = 8492, + [8686] = 8503, + [8687] = 8548, + [8688] = 8438, + [8689] = 8649, + [8690] = 8551, + [8691] = 8503, + [8692] = 8435, + [8693] = 8445, + [8694] = 8479, + [8695] = 8420, + [8696] = 8696, + [8697] = 8533, + [8698] = 8422, + [8699] = 8511, + [8700] = 8618, + [8701] = 8667, + [8702] = 8449, + [8703] = 8460, + [8704] = 8436, + [8705] = 8506, + [8706] = 8415, + [8707] = 8416, + [8708] = 8708, + [8709] = 8709, + [8710] = 8570, + [8711] = 8428, + [8712] = 8618, + [8713] = 8495, + [8714] = 8562, + [8715] = 8450, + [8716] = 8455, + [8717] = 8717, + [8718] = 8718, + [8719] = 8492, + [8720] = 8720, + [8721] = 8472, + [8722] = 8420, + [8723] = 8479, + [8724] = 8422, + [8725] = 8423, + [8726] = 8416, + [8727] = 8431, + [8728] = 8424, + [8729] = 8414, + [8730] = 8730, + [8731] = 8731, + [8732] = 8492, + [8733] = 8589, + [8734] = 8521, + [8735] = 8479, + [8736] = 8736, + [8737] = 8416, + [8738] = 8738, + [8739] = 8472, + [8740] = 8740, + [8741] = 8446, + [8742] = 8492, + [8743] = 8479, + [8744] = 8416, + [8745] = 8472, + [8746] = 8451, + [8747] = 8479, + [8748] = 8416, + [8749] = 8422, + [8750] = 8456, + [8751] = 8479, + [8752] = 8416, + [8753] = 8479, + [8754] = 8416, + [8755] = 8479, + [8756] = 8416, + [8757] = 8479, + [8758] = 8416, + [8759] = 8479, + [8760] = 8416, + [8761] = 8479, + [8762] = 8416, + [8763] = 8505, + [8764] = 8476, + [8765] = 8428, + [8766] = 8766, + [8767] = 8425, + [8768] = 8696, + [8769] = 8769, + [8770] = 8577, + [8771] = 8612, + [8772] = 8772, + [8773] = 8599, + [8774] = 8589, + [8775] = 8507, + [8776] = 8418, + [8777] = 8449, + [8778] = 8551, + [8779] = 8422, + [8780] = 8730, + [8781] = 8472, + [8782] = 8782, + [8783] = 8730, + [8784] = 8784, + [8785] = 8785, + [8786] = 8435, + [8787] = 8787, + [8788] = 8788, + [8789] = 8570, + [8790] = 8790, + [8791] = 8625, + [8792] = 8792, + [8793] = 8525, + [8794] = 8794, + [8795] = 8438, + [8796] = 8796, + [8797] = 8438, + [8798] = 8798, + [8799] = 8799, + [8800] = 8800, + [8801] = 8801, + [8802] = 8589, + [8803] = 8449, + [8804] = 8533, + [8805] = 8431, + [8806] = 8435, + [8807] = 8503, + [8808] = 8533, + [8809] = 8425, + [8810] = 8546, + [8811] = 8649, + [8812] = 8618, + [8813] = 8667, + [8814] = 8814, + [8815] = 8815, + [8816] = 8456, + [8817] = 8487, + [8818] = 8473, + [8819] = 8484, + [8820] = 8820, + [8821] = 8730, + [8822] = 8495, + [8823] = 8445, + [8824] = 8460, + [8825] = 8503, + [8826] = 8826, + [8827] = 8827, + [8828] = 8828, + [8829] = 8829, + [8830] = 8784, + [8831] = 8456, + [8832] = 8832, + [8833] = 8833, + [8834] = 8834, + [8835] = 8533, + [8836] = 8521, + [8837] = 8837, + [8838] = 8838, + [8839] = 8839, + [8840] = 8840, + [8841] = 8448, + [8842] = 8461, + [8843] = 8843, + [8844] = 8844, + [8845] = 8413, + [8846] = 8846, + [8847] = 8439, + [8848] = 8495, + [8849] = 8849, + [8850] = 8850, + [8851] = 8562, + [8852] = 8460, + [8853] = 8418, + [8854] = 8589, + [8855] = 8839, + [8856] = 8856, + [8857] = 8857, + [8858] = 8422, + [8859] = 8450, + [8860] = 8860, + [8861] = 8709, + [8862] = 8862, + [8863] = 8423, + [8864] = 8428, + [8865] = 8437, + [8866] = 8784, + [8867] = 8533, + [8868] = 8448, + [8869] = 8531, + [8870] = 8464, + [8871] = 8418, + [8872] = 8511, + [8873] = 8667, + [8874] = 8445, + [8875] = 8649, + [8876] = 8570, + [8877] = 8618, + [8878] = 8772, + [8879] = 8503, + [8880] = 8533, + [8881] = 8881, + [8882] = 8882, + [8883] = 1647, + [8884] = 8884, + [8885] = 8885, + [8886] = 8886, + [8887] = 8887, + [8888] = 8888, + [8889] = 8612, + [8890] = 6039, + [8891] = 8891, + [8892] = 8892, + [8893] = 8667, + [8894] = 8455, + [8895] = 8769, + [8896] = 8472, + [8897] = 8801, + [8898] = 8576, + [8899] = 8730, + [8900] = 8833, + [8901] = 8435, + [8902] = 8902, + [8903] = 8492, + [8904] = 8492, + [8905] = 8905, + [8906] = 8536, + [8907] = 8473, + [8908] = 8435, + [8909] = 8484, + [8910] = 8910, + [8911] = 8503, + [8912] = 8446, + [8913] = 8913, + [8914] = 8440, + [8915] = 8445, + [8916] = 8916, + [8917] = 8612, + [8918] = 8450, + [8919] = 8800, + [8920] = 8415, + [8921] = 8473, + [8922] = 8460, + [8923] = 8570, + [8924] = 8536, + [8925] = 8422, + [8926] = 8423, + [8927] = 8424, + [8928] = 8425, + [8929] = 8416, + [8930] = 8503, + [8931] = 8766, + [8932] = 8511, + [8933] = 8533, + [8934] = 8423, + [8935] = 8935, + [8936] = 8784, + [8937] = 8533, + [8938] = 8424, + [8939] = 8891, + [8940] = 8473, + [8941] = 8484, + [8942] = 8456, + [8943] = 8453, + [8944] = 8454, + [8945] = 8413, + [8946] = 8503, + [8947] = 8947, + [8948] = 8948, + [8949] = 8423, + [8950] = 8950, + [8951] = 8531, + [8952] = 8548, + [8953] = 8420, + [8954] = 8449, + [8955] = 8955, + [8956] = 8453, + [8957] = 8454, + [8958] = 8564, + [8959] = 8959, + [8960] = 8455, + [8961] = 6020, + [8962] = 8414, + [8963] = 8562, + [8964] = 8891, + [8965] = 8434, + [8966] = 8766, + [8967] = 8769, + [8968] = 8577, + [8969] = 8599, + [8970] = 8970, + [8971] = 8507, + [8972] = 8548, + [8973] = 8422, + [8974] = 8615, + [8975] = 8975, + [8976] = 8506, + [8977] = 8625, + [8978] = 8473, + [8979] = 8525, + [8980] = 8424, + [8981] = 8472, + [8982] = 8982, + [8983] = 8799, + [8984] = 8800, + [8985] = 8892, + [8986] = 8431, + [8987] = 8463, + [8988] = 8456, + [8989] = 8487, + [8990] = 8884, + [8991] = 8484, + [8992] = 8992, + [8993] = 8834, + [8994] = 8839, + [8995] = 8531, + [8996] = 8996, + [8997] = 8766, + [8998] = 8769, + [8999] = 8599, + [9000] = 8708, + [9001] = 8507, + [9002] = 8467, + [9003] = 9003, + [9004] = 8625, + [9005] = 8413, + [9006] = 8525, + [9007] = 9007, + [9008] = 8410, + [9009] = 8799, + [9010] = 8800, + [9011] = 8487, + [9012] = 6012, + [9013] = 8463, + [9014] = 8533, + [9015] = 8834, + [9016] = 8839, + [9017] = 9017, + [9018] = 8766, + [9019] = 8769, + [9020] = 8599, + [9021] = 8450, + [9022] = 8507, + [9023] = 8905, + [9024] = 8512, + [9025] = 8625, + [9026] = 8525, + [9027] = 8546, + [9028] = 8531, + [9029] = 8799, + [9030] = 8800, + [9031] = 8487, + [9032] = 8422, + [9033] = 9033, + [9034] = 8589, + [9035] = 8834, + [9036] = 8839, + [9037] = 8435, + [9038] = 8766, + [9039] = 8769, + [9040] = 8599, + [9041] = 8422, + [9042] = 8507, + [9043] = 8511, + [9044] = 8440, + [9045] = 8525, + [9046] = 9046, + [9047] = 9047, + [9048] = 8799, + [9049] = 8800, + [9050] = 8487, + [9051] = 9051, + [9052] = 9052, + [9053] = 8612, + [9054] = 8834, + [9055] = 8839, + [9056] = 8562, + [9057] = 8766, + [9058] = 8769, + [9059] = 9059, + [9060] = 8507, + [9061] = 9061, + [9062] = 8448, + [9063] = 9063, + [9064] = 8423, + [9065] = 8799, + [9066] = 8800, + [9067] = 9067, + [9068] = 9068, + [9069] = 8784, + [9070] = 8834, + [9071] = 9071, + [9072] = 8766, + [9073] = 8769, + [9074] = 8507, + [9075] = 8589, + [9076] = 8800, + [9077] = 8519, + [9078] = 9078, + [9079] = 8834, + [9080] = 8456, + [9081] = 8766, + [9082] = 8769, + [9083] = 8507, + [9084] = 8916, + [9085] = 8800, + [9086] = 8511, + [9087] = 8834, + [9088] = 8766, + [9089] = 8769, + [9090] = 8507, + [9091] = 8800, + [9092] = 8834, + [9093] = 8769, + [9094] = 8800, + [9095] = 8834, + [9096] = 8769, + [9097] = 8800, + [9098] = 8834, + [9099] = 8800, + [9100] = 8834, + [9101] = 8800, + [9102] = 8834, + [9103] = 8800, + [9104] = 8834, + [9105] = 8800, + [9106] = 8834, + [9107] = 8800, + [9108] = 8834, + [9109] = 8484, + [9110] = 8440, + [9111] = 8577, + [9112] = 9112, + [9113] = 9113, + [9114] = 8541, + [9115] = 8862, + [9116] = 8410, + [9117] = 8424, + [9118] = 8533, + [9119] = 8449, + [9120] = 8449, + [9121] = 9121, + [9122] = 8546, + [9123] = 8612, + [9124] = 8418, + [9125] = 8709, + [9126] = 9126, + [9127] = 8799, + [9128] = 8492, + [9129] = 8460, + [9130] = 8815, + [9131] = 8860, + [9132] = 9132, + [9133] = 8801, + [9134] = 8784, + [9135] = 8422, + [9136] = 8649, + [9137] = 8460, + [9138] = 9138, + [9139] = 8833, + [9140] = 8892, + [9141] = 8495, + [9142] = 8905, + [9143] = 8533, + [9144] = 8916, + [9145] = 9145, + [9146] = 8649, + [9147] = 8442, + [9148] = 8784, + [9149] = 8533, + [9150] = 8618, + [9151] = 9151, + [9152] = 8564, + [9153] = 8615, + [9154] = 9154, + [9155] = 9155, + [9156] = 8422, + [9157] = 8884, + [9158] = 8589, + [9159] = 8996, + [9160] = 8708, + [9161] = 8434, + [9162] = 8448, + [9163] = 8495, + [9164] = 8435, + [9165] = 8519, + [9166] = 8541, + [9167] = 9167, + [9168] = 8418, + [9169] = 8472, + [9170] = 8576, + [9171] = 9171, + [9172] = 8451, + [9173] = 8446, + [9174] = 8815, + [9175] = 8472, + [9176] = 8451, + [9177] = 9177, + [9178] = 9178, + [9179] = 8661, + [9180] = 9180, + [9181] = 8458, + [9182] = 9182, + [9183] = 8448, + [9184] = 8891, + [9185] = 9112, + [9186] = 9186, + [9187] = 9187, + [9188] = 9188, + [9189] = 9113, + [9190] = 8667, + [9191] = 8467, + [9192] = 9192, + [9193] = 8495, + [9194] = 8415, + [9195] = 8476, + [9196] = 8577, + [9197] = 9112, + [9198] = 9113, + [9199] = 8479, + [9200] = 8862, + [9201] = 8551, + [9202] = 8536, + [9203] = 8834, + [9204] = 8815, + [9205] = 8860, + [9206] = 8412, + [9207] = 9207, + [9208] = 9208, + [9209] = 8473, + [9210] = 8577, + [9211] = 9112, + [9212] = 9113, + [9213] = 8456, + [9214] = 8503, + [9215] = 8815, + [9216] = 8860, + [9217] = 8882, + [9218] = 8418, + [9219] = 8416, + [9220] = 9112, + [9221] = 9113, + [9222] = 8495, + [9223] = 8996, + [9224] = 8815, + [9225] = 8860, + [9226] = 8442, + [9227] = 8454, + [9228] = 9112, + [9229] = 9113, + [9230] = 8495, + [9231] = 8448, + [9232] = 8815, + [9233] = 8860, + [9234] = 9234, + [9235] = 9112, + [9236] = 9113, + [9237] = 8503, + [9238] = 8815, + [9239] = 8860, + [9240] = 8424, + [9241] = 8815, + [9242] = 8860, + [9243] = 8414, + [9244] = 8860, + [9245] = 9245, + [9246] = 8860, + [9247] = 8428, + [9248] = 8860, + [9249] = 8461, + [9250] = 8860, + [9251] = 8546, + [9252] = 8860, + [9253] = 8428, + [9254] = 8860, + [9255] = 9255, + [9256] = 8860, + [9257] = 8521, + [9258] = 8860, + [9259] = 8449, + [9260] = 8860, + [9261] = 8846, + [9262] = 8887, + [9263] = 8427, + [9264] = 8846, + [9265] = 8887, + [9266] = 9266, + [9267] = 8846, + [9268] = 8887, + [9269] = 8503, + [9270] = 8846, + [9271] = 8887, + [9272] = 8453, + [9273] = 8846, + [9274] = 8887, + [9275] = 9275, + [9276] = 8887, + [9277] = 8887, + [9278] = 8887, + [9279] = 8887, + [9280] = 8887, + [9281] = 8887, + [9282] = 8887, + [9283] = 8887, + [9284] = 8887, + [9285] = 8887, + [9286] = 8887, + [9287] = 8589, + [9288] = 8730, + [9289] = 8730, + [9290] = 8533, + [9291] = 8533, + [9292] = 9061, + [9293] = 9061, + [9294] = 9061, + [9295] = 9061, + [9296] = 9061, + [9297] = 9297, +}; + +static const TSCharacterRange sym_identifier_character_set_1[] = { + {'$', '$'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, + {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, + {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, + {0x3f7, 0x481}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x620, 0x64a}, + {0x66e, 0x66f}, {0x671, 0x6d3}, {0x6d5, 0x6d5}, {0x6e5, 0x6e6}, {0x6ee, 0x6ef}, {0x6fa, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x710}, + {0x712, 0x72f}, {0x74d, 0x7a5}, {0x7b1, 0x7b1}, {0x7ca, 0x7ea}, {0x7f4, 0x7f5}, {0x7fa, 0x7fa}, {0x800, 0x815}, {0x81a, 0x81a}, + {0x824, 0x824}, {0x828, 0x828}, {0x840, 0x858}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, + {0x93d, 0x93d}, {0x950, 0x950}, {0x958, 0x961}, {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, + {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9f0, 0x9f1}, {0x9fc, 0x9fc}, + {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, + {0xa5e, 0xa5e}, {0xa72, 0xa74}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, + {0xabd, 0xabd}, {0xad0, 0xad0}, {0xae0, 0xae1}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, + {0xb32, 0xb33}, {0xb35, 0xb39}, {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb71, 0xb71}, {0xb83, 0xb83}, {0xb85, 0xb8a}, + {0xb8e, 0xb90}, {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, + {0xbd0, 0xbd0}, {0xc05, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, + {0xc60, 0xc61}, {0xc80, 0xc80}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, + {0xcdd, 0xcde}, {0xce0, 0xce1}, {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, {0xd4e, 0xd4e}, + {0xd54, 0xd56}, {0xd5f, 0xd61}, {0xd7a, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, + {0xe01, 0xe30}, {0xe32, 0xe32}, {0xe40, 0xe46}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, + {0xea7, 0xeb0}, {0xeb2, 0xeb2}, {0xebd, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf40, 0xf47}, + {0xf49, 0xf6c}, {0xf88, 0xf8c}, {0x1000, 0x102a}, {0x103f, 0x103f}, {0x1050, 0x1055}, {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, + {0x106e, 0x1070}, {0x1075, 0x1081}, {0x108e, 0x108e}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, + {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, + {0x12b8, 0x12be}, {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1380, 0x138f}, + {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, {0x1700, 0x1711}, + {0x171f, 0x1731}, {0x1740, 0x1751}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, + {0x1880, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, + {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, + {0x1c00, 0x1c23}, {0x1c4d, 0x1c4f}, {0x1c5a, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, + {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, + {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, + {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, {0x207f, 0x207f}, + {0x2090, 0x209c}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, + {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cee}, + {0x2cf2, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, + {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x3005, 0x3007}, + {0x3021, 0x3029}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, + {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa61f}, + {0xa62a, 0xa62b}, {0xa640, 0xa66e}, {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, + {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, + {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9cf}, + {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, + {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, {0xaab5, 0xaab6}, {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, + {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab5c, 0xab69}, + {0xab70, 0xabe2}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, + {0xfb1d, 0xfb1d}, {0xfb1f, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, + {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdf9}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, + {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff21, 0xff3a}, {0xff41, 0xff5a}, {0xff66, 0xff9d}, {0xffa0, 0xffbe}, + {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, + {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, + {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, + {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, + {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, + {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, + {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, + {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, + {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10d4a, 0x10d65}, + {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, + {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, + {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, + {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, + {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, + {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, {0x113d1, 0x113d1}, + {0x113d3, 0x113d3}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, + {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, + {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, + {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, + {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, + {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, + {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, + {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, + {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16e40, 0x16e7f}, + {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, + {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, + {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, + {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, + {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, + {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, + {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, + {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5f0}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, + {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, + {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, + {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, + {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, + {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, + {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, +}; + +static const TSCharacterRange sym_identifier_character_set_2[] = { + {'$', '$'}, {'0', '9'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, + {0xb7, 0xb7}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, + {0x2ee, 0x2ee}, {0x300, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, + {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x591, 0x5bd}, + {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, {0x620, 0x669}, + {0x66e, 0x6d3}, {0x6d5, 0x6dc}, {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7f5}, + {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x897, 0x8e1}, + {0x8e3, 0x963}, {0x966, 0x96f}, {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, + {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f1}, + {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, + {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa3c, 0xa3c}, {0xa3e, 0xa42}, {0xa47, 0xa48}, {0xa4b, 0xa4d}, {0xa51, 0xa51}, {0xa59, 0xa5c}, + {0xa5e, 0xa5e}, {0xa66, 0xa75}, {0xa81, 0xa83}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, + {0xab5, 0xab9}, {0xabc, 0xac5}, {0xac7, 0xac9}, {0xacb, 0xacd}, {0xad0, 0xad0}, {0xae0, 0xae3}, {0xae6, 0xaef}, {0xaf9, 0xaff}, + {0xb01, 0xb03}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, {0xb3c, 0xb44}, + {0xb47, 0xb48}, {0xb4b, 0xb4d}, {0xb55, 0xb57}, {0xb5c, 0xb5d}, {0xb5f, 0xb63}, {0xb66, 0xb6f}, {0xb71, 0xb71}, {0xb82, 0xb83}, + {0xb85, 0xb8a}, {0xb8e, 0xb90}, {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, + {0xbae, 0xbb9}, {0xbbe, 0xbc2}, {0xbc6, 0xbc8}, {0xbca, 0xbcd}, {0xbd0, 0xbd0}, {0xbd7, 0xbd7}, {0xbe6, 0xbef}, {0xc00, 0xc0c}, + {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3c, 0xc44}, {0xc46, 0xc48}, {0xc4a, 0xc4d}, {0xc55, 0xc56}, {0xc58, 0xc5a}, + {0xc5d, 0xc5d}, {0xc60, 0xc63}, {0xc66, 0xc6f}, {0xc80, 0xc83}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, + {0xcb5, 0xcb9}, {0xcbc, 0xcc4}, {0xcc6, 0xcc8}, {0xcca, 0xccd}, {0xcd5, 0xcd6}, {0xcdd, 0xcde}, {0xce0, 0xce3}, {0xce6, 0xcef}, + {0xcf1, 0xcf3}, {0xd00, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd44}, {0xd46, 0xd48}, {0xd4a, 0xd4e}, {0xd54, 0xd57}, {0xd5f, 0xd63}, + {0xd66, 0xd6f}, {0xd7a, 0xd7f}, {0xd81, 0xd83}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, + {0xdca, 0xdca}, {0xdcf, 0xdd4}, {0xdd6, 0xdd6}, {0xdd8, 0xddf}, {0xde6, 0xdef}, {0xdf2, 0xdf3}, {0xe01, 0xe3a}, {0xe40, 0xe4e}, + {0xe50, 0xe59}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xebd}, {0xec0, 0xec4}, + {0xec6, 0xec6}, {0xec8, 0xece}, {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf18, 0xf19}, {0xf20, 0xf29}, {0xf35, 0xf35}, + {0xf37, 0xf37}, {0xf39, 0xf39}, {0xf3e, 0xf47}, {0xf49, 0xf6c}, {0xf71, 0xf84}, {0xf86, 0xf97}, {0xf99, 0xfbc}, {0xfc6, 0xfc6}, + {0x1000, 0x1049}, {0x1050, 0x109d}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, + {0x1250, 0x1256}, {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, + {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x135d, 0x135f}, {0x1369, 0x1371}, + {0x1380, 0x138f}, {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, + {0x1700, 0x1715}, {0x171f, 0x1734}, {0x1740, 0x1753}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1772, 0x1773}, {0x1780, 0x17d3}, {0x17d7, 0x17d7}, + {0x17dc, 0x17dd}, {0x17e0, 0x17e9}, {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, + {0x1920, 0x192b}, {0x1930, 0x193b}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a1b}, + {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b4c}, + {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, + {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, + {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, + {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, {0x203f, 0x2040}, + {0x2054, 0x2054}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x20d0, 0x20dc}, {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, {0x2102, 0x2102}, + {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, + {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, + {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, + {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, + {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, + {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, + {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa827}, + {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, + {0xa960, 0xa97c}, {0xa980, 0xa9c0}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, + {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, + {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab5c, 0xab69}, {0xab70, 0xabea}, {0xabec, 0xabed}, {0xabf0, 0xabf9}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, + {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, + {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, + {0xfdf0, 0xfdf9}, {0xfe00, 0xfe0f}, {0xfe20, 0xfe2f}, {0xfe33, 0xfe34}, {0xfe4d, 0xfe4f}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, + {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, {0xff3f, 0xff3f}, {0xff41, 0xff5a}, + {0xff65, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, + {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, + {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, + {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, + {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, + {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, + {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, + {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, + {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, + {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, + {0x10d69, 0x10d6d}, {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10efc, 0x10f1c}, {0x10f27, 0x10f27}, + {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, + {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, + {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, + {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, + {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, + {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, + {0x113b7, 0x113c0}, {0x113c2, 0x113c2}, {0x113c5, 0x113c5}, {0x113c7, 0x113ca}, {0x113cc, 0x113d3}, {0x113e1, 0x113e2}, {0x11400, 0x1144a}, {0x11450, 0x11459}, + {0x1145e, 0x11461}, {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, + {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, + {0x11740, 0x11746}, {0x11800, 0x1183a}, {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, + {0x11937, 0x11938}, {0x1193b, 0x11943}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, + {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, + {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, + {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, + {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f5a}, {0x11fb0, 0x11fb0}, + {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x13460, 0x143fa}, {0x14400, 0x14646}, + {0x16100, 0x16139}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, + {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, {0x16e40, 0x16e7f}, + {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, + {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, + {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1ccf0, 0x1ccf9}, + {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, + {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, + {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, + {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, + {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, + {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, + {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, + {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e5d0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, + {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, + {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, + {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, + {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, + {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1fbf0, 0x1fbf9}, + {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, + {0x31350, 0x323af}, {0xe0100, 0xe01ef}, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -9478,15185 +15098,17032 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(206); - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '#') ADVANCE(173); - if (lookahead == '%') ADVANCE(284); - if (lookahead == '&') ADVANCE(293); - if (lookahead == '\'') ADVANCE(372); - if (lookahead == '(') ADVANCE(211); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '+') ADVANCE(275); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(265); - if (lookahead == '.') ADVANCE(350); - if (lookahead == '/') ADVANCE(282); - if (lookahead == '0') ADVANCE(357); - if (lookahead == ':') ADVANCE(335); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(301); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(979); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(658); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(628); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(677); - if (lookahead == 'U') ADVANCE(631); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(315); - if (lookahead == '\\') SKIP(201) - if (lookahead == ']') ADVANCE(317); - if (lookahead == '^') ADVANCE(290); - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(905); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(955); - if (lookahead == 'u') ADVANCE(635); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(287); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(204) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); - if (('E' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (eof) ADVANCE(345); + ADVANCE_MAP( + '!', 412, + '"', 543, + '#', 290, + '%', 436, + '&', 446, + '\'', 534, + '(', 349, + ')', 352, + '*', 432, + '+', 426, + ',', 351, + '-', 415, + '.', 508, + '/', 434, + '0', 516, + ':', 492, + ';', 464, + '<', 456, + '=', 476, + '>', 1162, + '?', 493, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 835, + 'H', 830, + 'I', 961, + 'L', 794, + 'P', 854, + 'Q', 1067, + 'R', 799, + 'S', 867, + 'T', 855, + 'U', 800, + 'V', 992, + 'W', 865, + '[', 472, + '\\', 2, + ']', 474, + '^', 443, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1084, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 't', 1135, + 'u', 805, + 'v', 1130, + 'w', 1096, + '{', 468, + '|', 440, + '}', 469, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(343); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(989); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); + if (lookahead == '\n') SKIP(166); END_STATE(); case 2: - if (lookahead == '\n') SKIP(108) + if (lookahead == '\n') SKIP(166); + if (lookahead == '\r') SKIP(1); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 3: - if (lookahead == '\n') SKIP(108) - if (lookahead == '\r') SKIP(2) + if (lookahead == '\n') SKIP(175); END_STATE(); case 4: - if (lookahead == '\n') SKIP(109) + if (lookahead == '\n') SKIP(175); + if (lookahead == '\r') SKIP(3); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 5: - if (lookahead == '\n') SKIP(109) - if (lookahead == '\r') SKIP(4) + if (lookahead == '\n') ADVANCE(1183); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); END_STATE(); case 6: - if (lookahead == '\n') SKIP(147) + if (lookahead == '\n') SKIP(176); END_STATE(); case 7: - if (lookahead == '\n') SKIP(147) - if (lookahead == '\r') SKIP(6) + if (lookahead == '\n') SKIP(176); + if (lookahead == '\r') SKIP(6); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 8: - if (lookahead == '\n') SKIP(124) + if (lookahead == '\n') SKIP(174); END_STATE(); case 9: - if (lookahead == '\n') SKIP(124) - if (lookahead == '\r') SKIP(8) + if (lookahead == '\n') SKIP(174); + if (lookahead == '\r') SKIP(8); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 10: - if (lookahead == '\n') SKIP(125) + if (lookahead == '\n') SKIP(178); END_STATE(); case 11: - if (lookahead == '\n') SKIP(125) - if (lookahead == '\r') SKIP(10) + if (lookahead == '\n') SKIP(178); + if (lookahead == '\r') SKIP(10); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 12: - if (lookahead == '\n') SKIP(112) + if (lookahead == '\n') SKIP(177); END_STATE(); case 13: - if (lookahead == '\n') SKIP(112) - if (lookahead == '\r') SKIP(12) + if (lookahead == '\n') SKIP(177); + if (lookahead == '\r') SKIP(12); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 14: - if (lookahead == '\n') SKIP(106) + if (lookahead == '\n') SKIP(242); END_STATE(); case 15: - if (lookahead == '\n') SKIP(106) - if (lookahead == '\r') SKIP(14) + if (lookahead == '\n') SKIP(242); + if (lookahead == '\r') SKIP(14); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 16: - if (lookahead == '\n') SKIP(126) + if (lookahead == '\n') SKIP(198); END_STATE(); case 17: - if (lookahead == '\n') SKIP(126) - if (lookahead == '\r') SKIP(16) + if (lookahead == '\n') SKIP(198); + if (lookahead == '\r') SKIP(16); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 18: - if (lookahead == '\n') SKIP(111) + if (lookahead == '\n') SKIP(243); END_STATE(); case 19: - if (lookahead == '\n') SKIP(111) - if (lookahead == '\r') SKIP(18) + if (lookahead == '\n') SKIP(243); + if (lookahead == '\r') SKIP(18); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 20: - if (lookahead == '\n') SKIP(102) + if (lookahead == '\n') SKIP(172); END_STATE(); case 21: - if (lookahead == '\n') SKIP(102) - if (lookahead == '\r') SKIP(20) + if (lookahead == '\n') SKIP(172); + if (lookahead == '\r') SKIP(20); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 22: - if (lookahead == '\n') SKIP(103) + if (lookahead == '\n') SKIP(191); END_STATE(); case 23: - if (lookahead == '\n') SKIP(103) - if (lookahead == '\r') SKIP(22) + if (lookahead == '\n') SKIP(191); + if (lookahead == '\r') SKIP(22); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 24: - if (lookahead == '\n') SKIP(113) + if (lookahead == '\n') SKIP(179); END_STATE(); case 25: - if (lookahead == '\n') SKIP(113) - if (lookahead == '\r') SKIP(24) + if (lookahead == '\n') SKIP(179); + if (lookahead == '\r') SKIP(24); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 26: - if (lookahead == '\n') SKIP(143) + if (lookahead == '\n') SKIP(187); END_STATE(); case 27: - if (lookahead == '\n') SKIP(143) - if (lookahead == '\r') SKIP(26) + if (lookahead == '\n') SKIP(187); + if (lookahead == '\r') SKIP(26); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 28: - if (lookahead == '\n') SKIP(148) + if (lookahead == '\n') SKIP(199); END_STATE(); case 29: - if (lookahead == '\n') SKIP(148) - if (lookahead == '\r') SKIP(28) + if (lookahead == '\n') SKIP(199); + if (lookahead == '\r') SKIP(28); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 30: - if (lookahead == '\n') SKIP(150) + if (lookahead == '\n') SKIP(180); END_STATE(); case 31: - if (lookahead == '\n') SKIP(150) - if (lookahead == '\r') SKIP(30) + if (lookahead == '\n') SKIP(180); + if (lookahead == '\r') SKIP(30); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 32: - if (lookahead == '\n') SKIP(151) + if (lookahead == '\n') SKIP(169); END_STATE(); case 33: - if (lookahead == '\n') SKIP(151) - if (lookahead == '\r') SKIP(32) + if (lookahead == '\n') SKIP(169); + if (lookahead == '\r') SKIP(32); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 34: - if (lookahead == '\n') SKIP(127) + if (lookahead == '\n') SKIP(197); END_STATE(); case 35: - if (lookahead == '\n') SKIP(127) - if (lookahead == '\r') SKIP(34) + if (lookahead == '\n') SKIP(197); + if (lookahead == '\r') SKIP(34); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 36: - if (lookahead == '\n') SKIP(128) + if (lookahead == '\n') SKIP(170); END_STATE(); case 37: - if (lookahead == '\n') SKIP(128) - if (lookahead == '\r') SKIP(36) + if (lookahead == '\n') SKIP(170); + if (lookahead == '\r') SKIP(36); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 38: - if (lookahead == '\n') SKIP(131) + if (lookahead == '\n') SKIP(228); END_STATE(); case 39: - if (lookahead == '\n') SKIP(131) - if (lookahead == '\r') SKIP(38) + if (lookahead == '\n') SKIP(228); + if (lookahead == '\r') SKIP(38); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 40: - if (lookahead == '\n') SKIP(133) + if (lookahead == '\n') SKIP(241); END_STATE(); case 41: - if (lookahead == '\n') SKIP(133) - if (lookahead == '\r') SKIP(40) + if (lookahead == '\n') SKIP(241); + if (lookahead == '\r') SKIP(40); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 42: - if (lookahead == '\n') SKIP(117) + if (lookahead == '\n') SKIP(202); END_STATE(); case 43: - if (lookahead == '\n') SKIP(117) - if (lookahead == '\r') SKIP(42) + if (lookahead == '\n') SKIP(202); + if (lookahead == '\r') SKIP(42); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 44: - if (lookahead == '\n') SKIP(130) + if (lookahead == '\n') SKIP(236); END_STATE(); case 45: - if (lookahead == '\n') SKIP(130) - if (lookahead == '\r') SKIP(44) + if (lookahead == '\n') SKIP(236); + if (lookahead == '\r') SKIP(44); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 46: - if (lookahead == '\n') SKIP(107) + if (lookahead == '\n') SKIP(246); END_STATE(); case 47: - if (lookahead == '\n') SKIP(107) - if (lookahead == '\r') SKIP(46) + if (lookahead == '\n') SKIP(246); + if (lookahead == '\r') SKIP(46); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 48: - if (lookahead == '\n') SKIP(141) + if (lookahead == '\n') SKIP(245); END_STATE(); case 49: - if (lookahead == '\n') SKIP(141) - if (lookahead == '\r') SKIP(48) + if (lookahead == '\n') SKIP(245); + if (lookahead == '\r') SKIP(48); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 50: - if (lookahead == '\n') SKIP(134) + if (lookahead == '\n') SKIP(223); END_STATE(); case 51: - if (lookahead == '\n') SKIP(134) - if (lookahead == '\r') SKIP(50) + if (lookahead == '\n') SKIP(223); + if (lookahead == '\r') SKIP(50); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 52: - if (lookahead == '\n') SKIP(54) + if (lookahead == '\n') SKIP(188); END_STATE(); case 53: - if (lookahead == '\n') SKIP(54) - if (lookahead == '\r') SKIP(52) + if (lookahead == '\n') SKIP(188); + if (lookahead == '\r') SKIP(52); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 54: - if (lookahead == '\n') ADVANCE(208); - if (lookahead == '!') ADVANCE(165); - if (lookahead == '%') ADVANCE(283); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(273); - if (lookahead == '-') ADVANCE(264); - if (lookahead == '/') ADVANCE(281); - if (lookahead == '<') ADVANCE(302); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(296); - if (lookahead == '\\') SKIP(53) - if (lookahead == '^') ADVANCE(289); - if (lookahead == '|') ADVANCE(288); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(54) + if (lookahead == '\n') SKIP(201); END_STATE(); case 55: - if (lookahead == '\n') SKIP(114) + if (lookahead == '\n') SKIP(201); + if (lookahead == '\r') SKIP(54); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 56: - if (lookahead == '\n') SKIP(114) - if (lookahead == '\r') SKIP(55) + if (lookahead == '\n') SKIP(192); END_STATE(); case 57: - if (lookahead == '\n') SKIP(153) + if (lookahead == '\n') SKIP(192); + if (lookahead == '\r') SKIP(56); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 58: - if (lookahead == '\n') SKIP(153) - if (lookahead == '\r') SKIP(57) + if (lookahead == '\n') SKIP(182); END_STATE(); case 59: - if (lookahead == '\n') SKIP(152) + if (lookahead == '\n') SKIP(182); + if (lookahead == '\r') SKIP(58); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 60: - if (lookahead == '\n') SKIP(152) - if (lookahead == '\r') SKIP(59) + if (lookahead == '\n') SKIP(214); END_STATE(); case 61: - if (lookahead == '\n') SKIP(144) + if (lookahead == '\n') SKIP(214); + if (lookahead == '\r') SKIP(60); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 62: - if (lookahead == '\n') SKIP(144) - if (lookahead == '\r') SKIP(61) + if (lookahead == '\n') SKIP(222); END_STATE(); case 63: - if (lookahead == '\n') SKIP(145) - if (lookahead == '"') ADVANCE(381); - if (lookahead == '/') ADVANCE(382); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(385); - if (lookahead != 0) ADVANCE(386); + if (lookahead == '\n') SKIP(222); + if (lookahead == '\r') SKIP(62); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 64: - if (lookahead == '\n') ADVANCE(388); - if (lookahead == '\r') ADVANCE(387); - if (lookahead == 'U') ADVANCE(197); - if (lookahead == 'u') ADVANCE(193); - if (lookahead == 'x') ADVANCE(191); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(390); - if (lookahead != 0) ADVANCE(387); + if (lookahead == '\n') SKIP(212); END_STATE(); case 65: - if (lookahead == '\n') ADVANCE(209); - if (lookahead == '(') ADVANCE(211); - if (lookahead == '/') ADVANCE(253); - if (lookahead == '\\') ADVANCE(251); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(250); - if (lookahead != 0) ADVANCE(254); + if (lookahead == '\n') SKIP(212); + if (lookahead == '\r') SKIP(64); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 66: - if (lookahead == '\n') ADVANCE(209); - if (lookahead == '/') ADVANCE(253); - if (lookahead == '\\') ADVANCE(251); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(250); - if (lookahead != 0) ADVANCE(254); + if (lookahead == '\n') SKIP(219); END_STATE(); case 67: - if (lookahead == '\n') SKIP(163) - if (lookahead == '/') ADVANCE(375); - if (lookahead == '\\') ADVANCE(374); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(376); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(373); + if (lookahead == '\n') SKIP(219); + if (lookahead == '\r') SKIP(66); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 68: - if (lookahead == '\n') SKIP(110) + if (lookahead == '\n') SKIP(183); END_STATE(); case 69: - if (lookahead == '\n') SKIP(110) - if (lookahead == '\r') SKIP(68) + if (lookahead == '\n') SKIP(183); + if (lookahead == '\r') SKIP(68); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 70: - if (lookahead == '\n') SKIP(135) + if (lookahead == '\n') SKIP(229); END_STATE(); case 71: - if (lookahead == '\n') SKIP(135) - if (lookahead == '\r') SKIP(70) + if (lookahead == '\n') SKIP(229); + if (lookahead == '\r') SKIP(70); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 72: - if (lookahead == '\n') SKIP(104) + if (lookahead == '\n') SKIP(207); END_STATE(); case 73: - if (lookahead == '\n') SKIP(104) - if (lookahead == '\r') SKIP(72) + if (lookahead == '\n') SKIP(207); + if (lookahead == '\r') SKIP(72); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 74: - if (lookahead == '\n') SKIP(105) + if (lookahead == '\n') SKIP(244); END_STATE(); case 75: - if (lookahead == '\n') SKIP(105) - if (lookahead == '\r') SKIP(74) + if (lookahead == '\n') SKIP(244); + if (lookahead == '\r') SKIP(74); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 76: - if (lookahead == '\n') SKIP(149) + if (lookahead == '\n') SKIP(189); END_STATE(); case 77: - if (lookahead == '\n') SKIP(149) - if (lookahead == '\r') SKIP(76) + if (lookahead == '\n') SKIP(189); + if (lookahead == '\r') SKIP(76); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 78: - if (lookahead == '\n') SKIP(116) + if (lookahead == '\n') SKIP(193); END_STATE(); case 79: - if (lookahead == '\n') SKIP(116) - if (lookahead == '\r') SKIP(78) + if (lookahead == '\n') SKIP(193); + if (lookahead == '\r') SKIP(78); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 80: - if (lookahead == '\n') SKIP(129) + if (lookahead == '\n') SKIP(213); END_STATE(); case 81: - if (lookahead == '\n') SKIP(129) - if (lookahead == '\r') SKIP(80) + if (lookahead == '\n') SKIP(213); + if (lookahead == '\r') SKIP(80); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 82: - if (lookahead == '\n') SKIP(137) + if (lookahead == '\n') SKIP(206); END_STATE(); case 83: - if (lookahead == '\n') SKIP(137) - if (lookahead == '\r') SKIP(82) + if (lookahead == '\n') SKIP(206); + if (lookahead == '\r') SKIP(82); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 84: - if (lookahead == '\n') SKIP(132) + if (lookahead == '\n') SKIP(173); END_STATE(); case 85: - if (lookahead == '\n') SKIP(132) - if (lookahead == '\r') SKIP(84) + if (lookahead == '\n') SKIP(173); + if (lookahead == '\r') SKIP(84); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 86: - if (lookahead == '\n') SKIP(119) + if (lookahead == '\n') SKIP(221); END_STATE(); case 87: - if (lookahead == '\n') SKIP(119) - if (lookahead == '\r') SKIP(86) + if (lookahead == '\n') SKIP(221); + if (lookahead == '\r') SKIP(86); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 88: - if (lookahead == '\n') SKIP(123) + if (lookahead == '\n') SKIP(215); END_STATE(); case 89: - if (lookahead == '\n') SKIP(123) - if (lookahead == '\r') SKIP(88) + if (lookahead == '\n') SKIP(215); + if (lookahead == '\r') SKIP(88); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 90: - if (lookahead == '\n') SKIP(139) + if (lookahead == '\n') SKIP(248); END_STATE(); case 91: - if (lookahead == '\n') SKIP(139) - if (lookahead == '\r') SKIP(90) + if (lookahead == '\n') SKIP(248); + if (lookahead == '\r') SKIP(90); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 92: - if (lookahead == '\n') SKIP(138) + if (lookahead == '\n') SKIP(247); END_STATE(); case 93: - if (lookahead == '\n') SKIP(138) - if (lookahead == '\r') SKIP(92) + if (lookahead == '\n') SKIP(247); + if (lookahead == '\r') SKIP(92); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 94: - if (lookahead == '\n') SKIP(142) + if (lookahead == '\n') SKIP(227); END_STATE(); case 95: - if (lookahead == '\n') SKIP(142) - if (lookahead == '\r') SKIP(94) + if (lookahead == '\n') SKIP(227); + if (lookahead == '\r') SKIP(94); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 96: - if (lookahead == '\n') SKIP(121) + if (lookahead == '\n') SKIP(254); END_STATE(); case 97: - if (lookahead == '\n') SKIP(121) - if (lookahead == '\r') SKIP(96) + if (lookahead == '\n') SKIP(254); + if (lookahead == '\r') SKIP(96); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 98: - if (lookahead == '\n') SKIP(136) + if (lookahead == '\n') SKIP(181); END_STATE(); case 99: - if (lookahead == '\n') SKIP(136) - if (lookahead == '\r') SKIP(98) + if (lookahead == '\n') SKIP(181); + if (lookahead == '\r') SKIP(98); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 100: - if (lookahead == '\n') SKIP(140) + if (lookahead == '\n') SKIP(102); END_STATE(); case 101: - if (lookahead == '\n') SKIP(140) - if (lookahead == '\r') SKIP(100) + if (lookahead == '\n') SKIP(102); + if (lookahead == '\r') SKIP(100); END_STATE(); case 102: - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '%') ADVANCE(284); - if (lookahead == '&') ADVANCE(293); - if (lookahead == '\'') ADVANCE(372); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '+') ADVANCE(275); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(266); - if (lookahead == '.') ADVANCE(350); - if (lookahead == '/') ADVANCE(282); - if (lookahead == '0') ADVANCE(357); - if (lookahead == ':') ADVANCE(335); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(301); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(297); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(658); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(628); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(677); - if (lookahead == 'U') ADVANCE(631); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(21) - if (lookahead == ']') ADVANCE(317); - if (lookahead == '^') ADVANCE(290); - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(905); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(955); - if (lookahead == 'u') ADVANCE(635); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(287); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(102) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); - if (('E' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ADVANCE_MAP( + '\n', 354, + '!', 277, + '%', 435, + '&', 445, + '(', 410, + '*', 431, + '+', 424, + '-', 414, + '/', 433, + '<', 459, + '=', 278, + '>', 450, + ); + if (lookahead == '\\') SKIP(101); + if (lookahead == '^') ADVANCE(442); + if (lookahead == '|') ADVANCE(441); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(102); END_STATE(); case 103: - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '%') ADVANCE(284); - if (lookahead == '&') ADVANCE(293); - if (lookahead == '\'') ADVANCE(372); - if (lookahead == '(') ADVANCE(260); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '+') ADVANCE(275); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(266); - if (lookahead == '.') ADVANCE(350); - if (lookahead == '/') ADVANCE(282); - if (lookahead == '0') ADVANCE(357); - if (lookahead == ':') ADVANCE(164); - if (lookahead == '<') ADVANCE(301); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(979); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(658); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(628); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(677); - if (lookahead == 'U') ADVANCE(631); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(23) - if (lookahead == '^') ADVANCE(290); - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(905); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(955); - if (lookahead == 'u') ADVANCE(635); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(287); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(103) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); - if (('E' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(249); END_STATE(); case 104: - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '%') ADVANCE(283); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '\'') ADVANCE(372); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(276); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(267); - if (lookahead == '.') ADVANCE(350); - if (lookahead == '/') ADVANCE(281); - if (lookahead == '0') ADVANCE(357); - if (lookahead == ':') ADVANCE(335); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(302); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(296); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(658); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(628); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(677); - if (lookahead == 'U') ADVANCE(631); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(73) - if (lookahead == ']') ADVANCE(317); - if (lookahead == '^') ADVANCE(289); - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(905); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(955); - if (lookahead == 'u') ADVANCE(635); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(288); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(104) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); - if (('E' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(249); + if (lookahead == '\r') SKIP(103); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 105: - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '%') ADVANCE(283); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '\'') ADVANCE(372); - if (lookahead == '(') ADVANCE(260); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(276); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(267); - if (lookahead == '.') ADVANCE(350); - if (lookahead == '/') ADVANCE(281); - if (lookahead == '0') ADVANCE(357); - if (lookahead == ':') ADVANCE(164); - if (lookahead == '<') ADVANCE(302); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(979); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(658); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(628); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(677); - if (lookahead == 'U') ADVANCE(631); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(75) - if (lookahead == '^') ADVANCE(289); - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(905); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(955); - if (lookahead == 'u') ADVANCE(635); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(288); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(105) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); - if (('E' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(253); END_STATE(); case 106: - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(146); - if (lookahead == '%') ADVANCE(284); - if (lookahead == '&') ADVANCE(293); - if (lookahead == '(') ADVANCE(154); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '+') ADVANCE(277); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(269); - if (lookahead == '/') ADVANCE(282); - if (lookahead == ':') ADVANCE(164); - if (lookahead == '<') ADVANCE(301); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(297); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(772); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(662); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(679); - if (lookahead == 'U') ADVANCE(685); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(170); - if (lookahead == '\\') SKIP(15) - if (lookahead == '^') ADVANCE(290); - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(942); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 'u') ADVANCE(937); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '|') ADVANCE(287); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(106) - if (('E' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(253); + if (lookahead == '\r') SKIP(105); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 107: - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(146); - if (lookahead == '%') ADVANCE(284); - if (lookahead == '&') ADVANCE(293); - if (lookahead == '(') ADVANCE(154); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '+') ADVANCE(277); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(269); - if (lookahead == '/') ADVANCE(282); - if (lookahead == '<') ADVANCE(301); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(297); - if (lookahead == '[') ADVANCE(171); - if (lookahead == '\\') SKIP(47) - if (lookahead == '^') ADVANCE(290); - if (lookahead == '|') ADVANCE(287); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(107) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(237); END_STATE(); case 108: - if (lookahead == '!') ADVANCE(261); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '#') ADVANCE(173); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '\'') ADVANCE(372); - if (lookahead == '(') ADVANCE(260); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(276); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(268); - if (lookahead == '.') ADVANCE(185); - if (lookahead == '/') ADVANCE(155); - if (lookahead == '0') ADVANCE(357); - if (lookahead == ':') ADVANCE(164); - if (lookahead == ';') ADVANCE(307); - if (lookahead == 'A') ADVANCE(829); - if (lookahead == 'B') ADVANCE(806); - if (lookahead == 'C') ADVANCE(694); - if (lookahead == 'D') ADVANCE(886); - if (lookahead == 'F') ADVANCE(661); - if (lookahead == 'H') ADVANCE(657); - if (lookahead == 'I') ADVANCE(786); - if (lookahead == 'L') ADVANCE(627); - if (lookahead == 'P') ADVANCE(681); - if (lookahead == 'Q') ADVANCE(889); - if (lookahead == 'S') ADVANCE(696); - if (lookahead == 'T') ADVANCE(682); - if (lookahead == 'U') ADVANCE(632); - if (lookahead == 'V') ADVANCE(818); - if (lookahead == 'W') ADVANCE(695); - if (lookahead == '[') ADVANCE(314); - if (lookahead == '\\') SKIP(3) - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(905); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(955); - if (lookahead == 'u') ADVANCE(635); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(108) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); - if (('E' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(971); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(237); + if (lookahead == '\r') SKIP(107); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 109: - if (lookahead == '!') ADVANCE(261); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '#') ADVANCE(180); - if (lookahead == '&') ADVANCE(291); - if (lookahead == '\'') ADVANCE(372); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(276); - if (lookahead == '-') ADVANCE(268); - if (lookahead == '.') ADVANCE(161); - if (lookahead == '/') ADVANCE(155); - if (lookahead == '0') ADVANCE(357); - if (lookahead == ':') ADVANCE(164); - if (lookahead == ';') ADVANCE(307); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(658); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(628); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(677); - if (lookahead == 'U') ADVANCE(631); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(314); - if (lookahead == '\\') SKIP(5) - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(905); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(955); - if (lookahead == 'u') ADVANCE(635); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(109) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); - if (('E' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(238); END_STATE(); case 110: - if (lookahead == '!') ADVANCE(261); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '#') ADVANCE(175); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '\'') ADVANCE(372); - if (lookahead == '(') ADVANCE(260); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(276); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(268); - if (lookahead == '.') ADVANCE(185); - if (lookahead == '/') ADVANCE(155); - if (lookahead == '0') ADVANCE(357); - if (lookahead == ':') ADVANCE(164); - if (lookahead == ';') ADVANCE(307); - if (lookahead == 'A') ADVANCE(829); - if (lookahead == 'B') ADVANCE(806); - if (lookahead == 'C') ADVANCE(694); - if (lookahead == 'D') ADVANCE(886); - if (lookahead == 'F') ADVANCE(661); - if (lookahead == 'H') ADVANCE(657); - if (lookahead == 'I') ADVANCE(786); - if (lookahead == 'L') ADVANCE(627); - if (lookahead == 'P') ADVANCE(681); - if (lookahead == 'Q') ADVANCE(889); - if (lookahead == 'S') ADVANCE(696); - if (lookahead == 'T') ADVANCE(682); - if (lookahead == 'U') ADVANCE(632); - if (lookahead == 'V') ADVANCE(818); - if (lookahead == 'W') ADVANCE(695); - if (lookahead == '[') ADVANCE(314); - if (lookahead == '\\') SKIP(69) - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(905); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(955); - if (lookahead == 'u') ADVANCE(635); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(110) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); - if (('E' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(971); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(238); + if (lookahead == '\r') SKIP(109); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 111: - if (lookahead == '!') ADVANCE(261); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '\'') ADVANCE(372); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(276); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(268); - if (lookahead == '.') ADVANCE(350); - if (lookahead == '/') ADVANCE(155); - if (lookahead == '0') ADVANCE(357); - if (lookahead == ':') ADVANCE(164); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(300); - if (lookahead == '=') ADVANCE(318); - if (lookahead == '>') ADVANCE(979); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(658); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(628); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(677); - if (lookahead == 'U') ADVANCE(631); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(19) - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(905); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(955); - if (lookahead == 'u') ADVANCE(635); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(111) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); - if (('E' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(250); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '/') ADVANCE(537); + if (lookahead == '\\') ADVANCE(536); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(538); + if (lookahead != 0) ADVANCE(535); END_STATE(); case 112: - if (lookahead == '!') ADVANCE(261); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '\'') ADVANCE(372); - if (lookahead == '(') ADVANCE(260); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(276); - if (lookahead == '-') ADVANCE(268); - if (lookahead == '.') ADVANCE(185); - if (lookahead == '/') ADVANCE(155); - if (lookahead == '0') ADVANCE(357); - if (lookahead == ':') ADVANCE(164); - if (lookahead == ';') ADVANCE(307); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(658); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(628); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(677); - if (lookahead == 'U') ADVANCE(631); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(314); - if (lookahead == '\\') SKIP(13) - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(905); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(955); - if (lookahead == 'u') ADVANCE(635); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(112) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); - if (('E' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(550); + if (lookahead == '\r') ADVANCE(549); + if (lookahead == 'U') ADVANCE(340); + if (lookahead == 'u') ADVANCE(332); + if (lookahead == 'x') ADVANCE(326); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(552); + if (lookahead != 0) ADVANCE(549); END_STATE(); case 113: - if (lookahead == '!') ADVANCE(261); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '&') ADVANCE(291); - if (lookahead == '\'') ADVANCE(372); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(276); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(268); - if (lookahead == '.') ADVANCE(350); - if (lookahead == '/') ADVANCE(155); - if (lookahead == '0') ADVANCE(357); - if (lookahead == ':') ADVANCE(164); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '=') ADVANCE(318); - if (lookahead == '>') ADVANCE(979); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(658); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(628); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(677); - if (lookahead == 'U') ADVANCE(631); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(25) - if (lookahead == ']') ADVANCE(317); - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(905); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(955); - if (lookahead == 'u') ADVANCE(635); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(113) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); - if (('E' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(239); + if (lookahead == '"') ADVANCE(543); + if (lookahead == '/') ADVANCE(544); + if (lookahead == '\\') ADVANCE(112); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(547); + if (lookahead != 0) ADVANCE(548); END_STATE(); case 114: - if (lookahead == '!') ADVANCE(261); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '\'') ADVANCE(372); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(278); - if (lookahead == '-') ADVANCE(272); - if (lookahead == '.') ADVANCE(185); - if (lookahead == '/') ADVANCE(155); - if (lookahead == '0') ADVANCE(357); - if (lookahead == ':') ADVANCE(334); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '=') ADVANCE(318); - if (lookahead == 'L') ADVANCE(640); - if (lookahead == 'U') ADVANCE(641); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(56) - if (lookahead == 'u') ADVANCE(642); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(114) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(347); + if (lookahead == '\r') ADVANCE(118); + if (lookahead == '(') ADVANCE(349); + if (lookahead == '/') ADVANCE(375); + if (lookahead == '\\') ADVANCE(370); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(268); + if (lookahead != 0) ADVANCE(377); END_STATE(); case 115: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '%') ADVANCE(284); - if (lookahead == '&') ADVANCE(293); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '+') ADVANCE(277); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(270); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(282); - if (lookahead == ':') ADVANCE(334); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(301); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(297); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'L') ADVANCE(984); - if (lookahead == 'U') ADVANCE(985); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(79) - if (lookahead == ']') ADVANCE(317); - if (lookahead == '^') ADVANCE(290); - if (lookahead == 'u') ADVANCE(986); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(287); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(116) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(988); + if (lookahead == '\n') ADVANCE(347); + if (lookahead == '\r') ADVANCE(118); + if (lookahead == '/') ADVANCE(375); + if (lookahead == '\\') ADVANCE(370); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(268); + if (lookahead != 0) ADVANCE(377); END_STATE(); case 116: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '%') ADVANCE(284); - if (lookahead == '&') ADVANCE(293); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '+') ADVANCE(277); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(270); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(282); - if (lookahead == ':') ADVANCE(334); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(301); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(297); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'L') ADVANCE(630); - if (lookahead == 'U') ADVANCE(634); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(79) - if (lookahead == ']') ADVANCE(317); - if (lookahead == '^') ADVANCE(290); - if (lookahead == 'u') ADVANCE(637); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(287); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(116) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(347); + if (lookahead == '\r') ADVANCE(117); + if (lookahead == '(') ADVANCE(410); + if (lookahead == '/') ADVANCE(259); + if (lookahead == '\\') SKIP(120); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(255); END_STATE(); case 117: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '%') ADVANCE(284); - if (lookahead == '&') ADVANCE(293); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '+') ADVANCE(277); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(270); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(282); - if (lookahead == ':') ADVANCE(334); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(301); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(297); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'L') ADVANCE(630); - if (lookahead == 'U') ADVANCE(634); - if (lookahead == '[') ADVANCE(316); - if (lookahead == '\\') SKIP(43) - if (lookahead == ']') ADVANCE(317); - if (lookahead == '^') ADVANCE(290); - if (lookahead == 'u') ADVANCE(637); - if (lookahead == '|') ADVANCE(287); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(117) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(347); + if (lookahead == '(') ADVANCE(410); + if (lookahead == '/') ADVANCE(259); + if (lookahead == '\\') SKIP(120); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(255); END_STATE(); case 118: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '%') ADVANCE(284); - if (lookahead == '&') ADVANCE(293); - if (lookahead == '(') ADVANCE(260); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '+') ADVANCE(277); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(270); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(282); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(301); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(979); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'L') ADVANCE(984); - if (lookahead == 'U') ADVANCE(985); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(87) - if (lookahead == '^') ADVANCE(290); - if (lookahead == 'u') ADVANCE(986); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(287); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(119) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(988); + if (lookahead == '\n') ADVANCE(347); + if (lookahead == '/') ADVANCE(375); + if (lookahead == '\\') ADVANCE(370); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(268); + if (lookahead != 0) ADVANCE(377); END_STATE(); case 119: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '%') ADVANCE(284); - if (lookahead == '&') ADVANCE(293); - if (lookahead == '(') ADVANCE(260); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '+') ADVANCE(277); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(270); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(282); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(301); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(979); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'L') ADVANCE(630); - if (lookahead == 'U') ADVANCE(634); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(87) - if (lookahead == '^') ADVANCE(290); - if (lookahead == 'u') ADVANCE(637); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(287); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(119) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(255); END_STATE(); case 120: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '%') ADVANCE(283); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(271); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(281); - if (lookahead == ':') ADVANCE(334); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(302); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(296); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'L') ADVANCE(984); - if (lookahead == 'U') ADVANCE(985); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(97) - if (lookahead == ']') ADVANCE(317); - if (lookahead == '^') ADVANCE(289); - if (lookahead == 'u') ADVANCE(986); - if (lookahead == '|') ADVANCE(288); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(121) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(988); + if (lookahead == '\n') SKIP(255); + if (lookahead == '\r') SKIP(119); END_STATE(); case 121: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '%') ADVANCE(283); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(271); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(281); - if (lookahead == ':') ADVANCE(334); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(302); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(296); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'L') ADVANCE(630); - if (lookahead == 'U') ADVANCE(634); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(97) - if (lookahead == ']') ADVANCE(317); - if (lookahead == '^') ADVANCE(289); - if (lookahead == 'u') ADVANCE(637); - if (lookahead == '|') ADVANCE(288); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(121) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(256); END_STATE(); case 122: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '%') ADVANCE(283); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(271); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(281); - if (lookahead == '<') ADVANCE(302); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(979); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'L') ADVANCE(984); - if (lookahead == 'U') ADVANCE(985); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(89) - if (lookahead == '^') ADVANCE(289); - if (lookahead == 'u') ADVANCE(986); - if (lookahead == '|') ADVANCE(288); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(123) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(988); + if (lookahead == '\n') SKIP(256); + if (lookahead == '\r') SKIP(121); END_STATE(); case 123: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '%') ADVANCE(283); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(271); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(281); - if (lookahead == '<') ADVANCE(302); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(979); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'L') ADVANCE(630); - if (lookahead == 'U') ADVANCE(634); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(89) - if (lookahead == '^') ADVANCE(289); - if (lookahead == 'u') ADVANCE(637); - if (lookahead == '|') ADVANCE(288); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(123) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(167); END_STATE(); case 124: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '#') ADVANCE(178); - if (lookahead == '%') ADVANCE(283); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(271); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(281); - if (lookahead == ':') ADVANCE(164); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(302); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(296); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(772); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(662); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(679); - if (lookahead == 'U') ADVANCE(685); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(314); - if (lookahead == '\\') SKIP(9) - if (lookahead == '^') ADVANCE(289); - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(942); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 'u') ADVANCE(937); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '|') ADVANCE(288); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(124) - if (('E' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(167); + if (lookahead == '\r') SKIP(123); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 125: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '#') ADVANCE(176); - if (lookahead == '%') ADVANCE(283); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(273); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(264); - if (lookahead == '/') ADVANCE(281); - if (lookahead == ':') ADVANCE(164); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(302); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(296); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(772); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(662); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(679); - if (lookahead == 'U') ADVANCE(685); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(314); - if (lookahead == '\\') SKIP(11) - if (lookahead == '^') ADVANCE(289); - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(942); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 'u') ADVANCE(937); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '|') ADVANCE(288); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(125) - if (('E' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(171); END_STATE(); case 126: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '%') ADVANCE(284); - if (lookahead == '&') ADVANCE(293); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '+') ADVANCE(277); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(270); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(282); - if (lookahead == ':') ADVANCE(335); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(301); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(297); - if (lookahead == '?') ADVANCE(336); - if (lookahead == '[') ADVANCE(314); - if (lookahead == '\\') SKIP(17) - if (lookahead == '^') ADVANCE(290); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(287); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(126) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(171); + if (lookahead == '\r') SKIP(125); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 127: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '%') ADVANCE(284); - if (lookahead == '&') ADVANCE(293); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '+') ADVANCE(277); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(270); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(282); - if (lookahead == ':') ADVANCE(335); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(301); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(297); - if (lookahead == '?') ADVANCE(336); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(35) - if (lookahead == ']') ADVANCE(317); - if (lookahead == '^') ADVANCE(290); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(287); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(127) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(200); END_STATE(); case 128: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '%') ADVANCE(284); - if (lookahead == '&') ADVANCE(293); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '+') ADVANCE(277); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(270); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(282); - if (lookahead == ':') ADVANCE(334); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(301); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(297); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(772); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(662); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(679); - if (lookahead == 'U') ADVANCE(685); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(37) - if (lookahead == ']') ADVANCE(317); - if (lookahead == '^') ADVANCE(290); - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(942); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 'u') ADVANCE(937); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(287); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(128) - if (('E' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(200); + if (lookahead == '\r') SKIP(127); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 129: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '%') ADVANCE(284); - if (lookahead == '&') ADVANCE(293); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '+') ADVANCE(277); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(270); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(282); - if (lookahead == ':') ADVANCE(334); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(301); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(297); - if (lookahead == '?') ADVANCE(336); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(81) - if (lookahead == ']') ADVANCE(317); - if (lookahead == '^') ADVANCE(290); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(287); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(129) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(225); END_STATE(); case 130: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '%') ADVANCE(284); - if (lookahead == '&') ADVANCE(293); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '+') ADVANCE(277); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(270); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(282); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(301); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(297); - if (lookahead == '?') ADVANCE(336); - if (lookahead == '[') ADVANCE(315); - if (lookahead == '\\') SKIP(45) - if (lookahead == '^') ADVANCE(290); - if (lookahead == '|') ADVANCE(287); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(130) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(198); + if (lookahead == '\n') SKIP(225); + if (lookahead == '\r') SKIP(129); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 131: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '%') ADVANCE(284); - if (lookahead == '&') ADVANCE(293); - if (lookahead == '(') ADVANCE(260); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '+') ADVANCE(277); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(270); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(282); - if (lookahead == ':') ADVANCE(335); - if (lookahead == '<') ADVANCE(301); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(979); - if (lookahead == '?') ADVANCE(336); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(39) - if (lookahead == '^') ADVANCE(290); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(287); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(131) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(208); END_STATE(); case 132: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '%') ADVANCE(284); - if (lookahead == '&') ADVANCE(293); - if (lookahead == '(') ADVANCE(260); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '+') ADVANCE(277); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(270); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(282); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(301); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(979); - if (lookahead == '?') ADVANCE(336); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(85) - if (lookahead == '^') ADVANCE(290); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(287); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(132) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(208); + if (lookahead == '\r') SKIP(131); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 133: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '%') ADVANCE(284); - if (lookahead == '&') ADVANCE(293); - if (lookahead == '(') ADVANCE(260); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '+') ADVANCE(277); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(270); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(282); - if (lookahead == '<') ADVANCE(301); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(979); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(772); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(662); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(679); - if (lookahead == 'U') ADVANCE(685); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(41) - if (lookahead == '^') ADVANCE(290); - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(942); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 'u') ADVANCE(937); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(287); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(133) - if (('E' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(233); END_STATE(); case 134: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '%') ADVANCE(284); - if (lookahead == '&') ADVANCE(293); - if (lookahead == '(') ADVANCE(260); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '+') ADVANCE(277); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(270); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(282); - if (lookahead == '<') ADVANCE(301); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(979); - if (lookahead == '?') ADVANCE(336); - if (lookahead == '[') ADVANCE(316); - if (lookahead == '\\') SKIP(51) - if (lookahead == '^') ADVANCE(290); - if (lookahead == '|') ADVANCE(287); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(134) + if (lookahead == '\n') SKIP(233); + if (lookahead == '\r') SKIP(133); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 135: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '%') ADVANCE(283); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(271); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(281); - if (lookahead == ':') ADVANCE(335); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(302); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(296); - if (lookahead == '?') ADVANCE(336); - if (lookahead == '[') ADVANCE(314); - if (lookahead == '\\') SKIP(71) - if (lookahead == '^') ADVANCE(289); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(288); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(135) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(232); END_STATE(); case 136: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '%') ADVANCE(283); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(271); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(281); - if (lookahead == ':') ADVANCE(335); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(302); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(296); - if (lookahead == '?') ADVANCE(336); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(99) - if (lookahead == ']') ADVANCE(317); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(288); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(136) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(232); + if (lookahead == '\r') SKIP(135); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 137: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '%') ADVANCE(283); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(271); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(281); - if (lookahead == ':') ADVANCE(164); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(302); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(296); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(772); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(662); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(679); - if (lookahead == 'U') ADVANCE(685); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(83) - if (lookahead == ']') ADVANCE(172); - if (lookahead == '^') ADVANCE(289); - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(942); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 'u') ADVANCE(937); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(288); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(137) - if (('E' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(185); END_STATE(); case 138: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '%') ADVANCE(283); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(271); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(281); - if (lookahead == ':') ADVANCE(334); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(302); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(296); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(772); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(662); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(679); - if (lookahead == 'U') ADVANCE(685); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(93) - if (lookahead == ']') ADVANCE(317); - if (lookahead == '^') ADVANCE(289); - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(942); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 'u') ADVANCE(937); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(288); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(138) - if (('E' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(185); + if (lookahead == '\r') SKIP(137); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 139: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '%') ADVANCE(283); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(271); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(281); - if (lookahead == ':') ADVANCE(334); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(302); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(296); - if (lookahead == '?') ADVANCE(336); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(91) - if (lookahead == ']') ADVANCE(317); - if (lookahead == '^') ADVANCE(289); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(288); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(139) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(230); END_STATE(); case 140: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '%') ADVANCE(283); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(271); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(281); - if (lookahead == ':') ADVANCE(335); - if (lookahead == '<') ADVANCE(302); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(979); - if (lookahead == '?') ADVANCE(336); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(101) - if (lookahead == '^') ADVANCE(289); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(288); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(140) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(230); + if (lookahead == '\r') SKIP(139); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 141: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '%') ADVANCE(283); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(271); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(281); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(302); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(979); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(772); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(662); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(679); - if (lookahead == 'U') ADVANCE(685); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(49) - if (lookahead == '^') ADVANCE(289); - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(942); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 'u') ADVANCE(937); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(288); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(141) - if (('E' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(195); END_STATE(); case 142: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '%') ADVANCE(283); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(271); - if (lookahead == '.') ADVANCE(349); - if (lookahead == '/') ADVANCE(281); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(302); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(979); - if (lookahead == '?') ADVANCE(336); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(95) - if (lookahead == '^') ADVANCE(289); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(288); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(142) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(195); + if (lookahead == '\r') SKIP(141); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 143: - if (lookahead == '"') ADVANCE(381); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '/') ADVANCE(155); - if (lookahead == ':') ADVANCE(164); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(772); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(629); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(679); - if (lookahead == 'U') ADVANCE(633); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(314); - if (lookahead == '\\') SKIP(27) - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(942); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 'u') ADVANCE(636); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(143) - if (('E' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(205); END_STATE(); case 144: - if (lookahead == '"') ADVANCE(381); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '/') ADVANCE(155); - if (lookahead == ':') ADVANCE(334); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(168); - if (lookahead == '=') ADVANCE(318); - if (lookahead == '>') ADVANCE(979); - if (lookahead == 'L') ADVANCE(630); - if (lookahead == 'U') ADVANCE(634); - if (lookahead == '[') ADVANCE(315); - if (lookahead == '\\') SKIP(62) - if (lookahead == 'u') ADVANCE(637); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(144) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(205); + if (lookahead == '\r') SKIP(143); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 145: - if (lookahead == '"') ADVANCE(381); - if (lookahead == '/') ADVANCE(155); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(145) + if (lookahead == '\n') SKIP(217); END_STATE(); case 146: - if (lookahead == '"') ADVANCE(983); + if (lookahead == '\n') SKIP(217); + if (lookahead == '\r') SKIP(145); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 147: - if (lookahead == '#') ADVANCE(174); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(279); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(167); - if (lookahead == '.') ADVANCE(160); - if (lookahead == '/') ADVANCE(155); - if (lookahead == ':') ADVANCE(164); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(300); - if (lookahead == '=') ADVANCE(318); - if (lookahead == '>') ADVANCE(979); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(772); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(662); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(679); - if (lookahead == 'U') ADVANCE(685); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(314); - if (lookahead == '\\') SKIP(7) - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(942); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 'u') ADVANCE(937); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(147) - if (('E' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(168); END_STATE(); case 148: - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(279); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(167); - if (lookahead == '.') ADVANCE(160); - if (lookahead == '/') ADVANCE(155); - if (lookahead == ':') ADVANCE(335); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(300); - if (lookahead == '=') ADVANCE(318); - if (lookahead == '>') ADVANCE(979); - if (lookahead == '[') ADVANCE(314); - if (lookahead == '\\') SKIP(29) - if (lookahead == '{') ADVANCE(311); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(148) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(168); + if (lookahead == '\r') SKIP(147); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 149: - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(279); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(167); - if (lookahead == '.') ADVANCE(160); - if (lookahead == '/') ADVANCE(155); - if (lookahead == ':') ADVANCE(335); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(300); - if (lookahead == '=') ADVANCE(318); - if (lookahead == '>') ADVANCE(979); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(77) - if (lookahead == '{') ADVANCE(311); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(149) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(203); END_STATE(); case 150: - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(279); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(167); - if (lookahead == '/') ADVANCE(155); - if (lookahead == ':') ADVANCE(334); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(300); - if (lookahead == '=') ADVANCE(318); - if (lookahead == '>') ADVANCE(979); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(772); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(662); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(679); - if (lookahead == 'U') ADVANCE(685); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(314); - if (lookahead == '\\') SKIP(31) - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(942); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 'u') ADVANCE(937); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(150) - if (('E' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(203); + if (lookahead == '\r') SKIP(149); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 151: - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(279); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(167); - if (lookahead == '/') ADVANCE(155); - if (lookahead == ':') ADVANCE(334); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '=') ADVANCE(318); - if (lookahead == '>') ADVANCE(979); - if (lookahead == '[') ADVANCE(314); - if (lookahead == '\\') SKIP(33) - if (lookahead == '{') ADVANCE(311); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(151) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(226); END_STATE(); case 152: - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '/') ADVANCE(155); - if (lookahead == ':') ADVANCE(334); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '=') ADVANCE(318); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(60) - if (lookahead == '{') ADVANCE(311); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(152) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(226); + if (lookahead == '\r') SKIP(151); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 153: - if (lookahead == '&') ADVANCE(292); - if (lookahead == '(') ADVANCE(260); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '/') ADVANCE(155); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '=') ADVANCE(318); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(772); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(662); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(679); - if (lookahead == 'U') ADVANCE(685); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(313); - if (lookahead == '\\') SKIP(58) - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(942); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 'u') ADVANCE(937); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(153) - if (('E' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') SKIP(220); END_STATE(); case 154: - if (lookahead == ')') ADVANCE(981); + if (lookahead == '\n') SKIP(220); + if (lookahead == '\r') SKIP(153); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 155: - if (lookahead == '*') ADVANCE(157); - if (lookahead == '/') ADVANCE(975); + if (lookahead == '\n') SKIP(211); END_STATE(); case 156: - if (lookahead == '*') ADVANCE(156); - if (lookahead == '/') ADVANCE(973); - if (lookahead != 0) ADVANCE(157); + if (lookahead == '\n') SKIP(211); + if (lookahead == '\r') SKIP(155); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 157: - if (lookahead == '*') ADVANCE(156); - if (lookahead != 0) ADVANCE(157); + if (lookahead == '\n') SKIP(218); END_STATE(); case 158: - if (lookahead == '.') ADVANCE(185); - if (lookahead == '0') ADVANCE(355); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(356); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(364); + if (lookahead == '\n') SKIP(218); + if (lookahead == '\r') SKIP(157); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 159: - if (lookahead == '.') ADVANCE(185); - if (lookahead == '0') ADVANCE(358); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); + if (lookahead == '\n') SKIP(209); END_STATE(); case 160: - if (lookahead == '.') ADVANCE(162); + if (lookahead == '\n') SKIP(209); + if (lookahead == '\r') SKIP(159); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 161: - if (lookahead == '.') ADVANCE(162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(353); + if (lookahead == '\n') SKIP(235); END_STATE(); case 162: - if (lookahead == '.') ADVANCE(212); + if (lookahead == '\n') SKIP(235); + if (lookahead == '\r') SKIP(161); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 163: - if (lookahead == '/') ADVANCE(155); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(163) + if (lookahead == '\n') SKIP(231); END_STATE(); case 164: - if (lookahead == ':') ADVANCE(308); + if (lookahead == '\n') SKIP(231); + if (lookahead == '\r') SKIP(163); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 165: - if (lookahead == '=') ADVANCE(295); + if (lookahead == '\r') ADVANCE(1161); + if (lookahead == '\\') ADVANCE(1155); + if (lookahead != 0) ADVANCE(1160); END_STATE(); case 166: - if (lookahead == '=') ADVANCE(294); + ADVANCE_MAP( + '!', 412, + '"', 543, + '#', 290, + '%', 436, + '&', 446, + '\'', 534, + '(', 410, + ')', 352, + '*', 432, + '+', 426, + ',', 351, + '-', 415, + '.', 508, + '/', 434, + '0', 516, + ':', 492, + ';', 464, + '<', 456, + '=', 476, + '>', 1162, + '?', 493, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 835, + 'H', 830, + 'I', 961, + 'L', 794, + 'P', 854, + 'Q', 1067, + 'R', 799, + 'S', 867, + 'T', 855, + 'U', 800, + 'V', 992, + 'W', 865, + '[', 472, + '\\', 2, + ']', 474, + '^', 443, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1084, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 't', 1135, + 'u', 805, + 'v', 1130, + 'w', 1096, + '{', 468, + '|', 440, + '}', 469, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 167: - if (lookahead == '>') ADVANCE(351); + ADVANCE_MAP( + '!', 412, + '"', 543, + '#', 299, + '%', 436, + '&', 446, + '\'', 534, + '(', 410, + ')', 352, + '*', 432, + '+', 426, + ',', 351, + '-', 416, + '.', 508, + '/', 434, + '0', 516, + ':', 492, + ';', 464, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 835, + 'H', 830, + 'I', 961, + 'L', 794, + 'P', 854, + 'Q', 1067, + 'R', 799, + 'S', 867, + 'T', 855, + 'U', 800, + 'V', 992, + 'W', 865, + '[', 470, + '\\', 124, + ']', 474, + '^', 443, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1084, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 't', 1135, + 'u', 805, + 'v', 1130, + 'w', 1096, + '{', 468, + '|', 440, + '}', 469, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(167); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 168: - if (lookahead == '>') ADVANCE(391); - if (lookahead == '\\') ADVANCE(169); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(168); + ADVANCE_MAP( + '!', 412, + '"', 543, + '#', 299, + '%', 435, + '&', 445, + '\'', 534, + '(', 410, + ')', 352, + '*', 431, + '+', 427, + ',', 351, + '-', 417, + '.', 508, + '/', 433, + '0', 516, + ':', 492, + ';', 464, + '<', 458, + '=', 278, + '>', 450, + '?', 493, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 835, + 'H', 830, + 'I', 961, + 'L', 794, + 'P', 854, + 'Q', 1067, + 'R', 799, + 'S', 867, + 'T', 855, + 'U', 800, + 'V', 992, + 'W', 865, + '[', 470, + '\\', 148, + ']', 474, + '^', 442, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1084, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 't', 1135, + 'u', 805, + 'v', 1130, + 'w', 1096, + '{', 468, + '|', 441, + '}', 469, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(168); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 169: - if (lookahead == '>') ADVANCE(392); - if (lookahead == '\\') ADVANCE(169); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(168); + ADVANCE_MAP( + '!', 412, + '"', 543, + '%', 436, + '&', 446, + '\'', 534, + '(', 410, + ')', 352, + '*', 432, + '+', 426, + ',', 351, + '-', 415, + '.', 508, + '/', 434, + '0', 516, + ':', 275, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 835, + 'H', 830, + 'I', 961, + 'L', 794, + 'P', 854, + 'Q', 1067, + 'R', 799, + 'S', 867, + 'T', 855, + 'U', 800, + 'V', 992, + 'W', 865, + '[', 470, + '\\', 33, + '^', 443, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1084, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 't', 1135, + 'u', 805, + 'v', 1130, + 'w', 1096, + '{', 468, + '|', 440, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(169); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 170: - if (lookahead == '[') ADVANCE(309); - if (lookahead == ']') ADVANCE(982); + ADVANCE_MAP( + '!', 412, + '"', 543, + '%', 436, + '&', 446, + '\'', 534, + '(', 410, + '*', 432, + '+', 426, + ',', 351, + '-', 416, + '.', 508, + '/', 434, + '0', 516, + ':', 275, + '<', 456, + '=', 476, + '>', 1162, + '?', 493, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 835, + 'H', 830, + 'I', 961, + 'L', 794, + 'P', 854, + 'Q', 1067, + 'R', 799, + 'S', 867, + 'T', 855, + 'U', 800, + 'V', 992, + 'W', 865, + '[', 470, + '\\', 37, + '^', 443, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1084, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 't', 1135, + 'u', 805, + 'v', 1130, + 'w', 1096, + '{', 468, + '|', 440, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(170); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 171: - if (lookahead == ']') ADVANCE(982); + ADVANCE_MAP( + '!', 412, + '"', 543, + '%', 435, + '&', 445, + '\'', 534, + '(', 410, + '*', 431, + '+', 427, + ',', 351, + '-', 417, + '.', 508, + '/', 433, + '0', 516, + ':', 275, + '<', 458, + '=', 278, + '>', 1162, + '?', 493, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 835, + 'H', 830, + 'I', 961, + 'L', 794, + 'P', 854, + 'Q', 1067, + 'R', 799, + 'S', 867, + 'T', 855, + 'U', 800, + 'V', 992, + 'W', 865, + '[', 470, + '\\', 126, + '^', 442, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1084, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 't', 1135, + 'u', 805, + 'v', 1130, + 'w', 1096, + '{', 468, + '|', 441, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 172: - if (lookahead == ']') ADVANCE(310); + ADVANCE_MAP( + '!', 412, + '"', 240, + '%', 436, + '&', 446, + '(', 257, + '*', 432, + '+', 428, + ',', 351, + '-', 419, + '/', 434, + ':', 275, + '<', 456, + '=', 476, + '>', 451, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 950, + 'H', 830, + 'I', 961, + 'L', 840, + 'P', 854, + 'Q', 1067, + 'S', 867, + 'T', 857, + 'U', 863, + 'V', 992, + 'W', 865, + '[', 287, + '\\', 21, + '^', 443, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1122, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 'u', 1117, + 'v', 1130, + 'w', 1096, + '|', 440, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(172); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 173: - if (lookahead == 'd') ADVANCE(226); - if (lookahead == 'e') ADVANCE(242); - if (lookahead == 'i') ADVANCE(232); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(173); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 412, + '"', 240, + '%', 436, + '&', 446, + '(', 257, + '*', 432, + '+', 428, + ',', 351, + '-', 419, + '/', 434, + '<', 456, + '=', 476, + '>', 451, + '[', 288, + '\\', 85, + '^', 443, + '|', 440, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(173); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 174: - if (lookahead == 'd') ADVANCE(226); - if (lookahead == 'e') ADVANCE(242); - if (lookahead == 'i') ADVANCE(233); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(174); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 411, + '"', 543, + '#', 290, + '&', 445, + '\'', 534, + '(', 410, + '*', 431, + '+', 427, + ',', 351, + '-', 418, + '.', 319, + '/', 259, + '0', 516, + ':', 275, + ';', 464, + '>', 449, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 835, + 'H', 830, + 'I', 961, + 'L', 794, + 'P', 854, + 'Q', 1067, + 'R', 799, + 'S', 867, + 'T', 855, + 'U', 800, + 'V', 992, + 'W', 865, + '[', 471, + '\\', 9, + ']', 289, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1084, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 't', 1135, + 'u', 805, + 'v', 1130, + 'w', 1096, + '{', 468, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(174); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 175: - if (lookahead == 'd') ADVANCE(226); - if (lookahead == 'e') ADVANCE(244); - if (lookahead == 'i') ADVANCE(232); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(175); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 411, + '"', 543, + '#', 294, + '%', 435, + '&', 445, + '\'', 534, + '(', 410, + ')', 352, + '*', 431, + '+', 427, + ',', 351, + '-', 418, + '.', 265, + '/', 433, + '0', 516, + ':', 275, + ';', 464, + '<', 455, + '=', 475, + '>', 1162, + 'A', 1007, + 'B', 984, + 'C', 872, + 'D', 1065, + 'F', 839, + 'H', 834, + 'I', 964, + 'L', 793, + 'P', 859, + 'Q', 1068, + 'R', 798, + 'S', 874, + 'T', 860, + 'U', 801, + 'V', 996, + 'W', 873, + '[', 471, + '\\', 4, + ']', 474, + '^', 442, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1084, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 't', 1135, + 'u', 805, + 'v', 1130, + 'w', 1096, + '{', 468, + '|', 313, + '}', 469, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(175); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); + if (('E' <= lookahead && lookahead <= '_')) ADVANCE(1151); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 176: - if (lookahead == 'd') ADVANCE(226); - if (lookahead == 'e') ADVANCE(244); - if (lookahead == 'i') ADVANCE(233); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(176); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 411, + '"', 543, + '#', 294, + '&', 445, + '\'', 534, + '(', 410, + ')', 352, + '*', 431, + '+', 427, + ',', 351, + '-', 418, + '.', 510, + '/', 259, + '0', 516, + ':', 275, + ';', 464, + '<', 276, + '=', 475, + '>', 1162, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 835, + 'H', 830, + 'I', 961, + 'L', 794, + 'P', 854, + 'Q', 1067, + 'R', 799, + 'S', 867, + 'T', 855, + 'U', 800, + 'V', 992, + 'W', 865, + '[', 471, + '\\', 7, + ']', 474, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1084, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 't', 1135, + 'u', 805, + 'v', 1130, + 'w', 1096, + '{', 468, + '|', 439, + '}', 469, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(176); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 177: - if (lookahead == 'd') ADVANCE(226); - if (lookahead == 'i') ADVANCE(232); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(177); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 411, + '"', 543, + '#', 298, + '&', 444, + '\'', 534, + '(', 410, + ')', 352, + '*', 431, + '+', 427, + '-', 418, + '.', 265, + '/', 259, + '0', 516, + ':', 275, + ';', 464, + '>', 281, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 835, + 'H', 830, + 'I', 961, + 'L', 794, + 'P', 854, + 'Q', 1067, + 'R', 799, + 'S', 867, + 'T', 855, + 'U', 800, + 'V', 992, + 'W', 865, + '[', 471, + '\\', 13, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1084, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 't', 1135, + 'u', 805, + 'v', 1130, + 'w', 1096, + '{', 468, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(177); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 178: - if (lookahead == 'd') ADVANCE(226); - if (lookahead == 'i') ADVANCE(233); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(178); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 411, + '"', 543, + '#', 292, + '&', 445, + '\'', 534, + '(', 410, + '*', 431, + '+', 427, + ',', 351, + '-', 418, + '.', 319, + '/', 259, + '0', 516, + ':', 275, + ';', 464, + '>', 279, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 835, + 'H', 830, + 'I', 961, + 'L', 794, + 'P', 854, + 'Q', 1067, + 'R', 799, + 'S', 867, + 'T', 855, + 'U', 800, + 'V', 992, + 'W', 865, + '[', 471, + '\\', 11, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1084, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 't', 1135, + 'u', 805, + 'v', 1130, + 'w', 1096, + '{', 468, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(178); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 179: - if (lookahead == 'd') ADVANCE(182); + ADVANCE_MAP( + '!', 411, + '"', 543, + '&', 445, + '\'', 534, + '(', 410, + ')', 352, + '*', 431, + '+', 427, + ',', 351, + '-', 418, + '.', 509, + '/', 259, + '0', 516, + ':', 275, + ';', 464, + '<', 455, + '=', 475, + '>', 1162, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 835, + 'H', 830, + 'I', 961, + 'L', 794, + 'P', 854, + 'Q', 1067, + 'R', 799, + 'S', 867, + 'T', 855, + 'U', 800, + 'V', 992, + 'W', 865, + '[', 470, + '\\', 25, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1084, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 't', 1135, + 'u', 805, + 'v', 1130, + 'w', 1096, + '{', 468, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(179); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 180: - if (lookahead == 'e') ADVANCE(183); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(180); + ADVANCE_MAP( + '!', 411, + '"', 543, + '&', 444, + '\'', 534, + '(', 410, + ')', 352, + '*', 431, + '+', 427, + ',', 351, + '-', 418, + '.', 509, + '/', 259, + '0', 516, + ':', 492, + ';', 464, + '<', 455, + '=', 475, + '>', 1162, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 835, + 'H', 830, + 'I', 961, + 'L', 794, + 'P', 854, + 'Q', 1067, + 'R', 799, + 'S', 867, + 'T', 855, + 'U', 800, + 'V', 992, + 'W', 865, + '[', 470, + '\\', 31, + ']', 474, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1084, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 't', 1135, + 'u', 805, + 'v', 1130, + 'w', 1096, + '{', 468, + '}', 469, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(180); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 181: - if (lookahead == 'f') ADVANCE(216); + ADVANCE_MAP( + '!', 411, + '\'', 534, + '(', 410, + ')', 352, + '+', 429, + '-', 422, + '.', 319, + '/', 259, + '0', 516, + 'L', 817, + 'U', 818, + '\\', 99, + 'u', 819, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(181); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 182: - if (lookahead == 'i') ADVANCE(181); + ADVANCE_MAP( + '!', 277, + '"', 543, + '#', 299, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + ':', 492, + ';', 464, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + 'L', 796, + 'R', 799, + 'U', 803, + '[', 470, + '\\', 59, + ']', 474, + '^', 443, + 'u', 806, + '{', 468, + '|', 440, + '}', 469, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(182); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 183: - if (lookahead == 'n') ADVANCE(179); + ADVANCE_MAP( + '!', 277, + '"', 543, + '#', 299, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + ':', 491, + ';', 464, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + 'L', 796, + 'R', 799, + 'U', 803, + '[', 470, + '\\', 69, + ']', 474, + '^', 443, + 'u', 806, + '|', 440, + '}', 469, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(183); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 184: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(359); + ADVANCE_MAP( + '!', 277, + '"', 543, + '#', 299, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + ':', 491, + ';', 464, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + 'L', 1173, + 'R', 1174, + 'U', 1175, + '[', 470, + '\\', 69, + ']', 474, + '^', 443, + 'u', 1176, + '|', 440, + '}', 469, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(183); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1182); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 185: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(353); + ADVANCE_MAP( + '!', 277, + '"', 543, + '#', 299, + '%', 435, + '&', 445, + '(', 410, + ')', 352, + '*', 431, + '+', 425, + ',', 351, + '-', 421, + '.', 507, + '/', 433, + ':', 491, + ';', 464, + '<', 458, + '=', 278, + '>', 450, + '?', 493, + 'L', 796, + 'R', 799, + 'U', 803, + '[', 470, + '\\', 138, + ']', 474, + '^', 442, + 'u', 806, + '|', 441, + '}', 469, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(185); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 186: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(356); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(364); + ADVANCE_MAP( + '!', 277, + '"', 543, + '#', 299, + '%', 435, + '&', 445, + '(', 410, + ')', 352, + '*', 431, + '+', 425, + ',', 351, + '-', 421, + '.', 507, + '/', 433, + ':', 491, + ';', 464, + '<', 458, + '=', 278, + '>', 450, + '?', 493, + 'L', 1173, + 'R', 1174, + 'U', 1175, + '[', 470, + '\\', 138, + ']', 474, + '^', 442, + 'u', 1176, + '|', 441, + '}', 469, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(185); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1182); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 187: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(361); + ADVANCE_MAP( + '!', 277, + '"', 543, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 419, + '.', 507, + '/', 434, + ':', 275, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + 'L', 796, + 'R', 799, + 'U', 803, + '[', 471, + '\\', 27, + '^', 443, + 'u', 806, + '{', 468, + '|', 440, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(187); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 188: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(364); + ADVANCE_MAP( + '!', 277, + '"', 543, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 419, + '.', 507, + '/', 434, + ':', 275, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + 'L', 796, + 'R', 799, + 'U', 803, + '[', 470, + '\\', 53, + '^', 443, + 'u', 806, + '{', 468, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(188); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 189: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(354); + ADVANCE_MAP( + '!', 277, + '"', 543, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 419, + '.', 507, + '/', 434, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + 'L', 796, + 'R', 799, + 'U', 803, + '[', 470, + '\\', 77, + '^', 443, + 'u', 806, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(189); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 190: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(387); + ADVANCE_MAP( + '!', 277, + '"', 543, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 419, + '.', 507, + '/', 434, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + 'L', 1173, + 'R', 1174, + 'U', 1175, + '[', 470, + '\\', 77, + '^', 443, + 'u', 1176, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(189); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1182); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 191: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(190); + ADVANCE_MAP( + '!', 277, + '"', 543, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + ':', 492, + ';', 464, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + 'L', 796, + 'R', 799, + 'U', 803, + '[', 471, + '\\', 23, + '^', 443, + 'u', 806, + '{', 468, + '|', 440, + '}', 469, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(191); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 192: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(191); + ADVANCE_MAP( + '!', 277, + '"', 543, + '%', 436, + '&', 446, + '(', 410, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + ':', 275, + '<', 456, + '=', 476, + '>', 1162, + '?', 493, + 'L', 796, + 'R', 799, + 'U', 803, + '[', 470, + '\\', 57, + '^', 443, + 'u', 806, + '{', 468, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(192); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 193: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(192); + ADVANCE_MAP( + '!', 277, + '"', 543, + '%', 436, + '&', 446, + '(', 410, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + '<', 456, + '=', 476, + '>', 1162, + '?', 493, + 'L', 796, + 'R', 799, + 'U', 803, + '[', 470, + '\\', 79, + '^', 443, + 'u', 806, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(193); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 194: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(193); + ADVANCE_MAP( + '!', 277, + '"', 543, + '%', 436, + '&', 446, + '(', 410, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + '<', 456, + '=', 476, + '>', 1162, + '?', 493, + 'L', 1173, + 'R', 1174, + 'U', 1175, + '[', 470, + '\\', 79, + '^', 443, + 'u', 1176, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(193); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1182); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 195: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(194); + ADVANCE_MAP( + '!', 277, + '"', 543, + '%', 435, + '&', 445, + '(', 410, + '*', 431, + '+', 425, + ',', 351, + '-', 421, + '.', 507, + '/', 433, + '<', 458, + '=', 278, + '>', 1162, + '?', 493, + 'L', 796, + 'R', 799, + 'U', 803, + '[', 470, + '\\', 142, + '^', 442, + 'u', 806, + '|', 441, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(195); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 196: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(195); + ADVANCE_MAP( + '!', 277, + '"', 543, + '%', 435, + '&', 445, + '(', 410, + '*', 431, + '+', 425, + ',', 351, + '-', 421, + '.', 507, + '/', 433, + '<', 458, + '=', 278, + '>', 1162, + '?', 493, + 'L', 1173, + 'R', 1174, + 'U', 1175, + '[', 470, + '\\', 142, + '^', 442, + 'u', 1176, + '|', 441, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(195); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1182); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 197: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(196); + ADVANCE_MAP( + '!', 277, + '#', 310, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 419, + '.', 507, + '/', 434, + ':', 275, + ';', 464, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + '[', 471, + '\\', 35, + '^', 443, + '{', 468, + '|', 440, + '}', 469, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(197); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 198: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(990); + ADVANCE_MAP( + '!', 277, + '#', 295, + '%', 435, + '&', 445, + '(', 410, + ')', 352, + '*', 431, + '+', 424, + ',', 351, + '-', 414, + '/', 433, + ':', 275, + ';', 464, + '<', 459, + '=', 278, + '>', 450, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 950, + 'H', 830, + 'I', 961, + 'L', 840, + 'P', 854, + 'Q', 1067, + 'S', 867, + 'T', 857, + 'U', 863, + 'V', 992, + 'W', 865, + '[', 471, + '\\', 17, + '^', 442, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1122, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 'u', 1117, + 'v', 1130, + 'w', 1096, + '|', 441, + '}', 469, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(198); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 199: - if (lookahead != 0 && - lookahead != '\r') ADVANCE(975); - if (lookahead == '\r') ADVANCE(977); + ADVANCE_MAP( + '!', 277, + '#', 299, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + '0', 1163, + ':', 492, + ';', 464, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + '[', 471, + '\\', 29, + ']', 474, + '^', 443, + '{', 468, + '|', 440, + '}', 469, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(199); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 200: - if (eof) ADVANCE(206); - if (lookahead == '\n') SKIP(204) + ADVANCE_MAP( + '!', 277, + '#', 299, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + ':', 492, + ';', 464, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + '[', 470, + '\\', 128, + ']', 474, + '^', 443, + '{', 468, + '|', 440, + '}', 469, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(200); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 201: - if (eof) ADVANCE(206); - if (lookahead == '\n') SKIP(204) - if (lookahead == '\r') SKIP(200) + ADVANCE_MAP( + '!', 277, + '#', 299, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + ':', 491, + ';', 464, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 950, + 'H', 830, + 'I', 961, + 'L', 840, + 'P', 854, + 'Q', 1067, + 'S', 867, + 'T', 857, + 'U', 863, + 'V', 992, + 'W', 865, + '[', 470, + '\\', 55, + ']', 474, + '^', 443, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1122, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 'u', 1117, + 'v', 1130, + 'w', 1096, + '{', 468, + '|', 440, + '}', 469, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(201); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 202: - if (eof) ADVANCE(206); - if (lookahead == '\n') SKIP(205) + ADVANCE_MAP( + '!', 277, + '#', 299, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + ':', 491, + ';', 464, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + '[', 471, + '\\', 43, + ']', 474, + '^', 443, + '{', 468, + '|', 440, + '}', 469, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(202); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 203: - if (eof) ADVANCE(206); - if (lookahead == '\n') SKIP(205) - if (lookahead == '\r') SKIP(202) + ADVANCE_MAP( + '!', 277, + '#', 299, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + ':', 491, + ';', 464, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + '[', 470, + '\\', 150, + ']', 474, + '^', 443, + '{', 468, + '|', 440, + '}', 469, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(203); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 204: - if (eof) ADVANCE(206); - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '#') ADVANCE(173); - if (lookahead == '%') ADVANCE(284); - if (lookahead == '&') ADVANCE(293); - if (lookahead == '\'') ADVANCE(372); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '+') ADVANCE(275); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(265); - if (lookahead == '.') ADVANCE(350); - if (lookahead == '/') ADVANCE(282); - if (lookahead == '0') ADVANCE(357); - if (lookahead == ':') ADVANCE(335); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(301); - if (lookahead == '=') ADVANCE(319); - if (lookahead == '>') ADVANCE(979); - if (lookahead == '?') ADVANCE(336); - if (lookahead == 'A') ADVANCE(827); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(684); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(658); - if (lookahead == 'H') ADVANCE(653); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(628); - if (lookahead == 'P') ADVANCE(676); - if (lookahead == 'Q') ADVANCE(888); - if (lookahead == 'S') ADVANCE(689); - if (lookahead == 'T') ADVANCE(677); - if (lookahead == 'U') ADVANCE(631); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(687); - if (lookahead == '[') ADVANCE(315); - if (lookahead == '\\') SKIP(201) - if (lookahead == ']') ADVANCE(317); - if (lookahead == '^') ADVANCE(290); - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(905); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(955); - if (lookahead == 'u') ADVANCE(635); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '|') ADVANCE(287); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(204) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); - if (('E' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ADVANCE_MAP( + '!', 277, + '#', 299, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + ':', 491, + ';', 464, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + '[', 470, + '\\', 144, + ']', 474, + '^', 443, + '|', 440, + '}', 469, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(205); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1182); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 205: - if (eof) ADVANCE(206); - if (lookahead == '!') ADVANCE(261); - if (lookahead == '"') ADVANCE(381); - if (lookahead == '#') ADVANCE(177); - if (lookahead == '&') ADVANCE(292); - if (lookahead == '\'') ADVANCE(372); - if (lookahead == '(') ADVANCE(260); - if (lookahead == ')') ADVANCE(214); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '+') ADVANCE(276); - if (lookahead == ',') ADVANCE(213); - if (lookahead == '-') ADVANCE(268); - if (lookahead == '.') ADVANCE(350); - if (lookahead == '/') ADVANCE(155); - if (lookahead == '0') ADVANCE(357); - if (lookahead == ':') ADVANCE(335); - if (lookahead == ';') ADVANCE(307); - if (lookahead == '<') ADVANCE(300); - if (lookahead == '=') ADVANCE(318); - if (lookahead == '>') ADVANCE(979); - if (lookahead == 'A') ADVANCE(829); - if (lookahead == 'B') ADVANCE(806); - if (lookahead == 'C') ADVANCE(694); - if (lookahead == 'D') ADVANCE(886); - if (lookahead == 'F') ADVANCE(661); - if (lookahead == 'H') ADVANCE(657); - if (lookahead == 'I') ADVANCE(786); - if (lookahead == 'L') ADVANCE(627); - if (lookahead == 'P') ADVANCE(681); - if (lookahead == 'Q') ADVANCE(889); - if (lookahead == 'S') ADVANCE(696); - if (lookahead == 'T') ADVANCE(682); - if (lookahead == 'U') ADVANCE(632); - if (lookahead == 'V') ADVANCE(818); - if (lookahead == 'W') ADVANCE(695); - if (lookahead == '[') ADVANCE(314); - if (lookahead == '\\') SKIP(203) - if (lookahead == ']') ADVANCE(172); - if (lookahead == 'b') ADVANCE(952); - if (lookahead == 'c') ADVANCE(929); - if (lookahead == 'd') ADVANCE(947); - if (lookahead == 'f') ADVANCE(905); - if (lookahead == 'i') ADVANCE(944); - if (lookahead == 'm') ADVANCE(906); - if (lookahead == 'p') ADVANCE(963); - if (lookahead == 's') ADVANCE(931); - if (lookahead == 't') ADVANCE(955); - if (lookahead == 'u') ADVANCE(635); - if (lookahead == 'v') ADVANCE(950); - if (lookahead == 'w') ADVANCE(916); - if (lookahead == '{') ADVANCE(311); - if (lookahead == '}') ADVANCE(312); - if (lookahead == '~') ADVANCE(263); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(205) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); - if (('E' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(971); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ADVANCE_MAP( + '!', 277, + '#', 299, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + ':', 491, + ';', 464, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + '[', 470, + '\\', 144, + ']', 474, + '^', 443, + '|', 440, + '}', 469, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(205); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 206: - ACCEPT_TOKEN(ts_builtin_sym_end); + ADVANCE_MAP( + '!', 277, + '#', 299, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + ':', 491, + ';', 464, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + '[', 473, + '\\', 83, + ']', 474, + '^', 443, + '|', 440, + '}', 469, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(206); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 207: - ACCEPT_TOKEN(aux_sym_preproc_include_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 277, + '#', 299, + '%', 435, + '&', 445, + '(', 410, + ')', 352, + '*', 431, + '+', 425, + ',', 351, + '-', 421, + '.', 507, + '/', 433, + ':', 492, + ';', 464, + '<', 458, + '=', 278, + '>', 450, + '?', 493, + '[', 470, + '\\', 73, + ']', 474, + '^', 442, + '{', 468, + '|', 441, + '}', 469, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(207); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(208); + ADVANCE_MAP( + '!', 277, + '#', 299, + '%', 435, + '&', 445, + '(', 410, + ')', 352, + '*', 431, + '+', 425, + ',', 351, + '-', 421, + '.', 507, + '/', 433, + ':', 491, + ';', 464, + '<', 458, + '=', 278, + '>', 450, + '?', 493, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 950, + 'H', 830, + 'I', 961, + 'L', 840, + 'P', 854, + 'Q', 1067, + 'S', 867, + 'T', 857, + 'U', 863, + 'V', 992, + 'W', 865, + '[', 470, + '\\', 132, + ']', 474, + '^', 442, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1122, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 'u', 1117, + 'v', 1130, + 'w', 1096, + '{', 468, + '|', 441, + '}', 469, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(208); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(209); - if (lookahead == '\\') ADVANCE(251); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(250); + ADVANCE_MAP( + '!', 277, + '#', 299, + '%', 435, + '&', 445, + '(', 410, + ')', 352, + '*', 431, + '+', 425, + ',', 351, + '-', 421, + '.', 507, + '/', 433, + ':', 491, + ';', 464, + '<', 458, + '=', 278, + '>', 450, + '?', 493, + '[', 470, + '\\', 160, + ']', 474, + '^', 442, + '{', 468, + '|', 441, + '}', 469, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(209); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 210: - ACCEPT_TOKEN(aux_sym_preproc_def_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 277, + '#', 299, + '%', 435, + '&', 445, + '(', 410, + ')', 352, + '*', 431, + '+', 425, + ',', 351, + '-', 421, + '.', 507, + '/', 433, + ':', 491, + ';', 464, + '<', 458, + '=', 278, + '>', 450, + '?', 493, + '[', 470, + '\\', 156, + ']', 474, + '^', 442, + '|', 441, + '}', 469, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(211); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1182); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_LPAREN); + ADVANCE_MAP( + '!', 277, + '#', 299, + '%', 435, + '&', 445, + '(', 410, + ')', 352, + '*', 431, + '+', 425, + ',', 351, + '-', 421, + '.', 507, + '/', 433, + ':', 491, + ';', 464, + '<', 458, + '=', 278, + '>', 450, + '?', 493, + '[', 470, + '\\', 156, + ']', 474, + '^', 442, + '|', 441, + '}', 469, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(211); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ADVANCE_MAP( + '!', 277, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 419, + '.', 507, + '/', 434, + ':', 492, + ';', 464, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + '[', 470, + '\\', 65, + '^', 443, + '{', 468, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(212); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_COMMA); + ADVANCE_MAP( + '!', 277, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 419, + '.', 507, + '/', 434, + ':', 491, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + '[', 470, + '\\', 81, + '^', 443, + '{', 468, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(213); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 214: - ACCEPT_TOKEN(anon_sym_RPAREN); + ADVANCE_MAP( + '!', 277, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 419, + '.', 507, + '/', 434, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 950, + 'H', 830, + 'I', 961, + 'L', 840, + 'P', 854, + 'Q', 1067, + 'S', 867, + 'T', 857, + 'U', 863, + 'V', 992, + 'W', 865, + '[', 470, + '\\', 61, + '^', 443, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1122, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 'u', 1117, + 'v', 1130, + 'w', 1096, + '{', 468, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(214); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 215: - ACCEPT_TOKEN(aux_sym_preproc_if_token1); - if (lookahead == 'd') ADVANCE(230); - if (lookahead == 'n') ADVANCE(225); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 277, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 419, + '.', 507, + '/', 434, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + '[', 472, + '\\', 89, + '^', 443, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(215); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 216: - ACCEPT_TOKEN(aux_sym_preproc_if_token2); + ADVANCE_MAP( + '!', 277, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 419, + '.', 507, + '/', 434, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + '[', 470, + '\\', 146, + '^', 443, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(217); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1182); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 217: - ACCEPT_TOKEN(aux_sym_preproc_if_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 277, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 419, + '.', 507, + '/', 434, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + '[', 470, + '\\', 146, + '^', 443, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(217); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 218: - ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 277, + '%', 436, + '&', 446, + '(', 410, + ')', 352, + '*', 432, + '+', 428, + ',', 351, + '-', 419, + '.', 507, + '/', 434, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + '[', 473, + '\\', 158, + '^', 443, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(218); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 219: - ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 277, + '%', 436, + '&', 446, + '(', 410, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + ':', 492, + '<', 456, + '=', 476, + '>', 1162, + '?', 493, + '[', 470, + '\\', 67, + '^', 443, + '{', 468, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(219); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 220: - ACCEPT_TOKEN(aux_sym_preproc_else_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 277, + '%', 436, + '&', 446, + '(', 410, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + ':', 491, + '<', 456, + '=', 476, + '>', 1162, + '?', 493, + '[', 470, + '\\', 154, + '^', 443, + '{', 468, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(220); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 221: - ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 277, + '%', 436, + '&', 446, + '(', 410, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + ';', 464, + '<', 456, + '=', 476, + '>', 451, + '?', 493, + '[', 472, + '\\', 87, + '^', 443, + '|', 440, + '}', 469, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(221); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 222: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'c') ADVANCE(243); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 277, + '%', 436, + '&', 446, + '(', 410, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + '<', 456, + '=', 476, + '>', 1162, + '?', 493, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 950, + 'H', 830, + 'I', 961, + 'L', 840, + 'P', 854, + 'Q', 1067, + 'S', 867, + 'T', 857, + 'U', 863, + 'V', 992, + 'W', 865, + '[', 470, + '\\', 63, + '^', 443, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1122, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 'u', 1117, + 'v', 1130, + 'w', 1096, + '{', 468, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(222); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 223: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(241); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 277, + '%', 436, + '&', 446, + '(', 410, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + '<', 456, + '=', 476, + '>', 1162, + '?', 493, + '[', 471, + '\\', 51, + '^', 443, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(223); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 224: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(229); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ADVANCE_MAP( + '!', 277, + '%', 436, + '&', 446, + '(', 410, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + '<', 456, + '=', 476, + '>', 1162, + '?', 493, + '[', 470, + '\\', 130, + '^', 443, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(225); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1182); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 225: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(231); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 277, + '%', 436, + '&', 446, + '(', 410, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + '<', 456, + '=', 476, + '>', 1162, + '?', 493, + '[', 470, + '\\', 130, + '^', 443, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(225); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 226: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(234); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 277, + '%', 436, + '&', 446, + '(', 410, + '*', 432, + '+', 428, + ',', 351, + '-', 420, + '.', 507, + '/', 434, + '<', 456, + '=', 476, + '>', 1162, + '?', 493, + '[', 473, + '\\', 152, + '^', 443, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(226); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 227: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(220); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 277, + '%', 436, + '&', 446, + '*', 432, + '+', 430, + ',', 351, + '-', 423, + '.', 258, + '/', 434, + '<', 457, + '=', 476, + '>', 451, + '\\', 95, + '^', 443, + '|', 440, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(227); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 228: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(210); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 277, + '%', 435, + '&', 445, + '(', 410, + ')', 352, + '*', 431, + '+', 425, + ',', 351, + '-', 421, + '.', 507, + '/', 433, + ':', 492, + ';', 464, + '<', 458, + '=', 476, + '>', 450, + '?', 493, + '[', 471, + '\\', 39, + ']', 474, + '^', 442, + '{', 468, + '|', 441, + '}', 469, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(228); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 229: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(207); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 277, + '%', 435, + '&', 445, + '(', 410, + ')', 352, + '*', 431, + '+', 425, + ',', 351, + '-', 421, + '.', 507, + '/', 433, + ':', 492, + ';', 464, + '<', 458, + '=', 278, + '>', 450, + '?', 493, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 950, + 'H', 830, + 'I', 961, + 'L', 840, + 'P', 854, + 'Q', 1067, + 'S', 867, + 'T', 857, + 'U', 863, + 'V', 992, + 'W', 865, + '[', 470, + '\\', 71, + ']', 474, + '^', 442, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1122, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 'u', 1117, + 'v', 1130, + 'w', 1096, + '{', 468, + '|', 441, + '}', 469, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(229); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 230: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(237); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 277, + '%', 435, + '&', 445, + '(', 410, + ')', 352, + '*', 431, + '+', 425, + ',', 351, + '-', 421, + '.', 507, + '/', 433, + ':', 275, + ';', 464, + '<', 458, + '=', 278, + '>', 450, + '?', 493, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 950, + 'H', 830, + 'I', 961, + 'L', 840, + 'P', 854, + 'Q', 1067, + 'S', 867, + 'T', 857, + 'U', 863, + 'V', 992, + 'W', 865, + '[', 470, + '\\', 140, + ']', 289, + '^', 442, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1122, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 'u', 1117, + 'v', 1130, + 'w', 1096, + '{', 468, + '|', 441, + '}', 469, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(230); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 231: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(238); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 277, + '%', 435, + '&', 445, + '(', 410, + '*', 431, + '+', 425, + ',', 351, + '-', 421, + '.', 507, + '/', 433, + ':', 492, + '<', 458, + '=', 278, + '>', 1162, + '?', 493, + '[', 470, + '\\', 164, + '^', 442, + '{', 468, + '|', 441, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(231); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 232: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(215); - if (lookahead == 'n') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 277, + '%', 435, + '&', 445, + '(', 410, + '*', 431, + '+', 425, + ',', 351, + '-', 421, + '.', 507, + '/', 433, + ':', 491, + '<', 458, + '=', 278, + '>', 1162, + '?', 493, + '[', 470, + '\\', 136, + '^', 442, + '{', 468, + '|', 441, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(232); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 233: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(215); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 277, + '%', 435, + '&', 445, + '(', 410, + '*', 431, + '+', 425, + ',', 351, + '-', 421, + '.', 507, + '/', 433, + '<', 458, + '=', 278, + '>', 1162, + '?', 493, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 950, + 'H', 830, + 'I', 961, + 'L', 840, + 'P', 854, + 'Q', 1067, + 'S', 867, + 'T', 857, + 'U', 863, + 'V', 992, + 'W', 865, + '[', 470, + '\\', 134, + '^', 442, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1122, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 'u', 1117, + 'v', 1130, + 'w', 1096, + '{', 468, + '|', 441, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(233); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 234: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(239); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ADVANCE_MAP( + '!', 277, + '%', 435, + '&', 445, + '(', 410, + '*', 431, + '+', 425, + ',', 351, + '-', 421, + '.', 507, + '/', 433, + '<', 458, + '=', 278, + '>', 1162, + '?', 493, + '[', 470, + '\\', 162, + '^', 442, + '|', 441, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(235); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1182); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 235: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(221); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '!', 277, + '%', 435, + '&', 445, + '(', 410, + '*', 431, + '+', 425, + ',', 351, + '-', 421, + '.', 507, + '/', 433, + '<', 458, + '=', 278, + '>', 1162, + '?', 493, + '[', 470, + '\\', 162, + '^', 442, + '|', 441, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(235); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 236: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(217); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '"', 543, + '&', 445, + '(', 410, + '*', 431, + '/', 259, + ':', 275, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 950, + 'H', 830, + 'I', 961, + 'L', 795, + 'P', 854, + 'Q', 1067, + 'S', 867, + 'T', 857, + 'U', 802, + 'V', 992, + 'W', 865, + '[', 471, + '\\', 45, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1122, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 'u', 807, + 'v', 1130, + 'w', 1096, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(236); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 237: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(218); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '"', 543, + ')', 352, + ',', 351, + '/', 259, + ':', 491, + 'L', 796, + 'R', 799, + 'U', 803, + '\\', 108, + 'u', 806, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(237); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 238: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(219); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + if (lookahead == '"') ADVANCE(543); + if (lookahead == '/') ADVANCE(259); + if (lookahead == '<') ADVANCE(283); + if (lookahead == 'L') ADVANCE(797); + if (lookahead == 'U') ADVANCE(804); + if (lookahead == '\\') ADVANCE(110); + if (lookahead == 'u') ADVANCE(808); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(238); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 239: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(245); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + if (lookahead == '"') ADVANCE(543); + if (lookahead == '/') ADVANCE(259); + if (lookahead == '\\') ADVANCE(112); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(239); END_STATE(); case 240: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(235); - if (lookahead == 's') ADVANCE(227); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + if (lookahead == '"') ADVANCE(1172); END_STATE(); case 241: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(236); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '#', 299, + '&', 445, + '(', 410, + ')', 352, + '*', 431, + ',', 351, + '-', 282, + '.', 264, + '/', 259, + ':', 492, + ';', 464, + '<', 455, + '=', 475, + '>', 1162, + '[', 471, + '\\', 41, + ']', 474, + '{', 468, + '|', 313, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(241); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 242: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(240); - if (lookahead == 'n') ADVANCE(223); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '#', 291, + '&', 445, + '(', 410, + ')', 352, + '*', 431, + '+', 424, + ',', 351, + '-', 282, + '.', 264, + '/', 259, + ':', 492, + ';', 464, + '<', 455, + '=', 475, + '>', 1162, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 950, + 'H', 830, + 'I', 961, + 'L', 840, + 'P', 854, + 'Q', 1067, + 'S', 867, + 'T', 857, + 'U', 863, + 'V', 992, + 'W', 865, + '[', 471, + '\\', 15, + ']', 474, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1122, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 'u', 1117, + 'v', 1130, + 'w', 1096, + '{', 468, + '|', 313, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(242); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 243: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '#', 293, + '&', 445, + '(', 410, + '*', 431, + ',', 351, + '/', 259, + ':', 275, + ';', 464, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 950, + 'H', 830, + 'I', 961, + 'L', 840, + 'P', 854, + 'Q', 1067, + 'S', 867, + 'T', 857, + 'U', 863, + 'V', 992, + 'W', 865, + '[', 471, + '\\', 19, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1122, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 'u', 1117, + 'v', 1130, + 'w', 1096, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(243); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 244: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(223); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '&', 445, + '(', 410, + ')', 352, + '*', 431, + ',', 351, + '-', 282, + '.', 264, + '/', 259, + ':', 492, + ';', 464, + '<', 455, + '=', 475, + '>', 1162, + '[', 470, + '\\', 75, + '{', 468, + '|', 313, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(244); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 245: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(228); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '&', 445, + '(', 410, + ')', 352, + '*', 431, + ',', 351, + '-', 282, + '.', 264, + '/', 259, + ':', 491, + ';', 464, + '<', 455, + '=', 475, + '>', 1162, + '[', 471, + '\\', 49, + ']', 474, + '{', 468, + '|', 313, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(245); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 246: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'u') ADVANCE(224); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '&', 445, + '(', 410, + ')', 352, + '*', 431, + ',', 351, + '-', 282, + '/', 259, + ':', 491, + ';', 464, + '=', 475, + '>', 1162, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 950, + 'H', 830, + 'I', 961, + 'L', 840, + 'P', 854, + 'Q', 1067, + 'S', 867, + 'T', 857, + 'U', 863, + 'V', 992, + 'W', 865, + '[', 471, + '\\', 47, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1122, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 'u', 1117, + 'v', 1130, + 'w', 1096, + '{', 468, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(246); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 247: - ACCEPT_TOKEN(sym_preproc_directive); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ADVANCE_MAP( + '&', 445, + '(', 410, + ')', 352, + '*', 431, + ',', 351, + '.', 264, + '/', 259, + ':', 491, + ';', 464, + '=', 475, + '>', 1162, + '[', 470, + '\\', 93, + '{', 468, + '|', 313, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(247); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 248: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(157); - if (lookahead == '*') ADVANCE(248); - if (lookahead == '/') ADVANCE(973); - if (lookahead == '\\') ADVANCE(255); - if (lookahead != 0) ADVANCE(249); + ADVANCE_MAP( + '&', 445, + '(', 410, + ')', 352, + '*', 431, + ',', 351, + '/', 259, + ';', 464, + '=', 475, + '>', 1162, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 950, + 'H', 830, + 'I', 961, + 'L', 840, + 'P', 854, + 'Q', 1067, + 'S', 867, + 'T', 857, + 'U', 863, + 'V', 992, + 'W', 865, + '[', 470, + '\\', 91, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1122, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 'u', 1117, + 'v', 1130, + 'w', 1096, + '{', 468, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(248); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 249: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(157); - if (lookahead == '*') ADVANCE(248); - if (lookahead == '\\') ADVANCE(255); - if (lookahead != 0) ADVANCE(249); + ADVANCE_MAP( + '&', 444, + '*', 431, + '.', 264, + '/', 259, + ':', 275, + '=', 475, + '\\', 104, + ']', 474, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(249); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 250: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(209); - if (lookahead == '/') ADVANCE(253); - if (lookahead == '\\') ADVANCE(251); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(250); - if (lookahead != 0) ADVANCE(254); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '/') ADVANCE(259); + if (lookahead == '\\') ADVANCE(112); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(250); END_STATE(); case 251: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(250); - if (lookahead == '\r') ADVANCE(252); - if (lookahead == '\\') ADVANCE(256); - if (lookahead != 0) ADVANCE(254); + if (lookahead == '\'') ADVANCE(324); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(314); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(251); END_STATE(); case 252: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(250); - if (lookahead == '\\') ADVANCE(256); - if (lookahead != 0) ADVANCE(254); + if (lookahead == '\'') ADVANCE(320); + if (lookahead == '.') ADVANCE(523); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(252); END_STATE(); case 253: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '/') ADVANCE(976); - if (lookahead == '\\') ADVANCE(256); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(254); + ADVANCE_MAP( + '(', 410, + ')', 352, + ',', 351, + '/', 259, + ':', 491, + ';', 464, + '<', 455, + '=', 475, + '>', 1162, + '[', 472, + '\\', 106, + ']', 474, + '{', 468, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(253); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 254: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\\') ADVANCE(256); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(254); + ADVANCE_MAP( + '(', 410, + '/', 259, + ':', 275, + 'F', 836, + 'T', 1012, + '[', 470, + '\\', 97, + 'f', 1085, + 't', 1135, + '{', 468, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(254); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 255: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '\r' && - lookahead != '*' && - lookahead != '\\') ADVANCE(249); - if (lookahead == '\r') ADVANCE(258); - if (lookahead == '*') ADVANCE(248); - if (lookahead == '\\') ADVANCE(255); + if (lookahead == '(') ADVANCE(410); + if (lookahead == '/') ADVANCE(259); + if (lookahead == '\\') SKIP(120); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(255); END_STATE(); case 256: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '\r' && - lookahead != '\\') ADVANCE(254); - if (lookahead == '\r') ADVANCE(259); - if (lookahead == '\\') ADVANCE(256); + if (lookahead == ')') ADVANCE(352); + if (lookahead == '/') ADVANCE(259); + if (lookahead == '\\') SKIP(122); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(256); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(341); END_STATE(); case 257: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '\r' && - lookahead != '\\') ADVANCE(976); - if (lookahead == '\r') ADVANCE(978); - if (lookahead == '\\') ADVANCE(974); + if (lookahead == ')') ADVANCE(1170); END_STATE(); case 258: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '*' && - lookahead != '\\') ADVANCE(249); - if (lookahead == '*') ADVANCE(248); - if (lookahead == '\\') ADVANCE(255); + if (lookahead == '*') ADVANCE(511); END_STATE(); case 259: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(254); - if (lookahead == '\\') ADVANCE(256); + if (lookahead == '*') ADVANCE(262); + if (lookahead == '/') ADVANCE(1160); END_STATE(); case 260: - ACCEPT_TOKEN(anon_sym_LPAREN2); + if (lookahead == '*') ADVANCE(1169); END_STATE(); case 261: - ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '*') ADVANCE(261); + if (lookahead == '/') ADVANCE(1153); + if (lookahead != 0) ADVANCE(262); END_STATE(); case 262: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(295); + if (lookahead == '*') ADVANCE(261); + if (lookahead != 0) ADVANCE(262); END_STATE(); case 263: - ACCEPT_TOKEN(anon_sym_TILDE); + if (lookahead == '*') ADVANCE(261); + if (lookahead != 0) ADVANCE(368); END_STATE(); case 264: - ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(266); END_STATE(); case 265: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(347); - if (lookahead == '.') ADVANCE(185); - if (lookahead == '0') ADVANCE(357); - if (lookahead == '=') ADVANCE(341); - if (lookahead == '>') ADVANCE(352); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); + if (lookahead == '.') ADVANCE(266); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); END_STATE(); case 266: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(347); - if (lookahead == '.') ADVANCE(185); - if (lookahead == '0') ADVANCE(357); - if (lookahead == '=') ADVANCE(341); - if (lookahead == '>') ADVANCE(351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); + if (lookahead == '.') ADVANCE(350); END_STATE(); case 267: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(347); - if (lookahead == '.') ADVANCE(185); - if (lookahead == '0') ADVANCE(357); - if (lookahead == '>') ADVANCE(351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); + if (lookahead == '.') ADVANCE(324); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(521); END_STATE(); case 268: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(347); - if (lookahead == '.') ADVANCE(185); - if (lookahead == '0') ADVANCE(357); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); + if (lookahead == '/') ADVANCE(375); + if (lookahead == '\\') ADVANCE(370); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(268); + if (lookahead != 0) ADVANCE(377); END_STATE(); case 269: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(347); - if (lookahead == '=') ADVANCE(341); - if (lookahead == '>') ADVANCE(352); + if (lookahead == '1') ADVANCE(273); END_STATE(); case 270: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(347); - if (lookahead == '=') ADVANCE(341); - if (lookahead == '>') ADVANCE(351); + if (lookahead == '2') ADVANCE(514); END_STATE(); case 271: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(347); - if (lookahead == '>') ADVANCE(351); + if (lookahead == '2') ADVANCE(274); + if (lookahead == '6') ADVANCE(514); END_STATE(); case 272: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(185); - if (lookahead == '0') ADVANCE(357); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); + if (lookahead == '4') ADVANCE(514); END_STATE(); case 273: - ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '6') ADVANCE(514); END_STATE(); case 274: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(348); + if (lookahead == '8') ADVANCE(514); END_STATE(); case 275: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(348); - if (lookahead == '.') ADVANCE(185); - if (lookahead == '0') ADVANCE(357); - if (lookahead == '=') ADVANCE(340); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); + if (lookahead == ':') ADVANCE(465); END_STATE(); case 276: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(348); - if (lookahead == '.') ADVANCE(185); - if (lookahead == '0') ADVANCE(357); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); + if (lookahead == '<') ADVANCE(460); + if (lookahead == '=') ADVANCE(453); END_STATE(); case 277: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(348); - if (lookahead == '=') ADVANCE(340); + if (lookahead == '=') ADVANCE(448); END_STATE(); case 278: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(185); - if (lookahead == '0') ADVANCE(357); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(359); + if (lookahead == '=') ADVANCE(447); END_STATE(); case 279: - ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(452); + if (lookahead == '>') ADVANCE(462); END_STATE(); case 280: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(337); + if (lookahead == '=') ADVANCE(500); END_STATE(); case 281: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(157); - if (lookahead == '/') ADVANCE(975); + if (lookahead == '>') ADVANCE(280); END_STATE(); case 282: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(157); - if (lookahead == '/') ADVANCE(975); - if (lookahead == '=') ADVANCE(338); + if (lookahead == '>') ADVANCE(512); END_STATE(); case 283: - ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '>') ADVANCE(556); + if (lookahead == '\\') ADVANCE(284); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(283); END_STATE(); case 284: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(339); + if (lookahead == '>') ADVANCE(557); + if (lookahead == '\\') ADVANCE(284); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(283); END_STATE(); case 285: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == 'F') ADVANCE(269); END_STATE(); case 286: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == 'U') ADVANCE(339); + if (lookahead == 'u') ADVANCE(331); END_STATE(); case 287: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(346); - if (lookahead == '|') ADVANCE(285); + if (lookahead == '[') ADVANCE(466); + if (lookahead == ']') ADVANCE(1171); END_STATE(); case 288: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(285); + if (lookahead == ']') ADVANCE(1171); END_STATE(); case 289: - ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == ']') ADVANCE(467); END_STATE(); case 290: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(345); + if (lookahead == 'd') ADVANCE(384); + if (lookahead == 'e') ADVANCE(404); + if (lookahead == 'i') ADVANCE(392); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(290); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 291: - ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == 'd') ADVANCE(384); + if (lookahead == 'e') ADVANCE(404); + if (lookahead == 'i') ADVANCE(393); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(291); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 292: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(286); + if (lookahead == 'd') ADVANCE(384); + if (lookahead == 'e') ADVANCE(406); + if (lookahead == 'i') ADVANCE(392); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(292); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 293: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(286); - if (lookahead == '=') ADVANCE(344); + if (lookahead == 'd') ADVANCE(384); + if (lookahead == 'e') ADVANCE(406); + if (lookahead == 'i') ADVANCE(393); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(293); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 294: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == 'd') ADVANCE(384); + if (lookahead == 'i') ADVANCE(392); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(294); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 295: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == 'd') ADVANCE(384); + if (lookahead == 'i') ADVANCE(393); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(295); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 296: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(298); - if (lookahead == '>') ADVANCE(305); + if (lookahead == 'd') ADVANCE(308); END_STATE(); case 297: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(298); - if (lookahead == '>') ADVANCE(306); + if (lookahead == 'd') ADVANCE(302); END_STATE(); case 298: - ACCEPT_TOKEN(anon_sym_GT_EQ); + if (lookahead == 'e') ADVANCE(312); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(298); END_STATE(); case 299: - ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == 'e') ADVANCE(311); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(299); END_STATE(); case 300: - ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == 'e') ADVANCE(359); END_STATE(); case 301: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '=') ADVANCE(299); + if (lookahead == 'e') ADVANCE(306); END_STATE(); case 302: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(303); - if (lookahead == '=') ADVANCE(299); + if (lookahead == 'e') ADVANCE(307); END_STATE(); case 303: - ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == 'f') ADVANCE(269); END_STATE(); case 304: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(342); + if (lookahead == 'f') ADVANCE(355); END_STATE(); case 305: - ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == 'f') ADVANCE(361); END_STATE(); case 306: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(343); + if (lookahead == 'f') ADVANCE(363); END_STATE(); case 307: - ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == 'f') ADVANCE(365); END_STATE(); case 308: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + if (lookahead == 'i') ADVANCE(304); END_STATE(); case 309: - ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + if (lookahead == 'i') ADVANCE(305); + if (lookahead == 's') ADVANCE(300); END_STATE(); case 310: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + if (lookahead == 'i') ADVANCE(393); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(310); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 311: - ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == 'l') ADVANCE(309); + if (lookahead == 'n') ADVANCE(296); END_STATE(); case 312: - ACCEPT_TOKEN(anon_sym_RBRACE); + if (lookahead == 'n') ADVANCE(296); END_STATE(); case 313: - ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '|') ADVANCE(437); END_STATE(); case 314: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(309); + if (lookahead == '+' || + lookahead == '-') ADVANCE(321); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(520); END_STATE(); case 315: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(309); - if (lookahead == ']') ADVANCE(982); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(314); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(251); END_STATE(); case 316: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(982); + if (lookahead == '0' || + lookahead == '1') ADVANCE(518); END_STATE(); case 317: - ACCEPT_TOKEN(anon_sym_RBRACK); + if (lookahead == '8' || + lookahead == '9') ADVANCE(252); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(517); END_STATE(); case 318: - ACCEPT_TOKEN(anon_sym_EQ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(519); END_STATE(); case 319: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(294); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); END_STATE(); case 320: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == '1') ADVANCE(400); - if (lookahead == '3') ADVANCE(397); - if (lookahead == '6') ADVANCE(399); - if (lookahead == '8') ADVANCE(325); - if (lookahead == '_') ADVANCE(557); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(626); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(252); END_STATE(); case 321: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == '3') ADVANCE(397); - if (lookahead == '6') ADVANCE(399); - if (lookahead == 'L') ADVANCE(552); - if (lookahead == '_') ADVANCE(557); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(626); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(520); END_STATE(); case 322: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == '3') ADVANCE(397); - if (lookahead == '6') ADVANCE(399); - if (lookahead == 'L') ADVANCE(552); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1152); END_STATE(); case 323: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'E') ADVANCE(410); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(521); END_STATE(); case 324: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'L') ADVANCE(494); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(251); END_STATE(); case 325: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(549); END_STATE(); case 326: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(651); - if (lookahead == '3') ADVANCE(646); - if (lookahead == '6') ADVANCE(649); - if (lookahead == '8') ADVANCE(333); - if (lookahead == '_') ADVANCE(831); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(555); END_STATE(); case 327: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(652); - if (lookahead == '3') ADVANCE(647); - if (lookahead == '6') ADVANCE(650); - if (lookahead == '8') ADVANCE(899); - if (lookahead == '_') ADVANCE(925); - if (lookahead == 'm') ADVANCE(913); - if (lookahead == 'p') ADVANCE(964); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(322); END_STATE(); case 328: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(652); - if (lookahead == '3') ADVANCE(647); - if (lookahead == '6') ADVANCE(650); - if (lookahead == '8') ADVANCE(899); - if (lookahead == 'p') ADVANCE(964); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(325); END_STATE(); case 329: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '3') ADVANCE(646); - if (lookahead == '6') ADVANCE(649); - if (lookahead == 'L') ADVANCE(821); - if (lookahead == '_') ADVANCE(831); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(327); END_STATE(); case 330: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '3') ADVANCE(646); - if (lookahead == '6') ADVANCE(649); - if (lookahead == 'L') ADVANCE(821); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(328); END_STATE(); case 331: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == 'E') ADVANCE(664); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(329); END_STATE(); case 332: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == 'L') ADVANCE(763); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(330); END_STATE(); case 333: - ACCEPT_TOKEN(sym_primitive_type); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(331); END_STATE(); case 334: - ACCEPT_TOKEN(anon_sym_COLON); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(332); END_STATE(); case 335: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(308); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(333); END_STATE(); case 336: - ACCEPT_TOKEN(anon_sym_QMARK); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(334); END_STATE(); case 337: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(335); END_STATE(); case 338: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(336); END_STATE(); case 339: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(337); END_STATE(); case 340: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(338); END_STATE(); case 341: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(1184); END_STATE(); case 342: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + if (lookahead != 0 && + lookahead != '*') ADVANCE(377); END_STATE(); case 343: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + if (eof) ADVANCE(345); + ADVANCE_MAP( + '!', 412, + '"', 543, + '#', 290, + '%', 436, + '&', 446, + '\'', 534, + '(', 410, + ')', 352, + '*', 432, + '+', 426, + ',', 351, + '-', 415, + '.', 508, + '/', 434, + '0', 516, + ':', 492, + ';', 464, + '<', 456, + '=', 476, + '>', 1162, + '?', 493, + 'A', 1005, + 'B', 985, + 'C', 862, + 'D', 1066, + 'F', 835, + 'H', 830, + 'I', 961, + 'L', 794, + 'P', 854, + 'Q', 1067, + 'R', 799, + 'S', 867, + 'T', 855, + 'U', 800, + 'V', 992, + 'W', 865, + '[', 472, + '\\', 2, + ']', 474, + '^', 443, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1084, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 't', 1135, + 'u', 805, + 'v', 1130, + 'w', 1096, + '{', 468, + '|', 440, + '}', 469, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(343); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 344: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + if (eof) ADVANCE(345); + ADVANCE_MAP( + '!', 411, + '"', 543, + '#', 294, + '%', 435, + '&', 445, + '\'', 534, + '(', 410, + ')', 352, + '*', 431, + '+', 427, + ',', 351, + '-', 418, + '.', 265, + '/', 433, + '0', 516, + ':', 275, + ';', 464, + '<', 455, + '=', 475, + '>', 1162, + 'A', 1007, + 'B', 984, + 'C', 872, + 'D', 1065, + 'F', 839, + 'H', 834, + 'I', 964, + 'L', 793, + 'P', 859, + 'Q', 1068, + 'R', 798, + 'S', 874, + 'T', 860, + 'U', 801, + 'V', 996, + 'W', 873, + '[', 471, + '\\', 4, + ']', 474, + '^', 442, + 'b', 1132, + 'c', 1109, + 'd', 1127, + 'f', 1084, + 'i', 1124, + 'm', 1086, + 'p', 1143, + 's', 1111, + 't', 1135, + 'u', 805, + 'v', 1130, + 'w', 1096, + '{', 468, + '|', 313, + '}', 469, + '~', 413, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(344); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); + if (('E' <= lookahead && lookahead <= '_')) ADVANCE(1151); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(1152); END_STATE(); case 345: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 346: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(aux_sym_preproc_include_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 347: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(aux_sym_preproc_include_token2); END_STATE(); case 348: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(aux_sym_preproc_def_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(162); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 350: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(353); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 351: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 352: - ACCEPT_TOKEN(anon_sym_DASH_GT); - if (lookahead == '*') ADVANCE(980); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 353: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(185); - if (lookahead == 'F' || - lookahead == 'L' || - lookahead == 'U' || - lookahead == 'f' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(367); - if (lookahead == 'E' || - lookahead == 'P' || - lookahead == 'e' || - lookahead == 'p') ADVANCE(366); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(353); + ACCEPT_TOKEN(aux_sym_preproc_if_token1); + if (lookahead == 'd') ADVANCE(388); + if (lookahead == 'n') ADVANCE(382); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 354: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(189); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(354); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(367); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(354); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(354); END_STATE(); case 355: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(186); - if (lookahead == '.') ADVANCE(365); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(364); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(367); - if (lookahead == 'b') ADVANCE(363); - if (lookahead == 'x') ADVANCE(188); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(362); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(366); - if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(364); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(356); + ACCEPT_TOKEN(aux_sym_preproc_if_token2); END_STATE(); case 356: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(186); - if (lookahead == '.') ADVANCE(365); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(364); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(367); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(362); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(366); - if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(364); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(356); + ACCEPT_TOKEN(aux_sym_preproc_if_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 357: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(184); - if (lookahead == '.') ADVANCE(365); - if (lookahead == 'F' || - lookahead == 'L' || - lookahead == 'U' || - lookahead == 'f' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(367); - if (lookahead == 'b') ADVANCE(159); - if (lookahead == 'x') ADVANCE(158); - if (lookahead == 'E' || - lookahead == 'P' || - lookahead == 'e' || - lookahead == 'p') ADVANCE(366); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(359); + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 358: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(184); - if (lookahead == '.') ADVANCE(365); - if (lookahead == 'F' || - lookahead == 'L' || - lookahead == 'U' || - lookahead == 'f' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(367); - if (lookahead == 'b') ADVANCE(184); - if (lookahead == 'x') ADVANCE(188); - if (lookahead == 'E' || - lookahead == 'P' || - lookahead == 'e' || - lookahead == 'p') ADVANCE(366); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(359); + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 359: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(184); - if (lookahead == '.') ADVANCE(365); - if (lookahead == 'F' || - lookahead == 'L' || - lookahead == 'U' || - lookahead == 'f' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(367); - if (lookahead == 'E' || - lookahead == 'P' || - lookahead == 'e' || - lookahead == 'p') ADVANCE(366); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(359); + ACCEPT_TOKEN(aux_sym_preproc_else_token1); END_STATE(); case 360: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(187); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(361); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(367); - if (lookahead == '+' || - lookahead == '-') ADVANCE(189); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(360); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(366); + ACCEPT_TOKEN(aux_sym_preproc_else_token1); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(361); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 361: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(187); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(361); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(367); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(360); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(366); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(361); + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + if (lookahead == 'd') ADVANCE(301); + if (lookahead == 'n') ADVANCE(297); END_STATE(); case 362: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(188); - if (lookahead == '.') ADVANCE(365); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(364); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(367); - if (lookahead == '+' || - lookahead == '-') ADVANCE(189); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(362); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(366); + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + if (lookahead == 'd') ADVANCE(390); + if (lookahead == 'n') ADVANCE(383); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(364); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 363: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(188); - if (lookahead == '.') ADVANCE(365); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(364); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(367); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(362); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(366); - if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(364); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(356); + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); END_STATE(); case 364: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(188); - if (lookahead == '.') ADVANCE(365); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(364); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(367); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(362); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(366); + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(364); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 365: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(361); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(367); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(360); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(366); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(361); + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); END_STATE(); case 366: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(354); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(367); - if (lookahead == '+' || - lookahead == '-') ADVANCE(189); + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(354); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 367: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'F' || - lookahead == 'L' || - lookahead == 'U' || - lookahead == 'f' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(367); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(262); + if (lookahead == '*') ADVANCE(367); + if (lookahead == '/') ADVANCE(1153); + if (lookahead == '\\') ADVANCE(373); + if (lookahead != 0) ADVANCE(368); END_STATE(); case 368: - ACCEPT_TOKEN(anon_sym_L_SQUOTE); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(262); + if (lookahead == '*') ADVANCE(367); + if (lookahead == '/') ADVANCE(263); + if (lookahead == '\\') ADVANCE(373); + if (lookahead != 0) ADVANCE(368); END_STATE(); case 369: - ACCEPT_TOKEN(anon_sym_u_SQUOTE); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(1160); + if (lookahead == '\r') ADVANCE(1154); + if (lookahead == '/') ADVANCE(1157); + if (lookahead == '\\') ADVANCE(1156); + if (lookahead != 0) ADVANCE(1158); END_STATE(); case 370: - ACCEPT_TOKEN(anon_sym_U_SQUOTE); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') SKIP(268); + if (lookahead == '\r') ADVANCE(371); + if (lookahead == '/') ADVANCE(342); + if (lookahead == '\\') ADVANCE(372); + if (lookahead != 0) ADVANCE(377); END_STATE(); case 371: - ACCEPT_TOKEN(anon_sym_u8_SQUOTE); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') SKIP(268); + if (lookahead == '/') ADVANCE(342); + if (lookahead == '\\') ADVANCE(372); + if (lookahead != 0) ADVANCE(377); END_STATE(); case 372: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\r') ADVANCE(378); + if (lookahead == '/') ADVANCE(342); + if (lookahead == '\\') ADVANCE(372); + if (lookahead != 0) ADVANCE(377); END_STATE(); case 373: - ACCEPT_TOKEN(aux_sym_char_literal_token1); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\r') ADVANCE(376); + if (lookahead == '*') ADVANCE(367); + if (lookahead == '/') ADVANCE(263); + if (lookahead == '\\') ADVANCE(373); + if (lookahead != 0) ADVANCE(368); END_STATE(); case 374: - ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\n') ADVANCE(388); - if (lookahead == '\r') ADVANCE(387); - if (lookahead == 'U') ADVANCE(197); - if (lookahead == 'u') ADVANCE(193); - if (lookahead == 'x') ADVANCE(191); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(390); - if (lookahead != 0) ADVANCE(387); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\r') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1157); + if (lookahead == '\\') ADVANCE(1156); + if (lookahead != 0) ADVANCE(1158); END_STATE(); case 375: - ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(157); - if (lookahead == '/') ADVANCE(975); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '*') ADVANCE(368); + if (lookahead == '/') ADVANCE(1157); + if (lookahead == '\\') ADVANCE(372); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(377); END_STATE(); case 376: - ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(64); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '*') ADVANCE(367); + if (lookahead == '/') ADVANCE(263); + if (lookahead == '\\') ADVANCE(373); + if (lookahead != 0) ADVANCE(368); END_STATE(); case 377: - ACCEPT_TOKEN(anon_sym_L_DQUOTE); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '/') ADVANCE(342); + if (lookahead == '\\') ADVANCE(372); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(377); END_STATE(); case 378: - ACCEPT_TOKEN(anon_sym_u_DQUOTE); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '/') ADVANCE(342); + if (lookahead == '\\') ADVANCE(372); + if (lookahead != 0) ADVANCE(377); END_STATE(); case 379: - ACCEPT_TOKEN(anon_sym_U_DQUOTE); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'c') ADVANCE(405); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 380: - ACCEPT_TOKEN(anon_sym_u8_DQUOTE); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(403); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 381: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(387); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 382: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(384); - if (lookahead == '/') ADVANCE(386); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(386); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(389); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 383: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(383); - if (lookahead == '/') ADVANCE(386); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(384); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(391); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 384: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(383); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(384); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(394); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 385: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(382); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(385); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(386); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(360); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 386: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(386); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(348); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 387: - ACCEPT_TOKEN(sym_escape_sequence); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(346); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 388: - ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(64); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(397); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 389: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(387); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(398); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 390: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(389); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 391: - ACCEPT_TOKEN(sym_system_lib_string); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(400); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 392: - ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(391); - if (lookahead == '\\') ADVANCE(169); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(168); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(353); + if (lookahead == 'n') ADVANCE(379); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 393: - ACCEPT_TOKEN(sym_true); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(353); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 394: - ACCEPT_TOKEN(sym_true); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(401); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 395: - ACCEPT_TOKEN(sym_false); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(362); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 396: - ACCEPT_TOKEN(sym_false); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(356); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 397: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == '2') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(357); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 398: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == '3') ADVANCE(397); - if (lookahead == '6') ADVANCE(399); - if (lookahead == 'S') ADVANCE(487); - if (lookahead == 'U') ADVANCE(521); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(358); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 399: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == '4') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 400: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == '6') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 401: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'A') ADVANCE(508); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(407); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 402: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'A') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(395); + if (lookahead == 's') ADVANCE(385); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 403: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'A') ADVANCE(555); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(396); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 404: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'A') ADVANCE(463); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(402); + if (lookahead == 'n') ADVANCE(380); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 405: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'A') ADVANCE(498); - if (lookahead == 'K') ADVANCE(447); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(408); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 406: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'A') ADVANCE(560); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(380); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 407: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'A') ADVANCE(590); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(386); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 408: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'A') ADVANCE(505); - if (lookahead == 'E') ADVANCE(512); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'u') ADVANCE(381); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 409: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'A') ADVANCE(499); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 410: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'A') ADVANCE(512); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 411: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'A') ADVANCE(500); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 412: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'A') ADVANCE(569); - if (lookahead == 'B') ADVANCE(553); - if (lookahead == 'C') ADVANCE(527); - if (lookahead == 'D') ADVANCE(613); - if (lookahead == 'H') ADVANCE(415); - if (lookahead == 'I') ADVANCE(520); - if (lookahead == 'L') ADVANCE(552); - if (lookahead == 'S') ADVANCE(594); - if (lookahead == 'T') ADVANCE(576); - if (lookahead == 'W') ADVANCE(534); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('E' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(448); END_STATE(); case 413: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'A') ADVANCE(569); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 414: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'A') ADVANCE(596); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 415: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'A') ADVANCE(511); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(505); + if (lookahead == '.') ADVANCE(319); + if (lookahead == '0') ADVANCE(516); + if (lookahead == '=') ADVANCE(498); + if (lookahead == '>') ADVANCE(513); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); END_STATE(); case 416: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'A') ADVANCE(600); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(505); + if (lookahead == '.') ADVANCE(319); + if (lookahead == '0') ADVANCE(516); + if (lookahead == '=') ADVANCE(498); + if (lookahead == '>') ADVANCE(512); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); END_STATE(); case 417: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'A') ADVANCE(525); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(505); + if (lookahead == '.') ADVANCE(319); + if (lookahead == '0') ADVANCE(516); + if (lookahead == '>') ADVANCE(512); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); END_STATE(); case 418: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'A') ADVANCE(428); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(505); + if (lookahead == '.') ADVANCE(319); + if (lookahead == '0') ADVANCE(516); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); END_STATE(); case 419: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'B') ADVANCE(614); - if (lookahead == 'C') ADVANCE(470); - if (lookahead == 'S') ADVANCE(594); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(505); + if (lookahead == '=') ADVANCE(498); + if (lookahead == '>') ADVANCE(513); END_STATE(); case 420: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'B') ADVANCE(495); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(505); + if (lookahead == '=') ADVANCE(498); + if (lookahead == '>') ADVANCE(512); END_STATE(); case 421: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'B') ADVANCE(411); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(505); + if (lookahead == '>') ADVANCE(512); END_STATE(); case 422: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'C') ADVANCE(470); - if (lookahead == 'H') ADVANCE(409); - if (lookahead == 'I') ADVANCE(514); - if (lookahead == 'L') ADVANCE(548); - if (lookahead == 'S') ADVANCE(477); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(319); + if (lookahead == '0') ADVANCE(516); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); END_STATE(); case 423: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'C') ADVANCE(470); - if (lookahead == 'O') ADVANCE(563); - if (lookahead == 'S') ADVANCE(594); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(498); + if (lookahead == '>') ADVANCE(260); END_STATE(); case 424: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'C') ADVANCE(430); - if (lookahead == 'L') ADVANCE(462); - if (lookahead == 'N') ADVANCE(437); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 425: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'C') ADVANCE(325); - if (lookahead == 'D') ADVANCE(453); - if (lookahead == 'E') ADVANCE(575); - if (lookahead == 'R') ADVANCE(530); - if (lookahead == 'W') ADVANCE(555); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(506); END_STATE(); case 426: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'C') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(506); + if (lookahead == '.') ADVANCE(319); + if (lookahead == '0') ADVANCE(516); + if (lookahead == '=') ADVANCE(497); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); END_STATE(); case 427: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'C') ADVANCE(496); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(506); + if (lookahead == '.') ADVANCE(319); + if (lookahead == '0') ADVANCE(516); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); END_STATE(); case 428: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'C') ADVANCE(442); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(506); + if (lookahead == '=') ADVANCE(497); END_STATE(); case 429: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'C') ADVANCE(482); - if (lookahead == 'O') ADVANCE(518); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '.') ADVANCE(319); + if (lookahead == '0') ADVANCE(516); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(519); END_STATE(); case 430: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'C') ADVANCE(455); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(497); END_STATE(); case 431: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'C') ADVANCE(546); - if (lookahead == 'N') ADVANCE(581); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 432: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'C') ADVANCE(454); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(494); END_STATE(); case 433: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'C') ADVANCE(545); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(262); + if (lookahead == '/') ADVANCE(1160); END_STATE(); case 434: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'C') ADVANCE(411); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(262); + if (lookahead == '/') ADVANCE(1160); + if (lookahead == '=') ADVANCE(495); END_STATE(); case 435: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'D') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 436: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'D') ADVANCE(321); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(496); END_STATE(); case 437: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'D') ADVANCE(502); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 438: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'D') ADVANCE(605); - if (lookahead == 'N') ADVANCE(488); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 439: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'D') ADVANCE(492); - if (lookahead == 'L') ADVANCE(532); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 440: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'D') ADVANCE(414); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(503); + if (lookahead == '|') ADVANCE(437); END_STATE(); case 441: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'D') ADVANCE(460); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(437); END_STATE(); case 442: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'E') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 443: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'E') ADVANCE(517); - if (lookahead == 'O') ADVANCE(438); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(502); END_STATE(); case 444: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'E') ADVANCE(393); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 445: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'E') ADVANCE(395); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(438); END_STATE(); case 446: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'E') ADVANCE(615); - if (lookahead == 'L') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(438); + if (lookahead == '=') ADVANCE(501); END_STATE(); case 447: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'E') ADVANCE(615); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 448: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'E') ADVANCE(435); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 449: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'E') ADVANCE(622); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 450: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'E') ADVANCE(461); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(452); + if (lookahead == '>') ADVANCE(462); END_STATE(); case 451: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'E') ADVANCE(579); - if (lookahead == 'G') ADVANCE(512); - if (lookahead == 'S') ADVANCE(567); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(452); + if (lookahead == '>') ADVANCE(463); END_STATE(); case 452: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'E') ADVANCE(579); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 453: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'E') ADVANCE(440); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 454: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'E') ADVANCE(624); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '>') ADVANCE(504); END_STATE(); case 455: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'E') ADVANCE(500); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 456: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'E') ADVANCE(589); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(461); + if (lookahead == '=') ADVANCE(454); END_STATE(); case 457: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'E') ADVANCE(595); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(461); + if (lookahead == '=') ADVANCE(453); END_STATE(); case 458: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'E') ADVANCE(524); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(460); + if (lookahead == '=') ADVANCE(454); END_STATE(); case 459: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'E') ADVANCE(566); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(460); + if (lookahead == '=') ADVANCE(453); END_STATE(); case 460: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'E') ADVANCE(625); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 461: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'F') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(499); END_STATE(); case 462: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'F') ADVANCE(621); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 463: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'F') ADVANCE(486); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(500); END_STATE(); case 464: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'G') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 465: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'G') ADVANCE(321); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 466: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'G') ADVANCE(322); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); case 467: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'G') ADVANCE(482); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); case 468: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'G') ADVANCE(522); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 469: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'H') ADVANCE(406); - if (lookahead == 'S') ADVANCE(594); - if (lookahead == 'T') ADVANCE(576); - if (lookahead == 'W') ADVANCE(576); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 470: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'H') ADVANCE(406); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 471: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'H') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(466); END_STATE(); case 472: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'H') ADVANCE(510); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(466); + if (lookahead == ']') ADVANCE(1171); END_STATE(); case 473: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'H') ADVANCE(415); - if (lookahead == 'L') ADVANCE(544); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == ']') ADVANCE(1171); END_STATE(); case 474: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'H') ADVANCE(415); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 475: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'H') ADVANCE(549); - if (lookahead == 'I') ADVANCE(618); - if (lookahead == 'S') ADVANCE(478); - if (lookahead == 'T') ADVANCE(560); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 476: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'H') ADVANCE(549); - if (lookahead == 'N') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(447); END_STATE(); case 477: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'H') ADVANCE(549); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == '1') ADVANCE(567); + if (lookahead == '3') ADVANCE(564); + if (lookahead == '6') ADVANCE(566); + if (lookahead == '8') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(723); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 478: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'I') ADVANCE(618); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == '3') ADVANCE(564); + if (lookahead == '6') ADVANCE(566); + if (lookahead == 'L') ADVANCE(718); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(723); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 479: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'I') ADVANCE(458); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == '3') ADVANCE(564); + if (lookahead == '6') ADVANCE(566); + if (lookahead == 'L') ADVANCE(718); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 480: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'I') ADVANCE(435); - if (lookahead == 'R') ADVANCE(435); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'E') ADVANCE(577); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 481: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'I') ADVANCE(435); - if (lookahead == 'T') ADVANCE(616); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'L') ADVANCE(660); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 482: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'I') ADVANCE(435); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 483: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'I') ADVANCE(592); - if (lookahead == 'R') ADVANCE(606); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(828); + if (lookahead == '3') ADVANCE(823); + if (lookahead == '6') ADVANCE(826); + if (lookahead == '8') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(1009); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 484: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'I') ADVANCE(433); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_primitive_type); + ADVANCE_MAP( + '1', 829, + '3', 824, + '6', 827, + '8', 1078, + '\\', 286, + '_', 1105, + 'm', 1093, + 'p', 1144, + ); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 485: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'I') ADVANCE(502); - if (lookahead == 'O') ADVANCE(520); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(829); + if (lookahead == '3') ADVANCE(824); + if (lookahead == '6') ADVANCE(827); + if (lookahead == '8') ADVANCE(1078); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'p') ADVANCE(1144); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 486: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'I') ADVANCE(502); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '3') ADVANCE(823); + if (lookahead == '6') ADVANCE(826); + if (lookahead == 'L') ADVANCE(999); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(1009); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 487: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'I') ADVANCE(468); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '3') ADVANCE(823); + if (lookahead == '6') ADVANCE(826); + if (lookahead == 'L') ADVANCE(999); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 488: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'I') ADVANCE(603); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == 'E') ADVANCE(842); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 489: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'I') ADVANCE(526); - if (lookahead == 'N') ADVANCE(435); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == 'L') ADVANCE(941); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 490: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'I') ADVANCE(523); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 491: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'I') ADVANCE(519); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 492: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'I') ADVANCE(536); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(465); END_STATE(); case 493: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'I') ADVANCE(432); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 494: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'I') ADVANCE(578); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 495: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'J') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 496: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'K') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 497: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'L') ADVANCE(583); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 498: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'L') ADVANCE(462); - if (lookahead == 'N') ADVANCE(437); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 499: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'L') ADVANCE(462); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 500: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'L') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 501: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'L') ADVANCE(323); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 502: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'L') ADVANCE(442); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 503: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'L') ADVANCE(537); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 504: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'L') ADVANCE(590); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); case 505: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'L') ADVANCE(456); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 506: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'L') ADVANCE(550); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 507: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'L') ADVANCE(554); - if (lookahead == 'N') ADVANCE(610); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '*') ADVANCE(511); + if (lookahead == '.') ADVANCE(266); END_STATE(); case 508: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'M') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '*') ADVANCE(511); + if (lookahead == '.') ADVANCE(266); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); END_STATE(); case 509: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'M') ADVANCE(403); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(266); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); END_STATE(); case 510: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'M') ADVANCE(457); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); END_STATE(); case 511: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'N') ADVANCE(437); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_DOT_STAR); END_STATE(); case 512: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'N') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 513: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'N') ADVANCE(467); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_DASH_GT); + if (lookahead == '*') ADVANCE(1169); END_STATE(); case 514: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'N') ADVANCE(591); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_number_literal); END_STATE(); case 515: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'N') ADVANCE(472); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 319, + 'B', 285, + 'b', 303, + 'E', 314, + 'e', 314, + 'F', 522, + 'f', 522, + 'L', 514, + 'l', 514, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); END_STATE(); case 516: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'N') ADVANCE(465); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 317, + '.', 523, + 'L', 524, + 'l', 527, + 'B', 316, + 'b', 316, + 'E', 314, + 'e', 314, + 'U', 526, + 'u', 526, + 'X', 267, + 'x', 267, + 'Z', 529, + 'z', 529, + '8', 252, + '9', 252, + ); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(517); END_STATE(); case 517: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'N') ADVANCE(604); - if (lookahead == 'T') ADVANCE(404); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 317, + '.', 523, + 'L', 524, + 'l', 527, + 'E', 314, + 'e', 314, + 'U', 526, + 'u', 526, + 'Z', 529, + 'z', 529, + '8', 252, + '9', 252, + ); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(517); END_STATE(); case 518: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'N') ADVANCE(466); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 316, + 'L', 524, + 'l', 527, + 'U', 526, + 'u', 526, + 'Z', 529, + 'z', 529, + '0', 518, + '1', 518, + ); END_STATE(); case 519: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'N') ADVANCE(464); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 318, + '.', 523, + 'L', 524, + 'l', 527, + 'E', 314, + 'e', 314, + 'U', 526, + 'u', 526, + 'Z', 529, + 'z', 529, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(519); END_STATE(); case 520: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'N') ADVANCE(590); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(321); + if (lookahead == 'B') ADVANCE(285); + if (lookahead == 'b') ADVANCE(303); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(522); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(514); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(520); END_STATE(); case 521: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'N') ADVANCE(585); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 323, + '.', 315, + 'L', 524, + 'l', 527, + 'P', 314, + 'p', 314, + 'U', 526, + 'u', 526, + 'Z', 529, + 'z', 529, + ); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(521); END_STATE(); case 522: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'N') ADVANCE(448); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '1') ADVANCE(271); + if (lookahead == '3') ADVANCE(270); + if (lookahead == '6') ADVANCE(272); END_STATE(); case 523: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'N') ADVANCE(598); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + 'B', 285, + 'b', 303, + 'E', 314, + 'e', 314, + 'F', 522, + 'f', 522, + 'L', 514, + 'l', 514, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); END_STATE(); case 524: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'N') ADVANCE(597); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'L') ADVANCE(529); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(514); END_STATE(); case 525: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'N') ADVANCE(428); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'L') ADVANCE(514); END_STATE(); case 526: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'N') ADVANCE(584); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'L') ADVANCE(525); + if (lookahead == 'l') ADVANCE(528); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(514); END_STATE(); case 527: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(506); - if (lookahead == 'S') ADVANCE(594); - if (lookahead == 'V') ADVANCE(542); - if (lookahead == 'W') ADVANCE(576); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(514); END_STATE(); case 528: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(508); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'l') ADVANCE(514); END_STATE(); case 529: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(507); - if (lookahead == 'U') ADVANCE(570); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(514); END_STATE(); case 530: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(555); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_L_SQUOTE); END_STATE(); case 531: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(496); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_u_SQUOTE); END_STATE(); case 532: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(421); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_U_SQUOTE); END_STATE(); case 533: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(538); - if (lookahead == 'Y') ADVANCE(593); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_u8_SQUOTE); END_STATE(); case 534: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(480); - if (lookahead == 'S') ADVANCE(594); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 535: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(434); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(aux_sym_char_literal_token1); END_STATE(); case 536: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(420); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '\n') ADVANCE(550); + if (lookahead == '\r') ADVANCE(549); + if (lookahead == 'U') ADVANCE(340); + if (lookahead == 'u') ADVANCE(332); + if (lookahead == 'x') ADVANCE(326); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(552); + if (lookahead != 0) ADVANCE(549); END_STATE(); case 537: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(407); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '*') ADVANCE(262); + if (lookahead == '/') ADVANCE(1160); END_STATE(); case 538: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(501); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '\\') ADVANCE(112); END_STATE(); case 539: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(516); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_L_DQUOTE); END_STATE(); case 540: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(563); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_u_DQUOTE); END_STATE(); case 541: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(560); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_U_DQUOTE); END_STATE(); case 542: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(482); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_u8_DQUOTE); END_STATE(); case 543: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(565); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 544: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(427); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); - END_STATE(); - case 545: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(441); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(546); + if (lookahead == '/') ADVANCE(548); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(548); + END_STATE(); + case 545: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(545); + if (lookahead == '/') ADVANCE(548); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(546); END_STATE(); case 546: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(512); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(545); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(546); END_STATE(); case 547: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(500); + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '/') ADVANCE(544); if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + (0x0b <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(547); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '"' && + lookahead != '\\') ADVANCE(548); END_STATE(); case 548: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(518); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(548); END_STATE(); case 549: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(568); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 550: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(572); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\\') ADVANCE(112); END_STATE(); case 551: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(531); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(549); END_STATE(); case 552: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(519); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(551); END_STATE(); case 553: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(547); - if (lookahead == 'Y') ADVANCE(593); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(549); END_STATE(); case 554: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'O') ADVANCE(571); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(553); END_STATE(); case 555: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'P') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(554); END_STATE(); case 556: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'P') ADVANCE(442); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_system_lib_string); END_STATE(); case 557: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'P') ADVANCE(594); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_system_lib_string); + if (lookahead == '>') ADVANCE(556); + if (lookahead == '\\') ADVANCE(284); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(283); END_STATE(); case 558: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'P') ADVANCE(482); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_true); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 559: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'P') ADVANCE(418); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_true); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 560: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'R') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ACCEPT_TOKEN(sym_false); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 561: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'R') ADVANCE(611); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ACCEPT_TOKEN(sym_false); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 562: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'R') ADVANCE(615); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == '"') ADVANCE(1165); + if (lookahead == 'E') ADVANCE(745); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 563: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'R') ADVANCE(435); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == '"') ADVANCE(1167); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 564: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'R') ADVANCE(558); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == '2') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 565: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'R') ADVANCE(436); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == '3') ADVANCE(564); + if (lookahead == '6') ADVANCE(566); + if (lookahead == 'S') ADVANCE(653); + if (lookahead == 'U') ADVANCE(687); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 566: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'R') ADVANCE(620); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == '4') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 567: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'R') ADVANCE(426); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == '6') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 568: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'R') ADVANCE(590); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'A') ADVANCE(674); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 569: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'R') ADVANCE(401); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'A') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 570: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'R') ADVANCE(588); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'A') ADVANCE(721); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 571: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'R') ADVANCE(580); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'A') ADVANCE(629); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 572: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'R') ADVANCE(573); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'A') ADVANCE(664); + if (lookahead == 'K') ADVANCE(614); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 573: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'R') ADVANCE(450); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'A') ADVANCE(726); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 574: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'R') ADVANCE(491); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'A') ADVANCE(756); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 575: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'S') ADVANCE(496); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'A') ADVANCE(671); + if (lookahead == 'E') ADVANCE(678); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 576: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'S') ADVANCE(594); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'A') ADVANCE(665); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 577: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'S') ADVANCE(471); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'A') ADVANCE(678); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 578: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'S') ADVANCE(590); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'A') ADVANCE(666); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 579: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'S') ADVANCE(608); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ADVANCE_MAP( + '\n', 1183, + 'A', 735, + 'B', 719, + 'C', 693, + 'D', 779, + 'H', 582, + 'I', 686, + 'L', 718, + 'S', 760, + 'T', 742, + 'W', 700, + '\\', 286, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('E' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 580: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'S') ADVANCE(559); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'A') ADVANCE(735); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 581: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'S') ADVANCE(602); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'A') ADVANCE(762); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 582: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'S') ADVANCE(623); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'A') ADVANCE(677); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 583: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'S') ADVANCE(445); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'A') ADVANCE(766); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 584: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'S') ADVANCE(596); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'A') ADVANCE(691); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 585: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'S') ADVANCE(487); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'A') ADVANCE(595); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 586: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'S') ADVANCE(601); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'B') ADVANCE(780); + if (lookahead == 'C') ADVANCE(636); + if (lookahead == 'S') ADVANCE(760); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 587: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'S') ADVANCE(599); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'B') ADVANCE(661); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 588: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'S') ADVANCE(541); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'B') ADVANCE(578); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 589: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'T') ADVANCE(593); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'C') ADVANCE(636); + if (lookahead == 'H') ADVANCE(576); + if (lookahead == 'I') ADVANCE(680); + if (lookahead == 'L') ADVANCE(714); + if (lookahead == 'S') ADVANCE(643); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 590: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'T') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'C') ADVANCE(636); + if (lookahead == 'O') ADVANCE(729); + if (lookahead == 'S') ADVANCE(760); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 591: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'T') ADVANCE(320); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'C') ADVANCE(597); + if (lookahead == 'L') ADVANCE(628); + if (lookahead == 'N') ADVANCE(604); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 592: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'T') ADVANCE(509); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'C') ADVANCE(482); + if (lookahead == 'D') ADVANCE(619); + if (lookahead == 'E') ADVANCE(741); + if (lookahead == 'R') ADVANCE(696); + if (lookahead == 'W') ADVANCE(721); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 593: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'T') ADVANCE(442); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'C') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 594: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'T') ADVANCE(560); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'C') ADVANCE(662); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 595: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'T') ADVANCE(404); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'C') ADVANCE(609); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 596: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'T') ADVANCE(402); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'C') ADVANCE(648); + if (lookahead == 'O') ADVANCE(684); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 597: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'T') ADVANCE(562); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'C') ADVANCE(621); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 598: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'T') ADVANCE(459); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'C') ADVANCE(712); + if (lookahead == 'N') ADVANCE(747); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 599: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'T') ADVANCE(574); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'C') ADVANCE(620); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 600: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'T') ADVANCE(609); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'C') ADVANCE(711); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 601: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'T') ADVANCE(416); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'C') ADVANCE(578); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 602: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'T') ADVANCE(417); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'D') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 603: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'T') ADVANCE(541); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'D') ADVANCE(478); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 604: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'U') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'D') ADVANCE(668); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 605: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'U') ADVANCE(502); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'D') ADVANCE(771); + if (lookahead == 'N') ADVANCE(654); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 606: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'U') ADVANCE(577); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'D') ADVANCE(658); + if (lookahead == 'L') ADVANCE(698); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 607: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'U') ADVANCE(444); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'D') ADVANCE(581); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 608: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'U') ADVANCE(504); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'D') ADVANCE(626); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 609: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'U') ADVANCE(582); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'E') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 610: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'V') ADVANCE(324); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'E') ADVANCE(683); + if (lookahead == 'O') ADVANCE(605); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 611: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'V') ADVANCE(493); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'E') ADVANCE(558); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 612: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'W') ADVANCE(543); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'E') ADVANCE(560); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 613: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'W') ADVANCE(540); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'E') ADVANCE(781); + if (lookahead == 'L') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 614: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'Y') ADVANCE(593); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'E') ADVANCE(781); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 615: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'Y') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'E') ADVANCE(602); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 616: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'Y') ADVANCE(556); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'E') ADVANCE(788); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 617: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'Z') ADVANCE(325); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'E') ADVANCE(627); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Y') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 618: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == 'Z') ADVANCE(449); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'E') ADVANCE(745); + if (lookahead == 'G') ADVANCE(678); + if (lookahead == 'S') ADVANCE(733); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Y') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 619: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == '_') ADVANCE(473); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'E') ADVANCE(607); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 620: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == '_') ADVANCE(398); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'E') ADVANCE(790); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 621: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == '_') ADVANCE(557); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'E') ADVANCE(666); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 622: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == '_') ADVANCE(590); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'E') ADVANCE(755); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 623: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == '_') ADVANCE(474); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'E') ADVANCE(761); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 624: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == '_') ADVANCE(586); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'E') ADVANCE(690); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 625: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == '_') ADVANCE(587); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'E') ADVANCE(732); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 626: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'E') ADVANCE(791); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 627: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(377); - if (lookahead == '\'') ADVANCE(368); - if (lookahead == 'A') ADVANCE(513); - if (lookahead == 'C') ADVANCE(481); - if (lookahead == 'G') ADVANCE(564); - if (lookahead == 'O') ADVANCE(516); - if (lookahead == 'P') ADVANCE(412); - if (lookahead == 'R') ADVANCE(452); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'F') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 628: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(377); - if (lookahead == '\'') ADVANCE(368); - if (lookahead == 'A') ADVANCE(782); - if (lookahead == 'C') ADVANCE(750); - if (lookahead == 'G') ADVANCE(838); - if (lookahead == 'O') ADVANCE(785); - if (lookahead == 'P') ADVANCE(670); - if (lookahead == 'R') ADVANCE(721); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'F') ADVANCE(787); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 629: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(377); - if (lookahead == 'A') ADVANCE(782); - if (lookahead == 'C') ADVANCE(750); - if (lookahead == 'G') ADVANCE(838); - if (lookahead == 'O') ADVANCE(785); - if (lookahead == 'P') ADVANCE(670); - if (lookahead == 'R') ADVANCE(721); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'F') ADVANCE(652); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 630: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(377); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'G') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 631: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(379); - if (lookahead == '\'') ADVANCE(370); - if (lookahead == 'C') ADVANCE(739); - if (lookahead == 'H') ADVANCE(667); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(811); - if (lookahead == 'N') ADVANCE(753); - if (lookahead == 'S') ADVANCE(745); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'G') ADVANCE(478); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 632: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(379); - if (lookahead == '\'') ADVANCE(370); - if (lookahead == 'C') ADVANCE(470); - if (lookahead == 'H') ADVANCE(409); - if (lookahead == 'I') ADVANCE(514); - if (lookahead == 'L') ADVANCE(539); - if (lookahead == 'N') ADVANCE(484); - if (lookahead == 'S') ADVANCE(476); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'G') ADVANCE(479); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 633: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(379); - if (lookahead == 'C') ADVANCE(739); - if (lookahead == 'H') ADVANCE(667); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(811); - if (lookahead == 'N') ADVANCE(753); - if (lookahead == 'S') ADVANCE(745); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'G') ADVANCE(648); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 634: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(379); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'G') ADVANCE(688); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 635: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '\'') ADVANCE(369); - if (lookahead == '8') ADVANCE(638); - if (lookahead == 'i') ADVANCE(945); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'H') ADVANCE(573); + if (lookahead == 'S') ADVANCE(760); + if (lookahead == 'T') ADVANCE(742); + if (lookahead == 'W') ADVANCE(742); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 636: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '8') ADVANCE(639); - if (lookahead == 'i') ADVANCE(945); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'H') ADVANCE(573); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 637: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '8') ADVANCE(639); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'H') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 638: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(380); - if (lookahead == '\'') ADVANCE(371); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'H') ADVANCE(676); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 639: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(380); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'H') ADVANCE(582); + if (lookahead == 'L') ADVANCE(710); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 640: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(368); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'H') ADVANCE(582); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 641: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(370); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'H') ADVANCE(715); + if (lookahead == 'I') ADVANCE(784); + if (lookahead == 'S') ADVANCE(645); + if (lookahead == 'T') ADVANCE(726); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 642: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(369); - if (lookahead == '8') ADVANCE(643); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'H') ADVANCE(715); + if (lookahead == 'N') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 643: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(371); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'H') ADVANCE(715); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 644: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(652); - if (lookahead == '3') ADVANCE(647); - if (lookahead == '6') ADVANCE(650); - if (lookahead == '8') ADVANCE(899); - if (lookahead == '_') ADVANCE(925); - if (lookahead == 'm') ADVANCE(913); - if (lookahead == 'p') ADVANCE(964); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'I') ADVANCE(624); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 645: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(652); - if (lookahead == '3') ADVANCE(647); - if (lookahead == '6') ADVANCE(650); - if (lookahead == '8') ADVANCE(899); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'I') ADVANCE(784); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 646: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(333); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'I') ADVANCE(602); + if (lookahead == 'R') ADVANCE(602); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 647: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(899); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'I') ADVANCE(602); + if (lookahead == 'T') ADVANCE(782); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 648: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '3') ADVANCE(646); - if (lookahead == '6') ADVANCE(649); - if (lookahead == 'S') ADVANCE(756); - if (lookahead == 'U') ADVANCE(791); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'I') ADVANCE(602); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 649: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '4') ADVANCE(333); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'I') ADVANCE(759); + if (lookahead == 'R') ADVANCE(772); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 650: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '4') ADVANCE(899); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'I') ADVANCE(600); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 651: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '6') ADVANCE(333); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'I') ADVANCE(668); + if (lookahead == 'O') ADVANCE(686); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 652: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '6') ADVANCE(899); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'I') ADVANCE(668); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 653: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(690); - if (lookahead == 'B') ADVANCE(752); - if (lookahead == 'C') ADVANCE(799); - if (lookahead == 'D') ADVANCE(691); - if (lookahead == 'E') ADVANCE(784); - if (lookahead == 'F') ADVANCE(754); - if (lookahead == 'G') ADVANCE(708); - if (lookahead == 'H') ADVANCE(824); - if (lookahead == 'I') ADVANCE(700); - if (lookahead == 'K') ADVANCE(715); - if (lookahead == 'L') ADVANCE(804); - if (lookahead == 'M') ADVANCE(712); - if (lookahead == 'P') ADVANCE(666); - if (lookahead == 'R') ADVANCE(720); - if (lookahead == 'S') ADVANCE(893); - if (lookahead == 'W') ADVANCE(757); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'I') ADVANCE(634); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('J' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 654: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(777); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'I') ADVANCE(769); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 655: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(333); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'I') ADVANCE(692); + if (lookahead == 'N') ADVANCE(602); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 656: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(828); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'I') ADVANCE(689); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 657: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(424); - if (lookahead == 'B') ADVANCE(483); - if (lookahead == 'C') ADVANCE(529); - if (lookahead == 'D') ADVANCE(425); - if (lookahead == 'E') ADVANCE(515); - if (lookahead == 'F') ADVANCE(485); - if (lookahead == 'G') ADVANCE(439); - if (lookahead == 'H') ADVANCE(551); - if (lookahead == 'I') ADVANCE(431); - if (lookahead == 'K') ADVANCE(446); - if (lookahead == 'L') ADVANCE(535); - if (lookahead == 'M') ADVANCE(443); - if (lookahead == 'P') ADVANCE(408); - if (lookahead == 'R') ADVANCE(451); - if (lookahead == 'S') ADVANCE(617); - if (lookahead == 'W') ADVANCE(489); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'I') ADVANCE(685); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('J' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 658: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(766); - if (lookahead == 'L') ADVANCE(808); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'I') ADVANCE(702); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 659: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(732); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'I') ADVANCE(599); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 660: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(767); - if (lookahead == 'K') ADVANCE(716); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'I') ADVANCE(744); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 661: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(497); - if (lookahead == 'L') ADVANCE(537); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'J') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 662: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(782); - if (lookahead == 'C') ADVANCE(750); - if (lookahead == 'G') ADVANCE(838); - if (lookahead == 'O') ADVANCE(785); - if (lookahead == 'P') ADVANCE(670); - if (lookahead == 'R') ADVANCE(721); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'K') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 663: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(834); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'L') ADVANCE(749); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 664: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(781); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'L') ADVANCE(628); + if (lookahead == 'N') ADVANCE(604); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 665: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(864); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'L') ADVANCE(628); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 666: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(774); - if (lookahead == 'E') ADVANCE(781); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'L') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 667: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(768); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'L') ADVANCE(480); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 668: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(769); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'L') ADVANCE(609); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 669: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(780); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'L') ADVANCE(703); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 670: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(842); - if (lookahead == 'B') ADVANCE(825); - if (lookahead == 'C') ADVANCE(797); - if (lookahead == 'D') ADVANCE(888); - if (lookahead == 'H') ADVANCE(669); - if (lookahead == 'I') ADVANCE(790); - if (lookahead == 'L') ADVANCE(821); - if (lookahead == 'S') ADVANCE(868); - if (lookahead == 'T') ADVANCE(850); - if (lookahead == 'W') ADVANCE(803); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'L') ADVANCE(756); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('E' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 671: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(842); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'L') ADVANCE(622); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 672: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(870); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'L') ADVANCE(716); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 673: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(795); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'L') ADVANCE(720); + if (lookahead == 'N') ADVANCE(776); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 674: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(874); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'M') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 675: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(697); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'M') ADVANCE(570); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 676: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(807); - if (lookahead == 'C') ADVANCE(738); - if (lookahead == 'D') ADVANCE(887); - if (lookahead == 'F') ADVANCE(772); - if (lookahead == 'H') ADVANCE(660); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(698); - if (lookahead == 'O') ADVANCE(762); - if (lookahead == 'S') ADVANCE(744); - if (lookahead == 'T') ADVANCE(678); - if (lookahead == 'U') ADVANCE(686); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(688); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'M') ADVANCE(623); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 677: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(890); - if (lookahead == 'C') ADVANCE(739); - if (lookahead == 'R') ADVANCE(881); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'N') ADVANCE(604); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 678: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(890); - if (lookahead == 'C') ADVANCE(739); - if (lookahead == 'S') ADVANCE(868); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'N') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 679: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(890); - if (lookahead == 'C') ADVANCE(739); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'N') ADVANCE(633); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 680: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(764); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'N') ADVANCE(757); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 681: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(533); - if (lookahead == 'C') ADVANCE(469); - if (lookahead == 'D') ADVANCE(612); - if (lookahead == 'F') ADVANCE(503); - if (lookahead == 'H') ADVANCE(405); - if (lookahead == 'I') ADVANCE(514); - if (lookahead == 'L') ADVANCE(429); - if (lookahead == 'O') ADVANCE(490); - if (lookahead == 'S') ADVANCE(475); - if (lookahead == 'T') ADVANCE(419); - if (lookahead == 'U') ADVANCE(422); - if (lookahead == 'V') ADVANCE(542); - if (lookahead == 'W') ADVANCE(423); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'N') ADVANCE(638); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 682: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(614); - if (lookahead == 'C') ADVANCE(470); - if (lookahead == 'R') ADVANCE(607); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'N') ADVANCE(631); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 683: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B') ADVANCE(668); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'N') ADVANCE(770); + if (lookahead == 'T') ADVANCE(571); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 684: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(739); - if (lookahead == 'H') ADVANCE(663); - if (lookahead == 'O') ADVANCE(775); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'N') ADVANCE(632); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 685: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(739); - if (lookahead == 'H') ADVANCE(667); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(811); - if (lookahead == 'N') ADVANCE(753); - if (lookahead == 'S') ADVANCE(745); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'N') ADVANCE(630); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 686: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(739); - if (lookahead == 'H') ADVANCE(667); - if (lookahead == 'I') ADVANCE(783); - if (lookahead == 'L') ADVANCE(819); - if (lookahead == 'S') ADVANCE(746); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'N') ADVANCE(756); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 687: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(739); - if (lookahead == 'O') ADVANCE(837); - if (lookahead == 'P') ADVANCE(671); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'N') ADVANCE(751); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 688: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(739); - if (lookahead == 'O') ADVANCE(837); - if (lookahead == 'S') ADVANCE(868); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'N') ADVANCE(615); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 689: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(895); - if (lookahead == 'E') ADVANCE(835); - if (lookahead == 'H') ADVANCE(822); - if (lookahead == 'I') ADVANCE(894); - if (lookahead == 'S') ADVANCE(747); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'N') ADVANCE(763); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 690: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(699); - if (lookahead == 'L') ADVANCE(731); - if (lookahead == 'N') ADVANCE(706); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 691: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(333); - if (lookahead == 'D') ADVANCE(722); - if (lookahead == 'E') ADVANCE(849); - if (lookahead == 'R') ADVANCE(800); - if (lookahead == 'W') ADVANCE(828); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'N') ADVANCE(595); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 692: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(333); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'N') ADVANCE(750); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 693: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(765); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(672); + if (lookahead == 'S') ADVANCE(760); + if (lookahead == 'V') ADVANCE(708); + if (lookahead == 'W') ADVANCE(742); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 694: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(470); - if (lookahead == 'H') ADVANCE(406); - if (lookahead == 'O') ADVANCE(506); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(674); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 695: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(470); - if (lookahead == 'O') ADVANCE(563); - if (lookahead == 'P') ADVANCE(413); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(673); + if (lookahead == 'U') ADVANCE(736); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 696: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(619); - if (lookahead == 'E') ADVANCE(561); - if (lookahead == 'H') ADVANCE(549); - if (lookahead == 'I') ADVANCE(618); - if (lookahead == 'S') ADVANCE(478); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(721); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 697: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(711); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(662); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 698: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(751); - if (lookahead == 'O') ADVANCE(788); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(588); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 699: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(723); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(704); + if (lookahead == 'Y') ADVANCE(758); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 700: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(813); - if (lookahead == 'N') ADVANCE(855); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(646); + if (lookahead == 'S') ADVANCE(760); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 701: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(724); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(601); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 702: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(817); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(587); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 703: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(668); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(574); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 704: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(333); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(667); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 705: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(329); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(682); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 706: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(771); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(729); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 707: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(879); - if (lookahead == 'N') ADVANCE(758); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(726); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 708: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(760); - if (lookahead == 'L') ADVANCE(802); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(648); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 709: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(672); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(731); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 710: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(729); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(594); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 711: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(333); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(608); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 712: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(787); - if (lookahead == 'O') ADVANCE(707); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(678); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 713: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(394); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(666); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 714: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(396); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(684); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 715: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(891); - if (lookahead == 'L') ADVANCE(333); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(734); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 716: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(891); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(738); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 717: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(704); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(697); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 718: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(730); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(685); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 719: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(900); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(713); + if (lookahead == 'Y') ADVANCE(758); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 720: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(853); - if (lookahead == 'G') ADVANCE(781); - if (lookahead == 'S') ADVANCE(840); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(737); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 721: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(853); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'P') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 722: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(709); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'P') ADVANCE(609); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 723: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(769); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'P') ADVANCE(760); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 724: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(903); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'P') ADVANCE(648); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 725: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(863); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'P') ADVANCE(585); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 726: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(869); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'R') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 727: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(843); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'R') ADVANCE(777); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 728: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(794); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'R') ADVANCE(781); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 729: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(904); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'R') ADVANCE(602); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 730: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F') ADVANCE(333); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'R') ADVANCE(724); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 731: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F') ADVANCE(897); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'R') ADVANCE(603); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 732: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F') ADVANCE(755); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'R') ADVANCE(786); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 733: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G') ADVANCE(333); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'R') ADVANCE(593); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 734: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G') ADVANCE(329); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'R') ADVANCE(756); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 735: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G') ADVANCE(330); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'R') ADVANCE(568); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 736: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G') ADVANCE(751); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'R') ADVANCE(754); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 737: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G') ADVANCE(792); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'R') ADVANCE(746); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 738: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H') ADVANCE(663); - if (lookahead == 'S') ADVANCE(868); - if (lookahead == 'T') ADVANCE(850); - if (lookahead == 'W') ADVANCE(850); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'R') ADVANCE(739); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 739: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H') ADVANCE(663); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'R') ADVANCE(617); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 740: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H') ADVANCE(333); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'R') ADVANCE(657); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 741: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H') ADVANCE(779); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'S') ADVANCE(662); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 742: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H') ADVANCE(669); - if (lookahead == 'L') ADVANCE(816); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'S') ADVANCE(760); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 743: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H') ADVANCE(669); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'S') ADVANCE(637); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 744: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H') ADVANCE(822); - if (lookahead == 'I') ADVANCE(894); - if (lookahead == 'S') ADVANCE(747); - if (lookahead == 'T') ADVANCE(834); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'S') ADVANCE(756); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 745: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H') ADVANCE(822); - if (lookahead == 'N') ADVANCE(333); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'S') ADVANCE(774); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 746: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H') ADVANCE(822); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'S') ADVANCE(725); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 747: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(894); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'S') ADVANCE(768); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 748: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(728); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'S') ADVANCE(789); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 749: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(704); - if (lookahead == 'R') ADVANCE(704); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'S') ADVANCE(612); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 750: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(704); - if (lookahead == 'T') ADVANCE(892); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'S') ADVANCE(762); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 751: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(704); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'S') ADVANCE(653); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 752: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(866); - if (lookahead == 'R') ADVANCE(880); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'S') ADVANCE(767); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 753: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(702); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'S') ADVANCE(765); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 754: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(771); - if (lookahead == 'O') ADVANCE(790); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'S') ADVANCE(707); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 755: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(771); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'T') ADVANCE(758); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 756: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(737); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'T') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 757: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(796); - if (lookahead == 'N') ADVANCE(704); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'T') ADVANCE(477); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 758: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(877); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'T') ADVANCE(609); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 759: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(789); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'T') ADVANCE(675); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 760: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(805); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'T') ADVANCE(726); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 761: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(701); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'T') ADVANCE(571); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 762: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(793); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'T') ADVANCE(569); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 763: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(852); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'T') ADVANCE(625); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 764: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'J') ADVANCE(333); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'T') ADVANCE(728); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 765: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K') ADVANCE(333); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'T') ADVANCE(740); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 766: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(856); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'T') ADVANCE(775); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 767: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(731); - if (lookahead == 'N') ADVANCE(706); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'T') ADVANCE(583); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 768: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(731); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'T') ADVANCE(584); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 769: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(333); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'T') ADVANCE(707); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 770: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(331); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'U') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 771: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(711); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'U') ADVANCE(668); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 772: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(808); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'U') ADVANCE(743); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 773: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(864); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'U') ADVANCE(611); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 774: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(725); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'U') ADVANCE(670); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 775: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(823); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'U') ADVANCE(748); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 776: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(826); - if (lookahead == 'N') ADVANCE(884); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'V') ADVANCE(481); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 777: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M') ADVANCE(333); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'V') ADVANCE(659); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 778: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M') ADVANCE(656); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'W') ADVANCE(709); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 779: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M') ADVANCE(726); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'W') ADVANCE(706); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 780: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(706); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'Y') ADVANCE(758); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 781: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(333); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'Y') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 782: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(736); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'Y') ADVANCE(722); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 783: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(865); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'Z') ADVANCE(482); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Y') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 784: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(741); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == 'Z') ADVANCE(616); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Y') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 785: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(734); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(639); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 786: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(591); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(565); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 787: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(878); - if (lookahead == 'T') ADVANCE(659); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(723); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 788: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(735); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(756); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 789: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(733); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(640); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 790: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(864); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(752); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 791: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(859); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(753); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 792: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(717); + if (lookahead == '\n') ADVANCE(1183); + if (lookahead == '\\') ADVANCE(286); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 793: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(872); + ADVANCE_MAP( + '"', 539, + '\'', 530, + 'A', 679, + 'C', 647, + 'G', 730, + 'O', 682, + 'P', 579, + 'R', 562, + '\\', 286, + ); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 794: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(871); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ADVANCE_MAP( + '"', 539, + '\'', 530, + 'A', 960, + 'C', 928, + 'G', 1017, + 'O', 963, + 'P', 848, + 'R', 809, + '\\', 286, + ); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 795: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(697); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ADVANCE_MAP( + '"', 539, + 'A', 960, + 'C', 928, + 'G', 1017, + 'O', 963, + 'P', 848, + 'R', 899, + '\\', 286, + ); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 796: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(858); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '"') ADVANCE(539); + if (lookahead == 'R') ADVANCE(810); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 797: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(775); - if (lookahead == 'S') ADVANCE(868); - if (lookahead == 'V') ADVANCE(814); - if (lookahead == 'W') ADVANCE(850); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '"') ADVANCE(539); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 798: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(777); + if (lookahead == '"') ADVANCE(1164); + if (lookahead == '\\') ADVANCE(286); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 799: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(776); - if (lookahead == 'U') ADVANCE(844); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '"') ADVANCE(1164); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 800: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(828); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ADVANCE_MAP( + '"', 541, + '\'', 532, + 'C', 917, + 'H', 845, + 'I', 961, + 'L', 989, + 'N', 931, + 'R', 811, + 'S', 923, + '\\', 286, + ); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 801: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(765); + ADVANCE_MAP( + '"', 541, + '\'', 532, + 'C', 636, + 'H', 576, + 'I', 680, + 'L', 705, + 'N', 650, + 'R', 563, + 'S', 642, + '\\', 286, + ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 802: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(683); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ADVANCE_MAP( + '"', 541, + 'C', 917, + 'H', 845, + 'I', 961, + 'L', 989, + 'N', 931, + 'S', 923, + '\\', 286, + ); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 803: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(749); - if (lookahead == 'S') ADVANCE(868); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '"') ADVANCE(541); + if (lookahead == 'R') ADVANCE(811); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 804: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(703); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '"') ADVANCE(541); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 805: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(680); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '"') ADVANCE(540); + if (lookahead == '\'') ADVANCE(531); + if (lookahead == '8') ADVANCE(812); + if (lookahead == 'R') ADVANCE(815); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'i') ADVANCE(1125); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 806: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(538); - if (lookahead == 'Y') ADVANCE(593); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + if (lookahead == '"') ADVANCE(540); + if (lookahead == '8') ADVANCE(813); + if (lookahead == 'R') ADVANCE(815); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 807: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(809); - if (lookahead == 'Y') ADVANCE(867); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '"') ADVANCE(540); + if (lookahead == '8') ADVANCE(814); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'i') ADVANCE(1125); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 808: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(665); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '"') ADVANCE(540); + if (lookahead == '8') ADVANCE(814); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 809: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '"') ADVANCE(1165); + if (lookahead == 'E') ADVANCE(1032); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 810: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(837); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '"') ADVANCE(1165); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 811: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(785); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '"') ADVANCE(1167); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 812: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(834); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '"') ADVANCE(542); + if (lookahead == '\'') ADVANCE(533); + if (lookahead == 'R') ADVANCE(816); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 813: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(781); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '"') ADVANCE(542); + if (lookahead == 'R') ADVANCE(816); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 814: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(751); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '"') ADVANCE(542); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 815: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(839); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '"') ADVANCE(1166); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 816: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(693); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '"') ADVANCE(1168); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 817: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(710); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\'') ADVANCE(530); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 818: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(482); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + if (lookahead == '\'') ADVANCE(532); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 819: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(788); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\'') ADVANCE(531); + if (lookahead == '8') ADVANCE(820); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 820: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(769); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '\'') ADVANCE(533); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 821: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(789); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ADVANCE_MAP( + '1', 829, + '3', 824, + '6', 827, + '8', 1078, + '\\', 286, + '_', 1105, + 'm', 1093, + 'p', 1144, + ); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 822: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(841); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '1') ADVANCE(829); + if (lookahead == '3') ADVANCE(824); + if (lookahead == '6') ADVANCE(827); + if (lookahead == '8') ADVANCE(1078); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 823: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(846); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '2') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 824: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(801); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '2') ADVANCE(1078); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 825: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(820); - if (lookahead == 'Y') ADVANCE(867); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '3') ADVANCE(823); + if (lookahead == '6') ADVANCE(826); + if (lookahead == 'S') ADVANCE(934); + if (lookahead == 'U') ADVANCE(969); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 826: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(845); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '4') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 827: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P') ADVANCE(748); - if (lookahead == 'T') ADVANCE(798); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '4') ADVANCE(1078); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 828: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P') ADVANCE(333); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == '6') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 829: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P') ADVANCE(479); - if (lookahead == 'T') ADVANCE(528); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + if (lookahead == '6') ADVANCE(1078); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 830: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P') ADVANCE(711); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ADVANCE_MAP( + 'A', 868, + 'B', 930, + 'C', 977, + 'D', 869, + 'E', 962, + 'F', 932, + 'G', 886, + 'H', 1002, + 'I', 878, + 'K', 893, + 'L', 982, + 'M', 890, + 'P', 844, + 'R', 898, + 'S', 1072, + 'W', 935, + '\\', 286, + ); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 831: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P') ADVANCE(868); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'A') ADVANCE(955); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 832: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P') ADVANCE(751); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'A') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 833: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P') ADVANCE(675); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'A') ADVANCE(1006); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 834: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(333); + ADVANCE_MAP( + 'A', 591, + 'B', 649, + 'C', 695, + 'D', 592, + 'E', 681, + 'F', 651, + 'G', 606, + 'H', 717, + 'I', 598, + 'K', 613, + 'L', 701, + 'M', 610, + 'P', 575, + 'R', 618, + 'S', 783, + 'W', 655, + '\\', 286, + ); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('J' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 835: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(885); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'A') ADVANCE(944); + if (lookahead == 'L') ADVANCE(986); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 836: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(891); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'A') ADVANCE(944); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 837: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(704); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'A') ADVANCE(910); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 838: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'A') ADVANCE(945); + if (lookahead == 'K') ADVANCE(894); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 839: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(705); + if (lookahead == 'A') ADVANCE(663); + if (lookahead == 'L') ADVANCE(703); + if (lookahead == '\\') ADVANCE(286); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 840: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(692); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'A') ADVANCE(960); + if (lookahead == 'C') ADVANCE(928); + if (lookahead == 'G') ADVANCE(1017); + if (lookahead == 'O') ADVANCE(963); + if (lookahead == 'P') ADVANCE(848); + if (lookahead == 'R') ADVANCE(899); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 841: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(864); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'A') ADVANCE(1013); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 842: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(654); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'A') ADVANCE(959); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 843: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(896); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'A') ADVANCE(1043); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 844: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'A') ADVANCE(952); + if (lookahead == 'E') ADVANCE(959); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 845: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(854); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'A') ADVANCE(946); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 846: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(848); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'A') ADVANCE(947); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 847: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(759); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'A') ADVANCE(958); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 848: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ADVANCE_MAP( + 'A', 1021, + 'B', 1003, + 'C', 975, + 'D', 1067, + 'H', 847, + 'I', 968, + 'L', 999, + 'S', 1047, + 'T', 1029, + 'W', 981, + '\\', 286, + ); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 849: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(765); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'A') ADVANCE(1021); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 850: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(868); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'A') ADVANCE(1049); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 851: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(740); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'A') ADVANCE(973); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 852: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(864); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'A') ADVANCE(1053); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 853: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(882); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'A') ADVANCE(875); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 854: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(833); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + ADVANCE_MAP( + 'B', 985, + 'C', 916, + 'D', 1066, + 'F', 950, + 'H', 838, + 'I', 961, + 'L', 876, + 'O', 940, + 'S', 922, + 'T', 856, + 'U', 864, + 'V', 992, + 'W', 866, + '\\', 286, + ); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 855: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(876); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'B') ADVANCE(1069); + if (lookahead == 'C') ADVANCE(917); + if (lookahead == 'R') ADVANCE(1060); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 856: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(714); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'B') ADVANCE(1069); + if (lookahead == 'C') ADVANCE(917); + if (lookahead == 'S') ADVANCE(1047); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 857: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(901); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'B') ADVANCE(1069); + if (lookahead == 'C') ADVANCE(917); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 858: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(870); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'B') ADVANCE(942); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 859: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(756); + ADVANCE_MAP( + 'B', 699, + 'C', 635, + 'D', 778, + 'F', 669, + 'H', 572, + 'I', 680, + 'L', 596, + 'O', 656, + 'S', 641, + 'T', 586, + 'U', 589, + 'V', 708, + 'W', 590, + '\\', 286, + ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 860: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(875); + if (lookahead == 'B') ADVANCE(780); + if (lookahead == 'C') ADVANCE(636); + if (lookahead == 'R') ADVANCE(773); + if (lookahead == '\\') ADVANCE(286); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 861: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(873); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'B') ADVANCE(846); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 862: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(812); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'C') ADVANCE(917); + if (lookahead == 'H') ADVANCE(841); + if (lookahead == 'O') ADVANCE(953); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 863: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(867); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'C') ADVANCE(917); + if (lookahead == 'H') ADVANCE(845); + if (lookahead == 'I') ADVANCE(961); + if (lookahead == 'L') ADVANCE(989); + if (lookahead == 'N') ADVANCE(931); + if (lookahead == 'S') ADVANCE(923); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 864: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(333); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'C') ADVANCE(917); + if (lookahead == 'H') ADVANCE(845); + if (lookahead == 'I') ADVANCE(961); + if (lookahead == 'L') ADVANCE(997); + if (lookahead == 'S') ADVANCE(924); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 865: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(326); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'C') ADVANCE(917); + if (lookahead == 'O') ADVANCE(1016); + if (lookahead == 'P') ADVANCE(849); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 866: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(778); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'C') ADVANCE(917); + if (lookahead == 'O') ADVANCE(1016); + if (lookahead == 'S') ADVANCE(1047); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 867: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(711); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'C') ADVANCE(1074); + if (lookahead == 'E') ADVANCE(1014); + if (lookahead == 'H') ADVANCE(1000); + if (lookahead == 'I') ADVANCE(1073); + if (lookahead == 'S') ADVANCE(926); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 868: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(834); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'C') ADVANCE(877); + if (lookahead == 'L') ADVANCE(909); + if (lookahead == 'N') ADVANCE(884); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 869: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(659); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'C') ADVANCE(490); + if (lookahead == 'D') ADVANCE(900); + if (lookahead == 'E') ADVANCE(1028); + if (lookahead == 'R') ADVANCE(978); + if (lookahead == 'W') ADVANCE(1006); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 870: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(655); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'C') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 871: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(836); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'C') ADVANCE(943); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 872: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(727); + if (lookahead == 'C') ADVANCE(636); + if (lookahead == 'H') ADVANCE(573); + if (lookahead == 'O') ADVANCE(672); + if (lookahead == '\\') ADVANCE(286); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 873: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(847); + if (lookahead == 'C') ADVANCE(636); + if (lookahead == 'O') ADVANCE(729); + if (lookahead == 'P') ADVANCE(580); + if (lookahead == '\\') ADVANCE(286); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 874: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(883); + if (lookahead == 'C') ADVANCE(785); + if (lookahead == 'E') ADVANCE(727); + if (lookahead == 'H') ADVANCE(715); + if (lookahead == 'I') ADVANCE(784); + if (lookahead == 'S') ADVANCE(645); + if (lookahead == '\\') ADVANCE(286); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 875: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(674); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'C') ADVANCE(889); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 876: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(673); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'C') ADVANCE(929); + if (lookahead == 'O') ADVANCE(966); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 877: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(812); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'C') ADVANCE(901); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 878: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U') ADVANCE(333); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'C') ADVANCE(991); + if (lookahead == 'N') ADVANCE(1034); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 879: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U') ADVANCE(771); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'C') ADVANCE(902); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 880: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U') ADVANCE(851); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'C') ADVANCE(995); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 881: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U') ADVANCE(713); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'C') ADVANCE(846); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 882: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U') ADVANCE(773); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'D') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 883: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U') ADVANCE(857); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'D') ADVANCE(486); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 884: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V') ADVANCE(332); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'D') ADVANCE(949); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 885: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V') ADVANCE(761); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'D') ADVANCE(1058); + if (lookahead == 'N') ADVANCE(936); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 886: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W') ADVANCE(543); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + if (lookahead == 'D') ADVANCE(938); + if (lookahead == 'L') ADVANCE(980); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 887: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W') ADVANCE(815); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'D') ADVANCE(850); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 888: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W') ADVANCE(810); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'D') ADVANCE(907); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 889: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W') ADVANCE(540); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + if (lookahead == 'E') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 890: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y') ADVANCE(867); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'E') ADVANCE(965); + if (lookahead == 'O') ADVANCE(885); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 891: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y') ADVANCE(333); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'E') ADVANCE(559); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 892: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y') ADVANCE(830); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'E') ADVANCE(561); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 893: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Z') ADVANCE(333); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Y') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'E') ADVANCE(1070); + if (lookahead == 'L') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 894: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Z') ADVANCE(719); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Y') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'E') ADVANCE(1070); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 895: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(742); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'E') ADVANCE(882); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 896: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(648); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'E') ADVANCE(908); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 897: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(831); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'E') ADVANCE(1079); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 898: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(911); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'E') ADVANCE(1032); + if (lookahead == 'G') ADVANCE(959); + if (lookahead == 'S') ADVANCE(1019); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 899: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(959); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'E') ADVANCE(1032); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 900: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(864); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'E') ADVANCE(887); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 901: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(743); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'E') ADVANCE(947); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 902: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(912); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'E') ADVANCE(1082); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 903: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(860); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'E') ADVANCE(1042); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 904: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(861); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'E') ADVANCE(1048); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 905: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(939); - if (lookahead == 'l') ADVANCE(951); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'E') ADVANCE(1022); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 906: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(968); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'E') ADVANCE(972); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 907: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(958); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'E') ADVANCE(1083); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 908: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(954); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'F') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 909: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(959); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'F') ADVANCE(1076); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 910: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(956); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'F') ADVANCE(933); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 911: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(940); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'G') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 912: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(965); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'G') ADVANCE(486); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 913: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(969); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'G') ADVANCE(487); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 914: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(941); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'G') ADVANCE(929); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 915: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(899); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'G') ADVANCE(970); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 916: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(930); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'H') ADVANCE(841); + if (lookahead == 'S') ADVANCE(1047); + if (lookahead == 'T') ADVANCE(1029); + if (lookahead == 'W') ADVANCE(1029); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 917: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(333); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'H') ADVANCE(841); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 918: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(933); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'H') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 919: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(333); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'H') ADVANCE(957); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 920: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(394); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'H') ADVANCE(847); + if (lookahead == 'L') ADVANCE(994); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 921: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(396); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'H') ADVANCE(847); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 922: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(907); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'H') ADVANCE(1000); + if (lookahead == 'I') ADVANCE(1073); + if (lookahead == 'S') ADVANCE(926); + if (lookahead == 'T') ADVANCE(1013); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 923: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(899); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'H') ADVANCE(1000); + if (lookahead == 'N') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 924: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(926); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'H') ADVANCE(1000); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 925: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(907); - if (lookahead == 'l') ADVANCE(922); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'I') ADVANCE(906); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 926: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(899); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'I') ADVANCE(1073); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 927: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'g') ADVANCE(946); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'I') ADVANCE(882); + if (lookahead == 'R') ADVANCE(882); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 928: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'g') ADVANCE(902); - if (lookahead == 'z') ADVANCE(923); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(972); + if (lookahead == 'I') ADVANCE(882); + if (lookahead == 'T') ADVANCE(1071); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 929: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(908); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'I') ADVANCE(882); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 930: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(910); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'I') ADVANCE(1046); + if (lookahead == 'R') ADVANCE(1059); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 931: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(928); - if (lookahead == 's') ADVANCE(932); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'I') ADVANCE(880); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 932: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(970); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'I') ADVANCE(949); + if (lookahead == 'O') ADVANCE(968); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 933: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(924); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'I') ADVANCE(949); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 934: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(927); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'I') ADVANCE(915); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 935: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(915); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'I') ADVANCE(974); + if (lookahead == 'N') ADVANCE(882); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 936: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(917); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'I') ADVANCE(1056); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 937: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(945); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'I') ADVANCE(967); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 938: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(333); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'I') ADVANCE(983); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 939: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(957); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'I') ADVANCE(879); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 940: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(934); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'I') ADVANCE(971); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 941: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(919); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'I') ADVANCE(1031); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 942: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(951); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'J') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 943: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(935); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'K') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 944: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(960); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'L') ADVANCE(1035); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 945: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(961); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'L') ADVANCE(909); + if (lookahead == 'N') ADVANCE(884); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 946: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(899); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'L') ADVANCE(909); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 947: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(966); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'L') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 948: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(943); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'L') ADVANCE(488); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 949: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(938); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'L') ADVANCE(889); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 950: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(936); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'L') ADVANCE(986); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 951: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(909); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'L') ADVANCE(1043); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 952: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(949); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'L') ADVANCE(903); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 953: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(918); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'L') ADVANCE(1001); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 954: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(328); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'L') ADVANCE(1004); + if (lookahead == 'N') ADVANCE(1063); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 955: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(967); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'M') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 956: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(899); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'M') ADVANCE(833); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 957: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(921); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'M') ADVANCE(904); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 958: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(962); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'N') ADVANCE(884); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 959: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(333); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'N') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 960: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(327); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'N') ADVANCE(914); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 961: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(644); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'N') ADVANCE(1044); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 962: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(645); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'N') ADVANCE(919); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 963: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(953); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'N') ADVANCE(912); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 964: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(956); + if (lookahead == 'N') ADVANCE(757); + if (lookahead == '\\') ADVANCE(286); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 965: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(948); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'N') ADVANCE(1057); + if (lookahead == 'T') ADVANCE(837); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 966: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(914); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'N') ADVANCE(913); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 967: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(920); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'N') ADVANCE(911); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 968: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(898); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'N') ADVANCE(1043); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 969: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(899); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'N') ADVANCE(1038); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 970: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'z') ADVANCE(923); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(972); + if (lookahead == 'N') ADVANCE(895); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 971: ACCEPT_TOKEN(sym_identifier); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(626); + if (lookahead == 'N') ADVANCE(1050); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 972: ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(972); + if (lookahead == 'N') ADVANCE(1051); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 973: - ACCEPT_TOKEN(sym_comment); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(875); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 974: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(976); - if (lookahead == '\\') ADVANCE(257); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(976); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(1037); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 975: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(199); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(975); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(953); + if (lookahead == 'S') ADVANCE(1047); + if (lookahead == 'V') ADVANCE(992); + if (lookahead == 'W') ADVANCE(1029); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 976: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(257); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(976); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(955); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 977: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(975); - if (lookahead == '\\') ADVANCE(199); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(954); + if (lookahead == 'U') ADVANCE(1023); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 978: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(976); - if (lookahead == '\\') ADVANCE(257); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(1006); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 979: - ACCEPT_TOKEN(anon_sym_GT2); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(943); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 980: - ACCEPT_TOKEN(anon_sym_DASH_GT_STAR); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(861); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 981: - ACCEPT_TOKEN(anon_sym_LPAREN_RPAREN); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(927); + if (lookahead == 'S') ADVANCE(1047); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 982: - ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(881); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 983: - ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(858); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 984: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(377); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(704); + if (lookahead == 'Y') ADVANCE(758); + if (lookahead == '\\') ADVANCE(286); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(988); + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 985: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(379); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(988); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(987); + if (lookahead == 'Y') ADVANCE(1045); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 986: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(378); - if (lookahead == '8') ADVANCE(987); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(988); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(843); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 987: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(380); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(988); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(948); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 988: - ACCEPT_TOKEN(sym_literal_suffix); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(988); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(1016); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 989: - ACCEPT_TOKEN(sym_alone_macro); - if (lookahead == '\n') ADVANCE(989); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(963); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); case 990: - ACCEPT_TOKEN(aux_sym_alone_macro_call_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(990); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(1013); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); 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 == 'C') ADVANCE(1); - if (lookahead == 'F') ADVANCE(2); - if (lookahead == 'I') ADVANCE(3); - if (lookahead == 'J') ADVANCE(4); - if (lookahead == 'L') ADVANCE(5); - if (lookahead == 'M') ADVANCE(6); - if (lookahead == 'N') ADVANCE(7); - if (lookahead == 'P') ADVANCE(8); - if (lookahead == 'Q') ADVANCE(9); - if (lookahead == 'S') ADVANCE(10); - if (lookahead == '\\') SKIP(11) - if (lookahead == '_') ADVANCE(12); - if (lookahead == 'a') ADVANCE(13); - if (lookahead == 'b') ADVANCE(14); - if (lookahead == 'c') ADVANCE(15); - if (lookahead == 'd') ADVANCE(16); - if (lookahead == 'e') ADVANCE(17); - if (lookahead == 'f') ADVANCE(18); - if (lookahead == 'g') ADVANCE(19); - if (lookahead == 'i') ADVANCE(20); - if (lookahead == 'l') ADVANCE(21); - if (lookahead == 'm') ADVANCE(22); - if (lookahead == 'n') ADVANCE(23); - if (lookahead == 'o') ADVANCE(24); - if (lookahead == 'p') ADVANCE(25); - if (lookahead == 'r') ADVANCE(26); - if (lookahead == 's') ADVANCE(27); - if (lookahead == 't') ADVANCE(28); - if (lookahead == 'u') ADVANCE(29); - if (lookahead == 'v') ADVANCE(30); - if (lookahead == 'w') ADVANCE(31); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(0) + case 991: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(959); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 1: - if (lookahead == 'A') ADVANCE(32); + case 992: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(929); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 2: - if (lookahead == 'O') ADVANCE(33); + case 993: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(1018); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 3: - if (lookahead == 'D') ADVANCE(34); + case 994: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(871); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 4: - if (lookahead == 'S') ADVANCE(35); + case 995: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(888); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 5: - if (lookahead == 'S') ADVANCE(36); + case 996: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(648); + if (lookahead == '\\') ADVANCE(286); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 6: - if (lookahead == 'O') ADVANCE(37); + case 997: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(966); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 7: - if (lookahead == 'U') ADVANCE(38); + case 998: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(947); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 8: - if (lookahead == 'S') ADVANCE(39); + case 999: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(967); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 9: - if (lookahead == 'M') ADVANCE(40); + case 1000: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(1020); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 10: - if (lookahead == 'D') ADVANCE(41); + case 1001: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(1025); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 11: - if (lookahead == '\n') SKIP(0) - if (lookahead == '\r') SKIP(42) + case 1002: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(979); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 12: - if (lookahead == 'A') ADVANCE(43); - if (lookahead == '_') ADVANCE(44); - if (lookahead == 'u') ADVANCE(45); + case 1003: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(998); + if (lookahead == 'Y') ADVANCE(1045); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 13: - if (lookahead == 'u') ADVANCE(46); + case 1004: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O') ADVANCE(1024); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 14: - if (lookahead == 'r') ADVANCE(47); + case 1005: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P') ADVANCE(925); + if (lookahead == 'T') ADVANCE(976); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 15: - if (lookahead == 'a') ADVANCE(48); - if (lookahead == 'l') ADVANCE(49); - if (lookahead == 'o') ADVANCE(50); + case 1006: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 16: - if (lookahead == 'e') ADVANCE(51); - if (lookahead == 'o') ADVANCE(52); + case 1007: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P') ADVANCE(644); + if (lookahead == 'T') ADVANCE(694); + if (lookahead == '\\') ADVANCE(286); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 17: - if (lookahead == 'l') ADVANCE(53); - if (lookahead == 'n') ADVANCE(54); - if (lookahead == 'x') ADVANCE(55); + case 1008: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P') ADVANCE(889); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 18: - if (lookahead == 'i') ADVANCE(56); - if (lookahead == 'o') ADVANCE(57); - if (lookahead == 'r') ADVANCE(58); + case 1009: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P') ADVANCE(1047); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 19: - if (lookahead == 'o') ADVANCE(59); + case 1010: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P') ADVANCE(929); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 20: - if (lookahead == 'f') ADVANCE(60); - if (lookahead == 'n') ADVANCE(61); + case 1011: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P') ADVANCE(853); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 21: - if (lookahead == 'o') ADVANCE(62); + case 1012: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(1060); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 22: - if (lookahead == 'u') ADVANCE(63); + case 1013: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 23: - if (lookahead == 'a') ADVANCE(64); - if (lookahead == 'e') ADVANCE(65); - if (lookahead == 'o') ADVANCE(66); - if (lookahead == 'u') ADVANCE(67); + case 1014: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(1064); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 24: - if (lookahead == 'p') ADVANCE(68); - if (lookahead == 'v') ADVANCE(69); + case 1015: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(1070); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 25: - if (lookahead == 'r') ADVANCE(70); - if (lookahead == 'u') ADVANCE(71); + case 1016: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(882); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 26: - if (lookahead == 'e') ADVANCE(72); + case 1017: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(1010); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 27: - if (lookahead == 'h') ADVANCE(73); - if (lookahead == 'i') ADVANCE(74); - if (lookahead == 't') ADVANCE(75); - if (lookahead == 'w') ADVANCE(76); + case 1018: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(883); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 28: - if (lookahead == 'e') ADVANCE(77); - if (lookahead == 'h') ADVANCE(78); - if (lookahead == 'r') ADVANCE(79); - if (lookahead == 'y') ADVANCE(80); + case 1019: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(870); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 29: - if (lookahead == 'n') ADVANCE(81); - if (lookahead == 's') ADVANCE(82); + case 1020: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(1043); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 30: - if (lookahead == 'i') ADVANCE(83); - if (lookahead == 'o') ADVANCE(84); + case 1021: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(831); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 31: - if (lookahead == 'h') ADVANCE(85); + case 1022: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(1075); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 32: - if (lookahead == 'C') ADVANCE(86); + case 1023: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(1041); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 33: - if (lookahead == 'R') ADVANCE(87); + case 1024: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(1033); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 34: - if (lookahead == 'B') ADVANCE(88); + case 1025: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(1027); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 35: - if (lookahead == '_') ADVANCE(89); + case 1026: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(937); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 36: - if (lookahead == '_') ADVANCE(90); + case 1027: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(896); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 37: - if (lookahead == 'Z') ADVANCE(91); + case 1028: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S') ADVANCE(943); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 38: - if (lookahead == 'L') ADVANCE(92); + case 1029: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S') ADVANCE(1047); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 39: - if (lookahead == '_') ADVANCE(93); + case 1030: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S') ADVANCE(918); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 40: - if (lookahead == '_') ADVANCE(94); + case 1031: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S') ADVANCE(1043); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 41: - if (lookahead == 'B') ADVANCE(95); + case 1032: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S') ADVANCE(1061); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 42: - if (lookahead == '\n') SKIP(0) + case 1033: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S') ADVANCE(1011); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 43: - if (lookahead == 't') ADVANCE(96); + case 1034: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S') ADVANCE(1055); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 44: - if (lookahead == 'a') ADVANCE(97); - if (lookahead == 'b') ADVANCE(98); - if (lookahead == 'c') ADVANCE(99); - if (lookahead == 'd') ADVANCE(100); - if (lookahead == 'f') ADVANCE(101); - if (lookahead == 'r') ADVANCE(102); - if (lookahead == 's') ADVANCE(103); - if (lookahead == 't') ADVANCE(104); - if (lookahead == 'u') ADVANCE(105); - if (lookahead == 'v') ADVANCE(106); + case 1035: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S') ADVANCE(892); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 45: - if (lookahead == 'n') ADVANCE(107); + case 1036: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S') ADVANCE(1080); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 46: - if (lookahead == 't') ADVANCE(108); + case 1037: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S') ADVANCE(1049); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 47: - if (lookahead == 'e') ADVANCE(109); + case 1038: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S') ADVANCE(934); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 48: - if (lookahead == 's') ADVANCE(110); - if (lookahead == 't') ADVANCE(111); + case 1039: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S') ADVANCE(1054); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 49: - if (lookahead == 'a') ADVANCE(112); + case 1040: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S') ADVANCE(1052); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 50: - if (lookahead == '_') ADVANCE(113); - if (lookahead == 'n') ADVANCE(114); + case 1041: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S') ADVANCE(990); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 51: - if (lookahead == 'c') ADVANCE(115); - if (lookahead == 'f') ADVANCE(116); - if (lookahead == 'l') ADVANCE(117); + case 1042: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T') ADVANCE(1045); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 52: - ACCEPT_TOKEN(anon_sym_do); + case 1043: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 53: - if (lookahead == 's') ADVANCE(118); + case 1044: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T') ADVANCE(483); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 54: - if (lookahead == 'u') ADVANCE(119); + case 1045: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T') ADVANCE(889); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 55: - if (lookahead == 'p') ADVANCE(120); - if (lookahead == 't') ADVANCE(121); + case 1046: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T') ADVANCE(956); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 56: - if (lookahead == 'n') ADVANCE(122); + case 1047: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T') ADVANCE(1013); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 57: - if (lookahead == 'r') ADVANCE(123); + case 1048: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T') ADVANCE(837); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 58: - if (lookahead == 'i') ADVANCE(124); + case 1049: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T') ADVANCE(832); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 59: - if (lookahead == 't') ADVANCE(125); + case 1050: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T') ADVANCE(905); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 60: - ACCEPT_TOKEN(anon_sym_if); + case 1051: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T') ADVANCE(1015); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 61: - if (lookahead == 'l') ADVANCE(126); + case 1052: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T') ADVANCE(1026); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 62: - if (lookahead == 'n') ADVANCE(127); + case 1053: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T') ADVANCE(1062); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 63: - if (lookahead == 't') ADVANCE(128); + case 1054: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T') ADVANCE(852); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 64: - if (lookahead == 'm') ADVANCE(129); + case 1055: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T') ADVANCE(851); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 65: - if (lookahead == 'w') ADVANCE(130); + case 1056: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T') ADVANCE(990); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 66: - if (lookahead == 'e') ADVANCE(131); + case 1057: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 67: - if (lookahead == 'l') ADVANCE(132); + case 1058: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U') ADVANCE(949); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 68: - if (lookahead == 'e') ADVANCE(133); + case 1059: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U') ADVANCE(1030); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 69: - if (lookahead == 'e') ADVANCE(134); + case 1060: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U') ADVANCE(891); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 70: - if (lookahead == 'i') ADVANCE(135); - if (lookahead == 'o') ADVANCE(136); + case 1061: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U') ADVANCE(951); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 71: - if (lookahead == 'b') ADVANCE(137); + case 1062: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U') ADVANCE(1036); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 72: - if (lookahead == 'g') ADVANCE(138); - if (lookahead == 's') ADVANCE(139); - if (lookahead == 't') ADVANCE(140); + case 1063: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'V') ADVANCE(489); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 73: - if (lookahead == 'o') ADVANCE(141); + case 1064: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'V') ADVANCE(939); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 74: - if (lookahead == 'g') ADVANCE(142); - if (lookahead == 'z') ADVANCE(143); + case 1065: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'W') ADVANCE(709); + if (lookahead == '\\') ADVANCE(286); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 75: - if (lookahead == 'a') ADVANCE(144); - if (lookahead == 'r') ADVANCE(145); + case 1066: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'W') ADVANCE(993); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 76: - if (lookahead == 'i') ADVANCE(146); + case 1067: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'W') ADVANCE(988); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 77: - if (lookahead == 'm') ADVANCE(147); + case 1068: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'W') ADVANCE(706); + if (lookahead == '\\') ADVANCE(286); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 78: - if (lookahead == 'i') ADVANCE(148); - if (lookahead == 'r') ADVANCE(149); + case 1069: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y') ADVANCE(1045); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 79: - if (lookahead == 'y') ADVANCE(150); + case 1070: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 80: - if (lookahead == 'p') ADVANCE(151); + case 1071: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y') ADVANCE(1008); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 81: - if (lookahead == 'i') ADVANCE(152); - if (lookahead == 's') ADVANCE(153); + case 1072: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Z') ADVANCE(490); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 82: - if (lookahead == 'i') ADVANCE(154); + case 1073: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Z') ADVANCE(897); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 83: - if (lookahead == 'r') ADVANCE(155); + case 1074: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(920); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 84: - if (lookahead == 'l') ADVANCE(156); + case 1075: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(825); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 85: - if (lookahead == 'i') ADVANCE(157); + case 1076: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(1009); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 86: - if (lookahead == 'H') ADVANCE(158); + case 1077: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(1091); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 87: - if (lookahead == 'W') ADVANCE(159); + case 1078: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(1139); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 88: - if (lookahead == '_') ADVANCE(160); + case 1079: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(1043); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 89: - if (lookahead == 'P') ADVANCE(161); + case 1080: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(921); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 90: - if (lookahead == 'T') ADVANCE(162); + case 1081: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(1092); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 91: - if (lookahead == '_') ADVANCE(163); + case 1082: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(1039); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 92: - if (lookahead == 'L') ADVANCE(164); + case 1083: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '_') ADVANCE(1040); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 93: - if (lookahead == 'G') ADVANCE(165); + case 1084: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'a') ADVANCE(1119); + if (lookahead == 'l') ADVANCE(1131); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 94: - if (lookahead == 'N') ADVANCE(166); - if (lookahead == 'T') ADVANCE(167); - if (lookahead == 'W') ADVANCE(168); + case 1085: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'a') ADVANCE(1119); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 95: - if (lookahead == '_') ADVANCE(169); + case 1086: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'a') ADVANCE(1148); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 96: - if (lookahead == 'o') ADVANCE(170); + case 1087: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'a') ADVANCE(1138); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 97: - if (lookahead == 't') ADVANCE(171); + case 1088: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'a') ADVANCE(1134); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 98: - if (lookahead == 'a') ADVANCE(172); + case 1089: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'a') ADVANCE(1139); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 99: - if (lookahead == 'd') ADVANCE(173); - if (lookahead == 'l') ADVANCE(174); + case 1090: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'a') ADVANCE(1136); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 100: - if (lookahead == 'e') ADVANCE(175); + case 1091: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'a') ADVANCE(1120); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 101: - if (lookahead == 'a') ADVANCE(176); + case 1092: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'a') ADVANCE(1145); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 102: - if (lookahead == 'e') ADVANCE(177); + case 1093: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'a') ADVANCE(1149); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 103: - if (lookahead == 'p') ADVANCE(178); - if (lookahead == 't') ADVANCE(179); + case 1094: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'b') ADVANCE(1121); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 104: - if (lookahead == 'h') ADVANCE(180); + case 1095: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'c') ADVANCE(1078); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 105: - if (lookahead == 'n') ADVANCE(181); - if (lookahead == 'p') ADVANCE(182); + case 1096: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'c') ADVANCE(1110); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 106: - if (lookahead == 'e') ADVANCE(183); + case 1097: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'd') ADVANCE(490); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 107: - if (lookahead == 'a') ADVANCE(184); + case 1098: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'd') ADVANCE(1113); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 108: - if (lookahead == 'o') ADVANCE(185); + case 1099: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'e') ADVANCE(490); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 109: - if (lookahead == 'a') ADVANCE(186); + case 1100: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'e') ADVANCE(559); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 110: - if (lookahead == 'e') ADVANCE(187); + case 1101: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'e') ADVANCE(561); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 111: - if (lookahead == 'c') ADVANCE(188); + case 1102: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'e') ADVANCE(1087); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 112: - if (lookahead == 's') ADVANCE(189); + case 1103: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'e') ADVANCE(1078); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 113: - if (lookahead == 'a') ADVANCE(190); - if (lookahead == 'r') ADVANCE(191); - if (lookahead == 'y') ADVANCE(192); + case 1104: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'f') ADVANCE(1106); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 114: - if (lookahead == 's') ADVANCE(193); - if (lookahead == 't') ADVANCE(194); + case 1105: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'f') ADVANCE(1087); + if (lookahead == 'l') ADVANCE(1102); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 115: - if (lookahead == 'l') ADVANCE(195); + case 1106: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'f') ADVANCE(1078); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 116: - if (lookahead == 'a') ADVANCE(196); - if (lookahead == 'i') ADVANCE(197); + case 1107: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'g') ADVANCE(1126); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 117: - if (lookahead == 'e') ADVANCE(198); + case 1108: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'g') ADVANCE(1081); + if (lookahead == 'z') ADVANCE(1103); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 118: - if (lookahead == 'e') ADVANCE(199); + case 1109: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'h') ADVANCE(1088); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 119: - if (lookahead == 'm') ADVANCE(200); + case 1110: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'h') ADVANCE(1090); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 120: - if (lookahead == 'l') ADVANCE(201); + case 1111: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'i') ADVANCE(1108); + if (lookahead == 's') ADVANCE(1112); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 121: - if (lookahead == 'e') ADVANCE(202); + case 1112: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'i') ADVANCE(1150); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 122: - if (lookahead == 'a') ADVANCE(203); + case 1113: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'i') ADVANCE(1104); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 123: - ACCEPT_TOKEN(anon_sym_for); + case 1114: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'i') ADVANCE(1107); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 124: - if (lookahead == 'e') ADVANCE(204); + case 1115: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'i') ADVANCE(1095); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 125: - if (lookahead == 'o') ADVANCE(205); + case 1116: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'i') ADVANCE(1097); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 126: - if (lookahead == 'i') ADVANCE(206); + case 1117: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'i') ADVANCE(1125); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 127: - if (lookahead == 'g') ADVANCE(207); + case 1118: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'l') ADVANCE(490); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 128: - if (lookahead == 'a') ADVANCE(208); + case 1119: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'l') ADVANCE(1137); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 129: - if (lookahead == 'e') ADVANCE(209); + case 1120: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'l') ADVANCE(1114); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 130: - ACCEPT_TOKEN(anon_sym_new); + case 1121: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'l') ADVANCE(1099); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 131: - if (lookahead == 'x') ADVANCE(210); + case 1122: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'l') ADVANCE(1131); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 132: - if (lookahead == 'l') ADVANCE(211); + case 1123: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'm') ADVANCE(1115); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 133: - if (lookahead == 'r') ADVANCE(212); + case 1124: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'n') ADVANCE(1140); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 134: - if (lookahead == 'r') ADVANCE(213); + case 1125: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'n') ADVANCE(1141); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 135: - if (lookahead == 'v') ADVANCE(214); + case 1126: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'n') ADVANCE(1078); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 136: - if (lookahead == 't') ADVANCE(215); + case 1127: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'o') ADVANCE(1146); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 137: - if (lookahead == 'l') ADVANCE(216); + case 1128: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'o') ADVANCE(1123); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 138: - if (lookahead == 'i') ADVANCE(217); + case 1129: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'o') ADVANCE(1118); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 139: - if (lookahead == 't') ADVANCE(218); + case 1130: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'o') ADVANCE(1116); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 140: - if (lookahead == 'u') ADVANCE(219); + case 1131: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'o') ADVANCE(1089); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 141: - if (lookahead == 'r') ADVANCE(220); + case 1132: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'o') ADVANCE(1129); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 142: - if (lookahead == 'n') ADVANCE(221); + case 1133: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'r') ADVANCE(1098); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 143: - if (lookahead == 'e') ADVANCE(222); + case 1134: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'r') ADVANCE(485); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 144: - if (lookahead == 't') ADVANCE(223); + case 1135: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'r') ADVANCE(1147); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 145: - if (lookahead == 'u') ADVANCE(224); + case 1136: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'r') ADVANCE(1078); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 146: - if (lookahead == 't') ADVANCE(225); + case 1137: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 's') ADVANCE(1101); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 147: - if (lookahead == 'p') ADVANCE(226); + case 1138: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 's') ADVANCE(1142); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 148: - if (lookahead == 's') ADVANCE(227); + case 1139: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 't') ADVANCE(490); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 149: - if (lookahead == 'e') ADVANCE(228); - if (lookahead == 'o') ADVANCE(229); + case 1140: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 't') ADVANCE(484); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 150: - ACCEPT_TOKEN(anon_sym_try); + case 1141: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 't') ADVANCE(821); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 151: - if (lookahead == 'e') ADVANCE(230); + case 1142: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 't') ADVANCE(822); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 152: - if (lookahead == 'o') ADVANCE(231); + case 1143: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 't') ADVANCE(1133); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 153: - if (lookahead == 'i') ADVANCE(232); + case 1144: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 't') ADVANCE(1136); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 154: - if (lookahead == 'n') ADVANCE(233); + case 1145: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 't') ADVANCE(1128); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 155: - if (lookahead == 't') ADVANCE(234); + case 1146: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'u') ADVANCE(1094); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 156: - if (lookahead == 'a') ADVANCE(235); + case 1147: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'u') ADVANCE(1100); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 157: - if (lookahead == 'l') ADVANCE(236); + case 1148: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'x') ADVANCE(1077); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 158: - if (lookahead == 'E') ADVANCE(237); + case 1149: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'x') ADVANCE(1078); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 159: - if (lookahead == 'A') ADVANCE(238); + case 1150: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == 'z') ADVANCE(1103); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 160: - if (lookahead == 'T') ADVANCE(239); + case 1151: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(792); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 161: - if (lookahead == 'U') ADVANCE(240); + case 1152: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 162: - if (lookahead == 'R') ADVANCE(241); + case 1153: + ACCEPT_TOKEN(sym_comment); END_STATE(); - case 163: - if (lookahead == 'A') ADVANCE(242); - if (lookahead == 'C') ADVANCE(243); - if (lookahead == 'D') ADVANCE(244); - if (lookahead == 'F') ADVANCE(245); - if (lookahead == 'H') ADVANCE(246); - if (lookahead == 'I') ADVANCE(247); - if (lookahead == 'M') ADVANCE(248); - if (lookahead == 'N') ADVANCE(249); - if (lookahead == 'O') ADVANCE(250); - if (lookahead == 'P') ADVANCE(251); - if (lookahead == 'R') ADVANCE(252); - if (lookahead == 'S') ADVANCE(253); - if (lookahead == 'T') ADVANCE(254); - if (lookahead == 'U') ADVANCE(255); - if (lookahead == 'X') ADVANCE(256); + case 1154: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(1160); + if (lookahead == '/') ADVANCE(1157); + if (lookahead == '\\') ADVANCE(374); + if (lookahead != 0) ADVANCE(1158); END_STATE(); - case 164: - ACCEPT_TOKEN(sym_null); + case 1155: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\r') ADVANCE(1161); + if (lookahead == '\\') ADVANCE(1155); + if (lookahead != 0) ADVANCE(1160); END_STATE(); - case 165: - if (lookahead == 'E') ADVANCE(257); + case 1156: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\r') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1157); + if (lookahead == '\\') ADVANCE(1156); + if (lookahead != 0) ADVANCE(1158); END_STATE(); - case 166: - if (lookahead == 'O') ADVANCE(258); + case 1157: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '*') ADVANCE(1160); + if (lookahead == '\\') ADVANCE(369); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1158); END_STATE(); - case 167: - if (lookahead == 'R') ADVANCE(259); + case 1158: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '/') ADVANCE(1157); + if (lookahead == '\\') ADVANCE(374); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1158); END_STATE(); - case 168: - if (lookahead == 'A') ADVANCE(260); + case 1159: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '/') ADVANCE(1157); + if (lookahead == '\\') ADVANCE(374); + if (lookahead != 0) ADVANCE(1158); END_STATE(); - case 169: - if (lookahead == 'T') ADVANCE(261); + case 1160: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\\') ADVANCE(165); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1160); END_STATE(); - case 170: - if (lookahead == 'm') ADVANCE(262); + case 1161: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\\') ADVANCE(165); + if (lookahead != 0) ADVANCE(1160); END_STATE(); - case 171: - if (lookahead == 't') ADVANCE(263); + case 1162: + ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); - case 172: - if (lookahead == 's') ADVANCE(264); + case 1163: + ACCEPT_TOKEN(aux_sym_pure_virtual_clause_token1); END_STATE(); - case 173: - if (lookahead == 'e') ADVANCE(265); + case 1164: + ACCEPT_TOKEN(anon_sym_R_DQUOTE); END_STATE(); - case 174: - if (lookahead == 'r') ADVANCE(266); + case 1165: + ACCEPT_TOKEN(anon_sym_LR_DQUOTE); END_STATE(); - case 175: - if (lookahead == 'c') ADVANCE(267); + case 1166: + ACCEPT_TOKEN(anon_sym_uR_DQUOTE); END_STATE(); - case 176: - if (lookahead == 's') ADVANCE(268); + case 1167: + ACCEPT_TOKEN(anon_sym_UR_DQUOTE); END_STATE(); - case 177: - if (lookahead == 's') ADVANCE(269); + case 1168: + ACCEPT_TOKEN(anon_sym_u8R_DQUOTE); END_STATE(); - case 178: - if (lookahead == 't') ADVANCE(270); + case 1169: + ACCEPT_TOKEN(anon_sym_DASH_GT_STAR); END_STATE(); - case 179: - if (lookahead == 'd') ADVANCE(271); + case 1170: + ACCEPT_TOKEN(anon_sym_LPAREN_RPAREN); END_STATE(); - case 180: - if (lookahead == 'i') ADVANCE(272); + case 1171: + ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); END_STATE(); - case 181: - if (lookahead == 'a') ADVANCE(273); + case 1172: + ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE); END_STATE(); - case 182: - if (lookahead == 't') ADVANCE(274); + case 1173: + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(539); + if (lookahead == 'R') ADVANCE(1177); + if (lookahead == '\\') ADVANCE(286); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1182); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 183: - if (lookahead == 'c') ADVANCE(275); + case 1174: + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(1164); + if (lookahead == '\\') ADVANCE(286); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1182); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 184: - if (lookahead == 'l') ADVANCE(276); + case 1175: + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(541); + if (lookahead == 'R') ADVANCE(1178); + if (lookahead == '\\') ADVANCE(286); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1182); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 185: - ACCEPT_TOKEN(sym_auto); + case 1176: + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(540); + if (lookahead == '8') ADVANCE(1179); + if (lookahead == 'R') ADVANCE(1180); + if (lookahead == '\\') ADVANCE(286); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1182); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 186: - if (lookahead == 'k') ADVANCE(277); + case 1177: + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(1165); + if (lookahead == '\\') ADVANCE(286); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1182); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 187: - ACCEPT_TOKEN(anon_sym_case); + case 1178: + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(1167); + if (lookahead == '\\') ADVANCE(286); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1182); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 188: - if (lookahead == 'h') ADVANCE(278); + case 1179: + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(542); + if (lookahead == 'R') ADVANCE(1181); + if (lookahead == '\\') ADVANCE(286); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1182); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 189: - if (lookahead == 's') ADVANCE(279); + case 1180: + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(1166); + if (lookahead == '\\') ADVANCE(286); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1182); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 190: - if (lookahead == 'w') ADVANCE(280); + case 1181: + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(1168); + if (lookahead == '\\') ADVANCE(286); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1182); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 191: - if (lookahead == 'e') ADVANCE(281); + case 1182: + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '\\') ADVANCE(286); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1182); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(1152); END_STATE(); - case 192: - if (lookahead == 'i') ADVANCE(282); + case 1183: + ACCEPT_TOKEN(sym_alone_macro); + if (lookahead == '\n') ADVANCE(1183); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(5); END_STATE(); - case 193: - if (lookahead == 't') ADVANCE(283); + case 1184: + ACCEPT_TOKEN(aux_sym_alone_macro_call_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(1184); END_STATE(); - case 194: - if (lookahead == 'i') ADVANCE(284); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + ADVANCE_MAP( + 'C', 1, + 'F', 2, + 'I', 3, + 'J', 4, + 'L', 5, + 'M', 6, + 'N', 7, + 'P', 8, + 'Q', 9, + 'S', 10, + ); + if (lookahead == '\\') SKIP(11); + if (lookahead == '_') ADVANCE(12); + if (lookahead == 'a') ADVANCE(13); + if (lookahead == 'b') ADVANCE(14); + if (lookahead == 'c') ADVANCE(15); + if (lookahead == 'd') ADVANCE(16); + if (lookahead == 'e') ADVANCE(17); + if (lookahead == 'f') ADVANCE(18); + if (lookahead == 'g') ADVANCE(19); + if (lookahead == 'i') ADVANCE(20); + if (lookahead == 'l') ADVANCE(21); + if (lookahead == 'm') ADVANCE(22); + if (lookahead == 'n') ADVANCE(23); + if (lookahead == 'o') ADVANCE(24); + if (lookahead == 'p') ADVANCE(25); + if (lookahead == 'r') ADVANCE(26); + if (lookahead == 's') ADVANCE(27); + if (lookahead == 't') ADVANCE(28); + if (lookahead == 'u') ADVANCE(29); + if (lookahead == 'v') ADVANCE(30); + if (lookahead == 'w') ADVANCE(31); + if (lookahead == 'x') ADVANCE(32); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(0); END_STATE(); - case 195: - if (lookahead == 't') ADVANCE(285); + case 1: + if (lookahead == 'A') ADVANCE(33); END_STATE(); - case 196: - if (lookahead == 'u') ADVANCE(286); + case 2: + if (lookahead == 'O') ADVANCE(34); END_STATE(); - case 197: - if (lookahead == 'n') ADVANCE(287); + case 3: + if (lookahead == 'D') ADVANCE(35); END_STATE(); - case 198: - if (lookahead == 't') ADVANCE(288); + case 4: + if (lookahead == 'S') ADVANCE(36); END_STATE(); - case 199: - ACCEPT_TOKEN(anon_sym_else); + case 5: + if (lookahead == 'S') ADVANCE(37); END_STATE(); - case 200: - ACCEPT_TOKEN(anon_sym_enum); + case 6: + if (lookahead == 'O') ADVANCE(38); END_STATE(); - case 201: - if (lookahead == 'i') ADVANCE(289); + case 7: + if (lookahead == 'U') ADVANCE(39); END_STATE(); - case 202: - if (lookahead == 'r') ADVANCE(290); + case 8: + if (lookahead == 'S') ADVANCE(40); END_STATE(); - case 203: - if (lookahead == 'l') ADVANCE(291); + case 9: + if (lookahead == 'M') ADVANCE(41); END_STATE(); - case 204: - if (lookahead == 'n') ADVANCE(292); + case 10: + if (lookahead == 'D') ADVANCE(42); END_STATE(); - case 205: - ACCEPT_TOKEN(anon_sym_goto); + case 11: + if (lookahead == '\n') SKIP(0); + if (lookahead == '\r') SKIP(43); END_STATE(); - case 206: - if (lookahead == 'n') ADVANCE(293); + case 12: + if (lookahead == 'A') ADVANCE(44); + if (lookahead == 'G') ADVANCE(45); + if (lookahead == 'N') ADVANCE(46); + if (lookahead == '_') ADVANCE(47); + if (lookahead == 'a') ADVANCE(48); + if (lookahead == 'u') ADVANCE(49); END_STATE(); - case 207: - ACCEPT_TOKEN(anon_sym_long); + case 13: + if (lookahead == 'l') ADVANCE(50); + if (lookahead == 'n') ADVANCE(51); + if (lookahead == 's') ADVANCE(52); + if (lookahead == 'u') ADVANCE(53); END_STATE(); - case 208: - if (lookahead == 'b') ADVANCE(294); + case 14: + if (lookahead == 'i') ADVANCE(54); + if (lookahead == 'r') ADVANCE(55); END_STATE(); - case 209: - if (lookahead == 's') ADVANCE(295); + case 15: + if (lookahead == 'a') ADVANCE(56); + if (lookahead == 'l') ADVANCE(57); + if (lookahead == 'o') ADVANCE(58); END_STATE(); - case 210: - if (lookahead == 'c') ADVANCE(296); + case 16: + if (lookahead == 'e') ADVANCE(59); + if (lookahead == 'o') ADVANCE(60); END_STATE(); - case 211: - if (lookahead == 'p') ADVANCE(297); + case 17: + if (lookahead == 'l') ADVANCE(61); + if (lookahead == 'n') ADVANCE(62); + if (lookahead == 'x') ADVANCE(63); END_STATE(); - case 212: - if (lookahead == 'a') ADVANCE(298); + case 18: + if (lookahead == 'i') ADVANCE(64); + if (lookahead == 'o') ADVANCE(65); + if (lookahead == 'r') ADVANCE(66); END_STATE(); - case 213: - if (lookahead == 'r') ADVANCE(299); + case 19: + if (lookahead == 'o') ADVANCE(67); END_STATE(); - case 214: - if (lookahead == 'a') ADVANCE(300); + case 20: + if (lookahead == 'f') ADVANCE(68); + if (lookahead == 'n') ADVANCE(69); END_STATE(); - case 215: - if (lookahead == 'e') ADVANCE(301); + case 21: + if (lookahead == 'o') ADVANCE(70); END_STATE(); - case 216: - if (lookahead == 'i') ADVANCE(302); + case 22: + if (lookahead == 'u') ADVANCE(71); END_STATE(); - case 217: - if (lookahead == 's') ADVANCE(303); + case 23: + if (lookahead == 'a') ADVANCE(72); + if (lookahead == 'e') ADVANCE(73); + if (lookahead == 'o') ADVANCE(74); + if (lookahead == 'u') ADVANCE(75); END_STATE(); - case 218: - if (lookahead == 'r') ADVANCE(304); + case 24: + if (lookahead == 'f') ADVANCE(76); + if (lookahead == 'p') ADVANCE(77); + if (lookahead == 'r') ADVANCE(78); + if (lookahead == 'v') ADVANCE(79); END_STATE(); - case 219: - if (lookahead == 'r') ADVANCE(305); + case 25: + if (lookahead == 'r') ADVANCE(80); + if (lookahead == 'u') ADVANCE(81); END_STATE(); - case 220: - if (lookahead == 't') ADVANCE(306); + case 26: + if (lookahead == 'e') ADVANCE(82); END_STATE(); - case 221: - if (lookahead == 'e') ADVANCE(307); + case 27: + if (lookahead == 'h') ADVANCE(83); + if (lookahead == 'i') ADVANCE(84); + if (lookahead == 't') ADVANCE(85); + if (lookahead == 'w') ADVANCE(86); END_STATE(); - case 222: - if (lookahead == 'o') ADVANCE(308); + case 28: + if (lookahead == 'e') ADVANCE(87); + if (lookahead == 'h') ADVANCE(88); + if (lookahead == 'r') ADVANCE(89); + if (lookahead == 'y') ADVANCE(90); END_STATE(); - case 223: - if (lookahead == 'i') ADVANCE(309); + case 29: + if (lookahead == 'n') ADVANCE(91); + if (lookahead == 's') ADVANCE(92); END_STATE(); - case 224: - if (lookahead == 'c') ADVANCE(310); + case 30: + if (lookahead == 'i') ADVANCE(93); + if (lookahead == 'o') ADVANCE(94); END_STATE(); - case 225: - if (lookahead == 'c') ADVANCE(311); + case 31: + if (lookahead == 'h') ADVANCE(95); END_STATE(); - case 226: - if (lookahead == 'l') ADVANCE(312); + case 32: + if (lookahead == 'o') ADVANCE(96); END_STATE(); - case 227: - ACCEPT_TOKEN(sym_this); + case 33: + if (lookahead == 'C') ADVANCE(97); END_STATE(); - case 228: - if (lookahead == 'a') ADVANCE(313); + case 34: + if (lookahead == 'R') ADVANCE(98); END_STATE(); - case 229: - if (lookahead == 'w') ADVANCE(314); + case 35: + if (lookahead == 'B') ADVANCE(99); END_STATE(); - case 230: - if (lookahead == 'd') ADVANCE(315); - if (lookahead == 'n') ADVANCE(316); + case 36: + if (lookahead == '_') ADVANCE(100); END_STATE(); - case 231: - if (lookahead == 'n') ADVANCE(317); + case 37: + if (lookahead == '_') ADVANCE(101); END_STATE(); - case 232: - if (lookahead == 'g') ADVANCE(318); + case 38: + if (lookahead == 'Z') ADVANCE(102); END_STATE(); - case 233: - if (lookahead == 'g') ADVANCE(319); + case 39: + if (lookahead == 'L') ADVANCE(103); END_STATE(); - case 234: - if (lookahead == 'u') ADVANCE(320); + case 40: + if (lookahead == '_') ADVANCE(104); END_STATE(); - case 235: - if (lookahead == 't') ADVANCE(321); + case 41: + if (lookahead == '_') ADVANCE(105); END_STATE(); - case 236: - if (lookahead == 'e') ADVANCE(322); + case 42: + if (lookahead == 'B') ADVANCE(106); END_STATE(); - case 237: - if (lookahead == '_') ADVANCE(323); + case 43: + if (lookahead == '\n') SKIP(0); END_STATE(); - case 238: - if (lookahead == 'R') ADVANCE(324); + case 44: + if (lookahead == 'l') ADVANCE(107); + if (lookahead == 't') ADVANCE(108); END_STATE(); - case 239: - if (lookahead == 'R') ADVANCE(325); + case 45: + if (lookahead == 'e') ADVANCE(109); END_STATE(); - case 240: - if (lookahead == 'B') ADVANCE(326); + case 46: + if (lookahead == 'o') ADVANCE(110); END_STATE(); - case 241: - if (lookahead == 'Y') ADVANCE(327); + case 47: + ADVANCE_MAP( + 'a', 111, + 'b', 112, + 'c', 113, + 'd', 114, + 'e', 115, + 'f', 116, + 'i', 117, + 'l', 118, + 'r', 119, + 's', 120, + 't', 121, + 'u', 122, + 'v', 123, + ); END_STATE(); - case 242: - if (lookahead == 'L') ADVANCE(328); - if (lookahead == 'S') ADVANCE(329); + case 48: + if (lookahead == 'l') ADVANCE(124); END_STATE(); - case 243: - if (lookahead == 'A') ADVANCE(330); - if (lookahead == 'O') ADVANCE(331); + case 49: + if (lookahead == 'n') ADVANCE(125); END_STATE(); - case 244: - if (lookahead == 'E') ADVANCE(332); + case 50: + if (lookahead == 'i') ADVANCE(126); END_STATE(); - case 245: - if (lookahead == 'A') ADVANCE(333); - if (lookahead == 'O') ADVANCE(334); + case 51: + if (lookahead == 'd') ADVANCE(127); END_STATE(); - case 246: - if (lookahead == 'A') ADVANCE(335); - if (lookahead == 'E') ADVANCE(336); + case 52: + if (lookahead == 'm') ADVANCE(128); END_STATE(); - case 247: - if (lookahead == 'M') ADVANCE(337); - if (lookahead == 'N') ADVANCE(338); - if (lookahead == 'S') ADVANCE(339); + case 53: + if (lookahead == 't') ADVANCE(129); END_STATE(); - case 248: - if (lookahead == 'A') ADVANCE(340); - if (lookahead == 'U') ADVANCE(341); + case 54: + if (lookahead == 't') ADVANCE(130); END_STATE(); - case 249: - if (lookahead == 'E') ADVANCE(342); - if (lookahead == 'O') ADVANCE(343); + case 55: + if (lookahead == 'e') ADVANCE(131); END_STATE(); - case 250: - if (lookahead == 'N') ADVANCE(344); - if (lookahead == 'W') ADVANCE(345); + case 56: + if (lookahead == 's') ADVANCE(132); + if (lookahead == 't') ADVANCE(133); END_STATE(); - case 251: - if (lookahead == 'O') ADVANCE(346); - if (lookahead == 'R') ADVANCE(347); - if (lookahead == 'U') ADVANCE(348); + case 57: + if (lookahead == 'a') ADVANCE(134); END_STATE(); - case 252: - if (lookahead == 'A') ADVANCE(349); - if (lookahead == 'E') ADVANCE(350); + case 58: + if (lookahead == '_') ADVANCE(135); + if (lookahead == 'm') ADVANCE(136); + if (lookahead == 'n') ADVANCE(137); END_STATE(); - case 253: - if (lookahead == 'T') ADVANCE(351); + case 59: + if (lookahead == 'c') ADVANCE(138); + if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'l') ADVANCE(140); END_STATE(); - case 254: - if (lookahead == 'E') ADVANCE(352); - if (lookahead == 'R') ADVANCE(353); - if (lookahead == 'S') ADVANCE(354); + case 60: + ACCEPT_TOKEN(anon_sym_do); END_STATE(); - case 255: - if (lookahead == 'N') ADVANCE(355); + case 61: + if (lookahead == 's') ADVANCE(141); END_STATE(); - case 256: - if (lookahead == 'P') ADVANCE(356); + case 62: + if (lookahead == 'u') ADVANCE(142); END_STATE(); - case 257: - if (lookahead == 'T') ADVANCE(357); + case 63: + if (lookahead == 'p') ADVANCE(143); + if (lookahead == 't') ADVANCE(144); END_STATE(); - case 258: - if (lookahead == 'T') ADVANCE(358); + case 64: + if (lookahead == 'n') ADVANCE(145); END_STATE(); - case 259: - if (lookahead == 'Y') ADVANCE(359); + case 65: + if (lookahead == 'r') ADVANCE(146); END_STATE(); - case 260: - if (lookahead == 'R') ADVANCE(360); + case 66: + if (lookahead == 'i') ADVANCE(147); END_STATE(); - case 261: - if (lookahead == 'R') ADVANCE(361); + case 67: + if (lookahead == 't') ADVANCE(148); END_STATE(); - case 262: - if (lookahead == 'i') ADVANCE(362); + case 68: + ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 263: - if (lookahead == 'r') ADVANCE(363); + case 69: + if (lookahead == 'l') ADVANCE(149); END_STATE(); - case 264: - if (lookahead == 'e') ADVANCE(364); + case 70: + if (lookahead == 'n') ADVANCE(150); END_STATE(); - case 265: - if (lookahead == 'c') ADVANCE(365); + case 71: + if (lookahead == 't') ADVANCE(151); END_STATE(); - case 266: - if (lookahead == 'c') ADVANCE(366); + case 72: + if (lookahead == 'm') ADVANCE(152); END_STATE(); - case 267: - if (lookahead == 'l') ADVANCE(367); + case 73: + if (lookahead == 'w') ADVANCE(153); END_STATE(); - case 268: - if (lookahead == 't') ADVANCE(368); + case 74: + if (lookahead == 'e') ADVANCE(154); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == 't') ADVANCE(156); END_STATE(); - case 269: - if (lookahead == 't') ADVANCE(369); + case 75: + if (lookahead == 'l') ADVANCE(157); END_STATE(); - case 270: - if (lookahead == 'r') ADVANCE(370); + case 76: + if (lookahead == 'f') ADVANCE(158); END_STATE(); - case 271: - if (lookahead == 'c') ADVANCE(371); + case 77: + if (lookahead == 'e') ADVANCE(159); END_STATE(); - case 272: - if (lookahead == 's') ADVANCE(372); + case 78: + ACCEPT_TOKEN(anon_sym_or); + if (lookahead == '_') ADVANCE(160); END_STATE(); - case 273: - if (lookahead == 'l') ADVANCE(373); + case 79: + if (lookahead == 'e') ADVANCE(161); END_STATE(); - case 274: - if (lookahead == 'r') ADVANCE(374); + case 80: + if (lookahead == 'i') ADVANCE(162); + if (lookahead == 'o') ADVANCE(163); END_STATE(); - case 275: - if (lookahead == 't') ADVANCE(375); + case 81: + if (lookahead == 'b') ADVANCE(164); END_STATE(); - case 276: - if (lookahead == 'i') ADVANCE(376); + case 82: + if (lookahead == 'g') ADVANCE(165); + if (lookahead == 'q') ADVANCE(166); + if (lookahead == 's') ADVANCE(167); + if (lookahead == 't') ADVANCE(168); END_STATE(); - case 277: - ACCEPT_TOKEN(anon_sym_break); + case 83: + if (lookahead == 'o') ADVANCE(169); END_STATE(); - case 278: - ACCEPT_TOKEN(anon_sym_catch); + case 84: + if (lookahead == 'g') ADVANCE(170); + if (lookahead == 'z') ADVANCE(171); END_STATE(); - case 279: - ACCEPT_TOKEN(anon_sym_class); + case 85: + if (lookahead == 'a') ADVANCE(172); + if (lookahead == 'r') ADVANCE(173); END_STATE(); - case 280: - if (lookahead == 'a') ADVANCE(377); + case 86: + if (lookahead == 'i') ADVANCE(174); END_STATE(); - case 281: - if (lookahead == 't') ADVANCE(378); + case 87: + if (lookahead == 'm') ADVANCE(175); END_STATE(); - case 282: - if (lookahead == 'e') ADVANCE(379); + case 88: + if (lookahead == 'i') ADVANCE(176); + if (lookahead == 'r') ADVANCE(177); END_STATE(); - case 283: - ACCEPT_TOKEN(anon_sym_const); - if (lookahead == 'e') ADVANCE(380); + case 89: + if (lookahead == 'y') ADVANCE(178); END_STATE(); - case 284: - if (lookahead == 'n') ADVANCE(381); + case 90: + if (lookahead == 'p') ADVANCE(179); END_STATE(); - case 285: - if (lookahead == 'y') ADVANCE(382); + case 91: + if (lookahead == 'i') ADVANCE(180); + if (lookahead == 's') ADVANCE(181); END_STATE(); - case 286: - if (lookahead == 'l') ADVANCE(383); + case 92: + if (lookahead == 'i') ADVANCE(182); END_STATE(); - case 287: - if (lookahead == 'e') ADVANCE(384); + case 93: + if (lookahead == 'r') ADVANCE(183); END_STATE(); - case 288: - if (lookahead == 'e') ADVANCE(385); + case 94: + if (lookahead == 'l') ADVANCE(184); END_STATE(); - case 289: - if (lookahead == 'c') ADVANCE(386); + case 95: + if (lookahead == 'i') ADVANCE(185); END_STATE(); - case 290: - if (lookahead == 'n') ADVANCE(387); + case 96: + if (lookahead == 'r') ADVANCE(186); END_STATE(); - case 291: - ACCEPT_TOKEN(anon_sym_final); + case 97: + if (lookahead == 'H') ADVANCE(187); END_STATE(); - case 292: - if (lookahead == 'd') ADVANCE(388); + case 98: + if (lookahead == 'W') ADVANCE(188); END_STATE(); - case 293: - if (lookahead == 'e') ADVANCE(389); + case 99: + if (lookahead == '_') ADVANCE(189); END_STATE(); - case 294: - if (lookahead == 'l') ADVANCE(390); + case 100: + if (lookahead == 'P') ADVANCE(190); END_STATE(); - case 295: - if (lookahead == 'p') ADVANCE(391); + case 101: + if (lookahead == 'T') ADVANCE(191); END_STATE(); - case 296: - if (lookahead == 'e') ADVANCE(392); + case 102: + if (lookahead == '_') ADVANCE(192); END_STATE(); - case 297: - if (lookahead == 't') ADVANCE(393); + case 103: + if (lookahead == 'L') ADVANCE(193); END_STATE(); - case 298: - if (lookahead == 't') ADVANCE(394); + case 104: + if (lookahead == 'G') ADVANCE(194); END_STATE(); - case 299: - if (lookahead == 'i') ADVANCE(395); + case 105: + if (lookahead == 'N') ADVANCE(195); + if (lookahead == 'T') ADVANCE(196); + if (lookahead == 'W') ADVANCE(197); END_STATE(); - case 300: - if (lookahead == 't') ADVANCE(396); + case 106: + if (lookahead == '_') ADVANCE(198); END_STATE(); - case 301: - if (lookahead == 'c') ADVANCE(397); + case 107: + if (lookahead == 'i') ADVANCE(199); END_STATE(); - case 302: - if (lookahead == 'c') ADVANCE(398); + case 108: + if (lookahead == 'o') ADVANCE(200); END_STATE(); - case 303: - if (lookahead == 't') ADVANCE(399); + case 109: + if (lookahead == 'n') ADVANCE(201); END_STATE(); - case 304: - if (lookahead == 'i') ADVANCE(400); + case 110: + if (lookahead == 'n') ADVANCE(202); + if (lookahead == 'r') ADVANCE(203); END_STATE(); - case 305: - if (lookahead == 'n') ADVANCE(401); + case 111: + if (lookahead == 'l') ADVANCE(204); + if (lookahead == 's') ADVANCE(205); + if (lookahead == 't') ADVANCE(206); END_STATE(); - case 306: - ACCEPT_TOKEN(anon_sym_short); + case 112: + if (lookahead == 'a') ADVANCE(207); END_STATE(); - case 307: - if (lookahead == 'd') ADVANCE(402); + case 113: + if (lookahead == 'd') ADVANCE(208); + if (lookahead == 'l') ADVANCE(209); END_STATE(); - case 308: - if (lookahead == 'f') ADVANCE(403); + case 114: + if (lookahead == 'e') ADVANCE(210); END_STATE(); - case 309: - if (lookahead == 'c') ADVANCE(404); + case 115: + if (lookahead == 'x') ADVANCE(211); + END_STATE(); + case 116: + if (lookahead == 'a') ADVANCE(212); + if (lookahead == 'i') ADVANCE(213); + if (lookahead == 'o') ADVANCE(214); + END_STATE(); + case 117: + if (lookahead == 'n') ADVANCE(215); + END_STATE(); + case 118: + if (lookahead == 'e') ADVANCE(216); + END_STATE(); + case 119: + if (lookahead == 'e') ADVANCE(217); + END_STATE(); + case 120: + if (lookahead == 'p') ADVANCE(218); + if (lookahead == 't') ADVANCE(219); + END_STATE(); + case 121: + if (lookahead == 'h') ADVANCE(220); + if (lookahead == 'r') ADVANCE(221); + END_STATE(); + case 122: + if (lookahead == 'n') ADVANCE(222); + if (lookahead == 'p') ADVANCE(223); + END_STATE(); + case 123: + if (lookahead == 'e') ADVANCE(224); + if (lookahead == 'o') ADVANCE(225); + END_STATE(); + case 124: + if (lookahead == 'i') ADVANCE(226); + END_STATE(); + case 125: + if (lookahead == 'a') ADVANCE(227); + END_STATE(); + case 126: + if (lookahead == 'g') ADVANCE(228); + END_STATE(); + case 127: + ACCEPT_TOKEN(anon_sym_and); + if (lookahead == '_') ADVANCE(229); + END_STATE(); + case 128: + ACCEPT_TOKEN(anon_sym_asm); + END_STATE(); + case 129: + if (lookahead == 'o') ADVANCE(230); + END_STATE(); + case 130: + if (lookahead == 'a') ADVANCE(231); + if (lookahead == 'o') ADVANCE(232); + END_STATE(); + case 131: + if (lookahead == 'a') ADVANCE(233); + END_STATE(); + case 132: + if (lookahead == 'e') ADVANCE(234); + END_STATE(); + case 133: + if (lookahead == 'c') ADVANCE(235); + END_STATE(); + case 134: + if (lookahead == 's') ADVANCE(236); + END_STATE(); + case 135: + if (lookahead == 'a') ADVANCE(237); + if (lookahead == 'r') ADVANCE(238); + if (lookahead == 'y') ADVANCE(239); + END_STATE(); + case 136: + if (lookahead == 'p') ADVANCE(240); + END_STATE(); + case 137: + if (lookahead == 'c') ADVANCE(241); + if (lookahead == 's') ADVANCE(242); + if (lookahead == 't') ADVANCE(243); + END_STATE(); + case 138: + if (lookahead == 'l') ADVANCE(244); + END_STATE(); + case 139: + if (lookahead == 'a') ADVANCE(245); + if (lookahead == 'i') ADVANCE(246); + END_STATE(); + case 140: + if (lookahead == 'e') ADVANCE(247); + END_STATE(); + case 141: + if (lookahead == 'e') ADVANCE(248); + END_STATE(); + case 142: + if (lookahead == 'm') ADVANCE(249); + END_STATE(); + case 143: + if (lookahead == 'l') ADVANCE(250); + END_STATE(); + case 144: + if (lookahead == 'e') ADVANCE(251); + END_STATE(); + case 145: + if (lookahead == 'a') ADVANCE(252); + END_STATE(); + case 146: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 147: + if (lookahead == 'e') ADVANCE(253); + END_STATE(); + case 148: + if (lookahead == 'o') ADVANCE(254); + END_STATE(); + case 149: + if (lookahead == 'i') ADVANCE(255); + END_STATE(); + case 150: + if (lookahead == 'g') ADVANCE(256); + END_STATE(); + case 151: + if (lookahead == 'a') ADVANCE(257); + END_STATE(); + case 152: + if (lookahead == 'e') ADVANCE(258); + END_STATE(); + case 153: + ACCEPT_TOKEN(anon_sym_new); + END_STATE(); + case 154: + if (lookahead == 'x') ADVANCE(259); + END_STATE(); + case 155: + if (lookahead == 'e') ADVANCE(260); + END_STATE(); + case 156: + ACCEPT_TOKEN(anon_sym_not); + if (lookahead == '_') ADVANCE(261); + END_STATE(); + case 157: + if (lookahead == 'l') ADVANCE(262); + END_STATE(); + case 158: + if (lookahead == 's') ADVANCE(263); + END_STATE(); + case 159: + if (lookahead == 'r') ADVANCE(264); + END_STATE(); + case 160: + if (lookahead == 'e') ADVANCE(265); + END_STATE(); + case 161: + if (lookahead == 'r') ADVANCE(266); + END_STATE(); + case 162: + if (lookahead == 'v') ADVANCE(267); + END_STATE(); + case 163: + if (lookahead == 't') ADVANCE(268); + END_STATE(); + case 164: + if (lookahead == 'l') ADVANCE(269); + END_STATE(); + case 165: + if (lookahead == 'i') ADVANCE(270); + END_STATE(); + case 166: + if (lookahead == 'u') ADVANCE(271); + END_STATE(); + case 167: + if (lookahead == 't') ADVANCE(272); + END_STATE(); + case 168: + if (lookahead == 'u') ADVANCE(273); + END_STATE(); + case 169: + if (lookahead == 'r') ADVANCE(274); + END_STATE(); + case 170: + if (lookahead == 'n') ADVANCE(275); + END_STATE(); + case 171: + if (lookahead == 'e') ADVANCE(276); + END_STATE(); + case 172: + if (lookahead == 't') ADVANCE(277); + END_STATE(); + case 173: + if (lookahead == 'u') ADVANCE(278); + END_STATE(); + case 174: + if (lookahead == 't') ADVANCE(279); + END_STATE(); + case 175: + if (lookahead == 'p') ADVANCE(280); + END_STATE(); + case 176: + if (lookahead == 's') ADVANCE(281); + END_STATE(); + case 177: + if (lookahead == 'e') ADVANCE(282); + if (lookahead == 'o') ADVANCE(283); + END_STATE(); + case 178: + ACCEPT_TOKEN(anon_sym_try); + END_STATE(); + case 179: + if (lookahead == 'e') ADVANCE(284); + END_STATE(); + case 180: + if (lookahead == 'o') ADVANCE(285); + END_STATE(); + case 181: + if (lookahead == 'i') ADVANCE(286); + END_STATE(); + case 182: + if (lookahead == 'n') ADVANCE(287); + END_STATE(); + case 183: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 184: + if (lookahead == 'a') ADVANCE(289); + END_STATE(); + case 185: + if (lookahead == 'l') ADVANCE(290); + END_STATE(); + case 186: + ACCEPT_TOKEN(anon_sym_xor); + if (lookahead == '_') ADVANCE(291); + END_STATE(); + case 187: + if (lookahead == 'E') ADVANCE(292); + END_STATE(); + case 188: + if (lookahead == 'A') ADVANCE(293); + END_STATE(); + case 189: + if (lookahead == 'T') ADVANCE(294); + END_STATE(); + case 190: + if (lookahead == 'U') ADVANCE(295); + END_STATE(); + case 191: + if (lookahead == 'R') ADVANCE(296); + END_STATE(); + case 192: + ADVANCE_MAP( + 'A', 297, + 'C', 298, + 'D', 299, + 'F', 300, + 'H', 301, + 'I', 302, + 'M', 303, + 'N', 304, + 'O', 305, + 'P', 306, + 'R', 307, + 'S', 308, + 'T', 309, + 'U', 310, + 'X', 311, + ); + END_STATE(); + case 193: + ACCEPT_TOKEN(anon_sym_NULL); + END_STATE(); + case 194: + if (lookahead == 'E') ADVANCE(312); + END_STATE(); + case 195: + if (lookahead == 'O') ADVANCE(313); + END_STATE(); + case 196: + if (lookahead == 'R') ADVANCE(314); + END_STATE(); + case 197: + if (lookahead == 'A') ADVANCE(315); + END_STATE(); + case 198: + if (lookahead == 'T') ADVANCE(316); + END_STATE(); + case 199: + if (lookahead == 'g') ADVANCE(317); + END_STATE(); + case 200: + if (lookahead == 'm') ADVANCE(318); + END_STATE(); + case 201: + if (lookahead == 'e') ADVANCE(319); + END_STATE(); + case 202: + if (lookahead == 'n') ADVANCE(320); + END_STATE(); + case 203: + if (lookahead == 'e') ADVANCE(321); + END_STATE(); + case 204: + if (lookahead == 'i') ADVANCE(322); + END_STATE(); + case 205: + if (lookahead == 'm') ADVANCE(323); + END_STATE(); + case 206: + if (lookahead == 't') ADVANCE(324); + END_STATE(); + case 207: + if (lookahead == 's') ADVANCE(325); + END_STATE(); + case 208: + if (lookahead == 'e') ADVANCE(326); + END_STATE(); + case 209: + if (lookahead == 'r') ADVANCE(327); + END_STATE(); + case 210: + if (lookahead == 'c') ADVANCE(328); + END_STATE(); + case 211: + if (lookahead == 'c') ADVANCE(329); + if (lookahead == 't') ADVANCE(330); + END_STATE(); + case 212: + if (lookahead == 's') ADVANCE(331); + END_STATE(); + case 213: + if (lookahead == 'n') ADVANCE(332); + END_STATE(); + case 214: + if (lookahead == 'r') ADVANCE(333); + END_STATE(); + case 215: + if (lookahead == 'l') ADVANCE(334); + END_STATE(); + case 216: + if (lookahead == 'a') ADVANCE(335); + END_STATE(); + case 217: + if (lookahead == 's') ADVANCE(336); + END_STATE(); + case 218: + if (lookahead == 't') ADVANCE(337); + END_STATE(); + case 219: + if (lookahead == 'd') ADVANCE(338); + END_STATE(); + case 220: + if (lookahead == 'i') ADVANCE(339); + if (lookahead == 'r') ADVANCE(340); + END_STATE(); + case 221: + if (lookahead == 'y') ADVANCE(341); + END_STATE(); + case 222: + if (lookahead == 'a') ADVANCE(342); + END_STATE(); + case 223: + if (lookahead == 't') ADVANCE(343); + END_STATE(); + case 224: + if (lookahead == 'c') ADVANCE(344); + END_STATE(); + case 225: + if (lookahead == 'l') ADVANCE(345); + END_STATE(); + case 226: + if (lookahead == 'g') ADVANCE(346); + END_STATE(); + case 227: + if (lookahead == 'l') ADVANCE(347); + END_STATE(); + case 228: + if (lookahead == 'n') ADVANCE(348); + END_STATE(); + case 229: + if (lookahead == 'e') ADVANCE(349); + END_STATE(); + case 230: + ACCEPT_TOKEN(sym_auto); + END_STATE(); + case 231: + if (lookahead == 'n') ADVANCE(350); + END_STATE(); + case 232: + if (lookahead == 'r') ADVANCE(351); + END_STATE(); + case 233: + if (lookahead == 'k') ADVANCE(352); + END_STATE(); + case 234: + ACCEPT_TOKEN(anon_sym_case); + END_STATE(); + case 235: + if (lookahead == 'h') ADVANCE(353); + END_STATE(); + case 236: + if (lookahead == 's') ADVANCE(354); + END_STATE(); + case 237: + if (lookahead == 'w') ADVANCE(355); + END_STATE(); + case 238: + if (lookahead == 'e') ADVANCE(356); + END_STATE(); + case 239: + if (lookahead == 'i') ADVANCE(357); + END_STATE(); + case 240: + if (lookahead == 'l') ADVANCE(358); + END_STATE(); + case 241: + if (lookahead == 'e') ADVANCE(359); + END_STATE(); + case 242: + if (lookahead == 't') ADVANCE(360); + END_STATE(); + case 243: + if (lookahead == 'i') ADVANCE(361); + END_STATE(); + case 244: + if (lookahead == 't') ADVANCE(362); + END_STATE(); + case 245: + if (lookahead == 'u') ADVANCE(363); + END_STATE(); + case 246: + if (lookahead == 'n') ADVANCE(364); + END_STATE(); + case 247: + if (lookahead == 't') ADVANCE(365); + END_STATE(); + case 248: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 249: + ACCEPT_TOKEN(anon_sym_enum); + END_STATE(); + case 250: + if (lookahead == 'i') ADVANCE(366); + END_STATE(); + case 251: + if (lookahead == 'r') ADVANCE(367); + END_STATE(); + case 252: + if (lookahead == 'l') ADVANCE(368); + END_STATE(); + case 253: + if (lookahead == 'n') ADVANCE(369); + END_STATE(); + case 254: + ACCEPT_TOKEN(anon_sym_goto); + END_STATE(); + case 255: + if (lookahead == 'n') ADVANCE(370); + END_STATE(); + case 256: + ACCEPT_TOKEN(anon_sym_long); + END_STATE(); + case 257: + if (lookahead == 'b') ADVANCE(371); + END_STATE(); + case 258: + if (lookahead == 's') ADVANCE(372); + END_STATE(); + case 259: + if (lookahead == 'c') ADVANCE(373); + END_STATE(); + case 260: + if (lookahead == 't') ADVANCE(374); + END_STATE(); + case 261: + if (lookahead == 'e') ADVANCE(375); + END_STATE(); + case 262: + if (lookahead == 'p') ADVANCE(376); + END_STATE(); + case 263: + if (lookahead == 'e') ADVANCE(377); + END_STATE(); + case 264: + if (lookahead == 'a') ADVANCE(378); + END_STATE(); + case 265: + if (lookahead == 'q') ADVANCE(379); + END_STATE(); + case 266: + if (lookahead == 'r') ADVANCE(380); + END_STATE(); + case 267: + if (lookahead == 'a') ADVANCE(381); + END_STATE(); + case 268: + if (lookahead == 'e') ADVANCE(382); + END_STATE(); + case 269: + if (lookahead == 'i') ADVANCE(383); + END_STATE(); + case 270: + if (lookahead == 's') ADVANCE(384); + END_STATE(); + case 271: + if (lookahead == 'i') ADVANCE(385); + END_STATE(); + case 272: + if (lookahead == 'r') ADVANCE(386); + END_STATE(); + case 273: + if (lookahead == 'r') ADVANCE(387); + END_STATE(); + case 274: + if (lookahead == 't') ADVANCE(388); + END_STATE(); + case 275: + if (lookahead == 'e') ADVANCE(389); + END_STATE(); + case 276: + if (lookahead == 'o') ADVANCE(390); + END_STATE(); + case 277: + if (lookahead == 'i') ADVANCE(391); + END_STATE(); + case 278: + if (lookahead == 'c') ADVANCE(392); + END_STATE(); + case 279: + if (lookahead == 'c') ADVANCE(393); + END_STATE(); + case 280: + if (lookahead == 'l') ADVANCE(394); + END_STATE(); + case 281: + ACCEPT_TOKEN(sym_this); + END_STATE(); + case 282: + if (lookahead == 'a') ADVANCE(395); + END_STATE(); + case 283: + if (lookahead == 'w') ADVANCE(396); + END_STATE(); + case 284: + if (lookahead == 'd') ADVANCE(397); + if (lookahead == 'n') ADVANCE(398); + END_STATE(); + case 285: + if (lookahead == 'n') ADVANCE(399); + END_STATE(); + case 286: + if (lookahead == 'g') ADVANCE(400); + END_STATE(); + case 287: + if (lookahead == 'g') ADVANCE(401); + END_STATE(); + case 288: + if (lookahead == 'u') ADVANCE(402); + END_STATE(); + case 289: + if (lookahead == 't') ADVANCE(403); + END_STATE(); + case 290: + if (lookahead == 'e') ADVANCE(404); + END_STATE(); + case 291: + if (lookahead == 'e') ADVANCE(405); + END_STATE(); + case 292: + if (lookahead == '_') ADVANCE(406); + END_STATE(); + case 293: + if (lookahead == 'R') ADVANCE(407); + END_STATE(); + case 294: + if (lookahead == 'R') ADVANCE(408); + END_STATE(); + case 295: + if (lookahead == 'B') ADVANCE(409); + END_STATE(); + case 296: + if (lookahead == 'Y') ADVANCE(410); + END_STATE(); + case 297: + if (lookahead == 'L') ADVANCE(411); + if (lookahead == 'S') ADVANCE(412); + END_STATE(); + case 298: + if (lookahead == 'A') ADVANCE(413); + if (lookahead == 'O') ADVANCE(414); + END_STATE(); + case 299: + if (lookahead == 'E') ADVANCE(415); + END_STATE(); + case 300: + if (lookahead == 'A') ADVANCE(416); + if (lookahead == 'O') ADVANCE(417); + END_STATE(); + case 301: + if (lookahead == 'A') ADVANCE(418); + if (lookahead == 'E') ADVANCE(419); + END_STATE(); + case 302: + if (lookahead == 'M') ADVANCE(420); + if (lookahead == 'N') ADVANCE(421); + if (lookahead == 'S') ADVANCE(422); + END_STATE(); + case 303: + if (lookahead == 'A') ADVANCE(423); + if (lookahead == 'U') ADVANCE(424); + END_STATE(); + case 304: + if (lookahead == 'E') ADVANCE(425); + if (lookahead == 'O') ADVANCE(426); + END_STATE(); + case 305: + if (lookahead == 'N') ADVANCE(427); + if (lookahead == 'W') ADVANCE(428); + END_STATE(); + case 306: + if (lookahead == 'O') ADVANCE(429); + if (lookahead == 'R') ADVANCE(430); + if (lookahead == 'U') ADVANCE(431); + END_STATE(); + case 307: + if (lookahead == 'A') ADVANCE(432); + if (lookahead == 'E') ADVANCE(433); + END_STATE(); + case 308: + if (lookahead == 'T') ADVANCE(434); + END_STATE(); + case 309: + if (lookahead == 'E') ADVANCE(435); + if (lookahead == 'R') ADVANCE(436); + if (lookahead == 'S') ADVANCE(437); END_STATE(); case 310: - if (lookahead == 't') ADVANCE(405); + if (lookahead == 'N') ADVANCE(438); END_STATE(); case 311: - if (lookahead == 'h') ADVANCE(406); + if (lookahead == 'P') ADVANCE(439); END_STATE(); case 312: - if (lookahead == 'a') ADVANCE(407); + if (lookahead == 'T') ADVANCE(440); END_STATE(); case 313: - if (lookahead == 'd') ADVANCE(408); + if (lookahead == 'T') ADVANCE(441); END_STATE(); case 314: - ACCEPT_TOKEN(anon_sym_throw); + if (lookahead == 'Y') ADVANCE(442); END_STATE(); case 315: - if (lookahead == 'e') ADVANCE(409); + if (lookahead == 'R') ADVANCE(443); END_STATE(); case 316: - if (lookahead == 'a') ADVANCE(410); + if (lookahead == 'R') ADVANCE(444); END_STATE(); case 317: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 'n') ADVANCE(445); END_STATE(); case 318: - if (lookahead == 'n') ADVANCE(411); + if (lookahead == 'i') ADVANCE(446); END_STATE(); case 319: - ACCEPT_TOKEN(anon_sym_using); + if (lookahead == 'r') ADVANCE(447); END_STATE(); case 320: - if (lookahead == 'a') ADVANCE(412); + if (lookahead == 'u') ADVANCE(448); END_STATE(); case 321: - if (lookahead == 'i') ADVANCE(413); + if (lookahead == 't') ADVANCE(449); END_STATE(); case 322: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'g') ADVANCE(450); END_STATE(); case 323: - if (lookahead == 'T') ADVANCE(414); + ACCEPT_TOKEN(anon_sym___asm); + if (lookahead == '_') ADVANCE(451); END_STATE(); case 324: - if (lookahead == 'D') ADVANCE(415); + if (lookahead == 'r') ADVANCE(452); END_STATE(); case 325: - if (lookahead == 'Y') ADVANCE(416); + if (lookahead == 'e') ADVANCE(453); END_STATE(); case 326: - if (lookahead == 'L') ADVANCE(417); + if (lookahead == 'c') ADVANCE(454); END_STATE(); case 327: - if (lookahead == '_') ADVANCE(418); + if (lookahead == 'c') ADVANCE(455); END_STATE(); case 328: - if (lookahead == 'L') ADVANCE(419); - if (lookahead == 'W') ADVANCE(420); + if (lookahead == 'l') ADVANCE(456); END_STATE(); case 329: - if (lookahead == 'A') ADVANCE(421); + if (lookahead == 'e') ADVANCE(457); END_STATE(); case 330: - if (lookahead == 'N') ADVANCE(422); + if (lookahead == 'e') ADVANCE(458); END_STATE(); case 331: - if (lookahead == 'L') ADVANCE(423); + if (lookahead == 't') ADVANCE(459); END_STATE(); case 332: - if (lookahead == 'C') ADVANCE(424); + if (lookahead == 'a') ADVANCE(460); END_STATE(); case 333: - if (lookahead == 'L') ADVANCE(425); + if (lookahead == 'c') ADVANCE(461); END_STATE(); case 334: - if (lookahead == 'R') ADVANCE(426); + if (lookahead == 'i') ADVANCE(462); END_STATE(); case 335: - if (lookahead == 'V') ADVANCE(427); + if (lookahead == 'v') ADVANCE(463); END_STATE(); case 336: - if (lookahead == 'A') ADVANCE(428); + if (lookahead == 't') ADVANCE(464); END_STATE(); case 337: - if (lookahead == 'P') ADVANCE(429); + if (lookahead == 'r') ADVANCE(465); END_STATE(); case 338: - if (lookahead == 'H') ADVANCE(430); - if (lookahead == 'I') ADVANCE(431); + if (lookahead == 'c') ADVANCE(466); END_STATE(); case 339: - if (lookahead == '_') ADVANCE(432); + if (lookahead == 's') ADVANCE(467); END_STATE(); case 340: - if (lookahead == 'Y') ADVANCE(433); + if (lookahead == 'e') ADVANCE(468); END_STATE(); case 341: - if (lookahead == 'S') ADVANCE(434); + ACCEPT_TOKEN(anon_sym___try); END_STATE(); case 342: - if (lookahead == 'E') ADVANCE(435); - if (lookahead == 'V') ADVANCE(436); + if (lookahead == 'l') ADVANCE(469); END_STATE(); case 343: - if (lookahead == 'N') ADVANCE(437); - if (lookahead == 'R') ADVANCE(438); - if (lookahead == '_') ADVANCE(439); + if (lookahead == 'r') ADVANCE(470); END_STATE(); case 344: - if (lookahead == 'L') ADVANCE(440); + if (lookahead == 't') ADVANCE(471); END_STATE(); case 345: - if (lookahead == 'N') ADVANCE(441); + if (lookahead == 'a') ADVANCE(472); END_STATE(); case 346: - if (lookahead == 'P') ADVANCE(442); + if (lookahead == 'n') ADVANCE(473); END_STATE(); case 347: - if (lookahead == 'E') ADVANCE(443); + if (lookahead == 'i') ADVANCE(474); END_STATE(); case 348: - if (lookahead == 'S') ADVANCE(444); + if (lookahead == 'a') ADVANCE(475); + if (lookahead == 'o') ADVANCE(476); END_STATE(); case 349: - if (lookahead == 'I') ADVANCE(445); + if (lookahead == 'q') ADVANCE(477); END_STATE(); case 350: - if (lookahead == 'Q') ADVANCE(446); + if (lookahead == 'd') ADVANCE(478); END_STATE(); case 351: - if (lookahead == 'A') ADVANCE(447); + ACCEPT_TOKEN(anon_sym_bitor); END_STATE(); case 352: - if (lookahead == 'M') ADVANCE(448); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 353: - if (lookahead == 'I') ADVANCE(449); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 354: - if (lookahead == 'A') ADVANCE(450); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 355: - if (lookahead == 'S') ADVANCE(451); + if (lookahead == 'a') ADVANCE(479); END_STATE(); case 356: - if (lookahead == 'C') ADVANCE(452); + if (lookahead == 't') ADVANCE(480); END_STATE(); case 357: - ACCEPT_TOKEN(anon_sym_PS_GET); - if (lookahead == '_') ADVANCE(453); + if (lookahead == 'e') ADVANCE(481); END_STATE(); case 358: - if (lookahead == 'E') ADVANCE(454); + ACCEPT_TOKEN(anon_sym_compl); END_STATE(); case 359: - if (lookahead == '_') ADVANCE(455); + if (lookahead == 'p') ADVANCE(482); END_STATE(); case 360: - if (lookahead == 'N') ADVANCE(456); + ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'e') ADVANCE(483); + if (lookahead == 'i') ADVANCE(484); END_STATE(); case 361: - if (lookahead == 'Y') ADVANCE(457); + if (lookahead == 'n') ADVANCE(485); END_STATE(); case 362: - if (lookahead == 'c') ADVANCE(458); + if (lookahead == 'y') ADVANCE(486); END_STATE(); case 363: - if (lookahead == 'i') ADVANCE(459); + if (lookahead == 'l') ADVANCE(487); END_STATE(); case 364: - if (lookahead == 'd') ADVANCE(460); + if (lookahead == 'e') ADVANCE(488); END_STATE(); case 365: - if (lookahead == 'l') ADVANCE(461); + if (lookahead == 'e') ADVANCE(489); END_STATE(); case 366: - if (lookahead == 'a') ADVANCE(462); + if (lookahead == 'c') ADVANCE(490); END_STATE(); case 367: - if (lookahead == 's') ADVANCE(463); + if (lookahead == 'n') ADVANCE(491); END_STATE(); case 368: - if (lookahead == 'c') ADVANCE(464); + ACCEPT_TOKEN(anon_sym_final); END_STATE(); case 369: - if (lookahead == 'r') ADVANCE(465); + if (lookahead == 'd') ADVANCE(492); END_STATE(); case 370: - ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); + if (lookahead == 'e') ADVANCE(493); END_STATE(); case 371: - if (lookahead == 'a') ADVANCE(466); + if (lookahead == 'l') ADVANCE(494); END_STATE(); case 372: - if (lookahead == 'c') ADVANCE(467); + if (lookahead == 'p') ADVANCE(495); END_STATE(); case 373: - if (lookahead == 'i') ADVANCE(468); + if (lookahead == 'e') ADVANCE(496); END_STATE(); case 374: - ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); + if (lookahead == 'u') ADVANCE(497); END_STATE(); case 375: - if (lookahead == 'o') ADVANCE(469); + if (lookahead == 'q') ADVANCE(498); END_STATE(); case 376: - if (lookahead == 'g') ADVANCE(470); + if (lookahead == 't') ADVANCE(499); END_STATE(); case 377: - if (lookahead == 'i') ADVANCE(471); + if (lookahead == 't') ADVANCE(500); END_STATE(); case 378: - if (lookahead == 'u') ADVANCE(472); + if (lookahead == 't') ADVANCE(501); END_STATE(); case 379: - if (lookahead == 'l') ADVANCE(473); + ACCEPT_TOKEN(anon_sym_or_eq); END_STATE(); case 380: - if (lookahead == 'x') ADVANCE(474); + if (lookahead == 'i') ADVANCE(502); END_STATE(); case 381: - if (lookahead == 'u') ADVANCE(475); + if (lookahead == 't') ADVANCE(503); END_STATE(); case 382: - if (lookahead == 'p') ADVANCE(476); + if (lookahead == 'c') ADVANCE(504); END_STATE(); case 383: - if (lookahead == 't') ADVANCE(477); + if (lookahead == 'c') ADVANCE(505); END_STATE(); case 384: - if (lookahead == 'd') ADVANCE(478); + if (lookahead == 't') ADVANCE(506); END_STATE(); case 385: - ACCEPT_TOKEN(anon_sym_delete); + if (lookahead == 'r') ADVANCE(507); END_STATE(); case 386: - if (lookahead == 'i') ADVANCE(479); + if (lookahead == 'i') ADVANCE(508); END_STATE(); case 387: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == 'n') ADVANCE(509); END_STATE(); case 388: - ACCEPT_TOKEN(anon_sym_friend); + ACCEPT_TOKEN(anon_sym_short); END_STATE(); case 389: - ACCEPT_TOKEN(anon_sym_inline); + if (lookahead == 'd') ADVANCE(510); END_STATE(); case 390: - if (lookahead == 'e') ADVANCE(480); + if (lookahead == 'f') ADVANCE(511); END_STATE(); case 391: - if (lookahead == 'a') ADVANCE(481); + if (lookahead == 'c') ADVANCE(512); END_STATE(); case 392: - if (lookahead == 'p') ADVANCE(482); + if (lookahead == 't') ADVANCE(513); END_STATE(); case 393: - if (lookahead == 'r') ADVANCE(483); + if (lookahead == 'h') ADVANCE(514); END_STATE(); case 394: - if (lookahead == 'o') ADVANCE(484); + if (lookahead == 'a') ADVANCE(515); END_STATE(); case 395: - if (lookahead == 'd') ADVANCE(485); + if (lookahead == 'd') ADVANCE(516); END_STATE(); case 396: - if (lookahead == 'e') ADVANCE(486); + ACCEPT_TOKEN(anon_sym_throw); END_STATE(); case 397: - if (lookahead == 't') ADVANCE(487); + if (lookahead == 'e') ADVANCE(517); END_STATE(); case 398: - ACCEPT_TOKEN(anon_sym_public); + if (lookahead == 'a') ADVANCE(518); END_STATE(); case 399: - if (lookahead == 'e') ADVANCE(488); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 400: - if (lookahead == 'c') ADVANCE(489); + if (lookahead == 'n') ADVANCE(519); END_STATE(); case 401: - ACCEPT_TOKEN(anon_sym_return); + ACCEPT_TOKEN(anon_sym_using); END_STATE(); case 402: - ACCEPT_TOKEN(anon_sym_signed); + if (lookahead == 'a') ADVANCE(520); END_STATE(); case 403: - ACCEPT_TOKEN(anon_sym_sizeof); + if (lookahead == 'i') ADVANCE(521); END_STATE(); case 404: - ACCEPT_TOKEN(anon_sym_static); - if (lookahead == '_') ADVANCE(490); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 405: - ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == 'q') ADVANCE(522); END_STATE(); case 406: - ACCEPT_TOKEN(anon_sym_switch); + if (lookahead == 'T') ADVANCE(523); END_STATE(); case 407: - if (lookahead == 't') ADVANCE(491); + if (lookahead == 'D') ADVANCE(524); END_STATE(); case 408: - if (lookahead == '_') ADVANCE(492); + if (lookahead == 'Y') ADVANCE(525); END_STATE(); case 409: - if (lookahead == 'f') ADVANCE(493); + if (lookahead == 'L') ADVANCE(526); END_STATE(); case 410: - if (lookahead == 'm') ADVANCE(494); + if (lookahead == '_') ADVANCE(527); END_STATE(); case 411: - if (lookahead == 'e') ADVANCE(495); + if (lookahead == 'L') ADVANCE(528); + if (lookahead == 'W') ADVANCE(529); END_STATE(); case 412: - if (lookahead == 'l') ADVANCE(496); + if (lookahead == 'A') ADVANCE(530); END_STATE(); case 413: - if (lookahead == 'l') ADVANCE(497); + if (lookahead == 'N') ADVANCE(531); END_STATE(); case 414: - if (lookahead == 'R') ADVANCE(498); + if (lookahead == 'L') ADVANCE(532); END_STATE(); case 415: - ACCEPT_TOKEN(anon_sym_FORWARD); - if (lookahead == '_') ADVANCE(499); + if (lookahead == 'C') ADVANCE(533); END_STATE(); case 416: - if (lookahead == '_') ADVANCE(500); + if (lookahead == 'L') ADVANCE(534); END_STATE(); case 417: - if (lookahead == 'I') ADVANCE(501); + if (lookahead == 'R') ADVANCE(535); END_STATE(); case 418: - if (lookahead == 'I') ADVANCE(502); - if (lookahead == 'U') ADVANCE(503); + if (lookahead == 'V') ADVANCE(536); END_STATE(); case 419: - if (lookahead == 'O') ADVANCE(504); + if (lookahead == 'A') ADVANCE(537); END_STATE(); case 420: - if (lookahead == 'A') ADVANCE(505); + if (lookahead == 'P') ADVANCE(538); END_STATE(); case 421: - if (lookahead == 'N') ADVANCE(506); + if (lookahead == 'H') ADVANCE(539); + if (lookahead == 'I') ADVANCE(540); END_STATE(); case 422: - if (lookahead == '_') ADVANCE(507); + if (lookahead == '_') ADVANCE(541); END_STATE(); case 423: - if (lookahead == 'D') ADVANCE(508); + if (lookahead == 'Y') ADVANCE(542); END_STATE(); case 424: - if (lookahead == 'L') ADVANCE(509); + if (lookahead == 'S') ADVANCE(543); END_STATE(); case 425: - if (lookahead == 'L') ADVANCE(510); + if (lookahead == 'E') ADVANCE(544); + if (lookahead == 'V') ADVANCE(545); END_STATE(); case 426: - if (lookahead == 'M') ADVANCE(511); + if (lookahead == 'N') ADVANCE(546); + if (lookahead == 'R') ADVANCE(547); + if (lookahead == '_') ADVANCE(548); END_STATE(); case 427: - if (lookahead == 'E') ADVANCE(512); + if (lookahead == 'L') ADVANCE(549); END_STATE(); case 428: - if (lookahead == 'P') ADVANCE(513); + if (lookahead == 'N') ADVANCE(550); END_STATE(); case 429: - if (lookahead == 'L') ADVANCE(514); + if (lookahead == 'P') ADVANCE(551); END_STATE(); case 430: - if (lookahead == 'E') ADVANCE(515); + if (lookahead == 'E') ADVANCE(552); END_STATE(); case 431: - if (lookahead == 'T') ADVANCE(516); + if (lookahead == 'S') ADVANCE(553); END_STATE(); case 432: - if (lookahead == 'C') ADVANCE(517); - if (lookahead == 'R') ADVANCE(518); - if (lookahead == 'S') ADVANCE(519); + if (lookahead == 'I') ADVANCE(554); END_STATE(); case 433: - if (lookahead == 'B') ADVANCE(520); - if (lookahead == '_') ADVANCE(521); + if (lookahead == 'Q') ADVANCE(555); END_STATE(); case 434: - if (lookahead == 'T') ADVANCE(522); + if (lookahead == 'A') ADVANCE(556); END_STATE(); case 435: - if (lookahead == 'D') ADVANCE(523); + if (lookahead == 'M') ADVANCE(557); END_STATE(); case 436: - if (lookahead == 'E') ADVANCE(524); + if (lookahead == 'I') ADVANCE(558); END_STATE(); case 437: - if (lookahead == 'H') ADVANCE(525); - if (lookahead == 'N') ADVANCE(526); - if (lookahead == '_') ADVANCE(527); + if (lookahead == 'A') ADVANCE(559); END_STATE(); case 438: - if (lookahead == 'E') ADVANCE(528); + if (lookahead == 'S') ADVANCE(560); END_STATE(); case 439: - if (lookahead == 'A') ADVANCE(529); - if (lookahead == 'D') ADVANCE(530); - if (lookahead == 'S') ADVANCE(531); + if (lookahead == 'C') ADVANCE(561); END_STATE(); case 440: - if (lookahead == 'Y') ADVANCE(532); + ACCEPT_TOKEN(anon_sym_PS_GET); + if (lookahead == '_') ADVANCE(562); END_STATE(); case 441: - if (lookahead == 'I') ADVANCE(533); + if (lookahead == 'E') ADVANCE(563); END_STATE(); case 442: - if (lookahead == '_') ADVANCE(534); + if (lookahead == '_') ADVANCE(564); END_STATE(); case 443: - if (lookahead == 'T') ADVANCE(535); + if (lookahead == 'N') ADVANCE(565); END_STATE(); case 444: - if (lookahead == 'H') ADVANCE(536); + if (lookahead == 'Y') ADVANCE(566); END_STATE(); case 445: - if (lookahead == 'I') ADVANCE(537); + if (lookahead == 'a') ADVANCE(567); + if (lookahead == 'o') ADVANCE(568); END_STATE(); case 446: - if (lookahead == 'U') ADVANCE(538); + if (lookahead == 'c') ADVANCE(569); END_STATE(); case 447: - if (lookahead == 'C') ADVANCE(539); - if (lookahead == 'T') ADVANCE(540); + if (lookahead == 'i') ADVANCE(570); END_STATE(); case 448: - if (lookahead == 'P') ADVANCE(541); + if (lookahead == 'l') ADVANCE(571); END_STATE(); case 449: - if (lookahead == 'V') ADVANCE(542); + if (lookahead == 'u') ADVANCE(572); END_STATE(); case 450: - if (lookahead == 'N') ADVANCE(543); + if (lookahead == 'n') ADVANCE(573); END_STATE(); case 451: - if (lookahead == 'A') ADVANCE(544); + if (lookahead == '_') ADVANCE(574); END_STATE(); case 452: - if (lookahead == 'O') ADVANCE(545); + if (lookahead == 'i') ADVANCE(575); END_STATE(); case 453: - if (lookahead == 'A') ADVANCE(546); - if (lookahead == 'L') ADVANCE(547); + if (lookahead == 'd') ADVANCE(576); END_STATE(); case 454: - if (lookahead == 'O') ADVANCE(548); + if (lookahead == 'l') ADVANCE(577); END_STATE(); case 455: - if (lookahead == 'I') ADVANCE(549); - if (lookahead == 'U') ADVANCE(550); + if (lookahead == 'a') ADVANCE(578); END_STATE(); case 456: - if (lookahead == 'O') ADVANCE(551); + if (lookahead == 's') ADVANCE(579); END_STATE(); case 457: - if (lookahead == '_') ADVANCE(552); + if (lookahead == 'p') ADVANCE(580); END_STATE(); case 458: - ACCEPT_TOKEN(anon_sym__Atomic); + if (lookahead == 'n') ADVANCE(581); END_STATE(); case 459: - if (lookahead == 'b') ADVANCE(553); + if (lookahead == 'c') ADVANCE(582); END_STATE(); case 460: - ACCEPT_TOKEN(anon_sym___based); + if (lookahead == 'l') ADVANCE(583); END_STATE(); case 461: - ACCEPT_TOKEN(anon_sym___cdecl); + if (lookahead == 'e') ADVANCE(584); END_STATE(); case 462: - if (lookahead == 'l') ADVANCE(554); + if (lookahead == 'n') ADVANCE(585); END_STATE(); case 463: - if (lookahead == 'p') ADVANCE(555); + if (lookahead == 'e') ADVANCE(586); END_STATE(); case 464: - if (lookahead == 'a') ADVANCE(556); + if (lookahead == 'r') ADVANCE(587); END_STATE(); case 465: - if (lookahead == 'i') ADVANCE(557); + ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); END_STATE(); case 466: - if (lookahead == 'l') ADVANCE(558); + if (lookahead == 'a') ADVANCE(588); END_STATE(); case 467: - if (lookahead == 'a') ADVANCE(559); + if (lookahead == 'c') ADVANCE(589); END_STATE(); case 468: - if (lookahead == 'g') ADVANCE(560); + if (lookahead == 'a') ADVANCE(590); END_STATE(); case 469: - if (lookahead == 'r') ADVANCE(561); + if (lookahead == 'i') ADVANCE(591); END_STATE(); case 470: - if (lookahead == 'n') ADVANCE(562); + ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); END_STATE(); case 471: - if (lookahead == 't') ADVANCE(563); + if (lookahead == 'o') ADVANCE(592); END_STATE(); case 472: - if (lookahead == 'r') ADVANCE(564); + if (lookahead == 't') ADVANCE(593); END_STATE(); case 473: - if (lookahead == 'd') ADVANCE(565); + if (lookahead == 'o') ADVANCE(594); END_STATE(); case 474: - if (lookahead == 'p') ADVANCE(566); + if (lookahead == 'g') ADVANCE(595); END_STATE(); case 475: - if (lookahead == 'e') ADVANCE(567); + if (lookahead == 's') ADVANCE(596); END_STATE(); case 476: - if (lookahead == 'e') ADVANCE(568); + if (lookahead == 'f') ADVANCE(597); END_STATE(); case 477: - ACCEPT_TOKEN(anon_sym_default); + ACCEPT_TOKEN(anon_sym_and_eq); END_STATE(); case 478: - ACCEPT_TOKEN(anon_sym_defined); + ACCEPT_TOKEN(anon_sym_bitand); END_STATE(); case 479: - if (lookahead == 't') ADVANCE(569); + if (lookahead == 'i') ADVANCE(598); END_STATE(); case 480: - ACCEPT_TOKEN(anon_sym_mutable); + if (lookahead == 'u') ADVANCE(599); END_STATE(); case 481: - if (lookahead == 'c') ADVANCE(570); + if (lookahead == 'l') ADVANCE(600); END_STATE(); case 482: - if (lookahead == 't') ADVANCE(571); + if (lookahead == 't') ADVANCE(601); END_STATE(); case 483: - ACCEPT_TOKEN(sym_nullptr); + if (lookahead == 'v') ADVANCE(602); + if (lookahead == 'x') ADVANCE(603); END_STATE(); case 484: - if (lookahead == 'r') ADVANCE(572); + if (lookahead == 'n') ADVANCE(604); END_STATE(); case 485: - if (lookahead == 'e') ADVANCE(573); + if (lookahead == 'u') ADVANCE(605); END_STATE(); case 486: - ACCEPT_TOKEN(anon_sym_private); + if (lookahead == 'p') ADVANCE(606); END_STATE(); case 487: - if (lookahead == 'e') ADVANCE(574); + if (lookahead == 't') ADVANCE(607); END_STATE(); case 488: - if (lookahead == 'r') ADVANCE(575); + if (lookahead == 'd') ADVANCE(608); END_STATE(); case 489: - if (lookahead == 't') ADVANCE(576); + ACCEPT_TOKEN(anon_sym_delete); END_STATE(); case 490: - if (lookahead == 'a') ADVANCE(577); + if (lookahead == 'i') ADVANCE(609); END_STATE(); case 491: - if (lookahead == 'e') ADVANCE(578); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 492: - if (lookahead == 'l') ADVANCE(579); + ACCEPT_TOKEN(anon_sym_friend); END_STATE(); case 493: - ACCEPT_TOKEN(anon_sym_typedef); + ACCEPT_TOKEN(anon_sym_inline); END_STATE(); case 494: - if (lookahead == 'e') ADVANCE(580); + if (lookahead == 'e') ADVANCE(610); END_STATE(); case 495: - if (lookahead == 'd') ADVANCE(581); + if (lookahead == 'a') ADVANCE(611); END_STATE(); case 496: - ACCEPT_TOKEN(anon_sym_virtual); + if (lookahead == 'p') ADVANCE(612); END_STATE(); case 497: - if (lookahead == 'e') ADVANCE(582); + if (lookahead == 'r') ADVANCE(613); END_STATE(); case 498: - if (lookahead == 'Y') ADVANCE(583); + ACCEPT_TOKEN(anon_sym_not_eq); END_STATE(); case 499: - if (lookahead == 'S') ADVANCE(584); + if (lookahead == 'r') ADVANCE(614); END_STATE(); case 500: - if (lookahead == 'I') ADVANCE(585); - if (lookahead == 'U') ADVANCE(586); + if (lookahead == 'o') ADVANCE(615); END_STATE(); case 501: - if (lookahead == 'C') ADVANCE(587); + if (lookahead == 'o') ADVANCE(616); END_STATE(); case 502: - if (lookahead == 'N') ADVANCE(588); + if (lookahead == 'd') ADVANCE(617); END_STATE(); case 503: - if (lookahead == 'N') ADVANCE(589); + if (lookahead == 'e') ADVANCE(618); END_STATE(); case 504: - if (lookahead == 'C') ADVANCE(590); - if (lookahead == 'W') ADVANCE(591); + if (lookahead == 't') ADVANCE(619); END_STATE(); case 505: - if (lookahead == 'Y') ADVANCE(592); + ACCEPT_TOKEN(anon_sym_public); END_STATE(); case 506: - if (lookahead == '_') ADVANCE(593); + if (lookahead == 'e') ADVANCE(620); END_STATE(); case 507: - if (lookahead == 'R') ADVANCE(594); + if (lookahead == 'e') ADVANCE(621); END_STATE(); case 508: - ACCEPT_TOKEN(anon_sym_MOZ_COLD); + if (lookahead == 'c') ADVANCE(622); END_STATE(); case 509: - if (lookahead == '_') ADVANCE(595); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 510: - if (lookahead == 'T') ADVANCE(596); + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); case 511: - if (lookahead == 'A') ADVANCE(597); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 512: - if (lookahead == '_') ADVANCE(598); + ACCEPT_TOKEN(anon_sym_static); + if (lookahead == '_') ADVANCE(623); END_STATE(); case 513: - if (lookahead == '_') ADVANCE(599); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 514: - if (lookahead == 'I') ADVANCE(600); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 515: - if (lookahead == 'R') ADVANCE(601); + if (lookahead == 't') ADVANCE(624); END_STATE(); case 516: - if (lookahead == '_') ADVANCE(602); + if (lookahead == '_') ADVANCE(625); END_STATE(); case 517: - if (lookahead == 'L') ADVANCE(603); + if (lookahead == 'f') ADVANCE(626); END_STATE(); case 518: - if (lookahead == 'E') ADVANCE(604); + if (lookahead == 'm') ADVANCE(627); END_STATE(); case 519: - if (lookahead == 'M') ADVANCE(605); + if (lookahead == 'e') ADVANCE(628); END_STATE(); case 520: - if (lookahead == 'E') ADVANCE(606); + if (lookahead == 'l') ADVANCE(629); END_STATE(); case 521: - if (lookahead == 'C') ADVANCE(607); + if (lookahead == 'l') ADVANCE(630); END_STATE(); case 522: - if (lookahead == '_') ADVANCE(608); + ACCEPT_TOKEN(anon_sym_xor_eq); END_STATE(); case 523: - if (lookahead == 'S') ADVANCE(609); + if (lookahead == 'R') ADVANCE(631); END_STATE(); case 524: - if (lookahead == 'R') ADVANCE(610); + ACCEPT_TOKEN(anon_sym_FORWARD); + if (lookahead == '_') ADVANCE(632); END_STATE(); case 525: - if (lookahead == 'E') ADVANCE(611); + if (lookahead == '_') ADVANCE(633); END_STATE(); case 526: - if (lookahead == 'U') ADVANCE(612); + if (lookahead == 'I') ADVANCE(634); END_STATE(); case 527: - if (lookahead == 'A') ADVANCE(613); - if (lookahead == 'M') ADVANCE(614); - if (lookahead == 'O') ADVANCE(615); - if (lookahead == 'P') ADVANCE(616); - if (lookahead == 'T') ADVANCE(617); + if (lookahead == 'I') ADVANCE(635); + if (lookahead == 'U') ADVANCE(636); END_STATE(); case 528: - if (lookahead == 'T') ADVANCE(618); + if (lookahead == 'O') ADVANCE(637); END_STATE(); case 529: - if (lookahead == 'D') ADVANCE(619); - if (lookahead == 'R') ADVANCE(620); + if (lookahead == 'A') ADVANCE(638); END_STATE(); case 530: - if (lookahead == 'A') ADVANCE(621); + if (lookahead == 'N') ADVANCE(639); END_STATE(); case 531: - if (lookahead == 'A') ADVANCE(622); + if (lookahead == '_') ADVANCE(640); END_STATE(); case 532: - if (lookahead == '_') ADVANCE(623); + if (lookahead == 'D') ADVANCE(641); END_STATE(); case 533: - if (lookahead == 'N') ADVANCE(624); + if (lookahead == 'L') ADVANCE(642); END_STATE(); case 534: - if (lookahead == 'D') ADVANCE(625); + if (lookahead == 'L') ADVANCE(643); END_STATE(); case 535: - if (lookahead == 'E') ADVANCE(626); + if (lookahead == 'M') ADVANCE(644); END_STATE(); case 536: - if (lookahead == '_') ADVANCE(627); + if (lookahead == 'E') ADVANCE(645); END_STATE(); case 537: - ACCEPT_TOKEN(anon_sym_MOZ_RAII); + if (lookahead == 'P') ADVANCE(646); END_STATE(); case 538: - if (lookahead == 'I') ADVANCE(628); + if (lookahead == 'L') ADVANCE(647); END_STATE(); case 539: - if (lookahead == 'K') ADVANCE(629); + if (lookahead == 'E') ADVANCE(648); END_STATE(); case 540: - if (lookahead == 'I') ADVANCE(630); + if (lookahead == 'T') ADVANCE(649); END_STATE(); case 541: - if (lookahead == 'O') ADVANCE(631); + if (lookahead == 'C') ADVANCE(650); + if (lookahead == 'R') ADVANCE(651); + if (lookahead == 'S') ADVANCE(652); END_STATE(); case 542: - if (lookahead == 'I') ADVANCE(632); + if (lookahead == 'B') ADVANCE(653); + if (lookahead == '_') ADVANCE(654); END_STATE(); case 543: - if (lookahead == '_') ADVANCE(633); + if (lookahead == 'T') ADVANCE(655); END_STATE(); case 544: - if (lookahead == 'F') ADVANCE(634); + if (lookahead == 'D') ADVANCE(656); END_STATE(); case 545: - if (lookahead == 'M') ADVANCE(635); + if (lookahead == 'E') ADVANCE(657); END_STATE(); case 546: - if (lookahead == 'N') ADVANCE(636); + if (lookahead == 'H') ADVANCE(658); + if (lookahead == 'N') ADVANCE(659); + if (lookahead == '_') ADVANCE(660); END_STATE(); case 547: - if (lookahead == 'O') ADVANCE(637); + if (lookahead == 'E') ADVANCE(661); END_STATE(); case 548: - if (lookahead == 'N') ADVANCE(638); + if (lookahead == 'A') ADVANCE(662); + if (lookahead == 'D') ADVANCE(663); + if (lookahead == 'S') ADVANCE(664); END_STATE(); case 549: - if (lookahead == 'N') ADVANCE(639); + if (lookahead == 'Y') ADVANCE(665); END_STATE(); case 550: - if (lookahead == 'N') ADVANCE(640); + if (lookahead == 'I') ADVANCE(666); END_STATE(); case 551: - if (lookahead == 'N') ADVANCE(641); + if (lookahead == '_') ADVANCE(667); END_STATE(); case 552: - if (lookahead == 'I') ADVANCE(642); - if (lookahead == 'U') ADVANCE(643); + if (lookahead == 'T') ADVANCE(668); END_STATE(); case 553: - if (lookahead == 'u') ADVANCE(644); + if (lookahead == 'H') ADVANCE(669); END_STATE(); case 554: - if (lookahead == 'l') ADVANCE(645); + if (lookahead == 'I') ADVANCE(670); END_STATE(); case 555: - if (lookahead == 'e') ADVANCE(646); + if (lookahead == 'U') ADVANCE(671); END_STATE(); case 556: - if (lookahead == 'l') ADVANCE(647); + if (lookahead == 'C') ADVANCE(672); + if (lookahead == 'T') ADVANCE(673); END_STATE(); case 557: - if (lookahead == 'c') ADVANCE(648); + if (lookahead == 'P') ADVANCE(674); END_STATE(); case 558: - if (lookahead == 'l') ADVANCE(649); + if (lookahead == 'V') ADVANCE(675); END_STATE(); case 559: - if (lookahead == 'l') ADVANCE(650); + if (lookahead == 'N') ADVANCE(676); END_STATE(); case 560: - if (lookahead == 'n') ADVANCE(651); + if (lookahead == 'A') ADVANCE(677); END_STATE(); case 561: - if (lookahead == 'c') ADVANCE(652); + if (lookahead == 'O') ADVANCE(678); END_STATE(); case 562: - if (lookahead == 'e') ADVANCE(653); + if (lookahead == 'A') ADVANCE(679); + if (lookahead == 'L') ADVANCE(680); END_STATE(); case 563: - ACCEPT_TOKEN(anon_sym_co_await); + if (lookahead == 'O') ADVANCE(681); END_STATE(); case 564: - if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'I') ADVANCE(682); + if (lookahead == 'U') ADVANCE(683); END_STATE(); case 565: - ACCEPT_TOKEN(anon_sym_co_yield); + if (lookahead == 'O') ADVANCE(684); END_STATE(); case 566: - if (lookahead == 'r') ADVANCE(655); + if (lookahead == '_') ADVANCE(685); END_STATE(); case 567: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 's') ADVANCE(686); END_STATE(); case 568: - ACCEPT_TOKEN(anon_sym_decltype); + if (lookahead == 'f') ADVANCE(687); END_STATE(); case 569: - ACCEPT_TOKEN(anon_sym_explicit); + ACCEPT_TOKEN(anon_sym__Atomic); END_STATE(); case 570: - if (lookahead == 'e') ADVANCE(656); + if (lookahead == 'c') ADVANCE(688); END_STATE(); case 571: - ACCEPT_TOKEN(anon_sym_noexcept); + if (lookahead == 'l') ADVANCE(689); END_STATE(); case 572: - ACCEPT_TOKEN(anon_sym_operator); + if (lookahead == 'r') ADVANCE(690); END_STATE(); case 573: - ACCEPT_TOKEN(anon_sym_override); + if (lookahead == 'o') ADVANCE(691); END_STATE(); case 574: - if (lookahead == 'd') ADVANCE(657); + ACCEPT_TOKEN(anon_sym___asm__); END_STATE(); case 575: - ACCEPT_TOKEN(anon_sym_register); + if (lookahead == 'b') ADVANCE(692); END_STATE(); case 576: - ACCEPT_TOKEN(anon_sym_restrict); + ACCEPT_TOKEN(anon_sym___based); END_STATE(); case 577: - if (lookahead == 's') ADVANCE(658); + ACCEPT_TOKEN(anon_sym___cdecl); END_STATE(); case 578: - ACCEPT_TOKEN(anon_sym_template); + if (lookahead == 'l') ADVANCE(693); END_STATE(); case 579: - if (lookahead == 'o') ADVANCE(659); + if (lookahead == 'p') ADVANCE(694); END_STATE(); case 580: - ACCEPT_TOKEN(anon_sym_typename); + if (lookahead == 't') ADVANCE(695); END_STATE(); case 581: - ACCEPT_TOKEN(anon_sym_unsigned); + if (lookahead == 's') ADVANCE(696); END_STATE(); case 582: - ACCEPT_TOKEN(anon_sym_volatile); + if (lookahead == 'a') ADVANCE(697); END_STATE(); case 583: - if (lookahead == '_') ADVANCE(660); + if (lookahead == 'l') ADVANCE(698); END_STATE(); case 584: - if (lookahead == 'E') ADVANCE(661); + if (lookahead == 'i') ADVANCE(699); END_STATE(); case 585: - if (lookahead == 'N') ADVANCE(662); + if (lookahead == 'e') ADVANCE(700); END_STATE(); case 586: - if (lookahead == 'N') ADVANCE(663); + ACCEPT_TOKEN(anon_sym___leave); END_STATE(); case 587: - if (lookahead == '_') ADVANCE(664); + if (lookahead == 'i') ADVANCE(701); END_STATE(); case 588: - if (lookahead == 'S') ADVANCE(665); + if (lookahead == 'l') ADVANCE(702); END_STATE(); case 589: - if (lookahead == 'W') ADVANCE(666); + if (lookahead == 'a') ADVANCE(703); END_STATE(); case 590: - if (lookahead == 'A') ADVANCE(667); + if (lookahead == 'd') ADVANCE(704); END_STATE(); case 591: - if (lookahead == '_') ADVANCE(668); + if (lookahead == 'g') ADVANCE(705); END_STATE(); case 592: - if (lookahead == 'S') ADVANCE(669); + if (lookahead == 'r') ADVANCE(706); END_STATE(); case 593: - if (lookahead == 'B') ADVANCE(670); + if (lookahead == 'i') ADVANCE(707); END_STATE(); case 594: - if (lookahead == 'U') ADVANCE(671); + if (lookahead == 'f') ADVANCE(708); END_STATE(); case 595: - if (lookahead == 'U') ADVANCE(672); + if (lookahead == 'n') ADVANCE(709); END_STATE(); case 596: - if (lookahead == 'H') ADVANCE(673); + ACCEPT_TOKEN(anon_sym_alignas); END_STATE(); case 597: - if (lookahead == 'T') ADVANCE(674); + ACCEPT_TOKEN(anon_sym_alignof); END_STATE(); case 598: - if (lookahead == 'A') ADVANCE(675); - if (lookahead == 'N') ADVANCE(676); - if (lookahead == 'S') ADVANCE(677); - if (lookahead == 'U') ADVANCE(678); + if (lookahead == 't') ADVANCE(710); END_STATE(); case 599: - if (lookahead == 'A') ADVANCE(679); - if (lookahead == 'C') ADVANCE(680); + if (lookahead == 'r') ADVANCE(711); END_STATE(); case 600: - if (lookahead == 'C') ADVANCE(681); + if (lookahead == 'd') ADVANCE(712); END_STATE(); case 601: - if (lookahead == 'I') ADVANCE(682); + ACCEPT_TOKEN(anon_sym_concept); END_STATE(); case 602: - if (lookahead == 'O') ADVANCE(683); + if (lookahead == 'a') ADVANCE(713); END_STATE(); case 603: - if (lookahead == 'A') ADVANCE(684); + if (lookahead == 'p') ADVANCE(714); END_STATE(); case 604: - if (lookahead == 'F') ADVANCE(685); + if (lookahead == 'i') ADVANCE(715); END_STATE(); case 605: - if (lookahead == 'A') ADVANCE(686); + if (lookahead == 'e') ADVANCE(716); END_STATE(); case 606: - if (lookahead == '_') ADVANCE(687); + if (lookahead == 'e') ADVANCE(717); END_STATE(); case 607: - if (lookahead == 'A') ADVANCE(688); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 608: - if (lookahead == 'O') ADVANCE(689); - if (lookahead == 'R') ADVANCE(690); - if (lookahead == 'U') ADVANCE(691); + ACCEPT_TOKEN(anon_sym_defined); END_STATE(); case 609: - if (lookahead == '_') ADVANCE(692); + if (lookahead == 't') ADVANCE(718); END_STATE(); case 610: - if (lookahead == '_') ADVANCE(693); + ACCEPT_TOKEN(anon_sym_mutable); END_STATE(); case 611: - if (lookahead == 'A') ADVANCE(694); + if (lookahead == 'c') ADVANCE(719); END_STATE(); case 612: - if (lookahead == 'L') ADVANCE(695); + if (lookahead == 't') ADVANCE(720); END_STATE(); case 613: - if (lookahead == 'U') ADVANCE(696); + if (lookahead == 'n') ADVANCE(721); END_STATE(); case 614: - if (lookahead == 'E') ADVANCE(697); + ACCEPT_TOKEN(anon_sym_nullptr); END_STATE(); case 615: - if (lookahead == 'W') ADVANCE(698); + if (lookahead == 'f') ADVANCE(722); END_STATE(); case 616: - if (lookahead == 'A') ADVANCE(699); + if (lookahead == 'r') ADVANCE(723); END_STATE(); case 617: - if (lookahead == 'E') ADVANCE(700); + if (lookahead == 'e') ADVANCE(724); END_STATE(); case 618: - if (lookahead == 'U') ADVANCE(701); + ACCEPT_TOKEN(anon_sym_private); END_STATE(); case 619: - if (lookahead == 'D') ADVANCE(702); + if (lookahead == 'e') ADVANCE(725); END_STATE(); case 620: - if (lookahead == 'I') ADVANCE(703); + if (lookahead == 'r') ADVANCE(726); END_STATE(); case 621: - if (lookahead == 'N') ADVANCE(704); + if (lookahead == 's') ADVANCE(727); END_STATE(); case 622: - if (lookahead == 'N') ADVANCE(705); + if (lookahead == 't') ADVANCE(728); END_STATE(); case 623: - if (lookahead == 'U') ADVANCE(706); + if (lookahead == 'a') ADVANCE(729); END_STATE(); case 624: - if (lookahead == 'G') ADVANCE(707); + if (lookahead == 'e') ADVANCE(730); END_STATE(); case 625: - if (lookahead == 'I') ADVANCE(708); + if (lookahead == 'l') ADVANCE(731); END_STATE(); case 626: - if (lookahead == 'N') ADVANCE(709); + ACCEPT_TOKEN(anon_sym_typedef); END_STATE(); case 627: - if (lookahead == 'D') ADVANCE(710); + if (lookahead == 'e') ADVANCE(732); END_STATE(); case 628: - if (lookahead == 'R') ADVANCE(711); + if (lookahead == 'd') ADVANCE(733); END_STATE(); case 629: - if (lookahead == '_') ADVANCE(712); + ACCEPT_TOKEN(anon_sym_virtual); END_STATE(); case 630: - if (lookahead == 'C') ADVANCE(713); + if (lookahead == 'e') ADVANCE(734); END_STATE(); case 631: - if (lookahead == 'R') ADVANCE(714); + if (lookahead == 'Y') ADVANCE(735); END_STATE(); case 632: - if (lookahead == 'A') ADVANCE(715); + if (lookahead == 'S') ADVANCE(736); END_STATE(); case 633: - if (lookahead == 'B') ADVANCE(716); + if (lookahead == 'I') ADVANCE(737); + if (lookahead == 'U') ADVANCE(738); END_STATE(); case 634: - if (lookahead == 'E') ADVANCE(717); + if (lookahead == 'C') ADVANCE(739); END_STATE(); case 635: - if (lookahead == '_') ADVANCE(718); + if (lookahead == 'N') ADVANCE(740); END_STATE(); case 636: - if (lookahead == 'D') ADVANCE(719); + if (lookahead == 'N') ADVANCE(741); END_STATE(); case 637: - if (lookahead == 'C') ADVANCE(720); + if (lookahead == 'C') ADVANCE(742); + if (lookahead == 'W') ADVANCE(743); END_STATE(); case 638: - if (lookahead == 'L') ADVANCE(721); + if (lookahead == 'Y') ADVANCE(744); END_STATE(); case 639: - if (lookahead == 'S') ADVANCE(722); + if (lookahead == '_') ADVANCE(745); END_STATE(); case 640: - if (lookahead == 'W') ADVANCE(723); + if (lookahead == 'R') ADVANCE(746); END_STATE(); case 641: - if (lookahead == 'L') ADVANCE(724); + ACCEPT_TOKEN(anon_sym_MOZ_COLD); END_STATE(); case 642: - if (lookahead == 'N') ADVANCE(725); + if (lookahead == '_') ADVANCE(747); END_STATE(); case 643: - if (lookahead == 'N') ADVANCE(726); + if (lookahead == 'T') ADVANCE(748); END_STATE(); case 644: - if (lookahead == 't') ADVANCE(727); + if (lookahead == 'A') ADVANCE(749); END_STATE(); case 645: - ACCEPT_TOKEN(anon_sym___clrcall); + if (lookahead == '_') ADVANCE(750); END_STATE(); case 646: - if (lookahead == 'c') ADVANCE(728); + if (lookahead == '_') ADVANCE(751); END_STATE(); case 647: - if (lookahead == 'l') ADVANCE(729); + if (lookahead == 'I') ADVANCE(752); END_STATE(); case 648: - if (lookahead == 't') ADVANCE(730); + if (lookahead == 'R') ADVANCE(753); END_STATE(); case 649: - ACCEPT_TOKEN(anon_sym___stdcall); + if (lookahead == '_') ADVANCE(754); END_STATE(); case 650: - if (lookahead == 'l') ADVANCE(731); + if (lookahead == 'L') ADVANCE(755); END_STATE(); case 651: - if (lookahead == 'e') ADVANCE(732); + if (lookahead == 'E') ADVANCE(756); END_STATE(); case 652: - if (lookahead == 'a') ADVANCE(733); + if (lookahead == 'M') ADVANCE(757); END_STATE(); case 653: - if (lookahead == 'd') ADVANCE(734); + if (lookahead == 'E') ADVANCE(758); END_STATE(); case 654: - ACCEPT_TOKEN(anon_sym_co_return); + if (lookahead == 'C') ADVANCE(759); END_STATE(); case 655: - ACCEPT_TOKEN(anon_sym_constexpr); + if (lookahead == '_') ADVANCE(760); END_STATE(); case 656: - ACCEPT_TOKEN(anon_sym_namespace); + if (lookahead == 'S') ADVANCE(761); END_STATE(); case 657: - ACCEPT_TOKEN(anon_sym_protected); + if (lookahead == 'R') ADVANCE(762); END_STATE(); case 658: - if (lookahead == 's') ADVANCE(735); + if (lookahead == 'E') ADVANCE(763); END_STATE(); case 659: - if (lookahead == 'c') ADVANCE(736); + if (lookahead == 'U') ADVANCE(764); END_STATE(); case 660: - if (lookahead == 'I') ADVANCE(737); - if (lookahead == 'U') ADVANCE(738); + if (lookahead == 'A') ADVANCE(765); + if (lookahead == 'M') ADVANCE(766); + if (lookahead == 'O') ADVANCE(767); + if (lookahead == 'P') ADVANCE(768); + if (lookahead == 'T') ADVANCE(769); END_STATE(); case 661: - if (lookahead == 'T') ADVANCE(739); + if (lookahead == 'T') ADVANCE(770); END_STATE(); case 662: - if (lookahead == 'S') ADVANCE(740); + if (lookahead == 'D') ADVANCE(771); + if (lookahead == 'R') ADVANCE(772); END_STATE(); case 663: - if (lookahead == 'W') ADVANCE(741); + if (lookahead == 'A') ADVANCE(773); END_STATE(); case 664: - if (lookahead == 'A') ADVANCE(742); + if (lookahead == 'A') ADVANCE(774); END_STATE(); case 665: - if (lookahead == 'P') ADVANCE(743); + if (lookahead == '_') ADVANCE(775); END_STATE(); case 666: - if (lookahead == 'R') ADVANCE(744); + if (lookahead == 'N') ADVANCE(776); END_STATE(); case 667: - if (lookahead == 'T') ADVANCE(745); + if (lookahead == 'D') ADVANCE(777); END_STATE(); case 668: - if (lookahead == 'T') ADVANCE(746); + if (lookahead == 'E') ADVANCE(778); END_STATE(); case 669: - if (lookahead == '_') ADVANCE(747); + if (lookahead == '_') ADVANCE(779); END_STATE(); case 670: - if (lookahead == 'L') ADVANCE(748); + ACCEPT_TOKEN(anon_sym_MOZ_RAII); END_STATE(); case 671: - if (lookahead == 'N') ADVANCE(749); + if (lookahead == 'I') ADVANCE(780); END_STATE(); case 672: - if (lookahead == 'S') ADVANCE(750); + if (lookahead == 'K') ADVANCE(781); END_STATE(); case 673: - if (lookahead == 'R') ADVANCE(751); + if (lookahead == 'I') ADVANCE(782); END_STATE(); case 674: - if (lookahead == '_') ADVANCE(752); + if (lookahead == 'O') ADVANCE(783); END_STATE(); case 675: - if (lookahead == 'N') ADVANCE(753); - if (lookahead == 'S') ADVANCE(754); + if (lookahead == 'I') ADVANCE(784); END_STATE(); case 676: - if (lookahead == 'E') ADVANCE(755); - if (lookahead == 'O') ADVANCE(756); + if (lookahead == '_') ADVANCE(785); END_STATE(); case 677: - if (lookahead == 'I') ADVANCE(757); + if (lookahead == 'F') ADVANCE(786); END_STATE(); case 678: - if (lookahead == 'N') ADVANCE(758); + if (lookahead == 'M') ADVANCE(787); END_STATE(); case 679: - if (lookahead == 'L') ADVANCE(759); + if (lookahead == 'N') ADVANCE(788); END_STATE(); case 680: - if (lookahead == 'L') ADVANCE(760); + if (lookahead == 'O') ADVANCE(789); END_STATE(); case 681: - if (lookahead == 'I') ADVANCE(761); + if (lookahead == 'N') ADVANCE(790); END_STATE(); case 682: - if (lookahead == 'T') ADVANCE(762); + if (lookahead == 'N') ADVANCE(791); END_STATE(); case 683: - if (lookahead == 'U') ADVANCE(763); + if (lookahead == 'N') ADVANCE(792); END_STATE(); case 684: - if (lookahead == 'S') ADVANCE(764); + if (lookahead == 'N') ADVANCE(793); END_STATE(); case 685: - if (lookahead == 'P') ADVANCE(765); + if (lookahead == 'I') ADVANCE(794); + if (lookahead == 'U') ADVANCE(795); END_STATE(); case 686: - if (lookahead == 'R') ADVANCE(766); + ACCEPT_TOKEN(anon_sym__Alignas); END_STATE(); case 687: - if (lookahead == 'U') ADVANCE(767); + ACCEPT_TOKEN(anon_sym__Alignof); END_STATE(); case 688: - if (lookahead == 'L') ADVANCE(768); + ACCEPT_TOKEN(anon_sym__Generic); END_STATE(); case 689: - if (lookahead == 'V') ADVANCE(769); + ACCEPT_TOKEN(anon_sym__Nonnull); END_STATE(); case 690: - if (lookahead == 'E') ADVANCE(770); + if (lookahead == 'n') ADVANCE(796); END_STATE(); case 691: - if (lookahead == 'S') ADVANCE(771); + if (lookahead == 'f') ADVANCE(797); END_STATE(); case 692: - if (lookahead == 'M') ADVANCE(772); - if (lookahead == 'N') ADVANCE(773); + if (lookahead == 'u') ADVANCE(798); END_STATE(); case 693: - if (lookahead == 'I') ADVANCE(774); + if (lookahead == 'l') ADVANCE(799); END_STATE(); case 694: - if (lookahead == 'P') ADVANCE(775); + if (lookahead == 'e') ADVANCE(800); END_STATE(); case 695: - if (lookahead == 'L') ADVANCE(776); + ACCEPT_TOKEN(anon_sym___except); END_STATE(); case 696: - if (lookahead == 'T') ADVANCE(777); + if (lookahead == 'i') ADVANCE(801); END_STATE(); case 697: - if (lookahead == 'M') ADVANCE(778); + if (lookahead == 'l') ADVANCE(802); END_STATE(); case 698: - if (lookahead == 'N') ADVANCE(779); + if (lookahead == 'y') ADVANCE(803); END_STATE(); case 699: - if (lookahead == 'R') ADVANCE(780); + if (lookahead == 'n') ADVANCE(804); END_STATE(); case 700: - if (lookahead == 'M') ADVANCE(781); + ACCEPT_TOKEN(anon_sym___inline); + if (lookahead == '_') ADVANCE(805); END_STATE(); case 701: - if (lookahead == 'R') ADVANCE(782); + if (lookahead == 'c') ADVANCE(806); END_STATE(); case 702: - if (lookahead == 'R') ADVANCE(783); + if (lookahead == 'l') ADVANCE(807); END_STATE(); case 703: - if (lookahead == 'T') ADVANCE(784); + if (lookahead == 'l') ADVANCE(808); END_STATE(); case 704: - if (lookahead == 'G') ADVANCE(785); + ACCEPT_TOKEN(anon_sym___thread); END_STATE(); case 705: - if (lookahead == 'I') ADVANCE(786); + if (lookahead == 'n') ADVANCE(809); END_STATE(); case 706: - if (lookahead == 'S') ADVANCE(787); + if (lookahead == 'c') ADVANCE(810); END_STATE(); case 707: - if (lookahead == '_') ADVANCE(788); + if (lookahead == 'l') ADVANCE(811); END_STATE(); case 708: - if (lookahead == 'S') ADVANCE(789); + ACCEPT_TOKEN(anon_sym__alignof); END_STATE(); case 709: - if (lookahead == 'D') ADVANCE(790); + if (lookahead == 'e') ADVANCE(812); END_STATE(); case 710: - if (lookahead == 'I') ADVANCE(791); + ACCEPT_TOKEN(anon_sym_co_await); END_STATE(); case 711: - if (lookahead == 'E') ADVANCE(792); + if (lookahead == 'n') ADVANCE(813); END_STATE(); case 712: - if (lookahead == 'C') ADVANCE(793); + ACCEPT_TOKEN(anon_sym_co_yield); END_STATE(); case 713: - if (lookahead == '_') ADVANCE(794); + if (lookahead == 'l') ADVANCE(814); END_STATE(); case 714: - if (lookahead == 'A') ADVANCE(795); + if (lookahead == 'r') ADVANCE(815); END_STATE(); case 715: - if (lookahead == 'L') ADVANCE(796); + if (lookahead == 't') ADVANCE(816); END_STATE(); case 716: - if (lookahead == 'L') ADVANCE(797); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 717: - if (lookahead == '_') ADVANCE(798); + ACCEPT_TOKEN(anon_sym_decltype); END_STATE(); case 718: - if (lookahead == 'A') ADVANCE(799); + ACCEPT_TOKEN(anon_sym_explicit); END_STATE(); case 719: - if (lookahead == '_') ADVANCE(800); + if (lookahead == 'e') ADVANCE(817); END_STATE(); case 720: - if (lookahead == 'K') ADVANCE(801); + ACCEPT_TOKEN(anon_sym_noexcept); END_STATE(); case 721: - if (lookahead == 'Y') ADVANCE(802); + ACCEPT_TOKEN(anon_sym_noreturn); END_STATE(); case 722: - if (lookahead == 'P') ADVANCE(803); + ACCEPT_TOKEN(anon_sym_offsetof); END_STATE(); case 723: - if (lookahead == 'R') ADVANCE(804); + ACCEPT_TOKEN(anon_sym_operator); END_STATE(); case 724: - if (lookahead == 'Y') ADVANCE(805); + ACCEPT_TOKEN(anon_sym_override); END_STATE(); case 725: - if (lookahead == 'S') ADVANCE(806); + if (lookahead == 'd') ADVANCE(818); END_STATE(); case 726: - if (lookahead == 'W') ADVANCE(807); + ACCEPT_TOKEN(anon_sym_register); END_STATE(); case 727: - if (lookahead == 'e') ADVANCE(808); + ACCEPT_TOKEN(anon_sym_requires); END_STATE(); case 728: - ACCEPT_TOKEN(anon_sym___declspec); + ACCEPT_TOKEN(anon_sym_restrict); END_STATE(); case 729: - ACCEPT_TOKEN(anon_sym___fastcall); + if (lookahead == 's') ADVANCE(819); END_STATE(); case 730: - ACCEPT_TOKEN(sym_ms_restrict_modifier); + ACCEPT_TOKEN(anon_sym_template); END_STATE(); case 731: - ACCEPT_TOKEN(anon_sym___thiscall); + if (lookahead == 'o') ADVANCE(820); END_STATE(); case 732: - if (lookahead == 'd') ADVANCE(809); + ACCEPT_TOKEN(anon_sym_typename); END_STATE(); case 733: - if (lookahead == 'l') ADVANCE(810); + ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); case 734: - ACCEPT_TOKEN(anon_sym__unaligned); + ACCEPT_TOKEN(anon_sym_volatile); END_STATE(); case 735: - if (lookahead == 'e') ADVANCE(811); + if (lookahead == '_') ADVANCE(821); END_STATE(); case 736: - if (lookahead == 'a') ADVANCE(812); + if (lookahead == 'E') ADVANCE(822); END_STATE(); case 737: - if (lookahead == 'N') ADVANCE(813); + if (lookahead == 'N') ADVANCE(823); END_STATE(); case 738: - if (lookahead == 'N') ADVANCE(814); + if (lookahead == 'N') ADVANCE(824); END_STATE(); case 739: - if (lookahead == '_') ADVANCE(815); + if (lookahead == '_') ADVANCE(825); END_STATE(); case 740: - if (lookahead == 'P') ADVANCE(816); + if (lookahead == 'S') ADVANCE(826); END_STATE(); case 741: - if (lookahead == 'R') ADVANCE(817); + if (lookahead == 'W') ADVANCE(827); END_STATE(); case 742: - if (lookahead == 'P') ADVANCE(818); + if (lookahead == 'A') ADVANCE(828); END_STATE(); case 743: - if (lookahead == 'E') ADVANCE(819); + if (lookahead == '_') ADVANCE(829); END_STATE(); case 744: - if (lookahead == 'A') ADVANCE(820); + if (lookahead == 'S') ADVANCE(830); END_STATE(); case 745: - if (lookahead == 'O') ADVANCE(821); + if (lookahead == 'B') ADVANCE(831); END_STATE(); case 746: - if (lookahead == 'E') ADVANCE(822); + if (lookahead == 'U') ADVANCE(832); END_STATE(); case 747: - if (lookahead == 'I') ADVANCE(823); + if (lookahead == 'U') ADVANCE(833); END_STATE(); case 748: - if (lookahead == 'A') ADVANCE(824); + if (lookahead == 'H') ADVANCE(834); END_STATE(); case 749: - if (lookahead == '_') ADVANCE(825); + if (lookahead == 'T') ADVANCE(835); END_STATE(); case 750: - if (lookahead == 'E') ADVANCE(826); + if (lookahead == 'A') ADVANCE(836); + if (lookahead == 'N') ADVANCE(837); + if (lookahead == 'S') ADVANCE(838); + if (lookahead == 'U') ADVANCE(839); END_STATE(); case 751: - if (lookahead == 'O') ADVANCE(827); + if (lookahead == 'A') ADVANCE(840); + if (lookahead == 'C') ADVANCE(841); END_STATE(); case 752: - if (lookahead == 'P') ADVANCE(828); + if (lookahead == 'C') ADVANCE(842); END_STATE(); case 753: - if (lookahead == 'A') ADVANCE(829); + if (lookahead == 'I') ADVANCE(843); END_STATE(); case 754: - if (lookahead == 'A') ADVANCE(830); + if (lookahead == 'O') ADVANCE(844); END_STATE(); case 755: - if (lookahead == 'V') ADVANCE(831); + if (lookahead == 'A') ADVANCE(845); END_STATE(); case 756: - if (lookahead == 'R') ADVANCE(832); - if (lookahead == '_') ADVANCE(833); + if (lookahead == 'F') ADVANCE(846); END_STATE(); case 757: - if (lookahead == 'G') ADVANCE(834); + if (lookahead == 'A') ADVANCE(847); END_STATE(); case 758: - if (lookahead == 'S') ADVANCE(835); + if (lookahead == '_') ADVANCE(848); END_STATE(); case 759: - if (lookahead == 'L') ADVANCE(836); + if (lookahead == 'A') ADVANCE(849); END_STATE(); case 760: - if (lookahead == 'A') ADVANCE(837); + if (lookahead == 'O') ADVANCE(850); + if (lookahead == 'R') ADVANCE(851); + if (lookahead == 'U') ADVANCE(852); END_STATE(); case 761: - if (lookahead == 'T') ADVANCE(838); + if (lookahead == '_') ADVANCE(853); END_STATE(); case 762: - if (lookahead == '_') ADVANCE(839); + if (lookahead == '_') ADVANCE(854); END_STATE(); case 763: - if (lookahead == 'T') ADVANCE(840); + if (lookahead == 'A') ADVANCE(855); END_STATE(); case 764: - if (lookahead == 'S') ADVANCE(841); + if (lookahead == 'L') ADVANCE(856); END_STATE(); case 765: - if (lookahead == 'T') ADVANCE(842); + if (lookahead == 'U') ADVANCE(857); END_STATE(); case 766: - if (lookahead == 'T') ADVANCE(843); + if (lookahead == 'E') ADVANCE(858); END_STATE(); case 767: - if (lookahead == 'N') ADVANCE(844); + if (lookahead == 'W') ADVANCE(859); END_STATE(); case 768: - if (lookahead == 'L') ADVANCE(845); + if (lookahead == 'A') ADVANCE(860); END_STATE(); case 769: - if (lookahead == 'E') ADVANCE(846); + if (lookahead == 'E') ADVANCE(861); END_STATE(); case 770: - if (lookahead == 'T') ADVANCE(847); + if (lookahead == 'U') ADVANCE(862); END_STATE(); case 771: - if (lookahead == 'E') ADVANCE(848); + if (lookahead == 'D') ADVANCE(863); END_STATE(); case 772: - if (lookahead == 'E') ADVANCE(849); + if (lookahead == 'I') ADVANCE(864); END_STATE(); case 773: - if (lookahead == 'O') ADVANCE(850); + if (lookahead == 'N') ADVANCE(865); END_STATE(); case 774: - if (lookahead == 'N') ADVANCE(851); + if (lookahead == 'N') ADVANCE(866); END_STATE(); case 775: - if (lookahead == '_') ADVANCE(852); + if (lookahead == 'U') ADVANCE(867); END_STATE(); case 776: - ACCEPT_TOKEN(anon_sym_MOZ_NONNULL); - if (lookahead == '_') ADVANCE(853); + if (lookahead == 'G') ADVANCE(868); END_STATE(); case 777: - if (lookahead == 'O') ADVANCE(854); + if (lookahead == 'I') ADVANCE(869); END_STATE(); case 778: - if (lookahead == 'M') ADVANCE(855); + if (lookahead == 'N') ADVANCE(870); END_STATE(); case 779: - if (lookahead == 'I') ADVANCE(856); + if (lookahead == 'D') ADVANCE(871); END_STATE(); case 780: - if (lookahead == 'A') ADVANCE(857); + if (lookahead == 'R') ADVANCE(872); END_STATE(); case 781: - if (lookahead == 'P') ADVANCE(858); + if (lookahead == '_') ADVANCE(873); END_STATE(); case 782: - if (lookahead == 'N') ADVANCE(859); + if (lookahead == 'C') ADVANCE(874); END_STATE(); case 783: - if (lookahead == 'E') ADVANCE(860); + if (lookahead == 'R') ADVANCE(875); END_STATE(); case 784: - if (lookahead == 'H') ADVANCE(861); + if (lookahead == 'A') ADVANCE(876); END_STATE(); case 785: - if (lookahead == 'L') ADVANCE(862); + if (lookahead == 'B') ADVANCE(877); END_STATE(); case 786: - if (lookahead == 'T') ADVANCE(863); + if (lookahead == 'E') ADVANCE(878); END_STATE(); case 787: - if (lookahead == 'E') ADVANCE(864); + if (lookahead == '_') ADVANCE(879); END_STATE(); case 788: - if (lookahead == 'R') ADVANCE(865); + if (lookahead == 'D') ADVANCE(880); END_STATE(); case 789: - if (lookahead == 'A') ADVANCE(866); + if (lookahead == 'C') ADVANCE(881); END_STATE(); case 790: - if (lookahead == '_') ADVANCE(867); + if (lookahead == 'L') ADVANCE(882); END_STATE(); case 791: - if (lookahead == 'S') ADVANCE(868); + if (lookahead == 'S') ADVANCE(883); END_STATE(); case 792: - if (lookahead == 'D') ADVANCE(869); + if (lookahead == 'W') ADVANCE(884); END_STATE(); case 793: - if (lookahead == 'L') ADVANCE(870); + if (lookahead == 'L') ADVANCE(885); END_STATE(); case 794: - if (lookahead == 'C') ADVANCE(871); - if (lookahead == 'L') ADVANCE(872); + if (lookahead == 'N') ADVANCE(886); END_STATE(); case 795: - if (lookahead == 'R') ADVANCE(873); + if (lookahead == 'N') ADVANCE(887); END_STATE(); case 796: - if (lookahead == '_') ADVANCE(874); + ACCEPT_TOKEN(anon_sym__Noreturn); END_STATE(); case 797: - if (lookahead == 'A') ADVANCE(875); + ACCEPT_TOKEN(anon_sym___alignof); + if (lookahead == '_') ADVANCE(888); END_STATE(); case 798: - if (lookahead == 'R') ADVANCE(876); + if (lookahead == 't') ADVANCE(889); END_STATE(); case 799: - if (lookahead == 'B') ADVANCE(877); + ACCEPT_TOKEN(anon_sym___clrcall); END_STATE(); case 800: - if (lookahead == 'S') ADVANCE(878); + if (lookahead == 'c') ADVANCE(890); END_STATE(); case 801: - if (lookahead == 'L') ADVANCE(879); + if (lookahead == 'o') ADVANCE(891); END_STATE(); case 802: - if (lookahead == '_') ADVANCE(880); + if (lookahead == 'l') ADVANCE(892); END_STATE(); case 803: - if (lookahead == 'E') ADVANCE(881); + ACCEPT_TOKEN(anon_sym___finally); END_STATE(); case 804: - if (lookahead == 'A') ADVANCE(882); + if (lookahead == 'l') ADVANCE(893); END_STATE(); case 805: - if (lookahead == '_') ADVANCE(883); + if (lookahead == '_') ADVANCE(894); END_STATE(); case 806: - if (lookahead == 'P') ADVANCE(884); + if (lookahead == 't') ADVANCE(895); END_STATE(); case 807: - if (lookahead == 'R') ADVANCE(885); + ACCEPT_TOKEN(anon_sym___stdcall); END_STATE(); case 808: - if (lookahead == '_') ADVANCE(886); + if (lookahead == 'l') ADVANCE(896); END_STATE(); case 809: - ACCEPT_TOKEN(anon_sym___unaligned); + if (lookahead == 'e') ADVANCE(897); END_STATE(); case 810: - if (lookahead == 'l') ADVANCE(887); + if (lookahead == 'a') ADVANCE(898); END_STATE(); case 811: - if (lookahead == 'r') ADVANCE(888); + if (lookahead == 'e') ADVANCE(899); END_STATE(); case 812: - if (lookahead == 'l') ADVANCE(889); + if (lookahead == 'd') ADVANCE(900); END_STATE(); case 813: - if (lookahead == 'S') ADVANCE(890); + ACCEPT_TOKEN(anon_sym_co_return); END_STATE(); case 814: - if (lookahead == 'W') ADVANCE(891); + ACCEPT_TOKEN(anon_sym_consteval); END_STATE(); case 815: - if (lookahead == 'A') ADVANCE(892); + ACCEPT_TOKEN(anon_sym_constexpr); END_STATE(); case 816: - if (lookahead == 'E') ADVANCE(893); + ACCEPT_TOKEN(anon_sym_constinit); END_STATE(); case 817: - if (lookahead == 'A') ADVANCE(894); + ACCEPT_TOKEN(anon_sym_namespace); END_STATE(); case 818: - if (lookahead == 'I') ADVANCE(895); + ACCEPT_TOKEN(anon_sym_protected); END_STATE(); case 819: - if (lookahead == 'C') ADVANCE(896); + if (lookahead == 's') ADVANCE(901); END_STATE(); case 820: - if (lookahead == 'P') ADVANCE(897); + if (lookahead == 'c') ADVANCE(902); END_STATE(); case 821: - if (lookahead == 'R') ADVANCE(898); + if (lookahead == 'I') ADVANCE(903); + if (lookahead == 'U') ADVANCE(904); END_STATE(); case 822: - if (lookahead == 'M') ADVANCE(899); + if (lookahead == 'T') ADVANCE(905); END_STATE(); case 823: - if (lookahead == 'N') ADVANCE(900); + if (lookahead == 'S') ADVANCE(906); END_STATE(); case 824: - if (lookahead == 'C') ADVANCE(901); + if (lookahead == 'W') ADVANCE(907); END_STATE(); case 825: - if (lookahead == 'S') ADVANCE(902); + if (lookahead == 'A') ADVANCE(908); END_STATE(); case 826: - if (lookahead == '_') ADVANCE(903); + if (lookahead == 'P') ADVANCE(909); END_STATE(); case 827: - if (lookahead == 'U') ADVANCE(904); + if (lookahead == 'R') ADVANCE(910); END_STATE(); case 828: - if (lookahead == 'R') ADVANCE(905); + if (lookahead == 'T') ADVANCE(911); END_STATE(); case 829: - if (lookahead == 'L') ADVANCE(906); + if (lookahead == 'T') ADVANCE(912); END_STATE(); case 830: - if (lookahead == 'N') ADVANCE(907); + if (lookahead == '_') ADVANCE(913); END_STATE(); case 831: - if (lookahead == 'E') ADVANCE(908); + if (lookahead == 'L') ADVANCE(914); END_STATE(); case 832: - if (lookahead == 'E') ADVANCE(909); + if (lookahead == 'N') ADVANCE(915); END_STATE(); case 833: - if (lookahead == 'S') ADVANCE(910); + if (lookahead == 'S') ADVANCE(916); END_STATE(); case 834: - if (lookahead == 'N') ADVANCE(911); + if (lookahead == 'R') ADVANCE(917); END_STATE(); case 835: - if (lookahead == 'I') ADVANCE(912); + if (lookahead == '_') ADVANCE(918); END_STATE(); case 836: - if (lookahead == 'O') ADVANCE(913); + if (lookahead == 'N') ADVANCE(919); + if (lookahead == 'S') ADVANCE(920); END_STATE(); case 837: - if (lookahead == 'S') ADVANCE(914); + if (lookahead == 'E') ADVANCE(921); + if (lookahead == 'O') ADVANCE(922); END_STATE(); case 838: - ACCEPT_TOKEN(anon_sym_MOZ_IMPLICIT); + if (lookahead == 'I') ADVANCE(923); END_STATE(); case 839: - if (lookahead == 'T') ADVANCE(915); + if (lookahead == 'N') ADVANCE(924); END_STATE(); case 840: - if (lookahead == 'S') ADVANCE(916); + if (lookahead == 'L') ADVANCE(925); END_STATE(); case 841: - if (lookahead == '_') ADVANCE(917); + if (lookahead == 'L') ADVANCE(926); END_STATE(); case 842: - if (lookahead == 'R') ADVANCE(918); + if (lookahead == 'I') ADVANCE(927); END_STATE(); case 843: - if (lookahead == 'P') ADVANCE(919); + if (lookahead == 'T') ADVANCE(928); END_STATE(); case 844: - if (lookahead == 'U') ADVANCE(920); + if (lookahead == 'U') ADVANCE(929); END_STATE(); case 845: - if (lookahead == '_') ADVANCE(921); + if (lookahead == 'S') ADVANCE(930); END_STATE(); case 846: - if (lookahead == 'R') ADVANCE(922); + if (lookahead == 'P') ADVANCE(931); END_STATE(); case 847: - if (lookahead == 'U') ADVANCE(923); + if (lookahead == 'R') ADVANCE(932); END_STATE(); case 848: - ACCEPT_TOKEN(anon_sym_MOZ_MUST_USE); - if (lookahead == '_') ADVANCE(924); + if (lookahead == 'U') ADVANCE(933); END_STATE(); case 849: - if (lookahead == 'M') ADVANCE(925); + if (lookahead == 'L') ADVANCE(934); END_STATE(); case 850: - if (lookahead == '_') ADVANCE(926); + if (lookahead == 'V') ADVANCE(935); END_STATE(); case 851: - if (lookahead == 'L') ADVANCE(927); + if (lookahead == 'E') ADVANCE(936); END_STATE(); case 852: - if (lookahead == 'C') ADVANCE(928); + if (lookahead == 'S') ADVANCE(937); END_STATE(); case 853: - if (lookahead == 'R') ADVANCE(929); + if (lookahead == 'M') ADVANCE(938); + if (lookahead == 'N') ADVANCE(939); END_STATE(); case 854: - if (lookahead == 'A') ADVANCE(930); + if (lookahead == 'I') ADVANCE(940); END_STATE(); case 855: - if (lookahead == 'O') ADVANCE(931); + if (lookahead == 'P') ADVANCE(941); END_STATE(); case 856: - if (lookahead == 'N') ADVANCE(932); + if (lookahead == 'L') ADVANCE(942); END_STATE(); case 857: - if (lookahead == 'M') ADVANCE(933); + if (lookahead == 'T') ADVANCE(943); END_STATE(); case 858: - if (lookahead == 'O') ADVANCE(934); + if (lookahead == 'M') ADVANCE(944); END_STATE(); case 859: - ACCEPT_TOKEN(anon_sym_MOZ_NORETURN); - if (lookahead == '_') ADVANCE(935); + if (lookahead == 'N') ADVANCE(945); END_STATE(); case 860: - if (lookahead == 'F') ADVANCE(936); + if (lookahead == 'R') ADVANCE(946); END_STATE(); case 861: - if (lookahead == 'M') ADVANCE(937); + if (lookahead == 'M') ADVANCE(947); END_STATE(); case 862: - if (lookahead == 'I') ADVANCE(938); + if (lookahead == 'R') ADVANCE(948); END_STATE(); case 863: - if (lookahead == 'I') ADVANCE(939); + if (lookahead == 'R') ADVANCE(949); END_STATE(); case 864: - if (lookahead == 'D') ADVANCE(940); + if (lookahead == 'T') ADVANCE(950); END_STATE(); case 865: - if (lookahead == 'E') ADVANCE(941); + if (lookahead == 'G') ADVANCE(951); END_STATE(); case 866: - if (lookahead == 'B') ADVANCE(942); + if (lookahead == 'I') ADVANCE(952); END_STATE(); case 867: - if (lookahead == 'N') ADVANCE(943); + if (lookahead == 'S') ADVANCE(953); END_STATE(); case 868: - if (lookahead == 'A') ADVANCE(944); + if (lookahead == '_') ADVANCE(954); END_STATE(); case 869: - if (lookahead == '_') ADVANCE(945); + if (lookahead == 'S') ADVANCE(955); END_STATE(); case 870: - if (lookahead == 'A') ADVANCE(946); + if (lookahead == 'D') ADVANCE(956); END_STATE(); case 871: - if (lookahead == 'L') ADVANCE(947); + if (lookahead == 'I') ADVANCE(957); END_STATE(); case 872: - if (lookahead == 'O') ADVANCE(948); + if (lookahead == 'E') ADVANCE(958); END_STATE(); case 873: - if (lookahead == 'Y') ADVANCE(949); + if (lookahead == 'C') ADVANCE(959); END_STATE(); case 874: - if (lookahead == 'C') ADVANCE(950); + if (lookahead == '_') ADVANCE(960); END_STATE(); case 875: - if (lookahead == 'C') ADVANCE(951); + if (lookahead == 'A') ADVANCE(961); END_STATE(); case 876: - if (lookahead == 'E') ADVANCE(952); + if (lookahead == 'L') ADVANCE(962); END_STATE(); case 877: - if (lookahead == 'I') ADVANCE(953); + if (lookahead == 'L') ADVANCE(963); END_STATE(); case 878: - if (lookahead == 'E') ADVANCE(954); + if (lookahead == '_') ADVANCE(964); END_STATE(); case 879: - if (lookahead == 'E') ADVANCE(955); + if (lookahead == 'A') ADVANCE(965); END_STATE(); case 880: - if (lookahead == 'T') ADVANCE(956); + if (lookahead == '_') ADVANCE(966); END_STATE(); case 881: - if (lookahead == 'C') ADVANCE(957); + if (lookahead == 'K') ADVANCE(967); END_STATE(); case 882: - if (lookahead == 'P') ADVANCE(958); + if (lookahead == 'Y') ADVANCE(968); END_STATE(); case 883: - if (lookahead == 'T') ADVANCE(959); + if (lookahead == 'P') ADVANCE(969); END_STATE(); case 884: - if (lookahead == 'E') ADVANCE(960); + if (lookahead == 'R') ADVANCE(970); END_STATE(); case 885: - if (lookahead == 'A') ADVANCE(961); + if (lookahead == 'Y') ADVANCE(971); END_STATE(); case 886: - if (lookahead == '_') ADVANCE(962); + if (lookahead == 'S') ADVANCE(972); END_STATE(); case 887: - ACCEPT_TOKEN(anon_sym___vectorcall); + if (lookahead == 'W') ADVANCE(973); END_STATE(); case 888: - if (lookahead == 't') ADVANCE(963); + if (lookahead == '_') ADVANCE(974); END_STATE(); case 889: - ACCEPT_TOKEN(anon_sym_thread_local); + if (lookahead == 'e') ADVANCE(975); END_STATE(); case 890: - if (lookahead == 'P') ADVANCE(964); + ACCEPT_TOKEN(anon_sym___declspec); END_STATE(); case 891: - if (lookahead == 'R') ADVANCE(965); + if (lookahead == 'n') ADVANCE(976); END_STATE(); case 892: - if (lookahead == 'T') ADVANCE(966); + ACCEPT_TOKEN(anon_sym___fastcall); END_STATE(); case 893: - if (lookahead == 'C') ADVANCE(967); + if (lookahead == 'i') ADVANCE(977); END_STATE(); case 894: - if (lookahead == 'P') ADVANCE(968); + ACCEPT_TOKEN(anon_sym___inline__); END_STATE(); case 895: - ACCEPT_TOKEN(anon_sym_JS_PUBLIC_API); + ACCEPT_TOKEN(sym_ms_restrict_modifier); + if (lookahead == '_') ADVANCE(978); END_STATE(); case 896: - if (lookahead == 'T') ADVANCE(969); + ACCEPT_TOKEN(anon_sym___thiscall); END_STATE(); case 897: - ACCEPT_TOKEN(anon_sym_LS_TRY_UNWRAP); + if (lookahead == 'd') ADVANCE(979); END_STATE(); case 898: - ACCEPT_TOKEN(anon_sym_MOZ_ALLOCATOR); + if (lookahead == 'l') ADVANCE(980); END_STATE(); case 899: - if (lookahead == 'P') ADVANCE(970); + if (lookahead == '_') ADVANCE(981); END_STATE(); case 900: - if (lookahead == 'L') ADVANCE(971); + ACCEPT_TOKEN(anon_sym__unaligned); END_STATE(); case 901: - if (lookahead == 'K') ADVANCE(972); + if (lookahead == 'e') ADVANCE(982); END_STATE(); case 902: - if (lookahead == 'C') ADVANCE(973); + if (lookahead == 'a') ADVANCE(983); END_STATE(); case 903: - if (lookahead == 'G') ADVANCE(974); + if (lookahead == 'N') ADVANCE(984); END_STATE(); case 904: - if (lookahead == 'G') ADVANCE(975); + if (lookahead == 'N') ADVANCE(985); END_STATE(); case 905: - if (lookahead == 'I') ADVANCE(976); + if (lookahead == '_') ADVANCE(986); END_STATE(); case 906: - if (lookahead == 'Y') ADVANCE(977); + if (lookahead == 'P') ADVANCE(987); END_STATE(); case 907: - if (lookahead == '_') ADVANCE(978); + if (lookahead == 'R') ADVANCE(988); END_STATE(); case 908: - if (lookahead == 'R') ADVANCE(979); + if (lookahead == 'P') ADVANCE(989); END_STATE(); case 909: - if (lookahead == 'T') ADVANCE(980); + if (lookahead == 'E') ADVANCE(990); END_STATE(); case 910: - if (lookahead == 'A') ADVANCE(981); + if (lookahead == 'A') ADVANCE(991); END_STATE(); case 911: - if (lookahead == 'E') ADVANCE(982); + if (lookahead == 'O') ADVANCE(992); END_STATE(); case 912: - if (lookahead == 'G') ADVANCE(983); + if (lookahead == 'E') ADVANCE(993); END_STATE(); case 913: - if (lookahead == 'C') ADVANCE(984); + if (lookahead == 'I') ADVANCE(994); END_STATE(); case 914: - if (lookahead == 'S') ADVANCE(985); + if (lookahead == 'A') ADVANCE(995); END_STATE(); case 915: - if (lookahead == 'Y') ADVANCE(986); + if (lookahead == '_') ADVANCE(996); END_STATE(); case 916: - if (lookahead == 'I') ADVANCE(987); + if (lookahead == 'E') ADVANCE(997); END_STATE(); case 917: - if (lookahead == 'I') ADVANCE(988); + if (lookahead == 'O') ADVANCE(998); END_STATE(); case 918: - ACCEPT_TOKEN(anon_sym_MOZ_IS_REFPTR); + if (lookahead == 'P') ADVANCE(999); END_STATE(); case 919: - if (lookahead == 'T') ADVANCE(989); + if (lookahead == 'A') ADVANCE(1000); END_STATE(); case 920: - if (lookahead == 'S') ADVANCE(990); + if (lookahead == 'A') ADVANCE(1001); END_STATE(); case 921: - if (lookahead == 'A') ADVANCE(991); + if (lookahead == 'V') ADVANCE(1002); END_STATE(); case 922: - if (lookahead == 'R') ADVANCE(992); + if (lookahead == 'R') ADVANCE(1003); + if (lookahead == '_') ADVANCE(1004); END_STATE(); case 923: - if (lookahead == 'R') ADVANCE(993); + if (lookahead == 'G') ADVANCE(1005); END_STATE(); case 924: - if (lookahead == 'T') ADVANCE(994); + if (lookahead == 'S') ADVANCE(1006); END_STATE(); case 925: - if (lookahead == 'M') ADVANCE(995); + if (lookahead == 'L') ADVANCE(1007); END_STATE(); case 926: - if (lookahead == 'V') ADVANCE(996); + if (lookahead == 'A') ADVANCE(1008); END_STATE(); case 927: - if (lookahead == 'I') ADVANCE(997); + if (lookahead == 'T') ADVANCE(1009); END_STATE(); case 928: - if (lookahead == 'L') ADVANCE(998); + if (lookahead == '_') ADVANCE(1010); END_STATE(); case 929: - if (lookahead == 'E') ADVANCE(999); + if (lookahead == 'T') ADVANCE(1011); END_STATE(); case 930: - if (lookahead == 'B') ADVANCE(1000); + if (lookahead == 'S') ADVANCE(1012); END_STATE(); case 931: - if (lookahead == 'V') ADVANCE(1001); + if (lookahead == 'T') ADVANCE(1013); END_STATE(); case 932: - if (lookahead == 'G') ADVANCE(1002); + if (lookahead == 'T') ADVANCE(1014); END_STATE(); case 933: - ACCEPT_TOKEN(anon_sym_MOZ_NON_PARAM); + if (lookahead == 'N') ADVANCE(1015); END_STATE(); case 934: - if (lookahead == 'R') ADVANCE(1003); + if (lookahead == 'L') ADVANCE(1016); END_STATE(); case 935: - if (lookahead == 'P') ADVANCE(1004); + if (lookahead == 'E') ADVANCE(1017); END_STATE(); case 936: - if (lookahead == '_') ADVANCE(1005); + if (lookahead == 'T') ADVANCE(1018); END_STATE(); case 937: - if (lookahead == 'E') ADVANCE(1006); + if (lookahead == 'E') ADVANCE(1019); END_STATE(); case 938: - if (lookahead == 'N') ADVANCE(1007); + if (lookahead == 'E') ADVANCE(1020); END_STATE(); case 939: - if (lookahead == 'Z') ADVANCE(1008); + if (lookahead == 'O') ADVANCE(1021); END_STATE(); case 940: - if (lookahead == '_') ADVANCE(1009); + if (lookahead == 'N') ADVANCE(1022); END_STATE(); case 941: - if (lookahead == 'F') ADVANCE(1010); + if (lookahead == '_') ADVANCE(1023); END_STATE(); case 942: - if (lookahead == 'L') ADVANCE(1011); + ACCEPT_TOKEN(anon_sym_MOZ_NONNULL); + if (lookahead == '_') ADVANCE(1024); END_STATE(); case 943: - if (lookahead == 'O') ADVANCE(1012); + if (lookahead == 'O') ADVANCE(1025); END_STATE(); case 944: - if (lookahead == 'B') ADVANCE(1013); + if (lookahead == 'M') ADVANCE(1026); END_STATE(); case 945: - if (lookahead == 'B') ADVANCE(1014); + if (lookahead == 'I') ADVANCE(1027); END_STATE(); case 946: - if (lookahead == 'S') ADVANCE(1015); + if (lookahead == 'A') ADVANCE(1028); END_STATE(); case 947: - if (lookahead == 'A') ADVANCE(1016); + if (lookahead == 'P') ADVANCE(1029); END_STATE(); case 948: - if (lookahead == 'C') ADVANCE(1017); + if (lookahead == 'N') ADVANCE(1030); END_STATE(); case 949: - if (lookahead == '_') ADVANCE(1018); + if (lookahead == 'E') ADVANCE(1031); END_STATE(); case 950: - if (lookahead == 'T') ADVANCE(1019); + if (lookahead == 'H') ADVANCE(1032); END_STATE(); case 951: - if (lookahead == 'K') ADVANCE(1020); + if (lookahead == 'L') ADVANCE(1033); END_STATE(); case 952: - if (lookahead == 'F') ADVANCE(1021); + if (lookahead == 'T') ADVANCE(1034); END_STATE(); case 953: - ACCEPT_TOKEN(anon_sym_MOZ_XPCOM_ABI); + if (lookahead == 'E') ADVANCE(1035); END_STATE(); case 954: - if (lookahead == 'T') ADVANCE(1022); + if (lookahead == 'R') ADVANCE(1036); END_STATE(); case 955: - if (lookahead == 'S') ADVANCE(1023); + if (lookahead == 'A') ADVANCE(1037); END_STATE(); case 956: - if (lookahead == 'R') ADVANCE(1024); + if (lookahead == '_') ADVANCE(1038); END_STATE(); case 957: - if (lookahead == 'T') ADVANCE(1025); + if (lookahead == 'S') ADVANCE(1039); END_STATE(); case 958: - ACCEPT_TOKEN(anon_sym_QM_TRY_UNWRAP); + if (lookahead == 'D') ADVANCE(1040); END_STATE(); case 959: - if (lookahead == 'R') ADVANCE(1026); + if (lookahead == 'L') ADVANCE(1041); END_STATE(); case 960: - if (lookahead == 'C') ADVANCE(1027); + if (lookahead == 'C') ADVANCE(1042); + if (lookahead == 'L') ADVANCE(1043); END_STATE(); case 961: - if (lookahead == 'P') ADVANCE(1028); + if (lookahead == 'R') ADVANCE(1044); END_STATE(); case 962: - ACCEPT_TOKEN(anon_sym___attribute__); + if (lookahead == '_') ADVANCE(1045); END_STATE(); case 963: - ACCEPT_TOKEN(anon_sym_static_assert); + if (lookahead == 'A') ADVANCE(1046); END_STATE(); case 964: - if (lookahead == 'E') ADVANCE(1029); + if (lookahead == 'R') ADVANCE(1047); END_STATE(); case 965: - if (lookahead == 'A') ADVANCE(1030); + if (lookahead == 'B') ADVANCE(1048); END_STATE(); case 966: - if (lookahead == 'T') ADVANCE(1031); + if (lookahead == 'S') ADVANCE(1049); END_STATE(); case 967: - if (lookahead == 'T') ADVANCE(1032); + if (lookahead == 'L') ADVANCE(1050); END_STATE(); case 968: - ACCEPT_TOKEN(anon_sym_IDB_TRY_UNWRAP); + if (lookahead == '_') ADVANCE(1051); END_STATE(); case 969: - ACCEPT_TOKEN(anon_sym_LS_TRY_INSPECT); + if (lookahead == 'E') ADVANCE(1052); END_STATE(); case 970: - if (lookahead == 'O') ADVANCE(1033); + if (lookahead == 'A') ADVANCE(1053); END_STATE(); case 971: - if (lookahead == 'I') ADVANCE(1034); + if (lookahead == '_') ADVANCE(1054); END_STATE(); case 972: - if (lookahead == 'L') ADVANCE(1035); + if (lookahead == 'P') ADVANCE(1055); END_STATE(); case 973: - if (lookahead == 'R') ADVANCE(1036); + if (lookahead == 'R') ADVANCE(1056); END_STATE(); case 974: - if (lookahead == 'U') ADVANCE(1037); + ACCEPT_TOKEN(anon_sym___alignof__); END_STATE(); case 975: - if (lookahead == 'H') ADVANCE(1038); + ACCEPT_TOKEN(anon_sym___attribute); + if (lookahead == '_') ADVANCE(1057); END_STATE(); case 976: - if (lookahead == 'N') ADVANCE(1039); + if (lookahead == '_') ADVANCE(1058); END_STATE(); case 977: - if (lookahead == 'Z') ADVANCE(1040); + if (lookahead == 'n') ADVANCE(1059); END_STATE(); case 978: - if (lookahead == 'B') ADVANCE(1041); + if (lookahead == '_') ADVANCE(1060); END_STATE(); case 979: - if (lookahead == '_') ADVANCE(1042); + ACCEPT_TOKEN(anon_sym___unaligned); END_STATE(); case 980: - if (lookahead == 'U') ADVANCE(1043); + if (lookahead == 'l') ADVANCE(1061); END_STATE(); case 981: - if (lookahead == 'N') ADVANCE(1044); + if (lookahead == '_') ADVANCE(1062); END_STATE(); case 982: - if (lookahead == 'D') ADVANCE(1045); + if (lookahead == 'r') ADVANCE(1063); END_STATE(); case 983: - if (lookahead == 'N') ADVANCE(1046); + if (lookahead == 'l') ADVANCE(1064); END_STATE(); case 984: - if (lookahead == 'A') ADVANCE(1047); + if (lookahead == 'S') ADVANCE(1065); END_STATE(); case 985: - ACCEPT_TOKEN(anon_sym_MOZ_HEAP_CLASS); + if (lookahead == 'W') ADVANCE(1066); END_STATE(); case 986: - if (lookahead == 'P') ADVANCE(1048); + if (lookahead == 'A') ADVANCE(1067); END_STATE(); case 987: - if (lookahead == 'D') ADVANCE(1049); + if (lookahead == 'E') ADVANCE(1068); END_STATE(); case 988: - if (lookahead == 'N') ADVANCE(1050); + if (lookahead == 'A') ADVANCE(1069); END_STATE(); case 989: - if (lookahead == 'R') ADVANCE(1051); + if (lookahead == 'I') ADVANCE(1070); END_STATE(); case 990: - if (lookahead == 'E') ADVANCE(1052); + if (lookahead == 'C') ADVANCE(1071); END_STATE(); case 991: - if (lookahead == 'F') ADVANCE(1053); + if (lookahead == 'P') ADVANCE(1072); END_STATE(); case 992: - if (lookahead == 'I') ADVANCE(1054); + if (lookahead == 'R') ADVANCE(1073); END_STATE(); case 993: - if (lookahead == 'N') ADVANCE(1055); + if (lookahead == 'M') ADVANCE(1074); END_STATE(); case 994: - if (lookahead == 'Y') ADVANCE(1056); + if (lookahead == 'N') ADVANCE(1075); END_STATE(); case 995: - if (lookahead == 'O') ADVANCE(1057); + if (lookahead == 'C') ADVANCE(1076); END_STATE(); case 996: - if (lookahead == 'T') ADVANCE(1058); + if (lookahead == 'S') ADVANCE(1077); END_STATE(); case 997: - if (lookahead == 'N') ADVANCE(1059); + if (lookahead == '_') ADVANCE(1078); END_STATE(); case 998: - if (lookahead == 'A') ADVANCE(1060); + if (lookahead == 'U') ADVANCE(1079); END_STATE(); case 999: - if (lookahead == 'T') ADVANCE(1061); + if (lookahead == 'R') ADVANCE(1080); END_STATE(); case 1000: - if (lookahead == 'L') ADVANCE(1062); + if (lookahead == 'L') ADVANCE(1081); END_STATE(); case 1001: - if (lookahead == 'A') ADVANCE(1063); + if (lookahead == 'N') ADVANCE(1082); END_STATE(); case 1002: - if (lookahead == '_') ADVANCE(1064); + if (lookahead == 'E') ADVANCE(1083); END_STATE(); case 1003: - if (lookahead == 'A') ADVANCE(1065); + if (lookahead == 'E') ADVANCE(1084); END_STATE(); case 1004: - if (lookahead == 'T') ADVANCE(1066); + if (lookahead == 'S') ADVANCE(1085); END_STATE(); case 1005: - if (lookahead == 'R') ADVANCE(1067); + if (lookahead == 'N') ADVANCE(1086); END_STATE(); case 1006: - if (lookahead == 'T') ADVANCE(1068); + if (lookahead == 'I') ADVANCE(1087); END_STATE(); case 1007: - if (lookahead == 'G') ADVANCE(1069); + if (lookahead == 'O') ADVANCE(1088); END_STATE(); case 1008: - if (lookahead == 'E') ADVANCE(1070); + if (lookahead == 'S') ADVANCE(1089); END_STATE(); case 1009: - if (lookahead == 'T') ADVANCE(1071); + ACCEPT_TOKEN(anon_sym_MOZ_IMPLICIT); END_STATE(); case 1010: - ACCEPT_TOKEN(anon_sym_MOZ_OWNING_REF); + if (lookahead == 'T') ADVANCE(1090); END_STATE(); case 1011: - if (lookahead == 'E') ADVANCE(1072); + if (lookahead == 'S') ADVANCE(1091); END_STATE(); case 1012: - if (lookahead == 'R') ADVANCE(1073); + if (lookahead == '_') ADVANCE(1092); END_STATE(); case 1013: - if (lookahead == 'L') ADVANCE(1074); + if (lookahead == 'R') ADVANCE(1093); END_STATE(); case 1014: - if (lookahead == 'A') ADVANCE(1075); + if (lookahead == 'P') ADVANCE(1094); END_STATE(); case 1015: - if (lookahead == 'S') ADVANCE(1076); + if (lookahead == 'U') ADVANCE(1095); END_STATE(); case 1016: - if (lookahead == 'S') ADVANCE(1077); + if (lookahead == '_') ADVANCE(1096); END_STATE(); case 1017: - if (lookahead == 'A') ADVANCE(1078); + if (lookahead == 'R') ADVANCE(1097); END_STATE(); case 1018: - if (lookahead == 'C') ADVANCE(1079); + if (lookahead == 'U') ADVANCE(1098); END_STATE(); case 1019: - if (lookahead == 'O') ADVANCE(1080); + ACCEPT_TOKEN(anon_sym_MOZ_MUST_USE); + if (lookahead == '_') ADVANCE(1099); END_STATE(); case 1020: - if (lookahead == 'L') ADVANCE(1081); + if (lookahead == 'M') ADVANCE(1100); END_STATE(); case 1021: - ACCEPT_TOKEN(anon_sym_MOZ_UNSAFE_REF); + if (lookahead == '_') ADVANCE(1101); END_STATE(); case 1022: - ACCEPT_TOKEN(anon_sym_PS_GET_AND_SET); + if (lookahead == 'L') ADVANCE(1102); END_STATE(); case 1023: - if (lookahead == 'S') ADVANCE(1082); + if (lookahead == 'C') ADVANCE(1103); END_STATE(); case 1024: - if (lookahead == 'Y') ADVANCE(1083); + if (lookahead == 'R') ADVANCE(1104); END_STATE(); case 1025: - ACCEPT_TOKEN(anon_sym_QM_TRY_INSPECT); + if (lookahead == 'A') ADVANCE(1105); END_STATE(); case 1026: - if (lookahead == 'Y') ADVANCE(1084); + if (lookahead == 'O') ADVANCE(1106); END_STATE(); case 1027: - if (lookahead == 'T') ADVANCE(1085); + if (lookahead == 'N') ADVANCE(1107); END_STATE(); case 1028: - ACCEPT_TOKEN(anon_sym_SDB_TRY_UNWRAP); + if (lookahead == 'M') ADVANCE(1108); END_STATE(); case 1029: - if (lookahead == 'C') ADVANCE(1086); + if (lookahead == 'O') ADVANCE(1109); END_STATE(); case 1030: - if (lookahead == 'P') ADVANCE(1087); + ACCEPT_TOKEN(anon_sym_MOZ_NORETURN); + if (lookahead == '_') ADVANCE(1110); END_STATE(); case 1031: - if (lookahead == 'R') ADVANCE(1088); + if (lookahead == 'F') ADVANCE(1111); END_STATE(); case 1032: - ACCEPT_TOKEN(anon_sym_IDB_TRY_INSPECT); + if (lookahead == 'M') ADVANCE(1112); END_STATE(); case 1033: - if (lookahead == 'R') ADVANCE(1089); + if (lookahead == 'I') ADVANCE(1113); END_STATE(); case 1034: - if (lookahead == 'N') ADVANCE(1090); + if (lookahead == 'I') ADVANCE(1114); END_STATE(); case 1035: - if (lookahead == 'I') ADVANCE(1091); + if (lookahead == 'D') ADVANCE(1115); END_STATE(); case 1036: - if (lookahead == 'I') ADVANCE(1092); + if (lookahead == 'E') ADVANCE(1116); END_STATE(); case 1037: - if (lookahead == 'A') ADVANCE(1093); + if (lookahead == 'B') ADVANCE(1117); END_STATE(); case 1038: - ACCEPT_TOKEN(anon_sym_MOZ_FALLTHROUGH); + if (lookahead == 'N') ADVANCE(1118); END_STATE(); case 1039: - if (lookahead == 'T') ADVANCE(1094); + if (lookahead == 'A') ADVANCE(1119); END_STATE(); case 1040: - if (lookahead == 'E') ADVANCE(1095); + if (lookahead == '_') ADVANCE(1120); END_STATE(); case 1041: - if (lookahead == 'L') ADVANCE(1096); + if (lookahead == 'A') ADVANCE(1121); END_STATE(); case 1042: - if (lookahead == 'I') ADVANCE(1097); + if (lookahead == 'L') ADVANCE(1122); END_STATE(); case 1043: - if (lookahead == 'R') ADVANCE(1098); + if (lookahead == 'O') ADVANCE(1123); END_STATE(); case 1044: - if (lookahead == 'I') ADVANCE(1099); + if (lookahead == 'Y') ADVANCE(1124); END_STATE(); case 1045: - if (lookahead == '_') ADVANCE(1100); + if (lookahead == 'C') ADVANCE(1125); END_STATE(); case 1046: - if (lookahead == 'E') ADVANCE(1101); + if (lookahead == 'C') ADVANCE(1126); END_STATE(); case 1047: - if (lookahead == 'T') ADVANCE(1102); + if (lookahead == 'E') ADVANCE(1127); END_STATE(); case 1048: - if (lookahead == 'E') ADVANCE(1103); + if (lookahead == 'I') ADVANCE(1128); END_STATE(); case 1049: - if (lookahead == 'E') ADVANCE(1104); + if (lookahead == 'E') ADVANCE(1129); END_STATE(); case 1050: - if (lookahead == 'I') ADVANCE(1105); + if (lookahead == 'E') ADVANCE(1130); END_STATE(); case 1051: - if (lookahead == '_') ADVANCE(1106); + if (lookahead == 'T') ADVANCE(1131); END_STATE(); case 1052: - if (lookahead == 'D') ADVANCE(1107); + if (lookahead == 'C') ADVANCE(1132); END_STATE(); case 1053: - if (lookahead == 'T') ADVANCE(1108); + if (lookahead == 'P') ADVANCE(1133); END_STATE(); case 1054: - if (lookahead == 'D') ADVANCE(1109); + if (lookahead == 'T') ADVANCE(1134); END_STATE(); case 1055: - if (lookahead == '_') ADVANCE(1110); + if (lookahead == 'E') ADVANCE(1135); END_STATE(); case 1056: - if (lookahead == 'P') ADVANCE(1111); + if (lookahead == 'A') ADVANCE(1136); END_STATE(); case 1057: - if (lookahead == 'V') ADVANCE(1112); + if (lookahead == '_') ADVANCE(1137); END_STATE(); case 1058: - if (lookahead == 'A') ADVANCE(1113); + if (lookahead == '_') ADVANCE(1138); END_STATE(); case 1059: - if (lookahead == 'E') ADVANCE(1114); + if (lookahead == 'e') ADVANCE(1139); END_STATE(); case 1060: - if (lookahead == 'S') ADVANCE(1115); + ACCEPT_TOKEN(anon_sym___restrict__); END_STATE(); case 1061: - if (lookahead == 'U') ADVANCE(1116); + ACCEPT_TOKEN(anon_sym___vectorcall); END_STATE(); case 1062: - if (lookahead == 'E') ADVANCE(1117); + ACCEPT_TOKEN(anon_sym___volatile__); END_STATE(); case 1063: - if (lookahead == 'B') ADVANCE(1118); + if (lookahead == 't') ADVANCE(1140); END_STATE(); case 1064: - if (lookahead == 'R') ADVANCE(1119); + ACCEPT_TOKEN(anon_sym_thread_local); END_STATE(); case 1065: - if (lookahead == 'R') ADVANCE(1120); + if (lookahead == 'P') ADVANCE(1141); END_STATE(); case 1066: - if (lookahead == 'R') ADVANCE(1121); + if (lookahead == 'R') ADVANCE(1142); END_STATE(); case 1067: - if (lookahead == 'E') ADVANCE(1122); + if (lookahead == 'T') ADVANCE(1143); END_STATE(); case 1068: - if (lookahead == 'I') ADVANCE(1123); + if (lookahead == 'C') ADVANCE(1144); END_STATE(); case 1069: - if (lookahead == '_') ADVANCE(1124); + if (lookahead == 'P') ADVANCE(1145); END_STATE(); case 1070: - if (lookahead == '_') ADVANCE(1125); + ACCEPT_TOKEN(anon_sym_JS_PUBLIC_API); END_STATE(); case 1071: - if (lookahead == 'O') ADVANCE(1126); + if (lookahead == 'T') ADVANCE(1146); END_STATE(); case 1072: - if (lookahead == '_') ADVANCE(1127); + ACCEPT_TOKEN(anon_sym_LS_TRY_UNWRAP); END_STATE(); case 1073: - if (lookahead == 'E') ADVANCE(1128); + ACCEPT_TOKEN(anon_sym_MOZ_ALLOCATOR); END_STATE(); case 1074: - if (lookahead == 'E') ADVANCE(1129); + if (lookahead == 'P') ADVANCE(1147); END_STATE(); case 1075: - if (lookahead == 'S') ADVANCE(1130); + if (lookahead == 'L') ADVANCE(1148); END_STATE(); case 1076: - ACCEPT_TOKEN(anon_sym_MOZ_STACK_CLASS); + if (lookahead == 'K') ADVANCE(1149); END_STATE(); case 1077: - if (lookahead == 'S') ADVANCE(1131); + if (lookahead == 'C') ADVANCE(1150); END_STATE(); case 1078: - if (lookahead == 'L') ADVANCE(1132); + if (lookahead == 'G') ADVANCE(1151); END_STATE(); case 1079: - if (lookahead == 'L') ADVANCE(1133); + if (lookahead == 'G') ADVANCE(1152); END_STATE(); case 1080: - if (lookahead == 'R') ADVANCE(1134); + if (lookahead == 'I') ADVANCE(1153); END_STATE(); case 1081: - if (lookahead == 'I') ADVANCE(1135); + if (lookahead == 'Y') ADVANCE(1154); END_STATE(); case 1082: - ACCEPT_TOKEN(anon_sym_PS_GET_LOCKLESS); + if (lookahead == '_') ADVANCE(1155); END_STATE(); case 1083: - if (lookahead == '_') ADVANCE(1136); + if (lookahead == 'R') ADVANCE(1156); END_STATE(); case 1084: - if (lookahead == '_') ADVANCE(1137); + if (lookahead == 'T') ADVANCE(1157); END_STATE(); case 1085: - ACCEPT_TOKEN(anon_sym_SDB_TRY_INSPECT); + if (lookahead == 'A') ADVANCE(1158); END_STATE(); case 1086: - if (lookahead == 'T') ADVANCE(1138); + if (lookahead == 'E') ADVANCE(1159); END_STATE(); case 1087: - ACCEPT_TOKEN(anon_sym_CACHE_TRY_UNWRAP); + if (lookahead == 'G') ADVANCE(1160); END_STATE(); case 1088: - if (lookahead == 'I') ADVANCE(1139); + if (lookahead == 'C') ADVANCE(1161); END_STATE(); case 1089: - if (lookahead == 'A') ADVANCE(1140); + if (lookahead == 'S') ADVANCE(1162); END_STATE(); case 1090: - if (lookahead == 'E') ADVANCE(1141); + if (lookahead == 'Y') ADVANCE(1163); END_STATE(); case 1091: - if (lookahead == 'S') ADVANCE(1142); + if (lookahead == 'I') ADVANCE(1164); END_STATE(); case 1092: - if (lookahead == 'P') ADVANCE(1143); + if (lookahead == 'I') ADVANCE(1165); END_STATE(); case 1093: - if (lookahead == 'R') ADVANCE(1144); + ACCEPT_TOKEN(anon_sym_MOZ_IS_REFPTR); END_STATE(); case 1094: - if (lookahead == 'F') ADVANCE(1145); + if (lookahead == 'T') ADVANCE(1166); END_STATE(); case 1095: - if (lookahead == 'R') ADVANCE(1146); + if (lookahead == 'S') ADVANCE(1167); END_STATE(); case 1096: - if (lookahead == 'A') ADVANCE(1147); + if (lookahead == 'A') ADVANCE(1168); END_STATE(); case 1097: - if (lookahead == 'N') ADVANCE(1148); + if (lookahead == 'R') ADVANCE(1169); END_STATE(); case 1098: - if (lookahead == 'N') ADVANCE(1149); + if (lookahead == 'R') ADVANCE(1170); END_STATE(); case 1099: - if (lookahead == 'T') ADVANCE(1150); + if (lookahead == 'T') ADVANCE(1171); END_STATE(); case 1100: - if (lookahead == 'O') ADVANCE(1151); + if (lookahead == 'M') ADVANCE(1172); END_STATE(); case 1101: - if (lookahead == 'D') ADVANCE(1152); + if (lookahead == 'V') ADVANCE(1173); END_STATE(); case 1102: - if (lookahead == 'O') ADVANCE(1153); + if (lookahead == 'I') ADVANCE(1174); END_STATE(); case 1103: - if (lookahead == '_') ADVANCE(1154); + if (lookahead == 'L') ADVANCE(1175); END_STATE(); case 1104: - if (lookahead == '_') ADVANCE(1155); + if (lookahead == 'E') ADVANCE(1176); END_STATE(); case 1105: - if (lookahead == 'T') ADVANCE(1156); + if (lookahead == 'B') ADVANCE(1177); END_STATE(); case 1106: - if (lookahead == 'T') ADVANCE(1157); + if (lookahead == 'V') ADVANCE(1178); END_STATE(); case 1107: - ACCEPT_TOKEN(anon_sym_MOZ_MAYBE_UNUSED); + if (lookahead == 'G') ADVANCE(1179); END_STATE(); case 1108: - if (lookahead == 'E') ADVANCE(1158); + ACCEPT_TOKEN(anon_sym_MOZ_NON_PARAM); END_STATE(); case 1109: - if (lookahead == 'E') ADVANCE(1159); + if (lookahead == 'R') ADVANCE(1180); END_STATE(); case 1110: - if (lookahead == 'F') ADVANCE(1160); + if (lookahead == 'P') ADVANCE(1181); END_STATE(); case 1111: - if (lookahead == 'E') ADVANCE(1161); + if (lookahead == '_') ADVANCE(1182); END_STATE(); case 1112: - if (lookahead == 'A') ADVANCE(1162); + if (lookahead == 'E') ADVANCE(1183); END_STATE(); case 1113: - if (lookahead == 'B') ADVANCE(1163); + if (lookahead == 'N') ADVANCE(1184); END_STATE(); case 1114: - ACCEPT_TOKEN(anon_sym_MOZ_NEVER_INLINE); - if (lookahead == '_') ADVANCE(1164); + if (lookahead == 'Z') ADVANCE(1185); END_STATE(); case 1115: - if (lookahead == 'S') ADVANCE(1165); + if (lookahead == '_') ADVANCE(1186); END_STATE(); case 1116: - if (lookahead == 'R') ADVANCE(1166); + if (lookahead == 'F') ADVANCE(1187); END_STATE(); case 1117: - ACCEPT_TOKEN(anon_sym_MOZ_NON_AUTOABLE); + if (lookahead == 'L') ADVANCE(1188); END_STATE(); case 1118: - if (lookahead == 'L') ADVANCE(1167); + if (lookahead == 'O') ADVANCE(1189); END_STATE(); case 1119: - if (lookahead == 'E') ADVANCE(1168); + if (lookahead == 'B') ADVANCE(1190); END_STATE(); case 1120: - if (lookahead == 'Y') ADVANCE(1169); + if (lookahead == 'B') ADVANCE(1191); END_STATE(); case 1121: - ACCEPT_TOKEN(anon_sym_MOZ_NORETURN_PTR); + if (lookahead == 'S') ADVANCE(1192); END_STATE(); case 1122: - if (lookahead == 'L') ADVANCE(1170); + if (lookahead == 'A') ADVANCE(1193); END_STATE(); case 1123: - if (lookahead == 'C') ADVANCE(1171); + if (lookahead == 'C') ADVANCE(1194); END_STATE(); case 1124: - if (lookahead == 'O') ADVANCE(1172); + if (lookahead == '_') ADVANCE(1195); END_STATE(); case 1125: - if (lookahead == 'S') ADVANCE(1173); - if (lookahead == 'U') ADVANCE(1174); + if (lookahead == 'T') ADVANCE(1196); END_STATE(); case 1126: - if (lookahead == '_') ADVANCE(1175); + if (lookahead == 'K') ADVANCE(1197); END_STATE(); case 1127: - if (lookahead == 'N') ADVANCE(1176); + if (lookahead == 'F') ADVANCE(1198); END_STATE(); case 1128: - if (lookahead == 'T') ADVANCE(1177); + ACCEPT_TOKEN(anon_sym_MOZ_XPCOM_ABI); END_STATE(); case 1129: - if (lookahead == '_') ADVANCE(1178); + if (lookahead == 'T') ADVANCE(1199); END_STATE(); case 1130: - if (lookahead == 'E') ADVANCE(1179); + if (lookahead == 'S') ADVANCE(1200); END_STATE(); case 1131: - ACCEPT_TOKEN(anon_sym_MOZ_STATIC_CLASS); + if (lookahead == 'R') ADVANCE(1201); END_STATE(); case 1132: - if (lookahead == '_') ADVANCE(1180); + if (lookahead == 'T') ADVANCE(1202); END_STATE(); case 1133: - if (lookahead == 'A') ADVANCE(1181); + ACCEPT_TOKEN(anon_sym_QM_TRY_UNWRAP); END_STATE(); case 1134: - if (lookahead == '_') ADVANCE(1182); + if (lookahead == 'R') ADVANCE(1203); END_STATE(); case 1135: - if (lookahead == 'S') ADVANCE(1183); + if (lookahead == 'C') ADVANCE(1204); END_STATE(); case 1136: - if (lookahead == 'U') ADVANCE(1184); + if (lookahead == 'P') ADVANCE(1205); END_STATE(); case 1137: - if (lookahead == 'U') ADVANCE(1185); + ACCEPT_TOKEN(anon_sym___attribute__); END_STATE(); case 1138: - ACCEPT_TOKEN(anon_sym_CACHE_TRY_INSPECT); + ACCEPT_TOKEN(anon_sym___extension__); END_STATE(); case 1139: - if (lookahead == 'B') ADVANCE(1186); + ACCEPT_TOKEN(anon_sym___forceinline); END_STATE(); case 1140: - if (lookahead == 'R') ADVANCE(1187); + ACCEPT_TOKEN(anon_sym_static_assert); END_STATE(); case 1141: - ACCEPT_TOKEN(anon_sym_MOZ_ALWAYS_INLINE); - if (lookahead == '_') ADVANCE(1188); + if (lookahead == 'E') ADVANCE(1206); END_STATE(); case 1142: - if (lookahead == 'T') ADVANCE(1189); + if (lookahead == 'A') ADVANCE(1207); END_STATE(); case 1143: - if (lookahead == 'T') ADVANCE(1190); + if (lookahead == 'T') ADVANCE(1208); END_STATE(); case 1144: - if (lookahead == 'D') ADVANCE(1191); + if (lookahead == 'T') ADVANCE(1209); END_STATE(); case 1145: - ACCEPT_TOKEN(anon_sym_MOZ_FORMAT_PRINTF); + ACCEPT_TOKEN(anon_sym_IDB_TRY_UNWRAP); END_STATE(); case 1146: - if (lookahead == '_') ADVANCE(1192); + ACCEPT_TOKEN(anon_sym_LS_TRY_INSPECT); END_STATE(); case 1147: - if (lookahead == 'C') ADVANCE(1193); + if (lookahead == 'O') ADVANCE(1210); END_STATE(); case 1148: - if (lookahead == 'L') ADVANCE(1194); + if (lookahead == 'I') ADVANCE(1211); END_STATE(); case 1149: - ACCEPT_TOKEN(anon_sym_MOZ_HAVE_NORETURN); - if (lookahead == '_') ADVANCE(1195); + if (lookahead == 'L') ADVANCE(1212); END_STATE(); case 1150: - if (lookahead == 'I') ADVANCE(1196); + if (lookahead == 'R') ADVANCE(1213); END_STATE(); case 1151: - if (lookahead == 'V') ADVANCE(1197); + if (lookahead == 'U') ADVANCE(1214); END_STATE(); case 1152: - if (lookahead == '_') ADVANCE(1198); + if (lookahead == 'H') ADVANCE(1215); END_STATE(); case 1153: - if (lookahead == 'R') ADVANCE(1199); + if (lookahead == 'N') ADVANCE(1216); END_STATE(); case 1154: - if (lookahead == 'A') ADVANCE(1200); + if (lookahead == 'Z') ADVANCE(1217); END_STATE(); case 1155: - if (lookahead == 'C') ADVANCE(1201); + if (lookahead == 'B') ADVANCE(1218); END_STATE(); case 1156: - ACCEPT_TOKEN(anon_sym_MOZ_IS_CLASS_INIT); + if (lookahead == '_') ADVANCE(1219); END_STATE(); case 1157: - if (lookahead == 'O') ADVANCE(1202); + if (lookahead == 'U') ADVANCE(1220); END_STATE(); case 1158: - if (lookahead == 'R') ADVANCE(1203); + if (lookahead == 'N') ADVANCE(1221); END_STATE(); case 1159: - ACCEPT_TOKEN(anon_sym_MOZ_MUST_OVERRIDE); + if (lookahead == 'D') ADVANCE(1222); END_STATE(); case 1160: - if (lookahead == 'R') ADVANCE(1204); + if (lookahead == 'N') ADVANCE(1223); END_STATE(); case 1161: - ACCEPT_TOKEN(anon_sym_MOZ_MUST_USE_TYPE); + if (lookahead == 'A') ADVANCE(1224); END_STATE(); case 1162: - if (lookahead == 'B') ADVANCE(1205); + ACCEPT_TOKEN(anon_sym_MOZ_HEAP_CLASS); END_STATE(); case 1163: - if (lookahead == 'L') ADVANCE(1206); + if (lookahead == 'P') ADVANCE(1225); END_STATE(); case 1164: - if (lookahead == 'D') ADVANCE(1207); + if (lookahead == 'D') ADVANCE(1226); END_STATE(); case 1165: - ACCEPT_TOKEN(anon_sym_MOZ_NONHEAP_CLASS); + if (lookahead == 'N') ADVANCE(1227); END_STATE(); case 1166: - if (lookahead == 'N') ADVANCE(1208); + if (lookahead == 'R') ADVANCE(1228); END_STATE(); case 1167: - if (lookahead == 'E') ADVANCE(1209); + if (lookahead == 'E') ADVANCE(1229); END_STATE(); case 1168: - if (lookahead == 'F') ADVANCE(1210); + if (lookahead == 'F') ADVANCE(1230); END_STATE(); case 1169: - if (lookahead == '_') ADVANCE(1211); + if (lookahead == 'I') ADVANCE(1231); END_STATE(); case 1170: - if (lookahead == 'E') ADVANCE(1212); + if (lookahead == 'N') ADVANCE(1232); END_STATE(); case 1171: - if (lookahead == '_') ADVANCE(1213); + if (lookahead == 'Y') ADVANCE(1233); END_STATE(); case 1172: - if (lookahead == 'N') ADVANCE(1214); + if (lookahead == 'O') ADVANCE(1234); END_STATE(); case 1173: - if (lookahead == 'I') ADVANCE(1215); + if (lookahead == 'T') ADVANCE(1235); END_STATE(); case 1174: - if (lookahead == 'N') ADVANCE(1216); + if (lookahead == 'N') ADVANCE(1236); END_STATE(); case 1175: - if (lookahead == 'A') ADVANCE(1217); + if (lookahead == 'A') ADVANCE(1237); END_STATE(); case 1176: - if (lookahead == 'O') ADVANCE(1218); + if (lookahead == 'T') ADVANCE(1238); END_STATE(); case 1177: - if (lookahead == 'U') ADVANCE(1219); + if (lookahead == 'L') ADVANCE(1239); END_STATE(); case 1178: - if (lookahead == 'N') ADVANCE(1220); + if (lookahead == 'A') ADVANCE(1240); END_STATE(); case 1179: - if (lookahead == '_') ADVANCE(1221); + if (lookahead == '_') ADVANCE(1241); END_STATE(); case 1180: - if (lookahead == 'C') ADVANCE(1222); + if (lookahead == 'A') ADVANCE(1242); END_STATE(); case 1181: - if (lookahead == 'S') ADVANCE(1223); + if (lookahead == 'T') ADVANCE(1243); END_STATE(); case 1182: - if (lookahead == 'D') ADVANCE(1224); + if (lookahead == 'R') ADVANCE(1244); END_STATE(); case 1183: - if (lookahead == 'T') ADVANCE(1225); + if (lookahead == 'T') ADVANCE(1245); END_STATE(); case 1184: - if (lookahead == 'N') ADVANCE(1226); + if (lookahead == 'G') ADVANCE(1246); END_STATE(); case 1185: - if (lookahead == 'N') ADVANCE(1227); + if (lookahead == 'E') ADVANCE(1247); END_STATE(); case 1186: - if (lookahead == 'U') ADVANCE(1228); + if (lookahead == 'T') ADVANCE(1248); END_STATE(); case 1187: - if (lookahead == 'Y') ADVANCE(1229); + ACCEPT_TOKEN(anon_sym_MOZ_OWNING_REF); END_STATE(); case 1188: - if (lookahead == 'E') ADVANCE(1230); + if (lookahead == 'E') ADVANCE(1249); END_STATE(); case 1189: - ACCEPT_TOKEN(anon_sym_MOZ_ASAN_BLACKLIST); + if (lookahead == 'R') ADVANCE(1250); END_STATE(); case 1190: - ACCEPT_TOKEN(anon_sym_MOZ_CAN_RUN_SCRIPT); - if (lookahead == '_') ADVANCE(1231); + if (lookahead == 'L') ADVANCE(1251); END_STATE(); case 1191: - if (lookahead == '_') ADVANCE(1232); + if (lookahead == 'A') ADVANCE(1252); END_STATE(); case 1192: - if (lookahead == 'N') ADVANCE(1233); + if (lookahead == 'S') ADVANCE(1253); END_STATE(); case 1193: - if (lookahead == 'K') ADVANCE(1234); + if (lookahead == 'S') ADVANCE(1254); END_STATE(); case 1194: - if (lookahead == 'I') ADVANCE(1235); + if (lookahead == 'A') ADVANCE(1255); END_STATE(); case 1195: - if (lookahead == 'P') ADVANCE(1236); + if (lookahead == 'C') ADVANCE(1256); END_STATE(); case 1196: - if (lookahead == 'Z') ADVANCE(1237); + if (lookahead == 'O') ADVANCE(1257); END_STATE(); case 1197: - if (lookahead == 'E') ADVANCE(1238); + if (lookahead == 'L') ADVANCE(1258); END_STATE(); case 1198: - if (lookahead == 'O') ADVANCE(1239); + ACCEPT_TOKEN(anon_sym_MOZ_UNSAFE_REF); END_STATE(); case 1199: - ACCEPT_TOKEN(anon_sym_MOZ_HEAP_ALLOCATOR); + ACCEPT_TOKEN(anon_sym_PS_GET_AND_SET); END_STATE(); case 1200: - if (lookahead == 'N') ADVANCE(1240); + if (lookahead == 'S') ADVANCE(1259); END_STATE(); case 1201: - if (lookahead == 'T') ADVANCE(1241); + if (lookahead == 'Y') ADVANCE(1260); END_STATE(); case 1202: - if (lookahead == '_') ADVANCE(1242); + ACCEPT_TOKEN(anon_sym_QM_TRY_INSPECT); END_STATE(); case 1203: - if (lookahead == '_') ADVANCE(1243); + if (lookahead == 'Y') ADVANCE(1261); END_STATE(); case 1204: - if (lookahead == 'O') ADVANCE(1244); + if (lookahead == 'T') ADVANCE(1262); END_STATE(); case 1205: - if (lookahead == 'L') ADVANCE(1245); + ACCEPT_TOKEN(anon_sym_SDB_TRY_UNWRAP); END_STATE(); case 1206: - if (lookahead == 'E') ADVANCE(1246); + if (lookahead == 'C') ADVANCE(1263); END_STATE(); case 1207: - if (lookahead == 'E') ADVANCE(1247); + if (lookahead == 'P') ADVANCE(1264); END_STATE(); case 1208: - ACCEPT_TOKEN(anon_sym_MOZ_NONNULL_RETURN); + if (lookahead == 'R') ADVANCE(1265); END_STATE(); case 1209: - ACCEPT_TOKEN(anon_sym_MOZ_NON_MEMMOVABLE); + ACCEPT_TOKEN(anon_sym_IDB_TRY_INSPECT); END_STATE(); case 1210: - ACCEPT_TOKEN(anon_sym_MOZ_NON_OWNING_REF); + if (lookahead == 'R') ADVANCE(1266); END_STATE(); case 1211: - if (lookahead == 'C') ADVANCE(1248); + if (lookahead == 'N') ADVANCE(1267); END_STATE(); case 1212: - if (lookahead == 'A') ADVANCE(1249); + if (lookahead == 'I') ADVANCE(1268); END_STATE(); case 1213: - if (lookahead == 'E') ADVANCE(1250); + if (lookahead == 'I') ADVANCE(1269); END_STATE(); case 1214: - if (lookahead == '_') ADVANCE(1251); + if (lookahead == 'A') ADVANCE(1270); END_STATE(); case 1215: - if (lookahead == 'G') ADVANCE(1252); + ACCEPT_TOKEN(anon_sym_MOZ_FALLTHROUGH); END_STATE(); case 1216: - if (lookahead == 'S') ADVANCE(1253); + if (lookahead == 'T') ADVANCE(1271); END_STATE(); case 1217: - if (lookahead == 'V') ADVANCE(1254); + if (lookahead == 'E') ADVANCE(1272); END_STATE(); case 1218: - if (lookahead == 'N') ADVANCE(1255); + if (lookahead == 'L') ADVANCE(1273); END_STATE(); case 1219: - if (lookahead == 'R') ADVANCE(1256); + if (lookahead == 'I') ADVANCE(1274); END_STATE(); case 1220: - if (lookahead == 'O') ADVANCE(1257); + if (lookahead == 'R') ADVANCE(1275); END_STATE(); case 1221: - if (lookahead == 'M') ADVANCE(1258); + if (lookahead == 'I') ADVANCE(1276); END_STATE(); case 1222: - if (lookahead == 'L') ADVANCE(1259); + if (lookahead == '_') ADVANCE(1277); END_STATE(); case 1223: - if (lookahead == 'S') ADVANCE(1260); + if (lookahead == 'E') ADVANCE(1278); END_STATE(); case 1224: - if (lookahead == 'T') ADVANCE(1261); + if (lookahead == 'T') ADVANCE(1279); END_STATE(); case 1225: - ACCEPT_TOKEN(anon_sym_MOZ_TSAN_BLACKLIST); + if (lookahead == 'E') ADVANCE(1280); END_STATE(); case 1226: - if (lookahead == 'W') ADVANCE(1262); + if (lookahead == 'E') ADVANCE(1281); END_STATE(); case 1227: - if (lookahead == 'W') ADVANCE(1263); + if (lookahead == 'I') ADVANCE(1282); END_STATE(); case 1228: - if (lookahead == 'T') ADVANCE(1264); + if (lookahead == '_') ADVANCE(1283); END_STATE(); case 1229: - ACCEPT_TOKEN(anon_sym_MOZ_ALLOW_TEMPORARY); + if (lookahead == 'D') ADVANCE(1284); END_STATE(); case 1230: - if (lookahead == 'V') ADVANCE(1265); + if (lookahead == 'T') ADVANCE(1285); END_STATE(); case 1231: - if (lookahead == 'B') ADVANCE(1266); - if (lookahead == 'F') ADVANCE(1267); + if (lookahead == 'D') ADVANCE(1286); END_STATE(); case 1232: - if (lookahead == 'O') ADVANCE(1268); + if (lookahead == '_') ADVANCE(1287); END_STATE(); case 1233: - if (lookahead == 'O') ADVANCE(1269); + if (lookahead == 'P') ADVANCE(1288); END_STATE(); case 1234: - if (lookahead == 'L') ADVANCE(1270); + if (lookahead == 'V') ADVANCE(1289); END_STATE(); case 1235: - if (lookahead == 'N') ADVANCE(1271); + if (lookahead == 'A') ADVANCE(1290); END_STATE(); case 1236: - if (lookahead == 'T') ADVANCE(1272); + if (lookahead == 'E') ADVANCE(1291); END_STATE(); case 1237: - if (lookahead == 'E') ADVANCE(1273); + if (lookahead == 'S') ADVANCE(1292); END_STATE(); case 1238: - if (lookahead == 'R') ADVANCE(1274); + if (lookahead == 'U') ADVANCE(1293); END_STATE(); case 1239: - if (lookahead == 'V') ADVANCE(1275); + if (lookahead == 'E') ADVANCE(1294); END_STATE(); case 1240: - if (lookahead == 'N') ADVANCE(1276); + if (lookahead == 'B') ADVANCE(1295); END_STATE(); case 1241: - if (lookahead == 'O') ADVANCE(1277); + if (lookahead == 'R') ADVANCE(1296); END_STATE(); case 1242: - if (lookahead == 'R') ADVANCE(1278); + if (lookahead == 'R') ADVANCE(1297); END_STATE(); case 1243: - if (lookahead == 'M') ADVANCE(1279); + if (lookahead == 'R') ADVANCE(1298); END_STATE(); case 1244: - if (lookahead == 'M') ADVANCE(1280); + if (lookahead == 'E') ADVANCE(1299); END_STATE(); case 1245: - if (lookahead == 'E') ADVANCE(1281); + if (lookahead == 'I') ADVANCE(1300); END_STATE(); case 1246: - if (lookahead == '_') ADVANCE(1282); + if (lookahead == '_') ADVANCE(1301); END_STATE(); case 1247: - if (lookahead == 'B') ADVANCE(1283); + if (lookahead == '_') ADVANCE(1302); END_STATE(); case 1248: - if (lookahead == 'L') ADVANCE(1284); + if (lookahead == 'O') ADVANCE(1303); END_STATE(); case 1249: - if (lookahead == 'S') ADVANCE(1285); + if (lookahead == '_') ADVANCE(1304); END_STATE(); case 1250: - if (lookahead == 'X') ADVANCE(1286); + if (lookahead == 'E') ADVANCE(1305); END_STATE(); case 1251: - if (lookahead == 'T') ADVANCE(1287); + if (lookahead == 'E') ADVANCE(1306); END_STATE(); case 1252: - if (lookahead == 'N') ADVANCE(1288); + if (lookahead == 'S') ADVANCE(1307); END_STATE(); case 1253: - if (lookahead == 'I') ADVANCE(1289); + ACCEPT_TOKEN(anon_sym_MOZ_STACK_CLASS); END_STATE(); case 1254: - if (lookahead == 'O') ADVANCE(1290); + if (lookahead == 'S') ADVANCE(1308); END_STATE(); case 1255: - if (lookahead == 'T') ADVANCE(1291); + if (lookahead == 'L') ADVANCE(1309); END_STATE(); case 1256: - if (lookahead == 'N') ADVANCE(1292); + if (lookahead == 'L') ADVANCE(1310); END_STATE(); case 1257: - if (lookahead == 'N') ADVANCE(1293); + if (lookahead == 'R') ADVANCE(1311); END_STATE(); case 1258: - if (lookahead == 'E') ADVANCE(1294); + if (lookahead == 'I') ADVANCE(1312); END_STATE(); case 1259: - if (lookahead == 'A') ADVANCE(1295); + ACCEPT_TOKEN(anon_sym_PS_GET_LOCKLESS); END_STATE(); case 1260: - ACCEPT_TOKEN(anon_sym_MOZ_TEMPORARY_CLASS); + if (lookahead == '_') ADVANCE(1313); END_STATE(); case 1261: - if (lookahead == 'O') ADVANCE(1296); + if (lookahead == '_') ADVANCE(1314); END_STATE(); case 1262: - if (lookahead == 'R') ADVANCE(1297); + ACCEPT_TOKEN(anon_sym_SDB_TRY_INSPECT); END_STATE(); case 1263: - if (lookahead == 'R') ADVANCE(1298); + if (lookahead == 'T') ADVANCE(1315); END_STATE(); case 1264: - if (lookahead == 'E') ADVANCE(1299); + ACCEPT_TOKEN(anon_sym_CACHE_TRY_UNWRAP); END_STATE(); case 1265: - if (lookahead == 'E') ADVANCE(1300); + if (lookahead == 'I') ADVANCE(1316); END_STATE(); case 1266: - if (lookahead == 'O') ADVANCE(1301); + if (lookahead == 'A') ADVANCE(1317); END_STATE(); case 1267: - if (lookahead == 'O') ADVANCE(1302); + if (lookahead == 'E') ADVANCE(1318); END_STATE(); case 1268: - if (lookahead == 'B') ADVANCE(1303); + if (lookahead == 'S') ADVANCE(1319); END_STATE(); case 1269: - if (lookahead == 'R') ADVANCE(1304); + if (lookahead == 'P') ADVANCE(1320); END_STATE(); case 1270: - if (lookahead == 'I') ADVANCE(1305); + if (lookahead == 'R') ADVANCE(1321); END_STATE(); case 1271: - if (lookahead == 'E') ADVANCE(1306); + if (lookahead == 'F') ADVANCE(1322); END_STATE(); case 1272: - if (lookahead == 'R') ADVANCE(1307); + if (lookahead == 'R') ADVANCE(1323); END_STATE(); case 1273: - if (lookahead == '_') ADVANCE(1308); + if (lookahead == 'A') ADVANCE(1324); END_STATE(); case 1274: - if (lookahead == 'F') ADVANCE(1309); + if (lookahead == 'N') ADVANCE(1325); END_STATE(); case 1275: - if (lookahead == 'E') ADVANCE(1310); + if (lookahead == 'N') ADVANCE(1326); END_STATE(); case 1276: - if (lookahead == 'O') ADVANCE(1311); + if (lookahead == 'T') ADVANCE(1327); END_STATE(); case 1277: - if (lookahead == 'R') ADVANCE(1312); + if (lookahead == 'O') ADVANCE(1328); END_STATE(); case 1278: - if (lookahead == 'E') ADVANCE(1313); + if (lookahead == 'D') ADVANCE(1329); END_STATE(); case 1279: - if (lookahead == 'U') ADVANCE(1314); + if (lookahead == 'O') ADVANCE(1330); END_STATE(); case 1280: - if (lookahead == '_') ADVANCE(1315); + if (lookahead == '_') ADVANCE(1331); END_STATE(); case 1281: - if (lookahead == '_') ADVANCE(1316); + if (lookahead == '_') ADVANCE(1332); END_STATE(); case 1282: - if (lookahead == 'T') ADVANCE(1317); + if (lookahead == 'T') ADVANCE(1333); END_STATE(); case 1283: - if (lookahead == 'U') ADVANCE(1318); + if (lookahead == 'T') ADVANCE(1334); END_STATE(); case 1284: - if (lookahead == 'A') ADVANCE(1319); + ACCEPT_TOKEN(anon_sym_MOZ_MAYBE_UNUSED); END_STATE(); case 1285: - if (lookahead == 'E') ADVANCE(1320); + if (lookahead == 'E') ADVANCE(1335); END_STATE(); case 1286: - if (lookahead == 'P') ADVANCE(1321); + if (lookahead == 'E') ADVANCE(1336); END_STATE(); case 1287: - if (lookahead == 'E') ADVANCE(1322); + if (lookahead == 'F') ADVANCE(1337); END_STATE(); case 1288: - if (lookahead == 'E') ADVANCE(1323); + if (lookahead == 'E') ADVANCE(1338); END_STATE(); case 1289: - if (lookahead == 'G') ADVANCE(1324); + if (lookahead == 'A') ADVANCE(1339); END_STATE(); case 1290: - if (lookahead == 'I') ADVANCE(1325); + if (lookahead == 'B') ADVANCE(1340); END_STATE(); case 1291: - if (lookahead == 'R') ADVANCE(1326); + ACCEPT_TOKEN(anon_sym_MOZ_NEVER_INLINE); + if (lookahead == '_') ADVANCE(1341); END_STATE(); case 1292: - if (lookahead == '_') ADVANCE(1327); + if (lookahead == 'S') ADVANCE(1342); END_STATE(); case 1293: - if (lookahead == 'T') ADVANCE(1328); + if (lookahead == 'R') ADVANCE(1343); END_STATE(); case 1294: - if (lookahead == 'T') ADVANCE(1329); + ACCEPT_TOKEN(anon_sym_MOZ_NON_AUTOABLE); END_STATE(); case 1295: - if (lookahead == 'S') ADVANCE(1330); + if (lookahead == 'L') ADVANCE(1344); END_STATE(); case 1296: - if (lookahead == 'R') ADVANCE(1331); + if (lookahead == 'E') ADVANCE(1345); END_STATE(); case 1297: - if (lookahead == 'A') ADVANCE(1332); + if (lookahead == 'Y') ADVANCE(1346); END_STATE(); case 1298: - if (lookahead == 'A') ADVANCE(1333); + ACCEPT_TOKEN(anon_sym_MOZ_NORETURN_PTR); END_STATE(); case 1299: - ACCEPT_TOKEN(anon_sym_FORWARD_SET_ATTRIBUTE); + if (lookahead == 'L') ADVANCE(1347); END_STATE(); case 1300: - if (lookahead == 'N') ADVANCE(1334); + if (lookahead == 'C') ADVANCE(1348); END_STATE(); case 1301: - if (lookahead == 'U') ADVANCE(1335); + if (lookahead == 'O') ADVANCE(1349); END_STATE(); case 1302: - if (lookahead == 'R') ADVANCE(1336); + if (lookahead == 'S') ADVANCE(1350); + if (lookahead == 'U') ADVANCE(1351); END_STATE(); case 1303: - if (lookahead == 'J') ADVANCE(1337); + if (lookahead == '_') ADVANCE(1352); END_STATE(); case 1304: - if (lookahead == 'E') ADVANCE(1338); + if (lookahead == 'N') ADVANCE(1353); END_STATE(); case 1305: - if (lookahead == 'S') ADVANCE(1339); + if (lookahead == 'T') ADVANCE(1354); END_STATE(); case 1306: - ACCEPT_TOKEN(anon_sym_MOZ_HAVE_NEVER_INLINE); + if (lookahead == '_') ADVANCE(1355); END_STATE(); case 1307: - ACCEPT_TOKEN(anon_sym_MOZ_HAVE_NORETURN_PTR); + if (lookahead == 'E') ADVANCE(1356); END_STATE(); case 1308: - if (lookahead == 'A') ADVANCE(1340); + ACCEPT_TOKEN(anon_sym_MOZ_STATIC_CLASS); END_STATE(); case 1309: - if (lookahead == 'L') ADVANCE(1341); + if (lookahead == '_') ADVANCE(1357); END_STATE(); case 1310: - if (lookahead == 'R') ADVANCE(1342); + if (lookahead == 'A') ADVANCE(1358); END_STATE(); case 1311: - if (lookahead == 'T') ADVANCE(1343); + if (lookahead == '_') ADVANCE(1359); END_STATE(); case 1312: - ACCEPT_TOKEN(anon_sym_MOZ_INIT_OUTSIDE_CTOR); + if (lookahead == 'S') ADVANCE(1360); END_STATE(); case 1313: - if (lookahead == 'F') ADVANCE(1344); + if (lookahead == 'U') ADVANCE(1361); END_STATE(); case 1314: - if (lookahead == 'S') ADVANCE(1345); + if (lookahead == 'U') ADVANCE(1362); END_STATE(); case 1315: - if (lookahead == 'C') ADVANCE(1346); + ACCEPT_TOKEN(anon_sym_CACHE_TRY_INSPECT); END_STATE(); case 1316: - if (lookahead == 'M') ADVANCE(1347); - if (lookahead == 'T') ADVANCE(1348); + if (lookahead == 'B') ADVANCE(1363); END_STATE(); case 1317: - if (lookahead == 'Y') ADVANCE(1349); + if (lookahead == 'R') ADVANCE(1364); END_STATE(); case 1318: - if (lookahead == 'G') ADVANCE(1350); + ACCEPT_TOKEN(anon_sym_MOZ_ALWAYS_INLINE); + if (lookahead == '_') ADVANCE(1365); END_STATE(); case 1319: - if (lookahead == 'S') ADVANCE(1351); + if (lookahead == 'T') ADVANCE(1366); END_STATE(); case 1320: - if (lookahead == '_') ADVANCE(1352); + if (lookahead == 'T') ADVANCE(1367); END_STATE(); case 1321: - if (lookahead == 'R') ADVANCE(1353); + if (lookahead == 'D') ADVANCE(1368); END_STATE(); case 1322: - if (lookahead == 'M') ADVANCE(1354); + ACCEPT_TOKEN(anon_sym_MOZ_FORMAT_PRINTF); END_STATE(); case 1323: - if (lookahead == 'D') ADVANCE(1355); + if (lookahead == '_') ADVANCE(1369); END_STATE(); case 1324: - if (lookahead == 'N') ADVANCE(1356); + if (lookahead == 'C') ADVANCE(1370); END_STATE(); case 1325: - if (lookahead == 'D') ADVANCE(1357); + if (lookahead == 'L') ADVANCE(1371); END_STATE(); case 1326: - if (lookahead == 'I') ADVANCE(1358); + ACCEPT_TOKEN(anon_sym_MOZ_HAVE_NORETURN); + if (lookahead == '_') ADVANCE(1372); END_STATE(); case 1327: - if (lookahead == 'F') ADVANCE(1359); + if (lookahead == 'I') ADVANCE(1373); END_STATE(); case 1328: - if (lookahead == 'R') ADVANCE(1360); + if (lookahead == 'V') ADVANCE(1374); END_STATE(); case 1329: - if (lookahead == 'H') ADVANCE(1361); + if (lookahead == '_') ADVANCE(1375); END_STATE(); case 1330: - if (lookahead == 'S') ADVANCE(1362); + if (lookahead == 'R') ADVANCE(1376); END_STATE(); case 1331: - ACCEPT_TOKEN(anon_sym_MOZ_TRIVIAL_CTOR_DTOR); + if (lookahead == 'A') ADVANCE(1377); END_STATE(); case 1332: - if (lookahead == 'P') ADVANCE(1363); + if (lookahead == 'C') ADVANCE(1378); END_STATE(); case 1333: - if (lookahead == 'P') ADVANCE(1364); + ACCEPT_TOKEN(anon_sym_MOZ_IS_CLASS_INIT); END_STATE(); case 1334: - if (lookahead == '_') ADVANCE(1365); + if (lookahead == 'O') ADVANCE(1379); END_STATE(); case 1335: - if (lookahead == 'N') ADVANCE(1366); + if (lookahead == 'R') ADVANCE(1380); END_STATE(); case 1336: - if (lookahead == '_') ADVANCE(1367); + ACCEPT_TOKEN(anon_sym_MOZ_MUST_OVERRIDE); END_STATE(); case 1337: - if (lookahead == 'E') ADVANCE(1368); + if (lookahead == 'R') ADVANCE(1381); END_STATE(); case 1338: - if (lookahead == 'T') ADVANCE(1369); + ACCEPT_TOKEN(anon_sym_MOZ_MUST_USE_TYPE); END_STATE(); case 1339: - if (lookahead == 'T') ADVANCE(1370); + if (lookahead == 'B') ADVANCE(1382); END_STATE(); case 1340: - if (lookahead == 'T') ADVANCE(1371); + if (lookahead == 'L') ADVANCE(1383); END_STATE(); case 1341: - if (lookahead == 'O') ADVANCE(1372); + if (lookahead == 'D') ADVANCE(1384); END_STATE(); case 1342: - if (lookahead == 'F') ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_MOZ_NONHEAP_CLASS); END_STATE(); case 1343: - if (lookahead == 'A') ADVANCE(1374); + if (lookahead == 'N') ADVANCE(1385); END_STATE(); case 1344: - if (lookahead == 'C') ADVANCE(1375); + if (lookahead == 'E') ADVANCE(1386); END_STATE(); case 1345: - if (lookahead == 'T') ADVANCE(1376); + if (lookahead == 'F') ADVANCE(1387); END_STATE(); case 1346: - if (lookahead == 'A') ADVANCE(1377); + if (lookahead == '_') ADVANCE(1388); END_STATE(); case 1347: - if (lookahead == 'E') ADVANCE(1378); + if (lookahead == 'E') ADVANCE(1389); END_STATE(); case 1348: - if (lookahead == 'Y') ADVANCE(1379); + if (lookahead == '_') ADVANCE(1390); END_STATE(); case 1349: - if (lookahead == 'P') ADVANCE(1380); + if (lookahead == 'N') ADVANCE(1391); END_STATE(); case 1350: - ACCEPT_TOKEN(anon_sym_MOZ_NEVER_INLINE_DEBUG); + if (lookahead == 'I') ADVANCE(1392); END_STATE(); case 1351: - if (lookahead == 'S') ADVANCE(1381); + if (lookahead == 'N') ADVANCE(1393); END_STATE(); case 1352: - if (lookahead == 'O') ADVANCE(1382); + if (lookahead == 'A') ADVANCE(1394); END_STATE(); case 1353: - if (lookahead == '_') ADVANCE(1383); + if (lookahead == 'O') ADVANCE(1395); END_STATE(); case 1354: - if (lookahead == 'P') ADVANCE(1384); + if (lookahead == 'U') ADVANCE(1396); END_STATE(); case 1355: - if (lookahead == '_') ADVANCE(1385); + if (lookahead == 'N') ADVANCE(1397); END_STATE(); case 1356: - if (lookahead == 'E') ADVANCE(1386); + if (lookahead == '_') ADVANCE(1398); END_STATE(); case 1357: - if (lookahead == '_') ADVANCE(1387); + if (lookahead == 'C') ADVANCE(1399); END_STATE(); case 1358: - if (lookahead == 'V') ADVANCE(1388); + if (lookahead == 'S') ADVANCE(1400); END_STATE(); case 1359: - if (lookahead == 'O') ADVANCE(1389); + if (lookahead == 'D') ADVANCE(1401); END_STATE(); case 1360: - if (lookahead == 'I') ADVANCE(1390); + if (lookahead == 'T') ADVANCE(1402); END_STATE(); case 1361: - if (lookahead == 'O') ADVANCE(1391); + if (lookahead == 'N') ADVANCE(1403); END_STATE(); case 1362: - ACCEPT_TOKEN(anon_sym_MOZ_STATIC_LOCAL_CLASS); + if (lookahead == 'N') ADVANCE(1404); END_STATE(); case 1363: - ACCEPT_TOKEN(anon_sym_QM_NOTEONLY_TRY_UNWRAP); + if (lookahead == 'U') ADVANCE(1405); END_STATE(); case 1364: - ACCEPT_TOKEN(anon_sym_QM_WARNONLY_TRY_UNWRAP); + if (lookahead == 'Y') ADVANCE(1406); END_STATE(); case 1365: - if (lookahead == 'D') ADVANCE(1392); + if (lookahead == 'E') ADVANCE(1407); END_STATE(); case 1366: - if (lookahead == 'D') ADVANCE(1393); + ACCEPT_TOKEN(anon_sym_MOZ_ASAN_BLACKLIST); END_STATE(); case 1367: - if (lookahead == 'D') ADVANCE(1394); + ACCEPT_TOKEN(anon_sym_MOZ_CAN_RUN_SCRIPT); + if (lookahead == '_') ADVANCE(1408); END_STATE(); case 1368: - if (lookahead == 'C') ADVANCE(1395); + if (lookahead == '_') ADVANCE(1409); END_STATE(); case 1369: - if (lookahead == 'U') ADVANCE(1396); + if (lookahead == 'N') ADVANCE(1410); END_STATE(); case 1370: - ACCEPT_TOKEN(anon_sym_MOZ_HAVE_ASAN_BLACKLIST); + if (lookahead == 'K') ADVANCE(1411); END_STATE(); case 1371: - if (lookahead == 'T') ADVANCE(1397); + if (lookahead == 'I') ADVANCE(1412); END_STATE(); case 1372: - if (lookahead == 'W') ADVANCE(1398); + if (lookahead == 'P') ADVANCE(1413); END_STATE(); case 1373: - if (lookahead == 'L') ADVANCE(1399); + if (lookahead == 'Z') ADVANCE(1414); END_STATE(); case 1374: - if (lookahead == 'T') ADVANCE(1400); + if (lookahead == 'E') ADVANCE(1415); END_STATE(); case 1375: - if (lookahead == 'O') ADVANCE(1401); + if (lookahead == 'O') ADVANCE(1416); END_STATE(); case 1376: - if (lookahead == '_') ADVANCE(1402); + ACCEPT_TOKEN(anon_sym_MOZ_HEAP_ALLOCATOR); END_STATE(); case 1377: - if (lookahead == 'L') ADVANCE(1403); + if (lookahead == 'N') ADVANCE(1417); END_STATE(); case 1378: - if (lookahead == 'M') ADVANCE(1404); + if (lookahead == 'T') ADVANCE(1418); END_STATE(); case 1379: - if (lookahead == 'P') ADVANCE(1405); + if (lookahead == '_') ADVANCE(1419); END_STATE(); case 1380: - if (lookahead == 'E') ADVANCE(1406); + if (lookahead == '_') ADVANCE(1420); END_STATE(); case 1381: - ACCEPT_TOKEN(anon_sym_MOZ_NON_TEMPORARY_CLASS); + if (lookahead == 'O') ADVANCE(1421); END_STATE(); case 1382: - if (lookahead == 'N') ADVANCE(1407); + if (lookahead == 'L') ADVANCE(1422); END_STATE(); case 1383: - if (lookahead == 'I') ADVANCE(1408); + if (lookahead == 'E') ADVANCE(1423); END_STATE(); case 1384: - if (lookahead == 'O') ADVANCE(1409); + if (lookahead == 'E') ADVANCE(1424); END_STATE(); case 1385: - if (lookahead == 'O') ADVANCE(1410); + ACCEPT_TOKEN(anon_sym_MOZ_NONNULL_RETURN); END_STATE(); case 1386: - if (lookahead == 'D') ADVANCE(1411); + ACCEPT_TOKEN(anon_sym_MOZ_NON_MEMMOVABLE); END_STATE(); case 1387: - if (lookahead == 'S') ADVANCE(1412); + ACCEPT_TOKEN(anon_sym_MOZ_NON_OWNING_REF); END_STATE(); case 1388: - if (lookahead == 'I') ADVANCE(1413); + if (lookahead == 'C') ADVANCE(1425); END_STATE(); case 1389: - if (lookahead == 'R') ADVANCE(1414); + if (lookahead == 'A') ADVANCE(1426); END_STATE(); case 1390: - if (lookahead == 'V') ADVANCE(1415); + if (lookahead == 'E') ADVANCE(1427); END_STATE(); case 1391: - if (lookahead == 'D') ADVANCE(1416); + if (lookahead == '_') ADVANCE(1428); END_STATE(); case 1392: - if (lookahead == 'E') ADVANCE(1417); + if (lookahead == 'G') ADVANCE(1429); END_STATE(); case 1393: - if (lookahead == 'A') ADVANCE(1418); + if (lookahead == 'S') ADVANCE(1430); END_STATE(); case 1394: - if (lookahead == 'E') ADVANCE(1419); + if (lookahead == 'V') ADVANCE(1431); END_STATE(); case 1395: - if (lookahead == 'T') ADVANCE(1420); + if (lookahead == 'N') ADVANCE(1432); END_STATE(); case 1396: - if (lookahead == 'R') ADVANCE(1421); + if (lookahead == 'R') ADVANCE(1433); END_STATE(); case 1397: - if (lookahead == 'R') ADVANCE(1422); + if (lookahead == 'O') ADVANCE(1434); END_STATE(); case 1398: - if (lookahead == '_') ADVANCE(1423); + if (lookahead == 'M') ADVANCE(1435); END_STATE(); case 1399: - if (lookahead == 'O') ADVANCE(1424); + if (lookahead == 'L') ADVANCE(1436); END_STATE(); case 1400: - if (lookahead == 'I') ADVANCE(1425); + if (lookahead == 'S') ADVANCE(1437); END_STATE(); case 1401: - if (lookahead == 'U') ADVANCE(1426); + if (lookahead == 'T') ADVANCE(1438); END_STATE(); case 1402: - if (lookahead == 'R') ADVANCE(1427); + ACCEPT_TOKEN(anon_sym_MOZ_TSAN_BLACKLIST); END_STATE(); case 1403: - if (lookahead == 'L') ADVANCE(1428); + if (lookahead == 'W') ADVANCE(1439); END_STATE(); case 1404: - if (lookahead == 'B') ADVANCE(1429); + if (lookahead == 'W') ADVANCE(1440); END_STATE(); case 1405: - if (lookahead == 'E') ADVANCE(1430); + if (lookahead == 'T') ADVANCE(1441); END_STATE(); case 1406: - ACCEPT_TOKEN(anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE); + ACCEPT_TOKEN(anon_sym_MOZ_ALLOW_TEMPORARY); END_STATE(); case 1407: - if (lookahead == '_') ADVANCE(1431); + if (lookahead == 'V') ADVANCE(1442); END_STATE(); case 1408: - if (lookahead == 'N') ADVANCE(1432); + if (lookahead == 'B') ADVANCE(1443); + if (lookahead == 'F') ADVANCE(1444); END_STATE(); case 1409: - if (lookahead == 'R') ADVANCE(1433); + if (lookahead == 'O') ADVANCE(1445); END_STATE(); case 1410: - if (lookahead == 'V') ADVANCE(1434); + if (lookahead == 'O') ADVANCE(1446); END_STATE(); case 1411: - if (lookahead == '_') ADVANCE(1435); + if (lookahead == 'L') ADVANCE(1447); END_STATE(); case 1412: - if (lookahead == 'T') ADVANCE(1436); + if (lookahead == 'N') ADVANCE(1448); END_STATE(); case 1413: - if (lookahead == 'A') ADVANCE(1437); + if (lookahead == 'T') ADVANCE(1449); END_STATE(); case 1414: - if (lookahead == '_') ADVANCE(1438); + if (lookahead == 'E') ADVANCE(1450); END_STATE(); case 1415: - if (lookahead == 'I') ADVANCE(1439); + if (lookahead == 'R') ADVANCE(1451); END_STATE(); case 1416: - ACCEPT_TOKEN(anon_sym_MOZ_REQUIRED_BASE_METHOD); + if (lookahead == 'V') ADVANCE(1452); END_STATE(); case 1417: - if (lookahead == 'B') ADVANCE(1440); + if (lookahead == 'N') ADVANCE(1453); END_STATE(); case 1418: - if (lookahead == 'R') ADVANCE(1441); + if (lookahead == 'O') ADVANCE(1454); END_STATE(); case 1419: - if (lookahead == 'F') ADVANCE(1442); + if (lookahead == 'R') ADVANCE(1455); END_STATE(); case 1420: - if (lookahead == '_') ADVANCE(1443); + if (lookahead == 'M') ADVANCE(1456); END_STATE(); case 1421: - if (lookahead == 'N') ADVANCE(1444); + if (lookahead == 'M') ADVANCE(1457); END_STATE(); case 1422: - ACCEPT_TOKEN(anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR); + if (lookahead == 'E') ADVANCE(1458); END_STATE(); case 1423: - if (lookahead == 'S') ADVANCE(1445); + if (lookahead == '_') ADVANCE(1459); END_STATE(); case 1424: - if (lookahead == 'W') ADVANCE(1446); + if (lookahead == 'B') ADVANCE(1460); END_STATE(); case 1425: - if (lookahead == 'O') ADVANCE(1447); + if (lookahead == 'L') ADVANCE(1461); END_STATE(); case 1426: - if (lookahead == 'N') ADVANCE(1448); + if (lookahead == 'S') ADVANCE(1462); END_STATE(); case 1427: - if (lookahead == 'E') ADVANCE(1449); + if (lookahead == 'X') ADVANCE(1463); END_STATE(); case 1428: - if (lookahead == 'E') ADVANCE(1450); + if (lookahead == 'T') ADVANCE(1464); END_STATE(); case 1429: - if (lookahead == 'E') ADVANCE(1451); + if (lookahead == 'N') ADVANCE(1465); END_STATE(); case 1430: - ACCEPT_TOKEN(anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE); + if (lookahead == 'I') ADVANCE(1466); END_STATE(); case 1431: - if (lookahead == 'R') ADVANCE(1452); + if (lookahead == 'O') ADVANCE(1467); END_STATE(); case 1432: - if (lookahead == '_') ADVANCE(1453); + if (lookahead == 'T') ADVANCE(1468); END_STATE(); case 1433: - if (lookahead == 'A') ADVANCE(1454); + if (lookahead == 'N') ADVANCE(1469); END_STATE(); case 1434: - if (lookahead == 'E') ADVANCE(1455); + if (lookahead == 'N') ADVANCE(1470); END_STATE(); case 1435: - if (lookahead == 'O') ADVANCE(1456); + if (lookahead == 'E') ADVANCE(1471); END_STATE(); case 1436: - if (lookahead == 'A') ADVANCE(1457); + if (lookahead == 'A') ADVANCE(1472); END_STATE(); case 1437: - if (lookahead == 'L') ADVANCE(1458); + ACCEPT_TOKEN(anon_sym_MOZ_TEMPORARY_CLASS); END_STATE(); case 1438: - if (lookahead == 'S') ADVANCE(1459); + if (lookahead == 'O') ADVANCE(1473); END_STATE(); case 1439: - if (lookahead == 'A') ADVANCE(1460); + if (lookahead == 'R') ADVANCE(1474); END_STATE(); case 1440: - if (lookahead == 'U') ADVANCE(1461); + if (lookahead == 'R') ADVANCE(1475); END_STATE(); case 1441: - if (lookahead == 'Y') ADVANCE(1462); + if (lookahead == 'E') ADVANCE(1476); END_STATE(); case 1442: - if (lookahead == 'I') ADVANCE(1463); + if (lookahead == 'E') ADVANCE(1477); END_STATE(); case 1443: - if (lookahead == 'N') ADVANCE(1464); + if (lookahead == 'O') ADVANCE(1478); END_STATE(); case 1444: - ACCEPT_TOKEN(anon_sym_MOZ_HAVE_ANALYZER_NORETURN); + if (lookahead == 'O') ADVANCE(1479); END_STATE(); case 1445: - if (lookahead == 'A') ADVANCE(1465); + if (lookahead == 'B') ADVANCE(1480); END_STATE(); case 1446: - if (lookahead == '_') ADVANCE(1466); + if (lookahead == 'R') ADVANCE(1481); END_STATE(); case 1447: - if (lookahead == 'N') ADVANCE(1467); + if (lookahead == 'I') ADVANCE(1482); END_STATE(); case 1448: - if (lookahead == 'T') ADVANCE(1468); + if (lookahead == 'E') ADVANCE(1483); END_STATE(); case 1449: - if (lookahead == 'T') ADVANCE(1469); + if (lookahead == 'R') ADVANCE(1484); END_STATE(); case 1450: - if (lookahead == 'R') ADVANCE(1470); + if (lookahead == '_') ADVANCE(1485); END_STATE(); case 1451: - if (lookahead == 'R') ADVANCE(1471); + if (lookahead == 'F') ADVANCE(1486); END_STATE(); case 1452: - if (lookahead == 'E') ADVANCE(1472); + if (lookahead == 'E') ADVANCE(1487); END_STATE(); case 1453: - if (lookahead == 'A') ADVANCE(1473); + if (lookahead == 'O') ADVANCE(1488); END_STATE(); case 1454: - if (lookahead == 'R') ADVANCE(1474); + if (lookahead == 'R') ADVANCE(1489); END_STATE(); case 1455: - if (lookahead == 'R') ADVANCE(1475); + if (lookahead == 'E') ADVANCE(1490); END_STATE(); case 1456: - if (lookahead == 'V') ADVANCE(1476); + if (lookahead == 'U') ADVANCE(1491); END_STATE(); case 1457: - if (lookahead == 'T') ADVANCE(1477); + if (lookahead == '_') ADVANCE(1492); END_STATE(); case 1458: - if (lookahead == '_') ADVANCE(1478); + if (lookahead == '_') ADVANCE(1493); END_STATE(); case 1459: - if (lookahead == 'T') ADVANCE(1479); + if (lookahead == 'T') ADVANCE(1494); END_STATE(); case 1460: - if (lookahead == 'L') ADVANCE(1480); + if (lookahead == 'U') ADVANCE(1495); END_STATE(); case 1461: - if (lookahead == 'G') ADVANCE(1481); + if (lookahead == 'A') ADVANCE(1496); END_STATE(); case 1462: - ACCEPT_TOKEN(anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY); + if (lookahead == 'E') ADVANCE(1497); END_STATE(); case 1463: - if (lookahead == 'N') ADVANCE(1482); + if (lookahead == 'P') ADVANCE(1498); END_STATE(); case 1464: - if (lookahead == 'O') ADVANCE(1483); + if (lookahead == 'E') ADVANCE(1499); END_STATE(); case 1465: - if (lookahead == 'N') ADVANCE(1484); + if (lookahead == 'E') ADVANCE(1500); END_STATE(); case 1466: - if (lookahead == 'S') ADVANCE(1485); + if (lookahead == 'G') ADVANCE(1501); END_STATE(); case 1467: - if (lookahead == 'S') ADVANCE(1486); + if (lookahead == 'I') ADVANCE(1502); END_STATE(); case 1468: - if (lookahead == 'E') ADVANCE(1487); + if (lookahead == 'R') ADVANCE(1503); END_STATE(); case 1469: - if (lookahead == 'U') ADVANCE(1488); + if (lookahead == '_') ADVANCE(1504); END_STATE(); case 1470: - if (lookahead == '_') ADVANCE(1489); + if (lookahead == 'T') ADVANCE(1505); END_STATE(); case 1471: - if (lookahead == 'S') ADVANCE(1490); + if (lookahead == 'T') ADVANCE(1506); END_STATE(); case 1472: - if (lookahead == 'T') ADVANCE(1491); + if (lookahead == 'S') ADVANCE(1507); END_STATE(); case 1473: - if (lookahead == 'R') ADVANCE(1492); + if (lookahead == 'R') ADVANCE(1508); END_STATE(); case 1474: - if (lookahead == 'I') ADVANCE(1493); + if (lookahead == 'A') ADVANCE(1509); END_STATE(); case 1475: - if (lookahead == 'F') ADVANCE(1494); + if (lookahead == 'A') ADVANCE(1510); END_STATE(); case 1476: - if (lookahead == 'E') ADVANCE(1495); + ACCEPT_TOKEN(anon_sym_FORWARD_SET_ATTRIBUTE); END_STATE(); case 1477: - if (lookahead == 'I') ADVANCE(1496); + if (lookahead == 'N') ADVANCE(1511); END_STATE(); case 1478: - if (lookahead == 'U') ADVANCE(1497); + if (lookahead == 'U') ADVANCE(1512); END_STATE(); case 1479: - if (lookahead == 'A') ADVANCE(1498); + if (lookahead == 'R') ADVANCE(1513); END_STATE(); case 1480: - if (lookahead == '_') ADVANCE(1499); + if (lookahead == 'J') ADVANCE(1514); END_STATE(); case 1481: - ACCEPT_TOKEN(anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG); + if (lookahead == 'E') ADVANCE(1515); END_STATE(); case 1482: - if (lookahead == 'I') ADVANCE(1500); + if (lookahead == 'S') ADVANCE(1516); END_STATE(); case 1483: - if (lookahead == 'T') ADVANCE(1501); + ACCEPT_TOKEN(anon_sym_MOZ_HAVE_NEVER_INLINE); END_STATE(); case 1484: - if (lookahead == 'I') ADVANCE(1502); + ACCEPT_TOKEN(anon_sym_MOZ_HAVE_NORETURN_PTR); END_STATE(); case 1485: - if (lookahead == 'A') ADVANCE(1503); + if (lookahead == 'A') ADVANCE(1517); END_STATE(); case 1486: - if (lookahead == '_') ADVANCE(1504); + if (lookahead == 'L') ADVANCE(1518); END_STATE(); case 1487: - if (lookahead == 'D') ADVANCE(1505); + if (lookahead == 'R') ADVANCE(1519); END_STATE(); case 1488: - if (lookahead == 'R') ADVANCE(1506); + if (lookahead == 'T') ADVANCE(1520); END_STATE(); case 1489: - if (lookahead == 'I') ADVANCE(1507); + ACCEPT_TOKEN(anon_sym_MOZ_INIT_OUTSIDE_CTOR); END_STATE(); case 1490: - ACCEPT_TOKEN(anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS); + if (lookahead == 'F') ADVANCE(1521); END_STATE(); case 1491: - if (lookahead == 'U') ADVANCE(1508); + if (lookahead == 'S') ADVANCE(1522); END_STATE(); case 1492: - if (lookahead == 'G') ADVANCE(1509); + if (lookahead == 'C') ADVANCE(1523); END_STATE(); case 1493: - if (lookahead == 'E') ADVANCE(1510); + if (lookahead == 'M') ADVANCE(1524); + if (lookahead == 'T') ADVANCE(1525); END_STATE(); case 1494: - if (lookahead == 'L') ADVANCE(1511); + if (lookahead == 'Y') ADVANCE(1526); END_STATE(); case 1495: - if (lookahead == 'R') ADVANCE(1512); + if (lookahead == 'G') ADVANCE(1527); END_STATE(); case 1496: - if (lookahead == 'C') ADVANCE(1513); + if (lookahead == 'S') ADVANCE(1528); END_STATE(); case 1497: - if (lookahead == 'N') ADVANCE(1514); + if (lookahead == '_') ADVANCE(1529); END_STATE(); case 1498: - if (lookahead == 'T') ADVANCE(1515); + if (lookahead == 'R') ADVANCE(1530); END_STATE(); case 1499: - if (lookahead == 'U') ADVANCE(1516); + if (lookahead == 'M') ADVANCE(1531); END_STATE(); case 1500: - if (lookahead == 'T') ADVANCE(1517); + if (lookahead == 'D') ADVANCE(1532); END_STATE(); case 1501: - if (lookahead == 'I') ADVANCE(1518); + if (lookahead == 'N') ADVANCE(1533); END_STATE(); case 1502: - if (lookahead == 'T') ADVANCE(1519); + if (lookahead == 'D') ADVANCE(1534); END_STATE(); case 1503: - if (lookahead == 'N') ADVANCE(1520); + if (lookahead == 'I') ADVANCE(1535); END_STATE(); case 1504: - if (lookahead == 'F') ADVANCE(1521); + if (lookahead == 'F') ADVANCE(1536); END_STATE(); case 1505: - ACCEPT_TOKEN(anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED); + if (lookahead == 'R') ADVANCE(1537); END_STATE(); case 1506: - if (lookahead == 'N') ADVANCE(1522); + if (lookahead == 'H') ADVANCE(1538); END_STATE(); case 1507: - if (lookahead == 'F') ADVANCE(1523); + if (lookahead == 'S') ADVANCE(1539); END_STATE(); case 1508: - if (lookahead == 'R') ADVANCE(1524); + ACCEPT_TOKEN(anon_sym_MOZ_TRIVIAL_CTOR_DTOR); END_STATE(); case 1509: - if (lookahead == 'U') ADVANCE(1525); + if (lookahead == 'P') ADVANCE(1540); END_STATE(); case 1510: - if (lookahead == 'S') ADVANCE(1526); + if (lookahead == 'P') ADVANCE(1541); END_STATE(); case 1511: - if (lookahead == 'O') ADVANCE(1527); + if (lookahead == '_') ADVANCE(1542); END_STATE(); case 1512: - if (lookahead == 'F') ADVANCE(1528); + if (lookahead == 'N') ADVANCE(1543); END_STATE(); case 1513: - if (lookahead == '_') ADVANCE(1529); + if (lookahead == '_') ADVANCE(1544); END_STATE(); case 1514: - if (lookahead == 'I') ADVANCE(1530); + if (lookahead == 'E') ADVANCE(1545); END_STATE(); case 1515: - if (lookahead == 'I') ADVANCE(1531); + if (lookahead == 'T') ADVANCE(1546); END_STATE(); case 1516: - if (lookahead == 'N') ADVANCE(1532); + if (lookahead == 'T') ADVANCE(1547); END_STATE(); case 1517: - if (lookahead == 'I') ADVANCE(1533); + if (lookahead == 'T') ADVANCE(1548); END_STATE(); case 1518: - if (lookahead == 'F') ADVANCE(1534); + if (lookahead == 'O') ADVANCE(1549); END_STATE(); case 1519: - if (lookahead == 'I') ADVANCE(1535); + if (lookahead == 'F') ADVANCE(1550); END_STATE(); case 1520: - if (lookahead == 'I') ADVANCE(1536); + if (lookahead == 'A') ADVANCE(1551); END_STATE(); case 1521: - if (lookahead == 'R') ADVANCE(1537); + if (lookahead == 'C') ADVANCE(1552); END_STATE(); case 1522: - ACCEPT_TOKEN(anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN); + if (lookahead == 'T') ADVANCE(1553); END_STATE(); case 1523: - if (lookahead == '_') ADVANCE(1538); + if (lookahead == 'A') ADVANCE(1554); END_STATE(); case 1524: - if (lookahead == 'N') ADVANCE(1539); + if (lookahead == 'E') ADVANCE(1555); END_STATE(); case 1525: - if (lookahead == 'M') ADVANCE(1540); + if (lookahead == 'Y') ADVANCE(1556); END_STATE(); case 1526: - ACCEPT_TOKEN(anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES); + if (lookahead == 'P') ADVANCE(1557); END_STATE(); case 1527: - if (lookahead == 'W') ADVANCE(1541); + ACCEPT_TOKEN(anon_sym_MOZ_NEVER_INLINE_DEBUG); END_STATE(); case 1528: - if (lookahead == 'L') ADVANCE(1542); + if (lookahead == 'S') ADVANCE(1558); END_STATE(); case 1529: - if (lookahead == 'C') ADVANCE(1543); + if (lookahead == 'O') ADVANCE(1559); END_STATE(); case 1530: - if (lookahead == 'O') ADVANCE(1544); + if (lookahead == '_') ADVANCE(1560); END_STATE(); case 1531: - if (lookahead == 'C') ADVANCE(1545); + if (lookahead == 'P') ADVANCE(1561); END_STATE(); case 1532: - if (lookahead == 'I') ADVANCE(1546); + if (lookahead == '_') ADVANCE(1562); END_STATE(); case 1533: - if (lookahead == 'O') ADVANCE(1547); + if (lookahead == 'E') ADVANCE(1563); END_STATE(); case 1534: - if (lookahead == 'I') ADVANCE(1548); + if (lookahead == '_') ADVANCE(1564); END_STATE(); case 1535: - if (lookahead == 'Z') ADVANCE(1549); + if (lookahead == 'V') ADVANCE(1565); END_STATE(); case 1536: - if (lookahead == 'T') ADVANCE(1550); + if (lookahead == 'O') ADVANCE(1566); END_STATE(); case 1537: - if (lookahead == 'O') ADVANCE(1551); + if (lookahead == 'I') ADVANCE(1567); END_STATE(); case 1538: - if (lookahead == 'T') ADVANCE(1552); + if (lookahead == 'O') ADVANCE(1568); END_STATE(); case 1539: - ACCEPT_TOKEN(anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN); + ACCEPT_TOKEN(anon_sym_MOZ_STATIC_LOCAL_CLASS); END_STATE(); case 1540: - if (lookahead == 'E') ADVANCE(1553); + ACCEPT_TOKEN(anon_sym_QM_NOTEONLY_TRY_UNWRAP); END_STATE(); case 1541: - ACCEPT_TOKEN(anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW); + ACCEPT_TOKEN(anon_sym_QM_WARNONLY_TRY_UNWRAP); END_STATE(); case 1542: - if (lookahead == 'O') ADVANCE(1554); + if (lookahead == 'D') ADVANCE(1569); END_STATE(); case 1543: - if (lookahead == 'O') ADVANCE(1555); + if (lookahead == 'D') ADVANCE(1570); END_STATE(); case 1544: - if (lookahead == 'N') ADVANCE(1556); + if (lookahead == 'D') ADVANCE(1571); END_STATE(); case 1545: - if (lookahead == '_') ADVANCE(1557); + if (lookahead == 'C') ADVANCE(1572); END_STATE(); case 1546: - if (lookahead == 'O') ADVANCE(1558); + if (lookahead == 'U') ADVANCE(1573); END_STATE(); case 1547: - if (lookahead == 'N') ADVANCE(1559); + ACCEPT_TOKEN(anon_sym_MOZ_HAVE_ASAN_BLACKLIST); END_STATE(); case 1548: - if (lookahead == 'E') ADVANCE(1560); + if (lookahead == 'T') ADVANCE(1574); END_STATE(); case 1549: - if (lookahead == 'E') ADVANCE(1561); + if (lookahead == 'W') ADVANCE(1575); END_STATE(); case 1550: - if (lookahead == 'I') ADVANCE(1562); + if (lookahead == 'L') ADVANCE(1576); END_STATE(); case 1551: - if (lookahead == 'M') ADVANCE(1563); + if (lookahead == 'T') ADVANCE(1577); END_STATE(); case 1552: - if (lookahead == 'H') ADVANCE(1564); + if (lookahead == 'O') ADVANCE(1578); END_STATE(); case 1553: - if (lookahead == 'N') ADVANCE(1565); + if (lookahead == '_') ADVANCE(1579); END_STATE(); case 1554: - if (lookahead == 'W') ADVANCE(1566); + if (lookahead == 'L') ADVANCE(1580); END_STATE(); case 1555: - if (lookahead == 'N') ADVANCE(1567); + if (lookahead == 'M') ADVANCE(1581); END_STATE(); case 1556: - if (lookahead == '_') ADVANCE(1568); + if (lookahead == 'P') ADVANCE(1582); END_STATE(); case 1557: - if (lookahead == 'A') ADVANCE(1569); + if (lookahead == 'E') ADVANCE(1583); END_STATE(); case 1558: - if (lookahead == 'N') ADVANCE(1570); + ACCEPT_TOKEN(anon_sym_MOZ_NON_TEMPORARY_CLASS); END_STATE(); case 1559: - ACCEPT_TOKEN(anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION); + if (lookahead == 'N') ADVANCE(1584); END_STATE(); case 1560: - if (lookahead == 'R') ADVANCE(1571); + if (lookahead == 'I') ADVANCE(1585); END_STATE(); case 1561: - if (lookahead == '_') ADVANCE(1572); + if (lookahead == 'O') ADVANCE(1586); END_STATE(); case 1562: - if (lookahead == 'Z') ADVANCE(1573); + if (lookahead == 'O') ADVANCE(1587); END_STATE(); case 1563: - if (lookahead == '_') ADVANCE(1574); + if (lookahead == 'D') ADVANCE(1588); END_STATE(); case 1564: - if (lookahead == 'I') ADVANCE(1575); + if (lookahead == 'S') ADVANCE(1589); END_STATE(); case 1565: - if (lookahead == 'T') ADVANCE(1576); + if (lookahead == 'I') ADVANCE(1590); END_STATE(); case 1566: - ACCEPT_TOKEN(anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW); + if (lookahead == 'R') ADVANCE(1591); END_STATE(); case 1567: - if (lookahead == 'S') ADVANCE(1577); + if (lookahead == 'V') ADVANCE(1592); END_STATE(); case 1568: - if (lookahead == 'W') ADVANCE(1578); + if (lookahead == 'D') ADVANCE(1593); END_STATE(); case 1569: - if (lookahead == 'N') ADVANCE(1579); + if (lookahead == 'E') ADVANCE(1594); END_STATE(); case 1570: - if (lookahead == '_') ADVANCE(1580); + if (lookahead == 'A') ADVANCE(1595); END_STATE(); case 1571: - ACCEPT_TOKEN(anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER); + if (lookahead == 'E') ADVANCE(1596); END_STATE(); case 1572: - if (lookahead == 'A') ADVANCE(1581); + if (lookahead == 'T') ADVANCE(1597); END_STATE(); case 1573: - if (lookahead == 'E') ADVANCE(1582); + if (lookahead == 'R') ADVANCE(1598); END_STATE(); case 1574: - if (lookahead == 'T') ADVANCE(1583); + if (lookahead == 'R') ADVANCE(1599); END_STATE(); case 1575: - if (lookahead == 'S') ADVANCE(1584); + if (lookahead == '_') ADVANCE(1600); END_STATE(); case 1576: - ACCEPT_TOKEN(anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT); + if (lookahead == 'O') ADVANCE(1601); END_STATE(); case 1577: - if (lookahead == 'T') ADVANCE(1585); + if (lookahead == 'I') ADVANCE(1602); END_STATE(); case 1578: - if (lookahead == 'A') ADVANCE(1586); + if (lookahead == 'U') ADVANCE(1603); END_STATE(); case 1579: - if (lookahead == 'A') ADVANCE(1587); + if (lookahead == 'R') ADVANCE(1604); END_STATE(); case 1580: - if (lookahead == 'W') ADVANCE(1588); + if (lookahead == 'L') ADVANCE(1605); END_STATE(); case 1581: - if (lookahead == 'T') ADVANCE(1589); + if (lookahead == 'B') ADVANCE(1606); END_STATE(); case 1582: - if (lookahead == '_') ADVANCE(1590); + if (lookahead == 'E') ADVANCE(1607); END_STATE(); case 1583: - if (lookahead == 'E') ADVANCE(1591); + ACCEPT_TOKEN(anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE); END_STATE(); case 1584: - if (lookahead == '_') ADVANCE(1592); + if (lookahead == '_') ADVANCE(1608); END_STATE(); case 1585: - if (lookahead == 'R') ADVANCE(1593); + if (lookahead == 'N') ADVANCE(1609); END_STATE(); case 1586: - if (lookahead == 'R') ADVANCE(1594); + if (lookahead == 'R') ADVANCE(1610); END_STATE(); case 1587: - if (lookahead == 'L') ADVANCE(1595); + if (lookahead == 'V') ADVANCE(1611); END_STATE(); case 1588: - if (lookahead == 'A') ADVANCE(1596); + if (lookahead == '_') ADVANCE(1612); END_STATE(); case 1589: - if (lookahead == 'T') ADVANCE(1597); + if (lookahead == 'T') ADVANCE(1613); END_STATE(); case 1590: - if (lookahead == 'A') ADVANCE(1598); + if (lookahead == 'A') ADVANCE(1614); END_STATE(); case 1591: - if (lookahead == 'M') ADVANCE(1599); + if (lookahead == '_') ADVANCE(1615); END_STATE(); case 1592: - if (lookahead == 'I') ADVANCE(1600); + if (lookahead == 'I') ADVANCE(1616); END_STATE(); case 1593: - if (lookahead == 'U') ADVANCE(1601); + ACCEPT_TOKEN(anon_sym_MOZ_REQUIRED_BASE_METHOD); END_STATE(); case 1594: - if (lookahead == 'N') ADVANCE(1602); + if (lookahead == 'B') ADVANCE(1617); END_STATE(); case 1595: - if (lookahead == 'Y') ADVANCE(1603); + if (lookahead == 'R') ADVANCE(1618); END_STATE(); case 1596: - if (lookahead == 'R') ADVANCE(1604); + if (lookahead == 'F') ADVANCE(1619); END_STATE(); case 1597: - if (lookahead == 'R') ADVANCE(1605); + if (lookahead == '_') ADVANCE(1620); END_STATE(); case 1598: - if (lookahead == 'T') ADVANCE(1606); + if (lookahead == 'N') ADVANCE(1621); END_STATE(); case 1599: - if (lookahead == 'P') ADVANCE(1607); + ACCEPT_TOKEN(anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR); END_STATE(); case 1600: - if (lookahead == 'S') ADVANCE(1608); + if (lookahead == 'S') ADVANCE(1622); END_STATE(); case 1601: - if (lookahead == 'C') ADVANCE(1609); + if (lookahead == 'W') ADVANCE(1623); END_STATE(); case 1602: - if (lookahead == 'I') ADVANCE(1610); + if (lookahead == 'O') ADVANCE(1624); END_STATE(); case 1603: - if (lookahead == 'S') ADVANCE(1611); + if (lookahead == 'N') ADVANCE(1625); END_STATE(); case 1604: - if (lookahead == 'N') ADVANCE(1612); + if (lookahead == 'E') ADVANCE(1626); END_STATE(); case 1605: - ACCEPT_TOKEN(anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR); + if (lookahead == 'E') ADVANCE(1627); END_STATE(); case 1606: - if (lookahead == 'T') ADVANCE(1613); + if (lookahead == 'E') ADVANCE(1628); END_STATE(); case 1607: - if (lookahead == 'L') ADVANCE(1614); + ACCEPT_TOKEN(anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE); END_STATE(); case 1608: - if (lookahead == '_') ADVANCE(1615); + if (lookahead == 'R') ADVANCE(1629); END_STATE(); case 1609: - if (lookahead == 'T') ADVANCE(1616); + if (lookahead == '_') ADVANCE(1630); END_STATE(); case 1610: - if (lookahead == 'N') ADVANCE(1617); + if (lookahead == 'A') ADVANCE(1631); END_STATE(); case 1611: - if (lookahead == 'I') ADVANCE(1618); + if (lookahead == 'E') ADVANCE(1632); END_STATE(); case 1612: - if (lookahead == 'I') ADVANCE(1619); + if (lookahead == 'O') ADVANCE(1633); END_STATE(); case 1613: - if (lookahead == 'R') ADVANCE(1620); + if (lookahead == 'A') ADVANCE(1634); END_STATE(); case 1614: - if (lookahead == 'A') ADVANCE(1621); + if (lookahead == 'L') ADVANCE(1635); END_STATE(); case 1615: - if (lookahead == 'A') ADVANCE(1622); + if (lookahead == 'S') ADVANCE(1636); END_STATE(); case 1616: - if (lookahead == 'O') ADVANCE(1623); + if (lookahead == 'A') ADVANCE(1637); END_STATE(); case 1617: - if (lookahead == 'G') ADVANCE(1624); + if (lookahead == 'U') ADVANCE(1638); END_STATE(); case 1618: - if (lookahead == 'S') ADVANCE(1625); + if (lookahead == 'Y') ADVANCE(1639); END_STATE(); case 1619: - if (lookahead == 'N') ADVANCE(1626); + if (lookahead == 'I') ADVANCE(1640); END_STATE(); case 1620: - ACCEPT_TOKEN(anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR); + if (lookahead == 'N') ADVANCE(1641); END_STATE(); case 1621: - if (lookahead == 'T') ADVANCE(1627); + ACCEPT_TOKEN(anon_sym_MOZ_HAVE_ANALYZER_NORETURN); END_STATE(); case 1622: - if (lookahead == 'R') ADVANCE(1628); + if (lookahead == 'A') ADVANCE(1642); END_STATE(); case 1623: - if (lookahead == 'R') ADVANCE(1629); + if (lookahead == '_') ADVANCE(1643); END_STATE(); case 1624: - if (lookahead == 'S') ADVANCE(1630); + if (lookahead == 'N') ADVANCE(1644); END_STATE(); case 1625: - ACCEPT_TOKEN(anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS); + if (lookahead == 'T') ADVANCE(1645); END_STATE(); case 1626: - if (lookahead == 'G') ADVANCE(1631); + if (lookahead == 'T') ADVANCE(1646); END_STATE(); case 1627: - if (lookahead == 'E') ADVANCE(1632); + if (lookahead == 'R') ADVANCE(1647); END_STATE(); case 1628: - if (lookahead == 'G') ADVANCE(1633); + if (lookahead == 'R') ADVANCE(1648); END_STATE(); case 1629: - if (lookahead == 'S') ADVANCE(1634); + if (lookahead == 'E') ADVANCE(1649); END_STATE(); case 1630: - ACCEPT_TOKEN(anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS); + if (lookahead == 'A') ADVANCE(1650); END_STATE(); case 1631: - if (lookahead == 'S') ADVANCE(1635); + if (lookahead == 'R') ADVANCE(1651); END_STATE(); case 1632: - if (lookahead == '_') ADVANCE(1636); + if (lookahead == 'R') ADVANCE(1652); END_STATE(); case 1633: - ACCEPT_TOKEN(anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG); + if (lookahead == 'V') ADVANCE(1653); END_STATE(); case 1634: - ACCEPT_TOKEN(anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS); + if (lookahead == 'T') ADVANCE(1654); END_STATE(); case 1635: - ACCEPT_TOKEN(anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS); + if (lookahead == '_') ADVANCE(1655); END_STATE(); case 1636: - if (lookahead == 'A') ADVANCE(1637); + if (lookahead == 'T') ADVANCE(1656); END_STATE(); case 1637: - if (lookahead == 'R') ADVANCE(1638); + if (lookahead == 'L') ADVANCE(1657); END_STATE(); case 1638: - if (lookahead == 'G') ADVANCE(1639); + if (lookahead == 'G') ADVANCE(1658); END_STATE(); case 1639: - if (lookahead == 'S') ADVANCE(1640); + ACCEPT_TOKEN(anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY); END_STATE(); case 1640: + if (lookahead == 'N') ADVANCE(1659); + END_STATE(); + case 1641: + if (lookahead == 'O') ADVANCE(1660); + END_STATE(); + case 1642: + if (lookahead == 'N') ADVANCE(1661); + END_STATE(); + case 1643: + if (lookahead == 'S') ADVANCE(1662); + END_STATE(); + case 1644: + if (lookahead == 'S') ADVANCE(1663); + END_STATE(); + case 1645: + if (lookahead == 'E') ADVANCE(1664); + END_STATE(); + case 1646: + if (lookahead == 'U') ADVANCE(1665); + END_STATE(); + case 1647: + if (lookahead == '_') ADVANCE(1666); + END_STATE(); + case 1648: + if (lookahead == 'S') ADVANCE(1667); + END_STATE(); + case 1649: + if (lookahead == 'T') ADVANCE(1668); + END_STATE(); + case 1650: + if (lookahead == 'R') ADVANCE(1669); + END_STATE(); + case 1651: + if (lookahead == 'I') ADVANCE(1670); + END_STATE(); + case 1652: + if (lookahead == 'F') ADVANCE(1671); + END_STATE(); + case 1653: + if (lookahead == 'E') ADVANCE(1672); + END_STATE(); + case 1654: + if (lookahead == 'I') ADVANCE(1673); + END_STATE(); + case 1655: + if (lookahead == 'U') ADVANCE(1674); + END_STATE(); + case 1656: + if (lookahead == 'A') ADVANCE(1675); + END_STATE(); + case 1657: + if (lookahead == '_') ADVANCE(1676); + END_STATE(); + case 1658: + ACCEPT_TOKEN(anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG); + END_STATE(); + case 1659: + if (lookahead == 'I') ADVANCE(1677); + END_STATE(); + case 1660: + if (lookahead == 'T') ADVANCE(1678); + END_STATE(); + case 1661: + if (lookahead == 'I') ADVANCE(1679); + END_STATE(); + case 1662: + if (lookahead == 'A') ADVANCE(1680); + END_STATE(); + case 1663: + if (lookahead == '_') ADVANCE(1681); + END_STATE(); + case 1664: + if (lookahead == 'D') ADVANCE(1682); + END_STATE(); + case 1665: + if (lookahead == 'R') ADVANCE(1683); + END_STATE(); + case 1666: + if (lookahead == 'I') ADVANCE(1684); + END_STATE(); + case 1667: + ACCEPT_TOKEN(anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS); + END_STATE(); + case 1668: + if (lookahead == 'U') ADVANCE(1685); + END_STATE(); + case 1669: + if (lookahead == 'G') ADVANCE(1686); + END_STATE(); + case 1670: + if (lookahead == 'E') ADVANCE(1687); + END_STATE(); + case 1671: + if (lookahead == 'L') ADVANCE(1688); + END_STATE(); + case 1672: + if (lookahead == 'R') ADVANCE(1689); + END_STATE(); + case 1673: + if (lookahead == 'C') ADVANCE(1690); + END_STATE(); + case 1674: + if (lookahead == 'N') ADVANCE(1691); + END_STATE(); + case 1675: + if (lookahead == 'T') ADVANCE(1692); + END_STATE(); + case 1676: + if (lookahead == 'U') ADVANCE(1693); + END_STATE(); + case 1677: + if (lookahead == 'T') ADVANCE(1694); + END_STATE(); + case 1678: + if (lookahead == 'I') ADVANCE(1695); + END_STATE(); + case 1679: + if (lookahead == 'T') ADVANCE(1696); + END_STATE(); + case 1680: + if (lookahead == 'N') ADVANCE(1697); + END_STATE(); + case 1681: + if (lookahead == 'F') ADVANCE(1698); + END_STATE(); + case 1682: + ACCEPT_TOKEN(anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED); + END_STATE(); + case 1683: + if (lookahead == 'N') ADVANCE(1699); + END_STATE(); + case 1684: + if (lookahead == 'F') ADVANCE(1700); + END_STATE(); + case 1685: + if (lookahead == 'R') ADVANCE(1701); + END_STATE(); + case 1686: + if (lookahead == 'U') ADVANCE(1702); + END_STATE(); + case 1687: + if (lookahead == 'S') ADVANCE(1703); + END_STATE(); + case 1688: + if (lookahead == 'O') ADVANCE(1704); + END_STATE(); + case 1689: + if (lookahead == 'F') ADVANCE(1705); + END_STATE(); + case 1690: + if (lookahead == '_') ADVANCE(1706); + END_STATE(); + case 1691: + if (lookahead == 'I') ADVANCE(1707); + END_STATE(); + case 1692: + if (lookahead == 'I') ADVANCE(1708); + END_STATE(); + case 1693: + if (lookahead == 'N') ADVANCE(1709); + END_STATE(); + case 1694: + if (lookahead == 'I') ADVANCE(1710); + END_STATE(); + case 1695: + if (lookahead == 'F') ADVANCE(1711); + END_STATE(); + case 1696: + if (lookahead == 'I') ADVANCE(1712); + END_STATE(); + case 1697: + if (lookahead == 'I') ADVANCE(1713); + END_STATE(); + case 1698: + if (lookahead == 'R') ADVANCE(1714); + END_STATE(); + case 1699: + ACCEPT_TOKEN(anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN); + END_STATE(); + case 1700: + if (lookahead == '_') ADVANCE(1715); + END_STATE(); + case 1701: + if (lookahead == 'N') ADVANCE(1716); + END_STATE(); + case 1702: + if (lookahead == 'M') ADVANCE(1717); + END_STATE(); + case 1703: + ACCEPT_TOKEN(anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES); + END_STATE(); + case 1704: + if (lookahead == 'W') ADVANCE(1718); + END_STATE(); + case 1705: + if (lookahead == 'L') ADVANCE(1719); + END_STATE(); + case 1706: + if (lookahead == 'C') ADVANCE(1720); + END_STATE(); + case 1707: + if (lookahead == 'O') ADVANCE(1721); + END_STATE(); + case 1708: + if (lookahead == 'C') ADVANCE(1722); + END_STATE(); + case 1709: + if (lookahead == 'I') ADVANCE(1723); + END_STATE(); + case 1710: + if (lookahead == 'O') ADVANCE(1724); + END_STATE(); + case 1711: + if (lookahead == 'I') ADVANCE(1725); + END_STATE(); + case 1712: + if (lookahead == 'Z') ADVANCE(1726); + END_STATE(); + case 1713: + if (lookahead == 'T') ADVANCE(1727); + END_STATE(); + case 1714: + if (lookahead == 'O') ADVANCE(1728); + END_STATE(); + case 1715: + if (lookahead == 'T') ADVANCE(1729); + END_STATE(); + case 1716: + ACCEPT_TOKEN(anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN); + END_STATE(); + case 1717: + if (lookahead == 'E') ADVANCE(1730); + END_STATE(); + case 1718: + ACCEPT_TOKEN(anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW); + END_STATE(); + case 1719: + if (lookahead == 'O') ADVANCE(1731); + END_STATE(); + case 1720: + if (lookahead == 'O') ADVANCE(1732); + END_STATE(); + case 1721: + if (lookahead == 'N') ADVANCE(1733); + END_STATE(); + case 1722: + if (lookahead == '_') ADVANCE(1734); + END_STATE(); + case 1723: + if (lookahead == 'O') ADVANCE(1735); + END_STATE(); + case 1724: + if (lookahead == 'N') ADVANCE(1736); + END_STATE(); + case 1725: + if (lookahead == 'E') ADVANCE(1737); + END_STATE(); + case 1726: + if (lookahead == 'E') ADVANCE(1738); + END_STATE(); + case 1727: + if (lookahead == 'I') ADVANCE(1739); + END_STATE(); + case 1728: + if (lookahead == 'M') ADVANCE(1740); + END_STATE(); + case 1729: + if (lookahead == 'H') ADVANCE(1741); + END_STATE(); + case 1730: + if (lookahead == 'N') ADVANCE(1742); + END_STATE(); + case 1731: + if (lookahead == 'W') ADVANCE(1743); + END_STATE(); + case 1732: + if (lookahead == 'N') ADVANCE(1744); + END_STATE(); + case 1733: + if (lookahead == '_') ADVANCE(1745); + END_STATE(); + case 1734: + if (lookahead == 'A') ADVANCE(1746); + END_STATE(); + case 1735: + if (lookahead == 'N') ADVANCE(1747); + END_STATE(); + case 1736: + ACCEPT_TOKEN(anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION); + END_STATE(); + case 1737: + if (lookahead == 'R') ADVANCE(1748); + END_STATE(); + case 1738: + if (lookahead == '_') ADVANCE(1749); + END_STATE(); + case 1739: + if (lookahead == 'Z') ADVANCE(1750); + END_STATE(); + case 1740: + if (lookahead == '_') ADVANCE(1751); + END_STATE(); + case 1741: + if (lookahead == 'I') ADVANCE(1752); + END_STATE(); + case 1742: + if (lookahead == 'T') ADVANCE(1753); + END_STATE(); + case 1743: + ACCEPT_TOKEN(anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW); + END_STATE(); + case 1744: + if (lookahead == 'S') ADVANCE(1754); + END_STATE(); + case 1745: + if (lookahead == 'W') ADVANCE(1755); + END_STATE(); + case 1746: + if (lookahead == 'N') ADVANCE(1756); + END_STATE(); + case 1747: + if (lookahead == '_') ADVANCE(1757); + END_STATE(); + case 1748: + ACCEPT_TOKEN(sym_macro_statement); + END_STATE(); + case 1749: + if (lookahead == 'A') ADVANCE(1758); + END_STATE(); + case 1750: + if (lookahead == 'E') ADVANCE(1759); + END_STATE(); + case 1751: + if (lookahead == 'T') ADVANCE(1760); + END_STATE(); + case 1752: + if (lookahead == 'S') ADVANCE(1761); + END_STATE(); + case 1753: + ACCEPT_TOKEN(anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT); + END_STATE(); + case 1754: + if (lookahead == 'T') ADVANCE(1762); + END_STATE(); + case 1755: + if (lookahead == 'A') ADVANCE(1763); + END_STATE(); + case 1756: + if (lookahead == 'A') ADVANCE(1764); + END_STATE(); + case 1757: + if (lookahead == 'W') ADVANCE(1765); + END_STATE(); + case 1758: + if (lookahead == 'T') ADVANCE(1766); + END_STATE(); + case 1759: + if (lookahead == '_') ADVANCE(1767); + END_STATE(); + case 1760: + if (lookahead == 'E') ADVANCE(1768); + END_STATE(); + case 1761: + if (lookahead == '_') ADVANCE(1769); + END_STATE(); + case 1762: + if (lookahead == 'R') ADVANCE(1770); + END_STATE(); + case 1763: + if (lookahead == 'R') ADVANCE(1771); + END_STATE(); + case 1764: + if (lookahead == 'L') ADVANCE(1772); + END_STATE(); + case 1765: + if (lookahead == 'A') ADVANCE(1773); + END_STATE(); + case 1766: + if (lookahead == 'T') ADVANCE(1774); + END_STATE(); + case 1767: + if (lookahead == 'A') ADVANCE(1775); + END_STATE(); + case 1768: + if (lookahead == 'M') ADVANCE(1776); + END_STATE(); + case 1769: + if (lookahead == 'I') ADVANCE(1777); + END_STATE(); + case 1770: + if (lookahead == 'U') ADVANCE(1778); + END_STATE(); + case 1771: + if (lookahead == 'N') ADVANCE(1779); + END_STATE(); + case 1772: + if (lookahead == 'Y') ADVANCE(1780); + END_STATE(); + case 1773: + if (lookahead == 'R') ADVANCE(1781); + END_STATE(); + case 1774: + if (lookahead == 'R') ADVANCE(1782); + END_STATE(); + case 1775: + if (lookahead == 'T') ADVANCE(1783); + END_STATE(); + case 1776: + if (lookahead == 'P') ADVANCE(1784); + END_STATE(); + case 1777: + if (lookahead == 'S') ADVANCE(1785); + END_STATE(); + case 1778: + if (lookahead == 'C') ADVANCE(1786); + END_STATE(); + case 1779: + if (lookahead == 'I') ADVANCE(1787); + END_STATE(); + case 1780: + if (lookahead == 'S') ADVANCE(1788); + END_STATE(); + case 1781: + if (lookahead == 'N') ADVANCE(1789); + END_STATE(); + case 1782: + ACCEPT_TOKEN(anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR); + END_STATE(); + case 1783: + if (lookahead == 'T') ADVANCE(1790); + END_STATE(); + case 1784: + if (lookahead == 'L') ADVANCE(1791); + END_STATE(); + case 1785: + if (lookahead == '_') ADVANCE(1792); + END_STATE(); + case 1786: + if (lookahead == 'T') ADVANCE(1793); + END_STATE(); + case 1787: + if (lookahead == 'N') ADVANCE(1794); + END_STATE(); + case 1788: + if (lookahead == 'I') ADVANCE(1795); + END_STATE(); + case 1789: + if (lookahead == 'I') ADVANCE(1796); + END_STATE(); + case 1790: + if (lookahead == 'R') ADVANCE(1797); + END_STATE(); + case 1791: + if (lookahead == 'A') ADVANCE(1798); + END_STATE(); + case 1792: + if (lookahead == 'A') ADVANCE(1799); + END_STATE(); + case 1793: + if (lookahead == 'O') ADVANCE(1800); + END_STATE(); + case 1794: + if (lookahead == 'G') ADVANCE(1801); + END_STATE(); + case 1795: + if (lookahead == 'S') ADVANCE(1802); + END_STATE(); + case 1796: + if (lookahead == 'N') ADVANCE(1803); + END_STATE(); + case 1797: + ACCEPT_TOKEN(anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR); + END_STATE(); + case 1798: + if (lookahead == 'T') ADVANCE(1804); + END_STATE(); + case 1799: + if (lookahead == 'R') ADVANCE(1805); + END_STATE(); + case 1800: + if (lookahead == 'R') ADVANCE(1806); + END_STATE(); + case 1801: + if (lookahead == 'S') ADVANCE(1807); + END_STATE(); + case 1802: + ACCEPT_TOKEN(anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS); + END_STATE(); + case 1803: + if (lookahead == 'G') ADVANCE(1808); + END_STATE(); + case 1804: + if (lookahead == 'E') ADVANCE(1809); + END_STATE(); + case 1805: + if (lookahead == 'G') ADVANCE(1810); + END_STATE(); + case 1806: + if (lookahead == 'S') ADVANCE(1811); + END_STATE(); + case 1807: + ACCEPT_TOKEN(anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS); + END_STATE(); + case 1808: + if (lookahead == 'S') ADVANCE(1812); + END_STATE(); + case 1809: + if (lookahead == '_') ADVANCE(1813); + END_STATE(); + case 1810: + ACCEPT_TOKEN(anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG); + END_STATE(); + case 1811: + ACCEPT_TOKEN(anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS); + END_STATE(); + case 1812: + ACCEPT_TOKEN(anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS); + END_STATE(); + case 1813: + if (lookahead == 'A') ADVANCE(1814); + END_STATE(); + case 1814: + if (lookahead == 'R') ADVANCE(1815); + END_STATE(); + case 1815: + if (lookahead == 'G') ADVANCE(1816); + END_STATE(); + case 1816: + if (lookahead == 'S') ADVANCE(1817); + END_STATE(); + case 1817: ACCEPT_TOKEN(anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS); END_STATE(); default: @@ -24666,5293 +32133,9307 @@ 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 = 205, .external_lex_state = 1}, - [2] = {.lex_state = 205, .external_lex_state = 1}, - [3] = {.lex_state = 205, .external_lex_state = 1}, - [4] = {.lex_state = 205, .external_lex_state = 1}, - [5] = {.lex_state = 205, .external_lex_state = 1}, - [6] = {.lex_state = 205, .external_lex_state = 1}, - [7] = {.lex_state = 205, .external_lex_state = 1}, - [8] = {.lex_state = 205, .external_lex_state = 1}, - [9] = {.lex_state = 205, .external_lex_state = 1}, - [10] = {.lex_state = 108, .external_lex_state = 1}, - [11] = {.lex_state = 108, .external_lex_state = 1}, - [12] = {.lex_state = 108, .external_lex_state = 1}, - [13] = {.lex_state = 108, .external_lex_state = 1}, - [14] = {.lex_state = 108, .external_lex_state = 1}, - [15] = {.lex_state = 108, .external_lex_state = 1}, - [16] = {.lex_state = 108, .external_lex_state = 1}, - [17] = {.lex_state = 108, .external_lex_state = 1}, - [18] = {.lex_state = 108, .external_lex_state = 1}, - [19] = {.lex_state = 108, .external_lex_state = 1}, - [20] = {.lex_state = 108, .external_lex_state = 1}, - [21] = {.lex_state = 108, .external_lex_state = 1}, - [22] = {.lex_state = 108, .external_lex_state = 1}, - [23] = {.lex_state = 108, .external_lex_state = 1}, - [24] = {.lex_state = 108, .external_lex_state = 1}, - [25] = {.lex_state = 108, .external_lex_state = 1}, - [26] = {.lex_state = 108, .external_lex_state = 1}, - [27] = {.lex_state = 108, .external_lex_state = 1}, - [28] = {.lex_state = 108, .external_lex_state = 1}, - [29] = {.lex_state = 205, .external_lex_state = 1}, - [30] = {.lex_state = 205, .external_lex_state = 1}, - [31] = {.lex_state = 205, .external_lex_state = 1}, - [32] = {.lex_state = 205, .external_lex_state = 1}, - [33] = {.lex_state = 205, .external_lex_state = 1}, - [34] = {.lex_state = 205, .external_lex_state = 1}, - [35] = {.lex_state = 205, .external_lex_state = 1}, - [36] = {.lex_state = 205, .external_lex_state = 1}, - [37] = {.lex_state = 205, .external_lex_state = 1}, - [38] = {.lex_state = 205, .external_lex_state = 1}, - [39] = {.lex_state = 205, .external_lex_state = 1}, - [40] = {.lex_state = 205, .external_lex_state = 1}, - [41] = {.lex_state = 205, .external_lex_state = 1}, - [42] = {.lex_state = 205, .external_lex_state = 1}, - [43] = {.lex_state = 205, .external_lex_state = 1}, - [44] = {.lex_state = 110, .external_lex_state = 1}, - [45] = {.lex_state = 205, .external_lex_state = 1}, - [46] = {.lex_state = 205, .external_lex_state = 1}, - [47] = {.lex_state = 110, .external_lex_state = 1}, - [48] = {.lex_state = 205, .external_lex_state = 1}, - [49] = {.lex_state = 205, .external_lex_state = 1}, - [50] = {.lex_state = 205, .external_lex_state = 1}, - [51] = {.lex_state = 205, .external_lex_state = 1}, - [52] = {.lex_state = 205, .external_lex_state = 1}, - [53] = {.lex_state = 205, .external_lex_state = 1}, - [54] = {.lex_state = 205, .external_lex_state = 1}, - [55] = {.lex_state = 205, .external_lex_state = 1}, - [56] = {.lex_state = 205, .external_lex_state = 1}, - [57] = {.lex_state = 205, .external_lex_state = 1}, - [58] = {.lex_state = 205, .external_lex_state = 1}, - [59] = {.lex_state = 110, .external_lex_state = 1}, - [60] = {.lex_state = 205, .external_lex_state = 1}, - [61] = {.lex_state = 205, .external_lex_state = 1}, - [62] = {.lex_state = 205, .external_lex_state = 1}, - [63] = {.lex_state = 205, .external_lex_state = 1}, - [64] = {.lex_state = 205, .external_lex_state = 1}, - [65] = {.lex_state = 205, .external_lex_state = 1}, - [66] = {.lex_state = 205, .external_lex_state = 1}, - [67] = {.lex_state = 108, .external_lex_state = 1}, - [68] = {.lex_state = 108, .external_lex_state = 1}, - [69] = {.lex_state = 108, .external_lex_state = 1}, - [70] = {.lex_state = 108, .external_lex_state = 1}, - [71] = {.lex_state = 108, .external_lex_state = 1}, - [72] = {.lex_state = 205, .external_lex_state = 1}, - [73] = {.lex_state = 110, .external_lex_state = 1}, - [74] = {.lex_state = 205, .external_lex_state = 1}, - [75] = {.lex_state = 205, .external_lex_state = 1}, - [76] = {.lex_state = 205, .external_lex_state = 1}, - [77] = {.lex_state = 110, .external_lex_state = 1}, - [78] = {.lex_state = 205, .external_lex_state = 1}, - [79] = {.lex_state = 205, .external_lex_state = 1}, - [80] = {.lex_state = 110, .external_lex_state = 1}, - [81] = {.lex_state = 110, .external_lex_state = 1}, - [82] = {.lex_state = 205, .external_lex_state = 1}, - [83] = {.lex_state = 110, .external_lex_state = 1}, - [84] = {.lex_state = 205, .external_lex_state = 1}, - [85] = {.lex_state = 205, .external_lex_state = 1}, - [86] = {.lex_state = 205, .external_lex_state = 1}, - [87] = {.lex_state = 109, .external_lex_state = 1}, - [88] = {.lex_state = 109, .external_lex_state = 1}, - [89] = {.lex_state = 109, .external_lex_state = 1}, - [90] = {.lex_state = 109, .external_lex_state = 1}, - [91] = {.lex_state = 109, .external_lex_state = 1}, - [92] = {.lex_state = 109, .external_lex_state = 1}, - [93] = {.lex_state = 109, .external_lex_state = 1}, - [94] = {.lex_state = 109, .external_lex_state = 1}, - [95] = {.lex_state = 109, .external_lex_state = 1}, - [96] = {.lex_state = 109, .external_lex_state = 1}, - [97] = {.lex_state = 109, .external_lex_state = 1}, - [98] = {.lex_state = 109, .external_lex_state = 1}, - [99] = {.lex_state = 109, .external_lex_state = 1}, - [100] = {.lex_state = 109, .external_lex_state = 1}, - [101] = {.lex_state = 109, .external_lex_state = 1}, - [102] = {.lex_state = 108, .external_lex_state = 1}, - [103] = {.lex_state = 108, .external_lex_state = 1}, - [104] = {.lex_state = 205, .external_lex_state = 1}, - [105] = {.lex_state = 205, .external_lex_state = 1}, - [106] = {.lex_state = 205, .external_lex_state = 1}, - [107] = {.lex_state = 108, .external_lex_state = 1}, - [108] = {.lex_state = 108, .external_lex_state = 1}, - [109] = {.lex_state = 110, .external_lex_state = 1}, - [110] = {.lex_state = 205, .external_lex_state = 1}, - [111] = {.lex_state = 110, .external_lex_state = 1}, - [112] = {.lex_state = 108, .external_lex_state = 1}, - [113] = {.lex_state = 108, .external_lex_state = 1}, - [114] = {.lex_state = 108, .external_lex_state = 1}, - [115] = {.lex_state = 108, .external_lex_state = 1}, - [116] = {.lex_state = 108, .external_lex_state = 1}, - [117] = {.lex_state = 108, .external_lex_state = 1}, - [118] = {.lex_state = 108, .external_lex_state = 1}, - [119] = {.lex_state = 108, .external_lex_state = 1}, - [120] = {.lex_state = 108, .external_lex_state = 1}, - [121] = {.lex_state = 108, .external_lex_state = 1}, - [122] = {.lex_state = 108, .external_lex_state = 1}, - [123] = {.lex_state = 108, .external_lex_state = 1}, - [124] = {.lex_state = 108, .external_lex_state = 1}, - [125] = {.lex_state = 108, .external_lex_state = 1}, - [126] = {.lex_state = 108, .external_lex_state = 1}, - [127] = {.lex_state = 108, .external_lex_state = 1}, - [128] = {.lex_state = 108, .external_lex_state = 1}, - [129] = {.lex_state = 108, .external_lex_state = 1}, - [130] = {.lex_state = 108, .external_lex_state = 1}, - [131] = {.lex_state = 108, .external_lex_state = 1}, - [132] = {.lex_state = 108, .external_lex_state = 1}, - [133] = {.lex_state = 108, .external_lex_state = 1}, - [134] = {.lex_state = 108, .external_lex_state = 1}, - [135] = {.lex_state = 108, .external_lex_state = 1}, - [136] = {.lex_state = 108, .external_lex_state = 1}, - [137] = {.lex_state = 108, .external_lex_state = 1}, - [138] = {.lex_state = 108, .external_lex_state = 1}, - [139] = {.lex_state = 108, .external_lex_state = 1}, - [140] = {.lex_state = 108, .external_lex_state = 1}, - [141] = {.lex_state = 108, .external_lex_state = 1}, - [142] = {.lex_state = 108, .external_lex_state = 1}, - [143] = {.lex_state = 108, .external_lex_state = 1}, - [144] = {.lex_state = 108, .external_lex_state = 1}, - [145] = {.lex_state = 108, .external_lex_state = 1}, - [146] = {.lex_state = 108, .external_lex_state = 1}, - [147] = {.lex_state = 108, .external_lex_state = 1}, - [148] = {.lex_state = 108, .external_lex_state = 1}, - [149] = {.lex_state = 108, .external_lex_state = 1}, - [150] = {.lex_state = 108, .external_lex_state = 1}, - [151] = {.lex_state = 108, .external_lex_state = 1}, - [152] = {.lex_state = 108, .external_lex_state = 1}, - [153] = {.lex_state = 108, .external_lex_state = 1}, - [154] = {.lex_state = 108, .external_lex_state = 1}, - [155] = {.lex_state = 108, .external_lex_state = 1}, - [156] = {.lex_state = 108, .external_lex_state = 1}, - [157] = {.lex_state = 108, .external_lex_state = 1}, - [158] = {.lex_state = 108, .external_lex_state = 1}, - [159] = {.lex_state = 108, .external_lex_state = 1}, - [160] = {.lex_state = 108, .external_lex_state = 1}, - [161] = {.lex_state = 108, .external_lex_state = 1}, - [162] = {.lex_state = 108, .external_lex_state = 1}, - [163] = {.lex_state = 108, .external_lex_state = 1}, - [164] = {.lex_state = 108, .external_lex_state = 1}, - [165] = {.lex_state = 108, .external_lex_state = 1}, - [166] = {.lex_state = 108, .external_lex_state = 1}, - [167] = {.lex_state = 108, .external_lex_state = 1}, - [168] = {.lex_state = 108, .external_lex_state = 1}, - [169] = {.lex_state = 108, .external_lex_state = 1}, - [170] = {.lex_state = 108, .external_lex_state = 1}, - [171] = {.lex_state = 108, .external_lex_state = 1}, - [172] = {.lex_state = 108, .external_lex_state = 1}, - [173] = {.lex_state = 108, .external_lex_state = 1}, - [174] = {.lex_state = 108, .external_lex_state = 1}, - [175] = {.lex_state = 108, .external_lex_state = 1}, - [176] = {.lex_state = 108, .external_lex_state = 1}, - [177] = {.lex_state = 108, .external_lex_state = 1}, - [178] = {.lex_state = 108, .external_lex_state = 1}, - [179] = {.lex_state = 108, .external_lex_state = 1}, - [180] = {.lex_state = 108, .external_lex_state = 1}, - [181] = {.lex_state = 108, .external_lex_state = 1}, - [182] = {.lex_state = 108, .external_lex_state = 1}, - [183] = {.lex_state = 108, .external_lex_state = 1}, - [184] = {.lex_state = 108, .external_lex_state = 1}, - [185] = {.lex_state = 108, .external_lex_state = 1}, - [186] = {.lex_state = 108, .external_lex_state = 1}, - [187] = {.lex_state = 108, .external_lex_state = 1}, - [188] = {.lex_state = 108, .external_lex_state = 1}, - [189] = {.lex_state = 108, .external_lex_state = 1}, - [190] = {.lex_state = 108, .external_lex_state = 1}, - [191] = {.lex_state = 108, .external_lex_state = 1}, - [192] = {.lex_state = 108, .external_lex_state = 1}, - [193] = {.lex_state = 205, .external_lex_state = 1}, - [194] = {.lex_state = 108, .external_lex_state = 1}, - [195] = {.lex_state = 108, .external_lex_state = 1}, - [196] = {.lex_state = 108, .external_lex_state = 1}, - [197] = {.lex_state = 108, .external_lex_state = 1}, - [198] = {.lex_state = 108, .external_lex_state = 1}, - [199] = {.lex_state = 108, .external_lex_state = 1}, - [200] = {.lex_state = 108, .external_lex_state = 1}, - [201] = {.lex_state = 108, .external_lex_state = 1}, - [202] = {.lex_state = 108, .external_lex_state = 1}, - [203] = {.lex_state = 205, .external_lex_state = 1}, - [204] = {.lex_state = 108, .external_lex_state = 1}, - [205] = {.lex_state = 108, .external_lex_state = 1}, - [206] = {.lex_state = 108, .external_lex_state = 1}, - [207] = {.lex_state = 108, .external_lex_state = 1}, - [208] = {.lex_state = 108, .external_lex_state = 1}, - [209] = {.lex_state = 108, .external_lex_state = 1}, - [210] = {.lex_state = 108, .external_lex_state = 1}, - [211] = {.lex_state = 108, .external_lex_state = 1}, - [212] = {.lex_state = 108, .external_lex_state = 1}, - [213] = {.lex_state = 108, .external_lex_state = 1}, - [214] = {.lex_state = 205, .external_lex_state = 1}, - [215] = {.lex_state = 108, .external_lex_state = 1}, - [216] = {.lex_state = 108, .external_lex_state = 1}, - [217] = {.lex_state = 205, .external_lex_state = 1}, - [218] = {.lex_state = 108, .external_lex_state = 1}, - [219] = {.lex_state = 110, .external_lex_state = 1}, - [220] = {.lex_state = 110, .external_lex_state = 1}, - [221] = {.lex_state = 108, .external_lex_state = 1}, - [222] = {.lex_state = 108, .external_lex_state = 1}, - [223] = {.lex_state = 108, .external_lex_state = 1}, - [224] = {.lex_state = 205, .external_lex_state = 1}, - [225] = {.lex_state = 108, .external_lex_state = 1}, - [226] = {.lex_state = 205, .external_lex_state = 1}, - [227] = {.lex_state = 110, .external_lex_state = 1}, - [228] = {.lex_state = 108, .external_lex_state = 1}, - [229] = {.lex_state = 108, .external_lex_state = 1}, - [230] = {.lex_state = 108, .external_lex_state = 1}, - [231] = {.lex_state = 108, .external_lex_state = 1}, - [232] = {.lex_state = 108, .external_lex_state = 1}, - [233] = {.lex_state = 108, .external_lex_state = 1}, - [234] = {.lex_state = 108, .external_lex_state = 1}, - [235] = {.lex_state = 108, .external_lex_state = 1}, - [236] = {.lex_state = 108, .external_lex_state = 1}, - [237] = {.lex_state = 108, .external_lex_state = 1}, - [238] = {.lex_state = 108, .external_lex_state = 1}, - [239] = {.lex_state = 108, .external_lex_state = 1}, - [240] = {.lex_state = 108, .external_lex_state = 1}, - [241] = {.lex_state = 108, .external_lex_state = 1}, - [242] = {.lex_state = 108, .external_lex_state = 1}, - [243] = {.lex_state = 108, .external_lex_state = 1}, - [244] = {.lex_state = 108, .external_lex_state = 1}, - [245] = {.lex_state = 108, .external_lex_state = 1}, - [246] = {.lex_state = 108, .external_lex_state = 1}, - [247] = {.lex_state = 108, .external_lex_state = 1}, - [248] = {.lex_state = 108, .external_lex_state = 1}, - [249] = {.lex_state = 108, .external_lex_state = 1}, - [250] = {.lex_state = 108, .external_lex_state = 1}, - [251] = {.lex_state = 108, .external_lex_state = 1}, - [252] = {.lex_state = 108, .external_lex_state = 1}, - [253] = {.lex_state = 108, .external_lex_state = 1}, - [254] = {.lex_state = 205, .external_lex_state = 1}, - [255] = {.lex_state = 205, .external_lex_state = 1}, - [256] = {.lex_state = 205, .external_lex_state = 1}, - [257] = {.lex_state = 205, .external_lex_state = 1}, - [258] = {.lex_state = 205, .external_lex_state = 1}, - [259] = {.lex_state = 205, .external_lex_state = 1}, - [260] = {.lex_state = 205, .external_lex_state = 1}, - [261] = {.lex_state = 205, .external_lex_state = 1}, - [262] = {.lex_state = 205, .external_lex_state = 1}, - [263] = {.lex_state = 205, .external_lex_state = 1}, - [264] = {.lex_state = 205, .external_lex_state = 1}, - [265] = {.lex_state = 205, .external_lex_state = 1}, - [266] = {.lex_state = 205, .external_lex_state = 1}, - [267] = {.lex_state = 205, .external_lex_state = 1}, - [268] = {.lex_state = 205, .external_lex_state = 1}, - [269] = {.lex_state = 205, .external_lex_state = 1}, - [270] = {.lex_state = 205, .external_lex_state = 1}, - [271] = {.lex_state = 205, .external_lex_state = 1}, - [272] = {.lex_state = 205, .external_lex_state = 1}, - [273] = {.lex_state = 205, .external_lex_state = 1}, - [274] = {.lex_state = 205, .external_lex_state = 1}, - [275] = {.lex_state = 205, .external_lex_state = 1}, - [276] = {.lex_state = 147}, - [277] = {.lex_state = 205, .external_lex_state = 1}, - [278] = {.lex_state = 205, .external_lex_state = 1}, - [279] = {.lex_state = 205, .external_lex_state = 1}, - [280] = {.lex_state = 205, .external_lex_state = 1}, - [281] = {.lex_state = 205, .external_lex_state = 1}, - [282] = {.lex_state = 205, .external_lex_state = 1}, - [283] = {.lex_state = 205, .external_lex_state = 1}, - [284] = {.lex_state = 205, .external_lex_state = 1}, - [285] = {.lex_state = 205, .external_lex_state = 1}, - [286] = {.lex_state = 205, .external_lex_state = 1}, - [287] = {.lex_state = 205, .external_lex_state = 1}, - [288] = {.lex_state = 205, .external_lex_state = 1}, - [289] = {.lex_state = 147}, - [290] = {.lex_state = 205, .external_lex_state = 1}, - [291] = {.lex_state = 205, .external_lex_state = 1}, - [292] = {.lex_state = 205, .external_lex_state = 1}, - [293] = {.lex_state = 205, .external_lex_state = 1}, - [294] = {.lex_state = 205, .external_lex_state = 1}, - [295] = {.lex_state = 205, .external_lex_state = 1}, - [296] = {.lex_state = 205, .external_lex_state = 1}, - [297] = {.lex_state = 205, .external_lex_state = 1}, - [298] = {.lex_state = 205, .external_lex_state = 1}, - [299] = {.lex_state = 205, .external_lex_state = 1}, - [300] = {.lex_state = 205, .external_lex_state = 1}, - [301] = {.lex_state = 205, .external_lex_state = 1}, - [302] = {.lex_state = 205, .external_lex_state = 1}, - [303] = {.lex_state = 205, .external_lex_state = 1}, - [304] = {.lex_state = 205, .external_lex_state = 1}, - [305] = {.lex_state = 205, .external_lex_state = 1}, - [306] = {.lex_state = 205, .external_lex_state = 1}, - [307] = {.lex_state = 205, .external_lex_state = 1}, - [308] = {.lex_state = 205, .external_lex_state = 1}, - [309] = {.lex_state = 205, .external_lex_state = 1}, - [310] = {.lex_state = 205, .external_lex_state = 1}, - [311] = {.lex_state = 205, .external_lex_state = 1}, - [312] = {.lex_state = 205, .external_lex_state = 1}, - [313] = {.lex_state = 205, .external_lex_state = 1}, - [314] = {.lex_state = 205, .external_lex_state = 1}, - [315] = {.lex_state = 205, .external_lex_state = 1}, - [316] = {.lex_state = 205, .external_lex_state = 1}, - [317] = {.lex_state = 205, .external_lex_state = 1}, - [318] = {.lex_state = 205, .external_lex_state = 1}, - [319] = {.lex_state = 205, .external_lex_state = 1}, - [320] = {.lex_state = 205, .external_lex_state = 1}, - [321] = {.lex_state = 205, .external_lex_state = 1}, - [322] = {.lex_state = 205, .external_lex_state = 1}, - [323] = {.lex_state = 205, .external_lex_state = 1}, - [324] = {.lex_state = 205, .external_lex_state = 1}, - [325] = {.lex_state = 205, .external_lex_state = 1}, - [326] = {.lex_state = 205, .external_lex_state = 1}, - [327] = {.lex_state = 205, .external_lex_state = 1}, - [328] = {.lex_state = 205, .external_lex_state = 1}, - [329] = {.lex_state = 205, .external_lex_state = 1}, - [330] = {.lex_state = 205, .external_lex_state = 1}, - [331] = {.lex_state = 205, .external_lex_state = 1}, - [332] = {.lex_state = 205, .external_lex_state = 1}, - [333] = {.lex_state = 205, .external_lex_state = 1}, - [334] = {.lex_state = 147}, - [335] = {.lex_state = 205, .external_lex_state = 1}, - [336] = {.lex_state = 205, .external_lex_state = 1}, - [337] = {.lex_state = 205, .external_lex_state = 1}, - [338] = {.lex_state = 205, .external_lex_state = 1}, - [339] = {.lex_state = 147}, - [340] = {.lex_state = 205, .external_lex_state = 1}, - [341] = {.lex_state = 205, .external_lex_state = 1}, - [342] = {.lex_state = 205, .external_lex_state = 1}, - [343] = {.lex_state = 147}, - [344] = {.lex_state = 147}, - [345] = {.lex_state = 205, .external_lex_state = 1}, - [346] = {.lex_state = 205, .external_lex_state = 1}, - [347] = {.lex_state = 205, .external_lex_state = 1}, - [348] = {.lex_state = 205, .external_lex_state = 1}, - [349] = {.lex_state = 205, .external_lex_state = 1}, - [350] = {.lex_state = 147}, - [351] = {.lex_state = 205, .external_lex_state = 1}, - [352] = {.lex_state = 205, .external_lex_state = 1}, - [353] = {.lex_state = 205, .external_lex_state = 1}, - [354] = {.lex_state = 205, .external_lex_state = 1}, - [355] = {.lex_state = 205, .external_lex_state = 1}, - [356] = {.lex_state = 205, .external_lex_state = 1}, - [357] = {.lex_state = 205, .external_lex_state = 1}, - [358] = {.lex_state = 205, .external_lex_state = 1}, - [359] = {.lex_state = 205, .external_lex_state = 1}, - [360] = {.lex_state = 205, .external_lex_state = 1}, - [361] = {.lex_state = 205, .external_lex_state = 1}, - [362] = {.lex_state = 205, .external_lex_state = 1}, - [363] = {.lex_state = 205, .external_lex_state = 1}, - [364] = {.lex_state = 205, .external_lex_state = 1}, - [365] = {.lex_state = 205, .external_lex_state = 1}, - [366] = {.lex_state = 205, .external_lex_state = 1}, - [367] = {.lex_state = 205, .external_lex_state = 1}, - [368] = {.lex_state = 110, .external_lex_state = 1}, - [369] = {.lex_state = 110, .external_lex_state = 1}, - [370] = {.lex_state = 110, .external_lex_state = 1}, - [371] = {.lex_state = 110, .external_lex_state = 1}, - [372] = {.lex_state = 110, .external_lex_state = 1}, - [373] = {.lex_state = 205, .external_lex_state = 1}, - [374] = {.lex_state = 110, .external_lex_state = 1}, - [375] = {.lex_state = 205, .external_lex_state = 1}, - [376] = {.lex_state = 110, .external_lex_state = 1}, - [377] = {.lex_state = 205, .external_lex_state = 1}, - [378] = {.lex_state = 110, .external_lex_state = 1}, - [379] = {.lex_state = 205, .external_lex_state = 1}, - [380] = {.lex_state = 205, .external_lex_state = 1}, - [381] = {.lex_state = 205, .external_lex_state = 1}, - [382] = {.lex_state = 110, .external_lex_state = 1}, - [383] = {.lex_state = 110, .external_lex_state = 1}, - [384] = {.lex_state = 110, .external_lex_state = 1}, - [385] = {.lex_state = 110, .external_lex_state = 1}, - [386] = {.lex_state = 110, .external_lex_state = 1}, - [387] = {.lex_state = 110, .external_lex_state = 1}, - [388] = {.lex_state = 110, .external_lex_state = 1}, - [389] = {.lex_state = 205, .external_lex_state = 1}, - [390] = {.lex_state = 205, .external_lex_state = 1}, - [391] = {.lex_state = 110, .external_lex_state = 1}, - [392] = {.lex_state = 110, .external_lex_state = 1}, - [393] = {.lex_state = 205, .external_lex_state = 1}, - [394] = {.lex_state = 110, .external_lex_state = 1}, - [395] = {.lex_state = 110, .external_lex_state = 1}, - [396] = {.lex_state = 205, .external_lex_state = 1}, - [397] = {.lex_state = 205, .external_lex_state = 1}, - [398] = {.lex_state = 205, .external_lex_state = 1}, - [399] = {.lex_state = 205, .external_lex_state = 1}, - [400] = {.lex_state = 205, .external_lex_state = 1}, - [401] = {.lex_state = 110, .external_lex_state = 1}, - [402] = {.lex_state = 110, .external_lex_state = 1}, - [403] = {.lex_state = 110, .external_lex_state = 1}, - [404] = {.lex_state = 110, .external_lex_state = 1}, - [405] = {.lex_state = 110, .external_lex_state = 1}, - [406] = {.lex_state = 110, .external_lex_state = 1}, - [407] = {.lex_state = 205, .external_lex_state = 1}, - [408] = {.lex_state = 110, .external_lex_state = 1}, - [409] = {.lex_state = 110, .external_lex_state = 1}, - [410] = {.lex_state = 110, .external_lex_state = 1}, - [411] = {.lex_state = 147}, - [412] = {.lex_state = 147}, - [413] = {.lex_state = 110, .external_lex_state = 1}, - [414] = {.lex_state = 110, .external_lex_state = 1}, - [415] = {.lex_state = 110, .external_lex_state = 1}, - [416] = {.lex_state = 110, .external_lex_state = 1}, - [417] = {.lex_state = 110, .external_lex_state = 1}, - [418] = {.lex_state = 110, .external_lex_state = 1}, - [419] = {.lex_state = 205, .external_lex_state = 1}, - [420] = {.lex_state = 110, .external_lex_state = 1}, - [421] = {.lex_state = 205, .external_lex_state = 1}, - [422] = {.lex_state = 110, .external_lex_state = 1}, - [423] = {.lex_state = 110, .external_lex_state = 1}, - [424] = {.lex_state = 110, .external_lex_state = 1}, - [425] = {.lex_state = 110, .external_lex_state = 1}, - [426] = {.lex_state = 110, .external_lex_state = 1}, - [427] = {.lex_state = 110, .external_lex_state = 1}, - [428] = {.lex_state = 110, .external_lex_state = 1}, - [429] = {.lex_state = 110, .external_lex_state = 1}, - [430] = {.lex_state = 205, .external_lex_state = 1}, - [431] = {.lex_state = 110, .external_lex_state = 1}, - [432] = {.lex_state = 110, .external_lex_state = 1}, - [433] = {.lex_state = 110, .external_lex_state = 1}, - [434] = {.lex_state = 110, .external_lex_state = 1}, - [435] = {.lex_state = 110, .external_lex_state = 1}, - [436] = {.lex_state = 110, .external_lex_state = 1}, - [437] = {.lex_state = 110, .external_lex_state = 1}, - [438] = {.lex_state = 110, .external_lex_state = 1}, - [439] = {.lex_state = 110, .external_lex_state = 1}, - [440] = {.lex_state = 110, .external_lex_state = 1}, - [441] = {.lex_state = 110, .external_lex_state = 1}, - [442] = {.lex_state = 110, .external_lex_state = 1}, - [443] = {.lex_state = 110, .external_lex_state = 1}, - [444] = {.lex_state = 110, .external_lex_state = 1}, - [445] = {.lex_state = 110, .external_lex_state = 1}, - [446] = {.lex_state = 147}, - [447] = {.lex_state = 110, .external_lex_state = 1}, - [448] = {.lex_state = 110, .external_lex_state = 1}, - [449] = {.lex_state = 110, .external_lex_state = 1}, - [450] = {.lex_state = 110, .external_lex_state = 1}, - [451] = {.lex_state = 205, .external_lex_state = 1}, - [452] = {.lex_state = 205, .external_lex_state = 1}, - [453] = {.lex_state = 205, .external_lex_state = 1}, - [454] = {.lex_state = 110, .external_lex_state = 1}, - [455] = {.lex_state = 110, .external_lex_state = 1}, - [456] = {.lex_state = 205, .external_lex_state = 1}, - [457] = {.lex_state = 205, .external_lex_state = 1}, - [458] = {.lex_state = 110, .external_lex_state = 1}, - [459] = {.lex_state = 110, .external_lex_state = 1}, - [460] = {.lex_state = 110, .external_lex_state = 1}, - [461] = {.lex_state = 110, .external_lex_state = 1}, - [462] = {.lex_state = 110, .external_lex_state = 1}, - [463] = {.lex_state = 110, .external_lex_state = 1}, - [464] = {.lex_state = 147}, - [465] = {.lex_state = 147}, - [466] = {.lex_state = 110, .external_lex_state = 1}, - [467] = {.lex_state = 110, .external_lex_state = 1}, - [468] = {.lex_state = 110, .external_lex_state = 1}, - [469] = {.lex_state = 110, .external_lex_state = 1}, - [470] = {.lex_state = 110, .external_lex_state = 1}, - [471] = {.lex_state = 205, .external_lex_state = 1}, - [472] = {.lex_state = 205, .external_lex_state = 1}, - [473] = {.lex_state = 110, .external_lex_state = 1}, - [474] = {.lex_state = 110, .external_lex_state = 1}, - [475] = {.lex_state = 110, .external_lex_state = 1}, - [476] = {.lex_state = 205, .external_lex_state = 1}, - [477] = {.lex_state = 147}, - [478] = {.lex_state = 205, .external_lex_state = 1}, - [479] = {.lex_state = 205, .external_lex_state = 1}, - [480] = {.lex_state = 110, .external_lex_state = 1}, - [481] = {.lex_state = 205, .external_lex_state = 1}, - [482] = {.lex_state = 205, .external_lex_state = 1}, - [483] = {.lex_state = 205, .external_lex_state = 1}, - [484] = {.lex_state = 205, .external_lex_state = 1}, - [485] = {.lex_state = 205, .external_lex_state = 1}, - [486] = {.lex_state = 110, .external_lex_state = 1}, - [487] = {.lex_state = 205, .external_lex_state = 1}, - [488] = {.lex_state = 205, .external_lex_state = 1}, - [489] = {.lex_state = 205, .external_lex_state = 1}, - [490] = {.lex_state = 205, .external_lex_state = 1}, - [491] = {.lex_state = 147}, - [492] = {.lex_state = 205, .external_lex_state = 1}, - [493] = {.lex_state = 205, .external_lex_state = 1}, - [494] = {.lex_state = 205, .external_lex_state = 1}, - [495] = {.lex_state = 205, .external_lex_state = 1}, - [496] = {.lex_state = 205, .external_lex_state = 1}, - [497] = {.lex_state = 205, .external_lex_state = 1}, - [498] = {.lex_state = 205, .external_lex_state = 1}, - [499] = {.lex_state = 205, .external_lex_state = 1}, - [500] = {.lex_state = 205, .external_lex_state = 1}, - [501] = {.lex_state = 205, .external_lex_state = 1}, - [502] = {.lex_state = 205, .external_lex_state = 1}, - [503] = {.lex_state = 205, .external_lex_state = 1}, - [504] = {.lex_state = 205, .external_lex_state = 1}, - [505] = {.lex_state = 205, .external_lex_state = 1}, - [506] = {.lex_state = 205, .external_lex_state = 1}, - [507] = {.lex_state = 205, .external_lex_state = 1}, - [508] = {.lex_state = 205, .external_lex_state = 1}, - [509] = {.lex_state = 110, .external_lex_state = 1}, - [510] = {.lex_state = 205, .external_lex_state = 1}, - [511] = {.lex_state = 205, .external_lex_state = 1}, - [512] = {.lex_state = 205, .external_lex_state = 1}, - [513] = {.lex_state = 205, .external_lex_state = 1}, - [514] = {.lex_state = 205, .external_lex_state = 1}, - [515] = {.lex_state = 205, .external_lex_state = 1}, - [516] = {.lex_state = 110, .external_lex_state = 1}, - [517] = {.lex_state = 205, .external_lex_state = 1}, - [518] = {.lex_state = 205, .external_lex_state = 1}, - [519] = {.lex_state = 110, .external_lex_state = 1}, - [520] = {.lex_state = 205, .external_lex_state = 1}, - [521] = {.lex_state = 205, .external_lex_state = 1}, - [522] = {.lex_state = 205, .external_lex_state = 1}, - [523] = {.lex_state = 205, .external_lex_state = 1}, - [524] = {.lex_state = 205, .external_lex_state = 1}, - [525] = {.lex_state = 110, .external_lex_state = 1}, - [526] = {.lex_state = 205, .external_lex_state = 1}, - [527] = {.lex_state = 110, .external_lex_state = 1}, - [528] = {.lex_state = 205, .external_lex_state = 1}, - [529] = {.lex_state = 205, .external_lex_state = 1}, - [530] = {.lex_state = 205, .external_lex_state = 1}, - [531] = {.lex_state = 110, .external_lex_state = 1}, - [532] = {.lex_state = 205, .external_lex_state = 1}, - [533] = {.lex_state = 205, .external_lex_state = 1}, - [534] = {.lex_state = 110, .external_lex_state = 1}, - [535] = {.lex_state = 205, .external_lex_state = 1}, - [536] = {.lex_state = 205, .external_lex_state = 1}, - [537] = {.lex_state = 205, .external_lex_state = 1}, - [538] = {.lex_state = 205, .external_lex_state = 1}, - [539] = {.lex_state = 110, .external_lex_state = 1}, - [540] = {.lex_state = 205, .external_lex_state = 1}, - [541] = {.lex_state = 205, .external_lex_state = 1}, - [542] = {.lex_state = 110, .external_lex_state = 1}, - [543] = {.lex_state = 110, .external_lex_state = 1}, - [544] = {.lex_state = 205, .external_lex_state = 1}, - [545] = {.lex_state = 110, .external_lex_state = 1}, - [546] = {.lex_state = 205, .external_lex_state = 1}, - [547] = {.lex_state = 205, .external_lex_state = 1}, - [548] = {.lex_state = 205, .external_lex_state = 1}, - [549] = {.lex_state = 205, .external_lex_state = 1}, - [550] = {.lex_state = 205, .external_lex_state = 1}, - [551] = {.lex_state = 110, .external_lex_state = 1}, - [552] = {.lex_state = 205, .external_lex_state = 1}, - [553] = {.lex_state = 205, .external_lex_state = 1}, - [554] = {.lex_state = 205, .external_lex_state = 1}, - [555] = {.lex_state = 205, .external_lex_state = 1}, - [556] = {.lex_state = 110, .external_lex_state = 1}, - [557] = {.lex_state = 110, .external_lex_state = 1}, - [558] = {.lex_state = 205, .external_lex_state = 1}, - [559] = {.lex_state = 110, .external_lex_state = 1}, - [560] = {.lex_state = 205, .external_lex_state = 1}, - [561] = {.lex_state = 205, .external_lex_state = 1}, - [562] = {.lex_state = 110, .external_lex_state = 1}, - [563] = {.lex_state = 110, .external_lex_state = 1}, - [564] = {.lex_state = 205, .external_lex_state = 1}, - [565] = {.lex_state = 205, .external_lex_state = 1}, - [566] = {.lex_state = 205, .external_lex_state = 1}, - [567] = {.lex_state = 205, .external_lex_state = 1}, - [568] = {.lex_state = 205, .external_lex_state = 1}, - [569] = {.lex_state = 205, .external_lex_state = 1}, - [570] = {.lex_state = 205, .external_lex_state = 1}, - [571] = {.lex_state = 110, .external_lex_state = 1}, - [572] = {.lex_state = 205, .external_lex_state = 1}, - [573] = {.lex_state = 205, .external_lex_state = 1}, - [574] = {.lex_state = 205, .external_lex_state = 1}, - [575] = {.lex_state = 205, .external_lex_state = 1}, - [576] = {.lex_state = 205, .external_lex_state = 1}, - [577] = {.lex_state = 110, .external_lex_state = 1}, - [578] = {.lex_state = 110, .external_lex_state = 1}, - [579] = {.lex_state = 205, .external_lex_state = 1}, - [580] = {.lex_state = 110, .external_lex_state = 1}, - [581] = {.lex_state = 110, .external_lex_state = 1}, - [582] = {.lex_state = 205, .external_lex_state = 1}, - [583] = {.lex_state = 110, .external_lex_state = 1}, - [584] = {.lex_state = 110, .external_lex_state = 1}, - [585] = {.lex_state = 110, .external_lex_state = 1}, - [586] = {.lex_state = 205, .external_lex_state = 1}, - [587] = {.lex_state = 205, .external_lex_state = 1}, - [588] = {.lex_state = 110, .external_lex_state = 1}, - [589] = {.lex_state = 205, .external_lex_state = 1}, - [590] = {.lex_state = 205, .external_lex_state = 1}, - [591] = {.lex_state = 205, .external_lex_state = 1}, - [592] = {.lex_state = 205, .external_lex_state = 1}, - [593] = {.lex_state = 110, .external_lex_state = 1}, - [594] = {.lex_state = 205, .external_lex_state = 1}, - [595] = {.lex_state = 110, .external_lex_state = 1}, - [596] = {.lex_state = 110, .external_lex_state = 1}, - [597] = {.lex_state = 110, .external_lex_state = 1}, - [598] = {.lex_state = 205, .external_lex_state = 1}, - [599] = {.lex_state = 205, .external_lex_state = 1}, - [600] = {.lex_state = 205, .external_lex_state = 1}, - [601] = {.lex_state = 205, .external_lex_state = 1}, - [602] = {.lex_state = 205, .external_lex_state = 1}, - [603] = {.lex_state = 205, .external_lex_state = 1}, - [604] = {.lex_state = 205, .external_lex_state = 1}, - [605] = {.lex_state = 205, .external_lex_state = 1}, - [606] = {.lex_state = 205, .external_lex_state = 1}, - [607] = {.lex_state = 110, .external_lex_state = 1}, - [608] = {.lex_state = 205, .external_lex_state = 1}, - [609] = {.lex_state = 205, .external_lex_state = 1}, - [610] = {.lex_state = 205, .external_lex_state = 1}, - [611] = {.lex_state = 205, .external_lex_state = 1}, - [612] = {.lex_state = 205, .external_lex_state = 1}, - [613] = {.lex_state = 110, .external_lex_state = 1}, - [614] = {.lex_state = 110, .external_lex_state = 1}, - [615] = {.lex_state = 110, .external_lex_state = 1}, - [616] = {.lex_state = 110, .external_lex_state = 1}, - [617] = {.lex_state = 110, .external_lex_state = 1}, - [618] = {.lex_state = 110, .external_lex_state = 1}, - [619] = {.lex_state = 205, .external_lex_state = 1}, - [620] = {.lex_state = 205, .external_lex_state = 1}, - [621] = {.lex_state = 205, .external_lex_state = 1}, - [622] = {.lex_state = 205, .external_lex_state = 1}, - [623] = {.lex_state = 205, .external_lex_state = 1}, - [624] = {.lex_state = 205, .external_lex_state = 1}, - [625] = {.lex_state = 205, .external_lex_state = 1}, - [626] = {.lex_state = 205, .external_lex_state = 1}, - [627] = {.lex_state = 110, .external_lex_state = 1}, - [628] = {.lex_state = 205, .external_lex_state = 1}, - [629] = {.lex_state = 205, .external_lex_state = 1}, - [630] = {.lex_state = 110, .external_lex_state = 1}, - [631] = {.lex_state = 110, .external_lex_state = 1}, - [632] = {.lex_state = 205, .external_lex_state = 1}, - [633] = {.lex_state = 110, .external_lex_state = 1}, - [634] = {.lex_state = 205, .external_lex_state = 1}, - [635] = {.lex_state = 110, .external_lex_state = 1}, - [636] = {.lex_state = 110, .external_lex_state = 1}, - [637] = {.lex_state = 110, .external_lex_state = 1}, - [638] = {.lex_state = 205, .external_lex_state = 1}, - [639] = {.lex_state = 205, .external_lex_state = 1}, - [640] = {.lex_state = 205, .external_lex_state = 1}, - [641] = {.lex_state = 110, .external_lex_state = 1}, - [642] = {.lex_state = 205, .external_lex_state = 1}, - [643] = {.lex_state = 205, .external_lex_state = 1}, - [644] = {.lex_state = 205, .external_lex_state = 1}, - [645] = {.lex_state = 205, .external_lex_state = 1}, - [646] = {.lex_state = 205, .external_lex_state = 1}, - [647] = {.lex_state = 205, .external_lex_state = 1}, - [648] = {.lex_state = 205, .external_lex_state = 1}, - [649] = {.lex_state = 205, .external_lex_state = 1}, - [650] = {.lex_state = 205, .external_lex_state = 1}, - [651] = {.lex_state = 205, .external_lex_state = 1}, - [652] = {.lex_state = 205, .external_lex_state = 1}, - [653] = {.lex_state = 205, .external_lex_state = 1}, - [654] = {.lex_state = 205, .external_lex_state = 1}, - [655] = {.lex_state = 205, .external_lex_state = 1}, - [656] = {.lex_state = 110, .external_lex_state = 1}, - [657] = {.lex_state = 110, .external_lex_state = 1}, - [658] = {.lex_state = 110, .external_lex_state = 1}, - [659] = {.lex_state = 110, .external_lex_state = 1}, - [660] = {.lex_state = 205, .external_lex_state = 1}, - [661] = {.lex_state = 205, .external_lex_state = 1}, - [662] = {.lex_state = 110, .external_lex_state = 1}, - [663] = {.lex_state = 110, .external_lex_state = 1}, - [664] = {.lex_state = 110, .external_lex_state = 1}, - [665] = {.lex_state = 147}, - [666] = {.lex_state = 124}, - [667] = {.lex_state = 124}, - [668] = {.lex_state = 124}, - [669] = {.lex_state = 124}, - [670] = {.lex_state = 124}, - [671] = {.lex_state = 124}, - [672] = {.lex_state = 124}, - [673] = {.lex_state = 124}, - [674] = {.lex_state = 125}, - [675] = {.lex_state = 124}, - [676] = {.lex_state = 124}, - [677] = {.lex_state = 124}, - [678] = {.lex_state = 125}, - [679] = {.lex_state = 124}, - [680] = {.lex_state = 124}, - [681] = {.lex_state = 125}, - [682] = {.lex_state = 124}, - [683] = {.lex_state = 124}, - [684] = {.lex_state = 112, .external_lex_state = 1}, - [685] = {.lex_state = 112, .external_lex_state = 1}, - [686] = {.lex_state = 112, .external_lex_state = 1}, - [687] = {.lex_state = 109, .external_lex_state = 1}, - [688] = {.lex_state = 109, .external_lex_state = 1}, - [689] = {.lex_state = 147}, - [690] = {.lex_state = 147}, - [691] = {.lex_state = 147}, - [692] = {.lex_state = 147}, - [693] = {.lex_state = 147}, - [694] = {.lex_state = 147}, - [695] = {.lex_state = 147}, - [696] = {.lex_state = 109, .external_lex_state = 1}, - [697] = {.lex_state = 109, .external_lex_state = 1}, - [698] = {.lex_state = 109, .external_lex_state = 1}, - [699] = {.lex_state = 109, .external_lex_state = 1}, - [700] = {.lex_state = 109, .external_lex_state = 1}, - [701] = {.lex_state = 109, .external_lex_state = 1}, - [702] = {.lex_state = 109, .external_lex_state = 1}, - [703] = {.lex_state = 109, .external_lex_state = 1}, - [704] = {.lex_state = 109, .external_lex_state = 1}, - [705] = {.lex_state = 109, .external_lex_state = 1}, - [706] = {.lex_state = 109, .external_lex_state = 1}, - [707] = {.lex_state = 109, .external_lex_state = 1}, - [708] = {.lex_state = 109, .external_lex_state = 1}, - [709] = {.lex_state = 109, .external_lex_state = 1}, - [710] = {.lex_state = 109, .external_lex_state = 1}, - [711] = {.lex_state = 109, .external_lex_state = 1}, - [712] = {.lex_state = 109, .external_lex_state = 1}, - [713] = {.lex_state = 109, .external_lex_state = 1}, - [714] = {.lex_state = 109, .external_lex_state = 1}, - [715] = {.lex_state = 109, .external_lex_state = 1}, - [716] = {.lex_state = 109, .external_lex_state = 1}, - [717] = {.lex_state = 109, .external_lex_state = 1}, - [718] = {.lex_state = 109, .external_lex_state = 1}, - [719] = {.lex_state = 109, .external_lex_state = 1}, - [720] = {.lex_state = 109, .external_lex_state = 1}, - [721] = {.lex_state = 109, .external_lex_state = 1}, - [722] = {.lex_state = 109, .external_lex_state = 1}, - [723] = {.lex_state = 106}, - [724] = {.lex_state = 109, .external_lex_state = 1}, - [725] = {.lex_state = 109, .external_lex_state = 1}, - [726] = {.lex_state = 109, .external_lex_state = 1}, - [727] = {.lex_state = 109, .external_lex_state = 1}, - [728] = {.lex_state = 109, .external_lex_state = 1}, - [729] = {.lex_state = 109, .external_lex_state = 1}, - [730] = {.lex_state = 109, .external_lex_state = 1}, - [731] = {.lex_state = 109, .external_lex_state = 1}, - [732] = {.lex_state = 109, .external_lex_state = 1}, - [733] = {.lex_state = 109, .external_lex_state = 1}, - [734] = {.lex_state = 109, .external_lex_state = 1}, - [735] = {.lex_state = 109, .external_lex_state = 1}, - [736] = {.lex_state = 109, .external_lex_state = 1}, - [737] = {.lex_state = 109, .external_lex_state = 1}, - [738] = {.lex_state = 109, .external_lex_state = 1}, - [739] = {.lex_state = 109, .external_lex_state = 1}, - [740] = {.lex_state = 109, .external_lex_state = 1}, - [741] = {.lex_state = 109, .external_lex_state = 1}, - [742] = {.lex_state = 109, .external_lex_state = 1}, - [743] = {.lex_state = 109, .external_lex_state = 1}, - [744] = {.lex_state = 109, .external_lex_state = 1}, - [745] = {.lex_state = 109, .external_lex_state = 1}, - [746] = {.lex_state = 109, .external_lex_state = 1}, - [747] = {.lex_state = 109, .external_lex_state = 1}, - [748] = {.lex_state = 109, .external_lex_state = 1}, - [749] = {.lex_state = 109, .external_lex_state = 1}, - [750] = {.lex_state = 109, .external_lex_state = 1}, - [751] = {.lex_state = 109, .external_lex_state = 1}, - [752] = {.lex_state = 109, .external_lex_state = 1}, - [753] = {.lex_state = 109, .external_lex_state = 1}, - [754] = {.lex_state = 109, .external_lex_state = 1}, - [755] = {.lex_state = 109, .external_lex_state = 1}, - [756] = {.lex_state = 109, .external_lex_state = 1}, - [757] = {.lex_state = 109, .external_lex_state = 1}, - [758] = {.lex_state = 109, .external_lex_state = 1}, - [759] = {.lex_state = 109, .external_lex_state = 1}, - [760] = {.lex_state = 109, .external_lex_state = 1}, - [761] = {.lex_state = 109, .external_lex_state = 1}, - [762] = {.lex_state = 109, .external_lex_state = 1}, - [763] = {.lex_state = 109, .external_lex_state = 1}, - [764] = {.lex_state = 109, .external_lex_state = 1}, - [765] = {.lex_state = 109, .external_lex_state = 1}, - [766] = {.lex_state = 109, .external_lex_state = 1}, - [767] = {.lex_state = 106}, - [768] = {.lex_state = 109, .external_lex_state = 1}, - [769] = {.lex_state = 109, .external_lex_state = 1}, - [770] = {.lex_state = 109, .external_lex_state = 1}, - [771] = {.lex_state = 109, .external_lex_state = 1}, - [772] = {.lex_state = 109, .external_lex_state = 1}, - [773] = {.lex_state = 109, .external_lex_state = 1}, - [774] = {.lex_state = 109, .external_lex_state = 1}, - [775] = {.lex_state = 109, .external_lex_state = 1}, - [776] = {.lex_state = 109, .external_lex_state = 1}, - [777] = {.lex_state = 109, .external_lex_state = 1}, - [778] = {.lex_state = 109, .external_lex_state = 1}, - [779] = {.lex_state = 109, .external_lex_state = 1}, - [780] = {.lex_state = 109, .external_lex_state = 1}, - [781] = {.lex_state = 109, .external_lex_state = 1}, - [782] = {.lex_state = 109, .external_lex_state = 1}, - [783] = {.lex_state = 147}, - [784] = {.lex_state = 147}, - [785] = {.lex_state = 147}, - [786] = {.lex_state = 147}, - [787] = {.lex_state = 147}, - [788] = {.lex_state = 147}, - [789] = {.lex_state = 147}, - [790] = {.lex_state = 147}, - [791] = {.lex_state = 147}, - [792] = {.lex_state = 147}, - [793] = {.lex_state = 126}, - [794] = {.lex_state = 147}, - [795] = {.lex_state = 147}, - [796] = {.lex_state = 147}, - [797] = {.lex_state = 126}, - [798] = {.lex_state = 126}, - [799] = {.lex_state = 126}, - [800] = {.lex_state = 126}, - [801] = {.lex_state = 126}, - [802] = {.lex_state = 126}, - [803] = {.lex_state = 126}, - [804] = {.lex_state = 126}, - [805] = {.lex_state = 147}, - [806] = {.lex_state = 126}, - [807] = {.lex_state = 126}, - [808] = {.lex_state = 126}, - [809] = {.lex_state = 126}, - [810] = {.lex_state = 126}, - [811] = {.lex_state = 126}, - [812] = {.lex_state = 147}, - [813] = {.lex_state = 126}, - [814] = {.lex_state = 126}, - [815] = {.lex_state = 126}, - [816] = {.lex_state = 126}, - [817] = {.lex_state = 126}, - [818] = {.lex_state = 126}, - [819] = {.lex_state = 126}, - [820] = {.lex_state = 126}, - [821] = {.lex_state = 147}, - [822] = {.lex_state = 126}, - [823] = {.lex_state = 147}, - [824] = {.lex_state = 111, .external_lex_state = 1}, - [825] = {.lex_state = 111, .external_lex_state = 1}, - [826] = {.lex_state = 147}, - [827] = {.lex_state = 135}, - [828] = {.lex_state = 147}, - [829] = {.lex_state = 147}, - [830] = {.lex_state = 135}, - [831] = {.lex_state = 135}, - [832] = {.lex_state = 135}, - [833] = {.lex_state = 135}, - [834] = {.lex_state = 135}, - [835] = {.lex_state = 135}, - [836] = {.lex_state = 147}, - [837] = {.lex_state = 147}, - [838] = {.lex_state = 135}, - [839] = {.lex_state = 135}, - [840] = {.lex_state = 135}, - [841] = {.lex_state = 135}, - [842] = {.lex_state = 135}, - [843] = {.lex_state = 135}, - [844] = {.lex_state = 135}, - [845] = {.lex_state = 135}, - [846] = {.lex_state = 135}, - [847] = {.lex_state = 135}, - [848] = {.lex_state = 135}, - [849] = {.lex_state = 109, .external_lex_state = 1}, - [850] = {.lex_state = 109, .external_lex_state = 1}, - [851] = {.lex_state = 147}, - [852] = {.lex_state = 109, .external_lex_state = 1}, - [853] = {.lex_state = 109, .external_lex_state = 1}, - [854] = {.lex_state = 109, .external_lex_state = 1}, - [855] = {.lex_state = 147}, - [856] = {.lex_state = 147}, - [857] = {.lex_state = 147}, - [858] = {.lex_state = 109, .external_lex_state = 1}, - [859] = {.lex_state = 109, .external_lex_state = 1}, - [860] = {.lex_state = 109, .external_lex_state = 1}, - [861] = {.lex_state = 109, .external_lex_state = 1}, - [862] = {.lex_state = 147}, - [863] = {.lex_state = 109, .external_lex_state = 1}, - [864] = {.lex_state = 109, .external_lex_state = 1}, - [865] = {.lex_state = 109, .external_lex_state = 1}, - [866] = {.lex_state = 109, .external_lex_state = 1}, - [867] = {.lex_state = 109, .external_lex_state = 1}, - [868] = {.lex_state = 109, .external_lex_state = 1}, - [869] = {.lex_state = 109, .external_lex_state = 1}, - [870] = {.lex_state = 109, .external_lex_state = 1}, - [871] = {.lex_state = 109, .external_lex_state = 1}, - [872] = {.lex_state = 109, .external_lex_state = 1}, - [873] = {.lex_state = 109, .external_lex_state = 1}, - [874] = {.lex_state = 109, .external_lex_state = 1}, - [875] = {.lex_state = 109, .external_lex_state = 1}, - [876] = {.lex_state = 109, .external_lex_state = 1}, - [877] = {.lex_state = 147}, - [878] = {.lex_state = 109, .external_lex_state = 1}, - [879] = {.lex_state = 109, .external_lex_state = 1}, - [880] = {.lex_state = 147}, - [881] = {.lex_state = 109, .external_lex_state = 1}, - [882] = {.lex_state = 109, .external_lex_state = 1}, - [883] = {.lex_state = 147}, - [884] = {.lex_state = 147}, - [885] = {.lex_state = 109, .external_lex_state = 1}, - [886] = {.lex_state = 109, .external_lex_state = 1}, - [887] = {.lex_state = 109, .external_lex_state = 1}, - [888] = {.lex_state = 109, .external_lex_state = 1}, - [889] = {.lex_state = 109, .external_lex_state = 1}, - [890] = {.lex_state = 109, .external_lex_state = 1}, - [891] = {.lex_state = 109, .external_lex_state = 1}, - [892] = {.lex_state = 109, .external_lex_state = 1}, - [893] = {.lex_state = 109, .external_lex_state = 1}, - [894] = {.lex_state = 109, .external_lex_state = 1}, - [895] = {.lex_state = 109, .external_lex_state = 1}, - [896] = {.lex_state = 147}, - [897] = {.lex_state = 109, .external_lex_state = 1}, - [898] = {.lex_state = 109, .external_lex_state = 1}, - [899] = {.lex_state = 147}, - [900] = {.lex_state = 109, .external_lex_state = 1}, - [901] = {.lex_state = 125}, - [902] = {.lex_state = 109, .external_lex_state = 1}, - [903] = {.lex_state = 109, .external_lex_state = 1}, - [904] = {.lex_state = 109, .external_lex_state = 1}, - [905] = {.lex_state = 147}, - [906] = {.lex_state = 109, .external_lex_state = 1}, - [907] = {.lex_state = 109, .external_lex_state = 1}, - [908] = {.lex_state = 147}, - [909] = {.lex_state = 109, .external_lex_state = 1}, - [910] = {.lex_state = 109, .external_lex_state = 1}, - [911] = {.lex_state = 109, .external_lex_state = 1}, - [912] = {.lex_state = 109, .external_lex_state = 1}, - [913] = {.lex_state = 147}, - [914] = {.lex_state = 109, .external_lex_state = 1}, - [915] = {.lex_state = 147}, - [916] = {.lex_state = 109, .external_lex_state = 1}, - [917] = {.lex_state = 109, .external_lex_state = 1}, - [918] = {.lex_state = 109, .external_lex_state = 1}, - [919] = {.lex_state = 147}, - [920] = {.lex_state = 109, .external_lex_state = 1}, - [921] = {.lex_state = 109, .external_lex_state = 1}, - [922] = {.lex_state = 109, .external_lex_state = 1}, - [923] = {.lex_state = 109, .external_lex_state = 1}, - [924] = {.lex_state = 109, .external_lex_state = 1}, - [925] = {.lex_state = 109, .external_lex_state = 1}, - [926] = {.lex_state = 109, .external_lex_state = 1}, - [927] = {.lex_state = 147}, - [928] = {.lex_state = 109, .external_lex_state = 1}, - [929] = {.lex_state = 109, .external_lex_state = 1}, - [930] = {.lex_state = 147}, - [931] = {.lex_state = 109, .external_lex_state = 1}, - [932] = {.lex_state = 147}, - [933] = {.lex_state = 109, .external_lex_state = 1}, - [934] = {.lex_state = 109, .external_lex_state = 1}, - [935] = {.lex_state = 109, .external_lex_state = 1}, - [936] = {.lex_state = 109, .external_lex_state = 1}, - [937] = {.lex_state = 109, .external_lex_state = 1}, - [938] = {.lex_state = 109, .external_lex_state = 1}, - [939] = {.lex_state = 147}, - [940] = {.lex_state = 109, .external_lex_state = 1}, - [941] = {.lex_state = 109, .external_lex_state = 1}, - [942] = {.lex_state = 109, .external_lex_state = 1}, - [943] = {.lex_state = 147}, - [944] = {.lex_state = 147}, - [945] = {.lex_state = 109, .external_lex_state = 1}, - [946] = {.lex_state = 109, .external_lex_state = 1}, - [947] = {.lex_state = 109, .external_lex_state = 1}, - [948] = {.lex_state = 109, .external_lex_state = 1}, - [949] = {.lex_state = 109, .external_lex_state = 1}, - [950] = {.lex_state = 109, .external_lex_state = 1}, - [951] = {.lex_state = 109, .external_lex_state = 1}, - [952] = {.lex_state = 147}, - [953] = {.lex_state = 147}, - [954] = {.lex_state = 109, .external_lex_state = 1}, - [955] = {.lex_state = 147}, - [956] = {.lex_state = 147}, - [957] = {.lex_state = 109, .external_lex_state = 1}, - [958] = {.lex_state = 147}, - [959] = {.lex_state = 124}, - [960] = {.lex_state = 109, .external_lex_state = 1}, - [961] = {.lex_state = 109, .external_lex_state = 1}, - [962] = {.lex_state = 109, .external_lex_state = 1}, - [963] = {.lex_state = 109, .external_lex_state = 1}, - [964] = {.lex_state = 109, .external_lex_state = 1}, - [965] = {.lex_state = 109, .external_lex_state = 1}, - [966] = {.lex_state = 147}, - [967] = {.lex_state = 109, .external_lex_state = 1}, - [968] = {.lex_state = 109, .external_lex_state = 1}, - [969] = {.lex_state = 109, .external_lex_state = 1}, - [970] = {.lex_state = 147}, - [971] = {.lex_state = 147}, - [972] = {.lex_state = 147}, - [973] = {.lex_state = 109, .external_lex_state = 1}, - [974] = {.lex_state = 109, .external_lex_state = 1}, - [975] = {.lex_state = 147}, - [976] = {.lex_state = 109, .external_lex_state = 1}, - [977] = {.lex_state = 147}, - [978] = {.lex_state = 109, .external_lex_state = 1}, - [979] = {.lex_state = 147}, - [980] = {.lex_state = 147}, - [981] = {.lex_state = 147}, - [982] = {.lex_state = 109, .external_lex_state = 1}, - [983] = {.lex_state = 109, .external_lex_state = 1}, - [984] = {.lex_state = 147}, - [985] = {.lex_state = 147}, - [986] = {.lex_state = 147}, - [987] = {.lex_state = 147}, - [988] = {.lex_state = 147}, - [989] = {.lex_state = 109, .external_lex_state = 1}, - [990] = {.lex_state = 147}, - [991] = {.lex_state = 109, .external_lex_state = 1}, - [992] = {.lex_state = 109, .external_lex_state = 1}, - [993] = {.lex_state = 109, .external_lex_state = 1}, - [994] = {.lex_state = 109, .external_lex_state = 1}, - [995] = {.lex_state = 109, .external_lex_state = 1}, - [996] = {.lex_state = 109, .external_lex_state = 1}, - [997] = {.lex_state = 147}, - [998] = {.lex_state = 109, .external_lex_state = 1}, - [999] = {.lex_state = 109, .external_lex_state = 1}, - [1000] = {.lex_state = 147}, - [1001] = {.lex_state = 147}, - [1002] = {.lex_state = 109, .external_lex_state = 1}, - [1003] = {.lex_state = 109, .external_lex_state = 1}, - [1004] = {.lex_state = 147}, - [1005] = {.lex_state = 109, .external_lex_state = 1}, - [1006] = {.lex_state = 109, .external_lex_state = 1}, - [1007] = {.lex_state = 109, .external_lex_state = 1}, - [1008] = {.lex_state = 109, .external_lex_state = 1}, - [1009] = {.lex_state = 147}, - [1010] = {.lex_state = 147}, - [1011] = {.lex_state = 109, .external_lex_state = 1}, - [1012] = {.lex_state = 109, .external_lex_state = 1}, - [1013] = {.lex_state = 109, .external_lex_state = 1}, - [1014] = {.lex_state = 147}, - [1015] = {.lex_state = 109, .external_lex_state = 1}, - [1016] = {.lex_state = 147}, - [1017] = {.lex_state = 147}, - [1018] = {.lex_state = 147}, - [1019] = {.lex_state = 109, .external_lex_state = 1}, - [1020] = {.lex_state = 109, .external_lex_state = 1}, - [1021] = {.lex_state = 147}, - [1022] = {.lex_state = 147}, - [1023] = {.lex_state = 147}, - [1024] = {.lex_state = 109, .external_lex_state = 1}, - [1025] = {.lex_state = 109, .external_lex_state = 1}, - [1026] = {.lex_state = 109, .external_lex_state = 1}, - [1027] = {.lex_state = 147}, - [1028] = {.lex_state = 109, .external_lex_state = 1}, - [1029] = {.lex_state = 109, .external_lex_state = 1}, - [1030] = {.lex_state = 109, .external_lex_state = 1}, - [1031] = {.lex_state = 109, .external_lex_state = 1}, - [1032] = {.lex_state = 109, .external_lex_state = 1}, - [1033] = {.lex_state = 109, .external_lex_state = 1}, - [1034] = {.lex_state = 109, .external_lex_state = 1}, - [1035] = {.lex_state = 147}, - [1036] = {.lex_state = 109, .external_lex_state = 1}, - [1037] = {.lex_state = 109, .external_lex_state = 1}, - [1038] = {.lex_state = 109, .external_lex_state = 1}, - [1039] = {.lex_state = 147}, - [1040] = {.lex_state = 147}, - [1041] = {.lex_state = 109, .external_lex_state = 1}, - [1042] = {.lex_state = 109, .external_lex_state = 1}, - [1043] = {.lex_state = 147}, - [1044] = {.lex_state = 109, .external_lex_state = 1}, - [1045] = {.lex_state = 147}, - [1046] = {.lex_state = 109, .external_lex_state = 1}, - [1047] = {.lex_state = 109, .external_lex_state = 1}, - [1048] = {.lex_state = 147}, - [1049] = {.lex_state = 109, .external_lex_state = 1}, - [1050] = {.lex_state = 147}, - [1051] = {.lex_state = 147}, - [1052] = {.lex_state = 147}, - [1053] = {.lex_state = 109, .external_lex_state = 1}, - [1054] = {.lex_state = 147}, - [1055] = {.lex_state = 147}, - [1056] = {.lex_state = 147}, - [1057] = {.lex_state = 147}, - [1058] = {.lex_state = 147}, - [1059] = {.lex_state = 147}, - [1060] = {.lex_state = 147}, - [1061] = {.lex_state = 147}, - [1062] = {.lex_state = 147}, - [1063] = {.lex_state = 147}, - [1064] = {.lex_state = 147}, - [1065] = {.lex_state = 124}, - [1066] = {.lex_state = 125}, - [1067] = {.lex_state = 124}, - [1068] = {.lex_state = 124}, - [1069] = {.lex_state = 124}, - [1070] = {.lex_state = 125}, - [1071] = {.lex_state = 125}, - [1072] = {.lex_state = 124}, - [1073] = {.lex_state = 124}, - [1074] = {.lex_state = 125}, - [1075] = {.lex_state = 124}, - [1076] = {.lex_state = 125}, - [1077] = {.lex_state = 125}, - [1078] = {.lex_state = 124}, - [1079] = {.lex_state = 124}, - [1080] = {.lex_state = 124}, - [1081] = {.lex_state = 124}, - [1082] = {.lex_state = 125}, - [1083] = {.lex_state = 124}, - [1084] = {.lex_state = 124}, - [1085] = {.lex_state = 124}, - [1086] = {.lex_state = 125}, - [1087] = {.lex_state = 124}, - [1088] = {.lex_state = 125}, - [1089] = {.lex_state = 124}, - [1090] = {.lex_state = 125}, - [1091] = {.lex_state = 124}, - [1092] = {.lex_state = 124}, - [1093] = {.lex_state = 125}, - [1094] = {.lex_state = 125}, - [1095] = {.lex_state = 125}, - [1096] = {.lex_state = 124}, - [1097] = {.lex_state = 124}, - [1098] = {.lex_state = 125}, - [1099] = {.lex_state = 125}, - [1100] = {.lex_state = 125}, - [1101] = {.lex_state = 147}, - [1102] = {.lex_state = 124}, - [1103] = {.lex_state = 125}, - [1104] = {.lex_state = 124}, - [1105] = {.lex_state = 125}, - [1106] = {.lex_state = 124}, - [1107] = {.lex_state = 125}, - [1108] = {.lex_state = 124}, - [1109] = {.lex_state = 124}, - [1110] = {.lex_state = 124}, - [1111] = {.lex_state = 124}, - [1112] = {.lex_state = 124}, - [1113] = {.lex_state = 124}, - [1114] = {.lex_state = 125}, - [1115] = {.lex_state = 125}, - [1116] = {.lex_state = 125}, - [1117] = {.lex_state = 124}, - [1118] = {.lex_state = 124}, - [1119] = {.lex_state = 147}, - [1120] = {.lex_state = 124}, - [1121] = {.lex_state = 124}, - [1122] = {.lex_state = 124}, - [1123] = {.lex_state = 124}, - [1124] = {.lex_state = 124}, - [1125] = {.lex_state = 124}, - [1126] = {.lex_state = 124}, - [1127] = {.lex_state = 124}, - [1128] = {.lex_state = 124}, - [1129] = {.lex_state = 124}, - [1130] = {.lex_state = 124}, - [1131] = {.lex_state = 124}, - [1132] = {.lex_state = 125}, - [1133] = {.lex_state = 124}, - [1134] = {.lex_state = 124}, - [1135] = {.lex_state = 125}, - [1136] = {.lex_state = 125}, - [1137] = {.lex_state = 147}, - [1138] = {.lex_state = 124}, - [1139] = {.lex_state = 124}, - [1140] = {.lex_state = 124}, - [1141] = {.lex_state = 125}, - [1142] = {.lex_state = 124}, - [1143] = {.lex_state = 124}, - [1144] = {.lex_state = 124}, - [1145] = {.lex_state = 124}, - [1146] = {.lex_state = 125}, - [1147] = {.lex_state = 124}, - [1148] = {.lex_state = 125}, - [1149] = {.lex_state = 125}, - [1150] = {.lex_state = 125}, - [1151] = {.lex_state = 125}, - [1152] = {.lex_state = 125}, - [1153] = {.lex_state = 125}, - [1154] = {.lex_state = 124}, - [1155] = {.lex_state = 124}, - [1156] = {.lex_state = 125}, - [1157] = {.lex_state = 125}, - [1158] = {.lex_state = 124}, - [1159] = {.lex_state = 124}, - [1160] = {.lex_state = 124}, - [1161] = {.lex_state = 124}, - [1162] = {.lex_state = 125}, - [1163] = {.lex_state = 125}, - [1164] = {.lex_state = 125}, - [1165] = {.lex_state = 125}, - [1166] = {.lex_state = 124}, - [1167] = {.lex_state = 125}, - [1168] = {.lex_state = 147}, - [1169] = {.lex_state = 147}, - [1170] = {.lex_state = 147}, - [1171] = {.lex_state = 124}, - [1172] = {.lex_state = 124}, - [1173] = {.lex_state = 124}, - [1174] = {.lex_state = 147}, - [1175] = {.lex_state = 125}, - [1176] = {.lex_state = 125}, - [1177] = {.lex_state = 124}, - [1178] = {.lex_state = 124}, - [1179] = {.lex_state = 124}, - [1180] = {.lex_state = 125}, - [1181] = {.lex_state = 125}, - [1182] = {.lex_state = 125}, - [1183] = {.lex_state = 124}, - [1184] = {.lex_state = 124}, - [1185] = {.lex_state = 125}, - [1186] = {.lex_state = 124}, - [1187] = {.lex_state = 124}, - [1188] = {.lex_state = 124}, - [1189] = {.lex_state = 125}, - [1190] = {.lex_state = 125}, - [1191] = {.lex_state = 125}, - [1192] = {.lex_state = 125}, - [1193] = {.lex_state = 125}, - [1194] = {.lex_state = 125}, - [1195] = {.lex_state = 125}, - [1196] = {.lex_state = 125}, - [1197] = {.lex_state = 124}, - [1198] = {.lex_state = 125}, - [1199] = {.lex_state = 125}, - [1200] = {.lex_state = 125}, - [1201] = {.lex_state = 125}, - [1202] = {.lex_state = 125}, - [1203] = {.lex_state = 125}, - [1204] = {.lex_state = 125}, - [1205] = {.lex_state = 125}, - [1206] = {.lex_state = 125}, - [1207] = {.lex_state = 124}, - [1208] = {.lex_state = 125}, - [1209] = {.lex_state = 125}, - [1210] = {.lex_state = 125}, - [1211] = {.lex_state = 125}, - [1212] = {.lex_state = 125}, - [1213] = {.lex_state = 124}, - [1214] = {.lex_state = 125}, - [1215] = {.lex_state = 125}, - [1216] = {.lex_state = 125}, - [1217] = {.lex_state = 125}, - [1218] = {.lex_state = 125}, - [1219] = {.lex_state = 125}, - [1220] = {.lex_state = 147}, - [1221] = {.lex_state = 147}, - [1222] = {.lex_state = 147}, - [1223] = {.lex_state = 147}, - [1224] = {.lex_state = 102, .external_lex_state = 1}, - [1225] = {.lex_state = 135}, - [1226] = {.lex_state = 135}, - [1227] = {.lex_state = 135}, - [1228] = {.lex_state = 147}, - [1229] = {.lex_state = 147}, - [1230] = {.lex_state = 147}, - [1231] = {.lex_state = 103, .external_lex_state = 1}, - [1232] = {.lex_state = 102, .external_lex_state = 1}, - [1233] = {.lex_state = 113, .external_lex_state = 1}, - [1234] = {.lex_state = 113, .external_lex_state = 1}, - [1235] = {.lex_state = 113, .external_lex_state = 1}, - [1236] = {.lex_state = 147}, - [1237] = {.lex_state = 113, .external_lex_state = 1}, - [1238] = {.lex_state = 113, .external_lex_state = 1}, - [1239] = {.lex_state = 113, .external_lex_state = 1}, - [1240] = {.lex_state = 147}, - [1241] = {.lex_state = 147}, - [1242] = {.lex_state = 113, .external_lex_state = 1}, - [1243] = {.lex_state = 113, .external_lex_state = 1}, - [1244] = {.lex_state = 113, .external_lex_state = 1}, - [1245] = {.lex_state = 113, .external_lex_state = 1}, - [1246] = {.lex_state = 143}, - [1247] = {.lex_state = 113, .external_lex_state = 1}, - [1248] = {.lex_state = 143}, - [1249] = {.lex_state = 113, .external_lex_state = 1}, - [1250] = {.lex_state = 113, .external_lex_state = 1}, - [1251] = {.lex_state = 143}, - [1252] = {.lex_state = 113, .external_lex_state = 1}, - [1253] = {.lex_state = 113, .external_lex_state = 1}, - [1254] = {.lex_state = 147}, - [1255] = {.lex_state = 113, .external_lex_state = 1}, - [1256] = {.lex_state = 111, .external_lex_state = 1}, - [1257] = {.lex_state = 113, .external_lex_state = 1}, - [1258] = {.lex_state = 113, .external_lex_state = 1}, - [1259] = {.lex_state = 113, .external_lex_state = 1}, - [1260] = {.lex_state = 113, .external_lex_state = 1}, - [1261] = {.lex_state = 143}, - [1262] = {.lex_state = 113, .external_lex_state = 1}, - [1263] = {.lex_state = 113, .external_lex_state = 1}, - [1264] = {.lex_state = 113, .external_lex_state = 1}, - [1265] = {.lex_state = 113, .external_lex_state = 1}, - [1266] = {.lex_state = 147}, - [1267] = {.lex_state = 113, .external_lex_state = 1}, - [1268] = {.lex_state = 147}, - [1269] = {.lex_state = 147}, - [1270] = {.lex_state = 148}, - [1271] = {.lex_state = 148}, - [1272] = {.lex_state = 148}, - [1273] = {.lex_state = 148}, - [1274] = {.lex_state = 148}, - [1275] = {.lex_state = 148}, - [1276] = {.lex_state = 148}, - [1277] = {.lex_state = 148}, - [1278] = {.lex_state = 148}, - [1279] = {.lex_state = 148}, - [1280] = {.lex_state = 147}, - [1281] = {.lex_state = 148}, - [1282] = {.lex_state = 148}, - [1283] = {.lex_state = 148}, - [1284] = {.lex_state = 104, .external_lex_state = 1}, - [1285] = {.lex_state = 147}, - [1286] = {.lex_state = 148}, - [1287] = {.lex_state = 148}, - [1288] = {.lex_state = 148}, - [1289] = {.lex_state = 150}, - [1290] = {.lex_state = 148}, - [1291] = {.lex_state = 148}, - [1292] = {.lex_state = 148}, - [1293] = {.lex_state = 148}, - [1294] = {.lex_state = 148}, - [1295] = {.lex_state = 148}, - [1296] = {.lex_state = 148}, - [1297] = {.lex_state = 148}, - [1298] = {.lex_state = 148}, - [1299] = {.lex_state = 147}, - [1300] = {.lex_state = 147}, - [1301] = {.lex_state = 148}, - [1302] = {.lex_state = 148}, - [1303] = {.lex_state = 148}, - [1304] = {.lex_state = 148}, - [1305] = {.lex_state = 148}, - [1306] = {.lex_state = 148}, - [1307] = {.lex_state = 148}, - [1308] = {.lex_state = 147}, - [1309] = {.lex_state = 148}, - [1310] = {.lex_state = 148}, - [1311] = {.lex_state = 148}, - [1312] = {.lex_state = 148}, - [1313] = {.lex_state = 148}, - [1314] = {.lex_state = 148}, - [1315] = {.lex_state = 148}, - [1316] = {.lex_state = 148}, - [1317] = {.lex_state = 148}, - [1318] = {.lex_state = 135}, - [1319] = {.lex_state = 148}, - [1320] = {.lex_state = 148}, - [1321] = {.lex_state = 148}, - [1322] = {.lex_state = 148}, - [1323] = {.lex_state = 148}, - [1324] = {.lex_state = 148}, - [1325] = {.lex_state = 148}, - [1326] = {.lex_state = 148}, - [1327] = {.lex_state = 148}, - [1328] = {.lex_state = 148}, - [1329] = {.lex_state = 148}, - [1330] = {.lex_state = 148}, - [1331] = {.lex_state = 148}, - [1332] = {.lex_state = 148}, - [1333] = {.lex_state = 148}, - [1334] = {.lex_state = 148}, - [1335] = {.lex_state = 148}, - [1336] = {.lex_state = 148}, - [1337] = {.lex_state = 148}, - [1338] = {.lex_state = 147}, - [1339] = {.lex_state = 148}, - [1340] = {.lex_state = 148}, - [1341] = {.lex_state = 148}, - [1342] = {.lex_state = 148}, - [1343] = {.lex_state = 148}, - [1344] = {.lex_state = 148}, - [1345] = {.lex_state = 148}, - [1346] = {.lex_state = 148}, - [1347] = {.lex_state = 148}, - [1348] = {.lex_state = 148}, - [1349] = {.lex_state = 148}, - [1350] = {.lex_state = 148}, - [1351] = {.lex_state = 148}, - [1352] = {.lex_state = 148}, - [1353] = {.lex_state = 148}, - [1354] = {.lex_state = 148}, - [1355] = {.lex_state = 148}, - [1356] = {.lex_state = 148}, - [1357] = {.lex_state = 148}, - [1358] = {.lex_state = 148}, - [1359] = {.lex_state = 148}, - [1360] = {.lex_state = 148}, - [1361] = {.lex_state = 147}, - [1362] = {.lex_state = 105, .external_lex_state = 1}, - [1363] = {.lex_state = 104, .external_lex_state = 1}, - [1364] = {.lex_state = 148}, - [1365] = {.lex_state = 147}, - [1366] = {.lex_state = 135}, - [1367] = {.lex_state = 151}, - [1368] = {.lex_state = 151}, - [1369] = {.lex_state = 148}, - [1370] = {.lex_state = 135}, - [1371] = {.lex_state = 135}, - [1372] = {.lex_state = 104, .external_lex_state = 1}, - [1373] = {.lex_state = 135}, - [1374] = {.lex_state = 135}, - [1375] = {.lex_state = 135}, - [1376] = {.lex_state = 151}, - [1377] = {.lex_state = 151}, - [1378] = {.lex_state = 151}, - [1379] = {.lex_state = 148}, - [1380] = {.lex_state = 151}, - [1381] = {.lex_state = 135}, - [1382] = {.lex_state = 148}, - [1383] = {.lex_state = 151}, - [1384] = {.lex_state = 151}, - [1385] = {.lex_state = 151}, - [1386] = {.lex_state = 151}, - [1387] = {.lex_state = 151}, - [1388] = {.lex_state = 151}, - [1389] = {.lex_state = 151}, - [1390] = {.lex_state = 148}, - [1391] = {.lex_state = 151}, - [1392] = {.lex_state = 151}, - [1393] = {.lex_state = 151}, - [1394] = {.lex_state = 151}, - [1395] = {.lex_state = 148}, - [1396] = {.lex_state = 151}, - [1397] = {.lex_state = 151}, - [1398] = {.lex_state = 151}, - [1399] = {.lex_state = 135}, - [1400] = {.lex_state = 135}, - [1401] = {.lex_state = 151}, - [1402] = {.lex_state = 135}, - [1403] = {.lex_state = 135}, - [1404] = {.lex_state = 135}, - [1405] = {.lex_state = 135}, - [1406] = {.lex_state = 151}, - [1407] = {.lex_state = 135}, - [1408] = {.lex_state = 135}, - [1409] = {.lex_state = 135}, - [1410] = {.lex_state = 151}, - [1411] = {.lex_state = 151}, - [1412] = {.lex_state = 151}, - [1413] = {.lex_state = 151}, - [1414] = {.lex_state = 151}, - [1415] = {.lex_state = 151}, - [1416] = {.lex_state = 151}, - [1417] = {.lex_state = 151}, - [1418] = {.lex_state = 151}, - [1419] = {.lex_state = 151}, - [1420] = {.lex_state = 151}, - [1421] = {.lex_state = 151}, - [1422] = {.lex_state = 151}, - [1423] = {.lex_state = 151}, - [1424] = {.lex_state = 151}, - [1425] = {.lex_state = 151}, - [1426] = {.lex_state = 151}, - [1427] = {.lex_state = 151}, - [1428] = {.lex_state = 151}, - [1429] = {.lex_state = 151}, - [1430] = {.lex_state = 151}, - [1431] = {.lex_state = 151}, - [1432] = {.lex_state = 151}, - [1433] = {.lex_state = 151}, - [1434] = {.lex_state = 151}, - [1435] = {.lex_state = 151}, - [1436] = {.lex_state = 151}, - [1437] = {.lex_state = 151}, - [1438] = {.lex_state = 151}, - [1439] = {.lex_state = 151}, - [1440] = {.lex_state = 151}, - [1441] = {.lex_state = 151}, - [1442] = {.lex_state = 151}, - [1443] = {.lex_state = 151}, - [1444] = {.lex_state = 151}, - [1445] = {.lex_state = 151}, - [1446] = {.lex_state = 151}, - [1447] = {.lex_state = 151}, - [1448] = {.lex_state = 151}, - [1449] = {.lex_state = 151}, - [1450] = {.lex_state = 151}, - [1451] = {.lex_state = 151}, - [1452] = {.lex_state = 151}, - [1453] = {.lex_state = 151}, - [1454] = {.lex_state = 151}, - [1455] = {.lex_state = 151}, - [1456] = {.lex_state = 151}, - [1457] = {.lex_state = 151}, - [1458] = {.lex_state = 151}, - [1459] = {.lex_state = 151}, - [1460] = {.lex_state = 151}, - [1461] = {.lex_state = 151}, - [1462] = {.lex_state = 148}, - [1463] = {.lex_state = 148}, - [1464] = {.lex_state = 148}, - [1465] = {.lex_state = 150}, - [1466] = {.lex_state = 148}, - [1467] = {.lex_state = 148}, - [1468] = {.lex_state = 151}, - [1469] = {.lex_state = 148}, - [1470] = {.lex_state = 148}, - [1471] = {.lex_state = 151}, - [1472] = {.lex_state = 148}, - [1473] = {.lex_state = 135}, - [1474] = {.lex_state = 148}, - [1475] = {.lex_state = 148}, - [1476] = {.lex_state = 148}, - [1477] = {.lex_state = 148}, - [1478] = {.lex_state = 135}, - [1479] = {.lex_state = 148}, - [1480] = {.lex_state = 147}, - [1481] = {.lex_state = 148}, - [1482] = {.lex_state = 148}, - [1483] = {.lex_state = 135}, - [1484] = {.lex_state = 148}, - [1485] = {.lex_state = 135}, - [1486] = {.lex_state = 148}, - [1487] = {.lex_state = 135}, - [1488] = {.lex_state = 111, .external_lex_state = 1}, - [1489] = {.lex_state = 148}, - [1490] = {.lex_state = 135}, - [1491] = {.lex_state = 148}, - [1492] = {.lex_state = 148}, - [1493] = {.lex_state = 148}, - [1494] = {.lex_state = 151}, - [1495] = {.lex_state = 151}, - [1496] = {.lex_state = 135}, - [1497] = {.lex_state = 135}, - [1498] = {.lex_state = 135}, - [1499] = {.lex_state = 135}, - [1500] = {.lex_state = 135}, - [1501] = {.lex_state = 151}, - [1502] = {.lex_state = 151}, - [1503] = {.lex_state = 151}, - [1504] = {.lex_state = 135}, - [1505] = {.lex_state = 113, .external_lex_state = 1}, - [1506] = {.lex_state = 113, .external_lex_state = 1}, - [1507] = {.lex_state = 113, .external_lex_state = 1}, - [1508] = {.lex_state = 113, .external_lex_state = 1}, - [1509] = {.lex_state = 113, .external_lex_state = 1}, - [1510] = {.lex_state = 148}, - [1511] = {.lex_state = 113, .external_lex_state = 1}, - [1512] = {.lex_state = 113, .external_lex_state = 1}, - [1513] = {.lex_state = 113, .external_lex_state = 1}, - [1514] = {.lex_state = 113, .external_lex_state = 1}, - [1515] = {.lex_state = 113, .external_lex_state = 1}, - [1516] = {.lex_state = 113, .external_lex_state = 1}, - [1517] = {.lex_state = 113, .external_lex_state = 1}, - [1518] = {.lex_state = 113, .external_lex_state = 1}, - [1519] = {.lex_state = 113, .external_lex_state = 1}, - [1520] = {.lex_state = 148}, - [1521] = {.lex_state = 113, .external_lex_state = 1}, - [1522] = {.lex_state = 148}, - [1523] = {.lex_state = 113, .external_lex_state = 1}, - [1524] = {.lex_state = 113, .external_lex_state = 1}, - [1525] = {.lex_state = 113, .external_lex_state = 1}, - [1526] = {.lex_state = 113, .external_lex_state = 1}, - [1527] = {.lex_state = 113, .external_lex_state = 1}, - [1528] = {.lex_state = 113, .external_lex_state = 1}, - [1529] = {.lex_state = 113, .external_lex_state = 1}, - [1530] = {.lex_state = 113, .external_lex_state = 1}, - [1531] = {.lex_state = 113, .external_lex_state = 1}, - [1532] = {.lex_state = 113, .external_lex_state = 1}, - [1533] = {.lex_state = 113, .external_lex_state = 1}, - [1534] = {.lex_state = 151}, - [1535] = {.lex_state = 113, .external_lex_state = 1}, - [1536] = {.lex_state = 151}, - [1537] = {.lex_state = 113, .external_lex_state = 1}, - [1538] = {.lex_state = 151}, - [1539] = {.lex_state = 113, .external_lex_state = 1}, - [1540] = {.lex_state = 113, .external_lex_state = 1}, - [1541] = {.lex_state = 113, .external_lex_state = 1}, - [1542] = {.lex_state = 151}, - [1543] = {.lex_state = 113, .external_lex_state = 1}, - [1544] = {.lex_state = 148}, - [1545] = {.lex_state = 148}, - [1546] = {.lex_state = 149}, - [1547] = {.lex_state = 149}, - [1548] = {.lex_state = 149}, - [1549] = {.lex_state = 113, .external_lex_state = 1}, - [1550] = {.lex_state = 113, .external_lex_state = 1}, - [1551] = {.lex_state = 113, .external_lex_state = 1}, - [1552] = {.lex_state = 113, .external_lex_state = 1}, - [1553] = {.lex_state = 113, .external_lex_state = 1}, - [1554] = {.lex_state = 113, .external_lex_state = 1}, - [1555] = {.lex_state = 113, .external_lex_state = 1}, - [1556] = {.lex_state = 113, .external_lex_state = 1}, - [1557] = {.lex_state = 113, .external_lex_state = 1}, - [1558] = {.lex_state = 113, .external_lex_state = 1}, - [1559] = {.lex_state = 113, .external_lex_state = 1}, - [1560] = {.lex_state = 113, .external_lex_state = 1}, - [1561] = {.lex_state = 113, .external_lex_state = 1}, - [1562] = {.lex_state = 113, .external_lex_state = 1}, - [1563] = {.lex_state = 113, .external_lex_state = 1}, - [1564] = {.lex_state = 113, .external_lex_state = 1}, - [1565] = {.lex_state = 113, .external_lex_state = 1}, - [1566] = {.lex_state = 113, .external_lex_state = 1}, - [1567] = {.lex_state = 113, .external_lex_state = 1}, - [1568] = {.lex_state = 113, .external_lex_state = 1}, - [1569] = {.lex_state = 113, .external_lex_state = 1}, - [1570] = {.lex_state = 113, .external_lex_state = 1}, - [1571] = {.lex_state = 113, .external_lex_state = 1}, - [1572] = {.lex_state = 113, .external_lex_state = 1}, - [1573] = {.lex_state = 113, .external_lex_state = 1}, - [1574] = {.lex_state = 113, .external_lex_state = 1}, - [1575] = {.lex_state = 113, .external_lex_state = 1}, - [1576] = {.lex_state = 113, .external_lex_state = 1}, - [1577] = {.lex_state = 113, .external_lex_state = 1}, - [1578] = {.lex_state = 113, .external_lex_state = 1}, - [1579] = {.lex_state = 113, .external_lex_state = 1}, - [1580] = {.lex_state = 113, .external_lex_state = 1}, - [1581] = {.lex_state = 113, .external_lex_state = 1}, - [1582] = {.lex_state = 113, .external_lex_state = 1}, - [1583] = {.lex_state = 113, .external_lex_state = 1}, - [1584] = {.lex_state = 113, .external_lex_state = 1}, - [1585] = {.lex_state = 113, .external_lex_state = 1}, - [1586] = {.lex_state = 113, .external_lex_state = 1}, - [1587] = {.lex_state = 113, .external_lex_state = 1}, - [1588] = {.lex_state = 113, .external_lex_state = 1}, - [1589] = {.lex_state = 126}, - [1590] = {.lex_state = 126}, - [1591] = {.lex_state = 126}, - [1592] = {.lex_state = 113, .external_lex_state = 1}, - [1593] = {.lex_state = 113, .external_lex_state = 1}, - [1594] = {.lex_state = 113, .external_lex_state = 1}, - [1595] = {.lex_state = 111, .external_lex_state = 1}, - [1596] = {.lex_state = 111, .external_lex_state = 1}, - [1597] = {.lex_state = 113, .external_lex_state = 1}, - [1598] = {.lex_state = 126}, - [1599] = {.lex_state = 113, .external_lex_state = 1}, - [1600] = {.lex_state = 126}, - [1601] = {.lex_state = 126}, - [1602] = {.lex_state = 113, .external_lex_state = 1}, - [1603] = {.lex_state = 113, .external_lex_state = 1}, - [1604] = {.lex_state = 113, .external_lex_state = 1}, - [1605] = {.lex_state = 111, .external_lex_state = 1}, - [1606] = {.lex_state = 113, .external_lex_state = 1}, - [1607] = {.lex_state = 126}, - [1608] = {.lex_state = 113, .external_lex_state = 1}, - [1609] = {.lex_state = 126}, - [1610] = {.lex_state = 126}, - [1611] = {.lex_state = 113, .external_lex_state = 1}, - [1612] = {.lex_state = 113, .external_lex_state = 1}, - [1613] = {.lex_state = 113, .external_lex_state = 1}, - [1614] = {.lex_state = 113, .external_lex_state = 1}, - [1615] = {.lex_state = 113, .external_lex_state = 1}, - [1616] = {.lex_state = 111, .external_lex_state = 1}, - [1617] = {.lex_state = 113, .external_lex_state = 1}, - [1618] = {.lex_state = 113, .external_lex_state = 1}, - [1619] = {.lex_state = 113, .external_lex_state = 1}, - [1620] = {.lex_state = 126}, - [1621] = {.lex_state = 113, .external_lex_state = 1}, - [1622] = {.lex_state = 126}, - [1623] = {.lex_state = 126}, - [1624] = {.lex_state = 126}, - [1625] = {.lex_state = 113, .external_lex_state = 1}, - [1626] = {.lex_state = 113, .external_lex_state = 1}, - [1627] = {.lex_state = 113, .external_lex_state = 1}, - [1628] = {.lex_state = 113, .external_lex_state = 1}, - [1629] = {.lex_state = 113, .external_lex_state = 1}, - [1630] = {.lex_state = 111, .external_lex_state = 1}, - [1631] = {.lex_state = 113, .external_lex_state = 1}, - [1632] = {.lex_state = 113, .external_lex_state = 1}, - [1633] = {.lex_state = 126}, - [1634] = {.lex_state = 111, .external_lex_state = 1}, - [1635] = {.lex_state = 126}, - [1636] = {.lex_state = 113, .external_lex_state = 1}, - [1637] = {.lex_state = 126}, - [1638] = {.lex_state = 113, .external_lex_state = 1}, - [1639] = {.lex_state = 126}, - [1640] = {.lex_state = 113, .external_lex_state = 1}, - [1641] = {.lex_state = 113, .external_lex_state = 1}, - [1642] = {.lex_state = 113, .external_lex_state = 1}, - [1643] = {.lex_state = 113, .external_lex_state = 1}, - [1644] = {.lex_state = 113, .external_lex_state = 1}, - [1645] = {.lex_state = 113, .external_lex_state = 1}, - [1646] = {.lex_state = 113, .external_lex_state = 1}, - [1647] = {.lex_state = 113, .external_lex_state = 1}, - [1648] = {.lex_state = 126}, - [1649] = {.lex_state = 126}, - [1650] = {.lex_state = 111, .external_lex_state = 1}, - [1651] = {.lex_state = 113, .external_lex_state = 1}, - [1652] = {.lex_state = 113, .external_lex_state = 1}, - [1653] = {.lex_state = 126}, - [1654] = {.lex_state = 126}, - [1655] = {.lex_state = 113, .external_lex_state = 1}, - [1656] = {.lex_state = 111, .external_lex_state = 1}, - [1657] = {.lex_state = 126}, - [1658] = {.lex_state = 113, .external_lex_state = 1}, - [1659] = {.lex_state = 113, .external_lex_state = 1}, - [1660] = {.lex_state = 113, .external_lex_state = 1}, - [1661] = {.lex_state = 113, .external_lex_state = 1}, - [1662] = {.lex_state = 113, .external_lex_state = 1}, - [1663] = {.lex_state = 113, .external_lex_state = 1}, - [1664] = {.lex_state = 113, .external_lex_state = 1}, - [1665] = {.lex_state = 113, .external_lex_state = 1}, - [1666] = {.lex_state = 113, .external_lex_state = 1}, - [1667] = {.lex_state = 113, .external_lex_state = 1}, - [1668] = {.lex_state = 126}, - [1669] = {.lex_state = 113, .external_lex_state = 1}, - [1670] = {.lex_state = 113, .external_lex_state = 1}, - [1671] = {.lex_state = 113, .external_lex_state = 1}, - [1672] = {.lex_state = 113, .external_lex_state = 1}, - [1673] = {.lex_state = 113, .external_lex_state = 1}, - [1674] = {.lex_state = 113, .external_lex_state = 1}, - [1675] = {.lex_state = 113, .external_lex_state = 1}, - [1676] = {.lex_state = 113, .external_lex_state = 1}, - [1677] = {.lex_state = 113, .external_lex_state = 1}, - [1678] = {.lex_state = 113, .external_lex_state = 1}, - [1679] = {.lex_state = 113, .external_lex_state = 1}, - [1680] = {.lex_state = 113, .external_lex_state = 1}, - [1681] = {.lex_state = 113, .external_lex_state = 1}, - [1682] = {.lex_state = 126}, - [1683] = {.lex_state = 113, .external_lex_state = 1}, - [1684] = {.lex_state = 113, .external_lex_state = 1}, - [1685] = {.lex_state = 113, .external_lex_state = 1}, - [1686] = {.lex_state = 126}, - [1687] = {.lex_state = 113, .external_lex_state = 1}, - [1688] = {.lex_state = 126}, - [1689] = {.lex_state = 111, .external_lex_state = 1}, - [1690] = {.lex_state = 111, .external_lex_state = 1}, - [1691] = {.lex_state = 111, .external_lex_state = 1}, - [1692] = {.lex_state = 113, .external_lex_state = 1}, - [1693] = {.lex_state = 113, .external_lex_state = 1}, - [1694] = {.lex_state = 113, .external_lex_state = 1}, - [1695] = {.lex_state = 113, .external_lex_state = 1}, - [1696] = {.lex_state = 113, .external_lex_state = 1}, - [1697] = {.lex_state = 111, .external_lex_state = 1}, - [1698] = {.lex_state = 111, .external_lex_state = 1}, - [1699] = {.lex_state = 113, .external_lex_state = 1}, - [1700] = {.lex_state = 113, .external_lex_state = 1}, - [1701] = {.lex_state = 111, .external_lex_state = 1}, - [1702] = {.lex_state = 113, .external_lex_state = 1}, - [1703] = {.lex_state = 113, .external_lex_state = 1}, - [1704] = {.lex_state = 126}, - [1705] = {.lex_state = 126}, - [1706] = {.lex_state = 126}, - [1707] = {.lex_state = 113, .external_lex_state = 1}, - [1708] = {.lex_state = 113, .external_lex_state = 1}, - [1709] = {.lex_state = 113, .external_lex_state = 1}, - [1710] = {.lex_state = 113, .external_lex_state = 1}, - [1711] = {.lex_state = 113, .external_lex_state = 1}, - [1712] = {.lex_state = 113, .external_lex_state = 1}, - [1713] = {.lex_state = 126}, - [1714] = {.lex_state = 113, .external_lex_state = 1}, - [1715] = {.lex_state = 113, .external_lex_state = 1}, - [1716] = {.lex_state = 113, .external_lex_state = 1}, - [1717] = {.lex_state = 113, .external_lex_state = 1}, - [1718] = {.lex_state = 113, .external_lex_state = 1}, - [1719] = {.lex_state = 113, .external_lex_state = 1}, - [1720] = {.lex_state = 126}, - [1721] = {.lex_state = 126}, - [1722] = {.lex_state = 113, .external_lex_state = 1}, - [1723] = {.lex_state = 113, .external_lex_state = 1}, - [1724] = {.lex_state = 113, .external_lex_state = 1}, - [1725] = {.lex_state = 113, .external_lex_state = 1}, - [1726] = {.lex_state = 126}, - [1727] = {.lex_state = 126}, - [1728] = {.lex_state = 113, .external_lex_state = 1}, - [1729] = {.lex_state = 126}, - [1730] = {.lex_state = 113, .external_lex_state = 1}, - [1731] = {.lex_state = 113, .external_lex_state = 1}, - [1732] = {.lex_state = 113, .external_lex_state = 1}, - [1733] = {.lex_state = 113, .external_lex_state = 1}, - [1734] = {.lex_state = 113, .external_lex_state = 1}, - [1735] = {.lex_state = 126}, - [1736] = {.lex_state = 113, .external_lex_state = 1}, - [1737] = {.lex_state = 113, .external_lex_state = 1}, - [1738] = {.lex_state = 113, .external_lex_state = 1}, - [1739] = {.lex_state = 113, .external_lex_state = 1}, - [1740] = {.lex_state = 113, .external_lex_state = 1}, - [1741] = {.lex_state = 113, .external_lex_state = 1}, - [1742] = {.lex_state = 126}, - [1743] = {.lex_state = 113, .external_lex_state = 1}, - [1744] = {.lex_state = 126}, - [1745] = {.lex_state = 113, .external_lex_state = 1}, - [1746] = {.lex_state = 126}, - [1747] = {.lex_state = 126}, - [1748] = {.lex_state = 113, .external_lex_state = 1}, - [1749] = {.lex_state = 113, .external_lex_state = 1}, - [1750] = {.lex_state = 113, .external_lex_state = 1}, - [1751] = {.lex_state = 113, .external_lex_state = 1}, - [1752] = {.lex_state = 113, .external_lex_state = 1}, - [1753] = {.lex_state = 113, .external_lex_state = 1}, - [1754] = {.lex_state = 126}, - [1755] = {.lex_state = 113, .external_lex_state = 1}, - [1756] = {.lex_state = 113, .external_lex_state = 1}, - [1757] = {.lex_state = 126}, - [1758] = {.lex_state = 126}, - [1759] = {.lex_state = 113, .external_lex_state = 1}, - [1760] = {.lex_state = 113, .external_lex_state = 1}, - [1761] = {.lex_state = 126}, - [1762] = {.lex_state = 113, .external_lex_state = 1}, - [1763] = {.lex_state = 113, .external_lex_state = 1}, - [1764] = {.lex_state = 126}, - [1765] = {.lex_state = 113, .external_lex_state = 1}, - [1766] = {.lex_state = 113, .external_lex_state = 1}, - [1767] = {.lex_state = 113, .external_lex_state = 1}, - [1768] = {.lex_state = 113, .external_lex_state = 1}, - [1769] = {.lex_state = 113, .external_lex_state = 1}, - [1770] = {.lex_state = 113, .external_lex_state = 1}, - [1771] = {.lex_state = 113, .external_lex_state = 1}, - [1772] = {.lex_state = 113, .external_lex_state = 1}, - [1773] = {.lex_state = 113, .external_lex_state = 1}, - [1774] = {.lex_state = 113, .external_lex_state = 1}, - [1775] = {.lex_state = 113, .external_lex_state = 1}, - [1776] = {.lex_state = 113, .external_lex_state = 1}, - [1777] = {.lex_state = 113, .external_lex_state = 1}, - [1778] = {.lex_state = 113, .external_lex_state = 1}, - [1779] = {.lex_state = 113, .external_lex_state = 1}, - [1780] = {.lex_state = 113, .external_lex_state = 1}, - [1781] = {.lex_state = 113, .external_lex_state = 1}, - [1782] = {.lex_state = 113, .external_lex_state = 1}, - [1783] = {.lex_state = 113, .external_lex_state = 1}, - [1784] = {.lex_state = 113, .external_lex_state = 1}, - [1785] = {.lex_state = 113, .external_lex_state = 1}, - [1786] = {.lex_state = 113, .external_lex_state = 1}, - [1787] = {.lex_state = 113, .external_lex_state = 1}, - [1788] = {.lex_state = 113, .external_lex_state = 1}, - [1789] = {.lex_state = 113, .external_lex_state = 1}, - [1790] = {.lex_state = 113, .external_lex_state = 1}, - [1791] = {.lex_state = 113, .external_lex_state = 1}, - [1792] = {.lex_state = 113, .external_lex_state = 1}, - [1793] = {.lex_state = 113, .external_lex_state = 1}, - [1794] = {.lex_state = 113, .external_lex_state = 1}, - [1795] = {.lex_state = 113, .external_lex_state = 1}, - [1796] = {.lex_state = 113, .external_lex_state = 1}, - [1797] = {.lex_state = 113, .external_lex_state = 1}, - [1798] = {.lex_state = 113, .external_lex_state = 1}, - [1799] = {.lex_state = 113, .external_lex_state = 1}, - [1800] = {.lex_state = 113, .external_lex_state = 1}, - [1801] = {.lex_state = 113, .external_lex_state = 1}, - [1802] = {.lex_state = 113, .external_lex_state = 1}, - [1803] = {.lex_state = 113, .external_lex_state = 1}, - [1804] = {.lex_state = 113, .external_lex_state = 1}, - [1805] = {.lex_state = 113, .external_lex_state = 1}, - [1806] = {.lex_state = 113, .external_lex_state = 1}, - [1807] = {.lex_state = 113, .external_lex_state = 1}, - [1808] = {.lex_state = 113, .external_lex_state = 1}, - [1809] = {.lex_state = 113, .external_lex_state = 1}, - [1810] = {.lex_state = 113, .external_lex_state = 1}, - [1811] = {.lex_state = 113, .external_lex_state = 1}, - [1812] = {.lex_state = 113, .external_lex_state = 1}, - [1813] = {.lex_state = 113, .external_lex_state = 1}, - [1814] = {.lex_state = 113, .external_lex_state = 1}, - [1815] = {.lex_state = 113, .external_lex_state = 1}, - [1816] = {.lex_state = 113, .external_lex_state = 1}, - [1817] = {.lex_state = 113, .external_lex_state = 1}, - [1818] = {.lex_state = 113, .external_lex_state = 1}, - [1819] = {.lex_state = 113, .external_lex_state = 1}, - [1820] = {.lex_state = 113, .external_lex_state = 1}, - [1821] = {.lex_state = 113, .external_lex_state = 1}, - [1822] = {.lex_state = 113, .external_lex_state = 1}, - [1823] = {.lex_state = 113, .external_lex_state = 1}, - [1824] = {.lex_state = 113, .external_lex_state = 1}, - [1825] = {.lex_state = 113, .external_lex_state = 1}, - [1826] = {.lex_state = 113, .external_lex_state = 1}, - [1827] = {.lex_state = 113, .external_lex_state = 1}, - [1828] = {.lex_state = 113, .external_lex_state = 1}, - [1829] = {.lex_state = 113, .external_lex_state = 1}, - [1830] = {.lex_state = 113, .external_lex_state = 1}, - [1831] = {.lex_state = 113, .external_lex_state = 1}, - [1832] = {.lex_state = 113, .external_lex_state = 1}, - [1833] = {.lex_state = 113, .external_lex_state = 1}, - [1834] = {.lex_state = 113, .external_lex_state = 1}, - [1835] = {.lex_state = 113, .external_lex_state = 1}, - [1836] = {.lex_state = 113, .external_lex_state = 1}, - [1837] = {.lex_state = 113, .external_lex_state = 1}, - [1838] = {.lex_state = 113, .external_lex_state = 1}, - [1839] = {.lex_state = 113, .external_lex_state = 1}, - [1840] = {.lex_state = 113, .external_lex_state = 1}, - [1841] = {.lex_state = 113, .external_lex_state = 1}, - [1842] = {.lex_state = 113, .external_lex_state = 1}, - [1843] = {.lex_state = 113, .external_lex_state = 1}, - [1844] = {.lex_state = 113, .external_lex_state = 1}, - [1845] = {.lex_state = 113, .external_lex_state = 1}, - [1846] = {.lex_state = 113, .external_lex_state = 1}, - [1847] = {.lex_state = 113, .external_lex_state = 1}, - [1848] = {.lex_state = 113, .external_lex_state = 1}, - [1849] = {.lex_state = 113, .external_lex_state = 1}, - [1850] = {.lex_state = 113, .external_lex_state = 1}, - [1851] = {.lex_state = 113, .external_lex_state = 1}, - [1852] = {.lex_state = 113, .external_lex_state = 1}, - [1853] = {.lex_state = 113, .external_lex_state = 1}, - [1854] = {.lex_state = 113, .external_lex_state = 1}, - [1855] = {.lex_state = 113, .external_lex_state = 1}, - [1856] = {.lex_state = 113, .external_lex_state = 1}, - [1857] = {.lex_state = 113, .external_lex_state = 1}, - [1858] = {.lex_state = 113, .external_lex_state = 1}, - [1859] = {.lex_state = 113, .external_lex_state = 1}, - [1860] = {.lex_state = 113, .external_lex_state = 1}, - [1861] = {.lex_state = 113, .external_lex_state = 1}, - [1862] = {.lex_state = 113, .external_lex_state = 1}, - [1863] = {.lex_state = 113, .external_lex_state = 1}, - [1864] = {.lex_state = 113, .external_lex_state = 1}, - [1865] = {.lex_state = 113, .external_lex_state = 1}, - [1866] = {.lex_state = 113, .external_lex_state = 1}, - [1867] = {.lex_state = 113, .external_lex_state = 1}, - [1868] = {.lex_state = 113, .external_lex_state = 1}, - [1869] = {.lex_state = 113, .external_lex_state = 1}, - [1870] = {.lex_state = 113, .external_lex_state = 1}, - [1871] = {.lex_state = 113, .external_lex_state = 1}, - [1872] = {.lex_state = 113, .external_lex_state = 1}, - [1873] = {.lex_state = 113, .external_lex_state = 1}, - [1874] = {.lex_state = 113, .external_lex_state = 1}, - [1875] = {.lex_state = 113, .external_lex_state = 1}, - [1876] = {.lex_state = 113, .external_lex_state = 1}, - [1877] = {.lex_state = 113, .external_lex_state = 1}, - [1878] = {.lex_state = 113, .external_lex_state = 1}, - [1879] = {.lex_state = 113, .external_lex_state = 1}, - [1880] = {.lex_state = 113, .external_lex_state = 1}, - [1881] = {.lex_state = 113, .external_lex_state = 1}, - [1882] = {.lex_state = 113, .external_lex_state = 1}, - [1883] = {.lex_state = 113, .external_lex_state = 1}, - [1884] = {.lex_state = 113, .external_lex_state = 1}, - [1885] = {.lex_state = 113, .external_lex_state = 1}, - [1886] = {.lex_state = 113, .external_lex_state = 1}, - [1887] = {.lex_state = 113, .external_lex_state = 1}, - [1888] = {.lex_state = 113, .external_lex_state = 1}, - [1889] = {.lex_state = 113, .external_lex_state = 1}, - [1890] = {.lex_state = 113, .external_lex_state = 1}, - [1891] = {.lex_state = 113, .external_lex_state = 1}, - [1892] = {.lex_state = 113, .external_lex_state = 1}, - [1893] = {.lex_state = 113, .external_lex_state = 1}, - [1894] = {.lex_state = 113, .external_lex_state = 1}, - [1895] = {.lex_state = 113, .external_lex_state = 1}, - [1896] = {.lex_state = 113, .external_lex_state = 1}, - [1897] = {.lex_state = 113, .external_lex_state = 1}, - [1898] = {.lex_state = 113, .external_lex_state = 1}, - [1899] = {.lex_state = 113, .external_lex_state = 1}, - [1900] = {.lex_state = 113, .external_lex_state = 1}, - [1901] = {.lex_state = 113, .external_lex_state = 1}, - [1902] = {.lex_state = 113, .external_lex_state = 1}, - [1903] = {.lex_state = 113, .external_lex_state = 1}, - [1904] = {.lex_state = 113, .external_lex_state = 1}, - [1905] = {.lex_state = 113, .external_lex_state = 1}, - [1906] = {.lex_state = 113, .external_lex_state = 1}, - [1907] = {.lex_state = 113, .external_lex_state = 1}, - [1908] = {.lex_state = 113, .external_lex_state = 1}, - [1909] = {.lex_state = 113, .external_lex_state = 1}, - [1910] = {.lex_state = 113, .external_lex_state = 1}, - [1911] = {.lex_state = 113, .external_lex_state = 1}, - [1912] = {.lex_state = 113, .external_lex_state = 1}, - [1913] = {.lex_state = 113, .external_lex_state = 1}, - [1914] = {.lex_state = 113, .external_lex_state = 1}, - [1915] = {.lex_state = 113, .external_lex_state = 1}, - [1916] = {.lex_state = 113, .external_lex_state = 1}, - [1917] = {.lex_state = 113, .external_lex_state = 1}, - [1918] = {.lex_state = 113, .external_lex_state = 1}, - [1919] = {.lex_state = 113, .external_lex_state = 1}, - [1920] = {.lex_state = 113, .external_lex_state = 1}, - [1921] = {.lex_state = 113, .external_lex_state = 1}, - [1922] = {.lex_state = 113, .external_lex_state = 1}, - [1923] = {.lex_state = 113, .external_lex_state = 1}, - [1924] = {.lex_state = 113, .external_lex_state = 1}, - [1925] = {.lex_state = 113, .external_lex_state = 1}, - [1926] = {.lex_state = 113, .external_lex_state = 1}, - [1927] = {.lex_state = 113, .external_lex_state = 1}, - [1928] = {.lex_state = 113, .external_lex_state = 1}, - [1929] = {.lex_state = 113, .external_lex_state = 1}, - [1930] = {.lex_state = 113, .external_lex_state = 1}, - [1931] = {.lex_state = 113, .external_lex_state = 1}, - [1932] = {.lex_state = 113, .external_lex_state = 1}, - [1933] = {.lex_state = 113, .external_lex_state = 1}, - [1934] = {.lex_state = 113, .external_lex_state = 1}, - [1935] = {.lex_state = 113, .external_lex_state = 1}, - [1936] = {.lex_state = 113, .external_lex_state = 1}, - [1937] = {.lex_state = 113, .external_lex_state = 1}, - [1938] = {.lex_state = 113, .external_lex_state = 1}, - [1939] = {.lex_state = 113, .external_lex_state = 1}, - [1940] = {.lex_state = 113, .external_lex_state = 1}, - [1941] = {.lex_state = 113, .external_lex_state = 1}, - [1942] = {.lex_state = 113, .external_lex_state = 1}, - [1943] = {.lex_state = 113, .external_lex_state = 1}, - [1944] = {.lex_state = 113, .external_lex_state = 1}, - [1945] = {.lex_state = 113, .external_lex_state = 1}, - [1946] = {.lex_state = 126}, - [1947] = {.lex_state = 109, .external_lex_state = 1}, - [1948] = {.lex_state = 109, .external_lex_state = 1}, - [1949] = {.lex_state = 113, .external_lex_state = 1}, - [1950] = {.lex_state = 113, .external_lex_state = 1}, - [1951] = {.lex_state = 113, .external_lex_state = 1}, - [1952] = {.lex_state = 115, .external_lex_state = 1}, - [1953] = {.lex_state = 115, .external_lex_state = 1}, - [1954] = {.lex_state = 115, .external_lex_state = 1}, - [1955] = {.lex_state = 127}, - [1956] = {.lex_state = 127}, - [1957] = {.lex_state = 113, .external_lex_state = 1}, - [1958] = {.lex_state = 127}, - [1959] = {.lex_state = 113, .external_lex_state = 1}, - [1960] = {.lex_state = 113, .external_lex_state = 1}, - [1961] = {.lex_state = 127}, - [1962] = {.lex_state = 127}, - [1963] = {.lex_state = 127}, - [1964] = {.lex_state = 127}, - [1965] = {.lex_state = 113, .external_lex_state = 1}, - [1966] = {.lex_state = 149}, - [1967] = {.lex_state = 113, .external_lex_state = 1}, - [1968] = {.lex_state = 149}, - [1969] = {.lex_state = 149}, - [1970] = {.lex_state = 128}, - [1971] = {.lex_state = 128}, - [1972] = {.lex_state = 115, .external_lex_state = 1}, - [1973] = {.lex_state = 115, .external_lex_state = 1}, - [1974] = {.lex_state = 131}, - [1975] = {.lex_state = 131}, - [1976] = {.lex_state = 131}, - [1977] = {.lex_state = 131}, - [1978] = {.lex_state = 131}, - [1979] = {.lex_state = 131}, - [1980] = {.lex_state = 131}, - [1981] = {.lex_state = 129}, - [1982] = {.lex_state = 118, .external_lex_state = 1}, - [1983] = {.lex_state = 129}, - [1984] = {.lex_state = 129}, - [1985] = {.lex_state = 126}, - [1986] = {.lex_state = 118, .external_lex_state = 1}, - [1987] = {.lex_state = 129}, - [1988] = {.lex_state = 129}, - [1989] = {.lex_state = 118, .external_lex_state = 1}, - [1990] = {.lex_state = 129}, - [1991] = {.lex_state = 126}, - [1992] = {.lex_state = 127}, - [1993] = {.lex_state = 127}, - [1994] = {.lex_state = 131}, - [1995] = {.lex_state = 126}, - [1996] = {.lex_state = 131}, - [1997] = {.lex_state = 127}, - [1998] = {.lex_state = 127}, - [1999] = {.lex_state = 133}, - [2000] = {.lex_state = 127}, - [2001] = {.lex_state = 127}, - [2002] = {.lex_state = 115}, - [2003] = {.lex_state = 127}, - [2004] = {.lex_state = 133}, - [2005] = {.lex_state = 115}, - [2006] = {.lex_state = 115}, - [2007] = {.lex_state = 127}, - [2008] = {.lex_state = 127}, - [2009] = {.lex_state = 118, .external_lex_state = 1}, - [2010] = {.lex_state = 131}, - [2011] = {.lex_state = 115}, - [2012] = {.lex_state = 118, .external_lex_state = 1}, - [2013] = {.lex_state = 127}, - [2014] = {.lex_state = 127}, - [2015] = {.lex_state = 137}, - [2016] = {.lex_state = 129}, - [2017] = {.lex_state = 137}, - [2018] = {.lex_state = 138}, - [2019] = {.lex_state = 115}, - [2020] = {.lex_state = 127}, - [2021] = {.lex_state = 127}, - [2022] = {.lex_state = 132}, - [2023] = {.lex_state = 115}, - [2024] = {.lex_state = 137}, - [2025] = {.lex_state = 132}, - [2026] = {.lex_state = 115}, - [2027] = {.lex_state = 138}, - [2028] = {.lex_state = 132}, - [2029] = {.lex_state = 115}, - [2030] = {.lex_state = 127}, - [2031] = {.lex_state = 115}, - [2032] = {.lex_state = 132}, - [2033] = {.lex_state = 115}, - [2034] = {.lex_state = 132}, - [2035] = {.lex_state = 132}, - [2036] = {.lex_state = 115}, - [2037] = {.lex_state = 115}, - [2038] = {.lex_state = 127}, - [2039] = {.lex_state = 126}, - [2040] = {.lex_state = 131}, - [2041] = {.lex_state = 127}, - [2042] = {.lex_state = 126}, - [2043] = {.lex_state = 126}, - [2044] = {.lex_state = 126}, - [2045] = {.lex_state = 131}, - [2046] = {.lex_state = 115}, - [2047] = {.lex_state = 139}, - [2048] = {.lex_state = 115}, - [2049] = {.lex_state = 115}, - [2050] = {.lex_state = 115}, - [2051] = {.lex_state = 115}, - [2052] = {.lex_state = 131}, - [2053] = {.lex_state = 115}, - [2054] = {.lex_state = 115}, - [2055] = {.lex_state = 115}, - [2056] = {.lex_state = 115}, - [2057] = {.lex_state = 115}, - [2058] = {.lex_state = 115}, - [2059] = {.lex_state = 115}, - [2060] = {.lex_state = 115}, - [2061] = {.lex_state = 115}, - [2062] = {.lex_state = 115}, - [2063] = {.lex_state = 115}, - [2064] = {.lex_state = 115}, - [2065] = {.lex_state = 115}, - [2066] = {.lex_state = 139}, - [2067] = {.lex_state = 115}, - [2068] = {.lex_state = 115}, - [2069] = {.lex_state = 115}, - [2070] = {.lex_state = 115}, - [2071] = {.lex_state = 115}, - [2072] = {.lex_state = 115}, - [2073] = {.lex_state = 115}, - [2074] = {.lex_state = 115}, - [2075] = {.lex_state = 115}, - [2076] = {.lex_state = 149}, - [2077] = {.lex_state = 115}, - [2078] = {.lex_state = 115}, - [2079] = {.lex_state = 115}, - [2080] = {.lex_state = 115}, - [2081] = {.lex_state = 115}, - [2082] = {.lex_state = 149}, - [2083] = {.lex_state = 115}, - [2084] = {.lex_state = 115}, - [2085] = {.lex_state = 126}, - [2086] = {.lex_state = 139}, - [2087] = {.lex_state = 139}, - [2088] = {.lex_state = 115}, - [2089] = {.lex_state = 117}, - [2090] = {.lex_state = 139}, - [2091] = {.lex_state = 131}, - [2092] = {.lex_state = 115}, - [2093] = {.lex_state = 131}, - [2094] = {.lex_state = 115}, - [2095] = {.lex_state = 115}, - [2096] = {.lex_state = 139}, - [2097] = {.lex_state = 115}, - [2098] = {.lex_state = 115}, - [2099] = {.lex_state = 115}, - [2100] = {.lex_state = 115}, - [2101] = {.lex_state = 115}, - [2102] = {.lex_state = 115}, - [2103] = {.lex_state = 115}, - [2104] = {.lex_state = 115}, - [2105] = {.lex_state = 115}, - [2106] = {.lex_state = 127}, - [2107] = {.lex_state = 131}, - [2108] = {.lex_state = 115}, - [2109] = {.lex_state = 115}, - [2110] = {.lex_state = 131}, - [2111] = {.lex_state = 149}, - [2112] = {.lex_state = 115}, - [2113] = {.lex_state = 115}, - [2114] = {.lex_state = 115}, - [2115] = {.lex_state = 115}, - [2116] = {.lex_state = 115}, - [2117] = {.lex_state = 149}, - [2118] = {.lex_state = 149}, - [2119] = {.lex_state = 115}, - [2120] = {.lex_state = 115}, - [2121] = {.lex_state = 115}, - [2122] = {.lex_state = 115}, - [2123] = {.lex_state = 115}, - [2124] = {.lex_state = 139}, - [2125] = {.lex_state = 127}, - [2126] = {.lex_state = 115}, - [2127] = {.lex_state = 115}, - [2128] = {.lex_state = 149}, - [2129] = {.lex_state = 115}, - [2130] = {.lex_state = 127}, - [2131] = {.lex_state = 149}, - [2132] = {.lex_state = 115}, - [2133] = {.lex_state = 115}, - [2134] = {.lex_state = 149}, - [2135] = {.lex_state = 115}, - [2136] = {.lex_state = 132}, - [2137] = {.lex_state = 115}, - [2138] = {.lex_state = 115}, - [2139] = {.lex_state = 149}, - [2140] = {.lex_state = 127}, - [2141] = {.lex_state = 115}, - [2142] = {.lex_state = 115}, - [2143] = {.lex_state = 149}, - [2144] = {.lex_state = 115}, - [2145] = {.lex_state = 149}, - [2146] = {.lex_state = 115}, - [2147] = {.lex_state = 115}, - [2148] = {.lex_state = 115}, - [2149] = {.lex_state = 149}, - [2150] = {.lex_state = 115}, - [2151] = {.lex_state = 115}, - [2152] = {.lex_state = 115}, - [2153] = {.lex_state = 149}, - [2154] = {.lex_state = 131}, - [2155] = {.lex_state = 115}, - [2156] = {.lex_state = 115}, - [2157] = {.lex_state = 131}, - [2158] = {.lex_state = 115}, - [2159] = {.lex_state = 115}, - [2160] = {.lex_state = 149}, - [2161] = {.lex_state = 115}, - [2162] = {.lex_state = 127}, - [2163] = {.lex_state = 115}, - [2164] = {.lex_state = 115}, - [2165] = {.lex_state = 115}, - [2166] = {.lex_state = 115}, - [2167] = {.lex_state = 115}, - [2168] = {.lex_state = 115}, - [2169] = {.lex_state = 115}, - [2170] = {.lex_state = 127}, - [2171] = {.lex_state = 127}, - [2172] = {.lex_state = 115}, - [2173] = {.lex_state = 126}, - [2174] = {.lex_state = 126}, - [2175] = {.lex_state = 126}, - [2176] = {.lex_state = 115}, - [2177] = {.lex_state = 126}, - [2178] = {.lex_state = 115}, - [2179] = {.lex_state = 115}, - [2180] = {.lex_state = 115}, - [2181] = {.lex_state = 126}, - [2182] = {.lex_state = 115}, - [2183] = {.lex_state = 115}, - [2184] = {.lex_state = 149}, - [2185] = {.lex_state = 149}, - [2186] = {.lex_state = 115}, - [2187] = {.lex_state = 115}, - [2188] = {.lex_state = 115}, - [2189] = {.lex_state = 115}, - [2190] = {.lex_state = 115}, - [2191] = {.lex_state = 115}, - [2192] = {.lex_state = 149}, - [2193] = {.lex_state = 115}, - [2194] = {.lex_state = 115}, - [2195] = {.lex_state = 149}, - [2196] = {.lex_state = 127}, - [2197] = {.lex_state = 131}, - [2198] = {.lex_state = 149}, - [2199] = {.lex_state = 115}, - [2200] = {.lex_state = 115}, - [2201] = {.lex_state = 149}, - [2202] = {.lex_state = 130}, - [2203] = {.lex_state = 126}, - [2204] = {.lex_state = 115}, - [2205] = {.lex_state = 115}, - [2206] = {.lex_state = 115}, - [2207] = {.lex_state = 115}, - [2208] = {.lex_state = 131}, - [2209] = {.lex_state = 115}, - [2210] = {.lex_state = 115}, - [2211] = {.lex_state = 115}, - [2212] = {.lex_state = 115}, - [2213] = {.lex_state = 115}, - [2214] = {.lex_state = 115}, - [2215] = {.lex_state = 127}, - [2216] = {.lex_state = 149}, - [2217] = {.lex_state = 115}, - [2218] = {.lex_state = 115}, - [2219] = {.lex_state = 115}, - [2220] = {.lex_state = 118}, - [2221] = {.lex_state = 118}, - [2222] = {.lex_state = 115}, - [2223] = {.lex_state = 115}, - [2224] = {.lex_state = 149}, - [2225] = {.lex_state = 115}, - [2226] = {.lex_state = 115}, - [2227] = {.lex_state = 115}, - [2228] = {.lex_state = 149}, - [2229] = {.lex_state = 126}, - [2230] = {.lex_state = 126}, - [2231] = {.lex_state = 131}, - [2232] = {.lex_state = 107}, - [2233] = {.lex_state = 126}, - [2234] = {.lex_state = 126}, - [2235] = {.lex_state = 136}, - [2236] = {.lex_state = 136}, - [2237] = {.lex_state = 136}, - [2238] = {.lex_state = 136}, - [2239] = {.lex_state = 126}, - [2240] = {.lex_state = 107}, - [2241] = {.lex_state = 131}, - [2242] = {.lex_state = 131}, - [2243] = {.lex_state = 131}, - [2244] = {.lex_state = 136}, - [2245] = {.lex_state = 120, .external_lex_state = 1}, - [2246] = {.lex_state = 136}, - [2247] = {.lex_state = 107}, - [2248] = {.lex_state = 127}, - [2249] = {.lex_state = 131}, - [2250] = {.lex_state = 136}, - [2251] = {.lex_state = 131}, - [2252] = {.lex_state = 126}, - [2253] = {.lex_state = 131}, - [2254] = {.lex_state = 136}, - [2255] = {.lex_state = 141}, - [2256] = {.lex_state = 131}, - [2257] = {.lex_state = 120, .external_lex_state = 1}, - [2258] = {.lex_state = 107}, - [2259] = {.lex_state = 131}, - [2260] = {.lex_state = 136}, - [2261] = {.lex_state = 120, .external_lex_state = 1}, - [2262] = {.lex_state = 136}, - [2263] = {.lex_state = 136}, - [2264] = {.lex_state = 136}, - [2265] = {.lex_state = 141}, - [2266] = {.lex_state = 115}, - [2267] = {.lex_state = 115}, - [2268] = {.lex_state = 142}, - [2269] = {.lex_state = 142}, - [2270] = {.lex_state = 142}, - [2271] = {.lex_state = 142}, - [2272] = {.lex_state = 142}, - [2273] = {.lex_state = 131}, - [2274] = {.lex_state = 115}, - [2275] = {.lex_state = 142}, - [2276] = {.lex_state = 131}, - [2277] = {.lex_state = 127}, - [2278] = {.lex_state = 131}, - [2279] = {.lex_state = 131}, - [2280] = {.lex_state = 131}, - [2281] = {.lex_state = 131}, - [2282] = {.lex_state = 134}, - [2283] = {.lex_state = 131}, - [2284] = {.lex_state = 131}, - [2285] = {.lex_state = 131}, - [2286] = {.lex_state = 131}, - [2287] = {.lex_state = 131}, - [2288] = {.lex_state = 131}, - [2289] = {.lex_state = 131}, - [2290] = {.lex_state = 118}, - [2291] = {.lex_state = 131}, - [2292] = {.lex_state = 131}, - [2293] = {.lex_state = 149}, - [2294] = {.lex_state = 131}, - [2295] = {.lex_state = 120, .external_lex_state = 1}, - [2296] = {.lex_state = 131}, - [2297] = {.lex_state = 131}, - [2298] = {.lex_state = 131}, - [2299] = {.lex_state = 131}, - [2300] = {.lex_state = 131}, - [2301] = {.lex_state = 131}, - [2302] = {.lex_state = 131}, - [2303] = {.lex_state = 131}, - [2304] = {.lex_state = 131}, - [2305] = {.lex_state = 131}, - [2306] = {.lex_state = 149}, - [2307] = {.lex_state = 131}, - [2308] = {.lex_state = 131}, - [2309] = {.lex_state = 131}, - [2310] = {.lex_state = 131}, - [2311] = {.lex_state = 131}, - [2312] = {.lex_state = 131}, - [2313] = {.lex_state = 131}, - [2314] = {.lex_state = 131}, - [2315] = {.lex_state = 131}, - [2316] = {.lex_state = 131}, - [2317] = {.lex_state = 131}, - [2318] = {.lex_state = 131}, - [2319] = {.lex_state = 131}, - [2320] = {.lex_state = 131}, - [2321] = {.lex_state = 131}, - [2322] = {.lex_state = 131}, - [2323] = {.lex_state = 131}, - [2324] = {.lex_state = 131}, - [2325] = {.lex_state = 131}, - [2326] = {.lex_state = 131}, - [2327] = {.lex_state = 131}, - [2328] = {.lex_state = 131}, - [2329] = {.lex_state = 131}, - [2330] = {.lex_state = 131}, - [2331] = {.lex_state = 131}, - [2332] = {.lex_state = 131}, - [2333] = {.lex_state = 131}, - [2334] = {.lex_state = 120, .external_lex_state = 1}, - [2335] = {.lex_state = 131}, - [2336] = {.lex_state = 131}, - [2337] = {.lex_state = 118}, - [2338] = {.lex_state = 131}, - [2339] = {.lex_state = 131}, - [2340] = {.lex_state = 131}, - [2341] = {.lex_state = 131}, - [2342] = {.lex_state = 131}, - [2343] = {.lex_state = 131}, - [2344] = {.lex_state = 131}, - [2345] = {.lex_state = 131}, - [2346] = {.lex_state = 131}, - [2347] = {.lex_state = 131}, - [2348] = {.lex_state = 131}, - [2349] = {.lex_state = 131}, - [2350] = {.lex_state = 131}, - [2351] = {.lex_state = 131}, - [2352] = {.lex_state = 131}, - [2353] = {.lex_state = 131}, - [2354] = {.lex_state = 136}, - [2355] = {.lex_state = 131}, - [2356] = {.lex_state = 131}, - [2357] = {.lex_state = 131}, - [2358] = {.lex_state = 131}, - [2359] = {.lex_state = 131}, - [2360] = {.lex_state = 131}, - [2361] = {.lex_state = 131}, - [2362] = {.lex_state = 131}, - [2363] = {.lex_state = 115}, - [2364] = {.lex_state = 131}, - [2365] = {.lex_state = 139}, - [2366] = {.lex_state = 139}, - [2367] = {.lex_state = 131}, - [2368] = {.lex_state = 131}, - [2369] = {.lex_state = 131}, - [2370] = {.lex_state = 131}, - [2371] = {.lex_state = 140}, - [2372] = {.lex_state = 131}, - [2373] = {.lex_state = 131}, - [2374] = {.lex_state = 139}, - [2375] = {.lex_state = 131}, - [2376] = {.lex_state = 131}, - [2377] = {.lex_state = 139}, - [2378] = {.lex_state = 115}, - [2379] = {.lex_state = 139}, - [2380] = {.lex_state = 131}, - [2381] = {.lex_state = 140}, - [2382] = {.lex_state = 139}, - [2383] = {.lex_state = 131}, - [2384] = {.lex_state = 140}, - [2385] = {.lex_state = 139}, - [2386] = {.lex_state = 139}, - [2387] = {.lex_state = 139}, - [2388] = {.lex_state = 139}, - [2389] = {.lex_state = 131}, - [2390] = {.lex_state = 131}, - [2391] = {.lex_state = 131}, - [2392] = {.lex_state = 139}, - [2393] = {.lex_state = 139}, - [2394] = {.lex_state = 131}, - [2395] = {.lex_state = 115}, - [2396] = {.lex_state = 139}, - [2397] = {.lex_state = 131}, - [2398] = {.lex_state = 131}, - [2399] = {.lex_state = 131}, - [2400] = {.lex_state = 139}, - [2401] = {.lex_state = 131}, - [2402] = {.lex_state = 139}, - [2403] = {.lex_state = 115}, - [2404] = {.lex_state = 115}, - [2405] = {.lex_state = 115}, - [2406] = {.lex_state = 131}, - [2407] = {.lex_state = 131}, - [2408] = {.lex_state = 139}, - [2409] = {.lex_state = 139}, - [2410] = {.lex_state = 131}, - [2411] = {.lex_state = 115}, - [2412] = {.lex_state = 115}, - [2413] = {.lex_state = 115}, - [2414] = {.lex_state = 115}, - [2415] = {.lex_state = 131}, - [2416] = {.lex_state = 115}, - [2417] = {.lex_state = 139}, - [2418] = {.lex_state = 131}, - [2419] = {.lex_state = 131}, - [2420] = {.lex_state = 115}, - [2421] = {.lex_state = 131}, - [2422] = {.lex_state = 139}, - [2423] = {.lex_state = 139}, - [2424] = {.lex_state = 140}, - [2425] = {.lex_state = 140}, - [2426] = {.lex_state = 131}, - [2427] = {.lex_state = 131}, - [2428] = {.lex_state = 131}, - [2429] = {.lex_state = 115}, - [2430] = {.lex_state = 139}, - [2431] = {.lex_state = 115}, - [2432] = {.lex_state = 131}, - [2433] = {.lex_state = 139}, - [2434] = {.lex_state = 115}, - [2435] = {.lex_state = 140}, - [2436] = {.lex_state = 140}, - [2437] = {.lex_state = 140}, - [2438] = {.lex_state = 139}, - [2439] = {.lex_state = 139}, - [2440] = {.lex_state = 131}, - [2441] = {.lex_state = 139}, - [2442] = {.lex_state = 131}, - [2443] = {.lex_state = 139}, - [2444] = {.lex_state = 139}, - [2445] = {.lex_state = 131}, - [2446] = {.lex_state = 139}, - [2447] = {.lex_state = 139}, - [2448] = {.lex_state = 131}, - [2449] = {.lex_state = 131}, - [2450] = {.lex_state = 140}, - [2451] = {.lex_state = 131}, - [2452] = {.lex_state = 131}, - [2453] = {.lex_state = 139}, - [2454] = {.lex_state = 139}, - [2455] = {.lex_state = 139}, - [2456] = {.lex_state = 115}, - [2457] = {.lex_state = 115}, - [2458] = {.lex_state = 131}, - [2459] = {.lex_state = 139}, - [2460] = {.lex_state = 131}, - [2461] = {.lex_state = 131}, - [2462] = {.lex_state = 131}, - [2463] = {.lex_state = 115}, - [2464] = {.lex_state = 139}, - [2465] = {.lex_state = 139}, - [2466] = {.lex_state = 115}, - [2467] = {.lex_state = 139}, - [2468] = {.lex_state = 131}, - [2469] = {.lex_state = 139}, - [2470] = {.lex_state = 131}, - [2471] = {.lex_state = 140}, - [2472] = {.lex_state = 139}, - [2473] = {.lex_state = 140}, - [2474] = {.lex_state = 115}, - [2475] = {.lex_state = 139}, - [2476] = {.lex_state = 139}, - [2477] = {.lex_state = 139}, - [2478] = {.lex_state = 139}, - [2479] = {.lex_state = 131}, - [2480] = {.lex_state = 115}, - [2481] = {.lex_state = 139}, - [2482] = {.lex_state = 140}, - [2483] = {.lex_state = 115}, - [2484] = {.lex_state = 139}, - [2485] = {.lex_state = 131}, - [2486] = {.lex_state = 131}, - [2487] = {.lex_state = 139}, - [2488] = {.lex_state = 139}, - [2489] = {.lex_state = 139}, - [2490] = {.lex_state = 115}, - [2491] = {.lex_state = 139}, - [2492] = {.lex_state = 131}, - [2493] = {.lex_state = 139}, - [2494] = {.lex_state = 115}, - [2495] = {.lex_state = 115}, - [2496] = {.lex_state = 142}, - [2497] = {.lex_state = 122, .external_lex_state = 1}, - [2498] = {.lex_state = 149}, - [2499] = {.lex_state = 122, .external_lex_state = 1}, - [2500] = {.lex_state = 115}, - [2501] = {.lex_state = 115}, - [2502] = {.lex_state = 122, .external_lex_state = 1}, - [2503] = {.lex_state = 115}, - [2504] = {.lex_state = 115}, - [2505] = {.lex_state = 115}, - [2506] = {.lex_state = 115}, - [2507] = {.lex_state = 115}, - [2508] = {.lex_state = 147}, - [2509] = {.lex_state = 135}, - [2510] = {.lex_state = 147}, - [2511] = {.lex_state = 149}, - [2512] = {.lex_state = 147}, - [2513] = {.lex_state = 147}, - [2514] = {.lex_state = 147}, - [2515] = {.lex_state = 136}, - [2516] = {.lex_state = 147}, - [2517] = {.lex_state = 147}, - [2518] = {.lex_state = 147}, - [2519] = {.lex_state = 147}, - [2520] = {.lex_state = 147}, - [2521] = {.lex_state = 136}, - [2522] = {.lex_state = 147}, - [2523] = {.lex_state = 140}, - [2524] = {.lex_state = 147}, - [2525] = {.lex_state = 147}, - [2526] = {.lex_state = 147}, - [2527] = {.lex_state = 140}, - [2528] = {.lex_state = 147}, - [2529] = {.lex_state = 147}, - [2530] = {.lex_state = 149}, - [2531] = {.lex_state = 147}, - [2532] = {.lex_state = 147}, - [2533] = {.lex_state = 147}, - [2534] = {.lex_state = 147}, - [2535] = {.lex_state = 147}, - [2536] = {.lex_state = 147}, - [2537] = {.lex_state = 122, .external_lex_state = 1}, - [2538] = {.lex_state = 149}, - [2539] = {.lex_state = 147}, - [2540] = {.lex_state = 147}, - [2541] = {.lex_state = 147}, - [2542] = {.lex_state = 122, .external_lex_state = 1}, - [2543] = {.lex_state = 149}, - [2544] = {.lex_state = 147}, - [2545] = {.lex_state = 147}, - [2546] = {.lex_state = 136}, - [2547] = {.lex_state = 147}, - [2548] = {.lex_state = 147}, - [2549] = {.lex_state = 147}, - [2550] = {.lex_state = 142}, - [2551] = {.lex_state = 149}, - [2552] = {.lex_state = 142}, - [2553] = {.lex_state = 142}, - [2554] = {.lex_state = 142}, - [2555] = {.lex_state = 149}, - [2556] = {.lex_state = 142}, - [2557] = {.lex_state = 149}, - [2558] = {.lex_state = 142}, - [2559] = {.lex_state = 139}, - [2560] = {.lex_state = 142}, - [2561] = {.lex_state = 147}, - [2562] = {.lex_state = 149}, - [2563] = {.lex_state = 139}, - [2564] = {.lex_state = 138}, - [2565] = {.lex_state = 142}, - [2566] = {.lex_state = 142}, - [2567] = {.lex_state = 142}, - [2568] = {.lex_state = 147}, - [2569] = {.lex_state = 149}, - [2570] = {.lex_state = 147}, - [2571] = {.lex_state = 142}, - [2572] = {.lex_state = 142}, - [2573] = {.lex_state = 142}, - [2574] = {.lex_state = 142}, - [2575] = {.lex_state = 142}, - [2576] = {.lex_state = 136}, - [2577] = {.lex_state = 149}, - [2578] = {.lex_state = 142}, - [2579] = {.lex_state = 149}, - [2580] = {.lex_state = 149}, - [2581] = {.lex_state = 149}, - [2582] = {.lex_state = 142}, - [2583] = {.lex_state = 142}, - [2584] = {.lex_state = 147}, - [2585] = {.lex_state = 142}, - [2586] = {.lex_state = 142}, - [2587] = {.lex_state = 149}, - [2588] = {.lex_state = 142}, - [2589] = {.lex_state = 142}, - [2590] = {.lex_state = 142}, - [2591] = {.lex_state = 142}, - [2592] = {.lex_state = 142}, - [2593] = {.lex_state = 149}, - [2594] = {.lex_state = 136}, - [2595] = {.lex_state = 142}, - [2596] = {.lex_state = 142}, - [2597] = {.lex_state = 142}, - [2598] = {.lex_state = 142}, - [2599] = {.lex_state = 149}, - [2600] = {.lex_state = 138}, - [2601] = {.lex_state = 142}, - [2602] = {.lex_state = 142}, - [2603] = {.lex_state = 142}, - [2604] = {.lex_state = 142}, - [2605] = {.lex_state = 142}, - [2606] = {.lex_state = 142}, - [2607] = {.lex_state = 149}, - [2608] = {.lex_state = 149}, - [2609] = {.lex_state = 147}, - [2610] = {.lex_state = 149}, - [2611] = {.lex_state = 142}, - [2612] = {.lex_state = 142}, - [2613] = {.lex_state = 142}, - [2614] = {.lex_state = 142}, - [2615] = {.lex_state = 147}, - [2616] = {.lex_state = 142}, - [2617] = {.lex_state = 142}, - [2618] = {.lex_state = 142}, - [2619] = {.lex_state = 149}, - [2620] = {.lex_state = 142}, - [2621] = {.lex_state = 142}, - [2622] = {.lex_state = 147}, - [2623] = {.lex_state = 142}, - [2624] = {.lex_state = 142}, - [2625] = {.lex_state = 142}, - [2626] = {.lex_state = 142}, - [2627] = {.lex_state = 142}, - [2628] = {.lex_state = 140}, - [2629] = {.lex_state = 140}, - [2630] = {.lex_state = 138}, - [2631] = {.lex_state = 138}, - [2632] = {.lex_state = 137}, - [2633] = {.lex_state = 137}, - [2634] = {.lex_state = 136}, - [2635] = {.lex_state = 138}, - [2636] = {.lex_state = 137}, - [2637] = {.lex_state = 137}, - [2638] = {.lex_state = 137}, - [2639] = {.lex_state = 137}, - [2640] = {.lex_state = 138}, - [2641] = {.lex_state = 120}, - [2642] = {.lex_state = 135}, - [2643] = {.lex_state = 135}, - [2644] = {.lex_state = 137}, - [2645] = {.lex_state = 138}, - [2646] = {.lex_state = 120}, - [2647] = {.lex_state = 135}, - [2648] = {.lex_state = 135}, - [2649] = {.lex_state = 137}, - [2650] = {.lex_state = 135}, - [2651] = {.lex_state = 135}, - [2652] = {.lex_state = 138}, - [2653] = {.lex_state = 138}, - [2654] = {.lex_state = 135}, - [2655] = {.lex_state = 135}, - [2656] = {.lex_state = 138}, - [2657] = {.lex_state = 138}, - [2658] = {.lex_state = 138}, - [2659] = {.lex_state = 138}, - [2660] = {.lex_state = 138}, - [2661] = {.lex_state = 147}, - [2662] = {.lex_state = 138}, - [2663] = {.lex_state = 141}, - [2664] = {.lex_state = 138}, - [2665] = {.lex_state = 138}, - [2666] = {.lex_state = 138}, - [2667] = {.lex_state = 138}, - [2668] = {.lex_state = 138}, - [2669] = {.lex_state = 141}, - [2670] = {.lex_state = 138}, - [2671] = {.lex_state = 138}, - [2672] = {.lex_state = 138}, - [2673] = {.lex_state = 141}, - [2674] = {.lex_state = 138}, - [2675] = {.lex_state = 138}, - [2676] = {.lex_state = 138}, - [2677] = {.lex_state = 138}, - [2678] = {.lex_state = 138}, - [2679] = {.lex_state = 141}, - [2680] = {.lex_state = 138}, - [2681] = {.lex_state = 138}, - [2682] = {.lex_state = 138}, - [2683] = {.lex_state = 138}, - [2684] = {.lex_state = 138}, - [2685] = {.lex_state = 138}, - [2686] = {.lex_state = 138}, - [2687] = {.lex_state = 138}, - [2688] = {.lex_state = 138}, - [2689] = {.lex_state = 138}, - [2690] = {.lex_state = 138}, - [2691] = {.lex_state = 141}, - [2692] = {.lex_state = 138}, - [2693] = {.lex_state = 141}, - [2694] = {.lex_state = 151}, - [2695] = {.lex_state = 141}, - [2696] = {.lex_state = 137}, - [2697] = {.lex_state = 137}, - [2698] = {.lex_state = 141}, - [2699] = {.lex_state = 151}, - [2700] = {.lex_state = 141}, - [2701] = {.lex_state = 137}, - [2702] = {.lex_state = 137}, - [2703] = {.lex_state = 124}, - [2704] = {.lex_state = 137}, - [2705] = {.lex_state = 151}, - [2706] = {.lex_state = 137}, - [2707] = {.lex_state = 137}, - [2708] = {.lex_state = 137}, - [2709] = {.lex_state = 151}, - [2710] = {.lex_state = 140}, - [2711] = {.lex_state = 137}, - [2712] = {.lex_state = 137}, - [2713] = {.lex_state = 141}, - [2714] = {.lex_state = 137}, - [2715] = {.lex_state = 137}, - [2716] = {.lex_state = 137}, - [2717] = {.lex_state = 140}, - [2718] = {.lex_state = 137}, - [2719] = {.lex_state = 137}, - [2720] = {.lex_state = 137}, - [2721] = {.lex_state = 137}, - [2722] = {.lex_state = 148}, - [2723] = {.lex_state = 148}, - [2724] = {.lex_state = 138}, - [2725] = {.lex_state = 148}, - [2726] = {.lex_state = 147}, - [2727] = {.lex_state = 147}, - [2728] = {.lex_state = 138}, - [2729] = {.lex_state = 147}, - [2730] = {.lex_state = 141}, - [2731] = {.lex_state = 147}, - [2732] = {.lex_state = 147}, - [2733] = {.lex_state = 137}, - [2734] = {.lex_state = 137}, - [2735] = {.lex_state = 137}, - [2736] = {.lex_state = 147}, - [2737] = {.lex_state = 138}, - [2738] = {.lex_state = 137}, - [2739] = {.lex_state = 137}, - [2740] = {.lex_state = 138}, - [2741] = {.lex_state = 148}, - [2742] = {.lex_state = 140}, - [2743] = {.lex_state = 148}, - [2744] = {.lex_state = 147}, - [2745] = {.lex_state = 147}, - [2746] = {.lex_state = 141}, - [2747] = {.lex_state = 148}, - [2748] = {.lex_state = 138}, - [2749] = {.lex_state = 141}, - [2750] = {.lex_state = 147}, - [2751] = {.lex_state = 148}, - [2752] = {.lex_state = 147}, - [2753] = {.lex_state = 141}, - [2754] = {.lex_state = 147}, - [2755] = {.lex_state = 141}, - [2756] = {.lex_state = 148}, - [2757] = {.lex_state = 141}, - [2758] = {.lex_state = 137}, - [2759] = {.lex_state = 141}, - [2760] = {.lex_state = 141}, - [2761] = {.lex_state = 137}, - [2762] = {.lex_state = 147}, - [2763] = {.lex_state = 137}, - [2764] = {.lex_state = 141}, - [2765] = {.lex_state = 137}, - [2766] = {.lex_state = 141}, - [2767] = {.lex_state = 147}, - [2768] = {.lex_state = 137}, - [2769] = {.lex_state = 147}, - [2770] = {.lex_state = 141}, - [2771] = {.lex_state = 137}, - [2772] = {.lex_state = 137}, - [2773] = {.lex_state = 137}, - [2774] = {.lex_state = 137}, - [2775] = {.lex_state = 141}, - [2776] = {.lex_state = 137}, - [2777] = {.lex_state = 141}, - [2778] = {.lex_state = 137}, - [2779] = {.lex_state = 137}, - [2780] = {.lex_state = 137}, - [2781] = {.lex_state = 137}, - [2782] = {.lex_state = 137}, - [2783] = {.lex_state = 138}, - [2784] = {.lex_state = 138}, - [2785] = {.lex_state = 151}, - [2786] = {.lex_state = 141}, - [2787] = {.lex_state = 137}, - [2788] = {.lex_state = 141}, - [2789] = {.lex_state = 138}, - [2790] = {.lex_state = 137}, - [2791] = {.lex_state = 141}, - [2792] = {.lex_state = 135}, - [2793] = {.lex_state = 138}, - [2794] = {.lex_state = 137}, - [2795] = {.lex_state = 137}, - [2796] = {.lex_state = 137}, - [2797] = {.lex_state = 137}, - [2798] = {.lex_state = 141}, - [2799] = {.lex_state = 137}, - [2800] = {.lex_state = 141}, - [2801] = {.lex_state = 138}, - [2802] = {.lex_state = 122}, - [2803] = {.lex_state = 137}, - [2804] = {.lex_state = 137}, - [2805] = {.lex_state = 137}, - [2806] = {.lex_state = 137}, - [2807] = {.lex_state = 137}, - [2808] = {.lex_state = 137}, - [2809] = {.lex_state = 137}, - [2810] = {.lex_state = 137}, - [2811] = {.lex_state = 137}, - [2812] = {.lex_state = 151}, - [2813] = {.lex_state = 137}, - [2814] = {.lex_state = 135}, - [2815] = {.lex_state = 137}, - [2816] = {.lex_state = 137}, - [2817] = {.lex_state = 137}, - [2818] = {.lex_state = 137}, - [2819] = {.lex_state = 137}, - [2820] = {.lex_state = 137}, - [2821] = {.lex_state = 137}, - [2822] = {.lex_state = 138}, - [2823] = {.lex_state = 137}, - [2824] = {.lex_state = 137}, - [2825] = {.lex_state = 141}, - [2826] = {.lex_state = 137}, - [2827] = {.lex_state = 137}, - [2828] = {.lex_state = 138}, - [2829] = {.lex_state = 141}, - [2830] = {.lex_state = 137}, - [2831] = {.lex_state = 137}, - [2832] = {.lex_state = 137}, - [2833] = {.lex_state = 137}, - [2834] = {.lex_state = 137}, - [2835] = {.lex_state = 137}, - [2836] = {.lex_state = 137}, - [2837] = {.lex_state = 137}, - [2838] = {.lex_state = 137}, - [2839] = {.lex_state = 137}, - [2840] = {.lex_state = 137}, - [2841] = {.lex_state = 137}, - [2842] = {.lex_state = 141}, - [2843] = {.lex_state = 137}, - [2844] = {.lex_state = 137}, - [2845] = {.lex_state = 137}, - [2846] = {.lex_state = 137}, - [2847] = {.lex_state = 138}, - [2848] = {.lex_state = 137}, - [2849] = {.lex_state = 137}, - [2850] = {.lex_state = 137}, - [2851] = {.lex_state = 137}, - [2852] = {.lex_state = 137}, - [2853] = {.lex_state = 138}, - [2854] = {.lex_state = 137}, - [2855] = {.lex_state = 141}, - [2856] = {.lex_state = 138}, - [2857] = {.lex_state = 137}, - [2858] = {.lex_state = 137}, - [2859] = {.lex_state = 137}, - [2860] = {.lex_state = 138}, - [2861] = {.lex_state = 137}, - [2862] = {.lex_state = 137}, - [2863] = {.lex_state = 137}, - [2864] = {.lex_state = 137}, - [2865] = {.lex_state = 137}, - [2866] = {.lex_state = 141}, - [2867] = {.lex_state = 137}, - [2868] = {.lex_state = 137}, - [2869] = {.lex_state = 137}, - [2870] = {.lex_state = 137}, - [2871] = {.lex_state = 141}, - [2872] = {.lex_state = 137}, - [2873] = {.lex_state = 137}, - [2874] = {.lex_state = 137}, - [2875] = {.lex_state = 138}, - [2876] = {.lex_state = 137}, - [2877] = {.lex_state = 138}, - [2878] = {.lex_state = 141}, - [2879] = {.lex_state = 137}, - [2880] = {.lex_state = 137}, - [2881] = {.lex_state = 137}, - [2882] = {.lex_state = 141}, - [2883] = {.lex_state = 137}, - [2884] = {.lex_state = 137}, - [2885] = {.lex_state = 137}, - [2886] = {.lex_state = 138}, - [2887] = {.lex_state = 122}, - [2888] = {.lex_state = 137}, - [2889] = {.lex_state = 137}, - [2890] = {.lex_state = 141}, - [2891] = {.lex_state = 135}, - [2892] = {.lex_state = 141}, - [2893] = {.lex_state = 141}, - [2894] = {.lex_state = 138}, - [2895] = {.lex_state = 137}, - [2896] = {.lex_state = 141}, - [2897] = {.lex_state = 137}, - [2898] = {.lex_state = 137}, - [2899] = {.lex_state = 135}, - [2900] = {.lex_state = 150}, - [2901] = {.lex_state = 141}, - [2902] = {.lex_state = 137}, - [2903] = {.lex_state = 138}, - [2904] = {.lex_state = 138}, - [2905] = {.lex_state = 137}, - [2906] = {.lex_state = 141}, - [2907] = {.lex_state = 141}, - [2908] = {.lex_state = 137}, - [2909] = {.lex_state = 137}, - [2910] = {.lex_state = 151}, - [2911] = {.lex_state = 137}, - [2912] = {.lex_state = 138}, - [2913] = {.lex_state = 137}, - [2914] = {.lex_state = 137}, - [2915] = {.lex_state = 141}, - [2916] = {.lex_state = 138}, - [2917] = {.lex_state = 137}, - [2918] = {.lex_state = 137}, - [2919] = {.lex_state = 137}, - [2920] = {.lex_state = 141}, - [2921] = {.lex_state = 141}, - [2922] = {.lex_state = 141}, - [2923] = {.lex_state = 137}, - [2924] = {.lex_state = 141}, - [2925] = {.lex_state = 138}, - [2926] = {.lex_state = 147}, - [2927] = {.lex_state = 137}, - [2928] = {.lex_state = 147}, - [2929] = {.lex_state = 147}, - [2930] = {.lex_state = 147}, - [2931] = {.lex_state = 147}, - [2932] = {.lex_state = 138}, - [2933] = {.lex_state = 147}, - [2934] = {.lex_state = 147}, - [2935] = {.lex_state = 147}, - [2936] = {.lex_state = 147}, - [2937] = {.lex_state = 141}, - [2938] = {.lex_state = 137}, - [2939] = {.lex_state = 147}, - [2940] = {.lex_state = 138}, - [2941] = {.lex_state = 149}, - [2942] = {.lex_state = 137}, - [2943] = {.lex_state = 137}, - [2944] = {.lex_state = 149}, - [2945] = {.lex_state = 138}, - [2946] = {.lex_state = 137}, - [2947] = {.lex_state = 137}, - [2948] = {.lex_state = 141}, - [2949] = {.lex_state = 141}, - [2950] = {.lex_state = 137}, - [2951] = {.lex_state = 137}, - [2952] = {.lex_state = 137}, - [2953] = {.lex_state = 151}, - [2954] = {.lex_state = 137}, - [2955] = {.lex_state = 149}, - [2956] = {.lex_state = 149}, - [2957] = {.lex_state = 138}, - [2958] = {.lex_state = 147}, - [2959] = {.lex_state = 137}, - [2960] = {.lex_state = 147}, - [2961] = {.lex_state = 147}, - [2962] = {.lex_state = 147}, - [2963] = {.lex_state = 137}, - [2964] = {.lex_state = 147}, - [2965] = {.lex_state = 141}, - [2966] = {.lex_state = 141}, - [2967] = {.lex_state = 141}, - [2968] = {.lex_state = 149}, - [2969] = {.lex_state = 141}, - [2970] = {.lex_state = 141}, - [2971] = {.lex_state = 149}, - [2972] = {.lex_state = 149}, - [2973] = {.lex_state = 141}, - [2974] = {.lex_state = 138}, - [2975] = {.lex_state = 147}, - [2976] = {.lex_state = 137}, - [2977] = {.lex_state = 138}, - [2978] = {.lex_state = 147}, - [2979] = {.lex_state = 147}, - [2980] = {.lex_state = 147}, - [2981] = {.lex_state = 138}, - [2982] = {.lex_state = 137}, - [2983] = {.lex_state = 147}, - [2984] = {.lex_state = 147}, - [2985] = {.lex_state = 137}, - [2986] = {.lex_state = 138}, - [2987] = {.lex_state = 149}, - [2988] = {.lex_state = 138}, - [2989] = {.lex_state = 148}, - [2990] = {.lex_state = 137}, - [2991] = {.lex_state = 141}, - [2992] = {.lex_state = 138}, - [2993] = {.lex_state = 138}, - [2994] = {.lex_state = 137}, - [2995] = {.lex_state = 138}, - [2996] = {.lex_state = 137}, - [2997] = {.lex_state = 147}, - [2998] = {.lex_state = 137}, - [2999] = {.lex_state = 137}, - [3000] = {.lex_state = 138}, - [3001] = {.lex_state = 138}, - [3002] = {.lex_state = 138}, - [3003] = {.lex_state = 149}, - [3004] = {.lex_state = 137}, - [3005] = {.lex_state = 138}, - [3006] = {.lex_state = 137}, - [3007] = {.lex_state = 141}, - [3008] = {.lex_state = 138}, - [3009] = {.lex_state = 137}, - [3010] = {.lex_state = 137}, - [3011] = {.lex_state = 147}, - [3012] = {.lex_state = 138}, - [3013] = {.lex_state = 149}, - [3014] = {.lex_state = 147}, - [3015] = {.lex_state = 149}, - [3016] = {.lex_state = 138}, - [3017] = {.lex_state = 147}, - [3018] = {.lex_state = 141}, - [3019] = {.lex_state = 141}, - [3020] = {.lex_state = 149}, - [3021] = {.lex_state = 138}, - [3022] = {.lex_state = 148}, - [3023] = {.lex_state = 147}, - [3024] = {.lex_state = 137}, - [3025] = {.lex_state = 138}, - [3026] = {.lex_state = 138}, - [3027] = {.lex_state = 138}, - [3028] = {.lex_state = 137}, - [3029] = {.lex_state = 138}, - [3030] = {.lex_state = 138}, - [3031] = {.lex_state = 137}, - [3032] = {.lex_state = 137}, - [3033] = {.lex_state = 138}, - [3034] = {.lex_state = 138}, - [3035] = {.lex_state = 138}, - [3036] = {.lex_state = 147}, - [3037] = {.lex_state = 137}, - [3038] = {.lex_state = 137}, - [3039] = {.lex_state = 147}, - [3040] = {.lex_state = 148}, - [3041] = {.lex_state = 138}, - [3042] = {.lex_state = 138}, - [3043] = {.lex_state = 137}, - [3044] = {.lex_state = 151}, - [3045] = {.lex_state = 141}, - [3046] = {.lex_state = 147}, - [3047] = {.lex_state = 141}, - [3048] = {.lex_state = 147}, - [3049] = {.lex_state = 137}, - [3050] = {.lex_state = 141}, - [3051] = {.lex_state = 138}, - [3052] = {.lex_state = 148}, - [3053] = {.lex_state = 147}, - [3054] = {.lex_state = 137}, - [3055] = {.lex_state = 137}, - [3056] = {.lex_state = 138}, - [3057] = {.lex_state = 138}, - [3058] = {.lex_state = 149}, - [3059] = {.lex_state = 149}, - [3060] = {.lex_state = 149}, - [3061] = {.lex_state = 137}, - [3062] = {.lex_state = 149}, - [3063] = {.lex_state = 137}, - [3064] = {.lex_state = 137}, - [3065] = {.lex_state = 137}, - [3066] = {.lex_state = 137}, - [3067] = {.lex_state = 147}, - [3068] = {.lex_state = 141}, - [3069] = {.lex_state = 137}, - [3070] = {.lex_state = 147}, - [3071] = {.lex_state = 138}, - [3072] = {.lex_state = 138}, - [3073] = {.lex_state = 137}, - [3074] = {.lex_state = 141}, - [3075] = {.lex_state = 137}, - [3076] = {.lex_state = 147}, - [3077] = {.lex_state = 138}, - [3078] = {.lex_state = 138}, - [3079] = {.lex_state = 141}, - [3080] = {.lex_state = 149}, - [3081] = {.lex_state = 137}, - [3082] = {.lex_state = 149}, - [3083] = {.lex_state = 147}, - [3084] = {.lex_state = 137}, - [3085] = {.lex_state = 137}, - [3086] = {.lex_state = 138}, - [3087] = {.lex_state = 138}, - [3088] = {.lex_state = 141}, - [3089] = {.lex_state = 149}, - [3090] = {.lex_state = 151}, - [3091] = {.lex_state = 141}, - [3092] = {.lex_state = 138}, - [3093] = {.lex_state = 137}, - [3094] = {.lex_state = 138}, - [3095] = {.lex_state = 149}, - [3096] = {.lex_state = 138}, - [3097] = {.lex_state = 138}, - [3098] = {.lex_state = 138}, - [3099] = {.lex_state = 141}, - [3100] = {.lex_state = 138}, - [3101] = {.lex_state = 147}, - [3102] = {.lex_state = 138}, - [3103] = {.lex_state = 147}, - [3104] = {.lex_state = 138}, - [3105] = {.lex_state = 151}, - [3106] = {.lex_state = 138}, - [3107] = {.lex_state = 141}, - [3108] = {.lex_state = 138}, - [3109] = {.lex_state = 138}, - [3110] = {.lex_state = 151}, - [3111] = {.lex_state = 141}, - [3112] = {.lex_state = 147}, - [3113] = {.lex_state = 137}, - [3114] = {.lex_state = 137}, - [3115] = {.lex_state = 141}, - [3116] = {.lex_state = 138}, - [3117] = {.lex_state = 141}, - [3118] = {.lex_state = 137}, - [3119] = {.lex_state = 137}, - [3120] = {.lex_state = 137}, - [3121] = {.lex_state = 138}, - [3122] = {.lex_state = 138}, - [3123] = {.lex_state = 138}, - [3124] = {.lex_state = 147}, - [3125] = {.lex_state = 137}, - [3126] = {.lex_state = 137}, - [3127] = {.lex_state = 147}, - [3128] = {.lex_state = 137}, - [3129] = {.lex_state = 147}, - [3130] = {.lex_state = 137}, - [3131] = {.lex_state = 137}, - [3132] = {.lex_state = 147}, - [3133] = {.lex_state = 137}, - [3134] = {.lex_state = 137}, - [3135] = {.lex_state = 148}, - [3136] = {.lex_state = 148}, - [3137] = {.lex_state = 147}, - [3138] = {.lex_state = 147}, - [3139] = {.lex_state = 148}, - [3140] = {.lex_state = 151}, - [3141] = {.lex_state = 135}, - [3142] = {.lex_state = 148}, - [3143] = {.lex_state = 135}, - [3144] = {.lex_state = 149}, - [3145] = {.lex_state = 135}, - [3146] = {.lex_state = 149}, - [3147] = {.lex_state = 149}, - [3148] = {.lex_state = 149}, - [3149] = {.lex_state = 148}, - [3150] = {.lex_state = 149}, - [3151] = {.lex_state = 149}, - [3152] = {.lex_state = 135}, - [3153] = {.lex_state = 135}, - [3154] = {.lex_state = 135}, - [3155] = {.lex_state = 149}, - [3156] = {.lex_state = 149}, - [3157] = {.lex_state = 135}, - [3158] = {.lex_state = 148}, - [3159] = {.lex_state = 149}, - [3160] = {.lex_state = 148}, - [3161] = {.lex_state = 149}, - [3162] = {.lex_state = 151}, - [3163] = {.lex_state = 149}, - [3164] = {.lex_state = 149}, - [3165] = {.lex_state = 149}, - [3166] = {.lex_state = 148}, - [3167] = {.lex_state = 149}, - [3168] = {.lex_state = 135}, - [3169] = {.lex_state = 151}, - [3170] = {.lex_state = 149}, - [3171] = {.lex_state = 149}, - [3172] = {.lex_state = 149}, - [3173] = {.lex_state = 135}, - [3174] = {.lex_state = 149}, - [3175] = {.lex_state = 151}, - [3176] = {.lex_state = 135}, - [3177] = {.lex_state = 148}, - [3178] = {.lex_state = 135}, - [3179] = {.lex_state = 135}, - [3180] = {.lex_state = 135}, - [3181] = {.lex_state = 135}, - [3182] = {.lex_state = 148}, - [3183] = {.lex_state = 151}, - [3184] = {.lex_state = 148}, - [3185] = {.lex_state = 148}, - [3186] = {.lex_state = 148}, - [3187] = {.lex_state = 148}, - [3188] = {.lex_state = 148}, - [3189] = {.lex_state = 148}, - [3190] = {.lex_state = 148}, - [3191] = {.lex_state = 135}, - [3192] = {.lex_state = 148}, - [3193] = {.lex_state = 149}, - [3194] = {.lex_state = 135}, - [3195] = {.lex_state = 135}, - [3196] = {.lex_state = 135}, - [3197] = {.lex_state = 135}, - [3198] = {.lex_state = 135}, - [3199] = {.lex_state = 151}, - [3200] = {.lex_state = 151}, - [3201] = {.lex_state = 135}, - [3202] = {.lex_state = 149}, - [3203] = {.lex_state = 135}, - [3204] = {.lex_state = 148}, - [3205] = {.lex_state = 135}, - [3206] = {.lex_state = 135}, - [3207] = {.lex_state = 135}, - [3208] = {.lex_state = 135}, - [3209] = {.lex_state = 135}, - [3210] = {.lex_state = 151}, - [3211] = {.lex_state = 151}, - [3212] = {.lex_state = 151}, - [3213] = {.lex_state = 151}, - [3214] = {.lex_state = 135}, - [3215] = {.lex_state = 151}, - [3216] = {.lex_state = 135}, - [3217] = {.lex_state = 135}, - [3218] = {.lex_state = 135}, - [3219] = {.lex_state = 151}, - [3220] = {.lex_state = 151}, - [3221] = {.lex_state = 135}, - [3222] = {.lex_state = 151}, - [3223] = {.lex_state = 151}, - [3224] = {.lex_state = 149}, - [3225] = {.lex_state = 151}, - [3226] = {.lex_state = 151}, - [3227] = {.lex_state = 151}, - [3228] = {.lex_state = 149}, - [3229] = {.lex_state = 151}, - [3230] = {.lex_state = 151}, - [3231] = {.lex_state = 151}, - [3232] = {.lex_state = 151}, - [3233] = {.lex_state = 151}, - [3234] = {.lex_state = 149}, - [3235] = {.lex_state = 151}, - [3236] = {.lex_state = 149}, - [3237] = {.lex_state = 151}, - [3238] = {.lex_state = 151}, - [3239] = {.lex_state = 151}, - [3240] = {.lex_state = 149}, - [3241] = {.lex_state = 151}, - [3242] = {.lex_state = 151}, - [3243] = {.lex_state = 151}, - [3244] = {.lex_state = 149}, - [3245] = {.lex_state = 151}, - [3246] = {.lex_state = 151}, - [3247] = {.lex_state = 135}, - [3248] = {.lex_state = 147}, - [3249] = {.lex_state = 151}, - [3250] = {.lex_state = 151}, - [3251] = {.lex_state = 149}, - [3252] = {.lex_state = 151}, - [3253] = {.lex_state = 151}, - [3254] = {.lex_state = 149}, - [3255] = {.lex_state = 149}, - [3256] = {.lex_state = 151}, - [3257] = {.lex_state = 149}, - [3258] = {.lex_state = 149}, - [3259] = {.lex_state = 149}, - [3260] = {.lex_state = 149}, - [3261] = {.lex_state = 151}, - [3262] = {.lex_state = 135}, - [3263] = {.lex_state = 135}, - [3264] = {.lex_state = 149}, - [3265] = {.lex_state = 135}, - [3266] = {.lex_state = 149}, - [3267] = {.lex_state = 151}, - [3268] = {.lex_state = 148}, - [3269] = {.lex_state = 148}, - [3270] = {.lex_state = 149}, - [3271] = {.lex_state = 151}, - [3272] = {.lex_state = 149}, - [3273] = {.lex_state = 149}, - [3274] = {.lex_state = 149}, - [3275] = {.lex_state = 149}, - [3276] = {.lex_state = 149}, - [3277] = {.lex_state = 125}, - [3278] = {.lex_state = 149}, - [3279] = {.lex_state = 149}, - [3280] = {.lex_state = 149}, - [3281] = {.lex_state = 149}, - [3282] = {.lex_state = 151}, - [3283] = {.lex_state = 151}, - [3284] = {.lex_state = 149}, - [3285] = {.lex_state = 149}, - [3286] = {.lex_state = 149}, - [3287] = {.lex_state = 149}, - [3288] = {.lex_state = 151}, - [3289] = {.lex_state = 151}, - [3290] = {.lex_state = 149}, - [3291] = {.lex_state = 125}, - [3292] = {.lex_state = 148}, - [3293] = {.lex_state = 125}, - [3294] = {.lex_state = 148}, - [3295] = {.lex_state = 149}, - [3296] = {.lex_state = 149}, - [3297] = {.lex_state = 54}, - [3298] = {.lex_state = 148}, - [3299] = {.lex_state = 148}, - [3300] = {.lex_state = 148}, - [3301] = {.lex_state = 149}, - [3302] = {.lex_state = 148}, - [3303] = {.lex_state = 114}, - [3304] = {.lex_state = 149}, - [3305] = {.lex_state = 149}, - [3306] = {.lex_state = 149}, - [3307] = {.lex_state = 151}, - [3308] = {.lex_state = 148}, - [3309] = {.lex_state = 148}, - [3310] = {.lex_state = 148}, - [3311] = {.lex_state = 148}, - [3312] = {.lex_state = 114}, - [3313] = {.lex_state = 114}, - [3314] = {.lex_state = 114}, - [3315] = {.lex_state = 149}, - [3316] = {.lex_state = 125}, - [3317] = {.lex_state = 125}, - [3318] = {.lex_state = 114}, - [3319] = {.lex_state = 125}, - [3320] = {.lex_state = 125}, - [3321] = {.lex_state = 125}, - [3322] = {.lex_state = 125}, - [3323] = {.lex_state = 114}, - [3324] = {.lex_state = 149}, - [3325] = {.lex_state = 149}, - [3326] = {.lex_state = 125}, - [3327] = {.lex_state = 114}, - [3328] = {.lex_state = 125}, - [3329] = {.lex_state = 114}, - [3330] = {.lex_state = 114}, - [3331] = {.lex_state = 114}, - [3332] = {.lex_state = 149}, - [3333] = {.lex_state = 114}, - [3334] = {.lex_state = 125}, - [3335] = {.lex_state = 125}, - [3336] = {.lex_state = 114}, - [3337] = {.lex_state = 114}, - [3338] = {.lex_state = 149}, - [3339] = {.lex_state = 125}, - [3340] = {.lex_state = 114}, - [3341] = {.lex_state = 149}, - [3342] = {.lex_state = 149}, - [3343] = {.lex_state = 149}, - [3344] = {.lex_state = 114}, - [3345] = {.lex_state = 135}, - [3346] = {.lex_state = 114}, - [3347] = {.lex_state = 149}, - [3348] = {.lex_state = 125}, - [3349] = {.lex_state = 149}, - [3350] = {.lex_state = 125}, - [3351] = {.lex_state = 114}, - [3352] = {.lex_state = 149}, - [3353] = {.lex_state = 114}, - [3354] = {.lex_state = 125}, - [3355] = {.lex_state = 114}, - [3356] = {.lex_state = 125}, - [3357] = {.lex_state = 125}, - [3358] = {.lex_state = 114}, - [3359] = {.lex_state = 125}, - [3360] = {.lex_state = 135}, - [3361] = {.lex_state = 114}, - [3362] = {.lex_state = 125}, - [3363] = {.lex_state = 114}, - [3364] = {.lex_state = 114}, - [3365] = {.lex_state = 149}, - [3366] = {.lex_state = 114}, - [3367] = {.lex_state = 114}, - [3368] = {.lex_state = 114}, - [3369] = {.lex_state = 114}, - [3370] = {.lex_state = 149}, - [3371] = {.lex_state = 114}, - [3372] = {.lex_state = 114}, - [3373] = {.lex_state = 114}, - [3374] = {.lex_state = 114}, - [3375] = {.lex_state = 114}, - [3376] = {.lex_state = 114}, - [3377] = {.lex_state = 125}, - [3378] = {.lex_state = 149}, - [3379] = {.lex_state = 149}, - [3380] = {.lex_state = 125}, - [3381] = {.lex_state = 135}, - [3382] = {.lex_state = 114}, - [3383] = {.lex_state = 149}, - [3384] = {.lex_state = 114}, - [3385] = {.lex_state = 114}, - [3386] = {.lex_state = 135}, - [3387] = {.lex_state = 135}, - [3388] = {.lex_state = 54}, - [3389] = {.lex_state = 54}, - [3390] = {.lex_state = 54}, - [3391] = {.lex_state = 54}, - [3392] = {.lex_state = 54}, - [3393] = {.lex_state = 125}, - [3394] = {.lex_state = 135}, - [3395] = {.lex_state = 54}, - [3396] = {.lex_state = 54}, - [3397] = {.lex_state = 54}, - [3398] = {.lex_state = 54}, - [3399] = {.lex_state = 54}, - [3400] = {.lex_state = 54}, - [3401] = {.lex_state = 54}, - [3402] = {.lex_state = 135}, - [3403] = {.lex_state = 54}, - [3404] = {.lex_state = 54}, - [3405] = {.lex_state = 54}, - [3406] = {.lex_state = 54}, - [3407] = {.lex_state = 125}, - [3408] = {.lex_state = 54}, - [3409] = {.lex_state = 54}, - [3410] = {.lex_state = 135}, - [3411] = {.lex_state = 54}, - [3412] = {.lex_state = 54}, - [3413] = {.lex_state = 54}, - [3414] = {.lex_state = 54}, - [3415] = {.lex_state = 54}, - [3416] = {.lex_state = 54}, - [3417] = {.lex_state = 54}, - [3418] = {.lex_state = 54}, - [3419] = {.lex_state = 54}, - [3420] = {.lex_state = 54}, - [3421] = {.lex_state = 135}, - [3422] = {.lex_state = 135}, - [3423] = {.lex_state = 142}, - [3424] = {.lex_state = 139}, - [3425] = {.lex_state = 135}, - [3426] = {.lex_state = 142}, - [3427] = {.lex_state = 139}, - [3428] = {.lex_state = 149}, - [3429] = {.lex_state = 135}, - [3430] = {.lex_state = 135}, - [3431] = {.lex_state = 126}, - [3432] = {.lex_state = 126}, - [3433] = {.lex_state = 126}, - [3434] = {.lex_state = 135}, - [3435] = {.lex_state = 126}, - [3436] = {.lex_state = 126}, - [3437] = {.lex_state = 126}, - [3438] = {.lex_state = 135}, - [3439] = {.lex_state = 126}, - [3440] = {.lex_state = 126}, - [3441] = {.lex_state = 126}, - [3442] = {.lex_state = 149}, - [3443] = {.lex_state = 135}, - [3444] = {.lex_state = 149}, - [3445] = {.lex_state = 126}, - [3446] = {.lex_state = 126}, - [3447] = {.lex_state = 126}, - [3448] = {.lex_state = 150}, - [3449] = {.lex_state = 126}, - [3450] = {.lex_state = 126}, - [3451] = {.lex_state = 126}, - [3452] = {.lex_state = 150}, - [3453] = {.lex_state = 150}, - [3454] = {.lex_state = 126}, - [3455] = {.lex_state = 135}, - [3456] = {.lex_state = 126}, - [3457] = {.lex_state = 126}, - [3458] = {.lex_state = 149}, - [3459] = {.lex_state = 149}, - [3460] = {.lex_state = 149}, - [3461] = {.lex_state = 149}, - [3462] = {.lex_state = 149}, - [3463] = {.lex_state = 126}, - [3464] = {.lex_state = 126}, - [3465] = {.lex_state = 126}, - [3466] = {.lex_state = 126}, - [3467] = {.lex_state = 126}, - [3468] = {.lex_state = 126}, - [3469] = {.lex_state = 126}, - [3470] = {.lex_state = 126}, - [3471] = {.lex_state = 111}, - [3472] = {.lex_state = 126}, - [3473] = {.lex_state = 111}, - [3474] = {.lex_state = 126}, - [3475] = {.lex_state = 153}, - [3476] = {.lex_state = 126}, - [3477] = {.lex_state = 126}, - [3478] = {.lex_state = 153}, - [3479] = {.lex_state = 126}, - [3480] = {.lex_state = 126}, - [3481] = {.lex_state = 111}, - [3482] = {.lex_state = 111}, - [3483] = {.lex_state = 126}, - [3484] = {.lex_state = 126}, - [3485] = {.lex_state = 126}, - [3486] = {.lex_state = 126}, - [3487] = {.lex_state = 126}, - [3488] = {.lex_state = 126}, - [3489] = {.lex_state = 126}, - [3490] = {.lex_state = 111}, - [3491] = {.lex_state = 111}, - [3492] = {.lex_state = 126}, - [3493] = {.lex_state = 126}, - [3494] = {.lex_state = 126}, - [3495] = {.lex_state = 126}, - [3496] = {.lex_state = 111}, - [3497] = {.lex_state = 126}, - [3498] = {.lex_state = 126}, - [3499] = {.lex_state = 111}, - [3500] = {.lex_state = 149}, - [3501] = {.lex_state = 111}, - [3502] = {.lex_state = 126}, - [3503] = {.lex_state = 126}, - [3504] = {.lex_state = 152}, - [3505] = {.lex_state = 126}, - [3506] = {.lex_state = 205}, - [3507] = {.lex_state = 111}, - [3508] = {.lex_state = 111}, - [3509] = {.lex_state = 150}, - [3510] = {.lex_state = 111}, - [3511] = {.lex_state = 126}, - [3512] = {.lex_state = 152}, - [3513] = {.lex_state = 152}, - [3514] = {.lex_state = 205}, - [3515] = {.lex_state = 150}, - [3516] = {.lex_state = 149}, - [3517] = {.lex_state = 205}, - [3518] = {.lex_state = 205}, - [3519] = {.lex_state = 205}, - [3520] = {.lex_state = 149}, - [3521] = {.lex_state = 150}, - [3522] = {.lex_state = 126}, - [3523] = {.lex_state = 205}, - [3524] = {.lex_state = 126}, - [3525] = {.lex_state = 152}, - [3526] = {.lex_state = 150}, - [3527] = {.lex_state = 150}, - [3528] = {.lex_state = 205}, - [3529] = {.lex_state = 150}, - [3530] = {.lex_state = 111}, - [3531] = {.lex_state = 152}, - [3532] = {.lex_state = 126}, - [3533] = {.lex_state = 126}, - [3534] = {.lex_state = 126}, - [3535] = {.lex_state = 126}, - [3536] = {.lex_state = 126}, - [3537] = {.lex_state = 152}, - [3538] = {.lex_state = 126}, - [3539] = {.lex_state = 149}, - [3540] = {.lex_state = 205}, - [3541] = {.lex_state = 205}, - [3542] = {.lex_state = 111}, - [3543] = {.lex_state = 126}, - [3544] = {.lex_state = 126}, - [3545] = {.lex_state = 205}, - [3546] = {.lex_state = 126}, - [3547] = {.lex_state = 126}, - [3548] = {.lex_state = 126}, - [3549] = {.lex_state = 205}, - [3550] = {.lex_state = 126}, - [3551] = {.lex_state = 205}, - [3552] = {.lex_state = 126}, - [3553] = {.lex_state = 205}, - [3554] = {.lex_state = 126}, - [3555] = {.lex_state = 126}, - [3556] = {.lex_state = 111}, - [3557] = {.lex_state = 126}, - [3558] = {.lex_state = 126}, - [3559] = {.lex_state = 126}, - [3560] = {.lex_state = 126}, - [3561] = {.lex_state = 205}, - [3562] = {.lex_state = 111}, - [3563] = {.lex_state = 205}, - [3564] = {.lex_state = 126}, - [3565] = {.lex_state = 126}, - [3566] = {.lex_state = 126}, - [3567] = {.lex_state = 126}, - [3568] = {.lex_state = 126}, - [3569] = {.lex_state = 126}, - [3570] = {.lex_state = 149}, - [3571] = {.lex_state = 149}, - [3572] = {.lex_state = 149}, - [3573] = {.lex_state = 149}, - [3574] = {.lex_state = 149}, - [3575] = {.lex_state = 126}, - [3576] = {.lex_state = 149}, - [3577] = {.lex_state = 149}, - [3578] = {.lex_state = 126}, - [3579] = {.lex_state = 126}, - [3580] = {.lex_state = 126}, - [3581] = {.lex_state = 126}, - [3582] = {.lex_state = 126}, - [3583] = {.lex_state = 126}, - [3584] = {.lex_state = 126}, - [3585] = {.lex_state = 126}, - [3586] = {.lex_state = 149}, - [3587] = {.lex_state = 126}, - [3588] = {.lex_state = 149}, - [3589] = {.lex_state = 205}, - [3590] = {.lex_state = 149}, - [3591] = {.lex_state = 149}, - [3592] = {.lex_state = 149}, - [3593] = {.lex_state = 126}, - [3594] = {.lex_state = 111}, - [3595] = {.lex_state = 126}, - [3596] = {.lex_state = 126}, - [3597] = {.lex_state = 135}, - [3598] = {.lex_state = 150}, - [3599] = {.lex_state = 135}, - [3600] = {.lex_state = 135}, - [3601] = {.lex_state = 151}, - [3602] = {.lex_state = 135}, - [3603] = {.lex_state = 135}, - [3604] = {.lex_state = 135}, - [3605] = {.lex_state = 152}, - [3606] = {.lex_state = 111}, - [3607] = {.lex_state = 150}, - [3608] = {.lex_state = 150}, - [3609] = {.lex_state = 135}, - [3610] = {.lex_state = 114}, - [3611] = {.lex_state = 135}, - [3612] = {.lex_state = 114}, - [3613] = {.lex_state = 150}, - [3614] = {.lex_state = 144}, - [3615] = {.lex_state = 150}, - [3616] = {.lex_state = 150}, - [3617] = {.lex_state = 150}, - [3618] = {.lex_state = 135}, - [3619] = {.lex_state = 205}, - [3620] = {.lex_state = 150}, - [3621] = {.lex_state = 135}, - [3622] = {.lex_state = 151}, - [3623] = {.lex_state = 205}, - [3624] = {.lex_state = 135}, - [3625] = {.lex_state = 135}, - [3626] = {.lex_state = 150}, - [3627] = {.lex_state = 150}, - [3628] = {.lex_state = 150}, - [3629] = {.lex_state = 150}, - [3630] = {.lex_state = 126}, - [3631] = {.lex_state = 126}, - [3632] = {.lex_state = 150}, - [3633] = {.lex_state = 135}, - [3634] = {.lex_state = 150}, - [3635] = {.lex_state = 150}, - [3636] = {.lex_state = 151}, - [3637] = {.lex_state = 135}, - [3638] = {.lex_state = 150}, - [3639] = {.lex_state = 150}, - [3640] = {.lex_state = 151}, - [3641] = {.lex_state = 150}, - [3642] = {.lex_state = 150}, - [3643] = {.lex_state = 151}, - [3644] = {.lex_state = 151}, - [3645] = {.lex_state = 150}, - [3646] = {.lex_state = 150}, - [3647] = {.lex_state = 135}, - [3648] = {.lex_state = 150}, - [3649] = {.lex_state = 135}, - [3650] = {.lex_state = 150}, - [3651] = {.lex_state = 135}, - [3652] = {.lex_state = 150}, - [3653] = {.lex_state = 205}, - [3654] = {.lex_state = 135}, - [3655] = {.lex_state = 150}, - [3656] = {.lex_state = 126}, - [3657] = {.lex_state = 126}, - [3658] = {.lex_state = 126}, - [3659] = {.lex_state = 150}, - [3660] = {.lex_state = 150}, - [3661] = {.lex_state = 117, .external_lex_state = 1}, - [3662] = {.lex_state = 150}, - [3663] = {.lex_state = 117, .external_lex_state = 1}, - [3664] = {.lex_state = 150}, - [3665] = {.lex_state = 150}, - [3666] = {.lex_state = 117, .external_lex_state = 1}, - [3667] = {.lex_state = 126}, - [3668] = {.lex_state = 126}, - [3669] = {.lex_state = 205}, - [3670] = {.lex_state = 205}, - [3671] = {.lex_state = 205}, - [3672] = {.lex_state = 205}, - [3673] = {.lex_state = 126}, - [3674] = {.lex_state = 150}, - [3675] = {.lex_state = 126}, - [3676] = {.lex_state = 117, .external_lex_state = 1}, - [3677] = {.lex_state = 150}, - [3678] = {.lex_state = 150}, - [3679] = {.lex_state = 150}, - [3680] = {.lex_state = 150}, - [3681] = {.lex_state = 150}, - [3682] = {.lex_state = 117, .external_lex_state = 1}, - [3683] = {.lex_state = 150}, - [3684] = {.lex_state = 205}, - [3685] = {.lex_state = 150}, - [3686] = {.lex_state = 150}, - [3687] = {.lex_state = 150}, - [3688] = {.lex_state = 150}, - [3689] = {.lex_state = 205}, - [3690] = {.lex_state = 150}, - [3691] = {.lex_state = 126}, - [3692] = {.lex_state = 150}, - [3693] = {.lex_state = 126}, - [3694] = {.lex_state = 126}, - [3695] = {.lex_state = 126}, - [3696] = {.lex_state = 205}, - [3697] = {.lex_state = 117, .external_lex_state = 1}, - [3698] = {.lex_state = 150}, - [3699] = {.lex_state = 150}, - [3700] = {.lex_state = 126}, - [3701] = {.lex_state = 126}, - [3702] = {.lex_state = 205}, - [3703] = {.lex_state = 150}, - [3704] = {.lex_state = 117, .external_lex_state = 1}, - [3705] = {.lex_state = 117, .external_lex_state = 1}, - [3706] = {.lex_state = 150}, - [3707] = {.lex_state = 126}, - [3708] = {.lex_state = 205}, - [3709] = {.lex_state = 126}, - [3710] = {.lex_state = 150}, - [3711] = {.lex_state = 150}, - [3712] = {.lex_state = 205}, - [3713] = {.lex_state = 126}, - [3714] = {.lex_state = 150}, - [3715] = {.lex_state = 150}, - [3716] = {.lex_state = 150}, - [3717] = {.lex_state = 117, .external_lex_state = 1}, - [3718] = {.lex_state = 126}, - [3719] = {.lex_state = 126}, - [3720] = {.lex_state = 150}, - [3721] = {.lex_state = 150}, - [3722] = {.lex_state = 144}, - [3723] = {.lex_state = 126}, - [3724] = {.lex_state = 126}, - [3725] = {.lex_state = 150}, - [3726] = {.lex_state = 205}, - [3727] = {.lex_state = 111}, - [3728] = {.lex_state = 111}, - [3729] = {.lex_state = 111}, - [3730] = {.lex_state = 205}, - [3731] = {.lex_state = 150}, - [3732] = {.lex_state = 205}, - [3733] = {.lex_state = 150}, - [3734] = {.lex_state = 150}, - [3735] = {.lex_state = 205}, - [3736] = {.lex_state = 205}, - [3737] = {.lex_state = 205}, - [3738] = {.lex_state = 150}, - [3739] = {.lex_state = 205}, - [3740] = {.lex_state = 205}, - [3741] = {.lex_state = 205}, - [3742] = {.lex_state = 205}, - [3743] = {.lex_state = 205}, - [3744] = {.lex_state = 205}, - [3745] = {.lex_state = 111}, - [3746] = {.lex_state = 150}, - [3747] = {.lex_state = 126}, - [3748] = {.lex_state = 150}, - [3749] = {.lex_state = 205}, - [3750] = {.lex_state = 138}, - [3751] = {.lex_state = 205}, - [3752] = {.lex_state = 205}, - [3753] = {.lex_state = 111}, - [3754] = {.lex_state = 111}, - [3755] = {.lex_state = 205}, - [3756] = {.lex_state = 144}, - [3757] = {.lex_state = 144}, - [3758] = {.lex_state = 205}, - [3759] = {.lex_state = 205}, - [3760] = {.lex_state = 205}, - [3761] = {.lex_state = 111}, - [3762] = {.lex_state = 205}, - [3763] = {.lex_state = 205}, - [3764] = {.lex_state = 111}, - [3765] = {.lex_state = 111}, - [3766] = {.lex_state = 111}, - [3767] = {.lex_state = 111}, - [3768] = {.lex_state = 138}, - [3769] = {.lex_state = 111}, - [3770] = {.lex_state = 144}, - [3771] = {.lex_state = 205}, - [3772] = {.lex_state = 205}, - [3773] = {.lex_state = 205}, - [3774] = {.lex_state = 111}, - [3775] = {.lex_state = 111}, - [3776] = {.lex_state = 111}, - [3777] = {.lex_state = 205}, - [3778] = {.lex_state = 205}, - [3779] = {.lex_state = 205}, - [3780] = {.lex_state = 205}, - [3781] = {.lex_state = 111}, - [3782] = {.lex_state = 111}, - [3783] = {.lex_state = 205}, - [3784] = {.lex_state = 205}, - [3785] = {.lex_state = 126}, - [3786] = {.lex_state = 0, .external_lex_state = 1}, - [3787] = {.lex_state = 0, .external_lex_state = 1}, - [3788] = {.lex_state = 111}, - [3789] = {.lex_state = 111}, - [3790] = {.lex_state = 111}, - [3791] = {.lex_state = 111}, - [3792] = {.lex_state = 111}, - [3793] = {.lex_state = 111}, - [3794] = {.lex_state = 111}, - [3795] = {.lex_state = 111}, - [3796] = {.lex_state = 150}, - [3797] = {.lex_state = 111}, - [3798] = {.lex_state = 111}, - [3799] = {.lex_state = 126}, - [3800] = {.lex_state = 150}, - [3801] = {.lex_state = 0, .external_lex_state = 1}, - [3802] = {.lex_state = 0, .external_lex_state = 1}, - [3803] = {.lex_state = 111}, - [3804] = {.lex_state = 150}, - [3805] = {.lex_state = 150}, - [3806] = {.lex_state = 111}, - [3807] = {.lex_state = 111}, - [3808] = {.lex_state = 111}, - [3809] = {.lex_state = 111}, - [3810] = {.lex_state = 0, .external_lex_state = 1}, - [3811] = {.lex_state = 111}, - [3812] = {.lex_state = 111}, - [3813] = {.lex_state = 111}, - [3814] = {.lex_state = 111}, - [3815] = {.lex_state = 111}, - [3816] = {.lex_state = 111}, - [3817] = {.lex_state = 111}, - [3818] = {.lex_state = 111}, - [3819] = {.lex_state = 111}, - [3820] = {.lex_state = 111}, - [3821] = {.lex_state = 126}, - [3822] = {.lex_state = 150}, - [3823] = {.lex_state = 117, .external_lex_state = 1}, - [3824] = {.lex_state = 111}, - [3825] = {.lex_state = 111}, - [3826] = {.lex_state = 111}, - [3827] = {.lex_state = 111}, - [3828] = {.lex_state = 111}, - [3829] = {.lex_state = 126}, - [3830] = {.lex_state = 111}, - [3831] = {.lex_state = 111}, - [3832] = {.lex_state = 111}, - [3833] = {.lex_state = 111}, - [3834] = {.lex_state = 111}, - [3835] = {.lex_state = 111}, - [3836] = {.lex_state = 111}, - [3837] = {.lex_state = 205}, - [3838] = {.lex_state = 150}, - [3839] = {.lex_state = 111}, - [3840] = {.lex_state = 150}, - [3841] = {.lex_state = 126}, - [3842] = {.lex_state = 150}, - [3843] = {.lex_state = 205}, - [3844] = {.lex_state = 126}, - [3845] = {.lex_state = 150}, - [3846] = {.lex_state = 111}, - [3847] = {.lex_state = 0, .external_lex_state = 1}, - [3848] = {.lex_state = 111}, - [3849] = {.lex_state = 111}, - [3850] = {.lex_state = 111}, - [3851] = {.lex_state = 111}, - [3852] = {.lex_state = 117, .external_lex_state = 1}, - [3853] = {.lex_state = 205}, - [3854] = {.lex_state = 111}, - [3855] = {.lex_state = 126}, - [3856] = {.lex_state = 111}, - [3857] = {.lex_state = 111}, - [3858] = {.lex_state = 205}, - [3859] = {.lex_state = 111}, - [3860] = {.lex_state = 111}, - [3861] = {.lex_state = 205}, - [3862] = {.lex_state = 151}, - [3863] = {.lex_state = 111}, - [3864] = {.lex_state = 150}, - [3865] = {.lex_state = 0, .external_lex_state = 1}, - [3866] = {.lex_state = 205}, - [3867] = {.lex_state = 126}, - [3868] = {.lex_state = 205}, - [3869] = {.lex_state = 151}, - [3870] = {.lex_state = 205}, - [3871] = {.lex_state = 126}, - [3872] = {.lex_state = 111}, - [3873] = {.lex_state = 205}, - [3874] = {.lex_state = 126}, - [3875] = {.lex_state = 205}, - [3876] = {.lex_state = 126}, - [3877] = {.lex_state = 205}, - [3878] = {.lex_state = 126}, - [3879] = {.lex_state = 126}, - [3880] = {.lex_state = 205}, - [3881] = {.lex_state = 126}, - [3882] = {.lex_state = 205}, - [3883] = {.lex_state = 205}, - [3884] = {.lex_state = 205}, - [3885] = {.lex_state = 126}, - [3886] = {.lex_state = 205}, - [3887] = {.lex_state = 126}, - [3888] = {.lex_state = 126}, - [3889] = {.lex_state = 126}, - [3890] = {.lex_state = 205}, - [3891] = {.lex_state = 205}, - [3892] = {.lex_state = 205}, - [3893] = {.lex_state = 126}, - [3894] = {.lex_state = 126}, - [3895] = {.lex_state = 126}, - [3896] = {.lex_state = 205}, - [3897] = {.lex_state = 126}, - [3898] = {.lex_state = 205}, - [3899] = {.lex_state = 205}, - [3900] = {.lex_state = 126}, - [3901] = {.lex_state = 126}, - [3902] = {.lex_state = 126}, - [3903] = {.lex_state = 205}, - [3904] = {.lex_state = 126}, - [3905] = {.lex_state = 205}, - [3906] = {.lex_state = 205}, - [3907] = {.lex_state = 205}, - [3908] = {.lex_state = 126}, - [3909] = {.lex_state = 126}, - [3910] = {.lex_state = 126}, - [3911] = {.lex_state = 126}, - [3912] = {.lex_state = 126}, - [3913] = {.lex_state = 205}, - [3914] = {.lex_state = 126}, - [3915] = {.lex_state = 205}, - [3916] = {.lex_state = 205}, - [3917] = {.lex_state = 205}, - [3918] = {.lex_state = 126}, - [3919] = {.lex_state = 126}, - [3920] = {.lex_state = 205}, - [3921] = {.lex_state = 205}, - [3922] = {.lex_state = 205}, - [3923] = {.lex_state = 126}, - [3924] = {.lex_state = 111}, - [3925] = {.lex_state = 205}, - [3926] = {.lex_state = 111}, - [3927] = {.lex_state = 111}, - [3928] = {.lex_state = 111}, - [3929] = {.lex_state = 205}, - [3930] = {.lex_state = 205}, - [3931] = {.lex_state = 126}, - [3932] = {.lex_state = 111}, - [3933] = {.lex_state = 111}, - [3934] = {.lex_state = 111}, - [3935] = {.lex_state = 111}, - [3936] = {.lex_state = 111}, - [3937] = {.lex_state = 111}, - [3938] = {.lex_state = 111}, - [3939] = {.lex_state = 111}, - [3940] = {.lex_state = 111}, - [3941] = {.lex_state = 111}, - [3942] = {.lex_state = 111}, - [3943] = {.lex_state = 111}, - [3944] = {.lex_state = 111}, - [3945] = {.lex_state = 111}, - [3946] = {.lex_state = 205}, - [3947] = {.lex_state = 205}, - [3948] = {.lex_state = 111}, - [3949] = {.lex_state = 205}, - [3950] = {.lex_state = 111}, - [3951] = {.lex_state = 111}, - [3952] = {.lex_state = 111}, - [3953] = {.lex_state = 150}, - [3954] = {.lex_state = 205}, - [3955] = {.lex_state = 111}, - [3956] = {.lex_state = 111}, - [3957] = {.lex_state = 111}, - [3958] = {.lex_state = 111}, - [3959] = {.lex_state = 111}, - [3960] = {.lex_state = 205}, - [3961] = {.lex_state = 205}, - [3962] = {.lex_state = 111}, - [3963] = {.lex_state = 126}, - [3964] = {.lex_state = 126}, - [3965] = {.lex_state = 205}, - [3966] = {.lex_state = 111}, - [3967] = {.lex_state = 205}, - [3968] = {.lex_state = 111}, - [3969] = {.lex_state = 111}, - [3970] = {.lex_state = 205}, - [3971] = {.lex_state = 205}, - [3972] = {.lex_state = 205}, - [3973] = {.lex_state = 126}, - [3974] = {.lex_state = 126}, - [3975] = {.lex_state = 205}, - [3976] = {.lex_state = 205}, - [3977] = {.lex_state = 205}, - [3978] = {.lex_state = 205}, - [3979] = {.lex_state = 126}, - [3980] = {.lex_state = 205}, - [3981] = {.lex_state = 205}, - [3982] = {.lex_state = 126}, - [3983] = {.lex_state = 205}, - [3984] = {.lex_state = 205}, - [3985] = {.lex_state = 205}, - [3986] = {.lex_state = 205}, - [3987] = {.lex_state = 205}, - [3988] = {.lex_state = 111}, - [3989] = {.lex_state = 148}, - [3990] = {.lex_state = 205}, - [3991] = {.lex_state = 205}, - [3992] = {.lex_state = 205}, - [3993] = {.lex_state = 205}, - [3994] = {.lex_state = 126}, - [3995] = {.lex_state = 111}, - [3996] = {.lex_state = 205}, - [3997] = {.lex_state = 205}, - [3998] = {.lex_state = 205}, - [3999] = {.lex_state = 205}, - [4000] = {.lex_state = 205}, - [4001] = {.lex_state = 126}, - [4002] = {.lex_state = 150}, - [4003] = {.lex_state = 205}, - [4004] = {.lex_state = 150}, - [4005] = {.lex_state = 150}, - [4006] = {.lex_state = 205}, - [4007] = {.lex_state = 111}, - [4008] = {.lex_state = 150}, - [4009] = {.lex_state = 148}, - [4010] = {.lex_state = 205}, - [4011] = {.lex_state = 205}, - [4012] = {.lex_state = 150}, - [4013] = {.lex_state = 0}, - [4014] = {.lex_state = 63}, - [4015] = {.lex_state = 150}, - [4016] = {.lex_state = 150}, - [4017] = {.lex_state = 150}, - [4018] = {.lex_state = 205}, - [4019] = {.lex_state = 150}, - [4020] = {.lex_state = 205}, - [4021] = {.lex_state = 205}, - [4022] = {.lex_state = 150}, - [4023] = {.lex_state = 126}, - [4024] = {.lex_state = 150}, - [4025] = {.lex_state = 111}, - [4026] = {.lex_state = 0}, - [4027] = {.lex_state = 65}, - [4028] = {.lex_state = 205}, - [4029] = {.lex_state = 205}, - [4030] = {.lex_state = 148}, - [4031] = {.lex_state = 205}, - [4032] = {.lex_state = 63}, - [4033] = {.lex_state = 205}, - [4034] = {.lex_state = 205}, - [4035] = {.lex_state = 205}, - [4036] = {.lex_state = 205}, - [4037] = {.lex_state = 148}, - [4038] = {.lex_state = 150}, - [4039] = {.lex_state = 0}, - [4040] = {.lex_state = 205}, - [4041] = {.lex_state = 150}, - [4042] = {.lex_state = 150}, - [4043] = {.lex_state = 205}, - [4044] = {.lex_state = 150}, - [4045] = {.lex_state = 150}, - [4046] = {.lex_state = 150}, - [4047] = {.lex_state = 205}, - [4048] = {.lex_state = 150}, - [4049] = {.lex_state = 150}, - [4050] = {.lex_state = 111}, - [4051] = {.lex_state = 150}, - [4052] = {.lex_state = 150}, - [4053] = {.lex_state = 63}, - [4054] = {.lex_state = 0}, - [4055] = {.lex_state = 150}, - [4056] = {.lex_state = 150}, - [4057] = {.lex_state = 63}, - [4058] = {.lex_state = 150}, - [4059] = {.lex_state = 63}, - [4060] = {.lex_state = 150}, - [4061] = {.lex_state = 63}, - [4062] = {.lex_state = 150}, - [4063] = {.lex_state = 150}, - [4064] = {.lex_state = 150}, - [4065] = {.lex_state = 150}, - [4066] = {.lex_state = 150}, - [4067] = {.lex_state = 205}, - [4068] = {.lex_state = 65}, - [4069] = {.lex_state = 150}, - [4070] = {.lex_state = 150}, - [4071] = {.lex_state = 65}, - [4072] = {.lex_state = 150}, - [4073] = {.lex_state = 205}, - [4074] = {.lex_state = 150}, - [4075] = {.lex_state = 150}, - [4076] = {.lex_state = 126}, - [4077] = {.lex_state = 150}, - [4078] = {.lex_state = 150}, - [4079] = {.lex_state = 150}, - [4080] = {.lex_state = 150}, - [4081] = {.lex_state = 150}, - [4082] = {.lex_state = 150}, - [4083] = {.lex_state = 150}, - [4084] = {.lex_state = 63}, - [4085] = {.lex_state = 150}, - [4086] = {.lex_state = 63}, - [4087] = {.lex_state = 126}, - [4088] = {.lex_state = 0}, - [4089] = {.lex_state = 150}, - [4090] = {.lex_state = 150}, - [4091] = {.lex_state = 150}, - [4092] = {.lex_state = 150}, - [4093] = {.lex_state = 150}, - [4094] = {.lex_state = 63}, - [4095] = {.lex_state = 150}, - [4096] = {.lex_state = 148}, - [4097] = {.lex_state = 205}, - [4098] = {.lex_state = 111}, - [4099] = {.lex_state = 205}, - [4100] = {.lex_state = 205}, - [4101] = {.lex_state = 150}, - [4102] = {.lex_state = 205}, - [4103] = {.lex_state = 205}, - [4104] = {.lex_state = 0}, - [4105] = {.lex_state = 0}, - [4106] = {.lex_state = 150}, - [4107] = {.lex_state = 205}, - [4108] = {.lex_state = 150}, - [4109] = {.lex_state = 150}, - [4110] = {.lex_state = 150}, - [4111] = {.lex_state = 111}, - [4112] = {.lex_state = 150}, - [4113] = {.lex_state = 205}, - [4114] = {.lex_state = 150}, - [4115] = {.lex_state = 150}, - [4116] = {.lex_state = 148}, - [4117] = {.lex_state = 0}, - [4118] = {.lex_state = 126}, - [4119] = {.lex_state = 150}, - [4120] = {.lex_state = 205}, - [4121] = {.lex_state = 111}, - [4122] = {.lex_state = 150}, - [4123] = {.lex_state = 150}, - [4124] = {.lex_state = 126}, - [4125] = {.lex_state = 205}, - [4126] = {.lex_state = 150}, - [4127] = {.lex_state = 150}, - [4128] = {.lex_state = 126}, - [4129] = {.lex_state = 150}, - [4130] = {.lex_state = 148}, - [4131] = {.lex_state = 150}, - [4132] = {.lex_state = 65}, - [4133] = {.lex_state = 111}, - [4134] = {.lex_state = 111}, - [4135] = {.lex_state = 63}, - [4136] = {.lex_state = 0}, - [4137] = {.lex_state = 150}, - [4138] = {.lex_state = 150}, - [4139] = {.lex_state = 205}, - [4140] = {.lex_state = 0}, - [4141] = {.lex_state = 65}, - [4142] = {.lex_state = 205}, - [4143] = {.lex_state = 63}, - [4144] = {.lex_state = 0}, - [4145] = {.lex_state = 150}, - [4146] = {.lex_state = 150}, - [4147] = {.lex_state = 111}, - [4148] = {.lex_state = 150}, - [4149] = {.lex_state = 205}, - [4150] = {.lex_state = 150}, - [4151] = {.lex_state = 150}, - [4152] = {.lex_state = 150}, - [4153] = {.lex_state = 126}, - [4154] = {.lex_state = 126}, - [4155] = {.lex_state = 150}, - [4156] = {.lex_state = 126}, - [4157] = {.lex_state = 63}, - [4158] = {.lex_state = 150}, - [4159] = {.lex_state = 63}, - [4160] = {.lex_state = 65}, - [4161] = {.lex_state = 205}, - [4162] = {.lex_state = 150}, - [4163] = {.lex_state = 111}, - [4164] = {.lex_state = 148}, - [4165] = {.lex_state = 150}, - [4166] = {.lex_state = 148}, - [4167] = {.lex_state = 63}, - [4168] = {.lex_state = 65}, - [4169] = {.lex_state = 205}, - [4170] = {.lex_state = 205}, - [4171] = {.lex_state = 150}, - [4172] = {.lex_state = 150}, - [4173] = {.lex_state = 150}, - [4174] = {.lex_state = 150}, - [4175] = {.lex_state = 150}, - [4176] = {.lex_state = 205}, - [4177] = {.lex_state = 150}, - [4178] = {.lex_state = 205}, - [4179] = {.lex_state = 111}, - [4180] = {.lex_state = 150}, - [4181] = {.lex_state = 126}, - [4182] = {.lex_state = 148}, - [4183] = {.lex_state = 0}, - [4184] = {.lex_state = 150}, - [4185] = {.lex_state = 63}, - [4186] = {.lex_state = 0}, - [4187] = {.lex_state = 0}, - [4188] = {.lex_state = 126}, - [4189] = {.lex_state = 0}, - [4190] = {.lex_state = 0}, - [4191] = {.lex_state = 0}, - [4192] = {.lex_state = 0}, - [4193] = {.lex_state = 0}, - [4194] = {.lex_state = 0}, - [4195] = {.lex_state = 0}, - [4196] = {.lex_state = 205}, - [4197] = {.lex_state = 0}, - [4198] = {.lex_state = 126}, - [4199] = {.lex_state = 111}, - [4200] = {.lex_state = 0}, - [4201] = {.lex_state = 0}, - [4202] = {.lex_state = 126}, - [4203] = {.lex_state = 0}, - [4204] = {.lex_state = 126}, - [4205] = {.lex_state = 0}, - [4206] = {.lex_state = 205}, - [4207] = {.lex_state = 205}, - [4208] = {.lex_state = 205}, - [4209] = {.lex_state = 0}, - [4210] = {.lex_state = 0}, - [4211] = {.lex_state = 0}, - [4212] = {.lex_state = 0}, - [4213] = {.lex_state = 126}, - [4214] = {.lex_state = 0}, - [4215] = {.lex_state = 0}, - [4216] = {.lex_state = 0}, - [4217] = {.lex_state = 0}, - [4218] = {.lex_state = 0}, - [4219] = {.lex_state = 0}, - [4220] = {.lex_state = 0}, - [4221] = {.lex_state = 0}, - [4222] = {.lex_state = 0}, - [4223] = {.lex_state = 0}, - [4224] = {.lex_state = 0}, - [4225] = {.lex_state = 0}, - [4226] = {.lex_state = 126}, - [4227] = {.lex_state = 0}, - [4228] = {.lex_state = 0}, - [4229] = {.lex_state = 0}, - [4230] = {.lex_state = 0}, - [4231] = {.lex_state = 0}, - [4232] = {.lex_state = 126}, - [4233] = {.lex_state = 0}, - [4234] = {.lex_state = 0}, - [4235] = {.lex_state = 0}, - [4236] = {.lex_state = 0}, - [4237] = {.lex_state = 126}, - [4238] = {.lex_state = 205}, - [4239] = {.lex_state = 0}, - [4240] = {.lex_state = 0}, - [4241] = {.lex_state = 0}, - [4242] = {.lex_state = 0}, - [4243] = {.lex_state = 0}, - [4244] = {.lex_state = 148}, - [4245] = {.lex_state = 0}, - [4246] = {.lex_state = 0}, - [4247] = {.lex_state = 0}, - [4248] = {.lex_state = 0}, - [4249] = {.lex_state = 0}, - [4250] = {.lex_state = 0}, - [4251] = {.lex_state = 0}, - [4252] = {.lex_state = 111}, - [4253] = {.lex_state = 0}, - [4254] = {.lex_state = 0}, - [4255] = {.lex_state = 126}, - [4256] = {.lex_state = 0}, - [4257] = {.lex_state = 0}, - [4258] = {.lex_state = 0}, - [4259] = {.lex_state = 126}, - [4260] = {.lex_state = 0}, - [4261] = {.lex_state = 126}, - [4262] = {.lex_state = 0}, - [4263] = {.lex_state = 0}, - [4264] = {.lex_state = 126}, - [4265] = {.lex_state = 0}, - [4266] = {.lex_state = 0}, - [4267] = {.lex_state = 126}, - [4268] = {.lex_state = 0}, - [4269] = {.lex_state = 205}, - [4270] = {.lex_state = 0}, - [4271] = {.lex_state = 0}, - [4272] = {.lex_state = 126}, - [4273] = {.lex_state = 0}, - [4274] = {.lex_state = 0}, - [4275] = {.lex_state = 0}, - [4276] = {.lex_state = 126}, - [4277] = {.lex_state = 0}, - [4278] = {.lex_state = 205}, - [4279] = {.lex_state = 126}, - [4280] = {.lex_state = 54}, - [4281] = {.lex_state = 0}, - [4282] = {.lex_state = 205}, - [4283] = {.lex_state = 0}, - [4284] = {.lex_state = 126}, - [4285] = {.lex_state = 0}, - [4286] = {.lex_state = 0}, - [4287] = {.lex_state = 126}, - [4288] = {.lex_state = 126}, - [4289] = {.lex_state = 0}, - [4290] = {.lex_state = 0}, - [4291] = {.lex_state = 0}, - [4292] = {.lex_state = 126}, - [4293] = {.lex_state = 0}, - [4294] = {.lex_state = 126}, - [4295] = {.lex_state = 205}, - [4296] = {.lex_state = 0}, - [4297] = {.lex_state = 0}, - [4298] = {.lex_state = 0}, - [4299] = {.lex_state = 0}, - [4300] = {.lex_state = 0}, - [4301] = {.lex_state = 0}, - [4302] = {.lex_state = 126}, - [4303] = {.lex_state = 0}, - [4304] = {.lex_state = 0}, - [4305] = {.lex_state = 126}, - [4306] = {.lex_state = 0}, - [4307] = {.lex_state = 0}, - [4308] = {.lex_state = 0}, - [4309] = {.lex_state = 0}, - [4310] = {.lex_state = 0}, - [4311] = {.lex_state = 0}, - [4312] = {.lex_state = 126}, - [4313] = {.lex_state = 0}, - [4314] = {.lex_state = 0}, - [4315] = {.lex_state = 126}, - [4316] = {.lex_state = 0}, - [4317] = {.lex_state = 0}, - [4318] = {.lex_state = 54}, - [4319] = {.lex_state = 205}, - [4320] = {.lex_state = 0}, - [4321] = {.lex_state = 0}, - [4322] = {.lex_state = 0}, - [4323] = {.lex_state = 0}, - [4324] = {.lex_state = 0}, - [4325] = {.lex_state = 0}, - [4326] = {.lex_state = 0}, - [4327] = {.lex_state = 0}, - [4328] = {.lex_state = 126}, - [4329] = {.lex_state = 0}, - [4330] = {.lex_state = 0}, - [4331] = {.lex_state = 0}, - [4332] = {.lex_state = 0}, - [4333] = {.lex_state = 126}, - [4334] = {.lex_state = 0}, - [4335] = {.lex_state = 0}, - [4336] = {.lex_state = 126}, - [4337] = {.lex_state = 0}, - [4338] = {.lex_state = 0}, - [4339] = {.lex_state = 0}, - [4340] = {.lex_state = 0}, - [4341] = {.lex_state = 126}, - [4342] = {.lex_state = 0}, - [4343] = {.lex_state = 205}, - [4344] = {.lex_state = 0}, - [4345] = {.lex_state = 0}, - [4346] = {.lex_state = 0}, - [4347] = {.lex_state = 205}, - [4348] = {.lex_state = 126}, - [4349] = {.lex_state = 126}, - [4350] = {.lex_state = 54}, - [4351] = {.lex_state = 205}, - [4352] = {.lex_state = 0}, - [4353] = {.lex_state = 0}, - [4354] = {.lex_state = 126}, - [4355] = {.lex_state = 0}, - [4356] = {.lex_state = 126}, - [4357] = {.lex_state = 0}, - [4358] = {.lex_state = 205}, - [4359] = {.lex_state = 0}, - [4360] = {.lex_state = 0}, - [4361] = {.lex_state = 0}, - [4362] = {.lex_state = 0}, - [4363] = {.lex_state = 0}, - [4364] = {.lex_state = 0}, - [4365] = {.lex_state = 126}, - [4366] = {.lex_state = 0}, - [4367] = {.lex_state = 0}, - [4368] = {.lex_state = 0}, - [4369] = {.lex_state = 0}, - [4370] = {.lex_state = 0}, - [4371] = {.lex_state = 126}, - [4372] = {.lex_state = 0}, - [4373] = {.lex_state = 126}, - [4374] = {.lex_state = 0}, - [4375] = {.lex_state = 0}, - [4376] = {.lex_state = 0}, - [4377] = {.lex_state = 0}, - [4378] = {.lex_state = 0}, - [4379] = {.lex_state = 0}, - [4380] = {.lex_state = 0}, - [4381] = {.lex_state = 0}, - [4382] = {.lex_state = 126}, - [4383] = {.lex_state = 0}, - [4384] = {.lex_state = 0}, - [4385] = {.lex_state = 0}, - [4386] = {.lex_state = 0}, - [4387] = {.lex_state = 126}, - [4388] = {.lex_state = 126}, - [4389] = {.lex_state = 0}, - [4390] = {.lex_state = 126}, - [4391] = {.lex_state = 54}, - [4392] = {.lex_state = 205}, - [4393] = {.lex_state = 205}, - [4394] = {.lex_state = 205}, - [4395] = {.lex_state = 0}, - [4396] = {.lex_state = 0}, - [4397] = {.lex_state = 0}, - [4398] = {.lex_state = 0}, - [4399] = {.lex_state = 205}, - [4400] = {.lex_state = 126}, - [4401] = {.lex_state = 0}, - [4402] = {.lex_state = 126}, - [4403] = {.lex_state = 0}, - [4404] = {.lex_state = 0}, - [4405] = {.lex_state = 0}, - [4406] = {.lex_state = 0}, - [4407] = {.lex_state = 126}, - [4408] = {.lex_state = 0}, - [4409] = {.lex_state = 0}, - [4410] = {.lex_state = 0}, - [4411] = {.lex_state = 0}, - [4412] = {.lex_state = 0}, - [4413] = {.lex_state = 0}, - [4414] = {.lex_state = 0}, - [4415] = {.lex_state = 0}, - [4416] = {.lex_state = 0}, - [4417] = {.lex_state = 126}, - [4418] = {.lex_state = 0}, - [4419] = {.lex_state = 111}, - [4420] = {.lex_state = 0}, - [4421] = {.lex_state = 205}, - [4422] = {.lex_state = 126}, - [4423] = {.lex_state = 0}, - [4424] = {.lex_state = 0}, - [4425] = {.lex_state = 0}, - [4426] = {.lex_state = 0}, - [4427] = {.lex_state = 0}, - [4428] = {.lex_state = 0}, - [4429] = {.lex_state = 0}, - [4430] = {.lex_state = 0}, - [4431] = {.lex_state = 0}, - [4432] = {.lex_state = 0}, - [4433] = {.lex_state = 0}, - [4434] = {.lex_state = 0}, - [4435] = {.lex_state = 0}, - [4436] = {.lex_state = 0}, - [4437] = {.lex_state = 0}, - [4438] = {.lex_state = 0}, - [4439] = {.lex_state = 0}, - [4440] = {.lex_state = 126}, - [4441] = {.lex_state = 0}, - [4442] = {.lex_state = 205}, - [4443] = {.lex_state = 0}, - [4444] = {.lex_state = 0}, - [4445] = {.lex_state = 0}, - [4446] = {.lex_state = 0}, - [4447] = {.lex_state = 0}, - [4448] = {.lex_state = 126}, - [4449] = {.lex_state = 205}, - [4450] = {.lex_state = 126}, - [4451] = {.lex_state = 0}, - [4452] = {.lex_state = 126}, - [4453] = {.lex_state = 126}, - [4454] = {.lex_state = 126}, - [4455] = {.lex_state = 126}, - [4456] = {.lex_state = 126}, - [4457] = {.lex_state = 0}, - [4458] = {.lex_state = 0}, - [4459] = {.lex_state = 0}, - [4460] = {.lex_state = 0}, - [4461] = {.lex_state = 0}, - [4462] = {.lex_state = 0}, - [4463] = {.lex_state = 0}, - [4464] = {.lex_state = 0}, - [4465] = {.lex_state = 0}, - [4466] = {.lex_state = 0}, - [4467] = {.lex_state = 205}, - [4468] = {.lex_state = 0}, - [4469] = {.lex_state = 0}, - [4470] = {.lex_state = 126}, - [4471] = {.lex_state = 0}, - [4472] = {.lex_state = 126}, - [4473] = {.lex_state = 0}, - [4474] = {.lex_state = 126}, - [4475] = {.lex_state = 126}, - [4476] = {.lex_state = 0}, - [4477] = {.lex_state = 0}, - [4478] = {.lex_state = 205}, - [4479] = {.lex_state = 205}, - [4480] = {.lex_state = 126}, - [4481] = {.lex_state = 126}, - [4482] = {.lex_state = 66}, - [4483] = {.lex_state = 126}, - [4484] = {.lex_state = 126}, - [4485] = {.lex_state = 126}, - [4486] = {.lex_state = 205}, - [4487] = {.lex_state = 126}, - [4488] = {.lex_state = 126}, - [4489] = {.lex_state = 126}, - [4490] = {.lex_state = 205}, - [4491] = {.lex_state = 0}, - [4492] = {.lex_state = 126}, - [4493] = {.lex_state = 0}, - [4494] = {.lex_state = 0}, - [4495] = {.lex_state = 130}, - [4496] = {.lex_state = 0}, - [4497] = {.lex_state = 126}, - [4498] = {.lex_state = 0}, - [4499] = {.lex_state = 126}, - [4500] = {.lex_state = 126}, - [4501] = {.lex_state = 0}, - [4502] = {.lex_state = 66}, - [4503] = {.lex_state = 0}, - [4504] = {.lex_state = 0}, - [4505] = {.lex_state = 205}, - [4506] = {.lex_state = 0}, - [4507] = {.lex_state = 205}, - [4508] = {.lex_state = 0}, - [4509] = {.lex_state = 0}, - [4510] = {.lex_state = 0}, - [4511] = {.lex_state = 0}, - [4512] = {.lex_state = 0}, - [4513] = {.lex_state = 0}, - [4514] = {.lex_state = 0}, - [4515] = {.lex_state = 0}, - [4516] = {.lex_state = 0}, - [4517] = {.lex_state = 66}, - [4518] = {.lex_state = 126}, - [4519] = {.lex_state = 205}, - [4520] = {.lex_state = 126}, - [4521] = {.lex_state = 126}, - [4522] = {.lex_state = 0}, - [4523] = {.lex_state = 126}, - [4524] = {.lex_state = 205}, - [4525] = {.lex_state = 126}, - [4526] = {.lex_state = 0}, - [4527] = {.lex_state = 205}, - [4528] = {.lex_state = 126}, - [4529] = {.lex_state = 0}, - [4530] = {.lex_state = 205}, - [4531] = {.lex_state = 126}, - [4532] = {.lex_state = 126}, - [4533] = {.lex_state = 205}, - [4534] = {.lex_state = 126}, - [4535] = {.lex_state = 205}, - [4536] = {.lex_state = 205}, - [4537] = {.lex_state = 205}, - [4538] = {.lex_state = 126}, - [4539] = {.lex_state = 126}, - [4540] = {.lex_state = 126}, - [4541] = {.lex_state = 0}, - [4542] = {.lex_state = 0}, - [4543] = {.lex_state = 126}, - [4544] = {.lex_state = 126}, - [4545] = {.lex_state = 205}, - [4546] = {.lex_state = 66}, - [4547] = {.lex_state = 126}, - [4548] = {.lex_state = 67}, - [4549] = {.lex_state = 126}, - [4550] = {.lex_state = 126}, - [4551] = {.lex_state = 126}, - [4552] = {.lex_state = 0}, - [4553] = {.lex_state = 126}, - [4554] = {.lex_state = 126}, - [4555] = {.lex_state = 126}, - [4556] = {.lex_state = 205}, - [4557] = {.lex_state = 126}, - [4558] = {.lex_state = 126}, - [4559] = {.lex_state = 126}, - [4560] = {.lex_state = 126}, - [4561] = {.lex_state = 126}, - [4562] = {.lex_state = 126}, - [4563] = {.lex_state = 126}, - [4564] = {.lex_state = 126}, - [4565] = {.lex_state = 126}, - [4566] = {.lex_state = 126}, - [4567] = {.lex_state = 126}, - [4568] = {.lex_state = 205}, - [4569] = {.lex_state = 126}, - [4570] = {.lex_state = 126}, - [4571] = {.lex_state = 126}, - [4572] = {.lex_state = 126}, - [4573] = {.lex_state = 0}, - [4574] = {.lex_state = 0}, - [4575] = {.lex_state = 0}, - [4576] = {.lex_state = 126}, - [4577] = {.lex_state = 126}, - [4578] = {.lex_state = 126}, - [4579] = {.lex_state = 126}, - [4580] = {.lex_state = 126}, - [4581] = {.lex_state = 126}, - [4582] = {.lex_state = 126}, - [4583] = {.lex_state = 205}, - [4584] = {.lex_state = 130}, - [4585] = {.lex_state = 126}, - [4586] = {.lex_state = 126}, - [4587] = {.lex_state = 0}, - [4588] = {.lex_state = 126}, - [4589] = {.lex_state = 126}, - [4590] = {.lex_state = 66}, - [4591] = {.lex_state = 126}, - [4592] = {.lex_state = 126}, - [4593] = {.lex_state = 126}, - [4594] = {.lex_state = 126}, - [4595] = {.lex_state = 126}, - [4596] = {.lex_state = 126}, - [4597] = {.lex_state = 0}, - [4598] = {.lex_state = 0}, - [4599] = {.lex_state = 0}, - [4600] = {.lex_state = 0}, - [4601] = {.lex_state = 0}, - [4602] = {.lex_state = 205}, - [4603] = {.lex_state = 0}, - [4604] = {.lex_state = 0}, - [4605] = {.lex_state = 0}, - [4606] = {.lex_state = 0}, - [4607] = {.lex_state = 0}, - [4608] = {.lex_state = 0}, - [4609] = {.lex_state = 0}, - [4610] = {.lex_state = 0}, - [4611] = {.lex_state = 0}, - [4612] = {.lex_state = 0}, - [4613] = {.lex_state = 0}, - [4614] = {.lex_state = 205}, - [4615] = {.lex_state = 205}, - [4616] = {.lex_state = 0}, - [4617] = {.lex_state = 0}, - [4618] = {.lex_state = 126}, - [4619] = {.lex_state = 0}, - [4620] = {.lex_state = 0}, - [4621] = {.lex_state = 205}, - [4622] = {.lex_state = 205}, - [4623] = {.lex_state = 66}, - [4624] = {.lex_state = 0}, - [4625] = {.lex_state = 0}, - [4626] = {.lex_state = 205}, - [4627] = {.lex_state = 205}, - [4628] = {.lex_state = 205}, - [4629] = {.lex_state = 66}, - [4630] = {.lex_state = 0}, - [4631] = {.lex_state = 0}, - [4632] = {.lex_state = 0}, - [4633] = {.lex_state = 0}, - [4634] = {.lex_state = 205}, - [4635] = {.lex_state = 0}, - [4636] = {.lex_state = 0}, - [4637] = {.lex_state = 0}, - [4638] = {.lex_state = 0}, - [4639] = {.lex_state = 66}, - [4640] = {.lex_state = 0}, - [4641] = {.lex_state = 0}, - [4642] = {.lex_state = 0}, - [4643] = {.lex_state = 0}, - [4644] = {.lex_state = 0}, - [4645] = {.lex_state = 0}, - [4646] = {.lex_state = 0}, - [4647] = {.lex_state = 0}, - [4648] = {.lex_state = 0}, - [4649] = {.lex_state = 0}, - [4650] = {.lex_state = 0}, - [4651] = {.lex_state = 0}, - [4652] = {.lex_state = 0}, - [4653] = {.lex_state = 0}, - [4654] = {.lex_state = 0}, - [4655] = {.lex_state = 0}, - [4656] = {.lex_state = 0}, - [4657] = {.lex_state = 0}, - [4658] = {.lex_state = 205}, - [4659] = {.lex_state = 205}, - [4660] = {.lex_state = 0}, - [4661] = {.lex_state = 66}, - [4662] = {.lex_state = 126}, - [4663] = {.lex_state = 0}, - [4664] = {.lex_state = 0}, - [4665] = {.lex_state = 67}, - [4666] = {.lex_state = 0}, - [4667] = {.lex_state = 0}, - [4668] = {.lex_state = 205}, - [4669] = {.lex_state = 205}, - [4670] = {.lex_state = 0}, - [4671] = {.lex_state = 66}, - [4672] = {.lex_state = 126}, - [4673] = {.lex_state = 0}, - [4674] = {.lex_state = 205}, - [4675] = {.lex_state = 205}, - [4676] = {.lex_state = 0}, - [4677] = {.lex_state = 205}, - [4678] = {.lex_state = 0}, - [4679] = {.lex_state = 0}, - [4680] = {.lex_state = 0}, - [4681] = {.lex_state = 205}, - [4682] = {.lex_state = 205}, - [4683] = {.lex_state = 0}, - [4684] = {.lex_state = 205}, - [4685] = {.lex_state = 0}, - [4686] = {.lex_state = 126}, - [4687] = {.lex_state = 0}, - [4688] = {.lex_state = 66}, - [4689] = {.lex_state = 0}, - [4690] = {.lex_state = 0}, - [4691] = {.lex_state = 0}, - [4692] = {.lex_state = 205}, - [4693] = {.lex_state = 0}, - [4694] = {.lex_state = 205}, - [4695] = {.lex_state = 126}, - [4696] = {.lex_state = 205}, - [4697] = {.lex_state = 0}, - [4698] = {.lex_state = 0}, - [4699] = {.lex_state = 0}, - [4700] = {.lex_state = 0}, - [4701] = {.lex_state = 0}, - [4702] = {.lex_state = 0}, - [4703] = {.lex_state = 0}, - [4704] = {.lex_state = 0}, - [4705] = {.lex_state = 0}, - [4706] = {.lex_state = 0}, - [4707] = {.lex_state = 0}, - [4708] = {.lex_state = 126}, - [4709] = {.lex_state = 205}, - [4710] = {.lex_state = 0}, - [4711] = {.lex_state = 0}, - [4712] = {.lex_state = 67}, - [4713] = {.lex_state = 0}, - [4714] = {.lex_state = 66}, - [4715] = {.lex_state = 0}, - [4716] = {.lex_state = 0}, - [4717] = {.lex_state = 0}, - [4718] = {.lex_state = 66}, - [4719] = {.lex_state = 0}, - [4720] = {.lex_state = 0}, - [4721] = {.lex_state = 0}, - [4722] = {.lex_state = 0}, - [4723] = {.lex_state = 0}, - [4724] = {.lex_state = 0}, - [4725] = {.lex_state = 0}, - [4726] = {.lex_state = 0}, - [4727] = {.lex_state = 0}, - [4728] = {.lex_state = 205}, - [4729] = {.lex_state = 0}, - [4730] = {.lex_state = 0}, - [4731] = {.lex_state = 126}, - [4732] = {.lex_state = 0}, - [4733] = {.lex_state = 66}, - [4734] = {.lex_state = 205}, - [4735] = {.lex_state = 0}, - [4736] = {.lex_state = 130}, - [4737] = {.lex_state = 0}, - [4738] = {.lex_state = 126}, - [4739] = {.lex_state = 126}, - [4740] = {.lex_state = 0}, - [4741] = {.lex_state = 66}, - [4742] = {.lex_state = 205}, - [4743] = {.lex_state = 0}, - [4744] = {.lex_state = 205}, - [4745] = {.lex_state = 205}, - [4746] = {.lex_state = 205}, - [4747] = {.lex_state = 126}, - [4748] = {.lex_state = 0}, - [4749] = {.lex_state = 205}, - [4750] = {.lex_state = 126}, - [4751] = {.lex_state = 0}, - [4752] = {.lex_state = 205}, - [4753] = {.lex_state = 66}, - [4754] = {.lex_state = 126}, - [4755] = {.lex_state = 0}, - [4756] = {.lex_state = 0}, - [4757] = {.lex_state = 0}, - [4758] = {.lex_state = 0}, - [4759] = {.lex_state = 126}, - [4760] = {.lex_state = 126}, - [4761] = {.lex_state = 205}, - [4762] = {.lex_state = 67}, - [4763] = {.lex_state = 205}, - [4764] = {.lex_state = 0}, - [4765] = {.lex_state = 205}, - [4766] = {.lex_state = 205}, - [4767] = {.lex_state = 0}, - [4768] = {.lex_state = 0}, - [4769] = {.lex_state = 205}, - [4770] = {.lex_state = 205}, - [4771] = {.lex_state = 0}, - [4772] = {.lex_state = 205}, - [4773] = {.lex_state = 0}, - [4774] = {.lex_state = 126}, - [4775] = {.lex_state = 205}, - [4776] = {.lex_state = 0}, - [4777] = {.lex_state = 0}, - [4778] = {.lex_state = 205}, - [4779] = {.lex_state = 67}, - [4780] = {.lex_state = 0}, - [4781] = {.lex_state = 205}, - [4782] = {.lex_state = 126}, - [4783] = {.lex_state = 0}, - [4784] = {.lex_state = 66}, - [4785] = {.lex_state = 126}, - [4786] = {.lex_state = 0}, - [4787] = {.lex_state = 126}, - [4788] = {.lex_state = 126}, - [4789] = {.lex_state = 0}, - [4790] = {.lex_state = 205}, - [4791] = {.lex_state = 205}, - [4792] = {.lex_state = 0}, - [4793] = {.lex_state = 0}, - [4794] = {.lex_state = 205}, - [4795] = {.lex_state = 205}, - [4796] = {.lex_state = 0}, - [4797] = {.lex_state = 205}, - [4798] = {.lex_state = 126}, - [4799] = {.lex_state = 0}, - [4800] = {.lex_state = 0}, - [4801] = {.lex_state = 0}, - [4802] = {.lex_state = 0}, - [4803] = {.lex_state = 0}, - [4804] = {.lex_state = 0}, - [4805] = {.lex_state = 0}, - [4806] = {.lex_state = 0}, - [4807] = {.lex_state = 0}, - [4808] = {.lex_state = 0}, - [4809] = {.lex_state = 0}, - [4810] = {.lex_state = 0}, - [4811] = {.lex_state = 0}, - [4812] = {.lex_state = 205}, - [4813] = {.lex_state = 0}, - [4814] = {.lex_state = 0}, - [4815] = {.lex_state = 0}, - [4816] = {.lex_state = 0}, - [4817] = {.lex_state = 0}, - [4818] = {.lex_state = 0}, - [4819] = {.lex_state = 126}, - [4820] = {.lex_state = 0}, - [4821] = {.lex_state = 0}, - [4822] = {.lex_state = 130}, - [4823] = {.lex_state = 0}, - [4824] = {.lex_state = 0}, - [4825] = {.lex_state = 205}, - [4826] = {.lex_state = 126}, - [4827] = {.lex_state = 205}, - [4828] = {.lex_state = 0}, - [4829] = {.lex_state = 0}, - [4830] = {.lex_state = 67}, - [4831] = {.lex_state = 0}, - [4832] = {.lex_state = 126}, - [4833] = {.lex_state = 0}, - [4834] = {.lex_state = 0}, - [4835] = {.lex_state = 0}, - [4836] = {.lex_state = 205}, - [4837] = {.lex_state = 0}, - [4838] = {.lex_state = 0}, - [4839] = {.lex_state = 126}, - [4840] = {.lex_state = 54}, - [4841] = {.lex_state = 54}, - [4842] = {.lex_state = 0}, - [4843] = {.lex_state = 126}, - [4844] = {.lex_state = 0}, - [4845] = {.lex_state = 126}, - [4846] = {.lex_state = 0}, - [4847] = {.lex_state = 109}, - [4848] = {.lex_state = 0}, - [4849] = {.lex_state = 0}, - [4850] = {.lex_state = 109}, - [4851] = {.lex_state = 0}, - [4852] = {.lex_state = 0}, - [4853] = {.lex_state = 0}, - [4854] = {.lex_state = 0}, - [4855] = {.lex_state = 0}, - [4856] = {.lex_state = 0}, - [4857] = {.lex_state = 126}, - [4858] = {.lex_state = 0}, - [4859] = {.lex_state = 54}, - [4860] = {.lex_state = 0}, - [4861] = {.lex_state = 205}, - [4862] = {.lex_state = 0}, - [4863] = {.lex_state = 0}, - [4864] = {.lex_state = 150}, - [4865] = {.lex_state = 0}, - [4866] = {.lex_state = 0}, - [4867] = {.lex_state = 0}, - [4868] = {.lex_state = 0}, - [4869] = {.lex_state = 205}, - [4870] = {.lex_state = 54}, - [4871] = {.lex_state = 0}, - [4872] = {.lex_state = 0}, - [4873] = {.lex_state = 0}, - [4874] = {.lex_state = 0}, - [4875] = {.lex_state = 0}, - [4876] = {.lex_state = 0}, - [4877] = {.lex_state = 126}, - [4878] = {.lex_state = 0}, - [4879] = {.lex_state = 0}, - [4880] = {.lex_state = 109}, - [4881] = {.lex_state = 0}, - [4882] = {.lex_state = 0}, - [4883] = {.lex_state = 54}, - [4884] = {.lex_state = 0}, - [4885] = {.lex_state = 0}, - [4886] = {.lex_state = 0}, - [4887] = {.lex_state = 126}, - [4888] = {.lex_state = 54}, - [4889] = {.lex_state = 0}, - [4890] = {.lex_state = 0}, - [4891] = {.lex_state = 126}, - [4892] = {.lex_state = 126}, - [4893] = {.lex_state = 0}, - [4894] = {.lex_state = 0}, - [4895] = {.lex_state = 54}, - [4896] = {.lex_state = 109}, - [4897] = {.lex_state = 126}, - [4898] = {.lex_state = 0}, - [4899] = {.lex_state = 0}, - [4900] = {.lex_state = 0}, - [4901] = {.lex_state = 0}, - [4902] = {.lex_state = 54}, - [4903] = {.lex_state = 0}, - [4904] = {.lex_state = 0}, - [4905] = {.lex_state = 126}, - [4906] = {.lex_state = 0}, - [4907] = {.lex_state = 109}, - [4908] = {.lex_state = 0}, - [4909] = {.lex_state = 0}, - [4910] = {.lex_state = 0}, - [4911] = {.lex_state = 0}, - [4912] = {.lex_state = 0}, - [4913] = {.lex_state = 0}, - [4914] = {.lex_state = 54}, - [4915] = {.lex_state = 0}, - [4916] = {.lex_state = 126}, - [4917] = {.lex_state = 0}, - [4918] = {.lex_state = 0}, - [4919] = {.lex_state = 205}, - [4920] = {.lex_state = 126}, - [4921] = {.lex_state = 0}, - [4922] = {.lex_state = 0}, - [4923] = {.lex_state = 0}, - [4924] = {.lex_state = 0}, - [4925] = {.lex_state = 126}, - [4926] = {.lex_state = 54}, - [4927] = {.lex_state = 126}, - [4928] = {.lex_state = 0}, - [4929] = {.lex_state = 0}, - [4930] = {.lex_state = 54}, - [4931] = {.lex_state = 126}, - [4932] = {.lex_state = 0}, - [4933] = {.lex_state = 0}, - [4934] = {.lex_state = 0}, - [4935] = {.lex_state = 54}, - [4936] = {.lex_state = 0}, - [4937] = {.lex_state = 54}, - [4938] = {.lex_state = 0}, - [4939] = {.lex_state = 150}, - [4940] = {.lex_state = 109}, - [4941] = {.lex_state = 0}, - [4942] = {.lex_state = 0}, - [4943] = {.lex_state = 109}, - [4944] = {.lex_state = 205}, - [4945] = {.lex_state = 0}, - [4946] = {.lex_state = 150}, - [4947] = {.lex_state = 0}, - [4948] = {.lex_state = 0}, - [4949] = {.lex_state = 126}, - [4950] = {.lex_state = 0}, - [4951] = {.lex_state = 0}, - [4952] = {.lex_state = 0}, - [4953] = {.lex_state = 0}, - [4954] = {.lex_state = 0}, - [4955] = {.lex_state = 205}, - [4956] = {.lex_state = 205}, - [4957] = {.lex_state = 0}, - [4958] = {.lex_state = 0}, - [4959] = {.lex_state = 0}, - [4960] = {.lex_state = 0}, - [4961] = {.lex_state = 126}, - [4962] = {.lex_state = 0}, - [4963] = {.lex_state = 0}, - [4964] = {.lex_state = 0}, - [4965] = {.lex_state = 0}, - [4966] = {.lex_state = 0}, - [4967] = {.lex_state = 0}, - [4968] = {.lex_state = 109}, - [4969] = {.lex_state = 54}, - [4970] = {.lex_state = 126}, - [4971] = {.lex_state = 0}, - [4972] = {.lex_state = 109}, - [4973] = {.lex_state = 109}, - [4974] = {.lex_state = 0}, - [4975] = {.lex_state = 205}, - [4976] = {.lex_state = 0}, - [4977] = {.lex_state = 0}, - [4978] = {.lex_state = 150}, - [4979] = {.lex_state = 126}, - [4980] = {.lex_state = 0}, - [4981] = {.lex_state = 205}, - [4982] = {.lex_state = 0}, - [4983] = {.lex_state = 0}, - [4984] = {.lex_state = 0}, - [4985] = {.lex_state = 205}, - [4986] = {.lex_state = 0}, - [4987] = {.lex_state = 205}, - [4988] = {.lex_state = 0}, - [4989] = {.lex_state = 205}, - [4990] = {.lex_state = 0}, - [4991] = {.lex_state = 205}, - [4992] = {.lex_state = 0}, - [4993] = {.lex_state = 0}, - [4994] = {.lex_state = 205}, - [4995] = {.lex_state = 54}, - [4996] = {.lex_state = 0}, - [4997] = {.lex_state = 126}, - [4998] = {.lex_state = 205}, - [4999] = {.lex_state = 126}, - [5000] = {.lex_state = 0}, - [5001] = {.lex_state = 126}, - [5002] = {.lex_state = 0}, - [5003] = {.lex_state = 205}, - [5004] = {.lex_state = 126}, - [5005] = {.lex_state = 0}, - [5006] = {.lex_state = 0}, - [5007] = {.lex_state = 0}, - [5008] = {.lex_state = 126}, - [5009] = {.lex_state = 0}, - [5010] = {.lex_state = 205}, - [5011] = {.lex_state = 0}, - [5012] = {.lex_state = 0}, - [5013] = {.lex_state = 0}, - [5014] = {.lex_state = 150}, - [5015] = {.lex_state = 0}, - [5016] = {.lex_state = 0}, - [5017] = {.lex_state = 0}, - [5018] = {.lex_state = 0}, - [5019] = {.lex_state = 205}, - [5020] = {.lex_state = 0}, - [5021] = {.lex_state = 0}, - [5022] = {.lex_state = 0}, - [5023] = {.lex_state = 0}, - [5024] = {.lex_state = 0}, - [5025] = {.lex_state = 126}, - [5026] = {.lex_state = 0}, - [5027] = {.lex_state = 0}, - [5028] = {.lex_state = 0}, - [5029] = {.lex_state = 126}, - [5030] = {.lex_state = 0}, - [5031] = {.lex_state = 0}, - [5032] = {.lex_state = 205}, - [5033] = {.lex_state = 126}, - [5034] = {.lex_state = 0}, - [5035] = {.lex_state = 0}, - [5036] = {.lex_state = 0}, - [5037] = {.lex_state = 0}, - [5038] = {.lex_state = 130}, - [5039] = {.lex_state = 54}, - [5040] = {.lex_state = 109}, - [5041] = {.lex_state = 54}, - [5042] = {.lex_state = 54}, - [5043] = {.lex_state = 0}, - [5044] = {.lex_state = 0}, - [5045] = {.lex_state = 126}, - [5046] = {.lex_state = 54}, - [5047] = {.lex_state = 0}, - [5048] = {.lex_state = 205}, - [5049] = {.lex_state = 0}, - [5050] = {.lex_state = 0}, - [5051] = {.lex_state = 0}, - [5052] = {.lex_state = 205}, - [5053] = {.lex_state = 205}, - [5054] = {.lex_state = 205}, - [5055] = {.lex_state = 109}, - [5056] = {.lex_state = 0}, - [5057] = {.lex_state = 126}, - [5058] = {.lex_state = 0}, - [5059] = {.lex_state = 0}, - [5060] = {.lex_state = 0}, - [5061] = {.lex_state = 0}, - [5062] = {.lex_state = 0}, - [5063] = {.lex_state = 0}, - [5064] = {.lex_state = 54}, - [5065] = {.lex_state = 54}, - [5066] = {.lex_state = 54}, - [5067] = {.lex_state = 0}, - [5068] = {.lex_state = 0}, - [5069] = {.lex_state = 0}, - [5070] = {.lex_state = 109}, - [5071] = {.lex_state = 0}, - [5072] = {.lex_state = 0}, - [5073] = {.lex_state = 0}, - [5074] = {.lex_state = 205}, - [5075] = {.lex_state = 0}, - [5076] = {.lex_state = 0}, - [5077] = {.lex_state = 0}, - [5078] = {.lex_state = 0}, - [5079] = {.lex_state = 0}, - [5080] = {.lex_state = 126}, - [5081] = {.lex_state = 0}, - [5082] = {.lex_state = 0}, - [5083] = {.lex_state = 0}, - [5084] = {.lex_state = 0}, - [5085] = {.lex_state = 205}, - [5086] = {.lex_state = 0}, - [5087] = {.lex_state = 54}, - [5088] = {.lex_state = 150}, - [5089] = {.lex_state = 0}, - [5090] = {.lex_state = 0}, - [5091] = {.lex_state = 0}, - [5092] = {.lex_state = 0}, - [5093] = {.lex_state = 54}, - [5094] = {.lex_state = 109}, - [5095] = {.lex_state = 0}, - [5096] = {.lex_state = 54}, - [5097] = {.lex_state = 0}, - [5098] = {.lex_state = 0}, - [5099] = {.lex_state = 0}, - [5100] = {.lex_state = 0}, - [5101] = {.lex_state = 205}, - [5102] = {.lex_state = 0}, - [5103] = {.lex_state = 0}, - [5104] = {.lex_state = 0}, - [5105] = {.lex_state = 0}, - [5106] = {.lex_state = 54}, - [5107] = {.lex_state = 54}, - [5108] = {.lex_state = 0}, - [5109] = {.lex_state = 0}, - [5110] = {.lex_state = 0}, - [5111] = {.lex_state = 205}, - [5112] = {.lex_state = 0}, - [5113] = {.lex_state = 205}, - [5114] = {.lex_state = 205}, - [5115] = {.lex_state = 150}, - [5116] = {.lex_state = 205}, - [5117] = {.lex_state = 0}, - [5118] = {.lex_state = 0}, - [5119] = {.lex_state = 205}, - [5120] = {.lex_state = 109}, - [5121] = {.lex_state = 0}, - [5122] = {.lex_state = 0}, - [5123] = {.lex_state = 109}, - [5124] = {.lex_state = 109}, - [5125] = {.lex_state = 0}, - [5126] = {.lex_state = 126}, - [5127] = {.lex_state = 0}, - [5128] = {.lex_state = 205}, - [5129] = {.lex_state = 109}, - [5130] = {.lex_state = 109}, - [5131] = {.lex_state = 0}, - [5132] = {.lex_state = 0}, - [5133] = {.lex_state = 0}, - [5134] = {.lex_state = 0}, - [5135] = {.lex_state = 126}, - [5136] = {.lex_state = 0}, - [5137] = {.lex_state = 0}, - [5138] = {.lex_state = 126}, - [5139] = {.lex_state = 126}, - [5140] = {.lex_state = 0}, - [5141] = {.lex_state = 0}, - [5142] = {.lex_state = 0}, - [5143] = {.lex_state = 0}, - [5144] = {.lex_state = 0}, - [5145] = {.lex_state = 126}, - [5146] = {.lex_state = 0}, - [5147] = {.lex_state = 0}, - [5148] = {.lex_state = 126}, - [5149] = {.lex_state = 0}, - [5150] = {.lex_state = 109}, - [5151] = {.lex_state = 109}, - [5152] = {.lex_state = 0}, - [5153] = {.lex_state = 126}, - [5154] = {.lex_state = 0}, - [5155] = {.lex_state = 205}, - [5156] = {.lex_state = 205}, - [5157] = {.lex_state = 0}, - [5158] = {.lex_state = 54}, - [5159] = {.lex_state = 126}, - [5160] = {.lex_state = 205}, - [5161] = {.lex_state = 205}, - [5162] = {.lex_state = 0}, - [5163] = {.lex_state = 109}, - [5164] = {.lex_state = 0}, - [5165] = {.lex_state = 126}, - [5166] = {.lex_state = 109}, - [5167] = {.lex_state = 54}, - [5168] = {.lex_state = 0}, - [5169] = {.lex_state = 0}, - [5170] = {.lex_state = 109}, - [5171] = {.lex_state = 0}, - [5172] = {.lex_state = 0}, - [5173] = {.lex_state = 0}, - [5174] = {.lex_state = 54}, - [5175] = {.lex_state = 0}, - [5176] = {.lex_state = 0}, - [5177] = {.lex_state = 54}, - [5178] = {.lex_state = 109}, - [5179] = {.lex_state = 0}, - [5180] = {.lex_state = 205}, - [5181] = {.lex_state = 0}, - [5182] = {.lex_state = 109}, - [5183] = {.lex_state = 126}, - [5184] = {.lex_state = 0}, - [5185] = {.lex_state = 0}, - [5186] = {.lex_state = 0}, - [5187] = {.lex_state = 0}, - [5188] = {.lex_state = 126}, - [5189] = {.lex_state = 0}, - [5190] = {.lex_state = 126}, - [5191] = {.lex_state = 0}, - [5192] = {.lex_state = 205}, - [5193] = {.lex_state = 205}, - [5194] = {.lex_state = 54}, - [5195] = {.lex_state = 126}, - [5196] = {.lex_state = 109}, - [5197] = {.lex_state = 109}, - [5198] = {.lex_state = 0}, - [5199] = {.lex_state = 0}, - [5200] = {.lex_state = 126}, - [5201] = {.lex_state = 0}, - [5202] = {.lex_state = 0}, - [5203] = {.lex_state = 0}, - [5204] = {.lex_state = 205}, - [5205] = {.lex_state = 0}, - [5206] = {.lex_state = 0}, - [5207] = {.lex_state = 0}, - [5208] = {.lex_state = 126}, - [5209] = {.lex_state = 126}, - [5210] = {.lex_state = 205}, - [5211] = {.lex_state = 0}, - [5212] = {.lex_state = 109}, - [5213] = {.lex_state = 205}, - [5214] = {.lex_state = 205}, - [5215] = {.lex_state = 205}, - [5216] = {.lex_state = 0}, - [5217] = {.lex_state = 0}, - [5218] = {.lex_state = 0}, - [5219] = {.lex_state = 126}, - [5220] = {.lex_state = 54}, - [5221] = {.lex_state = 126}, - [5222] = {.lex_state = 126}, - [5223] = {.lex_state = 150}, - [5224] = {.lex_state = 0}, - [5225] = {.lex_state = 0}, - [5226] = {.lex_state = 0}, - [5227] = {.lex_state = 54}, - [5228] = {.lex_state = 54}, - [5229] = {.lex_state = 0}, - [5230] = {.lex_state = 126}, - [5231] = {.lex_state = 126}, - [5232] = {.lex_state = 205}, - [5233] = {.lex_state = 205}, - [5234] = {.lex_state = 205}, - [5235] = {.lex_state = 0}, - [5236] = {.lex_state = 0}, - [5237] = {.lex_state = 126}, - [5238] = {.lex_state = 126}, - [5239] = {.lex_state = 0}, - [5240] = {.lex_state = 0}, - [5241] = {.lex_state = 0}, - [5242] = {.lex_state = 0}, - [5243] = {.lex_state = 0}, - [5244] = {.lex_state = 205}, - [5245] = {.lex_state = 205}, - [5246] = {.lex_state = 109}, - [5247] = {.lex_state = 109}, - [5248] = {.lex_state = 54}, - [5249] = {.lex_state = 54}, - [5250] = {.lex_state = 109}, - [5251] = {.lex_state = 54}, - [5252] = {.lex_state = 126}, - [5253] = {.lex_state = 205}, - [5254] = {.lex_state = 205}, - [5255] = {.lex_state = 0}, - [5256] = {.lex_state = 0}, - [5257] = {.lex_state = 205}, - [5258] = {.lex_state = 0}, - [5259] = {.lex_state = 126}, - [5260] = {.lex_state = 205}, - [5261] = {.lex_state = 0}, - [5262] = {.lex_state = 0}, - [5263] = {.lex_state = 0}, - [5264] = {.lex_state = 0}, - [5265] = {.lex_state = 0}, - [5266] = {.lex_state = 205}, - [5267] = {.lex_state = 0}, - [5268] = {.lex_state = 54}, - [5269] = {.lex_state = 0}, -}; - -enum { - ts_external_token_raw_string_literal = 0, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token_raw_string_literal] = sym_raw_string_literal, -}; - -static const bool ts_external_scanner_states[2][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token_raw_string_literal] = true, - }, + [1] = {.lex_state = 344}, + [2] = {.lex_state = 176}, + [3] = {.lex_state = 176}, + [4] = {.lex_state = 176}, + [5] = {.lex_state = 176}, + [6] = {.lex_state = 176}, + [7] = {.lex_state = 176}, + [8] = {.lex_state = 176}, + [9] = {.lex_state = 176}, + [10] = {.lex_state = 176}, + [11] = {.lex_state = 176}, + [12] = {.lex_state = 176}, + [13] = {.lex_state = 174}, + [14] = {.lex_state = 174}, + [15] = {.lex_state = 174}, + [16] = {.lex_state = 174}, + [17] = {.lex_state = 174}, + [18] = {.lex_state = 174}, + [19] = {.lex_state = 174}, + [20] = {.lex_state = 174}, + [21] = {.lex_state = 174}, + [22] = {.lex_state = 174}, + [23] = {.lex_state = 174}, + [24] = {.lex_state = 174}, + [25] = {.lex_state = 174}, + [26] = {.lex_state = 174}, + [27] = {.lex_state = 174}, + [28] = {.lex_state = 174}, + [29] = {.lex_state = 174}, + [30] = {.lex_state = 174}, + [31] = {.lex_state = 174}, + [32] = {.lex_state = 174}, + [33] = {.lex_state = 174}, + [34] = {.lex_state = 178}, + [35] = {.lex_state = 176}, + [36] = {.lex_state = 178}, + [37] = {.lex_state = 176}, + [38] = {.lex_state = 176}, + [39] = {.lex_state = 176}, + [40] = {.lex_state = 176}, + [41] = {.lex_state = 176}, + [42] = {.lex_state = 176}, + [43] = {.lex_state = 176}, + [44] = {.lex_state = 176}, + [45] = {.lex_state = 176}, + [46] = {.lex_state = 176}, + [47] = {.lex_state = 176}, + [48] = {.lex_state = 176}, + [49] = {.lex_state = 176}, + [50] = {.lex_state = 176}, + [51] = {.lex_state = 176}, + [52] = {.lex_state = 176}, + [53] = {.lex_state = 176}, + [54] = {.lex_state = 176}, + [55] = {.lex_state = 176}, + [56] = {.lex_state = 176}, + [57] = {.lex_state = 176}, + [58] = {.lex_state = 176}, + [59] = {.lex_state = 176}, + [60] = {.lex_state = 176}, + [61] = {.lex_state = 178}, + [62] = {.lex_state = 176}, + [63] = {.lex_state = 176}, + [64] = {.lex_state = 176}, + [65] = {.lex_state = 176}, + [66] = {.lex_state = 176}, + [67] = {.lex_state = 176}, + [68] = {.lex_state = 176}, + [69] = {.lex_state = 176}, + [70] = {.lex_state = 176}, + [71] = {.lex_state = 176}, + [72] = {.lex_state = 176}, + [73] = {.lex_state = 176}, + [74] = {.lex_state = 176}, + [75] = {.lex_state = 176}, + [76] = {.lex_state = 176}, + [77] = {.lex_state = 176}, + [78] = {.lex_state = 176}, + [79] = {.lex_state = 176}, + [80] = {.lex_state = 344}, + [81] = {.lex_state = 344}, + [82] = {.lex_state = 174}, + [83] = {.lex_state = 174}, + [84] = {.lex_state = 174}, + [85] = {.lex_state = 174}, + [86] = {.lex_state = 174}, + [87] = {.lex_state = 344}, + [88] = {.lex_state = 344}, + [89] = {.lex_state = 344}, + [90] = {.lex_state = 344}, + [91] = {.lex_state = 344}, + [92] = {.lex_state = 178}, + [93] = {.lex_state = 178}, + [94] = {.lex_state = 178}, + [95] = {.lex_state = 176}, + [96] = {.lex_state = 176}, + [97] = {.lex_state = 176}, + [98] = {.lex_state = 176}, + [99] = {.lex_state = 178}, + [100] = {.lex_state = 178}, + [101] = {.lex_state = 176}, + [102] = {.lex_state = 177}, + [103] = {.lex_state = 177}, + [104] = {.lex_state = 177}, + [105] = {.lex_state = 177}, + [106] = {.lex_state = 177}, + [107] = {.lex_state = 177}, + [108] = {.lex_state = 177}, + [109] = {.lex_state = 177}, + [110] = {.lex_state = 177}, + [111] = {.lex_state = 177}, + [112] = {.lex_state = 177}, + [113] = {.lex_state = 177}, + [114] = {.lex_state = 177}, + [115] = {.lex_state = 177}, + [116] = {.lex_state = 177}, + [117] = {.lex_state = 177}, + [118] = {.lex_state = 177}, + [119] = {.lex_state = 177}, + [120] = {.lex_state = 177}, + [121] = {.lex_state = 177}, + [122] = {.lex_state = 177}, + [123] = {.lex_state = 177}, + [124] = {.lex_state = 177}, + [125] = {.lex_state = 177}, + [126] = {.lex_state = 177}, + [127] = {.lex_state = 177}, + [128] = {.lex_state = 177}, + [129] = {.lex_state = 177}, + [130] = {.lex_state = 344}, + [131] = {.lex_state = 344}, + [132] = {.lex_state = 176}, + [133] = {.lex_state = 176}, + [134] = {.lex_state = 176}, + [135] = {.lex_state = 174}, + [136] = {.lex_state = 174}, + [137] = {.lex_state = 176}, + [138] = {.lex_state = 174}, + [139] = {.lex_state = 174}, + [140] = {.lex_state = 174}, + [141] = {.lex_state = 174}, + [142] = {.lex_state = 174}, + [143] = {.lex_state = 174}, + [144] = {.lex_state = 174}, + [145] = {.lex_state = 344}, + [146] = {.lex_state = 344}, + [147] = {.lex_state = 174}, + [148] = {.lex_state = 174}, + [149] = {.lex_state = 174}, + [150] = {.lex_state = 174}, + [151] = {.lex_state = 174}, + [152] = {.lex_state = 174}, + [153] = {.lex_state = 174}, + [154] = {.lex_state = 174}, + [155] = {.lex_state = 174}, + [156] = {.lex_state = 174}, + [157] = {.lex_state = 174}, + [158] = {.lex_state = 174}, + [159] = {.lex_state = 174}, + [160] = {.lex_state = 174}, + [161] = {.lex_state = 174}, + [162] = {.lex_state = 174}, + [163] = {.lex_state = 174}, + [164] = {.lex_state = 174}, + [165] = {.lex_state = 174}, + [166] = {.lex_state = 174}, + [167] = {.lex_state = 174}, + [168] = {.lex_state = 174}, + [169] = {.lex_state = 177}, + [170] = {.lex_state = 177}, + [171] = {.lex_state = 174}, + [172] = {.lex_state = 174}, + [173] = {.lex_state = 174}, + [174] = {.lex_state = 174}, + [175] = {.lex_state = 174}, + [176] = {.lex_state = 174}, + [177] = {.lex_state = 174}, + [178] = {.lex_state = 174}, + [179] = {.lex_state = 174}, + [180] = {.lex_state = 177}, + [181] = {.lex_state = 174}, + [182] = {.lex_state = 174}, + [183] = {.lex_state = 174}, + [184] = {.lex_state = 174}, + [185] = {.lex_state = 174}, + [186] = {.lex_state = 174}, + [187] = {.lex_state = 174}, + [188] = {.lex_state = 174}, + [189] = {.lex_state = 174}, + [190] = {.lex_state = 174}, + [191] = {.lex_state = 174}, + [192] = {.lex_state = 174}, + [193] = {.lex_state = 174}, + [194] = {.lex_state = 174}, + [195] = {.lex_state = 174}, + [196] = {.lex_state = 174}, + [197] = {.lex_state = 177}, + [198] = {.lex_state = 174}, + [199] = {.lex_state = 174}, + [200] = {.lex_state = 174}, + [201] = {.lex_state = 174}, + [202] = {.lex_state = 174}, + [203] = {.lex_state = 174}, + [204] = {.lex_state = 177}, + [205] = {.lex_state = 174}, + [206] = {.lex_state = 174}, + [207] = {.lex_state = 174}, + [208] = {.lex_state = 174}, + [209] = {.lex_state = 176}, + [210] = {.lex_state = 174}, + [211] = {.lex_state = 344}, + [212] = {.lex_state = 174}, + [213] = {.lex_state = 174}, + [214] = {.lex_state = 174}, + [215] = {.lex_state = 174}, + [216] = {.lex_state = 174}, + [217] = {.lex_state = 174}, + [218] = {.lex_state = 176}, + [219] = {.lex_state = 174}, + [220] = {.lex_state = 174}, + [221] = {.lex_state = 174}, + [222] = {.lex_state = 174}, + [223] = {.lex_state = 174}, + [224] = {.lex_state = 174}, + [225] = {.lex_state = 174}, + [226] = {.lex_state = 178}, + [227] = {.lex_state = 174}, + [228] = {.lex_state = 174}, + [229] = {.lex_state = 174}, + [230] = {.lex_state = 174}, + [231] = {.lex_state = 174}, + [232] = {.lex_state = 174}, + [233] = {.lex_state = 174}, + [234] = {.lex_state = 174}, + [235] = {.lex_state = 174}, + [236] = {.lex_state = 174}, + [237] = {.lex_state = 174}, + [238] = {.lex_state = 174}, + [239] = {.lex_state = 174}, + [240] = {.lex_state = 174}, + [241] = {.lex_state = 174}, + [242] = {.lex_state = 174}, + [243] = {.lex_state = 174}, + [244] = {.lex_state = 344}, + [245] = {.lex_state = 174}, + [246] = {.lex_state = 174}, + [247] = {.lex_state = 174}, + [248] = {.lex_state = 174}, + [249] = {.lex_state = 178}, + [250] = {.lex_state = 174}, + [251] = {.lex_state = 174}, + [252] = {.lex_state = 344}, + [253] = {.lex_state = 174}, + [254] = {.lex_state = 174}, + [255] = {.lex_state = 174}, + [256] = {.lex_state = 174}, + [257] = {.lex_state = 174}, + [258] = {.lex_state = 174}, + [259] = {.lex_state = 174}, + [260] = {.lex_state = 174}, + [261] = {.lex_state = 174}, + [262] = {.lex_state = 174}, + [263] = {.lex_state = 177}, + [264] = {.lex_state = 174}, + [265] = {.lex_state = 174}, + [266] = {.lex_state = 174}, + [267] = {.lex_state = 177}, + [268] = {.lex_state = 174}, + [269] = {.lex_state = 177}, + [270] = {.lex_state = 174}, + [271] = {.lex_state = 177}, + [272] = {.lex_state = 344}, + [273] = {.lex_state = 344}, + [274] = {.lex_state = 176}, + [275] = {.lex_state = 344}, + [276] = {.lex_state = 344}, + [277] = {.lex_state = 344}, + [278] = {.lex_state = 344}, + [279] = {.lex_state = 344}, + [280] = {.lex_state = 344}, + [281] = {.lex_state = 344}, + [282] = {.lex_state = 344}, + [283] = {.lex_state = 344}, + [284] = {.lex_state = 344}, + [285] = {.lex_state = 344}, + [286] = {.lex_state = 344}, + [287] = {.lex_state = 344}, + [288] = {.lex_state = 344}, + [289] = {.lex_state = 344}, + [290] = {.lex_state = 344}, + [291] = {.lex_state = 344}, + [292] = {.lex_state = 344}, + [293] = {.lex_state = 344}, + [294] = {.lex_state = 344}, + [295] = {.lex_state = 344}, + [296] = {.lex_state = 344}, + [297] = {.lex_state = 344}, + [298] = {.lex_state = 344}, + [299] = {.lex_state = 344}, + [300] = {.lex_state = 344}, + [301] = {.lex_state = 344}, + [302] = {.lex_state = 344}, + [303] = {.lex_state = 344}, + [304] = {.lex_state = 344}, + [305] = {.lex_state = 344}, + [306] = {.lex_state = 344}, + [307] = {.lex_state = 177}, + [308] = {.lex_state = 344}, + [309] = {.lex_state = 344}, + [310] = {.lex_state = 178}, + [311] = {.lex_state = 178}, + [312] = {.lex_state = 177}, + [313] = {.lex_state = 344}, + [314] = {.lex_state = 344}, + [315] = {.lex_state = 344}, + [316] = {.lex_state = 176}, + [317] = {.lex_state = 344}, + [318] = {.lex_state = 178}, + [319] = {.lex_state = 178}, + [320] = {.lex_state = 176}, + [321] = {.lex_state = 178}, + [322] = {.lex_state = 178}, + [323] = {.lex_state = 344}, + [324] = {.lex_state = 178}, + [325] = {.lex_state = 176}, + [326] = {.lex_state = 176}, + [327] = {.lex_state = 344}, + [328] = {.lex_state = 176}, + [329] = {.lex_state = 176}, + [330] = {.lex_state = 178}, + [331] = {.lex_state = 176}, + [332] = {.lex_state = 178}, + [333] = {.lex_state = 176}, + [334] = {.lex_state = 176}, + [335] = {.lex_state = 178}, + [336] = {.lex_state = 178}, + [337] = {.lex_state = 178}, + [338] = {.lex_state = 178}, + [339] = {.lex_state = 176}, + [340] = {.lex_state = 178}, + [341] = {.lex_state = 178}, + [342] = {.lex_state = 178}, + [343] = {.lex_state = 178}, + [344] = {.lex_state = 176}, + [345] = {.lex_state = 178}, + [346] = {.lex_state = 178}, + [347] = {.lex_state = 178}, + [348] = {.lex_state = 178}, + [349] = {.lex_state = 178}, + [350] = {.lex_state = 176}, + [351] = {.lex_state = 178}, + [352] = {.lex_state = 176}, + [353] = {.lex_state = 178}, + [354] = {.lex_state = 176}, + [355] = {.lex_state = 176}, + [356] = {.lex_state = 176}, + [357] = {.lex_state = 178}, + [358] = {.lex_state = 178}, + [359] = {.lex_state = 176}, + [360] = {.lex_state = 176}, + [361] = {.lex_state = 178}, + [362] = {.lex_state = 178}, + [363] = {.lex_state = 178}, + [364] = {.lex_state = 176}, + [365] = {.lex_state = 178}, + [366] = {.lex_state = 176}, + [367] = {.lex_state = 176}, + [368] = {.lex_state = 178}, + [369] = {.lex_state = 178}, + [370] = {.lex_state = 178}, + [371] = {.lex_state = 176}, + [372] = {.lex_state = 176}, + [373] = {.lex_state = 178}, + [374] = {.lex_state = 178}, + [375] = {.lex_state = 178}, + [376] = {.lex_state = 178}, + [377] = {.lex_state = 176}, + [378] = {.lex_state = 176}, + [379] = {.lex_state = 176}, + [380] = {.lex_state = 176}, + [381] = {.lex_state = 176}, + [382] = {.lex_state = 176}, + [383] = {.lex_state = 178}, + [384] = {.lex_state = 178}, + [385] = {.lex_state = 178}, + [386] = {.lex_state = 178}, + [387] = {.lex_state = 176}, + [388] = {.lex_state = 176}, + [389] = {.lex_state = 176}, + [390] = {.lex_state = 176}, + [391] = {.lex_state = 176}, + [392] = {.lex_state = 176}, + [393] = {.lex_state = 178}, + [394] = {.lex_state = 176}, + [395] = {.lex_state = 176}, + [396] = {.lex_state = 176}, + [397] = {.lex_state = 176}, + [398] = {.lex_state = 176}, + [399] = {.lex_state = 176}, + [400] = {.lex_state = 176}, + [401] = {.lex_state = 178}, + [402] = {.lex_state = 178}, + [403] = {.lex_state = 176}, + [404] = {.lex_state = 176}, + [405] = {.lex_state = 176}, + [406] = {.lex_state = 178}, + [407] = {.lex_state = 176}, + [408] = {.lex_state = 344}, + [409] = {.lex_state = 344}, + [410] = {.lex_state = 344}, + [411] = {.lex_state = 344}, + [412] = {.lex_state = 176}, + [413] = {.lex_state = 176}, + [414] = {.lex_state = 344}, + [415] = {.lex_state = 176}, + [416] = {.lex_state = 344}, + [417] = {.lex_state = 176}, + [418] = {.lex_state = 176}, + [419] = {.lex_state = 344}, + [420] = {.lex_state = 176}, + [421] = {.lex_state = 344}, + [422] = {.lex_state = 344}, + [423] = {.lex_state = 176}, + [424] = {.lex_state = 178}, + [425] = {.lex_state = 344}, + [426] = {.lex_state = 178}, + [427] = {.lex_state = 344}, + [428] = {.lex_state = 178}, + [429] = {.lex_state = 178}, + [430] = {.lex_state = 178}, + [431] = {.lex_state = 344}, + [432] = {.lex_state = 344}, + [433] = {.lex_state = 178}, + [434] = {.lex_state = 344}, + [435] = {.lex_state = 344}, + [436] = {.lex_state = 176}, + [437] = {.lex_state = 176}, + [438] = {.lex_state = 344}, + [439] = {.lex_state = 344}, + [440] = {.lex_state = 176}, + [441] = {.lex_state = 344}, + [442] = {.lex_state = 178}, + [443] = {.lex_state = 344}, + [444] = {.lex_state = 344}, + [445] = {.lex_state = 178}, + [446] = {.lex_state = 178}, + [447] = {.lex_state = 178}, + [448] = {.lex_state = 344}, + [449] = {.lex_state = 344}, + [450] = {.lex_state = 178}, + [451] = {.lex_state = 178}, + [452] = {.lex_state = 178}, + [453] = {.lex_state = 178}, + [454] = {.lex_state = 178}, + [455] = {.lex_state = 344}, + [456] = {.lex_state = 178}, + [457] = {.lex_state = 178}, + [458] = {.lex_state = 178}, + [459] = {.lex_state = 344}, + [460] = {.lex_state = 344}, + [461] = {.lex_state = 344}, + [462] = {.lex_state = 344}, + [463] = {.lex_state = 178}, + [464] = {.lex_state = 178}, + [465] = {.lex_state = 178}, + [466] = {.lex_state = 178}, + [467] = {.lex_state = 178}, + [468] = {.lex_state = 178}, + [469] = {.lex_state = 178}, + [470] = {.lex_state = 178}, + [471] = {.lex_state = 178}, + [472] = {.lex_state = 176}, + [473] = {.lex_state = 178}, + [474] = {.lex_state = 178}, + [475] = {.lex_state = 344}, + [476] = {.lex_state = 176}, + [477] = {.lex_state = 344}, + [478] = {.lex_state = 344}, + [479] = {.lex_state = 344}, + [480] = {.lex_state = 176}, + [481] = {.lex_state = 178}, + [482] = {.lex_state = 178}, + [483] = {.lex_state = 178}, + [484] = {.lex_state = 178}, + [485] = {.lex_state = 178}, + [486] = {.lex_state = 178}, + [487] = {.lex_state = 176}, + [488] = {.lex_state = 176}, + [489] = {.lex_state = 178}, + [490] = {.lex_state = 344}, + [491] = {.lex_state = 178}, + [492] = {.lex_state = 178}, + [493] = {.lex_state = 178}, + [494] = {.lex_state = 178}, + [495] = {.lex_state = 178}, + [496] = {.lex_state = 178}, + [497] = {.lex_state = 176}, + [498] = {.lex_state = 344}, + [499] = {.lex_state = 178}, + [500] = {.lex_state = 178}, + [501] = {.lex_state = 344}, + [502] = {.lex_state = 178}, + [503] = {.lex_state = 178}, + [504] = {.lex_state = 178}, + [505] = {.lex_state = 178}, + [506] = {.lex_state = 178}, + [507] = {.lex_state = 178}, + [508] = {.lex_state = 178}, + [509] = {.lex_state = 344}, + [510] = {.lex_state = 344}, + [511] = {.lex_state = 178}, + [512] = {.lex_state = 178}, + [513] = {.lex_state = 176}, + [514] = {.lex_state = 176}, + [515] = {.lex_state = 176}, + [516] = {.lex_state = 178}, + [517] = {.lex_state = 178}, + [518] = {.lex_state = 178}, + [519] = {.lex_state = 344}, + [520] = {.lex_state = 178}, + [521] = {.lex_state = 178}, + [522] = {.lex_state = 178}, + [523] = {.lex_state = 178}, + [524] = {.lex_state = 344}, + [525] = {.lex_state = 344}, + [526] = {.lex_state = 178}, + [527] = {.lex_state = 178}, + [528] = {.lex_state = 176}, + [529] = {.lex_state = 344}, + [530] = {.lex_state = 344}, + [531] = {.lex_state = 344}, + [532] = {.lex_state = 178}, + [533] = {.lex_state = 178}, + [534] = {.lex_state = 178}, + [535] = {.lex_state = 178}, + [536] = {.lex_state = 178}, + [537] = {.lex_state = 178}, + [538] = {.lex_state = 344}, + [539] = {.lex_state = 344}, + [540] = {.lex_state = 344}, + [541] = {.lex_state = 344}, + [542] = {.lex_state = 176}, + [543] = {.lex_state = 178}, + [544] = {.lex_state = 344}, + [545] = {.lex_state = 178}, + [546] = {.lex_state = 344}, + [547] = {.lex_state = 344}, + [548] = {.lex_state = 344}, + [549] = {.lex_state = 344}, + [550] = {.lex_state = 344}, + [551] = {.lex_state = 344}, + [552] = {.lex_state = 176}, + [553] = {.lex_state = 344}, + [554] = {.lex_state = 176}, + [555] = {.lex_state = 176}, + [556] = {.lex_state = 176}, + [557] = {.lex_state = 176}, + [558] = {.lex_state = 176}, + [559] = {.lex_state = 176}, + [560] = {.lex_state = 176}, + [561] = {.lex_state = 176}, + [562] = {.lex_state = 176}, + [563] = {.lex_state = 176}, + [564] = {.lex_state = 176}, + [565] = {.lex_state = 344}, + [566] = {.lex_state = 344}, + [567] = {.lex_state = 344}, + [568] = {.lex_state = 344}, + [569] = {.lex_state = 176}, + [570] = {.lex_state = 344}, + [571] = {.lex_state = 344}, + [572] = {.lex_state = 344}, + [573] = {.lex_state = 344}, + [574] = {.lex_state = 344}, + [575] = {.lex_state = 178}, + [576] = {.lex_state = 176}, + [577] = {.lex_state = 176}, + [578] = {.lex_state = 176}, + [579] = {.lex_state = 176}, + [580] = {.lex_state = 176}, + [581] = {.lex_state = 176}, + [582] = {.lex_state = 176}, + [583] = {.lex_state = 176}, + [584] = {.lex_state = 344}, + [585] = {.lex_state = 344}, + [586] = {.lex_state = 344}, + [587] = {.lex_state = 176}, + [588] = {.lex_state = 176}, + [589] = {.lex_state = 344}, + [590] = {.lex_state = 176}, + [591] = {.lex_state = 176}, + [592] = {.lex_state = 176}, + [593] = {.lex_state = 176}, + [594] = {.lex_state = 176}, + [595] = {.lex_state = 176}, + [596] = {.lex_state = 176}, + [597] = {.lex_state = 176}, + [598] = {.lex_state = 176}, + [599] = {.lex_state = 176}, + [600] = {.lex_state = 344}, + [601] = {.lex_state = 176}, + [602] = {.lex_state = 176}, + [603] = {.lex_state = 176}, + [604] = {.lex_state = 176}, + [605] = {.lex_state = 344}, + [606] = {.lex_state = 344}, + [607] = {.lex_state = 176}, + [608] = {.lex_state = 176}, + [609] = {.lex_state = 344}, + [610] = {.lex_state = 176}, + [611] = {.lex_state = 176}, + [612] = {.lex_state = 176}, + [613] = {.lex_state = 176}, + [614] = {.lex_state = 176}, + [615] = {.lex_state = 176}, + [616] = {.lex_state = 176}, + [617] = {.lex_state = 176}, + [618] = {.lex_state = 344}, + [619] = {.lex_state = 344}, + [620] = {.lex_state = 176}, + [621] = {.lex_state = 176}, + [622] = {.lex_state = 344}, + [623] = {.lex_state = 242}, + [624] = {.lex_state = 242}, + [625] = {.lex_state = 242}, + [626] = {.lex_state = 242}, + [627] = {.lex_state = 242}, + [628] = {.lex_state = 242}, + [629] = {.lex_state = 242}, + [630] = {.lex_state = 242}, + [631] = {.lex_state = 242}, + [632] = {.lex_state = 242}, + [633] = {.lex_state = 242}, + [634] = {.lex_state = 242}, + [635] = {.lex_state = 242}, + [636] = {.lex_state = 242}, + [637] = {.lex_state = 242}, + [638] = {.lex_state = 242}, + [639] = {.lex_state = 176}, + [640] = {.lex_state = 176}, + [641] = {.lex_state = 242}, + [642] = {.lex_state = 176}, + [643] = {.lex_state = 198}, + [644] = {.lex_state = 198}, + [645] = {.lex_state = 198}, + [646] = {.lex_state = 198}, + [647] = {.lex_state = 198}, + [648] = {.lex_state = 198}, + [649] = {.lex_state = 198}, + [650] = {.lex_state = 243}, + [651] = {.lex_state = 198}, + [652] = {.lex_state = 198}, + [653] = {.lex_state = 198}, + [654] = {.lex_state = 198}, + [655] = {.lex_state = 198}, + [656] = {.lex_state = 198}, + [657] = {.lex_state = 198}, + [658] = {.lex_state = 198}, + [659] = {.lex_state = 198}, + [660] = {.lex_state = 198}, + [661] = {.lex_state = 198}, + [662] = {.lex_state = 198}, + [663] = {.lex_state = 177}, + [664] = {.lex_state = 198}, + [665] = {.lex_state = 198}, + [666] = {.lex_state = 177}, + [667] = {.lex_state = 243}, + [668] = {.lex_state = 243}, + [669] = {.lex_state = 177}, + [670] = {.lex_state = 177}, + [671] = {.lex_state = 177}, + [672] = {.lex_state = 177}, + [673] = {.lex_state = 177}, + [674] = {.lex_state = 177}, + [675] = {.lex_state = 177}, + [676] = {.lex_state = 177}, + [677] = {.lex_state = 177}, + [678] = {.lex_state = 177}, + [679] = {.lex_state = 177}, + [680] = {.lex_state = 177}, + [681] = {.lex_state = 177}, + [682] = {.lex_state = 177}, + [683] = {.lex_state = 177}, + [684] = {.lex_state = 177}, + [685] = {.lex_state = 177}, + [686] = {.lex_state = 177}, + [687] = {.lex_state = 177}, + [688] = {.lex_state = 177}, + [689] = {.lex_state = 177}, + [690] = {.lex_state = 177}, + [691] = {.lex_state = 177}, + [692] = {.lex_state = 177}, + [693] = {.lex_state = 177}, + [694] = {.lex_state = 177}, + [695] = {.lex_state = 177}, + [696] = {.lex_state = 177}, + [697] = {.lex_state = 177}, + [698] = {.lex_state = 177}, + [699] = {.lex_state = 177}, + [700] = {.lex_state = 177}, + [701] = {.lex_state = 177}, + [702] = {.lex_state = 177}, + [703] = {.lex_state = 177}, + [704] = {.lex_state = 177}, + [705] = {.lex_state = 177}, + [706] = {.lex_state = 177}, + [707] = {.lex_state = 177}, + [708] = {.lex_state = 177}, + [709] = {.lex_state = 177}, + [710] = {.lex_state = 177}, + [711] = {.lex_state = 177}, + [712] = {.lex_state = 177}, + [713] = {.lex_state = 177}, + [714] = {.lex_state = 172}, + [715] = {.lex_state = 172}, + [716] = {.lex_state = 242}, + [717] = {.lex_state = 242}, + [718] = {.lex_state = 242}, + [719] = {.lex_state = 242}, + [720] = {.lex_state = 242}, + [721] = {.lex_state = 242}, + [722] = {.lex_state = 242}, + [723] = {.lex_state = 242}, + [724] = {.lex_state = 242}, + [725] = {.lex_state = 242}, + [726] = {.lex_state = 242}, + [727] = {.lex_state = 242}, + [728] = {.lex_state = 242}, + [729] = {.lex_state = 242}, + [730] = {.lex_state = 191}, + [731] = {.lex_state = 191}, + [732] = {.lex_state = 191}, + [733] = {.lex_state = 179}, + [734] = {.lex_state = 179}, + [735] = {.lex_state = 179}, + [736] = {.lex_state = 191}, + [737] = {.lex_state = 191}, + [738] = {.lex_state = 242}, + [739] = {.lex_state = 177}, + [740] = {.lex_state = 177}, + [741] = {.lex_state = 177}, + [742] = {.lex_state = 191}, + [743] = {.lex_state = 191}, + [744] = {.lex_state = 191}, + [745] = {.lex_state = 191}, + [746] = {.lex_state = 191}, + [747] = {.lex_state = 187}, + [748] = {.lex_state = 191}, + [749] = {.lex_state = 191}, + [750] = {.lex_state = 191}, + [751] = {.lex_state = 199}, + [752] = {.lex_state = 199}, + [753] = {.lex_state = 199}, + [754] = {.lex_state = 199}, + [755] = {.lex_state = 199}, + [756] = {.lex_state = 199}, + [757] = {.lex_state = 199}, + [758] = {.lex_state = 199}, + [759] = {.lex_state = 199}, + [760] = {.lex_state = 242}, + [761] = {.lex_state = 242}, + [762] = {.lex_state = 242}, + [763] = {.lex_state = 167}, + [764] = {.lex_state = 242}, + [765] = {.lex_state = 167}, + [766] = {.lex_state = 180}, + [767] = {.lex_state = 180}, + [768] = {.lex_state = 180}, + [769] = {.lex_state = 180}, + [770] = {.lex_state = 180}, + [771] = {.lex_state = 180}, + [772] = {.lex_state = 242}, + [773] = {.lex_state = 180}, + [774] = {.lex_state = 180}, + [775] = {.lex_state = 242}, + [776] = {.lex_state = 180}, + [777] = {.lex_state = 167}, + [778] = {.lex_state = 180}, + [779] = {.lex_state = 242}, + [780] = {.lex_state = 180}, + [781] = {.lex_state = 180}, + [782] = {.lex_state = 180}, + [783] = {.lex_state = 180}, + [784] = {.lex_state = 180}, + [785] = {.lex_state = 180}, + [786] = {.lex_state = 180}, + [787] = {.lex_state = 180}, + [788] = {.lex_state = 180}, + [789] = {.lex_state = 180}, + [790] = {.lex_state = 180}, + [791] = {.lex_state = 180}, + [792] = {.lex_state = 180}, + [793] = {.lex_state = 180}, + [794] = {.lex_state = 180}, + [795] = {.lex_state = 180}, + [796] = {.lex_state = 242}, + [797] = {.lex_state = 177}, + [798] = {.lex_state = 177}, + [799] = {.lex_state = 177}, + [800] = {.lex_state = 177}, + [801] = {.lex_state = 177}, + [802] = {.lex_state = 177}, + [803] = {.lex_state = 177}, + [804] = {.lex_state = 177}, + [805] = {.lex_state = 177}, + [806] = {.lex_state = 177}, + [807] = {.lex_state = 177}, + [808] = {.lex_state = 177}, + [809] = {.lex_state = 169}, + [810] = {.lex_state = 177}, + [811] = {.lex_state = 177}, + [812] = {.lex_state = 177}, + [813] = {.lex_state = 199}, + [814] = {.lex_state = 177}, + [815] = {.lex_state = 177}, + [816] = {.lex_state = 177}, + [817] = {.lex_state = 177}, + [818] = {.lex_state = 177}, + [819] = {.lex_state = 177}, + [820] = {.lex_state = 177}, + [821] = {.lex_state = 177}, + [822] = {.lex_state = 177}, + [823] = {.lex_state = 177}, + [824] = {.lex_state = 177}, + [825] = {.lex_state = 177}, + [826] = {.lex_state = 177}, + [827] = {.lex_state = 177}, + [828] = {.lex_state = 177}, + [829] = {.lex_state = 177}, + [830] = {.lex_state = 177}, + [831] = {.lex_state = 177}, + [832] = {.lex_state = 177}, + [833] = {.lex_state = 177}, + [834] = {.lex_state = 177}, + [835] = {.lex_state = 177}, + [836] = {.lex_state = 177}, + [837] = {.lex_state = 177}, + [838] = {.lex_state = 177}, + [839] = {.lex_state = 177}, + [840] = {.lex_state = 177}, + [841] = {.lex_state = 177}, + [842] = {.lex_state = 177}, + [843] = {.lex_state = 177}, + [844] = {.lex_state = 177}, + [845] = {.lex_state = 177}, + [846] = {.lex_state = 177}, + [847] = {.lex_state = 177}, + [848] = {.lex_state = 177}, + [849] = {.lex_state = 177}, + [850] = {.lex_state = 177}, + [851] = {.lex_state = 177}, + [852] = {.lex_state = 197}, + [853] = {.lex_state = 199}, + [854] = {.lex_state = 167}, + [855] = {.lex_state = 170}, + [856] = {.lex_state = 197}, + [857] = {.lex_state = 197}, + [858] = {.lex_state = 197}, + [859] = {.lex_state = 197}, + [860] = {.lex_state = 228}, + [861] = {.lex_state = 228}, + [862] = {.lex_state = 228}, + [863] = {.lex_state = 228}, + [864] = {.lex_state = 199}, + [865] = {.lex_state = 197}, + [866] = {.lex_state = 197}, + [867] = {.lex_state = 197}, + [868] = {.lex_state = 228}, + [869] = {.lex_state = 228}, + [870] = {.lex_state = 228}, + [871] = {.lex_state = 197}, + [872] = {.lex_state = 199}, + [873] = {.lex_state = 169}, + [874] = {.lex_state = 180}, + [875] = {.lex_state = 197}, + [876] = {.lex_state = 180}, + [877] = {.lex_state = 180}, + [878] = {.lex_state = 180}, + [879] = {.lex_state = 197}, + [880] = {.lex_state = 197}, + [881] = {.lex_state = 180}, + [882] = {.lex_state = 197}, + [883] = {.lex_state = 180}, + [884] = {.lex_state = 180}, + [885] = {.lex_state = 180}, + [886] = {.lex_state = 180}, + [887] = {.lex_state = 180}, + [888] = {.lex_state = 180}, + [889] = {.lex_state = 180}, + [890] = {.lex_state = 180}, + [891] = {.lex_state = 180}, + [892] = {.lex_state = 180}, + [893] = {.lex_state = 197}, + [894] = {.lex_state = 180}, + [895] = {.lex_state = 197}, + [896] = {.lex_state = 180}, + [897] = {.lex_state = 197}, + [898] = {.lex_state = 197}, + [899] = {.lex_state = 179}, + [900] = {.lex_state = 180}, + [901] = {.lex_state = 179}, + [902] = {.lex_state = 180}, + [903] = {.lex_state = 180}, + [904] = {.lex_state = 180}, + [905] = {.lex_state = 180}, + [906] = {.lex_state = 180}, + [907] = {.lex_state = 180}, + [908] = {.lex_state = 180}, + [909] = {.lex_state = 180}, + [910] = {.lex_state = 180}, + [911] = {.lex_state = 180}, + [912] = {.lex_state = 180}, + [913] = {.lex_state = 180}, + [914] = {.lex_state = 228}, + [915] = {.lex_state = 242}, + [916] = {.lex_state = 242}, + [917] = {.lex_state = 242}, + [918] = {.lex_state = 168}, + [919] = {.lex_state = 242}, + [920] = {.lex_state = 242}, + [921] = {.lex_state = 242}, + [922] = {.lex_state = 242}, + [923] = {.lex_state = 242}, + [924] = {.lex_state = 242}, + [925] = {.lex_state = 242}, + [926] = {.lex_state = 242}, + [927] = {.lex_state = 242}, + [928] = {.lex_state = 242}, + [929] = {.lex_state = 242}, + [930] = {.lex_state = 242}, + [931] = {.lex_state = 242}, + [932] = {.lex_state = 242}, + [933] = {.lex_state = 242}, + [934] = {.lex_state = 242}, + [935] = {.lex_state = 242}, + [936] = {.lex_state = 242}, + [937] = {.lex_state = 168}, + [938] = {.lex_state = 242}, + [939] = {.lex_state = 242}, + [940] = {.lex_state = 242}, + [941] = {.lex_state = 242}, + [942] = {.lex_state = 242}, + [943] = {.lex_state = 242}, + [944] = {.lex_state = 242}, + [945] = {.lex_state = 242}, + [946] = {.lex_state = 242}, + [947] = {.lex_state = 242}, + [948] = {.lex_state = 168}, + [949] = {.lex_state = 242}, + [950] = {.lex_state = 242}, + [951] = {.lex_state = 242}, + [952] = {.lex_state = 242}, + [953] = {.lex_state = 242}, + [954] = {.lex_state = 242}, + [955] = {.lex_state = 242}, + [956] = {.lex_state = 242}, + [957] = {.lex_state = 228}, + [958] = {.lex_state = 242}, + [959] = {.lex_state = 171}, + [960] = {.lex_state = 168}, + [961] = {.lex_state = 168}, + [962] = {.lex_state = 242}, + [963] = {.lex_state = 228}, + [964] = {.lex_state = 242}, + [965] = {.lex_state = 242}, + [966] = {.lex_state = 242}, + [967] = {.lex_state = 242}, + [968] = {.lex_state = 242}, + [969] = {.lex_state = 242}, + [970] = {.lex_state = 242}, + [971] = {.lex_state = 242}, + [972] = {.lex_state = 168}, + [973] = {.lex_state = 242}, + [974] = {.lex_state = 242}, + [975] = {.lex_state = 242}, + [976] = {.lex_state = 242}, + [977] = {.lex_state = 242}, + [978] = {.lex_state = 242}, + [979] = {.lex_state = 242}, + [980] = {.lex_state = 228}, + [981] = {.lex_state = 242}, + [982] = {.lex_state = 242}, + [983] = {.lex_state = 242}, + [984] = {.lex_state = 242}, + [985] = {.lex_state = 242}, + [986] = {.lex_state = 242}, + [987] = {.lex_state = 242}, + [988] = {.lex_state = 242}, + [989] = {.lex_state = 242}, + [990] = {.lex_state = 242}, + [991] = {.lex_state = 242}, + [992] = {.lex_state = 242}, + [993] = {.lex_state = 242}, + [994] = {.lex_state = 242}, + [995] = {.lex_state = 228}, + [996] = {.lex_state = 242}, + [997] = {.lex_state = 242}, + [998] = {.lex_state = 242}, + [999] = {.lex_state = 242}, + [1000] = {.lex_state = 242}, + [1001] = {.lex_state = 242}, + [1002] = {.lex_state = 242}, + [1003] = {.lex_state = 242}, + [1004] = {.lex_state = 242}, + [1005] = {.lex_state = 242}, + [1006] = {.lex_state = 242}, + [1007] = {.lex_state = 242}, + [1008] = {.lex_state = 242}, + [1009] = {.lex_state = 242}, + [1010] = {.lex_state = 242}, + [1011] = {.lex_state = 242}, + [1012] = {.lex_state = 242}, + [1013] = {.lex_state = 242}, + [1014] = {.lex_state = 242}, + [1015] = {.lex_state = 242}, + [1016] = {.lex_state = 242}, + [1017] = {.lex_state = 242}, + [1018] = {.lex_state = 242}, + [1019] = {.lex_state = 242}, + [1020] = {.lex_state = 242}, + [1021] = {.lex_state = 242}, + [1022] = {.lex_state = 242}, + [1023] = {.lex_state = 242}, + [1024] = {.lex_state = 242}, + [1025] = {.lex_state = 242}, + [1026] = {.lex_state = 242}, + [1027] = {.lex_state = 242}, + [1028] = {.lex_state = 242}, + [1029] = {.lex_state = 242}, + [1030] = {.lex_state = 242}, + [1031] = {.lex_state = 242}, + [1032] = {.lex_state = 242}, + [1033] = {.lex_state = 228}, + [1034] = {.lex_state = 242}, + [1035] = {.lex_state = 242}, + [1036] = {.lex_state = 242}, + [1037] = {.lex_state = 242}, + [1038] = {.lex_state = 242}, + [1039] = {.lex_state = 242}, + [1040] = {.lex_state = 242}, + [1041] = {.lex_state = 242}, + [1042] = {.lex_state = 242}, + [1043] = {.lex_state = 242}, + [1044] = {.lex_state = 242}, + [1045] = {.lex_state = 242}, + [1046] = {.lex_state = 242}, + [1047] = {.lex_state = 242}, + [1048] = {.lex_state = 242}, + [1049] = {.lex_state = 242}, + [1050] = {.lex_state = 242}, + [1051] = {.lex_state = 242}, + [1052] = {.lex_state = 242}, + [1053] = {.lex_state = 242}, + [1054] = {.lex_state = 242}, + [1055] = {.lex_state = 242}, + [1056] = {.lex_state = 242}, + [1057] = {.lex_state = 242}, + [1058] = {.lex_state = 242}, + [1059] = {.lex_state = 242}, + [1060] = {.lex_state = 242}, + [1061] = {.lex_state = 228}, + [1062] = {.lex_state = 228}, + [1063] = {.lex_state = 242}, + [1064] = {.lex_state = 228}, + [1065] = {.lex_state = 228}, + [1066] = {.lex_state = 228}, + [1067] = {.lex_state = 228}, + [1068] = {.lex_state = 242}, + [1069] = {.lex_state = 228}, + [1070] = {.lex_state = 242}, + [1071] = {.lex_state = 228}, + [1072] = {.lex_state = 242}, + [1073] = {.lex_state = 242}, + [1074] = {.lex_state = 242}, + [1075] = {.lex_state = 242}, + [1076] = {.lex_state = 242}, + [1077] = {.lex_state = 242}, + [1078] = {.lex_state = 242}, + [1079] = {.lex_state = 242}, + [1080] = {.lex_state = 242}, + [1081] = {.lex_state = 242}, + [1082] = {.lex_state = 242}, + [1083] = {.lex_state = 198}, + [1084] = {.lex_state = 242}, + [1085] = {.lex_state = 198}, + [1086] = {.lex_state = 198}, + [1087] = {.lex_state = 243}, + [1088] = {.lex_state = 243}, + [1089] = {.lex_state = 243}, + [1090] = {.lex_state = 243}, + [1091] = {.lex_state = 198}, + [1092] = {.lex_state = 180}, + [1093] = {.lex_state = 242}, + [1094] = {.lex_state = 242}, + [1095] = {.lex_state = 180}, + [1096] = {.lex_state = 180}, + [1097] = {.lex_state = 242}, + [1098] = {.lex_state = 242}, + [1099] = {.lex_state = 198}, + [1100] = {.lex_state = 242}, + [1101] = {.lex_state = 243}, + [1102] = {.lex_state = 242}, + [1103] = {.lex_state = 243}, + [1104] = {.lex_state = 242}, + [1105] = {.lex_state = 198}, + [1106] = {.lex_state = 243}, + [1107] = {.lex_state = 198}, + [1108] = {.lex_state = 242}, + [1109] = {.lex_state = 243}, + [1110] = {.lex_state = 242}, + [1111] = {.lex_state = 242}, + [1112] = {.lex_state = 242}, + [1113] = {.lex_state = 242}, + [1114] = {.lex_state = 243}, + [1115] = {.lex_state = 198}, + [1116] = {.lex_state = 198}, + [1117] = {.lex_state = 198}, + [1118] = {.lex_state = 198}, + [1119] = {.lex_state = 198}, + [1120] = {.lex_state = 198}, + [1121] = {.lex_state = 198}, + [1122] = {.lex_state = 198}, + [1123] = {.lex_state = 198}, + [1124] = {.lex_state = 198}, + [1125] = {.lex_state = 198}, + [1126] = {.lex_state = 198}, + [1127] = {.lex_state = 198}, + [1128] = {.lex_state = 198}, + [1129] = {.lex_state = 198}, + [1130] = {.lex_state = 198}, + [1131] = {.lex_state = 198}, + [1132] = {.lex_state = 198}, + [1133] = {.lex_state = 198}, + [1134] = {.lex_state = 198}, + [1135] = {.lex_state = 198}, + [1136] = {.lex_state = 198}, + [1137] = {.lex_state = 198}, + [1138] = {.lex_state = 198}, + [1139] = {.lex_state = 198}, + [1140] = {.lex_state = 198}, + [1141] = {.lex_state = 198}, + [1142] = {.lex_state = 198}, + [1143] = {.lex_state = 198}, + [1144] = {.lex_state = 198}, + [1145] = {.lex_state = 198}, + [1146] = {.lex_state = 198}, + [1147] = {.lex_state = 198}, + [1148] = {.lex_state = 198}, + [1149] = {.lex_state = 198}, + [1150] = {.lex_state = 242}, + [1151] = {.lex_state = 198}, + [1152] = {.lex_state = 243}, + [1153] = {.lex_state = 198}, + [1154] = {.lex_state = 198}, + [1155] = {.lex_state = 243}, + [1156] = {.lex_state = 243}, + [1157] = {.lex_state = 243}, + [1158] = {.lex_state = 243}, + [1159] = {.lex_state = 243}, + [1160] = {.lex_state = 243}, + [1161] = {.lex_state = 243}, + [1162] = {.lex_state = 198}, + [1163] = {.lex_state = 243}, + [1164] = {.lex_state = 243}, + [1165] = {.lex_state = 198}, + [1166] = {.lex_state = 198}, + [1167] = {.lex_state = 243}, + [1168] = {.lex_state = 243}, + [1169] = {.lex_state = 198}, + [1170] = {.lex_state = 243}, + [1171] = {.lex_state = 198}, + [1172] = {.lex_state = 198}, + [1173] = {.lex_state = 243}, + [1174] = {.lex_state = 243}, + [1175] = {.lex_state = 243}, + [1176] = {.lex_state = 243}, + [1177] = {.lex_state = 243}, + [1178] = {.lex_state = 243}, + [1179] = {.lex_state = 198}, + [1180] = {.lex_state = 243}, + [1181] = {.lex_state = 243}, + [1182] = {.lex_state = 243}, + [1183] = {.lex_state = 243}, + [1184] = {.lex_state = 198}, + [1185] = {.lex_state = 243}, + [1186] = {.lex_state = 243}, + [1187] = {.lex_state = 243}, + [1188] = {.lex_state = 243}, + [1189] = {.lex_state = 243}, + [1190] = {.lex_state = 243}, + [1191] = {.lex_state = 243}, + [1192] = {.lex_state = 198}, + [1193] = {.lex_state = 243}, + [1194] = {.lex_state = 243}, + [1195] = {.lex_state = 243}, + [1196] = {.lex_state = 243}, + [1197] = {.lex_state = 243}, + [1198] = {.lex_state = 243}, + [1199] = {.lex_state = 243}, + [1200] = {.lex_state = 243}, + [1201] = {.lex_state = 243}, + [1202] = {.lex_state = 243}, + [1203] = {.lex_state = 243}, + [1204] = {.lex_state = 243}, + [1205] = {.lex_state = 243}, + [1206] = {.lex_state = 243}, + [1207] = {.lex_state = 243}, + [1208] = {.lex_state = 198}, + [1209] = {.lex_state = 243}, + [1210] = {.lex_state = 243}, + [1211] = {.lex_state = 243}, + [1212] = {.lex_state = 198}, + [1213] = {.lex_state = 198}, + [1214] = {.lex_state = 243}, + [1215] = {.lex_state = 198}, + [1216] = {.lex_state = 198}, + [1217] = {.lex_state = 243}, + [1218] = {.lex_state = 198}, + [1219] = {.lex_state = 243}, + [1220] = {.lex_state = 243}, + [1221] = {.lex_state = 198}, + [1222] = {.lex_state = 198}, + [1223] = {.lex_state = 243}, + [1224] = {.lex_state = 243}, + [1225] = {.lex_state = 243}, + [1226] = {.lex_state = 198}, + [1227] = {.lex_state = 243}, + [1228] = {.lex_state = 198}, + [1229] = {.lex_state = 198}, + [1230] = {.lex_state = 198}, + [1231] = {.lex_state = 243}, + [1232] = {.lex_state = 198}, + [1233] = {.lex_state = 198}, + [1234] = {.lex_state = 242}, + [1235] = {.lex_state = 243}, + [1236] = {.lex_state = 242}, + [1237] = {.lex_state = 243}, + [1238] = {.lex_state = 198}, + [1239] = {.lex_state = 198}, + [1240] = {.lex_state = 243}, + [1241] = {.lex_state = 198}, + [1242] = {.lex_state = 198}, + [1243] = {.lex_state = 198}, + [1244] = {.lex_state = 198}, + [1245] = {.lex_state = 243}, + [1246] = {.lex_state = 243}, + [1247] = {.lex_state = 198}, + [1248] = {.lex_state = 242}, + [1249] = {.lex_state = 243}, + [1250] = {.lex_state = 243}, + [1251] = {.lex_state = 243}, + [1252] = {.lex_state = 198}, + [1253] = {.lex_state = 198}, + [1254] = {.lex_state = 243}, + [1255] = {.lex_state = 243}, + [1256] = {.lex_state = 243}, + [1257] = {.lex_state = 243}, + [1258] = {.lex_state = 243}, + [1259] = {.lex_state = 243}, + [1260] = {.lex_state = 243}, + [1261] = {.lex_state = 243}, + [1262] = {.lex_state = 198}, + [1263] = {.lex_state = 243}, + [1264] = {.lex_state = 198}, + [1265] = {.lex_state = 198}, + [1266] = {.lex_state = 198}, + [1267] = {.lex_state = 198}, + [1268] = {.lex_state = 198}, + [1269] = {.lex_state = 243}, + [1270] = {.lex_state = 198}, + [1271] = {.lex_state = 198}, + [1272] = {.lex_state = 198}, + [1273] = {.lex_state = 198}, + [1274] = {.lex_state = 243}, + [1275] = {.lex_state = 243}, + [1276] = {.lex_state = 243}, + [1277] = {.lex_state = 243}, + [1278] = {.lex_state = 242}, + [1279] = {.lex_state = 243}, + [1280] = {.lex_state = 198}, + [1281] = {.lex_state = 198}, + [1282] = {.lex_state = 243}, + [1283] = {.lex_state = 198}, + [1284] = {.lex_state = 198}, + [1285] = {.lex_state = 198}, + [1286] = {.lex_state = 198}, + [1287] = {.lex_state = 198}, + [1288] = {.lex_state = 198}, + [1289] = {.lex_state = 243}, + [1290] = {.lex_state = 243}, + [1291] = {.lex_state = 198}, + [1292] = {.lex_state = 198}, + [1293] = {.lex_state = 198}, + [1294] = {.lex_state = 243}, + [1295] = {.lex_state = 243}, + [1296] = {.lex_state = 243}, + [1297] = {.lex_state = 243}, + [1298] = {.lex_state = 243}, + [1299] = {.lex_state = 243}, + [1300] = {.lex_state = 243}, + [1301] = {.lex_state = 198}, + [1302] = {.lex_state = 243}, + [1303] = {.lex_state = 198}, + [1304] = {.lex_state = 242}, + [1305] = {.lex_state = 241}, + [1306] = {.lex_state = 241}, + [1307] = {.lex_state = 242}, + [1308] = {.lex_state = 241}, + [1309] = {.lex_state = 241}, + [1310] = {.lex_state = 241}, + [1311] = {.lex_state = 241}, + [1312] = {.lex_state = 241}, + [1313] = {.lex_state = 180}, + [1314] = {.lex_state = 180}, + [1315] = {.lex_state = 242}, + [1316] = {.lex_state = 242}, + [1317] = {.lex_state = 242}, + [1318] = {.lex_state = 180}, + [1319] = {.lex_state = 242}, + [1320] = {.lex_state = 180}, + [1321] = {.lex_state = 180}, + [1322] = {.lex_state = 180}, + [1323] = {.lex_state = 180}, + [1324] = {.lex_state = 180}, + [1325] = {.lex_state = 242}, + [1326] = {.lex_state = 180}, + [1327] = {.lex_state = 180}, + [1328] = {.lex_state = 180}, + [1329] = {.lex_state = 242}, + [1330] = {.lex_state = 242}, + [1331] = {.lex_state = 180}, + [1332] = {.lex_state = 180}, + [1333] = {.lex_state = 242}, + [1334] = {.lex_state = 242}, + [1335] = {.lex_state = 242}, + [1336] = {.lex_state = 242}, + [1337] = {.lex_state = 242}, + [1338] = {.lex_state = 242}, + [1339] = {.lex_state = 242}, + [1340] = {.lex_state = 180}, + [1341] = {.lex_state = 180}, + [1342] = {.lex_state = 180}, + [1343] = {.lex_state = 180}, + [1344] = {.lex_state = 242}, + [1345] = {.lex_state = 180}, + [1346] = {.lex_state = 180}, + [1347] = {.lex_state = 180}, + [1348] = {.lex_state = 180}, + [1349] = {.lex_state = 242}, + [1350] = {.lex_state = 242}, + [1351] = {.lex_state = 202}, + [1352] = {.lex_state = 202}, + [1353] = {.lex_state = 202}, + [1354] = {.lex_state = 241}, + [1355] = {.lex_state = 241}, + [1356] = {.lex_state = 242}, + [1357] = {.lex_state = 241}, + [1358] = {.lex_state = 179}, + [1359] = {.lex_state = 241}, + [1360] = {.lex_state = 242}, + [1361] = {.lex_state = 179}, + [1362] = {.lex_state = 242}, + [1363] = {.lex_state = 242}, + [1364] = {.lex_state = 241}, + [1365] = {.lex_state = 241}, + [1366] = {.lex_state = 241}, + [1367] = {.lex_state = 241}, + [1368] = {.lex_state = 241}, + [1369] = {.lex_state = 241}, + [1370] = {.lex_state = 241}, + [1371] = {.lex_state = 241}, + [1372] = {.lex_state = 241}, + [1373] = {.lex_state = 180}, + [1374] = {.lex_state = 241}, + [1375] = {.lex_state = 241}, + [1376] = {.lex_state = 241}, + [1377] = {.lex_state = 241}, + [1378] = {.lex_state = 241}, + [1379] = {.lex_state = 241}, + [1380] = {.lex_state = 241}, + [1381] = {.lex_state = 241}, + [1382] = {.lex_state = 241}, + [1383] = {.lex_state = 241}, + [1384] = {.lex_state = 241}, + [1385] = {.lex_state = 241}, + [1386] = {.lex_state = 241}, + [1387] = {.lex_state = 241}, + [1388] = {.lex_state = 241}, + [1389] = {.lex_state = 241}, + [1390] = {.lex_state = 241}, + [1391] = {.lex_state = 241}, + [1392] = {.lex_state = 241}, + [1393] = {.lex_state = 241}, + [1394] = {.lex_state = 241}, + [1395] = {.lex_state = 241}, + [1396] = {.lex_state = 241}, + [1397] = {.lex_state = 241}, + [1398] = {.lex_state = 241}, + [1399] = {.lex_state = 241}, + [1400] = {.lex_state = 241}, + [1401] = {.lex_state = 241}, + [1402] = {.lex_state = 241}, + [1403] = {.lex_state = 241}, + [1404] = {.lex_state = 241}, + [1405] = {.lex_state = 241}, + [1406] = {.lex_state = 241}, + [1407] = {.lex_state = 241}, + [1408] = {.lex_state = 241}, + [1409] = {.lex_state = 241}, + [1410] = {.lex_state = 241}, + [1411] = {.lex_state = 241}, + [1412] = {.lex_state = 241}, + [1413] = {.lex_state = 241}, + [1414] = {.lex_state = 241}, + [1415] = {.lex_state = 241}, + [1416] = {.lex_state = 241}, + [1417] = {.lex_state = 241}, + [1418] = {.lex_state = 241}, + [1419] = {.lex_state = 241}, + [1420] = {.lex_state = 241}, + [1421] = {.lex_state = 241}, + [1422] = {.lex_state = 241}, + [1423] = {.lex_state = 241}, + [1424] = {.lex_state = 241}, + [1425] = {.lex_state = 241}, + [1426] = {.lex_state = 241}, + [1427] = {.lex_state = 241}, + [1428] = {.lex_state = 241}, + [1429] = {.lex_state = 242}, + [1430] = {.lex_state = 241}, + [1431] = {.lex_state = 241}, + [1432] = {.lex_state = 241}, + [1433] = {.lex_state = 179}, + [1434] = {.lex_state = 241}, + [1435] = {.lex_state = 241}, + [1436] = {.lex_state = 241}, + [1437] = {.lex_state = 241}, + [1438] = {.lex_state = 241}, + [1439] = {.lex_state = 241}, + [1440] = {.lex_state = 241}, + [1441] = {.lex_state = 241}, + [1442] = {.lex_state = 241}, + [1443] = {.lex_state = 241}, + [1444] = {.lex_state = 241}, + [1445] = {.lex_state = 241}, + [1446] = {.lex_state = 241}, + [1447] = {.lex_state = 241}, + [1448] = {.lex_state = 241}, + [1449] = {.lex_state = 241}, + [1450] = {.lex_state = 241}, + [1451] = {.lex_state = 241}, + [1452] = {.lex_state = 179}, + [1453] = {.lex_state = 241}, + [1454] = {.lex_state = 241}, + [1455] = {.lex_state = 228}, + [1456] = {.lex_state = 228}, + [1457] = {.lex_state = 236}, + [1458] = {.lex_state = 228}, + [1459] = {.lex_state = 228}, + [1460] = {.lex_state = 236}, + [1461] = {.lex_state = 236}, + [1462] = {.lex_state = 242}, + [1463] = {.lex_state = 241}, + [1464] = {.lex_state = 228}, + [1465] = {.lex_state = 236}, + [1466] = {.lex_state = 228}, + [1467] = {.lex_state = 242}, + [1468] = {.lex_state = 228}, + [1469] = {.lex_state = 241}, + [1470] = {.lex_state = 241}, + [1471] = {.lex_state = 241}, + [1472] = {.lex_state = 241}, + [1473] = {.lex_state = 228}, + [1474] = {.lex_state = 228}, + [1475] = {.lex_state = 228}, + [1476] = {.lex_state = 228}, + [1477] = {.lex_state = 228}, + [1478] = {.lex_state = 241}, + [1479] = {.lex_state = 228}, + [1480] = {.lex_state = 228}, + [1481] = {.lex_state = 228}, + [1482] = {.lex_state = 246}, + [1483] = {.lex_state = 228}, + [1484] = {.lex_state = 228}, + [1485] = {.lex_state = 228}, + [1486] = {.lex_state = 241}, + [1487] = {.lex_state = 241}, + [1488] = {.lex_state = 228}, + [1489] = {.lex_state = 228}, + [1490] = {.lex_state = 228}, + [1491] = {.lex_state = 241}, + [1492] = {.lex_state = 180}, + [1493] = {.lex_state = 228}, + [1494] = {.lex_state = 180}, + [1495] = {.lex_state = 241}, + [1496] = {.lex_state = 180}, + [1497] = {.lex_state = 180}, + [1498] = {.lex_state = 180}, + [1499] = {.lex_state = 245}, + [1500] = {.lex_state = 180}, + [1501] = {.lex_state = 228}, + [1502] = {.lex_state = 228}, + [1503] = {.lex_state = 228}, + [1504] = {.lex_state = 228}, + [1505] = {.lex_state = 245}, + [1506] = {.lex_state = 180}, + [1507] = {.lex_state = 180}, + [1508] = {.lex_state = 241}, + [1509] = {.lex_state = 180}, + [1510] = {.lex_state = 180}, + [1511] = {.lex_state = 180}, + [1512] = {.lex_state = 228}, + [1513] = {.lex_state = 228}, + [1514] = {.lex_state = 228}, + [1515] = {.lex_state = 228}, + [1516] = {.lex_state = 180}, + [1517] = {.lex_state = 180}, + [1518] = {.lex_state = 180}, + [1519] = {.lex_state = 228}, + [1520] = {.lex_state = 228}, + [1521] = {.lex_state = 180}, + [1522] = {.lex_state = 228}, + [1523] = {.lex_state = 228}, + [1524] = {.lex_state = 242}, + [1525] = {.lex_state = 180}, + [1526] = {.lex_state = 228}, + [1527] = {.lex_state = 180}, + [1528] = {.lex_state = 228}, + [1529] = {.lex_state = 228}, + [1530] = {.lex_state = 228}, + [1531] = {.lex_state = 228}, + [1532] = {.lex_state = 228}, + [1533] = {.lex_state = 180}, + [1534] = {.lex_state = 180}, + [1535] = {.lex_state = 228}, + [1536] = {.lex_state = 180}, + [1537] = {.lex_state = 228}, + [1538] = {.lex_state = 180}, + [1539] = {.lex_state = 228}, + [1540] = {.lex_state = 228}, + [1541] = {.lex_state = 245}, + [1542] = {.lex_state = 228}, + [1543] = {.lex_state = 241}, + [1544] = {.lex_state = 180}, + [1545] = {.lex_state = 228}, + [1546] = {.lex_state = 180}, + [1547] = {.lex_state = 180}, + [1548] = {.lex_state = 245}, + [1549] = {.lex_state = 245}, + [1550] = {.lex_state = 180}, + [1551] = {.lex_state = 241}, + [1552] = {.lex_state = 180}, + [1553] = {.lex_state = 228}, + [1554] = {.lex_state = 228}, + [1555] = {.lex_state = 228}, + [1556] = {.lex_state = 241}, + [1557] = {.lex_state = 241}, + [1558] = {.lex_state = 228}, + [1559] = {.lex_state = 180}, + [1560] = {.lex_state = 180}, + [1561] = {.lex_state = 241}, + [1562] = {.lex_state = 180}, + [1563] = {.lex_state = 180}, + [1564] = {.lex_state = 180}, + [1565] = {.lex_state = 180}, + [1566] = {.lex_state = 180}, + [1567] = {.lex_state = 241}, + [1568] = {.lex_state = 241}, + [1569] = {.lex_state = 241}, + [1570] = {.lex_state = 241}, + [1571] = {.lex_state = 180}, + [1572] = {.lex_state = 241}, + [1573] = {.lex_state = 180}, + [1574] = {.lex_state = 241}, + [1575] = {.lex_state = 228}, + [1576] = {.lex_state = 180}, + [1577] = {.lex_state = 180}, + [1578] = {.lex_state = 241}, + [1579] = {.lex_state = 241}, + [1580] = {.lex_state = 180}, + [1581] = {.lex_state = 241}, + [1582] = {.lex_state = 242}, + [1583] = {.lex_state = 241}, + [1584] = {.lex_state = 241}, + [1585] = {.lex_state = 180}, + [1586] = {.lex_state = 241}, + [1587] = {.lex_state = 180}, + [1588] = {.lex_state = 180}, + [1589] = {.lex_state = 241}, + [1590] = {.lex_state = 242}, + [1591] = {.lex_state = 242}, + [1592] = {.lex_state = 241}, + [1593] = {.lex_state = 241}, + [1594] = {.lex_state = 242}, + [1595] = {.lex_state = 242}, + [1596] = {.lex_state = 241}, + [1597] = {.lex_state = 241}, + [1598] = {.lex_state = 242}, + [1599] = {.lex_state = 241}, + [1600] = {.lex_state = 241}, + [1601] = {.lex_state = 242}, + [1602] = {.lex_state = 242}, + [1603] = {.lex_state = 241}, + [1604] = {.lex_state = 242}, + [1605] = {.lex_state = 241}, + [1606] = {.lex_state = 242}, + [1607] = {.lex_state = 245}, + [1608] = {.lex_state = 242}, + [1609] = {.lex_state = 241}, + [1610] = {.lex_state = 241}, + [1611] = {.lex_state = 241}, + [1612] = {.lex_state = 241}, + [1613] = {.lex_state = 241}, + [1614] = {.lex_state = 241}, + [1615] = {.lex_state = 242}, + [1616] = {.lex_state = 241}, + [1617] = {.lex_state = 242}, + [1618] = {.lex_state = 241}, + [1619] = {.lex_state = 242}, + [1620] = {.lex_state = 242}, + [1621] = {.lex_state = 242}, + [1622] = {.lex_state = 242}, + [1623] = {.lex_state = 197}, + [1624] = {.lex_state = 241}, + [1625] = {.lex_state = 242}, + [1626] = {.lex_state = 241}, + [1627] = {.lex_state = 228}, + [1628] = {.lex_state = 242}, + [1629] = {.lex_state = 197}, + [1630] = {.lex_state = 241}, + [1631] = {.lex_state = 242}, + [1632] = {.lex_state = 197}, + [1633] = {.lex_state = 241}, + [1634] = {.lex_state = 241}, + [1635] = {.lex_state = 241}, + [1636] = {.lex_state = 241}, + [1637] = {.lex_state = 223}, + [1638] = {.lex_state = 223}, + [1639] = {.lex_state = 223}, + [1640] = {.lex_state = 241}, + [1641] = {.lex_state = 241}, + [1642] = {.lex_state = 241}, + [1643] = {.lex_state = 242}, + [1644] = {.lex_state = 241}, + [1645] = {.lex_state = 241}, + [1646] = {.lex_state = 241}, + [1647] = {.lex_state = 242}, + [1648] = {.lex_state = 180}, + [1649] = {.lex_state = 180}, + [1650] = {.lex_state = 180}, + [1651] = {.lex_state = 180}, + [1652] = {.lex_state = 180}, + [1653] = {.lex_state = 180}, + [1654] = {.lex_state = 180}, + [1655] = {.lex_state = 180}, + [1656] = {.lex_state = 180}, + [1657] = {.lex_state = 180}, + [1658] = {.lex_state = 180}, + [1659] = {.lex_state = 180}, + [1660] = {.lex_state = 180}, + [1661] = {.lex_state = 180}, + [1662] = {.lex_state = 180}, + [1663] = {.lex_state = 180}, + [1664] = {.lex_state = 241}, + [1665] = {.lex_state = 180}, + [1666] = {.lex_state = 180}, + [1667] = {.lex_state = 180}, + [1668] = {.lex_state = 180}, + [1669] = {.lex_state = 180}, + [1670] = {.lex_state = 180}, + [1671] = {.lex_state = 241}, + [1672] = {.lex_state = 180}, + [1673] = {.lex_state = 241}, + [1674] = {.lex_state = 241}, + [1675] = {.lex_state = 241}, + [1676] = {.lex_state = 241}, + [1677] = {.lex_state = 241}, + [1678] = {.lex_state = 241}, + [1679] = {.lex_state = 241}, + [1680] = {.lex_state = 241}, + [1681] = {.lex_state = 241}, + [1682] = {.lex_state = 241}, + [1683] = {.lex_state = 241}, + [1684] = {.lex_state = 180}, + [1685] = {.lex_state = 180}, + [1686] = {.lex_state = 180}, + [1687] = {.lex_state = 180}, + [1688] = {.lex_state = 180}, + [1689] = {.lex_state = 179}, + [1690] = {.lex_state = 179}, + [1691] = {.lex_state = 180}, + [1692] = {.lex_state = 242}, + [1693] = {.lex_state = 179}, + [1694] = {.lex_state = 180}, + [1695] = {.lex_state = 180}, + [1696] = {.lex_state = 179}, + [1697] = {.lex_state = 180}, + [1698] = {.lex_state = 180}, + [1699] = {.lex_state = 179}, + [1700] = {.lex_state = 179}, + [1701] = {.lex_state = 179}, + [1702] = {.lex_state = 179}, + [1703] = {.lex_state = 179}, + [1704] = {.lex_state = 180}, + [1705] = {.lex_state = 179}, + [1706] = {.lex_state = 180}, + [1707] = {.lex_state = 179}, + [1708] = {.lex_state = 179}, + [1709] = {.lex_state = 179}, + [1710] = {.lex_state = 179}, + [1711] = {.lex_state = 179}, + [1712] = {.lex_state = 180}, + [1713] = {.lex_state = 180}, + [1714] = {.lex_state = 179}, + [1715] = {.lex_state = 180}, + [1716] = {.lex_state = 228}, + [1717] = {.lex_state = 179}, + [1718] = {.lex_state = 179}, + [1719] = {.lex_state = 179}, + [1720] = {.lex_state = 180}, + [1721] = {.lex_state = 228}, + [1722] = {.lex_state = 180}, + [1723] = {.lex_state = 179}, + [1724] = {.lex_state = 179}, + [1725] = {.lex_state = 179}, + [1726] = {.lex_state = 180}, + [1727] = {.lex_state = 179}, + [1728] = {.lex_state = 179}, + [1729] = {.lex_state = 179}, + [1730] = {.lex_state = 180}, + [1731] = {.lex_state = 180}, + [1732] = {.lex_state = 179}, + [1733] = {.lex_state = 180}, + [1734] = {.lex_state = 228}, + [1735] = {.lex_state = 180}, + [1736] = {.lex_state = 180}, + [1737] = {.lex_state = 180}, + [1738] = {.lex_state = 180}, + [1739] = {.lex_state = 180}, + [1740] = {.lex_state = 180}, + [1741] = {.lex_state = 180}, + [1742] = {.lex_state = 180}, + [1743] = {.lex_state = 180}, + [1744] = {.lex_state = 180}, + [1745] = {.lex_state = 180}, + [1746] = {.lex_state = 180}, + [1747] = {.lex_state = 180}, + [1748] = {.lex_state = 180}, + [1749] = {.lex_state = 180}, + [1750] = {.lex_state = 180}, + [1751] = {.lex_state = 180}, + [1752] = {.lex_state = 180}, + [1753] = {.lex_state = 180}, + [1754] = {.lex_state = 241}, + [1755] = {.lex_state = 180}, + [1756] = {.lex_state = 180}, + [1757] = {.lex_state = 180}, + [1758] = {.lex_state = 180}, + [1759] = {.lex_state = 180}, + [1760] = {.lex_state = 180}, + [1761] = {.lex_state = 245}, + [1762] = {.lex_state = 180}, + [1763] = {.lex_state = 180}, + [1764] = {.lex_state = 180}, + [1765] = {.lex_state = 245}, + [1766] = {.lex_state = 180}, + [1767] = {.lex_state = 180}, + [1768] = {.lex_state = 180}, + [1769] = {.lex_state = 180}, + [1770] = {.lex_state = 180}, + [1771] = {.lex_state = 180}, + [1772] = {.lex_state = 180}, + [1773] = {.lex_state = 180}, + [1774] = {.lex_state = 180}, + [1775] = {.lex_state = 241}, + [1776] = {.lex_state = 180}, + [1777] = {.lex_state = 180}, + [1778] = {.lex_state = 180}, + [1779] = {.lex_state = 180}, + [1780] = {.lex_state = 180}, + [1781] = {.lex_state = 180}, + [1782] = {.lex_state = 180}, + [1783] = {.lex_state = 180}, + [1784] = {.lex_state = 180}, + [1785] = {.lex_state = 180}, + [1786] = {.lex_state = 180}, + [1787] = {.lex_state = 180}, + [1788] = {.lex_state = 180}, + [1789] = {.lex_state = 180}, + [1790] = {.lex_state = 180}, + [1791] = {.lex_state = 180}, + [1792] = {.lex_state = 180}, + [1793] = {.lex_state = 180}, + [1794] = {.lex_state = 180}, + [1795] = {.lex_state = 180}, + [1796] = {.lex_state = 180}, + [1797] = {.lex_state = 180}, + [1798] = {.lex_state = 180}, + [1799] = {.lex_state = 180}, + [1800] = {.lex_state = 180}, + [1801] = {.lex_state = 180}, + [1802] = {.lex_state = 180}, + [1803] = {.lex_state = 180}, + [1804] = {.lex_state = 180}, + [1805] = {.lex_state = 180}, + [1806] = {.lex_state = 180}, + [1807] = {.lex_state = 180}, + [1808] = {.lex_state = 180}, + [1809] = {.lex_state = 180}, + [1810] = {.lex_state = 180}, + [1811] = {.lex_state = 180}, + [1812] = {.lex_state = 180}, + [1813] = {.lex_state = 180}, + [1814] = {.lex_state = 180}, + [1815] = {.lex_state = 180}, + [1816] = {.lex_state = 180}, + [1817] = {.lex_state = 180}, + [1818] = {.lex_state = 180}, + [1819] = {.lex_state = 180}, + [1820] = {.lex_state = 180}, + [1821] = {.lex_state = 180}, + [1822] = {.lex_state = 180}, + [1823] = {.lex_state = 180}, + [1824] = {.lex_state = 180}, + [1825] = {.lex_state = 180}, + [1826] = {.lex_state = 180}, + [1827] = {.lex_state = 180}, + [1828] = {.lex_state = 180}, + [1829] = {.lex_state = 180}, + [1830] = {.lex_state = 180}, + [1831] = {.lex_state = 180}, + [1832] = {.lex_state = 180}, + [1833] = {.lex_state = 180}, + [1834] = {.lex_state = 180}, + [1835] = {.lex_state = 180}, + [1836] = {.lex_state = 180}, + [1837] = {.lex_state = 180}, + [1838] = {.lex_state = 180}, + [1839] = {.lex_state = 180}, + [1840] = {.lex_state = 180}, + [1841] = {.lex_state = 180}, + [1842] = {.lex_state = 180}, + [1843] = {.lex_state = 180}, + [1844] = {.lex_state = 180}, + [1845] = {.lex_state = 180}, + [1846] = {.lex_state = 180}, + [1847] = {.lex_state = 180}, + [1848] = {.lex_state = 180}, + [1849] = {.lex_state = 180}, + [1850] = {.lex_state = 180}, + [1851] = {.lex_state = 180}, + [1852] = {.lex_state = 180}, + [1853] = {.lex_state = 180}, + [1854] = {.lex_state = 180}, + [1855] = {.lex_state = 180}, + [1856] = {.lex_state = 180}, + [1857] = {.lex_state = 180}, + [1858] = {.lex_state = 180}, + [1859] = {.lex_state = 180}, + [1860] = {.lex_state = 180}, + [1861] = {.lex_state = 180}, + [1862] = {.lex_state = 180}, + [1863] = {.lex_state = 180}, + [1864] = {.lex_state = 180}, + [1865] = {.lex_state = 180}, + [1866] = {.lex_state = 180}, + [1867] = {.lex_state = 180}, + [1868] = {.lex_state = 180}, + [1869] = {.lex_state = 180}, + [1870] = {.lex_state = 180}, + [1871] = {.lex_state = 180}, + [1872] = {.lex_state = 180}, + [1873] = {.lex_state = 241}, + [1874] = {.lex_state = 180}, + [1875] = {.lex_state = 180}, + [1876] = {.lex_state = 180}, + [1877] = {.lex_state = 180}, + [1878] = {.lex_state = 180}, + [1879] = {.lex_state = 180}, + [1880] = {.lex_state = 180}, + [1881] = {.lex_state = 180}, + [1882] = {.lex_state = 180}, + [1883] = {.lex_state = 180}, + [1884] = {.lex_state = 180}, + [1885] = {.lex_state = 180}, + [1886] = {.lex_state = 180}, + [1887] = {.lex_state = 180}, + [1888] = {.lex_state = 180}, + [1889] = {.lex_state = 180}, + [1890] = {.lex_state = 180}, + [1891] = {.lex_state = 180}, + [1892] = {.lex_state = 245}, + [1893] = {.lex_state = 180}, + [1894] = {.lex_state = 180}, + [1895] = {.lex_state = 180}, + [1896] = {.lex_state = 180}, + [1897] = {.lex_state = 180}, + [1898] = {.lex_state = 180}, + [1899] = {.lex_state = 180}, + [1900] = {.lex_state = 180}, + [1901] = {.lex_state = 180}, + [1902] = {.lex_state = 180}, + [1903] = {.lex_state = 180}, + [1904] = {.lex_state = 180}, + [1905] = {.lex_state = 180}, + [1906] = {.lex_state = 180}, + [1907] = {.lex_state = 180}, + [1908] = {.lex_state = 180}, + [1909] = {.lex_state = 180}, + [1910] = {.lex_state = 180}, + [1911] = {.lex_state = 180}, + [1912] = {.lex_state = 180}, + [1913] = {.lex_state = 180}, + [1914] = {.lex_state = 180}, + [1915] = {.lex_state = 180}, + [1916] = {.lex_state = 180}, + [1917] = {.lex_state = 180}, + [1918] = {.lex_state = 180}, + [1919] = {.lex_state = 180}, + [1920] = {.lex_state = 180}, + [1921] = {.lex_state = 180}, + [1922] = {.lex_state = 180}, + [1923] = {.lex_state = 180}, + [1924] = {.lex_state = 180}, + [1925] = {.lex_state = 180}, + [1926] = {.lex_state = 180}, + [1927] = {.lex_state = 180}, + [1928] = {.lex_state = 180}, + [1929] = {.lex_state = 180}, + [1930] = {.lex_state = 180}, + [1931] = {.lex_state = 180}, + [1932] = {.lex_state = 180}, + [1933] = {.lex_state = 180}, + [1934] = {.lex_state = 180}, + [1935] = {.lex_state = 180}, + [1936] = {.lex_state = 180}, + [1937] = {.lex_state = 180}, + [1938] = {.lex_state = 180}, + [1939] = {.lex_state = 180}, + [1940] = {.lex_state = 180}, + [1941] = {.lex_state = 180}, + [1942] = {.lex_state = 180}, + [1943] = {.lex_state = 180}, + [1944] = {.lex_state = 180}, + [1945] = {.lex_state = 180}, + [1946] = {.lex_state = 180}, + [1947] = {.lex_state = 180}, + [1948] = {.lex_state = 180}, + [1949] = {.lex_state = 180}, + [1950] = {.lex_state = 180}, + [1951] = {.lex_state = 180}, + [1952] = {.lex_state = 180}, + [1953] = {.lex_state = 180}, + [1954] = {.lex_state = 180}, + [1955] = {.lex_state = 180}, + [1956] = {.lex_state = 180}, + [1957] = {.lex_state = 180}, + [1958] = {.lex_state = 180}, + [1959] = {.lex_state = 180}, + [1960] = {.lex_state = 180}, + [1961] = {.lex_state = 180}, + [1962] = {.lex_state = 180}, + [1963] = {.lex_state = 180}, + [1964] = {.lex_state = 180}, + [1965] = {.lex_state = 180}, + [1966] = {.lex_state = 180}, + [1967] = {.lex_state = 180}, + [1968] = {.lex_state = 180}, + [1969] = {.lex_state = 180}, + [1970] = {.lex_state = 180}, + [1971] = {.lex_state = 180}, + [1972] = {.lex_state = 180}, + [1973] = {.lex_state = 180}, + [1974] = {.lex_state = 180}, + [1975] = {.lex_state = 180}, + [1976] = {.lex_state = 180}, + [1977] = {.lex_state = 180}, + [1978] = {.lex_state = 180}, + [1979] = {.lex_state = 180}, + [1980] = {.lex_state = 180}, + [1981] = {.lex_state = 180}, + [1982] = {.lex_state = 180}, + [1983] = {.lex_state = 180}, + [1984] = {.lex_state = 180}, + [1985] = {.lex_state = 180}, + [1986] = {.lex_state = 180}, + [1987] = {.lex_state = 180}, + [1988] = {.lex_state = 180}, + [1989] = {.lex_state = 180}, + [1990] = {.lex_state = 180}, + [1991] = {.lex_state = 180}, + [1992] = {.lex_state = 180}, + [1993] = {.lex_state = 180}, + [1994] = {.lex_state = 180}, + [1995] = {.lex_state = 180}, + [1996] = {.lex_state = 180}, + [1997] = {.lex_state = 180}, + [1998] = {.lex_state = 180}, + [1999] = {.lex_state = 180}, + [2000] = {.lex_state = 180}, + [2001] = {.lex_state = 180}, + [2002] = {.lex_state = 180}, + [2003] = {.lex_state = 180}, + [2004] = {.lex_state = 180}, + [2005] = {.lex_state = 180}, + [2006] = {.lex_state = 180}, + [2007] = {.lex_state = 180}, + [2008] = {.lex_state = 180}, + [2009] = {.lex_state = 180}, + [2010] = {.lex_state = 180}, + [2011] = {.lex_state = 180}, + [2012] = {.lex_state = 180}, + [2013] = {.lex_state = 180}, + [2014] = {.lex_state = 180}, + [2015] = {.lex_state = 180}, + [2016] = {.lex_state = 180}, + [2017] = {.lex_state = 180}, + [2018] = {.lex_state = 180}, + [2019] = {.lex_state = 180}, + [2020] = {.lex_state = 180}, + [2021] = {.lex_state = 180}, + [2022] = {.lex_state = 180}, + [2023] = {.lex_state = 180}, + [2024] = {.lex_state = 180}, + [2025] = {.lex_state = 180}, + [2026] = {.lex_state = 180}, + [2027] = {.lex_state = 180}, + [2028] = {.lex_state = 180}, + [2029] = {.lex_state = 180}, + [2030] = {.lex_state = 180}, + [2031] = {.lex_state = 180}, + [2032] = {.lex_state = 180}, + [2033] = {.lex_state = 180}, + [2034] = {.lex_state = 180}, + [2035] = {.lex_state = 180}, + [2036] = {.lex_state = 180}, + [2037] = {.lex_state = 180}, + [2038] = {.lex_state = 180}, + [2039] = {.lex_state = 180}, + [2040] = {.lex_state = 180}, + [2041] = {.lex_state = 180}, + [2042] = {.lex_state = 180}, + [2043] = {.lex_state = 180}, + [2044] = {.lex_state = 180}, + [2045] = {.lex_state = 180}, + [2046] = {.lex_state = 180}, + [2047] = {.lex_state = 180}, + [2048] = {.lex_state = 180}, + [2049] = {.lex_state = 180}, + [2050] = {.lex_state = 180}, + [2051] = {.lex_state = 180}, + [2052] = {.lex_state = 180}, + [2053] = {.lex_state = 180}, + [2054] = {.lex_state = 180}, + [2055] = {.lex_state = 180}, + [2056] = {.lex_state = 180}, + [2057] = {.lex_state = 180}, + [2058] = {.lex_state = 180}, + [2059] = {.lex_state = 180}, + [2060] = {.lex_state = 180}, + [2061] = {.lex_state = 180}, + [2062] = {.lex_state = 180}, + [2063] = {.lex_state = 180}, + [2064] = {.lex_state = 180}, + [2065] = {.lex_state = 180}, + [2066] = {.lex_state = 180}, + [2067] = {.lex_state = 180}, + [2068] = {.lex_state = 180}, + [2069] = {.lex_state = 180}, + [2070] = {.lex_state = 180}, + [2071] = {.lex_state = 180}, + [2072] = {.lex_state = 180}, + [2073] = {.lex_state = 180}, + [2074] = {.lex_state = 180}, + [2075] = {.lex_state = 180}, + [2076] = {.lex_state = 180}, + [2077] = {.lex_state = 180}, + [2078] = {.lex_state = 180}, + [2079] = {.lex_state = 180}, + [2080] = {.lex_state = 180}, + [2081] = {.lex_state = 180}, + [2082] = {.lex_state = 180}, + [2083] = {.lex_state = 180}, + [2084] = {.lex_state = 180}, + [2085] = {.lex_state = 180}, + [2086] = {.lex_state = 180}, + [2087] = {.lex_state = 180}, + [2088] = {.lex_state = 180}, + [2089] = {.lex_state = 180}, + [2090] = {.lex_state = 180}, + [2091] = {.lex_state = 180}, + [2092] = {.lex_state = 180}, + [2093] = {.lex_state = 180}, + [2094] = {.lex_state = 180}, + [2095] = {.lex_state = 180}, + [2096] = {.lex_state = 180}, + [2097] = {.lex_state = 180}, + [2098] = {.lex_state = 180}, + [2099] = {.lex_state = 180}, + [2100] = {.lex_state = 180}, + [2101] = {.lex_state = 180}, + [2102] = {.lex_state = 180}, + [2103] = {.lex_state = 180}, + [2104] = {.lex_state = 180}, + [2105] = {.lex_state = 180}, + [2106] = {.lex_state = 180}, + [2107] = {.lex_state = 180}, + [2108] = {.lex_state = 180}, + [2109] = {.lex_state = 180}, + [2110] = {.lex_state = 180}, + [2111] = {.lex_state = 180}, + [2112] = {.lex_state = 180}, + [2113] = {.lex_state = 180}, + [2114] = {.lex_state = 180}, + [2115] = {.lex_state = 180}, + [2116] = {.lex_state = 180}, + [2117] = {.lex_state = 180}, + [2118] = {.lex_state = 180}, + [2119] = {.lex_state = 180}, + [2120] = {.lex_state = 180}, + [2121] = {.lex_state = 180}, + [2122] = {.lex_state = 180}, + [2123] = {.lex_state = 180}, + [2124] = {.lex_state = 180}, + [2125] = {.lex_state = 180}, + [2126] = {.lex_state = 180}, + [2127] = {.lex_state = 180}, + [2128] = {.lex_state = 180}, + [2129] = {.lex_state = 180}, + [2130] = {.lex_state = 180}, + [2131] = {.lex_state = 180}, + [2132] = {.lex_state = 180}, + [2133] = {.lex_state = 228}, + [2134] = {.lex_state = 180}, + [2135] = {.lex_state = 180}, + [2136] = {.lex_state = 180}, + [2137] = {.lex_state = 180}, + [2138] = {.lex_state = 180}, + [2139] = {.lex_state = 180}, + [2140] = {.lex_state = 180}, + [2141] = {.lex_state = 180}, + [2142] = {.lex_state = 180}, + [2143] = {.lex_state = 180}, + [2144] = {.lex_state = 180}, + [2145] = {.lex_state = 180}, + [2146] = {.lex_state = 180}, + [2147] = {.lex_state = 180}, + [2148] = {.lex_state = 180}, + [2149] = {.lex_state = 180}, + [2150] = {.lex_state = 180}, + [2151] = {.lex_state = 180}, + [2152] = {.lex_state = 180}, + [2153] = {.lex_state = 180}, + [2154] = {.lex_state = 180}, + [2155] = {.lex_state = 180}, + [2156] = {.lex_state = 180}, + [2157] = {.lex_state = 180}, + [2158] = {.lex_state = 180}, + [2159] = {.lex_state = 180}, + [2160] = {.lex_state = 180}, + [2161] = {.lex_state = 180}, + [2162] = {.lex_state = 180}, + [2163] = {.lex_state = 180}, + [2164] = {.lex_state = 180}, + [2165] = {.lex_state = 180}, + [2166] = {.lex_state = 180}, + [2167] = {.lex_state = 180}, + [2168] = {.lex_state = 180}, + [2169] = {.lex_state = 180}, + [2170] = {.lex_state = 180}, + [2171] = {.lex_state = 180}, + [2172] = {.lex_state = 180}, + [2173] = {.lex_state = 180}, + [2174] = {.lex_state = 180}, + [2175] = {.lex_state = 180}, + [2176] = {.lex_state = 180}, + [2177] = {.lex_state = 180}, + [2178] = {.lex_state = 180}, + [2179] = {.lex_state = 180}, + [2180] = {.lex_state = 180}, + [2181] = {.lex_state = 180}, + [2182] = {.lex_state = 180}, + [2183] = {.lex_state = 180}, + [2184] = {.lex_state = 180}, + [2185] = {.lex_state = 180}, + [2186] = {.lex_state = 228}, + [2187] = {.lex_state = 180}, + [2188] = {.lex_state = 180}, + [2189] = {.lex_state = 180}, + [2190] = {.lex_state = 180}, + [2191] = {.lex_state = 180}, + [2192] = {.lex_state = 180}, + [2193] = {.lex_state = 180}, + [2194] = {.lex_state = 180}, + [2195] = {.lex_state = 180}, + [2196] = {.lex_state = 180}, + [2197] = {.lex_state = 180}, + [2198] = {.lex_state = 180}, + [2199] = {.lex_state = 180}, + [2200] = {.lex_state = 180}, + [2201] = {.lex_state = 180}, + [2202] = {.lex_state = 180}, + [2203] = {.lex_state = 180}, + [2204] = {.lex_state = 180}, + [2205] = {.lex_state = 180}, + [2206] = {.lex_state = 180}, + [2207] = {.lex_state = 180}, + [2208] = {.lex_state = 180}, + [2209] = {.lex_state = 180}, + [2210] = {.lex_state = 180}, + [2211] = {.lex_state = 180}, + [2212] = {.lex_state = 180}, + [2213] = {.lex_state = 180}, + [2214] = {.lex_state = 180}, + [2215] = {.lex_state = 180}, + [2216] = {.lex_state = 180}, + [2217] = {.lex_state = 180}, + [2218] = {.lex_state = 180}, + [2219] = {.lex_state = 180}, + [2220] = {.lex_state = 180}, + [2221] = {.lex_state = 180}, + [2222] = {.lex_state = 180}, + [2223] = {.lex_state = 180}, + [2224] = {.lex_state = 180}, + [2225] = {.lex_state = 180}, + [2226] = {.lex_state = 180}, + [2227] = {.lex_state = 180}, + [2228] = {.lex_state = 180}, + [2229] = {.lex_state = 180}, + [2230] = {.lex_state = 180}, + [2231] = {.lex_state = 180}, + [2232] = {.lex_state = 180}, + [2233] = {.lex_state = 180}, + [2234] = {.lex_state = 180}, + [2235] = {.lex_state = 180}, + [2236] = {.lex_state = 180}, + [2237] = {.lex_state = 180}, + [2238] = {.lex_state = 241}, + [2239] = {.lex_state = 242}, + [2240] = {.lex_state = 242}, + [2241] = {.lex_state = 242}, + [2242] = {.lex_state = 242}, + [2243] = {.lex_state = 242}, + [2244] = {.lex_state = 242}, + [2245] = {.lex_state = 245}, + [2246] = {.lex_state = 242}, + [2247] = {.lex_state = 245}, + [2248] = {.lex_state = 228}, + [2249] = {.lex_state = 228}, + [2250] = {.lex_state = 228}, + [2251] = {.lex_state = 241}, + [2252] = {.lex_state = 228}, + [2253] = {.lex_state = 228}, + [2254] = {.lex_state = 228}, + [2255] = {.lex_state = 228}, + [2256] = {.lex_state = 241}, + [2257] = {.lex_state = 241}, + [2258] = {.lex_state = 241}, + [2259] = {.lex_state = 245}, + [2260] = {.lex_state = 245}, + [2261] = {.lex_state = 245}, + [2262] = {.lex_state = 241}, + [2263] = {.lex_state = 245}, + [2264] = {.lex_state = 241}, + [2265] = {.lex_state = 177}, + [2266] = {.lex_state = 177}, + [2267] = {.lex_state = 180}, + [2268] = {.lex_state = 187}, + [2269] = {.lex_state = 199}, + [2270] = {.lex_state = 199}, + [2271] = {.lex_state = 199}, + [2272] = {.lex_state = 199}, + [2273] = {.lex_state = 199}, + [2274] = {.lex_state = 199}, + [2275] = {.lex_state = 199}, + [2276] = {.lex_state = 199}, + [2277] = {.lex_state = 199}, + [2278] = {.lex_state = 199}, + [2279] = {.lex_state = 199}, + [2280] = {.lex_state = 199}, + [2281] = {.lex_state = 199}, + [2282] = {.lex_state = 199}, + [2283] = {.lex_state = 199}, + [2284] = {.lex_state = 199}, + [2285] = {.lex_state = 199}, + [2286] = {.lex_state = 199}, + [2287] = {.lex_state = 199}, + [2288] = {.lex_state = 199}, + [2289] = {.lex_state = 199}, + [2290] = {.lex_state = 199}, + [2291] = {.lex_state = 199}, + [2292] = {.lex_state = 199}, + [2293] = {.lex_state = 199}, + [2294] = {.lex_state = 199}, + [2295] = {.lex_state = 199}, + [2296] = {.lex_state = 199}, + [2297] = {.lex_state = 199}, + [2298] = {.lex_state = 199}, + [2299] = {.lex_state = 199}, + [2300] = {.lex_state = 199}, + [2301] = {.lex_state = 199}, + [2302] = {.lex_state = 199}, + [2303] = {.lex_state = 199}, + [2304] = {.lex_state = 199}, + [2305] = {.lex_state = 199}, + [2306] = {.lex_state = 199}, + [2307] = {.lex_state = 199}, + [2308] = {.lex_state = 199}, + [2309] = {.lex_state = 199}, + [2310] = {.lex_state = 199}, + [2311] = {.lex_state = 199}, + [2312] = {.lex_state = 199}, + [2313] = {.lex_state = 199}, + [2314] = {.lex_state = 188}, + [2315] = {.lex_state = 199}, + [2316] = {.lex_state = 199}, + [2317] = {.lex_state = 199}, + [2318] = {.lex_state = 199}, + [2319] = {.lex_state = 201}, + [2320] = {.lex_state = 199}, + [2321] = {.lex_state = 199}, + [2322] = {.lex_state = 199}, + [2323] = {.lex_state = 199}, + [2324] = {.lex_state = 199}, + [2325] = {.lex_state = 199}, + [2326] = {.lex_state = 199}, + [2327] = {.lex_state = 199}, + [2328] = {.lex_state = 199}, + [2329] = {.lex_state = 199}, + [2330] = {.lex_state = 192}, + [2331] = {.lex_state = 199}, + [2332] = {.lex_state = 199}, + [2333] = {.lex_state = 199}, + [2334] = {.lex_state = 199}, + [2335] = {.lex_state = 199}, + [2336] = {.lex_state = 199}, + [2337] = {.lex_state = 199}, + [2338] = {.lex_state = 199}, + [2339] = {.lex_state = 199}, + [2340] = {.lex_state = 180}, + [2341] = {.lex_state = 199}, + [2342] = {.lex_state = 199}, + [2343] = {.lex_state = 199}, + [2344] = {.lex_state = 199}, + [2345] = {.lex_state = 199}, + [2346] = {.lex_state = 180}, + [2347] = {.lex_state = 199}, + [2348] = {.lex_state = 199}, + [2349] = {.lex_state = 199}, + [2350] = {.lex_state = 199}, + [2351] = {.lex_state = 199}, + [2352] = {.lex_state = 199}, + [2353] = {.lex_state = 199}, + [2354] = {.lex_state = 199}, + [2355] = {.lex_state = 199}, + [2356] = {.lex_state = 182}, + [2357] = {.lex_state = 201}, + [2358] = {.lex_state = 201}, + [2359] = {.lex_state = 201}, + [2360] = {.lex_state = 201}, + [2361] = {.lex_state = 201}, + [2362] = {.lex_state = 201}, + [2363] = {.lex_state = 201}, + [2364] = {.lex_state = 200}, + [2365] = {.lex_state = 200}, + [2366] = {.lex_state = 200}, + [2367] = {.lex_state = 200}, + [2368] = {.lex_state = 200}, + [2369] = {.lex_state = 200}, + [2370] = {.lex_state = 200}, + [2371] = {.lex_state = 214}, + [2372] = {.lex_state = 214}, + [2373] = {.lex_state = 201}, + [2374] = {.lex_state = 201}, + [2375] = {.lex_state = 214}, + [2376] = {.lex_state = 222}, + [2377] = {.lex_state = 222}, + [2378] = {.lex_state = 199}, + [2379] = {.lex_state = 222}, + [2380] = {.lex_state = 214}, + [2381] = {.lex_state = 214}, + [2382] = {.lex_state = 214}, + [2383] = {.lex_state = 214}, + [2384] = {.lex_state = 180}, + [2385] = {.lex_state = 180}, + [2386] = {.lex_state = 214}, + [2387] = {.lex_state = 214}, + [2388] = {.lex_state = 222}, + [2389] = {.lex_state = 214}, + [2390] = {.lex_state = 208}, + [2391] = {.lex_state = 222}, + [2392] = {.lex_state = 222}, + [2393] = {.lex_state = 222}, + [2394] = {.lex_state = 180}, + [2395] = {.lex_state = 180}, + [2396] = {.lex_state = 180}, + [2397] = {.lex_state = 214}, + [2398] = {.lex_state = 180}, + [2399] = {.lex_state = 180}, + [2400] = {.lex_state = 180}, + [2401] = {.lex_state = 180}, + [2402] = {.lex_state = 180}, + [2403] = {.lex_state = 180}, + [2404] = {.lex_state = 180}, + [2405] = {.lex_state = 180}, + [2406] = {.lex_state = 180}, + [2407] = {.lex_state = 180}, + [2408] = {.lex_state = 182}, + [2409] = {.lex_state = 180}, + [2410] = {.lex_state = 212}, + [2411] = {.lex_state = 180}, + [2412] = {.lex_state = 180}, + [2413] = {.lex_state = 208}, + [2414] = {.lex_state = 212}, + [2415] = {.lex_state = 212}, + [2416] = {.lex_state = 180}, + [2417] = {.lex_state = 212}, + [2418] = {.lex_state = 180}, + [2419] = {.lex_state = 214}, + [2420] = {.lex_state = 180}, + [2421] = {.lex_state = 180}, + [2422] = {.lex_state = 212}, + [2423] = {.lex_state = 212}, + [2424] = {.lex_state = 212}, + [2425] = {.lex_state = 208}, + [2426] = {.lex_state = 214}, + [2427] = {.lex_state = 219}, + [2428] = {.lex_state = 219}, + [2429] = {.lex_state = 219}, + [2430] = {.lex_state = 219}, + [2431] = {.lex_state = 219}, + [2432] = {.lex_state = 219}, + [2433] = {.lex_state = 219}, + [2434] = {.lex_state = 208}, + [2435] = {.lex_state = 214}, + [2436] = {.lex_state = 184}, + [2437] = {.lex_state = 184}, + [2438] = {.lex_state = 184}, + [2439] = {.lex_state = 208}, + [2440] = {.lex_state = 208}, + [2441] = {.lex_state = 208}, + [2442] = {.lex_state = 208}, + [2443] = {.lex_state = 197}, + [2444] = {.lex_state = 197}, + [2445] = {.lex_state = 184}, + [2446] = {.lex_state = 229}, + [2447] = {.lex_state = 229}, + [2448] = {.lex_state = 229}, + [2449] = {.lex_state = 184}, + [2450] = {.lex_state = 203}, + [2451] = {.lex_state = 229}, + [2452] = {.lex_state = 208}, + [2453] = {.lex_state = 229}, + [2454] = {.lex_state = 184}, + [2455] = {.lex_state = 212}, + [2456] = {.lex_state = 229}, + [2457] = {.lex_state = 184}, + [2458] = {.lex_state = 180}, + [2459] = {.lex_state = 229}, + [2460] = {.lex_state = 229}, + [2461] = {.lex_state = 229}, + [2462] = {.lex_state = 229}, + [2463] = {.lex_state = 229}, + [2464] = {.lex_state = 229}, + [2465] = {.lex_state = 229}, + [2466] = {.lex_state = 208}, + [2467] = {.lex_state = 212}, + [2468] = {.lex_state = 208}, + [2469] = {.lex_state = 208}, + [2470] = {.lex_state = 208}, + [2471] = {.lex_state = 208}, + [2472] = {.lex_state = 208}, + [2473] = {.lex_state = 208}, + [2474] = {.lex_state = 208}, + [2475] = {.lex_state = 208}, + [2476] = {.lex_state = 208}, + [2477] = {.lex_state = 208}, + [2478] = {.lex_state = 203}, + [2479] = {.lex_state = 203}, + [2480] = {.lex_state = 208}, + [2481] = {.lex_state = 208}, + [2482] = {.lex_state = 208}, + [2483] = {.lex_state = 208}, + [2484] = {.lex_state = 208}, + [2485] = {.lex_state = 208}, + [2486] = {.lex_state = 208}, + [2487] = {.lex_state = 208}, + [2488] = {.lex_state = 182}, + [2489] = {.lex_state = 208}, + [2490] = {.lex_state = 208}, + [2491] = {.lex_state = 208}, + [2492] = {.lex_state = 208}, + [2493] = {.lex_state = 208}, + [2494] = {.lex_state = 208}, + [2495] = {.lex_state = 208}, + [2496] = {.lex_state = 208}, + [2497] = {.lex_state = 208}, + [2498] = {.lex_state = 219}, + [2499] = {.lex_state = 208}, + [2500] = {.lex_state = 208}, + [2501] = {.lex_state = 208}, + [2502] = {.lex_state = 207}, + [2503] = {.lex_state = 208}, + [2504] = {.lex_state = 208}, + [2505] = {.lex_state = 208}, + [2506] = {.lex_state = 208}, + [2507] = {.lex_state = 203}, + [2508] = {.lex_state = 208}, + [2509] = {.lex_state = 203}, + [2510] = {.lex_state = 208}, + [2511] = {.lex_state = 208}, + [2512] = {.lex_state = 208}, + [2513] = {.lex_state = 208}, + [2514] = {.lex_state = 208}, + [2515] = {.lex_state = 208}, + [2516] = {.lex_state = 208}, + [2517] = {.lex_state = 208}, + [2518] = {.lex_state = 208}, + [2519] = {.lex_state = 208}, + [2520] = {.lex_state = 208}, + [2521] = {.lex_state = 208}, + [2522] = {.lex_state = 208}, + [2523] = {.lex_state = 208}, + [2524] = {.lex_state = 208}, + [2525] = {.lex_state = 208}, + [2526] = {.lex_state = 208}, + [2527] = {.lex_state = 208}, + [2528] = {.lex_state = 208}, + [2529] = {.lex_state = 208}, + [2530] = {.lex_state = 208}, + [2531] = {.lex_state = 208}, + [2532] = {.lex_state = 208}, + [2533] = {.lex_state = 208}, + [2534] = {.lex_state = 203}, + [2535] = {.lex_state = 203}, + [2536] = {.lex_state = 219}, + [2537] = {.lex_state = 209}, + [2538] = {.lex_state = 200}, + [2539] = {.lex_state = 203}, + [2540] = {.lex_state = 200}, + [2541] = {.lex_state = 209}, + [2542] = {.lex_state = 244}, + [2543] = {.lex_state = 200}, + [2544] = {.lex_state = 244}, + [2545] = {.lex_state = 203}, + [2546] = {.lex_state = 209}, + [2547] = {.lex_state = 209}, + [2548] = {.lex_state = 209}, + [2549] = {.lex_state = 209}, + [2550] = {.lex_state = 200}, + [2551] = {.lex_state = 209}, + [2552] = {.lex_state = 200}, + [2553] = {.lex_state = 209}, + [2554] = {.lex_state = 200}, + [2555] = {.lex_state = 200}, + [2556] = {.lex_state = 200}, + [2557] = {.lex_state = 209}, + [2558] = {.lex_state = 200}, + [2559] = {.lex_state = 184}, + [2560] = {.lex_state = 209}, + [2561] = {.lex_state = 209}, + [2562] = {.lex_state = 209}, + [2563] = {.lex_state = 209}, + [2564] = {.lex_state = 209}, + [2565] = {.lex_state = 233}, + [2566] = {.lex_state = 209}, + [2567] = {.lex_state = 184}, + [2568] = {.lex_state = 244}, + [2569] = {.lex_state = 209}, + [2570] = {.lex_state = 191}, + [2571] = {.lex_state = 182}, + [2572] = {.lex_state = 191}, + [2573] = {.lex_state = 244}, + [2574] = {.lex_state = 191}, + [2575] = {.lex_state = 184}, + [2576] = {.lex_state = 207}, + [2577] = {.lex_state = 203}, + [2578] = {.lex_state = 207}, + [2579] = {.lex_state = 200}, + [2580] = {.lex_state = 187}, + [2581] = {.lex_state = 182}, + [2582] = {.lex_state = 187}, + [2583] = {.lex_state = 208}, + [2584] = {.lex_state = 182}, + [2585] = {.lex_state = 208}, + [2586] = {.lex_state = 203}, + [2587] = {.lex_state = 184}, + [2588] = {.lex_state = 182}, + [2589] = {.lex_state = 203}, + [2590] = {.lex_state = 184}, + [2591] = {.lex_state = 202}, + [2592] = {.lex_state = 182}, + [2593] = {.lex_state = 190}, + [2594] = {.lex_state = 203}, + [2595] = {.lex_state = 182}, + [2596] = {.lex_state = 182}, + [2597] = {.lex_state = 202}, + [2598] = {.lex_state = 203}, + [2599] = {.lex_state = 203}, + [2600] = {.lex_state = 200}, + [2601] = {.lex_state = 182}, + [2602] = {.lex_state = 203}, + [2603] = {.lex_state = 202}, + [2604] = {.lex_state = 182}, + [2605] = {.lex_state = 202}, + [2606] = {.lex_state = 182}, + [2607] = {.lex_state = 207}, + [2608] = {.lex_state = 202}, + [2609] = {.lex_state = 190}, + [2610] = {.lex_state = 182}, + [2611] = {.lex_state = 203}, + [2612] = {.lex_state = 203}, + [2613] = {.lex_state = 182}, + [2614] = {.lex_state = 203}, + [2615] = {.lex_state = 203}, + [2616] = {.lex_state = 203}, + [2617] = {.lex_state = 188}, + [2618] = {.lex_state = 190}, + [2619] = {.lex_state = 203}, + [2620] = {.lex_state = 188}, + [2621] = {.lex_state = 200}, + [2622] = {.lex_state = 200}, + [2623] = {.lex_state = 182}, + [2624] = {.lex_state = 233}, + [2625] = {.lex_state = 203}, + [2626] = {.lex_state = 207}, + [2627] = {.lex_state = 182}, + [2628] = {.lex_state = 233}, + [2629] = {.lex_state = 203}, + [2630] = {.lex_state = 182}, + [2631] = {.lex_state = 203}, + [2632] = {.lex_state = 233}, + [2633] = {.lex_state = 200}, + [2634] = {.lex_state = 182}, + [2635] = {.lex_state = 200}, + [2636] = {.lex_state = 202}, + [2637] = {.lex_state = 200}, + [2638] = {.lex_state = 200}, + [2639] = {.lex_state = 203}, + [2640] = {.lex_state = 200}, + [2641] = {.lex_state = 203}, + [2642] = {.lex_state = 203}, + [2643] = {.lex_state = 203}, + [2644] = {.lex_state = 200}, + [2645] = {.lex_state = 200}, + [2646] = {.lex_state = 202}, + [2647] = {.lex_state = 202}, + [2648] = {.lex_state = 203}, + [2649] = {.lex_state = 202}, + [2650] = {.lex_state = 202}, + [2651] = {.lex_state = 203}, + [2652] = {.lex_state = 203}, + [2653] = {.lex_state = 192}, + [2654] = {.lex_state = 203}, + [2655] = {.lex_state = 203}, + [2656] = {.lex_state = 203}, + [2657] = {.lex_state = 182}, + [2658] = {.lex_state = 202}, + [2659] = {.lex_state = 184}, + [2660] = {.lex_state = 194}, + [2661] = {.lex_state = 203}, + [2662] = {.lex_state = 203}, + [2663] = {.lex_state = 203}, + [2664] = {.lex_state = 203}, + [2665] = {.lex_state = 203}, + [2666] = {.lex_state = 203}, + [2667] = {.lex_state = 203}, + [2668] = {.lex_state = 203}, + [2669] = {.lex_state = 184}, + [2670] = {.lex_state = 203}, + [2671] = {.lex_state = 203}, + [2672] = {.lex_state = 203}, + [2673] = {.lex_state = 203}, + [2674] = {.lex_state = 203}, + [2675] = {.lex_state = 203}, + [2676] = {.lex_state = 203}, + [2677] = {.lex_state = 233}, + [2678] = {.lex_state = 203}, + [2679] = {.lex_state = 200}, + [2680] = {.lex_state = 200}, + [2681] = {.lex_state = 203}, + [2682] = {.lex_state = 202}, + [2683] = {.lex_state = 203}, + [2684] = {.lex_state = 203}, + [2685] = {.lex_state = 203}, + [2686] = {.lex_state = 203}, + [2687] = {.lex_state = 203}, + [2688] = {.lex_state = 203}, + [2689] = {.lex_state = 182}, + [2690] = {.lex_state = 182}, + [2691] = {.lex_state = 203}, + [2692] = {.lex_state = 203}, + [2693] = {.lex_state = 203}, + [2694] = {.lex_state = 203}, + [2695] = {.lex_state = 194}, + [2696] = {.lex_state = 200}, + [2697] = {.lex_state = 203}, + [2698] = {.lex_state = 203}, + [2699] = {.lex_state = 203}, + [2700] = {.lex_state = 233}, + [2701] = {.lex_state = 203}, + [2702] = {.lex_state = 203}, + [2703] = {.lex_state = 203}, + [2704] = {.lex_state = 200}, + [2705] = {.lex_state = 200}, + [2706] = {.lex_state = 203}, + [2707] = {.lex_state = 203}, + [2708] = {.lex_state = 200}, + [2709] = {.lex_state = 203}, + [2710] = {.lex_state = 202}, + [2711] = {.lex_state = 194}, + [2712] = {.lex_state = 202}, + [2713] = {.lex_state = 202}, + [2714] = {.lex_state = 203}, + [2715] = {.lex_state = 184}, + [2716] = {.lex_state = 202}, + [2717] = {.lex_state = 203}, + [2718] = {.lex_state = 203}, + [2719] = {.lex_state = 202}, + [2720] = {.lex_state = 200}, + [2721] = {.lex_state = 192}, + [2722] = {.lex_state = 184}, + [2723] = {.lex_state = 202}, + [2724] = {.lex_state = 203}, + [2725] = {.lex_state = 203}, + [2726] = {.lex_state = 203}, + [2727] = {.lex_state = 203}, + [2728] = {.lex_state = 203}, + [2729] = {.lex_state = 203}, + [2730] = {.lex_state = 203}, + [2731] = {.lex_state = 203}, + [2732] = {.lex_state = 200}, + [2733] = {.lex_state = 200}, + [2734] = {.lex_state = 182}, + [2735] = {.lex_state = 203}, + [2736] = {.lex_state = 209}, + [2737] = {.lex_state = 203}, + [2738] = {.lex_state = 203}, + [2739] = {.lex_state = 203}, + [2740] = {.lex_state = 209}, + [2741] = {.lex_state = 184}, + [2742] = {.lex_state = 203}, + [2743] = {.lex_state = 209}, + [2744] = {.lex_state = 203}, + [2745] = {.lex_state = 209}, + [2746] = {.lex_state = 232}, + [2747] = {.lex_state = 232}, + [2748] = {.lex_state = 232}, + [2749] = {.lex_state = 200}, + [2750] = {.lex_state = 232}, + [2751] = {.lex_state = 209}, + [2752] = {.lex_state = 203}, + [2753] = {.lex_state = 232}, + [2754] = {.lex_state = 203}, + [2755] = {.lex_state = 203}, + [2756] = {.lex_state = 203}, + [2757] = {.lex_state = 232}, + [2758] = {.lex_state = 209}, + [2759] = {.lex_state = 209}, + [2760] = {.lex_state = 232}, + [2761] = {.lex_state = 209}, + [2762] = {.lex_state = 209}, + [2763] = {.lex_state = 200}, + [2764] = {.lex_state = 209}, + [2765] = {.lex_state = 203}, + [2766] = {.lex_state = 203}, + [2767] = {.lex_state = 203}, + [2768] = {.lex_state = 232}, + [2769] = {.lex_state = 203}, + [2770] = {.lex_state = 200}, + [2771] = {.lex_state = 190}, + [2772] = {.lex_state = 184}, + [2773] = {.lex_state = 184}, + [2774] = {.lex_state = 232}, + [2775] = {.lex_state = 184}, + [2776] = {.lex_state = 209}, + [2777] = {.lex_state = 232}, + [2778] = {.lex_state = 232}, + [2779] = {.lex_state = 184}, + [2780] = {.lex_state = 203}, + [2781] = {.lex_state = 207}, + [2782] = {.lex_state = 203}, + [2783] = {.lex_state = 232}, + [2784] = {.lex_state = 203}, + [2785] = {.lex_state = 203}, + [2786] = {.lex_state = 232}, + [2787] = {.lex_state = 232}, + [2788] = {.lex_state = 207}, + [2789] = {.lex_state = 203}, + [2790] = {.lex_state = 200}, + [2791] = {.lex_state = 203}, + [2792] = {.lex_state = 209}, + [2793] = {.lex_state = 209}, + [2794] = {.lex_state = 209}, + [2795] = {.lex_state = 203}, + [2796] = {.lex_state = 194}, + [2797] = {.lex_state = 203}, + [2798] = {.lex_state = 202}, + [2799] = {.lex_state = 213}, + [2800] = {.lex_state = 203}, + [2801] = {.lex_state = 203}, + [2802] = {.lex_state = 200}, + [2803] = {.lex_state = 190}, + [2804] = {.lex_state = 200}, + [2805] = {.lex_state = 202}, + [2806] = {.lex_state = 184}, + [2807] = {.lex_state = 200}, + [2808] = {.lex_state = 200}, + [2809] = {.lex_state = 190}, + [2810] = {.lex_state = 206}, + [2811] = {.lex_state = 203}, + [2812] = {.lex_state = 190}, + [2813] = {.lex_state = 202}, + [2814] = {.lex_state = 203}, + [2815] = {.lex_state = 190}, + [2816] = {.lex_state = 232}, + [2817] = {.lex_state = 184}, + [2818] = {.lex_state = 232}, + [2819] = {.lex_state = 203}, + [2820] = {.lex_state = 212}, + [2821] = {.lex_state = 232}, + [2822] = {.lex_state = 200}, + [2823] = {.lex_state = 202}, + [2824] = {.lex_state = 200}, + [2825] = {.lex_state = 202}, + [2826] = {.lex_state = 184}, + [2827] = {.lex_state = 233}, + [2828] = {.lex_state = 203}, + [2829] = {.lex_state = 190}, + [2830] = {.lex_state = 190}, + [2831] = {.lex_state = 203}, + [2832] = {.lex_state = 184}, + [2833] = {.lex_state = 202}, + [2834] = {.lex_state = 200}, + [2835] = {.lex_state = 190}, + [2836] = {.lex_state = 232}, + [2837] = {.lex_state = 200}, + [2838] = {.lex_state = 203}, + [2839] = {.lex_state = 203}, + [2840] = {.lex_state = 203}, + [2841] = {.lex_state = 203}, + [2842] = {.lex_state = 203}, + [2843] = {.lex_state = 194}, + [2844] = {.lex_state = 203}, + [2845] = {.lex_state = 203}, + [2846] = {.lex_state = 203}, + [2847] = {.lex_state = 203}, + [2848] = {.lex_state = 203}, + [2849] = {.lex_state = 203}, + [2850] = {.lex_state = 203}, + [2851] = {.lex_state = 203}, + [2852] = {.lex_state = 203}, + [2853] = {.lex_state = 203}, + [2854] = {.lex_state = 203}, + [2855] = {.lex_state = 203}, + [2856] = {.lex_state = 203}, + [2857] = {.lex_state = 203}, + [2858] = {.lex_state = 203}, + [2859] = {.lex_state = 203}, + [2860] = {.lex_state = 203}, + [2861] = {.lex_state = 203}, + [2862] = {.lex_state = 203}, + [2863] = {.lex_state = 203}, + [2864] = {.lex_state = 203}, + [2865] = {.lex_state = 203}, + [2866] = {.lex_state = 219}, + [2867] = {.lex_state = 203}, + [2868] = {.lex_state = 203}, + [2869] = {.lex_state = 203}, + [2870] = {.lex_state = 190}, + [2871] = {.lex_state = 203}, + [2872] = {.lex_state = 190}, + [2873] = {.lex_state = 203}, + [2874] = {.lex_state = 203}, + [2875] = {.lex_state = 190}, + [2876] = {.lex_state = 203}, + [2877] = {.lex_state = 203}, + [2878] = {.lex_state = 203}, + [2879] = {.lex_state = 203}, + [2880] = {.lex_state = 203}, + [2881] = {.lex_state = 203}, + [2882] = {.lex_state = 220}, + [2883] = {.lex_state = 203}, + [2884] = {.lex_state = 194}, + [2885] = {.lex_state = 203}, + [2886] = {.lex_state = 203}, + [2887] = {.lex_state = 203}, + [2888] = {.lex_state = 203}, + [2889] = {.lex_state = 203}, + [2890] = {.lex_state = 203}, + [2891] = {.lex_state = 203}, + [2892] = {.lex_state = 203}, + [2893] = {.lex_state = 203}, + [2894] = {.lex_state = 203}, + [2895] = {.lex_state = 203}, + [2896] = {.lex_state = 190}, + [2897] = {.lex_state = 203}, + [2898] = {.lex_state = 203}, + [2899] = {.lex_state = 203}, + [2900] = {.lex_state = 203}, + [2901] = {.lex_state = 203}, + [2902] = {.lex_state = 203}, + [2903] = {.lex_state = 203}, + [2904] = {.lex_state = 203}, + [2905] = {.lex_state = 203}, + [2906] = {.lex_state = 203}, + [2907] = {.lex_state = 203}, + [2908] = {.lex_state = 203}, + [2909] = {.lex_state = 203}, + [2910] = {.lex_state = 203}, + [2911] = {.lex_state = 203}, + [2912] = {.lex_state = 203}, + [2913] = {.lex_state = 203}, + [2914] = {.lex_state = 203}, + [2915] = {.lex_state = 203}, + [2916] = {.lex_state = 203}, + [2917] = {.lex_state = 203}, + [2918] = {.lex_state = 203}, + [2919] = {.lex_state = 203}, + [2920] = {.lex_state = 203}, + [2921] = {.lex_state = 203}, + [2922] = {.lex_state = 203}, + [2923] = {.lex_state = 194}, + [2924] = {.lex_state = 203}, + [2925] = {.lex_state = 203}, + [2926] = {.lex_state = 203}, + [2927] = {.lex_state = 194}, + [2928] = {.lex_state = 203}, + [2929] = {.lex_state = 212}, + [2930] = {.lex_state = 212}, + [2931] = {.lex_state = 231}, + [2932] = {.lex_state = 231}, + [2933] = {.lex_state = 231}, + [2934] = {.lex_state = 231}, + [2935] = {.lex_state = 212}, + [2936] = {.lex_state = 231}, + [2937] = {.lex_state = 231}, + [2938] = {.lex_state = 231}, + [2939] = {.lex_state = 212}, + [2940] = {.lex_state = 194}, + [2941] = {.lex_state = 232}, + [2942] = {.lex_state = 212}, + [2943] = {.lex_state = 231}, + [2944] = {.lex_state = 212}, + [2945] = {.lex_state = 212}, + [2946] = {.lex_state = 194}, + [2947] = {.lex_state = 231}, + [2948] = {.lex_state = 212}, + [2949] = {.lex_state = 190}, + [2950] = {.lex_state = 231}, + [2951] = {.lex_state = 212}, + [2952] = {.lex_state = 244}, + [2953] = {.lex_state = 212}, + [2954] = {.lex_state = 212}, + [2955] = {.lex_state = 231}, + [2956] = {.lex_state = 212}, + [2957] = {.lex_state = 244}, + [2958] = {.lex_state = 194}, + [2959] = {.lex_state = 212}, + [2960] = {.lex_state = 212}, + [2961] = {.lex_state = 194}, + [2962] = {.lex_state = 232}, + [2963] = {.lex_state = 231}, + [2964] = {.lex_state = 212}, + [2965] = {.lex_state = 232}, + [2966] = {.lex_state = 232}, + [2967] = {.lex_state = 219}, + [2968] = {.lex_state = 213}, + [2969] = {.lex_state = 232}, + [2970] = {.lex_state = 232}, + [2971] = {.lex_state = 219}, + [2972] = {.lex_state = 212}, + [2973] = {.lex_state = 232}, + [2974] = {.lex_state = 219}, + [2975] = {.lex_state = 219}, + [2976] = {.lex_state = 213}, + [2977] = {.lex_state = 212}, + [2978] = {.lex_state = 219}, + [2979] = {.lex_state = 212}, + [2980] = {.lex_state = 219}, + [2981] = {.lex_state = 219}, + [2982] = {.lex_state = 232}, + [2983] = {.lex_state = 231}, + [2984] = {.lex_state = 213}, + [2985] = {.lex_state = 212}, + [2986] = {.lex_state = 219}, + [2987] = {.lex_state = 212}, + [2988] = {.lex_state = 219}, + [2989] = {.lex_state = 213}, + [2990] = {.lex_state = 219}, + [2991] = {.lex_state = 232}, + [2992] = {.lex_state = 219}, + [2993] = {.lex_state = 213}, + [2994] = {.lex_state = 212}, + [2995] = {.lex_state = 219}, + [2996] = {.lex_state = 186}, + [2997] = {.lex_state = 232}, + [2998] = {.lex_state = 232}, + [2999] = {.lex_state = 231}, + [3000] = {.lex_state = 213}, + [3001] = {.lex_state = 186}, + [3002] = {.lex_state = 190}, + [3003] = {.lex_state = 232}, + [3004] = {.lex_state = 219}, + [3005] = {.lex_state = 190}, + [3006] = {.lex_state = 219}, + [3007] = {.lex_state = 186}, + [3008] = {.lex_state = 232}, + [3009] = {.lex_state = 213}, + [3010] = {.lex_state = 232}, + [3011] = {.lex_state = 232}, + [3012] = {.lex_state = 190}, + [3013] = {.lex_state = 190}, + [3014] = {.lex_state = 232}, + [3015] = {.lex_state = 219}, + [3016] = {.lex_state = 232}, + [3017] = {.lex_state = 202}, + [3018] = {.lex_state = 202}, + [3019] = {.lex_state = 202}, + [3020] = {.lex_state = 213}, + [3021] = {.lex_state = 202}, + [3022] = {.lex_state = 202}, + [3023] = {.lex_state = 202}, + [3024] = {.lex_state = 220}, + [3025] = {.lex_state = 220}, + [3026] = {.lex_state = 219}, + [3027] = {.lex_state = 220}, + [3028] = {.lex_state = 220}, + [3029] = {.lex_state = 232}, + [3030] = {.lex_state = 219}, + [3031] = {.lex_state = 219}, + [3032] = {.lex_state = 219}, + [3033] = {.lex_state = 190}, + [3034] = {.lex_state = 190}, + [3035] = {.lex_state = 232}, + [3036] = {.lex_state = 232}, + [3037] = {.lex_state = 219}, + [3038] = {.lex_state = 220}, + [3039] = {.lex_state = 232}, + [3040] = {.lex_state = 232}, + [3041] = {.lex_state = 232}, + [3042] = {.lex_state = 232}, + [3043] = {.lex_state = 232}, + [3044] = {.lex_state = 232}, + [3045] = {.lex_state = 220}, + [3046] = {.lex_state = 232}, + [3047] = {.lex_state = 232}, + [3048] = {.lex_state = 232}, + [3049] = {.lex_state = 232}, + [3050] = {.lex_state = 232}, + [3051] = {.lex_state = 232}, + [3052] = {.lex_state = 232}, + [3053] = {.lex_state = 244}, + [3054] = {.lex_state = 232}, + [3055] = {.lex_state = 232}, + [3056] = {.lex_state = 232}, + [3057] = {.lex_state = 232}, + [3058] = {.lex_state = 232}, + [3059] = {.lex_state = 232}, + [3060] = {.lex_state = 232}, + [3061] = {.lex_state = 232}, + [3062] = {.lex_state = 232}, + [3063] = {.lex_state = 232}, + [3064] = {.lex_state = 232}, + [3065] = {.lex_state = 232}, + [3066] = {.lex_state = 232}, + [3067] = {.lex_state = 232}, + [3068] = {.lex_state = 232}, + [3069] = {.lex_state = 232}, + [3070] = {.lex_state = 232}, + [3071] = {.lex_state = 232}, + [3072] = {.lex_state = 232}, + [3073] = {.lex_state = 232}, + [3074] = {.lex_state = 232}, + [3075] = {.lex_state = 232}, + [3076] = {.lex_state = 232}, + [3077] = {.lex_state = 232}, + [3078] = {.lex_state = 232}, + [3079] = {.lex_state = 232}, + [3080] = {.lex_state = 232}, + [3081] = {.lex_state = 232}, + [3082] = {.lex_state = 232}, + [3083] = {.lex_state = 232}, + [3084] = {.lex_state = 232}, + [3085] = {.lex_state = 232}, + [3086] = {.lex_state = 232}, + [3087] = {.lex_state = 232}, + [3088] = {.lex_state = 232}, + [3089] = {.lex_state = 232}, + [3090] = {.lex_state = 232}, + [3091] = {.lex_state = 232}, + [3092] = {.lex_state = 232}, + [3093] = {.lex_state = 190}, + [3094] = {.lex_state = 190}, + [3095] = {.lex_state = 207}, + [3096] = {.lex_state = 207}, + [3097] = {.lex_state = 202}, + [3098] = {.lex_state = 244}, + [3099] = {.lex_state = 212}, + [3100] = {.lex_state = 212}, + [3101] = {.lex_state = 232}, + [3102] = {.lex_state = 212}, + [3103] = {.lex_state = 212}, + [3104] = {.lex_state = 212}, + [3105] = {.lex_state = 212}, + [3106] = {.lex_state = 212}, + [3107] = {.lex_state = 212}, + [3108] = {.lex_state = 212}, + [3109] = {.lex_state = 212}, + [3110] = {.lex_state = 212}, + [3111] = {.lex_state = 212}, + [3112] = {.lex_state = 212}, + [3113] = {.lex_state = 219}, + [3114] = {.lex_state = 212}, + [3115] = {.lex_state = 212}, + [3116] = {.lex_state = 212}, + [3117] = {.lex_state = 212}, + [3118] = {.lex_state = 199}, + [3119] = {.lex_state = 212}, + [3120] = {.lex_state = 212}, + [3121] = {.lex_state = 212}, + [3122] = {.lex_state = 212}, + [3123] = {.lex_state = 207}, + [3124] = {.lex_state = 207}, + [3125] = {.lex_state = 212}, + [3126] = {.lex_state = 212}, + [3127] = {.lex_state = 220}, + [3128] = {.lex_state = 200}, + [3129] = {.lex_state = 212}, + [3130] = {.lex_state = 213}, + [3131] = {.lex_state = 219}, + [3132] = {.lex_state = 186}, + [3133] = {.lex_state = 212}, + [3134] = {.lex_state = 212}, + [3135] = {.lex_state = 213}, + [3136] = {.lex_state = 219}, + [3137] = {.lex_state = 212}, + [3138] = {.lex_state = 219}, + [3139] = {.lex_state = 219}, + [3140] = {.lex_state = 219}, + [3141] = {.lex_state = 212}, + [3142] = {.lex_state = 213}, + [3143] = {.lex_state = 212}, + [3144] = {.lex_state = 212}, + [3145] = {.lex_state = 212}, + [3146] = {.lex_state = 212}, + [3147] = {.lex_state = 212}, + [3148] = {.lex_state = 212}, + [3149] = {.lex_state = 212}, + [3150] = {.lex_state = 212}, + [3151] = {.lex_state = 212}, + [3152] = {.lex_state = 212}, + [3153] = {.lex_state = 230}, + [3154] = {.lex_state = 213}, + [3155] = {.lex_state = 212}, + [3156] = {.lex_state = 212}, + [3157] = {.lex_state = 200}, + [3158] = {.lex_state = 200}, + [3159] = {.lex_state = 200}, + [3160] = {.lex_state = 200}, + [3161] = {.lex_state = 200}, + [3162] = {.lex_state = 200}, + [3163] = {.lex_state = 200}, + [3164] = {.lex_state = 200}, + [3165] = {.lex_state = 200}, + [3166] = {.lex_state = 200}, + [3167] = {.lex_state = 200}, + [3168] = {.lex_state = 200}, + [3169] = {.lex_state = 200}, + [3170] = {.lex_state = 212}, + [3171] = {.lex_state = 186}, + [3172] = {.lex_state = 212}, + [3173] = {.lex_state = 213}, + [3174] = {.lex_state = 200}, + [3175] = {.lex_state = 186}, + [3176] = {.lex_state = 186}, + [3177] = {.lex_state = 212}, + [3178] = {.lex_state = 212}, + [3179] = {.lex_state = 230}, + [3180] = {.lex_state = 200}, + [3181] = {.lex_state = 200}, + [3182] = {.lex_state = 200}, + [3183] = {.lex_state = 230}, + [3184] = {.lex_state = 213}, + [3185] = {.lex_state = 212}, + [3186] = {.lex_state = 212}, + [3187] = {.lex_state = 219}, + [3188] = {.lex_state = 219}, + [3189] = {.lex_state = 219}, + [3190] = {.lex_state = 213}, + [3191] = {.lex_state = 219}, + [3192] = {.lex_state = 245}, + [3193] = {.lex_state = 212}, + [3194] = {.lex_state = 212}, + [3195] = {.lex_state = 212}, + [3196] = {.lex_state = 245}, + [3197] = {.lex_state = 212}, + [3198] = {.lex_state = 219}, + [3199] = {.lex_state = 207}, + [3200] = {.lex_state = 207}, + [3201] = {.lex_state = 212}, + [3202] = {.lex_state = 219}, + [3203] = {.lex_state = 219}, + [3204] = {.lex_state = 219}, + [3205] = {.lex_state = 204}, + [3206] = {.lex_state = 212}, + [3207] = {.lex_state = 219}, + [3208] = {.lex_state = 212}, + [3209] = {.lex_state = 219}, + [3210] = {.lex_state = 204}, + [3211] = {.lex_state = 219}, + [3212] = {.lex_state = 219}, + [3213] = {.lex_state = 219}, + [3214] = {.lex_state = 207}, + [3215] = {.lex_state = 219}, + [3216] = {.lex_state = 200}, + [3217] = {.lex_state = 200}, + [3218] = {.lex_state = 200}, + [3219] = {.lex_state = 200}, + [3220] = {.lex_state = 200}, + [3221] = {.lex_state = 200}, + [3222] = {.lex_state = 200}, + [3223] = {.lex_state = 200}, + [3224] = {.lex_state = 212}, + [3225] = {.lex_state = 200}, + [3226] = {.lex_state = 245}, + [3227] = {.lex_state = 200}, + [3228] = {.lex_state = 200}, + [3229] = {.lex_state = 200}, + [3230] = {.lex_state = 200}, + [3231] = {.lex_state = 219}, + [3232] = {.lex_state = 231}, + [3233] = {.lex_state = 241}, + [3234] = {.lex_state = 219}, + [3235] = {.lex_state = 245}, + [3236] = {.lex_state = 207}, + [3237] = {.lex_state = 212}, + [3238] = {.lex_state = 207}, + [3239] = {.lex_state = 245}, + [3240] = {.lex_state = 207}, + [3241] = {.lex_state = 207}, + [3242] = {.lex_state = 199}, + [3243] = {.lex_state = 197}, + [3244] = {.lex_state = 219}, + [3245] = {.lex_state = 200}, + [3246] = {.lex_state = 197}, + [3247] = {.lex_state = 204}, + [3248] = {.lex_state = 207}, + [3249] = {.lex_state = 200}, + [3250] = {.lex_state = 219}, + [3251] = {.lex_state = 200}, + [3252] = {.lex_state = 197}, + [3253] = {.lex_state = 212}, + [3254] = {.lex_state = 207}, + [3255] = {.lex_state = 207}, + [3256] = {.lex_state = 207}, + [3257] = {.lex_state = 207}, + [3258] = {.lex_state = 200}, + [3259] = {.lex_state = 200}, + [3260] = {.lex_state = 207}, + [3261] = {.lex_state = 207}, + [3262] = {.lex_state = 207}, + [3263] = {.lex_state = 207}, + [3264] = {.lex_state = 197}, + [3265] = {.lex_state = 207}, + [3266] = {.lex_state = 207}, + [3267] = {.lex_state = 207}, + [3268] = {.lex_state = 219}, + [3269] = {.lex_state = 207}, + [3270] = {.lex_state = 207}, + [3271] = {.lex_state = 207}, + [3272] = {.lex_state = 207}, + [3273] = {.lex_state = 207}, + [3274] = {.lex_state = 207}, + [3275] = {.lex_state = 207}, + [3276] = {.lex_state = 212}, + [3277] = {.lex_state = 241}, + [3278] = {.lex_state = 197}, + [3279] = {.lex_state = 212}, + [3280] = {.lex_state = 212}, + [3281] = {.lex_state = 212}, + [3282] = {.lex_state = 207}, + [3283] = {.lex_state = 207}, + [3284] = {.lex_state = 212}, + [3285] = {.lex_state = 197}, + [3286] = {.lex_state = 212}, + [3287] = {.lex_state = 207}, + [3288] = {.lex_state = 207}, + [3289] = {.lex_state = 212}, + [3290] = {.lex_state = 212}, + [3291] = {.lex_state = 207}, + [3292] = {.lex_state = 207}, + [3293] = {.lex_state = 207}, + [3294] = {.lex_state = 207}, + [3295] = {.lex_state = 212}, + [3296] = {.lex_state = 204}, + [3297] = {.lex_state = 200}, + [3298] = {.lex_state = 245}, + [3299] = {.lex_state = 173}, + [3300] = {.lex_state = 212}, + [3301] = {.lex_state = 200}, + [3302] = {.lex_state = 200}, + [3303] = {.lex_state = 212}, + [3304] = {.lex_state = 219}, + [3305] = {.lex_state = 200}, + [3306] = {.lex_state = 212}, + [3307] = {.lex_state = 207}, + [3308] = {.lex_state = 219}, + [3309] = {.lex_state = 212}, + [3310] = {.lex_state = 212}, + [3311] = {.lex_state = 228}, + [3312] = {.lex_state = 212}, + [3313] = {.lex_state = 212}, + [3314] = {.lex_state = 173}, + [3315] = {.lex_state = 200}, + [3316] = {.lex_state = 212}, + [3317] = {.lex_state = 212}, + [3318] = {.lex_state = 223}, + [3319] = {.lex_state = 223}, + [3320] = {.lex_state = 228}, + [3321] = {.lex_state = 212}, + [3322] = {.lex_state = 200}, + [3323] = {.lex_state = 200}, + [3324] = {.lex_state = 212}, + [3325] = {.lex_state = 212}, + [3326] = {.lex_state = 200}, + [3327] = {.lex_state = 212}, + [3328] = {.lex_state = 200}, + [3329] = {.lex_state = 200}, + [3330] = {.lex_state = 212}, + [3331] = {.lex_state = 212}, + [3332] = {.lex_state = 228}, + [3333] = {.lex_state = 212}, + [3334] = {.lex_state = 200}, + [3335] = {.lex_state = 223}, + [3336] = {.lex_state = 228}, + [3337] = {.lex_state = 212}, + [3338] = {.lex_state = 212}, + [3339] = {.lex_state = 173}, + [3340] = {.lex_state = 212}, + [3341] = {.lex_state = 212}, + [3342] = {.lex_state = 212}, + [3343] = {.lex_state = 212}, + [3344] = {.lex_state = 212}, + [3345] = {.lex_state = 223}, + [3346] = {.lex_state = 173}, + [3347] = {.lex_state = 241}, + [3348] = {.lex_state = 200}, + [3349] = {.lex_state = 223}, + [3350] = {.lex_state = 212}, + [3351] = {.lex_state = 212}, + [3352] = {.lex_state = 212}, + [3353] = {.lex_state = 212}, + [3354] = {.lex_state = 241}, + [3355] = {.lex_state = 212}, + [3356] = {.lex_state = 173}, + [3357] = {.lex_state = 212}, + [3358] = {.lex_state = 212}, + [3359] = {.lex_state = 212}, + [3360] = {.lex_state = 212}, + [3361] = {.lex_state = 241}, + [3362] = {.lex_state = 212}, + [3363] = {.lex_state = 212}, + [3364] = {.lex_state = 212}, + [3365] = {.lex_state = 212}, + [3366] = {.lex_state = 212}, + [3367] = {.lex_state = 212}, + [3368] = {.lex_state = 197}, + [3369] = {.lex_state = 212}, + [3370] = {.lex_state = 212}, + [3371] = {.lex_state = 241}, + [3372] = {.lex_state = 212}, + [3373] = {.lex_state = 212}, + [3374] = {.lex_state = 212}, + [3375] = {.lex_state = 212}, + [3376] = {.lex_state = 241}, + [3377] = {.lex_state = 200}, + [3378] = {.lex_state = 241}, + [3379] = {.lex_state = 186}, + [3380] = {.lex_state = 212}, + [3381] = {.lex_state = 212}, + [3382] = {.lex_state = 212}, + [3383] = {.lex_state = 212}, + [3384] = {.lex_state = 212}, + [3385] = {.lex_state = 212}, + [3386] = {.lex_state = 212}, + [3387] = {.lex_state = 212}, + [3388] = {.lex_state = 197}, + [3389] = {.lex_state = 212}, + [3390] = {.lex_state = 212}, + [3391] = {.lex_state = 200}, + [3392] = {.lex_state = 212}, + [3393] = {.lex_state = 200}, + [3394] = {.lex_state = 212}, + [3395] = {.lex_state = 212}, + [3396] = {.lex_state = 200}, + [3397] = {.lex_state = 212}, + [3398] = {.lex_state = 200}, + [3399] = {.lex_state = 212}, + [3400] = {.lex_state = 200}, + [3401] = {.lex_state = 200}, + [3402] = {.lex_state = 212}, + [3403] = {.lex_state = 212}, + [3404] = {.lex_state = 197}, + [3405] = {.lex_state = 212}, + [3406] = {.lex_state = 212}, + [3407] = {.lex_state = 212}, + [3408] = {.lex_state = 212}, + [3409] = {.lex_state = 212}, + [3410] = {.lex_state = 212}, + [3411] = {.lex_state = 212}, + [3412] = {.lex_state = 219}, + [3413] = {.lex_state = 173}, + [3414] = {.lex_state = 241}, + [3415] = {.lex_state = 219}, + [3416] = {.lex_state = 212}, + [3417] = {.lex_state = 212}, + [3418] = {.lex_state = 212}, + [3419] = {.lex_state = 212}, + [3420] = {.lex_state = 212}, + [3421] = {.lex_state = 212}, + [3422] = {.lex_state = 212}, + [3423] = {.lex_state = 212}, + [3424] = {.lex_state = 219}, + [3425] = {.lex_state = 212}, + [3426] = {.lex_state = 212}, + [3427] = {.lex_state = 199}, + [3428] = {.lex_state = 212}, + [3429] = {.lex_state = 212}, + [3430] = {.lex_state = 219}, + [3431] = {.lex_state = 197}, + [3432] = {.lex_state = 219}, + [3433] = {.lex_state = 219}, + [3434] = {.lex_state = 219}, + [3435] = {.lex_state = 197}, + [3436] = {.lex_state = 212}, + [3437] = {.lex_state = 219}, + [3438] = {.lex_state = 219}, + [3439] = {.lex_state = 212}, + [3440] = {.lex_state = 219}, + [3441] = {.lex_state = 219}, + [3442] = {.lex_state = 219}, + [3443] = {.lex_state = 219}, + [3444] = {.lex_state = 219}, + [3445] = {.lex_state = 219}, + [3446] = {.lex_state = 219}, + [3447] = {.lex_state = 219}, + [3448] = {.lex_state = 219}, + [3449] = {.lex_state = 212}, + [3450] = {.lex_state = 212}, + [3451] = {.lex_state = 219}, + [3452] = {.lex_state = 212}, + [3453] = {.lex_state = 212}, + [3454] = {.lex_state = 212}, + [3455] = {.lex_state = 219}, + [3456] = {.lex_state = 219}, + [3457] = {.lex_state = 212}, + [3458] = {.lex_state = 219}, + [3459] = {.lex_state = 219}, + [3460] = {.lex_state = 223}, + [3461] = {.lex_state = 199}, + [3462] = {.lex_state = 219}, + [3463] = {.lex_state = 219}, + [3464] = {.lex_state = 219}, + [3465] = {.lex_state = 219}, + [3466] = {.lex_state = 219}, + [3467] = {.lex_state = 219}, + [3468] = {.lex_state = 219}, + [3469] = {.lex_state = 212}, + [3470] = {.lex_state = 204}, + [3471] = {.lex_state = 200}, + [3472] = {.lex_state = 219}, + [3473] = {.lex_state = 219}, + [3474] = {.lex_state = 212}, + [3475] = {.lex_state = 219}, + [3476] = {.lex_state = 219}, + [3477] = {.lex_state = 212}, + [3478] = {.lex_state = 219}, + [3479] = {.lex_state = 219}, + [3480] = {.lex_state = 219}, + [3481] = {.lex_state = 219}, + [3482] = {.lex_state = 219}, + [3483] = {.lex_state = 219}, + [3484] = {.lex_state = 219}, + [3485] = {.lex_state = 219}, + [3486] = {.lex_state = 219}, + [3487] = {.lex_state = 219}, + [3488] = {.lex_state = 219}, + [3489] = {.lex_state = 219}, + [3490] = {.lex_state = 219}, + [3491] = {.lex_state = 209}, + [3492] = {.lex_state = 186}, + [3493] = {.lex_state = 212}, + [3494] = {.lex_state = 221}, + [3495] = {.lex_state = 212}, + [3496] = {.lex_state = 212}, + [3497] = {.lex_state = 219}, + [3498] = {.lex_state = 219}, + [3499] = {.lex_state = 212}, + [3500] = {.lex_state = 212}, + [3501] = {.lex_state = 204}, + [3502] = {.lex_state = 223}, + [3503] = {.lex_state = 186}, + [3504] = {.lex_state = 207}, + [3505] = {.lex_state = 241}, + [3506] = {.lex_state = 215}, + [3507] = {.lex_state = 219}, + [3508] = {.lex_state = 212}, + [3509] = {.lex_state = 219}, + [3510] = {.lex_state = 186}, + [3511] = {.lex_state = 219}, + [3512] = {.lex_state = 212}, + [3513] = {.lex_state = 212}, + [3514] = {.lex_state = 212}, + [3515] = {.lex_state = 219}, + [3516] = {.lex_state = 212}, + [3517] = {.lex_state = 186}, + [3518] = {.lex_state = 212}, + [3519] = {.lex_state = 219}, + [3520] = {.lex_state = 219}, + [3521] = {.lex_state = 212}, + [3522] = {.lex_state = 219}, + [3523] = {.lex_state = 219}, + [3524] = {.lex_state = 203}, + [3525] = {.lex_state = 228}, + [3526] = {.lex_state = 209}, + [3527] = {.lex_state = 197}, + [3528] = {.lex_state = 197}, + [3529] = {.lex_state = 219}, + [3530] = {.lex_state = 197}, + [3531] = {.lex_state = 219}, + [3532] = {.lex_state = 212}, + [3533] = {.lex_state = 197}, + [3534] = {.lex_state = 197}, + [3535] = {.lex_state = 197}, + [3536] = {.lex_state = 212}, + [3537] = {.lex_state = 200}, + [3538] = {.lex_state = 219}, + [3539] = {.lex_state = 212}, + [3540] = {.lex_state = 197}, + [3541] = {.lex_state = 197}, + [3542] = {.lex_state = 212}, + [3543] = {.lex_state = 197}, + [3544] = {.lex_state = 219}, + [3545] = {.lex_state = 212}, + [3546] = {.lex_state = 209}, + [3547] = {.lex_state = 209}, + [3548] = {.lex_state = 212}, + [3549] = {.lex_state = 199}, + [3550] = {.lex_state = 197}, + [3551] = {.lex_state = 212}, + [3552] = {.lex_state = 197}, + [3553] = {.lex_state = 219}, + [3554] = {.lex_state = 209}, + [3555] = {.lex_state = 219}, + [3556] = {.lex_state = 197}, + [3557] = {.lex_state = 197}, + [3558] = {.lex_state = 197}, + [3559] = {.lex_state = 199}, + [3560] = {.lex_state = 241}, + [3561] = {.lex_state = 219}, + [3562] = {.lex_state = 219}, + [3563] = {.lex_state = 197}, + [3564] = {.lex_state = 219}, + [3565] = {.lex_state = 219}, + [3566] = {.lex_state = 200}, + [3567] = {.lex_state = 212}, + [3568] = {.lex_state = 209}, + [3569] = {.lex_state = 219}, + [3570] = {.lex_state = 219}, + [3571] = {.lex_state = 197}, + [3572] = {.lex_state = 219}, + [3573] = {.lex_state = 219}, + [3574] = {.lex_state = 199}, + [3575] = {.lex_state = 212}, + [3576] = {.lex_state = 216}, + [3577] = {.lex_state = 218}, + [3578] = {.lex_state = 197}, + [3579] = {.lex_state = 241}, + [3580] = {.lex_state = 219}, + [3581] = {.lex_state = 219}, + [3582] = {.lex_state = 241}, + [3583] = {.lex_state = 246}, + [3584] = {.lex_state = 197}, + [3585] = {.lex_state = 219}, + [3586] = {.lex_state = 197}, + [3587] = {.lex_state = 197}, + [3588] = {.lex_state = 212}, + [3589] = {.lex_state = 197}, + [3590] = {.lex_state = 219}, + [3591] = {.lex_state = 197}, + [3592] = {.lex_state = 212}, + [3593] = {.lex_state = 199}, + [3594] = {.lex_state = 212}, + [3595] = {.lex_state = 219}, + [3596] = {.lex_state = 209}, + [3597] = {.lex_state = 209}, + [3598] = {.lex_state = 219}, + [3599] = {.lex_state = 197}, + [3600] = {.lex_state = 212}, + [3601] = {.lex_state = 219}, + [3602] = {.lex_state = 212}, + [3603] = {.lex_state = 209}, + [3604] = {.lex_state = 219}, + [3605] = {.lex_state = 219}, + [3606] = {.lex_state = 199}, + [3607] = {.lex_state = 197}, + [3608] = {.lex_state = 219}, + [3609] = {.lex_state = 212}, + [3610] = {.lex_state = 219}, + [3611] = {.lex_state = 200}, + [3612] = {.lex_state = 212}, + [3613] = {.lex_state = 200}, + [3614] = {.lex_state = 209}, + [3615] = {.lex_state = 197}, + [3616] = {.lex_state = 209}, + [3617] = {.lex_state = 199}, + [3618] = {.lex_state = 216}, + [3619] = {.lex_state = 209}, + [3620] = {.lex_state = 203}, + [3621] = {.lex_state = 203}, + [3622] = {.lex_state = 219}, + [3623] = {.lex_state = 203}, + [3624] = {.lex_state = 203}, + [3625] = {.lex_state = 203}, + [3626] = {.lex_state = 203}, + [3627] = {.lex_state = 203}, + [3628] = {.lex_state = 203}, + [3629] = {.lex_state = 203}, + [3630] = {.lex_state = 203}, + [3631] = {.lex_state = 203}, + [3632] = {.lex_state = 203}, + [3633] = {.lex_state = 203}, + [3634] = {.lex_state = 203}, + [3635] = {.lex_state = 203}, + [3636] = {.lex_state = 203}, + [3637] = {.lex_state = 203}, + [3638] = {.lex_state = 203}, + [3639] = {.lex_state = 203}, + [3640] = {.lex_state = 203}, + [3641] = {.lex_state = 203}, + [3642] = {.lex_state = 203}, + [3643] = {.lex_state = 197}, + [3644] = {.lex_state = 203}, + [3645] = {.lex_state = 209}, + [3646] = {.lex_state = 241}, + [3647] = {.lex_state = 207}, + [3648] = {.lex_state = 209}, + [3649] = {.lex_state = 209}, + [3650] = {.lex_state = 197}, + [3651] = {.lex_state = 203}, + [3652] = {.lex_state = 228}, + [3653] = {.lex_state = 197}, + [3654] = {.lex_state = 197}, + [3655] = {.lex_state = 219}, + [3656] = {.lex_state = 209}, + [3657] = {.lex_state = 209}, + [3658] = {.lex_state = 209}, + [3659] = {.lex_state = 219}, + [3660] = {.lex_state = 219}, + [3661] = {.lex_state = 212}, + [3662] = {.lex_state = 207}, + [3663] = {.lex_state = 212}, + [3664] = {.lex_state = 212}, + [3665] = {.lex_state = 212}, + [3666] = {.lex_state = 212}, + [3667] = {.lex_state = 212}, + [3668] = {.lex_state = 245}, + [3669] = {.lex_state = 223}, + [3670] = {.lex_state = 186}, + [3671] = {.lex_state = 212}, + [3672] = {.lex_state = 245}, + [3673] = {.lex_state = 212}, + [3674] = {.lex_state = 212}, + [3675] = {.lex_state = 224}, + [3676] = {.lex_state = 212}, + [3677] = {.lex_state = 212}, + [3678] = {.lex_state = 212}, + [3679] = {.lex_state = 226}, + [3680] = {.lex_state = 223}, + [3681] = {.lex_state = 212}, + [3682] = {.lex_state = 212}, + [3683] = {.lex_state = 212}, + [3684] = {.lex_state = 212}, + [3685] = {.lex_state = 212}, + [3686] = {.lex_state = 223}, + [3687] = {.lex_state = 223}, + [3688] = {.lex_state = 223}, + [3689] = {.lex_state = 223}, + [3690] = {.lex_state = 200}, + [3691] = {.lex_state = 245}, + [3692] = {.lex_state = 245}, + [3693] = {.lex_state = 212}, + [3694] = {.lex_state = 241}, + [3695] = {.lex_state = 241}, + [3696] = {.lex_state = 219}, + [3697] = {.lex_state = 212}, + [3698] = {.lex_state = 212}, + [3699] = {.lex_state = 212}, + [3700] = {.lex_state = 212}, + [3701] = {.lex_state = 212}, + [3702] = {.lex_state = 223}, + [3703] = {.lex_state = 212}, + [3704] = {.lex_state = 200}, + [3705] = {.lex_state = 212}, + [3706] = {.lex_state = 212}, + [3707] = {.lex_state = 212}, + [3708] = {.lex_state = 219}, + [3709] = {.lex_state = 245}, + [3710] = {.lex_state = 245}, + [3711] = {.lex_state = 212}, + [3712] = {.lex_state = 219}, + [3713] = {.lex_state = 212}, + [3714] = {.lex_state = 212}, + [3715] = {.lex_state = 212}, + [3716] = {.lex_state = 212}, + [3717] = {.lex_state = 212}, + [3718] = {.lex_state = 186}, + [3719] = {.lex_state = 223}, + [3720] = {.lex_state = 186}, + [3721] = {.lex_state = 212}, + [3722] = {.lex_state = 212}, + [3723] = {.lex_state = 212}, + [3724] = {.lex_state = 212}, + [3725] = {.lex_state = 212}, + [3726] = {.lex_state = 212}, + [3727] = {.lex_state = 223}, + [3728] = {.lex_state = 223}, + [3729] = {.lex_state = 212}, + [3730] = {.lex_state = 200}, + [3731] = {.lex_state = 212}, + [3732] = {.lex_state = 200}, + [3733] = {.lex_state = 212}, + [3734] = {.lex_state = 212}, + [3735] = {.lex_state = 219}, + [3736] = {.lex_state = 212}, + [3737] = {.lex_state = 223}, + [3738] = {.lex_state = 223}, + [3739] = {.lex_state = 223}, + [3740] = {.lex_state = 223}, + [3741] = {.lex_state = 223}, + [3742] = {.lex_state = 186}, + [3743] = {.lex_state = 223}, + [3744] = {.lex_state = 212}, + [3745] = {.lex_state = 212}, + [3746] = {.lex_state = 212}, + [3747] = {.lex_state = 212}, + [3748] = {.lex_state = 212}, + [3749] = {.lex_state = 212}, + [3750] = {.lex_state = 212}, + [3751] = {.lex_state = 212}, + [3752] = {.lex_state = 212}, + [3753] = {.lex_state = 212}, + [3754] = {.lex_state = 212}, + [3755] = {.lex_state = 212}, + [3756] = {.lex_state = 212}, + [3757] = {.lex_state = 212}, + [3758] = {.lex_state = 212}, + [3759] = {.lex_state = 196}, + [3760] = {.lex_state = 212}, + [3761] = {.lex_state = 212}, + [3762] = {.lex_state = 212}, + [3763] = {.lex_state = 212}, + [3764] = {.lex_state = 212}, + [3765] = {.lex_state = 212}, + [3766] = {.lex_state = 212}, + [3767] = {.lex_state = 212}, + [3768] = {.lex_state = 212}, + [3769] = {.lex_state = 212}, + [3770] = {.lex_state = 212}, + [3771] = {.lex_state = 212}, + [3772] = {.lex_state = 212}, + [3773] = {.lex_state = 212}, + [3774] = {.lex_state = 212}, + [3775] = {.lex_state = 186}, + [3776] = {.lex_state = 212}, + [3777] = {.lex_state = 212}, + [3778] = {.lex_state = 212}, + [3779] = {.lex_state = 212}, + [3780] = {.lex_state = 212}, + [3781] = {.lex_state = 212}, + [3782] = {.lex_state = 212}, + [3783] = {.lex_state = 212}, + [3784] = {.lex_state = 212}, + [3785] = {.lex_state = 212}, + [3786] = {.lex_state = 212}, + [3787] = {.lex_state = 212}, + [3788] = {.lex_state = 212}, + [3789] = {.lex_state = 212}, + [3790] = {.lex_state = 212}, + [3791] = {.lex_state = 196}, + [3792] = {.lex_state = 212}, + [3793] = {.lex_state = 212}, + [3794] = {.lex_state = 212}, + [3795] = {.lex_state = 207}, + [3796] = {.lex_state = 207}, + [3797] = {.lex_state = 228}, + [3798] = {.lex_state = 245}, + [3799] = {.lex_state = 228}, + [3800] = {.lex_state = 212}, + [3801] = {.lex_state = 212}, + [3802] = {.lex_state = 212}, + [3803] = {.lex_state = 212}, + [3804] = {.lex_state = 212}, + [3805] = {.lex_state = 212}, + [3806] = {.lex_state = 212}, + [3807] = {.lex_state = 212}, + [3808] = {.lex_state = 212}, + [3809] = {.lex_state = 212}, + [3810] = {.lex_state = 212}, + [3811] = {.lex_state = 212}, + [3812] = {.lex_state = 212}, + [3813] = {.lex_state = 212}, + [3814] = {.lex_state = 212}, + [3815] = {.lex_state = 212}, + [3816] = {.lex_state = 212}, + [3817] = {.lex_state = 212}, + [3818] = {.lex_state = 212}, + [3819] = {.lex_state = 212}, + [3820] = {.lex_state = 212}, + [3821] = {.lex_state = 212}, + [3822] = {.lex_state = 212}, + [3823] = {.lex_state = 212}, + [3824] = {.lex_state = 212}, + [3825] = {.lex_state = 212}, + [3826] = {.lex_state = 212}, + [3827] = {.lex_state = 212}, + [3828] = {.lex_state = 212}, + [3829] = {.lex_state = 212}, + [3830] = {.lex_state = 196}, + [3831] = {.lex_state = 212}, + [3832] = {.lex_state = 212}, + [3833] = {.lex_state = 212}, + [3834] = {.lex_state = 245}, + [3835] = {.lex_state = 207}, + [3836] = {.lex_state = 212}, + [3837] = {.lex_state = 212}, + [3838] = {.lex_state = 212}, + [3839] = {.lex_state = 212}, + [3840] = {.lex_state = 207}, + [3841] = {.lex_state = 207}, + [3842] = {.lex_state = 207}, + [3843] = {.lex_state = 207}, + [3844] = {.lex_state = 207}, + [3845] = {.lex_state = 212}, + [3846] = {.lex_state = 207}, + [3847] = {.lex_state = 207}, + [3848] = {.lex_state = 207}, + [3849] = {.lex_state = 212}, + [3850] = {.lex_state = 212}, + [3851] = {.lex_state = 212}, + [3852] = {.lex_state = 212}, + [3853] = {.lex_state = 212}, + [3854] = {.lex_state = 212}, + [3855] = {.lex_state = 207}, + [3856] = {.lex_state = 212}, + [3857] = {.lex_state = 212}, + [3858] = {.lex_state = 207}, + [3859] = {.lex_state = 207}, + [3860] = {.lex_state = 207}, + [3861] = {.lex_state = 207}, + [3862] = {.lex_state = 212}, + [3863] = {.lex_state = 212}, + [3864] = {.lex_state = 212}, + [3865] = {.lex_state = 212}, + [3866] = {.lex_state = 223}, + [3867] = {.lex_state = 224}, + [3868] = {.lex_state = 212}, + [3869] = {.lex_state = 242}, + [3870] = {.lex_state = 219}, + [3871] = {.lex_state = 219}, + [3872] = {.lex_state = 219}, + [3873] = {.lex_state = 219}, + [3874] = {.lex_state = 219}, + [3875] = {.lex_state = 219}, + [3876] = {.lex_state = 219}, + [3877] = {.lex_state = 219}, + [3878] = {.lex_state = 219}, + [3879] = {.lex_state = 219}, + [3880] = {.lex_state = 219}, + [3881] = {.lex_state = 219}, + [3882] = {.lex_state = 219}, + [3883] = {.lex_state = 219}, + [3884] = {.lex_state = 219}, + [3885] = {.lex_state = 219}, + [3886] = {.lex_state = 219}, + [3887] = {.lex_state = 219}, + [3888] = {.lex_state = 209}, + [3889] = {.lex_state = 207}, + [3890] = {.lex_state = 207}, + [3891] = {.lex_state = 207}, + [3892] = {.lex_state = 219}, + [3893] = {.lex_state = 207}, + [3894] = {.lex_state = 207}, + [3895] = {.lex_state = 207}, + [3896] = {.lex_state = 219}, + [3897] = {.lex_state = 207}, + [3898] = {.lex_state = 186}, + [3899] = {.lex_state = 186}, + [3900] = {.lex_state = 219}, + [3901] = {.lex_state = 219}, + [3902] = {.lex_state = 219}, + [3903] = {.lex_state = 207}, + [3904] = {.lex_state = 207}, + [3905] = {.lex_state = 219}, + [3906] = {.lex_state = 186}, + [3907] = {.lex_state = 209}, + [3908] = {.lex_state = 186}, + [3909] = {.lex_state = 207}, + [3910] = {.lex_state = 219}, + [3911] = {.lex_state = 219}, + [3912] = {.lex_state = 219}, + [3913] = {.lex_state = 209}, + [3914] = {.lex_state = 219}, + [3915] = {.lex_state = 212}, + [3916] = {.lex_state = 219}, + [3917] = {.lex_state = 219}, + [3918] = {.lex_state = 219}, + [3919] = {.lex_state = 212}, + [3920] = {.lex_state = 212}, + [3921] = {.lex_state = 219}, + [3922] = {.lex_state = 219}, + [3923] = {.lex_state = 219}, + [3924] = {.lex_state = 200}, + [3925] = {.lex_state = 219}, + [3926] = {.lex_state = 212}, + [3927] = {.lex_state = 212}, + [3928] = {.lex_state = 200}, + [3929] = {.lex_state = 212}, + [3930] = {.lex_state = 212}, + [3931] = {.lex_state = 219}, + [3932] = {.lex_state = 219}, + [3933] = {.lex_state = 219}, + [3934] = {.lex_state = 219}, + [3935] = {.lex_state = 219}, + [3936] = {.lex_state = 219}, + [3937] = {.lex_state = 219}, + [3938] = {.lex_state = 212}, + [3939] = {.lex_state = 219}, + [3940] = {.lex_state = 219}, + [3941] = {.lex_state = 219}, + [3942] = {.lex_state = 219}, + [3943] = {.lex_state = 199}, + [3944] = {.lex_state = 219}, + [3945] = {.lex_state = 219}, + [3946] = {.lex_state = 219}, + [3947] = {.lex_state = 219}, + [3948] = {.lex_state = 219}, + [3949] = {.lex_state = 212}, + [3950] = {.lex_state = 219}, + [3951] = {.lex_state = 203}, + [3952] = {.lex_state = 219}, + [3953] = {.lex_state = 219}, + [3954] = {.lex_state = 219}, + [3955] = {.lex_state = 212}, + [3956] = {.lex_state = 212}, + [3957] = {.lex_state = 212}, + [3958] = {.lex_state = 212}, + [3959] = {.lex_state = 212}, + [3960] = {.lex_state = 212}, + [3961] = {.lex_state = 212}, + [3962] = {.lex_state = 212}, + [3963] = {.lex_state = 212}, + [3964] = {.lex_state = 212}, + [3965] = {.lex_state = 212}, + [3966] = {.lex_state = 219}, + [3967] = {.lex_state = 212}, + [3968] = {.lex_state = 200}, + [3969] = {.lex_state = 219}, + [3970] = {.lex_state = 219}, + [3971] = {.lex_state = 219}, + [3972] = {.lex_state = 219}, + [3973] = {.lex_state = 219}, + [3974] = {.lex_state = 219}, + [3975] = {.lex_state = 219}, + [3976] = {.lex_state = 219}, + [3977] = {.lex_state = 219}, + [3978] = {.lex_state = 219}, + [3979] = {.lex_state = 219}, + [3980] = {.lex_state = 219}, + [3981] = {.lex_state = 207}, + [3982] = {.lex_state = 219}, + [3983] = {.lex_state = 219}, + [3984] = {.lex_state = 212}, + [3985] = {.lex_state = 219}, + [3986] = {.lex_state = 219}, + [3987] = {.lex_state = 219}, + [3988] = {.lex_state = 212}, + [3989] = {.lex_state = 212}, + [3990] = {.lex_state = 209}, + [3991] = {.lex_state = 219}, + [3992] = {.lex_state = 219}, + [3993] = {.lex_state = 219}, + [3994] = {.lex_state = 219}, + [3995] = {.lex_state = 219}, + [3996] = {.lex_state = 209}, + [3997] = {.lex_state = 209}, + [3998] = {.lex_state = 203}, + [3999] = {.lex_state = 219}, + [4000] = {.lex_state = 203}, + [4001] = {.lex_state = 203}, + [4002] = {.lex_state = 219}, + [4003] = {.lex_state = 203}, + [4004] = {.lex_state = 212}, + [4005] = {.lex_state = 203}, + [4006] = {.lex_state = 212}, + [4007] = {.lex_state = 203}, + [4008] = {.lex_state = 219}, + [4009] = {.lex_state = 200}, + [4010] = {.lex_state = 200}, + [4011] = {.lex_state = 203}, + [4012] = {.lex_state = 219}, + [4013] = {.lex_state = 200}, + [4014] = {.lex_state = 219}, + [4015] = {.lex_state = 219}, + [4016] = {.lex_state = 219}, + [4017] = {.lex_state = 209}, + [4018] = {.lex_state = 219}, + [4019] = {.lex_state = 219}, + [4020] = {.lex_state = 207}, + [4021] = {.lex_state = 196}, + [4022] = {.lex_state = 242}, + [4023] = {.lex_state = 242}, + [4024] = {.lex_state = 242}, + [4025] = {.lex_state = 246}, + [4026] = {.lex_state = 207}, + [4027] = {.lex_state = 242}, + [4028] = {.lex_state = 207}, + [4029] = {.lex_state = 246}, + [4030] = {.lex_state = 242}, + [4031] = {.lex_state = 242}, + [4032] = {.lex_state = 242}, + [4033] = {.lex_state = 242}, + [4034] = {.lex_state = 242}, + [4035] = {.lex_state = 207}, + [4036] = {.lex_state = 246}, + [4037] = {.lex_state = 242}, + [4038] = {.lex_state = 242}, + [4039] = {.lex_state = 242}, + [4040] = {.lex_state = 186}, + [4041] = {.lex_state = 242}, + [4042] = {.lex_state = 207}, + [4043] = {.lex_state = 186}, + [4044] = {.lex_state = 242}, + [4045] = {.lex_state = 242}, + [4046] = {.lex_state = 242}, + [4047] = {.lex_state = 242}, + [4048] = {.lex_state = 242}, + [4049] = {.lex_state = 242}, + [4050] = {.lex_state = 209}, + [4051] = {.lex_state = 242}, + [4052] = {.lex_state = 242}, + [4053] = {.lex_state = 242}, + [4054] = {.lex_state = 242}, + [4055] = {.lex_state = 242}, + [4056] = {.lex_state = 242}, + [4057] = {.lex_state = 242}, + [4058] = {.lex_state = 209}, + [4059] = {.lex_state = 242}, + [4060] = {.lex_state = 207}, + [4061] = {.lex_state = 242}, + [4062] = {.lex_state = 242}, + [4063] = {.lex_state = 207}, + [4064] = {.lex_state = 241}, + [4065] = {.lex_state = 241}, + [4066] = {.lex_state = 242}, + [4067] = {.lex_state = 242}, + [4068] = {.lex_state = 242}, + [4069] = {.lex_state = 242}, + [4070] = {.lex_state = 242}, + [4071] = {.lex_state = 207}, + [4072] = {.lex_state = 200}, + [4073] = {.lex_state = 242}, + [4074] = {.lex_state = 242}, + [4075] = {.lex_state = 186}, + [4076] = {.lex_state = 242}, + [4077] = {.lex_state = 242}, + [4078] = {.lex_state = 242}, + [4079] = {.lex_state = 242}, + [4080] = {.lex_state = 242}, + [4081] = {.lex_state = 209}, + [4082] = {.lex_state = 242}, + [4083] = {.lex_state = 242}, + [4084] = {.lex_state = 242}, + [4085] = {.lex_state = 242}, + [4086] = {.lex_state = 242}, + [4087] = {.lex_state = 207}, + [4088] = {.lex_state = 242}, + [4089] = {.lex_state = 242}, + [4090] = {.lex_state = 242}, + [4091] = {.lex_state = 242}, + [4092] = {.lex_state = 242}, + [4093] = {.lex_state = 216}, + [4094] = {.lex_state = 209}, + [4095] = {.lex_state = 242}, + [4096] = {.lex_state = 242}, + [4097] = {.lex_state = 209}, + [4098] = {.lex_state = 216}, + [4099] = {.lex_state = 186}, + [4100] = {.lex_state = 242}, + [4101] = {.lex_state = 242}, + [4102] = {.lex_state = 242}, + [4103] = {.lex_state = 242}, + [4104] = {.lex_state = 242}, + [4105] = {.lex_state = 212}, + [4106] = {.lex_state = 242}, + [4107] = {.lex_state = 242}, + [4108] = {.lex_state = 209}, + [4109] = {.lex_state = 242}, + [4110] = {.lex_state = 242}, + [4111] = {.lex_state = 242}, + [4112] = {.lex_state = 207}, + [4113] = {.lex_state = 242}, + [4114] = {.lex_state = 242}, + [4115] = {.lex_state = 242}, + [4116] = {.lex_state = 242}, + [4117] = {.lex_state = 242}, + [4118] = {.lex_state = 242}, + [4119] = {.lex_state = 242}, + [4120] = {.lex_state = 242}, + [4121] = {.lex_state = 242}, + [4122] = {.lex_state = 242}, + [4123] = {.lex_state = 209}, + [4124] = {.lex_state = 242}, + [4125] = {.lex_state = 209}, + [4126] = {.lex_state = 209}, + [4127] = {.lex_state = 212}, + [4128] = {.lex_state = 209}, + [4129] = {.lex_state = 212}, + [4130] = {.lex_state = 212}, + [4131] = {.lex_state = 212}, + [4132] = {.lex_state = 196}, + [4133] = {.lex_state = 209}, + [4134] = {.lex_state = 212}, + [4135] = {.lex_state = 212}, + [4136] = {.lex_state = 212}, + [4137] = {.lex_state = 231}, + [4138] = {.lex_state = 209}, + [4139] = {.lex_state = 212}, + [4140] = {.lex_state = 212}, + [4141] = {.lex_state = 242}, + [4142] = {.lex_state = 209}, + [4143] = {.lex_state = 212}, + [4144] = {.lex_state = 212}, + [4145] = {.lex_state = 212}, + [4146] = {.lex_state = 212}, + [4147] = {.lex_state = 209}, + [4148] = {.lex_state = 212}, + [4149] = {.lex_state = 209}, + [4150] = {.lex_state = 242}, + [4151] = {.lex_state = 209}, + [4152] = {.lex_state = 209}, + [4153] = {.lex_state = 207}, + [4154] = {.lex_state = 207}, + [4155] = {.lex_state = 242}, + [4156] = {.lex_state = 209}, + [4157] = {.lex_state = 242}, + [4158] = {.lex_state = 209}, + [4159] = {.lex_state = 242}, + [4160] = {.lex_state = 196}, + [4161] = {.lex_state = 244}, + [4162] = {.lex_state = 244}, + [4163] = {.lex_state = 209}, + [4164] = {.lex_state = 242}, + [4165] = {.lex_state = 242}, + [4166] = {.lex_state = 212}, + [4167] = {.lex_state = 212}, + [4168] = {.lex_state = 212}, + [4169] = {.lex_state = 212}, + [4170] = {.lex_state = 245}, + [4171] = {.lex_state = 209}, + [4172] = {.lex_state = 242}, + [4173] = {.lex_state = 209}, + [4174] = {.lex_state = 207}, + [4175] = {.lex_state = 242}, + [4176] = {.lex_state = 242}, + [4177] = {.lex_state = 209}, + [4178] = {.lex_state = 212}, + [4179] = {.lex_state = 212}, + [4180] = {.lex_state = 212}, + [4181] = {.lex_state = 212}, + [4182] = {.lex_state = 242}, + [4183] = {.lex_state = 209}, + [4184] = {.lex_state = 209}, + [4185] = {.lex_state = 242}, + [4186] = {.lex_state = 207}, + [4187] = {.lex_state = 242}, + [4188] = {.lex_state = 207}, + [4189] = {.lex_state = 212}, + [4190] = {.lex_state = 212}, + [4191] = {.lex_state = 212}, + [4192] = {.lex_state = 212}, + [4193] = {.lex_state = 212}, + [4194] = {.lex_state = 244}, + [4195] = {.lex_state = 209}, + [4196] = {.lex_state = 242}, + [4197] = {.lex_state = 212}, + [4198] = {.lex_state = 212}, + [4199] = {.lex_state = 209}, + [4200] = {.lex_state = 212}, + [4201] = {.lex_state = 212}, + [4202] = {.lex_state = 212}, + [4203] = {.lex_state = 212}, + [4204] = {.lex_state = 242}, + [4205] = {.lex_state = 209}, + [4206] = {.lex_state = 209}, + [4207] = {.lex_state = 209}, + [4208] = {.lex_state = 212}, + [4209] = {.lex_state = 212}, + [4210] = {.lex_state = 209}, + [4211] = {.lex_state = 212}, + [4212] = {.lex_state = 212}, + [4213] = {.lex_state = 242}, + [4214] = {.lex_state = 212}, + [4215] = {.lex_state = 209}, + [4216] = {.lex_state = 212}, + [4217] = {.lex_state = 212}, + [4218] = {.lex_state = 212}, + [4219] = {.lex_state = 242}, + [4220] = {.lex_state = 209}, + [4221] = {.lex_state = 209}, + [4222] = {.lex_state = 207}, + [4223] = {.lex_state = 212}, + [4224] = {.lex_state = 212}, + [4225] = {.lex_state = 212}, + [4226] = {.lex_state = 212}, + [4227] = {.lex_state = 242}, + [4228] = {.lex_state = 212}, + [4229] = {.lex_state = 212}, + [4230] = {.lex_state = 212}, + [4231] = {.lex_state = 212}, + [4232] = {.lex_state = 196}, + [4233] = {.lex_state = 212}, + [4234] = {.lex_state = 212}, + [4235] = {.lex_state = 196}, + [4236] = {.lex_state = 212}, + [4237] = {.lex_state = 212}, + [4238] = {.lex_state = 212}, + [4239] = {.lex_state = 212}, + [4240] = {.lex_state = 212}, + [4241] = {.lex_state = 242}, + [4242] = {.lex_state = 245}, + [4243] = {.lex_state = 209}, + [4244] = {.lex_state = 209}, + [4245] = {.lex_state = 209}, + [4246] = {.lex_state = 209}, + [4247] = {.lex_state = 207}, + [4248] = {.lex_state = 207}, + [4249] = {.lex_state = 207}, + [4250] = {.lex_state = 207}, + [4251] = {.lex_state = 196}, + [4252] = {.lex_state = 207}, + [4253] = {.lex_state = 207}, + [4254] = {.lex_state = 207}, + [4255] = {.lex_state = 207}, + [4256] = {.lex_state = 207}, + [4257] = {.lex_state = 207}, + [4258] = {.lex_state = 228}, + [4259] = {.lex_state = 207}, + [4260] = {.lex_state = 196}, + [4261] = {.lex_state = 228}, + [4262] = {.lex_state = 244}, + [4263] = {.lex_state = 207}, + [4264] = {.lex_state = 207}, + [4265] = {.lex_state = 207}, + [4266] = {.lex_state = 207}, + [4267] = {.lex_state = 207}, + [4268] = {.lex_state = 207}, + [4269] = {.lex_state = 207}, + [4270] = {.lex_state = 207}, + [4271] = {.lex_state = 207}, + [4272] = {.lex_state = 246}, + [4273] = {.lex_state = 207}, + [4274] = {.lex_state = 207}, + [4275] = {.lex_state = 246}, + [4276] = {.lex_state = 244}, + [4277] = {.lex_state = 207}, + [4278] = {.lex_state = 207}, + [4279] = {.lex_state = 207}, + [4280] = {.lex_state = 207}, + [4281] = {.lex_state = 196}, + [4282] = {.lex_state = 207}, + [4283] = {.lex_state = 207}, + [4284] = {.lex_state = 207}, + [4285] = {.lex_state = 207}, + [4286] = {.lex_state = 207}, + [4287] = {.lex_state = 207}, + [4288] = {.lex_state = 207}, + [4289] = {.lex_state = 207}, + [4290] = {.lex_state = 207}, + [4291] = {.lex_state = 207}, + [4292] = {.lex_state = 207}, + [4293] = {.lex_state = 196}, + [4294] = {.lex_state = 207}, + [4295] = {.lex_state = 207}, + [4296] = {.lex_state = 207}, + [4297] = {.lex_state = 207}, + [4298] = {.lex_state = 244}, + [4299] = {.lex_state = 231}, + [4300] = {.lex_state = 207}, + [4301] = {.lex_state = 245}, + [4302] = {.lex_state = 207}, + [4303] = {.lex_state = 209}, + [4304] = {.lex_state = 241}, + [4305] = {.lex_state = 231}, + [4306] = {.lex_state = 207}, + [4307] = {.lex_state = 207}, + [4308] = {.lex_state = 241}, + [4309] = {.lex_state = 207}, + [4310] = {.lex_state = 244}, + [4311] = {.lex_state = 209}, + [4312] = {.lex_state = 241}, + [4313] = {.lex_state = 244}, + [4314] = {.lex_state = 246}, + [4315] = {.lex_state = 207}, + [4316] = {.lex_state = 207}, + [4317] = {.lex_state = 245}, + [4318] = {.lex_state = 207}, + [4319] = {.lex_state = 241}, + [4320] = {.lex_state = 244}, + [4321] = {.lex_state = 245}, + [4322] = {.lex_state = 228}, + [4323] = {.lex_state = 228}, + [4324] = {.lex_state = 246}, + [4325] = {.lex_state = 231}, + [4326] = {.lex_state = 207}, + [4327] = {.lex_state = 209}, + [4328] = {.lex_state = 245}, + [4329] = {.lex_state = 209}, + [4330] = {.lex_state = 242}, + [4331] = {.lex_state = 244}, + [4332] = {.lex_state = 242}, + [4333] = {.lex_state = 242}, + [4334] = {.lex_state = 241}, + [4335] = {.lex_state = 242}, + [4336] = {.lex_state = 242}, + [4337] = {.lex_state = 232}, + [4338] = {.lex_state = 242}, + [4339] = {.lex_state = 242}, + [4340] = {.lex_state = 242}, + [4341] = {.lex_state = 244}, + [4342] = {.lex_state = 241}, + [4343] = {.lex_state = 242}, + [4344] = {.lex_state = 242}, + [4345] = {.lex_state = 242}, + [4346] = {.lex_state = 242}, + [4347] = {.lex_state = 244}, + [4348] = {.lex_state = 241}, + [4349] = {.lex_state = 242}, + [4350] = {.lex_state = 241}, + [4351] = {.lex_state = 242}, + [4352] = {.lex_state = 242}, + [4353] = {.lex_state = 242}, + [4354] = {.lex_state = 232}, + [4355] = {.lex_state = 242}, + [4356] = {.lex_state = 207}, + [4357] = {.lex_state = 242}, + [4358] = {.lex_state = 242}, + [4359] = {.lex_state = 242}, + [4360] = {.lex_state = 242}, + [4361] = {.lex_state = 207}, + [4362] = {.lex_state = 207}, + [4363] = {.lex_state = 242}, + [4364] = {.lex_state = 241}, + [4365] = {.lex_state = 244}, + [4366] = {.lex_state = 244}, + [4367] = {.lex_state = 242}, + [4368] = {.lex_state = 242}, + [4369] = {.lex_state = 242}, + [4370] = {.lex_state = 242}, + [4371] = {.lex_state = 242}, + [4372] = {.lex_state = 242}, + [4373] = {.lex_state = 241}, + [4374] = {.lex_state = 207}, + [4375] = {.lex_state = 207}, + [4376] = {.lex_state = 207}, + [4377] = {.lex_state = 207}, + [4378] = {.lex_state = 207}, + [4379] = {.lex_state = 209}, + [4380] = {.lex_state = 207}, + [4381] = {.lex_state = 207}, + [4382] = {.lex_state = 207}, + [4383] = {.lex_state = 207}, + [4384] = {.lex_state = 209}, + [4385] = {.lex_state = 207}, + [4386] = {.lex_state = 207}, + [4387] = {.lex_state = 207}, + [4388] = {.lex_state = 245}, + [4389] = {.lex_state = 245}, + [4390] = {.lex_state = 207}, + [4391] = {.lex_state = 207}, + [4392] = {.lex_state = 241}, + [4393] = {.lex_state = 207}, + [4394] = {.lex_state = 207}, + [4395] = {.lex_state = 207}, + [4396] = {.lex_state = 246}, + [4397] = {.lex_state = 207}, + [4398] = {.lex_state = 207}, + [4399] = {.lex_state = 207}, + [4400] = {.lex_state = 207}, + [4401] = {.lex_state = 207}, + [4402] = {.lex_state = 207}, + [4403] = {.lex_state = 207}, + [4404] = {.lex_state = 207}, + [4405] = {.lex_state = 207}, + [4406] = {.lex_state = 248}, + [4407] = {.lex_state = 207}, + [4408] = {.lex_state = 207}, + [4409] = {.lex_state = 207}, + [4410] = {.lex_state = 241}, + [4411] = {.lex_state = 209}, + [4412] = {.lex_state = 207}, + [4413] = {.lex_state = 248}, + [4414] = {.lex_state = 207}, + [4415] = {.lex_state = 207}, + [4416] = {.lex_state = 207}, + [4417] = {.lex_state = 207}, + [4418] = {.lex_state = 207}, + [4419] = {.lex_state = 207}, + [4420] = {.lex_state = 207}, + [4421] = {.lex_state = 209}, + [4422] = {.lex_state = 207}, + [4423] = {.lex_state = 207}, + [4424] = {.lex_state = 246}, + [4425] = {.lex_state = 207}, + [4426] = {.lex_state = 207}, + [4427] = {.lex_state = 207}, + [4428] = {.lex_state = 207}, + [4429] = {.lex_state = 245}, + [4430] = {.lex_state = 207}, + [4431] = {.lex_state = 207}, + [4432] = {.lex_state = 207}, + [4433] = {.lex_state = 207}, + [4434] = {.lex_state = 207}, + [4435] = {.lex_state = 207}, + [4436] = {.lex_state = 207}, + [4437] = {.lex_state = 207}, + [4438] = {.lex_state = 207}, + [4439] = {.lex_state = 245}, + [4440] = {.lex_state = 245}, + [4441] = {.lex_state = 245}, + [4442] = {.lex_state = 244}, + [4443] = {.lex_state = 228}, + [4444] = {.lex_state = 207}, + [4445] = {.lex_state = 241}, + [4446] = {.lex_state = 232}, + [4447] = {.lex_state = 209}, + [4448] = {.lex_state = 245}, + [4449] = {.lex_state = 209}, + [4450] = {.lex_state = 245}, + [4451] = {.lex_state = 207}, + [4452] = {.lex_state = 232}, + [4453] = {.lex_state = 244}, + [4454] = {.lex_state = 207}, + [4455] = {.lex_state = 228}, + [4456] = {.lex_state = 245}, + [4457] = {.lex_state = 209}, + [4458] = {.lex_state = 207}, + [4459] = {.lex_state = 207}, + [4460] = {.lex_state = 232}, + [4461] = {.lex_state = 245}, + [4462] = {.lex_state = 207}, + [4463] = {.lex_state = 244}, + [4464] = {.lex_state = 244}, + [4465] = {.lex_state = 207}, + [4466] = {.lex_state = 241}, + [4467] = {.lex_state = 245}, + [4468] = {.lex_state = 207}, + [4469] = {.lex_state = 244}, + [4470] = {.lex_state = 207}, + [4471] = {.lex_state = 232}, + [4472] = {.lex_state = 228}, + [4473] = {.lex_state = 228}, + [4474] = {.lex_state = 228}, + [4475] = {.lex_state = 207}, + [4476] = {.lex_state = 209}, + [4477] = {.lex_state = 248}, + [4478] = {.lex_state = 207}, + [4479] = {.lex_state = 245}, + [4480] = {.lex_state = 228}, + [4481] = {.lex_state = 241}, + [4482] = {.lex_state = 207}, + [4483] = {.lex_state = 207}, + [4484] = {.lex_state = 228}, + [4485] = {.lex_state = 241}, + [4486] = {.lex_state = 207}, + [4487] = {.lex_state = 207}, + [4488] = {.lex_state = 244}, + [4489] = {.lex_state = 228}, + [4490] = {.lex_state = 207}, + [4491] = {.lex_state = 207}, + [4492] = {.lex_state = 245}, + [4493] = {.lex_state = 207}, + [4494] = {.lex_state = 207}, + [4495] = {.lex_state = 209}, + [4496] = {.lex_state = 207}, + [4497] = {.lex_state = 245}, + [4498] = {.lex_state = 245}, + [4499] = {.lex_state = 228}, + [4500] = {.lex_state = 210}, + [4501] = {.lex_state = 209}, + [4502] = {.lex_state = 245}, + [4503] = {.lex_state = 209}, + [4504] = {.lex_state = 210}, + [4505] = {.lex_state = 245}, + [4506] = {.lex_state = 244}, + [4507] = {.lex_state = 244}, + [4508] = {.lex_state = 245}, + [4509] = {.lex_state = 244}, + [4510] = {.lex_state = 245}, + [4511] = {.lex_state = 245}, + [4512] = {.lex_state = 241}, + [4513] = {.lex_state = 245}, + [4514] = {.lex_state = 208}, + [4515] = {.lex_state = 245}, + [4516] = {.lex_state = 208}, + [4517] = {.lex_state = 245}, + [4518] = {.lex_state = 207}, + [4519] = {.lex_state = 245}, + [4520] = {.lex_state = 228}, + [4521] = {.lex_state = 245}, + [4522] = {.lex_state = 241}, + [4523] = {.lex_state = 207}, + [4524] = {.lex_state = 207}, + [4525] = {.lex_state = 245}, + [4526] = {.lex_state = 207}, + [4527] = {.lex_state = 207}, + [4528] = {.lex_state = 244}, + [4529] = {.lex_state = 207}, + [4530] = {.lex_state = 245}, + [4531] = {.lex_state = 245}, + [4532] = {.lex_state = 210}, + [4533] = {.lex_state = 233}, + [4534] = {.lex_state = 245}, + [4535] = {.lex_state = 248}, + [4536] = {.lex_state = 232}, + [4537] = {.lex_state = 207}, + [4538] = {.lex_state = 232}, + [4539] = {.lex_state = 232}, + [4540] = {.lex_state = 232}, + [4541] = {.lex_state = 233}, + [4542] = {.lex_state = 207}, + [4543] = {.lex_state = 232}, + [4544] = {.lex_state = 244}, + [4545] = {.lex_state = 232}, + [4546] = {.lex_state = 241}, + [4547] = {.lex_state = 241}, + [4548] = {.lex_state = 241}, + [4549] = {.lex_state = 241}, + [4550] = {.lex_state = 245}, + [4551] = {.lex_state = 232}, + [4552] = {.lex_state = 210}, + [4553] = {.lex_state = 232}, + [4554] = {.lex_state = 244}, + [4555] = {.lex_state = 232}, + [4556] = {.lex_state = 207}, + [4557] = {.lex_state = 207}, + [4558] = {.lex_state = 232}, + [4559] = {.lex_state = 244}, + [4560] = {.lex_state = 244}, + [4561] = {.lex_state = 245}, + [4562] = {.lex_state = 232}, + [4563] = {.lex_state = 244}, + [4564] = {.lex_state = 244}, + [4565] = {.lex_state = 244}, + [4566] = {.lex_state = 207}, + [4567] = {.lex_state = 248}, + [4568] = {.lex_state = 207}, + [4569] = {.lex_state = 228}, + [4570] = {.lex_state = 228}, + [4571] = {.lex_state = 207}, + [4572] = {.lex_state = 245}, + [4573] = {.lex_state = 232}, + [4574] = {.lex_state = 241}, + [4575] = {.lex_state = 232}, + [4576] = {.lex_state = 232}, + [4577] = {.lex_state = 232}, + [4578] = {.lex_state = 232}, + [4579] = {.lex_state = 232}, + [4580] = {.lex_state = 207}, + [4581] = {.lex_state = 245}, + [4582] = {.lex_state = 245}, + [4583] = {.lex_state = 244}, + [4584] = {.lex_state = 207}, + [4585] = {.lex_state = 245}, + [4586] = {.lex_state = 244}, + [4587] = {.lex_state = 207}, + [4588] = {.lex_state = 245}, + [4589] = {.lex_state = 245}, + [4590] = {.lex_state = 244}, + [4591] = {.lex_state = 245}, + [4592] = {.lex_state = 207}, + [4593] = {.lex_state = 248}, + [4594] = {.lex_state = 245}, + [4595] = {.lex_state = 245}, + [4596] = {.lex_state = 207}, + [4597] = {.lex_state = 207}, + [4598] = {.lex_state = 248}, + [4599] = {.lex_state = 207}, + [4600] = {.lex_state = 207}, + [4601] = {.lex_state = 207}, + [4602] = {.lex_state = 207}, + [4603] = {.lex_state = 207}, + [4604] = {.lex_state = 207}, + [4605] = {.lex_state = 207}, + [4606] = {.lex_state = 244}, + [4607] = {.lex_state = 207}, + [4608] = {.lex_state = 207}, + [4609] = {.lex_state = 207}, + [4610] = {.lex_state = 244}, + [4611] = {.lex_state = 244}, + [4612] = {.lex_state = 244}, + [4613] = {.lex_state = 244}, + [4614] = {.lex_state = 245}, + [4615] = {.lex_state = 207}, + [4616] = {.lex_state = 245}, + [4617] = {.lex_state = 245}, + [4618] = {.lex_state = 244}, + [4619] = {.lex_state = 207}, + [4620] = {.lex_state = 207}, + [4621] = {.lex_state = 207}, + [4622] = {.lex_state = 207}, + [4623] = {.lex_state = 241}, + [4624] = {.lex_state = 207}, + [4625] = {.lex_state = 241}, + [4626] = {.lex_state = 207}, + [4627] = {.lex_state = 209}, + [4628] = {.lex_state = 244}, + [4629] = {.lex_state = 207}, + [4630] = {.lex_state = 207}, + [4631] = {.lex_state = 207}, + [4632] = {.lex_state = 207}, + [4633] = {.lex_state = 207}, + [4634] = {.lex_state = 207}, + [4635] = {.lex_state = 207}, + [4636] = {.lex_state = 207}, + [4637] = {.lex_state = 207}, + [4638] = {.lex_state = 207}, + [4639] = {.lex_state = 207}, + [4640] = {.lex_state = 245}, + [4641] = {.lex_state = 207}, + [4642] = {.lex_state = 207}, + [4643] = {.lex_state = 209}, + [4644] = {.lex_state = 207}, + [4645] = {.lex_state = 207}, + [4646] = {.lex_state = 245}, + [4647] = {.lex_state = 207}, + [4648] = {.lex_state = 207}, + [4649] = {.lex_state = 207}, + [4650] = {.lex_state = 207}, + [4651] = {.lex_state = 232}, + [4652] = {.lex_state = 245}, + [4653] = {.lex_state = 244}, + [4654] = {.lex_state = 207}, + [4655] = {.lex_state = 207}, + [4656] = {.lex_state = 232}, + [4657] = {.lex_state = 244}, + [4658] = {.lex_state = 244}, + [4659] = {.lex_state = 244}, + [4660] = {.lex_state = 207}, + [4661] = {.lex_state = 232}, + [4662] = {.lex_state = 207}, + [4663] = {.lex_state = 207}, + [4664] = {.lex_state = 207}, + [4665] = {.lex_state = 232}, + [4666] = {.lex_state = 207}, + [4667] = {.lex_state = 207}, + [4668] = {.lex_state = 207}, + [4669] = {.lex_state = 207}, + [4670] = {.lex_state = 207}, + [4671] = {.lex_state = 245}, + [4672] = {.lex_state = 232}, + [4673] = {.lex_state = 207}, + [4674] = {.lex_state = 232}, + [4675] = {.lex_state = 228}, + [4676] = {.lex_state = 207}, + [4677] = {.lex_state = 232}, + [4678] = {.lex_state = 244}, + [4679] = {.lex_state = 232}, + [4680] = {.lex_state = 244}, + [4681] = {.lex_state = 244}, + [4682] = {.lex_state = 244}, + [4683] = {.lex_state = 244}, + [4684] = {.lex_state = 244}, + [4685] = {.lex_state = 232}, + [4686] = {.lex_state = 232}, + [4687] = {.lex_state = 232}, + [4688] = {.lex_state = 244}, + [4689] = {.lex_state = 232}, + [4690] = {.lex_state = 247}, + [4691] = {.lex_state = 244}, + [4692] = {.lex_state = 244}, + [4693] = {.lex_state = 208}, + [4694] = {.lex_state = 232}, + [4695] = {.lex_state = 244}, + [4696] = {.lex_state = 244}, + [4697] = {.lex_state = 232}, + [4698] = {.lex_state = 232}, + [4699] = {.lex_state = 244}, + [4700] = {.lex_state = 232}, + [4701] = {.lex_state = 244}, + [4702] = {.lex_state = 207}, + [4703] = {.lex_state = 232}, + [4704] = {.lex_state = 232}, + [4705] = {.lex_state = 207}, + [4706] = {.lex_state = 244}, + [4707] = {.lex_state = 244}, + [4708] = {.lex_state = 244}, + [4709] = {.lex_state = 244}, + [4710] = {.lex_state = 244}, + [4711] = {.lex_state = 244}, + [4712] = {.lex_state = 244}, + [4713] = {.lex_state = 228}, + [4714] = {.lex_state = 207}, + [4715] = {.lex_state = 244}, + [4716] = {.lex_state = 207}, + [4717] = {.lex_state = 207}, + [4718] = {.lex_state = 207}, + [4719] = {.lex_state = 245}, + [4720] = {.lex_state = 227}, + [4721] = {.lex_state = 210}, + [4722] = {.lex_state = 245}, + [4723] = {.lex_state = 245}, + [4724] = {.lex_state = 207}, + [4725] = {.lex_state = 207}, + [4726] = {.lex_state = 232}, + [4727] = {.lex_state = 232}, + [4728] = {.lex_state = 207}, + [4729] = {.lex_state = 207}, + [4730] = {.lex_state = 207}, + [4731] = {.lex_state = 228}, + [4732] = {.lex_state = 232}, + [4733] = {.lex_state = 228}, + [4734] = {.lex_state = 210}, + [4735] = {.lex_state = 207}, + [4736] = {.lex_state = 244}, + [4737] = {.lex_state = 210}, + [4738] = {.lex_state = 244}, + [4739] = {.lex_state = 247}, + [4740] = {.lex_state = 244}, + [4741] = {.lex_state = 209}, + [4742] = {.lex_state = 207}, + [4743] = {.lex_state = 207}, + [4744] = {.lex_state = 207}, + [4745] = {.lex_state = 207}, + [4746] = {.lex_state = 244}, + [4747] = {.lex_state = 232}, + [4748] = {.lex_state = 207}, + [4749] = {.lex_state = 232}, + [4750] = {.lex_state = 207}, + [4751] = {.lex_state = 245}, + [4752] = {.lex_state = 209}, + [4753] = {.lex_state = 207}, + [4754] = {.lex_state = 207}, + [4755] = {.lex_state = 207}, + [4756] = {.lex_state = 232}, + [4757] = {.lex_state = 245}, + [4758] = {.lex_state = 207}, + [4759] = {.lex_state = 207}, + [4760] = {.lex_state = 207}, + [4761] = {.lex_state = 245}, + [4762] = {.lex_state = 245}, + [4763] = {.lex_state = 207}, + [4764] = {.lex_state = 209}, + [4765] = {.lex_state = 207}, + [4766] = {.lex_state = 209}, + [4767] = {.lex_state = 207}, + [4768] = {.lex_state = 207}, + [4769] = {.lex_state = 207}, + [4770] = {.lex_state = 209}, + [4771] = {.lex_state = 209}, + [4772] = {.lex_state = 209}, + [4773] = {.lex_state = 209}, + [4774] = {.lex_state = 209}, + [4775] = {.lex_state = 209}, + [4776] = {.lex_state = 209}, + [4777] = {.lex_state = 209}, + [4778] = {.lex_state = 209}, + [4779] = {.lex_state = 209}, + [4780] = {.lex_state = 209}, + [4781] = {.lex_state = 209}, + [4782] = {.lex_state = 209}, + [4783] = {.lex_state = 244}, + [4784] = {.lex_state = 244}, + [4785] = {.lex_state = 209}, + [4786] = {.lex_state = 245}, + [4787] = {.lex_state = 209}, + [4788] = {.lex_state = 245}, + [4789] = {.lex_state = 209}, + [4790] = {.lex_state = 209}, + [4791] = {.lex_state = 209}, + [4792] = {.lex_state = 247}, + [4793] = {.lex_state = 207}, + [4794] = {.lex_state = 244}, + [4795] = {.lex_state = 228}, + [4796] = {.lex_state = 244}, + [4797] = {.lex_state = 228}, + [4798] = {.lex_state = 228}, + [4799] = {.lex_state = 228}, + [4800] = {.lex_state = 232}, + [4801] = {.lex_state = 207}, + [4802] = {.lex_state = 207}, + [4803] = {.lex_state = 207}, + [4804] = {.lex_state = 207}, + [4805] = {.lex_state = 231}, + [4806] = {.lex_state = 209}, + [4807] = {.lex_state = 232}, + [4808] = {.lex_state = 232}, + [4809] = {.lex_state = 207}, + [4810] = {.lex_state = 207}, + [4811] = {.lex_state = 247}, + [4812] = {.lex_state = 247}, + [4813] = {.lex_state = 207}, + [4814] = {.lex_state = 247}, + [4815] = {.lex_state = 232}, + [4816] = {.lex_state = 232}, + [4817] = {.lex_state = 247}, + [4818] = {.lex_state = 207}, + [4819] = {.lex_state = 232}, + [4820] = {.lex_state = 207}, + [4821] = {.lex_state = 207}, + [4822] = {.lex_state = 207}, + [4823] = {.lex_state = 207}, + [4824] = {.lex_state = 207}, + [4825] = {.lex_state = 245}, + [4826] = {.lex_state = 207}, + [4827] = {.lex_state = 232}, + [4828] = {.lex_state = 232}, + [4829] = {.lex_state = 207}, + [4830] = {.lex_state = 207}, + [4831] = {.lex_state = 209}, + [4832] = {.lex_state = 232}, + [4833] = {.lex_state = 207}, + [4834] = {.lex_state = 207}, + [4835] = {.lex_state = 232}, + [4836] = {.lex_state = 207}, + [4837] = {.lex_state = 209}, + [4838] = {.lex_state = 228}, + [4839] = {.lex_state = 209}, + [4840] = {.lex_state = 209}, + [4841] = {.lex_state = 209}, + [4842] = {.lex_state = 209}, + [4843] = {.lex_state = 209}, + [4844] = {.lex_state = 232}, + [4845] = {.lex_state = 207}, + [4846] = {.lex_state = 207}, + [4847] = {.lex_state = 246}, + [4848] = {.lex_state = 207}, + [4849] = {.lex_state = 232}, + [4850] = {.lex_state = 244}, + [4851] = {.lex_state = 209}, + [4852] = {.lex_state = 244}, + [4853] = {.lex_state = 245}, + [4854] = {.lex_state = 245}, + [4855] = {.lex_state = 207}, + [4856] = {.lex_state = 232}, + [4857] = {.lex_state = 245}, + [4858] = {.lex_state = 207}, + [4859] = {.lex_state = 245}, + [4860] = {.lex_state = 232}, + [4861] = {.lex_state = 207}, + [4862] = {.lex_state = 207}, + [4863] = {.lex_state = 207}, + [4864] = {.lex_state = 207}, + [4865] = {.lex_state = 207}, + [4866] = {.lex_state = 207}, + [4867] = {.lex_state = 207}, + [4868] = {.lex_state = 207}, + [4869] = {.lex_state = 207}, + [4870] = {.lex_state = 207}, + [4871] = {.lex_state = 207}, + [4872] = {.lex_state = 207}, + [4873] = {.lex_state = 207}, + [4874] = {.lex_state = 207}, + [4875] = {.lex_state = 207}, + [4876] = {.lex_state = 207}, + [4877] = {.lex_state = 207}, + [4878] = {.lex_state = 232}, + [4879] = {.lex_state = 207}, + [4880] = {.lex_state = 232}, + [4881] = {.lex_state = 232}, + [4882] = {.lex_state = 207}, + [4883] = {.lex_state = 207}, + [4884] = {.lex_state = 207}, + [4885] = {.lex_state = 232}, + [4886] = {.lex_state = 232}, + [4887] = {.lex_state = 232}, + [4888] = {.lex_state = 244}, + [4889] = {.lex_state = 209}, + [4890] = {.lex_state = 209}, + [4891] = {.lex_state = 232}, + [4892] = {.lex_state = 210}, + [4893] = {.lex_state = 245}, + [4894] = {.lex_state = 209}, + [4895] = {.lex_state = 247}, + [4896] = {.lex_state = 209}, + [4897] = {.lex_state = 209}, + [4898] = {.lex_state = 245}, + [4899] = {.lex_state = 209}, + [4900] = {.lex_state = 244}, + [4901] = {.lex_state = 207}, + [4902] = {.lex_state = 233}, + [4903] = {.lex_state = 209}, + [4904] = {.lex_state = 244}, + [4905] = {.lex_state = 244}, + [4906] = {.lex_state = 209}, + [4907] = {.lex_state = 207}, + [4908] = {.lex_state = 207}, + [4909] = {.lex_state = 207}, + [4910] = {.lex_state = 232}, + [4911] = {.lex_state = 232}, + [4912] = {.lex_state = 207}, + [4913] = {.lex_state = 209}, + [4914] = {.lex_state = 207}, + [4915] = {.lex_state = 207}, + [4916] = {.lex_state = 232}, + [4917] = {.lex_state = 232}, + [4918] = {.lex_state = 232}, + [4919] = {.lex_state = 210}, + [4920] = {.lex_state = 207}, + [4921] = {.lex_state = 207}, + [4922] = {.lex_state = 245}, + [4923] = {.lex_state = 207}, + [4924] = {.lex_state = 245}, + [4925] = {.lex_state = 207}, + [4926] = {.lex_state = 207}, + [4927] = {.lex_state = 207}, + [4928] = {.lex_state = 245}, + [4929] = {.lex_state = 207}, + [4930] = {.lex_state = 207}, + [4931] = {.lex_state = 245}, + [4932] = {.lex_state = 207}, + [4933] = {.lex_state = 245}, + [4934] = {.lex_state = 207}, + [4935] = {.lex_state = 207}, + [4936] = {.lex_state = 245}, + [4937] = {.lex_state = 207}, + [4938] = {.lex_state = 242}, + [4939] = {.lex_state = 245}, + [4940] = {.lex_state = 207}, + [4941] = {.lex_state = 207}, + [4942] = {.lex_state = 242}, + [4943] = {.lex_state = 245}, + [4944] = {.lex_state = 245}, + [4945] = {.lex_state = 245}, + [4946] = {.lex_state = 207}, + [4947] = {.lex_state = 245}, + [4948] = {.lex_state = 207}, + [4949] = {.lex_state = 207}, + [4950] = {.lex_state = 207}, + [4951] = {.lex_state = 207}, + [4952] = {.lex_state = 207}, + [4953] = {.lex_state = 207}, + [4954] = {.lex_state = 207}, + [4955] = {.lex_state = 245}, + [4956] = {.lex_state = 245}, + [4957] = {.lex_state = 207}, + [4958] = {.lex_state = 207}, + [4959] = {.lex_state = 242}, + [4960] = {.lex_state = 207}, + [4961] = {.lex_state = 209}, + [4962] = {.lex_state = 242}, + [4963] = {.lex_state = 245}, + [4964] = {.lex_state = 207}, + [4965] = {.lex_state = 209}, + [4966] = {.lex_state = 245}, + [4967] = {.lex_state = 207}, + [4968] = {.lex_state = 207}, + [4969] = {.lex_state = 207}, + [4970] = {.lex_state = 245}, + [4971] = {.lex_state = 207}, + [4972] = {.lex_state = 207}, + [4973] = {.lex_state = 207}, + [4974] = {.lex_state = 207}, + [4975] = {.lex_state = 207}, + [4976] = {.lex_state = 207}, + [4977] = {.lex_state = 245}, + [4978] = {.lex_state = 245}, + [4979] = {.lex_state = 245}, + [4980] = {.lex_state = 207}, + [4981] = {.lex_state = 207}, + [4982] = {.lex_state = 245}, + [4983] = {.lex_state = 245}, + [4984] = {.lex_state = 207}, + [4985] = {.lex_state = 207}, + [4986] = {.lex_state = 207}, + [4987] = {.lex_state = 207}, + [4988] = {.lex_state = 207}, + [4989] = {.lex_state = 242}, + [4990] = {.lex_state = 242}, + [4991] = {.lex_state = 207}, + [4992] = {.lex_state = 207}, + [4993] = {.lex_state = 242}, + [4994] = {.lex_state = 242}, + [4995] = {.lex_state = 207}, + [4996] = {.lex_state = 242}, + [4997] = {.lex_state = 245}, + [4998] = {.lex_state = 242}, + [4999] = {.lex_state = 242}, + [5000] = {.lex_state = 242}, + [5001] = {.lex_state = 242}, + [5002] = {.lex_state = 234}, + [5003] = {.lex_state = 245}, + [5004] = {.lex_state = 207}, + [5005] = {.lex_state = 207}, + [5006] = {.lex_state = 207}, + [5007] = {.lex_state = 244}, + [5008] = {.lex_state = 244}, + [5009] = {.lex_state = 244}, + [5010] = {.lex_state = 244}, + [5011] = {.lex_state = 207}, + [5012] = {.lex_state = 245}, + [5013] = {.lex_state = 245}, + [5014] = {.lex_state = 242}, + [5015] = {.lex_state = 242}, + [5016] = {.lex_state = 242}, + [5017] = {.lex_state = 207}, + [5018] = {.lex_state = 207}, + [5019] = {.lex_state = 207}, + [5020] = {.lex_state = 207}, + [5021] = {.lex_state = 234}, + [5022] = {.lex_state = 242}, + [5023] = {.lex_state = 207}, + [5024] = {.lex_state = 207}, + [5025] = {.lex_state = 207}, + [5026] = {.lex_state = 244}, + [5027] = {.lex_state = 242}, + [5028] = {.lex_state = 207}, + [5029] = {.lex_state = 207}, + [5030] = {.lex_state = 207}, + [5031] = {.lex_state = 245}, + [5032] = {.lex_state = 245}, + [5033] = {.lex_state = 209}, + [5034] = {.lex_state = 207}, + [5035] = {.lex_state = 245}, + [5036] = {.lex_state = 207}, + [5037] = {.lex_state = 245}, + [5038] = {.lex_state = 207}, + [5039] = {.lex_state = 209}, + [5040] = {.lex_state = 207}, + [5041] = {.lex_state = 245}, + [5042] = {.lex_state = 207}, + [5043] = {.lex_state = 207}, + [5044] = {.lex_state = 207}, + [5045] = {.lex_state = 207}, + [5046] = {.lex_state = 207}, + [5047] = {.lex_state = 207}, + [5048] = {.lex_state = 207}, + [5049] = {.lex_state = 245}, + [5050] = {.lex_state = 245}, + [5051] = {.lex_state = 207}, + [5052] = {.lex_state = 207}, + [5053] = {.lex_state = 245}, + [5054] = {.lex_state = 245}, + [5055] = {.lex_state = 209}, + [5056] = {.lex_state = 207}, + [5057] = {.lex_state = 207}, + [5058] = {.lex_state = 207}, + [5059] = {.lex_state = 207}, + [5060] = {.lex_state = 245}, + [5061] = {.lex_state = 245}, + [5062] = {.lex_state = 244}, + [5063] = {.lex_state = 207}, + [5064] = {.lex_state = 207}, + [5065] = {.lex_state = 207}, + [5066] = {.lex_state = 207}, + [5067] = {.lex_state = 207}, + [5068] = {.lex_state = 245}, + [5069] = {.lex_state = 207}, + [5070] = {.lex_state = 207}, + [5071] = {.lex_state = 241}, + [5072] = {.lex_state = 207}, + [5073] = {.lex_state = 207}, + [5074] = {.lex_state = 207}, + [5075] = {.lex_state = 241}, + [5076] = {.lex_state = 241}, + [5077] = {.lex_state = 245}, + [5078] = {.lex_state = 245}, + [5079] = {.lex_state = 241}, + [5080] = {.lex_state = 245}, + [5081] = {.lex_state = 245}, + [5082] = {.lex_state = 245}, + [5083] = {.lex_state = 207}, + [5084] = {.lex_state = 245}, + [5085] = {.lex_state = 207}, + [5086] = {.lex_state = 242}, + [5087] = {.lex_state = 207}, + [5088] = {.lex_state = 242}, + [5089] = {.lex_state = 242}, + [5090] = {.lex_state = 207}, + [5091] = {.lex_state = 245}, + [5092] = {.lex_state = 207}, + [5093] = {.lex_state = 207}, + [5094] = {.lex_state = 207}, + [5095] = {.lex_state = 232}, + [5096] = {.lex_state = 242}, + [5097] = {.lex_state = 245}, + [5098] = {.lex_state = 245}, + [5099] = {.lex_state = 207}, + [5100] = {.lex_state = 245}, + [5101] = {.lex_state = 207}, + [5102] = {.lex_state = 245}, + [5103] = {.lex_state = 207}, + [5104] = {.lex_state = 245}, + [5105] = {.lex_state = 207}, + [5106] = {.lex_state = 245}, + [5107] = {.lex_state = 207}, + [5108] = {.lex_state = 210}, + [5109] = {.lex_state = 207}, + [5110] = {.lex_state = 245}, + [5111] = {.lex_state = 245}, + [5112] = {.lex_state = 207}, + [5113] = {.lex_state = 245}, + [5114] = {.lex_state = 207}, + [5115] = {.lex_state = 245}, + [5116] = {.lex_state = 207}, + [5117] = {.lex_state = 207}, + [5118] = {.lex_state = 207}, + [5119] = {.lex_state = 207}, + [5120] = {.lex_state = 207}, + [5121] = {.lex_state = 242}, + [5122] = {.lex_state = 207}, + [5123] = {.lex_state = 245}, + [5124] = {.lex_state = 207}, + [5125] = {.lex_state = 245}, + [5126] = {.lex_state = 207}, + [5127] = {.lex_state = 207}, + [5128] = {.lex_state = 207}, + [5129] = {.lex_state = 207}, + [5130] = {.lex_state = 207}, + [5131] = {.lex_state = 207}, + [5132] = {.lex_state = 207}, + [5133] = {.lex_state = 207}, + [5134] = {.lex_state = 207}, + [5135] = {.lex_state = 207}, + [5136] = {.lex_state = 245}, + [5137] = {.lex_state = 245}, + [5138] = {.lex_state = 232}, + [5139] = {.lex_state = 207}, + [5140] = {.lex_state = 232}, + [5141] = {.lex_state = 207}, + [5142] = {.lex_state = 232}, + [5143] = {.lex_state = 207}, + [5144] = {.lex_state = 245}, + [5145] = {.lex_state = 232}, + [5146] = {.lex_state = 207}, + [5147] = {.lex_state = 207}, + [5148] = {.lex_state = 232}, + [5149] = {.lex_state = 232}, + [5150] = {.lex_state = 232}, + [5151] = {.lex_state = 232}, + [5152] = {.lex_state = 232}, + [5153] = {.lex_state = 232}, + [5154] = {.lex_state = 241}, + [5155] = {.lex_state = 244}, + [5156] = {.lex_state = 207}, + [5157] = {.lex_state = 232}, + [5158] = {.lex_state = 245}, + [5159] = {.lex_state = 232}, + [5160] = {.lex_state = 245}, + [5161] = {.lex_state = 245}, + [5162] = {.lex_state = 245}, + [5163] = {.lex_state = 232}, + [5164] = {.lex_state = 232}, + [5165] = {.lex_state = 232}, + [5166] = {.lex_state = 207}, + [5167] = {.lex_state = 241}, + [5168] = {.lex_state = 244}, + [5169] = {.lex_state = 232}, + [5170] = {.lex_state = 232}, + [5171] = {.lex_state = 232}, + [5172] = {.lex_state = 245}, + [5173] = {.lex_state = 232}, + [5174] = {.lex_state = 232}, + [5175] = {.lex_state = 232}, + [5176] = {.lex_state = 232}, + [5177] = {.lex_state = 232}, + [5178] = {.lex_state = 232}, + [5179] = {.lex_state = 207}, + [5180] = {.lex_state = 232}, + [5181] = {.lex_state = 232}, + [5182] = {.lex_state = 232}, + [5183] = {.lex_state = 232}, + [5184] = {.lex_state = 210}, + [5185] = {.lex_state = 207}, + [5186] = {.lex_state = 245}, + [5187] = {.lex_state = 207}, + [5188] = {.lex_state = 232}, + [5189] = {.lex_state = 232}, + [5190] = {.lex_state = 232}, + [5191] = {.lex_state = 228}, + [5192] = {.lex_state = 232}, + [5193] = {.lex_state = 232}, + [5194] = {.lex_state = 232}, + [5195] = {.lex_state = 232}, + [5196] = {.lex_state = 207}, + [5197] = {.lex_state = 245}, + [5198] = {.lex_state = 232}, + [5199] = {.lex_state = 232}, + [5200] = {.lex_state = 232}, + [5201] = {.lex_state = 232}, + [5202] = {.lex_state = 244}, + [5203] = {.lex_state = 228}, + [5204] = {.lex_state = 209}, + [5205] = {.lex_state = 228}, + [5206] = {.lex_state = 228}, + [5207] = {.lex_state = 241}, + [5208] = {.lex_state = 228}, + [5209] = {.lex_state = 244}, + [5210] = {.lex_state = 228}, + [5211] = {.lex_state = 244}, + [5212] = {.lex_state = 241}, + [5213] = {.lex_state = 244}, + [5214] = {.lex_state = 209}, + [5215] = {.lex_state = 232}, + [5216] = {.lex_state = 209}, + [5217] = {.lex_state = 246}, + [5218] = {.lex_state = 244}, + [5219] = {.lex_state = 244}, + [5220] = {.lex_state = 244}, + [5221] = {.lex_state = 241}, + [5222] = {.lex_state = 244}, + [5223] = {.lex_state = 241}, + [5224] = {.lex_state = 209}, + [5225] = {.lex_state = 228}, + [5226] = {.lex_state = 228}, + [5227] = {.lex_state = 242}, + [5228] = {.lex_state = 241}, + [5229] = {.lex_state = 209}, + [5230] = {.lex_state = 244}, + [5231] = {.lex_state = 228}, + [5232] = {.lex_state = 246}, + [5233] = {.lex_state = 232}, + [5234] = {.lex_state = 209}, + [5235] = {.lex_state = 209}, + [5236] = {.lex_state = 244}, + [5237] = {.lex_state = 242}, + [5238] = {.lex_state = 241}, + [5239] = {.lex_state = 244}, + [5240] = {.lex_state = 242}, + [5241] = {.lex_state = 241}, + [5242] = {.lex_state = 209}, + [5243] = {.lex_state = 244}, + [5244] = {.lex_state = 244}, + [5245] = {.lex_state = 228}, + [5246] = {.lex_state = 244}, + [5247] = {.lex_state = 207}, + [5248] = {.lex_state = 228}, + [5249] = {.lex_state = 244}, + [5250] = {.lex_state = 244}, + [5251] = {.lex_state = 244}, + [5252] = {.lex_state = 244}, + [5253] = {.lex_state = 244}, + [5254] = {.lex_state = 241}, + [5255] = {.lex_state = 244}, + [5256] = {.lex_state = 244}, + [5257] = {.lex_state = 207}, + [5258] = {.lex_state = 244}, + [5259] = {.lex_state = 244}, + [5260] = {.lex_state = 244}, + [5261] = {.lex_state = 244}, + [5262] = {.lex_state = 244}, + [5263] = {.lex_state = 244}, + [5264] = {.lex_state = 244}, + [5265] = {.lex_state = 244}, + [5266] = {.lex_state = 244}, + [5267] = {.lex_state = 207}, + [5268] = {.lex_state = 244}, + [5269] = {.lex_state = 244}, + [5270] = {.lex_state = 244}, + [5271] = {.lex_state = 244}, + [5272] = {.lex_state = 244}, + [5273] = {.lex_state = 244}, + [5274] = {.lex_state = 244}, + [5275] = {.lex_state = 244}, + [5276] = {.lex_state = 244}, + [5277] = {.lex_state = 244}, + [5278] = {.lex_state = 244}, + [5279] = {.lex_state = 244}, + [5280] = {.lex_state = 244}, + [5281] = {.lex_state = 244}, + [5282] = {.lex_state = 244}, + [5283] = {.lex_state = 244}, + [5284] = {.lex_state = 244}, + [5285] = {.lex_state = 244}, + [5286] = {.lex_state = 244}, + [5287] = {.lex_state = 244}, + [5288] = {.lex_state = 244}, + [5289] = {.lex_state = 244}, + [5290] = {.lex_state = 244}, + [5291] = {.lex_state = 245}, + [5292] = {.lex_state = 244}, + [5293] = {.lex_state = 244}, + [5294] = {.lex_state = 244}, + [5295] = {.lex_state = 245}, + [5296] = {.lex_state = 244}, + [5297] = {.lex_state = 245}, + [5298] = {.lex_state = 244}, + [5299] = {.lex_state = 244}, + [5300] = {.lex_state = 244}, + [5301] = {.lex_state = 244}, + [5302] = {.lex_state = 244}, + [5303] = {.lex_state = 242}, + [5304] = {.lex_state = 244}, + [5305] = {.lex_state = 244}, + [5306] = {.lex_state = 244}, + [5307] = {.lex_state = 244}, + [5308] = {.lex_state = 244}, + [5309] = {.lex_state = 244}, + [5310] = {.lex_state = 207}, + [5311] = {.lex_state = 244}, + [5312] = {.lex_state = 207}, + [5313] = {.lex_state = 244}, + [5314] = {.lex_state = 244}, + [5315] = {.lex_state = 244}, + [5316] = {.lex_state = 244}, + [5317] = {.lex_state = 241}, + [5318] = {.lex_state = 244}, + [5319] = {.lex_state = 244}, + [5320] = {.lex_state = 244}, + [5321] = {.lex_state = 244}, + [5322] = {.lex_state = 245}, + [5323] = {.lex_state = 244}, + [5324] = {.lex_state = 245}, + [5325] = {.lex_state = 245}, + [5326] = {.lex_state = 245}, + [5327] = {.lex_state = 245}, + [5328] = {.lex_state = 245}, + [5329] = {.lex_state = 241}, + [5330] = {.lex_state = 241}, + [5331] = {.lex_state = 241}, + [5332] = {.lex_state = 241}, + [5333] = {.lex_state = 241}, + [5334] = {.lex_state = 228}, + [5335] = {.lex_state = 241}, + [5336] = {.lex_state = 245}, + [5337] = {.lex_state = 228}, + [5338] = {.lex_state = 245}, + [5339] = {.lex_state = 242}, + [5340] = {.lex_state = 245}, + [5341] = {.lex_state = 241}, + [5342] = {.lex_state = 245}, + [5343] = {.lex_state = 244}, + [5344] = {.lex_state = 242}, + [5345] = {.lex_state = 245}, + [5346] = {.lex_state = 241}, + [5347] = {.lex_state = 242}, + [5348] = {.lex_state = 242}, + [5349] = {.lex_state = 199}, + [5350] = {.lex_state = 242}, + [5351] = {.lex_state = 242}, + [5352] = {.lex_state = 199}, + [5353] = {.lex_state = 242}, + [5354] = {.lex_state = 242}, + [5355] = {.lex_state = 242}, + [5356] = {.lex_state = 242}, + [5357] = {.lex_state = 242}, + [5358] = {.lex_state = 199}, + [5359] = {.lex_state = 199}, + [5360] = {.lex_state = 209}, + [5361] = {.lex_state = 242}, + [5362] = {.lex_state = 242}, + [5363] = {.lex_state = 199}, + [5364] = {.lex_state = 242}, + [5365] = {.lex_state = 242}, + [5366] = {.lex_state = 242}, + [5367] = {.lex_state = 242}, + [5368] = {.lex_state = 241}, + [5369] = {.lex_state = 241}, + [5370] = {.lex_state = 242}, + [5371] = {.lex_state = 242}, + [5372] = {.lex_state = 242}, + [5373] = {.lex_state = 242}, + [5374] = {.lex_state = 241}, + [5375] = {.lex_state = 241}, + [5376] = {.lex_state = 209}, + [5377] = {.lex_state = 245}, + [5378] = {.lex_state = 209}, + [5379] = {.lex_state = 241}, + [5380] = {.lex_state = 241}, + [5381] = {.lex_state = 228}, + [5382] = {.lex_state = 245}, + [5383] = {.lex_state = 242}, + [5384] = {.lex_state = 241}, + [5385] = {.lex_state = 228}, + [5386] = {.lex_state = 242}, + [5387] = {.lex_state = 242}, + [5388] = {.lex_state = 241}, + [5389] = {.lex_state = 241}, + [5390] = {.lex_state = 199}, + [5391] = {.lex_state = 242}, + [5392] = {.lex_state = 242}, + [5393] = {.lex_state = 209}, + [5394] = {.lex_state = 242}, + [5395] = {.lex_state = 245}, + [5396] = {.lex_state = 199}, + [5397] = {.lex_state = 199}, + [5398] = {.lex_state = 242}, + [5399] = {.lex_state = 242}, + [5400] = {.lex_state = 245}, + [5401] = {.lex_state = 242}, + [5402] = {.lex_state = 241}, + [5403] = {.lex_state = 242}, + [5404] = {.lex_state = 242}, + [5405] = {.lex_state = 242}, + [5406] = {.lex_state = 209}, + [5407] = {.lex_state = 242}, + [5408] = {.lex_state = 242}, + [5409] = {.lex_state = 242}, + [5410] = {.lex_state = 242}, + [5411] = {.lex_state = 241}, + [5412] = {.lex_state = 242}, + [5413] = {.lex_state = 241}, + [5414] = {.lex_state = 199}, + [5415] = {.lex_state = 199}, + [5416] = {.lex_state = 199}, + [5417] = {.lex_state = 207}, + [5418] = {.lex_state = 241}, + [5419] = {.lex_state = 241}, + [5420] = {.lex_state = 199}, + [5421] = {.lex_state = 199}, + [5422] = {.lex_state = 199}, + [5423] = {.lex_state = 241}, + [5424] = {.lex_state = 241}, + [5425] = {.lex_state = 199}, + [5426] = {.lex_state = 199}, + [5427] = {.lex_state = 199}, + [5428] = {.lex_state = 207}, + [5429] = {.lex_state = 199}, + [5430] = {.lex_state = 199}, + [5431] = {.lex_state = 199}, + [5432] = {.lex_state = 199}, + [5433] = {.lex_state = 199}, + [5434] = {.lex_state = 199}, + [5435] = {.lex_state = 199}, + [5436] = {.lex_state = 199}, + [5437] = {.lex_state = 199}, + [5438] = {.lex_state = 199}, + [5439] = {.lex_state = 241}, + [5440] = {.lex_state = 199}, + [5441] = {.lex_state = 199}, + [5442] = {.lex_state = 199}, + [5443] = {.lex_state = 199}, + [5444] = {.lex_state = 199}, + [5445] = {.lex_state = 199}, + [5446] = {.lex_state = 199}, + [5447] = {.lex_state = 199}, + [5448] = {.lex_state = 242}, + [5449] = {.lex_state = 242}, + [5450] = {.lex_state = 242}, + [5451] = {.lex_state = 242}, + [5452] = {.lex_state = 242}, + [5453] = {.lex_state = 242}, + [5454] = {.lex_state = 242}, + [5455] = {.lex_state = 242}, + [5456] = {.lex_state = 242}, + [5457] = {.lex_state = 242}, + [5458] = {.lex_state = 242}, + [5459] = {.lex_state = 242}, + [5460] = {.lex_state = 199}, + [5461] = {.lex_state = 199}, + [5462] = {.lex_state = 199}, + [5463] = {.lex_state = 199}, + [5464] = {.lex_state = 199}, + [5465] = {.lex_state = 199}, + [5466] = {.lex_state = 242}, + [5467] = {.lex_state = 242}, + [5468] = {.lex_state = 242}, + [5469] = {.lex_state = 199}, + [5470] = {.lex_state = 199}, + [5471] = {.lex_state = 242}, + [5472] = {.lex_state = 207}, + [5473] = {.lex_state = 207}, + [5474] = {.lex_state = 199}, + [5475] = {.lex_state = 241}, + [5476] = {.lex_state = 242}, + [5477] = {.lex_state = 241}, + [5478] = {.lex_state = 241}, + [5479] = {.lex_state = 199}, + [5480] = {.lex_state = 241}, + [5481] = {.lex_state = 199}, + [5482] = {.lex_state = 241}, + [5483] = {.lex_state = 199}, + [5484] = {.lex_state = 242}, + [5485] = {.lex_state = 241}, + [5486] = {.lex_state = 242}, + [5487] = {.lex_state = 242}, + [5488] = {.lex_state = 242}, + [5489] = {.lex_state = 242}, + [5490] = {.lex_state = 199}, + [5491] = {.lex_state = 199}, + [5492] = {.lex_state = 241}, + [5493] = {.lex_state = 242}, + [5494] = {.lex_state = 242}, + [5495] = {.lex_state = 242}, + [5496] = {.lex_state = 207}, + [5497] = {.lex_state = 199}, + [5498] = {.lex_state = 241}, + [5499] = {.lex_state = 242}, + [5500] = {.lex_state = 242}, + [5501] = {.lex_state = 242}, + [5502] = {.lex_state = 199}, + [5503] = {.lex_state = 207}, + [5504] = {.lex_state = 242}, + [5505] = {.lex_state = 242}, + [5506] = {.lex_state = 242}, + [5507] = {.lex_state = 242}, + [5508] = {.lex_state = 199}, + [5509] = {.lex_state = 207}, + [5510] = {.lex_state = 242}, + [5511] = {.lex_state = 242}, + [5512] = {.lex_state = 199}, + [5513] = {.lex_state = 242}, + [5514] = {.lex_state = 199}, + [5515] = {.lex_state = 207}, + [5516] = {.lex_state = 242}, + [5517] = {.lex_state = 242}, + [5518] = {.lex_state = 207}, + [5519] = {.lex_state = 242}, + [5520] = {.lex_state = 242}, + [5521] = {.lex_state = 199}, + [5522] = {.lex_state = 199}, + [5523] = {.lex_state = 242}, + [5524] = {.lex_state = 199}, + [5525] = {.lex_state = 199}, + [5526] = {.lex_state = 242}, + [5527] = {.lex_state = 207}, + [5528] = {.lex_state = 242}, + [5529] = {.lex_state = 199}, + [5530] = {.lex_state = 242}, + [5531] = {.lex_state = 242}, + [5532] = {.lex_state = 242}, + [5533] = {.lex_state = 199}, + [5534] = {.lex_state = 242}, + [5535] = {.lex_state = 199}, + [5536] = {.lex_state = 242}, + [5537] = {.lex_state = 242}, + [5538] = {.lex_state = 242}, + [5539] = {.lex_state = 242}, + [5540] = {.lex_state = 242}, + [5541] = {.lex_state = 242}, + [5542] = {.lex_state = 199}, + [5543] = {.lex_state = 207}, + [5544] = {.lex_state = 202}, + [5545] = {.lex_state = 202}, + [5546] = {.lex_state = 207}, + [5547] = {.lex_state = 207}, + [5548] = {.lex_state = 207}, + [5549] = {.lex_state = 209}, + [5550] = {.lex_state = 207}, + [5551] = {.lex_state = 242}, + [5552] = {.lex_state = 209}, + [5553] = {.lex_state = 207}, + [5554] = {.lex_state = 207}, + [5555] = {.lex_state = 202}, + [5556] = {.lex_state = 207}, + [5557] = {.lex_state = 207}, + [5558] = {.lex_state = 207}, + [5559] = {.lex_state = 245}, + [5560] = {.lex_state = 199}, + [5561] = {.lex_state = 207}, + [5562] = {.lex_state = 245}, + [5563] = {.lex_state = 207}, + [5564] = {.lex_state = 202}, + [5565] = {.lex_state = 245}, + [5566] = {.lex_state = 207}, + [5567] = {.lex_state = 245}, + [5568] = {.lex_state = 207}, + [5569] = {.lex_state = 207}, + [5570] = {.lex_state = 207}, + [5571] = {.lex_state = 199}, + [5572] = {.lex_state = 207}, + [5573] = {.lex_state = 245}, + [5574] = {.lex_state = 242}, + [5575] = {.lex_state = 202}, + [5576] = {.lex_state = 207}, + [5577] = {.lex_state = 199}, + [5578] = {.lex_state = 242}, + [5579] = {.lex_state = 207}, + [5580] = {.lex_state = 242}, + [5581] = {.lex_state = 207}, + [5582] = {.lex_state = 207}, + [5583] = {.lex_state = 207}, + [5584] = {.lex_state = 207}, + [5585] = {.lex_state = 202}, + [5586] = {.lex_state = 207}, + [5587] = {.lex_state = 207}, + [5588] = {.lex_state = 245}, + [5589] = {.lex_state = 199}, + [5590] = {.lex_state = 207}, + [5591] = {.lex_state = 202}, + [5592] = {.lex_state = 207}, + [5593] = {.lex_state = 207}, + [5594] = {.lex_state = 202}, + [5595] = {.lex_state = 207}, + [5596] = {.lex_state = 241}, + [5597] = {.lex_state = 241}, + [5598] = {.lex_state = 245}, + [5599] = {.lex_state = 245}, + [5600] = {.lex_state = 241}, + [5601] = {.lex_state = 245}, + [5602] = {.lex_state = 245}, + [5603] = {.lex_state = 245}, + [5604] = {.lex_state = 245}, + [5605] = {.lex_state = 245}, + [5606] = {.lex_state = 245}, + [5607] = {.lex_state = 245}, + [5608] = {.lex_state = 241}, + [5609] = {.lex_state = 241}, + [5610] = {.lex_state = 241}, + [5611] = {.lex_state = 245}, + [5612] = {.lex_state = 245}, + [5613] = {.lex_state = 244}, + [5614] = {.lex_state = 245}, + [5615] = {.lex_state = 199}, + [5616] = {.lex_state = 199}, + [5617] = {.lex_state = 199}, + [5618] = {.lex_state = 199}, + [5619] = {.lex_state = 199}, + [5620] = {.lex_state = 241}, + [5621] = {.lex_state = 241}, + [5622] = {.lex_state = 241}, + [5623] = {.lex_state = 241}, + [5624] = {.lex_state = 199}, + [5625] = {.lex_state = 244}, + [5626] = {.lex_state = 241}, + [5627] = {.lex_state = 199}, + [5628] = {.lex_state = 199}, + [5629] = {.lex_state = 241}, + [5630] = {.lex_state = 241}, + [5631] = {.lex_state = 199}, + [5632] = {.lex_state = 199}, + [5633] = {.lex_state = 241}, + [5634] = {.lex_state = 199}, + [5635] = {.lex_state = 241}, + [5636] = {.lex_state = 199}, + [5637] = {.lex_state = 241}, + [5638] = {.lex_state = 241}, + [5639] = {.lex_state = 241}, + [5640] = {.lex_state = 241}, + [5641] = {.lex_state = 241}, + [5642] = {.lex_state = 241}, + [5643] = {.lex_state = 241}, + [5644] = {.lex_state = 241}, + [5645] = {.lex_state = 241}, + [5646] = {.lex_state = 241}, + [5647] = {.lex_state = 242}, + [5648] = {.lex_state = 241}, + [5649] = {.lex_state = 242}, + [5650] = {.lex_state = 241}, + [5651] = {.lex_state = 241}, + [5652] = {.lex_state = 241}, + [5653] = {.lex_state = 242}, + [5654] = {.lex_state = 241}, + [5655] = {.lex_state = 242}, + [5656] = {.lex_state = 241}, + [5657] = {.lex_state = 254}, + [5658] = {.lex_state = 241}, + [5659] = {.lex_state = 254}, + [5660] = {.lex_state = 254}, + [5661] = {.lex_state = 241}, + [5662] = {.lex_state = 199}, + [5663] = {.lex_state = 241}, + [5664] = {.lex_state = 241}, + [5665] = {.lex_state = 241}, + [5666] = {.lex_state = 241}, + [5667] = {.lex_state = 241}, + [5668] = {.lex_state = 254}, + [5669] = {.lex_state = 199}, + [5670] = {.lex_state = 241}, + [5671] = {.lex_state = 241}, + [5672] = {.lex_state = 254}, + [5673] = {.lex_state = 245}, + [5674] = {.lex_state = 245}, + [5675] = {.lex_state = 199}, + [5676] = {.lex_state = 241}, + [5677] = {.lex_state = 199}, + [5678] = {.lex_state = 199}, + [5679] = {.lex_state = 254}, + [5680] = {.lex_state = 241}, + [5681] = {.lex_state = 199}, + [5682] = {.lex_state = 241}, + [5683] = {.lex_state = 254}, + [5684] = {.lex_state = 199}, + [5685] = {.lex_state = 202}, + [5686] = {.lex_state = 202}, + [5687] = {.lex_state = 199}, + [5688] = {.lex_state = 202}, + [5689] = {.lex_state = 199}, + [5690] = {.lex_state = 202}, + [5691] = {.lex_state = 245}, + [5692] = {.lex_state = 245}, + [5693] = {.lex_state = 241}, + [5694] = {.lex_state = 241}, + [5695] = {.lex_state = 245}, + [5696] = {.lex_state = 202}, + [5697] = {.lex_state = 199}, + [5698] = {.lex_state = 202}, + [5699] = {.lex_state = 228}, + [5700] = {.lex_state = 199}, + [5701] = {.lex_state = 202}, + [5702] = {.lex_state = 202}, + [5703] = {.lex_state = 202}, + [5704] = {.lex_state = 199}, + [5705] = {.lex_state = 202}, + [5706] = {.lex_state = 202}, + [5707] = {.lex_state = 202}, + [5708] = {.lex_state = 241}, + [5709] = {.lex_state = 245}, + [5710] = {.lex_state = 254}, + [5711] = {.lex_state = 228}, + [5712] = {.lex_state = 254}, + [5713] = {.lex_state = 245}, + [5714] = {.lex_state = 241}, + [5715] = {.lex_state = 254}, + [5716] = {.lex_state = 254}, + [5717] = {.lex_state = 254}, + [5718] = {.lex_state = 241}, + [5719] = {.lex_state = 254}, + [5720] = {.lex_state = 244}, + [5721] = {.lex_state = 254}, + [5722] = {.lex_state = 254}, + [5723] = {.lex_state = 254}, + [5724] = {.lex_state = 241}, + [5725] = {.lex_state = 254}, + [5726] = {.lex_state = 254}, + [5727] = {.lex_state = 254}, + [5728] = {.lex_state = 254}, + [5729] = {.lex_state = 254}, + [5730] = {.lex_state = 241}, + [5731] = {.lex_state = 241}, + [5732] = {.lex_state = 241}, + [5733] = {.lex_state = 254}, + [5734] = {.lex_state = 254}, + [5735] = {.lex_state = 254}, + [5736] = {.lex_state = 245}, + [5737] = {.lex_state = 254}, + [5738] = {.lex_state = 254}, + [5739] = {.lex_state = 254}, + [5740] = {.lex_state = 254}, + [5741] = {.lex_state = 245}, + [5742] = {.lex_state = 241}, + [5743] = {.lex_state = 254}, + [5744] = {.lex_state = 254}, + [5745] = {.lex_state = 241}, + [5746] = {.lex_state = 241}, + [5747] = {.lex_state = 241}, + [5748] = {.lex_state = 254}, + [5749] = {.lex_state = 241}, + [5750] = {.lex_state = 241}, + [5751] = {.lex_state = 241}, + [5752] = {.lex_state = 198}, + [5753] = {.lex_state = 241}, + [5754] = {.lex_state = 254}, + [5755] = {.lex_state = 254}, + [5756] = {.lex_state = 254}, + [5757] = {.lex_state = 254}, + [5758] = {.lex_state = 254}, + [5759] = {.lex_state = 254}, + [5760] = {.lex_state = 254}, + [5761] = {.lex_state = 254}, + [5762] = {.lex_state = 228}, + [5763] = {.lex_state = 254}, + [5764] = {.lex_state = 254}, + [5765] = {.lex_state = 254}, + [5766] = {.lex_state = 228}, + [5767] = {.lex_state = 254}, + [5768] = {.lex_state = 254}, + [5769] = {.lex_state = 254}, + [5770] = {.lex_state = 241}, + [5771] = {.lex_state = 254}, + [5772] = {.lex_state = 254}, + [5773] = {.lex_state = 254}, + [5774] = {.lex_state = 199}, + [5775] = {.lex_state = 181}, + [5776] = {.lex_state = 199}, + [5777] = {.lex_state = 245}, + [5778] = {.lex_state = 199}, + [5779] = {.lex_state = 199}, + [5780] = {.lex_state = 199}, + [5781] = {.lex_state = 245}, + [5782] = {.lex_state = 199}, + [5783] = {.lex_state = 199}, + [5784] = {.lex_state = 199}, + [5785] = {.lex_state = 199}, + [5786] = {.lex_state = 199}, + [5787] = {.lex_state = 199}, + [5788] = {.lex_state = 245}, + [5789] = {.lex_state = 245}, + [5790] = {.lex_state = 245}, + [5791] = {.lex_state = 245}, + [5792] = {.lex_state = 199}, + [5793] = {.lex_state = 199}, + [5794] = {.lex_state = 245}, + [5795] = {.lex_state = 199}, + [5796] = {.lex_state = 199}, + [5797] = {.lex_state = 181}, + [5798] = {.lex_state = 199}, + [5799] = {.lex_state = 199}, + [5800] = {.lex_state = 199}, + [5801] = {.lex_state = 199}, + [5802] = {.lex_state = 199}, + [5803] = {.lex_state = 199}, + [5804] = {.lex_state = 228}, + [5805] = {.lex_state = 199}, + [5806] = {.lex_state = 199}, + [5807] = {.lex_state = 199}, + [5808] = {.lex_state = 199}, + [5809] = {.lex_state = 245}, + [5810] = {.lex_state = 245}, + [5811] = {.lex_state = 228}, + [5812] = {.lex_state = 199}, + [5813] = {.lex_state = 199}, + [5814] = {.lex_state = 241}, + [5815] = {.lex_state = 199}, + [5816] = {.lex_state = 245}, + [5817] = {.lex_state = 199}, + [5818] = {.lex_state = 245}, + [5819] = {.lex_state = 199}, + [5820] = {.lex_state = 199}, + [5821] = {.lex_state = 245}, + [5822] = {.lex_state = 245}, + [5823] = {.lex_state = 199}, + [5824] = {.lex_state = 245}, + [5825] = {.lex_state = 245}, + [5826] = {.lex_state = 245}, + [5827] = {.lex_state = 198}, + [5828] = {.lex_state = 199}, + [5829] = {.lex_state = 199}, + [5830] = {.lex_state = 245}, + [5831] = {.lex_state = 199}, + [5832] = {.lex_state = 199}, + [5833] = {.lex_state = 245}, + [5834] = {.lex_state = 199}, + [5835] = {.lex_state = 245}, + [5836] = {.lex_state = 199}, + [5837] = {.lex_state = 199}, + [5838] = {.lex_state = 199}, + [5839] = {.lex_state = 199}, + [5840] = {.lex_state = 199}, + [5841] = {.lex_state = 199}, + [5842] = {.lex_state = 102}, + [5843] = {.lex_state = 199}, + [5844] = {.lex_state = 245}, + [5845] = {.lex_state = 199}, + [5846] = {.lex_state = 199}, + [5847] = {.lex_state = 199}, + [5848] = {.lex_state = 199}, + [5849] = {.lex_state = 245}, + [5850] = {.lex_state = 245}, + [5851] = {.lex_state = 199}, + [5852] = {.lex_state = 199}, + [5853] = {.lex_state = 245}, + [5854] = {.lex_state = 199}, + [5855] = {.lex_state = 245}, + [5856] = {.lex_state = 199}, + [5857] = {.lex_state = 245}, + [5858] = {.lex_state = 198}, + [5859] = {.lex_state = 199}, + [5860] = {.lex_state = 228}, + [5861] = {.lex_state = 199}, + [5862] = {.lex_state = 199}, + [5863] = {.lex_state = 199}, + [5864] = {.lex_state = 245}, + [5865] = {.lex_state = 199}, + [5866] = {.lex_state = 199}, + [5867] = {.lex_state = 199}, + [5868] = {.lex_state = 199}, + [5869] = {.lex_state = 241}, + [5870] = {.lex_state = 198}, + [5871] = {.lex_state = 199}, + [5872] = {.lex_state = 199}, + [5873] = {.lex_state = 245}, + [5874] = {.lex_state = 199}, + [5875] = {.lex_state = 245}, + [5876] = {.lex_state = 199}, + [5877] = {.lex_state = 245}, + [5878] = {.lex_state = 199}, + [5879] = {.lex_state = 241}, + [5880] = {.lex_state = 199}, + [5881] = {.lex_state = 199}, + [5882] = {.lex_state = 199}, + [5883] = {.lex_state = 199}, + [5884] = {.lex_state = 245}, + [5885] = {.lex_state = 199}, + [5886] = {.lex_state = 199}, + [5887] = {.lex_state = 199}, + [5888] = {.lex_state = 241}, + [5889] = {.lex_state = 241}, + [5890] = {.lex_state = 245}, + [5891] = {.lex_state = 241}, + [5892] = {.lex_state = 199}, + [5893] = {.lex_state = 199}, + [5894] = {.lex_state = 245}, + [5895] = {.lex_state = 199}, + [5896] = {.lex_state = 199}, + [5897] = {.lex_state = 199}, + [5898] = {.lex_state = 199}, + [5899] = {.lex_state = 199}, + [5900] = {.lex_state = 199}, + [5901] = {.lex_state = 245}, + [5902] = {.lex_state = 241}, + [5903] = {.lex_state = 245}, + [5904] = {.lex_state = 199}, + [5905] = {.lex_state = 199}, + [5906] = {.lex_state = 199}, + [5907] = {.lex_state = 199}, + [5908] = {.lex_state = 199}, + [5909] = {.lex_state = 199}, + [5910] = {.lex_state = 199}, + [5911] = {.lex_state = 245}, + [5912] = {.lex_state = 228}, + [5913] = {.lex_state = 181}, + [5914] = {.lex_state = 228}, + [5915] = {.lex_state = 245}, + [5916] = {.lex_state = 245}, + [5917] = {.lex_state = 199}, + [5918] = {.lex_state = 199}, + [5919] = {.lex_state = 199}, + [5920] = {.lex_state = 181}, + [5921] = {.lex_state = 198}, + [5922] = {.lex_state = 249}, + [5923] = {.lex_state = 244}, + [5924] = {.lex_state = 181}, + [5925] = {.lex_state = 242}, + [5926] = {.lex_state = 181}, + [5927] = {.lex_state = 249}, + [5928] = {.lex_state = 241}, + [5929] = {.lex_state = 241}, + [5930] = {.lex_state = 198}, + [5931] = {.lex_state = 228}, + [5932] = {.lex_state = 241}, + [5933] = {.lex_state = 181}, + [5934] = {.lex_state = 245}, + [5935] = {.lex_state = 241}, + [5936] = {.lex_state = 198}, + [5937] = {.lex_state = 228}, + [5938] = {.lex_state = 181}, + [5939] = {.lex_state = 198}, + [5940] = {.lex_state = 207}, + [5941] = {.lex_state = 198}, + [5942] = {.lex_state = 228}, + [5943] = {.lex_state = 181}, + [5944] = {.lex_state = 242}, + [5945] = {.lex_state = 242}, + [5946] = {.lex_state = 181}, + [5947] = {.lex_state = 242}, + [5948] = {.lex_state = 228}, + [5949] = {.lex_state = 249}, + [5950] = {.lex_state = 249}, + [5951] = {.lex_state = 249}, + [5952] = {.lex_state = 181}, + [5953] = {.lex_state = 249}, + [5954] = {.lex_state = 242}, + [5955] = {.lex_state = 249}, + [5956] = {.lex_state = 198}, + [5957] = {.lex_state = 242}, + [5958] = {.lex_state = 249}, + [5959] = {.lex_state = 249}, + [5960] = {.lex_state = 181}, + [5961] = {.lex_state = 228}, + [5962] = {.lex_state = 245}, + [5963] = {.lex_state = 242}, + [5964] = {.lex_state = 198}, + [5965] = {.lex_state = 242}, + [5966] = {.lex_state = 228}, + [5967] = {.lex_state = 242}, + [5968] = {.lex_state = 242}, + [5969] = {.lex_state = 249}, + [5970] = {.lex_state = 181}, + [5971] = {.lex_state = 181}, + [5972] = {.lex_state = 181}, + [5973] = {.lex_state = 228}, + [5974] = {.lex_state = 249}, + [5975] = {.lex_state = 249}, + [5976] = {.lex_state = 181}, + [5977] = {.lex_state = 198}, + [5978] = {.lex_state = 249}, + [5979] = {.lex_state = 198}, + [5980] = {.lex_state = 181}, + [5981] = {.lex_state = 181}, + [5982] = {.lex_state = 181}, + [5983] = {.lex_state = 228}, + [5984] = {.lex_state = 198}, + [5985] = {.lex_state = 181}, + [5986] = {.lex_state = 228}, + [5987] = {.lex_state = 181}, + [5988] = {.lex_state = 181}, + [5989] = {.lex_state = 228}, + [5990] = {.lex_state = 181}, + [5991] = {.lex_state = 249}, + [5992] = {.lex_state = 228}, + [5993] = {.lex_state = 245}, + [5994] = {.lex_state = 249}, + [5995] = {.lex_state = 242}, + [5996] = {.lex_state = 181}, + [5997] = {.lex_state = 245}, + [5998] = {.lex_state = 249}, + [5999] = {.lex_state = 181}, + [6000] = {.lex_state = 198}, + [6001] = {.lex_state = 207}, + [6002] = {.lex_state = 242}, + [6003] = {.lex_state = 245}, + [6004] = {.lex_state = 249}, + [6005] = {.lex_state = 181}, + [6006] = {.lex_state = 249}, + [6007] = {.lex_state = 198}, + [6008] = {.lex_state = 245}, + [6009] = {.lex_state = 245}, + [6010] = {.lex_state = 181}, + [6011] = {.lex_state = 249}, + [6012] = {.lex_state = 198}, + [6013] = {.lex_state = 198}, + [6014] = {.lex_state = 181}, + [6015] = {.lex_state = 181}, + [6016] = {.lex_state = 181}, + [6017] = {.lex_state = 245}, + [6018] = {.lex_state = 181}, + [6019] = {.lex_state = 228}, + [6020] = {.lex_state = 198}, + [6021] = {.lex_state = 249}, + [6022] = {.lex_state = 241}, + [6023] = {.lex_state = 181}, + [6024] = {.lex_state = 245}, + [6025] = {.lex_state = 181}, + [6026] = {.lex_state = 245}, + [6027] = {.lex_state = 242}, + [6028] = {.lex_state = 245}, + [6029] = {.lex_state = 228}, + [6030] = {.lex_state = 241}, + [6031] = {.lex_state = 181}, + [6032] = {.lex_state = 245}, + [6033] = {.lex_state = 245}, + [6034] = {.lex_state = 245}, + [6035] = {.lex_state = 181}, + [6036] = {.lex_state = 245}, + [6037] = {.lex_state = 198}, + [6038] = {.lex_state = 228}, + [6039] = {.lex_state = 198}, + [6040] = {.lex_state = 181}, + [6041] = {.lex_state = 245}, + [6042] = {.lex_state = 249}, + [6043] = {.lex_state = 198}, + [6044] = {.lex_state = 249}, + [6045] = {.lex_state = 181}, + [6046] = {.lex_state = 242}, + [6047] = {.lex_state = 249}, + [6048] = {.lex_state = 244}, + [6049] = {.lex_state = 241}, + [6050] = {.lex_state = 241}, + [6051] = {.lex_state = 242}, + [6052] = {.lex_state = 249}, + [6053] = {.lex_state = 249}, + [6054] = {.lex_state = 228}, + [6055] = {.lex_state = 181}, + [6056] = {.lex_state = 249}, + [6057] = {.lex_state = 249}, + [6058] = {.lex_state = 181}, + [6059] = {.lex_state = 242}, + [6060] = {.lex_state = 249}, + [6061] = {.lex_state = 198}, + [6062] = {.lex_state = 245}, + [6063] = {.lex_state = 181}, + [6064] = {.lex_state = 242}, + [6065] = {.lex_state = 245}, + [6066] = {.lex_state = 181}, + [6067] = {.lex_state = 181}, + [6068] = {.lex_state = 245}, + [6069] = {.lex_state = 198}, + [6070] = {.lex_state = 245}, + [6071] = {.lex_state = 242}, + [6072] = {.lex_state = 198}, + [6073] = {.lex_state = 102}, + [6074] = {.lex_state = 102}, + [6075] = {.lex_state = 242}, + [6076] = {.lex_state = 244}, + [6077] = {.lex_state = 245}, + [6078] = {.lex_state = 245}, + [6079] = {.lex_state = 242}, + [6080] = {.lex_state = 102}, + [6081] = {.lex_state = 102}, + [6082] = {.lex_state = 228}, + [6083] = {.lex_state = 102}, + [6084] = {.lex_state = 102}, + [6085] = {.lex_state = 245}, + [6086] = {.lex_state = 245}, + [6087] = {.lex_state = 242}, + [6088] = {.lex_state = 102}, + [6089] = {.lex_state = 241}, + [6090] = {.lex_state = 245}, + [6091] = {.lex_state = 102}, + [6092] = {.lex_state = 228}, + [6093] = {.lex_state = 245}, + [6094] = {.lex_state = 245}, + [6095] = {.lex_state = 102}, + [6096] = {.lex_state = 245}, + [6097] = {.lex_state = 242}, + [6098] = {.lex_state = 102}, + [6099] = {.lex_state = 102}, + [6100] = {.lex_state = 245}, + [6101] = {.lex_state = 245}, + [6102] = {.lex_state = 242}, + [6103] = {.lex_state = 245}, + [6104] = {.lex_state = 102}, + [6105] = {.lex_state = 245}, + [6106] = {.lex_state = 198}, + [6107] = {.lex_state = 102}, + [6108] = {.lex_state = 102}, + [6109] = {.lex_state = 102}, + [6110] = {.lex_state = 242}, + [6111] = {.lex_state = 102}, + [6112] = {.lex_state = 245}, + [6113] = {.lex_state = 102}, + [6114] = {.lex_state = 242}, + [6115] = {.lex_state = 245}, + [6116] = {.lex_state = 242}, + [6117] = {.lex_state = 228}, + [6118] = {.lex_state = 245}, + [6119] = {.lex_state = 102}, + [6120] = {.lex_state = 228}, + [6121] = {.lex_state = 245}, + [6122] = {.lex_state = 102}, + [6123] = {.lex_state = 241}, + [6124] = {.lex_state = 245}, + [6125] = {.lex_state = 242}, + [6126] = {.lex_state = 102}, + [6127] = {.lex_state = 245}, + [6128] = {.lex_state = 102}, + [6129] = {.lex_state = 245}, + [6130] = {.lex_state = 102}, + [6131] = {.lex_state = 102}, + [6132] = {.lex_state = 245}, + [6133] = {.lex_state = 102}, + [6134] = {.lex_state = 228}, + [6135] = {.lex_state = 102}, + [6136] = {.lex_state = 253}, + [6137] = {.lex_state = 102}, + [6138] = {.lex_state = 102}, + [6139] = {.lex_state = 102}, + [6140] = {.lex_state = 102}, + [6141] = {.lex_state = 228}, + [6142] = {.lex_state = 102}, + [6143] = {.lex_state = 244}, + [6144] = {.lex_state = 102}, + [6145] = {.lex_state = 242}, + [6146] = {.lex_state = 242}, + [6147] = {.lex_state = 244}, + [6148] = {.lex_state = 241}, + [6149] = {.lex_state = 245}, + [6150] = {.lex_state = 242}, + [6151] = {.lex_state = 102}, + [6152] = {.lex_state = 102}, + [6153] = {.lex_state = 245}, + [6154] = {.lex_state = 228}, + [6155] = {.lex_state = 244}, + [6156] = {.lex_state = 245}, + [6157] = {.lex_state = 244}, + [6158] = {.lex_state = 244}, + [6159] = {.lex_state = 244}, + [6160] = {.lex_state = 244}, + [6161] = {.lex_state = 244}, + [6162] = {.lex_state = 244}, + [6163] = {.lex_state = 244}, + [6164] = {.lex_state = 244}, + [6165] = {.lex_state = 241}, + [6166] = {.lex_state = 244}, + [6167] = {.lex_state = 241}, + [6168] = {.lex_state = 244}, + [6169] = {.lex_state = 199}, + [6170] = {.lex_state = 199}, + [6171] = {.lex_state = 241}, + [6172] = {.lex_state = 244}, + [6173] = {.lex_state = 244}, + [6174] = {.lex_state = 247}, + [6175] = {.lex_state = 241}, + [6176] = {.lex_state = 241}, + [6177] = {.lex_state = 241}, + [6178] = {.lex_state = 241}, + [6179] = {.lex_state = 199}, + [6180] = {.lex_state = 244}, + [6181] = {.lex_state = 244}, + [6182] = {.lex_state = 241}, + [6183] = {.lex_state = 241}, + [6184] = {.lex_state = 241}, + [6185] = {.lex_state = 241}, + [6186] = {.lex_state = 241}, + [6187] = {.lex_state = 244}, + [6188] = {.lex_state = 244}, + [6189] = {.lex_state = 244}, + [6190] = {.lex_state = 244}, + [6191] = {.lex_state = 245}, + [6192] = {.lex_state = 244}, + [6193] = {.lex_state = 244}, + [6194] = {.lex_state = 244}, + [6195] = {.lex_state = 244}, + [6196] = {.lex_state = 247}, + [6197] = {.lex_state = 245}, + [6198] = {.lex_state = 199}, + [6199] = {.lex_state = 241}, + [6200] = {.lex_state = 241}, + [6201] = {.lex_state = 244}, + [6202] = {.lex_state = 245}, + [6203] = {.lex_state = 241}, + [6204] = {.lex_state = 244}, + [6205] = {.lex_state = 241}, + [6206] = {.lex_state = 244}, + [6207] = {.lex_state = 241}, + [6208] = {.lex_state = 245}, + [6209] = {.lex_state = 245}, + [6210] = {.lex_state = 244}, + [6211] = {.lex_state = 244}, + [6212] = {.lex_state = 244}, + [6213] = {.lex_state = 241}, + [6214] = {.lex_state = 241}, + [6215] = {.lex_state = 241}, + [6216] = {.lex_state = 228}, + [6217] = {.lex_state = 179}, + [6218] = {.lex_state = 241}, + [6219] = {.lex_state = 199}, + [6220] = {.lex_state = 241}, + [6221] = {.lex_state = 179}, + [6222] = {.lex_state = 245}, + [6223] = {.lex_state = 245}, + [6224] = {.lex_state = 237}, + [6225] = {.lex_state = 179}, + [6226] = {.lex_state = 245}, + [6227] = {.lex_state = 179}, + [6228] = {.lex_state = 179}, + [6229] = {.lex_state = 179}, + [6230] = {.lex_state = 199}, + [6231] = {.lex_state = 245}, + [6232] = {.lex_state = 241}, + [6233] = {.lex_state = 199}, + [6234] = {.lex_state = 199}, + [6235] = {.lex_state = 179}, + [6236] = {.lex_state = 199}, + [6237] = {.lex_state = 245}, + [6238] = {.lex_state = 179}, + [6239] = {.lex_state = 207}, + [6240] = {.lex_state = 179}, + [6241] = {.lex_state = 228}, + [6242] = {.lex_state = 199}, + [6243] = {.lex_state = 237}, + [6244] = {.lex_state = 199}, + [6245] = {.lex_state = 245}, + [6246] = {.lex_state = 207}, + [6247] = {.lex_state = 245}, + [6248] = {.lex_state = 207}, + [6249] = {.lex_state = 207}, + [6250] = {.lex_state = 199}, + [6251] = {.lex_state = 199}, + [6252] = {.lex_state = 199}, + [6253] = {.lex_state = 199}, + [6254] = {.lex_state = 244}, + [6255] = {.lex_state = 207}, + [6256] = {.lex_state = 244}, + [6257] = {.lex_state = 244}, + [6258] = {.lex_state = 199}, + [6259] = {.lex_state = 228}, + [6260] = {.lex_state = 207}, + [6261] = {.lex_state = 199}, + [6262] = {.lex_state = 199}, + [6263] = {.lex_state = 199}, + [6264] = {.lex_state = 244}, + [6265] = {.lex_state = 199}, + [6266] = {.lex_state = 244}, + [6267] = {.lex_state = 244}, + [6268] = {.lex_state = 244}, + [6269] = {.lex_state = 244}, + [6270] = {.lex_state = 199}, + [6271] = {.lex_state = 249}, + [6272] = {.lex_state = 207}, + [6273] = {.lex_state = 245}, + [6274] = {.lex_state = 199}, + [6275] = {.lex_state = 199}, + [6276] = {.lex_state = 249}, + [6277] = {.lex_state = 207}, + [6278] = {.lex_state = 199}, + [6279] = {.lex_state = 237}, + [6280] = {.lex_state = 244}, + [6281] = {.lex_state = 207}, + [6282] = {.lex_state = 199}, + [6283] = {.lex_state = 199}, + [6284] = {.lex_state = 207}, + [6285] = {.lex_state = 199}, + [6286] = {.lex_state = 237}, + [6287] = {.lex_state = 241}, + [6288] = {.lex_state = 209}, + [6289] = {.lex_state = 199}, + [6290] = {.lex_state = 228}, + [6291] = {.lex_state = 245}, + [6292] = {.lex_state = 199}, + [6293] = {.lex_state = 199}, + [6294] = {.lex_state = 199}, + [6295] = {.lex_state = 179}, + [6296] = {.lex_state = 199}, + [6297] = {.lex_state = 199}, + [6298] = {.lex_state = 199}, + [6299] = {.lex_state = 199}, + [6300] = {.lex_state = 245}, + [6301] = {.lex_state = 247}, + [6302] = {.lex_state = 203}, + [6303] = {.lex_state = 247}, + [6304] = {.lex_state = 247}, + [6305] = {.lex_state = 203}, + [6306] = {.lex_state = 247}, + [6307] = {.lex_state = 241}, + [6308] = {.lex_state = 245}, + [6309] = {.lex_state = 245}, + [6310] = {.lex_state = 245}, + [6311] = {.lex_state = 245}, + [6312] = {.lex_state = 245}, + [6313] = {.lex_state = 245}, + [6314] = {.lex_state = 245}, + [6315] = {.lex_state = 245}, + [6316] = {.lex_state = 245}, + [6317] = {.lex_state = 242}, + [6318] = {.lex_state = 199}, + [6319] = {.lex_state = 245}, + [6320] = {.lex_state = 245}, + [6321] = {.lex_state = 245}, + [6322] = {.lex_state = 245}, + [6323] = {.lex_state = 242}, + [6324] = {.lex_state = 242}, + [6325] = {.lex_state = 245}, + [6326] = {.lex_state = 245}, + [6327] = {.lex_state = 245}, + [6328] = {.lex_state = 245}, + [6329] = {.lex_state = 245}, + [6330] = {.lex_state = 245}, + [6331] = {.lex_state = 245}, + [6332] = {.lex_state = 245}, + [6333] = {.lex_state = 242}, + [6334] = {.lex_state = 199}, + [6335] = {.lex_state = 247}, + [6336] = {.lex_state = 199}, + [6337] = {.lex_state = 242}, + [6338] = {.lex_state = 199}, + [6339] = {.lex_state = 199}, + [6340] = {.lex_state = 245}, + [6341] = {.lex_state = 245}, + [6342] = {.lex_state = 245}, + [6343] = {.lex_state = 199}, + [6344] = {.lex_state = 245}, + [6345] = {.lex_state = 245}, + [6346] = {.lex_state = 242}, + [6347] = {.lex_state = 242}, + [6348] = {.lex_state = 242}, + [6349] = {.lex_state = 247}, + [6350] = {.lex_state = 247}, + [6351] = {.lex_state = 247}, + [6352] = {.lex_state = 247}, + [6353] = {.lex_state = 203}, + [6354] = {.lex_state = 247}, + [6355] = {.lex_state = 199}, + [6356] = {.lex_state = 203}, + [6357] = {.lex_state = 203}, + [6358] = {.lex_state = 247}, + [6359] = {.lex_state = 242}, + [6360] = {.lex_state = 242}, + [6361] = {.lex_state = 245}, + [6362] = {.lex_state = 245}, + [6363] = {.lex_state = 245}, + [6364] = {.lex_state = 179}, + [6365] = {.lex_state = 247}, + [6366] = {.lex_state = 203}, + [6367] = {.lex_state = 242}, + [6368] = {.lex_state = 247}, + [6369] = {.lex_state = 242}, + [6370] = {.lex_state = 247}, + [6371] = {.lex_state = 203}, + [6372] = {.lex_state = 199}, + [6373] = {.lex_state = 245}, + [6374] = {.lex_state = 245}, + [6375] = {.lex_state = 245}, + [6376] = {.lex_state = 245}, + [6377] = {.lex_state = 242}, + [6378] = {.lex_state = 203}, + [6379] = {.lex_state = 179}, + [6380] = {.lex_state = 199}, + [6381] = {.lex_state = 245}, + [6382] = {.lex_state = 203}, + [6383] = {.lex_state = 203}, + [6384] = {.lex_state = 242}, + [6385] = {.lex_state = 245}, + [6386] = {.lex_state = 247}, + [6387] = {.lex_state = 247}, + [6388] = {.lex_state = 247}, + [6389] = {.lex_state = 247}, + [6390] = {.lex_state = 247}, + [6391] = {.lex_state = 247}, + [6392] = {.lex_state = 245}, + [6393] = {.lex_state = 203}, + [6394] = {.lex_state = 245}, + [6395] = {.lex_state = 245}, + [6396] = {.lex_state = 245}, + [6397] = {.lex_state = 245}, + [6398] = {.lex_state = 245}, + [6399] = {.lex_state = 245}, + [6400] = {.lex_state = 242}, + [6401] = {.lex_state = 242}, + [6402] = {.lex_state = 242}, + [6403] = {.lex_state = 245}, + [6404] = {.lex_state = 247}, + [6405] = {.lex_state = 203}, + [6406] = {.lex_state = 241}, + [6407] = {.lex_state = 242}, + [6408] = {.lex_state = 245}, + [6409] = {.lex_state = 241}, + [6410] = {.lex_state = 241}, + [6411] = {.lex_state = 241}, + [6412] = {.lex_state = 241}, + [6413] = {.lex_state = 241}, + [6414] = {.lex_state = 241}, + [6415] = {.lex_state = 242}, + [6416] = {.lex_state = 244}, + [6417] = {.lex_state = 179}, + [6418] = {.lex_state = 241}, + [6419] = {.lex_state = 199}, + [6420] = {.lex_state = 179}, + [6421] = {.lex_state = 244}, + [6422] = {.lex_state = 179}, + [6423] = {.lex_state = 191}, + [6424] = {.lex_state = 191}, + [6425] = {.lex_state = 184}, + [6426] = {.lex_state = 219}, + [6427] = {.lex_state = 219}, + [6428] = {.lex_state = 219}, + [6429] = {.lex_state = 219}, + [6430] = {.lex_state = 245}, + [6431] = {.lex_state = 245}, + [6432] = {.lex_state = 219}, + [6433] = {.lex_state = 219}, + [6434] = {.lex_state = 219}, + [6435] = {.lex_state = 219}, + [6436] = {.lex_state = 191}, + [6437] = {.lex_state = 191}, + [6438] = {.lex_state = 191}, + [6439] = {.lex_state = 199}, + [6440] = {.lex_state = 199}, + [6441] = {.lex_state = 199}, + [6442] = {.lex_state = 199}, + [6443] = {.lex_state = 199}, + [6444] = {.lex_state = 199}, + [6445] = {.lex_state = 199}, + [6446] = {.lex_state = 199}, + [6447] = {.lex_state = 191}, + [6448] = {.lex_state = 200}, + [6449] = {.lex_state = 191}, + [6450] = {.lex_state = 179}, + [6451] = {.lex_state = 245}, + [6452] = {.lex_state = 191}, + [6453] = {.lex_state = 244}, + [6454] = {.lex_state = 200}, + [6455] = {.lex_state = 191}, + [6456] = {.lex_state = 199}, + [6457] = {.lex_state = 191}, + [6458] = {.lex_state = 199}, + [6459] = {.lex_state = 200}, + [6460] = {.lex_state = 241}, + [6461] = {.lex_state = 179}, + [6462] = {.lex_state = 199}, + [6463] = {.lex_state = 244}, + [6464] = {.lex_state = 179}, + [6465] = {.lex_state = 191}, + [6466] = {.lex_state = 245}, + [6467] = {.lex_state = 191}, + [6468] = {.lex_state = 191}, + [6469] = {.lex_state = 191}, + [6470] = {.lex_state = 241}, + [6471] = {.lex_state = 199}, + [6472] = {.lex_state = 200}, + [6473] = {.lex_state = 199}, + [6474] = {.lex_state = 200}, + [6475] = {.lex_state = 191}, + [6476] = {.lex_state = 191}, + [6477] = {.lex_state = 245}, + [6478] = {.lex_state = 179}, + [6479] = {.lex_state = 200}, + [6480] = {.lex_state = 245}, + [6481] = {.lex_state = 200}, + [6482] = {.lex_state = 200}, + [6483] = {.lex_state = 200}, + [6484] = {.lex_state = 200}, + [6485] = {.lex_state = 200}, + [6486] = {.lex_state = 200}, + [6487] = {.lex_state = 200}, + [6488] = {.lex_state = 245}, + [6489] = {.lex_state = 245}, + [6490] = {.lex_state = 199}, + [6491] = {.lex_state = 191}, + [6492] = {.lex_state = 191}, + [6493] = {.lex_state = 191}, + [6494] = {.lex_state = 191}, + [6495] = {.lex_state = 191}, + [6496] = {.lex_state = 245}, + [6497] = {.lex_state = 244}, + [6498] = {.lex_state = 200}, + [6499] = {.lex_state = 245}, + [6500] = {.lex_state = 244}, + [6501] = {.lex_state = 179}, + [6502] = {.lex_state = 200}, + [6503] = {.lex_state = 244}, + [6504] = {.lex_state = 199}, + [6505] = {.lex_state = 244}, + [6506] = {.lex_state = 179}, + [6507] = {.lex_state = 241}, + [6508] = {.lex_state = 241}, + [6509] = {.lex_state = 200}, + [6510] = {.lex_state = 179}, + [6511] = {.lex_state = 191}, + [6512] = {.lex_state = 219}, + [6513] = {.lex_state = 199}, + [6514] = {.lex_state = 199}, + [6515] = {.lex_state = 199}, + [6516] = {.lex_state = 199}, + [6517] = {.lex_state = 199}, + [6518] = {.lex_state = 199}, + [6519] = {.lex_state = 199}, + [6520] = {.lex_state = 199}, + [6521] = {.lex_state = 245}, + [6522] = {.lex_state = 199}, + [6523] = {.lex_state = 245}, + [6524] = {.lex_state = 241}, + [6525] = {.lex_state = 245}, + [6526] = {.lex_state = 241}, + [6527] = {.lex_state = 199}, + [6528] = {.lex_state = 199}, + [6529] = {.lex_state = 245}, + [6530] = {.lex_state = 199}, + [6531] = {.lex_state = 199}, + [6532] = {.lex_state = 199}, + [6533] = {.lex_state = 219}, + [6534] = {.lex_state = 219}, + [6535] = {.lex_state = 219}, + [6536] = {.lex_state = 219}, + [6537] = {.lex_state = 219}, + [6538] = {.lex_state = 219}, + [6539] = {.lex_state = 219}, + [6540] = {.lex_state = 219}, + [6541] = {.lex_state = 199}, + [6542] = {.lex_state = 219}, + [6543] = {.lex_state = 245}, + [6544] = {.lex_state = 219}, + [6545] = {.lex_state = 219}, + [6546] = {.lex_state = 219}, + [6547] = {.lex_state = 219}, + [6548] = {.lex_state = 219}, + [6549] = {.lex_state = 199}, + [6550] = {.lex_state = 219}, + [6551] = {.lex_state = 219}, + [6552] = {.lex_state = 219}, + [6553] = {.lex_state = 219}, + [6554] = {.lex_state = 199}, + [6555] = {.lex_state = 245}, + [6556] = {.lex_state = 245}, + [6557] = {.lex_state = 245}, + [6558] = {.lex_state = 245}, + [6559] = {.lex_state = 245}, + [6560] = {.lex_state = 199}, + [6561] = {.lex_state = 245}, + [6562] = {.lex_state = 199}, + [6563] = {.lex_state = 199}, + [6564] = {.lex_state = 237}, + [6565] = {.lex_state = 199}, + [6566] = {.lex_state = 245}, + [6567] = {.lex_state = 241}, + [6568] = {.lex_state = 241}, + [6569] = {.lex_state = 241}, + [6570] = {.lex_state = 241}, + [6571] = {.lex_state = 241}, + [6572] = {.lex_state = 241}, + [6573] = {.lex_state = 245}, + [6574] = {.lex_state = 241}, + [6575] = {.lex_state = 241}, + [6576] = {.lex_state = 199}, + [6577] = {.lex_state = 245}, + [6578] = {.lex_state = 237}, + [6579] = {.lex_state = 199}, + [6580] = {.lex_state = 199}, + [6581] = {.lex_state = 237}, + [6582] = {.lex_state = 208}, + [6583] = {.lex_state = 245}, + [6584] = {.lex_state = 241}, + [6585] = {.lex_state = 241}, + [6586] = {.lex_state = 241}, + [6587] = {.lex_state = 241}, + [6588] = {.lex_state = 241}, + [6589] = {.lex_state = 241}, + [6590] = {.lex_state = 241}, + [6591] = {.lex_state = 241}, + [6592] = {.lex_state = 245}, + [6593] = {.lex_state = 245}, + [6594] = {.lex_state = 199}, + [6595] = {.lex_state = 199}, + [6596] = {.lex_state = 245}, + [6597] = {.lex_state = 245}, + [6598] = {.lex_state = 199}, + [6599] = {.lex_state = 199}, + [6600] = {.lex_state = 199}, + [6601] = {.lex_state = 237}, + [6602] = {.lex_state = 219}, + [6603] = {.lex_state = 197}, + [6604] = {.lex_state = 245}, + [6605] = {.lex_state = 199}, + [6606] = {.lex_state = 197}, + [6607] = {.lex_state = 245}, + [6608] = {.lex_state = 245}, + [6609] = {.lex_state = 197}, + [6610] = {.lex_state = 179}, + [6611] = {.lex_state = 202}, + [6612] = {.lex_state = 202}, + [6613] = {.lex_state = 202}, + [6614] = {.lex_state = 202}, + [6615] = {.lex_state = 199}, + [6616] = {.lex_state = 202}, + [6617] = {.lex_state = 202}, + [6618] = {.lex_state = 202}, + [6619] = {.lex_state = 202}, + [6620] = {.lex_state = 245}, + [6621] = {.lex_state = 245}, + [6622] = {.lex_state = 197}, + [6623] = {.lex_state = 197}, + [6624] = {.lex_state = 245}, + [6625] = {.lex_state = 197}, + [6626] = {.lex_state = 241}, + [6627] = {.lex_state = 197}, + [6628] = {.lex_state = 179}, + [6629] = {.lex_state = 241}, + [6630] = {.lex_state = 245}, + [6631] = {.lex_state = 199}, + [6632] = {.lex_state = 245}, + [6633] = {.lex_state = 197}, + [6634] = {.lex_state = 245}, + [6635] = {.lex_state = 244}, + [6636] = {.lex_state = 244}, + [6637] = {.lex_state = 244}, + [6638] = {.lex_state = 244}, + [6639] = {.lex_state = 197}, + [6640] = {.lex_state = 244}, + [6641] = {.lex_state = 244}, + [6642] = {.lex_state = 244}, + [6643] = {.lex_state = 245}, + [6644] = {.lex_state = 245}, + [6645] = {.lex_state = 197}, + [6646] = {.lex_state = 244}, + [6647] = {.lex_state = 245}, + [6648] = {.lex_state = 179}, + [6649] = {.lex_state = 245}, + [6650] = {.lex_state = 199}, + [6651] = {.lex_state = 199}, + [6652] = {.lex_state = 245}, + [6653] = {.lex_state = 197}, + [6654] = {.lex_state = 197}, + [6655] = {.lex_state = 241}, + [6656] = {.lex_state = 197}, + [6657] = {.lex_state = 245}, + [6658] = {.lex_state = 245}, + [6659] = {.lex_state = 241}, + [6660] = {.lex_state = 199}, + [6661] = {.lex_state = 199}, + [6662] = {.lex_state = 197}, + [6663] = {.lex_state = 197}, + [6664] = {.lex_state = 245}, + [6665] = {.lex_state = 245}, + [6666] = {.lex_state = 241}, + [6667] = {.lex_state = 197}, + [6668] = {.lex_state = 197}, + [6669] = {.lex_state = 199}, + [6670] = {.lex_state = 245}, + [6671] = {.lex_state = 199}, + [6672] = {.lex_state = 197}, + [6673] = {.lex_state = 197}, + [6674] = {.lex_state = 245}, + [6675] = {.lex_state = 197}, + [6676] = {.lex_state = 245}, + [6677] = {.lex_state = 199}, + [6678] = {.lex_state = 199}, + [6679] = {.lex_state = 199}, + [6680] = {.lex_state = 203}, + [6681] = {.lex_state = 199}, + [6682] = {.lex_state = 203}, + [6683] = {.lex_state = 203}, + [6684] = {.lex_state = 199}, + [6685] = {.lex_state = 207}, + [6686] = {.lex_state = 199}, + [6687] = {.lex_state = 199}, + [6688] = {.lex_state = 245}, + [6689] = {.lex_state = 245}, + [6690] = {.lex_state = 199}, + [6691] = {.lex_state = 199}, + [6692] = {.lex_state = 199}, + [6693] = {.lex_state = 199}, + [6694] = {.lex_state = 199}, + [6695] = {.lex_state = 199}, + [6696] = {.lex_state = 203}, + [6697] = {.lex_state = 199}, + [6698] = {.lex_state = 199}, + [6699] = {.lex_state = 199}, + [6700] = {.lex_state = 203}, + [6701] = {.lex_state = 199}, + [6702] = {.lex_state = 203}, + [6703] = {.lex_state = 203}, + [6704] = {.lex_state = 199}, + [6705] = {.lex_state = 199}, + [6706] = {.lex_state = 199}, + [6707] = {.lex_state = 199}, + [6708] = {.lex_state = 241}, + [6709] = {.lex_state = 0}, + [6710] = {.lex_state = 245}, + [6711] = {.lex_state = 241}, + [6712] = {.lex_state = 245}, + [6713] = {.lex_state = 199}, + [6714] = {.lex_state = 245}, + [6715] = {.lex_state = 199}, + [6716] = {.lex_state = 199}, + [6717] = {.lex_state = 245}, + [6718] = {.lex_state = 199}, + [6719] = {.lex_state = 199}, + [6720] = {.lex_state = 245}, + [6721] = {.lex_state = 245}, + [6722] = {.lex_state = 199}, + [6723] = {.lex_state = 245}, + [6724] = {.lex_state = 245}, + [6725] = {.lex_state = 199}, + [6726] = {.lex_state = 203}, + [6727] = {.lex_state = 199}, + [6728] = {.lex_state = 199}, + [6729] = {.lex_state = 219}, + [6730] = {.lex_state = 199}, + [6731] = {.lex_state = 199}, + [6732] = {.lex_state = 200}, + [6733] = {.lex_state = 199}, + [6734] = {.lex_state = 199}, + [6735] = {.lex_state = 199}, + [6736] = {.lex_state = 199}, + [6737] = {.lex_state = 219}, + [6738] = {.lex_state = 199}, + [6739] = {.lex_state = 199}, + [6740] = {.lex_state = 199}, + [6741] = {.lex_state = 199}, + [6742] = {.lex_state = 245}, + [6743] = {.lex_state = 245}, + [6744] = {.lex_state = 199}, + [6745] = {.lex_state = 199}, + [6746] = {.lex_state = 199}, + [6747] = {.lex_state = 199}, + [6748] = {.lex_state = 199}, + [6749] = {.lex_state = 199}, + [6750] = {.lex_state = 244}, + [6751] = {.lex_state = 200}, + [6752] = {.lex_state = 244}, + [6753] = {.lex_state = 200}, + [6754] = {.lex_state = 199}, + [6755] = {.lex_state = 199}, + [6756] = {.lex_state = 199}, + [6757] = {.lex_state = 200}, + [6758] = {.lex_state = 244}, + [6759] = {.lex_state = 200}, + [6760] = {.lex_state = 200}, + [6761] = {.lex_state = 199}, + [6762] = {.lex_state = 199}, + [6763] = {.lex_state = 199}, + [6764] = {.lex_state = 199}, + [6765] = {.lex_state = 199}, + [6766] = {.lex_state = 202}, + [6767] = {.lex_state = 199}, + [6768] = {.lex_state = 199}, + [6769] = {.lex_state = 199}, + [6770] = {.lex_state = 244}, + [6771] = {.lex_state = 199}, + [6772] = {.lex_state = 199}, + [6773] = {.lex_state = 199}, + [6774] = {.lex_state = 202}, + [6775] = {.lex_state = 200}, + [6776] = {.lex_state = 202}, + [6777] = {.lex_state = 244}, + [6778] = {.lex_state = 245}, + [6779] = {.lex_state = 202}, + [6780] = {.lex_state = 202}, + [6781] = {.lex_state = 202}, + [6782] = {.lex_state = 199}, + [6783] = {.lex_state = 200}, + [6784] = {.lex_state = 202}, + [6785] = {.lex_state = 199}, + [6786] = {.lex_state = 200}, + [6787] = {.lex_state = 200}, + [6788] = {.lex_state = 199}, + [6789] = {.lex_state = 202}, + [6790] = {.lex_state = 199}, + [6791] = {.lex_state = 199}, + [6792] = {.lex_state = 199}, + [6793] = {.lex_state = 199}, + [6794] = {.lex_state = 244}, + [6795] = {.lex_state = 199}, + [6796] = {.lex_state = 199}, + [6797] = {.lex_state = 199}, + [6798] = {.lex_state = 219}, + [6799] = {.lex_state = 202}, + [6800] = {.lex_state = 219}, + [6801] = {.lex_state = 199}, + [6802] = {.lex_state = 199}, + [6803] = {.lex_state = 199}, + [6804] = {.lex_state = 199}, + [6805] = {.lex_state = 199}, + [6806] = {.lex_state = 219}, + [6807] = {.lex_state = 199}, + [6808] = {.lex_state = 200}, + [6809] = {.lex_state = 197}, + [6810] = {.lex_state = 219}, + [6811] = {.lex_state = 245}, + [6812] = {.lex_state = 245}, + [6813] = {.lex_state = 245}, + [6814] = {.lex_state = 199}, + [6815] = {.lex_state = 202}, + [6816] = {.lex_state = 202}, + [6817] = {.lex_state = 199}, + [6818] = {.lex_state = 200}, + [6819] = {.lex_state = 202}, + [6820] = {.lex_state = 199}, + [6821] = {.lex_state = 244}, + [6822] = {.lex_state = 199}, + [6823] = {.lex_state = 245}, + [6824] = {.lex_state = 245}, + [6825] = {.lex_state = 245}, + [6826] = {.lex_state = 219}, + [6827] = {.lex_state = 199}, + [6828] = {.lex_state = 199}, + [6829] = {.lex_state = 199}, + [6830] = {.lex_state = 199}, + [6831] = {.lex_state = 199}, + [6832] = {.lex_state = 245}, + [6833] = {.lex_state = 199}, + [6834] = {.lex_state = 200}, + [6835] = {.lex_state = 200}, + [6836] = {.lex_state = 244}, + [6837] = {.lex_state = 200}, + [6838] = {.lex_state = 200}, + [6839] = {.lex_state = 199}, + [6840] = {.lex_state = 199}, + [6841] = {.lex_state = 219}, + [6842] = {.lex_state = 199}, + [6843] = {.lex_state = 199}, + [6844] = {.lex_state = 244}, + [6845] = {.lex_state = 228}, + [6846] = {.lex_state = 199}, + [6847] = {.lex_state = 228}, + [6848] = {.lex_state = 200}, + [6849] = {.lex_state = 228}, + [6850] = {.lex_state = 199}, + [6851] = {.lex_state = 228}, + [6852] = {.lex_state = 199}, + [6853] = {.lex_state = 228}, + [6854] = {.lex_state = 344}, + [6855] = {.lex_state = 228}, + [6856] = {.lex_state = 241}, + [6857] = {.lex_state = 241}, + [6858] = {.lex_state = 241}, + [6859] = {.lex_state = 241}, + [6860] = {.lex_state = 241}, + [6861] = {.lex_state = 241}, + [6862] = {.lex_state = 241}, + [6863] = {.lex_state = 241}, + [6864] = {.lex_state = 228}, + [6865] = {.lex_state = 244}, + [6866] = {.lex_state = 244}, + [6867] = {.lex_state = 244}, + [6868] = {.lex_state = 228}, + [6869] = {.lex_state = 199}, + [6870] = {.lex_state = 199}, + [6871] = {.lex_state = 199}, + [6872] = {.lex_state = 199}, + [6873] = {.lex_state = 219}, + [6874] = {.lex_state = 184}, + [6875] = {.lex_state = 219}, + [6876] = {.lex_state = 219}, + [6877] = {.lex_state = 219}, + [6878] = {.lex_state = 219}, + [6879] = {.lex_state = 219}, + [6880] = {.lex_state = 219}, + [6881] = {.lex_state = 219}, + [6882] = {.lex_state = 228}, + [6883] = {.lex_state = 228}, + [6884] = {.lex_state = 199}, + [6885] = {.lex_state = 184}, + [6886] = {.lex_state = 228}, + [6887] = {.lex_state = 228}, + [6888] = {.lex_state = 199}, + [6889] = {.lex_state = 199}, + [6890] = {.lex_state = 219}, + [6891] = {.lex_state = 228}, + [6892] = {.lex_state = 199}, + [6893] = {.lex_state = 199}, + [6894] = {.lex_state = 199}, + [6895] = {.lex_state = 199}, + [6896] = {.lex_state = 199}, + [6897] = {.lex_state = 199}, + [6898] = {.lex_state = 199}, + [6899] = {.lex_state = 199}, + [6900] = {.lex_state = 199}, + [6901] = {.lex_state = 199}, + [6902] = {.lex_state = 199}, + [6903] = {.lex_state = 199}, + [6904] = {.lex_state = 199}, + [6905] = {.lex_state = 199}, + [6906] = {.lex_state = 199}, + [6907] = {.lex_state = 199}, + [6908] = {.lex_state = 238}, + [6909] = {.lex_state = 199}, + [6910] = {.lex_state = 199}, + [6911] = {.lex_state = 199}, + [6912] = {.lex_state = 199}, + [6913] = {.lex_state = 238}, + [6914] = {.lex_state = 238}, + [6915] = {.lex_state = 199}, + [6916] = {.lex_state = 207}, + [6917] = {.lex_state = 199}, + [6918] = {.lex_state = 199}, + [6919] = {.lex_state = 199}, + [6920] = {.lex_state = 238}, + [6921] = {.lex_state = 199}, + [6922] = {.lex_state = 199}, + [6923] = {.lex_state = 199}, + [6924] = {.lex_state = 199}, + [6925] = {.lex_state = 199}, + [6926] = {.lex_state = 199}, + [6927] = {.lex_state = 199}, + [6928] = {.lex_state = 344}, + [6929] = {.lex_state = 344}, + [6930] = {.lex_state = 344}, + [6931] = {.lex_state = 344}, + [6932] = {.lex_state = 344}, + [6933] = {.lex_state = 199}, + [6934] = {.lex_state = 202}, + [6935] = {.lex_state = 202}, + [6936] = {.lex_state = 202}, + [6937] = {.lex_state = 202}, + [6938] = {.lex_state = 202}, + [6939] = {.lex_state = 202}, + [6940] = {.lex_state = 202}, + [6941] = {.lex_state = 202}, + [6942] = {.lex_state = 199}, + [6943] = {.lex_state = 207}, + [6944] = {.lex_state = 199}, + [6945] = {.lex_state = 199}, + [6946] = {.lex_state = 199}, + [6947] = {.lex_state = 199}, + [6948] = {.lex_state = 344}, + [6949] = {.lex_state = 200}, + [6950] = {.lex_state = 203}, + [6951] = {.lex_state = 344}, + [6952] = {.lex_state = 203}, + [6953] = {.lex_state = 203}, + [6954] = {.lex_state = 202}, + [6955] = {.lex_state = 344}, + [6956] = {.lex_state = 344}, + [6957] = {.lex_state = 344}, + [6958] = {.lex_state = 344}, + [6959] = {.lex_state = 344}, + [6960] = {.lex_state = 202}, + [6961] = {.lex_state = 202}, + [6962] = {.lex_state = 203}, + [6963] = {.lex_state = 241}, + [6964] = {.lex_state = 228}, + [6965] = {.lex_state = 244}, + [6966] = {.lex_state = 179}, + [6967] = {.lex_state = 244}, + [6968] = {.lex_state = 203}, + [6969] = {.lex_state = 203}, + [6970] = {.lex_state = 344}, + [6971] = {.lex_state = 344}, + [6972] = {.lex_state = 344}, + [6973] = {.lex_state = 244}, + [6974] = {.lex_state = 203}, + [6975] = {.lex_state = 344}, + [6976] = {.lex_state = 200}, + [6977] = {.lex_state = 344}, + [6978] = {.lex_state = 199}, + [6979] = {.lex_state = 344}, + [6980] = {.lex_state = 344}, + [6981] = {.lex_state = 344}, + [6982] = {.lex_state = 199}, + [6983] = {.lex_state = 219}, + [6984] = {.lex_state = 344}, + [6985] = {.lex_state = 203}, + [6986] = {.lex_state = 344}, + [6987] = {.lex_state = 200}, + [6988] = {.lex_state = 244}, + [6989] = {.lex_state = 344}, + [6990] = {.lex_state = 219}, + [6991] = {.lex_state = 344}, + [6992] = {.lex_state = 344}, + [6993] = {.lex_state = 202}, + [6994] = {.lex_state = 344}, + [6995] = {.lex_state = 344}, + [6996] = {.lex_state = 219}, + [6997] = {.lex_state = 202}, + [6998] = {.lex_state = 219}, + [6999] = {.lex_state = 344}, + [7000] = {.lex_state = 344}, + [7001] = {.lex_state = 344}, + [7002] = {.lex_state = 202}, + [7003] = {.lex_state = 228}, + [7004] = {.lex_state = 244}, + [7005] = {.lex_state = 200}, + [7006] = {.lex_state = 241}, + [7007] = {.lex_state = 179}, + [7008] = {.lex_state = 241}, + [7009] = {.lex_state = 199}, + [7010] = {.lex_state = 199}, + [7011] = {.lex_state = 207}, + [7012] = {.lex_state = 344}, + [7013] = {.lex_state = 344}, + [7014] = {.lex_state = 179}, + [7015] = {.lex_state = 344}, + [7016] = {.lex_state = 199}, + [7017] = {.lex_state = 241}, + [7018] = {.lex_state = 199}, + [7019] = {.lex_state = 179}, + [7020] = {.lex_state = 179}, + [7021] = {.lex_state = 179}, + [7022] = {.lex_state = 179}, + [7023] = {.lex_state = 179}, + [7024] = {.lex_state = 179}, + [7025] = {.lex_state = 199}, + [7026] = {.lex_state = 179}, + [7027] = {.lex_state = 241}, + [7028] = {.lex_state = 241}, + [7029] = {.lex_state = 179}, + [7030] = {.lex_state = 244}, + [7031] = {.lex_state = 344}, + [7032] = {.lex_state = 179}, + [7033] = {.lex_state = 344}, + [7034] = {.lex_state = 344}, + [7035] = {.lex_state = 199}, + [7036] = {.lex_state = 179}, + [7037] = {.lex_state = 207}, + [7038] = {.lex_state = 199}, + [7039] = {.lex_state = 199}, + [7040] = {.lex_state = 199}, + [7041] = {.lex_state = 179}, + [7042] = {.lex_state = 179}, + [7043] = {.lex_state = 199}, + [7044] = {.lex_state = 344}, + [7045] = {.lex_state = 199}, + [7046] = {.lex_state = 199}, + [7047] = {.lex_state = 179}, + [7048] = {.lex_state = 179}, + [7049] = {.lex_state = 244}, + [7050] = {.lex_state = 199}, + [7051] = {.lex_state = 344}, + [7052] = {.lex_state = 199}, + [7053] = {.lex_state = 241}, + [7054] = {.lex_state = 344}, + [7055] = {.lex_state = 179}, + [7056] = {.lex_state = 179}, + [7057] = {.lex_state = 344}, + [7058] = {.lex_state = 202}, + [7059] = {.lex_state = 199}, + [7060] = {.lex_state = 344}, + [7061] = {.lex_state = 202}, + [7062] = {.lex_state = 179}, + [7063] = {.lex_state = 199}, + [7064] = {.lex_state = 179}, + [7065] = {.lex_state = 179}, + [7066] = {.lex_state = 202}, + [7067] = {.lex_state = 199}, + [7068] = {.lex_state = 344}, + [7069] = {.lex_state = 199}, + [7070] = {.lex_state = 199}, + [7071] = {.lex_state = 199}, + [7072] = {.lex_state = 199}, + [7073] = {.lex_state = 199}, + [7074] = {.lex_state = 199}, + [7075] = {.lex_state = 199}, + [7076] = {.lex_state = 199}, + [7077] = {.lex_state = 199}, + [7078] = {.lex_state = 207}, + [7079] = {.lex_state = 202}, + [7080] = {.lex_state = 179}, + [7081] = {.lex_state = 202}, + [7082] = {.lex_state = 179}, + [7083] = {.lex_state = 179}, + [7084] = {.lex_state = 199}, + [7085] = {.lex_state = 241}, + [7086] = {.lex_state = 241}, + [7087] = {.lex_state = 199}, + [7088] = {.lex_state = 197}, + [7089] = {.lex_state = 199}, + [7090] = {.lex_state = 199}, + [7091] = {.lex_state = 197}, + [7092] = {.lex_state = 241}, + [7093] = {.lex_state = 241}, + [7094] = {.lex_state = 241}, + [7095] = {.lex_state = 241}, + [7096] = {.lex_state = 197}, + [7097] = {.lex_state = 197}, + [7098] = {.lex_state = 197}, + [7099] = {.lex_state = 241}, + [7100] = {.lex_state = 199}, + [7101] = {.lex_state = 197}, + [7102] = {.lex_state = 344}, + [7103] = {.lex_state = 241}, + [7104] = {.lex_state = 197}, + [7105] = {.lex_state = 199}, + [7106] = {.lex_state = 241}, + [7107] = {.lex_state = 199}, + [7108] = {.lex_state = 344}, + [7109] = {.lex_state = 199}, + [7110] = {.lex_state = 344}, + [7111] = {.lex_state = 202}, + [7112] = {.lex_state = 241}, + [7113] = {.lex_state = 0}, + [7114] = {.lex_state = 241}, + [7115] = {.lex_state = 197}, + [7116] = {.lex_state = 199}, + [7117] = {.lex_state = 0}, + [7118] = {.lex_state = 241}, + [7119] = {.lex_state = 199}, + [7120] = {.lex_state = 241}, + [7121] = {.lex_state = 197}, + [7122] = {.lex_state = 199}, + [7123] = {.lex_state = 199}, + [7124] = {.lex_state = 241}, + [7125] = {.lex_state = 199}, + [7126] = {.lex_state = 197}, + [7127] = {.lex_state = 199}, + [7128] = {.lex_state = 344}, + [7129] = {.lex_state = 199}, + [7130] = {.lex_state = 344}, + [7131] = {.lex_state = 199}, + [7132] = {.lex_state = 199}, + [7133] = {.lex_state = 199}, + [7134] = {.lex_state = 199}, + [7135] = {.lex_state = 199}, + [7136] = {.lex_state = 199}, + [7137] = {.lex_state = 197}, + [7138] = {.lex_state = 199}, + [7139] = {.lex_state = 199}, + [7140] = {.lex_state = 199}, + [7141] = {.lex_state = 199}, + [7142] = {.lex_state = 241}, + [7143] = {.lex_state = 199}, + [7144] = {.lex_state = 199}, + [7145] = {.lex_state = 344}, + [7146] = {.lex_state = 199}, + [7147] = {.lex_state = 199}, + [7148] = {.lex_state = 199}, + [7149] = {.lex_state = 199}, + [7150] = {.lex_state = 344}, + [7151] = {.lex_state = 199}, + [7152] = {.lex_state = 344}, + [7153] = {.lex_state = 199}, + [7154] = {.lex_state = 201}, + [7155] = {.lex_state = 199}, + [7156] = {.lex_state = 201}, + [7157] = {.lex_state = 199}, + [7158] = {.lex_state = 179}, + [7159] = {.lex_state = 199}, + [7160] = {.lex_state = 199}, + [7161] = {.lex_state = 201}, + [7162] = {.lex_state = 199}, + [7163] = {.lex_state = 199}, + [7164] = {.lex_state = 199}, + [7165] = {.lex_state = 199}, + [7166] = {.lex_state = 199}, + [7167] = {.lex_state = 179}, + [7168] = {.lex_state = 199}, + [7169] = {.lex_state = 199}, + [7170] = {.lex_state = 199}, + [7171] = {.lex_state = 199}, + [7172] = {.lex_state = 199}, + [7173] = {.lex_state = 199}, + [7174] = {.lex_state = 199}, + [7175] = {.lex_state = 199}, + [7176] = {.lex_state = 199}, + [7177] = {.lex_state = 199}, + [7178] = {.lex_state = 199}, + [7179] = {.lex_state = 199}, + [7180] = {.lex_state = 199}, + [7181] = {.lex_state = 199}, + [7182] = {.lex_state = 201}, + [7183] = {.lex_state = 241}, + [7184] = {.lex_state = 201}, + [7185] = {.lex_state = 199}, + [7186] = {.lex_state = 199}, + [7187] = {.lex_state = 199}, + [7188] = {.lex_state = 201}, + [7189] = {.lex_state = 179}, + [7190] = {.lex_state = 199}, + [7191] = {.lex_state = 199}, + [7192] = {.lex_state = 199}, + [7193] = {.lex_state = 199}, + [7194] = {.lex_state = 199}, + [7195] = {.lex_state = 199}, + [7196] = {.lex_state = 174}, + [7197] = {.lex_state = 199}, + [7198] = {.lex_state = 199}, + [7199] = {.lex_state = 199}, + [7200] = {.lex_state = 199}, + [7201] = {.lex_state = 199}, + [7202] = {.lex_state = 199}, + [7203] = {.lex_state = 199}, + [7204] = {.lex_state = 201}, + [7205] = {.lex_state = 199}, + [7206] = {.lex_state = 199}, + [7207] = {.lex_state = 199}, + [7208] = {.lex_state = 199}, + [7209] = {.lex_state = 179}, + [7210] = {.lex_state = 199}, + [7211] = {.lex_state = 199}, + [7212] = {.lex_state = 201}, + [7213] = {.lex_state = 199}, + [7214] = {.lex_state = 241}, + [7215] = {.lex_state = 344}, + [7216] = {.lex_state = 179}, + [7217] = {.lex_state = 241}, + [7218] = {.lex_state = 202}, + [7219] = {.lex_state = 111}, + [7220] = {.lex_state = 202}, + [7221] = {.lex_state = 202}, + [7222] = {.lex_state = 202}, + [7223] = {.lex_state = 179}, + [7224] = {.lex_state = 241}, + [7225] = {.lex_state = 111}, + [7226] = {.lex_state = 179}, + [7227] = {.lex_state = 111}, + [7228] = {.lex_state = 174}, + [7229] = {.lex_state = 111}, + [7230] = {.lex_state = 113}, + [7231] = {.lex_state = 202}, + [7232] = {.lex_state = 113}, + [7233] = {.lex_state = 202}, + [7234] = {.lex_state = 179}, + [7235] = {.lex_state = 113}, + [7236] = {.lex_state = 202}, + [7237] = {.lex_state = 202}, + [7238] = {.lex_state = 179}, + [7239] = {.lex_state = 113}, + [7240] = {.lex_state = 202}, + [7241] = {.lex_state = 113}, + [7242] = {.lex_state = 202}, + [7243] = {.lex_state = 344}, + [7244] = {.lex_state = 113}, + [7245] = {.lex_state = 114}, + [7246] = {.lex_state = 344}, + [7247] = {.lex_state = 0}, + [7248] = {.lex_state = 202}, + [7249] = {.lex_state = 202}, + [7250] = {.lex_state = 344}, + [7251] = {.lex_state = 113}, + [7252] = {.lex_state = 344}, + [7253] = {.lex_state = 113}, + [7254] = {.lex_state = 202}, + [7255] = {.lex_state = 199}, + [7256] = {.lex_state = 202}, + [7257] = {.lex_state = 344}, + [7258] = {.lex_state = 202}, + [7259] = {.lex_state = 202}, + [7260] = {.lex_state = 113}, + [7261] = {.lex_state = 344}, + [7262] = {.lex_state = 241}, + [7263] = {.lex_state = 0}, + [7264] = {.lex_state = 113}, + [7265] = {.lex_state = 179}, + [7266] = {.lex_state = 202}, + [7267] = {.lex_state = 113}, + [7268] = {.lex_state = 241}, + [7269] = {.lex_state = 202}, + [7270] = {.lex_state = 202}, + [7271] = {.lex_state = 202}, + [7272] = {.lex_state = 202}, + [7273] = {.lex_state = 202}, + [7274] = {.lex_state = 111}, + [7275] = {.lex_state = 113}, + [7276] = {.lex_state = 202}, + [7277] = {.lex_state = 202}, + [7278] = {.lex_state = 344}, + [7279] = {.lex_state = 202}, + [7280] = {.lex_state = 202}, + [7281] = {.lex_state = 179}, + [7282] = {.lex_state = 179}, + [7283] = {.lex_state = 202}, + [7284] = {.lex_state = 113}, + [7285] = {.lex_state = 202}, + [7286] = {.lex_state = 202}, + [7287] = {.lex_state = 344}, + [7288] = {.lex_state = 202}, + [7289] = {.lex_state = 0}, + [7290] = {.lex_state = 202}, + [7291] = {.lex_state = 114}, + [7292] = {.lex_state = 202}, + [7293] = {.lex_state = 202}, + [7294] = {.lex_state = 202}, + [7295] = {.lex_state = 241}, + [7296] = {.lex_state = 202}, + [7297] = {.lex_state = 202}, + [7298] = {.lex_state = 202}, + [7299] = {.lex_state = 0}, + [7300] = {.lex_state = 344}, + [7301] = {.lex_state = 344}, + [7302] = {.lex_state = 0}, + [7303] = {.lex_state = 113}, + [7304] = {.lex_state = 179}, + [7305] = {.lex_state = 179}, + [7306] = {.lex_state = 202}, + [7307] = {.lex_state = 113}, + [7308] = {.lex_state = 199}, + [7309] = {.lex_state = 202}, + [7310] = {.lex_state = 114}, + [7311] = {.lex_state = 344}, + [7312] = {.lex_state = 111}, + [7313] = {.lex_state = 179}, + [7314] = {.lex_state = 0}, + [7315] = {.lex_state = 0}, + [7316] = {.lex_state = 202}, + [7317] = {.lex_state = 202}, + [7318] = {.lex_state = 202}, + [7319] = {.lex_state = 202}, + [7320] = {.lex_state = 202}, + [7321] = {.lex_state = 202}, + [7322] = {.lex_state = 202}, + [7323] = {.lex_state = 241}, + [7324] = {.lex_state = 199}, + [7325] = {.lex_state = 113}, + [7326] = {.lex_state = 0}, + [7327] = {.lex_state = 202}, + [7328] = {.lex_state = 179}, + [7329] = {.lex_state = 199}, + [7330] = {.lex_state = 0}, + [7331] = {.lex_state = 199}, + [7332] = {.lex_state = 199}, + [7333] = {.lex_state = 241}, + [7334] = {.lex_state = 202}, + [7335] = {.lex_state = 344}, + [7336] = {.lex_state = 113}, + [7337] = {.lex_state = 344}, + [7338] = {.lex_state = 113}, + [7339] = {.lex_state = 179}, + [7340] = {.lex_state = 113}, + [7341] = {.lex_state = 113}, + [7342] = {.lex_state = 113}, + [7343] = {.lex_state = 0}, + [7344] = {.lex_state = 202}, + [7345] = {.lex_state = 241}, + [7346] = {.lex_state = 199}, + [7347] = {.lex_state = 179}, + [7348] = {.lex_state = 202}, + [7349] = {.lex_state = 202}, + [7350] = {.lex_state = 344}, + [7351] = {.lex_state = 0}, + [7352] = {.lex_state = 113}, + [7353] = {.lex_state = 202}, + [7354] = {.lex_state = 202}, + [7355] = {.lex_state = 344}, + [7356] = {.lex_state = 202}, + [7357] = {.lex_state = 202}, + [7358] = {.lex_state = 199}, + [7359] = {.lex_state = 113}, + [7360] = {.lex_state = 202}, + [7361] = {.lex_state = 113}, + [7362] = {.lex_state = 202}, + [7363] = {.lex_state = 202}, + [7364] = {.lex_state = 111}, + [7365] = {.lex_state = 113}, + [7366] = {.lex_state = 202}, + [7367] = {.lex_state = 202}, + [7368] = {.lex_state = 344}, + [7369] = {.lex_state = 113}, + [7370] = {.lex_state = 202}, + [7371] = {.lex_state = 199}, + [7372] = {.lex_state = 202}, + [7373] = {.lex_state = 179}, + [7374] = {.lex_state = 202}, + [7375] = {.lex_state = 344}, + [7376] = {.lex_state = 202}, + [7377] = {.lex_state = 344}, + [7378] = {.lex_state = 202}, + [7379] = {.lex_state = 202}, + [7380] = {.lex_state = 202}, + [7381] = {.lex_state = 114}, + [7382] = {.lex_state = 202}, + [7383] = {.lex_state = 202}, + [7384] = {.lex_state = 111}, + [7385] = {.lex_state = 113}, + [7386] = {.lex_state = 114}, + [7387] = {.lex_state = 179}, + [7388] = {.lex_state = 113}, + [7389] = {.lex_state = 202}, + [7390] = {.lex_state = 202}, + [7391] = {.lex_state = 344}, + [7392] = {.lex_state = 344}, + [7393] = {.lex_state = 202}, + [7394] = {.lex_state = 111}, + [7395] = {.lex_state = 344}, + [7396] = {.lex_state = 344}, + [7397] = {.lex_state = 202}, + [7398] = {.lex_state = 202}, + [7399] = {.lex_state = 179}, + [7400] = {.lex_state = 202}, + [7401] = {.lex_state = 202}, + [7402] = {.lex_state = 111}, + [7403] = {.lex_state = 113}, + [7404] = {.lex_state = 179}, + [7405] = {.lex_state = 179}, + [7406] = {.lex_state = 241}, + [7407] = {.lex_state = 202}, + [7408] = {.lex_state = 202}, + [7409] = {.lex_state = 202}, + [7410] = {.lex_state = 202}, + [7411] = {.lex_state = 179}, + [7412] = {.lex_state = 202}, + [7413] = {.lex_state = 202}, + [7414] = {.lex_state = 202}, + [7415] = {.lex_state = 202}, + [7416] = {.lex_state = 0}, + [7417] = {.lex_state = 202}, + [7418] = {.lex_state = 179}, + [7419] = {.lex_state = 344}, + [7420] = {.lex_state = 202}, + [7421] = {.lex_state = 0}, + [7422] = {.lex_state = 344}, + [7423] = {.lex_state = 179}, + [7424] = {.lex_state = 202}, + [7425] = {.lex_state = 344}, + [7426] = {.lex_state = 179}, + [7427] = {.lex_state = 0}, + [7428] = {.lex_state = 202}, + [7429] = {.lex_state = 344}, + [7430] = {.lex_state = 202}, + [7431] = {.lex_state = 241}, + [7432] = {.lex_state = 113}, + [7433] = {.lex_state = 179}, + [7434] = {.lex_state = 202}, + [7435] = {.lex_state = 344}, + [7436] = {.lex_state = 344}, + [7437] = {.lex_state = 113}, + [7438] = {.lex_state = 111}, + [7439] = {.lex_state = 202}, + [7440] = {.lex_state = 0}, + [7441] = {.lex_state = 202}, + [7442] = {.lex_state = 199}, + [7443] = {.lex_state = 113}, + [7444] = {.lex_state = 344}, + [7445] = {.lex_state = 344}, + [7446] = {.lex_state = 179}, + [7447] = {.lex_state = 199}, + [7448] = {.lex_state = 0}, + [7449] = {.lex_state = 114}, + [7450] = {.lex_state = 344}, + [7451] = {.lex_state = 344}, + [7452] = {.lex_state = 202}, + [7453] = {.lex_state = 179}, + [7454] = {.lex_state = 344}, + [7455] = {.lex_state = 0}, + [7456] = {.lex_state = 202}, + [7457] = {.lex_state = 344}, + [7458] = {.lex_state = 344}, + [7459] = {.lex_state = 344}, + [7460] = {.lex_state = 202}, + [7461] = {.lex_state = 202}, + [7462] = {.lex_state = 202}, + [7463] = {.lex_state = 344}, + [7464] = {.lex_state = 344}, + [7465] = {.lex_state = 344}, + [7466] = {.lex_state = 113}, + [7467] = {.lex_state = 344}, + [7468] = {.lex_state = 344}, + [7469] = {.lex_state = 202}, + [7470] = {.lex_state = 344}, + [7471] = {.lex_state = 344}, + [7472] = {.lex_state = 0}, + [7473] = {.lex_state = 202}, + [7474] = {.lex_state = 0}, + [7475] = {.lex_state = 202}, + [7476] = {.lex_state = 344}, + [7477] = {.lex_state = 202}, + [7478] = {.lex_state = 113}, + [7479] = {.lex_state = 344}, + [7480] = {.lex_state = 344}, + [7481] = {.lex_state = 0}, + [7482] = {.lex_state = 0}, + [7483] = {.lex_state = 199}, + [7484] = {.lex_state = 113}, + [7485] = {.lex_state = 199}, + [7486] = {.lex_state = 199}, + [7487] = {.lex_state = 179}, + [7488] = {.lex_state = 202}, + [7489] = {.lex_state = 202}, + [7490] = {.lex_state = 344}, + [7491] = {.lex_state = 113}, + [7492] = {.lex_state = 179}, + [7493] = {.lex_state = 113}, + [7494] = {.lex_state = 113}, + [7495] = {.lex_state = 202}, + [7496] = {.lex_state = 202}, + [7497] = {.lex_state = 179}, + [7498] = {.lex_state = 202}, + [7499] = {.lex_state = 202}, + [7500] = {.lex_state = 241}, + [7501] = {.lex_state = 202}, + [7502] = {.lex_state = 202}, + [7503] = {.lex_state = 202}, + [7504] = {.lex_state = 111}, + [7505] = {.lex_state = 111}, + [7506] = {.lex_state = 202}, + [7507] = {.lex_state = 113}, + [7508] = {.lex_state = 179}, + [7509] = {.lex_state = 202}, + [7510] = {.lex_state = 202}, + [7511] = {.lex_state = 202}, + [7512] = {.lex_state = 202}, + [7513] = {.lex_state = 202}, + [7514] = {.lex_state = 202}, + [7515] = {.lex_state = 202}, + [7516] = {.lex_state = 114}, + [7517] = {.lex_state = 202}, + [7518] = {.lex_state = 202}, + [7519] = {.lex_state = 179}, + [7520] = {.lex_state = 202}, + [7521] = {.lex_state = 202}, + [7522] = {.lex_state = 202}, + [7523] = {.lex_state = 0}, + [7524] = {.lex_state = 0}, + [7525] = {.lex_state = 202}, + [7526] = {.lex_state = 0}, + [7527] = {.lex_state = 0}, + [7528] = {.lex_state = 174}, + [7529] = {.lex_state = 0}, + [7530] = {.lex_state = 0}, + [7531] = {.lex_state = 0}, + [7532] = {.lex_state = 241}, + [7533] = {.lex_state = 0}, + [7534] = {.lex_state = 0}, + [7535] = {.lex_state = 199}, + [7536] = {.lex_state = 0}, + [7537] = {.lex_state = 199}, + [7538] = {.lex_state = 242}, + [7539] = {.lex_state = 0}, + [7540] = {.lex_state = 0}, + [7541] = {.lex_state = 0}, + [7542] = {.lex_state = 0}, + [7543] = {.lex_state = 0}, + [7544] = {.lex_state = 0}, + [7545] = {.lex_state = 202}, + [7546] = {.lex_state = 0}, + [7547] = {.lex_state = 0}, + [7548] = {.lex_state = 0}, + [7549] = {.lex_state = 0}, + [7550] = {.lex_state = 0}, + [7551] = {.lex_state = 0}, + [7552] = {.lex_state = 0}, + [7553] = {.lex_state = 0}, + [7554] = {.lex_state = 0}, + [7555] = {.lex_state = 0}, + [7556] = {.lex_state = 0}, + [7557] = {.lex_state = 199}, + [7558] = {.lex_state = 0}, + [7559] = {.lex_state = 0}, + [7560] = {.lex_state = 0}, + [7561] = {.lex_state = 0}, + [7562] = {.lex_state = 0}, + [7563] = {.lex_state = 199}, + [7564] = {.lex_state = 199}, + [7565] = {.lex_state = 0}, + [7566] = {.lex_state = 0}, + [7567] = {.lex_state = 0}, + [7568] = {.lex_state = 0}, + [7569] = {.lex_state = 116}, + [7570] = {.lex_state = 0}, + [7571] = {.lex_state = 199}, + [7572] = {.lex_state = 0}, + [7573] = {.lex_state = 0}, + [7574] = {.lex_state = 0}, + [7575] = {.lex_state = 0}, + [7576] = {.lex_state = 0}, + [7577] = {.lex_state = 0}, + [7578] = {.lex_state = 199}, + [7579] = {.lex_state = 0}, + [7580] = {.lex_state = 0}, + [7581] = {.lex_state = 0}, + [7582] = {.lex_state = 0}, + [7583] = {.lex_state = 111}, + [7584] = {.lex_state = 202}, + [7585] = {.lex_state = 202}, + [7586] = {.lex_state = 199}, + [7587] = {.lex_state = 0}, + [7588] = {.lex_state = 0}, + [7589] = {.lex_state = 0}, + [7590] = {.lex_state = 0}, + [7591] = {.lex_state = 0}, + [7592] = {.lex_state = 0}, + [7593] = {.lex_state = 0}, + [7594] = {.lex_state = 0}, + [7595] = {.lex_state = 199}, + [7596] = {.lex_state = 0}, + [7597] = {.lex_state = 0}, + [7598] = {.lex_state = 0}, + [7599] = {.lex_state = 0}, + [7600] = {.lex_state = 0}, + [7601] = {.lex_state = 0}, + [7602] = {.lex_state = 0}, + [7603] = {.lex_state = 199}, + [7604] = {.lex_state = 202}, + [7605] = {.lex_state = 0}, + [7606] = {.lex_state = 199}, + [7607] = {.lex_state = 199}, + [7608] = {.lex_state = 0}, + [7609] = {.lex_state = 0}, + [7610] = {.lex_state = 0}, + [7611] = {.lex_state = 0}, + [7612] = {.lex_state = 0}, + [7613] = {.lex_state = 0}, + [7614] = {.lex_state = 199}, + [7615] = {.lex_state = 0}, + [7616] = {.lex_state = 0}, + [7617] = {.lex_state = 0}, + [7618] = {.lex_state = 0}, + [7619] = {.lex_state = 202}, + [7620] = {.lex_state = 202}, + [7621] = {.lex_state = 0}, + [7622] = {.lex_state = 174}, + [7623] = {.lex_state = 199}, + [7624] = {.lex_state = 0}, + [7625] = {.lex_state = 0}, + [7626] = {.lex_state = 0}, + [7627] = {.lex_state = 0}, + [7628] = {.lex_state = 202}, + [7629] = {.lex_state = 202}, + [7630] = {.lex_state = 202}, + [7631] = {.lex_state = 0}, + [7632] = {.lex_state = 199}, + [7633] = {.lex_state = 0}, + [7634] = {.lex_state = 0}, + [7635] = {.lex_state = 0}, + [7636] = {.lex_state = 0}, + [7637] = {.lex_state = 199}, + [7638] = {.lex_state = 199}, + [7639] = {.lex_state = 0}, + [7640] = {.lex_state = 199}, + [7641] = {.lex_state = 199}, + [7642] = {.lex_state = 199}, + [7643] = {.lex_state = 202}, + [7644] = {.lex_state = 0}, + [7645] = {.lex_state = 199}, + [7646] = {.lex_state = 111}, + [7647] = {.lex_state = 0}, + [7648] = {.lex_state = 199}, + [7649] = {.lex_state = 0}, + [7650] = {.lex_state = 202}, + [7651] = {.lex_state = 202}, + [7652] = {.lex_state = 0}, + [7653] = {.lex_state = 0}, + [7654] = {.lex_state = 0}, + [7655] = {.lex_state = 0}, + [7656] = {.lex_state = 0}, + [7657] = {.lex_state = 116}, + [7658] = {.lex_state = 0}, + [7659] = {.lex_state = 0}, + [7660] = {.lex_state = 0}, + [7661] = {.lex_state = 199}, + [7662] = {.lex_state = 199}, + [7663] = {.lex_state = 0}, + [7664] = {.lex_state = 0}, + [7665] = {.lex_state = 179}, + [7666] = {.lex_state = 199}, + [7667] = {.lex_state = 0}, + [7668] = {.lex_state = 179}, + [7669] = {.lex_state = 0}, + [7670] = {.lex_state = 199}, + [7671] = {.lex_state = 0}, + [7672] = {.lex_state = 174}, + [7673] = {.lex_state = 202}, + [7674] = {.lex_state = 202}, + [7675] = {.lex_state = 202}, + [7676] = {.lex_state = 0}, + [7677] = {.lex_state = 202}, + [7678] = {.lex_state = 0}, + [7679] = {.lex_state = 0}, + [7680] = {.lex_state = 0}, + [7681] = {.lex_state = 0}, + [7682] = {.lex_state = 0}, + [7683] = {.lex_state = 202}, + [7684] = {.lex_state = 202}, + [7685] = {.lex_state = 0}, + [7686] = {.lex_state = 0}, + [7687] = {.lex_state = 199}, + [7688] = {.lex_state = 202}, + [7689] = {.lex_state = 0}, + [7690] = {.lex_state = 0}, + [7691] = {.lex_state = 174}, + [7692] = {.lex_state = 0}, + [7693] = {.lex_state = 199}, + [7694] = {.lex_state = 0}, + [7695] = {.lex_state = 202}, + [7696] = {.lex_state = 199}, + [7697] = {.lex_state = 0}, + [7698] = {.lex_state = 0}, + [7699] = {.lex_state = 0}, + [7700] = {.lex_state = 174}, + [7701] = {.lex_state = 199}, + [7702] = {.lex_state = 0}, + [7703] = {.lex_state = 0}, + [7704] = {.lex_state = 0}, + [7705] = {.lex_state = 199}, + [7706] = {.lex_state = 199}, + [7707] = {.lex_state = 199}, + [7708] = {.lex_state = 344}, + [7709] = {.lex_state = 0}, + [7710] = {.lex_state = 202}, + [7711] = {.lex_state = 0}, + [7712] = {.lex_state = 0}, + [7713] = {.lex_state = 0}, + [7714] = {.lex_state = 0}, + [7715] = {.lex_state = 0}, + [7716] = {.lex_state = 0}, + [7717] = {.lex_state = 0}, + [7718] = {.lex_state = 0}, + [7719] = {.lex_state = 202}, + [7720] = {.lex_state = 0}, + [7721] = {.lex_state = 199}, + [7722] = {.lex_state = 0}, + [7723] = {.lex_state = 202}, + [7724] = {.lex_state = 202}, + [7725] = {.lex_state = 0}, + [7726] = {.lex_state = 0}, + [7727] = {.lex_state = 0}, + [7728] = {.lex_state = 0}, + [7729] = {.lex_state = 199}, + [7730] = {.lex_state = 202}, + [7731] = {.lex_state = 202}, + [7732] = {.lex_state = 202}, + [7733] = {.lex_state = 0}, + [7734] = {.lex_state = 0}, + [7735] = {.lex_state = 202}, + [7736] = {.lex_state = 0}, + [7737] = {.lex_state = 0}, + [7738] = {.lex_state = 0}, + [7739] = {.lex_state = 0}, + [7740] = {.lex_state = 199}, + [7741] = {.lex_state = 199}, + [7742] = {.lex_state = 199}, + [7743] = {.lex_state = 202}, + [7744] = {.lex_state = 202}, + [7745] = {.lex_state = 199}, + [7746] = {.lex_state = 0}, + [7747] = {.lex_state = 199}, + [7748] = {.lex_state = 202}, + [7749] = {.lex_state = 0}, + [7750] = {.lex_state = 202}, + [7751] = {.lex_state = 202}, + [7752] = {.lex_state = 0}, + [7753] = {.lex_state = 0}, + [7754] = {.lex_state = 0}, + [7755] = {.lex_state = 202}, + [7756] = {.lex_state = 199}, + [7757] = {.lex_state = 202}, + [7758] = {.lex_state = 0}, + [7759] = {.lex_state = 199}, + [7760] = {.lex_state = 202}, + [7761] = {.lex_state = 0}, + [7762] = {.lex_state = 202}, + [7763] = {.lex_state = 0}, + [7764] = {.lex_state = 0}, + [7765] = {.lex_state = 0}, + [7766] = {.lex_state = 199}, + [7767] = {.lex_state = 0}, + [7768] = {.lex_state = 116}, + [7769] = {.lex_state = 0}, + [7770] = {.lex_state = 0}, + [7771] = {.lex_state = 199}, + [7772] = {.lex_state = 0}, + [7773] = {.lex_state = 174}, + [7774] = {.lex_state = 0}, + [7775] = {.lex_state = 199}, + [7776] = {.lex_state = 111}, + [7777] = {.lex_state = 0}, + [7778] = {.lex_state = 199}, + [7779] = {.lex_state = 0}, + [7780] = {.lex_state = 0}, + [7781] = {.lex_state = 174}, + [7782] = {.lex_state = 199}, + [7783] = {.lex_state = 0}, + [7784] = {.lex_state = 174}, + [7785] = {.lex_state = 199}, + [7786] = {.lex_state = 0}, + [7787] = {.lex_state = 0}, + [7788] = {.lex_state = 199}, + [7789] = {.lex_state = 199}, + [7790] = {.lex_state = 174}, + [7791] = {.lex_state = 344}, + [7792] = {.lex_state = 0}, + [7793] = {.lex_state = 199}, + [7794] = {.lex_state = 111}, + [7795] = {.lex_state = 199}, + [7796] = {.lex_state = 0}, + [7797] = {.lex_state = 0}, + [7798] = {.lex_state = 0}, + [7799] = {.lex_state = 199}, + [7800] = {.lex_state = 199}, + [7801] = {.lex_state = 0}, + [7802] = {.lex_state = 0}, + [7803] = {.lex_state = 199}, + [7804] = {.lex_state = 174}, + [7805] = {.lex_state = 0}, + [7806] = {.lex_state = 0}, + [7807] = {.lex_state = 174}, + [7808] = {.lex_state = 202}, + [7809] = {.lex_state = 202}, + [7810] = {.lex_state = 0}, + [7811] = {.lex_state = 111}, + [7812] = {.lex_state = 0}, + [7813] = {.lex_state = 174}, + [7814] = {.lex_state = 199}, + [7815] = {.lex_state = 0}, + [7816] = {.lex_state = 199}, + [7817] = {.lex_state = 202}, + [7818] = {.lex_state = 0}, + [7819] = {.lex_state = 0}, + [7820] = {.lex_state = 0}, + [7821] = {.lex_state = 111}, + [7822] = {.lex_state = 0}, + [7823] = {.lex_state = 174}, + [7824] = {.lex_state = 0}, + [7825] = {.lex_state = 0}, + [7826] = {.lex_state = 0}, + [7827] = {.lex_state = 0}, + [7828] = {.lex_state = 199}, + [7829] = {.lex_state = 0}, + [7830] = {.lex_state = 0}, + [7831] = {.lex_state = 0}, + [7832] = {.lex_state = 199}, + [7833] = {.lex_state = 0}, + [7834] = {.lex_state = 111}, + [7835] = {.lex_state = 0}, + [7836] = {.lex_state = 111}, + [7837] = {.lex_state = 0}, + [7838] = {.lex_state = 111}, + [7839] = {.lex_state = 111}, + [7840] = {.lex_state = 111}, + [7841] = {.lex_state = 202}, + [7842] = {.lex_state = 0}, + [7843] = {.lex_state = 0}, + [7844] = {.lex_state = 0}, + [7845] = {.lex_state = 0}, + [7846] = {.lex_state = 0}, + [7847] = {.lex_state = 0}, + [7848] = {.lex_state = 202}, + [7849] = {.lex_state = 202}, + [7850] = {.lex_state = 0}, + [7851] = {.lex_state = 0}, + [7852] = {.lex_state = 0}, + [7853] = {.lex_state = 0}, + [7854] = {.lex_state = 199}, + [7855] = {.lex_state = 0}, + [7856] = {.lex_state = 0}, + [7857] = {.lex_state = 199}, + [7858] = {.lex_state = 174}, + [7859] = {.lex_state = 0}, + [7860] = {.lex_state = 0}, + [7861] = {.lex_state = 202}, + [7862] = {.lex_state = 202}, + [7863] = {.lex_state = 202}, + [7864] = {.lex_state = 202}, + [7865] = {.lex_state = 202}, + [7866] = {.lex_state = 0}, + [7867] = {.lex_state = 0}, + [7868] = {.lex_state = 0}, + [7869] = {.lex_state = 174}, + [7870] = {.lex_state = 0}, + [7871] = {.lex_state = 0}, + [7872] = {.lex_state = 0}, + [7873] = {.lex_state = 0}, + [7874] = {.lex_state = 0}, + [7875] = {.lex_state = 179}, + [7876] = {.lex_state = 0}, + [7877] = {.lex_state = 0}, + [7878] = {.lex_state = 0}, + [7879] = {.lex_state = 344}, + [7880] = {.lex_state = 202}, + [7881] = {.lex_state = 0}, + [7882] = {.lex_state = 0}, + [7883] = {.lex_state = 0}, + [7884] = {.lex_state = 0}, + [7885] = {.lex_state = 0}, + [7886] = {.lex_state = 174}, + [7887] = {.lex_state = 202}, + [7888] = {.lex_state = 202}, + [7889] = {.lex_state = 0}, + [7890] = {.lex_state = 0}, + [7891] = {.lex_state = 199}, + [7892] = {.lex_state = 0}, + [7893] = {.lex_state = 202}, + [7894] = {.lex_state = 0}, + [7895] = {.lex_state = 199}, + [7896] = {.lex_state = 199}, + [7897] = {.lex_state = 0}, + [7898] = {.lex_state = 199}, + [7899] = {.lex_state = 199}, + [7900] = {.lex_state = 0}, + [7901] = {.lex_state = 202}, + [7902] = {.lex_state = 174}, + [7903] = {.lex_state = 0}, + [7904] = {.lex_state = 202}, + [7905] = {.lex_state = 202}, + [7906] = {.lex_state = 0}, + [7907] = {.lex_state = 0}, + [7908] = {.lex_state = 0}, + [7909] = {.lex_state = 0}, + [7910] = {.lex_state = 0}, + [7911] = {.lex_state = 0}, + [7912] = {.lex_state = 0}, + [7913] = {.lex_state = 0}, + [7914] = {.lex_state = 0}, + [7915] = {.lex_state = 0}, + [7916] = {.lex_state = 0}, + [7917] = {.lex_state = 199}, + [7918] = {.lex_state = 199}, + [7919] = {.lex_state = 202}, + [7920] = {.lex_state = 202}, + [7921] = {.lex_state = 0}, + [7922] = {.lex_state = 202}, + [7923] = {.lex_state = 0}, + [7924] = {.lex_state = 199}, + [7925] = {.lex_state = 202}, + [7926] = {.lex_state = 199}, + [7927] = {.lex_state = 0}, + [7928] = {.lex_state = 0}, + [7929] = {.lex_state = 0}, + [7930] = {.lex_state = 0}, + [7931] = {.lex_state = 116}, + [7932] = {.lex_state = 202}, + [7933] = {.lex_state = 111}, + [7934] = {.lex_state = 0}, + [7935] = {.lex_state = 344}, + [7936] = {.lex_state = 0}, + [7937] = {.lex_state = 0}, + [7938] = {.lex_state = 0}, + [7939] = {.lex_state = 0}, + [7940] = {.lex_state = 0}, + [7941] = {.lex_state = 0}, + [7942] = {.lex_state = 115}, + [7943] = {.lex_state = 0}, + [7944] = {.lex_state = 0}, + [7945] = {.lex_state = 199}, + [7946] = {.lex_state = 0}, + [7947] = {.lex_state = 0}, + [7948] = {.lex_state = 344}, + [7949] = {.lex_state = 199}, + [7950] = {.lex_state = 0}, + [7951] = {.lex_state = 0}, + [7952] = {.lex_state = 344}, + [7953] = {.lex_state = 0}, + [7954] = {.lex_state = 0}, + [7955] = {.lex_state = 344}, + [7956] = {.lex_state = 0}, + [7957] = {.lex_state = 0}, + [7958] = {.lex_state = 199}, + [7959] = {.lex_state = 0}, + [7960] = {.lex_state = 0}, + [7961] = {.lex_state = 0}, + [7962] = {.lex_state = 344}, + [7963] = {.lex_state = 344}, + [7964] = {.lex_state = 0}, + [7965] = {.lex_state = 0}, + [7966] = {.lex_state = 0}, + [7967] = {.lex_state = 0}, + [7968] = {.lex_state = 0}, + [7969] = {.lex_state = 0}, + [7970] = {.lex_state = 0}, + [7971] = {.lex_state = 0}, + [7972] = {.lex_state = 115}, + [7973] = {.lex_state = 0}, + [7974] = {.lex_state = 0}, + [7975] = {.lex_state = 344}, + [7976] = {.lex_state = 344}, + [7977] = {.lex_state = 0}, + [7978] = {.lex_state = 0}, + [7979] = {.lex_state = 0}, + [7980] = {.lex_state = 0}, + [7981] = {.lex_state = 0}, + [7982] = {.lex_state = 0}, + [7983] = {.lex_state = 0}, + [7984] = {.lex_state = 0}, + [7985] = {.lex_state = 0}, + [7986] = {.lex_state = 0}, + [7987] = {.lex_state = 0}, + [7988] = {.lex_state = 0}, + [7989] = {.lex_state = 199}, + [7990] = {.lex_state = 344}, + [7991] = {.lex_state = 344}, + [7992] = {.lex_state = 0}, + [7993] = {.lex_state = 115}, + [7994] = {.lex_state = 0}, + [7995] = {.lex_state = 0}, + [7996] = {.lex_state = 0}, + [7997] = {.lex_state = 199}, + [7998] = {.lex_state = 344, .external_lex_state = 2}, + [7999] = {.lex_state = 115}, + [8000] = {.lex_state = 344}, + [8001] = {.lex_state = 0}, + [8002] = {.lex_state = 344}, + [8003] = {.lex_state = 0}, + [8004] = {.lex_state = 0}, + [8005] = {.lex_state = 0}, + [8006] = {.lex_state = 0}, + [8007] = {.lex_state = 0}, + [8008] = {.lex_state = 0}, + [8009] = {.lex_state = 0}, + [8010] = {.lex_state = 0}, + [8011] = {.lex_state = 0}, + [8012] = {.lex_state = 344}, + [8013] = {.lex_state = 0}, + [8014] = {.lex_state = 0}, + [8015] = {.lex_state = 0}, + [8016] = {.lex_state = 0}, + [8017] = {.lex_state = 0}, + [8018] = {.lex_state = 0}, + [8019] = {.lex_state = 0}, + [8020] = {.lex_state = 0}, + [8021] = {.lex_state = 0}, + [8022] = {.lex_state = 0}, + [8023] = {.lex_state = 0}, + [8024] = {.lex_state = 0}, + [8025] = {.lex_state = 0}, + [8026] = {.lex_state = 0}, + [8027] = {.lex_state = 0}, + [8028] = {.lex_state = 0}, + [8029] = {.lex_state = 0}, + [8030] = {.lex_state = 256}, + [8031] = {.lex_state = 344}, + [8032] = {.lex_state = 0}, + [8033] = {.lex_state = 0}, + [8034] = {.lex_state = 344}, + [8035] = {.lex_state = 115}, + [8036] = {.lex_state = 0}, + [8037] = {.lex_state = 0}, + [8038] = {.lex_state = 0}, + [8039] = {.lex_state = 0}, + [8040] = {.lex_state = 199}, + [8041] = {.lex_state = 344}, + [8042] = {.lex_state = 344}, + [8043] = {.lex_state = 0}, + [8044] = {.lex_state = 199}, + [8045] = {.lex_state = 0}, + [8046] = {.lex_state = 0}, + [8047] = {.lex_state = 0}, + [8048] = {.lex_state = 0}, + [8049] = {.lex_state = 0}, + [8050] = {.lex_state = 0}, + [8051] = {.lex_state = 0}, + [8052] = {.lex_state = 0}, + [8053] = {.lex_state = 0}, + [8054] = {.lex_state = 344}, + [8055] = {.lex_state = 0}, + [8056] = {.lex_state = 0}, + [8057] = {.lex_state = 0}, + [8058] = {.lex_state = 0}, + [8059] = {.lex_state = 0}, + [8060] = {.lex_state = 0}, + [8061] = {.lex_state = 0}, + [8062] = {.lex_state = 0}, + [8063] = {.lex_state = 344}, + [8064] = {.lex_state = 0}, + [8065] = {.lex_state = 0}, + [8066] = {.lex_state = 0}, + [8067] = {.lex_state = 199}, + [8068] = {.lex_state = 0}, + [8069] = {.lex_state = 0}, + [8070] = {.lex_state = 0}, + [8071] = {.lex_state = 0}, + [8072] = {.lex_state = 0}, + [8073] = {.lex_state = 0}, + [8074] = {.lex_state = 0}, + [8075] = {.lex_state = 0}, + [8076] = {.lex_state = 0}, + [8077] = {.lex_state = 0}, + [8078] = {.lex_state = 199}, + [8079] = {.lex_state = 0}, + [8080] = {.lex_state = 344}, + [8081] = {.lex_state = 344}, + [8082] = {.lex_state = 0}, + [8083] = {.lex_state = 0}, + [8084] = {.lex_state = 0}, + [8085] = {.lex_state = 0}, + [8086] = {.lex_state = 0}, + [8087] = {.lex_state = 199}, + [8088] = {.lex_state = 199}, + [8089] = {.lex_state = 0}, + [8090] = {.lex_state = 344}, + [8091] = {.lex_state = 0}, + [8092] = {.lex_state = 344}, + [8093] = {.lex_state = 344}, + [8094] = {.lex_state = 0}, + [8095] = {.lex_state = 0}, + [8096] = {.lex_state = 0}, + [8097] = {.lex_state = 115}, + [8098] = {.lex_state = 0}, + [8099] = {.lex_state = 344}, + [8100] = {.lex_state = 0}, + [8101] = {.lex_state = 344}, + [8102] = {.lex_state = 344}, + [8103] = {.lex_state = 0}, + [8104] = {.lex_state = 344}, + [8105] = {.lex_state = 0}, + [8106] = {.lex_state = 0}, + [8107] = {.lex_state = 0}, + [8108] = {.lex_state = 0}, + [8109] = {.lex_state = 344}, + [8110] = {.lex_state = 0}, + [8111] = {.lex_state = 199}, + [8112] = {.lex_state = 0}, + [8113] = {.lex_state = 0}, + [8114] = {.lex_state = 0}, + [8115] = {.lex_state = 199}, + [8116] = {.lex_state = 0}, + [8117] = {.lex_state = 0}, + [8118] = {.lex_state = 344}, + [8119] = {.lex_state = 115}, + [8120] = {.lex_state = 115}, + [8121] = {.lex_state = 0}, + [8122] = {.lex_state = 199}, + [8123] = {.lex_state = 344}, + [8124] = {.lex_state = 0}, + [8125] = {.lex_state = 344}, + [8126] = {.lex_state = 199}, + [8127] = {.lex_state = 174}, + [8128] = {.lex_state = 0}, + [8129] = {.lex_state = 344}, + [8130] = {.lex_state = 344}, + [8131] = {.lex_state = 0}, + [8132] = {.lex_state = 115}, + [8133] = {.lex_state = 0}, + [8134] = {.lex_state = 199}, + [8135] = {.lex_state = 344}, + [8136] = {.lex_state = 0}, + [8137] = {.lex_state = 344}, + [8138] = {.lex_state = 0}, + [8139] = {.lex_state = 199}, + [8140] = {.lex_state = 344}, + [8141] = {.lex_state = 0}, + [8142] = {.lex_state = 0}, + [8143] = {.lex_state = 115}, + [8144] = {.lex_state = 344}, + [8145] = {.lex_state = 344}, + [8146] = {.lex_state = 344}, + [8147] = {.lex_state = 344}, + [8148] = {.lex_state = 0}, + [8149] = {.lex_state = 0}, + [8150] = {.lex_state = 0}, + [8151] = {.lex_state = 0}, + [8152] = {.lex_state = 0}, + [8153] = {.lex_state = 0}, + [8154] = {.lex_state = 0}, + [8155] = {.lex_state = 344}, + [8156] = {.lex_state = 174}, + [8157] = {.lex_state = 0}, + [8158] = {.lex_state = 0}, + [8159] = {.lex_state = 0}, + [8160] = {.lex_state = 0}, + [8161] = {.lex_state = 0}, + [8162] = {.lex_state = 0}, + [8163] = {.lex_state = 0}, + [8164] = {.lex_state = 0}, + [8165] = {.lex_state = 115}, + [8166] = {.lex_state = 199}, + [8167] = {.lex_state = 344}, + [8168] = {.lex_state = 0}, + [8169] = {.lex_state = 0}, + [8170] = {.lex_state = 0}, + [8171] = {.lex_state = 0}, + [8172] = {.lex_state = 344}, + [8173] = {.lex_state = 0}, + [8174] = {.lex_state = 0}, + [8175] = {.lex_state = 0}, + [8176] = {.lex_state = 0}, + [8177] = {.lex_state = 115}, + [8178] = {.lex_state = 0}, + [8179] = {.lex_state = 344}, + [8180] = {.lex_state = 344}, + [8181] = {.lex_state = 344}, + [8182] = {.lex_state = 0}, + [8183] = {.lex_state = 0}, + [8184] = {.lex_state = 0}, + [8185] = {.lex_state = 0}, + [8186] = {.lex_state = 344}, + [8187] = {.lex_state = 344}, + [8188] = {.lex_state = 0}, + [8189] = {.lex_state = 0}, + [8190] = {.lex_state = 0}, + [8191] = {.lex_state = 0}, + [8192] = {.lex_state = 0}, + [8193] = {.lex_state = 0}, + [8194] = {.lex_state = 0}, + [8195] = {.lex_state = 0}, + [8196] = {.lex_state = 199}, + [8197] = {.lex_state = 0}, + [8198] = {.lex_state = 0}, + [8199] = {.lex_state = 0}, + [8200] = {.lex_state = 199}, + [8201] = {.lex_state = 0}, + [8202] = {.lex_state = 344}, + [8203] = {.lex_state = 0}, + [8204] = {.lex_state = 115}, + [8205] = {.lex_state = 199}, + [8206] = {.lex_state = 0}, + [8207] = {.lex_state = 0}, + [8208] = {.lex_state = 0}, + [8209] = {.lex_state = 344}, + [8210] = {.lex_state = 344}, + [8211] = {.lex_state = 115}, + [8212] = {.lex_state = 344}, + [8213] = {.lex_state = 344}, + [8214] = {.lex_state = 0}, + [8215] = {.lex_state = 0}, + [8216] = {.lex_state = 344}, + [8217] = {.lex_state = 0}, + [8218] = {.lex_state = 0}, + [8219] = {.lex_state = 115}, + [8220] = {.lex_state = 0}, + [8221] = {.lex_state = 0}, + [8222] = {.lex_state = 0}, + [8223] = {.lex_state = 199}, + [8224] = {.lex_state = 0}, + [8225] = {.lex_state = 0}, + [8226] = {.lex_state = 0}, + [8227] = {.lex_state = 0}, + [8228] = {.lex_state = 0}, + [8229] = {.lex_state = 344}, + [8230] = {.lex_state = 0}, + [8231] = {.lex_state = 199}, + [8232] = {.lex_state = 0}, + [8233] = {.lex_state = 344}, + [8234] = {.lex_state = 0}, + [8235] = {.lex_state = 0}, + [8236] = {.lex_state = 0}, + [8237] = {.lex_state = 344}, + [8238] = {.lex_state = 199}, + [8239] = {.lex_state = 0}, + [8240] = {.lex_state = 0}, + [8241] = {.lex_state = 0}, + [8242] = {.lex_state = 344}, + [8243] = {.lex_state = 0}, + [8244] = {.lex_state = 0}, + [8245] = {.lex_state = 0}, + [8246] = {.lex_state = 344}, + [8247] = {.lex_state = 0}, + [8248] = {.lex_state = 0}, + [8249] = {.lex_state = 344}, + [8250] = {.lex_state = 0}, + [8251] = {.lex_state = 0}, + [8252] = {.lex_state = 0}, + [8253] = {.lex_state = 344}, + [8254] = {.lex_state = 0}, + [8255] = {.lex_state = 0}, + [8256] = {.lex_state = 0}, + [8257] = {.lex_state = 0}, + [8258] = {.lex_state = 0}, + [8259] = {.lex_state = 0}, + [8260] = {.lex_state = 0}, + [8261] = {.lex_state = 0}, + [8262] = {.lex_state = 0}, + [8263] = {.lex_state = 0}, + [8264] = {.lex_state = 0}, + [8265] = {.lex_state = 0}, + [8266] = {.lex_state = 344}, + [8267] = {.lex_state = 0}, + [8268] = {.lex_state = 0}, + [8269] = {.lex_state = 0}, + [8270] = {.lex_state = 0}, + [8271] = {.lex_state = 0}, + [8272] = {.lex_state = 0}, + [8273] = {.lex_state = 0}, + [8274] = {.lex_state = 0}, + [8275] = {.lex_state = 0}, + [8276] = {.lex_state = 199}, + [8277] = {.lex_state = 0}, + [8278] = {.lex_state = 0}, + [8279] = {.lex_state = 0}, + [8280] = {.lex_state = 0}, + [8281] = {.lex_state = 0}, + [8282] = {.lex_state = 0}, + [8283] = {.lex_state = 0}, + [8284] = {.lex_state = 344}, + [8285] = {.lex_state = 0}, + [8286] = {.lex_state = 0}, + [8287] = {.lex_state = 0}, + [8288] = {.lex_state = 0}, + [8289] = {.lex_state = 0}, + [8290] = {.lex_state = 0}, + [8291] = {.lex_state = 0}, + [8292] = {.lex_state = 0}, + [8293] = {.lex_state = 0}, + [8294] = {.lex_state = 344}, + [8295] = {.lex_state = 0}, + [8296] = {.lex_state = 199}, + [8297] = {.lex_state = 0}, + [8298] = {.lex_state = 0}, + [8299] = {.lex_state = 0}, + [8300] = {.lex_state = 0}, + [8301] = {.lex_state = 0}, + [8302] = {.lex_state = 0}, + [8303] = {.lex_state = 0}, + [8304] = {.lex_state = 0}, + [8305] = {.lex_state = 0}, + [8306] = {.lex_state = 0}, + [8307] = {.lex_state = 0}, + [8308] = {.lex_state = 0}, + [8309] = {.lex_state = 0}, + [8310] = {.lex_state = 199}, + [8311] = {.lex_state = 0}, + [8312] = {.lex_state = 0}, + [8313] = {.lex_state = 0}, + [8314] = {.lex_state = 344}, + [8315] = {.lex_state = 0}, + [8316] = {.lex_state = 0}, + [8317] = {.lex_state = 0}, + [8318] = {.lex_state = 0}, + [8319] = {.lex_state = 0}, + [8320] = {.lex_state = 0}, + [8321] = {.lex_state = 0}, + [8322] = {.lex_state = 0}, + [8323] = {.lex_state = 0}, + [8324] = {.lex_state = 0}, + [8325] = {.lex_state = 0}, + [8326] = {.lex_state = 344}, + [8327] = {.lex_state = 0}, + [8328] = {.lex_state = 0}, + [8329] = {.lex_state = 344}, + [8330] = {.lex_state = 344}, + [8331] = {.lex_state = 0}, + [8332] = {.lex_state = 0}, + [8333] = {.lex_state = 0}, + [8334] = {.lex_state = 199}, + [8335] = {.lex_state = 0}, + [8336] = {.lex_state = 0}, + [8337] = {.lex_state = 0}, + [8338] = {.lex_state = 0}, + [8339] = {.lex_state = 0}, + [8340] = {.lex_state = 0}, + [8341] = {.lex_state = 0}, + [8342] = {.lex_state = 0}, + [8343] = {.lex_state = 0}, + [8344] = {.lex_state = 0}, + [8345] = {.lex_state = 0}, + [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 = 344, .external_lex_state = 2}, + [8354] = {.lex_state = 174}, + [8355] = {.lex_state = 0}, + [8356] = {.lex_state = 0}, + [8357] = {.lex_state = 0}, + [8358] = {.lex_state = 0}, + [8359] = {.lex_state = 0}, + [8360] = {.lex_state = 0}, + [8361] = {.lex_state = 0}, + [8362] = {.lex_state = 0}, + [8363] = {.lex_state = 199}, + [8364] = {.lex_state = 0}, + [8365] = {.lex_state = 0}, + [8366] = {.lex_state = 0}, + [8367] = {.lex_state = 0}, + [8368] = {.lex_state = 0}, + [8369] = {.lex_state = 115}, + [8370] = {.lex_state = 0}, + [8371] = {.lex_state = 0}, + [8372] = {.lex_state = 0}, + [8373] = {.lex_state = 0}, + [8374] = {.lex_state = 0}, + [8375] = {.lex_state = 0}, + [8376] = {.lex_state = 0}, + [8377] = {.lex_state = 0}, + [8378] = {.lex_state = 0}, + [8379] = {.lex_state = 0}, + [8380] = {.lex_state = 0}, + [8381] = {.lex_state = 0}, + [8382] = {.lex_state = 0}, + [8383] = {.lex_state = 344, .external_lex_state = 2}, + [8384] = {.lex_state = 344}, + [8385] = {.lex_state = 0}, + [8386] = {.lex_state = 0}, + [8387] = {.lex_state = 344, .external_lex_state = 2}, + [8388] = {.lex_state = 344}, + [8389] = {.lex_state = 0}, + [8390] = {.lex_state = 344, .external_lex_state = 2}, + [8391] = {.lex_state = 115}, + [8392] = {.lex_state = 344, .external_lex_state = 2}, + [8393] = {.lex_state = 344}, + [8394] = {.lex_state = 344, .external_lex_state = 2}, + [8395] = {.lex_state = 344, .external_lex_state = 2}, + [8396] = {.lex_state = 344, .external_lex_state = 2}, + [8397] = {.lex_state = 344, .external_lex_state = 2}, + [8398] = {.lex_state = 344, .external_lex_state = 2}, + [8399] = {.lex_state = 344, .external_lex_state = 2}, + [8400] = {.lex_state = 344, .external_lex_state = 2}, + [8401] = {.lex_state = 344, .external_lex_state = 2}, + [8402] = {.lex_state = 344, .external_lex_state = 2}, + [8403] = {.lex_state = 344, .external_lex_state = 2}, + [8404] = {.lex_state = 344, .external_lex_state = 2}, + [8405] = {.lex_state = 0}, + [8406] = {.lex_state = 0}, + [8407] = {.lex_state = 0}, + [8408] = {.lex_state = 0}, + [8409] = {.lex_state = 0}, + [8410] = {.lex_state = 344}, + [8411] = {.lex_state = 199}, + [8412] = {.lex_state = 0}, + [8413] = {.lex_state = 0}, + [8414] = {.lex_state = 116}, + [8415] = {.lex_state = 0}, + [8416] = {.lex_state = 0, .external_lex_state = 2}, + [8417] = {.lex_state = 0}, + [8418] = {.lex_state = 0}, + [8419] = {.lex_state = 0}, + [8420] = {.lex_state = 0}, + [8421] = {.lex_state = 177}, + [8422] = {.lex_state = 0}, + [8423] = {.lex_state = 0}, + [8424] = {.lex_state = 0}, + [8425] = {.lex_state = 0}, + [8426] = {.lex_state = 177}, + [8427] = {.lex_state = 0}, + [8428] = {.lex_state = 116}, + [8429] = {.lex_state = 0}, + [8430] = {.lex_state = 0}, + [8431] = {.lex_state = 344}, + [8432] = {.lex_state = 177}, + [8433] = {.lex_state = 177}, + [8434] = {.lex_state = 199}, + [8435] = {.lex_state = 0}, + [8436] = {.lex_state = 344}, + [8437] = {.lex_state = 177}, + [8438] = {.lex_state = 199}, + [8439] = {.lex_state = 0}, + [8440] = {.lex_state = 0}, + [8441] = {.lex_state = 177}, + [8442] = {.lex_state = 116}, + [8443] = {.lex_state = 177}, + [8444] = {.lex_state = 0}, + [8445] = {.lex_state = 0}, + [8446] = {.lex_state = 0}, + [8447] = {.lex_state = 0}, + [8448] = {.lex_state = 0}, + [8449] = {.lex_state = 0}, + [8450] = {.lex_state = 0}, + [8451] = {.lex_state = 0}, + [8452] = {.lex_state = 177}, + [8453] = {.lex_state = 199}, + [8454] = {.lex_state = 199}, + [8455] = {.lex_state = 0}, + [8456] = {.lex_state = 0}, + [8457] = {.lex_state = 116}, + [8458] = {.lex_state = 199}, + [8459] = {.lex_state = 0}, + [8460] = {.lex_state = 199}, + [8461] = {.lex_state = 0}, + [8462] = {.lex_state = 0}, + [8463] = {.lex_state = 199}, + [8464] = {.lex_state = 177}, + [8465] = {.lex_state = 0}, + [8466] = {.lex_state = 0}, + [8467] = {.lex_state = 177}, + [8468] = {.lex_state = 0}, + [8469] = {.lex_state = 0}, + [8470] = {.lex_state = 344}, + [8471] = {.lex_state = 177}, + [8472] = {.lex_state = 0}, + [8473] = {.lex_state = 0}, + [8474] = {.lex_state = 177}, + [8475] = {.lex_state = 0}, + [8476] = {.lex_state = 0}, + [8477] = {.lex_state = 0}, + [8478] = {.lex_state = 199}, + [8479] = {.lex_state = 0}, + [8480] = {.lex_state = 116}, + [8481] = {.lex_state = 0}, + [8482] = {.lex_state = 0}, + [8483] = {.lex_state = 0}, + [8484] = {.lex_state = 0}, + [8485] = {.lex_state = 0}, + [8486] = {.lex_state = 0}, + [8487] = {.lex_state = 0}, + [8488] = {.lex_state = 202}, + [8489] = {.lex_state = 0}, + [8490] = {.lex_state = 0}, + [8491] = {.lex_state = 0}, + [8492] = {.lex_state = 344}, + [8493] = {.lex_state = 0}, + [8494] = {.lex_state = 0}, + [8495] = {.lex_state = 202}, + [8496] = {.lex_state = 0}, + [8497] = {.lex_state = 199}, + [8498] = {.lex_state = 0}, + [8499] = {.lex_state = 0}, + [8500] = {.lex_state = 0}, + [8501] = {.lex_state = 0}, + [8502] = {.lex_state = 199}, + [8503] = {.lex_state = 0}, + [8504] = {.lex_state = 0}, + [8505] = {.lex_state = 0}, + [8506] = {.lex_state = 202}, + [8507] = {.lex_state = 344}, + [8508] = {.lex_state = 199}, + [8509] = {.lex_state = 0}, + [8510] = {.lex_state = 0}, + [8511] = {.lex_state = 0}, + [8512] = {.lex_state = 0}, + [8513] = {.lex_state = 199}, + [8514] = {.lex_state = 199}, + [8515] = {.lex_state = 0}, + [8516] = {.lex_state = 0}, + [8517] = {.lex_state = 0}, + [8518] = {.lex_state = 0}, + [8519] = {.lex_state = 0}, + [8520] = {.lex_state = 0}, + [8521] = {.lex_state = 199}, + [8522] = {.lex_state = 199}, + [8523] = {.lex_state = 0}, + [8524] = {.lex_state = 0}, + [8525] = {.lex_state = 344}, + [8526] = {.lex_state = 0}, + [8527] = {.lex_state = 0}, + [8528] = {.lex_state = 0}, + [8529] = {.lex_state = 0, .external_lex_state = 2}, + [8530] = {.lex_state = 0}, + [8531] = {.lex_state = 199}, + [8532] = {.lex_state = 0}, + [8533] = {.lex_state = 0}, + [8534] = {.lex_state = 0}, + [8535] = {.lex_state = 0}, + [8536] = {.lex_state = 116}, + [8537] = {.lex_state = 177}, + [8538] = {.lex_state = 199}, + [8539] = {.lex_state = 0}, + [8540] = {.lex_state = 0}, + [8541] = {.lex_state = 0}, + [8542] = {.lex_state = 116}, + [8543] = {.lex_state = 0}, + [8544] = {.lex_state = 0}, + [8545] = {.lex_state = 0}, + [8546] = {.lex_state = 0}, + [8547] = {.lex_state = 199}, + [8548] = {.lex_state = 177}, + [8549] = {.lex_state = 0}, + [8550] = {.lex_state = 344}, + [8551] = {.lex_state = 0}, + [8552] = {.lex_state = 199}, + [8553] = {.lex_state = 199}, + [8554] = {.lex_state = 0}, + [8555] = {.lex_state = 177}, + [8556] = {.lex_state = 0}, + [8557] = {.lex_state = 177}, + [8558] = {.lex_state = 344}, + [8559] = {.lex_state = 0}, + [8560] = {.lex_state = 202}, + [8561] = {.lex_state = 0}, + [8562] = {.lex_state = 0}, + [8563] = {.lex_state = 0}, + [8564] = {.lex_state = 177}, + [8565] = {.lex_state = 0}, + [8566] = {.lex_state = 0}, + [8567] = {.lex_state = 0}, + [8568] = {.lex_state = 177}, + [8569] = {.lex_state = 199}, + [8570] = {.lex_state = 0}, + [8571] = {.lex_state = 0}, + [8572] = {.lex_state = 0}, + [8573] = {.lex_state = 344}, + [8574] = {.lex_state = 116}, + [8575] = {.lex_state = 0}, + [8576] = {.lex_state = 202}, + [8577] = {.lex_state = 344}, + [8578] = {.lex_state = 0}, + [8579] = {.lex_state = 0}, + [8580] = {.lex_state = 199}, + [8581] = {.lex_state = 202}, + [8582] = {.lex_state = 0}, + [8583] = {.lex_state = 0}, + [8584] = {.lex_state = 0}, + [8585] = {.lex_state = 0}, + [8586] = {.lex_state = 0}, + [8587] = {.lex_state = 0}, + [8588] = {.lex_state = 0}, + [8589] = {.lex_state = 0}, + [8590] = {.lex_state = 0}, + [8591] = {.lex_state = 0}, + [8592] = {.lex_state = 199}, + [8593] = {.lex_state = 0}, + [8594] = {.lex_state = 256}, + [8595] = {.lex_state = 199}, + [8596] = {.lex_state = 0}, + [8597] = {.lex_state = 344}, + [8598] = {.lex_state = 177}, + [8599] = {.lex_state = 344}, + [8600] = {.lex_state = 0}, + [8601] = {.lex_state = 0}, + [8602] = {.lex_state = 0, .external_lex_state = 2}, + [8603] = {.lex_state = 0}, + [8604] = {.lex_state = 0}, + [8605] = {.lex_state = 0}, + [8606] = {.lex_state = 344}, + [8607] = {.lex_state = 344}, + [8608] = {.lex_state = 0}, + [8609] = {.lex_state = 199}, + [8610] = {.lex_state = 202}, + [8611] = {.lex_state = 0}, + [8612] = {.lex_state = 0}, + [8613] = {.lex_state = 0}, + [8614] = {.lex_state = 199}, + [8615] = {.lex_state = 0}, + [8616] = {.lex_state = 199}, + [8617] = {.lex_state = 0}, + [8618] = {.lex_state = 0}, + [8619] = {.lex_state = 177}, + [8620] = {.lex_state = 116}, + [8621] = {.lex_state = 344}, + [8622] = {.lex_state = 202}, + [8623] = {.lex_state = 0}, + [8624] = {.lex_state = 0}, + [8625] = {.lex_state = 199}, + [8626] = {.lex_state = 0}, + [8627] = {.lex_state = 177}, + [8628] = {.lex_state = 0}, + [8629] = {.lex_state = 198}, + [8630] = {.lex_state = 242}, + [8631] = {.lex_state = 344}, + [8632] = {.lex_state = 202}, + [8633] = {.lex_state = 344}, + [8634] = {.lex_state = 344}, + [8635] = {.lex_state = 344}, + [8636] = {.lex_state = 0}, + [8637] = {.lex_state = 0}, + [8638] = {.lex_state = 199}, + [8639] = {.lex_state = 116}, + [8640] = {.lex_state = 116}, + [8641] = {.lex_state = 199}, + [8642] = {.lex_state = 116}, + [8643] = {.lex_state = 344}, + [8644] = {.lex_state = 177}, + [8645] = {.lex_state = 177}, + [8646] = {.lex_state = 177}, + [8647] = {.lex_state = 0}, + [8648] = {.lex_state = 102}, + [8649] = {.lex_state = 0}, + [8650] = {.lex_state = 0}, + [8651] = {.lex_state = 0}, + [8652] = {.lex_state = 0}, + [8653] = {.lex_state = 177}, + [8654] = {.lex_state = 176}, + [8655] = {.lex_state = 344}, + [8656] = {.lex_state = 199}, + [8657] = {.lex_state = 0}, + [8658] = {.lex_state = 177}, + [8659] = {.lex_state = 0}, + [8660] = {.lex_state = 344}, + [8661] = {.lex_state = 199}, + [8662] = {.lex_state = 0}, + [8663] = {.lex_state = 0, .external_lex_state = 2}, + [8664] = {.lex_state = 0}, + [8665] = {.lex_state = 199}, + [8666] = {.lex_state = 0}, + [8667] = {.lex_state = 0}, + [8668] = {.lex_state = 0}, + [8669] = {.lex_state = 0}, + [8670] = {.lex_state = 0}, + [8671] = {.lex_state = 0}, + [8672] = {.lex_state = 344}, + [8673] = {.lex_state = 0}, + [8674] = {.lex_state = 0}, + [8675] = {.lex_state = 199}, + [8676] = {.lex_state = 116}, + [8677] = {.lex_state = 177}, + [8678] = {.lex_state = 116}, + [8679] = {.lex_state = 202}, + [8680] = {.lex_state = 0}, + [8681] = {.lex_state = 0}, + [8682] = {.lex_state = 0}, + [8683] = {.lex_state = 0}, + [8684] = {.lex_state = 344}, + [8685] = {.lex_state = 344}, + [8686] = {.lex_state = 0}, + [8687] = {.lex_state = 177}, + [8688] = {.lex_state = 199}, + [8689] = {.lex_state = 0}, + [8690] = {.lex_state = 0}, + [8691] = {.lex_state = 0}, + [8692] = {.lex_state = 0}, + [8693] = {.lex_state = 0}, + [8694] = {.lex_state = 0}, + [8695] = {.lex_state = 0}, + [8696] = {.lex_state = 344}, + [8697] = {.lex_state = 0}, + [8698] = {.lex_state = 0}, + [8699] = {.lex_state = 0}, + [8700] = {.lex_state = 0}, + [8701] = {.lex_state = 0}, + [8702] = {.lex_state = 0}, + [8703] = {.lex_state = 199}, + [8704] = {.lex_state = 344}, + [8705] = {.lex_state = 202}, + [8706] = {.lex_state = 0}, + [8707] = {.lex_state = 0, .external_lex_state = 2}, + [8708] = {.lex_state = 0}, + [8709] = {.lex_state = 177}, + [8710] = {.lex_state = 0}, + [8711] = {.lex_state = 116}, + [8712] = {.lex_state = 0}, + [8713] = {.lex_state = 202}, + [8714] = {.lex_state = 0}, + [8715] = {.lex_state = 0}, + [8716] = {.lex_state = 0}, + [8717] = {.lex_state = 174}, + [8718] = {.lex_state = 0}, + [8719] = {.lex_state = 344}, + [8720] = {.lex_state = 0}, + [8721] = {.lex_state = 0}, + [8722] = {.lex_state = 0}, + [8723] = {.lex_state = 0}, + [8724] = {.lex_state = 0}, + [8725] = {.lex_state = 0}, + [8726] = {.lex_state = 0, .external_lex_state = 2}, + [8727] = {.lex_state = 344}, + [8728] = {.lex_state = 0}, + [8729] = {.lex_state = 116}, + [8730] = {.lex_state = 0}, + [8731] = {.lex_state = 0}, + [8732] = {.lex_state = 344}, + [8733] = {.lex_state = 0}, + [8734] = {.lex_state = 199}, + [8735] = {.lex_state = 0}, + [8736] = {.lex_state = 177}, + [8737] = {.lex_state = 0, .external_lex_state = 2}, + [8738] = {.lex_state = 0}, + [8739] = {.lex_state = 0}, + [8740] = {.lex_state = 177}, + [8741] = {.lex_state = 0}, + [8742] = {.lex_state = 344}, + [8743] = {.lex_state = 0}, + [8744] = {.lex_state = 0, .external_lex_state = 2}, + [8745] = {.lex_state = 0}, + [8746] = {.lex_state = 0}, + [8747] = {.lex_state = 0}, + [8748] = {.lex_state = 0, .external_lex_state = 2}, + [8749] = {.lex_state = 0}, + [8750] = {.lex_state = 0}, + [8751] = {.lex_state = 0}, + [8752] = {.lex_state = 0, .external_lex_state = 2}, + [8753] = {.lex_state = 0}, + [8754] = {.lex_state = 0, .external_lex_state = 2}, + [8755] = {.lex_state = 0}, + [8756] = {.lex_state = 0, .external_lex_state = 2}, + [8757] = {.lex_state = 0}, + [8758] = {.lex_state = 0, .external_lex_state = 2}, + [8759] = {.lex_state = 0}, + [8760] = {.lex_state = 0, .external_lex_state = 2}, + [8761] = {.lex_state = 0}, + [8762] = {.lex_state = 0, .external_lex_state = 2}, + [8763] = {.lex_state = 0}, + [8764] = {.lex_state = 0}, + [8765] = {.lex_state = 116}, + [8766] = {.lex_state = 344}, + [8767] = {.lex_state = 0}, + [8768] = {.lex_state = 344}, + [8769] = {.lex_state = 344}, + [8770] = {.lex_state = 344}, + [8771] = {.lex_state = 0}, + [8772] = {.lex_state = 0}, + [8773] = {.lex_state = 344}, + [8774] = {.lex_state = 0}, + [8775] = {.lex_state = 344}, + [8776] = {.lex_state = 0}, + [8777] = {.lex_state = 0}, + [8778] = {.lex_state = 0}, + [8779] = {.lex_state = 0}, + [8780] = {.lex_state = 0}, + [8781] = {.lex_state = 0}, + [8782] = {.lex_state = 344}, + [8783] = {.lex_state = 0}, + [8784] = {.lex_state = 0}, + [8785] = {.lex_state = 178}, + [8786] = {.lex_state = 0}, + [8787] = {.lex_state = 176}, + [8788] = {.lex_state = 344}, + [8789] = {.lex_state = 0}, + [8790] = {.lex_state = 176}, + [8791] = {.lex_state = 199}, + [8792] = {.lex_state = 0}, + [8793] = {.lex_state = 344}, + [8794] = {.lex_state = 178}, + [8795] = {.lex_state = 199}, + [8796] = {.lex_state = 0}, + [8797] = {.lex_state = 199}, + [8798] = {.lex_state = 344}, + [8799] = {.lex_state = 344}, + [8800] = {.lex_state = 0, .external_lex_state = 3}, + [8801] = {.lex_state = 177}, + [8802] = {.lex_state = 0}, + [8803] = {.lex_state = 0}, + [8804] = {.lex_state = 0}, + [8805] = {.lex_state = 344}, + [8806] = {.lex_state = 0}, + [8807] = {.lex_state = 0}, + [8808] = {.lex_state = 0}, + [8809] = {.lex_state = 0}, + [8810] = {.lex_state = 0}, + [8811] = {.lex_state = 0}, + [8812] = {.lex_state = 0}, + [8813] = {.lex_state = 0}, + [8814] = {.lex_state = 199}, + [8815] = {.lex_state = 199}, + [8816] = {.lex_state = 0}, + [8817] = {.lex_state = 0}, + [8818] = {.lex_state = 0}, + [8819] = {.lex_state = 0}, + [8820] = {.lex_state = 0}, + [8821] = {.lex_state = 0}, + [8822] = {.lex_state = 202}, + [8823] = {.lex_state = 0}, + [8824] = {.lex_state = 199}, + [8825] = {.lex_state = 0}, + [8826] = {.lex_state = 344}, + [8827] = {.lex_state = 199}, + [8828] = {.lex_state = 177}, + [8829] = {.lex_state = 0}, + [8830] = {.lex_state = 0}, + [8831] = {.lex_state = 0}, + [8832] = {.lex_state = 0}, + [8833] = {.lex_state = 0}, + [8834] = {.lex_state = 0}, + [8835] = {.lex_state = 0}, + [8836] = {.lex_state = 199}, + [8837] = {.lex_state = 199}, + [8838] = {.lex_state = 177}, + [8839] = {.lex_state = 202}, + [8840] = {.lex_state = 199}, + [8841] = {.lex_state = 0}, + [8842] = {.lex_state = 0}, + [8843] = {.lex_state = 177}, + [8844] = {.lex_state = 177}, + [8845] = {.lex_state = 0}, + [8846] = {.lex_state = 344}, + [8847] = {.lex_state = 0}, + [8848] = {.lex_state = 202}, + [8849] = {.lex_state = 0}, + [8850] = {.lex_state = 0}, + [8851] = {.lex_state = 0}, + [8852] = {.lex_state = 199}, + [8853] = {.lex_state = 0}, + [8854] = {.lex_state = 0}, + [8855] = {.lex_state = 202}, + [8856] = {.lex_state = 199}, + [8857] = {.lex_state = 177}, + [8858] = {.lex_state = 0}, + [8859] = {.lex_state = 0}, + [8860] = {.lex_state = 0, .external_lex_state = 3}, + [8861] = {.lex_state = 177}, + [8862] = {.lex_state = 344}, + [8863] = {.lex_state = 0}, + [8864] = {.lex_state = 116}, + [8865] = {.lex_state = 177}, + [8866] = {.lex_state = 0}, + [8867] = {.lex_state = 0}, + [8868] = {.lex_state = 0}, + [8869] = {.lex_state = 199}, + [8870] = {.lex_state = 177}, + [8871] = {.lex_state = 0}, + [8872] = {.lex_state = 0}, + [8873] = {.lex_state = 0}, + [8874] = {.lex_state = 0}, + [8875] = {.lex_state = 0}, + [8876] = {.lex_state = 0}, + [8877] = {.lex_state = 0}, + [8878] = {.lex_state = 0}, + [8879] = {.lex_state = 0}, + [8880] = {.lex_state = 0}, + [8881] = {.lex_state = 199}, + [8882] = {.lex_state = 199}, + [8883] = {.lex_state = 116}, + [8884] = {.lex_state = 0}, + [8885] = {.lex_state = 0}, + [8886] = {.lex_state = 344}, + [8887] = {.lex_state = 344}, + [8888] = {.lex_state = 0}, + [8889] = {.lex_state = 0}, + [8890] = {.lex_state = 116}, + [8891] = {.lex_state = 0}, + [8892] = {.lex_state = 0}, + [8893] = {.lex_state = 0}, + [8894] = {.lex_state = 0}, + [8895] = {.lex_state = 344}, + [8896] = {.lex_state = 0}, + [8897] = {.lex_state = 177}, + [8898] = {.lex_state = 202}, + [8899] = {.lex_state = 0}, + [8900] = {.lex_state = 0}, + [8901] = {.lex_state = 0}, + [8902] = {.lex_state = 0}, + [8903] = {.lex_state = 344}, + [8904] = {.lex_state = 344}, + [8905] = {.lex_state = 0}, + [8906] = {.lex_state = 116}, + [8907] = {.lex_state = 0}, + [8908] = {.lex_state = 0}, + [8909] = {.lex_state = 0}, + [8910] = {.lex_state = 0}, + [8911] = {.lex_state = 0}, + [8912] = {.lex_state = 0}, + [8913] = {.lex_state = 202}, + [8914] = {.lex_state = 0}, + [8915] = {.lex_state = 0}, + [8916] = {.lex_state = 0}, + [8917] = {.lex_state = 0}, + [8918] = {.lex_state = 0}, + [8919] = {.lex_state = 0, .external_lex_state = 3}, + [8920] = {.lex_state = 0}, + [8921] = {.lex_state = 0}, + [8922] = {.lex_state = 199}, + [8923] = {.lex_state = 0}, + [8924] = {.lex_state = 116}, + [8925] = {.lex_state = 0}, + [8926] = {.lex_state = 0}, + [8927] = {.lex_state = 0}, + [8928] = {.lex_state = 0}, + [8929] = {.lex_state = 0, .external_lex_state = 2}, + [8930] = {.lex_state = 0}, + [8931] = {.lex_state = 344}, + [8932] = {.lex_state = 0}, + [8933] = {.lex_state = 0}, + [8934] = {.lex_state = 0}, + [8935] = {.lex_state = 0}, + [8936] = {.lex_state = 0}, + [8937] = {.lex_state = 0}, + [8938] = {.lex_state = 0}, + [8939] = {.lex_state = 0}, + [8940] = {.lex_state = 0}, + [8941] = {.lex_state = 0}, + [8942] = {.lex_state = 0}, + [8943] = {.lex_state = 199}, + [8944] = {.lex_state = 199}, + [8945] = {.lex_state = 0}, + [8946] = {.lex_state = 0}, + [8947] = {.lex_state = 102}, + [8948] = {.lex_state = 344}, + [8949] = {.lex_state = 0}, + [8950] = {.lex_state = 199}, + [8951] = {.lex_state = 199}, + [8952] = {.lex_state = 177}, + [8953] = {.lex_state = 0}, + [8954] = {.lex_state = 0}, + [8955] = {.lex_state = 0}, + [8956] = {.lex_state = 199}, + [8957] = {.lex_state = 199}, + [8958] = {.lex_state = 177}, + [8959] = {.lex_state = 0}, + [8960] = {.lex_state = 0}, + [8961] = {.lex_state = 116}, + [8962] = {.lex_state = 116}, + [8963] = {.lex_state = 0}, + [8964] = {.lex_state = 0}, + [8965] = {.lex_state = 199}, + [8966] = {.lex_state = 344}, + [8967] = {.lex_state = 344}, + [8968] = {.lex_state = 344}, + [8969] = {.lex_state = 344}, + [8970] = {.lex_state = 177}, + [8971] = {.lex_state = 344}, + [8972] = {.lex_state = 177}, + [8973] = {.lex_state = 0}, + [8974] = {.lex_state = 0}, + [8975] = {.lex_state = 0}, + [8976] = {.lex_state = 202}, + [8977] = {.lex_state = 199}, + [8978] = {.lex_state = 0}, + [8979] = {.lex_state = 344}, + [8980] = {.lex_state = 0}, + [8981] = {.lex_state = 0}, + [8982] = {.lex_state = 177}, + [8983] = {.lex_state = 344}, + [8984] = {.lex_state = 0, .external_lex_state = 3}, + [8985] = {.lex_state = 0}, + [8986] = {.lex_state = 344}, + [8987] = {.lex_state = 199}, + [8988] = {.lex_state = 0}, + [8989] = {.lex_state = 0}, + [8990] = {.lex_state = 0}, + [8991] = {.lex_state = 0}, + [8992] = {.lex_state = 199}, + [8993] = {.lex_state = 0}, + [8994] = {.lex_state = 202}, + [8995] = {.lex_state = 199}, + [8996] = {.lex_state = 0}, + [8997] = {.lex_state = 344}, + [8998] = {.lex_state = 344}, + [8999] = {.lex_state = 344}, + [9000] = {.lex_state = 0}, + [9001] = {.lex_state = 344}, + [9002] = {.lex_state = 177}, + [9003] = {.lex_state = 0}, + [9004] = {.lex_state = 199}, + [9005] = {.lex_state = 0}, + [9006] = {.lex_state = 344}, + [9007] = {.lex_state = 0}, + [9008] = {.lex_state = 344}, + [9009] = {.lex_state = 344}, + [9010] = {.lex_state = 0, .external_lex_state = 3}, + [9011] = {.lex_state = 0}, + [9012] = {.lex_state = 116}, + [9013] = {.lex_state = 199}, + [9014] = {.lex_state = 0}, + [9015] = {.lex_state = 0}, + [9016] = {.lex_state = 202}, + [9017] = {.lex_state = 0}, + [9018] = {.lex_state = 344}, + [9019] = {.lex_state = 344}, + [9020] = {.lex_state = 344}, + [9021] = {.lex_state = 0}, + [9022] = {.lex_state = 344}, + [9023] = {.lex_state = 0}, + [9024] = {.lex_state = 0}, + [9025] = {.lex_state = 199}, + [9026] = {.lex_state = 344}, + [9027] = {.lex_state = 0}, + [9028] = {.lex_state = 199}, + [9029] = {.lex_state = 344}, + [9030] = {.lex_state = 0, .external_lex_state = 3}, + [9031] = {.lex_state = 0}, + [9032] = {.lex_state = 0}, + [9033] = {.lex_state = 0}, + [9034] = {.lex_state = 0}, + [9035] = {.lex_state = 0}, + [9036] = {.lex_state = 202}, + [9037] = {.lex_state = 0}, + [9038] = {.lex_state = 344}, + [9039] = {.lex_state = 344}, + [9040] = {.lex_state = 344}, + [9041] = {.lex_state = 0}, + [9042] = {.lex_state = 344}, + [9043] = {.lex_state = 0}, + [9044] = {.lex_state = 0}, + [9045] = {.lex_state = 344}, + [9046] = {.lex_state = 177}, + [9047] = {.lex_state = 0}, + [9048] = {.lex_state = 344}, + [9049] = {.lex_state = 0, .external_lex_state = 3}, + [9050] = {.lex_state = 0}, + [9051] = {.lex_state = 0}, + [9052] = {.lex_state = 344}, + [9053] = {.lex_state = 0}, + [9054] = {.lex_state = 0}, + [9055] = {.lex_state = 202}, + [9056] = {.lex_state = 0}, + [9057] = {.lex_state = 344}, + [9058] = {.lex_state = 344}, + [9059] = {.lex_state = 0}, + [9060] = {.lex_state = 344}, + [9061] = {.lex_state = 344}, + [9062] = {.lex_state = 0}, + [9063] = {.lex_state = 0}, + [9064] = {.lex_state = 0}, + [9065] = {.lex_state = 344}, + [9066] = {.lex_state = 0, .external_lex_state = 3}, + [9067] = {.lex_state = 199}, + [9068] = {.lex_state = 199}, + [9069] = {.lex_state = 0}, + [9070] = {.lex_state = 0}, + [9071] = {.lex_state = 177}, + [9072] = {.lex_state = 344}, + [9073] = {.lex_state = 344}, + [9074] = {.lex_state = 344}, + [9075] = {.lex_state = 0}, + [9076] = {.lex_state = 0, .external_lex_state = 3}, + [9077] = {.lex_state = 0}, + [9078] = {.lex_state = 199}, + [9079] = {.lex_state = 0}, + [9080] = {.lex_state = 0}, + [9081] = {.lex_state = 344}, + [9082] = {.lex_state = 344}, + [9083] = {.lex_state = 344}, + [9084] = {.lex_state = 0}, + [9085] = {.lex_state = 0, .external_lex_state = 3}, + [9086] = {.lex_state = 0}, + [9087] = {.lex_state = 0}, + [9088] = {.lex_state = 344}, + [9089] = {.lex_state = 344}, + [9090] = {.lex_state = 344}, + [9091] = {.lex_state = 0, .external_lex_state = 3}, + [9092] = {.lex_state = 0}, + [9093] = {.lex_state = 344}, + [9094] = {.lex_state = 0, .external_lex_state = 3}, + [9095] = {.lex_state = 0}, + [9096] = {.lex_state = 344}, + [9097] = {.lex_state = 0, .external_lex_state = 3}, + [9098] = {.lex_state = 0}, + [9099] = {.lex_state = 0, .external_lex_state = 3}, + [9100] = {.lex_state = 0}, + [9101] = {.lex_state = 0, .external_lex_state = 3}, + [9102] = {.lex_state = 0}, + [9103] = {.lex_state = 0, .external_lex_state = 3}, + [9104] = {.lex_state = 0}, + [9105] = {.lex_state = 0, .external_lex_state = 3}, + [9106] = {.lex_state = 0}, + [9107] = {.lex_state = 0, .external_lex_state = 3}, + [9108] = {.lex_state = 0}, + [9109] = {.lex_state = 0}, + [9110] = {.lex_state = 0}, + [9111] = {.lex_state = 344}, + [9112] = {.lex_state = 344}, + [9113] = {.lex_state = 199}, + [9114] = {.lex_state = 0}, + [9115] = {.lex_state = 344}, + [9116] = {.lex_state = 344}, + [9117] = {.lex_state = 0}, + [9118] = {.lex_state = 0}, + [9119] = {.lex_state = 0}, + [9120] = {.lex_state = 0}, + [9121] = {.lex_state = 199}, + [9122] = {.lex_state = 0}, + [9123] = {.lex_state = 0}, + [9124] = {.lex_state = 0}, + [9125] = {.lex_state = 177}, + [9126] = {.lex_state = 0}, + [9127] = {.lex_state = 344}, + [9128] = {.lex_state = 344}, + [9129] = {.lex_state = 199}, + [9130] = {.lex_state = 199}, + [9131] = {.lex_state = 0, .external_lex_state = 3}, + [9132] = {.lex_state = 199}, + [9133] = {.lex_state = 177}, + [9134] = {.lex_state = 0}, + [9135] = {.lex_state = 0}, + [9136] = {.lex_state = 0}, + [9137] = {.lex_state = 199}, + [9138] = {.lex_state = 199}, + [9139] = {.lex_state = 0}, + [9140] = {.lex_state = 0}, + [9141] = {.lex_state = 202}, + [9142] = {.lex_state = 0}, + [9143] = {.lex_state = 0}, + [9144] = {.lex_state = 0}, + [9145] = {.lex_state = 344}, + [9146] = {.lex_state = 0}, + [9147] = {.lex_state = 116}, + [9148] = {.lex_state = 0}, + [9149] = {.lex_state = 0}, + [9150] = {.lex_state = 0}, + [9151] = {.lex_state = 177}, + [9152] = {.lex_state = 177}, + [9153] = {.lex_state = 0}, + [9154] = {.lex_state = 0}, + [9155] = {.lex_state = 0}, + [9156] = {.lex_state = 0}, + [9157] = {.lex_state = 0}, + [9158] = {.lex_state = 0}, + [9159] = {.lex_state = 0}, + [9160] = {.lex_state = 0}, + [9161] = {.lex_state = 199}, + [9162] = {.lex_state = 0}, + [9163] = {.lex_state = 202}, + [9164] = {.lex_state = 0}, + [9165] = {.lex_state = 0}, + [9166] = {.lex_state = 0}, + [9167] = {.lex_state = 0}, + [9168] = {.lex_state = 0}, + [9169] = {.lex_state = 0}, + [9170] = {.lex_state = 202}, + [9171] = {.lex_state = 199}, + [9172] = {.lex_state = 0}, + [9173] = {.lex_state = 0}, + [9174] = {.lex_state = 199}, + [9175] = {.lex_state = 0}, + [9176] = {.lex_state = 0}, + [9177] = {.lex_state = 0}, + [9178] = {.lex_state = 0}, + [9179] = {.lex_state = 199}, + [9180] = {.lex_state = 0}, + [9181] = {.lex_state = 199}, + [9182] = {.lex_state = 0}, + [9183] = {.lex_state = 0}, + [9184] = {.lex_state = 0}, + [9185] = {.lex_state = 344}, + [9186] = {.lex_state = 0}, + [9187] = {.lex_state = 0}, + [9188] = {.lex_state = 0}, + [9189] = {.lex_state = 199}, + [9190] = {.lex_state = 0}, + [9191] = {.lex_state = 177}, + [9192] = {.lex_state = 0}, + [9193] = {.lex_state = 202}, + [9194] = {.lex_state = 0}, + [9195] = {.lex_state = 0}, + [9196] = {.lex_state = 344}, + [9197] = {.lex_state = 344}, + [9198] = {.lex_state = 199}, + [9199] = {.lex_state = 0}, + [9200] = {.lex_state = 344}, + [9201] = {.lex_state = 0}, + [9202] = {.lex_state = 116}, + [9203] = {.lex_state = 0}, + [9204] = {.lex_state = 199}, + [9205] = {.lex_state = 0, .external_lex_state = 3}, + [9206] = {.lex_state = 0}, + [9207] = {.lex_state = 0}, + [9208] = {.lex_state = 0}, + [9209] = {.lex_state = 0}, + [9210] = {.lex_state = 344}, + [9211] = {.lex_state = 344}, + [9212] = {.lex_state = 199}, + [9213] = {.lex_state = 0}, + [9214] = {.lex_state = 0}, + [9215] = {.lex_state = 199}, + [9216] = {.lex_state = 0, .external_lex_state = 3}, + [9217] = {.lex_state = 199}, + [9218] = {.lex_state = 0}, + [9219] = {.lex_state = 0, .external_lex_state = 2}, + [9220] = {.lex_state = 344}, + [9221] = {.lex_state = 199}, + [9222] = {.lex_state = 202}, + [9223] = {.lex_state = 0}, + [9224] = {.lex_state = 199}, + [9225] = {.lex_state = 0, .external_lex_state = 3}, + [9226] = {.lex_state = 116}, + [9227] = {.lex_state = 199}, + [9228] = {.lex_state = 344}, + [9229] = {.lex_state = 199}, + [9230] = {.lex_state = 202}, + [9231] = {.lex_state = 0}, + [9232] = {.lex_state = 199}, + [9233] = {.lex_state = 0, .external_lex_state = 3}, + [9234] = {.lex_state = 199}, + [9235] = {.lex_state = 344}, + [9236] = {.lex_state = 199}, + [9237] = {.lex_state = 0}, + [9238] = {.lex_state = 199}, + [9239] = {.lex_state = 0, .external_lex_state = 3}, + [9240] = {.lex_state = 0}, + [9241] = {.lex_state = 199}, + [9242] = {.lex_state = 0, .external_lex_state = 3}, + [9243] = {.lex_state = 116}, + [9244] = {.lex_state = 0, .external_lex_state = 3}, + [9245] = {.lex_state = 0}, + [9246] = {.lex_state = 0, .external_lex_state = 3}, + [9247] = {.lex_state = 116}, + [9248] = {.lex_state = 0, .external_lex_state = 3}, + [9249] = {.lex_state = 0}, + [9250] = {.lex_state = 0, .external_lex_state = 3}, + [9251] = {.lex_state = 0}, + [9252] = {.lex_state = 0, .external_lex_state = 3}, + [9253] = {.lex_state = 116}, + [9254] = {.lex_state = 0, .external_lex_state = 3}, + [9255] = {.lex_state = 0}, + [9256] = {.lex_state = 0, .external_lex_state = 3}, + [9257] = {.lex_state = 199}, + [9258] = {.lex_state = 0, .external_lex_state = 3}, + [9259] = {.lex_state = 0}, + [9260] = {.lex_state = 0, .external_lex_state = 3}, + [9261] = {.lex_state = 344}, + [9262] = {.lex_state = 344}, + [9263] = {.lex_state = 0}, + [9264] = {.lex_state = 344}, + [9265] = {.lex_state = 344}, + [9266] = {.lex_state = 344}, + [9267] = {.lex_state = 344}, + [9268] = {.lex_state = 344}, + [9269] = {.lex_state = 0}, + [9270] = {.lex_state = 344}, + [9271] = {.lex_state = 344}, + [9272] = {.lex_state = 199}, + [9273] = {.lex_state = 344}, + [9274] = {.lex_state = 344}, + [9275] = {.lex_state = 102}, + [9276] = {.lex_state = 344}, + [9277] = {.lex_state = 344}, + [9278] = {.lex_state = 344}, + [9279] = {.lex_state = 344}, + [9280] = {.lex_state = 344}, + [9281] = {.lex_state = 344}, + [9282] = {.lex_state = 344}, + [9283] = {.lex_state = 344}, + [9284] = {.lex_state = 344}, + [9285] = {.lex_state = 344}, + [9286] = {.lex_state = 344}, + [9287] = {.lex_state = 0}, + [9288] = {.lex_state = 0}, + [9289] = {.lex_state = 0}, + [9290] = {.lex_state = 0}, + [9291] = {.lex_state = 0}, + [9292] = {.lex_state = 344}, + [9293] = {.lex_state = 344}, + [9294] = {.lex_state = 344}, + [9295] = {.lex_state = 344}, + [9296] = {.lex_state = 344}, + [9297] = {.lex_state = 199}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { + [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [aux_sym_preproc_include_token1] = ACTIONS(1), @@ -29967,6 +41448,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(1), [aux_sym_preproc_else_token1] = ACTIONS(1), [aux_sym_preproc_elif_token1] = ACTIONS(1), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1), [sym_preproc_directive] = ACTIONS(1), [anon_sym_LPAREN2] = ACTIONS(1), [anon_sym_defined] = ACTIONS(1), @@ -29991,9 +41474,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1), [anon_sym_GT_GT] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), + [anon_sym___extension__] = ACTIONS(1), [anon_sym_typedef] = ACTIONS(1), + [anon_sym_virtual] = ACTIONS(1), [anon_sym_extern] = ACTIONS(1), [anon_sym___attribute__] = ACTIONS(1), + [anon_sym___attribute] = ACTIONS(1), [anon_sym_COLON_COLON] = ACTIONS(1), [anon_sym_LBRACK_LBRACK] = ACTIONS(1), [anon_sym___declspec] = ACTIONS(1), @@ -30011,23 +41497,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___unaligned] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), - [anon_sym_static] = ACTIONS(1), [anon_sym_register] = ACTIONS(1), [anon_sym_inline] = ACTIONS(1), + [anon_sym___inline] = ACTIONS(1), + [anon_sym___inline__] = ACTIONS(1), + [anon_sym___forceinline] = ACTIONS(1), [anon_sym_thread_local] = ACTIONS(1), + [anon_sym___thread] = ACTIONS(1), [anon_sym_const] = ACTIONS(1), + [anon_sym_constexpr] = ACTIONS(1), [anon_sym_volatile] = ACTIONS(1), [anon_sym_restrict] = ACTIONS(1), + [anon_sym___restrict__] = ACTIONS(1), [anon_sym__Atomic] = ACTIONS(1), + [anon_sym__Noreturn] = ACTIONS(1), + [anon_sym_noreturn] = ACTIONS(1), + [anon_sym__Nonnull] = ACTIONS(1), [anon_sym_mutable] = ACTIONS(1), - [anon_sym_constexpr] = ACTIONS(1), - [anon_sym_signed] = ACTIONS(1), - [anon_sym_unsigned] = ACTIONS(1), - [anon_sym_long] = ACTIONS(1), - [anon_sym_short] = ACTIONS(1), + [anon_sym_constinit] = ACTIONS(1), + [anon_sym_consteval] = ACTIONS(1), + [anon_sym_alignas] = ACTIONS(1), + [anon_sym__Alignas] = ACTIONS(1), [sym_primitive_type] = ACTIONS(1), [anon_sym_enum] = ACTIONS(1), [anon_sym_class] = ACTIONS(1), @@ -30046,6 +41544,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1), [anon_sym_continue] = ACTIONS(1), [anon_sym_goto] = ACTIONS(1), + [anon_sym___try] = ACTIONS(1), + [anon_sym___except] = ACTIONS(1), + [anon_sym___finally] = ACTIONS(1), + [anon_sym___leave] = ACTIONS(1), [anon_sym_QMARK] = ACTIONS(1), [anon_sym_STAR_EQ] = ACTIONS(1), [anon_sym_SLASH_EQ] = ACTIONS(1), @@ -30057,10 +41559,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(1), [anon_sym_CARET_EQ] = ACTIONS(1), [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_and_eq] = ACTIONS(1), + [anon_sym_or_eq] = ACTIONS(1), + [anon_sym_xor_eq] = ACTIONS(1), + [anon_sym_not] = ACTIONS(1), + [anon_sym_compl] = ACTIONS(1), + [anon_sym_LT_EQ_GT] = ACTIONS(1), + [anon_sym_or] = ACTIONS(1), + [anon_sym_and] = ACTIONS(1), + [anon_sym_bitor] = ACTIONS(1), + [anon_sym_xor] = ACTIONS(1), + [anon_sym_bitand] = ACTIONS(1), + [anon_sym_not_eq] = ACTIONS(1), [anon_sym_DASH_DASH] = ACTIONS(1), [anon_sym_PLUS_PLUS] = ACTIONS(1), [anon_sym_sizeof] = ACTIONS(1), + [anon_sym___alignof__] = ACTIONS(1), + [anon_sym___alignof] = ACTIONS(1), + [anon_sym__alignof] = ACTIONS(1), + [anon_sym_alignof] = ACTIONS(1), + [anon_sym__Alignof] = ACTIONS(1), + [anon_sym_offsetof] = ACTIONS(1), + [anon_sym__Generic] = ACTIONS(1), + [anon_sym_asm] = ACTIONS(1), + [anon_sym___asm__] = ACTIONS(1), + [anon_sym___asm] = ACTIONS(1), + [anon_sym___volatile__] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), + [anon_sym_DOT_STAR] = ACTIONS(1), [anon_sym_DASH_GT] = ACTIONS(1), [sym_number_literal] = ACTIONS(1), [anon_sym_L_SQUOTE] = ACTIONS(1), @@ -30075,38 +41601,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1), [sym_true] = ACTIONS(1), [sym_false] = ACTIONS(1), - [sym_null] = ACTIONS(1), + [anon_sym_NULL] = ACTIONS(1), + [anon_sym_nullptr] = ACTIONS(1), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1), [anon_sym_decltype] = ACTIONS(1), [anon_sym_final] = ACTIONS(1), [anon_sym_override] = ACTIONS(1), - [anon_sym_virtual] = ACTIONS(1), [anon_sym_explicit] = ACTIONS(1), - [anon_sym_public] = ACTIONS(1), - [anon_sym_private] = ACTIONS(1), - [anon_sym_protected] = ACTIONS(1), - [sym_auto] = ACTIONS(1), [anon_sym_typename] = ACTIONS(1), [anon_sym_template] = ACTIONS(1), [anon_sym_GT2] = ACTIONS(1), [anon_sym_operator] = ACTIONS(1), + [anon_sym_try] = ACTIONS(1), [anon_sym_delete] = ACTIONS(1), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(1), [anon_sym_friend] = ACTIONS(1), + [anon_sym_public] = ACTIONS(1), + [anon_sym_private] = ACTIONS(1), + [anon_sym_protected] = ACTIONS(1), [anon_sym_noexcept] = ACTIONS(1), [anon_sym_throw] = ACTIONS(1), [anon_sym_namespace] = ACTIONS(1), [anon_sym_using] = ACTIONS(1), [anon_sym_static_assert] = ACTIONS(1), + [anon_sym_concept] = ACTIONS(1), [anon_sym_co_return] = ACTIONS(1), [anon_sym_co_yield] = ACTIONS(1), - [anon_sym_try] = ACTIONS(1), [anon_sym_catch] = ACTIONS(1), + [anon_sym_R_DQUOTE] = ACTIONS(1), + [anon_sym_LR_DQUOTE] = ACTIONS(1), + [anon_sym_uR_DQUOTE] = ACTIONS(1), + [anon_sym_UR_DQUOTE] = ACTIONS(1), + [anon_sym_u8R_DQUOTE] = ACTIONS(1), [anon_sym_co_await] = ACTIONS(1), [anon_sym_new] = ACTIONS(1), + [anon_sym_requires] = ACTIONS(1), [anon_sym_DASH_GT_STAR] = ACTIONS(1), [anon_sym_LBRACK_RBRACK] = ACTIONS(1), [sym_this] = ACTIONS(1), - [sym_nullptr] = ACTIONS(1), [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1), [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1), [anon_sym_FORWARD] = ACTIONS(1), @@ -30124,7 +41657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1), [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1), [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1), + [sym_macro_statement] = ACTIONS(1), [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1), [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1), [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1), @@ -30194,10 +41727,361 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1), [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1), [anon_sym_JS_PUBLIC_API] = ACTIONS(1), - [sym_raw_string_literal] = ACTIONS(1), - }, - [1] = { - [sym_translation_unit] = STATE(4954), + [sym_raw_string_delimiter] = ACTIONS(1), + [sym_raw_string_content] = ACTIONS(1), + }, + [STATE(1)] = { + [sym_translation_unit] = STATE(8910), + [sym__top_level_item] = STATE(80), + [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(1620), + [sym__declaration_specifiers] = STATE(4973), + [sym_linkage_specification] = STATE(80), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1100), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6643), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(80), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1455), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(600), + [sym__top_level_statement] = STATE(80), + [sym_labeled_statement] = STATE(80), + [sym__top_level_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_expression] = STATE(5179), + [sym__string] = STATE(5184), + [sym_conditional_expression] = STATE(5247), + [sym_assignment_expression] = STATE(5247), + [sym_pointer_expression] = STATE(4072), + [sym_unary_expression] = STATE(5247), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(5247), + [sym_cast_expression] = STATE(5247), + [sym_sizeof_expression] = STATE(5247), + [sym_alignof_expression] = STATE(5247), + [sym_offsetof_expression] = STATE(5247), + [sym_generic_expression] = STATE(5247), + [sym_subscript_expression] = STATE(4072), + [sym_call_expression] = STATE(4072), + [sym_gnu_asm_expression] = STATE(5247), + [sym_extension_expression] = STATE(5247), + [sym_field_expression] = STATE(4072), + [sym_compound_literal_expression] = STATE(5247), + [sym_parenthesized_expression] = STATE(4072), + [sym_char_literal] = STATE(5184), + [sym_concatenated_string] = STATE(5184), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(5247), + [sym__empty_declaration] = STATE(80), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1033), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(80), + [sym_template_instantiation] = STATE(80), + [sym_operator_cast] = STATE(7099), + [sym__constructor_specifiers] = STATE(1033), + [sym_operator_cast_definition] = STATE(80), + [sym_operator_cast_declaration] = STATE(80), + [sym_constructor_or_destructor_definition] = STATE(80), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(5191), + [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(3517), + [sym_co_await_expression] = STATE(5247), + [sym_new_expression] = STATE(5247), + [sym_delete_expression] = STATE(5247), + [sym_requires_clause] = STATE(5247), + [sym_requires_expression] = STATE(5247), + [sym_lambda_expression] = STATE(5247), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(5247), + [sym_parameter_pack_expansion] = STATE(5247), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3943), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7099), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(4072), + [sym_alone_macro_call] = STATE(80), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_translation_unit_repeat1] = STATE(80), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(800), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1033), + [ts_builtin_sym_end] = ACTIONS(5), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym___extension__] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(41), + [anon_sym___attribute__] = ACTIONS(43), + [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(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(59), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(63), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(83), + [anon_sym_default] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(113), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(119), + [sym_false] = ACTIONS(119), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(131), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_namespace] = ACTIONS(141), + [anon_sym_using] = ACTIONS(143), + [anon_sym_static_assert] = ACTIONS(145), + [anon_sym_concept] = ACTIONS(147), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(119), + [sym_alone_macro] = ACTIONS(161), + [aux_sym_alone_macro_call_token1] = ACTIONS(163), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(2)] = { + [sym__block_item] = STATE(38), [sym_preproc_include] = STATE(38), [sym_preproc_def] = STATE(38), [sym_preproc_function_def] = STATE(38), @@ -30207,730 +42091,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(38), [sym_declaration] = STATE(38), [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3013), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1170), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3721), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1371), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(38), - [sym_labeled_statement] = STATE(38), - [sym_expression_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_switch_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_statement] = STATE(38), - [sym_for_statement] = STATE(38), - [sym_return_statement] = STATE(38), - [sym_break_statement] = STATE(38), - [sym_continue_statement] = STATE(38), - [sym_goto_statement] = STATE(38), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(38), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4599), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7698), + [sym_initializer_pair] = STATE(7698), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), [sym__empty_declaration] = STATE(38), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(839), - [sym_dependent_type] = STATE(1358), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), [sym_template_declaration] = STATE(38), [sym_template_instantiation] = STATE(38), - [sym_operator_cast] = STATE(4028), - [sym__constructor_specifiers] = STATE(839), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), [sym_operator_cast_definition] = STATE(38), [sym_operator_cast_declaration] = STATE(38), [sym_constructor_or_destructor_definition] = STATE(38), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), [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_for_range_loop] = STATE(38), - [sym_co_return_statement] = STATE(38), - [sym_co_yield_statement] = STATE(38), - [sym_throw_statement] = STATE(38), - [sym_try_statement] = STATE(38), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4028), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(38), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(839), - [ts_builtin_sym_end] = ACTIONS(5), - [sym_identifier] = ACTIONS(7), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), - [anon_sym_extern] = ACTIONS(37), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(115), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_namespace] = ACTIONS(123), - [anon_sym_using] = ACTIONS(125), - [anon_sym_static_assert] = ACTIONS(127), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(139), - [aux_sym_alone_macro_call_token1] = ACTIONS(141), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [2] = { - [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(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(62), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(62), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_case_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), - [sym__expression] = STATE(2712), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4330), - [sym_initializer_pair] = STATE(4330), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(62), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(62), - [sym_template_instantiation] = STATE(62), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(62), - [sym_operator_cast_declaration] = STATE(62), - [sym_constructor_or_destructor_definition] = STATE(62), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(62), - [sym_using_declaration] = STATE(62), - [sym_alias_declaration] = STATE(62), - [sym_static_assert_declaration] = STATE(62), - [sym_for_range_loop] = STATE(62), - [sym_co_return_statement] = STATE(62), - [sym_co_yield_statement] = STATE(62), - [sym_throw_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(62), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(62), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(155), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(215), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [3] = { - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_function_definition] = STATE(32), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_case_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_goto_statement] = STATE(32), - [sym__expression] = STATE(2712), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4330), - [sym_initializer_pair] = STATE(4330), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(32), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(32), - [sym_template_instantiation] = STATE(32), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(32), - [sym_operator_cast_declaration] = STATE(32), - [sym_constructor_or_destructor_definition] = STATE(32), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(32), - [sym_using_declaration] = STATE(32), - [sym_alias_declaration] = STATE(32), - [sym_static_assert_declaration] = STATE(32), - [sym_for_range_loop] = STATE(32), - [sym_co_return_statement] = STATE(32), - [sym_co_yield_statement] = STATE(32), - [sym_throw_statement] = STATE(32), - [sym_try_statement] = STATE(32), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(32), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(155), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [sym_concept_definition] = STATE(38), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(169), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(175), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -30939,306 +42232,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(219), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(221), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [4] = { - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(33), - [sym_labeled_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__expression] = STATE(2712), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4330), - [sym_initializer_pair] = STATE(4330), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(33), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(33), - [sym_using_declaration] = STATE(33), - [sym_alias_declaration] = STATE(33), - [sym_static_assert_declaration] = STATE(33), - [sym_for_range_loop] = STATE(33), - [sym_co_return_statement] = STATE(33), - [sym_co_yield_statement] = STATE(33), - [sym_throw_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(33), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(155), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(191), + [anon_sym_RBRACE] = ACTIONS(193), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(3)] = { + [sym__block_item] = STATE(58), + [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(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(58), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4599), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7698), + [sym_initializer_pair] = STATE(7698), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(169), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(175), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -31247,306 +42591,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(223), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(225), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [5] = { - [sym_preproc_include] = STATE(36), - [sym_preproc_def] = STATE(36), - [sym_preproc_function_def] = STATE(36), - [sym_preproc_call] = STATE(36), - [sym_preproc_if] = STATE(36), - [sym_preproc_ifdef] = STATE(36), - [sym_function_definition] = STATE(36), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym__expression] = STATE(2712), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4330), - [sym_initializer_pair] = STATE(4330), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(36), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(36), - [sym_template_instantiation] = STATE(36), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(36), - [sym_operator_cast_declaration] = STATE(36), - [sym_constructor_or_destructor_definition] = STATE(36), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(36), - [sym_using_declaration] = STATE(36), - [sym_alias_declaration] = STATE(36), - [sym_static_assert_declaration] = STATE(36), - [sym_for_range_loop] = STATE(36), - [sym_co_return_statement] = STATE(36), - [sym_co_yield_statement] = STATE(36), - [sym_throw_statement] = STATE(36), - [sym_try_statement] = STATE(36), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(36), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(155), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(191), + [anon_sym_RBRACE] = ACTIONS(249), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(4)] = { + [sym__block_item] = STATE(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(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(51), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4599), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7698), + [sym_initializer_pair] = STATE(7698), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(51), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(51), + [sym_template_instantiation] = STATE(51), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(51), + [sym_operator_cast_declaration] = STATE(51), + [sym_constructor_or_destructor_definition] = STATE(51), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(51), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(169), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(175), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -31555,306 +42950,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(229), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [6] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(37), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(2712), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4330), - [sym_initializer_pair] = STATE(4330), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(37), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(37), - [sym_template_instantiation] = STATE(37), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(37), - [sym_operator_cast_declaration] = STATE(37), - [sym_constructor_or_destructor_definition] = STATE(37), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(37), - [sym_using_declaration] = STATE(37), - [sym_alias_declaration] = STATE(37), - [sym_static_assert_declaration] = STATE(37), - [sym_for_range_loop] = STATE(37), - [sym_co_return_statement] = STATE(37), - [sym_co_yield_statement] = STATE(37), - [sym_throw_statement] = STATE(37), - [sym_try_statement] = STATE(37), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(37), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(155), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(191), + [anon_sym_RBRACE] = ACTIONS(251), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(5)] = { + [sym__block_item] = STATE(60), + [sym_preproc_include] = STATE(60), + [sym_preproc_def] = STATE(60), + [sym_preproc_function_def] = STATE(60), + [sym_preproc_call] = STATE(60), + [sym_preproc_if] = STATE(60), + [sym_preproc_ifdef] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(60), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(60), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4599), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7698), + [sym_initializer_pair] = STATE(7698), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(60), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(60), + [sym_template_instantiation] = STATE(60), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(60), + [sym_operator_cast_declaration] = STATE(60), + [sym_constructor_or_destructor_definition] = STATE(60), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(60), + [sym_namespace_alias_definition] = STATE(60), + [sym_using_declaration] = STATE(60), + [sym_alias_declaration] = STATE(60), + [sym_static_assert_declaration] = STATE(60), + [sym_concept_definition] = STATE(60), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(60), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(169), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(175), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -31863,306 +43309,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(233), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [7] = { - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_function_definition] = STATE(32), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_case_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_goto_statement] = STATE(32), - [sym__expression] = STATE(2712), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4330), - [sym_initializer_pair] = STATE(4330), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(32), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(32), - [sym_template_instantiation] = STATE(32), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(32), - [sym_operator_cast_declaration] = STATE(32), - [sym_constructor_or_destructor_definition] = STATE(32), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(32), - [sym_using_declaration] = STATE(32), - [sym_alias_declaration] = STATE(32), - [sym_static_assert_declaration] = STATE(32), - [sym_for_range_loop] = STATE(32), - [sym_co_return_statement] = STATE(32), - [sym_co_yield_statement] = STATE(32), - [sym_throw_statement] = STATE(32), - [sym_try_statement] = STATE(32), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(32), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(155), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(191), + [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(6)] = { + [sym__block_item] = STATE(60), + [sym_preproc_include] = STATE(60), + [sym_preproc_def] = STATE(60), + [sym_preproc_function_def] = STATE(60), + [sym_preproc_call] = STATE(60), + [sym_preproc_if] = STATE(60), + [sym_preproc_ifdef] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(60), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(60), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4599), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7698), + [sym_initializer_pair] = STATE(7698), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(60), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(60), + [sym_template_instantiation] = STATE(60), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(60), + [sym_operator_cast_declaration] = STATE(60), + [sym_constructor_or_destructor_definition] = STATE(60), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(60), + [sym_namespace_alias_definition] = STATE(60), + [sym_using_declaration] = STATE(60), + [sym_alias_declaration] = STATE(60), + [sym_static_assert_declaration] = STATE(60), + [sym_concept_definition] = STATE(60), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(60), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(169), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(175), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -32171,306 +43668,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(235), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(221), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [8] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(2712), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4330), - [sym_initializer_pair] = STATE(4330), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(50), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(50), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(155), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(191), + [anon_sym_RBRACE] = ACTIONS(255), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(7)] = { + [sym__block_item] = STATE(38), + [sym_preproc_include] = STATE(38), + [sym_preproc_def] = STATE(38), + [sym_preproc_function_def] = STATE(38), + [sym_preproc_call] = STATE(38), + [sym_preproc_if] = STATE(38), + [sym_preproc_ifdef] = STATE(38), + [sym_function_definition] = STATE(38), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(38), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4599), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7698), + [sym_initializer_pair] = STATE(7698), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(38), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(38), + [sym_template_instantiation] = STATE(38), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(38), + [sym_operator_cast_declaration] = STATE(38), + [sym_constructor_or_destructor_definition] = STATE(38), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(169), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(175), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -32479,306 +44027,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(239), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [9] = { - [sym_preproc_include] = STATE(65), - [sym_preproc_def] = STATE(65), - [sym_preproc_function_def] = STATE(65), - [sym_preproc_call] = STATE(65), - [sym_preproc_if] = STATE(65), - [sym_preproc_ifdef] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(65), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(65), - [sym_labeled_statement] = STATE(65), - [sym_expression_statement] = STATE(65), - [sym_if_statement] = STATE(65), - [sym_switch_statement] = STATE(65), - [sym_case_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_do_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_return_statement] = STATE(65), - [sym_break_statement] = STATE(65), - [sym_continue_statement] = STATE(65), - [sym_goto_statement] = STATE(65), - [sym__expression] = STATE(2712), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4330), - [sym_initializer_pair] = STATE(4330), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(65), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(65), - [sym_template_instantiation] = STATE(65), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(65), - [sym_operator_cast_declaration] = STATE(65), - [sym_constructor_or_destructor_definition] = STATE(65), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(65), - [sym_using_declaration] = STATE(65), - [sym_alias_declaration] = STATE(65), - [sym_static_assert_declaration] = STATE(65), - [sym_for_range_loop] = STATE(65), - [sym_co_return_statement] = STATE(65), - [sym_co_yield_statement] = STATE(65), - [sym_throw_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(65), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(65), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(155), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(191), + [anon_sym_RBRACE] = ACTIONS(257), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(8)] = { + [sym__block_item] = STATE(48), + [sym_preproc_include] = STATE(48), + [sym_preproc_def] = STATE(48), + [sym_preproc_function_def] = STATE(48), + [sym_preproc_call] = STATE(48), + [sym_preproc_if] = STATE(48), + [sym_preproc_ifdef] = STATE(48), + [sym_function_definition] = STATE(48), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(48), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4599), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7698), + [sym_initializer_pair] = STATE(7698), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(48), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(48), + [sym_template_instantiation] = STATE(48), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(48), + [sym_operator_cast_declaration] = STATE(48), + [sym_constructor_or_destructor_definition] = STATE(48), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(169), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(175), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -32787,305 +44386,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(173), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(243), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [10] = { - [sym_preproc_include] = STATE(11), - [sym_preproc_def] = STATE(11), - [sym_preproc_function_def] = STATE(11), - [sym_preproc_call] = STATE(11), - [sym_preproc_if] = STATE(11), - [sym_preproc_ifdef] = STATE(11), - [sym_preproc_else] = STATE(4880), - [sym_preproc_elif] = STATE(4880), - [sym_function_definition] = STATE(11), - [sym_declaration] = STATE(11), - [sym_type_definition] = STATE(11), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3059), - [sym_linkage_specification] = STATE(11), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1137), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3660), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(11), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1370), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(11), - [sym_labeled_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_if_statement] = STATE(11), - [sym_switch_statement] = STATE(11), - [sym_case_statement] = STATE(11), - [sym_while_statement] = STATE(11), - [sym_do_statement] = STATE(11), - [sym_for_statement] = STATE(11), - [sym_return_statement] = STATE(11), - [sym_break_statement] = STATE(11), - [sym_continue_statement] = STATE(11), - [sym_goto_statement] = STATE(11), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(11), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(844), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(11), - [sym_template_instantiation] = STATE(11), - [sym_operator_cast] = STATE(4142), - [sym__constructor_specifiers] = STATE(844), - [sym_operator_cast_definition] = STATE(11), - [sym_operator_cast_declaration] = STATE(11), - [sym_constructor_or_destructor_definition] = STATE(11), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(11), - [sym_using_declaration] = STATE(11), - [sym_alias_declaration] = STATE(11), - [sym_static_assert_declaration] = STATE(11), - [sym_for_range_loop] = STATE(11), - [sym_co_return_statement] = STATE(11), - [sym_co_yield_statement] = STATE(11), - [sym_throw_statement] = STATE(11), - [sym_try_statement] = STATE(11), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4142), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(11), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(11), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(245), - [aux_sym_preproc_include_token1] = ACTIONS(247), - [aux_sym_preproc_def_token1] = ACTIONS(249), - [aux_sym_preproc_if_token1] = ACTIONS(251), - [aux_sym_preproc_if_token2] = ACTIONS(253), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [aux_sym_preproc_else_token1] = ACTIONS(257), - [aux_sym_preproc_elif_token1] = ACTIONS(259), - [sym_preproc_directive] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(191), + [anon_sym_RBRACE] = ACTIONS(259), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(9)] = { + [sym__block_item] = STATE(57), + [sym_preproc_include] = STATE(57), + [sym_preproc_def] = STATE(57), + [sym_preproc_function_def] = STATE(57), + [sym_preproc_call] = STATE(57), + [sym_preproc_if] = STATE(57), + [sym_preproc_ifdef] = STATE(57), + [sym_function_definition] = STATE(57), + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(57), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(57), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4599), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7698), + [sym_initializer_pair] = STATE(7698), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(57), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(57), + [sym_template_instantiation] = STATE(57), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(57), + [sym_operator_cast_declaration] = STATE(57), + [sym_constructor_or_destructor_definition] = STATE(57), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(57), + [sym_namespace_alias_definition] = STATE(57), + [sym_using_declaration] = STATE(57), + [sym_alias_declaration] = STATE(57), + [sym_static_assert_declaration] = STATE(57), + [sym_concept_definition] = STATE(57), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(57), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(169), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(175), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -33094,303 +44745,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(293), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(297), - [anon_sym_using] = ACTIONS(299), - [anon_sym_static_assert] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(309), - [aux_sym_alone_macro_call_token1] = ACTIONS(311), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [11] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(4850), - [sym_preproc_elif] = STATE(4850), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3059), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1137), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3660), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1370), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(28), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(844), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(4142), - [sym__constructor_specifiers] = STATE(844), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4142), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(28), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(245), - [aux_sym_preproc_include_token1] = ACTIONS(247), - [aux_sym_preproc_def_token1] = ACTIONS(249), - [aux_sym_preproc_if_token1] = ACTIONS(251), - [aux_sym_preproc_if_token2] = ACTIONS(313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [aux_sym_preproc_else_token1] = ACTIONS(257), - [aux_sym_preproc_elif_token1] = ACTIONS(259), - [sym_preproc_directive] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(191), + [anon_sym_RBRACE] = ACTIONS(261), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(10)] = { + [sym__block_item] = STATE(75), + [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(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(75), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4599), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7698), + [sym_initializer_pair] = STATE(7698), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(169), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(175), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -33399,303 +45104,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(293), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(297), - [anon_sym_using] = ACTIONS(299), - [anon_sym_static_assert] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(315), - [aux_sym_alone_macro_call_token1] = ACTIONS(311), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [12] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(5170), - [sym_preproc_elif] = STATE(5170), - [sym_function_definition] = STATE(22), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3059), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1137), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3660), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1370), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(22), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(844), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(22), - [sym_template_instantiation] = STATE(22), - [sym_operator_cast] = STATE(4142), - [sym__constructor_specifiers] = STATE(844), - [sym_operator_cast_definition] = STATE(22), - [sym_operator_cast_declaration] = STATE(22), - [sym_constructor_or_destructor_definition] = STATE(22), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(22), - [sym_using_declaration] = STATE(22), - [sym_alias_declaration] = STATE(22), - [sym_static_assert_declaration] = STATE(22), - [sym_for_range_loop] = STATE(22), - [sym_co_return_statement] = STATE(22), - [sym_co_yield_statement] = STATE(22), - [sym_throw_statement] = STATE(22), - [sym_try_statement] = STATE(22), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4142), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(22), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(245), - [aux_sym_preproc_include_token1] = ACTIONS(247), - [aux_sym_preproc_def_token1] = ACTIONS(249), - [aux_sym_preproc_if_token1] = ACTIONS(251), - [aux_sym_preproc_if_token2] = ACTIONS(317), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [aux_sym_preproc_else_token1] = ACTIONS(257), - [aux_sym_preproc_elif_token1] = ACTIONS(259), - [sym_preproc_directive] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(191), + [anon_sym_RBRACE] = ACTIONS(263), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(11)] = { + [sym__block_item] = STATE(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(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(51), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4599), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7698), + [sym_initializer_pair] = STATE(7698), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(51), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(51), + [sym_template_instantiation] = STATE(51), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(51), + [sym_operator_cast_declaration] = STATE(51), + [sym_constructor_or_destructor_definition] = STATE(51), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(51), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(169), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(175), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -33704,303 +45463,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(293), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(297), - [anon_sym_using] = ACTIONS(299), - [anon_sym_static_assert] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(319), - [aux_sym_alone_macro_call_token1] = ACTIONS(311), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [13] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(5055), - [sym_preproc_elif] = STATE(5055), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3059), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1137), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3660), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1370), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(28), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(844), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(4142), - [sym__constructor_specifiers] = STATE(844), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4142), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(28), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(245), - [aux_sym_preproc_include_token1] = ACTIONS(247), - [aux_sym_preproc_def_token1] = ACTIONS(249), - [aux_sym_preproc_if_token1] = ACTIONS(251), - [aux_sym_preproc_if_token2] = ACTIONS(321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [aux_sym_preproc_else_token1] = ACTIONS(257), - [aux_sym_preproc_elif_token1] = ACTIONS(259), - [sym_preproc_directive] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(191), + [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(12)] = { + [sym__block_item] = STATE(75), + [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(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(75), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4599), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7698), + [sym_initializer_pair] = STATE(7698), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(169), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(175), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -34009,913 +45822,358 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(293), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(297), - [anon_sym_using] = ACTIONS(299), - [anon_sym_static_assert] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(315), - [aux_sym_alone_macro_call_token1] = ACTIONS(311), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [14] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(5094), - [sym_preproc_elif] = STATE(5094), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3059), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1137), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3660), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1370), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(28), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(844), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(4142), - [sym__constructor_specifiers] = STATE(844), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4142), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(28), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(245), - [aux_sym_preproc_include_token1] = ACTIONS(247), - [aux_sym_preproc_def_token1] = ACTIONS(249), - [aux_sym_preproc_if_token1] = ACTIONS(251), - [aux_sym_preproc_if_token2] = ACTIONS(323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [aux_sym_preproc_else_token1] = ACTIONS(257), - [aux_sym_preproc_elif_token1] = ACTIONS(259), - [sym_preproc_directive] = ACTIONS(261), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(293), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(297), - [anon_sym_using] = ACTIONS(299), - [anon_sym_static_assert] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(315), - [aux_sym_alone_macro_call_token1] = ACTIONS(311), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [15] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(5246), - [sym_preproc_elif] = STATE(5246), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3059), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1137), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3660), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1370), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(28), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(844), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(4142), - [sym__constructor_specifiers] = STATE(844), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4142), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(28), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(245), - [aux_sym_preproc_include_token1] = ACTIONS(247), - [aux_sym_preproc_def_token1] = ACTIONS(249), - [aux_sym_preproc_if_token1] = ACTIONS(251), - [aux_sym_preproc_if_token2] = ACTIONS(325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [aux_sym_preproc_else_token1] = ACTIONS(257), - [aux_sym_preproc_elif_token1] = ACTIONS(259), - [sym_preproc_directive] = ACTIONS(261), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(293), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(297), - [anon_sym_using] = ACTIONS(299), - [anon_sym_static_assert] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(315), - [aux_sym_alone_macro_call_token1] = ACTIONS(311), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [16] = { + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(191), + [anon_sym_RBRACE] = ACTIONS(267), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(13)] = { + [sym__block_item] = STATE(15), [sym_preproc_include] = STATE(15), [sym_preproc_def] = STATE(15), [sym_preproc_function_def] = STATE(15), [sym_preproc_call] = STATE(15), [sym_preproc_if] = STATE(15), [sym_preproc_ifdef] = STATE(15), - [sym_preproc_else] = STATE(5250), - [sym_preproc_elif] = STATE(5250), + [sym_preproc_else] = STATE(8437), + [sym_preproc_elif] = STATE(8437), + [sym_preproc_elifdef] = STATE(8437), [sym_function_definition] = STATE(15), [sym_declaration] = STATE(15), [sym_type_definition] = STATE(15), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3059), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1137), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3660), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1370), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_case_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_goto_statement] = STATE(15), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(15), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), [sym__empty_declaration] = STATE(15), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(844), - [sym_dependent_type] = STATE(1358), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), [sym_template_declaration] = STATE(15), [sym_template_instantiation] = STATE(15), - [sym_operator_cast] = STATE(4142), - [sym__constructor_specifiers] = STATE(844), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), [sym_operator_cast_definition] = STATE(15), [sym_operator_cast_declaration] = STATE(15), [sym_constructor_or_destructor_definition] = STATE(15), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), [sym_namespace_definition] = STATE(15), + [sym_namespace_alias_definition] = STATE(15), [sym_using_declaration] = STATE(15), [sym_alias_declaration] = STATE(15), [sym_static_assert_declaration] = STATE(15), - [sym_for_range_loop] = STATE(15), - [sym_co_return_statement] = STATE(15), - [sym_co_yield_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4142), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(15), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(245), - [aux_sym_preproc_include_token1] = ACTIONS(247), - [aux_sym_preproc_def_token1] = ACTIONS(249), - [aux_sym_preproc_if_token1] = ACTIONS(251), - [aux_sym_preproc_if_token2] = ACTIONS(327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [aux_sym_preproc_else_token1] = ACTIONS(257), - [aux_sym_preproc_elif_token1] = ACTIONS(259), - [sym_preproc_directive] = ACTIONS(261), + [sym_concept_definition] = STATE(15), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(273), + [aux_sym_preproc_if_token1] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(277), + [aux_sym_preproc_ifdef_token1] = ACTIONS(279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(279), + [aux_sym_preproc_else_token1] = ACTIONS(281), + [aux_sym_preproc_elif_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(285), + [sym_preproc_directive] = ACTIONS(287), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -34924,303 +46182,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(293), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(297), - [anon_sym_using] = ACTIONS(299), - [anon_sym_static_assert] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(329), - [aux_sym_alone_macro_call_token1] = ACTIONS(311), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [17] = { - [sym_preproc_include] = STATE(21), - [sym_preproc_def] = STATE(21), - [sym_preproc_function_def] = STATE(21), - [sym_preproc_call] = STATE(21), - [sym_preproc_if] = STATE(21), - [sym_preproc_ifdef] = STATE(21), - [sym_preproc_else] = STATE(4847), - [sym_preproc_elif] = STATE(4847), - [sym_function_definition] = STATE(21), - [sym_declaration] = STATE(21), - [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3059), - [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1137), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3660), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(21), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1370), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_case_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_goto_statement] = STATE(21), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(21), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(844), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(21), - [sym_template_instantiation] = STATE(21), - [sym_operator_cast] = STATE(4142), - [sym__constructor_specifiers] = STATE(844), - [sym_operator_cast_definition] = STATE(21), - [sym_operator_cast_declaration] = STATE(21), - [sym_constructor_or_destructor_definition] = STATE(21), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(21), - [sym_using_declaration] = STATE(21), - [sym_alias_declaration] = STATE(21), - [sym_static_assert_declaration] = STATE(21), - [sym_for_range_loop] = STATE(21), - [sym_co_return_statement] = STATE(21), - [sym_co_yield_statement] = STATE(21), - [sym_throw_statement] = STATE(21), - [sym_try_statement] = STATE(21), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4142), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(21), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(245), - [aux_sym_preproc_include_token1] = ACTIONS(247), - [aux_sym_preproc_def_token1] = ACTIONS(249), - [aux_sym_preproc_if_token1] = ACTIONS(251), - [aux_sym_preproc_if_token2] = ACTIONS(331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [aux_sym_preproc_else_token1] = ACTIONS(257), - [aux_sym_preproc_elif_token1] = ACTIONS(259), - [sym_preproc_directive] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(295), + [anon_sym___attribute__] = ACTIONS(43), + [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(297), + [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(299), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(327), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_using] = ACTIONS(335), + [anon_sym_static_assert] = ACTIONS(337), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(14)] = { + [sym__block_item] = STATE(33), + [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(8598), + [sym_preproc_elif] = STATE(8598), + [sym_preproc_elifdef] = STATE(8598), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(273), + [aux_sym_preproc_if_token1] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(279), + [aux_sym_preproc_else_token1] = ACTIONS(281), + [aux_sym_preproc_elif_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(285), + [sym_preproc_directive] = ACTIONS(287), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -35229,303 +46540,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(293), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(297), - [anon_sym_using] = ACTIONS(299), - [anon_sym_static_assert] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(333), - [aux_sym_alone_macro_call_token1] = ACTIONS(311), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [18] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(5178), - [sym_preproc_elif] = STATE(5178), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3059), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1137), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3660), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1370), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(28), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(844), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(4142), - [sym__constructor_specifiers] = STATE(844), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4142), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(28), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(245), - [aux_sym_preproc_include_token1] = ACTIONS(247), - [aux_sym_preproc_def_token1] = ACTIONS(249), - [aux_sym_preproc_if_token1] = ACTIONS(251), - [aux_sym_preproc_if_token2] = ACTIONS(335), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [aux_sym_preproc_else_token1] = ACTIONS(257), - [aux_sym_preproc_elif_token1] = ACTIONS(259), - [sym_preproc_directive] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(295), + [anon_sym___attribute__] = ACTIONS(43), + [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(297), + [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(299), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(327), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_using] = ACTIONS(335), + [anon_sym_static_assert] = ACTIONS(337), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(15)] = { + [sym__block_item] = STATE(33), + [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(8952), + [sym_preproc_elif] = STATE(8952), + [sym_preproc_elifdef] = STATE(8952), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(273), + [aux_sym_preproc_if_token1] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(279), + [aux_sym_preproc_else_token1] = ACTIONS(281), + [aux_sym_preproc_elif_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(285), + [sym_preproc_directive] = ACTIONS(287), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -35534,303 +46898,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(293), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(297), - [anon_sym_using] = ACTIONS(299), - [anon_sym_static_assert] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(315), - [aux_sym_alone_macro_call_token1] = ACTIONS(311), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [19] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(5070), - [sym_preproc_elif] = STATE(5070), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3059), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1137), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3660), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1370), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(27), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(844), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(27), - [sym_template_instantiation] = STATE(27), - [sym_operator_cast] = STATE(4142), - [sym__constructor_specifiers] = STATE(844), - [sym_operator_cast_definition] = STATE(27), - [sym_operator_cast_declaration] = STATE(27), - [sym_constructor_or_destructor_definition] = STATE(27), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(27), - [sym_using_declaration] = STATE(27), - [sym_alias_declaration] = STATE(27), - [sym_static_assert_declaration] = STATE(27), - [sym_for_range_loop] = STATE(27), - [sym_co_return_statement] = STATE(27), - [sym_co_yield_statement] = STATE(27), - [sym_throw_statement] = STATE(27), - [sym_try_statement] = STATE(27), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4142), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(27), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(245), - [aux_sym_preproc_include_token1] = ACTIONS(247), - [aux_sym_preproc_def_token1] = ACTIONS(249), - [aux_sym_preproc_if_token1] = ACTIONS(251), - [aux_sym_preproc_if_token2] = ACTIONS(337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [aux_sym_preproc_else_token1] = ACTIONS(257), - [aux_sym_preproc_elif_token1] = ACTIONS(259), - [sym_preproc_directive] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(295), + [anon_sym___attribute__] = ACTIONS(43), + [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(297), + [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(299), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(327), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_using] = ACTIONS(335), + [anon_sym_static_assert] = ACTIONS(337), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(16)] = { + [sym__block_item] = STATE(18), + [sym_preproc_include] = STATE(18), + [sym_preproc_def] = STATE(18), + [sym_preproc_function_def] = STATE(18), + [sym_preproc_call] = STATE(18), + [sym_preproc_if] = STATE(18), + [sym_preproc_ifdef] = STATE(18), + [sym_preproc_else] = STATE(8970), + [sym_preproc_elif] = STATE(8970), + [sym_preproc_elifdef] = STATE(8970), + [sym_function_definition] = STATE(18), + [sym_declaration] = STATE(18), + [sym_type_definition] = STATE(18), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), + [sym_linkage_specification] = STATE(18), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(18), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(18), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(18), + [sym_template_instantiation] = STATE(18), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), + [sym_operator_cast_definition] = STATE(18), + [sym_operator_cast_declaration] = STATE(18), + [sym_constructor_or_destructor_definition] = STATE(18), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(18), + [sym_namespace_alias_definition] = STATE(18), + [sym_using_declaration] = STATE(18), + [sym_alias_declaration] = STATE(18), + [sym_static_assert_declaration] = STATE(18), + [sym_concept_definition] = STATE(18), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(18), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(273), + [aux_sym_preproc_if_token1] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(349), + [aux_sym_preproc_ifdef_token1] = ACTIONS(279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(279), + [aux_sym_preproc_else_token1] = ACTIONS(281), + [aux_sym_preproc_elif_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(285), + [sym_preproc_directive] = ACTIONS(287), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -35839,303 +47256,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(293), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(297), - [anon_sym_using] = ACTIONS(299), - [anon_sym_static_assert] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(339), - [aux_sym_alone_macro_call_token1] = ACTIONS(311), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [20] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(5150), - [sym_preproc_elif] = STATE(5150), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3059), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1137), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3660), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1370), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(28), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(844), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(4142), - [sym__constructor_specifiers] = STATE(844), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4142), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(28), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(245), - [aux_sym_preproc_include_token1] = ACTIONS(247), - [aux_sym_preproc_def_token1] = ACTIONS(249), - [aux_sym_preproc_if_token1] = ACTIONS(251), - [aux_sym_preproc_if_token2] = ACTIONS(341), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [aux_sym_preproc_else_token1] = ACTIONS(257), - [aux_sym_preproc_elif_token1] = ACTIONS(259), - [sym_preproc_directive] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(295), + [anon_sym___attribute__] = ACTIONS(43), + [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(297), + [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(299), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(327), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_using] = ACTIONS(335), + [anon_sym_static_assert] = ACTIONS(337), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(17)] = { + [sym__block_item] = STATE(19), + [sym_preproc_include] = STATE(19), + [sym_preproc_def] = STATE(19), + [sym_preproc_function_def] = STATE(19), + [sym_preproc_call] = STATE(19), + [sym_preproc_if] = STATE(19), + [sym_preproc_ifdef] = STATE(19), + [sym_preproc_else] = STATE(8645), + [sym_preproc_elif] = STATE(8645), + [sym_preproc_elifdef] = STATE(8645), + [sym_function_definition] = STATE(19), + [sym_declaration] = STATE(19), + [sym_type_definition] = STATE(19), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), + [sym_linkage_specification] = STATE(19), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(19), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(19), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(19), + [sym_template_instantiation] = STATE(19), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), + [sym_operator_cast_definition] = STATE(19), + [sym_operator_cast_declaration] = STATE(19), + [sym_constructor_or_destructor_definition] = STATE(19), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(19), + [sym_namespace_alias_definition] = STATE(19), + [sym_using_declaration] = STATE(19), + [sym_alias_declaration] = STATE(19), + [sym_static_assert_declaration] = STATE(19), + [sym_concept_definition] = STATE(19), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(19), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(273), + [aux_sym_preproc_if_token1] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(279), + [aux_sym_preproc_else_token1] = ACTIONS(281), + [aux_sym_preproc_elif_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(285), + [sym_preproc_directive] = ACTIONS(287), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -36144,303 +47614,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(293), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(297), - [anon_sym_using] = ACTIONS(299), - [anon_sym_static_assert] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(315), - [aux_sym_alone_macro_call_token1] = ACTIONS(311), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [21] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(4896), - [sym_preproc_elif] = STATE(4896), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3059), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1137), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3660), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1370), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(28), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(844), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(4142), - [sym__constructor_specifiers] = STATE(844), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4142), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(28), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(245), - [aux_sym_preproc_include_token1] = ACTIONS(247), - [aux_sym_preproc_def_token1] = ACTIONS(249), - [aux_sym_preproc_if_token1] = ACTIONS(251), - [aux_sym_preproc_if_token2] = ACTIONS(343), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [aux_sym_preproc_else_token1] = ACTIONS(257), - [aux_sym_preproc_elif_token1] = ACTIONS(259), - [sym_preproc_directive] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(295), + [anon_sym___attribute__] = ACTIONS(43), + [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(297), + [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(299), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(327), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_using] = ACTIONS(335), + [anon_sym_static_assert] = ACTIONS(337), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(18)] = { + [sym__block_item] = STATE(33), + [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(8653), + [sym_preproc_elif] = STATE(8653), + [sym_preproc_elifdef] = STATE(8653), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(273), + [aux_sym_preproc_if_token1] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(279), + [aux_sym_preproc_else_token1] = ACTIONS(281), + [aux_sym_preproc_elif_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(285), + [sym_preproc_directive] = ACTIONS(287), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -36449,303 +47972,714 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(293), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(297), - [anon_sym_using] = ACTIONS(299), - [anon_sym_static_assert] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(315), - [aux_sym_alone_macro_call_token1] = ACTIONS(311), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [22] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(4973), - [sym_preproc_elif] = STATE(4973), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3059), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1137), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3660), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1370), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(28), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(844), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(4142), - [sym__constructor_specifiers] = STATE(844), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4142), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(28), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(245), - [aux_sym_preproc_include_token1] = ACTIONS(247), - [aux_sym_preproc_def_token1] = ACTIONS(249), - [aux_sym_preproc_if_token1] = ACTIONS(251), - [aux_sym_preproc_if_token2] = ACTIONS(345), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [aux_sym_preproc_else_token1] = ACTIONS(257), - [aux_sym_preproc_elif_token1] = ACTIONS(259), - [sym_preproc_directive] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(295), + [anon_sym___attribute__] = ACTIONS(43), + [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(297), + [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(299), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(327), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_using] = ACTIONS(335), + [anon_sym_static_assert] = ACTIONS(337), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(19)] = { + [sym__block_item] = STATE(33), + [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(8644), + [sym_preproc_elif] = STATE(8644), + [sym_preproc_elifdef] = STATE(8644), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(273), + [aux_sym_preproc_if_token1] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(279), + [aux_sym_preproc_else_token1] = ACTIONS(281), + [aux_sym_preproc_elif_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(285), + [sym_preproc_directive] = ACTIONS(287), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(295), + [anon_sym___attribute__] = ACTIONS(43), + [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(297), + [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(299), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(327), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_using] = ACTIONS(335), + [anon_sym_static_assert] = ACTIONS(337), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(20)] = { + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(8677), + [sym_preproc_elif] = STATE(8677), + [sym_preproc_elifdef] = STATE(8677), + [sym_function_definition] = STATE(22), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(22), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(22), + [sym_template_instantiation] = STATE(22), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), + [sym_operator_cast_definition] = STATE(22), + [sym_operator_cast_declaration] = STATE(22), + [sym_constructor_or_destructor_definition] = STATE(22), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(22), + [sym_namespace_alias_definition] = STATE(22), + [sym_using_declaration] = STATE(22), + [sym_alias_declaration] = STATE(22), + [sym_static_assert_declaration] = STATE(22), + [sym_concept_definition] = STATE(22), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(273), + [aux_sym_preproc_if_token1] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(279), + [aux_sym_preproc_else_token1] = ACTIONS(281), + [aux_sym_preproc_elif_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(285), + [sym_preproc_directive] = ACTIONS(287), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -36754,303 +48688,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(293), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(297), - [anon_sym_using] = ACTIONS(299), - [anon_sym_static_assert] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(315), - [aux_sym_alone_macro_call_token1] = ACTIONS(311), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [23] = { + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(295), + [anon_sym___attribute__] = ACTIONS(43), + [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(297), + [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(299), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(327), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_using] = ACTIONS(335), + [anon_sym_static_assert] = ACTIONS(337), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(21)] = { + [sym__block_item] = STATE(14), [sym_preproc_include] = STATE(14), [sym_preproc_def] = STATE(14), [sym_preproc_function_def] = STATE(14), [sym_preproc_call] = STATE(14), [sym_preproc_if] = STATE(14), [sym_preproc_ifdef] = STATE(14), - [sym_preproc_else] = STATE(5247), - [sym_preproc_elif] = STATE(5247), + [sym_preproc_else] = STATE(8537), + [sym_preproc_elif] = STATE(8537), + [sym_preproc_elifdef] = STATE(8537), [sym_function_definition] = STATE(14), [sym_declaration] = STATE(14), [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3059), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1137), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3660), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1370), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_case_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_goto_statement] = STATE(14), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(14), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), [sym__empty_declaration] = STATE(14), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(844), - [sym_dependent_type] = STATE(1358), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), [sym_template_declaration] = STATE(14), [sym_template_instantiation] = STATE(14), - [sym_operator_cast] = STATE(4142), - [sym__constructor_specifiers] = STATE(844), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), [sym_operator_cast_definition] = STATE(14), [sym_operator_cast_declaration] = STATE(14), [sym_constructor_or_destructor_definition] = STATE(14), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), [sym_namespace_definition] = STATE(14), + [sym_namespace_alias_definition] = STATE(14), [sym_using_declaration] = STATE(14), [sym_alias_declaration] = STATE(14), [sym_static_assert_declaration] = STATE(14), - [sym_for_range_loop] = STATE(14), - [sym_co_return_statement] = STATE(14), - [sym_co_yield_statement] = STATE(14), - [sym_throw_statement] = STATE(14), - [sym_try_statement] = STATE(14), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4142), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(14), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(245), - [aux_sym_preproc_include_token1] = ACTIONS(247), - [aux_sym_preproc_def_token1] = ACTIONS(249), - [aux_sym_preproc_if_token1] = ACTIONS(251), - [aux_sym_preproc_if_token2] = ACTIONS(347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [aux_sym_preproc_else_token1] = ACTIONS(257), - [aux_sym_preproc_elif_token1] = ACTIONS(259), - [sym_preproc_directive] = ACTIONS(261), + [sym_concept_definition] = STATE(14), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(273), + [aux_sym_preproc_if_token1] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(359), + [aux_sym_preproc_ifdef_token1] = ACTIONS(279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(279), + [aux_sym_preproc_else_token1] = ACTIONS(281), + [aux_sym_preproc_elif_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(285), + [sym_preproc_directive] = ACTIONS(287), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -37059,303 +49046,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(293), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(297), - [anon_sym_using] = ACTIONS(299), - [anon_sym_static_assert] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(349), - [aux_sym_alone_macro_call_token1] = ACTIONS(311), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [24] = { - [sym_preproc_include] = STATE(13), - [sym_preproc_def] = STATE(13), - [sym_preproc_function_def] = STATE(13), - [sym_preproc_call] = STATE(13), - [sym_preproc_if] = STATE(13), - [sym_preproc_ifdef] = STATE(13), - [sym_preproc_else] = STATE(4972), - [sym_preproc_elif] = STATE(4972), - [sym_function_definition] = STATE(13), - [sym_declaration] = STATE(13), - [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3059), - [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1137), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3660), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(13), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1370), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(13), - [sym_labeled_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_if_statement] = STATE(13), - [sym_switch_statement] = STATE(13), - [sym_case_statement] = STATE(13), - [sym_while_statement] = STATE(13), - [sym_do_statement] = STATE(13), - [sym_for_statement] = STATE(13), - [sym_return_statement] = STATE(13), - [sym_break_statement] = STATE(13), - [sym_continue_statement] = STATE(13), - [sym_goto_statement] = STATE(13), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(13), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(844), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(13), - [sym_template_instantiation] = STATE(13), - [sym_operator_cast] = STATE(4142), - [sym__constructor_specifiers] = STATE(844), - [sym_operator_cast_definition] = STATE(13), - [sym_operator_cast_declaration] = STATE(13), - [sym_constructor_or_destructor_definition] = STATE(13), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(13), - [sym_using_declaration] = STATE(13), - [sym_alias_declaration] = STATE(13), - [sym_static_assert_declaration] = STATE(13), - [sym_for_range_loop] = STATE(13), - [sym_co_return_statement] = STATE(13), - [sym_co_yield_statement] = STATE(13), - [sym_throw_statement] = STATE(13), - [sym_try_statement] = STATE(13), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4142), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(13), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(245), - [aux_sym_preproc_include_token1] = ACTIONS(247), - [aux_sym_preproc_def_token1] = ACTIONS(249), - [aux_sym_preproc_if_token1] = ACTIONS(251), - [aux_sym_preproc_if_token2] = ACTIONS(351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [aux_sym_preproc_else_token1] = ACTIONS(257), - [aux_sym_preproc_elif_token1] = ACTIONS(259), - [sym_preproc_directive] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(295), + [anon_sym___attribute__] = ACTIONS(43), + [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(297), + [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(299), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(327), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_using] = ACTIONS(335), + [anon_sym_static_assert] = ACTIONS(337), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(22)] = { + [sym__block_item] = STATE(33), + [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(8464), + [sym_preproc_elif] = STATE(8464), + [sym_preproc_elifdef] = STATE(8464), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(273), + [aux_sym_preproc_if_token1] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(279), + [aux_sym_preproc_else_token1] = ACTIONS(281), + [aux_sym_preproc_elif_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(285), + [sym_preproc_directive] = ACTIONS(287), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -37364,303 +49404,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(293), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(297), - [anon_sym_using] = ACTIONS(299), - [anon_sym_static_assert] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(353), - [aux_sym_alone_macro_call_token1] = ACTIONS(311), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [25] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(5124), - [sym_preproc_elif] = STATE(5124), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3059), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1137), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3660), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1370), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(20), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(844), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(20), - [sym_template_instantiation] = STATE(20), - [sym_operator_cast] = STATE(4142), - [sym__constructor_specifiers] = STATE(844), - [sym_operator_cast_definition] = STATE(20), - [sym_operator_cast_declaration] = STATE(20), - [sym_constructor_or_destructor_definition] = STATE(20), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(20), - [sym_using_declaration] = STATE(20), - [sym_alias_declaration] = STATE(20), - [sym_static_assert_declaration] = STATE(20), - [sym_for_range_loop] = STATE(20), - [sym_co_return_statement] = STATE(20), - [sym_co_yield_statement] = STATE(20), - [sym_throw_statement] = STATE(20), - [sym_try_statement] = STATE(20), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4142), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(20), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(245), - [aux_sym_preproc_include_token1] = ACTIONS(247), - [aux_sym_preproc_def_token1] = ACTIONS(249), - [aux_sym_preproc_if_token1] = ACTIONS(251), - [aux_sym_preproc_if_token2] = ACTIONS(355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [aux_sym_preproc_else_token1] = ACTIONS(257), - [aux_sym_preproc_elif_token1] = ACTIONS(259), - [sym_preproc_directive] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(295), + [anon_sym___attribute__] = ACTIONS(43), + [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(297), + [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(299), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(327), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_using] = ACTIONS(335), + [anon_sym_static_assert] = ACTIONS(337), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(23)] = { + [sym__block_item] = STATE(24), + [sym_preproc_include] = STATE(24), + [sym_preproc_def] = STATE(24), + [sym_preproc_function_def] = STATE(24), + [sym_preproc_call] = STATE(24), + [sym_preproc_if] = STATE(24), + [sym_preproc_ifdef] = STATE(24), + [sym_preproc_else] = STATE(8452), + [sym_preproc_elif] = STATE(8452), + [sym_preproc_elifdef] = STATE(8452), + [sym_function_definition] = STATE(24), + [sym_declaration] = STATE(24), + [sym_type_definition] = STATE(24), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), + [sym_linkage_specification] = STATE(24), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(24), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(24), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(24), + [sym_template_instantiation] = STATE(24), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), + [sym_operator_cast_definition] = STATE(24), + [sym_operator_cast_declaration] = STATE(24), + [sym_constructor_or_destructor_definition] = STATE(24), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(24), + [sym_namespace_alias_definition] = STATE(24), + [sym_using_declaration] = STATE(24), + [sym_alias_declaration] = STATE(24), + [sym_static_assert_declaration] = STATE(24), + [sym_concept_definition] = STATE(24), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(24), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(273), + [aux_sym_preproc_if_token1] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(363), + [aux_sym_preproc_ifdef_token1] = ACTIONS(279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(279), + [aux_sym_preproc_else_token1] = ACTIONS(281), + [aux_sym_preproc_elif_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(285), + [sym_preproc_directive] = ACTIONS(287), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -37669,303 +49762,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(293), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(297), - [anon_sym_using] = ACTIONS(299), - [anon_sym_static_assert] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(357), - [aux_sym_alone_macro_call_token1] = ACTIONS(311), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [26] = { - [sym_preproc_include] = STATE(18), - [sym_preproc_def] = STATE(18), - [sym_preproc_function_def] = STATE(18), - [sym_preproc_call] = STATE(18), - [sym_preproc_if] = STATE(18), - [sym_preproc_ifdef] = STATE(18), - [sym_preproc_else] = STATE(5120), - [sym_preproc_elif] = STATE(5120), - [sym_function_definition] = STATE(18), - [sym_declaration] = STATE(18), - [sym_type_definition] = STATE(18), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3059), - [sym_linkage_specification] = STATE(18), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1137), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3660), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(18), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1370), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_case_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_goto_statement] = STATE(18), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(18), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(844), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(18), - [sym_template_instantiation] = STATE(18), - [sym_operator_cast] = STATE(4142), - [sym__constructor_specifiers] = STATE(844), - [sym_operator_cast_definition] = STATE(18), - [sym_operator_cast_declaration] = STATE(18), - [sym_constructor_or_destructor_definition] = STATE(18), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(18), - [sym_using_declaration] = STATE(18), - [sym_alias_declaration] = STATE(18), - [sym_static_assert_declaration] = STATE(18), - [sym_for_range_loop] = STATE(18), - [sym_co_return_statement] = STATE(18), - [sym_co_yield_statement] = STATE(18), - [sym_throw_statement] = STATE(18), - [sym_try_statement] = STATE(18), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4142), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(18), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(18), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(245), - [aux_sym_preproc_include_token1] = ACTIONS(247), - [aux_sym_preproc_def_token1] = ACTIONS(249), - [aux_sym_preproc_if_token1] = ACTIONS(251), - [aux_sym_preproc_if_token2] = ACTIONS(359), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [aux_sym_preproc_else_token1] = ACTIONS(257), - [aux_sym_preproc_elif_token1] = ACTIONS(259), - [sym_preproc_directive] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(295), + [anon_sym___attribute__] = ACTIONS(43), + [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(297), + [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(299), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(327), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_using] = ACTIONS(335), + [anon_sym_static_assert] = ACTIONS(337), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(24)] = { + [sym__block_item] = STATE(33), + [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(8687), + [sym_preproc_elif] = STATE(8687), + [sym_preproc_elifdef] = STATE(8687), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(273), + [aux_sym_preproc_if_token1] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(279), + [aux_sym_preproc_else_token1] = ACTIONS(281), + [aux_sym_preproc_elif_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(285), + [sym_preproc_directive] = ACTIONS(287), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -37974,303 +50120,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(293), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(297), - [anon_sym_using] = ACTIONS(299), - [anon_sym_static_assert] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(361), - [aux_sym_alone_macro_call_token1] = ACTIONS(311), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [27] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(5123), - [sym_preproc_elif] = STATE(5123), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3059), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1137), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3660), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1370), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(28), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(844), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(4142), - [sym__constructor_specifiers] = STATE(844), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4142), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(28), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(245), - [aux_sym_preproc_include_token1] = ACTIONS(247), - [aux_sym_preproc_def_token1] = ACTIONS(249), - [aux_sym_preproc_if_token1] = ACTIONS(251), - [aux_sym_preproc_if_token2] = ACTIONS(363), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [aux_sym_preproc_else_token1] = ACTIONS(257), - [aux_sym_preproc_elif_token1] = ACTIONS(259), - [sym_preproc_directive] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(295), + [anon_sym___attribute__] = ACTIONS(43), + [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(297), + [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(299), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(327), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_using] = ACTIONS(335), + [anon_sym_static_assert] = ACTIONS(337), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(25)] = { + [sym__block_item] = STATE(33), + [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(8972), + [sym_preproc_elif] = STATE(8972), + [sym_preproc_elifdef] = STATE(8972), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(273), + [aux_sym_preproc_if_token1] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(367), + [aux_sym_preproc_ifdef_token1] = ACTIONS(279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(279), + [aux_sym_preproc_else_token1] = ACTIONS(281), + [aux_sym_preproc_elif_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(285), + [sym_preproc_directive] = ACTIONS(287), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -38279,1203 +50478,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(293), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(297), - [anon_sym_using] = ACTIONS(299), - [anon_sym_static_assert] = ACTIONS(301), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(315), - [aux_sym_alone_macro_call_token1] = ACTIONS(311), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [28] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3059), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1137), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3660), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1370), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(28), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(844), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(4142), - [sym__constructor_specifiers] = STATE(844), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4142), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(28), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(365), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(371), - [aux_sym_preproc_if_token1] = ACTIONS(374), - [aux_sym_preproc_if_token2] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(379), - [aux_sym_preproc_else_token1] = ACTIONS(377), - [aux_sym_preproc_elif_token1] = ACTIONS(377), - [sym_preproc_directive] = ACTIONS(382), - [anon_sym_LPAREN2] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(388), - [anon_sym_TILDE] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(406), - [anon_sym_typedef] = ACTIONS(409), - [anon_sym_extern] = ACTIONS(412), - [anon_sym___attribute__] = ACTIONS(415), - [anon_sym_COLON_COLON] = ACTIONS(418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(421), - [anon_sym___declspec] = ACTIONS(424), - [anon_sym___based] = ACTIONS(427), - [anon_sym___cdecl] = ACTIONS(430), - [anon_sym___clrcall] = ACTIONS(430), - [anon_sym___stdcall] = ACTIONS(430), - [anon_sym___fastcall] = ACTIONS(430), - [anon_sym___thiscall] = ACTIONS(430), - [anon_sym___vectorcall] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_static] = ACTIONS(439), - [anon_sym_register] = ACTIONS(439), - [anon_sym_inline] = ACTIONS(439), - [anon_sym_thread_local] = ACTIONS(439), - [anon_sym_const] = ACTIONS(442), - [anon_sym_volatile] = ACTIONS(442), - [anon_sym_restrict] = ACTIONS(442), - [anon_sym__Atomic] = ACTIONS(442), - [anon_sym_mutable] = ACTIONS(442), - [anon_sym_constexpr] = ACTIONS(442), - [anon_sym_signed] = ACTIONS(445), - [anon_sym_unsigned] = ACTIONS(445), - [anon_sym_long] = ACTIONS(445), - [anon_sym_short] = ACTIONS(445), - [sym_primitive_type] = ACTIONS(448), - [anon_sym_enum] = ACTIONS(451), - [anon_sym_class] = ACTIONS(454), - [anon_sym_struct] = ACTIONS(457), - [anon_sym_union] = ACTIONS(460), - [anon_sym_if] = ACTIONS(463), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(469), - [anon_sym_default] = ACTIONS(472), - [anon_sym_while] = ACTIONS(475), - [anon_sym_do] = ACTIONS(478), - [anon_sym_for] = ACTIONS(481), - [anon_sym_return] = ACTIONS(484), - [anon_sym_break] = ACTIONS(487), - [anon_sym_continue] = ACTIONS(490), - [anon_sym_goto] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(496), - [anon_sym_sizeof] = ACTIONS(499), - [sym_number_literal] = ACTIONS(502), - [anon_sym_L_SQUOTE] = ACTIONS(505), - [anon_sym_u_SQUOTE] = ACTIONS(505), - [anon_sym_U_SQUOTE] = ACTIONS(505), - [anon_sym_u8_SQUOTE] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(505), - [anon_sym_L_DQUOTE] = ACTIONS(508), - [anon_sym_u_DQUOTE] = ACTIONS(508), - [anon_sym_U_DQUOTE] = ACTIONS(508), - [anon_sym_u8_DQUOTE] = ACTIONS(508), - [anon_sym_DQUOTE] = ACTIONS(508), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(514), - [anon_sym_virtual] = ACTIONS(517), - [anon_sym_explicit] = ACTIONS(520), - [sym_auto] = ACTIONS(523), - [anon_sym_typename] = ACTIONS(526), - [anon_sym_template] = ACTIONS(529), - [anon_sym_operator] = ACTIONS(532), - [anon_sym_delete] = ACTIONS(535), - [anon_sym_throw] = ACTIONS(538), - [anon_sym_namespace] = ACTIONS(541), - [anon_sym_using] = ACTIONS(544), - [anon_sym_static_assert] = ACTIONS(547), - [anon_sym_co_return] = ACTIONS(550), - [anon_sym_co_yield] = ACTIONS(553), - [anon_sym_try] = ACTIONS(556), - [anon_sym_co_await] = ACTIONS(559), - [anon_sym_new] = ACTIONS(562), - [sym_this] = ACTIONS(511), - [sym_nullptr] = ACTIONS(511), - [sym_alone_macro] = ACTIONS(565), - [aux_sym_alone_macro_call_token1] = ACTIONS(568), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(571), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_FORWARD] = ACTIONS(571), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(571), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(571), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(571), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(571), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_PS_GET] = ACTIONS(571), - [anon_sym_PS_GET_AND_SET] = ACTIONS(571), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(571), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(571), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(574), - [anon_sym_MOZ_COLD] = ACTIONS(574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(574), - [anon_sym_MOZ_NONNULL] = ACTIONS(574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(574), - [anon_sym_MOZ_NORETURN] = ACTIONS(574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(574), - [anon_sym_MOZ_RAII] = ACTIONS(574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(574), - [sym_raw_string_literal] = ACTIONS(577), - }, - [29] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(29), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(29), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(580), - [aux_sym_preproc_include_token1] = ACTIONS(583), - [aux_sym_preproc_def_token1] = ACTIONS(586), - [aux_sym_preproc_if_token1] = ACTIONS(589), - [aux_sym_preproc_ifdef_token1] = ACTIONS(592), - [aux_sym_preproc_ifdef_token2] = ACTIONS(592), - [sym_preproc_directive] = ACTIONS(595), - [anon_sym_LPAREN2] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(388), - [anon_sym_TILDE] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_typedef] = ACTIONS(601), - [anon_sym_extern] = ACTIONS(604), - [anon_sym___attribute__] = ACTIONS(415), - [anon_sym_COLON_COLON] = ACTIONS(418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(421), - [anon_sym___declspec] = ACTIONS(424), - [anon_sym___based] = ACTIONS(427), - [anon_sym___cdecl] = ACTIONS(430), - [anon_sym___clrcall] = ACTIONS(430), - [anon_sym___stdcall] = ACTIONS(430), - [anon_sym___fastcall] = ACTIONS(430), - [anon_sym___thiscall] = ACTIONS(430), - [anon_sym___vectorcall] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_static] = ACTIONS(439), - [anon_sym_register] = ACTIONS(439), - [anon_sym_inline] = ACTIONS(439), - [anon_sym_thread_local] = ACTIONS(439), - [anon_sym_const] = ACTIONS(442), - [anon_sym_volatile] = ACTIONS(442), - [anon_sym_restrict] = ACTIONS(442), - [anon_sym__Atomic] = ACTIONS(442), - [anon_sym_mutable] = ACTIONS(442), - [anon_sym_constexpr] = ACTIONS(442), - [anon_sym_signed] = ACTIONS(445), - [anon_sym_unsigned] = ACTIONS(445), - [anon_sym_long] = ACTIONS(445), - [anon_sym_short] = ACTIONS(445), - [sym_primitive_type] = ACTIONS(448), - [anon_sym_enum] = ACTIONS(451), - [anon_sym_class] = ACTIONS(454), - [anon_sym_struct] = ACTIONS(457), - [anon_sym_union] = ACTIONS(460), - [anon_sym_if] = ACTIONS(612), - [anon_sym_switch] = ACTIONS(615), - [anon_sym_case] = ACTIONS(618), - [anon_sym_default] = ACTIONS(621), - [anon_sym_while] = ACTIONS(624), - [anon_sym_do] = ACTIONS(627), - [anon_sym_for] = ACTIONS(630), - [anon_sym_return] = ACTIONS(633), - [anon_sym_break] = ACTIONS(636), - [anon_sym_continue] = ACTIONS(639), - [anon_sym_goto] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(496), - [anon_sym_sizeof] = ACTIONS(499), - [sym_number_literal] = ACTIONS(502), - [anon_sym_L_SQUOTE] = ACTIONS(505), - [anon_sym_u_SQUOTE] = ACTIONS(505), - [anon_sym_U_SQUOTE] = ACTIONS(505), - [anon_sym_u8_SQUOTE] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(505), - [anon_sym_L_DQUOTE] = ACTIONS(508), - [anon_sym_u_DQUOTE] = ACTIONS(508), - [anon_sym_U_DQUOTE] = ACTIONS(508), - [anon_sym_u8_DQUOTE] = ACTIONS(508), - [anon_sym_DQUOTE] = ACTIONS(508), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(514), - [anon_sym_virtual] = ACTIONS(517), - [anon_sym_explicit] = ACTIONS(520), - [sym_auto] = ACTIONS(523), - [anon_sym_typename] = ACTIONS(526), - [anon_sym_template] = ACTIONS(645), - [anon_sym_operator] = ACTIONS(532), - [anon_sym_delete] = ACTIONS(535), - [anon_sym_throw] = ACTIONS(648), - [anon_sym_namespace] = ACTIONS(651), - [anon_sym_using] = ACTIONS(654), - [anon_sym_static_assert] = ACTIONS(657), - [anon_sym_co_return] = ACTIONS(660), - [anon_sym_co_yield] = ACTIONS(663), - [anon_sym_try] = ACTIONS(666), - [anon_sym_co_await] = ACTIONS(559), - [anon_sym_new] = ACTIONS(562), - [sym_this] = ACTIONS(511), - [sym_nullptr] = ACTIONS(511), - [sym_alone_macro] = ACTIONS(669), - [aux_sym_alone_macro_call_token1] = ACTIONS(672), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(571), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_FORWARD] = ACTIONS(571), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(571), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(571), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(571), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(571), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_PS_GET] = ACTIONS(571), - [anon_sym_PS_GET_AND_SET] = ACTIONS(571), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(571), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(571), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(574), - [anon_sym_MOZ_COLD] = ACTIONS(574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(574), - [anon_sym_MOZ_NONNULL] = ACTIONS(574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(574), - [anon_sym_MOZ_NORETURN] = ACTIONS(574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(574), - [anon_sym_MOZ_RAII] = ACTIONS(574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(574), - [sym_raw_string_literal] = ACTIONS(577), - }, - [30] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(50), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(50), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(677), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(239), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [31] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(29), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(29), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(295), + [anon_sym___attribute__] = ACTIONS(43), + [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(297), + [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(299), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(327), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_using] = ACTIONS(335), + [anon_sym_static_assert] = ACTIONS(337), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(26)] = { + [sym__block_item] = STATE(33), + [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(8870), + [sym_preproc_elif] = STATE(8870), + [sym_preproc_elifdef] = STATE(8870), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(273), + [aux_sym_preproc_if_token1] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(369), + [aux_sym_preproc_ifdef_token1] = ACTIONS(279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(279), + [aux_sym_preproc_else_token1] = ACTIONS(281), + [aux_sym_preproc_elif_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(285), + [sym_preproc_directive] = ACTIONS(287), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -39484,299 +50836,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(681), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [32] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(29), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(29), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(295), + [anon_sym___attribute__] = ACTIONS(43), + [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(297), + [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(299), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(327), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_using] = ACTIONS(335), + [anon_sym_static_assert] = ACTIONS(337), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(27)] = { + [sym__block_item] = STATE(33), + [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(8568), + [sym_preproc_elif] = STATE(8568), + [sym_preproc_elifdef] = STATE(8568), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(273), + [aux_sym_preproc_if_token1] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(371), + [aux_sym_preproc_ifdef_token1] = ACTIONS(279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(279), + [aux_sym_preproc_else_token1] = ACTIONS(281), + [aux_sym_preproc_elif_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(285), + [sym_preproc_directive] = ACTIONS(287), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -39785,600 +51194,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(681), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [33] = { + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(295), + [anon_sym___attribute__] = ACTIONS(43), + [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(297), + [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(299), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(327), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_using] = ACTIONS(335), + [anon_sym_static_assert] = ACTIONS(337), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(28)] = { + [sym__block_item] = STATE(29), [sym_preproc_include] = STATE(29), [sym_preproc_def] = STATE(29), [sym_preproc_function_def] = STATE(29), [sym_preproc_call] = STATE(29), [sym_preproc_if] = STATE(29), [sym_preproc_ifdef] = STATE(29), + [sym_preproc_else] = STATE(8557), + [sym_preproc_elif] = STATE(8557), + [sym_preproc_elifdef] = STATE(8557), [sym_function_definition] = STATE(29), [sym_declaration] = STATE(29), [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(29), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), [sym__empty_declaration] = STATE(29), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), [sym_template_declaration] = STATE(29), [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), [sym_operator_cast_definition] = STATE(29), [sym_operator_cast_declaration] = STATE(29), [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), [sym_namespace_definition] = STATE(29), + [sym_namespace_alias_definition] = STATE(29), [sym_using_declaration] = STATE(29), [sym_alias_declaration] = STATE(29), [sym_static_assert_declaration] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(29), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(681), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [34] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(37), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(37), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(37), - [sym_template_instantiation] = STATE(37), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(37), - [sym_operator_cast_declaration] = STATE(37), - [sym_constructor_or_destructor_definition] = STATE(37), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(37), - [sym_using_declaration] = STATE(37), - [sym_alias_declaration] = STATE(37), - [sym_static_assert_declaration] = STATE(37), - [sym_for_range_loop] = STATE(37), - [sym_co_return_statement] = STATE(37), - [sym_co_yield_statement] = STATE(37), - [sym_throw_statement] = STATE(37), - [sym_try_statement] = STATE(37), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(37), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [sym_concept_definition] = STATE(29), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(273), + [aux_sym_preproc_if_token1] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(279), + [aux_sym_preproc_else_token1] = ACTIONS(281), + [aux_sym_preproc_elif_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(285), + [sym_preproc_directive] = ACTIONS(287), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -40387,299 +51552,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(233), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [35] = { + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(295), + [anon_sym___attribute__] = ACTIONS(43), + [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(297), + [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(299), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(327), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_using] = ACTIONS(335), + [anon_sym_static_assert] = ACTIONS(337), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(29)] = { + [sym__block_item] = STATE(33), [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(8548), + [sym_preproc_elif] = STATE(8548), + [sym_preproc_elifdef] = STATE(8548), [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(33), - [sym_labeled_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), [sym__empty_declaration] = STATE(33), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), [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_for_range_loop] = STATE(33), - [sym_co_return_statement] = STATE(33), - [sym_co_yield_statement] = STATE(33), - [sym_throw_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(33), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [sym_concept_definition] = STATE(33), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(273), + [aux_sym_preproc_if_token1] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(375), + [aux_sym_preproc_ifdef_token1] = ACTIONS(279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(279), + [aux_sym_preproc_else_token1] = ACTIONS(281), + [aux_sym_preproc_elif_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(285), + [sym_preproc_directive] = ACTIONS(287), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -40688,299 +51910,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(225), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [36] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(29), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(29), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(295), + [anon_sym___attribute__] = ACTIONS(43), + [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(297), + [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(299), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(327), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_using] = ACTIONS(335), + [anon_sym_static_assert] = ACTIONS(337), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(30)] = { + [sym__block_item] = STATE(25), + [sym_preproc_include] = STATE(25), + [sym_preproc_def] = STATE(25), + [sym_preproc_function_def] = STATE(25), + [sym_preproc_call] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_preproc_else] = STATE(8865), + [sym_preproc_elif] = STATE(8865), + [sym_preproc_elifdef] = STATE(8865), + [sym_function_definition] = STATE(25), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(25), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(25), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(25), + [sym_template_instantiation] = STATE(25), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), + [sym_operator_cast_definition] = STATE(25), + [sym_operator_cast_declaration] = STATE(25), + [sym_constructor_or_destructor_definition] = STATE(25), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(25), + [sym_namespace_alias_definition] = STATE(25), + [sym_using_declaration] = STATE(25), + [sym_alias_declaration] = STATE(25), + [sym_static_assert_declaration] = STATE(25), + [sym_concept_definition] = STATE(25), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(273), + [aux_sym_preproc_if_token1] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(279), + [aux_sym_preproc_else_token1] = ACTIONS(281), + [aux_sym_preproc_elif_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(285), + [sym_preproc_directive] = ACTIONS(287), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -40989,299 +52268,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(681), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [37] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(29), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(29), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(295), + [anon_sym___attribute__] = ACTIONS(43), + [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(297), + [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(299), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(327), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_using] = ACTIONS(335), + [anon_sym_static_assert] = ACTIONS(337), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(31)] = { + [sym__block_item] = STATE(27), + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(8471), + [sym_preproc_elif] = STATE(8471), + [sym_preproc_elifdef] = STATE(8471), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(27), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(27), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(27), + [sym_template_instantiation] = STATE(27), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), + [sym_operator_cast_definition] = STATE(27), + [sym_operator_cast_declaration] = STATE(27), + [sym_constructor_or_destructor_definition] = STATE(27), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(27), + [sym_namespace_alias_definition] = STATE(27), + [sym_using_declaration] = STATE(27), + [sym_alias_declaration] = STATE(27), + [sym_static_assert_declaration] = STATE(27), + [sym_concept_definition] = STATE(27), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(273), + [aux_sym_preproc_if_token1] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(279), + [aux_sym_preproc_else_token1] = ACTIONS(281), + [aux_sym_preproc_elif_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(285), + [sym_preproc_directive] = ACTIONS(287), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -41290,300 +52626,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(681), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [38] = { - [sym_preproc_include] = STATE(49), - [sym_preproc_def] = STATE(49), - [sym_preproc_function_def] = STATE(49), - [sym_preproc_call] = STATE(49), - [sym_preproc_if] = STATE(49), - [sym_preproc_ifdef] = STATE(49), - [sym_function_definition] = STATE(49), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3013), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1170), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3721), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1371), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_case_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(49), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(839), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(49), - [sym_template_instantiation] = STATE(49), - [sym_operator_cast] = STATE(4028), - [sym__constructor_specifiers] = STATE(839), - [sym_operator_cast_definition] = STATE(49), - [sym_operator_cast_declaration] = STATE(49), - [sym_constructor_or_destructor_definition] = STATE(49), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(49), - [sym_using_declaration] = STATE(49), - [sym_alias_declaration] = STATE(49), - [sym_static_assert_declaration] = STATE(49), - [sym_for_range_loop] = STATE(49), - [sym_co_return_statement] = STATE(49), - [sym_co_yield_statement] = STATE(49), - [sym_throw_statement] = STATE(49), - [sym_try_statement] = STATE(49), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4028), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(49), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(839), - [ts_builtin_sym_end] = ACTIONS(695), - [sym_identifier] = ACTIONS(7), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(295), + [anon_sym___attribute__] = ACTIONS(43), + [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(297), + [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(299), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(327), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_using] = ACTIONS(335), + [anon_sym_static_assert] = ACTIONS(337), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(32)] = { + [sym__block_item] = STATE(26), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_preproc_else] = STATE(8646), + [sym_preproc_elif] = STATE(8646), + [sym_preproc_elifdef] = STATE(8646), + [sym_function_definition] = STATE(26), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(26), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(26), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(26), + [sym_template_instantiation] = STATE(26), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), + [sym_operator_cast_definition] = STATE(26), + [sym_operator_cast_declaration] = STATE(26), + [sym_constructor_or_destructor_definition] = STATE(26), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(26), + [sym_namespace_alias_definition] = STATE(26), + [sym_using_declaration] = STATE(26), + [sym_alias_declaration] = STATE(26), + [sym_static_assert_declaration] = STATE(26), + [sym_concept_definition] = STATE(26), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(273), + [aux_sym_preproc_if_token1] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(381), + [aux_sym_preproc_ifdef_token1] = ACTIONS(279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(279), + [aux_sym_preproc_else_token1] = ACTIONS(281), + [aux_sym_preproc_elif_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(285), + [sym_preproc_directive] = ACTIONS(287), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -41592,298 +52984,1054 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), - [anon_sym_extern] = ACTIONS(37), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(115), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_namespace] = ACTIONS(123), - [anon_sym_using] = ACTIONS(125), - [anon_sym_static_assert] = ACTIONS(127), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(697), - [aux_sym_alone_macro_call_token1] = ACTIONS(141), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [39] = { - [sym_preproc_include] = STATE(43), - [sym_preproc_def] = STATE(43), - [sym_preproc_function_def] = STATE(43), - [sym_preproc_call] = STATE(43), - [sym_preproc_if] = STATE(43), - [sym_preproc_ifdef] = STATE(43), - [sym_function_definition] = STATE(43), - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(43), - [sym_labeled_statement] = STATE(43), - [sym_expression_statement] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_statement] = STATE(43), - [sym_case_statement] = STATE(43), - [sym_while_statement] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym_return_statement] = STATE(43), - [sym_break_statement] = STATE(43), - [sym_continue_statement] = STATE(43), - [sym_goto_statement] = STATE(43), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(43), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(43), - [sym_template_instantiation] = STATE(43), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(43), - [sym_operator_cast_declaration] = STATE(43), - [sym_constructor_or_destructor_definition] = STATE(43), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(43), - [sym_using_declaration] = STATE(43), - [sym_alias_declaration] = STATE(43), - [sym_static_assert_declaration] = STATE(43), - [sym_for_range_loop] = STATE(43), - [sym_co_return_statement] = STATE(43), - [sym_co_yield_statement] = STATE(43), - [sym_throw_statement] = STATE(43), - [sym_try_statement] = STATE(43), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(43), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(291), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(295), + [anon_sym___attribute__] = ACTIONS(43), + [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(297), + [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(299), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(327), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_using] = ACTIONS(335), + [anon_sym_static_assert] = ACTIONS(337), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(33)] = { + [sym__block_item] = STATE(33), + [sym_preproc_include] = STATE(33), + [sym_preproc_def] = STATE(33), + [sym_preproc_function_def] = STATE(33), + [sym_preproc_call] = STATE(33), + [sym_preproc_if] = STATE(33), + [sym_preproc_ifdef] = STATE(33), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6658), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(188), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1064), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1064), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(383), + [aux_sym_preproc_include_token1] = ACTIONS(386), + [aux_sym_preproc_def_token1] = ACTIONS(389), + [aux_sym_preproc_if_token1] = ACTIONS(392), + [aux_sym_preproc_if_token2] = ACTIONS(395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(397), + [aux_sym_preproc_ifdef_token2] = ACTIONS(397), + [aux_sym_preproc_else_token1] = ACTIONS(395), + [aux_sym_preproc_elif_token1] = ACTIONS(395), + [aux_sym_preproc_elifdef_token1] = ACTIONS(395), + [aux_sym_preproc_elifdef_token2] = ACTIONS(395), + [sym_preproc_directive] = ACTIONS(400), + [anon_sym_LPAREN2] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_AMP_AMP] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym___extension__] = ACTIONS(427), + [anon_sym_typedef] = ACTIONS(430), + [anon_sym_virtual] = ACTIONS(433), + [anon_sym_extern] = ACTIONS(436), + [anon_sym___attribute__] = ACTIONS(439), + [anon_sym___attribute] = ACTIONS(439), + [anon_sym_COLON_COLON] = ACTIONS(442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(445), + [anon_sym___declspec] = ACTIONS(448), + [anon_sym___based] = ACTIONS(451), + [anon_sym___cdecl] = ACTIONS(454), + [anon_sym___clrcall] = ACTIONS(454), + [anon_sym___stdcall] = ACTIONS(454), + [anon_sym___fastcall] = ACTIONS(454), + [anon_sym___thiscall] = ACTIONS(454), + [anon_sym___vectorcall] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(457), + [anon_sym_signed] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(460), + [anon_sym_long] = ACTIONS(460), + [anon_sym_short] = ACTIONS(460), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_static] = ACTIONS(466), + [anon_sym_register] = ACTIONS(466), + [anon_sym_inline] = ACTIONS(469), + [anon_sym___inline] = ACTIONS(466), + [anon_sym___inline__] = ACTIONS(466), + [anon_sym___forceinline] = ACTIONS(466), + [anon_sym_thread_local] = ACTIONS(466), + [anon_sym___thread] = ACTIONS(466), + [anon_sym_const] = ACTIONS(472), + [anon_sym_constexpr] = ACTIONS(472), + [anon_sym_volatile] = ACTIONS(472), + [anon_sym_restrict] = ACTIONS(472), + [anon_sym___restrict__] = ACTIONS(472), + [anon_sym__Atomic] = ACTIONS(472), + [anon_sym__Noreturn] = ACTIONS(472), + [anon_sym_noreturn] = ACTIONS(472), + [anon_sym__Nonnull] = ACTIONS(472), + [anon_sym_mutable] = ACTIONS(472), + [anon_sym_constinit] = ACTIONS(472), + [anon_sym_consteval] = ACTIONS(472), + [anon_sym_alignas] = ACTIONS(475), + [anon_sym__Alignas] = ACTIONS(475), + [sym_primitive_type] = ACTIONS(478), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_class] = ACTIONS(484), + [anon_sym_struct] = ACTIONS(487), + [anon_sym_union] = ACTIONS(490), + [anon_sym_if] = ACTIONS(493), + [anon_sym_switch] = ACTIONS(496), + [anon_sym_case] = ACTIONS(499), + [anon_sym_default] = ACTIONS(502), + [anon_sym_while] = ACTIONS(505), + [anon_sym_do] = ACTIONS(508), + [anon_sym_for] = ACTIONS(511), + [anon_sym_return] = ACTIONS(514), + [anon_sym_break] = ACTIONS(517), + [anon_sym_continue] = ACTIONS(520), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(526), + [anon_sym___leave] = ACTIONS(529), + [anon_sym_not] = ACTIONS(412), + [anon_sym_compl] = ACTIONS(412), + [anon_sym_DASH_DASH] = ACTIONS(532), + [anon_sym_PLUS_PLUS] = ACTIONS(532), + [anon_sym_sizeof] = ACTIONS(535), + [anon_sym___alignof__] = ACTIONS(538), + [anon_sym___alignof] = ACTIONS(538), + [anon_sym__alignof] = ACTIONS(538), + [anon_sym_alignof] = ACTIONS(538), + [anon_sym__Alignof] = ACTIONS(538), + [anon_sym_offsetof] = ACTIONS(541), + [anon_sym__Generic] = ACTIONS(544), + [anon_sym_asm] = ACTIONS(547), + [anon_sym___asm__] = ACTIONS(547), + [anon_sym___asm] = ACTIONS(547), + [sym_number_literal] = ACTIONS(550), + [anon_sym_L_SQUOTE] = ACTIONS(553), + [anon_sym_u_SQUOTE] = ACTIONS(553), + [anon_sym_U_SQUOTE] = ACTIONS(553), + [anon_sym_u8_SQUOTE] = ACTIONS(553), + [anon_sym_SQUOTE] = ACTIONS(553), + [anon_sym_L_DQUOTE] = ACTIONS(556), + [anon_sym_u_DQUOTE] = ACTIONS(556), + [anon_sym_U_DQUOTE] = ACTIONS(556), + [anon_sym_u8_DQUOTE] = ACTIONS(556), + [anon_sym_DQUOTE] = ACTIONS(556), + [sym_true] = ACTIONS(559), + [sym_false] = ACTIONS(559), + [anon_sym_NULL] = ACTIONS(562), + [anon_sym_nullptr] = ACTIONS(562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(565), + [anon_sym_decltype] = ACTIONS(568), + [anon_sym_explicit] = ACTIONS(571), + [anon_sym_typename] = ACTIONS(574), + [anon_sym_template] = ACTIONS(577), + [anon_sym_operator] = ACTIONS(580), + [anon_sym_try] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_namespace] = ACTIONS(592), + [anon_sym_using] = ACTIONS(595), + [anon_sym_static_assert] = ACTIONS(598), + [anon_sym_concept] = ACTIONS(601), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(607), + [anon_sym_R_DQUOTE] = ACTIONS(610), + [anon_sym_LR_DQUOTE] = ACTIONS(610), + [anon_sym_uR_DQUOTE] = ACTIONS(610), + [anon_sym_UR_DQUOTE] = ACTIONS(610), + [anon_sym_u8R_DQUOTE] = ACTIONS(610), + [anon_sym_co_await] = ACTIONS(613), + [anon_sym_new] = ACTIONS(616), + [anon_sym_requires] = ACTIONS(619), + [sym_this] = ACTIONS(559), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(622), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_FORWARD] = ACTIONS(622), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(622), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(622), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(622), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(622), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_PS_GET] = ACTIONS(622), + [anon_sym_PS_GET_AND_SET] = ACTIONS(622), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(622), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(622), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(625), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(625), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(625), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(625), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(625), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(625), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(625), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(625), + [anon_sym_MOZ_COLD] = ACTIONS(625), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(625), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(625), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(625), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(625), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(625), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(625), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(625), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(625), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(625), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(625), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(625), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(625), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(625), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(625), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(625), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(625), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(625), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(625), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(625), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(625), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(625), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(625), + [anon_sym_MOZ_MUST_USE] = ACTIONS(625), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(625), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(625), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(625), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(625), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(625), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(625), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(625), + [anon_sym_MOZ_NONNULL] = ACTIONS(625), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(625), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(625), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(625), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(625), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(625), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(625), + [anon_sym_MOZ_NORETURN] = ACTIONS(625), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(625), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(625), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(625), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(625), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(625), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(625), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(625), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(625), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(625), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(625), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(625), + [anon_sym_MOZ_RAII] = ACTIONS(625), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(625), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(625), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(625), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(625), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(625), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(625), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(625), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(625), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(625), + [anon_sym_JS_PUBLIC_API] = ACTIONS(625), + }, + [STATE(34)] = { + [sym__block_item] = STATE(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(1620), + [sym__declaration_specifiers] = STATE(5019), + [sym_linkage_specification] = STATE(61), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1110), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6630), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(383), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1468), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(575), + [sym_statement] = STATE(61), + [sym_labeled_statement] = STATE(383), + [sym_expression_statement] = STATE(383), + [sym_if_statement] = STATE(383), + [sym_switch_statement] = STATE(383), + [sym_case_statement] = STATE(383), + [sym_while_statement] = STATE(383), + [sym_do_statement] = STATE(383), + [sym_for_statement] = STATE(383), + [sym_return_statement] = STATE(383), + [sym_break_statement] = STATE(383), + [sym_continue_statement] = STATE(383), + [sym_goto_statement] = STATE(383), + [sym_seh_try_statement] = STATE(383), + [sym_seh_leave_statement] = STATE(383), + [sym_expression] = STATE(4855), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8847), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(61), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1067), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(61), + [sym_template_instantiation] = STATE(61), + [sym_operator_cast] = STATE(7114), + [sym__constructor_specifiers] = STATE(1067), + [sym_operator_cast_definition] = STATE(61), + [sym_operator_cast_declaration] = STATE(61), + [sym_constructor_or_destructor_definition] = STATE(61), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(383), + [sym_co_return_statement] = STATE(383), + [sym_co_yield_statement] = STATE(383), + [sym_throw_statement] = STATE(383), + [sym_try_statement] = STATE(383), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7114), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(61), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(845), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1067), + [sym_identifier] = ACTIONS(628), + [aux_sym_preproc_include_token1] = ACTIONS(630), + [aux_sym_preproc_def_token1] = ACTIONS(632), + [aux_sym_preproc_if_token1] = ACTIONS(634), + [aux_sym_preproc_if_token2] = ACTIONS(636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(638), + [aux_sym_preproc_ifdef_token2] = ACTIONS(638), + [sym_preproc_directive] = ACTIONS(640), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym___extension__] = ACTIONS(644), + [anon_sym_typedef] = ACTIONS(646), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(648), + [anon_sym___attribute__] = ACTIONS(43), + [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(650), + [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(652), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), + [anon_sym___try] = ACTIONS(676), + [anon_sym___leave] = ACTIONS(678), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(680), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(682), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(684), + [anon_sym_namespace] = ACTIONS(686), + [anon_sym_using] = ACTIONS(688), + [anon_sym_static_assert] = ACTIONS(690), + [anon_sym_concept] = ACTIONS(692), + [anon_sym_co_return] = ACTIONS(694), + [anon_sym_co_yield] = ACTIONS(696), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(35)] = { + [sym__block_item] = STATE(79), + [sym_preproc_include] = STATE(79), + [sym_preproc_def] = STATE(79), + [sym_preproc_function_def] = STATE(79), + [sym_preproc_call] = STATE(79), + [sym_preproc_if] = STATE(79), + [sym_preproc_ifdef] = STATE(79), + [sym_function_definition] = STATE(79), + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(79), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(79), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(79), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(79), + [sym_template_instantiation] = STATE(79), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(79), + [sym_operator_cast_declaration] = STATE(79), + [sym_constructor_or_destructor_definition] = STATE(79), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(79), + [sym_namespace_alias_definition] = STATE(79), + [sym_using_declaration] = STATE(79), + [sym_alias_declaration] = STATE(79), + [sym_static_assert_declaration] = STATE(79), + [sym_concept_definition] = STATE(79), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(79), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -41892,181 +54040,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(701), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [40] = { + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(702), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(36)] = { + [sym__block_item] = STATE(36), [sym_preproc_include] = STATE(36), [sym_preproc_def] = STATE(36), [sym_preproc_function_def] = STATE(36), @@ -42076,115 +54257,483 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(36), [sym_declaration] = STATE(36), [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5019), [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1110), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6630), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(383), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1468), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(575), + [sym_statement] = STATE(36), + [sym_labeled_statement] = STATE(383), + [sym_expression_statement] = STATE(383), + [sym_if_statement] = STATE(383), + [sym_switch_statement] = STATE(383), + [sym_case_statement] = STATE(383), + [sym_while_statement] = STATE(383), + [sym_do_statement] = STATE(383), + [sym_for_statement] = STATE(383), + [sym_return_statement] = STATE(383), + [sym_break_statement] = STATE(383), + [sym_continue_statement] = STATE(383), + [sym_goto_statement] = STATE(383), + [sym_seh_try_statement] = STATE(383), + [sym_seh_leave_statement] = STATE(383), + [sym_expression] = STATE(4855), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8847), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), [sym__empty_declaration] = STATE(36), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1067), + [sym_dependent_type] = STATE(1397), [sym_template_declaration] = STATE(36), [sym_template_instantiation] = STATE(36), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), + [sym_operator_cast] = STATE(7114), + [sym__constructor_specifiers] = STATE(1067), [sym_operator_cast_definition] = STATE(36), [sym_operator_cast_declaration] = STATE(36), [sym_constructor_or_destructor_definition] = STATE(36), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), [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_for_range_loop] = STATE(36), - [sym_co_return_statement] = STATE(36), - [sym_co_yield_statement] = STATE(36), - [sym_throw_statement] = STATE(36), - [sym_try_statement] = STATE(36), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(36), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [sym_concept_definition] = STATE(36), + [sym_for_range_loop] = STATE(383), + [sym_co_return_statement] = STATE(383), + [sym_co_yield_statement] = STATE(383), + [sym_throw_statement] = STATE(383), + [sym_try_statement] = STATE(383), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7114), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(845), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1067), + [sym_identifier] = ACTIONS(704), + [aux_sym_preproc_include_token1] = ACTIONS(707), + [aux_sym_preproc_def_token1] = ACTIONS(710), + [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_if_token2] = ACTIONS(395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(716), + [sym_preproc_directive] = ACTIONS(719), + [anon_sym_LPAREN2] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_AMP_AMP] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_SEMI] = ACTIONS(722), + [anon_sym___extension__] = ACTIONS(725), + [anon_sym_typedef] = ACTIONS(728), + [anon_sym_virtual] = ACTIONS(433), + [anon_sym_extern] = ACTIONS(731), + [anon_sym___attribute__] = ACTIONS(439), + [anon_sym___attribute] = ACTIONS(439), + [anon_sym_COLON_COLON] = ACTIONS(442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(445), + [anon_sym___declspec] = ACTIONS(448), + [anon_sym___based] = ACTIONS(451), + [anon_sym___cdecl] = ACTIONS(454), + [anon_sym___clrcall] = ACTIONS(454), + [anon_sym___stdcall] = ACTIONS(454), + [anon_sym___fastcall] = ACTIONS(454), + [anon_sym___thiscall] = ACTIONS(454), + [anon_sym___vectorcall] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_signed] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(460), + [anon_sym_long] = ACTIONS(460), + [anon_sym_short] = ACTIONS(460), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_static] = ACTIONS(466), + [anon_sym_register] = ACTIONS(466), + [anon_sym_inline] = ACTIONS(737), + [anon_sym___inline] = ACTIONS(466), + [anon_sym___inline__] = ACTIONS(466), + [anon_sym___forceinline] = ACTIONS(466), + [anon_sym_thread_local] = ACTIONS(466), + [anon_sym___thread] = ACTIONS(466), + [anon_sym_const] = ACTIONS(472), + [anon_sym_constexpr] = ACTIONS(472), + [anon_sym_volatile] = ACTIONS(472), + [anon_sym_restrict] = ACTIONS(472), + [anon_sym___restrict__] = ACTIONS(472), + [anon_sym__Atomic] = ACTIONS(472), + [anon_sym__Noreturn] = ACTIONS(472), + [anon_sym_noreturn] = ACTIONS(472), + [anon_sym__Nonnull] = ACTIONS(472), + [anon_sym_mutable] = ACTIONS(472), + [anon_sym_constinit] = ACTIONS(472), + [anon_sym_consteval] = ACTIONS(472), + [anon_sym_alignas] = ACTIONS(475), + [anon_sym__Alignas] = ACTIONS(475), + [sym_primitive_type] = ACTIONS(478), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_class] = ACTIONS(484), + [anon_sym_struct] = ACTIONS(487), + [anon_sym_union] = ACTIONS(490), + [anon_sym_if] = ACTIONS(740), + [anon_sym_switch] = ACTIONS(743), + [anon_sym_case] = ACTIONS(746), + [anon_sym_default] = ACTIONS(749), + [anon_sym_while] = ACTIONS(752), + [anon_sym_do] = ACTIONS(755), + [anon_sym_for] = ACTIONS(758), + [anon_sym_return] = ACTIONS(761), + [anon_sym_break] = ACTIONS(764), + [anon_sym_continue] = ACTIONS(767), + [anon_sym_goto] = ACTIONS(770), + [anon_sym___try] = ACTIONS(773), + [anon_sym___leave] = ACTIONS(776), + [anon_sym_not] = ACTIONS(412), + [anon_sym_compl] = ACTIONS(412), + [anon_sym_DASH_DASH] = ACTIONS(532), + [anon_sym_PLUS_PLUS] = ACTIONS(532), + [anon_sym_sizeof] = ACTIONS(535), + [anon_sym___alignof__] = ACTIONS(538), + [anon_sym___alignof] = ACTIONS(538), + [anon_sym__alignof] = ACTIONS(538), + [anon_sym_alignof] = ACTIONS(538), + [anon_sym__Alignof] = ACTIONS(538), + [anon_sym_offsetof] = ACTIONS(541), + [anon_sym__Generic] = ACTIONS(544), + [anon_sym_asm] = ACTIONS(547), + [anon_sym___asm__] = ACTIONS(547), + [anon_sym___asm] = ACTIONS(547), + [sym_number_literal] = ACTIONS(550), + [anon_sym_L_SQUOTE] = ACTIONS(553), + [anon_sym_u_SQUOTE] = ACTIONS(553), + [anon_sym_U_SQUOTE] = ACTIONS(553), + [anon_sym_u8_SQUOTE] = ACTIONS(553), + [anon_sym_SQUOTE] = ACTIONS(553), + [anon_sym_L_DQUOTE] = ACTIONS(556), + [anon_sym_u_DQUOTE] = ACTIONS(556), + [anon_sym_U_DQUOTE] = ACTIONS(556), + [anon_sym_u8_DQUOTE] = ACTIONS(556), + [anon_sym_DQUOTE] = ACTIONS(556), + [sym_true] = ACTIONS(559), + [sym_false] = ACTIONS(559), + [anon_sym_NULL] = ACTIONS(562), + [anon_sym_nullptr] = ACTIONS(562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(565), + [anon_sym_decltype] = ACTIONS(568), + [anon_sym_explicit] = ACTIONS(571), + [anon_sym_typename] = ACTIONS(574), + [anon_sym_template] = ACTIONS(779), + [anon_sym_operator] = ACTIONS(580), + [anon_sym_try] = ACTIONS(782), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_throw] = ACTIONS(785), + [anon_sym_namespace] = ACTIONS(788), + [anon_sym_using] = ACTIONS(791), + [anon_sym_static_assert] = ACTIONS(794), + [anon_sym_concept] = ACTIONS(797), + [anon_sym_co_return] = ACTIONS(800), + [anon_sym_co_yield] = ACTIONS(803), + [anon_sym_R_DQUOTE] = ACTIONS(610), + [anon_sym_LR_DQUOTE] = ACTIONS(610), + [anon_sym_uR_DQUOTE] = ACTIONS(610), + [anon_sym_UR_DQUOTE] = ACTIONS(610), + [anon_sym_u8R_DQUOTE] = ACTIONS(610), + [anon_sym_co_await] = ACTIONS(613), + [anon_sym_new] = ACTIONS(616), + [anon_sym_requires] = ACTIONS(619), + [sym_this] = ACTIONS(559), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(622), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_FORWARD] = ACTIONS(622), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(622), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(622), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(622), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(622), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_PS_GET] = ACTIONS(622), + [anon_sym_PS_GET_AND_SET] = ACTIONS(622), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(622), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(622), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(625), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(625), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(625), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(625), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(625), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(625), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(625), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(625), + [anon_sym_MOZ_COLD] = ACTIONS(625), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(625), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(625), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(625), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(625), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(625), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(625), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(625), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(625), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(625), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(625), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(625), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(625), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(625), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(625), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(625), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(625), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(625), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(625), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(625), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(625), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(625), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(625), + [anon_sym_MOZ_MUST_USE] = ACTIONS(625), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(625), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(625), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(625), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(625), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(625), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(625), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(625), + [anon_sym_MOZ_NONNULL] = ACTIONS(625), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(625), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(625), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(625), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(625), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(625), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(625), + [anon_sym_MOZ_NORETURN] = ACTIONS(625), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(625), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(625), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(625), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(625), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(625), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(625), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(625), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(625), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(625), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(625), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(625), + [anon_sym_MOZ_RAII] = ACTIONS(625), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(625), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(625), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(625), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(625), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(625), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(625), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(625), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(625), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(625), + [anon_sym_JS_PUBLIC_API] = ACTIONS(625), + }, + [STATE(37)] = { + [sym__block_item] = STATE(38), + [sym_preproc_include] = STATE(38), + [sym_preproc_def] = STATE(38), + [sym_preproc_function_def] = STATE(38), + [sym_preproc_call] = STATE(38), + [sym_preproc_if] = STATE(38), + [sym_preproc_ifdef] = STATE(38), + [sym_function_definition] = STATE(38), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(38), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(38), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(38), + [sym_template_instantiation] = STATE(38), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(38), + [sym_operator_cast_declaration] = STATE(38), + [sym_constructor_or_destructor_definition] = STATE(38), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -42193,299 +54742,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(703), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(229), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [41] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(29), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(29), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(806), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(38)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -42494,181 +55093,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(705), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(681), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [42] = { + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(808), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(39)] = { + [sym__block_item] = STATE(41), [sym_preproc_include] = STATE(41), [sym_preproc_def] = STATE(41), [sym_preproc_function_def] = STATE(41), @@ -42678,115 +55310,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(41), [sym_declaration] = STATE(41), [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(41), - [sym_labeled_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_case_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_goto_statement] = STATE(41), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), [sym__empty_declaration] = STATE(41), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), [sym_template_declaration] = STATE(41), [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), [sym_operator_cast_definition] = STATE(41), [sym_operator_cast_declaration] = STATE(41), [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), [sym_namespace_definition] = STATE(41), + [sym_namespace_alias_definition] = STATE(41), [sym_using_declaration] = STATE(41), [sym_alias_declaration] = STATE(41), [sym_static_assert_declaration] = STATE(41), - [sym_for_range_loop] = STATE(41), - [sym_co_return_statement] = STATE(41), - [sym_co_yield_statement] = STATE(41), - [sym_throw_statement] = STATE(41), - [sym_try_statement] = STATE(41), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(41), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -42795,299 +55444,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(707), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(709), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [43] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(29), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(29), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(810), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(40)] = { + [sym__block_item] = STATE(58), + [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(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(58), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -43096,600 +55795,1402 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(711), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(681), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [44] = { - [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_function_definition] = STATE(44), - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3058), - [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1169), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3685), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1374), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [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__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(44), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(843), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(44), - [sym_template_instantiation] = STATE(44), - [sym_operator_cast] = STATE(4067), - [sym__constructor_specifiers] = STATE(843), - [sym_operator_cast_definition] = STATE(44), - [sym_operator_cast_declaration] = STATE(44), - [sym_constructor_or_destructor_definition] = STATE(44), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(44), - [sym_using_declaration] = STATE(44), - [sym_alias_declaration] = STATE(44), - [sym_static_assert_declaration] = 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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4067), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(44), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(713), - [aux_sym_preproc_include_token1] = ACTIONS(716), - [aux_sym_preproc_def_token1] = ACTIONS(719), - [aux_sym_preproc_if_token1] = ACTIONS(722), - [aux_sym_preproc_if_token2] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(725), - [aux_sym_preproc_ifdef_token2] = ACTIONS(725), - [sym_preproc_directive] = ACTIONS(728), - [anon_sym_LPAREN2] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(388), - [anon_sym_TILDE] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_typedef] = ACTIONS(734), - [anon_sym_extern] = ACTIONS(737), - [anon_sym___attribute__] = ACTIONS(415), - [anon_sym_COLON_COLON] = ACTIONS(418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(421), - [anon_sym___declspec] = ACTIONS(424), - [anon_sym___based] = ACTIONS(427), - [anon_sym___cdecl] = ACTIONS(430), - [anon_sym___clrcall] = ACTIONS(430), - [anon_sym___stdcall] = ACTIONS(430), - [anon_sym___fastcall] = ACTIONS(430), - [anon_sym___thiscall] = ACTIONS(430), - [anon_sym___vectorcall] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(740), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_static] = ACTIONS(439), - [anon_sym_register] = ACTIONS(439), - [anon_sym_inline] = ACTIONS(439), - [anon_sym_thread_local] = ACTIONS(439), - [anon_sym_const] = ACTIONS(442), - [anon_sym_volatile] = ACTIONS(442), - [anon_sym_restrict] = ACTIONS(442), - [anon_sym__Atomic] = ACTIONS(442), - [anon_sym_mutable] = ACTIONS(442), - [anon_sym_constexpr] = ACTIONS(442), - [anon_sym_signed] = ACTIONS(445), - [anon_sym_unsigned] = ACTIONS(445), - [anon_sym_long] = ACTIONS(445), - [anon_sym_short] = ACTIONS(445), - [sym_primitive_type] = ACTIONS(448), - [anon_sym_enum] = ACTIONS(451), - [anon_sym_class] = ACTIONS(454), - [anon_sym_struct] = ACTIONS(457), - [anon_sym_union] = ACTIONS(460), - [anon_sym_if] = ACTIONS(743), - [anon_sym_switch] = ACTIONS(746), - [anon_sym_case] = ACTIONS(749), - [anon_sym_default] = ACTIONS(752), - [anon_sym_while] = ACTIONS(755), - [anon_sym_do] = ACTIONS(758), - [anon_sym_for] = ACTIONS(761), - [anon_sym_return] = ACTIONS(764), - [anon_sym_break] = ACTIONS(767), - [anon_sym_continue] = ACTIONS(770), - [anon_sym_goto] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(496), - [anon_sym_sizeof] = ACTIONS(499), - [sym_number_literal] = ACTIONS(502), - [anon_sym_L_SQUOTE] = ACTIONS(505), - [anon_sym_u_SQUOTE] = ACTIONS(505), - [anon_sym_U_SQUOTE] = ACTIONS(505), - [anon_sym_u8_SQUOTE] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(505), - [anon_sym_L_DQUOTE] = ACTIONS(508), - [anon_sym_u_DQUOTE] = ACTIONS(508), - [anon_sym_U_DQUOTE] = ACTIONS(508), - [anon_sym_u8_DQUOTE] = ACTIONS(508), - [anon_sym_DQUOTE] = ACTIONS(508), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(514), - [anon_sym_virtual] = ACTIONS(517), - [anon_sym_explicit] = ACTIONS(520), - [sym_auto] = ACTIONS(523), - [anon_sym_typename] = ACTIONS(526), - [anon_sym_template] = ACTIONS(776), - [anon_sym_operator] = ACTIONS(532), - [anon_sym_delete] = ACTIONS(535), - [anon_sym_throw] = ACTIONS(779), - [anon_sym_namespace] = ACTIONS(782), - [anon_sym_using] = ACTIONS(785), - [anon_sym_static_assert] = ACTIONS(788), - [anon_sym_co_return] = ACTIONS(791), - [anon_sym_co_yield] = ACTIONS(794), - [anon_sym_try] = ACTIONS(797), - [anon_sym_co_await] = ACTIONS(559), - [anon_sym_new] = ACTIONS(562), - [sym_this] = ACTIONS(511), - [sym_nullptr] = ACTIONS(511), - [sym_alone_macro] = ACTIONS(800), - [aux_sym_alone_macro_call_token1] = ACTIONS(803), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(571), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_FORWARD] = ACTIONS(571), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(571), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(571), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(571), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(571), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_PS_GET] = ACTIONS(571), - [anon_sym_PS_GET_AND_SET] = ACTIONS(571), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(571), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(571), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(574), - [anon_sym_MOZ_COLD] = ACTIONS(574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(574), - [anon_sym_MOZ_NONNULL] = ACTIONS(574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(574), - [anon_sym_MOZ_NORETURN] = ACTIONS(574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(574), - [anon_sym_MOZ_RAII] = ACTIONS(574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(574), - [sym_raw_string_literal] = ACTIONS(577), - }, - [45] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(46), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(812), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(41)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(814), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(42)] = { + [sym__block_item] = STATE(43), + [sym_preproc_include] = STATE(43), + [sym_preproc_def] = STATE(43), + [sym_preproc_function_def] = STATE(43), + [sym_preproc_call] = STATE(43), + [sym_preproc_if] = STATE(43), + [sym_preproc_ifdef] = STATE(43), + [sym_function_definition] = STATE(43), + [sym_declaration] = STATE(43), + [sym_type_definition] = STATE(43), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(43), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(43), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(43), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(43), + [sym_template_instantiation] = STATE(43), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(43), + [sym_operator_cast_declaration] = STATE(43), + [sym_constructor_or_destructor_definition] = STATE(43), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(43), + [sym_namespace_alias_definition] = STATE(43), + [sym_using_declaration] = STATE(43), + [sym_alias_declaration] = STATE(43), + [sym_static_assert_declaration] = STATE(43), + [sym_concept_definition] = STATE(43), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(816), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(43)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(818), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(44)] = { + [sym__block_item] = STATE(46), + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_function_definition] = STATE(46), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(46), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(46), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(46), + [sym_template_instantiation] = STATE(46), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), [sym_operator_cast_definition] = STATE(46), [sym_operator_cast_declaration] = STATE(46), [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), [sym_namespace_definition] = STATE(46), + [sym_namespace_alias_definition] = STATE(46), [sym_using_declaration] = STATE(46), [sym_alias_declaration] = STATE(46), [sym_static_assert_declaration] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(46), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [sym_concept_definition] = STATE(46), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -43698,299 +57199,700 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(806), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(808), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [46] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(29), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(29), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(820), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(45)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(822), + [aux_sym_preproc_include_token1] = ACTIONS(825), + [aux_sym_preproc_def_token1] = ACTIONS(828), + [aux_sym_preproc_if_token1] = ACTIONS(831), + [aux_sym_preproc_ifdef_token1] = ACTIONS(834), + [aux_sym_preproc_ifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(837), + [anon_sym_LPAREN2] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_AMP_AMP] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_SEMI] = ACTIONS(840), + [anon_sym___extension__] = ACTIONS(843), + [anon_sym_typedef] = ACTIONS(846), + [anon_sym_virtual] = ACTIONS(433), + [anon_sym_extern] = ACTIONS(849), + [anon_sym___attribute__] = ACTIONS(439), + [anon_sym___attribute] = ACTIONS(439), + [anon_sym_COLON_COLON] = ACTIONS(442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(445), + [anon_sym___declspec] = ACTIONS(448), + [anon_sym___based] = ACTIONS(451), + [anon_sym___cdecl] = ACTIONS(454), + [anon_sym___clrcall] = ACTIONS(454), + [anon_sym___stdcall] = ACTIONS(454), + [anon_sym___fastcall] = ACTIONS(454), + [anon_sym___thiscall] = ACTIONS(454), + [anon_sym___vectorcall] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(852), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_signed] = ACTIONS(460), + [anon_sym_unsigned] = ACTIONS(460), + [anon_sym_long] = ACTIONS(460), + [anon_sym_short] = ACTIONS(460), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_static] = ACTIONS(466), + [anon_sym_register] = ACTIONS(466), + [anon_sym_inline] = ACTIONS(857), + [anon_sym___inline] = ACTIONS(466), + [anon_sym___inline__] = ACTIONS(466), + [anon_sym___forceinline] = ACTIONS(466), + [anon_sym_thread_local] = ACTIONS(466), + [anon_sym___thread] = ACTIONS(466), + [anon_sym_const] = ACTIONS(472), + [anon_sym_constexpr] = ACTIONS(472), + [anon_sym_volatile] = ACTIONS(472), + [anon_sym_restrict] = ACTIONS(472), + [anon_sym___restrict__] = ACTIONS(472), + [anon_sym__Atomic] = ACTIONS(472), + [anon_sym__Noreturn] = ACTIONS(472), + [anon_sym_noreturn] = ACTIONS(472), + [anon_sym__Nonnull] = ACTIONS(472), + [anon_sym_mutable] = ACTIONS(472), + [anon_sym_constinit] = ACTIONS(472), + [anon_sym_consteval] = ACTIONS(472), + [anon_sym_alignas] = ACTIONS(475), + [anon_sym__Alignas] = ACTIONS(475), + [sym_primitive_type] = ACTIONS(478), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_class] = ACTIONS(484), + [anon_sym_struct] = ACTIONS(487), + [anon_sym_union] = ACTIONS(490), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(863), + [anon_sym_case] = ACTIONS(866), + [anon_sym_default] = ACTIONS(869), + [anon_sym_while] = ACTIONS(872), + [anon_sym_do] = ACTIONS(875), + [anon_sym_for] = ACTIONS(878), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(884), + [anon_sym_continue] = ACTIONS(887), + [anon_sym_goto] = ACTIONS(890), + [anon_sym___try] = ACTIONS(893), + [anon_sym___leave] = ACTIONS(896), + [anon_sym_not] = ACTIONS(412), + [anon_sym_compl] = ACTIONS(412), + [anon_sym_DASH_DASH] = ACTIONS(532), + [anon_sym_PLUS_PLUS] = ACTIONS(532), + [anon_sym_sizeof] = ACTIONS(535), + [anon_sym___alignof__] = ACTIONS(538), + [anon_sym___alignof] = ACTIONS(538), + [anon_sym__alignof] = ACTIONS(538), + [anon_sym_alignof] = ACTIONS(538), + [anon_sym__Alignof] = ACTIONS(538), + [anon_sym_offsetof] = ACTIONS(541), + [anon_sym__Generic] = ACTIONS(544), + [anon_sym_asm] = ACTIONS(547), + [anon_sym___asm__] = ACTIONS(547), + [anon_sym___asm] = ACTIONS(547), + [sym_number_literal] = ACTIONS(550), + [anon_sym_L_SQUOTE] = ACTIONS(553), + [anon_sym_u_SQUOTE] = ACTIONS(553), + [anon_sym_U_SQUOTE] = ACTIONS(553), + [anon_sym_u8_SQUOTE] = ACTIONS(553), + [anon_sym_SQUOTE] = ACTIONS(553), + [anon_sym_L_DQUOTE] = ACTIONS(556), + [anon_sym_u_DQUOTE] = ACTIONS(556), + [anon_sym_U_DQUOTE] = ACTIONS(556), + [anon_sym_u8_DQUOTE] = ACTIONS(556), + [anon_sym_DQUOTE] = ACTIONS(556), + [sym_true] = ACTIONS(559), + [sym_false] = ACTIONS(559), + [anon_sym_NULL] = ACTIONS(562), + [anon_sym_nullptr] = ACTIONS(562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(565), + [anon_sym_decltype] = ACTIONS(568), + [anon_sym_explicit] = ACTIONS(571), + [anon_sym_typename] = ACTIONS(574), + [anon_sym_template] = ACTIONS(899), + [anon_sym_operator] = ACTIONS(580), + [anon_sym_try] = ACTIONS(902), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_throw] = ACTIONS(905), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_using] = ACTIONS(911), + [anon_sym_static_assert] = ACTIONS(914), + [anon_sym_concept] = ACTIONS(917), + [anon_sym_co_return] = ACTIONS(920), + [anon_sym_co_yield] = ACTIONS(923), + [anon_sym_R_DQUOTE] = ACTIONS(610), + [anon_sym_LR_DQUOTE] = ACTIONS(610), + [anon_sym_uR_DQUOTE] = ACTIONS(610), + [anon_sym_UR_DQUOTE] = ACTIONS(610), + [anon_sym_u8R_DQUOTE] = ACTIONS(610), + [anon_sym_co_await] = ACTIONS(613), + [anon_sym_new] = ACTIONS(616), + [anon_sym_requires] = ACTIONS(619), + [sym_this] = ACTIONS(559), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(622), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_FORWARD] = ACTIONS(622), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(622), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(622), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(622), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(622), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_PS_GET] = ACTIONS(622), + [anon_sym_PS_GET_AND_SET] = ACTIONS(622), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(622), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(622), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(622), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(625), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(625), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(625), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(625), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(625), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(625), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(625), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(625), + [anon_sym_MOZ_COLD] = ACTIONS(625), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(625), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(625), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(625), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(625), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(625), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(625), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(625), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(625), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(625), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(625), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(625), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(625), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(625), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(625), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(625), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(625), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(625), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(625), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(625), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(625), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(625), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(625), + [anon_sym_MOZ_MUST_USE] = ACTIONS(625), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(625), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(625), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(625), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(625), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(625), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(625), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(625), + [anon_sym_MOZ_NONNULL] = ACTIONS(625), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(625), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(625), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(625), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(625), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(625), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(625), + [anon_sym_MOZ_NORETURN] = ACTIONS(625), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(625), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(625), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(625), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(625), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(625), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(625), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(625), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(625), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(625), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(625), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(625), + [anon_sym_MOZ_RAII] = ACTIONS(625), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(625), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(625), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(625), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(625), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(625), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(625), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(625), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(625), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(625), + [anon_sym_JS_PUBLIC_API] = ACTIONS(625), + }, + [STATE(46)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -43999,300 +57901,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(810), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(681), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [47] = { - [sym_preproc_include] = STATE(59), - [sym_preproc_def] = STATE(59), - [sym_preproc_function_def] = STATE(59), - [sym_preproc_call] = STATE(59), - [sym_preproc_if] = STATE(59), - [sym_preproc_ifdef] = STATE(59), - [sym_function_definition] = STATE(59), - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3058), - [sym_linkage_specification] = STATE(59), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1169), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3685), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1374), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_case_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(59), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(843), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(59), - [sym_template_instantiation] = STATE(59), - [sym_operator_cast] = STATE(4067), - [sym__constructor_specifiers] = STATE(843), - [sym_operator_cast_definition] = STATE(59), - [sym_operator_cast_declaration] = STATE(59), - [sym_constructor_or_destructor_definition] = STATE(59), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(59), - [sym_using_declaration] = STATE(59), - [sym_alias_declaration] = STATE(59), - [sym_static_assert_declaration] = STATE(59), - [sym_for_range_loop] = STATE(59), - [sym_co_return_statement] = STATE(59), - [sym_co_yield_statement] = STATE(59), - [sym_throw_statement] = STATE(59), - [sym_try_statement] = STATE(59), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4067), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(59), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(59), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(812), - [aux_sym_preproc_include_token1] = ACTIONS(814), - [aux_sym_preproc_def_token1] = ACTIONS(816), - [aux_sym_preproc_if_token1] = ACTIONS(818), - [aux_sym_preproc_if_token2] = ACTIONS(820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(822), - [sym_preproc_directive] = ACTIONS(824), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(926), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(47)] = { + [sym__block_item] = STATE(48), + [sym_preproc_include] = STATE(48), + [sym_preproc_def] = STATE(48), + [sym_preproc_function_def] = STATE(48), + [sym_preproc_call] = STATE(48), + [sym_preproc_if] = STATE(48), + [sym_preproc_ifdef] = STATE(48), + [sym_function_definition] = STATE(48), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(48), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(48), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(48), + [sym_template_instantiation] = STATE(48), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(48), + [sym_operator_cast_declaration] = STATE(48), + [sym_constructor_or_destructor_definition] = STATE(48), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -44301,298 +58252,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_typedef] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(830), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(856), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_namespace] = ACTIONS(860), - [anon_sym_using] = ACTIONS(862), - [anon_sym_static_assert] = ACTIONS(864), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(872), - [aux_sym_alone_macro_call_token1] = ACTIONS(874), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [48] = { - [sym_preproc_include] = STATE(65), - [sym_preproc_def] = STATE(65), - [sym_preproc_function_def] = STATE(65), - [sym_preproc_call] = STATE(65), - [sym_preproc_if] = STATE(65), - [sym_preproc_ifdef] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(65), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(65), - [sym_labeled_statement] = STATE(65), - [sym_expression_statement] = STATE(65), - [sym_if_statement] = STATE(65), - [sym_switch_statement] = STATE(65), - [sym_case_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_do_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_return_statement] = STATE(65), - [sym_break_statement] = STATE(65), - [sym_continue_statement] = STATE(65), - [sym_goto_statement] = STATE(65), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(65), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(65), - [sym_template_instantiation] = STATE(65), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(65), - [sym_operator_cast_declaration] = STATE(65), - [sym_constructor_or_destructor_definition] = STATE(65), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(65), - [sym_using_declaration] = STATE(65), - [sym_alias_declaration] = STATE(65), - [sym_static_assert_declaration] = STATE(65), - [sym_for_range_loop] = STATE(65), - [sym_co_return_statement] = STATE(65), - [sym_co_yield_statement] = STATE(65), - [sym_throw_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(65), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(65), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(928), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(48)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -44601,600 +58603,1051 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(243), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [49] = { - [sym_preproc_include] = STATE(49), - [sym_preproc_def] = STATE(49), - [sym_preproc_function_def] = STATE(49), - [sym_preproc_call] = STATE(49), - [sym_preproc_if] = STATE(49), - [sym_preproc_ifdef] = STATE(49), - [sym_function_definition] = STATE(49), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3013), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1170), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3721), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1371), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_case_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(49), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(839), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(49), - [sym_template_instantiation] = STATE(49), - [sym_operator_cast] = STATE(4028), - [sym__constructor_specifiers] = STATE(839), - [sym_operator_cast_definition] = STATE(49), - [sym_operator_cast_declaration] = STATE(49), - [sym_constructor_or_destructor_definition] = STATE(49), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(49), - [sym_using_declaration] = STATE(49), - [sym_alias_declaration] = STATE(49), - [sym_static_assert_declaration] = STATE(49), - [sym_for_range_loop] = STATE(49), - [sym_co_return_statement] = STATE(49), - [sym_co_yield_statement] = STATE(49), - [sym_throw_statement] = STATE(49), - [sym_try_statement] = STATE(49), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4028), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(49), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(839), - [ts_builtin_sym_end] = ACTIONS(610), - [sym_identifier] = ACTIONS(878), - [aux_sym_preproc_include_token1] = ACTIONS(881), - [aux_sym_preproc_def_token1] = ACTIONS(884), - [aux_sym_preproc_if_token1] = ACTIONS(887), - [aux_sym_preproc_ifdef_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(890), - [sym_preproc_directive] = ACTIONS(893), - [anon_sym_LPAREN2] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(388), - [anon_sym_TILDE] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_typedef] = ACTIONS(899), - [anon_sym_extern] = ACTIONS(902), - [anon_sym___attribute__] = ACTIONS(415), - [anon_sym_COLON_COLON] = ACTIONS(418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(421), - [anon_sym___declspec] = ACTIONS(424), - [anon_sym___based] = ACTIONS(427), - [anon_sym___cdecl] = ACTIONS(430), - [anon_sym___clrcall] = ACTIONS(430), - [anon_sym___stdcall] = ACTIONS(430), - [anon_sym___fastcall] = ACTIONS(430), - [anon_sym___thiscall] = ACTIONS(430), - [anon_sym___vectorcall] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_static] = ACTIONS(439), - [anon_sym_register] = ACTIONS(439), - [anon_sym_inline] = ACTIONS(439), - [anon_sym_thread_local] = ACTIONS(439), - [anon_sym_const] = ACTIONS(442), - [anon_sym_volatile] = ACTIONS(442), - [anon_sym_restrict] = ACTIONS(442), - [anon_sym__Atomic] = ACTIONS(442), - [anon_sym_mutable] = ACTIONS(442), - [anon_sym_constexpr] = ACTIONS(442), - [anon_sym_signed] = ACTIONS(445), - [anon_sym_unsigned] = ACTIONS(445), - [anon_sym_long] = ACTIONS(445), - [anon_sym_short] = ACTIONS(445), - [sym_primitive_type] = ACTIONS(448), - [anon_sym_enum] = ACTIONS(451), - [anon_sym_class] = ACTIONS(454), - [anon_sym_struct] = ACTIONS(457), - [anon_sym_union] = ACTIONS(460), - [anon_sym_if] = ACTIONS(908), - [anon_sym_switch] = ACTIONS(911), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(917), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(923), - [anon_sym_for] = ACTIONS(926), - [anon_sym_return] = ACTIONS(929), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(935), - [anon_sym_goto] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(496), - [anon_sym_sizeof] = ACTIONS(499), - [sym_number_literal] = ACTIONS(502), - [anon_sym_L_SQUOTE] = ACTIONS(505), - [anon_sym_u_SQUOTE] = ACTIONS(505), - [anon_sym_U_SQUOTE] = ACTIONS(505), - [anon_sym_u8_SQUOTE] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(505), - [anon_sym_L_DQUOTE] = ACTIONS(508), - [anon_sym_u_DQUOTE] = ACTIONS(508), - [anon_sym_U_DQUOTE] = ACTIONS(508), - [anon_sym_u8_DQUOTE] = ACTIONS(508), - [anon_sym_DQUOTE] = ACTIONS(508), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(514), - [anon_sym_virtual] = ACTIONS(517), - [anon_sym_explicit] = ACTIONS(520), - [sym_auto] = ACTIONS(523), - [anon_sym_typename] = ACTIONS(526), - [anon_sym_template] = ACTIONS(941), - [anon_sym_operator] = ACTIONS(532), - [anon_sym_delete] = ACTIONS(535), - [anon_sym_throw] = ACTIONS(944), - [anon_sym_namespace] = ACTIONS(947), - [anon_sym_using] = ACTIONS(950), - [anon_sym_static_assert] = ACTIONS(953), - [anon_sym_co_return] = ACTIONS(956), - [anon_sym_co_yield] = ACTIONS(959), - [anon_sym_try] = ACTIONS(962), - [anon_sym_co_await] = ACTIONS(559), - [anon_sym_new] = ACTIONS(562), - [sym_this] = ACTIONS(511), - [sym_nullptr] = ACTIONS(511), - [sym_alone_macro] = ACTIONS(965), - [aux_sym_alone_macro_call_token1] = ACTIONS(968), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(571), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_FORWARD] = ACTIONS(571), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(571), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(571), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(571), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(571), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_PS_GET] = ACTIONS(571), - [anon_sym_PS_GET_AND_SET] = ACTIONS(571), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(571), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(571), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(571), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(574), - [anon_sym_MOZ_COLD] = ACTIONS(574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(574), - [anon_sym_MOZ_NONNULL] = ACTIONS(574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(574), - [anon_sym_MOZ_NORETURN] = ACTIONS(574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(574), - [anon_sym_MOZ_RAII] = ACTIONS(574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(574), - [sym_raw_string_literal] = ACTIONS(577), - }, - [50] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(29), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(29), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(930), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(49)] = { + [sym__block_item] = STATE(50), + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(50), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(932), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(50)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(934), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(51)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -45203,181 +59656,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(681), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [51] = { + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(936), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(52)] = { + [sym__block_item] = STATE(53), [sym_preproc_include] = STATE(53), [sym_preproc_def] = STATE(53), [sym_preproc_function_def] = STATE(53), @@ -45387,115 +59873,132 @@ 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(1285), - [sym__declaration_specifiers] = STATE(3003), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(53), - [sym_labeled_statement] = STATE(53), - [sym_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_case_statement] = STATE(53), - [sym_while_statement] = STATE(53), - [sym_do_statement] = STATE(53), - [sym_for_statement] = STATE(53), - [sym_return_statement] = STATE(53), - [sym_break_statement] = STATE(53), - [sym_continue_statement] = STATE(53), - [sym_goto_statement] = STATE(53), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), [sym__empty_declaration] = STATE(53), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), [sym_template_declaration] = STATE(53), [sym_template_instantiation] = STATE(53), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), [sym_operator_cast_definition] = STATE(53), [sym_operator_cast_declaration] = STATE(53), [sym_constructor_or_destructor_definition] = STATE(53), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), [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_for_range_loop] = STATE(53), - [sym_co_return_statement] = STATE(53), - [sym_co_yield_statement] = STATE(53), - [sym_throw_statement] = STATE(53), - [sym_try_statement] = STATE(53), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(53), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -45504,299 +60007,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(975), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [52] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(31), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(31), - [sym_template_instantiation] = STATE(31), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(31), - [sym_operator_cast_declaration] = STATE(31), - [sym_constructor_or_destructor_definition] = STATE(31), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(31), - [sym_using_declaration] = STATE(31), - [sym_alias_declaration] = STATE(31), - [sym_static_assert_declaration] = STATE(31), - [sym_for_range_loop] = STATE(31), - [sym_co_return_statement] = STATE(31), - [sym_co_yield_statement] = STATE(31), - [sym_throw_statement] = STATE(31), - [sym_try_statement] = STATE(31), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(31), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(938), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(53)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -45805,299 +60358,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(979), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [53] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(29), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(29), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(940), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(54)] = { + [sym__block_item] = STATE(55), + [sym_preproc_include] = STATE(55), + [sym_preproc_def] = STATE(55), + [sym_preproc_function_def] = STATE(55), + [sym_preproc_call] = STATE(55), + [sym_preproc_if] = STATE(55), + [sym_preproc_ifdef] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(55), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(55), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(55), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(55), + [sym_template_instantiation] = STATE(55), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(55), + [sym_operator_cast_declaration] = STATE(55), + [sym_constructor_or_destructor_definition] = STATE(55), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(55), + [sym_namespace_alias_definition] = STATE(55), + [sym_using_declaration] = STATE(55), + [sym_alias_declaration] = STATE(55), + [sym_static_assert_declaration] = STATE(55), + [sym_concept_definition] = STATE(55), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(55), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -46106,299 +60709,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(681), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [54] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(29), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(29), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(942), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(55)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -46407,299 +61060,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(681), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [55] = { - [sym_preproc_include] = STATE(54), - [sym_preproc_def] = STATE(54), - [sym_preproc_function_def] = STATE(54), - [sym_preproc_call] = STATE(54), - [sym_preproc_if] = STATE(54), - [sym_preproc_ifdef] = STATE(54), - [sym_function_definition] = STATE(54), - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(54), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(54), - [sym_labeled_statement] = STATE(54), - [sym_expression_statement] = STATE(54), - [sym_if_statement] = STATE(54), - [sym_switch_statement] = STATE(54), - [sym_case_statement] = STATE(54), - [sym_while_statement] = STATE(54), - [sym_do_statement] = STATE(54), - [sym_for_statement] = STATE(54), - [sym_return_statement] = STATE(54), - [sym_break_statement] = STATE(54), - [sym_continue_statement] = STATE(54), - [sym_goto_statement] = STATE(54), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(54), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(54), - [sym_template_instantiation] = STATE(54), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(54), - [sym_operator_cast_declaration] = STATE(54), - [sym_constructor_or_destructor_definition] = STATE(54), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(54), - [sym_using_declaration] = STATE(54), - [sym_alias_declaration] = STATE(54), - [sym_static_assert_declaration] = STATE(54), - [sym_for_range_loop] = STATE(54), - [sym_co_return_statement] = STATE(54), - [sym_co_yield_statement] = STATE(54), - [sym_throw_statement] = STATE(54), - [sym_try_statement] = STATE(54), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(54), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(54), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(944), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(56)] = { + [sym__block_item] = STATE(57), + [sym_preproc_include] = STATE(57), + [sym_preproc_def] = STATE(57), + [sym_preproc_function_def] = STATE(57), + [sym_preproc_call] = STATE(57), + [sym_preproc_if] = STATE(57), + [sym_preproc_ifdef] = STATE(57), + [sym_function_definition] = STATE(57), + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(57), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(57), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(57), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(57), + [sym_template_instantiation] = STATE(57), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(57), + [sym_operator_cast_declaration] = STATE(57), + [sym_constructor_or_destructor_definition] = STATE(57), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(57), + [sym_namespace_alias_definition] = STATE(57), + [sym_using_declaration] = STATE(57), + [sym_alias_declaration] = STATE(57), + [sym_static_assert_declaration] = STATE(57), + [sym_concept_definition] = STATE(57), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(57), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -46708,299 +61411,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(987), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [56] = { - [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(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(58), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [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__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(58), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(58), - [sym_template_instantiation] = STATE(58), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(58), - [sym_operator_cast_declaration] = STATE(58), - [sym_constructor_or_destructor_definition] = STATE(58), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(58), - [sym_using_declaration] = STATE(58), - [sym_alias_declaration] = STATE(58), - [sym_static_assert_declaration] = 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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(58), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(58), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(946), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(57)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -47009,299 +61762,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(989), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(991), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [57] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(29), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(29), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(948), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(58)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -47310,299 +62113,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(681), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [58] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(29), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(29), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(950), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(59)] = { + [sym__block_item] = STATE(60), + [sym_preproc_include] = STATE(60), + [sym_preproc_def] = STATE(60), + [sym_preproc_function_def] = STATE(60), + [sym_preproc_call] = STATE(60), + [sym_preproc_if] = STATE(60), + [sym_preproc_ifdef] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(60), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(60), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(60), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(60), + [sym_template_instantiation] = STATE(60), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(60), + [sym_operator_cast_declaration] = STATE(60), + [sym_constructor_or_destructor_definition] = STATE(60), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(60), + [sym_namespace_alias_definition] = STATE(60), + [sym_using_declaration] = STATE(60), + [sym_alias_declaration] = STATE(60), + [sym_static_assert_declaration] = STATE(60), + [sym_concept_definition] = STATE(60), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(60), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -47611,300 +62464,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(681), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [59] = { - [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_function_definition] = STATE(44), - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3058), - [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1169), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3685), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1374), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [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__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(44), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(843), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(44), - [sym_template_instantiation] = STATE(44), - [sym_operator_cast] = STATE(4067), - [sym__constructor_specifiers] = STATE(843), - [sym_operator_cast_definition] = STATE(44), - [sym_operator_cast_declaration] = STATE(44), - [sym_constructor_or_destructor_definition] = STATE(44), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(44), - [sym_using_declaration] = STATE(44), - [sym_alias_declaration] = STATE(44), - [sym_static_assert_declaration] = 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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4067), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(44), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(812), - [aux_sym_preproc_include_token1] = ACTIONS(814), - [aux_sym_preproc_def_token1] = ACTIONS(816), - [aux_sym_preproc_if_token1] = ACTIONS(818), - [aux_sym_preproc_if_token2] = ACTIONS(997), - [aux_sym_preproc_ifdef_token1] = ACTIONS(822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(822), - [sym_preproc_directive] = ACTIONS(824), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(952), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(60)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -47913,298 +62815,350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_typedef] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(830), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(856), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_namespace] = ACTIONS(860), - [anon_sym_using] = ACTIONS(862), - [anon_sym_static_assert] = ACTIONS(864), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(999), - [aux_sym_alone_macro_call_token1] = ACTIONS(874), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [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(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(62), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(62), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_case_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(62), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(62), - [sym_template_instantiation] = STATE(62), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(62), - [sym_operator_cast_declaration] = STATE(62), - [sym_constructor_or_destructor_definition] = STATE(62), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(62), - [sym_using_declaration] = STATE(62), - [sym_alias_declaration] = STATE(62), - [sym_static_assert_declaration] = STATE(62), - [sym_for_range_loop] = STATE(62), - [sym_co_return_statement] = STATE(62), - [sym_co_yield_statement] = STATE(62), - [sym_throw_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(62), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(62), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(954), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(61)] = { + [sym__block_item] = STATE(36), + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5019), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1110), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6630), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(383), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1468), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(575), + [sym_statement] = STATE(36), + [sym_labeled_statement] = STATE(383), + [sym_expression_statement] = STATE(383), + [sym_if_statement] = STATE(383), + [sym_switch_statement] = STATE(383), + [sym_case_statement] = STATE(383), + [sym_while_statement] = STATE(383), + [sym_do_statement] = STATE(383), + [sym_for_statement] = STATE(383), + [sym_return_statement] = STATE(383), + [sym_break_statement] = STATE(383), + [sym_continue_statement] = STATE(383), + [sym_goto_statement] = STATE(383), + [sym_seh_try_statement] = STATE(383), + [sym_seh_leave_statement] = STATE(383), + [sym_expression] = STATE(4855), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8847), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(36), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1067), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(36), + [sym_template_instantiation] = STATE(36), + [sym_operator_cast] = STATE(7114), + [sym__constructor_specifiers] = STATE(1067), + [sym_operator_cast_definition] = STATE(36), + [sym_operator_cast_declaration] = STATE(36), + [sym_constructor_or_destructor_definition] = STATE(36), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(383), + [sym_co_return_statement] = STATE(383), + [sym_co_yield_statement] = STATE(383), + [sym_throw_statement] = STATE(383), + [sym_try_statement] = STATE(383), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7114), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(845), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1067), + [sym_identifier] = ACTIONS(628), + [aux_sym_preproc_include_token1] = ACTIONS(630), + [aux_sym_preproc_def_token1] = ACTIONS(632), + [aux_sym_preproc_if_token1] = ACTIONS(634), + [aux_sym_preproc_if_token2] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(638), + [aux_sym_preproc_ifdef_token2] = ACTIONS(638), + [sym_preproc_directive] = ACTIONS(640), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -48213,299 +63167,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(215), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [61] = { - [sym_preproc_include] = STATE(64), - [sym_preproc_def] = STATE(64), - [sym_preproc_function_def] = STATE(64), - [sym_preproc_call] = STATE(64), - [sym_preproc_if] = STATE(64), - [sym_preproc_ifdef] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(64), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(64), - [sym_labeled_statement] = STATE(64), - [sym_expression_statement] = STATE(64), - [sym_if_statement] = STATE(64), - [sym_switch_statement] = STATE(64), - [sym_case_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_do_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_return_statement] = STATE(64), - [sym_break_statement] = STATE(64), - [sym_continue_statement] = STATE(64), - [sym_goto_statement] = STATE(64), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(64), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(64), - [sym_template_instantiation] = STATE(64), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(64), - [sym_operator_cast_declaration] = STATE(64), - [sym_constructor_or_destructor_definition] = STATE(64), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(64), - [sym_using_declaration] = STATE(64), - [sym_alias_declaration] = STATE(64), - [sym_static_assert_declaration] = STATE(64), - [sym_for_range_loop] = STATE(64), - [sym_co_return_statement] = STATE(64), - [sym_co_yield_statement] = STATE(64), - [sym_throw_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(64), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(64), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym___extension__] = ACTIONS(644), + [anon_sym_typedef] = ACTIONS(646), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(648), + [anon_sym___attribute__] = ACTIONS(43), + [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(650), + [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(652), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), + [anon_sym___try] = ACTIONS(676), + [anon_sym___leave] = ACTIONS(678), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(680), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(682), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(684), + [anon_sym_namespace] = ACTIONS(686), + [anon_sym_using] = ACTIONS(688), + [anon_sym_static_assert] = ACTIONS(690), + [anon_sym_concept] = ACTIONS(692), + [anon_sym_co_return] = ACTIONS(694), + [anon_sym_co_yield] = ACTIONS(696), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(62)] = { + [sym__block_item] = STATE(63), + [sym_preproc_include] = STATE(63), + [sym_preproc_def] = STATE(63), + [sym_preproc_function_def] = STATE(63), + [sym_preproc_call] = STATE(63), + [sym_preproc_if] = STATE(63), + [sym_preproc_ifdef] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(63), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(63), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(63), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(63), + [sym_template_instantiation] = STATE(63), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(63), + [sym_operator_cast_declaration] = STATE(63), + [sym_constructor_or_destructor_definition] = STATE(63), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(63), + [sym_namespace_alias_definition] = STATE(63), + [sym_using_declaration] = STATE(63), + [sym_alias_declaration] = STATE(63), + [sym_static_assert_declaration] = STATE(63), + [sym_concept_definition] = STATE(63), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(63), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -48514,299 +63517,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(1005), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [62] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(29), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(29), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(958), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(63)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -48815,299 +63868,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(681), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [63] = { - [sym_preproc_include] = STATE(57), - [sym_preproc_def] = STATE(57), - [sym_preproc_function_def] = STATE(57), - [sym_preproc_call] = STATE(57), - [sym_preproc_if] = STATE(57), - [sym_preproc_ifdef] = STATE(57), - [sym_function_definition] = STATE(57), - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(57), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(57), - [sym_labeled_statement] = STATE(57), - [sym_expression_statement] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_switch_statement] = STATE(57), - [sym_case_statement] = STATE(57), - [sym_while_statement] = STATE(57), - [sym_do_statement] = STATE(57), - [sym_for_statement] = STATE(57), - [sym_return_statement] = STATE(57), - [sym_break_statement] = STATE(57), - [sym_continue_statement] = STATE(57), - [sym_goto_statement] = STATE(57), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(57), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(57), - [sym_template_instantiation] = STATE(57), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(57), - [sym_operator_cast_declaration] = STATE(57), - [sym_constructor_or_destructor_definition] = STATE(57), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(57), - [sym_using_declaration] = STATE(57), - [sym_alias_declaration] = STATE(57), - [sym_static_assert_declaration] = STATE(57), - [sym_for_range_loop] = STATE(57), - [sym_co_return_statement] = STATE(57), - [sym_co_yield_statement] = STATE(57), - [sym_throw_statement] = STATE(57), - [sym_try_statement] = STATE(57), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(57), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(57), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(960), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(64)] = { + [sym__block_item] = STATE(65), + [sym_preproc_include] = STATE(65), + [sym_preproc_def] = STATE(65), + [sym_preproc_function_def] = STATE(65), + [sym_preproc_call] = STATE(65), + [sym_preproc_if] = STATE(65), + [sym_preproc_ifdef] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(65), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(65), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(65), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(65), + [sym_template_instantiation] = STATE(65), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(65), + [sym_operator_cast_declaration] = STATE(65), + [sym_constructor_or_destructor_definition] = STATE(65), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(65), + [sym_namespace_alias_definition] = STATE(65), + [sym_using_declaration] = STATE(65), + [sym_alias_declaration] = STATE(65), + [sym_static_assert_declaration] = STATE(65), + [sym_concept_definition] = STATE(65), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(65), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -49116,299 +64219,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(1011), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [64] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(29), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(29), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(962), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(65)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -49417,299 +64570,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(681), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [65] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(29), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(29), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(964), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(66)] = { + [sym__block_item] = STATE(67), + [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(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(67), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -49718,299 +64921,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(681), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [66] = { - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_function_definition] = STATE(32), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(685), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3706), - [sym_array_declarator] = STATE(3720), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_case_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_goto_statement] = STATE(32), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__empty_declaration] = STATE(32), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(845), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(32), - [sym_template_instantiation] = STATE(32), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(845), - [sym_operator_cast_definition] = STATE(32), - [sym_operator_cast_declaration] = STATE(32), - [sym_constructor_or_destructor_definition] = STATE(32), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2703), - [sym_namespace_definition] = STATE(32), - [sym_using_declaration] = STATE(32), - [sym_alias_declaration] = STATE(32), - [sym_static_assert_declaration] = STATE(32), - [sym_for_range_loop] = STATE(32), - [sym_co_return_statement] = STATE(32), - [sym_co_yield_statement] = STATE(32), - [sym_throw_statement] = STATE(32), - [sym_try_statement] = STATE(32), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3456), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(1477), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym_alone_macro_call] = STATE(32), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym_translation_unit_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(149), - [aux_sym_preproc_include_token1] = ACTIONS(151), - [aux_sym_preproc_def_token1] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(159), - [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(966), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(67)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -50019,2326 +65272,5455 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), - [anon_sym_using] = ACTIONS(205), - [anon_sym_static_assert] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(221), - [aux_sym_alone_macro_call_token1] = ACTIONS(217), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [67] = { - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3095), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [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_while_statement] = STATE(68), - [sym_do_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_return_statement] = STATE(68), - [sym_break_statement] = STATE(68), - [sym_continue_statement] = STATE(68), - [sym_goto_statement] = STATE(68), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(68), - [sym_co_return_statement] = STATE(68), - [sym_co_yield_statement] = STATE(68), - [sym_throw_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(1019), - [aux_sym_preproc_include_token1] = ACTIONS(1021), - [aux_sym_preproc_def_token1] = ACTIONS(1021), - [aux_sym_preproc_if_token1] = ACTIONS(1021), - [aux_sym_preproc_if_token2] = ACTIONS(1021), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1021), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1021), - [aux_sym_preproc_else_token1] = ACTIONS(1021), - [aux_sym_preproc_elif_token1] = ACTIONS(1021), - [sym_preproc_directive] = ACTIONS(1021), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(968), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(68)] = { + [sym__block_item] = STATE(69), + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1021), - [anon_sym___cdecl] = ACTIONS(1021), - [anon_sym___clrcall] = ACTIONS(1021), - [anon_sym___stdcall] = ACTIONS(1021), - [anon_sym___fastcall] = ACTIONS(1021), - [anon_sym___thiscall] = ACTIONS(1021), - [anon_sym___vectorcall] = ACTIONS(1021), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(1021), - [anon_sym_default] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(1021), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(1021), - [anon_sym_using] = ACTIONS(1021), - [anon_sym_static_assert] = ACTIONS(1021), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(1027), - [aux_sym_alone_macro_call_token1] = ACTIONS(1021), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [68] = { - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3095), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [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_while_statement] = STATE(68), - [sym_do_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_return_statement] = STATE(68), - [sym_break_statement] = STATE(68), - [sym_continue_statement] = STATE(68), - [sym_goto_statement] = STATE(68), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(68), - [sym_co_return_statement] = STATE(68), - [sym_co_yield_statement] = STATE(68), - [sym_throw_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(1037), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token2] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [aux_sym_preproc_else_token1] = ACTIONS(1040), - [aux_sym_preproc_elif_token1] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_AMP_AMP] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1056), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_typedef] = ACTIONS(1062), - [anon_sym_extern] = ACTIONS(1065), - [anon_sym___attribute__] = ACTIONS(1068), - [anon_sym_COLON_COLON] = ACTIONS(1071), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), - [anon_sym___declspec] = ACTIONS(1077), - [anon_sym___based] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1065), - [anon_sym_register] = ACTIONS(1065), - [anon_sym_inline] = ACTIONS(1065), - [anon_sym_thread_local] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_volatile] = ACTIONS(1086), - [anon_sym_restrict] = ACTIONS(1086), - [anon_sym__Atomic] = ACTIONS(1086), - [anon_sym_mutable] = ACTIONS(1086), - [anon_sym_constexpr] = ACTIONS(1086), - [anon_sym_signed] = ACTIONS(1089), - [anon_sym_unsigned] = ACTIONS(1089), - [anon_sym_long] = ACTIONS(1089), - [anon_sym_short] = ACTIONS(1089), - [sym_primitive_type] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1095), - [anon_sym_class] = ACTIONS(1098), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_union] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1110), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1119), - [anon_sym_return] = ACTIONS(1122), - [anon_sym_break] = ACTIONS(1125), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_goto] = ACTIONS(1131), - [anon_sym_DASH_DASH] = ACTIONS(1134), - [anon_sym_PLUS_PLUS] = ACTIONS(1134), - [anon_sym_sizeof] = ACTIONS(1137), - [sym_number_literal] = ACTIONS(1140), - [anon_sym_L_SQUOTE] = ACTIONS(1143), - [anon_sym_u_SQUOTE] = ACTIONS(1143), - [anon_sym_U_SQUOTE] = ACTIONS(1143), - [anon_sym_u8_SQUOTE] = ACTIONS(1143), - [anon_sym_SQUOTE] = ACTIONS(1143), - [anon_sym_L_DQUOTE] = ACTIONS(1146), - [anon_sym_u_DQUOTE] = ACTIONS(1146), - [anon_sym_U_DQUOTE] = ACTIONS(1146), - [anon_sym_u8_DQUOTE] = ACTIONS(1146), - [anon_sym_DQUOTE] = ACTIONS(1146), - [sym_true] = ACTIONS(1149), - [sym_false] = ACTIONS(1149), - [sym_null] = ACTIONS(1149), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1152), - [anon_sym_virtual] = ACTIONS(1155), - [anon_sym_explicit] = ACTIONS(1040), - [sym_auto] = ACTIONS(1158), - [anon_sym_typename] = ACTIONS(1161), - [anon_sym_template] = ACTIONS(1164), - [anon_sym_operator] = ACTIONS(1040), - [anon_sym_delete] = ACTIONS(1167), - [anon_sym_throw] = ACTIONS(1170), - [anon_sym_namespace] = ACTIONS(1040), - [anon_sym_using] = ACTIONS(1040), - [anon_sym_static_assert] = ACTIONS(1040), - [anon_sym_co_return] = ACTIONS(1173), - [anon_sym_co_yield] = ACTIONS(1176), - [anon_sym_try] = ACTIONS(1179), - [anon_sym_co_await] = ACTIONS(1182), - [anon_sym_new] = ACTIONS(1185), - [sym_this] = ACTIONS(1149), - [sym_nullptr] = ACTIONS(1149), - [sym_alone_macro] = ACTIONS(1054), - [aux_sym_alone_macro_call_token1] = ACTIONS(1040), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_FORWARD] = ACTIONS(1188), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1188), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_PS_GET] = ACTIONS(1188), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1188), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1188), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1191), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1191), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1191), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1191), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1191), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1191), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1191), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1191), - [anon_sym_MOZ_COLD] = ACTIONS(1191), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1191), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1191), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1191), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1191), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1191), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1191), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1191), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1191), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1191), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1191), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1191), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1191), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1191), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1191), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1191), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1191), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1191), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1191), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1191), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1191), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_NONNULL] = ACTIONS(1191), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1191), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1191), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1191), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1191), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1191), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_NORETURN] = ACTIONS(1191), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1191), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1191), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1191), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1191), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1191), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1191), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1191), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1191), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1191), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1191), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1191), - [anon_sym_MOZ_RAII] = ACTIONS(1191), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1191), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1191), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1191), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1191), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1191), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1191), - [sym_raw_string_literal] = ACTIONS(1194), - }, - [69] = { - [sym_declaration] = STATE(71), - [sym_type_definition] = STATE(71), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3095), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(71), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [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_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_return_statement] = STATE(71), - [sym_break_statement] = STATE(71), - [sym_continue_statement] = STATE(71), - [sym_goto_statement] = STATE(71), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(71), - [sym_co_return_statement] = STATE(71), - [sym_co_yield_statement] = STATE(71), - [sym_throw_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(71), - [sym_identifier] = ACTIONS(1019), - [aux_sym_preproc_include_token1] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token2] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [aux_sym_preproc_else_token1] = ACTIONS(1197), - [aux_sym_preproc_elif_token1] = ACTIONS(1197), - [sym_preproc_directive] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(970), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(69)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(1197), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_using] = ACTIONS(1197), - [anon_sym_static_assert] = ACTIONS(1197), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(1199), - [aux_sym_alone_macro_call_token1] = ACTIONS(1197), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [70] = { - [sym_declaration] = STATE(67), - [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3095), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [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_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__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(67), - [sym_identifier] = ACTIONS(1019), - [aux_sym_preproc_include_token1] = ACTIONS(1201), - [aux_sym_preproc_def_token1] = ACTIONS(1201), - [aux_sym_preproc_if_token1] = ACTIONS(1201), - [aux_sym_preproc_if_token2] = ACTIONS(1201), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1201), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1201), - [aux_sym_preproc_else_token1] = ACTIONS(1201), - [aux_sym_preproc_elif_token1] = ACTIONS(1201), - [sym_preproc_directive] = ACTIONS(1201), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(972), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(70)] = { + [sym__block_item] = STATE(71), + [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(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(71), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(71), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(71), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(71), + [sym_template_instantiation] = STATE(71), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(71), + [sym_operator_cast_declaration] = STATE(71), + [sym_constructor_or_destructor_definition] = STATE(71), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(71), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1203), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1201), - [anon_sym___cdecl] = ACTIONS(1201), - [anon_sym___clrcall] = ACTIONS(1201), - [anon_sym___stdcall] = ACTIONS(1201), - [anon_sym___fastcall] = ACTIONS(1201), - [anon_sym___thiscall] = ACTIONS(1201), - [anon_sym___vectorcall] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(1201), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(1201), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(1201), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(1201), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(1201), - [anon_sym_using] = ACTIONS(1201), - [anon_sym_static_assert] = ACTIONS(1201), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(1203), - [aux_sym_alone_macro_call_token1] = ACTIONS(1201), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [71] = { - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3095), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [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_while_statement] = STATE(68), - [sym_do_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_return_statement] = STATE(68), - [sym_break_statement] = STATE(68), - [sym_continue_statement] = STATE(68), - [sym_goto_statement] = STATE(68), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(68), - [sym_co_return_statement] = STATE(68), - [sym_co_yield_statement] = STATE(68), - [sym_throw_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(1019), - [aux_sym_preproc_include_token1] = ACTIONS(1205), - [aux_sym_preproc_def_token1] = ACTIONS(1205), - [aux_sym_preproc_if_token1] = ACTIONS(1205), - [aux_sym_preproc_if_token2] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1205), - [aux_sym_preproc_else_token1] = ACTIONS(1205), - [aux_sym_preproc_elif_token1] = ACTIONS(1205), - [sym_preproc_directive] = ACTIONS(1205), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(974), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(71)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1205), - [anon_sym___cdecl] = ACTIONS(1205), - [anon_sym___clrcall] = ACTIONS(1205), - [anon_sym___stdcall] = ACTIONS(1205), - [anon_sym___fastcall] = ACTIONS(1205), - [anon_sym___thiscall] = ACTIONS(1205), - [anon_sym___vectorcall] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(1205), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(1205), - [anon_sym_default] = ACTIONS(1205), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(1205), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(1205), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_namespace] = ACTIONS(1205), - [anon_sym_using] = ACTIONS(1205), - [anon_sym_static_assert] = ACTIONS(1205), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(1207), - [aux_sym_alone_macro_call_token1] = ACTIONS(1205), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [72] = { - [sym_declaration] = STATE(85), - [sym_type_definition] = STATE(85), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(2971), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(85), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(85), - [sym_co_return_statement] = STATE(85), - [sym_co_yield_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_try_statement] = STATE(85), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(85), - [ts_builtin_sym_end] = ACTIONS(1027), - [sym_identifier] = ACTIONS(1209), - [aux_sym_preproc_include_token1] = ACTIONS(1021), - [aux_sym_preproc_def_token1] = ACTIONS(1021), - [aux_sym_preproc_if_token1] = ACTIONS(1021), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1021), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1021), - [sym_preproc_directive] = ACTIONS(1021), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(976), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(72)] = { + [sym__block_item] = STATE(73), + [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(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(73), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(73), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(73), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(73), + [sym_template_instantiation] = STATE(73), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(73), + [sym_operator_cast_declaration] = STATE(73), + [sym_constructor_or_destructor_definition] = STATE(73), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(73), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1021), - [anon_sym___cdecl] = ACTIONS(1021), - [anon_sym___clrcall] = ACTIONS(1021), - [anon_sym___stdcall] = ACTIONS(1021), - [anon_sym___fastcall] = ACTIONS(1021), - [anon_sym___thiscall] = ACTIONS(1021), - [anon_sym___vectorcall] = ACTIONS(1021), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(71), - [anon_sym_else] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1021), - [anon_sym_default] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(1021), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_namespace] = ACTIONS(1021), - [anon_sym_using] = ACTIONS(1021), - [anon_sym_static_assert] = ACTIONS(1021), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(1027), - [aux_sym_alone_macro_call_token1] = ACTIONS(1021), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [73] = { - [sym_declaration] = STATE(77), - [sym_type_definition] = STATE(77), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(2987), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(77), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(77), - [sym_co_return_statement] = STATE(77), - [sym_co_yield_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(1211), - [aux_sym_preproc_include_token1] = ACTIONS(1021), - [aux_sym_preproc_def_token1] = ACTIONS(1021), - [aux_sym_preproc_if_token1] = ACTIONS(1021), - [aux_sym_preproc_if_token2] = ACTIONS(1021), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1021), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1021), - [sym_preproc_directive] = ACTIONS(1021), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(978), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(73)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_typedef] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1021), - [anon_sym___cdecl] = ACTIONS(1021), - [anon_sym___clrcall] = ACTIONS(1021), - [anon_sym___stdcall] = ACTIONS(1021), - [anon_sym___fastcall] = ACTIONS(1021), - [anon_sym___thiscall] = ACTIONS(1021), - [anon_sym___vectorcall] = ACTIONS(1021), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(834), - [anon_sym_else] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(1021), - [anon_sym_default] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(1021), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_namespace] = ACTIONS(1021), - [anon_sym_using] = ACTIONS(1021), - [anon_sym_static_assert] = ACTIONS(1021), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(1027), - [aux_sym_alone_macro_call_token1] = ACTIONS(1021), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [74] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3089), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(79), - [sym_labeled_statement] = STATE(79), - [sym_expression_statement] = STATE(79), - [sym_if_statement] = STATE(79), - [sym_switch_statement] = STATE(79), - [sym_while_statement] = STATE(79), - [sym_do_statement] = STATE(79), - [sym_for_statement] = STATE(79), - [sym_return_statement] = STATE(79), - [sym_break_statement] = STATE(79), - [sym_continue_statement] = STATE(79), - [sym_goto_statement] = STATE(79), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(79), - [sym_co_return_statement] = STATE(79), - [sym_co_yield_statement] = STATE(79), - [sym_throw_statement] = STATE(79), - [sym_try_statement] = STATE(79), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(1213), - [aux_sym_preproc_include_token1] = ACTIONS(1021), - [aux_sym_preproc_def_token1] = ACTIONS(1021), - [aux_sym_preproc_if_token1] = ACTIONS(1021), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1021), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1021), - [sym_preproc_directive] = ACTIONS(1021), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(980), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(74)] = { + [sym__block_item] = STATE(75), + [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(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(75), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(982), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(75)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(984), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(76)] = { + [sym__block_item] = STATE(77), + [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(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(77), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(77), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(77), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(77), + [sym_template_instantiation] = STATE(77), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(77), + [sym_operator_cast_declaration] = STATE(77), + [sym_constructor_or_destructor_definition] = STATE(77), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(77), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(986), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(77)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(988), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(78)] = { + [sym__block_item] = STATE(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(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(51), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(51), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(51), + [sym_template_instantiation] = STATE(51), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(51), + [sym_operator_cast_declaration] = STATE(51), + [sym_constructor_or_destructor_definition] = STATE(51), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [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(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(51), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(990), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(79)] = { + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6624), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(612), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1061), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1061), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4838), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(698), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [sym_preproc_directive] = ACTIONS(181), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(189), + [anon_sym___attribute__] = ACTIONS(43), + [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(700), + [anon_sym_RBRACE] = ACTIONS(992), + [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(197), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(231), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [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(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(80)] = { + [sym__top_level_item] = STATE(81), + [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(1620), + [sym__declaration_specifiers] = STATE(4973), + [sym_linkage_specification] = STATE(81), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1100), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6643), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1455), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(600), + [sym__top_level_statement] = STATE(81), + [sym_labeled_statement] = STATE(81), + [sym__top_level_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_expression] = STATE(5179), + [sym__string] = STATE(5184), + [sym_conditional_expression] = STATE(5247), + [sym_assignment_expression] = STATE(5247), + [sym_pointer_expression] = STATE(4072), + [sym_unary_expression] = STATE(5247), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(5247), + [sym_cast_expression] = STATE(5247), + [sym_sizeof_expression] = STATE(5247), + [sym_alignof_expression] = STATE(5247), + [sym_offsetof_expression] = STATE(5247), + [sym_generic_expression] = STATE(5247), + [sym_subscript_expression] = STATE(4072), + [sym_call_expression] = STATE(4072), + [sym_gnu_asm_expression] = STATE(5247), + [sym_extension_expression] = STATE(5247), + [sym_field_expression] = STATE(4072), + [sym_compound_literal_expression] = STATE(5247), + [sym_parenthesized_expression] = STATE(4072), + [sym_char_literal] = STATE(5184), + [sym_concatenated_string] = STATE(5184), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(5247), + [sym__empty_declaration] = STATE(81), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1033), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(81), + [sym_template_instantiation] = STATE(81), + [sym_operator_cast] = STATE(7099), + [sym__constructor_specifiers] = STATE(1033), + [sym_operator_cast_definition] = STATE(81), + [sym_operator_cast_declaration] = STATE(81), + [sym_constructor_or_destructor_definition] = STATE(81), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(5191), + [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(3517), + [sym_co_await_expression] = STATE(5247), + [sym_new_expression] = STATE(5247), + [sym_delete_expression] = STATE(5247), + [sym_requires_clause] = STATE(5247), + [sym_requires_expression] = STATE(5247), + [sym_lambda_expression] = STATE(5247), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(5247), + [sym_parameter_pack_expansion] = STATE(5247), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3943), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7099), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(4072), + [sym_alone_macro_call] = STATE(81), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_translation_unit_repeat1] = STATE(81), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(800), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1033), + [ts_builtin_sym_end] = ACTIONS(994), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym___extension__] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(41), + [anon_sym___attribute__] = ACTIONS(43), + [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(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(59), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(63), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(83), + [anon_sym_default] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(113), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(119), + [sym_false] = ACTIONS(119), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(131), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_namespace] = ACTIONS(141), + [anon_sym_using] = ACTIONS(143), + [anon_sym_static_assert] = ACTIONS(145), + [anon_sym_concept] = ACTIONS(147), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(119), + [sym_alone_macro] = ACTIONS(996), + [aux_sym_alone_macro_call_token1] = ACTIONS(163), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(81)] = { + [sym__top_level_item] = STATE(81), + [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(1620), + [sym__declaration_specifiers] = STATE(4973), + [sym_linkage_specification] = STATE(81), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(642), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1100), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6643), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1455), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(600), + [sym__top_level_statement] = STATE(81), + [sym_labeled_statement] = STATE(81), + [sym__top_level_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_expression] = STATE(5179), + [sym__string] = STATE(5184), + [sym_conditional_expression] = STATE(5247), + [sym_assignment_expression] = STATE(5247), + [sym_pointer_expression] = STATE(4072), + [sym_unary_expression] = STATE(5247), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(5247), + [sym_cast_expression] = STATE(5247), + [sym_sizeof_expression] = STATE(5247), + [sym_alignof_expression] = STATE(5247), + [sym_offsetof_expression] = STATE(5247), + [sym_generic_expression] = STATE(5247), + [sym_subscript_expression] = STATE(4072), + [sym_call_expression] = STATE(4072), + [sym_gnu_asm_expression] = STATE(5247), + [sym_extension_expression] = STATE(5247), + [sym_field_expression] = STATE(4072), + [sym_compound_literal_expression] = STATE(5247), + [sym_parenthesized_expression] = STATE(4072), + [sym_char_literal] = STATE(5184), + [sym_concatenated_string] = STATE(5184), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(5247), + [sym__empty_declaration] = STATE(81), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_explicit_function_specifier] = STATE(1033), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(81), + [sym_template_instantiation] = STATE(81), + [sym_operator_cast] = STATE(7099), + [sym__constructor_specifiers] = STATE(1033), + [sym_operator_cast_definition] = STATE(81), + [sym_operator_cast_declaration] = STATE(81), + [sym_constructor_or_destructor_definition] = STATE(81), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(5191), + [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(3517), + [sym_co_await_expression] = STATE(5247), + [sym_new_expression] = STATE(5247), + [sym_delete_expression] = STATE(5247), + [sym_requires_clause] = STATE(5247), + [sym_requires_expression] = STATE(5247), + [sym_lambda_expression] = STATE(5247), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(5247), + [sym_parameter_pack_expansion] = STATE(5247), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5762), + [sym_qualified_identifier] = STATE(3943), + [sym_qualified_type_identifier] = STATE(1603), + [sym_qualified_operator_cast_identifier] = STATE(7099), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(4072), + [sym_alone_macro_call] = STATE(81), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym_translation_unit_repeat1] = STATE(81), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(800), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1033), + [ts_builtin_sym_end] = ACTIONS(998), + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1003), + [aux_sym_preproc_def_token1] = ACTIONS(1006), + [aux_sym_preproc_if_token1] = ACTIONS(1009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1015), + [anon_sym_LPAREN2] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_TILDE] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_AMP_AMP] = ACTIONS(1033), + [anon_sym_AMP] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym___extension__] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1045), + [anon_sym_virtual] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym___attribute__] = ACTIONS(1054), + [anon_sym___attribute] = ACTIONS(1054), + [anon_sym_COLON_COLON] = ACTIONS(1057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1060), + [anon_sym___declspec] = ACTIONS(1063), + [anon_sym___based] = ACTIONS(1066), + [anon_sym___cdecl] = ACTIONS(1069), + [anon_sym___clrcall] = ACTIONS(1069), + [anon_sym___stdcall] = ACTIONS(1069), + [anon_sym___fastcall] = ACTIONS(1069), + [anon_sym___thiscall] = ACTIONS(1069), + [anon_sym___vectorcall] = ACTIONS(1069), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1075), + [anon_sym_unsigned] = ACTIONS(1075), + [anon_sym_long] = ACTIONS(1075), + [anon_sym_short] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_static] = ACTIONS(1081), + [anon_sym_register] = ACTIONS(1081), + [anon_sym_inline] = ACTIONS(1084), + [anon_sym___inline] = ACTIONS(1081), + [anon_sym___inline__] = ACTIONS(1081), + [anon_sym___forceinline] = ACTIONS(1081), + [anon_sym_thread_local] = ACTIONS(1081), + [anon_sym___thread] = ACTIONS(1081), + [anon_sym_const] = ACTIONS(1087), + [anon_sym_constexpr] = ACTIONS(1087), + [anon_sym_volatile] = ACTIONS(1087), + [anon_sym_restrict] = ACTIONS(1087), + [anon_sym___restrict__] = ACTIONS(1087), + [anon_sym__Atomic] = ACTIONS(1087), + [anon_sym__Noreturn] = ACTIONS(1087), + [anon_sym_noreturn] = ACTIONS(1087), + [anon_sym__Nonnull] = ACTIONS(1087), + [anon_sym_mutable] = ACTIONS(1087), + [anon_sym_constinit] = ACTIONS(1087), + [anon_sym_consteval] = ACTIONS(1087), + [anon_sym_alignas] = ACTIONS(1090), + [anon_sym__Alignas] = ACTIONS(1090), + [sym_primitive_type] = ACTIONS(1093), + [anon_sym_enum] = ACTIONS(1096), + [anon_sym_class] = ACTIONS(1099), + [anon_sym_struct] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1105), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1111), + [anon_sym_case] = ACTIONS(1114), + [anon_sym_default] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1129), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_goto] = ACTIONS(1138), + [anon_sym_not] = ACTIONS(1027), + [anon_sym_compl] = ACTIONS(1027), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_sizeof] = ACTIONS(1144), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1150), + [anon_sym__Generic] = ACTIONS(1153), + [anon_sym_asm] = ACTIONS(1156), + [anon_sym___asm__] = ACTIONS(1156), + [anon_sym___asm] = ACTIONS(1156), + [sym_number_literal] = ACTIONS(1159), + [anon_sym_L_SQUOTE] = ACTIONS(1162), + [anon_sym_u_SQUOTE] = ACTIONS(1162), + [anon_sym_U_SQUOTE] = ACTIONS(1162), + [anon_sym_u8_SQUOTE] = ACTIONS(1162), + [anon_sym_SQUOTE] = ACTIONS(1162), + [anon_sym_L_DQUOTE] = ACTIONS(1165), + [anon_sym_u_DQUOTE] = ACTIONS(1165), + [anon_sym_U_DQUOTE] = ACTIONS(1165), + [anon_sym_u8_DQUOTE] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym_true] = ACTIONS(1168), + [sym_false] = ACTIONS(1168), + [anon_sym_NULL] = ACTIONS(1171), + [anon_sym_nullptr] = ACTIONS(1171), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1174), + [anon_sym_decltype] = ACTIONS(1177), + [anon_sym_explicit] = ACTIONS(1180), + [anon_sym_typename] = ACTIONS(1183), + [anon_sym_template] = ACTIONS(1186), + [anon_sym_operator] = ACTIONS(1189), + [anon_sym_try] = ACTIONS(1192), + [anon_sym_delete] = ACTIONS(1195), + [anon_sym_throw] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_using] = ACTIONS(1204), + [anon_sym_static_assert] = ACTIONS(1207), + [anon_sym_concept] = ACTIONS(1210), + [anon_sym_co_return] = ACTIONS(1213), + [anon_sym_co_yield] = ACTIONS(1216), + [anon_sym_R_DQUOTE] = ACTIONS(1219), + [anon_sym_LR_DQUOTE] = ACTIONS(1219), + [anon_sym_uR_DQUOTE] = ACTIONS(1219), + [anon_sym_UR_DQUOTE] = ACTIONS(1219), + [anon_sym_u8R_DQUOTE] = ACTIONS(1219), + [anon_sym_co_await] = ACTIONS(1222), + [anon_sym_new] = ACTIONS(1225), + [anon_sym_requires] = ACTIONS(1228), + [sym_this] = ACTIONS(1168), + [sym_alone_macro] = ACTIONS(1231), + [aux_sym_alone_macro_call_token1] = ACTIONS(1234), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1237), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1237), + [anon_sym_FORWARD] = ACTIONS(1237), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1237), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1237), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1237), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1237), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1237), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1237), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1237), + [anon_sym_PS_GET] = ACTIONS(1237), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1237), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1237), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1237), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1237), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1237), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1237), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1240), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1240), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1240), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1240), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1240), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1240), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1240), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1240), + [anon_sym_MOZ_COLD] = ACTIONS(1240), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1240), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1240), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1240), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1240), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1240), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1240), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1240), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1240), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1240), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1240), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1240), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1240), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1240), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1240), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1240), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1240), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1240), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1240), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1240), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1240), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1240), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1240), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1240), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1240), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1240), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1240), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1240), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1240), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1240), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1240), + [anon_sym_MOZ_NONNULL] = ACTIONS(1240), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1240), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1240), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1240), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1240), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1240), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1240), + [anon_sym_MOZ_NORETURN] = ACTIONS(1240), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1240), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1240), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1240), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1240), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1240), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1240), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1240), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1240), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1240), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1240), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1240), + [anon_sym_MOZ_RAII] = ACTIONS(1240), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1240), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1240), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1240), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1240), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1240), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1240), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1240), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1240), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1240), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1240), + }, + [STATE(82)] = { + [sym_declaration] = STATE(84), + [sym_type_definition] = STATE(84), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5518), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(84), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(84), + [sym_labeled_statement] = STATE(84), + [sym_expression_statement] = STATE(84), + [sym_if_statement] = STATE(84), + [sym_switch_statement] = STATE(84), + [sym_while_statement] = STATE(84), + [sym_do_statement] = STATE(84), + [sym_for_statement] = STATE(84), + [sym_return_statement] = STATE(84), + [sym_break_statement] = STATE(84), + [sym_continue_statement] = STATE(84), + [sym_goto_statement] = STATE(84), + [sym_seh_try_statement] = STATE(84), + [sym_seh_leave_statement] = STATE(84), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(84), + [sym_co_return_statement] = STATE(84), + [sym_co_yield_statement] = STATE(84), + [sym_throw_statement] = STATE(84), + [sym_try_statement] = STATE(84), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(84), + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1245), + [aux_sym_preproc_def_token1] = ACTIONS(1245), + [aux_sym_preproc_if_token1] = ACTIONS(1245), + [aux_sym_preproc_if_token2] = ACTIONS(1245), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), + [aux_sym_preproc_else_token1] = ACTIONS(1245), + [aux_sym_preproc_elif_token1] = ACTIONS(1245), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1245), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1245), + [sym_preproc_directive] = ACTIONS(1245), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1021), - [anon_sym___cdecl] = ACTIONS(1021), - [anon_sym___clrcall] = ACTIONS(1021), - [anon_sym___stdcall] = ACTIONS(1021), - [anon_sym___fastcall] = ACTIONS(1021), - [anon_sym___thiscall] = ACTIONS(1021), - [anon_sym___vectorcall] = ACTIONS(1021), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(1027), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_else] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(1021), - [anon_sym_default] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(1021), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(1021), - [anon_sym_using] = ACTIONS(1021), - [anon_sym_static_assert] = ACTIONS(1021), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(1027), - [aux_sym_alone_macro_call_token1] = ACTIONS(1021), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [75] = { + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(1255), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(1245), + [anon_sym___cdecl] = ACTIONS(1245), + [anon_sym___clrcall] = ACTIONS(1245), + [anon_sym___stdcall] = ACTIONS(1245), + [anon_sym___fastcall] = ACTIONS(1245), + [anon_sym___thiscall] = ACTIONS(1245), + [anon_sym___vectorcall] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_else] = ACTIONS(1245), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(1245), + [anon_sym_default] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(1245), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(1245), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_static_assert] = ACTIONS(1245), + [anon_sym_concept] = ACTIONS(1245), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(83)] = { [sym_declaration] = STATE(85), [sym_type_definition] = STATE(85), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(2971), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5518), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), [sym_attributed_statement] = STATE(85), [sym_labeled_statement] = STATE(85), [sym_expression_statement] = STATE(85), @@ -52351,2644 +70733,626 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(85), [sym_continue_statement] = STATE(85), [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), + [sym_seh_try_statement] = STATE(85), + [sym_seh_leave_statement] = STATE(85), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), [sym_for_range_loop] = STATE(85), [sym_co_return_statement] = STATE(85), [sym_co_yield_statement] = STATE(85), [sym_throw_statement] = STATE(85), [sym_try_statement] = STATE(85), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), [aux_sym_case_statement_repeat1] = STATE(85), - [ts_builtin_sym_end] = ACTIONS(1207), - [sym_identifier] = ACTIONS(1209), - [aux_sym_preproc_include_token1] = ACTIONS(1205), - [aux_sym_preproc_def_token1] = ACTIONS(1205), - [aux_sym_preproc_if_token1] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1205), - [sym_preproc_directive] = ACTIONS(1205), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1205), - [anon_sym___cdecl] = ACTIONS(1205), - [anon_sym___clrcall] = ACTIONS(1205), - [anon_sym___stdcall] = ACTIONS(1205), - [anon_sym___fastcall] = ACTIONS(1205), - [anon_sym___thiscall] = ACTIONS(1205), - [anon_sym___vectorcall] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(71), - [anon_sym_else] = ACTIONS(1205), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1205), - [anon_sym_default] = ACTIONS(1205), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(1205), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(1205), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_namespace] = ACTIONS(1205), - [anon_sym_using] = ACTIONS(1205), - [anon_sym_static_assert] = ACTIONS(1205), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(1207), - [aux_sym_alone_macro_call_token1] = ACTIONS(1205), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [76] = { - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(2971), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(72), - [sym_labeled_statement] = STATE(72), - [sym_expression_statement] = STATE(72), - [sym_if_statement] = STATE(72), - [sym_switch_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_do_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_return_statement] = STATE(72), - [sym_break_statement] = STATE(72), - [sym_continue_statement] = STATE(72), - [sym_goto_statement] = STATE(72), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(72), - [sym_co_return_statement] = STATE(72), - [sym_co_yield_statement] = STATE(72), - [sym_throw_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(72), - [ts_builtin_sym_end] = ACTIONS(1203), - [sym_identifier] = ACTIONS(1209), - [aux_sym_preproc_include_token1] = ACTIONS(1201), - [aux_sym_preproc_def_token1] = ACTIONS(1201), - [aux_sym_preproc_if_token1] = ACTIONS(1201), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1201), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1201), - [sym_preproc_directive] = ACTIONS(1201), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1203), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1201), - [anon_sym___cdecl] = ACTIONS(1201), - [anon_sym___clrcall] = ACTIONS(1201), - [anon_sym___stdcall] = ACTIONS(1201), - [anon_sym___fastcall] = ACTIONS(1201), - [anon_sym___thiscall] = ACTIONS(1201), - [anon_sym___vectorcall] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(71), - [anon_sym_else] = ACTIONS(1201), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1201), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(1201), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(1201), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_namespace] = ACTIONS(1201), - [anon_sym_using] = ACTIONS(1201), - [anon_sym_static_assert] = ACTIONS(1201), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(1203), - [aux_sym_alone_macro_call_token1] = ACTIONS(1201), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [77] = { - [sym_declaration] = STATE(77), - [sym_type_definition] = STATE(77), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(2987), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(77), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(77), - [sym_co_return_statement] = STATE(77), - [sym_co_yield_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(1215), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token2] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_AMP_AMP] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1056), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1221), - [anon_sym_extern] = ACTIONS(1065), - [anon_sym___attribute__] = ACTIONS(1068), - [anon_sym_COLON_COLON] = ACTIONS(1071), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), - [anon_sym___declspec] = ACTIONS(1077), - [anon_sym___based] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_LBRACK] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1065), - [anon_sym_register] = ACTIONS(1065), - [anon_sym_inline] = ACTIONS(1065), - [anon_sym_thread_local] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_volatile] = ACTIONS(1086), - [anon_sym_restrict] = ACTIONS(1086), - [anon_sym__Atomic] = ACTIONS(1086), - [anon_sym_mutable] = ACTIONS(1086), - [anon_sym_constexpr] = ACTIONS(1086), - [anon_sym_signed] = ACTIONS(1089), - [anon_sym_unsigned] = ACTIONS(1089), - [anon_sym_long] = ACTIONS(1089), - [anon_sym_short] = ACTIONS(1089), - [sym_primitive_type] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1095), - [anon_sym_class] = ACTIONS(1098), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_union] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1230), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_goto] = ACTIONS(1251), - [anon_sym_DASH_DASH] = ACTIONS(1134), - [anon_sym_PLUS_PLUS] = ACTIONS(1134), - [anon_sym_sizeof] = ACTIONS(1137), - [sym_number_literal] = ACTIONS(1140), - [anon_sym_L_SQUOTE] = ACTIONS(1143), - [anon_sym_u_SQUOTE] = ACTIONS(1143), - [anon_sym_U_SQUOTE] = ACTIONS(1143), - [anon_sym_u8_SQUOTE] = ACTIONS(1143), - [anon_sym_SQUOTE] = ACTIONS(1143), - [anon_sym_L_DQUOTE] = ACTIONS(1146), - [anon_sym_u_DQUOTE] = ACTIONS(1146), - [anon_sym_U_DQUOTE] = ACTIONS(1146), - [anon_sym_u8_DQUOTE] = ACTIONS(1146), - [anon_sym_DQUOTE] = ACTIONS(1146), - [sym_true] = ACTIONS(1149), - [sym_false] = ACTIONS(1149), - [sym_null] = ACTIONS(1149), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1152), - [anon_sym_virtual] = ACTIONS(1155), - [anon_sym_explicit] = ACTIONS(1040), - [sym_auto] = ACTIONS(1158), - [anon_sym_typename] = ACTIONS(1161), - [anon_sym_template] = ACTIONS(1164), - [anon_sym_operator] = ACTIONS(1040), - [anon_sym_delete] = ACTIONS(1167), - [anon_sym_throw] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1040), - [anon_sym_using] = ACTIONS(1040), - [anon_sym_static_assert] = ACTIONS(1040), - [anon_sym_co_return] = ACTIONS(1257), - [anon_sym_co_yield] = ACTIONS(1260), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_co_await] = ACTIONS(1182), - [anon_sym_new] = ACTIONS(1185), - [sym_this] = ACTIONS(1149), - [sym_nullptr] = ACTIONS(1149), - [sym_alone_macro] = ACTIONS(1054), - [aux_sym_alone_macro_call_token1] = ACTIONS(1040), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_FORWARD] = ACTIONS(1188), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1188), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_PS_GET] = ACTIONS(1188), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1188), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1188), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1191), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1191), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1191), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1191), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1191), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1191), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1191), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1191), - [anon_sym_MOZ_COLD] = ACTIONS(1191), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1191), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1191), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1191), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1191), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1191), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1191), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1191), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1191), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1191), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1191), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1191), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1191), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1191), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1191), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1191), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1191), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1191), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1191), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1191), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1191), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_NONNULL] = ACTIONS(1191), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1191), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1191), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1191), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1191), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1191), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_NORETURN] = ACTIONS(1191), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1191), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1191), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1191), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1191), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1191), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1191), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1191), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1191), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1191), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1191), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1191), - [anon_sym_MOZ_RAII] = ACTIONS(1191), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1191), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1191), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1191), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1191), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1191), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1191), - [sym_raw_string_literal] = ACTIONS(1194), - }, - [78] = { - [sym_declaration] = STATE(75), - [sym_type_definition] = STATE(75), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(2971), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(75), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(75), - [sym_labeled_statement] = STATE(75), - [sym_expression_statement] = STATE(75), - [sym_if_statement] = STATE(75), - [sym_switch_statement] = STATE(75), - [sym_while_statement] = STATE(75), - [sym_do_statement] = STATE(75), - [sym_for_statement] = STATE(75), - [sym_return_statement] = STATE(75), - [sym_break_statement] = STATE(75), - [sym_continue_statement] = STATE(75), - [sym_goto_statement] = STATE(75), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(75), - [sym_co_return_statement] = STATE(75), - [sym_co_yield_statement] = STATE(75), - [sym_throw_statement] = STATE(75), - [sym_try_statement] = STATE(75), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(75), - [ts_builtin_sym_end] = ACTIONS(1199), - [sym_identifier] = ACTIONS(1209), - [aux_sym_preproc_include_token1] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [sym_preproc_directive] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(71), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(1197), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_using] = ACTIONS(1197), - [anon_sym_static_assert] = ACTIONS(1197), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(1199), - [aux_sym_alone_macro_call_token1] = ACTIONS(1197), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [79] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3089), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(79), - [sym_labeled_statement] = STATE(79), - [sym_expression_statement] = STATE(79), - [sym_if_statement] = STATE(79), - [sym_switch_statement] = STATE(79), - [sym_while_statement] = STATE(79), - [sym_do_statement] = STATE(79), - [sym_for_statement] = STATE(79), - [sym_return_statement] = STATE(79), - [sym_break_statement] = STATE(79), - [sym_continue_statement] = STATE(79), - [sym_goto_statement] = STATE(79), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(79), - [sym_co_return_statement] = STATE(79), - [sym_co_yield_statement] = STATE(79), - [sym_throw_statement] = STATE(79), - [sym_try_statement] = STATE(79), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(1266), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_AMP_AMP] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1056), - [anon_sym_SEMI] = ACTIONS(1269), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1065), - [anon_sym___attribute__] = ACTIONS(1068), - [anon_sym_COLON_COLON] = ACTIONS(1071), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), - [anon_sym___declspec] = ACTIONS(1077), - [anon_sym___based] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1065), - [anon_sym_register] = ACTIONS(1065), - [anon_sym_inline] = ACTIONS(1065), - [anon_sym_thread_local] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_volatile] = ACTIONS(1086), - [anon_sym_restrict] = ACTIONS(1086), - [anon_sym__Atomic] = ACTIONS(1086), - [anon_sym_mutable] = ACTIONS(1086), - [anon_sym_constexpr] = ACTIONS(1086), - [anon_sym_signed] = ACTIONS(1089), - [anon_sym_unsigned] = ACTIONS(1089), - [anon_sym_long] = ACTIONS(1089), - [anon_sym_short] = ACTIONS(1089), - [sym_primitive_type] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1095), - [anon_sym_class] = ACTIONS(1098), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_union] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1281), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1287), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1293), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1299), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1134), - [anon_sym_PLUS_PLUS] = ACTIONS(1134), - [anon_sym_sizeof] = ACTIONS(1137), - [sym_number_literal] = ACTIONS(1140), - [anon_sym_L_SQUOTE] = ACTIONS(1143), - [anon_sym_u_SQUOTE] = ACTIONS(1143), - [anon_sym_U_SQUOTE] = ACTIONS(1143), - [anon_sym_u8_SQUOTE] = ACTIONS(1143), - [anon_sym_SQUOTE] = ACTIONS(1143), - [anon_sym_L_DQUOTE] = ACTIONS(1146), - [anon_sym_u_DQUOTE] = ACTIONS(1146), - [anon_sym_U_DQUOTE] = ACTIONS(1146), - [anon_sym_u8_DQUOTE] = ACTIONS(1146), - [anon_sym_DQUOTE] = ACTIONS(1146), - [sym_true] = ACTIONS(1149), - [sym_false] = ACTIONS(1149), - [sym_null] = ACTIONS(1149), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1152), - [anon_sym_virtual] = ACTIONS(1155), - [anon_sym_explicit] = ACTIONS(1040), - [sym_auto] = ACTIONS(1158), - [anon_sym_typename] = ACTIONS(1161), - [anon_sym_template] = ACTIONS(1164), - [anon_sym_operator] = ACTIONS(1040), - [anon_sym_delete] = ACTIONS(1167), - [anon_sym_throw] = ACTIONS(1305), - [anon_sym_namespace] = ACTIONS(1040), - [anon_sym_using] = ACTIONS(1040), - [anon_sym_static_assert] = ACTIONS(1040), - [anon_sym_co_return] = ACTIONS(1308), - [anon_sym_co_yield] = ACTIONS(1311), - [anon_sym_try] = ACTIONS(1314), - [anon_sym_co_await] = ACTIONS(1182), - [anon_sym_new] = ACTIONS(1185), - [sym_this] = ACTIONS(1149), - [sym_nullptr] = ACTIONS(1149), - [sym_alone_macro] = ACTIONS(1054), - [aux_sym_alone_macro_call_token1] = ACTIONS(1040), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_FORWARD] = ACTIONS(1188), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1188), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_PS_GET] = ACTIONS(1188), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1188), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1188), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1191), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1191), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1191), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1191), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1191), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1191), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1191), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1191), - [anon_sym_MOZ_COLD] = ACTIONS(1191), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1191), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1191), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1191), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1191), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1191), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1191), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1191), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1191), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1191), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1191), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1191), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1191), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1191), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1191), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1191), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1191), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1191), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1191), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1191), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1191), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_NONNULL] = ACTIONS(1191), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1191), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1191), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1191), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1191), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1191), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_NORETURN] = ACTIONS(1191), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1191), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1191), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1191), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1191), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1191), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1191), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1191), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1191), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1191), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1191), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1191), - [anon_sym_MOZ_RAII] = ACTIONS(1191), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1191), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1191), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1191), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1191), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1191), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1191), - [sym_raw_string_literal] = ACTIONS(1194), - }, - [80] = { - [sym_declaration] = STATE(77), - [sym_type_definition] = STATE(77), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(2987), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(77), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(77), - [sym_co_return_statement] = STATE(77), - [sym_co_yield_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(1211), - [aux_sym_preproc_include_token1] = ACTIONS(1205), - [aux_sym_preproc_def_token1] = ACTIONS(1205), - [aux_sym_preproc_if_token1] = ACTIONS(1205), - [aux_sym_preproc_if_token2] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1205), - [sym_preproc_directive] = ACTIONS(1205), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_typedef] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1205), - [anon_sym___cdecl] = ACTIONS(1205), - [anon_sym___clrcall] = ACTIONS(1205), - [anon_sym___stdcall] = ACTIONS(1205), - [anon_sym___fastcall] = ACTIONS(1205), - [anon_sym___thiscall] = ACTIONS(1205), - [anon_sym___vectorcall] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(834), - [anon_sym_else] = ACTIONS(1205), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(1205), - [anon_sym_default] = ACTIONS(1205), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(1205), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(1205), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_namespace] = ACTIONS(1205), - [anon_sym_using] = ACTIONS(1205), - [anon_sym_static_assert] = ACTIONS(1205), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(1207), - [aux_sym_alone_macro_call_token1] = ACTIONS(1205), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [81] = { - [sym_declaration] = STATE(73), - [sym_type_definition] = STATE(73), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(2987), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(73), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [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_while_statement] = STATE(73), - [sym_do_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_return_statement] = STATE(73), - [sym_break_statement] = STATE(73), - [sym_continue_statement] = STATE(73), - [sym_goto_statement] = STATE(73), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(73), - [sym_co_return_statement] = STATE(73), - [sym_co_yield_statement] = STATE(73), - [sym_throw_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(73), - [sym_identifier] = ACTIONS(1211), - [aux_sym_preproc_include_token1] = ACTIONS(1201), - [aux_sym_preproc_def_token1] = ACTIONS(1201), - [aux_sym_preproc_if_token1] = ACTIONS(1201), - [aux_sym_preproc_if_token2] = ACTIONS(1201), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1201), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1201), - [sym_preproc_directive] = ACTIONS(1201), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1203), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_typedef] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1201), - [anon_sym___cdecl] = ACTIONS(1201), - [anon_sym___clrcall] = ACTIONS(1201), - [anon_sym___stdcall] = ACTIONS(1201), - [anon_sym___fastcall] = ACTIONS(1201), - [anon_sym___thiscall] = ACTIONS(1201), - [anon_sym___vectorcall] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(834), - [anon_sym_else] = ACTIONS(1201), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(1201), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(1201), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(1201), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_namespace] = ACTIONS(1201), - [anon_sym_using] = ACTIONS(1201), - [anon_sym_static_assert] = ACTIONS(1201), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(1203), - [aux_sym_alone_macro_call_token1] = ACTIONS(1201), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [82] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3089), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(79), - [sym_labeled_statement] = STATE(79), - [sym_expression_statement] = STATE(79), - [sym_if_statement] = STATE(79), - [sym_switch_statement] = STATE(79), - [sym_while_statement] = STATE(79), - [sym_do_statement] = STATE(79), - [sym_for_statement] = STATE(79), - [sym_return_statement] = STATE(79), - [sym_break_statement] = STATE(79), - [sym_continue_statement] = STATE(79), - [sym_goto_statement] = STATE(79), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(79), - [sym_co_return_statement] = STATE(79), - [sym_co_yield_statement] = STATE(79), - [sym_throw_statement] = STATE(79), - [sym_try_statement] = STATE(79), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(1213), - [aux_sym_preproc_include_token1] = ACTIONS(1205), - [aux_sym_preproc_def_token1] = ACTIONS(1205), - [aux_sym_preproc_if_token1] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1205), - [sym_preproc_directive] = ACTIONS(1205), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1205), - [anon_sym___cdecl] = ACTIONS(1205), - [anon_sym___clrcall] = ACTIONS(1205), - [anon_sym___stdcall] = ACTIONS(1205), - [anon_sym___fastcall] = ACTIONS(1205), - [anon_sym___thiscall] = ACTIONS(1205), - [anon_sym___vectorcall] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_else] = ACTIONS(1205), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(1205), - [anon_sym_default] = ACTIONS(1205), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(1205), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(1205), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(1205), - [anon_sym_using] = ACTIONS(1205), - [anon_sym_static_assert] = ACTIONS(1205), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(1207), - [aux_sym_alone_macro_call_token1] = ACTIONS(1205), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [83] = { - [sym_declaration] = STATE(80), - [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(2987), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(80), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(80), - [sym_labeled_statement] = STATE(80), - [sym_expression_statement] = STATE(80), - [sym_if_statement] = STATE(80), - [sym_switch_statement] = STATE(80), - [sym_while_statement] = STATE(80), - [sym_do_statement] = STATE(80), - [sym_for_statement] = STATE(80), - [sym_return_statement] = STATE(80), - [sym_break_statement] = STATE(80), - [sym_continue_statement] = STATE(80), - [sym_goto_statement] = STATE(80), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(80), - [sym_co_return_statement] = STATE(80), - [sym_co_yield_statement] = STATE(80), - [sym_throw_statement] = STATE(80), - [sym_try_statement] = STATE(80), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(80), - [sym_identifier] = ACTIONS(1211), - [aux_sym_preproc_include_token1] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token2] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [sym_preproc_directive] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1023), + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1265), + [aux_sym_preproc_def_token1] = ACTIONS(1265), + [aux_sym_preproc_if_token1] = ACTIONS(1265), + [aux_sym_preproc_if_token2] = ACTIONS(1265), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1265), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1265), + [aux_sym_preproc_else_token1] = ACTIONS(1265), + [aux_sym_preproc_elif_token1] = ACTIONS(1265), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1265), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1265), + [sym_preproc_directive] = ACTIONS(1265), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_typedef] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(834), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(1197), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_using] = ACTIONS(1197), - [anon_sym_static_assert] = ACTIONS(1197), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(1199), - [aux_sym_alone_macro_call_token1] = ACTIONS(1197), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [84] = { - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3089), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(74), - [sym_labeled_statement] = STATE(74), - [sym_expression_statement] = STATE(74), - [sym_if_statement] = STATE(74), - [sym_switch_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_do_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_return_statement] = STATE(74), - [sym_break_statement] = STATE(74), - [sym_continue_statement] = STATE(74), - [sym_goto_statement] = STATE(74), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(74), - [sym_co_return_statement] = STATE(74), - [sym_co_yield_statement] = STATE(74), - [sym_throw_statement] = STATE(74), - [sym_try_statement] = STATE(74), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(74), - [sym_identifier] = ACTIONS(1213), - [aux_sym_preproc_include_token1] = ACTIONS(1201), - [aux_sym_preproc_def_token1] = ACTIONS(1201), - [aux_sym_preproc_if_token1] = ACTIONS(1201), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1201), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1201), - [sym_preproc_directive] = ACTIONS(1201), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(1255), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(1265), + [anon_sym___cdecl] = ACTIONS(1265), + [anon_sym___clrcall] = ACTIONS(1265), + [anon_sym___stdcall] = ACTIONS(1265), + [anon_sym___fastcall] = ACTIONS(1265), + [anon_sym___thiscall] = ACTIONS(1265), + [anon_sym___vectorcall] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_else] = ACTIONS(1265), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(1265), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(1265), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(1265), + [anon_sym_using] = ACTIONS(1265), + [anon_sym_static_assert] = ACTIONS(1265), + [anon_sym_concept] = ACTIONS(1265), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(84)] = { + [sym_declaration] = STATE(85), + [sym_type_definition] = STATE(85), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5518), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(85), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(85), + [sym_labeled_statement] = STATE(85), + [sym_expression_statement] = STATE(85), + [sym_if_statement] = STATE(85), + [sym_switch_statement] = STATE(85), + [sym_while_statement] = STATE(85), + [sym_do_statement] = STATE(85), + [sym_for_statement] = STATE(85), + [sym_return_statement] = STATE(85), + [sym_break_statement] = STATE(85), + [sym_continue_statement] = STATE(85), + [sym_goto_statement] = STATE(85), + [sym_seh_try_statement] = STATE(85), + [sym_seh_leave_statement] = STATE(85), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(85), + [sym_co_return_statement] = STATE(85), + [sym_co_yield_statement] = STATE(85), + [sym_throw_statement] = STATE(85), + [sym_try_statement] = STATE(85), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(85), + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1269), + [aux_sym_preproc_def_token1] = ACTIONS(1269), + [aux_sym_preproc_if_token1] = ACTIONS(1269), + [aux_sym_preproc_if_token2] = ACTIONS(1269), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1269), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1269), + [aux_sym_preproc_else_token1] = ACTIONS(1269), + [aux_sym_preproc_elif_token1] = ACTIONS(1269), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1269), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1269), + [sym_preproc_directive] = ACTIONS(1269), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1203), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1201), - [anon_sym___cdecl] = ACTIONS(1201), - [anon_sym___clrcall] = ACTIONS(1201), - [anon_sym___stdcall] = ACTIONS(1201), - [anon_sym___fastcall] = ACTIONS(1201), - [anon_sym___thiscall] = ACTIONS(1201), - [anon_sym___vectorcall] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(1203), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_else] = ACTIONS(1201), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(1201), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(1201), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(1201), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(1201), - [anon_sym_using] = ACTIONS(1201), - [anon_sym_static_assert] = ACTIONS(1201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(1203), - [aux_sym_alone_macro_call_token1] = ACTIONS(1201), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [85] = { + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(1255), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(1269), + [anon_sym___cdecl] = ACTIONS(1269), + [anon_sym___clrcall] = ACTIONS(1269), + [anon_sym___stdcall] = ACTIONS(1269), + [anon_sym___fastcall] = ACTIONS(1269), + [anon_sym___thiscall] = ACTIONS(1269), + [anon_sym___vectorcall] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_else] = ACTIONS(1269), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(1269), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(1269), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(1269), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(1269), + [anon_sym_using] = ACTIONS(1269), + [anon_sym_static_assert] = ACTIONS(1269), + [anon_sym_concept] = ACTIONS(1269), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(85)] = { [sym_declaration] = STATE(85), [sym_type_definition] = STATE(85), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(2971), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5518), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), [sym_attributed_statement] = STATE(85), [sym_labeled_statement] = STATE(85), [sym_expression_statement] = STATE(85), @@ -55001,524 +71365,626 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(85), [sym_continue_statement] = STATE(85), [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), + [sym_seh_try_statement] = STATE(85), + [sym_seh_leave_statement] = STATE(85), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), [sym_for_range_loop] = STATE(85), [sym_co_return_statement] = STATE(85), [sym_co_yield_statement] = STATE(85), [sym_throw_statement] = STATE(85), [sym_try_statement] = STATE(85), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), [aux_sym_case_statement_repeat1] = STATE(85), - [ts_builtin_sym_end] = ACTIONS(1054), - [sym_identifier] = ACTIONS(1317), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_AMP_AMP] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1056), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1323), - [anon_sym_extern] = ACTIONS(1065), - [anon_sym___attribute__] = ACTIONS(1068), - [anon_sym_COLON_COLON] = ACTIONS(1071), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), - [anon_sym___declspec] = ACTIONS(1077), - [anon_sym___based] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1065), - [anon_sym_register] = ACTIONS(1065), - [anon_sym_inline] = ACTIONS(1065), - [anon_sym_thread_local] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_volatile] = ACTIONS(1086), - [anon_sym_restrict] = ACTIONS(1086), - [anon_sym__Atomic] = ACTIONS(1086), - [anon_sym_mutable] = ACTIONS(1086), - [anon_sym_constexpr] = ACTIONS(1086), - [anon_sym_signed] = ACTIONS(1089), - [anon_sym_unsigned] = ACTIONS(1089), - [anon_sym_long] = ACTIONS(1089), - [anon_sym_short] = ACTIONS(1089), - [sym_primitive_type] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1095), - [anon_sym_class] = ACTIONS(1098), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_union] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1329), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1335), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1341), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1347), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1134), - [anon_sym_PLUS_PLUS] = ACTIONS(1134), - [anon_sym_sizeof] = ACTIONS(1137), - [sym_number_literal] = ACTIONS(1140), - [anon_sym_L_SQUOTE] = ACTIONS(1143), - [anon_sym_u_SQUOTE] = ACTIONS(1143), - [anon_sym_U_SQUOTE] = ACTIONS(1143), - [anon_sym_u8_SQUOTE] = ACTIONS(1143), - [anon_sym_SQUOTE] = ACTIONS(1143), - [anon_sym_L_DQUOTE] = ACTIONS(1146), - [anon_sym_u_DQUOTE] = ACTIONS(1146), - [anon_sym_U_DQUOTE] = ACTIONS(1146), - [anon_sym_u8_DQUOTE] = ACTIONS(1146), - [anon_sym_DQUOTE] = ACTIONS(1146), - [sym_true] = ACTIONS(1149), - [sym_false] = ACTIONS(1149), - [sym_null] = ACTIONS(1149), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1152), - [anon_sym_virtual] = ACTIONS(1155), - [anon_sym_explicit] = ACTIONS(1040), - [sym_auto] = ACTIONS(1158), - [anon_sym_typename] = ACTIONS(1161), - [anon_sym_template] = ACTIONS(1164), - [anon_sym_operator] = ACTIONS(1040), - [anon_sym_delete] = ACTIONS(1167), - [anon_sym_throw] = ACTIONS(1356), - [anon_sym_namespace] = ACTIONS(1040), - [anon_sym_using] = ACTIONS(1040), - [anon_sym_static_assert] = ACTIONS(1040), - [anon_sym_co_return] = ACTIONS(1359), - [anon_sym_co_yield] = ACTIONS(1362), - [anon_sym_try] = ACTIONS(1365), - [anon_sym_co_await] = ACTIONS(1182), - [anon_sym_new] = ACTIONS(1185), - [sym_this] = ACTIONS(1149), - [sym_nullptr] = ACTIONS(1149), - [sym_alone_macro] = ACTIONS(1054), - [aux_sym_alone_macro_call_token1] = ACTIONS(1040), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_FORWARD] = ACTIONS(1188), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1188), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_PS_GET] = ACTIONS(1188), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1188), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1188), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1191), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1191), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1191), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1191), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1191), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1191), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1191), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1191), - [anon_sym_MOZ_COLD] = ACTIONS(1191), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1191), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1191), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1191), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1191), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1191), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1191), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1191), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1191), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1191), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1191), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1191), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1191), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1191), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1191), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1191), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1191), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1191), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1191), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1191), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1191), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_NONNULL] = ACTIONS(1191), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1191), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1191), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1191), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1191), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1191), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_NORETURN] = ACTIONS(1191), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1191), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1191), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1191), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1191), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1191), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1191), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1191), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1191), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1191), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1191), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1191), - [anon_sym_MOZ_RAII] = ACTIONS(1191), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1191), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1191), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1191), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1191), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1191), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1191), - [sym_raw_string_literal] = ACTIONS(1194), - }, - [86] = { - [sym_declaration] = STATE(82), - [sym_type_definition] = STATE(82), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3089), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(82), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(82), - [sym_labeled_statement] = STATE(82), - [sym_expression_statement] = STATE(82), - [sym_if_statement] = STATE(82), - [sym_switch_statement] = STATE(82), - [sym_while_statement] = STATE(82), - [sym_do_statement] = STATE(82), - [sym_for_statement] = STATE(82), - [sym_return_statement] = STATE(82), - [sym_break_statement] = STATE(82), - [sym_continue_statement] = STATE(82), - [sym_goto_statement] = STATE(82), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(82), - [sym_co_return_statement] = STATE(82), - [sym_co_yield_statement] = STATE(82), - [sym_throw_statement] = STATE(82), - [sym_try_statement] = STATE(82), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(1213), - [aux_sym_preproc_include_token1] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [sym_preproc_directive] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1023), + [sym_identifier] = ACTIONS(1273), + [aux_sym_preproc_include_token1] = ACTIONS(1276), + [aux_sym_preproc_def_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token2] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), + [aux_sym_preproc_else_token1] = ACTIONS(1276), + [aux_sym_preproc_elif_token1] = ACTIONS(1276), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1276), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1276), + [sym_preproc_directive] = ACTIONS(1276), + [anon_sym_LPAREN2] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1295), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1301), + [anon_sym_virtual] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym___attribute] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(1313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___based] = ACTIONS(1276), + [anon_sym___cdecl] = ACTIONS(1276), + [anon_sym___clrcall] = ACTIONS(1276), + [anon_sym___stdcall] = ACTIONS(1276), + [anon_sym___fastcall] = ACTIONS(1276), + [anon_sym___thiscall] = ACTIONS(1276), + [anon_sym___vectorcall] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_inline] = ACTIONS(1307), + [anon_sym___inline] = ACTIONS(1307), + [anon_sym___inline__] = ACTIONS(1307), + [anon_sym___forceinline] = ACTIONS(1307), + [anon_sym_thread_local] = ACTIONS(1307), + [anon_sym___thread] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [anon_sym__Nonnull] = ACTIONS(1331), + [anon_sym_mutable] = ACTIONS(1331), + [anon_sym_constinit] = ACTIONS(1331), + [anon_sym_consteval] = ACTIONS(1331), + [anon_sym_alignas] = ACTIONS(1334), + [anon_sym__Alignas] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1337), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_class] = ACTIONS(1343), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(1276), + [anon_sym_switch] = ACTIONS(1355), + [anon_sym_case] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_goto] = ACTIONS(1376), + [anon_sym___try] = ACTIONS(1379), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_not] = ACTIONS(1284), + [anon_sym_compl] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1385), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym___alignof__] = ACTIONS(1391), + [anon_sym___alignof] = ACTIONS(1391), + [anon_sym__alignof] = ACTIONS(1391), + [anon_sym_alignof] = ACTIONS(1391), + [anon_sym__Alignof] = ACTIONS(1391), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1397), + [anon_sym_asm] = ACTIONS(1400), + [anon_sym___asm__] = ACTIONS(1400), + [anon_sym___asm] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1403), + [anon_sym_L_SQUOTE] = ACTIONS(1406), + [anon_sym_u_SQUOTE] = ACTIONS(1406), + [anon_sym_U_SQUOTE] = ACTIONS(1406), + [anon_sym_u8_SQUOTE] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_L_DQUOTE] = ACTIONS(1409), + [anon_sym_u_DQUOTE] = ACTIONS(1409), + [anon_sym_U_DQUOTE] = ACTIONS(1409), + [anon_sym_u8_DQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [anon_sym_NULL] = ACTIONS(1415), + [anon_sym_nullptr] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1418), + [anon_sym_decltype] = ACTIONS(1421), + [anon_sym_explicit] = ACTIONS(1276), + [anon_sym_typename] = ACTIONS(1424), + [anon_sym_template] = ACTIONS(1427), + [anon_sym_operator] = ACTIONS(1276), + [anon_sym_try] = ACTIONS(1430), + [anon_sym_delete] = ACTIONS(1433), + [anon_sym_throw] = ACTIONS(1436), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_using] = ACTIONS(1276), + [anon_sym_static_assert] = ACTIONS(1276), + [anon_sym_concept] = ACTIONS(1276), + [anon_sym_co_return] = ACTIONS(1439), + [anon_sym_co_yield] = ACTIONS(1442), + [anon_sym_R_DQUOTE] = ACTIONS(1445), + [anon_sym_LR_DQUOTE] = ACTIONS(1445), + [anon_sym_uR_DQUOTE] = ACTIONS(1445), + [anon_sym_UR_DQUOTE] = ACTIONS(1445), + [anon_sym_u8R_DQUOTE] = ACTIONS(1445), + [anon_sym_co_await] = ACTIONS(1448), + [anon_sym_new] = ACTIONS(1451), + [anon_sym_requires] = ACTIONS(1454), + [sym_this] = ACTIONS(1412), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_FORWARD] = ACTIONS(1457), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1457), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_PS_GET] = ACTIONS(1457), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1457), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1457), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1460), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1460), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1460), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1460), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1460), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1460), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1460), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1460), + [anon_sym_MOZ_COLD] = ACTIONS(1460), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1460), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1460), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1460), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1460), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1460), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1460), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1460), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1460), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1460), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1460), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1460), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1460), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1460), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1460), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1460), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1460), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1460), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1460), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1460), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1460), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_NONNULL] = ACTIONS(1460), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1460), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1460), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1460), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1460), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1460), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_NORETURN] = ACTIONS(1460), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1460), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1460), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1460), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1460), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1460), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1460), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1460), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1460), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1460), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1460), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1460), + [anon_sym_MOZ_RAII] = ACTIONS(1460), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1460), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1460), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1460), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1460), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1460), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1460), + }, + [STATE(86)] = { + [sym_declaration] = STATE(83), + [sym_type_definition] = STATE(83), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5518), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(83), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(83), + [sym_labeled_statement] = STATE(83), + [sym_expression_statement] = STATE(83), + [sym_if_statement] = STATE(83), + [sym_switch_statement] = STATE(83), + [sym_while_statement] = STATE(83), + [sym_do_statement] = STATE(83), + [sym_for_statement] = STATE(83), + [sym_return_statement] = STATE(83), + [sym_break_statement] = STATE(83), + [sym_continue_statement] = STATE(83), + [sym_goto_statement] = STATE(83), + [sym_seh_try_statement] = STATE(83), + [sym_seh_leave_statement] = STATE(83), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [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(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1463), + [aux_sym_preproc_def_token1] = ACTIONS(1463), + [aux_sym_preproc_if_token1] = ACTIONS(1463), + [aux_sym_preproc_if_token2] = ACTIONS(1463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1463), + [aux_sym_preproc_else_token1] = ACTIONS(1463), + [aux_sym_preproc_elif_token1] = ACTIONS(1463), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1463), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1463), + [sym_preproc_directive] = ACTIONS(1463), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_typedef] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(175), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(1197), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(1197), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_using] = ACTIONS(1197), - [anon_sym_static_assert] = ACTIONS(1197), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_alone_macro] = ACTIONS(1199), - [aux_sym_alone_macro_call_token1] = ACTIONS(1197), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [87] = { + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(1255), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(1463), + [anon_sym___cdecl] = ACTIONS(1463), + [anon_sym___clrcall] = ACTIONS(1463), + [anon_sym___stdcall] = ACTIONS(1463), + [anon_sym___fastcall] = ACTIONS(1463), + [anon_sym___thiscall] = ACTIONS(1463), + [anon_sym___vectorcall] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_else] = ACTIONS(1463), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(1463), + [anon_sym_default] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(1463), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(1463), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1463), + [anon_sym_static_assert] = ACTIONS(1463), + [anon_sym_concept] = ACTIONS(1463), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(87)] = { [sym_declaration] = STATE(88), [sym_type_definition] = STATE(88), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3015), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5496), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), [sym_compound_statement] = STATE(88), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), [sym_attributed_statement] = STATE(88), [sym_labeled_statement] = STATE(88), [sym_expression_statement] = STATE(88), @@ -55531,30325 +71997,10093 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(88), [sym_continue_statement] = STATE(88), [sym_goto_statement] = STATE(88), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), + [sym_seh_try_statement] = STATE(88), + [sym_seh_leave_statement] = STATE(88), + [sym_expression] = STATE(4823), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8439), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), [sym_for_range_loop] = STATE(88), [sym_co_return_statement] = STATE(88), [sym_co_yield_statement] = STATE(88), [sym_throw_statement] = STATE(88), [sym_try_statement] = STATE(88), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(800), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), [aux_sym_case_statement_repeat1] = STATE(88), - [sym_identifier] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1023), + [ts_builtin_sym_end] = ACTIONS(1267), + [sym_identifier] = ACTIONS(1467), + [aux_sym_preproc_include_token1] = ACTIONS(1265), + [aux_sym_preproc_def_token1] = ACTIONS(1265), + [aux_sym_preproc_if_token1] = ACTIONS(1265), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1265), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1265), + [sym_preproc_directive] = ACTIONS(1265), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [88] = { - [sym_declaration] = STATE(91), - [sym_type_definition] = STATE(91), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3015), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(91), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(91), - [sym_labeled_statement] = STATE(91), - [sym_expression_statement] = STATE(91), - [sym_if_statement] = STATE(91), - [sym_switch_statement] = STATE(91), - [sym_while_statement] = STATE(91), - [sym_do_statement] = STATE(91), - [sym_for_statement] = STATE(91), - [sym_return_statement] = STATE(91), - [sym_break_statement] = STATE(91), - [sym_continue_statement] = STATE(91), - [sym_goto_statement] = STATE(91), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(91), - [sym_co_return_statement] = STATE(91), - [sym_co_yield_statement] = STATE(91), - [sym_throw_statement] = STATE(91), - [sym_try_statement] = STATE(91), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(91), - [sym_identifier] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym___extension__] = ACTIONS(1471), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(1265), + [anon_sym___cdecl] = ACTIONS(1265), + [anon_sym___clrcall] = ACTIONS(1265), + [anon_sym___stdcall] = ACTIONS(1265), + [anon_sym___fastcall] = ACTIONS(1265), + [anon_sym___thiscall] = ACTIONS(1265), + [anon_sym___vectorcall] = ACTIONS(1265), + [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(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_else] = ACTIONS(1265), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(87), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1473), + [anon_sym___leave] = ACTIONS(1475), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(1265), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(1265), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_namespace] = ACTIONS(1265), + [anon_sym_using] = ACTIONS(1265), + [anon_sym_static_assert] = ACTIONS(1265), + [anon_sym_concept] = ACTIONS(1265), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [sym_alone_macro] = ACTIONS(1267), + [aux_sym_alone_macro_call_token1] = ACTIONS(1265), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(88)] = { + [sym_declaration] = STATE(88), + [sym_type_definition] = STATE(88), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5496), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(88), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(88), + [sym_labeled_statement] = STATE(88), + [sym_expression_statement] = STATE(88), + [sym_if_statement] = STATE(88), + [sym_switch_statement] = STATE(88), + [sym_while_statement] = STATE(88), + [sym_do_statement] = STATE(88), + [sym_for_statement] = STATE(88), + [sym_return_statement] = STATE(88), + [sym_break_statement] = STATE(88), + [sym_continue_statement] = STATE(88), + [sym_goto_statement] = STATE(88), + [sym_seh_try_statement] = STATE(88), + [sym_seh_leave_statement] = STATE(88), + [sym_expression] = STATE(4823), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8439), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(88), + [sym_co_return_statement] = STATE(88), + [sym_co_yield_statement] = STATE(88), + [sym_throw_statement] = STATE(88), + [sym_try_statement] = STATE(88), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(800), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(88), + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_identifier] = ACTIONS(1477), + [aux_sym_preproc_include_token1] = ACTIONS(1276), + [aux_sym_preproc_def_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), + [sym_preproc_directive] = ACTIONS(1276), + [anon_sym_LPAREN2] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym___extension__] = ACTIONS(1483), + [anon_sym_typedef] = ACTIONS(1486), + [anon_sym_virtual] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym___attribute] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(1313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___based] = ACTIONS(1276), + [anon_sym___cdecl] = ACTIONS(1276), + [anon_sym___clrcall] = ACTIONS(1276), + [anon_sym___stdcall] = ACTIONS(1276), + [anon_sym___fastcall] = ACTIONS(1276), + [anon_sym___thiscall] = ACTIONS(1276), + [anon_sym___vectorcall] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_inline] = ACTIONS(1307), + [anon_sym___inline] = ACTIONS(1307), + [anon_sym___inline__] = ACTIONS(1307), + [anon_sym___forceinline] = ACTIONS(1307), + [anon_sym_thread_local] = ACTIONS(1307), + [anon_sym___thread] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [anon_sym__Nonnull] = ACTIONS(1331), + [anon_sym_mutable] = ACTIONS(1331), + [anon_sym_constinit] = ACTIONS(1331), + [anon_sym_consteval] = ACTIONS(1331), + [anon_sym_alignas] = ACTIONS(1334), + [anon_sym__Alignas] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1337), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_class] = ACTIONS(1343), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_else] = ACTIONS(1276), + [anon_sym_switch] = ACTIONS(1495), + [anon_sym_case] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1498), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_goto] = ACTIONS(1516), + [anon_sym___try] = ACTIONS(1519), + [anon_sym___leave] = ACTIONS(1522), + [anon_sym_not] = ACTIONS(1284), + [anon_sym_compl] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1385), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym___alignof__] = ACTIONS(1391), + [anon_sym___alignof] = ACTIONS(1391), + [anon_sym__alignof] = ACTIONS(1391), + [anon_sym_alignof] = ACTIONS(1391), + [anon_sym__Alignof] = ACTIONS(1391), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1397), + [anon_sym_asm] = ACTIONS(1400), + [anon_sym___asm__] = ACTIONS(1400), + [anon_sym___asm] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1403), + [anon_sym_L_SQUOTE] = ACTIONS(1406), + [anon_sym_u_SQUOTE] = ACTIONS(1406), + [anon_sym_U_SQUOTE] = ACTIONS(1406), + [anon_sym_u8_SQUOTE] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_L_DQUOTE] = ACTIONS(1409), + [anon_sym_u_DQUOTE] = ACTIONS(1409), + [anon_sym_U_DQUOTE] = ACTIONS(1409), + [anon_sym_u8_DQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [anon_sym_NULL] = ACTIONS(1415), + [anon_sym_nullptr] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1418), + [anon_sym_decltype] = ACTIONS(1421), + [anon_sym_explicit] = ACTIONS(1276), + [anon_sym_typename] = ACTIONS(1424), + [anon_sym_template] = ACTIONS(1427), + [anon_sym_operator] = ACTIONS(1276), + [anon_sym_try] = ACTIONS(1525), + [anon_sym_delete] = ACTIONS(1433), + [anon_sym_throw] = ACTIONS(1528), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_using] = ACTIONS(1276), + [anon_sym_static_assert] = ACTIONS(1276), + [anon_sym_concept] = ACTIONS(1276), + [anon_sym_co_return] = ACTIONS(1531), + [anon_sym_co_yield] = ACTIONS(1534), + [anon_sym_R_DQUOTE] = ACTIONS(1445), + [anon_sym_LR_DQUOTE] = ACTIONS(1445), + [anon_sym_uR_DQUOTE] = ACTIONS(1445), + [anon_sym_UR_DQUOTE] = ACTIONS(1445), + [anon_sym_u8R_DQUOTE] = ACTIONS(1445), + [anon_sym_co_await] = ACTIONS(1448), + [anon_sym_new] = ACTIONS(1451), + [anon_sym_requires] = ACTIONS(1454), + [sym_this] = ACTIONS(1412), + [sym_alone_macro] = ACTIONS(1290), + [aux_sym_alone_macro_call_token1] = ACTIONS(1276), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_FORWARD] = ACTIONS(1457), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1457), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_PS_GET] = ACTIONS(1457), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1457), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1457), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1460), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1460), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1460), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1460), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1460), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1460), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1460), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1460), + [anon_sym_MOZ_COLD] = ACTIONS(1460), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1460), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1460), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1460), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1460), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1460), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1460), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1460), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1460), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1460), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1460), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1460), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1460), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1460), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1460), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1460), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1460), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1460), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1460), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1460), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1460), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_NONNULL] = ACTIONS(1460), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1460), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1460), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1460), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1460), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1460), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_NORETURN] = ACTIONS(1460), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1460), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1460), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1460), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1460), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1460), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1460), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1460), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1460), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1460), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1460), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1460), + [anon_sym_MOZ_RAII] = ACTIONS(1460), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1460), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1460), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1460), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1460), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1460), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1460), + }, + [STATE(89)] = { + [sym_declaration] = STATE(88), + [sym_type_definition] = STATE(88), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5496), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(88), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(88), + [sym_labeled_statement] = STATE(88), + [sym_expression_statement] = STATE(88), + [sym_if_statement] = STATE(88), + [sym_switch_statement] = STATE(88), + [sym_while_statement] = STATE(88), + [sym_do_statement] = STATE(88), + [sym_for_statement] = STATE(88), + [sym_return_statement] = STATE(88), + [sym_break_statement] = STATE(88), + [sym_continue_statement] = STATE(88), + [sym_goto_statement] = STATE(88), + [sym_seh_try_statement] = STATE(88), + [sym_seh_leave_statement] = STATE(88), + [sym_expression] = STATE(4823), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8439), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(88), + [sym_co_return_statement] = STATE(88), + [sym_co_yield_statement] = STATE(88), + [sym_throw_statement] = STATE(88), + [sym_try_statement] = STATE(88), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(800), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(88), + [ts_builtin_sym_end] = ACTIONS(1271), + [sym_identifier] = ACTIONS(1467), + [aux_sym_preproc_include_token1] = ACTIONS(1269), + [aux_sym_preproc_def_token1] = ACTIONS(1269), + [aux_sym_preproc_if_token1] = ACTIONS(1269), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1269), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1269), + [sym_preproc_directive] = ACTIONS(1269), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1205), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [89] = { - [sym_declaration] = STATE(90), - [sym_type_definition] = STATE(90), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3015), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(90), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(90), - [sym_labeled_statement] = STATE(90), - [sym_expression_statement] = STATE(90), - [sym_if_statement] = STATE(90), - [sym_switch_statement] = STATE(90), - [sym_while_statement] = STATE(90), - [sym_do_statement] = STATE(90), - [sym_for_statement] = STATE(90), - [sym_return_statement] = STATE(90), - [sym_break_statement] = STATE(90), - [sym_continue_statement] = STATE(90), - [sym_goto_statement] = STATE(90), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(90), - [sym_co_return_statement] = STATE(90), - [sym_co_yield_statement] = STATE(90), - [sym_throw_statement] = STATE(90), - [sym_try_statement] = STATE(90), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(90), - [sym_identifier] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym___extension__] = ACTIONS(1471), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(1269), + [anon_sym___cdecl] = ACTIONS(1269), + [anon_sym___clrcall] = ACTIONS(1269), + [anon_sym___stdcall] = ACTIONS(1269), + [anon_sym___fastcall] = ACTIONS(1269), + [anon_sym___thiscall] = ACTIONS(1269), + [anon_sym___vectorcall] = ACTIONS(1269), + [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(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_else] = ACTIONS(1269), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(1269), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_while] = ACTIONS(87), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1473), + [anon_sym___leave] = ACTIONS(1475), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(1269), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(1269), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_namespace] = ACTIONS(1269), + [anon_sym_using] = ACTIONS(1269), + [anon_sym_static_assert] = ACTIONS(1269), + [anon_sym_concept] = ACTIONS(1269), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [sym_alone_macro] = ACTIONS(1271), + [aux_sym_alone_macro_call_token1] = ACTIONS(1269), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(90)] = { + [sym_declaration] = STATE(89), + [sym_type_definition] = STATE(89), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5496), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(89), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym_expression] = STATE(4823), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8439), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(89), + [sym_co_return_statement] = STATE(89), + [sym_co_yield_statement] = STATE(89), + [sym_throw_statement] = STATE(89), + [sym_try_statement] = STATE(89), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(800), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(89), + [ts_builtin_sym_end] = ACTIONS(1251), + [sym_identifier] = ACTIONS(1467), + [aux_sym_preproc_include_token1] = ACTIONS(1245), + [aux_sym_preproc_def_token1] = ACTIONS(1245), + [aux_sym_preproc_if_token1] = ACTIONS(1245), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), + [sym_preproc_directive] = ACTIONS(1245), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1201), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [90] = { - [sym_declaration] = STATE(91), - [sym_type_definition] = STATE(91), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3015), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(91), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(91), - [sym_labeled_statement] = STATE(91), - [sym_expression_statement] = STATE(91), - [sym_if_statement] = STATE(91), - [sym_switch_statement] = STATE(91), - [sym_while_statement] = STATE(91), - [sym_do_statement] = STATE(91), - [sym_for_statement] = STATE(91), - [sym_return_statement] = STATE(91), - [sym_break_statement] = STATE(91), - [sym_continue_statement] = STATE(91), - [sym_goto_statement] = STATE(91), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(91), - [sym_co_return_statement] = STATE(91), - [sym_co_yield_statement] = STATE(91), - [sym_throw_statement] = STATE(91), - [sym_try_statement] = STATE(91), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(91), - [sym_identifier] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym___extension__] = ACTIONS(1471), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(1245), + [anon_sym___cdecl] = ACTIONS(1245), + [anon_sym___clrcall] = ACTIONS(1245), + [anon_sym___stdcall] = ACTIONS(1245), + [anon_sym___fastcall] = ACTIONS(1245), + [anon_sym___thiscall] = ACTIONS(1245), + [anon_sym___vectorcall] = ACTIONS(1245), + [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(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_else] = ACTIONS(1245), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(1245), + [anon_sym_default] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(87), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1473), + [anon_sym___leave] = ACTIONS(1475), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(1245), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_namespace] = ACTIONS(1245), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_static_assert] = ACTIONS(1245), + [anon_sym_concept] = ACTIONS(1245), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [sym_alone_macro] = ACTIONS(1251), + [aux_sym_alone_macro_call_token1] = ACTIONS(1245), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(91)] = { + [sym_declaration] = STATE(87), + [sym_type_definition] = STATE(87), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5496), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(87), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(87), + [sym_labeled_statement] = STATE(87), + [sym_expression_statement] = STATE(87), + [sym_if_statement] = STATE(87), + [sym_switch_statement] = STATE(87), + [sym_while_statement] = STATE(87), + [sym_do_statement] = STATE(87), + [sym_for_statement] = STATE(87), + [sym_return_statement] = STATE(87), + [sym_break_statement] = STATE(87), + [sym_continue_statement] = STATE(87), + [sym_goto_statement] = STATE(87), + [sym_seh_try_statement] = STATE(87), + [sym_seh_leave_statement] = STATE(87), + [sym_expression] = STATE(4823), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8439), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(87), + [sym_co_return_statement] = STATE(87), + [sym_co_yield_statement] = STATE(87), + [sym_throw_statement] = STATE(87), + [sym_try_statement] = STATE(87), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(800), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(87), + [ts_builtin_sym_end] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [aux_sym_preproc_include_token1] = ACTIONS(1463), + [aux_sym_preproc_def_token1] = ACTIONS(1463), + [aux_sym_preproc_if_token1] = ACTIONS(1463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1463), + [sym_preproc_directive] = ACTIONS(1463), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [91] = { - [sym_declaration] = STATE(91), - [sym_type_definition] = STATE(91), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3015), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(740), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_compound_statement] = STATE(91), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_attributed_statement] = STATE(91), - [sym_labeled_statement] = STATE(91), - [sym_expression_statement] = STATE(91), - [sym_if_statement] = STATE(91), - [sym_switch_statement] = STATE(91), - [sym_while_statement] = STATE(91), - [sym_do_statement] = STATE(91), - [sym_for_statement] = STATE(91), - [sym_return_statement] = STATE(91), - [sym_break_statement] = STATE(91), - [sym_continue_statement] = STATE(91), - [sym_goto_statement] = STATE(91), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(91), - [sym_co_return_statement] = STATE(91), - [sym_co_yield_statement] = STATE(91), - [sym_throw_statement] = STATE(91), - [sym_try_statement] = STATE(91), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_case_statement_repeat1] = STATE(91), - [sym_identifier] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_AMP] = ACTIONS(1051), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_typedef] = ACTIONS(1408), - [anon_sym_extern] = ACTIONS(1065), - [anon_sym___attribute__] = ACTIONS(1068), - [anon_sym_COLON_COLON] = ACTIONS(1071), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), - [anon_sym___declspec] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1065), - [anon_sym_register] = ACTIONS(1065), - [anon_sym_inline] = ACTIONS(1065), - [anon_sym_thread_local] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_volatile] = ACTIONS(1086), - [anon_sym_restrict] = ACTIONS(1086), - [anon_sym__Atomic] = ACTIONS(1086), - [anon_sym_mutable] = ACTIONS(1086), - [anon_sym_constexpr] = ACTIONS(1086), - [anon_sym_signed] = ACTIONS(1089), - [anon_sym_unsigned] = ACTIONS(1089), - [anon_sym_long] = ACTIONS(1089), - [anon_sym_short] = ACTIONS(1089), - [sym_primitive_type] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1095), - [anon_sym_class] = ACTIONS(1098), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_union] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1420), - [anon_sym_do] = ACTIONS(1423), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1435), - [anon_sym_goto] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1134), - [anon_sym_PLUS_PLUS] = ACTIONS(1134), - [anon_sym_sizeof] = ACTIONS(1137), - [sym_number_literal] = ACTIONS(1140), - [anon_sym_L_SQUOTE] = ACTIONS(1143), - [anon_sym_u_SQUOTE] = ACTIONS(1143), - [anon_sym_U_SQUOTE] = ACTIONS(1143), - [anon_sym_u8_SQUOTE] = ACTIONS(1143), - [anon_sym_SQUOTE] = ACTIONS(1143), - [anon_sym_L_DQUOTE] = ACTIONS(1146), - [anon_sym_u_DQUOTE] = ACTIONS(1146), - [anon_sym_U_DQUOTE] = ACTIONS(1146), - [anon_sym_u8_DQUOTE] = ACTIONS(1146), - [anon_sym_DQUOTE] = ACTIONS(1146), - [sym_true] = ACTIONS(1149), - [sym_false] = ACTIONS(1149), - [sym_null] = ACTIONS(1149), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1152), - [anon_sym_virtual] = ACTIONS(1155), - [sym_auto] = ACTIONS(1158), - [anon_sym_typename] = ACTIONS(1161), - [anon_sym_template] = ACTIONS(1164), - [anon_sym_delete] = ACTIONS(1167), - [anon_sym_throw] = ACTIONS(1441), - [anon_sym_co_return] = ACTIONS(1444), - [anon_sym_co_yield] = ACTIONS(1447), - [anon_sym_try] = ACTIONS(1450), - [anon_sym_co_await] = ACTIONS(1182), - [anon_sym_new] = ACTIONS(1185), - [sym_this] = ACTIONS(1149), - [sym_nullptr] = ACTIONS(1149), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_FORWARD] = ACTIONS(1188), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1188), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_PS_GET] = ACTIONS(1188), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1188), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1188), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1188), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1188), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1191), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1191), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1191), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1191), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1191), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1191), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1191), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1191), - [anon_sym_MOZ_COLD] = ACTIONS(1191), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1191), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1191), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1191), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1191), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1191), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1191), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1191), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1191), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1191), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1191), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1191), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1191), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1191), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1191), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1191), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1191), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1191), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1191), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1191), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1191), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1191), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_NONNULL] = ACTIONS(1191), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1191), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1191), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1191), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1191), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1191), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_NORETURN] = ACTIONS(1191), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1191), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1191), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1191), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1191), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1191), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1191), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1191), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1191), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1191), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1191), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1191), - [anon_sym_MOZ_RAII] = ACTIONS(1191), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1191), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1191), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1191), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1191), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1191), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1191), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1191), - [sym_raw_string_literal] = ACTIONS(1194), - }, - [92] = { - [sym__declaration_modifiers] = STATE(1221), - [sym__declaration_specifiers] = STATE(2306), - [sym_attribute_specifier] = STATE(1221), - [sym_attribute_declaration] = STATE(1221), - [sym_ms_declspec_modifier] = STATE(1221), - [sym_storage_class_specifier] = STATE(1221), - [sym_type_qualifier] = STATE(1221), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_parameter_declaration] = STATE(4367), - [sym__expression] = STATE(2735), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4346), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1221), - [sym_dependent_type] = STATE(1358), - [sym_optional_parameter_declaration] = STATE(4367), - [sym_variadic_parameter_declaration] = STATE(4367), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3535), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1221), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(1453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), - [anon_sym_RPAREN] = ACTIONS(1457), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym___extension__] = ACTIONS(1471), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(1463), + [anon_sym___cdecl] = ACTIONS(1463), + [anon_sym___clrcall] = ACTIONS(1463), + [anon_sym___stdcall] = ACTIONS(1463), + [anon_sym___fastcall] = ACTIONS(1463), + [anon_sym___thiscall] = ACTIONS(1463), + [anon_sym___vectorcall] = ACTIONS(1463), + [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(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_else] = ACTIONS(1463), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(1463), + [anon_sym_default] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(87), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1473), + [anon_sym___leave] = ACTIONS(1475), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(1463), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(1463), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_namespace] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1463), + [anon_sym_static_assert] = ACTIONS(1463), + [anon_sym_concept] = ACTIONS(1463), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [sym_alone_macro] = ACTIONS(1465), + [aux_sym_alone_macro_call_token1] = ACTIONS(1463), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(92)] = { + [sym_declaration] = STATE(94), + [sym_type_definition] = STATE(94), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5473), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(94), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(94), + [sym_labeled_statement] = STATE(94), + [sym_expression_statement] = STATE(94), + [sym_if_statement] = STATE(94), + [sym_switch_statement] = STATE(94), + [sym_while_statement] = STATE(94), + [sym_do_statement] = STATE(94), + [sym_for_statement] = STATE(94), + [sym_return_statement] = STATE(94), + [sym_break_statement] = STATE(94), + [sym_continue_statement] = STATE(94), + [sym_goto_statement] = STATE(94), + [sym_seh_try_statement] = STATE(94), + [sym_seh_leave_statement] = STATE(94), + [sym_expression] = STATE(4855), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8847), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(94), + [sym_co_return_statement] = STATE(94), + [sym_co_yield_statement] = STATE(94), + [sym_throw_statement] = STATE(94), + [sym_try_statement] = STATE(94), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(845), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(1537), + [aux_sym_preproc_include_token1] = ACTIONS(1265), + [aux_sym_preproc_def_token1] = ACTIONS(1265), + [aux_sym_preproc_if_token1] = ACTIONS(1265), + [aux_sym_preproc_if_token2] = ACTIONS(1265), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1265), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1265), + [sym_preproc_directive] = ACTIONS(1265), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(1463), - [anon_sym_class] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_union] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [93] = { - [sym__declaration_modifiers] = STATE(1221), - [sym__declaration_specifiers] = STATE(2306), - [sym_attribute_specifier] = STATE(1221), - [sym_attribute_declaration] = STATE(1221), - [sym_ms_declspec_modifier] = STATE(1221), - [sym_storage_class_specifier] = STATE(1221), - [sym_type_qualifier] = STATE(1221), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_parameter_declaration] = STATE(4277), - [sym__expression] = STATE(2735), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4346), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1221), - [sym_dependent_type] = STATE(1358), - [sym_optional_parameter_declaration] = STATE(4277), - [sym_variadic_parameter_declaration] = STATE(4277), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3535), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1221), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(1453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1473), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym___extension__] = ACTIONS(1539), + [anon_sym_typedef] = ACTIONS(646), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(1265), + [anon_sym___cdecl] = ACTIONS(1265), + [anon_sym___clrcall] = ACTIONS(1265), + [anon_sym___stdcall] = ACTIONS(1265), + [anon_sym___fastcall] = ACTIONS(1265), + [anon_sym___thiscall] = ACTIONS(1265), + [anon_sym___vectorcall] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(654), + [anon_sym_else] = ACTIONS(1265), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), + [anon_sym___try] = ACTIONS(676), + [anon_sym___leave] = ACTIONS(678), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(1265), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(1265), + [anon_sym_try] = ACTIONS(682), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(684), + [anon_sym_namespace] = ACTIONS(1265), + [anon_sym_using] = ACTIONS(1265), + [anon_sym_static_assert] = ACTIONS(1265), + [anon_sym_concept] = ACTIONS(1265), + [anon_sym_co_return] = ACTIONS(694), + [anon_sym_co_yield] = ACTIONS(696), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(93)] = { + [sym_declaration] = STATE(94), + [sym_type_definition] = STATE(94), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5473), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(94), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(94), + [sym_labeled_statement] = STATE(94), + [sym_expression_statement] = STATE(94), + [sym_if_statement] = STATE(94), + [sym_switch_statement] = STATE(94), + [sym_while_statement] = STATE(94), + [sym_do_statement] = STATE(94), + [sym_for_statement] = STATE(94), + [sym_return_statement] = STATE(94), + [sym_break_statement] = STATE(94), + [sym_continue_statement] = STATE(94), + [sym_goto_statement] = STATE(94), + [sym_seh_try_statement] = STATE(94), + [sym_seh_leave_statement] = STATE(94), + [sym_expression] = STATE(4855), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8847), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(94), + [sym_co_return_statement] = STATE(94), + [sym_co_yield_statement] = STATE(94), + [sym_throw_statement] = STATE(94), + [sym_try_statement] = STATE(94), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(845), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(1537), + [aux_sym_preproc_include_token1] = ACTIONS(1269), + [aux_sym_preproc_def_token1] = ACTIONS(1269), + [aux_sym_preproc_if_token1] = ACTIONS(1269), + [aux_sym_preproc_if_token2] = ACTIONS(1269), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1269), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1269), + [sym_preproc_directive] = ACTIONS(1269), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(1463), - [anon_sym_class] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_union] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [94] = { - [sym_declaration] = STATE(1734), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(2956), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_expression_statement] = STATE(1734), - [sym__expression] = STATE(2733), - [sym_comma_expression] = STATE(4831), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_condition_declaration] = STATE(4936), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(1477), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym___extension__] = ACTIONS(1539), + [anon_sym_typedef] = ACTIONS(646), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(1269), + [anon_sym___cdecl] = ACTIONS(1269), + [anon_sym___clrcall] = ACTIONS(1269), + [anon_sym___stdcall] = ACTIONS(1269), + [anon_sym___fastcall] = ACTIONS(1269), + [anon_sym___thiscall] = ACTIONS(1269), + [anon_sym___vectorcall] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(654), + [anon_sym_else] = ACTIONS(1269), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(1269), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), + [anon_sym___try] = ACTIONS(676), + [anon_sym___leave] = ACTIONS(678), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(1269), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(1269), + [anon_sym_try] = ACTIONS(682), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(684), + [anon_sym_namespace] = ACTIONS(1269), + [anon_sym_using] = ACTIONS(1269), + [anon_sym_static_assert] = ACTIONS(1269), + [anon_sym_concept] = ACTIONS(1269), + [anon_sym_co_return] = ACTIONS(694), + [anon_sym_co_yield] = ACTIONS(696), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(94)] = { + [sym_declaration] = STATE(94), + [sym_type_definition] = STATE(94), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5473), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(94), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(94), + [sym_labeled_statement] = STATE(94), + [sym_expression_statement] = STATE(94), + [sym_if_statement] = STATE(94), + [sym_switch_statement] = STATE(94), + [sym_while_statement] = STATE(94), + [sym_do_statement] = STATE(94), + [sym_for_statement] = STATE(94), + [sym_return_statement] = STATE(94), + [sym_break_statement] = STATE(94), + [sym_continue_statement] = STATE(94), + [sym_goto_statement] = STATE(94), + [sym_seh_try_statement] = STATE(94), + [sym_seh_leave_statement] = STATE(94), + [sym_expression] = STATE(4855), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8847), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(94), + [sym_co_return_statement] = STATE(94), + [sym_co_yield_statement] = STATE(94), + [sym_throw_statement] = STATE(94), + [sym_try_statement] = STATE(94), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(845), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(1541), + [aux_sym_preproc_include_token1] = ACTIONS(1276), + [aux_sym_preproc_def_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token2] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), + [sym_preproc_directive] = ACTIONS(1276), + [anon_sym_LPAREN2] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym___extension__] = ACTIONS(1547), + [anon_sym_typedef] = ACTIONS(1550), + [anon_sym_virtual] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym___attribute] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(1313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___based] = ACTIONS(1276), + [anon_sym___cdecl] = ACTIONS(1276), + [anon_sym___clrcall] = ACTIONS(1276), + [anon_sym___stdcall] = ACTIONS(1276), + [anon_sym___fastcall] = ACTIONS(1276), + [anon_sym___thiscall] = ACTIONS(1276), + [anon_sym___vectorcall] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_inline] = ACTIONS(1307), + [anon_sym___inline] = ACTIONS(1307), + [anon_sym___inline__] = ACTIONS(1307), + [anon_sym___forceinline] = ACTIONS(1307), + [anon_sym_thread_local] = ACTIONS(1307), + [anon_sym___thread] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [anon_sym__Nonnull] = ACTIONS(1331), + [anon_sym_mutable] = ACTIONS(1331), + [anon_sym_constinit] = ACTIONS(1331), + [anon_sym_consteval] = ACTIONS(1331), + [anon_sym_alignas] = ACTIONS(1334), + [anon_sym__Alignas] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1337), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_class] = ACTIONS(1343), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1556), + [anon_sym_else] = ACTIONS(1276), + [anon_sym_switch] = ACTIONS(1559), + [anon_sym_case] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1562), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1568), + [anon_sym_return] = ACTIONS(1571), + [anon_sym_break] = ACTIONS(1574), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_goto] = ACTIONS(1580), + [anon_sym___try] = ACTIONS(1583), + [anon_sym___leave] = ACTIONS(1586), + [anon_sym_not] = ACTIONS(1284), + [anon_sym_compl] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1385), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym___alignof__] = ACTIONS(1391), + [anon_sym___alignof] = ACTIONS(1391), + [anon_sym__alignof] = ACTIONS(1391), + [anon_sym_alignof] = ACTIONS(1391), + [anon_sym__Alignof] = ACTIONS(1391), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1397), + [anon_sym_asm] = ACTIONS(1400), + [anon_sym___asm__] = ACTIONS(1400), + [anon_sym___asm] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1403), + [anon_sym_L_SQUOTE] = ACTIONS(1406), + [anon_sym_u_SQUOTE] = ACTIONS(1406), + [anon_sym_U_SQUOTE] = ACTIONS(1406), + [anon_sym_u8_SQUOTE] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_L_DQUOTE] = ACTIONS(1409), + [anon_sym_u_DQUOTE] = ACTIONS(1409), + [anon_sym_U_DQUOTE] = ACTIONS(1409), + [anon_sym_u8_DQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [anon_sym_NULL] = ACTIONS(1415), + [anon_sym_nullptr] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1418), + [anon_sym_decltype] = ACTIONS(1421), + [anon_sym_explicit] = ACTIONS(1276), + [anon_sym_typename] = ACTIONS(1424), + [anon_sym_template] = ACTIONS(1427), + [anon_sym_operator] = ACTIONS(1276), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_delete] = ACTIONS(1433), + [anon_sym_throw] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_using] = ACTIONS(1276), + [anon_sym_static_assert] = ACTIONS(1276), + [anon_sym_concept] = ACTIONS(1276), + [anon_sym_co_return] = ACTIONS(1595), + [anon_sym_co_yield] = ACTIONS(1598), + [anon_sym_R_DQUOTE] = ACTIONS(1445), + [anon_sym_LR_DQUOTE] = ACTIONS(1445), + [anon_sym_uR_DQUOTE] = ACTIONS(1445), + [anon_sym_UR_DQUOTE] = ACTIONS(1445), + [anon_sym_u8R_DQUOTE] = ACTIONS(1445), + [anon_sym_co_await] = ACTIONS(1448), + [anon_sym_new] = ACTIONS(1451), + [anon_sym_requires] = ACTIONS(1454), + [sym_this] = ACTIONS(1412), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_FORWARD] = ACTIONS(1457), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1457), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_PS_GET] = ACTIONS(1457), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1457), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1457), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1460), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1460), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1460), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1460), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1460), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1460), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1460), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1460), + [anon_sym_MOZ_COLD] = ACTIONS(1460), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1460), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1460), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1460), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1460), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1460), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1460), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1460), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1460), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1460), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1460), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1460), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1460), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1460), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1460), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1460), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1460), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1460), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1460), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1460), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1460), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_NONNULL] = ACTIONS(1460), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1460), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1460), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1460), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1460), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1460), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_NORETURN] = ACTIONS(1460), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1460), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1460), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1460), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1460), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1460), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1460), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1460), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1460), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1460), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1460), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1460), + [anon_sym_MOZ_RAII] = ACTIONS(1460), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1460), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1460), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1460), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1460), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1460), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1460), + }, + [STATE(95)] = { + [sym_declaration] = STATE(97), + [sym_type_definition] = STATE(97), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5515), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(97), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(97), + [sym_labeled_statement] = STATE(97), + [sym_expression_statement] = STATE(97), + [sym_if_statement] = STATE(97), + [sym_switch_statement] = STATE(97), + [sym_while_statement] = STATE(97), + [sym_do_statement] = STATE(97), + [sym_for_statement] = STATE(97), + [sym_return_statement] = STATE(97), + [sym_break_statement] = STATE(97), + [sym_continue_statement] = STATE(97), + [sym_goto_statement] = STATE(97), + [sym_seh_try_statement] = STATE(97), + [sym_seh_leave_statement] = STATE(97), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(97), + [sym_co_return_statement] = STATE(97), + [sym_co_yield_statement] = STATE(97), + [sym_throw_statement] = STATE(97), + [sym_try_statement] = STATE(97), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(97), + [sym_identifier] = ACTIONS(1601), + [aux_sym_preproc_include_token1] = ACTIONS(1265), + [aux_sym_preproc_def_token1] = ACTIONS(1265), + [aux_sym_preproc_if_token1] = ACTIONS(1265), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1265), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1265), + [sym_preproc_directive] = ACTIONS(1265), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [95] = { - [sym_declaration] = STATE(1751), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(2956), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_expression_statement] = STATE(1751), - [sym__expression] = STATE(2765), - [sym_comma_expression] = STATE(4814), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_condition_declaration] = STATE(4849), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(1477), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(1603), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(1265), + [anon_sym___cdecl] = ACTIONS(1265), + [anon_sym___clrcall] = ACTIONS(1265), + [anon_sym___stdcall] = ACTIONS(1265), + [anon_sym___fastcall] = ACTIONS(1265), + [anon_sym___thiscall] = ACTIONS(1265), + [anon_sym___vectorcall] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_else] = ACTIONS(1265), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(1265), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(1265), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_namespace] = ACTIONS(1265), + [anon_sym_using] = ACTIONS(1265), + [anon_sym_static_assert] = ACTIONS(1265), + [anon_sym_concept] = ACTIONS(1265), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(96)] = { + [sym_declaration] = STATE(97), + [sym_type_definition] = STATE(97), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5515), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(97), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(97), + [sym_labeled_statement] = STATE(97), + [sym_expression_statement] = STATE(97), + [sym_if_statement] = STATE(97), + [sym_switch_statement] = STATE(97), + [sym_while_statement] = STATE(97), + [sym_do_statement] = STATE(97), + [sym_for_statement] = STATE(97), + [sym_return_statement] = STATE(97), + [sym_break_statement] = STATE(97), + [sym_continue_statement] = STATE(97), + [sym_goto_statement] = STATE(97), + [sym_seh_try_statement] = STATE(97), + [sym_seh_leave_statement] = STATE(97), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(97), + [sym_co_return_statement] = STATE(97), + [sym_co_yield_statement] = STATE(97), + [sym_throw_statement] = STATE(97), + [sym_try_statement] = STATE(97), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(97), + [sym_identifier] = ACTIONS(1601), + [aux_sym_preproc_include_token1] = ACTIONS(1269), + [aux_sym_preproc_def_token1] = ACTIONS(1269), + [aux_sym_preproc_if_token1] = ACTIONS(1269), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1269), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1269), + [sym_preproc_directive] = ACTIONS(1269), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [96] = { - [sym_declaration] = STATE(1692), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(2955), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym__expression] = STATE(2868), - [sym_comma_expression] = STATE(5023), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(1477), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(1603), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(1269), + [anon_sym___cdecl] = ACTIONS(1269), + [anon_sym___clrcall] = ACTIONS(1269), + [anon_sym___stdcall] = ACTIONS(1269), + [anon_sym___fastcall] = ACTIONS(1269), + [anon_sym___thiscall] = ACTIONS(1269), + [anon_sym___vectorcall] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_RBRACE] = ACTIONS(1271), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_else] = ACTIONS(1269), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(1269), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(1269), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(1269), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_namespace] = ACTIONS(1269), + [anon_sym_using] = ACTIONS(1269), + [anon_sym_static_assert] = ACTIONS(1269), + [anon_sym_concept] = ACTIONS(1269), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(97)] = { + [sym_declaration] = STATE(97), + [sym_type_definition] = STATE(97), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5515), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(97), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(97), + [sym_labeled_statement] = STATE(97), + [sym_expression_statement] = STATE(97), + [sym_if_statement] = STATE(97), + [sym_switch_statement] = STATE(97), + [sym_while_statement] = STATE(97), + [sym_do_statement] = STATE(97), + [sym_for_statement] = STATE(97), + [sym_return_statement] = STATE(97), + [sym_break_statement] = STATE(97), + [sym_continue_statement] = STATE(97), + [sym_goto_statement] = STATE(97), + [sym_seh_try_statement] = STATE(97), + [sym_seh_leave_statement] = STATE(97), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(97), + [sym_co_return_statement] = STATE(97), + [sym_co_yield_statement] = STATE(97), + [sym_throw_statement] = STATE(97), + [sym_try_statement] = STATE(97), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(97), + [sym_identifier] = ACTIONS(1605), + [aux_sym_preproc_include_token1] = ACTIONS(1276), + [aux_sym_preproc_def_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), + [sym_preproc_directive] = ACTIONS(1276), + [anon_sym_LPAREN2] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym___extension__] = ACTIONS(1611), + [anon_sym_typedef] = ACTIONS(1614), + [anon_sym_virtual] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym___attribute] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(1313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___based] = ACTIONS(1276), + [anon_sym___cdecl] = ACTIONS(1276), + [anon_sym___clrcall] = ACTIONS(1276), + [anon_sym___stdcall] = ACTIONS(1276), + [anon_sym___fastcall] = ACTIONS(1276), + [anon_sym___thiscall] = ACTIONS(1276), + [anon_sym___vectorcall] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_inline] = ACTIONS(1307), + [anon_sym___inline] = ACTIONS(1307), + [anon_sym___inline__] = ACTIONS(1307), + [anon_sym___forceinline] = ACTIONS(1307), + [anon_sym_thread_local] = ACTIONS(1307), + [anon_sym___thread] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [anon_sym__Nonnull] = ACTIONS(1331), + [anon_sym_mutable] = ACTIONS(1331), + [anon_sym_constinit] = ACTIONS(1331), + [anon_sym_consteval] = ACTIONS(1331), + [anon_sym_alignas] = ACTIONS(1334), + [anon_sym__Alignas] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1337), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_class] = ACTIONS(1343), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1620), + [anon_sym_else] = ACTIONS(1276), + [anon_sym_switch] = ACTIONS(1623), + [anon_sym_case] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1626), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1632), + [anon_sym_return] = ACTIONS(1635), + [anon_sym_break] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_goto] = ACTIONS(1644), + [anon_sym___try] = ACTIONS(1647), + [anon_sym___leave] = ACTIONS(1650), + [anon_sym_not] = ACTIONS(1284), + [anon_sym_compl] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1385), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym___alignof__] = ACTIONS(1391), + [anon_sym___alignof] = ACTIONS(1391), + [anon_sym__alignof] = ACTIONS(1391), + [anon_sym_alignof] = ACTIONS(1391), + [anon_sym__Alignof] = ACTIONS(1391), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1397), + [anon_sym_asm] = ACTIONS(1400), + [anon_sym___asm__] = ACTIONS(1400), + [anon_sym___asm] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1403), + [anon_sym_L_SQUOTE] = ACTIONS(1406), + [anon_sym_u_SQUOTE] = ACTIONS(1406), + [anon_sym_U_SQUOTE] = ACTIONS(1406), + [anon_sym_u8_SQUOTE] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_L_DQUOTE] = ACTIONS(1409), + [anon_sym_u_DQUOTE] = ACTIONS(1409), + [anon_sym_U_DQUOTE] = ACTIONS(1409), + [anon_sym_u8_DQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [anon_sym_NULL] = ACTIONS(1415), + [anon_sym_nullptr] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1418), + [anon_sym_decltype] = ACTIONS(1421), + [anon_sym_explicit] = ACTIONS(1276), + [anon_sym_typename] = ACTIONS(1424), + [anon_sym_template] = ACTIONS(1427), + [anon_sym_operator] = ACTIONS(1276), + [anon_sym_try] = ACTIONS(1653), + [anon_sym_delete] = ACTIONS(1433), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_namespace] = ACTIONS(1276), + [anon_sym_using] = ACTIONS(1276), + [anon_sym_static_assert] = ACTIONS(1276), + [anon_sym_concept] = ACTIONS(1276), + [anon_sym_co_return] = ACTIONS(1659), + [anon_sym_co_yield] = ACTIONS(1662), + [anon_sym_R_DQUOTE] = ACTIONS(1445), + [anon_sym_LR_DQUOTE] = ACTIONS(1445), + [anon_sym_uR_DQUOTE] = ACTIONS(1445), + [anon_sym_UR_DQUOTE] = ACTIONS(1445), + [anon_sym_u8R_DQUOTE] = ACTIONS(1445), + [anon_sym_co_await] = ACTIONS(1448), + [anon_sym_new] = ACTIONS(1451), + [anon_sym_requires] = ACTIONS(1454), + [sym_this] = ACTIONS(1412), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_FORWARD] = ACTIONS(1457), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1457), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_PS_GET] = ACTIONS(1457), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1457), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1457), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1460), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1460), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1460), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1460), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1460), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1460), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1460), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1460), + [anon_sym_MOZ_COLD] = ACTIONS(1460), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1460), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1460), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1460), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1460), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1460), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1460), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1460), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1460), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1460), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1460), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1460), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1460), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1460), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1460), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1460), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1460), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1460), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1460), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1460), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1460), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_NONNULL] = ACTIONS(1460), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1460), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1460), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1460), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1460), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1460), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_NORETURN] = ACTIONS(1460), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1460), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1460), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1460), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1460), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1460), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1460), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1460), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1460), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1460), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1460), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1460), + [anon_sym_MOZ_RAII] = ACTIONS(1460), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1460), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1460), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1460), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1460), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1460), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1460), + }, + [STATE(98)] = { + [sym_declaration] = STATE(95), + [sym_type_definition] = STATE(95), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5515), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(95), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(95), + [sym_labeled_statement] = STATE(95), + [sym_expression_statement] = STATE(95), + [sym_if_statement] = STATE(95), + [sym_switch_statement] = STATE(95), + [sym_while_statement] = STATE(95), + [sym_do_statement] = STATE(95), + [sym_for_statement] = STATE(95), + [sym_return_statement] = STATE(95), + [sym_break_statement] = STATE(95), + [sym_continue_statement] = STATE(95), + [sym_goto_statement] = STATE(95), + [sym_seh_try_statement] = STATE(95), + [sym_seh_leave_statement] = STATE(95), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(95), + [sym_co_return_statement] = STATE(95), + [sym_co_yield_statement] = STATE(95), + [sym_throw_statement] = STATE(95), + [sym_try_statement] = STATE(95), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(95), + [sym_identifier] = ACTIONS(1601), + [aux_sym_preproc_include_token1] = ACTIONS(1463), + [aux_sym_preproc_def_token1] = ACTIONS(1463), + [aux_sym_preproc_if_token1] = ACTIONS(1463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1463), + [sym_preproc_directive] = ACTIONS(1463), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [97] = { - [sym_declaration] = STATE(1626), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(2941), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym__expression] = STATE(2873), - [sym_comma_expression] = STATE(5164), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(1477), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(1603), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(1463), + [anon_sym___cdecl] = ACTIONS(1463), + [anon_sym___clrcall] = ACTIONS(1463), + [anon_sym___stdcall] = ACTIONS(1463), + [anon_sym___fastcall] = ACTIONS(1463), + [anon_sym___thiscall] = ACTIONS(1463), + [anon_sym___vectorcall] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_else] = ACTIONS(1463), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(1463), + [anon_sym_default] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(1463), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(1463), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_namespace] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1463), + [anon_sym_static_assert] = ACTIONS(1463), + [anon_sym_concept] = ACTIONS(1463), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(99)] = { + [sym_declaration] = STATE(92), + [sym_type_definition] = STATE(92), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5473), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(92), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(92), + [sym_labeled_statement] = STATE(92), + [sym_expression_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_switch_statement] = STATE(92), + [sym_while_statement] = STATE(92), + [sym_do_statement] = STATE(92), + [sym_for_statement] = STATE(92), + [sym_return_statement] = STATE(92), + [sym_break_statement] = STATE(92), + [sym_continue_statement] = STATE(92), + [sym_goto_statement] = STATE(92), + [sym_seh_try_statement] = STATE(92), + [sym_seh_leave_statement] = STATE(92), + [sym_expression] = STATE(4855), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8847), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(92), + [sym_co_return_statement] = STATE(92), + [sym_co_yield_statement] = STATE(92), + [sym_throw_statement] = STATE(92), + [sym_try_statement] = STATE(92), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(845), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(1537), + [aux_sym_preproc_include_token1] = ACTIONS(1463), + [aux_sym_preproc_def_token1] = ACTIONS(1463), + [aux_sym_preproc_if_token1] = ACTIONS(1463), + [aux_sym_preproc_if_token2] = ACTIONS(1463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1463), + [sym_preproc_directive] = ACTIONS(1463), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [98] = { - [sym_declaration] = STATE(1663), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3060), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym__expression] = STATE(2824), - [sym_comma_expression] = STATE(5199), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(1477), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym___extension__] = ACTIONS(1539), + [anon_sym_typedef] = ACTIONS(646), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(1463), + [anon_sym___cdecl] = ACTIONS(1463), + [anon_sym___clrcall] = ACTIONS(1463), + [anon_sym___stdcall] = ACTIONS(1463), + [anon_sym___fastcall] = ACTIONS(1463), + [anon_sym___thiscall] = ACTIONS(1463), + [anon_sym___vectorcall] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(654), + [anon_sym_else] = ACTIONS(1463), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(1463), + [anon_sym_default] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), + [anon_sym___try] = ACTIONS(676), + [anon_sym___leave] = ACTIONS(678), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(1463), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(1463), + [anon_sym_try] = ACTIONS(682), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(684), + [anon_sym_namespace] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1463), + [anon_sym_static_assert] = ACTIONS(1463), + [anon_sym_concept] = ACTIONS(1463), + [anon_sym_co_return] = ACTIONS(694), + [anon_sym_co_yield] = ACTIONS(696), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(100)] = { + [sym_declaration] = STATE(93), + [sym_type_definition] = STATE(93), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5473), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(93), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(93), + [sym_labeled_statement] = STATE(93), + [sym_expression_statement] = STATE(93), + [sym_if_statement] = STATE(93), + [sym_switch_statement] = STATE(93), + [sym_while_statement] = STATE(93), + [sym_do_statement] = STATE(93), + [sym_for_statement] = STATE(93), + [sym_return_statement] = STATE(93), + [sym_break_statement] = STATE(93), + [sym_continue_statement] = STATE(93), + [sym_goto_statement] = STATE(93), + [sym_seh_try_statement] = STATE(93), + [sym_seh_leave_statement] = STATE(93), + [sym_expression] = STATE(4855), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8847), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(93), + [sym_co_return_statement] = STATE(93), + [sym_co_yield_statement] = STATE(93), + [sym_throw_statement] = STATE(93), + [sym_try_statement] = STATE(93), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(845), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(1537), + [aux_sym_preproc_include_token1] = ACTIONS(1245), + [aux_sym_preproc_def_token1] = ACTIONS(1245), + [aux_sym_preproc_if_token1] = ACTIONS(1245), + [aux_sym_preproc_if_token2] = ACTIONS(1245), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), + [sym_preproc_directive] = ACTIONS(1245), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [99] = { - [sym_declaration] = STATE(1594), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3080), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym__expression] = STATE(2845), - [sym_comma_expression] = STATE(5136), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(1477), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym___extension__] = ACTIONS(1539), + [anon_sym_typedef] = ACTIONS(646), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(1245), + [anon_sym___cdecl] = ACTIONS(1245), + [anon_sym___clrcall] = ACTIONS(1245), + [anon_sym___stdcall] = ACTIONS(1245), + [anon_sym___fastcall] = ACTIONS(1245), + [anon_sym___thiscall] = ACTIONS(1245), + [anon_sym___vectorcall] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(654), + [anon_sym_else] = ACTIONS(1245), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(1245), + [anon_sym_default] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), + [anon_sym___try] = ACTIONS(676), + [anon_sym___leave] = ACTIONS(678), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(1245), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(682), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(684), + [anon_sym_namespace] = ACTIONS(1245), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_static_assert] = ACTIONS(1245), + [anon_sym_concept] = ACTIONS(1245), + [anon_sym_co_return] = ACTIONS(694), + [anon_sym_co_yield] = ACTIONS(696), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(101)] = { + [sym_declaration] = STATE(96), + [sym_type_definition] = STATE(96), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5515), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(96), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(96), + [sym_labeled_statement] = STATE(96), + [sym_expression_statement] = STATE(96), + [sym_if_statement] = STATE(96), + [sym_switch_statement] = STATE(96), + [sym_while_statement] = STATE(96), + [sym_do_statement] = STATE(96), + [sym_for_statement] = STATE(96), + [sym_return_statement] = STATE(96), + [sym_break_statement] = STATE(96), + [sym_continue_statement] = STATE(96), + [sym_goto_statement] = STATE(96), + [sym_seh_try_statement] = STATE(96), + [sym_seh_leave_statement] = STATE(96), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(96), + [sym_co_return_statement] = STATE(96), + [sym_co_yield_statement] = STATE(96), + [sym_throw_statement] = STATE(96), + [sym_try_statement] = STATE(96), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(96), + [sym_identifier] = ACTIONS(1601), + [aux_sym_preproc_include_token1] = ACTIONS(1245), + [aux_sym_preproc_def_token1] = ACTIONS(1245), + [aux_sym_preproc_if_token1] = ACTIONS(1245), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), + [sym_preproc_directive] = ACTIONS(1245), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1487), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [100] = { - [sym_declaration] = STATE(1631), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3020), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym__expression] = STATE(2833), - [sym_comma_expression] = STATE(5187), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(1477), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(1603), + [anon_sym_typedef] = ACTIONS(187), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(1245), + [anon_sym___cdecl] = ACTIONS(1245), + [anon_sym___clrcall] = ACTIONS(1245), + [anon_sym___stdcall] = ACTIONS(1245), + [anon_sym___fastcall] = ACTIONS(1245), + [anon_sym___thiscall] = ACTIONS(1245), + [anon_sym___vectorcall] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_else] = ACTIONS(1245), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(1245), + [anon_sym_default] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(1245), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_namespace] = ACTIONS(1245), + [anon_sym_using] = ACTIONS(1245), + [anon_sym_static_assert] = ACTIONS(1245), + [anon_sym_concept] = ACTIONS(1245), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(102)] = { + [sym_declaration] = STATE(392), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5515), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(392), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4666), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7960), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1601), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [101] = { - [sym_declaration] = STATE(1672), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(2972), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym__expression] = STATE(2885), - [sym_comma_expression] = STATE(4911), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4792), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1476), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3532), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(1477), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(1477), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(1665), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(191), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(103)] = { + [sym_declaration] = STATE(695), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5509), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(692), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(692), + [sym_statement] = STATE(695), + [sym_labeled_statement] = STATE(692), + [sym_expression_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_switch_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_do_statement] = STATE(692), + [sym_for_statement] = STATE(692), + [sym_return_statement] = STATE(692), + [sym_break_statement] = STATE(692), + [sym_continue_statement] = STATE(692), + [sym_goto_statement] = STATE(692), + [sym_seh_try_statement] = STATE(692), + [sym_seh_leave_statement] = STATE(692), + [sym_expression] = STATE(4912), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8611), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(692), + [sym_co_return_statement] = STATE(692), + [sym_co_yield_statement] = STATE(692), + [sym_throw_statement] = STATE(692), + [sym_try_statement] = STATE(692), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(846), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - [sym_raw_string_literal] = ACTIONS(147), - }, - [102] = { - [sym_catch_clause] = STATE(102), - [aux_sym_try_statement_repeat1] = STATE(102), - [sym_identifier] = ACTIONS(1493), - [aux_sym_preproc_include_token1] = ACTIONS(1493), - [aux_sym_preproc_def_token1] = ACTIONS(1493), - [aux_sym_preproc_if_token1] = ACTIONS(1493), - [aux_sym_preproc_if_token2] = ACTIONS(1493), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1493), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1493), - [aux_sym_preproc_else_token1] = ACTIONS(1493), - [aux_sym_preproc_elif_token1] = ACTIONS(1493), - [sym_preproc_directive] = ACTIONS(1493), - [anon_sym_LPAREN2] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_typedef] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym___attribute__] = ACTIONS(1493), - [anon_sym_COLON_COLON] = ACTIONS(1495), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1495), - [anon_sym___declspec] = ACTIONS(1493), - [anon_sym___based] = ACTIONS(1493), - [anon_sym___cdecl] = ACTIONS(1493), - [anon_sym___clrcall] = ACTIONS(1493), - [anon_sym___stdcall] = ACTIONS(1493), - [anon_sym___fastcall] = ACTIONS(1493), - [anon_sym___thiscall] = ACTIONS(1493), - [anon_sym___vectorcall] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1493), - [anon_sym_register] = ACTIONS(1493), - [anon_sym_inline] = ACTIONS(1493), - [anon_sym_thread_local] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_volatile] = ACTIONS(1493), - [anon_sym_restrict] = ACTIONS(1493), - [anon_sym__Atomic] = ACTIONS(1493), - [anon_sym_mutable] = ACTIONS(1493), - [anon_sym_constexpr] = ACTIONS(1493), - [anon_sym_signed] = ACTIONS(1493), - [anon_sym_unsigned] = ACTIONS(1493), - [anon_sym_long] = ACTIONS(1493), - [anon_sym_short] = ACTIONS(1493), - [sym_primitive_type] = ACTIONS(1493), - [anon_sym_enum] = ACTIONS(1493), - [anon_sym_class] = ACTIONS(1493), - [anon_sym_struct] = ACTIONS(1493), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_else] = ACTIONS(1493), - [anon_sym_switch] = ACTIONS(1493), - [anon_sym_case] = ACTIONS(1493), - [anon_sym_default] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_do] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_goto] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_sizeof] = ACTIONS(1493), - [sym_number_literal] = ACTIONS(1495), - [anon_sym_L_SQUOTE] = ACTIONS(1495), - [anon_sym_u_SQUOTE] = ACTIONS(1495), - [anon_sym_U_SQUOTE] = ACTIONS(1495), - [anon_sym_u8_SQUOTE] = ACTIONS(1495), - [anon_sym_SQUOTE] = ACTIONS(1495), - [anon_sym_L_DQUOTE] = ACTIONS(1495), - [anon_sym_u_DQUOTE] = ACTIONS(1495), - [anon_sym_U_DQUOTE] = ACTIONS(1495), - [anon_sym_u8_DQUOTE] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym_true] = ACTIONS(1493), - [sym_false] = ACTIONS(1493), - [sym_null] = ACTIONS(1493), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_virtual] = ACTIONS(1493), - [anon_sym_explicit] = ACTIONS(1493), - [sym_auto] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1493), - [anon_sym_template] = ACTIONS(1493), - [anon_sym_operator] = ACTIONS(1493), - [anon_sym_delete] = ACTIONS(1493), - [anon_sym_throw] = ACTIONS(1493), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(1493), - [anon_sym_static_assert] = ACTIONS(1493), - [anon_sym_co_return] = ACTIONS(1493), - [anon_sym_co_yield] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1493), - [anon_sym_catch] = ACTIONS(1497), - [anon_sym_co_await] = ACTIONS(1493), - [anon_sym_new] = ACTIONS(1493), - [sym_this] = ACTIONS(1493), - [sym_nullptr] = ACTIONS(1493), - [sym_alone_macro] = ACTIONS(1495), - [aux_sym_alone_macro_call_token1] = ACTIONS(1493), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_FORWARD] = ACTIONS(1493), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1493), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_PS_GET] = ACTIONS(1493), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1493), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1493), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1493), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1493), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1493), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1493), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1493), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1493), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1493), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1493), - [anon_sym_MOZ_COLD] = ACTIONS(1493), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1493), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1493), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1493), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1493), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1493), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1493), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1493), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1493), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1493), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1493), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1493), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1493), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1493), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1493), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1493), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1493), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1493), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1493), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1493), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1493), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_NONNULL] = ACTIONS(1493), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1493), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1493), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1493), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1493), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1493), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_NORETURN] = ACTIONS(1493), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1493), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1493), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1493), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1493), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1493), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1493), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1493), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1493), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1493), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1493), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1493), - [anon_sym_MOZ_RAII] = ACTIONS(1493), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1493), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1493), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1493), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1493), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1493), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1493), - [sym_raw_string_literal] = ACTIONS(1495), - }, - [103] = { - [sym_catch_clause] = STATE(102), - [aux_sym_try_statement_repeat1] = STATE(102), - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token2] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [aux_sym_preproc_else_token1] = ACTIONS(1500), - [aux_sym_preproc_elif_token1] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_COLON_COLON] = ACTIONS(1502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___based] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym_mutable] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_class] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_else] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [sym_null] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1500), - [anon_sym_virtual] = ACTIONS(1500), - [anon_sym_explicit] = ACTIONS(1500), - [sym_auto] = ACTIONS(1500), - [anon_sym_typename] = ACTIONS(1500), - [anon_sym_template] = ACTIONS(1500), - [anon_sym_operator] = ACTIONS(1500), - [anon_sym_delete] = ACTIONS(1500), - [anon_sym_throw] = ACTIONS(1500), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_static_assert] = ACTIONS(1500), - [anon_sym_co_return] = ACTIONS(1500), - [anon_sym_co_yield] = ACTIONS(1500), - [anon_sym_try] = ACTIONS(1500), - [anon_sym_catch] = ACTIONS(1504), - [anon_sym_co_await] = ACTIONS(1500), - [anon_sym_new] = ACTIONS(1500), - [sym_this] = ACTIONS(1500), - [sym_nullptr] = ACTIONS(1500), - [sym_alone_macro] = ACTIONS(1502), - [aux_sym_alone_macro_call_token1] = ACTIONS(1500), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_FORWARD] = ACTIONS(1500), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1500), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_PS_GET] = ACTIONS(1500), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1500), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1500), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1500), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1500), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1500), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1500), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1500), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1500), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1500), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1500), - [anon_sym_MOZ_COLD] = ACTIONS(1500), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1500), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1500), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1500), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1500), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1500), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1500), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1500), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1500), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1500), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1500), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1500), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1500), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1500), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1500), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1500), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1500), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1500), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1500), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1500), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1500), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_NONNULL] = ACTIONS(1500), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1500), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1500), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1500), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1500), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1500), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_NORETURN] = ACTIONS(1500), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1500), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1500), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1500), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1500), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1500), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1500), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1500), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1500), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1500), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1500), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1500), - [anon_sym_MOZ_RAII] = ACTIONS(1500), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1500), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1500), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1500), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1500), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1500), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1500), - [sym_raw_string_literal] = ACTIONS(1502), - }, - [104] = { - [sym_catch_clause] = STATE(104), - [aux_sym_try_statement_repeat1] = STATE(104), - [sym_identifier] = ACTIONS(1493), - [aux_sym_preproc_include_token1] = ACTIONS(1493), - [aux_sym_preproc_def_token1] = ACTIONS(1493), - [aux_sym_preproc_if_token1] = ACTIONS(1493), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1493), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1493), - [sym_preproc_directive] = ACTIONS(1493), - [anon_sym_LPAREN2] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_typedef] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym___attribute__] = ACTIONS(1493), - [anon_sym_COLON_COLON] = ACTIONS(1495), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1495), - [anon_sym___declspec] = ACTIONS(1493), - [anon_sym___based] = ACTIONS(1493), - [anon_sym___cdecl] = ACTIONS(1493), - [anon_sym___clrcall] = ACTIONS(1493), - [anon_sym___stdcall] = ACTIONS(1493), - [anon_sym___fastcall] = ACTIONS(1493), - [anon_sym___thiscall] = ACTIONS(1493), - [anon_sym___vectorcall] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1493), - [anon_sym_register] = ACTIONS(1493), - [anon_sym_inline] = ACTIONS(1493), - [anon_sym_thread_local] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_volatile] = ACTIONS(1493), - [anon_sym_restrict] = ACTIONS(1493), - [anon_sym__Atomic] = ACTIONS(1493), - [anon_sym_mutable] = ACTIONS(1493), - [anon_sym_constexpr] = ACTIONS(1493), - [anon_sym_signed] = ACTIONS(1493), - [anon_sym_unsigned] = ACTIONS(1493), - [anon_sym_long] = ACTIONS(1493), - [anon_sym_short] = ACTIONS(1493), - [sym_primitive_type] = ACTIONS(1493), - [anon_sym_enum] = ACTIONS(1493), - [anon_sym_class] = ACTIONS(1493), - [anon_sym_struct] = ACTIONS(1493), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_else] = ACTIONS(1493), - [anon_sym_switch] = ACTIONS(1493), - [anon_sym_case] = ACTIONS(1493), - [anon_sym_default] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_do] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_goto] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_sizeof] = ACTIONS(1493), - [sym_number_literal] = ACTIONS(1495), - [anon_sym_L_SQUOTE] = ACTIONS(1495), - [anon_sym_u_SQUOTE] = ACTIONS(1495), - [anon_sym_U_SQUOTE] = ACTIONS(1495), - [anon_sym_u8_SQUOTE] = ACTIONS(1495), - [anon_sym_SQUOTE] = ACTIONS(1495), - [anon_sym_L_DQUOTE] = ACTIONS(1495), - [anon_sym_u_DQUOTE] = ACTIONS(1495), - [anon_sym_U_DQUOTE] = ACTIONS(1495), - [anon_sym_u8_DQUOTE] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym_true] = ACTIONS(1493), - [sym_false] = ACTIONS(1493), - [sym_null] = ACTIONS(1493), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_virtual] = ACTIONS(1493), - [anon_sym_explicit] = ACTIONS(1493), - [sym_auto] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1493), - [anon_sym_template] = ACTIONS(1493), - [anon_sym_operator] = ACTIONS(1493), - [anon_sym_delete] = ACTIONS(1493), - [anon_sym_throw] = ACTIONS(1493), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(1493), - [anon_sym_static_assert] = ACTIONS(1493), - [anon_sym_co_return] = ACTIONS(1493), - [anon_sym_co_yield] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1493), - [anon_sym_catch] = ACTIONS(1506), - [anon_sym_co_await] = ACTIONS(1493), - [anon_sym_new] = ACTIONS(1493), - [sym_this] = ACTIONS(1493), - [sym_nullptr] = ACTIONS(1493), - [sym_alone_macro] = ACTIONS(1495), - [aux_sym_alone_macro_call_token1] = ACTIONS(1493), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_FORWARD] = ACTIONS(1493), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1493), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_PS_GET] = ACTIONS(1493), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1493), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1493), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1493), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1493), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1493), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1493), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1493), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1493), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1493), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1493), - [anon_sym_MOZ_COLD] = ACTIONS(1493), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1493), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1493), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1493), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1493), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1493), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1493), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1493), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1493), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1493), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1493), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1493), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1493), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1493), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1493), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1493), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1493), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1493), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1493), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1493), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1493), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_NONNULL] = ACTIONS(1493), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1493), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1493), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1493), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1493), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1493), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_NORETURN] = ACTIONS(1493), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1493), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1493), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1493), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1493), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1493), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1493), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1493), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1493), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1493), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1493), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1493), - [anon_sym_MOZ_RAII] = ACTIONS(1493), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1493), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1493), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1493), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1493), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1493), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1493), - [sym_raw_string_literal] = ACTIONS(1495), - }, - [105] = { - [sym_catch_clause] = STATE(105), - [aux_sym_try_statement_repeat1] = STATE(105), - [ts_builtin_sym_end] = ACTIONS(1495), - [sym_identifier] = ACTIONS(1493), - [aux_sym_preproc_include_token1] = ACTIONS(1493), - [aux_sym_preproc_def_token1] = ACTIONS(1493), - [aux_sym_preproc_if_token1] = ACTIONS(1493), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1493), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1493), - [sym_preproc_directive] = ACTIONS(1493), - [anon_sym_LPAREN2] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_typedef] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym___attribute__] = ACTIONS(1493), - [anon_sym_COLON_COLON] = ACTIONS(1495), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1495), - [anon_sym___declspec] = ACTIONS(1493), - [anon_sym___based] = ACTIONS(1493), - [anon_sym___cdecl] = ACTIONS(1493), - [anon_sym___clrcall] = ACTIONS(1493), - [anon_sym___stdcall] = ACTIONS(1493), - [anon_sym___fastcall] = ACTIONS(1493), - [anon_sym___thiscall] = ACTIONS(1493), - [anon_sym___vectorcall] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1493), - [anon_sym_register] = ACTIONS(1493), - [anon_sym_inline] = ACTIONS(1493), - [anon_sym_thread_local] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_volatile] = ACTIONS(1493), - [anon_sym_restrict] = ACTIONS(1493), - [anon_sym__Atomic] = ACTIONS(1493), - [anon_sym_mutable] = ACTIONS(1493), - [anon_sym_constexpr] = ACTIONS(1493), - [anon_sym_signed] = ACTIONS(1493), - [anon_sym_unsigned] = ACTIONS(1493), - [anon_sym_long] = ACTIONS(1493), - [anon_sym_short] = ACTIONS(1493), - [sym_primitive_type] = ACTIONS(1493), - [anon_sym_enum] = ACTIONS(1493), - [anon_sym_class] = ACTIONS(1493), - [anon_sym_struct] = ACTIONS(1493), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_else] = ACTIONS(1493), - [anon_sym_switch] = ACTIONS(1493), - [anon_sym_case] = ACTIONS(1493), - [anon_sym_default] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_do] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_goto] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_sizeof] = ACTIONS(1493), - [sym_number_literal] = ACTIONS(1495), - [anon_sym_L_SQUOTE] = ACTIONS(1495), - [anon_sym_u_SQUOTE] = ACTIONS(1495), - [anon_sym_U_SQUOTE] = ACTIONS(1495), - [anon_sym_u8_SQUOTE] = ACTIONS(1495), - [anon_sym_SQUOTE] = ACTIONS(1495), - [anon_sym_L_DQUOTE] = ACTIONS(1495), - [anon_sym_u_DQUOTE] = ACTIONS(1495), - [anon_sym_U_DQUOTE] = ACTIONS(1495), - [anon_sym_u8_DQUOTE] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym_true] = ACTIONS(1493), - [sym_false] = ACTIONS(1493), - [sym_null] = ACTIONS(1493), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_virtual] = ACTIONS(1493), - [anon_sym_explicit] = ACTIONS(1493), - [sym_auto] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1493), - [anon_sym_template] = ACTIONS(1493), - [anon_sym_operator] = ACTIONS(1493), - [anon_sym_delete] = ACTIONS(1493), - [anon_sym_throw] = ACTIONS(1493), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(1493), - [anon_sym_static_assert] = ACTIONS(1493), - [anon_sym_co_return] = ACTIONS(1493), - [anon_sym_co_yield] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1493), - [anon_sym_catch] = ACTIONS(1509), - [anon_sym_co_await] = ACTIONS(1493), - [anon_sym_new] = ACTIONS(1493), - [sym_this] = ACTIONS(1493), - [sym_nullptr] = ACTIONS(1493), - [sym_alone_macro] = ACTIONS(1495), - [aux_sym_alone_macro_call_token1] = ACTIONS(1493), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_FORWARD] = ACTIONS(1493), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1493), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_PS_GET] = ACTIONS(1493), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1493), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1493), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1493), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1493), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1493), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1493), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1493), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1493), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1493), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1493), - [anon_sym_MOZ_COLD] = ACTIONS(1493), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1493), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1493), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1493), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1493), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1493), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1493), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1493), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1493), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1493), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1493), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1493), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1493), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1493), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1493), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1493), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1493), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1493), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1493), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1493), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1493), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_NONNULL] = ACTIONS(1493), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1493), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1493), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1493), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1493), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1493), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_NORETURN] = ACTIONS(1493), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1493), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1493), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1493), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1493), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1493), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1493), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1493), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1493), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1493), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1493), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1493), - [anon_sym_MOZ_RAII] = ACTIONS(1493), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1493), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1493), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1493), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1493), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1493), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1493), - [sym_raw_string_literal] = ACTIONS(1495), - }, - [106] = { - [sym_catch_clause] = STATE(105), - [aux_sym_try_statement_repeat1] = STATE(105), - [ts_builtin_sym_end] = ACTIONS(1502), - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_COLON_COLON] = ACTIONS(1502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___based] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym_mutable] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_class] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_else] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [sym_null] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1500), - [anon_sym_virtual] = ACTIONS(1500), - [anon_sym_explicit] = ACTIONS(1500), - [sym_auto] = ACTIONS(1500), - [anon_sym_typename] = ACTIONS(1500), - [anon_sym_template] = ACTIONS(1500), - [anon_sym_operator] = ACTIONS(1500), - [anon_sym_delete] = ACTIONS(1500), - [anon_sym_throw] = ACTIONS(1500), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_static_assert] = ACTIONS(1500), - [anon_sym_co_return] = ACTIONS(1500), - [anon_sym_co_yield] = ACTIONS(1500), - [anon_sym_try] = ACTIONS(1500), - [anon_sym_catch] = ACTIONS(1512), - [anon_sym_co_await] = ACTIONS(1500), - [anon_sym_new] = ACTIONS(1500), - [sym_this] = ACTIONS(1500), - [sym_nullptr] = ACTIONS(1500), - [sym_alone_macro] = ACTIONS(1502), - [aux_sym_alone_macro_call_token1] = ACTIONS(1500), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_FORWARD] = ACTIONS(1500), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1500), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_PS_GET] = ACTIONS(1500), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1500), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1500), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1500), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1500), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1500), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1500), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1500), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1500), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1500), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1500), - [anon_sym_MOZ_COLD] = ACTIONS(1500), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1500), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1500), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1500), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1500), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1500), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1500), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1500), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1500), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1500), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1500), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1500), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1500), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1500), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1500), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1500), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1500), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1500), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1500), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1500), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1500), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_NONNULL] = ACTIONS(1500), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1500), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1500), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1500), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1500), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1500), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_NORETURN] = ACTIONS(1500), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1500), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1500), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1500), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1500), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1500), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1500), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1500), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1500), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1500), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1500), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1500), - [anon_sym_MOZ_RAII] = ACTIONS(1500), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1500), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1500), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1500), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1500), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1500), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1500), - [sym_raw_string_literal] = ACTIONS(1502), - }, - [107] = { - [sym_identifier] = ACTIONS(1514), - [aux_sym_preproc_include_token1] = ACTIONS(1514), - [aux_sym_preproc_def_token1] = ACTIONS(1514), - [aux_sym_preproc_if_token1] = ACTIONS(1514), - [aux_sym_preproc_if_token2] = ACTIONS(1514), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1514), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1514), - [aux_sym_preproc_else_token1] = ACTIONS(1514), - [aux_sym_preproc_elif_token1] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(1514), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym___attribute__] = ACTIONS(1514), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1516), - [anon_sym___declspec] = ACTIONS(1514), - [anon_sym___based] = ACTIONS(1514), - [anon_sym___cdecl] = ACTIONS(1514), - [anon_sym___clrcall] = ACTIONS(1514), - [anon_sym___stdcall] = ACTIONS(1514), - [anon_sym___fastcall] = ACTIONS(1514), - [anon_sym___thiscall] = ACTIONS(1514), - [anon_sym___vectorcall] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_register] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym_thread_local] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_volatile] = ACTIONS(1514), - [anon_sym_restrict] = ACTIONS(1514), - [anon_sym__Atomic] = ACTIONS(1514), - [anon_sym_mutable] = ACTIONS(1514), - [anon_sym_constexpr] = ACTIONS(1514), - [anon_sym_signed] = ACTIONS(1514), - [anon_sym_unsigned] = ACTIONS(1514), - [anon_sym_long] = ACTIONS(1514), - [anon_sym_short] = ACTIONS(1514), - [sym_primitive_type] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_class] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_else] = ACTIONS(1514), - [anon_sym_switch] = ACTIONS(1514), - [anon_sym_case] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_do] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_goto] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1514), - [sym_number_literal] = ACTIONS(1516), - [anon_sym_L_SQUOTE] = ACTIONS(1516), - [anon_sym_u_SQUOTE] = ACTIONS(1516), - [anon_sym_U_SQUOTE] = ACTIONS(1516), - [anon_sym_u8_SQUOTE] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1516), - [anon_sym_L_DQUOTE] = ACTIONS(1516), - [anon_sym_u_DQUOTE] = ACTIONS(1516), - [anon_sym_U_DQUOTE] = ACTIONS(1516), - [anon_sym_u8_DQUOTE] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [sym_null] = ACTIONS(1514), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1514), - [anon_sym_virtual] = ACTIONS(1514), - [anon_sym_explicit] = ACTIONS(1514), - [sym_auto] = ACTIONS(1514), - [anon_sym_typename] = ACTIONS(1514), - [anon_sym_template] = ACTIONS(1514), - [anon_sym_operator] = ACTIONS(1514), - [anon_sym_delete] = ACTIONS(1514), - [anon_sym_throw] = ACTIONS(1514), - [anon_sym_namespace] = ACTIONS(1514), - [anon_sym_using] = ACTIONS(1514), - [anon_sym_static_assert] = ACTIONS(1514), - [anon_sym_co_return] = ACTIONS(1514), - [anon_sym_co_yield] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [anon_sym_catch] = ACTIONS(1514), - [anon_sym_co_await] = ACTIONS(1514), - [anon_sym_new] = ACTIONS(1514), - [sym_this] = ACTIONS(1514), - [sym_nullptr] = ACTIONS(1514), - [sym_alone_macro] = ACTIONS(1516), - [aux_sym_alone_macro_call_token1] = ACTIONS(1514), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_FORWARD] = ACTIONS(1514), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1514), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_PS_GET] = ACTIONS(1514), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1514), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1514), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1514), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1514), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1514), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1514), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1514), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1514), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1514), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1514), - [anon_sym_MOZ_COLD] = ACTIONS(1514), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1514), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1514), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1514), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1514), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1514), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1514), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1514), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1514), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1514), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1514), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1514), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1514), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1514), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1514), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1514), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1514), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1514), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1514), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1514), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1514), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_NONNULL] = ACTIONS(1514), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1514), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1514), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1514), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1514), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1514), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_NORETURN] = ACTIONS(1514), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1514), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1514), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1514), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1514), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1514), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1514), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1514), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1514), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1514), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1514), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1514), - [anon_sym_MOZ_RAII] = ACTIONS(1514), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1514), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1514), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1514), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1514), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1514), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1514), - [sym_raw_string_literal] = ACTIONS(1516), - }, - [108] = { - [sym_identifier] = ACTIONS(1518), - [aux_sym_preproc_include_token1] = ACTIONS(1518), - [aux_sym_preproc_def_token1] = ACTIONS(1518), - [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(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_typedef] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym___attribute__] = ACTIONS(1518), - [anon_sym_COLON_COLON] = ACTIONS(1520), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), - [anon_sym___declspec] = ACTIONS(1518), - [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(1520), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_inline] = ACTIONS(1518), - [anon_sym_thread_local] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_volatile] = ACTIONS(1518), - [anon_sym_restrict] = ACTIONS(1518), - [anon_sym__Atomic] = ACTIONS(1518), - [anon_sym_mutable] = ACTIONS(1518), - [anon_sym_constexpr] = ACTIONS(1518), - [anon_sym_signed] = ACTIONS(1518), - [anon_sym_unsigned] = ACTIONS(1518), - [anon_sym_long] = ACTIONS(1518), - [anon_sym_short] = ACTIONS(1518), - [sym_primitive_type] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_goto] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_PLUS_PLUS] = ACTIONS(1520), - [anon_sym_sizeof] = ACTIONS(1518), - [sym_number_literal] = ACTIONS(1520), - [anon_sym_L_SQUOTE] = ACTIONS(1520), - [anon_sym_u_SQUOTE] = ACTIONS(1520), - [anon_sym_U_SQUOTE] = ACTIONS(1520), - [anon_sym_u8_SQUOTE] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1520), - [anon_sym_L_DQUOTE] = ACTIONS(1520), - [anon_sym_u_DQUOTE] = ACTIONS(1520), - [anon_sym_U_DQUOTE] = ACTIONS(1520), - [anon_sym_u8_DQUOTE] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), - [sym_null] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1518), - [anon_sym_virtual] = ACTIONS(1518), - [anon_sym_explicit] = ACTIONS(1518), - [sym_auto] = ACTIONS(1518), - [anon_sym_typename] = ACTIONS(1518), - [anon_sym_template] = ACTIONS(1518), - [anon_sym_operator] = ACTIONS(1518), - [anon_sym_delete] = ACTIONS(1518), - [anon_sym_throw] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1518), - [anon_sym_static_assert] = ACTIONS(1518), - [anon_sym_co_return] = ACTIONS(1518), - [anon_sym_co_yield] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_co_await] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [sym_this] = ACTIONS(1518), - [sym_nullptr] = ACTIONS(1518), - [sym_alone_macro] = ACTIONS(1520), - [aux_sym_alone_macro_call_token1] = ACTIONS(1518), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_FORWARD] = ACTIONS(1518), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1518), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_PS_GET] = ACTIONS(1518), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1518), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1518), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1518), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1518), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1518), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1518), - [anon_sym_MOZ_COLD] = ACTIONS(1518), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1518), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1518), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1518), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1518), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1518), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1518), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1518), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1518), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1518), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1518), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1518), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1518), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1518), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_NONNULL] = ACTIONS(1518), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1518), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1518), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1518), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1518), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1518), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1518), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1518), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1518), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1518), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1518), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1518), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1518), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1518), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1518), - [anon_sym_MOZ_RAII] = ACTIONS(1518), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1518), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1518), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1518), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1518), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1518), - [sym_raw_string_literal] = ACTIONS(1520), - }, - [109] = { - [sym_catch_clause] = STATE(111), - [aux_sym_try_statement_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token2] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_COLON_COLON] = ACTIONS(1502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___based] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym_mutable] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_class] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_else] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [sym_null] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1500), - [anon_sym_virtual] = ACTIONS(1500), - [anon_sym_explicit] = ACTIONS(1500), - [sym_auto] = ACTIONS(1500), - [anon_sym_typename] = ACTIONS(1500), - [anon_sym_template] = ACTIONS(1500), - [anon_sym_operator] = ACTIONS(1500), - [anon_sym_delete] = ACTIONS(1500), - [anon_sym_throw] = ACTIONS(1500), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_static_assert] = ACTIONS(1500), - [anon_sym_co_return] = ACTIONS(1500), - [anon_sym_co_yield] = ACTIONS(1500), - [anon_sym_try] = ACTIONS(1500), - [anon_sym_catch] = ACTIONS(1522), - [anon_sym_co_await] = ACTIONS(1500), - [anon_sym_new] = ACTIONS(1500), - [sym_this] = ACTIONS(1500), - [sym_nullptr] = ACTIONS(1500), - [sym_alone_macro] = ACTIONS(1502), - [aux_sym_alone_macro_call_token1] = ACTIONS(1500), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_FORWARD] = ACTIONS(1500), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1500), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_PS_GET] = ACTIONS(1500), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1500), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1500), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1500), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1500), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1500), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1500), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1500), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1500), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1500), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1500), - [anon_sym_MOZ_COLD] = ACTIONS(1500), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1500), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1500), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1500), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1500), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1500), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1500), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1500), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1500), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1500), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1500), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1500), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1500), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1500), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1500), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1500), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1500), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1500), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1500), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1500), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1500), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_NONNULL] = ACTIONS(1500), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1500), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1500), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1500), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1500), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1500), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_NORETURN] = ACTIONS(1500), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1500), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1500), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1500), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1500), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1500), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1500), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1500), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1500), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1500), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1500), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1500), - [anon_sym_MOZ_RAII] = ACTIONS(1500), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1500), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1500), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1500), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1500), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1500), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1500), - [sym_raw_string_literal] = ACTIONS(1502), - }, - [110] = { - [sym_catch_clause] = STATE(104), - [aux_sym_try_statement_repeat1] = STATE(104), - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_COLON_COLON] = ACTIONS(1502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___based] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym_mutable] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_class] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_else] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [sym_null] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1500), - [anon_sym_virtual] = ACTIONS(1500), - [anon_sym_explicit] = ACTIONS(1500), - [sym_auto] = ACTIONS(1500), - [anon_sym_typename] = ACTIONS(1500), - [anon_sym_template] = ACTIONS(1500), - [anon_sym_operator] = ACTIONS(1500), - [anon_sym_delete] = ACTIONS(1500), - [anon_sym_throw] = ACTIONS(1500), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_static_assert] = ACTIONS(1500), - [anon_sym_co_return] = ACTIONS(1500), - [anon_sym_co_yield] = ACTIONS(1500), - [anon_sym_try] = ACTIONS(1500), - [anon_sym_catch] = ACTIONS(1524), - [anon_sym_co_await] = ACTIONS(1500), - [anon_sym_new] = ACTIONS(1500), - [sym_this] = ACTIONS(1500), - [sym_nullptr] = ACTIONS(1500), - [sym_alone_macro] = ACTIONS(1502), - [aux_sym_alone_macro_call_token1] = ACTIONS(1500), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_FORWARD] = ACTIONS(1500), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1500), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_PS_GET] = ACTIONS(1500), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1500), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1500), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1500), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1500), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1500), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1500), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1500), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1500), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1500), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1500), - [anon_sym_MOZ_COLD] = ACTIONS(1500), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1500), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1500), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1500), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1500), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1500), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1500), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1500), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1500), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1500), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1500), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1500), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1500), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1500), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1500), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1500), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1500), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1500), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1500), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1500), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1500), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_NONNULL] = ACTIONS(1500), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1500), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1500), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1500), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1500), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1500), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_NORETURN] = ACTIONS(1500), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1500), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1500), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1500), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1500), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1500), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1500), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1500), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1500), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1500), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1500), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1500), - [anon_sym_MOZ_RAII] = ACTIONS(1500), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1500), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1500), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1500), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1500), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1500), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1500), - [sym_raw_string_literal] = ACTIONS(1502), - }, - [111] = { - [sym_catch_clause] = STATE(111), - [aux_sym_try_statement_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(1493), - [aux_sym_preproc_include_token1] = ACTIONS(1493), - [aux_sym_preproc_def_token1] = ACTIONS(1493), - [aux_sym_preproc_if_token1] = ACTIONS(1493), - [aux_sym_preproc_if_token2] = ACTIONS(1493), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1493), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1493), - [sym_preproc_directive] = ACTIONS(1493), - [anon_sym_LPAREN2] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_typedef] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym___attribute__] = ACTIONS(1493), - [anon_sym_COLON_COLON] = ACTIONS(1495), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1495), - [anon_sym___declspec] = ACTIONS(1493), - [anon_sym___based] = ACTIONS(1493), - [anon_sym___cdecl] = ACTIONS(1493), - [anon_sym___clrcall] = ACTIONS(1493), - [anon_sym___stdcall] = ACTIONS(1493), - [anon_sym___fastcall] = ACTIONS(1493), - [anon_sym___thiscall] = ACTIONS(1493), - [anon_sym___vectorcall] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1493), - [anon_sym_register] = ACTIONS(1493), - [anon_sym_inline] = ACTIONS(1493), - [anon_sym_thread_local] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_volatile] = ACTIONS(1493), - [anon_sym_restrict] = ACTIONS(1493), - [anon_sym__Atomic] = ACTIONS(1493), - [anon_sym_mutable] = ACTIONS(1493), - [anon_sym_constexpr] = ACTIONS(1493), - [anon_sym_signed] = ACTIONS(1493), - [anon_sym_unsigned] = ACTIONS(1493), - [anon_sym_long] = ACTIONS(1493), - [anon_sym_short] = ACTIONS(1493), - [sym_primitive_type] = ACTIONS(1493), - [anon_sym_enum] = ACTIONS(1493), - [anon_sym_class] = ACTIONS(1493), - [anon_sym_struct] = ACTIONS(1493), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_else] = ACTIONS(1493), - [anon_sym_switch] = ACTIONS(1493), - [anon_sym_case] = ACTIONS(1493), - [anon_sym_default] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_do] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_goto] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_sizeof] = ACTIONS(1493), - [sym_number_literal] = ACTIONS(1495), - [anon_sym_L_SQUOTE] = ACTIONS(1495), - [anon_sym_u_SQUOTE] = ACTIONS(1495), - [anon_sym_U_SQUOTE] = ACTIONS(1495), - [anon_sym_u8_SQUOTE] = ACTIONS(1495), - [anon_sym_SQUOTE] = ACTIONS(1495), - [anon_sym_L_DQUOTE] = ACTIONS(1495), - [anon_sym_u_DQUOTE] = ACTIONS(1495), - [anon_sym_U_DQUOTE] = ACTIONS(1495), - [anon_sym_u8_DQUOTE] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym_true] = ACTIONS(1493), - [sym_false] = ACTIONS(1493), - [sym_null] = ACTIONS(1493), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_virtual] = ACTIONS(1493), - [anon_sym_explicit] = ACTIONS(1493), - [sym_auto] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1493), - [anon_sym_template] = ACTIONS(1493), - [anon_sym_operator] = ACTIONS(1493), - [anon_sym_delete] = ACTIONS(1493), - [anon_sym_throw] = ACTIONS(1493), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(1493), - [anon_sym_static_assert] = ACTIONS(1493), - [anon_sym_co_return] = ACTIONS(1493), - [anon_sym_co_yield] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1493), - [anon_sym_catch] = ACTIONS(1526), - [anon_sym_co_await] = ACTIONS(1493), - [anon_sym_new] = ACTIONS(1493), - [sym_this] = ACTIONS(1493), - [sym_nullptr] = ACTIONS(1493), - [sym_alone_macro] = ACTIONS(1495), - [aux_sym_alone_macro_call_token1] = ACTIONS(1493), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_FORWARD] = ACTIONS(1493), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1493), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_PS_GET] = ACTIONS(1493), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1493), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1493), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1493), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1493), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1493), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1493), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1493), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1493), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1493), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1493), - [anon_sym_MOZ_COLD] = ACTIONS(1493), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1493), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1493), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1493), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1493), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1493), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1493), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1493), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1493), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1493), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1493), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1493), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1493), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1493), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1493), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1493), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1493), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1493), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1493), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1493), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1493), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_NONNULL] = ACTIONS(1493), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1493), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1493), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1493), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1493), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1493), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_NORETURN] = ACTIONS(1493), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1493), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1493), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1493), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1493), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1493), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1493), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1493), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1493), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1493), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1493), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1493), - [anon_sym_MOZ_RAII] = ACTIONS(1493), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1493), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1493), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1493), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1493), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1493), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1493), - [sym_raw_string_literal] = ACTIONS(1495), - }, - [112] = { - [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_include_token1] = ACTIONS(1529), - [aux_sym_preproc_def_token1] = ACTIONS(1529), - [aux_sym_preproc_if_token1] = ACTIONS(1529), - [aux_sym_preproc_if_token2] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), - [aux_sym_preproc_else_token1] = ACTIONS(1529), - [aux_sym_preproc_elif_token1] = ACTIONS(1529), - [sym_preproc_directive] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym___attribute__] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1531), - [anon_sym___declspec] = ACTIONS(1529), - [anon_sym___based] = ACTIONS(1529), - [anon_sym___cdecl] = ACTIONS(1529), - [anon_sym___clrcall] = ACTIONS(1529), - [anon_sym___stdcall] = ACTIONS(1529), - [anon_sym___fastcall] = ACTIONS(1529), - [anon_sym___thiscall] = ACTIONS(1529), - [anon_sym___vectorcall] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [anon_sym_thread_local] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym__Atomic] = ACTIONS(1529), - [anon_sym_mutable] = ACTIONS(1529), - [anon_sym_constexpr] = ACTIONS(1529), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_class] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_else] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_case] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_goto] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_sizeof] = ACTIONS(1529), - [sym_number_literal] = ACTIONS(1531), - [anon_sym_L_SQUOTE] = ACTIONS(1531), - [anon_sym_u_SQUOTE] = ACTIONS(1531), - [anon_sym_U_SQUOTE] = ACTIONS(1531), - [anon_sym_u8_SQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1529), - [sym_false] = ACTIONS(1529), - [sym_null] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1529), - [anon_sym_virtual] = ACTIONS(1529), - [anon_sym_explicit] = ACTIONS(1529), - [sym_auto] = ACTIONS(1529), - [anon_sym_typename] = ACTIONS(1529), - [anon_sym_template] = ACTIONS(1529), - [anon_sym_operator] = ACTIONS(1529), - [anon_sym_delete] = ACTIONS(1529), - [anon_sym_throw] = ACTIONS(1529), - [anon_sym_namespace] = ACTIONS(1529), - [anon_sym_using] = ACTIONS(1529), - [anon_sym_static_assert] = ACTIONS(1529), - [anon_sym_co_return] = ACTIONS(1529), - [anon_sym_co_yield] = ACTIONS(1529), - [anon_sym_try] = ACTIONS(1529), - [anon_sym_catch] = ACTIONS(1529), - [anon_sym_co_await] = ACTIONS(1529), - [anon_sym_new] = ACTIONS(1529), - [sym_this] = ACTIONS(1529), - [sym_nullptr] = ACTIONS(1529), - [sym_alone_macro] = ACTIONS(1531), - [aux_sym_alone_macro_call_token1] = ACTIONS(1529), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_FORWARD] = ACTIONS(1529), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1529), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_PS_GET] = ACTIONS(1529), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1529), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1529), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1529), - [anon_sym_MOZ_COLD] = ACTIONS(1529), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1529), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1529), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1529), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1529), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1529), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1529), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1529), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1529), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1529), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1529), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1529), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1529), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_RAII] = ACTIONS(1529), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1529), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1529), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1529), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1529), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1529), - [sym_raw_string_literal] = ACTIONS(1531), - }, - [113] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [114] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [115] = { - [sym_identifier] = ACTIONS(1537), - [aux_sym_preproc_include_token1] = ACTIONS(1537), - [aux_sym_preproc_def_token1] = ACTIONS(1537), - [aux_sym_preproc_if_token1] = ACTIONS(1537), - [aux_sym_preproc_if_token2] = ACTIONS(1537), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1537), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1537), - [aux_sym_preproc_else_token1] = ACTIONS(1537), - [aux_sym_preproc_elif_token1] = ACTIONS(1537), - [sym_preproc_directive] = ACTIONS(1537), - [anon_sym_LPAREN2] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_TILDE] = ACTIONS(1539), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1539), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_typedef] = ACTIONS(1537), - [anon_sym_extern] = ACTIONS(1537), - [anon_sym___attribute__] = ACTIONS(1537), - [anon_sym_COLON_COLON] = ACTIONS(1539), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1537), - [anon_sym___based] = ACTIONS(1537), - [anon_sym___cdecl] = ACTIONS(1537), - [anon_sym___clrcall] = ACTIONS(1537), - [anon_sym___stdcall] = ACTIONS(1537), - [anon_sym___fastcall] = ACTIONS(1537), - [anon_sym___thiscall] = ACTIONS(1537), - [anon_sym___vectorcall] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_register] = ACTIONS(1537), - [anon_sym_inline] = ACTIONS(1537), - [anon_sym_thread_local] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_volatile] = ACTIONS(1537), - [anon_sym_restrict] = ACTIONS(1537), - [anon_sym__Atomic] = ACTIONS(1537), - [anon_sym_mutable] = ACTIONS(1537), - [anon_sym_constexpr] = ACTIONS(1537), - [anon_sym_signed] = ACTIONS(1537), - [anon_sym_unsigned] = ACTIONS(1537), - [anon_sym_long] = ACTIONS(1537), - [anon_sym_short] = ACTIONS(1537), - [sym_primitive_type] = ACTIONS(1537), - [anon_sym_enum] = ACTIONS(1537), - [anon_sym_class] = ACTIONS(1537), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_else] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1537), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_do] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_goto] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1539), - [anon_sym_PLUS_PLUS] = ACTIONS(1539), - [anon_sym_sizeof] = ACTIONS(1537), - [sym_number_literal] = ACTIONS(1539), - [anon_sym_L_SQUOTE] = ACTIONS(1539), - [anon_sym_u_SQUOTE] = ACTIONS(1539), - [anon_sym_U_SQUOTE] = ACTIONS(1539), - [anon_sym_u8_SQUOTE] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [anon_sym_L_DQUOTE] = ACTIONS(1539), - [anon_sym_u_DQUOTE] = ACTIONS(1539), - [anon_sym_U_DQUOTE] = ACTIONS(1539), - [anon_sym_u8_DQUOTE] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1539), - [sym_true] = ACTIONS(1537), - [sym_false] = ACTIONS(1537), - [sym_null] = ACTIONS(1537), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1537), - [anon_sym_virtual] = ACTIONS(1537), - [anon_sym_explicit] = ACTIONS(1537), - [sym_auto] = ACTIONS(1537), - [anon_sym_typename] = ACTIONS(1537), - [anon_sym_template] = ACTIONS(1537), - [anon_sym_operator] = ACTIONS(1537), - [anon_sym_delete] = ACTIONS(1537), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_using] = ACTIONS(1537), - [anon_sym_static_assert] = ACTIONS(1537), - [anon_sym_co_return] = ACTIONS(1537), - [anon_sym_co_yield] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1537), - [anon_sym_new] = ACTIONS(1537), - [sym_this] = ACTIONS(1537), - [sym_nullptr] = ACTIONS(1537), - [sym_alone_macro] = ACTIONS(1539), - [aux_sym_alone_macro_call_token1] = ACTIONS(1537), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_FORWARD] = ACTIONS(1537), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1537), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_PS_GET] = ACTIONS(1537), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1537), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1537), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1537), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1537), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1537), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1537), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1537), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1537), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1537), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1537), - [anon_sym_MOZ_COLD] = ACTIONS(1537), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1537), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1537), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1537), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1537), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1537), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1537), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1537), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1537), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1537), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1537), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1537), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1537), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1537), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1537), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1537), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1537), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1537), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1537), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1537), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1537), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_NONNULL] = ACTIONS(1537), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1537), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1537), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1537), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1537), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1537), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_NORETURN] = ACTIONS(1537), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1537), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1537), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1537), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1537), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1537), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1537), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1537), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1537), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1537), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1537), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1537), - [anon_sym_MOZ_RAII] = ACTIONS(1537), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1537), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1537), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1537), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1537), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1537), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1537), - [sym_raw_string_literal] = ACTIONS(1539), - }, - [116] = { - [sym_identifier] = ACTIONS(1541), - [aux_sym_preproc_include_token1] = ACTIONS(1541), - [aux_sym_preproc_def_token1] = ACTIONS(1541), - [aux_sym_preproc_if_token1] = ACTIONS(1541), - [aux_sym_preproc_if_token2] = ACTIONS(1541), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1541), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1541), - [aux_sym_preproc_else_token1] = ACTIONS(1541), - [aux_sym_preproc_elif_token1] = ACTIONS(1541), - [sym_preproc_directive] = ACTIONS(1541), - [anon_sym_LPAREN2] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1543), - [anon_sym_AMP_AMP] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_typedef] = ACTIONS(1541), - [anon_sym_extern] = ACTIONS(1541), - [anon_sym___attribute__] = ACTIONS(1541), - [anon_sym_COLON_COLON] = ACTIONS(1543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1543), - [anon_sym___declspec] = ACTIONS(1541), - [anon_sym___based] = ACTIONS(1541), - [anon_sym___cdecl] = ACTIONS(1541), - [anon_sym___clrcall] = ACTIONS(1541), - [anon_sym___stdcall] = ACTIONS(1541), - [anon_sym___fastcall] = ACTIONS(1541), - [anon_sym___thiscall] = ACTIONS(1541), - [anon_sym___vectorcall] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1541), - [anon_sym_static] = ACTIONS(1541), - [anon_sym_register] = ACTIONS(1541), - [anon_sym_inline] = ACTIONS(1541), - [anon_sym_thread_local] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_volatile] = ACTIONS(1541), - [anon_sym_restrict] = ACTIONS(1541), - [anon_sym__Atomic] = ACTIONS(1541), - [anon_sym_mutable] = ACTIONS(1541), - [anon_sym_constexpr] = ACTIONS(1541), - [anon_sym_signed] = ACTIONS(1541), - [anon_sym_unsigned] = ACTIONS(1541), - [anon_sym_long] = ACTIONS(1541), - [anon_sym_short] = ACTIONS(1541), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_enum] = ACTIONS(1541), - [anon_sym_class] = ACTIONS(1541), - [anon_sym_struct] = ACTIONS(1541), - [anon_sym_union] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1541), - [anon_sym_else] = ACTIONS(1541), - [anon_sym_switch] = ACTIONS(1541), - [anon_sym_case] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1541), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1541), - [anon_sym_for] = ACTIONS(1541), - [anon_sym_return] = ACTIONS(1541), - [anon_sym_break] = ACTIONS(1541), - [anon_sym_continue] = ACTIONS(1541), - [anon_sym_goto] = ACTIONS(1541), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1541), - [sym_number_literal] = ACTIONS(1543), - [anon_sym_L_SQUOTE] = ACTIONS(1543), - [anon_sym_u_SQUOTE] = ACTIONS(1543), - [anon_sym_U_SQUOTE] = ACTIONS(1543), - [anon_sym_u8_SQUOTE] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_L_DQUOTE] = ACTIONS(1543), - [anon_sym_u_DQUOTE] = ACTIONS(1543), - [anon_sym_U_DQUOTE] = ACTIONS(1543), - [anon_sym_u8_DQUOTE] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1543), - [sym_true] = ACTIONS(1541), - [sym_false] = ACTIONS(1541), - [sym_null] = ACTIONS(1541), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1541), - [anon_sym_virtual] = ACTIONS(1541), - [anon_sym_explicit] = ACTIONS(1541), - [sym_auto] = ACTIONS(1541), - [anon_sym_typename] = ACTIONS(1541), - [anon_sym_template] = ACTIONS(1541), - [anon_sym_operator] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_throw] = ACTIONS(1541), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_using] = ACTIONS(1541), - [anon_sym_static_assert] = ACTIONS(1541), - [anon_sym_co_return] = ACTIONS(1541), - [anon_sym_co_yield] = ACTIONS(1541), - [anon_sym_try] = ACTIONS(1541), - [anon_sym_co_await] = ACTIONS(1541), - [anon_sym_new] = ACTIONS(1541), - [sym_this] = ACTIONS(1541), - [sym_nullptr] = ACTIONS(1541), - [sym_alone_macro] = ACTIONS(1543), - [aux_sym_alone_macro_call_token1] = ACTIONS(1541), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_FORWARD] = ACTIONS(1541), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1541), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_PS_GET] = ACTIONS(1541), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1541), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1541), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1541), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1541), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1541), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1541), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1541), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1541), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1541), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1541), - [anon_sym_MOZ_COLD] = ACTIONS(1541), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1541), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1541), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1541), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1541), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1541), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1541), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1541), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1541), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1541), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1541), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1541), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1541), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1541), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1541), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1541), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1541), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1541), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1541), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1541), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1541), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_NONNULL] = ACTIONS(1541), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1541), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1541), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1541), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1541), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1541), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_NORETURN] = ACTIONS(1541), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1541), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1541), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1541), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1541), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1541), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1541), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1541), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1541), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1541), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1541), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1541), - [anon_sym_MOZ_RAII] = ACTIONS(1541), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1541), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1541), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1541), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1541), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1541), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1541), - [sym_raw_string_literal] = ACTIONS(1543), - }, - [117] = { - [sym_identifier] = ACTIONS(1545), - [aux_sym_preproc_include_token1] = ACTIONS(1545), - [aux_sym_preproc_def_token1] = ACTIONS(1545), - [aux_sym_preproc_if_token1] = ACTIONS(1545), - [aux_sym_preproc_if_token2] = ACTIONS(1545), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1545), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1545), - [aux_sym_preproc_else_token1] = ACTIONS(1545), - [aux_sym_preproc_elif_token1] = ACTIONS(1545), - [sym_preproc_directive] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1547), - [anon_sym_TILDE] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1547), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1547), - [anon_sym_typedef] = ACTIONS(1545), - [anon_sym_extern] = ACTIONS(1545), - [anon_sym___attribute__] = ACTIONS(1545), - [anon_sym_COLON_COLON] = ACTIONS(1547), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1547), - [anon_sym___declspec] = ACTIONS(1545), - [anon_sym___based] = ACTIONS(1545), - [anon_sym___cdecl] = ACTIONS(1545), - [anon_sym___clrcall] = ACTIONS(1545), - [anon_sym___stdcall] = ACTIONS(1545), - [anon_sym___fastcall] = ACTIONS(1545), - [anon_sym___thiscall] = ACTIONS(1545), - [anon_sym___vectorcall] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_static] = ACTIONS(1545), - [anon_sym_register] = ACTIONS(1545), - [anon_sym_inline] = ACTIONS(1545), - [anon_sym_thread_local] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_volatile] = ACTIONS(1545), - [anon_sym_restrict] = ACTIONS(1545), - [anon_sym__Atomic] = ACTIONS(1545), - [anon_sym_mutable] = ACTIONS(1545), - [anon_sym_constexpr] = ACTIONS(1545), - [anon_sym_signed] = ACTIONS(1545), - [anon_sym_unsigned] = ACTIONS(1545), - [anon_sym_long] = ACTIONS(1545), - [anon_sym_short] = ACTIONS(1545), - [sym_primitive_type] = ACTIONS(1545), - [anon_sym_enum] = ACTIONS(1545), - [anon_sym_class] = ACTIONS(1545), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_union] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_else] = ACTIONS(1545), - [anon_sym_switch] = ACTIONS(1545), - [anon_sym_case] = ACTIONS(1545), - [anon_sym_default] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_do] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_goto] = ACTIONS(1545), - [anon_sym_DASH_DASH] = ACTIONS(1547), - [anon_sym_PLUS_PLUS] = ACTIONS(1547), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1547), - [anon_sym_u_SQUOTE] = ACTIONS(1547), - [anon_sym_U_SQUOTE] = ACTIONS(1547), - [anon_sym_u8_SQUOTE] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_L_DQUOTE] = ACTIONS(1547), - [anon_sym_u_DQUOTE] = ACTIONS(1547), - [anon_sym_U_DQUOTE] = ACTIONS(1547), - [anon_sym_u8_DQUOTE] = ACTIONS(1547), - [anon_sym_DQUOTE] = ACTIONS(1547), - [sym_true] = ACTIONS(1545), - [sym_false] = ACTIONS(1545), - [sym_null] = ACTIONS(1545), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1545), - [anon_sym_virtual] = ACTIONS(1545), - [anon_sym_explicit] = ACTIONS(1545), - [sym_auto] = ACTIONS(1545), - [anon_sym_typename] = ACTIONS(1545), - [anon_sym_template] = ACTIONS(1545), - [anon_sym_operator] = ACTIONS(1545), - [anon_sym_delete] = ACTIONS(1545), - [anon_sym_throw] = ACTIONS(1545), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_using] = ACTIONS(1545), - [anon_sym_static_assert] = ACTIONS(1545), - [anon_sym_co_return] = ACTIONS(1545), - [anon_sym_co_yield] = ACTIONS(1545), - [anon_sym_try] = ACTIONS(1545), - [anon_sym_co_await] = ACTIONS(1545), - [anon_sym_new] = ACTIONS(1545), - [sym_this] = ACTIONS(1545), - [sym_nullptr] = ACTIONS(1545), - [sym_alone_macro] = ACTIONS(1547), - [aux_sym_alone_macro_call_token1] = ACTIONS(1545), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_FORWARD] = ACTIONS(1545), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1545), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_PS_GET] = ACTIONS(1545), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1545), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1545), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1545), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1545), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1545), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1545), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1545), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1545), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1545), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1545), - [anon_sym_MOZ_COLD] = ACTIONS(1545), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1545), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1545), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1545), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1545), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1545), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1545), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1545), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1545), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1545), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1545), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1545), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1545), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1545), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1545), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1545), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1545), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1545), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1545), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1545), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1545), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_NONNULL] = ACTIONS(1545), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1545), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1545), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1545), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1545), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1545), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_NORETURN] = ACTIONS(1545), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1545), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1545), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1545), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1545), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1545), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1545), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1545), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1545), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1545), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1545), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1545), - [anon_sym_MOZ_RAII] = ACTIONS(1545), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1545), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1545), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1545), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1545), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1545), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1545), - [sym_raw_string_literal] = ACTIONS(1547), - }, - [118] = { - [sym_identifier] = ACTIONS(1549), - [aux_sym_preproc_include_token1] = ACTIONS(1549), - [aux_sym_preproc_def_token1] = ACTIONS(1549), - [aux_sym_preproc_if_token1] = ACTIONS(1549), - [aux_sym_preproc_if_token2] = ACTIONS(1549), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1549), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1549), - [aux_sym_preproc_else_token1] = ACTIONS(1549), - [aux_sym_preproc_elif_token1] = ACTIONS(1549), - [sym_preproc_directive] = ACTIONS(1549), - [anon_sym_LPAREN2] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_AMP_AMP] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_typedef] = ACTIONS(1549), - [anon_sym_extern] = ACTIONS(1549), - [anon_sym___attribute__] = ACTIONS(1549), - [anon_sym_COLON_COLON] = ACTIONS(1551), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1551), - [anon_sym___declspec] = ACTIONS(1549), - [anon_sym___based] = ACTIONS(1549), - [anon_sym___cdecl] = ACTIONS(1549), - [anon_sym___clrcall] = ACTIONS(1549), - [anon_sym___stdcall] = ACTIONS(1549), - [anon_sym___fastcall] = ACTIONS(1549), - [anon_sym___thiscall] = ACTIONS(1549), - [anon_sym___vectorcall] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_static] = ACTIONS(1549), - [anon_sym_register] = ACTIONS(1549), - [anon_sym_inline] = ACTIONS(1549), - [anon_sym_thread_local] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [anon_sym_volatile] = ACTIONS(1549), - [anon_sym_restrict] = ACTIONS(1549), - [anon_sym__Atomic] = ACTIONS(1549), - [anon_sym_mutable] = ACTIONS(1549), - [anon_sym_constexpr] = ACTIONS(1549), - [anon_sym_signed] = ACTIONS(1549), - [anon_sym_unsigned] = ACTIONS(1549), - [anon_sym_long] = ACTIONS(1549), - [anon_sym_short] = ACTIONS(1549), - [sym_primitive_type] = ACTIONS(1549), - [anon_sym_enum] = ACTIONS(1549), - [anon_sym_class] = ACTIONS(1549), - [anon_sym_struct] = ACTIONS(1549), - [anon_sym_union] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_else] = ACTIONS(1549), - [anon_sym_switch] = ACTIONS(1549), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1549), - [anon_sym_while] = ACTIONS(1549), - [anon_sym_do] = ACTIONS(1549), - [anon_sym_for] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1549), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1549), - [anon_sym_goto] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_PLUS_PLUS] = ACTIONS(1551), - [anon_sym_sizeof] = ACTIONS(1549), - [sym_number_literal] = ACTIONS(1551), - [anon_sym_L_SQUOTE] = ACTIONS(1551), - [anon_sym_u_SQUOTE] = ACTIONS(1551), - [anon_sym_U_SQUOTE] = ACTIONS(1551), - [anon_sym_u8_SQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1549), - [sym_false] = ACTIONS(1549), - [sym_null] = ACTIONS(1549), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1549), - [anon_sym_virtual] = ACTIONS(1549), - [anon_sym_explicit] = ACTIONS(1549), - [sym_auto] = ACTIONS(1549), - [anon_sym_typename] = ACTIONS(1549), - [anon_sym_template] = ACTIONS(1549), - [anon_sym_operator] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_throw] = ACTIONS(1549), - [anon_sym_namespace] = ACTIONS(1549), - [anon_sym_using] = ACTIONS(1549), - [anon_sym_static_assert] = ACTIONS(1549), - [anon_sym_co_return] = ACTIONS(1549), - [anon_sym_co_yield] = ACTIONS(1549), - [anon_sym_try] = ACTIONS(1549), - [anon_sym_co_await] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1549), - [sym_this] = ACTIONS(1549), - [sym_nullptr] = ACTIONS(1549), - [sym_alone_macro] = ACTIONS(1551), - [aux_sym_alone_macro_call_token1] = ACTIONS(1549), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_FORWARD] = ACTIONS(1549), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1549), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_PS_GET] = ACTIONS(1549), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1549), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1549), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1549), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1549), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1549), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1549), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1549), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1549), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1549), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1549), - [anon_sym_MOZ_COLD] = ACTIONS(1549), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1549), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1549), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1549), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1549), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1549), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1549), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1549), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1549), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1549), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1549), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1549), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1549), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1549), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1549), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1549), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1549), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1549), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1549), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1549), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1549), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_NONNULL] = ACTIONS(1549), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1549), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1549), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1549), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1549), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1549), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_NORETURN] = ACTIONS(1549), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1549), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1549), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1549), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1549), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1549), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1549), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1549), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1549), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1549), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1549), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1549), - [anon_sym_MOZ_RAII] = ACTIONS(1549), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1549), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1549), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1549), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1549), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1549), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1549), - [sym_raw_string_literal] = ACTIONS(1551), - }, - [119] = { - [sym_identifier] = ACTIONS(1553), - [aux_sym_preproc_include_token1] = ACTIONS(1553), - [aux_sym_preproc_def_token1] = ACTIONS(1553), - [aux_sym_preproc_if_token1] = ACTIONS(1553), - [aux_sym_preproc_if_token2] = ACTIONS(1553), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1553), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1553), - [aux_sym_preproc_else_token1] = ACTIONS(1553), - [aux_sym_preproc_elif_token1] = ACTIONS(1553), - [sym_preproc_directive] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1555), - [anon_sym_TILDE] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1555), - [anon_sym_AMP_AMP] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1555), - [anon_sym_typedef] = ACTIONS(1553), - [anon_sym_extern] = ACTIONS(1553), - [anon_sym___attribute__] = ACTIONS(1553), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1555), - [anon_sym___declspec] = ACTIONS(1553), - [anon_sym___based] = ACTIONS(1553), - [anon_sym___cdecl] = ACTIONS(1553), - [anon_sym___clrcall] = ACTIONS(1553), - [anon_sym___stdcall] = ACTIONS(1553), - [anon_sym___fastcall] = ACTIONS(1553), - [anon_sym___thiscall] = ACTIONS(1553), - [anon_sym___vectorcall] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_static] = ACTIONS(1553), - [anon_sym_register] = ACTIONS(1553), - [anon_sym_inline] = ACTIONS(1553), - [anon_sym_thread_local] = ACTIONS(1553), - [anon_sym_const] = ACTIONS(1553), - [anon_sym_volatile] = ACTIONS(1553), - [anon_sym_restrict] = ACTIONS(1553), - [anon_sym__Atomic] = ACTIONS(1553), - [anon_sym_mutable] = ACTIONS(1553), - [anon_sym_constexpr] = ACTIONS(1553), - [anon_sym_signed] = ACTIONS(1553), - [anon_sym_unsigned] = ACTIONS(1553), - [anon_sym_long] = ACTIONS(1553), - [anon_sym_short] = ACTIONS(1553), - [sym_primitive_type] = ACTIONS(1553), - [anon_sym_enum] = ACTIONS(1553), - [anon_sym_class] = ACTIONS(1553), - [anon_sym_struct] = ACTIONS(1553), - [anon_sym_union] = ACTIONS(1553), - [anon_sym_if] = ACTIONS(1553), - [anon_sym_else] = ACTIONS(1553), - [anon_sym_switch] = ACTIONS(1553), - [anon_sym_case] = ACTIONS(1553), - [anon_sym_default] = ACTIONS(1553), - [anon_sym_while] = ACTIONS(1553), - [anon_sym_do] = ACTIONS(1553), - [anon_sym_for] = ACTIONS(1553), - [anon_sym_return] = ACTIONS(1553), - [anon_sym_break] = ACTIONS(1553), - [anon_sym_continue] = ACTIONS(1553), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_DASH_DASH] = ACTIONS(1555), - [anon_sym_PLUS_PLUS] = ACTIONS(1555), - [anon_sym_sizeof] = ACTIONS(1553), - [sym_number_literal] = ACTIONS(1555), - [anon_sym_L_SQUOTE] = ACTIONS(1555), - [anon_sym_u_SQUOTE] = ACTIONS(1555), - [anon_sym_U_SQUOTE] = ACTIONS(1555), - [anon_sym_u8_SQUOTE] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1555), - [anon_sym_L_DQUOTE] = ACTIONS(1555), - [anon_sym_u_DQUOTE] = ACTIONS(1555), - [anon_sym_U_DQUOTE] = ACTIONS(1555), - [anon_sym_u8_DQUOTE] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(1555), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1553), - [anon_sym_virtual] = ACTIONS(1553), - [anon_sym_explicit] = ACTIONS(1553), - [sym_auto] = ACTIONS(1553), - [anon_sym_typename] = ACTIONS(1553), - [anon_sym_template] = ACTIONS(1553), - [anon_sym_operator] = ACTIONS(1553), - [anon_sym_delete] = ACTIONS(1553), - [anon_sym_throw] = ACTIONS(1553), - [anon_sym_namespace] = ACTIONS(1553), - [anon_sym_using] = ACTIONS(1553), - [anon_sym_static_assert] = ACTIONS(1553), - [anon_sym_co_return] = ACTIONS(1553), - [anon_sym_co_yield] = ACTIONS(1553), - [anon_sym_try] = ACTIONS(1553), - [anon_sym_co_await] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1553), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), - [sym_alone_macro] = ACTIONS(1555), - [aux_sym_alone_macro_call_token1] = ACTIONS(1553), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_FORWARD] = ACTIONS(1553), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1553), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_PS_GET] = ACTIONS(1553), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1553), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1553), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1553), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1553), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1553), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1553), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1553), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1553), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1553), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1553), - [anon_sym_MOZ_COLD] = ACTIONS(1553), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1553), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1553), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1553), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1553), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1553), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1553), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1553), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1553), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1553), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1553), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1553), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1553), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1553), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1553), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1553), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1553), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1553), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1553), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1553), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1553), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_NONNULL] = ACTIONS(1553), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1553), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1553), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1553), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1553), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1553), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_NORETURN] = ACTIONS(1553), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1553), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1553), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1553), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1553), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1553), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1553), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1553), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1553), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1553), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1553), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1553), - [anon_sym_MOZ_RAII] = ACTIONS(1553), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1553), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1553), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1553), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1553), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1553), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1553), - [sym_raw_string_literal] = ACTIONS(1555), - }, - [120] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [121] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [122] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [123] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [124] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [125] = { - [sym_identifier] = ACTIONS(1557), - [aux_sym_preproc_include_token1] = ACTIONS(1557), - [aux_sym_preproc_def_token1] = ACTIONS(1557), - [aux_sym_preproc_if_token1] = ACTIONS(1557), - [aux_sym_preproc_if_token2] = ACTIONS(1557), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1557), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1557), - [aux_sym_preproc_else_token1] = ACTIONS(1557), - [aux_sym_preproc_elif_token1] = ACTIONS(1557), - [sym_preproc_directive] = ACTIONS(1557), - [anon_sym_LPAREN2] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_typedef] = ACTIONS(1557), - [anon_sym_extern] = ACTIONS(1557), - [anon_sym___attribute__] = ACTIONS(1557), - [anon_sym_COLON_COLON] = ACTIONS(1559), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1559), - [anon_sym___declspec] = ACTIONS(1557), - [anon_sym___based] = ACTIONS(1557), - [anon_sym___cdecl] = ACTIONS(1557), - [anon_sym___clrcall] = ACTIONS(1557), - [anon_sym___stdcall] = ACTIONS(1557), - [anon_sym___fastcall] = ACTIONS(1557), - [anon_sym___thiscall] = ACTIONS(1557), - [anon_sym___vectorcall] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_register] = ACTIONS(1557), - [anon_sym_inline] = ACTIONS(1557), - [anon_sym_thread_local] = ACTIONS(1557), - [anon_sym_const] = ACTIONS(1557), - [anon_sym_volatile] = ACTIONS(1557), - [anon_sym_restrict] = ACTIONS(1557), - [anon_sym__Atomic] = ACTIONS(1557), - [anon_sym_mutable] = ACTIONS(1557), - [anon_sym_constexpr] = ACTIONS(1557), - [anon_sym_signed] = ACTIONS(1557), - [anon_sym_unsigned] = ACTIONS(1557), - [anon_sym_long] = ACTIONS(1557), - [anon_sym_short] = ACTIONS(1557), - [sym_primitive_type] = ACTIONS(1557), - [anon_sym_enum] = ACTIONS(1557), - [anon_sym_class] = ACTIONS(1557), - [anon_sym_struct] = ACTIONS(1557), - [anon_sym_union] = ACTIONS(1557), - [anon_sym_if] = ACTIONS(1557), - [anon_sym_else] = ACTIONS(1557), - [anon_sym_switch] = ACTIONS(1557), - [anon_sym_case] = ACTIONS(1557), - [anon_sym_default] = ACTIONS(1557), - [anon_sym_while] = ACTIONS(1557), - [anon_sym_do] = ACTIONS(1557), - [anon_sym_for] = ACTIONS(1557), - [anon_sym_return] = ACTIONS(1557), - [anon_sym_break] = ACTIONS(1557), - [anon_sym_continue] = ACTIONS(1557), - [anon_sym_goto] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_sizeof] = ACTIONS(1557), - [sym_number_literal] = ACTIONS(1559), - [anon_sym_L_SQUOTE] = ACTIONS(1559), - [anon_sym_u_SQUOTE] = ACTIONS(1559), - [anon_sym_U_SQUOTE] = ACTIONS(1559), - [anon_sym_u8_SQUOTE] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1559), - [anon_sym_L_DQUOTE] = ACTIONS(1559), - [anon_sym_u_DQUOTE] = ACTIONS(1559), - [anon_sym_U_DQUOTE] = ACTIONS(1559), - [anon_sym_u8_DQUOTE] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1557), - [anon_sym_virtual] = ACTIONS(1557), - [anon_sym_explicit] = ACTIONS(1557), - [sym_auto] = ACTIONS(1557), - [anon_sym_typename] = ACTIONS(1557), - [anon_sym_template] = ACTIONS(1557), - [anon_sym_operator] = ACTIONS(1557), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_throw] = ACTIONS(1557), - [anon_sym_namespace] = ACTIONS(1557), - [anon_sym_using] = ACTIONS(1557), - [anon_sym_static_assert] = ACTIONS(1557), - [anon_sym_co_return] = ACTIONS(1557), - [anon_sym_co_yield] = ACTIONS(1557), - [anon_sym_try] = ACTIONS(1557), - [anon_sym_co_await] = ACTIONS(1557), - [anon_sym_new] = ACTIONS(1557), - [sym_this] = ACTIONS(1557), - [sym_nullptr] = ACTIONS(1557), - [sym_alone_macro] = ACTIONS(1559), - [aux_sym_alone_macro_call_token1] = ACTIONS(1557), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_FORWARD] = ACTIONS(1557), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1557), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_PS_GET] = ACTIONS(1557), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1557), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1557), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1557), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1557), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1557), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1557), - [anon_sym_MOZ_COLD] = ACTIONS(1557), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1557), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1557), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1557), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1557), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1557), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1557), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1557), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1557), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1557), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1557), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1557), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1557), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1557), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_NONNULL] = ACTIONS(1557), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1557), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1557), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1557), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1557), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1557), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1557), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1557), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1557), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1557), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1557), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1557), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1557), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1557), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1557), - [anon_sym_MOZ_RAII] = ACTIONS(1557), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1557), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1557), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1557), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1557), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1557), - [sym_raw_string_literal] = ACTIONS(1559), - }, - [126] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [127] = { - [sym_identifier] = ACTIONS(1561), - [aux_sym_preproc_include_token1] = ACTIONS(1561), - [aux_sym_preproc_def_token1] = ACTIONS(1561), - [aux_sym_preproc_if_token1] = ACTIONS(1561), - [aux_sym_preproc_if_token2] = ACTIONS(1561), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1561), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1561), - [aux_sym_preproc_else_token1] = ACTIONS(1561), - [aux_sym_preproc_elif_token1] = ACTIONS(1561), - [sym_preproc_directive] = ACTIONS(1561), - [anon_sym_LPAREN2] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_AMP_AMP] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_typedef] = ACTIONS(1561), - [anon_sym_extern] = ACTIONS(1561), - [anon_sym___attribute__] = ACTIONS(1561), - [anon_sym_COLON_COLON] = ACTIONS(1563), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1563), - [anon_sym___declspec] = ACTIONS(1561), - [anon_sym___based] = ACTIONS(1561), - [anon_sym___cdecl] = ACTIONS(1561), - [anon_sym___clrcall] = ACTIONS(1561), - [anon_sym___stdcall] = ACTIONS(1561), - [anon_sym___fastcall] = ACTIONS(1561), - [anon_sym___thiscall] = ACTIONS(1561), - [anon_sym___vectorcall] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_static] = ACTIONS(1561), - [anon_sym_register] = ACTIONS(1561), - [anon_sym_inline] = ACTIONS(1561), - [anon_sym_thread_local] = ACTIONS(1561), - [anon_sym_const] = ACTIONS(1561), - [anon_sym_volatile] = ACTIONS(1561), - [anon_sym_restrict] = ACTIONS(1561), - [anon_sym__Atomic] = ACTIONS(1561), - [anon_sym_mutable] = ACTIONS(1561), - [anon_sym_constexpr] = ACTIONS(1561), - [anon_sym_signed] = ACTIONS(1561), - [anon_sym_unsigned] = ACTIONS(1561), - [anon_sym_long] = ACTIONS(1561), - [anon_sym_short] = ACTIONS(1561), - [sym_primitive_type] = ACTIONS(1561), - [anon_sym_enum] = ACTIONS(1561), - [anon_sym_class] = ACTIONS(1561), - [anon_sym_struct] = ACTIONS(1561), - [anon_sym_union] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1561), - [anon_sym_else] = ACTIONS(1561), - [anon_sym_switch] = ACTIONS(1561), - [anon_sym_case] = ACTIONS(1561), - [anon_sym_default] = ACTIONS(1561), - [anon_sym_while] = ACTIONS(1561), - [anon_sym_do] = ACTIONS(1561), - [anon_sym_for] = ACTIONS(1561), - [anon_sym_return] = ACTIONS(1561), - [anon_sym_break] = ACTIONS(1561), - [anon_sym_continue] = ACTIONS(1561), - [anon_sym_goto] = ACTIONS(1561), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_sizeof] = ACTIONS(1561), - [sym_number_literal] = ACTIONS(1563), - [anon_sym_L_SQUOTE] = ACTIONS(1563), - [anon_sym_u_SQUOTE] = ACTIONS(1563), - [anon_sym_U_SQUOTE] = ACTIONS(1563), - [anon_sym_u8_SQUOTE] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_L_DQUOTE] = ACTIONS(1563), - [anon_sym_u_DQUOTE] = ACTIONS(1563), - [anon_sym_U_DQUOTE] = ACTIONS(1563), - [anon_sym_u8_DQUOTE] = ACTIONS(1563), - [anon_sym_DQUOTE] = ACTIONS(1563), - [sym_true] = ACTIONS(1561), - [sym_false] = ACTIONS(1561), - [sym_null] = ACTIONS(1561), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1561), - [anon_sym_virtual] = ACTIONS(1561), - [anon_sym_explicit] = ACTIONS(1561), - [sym_auto] = ACTIONS(1561), - [anon_sym_typename] = ACTIONS(1561), - [anon_sym_template] = ACTIONS(1561), - [anon_sym_operator] = ACTIONS(1561), - [anon_sym_delete] = ACTIONS(1561), - [anon_sym_throw] = ACTIONS(1561), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_using] = ACTIONS(1561), - [anon_sym_static_assert] = ACTIONS(1561), - [anon_sym_co_return] = ACTIONS(1561), - [anon_sym_co_yield] = ACTIONS(1561), - [anon_sym_try] = ACTIONS(1561), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1561), - [sym_this] = ACTIONS(1561), - [sym_nullptr] = ACTIONS(1561), - [sym_alone_macro] = ACTIONS(1563), - [aux_sym_alone_macro_call_token1] = ACTIONS(1561), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_FORWARD] = ACTIONS(1561), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1561), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_PS_GET] = ACTIONS(1561), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1561), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1561), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1561), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1561), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1561), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1561), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1561), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1561), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1561), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1561), - [anon_sym_MOZ_COLD] = ACTIONS(1561), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1561), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1561), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1561), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1561), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1561), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1561), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1561), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1561), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1561), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1561), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1561), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1561), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1561), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1561), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1561), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1561), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1561), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1561), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1561), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1561), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_NONNULL] = ACTIONS(1561), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1561), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1561), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1561), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1561), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1561), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_NORETURN] = ACTIONS(1561), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1561), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1561), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1561), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1561), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1561), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1561), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1561), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1561), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1561), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1561), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1561), - [anon_sym_MOZ_RAII] = ACTIONS(1561), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1561), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1561), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1561), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1561), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1561), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1561), - [sym_raw_string_literal] = ACTIONS(1563), - }, - [128] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [129] = { - [sym_identifier] = ACTIONS(1565), - [aux_sym_preproc_include_token1] = ACTIONS(1565), - [aux_sym_preproc_def_token1] = ACTIONS(1565), - [aux_sym_preproc_if_token1] = ACTIONS(1565), - [aux_sym_preproc_if_token2] = ACTIONS(1565), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1565), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1565), - [aux_sym_preproc_else_token1] = ACTIONS(1565), - [aux_sym_preproc_elif_token1] = ACTIONS(1565), - [sym_preproc_directive] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1567), - [anon_sym_TILDE] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_AMP_AMP] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_typedef] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym___attribute__] = ACTIONS(1565), - [anon_sym_COLON_COLON] = ACTIONS(1567), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1567), - [anon_sym___declspec] = ACTIONS(1565), - [anon_sym___based] = ACTIONS(1565), - [anon_sym___cdecl] = ACTIONS(1565), - [anon_sym___clrcall] = ACTIONS(1565), - [anon_sym___stdcall] = ACTIONS(1565), - [anon_sym___fastcall] = ACTIONS(1565), - [anon_sym___thiscall] = ACTIONS(1565), - [anon_sym___vectorcall] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1565), - [anon_sym_register] = ACTIONS(1565), - [anon_sym_inline] = ACTIONS(1565), - [anon_sym_thread_local] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [anon_sym_volatile] = ACTIONS(1565), - [anon_sym_restrict] = ACTIONS(1565), - [anon_sym__Atomic] = ACTIONS(1565), - [anon_sym_mutable] = ACTIONS(1565), - [anon_sym_constexpr] = ACTIONS(1565), - [anon_sym_signed] = ACTIONS(1565), - [anon_sym_unsigned] = ACTIONS(1565), - [anon_sym_long] = ACTIONS(1565), - [anon_sym_short] = ACTIONS(1565), - [sym_primitive_type] = ACTIONS(1565), - [anon_sym_enum] = ACTIONS(1565), - [anon_sym_class] = ACTIONS(1565), - [anon_sym_struct] = ACTIONS(1565), - [anon_sym_union] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_switch] = ACTIONS(1565), - [anon_sym_case] = ACTIONS(1565), - [anon_sym_default] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_goto] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_PLUS_PLUS] = ACTIONS(1567), - [anon_sym_sizeof] = ACTIONS(1565), - [sym_number_literal] = ACTIONS(1567), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1567), - [anon_sym_u_DQUOTE] = ACTIONS(1567), - [anon_sym_U_DQUOTE] = ACTIONS(1567), - [anon_sym_u8_DQUOTE] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym_true] = ACTIONS(1565), - [sym_false] = ACTIONS(1565), - [sym_null] = ACTIONS(1565), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1565), - [anon_sym_virtual] = ACTIONS(1565), - [anon_sym_explicit] = ACTIONS(1565), - [sym_auto] = ACTIONS(1565), - [anon_sym_typename] = ACTIONS(1565), - [anon_sym_template] = ACTIONS(1565), - [anon_sym_operator] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_throw] = ACTIONS(1565), - [anon_sym_namespace] = ACTIONS(1565), - [anon_sym_using] = ACTIONS(1565), - [anon_sym_static_assert] = ACTIONS(1565), - [anon_sym_co_return] = ACTIONS(1565), - [anon_sym_co_yield] = ACTIONS(1565), - [anon_sym_try] = ACTIONS(1565), - [anon_sym_co_await] = ACTIONS(1565), - [anon_sym_new] = ACTIONS(1565), - [sym_this] = ACTIONS(1565), - [sym_nullptr] = ACTIONS(1565), - [sym_alone_macro] = ACTIONS(1567), - [aux_sym_alone_macro_call_token1] = ACTIONS(1565), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_FORWARD] = ACTIONS(1565), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1565), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_PS_GET] = ACTIONS(1565), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1565), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1565), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1565), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1565), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1565), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1565), - [anon_sym_MOZ_COLD] = ACTIONS(1565), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1565), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1565), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1565), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1565), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1565), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1565), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1565), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1565), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1565), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1565), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1565), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1565), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1565), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_NONNULL] = ACTIONS(1565), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1565), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1565), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1565), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1565), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1565), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1565), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1565), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1565), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1565), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1565), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1565), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1565), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1565), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1565), - [anon_sym_MOZ_RAII] = ACTIONS(1565), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1565), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1565), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1565), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1565), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1565), - [sym_raw_string_literal] = ACTIONS(1567), - }, - [130] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [131] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [132] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [133] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [134] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [135] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [136] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [137] = { - [sym_identifier] = ACTIONS(1569), - [aux_sym_preproc_include_token1] = ACTIONS(1569), - [aux_sym_preproc_def_token1] = ACTIONS(1569), - [aux_sym_preproc_if_token1] = ACTIONS(1569), - [aux_sym_preproc_if_token2] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1569), - [aux_sym_preproc_else_token1] = ACTIONS(1569), - [aux_sym_preproc_elif_token1] = ACTIONS(1569), - [sym_preproc_directive] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP_AMP] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_typedef] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym___attribute__] = ACTIONS(1569), - [anon_sym_COLON_COLON] = ACTIONS(1571), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1571), - [anon_sym___declspec] = ACTIONS(1569), - [anon_sym___based] = ACTIONS(1569), - [anon_sym___cdecl] = ACTIONS(1569), - [anon_sym___clrcall] = ACTIONS(1569), - [anon_sym___stdcall] = ACTIONS(1569), - [anon_sym___fastcall] = ACTIONS(1569), - [anon_sym___thiscall] = ACTIONS(1569), - [anon_sym___vectorcall] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1569), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_inline] = ACTIONS(1569), - [anon_sym_thread_local] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [anon_sym_volatile] = ACTIONS(1569), - [anon_sym_restrict] = ACTIONS(1569), - [anon_sym__Atomic] = ACTIONS(1569), - [anon_sym_mutable] = ACTIONS(1569), - [anon_sym_constexpr] = ACTIONS(1569), - [anon_sym_signed] = ACTIONS(1569), - [anon_sym_unsigned] = ACTIONS(1569), - [anon_sym_long] = ACTIONS(1569), - [anon_sym_short] = ACTIONS(1569), - [sym_primitive_type] = ACTIONS(1569), - [anon_sym_enum] = ACTIONS(1569), - [anon_sym_class] = ACTIONS(1569), - [anon_sym_struct] = ACTIONS(1569), - [anon_sym_union] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_switch] = ACTIONS(1569), - [anon_sym_case] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_goto] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_sizeof] = ACTIONS(1569), - [sym_number_literal] = ACTIONS(1571), - [anon_sym_L_SQUOTE] = ACTIONS(1571), - [anon_sym_u_SQUOTE] = ACTIONS(1571), - [anon_sym_U_SQUOTE] = ACTIONS(1571), - [anon_sym_u8_SQUOTE] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1571), - [anon_sym_L_DQUOTE] = ACTIONS(1571), - [anon_sym_u_DQUOTE] = ACTIONS(1571), - [anon_sym_U_DQUOTE] = ACTIONS(1571), - [anon_sym_u8_DQUOTE] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym_true] = ACTIONS(1569), - [sym_false] = ACTIONS(1569), - [sym_null] = ACTIONS(1569), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1569), - [anon_sym_virtual] = ACTIONS(1569), - [anon_sym_explicit] = ACTIONS(1569), - [sym_auto] = ACTIONS(1569), - [anon_sym_typename] = ACTIONS(1569), - [anon_sym_template] = ACTIONS(1569), - [anon_sym_operator] = ACTIONS(1569), - [anon_sym_delete] = ACTIONS(1569), - [anon_sym_throw] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1569), - [anon_sym_using] = ACTIONS(1569), - [anon_sym_static_assert] = ACTIONS(1569), - [anon_sym_co_return] = ACTIONS(1569), - [anon_sym_co_yield] = ACTIONS(1569), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_co_await] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [sym_this] = ACTIONS(1569), - [sym_nullptr] = ACTIONS(1569), - [sym_alone_macro] = ACTIONS(1571), - [aux_sym_alone_macro_call_token1] = ACTIONS(1569), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_FORWARD] = ACTIONS(1569), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1569), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_PS_GET] = ACTIONS(1569), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1569), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1569), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1569), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1569), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1569), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1569), - [anon_sym_MOZ_COLD] = ACTIONS(1569), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1569), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1569), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1569), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1569), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1569), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1569), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1569), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1569), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1569), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1569), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1569), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1569), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1569), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_NONNULL] = ACTIONS(1569), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1569), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1569), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1569), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1569), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1569), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1569), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1569), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1569), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1569), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1569), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1569), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1569), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1569), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1569), - [anon_sym_MOZ_RAII] = ACTIONS(1569), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1569), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1569), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1569), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1569), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1569), - [sym_raw_string_literal] = ACTIONS(1571), - }, - [138] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [139] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [140] = { - [sym_identifier] = ACTIONS(1573), - [aux_sym_preproc_include_token1] = ACTIONS(1573), - [aux_sym_preproc_def_token1] = ACTIONS(1573), - [aux_sym_preproc_if_token1] = ACTIONS(1573), - [aux_sym_preproc_if_token2] = ACTIONS(1573), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1573), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1573), - [aux_sym_preproc_else_token1] = ACTIONS(1573), - [aux_sym_preproc_elif_token1] = ACTIONS(1573), - [sym_preproc_directive] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_BANG] = ACTIONS(1575), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1573), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_STAR] = ACTIONS(1575), - [anon_sym_AMP_AMP] = ACTIONS(1575), - [anon_sym_AMP] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_typedef] = ACTIONS(1573), - [anon_sym_extern] = ACTIONS(1573), - [anon_sym___attribute__] = ACTIONS(1573), - [anon_sym_COLON_COLON] = ACTIONS(1575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1575), - [anon_sym___declspec] = ACTIONS(1573), - [anon_sym___based] = ACTIONS(1573), - [anon_sym___cdecl] = ACTIONS(1573), - [anon_sym___clrcall] = ACTIONS(1573), - [anon_sym___stdcall] = ACTIONS(1573), - [anon_sym___fastcall] = ACTIONS(1573), - [anon_sym___thiscall] = ACTIONS(1573), - [anon_sym___vectorcall] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1573), - [anon_sym_static] = ACTIONS(1573), - [anon_sym_register] = ACTIONS(1573), - [anon_sym_inline] = ACTIONS(1573), - [anon_sym_thread_local] = ACTIONS(1573), - [anon_sym_const] = ACTIONS(1573), - [anon_sym_volatile] = ACTIONS(1573), - [anon_sym_restrict] = ACTIONS(1573), - [anon_sym__Atomic] = ACTIONS(1573), - [anon_sym_mutable] = ACTIONS(1573), - [anon_sym_constexpr] = ACTIONS(1573), - [anon_sym_signed] = ACTIONS(1573), - [anon_sym_unsigned] = ACTIONS(1573), - [anon_sym_long] = ACTIONS(1573), - [anon_sym_short] = ACTIONS(1573), - [sym_primitive_type] = ACTIONS(1573), - [anon_sym_enum] = ACTIONS(1573), - [anon_sym_class] = ACTIONS(1573), - [anon_sym_struct] = ACTIONS(1573), - [anon_sym_union] = ACTIONS(1573), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_else] = ACTIONS(1573), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1573), - [anon_sym_default] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1573), - [anon_sym_do] = ACTIONS(1573), - [anon_sym_for] = ACTIONS(1573), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1573), - [anon_sym_continue] = ACTIONS(1573), - [anon_sym_goto] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_sizeof] = ACTIONS(1573), - [sym_number_literal] = ACTIONS(1575), - [anon_sym_L_SQUOTE] = ACTIONS(1575), - [anon_sym_u_SQUOTE] = ACTIONS(1575), - [anon_sym_U_SQUOTE] = ACTIONS(1575), - [anon_sym_u8_SQUOTE] = ACTIONS(1575), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_L_DQUOTE] = ACTIONS(1575), - [anon_sym_u_DQUOTE] = ACTIONS(1575), - [anon_sym_U_DQUOTE] = ACTIONS(1575), - [anon_sym_u8_DQUOTE] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym_true] = ACTIONS(1573), - [sym_false] = ACTIONS(1573), - [sym_null] = ACTIONS(1573), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1573), - [anon_sym_virtual] = ACTIONS(1573), - [anon_sym_explicit] = ACTIONS(1573), - [sym_auto] = ACTIONS(1573), - [anon_sym_typename] = ACTIONS(1573), - [anon_sym_template] = ACTIONS(1573), - [anon_sym_operator] = ACTIONS(1573), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_throw] = ACTIONS(1573), - [anon_sym_namespace] = ACTIONS(1573), - [anon_sym_using] = ACTIONS(1573), - [anon_sym_static_assert] = ACTIONS(1573), - [anon_sym_co_return] = ACTIONS(1573), - [anon_sym_co_yield] = ACTIONS(1573), - [anon_sym_try] = ACTIONS(1573), - [anon_sym_co_await] = ACTIONS(1573), - [anon_sym_new] = ACTIONS(1573), - [sym_this] = ACTIONS(1573), - [sym_nullptr] = ACTIONS(1573), - [sym_alone_macro] = ACTIONS(1575), - [aux_sym_alone_macro_call_token1] = ACTIONS(1573), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_FORWARD] = ACTIONS(1573), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1573), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_PS_GET] = ACTIONS(1573), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1573), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1573), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1573), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1573), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1573), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1573), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1573), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1573), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1573), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1573), - [anon_sym_MOZ_COLD] = ACTIONS(1573), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1573), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1573), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1573), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1573), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1573), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1573), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1573), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1573), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1573), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1573), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1573), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1573), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1573), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1573), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1573), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1573), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1573), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1573), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1573), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1573), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_NONNULL] = ACTIONS(1573), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1573), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1573), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1573), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1573), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1573), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_NORETURN] = ACTIONS(1573), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1573), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1573), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1573), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1573), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1573), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1573), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1573), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1573), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1573), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1573), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1573), - [anon_sym_MOZ_RAII] = ACTIONS(1573), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1573), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1573), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1573), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1573), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1573), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1573), - [sym_raw_string_literal] = ACTIONS(1575), - }, - [141] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [142] = { - [sym_identifier] = ACTIONS(1577), - [aux_sym_preproc_include_token1] = ACTIONS(1577), - [aux_sym_preproc_def_token1] = ACTIONS(1577), - [aux_sym_preproc_if_token1] = ACTIONS(1577), - [aux_sym_preproc_if_token2] = ACTIONS(1577), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1577), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1577), - [aux_sym_preproc_else_token1] = ACTIONS(1577), - [aux_sym_preproc_elif_token1] = ACTIONS(1577), - [sym_preproc_directive] = ACTIONS(1577), - [anon_sym_LPAREN2] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1579), - [anon_sym_TILDE] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_AMP_AMP] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_typedef] = ACTIONS(1577), - [anon_sym_extern] = ACTIONS(1577), - [anon_sym___attribute__] = ACTIONS(1577), - [anon_sym_COLON_COLON] = ACTIONS(1579), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1579), - [anon_sym___declspec] = ACTIONS(1577), - [anon_sym___based] = ACTIONS(1577), - [anon_sym___cdecl] = ACTIONS(1577), - [anon_sym___clrcall] = ACTIONS(1577), - [anon_sym___stdcall] = ACTIONS(1577), - [anon_sym___fastcall] = ACTIONS(1577), - [anon_sym___thiscall] = ACTIONS(1577), - [anon_sym___vectorcall] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_register] = ACTIONS(1577), - [anon_sym_inline] = ACTIONS(1577), - [anon_sym_thread_local] = ACTIONS(1577), - [anon_sym_const] = ACTIONS(1577), - [anon_sym_volatile] = ACTIONS(1577), - [anon_sym_restrict] = ACTIONS(1577), - [anon_sym__Atomic] = ACTIONS(1577), - [anon_sym_mutable] = ACTIONS(1577), - [anon_sym_constexpr] = ACTIONS(1577), - [anon_sym_signed] = ACTIONS(1577), - [anon_sym_unsigned] = ACTIONS(1577), - [anon_sym_long] = ACTIONS(1577), - [anon_sym_short] = ACTIONS(1577), - [sym_primitive_type] = ACTIONS(1577), - [anon_sym_enum] = ACTIONS(1577), - [anon_sym_class] = ACTIONS(1577), - [anon_sym_struct] = ACTIONS(1577), - [anon_sym_union] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_else] = ACTIONS(1577), - [anon_sym_switch] = ACTIONS(1577), - [anon_sym_case] = ACTIONS(1577), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1577), - [anon_sym_do] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_return] = ACTIONS(1577), - [anon_sym_break] = ACTIONS(1577), - [anon_sym_continue] = ACTIONS(1577), - [anon_sym_goto] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1577), - [sym_number_literal] = ACTIONS(1579), - [anon_sym_L_SQUOTE] = ACTIONS(1579), - [anon_sym_u_SQUOTE] = ACTIONS(1579), - [anon_sym_U_SQUOTE] = ACTIONS(1579), - [anon_sym_u8_SQUOTE] = ACTIONS(1579), - [anon_sym_SQUOTE] = ACTIONS(1579), - [anon_sym_L_DQUOTE] = ACTIONS(1579), - [anon_sym_u_DQUOTE] = ACTIONS(1579), - [anon_sym_U_DQUOTE] = ACTIONS(1579), - [anon_sym_u8_DQUOTE] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1577), - [anon_sym_virtual] = ACTIONS(1577), - [anon_sym_explicit] = ACTIONS(1577), - [sym_auto] = ACTIONS(1577), - [anon_sym_typename] = ACTIONS(1577), - [anon_sym_template] = ACTIONS(1577), - [anon_sym_operator] = ACTIONS(1577), - [anon_sym_delete] = ACTIONS(1577), - [anon_sym_throw] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1577), - [anon_sym_using] = ACTIONS(1577), - [anon_sym_static_assert] = ACTIONS(1577), - [anon_sym_co_return] = ACTIONS(1577), - [anon_sym_co_yield] = ACTIONS(1577), - [anon_sym_try] = ACTIONS(1577), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1577), - [sym_this] = ACTIONS(1577), - [sym_nullptr] = ACTIONS(1577), - [sym_alone_macro] = ACTIONS(1579), - [aux_sym_alone_macro_call_token1] = ACTIONS(1577), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_FORWARD] = ACTIONS(1577), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1577), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_PS_GET] = ACTIONS(1577), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1577), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1577), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1577), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1577), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1577), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1577), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1577), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1577), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1577), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1577), - [anon_sym_MOZ_COLD] = ACTIONS(1577), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1577), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1577), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1577), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1577), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1577), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1577), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1577), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1577), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1577), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1577), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1577), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1577), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1577), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1577), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1577), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1577), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1577), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1577), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1577), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1577), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_NONNULL] = ACTIONS(1577), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1577), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1577), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1577), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1577), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1577), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_NORETURN] = ACTIONS(1577), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1577), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1577), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1577), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1577), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1577), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1577), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1577), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1577), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1577), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1577), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1577), - [anon_sym_MOZ_RAII] = ACTIONS(1577), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1577), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1577), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1577), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1577), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1577), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1577), - [sym_raw_string_literal] = ACTIONS(1579), - }, - [143] = { - [sym_identifier] = ACTIONS(1581), - [aux_sym_preproc_include_token1] = ACTIONS(1581), - [aux_sym_preproc_def_token1] = ACTIONS(1581), - [aux_sym_preproc_if_token1] = ACTIONS(1581), - [aux_sym_preproc_if_token2] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1581), - [aux_sym_preproc_else_token1] = ACTIONS(1581), - [aux_sym_preproc_elif_token1] = ACTIONS(1581), - [sym_preproc_directive] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_TILDE] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1581), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_typedef] = ACTIONS(1581), - [anon_sym_extern] = ACTIONS(1581), - [anon_sym___attribute__] = ACTIONS(1581), - [anon_sym_COLON_COLON] = ACTIONS(1583), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1583), - [anon_sym___declspec] = ACTIONS(1581), - [anon_sym___based] = ACTIONS(1581), - [anon_sym___cdecl] = ACTIONS(1581), - [anon_sym___clrcall] = ACTIONS(1581), - [anon_sym___stdcall] = ACTIONS(1581), - [anon_sym___fastcall] = ACTIONS(1581), - [anon_sym___thiscall] = ACTIONS(1581), - [anon_sym___vectorcall] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1581), - [anon_sym_register] = ACTIONS(1581), - [anon_sym_inline] = ACTIONS(1581), - [anon_sym_thread_local] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1581), - [anon_sym_volatile] = ACTIONS(1581), - [anon_sym_restrict] = ACTIONS(1581), - [anon_sym__Atomic] = ACTIONS(1581), - [anon_sym_mutable] = ACTIONS(1581), - [anon_sym_constexpr] = ACTIONS(1581), - [anon_sym_signed] = ACTIONS(1581), - [anon_sym_unsigned] = ACTIONS(1581), - [anon_sym_long] = ACTIONS(1581), - [anon_sym_short] = ACTIONS(1581), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_enum] = ACTIONS(1581), - [anon_sym_class] = ACTIONS(1581), - [anon_sym_struct] = ACTIONS(1581), - [anon_sym_union] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_else] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1581), - [anon_sym_case] = ACTIONS(1581), - [anon_sym_default] = ACTIONS(1581), - [anon_sym_while] = ACTIONS(1581), - [anon_sym_do] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1581), - [anon_sym_break] = ACTIONS(1581), - [anon_sym_continue] = ACTIONS(1581), - [anon_sym_goto] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(1583), - [anon_sym_L_SQUOTE] = ACTIONS(1583), - [anon_sym_u_SQUOTE] = ACTIONS(1583), - [anon_sym_U_SQUOTE] = ACTIONS(1583), - [anon_sym_u8_SQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1583), - [anon_sym_L_DQUOTE] = ACTIONS(1583), - [anon_sym_u_DQUOTE] = ACTIONS(1583), - [anon_sym_U_DQUOTE] = ACTIONS(1583), - [anon_sym_u8_DQUOTE] = ACTIONS(1583), - [anon_sym_DQUOTE] = ACTIONS(1583), - [sym_true] = ACTIONS(1581), - [sym_false] = ACTIONS(1581), - [sym_null] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1581), - [anon_sym_virtual] = ACTIONS(1581), - [anon_sym_explicit] = ACTIONS(1581), - [sym_auto] = ACTIONS(1581), - [anon_sym_typename] = ACTIONS(1581), - [anon_sym_template] = ACTIONS(1581), - [anon_sym_operator] = ACTIONS(1581), - [anon_sym_delete] = ACTIONS(1581), - [anon_sym_throw] = ACTIONS(1581), - [anon_sym_namespace] = ACTIONS(1581), - [anon_sym_using] = ACTIONS(1581), - [anon_sym_static_assert] = ACTIONS(1581), - [anon_sym_co_return] = ACTIONS(1581), - [anon_sym_co_yield] = ACTIONS(1581), - [anon_sym_try] = ACTIONS(1581), - [anon_sym_co_await] = ACTIONS(1581), - [anon_sym_new] = ACTIONS(1581), - [sym_this] = ACTIONS(1581), - [sym_nullptr] = ACTIONS(1581), - [sym_alone_macro] = ACTIONS(1583), - [aux_sym_alone_macro_call_token1] = ACTIONS(1581), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_FORWARD] = ACTIONS(1581), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1581), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_PS_GET] = ACTIONS(1581), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1581), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1581), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1581), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1581), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1581), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1581), - [anon_sym_MOZ_COLD] = ACTIONS(1581), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1581), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1581), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1581), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1581), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1581), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1581), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1581), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1581), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1581), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1581), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1581), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1581), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1581), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_NONNULL] = ACTIONS(1581), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1581), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1581), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1581), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1581), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1581), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1581), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1581), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1581), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1581), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1581), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1581), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1581), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1581), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1581), - [anon_sym_MOZ_RAII] = ACTIONS(1581), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1581), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1581), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1581), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1581), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1581), - [sym_raw_string_literal] = ACTIONS(1583), - }, - [144] = { - [sym_identifier] = ACTIONS(1585), - [aux_sym_preproc_include_token1] = ACTIONS(1585), - [aux_sym_preproc_def_token1] = ACTIONS(1585), - [aux_sym_preproc_if_token1] = ACTIONS(1585), - [aux_sym_preproc_if_token2] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1585), - [aux_sym_preproc_else_token1] = ACTIONS(1585), - [aux_sym_preproc_elif_token1] = ACTIONS(1585), - [sym_preproc_directive] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_AMP_AMP] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_typedef] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym___attribute__] = ACTIONS(1585), - [anon_sym_COLON_COLON] = ACTIONS(1587), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1587), - [anon_sym___declspec] = ACTIONS(1585), - [anon_sym___based] = ACTIONS(1585), - [anon_sym___cdecl] = ACTIONS(1585), - [anon_sym___clrcall] = ACTIONS(1585), - [anon_sym___stdcall] = ACTIONS(1585), - [anon_sym___fastcall] = ACTIONS(1585), - [anon_sym___thiscall] = ACTIONS(1585), - [anon_sym___vectorcall] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_register] = ACTIONS(1585), - [anon_sym_inline] = ACTIONS(1585), - [anon_sym_thread_local] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_volatile] = ACTIONS(1585), - [anon_sym_restrict] = ACTIONS(1585), - [anon_sym__Atomic] = ACTIONS(1585), - [anon_sym_mutable] = ACTIONS(1585), - [anon_sym_constexpr] = ACTIONS(1585), - [anon_sym_signed] = ACTIONS(1585), - [anon_sym_unsigned] = ACTIONS(1585), - [anon_sym_long] = ACTIONS(1585), - [anon_sym_short] = ACTIONS(1585), - [sym_primitive_type] = ACTIONS(1585), - [anon_sym_enum] = ACTIONS(1585), - [anon_sym_class] = ACTIONS(1585), - [anon_sym_struct] = ACTIONS(1585), - [anon_sym_union] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_else] = ACTIONS(1585), - [anon_sym_switch] = ACTIONS(1585), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_goto] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1587), - [anon_sym_u_SQUOTE] = ACTIONS(1587), - [anon_sym_U_SQUOTE] = ACTIONS(1587), - [anon_sym_u8_SQUOTE] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1587), - [anon_sym_L_DQUOTE] = ACTIONS(1587), - [anon_sym_u_DQUOTE] = ACTIONS(1587), - [anon_sym_U_DQUOTE] = ACTIONS(1587), - [anon_sym_u8_DQUOTE] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym_true] = ACTIONS(1585), - [sym_false] = ACTIONS(1585), - [sym_null] = ACTIONS(1585), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1585), - [anon_sym_virtual] = ACTIONS(1585), - [anon_sym_explicit] = ACTIONS(1585), - [sym_auto] = ACTIONS(1585), - [anon_sym_typename] = ACTIONS(1585), - [anon_sym_template] = ACTIONS(1585), - [anon_sym_operator] = ACTIONS(1585), - [anon_sym_delete] = ACTIONS(1585), - [anon_sym_throw] = ACTIONS(1585), - [anon_sym_namespace] = ACTIONS(1585), - [anon_sym_using] = ACTIONS(1585), - [anon_sym_static_assert] = ACTIONS(1585), - [anon_sym_co_return] = ACTIONS(1585), - [anon_sym_co_yield] = ACTIONS(1585), - [anon_sym_try] = ACTIONS(1585), - [anon_sym_co_await] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1585), - [sym_this] = ACTIONS(1585), - [sym_nullptr] = ACTIONS(1585), - [sym_alone_macro] = ACTIONS(1587), - [aux_sym_alone_macro_call_token1] = ACTIONS(1585), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_FORWARD] = ACTIONS(1585), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1585), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_PS_GET] = ACTIONS(1585), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1585), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1585), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1585), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1585), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1585), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1585), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1585), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1585), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1585), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1585), - [anon_sym_MOZ_COLD] = ACTIONS(1585), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1585), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1585), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1585), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1585), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1585), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1585), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1585), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1585), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1585), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1585), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1585), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1585), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1585), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1585), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1585), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1585), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1585), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1585), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1585), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1585), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_NONNULL] = ACTIONS(1585), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1585), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1585), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1585), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1585), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1585), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_NORETURN] = ACTIONS(1585), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1585), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1585), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1585), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1585), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1585), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1585), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1585), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1585), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1585), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1585), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1585), - [anon_sym_MOZ_RAII] = ACTIONS(1585), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1585), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1585), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1585), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1585), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1585), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1585), - [sym_raw_string_literal] = ACTIONS(1587), - }, - [145] = { - [sym_identifier] = ACTIONS(1589), - [aux_sym_preproc_include_token1] = ACTIONS(1589), - [aux_sym_preproc_def_token1] = ACTIONS(1589), - [aux_sym_preproc_if_token1] = ACTIONS(1589), - [aux_sym_preproc_if_token2] = ACTIONS(1589), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1589), - [aux_sym_preproc_else_token1] = ACTIONS(1589), - [aux_sym_preproc_elif_token1] = ACTIONS(1589), - [sym_preproc_directive] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1591), - [anon_sym_AMP_AMP] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_typedef] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym___attribute__] = ACTIONS(1589), - [anon_sym_COLON_COLON] = ACTIONS(1591), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1591), - [anon_sym___declspec] = ACTIONS(1589), - [anon_sym___based] = ACTIONS(1589), - [anon_sym___cdecl] = ACTIONS(1589), - [anon_sym___clrcall] = ACTIONS(1589), - [anon_sym___stdcall] = ACTIONS(1589), - [anon_sym___fastcall] = ACTIONS(1589), - [anon_sym___thiscall] = ACTIONS(1589), - [anon_sym___vectorcall] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_inline] = ACTIONS(1589), - [anon_sym_thread_local] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [anon_sym_volatile] = ACTIONS(1589), - [anon_sym_restrict] = ACTIONS(1589), - [anon_sym__Atomic] = ACTIONS(1589), - [anon_sym_mutable] = ACTIONS(1589), - [anon_sym_constexpr] = ACTIONS(1589), - [anon_sym_signed] = ACTIONS(1589), - [anon_sym_unsigned] = ACTIONS(1589), - [anon_sym_long] = ACTIONS(1589), - [anon_sym_short] = ACTIONS(1589), - [sym_primitive_type] = ACTIONS(1589), - [anon_sym_enum] = ACTIONS(1589), - [anon_sym_class] = ACTIONS(1589), - [anon_sym_struct] = ACTIONS(1589), - [anon_sym_union] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_switch] = ACTIONS(1589), - [anon_sym_case] = ACTIONS(1589), - [anon_sym_default] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_goto] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_sizeof] = ACTIONS(1589), - [sym_number_literal] = ACTIONS(1591), - [anon_sym_L_SQUOTE] = ACTIONS(1591), - [anon_sym_u_SQUOTE] = ACTIONS(1591), - [anon_sym_U_SQUOTE] = ACTIONS(1591), - [anon_sym_u8_SQUOTE] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1591), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1589), - [anon_sym_virtual] = ACTIONS(1589), - [anon_sym_explicit] = ACTIONS(1589), - [sym_auto] = ACTIONS(1589), - [anon_sym_typename] = ACTIONS(1589), - [anon_sym_template] = ACTIONS(1589), - [anon_sym_operator] = ACTIONS(1589), - [anon_sym_delete] = ACTIONS(1589), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_namespace] = ACTIONS(1589), - [anon_sym_using] = ACTIONS(1589), - [anon_sym_static_assert] = ACTIONS(1589), - [anon_sym_co_return] = ACTIONS(1589), - [anon_sym_co_yield] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_co_await] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [sym_this] = ACTIONS(1589), - [sym_nullptr] = ACTIONS(1589), - [sym_alone_macro] = ACTIONS(1591), - [aux_sym_alone_macro_call_token1] = ACTIONS(1589), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_FORWARD] = ACTIONS(1589), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1589), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_PS_GET] = ACTIONS(1589), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1589), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1589), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1589), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1589), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1589), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1589), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1589), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1589), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1589), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1589), - [anon_sym_MOZ_COLD] = ACTIONS(1589), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1589), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1589), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1589), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1589), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1589), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1589), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1589), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1589), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1589), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1589), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1589), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1589), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1589), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1589), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1589), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1589), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1589), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1589), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1589), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1589), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_NONNULL] = ACTIONS(1589), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1589), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1589), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1589), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1589), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1589), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_NORETURN] = ACTIONS(1589), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1589), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1589), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1589), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1589), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1589), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1589), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1589), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1589), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1589), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1589), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1589), - [anon_sym_MOZ_RAII] = ACTIONS(1589), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1589), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1589), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1589), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1589), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1589), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1589), - [sym_raw_string_literal] = ACTIONS(1591), - }, - [146] = { - [sym_identifier] = ACTIONS(1593), - [aux_sym_preproc_include_token1] = ACTIONS(1593), - [aux_sym_preproc_def_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token2] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1593), - [aux_sym_preproc_else_token1] = ACTIONS(1593), - [aux_sym_preproc_elif_token1] = ACTIONS(1593), - [sym_preproc_directive] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_typedef] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym___attribute__] = ACTIONS(1593), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1593), - [anon_sym___based] = ACTIONS(1593), - [anon_sym___cdecl] = ACTIONS(1593), - [anon_sym___clrcall] = ACTIONS(1593), - [anon_sym___stdcall] = ACTIONS(1593), - [anon_sym___fastcall] = ACTIONS(1593), - [anon_sym___thiscall] = ACTIONS(1593), - [anon_sym___vectorcall] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_inline] = ACTIONS(1593), - [anon_sym_thread_local] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_volatile] = ACTIONS(1593), - [anon_sym_restrict] = ACTIONS(1593), - [anon_sym__Atomic] = ACTIONS(1593), - [anon_sym_mutable] = ACTIONS(1593), - [anon_sym_constexpr] = ACTIONS(1593), - [anon_sym_signed] = ACTIONS(1593), - [anon_sym_unsigned] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [sym_primitive_type] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_class] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_else] = ACTIONS(1593), - [anon_sym_switch] = ACTIONS(1593), - [anon_sym_case] = ACTIONS(1593), - [anon_sym_default] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_goto] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_PLUS_PLUS] = ACTIONS(1595), - [anon_sym_sizeof] = ACTIONS(1593), - [sym_number_literal] = ACTIONS(1595), - [anon_sym_L_SQUOTE] = ACTIONS(1595), - [anon_sym_u_SQUOTE] = ACTIONS(1595), - [anon_sym_U_SQUOTE] = ACTIONS(1595), - [anon_sym_u8_SQUOTE] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1595), - [anon_sym_L_DQUOTE] = ACTIONS(1595), - [anon_sym_u_DQUOTE] = ACTIONS(1595), - [anon_sym_U_DQUOTE] = ACTIONS(1595), - [anon_sym_u8_DQUOTE] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1593), - [anon_sym_virtual] = ACTIONS(1593), - [anon_sym_explicit] = ACTIONS(1593), - [sym_auto] = ACTIONS(1593), - [anon_sym_typename] = ACTIONS(1593), - [anon_sym_template] = ACTIONS(1593), - [anon_sym_operator] = ACTIONS(1593), - [anon_sym_delete] = ACTIONS(1593), - [anon_sym_throw] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1593), - [anon_sym_using] = ACTIONS(1593), - [anon_sym_static_assert] = ACTIONS(1593), - [anon_sym_co_return] = ACTIONS(1593), - [anon_sym_co_yield] = ACTIONS(1593), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_co_await] = ACTIONS(1593), - [anon_sym_new] = ACTIONS(1593), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), - [sym_alone_macro] = ACTIONS(1595), - [aux_sym_alone_macro_call_token1] = ACTIONS(1593), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_FORWARD] = ACTIONS(1593), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1593), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_PS_GET] = ACTIONS(1593), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1593), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1593), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1593), - [anon_sym_MOZ_COLD] = ACTIONS(1593), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1593), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1593), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1593), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1593), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1593), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1593), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1593), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1593), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1593), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1593), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1593), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1593), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_RAII] = ACTIONS(1593), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1593), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1593), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1593), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1593), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1593), - [sym_raw_string_literal] = ACTIONS(1595), - }, - [147] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [148] = { - [sym_identifier] = ACTIONS(1597), - [aux_sym_preproc_include_token1] = ACTIONS(1597), - [aux_sym_preproc_def_token1] = ACTIONS(1597), - [aux_sym_preproc_if_token1] = ACTIONS(1597), - [aux_sym_preproc_if_token2] = ACTIONS(1597), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1597), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1597), - [aux_sym_preproc_else_token1] = ACTIONS(1597), - [aux_sym_preproc_elif_token1] = ACTIONS(1597), - [sym_preproc_directive] = ACTIONS(1597), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_typedef] = ACTIONS(1597), - [anon_sym_extern] = ACTIONS(1597), - [anon_sym___attribute__] = ACTIONS(1597), - [anon_sym_COLON_COLON] = ACTIONS(1599), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), - [anon_sym___declspec] = ACTIONS(1597), - [anon_sym___based] = ACTIONS(1597), - [anon_sym___cdecl] = ACTIONS(1597), - [anon_sym___clrcall] = ACTIONS(1597), - [anon_sym___stdcall] = ACTIONS(1597), - [anon_sym___fastcall] = ACTIONS(1597), - [anon_sym___thiscall] = ACTIONS(1597), - [anon_sym___vectorcall] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1597), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_register] = ACTIONS(1597), - [anon_sym_inline] = ACTIONS(1597), - [anon_sym_thread_local] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(1597), - [anon_sym_volatile] = ACTIONS(1597), - [anon_sym_restrict] = ACTIONS(1597), - [anon_sym__Atomic] = ACTIONS(1597), - [anon_sym_mutable] = ACTIONS(1597), - [anon_sym_constexpr] = ACTIONS(1597), - [anon_sym_signed] = ACTIONS(1597), - [anon_sym_unsigned] = ACTIONS(1597), - [anon_sym_long] = ACTIONS(1597), - [anon_sym_short] = ACTIONS(1597), - [sym_primitive_type] = ACTIONS(1597), - [anon_sym_enum] = ACTIONS(1597), - [anon_sym_class] = ACTIONS(1597), - [anon_sym_struct] = ACTIONS(1597), - [anon_sym_union] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_else] = ACTIONS(1597), - [anon_sym_switch] = ACTIONS(1597), - [anon_sym_case] = ACTIONS(1597), - [anon_sym_default] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_do] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_goto] = ACTIONS(1597), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_sizeof] = ACTIONS(1597), - [sym_number_literal] = ACTIONS(1599), - [anon_sym_L_SQUOTE] = ACTIONS(1599), - [anon_sym_u_SQUOTE] = ACTIONS(1599), - [anon_sym_U_SQUOTE] = ACTIONS(1599), - [anon_sym_u8_SQUOTE] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_L_DQUOTE] = ACTIONS(1599), - [anon_sym_u_DQUOTE] = ACTIONS(1599), - [anon_sym_U_DQUOTE] = ACTIONS(1599), - [anon_sym_u8_DQUOTE] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym_true] = ACTIONS(1597), - [sym_false] = ACTIONS(1597), - [sym_null] = ACTIONS(1597), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1597), - [anon_sym_virtual] = ACTIONS(1597), - [anon_sym_explicit] = ACTIONS(1597), - [sym_auto] = ACTIONS(1597), - [anon_sym_typename] = ACTIONS(1597), - [anon_sym_template] = ACTIONS(1597), - [anon_sym_operator] = ACTIONS(1597), - [anon_sym_delete] = ACTIONS(1597), - [anon_sym_throw] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_using] = ACTIONS(1597), - [anon_sym_static_assert] = ACTIONS(1597), - [anon_sym_co_return] = ACTIONS(1597), - [anon_sym_co_yield] = ACTIONS(1597), - [anon_sym_try] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1597), - [anon_sym_new] = ACTIONS(1597), - [sym_this] = ACTIONS(1597), - [sym_nullptr] = ACTIONS(1597), - [sym_alone_macro] = ACTIONS(1599), - [aux_sym_alone_macro_call_token1] = ACTIONS(1597), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_FORWARD] = ACTIONS(1597), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1597), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_PS_GET] = ACTIONS(1597), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1597), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1597), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1597), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1597), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1597), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1597), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1597), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1597), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1597), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1597), - [anon_sym_MOZ_COLD] = ACTIONS(1597), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1597), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1597), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1597), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1597), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1597), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1597), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1597), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1597), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1597), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1597), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1597), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1597), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1597), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1597), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1597), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1597), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1597), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1597), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1597), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1597), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_NONNULL] = ACTIONS(1597), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1597), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1597), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1597), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1597), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1597), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_NORETURN] = ACTIONS(1597), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1597), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1597), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1597), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1597), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1597), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1597), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1597), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1597), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1597), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1597), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1597), - [anon_sym_MOZ_RAII] = ACTIONS(1597), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1597), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1597), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1597), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1597), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1597), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1597), - [sym_raw_string_literal] = ACTIONS(1599), - }, - [149] = { - [sym_identifier] = ACTIONS(1601), - [aux_sym_preproc_include_token1] = ACTIONS(1601), - [aux_sym_preproc_def_token1] = ACTIONS(1601), - [aux_sym_preproc_if_token1] = ACTIONS(1601), - [aux_sym_preproc_if_token2] = ACTIONS(1601), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1601), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1601), - [aux_sym_preproc_else_token1] = ACTIONS(1601), - [aux_sym_preproc_elif_token1] = ACTIONS(1601), - [sym_preproc_directive] = ACTIONS(1601), - [anon_sym_LPAREN2] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(1603), - [anon_sym_AMP] = ACTIONS(1601), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_typedef] = ACTIONS(1601), - [anon_sym_extern] = ACTIONS(1601), - [anon_sym___attribute__] = ACTIONS(1601), - [anon_sym_COLON_COLON] = ACTIONS(1603), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1603), - [anon_sym___declspec] = ACTIONS(1601), - [anon_sym___based] = ACTIONS(1601), - [anon_sym___cdecl] = ACTIONS(1601), - [anon_sym___clrcall] = ACTIONS(1601), - [anon_sym___stdcall] = ACTIONS(1601), - [anon_sym___fastcall] = ACTIONS(1601), - [anon_sym___thiscall] = ACTIONS(1601), - [anon_sym___vectorcall] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_static] = ACTIONS(1601), - [anon_sym_register] = ACTIONS(1601), - [anon_sym_inline] = ACTIONS(1601), - [anon_sym_thread_local] = ACTIONS(1601), - [anon_sym_const] = ACTIONS(1601), - [anon_sym_volatile] = ACTIONS(1601), - [anon_sym_restrict] = ACTIONS(1601), - [anon_sym__Atomic] = ACTIONS(1601), - [anon_sym_mutable] = ACTIONS(1601), - [anon_sym_constexpr] = ACTIONS(1601), - [anon_sym_signed] = ACTIONS(1601), - [anon_sym_unsigned] = ACTIONS(1601), - [anon_sym_long] = ACTIONS(1601), - [anon_sym_short] = ACTIONS(1601), - [sym_primitive_type] = ACTIONS(1601), - [anon_sym_enum] = ACTIONS(1601), - [anon_sym_class] = ACTIONS(1601), - [anon_sym_struct] = ACTIONS(1601), - [anon_sym_union] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1601), - [anon_sym_else] = ACTIONS(1601), - [anon_sym_switch] = ACTIONS(1601), - [anon_sym_case] = ACTIONS(1601), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1601), - [anon_sym_do] = ACTIONS(1601), - [anon_sym_for] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_break] = ACTIONS(1601), - [anon_sym_continue] = ACTIONS(1601), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1603), - [anon_sym_sizeof] = ACTIONS(1601), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_L_SQUOTE] = ACTIONS(1603), - [anon_sym_u_SQUOTE] = ACTIONS(1603), - [anon_sym_U_SQUOTE] = ACTIONS(1603), - [anon_sym_u8_SQUOTE] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(1603), - [anon_sym_L_DQUOTE] = ACTIONS(1603), - [anon_sym_u_DQUOTE] = ACTIONS(1603), - [anon_sym_U_DQUOTE] = ACTIONS(1603), - [anon_sym_u8_DQUOTE] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1601), - [anon_sym_virtual] = ACTIONS(1601), - [anon_sym_explicit] = ACTIONS(1601), - [sym_auto] = ACTIONS(1601), - [anon_sym_typename] = ACTIONS(1601), - [anon_sym_template] = ACTIONS(1601), - [anon_sym_operator] = ACTIONS(1601), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_throw] = ACTIONS(1601), - [anon_sym_namespace] = ACTIONS(1601), - [anon_sym_using] = ACTIONS(1601), - [anon_sym_static_assert] = ACTIONS(1601), - [anon_sym_co_return] = ACTIONS(1601), - [anon_sym_co_yield] = ACTIONS(1601), - [anon_sym_try] = ACTIONS(1601), - [anon_sym_co_await] = ACTIONS(1601), - [anon_sym_new] = ACTIONS(1601), - [sym_this] = ACTIONS(1601), - [sym_nullptr] = ACTIONS(1601), - [sym_alone_macro] = ACTIONS(1603), - [aux_sym_alone_macro_call_token1] = ACTIONS(1601), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_FORWARD] = ACTIONS(1601), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1601), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_PS_GET] = ACTIONS(1601), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1601), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1601), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1601), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1601), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1601), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1601), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1601), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1601), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1601), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1601), - [anon_sym_MOZ_COLD] = ACTIONS(1601), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1601), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1601), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1601), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1601), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1601), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1601), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1601), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1601), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1601), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1601), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1601), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1601), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1601), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1601), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1601), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1601), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1601), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1601), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1601), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1601), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_NONNULL] = ACTIONS(1601), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1601), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1601), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1601), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1601), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1601), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_NORETURN] = ACTIONS(1601), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1601), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1601), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1601), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1601), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1601), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1601), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1601), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1601), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1601), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1601), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1601), - [anon_sym_MOZ_RAII] = ACTIONS(1601), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1601), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1601), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1601), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1601), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1601), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1601), - [sym_raw_string_literal] = ACTIONS(1603), - }, - [150] = { - [sym_identifier] = ACTIONS(1605), - [aux_sym_preproc_include_token1] = ACTIONS(1605), - [aux_sym_preproc_def_token1] = ACTIONS(1605), - [aux_sym_preproc_if_token1] = ACTIONS(1605), - [aux_sym_preproc_if_token2] = ACTIONS(1605), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1605), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1605), - [aux_sym_preproc_else_token1] = ACTIONS(1605), - [aux_sym_preproc_elif_token1] = ACTIONS(1605), - [sym_preproc_directive] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1607), - [anon_sym_TILDE] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_AMP_AMP] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_typedef] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym___attribute__] = ACTIONS(1605), - [anon_sym_COLON_COLON] = ACTIONS(1607), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1607), - [anon_sym___declspec] = ACTIONS(1605), - [anon_sym___based] = ACTIONS(1605), - [anon_sym___cdecl] = ACTIONS(1605), - [anon_sym___clrcall] = ACTIONS(1605), - [anon_sym___stdcall] = ACTIONS(1605), - [anon_sym___fastcall] = ACTIONS(1605), - [anon_sym___thiscall] = ACTIONS(1605), - [anon_sym___vectorcall] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_static] = ACTIONS(1605), - [anon_sym_register] = ACTIONS(1605), - [anon_sym_inline] = ACTIONS(1605), - [anon_sym_thread_local] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [anon_sym_volatile] = ACTIONS(1605), - [anon_sym_restrict] = ACTIONS(1605), - [anon_sym__Atomic] = ACTIONS(1605), - [anon_sym_mutable] = ACTIONS(1605), - [anon_sym_constexpr] = ACTIONS(1605), - [anon_sym_signed] = ACTIONS(1605), - [anon_sym_unsigned] = ACTIONS(1605), - [anon_sym_long] = ACTIONS(1605), - [anon_sym_short] = ACTIONS(1605), - [sym_primitive_type] = ACTIONS(1605), - [anon_sym_enum] = ACTIONS(1605), - [anon_sym_class] = ACTIONS(1605), - [anon_sym_struct] = ACTIONS(1605), - [anon_sym_union] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_else] = ACTIONS(1605), - [anon_sym_switch] = ACTIONS(1605), - [anon_sym_case] = ACTIONS(1605), - [anon_sym_default] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_goto] = ACTIONS(1605), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1605), - [sym_number_literal] = ACTIONS(1607), - [anon_sym_L_SQUOTE] = ACTIONS(1607), - [anon_sym_u_SQUOTE] = ACTIONS(1607), - [anon_sym_U_SQUOTE] = ACTIONS(1607), - [anon_sym_u8_SQUOTE] = ACTIONS(1607), - [anon_sym_SQUOTE] = ACTIONS(1607), - [anon_sym_L_DQUOTE] = ACTIONS(1607), - [anon_sym_u_DQUOTE] = ACTIONS(1607), - [anon_sym_U_DQUOTE] = ACTIONS(1607), - [anon_sym_u8_DQUOTE] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1605), - [anon_sym_virtual] = ACTIONS(1605), - [anon_sym_explicit] = ACTIONS(1605), - [sym_auto] = ACTIONS(1605), - [anon_sym_typename] = ACTIONS(1605), - [anon_sym_template] = ACTIONS(1605), - [anon_sym_operator] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_throw] = ACTIONS(1605), - [anon_sym_namespace] = ACTIONS(1605), - [anon_sym_using] = ACTIONS(1605), - [anon_sym_static_assert] = ACTIONS(1605), - [anon_sym_co_return] = ACTIONS(1605), - [anon_sym_co_yield] = ACTIONS(1605), - [anon_sym_try] = ACTIONS(1605), - [anon_sym_co_await] = ACTIONS(1605), - [anon_sym_new] = ACTIONS(1605), - [sym_this] = ACTIONS(1605), - [sym_nullptr] = ACTIONS(1605), - [sym_alone_macro] = ACTIONS(1607), - [aux_sym_alone_macro_call_token1] = ACTIONS(1605), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_FORWARD] = ACTIONS(1605), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1605), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_PS_GET] = ACTIONS(1605), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1605), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1605), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1605), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1605), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1605), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1605), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1605), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1605), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1605), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1605), - [anon_sym_MOZ_COLD] = ACTIONS(1605), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1605), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1605), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1605), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1605), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1605), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1605), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1605), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1605), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1605), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1605), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1605), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1605), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1605), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1605), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1605), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1605), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1605), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1605), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1605), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1605), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_NONNULL] = ACTIONS(1605), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1605), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1605), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1605), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1605), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1605), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_NORETURN] = ACTIONS(1605), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1605), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1605), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1605), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1605), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1605), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1605), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1605), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1605), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1605), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1605), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1605), - [anon_sym_MOZ_RAII] = ACTIONS(1605), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1605), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1605), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1605), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1605), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1605), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1605), - [sym_raw_string_literal] = ACTIONS(1607), - }, - [151] = { - [sym_identifier] = ACTIONS(1609), - [aux_sym_preproc_include_token1] = ACTIONS(1609), - [aux_sym_preproc_def_token1] = ACTIONS(1609), - [aux_sym_preproc_if_token1] = ACTIONS(1609), - [aux_sym_preproc_if_token2] = ACTIONS(1609), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1609), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1609), - [aux_sym_preproc_else_token1] = ACTIONS(1609), - [aux_sym_preproc_elif_token1] = ACTIONS(1609), - [sym_preproc_directive] = ACTIONS(1609), - [anon_sym_LPAREN2] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_AMP_AMP] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1611), - [anon_sym_typedef] = ACTIONS(1609), - [anon_sym_extern] = ACTIONS(1609), - [anon_sym___attribute__] = ACTIONS(1609), - [anon_sym_COLON_COLON] = ACTIONS(1611), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1611), - [anon_sym___declspec] = ACTIONS(1609), - [anon_sym___based] = ACTIONS(1609), - [anon_sym___cdecl] = ACTIONS(1609), - [anon_sym___clrcall] = ACTIONS(1609), - [anon_sym___stdcall] = ACTIONS(1609), - [anon_sym___fastcall] = ACTIONS(1609), - [anon_sym___thiscall] = ACTIONS(1609), - [anon_sym___vectorcall] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_static] = ACTIONS(1609), - [anon_sym_register] = ACTIONS(1609), - [anon_sym_inline] = ACTIONS(1609), - [anon_sym_thread_local] = ACTIONS(1609), - [anon_sym_const] = ACTIONS(1609), - [anon_sym_volatile] = ACTIONS(1609), - [anon_sym_restrict] = ACTIONS(1609), - [anon_sym__Atomic] = ACTIONS(1609), - [anon_sym_mutable] = ACTIONS(1609), - [anon_sym_constexpr] = ACTIONS(1609), - [anon_sym_signed] = ACTIONS(1609), - [anon_sym_unsigned] = ACTIONS(1609), - [anon_sym_long] = ACTIONS(1609), - [anon_sym_short] = ACTIONS(1609), - [sym_primitive_type] = ACTIONS(1609), - [anon_sym_enum] = ACTIONS(1609), - [anon_sym_class] = ACTIONS(1609), - [anon_sym_struct] = ACTIONS(1609), - [anon_sym_union] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1609), - [anon_sym_else] = ACTIONS(1609), - [anon_sym_switch] = ACTIONS(1609), - [anon_sym_case] = ACTIONS(1609), - [anon_sym_default] = ACTIONS(1609), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_do] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_break] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [anon_sym_goto] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_sizeof] = ACTIONS(1609), - [sym_number_literal] = ACTIONS(1611), - [anon_sym_L_SQUOTE] = ACTIONS(1611), - [anon_sym_u_SQUOTE] = ACTIONS(1611), - [anon_sym_U_SQUOTE] = ACTIONS(1611), - [anon_sym_u8_SQUOTE] = ACTIONS(1611), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_L_DQUOTE] = ACTIONS(1611), - [anon_sym_u_DQUOTE] = ACTIONS(1611), - [anon_sym_U_DQUOTE] = ACTIONS(1611), - [anon_sym_u8_DQUOTE] = ACTIONS(1611), - [anon_sym_DQUOTE] = ACTIONS(1611), - [sym_true] = ACTIONS(1609), - [sym_false] = ACTIONS(1609), - [sym_null] = ACTIONS(1609), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1609), - [anon_sym_virtual] = ACTIONS(1609), - [anon_sym_explicit] = ACTIONS(1609), - [sym_auto] = ACTIONS(1609), - [anon_sym_typename] = ACTIONS(1609), - [anon_sym_template] = ACTIONS(1609), - [anon_sym_operator] = ACTIONS(1609), - [anon_sym_delete] = ACTIONS(1609), - [anon_sym_throw] = ACTIONS(1609), - [anon_sym_namespace] = ACTIONS(1609), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_static_assert] = ACTIONS(1609), - [anon_sym_co_return] = ACTIONS(1609), - [anon_sym_co_yield] = ACTIONS(1609), - [anon_sym_try] = ACTIONS(1609), - [anon_sym_co_await] = ACTIONS(1609), - [anon_sym_new] = ACTIONS(1609), - [sym_this] = ACTIONS(1609), - [sym_nullptr] = ACTIONS(1609), - [sym_alone_macro] = ACTIONS(1611), - [aux_sym_alone_macro_call_token1] = ACTIONS(1609), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_FORWARD] = ACTIONS(1609), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1609), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_PS_GET] = ACTIONS(1609), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1609), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1609), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1609), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1609), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1609), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1609), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1609), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1609), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1609), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1609), - [anon_sym_MOZ_COLD] = ACTIONS(1609), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1609), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1609), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1609), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1609), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1609), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1609), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1609), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1609), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1609), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1609), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1609), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1609), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1609), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1609), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1609), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1609), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1609), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1609), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1609), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1609), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_NONNULL] = ACTIONS(1609), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1609), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1609), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1609), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1609), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1609), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_NORETURN] = ACTIONS(1609), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1609), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1609), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1609), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1609), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1609), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1609), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1609), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1609), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1609), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1609), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1609), - [anon_sym_MOZ_RAII] = ACTIONS(1609), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1609), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1609), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1609), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1609), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1609), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1609), - [sym_raw_string_literal] = ACTIONS(1611), - }, - [152] = { - [sym_identifier] = ACTIONS(1593), - [aux_sym_preproc_include_token1] = ACTIONS(1593), - [aux_sym_preproc_def_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token2] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1593), - [aux_sym_preproc_else_token1] = ACTIONS(1593), - [aux_sym_preproc_elif_token1] = ACTIONS(1593), - [sym_preproc_directive] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_typedef] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym___attribute__] = ACTIONS(1593), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1593), - [anon_sym___based] = ACTIONS(1593), - [anon_sym___cdecl] = ACTIONS(1593), - [anon_sym___clrcall] = ACTIONS(1593), - [anon_sym___stdcall] = ACTIONS(1593), - [anon_sym___fastcall] = ACTIONS(1593), - [anon_sym___thiscall] = ACTIONS(1593), - [anon_sym___vectorcall] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_inline] = ACTIONS(1593), - [anon_sym_thread_local] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_volatile] = ACTIONS(1593), - [anon_sym_restrict] = ACTIONS(1593), - [anon_sym__Atomic] = ACTIONS(1593), - [anon_sym_mutable] = ACTIONS(1593), - [anon_sym_constexpr] = ACTIONS(1593), - [anon_sym_signed] = ACTIONS(1593), - [anon_sym_unsigned] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [sym_primitive_type] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_class] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_else] = ACTIONS(1593), - [anon_sym_switch] = ACTIONS(1593), - [anon_sym_case] = ACTIONS(1593), - [anon_sym_default] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_goto] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_PLUS_PLUS] = ACTIONS(1595), - [anon_sym_sizeof] = ACTIONS(1593), - [sym_number_literal] = ACTIONS(1595), - [anon_sym_L_SQUOTE] = ACTIONS(1595), - [anon_sym_u_SQUOTE] = ACTIONS(1595), - [anon_sym_U_SQUOTE] = ACTIONS(1595), - [anon_sym_u8_SQUOTE] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1595), - [anon_sym_L_DQUOTE] = ACTIONS(1595), - [anon_sym_u_DQUOTE] = ACTIONS(1595), - [anon_sym_U_DQUOTE] = ACTIONS(1595), - [anon_sym_u8_DQUOTE] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1593), - [anon_sym_virtual] = ACTIONS(1593), - [anon_sym_explicit] = ACTIONS(1593), - [sym_auto] = ACTIONS(1593), - [anon_sym_typename] = ACTIONS(1593), - [anon_sym_template] = ACTIONS(1593), - [anon_sym_operator] = ACTIONS(1593), - [anon_sym_delete] = ACTIONS(1593), - [anon_sym_throw] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1593), - [anon_sym_using] = ACTIONS(1593), - [anon_sym_static_assert] = ACTIONS(1593), - [anon_sym_co_return] = ACTIONS(1593), - [anon_sym_co_yield] = ACTIONS(1593), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_co_await] = ACTIONS(1593), - [anon_sym_new] = ACTIONS(1593), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), - [sym_alone_macro] = ACTIONS(1595), - [aux_sym_alone_macro_call_token1] = ACTIONS(1593), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_FORWARD] = ACTIONS(1593), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1593), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_PS_GET] = ACTIONS(1593), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1593), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1593), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1593), - [anon_sym_MOZ_COLD] = ACTIONS(1593), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1593), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1593), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1593), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1593), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1593), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1593), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1593), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1593), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1593), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1593), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1593), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1593), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_RAII] = ACTIONS(1593), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1593), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1593), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1593), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1593), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1593), - [sym_raw_string_literal] = ACTIONS(1595), - }, - [153] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [154] = { - [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_include_token1] = ACTIONS(1529), - [aux_sym_preproc_def_token1] = ACTIONS(1529), - [anon_sym_COMMA] = ACTIONS(1613), - [aux_sym_preproc_if_token1] = ACTIONS(1529), - [aux_sym_preproc_if_token2] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), - [aux_sym_preproc_else_token1] = ACTIONS(1529), - [aux_sym_preproc_elif_token1] = ACTIONS(1529), - [sym_preproc_directive] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym___attribute__] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1531), - [anon_sym___declspec] = ACTIONS(1529), - [anon_sym___based] = ACTIONS(1529), - [anon_sym___cdecl] = ACTIONS(1529), - [anon_sym___clrcall] = ACTIONS(1529), - [anon_sym___stdcall] = ACTIONS(1529), - [anon_sym___fastcall] = ACTIONS(1529), - [anon_sym___thiscall] = ACTIONS(1529), - [anon_sym___vectorcall] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [anon_sym_thread_local] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym__Atomic] = ACTIONS(1529), - [anon_sym_mutable] = ACTIONS(1529), - [anon_sym_constexpr] = ACTIONS(1529), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_class] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_case] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_goto] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_sizeof] = ACTIONS(1529), - [sym_number_literal] = ACTIONS(1531), - [anon_sym_L_SQUOTE] = ACTIONS(1531), - [anon_sym_u_SQUOTE] = ACTIONS(1531), - [anon_sym_U_SQUOTE] = ACTIONS(1531), - [anon_sym_u8_SQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1529), - [sym_false] = ACTIONS(1529), - [sym_null] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1529), - [anon_sym_virtual] = ACTIONS(1529), - [anon_sym_explicit] = ACTIONS(1529), - [sym_auto] = ACTIONS(1529), - [anon_sym_typename] = ACTIONS(1529), - [anon_sym_template] = ACTIONS(1529), - [anon_sym_operator] = ACTIONS(1529), - [anon_sym_delete] = ACTIONS(1529), - [anon_sym_throw] = ACTIONS(1529), - [anon_sym_namespace] = ACTIONS(1529), - [anon_sym_using] = ACTIONS(1529), - [anon_sym_static_assert] = ACTIONS(1529), - [anon_sym_co_return] = ACTIONS(1529), - [anon_sym_co_yield] = ACTIONS(1529), - [anon_sym_try] = ACTIONS(1529), - [anon_sym_co_await] = ACTIONS(1529), - [anon_sym_new] = ACTIONS(1529), - [sym_this] = ACTIONS(1529), - [sym_nullptr] = ACTIONS(1529), - [sym_alone_macro] = ACTIONS(1531), - [aux_sym_alone_macro_call_token1] = ACTIONS(1529), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_FORWARD] = ACTIONS(1529), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1529), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_PS_GET] = ACTIONS(1529), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1529), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1529), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1529), - [anon_sym_MOZ_COLD] = ACTIONS(1529), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1529), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1529), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1529), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1529), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1529), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1529), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1529), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1529), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1529), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1529), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1529), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1529), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_RAII] = ACTIONS(1529), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1529), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1529), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1529), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1529), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1529), - [sym_raw_string_literal] = ACTIONS(1531), - }, - [155] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [156] = { - [sym_identifier] = ACTIONS(1615), - [aux_sym_preproc_include_token1] = ACTIONS(1615), - [aux_sym_preproc_def_token1] = ACTIONS(1615), - [aux_sym_preproc_if_token1] = ACTIONS(1615), - [aux_sym_preproc_if_token2] = ACTIONS(1615), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1615), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1615), - [aux_sym_preproc_else_token1] = ACTIONS(1615), - [aux_sym_preproc_elif_token1] = ACTIONS(1615), - [sym_preproc_directive] = ACTIONS(1615), - [anon_sym_LPAREN2] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1617), - [anon_sym_AMP_AMP] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1615), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_typedef] = ACTIONS(1615), - [anon_sym_extern] = ACTIONS(1615), - [anon_sym___attribute__] = ACTIONS(1615), - [anon_sym_COLON_COLON] = ACTIONS(1617), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1617), - [anon_sym___declspec] = ACTIONS(1615), - [anon_sym___based] = ACTIONS(1615), - [anon_sym___cdecl] = ACTIONS(1615), - [anon_sym___clrcall] = ACTIONS(1615), - [anon_sym___stdcall] = ACTIONS(1615), - [anon_sym___fastcall] = ACTIONS(1615), - [anon_sym___thiscall] = ACTIONS(1615), - [anon_sym___vectorcall] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_register] = ACTIONS(1615), - [anon_sym_inline] = ACTIONS(1615), - [anon_sym_thread_local] = ACTIONS(1615), - [anon_sym_const] = ACTIONS(1615), - [anon_sym_volatile] = ACTIONS(1615), - [anon_sym_restrict] = ACTIONS(1615), - [anon_sym__Atomic] = ACTIONS(1615), - [anon_sym_mutable] = ACTIONS(1615), - [anon_sym_constexpr] = ACTIONS(1615), - [anon_sym_signed] = ACTIONS(1615), - [anon_sym_unsigned] = ACTIONS(1615), - [anon_sym_long] = ACTIONS(1615), - [anon_sym_short] = ACTIONS(1615), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1615), - [anon_sym_class] = ACTIONS(1615), - [anon_sym_struct] = ACTIONS(1615), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_if] = ACTIONS(1615), - [anon_sym_else] = ACTIONS(1619), - [anon_sym_switch] = ACTIONS(1615), - [anon_sym_case] = ACTIONS(1615), - [anon_sym_default] = ACTIONS(1615), - [anon_sym_while] = ACTIONS(1615), - [anon_sym_do] = ACTIONS(1615), - [anon_sym_for] = ACTIONS(1615), - [anon_sym_return] = ACTIONS(1615), - [anon_sym_break] = ACTIONS(1615), - [anon_sym_continue] = ACTIONS(1615), - [anon_sym_goto] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_sizeof] = ACTIONS(1615), - [sym_number_literal] = ACTIONS(1617), - [anon_sym_L_SQUOTE] = ACTIONS(1617), - [anon_sym_u_SQUOTE] = ACTIONS(1617), - [anon_sym_U_SQUOTE] = ACTIONS(1617), - [anon_sym_u8_SQUOTE] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_L_DQUOTE] = ACTIONS(1617), - [anon_sym_u_DQUOTE] = ACTIONS(1617), - [anon_sym_U_DQUOTE] = ACTIONS(1617), - [anon_sym_u8_DQUOTE] = ACTIONS(1617), - [anon_sym_DQUOTE] = ACTIONS(1617), - [sym_true] = ACTIONS(1615), - [sym_false] = ACTIONS(1615), - [sym_null] = ACTIONS(1615), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1615), - [anon_sym_virtual] = ACTIONS(1615), - [anon_sym_explicit] = ACTIONS(1615), - [sym_auto] = ACTIONS(1615), - [anon_sym_typename] = ACTIONS(1615), - [anon_sym_template] = ACTIONS(1615), - [anon_sym_operator] = ACTIONS(1615), - [anon_sym_delete] = ACTIONS(1615), - [anon_sym_throw] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1615), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_static_assert] = ACTIONS(1615), - [anon_sym_co_return] = ACTIONS(1615), - [anon_sym_co_yield] = ACTIONS(1615), - [anon_sym_try] = ACTIONS(1615), - [anon_sym_co_await] = ACTIONS(1615), - [anon_sym_new] = ACTIONS(1615), - [sym_this] = ACTIONS(1615), - [sym_nullptr] = ACTIONS(1615), - [sym_alone_macro] = ACTIONS(1617), - [aux_sym_alone_macro_call_token1] = ACTIONS(1615), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_FORWARD] = ACTIONS(1615), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1615), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_PS_GET] = ACTIONS(1615), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1615), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1615), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1615), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1615), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1615), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1615), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1615), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1615), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1615), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1615), - [anon_sym_MOZ_COLD] = ACTIONS(1615), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1615), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1615), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1615), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1615), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1615), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1615), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1615), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1615), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1615), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1615), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1615), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1615), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1615), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1615), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1615), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1615), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1615), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1615), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1615), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1615), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_NONNULL] = ACTIONS(1615), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1615), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1615), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1615), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1615), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1615), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_NORETURN] = ACTIONS(1615), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1615), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1615), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1615), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1615), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1615), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1615), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1615), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1615), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1615), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1615), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1615), - [anon_sym_MOZ_RAII] = ACTIONS(1615), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1615), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1615), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1615), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1615), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1615), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1615), - [sym_raw_string_literal] = ACTIONS(1617), - }, - [157] = { - [sym_identifier] = ACTIONS(1621), - [aux_sym_preproc_include_token1] = ACTIONS(1621), - [aux_sym_preproc_def_token1] = ACTIONS(1621), - [aux_sym_preproc_if_token1] = ACTIONS(1621), - [aux_sym_preproc_if_token2] = ACTIONS(1621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1621), - [aux_sym_preproc_else_token1] = ACTIONS(1621), - [aux_sym_preproc_elif_token1] = ACTIONS(1621), - [sym_preproc_directive] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_AMP_AMP] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_typedef] = ACTIONS(1621), - [anon_sym_extern] = ACTIONS(1621), - [anon_sym___attribute__] = ACTIONS(1621), - [anon_sym_COLON_COLON] = ACTIONS(1623), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1623), - [anon_sym___declspec] = ACTIONS(1621), - [anon_sym___based] = ACTIONS(1621), - [anon_sym___cdecl] = ACTIONS(1621), - [anon_sym___clrcall] = ACTIONS(1621), - [anon_sym___stdcall] = ACTIONS(1621), - [anon_sym___fastcall] = ACTIONS(1621), - [anon_sym___thiscall] = ACTIONS(1621), - [anon_sym___vectorcall] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1621), - [anon_sym_static] = ACTIONS(1621), - [anon_sym_register] = ACTIONS(1621), - [anon_sym_inline] = ACTIONS(1621), - [anon_sym_thread_local] = ACTIONS(1621), - [anon_sym_const] = ACTIONS(1621), - [anon_sym_volatile] = ACTIONS(1621), - [anon_sym_restrict] = ACTIONS(1621), - [anon_sym__Atomic] = ACTIONS(1621), - [anon_sym_mutable] = ACTIONS(1621), - [anon_sym_constexpr] = ACTIONS(1621), - [anon_sym_signed] = ACTIONS(1621), - [anon_sym_unsigned] = ACTIONS(1621), - [anon_sym_long] = ACTIONS(1621), - [anon_sym_short] = ACTIONS(1621), - [sym_primitive_type] = ACTIONS(1621), - [anon_sym_enum] = ACTIONS(1621), - [anon_sym_class] = ACTIONS(1621), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1621), - [anon_sym_else] = ACTIONS(1621), - [anon_sym_switch] = ACTIONS(1621), - [anon_sym_case] = ACTIONS(1621), - [anon_sym_default] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1621), - [anon_sym_do] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1621), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1621), - [anon_sym_continue] = ACTIONS(1621), - [anon_sym_goto] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_sizeof] = ACTIONS(1621), - [sym_number_literal] = ACTIONS(1623), - [anon_sym_L_SQUOTE] = ACTIONS(1623), - [anon_sym_u_SQUOTE] = ACTIONS(1623), - [anon_sym_U_SQUOTE] = ACTIONS(1623), - [anon_sym_u8_SQUOTE] = ACTIONS(1623), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_L_DQUOTE] = ACTIONS(1623), - [anon_sym_u_DQUOTE] = ACTIONS(1623), - [anon_sym_U_DQUOTE] = ACTIONS(1623), - [anon_sym_u8_DQUOTE] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym_true] = ACTIONS(1621), - [sym_false] = ACTIONS(1621), - [sym_null] = ACTIONS(1621), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1621), - [anon_sym_virtual] = ACTIONS(1621), - [anon_sym_explicit] = ACTIONS(1621), - [sym_auto] = ACTIONS(1621), - [anon_sym_typename] = ACTIONS(1621), - [anon_sym_template] = ACTIONS(1621), - [anon_sym_operator] = ACTIONS(1621), - [anon_sym_delete] = ACTIONS(1621), - [anon_sym_throw] = ACTIONS(1621), - [anon_sym_namespace] = ACTIONS(1621), - [anon_sym_using] = ACTIONS(1621), - [anon_sym_static_assert] = ACTIONS(1621), - [anon_sym_co_return] = ACTIONS(1621), - [anon_sym_co_yield] = ACTIONS(1621), - [anon_sym_try] = ACTIONS(1621), - [anon_sym_co_await] = ACTIONS(1621), - [anon_sym_new] = ACTIONS(1621), - [sym_this] = ACTIONS(1621), - [sym_nullptr] = ACTIONS(1621), - [sym_alone_macro] = ACTIONS(1623), - [aux_sym_alone_macro_call_token1] = ACTIONS(1621), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_FORWARD] = ACTIONS(1621), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1621), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_PS_GET] = ACTIONS(1621), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1621), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1621), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1621), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1621), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1621), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1621), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1621), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1621), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1621), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1621), - [anon_sym_MOZ_COLD] = ACTIONS(1621), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1621), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1621), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1621), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1621), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1621), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1621), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1621), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1621), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1621), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1621), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1621), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1621), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1621), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1621), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1621), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1621), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1621), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1621), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1621), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1621), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_NONNULL] = ACTIONS(1621), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1621), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1621), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1621), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1621), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1621), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_NORETURN] = ACTIONS(1621), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1621), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1621), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1621), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1621), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1621), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1621), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1621), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1621), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1621), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1621), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1621), - [anon_sym_MOZ_RAII] = ACTIONS(1621), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1621), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1621), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1621), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1621), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1621), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1621), - [sym_raw_string_literal] = ACTIONS(1623), - }, - [158] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [159] = { - [sym_identifier] = ACTIONS(1625), - [aux_sym_preproc_include_token1] = ACTIONS(1625), - [aux_sym_preproc_def_token1] = ACTIONS(1625), - [aux_sym_preproc_if_token1] = ACTIONS(1625), - [aux_sym_preproc_if_token2] = ACTIONS(1625), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1625), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1625), - [aux_sym_preproc_else_token1] = ACTIONS(1625), - [aux_sym_preproc_elif_token1] = ACTIONS(1625), - [sym_preproc_directive] = ACTIONS(1625), - [anon_sym_LPAREN2] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1627), - [anon_sym_TILDE] = ACTIONS(1627), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_STAR] = ACTIONS(1627), - [anon_sym_AMP_AMP] = ACTIONS(1627), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_SEMI] = ACTIONS(1627), - [anon_sym_typedef] = ACTIONS(1625), - [anon_sym_extern] = ACTIONS(1625), - [anon_sym___attribute__] = ACTIONS(1625), - [anon_sym_COLON_COLON] = ACTIONS(1627), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1627), - [anon_sym___declspec] = ACTIONS(1625), - [anon_sym___based] = ACTIONS(1625), - [anon_sym___cdecl] = ACTIONS(1625), - [anon_sym___clrcall] = ACTIONS(1625), - [anon_sym___stdcall] = ACTIONS(1625), - [anon_sym___fastcall] = ACTIONS(1625), - [anon_sym___thiscall] = ACTIONS(1625), - [anon_sym___vectorcall] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_LBRACK] = ACTIONS(1625), - [anon_sym_static] = ACTIONS(1625), - [anon_sym_register] = ACTIONS(1625), - [anon_sym_inline] = ACTIONS(1625), - [anon_sym_thread_local] = ACTIONS(1625), - [anon_sym_const] = ACTIONS(1625), - [anon_sym_volatile] = ACTIONS(1625), - [anon_sym_restrict] = ACTIONS(1625), - [anon_sym__Atomic] = ACTIONS(1625), - [anon_sym_mutable] = ACTIONS(1625), - [anon_sym_constexpr] = ACTIONS(1625), - [anon_sym_signed] = ACTIONS(1625), - [anon_sym_unsigned] = ACTIONS(1625), - [anon_sym_long] = ACTIONS(1625), - [anon_sym_short] = ACTIONS(1625), - [sym_primitive_type] = ACTIONS(1625), - [anon_sym_enum] = ACTIONS(1625), - [anon_sym_class] = ACTIONS(1625), - [anon_sym_struct] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1625), - [anon_sym_else] = ACTIONS(1625), - [anon_sym_switch] = ACTIONS(1625), - [anon_sym_case] = ACTIONS(1625), - [anon_sym_default] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1625), - [anon_sym_do] = ACTIONS(1625), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1625), - [anon_sym_break] = ACTIONS(1625), - [anon_sym_continue] = ACTIONS(1625), - [anon_sym_goto] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1625), - [sym_number_literal] = ACTIONS(1627), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1627), - [anon_sym_u_DQUOTE] = ACTIONS(1627), - [anon_sym_U_DQUOTE] = ACTIONS(1627), - [anon_sym_u8_DQUOTE] = ACTIONS(1627), - [anon_sym_DQUOTE] = ACTIONS(1627), - [sym_true] = ACTIONS(1625), - [sym_false] = ACTIONS(1625), - [sym_null] = ACTIONS(1625), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1625), - [anon_sym_virtual] = ACTIONS(1625), - [anon_sym_explicit] = ACTIONS(1625), - [sym_auto] = ACTIONS(1625), - [anon_sym_typename] = ACTIONS(1625), - [anon_sym_template] = ACTIONS(1625), - [anon_sym_operator] = ACTIONS(1625), - [anon_sym_delete] = ACTIONS(1625), - [anon_sym_throw] = ACTIONS(1625), - [anon_sym_namespace] = ACTIONS(1625), - [anon_sym_using] = ACTIONS(1625), - [anon_sym_static_assert] = ACTIONS(1625), - [anon_sym_co_return] = ACTIONS(1625), - [anon_sym_co_yield] = ACTIONS(1625), - [anon_sym_try] = ACTIONS(1625), - [anon_sym_co_await] = ACTIONS(1625), - [anon_sym_new] = ACTIONS(1625), - [sym_this] = ACTIONS(1625), - [sym_nullptr] = ACTIONS(1625), - [sym_alone_macro] = ACTIONS(1627), - [aux_sym_alone_macro_call_token1] = ACTIONS(1625), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_FORWARD] = ACTIONS(1625), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1625), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_PS_GET] = ACTIONS(1625), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1625), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1625), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1625), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1625), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1625), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1625), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1625), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1625), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1625), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1625), - [anon_sym_MOZ_COLD] = ACTIONS(1625), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1625), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1625), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1625), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1625), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1625), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1625), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1625), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1625), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1625), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1625), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1625), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1625), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1625), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1625), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1625), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1625), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1625), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1625), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1625), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1625), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_NONNULL] = ACTIONS(1625), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1625), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1625), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1625), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1625), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1625), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_NORETURN] = ACTIONS(1625), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1625), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1625), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1625), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1625), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1625), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1625), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1625), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1625), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1625), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1625), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1625), - [anon_sym_MOZ_RAII] = ACTIONS(1625), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1625), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1625), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1625), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1625), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1625), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1625), - [sym_raw_string_literal] = ACTIONS(1627), - }, - [160] = { - [sym_identifier] = ACTIONS(1629), - [aux_sym_preproc_include_token1] = ACTIONS(1629), - [aux_sym_preproc_def_token1] = ACTIONS(1629), - [aux_sym_preproc_if_token1] = ACTIONS(1629), - [aux_sym_preproc_if_token2] = ACTIONS(1629), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1629), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1629), - [aux_sym_preproc_else_token1] = ACTIONS(1629), - [aux_sym_preproc_elif_token1] = ACTIONS(1629), - [sym_preproc_directive] = ACTIONS(1629), - [anon_sym_LPAREN2] = ACTIONS(1631), - [anon_sym_BANG] = ACTIONS(1631), - [anon_sym_TILDE] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_AMP_AMP] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1629), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_typedef] = ACTIONS(1629), - [anon_sym_extern] = ACTIONS(1629), - [anon_sym___attribute__] = ACTIONS(1629), - [anon_sym_COLON_COLON] = ACTIONS(1631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1631), - [anon_sym___declspec] = ACTIONS(1629), - [anon_sym___based] = ACTIONS(1629), - [anon_sym___cdecl] = ACTIONS(1629), - [anon_sym___clrcall] = ACTIONS(1629), - [anon_sym___stdcall] = ACTIONS(1629), - [anon_sym___fastcall] = ACTIONS(1629), - [anon_sym___thiscall] = ACTIONS(1629), - [anon_sym___vectorcall] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_static] = ACTIONS(1629), - [anon_sym_register] = ACTIONS(1629), - [anon_sym_inline] = ACTIONS(1629), - [anon_sym_thread_local] = ACTIONS(1629), - [anon_sym_const] = ACTIONS(1629), - [anon_sym_volatile] = ACTIONS(1629), - [anon_sym_restrict] = ACTIONS(1629), - [anon_sym__Atomic] = ACTIONS(1629), - [anon_sym_mutable] = ACTIONS(1629), - [anon_sym_constexpr] = ACTIONS(1629), - [anon_sym_signed] = ACTIONS(1629), - [anon_sym_unsigned] = ACTIONS(1629), - [anon_sym_long] = ACTIONS(1629), - [anon_sym_short] = ACTIONS(1629), - [sym_primitive_type] = ACTIONS(1629), - [anon_sym_enum] = ACTIONS(1629), - [anon_sym_class] = ACTIONS(1629), - [anon_sym_struct] = ACTIONS(1629), - [anon_sym_union] = ACTIONS(1629), - [anon_sym_if] = ACTIONS(1629), - [anon_sym_else] = ACTIONS(1629), - [anon_sym_switch] = ACTIONS(1629), - [anon_sym_case] = ACTIONS(1629), - [anon_sym_default] = ACTIONS(1629), - [anon_sym_while] = ACTIONS(1629), - [anon_sym_do] = ACTIONS(1629), - [anon_sym_for] = ACTIONS(1629), - [anon_sym_return] = ACTIONS(1629), - [anon_sym_break] = ACTIONS(1629), - [anon_sym_continue] = ACTIONS(1629), - [anon_sym_goto] = ACTIONS(1629), - [anon_sym_DASH_DASH] = ACTIONS(1631), - [anon_sym_PLUS_PLUS] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(1631), - [anon_sym_L_SQUOTE] = ACTIONS(1631), - [anon_sym_u_SQUOTE] = ACTIONS(1631), - [anon_sym_U_SQUOTE] = ACTIONS(1631), - [anon_sym_u8_SQUOTE] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_L_DQUOTE] = ACTIONS(1631), - [anon_sym_u_DQUOTE] = ACTIONS(1631), - [anon_sym_U_DQUOTE] = ACTIONS(1631), - [anon_sym_u8_DQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_true] = ACTIONS(1629), - [sym_false] = ACTIONS(1629), - [sym_null] = ACTIONS(1629), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1629), - [anon_sym_virtual] = ACTIONS(1629), - [anon_sym_explicit] = ACTIONS(1629), - [sym_auto] = ACTIONS(1629), - [anon_sym_typename] = ACTIONS(1629), - [anon_sym_template] = ACTIONS(1629), - [anon_sym_operator] = ACTIONS(1629), - [anon_sym_delete] = ACTIONS(1629), - [anon_sym_throw] = ACTIONS(1629), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_using] = ACTIONS(1629), - [anon_sym_static_assert] = ACTIONS(1629), - [anon_sym_co_return] = ACTIONS(1629), - [anon_sym_co_yield] = ACTIONS(1629), - [anon_sym_try] = ACTIONS(1629), - [anon_sym_co_await] = ACTIONS(1629), - [anon_sym_new] = ACTIONS(1629), - [sym_this] = ACTIONS(1629), - [sym_nullptr] = ACTIONS(1629), - [sym_alone_macro] = ACTIONS(1631), - [aux_sym_alone_macro_call_token1] = ACTIONS(1629), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_FORWARD] = ACTIONS(1629), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1629), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_PS_GET] = ACTIONS(1629), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1629), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1629), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1629), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1629), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1629), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1629), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1629), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1629), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1629), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1629), - [anon_sym_MOZ_COLD] = ACTIONS(1629), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1629), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1629), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1629), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1629), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1629), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1629), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1629), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1629), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1629), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1629), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1629), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1629), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1629), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1629), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1629), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1629), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1629), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1629), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1629), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1629), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_NONNULL] = ACTIONS(1629), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1629), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1629), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1629), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1629), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1629), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_NORETURN] = ACTIONS(1629), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1629), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1629), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1629), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1629), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1629), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1629), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1629), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1629), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1629), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1629), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1629), - [anon_sym_MOZ_RAII] = ACTIONS(1629), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1629), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1629), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1629), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1629), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1629), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1629), - [sym_raw_string_literal] = ACTIONS(1631), - }, - [161] = { - [sym_identifier] = ACTIONS(1633), - [aux_sym_preproc_include_token1] = ACTIONS(1633), - [aux_sym_preproc_def_token1] = ACTIONS(1633), - [aux_sym_preproc_if_token1] = ACTIONS(1633), - [aux_sym_preproc_if_token2] = ACTIONS(1633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1633), - [aux_sym_preproc_else_token1] = ACTIONS(1633), - [aux_sym_preproc_elif_token1] = ACTIONS(1633), - [sym_preproc_directive] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(1635), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1633), - [anon_sym_STAR] = ACTIONS(1635), - [anon_sym_AMP_AMP] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1635), - [anon_sym_typedef] = ACTIONS(1633), - [anon_sym_extern] = ACTIONS(1633), - [anon_sym___attribute__] = ACTIONS(1633), - [anon_sym_COLON_COLON] = ACTIONS(1635), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1635), - [anon_sym___declspec] = ACTIONS(1633), - [anon_sym___based] = ACTIONS(1633), - [anon_sym___cdecl] = ACTIONS(1633), - [anon_sym___clrcall] = ACTIONS(1633), - [anon_sym___stdcall] = ACTIONS(1633), - [anon_sym___fastcall] = ACTIONS(1633), - [anon_sym___thiscall] = ACTIONS(1633), - [anon_sym___vectorcall] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_static] = ACTIONS(1633), - [anon_sym_register] = ACTIONS(1633), - [anon_sym_inline] = ACTIONS(1633), - [anon_sym_thread_local] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [anon_sym_volatile] = ACTIONS(1633), - [anon_sym_restrict] = ACTIONS(1633), - [anon_sym__Atomic] = ACTIONS(1633), - [anon_sym_mutable] = ACTIONS(1633), - [anon_sym_constexpr] = ACTIONS(1633), - [anon_sym_signed] = ACTIONS(1633), - [anon_sym_unsigned] = ACTIONS(1633), - [anon_sym_long] = ACTIONS(1633), - [anon_sym_short] = ACTIONS(1633), - [sym_primitive_type] = ACTIONS(1633), - [anon_sym_enum] = ACTIONS(1633), - [anon_sym_class] = ACTIONS(1633), - [anon_sym_struct] = ACTIONS(1633), - [anon_sym_union] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_else] = ACTIONS(1633), - [anon_sym_switch] = ACTIONS(1633), - [anon_sym_case] = ACTIONS(1633), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_do] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_goto] = ACTIONS(1633), - [anon_sym_DASH_DASH] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1635), - [anon_sym_sizeof] = ACTIONS(1633), - [sym_number_literal] = ACTIONS(1635), - [anon_sym_L_SQUOTE] = ACTIONS(1635), - [anon_sym_u_SQUOTE] = ACTIONS(1635), - [anon_sym_U_SQUOTE] = ACTIONS(1635), - [anon_sym_u8_SQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1635), - [anon_sym_L_DQUOTE] = ACTIONS(1635), - [anon_sym_u_DQUOTE] = ACTIONS(1635), - [anon_sym_U_DQUOTE] = ACTIONS(1635), - [anon_sym_u8_DQUOTE] = ACTIONS(1635), - [anon_sym_DQUOTE] = ACTIONS(1635), - [sym_true] = ACTIONS(1633), - [sym_false] = ACTIONS(1633), - [sym_null] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1633), - [anon_sym_virtual] = ACTIONS(1633), - [anon_sym_explicit] = ACTIONS(1633), - [sym_auto] = ACTIONS(1633), - [anon_sym_typename] = ACTIONS(1633), - [anon_sym_template] = ACTIONS(1633), - [anon_sym_operator] = ACTIONS(1633), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_throw] = ACTIONS(1633), - [anon_sym_namespace] = ACTIONS(1633), - [anon_sym_using] = ACTIONS(1633), - [anon_sym_static_assert] = ACTIONS(1633), - [anon_sym_co_return] = ACTIONS(1633), - [anon_sym_co_yield] = ACTIONS(1633), - [anon_sym_try] = ACTIONS(1633), - [anon_sym_co_await] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1633), - [sym_this] = ACTIONS(1633), - [sym_nullptr] = ACTIONS(1633), - [sym_alone_macro] = ACTIONS(1635), - [aux_sym_alone_macro_call_token1] = ACTIONS(1633), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_FORWARD] = ACTIONS(1633), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1633), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_PS_GET] = ACTIONS(1633), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1633), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1633), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1633), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1633), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1633), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1633), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1633), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1633), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1633), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1633), - [anon_sym_MOZ_COLD] = ACTIONS(1633), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1633), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1633), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1633), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1633), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1633), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1633), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1633), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1633), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1633), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1633), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1633), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1633), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1633), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1633), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1633), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1633), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1633), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1633), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1633), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1633), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_NONNULL] = ACTIONS(1633), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1633), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1633), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1633), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1633), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1633), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_NORETURN] = ACTIONS(1633), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1633), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1633), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1633), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1633), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1633), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1633), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1633), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1633), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1633), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1633), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1633), - [anon_sym_MOZ_RAII] = ACTIONS(1633), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1633), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1633), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1633), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1633), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1633), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1633), - [sym_raw_string_literal] = ACTIONS(1635), - }, - [162] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [163] = { - [sym_identifier] = ACTIONS(1637), - [aux_sym_preproc_include_token1] = ACTIONS(1637), - [aux_sym_preproc_def_token1] = ACTIONS(1637), - [aux_sym_preproc_if_token1] = ACTIONS(1637), - [aux_sym_preproc_if_token2] = ACTIONS(1637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1637), - [aux_sym_preproc_else_token1] = ACTIONS(1637), - [aux_sym_preproc_elif_token1] = ACTIONS(1637), - [sym_preproc_directive] = ACTIONS(1637), - [anon_sym_LPAREN2] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_AMP_AMP] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_typedef] = ACTIONS(1637), - [anon_sym_extern] = ACTIONS(1637), - [anon_sym___attribute__] = ACTIONS(1637), - [anon_sym_COLON_COLON] = ACTIONS(1639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1639), - [anon_sym___declspec] = ACTIONS(1637), - [anon_sym___based] = ACTIONS(1637), - [anon_sym___cdecl] = ACTIONS(1637), - [anon_sym___clrcall] = ACTIONS(1637), - [anon_sym___stdcall] = ACTIONS(1637), - [anon_sym___fastcall] = ACTIONS(1637), - [anon_sym___thiscall] = ACTIONS(1637), - [anon_sym___vectorcall] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1637), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_register] = ACTIONS(1637), - [anon_sym_inline] = ACTIONS(1637), - [anon_sym_thread_local] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [anon_sym_volatile] = ACTIONS(1637), - [anon_sym_restrict] = ACTIONS(1637), - [anon_sym__Atomic] = ACTIONS(1637), - [anon_sym_mutable] = ACTIONS(1637), - [anon_sym_constexpr] = ACTIONS(1637), - [anon_sym_signed] = ACTIONS(1637), - [anon_sym_unsigned] = ACTIONS(1637), - [anon_sym_long] = ACTIONS(1637), - [anon_sym_short] = ACTIONS(1637), - [sym_primitive_type] = ACTIONS(1637), - [anon_sym_enum] = ACTIONS(1637), - [anon_sym_class] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(1637), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_else] = ACTIONS(1637), - [anon_sym_switch] = ACTIONS(1637), - [anon_sym_case] = ACTIONS(1637), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_do] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_goto] = ACTIONS(1637), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_sizeof] = ACTIONS(1637), - [sym_number_literal] = ACTIONS(1639), - [anon_sym_L_SQUOTE] = ACTIONS(1639), - [anon_sym_u_SQUOTE] = ACTIONS(1639), - [anon_sym_U_SQUOTE] = ACTIONS(1639), - [anon_sym_u8_SQUOTE] = ACTIONS(1639), - [anon_sym_SQUOTE] = ACTIONS(1639), - [anon_sym_L_DQUOTE] = ACTIONS(1639), - [anon_sym_u_DQUOTE] = ACTIONS(1639), - [anon_sym_U_DQUOTE] = ACTIONS(1639), - [anon_sym_u8_DQUOTE] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym_true] = ACTIONS(1637), - [sym_false] = ACTIONS(1637), - [sym_null] = ACTIONS(1637), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1637), - [anon_sym_virtual] = ACTIONS(1637), - [anon_sym_explicit] = ACTIONS(1637), - [sym_auto] = ACTIONS(1637), - [anon_sym_typename] = ACTIONS(1637), - [anon_sym_template] = ACTIONS(1637), - [anon_sym_operator] = ACTIONS(1637), - [anon_sym_delete] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1637), - [anon_sym_using] = ACTIONS(1637), - [anon_sym_static_assert] = ACTIONS(1637), - [anon_sym_co_return] = ACTIONS(1637), - [anon_sym_co_yield] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1637), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1637), - [sym_this] = ACTIONS(1637), - [sym_nullptr] = ACTIONS(1637), - [sym_alone_macro] = ACTIONS(1639), - [aux_sym_alone_macro_call_token1] = ACTIONS(1637), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_FORWARD] = ACTIONS(1637), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1637), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_PS_GET] = ACTIONS(1637), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1637), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1637), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1637), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1637), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1637), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1637), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1637), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1637), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1637), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1637), - [anon_sym_MOZ_COLD] = ACTIONS(1637), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1637), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1637), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1637), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1637), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1637), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1637), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1637), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1637), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1637), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1637), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1637), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1637), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1637), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1637), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1637), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1637), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1637), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1637), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1637), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1637), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_NONNULL] = ACTIONS(1637), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1637), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1637), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1637), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1637), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1637), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_NORETURN] = ACTIONS(1637), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1637), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1637), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1637), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1637), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1637), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1637), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1637), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1637), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1637), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1637), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1637), - [anon_sym_MOZ_RAII] = ACTIONS(1637), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1637), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1637), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1637), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1637), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1637), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1637), - [sym_raw_string_literal] = ACTIONS(1639), - }, - [164] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [165] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [166] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [167] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [168] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [169] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [170] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [171] = { - [sym_identifier] = ACTIONS(1641), - [aux_sym_preproc_include_token1] = ACTIONS(1641), - [aux_sym_preproc_def_token1] = ACTIONS(1641), - [aux_sym_preproc_if_token1] = ACTIONS(1641), - [aux_sym_preproc_if_token2] = ACTIONS(1641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1641), - [aux_sym_preproc_else_token1] = ACTIONS(1641), - [aux_sym_preproc_elif_token1] = ACTIONS(1641), - [sym_preproc_directive] = ACTIONS(1641), - [anon_sym_LPAREN2] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_AMP_AMP] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_typedef] = ACTIONS(1641), - [anon_sym_extern] = ACTIONS(1641), - [anon_sym___attribute__] = ACTIONS(1641), - [anon_sym_COLON_COLON] = ACTIONS(1643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1643), - [anon_sym___declspec] = ACTIONS(1641), - [anon_sym___based] = ACTIONS(1641), - [anon_sym___cdecl] = ACTIONS(1641), - [anon_sym___clrcall] = ACTIONS(1641), - [anon_sym___stdcall] = ACTIONS(1641), - [anon_sym___fastcall] = ACTIONS(1641), - [anon_sym___thiscall] = ACTIONS(1641), - [anon_sym___vectorcall] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_register] = ACTIONS(1641), - [anon_sym_inline] = ACTIONS(1641), - [anon_sym_thread_local] = ACTIONS(1641), - [anon_sym_const] = ACTIONS(1641), - [anon_sym_volatile] = ACTIONS(1641), - [anon_sym_restrict] = ACTIONS(1641), - [anon_sym__Atomic] = ACTIONS(1641), - [anon_sym_mutable] = ACTIONS(1641), - [anon_sym_constexpr] = ACTIONS(1641), - [anon_sym_signed] = ACTIONS(1641), - [anon_sym_unsigned] = ACTIONS(1641), - [anon_sym_long] = ACTIONS(1641), - [anon_sym_short] = ACTIONS(1641), - [sym_primitive_type] = ACTIONS(1641), - [anon_sym_enum] = ACTIONS(1641), - [anon_sym_class] = ACTIONS(1641), - [anon_sym_struct] = ACTIONS(1641), - [anon_sym_union] = ACTIONS(1641), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_else] = ACTIONS(1641), - [anon_sym_switch] = ACTIONS(1641), - [anon_sym_case] = ACTIONS(1641), - [anon_sym_default] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_do] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_return] = ACTIONS(1641), - [anon_sym_break] = ACTIONS(1641), - [anon_sym_continue] = ACTIONS(1641), - [anon_sym_goto] = ACTIONS(1641), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_sizeof] = ACTIONS(1641), - [sym_number_literal] = ACTIONS(1643), - [anon_sym_L_SQUOTE] = ACTIONS(1643), - [anon_sym_u_SQUOTE] = ACTIONS(1643), - [anon_sym_U_SQUOTE] = ACTIONS(1643), - [anon_sym_u8_SQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1643), - [anon_sym_L_DQUOTE] = ACTIONS(1643), - [anon_sym_u_DQUOTE] = ACTIONS(1643), - [anon_sym_U_DQUOTE] = ACTIONS(1643), - [anon_sym_u8_DQUOTE] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym_true] = ACTIONS(1641), - [sym_false] = ACTIONS(1641), - [sym_null] = ACTIONS(1641), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1641), - [anon_sym_virtual] = ACTIONS(1641), - [anon_sym_explicit] = ACTIONS(1641), - [sym_auto] = ACTIONS(1641), - [anon_sym_typename] = ACTIONS(1641), - [anon_sym_template] = ACTIONS(1641), - [anon_sym_operator] = ACTIONS(1641), - [anon_sym_delete] = ACTIONS(1641), - [anon_sym_throw] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_using] = ACTIONS(1641), - [anon_sym_static_assert] = ACTIONS(1641), - [anon_sym_co_return] = ACTIONS(1641), - [anon_sym_co_yield] = ACTIONS(1641), - [anon_sym_try] = ACTIONS(1641), - [anon_sym_co_await] = ACTIONS(1641), - [anon_sym_new] = ACTIONS(1641), - [sym_this] = ACTIONS(1641), - [sym_nullptr] = ACTIONS(1641), - [sym_alone_macro] = ACTIONS(1643), - [aux_sym_alone_macro_call_token1] = ACTIONS(1641), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_FORWARD] = ACTIONS(1641), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1641), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_PS_GET] = ACTIONS(1641), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1641), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1641), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1641), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1641), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1641), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1641), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1641), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1641), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1641), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1641), - [anon_sym_MOZ_COLD] = ACTIONS(1641), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1641), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1641), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1641), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1641), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1641), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1641), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1641), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1641), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1641), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1641), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1641), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1641), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1641), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1641), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1641), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1641), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1641), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1641), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1641), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1641), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_NONNULL] = ACTIONS(1641), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1641), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1641), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1641), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1641), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1641), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_NORETURN] = ACTIONS(1641), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1641), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1641), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1641), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1641), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1641), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1641), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1641), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1641), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1641), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1641), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1641), - [anon_sym_MOZ_RAII] = ACTIONS(1641), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1641), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1641), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1641), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1641), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1641), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1641), - [sym_raw_string_literal] = ACTIONS(1643), - }, - [172] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [173] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [174] = { - [sym_identifier] = ACTIONS(1645), - [aux_sym_preproc_include_token1] = ACTIONS(1645), - [aux_sym_preproc_def_token1] = ACTIONS(1645), - [aux_sym_preproc_if_token1] = ACTIONS(1645), - [aux_sym_preproc_if_token2] = ACTIONS(1645), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1645), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1645), - [aux_sym_preproc_else_token1] = ACTIONS(1645), - [aux_sym_preproc_elif_token1] = ACTIONS(1645), - [sym_preproc_directive] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_AMP_AMP] = ACTIONS(1647), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_typedef] = ACTIONS(1645), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym___attribute__] = ACTIONS(1645), - [anon_sym_COLON_COLON] = ACTIONS(1647), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1647), - [anon_sym___declspec] = ACTIONS(1645), - [anon_sym___based] = ACTIONS(1645), - [anon_sym___cdecl] = ACTIONS(1645), - [anon_sym___clrcall] = ACTIONS(1645), - [anon_sym___stdcall] = ACTIONS(1645), - [anon_sym___fastcall] = ACTIONS(1645), - [anon_sym___thiscall] = ACTIONS(1645), - [anon_sym___vectorcall] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_register] = ACTIONS(1645), - [anon_sym_inline] = ACTIONS(1645), - [anon_sym_thread_local] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_volatile] = ACTIONS(1645), - [anon_sym_restrict] = ACTIONS(1645), - [anon_sym__Atomic] = ACTIONS(1645), - [anon_sym_mutable] = ACTIONS(1645), - [anon_sym_constexpr] = ACTIONS(1645), - [anon_sym_signed] = ACTIONS(1645), - [anon_sym_unsigned] = ACTIONS(1645), - [anon_sym_long] = ACTIONS(1645), - [anon_sym_short] = ACTIONS(1645), - [sym_primitive_type] = ACTIONS(1645), - [anon_sym_enum] = ACTIONS(1645), - [anon_sym_class] = ACTIONS(1645), - [anon_sym_struct] = ACTIONS(1645), - [anon_sym_union] = ACTIONS(1645), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_switch] = ACTIONS(1645), - [anon_sym_case] = ACTIONS(1645), - [anon_sym_default] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_goto] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1645), - [sym_number_literal] = ACTIONS(1647), - [anon_sym_L_SQUOTE] = ACTIONS(1647), - [anon_sym_u_SQUOTE] = ACTIONS(1647), - [anon_sym_U_SQUOTE] = ACTIONS(1647), - [anon_sym_u8_SQUOTE] = ACTIONS(1647), - [anon_sym_SQUOTE] = ACTIONS(1647), - [anon_sym_L_DQUOTE] = ACTIONS(1647), - [anon_sym_u_DQUOTE] = ACTIONS(1647), - [anon_sym_U_DQUOTE] = ACTIONS(1647), - [anon_sym_u8_DQUOTE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym_true] = ACTIONS(1645), - [sym_false] = ACTIONS(1645), - [sym_null] = ACTIONS(1645), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1645), - [anon_sym_virtual] = ACTIONS(1645), - [anon_sym_explicit] = ACTIONS(1645), - [sym_auto] = ACTIONS(1645), - [anon_sym_typename] = ACTIONS(1645), - [anon_sym_template] = ACTIONS(1645), - [anon_sym_operator] = ACTIONS(1645), - [anon_sym_delete] = ACTIONS(1645), - [anon_sym_throw] = ACTIONS(1645), - [anon_sym_namespace] = ACTIONS(1645), - [anon_sym_using] = ACTIONS(1645), - [anon_sym_static_assert] = ACTIONS(1645), - [anon_sym_co_return] = ACTIONS(1645), - [anon_sym_co_yield] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1645), - [anon_sym_co_await] = ACTIONS(1645), - [anon_sym_new] = ACTIONS(1645), - [sym_this] = ACTIONS(1645), - [sym_nullptr] = ACTIONS(1645), - [sym_alone_macro] = ACTIONS(1647), - [aux_sym_alone_macro_call_token1] = ACTIONS(1645), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_FORWARD] = ACTIONS(1645), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1645), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_PS_GET] = ACTIONS(1645), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1645), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1645), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1645), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1645), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1645), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1645), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1645), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1645), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1645), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1645), - [anon_sym_MOZ_COLD] = ACTIONS(1645), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1645), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1645), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1645), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1645), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1645), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1645), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1645), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1645), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1645), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1645), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1645), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1645), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1645), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1645), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1645), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1645), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1645), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1645), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1645), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1645), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_NONNULL] = ACTIONS(1645), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1645), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1645), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1645), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1645), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1645), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_NORETURN] = ACTIONS(1645), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1645), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1645), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1645), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1645), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1645), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1645), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1645), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1645), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1645), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1645), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1645), - [anon_sym_MOZ_RAII] = ACTIONS(1645), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1645), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1645), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1645), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1645), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1645), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1645), - [sym_raw_string_literal] = ACTIONS(1647), - }, - [175] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [176] = { - [sym_identifier] = ACTIONS(1649), - [aux_sym_preproc_include_token1] = ACTIONS(1649), - [aux_sym_preproc_def_token1] = ACTIONS(1649), - [aux_sym_preproc_if_token1] = ACTIONS(1649), - [aux_sym_preproc_if_token2] = ACTIONS(1649), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1649), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1649), - [aux_sym_preproc_else_token1] = ACTIONS(1649), - [aux_sym_preproc_elif_token1] = ACTIONS(1649), - [sym_preproc_directive] = ACTIONS(1649), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_AMP_AMP] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1649), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_typedef] = ACTIONS(1649), - [anon_sym_extern] = ACTIONS(1649), - [anon_sym___attribute__] = ACTIONS(1649), - [anon_sym_COLON_COLON] = ACTIONS(1651), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1651), - [anon_sym___declspec] = ACTIONS(1649), - [anon_sym___based] = ACTIONS(1649), - [anon_sym___cdecl] = ACTIONS(1649), - [anon_sym___clrcall] = ACTIONS(1649), - [anon_sym___stdcall] = ACTIONS(1649), - [anon_sym___fastcall] = ACTIONS(1649), - [anon_sym___thiscall] = ACTIONS(1649), - [anon_sym___vectorcall] = ACTIONS(1649), - [anon_sym_LBRACE] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1649), - [anon_sym_register] = ACTIONS(1649), - [anon_sym_inline] = ACTIONS(1649), - [anon_sym_thread_local] = ACTIONS(1649), - [anon_sym_const] = ACTIONS(1649), - [anon_sym_volatile] = ACTIONS(1649), - [anon_sym_restrict] = ACTIONS(1649), - [anon_sym__Atomic] = ACTIONS(1649), - [anon_sym_mutable] = ACTIONS(1649), - [anon_sym_constexpr] = ACTIONS(1649), - [anon_sym_signed] = ACTIONS(1649), - [anon_sym_unsigned] = ACTIONS(1649), - [anon_sym_long] = ACTIONS(1649), - [anon_sym_short] = ACTIONS(1649), - [sym_primitive_type] = ACTIONS(1649), - [anon_sym_enum] = ACTIONS(1649), - [anon_sym_class] = ACTIONS(1649), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_union] = ACTIONS(1649), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_else] = ACTIONS(1649), - [anon_sym_switch] = ACTIONS(1649), - [anon_sym_case] = ACTIONS(1649), - [anon_sym_default] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_do] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_goto] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1651), - [anon_sym_sizeof] = ACTIONS(1649), - [sym_number_literal] = ACTIONS(1651), - [anon_sym_L_SQUOTE] = ACTIONS(1651), - [anon_sym_u_SQUOTE] = ACTIONS(1651), - [anon_sym_U_SQUOTE] = ACTIONS(1651), - [anon_sym_u8_SQUOTE] = ACTIONS(1651), - [anon_sym_SQUOTE] = ACTIONS(1651), - [anon_sym_L_DQUOTE] = ACTIONS(1651), - [anon_sym_u_DQUOTE] = ACTIONS(1651), - [anon_sym_U_DQUOTE] = ACTIONS(1651), - [anon_sym_u8_DQUOTE] = ACTIONS(1651), - [anon_sym_DQUOTE] = ACTIONS(1651), - [sym_true] = ACTIONS(1649), - [sym_false] = ACTIONS(1649), - [sym_null] = ACTIONS(1649), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1649), - [anon_sym_virtual] = ACTIONS(1649), - [anon_sym_explicit] = ACTIONS(1649), - [sym_auto] = ACTIONS(1649), - [anon_sym_typename] = ACTIONS(1649), - [anon_sym_template] = ACTIONS(1649), - [anon_sym_operator] = ACTIONS(1649), - [anon_sym_delete] = ACTIONS(1649), - [anon_sym_throw] = ACTIONS(1649), - [anon_sym_namespace] = ACTIONS(1649), - [anon_sym_using] = ACTIONS(1649), - [anon_sym_static_assert] = ACTIONS(1649), - [anon_sym_co_return] = ACTIONS(1649), - [anon_sym_co_yield] = ACTIONS(1649), - [anon_sym_try] = ACTIONS(1649), - [anon_sym_co_await] = ACTIONS(1649), - [anon_sym_new] = ACTIONS(1649), - [sym_this] = ACTIONS(1649), - [sym_nullptr] = ACTIONS(1649), - [sym_alone_macro] = ACTIONS(1651), - [aux_sym_alone_macro_call_token1] = ACTIONS(1649), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_FORWARD] = ACTIONS(1649), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1649), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_PS_GET] = ACTIONS(1649), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1649), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1649), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1649), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1649), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1649), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1649), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1649), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1649), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1649), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1649), - [anon_sym_MOZ_COLD] = ACTIONS(1649), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1649), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1649), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1649), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1649), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1649), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1649), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1649), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1649), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1649), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1649), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1649), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1649), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1649), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1649), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1649), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1649), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1649), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1649), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1649), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1649), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_NONNULL] = ACTIONS(1649), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1649), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1649), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1649), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1649), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1649), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_NORETURN] = ACTIONS(1649), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1649), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1649), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1649), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1649), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1649), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1649), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1649), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1649), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1649), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1649), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1649), - [anon_sym_MOZ_RAII] = ACTIONS(1649), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1649), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1649), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1649), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1649), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1649), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1649), - [sym_raw_string_literal] = ACTIONS(1651), - }, - [177] = { - [sym_identifier] = ACTIONS(1653), - [aux_sym_preproc_include_token1] = ACTIONS(1653), - [aux_sym_preproc_def_token1] = ACTIONS(1653), - [aux_sym_preproc_if_token1] = ACTIONS(1653), - [aux_sym_preproc_if_token2] = ACTIONS(1653), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1653), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1653), - [aux_sym_preproc_else_token1] = ACTIONS(1653), - [aux_sym_preproc_elif_token1] = ACTIONS(1653), - [sym_preproc_directive] = ACTIONS(1653), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_typedef] = ACTIONS(1653), - [anon_sym_extern] = ACTIONS(1653), - [anon_sym___attribute__] = ACTIONS(1653), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1655), - [anon_sym___declspec] = ACTIONS(1653), - [anon_sym___based] = ACTIONS(1653), - [anon_sym___cdecl] = ACTIONS(1653), - [anon_sym___clrcall] = ACTIONS(1653), - [anon_sym___stdcall] = ACTIONS(1653), - [anon_sym___fastcall] = ACTIONS(1653), - [anon_sym___thiscall] = ACTIONS(1653), - [anon_sym___vectorcall] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1653), - [anon_sym_register] = ACTIONS(1653), - [anon_sym_inline] = ACTIONS(1653), - [anon_sym_thread_local] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_volatile] = ACTIONS(1653), - [anon_sym_restrict] = ACTIONS(1653), - [anon_sym__Atomic] = ACTIONS(1653), - [anon_sym_mutable] = ACTIONS(1653), - [anon_sym_constexpr] = ACTIONS(1653), - [anon_sym_signed] = ACTIONS(1653), - [anon_sym_unsigned] = ACTIONS(1653), - [anon_sym_long] = ACTIONS(1653), - [anon_sym_short] = ACTIONS(1653), - [sym_primitive_type] = ACTIONS(1653), - [anon_sym_enum] = ACTIONS(1653), - [anon_sym_class] = ACTIONS(1653), - [anon_sym_struct] = ACTIONS(1653), - [anon_sym_union] = ACTIONS(1653), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_else] = ACTIONS(1657), - [anon_sym_switch] = ACTIONS(1653), - [anon_sym_case] = ACTIONS(1653), - [anon_sym_default] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_do] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_goto] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_sizeof] = ACTIONS(1653), - [sym_number_literal] = ACTIONS(1655), - [anon_sym_L_SQUOTE] = ACTIONS(1655), - [anon_sym_u_SQUOTE] = ACTIONS(1655), - [anon_sym_U_SQUOTE] = ACTIONS(1655), - [anon_sym_u8_SQUOTE] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [anon_sym_L_DQUOTE] = ACTIONS(1655), - [anon_sym_u_DQUOTE] = ACTIONS(1655), - [anon_sym_U_DQUOTE] = ACTIONS(1655), - [anon_sym_u8_DQUOTE] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1653), - [anon_sym_virtual] = ACTIONS(1653), - [anon_sym_explicit] = ACTIONS(1653), - [sym_auto] = ACTIONS(1653), - [anon_sym_typename] = ACTIONS(1653), - [anon_sym_template] = ACTIONS(1653), - [anon_sym_operator] = ACTIONS(1653), - [anon_sym_delete] = ACTIONS(1653), - [anon_sym_throw] = ACTIONS(1653), - [anon_sym_namespace] = ACTIONS(1653), - [anon_sym_using] = ACTIONS(1653), - [anon_sym_static_assert] = ACTIONS(1653), - [anon_sym_co_return] = ACTIONS(1653), - [anon_sym_co_yield] = ACTIONS(1653), - [anon_sym_try] = ACTIONS(1653), - [anon_sym_co_await] = ACTIONS(1653), - [anon_sym_new] = ACTIONS(1653), - [sym_this] = ACTIONS(1653), - [sym_nullptr] = ACTIONS(1653), - [sym_alone_macro] = ACTIONS(1655), - [aux_sym_alone_macro_call_token1] = ACTIONS(1653), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_FORWARD] = ACTIONS(1653), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1653), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_PS_GET] = ACTIONS(1653), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1653), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1653), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1653), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1653), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1653), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1653), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1653), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1653), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1653), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1653), - [anon_sym_MOZ_COLD] = ACTIONS(1653), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1653), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1653), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1653), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1653), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1653), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1653), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1653), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1653), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1653), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1653), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1653), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1653), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1653), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1653), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1653), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1653), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1653), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1653), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1653), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1653), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_NONNULL] = ACTIONS(1653), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1653), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1653), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1653), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1653), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1653), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_NORETURN] = ACTIONS(1653), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1653), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1653), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1653), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1653), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1653), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1653), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1653), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1653), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1653), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1653), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1653), - [anon_sym_MOZ_RAII] = ACTIONS(1653), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1653), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1653), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1653), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1653), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1653), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1653), - [sym_raw_string_literal] = ACTIONS(1655), - }, - [178] = { - [sym_identifier] = ACTIONS(1659), - [aux_sym_preproc_include_token1] = ACTIONS(1659), - [aux_sym_preproc_def_token1] = ACTIONS(1659), - [aux_sym_preproc_if_token1] = ACTIONS(1659), - [aux_sym_preproc_if_token2] = ACTIONS(1659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1659), - [aux_sym_preproc_else_token1] = ACTIONS(1659), - [aux_sym_preproc_elif_token1] = ACTIONS(1659), - [sym_preproc_directive] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_TILDE] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_AMP_AMP] = ACTIONS(1661), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_typedef] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym___attribute__] = ACTIONS(1659), - [anon_sym_COLON_COLON] = ACTIONS(1661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1661), - [anon_sym___declspec] = ACTIONS(1659), - [anon_sym___based] = ACTIONS(1659), - [anon_sym___cdecl] = ACTIONS(1659), - [anon_sym___clrcall] = ACTIONS(1659), - [anon_sym___stdcall] = ACTIONS(1659), - [anon_sym___fastcall] = ACTIONS(1659), - [anon_sym___thiscall] = ACTIONS(1659), - [anon_sym___vectorcall] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_inline] = ACTIONS(1659), - [anon_sym_thread_local] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [anon_sym_volatile] = ACTIONS(1659), - [anon_sym_restrict] = ACTIONS(1659), - [anon_sym__Atomic] = ACTIONS(1659), - [anon_sym_mutable] = ACTIONS(1659), - [anon_sym_constexpr] = ACTIONS(1659), - [anon_sym_signed] = ACTIONS(1659), - [anon_sym_unsigned] = ACTIONS(1659), - [anon_sym_long] = ACTIONS(1659), - [anon_sym_short] = ACTIONS(1659), - [sym_primitive_type] = ACTIONS(1659), - [anon_sym_enum] = ACTIONS(1659), - [anon_sym_class] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_switch] = ACTIONS(1659), - [anon_sym_case] = ACTIONS(1659), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_goto] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1661), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1661), - [anon_sym_L_SQUOTE] = ACTIONS(1661), - [anon_sym_u_SQUOTE] = ACTIONS(1661), - [anon_sym_U_SQUOTE] = ACTIONS(1661), - [anon_sym_u8_SQUOTE] = ACTIONS(1661), - [anon_sym_SQUOTE] = ACTIONS(1661), - [anon_sym_L_DQUOTE] = ACTIONS(1661), - [anon_sym_u_DQUOTE] = ACTIONS(1661), - [anon_sym_U_DQUOTE] = ACTIONS(1661), - [anon_sym_u8_DQUOTE] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym_true] = ACTIONS(1659), - [sym_false] = ACTIONS(1659), - [sym_null] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1659), - [anon_sym_virtual] = ACTIONS(1659), - [anon_sym_explicit] = ACTIONS(1659), - [sym_auto] = ACTIONS(1659), - [anon_sym_typename] = ACTIONS(1659), - [anon_sym_template] = ACTIONS(1659), - [anon_sym_operator] = ACTIONS(1659), - [anon_sym_delete] = ACTIONS(1659), - [anon_sym_throw] = ACTIONS(1659), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_using] = ACTIONS(1659), - [anon_sym_static_assert] = ACTIONS(1659), - [anon_sym_co_return] = ACTIONS(1659), - [anon_sym_co_yield] = ACTIONS(1659), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_co_await] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [sym_this] = ACTIONS(1659), - [sym_nullptr] = ACTIONS(1659), - [sym_alone_macro] = ACTIONS(1661), - [aux_sym_alone_macro_call_token1] = ACTIONS(1659), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_FORWARD] = ACTIONS(1659), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1659), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_PS_GET] = ACTIONS(1659), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1659), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1659), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1659), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1659), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1659), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1659), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1659), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1659), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1659), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1659), - [anon_sym_MOZ_COLD] = ACTIONS(1659), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1659), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1659), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1659), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1659), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1659), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1659), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1659), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1659), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1659), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1659), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1659), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1659), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1659), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1659), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1659), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1659), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1659), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1659), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1659), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1659), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_NONNULL] = ACTIONS(1659), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1659), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1659), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1659), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1659), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1659), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_NORETURN] = ACTIONS(1659), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1659), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1659), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1659), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1659), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1659), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1659), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1659), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1659), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1659), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1659), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1659), - [anon_sym_MOZ_RAII] = ACTIONS(1659), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1659), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1659), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1659), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1659), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1659), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1659), - [sym_raw_string_literal] = ACTIONS(1661), - }, - [179] = { - [sym_identifier] = ACTIONS(1663), - [aux_sym_preproc_include_token1] = ACTIONS(1663), - [aux_sym_preproc_def_token1] = ACTIONS(1663), - [aux_sym_preproc_if_token1] = ACTIONS(1663), - [aux_sym_preproc_if_token2] = ACTIONS(1663), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1663), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1663), - [aux_sym_preproc_else_token1] = ACTIONS(1663), - [aux_sym_preproc_elif_token1] = ACTIONS(1663), - [sym_preproc_directive] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1665), - [anon_sym_TILDE] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_AMP_AMP] = ACTIONS(1665), - [anon_sym_AMP] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_typedef] = ACTIONS(1663), - [anon_sym_extern] = ACTIONS(1663), - [anon_sym___attribute__] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1665), - [anon_sym___declspec] = ACTIONS(1663), - [anon_sym___based] = ACTIONS(1663), - [anon_sym___cdecl] = ACTIONS(1663), - [anon_sym___clrcall] = ACTIONS(1663), - [anon_sym___stdcall] = ACTIONS(1663), - [anon_sym___fastcall] = ACTIONS(1663), - [anon_sym___thiscall] = ACTIONS(1663), - [anon_sym___vectorcall] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_static] = ACTIONS(1663), - [anon_sym_register] = ACTIONS(1663), - [anon_sym_inline] = ACTIONS(1663), - [anon_sym_thread_local] = ACTIONS(1663), - [anon_sym_const] = ACTIONS(1663), - [anon_sym_volatile] = ACTIONS(1663), - [anon_sym_restrict] = ACTIONS(1663), - [anon_sym__Atomic] = ACTIONS(1663), - [anon_sym_mutable] = ACTIONS(1663), - [anon_sym_constexpr] = ACTIONS(1663), - [anon_sym_signed] = ACTIONS(1663), - [anon_sym_unsigned] = ACTIONS(1663), - [anon_sym_long] = ACTIONS(1663), - [anon_sym_short] = ACTIONS(1663), - [sym_primitive_type] = ACTIONS(1663), - [anon_sym_enum] = ACTIONS(1663), - [anon_sym_class] = ACTIONS(1663), - [anon_sym_struct] = ACTIONS(1663), - [anon_sym_union] = ACTIONS(1663), - [anon_sym_if] = ACTIONS(1663), - [anon_sym_else] = ACTIONS(1663), - [anon_sym_switch] = ACTIONS(1663), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1663), - [anon_sym_while] = ACTIONS(1663), - [anon_sym_do] = ACTIONS(1663), - [anon_sym_for] = ACTIONS(1663), - [anon_sym_return] = ACTIONS(1663), - [anon_sym_break] = ACTIONS(1663), - [anon_sym_continue] = ACTIONS(1663), - [anon_sym_goto] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1665), - [anon_sym_PLUS_PLUS] = ACTIONS(1665), - [anon_sym_sizeof] = ACTIONS(1663), - [sym_number_literal] = ACTIONS(1665), - [anon_sym_L_SQUOTE] = ACTIONS(1665), - [anon_sym_u_SQUOTE] = ACTIONS(1665), - [anon_sym_U_SQUOTE] = ACTIONS(1665), - [anon_sym_u8_SQUOTE] = ACTIONS(1665), - [anon_sym_SQUOTE] = ACTIONS(1665), - [anon_sym_L_DQUOTE] = ACTIONS(1665), - [anon_sym_u_DQUOTE] = ACTIONS(1665), - [anon_sym_U_DQUOTE] = ACTIONS(1665), - [anon_sym_u8_DQUOTE] = ACTIONS(1665), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_true] = ACTIONS(1663), - [sym_false] = ACTIONS(1663), - [sym_null] = ACTIONS(1663), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1663), - [anon_sym_virtual] = ACTIONS(1663), - [anon_sym_explicit] = ACTIONS(1663), - [sym_auto] = ACTIONS(1663), - [anon_sym_typename] = ACTIONS(1663), - [anon_sym_template] = ACTIONS(1663), - [anon_sym_operator] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_throw] = ACTIONS(1663), - [anon_sym_namespace] = ACTIONS(1663), - [anon_sym_using] = ACTIONS(1663), - [anon_sym_static_assert] = ACTIONS(1663), - [anon_sym_co_return] = ACTIONS(1663), - [anon_sym_co_yield] = ACTIONS(1663), - [anon_sym_try] = ACTIONS(1663), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1663), - [sym_this] = ACTIONS(1663), - [sym_nullptr] = ACTIONS(1663), - [sym_alone_macro] = ACTIONS(1665), - [aux_sym_alone_macro_call_token1] = ACTIONS(1663), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_FORWARD] = ACTIONS(1663), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1663), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_PS_GET] = ACTIONS(1663), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1663), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1663), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1663), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1663), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1663), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1663), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1663), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1663), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1663), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1663), - [anon_sym_MOZ_COLD] = ACTIONS(1663), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1663), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1663), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1663), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1663), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1663), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1663), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1663), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1663), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1663), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1663), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1663), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1663), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1663), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1663), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1663), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1663), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1663), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1663), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1663), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1663), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_NONNULL] = ACTIONS(1663), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1663), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1663), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1663), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1663), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1663), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_NORETURN] = ACTIONS(1663), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1663), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1663), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1663), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1663), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1663), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1663), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1663), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1663), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1663), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1663), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1663), - [anon_sym_MOZ_RAII] = ACTIONS(1663), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1663), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1663), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1663), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1663), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1663), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1663), - [sym_raw_string_literal] = ACTIONS(1665), - }, - [180] = { - [sym_identifier] = ACTIONS(1667), - [aux_sym_preproc_include_token1] = ACTIONS(1667), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token2] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1667), - [aux_sym_preproc_else_token1] = ACTIONS(1667), - [aux_sym_preproc_elif_token1] = ACTIONS(1667), - [sym_preproc_directive] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_BANG] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_typedef] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym___attribute__] = ACTIONS(1667), - [anon_sym_COLON_COLON] = ACTIONS(1669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1669), - [anon_sym___declspec] = ACTIONS(1667), - [anon_sym___based] = ACTIONS(1667), - [anon_sym___cdecl] = ACTIONS(1667), - [anon_sym___clrcall] = ACTIONS(1667), - [anon_sym___stdcall] = ACTIONS(1667), - [anon_sym___fastcall] = ACTIONS(1667), - [anon_sym___thiscall] = ACTIONS(1667), - [anon_sym___vectorcall] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_inline] = ACTIONS(1667), - [anon_sym_thread_local] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [anon_sym_volatile] = ACTIONS(1667), - [anon_sym_restrict] = ACTIONS(1667), - [anon_sym__Atomic] = ACTIONS(1667), - [anon_sym_mutable] = ACTIONS(1667), - [anon_sym_constexpr] = ACTIONS(1667), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [sym_primitive_type] = ACTIONS(1667), - [anon_sym_enum] = ACTIONS(1667), - [anon_sym_class] = ACTIONS(1667), - [anon_sym_struct] = ACTIONS(1667), - [anon_sym_union] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_switch] = ACTIONS(1667), - [anon_sym_case] = ACTIONS(1667), - [anon_sym_default] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_goto] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_sizeof] = ACTIONS(1667), - [sym_number_literal] = ACTIONS(1669), - [anon_sym_L_SQUOTE] = ACTIONS(1669), - [anon_sym_u_SQUOTE] = ACTIONS(1669), - [anon_sym_U_SQUOTE] = ACTIONS(1669), - [anon_sym_u8_SQUOTE] = ACTIONS(1669), - [anon_sym_SQUOTE] = ACTIONS(1669), - [anon_sym_L_DQUOTE] = ACTIONS(1669), - [anon_sym_u_DQUOTE] = ACTIONS(1669), - [anon_sym_U_DQUOTE] = ACTIONS(1669), - [anon_sym_u8_DQUOTE] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym_true] = ACTIONS(1667), - [sym_false] = ACTIONS(1667), - [sym_null] = ACTIONS(1667), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1667), - [anon_sym_virtual] = ACTIONS(1667), - [anon_sym_explicit] = ACTIONS(1667), - [sym_auto] = ACTIONS(1667), - [anon_sym_typename] = ACTIONS(1667), - [anon_sym_template] = ACTIONS(1667), - [anon_sym_operator] = ACTIONS(1667), - [anon_sym_delete] = ACTIONS(1667), - [anon_sym_throw] = ACTIONS(1667), - [anon_sym_namespace] = ACTIONS(1667), - [anon_sym_using] = ACTIONS(1667), - [anon_sym_static_assert] = ACTIONS(1667), - [anon_sym_co_return] = ACTIONS(1667), - [anon_sym_co_yield] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_co_await] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [sym_this] = ACTIONS(1667), - [sym_nullptr] = ACTIONS(1667), - [sym_alone_macro] = ACTIONS(1669), - [aux_sym_alone_macro_call_token1] = ACTIONS(1667), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_FORWARD] = ACTIONS(1667), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1667), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_PS_GET] = ACTIONS(1667), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1667), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1667), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1667), - [anon_sym_MOZ_COLD] = ACTIONS(1667), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1667), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1667), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1667), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1667), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1667), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1667), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1667), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1667), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1667), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1667), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1667), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1667), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_RAII] = ACTIONS(1667), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1667), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1667), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1667), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1667), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1667), - [sym_raw_string_literal] = ACTIONS(1669), - }, - [181] = { - [sym_identifier] = ACTIONS(1671), - [aux_sym_preproc_include_token1] = ACTIONS(1671), - [aux_sym_preproc_def_token1] = ACTIONS(1671), - [aux_sym_preproc_if_token1] = ACTIONS(1671), - [aux_sym_preproc_if_token2] = ACTIONS(1671), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1671), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1671), - [aux_sym_preproc_else_token1] = ACTIONS(1671), - [aux_sym_preproc_elif_token1] = ACTIONS(1671), - [sym_preproc_directive] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1673), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_AMP_AMP] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_typedef] = ACTIONS(1671), - [anon_sym_extern] = ACTIONS(1671), - [anon_sym___attribute__] = ACTIONS(1671), - [anon_sym_COLON_COLON] = ACTIONS(1673), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1673), - [anon_sym___declspec] = ACTIONS(1671), - [anon_sym___based] = ACTIONS(1671), - [anon_sym___cdecl] = ACTIONS(1671), - [anon_sym___clrcall] = ACTIONS(1671), - [anon_sym___stdcall] = ACTIONS(1671), - [anon_sym___fastcall] = ACTIONS(1671), - [anon_sym___thiscall] = ACTIONS(1671), - [anon_sym___vectorcall] = ACTIONS(1671), - [anon_sym_LBRACE] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_register] = ACTIONS(1671), - [anon_sym_inline] = ACTIONS(1671), - [anon_sym_thread_local] = ACTIONS(1671), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_volatile] = ACTIONS(1671), - [anon_sym_restrict] = ACTIONS(1671), - [anon_sym__Atomic] = ACTIONS(1671), - [anon_sym_mutable] = ACTIONS(1671), - [anon_sym_constexpr] = ACTIONS(1671), - [anon_sym_signed] = ACTIONS(1671), - [anon_sym_unsigned] = ACTIONS(1671), - [anon_sym_long] = ACTIONS(1671), - [anon_sym_short] = ACTIONS(1671), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_enum] = ACTIONS(1671), - [anon_sym_class] = ACTIONS(1671), - [anon_sym_struct] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_if] = ACTIONS(1671), - [anon_sym_else] = ACTIONS(1671), - [anon_sym_switch] = ACTIONS(1671), - [anon_sym_case] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_while] = ACTIONS(1671), - [anon_sym_do] = ACTIONS(1671), - [anon_sym_for] = ACTIONS(1671), - [anon_sym_return] = ACTIONS(1671), - [anon_sym_break] = ACTIONS(1671), - [anon_sym_continue] = ACTIONS(1671), - [anon_sym_goto] = ACTIONS(1671), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1671), - [sym_number_literal] = ACTIONS(1673), - [anon_sym_L_SQUOTE] = ACTIONS(1673), - [anon_sym_u_SQUOTE] = ACTIONS(1673), - [anon_sym_U_SQUOTE] = ACTIONS(1673), - [anon_sym_u8_SQUOTE] = ACTIONS(1673), - [anon_sym_SQUOTE] = ACTIONS(1673), - [anon_sym_L_DQUOTE] = ACTIONS(1673), - [anon_sym_u_DQUOTE] = ACTIONS(1673), - [anon_sym_U_DQUOTE] = ACTIONS(1673), - [anon_sym_u8_DQUOTE] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1673), - [sym_true] = ACTIONS(1671), - [sym_false] = ACTIONS(1671), - [sym_null] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1671), - [anon_sym_virtual] = ACTIONS(1671), - [anon_sym_explicit] = ACTIONS(1671), - [sym_auto] = ACTIONS(1671), - [anon_sym_typename] = ACTIONS(1671), - [anon_sym_template] = ACTIONS(1671), - [anon_sym_operator] = ACTIONS(1671), - [anon_sym_delete] = ACTIONS(1671), - [anon_sym_throw] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1671), - [anon_sym_using] = ACTIONS(1671), - [anon_sym_static_assert] = ACTIONS(1671), - [anon_sym_co_return] = ACTIONS(1671), - [anon_sym_co_yield] = ACTIONS(1671), - [anon_sym_try] = ACTIONS(1671), - [anon_sym_co_await] = ACTIONS(1671), - [anon_sym_new] = ACTIONS(1671), - [sym_this] = ACTIONS(1671), - [sym_nullptr] = ACTIONS(1671), - [sym_alone_macro] = ACTIONS(1673), - [aux_sym_alone_macro_call_token1] = ACTIONS(1671), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_FORWARD] = ACTIONS(1671), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1671), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_PS_GET] = ACTIONS(1671), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1671), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1671), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1671), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1671), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1671), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1671), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1671), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1671), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1671), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1671), - [anon_sym_MOZ_COLD] = ACTIONS(1671), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1671), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1671), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1671), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1671), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1671), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1671), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1671), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1671), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1671), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1671), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1671), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1671), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1671), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1671), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1671), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1671), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1671), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1671), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1671), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1671), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_NONNULL] = ACTIONS(1671), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1671), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1671), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1671), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1671), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1671), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_NORETURN] = ACTIONS(1671), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1671), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1671), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1671), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1671), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1671), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1671), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1671), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1671), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1671), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1671), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1671), - [anon_sym_MOZ_RAII] = ACTIONS(1671), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1671), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1671), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1671), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1671), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1671), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1671), - [sym_raw_string_literal] = ACTIONS(1673), - }, - [182] = { - [sym_identifier] = ACTIONS(1675), - [aux_sym_preproc_include_token1] = ACTIONS(1675), - [aux_sym_preproc_def_token1] = ACTIONS(1675), - [aux_sym_preproc_if_token1] = ACTIONS(1675), - [aux_sym_preproc_if_token2] = ACTIONS(1675), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1675), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1675), - [aux_sym_preproc_else_token1] = ACTIONS(1675), - [aux_sym_preproc_elif_token1] = ACTIONS(1675), - [sym_preproc_directive] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1677), - [anon_sym_BANG] = ACTIONS(1677), - [anon_sym_TILDE] = ACTIONS(1677), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1677), - [anon_sym_AMP_AMP] = ACTIONS(1677), - [anon_sym_AMP] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_typedef] = ACTIONS(1675), - [anon_sym_extern] = ACTIONS(1675), - [anon_sym___attribute__] = ACTIONS(1675), - [anon_sym_COLON_COLON] = ACTIONS(1677), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1677), - [anon_sym___declspec] = ACTIONS(1675), - [anon_sym___based] = ACTIONS(1675), - [anon_sym___cdecl] = ACTIONS(1675), - [anon_sym___clrcall] = ACTIONS(1675), - [anon_sym___stdcall] = ACTIONS(1675), - [anon_sym___fastcall] = ACTIONS(1675), - [anon_sym___thiscall] = ACTIONS(1675), - [anon_sym___vectorcall] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_register] = ACTIONS(1675), - [anon_sym_inline] = ACTIONS(1675), - [anon_sym_thread_local] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(1675), - [anon_sym_volatile] = ACTIONS(1675), - [anon_sym_restrict] = ACTIONS(1675), - [anon_sym__Atomic] = ACTIONS(1675), - [anon_sym_mutable] = ACTIONS(1675), - [anon_sym_constexpr] = ACTIONS(1675), - [anon_sym_signed] = ACTIONS(1675), - [anon_sym_unsigned] = ACTIONS(1675), - [anon_sym_long] = ACTIONS(1675), - [anon_sym_short] = ACTIONS(1675), - [sym_primitive_type] = ACTIONS(1675), - [anon_sym_enum] = ACTIONS(1675), - [anon_sym_class] = ACTIONS(1675), - [anon_sym_struct] = ACTIONS(1675), - [anon_sym_union] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1675), - [anon_sym_else] = ACTIONS(1675), + [anon_sym___extension__] = ACTIONS(1665), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1673), [anon_sym_switch] = ACTIONS(1675), - [anon_sym_case] = ACTIONS(1675), - [anon_sym_default] = ACTIONS(1675), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_do] = ACTIONS(1675), - [anon_sym_for] = ACTIONS(1675), - [anon_sym_return] = ACTIONS(1675), - [anon_sym_break] = ACTIONS(1675), - [anon_sym_continue] = ACTIONS(1675), - [anon_sym_goto] = ACTIONS(1675), - [anon_sym_DASH_DASH] = ACTIONS(1677), - [anon_sym_PLUS_PLUS] = ACTIONS(1677), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1677), - [anon_sym_u_SQUOTE] = ACTIONS(1677), - [anon_sym_U_SQUOTE] = ACTIONS(1677), - [anon_sym_u8_SQUOTE] = ACTIONS(1677), - [anon_sym_SQUOTE] = ACTIONS(1677), - [anon_sym_L_DQUOTE] = ACTIONS(1677), - [anon_sym_u_DQUOTE] = ACTIONS(1677), - [anon_sym_U_DQUOTE] = ACTIONS(1677), - [anon_sym_u8_DQUOTE] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1677), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_null] = ACTIONS(1675), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1675), - [anon_sym_virtual] = ACTIONS(1675), - [anon_sym_explicit] = ACTIONS(1675), - [sym_auto] = ACTIONS(1675), - [anon_sym_typename] = ACTIONS(1675), - [anon_sym_template] = ACTIONS(1675), - [anon_sym_operator] = ACTIONS(1675), - [anon_sym_delete] = ACTIONS(1675), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1675), - [anon_sym_using] = ACTIONS(1675), - [anon_sym_static_assert] = ACTIONS(1675), - [anon_sym_co_return] = ACTIONS(1675), - [anon_sym_co_yield] = ACTIONS(1675), - [anon_sym_try] = ACTIONS(1675), - [anon_sym_co_await] = ACTIONS(1675), - [anon_sym_new] = ACTIONS(1675), - [sym_this] = ACTIONS(1675), - [sym_nullptr] = ACTIONS(1675), - [sym_alone_macro] = ACTIONS(1677), - [aux_sym_alone_macro_call_token1] = ACTIONS(1675), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_FORWARD] = ACTIONS(1675), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1675), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_PS_GET] = ACTIONS(1675), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1675), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1675), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1675), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1675), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1675), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1675), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1675), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1675), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1675), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1675), - [anon_sym_MOZ_COLD] = ACTIONS(1675), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1675), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1675), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1675), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1675), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1675), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1675), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1675), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1675), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1675), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1675), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1675), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1675), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1675), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1675), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1675), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1675), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1675), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1675), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1675), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1675), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_NONNULL] = ACTIONS(1675), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1675), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1675), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1675), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1675), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1675), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_NORETURN] = ACTIONS(1675), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1675), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1675), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1675), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1675), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1675), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1675), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1675), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1675), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1675), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1675), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1675), - [anon_sym_MOZ_RAII] = ACTIONS(1675), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1675), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1675), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1675), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1675), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1675), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1675), - [sym_raw_string_literal] = ACTIONS(1677), - }, - [183] = { - [sym_identifier] = ACTIONS(1679), - [aux_sym_preproc_include_token1] = ACTIONS(1679), - [aux_sym_preproc_def_token1] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1679), - [aux_sym_preproc_if_token2] = ACTIONS(1679), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1679), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1679), - [aux_sym_preproc_else_token1] = ACTIONS(1679), - [aux_sym_preproc_elif_token1] = ACTIONS(1679), - [sym_preproc_directive] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_BANG] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1679), - [anon_sym_PLUS] = ACTIONS(1679), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_typedef] = ACTIONS(1679), - [anon_sym_extern] = ACTIONS(1679), - [anon_sym___attribute__] = ACTIONS(1679), - [anon_sym_COLON_COLON] = ACTIONS(1681), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1681), - [anon_sym___declspec] = ACTIONS(1679), - [anon_sym___based] = ACTIONS(1679), - [anon_sym___cdecl] = ACTIONS(1679), - [anon_sym___clrcall] = ACTIONS(1679), - [anon_sym___stdcall] = ACTIONS(1679), - [anon_sym___fastcall] = ACTIONS(1679), - [anon_sym___thiscall] = ACTIONS(1679), - [anon_sym___vectorcall] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1681), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_static] = ACTIONS(1679), - [anon_sym_register] = ACTIONS(1679), - [anon_sym_inline] = ACTIONS(1679), - [anon_sym_thread_local] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1679), - [anon_sym_volatile] = ACTIONS(1679), - [anon_sym_restrict] = ACTIONS(1679), - [anon_sym__Atomic] = ACTIONS(1679), - [anon_sym_mutable] = ACTIONS(1679), - [anon_sym_constexpr] = ACTIONS(1679), - [anon_sym_signed] = ACTIONS(1679), - [anon_sym_unsigned] = ACTIONS(1679), - [anon_sym_long] = ACTIONS(1679), - [anon_sym_short] = ACTIONS(1679), - [sym_primitive_type] = ACTIONS(1679), - [anon_sym_enum] = ACTIONS(1679), - [anon_sym_class] = ACTIONS(1679), - [anon_sym_struct] = ACTIONS(1679), - [anon_sym_union] = ACTIONS(1679), - [anon_sym_if] = ACTIONS(1679), - [anon_sym_else] = ACTIONS(1679), - [anon_sym_switch] = ACTIONS(1679), - [anon_sym_case] = ACTIONS(1679), + [anon_sym_case] = ACTIONS(1677), [anon_sym_default] = ACTIONS(1679), - [anon_sym_while] = ACTIONS(1679), - [anon_sym_do] = ACTIONS(1679), - [anon_sym_for] = ACTIONS(1679), - [anon_sym_return] = ACTIONS(1679), - [anon_sym_break] = ACTIONS(1679), - [anon_sym_continue] = ACTIONS(1679), - [anon_sym_goto] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1681), - [anon_sym_PLUS_PLUS] = ACTIONS(1681), - [anon_sym_sizeof] = ACTIONS(1679), - [sym_number_literal] = ACTIONS(1681), - [anon_sym_L_SQUOTE] = ACTIONS(1681), - [anon_sym_u_SQUOTE] = ACTIONS(1681), - [anon_sym_U_SQUOTE] = ACTIONS(1681), - [anon_sym_u8_SQUOTE] = ACTIONS(1681), - [anon_sym_SQUOTE] = ACTIONS(1681), - [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(1679), - [sym_false] = ACTIONS(1679), - [sym_null] = ACTIONS(1679), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1679), - [anon_sym_virtual] = ACTIONS(1679), - [anon_sym_explicit] = ACTIONS(1679), - [sym_auto] = ACTIONS(1679), - [anon_sym_typename] = ACTIONS(1679), - [anon_sym_template] = ACTIONS(1679), - [anon_sym_operator] = ACTIONS(1679), - [anon_sym_delete] = ACTIONS(1679), - [anon_sym_throw] = ACTIONS(1679), - [anon_sym_namespace] = ACTIONS(1679), - [anon_sym_using] = ACTIONS(1679), - [anon_sym_static_assert] = ACTIONS(1679), - [anon_sym_co_return] = ACTIONS(1679), - [anon_sym_co_yield] = ACTIONS(1679), - [anon_sym_try] = ACTIONS(1679), - [anon_sym_co_await] = ACTIONS(1679), - [anon_sym_new] = ACTIONS(1679), - [sym_this] = ACTIONS(1679), - [sym_nullptr] = ACTIONS(1679), - [sym_alone_macro] = ACTIONS(1681), - [aux_sym_alone_macro_call_token1] = ACTIONS(1679), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_FORWARD] = ACTIONS(1679), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1679), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_PS_GET] = ACTIONS(1679), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1679), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1679), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1679), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1679), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1679), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1679), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1679), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1679), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1679), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1679), - [anon_sym_MOZ_COLD] = ACTIONS(1679), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1679), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1679), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1679), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1679), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1679), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1679), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1679), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1679), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1679), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1679), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1679), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1679), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1679), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1679), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1679), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1679), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1679), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1679), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1679), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1679), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_NONNULL] = ACTIONS(1679), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1679), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1679), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1679), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1679), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1679), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_NORETURN] = ACTIONS(1679), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1679), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1679), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1679), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1679), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1679), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1679), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1679), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1679), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1679), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1679), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1679), - [anon_sym_MOZ_RAII] = ACTIONS(1679), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1679), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1679), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1679), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1679), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1679), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1679), - [sym_raw_string_literal] = ACTIONS(1681), - }, - [184] = { - [sym_identifier] = ACTIONS(1683), - [aux_sym_preproc_include_token1] = ACTIONS(1683), - [aux_sym_preproc_def_token1] = ACTIONS(1683), - [aux_sym_preproc_if_token1] = ACTIONS(1683), - [aux_sym_preproc_if_token2] = ACTIONS(1683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1683), - [aux_sym_preproc_else_token1] = ACTIONS(1683), - [aux_sym_preproc_elif_token1] = ACTIONS(1683), - [sym_preproc_directive] = ACTIONS(1683), - [anon_sym_LPAREN2] = ACTIONS(1685), - [anon_sym_BANG] = ACTIONS(1685), - [anon_sym_TILDE] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_typedef] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1683), - [anon_sym___attribute__] = ACTIONS(1683), - [anon_sym_COLON_COLON] = ACTIONS(1685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1685), - [anon_sym___declspec] = ACTIONS(1683), - [anon_sym___based] = ACTIONS(1683), - [anon_sym___cdecl] = ACTIONS(1683), - [anon_sym___clrcall] = ACTIONS(1683), - [anon_sym___stdcall] = ACTIONS(1683), - [anon_sym___fastcall] = ACTIONS(1683), - [anon_sym___thiscall] = ACTIONS(1683), - [anon_sym___vectorcall] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1685), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_static] = ACTIONS(1683), - [anon_sym_register] = ACTIONS(1683), - [anon_sym_inline] = ACTIONS(1683), - [anon_sym_thread_local] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_volatile] = ACTIONS(1683), - [anon_sym_restrict] = ACTIONS(1683), - [anon_sym__Atomic] = ACTIONS(1683), - [anon_sym_mutable] = ACTIONS(1683), - [anon_sym_constexpr] = ACTIONS(1683), - [anon_sym_signed] = ACTIONS(1683), - [anon_sym_unsigned] = ACTIONS(1683), - [anon_sym_long] = ACTIONS(1683), - [anon_sym_short] = ACTIONS(1683), - [sym_primitive_type] = ACTIONS(1683), - [anon_sym_enum] = ACTIONS(1683), - [anon_sym_class] = ACTIONS(1683), - [anon_sym_struct] = ACTIONS(1683), - [anon_sym_union] = ACTIONS(1683), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_else] = ACTIONS(1683), - [anon_sym_switch] = ACTIONS(1683), - [anon_sym_case] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1683), - [anon_sym_while] = ACTIONS(1683), + [anon_sym_while] = ACTIONS(1681), [anon_sym_do] = ACTIONS(1683), - [anon_sym_for] = ACTIONS(1683), - [anon_sym_return] = ACTIONS(1683), - [anon_sym_break] = ACTIONS(1683), - [anon_sym_continue] = ACTIONS(1683), - [anon_sym_goto] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1685), - [anon_sym_PLUS_PLUS] = ACTIONS(1685), - [anon_sym_sizeof] = ACTIONS(1683), - [sym_number_literal] = ACTIONS(1685), - [anon_sym_L_SQUOTE] = ACTIONS(1685), - [anon_sym_u_SQUOTE] = ACTIONS(1685), - [anon_sym_U_SQUOTE] = ACTIONS(1685), - [anon_sym_u8_SQUOTE] = ACTIONS(1685), - [anon_sym_SQUOTE] = ACTIONS(1685), - [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(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1683), - [anon_sym_virtual] = ACTIONS(1683), - [anon_sym_explicit] = ACTIONS(1683), - [sym_auto] = ACTIONS(1683), - [anon_sym_typename] = ACTIONS(1683), - [anon_sym_template] = ACTIONS(1683), - [anon_sym_operator] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_throw] = ACTIONS(1683), - [anon_sym_namespace] = ACTIONS(1683), - [anon_sym_using] = ACTIONS(1683), - [anon_sym_static_assert] = ACTIONS(1683), - [anon_sym_co_return] = ACTIONS(1683), - [anon_sym_co_yield] = ACTIONS(1683), - [anon_sym_try] = ACTIONS(1683), - [anon_sym_co_await] = ACTIONS(1683), - [anon_sym_new] = ACTIONS(1683), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - [sym_alone_macro] = ACTIONS(1685), - [aux_sym_alone_macro_call_token1] = ACTIONS(1683), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_FORWARD] = ACTIONS(1683), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1683), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_PS_GET] = ACTIONS(1683), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1683), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1683), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1683), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1683), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1683), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1683), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1683), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1683), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1683), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1683), - [anon_sym_MOZ_COLD] = ACTIONS(1683), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1683), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1683), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1683), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1683), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1683), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1683), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1683), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1683), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1683), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1683), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1683), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1683), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1683), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1683), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1683), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1683), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1683), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1683), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1683), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1683), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_NONNULL] = ACTIONS(1683), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1683), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1683), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1683), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1683), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1683), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_NORETURN] = ACTIONS(1683), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1683), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1683), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1683), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1683), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1683), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1683), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1683), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1683), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1683), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1683), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1683), - [anon_sym_MOZ_RAII] = ACTIONS(1683), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1683), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1683), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1683), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1683), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1683), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1683), - [sym_raw_string_literal] = ACTIONS(1685), - }, - [185] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [186] = { + [anon_sym_for] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_goto] = ACTIONS(1693), + [anon_sym___try] = ACTIONS(1695), + [anon_sym___leave] = ACTIONS(1697), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1699), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(1701), + [anon_sym_co_return] = ACTIONS(1703), + [anon_sym_co_yield] = ACTIONS(1705), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(104)] = { + [sym_declaration] = STATE(108), + [sym_type_definition] = STATE(108), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5509), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(108), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(108), + [sym_labeled_statement] = STATE(108), + [sym_expression_statement] = STATE(108), + [sym_if_statement] = STATE(108), + [sym_switch_statement] = STATE(108), + [sym_while_statement] = STATE(108), + [sym_do_statement] = STATE(108), + [sym_for_statement] = STATE(108), + [sym_return_statement] = STATE(108), + [sym_break_statement] = STATE(108), + [sym_continue_statement] = STATE(108), + [sym_goto_statement] = STATE(108), + [sym_seh_try_statement] = STATE(108), + [sym_seh_leave_statement] = STATE(108), + [sym_expression] = STATE(4912), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8611), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(108), + [sym_co_return_statement] = STATE(108), + [sym_co_yield_statement] = STATE(108), + [sym_throw_statement] = STATE(108), + [sym_try_statement] = STATE(108), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(846), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(108), [sym_identifier] = ACTIONS(1667), - [aux_sym_preproc_include_token1] = ACTIONS(1667), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token2] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1667), - [aux_sym_preproc_else_token1] = ACTIONS(1667), - [aux_sym_preproc_elif_token1] = ACTIONS(1667), - [sym_preproc_directive] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_BANG] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_typedef] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym___attribute__] = ACTIONS(1667), - [anon_sym_COLON_COLON] = ACTIONS(1669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1669), - [anon_sym___declspec] = ACTIONS(1667), - [anon_sym___based] = ACTIONS(1667), - [anon_sym___cdecl] = ACTIONS(1667), - [anon_sym___clrcall] = ACTIONS(1667), - [anon_sym___stdcall] = ACTIONS(1667), - [anon_sym___fastcall] = ACTIONS(1667), - [anon_sym___thiscall] = ACTIONS(1667), - [anon_sym___vectorcall] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_inline] = ACTIONS(1667), - [anon_sym_thread_local] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [anon_sym_volatile] = ACTIONS(1667), - [anon_sym_restrict] = ACTIONS(1667), - [anon_sym__Atomic] = ACTIONS(1667), - [anon_sym_mutable] = ACTIONS(1667), - [anon_sym_constexpr] = ACTIONS(1667), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [sym_primitive_type] = ACTIONS(1667), - [anon_sym_enum] = ACTIONS(1667), - [anon_sym_class] = ACTIONS(1667), - [anon_sym_struct] = ACTIONS(1667), - [anon_sym_union] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_switch] = ACTIONS(1667), - [anon_sym_case] = ACTIONS(1667), - [anon_sym_default] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_goto] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_sizeof] = ACTIONS(1667), - [sym_number_literal] = ACTIONS(1669), - [anon_sym_L_SQUOTE] = ACTIONS(1669), - [anon_sym_u_SQUOTE] = ACTIONS(1669), - [anon_sym_U_SQUOTE] = ACTIONS(1669), - [anon_sym_u8_SQUOTE] = ACTIONS(1669), - [anon_sym_SQUOTE] = ACTIONS(1669), - [anon_sym_L_DQUOTE] = ACTIONS(1669), - [anon_sym_u_DQUOTE] = ACTIONS(1669), - [anon_sym_U_DQUOTE] = ACTIONS(1669), - [anon_sym_u8_DQUOTE] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym_true] = ACTIONS(1667), - [sym_false] = ACTIONS(1667), - [sym_null] = ACTIONS(1667), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1667), - [anon_sym_virtual] = ACTIONS(1667), - [anon_sym_explicit] = ACTIONS(1667), - [sym_auto] = ACTIONS(1667), - [anon_sym_typename] = ACTIONS(1667), - [anon_sym_template] = ACTIONS(1667), - [anon_sym_operator] = ACTIONS(1667), - [anon_sym_delete] = ACTIONS(1667), - [anon_sym_throw] = ACTIONS(1667), - [anon_sym_namespace] = ACTIONS(1667), - [anon_sym_using] = ACTIONS(1667), - [anon_sym_static_assert] = ACTIONS(1667), - [anon_sym_co_return] = ACTIONS(1667), - [anon_sym_co_yield] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_co_await] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [sym_this] = ACTIONS(1667), - [sym_nullptr] = ACTIONS(1667), - [sym_alone_macro] = ACTIONS(1669), - [aux_sym_alone_macro_call_token1] = ACTIONS(1667), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_FORWARD] = ACTIONS(1667), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1667), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_PS_GET] = ACTIONS(1667), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1667), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1667), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1667), - [anon_sym_MOZ_COLD] = ACTIONS(1667), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1667), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1667), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1667), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1667), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1667), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1667), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1667), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1667), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1667), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1667), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1667), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1667), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_RAII] = ACTIONS(1667), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1667), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1667), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1667), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1667), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1667), - [sym_raw_string_literal] = ACTIONS(1669), - }, - [187] = { - [sym_identifier] = ACTIONS(1687), - [aux_sym_preproc_include_token1] = ACTIONS(1687), - [aux_sym_preproc_def_token1] = ACTIONS(1687), - [aux_sym_preproc_if_token1] = ACTIONS(1687), - [aux_sym_preproc_if_token2] = ACTIONS(1687), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1687), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1687), - [aux_sym_preproc_else_token1] = ACTIONS(1687), - [aux_sym_preproc_elif_token1] = ACTIONS(1687), - [sym_preproc_directive] = ACTIONS(1687), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_AMP_AMP] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_typedef] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(1687), - [anon_sym___attribute__] = ACTIONS(1687), - [anon_sym_COLON_COLON] = ACTIONS(1689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1689), - [anon_sym___declspec] = ACTIONS(1687), - [anon_sym___based] = ACTIONS(1687), - [anon_sym___cdecl] = ACTIONS(1687), - [anon_sym___clrcall] = ACTIONS(1687), - [anon_sym___stdcall] = ACTIONS(1687), - [anon_sym___fastcall] = ACTIONS(1687), - [anon_sym___thiscall] = ACTIONS(1687), - [anon_sym___vectorcall] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1689), - [anon_sym_LBRACK] = ACTIONS(1687), - [anon_sym_static] = ACTIONS(1687), - [anon_sym_register] = ACTIONS(1687), - [anon_sym_inline] = ACTIONS(1687), - [anon_sym_thread_local] = ACTIONS(1687), - [anon_sym_const] = ACTIONS(1687), - [anon_sym_volatile] = ACTIONS(1687), - [anon_sym_restrict] = ACTIONS(1687), - [anon_sym__Atomic] = ACTIONS(1687), - [anon_sym_mutable] = ACTIONS(1687), - [anon_sym_constexpr] = ACTIONS(1687), - [anon_sym_signed] = ACTIONS(1687), - [anon_sym_unsigned] = ACTIONS(1687), - [anon_sym_long] = ACTIONS(1687), - [anon_sym_short] = ACTIONS(1687), - [sym_primitive_type] = ACTIONS(1687), - [anon_sym_enum] = ACTIONS(1687), - [anon_sym_class] = ACTIONS(1687), - [anon_sym_struct] = ACTIONS(1687), - [anon_sym_union] = ACTIONS(1687), - [anon_sym_if] = ACTIONS(1687), - [anon_sym_else] = ACTIONS(1687), - [anon_sym_switch] = ACTIONS(1687), - [anon_sym_case] = ACTIONS(1687), - [anon_sym_default] = ACTIONS(1687), - [anon_sym_while] = ACTIONS(1687), - [anon_sym_do] = ACTIONS(1687), - [anon_sym_for] = ACTIONS(1687), + [anon_sym___extension__] = ACTIONS(1707), + [anon_sym_typedef] = ACTIONS(1709), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_else] = ACTIONS(1463), + [anon_sym_switch] = ACTIONS(1675), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1685), [anon_sym_return] = ACTIONS(1687), - [anon_sym_break] = ACTIONS(1687), - [anon_sym_continue] = ACTIONS(1687), - [anon_sym_goto] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_sizeof] = ACTIONS(1687), - [sym_number_literal] = ACTIONS(1689), - [anon_sym_L_SQUOTE] = ACTIONS(1689), - [anon_sym_u_SQUOTE] = ACTIONS(1689), - [anon_sym_U_SQUOTE] = ACTIONS(1689), - [anon_sym_u8_SQUOTE] = ACTIONS(1689), - [anon_sym_SQUOTE] = ACTIONS(1689), - [anon_sym_L_DQUOTE] = ACTIONS(1689), - [anon_sym_u_DQUOTE] = ACTIONS(1689), - [anon_sym_U_DQUOTE] = ACTIONS(1689), - [anon_sym_u8_DQUOTE] = ACTIONS(1689), - [anon_sym_DQUOTE] = ACTIONS(1689), - [sym_true] = ACTIONS(1687), - [sym_false] = ACTIONS(1687), - [sym_null] = ACTIONS(1687), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1687), - [anon_sym_virtual] = ACTIONS(1687), - [anon_sym_explicit] = ACTIONS(1687), - [sym_auto] = ACTIONS(1687), - [anon_sym_typename] = ACTIONS(1687), - [anon_sym_template] = ACTIONS(1687), - [anon_sym_operator] = ACTIONS(1687), - [anon_sym_delete] = ACTIONS(1687), - [anon_sym_throw] = ACTIONS(1687), - [anon_sym_namespace] = ACTIONS(1687), - [anon_sym_using] = ACTIONS(1687), - [anon_sym_static_assert] = ACTIONS(1687), - [anon_sym_co_return] = ACTIONS(1687), - [anon_sym_co_yield] = ACTIONS(1687), - [anon_sym_try] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1687), - [anon_sym_new] = ACTIONS(1687), - [sym_this] = ACTIONS(1687), - [sym_nullptr] = ACTIONS(1687), - [sym_alone_macro] = ACTIONS(1689), - [aux_sym_alone_macro_call_token1] = ACTIONS(1687), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_FORWARD] = ACTIONS(1687), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1687), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_PS_GET] = ACTIONS(1687), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1687), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1687), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1687), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1687), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1687), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1687), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1687), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1687), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1687), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1687), - [anon_sym_MOZ_COLD] = ACTIONS(1687), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1687), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1687), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1687), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1687), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1687), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1687), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1687), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1687), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1687), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1687), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1687), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1687), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1687), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1687), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1687), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1687), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1687), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1687), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1687), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1687), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_NONNULL] = ACTIONS(1687), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1687), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1687), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1687), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1687), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1687), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_NORETURN] = ACTIONS(1687), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1687), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1687), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1687), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1687), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1687), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1687), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1687), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1687), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1687), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1687), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1687), - [anon_sym_MOZ_RAII] = ACTIONS(1687), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1687), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1687), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1687), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1687), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1687), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1687), - [sym_raw_string_literal] = ACTIONS(1689), - }, - [188] = { - [sym_identifier] = ACTIONS(1691), - [aux_sym_preproc_include_token1] = ACTIONS(1691), - [aux_sym_preproc_def_token1] = ACTIONS(1691), - [aux_sym_preproc_if_token1] = ACTIONS(1691), - [aux_sym_preproc_if_token2] = ACTIONS(1691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1691), - [aux_sym_preproc_else_token1] = ACTIONS(1691), - [aux_sym_preproc_elif_token1] = ACTIONS(1691), - [sym_preproc_directive] = ACTIONS(1691), - [anon_sym_LPAREN2] = ACTIONS(1693), - [anon_sym_BANG] = ACTIONS(1693), - [anon_sym_TILDE] = ACTIONS(1693), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_PLUS] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(1693), - [anon_sym_AMP_AMP] = ACTIONS(1693), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_typedef] = ACTIONS(1691), - [anon_sym_extern] = ACTIONS(1691), - [anon_sym___attribute__] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1693), - [anon_sym___declspec] = ACTIONS(1691), - [anon_sym___based] = ACTIONS(1691), - [anon_sym___cdecl] = ACTIONS(1691), - [anon_sym___clrcall] = ACTIONS(1691), - [anon_sym___stdcall] = ACTIONS(1691), - [anon_sym___fastcall] = ACTIONS(1691), - [anon_sym___thiscall] = ACTIONS(1691), - [anon_sym___vectorcall] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_LBRACK] = ACTIONS(1691), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_register] = ACTIONS(1691), - [anon_sym_inline] = ACTIONS(1691), - [anon_sym_thread_local] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(1691), - [anon_sym_volatile] = ACTIONS(1691), - [anon_sym_restrict] = ACTIONS(1691), - [anon_sym__Atomic] = ACTIONS(1691), - [anon_sym_mutable] = ACTIONS(1691), - [anon_sym_constexpr] = ACTIONS(1691), - [anon_sym_signed] = ACTIONS(1691), - [anon_sym_unsigned] = ACTIONS(1691), - [anon_sym_long] = ACTIONS(1691), - [anon_sym_short] = ACTIONS(1691), - [sym_primitive_type] = ACTIONS(1691), - [anon_sym_enum] = ACTIONS(1691), - [anon_sym_class] = ACTIONS(1691), - [anon_sym_struct] = ACTIONS(1691), - [anon_sym_union] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1691), - [anon_sym_else] = ACTIONS(1691), - [anon_sym_switch] = ACTIONS(1691), - [anon_sym_case] = ACTIONS(1691), - [anon_sym_default] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1691), - [anon_sym_do] = ACTIONS(1691), - [anon_sym_for] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1689), [anon_sym_continue] = ACTIONS(1691), - [anon_sym_goto] = ACTIONS(1691), - [anon_sym_DASH_DASH] = ACTIONS(1693), - [anon_sym_PLUS_PLUS] = ACTIONS(1693), - [anon_sym_sizeof] = ACTIONS(1691), - [sym_number_literal] = ACTIONS(1693), - [anon_sym_L_SQUOTE] = ACTIONS(1693), - [anon_sym_u_SQUOTE] = ACTIONS(1693), - [anon_sym_U_SQUOTE] = ACTIONS(1693), - [anon_sym_u8_SQUOTE] = ACTIONS(1693), - [anon_sym_SQUOTE] = ACTIONS(1693), - [anon_sym_L_DQUOTE] = ACTIONS(1693), - [anon_sym_u_DQUOTE] = ACTIONS(1693), - [anon_sym_U_DQUOTE] = ACTIONS(1693), - [anon_sym_u8_DQUOTE] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1693), - [sym_true] = ACTIONS(1691), - [sym_false] = ACTIONS(1691), - [sym_null] = ACTIONS(1691), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1691), - [anon_sym_virtual] = ACTIONS(1691), - [anon_sym_explicit] = ACTIONS(1691), - [sym_auto] = ACTIONS(1691), - [anon_sym_typename] = ACTIONS(1691), - [anon_sym_template] = ACTIONS(1691), - [anon_sym_operator] = ACTIONS(1691), - [anon_sym_delete] = ACTIONS(1691), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1691), - [anon_sym_using] = ACTIONS(1691), - [anon_sym_static_assert] = ACTIONS(1691), - [anon_sym_co_return] = ACTIONS(1691), - [anon_sym_co_yield] = ACTIONS(1691), - [anon_sym_try] = ACTIONS(1691), - [anon_sym_co_await] = ACTIONS(1691), - [anon_sym_new] = ACTIONS(1691), - [sym_this] = ACTIONS(1691), - [sym_nullptr] = ACTIONS(1691), - [sym_alone_macro] = ACTIONS(1693), - [aux_sym_alone_macro_call_token1] = ACTIONS(1691), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_FORWARD] = ACTIONS(1691), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1691), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_PS_GET] = ACTIONS(1691), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1691), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1691), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1691), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1691), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1691), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1691), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1691), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1691), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1691), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1691), - [anon_sym_MOZ_COLD] = ACTIONS(1691), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1691), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1691), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1691), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1691), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1691), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1691), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1691), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1691), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1691), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1691), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1691), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1691), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1691), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1691), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1691), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1691), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1691), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1691), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1691), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1691), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_NONNULL] = ACTIONS(1691), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1691), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1691), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1691), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1691), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1691), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_NORETURN] = ACTIONS(1691), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1691), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1691), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1691), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1691), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1691), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1691), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1691), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1691), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1691), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1691), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1691), - [anon_sym_MOZ_RAII] = ACTIONS(1691), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1691), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1691), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1691), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1691), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1691), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1691), - [sym_raw_string_literal] = ACTIONS(1693), - }, - [189] = { - [sym_identifier] = ACTIONS(1695), - [aux_sym_preproc_include_token1] = ACTIONS(1695), - [aux_sym_preproc_def_token1] = ACTIONS(1695), - [aux_sym_preproc_if_token1] = ACTIONS(1695), - [aux_sym_preproc_if_token2] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1695), - [aux_sym_preproc_else_token1] = ACTIONS(1695), - [aux_sym_preproc_elif_token1] = ACTIONS(1695), - [sym_preproc_directive] = ACTIONS(1695), - [anon_sym_LPAREN2] = ACTIONS(1697), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1697), - [anon_sym_AMP_AMP] = ACTIONS(1697), - [anon_sym_AMP] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1697), - [anon_sym_typedef] = ACTIONS(1695), - [anon_sym_extern] = ACTIONS(1695), - [anon_sym___attribute__] = ACTIONS(1695), - [anon_sym_COLON_COLON] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1697), - [anon_sym___declspec] = ACTIONS(1695), - [anon_sym___based] = ACTIONS(1695), - [anon_sym___cdecl] = ACTIONS(1695), - [anon_sym___clrcall] = ACTIONS(1695), - [anon_sym___stdcall] = ACTIONS(1695), - [anon_sym___fastcall] = ACTIONS(1695), - [anon_sym___thiscall] = ACTIONS(1695), - [anon_sym___vectorcall] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_static] = ACTIONS(1695), - [anon_sym_register] = ACTIONS(1695), - [anon_sym_inline] = ACTIONS(1695), - [anon_sym_thread_local] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1695), - [anon_sym_volatile] = ACTIONS(1695), - [anon_sym_restrict] = ACTIONS(1695), - [anon_sym__Atomic] = ACTIONS(1695), - [anon_sym_mutable] = ACTIONS(1695), - [anon_sym_constexpr] = ACTIONS(1695), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1695), - [anon_sym_enum] = ACTIONS(1695), - [anon_sym_class] = ACTIONS(1695), - [anon_sym_struct] = ACTIONS(1695), - [anon_sym_union] = ACTIONS(1695), - [anon_sym_if] = ACTIONS(1695), - [anon_sym_else] = ACTIONS(1695), - [anon_sym_switch] = ACTIONS(1695), - [anon_sym_case] = ACTIONS(1695), - [anon_sym_default] = ACTIONS(1695), - [anon_sym_while] = ACTIONS(1695), - [anon_sym_do] = ACTIONS(1695), - [anon_sym_for] = ACTIONS(1695), - [anon_sym_return] = ACTIONS(1695), - [anon_sym_break] = ACTIONS(1695), - [anon_sym_continue] = ACTIONS(1695), - [anon_sym_goto] = ACTIONS(1695), - [anon_sym_DASH_DASH] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1697), - [anon_sym_sizeof] = ACTIONS(1695), - [sym_number_literal] = ACTIONS(1697), - [anon_sym_L_SQUOTE] = ACTIONS(1697), - [anon_sym_u_SQUOTE] = ACTIONS(1697), - [anon_sym_U_SQUOTE] = ACTIONS(1697), - [anon_sym_u8_SQUOTE] = ACTIONS(1697), - [anon_sym_SQUOTE] = ACTIONS(1697), - [anon_sym_L_DQUOTE] = ACTIONS(1697), - [anon_sym_u_DQUOTE] = ACTIONS(1697), - [anon_sym_U_DQUOTE] = ACTIONS(1697), - [anon_sym_u8_DQUOTE] = ACTIONS(1697), - [anon_sym_DQUOTE] = ACTIONS(1697), - [sym_true] = ACTIONS(1695), - [sym_false] = ACTIONS(1695), - [sym_null] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1695), - [anon_sym_virtual] = ACTIONS(1695), - [anon_sym_explicit] = ACTIONS(1695), - [sym_auto] = ACTIONS(1695), - [anon_sym_typename] = ACTIONS(1695), - [anon_sym_template] = ACTIONS(1695), - [anon_sym_operator] = ACTIONS(1695), - [anon_sym_delete] = ACTIONS(1695), - [anon_sym_throw] = ACTIONS(1695), - [anon_sym_namespace] = ACTIONS(1695), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_static_assert] = ACTIONS(1695), - [anon_sym_co_return] = ACTIONS(1695), - [anon_sym_co_yield] = ACTIONS(1695), - [anon_sym_try] = ACTIONS(1695), - [anon_sym_co_await] = ACTIONS(1695), - [anon_sym_new] = ACTIONS(1695), - [sym_this] = ACTIONS(1695), - [sym_nullptr] = ACTIONS(1695), - [sym_alone_macro] = ACTIONS(1697), - [aux_sym_alone_macro_call_token1] = ACTIONS(1695), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_FORWARD] = ACTIONS(1695), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1695), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_PS_GET] = ACTIONS(1695), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1695), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1695), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1695), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1695), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1695), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1695), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1695), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1695), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1695), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1695), - [anon_sym_MOZ_COLD] = ACTIONS(1695), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1695), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1695), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1695), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1695), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1695), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1695), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1695), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1695), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1695), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1695), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1695), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1695), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1695), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1695), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1695), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1695), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1695), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1695), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1695), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1695), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_NONNULL] = ACTIONS(1695), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1695), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1695), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1695), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1695), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1695), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_NORETURN] = ACTIONS(1695), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1695), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1695), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1695), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1695), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1695), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1695), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1695), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1695), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1695), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1695), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1695), - [anon_sym_MOZ_RAII] = ACTIONS(1695), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1695), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1695), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1695), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1695), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1695), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1695), - [sym_raw_string_literal] = ACTIONS(1697), - }, - [190] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [191] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [192] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [193] = { - [sym_identifier] = ACTIONS(1514), - [aux_sym_preproc_include_token1] = ACTIONS(1514), - [aux_sym_preproc_def_token1] = ACTIONS(1514), - [aux_sym_preproc_if_token1] = ACTIONS(1514), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1514), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(1514), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym___attribute__] = ACTIONS(1514), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1516), - [anon_sym___declspec] = ACTIONS(1514), - [anon_sym___based] = ACTIONS(1514), - [anon_sym___cdecl] = ACTIONS(1514), - [anon_sym___clrcall] = ACTIONS(1514), - [anon_sym___stdcall] = ACTIONS(1514), - [anon_sym___fastcall] = ACTIONS(1514), - [anon_sym___thiscall] = ACTIONS(1514), - [anon_sym___vectorcall] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_register] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym_thread_local] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_volatile] = ACTIONS(1514), - [anon_sym_restrict] = ACTIONS(1514), - [anon_sym__Atomic] = ACTIONS(1514), - [anon_sym_mutable] = ACTIONS(1514), - [anon_sym_constexpr] = ACTIONS(1514), - [anon_sym_signed] = ACTIONS(1514), - [anon_sym_unsigned] = ACTIONS(1514), - [anon_sym_long] = ACTIONS(1514), - [anon_sym_short] = ACTIONS(1514), - [sym_primitive_type] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_class] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_else] = ACTIONS(1514), - [anon_sym_switch] = ACTIONS(1514), - [anon_sym_case] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_do] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_goto] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1514), - [sym_number_literal] = ACTIONS(1516), - [anon_sym_L_SQUOTE] = ACTIONS(1516), - [anon_sym_u_SQUOTE] = ACTIONS(1516), - [anon_sym_U_SQUOTE] = ACTIONS(1516), - [anon_sym_u8_SQUOTE] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1516), - [anon_sym_L_DQUOTE] = ACTIONS(1516), - [anon_sym_u_DQUOTE] = ACTIONS(1516), - [anon_sym_U_DQUOTE] = ACTIONS(1516), - [anon_sym_u8_DQUOTE] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [sym_null] = ACTIONS(1514), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1514), - [anon_sym_virtual] = ACTIONS(1514), - [anon_sym_explicit] = ACTIONS(1514), - [sym_auto] = ACTIONS(1514), - [anon_sym_typename] = ACTIONS(1514), - [anon_sym_template] = ACTIONS(1514), - [anon_sym_operator] = ACTIONS(1514), - [anon_sym_delete] = ACTIONS(1514), - [anon_sym_throw] = ACTIONS(1514), - [anon_sym_namespace] = ACTIONS(1514), - [anon_sym_using] = ACTIONS(1514), - [anon_sym_static_assert] = ACTIONS(1514), - [anon_sym_co_return] = ACTIONS(1514), - [anon_sym_co_yield] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [anon_sym_catch] = ACTIONS(1514), - [anon_sym_co_await] = ACTIONS(1514), - [anon_sym_new] = ACTIONS(1514), - [sym_this] = ACTIONS(1514), - [sym_nullptr] = ACTIONS(1514), - [sym_alone_macro] = ACTIONS(1516), - [aux_sym_alone_macro_call_token1] = ACTIONS(1514), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_FORWARD] = ACTIONS(1514), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1514), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_PS_GET] = ACTIONS(1514), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1514), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1514), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1514), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1514), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1514), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1514), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1514), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1514), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1514), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1514), - [anon_sym_MOZ_COLD] = ACTIONS(1514), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1514), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1514), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1514), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1514), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1514), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1514), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1514), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1514), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1514), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1514), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1514), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1514), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1514), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1514), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1514), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1514), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1514), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1514), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1514), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1514), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_NONNULL] = ACTIONS(1514), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1514), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1514), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1514), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1514), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1514), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_NORETURN] = ACTIONS(1514), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1514), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1514), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1514), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1514), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1514), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1514), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1514), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1514), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1514), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1514), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1514), - [anon_sym_MOZ_RAII] = ACTIONS(1514), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1514), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1514), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1514), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1514), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1514), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1514), - [sym_raw_string_literal] = ACTIONS(1516), - }, - [194] = { - [sym_identifier] = ACTIONS(1699), - [aux_sym_preproc_include_token1] = ACTIONS(1699), - [aux_sym_preproc_def_token1] = ACTIONS(1699), - [aux_sym_preproc_if_token1] = ACTIONS(1699), - [aux_sym_preproc_if_token2] = ACTIONS(1699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1699), - [aux_sym_preproc_else_token1] = ACTIONS(1699), - [aux_sym_preproc_elif_token1] = ACTIONS(1699), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_typedef] = ACTIONS(1699), - [anon_sym_extern] = ACTIONS(1699), - [anon_sym___attribute__] = ACTIONS(1699), - [anon_sym_COLON_COLON] = ACTIONS(1701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1701), - [anon_sym___declspec] = ACTIONS(1699), - [anon_sym___based] = ACTIONS(1699), - [anon_sym___cdecl] = ACTIONS(1699), - [anon_sym___clrcall] = ACTIONS(1699), - [anon_sym___stdcall] = ACTIONS(1699), - [anon_sym___fastcall] = ACTIONS(1699), - [anon_sym___thiscall] = ACTIONS(1699), - [anon_sym___vectorcall] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_static] = ACTIONS(1699), - [anon_sym_register] = ACTIONS(1699), - [anon_sym_inline] = ACTIONS(1699), - [anon_sym_thread_local] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_volatile] = ACTIONS(1699), - [anon_sym_restrict] = ACTIONS(1699), - [anon_sym__Atomic] = ACTIONS(1699), - [anon_sym_mutable] = ACTIONS(1699), - [anon_sym_constexpr] = ACTIONS(1699), - [anon_sym_signed] = ACTIONS(1699), - [anon_sym_unsigned] = ACTIONS(1699), - [anon_sym_long] = ACTIONS(1699), - [anon_sym_short] = ACTIONS(1699), - [sym_primitive_type] = ACTIONS(1699), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1699), - [anon_sym_struct] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_switch] = ACTIONS(1699), - [anon_sym_case] = ACTIONS(1699), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_while] = ACTIONS(1699), - [anon_sym_do] = ACTIONS(1699), - [anon_sym_for] = ACTIONS(1699), - [anon_sym_return] = ACTIONS(1699), - [anon_sym_break] = ACTIONS(1699), - [anon_sym_continue] = ACTIONS(1699), - [anon_sym_goto] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_sizeof] = ACTIONS(1699), - [sym_number_literal] = ACTIONS(1701), - [anon_sym_L_SQUOTE] = ACTIONS(1701), - [anon_sym_u_SQUOTE] = ACTIONS(1701), - [anon_sym_U_SQUOTE] = ACTIONS(1701), - [anon_sym_u8_SQUOTE] = ACTIONS(1701), - [anon_sym_SQUOTE] = ACTIONS(1701), - [anon_sym_L_DQUOTE] = ACTIONS(1701), - [anon_sym_u_DQUOTE] = ACTIONS(1701), - [anon_sym_U_DQUOTE] = ACTIONS(1701), - [anon_sym_u8_DQUOTE] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(1701), - [sym_true] = ACTIONS(1699), - [sym_false] = ACTIONS(1699), - [sym_null] = ACTIONS(1699), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1699), - [anon_sym_virtual] = ACTIONS(1699), - [anon_sym_explicit] = ACTIONS(1699), - [sym_auto] = ACTIONS(1699), - [anon_sym_typename] = ACTIONS(1699), - [anon_sym_template] = ACTIONS(1699), - [anon_sym_operator] = ACTIONS(1699), - [anon_sym_delete] = ACTIONS(1699), - [anon_sym_throw] = ACTIONS(1699), - [anon_sym_namespace] = ACTIONS(1699), - [anon_sym_using] = ACTIONS(1699), - [anon_sym_static_assert] = ACTIONS(1699), - [anon_sym_co_return] = ACTIONS(1699), - [anon_sym_co_yield] = ACTIONS(1699), + [anon_sym_goto] = ACTIONS(1693), + [anon_sym___try] = ACTIONS(1695), + [anon_sym___leave] = ACTIONS(1697), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), [anon_sym_try] = ACTIONS(1699), - [anon_sym_co_await] = ACTIONS(1699), - [anon_sym_new] = ACTIONS(1699), - [sym_this] = ACTIONS(1699), - [sym_nullptr] = ACTIONS(1699), - [sym_alone_macro] = ACTIONS(1701), - [aux_sym_alone_macro_call_token1] = ACTIONS(1699), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1699), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_FORWARD] = ACTIONS(1699), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1699), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1699), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1699), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1699), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_PS_GET] = ACTIONS(1699), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1699), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1699), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1699), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1699), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1699), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1699), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1699), - [anon_sym_MOZ_COLD] = ACTIONS(1699), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1699), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1699), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1699), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1699), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1699), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1699), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1699), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1699), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1699), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1699), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1699), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1699), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1699), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_NONNULL] = ACTIONS(1699), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1699), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1699), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1699), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1699), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1699), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1699), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1699), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1699), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1699), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1699), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1699), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1699), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1699), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1699), - [anon_sym_MOZ_RAII] = ACTIONS(1699), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1699), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1699), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1699), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1699), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1699), - [sym_raw_string_literal] = ACTIONS(1701), - }, - [195] = { - [sym_identifier] = ACTIONS(1703), - [aux_sym_preproc_include_token1] = ACTIONS(1703), - [aux_sym_preproc_def_token1] = ACTIONS(1703), - [aux_sym_preproc_if_token1] = ACTIONS(1703), - [aux_sym_preproc_if_token2] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1703), - [aux_sym_preproc_else_token1] = ACTIONS(1703), - [aux_sym_preproc_elif_token1] = ACTIONS(1703), - [sym_preproc_directive] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_typedef] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym___attribute__] = ACTIONS(1703), - [anon_sym_COLON_COLON] = ACTIONS(1705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1705), - [anon_sym___declspec] = ACTIONS(1703), - [anon_sym___based] = ACTIONS(1703), - [anon_sym___cdecl] = ACTIONS(1703), - [anon_sym___clrcall] = ACTIONS(1703), - [anon_sym___stdcall] = ACTIONS(1703), - [anon_sym___fastcall] = ACTIONS(1703), - [anon_sym___thiscall] = ACTIONS(1703), - [anon_sym___vectorcall] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_inline] = ACTIONS(1703), - [anon_sym_thread_local] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [anon_sym_volatile] = ACTIONS(1703), - [anon_sym_restrict] = ACTIONS(1703), - [anon_sym__Atomic] = ACTIONS(1703), - [anon_sym_mutable] = ACTIONS(1703), - [anon_sym_constexpr] = ACTIONS(1703), - [anon_sym_signed] = ACTIONS(1703), - [anon_sym_unsigned] = ACTIONS(1703), - [anon_sym_long] = ACTIONS(1703), - [anon_sym_short] = ACTIONS(1703), - [sym_primitive_type] = ACTIONS(1703), - [anon_sym_enum] = ACTIONS(1703), - [anon_sym_class] = ACTIONS(1703), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_switch] = ACTIONS(1703), - [anon_sym_case] = ACTIONS(1703), - [anon_sym_default] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_goto] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_PLUS_PLUS] = ACTIONS(1705), - [anon_sym_sizeof] = ACTIONS(1703), - [sym_number_literal] = ACTIONS(1705), - [anon_sym_L_SQUOTE] = ACTIONS(1705), - [anon_sym_u_SQUOTE] = ACTIONS(1705), - [anon_sym_U_SQUOTE] = ACTIONS(1705), - [anon_sym_u8_SQUOTE] = ACTIONS(1705), - [anon_sym_SQUOTE] = ACTIONS(1705), - [anon_sym_L_DQUOTE] = ACTIONS(1705), - [anon_sym_u_DQUOTE] = ACTIONS(1705), - [anon_sym_U_DQUOTE] = ACTIONS(1705), - [anon_sym_u8_DQUOTE] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym_true] = ACTIONS(1703), - [sym_false] = ACTIONS(1703), - [sym_null] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1703), - [anon_sym_virtual] = ACTIONS(1703), - [anon_sym_explicit] = ACTIONS(1703), - [sym_auto] = ACTIONS(1703), - [anon_sym_typename] = ACTIONS(1703), - [anon_sym_template] = ACTIONS(1703), - [anon_sym_operator] = ACTIONS(1703), - [anon_sym_delete] = ACTIONS(1703), - [anon_sym_throw] = ACTIONS(1703), - [anon_sym_namespace] = ACTIONS(1703), - [anon_sym_using] = ACTIONS(1703), - [anon_sym_static_assert] = ACTIONS(1703), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(1701), [anon_sym_co_return] = ACTIONS(1703), - [anon_sym_co_yield] = ACTIONS(1703), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_co_await] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [sym_this] = ACTIONS(1703), - [sym_nullptr] = ACTIONS(1703), - [sym_alone_macro] = ACTIONS(1705), - [aux_sym_alone_macro_call_token1] = ACTIONS(1703), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1703), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_FORWARD] = ACTIONS(1703), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1703), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1703), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1703), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1703), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_PS_GET] = ACTIONS(1703), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1703), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1703), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1703), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1703), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1703), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1703), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1703), - [anon_sym_MOZ_COLD] = ACTIONS(1703), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1703), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1703), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1703), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1703), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1703), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1703), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1703), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1703), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1703), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1703), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1703), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1703), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1703), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_NONNULL] = ACTIONS(1703), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1703), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1703), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1703), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1703), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1703), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1703), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1703), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1703), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1703), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1703), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1703), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1703), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1703), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1703), - [anon_sym_MOZ_RAII] = ACTIONS(1703), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1703), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1703), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1703), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1703), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1703), - [sym_raw_string_literal] = ACTIONS(1705), - }, - [196] = { - [sym_identifier] = ACTIONS(1707), - [aux_sym_preproc_include_token1] = ACTIONS(1707), - [aux_sym_preproc_def_token1] = ACTIONS(1707), - [aux_sym_preproc_if_token1] = ACTIONS(1707), - [aux_sym_preproc_if_token2] = ACTIONS(1707), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1707), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1707), - [aux_sym_preproc_else_token1] = ACTIONS(1707), - [aux_sym_preproc_elif_token1] = ACTIONS(1707), - [sym_preproc_directive] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1709), - [anon_sym_AMP_AMP] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_typedef] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym___attribute__] = ACTIONS(1707), - [anon_sym_COLON_COLON] = ACTIONS(1709), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1709), - [anon_sym___declspec] = ACTIONS(1707), - [anon_sym___based] = ACTIONS(1707), - [anon_sym___cdecl] = ACTIONS(1707), - [anon_sym___clrcall] = ACTIONS(1707), - [anon_sym___stdcall] = ACTIONS(1707), - [anon_sym___fastcall] = ACTIONS(1707), - [anon_sym___thiscall] = ACTIONS(1707), - [anon_sym___vectorcall] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_inline] = ACTIONS(1707), - [anon_sym_thread_local] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_volatile] = ACTIONS(1707), - [anon_sym_restrict] = ACTIONS(1707), - [anon_sym__Atomic] = ACTIONS(1707), - [anon_sym_mutable] = ACTIONS(1707), - [anon_sym_constexpr] = ACTIONS(1707), - [anon_sym_signed] = ACTIONS(1707), - [anon_sym_unsigned] = ACTIONS(1707), - [anon_sym_long] = ACTIONS(1707), - [anon_sym_short] = ACTIONS(1707), - [sym_primitive_type] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_class] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_switch] = ACTIONS(1707), - [anon_sym_case] = ACTIONS(1707), - [anon_sym_default] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_goto] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1709), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_sizeof] = ACTIONS(1707), - [sym_number_literal] = ACTIONS(1709), - [anon_sym_L_SQUOTE] = ACTIONS(1709), - [anon_sym_u_SQUOTE] = ACTIONS(1709), - [anon_sym_U_SQUOTE] = ACTIONS(1709), - [anon_sym_u8_SQUOTE] = ACTIONS(1709), - [anon_sym_SQUOTE] = ACTIONS(1709), - [anon_sym_L_DQUOTE] = ACTIONS(1709), - [anon_sym_u_DQUOTE] = ACTIONS(1709), - [anon_sym_U_DQUOTE] = ACTIONS(1709), - [anon_sym_u8_DQUOTE] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1709), - [sym_true] = ACTIONS(1707), - [sym_false] = ACTIONS(1707), - [sym_null] = ACTIONS(1707), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1707), - [anon_sym_virtual] = ACTIONS(1707), - [anon_sym_explicit] = ACTIONS(1707), - [sym_auto] = ACTIONS(1707), - [anon_sym_typename] = ACTIONS(1707), - [anon_sym_template] = ACTIONS(1707), - [anon_sym_operator] = ACTIONS(1707), - [anon_sym_delete] = ACTIONS(1707), - [anon_sym_throw] = ACTIONS(1707), - [anon_sym_namespace] = ACTIONS(1707), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_static_assert] = ACTIONS(1707), - [anon_sym_co_return] = ACTIONS(1707), - [anon_sym_co_yield] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1707), - [anon_sym_co_await] = ACTIONS(1707), - [anon_sym_new] = ACTIONS(1707), - [sym_this] = ACTIONS(1707), - [sym_nullptr] = ACTIONS(1707), - [sym_alone_macro] = ACTIONS(1709), - [aux_sym_alone_macro_call_token1] = ACTIONS(1707), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1707), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_FORWARD] = ACTIONS(1707), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1707), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1707), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1707), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1707), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_PS_GET] = ACTIONS(1707), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1707), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1707), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1707), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1707), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1707), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1707), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1707), - [anon_sym_MOZ_COLD] = ACTIONS(1707), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1707), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1707), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1707), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1707), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1707), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1707), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1707), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1707), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1707), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1707), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1707), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1707), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1707), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_NONNULL] = ACTIONS(1707), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1707), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1707), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1707), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1707), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1707), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1707), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1707), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1707), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1707), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1707), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1707), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1707), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1707), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1707), - [anon_sym_MOZ_RAII] = ACTIONS(1707), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1707), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1707), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1707), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1707), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1707), - [sym_raw_string_literal] = ACTIONS(1709), - }, - [197] = { + [anon_sym_co_yield] = ACTIONS(1705), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(105)] = { + [sym_declaration] = STATE(283), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5496), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(283), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(829), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), [sym_identifier] = ACTIONS(1711), - [aux_sym_preproc_include_token1] = ACTIONS(1711), - [aux_sym_preproc_def_token1] = ACTIONS(1711), - [aux_sym_preproc_if_token1] = ACTIONS(1711), - [aux_sym_preproc_if_token2] = ACTIONS(1711), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1711), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1711), - [aux_sym_preproc_else_token1] = ACTIONS(1711), - [aux_sym_preproc_elif_token1] = ACTIONS(1711), - [sym_preproc_directive] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_BANG] = ACTIONS(1713), - [anon_sym_TILDE] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_typedef] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym___attribute__] = ACTIONS(1711), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), - [anon_sym___declspec] = ACTIONS(1711), - [anon_sym___based] = ACTIONS(1711), - [anon_sym___cdecl] = ACTIONS(1711), - [anon_sym___clrcall] = ACTIONS(1711), - [anon_sym___stdcall] = ACTIONS(1711), - [anon_sym___fastcall] = ACTIONS(1711), - [anon_sym___thiscall] = ACTIONS(1711), - [anon_sym___vectorcall] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_static] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_inline] = ACTIONS(1711), - [anon_sym_thread_local] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [anon_sym_volatile] = ACTIONS(1711), - [anon_sym_restrict] = ACTIONS(1711), - [anon_sym__Atomic] = ACTIONS(1711), - [anon_sym_mutable] = ACTIONS(1711), - [anon_sym_constexpr] = ACTIONS(1711), - [anon_sym_signed] = ACTIONS(1711), - [anon_sym_unsigned] = ACTIONS(1711), - [anon_sym_long] = ACTIONS(1711), - [anon_sym_short] = ACTIONS(1711), - [sym_primitive_type] = ACTIONS(1711), - [anon_sym_enum] = ACTIONS(1711), - [anon_sym_class] = ACTIONS(1711), - [anon_sym_struct] = ACTIONS(1711), - [anon_sym_union] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_switch] = ACTIONS(1711), - [anon_sym_case] = ACTIONS(1711), - [anon_sym_default] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_goto] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_sizeof] = ACTIONS(1711), - [sym_number_literal] = ACTIONS(1713), - [anon_sym_L_SQUOTE] = ACTIONS(1713), - [anon_sym_u_SQUOTE] = ACTIONS(1713), - [anon_sym_U_SQUOTE] = ACTIONS(1713), - [anon_sym_u8_SQUOTE] = ACTIONS(1713), - [anon_sym_SQUOTE] = ACTIONS(1713), - [anon_sym_L_DQUOTE] = ACTIONS(1713), - [anon_sym_u_DQUOTE] = ACTIONS(1713), - [anon_sym_U_DQUOTE] = ACTIONS(1713), - [anon_sym_u8_DQUOTE] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym_true] = ACTIONS(1711), - [sym_false] = ACTIONS(1711), - [sym_null] = ACTIONS(1711), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1711), - [anon_sym_virtual] = ACTIONS(1711), - [anon_sym_explicit] = ACTIONS(1711), - [sym_auto] = ACTIONS(1711), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(1711), - [anon_sym_operator] = ACTIONS(1711), - [anon_sym_delete] = ACTIONS(1711), - [anon_sym_throw] = ACTIONS(1711), - [anon_sym_namespace] = ACTIONS(1711), - [anon_sym_using] = ACTIONS(1711), - [anon_sym_static_assert] = ACTIONS(1711), - [anon_sym_co_return] = ACTIONS(1711), - [anon_sym_co_yield] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_co_await] = ACTIONS(1711), - [anon_sym_new] = ACTIONS(1711), - [sym_this] = ACTIONS(1711), - [sym_nullptr] = ACTIONS(1711), - [sym_alone_macro] = ACTIONS(1713), - [aux_sym_alone_macro_call_token1] = ACTIONS(1711), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1711), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_FORWARD] = ACTIONS(1711), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1711), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1711), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1711), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1711), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_PS_GET] = ACTIONS(1711), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1711), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1711), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1711), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1711), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1711), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1711), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1711), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1711), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1711), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1711), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1711), - [anon_sym_MOZ_COLD] = ACTIONS(1711), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1711), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1711), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1711), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1711), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1711), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1711), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1711), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1711), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1711), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1711), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1711), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1711), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1711), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1711), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1711), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1711), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1711), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1711), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1711), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1711), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_NONNULL] = ACTIONS(1711), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1711), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1711), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1711), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1711), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1711), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_NORETURN] = ACTIONS(1711), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1711), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1711), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1711), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1711), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1711), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1711), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1711), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1711), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1711), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1711), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1711), - [anon_sym_MOZ_RAII] = ACTIONS(1711), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1711), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1711), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1711), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1711), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1711), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1711), - [sym_raw_string_literal] = ACTIONS(1713), - }, - [198] = { - [sym_identifier] = ACTIONS(1715), - [aux_sym_preproc_include_token1] = ACTIONS(1715), - [aux_sym_preproc_def_token1] = ACTIONS(1715), - [aux_sym_preproc_if_token1] = ACTIONS(1715), - [aux_sym_preproc_if_token2] = ACTIONS(1715), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1715), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1715), - [aux_sym_preproc_else_token1] = ACTIONS(1715), - [aux_sym_preproc_elif_token1] = ACTIONS(1715), - [sym_preproc_directive] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_typedef] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym___attribute__] = ACTIONS(1715), - [anon_sym_COLON_COLON] = ACTIONS(1717), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1717), - [anon_sym___declspec] = ACTIONS(1715), - [anon_sym___based] = ACTIONS(1715), - [anon_sym___cdecl] = ACTIONS(1715), - [anon_sym___clrcall] = ACTIONS(1715), - [anon_sym___stdcall] = ACTIONS(1715), - [anon_sym___fastcall] = ACTIONS(1715), - [anon_sym___thiscall] = ACTIONS(1715), - [anon_sym___vectorcall] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_inline] = ACTIONS(1715), - [anon_sym_thread_local] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [anon_sym_volatile] = ACTIONS(1715), - [anon_sym_restrict] = ACTIONS(1715), - [anon_sym__Atomic] = ACTIONS(1715), - [anon_sym_mutable] = ACTIONS(1715), - [anon_sym_constexpr] = ACTIONS(1715), - [anon_sym_signed] = ACTIONS(1715), - [anon_sym_unsigned] = ACTIONS(1715), - [anon_sym_long] = ACTIONS(1715), - [anon_sym_short] = ACTIONS(1715), - [sym_primitive_type] = ACTIONS(1715), - [anon_sym_enum] = ACTIONS(1715), - [anon_sym_class] = ACTIONS(1715), - [anon_sym_struct] = ACTIONS(1715), - [anon_sym_union] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_switch] = ACTIONS(1715), - [anon_sym_case] = ACTIONS(1715), - [anon_sym_default] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(1665), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [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(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1679), [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_goto] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_sizeof] = ACTIONS(1715), - [sym_number_literal] = ACTIONS(1717), - [anon_sym_L_SQUOTE] = ACTIONS(1717), - [anon_sym_u_SQUOTE] = ACTIONS(1717), - [anon_sym_U_SQUOTE] = ACTIONS(1717), - [anon_sym_u8_SQUOTE] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_L_DQUOTE] = ACTIONS(1717), - [anon_sym_u_DQUOTE] = ACTIONS(1717), - [anon_sym_U_DQUOTE] = ACTIONS(1717), - [anon_sym_u8_DQUOTE] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym_true] = ACTIONS(1715), - [sym_false] = ACTIONS(1715), - [sym_null] = ACTIONS(1715), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1715), - [anon_sym_virtual] = ACTIONS(1715), - [anon_sym_explicit] = ACTIONS(1715), - [sym_auto] = ACTIONS(1715), - [anon_sym_typename] = ACTIONS(1715), - [anon_sym_template] = ACTIONS(1715), - [anon_sym_operator] = ACTIONS(1715), - [anon_sym_delete] = ACTIONS(1715), - [anon_sym_throw] = ACTIONS(1715), - [anon_sym_namespace] = ACTIONS(1715), - [anon_sym_using] = ACTIONS(1715), - [anon_sym_static_assert] = ACTIONS(1715), - [anon_sym_co_return] = ACTIONS(1715), - [anon_sym_co_yield] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_co_await] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [sym_this] = ACTIONS(1715), - [sym_nullptr] = ACTIONS(1715), - [sym_alone_macro] = ACTIONS(1717), - [aux_sym_alone_macro_call_token1] = ACTIONS(1715), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1715), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_FORWARD] = ACTIONS(1715), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1715), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1715), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1715), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1715), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_PS_GET] = ACTIONS(1715), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1715), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1715), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1715), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1715), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1715), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1715), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1715), - [anon_sym_MOZ_COLD] = ACTIONS(1715), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1715), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1715), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1715), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1715), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1715), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1715), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1715), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1715), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1715), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1715), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1715), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1715), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1715), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_NONNULL] = ACTIONS(1715), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1715), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1715), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1715), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1715), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1715), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1715), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1715), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1715), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1715), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1715), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1715), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1715), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1715), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1715), - [anon_sym_MOZ_RAII] = ACTIONS(1715), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1715), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1715), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1715), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1715), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1715), - [sym_raw_string_literal] = ACTIONS(1717), - }, - [199] = { - [sym_identifier] = ACTIONS(1719), - [aux_sym_preproc_include_token1] = ACTIONS(1719), - [aux_sym_preproc_def_token1] = ACTIONS(1719), - [aux_sym_preproc_if_token1] = ACTIONS(1719), - [aux_sym_preproc_if_token2] = ACTIONS(1719), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1719), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1719), - [aux_sym_preproc_else_token1] = ACTIONS(1719), - [aux_sym_preproc_elif_token1] = ACTIONS(1719), - [sym_preproc_directive] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(1721), - [anon_sym_BANG] = ACTIONS(1721), - [anon_sym_TILDE] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_typedef] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym___attribute__] = ACTIONS(1719), - [anon_sym_COLON_COLON] = ACTIONS(1721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1721), - [anon_sym___declspec] = ACTIONS(1719), - [anon_sym___based] = ACTIONS(1719), - [anon_sym___cdecl] = ACTIONS(1719), - [anon_sym___clrcall] = ACTIONS(1719), - [anon_sym___stdcall] = ACTIONS(1719), - [anon_sym___fastcall] = ACTIONS(1719), - [anon_sym___thiscall] = ACTIONS(1719), - [anon_sym___vectorcall] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_register] = ACTIONS(1719), - [anon_sym_inline] = ACTIONS(1719), - [anon_sym_thread_local] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_volatile] = ACTIONS(1719), - [anon_sym_restrict] = ACTIONS(1719), - [anon_sym__Atomic] = ACTIONS(1719), - [anon_sym_mutable] = ACTIONS(1719), - [anon_sym_constexpr] = ACTIONS(1719), - [anon_sym_signed] = ACTIONS(1719), - [anon_sym_unsigned] = ACTIONS(1719), - [anon_sym_long] = ACTIONS(1719), - [anon_sym_short] = ACTIONS(1719), - [sym_primitive_type] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), - [anon_sym_class] = ACTIONS(1719), - [anon_sym_struct] = ACTIONS(1719), - [anon_sym_union] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_switch] = ACTIONS(1719), - [anon_sym_case] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_goto] = ACTIONS(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1721), - [anon_sym_sizeof] = ACTIONS(1719), - [sym_number_literal] = ACTIONS(1721), - [anon_sym_L_SQUOTE] = ACTIONS(1721), - [anon_sym_u_SQUOTE] = ACTIONS(1721), - [anon_sym_U_SQUOTE] = ACTIONS(1721), - [anon_sym_u8_SQUOTE] = ACTIONS(1721), - [anon_sym_SQUOTE] = ACTIONS(1721), - [anon_sym_L_DQUOTE] = ACTIONS(1721), - [anon_sym_u_DQUOTE] = ACTIONS(1721), - [anon_sym_U_DQUOTE] = ACTIONS(1721), - [anon_sym_u8_DQUOTE] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1719), - [anon_sym_virtual] = ACTIONS(1719), - [anon_sym_explicit] = ACTIONS(1719), - [sym_auto] = ACTIONS(1719), - [anon_sym_typename] = ACTIONS(1719), - [anon_sym_template] = ACTIONS(1719), - [anon_sym_operator] = ACTIONS(1719), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_throw] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1719), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_static_assert] = ACTIONS(1719), - [anon_sym_co_return] = ACTIONS(1719), - [anon_sym_co_yield] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_co_await] = ACTIONS(1719), - [anon_sym_new] = ACTIONS(1719), - [sym_this] = ACTIONS(1719), - [sym_nullptr] = ACTIONS(1719), - [sym_alone_macro] = ACTIONS(1721), - [aux_sym_alone_macro_call_token1] = ACTIONS(1719), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1719), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_FORWARD] = ACTIONS(1719), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1719), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1719), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1719), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1719), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_PS_GET] = ACTIONS(1719), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1719), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1719), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1719), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1719), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1719), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1719), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1719), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1719), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1719), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1719), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1719), - [anon_sym_MOZ_COLD] = ACTIONS(1719), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1719), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1719), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1719), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1719), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1719), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1719), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1719), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1719), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1719), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1719), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1719), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1719), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1719), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1719), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1719), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1719), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1719), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1719), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1719), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1719), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_NONNULL] = ACTIONS(1719), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1719), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1719), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1719), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1719), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1719), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_NORETURN] = ACTIONS(1719), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1719), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1719), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1719), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1719), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1719), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1719), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1719), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1719), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1719), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1719), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1719), - [anon_sym_MOZ_RAII] = ACTIONS(1719), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1719), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1719), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1719), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1719), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1719), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1719), - [sym_raw_string_literal] = ACTIONS(1721), - }, - [200] = { - [sym_identifier] = ACTIONS(1723), - [aux_sym_preproc_include_token1] = ACTIONS(1723), - [aux_sym_preproc_def_token1] = ACTIONS(1723), - [aux_sym_preproc_if_token1] = ACTIONS(1723), - [aux_sym_preproc_if_token2] = ACTIONS(1723), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1723), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1723), - [aux_sym_preproc_else_token1] = ACTIONS(1723), - [aux_sym_preproc_elif_token1] = ACTIONS(1723), - [sym_preproc_directive] = ACTIONS(1723), - [anon_sym_LPAREN2] = ACTIONS(1725), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1725), - [anon_sym_typedef] = ACTIONS(1723), - [anon_sym_extern] = ACTIONS(1723), - [anon_sym___attribute__] = ACTIONS(1723), - [anon_sym_COLON_COLON] = ACTIONS(1725), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1725), - [anon_sym___declspec] = ACTIONS(1723), - [anon_sym___based] = ACTIONS(1723), - [anon_sym___cdecl] = ACTIONS(1723), - [anon_sym___clrcall] = ACTIONS(1723), - [anon_sym___stdcall] = ACTIONS(1723), - [anon_sym___fastcall] = ACTIONS(1723), - [anon_sym___thiscall] = ACTIONS(1723), - [anon_sym___vectorcall] = ACTIONS(1723), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_static] = ACTIONS(1723), - [anon_sym_register] = ACTIONS(1723), - [anon_sym_inline] = ACTIONS(1723), - [anon_sym_thread_local] = ACTIONS(1723), - [anon_sym_const] = ACTIONS(1723), - [anon_sym_volatile] = ACTIONS(1723), - [anon_sym_restrict] = ACTIONS(1723), - [anon_sym__Atomic] = ACTIONS(1723), - [anon_sym_mutable] = ACTIONS(1723), - [anon_sym_constexpr] = ACTIONS(1723), - [anon_sym_signed] = ACTIONS(1723), - [anon_sym_unsigned] = ACTIONS(1723), - [anon_sym_long] = ACTIONS(1723), - [anon_sym_short] = ACTIONS(1723), - [sym_primitive_type] = ACTIONS(1723), - [anon_sym_enum] = ACTIONS(1723), - [anon_sym_class] = ACTIONS(1723), - [anon_sym_struct] = ACTIONS(1723), - [anon_sym_union] = ACTIONS(1723), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_switch] = ACTIONS(1723), - [anon_sym_case] = ACTIONS(1723), - [anon_sym_default] = ACTIONS(1723), - [anon_sym_while] = ACTIONS(1723), - [anon_sym_do] = ACTIONS(1723), - [anon_sym_for] = ACTIONS(1723), - [anon_sym_return] = ACTIONS(1723), - [anon_sym_break] = ACTIONS(1723), - [anon_sym_continue] = ACTIONS(1723), - [anon_sym_goto] = ACTIONS(1723), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_sizeof] = ACTIONS(1723), - [sym_number_literal] = ACTIONS(1725), - [anon_sym_L_SQUOTE] = ACTIONS(1725), - [anon_sym_u_SQUOTE] = ACTIONS(1725), - [anon_sym_U_SQUOTE] = ACTIONS(1725), - [anon_sym_u8_SQUOTE] = ACTIONS(1725), - [anon_sym_SQUOTE] = ACTIONS(1725), - [anon_sym_L_DQUOTE] = ACTIONS(1725), - [anon_sym_u_DQUOTE] = ACTIONS(1725), - [anon_sym_U_DQUOTE] = ACTIONS(1725), - [anon_sym_u8_DQUOTE] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym_true] = ACTIONS(1723), - [sym_false] = ACTIONS(1723), - [sym_null] = ACTIONS(1723), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1723), - [anon_sym_virtual] = ACTIONS(1723), - [anon_sym_explicit] = ACTIONS(1723), - [sym_auto] = ACTIONS(1723), - [anon_sym_typename] = ACTIONS(1723), - [anon_sym_template] = ACTIONS(1723), - [anon_sym_operator] = ACTIONS(1723), - [anon_sym_delete] = ACTIONS(1723), - [anon_sym_throw] = ACTIONS(1723), - [anon_sym_namespace] = ACTIONS(1723), - [anon_sym_using] = ACTIONS(1723), - [anon_sym_static_assert] = ACTIONS(1723), - [anon_sym_co_return] = ACTIONS(1723), - [anon_sym_co_yield] = ACTIONS(1723), - [anon_sym_try] = ACTIONS(1723), - [anon_sym_co_await] = ACTIONS(1723), - [anon_sym_new] = ACTIONS(1723), - [sym_this] = ACTIONS(1723), - [sym_nullptr] = ACTIONS(1723), - [sym_alone_macro] = ACTIONS(1725), - [aux_sym_alone_macro_call_token1] = ACTIONS(1723), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1723), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_FORWARD] = ACTIONS(1723), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1723), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1723), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1723), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1723), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_PS_GET] = ACTIONS(1723), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1723), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1723), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1723), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1723), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1723), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1723), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1723), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1723), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1723), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1723), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1723), - [anon_sym_MOZ_COLD] = ACTIONS(1723), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1723), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1723), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1723), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1723), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1723), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1723), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1723), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1723), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1723), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1723), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1723), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1723), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1723), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1723), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1723), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1723), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1723), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1723), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1723), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1723), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_NONNULL] = ACTIONS(1723), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1723), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1723), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1723), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1723), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1723), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_NORETURN] = ACTIONS(1723), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1723), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1723), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1723), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1723), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1723), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1723), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1723), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1723), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1723), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1723), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1723), - [anon_sym_MOZ_RAII] = ACTIONS(1723), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1723), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1723), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1723), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1723), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1723), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1723), - [sym_raw_string_literal] = ACTIONS(1725), - }, - [201] = { - [sym_identifier] = ACTIONS(1727), - [aux_sym_preproc_include_token1] = ACTIONS(1727), - [aux_sym_preproc_def_token1] = ACTIONS(1727), - [aux_sym_preproc_if_token1] = ACTIONS(1727), - [aux_sym_preproc_if_token2] = ACTIONS(1727), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1727), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1727), - [aux_sym_preproc_else_token1] = ACTIONS(1727), - [aux_sym_preproc_elif_token1] = ACTIONS(1727), - [sym_preproc_directive] = ACTIONS(1727), - [anon_sym_LPAREN2] = ACTIONS(1729), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1729), - [anon_sym_typedef] = ACTIONS(1727), - [anon_sym_extern] = ACTIONS(1727), - [anon_sym___attribute__] = ACTIONS(1727), - [anon_sym_COLON_COLON] = ACTIONS(1729), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), - [anon_sym___declspec] = ACTIONS(1727), - [anon_sym___based] = ACTIONS(1727), - [anon_sym___cdecl] = ACTIONS(1727), - [anon_sym___clrcall] = ACTIONS(1727), - [anon_sym___stdcall] = ACTIONS(1727), - [anon_sym___fastcall] = ACTIONS(1727), - [anon_sym___thiscall] = ACTIONS(1727), - [anon_sym___vectorcall] = ACTIONS(1727), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_static] = ACTIONS(1727), - [anon_sym_register] = ACTIONS(1727), - [anon_sym_inline] = ACTIONS(1727), - [anon_sym_thread_local] = ACTIONS(1727), - [anon_sym_const] = ACTIONS(1727), - [anon_sym_volatile] = ACTIONS(1727), - [anon_sym_restrict] = ACTIONS(1727), - [anon_sym__Atomic] = ACTIONS(1727), - [anon_sym_mutable] = ACTIONS(1727), - [anon_sym_constexpr] = ACTIONS(1727), - [anon_sym_signed] = ACTIONS(1727), - [anon_sym_unsigned] = ACTIONS(1727), - [anon_sym_long] = ACTIONS(1727), - [anon_sym_short] = ACTIONS(1727), - [sym_primitive_type] = ACTIONS(1727), - [anon_sym_enum] = ACTIONS(1727), - [anon_sym_class] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(1727), - [anon_sym_union] = ACTIONS(1727), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_switch] = ACTIONS(1727), - [anon_sym_case] = ACTIONS(1727), - [anon_sym_default] = ACTIONS(1727), - [anon_sym_while] = ACTIONS(1727), - [anon_sym_do] = ACTIONS(1727), - [anon_sym_for] = ACTIONS(1727), - [anon_sym_return] = ACTIONS(1727), - [anon_sym_break] = ACTIONS(1727), - [anon_sym_continue] = ACTIONS(1727), - [anon_sym_goto] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1729), - [anon_sym_sizeof] = ACTIONS(1727), - [sym_number_literal] = ACTIONS(1729), - [anon_sym_L_SQUOTE] = ACTIONS(1729), - [anon_sym_u_SQUOTE] = ACTIONS(1729), - [anon_sym_U_SQUOTE] = ACTIONS(1729), - [anon_sym_u8_SQUOTE] = ACTIONS(1729), - [anon_sym_SQUOTE] = ACTIONS(1729), - [anon_sym_L_DQUOTE] = ACTIONS(1729), - [anon_sym_u_DQUOTE] = ACTIONS(1729), - [anon_sym_U_DQUOTE] = ACTIONS(1729), - [anon_sym_u8_DQUOTE] = ACTIONS(1729), - [anon_sym_DQUOTE] = ACTIONS(1729), - [sym_true] = ACTIONS(1727), - [sym_false] = ACTIONS(1727), - [sym_null] = ACTIONS(1727), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1727), - [anon_sym_virtual] = ACTIONS(1727), - [anon_sym_explicit] = ACTIONS(1727), - [sym_auto] = ACTIONS(1727), - [anon_sym_typename] = ACTIONS(1727), - [anon_sym_template] = ACTIONS(1727), - [anon_sym_operator] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_throw] = ACTIONS(1727), - [anon_sym_namespace] = ACTIONS(1727), - [anon_sym_using] = ACTIONS(1727), - [anon_sym_static_assert] = ACTIONS(1727), - [anon_sym_co_return] = ACTIONS(1727), - [anon_sym_co_yield] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1727), - [anon_sym_co_await] = ACTIONS(1727), - [anon_sym_new] = ACTIONS(1727), - [sym_this] = ACTIONS(1727), - [sym_nullptr] = ACTIONS(1727), - [sym_alone_macro] = ACTIONS(1729), - [aux_sym_alone_macro_call_token1] = ACTIONS(1727), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1727), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_FORWARD] = ACTIONS(1727), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1727), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1727), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1727), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1727), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_PS_GET] = ACTIONS(1727), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1727), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1727), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1727), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1727), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1727), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1727), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1727), - [anon_sym_MOZ_COLD] = ACTIONS(1727), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1727), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1727), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1727), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1727), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1727), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1727), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1727), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1727), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1727), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1727), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1727), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1727), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1727), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_NONNULL] = ACTIONS(1727), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1727), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1727), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1727), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1727), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1727), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1727), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1727), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1727), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1727), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1727), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1727), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1727), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1727), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1727), - [anon_sym_MOZ_RAII] = ACTIONS(1727), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1727), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1727), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1727), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1727), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1727), - [sym_raw_string_literal] = ACTIONS(1729), - }, - [202] = { - [sym_identifier] = ACTIONS(1731), - [aux_sym_preproc_include_token1] = ACTIONS(1731), - [aux_sym_preproc_def_token1] = ACTIONS(1731), - [aux_sym_preproc_if_token1] = ACTIONS(1731), - [aux_sym_preproc_if_token2] = ACTIONS(1731), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1731), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1731), - [aux_sym_preproc_else_token1] = ACTIONS(1731), - [aux_sym_preproc_elif_token1] = ACTIONS(1731), - [sym_preproc_directive] = ACTIONS(1731), - [anon_sym_LPAREN2] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_AMP_AMP] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_typedef] = ACTIONS(1731), - [anon_sym_extern] = ACTIONS(1731), - [anon_sym___attribute__] = ACTIONS(1731), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1733), - [anon_sym___declspec] = ACTIONS(1731), - [anon_sym___based] = ACTIONS(1731), - [anon_sym___cdecl] = ACTIONS(1731), - [anon_sym___clrcall] = ACTIONS(1731), - [anon_sym___stdcall] = ACTIONS(1731), - [anon_sym___fastcall] = ACTIONS(1731), - [anon_sym___thiscall] = ACTIONS(1731), - [anon_sym___vectorcall] = ACTIONS(1731), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1719), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(106)] = { + [sym_declaration] = STATE(109), + [sym_type_definition] = STATE(109), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5509), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(109), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(109), + [sym_labeled_statement] = STATE(109), + [sym_expression_statement] = STATE(109), + [sym_if_statement] = STATE(109), + [sym_switch_statement] = STATE(109), + [sym_while_statement] = STATE(109), + [sym_do_statement] = STATE(109), + [sym_for_statement] = STATE(109), + [sym_return_statement] = STATE(109), + [sym_break_statement] = STATE(109), + [sym_continue_statement] = STATE(109), + [sym_goto_statement] = STATE(109), + [sym_seh_try_statement] = STATE(109), + [sym_seh_leave_statement] = STATE(109), + [sym_expression] = STATE(4912), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8611), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(109), + [sym_co_return_statement] = STATE(109), + [sym_co_yield_statement] = STATE(109), + [sym_throw_statement] = STATE(109), + [sym_try_statement] = STATE(109), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(846), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(109), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym___extension__] = ACTIONS(1707), + [anon_sym_typedef] = ACTIONS(1709), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_else] = ACTIONS(1269), + [anon_sym_switch] = ACTIONS(1675), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_goto] = ACTIONS(1693), + [anon_sym___try] = ACTIONS(1695), + [anon_sym___leave] = ACTIONS(1697), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1699), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(1701), + [anon_sym_co_return] = ACTIONS(1703), + [anon_sym_co_yield] = ACTIONS(1705), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(107)] = { + [sym_declaration] = STATE(106), + [sym_type_definition] = STATE(106), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5509), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(106), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(106), + [sym_labeled_statement] = STATE(106), + [sym_expression_statement] = STATE(106), + [sym_if_statement] = STATE(106), + [sym_switch_statement] = STATE(106), + [sym_while_statement] = STATE(106), + [sym_do_statement] = STATE(106), + [sym_for_statement] = STATE(106), + [sym_return_statement] = STATE(106), + [sym_break_statement] = STATE(106), + [sym_continue_statement] = STATE(106), + [sym_goto_statement] = STATE(106), + [sym_seh_try_statement] = STATE(106), + [sym_seh_leave_statement] = STATE(106), + [sym_expression] = STATE(4912), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8611), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(106), + [sym_co_return_statement] = STATE(106), + [sym_co_yield_statement] = STATE(106), + [sym_throw_statement] = STATE(106), + [sym_try_statement] = STATE(106), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(846), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(106), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym___extension__] = ACTIONS(1707), + [anon_sym_typedef] = ACTIONS(1709), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_else] = ACTIONS(1245), + [anon_sym_switch] = ACTIONS(1675), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_goto] = ACTIONS(1693), + [anon_sym___try] = ACTIONS(1695), + [anon_sym___leave] = ACTIONS(1697), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1699), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(1701), + [anon_sym_co_return] = ACTIONS(1703), + [anon_sym_co_yield] = ACTIONS(1705), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(108)] = { + [sym_declaration] = STATE(109), + [sym_type_definition] = STATE(109), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5509), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(109), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(109), + [sym_labeled_statement] = STATE(109), + [sym_expression_statement] = STATE(109), + [sym_if_statement] = STATE(109), + [sym_switch_statement] = STATE(109), + [sym_while_statement] = STATE(109), + [sym_do_statement] = STATE(109), + [sym_for_statement] = STATE(109), + [sym_return_statement] = STATE(109), + [sym_break_statement] = STATE(109), + [sym_continue_statement] = STATE(109), + [sym_goto_statement] = STATE(109), + [sym_seh_try_statement] = STATE(109), + [sym_seh_leave_statement] = STATE(109), + [sym_expression] = STATE(4912), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8611), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(109), + [sym_co_return_statement] = STATE(109), + [sym_co_yield_statement] = STATE(109), + [sym_throw_statement] = STATE(109), + [sym_try_statement] = STATE(109), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(846), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(109), + [sym_identifier] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym___extension__] = ACTIONS(1707), + [anon_sym_typedef] = ACTIONS(1709), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_else] = ACTIONS(1265), + [anon_sym_switch] = ACTIONS(1675), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_goto] = ACTIONS(1693), + [anon_sym___try] = ACTIONS(1695), + [anon_sym___leave] = ACTIONS(1697), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1699), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(1701), + [anon_sym_co_return] = ACTIONS(1703), + [anon_sym_co_yield] = ACTIONS(1705), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(109)] = { + [sym_declaration] = STATE(109), + [sym_type_definition] = STATE(109), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5509), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(109), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(109), + [sym_labeled_statement] = STATE(109), + [sym_expression_statement] = STATE(109), + [sym_if_statement] = STATE(109), + [sym_switch_statement] = STATE(109), + [sym_while_statement] = STATE(109), + [sym_do_statement] = STATE(109), + [sym_for_statement] = STATE(109), + [sym_return_statement] = STATE(109), + [sym_break_statement] = STATE(109), + [sym_continue_statement] = STATE(109), + [sym_goto_statement] = STATE(109), + [sym_seh_try_statement] = STATE(109), + [sym_seh_leave_statement] = STATE(109), + [sym_expression] = STATE(4912), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8611), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(109), + [sym_co_return_statement] = STATE(109), + [sym_co_yield_statement] = STATE(109), + [sym_throw_statement] = STATE(109), + [sym_try_statement] = STATE(109), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(846), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_case_statement_repeat1] = STATE(109), + [sym_identifier] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_SEMI] = ACTIONS(1724), + [anon_sym___extension__] = ACTIONS(1727), + [anon_sym_typedef] = ACTIONS(1730), + [anon_sym_virtual] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym___attribute] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(1313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1319), [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_static] = ACTIONS(1731), - [anon_sym_register] = ACTIONS(1731), - [anon_sym_inline] = ACTIONS(1731), - [anon_sym_thread_local] = ACTIONS(1731), - [anon_sym_const] = ACTIONS(1731), - [anon_sym_volatile] = ACTIONS(1731), - [anon_sym_restrict] = ACTIONS(1731), - [anon_sym__Atomic] = ACTIONS(1731), - [anon_sym_mutable] = ACTIONS(1731), - [anon_sym_constexpr] = ACTIONS(1731), - [anon_sym_signed] = ACTIONS(1731), - [anon_sym_unsigned] = ACTIONS(1731), - [anon_sym_long] = ACTIONS(1731), - [anon_sym_short] = ACTIONS(1731), - [sym_primitive_type] = ACTIONS(1731), - [anon_sym_enum] = ACTIONS(1731), - [anon_sym_class] = ACTIONS(1731), - [anon_sym_struct] = ACTIONS(1731), - [anon_sym_union] = ACTIONS(1731), - [anon_sym_if] = ACTIONS(1731), - [anon_sym_switch] = ACTIONS(1731), - [anon_sym_case] = ACTIONS(1731), - [anon_sym_default] = ACTIONS(1731), - [anon_sym_while] = ACTIONS(1731), - [anon_sym_do] = ACTIONS(1731), - [anon_sym_for] = ACTIONS(1731), - [anon_sym_return] = ACTIONS(1731), - [anon_sym_break] = ACTIONS(1731), - [anon_sym_continue] = ACTIONS(1731), - [anon_sym_goto] = ACTIONS(1731), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_sizeof] = ACTIONS(1731), - [sym_number_literal] = ACTIONS(1733), - [anon_sym_L_SQUOTE] = ACTIONS(1733), - [anon_sym_u_SQUOTE] = ACTIONS(1733), - [anon_sym_U_SQUOTE] = ACTIONS(1733), - [anon_sym_u8_SQUOTE] = ACTIONS(1733), - [anon_sym_SQUOTE] = ACTIONS(1733), - [anon_sym_L_DQUOTE] = ACTIONS(1733), - [anon_sym_u_DQUOTE] = ACTIONS(1733), - [anon_sym_U_DQUOTE] = ACTIONS(1733), - [anon_sym_u8_DQUOTE] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1733), - [sym_true] = ACTIONS(1731), - [sym_false] = ACTIONS(1731), - [sym_null] = ACTIONS(1731), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1731), - [anon_sym_virtual] = ACTIONS(1731), - [anon_sym_explicit] = ACTIONS(1731), - [sym_auto] = ACTIONS(1731), - [anon_sym_typename] = ACTIONS(1731), - [anon_sym_template] = ACTIONS(1731), - [anon_sym_operator] = ACTIONS(1731), - [anon_sym_delete] = ACTIONS(1731), - [anon_sym_throw] = ACTIONS(1731), - [anon_sym_namespace] = ACTIONS(1731), - [anon_sym_using] = ACTIONS(1731), - [anon_sym_static_assert] = ACTIONS(1731), - [anon_sym_co_return] = ACTIONS(1731), - [anon_sym_co_yield] = ACTIONS(1731), - [anon_sym_try] = ACTIONS(1731), - [anon_sym_co_await] = ACTIONS(1731), - [anon_sym_new] = ACTIONS(1731), - [sym_this] = ACTIONS(1731), - [sym_nullptr] = ACTIONS(1731), - [sym_alone_macro] = ACTIONS(1733), - [aux_sym_alone_macro_call_token1] = ACTIONS(1731), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1731), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_FORWARD] = ACTIONS(1731), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1731), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1731), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1731), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1731), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_PS_GET] = ACTIONS(1731), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1731), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1731), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1731), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1731), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1731), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1731), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1731), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1731), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1731), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1731), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1731), - [anon_sym_MOZ_COLD] = ACTIONS(1731), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1731), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1731), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1731), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1731), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1731), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1731), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1731), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1731), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1731), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1731), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1731), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1731), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1731), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1731), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1731), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1731), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1731), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1731), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1731), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1731), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_NONNULL] = ACTIONS(1731), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1731), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1731), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1731), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1731), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1731), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_NORETURN] = ACTIONS(1731), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1731), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1731), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1731), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1731), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1731), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1731), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1731), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1731), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1731), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1731), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1731), - [anon_sym_MOZ_RAII] = ACTIONS(1731), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1731), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1731), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1731), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1731), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1731), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1731), - [sym_raw_string_literal] = ACTIONS(1733), - }, - [203] = { - [sym_identifier] = ACTIONS(1518), - [aux_sym_preproc_include_token1] = ACTIONS(1518), - [aux_sym_preproc_def_token1] = ACTIONS(1518), - [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(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_typedef] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym___attribute__] = ACTIONS(1518), - [anon_sym_COLON_COLON] = ACTIONS(1520), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), - [anon_sym___declspec] = ACTIONS(1518), - [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(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_inline] = ACTIONS(1518), - [anon_sym_thread_local] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_volatile] = ACTIONS(1518), - [anon_sym_restrict] = ACTIONS(1518), - [anon_sym__Atomic] = ACTIONS(1518), - [anon_sym_mutable] = ACTIONS(1518), - [anon_sym_constexpr] = ACTIONS(1518), - [anon_sym_signed] = ACTIONS(1518), - [anon_sym_unsigned] = ACTIONS(1518), - [anon_sym_long] = ACTIONS(1518), - [anon_sym_short] = ACTIONS(1518), - [sym_primitive_type] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_goto] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_PLUS_PLUS] = ACTIONS(1520), - [anon_sym_sizeof] = ACTIONS(1518), - [sym_number_literal] = ACTIONS(1520), - [anon_sym_L_SQUOTE] = ACTIONS(1520), - [anon_sym_u_SQUOTE] = ACTIONS(1520), - [anon_sym_U_SQUOTE] = ACTIONS(1520), - [anon_sym_u8_SQUOTE] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1520), - [anon_sym_L_DQUOTE] = ACTIONS(1520), - [anon_sym_u_DQUOTE] = ACTIONS(1520), - [anon_sym_U_DQUOTE] = ACTIONS(1520), - [anon_sym_u8_DQUOTE] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), - [sym_null] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1518), - [anon_sym_virtual] = ACTIONS(1518), - [anon_sym_explicit] = ACTIONS(1518), - [sym_auto] = ACTIONS(1518), - [anon_sym_typename] = ACTIONS(1518), - [anon_sym_template] = ACTIONS(1518), - [anon_sym_operator] = ACTIONS(1518), - [anon_sym_delete] = ACTIONS(1518), - [anon_sym_throw] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1518), - [anon_sym_static_assert] = ACTIONS(1518), - [anon_sym_co_return] = ACTIONS(1518), - [anon_sym_co_yield] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_co_await] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [sym_this] = ACTIONS(1518), - [sym_nullptr] = ACTIONS(1518), - [sym_alone_macro] = ACTIONS(1520), - [aux_sym_alone_macro_call_token1] = ACTIONS(1518), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_FORWARD] = ACTIONS(1518), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1518), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_PS_GET] = ACTIONS(1518), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1518), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1518), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1518), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1518), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1518), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1518), - [anon_sym_MOZ_COLD] = ACTIONS(1518), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1518), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1518), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1518), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1518), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1518), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1518), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1518), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1518), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1518), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1518), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1518), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1518), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1518), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_NONNULL] = ACTIONS(1518), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1518), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1518), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1518), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1518), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1518), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1518), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1518), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1518), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1518), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1518), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1518), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1518), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1518), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1518), - [anon_sym_MOZ_RAII] = ACTIONS(1518), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1518), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1518), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1518), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1518), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1518), - [sym_raw_string_literal] = ACTIONS(1520), - }, - [204] = { - [sym_identifier] = ACTIONS(1735), - [aux_sym_preproc_include_token1] = ACTIONS(1735), - [aux_sym_preproc_def_token1] = ACTIONS(1735), - [aux_sym_preproc_if_token1] = ACTIONS(1735), - [aux_sym_preproc_if_token2] = ACTIONS(1735), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1735), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1735), - [aux_sym_preproc_else_token1] = ACTIONS(1735), - [aux_sym_preproc_elif_token1] = ACTIONS(1735), - [sym_preproc_directive] = ACTIONS(1735), - [anon_sym_LPAREN2] = ACTIONS(1737), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_typedef] = ACTIONS(1735), - [anon_sym_extern] = ACTIONS(1735), - [anon_sym___attribute__] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1737), - [anon_sym___declspec] = ACTIONS(1735), - [anon_sym___based] = ACTIONS(1735), - [anon_sym___cdecl] = ACTIONS(1735), - [anon_sym___clrcall] = ACTIONS(1735), - [anon_sym___stdcall] = ACTIONS(1735), - [anon_sym___fastcall] = ACTIONS(1735), - [anon_sym___thiscall] = ACTIONS(1735), - [anon_sym___vectorcall] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_register] = ACTIONS(1735), - [anon_sym_inline] = ACTIONS(1735), - [anon_sym_thread_local] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_volatile] = ACTIONS(1735), - [anon_sym_restrict] = ACTIONS(1735), - [anon_sym__Atomic] = ACTIONS(1735), - [anon_sym_mutable] = ACTIONS(1735), - [anon_sym_constexpr] = ACTIONS(1735), - [anon_sym_signed] = ACTIONS(1735), - [anon_sym_unsigned] = ACTIONS(1735), - [anon_sym_long] = ACTIONS(1735), - [anon_sym_short] = ACTIONS(1735), - [sym_primitive_type] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [anon_sym_class] = ACTIONS(1735), - [anon_sym_struct] = ACTIONS(1735), - [anon_sym_union] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1735), - [anon_sym_switch] = ACTIONS(1735), - [anon_sym_case] = ACTIONS(1735), - [anon_sym_default] = ACTIONS(1735), - [anon_sym_while] = ACTIONS(1735), - [anon_sym_do] = ACTIONS(1735), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_return] = ACTIONS(1735), - [anon_sym_break] = ACTIONS(1735), - [anon_sym_continue] = ACTIONS(1735), - [anon_sym_goto] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_sizeof] = ACTIONS(1735), - [sym_number_literal] = ACTIONS(1737), - [anon_sym_L_SQUOTE] = ACTIONS(1737), - [anon_sym_u_SQUOTE] = ACTIONS(1737), - [anon_sym_U_SQUOTE] = ACTIONS(1737), - [anon_sym_u8_SQUOTE] = ACTIONS(1737), - [anon_sym_SQUOTE] = ACTIONS(1737), - [anon_sym_L_DQUOTE] = ACTIONS(1737), - [anon_sym_u_DQUOTE] = ACTIONS(1737), - [anon_sym_U_DQUOTE] = ACTIONS(1737), - [anon_sym_u8_DQUOTE] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [sym_true] = ACTIONS(1735), - [sym_false] = ACTIONS(1735), - [sym_null] = ACTIONS(1735), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1735), - [anon_sym_virtual] = ACTIONS(1735), - [anon_sym_explicit] = ACTIONS(1735), - [sym_auto] = ACTIONS(1735), - [anon_sym_typename] = ACTIONS(1735), - [anon_sym_template] = ACTIONS(1735), - [anon_sym_operator] = ACTIONS(1735), - [anon_sym_delete] = ACTIONS(1735), - [anon_sym_throw] = ACTIONS(1735), - [anon_sym_namespace] = ACTIONS(1735), - [anon_sym_using] = ACTIONS(1735), - [anon_sym_static_assert] = ACTIONS(1735), - [anon_sym_co_return] = ACTIONS(1735), - [anon_sym_co_yield] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1735), - [anon_sym_co_await] = ACTIONS(1735), - [anon_sym_new] = ACTIONS(1735), - [sym_this] = ACTIONS(1735), - [sym_nullptr] = ACTIONS(1735), - [sym_alone_macro] = ACTIONS(1737), - [aux_sym_alone_macro_call_token1] = ACTIONS(1735), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1735), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_FORWARD] = ACTIONS(1735), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1735), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1735), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1735), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1735), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_PS_GET] = ACTIONS(1735), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1735), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1735), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1735), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1735), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1735), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1735), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1735), - [anon_sym_MOZ_COLD] = ACTIONS(1735), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1735), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1735), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1735), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1735), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1735), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1735), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1735), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1735), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1735), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1735), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1735), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1735), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1735), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_NONNULL] = ACTIONS(1735), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1735), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1735), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1735), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1735), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1735), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1735), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1735), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1735), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1735), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1735), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1735), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1735), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1735), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1735), - [anon_sym_MOZ_RAII] = ACTIONS(1735), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1735), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1735), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1735), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1735), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1735), - [sym_raw_string_literal] = ACTIONS(1737), - }, - [205] = { - [sym_identifier] = ACTIONS(1739), - [aux_sym_preproc_include_token1] = ACTIONS(1739), - [aux_sym_preproc_def_token1] = ACTIONS(1739), - [aux_sym_preproc_if_token1] = ACTIONS(1739), - [aux_sym_preproc_if_token2] = ACTIONS(1739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1739), - [aux_sym_preproc_else_token1] = ACTIONS(1739), - [aux_sym_preproc_elif_token1] = ACTIONS(1739), - [sym_preproc_directive] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_typedef] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym___attribute__] = ACTIONS(1739), - [anon_sym_COLON_COLON] = ACTIONS(1741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1741), - [anon_sym___declspec] = ACTIONS(1739), - [anon_sym___based] = ACTIONS(1739), - [anon_sym___cdecl] = ACTIONS(1739), - [anon_sym___clrcall] = ACTIONS(1739), - [anon_sym___stdcall] = ACTIONS(1739), - [anon_sym___fastcall] = ACTIONS(1739), - [anon_sym___thiscall] = ACTIONS(1739), - [anon_sym___vectorcall] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_static] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_inline] = ACTIONS(1739), - [anon_sym_thread_local] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [anon_sym_volatile] = ACTIONS(1739), - [anon_sym_restrict] = ACTIONS(1739), - [anon_sym__Atomic] = ACTIONS(1739), - [anon_sym_mutable] = ACTIONS(1739), - [anon_sym_constexpr] = ACTIONS(1739), - [anon_sym_signed] = ACTIONS(1739), - [anon_sym_unsigned] = ACTIONS(1739), - [anon_sym_long] = ACTIONS(1739), - [anon_sym_short] = ACTIONS(1739), - [sym_primitive_type] = ACTIONS(1739), - [anon_sym_enum] = ACTIONS(1739), - [anon_sym_class] = ACTIONS(1739), - [anon_sym_struct] = ACTIONS(1739), - [anon_sym_union] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_inline] = ACTIONS(1307), + [anon_sym___inline] = ACTIONS(1307), + [anon_sym___inline__] = ACTIONS(1307), + [anon_sym___forceinline] = ACTIONS(1307), + [anon_sym_thread_local] = ACTIONS(1307), + [anon_sym___thread] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [anon_sym__Nonnull] = ACTIONS(1331), + [anon_sym_mutable] = ACTIONS(1331), + [anon_sym_constinit] = ACTIONS(1331), + [anon_sym_consteval] = ACTIONS(1331), + [anon_sym_alignas] = ACTIONS(1334), + [anon_sym__Alignas] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1337), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_class] = ACTIONS(1343), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1276), [anon_sym_switch] = ACTIONS(1739), - [anon_sym_case] = ACTIONS(1739), - [anon_sym_default] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_goto] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_sizeof] = ACTIONS(1739), - [sym_number_literal] = ACTIONS(1741), - [anon_sym_L_SQUOTE] = ACTIONS(1741), - [anon_sym_u_SQUOTE] = ACTIONS(1741), - [anon_sym_U_SQUOTE] = ACTIONS(1741), - [anon_sym_u8_SQUOTE] = ACTIONS(1741), - [anon_sym_SQUOTE] = ACTIONS(1741), - [anon_sym_L_DQUOTE] = ACTIONS(1741), - [anon_sym_u_DQUOTE] = ACTIONS(1741), - [anon_sym_U_DQUOTE] = ACTIONS(1741), - [anon_sym_u8_DQUOTE] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym_true] = ACTIONS(1739), - [sym_false] = ACTIONS(1739), - [sym_null] = ACTIONS(1739), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1739), - [anon_sym_virtual] = ACTIONS(1739), - [anon_sym_explicit] = ACTIONS(1739), - [sym_auto] = ACTIONS(1739), - [anon_sym_typename] = ACTIONS(1739), - [anon_sym_template] = ACTIONS(1739), - [anon_sym_operator] = ACTIONS(1739), - [anon_sym_delete] = ACTIONS(1739), - [anon_sym_throw] = ACTIONS(1739), - [anon_sym_namespace] = ACTIONS(1739), - [anon_sym_using] = ACTIONS(1739), - [anon_sym_static_assert] = ACTIONS(1739), - [anon_sym_co_return] = ACTIONS(1739), - [anon_sym_co_yield] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_co_await] = ACTIONS(1739), - [anon_sym_new] = ACTIONS(1739), - [sym_this] = ACTIONS(1739), - [sym_nullptr] = ACTIONS(1739), - [sym_alone_macro] = ACTIONS(1741), - [aux_sym_alone_macro_call_token1] = ACTIONS(1739), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1739), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_FORWARD] = ACTIONS(1739), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1739), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1739), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1739), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1739), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_PS_GET] = ACTIONS(1739), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1739), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1739), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1739), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1739), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1739), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1739), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1739), - [anon_sym_MOZ_COLD] = ACTIONS(1739), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1739), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1739), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1739), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1739), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1739), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1739), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1739), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1739), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1739), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1739), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1739), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1739), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1739), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_NONNULL] = ACTIONS(1739), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1739), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1739), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1739), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1739), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1739), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1739), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1739), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1739), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1739), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1739), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1739), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1739), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1739), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1739), - [anon_sym_MOZ_RAII] = ACTIONS(1739), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1739), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1739), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1739), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1739), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1739), - [sym_raw_string_literal] = ACTIONS(1741), - }, - [206] = { - [sym_identifier] = ACTIONS(1743), - [aux_sym_preproc_include_token1] = ACTIONS(1743), - [aux_sym_preproc_def_token1] = ACTIONS(1743), - [aux_sym_preproc_if_token1] = ACTIONS(1743), - [aux_sym_preproc_if_token2] = ACTIONS(1743), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1743), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1743), - [aux_sym_preproc_else_token1] = ACTIONS(1743), - [aux_sym_preproc_elif_token1] = ACTIONS(1743), - [sym_preproc_directive] = ACTIONS(1743), - [anon_sym_LPAREN2] = ACTIONS(1745), - [anon_sym_BANG] = ACTIONS(1745), - [anon_sym_TILDE] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1743), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_AMP_AMP] = ACTIONS(1745), - [anon_sym_AMP] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_typedef] = ACTIONS(1743), - [anon_sym_extern] = ACTIONS(1743), - [anon_sym___attribute__] = ACTIONS(1743), - [anon_sym_COLON_COLON] = ACTIONS(1745), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1745), - [anon_sym___declspec] = ACTIONS(1743), - [anon_sym___based] = ACTIONS(1743), - [anon_sym___cdecl] = ACTIONS(1743), - [anon_sym___clrcall] = ACTIONS(1743), - [anon_sym___stdcall] = ACTIONS(1743), - [anon_sym___fastcall] = ACTIONS(1743), - [anon_sym___thiscall] = ACTIONS(1743), - [anon_sym___vectorcall] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_static] = ACTIONS(1743), - [anon_sym_register] = ACTIONS(1743), - [anon_sym_inline] = ACTIONS(1743), - [anon_sym_thread_local] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_volatile] = ACTIONS(1743), - [anon_sym_restrict] = ACTIONS(1743), - [anon_sym__Atomic] = ACTIONS(1743), - [anon_sym_mutable] = ACTIONS(1743), - [anon_sym_constexpr] = ACTIONS(1743), - [anon_sym_signed] = ACTIONS(1743), - [anon_sym_unsigned] = ACTIONS(1743), - [anon_sym_long] = ACTIONS(1743), - [anon_sym_short] = ACTIONS(1743), - [sym_primitive_type] = ACTIONS(1743), - [anon_sym_enum] = ACTIONS(1743), - [anon_sym_class] = ACTIONS(1743), - [anon_sym_struct] = ACTIONS(1743), - [anon_sym_union] = ACTIONS(1743), - [anon_sym_if] = ACTIONS(1743), - [anon_sym_switch] = ACTIONS(1743), - [anon_sym_case] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1743), - [anon_sym_while] = ACTIONS(1743), - [anon_sym_do] = ACTIONS(1743), - [anon_sym_for] = ACTIONS(1743), - [anon_sym_return] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1743), - [anon_sym_continue] = ACTIONS(1743), - [anon_sym_goto] = ACTIONS(1743), - [anon_sym_DASH_DASH] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1745), - [anon_sym_sizeof] = ACTIONS(1743), - [sym_number_literal] = ACTIONS(1745), - [anon_sym_L_SQUOTE] = ACTIONS(1745), - [anon_sym_u_SQUOTE] = ACTIONS(1745), - [anon_sym_U_SQUOTE] = ACTIONS(1745), - [anon_sym_u8_SQUOTE] = ACTIONS(1745), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_L_DQUOTE] = ACTIONS(1745), - [anon_sym_u_DQUOTE] = ACTIONS(1745), - [anon_sym_U_DQUOTE] = ACTIONS(1745), - [anon_sym_u8_DQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1745), - [sym_true] = ACTIONS(1743), - [sym_false] = ACTIONS(1743), - [sym_null] = ACTIONS(1743), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1743), - [anon_sym_virtual] = ACTIONS(1743), - [anon_sym_explicit] = ACTIONS(1743), - [sym_auto] = ACTIONS(1743), - [anon_sym_typename] = ACTIONS(1743), - [anon_sym_template] = ACTIONS(1743), - [anon_sym_operator] = ACTIONS(1743), - [anon_sym_delete] = ACTIONS(1743), - [anon_sym_throw] = ACTIONS(1743), - [anon_sym_namespace] = ACTIONS(1743), - [anon_sym_using] = ACTIONS(1743), - [anon_sym_static_assert] = ACTIONS(1743), - [anon_sym_co_return] = ACTIONS(1743), - [anon_sym_co_yield] = ACTIONS(1743), - [anon_sym_try] = ACTIONS(1743), - [anon_sym_co_await] = ACTIONS(1743), - [anon_sym_new] = ACTIONS(1743), - [sym_this] = ACTIONS(1743), - [sym_nullptr] = ACTIONS(1743), - [sym_alone_macro] = ACTIONS(1745), - [aux_sym_alone_macro_call_token1] = ACTIONS(1743), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1743), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_FORWARD] = ACTIONS(1743), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1743), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1743), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1743), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1743), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_PS_GET] = ACTIONS(1743), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1743), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1743), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1743), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1743), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1743), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1743), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1743), - [anon_sym_MOZ_COLD] = ACTIONS(1743), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1743), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1743), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1743), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1743), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1743), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1743), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1743), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1743), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1743), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1743), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1743), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1743), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1743), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_NONNULL] = ACTIONS(1743), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1743), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1743), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1743), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1743), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1743), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1743), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1743), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1743), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1743), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1743), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1743), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1743), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1743), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1743), - [anon_sym_MOZ_RAII] = ACTIONS(1743), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1743), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1743), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1743), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1743), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1743), - [sym_raw_string_literal] = ACTIONS(1745), - }, - [207] = { - [sym_identifier] = ACTIONS(1747), - [aux_sym_preproc_include_token1] = ACTIONS(1747), - [aux_sym_preproc_def_token1] = ACTIONS(1747), - [aux_sym_preproc_if_token1] = ACTIONS(1747), - [aux_sym_preproc_if_token2] = ACTIONS(1747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1747), - [aux_sym_preproc_else_token1] = ACTIONS(1747), - [aux_sym_preproc_elif_token1] = ACTIONS(1747), - [sym_preproc_directive] = ACTIONS(1747), - [anon_sym_LPAREN2] = ACTIONS(1749), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1749), - [anon_sym_AMP_AMP] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1749), - [anon_sym_typedef] = ACTIONS(1747), - [anon_sym_extern] = ACTIONS(1747), - [anon_sym___attribute__] = ACTIONS(1747), - [anon_sym_COLON_COLON] = ACTIONS(1749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1749), - [anon_sym___declspec] = ACTIONS(1747), - [anon_sym___based] = ACTIONS(1747), - [anon_sym___cdecl] = ACTIONS(1747), - [anon_sym___clrcall] = ACTIONS(1747), - [anon_sym___stdcall] = ACTIONS(1747), - [anon_sym___fastcall] = ACTIONS(1747), - [anon_sym___thiscall] = ACTIONS(1747), - [anon_sym___vectorcall] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_static] = ACTIONS(1747), - [anon_sym_register] = ACTIONS(1747), - [anon_sym_inline] = ACTIONS(1747), - [anon_sym_thread_local] = ACTIONS(1747), - [anon_sym_const] = ACTIONS(1747), - [anon_sym_volatile] = ACTIONS(1747), - [anon_sym_restrict] = ACTIONS(1747), - [anon_sym__Atomic] = ACTIONS(1747), - [anon_sym_mutable] = ACTIONS(1747), - [anon_sym_constexpr] = ACTIONS(1747), - [anon_sym_signed] = ACTIONS(1747), - [anon_sym_unsigned] = ACTIONS(1747), - [anon_sym_long] = ACTIONS(1747), - [anon_sym_short] = ACTIONS(1747), - [sym_primitive_type] = ACTIONS(1747), - [anon_sym_enum] = ACTIONS(1747), - [anon_sym_class] = ACTIONS(1747), - [anon_sym_struct] = ACTIONS(1747), - [anon_sym_union] = ACTIONS(1747), - [anon_sym_if] = ACTIONS(1747), - [anon_sym_switch] = ACTIONS(1747), - [anon_sym_case] = ACTIONS(1747), - [anon_sym_default] = ACTIONS(1747), - [anon_sym_while] = ACTIONS(1747), - [anon_sym_do] = ACTIONS(1747), - [anon_sym_for] = ACTIONS(1747), - [anon_sym_return] = ACTIONS(1747), - [anon_sym_break] = ACTIONS(1747), - [anon_sym_continue] = ACTIONS(1747), - [anon_sym_goto] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_sizeof] = ACTIONS(1747), - [sym_number_literal] = ACTIONS(1749), - [anon_sym_L_SQUOTE] = ACTIONS(1749), - [anon_sym_u_SQUOTE] = ACTIONS(1749), - [anon_sym_U_SQUOTE] = ACTIONS(1749), - [anon_sym_u8_SQUOTE] = ACTIONS(1749), - [anon_sym_SQUOTE] = ACTIONS(1749), - [anon_sym_L_DQUOTE] = ACTIONS(1749), - [anon_sym_u_DQUOTE] = ACTIONS(1749), - [anon_sym_U_DQUOTE] = ACTIONS(1749), - [anon_sym_u8_DQUOTE] = ACTIONS(1749), - [anon_sym_DQUOTE] = ACTIONS(1749), - [sym_true] = ACTIONS(1747), - [sym_false] = ACTIONS(1747), - [sym_null] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1747), - [anon_sym_virtual] = ACTIONS(1747), - [anon_sym_explicit] = ACTIONS(1747), - [sym_auto] = ACTIONS(1747), - [anon_sym_typename] = ACTIONS(1747), - [anon_sym_template] = ACTIONS(1747), - [anon_sym_operator] = ACTIONS(1747), - [anon_sym_delete] = ACTIONS(1747), - [anon_sym_throw] = ACTIONS(1747), - [anon_sym_namespace] = ACTIONS(1747), - [anon_sym_using] = ACTIONS(1747), - [anon_sym_static_assert] = ACTIONS(1747), - [anon_sym_co_return] = ACTIONS(1747), - [anon_sym_co_yield] = ACTIONS(1747), - [anon_sym_try] = ACTIONS(1747), - [anon_sym_co_await] = ACTIONS(1747), - [anon_sym_new] = ACTIONS(1747), - [sym_this] = ACTIONS(1747), - [sym_nullptr] = ACTIONS(1747), - [sym_alone_macro] = ACTIONS(1749), - [aux_sym_alone_macro_call_token1] = ACTIONS(1747), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1747), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_FORWARD] = ACTIONS(1747), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1747), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1747), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1747), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1747), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_PS_GET] = ACTIONS(1747), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1747), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1747), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1747), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1747), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1747), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1747), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1747), - [anon_sym_MOZ_COLD] = ACTIONS(1747), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1747), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1747), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1747), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1747), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1747), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1747), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1747), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1747), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1747), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1747), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1747), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1747), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1747), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_NONNULL] = ACTIONS(1747), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1747), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1747), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1747), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1747), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1747), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1747), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1747), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1747), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1747), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1747), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1747), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1747), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1747), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1747), - [anon_sym_MOZ_RAII] = ACTIONS(1747), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1747), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1747), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1747), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1747), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1747), - [sym_raw_string_literal] = ACTIONS(1749), - }, - [208] = { - [sym_identifier] = ACTIONS(1751), - [aux_sym_preproc_include_token1] = ACTIONS(1751), - [aux_sym_preproc_def_token1] = ACTIONS(1751), - [aux_sym_preproc_if_token1] = ACTIONS(1751), - [aux_sym_preproc_if_token2] = ACTIONS(1751), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1751), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1751), - [aux_sym_preproc_else_token1] = ACTIONS(1751), - [aux_sym_preproc_elif_token1] = ACTIONS(1751), - [sym_preproc_directive] = ACTIONS(1751), - [anon_sym_LPAREN2] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1753), - [anon_sym_TILDE] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_STAR] = ACTIONS(1753), - [anon_sym_AMP_AMP] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_SEMI] = ACTIONS(1753), - [anon_sym_typedef] = ACTIONS(1751), - [anon_sym_extern] = ACTIONS(1751), - [anon_sym___attribute__] = ACTIONS(1751), - [anon_sym_COLON_COLON] = ACTIONS(1753), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1753), - [anon_sym___declspec] = ACTIONS(1751), - [anon_sym___based] = ACTIONS(1751), - [anon_sym___cdecl] = ACTIONS(1751), - [anon_sym___clrcall] = ACTIONS(1751), - [anon_sym___stdcall] = ACTIONS(1751), - [anon_sym___fastcall] = ACTIONS(1751), - [anon_sym___thiscall] = ACTIONS(1751), - [anon_sym___vectorcall] = ACTIONS(1751), - [anon_sym_LBRACE] = ACTIONS(1753), - [anon_sym_LBRACK] = ACTIONS(1751), - [anon_sym_static] = ACTIONS(1751), - [anon_sym_register] = ACTIONS(1751), - [anon_sym_inline] = ACTIONS(1751), - [anon_sym_thread_local] = ACTIONS(1751), - [anon_sym_const] = ACTIONS(1751), - [anon_sym_volatile] = ACTIONS(1751), - [anon_sym_restrict] = ACTIONS(1751), - [anon_sym__Atomic] = ACTIONS(1751), - [anon_sym_mutable] = ACTIONS(1751), - [anon_sym_constexpr] = ACTIONS(1751), - [anon_sym_signed] = ACTIONS(1751), - [anon_sym_unsigned] = ACTIONS(1751), - [anon_sym_long] = ACTIONS(1751), - [anon_sym_short] = ACTIONS(1751), - [sym_primitive_type] = ACTIONS(1751), - [anon_sym_enum] = ACTIONS(1751), - [anon_sym_class] = ACTIONS(1751), - [anon_sym_struct] = ACTIONS(1751), - [anon_sym_union] = ACTIONS(1751), - [anon_sym_if] = ACTIONS(1751), - [anon_sym_switch] = ACTIONS(1751), - [anon_sym_case] = ACTIONS(1751), - [anon_sym_default] = ACTIONS(1751), - [anon_sym_while] = ACTIONS(1751), - [anon_sym_do] = ACTIONS(1751), - [anon_sym_for] = ACTIONS(1751), + [anon_sym_while] = ACTIONS(1742), + [anon_sym_do] = ACTIONS(1745), + [anon_sym_for] = ACTIONS(1748), [anon_sym_return] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1751), - [anon_sym_continue] = ACTIONS(1751), - [anon_sym_goto] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1753), - [anon_sym_PLUS_PLUS] = ACTIONS(1753), - [anon_sym_sizeof] = ACTIONS(1751), - [sym_number_literal] = ACTIONS(1753), - [anon_sym_L_SQUOTE] = ACTIONS(1753), - [anon_sym_u_SQUOTE] = ACTIONS(1753), - [anon_sym_U_SQUOTE] = ACTIONS(1753), - [anon_sym_u8_SQUOTE] = ACTIONS(1753), - [anon_sym_SQUOTE] = ACTIONS(1753), - [anon_sym_L_DQUOTE] = ACTIONS(1753), - [anon_sym_u_DQUOTE] = ACTIONS(1753), - [anon_sym_U_DQUOTE] = ACTIONS(1753), - [anon_sym_u8_DQUOTE] = ACTIONS(1753), - [anon_sym_DQUOTE] = ACTIONS(1753), - [sym_true] = ACTIONS(1751), - [sym_false] = ACTIONS(1751), - [sym_null] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1751), - [anon_sym_virtual] = ACTIONS(1751), - [anon_sym_explicit] = ACTIONS(1751), - [sym_auto] = ACTIONS(1751), - [anon_sym_typename] = ACTIONS(1751), - [anon_sym_template] = ACTIONS(1751), - [anon_sym_operator] = ACTIONS(1751), - [anon_sym_delete] = ACTIONS(1751), - [anon_sym_throw] = ACTIONS(1751), - [anon_sym_namespace] = ACTIONS(1751), - [anon_sym_using] = ACTIONS(1751), - [anon_sym_static_assert] = ACTIONS(1751), - [anon_sym_co_return] = ACTIONS(1751), - [anon_sym_co_yield] = ACTIONS(1751), - [anon_sym_try] = ACTIONS(1751), - [anon_sym_co_await] = ACTIONS(1751), - [anon_sym_new] = ACTIONS(1751), - [sym_this] = ACTIONS(1751), - [sym_nullptr] = ACTIONS(1751), - [sym_alone_macro] = ACTIONS(1753), - [aux_sym_alone_macro_call_token1] = ACTIONS(1751), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1751), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_FORWARD] = ACTIONS(1751), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1751), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1751), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1751), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1751), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_PS_GET] = ACTIONS(1751), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1751), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1751), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1751), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1751), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1751), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1751), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1751), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1751), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1751), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1751), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1751), - [anon_sym_MOZ_COLD] = ACTIONS(1751), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1751), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1751), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1751), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1751), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1751), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1751), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1751), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1751), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1751), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1751), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1751), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1751), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1751), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1751), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1751), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1751), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1751), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1751), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1751), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1751), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_NONNULL] = ACTIONS(1751), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1751), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1751), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1751), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1751), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1751), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_NORETURN] = ACTIONS(1751), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1751), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1751), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1751), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1751), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1751), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1751), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1751), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1751), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1751), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1751), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1751), - [anon_sym_MOZ_RAII] = ACTIONS(1751), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1751), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1751), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1751), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1751), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1751), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1751), - [sym_raw_string_literal] = ACTIONS(1753), - }, - [209] = { - [sym_identifier] = ACTIONS(1755), - [aux_sym_preproc_include_token1] = ACTIONS(1755), - [aux_sym_preproc_def_token1] = ACTIONS(1755), - [aux_sym_preproc_if_token1] = ACTIONS(1755), - [aux_sym_preproc_if_token2] = ACTIONS(1755), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1755), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1755), - [aux_sym_preproc_else_token1] = ACTIONS(1755), - [aux_sym_preproc_elif_token1] = ACTIONS(1755), - [sym_preproc_directive] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_typedef] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym___attribute__] = ACTIONS(1755), - [anon_sym_COLON_COLON] = ACTIONS(1757), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1757), - [anon_sym___declspec] = ACTIONS(1755), - [anon_sym___based] = ACTIONS(1755), - [anon_sym___cdecl] = ACTIONS(1755), - [anon_sym___clrcall] = ACTIONS(1755), - [anon_sym___stdcall] = ACTIONS(1755), - [anon_sym___fastcall] = ACTIONS(1755), - [anon_sym___thiscall] = ACTIONS(1755), - [anon_sym___vectorcall] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1755), - [anon_sym_static] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_inline] = ACTIONS(1755), - [anon_sym_thread_local] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [anon_sym_volatile] = ACTIONS(1755), - [anon_sym_restrict] = ACTIONS(1755), - [anon_sym__Atomic] = ACTIONS(1755), - [anon_sym_mutable] = ACTIONS(1755), - [anon_sym_constexpr] = ACTIONS(1755), - [anon_sym_signed] = ACTIONS(1755), - [anon_sym_unsigned] = ACTIONS(1755), - [anon_sym_long] = ACTIONS(1755), - [anon_sym_short] = ACTIONS(1755), - [sym_primitive_type] = ACTIONS(1755), - [anon_sym_enum] = ACTIONS(1755), - [anon_sym_class] = ACTIONS(1755), - [anon_sym_struct] = ACTIONS(1755), - [anon_sym_union] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1755), - [anon_sym_case] = ACTIONS(1755), - [anon_sym_default] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_goto] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_sizeof] = ACTIONS(1755), - [sym_number_literal] = ACTIONS(1757), - [anon_sym_L_SQUOTE] = ACTIONS(1757), - [anon_sym_u_SQUOTE] = ACTIONS(1757), - [anon_sym_U_SQUOTE] = ACTIONS(1757), - [anon_sym_u8_SQUOTE] = ACTIONS(1757), - [anon_sym_SQUOTE] = ACTIONS(1757), - [anon_sym_L_DQUOTE] = ACTIONS(1757), - [anon_sym_u_DQUOTE] = ACTIONS(1757), - [anon_sym_U_DQUOTE] = ACTIONS(1757), - [anon_sym_u8_DQUOTE] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym_true] = ACTIONS(1755), - [sym_false] = ACTIONS(1755), - [sym_null] = ACTIONS(1755), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1755), - [anon_sym_virtual] = ACTIONS(1755), - [anon_sym_explicit] = ACTIONS(1755), - [sym_auto] = ACTIONS(1755), - [anon_sym_typename] = ACTIONS(1755), - [anon_sym_template] = ACTIONS(1755), - [anon_sym_operator] = ACTIONS(1755), - [anon_sym_delete] = ACTIONS(1755), - [anon_sym_throw] = ACTIONS(1755), - [anon_sym_namespace] = ACTIONS(1755), - [anon_sym_using] = ACTIONS(1755), - [anon_sym_static_assert] = ACTIONS(1755), - [anon_sym_co_return] = ACTIONS(1755), - [anon_sym_co_yield] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_co_await] = ACTIONS(1755), - [anon_sym_new] = ACTIONS(1755), - [sym_this] = ACTIONS(1755), - [sym_nullptr] = ACTIONS(1755), - [sym_alone_macro] = ACTIONS(1757), - [aux_sym_alone_macro_call_token1] = ACTIONS(1755), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1755), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_FORWARD] = ACTIONS(1755), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1755), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1755), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1755), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1755), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_PS_GET] = ACTIONS(1755), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1755), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1755), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1755), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1755), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1755), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1755), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1755), - [anon_sym_MOZ_COLD] = ACTIONS(1755), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1755), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1755), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1755), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1755), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1755), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1755), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1755), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1755), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1755), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1755), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1755), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1755), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1755), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_NONNULL] = ACTIONS(1755), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1755), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1755), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1755), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1755), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1755), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1755), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1755), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1755), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1755), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1755), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1755), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1755), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1755), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1755), - [anon_sym_MOZ_RAII] = ACTIONS(1755), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1755), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1755), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1755), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1755), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1755), - [sym_raw_string_literal] = ACTIONS(1757), - }, - [210] = { - [sym_identifier] = ACTIONS(1759), - [aux_sym_preproc_include_token1] = ACTIONS(1759), - [aux_sym_preproc_def_token1] = ACTIONS(1759), - [aux_sym_preproc_if_token1] = ACTIONS(1759), - [aux_sym_preproc_if_token2] = ACTIONS(1759), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1759), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1759), - [aux_sym_preproc_else_token1] = ACTIONS(1759), - [aux_sym_preproc_elif_token1] = ACTIONS(1759), - [sym_preproc_directive] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1761), - [anon_sym_TILDE] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1759), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_AMP_AMP] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_typedef] = ACTIONS(1759), - [anon_sym_extern] = ACTIONS(1759), - [anon_sym___attribute__] = ACTIONS(1759), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), - [anon_sym___declspec] = ACTIONS(1759), - [anon_sym___based] = ACTIONS(1759), - [anon_sym___cdecl] = ACTIONS(1759), - [anon_sym___clrcall] = ACTIONS(1759), - [anon_sym___stdcall] = ACTIONS(1759), - [anon_sym___fastcall] = ACTIONS(1759), - [anon_sym___thiscall] = ACTIONS(1759), - [anon_sym___vectorcall] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_static] = ACTIONS(1759), - [anon_sym_register] = ACTIONS(1759), - [anon_sym_inline] = ACTIONS(1759), - [anon_sym_thread_local] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_volatile] = ACTIONS(1759), - [anon_sym_restrict] = ACTIONS(1759), - [anon_sym__Atomic] = ACTIONS(1759), - [anon_sym_mutable] = ACTIONS(1759), - [anon_sym_constexpr] = ACTIONS(1759), - [anon_sym_signed] = ACTIONS(1759), - [anon_sym_unsigned] = ACTIONS(1759), - [anon_sym_long] = ACTIONS(1759), - [anon_sym_short] = ACTIONS(1759), - [sym_primitive_type] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_class] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(1759), - [anon_sym_union] = ACTIONS(1759), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_switch] = ACTIONS(1759), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1759), - [anon_sym_while] = ACTIONS(1759), - [anon_sym_do] = ACTIONS(1759), - [anon_sym_for] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1759), - [anon_sym_break] = ACTIONS(1759), - [anon_sym_continue] = ACTIONS(1759), - [anon_sym_goto] = ACTIONS(1759), - [anon_sym_DASH_DASH] = ACTIONS(1761), - [anon_sym_PLUS_PLUS] = ACTIONS(1761), - [anon_sym_sizeof] = ACTIONS(1759), - [sym_number_literal] = ACTIONS(1761), - [anon_sym_L_SQUOTE] = ACTIONS(1761), - [anon_sym_u_SQUOTE] = ACTIONS(1761), - [anon_sym_U_SQUOTE] = ACTIONS(1761), - [anon_sym_u8_SQUOTE] = ACTIONS(1761), - [anon_sym_SQUOTE] = ACTIONS(1761), - [anon_sym_L_DQUOTE] = ACTIONS(1761), - [anon_sym_u_DQUOTE] = ACTIONS(1761), - [anon_sym_U_DQUOTE] = ACTIONS(1761), - [anon_sym_u8_DQUOTE] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1761), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_null] = ACTIONS(1759), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1759), - [anon_sym_virtual] = ACTIONS(1759), - [anon_sym_explicit] = ACTIONS(1759), - [sym_auto] = ACTIONS(1759), - [anon_sym_typename] = ACTIONS(1759), - [anon_sym_template] = ACTIONS(1759), - [anon_sym_operator] = ACTIONS(1759), - [anon_sym_delete] = ACTIONS(1759), - [anon_sym_throw] = ACTIONS(1759), - [anon_sym_namespace] = ACTIONS(1759), - [anon_sym_using] = ACTIONS(1759), - [anon_sym_static_assert] = ACTIONS(1759), - [anon_sym_co_return] = ACTIONS(1759), - [anon_sym_co_yield] = ACTIONS(1759), - [anon_sym_try] = ACTIONS(1759), - [anon_sym_co_await] = ACTIONS(1759), - [anon_sym_new] = ACTIONS(1759), - [sym_this] = ACTIONS(1759), - [sym_nullptr] = ACTIONS(1759), - [sym_alone_macro] = ACTIONS(1761), - [aux_sym_alone_macro_call_token1] = ACTIONS(1759), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1759), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_FORWARD] = ACTIONS(1759), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1759), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1759), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1759), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1759), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_PS_GET] = ACTIONS(1759), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1759), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1759), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1759), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1759), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1759), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1759), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1759), - [anon_sym_MOZ_COLD] = ACTIONS(1759), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1759), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1759), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1759), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1759), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1759), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1759), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1759), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1759), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1759), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1759), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1759), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1759), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1759), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_NONNULL] = ACTIONS(1759), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1759), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1759), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1759), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1759), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1759), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1759), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1759), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1759), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1759), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1759), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1759), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1759), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1759), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1759), - [anon_sym_MOZ_RAII] = ACTIONS(1759), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1759), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1759), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1759), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1759), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1759), - [sym_raw_string_literal] = ACTIONS(1761), - }, - [211] = { - [sym_identifier] = ACTIONS(1763), - [aux_sym_preproc_include_token1] = ACTIONS(1763), - [aux_sym_preproc_def_token1] = ACTIONS(1763), - [aux_sym_preproc_if_token1] = ACTIONS(1763), - [aux_sym_preproc_if_token2] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), - [aux_sym_preproc_else_token1] = ACTIONS(1763), - [aux_sym_preproc_elif_token1] = ACTIONS(1763), - [sym_preproc_directive] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(1765), - [anon_sym_BANG] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_typedef] = ACTIONS(1763), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym___attribute__] = ACTIONS(1763), - [anon_sym_COLON_COLON] = ACTIONS(1765), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1765), - [anon_sym___declspec] = ACTIONS(1763), - [anon_sym___based] = ACTIONS(1763), - [anon_sym___cdecl] = ACTIONS(1763), - [anon_sym___clrcall] = ACTIONS(1763), - [anon_sym___stdcall] = ACTIONS(1763), - [anon_sym___fastcall] = ACTIONS(1763), - [anon_sym___thiscall] = ACTIONS(1763), - [anon_sym___vectorcall] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_inline] = ACTIONS(1763), - [anon_sym_thread_local] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym_mutable] = ACTIONS(1763), - [anon_sym_constexpr] = ACTIONS(1763), - [anon_sym_signed] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [sym_primitive_type] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [anon_sym_class] = ACTIONS(1763), - [anon_sym_struct] = ACTIONS(1763), - [anon_sym_union] = ACTIONS(1763), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_switch] = ACTIONS(1763), - [anon_sym_case] = ACTIONS(1763), - [anon_sym_default] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_goto] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_sizeof] = ACTIONS(1763), - [sym_number_literal] = ACTIONS(1765), - [anon_sym_L_SQUOTE] = ACTIONS(1765), - [anon_sym_u_SQUOTE] = ACTIONS(1765), - [anon_sym_U_SQUOTE] = ACTIONS(1765), - [anon_sym_u8_SQUOTE] = ACTIONS(1765), - [anon_sym_SQUOTE] = ACTIONS(1765), - [anon_sym_L_DQUOTE] = ACTIONS(1765), - [anon_sym_u_DQUOTE] = ACTIONS(1765), - [anon_sym_U_DQUOTE] = ACTIONS(1765), - [anon_sym_u8_DQUOTE] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym_true] = ACTIONS(1763), - [sym_false] = ACTIONS(1763), - [sym_null] = ACTIONS(1763), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1763), - [anon_sym_virtual] = ACTIONS(1763), - [anon_sym_explicit] = ACTIONS(1763), - [sym_auto] = ACTIONS(1763), - [anon_sym_typename] = ACTIONS(1763), - [anon_sym_template] = ACTIONS(1763), - [anon_sym_operator] = ACTIONS(1763), - [anon_sym_delete] = ACTIONS(1763), - [anon_sym_throw] = ACTIONS(1763), - [anon_sym_namespace] = ACTIONS(1763), - [anon_sym_using] = ACTIONS(1763), - [anon_sym_static_assert] = ACTIONS(1763), - [anon_sym_co_return] = ACTIONS(1763), - [anon_sym_co_yield] = ACTIONS(1763), - [anon_sym_try] = ACTIONS(1763), - [anon_sym_co_await] = ACTIONS(1763), - [anon_sym_new] = ACTIONS(1763), - [sym_this] = ACTIONS(1763), - [sym_nullptr] = ACTIONS(1763), - [sym_alone_macro] = ACTIONS(1765), - [aux_sym_alone_macro_call_token1] = ACTIONS(1763), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1763), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_FORWARD] = ACTIONS(1763), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1763), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1763), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1763), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1763), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_PS_GET] = ACTIONS(1763), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1763), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1763), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1763), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1763), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1763), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1763), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1763), - [anon_sym_MOZ_COLD] = ACTIONS(1763), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1763), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1763), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1763), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1763), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1763), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1763), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1763), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1763), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1763), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1763), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1763), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1763), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1763), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_NONNULL] = ACTIONS(1763), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1763), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1763), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1763), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1763), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1763), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1763), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1763), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1763), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1763), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1763), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1763), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1763), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1763), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1763), - [anon_sym_MOZ_RAII] = ACTIONS(1763), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1763), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1763), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1763), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1763), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1763), - [sym_raw_string_literal] = ACTIONS(1765), - }, - [212] = { - [sym_identifier] = ACTIONS(1767), - [aux_sym_preproc_include_token1] = ACTIONS(1767), - [aux_sym_preproc_def_token1] = ACTIONS(1767), - [aux_sym_preproc_if_token1] = ACTIONS(1767), - [aux_sym_preproc_if_token2] = ACTIONS(1767), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1767), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1767), - [aux_sym_preproc_else_token1] = ACTIONS(1767), - [aux_sym_preproc_elif_token1] = ACTIONS(1767), - [sym_preproc_directive] = ACTIONS(1767), - [anon_sym_LPAREN2] = ACTIONS(1769), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1767), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1769), - [anon_sym_AMP_AMP] = ACTIONS(1769), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_typedef] = ACTIONS(1767), - [anon_sym_extern] = ACTIONS(1767), - [anon_sym___attribute__] = ACTIONS(1767), - [anon_sym_COLON_COLON] = ACTIONS(1769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1769), - [anon_sym___declspec] = ACTIONS(1767), - [anon_sym___based] = ACTIONS(1767), - [anon_sym___cdecl] = ACTIONS(1767), - [anon_sym___clrcall] = ACTIONS(1767), - [anon_sym___stdcall] = ACTIONS(1767), - [anon_sym___fastcall] = ACTIONS(1767), - [anon_sym___thiscall] = ACTIONS(1767), - [anon_sym___vectorcall] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_static] = ACTIONS(1767), - [anon_sym_register] = ACTIONS(1767), - [anon_sym_inline] = ACTIONS(1767), - [anon_sym_thread_local] = ACTIONS(1767), - [anon_sym_const] = ACTIONS(1767), - [anon_sym_volatile] = ACTIONS(1767), - [anon_sym_restrict] = ACTIONS(1767), - [anon_sym__Atomic] = ACTIONS(1767), - [anon_sym_mutable] = ACTIONS(1767), - [anon_sym_constexpr] = ACTIONS(1767), - [anon_sym_signed] = ACTIONS(1767), - [anon_sym_unsigned] = ACTIONS(1767), - [anon_sym_long] = ACTIONS(1767), - [anon_sym_short] = ACTIONS(1767), - [sym_primitive_type] = ACTIONS(1767), - [anon_sym_enum] = ACTIONS(1767), - [anon_sym_class] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1767), - [anon_sym_union] = ACTIONS(1767), - [anon_sym_if] = ACTIONS(1767), - [anon_sym_switch] = ACTIONS(1767), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1767), - [anon_sym_while] = ACTIONS(1767), - [anon_sym_do] = ACTIONS(1767), - [anon_sym_for] = ACTIONS(1767), - [anon_sym_return] = ACTIONS(1767), - [anon_sym_break] = ACTIONS(1767), - [anon_sym_continue] = ACTIONS(1767), - [anon_sym_goto] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_sizeof] = ACTIONS(1767), - [sym_number_literal] = ACTIONS(1769), - [anon_sym_L_SQUOTE] = ACTIONS(1769), - [anon_sym_u_SQUOTE] = ACTIONS(1769), - [anon_sym_U_SQUOTE] = ACTIONS(1769), - [anon_sym_u8_SQUOTE] = ACTIONS(1769), - [anon_sym_SQUOTE] = ACTIONS(1769), - [anon_sym_L_DQUOTE] = ACTIONS(1769), - [anon_sym_u_DQUOTE] = ACTIONS(1769), - [anon_sym_U_DQUOTE] = ACTIONS(1769), - [anon_sym_u8_DQUOTE] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [sym_true] = ACTIONS(1767), - [sym_false] = ACTIONS(1767), - [sym_null] = ACTIONS(1767), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1767), - [anon_sym_virtual] = ACTIONS(1767), - [anon_sym_explicit] = ACTIONS(1767), - [sym_auto] = ACTIONS(1767), - [anon_sym_typename] = ACTIONS(1767), - [anon_sym_template] = ACTIONS(1767), - [anon_sym_operator] = ACTIONS(1767), - [anon_sym_delete] = ACTIONS(1767), - [anon_sym_throw] = ACTIONS(1767), - [anon_sym_namespace] = ACTIONS(1767), - [anon_sym_using] = ACTIONS(1767), - [anon_sym_static_assert] = ACTIONS(1767), - [anon_sym_co_return] = ACTIONS(1767), - [anon_sym_co_yield] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1767), - [anon_sym_co_await] = ACTIONS(1767), - [anon_sym_new] = ACTIONS(1767), - [sym_this] = ACTIONS(1767), - [sym_nullptr] = ACTIONS(1767), - [sym_alone_macro] = ACTIONS(1769), - [aux_sym_alone_macro_call_token1] = ACTIONS(1767), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1767), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_FORWARD] = ACTIONS(1767), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1767), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1767), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1767), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1767), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_PS_GET] = ACTIONS(1767), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1767), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1767), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1767), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1767), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1767), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1767), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1767), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1767), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1767), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1767), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1767), - [anon_sym_MOZ_COLD] = ACTIONS(1767), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1767), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1767), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1767), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1767), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1767), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1767), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1767), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1767), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1767), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1767), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1767), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1767), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1767), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1767), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1767), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1767), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1767), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1767), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1767), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1767), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_NONNULL] = ACTIONS(1767), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1767), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1767), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1767), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1767), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1767), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_NORETURN] = ACTIONS(1767), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1767), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1767), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1767), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1767), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1767), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1767), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1767), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1767), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1767), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1767), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1767), - [anon_sym_MOZ_RAII] = ACTIONS(1767), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1767), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1767), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1767), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1767), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1767), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1767), - [sym_raw_string_literal] = ACTIONS(1769), - }, - [213] = { - [sym_identifier] = ACTIONS(1771), - [aux_sym_preproc_include_token1] = ACTIONS(1771), - [aux_sym_preproc_def_token1] = ACTIONS(1771), - [aux_sym_preproc_if_token1] = ACTIONS(1771), - [aux_sym_preproc_if_token2] = ACTIONS(1771), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1771), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1771), - [aux_sym_preproc_else_token1] = ACTIONS(1771), - [aux_sym_preproc_elif_token1] = ACTIONS(1771), - [sym_preproc_directive] = ACTIONS(1771), - [anon_sym_LPAREN2] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1773), - [anon_sym_AMP_AMP] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_typedef] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1771), - [anon_sym___attribute__] = ACTIONS(1771), - [anon_sym_COLON_COLON] = ACTIONS(1773), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1773), - [anon_sym___declspec] = ACTIONS(1771), - [anon_sym___based] = ACTIONS(1771), - [anon_sym___cdecl] = ACTIONS(1771), - [anon_sym___clrcall] = ACTIONS(1771), - [anon_sym___stdcall] = ACTIONS(1771), - [anon_sym___fastcall] = ACTIONS(1771), - [anon_sym___thiscall] = ACTIONS(1771), - [anon_sym___vectorcall] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_register] = ACTIONS(1771), - [anon_sym_inline] = ACTIONS(1771), - [anon_sym_thread_local] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [anon_sym_volatile] = ACTIONS(1771), - [anon_sym_restrict] = ACTIONS(1771), - [anon_sym__Atomic] = ACTIONS(1771), - [anon_sym_mutable] = ACTIONS(1771), - [anon_sym_constexpr] = ACTIONS(1771), - [anon_sym_signed] = ACTIONS(1771), - [anon_sym_unsigned] = ACTIONS(1771), - [anon_sym_long] = ACTIONS(1771), - [anon_sym_short] = ACTIONS(1771), - [sym_primitive_type] = ACTIONS(1771), - [anon_sym_enum] = ACTIONS(1771), - [anon_sym_class] = ACTIONS(1771), - [anon_sym_struct] = ACTIONS(1771), - [anon_sym_union] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_switch] = ACTIONS(1771), - [anon_sym_case] = ACTIONS(1771), - [anon_sym_default] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_goto] = ACTIONS(1771), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_sizeof] = ACTIONS(1771), - [sym_number_literal] = ACTIONS(1773), - [anon_sym_L_SQUOTE] = ACTIONS(1773), - [anon_sym_u_SQUOTE] = ACTIONS(1773), - [anon_sym_U_SQUOTE] = ACTIONS(1773), - [anon_sym_u8_SQUOTE] = ACTIONS(1773), - [anon_sym_SQUOTE] = ACTIONS(1773), - [anon_sym_L_DQUOTE] = ACTIONS(1773), - [anon_sym_u_DQUOTE] = ACTIONS(1773), - [anon_sym_U_DQUOTE] = ACTIONS(1773), - [anon_sym_u8_DQUOTE] = ACTIONS(1773), - [anon_sym_DQUOTE] = ACTIONS(1773), - [sym_true] = ACTIONS(1771), - [sym_false] = ACTIONS(1771), - [sym_null] = ACTIONS(1771), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1771), - [anon_sym_virtual] = ACTIONS(1771), - [anon_sym_explicit] = ACTIONS(1771), - [sym_auto] = ACTIONS(1771), - [anon_sym_typename] = ACTIONS(1771), - [anon_sym_template] = ACTIONS(1771), - [anon_sym_operator] = ACTIONS(1771), - [anon_sym_delete] = ACTIONS(1771), - [anon_sym_throw] = ACTIONS(1771), - [anon_sym_namespace] = ACTIONS(1771), - [anon_sym_using] = ACTIONS(1771), - [anon_sym_static_assert] = ACTIONS(1771), - [anon_sym_co_return] = ACTIONS(1771), - [anon_sym_co_yield] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_co_await] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1771), - [sym_this] = ACTIONS(1771), - [sym_nullptr] = ACTIONS(1771), - [sym_alone_macro] = ACTIONS(1773), - [aux_sym_alone_macro_call_token1] = ACTIONS(1771), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1771), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_FORWARD] = ACTIONS(1771), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1771), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1771), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1771), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1771), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_PS_GET] = ACTIONS(1771), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1771), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1771), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1771), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1771), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1771), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1771), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1771), - [anon_sym_MOZ_COLD] = ACTIONS(1771), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1771), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1771), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1771), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1771), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1771), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1771), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1771), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1771), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1771), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1771), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1771), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1771), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1771), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_NONNULL] = ACTIONS(1771), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1771), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1771), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1771), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1771), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1771), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1771), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1771), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1771), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1771), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1771), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1771), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1771), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1771), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1771), - [anon_sym_MOZ_RAII] = ACTIONS(1771), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1771), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1771), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1771), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1771), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1771), - [sym_raw_string_literal] = ACTIONS(1773), - }, - [214] = { - [ts_builtin_sym_end] = ACTIONS(1531), - [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_include_token1] = ACTIONS(1529), - [aux_sym_preproc_def_token1] = ACTIONS(1529), - [aux_sym_preproc_if_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), - [sym_preproc_directive] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym___attribute__] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1531), - [anon_sym___declspec] = ACTIONS(1529), - [anon_sym___based] = ACTIONS(1529), - [anon_sym___cdecl] = ACTIONS(1529), - [anon_sym___clrcall] = ACTIONS(1529), - [anon_sym___stdcall] = ACTIONS(1529), - [anon_sym___fastcall] = ACTIONS(1529), - [anon_sym___thiscall] = ACTIONS(1529), - [anon_sym___vectorcall] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [anon_sym_thread_local] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym__Atomic] = ACTIONS(1529), - [anon_sym_mutable] = ACTIONS(1529), - [anon_sym_constexpr] = ACTIONS(1529), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_class] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_else] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_case] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_goto] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_sizeof] = ACTIONS(1529), - [sym_number_literal] = ACTIONS(1531), - [anon_sym_L_SQUOTE] = ACTIONS(1531), - [anon_sym_u_SQUOTE] = ACTIONS(1531), - [anon_sym_U_SQUOTE] = ACTIONS(1531), - [anon_sym_u8_SQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1529), - [sym_false] = ACTIONS(1529), - [sym_null] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1529), - [anon_sym_virtual] = ACTIONS(1529), - [anon_sym_explicit] = ACTIONS(1529), - [sym_auto] = ACTIONS(1529), - [anon_sym_typename] = ACTIONS(1529), - [anon_sym_template] = ACTIONS(1529), - [anon_sym_operator] = ACTIONS(1529), - [anon_sym_delete] = ACTIONS(1529), - [anon_sym_throw] = ACTIONS(1529), - [anon_sym_namespace] = ACTIONS(1529), - [anon_sym_using] = ACTIONS(1529), - [anon_sym_static_assert] = ACTIONS(1529), - [anon_sym_co_return] = ACTIONS(1529), - [anon_sym_co_yield] = ACTIONS(1529), - [anon_sym_try] = ACTIONS(1529), - [anon_sym_catch] = ACTIONS(1529), - [anon_sym_co_await] = ACTIONS(1529), - [anon_sym_new] = ACTIONS(1529), - [sym_this] = ACTIONS(1529), - [sym_nullptr] = ACTIONS(1529), - [sym_alone_macro] = ACTIONS(1531), - [aux_sym_alone_macro_call_token1] = ACTIONS(1529), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_FORWARD] = ACTIONS(1529), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1529), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_PS_GET] = ACTIONS(1529), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1529), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1529), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1529), - [anon_sym_MOZ_COLD] = ACTIONS(1529), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1529), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1529), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1529), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1529), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1529), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1529), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1529), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1529), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1529), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1529), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1529), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1529), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_RAII] = ACTIONS(1529), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1529), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1529), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1529), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1529), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1529), - [sym_raw_string_literal] = ACTIONS(1531), - }, - [215] = { - [sym_identifier] = ACTIONS(1775), - [aux_sym_preproc_include_token1] = ACTIONS(1775), - [aux_sym_preproc_def_token1] = ACTIONS(1775), - [aux_sym_preproc_if_token1] = ACTIONS(1775), - [aux_sym_preproc_if_token2] = ACTIONS(1775), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1775), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1775), - [aux_sym_preproc_else_token1] = ACTIONS(1775), - [aux_sym_preproc_elif_token1] = ACTIONS(1775), - [sym_preproc_directive] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(1777), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_TILDE] = ACTIONS(1777), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_AMP_AMP] = ACTIONS(1777), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_SEMI] = ACTIONS(1777), - [anon_sym_typedef] = ACTIONS(1775), - [anon_sym_extern] = ACTIONS(1775), - [anon_sym___attribute__] = ACTIONS(1775), - [anon_sym_COLON_COLON] = ACTIONS(1777), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1777), - [anon_sym___declspec] = ACTIONS(1775), - [anon_sym___based] = ACTIONS(1775), - [anon_sym___cdecl] = ACTIONS(1775), - [anon_sym___clrcall] = ACTIONS(1775), - [anon_sym___stdcall] = ACTIONS(1775), - [anon_sym___fastcall] = ACTIONS(1775), - [anon_sym___thiscall] = ACTIONS(1775), - [anon_sym___vectorcall] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_LBRACK] = ACTIONS(1775), - [anon_sym_static] = ACTIONS(1775), - [anon_sym_register] = ACTIONS(1775), - [anon_sym_inline] = ACTIONS(1775), - [anon_sym_thread_local] = ACTIONS(1775), - [anon_sym_const] = ACTIONS(1775), - [anon_sym_volatile] = ACTIONS(1775), - [anon_sym_restrict] = ACTIONS(1775), - [anon_sym__Atomic] = ACTIONS(1775), - [anon_sym_mutable] = ACTIONS(1775), - [anon_sym_constexpr] = ACTIONS(1775), - [anon_sym_signed] = ACTIONS(1775), - [anon_sym_unsigned] = ACTIONS(1775), - [anon_sym_long] = ACTIONS(1775), - [anon_sym_short] = ACTIONS(1775), - [sym_primitive_type] = ACTIONS(1775), - [anon_sym_enum] = ACTIONS(1775), - [anon_sym_class] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1775), - [anon_sym_union] = ACTIONS(1775), - [anon_sym_if] = ACTIONS(1775), - [anon_sym_switch] = ACTIONS(1775), - [anon_sym_case] = ACTIONS(1775), - [anon_sym_default] = ACTIONS(1775), - [anon_sym_while] = ACTIONS(1775), - [anon_sym_do] = ACTIONS(1775), - [anon_sym_for] = ACTIONS(1775), - [anon_sym_return] = ACTIONS(1775), - [anon_sym_break] = ACTIONS(1775), - [anon_sym_continue] = ACTIONS(1775), - [anon_sym_goto] = ACTIONS(1775), - [anon_sym_DASH_DASH] = ACTIONS(1777), - [anon_sym_PLUS_PLUS] = ACTIONS(1777), - [anon_sym_sizeof] = ACTIONS(1775), - [sym_number_literal] = ACTIONS(1777), - [anon_sym_L_SQUOTE] = ACTIONS(1777), - [anon_sym_u_SQUOTE] = ACTIONS(1777), - [anon_sym_U_SQUOTE] = ACTIONS(1777), - [anon_sym_u8_SQUOTE] = ACTIONS(1777), - [anon_sym_SQUOTE] = ACTIONS(1777), - [anon_sym_L_DQUOTE] = ACTIONS(1777), - [anon_sym_u_DQUOTE] = ACTIONS(1777), - [anon_sym_U_DQUOTE] = ACTIONS(1777), - [anon_sym_u8_DQUOTE] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(1777), - [sym_true] = ACTIONS(1775), - [sym_false] = ACTIONS(1775), - [sym_null] = ACTIONS(1775), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1775), - [anon_sym_virtual] = ACTIONS(1775), - [anon_sym_explicit] = ACTIONS(1775), - [sym_auto] = ACTIONS(1775), - [anon_sym_typename] = ACTIONS(1775), - [anon_sym_template] = ACTIONS(1775), - [anon_sym_operator] = ACTIONS(1775), - [anon_sym_delete] = ACTIONS(1775), - [anon_sym_throw] = ACTIONS(1775), - [anon_sym_namespace] = ACTIONS(1775), - [anon_sym_using] = ACTIONS(1775), - [anon_sym_static_assert] = ACTIONS(1775), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1757), + [anon_sym_goto] = ACTIONS(1760), + [anon_sym___try] = ACTIONS(1763), + [anon_sym___leave] = ACTIONS(1766), + [anon_sym_not] = ACTIONS(1284), + [anon_sym_compl] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1385), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym___alignof__] = ACTIONS(1391), + [anon_sym___alignof] = ACTIONS(1391), + [anon_sym__alignof] = ACTIONS(1391), + [anon_sym_alignof] = ACTIONS(1391), + [anon_sym__Alignof] = ACTIONS(1391), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1397), + [anon_sym_asm] = ACTIONS(1400), + [anon_sym___asm__] = ACTIONS(1400), + [anon_sym___asm] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1403), + [anon_sym_L_SQUOTE] = ACTIONS(1406), + [anon_sym_u_SQUOTE] = ACTIONS(1406), + [anon_sym_U_SQUOTE] = ACTIONS(1406), + [anon_sym_u8_SQUOTE] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_L_DQUOTE] = ACTIONS(1409), + [anon_sym_u_DQUOTE] = ACTIONS(1409), + [anon_sym_U_DQUOTE] = ACTIONS(1409), + [anon_sym_u8_DQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [anon_sym_NULL] = ACTIONS(1415), + [anon_sym_nullptr] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1418), + [anon_sym_decltype] = ACTIONS(1421), + [anon_sym_typename] = ACTIONS(1424), + [anon_sym_template] = ACTIONS(1427), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_delete] = ACTIONS(1433), + [anon_sym_throw] = ACTIONS(1772), [anon_sym_co_return] = ACTIONS(1775), - [anon_sym_co_yield] = ACTIONS(1775), - [anon_sym_try] = ACTIONS(1775), - [anon_sym_co_await] = ACTIONS(1775), - [anon_sym_new] = ACTIONS(1775), - [sym_this] = ACTIONS(1775), - [sym_nullptr] = ACTIONS(1775), - [sym_alone_macro] = ACTIONS(1777), - [aux_sym_alone_macro_call_token1] = ACTIONS(1775), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1775), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_FORWARD] = ACTIONS(1775), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1775), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1775), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1775), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1775), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_PS_GET] = ACTIONS(1775), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1775), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1775), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1775), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1775), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1775), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1775), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1775), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1775), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1775), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1775), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1775), - [anon_sym_MOZ_COLD] = ACTIONS(1775), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1775), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1775), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1775), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1775), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1775), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1775), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1775), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1775), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1775), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1775), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1775), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1775), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1775), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1775), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1775), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1775), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1775), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1775), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1775), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1775), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_NONNULL] = ACTIONS(1775), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1775), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1775), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1775), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1775), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1775), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_NORETURN] = ACTIONS(1775), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1775), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1775), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1775), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1775), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1775), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1775), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1775), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1775), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1775), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1775), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1775), - [anon_sym_MOZ_RAII] = ACTIONS(1775), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1775), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1775), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1775), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1775), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1775), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1775), - [sym_raw_string_literal] = ACTIONS(1777), - }, - [216] = { - [sym_identifier] = ACTIONS(1779), - [aux_sym_preproc_include_token1] = ACTIONS(1779), - [aux_sym_preproc_def_token1] = ACTIONS(1779), - [aux_sym_preproc_if_token1] = ACTIONS(1779), - [aux_sym_preproc_if_token2] = ACTIONS(1779), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1779), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1779), - [aux_sym_preproc_else_token1] = ACTIONS(1779), - [aux_sym_preproc_elif_token1] = ACTIONS(1779), - [sym_preproc_directive] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP_AMP] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_typedef] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym___attribute__] = ACTIONS(1779), - [anon_sym_COLON_COLON] = ACTIONS(1781), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1781), - [anon_sym___declspec] = ACTIONS(1779), - [anon_sym___based] = ACTIONS(1779), - [anon_sym___cdecl] = ACTIONS(1779), - [anon_sym___clrcall] = ACTIONS(1779), - [anon_sym___stdcall] = ACTIONS(1779), - [anon_sym___fastcall] = ACTIONS(1779), - [anon_sym___thiscall] = ACTIONS(1779), - [anon_sym___vectorcall] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_inline] = ACTIONS(1779), - [anon_sym_thread_local] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [anon_sym_volatile] = ACTIONS(1779), - [anon_sym_restrict] = ACTIONS(1779), - [anon_sym__Atomic] = ACTIONS(1779), - [anon_sym_mutable] = ACTIONS(1779), - [anon_sym_constexpr] = ACTIONS(1779), - [anon_sym_signed] = ACTIONS(1779), - [anon_sym_unsigned] = ACTIONS(1779), - [anon_sym_long] = ACTIONS(1779), - [anon_sym_short] = ACTIONS(1779), - [sym_primitive_type] = ACTIONS(1779), - [anon_sym_enum] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(1779), - [anon_sym_struct] = ACTIONS(1779), - [anon_sym_union] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1779), - [anon_sym_default] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_goto] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_sizeof] = ACTIONS(1779), - [sym_number_literal] = ACTIONS(1781), - [anon_sym_L_SQUOTE] = ACTIONS(1781), - [anon_sym_u_SQUOTE] = ACTIONS(1781), - [anon_sym_U_SQUOTE] = ACTIONS(1781), - [anon_sym_u8_SQUOTE] = ACTIONS(1781), - [anon_sym_SQUOTE] = ACTIONS(1781), - [anon_sym_L_DQUOTE] = ACTIONS(1781), - [anon_sym_u_DQUOTE] = ACTIONS(1781), - [anon_sym_U_DQUOTE] = ACTIONS(1781), - [anon_sym_u8_DQUOTE] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym_true] = ACTIONS(1779), - [sym_false] = ACTIONS(1779), - [sym_null] = ACTIONS(1779), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1779), - [anon_sym_virtual] = ACTIONS(1779), - [anon_sym_explicit] = ACTIONS(1779), - [sym_auto] = ACTIONS(1779), - [anon_sym_typename] = ACTIONS(1779), - [anon_sym_template] = ACTIONS(1779), - [anon_sym_operator] = ACTIONS(1779), - [anon_sym_delete] = ACTIONS(1779), - [anon_sym_throw] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1779), - [anon_sym_using] = ACTIONS(1779), - [anon_sym_static_assert] = ACTIONS(1779), - [anon_sym_co_return] = ACTIONS(1779), - [anon_sym_co_yield] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_co_await] = ACTIONS(1779), - [anon_sym_new] = ACTIONS(1779), - [sym_this] = ACTIONS(1779), - [sym_nullptr] = ACTIONS(1779), - [sym_alone_macro] = ACTIONS(1781), - [aux_sym_alone_macro_call_token1] = ACTIONS(1779), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1779), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_FORWARD] = ACTIONS(1779), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1779), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1779), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1779), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1779), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_PS_GET] = ACTIONS(1779), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1779), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1779), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1779), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1779), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1779), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1779), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1779), - [anon_sym_MOZ_COLD] = ACTIONS(1779), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1779), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1779), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1779), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1779), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1779), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1779), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1779), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1779), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1779), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1779), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1779), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1779), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1779), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_NONNULL] = ACTIONS(1779), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1779), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1779), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1779), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1779), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1779), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1779), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1779), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1779), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1779), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1779), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1779), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1779), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1779), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1779), - [anon_sym_MOZ_RAII] = ACTIONS(1779), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1779), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1779), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1779), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1779), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1779), - [sym_raw_string_literal] = ACTIONS(1781), - }, - [217] = { - [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_include_token1] = ACTIONS(1529), - [aux_sym_preproc_def_token1] = ACTIONS(1529), - [aux_sym_preproc_if_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), - [sym_preproc_directive] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym___attribute__] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1531), - [anon_sym___declspec] = ACTIONS(1529), - [anon_sym___based] = ACTIONS(1529), - [anon_sym___cdecl] = ACTIONS(1529), - [anon_sym___clrcall] = ACTIONS(1529), - [anon_sym___stdcall] = ACTIONS(1529), - [anon_sym___fastcall] = ACTIONS(1529), - [anon_sym___thiscall] = ACTIONS(1529), - [anon_sym___vectorcall] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [anon_sym_thread_local] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym__Atomic] = ACTIONS(1529), - [anon_sym_mutable] = ACTIONS(1529), - [anon_sym_constexpr] = ACTIONS(1529), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_class] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_else] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_case] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_goto] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_sizeof] = ACTIONS(1529), - [sym_number_literal] = ACTIONS(1531), - [anon_sym_L_SQUOTE] = ACTIONS(1531), - [anon_sym_u_SQUOTE] = ACTIONS(1531), - [anon_sym_U_SQUOTE] = ACTIONS(1531), - [anon_sym_u8_SQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1529), - [sym_false] = ACTIONS(1529), - [sym_null] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1529), - [anon_sym_virtual] = ACTIONS(1529), - [anon_sym_explicit] = ACTIONS(1529), - [sym_auto] = ACTIONS(1529), - [anon_sym_typename] = ACTIONS(1529), - [anon_sym_template] = ACTIONS(1529), - [anon_sym_operator] = ACTIONS(1529), - [anon_sym_delete] = ACTIONS(1529), - [anon_sym_throw] = ACTIONS(1529), - [anon_sym_namespace] = ACTIONS(1529), - [anon_sym_using] = ACTIONS(1529), - [anon_sym_static_assert] = ACTIONS(1529), - [anon_sym_co_return] = ACTIONS(1529), - [anon_sym_co_yield] = ACTIONS(1529), - [anon_sym_try] = ACTIONS(1529), - [anon_sym_catch] = ACTIONS(1529), - [anon_sym_co_await] = ACTIONS(1529), - [anon_sym_new] = ACTIONS(1529), - [sym_this] = ACTIONS(1529), - [sym_nullptr] = ACTIONS(1529), - [sym_alone_macro] = ACTIONS(1531), - [aux_sym_alone_macro_call_token1] = ACTIONS(1529), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_FORWARD] = ACTIONS(1529), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1529), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_PS_GET] = ACTIONS(1529), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1529), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1529), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1529), - [anon_sym_MOZ_COLD] = ACTIONS(1529), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1529), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1529), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1529), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1529), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1529), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1529), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1529), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1529), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1529), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1529), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1529), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1529), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_RAII] = ACTIONS(1529), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1529), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1529), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1529), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1529), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1529), - [sym_raw_string_literal] = ACTIONS(1531), - }, - [218] = { - [sym_identifier] = ACTIONS(1783), - [aux_sym_preproc_include_token1] = ACTIONS(1783), - [aux_sym_preproc_def_token1] = ACTIONS(1783), - [aux_sym_preproc_if_token1] = ACTIONS(1783), - [aux_sym_preproc_if_token2] = ACTIONS(1783), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1783), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1783), - [aux_sym_preproc_else_token1] = ACTIONS(1783), - [aux_sym_preproc_elif_token1] = ACTIONS(1783), - [sym_preproc_directive] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_BANG] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_typedef] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym___attribute__] = ACTIONS(1783), - [anon_sym_COLON_COLON] = ACTIONS(1785), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1785), - [anon_sym___declspec] = ACTIONS(1783), - [anon_sym___based] = ACTIONS(1783), - [anon_sym___cdecl] = ACTIONS(1783), - [anon_sym___clrcall] = ACTIONS(1783), - [anon_sym___stdcall] = ACTIONS(1783), - [anon_sym___fastcall] = ACTIONS(1783), - [anon_sym___thiscall] = ACTIONS(1783), - [anon_sym___vectorcall] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1783), - [anon_sym_static] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_inline] = ACTIONS(1783), - [anon_sym_thread_local] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [anon_sym_volatile] = ACTIONS(1783), - [anon_sym_restrict] = ACTIONS(1783), - [anon_sym__Atomic] = ACTIONS(1783), - [anon_sym_mutable] = ACTIONS(1783), - [anon_sym_constexpr] = ACTIONS(1783), - [anon_sym_signed] = ACTIONS(1783), - [anon_sym_unsigned] = ACTIONS(1783), - [anon_sym_long] = ACTIONS(1783), - [anon_sym_short] = ACTIONS(1783), - [sym_primitive_type] = ACTIONS(1783), - [anon_sym_enum] = ACTIONS(1783), - [anon_sym_class] = ACTIONS(1783), - [anon_sym_struct] = ACTIONS(1783), - [anon_sym_union] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_switch] = ACTIONS(1783), - [anon_sym_case] = ACTIONS(1783), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_goto] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1783), - [sym_number_literal] = ACTIONS(1785), - [anon_sym_L_SQUOTE] = ACTIONS(1785), - [anon_sym_u_SQUOTE] = ACTIONS(1785), - [anon_sym_U_SQUOTE] = ACTIONS(1785), - [anon_sym_u8_SQUOTE] = ACTIONS(1785), - [anon_sym_SQUOTE] = ACTIONS(1785), - [anon_sym_L_DQUOTE] = ACTIONS(1785), - [anon_sym_u_DQUOTE] = ACTIONS(1785), - [anon_sym_U_DQUOTE] = ACTIONS(1785), - [anon_sym_u8_DQUOTE] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym_true] = ACTIONS(1783), - [sym_false] = ACTIONS(1783), - [sym_null] = ACTIONS(1783), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1783), - [anon_sym_virtual] = ACTIONS(1783), - [anon_sym_explicit] = ACTIONS(1783), - [sym_auto] = ACTIONS(1783), - [anon_sym_typename] = ACTIONS(1783), - [anon_sym_template] = ACTIONS(1783), - [anon_sym_operator] = ACTIONS(1783), - [anon_sym_delete] = ACTIONS(1783), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_namespace] = ACTIONS(1783), - [anon_sym_using] = ACTIONS(1783), - [anon_sym_static_assert] = ACTIONS(1783), - [anon_sym_co_return] = ACTIONS(1783), - [anon_sym_co_yield] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_co_await] = ACTIONS(1783), - [anon_sym_new] = ACTIONS(1783), - [sym_this] = ACTIONS(1783), - [sym_nullptr] = ACTIONS(1783), - [sym_alone_macro] = ACTIONS(1785), - [aux_sym_alone_macro_call_token1] = ACTIONS(1783), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1783), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_FORWARD] = ACTIONS(1783), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1783), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1783), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1783), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1783), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_PS_GET] = ACTIONS(1783), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1783), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1783), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1783), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1783), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1783), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1783), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1783), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1783), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1783), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1783), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1783), - [anon_sym_MOZ_COLD] = ACTIONS(1783), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1783), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1783), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1783), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1783), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1783), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1783), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1783), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1783), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1783), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1783), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1783), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1783), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1783), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1783), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1783), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1783), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1783), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1783), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1783), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1783), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_NONNULL] = ACTIONS(1783), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1783), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1783), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1783), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1783), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1783), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_NORETURN] = ACTIONS(1783), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1783), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1783), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1783), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1783), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1783), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1783), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1783), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1783), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1783), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1783), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1783), - [anon_sym_MOZ_RAII] = ACTIONS(1783), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1783), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1783), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1783), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1783), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1783), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1783), - [sym_raw_string_literal] = ACTIONS(1785), - }, - [219] = { - [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_include_token1] = ACTIONS(1529), - [aux_sym_preproc_def_token1] = ACTIONS(1529), - [aux_sym_preproc_if_token1] = ACTIONS(1529), - [aux_sym_preproc_if_token2] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), - [sym_preproc_directive] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym___attribute__] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1531), - [anon_sym___declspec] = ACTIONS(1529), - [anon_sym___based] = ACTIONS(1529), - [anon_sym___cdecl] = ACTIONS(1529), - [anon_sym___clrcall] = ACTIONS(1529), - [anon_sym___stdcall] = ACTIONS(1529), - [anon_sym___fastcall] = ACTIONS(1529), - [anon_sym___thiscall] = ACTIONS(1529), - [anon_sym___vectorcall] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [anon_sym_thread_local] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym__Atomic] = ACTIONS(1529), - [anon_sym_mutable] = ACTIONS(1529), - [anon_sym_constexpr] = ACTIONS(1529), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_class] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_else] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_case] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_goto] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_sizeof] = ACTIONS(1529), - [sym_number_literal] = ACTIONS(1531), - [anon_sym_L_SQUOTE] = ACTIONS(1531), - [anon_sym_u_SQUOTE] = ACTIONS(1531), - [anon_sym_U_SQUOTE] = ACTIONS(1531), - [anon_sym_u8_SQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1529), - [sym_false] = ACTIONS(1529), - [sym_null] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1529), - [anon_sym_virtual] = ACTIONS(1529), - [anon_sym_explicit] = ACTIONS(1529), - [sym_auto] = ACTIONS(1529), - [anon_sym_typename] = ACTIONS(1529), - [anon_sym_template] = ACTIONS(1529), - [anon_sym_operator] = ACTIONS(1529), - [anon_sym_delete] = ACTIONS(1529), - [anon_sym_throw] = ACTIONS(1529), - [anon_sym_namespace] = ACTIONS(1529), - [anon_sym_using] = ACTIONS(1529), - [anon_sym_static_assert] = ACTIONS(1529), - [anon_sym_co_return] = ACTIONS(1529), - [anon_sym_co_yield] = ACTIONS(1529), - [anon_sym_try] = ACTIONS(1529), - [anon_sym_catch] = ACTIONS(1529), - [anon_sym_co_await] = ACTIONS(1529), - [anon_sym_new] = ACTIONS(1529), - [sym_this] = ACTIONS(1529), - [sym_nullptr] = ACTIONS(1529), - [sym_alone_macro] = ACTIONS(1531), - [aux_sym_alone_macro_call_token1] = ACTIONS(1529), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_FORWARD] = ACTIONS(1529), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1529), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_PS_GET] = ACTIONS(1529), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1529), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1529), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1529), - [anon_sym_MOZ_COLD] = ACTIONS(1529), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1529), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1529), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1529), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1529), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1529), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1529), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1529), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1529), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1529), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1529), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1529), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1529), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_RAII] = ACTIONS(1529), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1529), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1529), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1529), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1529), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1529), - [sym_raw_string_literal] = ACTIONS(1531), - }, - [220] = { - [sym_identifier] = ACTIONS(1518), - [aux_sym_preproc_include_token1] = ACTIONS(1518), - [aux_sym_preproc_def_token1] = ACTIONS(1518), - [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(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_typedef] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym___attribute__] = ACTIONS(1518), - [anon_sym_COLON_COLON] = ACTIONS(1520), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), - [anon_sym___declspec] = ACTIONS(1518), - [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(1520), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_inline] = ACTIONS(1518), - [anon_sym_thread_local] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_volatile] = ACTIONS(1518), - [anon_sym_restrict] = ACTIONS(1518), - [anon_sym__Atomic] = ACTIONS(1518), - [anon_sym_mutable] = ACTIONS(1518), - [anon_sym_constexpr] = ACTIONS(1518), - [anon_sym_signed] = ACTIONS(1518), - [anon_sym_unsigned] = ACTIONS(1518), - [anon_sym_long] = ACTIONS(1518), - [anon_sym_short] = ACTIONS(1518), - [sym_primitive_type] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_goto] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_PLUS_PLUS] = ACTIONS(1520), - [anon_sym_sizeof] = ACTIONS(1518), - [sym_number_literal] = ACTIONS(1520), - [anon_sym_L_SQUOTE] = ACTIONS(1520), - [anon_sym_u_SQUOTE] = ACTIONS(1520), - [anon_sym_U_SQUOTE] = ACTIONS(1520), - [anon_sym_u8_SQUOTE] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1520), - [anon_sym_L_DQUOTE] = ACTIONS(1520), - [anon_sym_u_DQUOTE] = ACTIONS(1520), - [anon_sym_U_DQUOTE] = ACTIONS(1520), - [anon_sym_u8_DQUOTE] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), - [sym_null] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1518), - [anon_sym_virtual] = ACTIONS(1518), - [anon_sym_explicit] = ACTIONS(1518), - [sym_auto] = ACTIONS(1518), - [anon_sym_typename] = ACTIONS(1518), - [anon_sym_template] = ACTIONS(1518), - [anon_sym_operator] = ACTIONS(1518), - [anon_sym_delete] = ACTIONS(1518), - [anon_sym_throw] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1518), - [anon_sym_static_assert] = ACTIONS(1518), - [anon_sym_co_return] = ACTIONS(1518), - [anon_sym_co_yield] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_co_await] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [sym_this] = ACTIONS(1518), - [sym_nullptr] = ACTIONS(1518), - [sym_alone_macro] = ACTIONS(1520), - [aux_sym_alone_macro_call_token1] = ACTIONS(1518), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_FORWARD] = ACTIONS(1518), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1518), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_PS_GET] = ACTIONS(1518), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1518), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1518), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1518), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1518), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1518), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1518), - [anon_sym_MOZ_COLD] = ACTIONS(1518), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1518), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1518), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1518), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1518), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1518), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1518), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1518), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1518), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1518), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1518), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1518), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1518), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1518), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_NONNULL] = ACTIONS(1518), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1518), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1518), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1518), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1518), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1518), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1518), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1518), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1518), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1518), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1518), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1518), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1518), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1518), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1518), - [anon_sym_MOZ_RAII] = ACTIONS(1518), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1518), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1518), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1518), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1518), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1518), - [sym_raw_string_literal] = ACTIONS(1520), - }, - [221] = { - [sym_identifier] = ACTIONS(1787), - [aux_sym_preproc_include_token1] = ACTIONS(1787), - [aux_sym_preproc_def_token1] = ACTIONS(1787), - [aux_sym_preproc_if_token1] = ACTIONS(1787), - [aux_sym_preproc_if_token2] = ACTIONS(1787), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1787), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1787), - [aux_sym_preproc_else_token1] = ACTIONS(1787), - [aux_sym_preproc_elif_token1] = ACTIONS(1787), - [sym_preproc_directive] = ACTIONS(1787), - [anon_sym_LPAREN2] = ACTIONS(1789), - [anon_sym_BANG] = ACTIONS(1789), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_AMP_AMP] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_co_yield] = ACTIONS(1778), + [anon_sym_R_DQUOTE] = ACTIONS(1445), + [anon_sym_LR_DQUOTE] = ACTIONS(1445), + [anon_sym_uR_DQUOTE] = ACTIONS(1445), + [anon_sym_UR_DQUOTE] = ACTIONS(1445), + [anon_sym_u8R_DQUOTE] = ACTIONS(1445), + [anon_sym_co_await] = ACTIONS(1448), + [anon_sym_new] = ACTIONS(1451), + [anon_sym_requires] = ACTIONS(1454), + [sym_this] = ACTIONS(1412), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_FORWARD] = ACTIONS(1457), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1457), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_PS_GET] = ACTIONS(1457), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1457), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1457), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1457), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1457), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1460), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1460), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1460), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1460), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1460), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1460), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1460), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1460), + [anon_sym_MOZ_COLD] = ACTIONS(1460), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1460), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1460), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1460), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1460), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1460), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1460), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1460), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1460), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1460), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1460), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1460), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1460), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1460), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1460), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1460), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1460), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1460), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1460), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1460), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1460), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1460), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_NONNULL] = ACTIONS(1460), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1460), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1460), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1460), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1460), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1460), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_NORETURN] = ACTIONS(1460), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1460), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1460), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1460), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1460), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1460), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1460), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1460), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1460), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1460), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1460), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1460), + [anon_sym_MOZ_RAII] = ACTIONS(1460), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1460), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1460), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1460), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1460), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1460), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1460), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1460), + }, + [STATE(110)] = { + [sym_declaration] = STATE(338), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5473), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(383), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(383), + [sym_statement] = STATE(338), + [sym_labeled_statement] = STATE(383), + [sym_expression_statement] = STATE(383), + [sym_if_statement] = STATE(383), + [sym_switch_statement] = STATE(383), + [sym_case_statement] = STATE(383), + [sym_while_statement] = STATE(383), + [sym_do_statement] = STATE(383), + [sym_for_statement] = STATE(383), + [sym_return_statement] = STATE(383), + [sym_break_statement] = STATE(383), + [sym_continue_statement] = STATE(383), + [sym_goto_statement] = STATE(383), + [sym_seh_try_statement] = STATE(383), + [sym_seh_leave_statement] = STATE(383), + [sym_expression] = STATE(4855), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8847), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(383), + [sym_co_return_statement] = STATE(383), + [sym_co_yield_statement] = STATE(383), + [sym_throw_statement] = STATE(383), + [sym_try_statement] = STATE(383), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(845), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1537), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym___extension__] = ACTIONS(1665), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), + [anon_sym___try] = ACTIONS(676), + [anon_sym___leave] = ACTIONS(678), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(682), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(684), + [anon_sym_co_return] = ACTIONS(694), + [anon_sym_co_yield] = ACTIONS(696), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(111)] = { + [sym_declaration] = STATE(283), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5496), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(309), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(309), + [sym_statement] = STATE(283), + [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(4823), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8439), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [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(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(800), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1467), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym___extension__] = ACTIONS(1665), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [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(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(83), + [anon_sym_default] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1473), + [anon_sym___leave] = ACTIONS(1475), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(112)] = { + [sym_declaration] = STATE(166), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5518), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(151), + [sym_statement] = STATE(166), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1243), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(1665), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(113)] = { + [sym_declaration] = STATE(392), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5515), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(694), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_compound_statement] = STATE(388), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(392), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1601), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(1665), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(114)] = { + [sym_declaration] = STATE(170), + [sym_type_definition] = STATE(2239), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5472), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_expression_statement] = STATE(2239), + [sym__for_statement_body] = STATE(8741), + [sym_expression] = STATE(4818), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8738), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_alias_declaration] = STATE(2239), + [sym__for_range_loop_body] = STATE(8746), + [sym_init_statement] = STATE(1102), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1781), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym___extension__] = ACTIONS(1785), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_using] = ACTIONS(1791), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(115)] = { + [sym_declaration] = STATE(170), + [sym_type_definition] = STATE(2239), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5472), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_expression_statement] = STATE(2239), + [sym__for_statement_body] = STATE(8912), + [sym_expression] = STATE(4818), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8738), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_alias_declaration] = STATE(2239), + [sym__for_range_loop_body] = STATE(8591), + [sym_init_statement] = STATE(1102), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1781), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym___extension__] = ACTIONS(1785), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_using] = ACTIONS(1791), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(116)] = { + [sym_declaration] = STATE(170), + [sym_type_definition] = STATE(2239), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5472), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_expression_statement] = STATE(2239), + [sym__for_statement_body] = STATE(8446), + [sym_expression] = STATE(4818), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8738), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_alias_declaration] = STATE(2239), + [sym__for_range_loop_body] = STATE(8451), + [sym_init_statement] = STATE(1102), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1781), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym___extension__] = ACTIONS(1785), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_using] = ACTIONS(1791), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(117)] = { + [sym_declaration] = STATE(170), + [sym_type_definition] = STATE(2239), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5472), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_expression_statement] = STATE(2239), + [sym__for_statement_body] = STATE(9173), + [sym_expression] = STATE(4818), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8738), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_alias_declaration] = STATE(2239), + [sym__for_range_loop_body] = STATE(9176), + [sym_init_statement] = STATE(1102), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1781), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym___extension__] = ACTIONS(1785), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_using] = ACTIONS(1791), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(118)] = { + [sym_declaration] = STATE(170), + [sym_type_definition] = STATE(2239), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5472), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_expression_statement] = STATE(2239), + [sym__for_statement_body] = STATE(8673), + [sym_expression] = STATE(4818), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8738), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_alias_declaration] = STATE(2239), + [sym__for_range_loop_body] = STATE(9172), + [sym_init_statement] = STATE(1102), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1781), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym___extension__] = ACTIONS(1785), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_using] = ACTIONS(1791), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(119)] = { + [sym_declaration] = STATE(170), + [sym_type_definition] = STATE(2239), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5472), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_expression_statement] = STATE(2239), + [sym__for_statement_body] = STATE(8500), + [sym_expression] = STATE(4818), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8738), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_alias_declaration] = STATE(2239), + [sym__for_range_loop_body] = STATE(8501), + [sym_init_statement] = STATE(1102), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1781), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym___extension__] = ACTIONS(1785), [anon_sym_typedef] = ACTIONS(1787), - [anon_sym_extern] = ACTIONS(1787), - [anon_sym___attribute__] = ACTIONS(1787), - [anon_sym_COLON_COLON] = ACTIONS(1789), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), - [anon_sym___declspec] = ACTIONS(1787), - [anon_sym___based] = ACTIONS(1787), - [anon_sym___cdecl] = ACTIONS(1787), - [anon_sym___clrcall] = ACTIONS(1787), - [anon_sym___stdcall] = ACTIONS(1787), - [anon_sym___fastcall] = ACTIONS(1787), - [anon_sym___thiscall] = ACTIONS(1787), - [anon_sym___vectorcall] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_static] = ACTIONS(1787), - [anon_sym_register] = ACTIONS(1787), - [anon_sym_inline] = ACTIONS(1787), - [anon_sym_thread_local] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_volatile] = ACTIONS(1787), - [anon_sym_restrict] = ACTIONS(1787), - [anon_sym__Atomic] = ACTIONS(1787), - [anon_sym_mutable] = ACTIONS(1787), - [anon_sym_constexpr] = ACTIONS(1787), - [anon_sym_signed] = ACTIONS(1787), - [anon_sym_unsigned] = ACTIONS(1787), - [anon_sym_long] = ACTIONS(1787), - [anon_sym_short] = ACTIONS(1787), - [sym_primitive_type] = ACTIONS(1787), - [anon_sym_enum] = ACTIONS(1787), - [anon_sym_class] = ACTIONS(1787), - [anon_sym_struct] = ACTIONS(1787), - [anon_sym_union] = ACTIONS(1787), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_switch] = ACTIONS(1787), - [anon_sym_case] = ACTIONS(1787), - [anon_sym_default] = ACTIONS(1787), - [anon_sym_while] = ACTIONS(1787), - [anon_sym_do] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_goto] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1787), - [sym_number_literal] = ACTIONS(1789), - [anon_sym_L_SQUOTE] = ACTIONS(1789), - [anon_sym_u_SQUOTE] = ACTIONS(1789), - [anon_sym_U_SQUOTE] = ACTIONS(1789), - [anon_sym_u8_SQUOTE] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [anon_sym_L_DQUOTE] = ACTIONS(1789), - [anon_sym_u_DQUOTE] = ACTIONS(1789), - [anon_sym_U_DQUOTE] = ACTIONS(1789), - [anon_sym_u8_DQUOTE] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [sym_true] = ACTIONS(1787), - [sym_false] = ACTIONS(1787), - [sym_null] = ACTIONS(1787), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1787), - [anon_sym_virtual] = ACTIONS(1787), - [anon_sym_explicit] = ACTIONS(1787), - [sym_auto] = ACTIONS(1787), - [anon_sym_typename] = ACTIONS(1787), - [anon_sym_template] = ACTIONS(1787), - [anon_sym_operator] = ACTIONS(1787), - [anon_sym_delete] = ACTIONS(1787), - [anon_sym_throw] = ACTIONS(1787), - [anon_sym_namespace] = ACTIONS(1787), - [anon_sym_using] = ACTIONS(1787), - [anon_sym_static_assert] = ACTIONS(1787), - [anon_sym_co_return] = ACTIONS(1787), - [anon_sym_co_yield] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1787), - [anon_sym_co_await] = ACTIONS(1787), - [anon_sym_new] = ACTIONS(1787), - [sym_this] = ACTIONS(1787), - [sym_nullptr] = ACTIONS(1787), - [sym_alone_macro] = ACTIONS(1789), - [aux_sym_alone_macro_call_token1] = ACTIONS(1787), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1787), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_FORWARD] = ACTIONS(1787), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1787), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1787), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1787), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1787), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_PS_GET] = ACTIONS(1787), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1787), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1787), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1787), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1787), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1787), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1787), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1787), - [anon_sym_MOZ_COLD] = ACTIONS(1787), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1787), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1787), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1787), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1787), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1787), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1787), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1787), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1787), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1787), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1787), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1787), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1787), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1787), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_NONNULL] = ACTIONS(1787), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1787), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1787), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1787), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1787), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1787), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1787), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1787), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1787), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1787), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1787), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1787), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1787), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1787), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1787), - [anon_sym_MOZ_RAII] = ACTIONS(1787), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1787), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1787), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1787), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1787), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1787), - [sym_raw_string_literal] = ACTIONS(1789), - }, - [222] = { - [sym_identifier] = ACTIONS(1791), - [aux_sym_preproc_include_token1] = ACTIONS(1791), - [aux_sym_preproc_def_token1] = ACTIONS(1791), - [aux_sym_preproc_if_token1] = ACTIONS(1791), - [aux_sym_preproc_if_token2] = ACTIONS(1791), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1791), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1791), - [aux_sym_preproc_else_token1] = ACTIONS(1791), - [aux_sym_preproc_elif_token1] = ACTIONS(1791), - [sym_preproc_directive] = ACTIONS(1791), - [anon_sym_LPAREN2] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1793), - [anon_sym_TILDE] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_AMP_AMP] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_SEMI] = ACTIONS(1793), - [anon_sym_typedef] = ACTIONS(1791), - [anon_sym_extern] = ACTIONS(1791), - [anon_sym___attribute__] = ACTIONS(1791), - [anon_sym_COLON_COLON] = ACTIONS(1793), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1793), - [anon_sym___declspec] = ACTIONS(1791), - [anon_sym___based] = ACTIONS(1791), - [anon_sym___cdecl] = ACTIONS(1791), - [anon_sym___clrcall] = ACTIONS(1791), - [anon_sym___stdcall] = ACTIONS(1791), - [anon_sym___fastcall] = ACTIONS(1791), - [anon_sym___thiscall] = ACTIONS(1791), - [anon_sym___vectorcall] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_LBRACK] = ACTIONS(1791), - [anon_sym_static] = ACTIONS(1791), - [anon_sym_register] = ACTIONS(1791), - [anon_sym_inline] = ACTIONS(1791), - [anon_sym_thread_local] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_volatile] = ACTIONS(1791), - [anon_sym_restrict] = ACTIONS(1791), - [anon_sym__Atomic] = ACTIONS(1791), - [anon_sym_mutable] = ACTIONS(1791), - [anon_sym_constexpr] = ACTIONS(1791), - [anon_sym_signed] = ACTIONS(1791), - [anon_sym_unsigned] = ACTIONS(1791), - [anon_sym_long] = ACTIONS(1791), - [anon_sym_short] = ACTIONS(1791), - [sym_primitive_type] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_class] = ACTIONS(1791), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_union] = ACTIONS(1791), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_switch] = ACTIONS(1791), - [anon_sym_case] = ACTIONS(1791), - [anon_sym_default] = ACTIONS(1791), - [anon_sym_while] = ACTIONS(1791), - [anon_sym_do] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_goto] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1793), - [anon_sym_PLUS_PLUS] = ACTIONS(1793), - [anon_sym_sizeof] = ACTIONS(1791), - [sym_number_literal] = ACTIONS(1793), - [anon_sym_L_SQUOTE] = ACTIONS(1793), - [anon_sym_u_SQUOTE] = ACTIONS(1793), - [anon_sym_U_SQUOTE] = ACTIONS(1793), - [anon_sym_u8_SQUOTE] = ACTIONS(1793), - [anon_sym_SQUOTE] = ACTIONS(1793), - [anon_sym_L_DQUOTE] = ACTIONS(1793), - [anon_sym_u_DQUOTE] = ACTIONS(1793), - [anon_sym_U_DQUOTE] = ACTIONS(1793), - [anon_sym_u8_DQUOTE] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1793), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_null] = ACTIONS(1791), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1791), - [anon_sym_virtual] = ACTIONS(1791), - [anon_sym_explicit] = ACTIONS(1791), - [sym_auto] = ACTIONS(1791), - [anon_sym_typename] = ACTIONS(1791), - [anon_sym_template] = ACTIONS(1791), - [anon_sym_operator] = ACTIONS(1791), - [anon_sym_delete] = ACTIONS(1791), - [anon_sym_throw] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1791), + [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(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), [anon_sym_using] = ACTIONS(1791), - [anon_sym_static_assert] = ACTIONS(1791), - [anon_sym_co_return] = ACTIONS(1791), - [anon_sym_co_yield] = ACTIONS(1791), - [anon_sym_try] = ACTIONS(1791), - [anon_sym_co_await] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1791), - [sym_this] = ACTIONS(1791), - [sym_nullptr] = ACTIONS(1791), - [sym_alone_macro] = ACTIONS(1793), - [aux_sym_alone_macro_call_token1] = ACTIONS(1791), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1791), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_FORWARD] = ACTIONS(1791), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1791), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1791), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1791), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1791), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_PS_GET] = ACTIONS(1791), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1791), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1791), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1791), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1791), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1791), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1791), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1791), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1791), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1791), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1791), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1791), - [anon_sym_MOZ_COLD] = ACTIONS(1791), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1791), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1791), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1791), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1791), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1791), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1791), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1791), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1791), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1791), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1791), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1791), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1791), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1791), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1791), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1791), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1791), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1791), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1791), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1791), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1791), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_NONNULL] = ACTIONS(1791), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1791), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1791), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1791), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1791), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1791), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_NORETURN] = ACTIONS(1791), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1791), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1791), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1791), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1791), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1791), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1791), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1791), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1791), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1791), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1791), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1791), - [anon_sym_MOZ_RAII] = ACTIONS(1791), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1791), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1791), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1791), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1791), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1791), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1791), - [sym_raw_string_literal] = ACTIONS(1793), - }, - [223] = { + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(120)] = { + [sym_declaration] = STATE(741), + [sym_type_definition] = STATE(741), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5527), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_expression_statement] = STATE(741), + [sym_expression] = STATE(4676), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8379), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_alias_declaration] = STATE(741), + [sym_init_statement] = STATE(129), + [sym_condition_declaration] = STATE(9192), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1781), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym___extension__] = ACTIONS(1707), + [anon_sym_typedef] = ACTIONS(1709), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_using] = ACTIONS(1793), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(121)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(7699), + [sym_expression] = STATE(3542), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8201), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(7699), + [sym_variadic_parameter_declaration] = STATE(7699), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym__unary_left_fold] = STATE(8934), + [sym__unary_right_fold] = STATE(8938), + [sym__binary_fold] = STATE(8482), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), [sym_identifier] = ACTIONS(1795), - [aux_sym_preproc_include_token1] = ACTIONS(1795), - [aux_sym_preproc_def_token1] = ACTIONS(1795), - [aux_sym_preproc_if_token1] = ACTIONS(1795), - [aux_sym_preproc_if_token2] = ACTIONS(1795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1795), - [aux_sym_preproc_else_token1] = ACTIONS(1795), - [aux_sym_preproc_elif_token1] = ACTIONS(1795), - [sym_preproc_directive] = ACTIONS(1795), - [anon_sym_LPAREN2] = ACTIONS(1797), - [anon_sym_BANG] = ACTIONS(1797), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1795), - [anon_sym_PLUS] = ACTIONS(1795), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_AMP_AMP] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1797), - [anon_sym_typedef] = ACTIONS(1795), - [anon_sym_extern] = ACTIONS(1795), - [anon_sym___attribute__] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1797), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1797), - [anon_sym___declspec] = ACTIONS(1795), - [anon_sym___based] = ACTIONS(1795), - [anon_sym___cdecl] = ACTIONS(1795), - [anon_sym___clrcall] = ACTIONS(1795), - [anon_sym___stdcall] = ACTIONS(1795), - [anon_sym___fastcall] = ACTIONS(1795), - [anon_sym___thiscall] = ACTIONS(1795), - [anon_sym___vectorcall] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_static] = ACTIONS(1795), - [anon_sym_register] = ACTIONS(1795), - [anon_sym_inline] = ACTIONS(1795), - [anon_sym_thread_local] = ACTIONS(1795), - [anon_sym_const] = ACTIONS(1795), - [anon_sym_volatile] = ACTIONS(1795), - [anon_sym_restrict] = ACTIONS(1795), - [anon_sym__Atomic] = ACTIONS(1795), - [anon_sym_mutable] = ACTIONS(1795), - [anon_sym_constexpr] = ACTIONS(1795), - [anon_sym_signed] = ACTIONS(1795), - [anon_sym_unsigned] = ACTIONS(1795), - [anon_sym_long] = ACTIONS(1795), - [anon_sym_short] = ACTIONS(1795), - [sym_primitive_type] = ACTIONS(1795), - [anon_sym_enum] = ACTIONS(1795), - [anon_sym_class] = ACTIONS(1795), - [anon_sym_struct] = ACTIONS(1795), - [anon_sym_union] = ACTIONS(1795), - [anon_sym_if] = ACTIONS(1795), - [anon_sym_switch] = ACTIONS(1795), - [anon_sym_case] = ACTIONS(1795), - [anon_sym_default] = ACTIONS(1795), - [anon_sym_while] = ACTIONS(1795), - [anon_sym_do] = ACTIONS(1795), - [anon_sym_for] = ACTIONS(1795), - [anon_sym_return] = ACTIONS(1795), - [anon_sym_break] = ACTIONS(1795), - [anon_sym_continue] = ACTIONS(1795), - [anon_sym_goto] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1797), - [anon_sym_PLUS_PLUS] = ACTIONS(1797), - [anon_sym_sizeof] = ACTIONS(1795), - [sym_number_literal] = ACTIONS(1797), - [anon_sym_L_SQUOTE] = ACTIONS(1797), - [anon_sym_u_SQUOTE] = ACTIONS(1797), - [anon_sym_U_SQUOTE] = ACTIONS(1797), - [anon_sym_u8_SQUOTE] = ACTIONS(1797), - [anon_sym_SQUOTE] = ACTIONS(1797), - [anon_sym_L_DQUOTE] = ACTIONS(1797), - [anon_sym_u_DQUOTE] = ACTIONS(1797), - [anon_sym_U_DQUOTE] = ACTIONS(1797), - [anon_sym_u8_DQUOTE] = ACTIONS(1797), - [anon_sym_DQUOTE] = ACTIONS(1797), - [sym_true] = ACTIONS(1795), - [sym_false] = ACTIONS(1795), - [sym_null] = ACTIONS(1795), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1795), - [anon_sym_virtual] = ACTIONS(1795), - [anon_sym_explicit] = ACTIONS(1795), - [sym_auto] = ACTIONS(1795), - [anon_sym_typename] = ACTIONS(1795), - [anon_sym_template] = ACTIONS(1795), - [anon_sym_operator] = ACTIONS(1795), - [anon_sym_delete] = ACTIONS(1795), - [anon_sym_throw] = ACTIONS(1795), - [anon_sym_namespace] = ACTIONS(1795), - [anon_sym_using] = ACTIONS(1795), - [anon_sym_static_assert] = ACTIONS(1795), - [anon_sym_co_return] = ACTIONS(1795), - [anon_sym_co_yield] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1795), - [anon_sym_co_await] = ACTIONS(1795), - [anon_sym_new] = ACTIONS(1795), - [sym_this] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(1795), - [sym_alone_macro] = ACTIONS(1797), - [aux_sym_alone_macro_call_token1] = ACTIONS(1795), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1795), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_FORWARD] = ACTIONS(1795), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1795), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1795), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1795), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1795), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_PS_GET] = ACTIONS(1795), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1795), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1795), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1795), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1795), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1795), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1795), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1795), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1795), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1795), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1795), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1795), - [anon_sym_MOZ_COLD] = ACTIONS(1795), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1795), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1795), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1795), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1795), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1795), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1795), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1795), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1795), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1795), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1795), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1795), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1795), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1795), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1795), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1795), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1795), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1795), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1795), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1795), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1795), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_NONNULL] = ACTIONS(1795), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1795), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1795), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1795), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1795), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1795), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_NORETURN] = ACTIONS(1795), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1795), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1795), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1795), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1795), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1795), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1795), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1795), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1795), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1795), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1795), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1795), - [anon_sym_MOZ_RAII] = ACTIONS(1795), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1795), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1795), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1795), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1795), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1795), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1795), - [sym_raw_string_literal] = ACTIONS(1797), - }, - [224] = { - [ts_builtin_sym_end] = ACTIONS(1516), - [sym_identifier] = ACTIONS(1514), - [aux_sym_preproc_include_token1] = ACTIONS(1514), - [aux_sym_preproc_def_token1] = ACTIONS(1514), - [aux_sym_preproc_if_token1] = ACTIONS(1514), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1514), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(1514), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym___attribute__] = ACTIONS(1514), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1516), - [anon_sym___declspec] = ACTIONS(1514), - [anon_sym___based] = ACTIONS(1514), - [anon_sym___cdecl] = ACTIONS(1514), - [anon_sym___clrcall] = ACTIONS(1514), - [anon_sym___stdcall] = ACTIONS(1514), - [anon_sym___fastcall] = ACTIONS(1514), - [anon_sym___thiscall] = ACTIONS(1514), - [anon_sym___vectorcall] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_register] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym_thread_local] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_volatile] = ACTIONS(1514), - [anon_sym_restrict] = ACTIONS(1514), - [anon_sym__Atomic] = ACTIONS(1514), - [anon_sym_mutable] = ACTIONS(1514), - [anon_sym_constexpr] = ACTIONS(1514), - [anon_sym_signed] = ACTIONS(1514), - [anon_sym_unsigned] = ACTIONS(1514), - [anon_sym_long] = ACTIONS(1514), - [anon_sym_short] = ACTIONS(1514), - [sym_primitive_type] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_class] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_else] = ACTIONS(1514), - [anon_sym_switch] = ACTIONS(1514), - [anon_sym_case] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_do] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_goto] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1514), - [sym_number_literal] = ACTIONS(1516), - [anon_sym_L_SQUOTE] = ACTIONS(1516), - [anon_sym_u_SQUOTE] = ACTIONS(1516), - [anon_sym_U_SQUOTE] = ACTIONS(1516), - [anon_sym_u8_SQUOTE] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1516), - [anon_sym_L_DQUOTE] = ACTIONS(1516), - [anon_sym_u_DQUOTE] = ACTIONS(1516), - [anon_sym_U_DQUOTE] = ACTIONS(1516), - [anon_sym_u8_DQUOTE] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [sym_null] = ACTIONS(1514), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1514), - [anon_sym_virtual] = ACTIONS(1514), - [anon_sym_explicit] = ACTIONS(1514), - [sym_auto] = ACTIONS(1514), - [anon_sym_typename] = ACTIONS(1514), - [anon_sym_template] = ACTIONS(1514), - [anon_sym_operator] = ACTIONS(1514), - [anon_sym_delete] = ACTIONS(1514), - [anon_sym_throw] = ACTIONS(1514), - [anon_sym_namespace] = ACTIONS(1514), - [anon_sym_using] = ACTIONS(1514), - [anon_sym_static_assert] = ACTIONS(1514), - [anon_sym_co_return] = ACTIONS(1514), - [anon_sym_co_yield] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [anon_sym_catch] = ACTIONS(1514), - [anon_sym_co_await] = ACTIONS(1514), - [anon_sym_new] = ACTIONS(1514), - [sym_this] = ACTIONS(1514), - [sym_nullptr] = ACTIONS(1514), - [sym_alone_macro] = ACTIONS(1516), - [aux_sym_alone_macro_call_token1] = ACTIONS(1514), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_FORWARD] = ACTIONS(1514), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1514), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_PS_GET] = ACTIONS(1514), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1514), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1514), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1514), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1514), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1514), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1514), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1514), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1514), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1514), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1514), - [anon_sym_MOZ_COLD] = ACTIONS(1514), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1514), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1514), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1514), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1514), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1514), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1514), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1514), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1514), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1514), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1514), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1514), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1514), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1514), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1514), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1514), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1514), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1514), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1514), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1514), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1514), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_NONNULL] = ACTIONS(1514), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1514), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1514), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1514), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1514), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1514), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_NORETURN] = ACTIONS(1514), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1514), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1514), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1514), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1514), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1514), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1514), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1514), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1514), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1514), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1514), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1514), - [anon_sym_MOZ_RAII] = ACTIONS(1514), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1514), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1514), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1514), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1514), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1514), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1514), - [sym_raw_string_literal] = ACTIONS(1516), - }, - [225] = { - [sym_identifier] = ACTIONS(1799), - [aux_sym_preproc_include_token1] = ACTIONS(1799), - [aux_sym_preproc_def_token1] = ACTIONS(1799), - [aux_sym_preproc_if_token1] = ACTIONS(1799), - [aux_sym_preproc_if_token2] = ACTIONS(1799), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1799), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1799), - [aux_sym_preproc_else_token1] = ACTIONS(1799), - [aux_sym_preproc_elif_token1] = ACTIONS(1799), - [sym_preproc_directive] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_RPAREN] = ACTIONS(1799), [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_typedef] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym___attribute__] = ACTIONS(1799), - [anon_sym_COLON_COLON] = ACTIONS(1801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1801), - [anon_sym___declspec] = ACTIONS(1799), - [anon_sym___based] = ACTIONS(1799), - [anon_sym___cdecl] = ACTIONS(1799), - [anon_sym___clrcall] = ACTIONS(1799), - [anon_sym___stdcall] = ACTIONS(1799), - [anon_sym___fastcall] = ACTIONS(1799), - [anon_sym___thiscall] = ACTIONS(1799), - [anon_sym___vectorcall] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_inline] = ACTIONS(1799), - [anon_sym_thread_local] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_volatile] = ACTIONS(1799), - [anon_sym_restrict] = ACTIONS(1799), - [anon_sym__Atomic] = ACTIONS(1799), - [anon_sym_mutable] = ACTIONS(1799), - [anon_sym_constexpr] = ACTIONS(1799), - [anon_sym_signed] = ACTIONS(1799), - [anon_sym_unsigned] = ACTIONS(1799), - [anon_sym_long] = ACTIONS(1799), - [anon_sym_short] = ACTIONS(1799), - [sym_primitive_type] = ACTIONS(1799), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_class] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1799), - [anon_sym_union] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_switch] = ACTIONS(1799), - [anon_sym_case] = ACTIONS(1799), - [anon_sym_default] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_goto] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1799), - [sym_number_literal] = ACTIONS(1801), - [anon_sym_L_SQUOTE] = ACTIONS(1801), - [anon_sym_u_SQUOTE] = ACTIONS(1801), - [anon_sym_U_SQUOTE] = ACTIONS(1801), - [anon_sym_u8_SQUOTE] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(1801), - [anon_sym_L_DQUOTE] = ACTIONS(1801), - [anon_sym_u_DQUOTE] = ACTIONS(1801), - [anon_sym_U_DQUOTE] = ACTIONS(1801), - [anon_sym_u8_DQUOTE] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym_true] = ACTIONS(1799), - [sym_false] = ACTIONS(1799), - [sym_null] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1799), - [anon_sym_virtual] = ACTIONS(1799), - [anon_sym_explicit] = ACTIONS(1799), - [sym_auto] = ACTIONS(1799), - [anon_sym_typename] = ACTIONS(1799), - [anon_sym_template] = ACTIONS(1799), - [anon_sym_operator] = ACTIONS(1799), - [anon_sym_delete] = ACTIONS(1799), - [anon_sym_throw] = ACTIONS(1799), - [anon_sym_namespace] = ACTIONS(1799), - [anon_sym_using] = ACTIONS(1799), - [anon_sym_static_assert] = ACTIONS(1799), - [anon_sym_co_return] = ACTIONS(1799), - [anon_sym_co_yield] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_co_await] = ACTIONS(1799), - [anon_sym_new] = ACTIONS(1799), - [sym_this] = ACTIONS(1799), - [sym_nullptr] = ACTIONS(1799), - [sym_alone_macro] = ACTIONS(1801), - [aux_sym_alone_macro_call_token1] = ACTIONS(1799), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1799), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_FORWARD] = ACTIONS(1799), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1799), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1799), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1799), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1799), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_PS_GET] = ACTIONS(1799), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1799), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1799), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1799), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1799), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1799), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1799), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1799), - [anon_sym_MOZ_COLD] = ACTIONS(1799), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1799), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1799), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1799), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1799), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1799), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1799), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1799), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1799), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1799), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1799), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1799), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1799), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1799), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_NONNULL] = ACTIONS(1799), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1799), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1799), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1799), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1799), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1799), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1799), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1799), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1799), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1799), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1799), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1799), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1799), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1799), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1799), - [anon_sym_MOZ_RAII] = ACTIONS(1799), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1799), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1799), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1799), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1799), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1799), - [sym_raw_string_literal] = ACTIONS(1801), - }, - [226] = { - [ts_builtin_sym_end] = ACTIONS(1520), - [sym_identifier] = ACTIONS(1518), - [aux_sym_preproc_include_token1] = ACTIONS(1518), - [aux_sym_preproc_def_token1] = ACTIONS(1518), - [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(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_typedef] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym___attribute__] = ACTIONS(1518), - [anon_sym_COLON_COLON] = ACTIONS(1520), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), - [anon_sym___declspec] = ACTIONS(1518), - [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(1520), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_inline] = ACTIONS(1518), - [anon_sym_thread_local] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_volatile] = ACTIONS(1518), - [anon_sym_restrict] = ACTIONS(1518), - [anon_sym__Atomic] = ACTIONS(1518), - [anon_sym_mutable] = ACTIONS(1518), - [anon_sym_constexpr] = ACTIONS(1518), - [anon_sym_signed] = ACTIONS(1518), - [anon_sym_unsigned] = ACTIONS(1518), - [anon_sym_long] = ACTIONS(1518), - [anon_sym_short] = ACTIONS(1518), - [sym_primitive_type] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_goto] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_PLUS_PLUS] = ACTIONS(1520), - [anon_sym_sizeof] = ACTIONS(1518), - [sym_number_literal] = ACTIONS(1520), - [anon_sym_L_SQUOTE] = ACTIONS(1520), - [anon_sym_u_SQUOTE] = ACTIONS(1520), - [anon_sym_U_SQUOTE] = ACTIONS(1520), - [anon_sym_u8_SQUOTE] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1520), - [anon_sym_L_DQUOTE] = ACTIONS(1520), - [anon_sym_u_DQUOTE] = ACTIONS(1520), - [anon_sym_U_DQUOTE] = ACTIONS(1520), - [anon_sym_u8_DQUOTE] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), - [sym_null] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1518), - [anon_sym_virtual] = ACTIONS(1518), - [anon_sym_explicit] = ACTIONS(1518), - [sym_auto] = ACTIONS(1518), - [anon_sym_typename] = ACTIONS(1518), - [anon_sym_template] = ACTIONS(1518), - [anon_sym_operator] = ACTIONS(1518), - [anon_sym_delete] = ACTIONS(1518), - [anon_sym_throw] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1518), - [anon_sym_static_assert] = ACTIONS(1518), - [anon_sym_co_return] = ACTIONS(1518), - [anon_sym_co_yield] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_co_await] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [sym_this] = ACTIONS(1518), - [sym_nullptr] = ACTIONS(1518), - [sym_alone_macro] = ACTIONS(1520), - [aux_sym_alone_macro_call_token1] = ACTIONS(1518), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_FORWARD] = ACTIONS(1518), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1518), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_PS_GET] = ACTIONS(1518), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1518), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1518), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1518), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1518), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1518), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1518), - [anon_sym_MOZ_COLD] = ACTIONS(1518), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1518), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1518), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1518), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1518), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1518), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1518), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1518), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1518), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1518), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1518), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1518), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1518), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1518), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_NONNULL] = ACTIONS(1518), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1518), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1518), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1518), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1518), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1518), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1518), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1518), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1518), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1518), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1518), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1518), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1518), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1518), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1518), - [anon_sym_MOZ_RAII] = ACTIONS(1518), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1518), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1518), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1518), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1518), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1518), - [sym_raw_string_literal] = ACTIONS(1520), - }, - [227] = { - [sym_identifier] = ACTIONS(1514), - [aux_sym_preproc_include_token1] = ACTIONS(1514), - [aux_sym_preproc_def_token1] = ACTIONS(1514), - [aux_sym_preproc_if_token1] = ACTIONS(1514), - [aux_sym_preproc_if_token2] = ACTIONS(1514), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1514), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(1514), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym___attribute__] = ACTIONS(1514), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1516), - [anon_sym___declspec] = ACTIONS(1514), - [anon_sym___based] = ACTIONS(1514), - [anon_sym___cdecl] = ACTIONS(1514), - [anon_sym___clrcall] = ACTIONS(1514), - [anon_sym___stdcall] = ACTIONS(1514), - [anon_sym___fastcall] = ACTIONS(1514), - [anon_sym___thiscall] = ACTIONS(1514), - [anon_sym___vectorcall] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_register] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym_thread_local] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_volatile] = ACTIONS(1514), - [anon_sym_restrict] = ACTIONS(1514), - [anon_sym__Atomic] = ACTIONS(1514), - [anon_sym_mutable] = ACTIONS(1514), - [anon_sym_constexpr] = ACTIONS(1514), - [anon_sym_signed] = ACTIONS(1514), - [anon_sym_unsigned] = ACTIONS(1514), - [anon_sym_long] = ACTIONS(1514), - [anon_sym_short] = ACTIONS(1514), - [sym_primitive_type] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_class] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_else] = ACTIONS(1514), - [anon_sym_switch] = ACTIONS(1514), - [anon_sym_case] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_do] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_goto] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1514), - [sym_number_literal] = ACTIONS(1516), - [anon_sym_L_SQUOTE] = ACTIONS(1516), - [anon_sym_u_SQUOTE] = ACTIONS(1516), - [anon_sym_U_SQUOTE] = ACTIONS(1516), - [anon_sym_u8_SQUOTE] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1516), - [anon_sym_L_DQUOTE] = ACTIONS(1516), - [anon_sym_u_DQUOTE] = ACTIONS(1516), - [anon_sym_U_DQUOTE] = ACTIONS(1516), - [anon_sym_u8_DQUOTE] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [sym_null] = ACTIONS(1514), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1514), - [anon_sym_virtual] = ACTIONS(1514), - [anon_sym_explicit] = ACTIONS(1514), - [sym_auto] = ACTIONS(1514), - [anon_sym_typename] = ACTIONS(1514), - [anon_sym_template] = ACTIONS(1514), - [anon_sym_operator] = ACTIONS(1514), - [anon_sym_delete] = ACTIONS(1514), - [anon_sym_throw] = ACTIONS(1514), - [anon_sym_namespace] = ACTIONS(1514), - [anon_sym_using] = ACTIONS(1514), - [anon_sym_static_assert] = ACTIONS(1514), - [anon_sym_co_return] = ACTIONS(1514), - [anon_sym_co_yield] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [anon_sym_catch] = ACTIONS(1514), - [anon_sym_co_await] = ACTIONS(1514), - [anon_sym_new] = ACTIONS(1514), - [sym_this] = ACTIONS(1514), - [sym_nullptr] = ACTIONS(1514), - [sym_alone_macro] = ACTIONS(1516), - [aux_sym_alone_macro_call_token1] = ACTIONS(1514), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_FORWARD] = ACTIONS(1514), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1514), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_PS_GET] = ACTIONS(1514), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1514), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1514), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1514), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1514), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1514), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1514), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1514), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1514), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1514), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1514), - [anon_sym_MOZ_COLD] = ACTIONS(1514), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1514), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1514), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1514), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1514), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1514), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1514), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1514), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1514), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1514), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1514), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1514), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1514), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1514), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1514), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1514), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1514), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1514), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1514), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1514), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1514), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_NONNULL] = ACTIONS(1514), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1514), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1514), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1514), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1514), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1514), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_NORETURN] = ACTIONS(1514), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1514), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1514), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1514), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1514), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1514), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1514), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1514), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1514), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1514), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1514), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1514), - [anon_sym_MOZ_RAII] = ACTIONS(1514), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1514), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1514), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1514), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1514), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1514), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1514), - [sym_raw_string_literal] = ACTIONS(1516), - }, - [228] = { - [sym_identifier] = ACTIONS(1803), - [aux_sym_preproc_include_token1] = ACTIONS(1803), - [aux_sym_preproc_def_token1] = ACTIONS(1803), - [aux_sym_preproc_if_token1] = ACTIONS(1803), - [aux_sym_preproc_if_token2] = ACTIONS(1803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1803), - [aux_sym_preproc_else_token1] = ACTIONS(1803), - [aux_sym_preproc_elif_token1] = ACTIONS(1803), - [sym_preproc_directive] = ACTIONS(1803), - [anon_sym_LPAREN2] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_AMP_AMP] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_typedef] = ACTIONS(1803), - [anon_sym_extern] = ACTIONS(1803), - [anon_sym___attribute__] = ACTIONS(1803), - [anon_sym_COLON_COLON] = ACTIONS(1805), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1805), - [anon_sym___declspec] = ACTIONS(1803), - [anon_sym___based] = ACTIONS(1803), - [anon_sym___cdecl] = ACTIONS(1803), - [anon_sym___clrcall] = ACTIONS(1803), - [anon_sym___stdcall] = ACTIONS(1803), - [anon_sym___fastcall] = ACTIONS(1803), - [anon_sym___thiscall] = ACTIONS(1803), - [anon_sym___vectorcall] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_register] = ACTIONS(1803), - [anon_sym_inline] = ACTIONS(1803), - [anon_sym_thread_local] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_volatile] = ACTIONS(1803), - [anon_sym_restrict] = ACTIONS(1803), - [anon_sym__Atomic] = ACTIONS(1803), - [anon_sym_mutable] = ACTIONS(1803), - [anon_sym_constexpr] = ACTIONS(1803), - [anon_sym_signed] = ACTIONS(1803), - [anon_sym_unsigned] = ACTIONS(1803), - [anon_sym_long] = ACTIONS(1803), - [anon_sym_short] = ACTIONS(1803), - [sym_primitive_type] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_struct] = ACTIONS(1803), - [anon_sym_union] = ACTIONS(1803), - [anon_sym_if] = ACTIONS(1803), - [anon_sym_switch] = ACTIONS(1803), - [anon_sym_case] = ACTIONS(1803), - [anon_sym_default] = ACTIONS(1803), - [anon_sym_while] = ACTIONS(1803), - [anon_sym_do] = ACTIONS(1803), - [anon_sym_for] = ACTIONS(1803), - [anon_sym_return] = ACTIONS(1803), - [anon_sym_break] = ACTIONS(1803), - [anon_sym_continue] = ACTIONS(1803), - [anon_sym_goto] = ACTIONS(1803), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_sizeof] = ACTIONS(1803), - [sym_number_literal] = ACTIONS(1805), - [anon_sym_L_SQUOTE] = ACTIONS(1805), - [anon_sym_u_SQUOTE] = ACTIONS(1805), - [anon_sym_U_SQUOTE] = ACTIONS(1805), - [anon_sym_u8_SQUOTE] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(1805), - [anon_sym_L_DQUOTE] = ACTIONS(1805), - [anon_sym_u_DQUOTE] = ACTIONS(1805), - [anon_sym_U_DQUOTE] = ACTIONS(1805), - [anon_sym_u8_DQUOTE] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(1805), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_null] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1803), - [anon_sym_virtual] = ACTIONS(1803), - [anon_sym_explicit] = ACTIONS(1803), - [sym_auto] = ACTIONS(1803), - [anon_sym_typename] = ACTIONS(1803), - [anon_sym_template] = ACTIONS(1803), - [anon_sym_operator] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1803), - [anon_sym_throw] = ACTIONS(1803), - [anon_sym_namespace] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1803), - [anon_sym_static_assert] = ACTIONS(1803), - [anon_sym_co_return] = ACTIONS(1803), - [anon_sym_co_yield] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1803), - [anon_sym_co_await] = ACTIONS(1803), - [anon_sym_new] = ACTIONS(1803), - [sym_this] = ACTIONS(1803), - [sym_nullptr] = ACTIONS(1803), - [sym_alone_macro] = ACTIONS(1805), - [aux_sym_alone_macro_call_token1] = ACTIONS(1803), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1803), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_FORWARD] = ACTIONS(1803), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1803), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1803), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1803), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1803), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_PS_GET] = ACTIONS(1803), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1803), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1803), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1803), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1803), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1803), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1803), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1803), - [anon_sym_MOZ_COLD] = ACTIONS(1803), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1803), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1803), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1803), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1803), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1803), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1803), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1803), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1803), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1803), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1803), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1803), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1803), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1803), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_NONNULL] = ACTIONS(1803), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1803), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1803), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1803), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1803), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1803), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1803), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1803), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1803), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1803), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1803), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1803), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1803), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1803), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1803), - [anon_sym_MOZ_RAII] = ACTIONS(1803), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1803), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1803), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1803), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1803), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1803), - [sym_raw_string_literal] = ACTIONS(1805), - }, - [229] = { - [sym_identifier] = ACTIONS(1807), - [aux_sym_preproc_include_token1] = ACTIONS(1807), - [aux_sym_preproc_def_token1] = ACTIONS(1807), - [aux_sym_preproc_if_token1] = ACTIONS(1807), - [aux_sym_preproc_if_token2] = ACTIONS(1807), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1807), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1807), - [aux_sym_preproc_else_token1] = ACTIONS(1807), - [aux_sym_preproc_elif_token1] = ACTIONS(1807), - [sym_preproc_directive] = ACTIONS(1807), - [anon_sym_LPAREN2] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_typedef] = ACTIONS(1807), - [anon_sym_extern] = ACTIONS(1807), - [anon_sym___attribute__] = ACTIONS(1807), - [anon_sym_COLON_COLON] = ACTIONS(1809), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1809), - [anon_sym___declspec] = ACTIONS(1807), - [anon_sym___based] = ACTIONS(1807), - [anon_sym___cdecl] = ACTIONS(1807), - [anon_sym___clrcall] = ACTIONS(1807), - [anon_sym___stdcall] = ACTIONS(1807), - [anon_sym___fastcall] = ACTIONS(1807), - [anon_sym___thiscall] = ACTIONS(1807), - [anon_sym___vectorcall] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_static] = ACTIONS(1807), - [anon_sym_register] = ACTIONS(1807), - [anon_sym_inline] = ACTIONS(1807), - [anon_sym_thread_local] = ACTIONS(1807), - [anon_sym_const] = ACTIONS(1807), - [anon_sym_volatile] = ACTIONS(1807), - [anon_sym_restrict] = ACTIONS(1807), - [anon_sym__Atomic] = ACTIONS(1807), - [anon_sym_mutable] = ACTIONS(1807), - [anon_sym_constexpr] = ACTIONS(1807), - [anon_sym_signed] = ACTIONS(1807), - [anon_sym_unsigned] = ACTIONS(1807), - [anon_sym_long] = ACTIONS(1807), - [anon_sym_short] = ACTIONS(1807), - [sym_primitive_type] = ACTIONS(1807), - [anon_sym_enum] = ACTIONS(1807), - [anon_sym_class] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1807), - [anon_sym_union] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(1807), - [anon_sym_switch] = ACTIONS(1807), - [anon_sym_case] = ACTIONS(1807), - [anon_sym_default] = ACTIONS(1807), - [anon_sym_while] = ACTIONS(1807), - [anon_sym_do] = ACTIONS(1807), - [anon_sym_for] = ACTIONS(1807), - [anon_sym_return] = ACTIONS(1807), - [anon_sym_break] = ACTIONS(1807), - [anon_sym_continue] = ACTIONS(1807), - [anon_sym_goto] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_sizeof] = ACTIONS(1807), - [sym_number_literal] = ACTIONS(1809), - [anon_sym_L_SQUOTE] = ACTIONS(1809), - [anon_sym_u_SQUOTE] = ACTIONS(1809), - [anon_sym_U_SQUOTE] = ACTIONS(1809), - [anon_sym_u8_SQUOTE] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_L_DQUOTE] = ACTIONS(1809), - [anon_sym_u_DQUOTE] = ACTIONS(1809), - [anon_sym_U_DQUOTE] = ACTIONS(1809), - [anon_sym_u8_DQUOTE] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [sym_true] = ACTIONS(1807), - [sym_false] = ACTIONS(1807), - [sym_null] = ACTIONS(1807), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1807), - [anon_sym_virtual] = ACTIONS(1807), - [anon_sym_explicit] = ACTIONS(1807), - [sym_auto] = ACTIONS(1807), - [anon_sym_typename] = ACTIONS(1807), - [anon_sym_template] = ACTIONS(1807), - [anon_sym_operator] = ACTIONS(1807), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_throw] = ACTIONS(1807), - [anon_sym_namespace] = ACTIONS(1807), - [anon_sym_using] = ACTIONS(1807), - [anon_sym_static_assert] = ACTIONS(1807), - [anon_sym_co_return] = ACTIONS(1807), - [anon_sym_co_yield] = ACTIONS(1807), - [anon_sym_try] = ACTIONS(1807), - [anon_sym_co_await] = ACTIONS(1807), - [anon_sym_new] = ACTIONS(1807), - [sym_this] = ACTIONS(1807), - [sym_nullptr] = ACTIONS(1807), - [sym_alone_macro] = ACTIONS(1809), - [aux_sym_alone_macro_call_token1] = ACTIONS(1807), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1807), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_FORWARD] = ACTIONS(1807), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1807), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1807), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1807), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1807), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_PS_GET] = ACTIONS(1807), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1807), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1807), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1807), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1807), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1807), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1807), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1807), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1807), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1807), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1807), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1807), - [anon_sym_MOZ_COLD] = ACTIONS(1807), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1807), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1807), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1807), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1807), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1807), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1807), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1807), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1807), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1807), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1807), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1807), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1807), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1807), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1807), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1807), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1807), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1807), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1807), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1807), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1807), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_NONNULL] = ACTIONS(1807), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1807), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1807), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1807), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1807), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1807), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_NORETURN] = ACTIONS(1807), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1807), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1807), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1807), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1807), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1807), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1807), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1807), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1807), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1807), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1807), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1807), - [anon_sym_MOZ_RAII] = ACTIONS(1807), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1807), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1807), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1807), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1807), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1807), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1807), - [sym_raw_string_literal] = ACTIONS(1809), - }, - [230] = { - [sym_identifier] = ACTIONS(1811), - [aux_sym_preproc_include_token1] = ACTIONS(1811), - [aux_sym_preproc_def_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token2] = ACTIONS(1811), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1811), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1811), - [aux_sym_preproc_else_token1] = ACTIONS(1811), - [aux_sym_preproc_elif_token1] = ACTIONS(1811), - [sym_preproc_directive] = ACTIONS(1811), - [anon_sym_LPAREN2] = ACTIONS(1813), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_AMP_AMP] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1813), - [anon_sym_typedef] = ACTIONS(1811), - [anon_sym_extern] = ACTIONS(1811), - [anon_sym___attribute__] = ACTIONS(1811), - [anon_sym_COLON_COLON] = ACTIONS(1813), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), - [anon_sym___declspec] = ACTIONS(1811), - [anon_sym___based] = ACTIONS(1811), - [anon_sym___cdecl] = ACTIONS(1811), - [anon_sym___clrcall] = ACTIONS(1811), - [anon_sym___stdcall] = ACTIONS(1811), - [anon_sym___fastcall] = ACTIONS(1811), - [anon_sym___thiscall] = ACTIONS(1811), - [anon_sym___vectorcall] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_static] = ACTIONS(1811), - [anon_sym_register] = ACTIONS(1811), - [anon_sym_inline] = ACTIONS(1811), - [anon_sym_thread_local] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [anon_sym_volatile] = ACTIONS(1811), - [anon_sym_restrict] = ACTIONS(1811), - [anon_sym__Atomic] = ACTIONS(1811), - [anon_sym_mutable] = ACTIONS(1811), - [anon_sym_constexpr] = ACTIONS(1811), - [anon_sym_signed] = ACTIONS(1811), - [anon_sym_unsigned] = ACTIONS(1811), - [anon_sym_long] = ACTIONS(1811), - [anon_sym_short] = ACTIONS(1811), - [sym_primitive_type] = ACTIONS(1811), - [anon_sym_enum] = ACTIONS(1811), - [anon_sym_class] = ACTIONS(1811), - [anon_sym_struct] = ACTIONS(1811), - [anon_sym_union] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_switch] = ACTIONS(1811), - [anon_sym_case] = ACTIONS(1811), - [anon_sym_default] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_goto] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_sizeof] = ACTIONS(1811), - [sym_number_literal] = ACTIONS(1813), - [anon_sym_L_SQUOTE] = ACTIONS(1813), - [anon_sym_u_SQUOTE] = ACTIONS(1813), - [anon_sym_U_SQUOTE] = ACTIONS(1813), - [anon_sym_u8_SQUOTE] = ACTIONS(1813), - [anon_sym_SQUOTE] = ACTIONS(1813), - [anon_sym_L_DQUOTE] = ACTIONS(1813), - [anon_sym_u_DQUOTE] = ACTIONS(1813), - [anon_sym_U_DQUOTE] = ACTIONS(1813), - [anon_sym_u8_DQUOTE] = ACTIONS(1813), - [anon_sym_DQUOTE] = ACTIONS(1813), - [sym_true] = ACTIONS(1811), - [sym_false] = ACTIONS(1811), - [sym_null] = ACTIONS(1811), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1811), + [anon_sym___extension__] = ACTIONS(1809), [anon_sym_virtual] = ACTIONS(1811), - [anon_sym_explicit] = ACTIONS(1811), - [sym_auto] = ACTIONS(1811), - [anon_sym_typename] = ACTIONS(1811), - [anon_sym_template] = ACTIONS(1811), - [anon_sym_operator] = ACTIONS(1811), - [anon_sym_delete] = ACTIONS(1811), - [anon_sym_throw] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(1811), - [anon_sym_static_assert] = ACTIONS(1811), - [anon_sym_co_return] = ACTIONS(1811), - [anon_sym_co_yield] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1811), - [anon_sym_co_await] = ACTIONS(1811), - [anon_sym_new] = ACTIONS(1811), - [sym_this] = ACTIONS(1811), - [sym_nullptr] = ACTIONS(1811), - [sym_alone_macro] = ACTIONS(1813), - [aux_sym_alone_macro_call_token1] = ACTIONS(1811), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1811), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_FORWARD] = ACTIONS(1811), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1811), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1811), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1811), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1811), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_PS_GET] = ACTIONS(1811), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1811), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1811), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1811), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1811), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1811), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1811), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1811), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1811), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1811), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1811), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1811), - [anon_sym_MOZ_COLD] = ACTIONS(1811), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1811), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1811), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1811), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1811), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1811), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1811), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1811), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1811), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1811), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1811), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1811), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1811), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1811), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1811), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1811), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1811), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1811), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1811), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1811), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1811), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_NONNULL] = ACTIONS(1811), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1811), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1811), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1811), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1811), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1811), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_NORETURN] = ACTIONS(1811), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1811), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1811), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1811), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1811), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1811), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1811), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1811), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1811), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1811), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1811), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1811), - [anon_sym_MOZ_RAII] = ACTIONS(1811), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1811), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1811), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1811), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1811), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1811), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1811), - [sym_raw_string_literal] = ACTIONS(1813), - }, - [231] = { - [sym_identifier] = ACTIONS(1815), - [aux_sym_preproc_include_token1] = ACTIONS(1815), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token2] = ACTIONS(1815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1815), - [aux_sym_preproc_else_token1] = ACTIONS(1815), - [aux_sym_preproc_elif_token1] = ACTIONS(1815), - [sym_preproc_directive] = ACTIONS(1815), - [anon_sym_LPAREN2] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_typedef] = ACTIONS(1815), - [anon_sym_extern] = ACTIONS(1815), - [anon_sym___attribute__] = ACTIONS(1815), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1817), - [anon_sym___declspec] = ACTIONS(1815), - [anon_sym___based] = ACTIONS(1815), - [anon_sym___cdecl] = ACTIONS(1815), - [anon_sym___clrcall] = ACTIONS(1815), - [anon_sym___stdcall] = ACTIONS(1815), - [anon_sym___fastcall] = ACTIONS(1815), - [anon_sym___thiscall] = ACTIONS(1815), - [anon_sym___vectorcall] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_static] = ACTIONS(1815), - [anon_sym_register] = ACTIONS(1815), - [anon_sym_inline] = ACTIONS(1815), - [anon_sym_thread_local] = ACTIONS(1815), - [anon_sym_const] = ACTIONS(1815), - [anon_sym_volatile] = ACTIONS(1815), - [anon_sym_restrict] = ACTIONS(1815), - [anon_sym__Atomic] = ACTIONS(1815), - [anon_sym_mutable] = ACTIONS(1815), - [anon_sym_constexpr] = ACTIONS(1815), - [anon_sym_signed] = ACTIONS(1815), - [anon_sym_unsigned] = ACTIONS(1815), - [anon_sym_long] = ACTIONS(1815), - [anon_sym_short] = ACTIONS(1815), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), [sym_primitive_type] = ACTIONS(1815), - [anon_sym_enum] = ACTIONS(1815), - [anon_sym_class] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1815), - [anon_sym_union] = ACTIONS(1815), - [anon_sym_if] = ACTIONS(1815), - [anon_sym_switch] = ACTIONS(1815), - [anon_sym_case] = ACTIONS(1815), - [anon_sym_default] = ACTIONS(1815), - [anon_sym_while] = ACTIONS(1815), - [anon_sym_do] = ACTIONS(1815), - [anon_sym_for] = ACTIONS(1815), - [anon_sym_return] = ACTIONS(1815), - [anon_sym_break] = ACTIONS(1815), - [anon_sym_continue] = ACTIONS(1815), - [anon_sym_goto] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_sizeof] = ACTIONS(1815), - [sym_number_literal] = ACTIONS(1817), - [anon_sym_L_SQUOTE] = ACTIONS(1817), - [anon_sym_u_SQUOTE] = ACTIONS(1817), - [anon_sym_U_SQUOTE] = ACTIONS(1817), - [anon_sym_u8_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_L_DQUOTE] = ACTIONS(1817), - [anon_sym_u_DQUOTE] = ACTIONS(1817), - [anon_sym_U_DQUOTE] = ACTIONS(1817), - [anon_sym_u8_DQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [sym_true] = ACTIONS(1815), - [sym_false] = ACTIONS(1815), - [sym_null] = ACTIONS(1815), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1815), - [anon_sym_virtual] = ACTIONS(1815), - [anon_sym_explicit] = ACTIONS(1815), - [sym_auto] = ACTIONS(1815), - [anon_sym_typename] = ACTIONS(1815), - [anon_sym_template] = ACTIONS(1815), - [anon_sym_operator] = ACTIONS(1815), - [anon_sym_delete] = ACTIONS(1815), - [anon_sym_throw] = ACTIONS(1815), - [anon_sym_namespace] = ACTIONS(1815), - [anon_sym_using] = ACTIONS(1815), - [anon_sym_static_assert] = ACTIONS(1815), - [anon_sym_co_return] = ACTIONS(1815), - [anon_sym_co_yield] = ACTIONS(1815), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_co_await] = ACTIONS(1815), - [anon_sym_new] = ACTIONS(1815), - [sym_this] = ACTIONS(1815), - [sym_nullptr] = ACTIONS(1815), - [sym_alone_macro] = ACTIONS(1817), - [aux_sym_alone_macro_call_token1] = ACTIONS(1815), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1815), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_FORWARD] = ACTIONS(1815), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1815), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1815), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1815), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1815), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_PS_GET] = ACTIONS(1815), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1815), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1815), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1815), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1815), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1815), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1815), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1815), - [anon_sym_MOZ_COLD] = ACTIONS(1815), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1815), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1815), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1815), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1815), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1815), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1815), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1815), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1815), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1815), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1815), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1815), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1815), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1815), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_NONNULL] = ACTIONS(1815), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1815), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1815), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1815), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1815), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1815), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1815), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1815), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1815), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1815), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1815), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1815), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1815), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1815), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1815), - [anon_sym_MOZ_RAII] = ACTIONS(1815), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1815), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1815), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1815), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1815), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1815), - [sym_raw_string_literal] = ACTIONS(1817), - }, - [232] = { - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_include_token1] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1819), - [aux_sym_preproc_if_token1] = ACTIONS(1819), - [aux_sym_preproc_if_token2] = ACTIONS(1819), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1819), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1819), - [aux_sym_preproc_else_token1] = ACTIONS(1819), - [aux_sym_preproc_elif_token1] = ACTIONS(1819), - [sym_preproc_directive] = ACTIONS(1819), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1821), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_STAR] = ACTIONS(1821), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_typedef] = ACTIONS(1819), - [anon_sym_extern] = ACTIONS(1819), - [anon_sym___attribute__] = ACTIONS(1819), - [anon_sym_COLON_COLON] = ACTIONS(1821), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1821), - [anon_sym___declspec] = ACTIONS(1819), - [anon_sym___based] = ACTIONS(1819), - [anon_sym___cdecl] = ACTIONS(1819), - [anon_sym___clrcall] = ACTIONS(1819), - [anon_sym___stdcall] = ACTIONS(1819), - [anon_sym___fastcall] = ACTIONS(1819), - [anon_sym___thiscall] = ACTIONS(1819), - [anon_sym___vectorcall] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_static] = ACTIONS(1819), - [anon_sym_register] = ACTIONS(1819), - [anon_sym_inline] = ACTIONS(1819), - [anon_sym_thread_local] = ACTIONS(1819), - [anon_sym_const] = ACTIONS(1819), - [anon_sym_volatile] = ACTIONS(1819), - [anon_sym_restrict] = ACTIONS(1819), - [anon_sym__Atomic] = ACTIONS(1819), - [anon_sym_mutable] = ACTIONS(1819), - [anon_sym_constexpr] = ACTIONS(1819), - [anon_sym_signed] = ACTIONS(1819), - [anon_sym_unsigned] = ACTIONS(1819), - [anon_sym_long] = ACTIONS(1819), - [anon_sym_short] = ACTIONS(1819), - [sym_primitive_type] = ACTIONS(1819), - [anon_sym_enum] = ACTIONS(1819), + [anon_sym_enum] = ACTIONS(1817), [anon_sym_class] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1819), - [anon_sym_union] = ACTIONS(1819), - [anon_sym_if] = ACTIONS(1819), - [anon_sym_switch] = ACTIONS(1819), - [anon_sym_case] = ACTIONS(1819), - [anon_sym_default] = ACTIONS(1819), - [anon_sym_while] = ACTIONS(1819), - [anon_sym_do] = ACTIONS(1819), - [anon_sym_for] = ACTIONS(1819), - [anon_sym_return] = ACTIONS(1819), - [anon_sym_break] = ACTIONS(1819), - [anon_sym_continue] = ACTIONS(1819), - [anon_sym_goto] = ACTIONS(1819), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [anon_sym_PLUS_PLUS] = ACTIONS(1821), - [anon_sym_sizeof] = ACTIONS(1819), - [sym_number_literal] = ACTIONS(1821), - [anon_sym_L_SQUOTE] = ACTIONS(1821), - [anon_sym_u_SQUOTE] = ACTIONS(1821), - [anon_sym_U_SQUOTE] = ACTIONS(1821), - [anon_sym_u8_SQUOTE] = ACTIONS(1821), - [anon_sym_SQUOTE] = ACTIONS(1821), - [anon_sym_L_DQUOTE] = ACTIONS(1821), - [anon_sym_u_DQUOTE] = ACTIONS(1821), - [anon_sym_U_DQUOTE] = ACTIONS(1821), - [anon_sym_u8_DQUOTE] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [sym_true] = ACTIONS(1819), - [sym_false] = ACTIONS(1819), - [sym_null] = ACTIONS(1819), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1819), - [anon_sym_virtual] = ACTIONS(1819), - [anon_sym_explicit] = ACTIONS(1819), - [sym_auto] = ACTIONS(1819), - [anon_sym_typename] = ACTIONS(1819), - [anon_sym_template] = ACTIONS(1819), - [anon_sym_operator] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_throw] = ACTIONS(1819), - [anon_sym_namespace] = ACTIONS(1819), - [anon_sym_using] = ACTIONS(1819), - [anon_sym_static_assert] = ACTIONS(1819), - [anon_sym_co_return] = ACTIONS(1819), - [anon_sym_co_yield] = ACTIONS(1819), - [anon_sym_try] = ACTIONS(1819), - [anon_sym_co_await] = ACTIONS(1819), - [anon_sym_new] = ACTIONS(1819), - [sym_this] = ACTIONS(1819), - [sym_nullptr] = ACTIONS(1819), - [sym_alone_macro] = ACTIONS(1821), - [aux_sym_alone_macro_call_token1] = ACTIONS(1819), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1819), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_FORWARD] = ACTIONS(1819), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1819), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1819), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1819), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1819), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_PS_GET] = ACTIONS(1819), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1819), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1819), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1819), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1819), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1819), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1819), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1819), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1819), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1819), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1819), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1819), - [anon_sym_MOZ_COLD] = ACTIONS(1819), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1819), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1819), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1819), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1819), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1819), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1819), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1819), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1819), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1819), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1819), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1819), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1819), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1819), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1819), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1819), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1819), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1819), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1819), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1819), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1819), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_NONNULL] = ACTIONS(1819), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1819), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1819), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1819), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1819), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1819), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_NORETURN] = ACTIONS(1819), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1819), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1819), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1819), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1819), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1819), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1819), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1819), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1819), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1819), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1819), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1819), - [anon_sym_MOZ_RAII] = ACTIONS(1819), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1819), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1819), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1819), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1819), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1819), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1819), - [sym_raw_string_literal] = ACTIONS(1821), - }, - [233] = { - [sym_identifier] = ACTIONS(1823), - [aux_sym_preproc_include_token1] = ACTIONS(1823), - [aux_sym_preproc_def_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1823), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1823), - [aux_sym_preproc_else_token1] = ACTIONS(1823), - [aux_sym_preproc_elif_token1] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1825), - [anon_sym_BANG] = ACTIONS(1825), - [anon_sym_TILDE] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1825), - [anon_sym_AMP_AMP] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_typedef] = ACTIONS(1823), - [anon_sym_extern] = ACTIONS(1823), - [anon_sym___attribute__] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1825), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1825), - [anon_sym___declspec] = ACTIONS(1823), - [anon_sym___based] = ACTIONS(1823), - [anon_sym___cdecl] = ACTIONS(1823), - [anon_sym___clrcall] = ACTIONS(1823), - [anon_sym___stdcall] = ACTIONS(1823), - [anon_sym___fastcall] = ACTIONS(1823), - [anon_sym___thiscall] = ACTIONS(1823), - [anon_sym___vectorcall] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_register] = ACTIONS(1823), - [anon_sym_inline] = ACTIONS(1823), - [anon_sym_thread_local] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_volatile] = ACTIONS(1823), - [anon_sym_restrict] = ACTIONS(1823), - [anon_sym__Atomic] = ACTIONS(1823), - [anon_sym_mutable] = ACTIONS(1823), - [anon_sym_constexpr] = ACTIONS(1823), - [anon_sym_signed] = ACTIONS(1823), - [anon_sym_unsigned] = ACTIONS(1823), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_short] = ACTIONS(1823), - [sym_primitive_type] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [anon_sym_class] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(1823), + [anon_sym_struct] = ACTIONS(1821), [anon_sym_union] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_switch] = ACTIONS(1823), - [anon_sym_case] = ACTIONS(1823), - [anon_sym_default] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_goto] = ACTIONS(1823), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), [anon_sym_DASH_DASH] = ACTIONS(1825), [anon_sym_PLUS_PLUS] = ACTIONS(1825), - [anon_sym_sizeof] = ACTIONS(1823), - [sym_number_literal] = ACTIONS(1825), - [anon_sym_L_SQUOTE] = ACTIONS(1825), - [anon_sym_u_SQUOTE] = ACTIONS(1825), - [anon_sym_U_SQUOTE] = ACTIONS(1825), - [anon_sym_u8_SQUOTE] = ACTIONS(1825), - [anon_sym_SQUOTE] = ACTIONS(1825), - [anon_sym_L_DQUOTE] = ACTIONS(1825), - [anon_sym_u_DQUOTE] = ACTIONS(1825), - [anon_sym_U_DQUOTE] = ACTIONS(1825), - [anon_sym_u8_DQUOTE] = ACTIONS(1825), - [anon_sym_DQUOTE] = ACTIONS(1825), - [sym_true] = ACTIONS(1823), - [sym_false] = ACTIONS(1823), - [sym_null] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1823), - [anon_sym_virtual] = ACTIONS(1823), - [anon_sym_explicit] = ACTIONS(1823), - [sym_auto] = ACTIONS(1823), - [anon_sym_typename] = ACTIONS(1823), - [anon_sym_template] = ACTIONS(1823), - [anon_sym_operator] = ACTIONS(1823), - [anon_sym_delete] = ACTIONS(1823), - [anon_sym_throw] = ACTIONS(1823), - [anon_sym_namespace] = ACTIONS(1823), - [anon_sym_using] = ACTIONS(1823), - [anon_sym_static_assert] = ACTIONS(1823), - [anon_sym_co_return] = ACTIONS(1823), - [anon_sym_co_yield] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1823), - [anon_sym_co_await] = ACTIONS(1823), - [anon_sym_new] = ACTIONS(1823), - [sym_this] = ACTIONS(1823), - [sym_nullptr] = ACTIONS(1823), - [sym_alone_macro] = ACTIONS(1825), - [aux_sym_alone_macro_call_token1] = ACTIONS(1823), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1823), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_FORWARD] = ACTIONS(1823), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1823), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1823), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1823), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1823), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_PS_GET] = ACTIONS(1823), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1823), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1823), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1823), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1823), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1823), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1823), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1823), - [anon_sym_MOZ_COLD] = ACTIONS(1823), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1823), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1823), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1823), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1823), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1823), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1823), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1823), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1823), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1823), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1823), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1823), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1823), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1823), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_NONNULL] = ACTIONS(1823), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1823), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1823), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1823), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1823), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1823), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1823), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1823), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1823), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1823), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1823), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1823), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1823), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1823), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1823), - [anon_sym_MOZ_RAII] = ACTIONS(1823), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1823), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1823), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1823), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1823), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1823), - [sym_raw_string_literal] = ACTIONS(1825), - }, - [234] = { - [sym_identifier] = ACTIONS(1827), - [aux_sym_preproc_include_token1] = ACTIONS(1827), - [aux_sym_preproc_def_token1] = ACTIONS(1827), - [aux_sym_preproc_if_token1] = ACTIONS(1827), - [aux_sym_preproc_if_token2] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1827), - [aux_sym_preproc_elif_token1] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1827), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_BANG] = ACTIONS(1829), - [anon_sym_TILDE] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_AMP_AMP] = ACTIONS(1829), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_typedef] = ACTIONS(1827), - [anon_sym_extern] = ACTIONS(1827), - [anon_sym___attribute__] = ACTIONS(1827), - [anon_sym_COLON_COLON] = ACTIONS(1829), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1829), - [anon_sym___declspec] = ACTIONS(1827), - [anon_sym___based] = ACTIONS(1827), - [anon_sym___cdecl] = ACTIONS(1827), - [anon_sym___clrcall] = ACTIONS(1827), - [anon_sym___stdcall] = ACTIONS(1827), - [anon_sym___fastcall] = ACTIONS(1827), - [anon_sym___thiscall] = ACTIONS(1827), - [anon_sym___vectorcall] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1829), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_static] = ACTIONS(1827), - [anon_sym_register] = ACTIONS(1827), - [anon_sym_inline] = ACTIONS(1827), - [anon_sym_thread_local] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_volatile] = ACTIONS(1827), - [anon_sym_restrict] = ACTIONS(1827), - [anon_sym__Atomic] = ACTIONS(1827), - [anon_sym_mutable] = ACTIONS(1827), - [anon_sym_constexpr] = ACTIONS(1827), - [anon_sym_signed] = ACTIONS(1827), - [anon_sym_unsigned] = ACTIONS(1827), - [anon_sym_long] = ACTIONS(1827), - [anon_sym_short] = ACTIONS(1827), - [sym_primitive_type] = ACTIONS(1827), - [anon_sym_enum] = ACTIONS(1827), - [anon_sym_class] = ACTIONS(1827), - [anon_sym_struct] = ACTIONS(1827), - [anon_sym_union] = ACTIONS(1827), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_switch] = ACTIONS(1827), - [anon_sym_case] = ACTIONS(1827), - [anon_sym_default] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_for] = ACTIONS(1827), - [anon_sym_return] = ACTIONS(1827), - [anon_sym_break] = ACTIONS(1827), - [anon_sym_continue] = ACTIONS(1827), - [anon_sym_goto] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1829), - [anon_sym_PLUS_PLUS] = ACTIONS(1829), [anon_sym_sizeof] = ACTIONS(1827), - [sym_number_literal] = ACTIONS(1829), - [anon_sym_L_SQUOTE] = ACTIONS(1829), - [anon_sym_u_SQUOTE] = ACTIONS(1829), - [anon_sym_U_SQUOTE] = ACTIONS(1829), - [anon_sym_u8_SQUOTE] = ACTIONS(1829), - [anon_sym_SQUOTE] = ACTIONS(1829), - [anon_sym_L_DQUOTE] = ACTIONS(1829), - [anon_sym_u_DQUOTE] = ACTIONS(1829), - [anon_sym_U_DQUOTE] = ACTIONS(1829), - [anon_sym_u8_DQUOTE] = ACTIONS(1829), - [anon_sym_DQUOTE] = ACTIONS(1829), - [sym_true] = ACTIONS(1827), - [sym_false] = ACTIONS(1827), - [sym_null] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1827), - [anon_sym_virtual] = ACTIONS(1827), - [anon_sym_explicit] = ACTIONS(1827), - [sym_auto] = ACTIONS(1827), - [anon_sym_typename] = ACTIONS(1827), - [anon_sym_template] = ACTIONS(1827), - [anon_sym_operator] = ACTIONS(1827), - [anon_sym_delete] = ACTIONS(1827), - [anon_sym_throw] = ACTIONS(1827), - [anon_sym_namespace] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(1827), - [anon_sym_static_assert] = ACTIONS(1827), - [anon_sym_co_return] = ACTIONS(1827), - [anon_sym_co_yield] = ACTIONS(1827), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_co_await] = ACTIONS(1827), - [anon_sym_new] = ACTIONS(1827), - [sym_this] = ACTIONS(1827), - [sym_nullptr] = ACTIONS(1827), - [sym_alone_macro] = ACTIONS(1829), - [aux_sym_alone_macro_call_token1] = ACTIONS(1827), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1827), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_FORWARD] = ACTIONS(1827), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1827), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1827), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1827), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1827), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_PS_GET] = ACTIONS(1827), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1827), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1827), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1827), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1827), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1827), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1827), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1827), - [anon_sym_MOZ_COLD] = ACTIONS(1827), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1827), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1827), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1827), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1827), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1827), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1827), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1827), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1827), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1827), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1827), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1827), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1827), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1827), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_NONNULL] = ACTIONS(1827), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1827), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1827), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1827), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1827), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1827), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1827), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1827), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1827), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1827), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1827), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1827), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1827), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1827), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1827), - [anon_sym_MOZ_RAII] = ACTIONS(1827), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1827), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1827), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1827), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1827), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1827), - [sym_raw_string_literal] = ACTIONS(1829), - }, - [235] = { - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_include_token1] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1831), - [aux_sym_preproc_if_token1] = ACTIONS(1831), - [aux_sym_preproc_if_token2] = ACTIONS(1831), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1831), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1831), - [aux_sym_preproc_else_token1] = ACTIONS(1831), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [sym_preproc_directive] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1833), - [anon_sym_BANG] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_AMP_AMP] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_typedef] = ACTIONS(1831), - [anon_sym_extern] = ACTIONS(1831), - [anon_sym___attribute__] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1833), - [anon_sym___declspec] = ACTIONS(1831), - [anon_sym___based] = ACTIONS(1831), - [anon_sym___cdecl] = ACTIONS(1831), - [anon_sym___clrcall] = ACTIONS(1831), - [anon_sym___stdcall] = ACTIONS(1831), - [anon_sym___fastcall] = ACTIONS(1831), - [anon_sym___thiscall] = ACTIONS(1831), - [anon_sym___vectorcall] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_static] = ACTIONS(1831), - [anon_sym_register] = ACTIONS(1831), - [anon_sym_inline] = ACTIONS(1831), - [anon_sym_thread_local] = ACTIONS(1831), - [anon_sym_const] = ACTIONS(1831), - [anon_sym_volatile] = ACTIONS(1831), - [anon_sym_restrict] = ACTIONS(1831), - [anon_sym__Atomic] = ACTIONS(1831), - [anon_sym_mutable] = ACTIONS(1831), - [anon_sym_constexpr] = ACTIONS(1831), - [anon_sym_signed] = ACTIONS(1831), - [anon_sym_unsigned] = ACTIONS(1831), - [anon_sym_long] = ACTIONS(1831), - [anon_sym_short] = ACTIONS(1831), - [sym_primitive_type] = ACTIONS(1831), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_class] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(1831), - [anon_sym_union] = ACTIONS(1831), - [anon_sym_if] = ACTIONS(1831), - [anon_sym_switch] = ACTIONS(1831), - [anon_sym_case] = ACTIONS(1831), - [anon_sym_default] = ACTIONS(1831), - [anon_sym_while] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_for] = ACTIONS(1831), - [anon_sym_return] = ACTIONS(1831), - [anon_sym_break] = ACTIONS(1831), - [anon_sym_continue] = ACTIONS(1831), - [anon_sym_goto] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1833), - [anon_sym_PLUS_PLUS] = ACTIONS(1833), - [anon_sym_sizeof] = ACTIONS(1831), - [sym_number_literal] = ACTIONS(1833), - [anon_sym_L_SQUOTE] = ACTIONS(1833), - [anon_sym_u_SQUOTE] = ACTIONS(1833), - [anon_sym_U_SQUOTE] = ACTIONS(1833), - [anon_sym_u8_SQUOTE] = ACTIONS(1833), - [anon_sym_SQUOTE] = ACTIONS(1833), - [anon_sym_L_DQUOTE] = ACTIONS(1833), - [anon_sym_u_DQUOTE] = ACTIONS(1833), - [anon_sym_U_DQUOTE] = ACTIONS(1833), - [anon_sym_u8_DQUOTE] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(1833), - [sym_true] = ACTIONS(1831), - [sym_false] = ACTIONS(1831), - [sym_null] = ACTIONS(1831), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1831), - [anon_sym_virtual] = ACTIONS(1831), - [anon_sym_explicit] = ACTIONS(1831), - [sym_auto] = ACTIONS(1831), - [anon_sym_typename] = ACTIONS(1831), - [anon_sym_template] = ACTIONS(1831), - [anon_sym_operator] = ACTIONS(1831), - [anon_sym_delete] = ACTIONS(1831), - [anon_sym_throw] = ACTIONS(1831), - [anon_sym_namespace] = ACTIONS(1831), - [anon_sym_using] = ACTIONS(1831), - [anon_sym_static_assert] = ACTIONS(1831), - [anon_sym_co_return] = ACTIONS(1831), - [anon_sym_co_yield] = ACTIONS(1831), - [anon_sym_try] = ACTIONS(1831), - [anon_sym_co_await] = ACTIONS(1831), - [anon_sym_new] = ACTIONS(1831), - [sym_this] = ACTIONS(1831), - [sym_nullptr] = ACTIONS(1831), - [sym_alone_macro] = ACTIONS(1833), - [aux_sym_alone_macro_call_token1] = ACTIONS(1831), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1831), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_FORWARD] = ACTIONS(1831), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1831), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1831), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1831), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1831), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_PS_GET] = ACTIONS(1831), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1831), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1831), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1831), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1831), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1831), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1831), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1831), - [anon_sym_MOZ_COLD] = ACTIONS(1831), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1831), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1831), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1831), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1831), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1831), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1831), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1831), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1831), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1831), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1831), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1831), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1831), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1831), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_NONNULL] = ACTIONS(1831), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1831), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1831), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1831), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1831), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1831), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1831), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1831), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1831), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1831), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1831), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1831), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1831), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1831), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1831), - [anon_sym_MOZ_RAII] = ACTIONS(1831), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1831), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1831), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1831), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1831), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1831), - [sym_raw_string_literal] = ACTIONS(1833), - }, - [236] = { - [sym_identifier] = ACTIONS(1835), - [aux_sym_preproc_include_token1] = ACTIONS(1835), - [aux_sym_preproc_def_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token2] = ACTIONS(1835), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1835), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1835), - [aux_sym_preproc_else_token1] = ACTIONS(1835), - [aux_sym_preproc_elif_token1] = ACTIONS(1835), - [sym_preproc_directive] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1837), - [anon_sym_TILDE] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1837), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_SEMI] = ACTIONS(1837), - [anon_sym_typedef] = ACTIONS(1835), - [anon_sym_extern] = ACTIONS(1835), - [anon_sym___attribute__] = ACTIONS(1835), - [anon_sym_COLON_COLON] = ACTIONS(1837), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1837), - [anon_sym___declspec] = ACTIONS(1835), - [anon_sym___based] = ACTIONS(1835), - [anon_sym___cdecl] = ACTIONS(1835), - [anon_sym___clrcall] = ACTIONS(1835), - [anon_sym___stdcall] = ACTIONS(1835), - [anon_sym___fastcall] = ACTIONS(1835), - [anon_sym___thiscall] = ACTIONS(1835), - [anon_sym___vectorcall] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_static] = ACTIONS(1835), - [anon_sym_register] = ACTIONS(1835), - [anon_sym_inline] = ACTIONS(1835), - [anon_sym_thread_local] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym_mutable] = ACTIONS(1835), - [anon_sym_constexpr] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(1835), - [anon_sym_unsigned] = ACTIONS(1835), - [anon_sym_long] = ACTIONS(1835), - [anon_sym_short] = ACTIONS(1835), - [sym_primitive_type] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_struct] = ACTIONS(1835), - [anon_sym_union] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_switch] = ACTIONS(1835), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_goto] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1837), - [anon_sym_PLUS_PLUS] = ACTIONS(1837), - [anon_sym_sizeof] = ACTIONS(1835), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), [sym_number_literal] = ACTIONS(1837), - [anon_sym_L_SQUOTE] = ACTIONS(1837), - [anon_sym_u_SQUOTE] = ACTIONS(1837), - [anon_sym_U_SQUOTE] = ACTIONS(1837), - [anon_sym_u8_SQUOTE] = ACTIONS(1837), - [anon_sym_SQUOTE] = ACTIONS(1837), - [anon_sym_L_DQUOTE] = ACTIONS(1837), - [anon_sym_u_DQUOTE] = ACTIONS(1837), - [anon_sym_U_DQUOTE] = ACTIONS(1837), - [anon_sym_u8_DQUOTE] = ACTIONS(1837), - [anon_sym_DQUOTE] = ACTIONS(1837), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_null] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1835), - [anon_sym_virtual] = ACTIONS(1835), - [anon_sym_explicit] = ACTIONS(1835), - [sym_auto] = ACTIONS(1835), - [anon_sym_typename] = ACTIONS(1835), - [anon_sym_template] = ACTIONS(1835), - [anon_sym_operator] = ACTIONS(1835), - [anon_sym_delete] = ACTIONS(1835), - [anon_sym_throw] = ACTIONS(1835), - [anon_sym_namespace] = ACTIONS(1835), - [anon_sym_using] = ACTIONS(1835), - [anon_sym_static_assert] = ACTIONS(1835), - [anon_sym_co_return] = ACTIONS(1835), - [anon_sym_co_yield] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_co_await] = ACTIONS(1835), - [anon_sym_new] = ACTIONS(1835), - [sym_this] = ACTIONS(1835), - [sym_nullptr] = ACTIONS(1835), - [sym_alone_macro] = ACTIONS(1837), - [aux_sym_alone_macro_call_token1] = ACTIONS(1835), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1835), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_FORWARD] = ACTIONS(1835), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1835), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1835), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1835), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1835), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_PS_GET] = ACTIONS(1835), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1835), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1835), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1835), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1835), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1835), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1835), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1835), - [anon_sym_MOZ_COLD] = ACTIONS(1835), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1835), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1835), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1835), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1835), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1835), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1835), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1835), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1835), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1835), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1835), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1835), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1835), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1835), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_NONNULL] = ACTIONS(1835), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1835), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1835), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1835), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1835), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1835), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1835), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1835), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1835), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1835), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1835), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1835), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1835), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1835), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1835), - [anon_sym_MOZ_RAII] = ACTIONS(1835), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1835), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1835), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1835), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1835), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1835), - [sym_raw_string_literal] = ACTIONS(1837), - }, - [237] = { - [sym_identifier] = ACTIONS(1839), - [aux_sym_preproc_include_token1] = ACTIONS(1839), - [aux_sym_preproc_def_token1] = ACTIONS(1839), - [aux_sym_preproc_if_token1] = ACTIONS(1839), - [aux_sym_preproc_if_token2] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [aux_sym_preproc_else_token1] = ACTIONS(1839), - [aux_sym_preproc_elif_token1] = ACTIONS(1839), - [sym_preproc_directive] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_TILDE] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_AMP_AMP] = ACTIONS(1841), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_typedef] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym___attribute__] = ACTIONS(1839), - [anon_sym_COLON_COLON] = ACTIONS(1841), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1841), - [anon_sym___declspec] = ACTIONS(1839), - [anon_sym___based] = ACTIONS(1839), - [anon_sym___cdecl] = ACTIONS(1839), - [anon_sym___clrcall] = ACTIONS(1839), - [anon_sym___stdcall] = ACTIONS(1839), - [anon_sym___fastcall] = ACTIONS(1839), - [anon_sym___thiscall] = ACTIONS(1839), - [anon_sym___vectorcall] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_static] = ACTIONS(1839), - [anon_sym_register] = ACTIONS(1839), - [anon_sym_inline] = ACTIONS(1839), - [anon_sym_thread_local] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [anon_sym_volatile] = ACTIONS(1839), - [anon_sym_restrict] = ACTIONS(1839), - [anon_sym__Atomic] = ACTIONS(1839), - [anon_sym_mutable] = ACTIONS(1839), - [anon_sym_constexpr] = ACTIONS(1839), - [anon_sym_signed] = ACTIONS(1839), - [anon_sym_unsigned] = ACTIONS(1839), - [anon_sym_long] = ACTIONS(1839), - [anon_sym_short] = ACTIONS(1839), - [sym_primitive_type] = ACTIONS(1839), - [anon_sym_enum] = ACTIONS(1839), - [anon_sym_class] = ACTIONS(1839), - [anon_sym_struct] = ACTIONS(1839), - [anon_sym_union] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_switch] = ACTIONS(1839), - [anon_sym_case] = ACTIONS(1839), - [anon_sym_default] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_goto] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1841), - [anon_sym_PLUS_PLUS] = ACTIONS(1841), - [anon_sym_sizeof] = ACTIONS(1839), - [sym_number_literal] = ACTIONS(1841), - [anon_sym_L_SQUOTE] = ACTIONS(1841), - [anon_sym_u_SQUOTE] = ACTIONS(1841), - [anon_sym_U_SQUOTE] = ACTIONS(1841), - [anon_sym_u8_SQUOTE] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), [anon_sym_L_DQUOTE] = ACTIONS(1841), [anon_sym_u_DQUOTE] = ACTIONS(1841), [anon_sym_U_DQUOTE] = ACTIONS(1841), [anon_sym_u8_DQUOTE] = ACTIONS(1841), [anon_sym_DQUOTE] = ACTIONS(1841), - [sym_true] = ACTIONS(1839), - [sym_false] = ACTIONS(1839), - [sym_null] = ACTIONS(1839), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1839), - [anon_sym_virtual] = ACTIONS(1839), - [anon_sym_explicit] = ACTIONS(1839), - [sym_auto] = ACTIONS(1839), - [anon_sym_typename] = ACTIONS(1839), - [anon_sym_template] = ACTIONS(1839), - [anon_sym_operator] = ACTIONS(1839), - [anon_sym_delete] = ACTIONS(1839), - [anon_sym_throw] = ACTIONS(1839), - [anon_sym_namespace] = ACTIONS(1839), - [anon_sym_using] = ACTIONS(1839), - [anon_sym_static_assert] = ACTIONS(1839), - [anon_sym_co_return] = ACTIONS(1839), - [anon_sym_co_yield] = ACTIONS(1839), - [anon_sym_try] = ACTIONS(1839), - [anon_sym_co_await] = ACTIONS(1839), - [anon_sym_new] = ACTIONS(1839), - [sym_this] = ACTIONS(1839), - [sym_nullptr] = ACTIONS(1839), - [sym_alone_macro] = ACTIONS(1841), - [aux_sym_alone_macro_call_token1] = ACTIONS(1839), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1839), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_FORWARD] = ACTIONS(1839), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1839), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1839), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1839), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1839), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_PS_GET] = ACTIONS(1839), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1839), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1839), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1839), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1839), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1839), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1839), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1839), - [anon_sym_MOZ_COLD] = ACTIONS(1839), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1839), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1839), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1839), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1839), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1839), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1839), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1839), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1839), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1839), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1839), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1839), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1839), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1839), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_NONNULL] = ACTIONS(1839), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1839), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1839), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1839), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1839), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1839), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1839), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1839), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1839), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1839), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1839), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1839), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1839), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1839), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1839), - [anon_sym_MOZ_RAII] = ACTIONS(1839), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1839), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1839), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1839), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1839), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1839), - [sym_raw_string_literal] = ACTIONS(1841), - }, - [238] = { - [sym_identifier] = ACTIONS(1843), - [aux_sym_preproc_include_token1] = ACTIONS(1843), - [aux_sym_preproc_def_token1] = ACTIONS(1843), - [aux_sym_preproc_if_token1] = ACTIONS(1843), - [aux_sym_preproc_if_token2] = ACTIONS(1843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1843), - [aux_sym_preproc_else_token1] = ACTIONS(1843), - [aux_sym_preproc_elif_token1] = ACTIONS(1843), - [sym_preproc_directive] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1845), - [anon_sym_typedef] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym___attribute__] = ACTIONS(1843), - [anon_sym_COLON_COLON] = ACTIONS(1845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1845), - [anon_sym___declspec] = ACTIONS(1843), - [anon_sym___based] = ACTIONS(1843), - [anon_sym___cdecl] = ACTIONS(1843), - [anon_sym___clrcall] = ACTIONS(1843), - [anon_sym___stdcall] = ACTIONS(1843), - [anon_sym___fastcall] = ACTIONS(1843), - [anon_sym___thiscall] = ACTIONS(1843), - [anon_sym___vectorcall] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_static] = ACTIONS(1843), - [anon_sym_register] = ACTIONS(1843), - [anon_sym_inline] = ACTIONS(1843), - [anon_sym_thread_local] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym_mutable] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_signed] = ACTIONS(1843), - [anon_sym_unsigned] = ACTIONS(1843), - [anon_sym_long] = ACTIONS(1843), - [anon_sym_short] = ACTIONS(1843), - [sym_primitive_type] = ACTIONS(1843), - [anon_sym_enum] = ACTIONS(1843), - [anon_sym_class] = ACTIONS(1843), - [anon_sym_struct] = ACTIONS(1843), - [anon_sym_union] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_switch] = ACTIONS(1843), - [anon_sym_case] = ACTIONS(1843), - [anon_sym_default] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_do] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_goto] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_sizeof] = ACTIONS(1843), - [sym_number_literal] = ACTIONS(1845), - [anon_sym_L_SQUOTE] = ACTIONS(1845), - [anon_sym_u_SQUOTE] = ACTIONS(1845), - [anon_sym_U_SQUOTE] = ACTIONS(1845), - [anon_sym_u8_SQUOTE] = ACTIONS(1845), - [anon_sym_SQUOTE] = ACTIONS(1845), - [anon_sym_L_DQUOTE] = ACTIONS(1845), - [anon_sym_u_DQUOTE] = ACTIONS(1845), - [anon_sym_U_DQUOTE] = ACTIONS(1845), - [anon_sym_u8_DQUOTE] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(1845), [sym_true] = ACTIONS(1843), [sym_false] = ACTIONS(1843), - [sym_null] = ACTIONS(1843), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1843), - [anon_sym_virtual] = ACTIONS(1843), - [anon_sym_explicit] = ACTIONS(1843), - [sym_auto] = ACTIONS(1843), - [anon_sym_typename] = ACTIONS(1843), - [anon_sym_template] = ACTIONS(1843), - [anon_sym_operator] = ACTIONS(1843), - [anon_sym_delete] = ACTIONS(1843), - [anon_sym_throw] = ACTIONS(1843), - [anon_sym_namespace] = ACTIONS(1843), - [anon_sym_using] = ACTIONS(1843), - [anon_sym_static_assert] = ACTIONS(1843), - [anon_sym_co_return] = ACTIONS(1843), - [anon_sym_co_yield] = ACTIONS(1843), - [anon_sym_try] = ACTIONS(1843), - [anon_sym_co_await] = ACTIONS(1843), - [anon_sym_new] = ACTIONS(1843), - [sym_this] = ACTIONS(1843), - [sym_nullptr] = ACTIONS(1843), - [sym_alone_macro] = ACTIONS(1845), - [aux_sym_alone_macro_call_token1] = ACTIONS(1843), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1843), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_FORWARD] = ACTIONS(1843), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1843), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1843), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1843), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1843), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_PS_GET] = ACTIONS(1843), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1843), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1843), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1843), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1843), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1843), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1843), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1843), - [anon_sym_MOZ_COLD] = ACTIONS(1843), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1843), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1843), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1843), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1843), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1843), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1843), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1843), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1843), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1843), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1843), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1843), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1843), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1843), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_NONNULL] = ACTIONS(1843), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1843), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1843), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1843), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1843), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1843), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1843), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1843), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1843), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1843), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1843), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1843), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1843), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1843), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1843), - [anon_sym_MOZ_RAII] = ACTIONS(1843), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1843), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1843), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1843), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1843), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1843), - [sym_raw_string_literal] = ACTIONS(1845), - }, - [239] = { - [sym_identifier] = ACTIONS(1847), - [aux_sym_preproc_include_token1] = ACTIONS(1847), - [aux_sym_preproc_def_token1] = ACTIONS(1847), - [aux_sym_preproc_if_token1] = ACTIONS(1847), - [aux_sym_preproc_if_token2] = ACTIONS(1847), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), - [aux_sym_preproc_else_token1] = ACTIONS(1847), - [aux_sym_preproc_elif_token1] = ACTIONS(1847), - [sym_preproc_directive] = ACTIONS(1847), - [anon_sym_LPAREN2] = ACTIONS(1849), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_AMP_AMP] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_typedef] = ACTIONS(1847), - [anon_sym_extern] = ACTIONS(1847), - [anon_sym___attribute__] = ACTIONS(1847), - [anon_sym_COLON_COLON] = ACTIONS(1849), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1849), - [anon_sym___declspec] = ACTIONS(1847), - [anon_sym___based] = ACTIONS(1847), - [anon_sym___cdecl] = ACTIONS(1847), - [anon_sym___clrcall] = ACTIONS(1847), - [anon_sym___stdcall] = ACTIONS(1847), - [anon_sym___fastcall] = ACTIONS(1847), - [anon_sym___thiscall] = ACTIONS(1847), - [anon_sym___vectorcall] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_register] = ACTIONS(1847), - [anon_sym_inline] = ACTIONS(1847), - [anon_sym_thread_local] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym_constexpr] = ACTIONS(1847), - [anon_sym_signed] = ACTIONS(1847), - [anon_sym_unsigned] = ACTIONS(1847), - [anon_sym_long] = ACTIONS(1847), - [anon_sym_short] = ACTIONS(1847), - [sym_primitive_type] = ACTIONS(1847), - [anon_sym_enum] = ACTIONS(1847), - [anon_sym_class] = ACTIONS(1847), - [anon_sym_struct] = ACTIONS(1847), - [anon_sym_union] = ACTIONS(1847), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1847), - [anon_sym_case] = ACTIONS(1847), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1847), - [anon_sym_do] = ACTIONS(1847), - [anon_sym_for] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1847), - [anon_sym_break] = ACTIONS(1847), - [anon_sym_continue] = ACTIONS(1847), - [anon_sym_goto] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_sizeof] = ACTIONS(1847), - [sym_number_literal] = ACTIONS(1849), - [anon_sym_L_SQUOTE] = ACTIONS(1849), - [anon_sym_u_SQUOTE] = ACTIONS(1849), - [anon_sym_U_SQUOTE] = ACTIONS(1849), - [anon_sym_u8_SQUOTE] = ACTIONS(1849), - [anon_sym_SQUOTE] = ACTIONS(1849), - [anon_sym_L_DQUOTE] = ACTIONS(1849), - [anon_sym_u_DQUOTE] = ACTIONS(1849), - [anon_sym_U_DQUOTE] = ACTIONS(1849), - [anon_sym_u8_DQUOTE] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1849), - [sym_true] = ACTIONS(1847), - [sym_false] = ACTIONS(1847), - [sym_null] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1847), - [anon_sym_virtual] = ACTIONS(1847), - [anon_sym_explicit] = ACTIONS(1847), - [sym_auto] = ACTIONS(1847), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), [anon_sym_typename] = ACTIONS(1847), - [anon_sym_template] = ACTIONS(1847), - [anon_sym_operator] = ACTIONS(1847), - [anon_sym_delete] = ACTIONS(1847), - [anon_sym_throw] = ACTIONS(1847), - [anon_sym_namespace] = ACTIONS(1847), - [anon_sym_using] = ACTIONS(1847), - [anon_sym_static_assert] = ACTIONS(1847), - [anon_sym_co_return] = ACTIONS(1847), - [anon_sym_co_yield] = ACTIONS(1847), - [anon_sym_try] = ACTIONS(1847), - [anon_sym_co_await] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [sym_this] = ACTIONS(1847), - [sym_nullptr] = ACTIONS(1847), - [sym_alone_macro] = ACTIONS(1849), - [aux_sym_alone_macro_call_token1] = ACTIONS(1847), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1847), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_FORWARD] = ACTIONS(1847), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1847), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1847), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1847), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1847), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_PS_GET] = ACTIONS(1847), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1847), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1847), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1847), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1847), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1847), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1847), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1847), - [anon_sym_MOZ_COLD] = ACTIONS(1847), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1847), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1847), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1847), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1847), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1847), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1847), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1847), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1847), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1847), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1847), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1847), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1847), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1847), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_NONNULL] = ACTIONS(1847), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1847), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1847), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1847), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1847), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1847), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1847), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1847), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1847), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1847), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1847), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1847), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1847), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1847), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1847), - [anon_sym_MOZ_RAII] = ACTIONS(1847), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1847), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1847), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1847), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1847), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1847), - [sym_raw_string_literal] = ACTIONS(1849), - }, - [240] = { - [sym_identifier] = ACTIONS(1851), - [aux_sym_preproc_include_token1] = ACTIONS(1851), - [aux_sym_preproc_def_token1] = ACTIONS(1851), - [aux_sym_preproc_if_token1] = ACTIONS(1851), - [aux_sym_preproc_if_token2] = ACTIONS(1851), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1851), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1851), - [aux_sym_preproc_else_token1] = ACTIONS(1851), - [aux_sym_preproc_elif_token1] = ACTIONS(1851), - [sym_preproc_directive] = ACTIONS(1851), - [anon_sym_LPAREN2] = ACTIONS(1853), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_AMP_AMP] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_typedef] = ACTIONS(1851), - [anon_sym_extern] = ACTIONS(1851), - [anon_sym___attribute__] = ACTIONS(1851), - [anon_sym_COLON_COLON] = ACTIONS(1853), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1853), - [anon_sym___declspec] = ACTIONS(1851), - [anon_sym___based] = ACTIONS(1851), - [anon_sym___cdecl] = ACTIONS(1851), - [anon_sym___clrcall] = ACTIONS(1851), - [anon_sym___stdcall] = ACTIONS(1851), - [anon_sym___fastcall] = ACTIONS(1851), - [anon_sym___thiscall] = ACTIONS(1851), - [anon_sym___vectorcall] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_register] = ACTIONS(1851), - [anon_sym_inline] = ACTIONS(1851), - [anon_sym_thread_local] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [anon_sym_volatile] = ACTIONS(1851), - [anon_sym_restrict] = ACTIONS(1851), - [anon_sym__Atomic] = ACTIONS(1851), - [anon_sym_mutable] = ACTIONS(1851), - [anon_sym_constexpr] = ACTIONS(1851), - [anon_sym_signed] = ACTIONS(1851), - [anon_sym_unsigned] = ACTIONS(1851), - [anon_sym_long] = ACTIONS(1851), - [anon_sym_short] = ACTIONS(1851), - [sym_primitive_type] = ACTIONS(1851), - [anon_sym_enum] = ACTIONS(1851), - [anon_sym_class] = ACTIONS(1851), - [anon_sym_struct] = ACTIONS(1851), - [anon_sym_union] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1851), - [anon_sym_case] = ACTIONS(1851), - [anon_sym_default] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_goto] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_sizeof] = ACTIONS(1851), - [sym_number_literal] = ACTIONS(1853), - [anon_sym_L_SQUOTE] = ACTIONS(1853), - [anon_sym_u_SQUOTE] = ACTIONS(1853), - [anon_sym_U_SQUOTE] = ACTIONS(1853), - [anon_sym_u8_SQUOTE] = ACTIONS(1853), - [anon_sym_SQUOTE] = ACTIONS(1853), - [anon_sym_L_DQUOTE] = ACTIONS(1853), - [anon_sym_u_DQUOTE] = ACTIONS(1853), - [anon_sym_U_DQUOTE] = ACTIONS(1853), - [anon_sym_u8_DQUOTE] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1853), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_null] = ACTIONS(1851), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1851), - [anon_sym_virtual] = ACTIONS(1851), - [anon_sym_explicit] = ACTIONS(1851), - [sym_auto] = ACTIONS(1851), - [anon_sym_typename] = ACTIONS(1851), - [anon_sym_template] = ACTIONS(1851), - [anon_sym_operator] = ACTIONS(1851), - [anon_sym_delete] = ACTIONS(1851), - [anon_sym_throw] = ACTIONS(1851), - [anon_sym_namespace] = ACTIONS(1851), - [anon_sym_using] = ACTIONS(1851), - [anon_sym_static_assert] = ACTIONS(1851), - [anon_sym_co_return] = ACTIONS(1851), - [anon_sym_co_yield] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_co_await] = ACTIONS(1851), - [anon_sym_new] = ACTIONS(1851), - [sym_this] = ACTIONS(1851), - [sym_nullptr] = ACTIONS(1851), - [sym_alone_macro] = ACTIONS(1853), - [aux_sym_alone_macro_call_token1] = ACTIONS(1851), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1851), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_FORWARD] = ACTIONS(1851), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1851), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1851), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1851), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1851), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_PS_GET] = ACTIONS(1851), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1851), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1851), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1851), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1851), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1851), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1851), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1851), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1851), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1851), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1851), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1851), - [anon_sym_MOZ_COLD] = ACTIONS(1851), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1851), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1851), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1851), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1851), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1851), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1851), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1851), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1851), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1851), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1851), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1851), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1851), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1851), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1851), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1851), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1851), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1851), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1851), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1851), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1851), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_NONNULL] = ACTIONS(1851), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1851), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1851), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1851), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1851), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1851), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_NORETURN] = ACTIONS(1851), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1851), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1851), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1851), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1851), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1851), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1851), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1851), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1851), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1851), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1851), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1851), - [anon_sym_MOZ_RAII] = ACTIONS(1851), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1851), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1851), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1851), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1851), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1851), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1851), - [sym_raw_string_literal] = ACTIONS(1853), - }, - [241] = { - [sym_identifier] = ACTIONS(1855), - [aux_sym_preproc_include_token1] = ACTIONS(1855), - [aux_sym_preproc_def_token1] = ACTIONS(1855), - [aux_sym_preproc_if_token1] = ACTIONS(1855), - [aux_sym_preproc_if_token2] = ACTIONS(1855), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1855), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1855), - [aux_sym_preproc_else_token1] = ACTIONS(1855), - [aux_sym_preproc_elif_token1] = ACTIONS(1855), - [sym_preproc_directive] = ACTIONS(1855), - [anon_sym_LPAREN2] = ACTIONS(1857), - [anon_sym_BANG] = ACTIONS(1857), - [anon_sym_TILDE] = ACTIONS(1857), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1857), - [anon_sym_AMP_AMP] = ACTIONS(1857), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_SEMI] = ACTIONS(1857), - [anon_sym_typedef] = ACTIONS(1855), - [anon_sym_extern] = ACTIONS(1855), - [anon_sym___attribute__] = ACTIONS(1855), - [anon_sym_COLON_COLON] = ACTIONS(1857), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1857), - [anon_sym___declspec] = ACTIONS(1855), - [anon_sym___based] = ACTIONS(1855), - [anon_sym___cdecl] = ACTIONS(1855), - [anon_sym___clrcall] = ACTIONS(1855), - [anon_sym___stdcall] = ACTIONS(1855), - [anon_sym___fastcall] = ACTIONS(1855), - [anon_sym___thiscall] = ACTIONS(1855), - [anon_sym___vectorcall] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_register] = ACTIONS(1855), - [anon_sym_inline] = ACTIONS(1855), - [anon_sym_thread_local] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_volatile] = ACTIONS(1855), - [anon_sym_restrict] = ACTIONS(1855), - [anon_sym__Atomic] = ACTIONS(1855), - [anon_sym_mutable] = ACTIONS(1855), - [anon_sym_constexpr] = ACTIONS(1855), - [anon_sym_signed] = ACTIONS(1855), - [anon_sym_unsigned] = ACTIONS(1855), - [anon_sym_long] = ACTIONS(1855), - [anon_sym_short] = ACTIONS(1855), - [sym_primitive_type] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), - [anon_sym_class] = ACTIONS(1855), - [anon_sym_struct] = ACTIONS(1855), - [anon_sym_union] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(1855), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_goto] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1857), - [anon_sym_PLUS_PLUS] = ACTIONS(1857), - [anon_sym_sizeof] = ACTIONS(1855), - [sym_number_literal] = ACTIONS(1857), - [anon_sym_L_SQUOTE] = ACTIONS(1857), - [anon_sym_u_SQUOTE] = ACTIONS(1857), - [anon_sym_U_SQUOTE] = ACTIONS(1857), - [anon_sym_u8_SQUOTE] = ACTIONS(1857), - [anon_sym_SQUOTE] = ACTIONS(1857), - [anon_sym_L_DQUOTE] = ACTIONS(1857), - [anon_sym_u_DQUOTE] = ACTIONS(1857), - [anon_sym_U_DQUOTE] = ACTIONS(1857), - [anon_sym_u8_DQUOTE] = ACTIONS(1857), - [anon_sym_DQUOTE] = ACTIONS(1857), - [sym_true] = ACTIONS(1855), - [sym_false] = ACTIONS(1855), - [sym_null] = ACTIONS(1855), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1855), - [anon_sym_virtual] = ACTIONS(1855), - [anon_sym_explicit] = ACTIONS(1855), - [sym_auto] = ACTIONS(1855), - [anon_sym_typename] = ACTIONS(1855), - [anon_sym_template] = ACTIONS(1855), - [anon_sym_operator] = ACTIONS(1855), - [anon_sym_delete] = ACTIONS(1855), - [anon_sym_throw] = ACTIONS(1855), - [anon_sym_namespace] = ACTIONS(1855), - [anon_sym_using] = ACTIONS(1855), - [anon_sym_static_assert] = ACTIONS(1855), - [anon_sym_co_return] = ACTIONS(1855), - [anon_sym_co_yield] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_co_await] = ACTIONS(1855), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), [anon_sym_new] = ACTIONS(1855), - [sym_this] = ACTIONS(1855), - [sym_nullptr] = ACTIONS(1855), - [sym_alone_macro] = ACTIONS(1857), - [aux_sym_alone_macro_call_token1] = ACTIONS(1855), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1855), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_FORWARD] = ACTIONS(1855), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1855), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1855), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1855), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1855), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_PS_GET] = ACTIONS(1855), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1855), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1855), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1855), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1855), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1855), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1855), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1855), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1855), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1855), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1855), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1855), - [anon_sym_MOZ_COLD] = ACTIONS(1855), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1855), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1855), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1855), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1855), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1855), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1855), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1855), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1855), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1855), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1855), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1855), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1855), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1855), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1855), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1855), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1855), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1855), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1855), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1855), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1855), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_NONNULL] = ACTIONS(1855), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1855), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1855), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1855), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1855), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1855), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_NORETURN] = ACTIONS(1855), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1855), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1855), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1855), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1855), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1855), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1855), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1855), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1855), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1855), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1855), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1855), - [anon_sym_MOZ_RAII] = ACTIONS(1855), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1855), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1855), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1855), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1855), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1855), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1855), - [sym_raw_string_literal] = ACTIONS(1857), - }, - [242] = { - [sym_identifier] = ACTIONS(1859), - [aux_sym_preproc_include_token1] = ACTIONS(1859), - [aux_sym_preproc_def_token1] = ACTIONS(1859), - [aux_sym_preproc_if_token1] = ACTIONS(1859), - [aux_sym_preproc_if_token2] = ACTIONS(1859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1859), - [aux_sym_preproc_else_token1] = ACTIONS(1859), - [aux_sym_preproc_elif_token1] = ACTIONS(1859), - [sym_preproc_directive] = ACTIONS(1859), - [anon_sym_LPAREN2] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1859), - [anon_sym_PLUS] = ACTIONS(1859), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1859), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_typedef] = ACTIONS(1859), - [anon_sym_extern] = ACTIONS(1859), - [anon_sym___attribute__] = ACTIONS(1859), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1861), - [anon_sym___declspec] = ACTIONS(1859), - [anon_sym___based] = ACTIONS(1859), - [anon_sym___cdecl] = ACTIONS(1859), - [anon_sym___clrcall] = ACTIONS(1859), - [anon_sym___stdcall] = ACTIONS(1859), - [anon_sym___fastcall] = ACTIONS(1859), - [anon_sym___thiscall] = ACTIONS(1859), - [anon_sym___vectorcall] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_static] = ACTIONS(1859), - [anon_sym_register] = ACTIONS(1859), - [anon_sym_inline] = ACTIONS(1859), - [anon_sym_thread_local] = ACTIONS(1859), - [anon_sym_const] = ACTIONS(1859), - [anon_sym_volatile] = ACTIONS(1859), - [anon_sym_restrict] = ACTIONS(1859), - [anon_sym__Atomic] = ACTIONS(1859), - [anon_sym_mutable] = ACTIONS(1859), - [anon_sym_constexpr] = ACTIONS(1859), - [anon_sym_signed] = ACTIONS(1859), - [anon_sym_unsigned] = ACTIONS(1859), - [anon_sym_long] = ACTIONS(1859), - [anon_sym_short] = ACTIONS(1859), - [sym_primitive_type] = ACTIONS(1859), - [anon_sym_enum] = ACTIONS(1859), - [anon_sym_class] = ACTIONS(1859), - [anon_sym_struct] = ACTIONS(1859), - [anon_sym_union] = ACTIONS(1859), - [anon_sym_if] = ACTIONS(1859), - [anon_sym_switch] = ACTIONS(1859), - [anon_sym_case] = ACTIONS(1859), - [anon_sym_default] = ACTIONS(1859), - [anon_sym_while] = ACTIONS(1859), - [anon_sym_do] = ACTIONS(1859), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(1859), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1859), - [anon_sym_goto] = ACTIONS(1859), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_sizeof] = ACTIONS(1859), - [sym_number_literal] = ACTIONS(1861), - [anon_sym_L_SQUOTE] = ACTIONS(1861), - [anon_sym_u_SQUOTE] = ACTIONS(1861), - [anon_sym_U_SQUOTE] = ACTIONS(1861), - [anon_sym_u8_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_L_DQUOTE] = ACTIONS(1861), - [anon_sym_u_DQUOTE] = ACTIONS(1861), - [anon_sym_U_DQUOTE] = ACTIONS(1861), - [anon_sym_u8_DQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [sym_true] = ACTIONS(1859), - [sym_false] = ACTIONS(1859), - [sym_null] = ACTIONS(1859), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1859), - [anon_sym_virtual] = ACTIONS(1859), - [anon_sym_explicit] = ACTIONS(1859), - [sym_auto] = ACTIONS(1859), - [anon_sym_typename] = ACTIONS(1859), - [anon_sym_template] = ACTIONS(1859), - [anon_sym_operator] = ACTIONS(1859), - [anon_sym_delete] = ACTIONS(1859), - [anon_sym_throw] = ACTIONS(1859), - [anon_sym_namespace] = ACTIONS(1859), - [anon_sym_using] = ACTIONS(1859), - [anon_sym_static_assert] = ACTIONS(1859), - [anon_sym_co_return] = ACTIONS(1859), - [anon_sym_co_yield] = ACTIONS(1859), - [anon_sym_try] = ACTIONS(1859), - [anon_sym_co_await] = ACTIONS(1859), - [anon_sym_new] = ACTIONS(1859), - [sym_this] = ACTIONS(1859), - [sym_nullptr] = ACTIONS(1859), - [sym_alone_macro] = ACTIONS(1861), - [aux_sym_alone_macro_call_token1] = ACTIONS(1859), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), [anon_sym_FORWARD] = ACTIONS(1859), @@ -85867,678 +82101,2123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1859), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1859), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1859), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1859), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1859), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1859), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1859), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1859), - [anon_sym_MOZ_COLD] = ACTIONS(1859), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1859), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1859), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1859), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1859), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1859), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1859), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1859), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1859), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1859), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1859), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1859), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1859), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1859), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1859), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1859), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1859), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1859), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1859), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1859), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1859), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_NONNULL] = ACTIONS(1859), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1859), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1859), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1859), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1859), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1859), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_NORETURN] = ACTIONS(1859), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1859), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1859), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1859), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1859), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1859), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1859), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1859), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1859), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1859), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1859), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1859), - [anon_sym_MOZ_RAII] = ACTIONS(1859), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1859), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1859), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1859), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1859), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1859), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1859), - [sym_raw_string_literal] = ACTIONS(1861), - }, - [243] = { - [sym_identifier] = ACTIONS(1863), - [aux_sym_preproc_include_token1] = ACTIONS(1863), - [aux_sym_preproc_def_token1] = ACTIONS(1863), - [aux_sym_preproc_if_token1] = ACTIONS(1863), - [aux_sym_preproc_if_token2] = ACTIONS(1863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1863), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1863), - [aux_sym_preproc_else_token1] = ACTIONS(1863), - [aux_sym_preproc_elif_token1] = ACTIONS(1863), - [sym_preproc_directive] = ACTIONS(1863), - [anon_sym_LPAREN2] = ACTIONS(1865), - [anon_sym_BANG] = ACTIONS(1865), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_AMP_AMP] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1865), - [anon_sym_typedef] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1863), - [anon_sym___attribute__] = ACTIONS(1863), - [anon_sym_COLON_COLON] = ACTIONS(1865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1865), - [anon_sym___declspec] = ACTIONS(1863), - [anon_sym___based] = ACTIONS(1863), - [anon_sym___cdecl] = ACTIONS(1863), - [anon_sym___clrcall] = ACTIONS(1863), - [anon_sym___stdcall] = ACTIONS(1863), - [anon_sym___fastcall] = ACTIONS(1863), - [anon_sym___thiscall] = ACTIONS(1863), - [anon_sym___vectorcall] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_static] = ACTIONS(1863), - [anon_sym_register] = ACTIONS(1863), - [anon_sym_inline] = ACTIONS(1863), - [anon_sym_thread_local] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [anon_sym_volatile] = ACTIONS(1863), - [anon_sym_restrict] = ACTIONS(1863), - [anon_sym__Atomic] = ACTIONS(1863), - [anon_sym_mutable] = ACTIONS(1863), - [anon_sym_constexpr] = ACTIONS(1863), - [anon_sym_signed] = ACTIONS(1863), - [anon_sym_unsigned] = ACTIONS(1863), - [anon_sym_long] = ACTIONS(1863), - [anon_sym_short] = ACTIONS(1863), - [sym_primitive_type] = ACTIONS(1863), - [anon_sym_enum] = ACTIONS(1863), - [anon_sym_class] = ACTIONS(1863), - [anon_sym_struct] = ACTIONS(1863), - [anon_sym_union] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_switch] = ACTIONS(1863), - [anon_sym_case] = ACTIONS(1863), - [anon_sym_default] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_goto] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1865), - [anon_sym_PLUS_PLUS] = ACTIONS(1865), - [anon_sym_sizeof] = ACTIONS(1863), - [sym_number_literal] = ACTIONS(1865), - [anon_sym_L_SQUOTE] = ACTIONS(1865), - [anon_sym_u_SQUOTE] = ACTIONS(1865), - [anon_sym_U_SQUOTE] = ACTIONS(1865), - [anon_sym_u8_SQUOTE] = ACTIONS(1865), - [anon_sym_SQUOTE] = ACTIONS(1865), - [anon_sym_L_DQUOTE] = ACTIONS(1865), - [anon_sym_u_DQUOTE] = ACTIONS(1865), - [anon_sym_U_DQUOTE] = ACTIONS(1865), - [anon_sym_u8_DQUOTE] = ACTIONS(1865), - [anon_sym_DQUOTE] = ACTIONS(1865), - [sym_true] = ACTIONS(1863), - [sym_false] = ACTIONS(1863), - [sym_null] = ACTIONS(1863), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1863), - [anon_sym_virtual] = ACTIONS(1863), - [anon_sym_explicit] = ACTIONS(1863), - [sym_auto] = ACTIONS(1863), - [anon_sym_typename] = ACTIONS(1863), - [anon_sym_template] = ACTIONS(1863), - [anon_sym_operator] = ACTIONS(1863), - [anon_sym_delete] = ACTIONS(1863), - [anon_sym_throw] = ACTIONS(1863), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_using] = ACTIONS(1863), - [anon_sym_static_assert] = ACTIONS(1863), - [anon_sym_co_return] = ACTIONS(1863), - [anon_sym_co_yield] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_co_await] = ACTIONS(1863), - [anon_sym_new] = ACTIONS(1863), - [sym_this] = ACTIONS(1863), - [sym_nullptr] = ACTIONS(1863), - [sym_alone_macro] = ACTIONS(1865), - [aux_sym_alone_macro_call_token1] = ACTIONS(1863), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1863), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_FORWARD] = ACTIONS(1863), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1863), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1863), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1863), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1863), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_PS_GET] = ACTIONS(1863), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1863), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1863), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1863), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1863), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1863), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1863), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1863), - [anon_sym_MOZ_COLD] = ACTIONS(1863), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1863), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1863), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1863), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1863), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1863), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1863), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1863), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1863), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1863), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1863), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1863), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1863), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1863), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_NONNULL] = ACTIONS(1863), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1863), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1863), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1863), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1863), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1863), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1863), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1863), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1863), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1863), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1863), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1863), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1863), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1863), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1863), - [anon_sym_MOZ_RAII] = ACTIONS(1863), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1863), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1863), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1863), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1863), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1863), - [sym_raw_string_literal] = ACTIONS(1865), - }, - [244] = { - [sym_identifier] = ACTIONS(1867), - [aux_sym_preproc_include_token1] = ACTIONS(1867), - [aux_sym_preproc_def_token1] = ACTIONS(1867), - [aux_sym_preproc_if_token1] = ACTIONS(1867), - [aux_sym_preproc_if_token2] = ACTIONS(1867), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1867), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1867), - [aux_sym_preproc_else_token1] = ACTIONS(1867), - [aux_sym_preproc_elif_token1] = ACTIONS(1867), - [sym_preproc_directive] = ACTIONS(1867), - [anon_sym_LPAREN2] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_AMP_AMP] = ACTIONS(1869), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_typedef] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1867), - [anon_sym___attribute__] = ACTIONS(1867), - [anon_sym_COLON_COLON] = ACTIONS(1869), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1869), - [anon_sym___declspec] = ACTIONS(1867), - [anon_sym___based] = ACTIONS(1867), - [anon_sym___cdecl] = ACTIONS(1867), - [anon_sym___clrcall] = ACTIONS(1867), - [anon_sym___stdcall] = ACTIONS(1867), - [anon_sym___fastcall] = ACTIONS(1867), - [anon_sym___thiscall] = ACTIONS(1867), - [anon_sym___vectorcall] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1867), - [anon_sym_register] = ACTIONS(1867), - [anon_sym_inline] = ACTIONS(1867), - [anon_sym_thread_local] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_restrict] = ACTIONS(1867), - [anon_sym__Atomic] = ACTIONS(1867), - [anon_sym_mutable] = ACTIONS(1867), - [anon_sym_constexpr] = ACTIONS(1867), - [anon_sym_signed] = ACTIONS(1867), - [anon_sym_unsigned] = ACTIONS(1867), - [anon_sym_long] = ACTIONS(1867), - [anon_sym_short] = ACTIONS(1867), - [sym_primitive_type] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1867), - [anon_sym_class] = ACTIONS(1867), - [anon_sym_struct] = ACTIONS(1867), - [anon_sym_union] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1867), - [anon_sym_case] = ACTIONS(1867), - [anon_sym_default] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1867), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_goto] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [anon_sym_PLUS_PLUS] = ACTIONS(1869), - [anon_sym_sizeof] = ACTIONS(1867), - [sym_number_literal] = ACTIONS(1869), - [anon_sym_L_SQUOTE] = ACTIONS(1869), - [anon_sym_u_SQUOTE] = ACTIONS(1869), - [anon_sym_U_SQUOTE] = ACTIONS(1869), - [anon_sym_u8_SQUOTE] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_L_DQUOTE] = ACTIONS(1869), - [anon_sym_u_DQUOTE] = ACTIONS(1869), - [anon_sym_U_DQUOTE] = ACTIONS(1869), - [anon_sym_u8_DQUOTE] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1869), - [sym_true] = ACTIONS(1867), - [sym_false] = ACTIONS(1867), - [sym_null] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1867), - [anon_sym_virtual] = ACTIONS(1867), - [anon_sym_explicit] = ACTIONS(1867), - [sym_auto] = ACTIONS(1867), - [anon_sym_typename] = ACTIONS(1867), - [anon_sym_template] = ACTIONS(1867), - [anon_sym_operator] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_namespace] = ACTIONS(1867), - [anon_sym_using] = ACTIONS(1867), - [anon_sym_static_assert] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1867), - [anon_sym_co_yield] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_co_await] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(1867), - [sym_this] = ACTIONS(1867), - [sym_nullptr] = ACTIONS(1867), - [sym_alone_macro] = ACTIONS(1869), - [aux_sym_alone_macro_call_token1] = ACTIONS(1867), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1867), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_FORWARD] = ACTIONS(1867), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1867), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1867), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1867), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1867), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_PS_GET] = ACTIONS(1867), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1867), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1867), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1867), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1867), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1867), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1867), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1867), - [anon_sym_MOZ_COLD] = ACTIONS(1867), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1867), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1867), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1867), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1867), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1867), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1867), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1867), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1867), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1867), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1867), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1867), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1867), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1867), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_NONNULL] = ACTIONS(1867), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1867), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1867), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1867), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1867), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1867), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1867), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1867), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1867), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1867), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1867), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1867), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1867), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1867), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1867), - [anon_sym_MOZ_RAII] = ACTIONS(1867), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1867), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1867), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1867), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1867), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1867), - [sym_raw_string_literal] = ACTIONS(1869), - }, - [245] = { - [sym_identifier] = ACTIONS(1871), - [aux_sym_preproc_include_token1] = ACTIONS(1871), - [aux_sym_preproc_def_token1] = ACTIONS(1871), - [aux_sym_preproc_if_token1] = ACTIONS(1871), - [aux_sym_preproc_if_token2] = ACTIONS(1871), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1871), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1871), - [aux_sym_preproc_else_token1] = ACTIONS(1871), - [aux_sym_preproc_elif_token1] = ACTIONS(1871), - [sym_preproc_directive] = ACTIONS(1871), - [anon_sym_LPAREN2] = ACTIONS(1873), - [anon_sym_BANG] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1871), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_AMP_AMP] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_typedef] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym___attribute__] = ACTIONS(1871), - [anon_sym_COLON_COLON] = ACTIONS(1873), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), - [anon_sym___declspec] = ACTIONS(1871), - [anon_sym___based] = ACTIONS(1871), - [anon_sym___cdecl] = ACTIONS(1871), - [anon_sym___clrcall] = ACTIONS(1871), - [anon_sym___stdcall] = ACTIONS(1871), - [anon_sym___fastcall] = ACTIONS(1871), - [anon_sym___thiscall] = ACTIONS(1871), - [anon_sym___vectorcall] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1871), - [anon_sym_static] = ACTIONS(1871), - [anon_sym_register] = ACTIONS(1871), - [anon_sym_inline] = ACTIONS(1871), - [anon_sym_thread_local] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [anon_sym_volatile] = ACTIONS(1871), - [anon_sym_restrict] = ACTIONS(1871), - [anon_sym__Atomic] = ACTIONS(1871), - [anon_sym_mutable] = ACTIONS(1871), - [anon_sym_constexpr] = ACTIONS(1871), - [anon_sym_signed] = ACTIONS(1871), - [anon_sym_unsigned] = ACTIONS(1871), - [anon_sym_long] = ACTIONS(1871), - [anon_sym_short] = ACTIONS(1871), - [sym_primitive_type] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), - [anon_sym_class] = ACTIONS(1871), - [anon_sym_struct] = ACTIONS(1871), - [anon_sym_union] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_switch] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_goto] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [anon_sym_PLUS_PLUS] = ACTIONS(1873), - [anon_sym_sizeof] = ACTIONS(1871), - [sym_number_literal] = ACTIONS(1873), - [anon_sym_L_SQUOTE] = ACTIONS(1873), - [anon_sym_u_SQUOTE] = ACTIONS(1873), - [anon_sym_U_SQUOTE] = ACTIONS(1873), - [anon_sym_u8_SQUOTE] = ACTIONS(1873), - [anon_sym_SQUOTE] = ACTIONS(1873), - [anon_sym_L_DQUOTE] = ACTIONS(1873), - [anon_sym_u_DQUOTE] = ACTIONS(1873), - [anon_sym_U_DQUOTE] = ACTIONS(1873), - [anon_sym_u8_DQUOTE] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym_true] = ACTIONS(1871), - [sym_false] = ACTIONS(1871), - [sym_null] = ACTIONS(1871), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1871), - [anon_sym_virtual] = ACTIONS(1871), - [anon_sym_explicit] = ACTIONS(1871), - [sym_auto] = ACTIONS(1871), - [anon_sym_typename] = ACTIONS(1871), - [anon_sym_template] = ACTIONS(1871), - [anon_sym_operator] = ACTIONS(1871), - [anon_sym_delete] = ACTIONS(1871), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_namespace] = ACTIONS(1871), - [anon_sym_using] = ACTIONS(1871), - [anon_sym_static_assert] = ACTIONS(1871), - [anon_sym_co_return] = ACTIONS(1871), - [anon_sym_co_yield] = ACTIONS(1871), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_co_await] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1871), - [sym_this] = ACTIONS(1871), - [sym_nullptr] = ACTIONS(1871), - [sym_alone_macro] = ACTIONS(1873), - [aux_sym_alone_macro_call_token1] = ACTIONS(1871), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1871), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_FORWARD] = ACTIONS(1871), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1871), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1871), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1871), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1871), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_PS_GET] = ACTIONS(1871), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1871), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1871), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1871), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1871), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1871), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1871), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1871), - [anon_sym_MOZ_COLD] = ACTIONS(1871), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1871), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1871), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1871), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1871), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1871), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1871), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1871), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1871), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1871), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1871), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1871), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1871), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1871), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_NONNULL] = ACTIONS(1871), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1871), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1871), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1871), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1871), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1871), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1871), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1871), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1871), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1871), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1871), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1871), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1871), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1871), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1871), - [anon_sym_MOZ_RAII] = ACTIONS(1871), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1871), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1871), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1871), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1871), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1871), - [sym_raw_string_literal] = ACTIONS(1873), - }, - [246] = { - [sym_identifier] = ACTIONS(1875), - [aux_sym_preproc_include_token1] = ACTIONS(1875), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(122)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(7699), + [sym_expression] = STATE(3532), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8201), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(7699), + [sym_variadic_parameter_declaration] = STATE(7699), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym__unary_left_fold] = STATE(8725), + [sym__unary_right_fold] = STATE(8728), + [sym__binary_fold] = STATE(8767), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_RPAREN] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(1809), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(1815), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(123)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(7699), + [sym_expression] = STATE(3545), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8201), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(7699), + [sym_variadic_parameter_declaration] = STATE(7699), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym__unary_left_fold] = STATE(9064), + [sym__unary_right_fold] = STATE(9240), + [sym__binary_fold] = STATE(8466), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_RPAREN] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(1809), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(1815), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(124)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_compound_statement] = STATE(7655), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(7797), + [sym_expression] = STATE(4717), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7655), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(7797), + [sym_variadic_parameter_declaration] = STATE(7797), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6054), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_RPAREN] = ACTIONS(1865), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1665), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(125)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(7699), + [sym_expression] = STATE(3612), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8201), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(7699), + [sym_variadic_parameter_declaration] = STATE(7699), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym__unary_left_fold] = STATE(8949), + [sym__unary_right_fold] = STATE(8980), + [sym__binary_fold] = STATE(8809), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_RPAREN] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(1809), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(1815), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(126)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(7699), + [sym_expression] = STATE(3600), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8201), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(7699), + [sym_variadic_parameter_declaration] = STATE(7699), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym__unary_left_fold] = STATE(8423), + [sym__unary_right_fold] = STATE(8424), + [sym__binary_fold] = STATE(8425), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_RPAREN] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(1809), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(1815), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(127)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(7699), + [sym_expression] = STATE(3594), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8201), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(7699), + [sym_variadic_parameter_declaration] = STATE(7699), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym__unary_left_fold] = STATE(8863), + [sym__unary_right_fold] = STATE(9117), + [sym__binary_fold] = STATE(8556), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5992), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_RPAREN] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(1809), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(1815), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(128)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_compound_statement] = STATE(7655), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(7553), + [sym_expression] = STATE(4717), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7655), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(7553), + [sym_variadic_parameter_declaration] = STATE(7553), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6054), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1869), + [anon_sym_RPAREN] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1665), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(129)] = { + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5547), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_expression] = STATE(4845), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8596), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1605), + [sym_template_function] = STATE(4199), + [sym_condition_declaration] = STATE(8596), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5973), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(1603), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(1781), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1665), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(1261), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(130)] = { + [ts_builtin_sym_end] = ACTIONS(1873), + [sym_identifier] = ACTIONS(1875), + [aux_sym_preproc_include_token1] = ACTIONS(1875), [aux_sym_preproc_def_token1] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1873), + [anon_sym_RPAREN] = ACTIONS(1873), [aux_sym_preproc_if_token1] = ACTIONS(1875), - [aux_sym_preproc_if_token2] = ACTIONS(1875), [aux_sym_preproc_ifdef_token1] = ACTIONS(1875), [aux_sym_preproc_ifdef_token2] = ACTIONS(1875), - [aux_sym_preproc_else_token1] = ACTIONS(1875), - [aux_sym_preproc_elif_token1] = ACTIONS(1875), [sym_preproc_directive] = ACTIONS(1875), - [anon_sym_LPAREN2] = ACTIONS(1877), - [anon_sym_BANG] = ACTIONS(1877), - [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), [anon_sym_DASH] = ACTIONS(1875), [anon_sym_PLUS] = ACTIONS(1875), - [anon_sym_STAR] = ACTIONS(1877), - [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_PIPE_PIPE] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), [anon_sym_AMP] = ACTIONS(1875), - [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym___extension__] = ACTIONS(1875), [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_virtual] = ACTIONS(1875), [anon_sym_extern] = ACTIONS(1875), [anon_sym___attribute__] = ACTIONS(1875), - [anon_sym_COLON_COLON] = ACTIONS(1877), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1877), + [anon_sym___attribute] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), [anon_sym___declspec] = ACTIONS(1875), [anon_sym___based] = ACTIONS(1875), [anon_sym___cdecl] = ACTIONS(1875), @@ -86547,28 +84226,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1875), [anon_sym___thiscall] = ACTIONS(1875), [anon_sym___vectorcall] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), [anon_sym_LBRACK] = ACTIONS(1875), [anon_sym_static] = ACTIONS(1875), + [anon_sym_EQ] = ACTIONS(1873), [anon_sym_register] = ACTIONS(1875), [anon_sym_inline] = ACTIONS(1875), + [anon_sym___inline] = ACTIONS(1875), + [anon_sym___inline__] = ACTIONS(1875), + [anon_sym___forceinline] = ACTIONS(1875), [anon_sym_thread_local] = ACTIONS(1875), + [anon_sym___thread] = ACTIONS(1875), [anon_sym_const] = ACTIONS(1875), + [anon_sym_constexpr] = ACTIONS(1875), [anon_sym_volatile] = ACTIONS(1875), [anon_sym_restrict] = ACTIONS(1875), + [anon_sym___restrict__] = ACTIONS(1875), [anon_sym__Atomic] = ACTIONS(1875), + [anon_sym__Noreturn] = ACTIONS(1875), + [anon_sym_noreturn] = ACTIONS(1875), + [anon_sym__Nonnull] = ACTIONS(1875), [anon_sym_mutable] = ACTIONS(1875), - [anon_sym_constexpr] = ACTIONS(1875), - [anon_sym_signed] = ACTIONS(1875), - [anon_sym_unsigned] = ACTIONS(1875), - [anon_sym_long] = ACTIONS(1875), - [anon_sym_short] = ACTIONS(1875), + [anon_sym_constinit] = ACTIONS(1875), + [anon_sym_consteval] = ACTIONS(1875), + [anon_sym_alignas] = ACTIONS(1875), + [anon_sym__Alignas] = ACTIONS(1875), [sym_primitive_type] = ACTIONS(1875), [anon_sym_enum] = ACTIONS(1875), [anon_sym_class] = ACTIONS(1875), [anon_sym_struct] = ACTIONS(1875), [anon_sym_union] = ACTIONS(1875), [anon_sym_if] = ACTIONS(1875), + [anon_sym_else] = ACTIONS(1875), [anon_sym_switch] = ACTIONS(1875), [anon_sym_case] = ACTIONS(1875), [anon_sym_default] = ACTIONS(1875), @@ -86579,44 +84272,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1875), [anon_sym_continue] = ACTIONS(1875), [anon_sym_goto] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym___try] = ACTIONS(1875), + [anon_sym___except] = ACTIONS(1875), + [anon_sym___finally] = ACTIONS(1875), + [anon_sym___leave] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(1875), + [anon_sym_compl] = ACTIONS(1875), + [anon_sym_or] = ACTIONS(1875), + [anon_sym_and] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1873), [anon_sym_sizeof] = ACTIONS(1875), - [sym_number_literal] = ACTIONS(1877), - [anon_sym_L_SQUOTE] = ACTIONS(1877), - [anon_sym_u_SQUOTE] = ACTIONS(1877), - [anon_sym_U_SQUOTE] = ACTIONS(1877), - [anon_sym_u8_SQUOTE] = ACTIONS(1877), - [anon_sym_SQUOTE] = ACTIONS(1877), - [anon_sym_L_DQUOTE] = ACTIONS(1877), - [anon_sym_u_DQUOTE] = ACTIONS(1877), - [anon_sym_U_DQUOTE] = ACTIONS(1877), - [anon_sym_u8_DQUOTE] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym___alignof__] = ACTIONS(1875), + [anon_sym___alignof] = ACTIONS(1875), + [anon_sym__alignof] = ACTIONS(1875), + [anon_sym_alignof] = ACTIONS(1875), + [anon_sym__Alignof] = ACTIONS(1875), + [anon_sym_offsetof] = ACTIONS(1875), + [anon_sym__Generic] = ACTIONS(1875), + [anon_sym_asm] = ACTIONS(1875), + [anon_sym___asm__] = ACTIONS(1875), + [anon_sym___asm] = ACTIONS(1875), + [sym_number_literal] = ACTIONS(1873), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1873), + [anon_sym_u_DQUOTE] = ACTIONS(1873), + [anon_sym_U_DQUOTE] = ACTIONS(1873), + [anon_sym_u8_DQUOTE] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), [sym_true] = ACTIONS(1875), [sym_false] = ACTIONS(1875), - [sym_null] = ACTIONS(1875), + [anon_sym_NULL] = ACTIONS(1875), + [anon_sym_nullptr] = ACTIONS(1875), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1875), [anon_sym_decltype] = ACTIONS(1875), - [anon_sym_virtual] = ACTIONS(1875), + [anon_sym_final] = ACTIONS(1875), + [anon_sym_override] = ACTIONS(1875), [anon_sym_explicit] = ACTIONS(1875), - [sym_auto] = ACTIONS(1875), [anon_sym_typename] = ACTIONS(1875), [anon_sym_template] = ACTIONS(1875), + [anon_sym_GT2] = ACTIONS(1873), [anon_sym_operator] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), [anon_sym_delete] = ACTIONS(1875), [anon_sym_throw] = ACTIONS(1875), [anon_sym_namespace] = ACTIONS(1875), [anon_sym_using] = ACTIONS(1875), [anon_sym_static_assert] = ACTIONS(1875), + [anon_sym_concept] = ACTIONS(1875), [anon_sym_co_return] = ACTIONS(1875), [anon_sym_co_yield] = ACTIONS(1875), - [anon_sym_try] = ACTIONS(1875), + [anon_sym_catch] = ACTIONS(1875), + [anon_sym_R_DQUOTE] = ACTIONS(1873), + [anon_sym_LR_DQUOTE] = ACTIONS(1873), + [anon_sym_uR_DQUOTE] = ACTIONS(1873), + [anon_sym_UR_DQUOTE] = ACTIONS(1873), + [anon_sym_u8R_DQUOTE] = ACTIONS(1873), [anon_sym_co_await] = ACTIONS(1875), [anon_sym_new] = ACTIONS(1875), + [anon_sym_requires] = ACTIONS(1875), [sym_this] = ACTIONS(1875), - [sym_nullptr] = ACTIONS(1875), - [sym_alone_macro] = ACTIONS(1877), + [sym_alone_macro] = ACTIONS(1873), [aux_sym_alone_macro_call_token1] = ACTIONS(1875), [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1875), [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1875), @@ -86704,33 +84425,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1875), [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), - [sym_raw_string_literal] = ACTIONS(1877), }, - [247] = { + [STATE(131)] = { + [ts_builtin_sym_end] = ACTIONS(1877), [sym_identifier] = ACTIONS(1879), [aux_sym_preproc_include_token1] = ACTIONS(1879), [aux_sym_preproc_def_token1] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_RPAREN] = ACTIONS(1877), [aux_sym_preproc_if_token1] = ACTIONS(1879), - [aux_sym_preproc_if_token2] = ACTIONS(1879), [aux_sym_preproc_ifdef_token1] = ACTIONS(1879), [aux_sym_preproc_ifdef_token2] = ACTIONS(1879), - [aux_sym_preproc_else_token1] = ACTIONS(1879), - [aux_sym_preproc_elif_token1] = ACTIONS(1879), [sym_preproc_directive] = ACTIONS(1879), - [anon_sym_LPAREN2] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), [anon_sym_DASH] = ACTIONS(1879), [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym___extension__] = ACTIONS(1879), [anon_sym_typedef] = ACTIONS(1879), + [anon_sym_virtual] = ACTIONS(1879), [anon_sym_extern] = ACTIONS(1879), [anon_sym___attribute__] = ACTIONS(1879), - [anon_sym_COLON_COLON] = ACTIONS(1881), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1881), + [anon_sym___attribute] = ACTIONS(1879), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1877), [anon_sym___declspec] = ACTIONS(1879), [anon_sym___based] = ACTIONS(1879), [anon_sym___cdecl] = ACTIONS(1879), @@ -86739,28 +84463,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1879), [anon_sym___thiscall] = ACTIONS(1879), [anon_sym___vectorcall] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_signed] = ACTIONS(1879), + [anon_sym_unsigned] = ACTIONS(1879), + [anon_sym_long] = ACTIONS(1879), + [anon_sym_short] = ACTIONS(1879), [anon_sym_LBRACK] = ACTIONS(1879), [anon_sym_static] = ACTIONS(1879), + [anon_sym_EQ] = ACTIONS(1877), [anon_sym_register] = ACTIONS(1879), [anon_sym_inline] = ACTIONS(1879), + [anon_sym___inline] = ACTIONS(1879), + [anon_sym___inline__] = ACTIONS(1879), + [anon_sym___forceinline] = ACTIONS(1879), [anon_sym_thread_local] = ACTIONS(1879), + [anon_sym___thread] = ACTIONS(1879), [anon_sym_const] = ACTIONS(1879), + [anon_sym_constexpr] = ACTIONS(1879), [anon_sym_volatile] = ACTIONS(1879), [anon_sym_restrict] = ACTIONS(1879), + [anon_sym___restrict__] = ACTIONS(1879), [anon_sym__Atomic] = ACTIONS(1879), + [anon_sym__Noreturn] = ACTIONS(1879), + [anon_sym_noreturn] = ACTIONS(1879), + [anon_sym__Nonnull] = ACTIONS(1879), [anon_sym_mutable] = ACTIONS(1879), - [anon_sym_constexpr] = ACTIONS(1879), - [anon_sym_signed] = ACTIONS(1879), - [anon_sym_unsigned] = ACTIONS(1879), - [anon_sym_long] = ACTIONS(1879), - [anon_sym_short] = ACTIONS(1879), + [anon_sym_constinit] = ACTIONS(1879), + [anon_sym_consteval] = ACTIONS(1879), + [anon_sym_alignas] = ACTIONS(1879), + [anon_sym__Alignas] = ACTIONS(1879), [sym_primitive_type] = ACTIONS(1879), [anon_sym_enum] = ACTIONS(1879), [anon_sym_class] = ACTIONS(1879), [anon_sym_struct] = ACTIONS(1879), [anon_sym_union] = ACTIONS(1879), [anon_sym_if] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), [anon_sym_switch] = ACTIONS(1879), [anon_sym_case] = ACTIONS(1879), [anon_sym_default] = ACTIONS(1879), @@ -86771,44 +84509,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1879), [anon_sym_continue] = ACTIONS(1879), [anon_sym_goto] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym___try] = ACTIONS(1879), + [anon_sym___except] = ACTIONS(1879), + [anon_sym___finally] = ACTIONS(1879), + [anon_sym___leave] = ACTIONS(1879), + [anon_sym_not] = ACTIONS(1879), + [anon_sym_compl] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [anon_sym_and] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), [anon_sym_sizeof] = ACTIONS(1879), - [sym_number_literal] = ACTIONS(1881), - [anon_sym_L_SQUOTE] = ACTIONS(1881), - [anon_sym_u_SQUOTE] = ACTIONS(1881), - [anon_sym_U_SQUOTE] = ACTIONS(1881), - [anon_sym_u8_SQUOTE] = ACTIONS(1881), - [anon_sym_SQUOTE] = ACTIONS(1881), - [anon_sym_L_DQUOTE] = ACTIONS(1881), - [anon_sym_u_DQUOTE] = ACTIONS(1881), - [anon_sym_U_DQUOTE] = ACTIONS(1881), - [anon_sym_u8_DQUOTE] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), + [anon_sym___alignof__] = ACTIONS(1879), + [anon_sym___alignof] = ACTIONS(1879), + [anon_sym__alignof] = ACTIONS(1879), + [anon_sym_alignof] = ACTIONS(1879), + [anon_sym__Alignof] = ACTIONS(1879), + [anon_sym_offsetof] = ACTIONS(1879), + [anon_sym__Generic] = ACTIONS(1879), + [anon_sym_asm] = ACTIONS(1879), + [anon_sym___asm__] = ACTIONS(1879), + [anon_sym___asm] = ACTIONS(1879), + [sym_number_literal] = ACTIONS(1877), + [anon_sym_L_SQUOTE] = ACTIONS(1877), + [anon_sym_u_SQUOTE] = ACTIONS(1877), + [anon_sym_U_SQUOTE] = ACTIONS(1877), + [anon_sym_u8_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_L_DQUOTE] = ACTIONS(1877), + [anon_sym_u_DQUOTE] = ACTIONS(1877), + [anon_sym_U_DQUOTE] = ACTIONS(1877), + [anon_sym_u8_DQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), [sym_true] = ACTIONS(1879), [sym_false] = ACTIONS(1879), - [sym_null] = ACTIONS(1879), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1879), [anon_sym_decltype] = ACTIONS(1879), - [anon_sym_virtual] = ACTIONS(1879), + [anon_sym_final] = ACTIONS(1879), + [anon_sym_override] = ACTIONS(1879), [anon_sym_explicit] = ACTIONS(1879), - [sym_auto] = ACTIONS(1879), [anon_sym_typename] = ACTIONS(1879), [anon_sym_template] = ACTIONS(1879), + [anon_sym_GT2] = ACTIONS(1877), [anon_sym_operator] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), [anon_sym_delete] = ACTIONS(1879), [anon_sym_throw] = ACTIONS(1879), [anon_sym_namespace] = ACTIONS(1879), [anon_sym_using] = ACTIONS(1879), [anon_sym_static_assert] = ACTIONS(1879), + [anon_sym_concept] = ACTIONS(1879), [anon_sym_co_return] = ACTIONS(1879), [anon_sym_co_yield] = ACTIONS(1879), - [anon_sym_try] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [anon_sym_R_DQUOTE] = ACTIONS(1877), + [anon_sym_LR_DQUOTE] = ACTIONS(1877), + [anon_sym_uR_DQUOTE] = ACTIONS(1877), + [anon_sym_UR_DQUOTE] = ACTIONS(1877), + [anon_sym_u8R_DQUOTE] = ACTIONS(1877), [anon_sym_co_await] = ACTIONS(1879), [anon_sym_new] = ACTIONS(1879), + [anon_sym_requires] = ACTIONS(1879), [sym_this] = ACTIONS(1879), - [sym_nullptr] = ACTIONS(1879), - [sym_alone_macro] = ACTIONS(1881), + [sym_alone_macro] = ACTIONS(1877), [aux_sym_alone_macro_call_token1] = ACTIONS(1879), [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1879), [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1879), @@ -86896,1089 +84662,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1879), [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1879), [anon_sym_JS_PUBLIC_API] = ACTIONS(1879), - [sym_raw_string_literal] = ACTIONS(1881), - }, - [248] = { - [sym_identifier] = ACTIONS(1883), - [aux_sym_preproc_include_token1] = ACTIONS(1883), - [aux_sym_preproc_def_token1] = ACTIONS(1883), - [aux_sym_preproc_if_token1] = ACTIONS(1883), - [aux_sym_preproc_if_token2] = ACTIONS(1883), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1883), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1883), - [aux_sym_preproc_else_token1] = ACTIONS(1883), - [aux_sym_preproc_elif_token1] = ACTIONS(1883), - [sym_preproc_directive] = ACTIONS(1883), - [anon_sym_LPAREN2] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1883), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_typedef] = ACTIONS(1883), - [anon_sym_extern] = ACTIONS(1883), - [anon_sym___attribute__] = ACTIONS(1883), - [anon_sym_COLON_COLON] = ACTIONS(1885), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1885), - [anon_sym___declspec] = ACTIONS(1883), - [anon_sym___based] = ACTIONS(1883), - [anon_sym___cdecl] = ACTIONS(1883), - [anon_sym___clrcall] = ACTIONS(1883), - [anon_sym___stdcall] = ACTIONS(1883), - [anon_sym___fastcall] = ACTIONS(1883), - [anon_sym___thiscall] = ACTIONS(1883), - [anon_sym___vectorcall] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1883), - [anon_sym_static] = ACTIONS(1883), - [anon_sym_register] = ACTIONS(1883), - [anon_sym_inline] = ACTIONS(1883), - [anon_sym_thread_local] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(1883), - [anon_sym_volatile] = ACTIONS(1883), - [anon_sym_restrict] = ACTIONS(1883), - [anon_sym__Atomic] = ACTIONS(1883), - [anon_sym_mutable] = ACTIONS(1883), - [anon_sym_constexpr] = ACTIONS(1883), - [anon_sym_signed] = ACTIONS(1883), - [anon_sym_unsigned] = ACTIONS(1883), - [anon_sym_long] = ACTIONS(1883), - [anon_sym_short] = ACTIONS(1883), - [sym_primitive_type] = ACTIONS(1883), - [anon_sym_enum] = ACTIONS(1883), - [anon_sym_class] = ACTIONS(1883), - [anon_sym_struct] = ACTIONS(1883), - [anon_sym_union] = ACTIONS(1883), - [anon_sym_if] = ACTIONS(1883), - [anon_sym_switch] = ACTIONS(1883), - [anon_sym_case] = ACTIONS(1883), - [anon_sym_default] = ACTIONS(1883), - [anon_sym_while] = ACTIONS(1883), - [anon_sym_do] = ACTIONS(1883), - [anon_sym_for] = ACTIONS(1883), - [anon_sym_return] = ACTIONS(1883), - [anon_sym_break] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(1883), - [anon_sym_goto] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_sizeof] = ACTIONS(1883), - [sym_number_literal] = ACTIONS(1885), - [anon_sym_L_SQUOTE] = ACTIONS(1885), - [anon_sym_u_SQUOTE] = ACTIONS(1885), - [anon_sym_U_SQUOTE] = ACTIONS(1885), - [anon_sym_u8_SQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_L_DQUOTE] = ACTIONS(1885), - [anon_sym_u_DQUOTE] = ACTIONS(1885), - [anon_sym_U_DQUOTE] = ACTIONS(1885), - [anon_sym_u8_DQUOTE] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym_true] = ACTIONS(1883), - [sym_false] = ACTIONS(1883), - [sym_null] = ACTIONS(1883), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1883), - [anon_sym_virtual] = ACTIONS(1883), - [anon_sym_explicit] = ACTIONS(1883), - [sym_auto] = ACTIONS(1883), - [anon_sym_typename] = ACTIONS(1883), - [anon_sym_template] = ACTIONS(1883), - [anon_sym_operator] = ACTIONS(1883), - [anon_sym_delete] = ACTIONS(1883), - [anon_sym_throw] = ACTIONS(1883), - [anon_sym_namespace] = ACTIONS(1883), - [anon_sym_using] = ACTIONS(1883), - [anon_sym_static_assert] = ACTIONS(1883), - [anon_sym_co_return] = ACTIONS(1883), - [anon_sym_co_yield] = ACTIONS(1883), - [anon_sym_try] = ACTIONS(1883), - [anon_sym_co_await] = ACTIONS(1883), - [anon_sym_new] = ACTIONS(1883), - [sym_this] = ACTIONS(1883), - [sym_nullptr] = ACTIONS(1883), - [sym_alone_macro] = ACTIONS(1885), - [aux_sym_alone_macro_call_token1] = ACTIONS(1883), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1883), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_FORWARD] = ACTIONS(1883), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1883), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1883), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1883), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1883), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_PS_GET] = ACTIONS(1883), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1883), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1883), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1883), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1883), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1883), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1883), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1883), - [anon_sym_MOZ_COLD] = ACTIONS(1883), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1883), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1883), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1883), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1883), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1883), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1883), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1883), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1883), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1883), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1883), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1883), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1883), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1883), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_NONNULL] = ACTIONS(1883), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1883), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1883), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1883), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1883), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1883), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1883), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1883), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1883), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1883), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1883), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1883), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1883), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1883), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1883), - [anon_sym_MOZ_RAII] = ACTIONS(1883), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1883), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1883), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1883), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1883), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1883), - [sym_raw_string_literal] = ACTIONS(1885), - }, - [249] = { - [sym_identifier] = ACTIONS(1887), - [aux_sym_preproc_include_token1] = ACTIONS(1887), - [aux_sym_preproc_def_token1] = ACTIONS(1887), - [aux_sym_preproc_if_token1] = ACTIONS(1887), - [aux_sym_preproc_if_token2] = ACTIONS(1887), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1887), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1887), - [aux_sym_preproc_else_token1] = ACTIONS(1887), - [aux_sym_preproc_elif_token1] = ACTIONS(1887), - [sym_preproc_directive] = ACTIONS(1887), - [anon_sym_LPAREN2] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_typedef] = ACTIONS(1887), - [anon_sym_extern] = ACTIONS(1887), - [anon_sym___attribute__] = ACTIONS(1887), - [anon_sym_COLON_COLON] = ACTIONS(1889), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1889), - [anon_sym___declspec] = ACTIONS(1887), - [anon_sym___based] = ACTIONS(1887), - [anon_sym___cdecl] = ACTIONS(1887), - [anon_sym___clrcall] = ACTIONS(1887), - [anon_sym___stdcall] = ACTIONS(1887), - [anon_sym___fastcall] = ACTIONS(1887), - [anon_sym___thiscall] = ACTIONS(1887), - [anon_sym___vectorcall] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_register] = ACTIONS(1887), - [anon_sym_inline] = ACTIONS(1887), - [anon_sym_thread_local] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [anon_sym_volatile] = ACTIONS(1887), - [anon_sym_restrict] = ACTIONS(1887), - [anon_sym__Atomic] = ACTIONS(1887), - [anon_sym_mutable] = ACTIONS(1887), - [anon_sym_constexpr] = ACTIONS(1887), - [anon_sym_signed] = ACTIONS(1887), - [anon_sym_unsigned] = ACTIONS(1887), - [anon_sym_long] = ACTIONS(1887), - [anon_sym_short] = ACTIONS(1887), - [sym_primitive_type] = ACTIONS(1887), - [anon_sym_enum] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1887), - [anon_sym_union] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_switch] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_default] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_do] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_goto] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_sizeof] = ACTIONS(1887), - [sym_number_literal] = ACTIONS(1889), - [anon_sym_L_SQUOTE] = ACTIONS(1889), - [anon_sym_u_SQUOTE] = ACTIONS(1889), - [anon_sym_U_SQUOTE] = ACTIONS(1889), - [anon_sym_u8_SQUOTE] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1889), - [anon_sym_L_DQUOTE] = ACTIONS(1889), - [anon_sym_u_DQUOTE] = ACTIONS(1889), - [anon_sym_U_DQUOTE] = ACTIONS(1889), - [anon_sym_u8_DQUOTE] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [sym_true] = ACTIONS(1887), - [sym_false] = ACTIONS(1887), - [sym_null] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1887), - [anon_sym_virtual] = ACTIONS(1887), - [anon_sym_explicit] = ACTIONS(1887), - [sym_auto] = ACTIONS(1887), - [anon_sym_typename] = ACTIONS(1887), - [anon_sym_template] = ACTIONS(1887), - [anon_sym_operator] = ACTIONS(1887), - [anon_sym_delete] = ACTIONS(1887), - [anon_sym_throw] = ACTIONS(1887), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_using] = ACTIONS(1887), - [anon_sym_static_assert] = ACTIONS(1887), - [anon_sym_co_return] = ACTIONS(1887), - [anon_sym_co_yield] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_co_await] = ACTIONS(1887), - [anon_sym_new] = ACTIONS(1887), - [sym_this] = ACTIONS(1887), - [sym_nullptr] = ACTIONS(1887), - [sym_alone_macro] = ACTIONS(1889), - [aux_sym_alone_macro_call_token1] = ACTIONS(1887), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1887), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_FORWARD] = ACTIONS(1887), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1887), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1887), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1887), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1887), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_PS_GET] = ACTIONS(1887), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1887), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1887), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1887), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1887), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1887), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1887), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1887), - [anon_sym_MOZ_COLD] = ACTIONS(1887), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1887), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1887), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1887), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1887), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1887), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1887), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1887), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1887), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1887), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1887), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1887), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1887), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1887), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_NONNULL] = ACTIONS(1887), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1887), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1887), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1887), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1887), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1887), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1887), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1887), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1887), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1887), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1887), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1887), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1887), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1887), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1887), - [anon_sym_MOZ_RAII] = ACTIONS(1887), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1887), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1887), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1887), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1887), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1887), - [sym_raw_string_literal] = ACTIONS(1889), - }, - [250] = { - [sym_identifier] = ACTIONS(1891), - [aux_sym_preproc_include_token1] = ACTIONS(1891), - [aux_sym_preproc_def_token1] = ACTIONS(1891), - [aux_sym_preproc_if_token1] = ACTIONS(1891), - [aux_sym_preproc_if_token2] = ACTIONS(1891), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1891), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1891), - [aux_sym_preproc_else_token1] = ACTIONS(1891), - [aux_sym_preproc_elif_token1] = ACTIONS(1891), - [sym_preproc_directive] = ACTIONS(1891), - [anon_sym_LPAREN2] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_TILDE] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1893), + }, + [STATE(132)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1890), [anon_sym_AMP_AMP] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_typedef] = ACTIONS(1891), - [anon_sym_extern] = ACTIONS(1891), - [anon_sym___attribute__] = ACTIONS(1891), - [anon_sym_COLON_COLON] = ACTIONS(1893), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), - [anon_sym___declspec] = ACTIONS(1891), - [anon_sym___based] = ACTIONS(1891), - [anon_sym___cdecl] = ACTIONS(1891), - [anon_sym___clrcall] = ACTIONS(1891), - [anon_sym___stdcall] = ACTIONS(1891), - [anon_sym___fastcall] = ACTIONS(1891), - [anon_sym___thiscall] = ACTIONS(1891), - [anon_sym___vectorcall] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_static] = ACTIONS(1891), - [anon_sym_register] = ACTIONS(1891), - [anon_sym_inline] = ACTIONS(1891), - [anon_sym_thread_local] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1891), - [anon_sym_volatile] = ACTIONS(1891), - [anon_sym_restrict] = ACTIONS(1891), - [anon_sym__Atomic] = ACTIONS(1891), - [anon_sym_mutable] = ACTIONS(1891), - [anon_sym_constexpr] = ACTIONS(1891), - [anon_sym_signed] = ACTIONS(1891), - [anon_sym_unsigned] = ACTIONS(1891), - [anon_sym_long] = ACTIONS(1891), - [anon_sym_short] = ACTIONS(1891), - [sym_primitive_type] = ACTIONS(1891), - [anon_sym_enum] = ACTIONS(1891), - [anon_sym_class] = ACTIONS(1891), - [anon_sym_struct] = ACTIONS(1891), - [anon_sym_union] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_switch] = ACTIONS(1891), - [anon_sym_case] = ACTIONS(1891), - [anon_sym_default] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_do] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_return] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_goto] = ACTIONS(1891), - [anon_sym_DASH_DASH] = ACTIONS(1893), - [anon_sym_PLUS_PLUS] = ACTIONS(1893), - [anon_sym_sizeof] = ACTIONS(1891), - [sym_number_literal] = ACTIONS(1893), - [anon_sym_L_SQUOTE] = ACTIONS(1893), - [anon_sym_u_SQUOTE] = ACTIONS(1893), - [anon_sym_U_SQUOTE] = ACTIONS(1893), - [anon_sym_u8_SQUOTE] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_L_DQUOTE] = ACTIONS(1893), - [anon_sym_u_DQUOTE] = ACTIONS(1893), - [anon_sym_U_DQUOTE] = ACTIONS(1893), - [anon_sym_u8_DQUOTE] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym_true] = ACTIONS(1891), - [sym_false] = ACTIONS(1891), - [sym_null] = ACTIONS(1891), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1891), - [anon_sym_virtual] = ACTIONS(1891), - [anon_sym_explicit] = ACTIONS(1891), - [sym_auto] = ACTIONS(1891), - [anon_sym_typename] = ACTIONS(1891), - [anon_sym_template] = ACTIONS(1891), - [anon_sym_operator] = ACTIONS(1891), - [anon_sym_delete] = ACTIONS(1891), - [anon_sym_throw] = ACTIONS(1891), - [anon_sym_namespace] = ACTIONS(1891), - [anon_sym_using] = ACTIONS(1891), - [anon_sym_static_assert] = ACTIONS(1891), - [anon_sym_co_return] = ACTIONS(1891), - [anon_sym_co_yield] = ACTIONS(1891), - [anon_sym_try] = ACTIONS(1891), - [anon_sym_co_await] = ACTIONS(1891), - [anon_sym_new] = ACTIONS(1891), - [sym_this] = ACTIONS(1891), - [sym_nullptr] = ACTIONS(1891), - [sym_alone_macro] = ACTIONS(1893), - [aux_sym_alone_macro_call_token1] = ACTIONS(1891), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1891), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_FORWARD] = ACTIONS(1891), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1891), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1891), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1891), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1891), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_PS_GET] = ACTIONS(1891), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1891), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1891), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1891), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1891), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1891), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1891), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1891), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1891), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1891), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1891), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1891), - [anon_sym_MOZ_COLD] = ACTIONS(1891), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1891), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1891), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1891), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1891), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1891), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1891), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1891), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1891), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1891), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1891), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1891), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1891), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1891), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1891), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1891), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1891), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1891), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1891), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1891), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1891), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_NONNULL] = ACTIONS(1891), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1891), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1891), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1891), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1891), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1891), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_NORETURN] = ACTIONS(1891), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1891), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1891), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1891), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1891), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1891), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1891), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1891), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1891), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1891), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1891), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1891), - [anon_sym_MOZ_RAII] = ACTIONS(1891), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1891), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1891), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1891), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1891), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1891), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1891), - [sym_raw_string_literal] = ACTIONS(1893), - }, - [251] = { - [sym_identifier] = ACTIONS(1895), - [aux_sym_preproc_include_token1] = ACTIONS(1895), - [aux_sym_preproc_def_token1] = ACTIONS(1895), - [aux_sym_preproc_if_token1] = ACTIONS(1895), - [aux_sym_preproc_if_token2] = ACTIONS(1895), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1895), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1895), - [aux_sym_preproc_else_token1] = ACTIONS(1895), - [aux_sym_preproc_elif_token1] = ACTIONS(1895), - [sym_preproc_directive] = ACTIONS(1895), - [anon_sym_LPAREN2] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1895), - [anon_sym_PLUS] = ACTIONS(1895), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_AMP_AMP] = ACTIONS(1897), [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_typedef] = ACTIONS(1895), - [anon_sym_extern] = ACTIONS(1895), - [anon_sym___attribute__] = ACTIONS(1895), - [anon_sym_COLON_COLON] = ACTIONS(1897), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1897), - [anon_sym___declspec] = ACTIONS(1895), - [anon_sym___based] = ACTIONS(1895), - [anon_sym___cdecl] = ACTIONS(1895), - [anon_sym___clrcall] = ACTIONS(1895), - [anon_sym___stdcall] = ACTIONS(1895), - [anon_sym___fastcall] = ACTIONS(1895), - [anon_sym___thiscall] = ACTIONS(1895), - [anon_sym___vectorcall] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1895), - [anon_sym_static] = ACTIONS(1895), - [anon_sym_register] = ACTIONS(1895), - [anon_sym_inline] = ACTIONS(1895), - [anon_sym_thread_local] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [anon_sym_volatile] = ACTIONS(1895), - [anon_sym_restrict] = ACTIONS(1895), - [anon_sym__Atomic] = ACTIONS(1895), - [anon_sym_mutable] = ACTIONS(1895), - [anon_sym_constexpr] = ACTIONS(1895), - [anon_sym_signed] = ACTIONS(1895), - [anon_sym_unsigned] = ACTIONS(1895), - [anon_sym_long] = ACTIONS(1895), - [anon_sym_short] = ACTIONS(1895), - [sym_primitive_type] = ACTIONS(1895), - [anon_sym_enum] = ACTIONS(1895), - [anon_sym_class] = ACTIONS(1895), - [anon_sym_struct] = ACTIONS(1895), - [anon_sym_union] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_switch] = ACTIONS(1895), - [anon_sym_case] = ACTIONS(1895), - [anon_sym_default] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_do] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_goto] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_sizeof] = ACTIONS(1895), - [sym_number_literal] = ACTIONS(1897), - [anon_sym_L_SQUOTE] = ACTIONS(1897), - [anon_sym_u_SQUOTE] = ACTIONS(1897), - [anon_sym_U_SQUOTE] = ACTIONS(1897), - [anon_sym_u8_SQUOTE] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_L_DQUOTE] = ACTIONS(1897), - [anon_sym_u_DQUOTE] = ACTIONS(1897), - [anon_sym_U_DQUOTE] = ACTIONS(1897), - [anon_sym_u8_DQUOTE] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym_true] = ACTIONS(1895), - [sym_false] = ACTIONS(1895), - [sym_null] = ACTIONS(1895), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1895), - [anon_sym_virtual] = ACTIONS(1895), - [anon_sym_explicit] = ACTIONS(1895), - [sym_auto] = ACTIONS(1895), - [anon_sym_typename] = ACTIONS(1895), - [anon_sym_template] = ACTIONS(1895), - [anon_sym_operator] = ACTIONS(1895), - [anon_sym_delete] = ACTIONS(1895), - [anon_sym_throw] = ACTIONS(1895), - [anon_sym_namespace] = ACTIONS(1895), - [anon_sym_using] = ACTIONS(1895), - [anon_sym_static_assert] = ACTIONS(1895), - [anon_sym_co_return] = ACTIONS(1895), - [anon_sym_co_yield] = ACTIONS(1895), - [anon_sym_try] = ACTIONS(1895), - [anon_sym_co_await] = ACTIONS(1895), - [anon_sym_new] = ACTIONS(1895), - [sym_this] = ACTIONS(1895), - [sym_nullptr] = ACTIONS(1895), - [sym_alone_macro] = ACTIONS(1897), - [aux_sym_alone_macro_call_token1] = ACTIONS(1895), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1895), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_FORWARD] = ACTIONS(1895), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1895), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1895), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1895), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1895), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_PS_GET] = ACTIONS(1895), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1895), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1895), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1895), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1895), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1895), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1895), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1895), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1895), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1895), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1895), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1895), - [anon_sym_MOZ_COLD] = ACTIONS(1895), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1895), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1895), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1895), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1895), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1895), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1895), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1895), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1895), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1895), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1895), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1895), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1895), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1895), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1895), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1895), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1895), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1895), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1895), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1895), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1895), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_NONNULL] = ACTIONS(1895), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1895), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1895), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1895), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1895), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1895), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_NORETURN] = ACTIONS(1895), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1895), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1895), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1895), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1895), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1895), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1895), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1895), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1895), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1895), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1895), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1895), - [anon_sym_MOZ_RAII] = ACTIONS(1895), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1895), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1895), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1895), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1895), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1895), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1895), - [sym_raw_string_literal] = ACTIONS(1897), - }, - [252] = { - [sym_identifier] = ACTIONS(1899), - [aux_sym_preproc_include_token1] = ACTIONS(1899), - [aux_sym_preproc_def_token1] = ACTIONS(1899), - [aux_sym_preproc_if_token1] = ACTIONS(1899), - [aux_sym_preproc_if_token2] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1899), - [aux_sym_preproc_else_token1] = ACTIONS(1899), - [aux_sym_preproc_elif_token1] = ACTIONS(1899), - [sym_preproc_directive] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1901), - [anon_sym_BANG] = ACTIONS(1901), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_AMP_AMP] = ACTIONS(1901), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_typedef] = ACTIONS(1899), - [anon_sym_extern] = ACTIONS(1899), - [anon_sym___attribute__] = ACTIONS(1899), - [anon_sym_COLON_COLON] = ACTIONS(1901), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1901), - [anon_sym___declspec] = ACTIONS(1899), - [anon_sym___based] = ACTIONS(1899), - [anon_sym___cdecl] = ACTIONS(1899), - [anon_sym___clrcall] = ACTIONS(1899), - [anon_sym___stdcall] = ACTIONS(1899), - [anon_sym___fastcall] = ACTIONS(1899), - [anon_sym___thiscall] = ACTIONS(1899), - [anon_sym___vectorcall] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_register] = ACTIONS(1899), - [anon_sym_inline] = ACTIONS(1899), - [anon_sym_thread_local] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_volatile] = ACTIONS(1899), - [anon_sym_restrict] = ACTIONS(1899), - [anon_sym__Atomic] = ACTIONS(1899), - [anon_sym_mutable] = ACTIONS(1899), - [anon_sym_constexpr] = ACTIONS(1899), - [anon_sym_signed] = ACTIONS(1899), - [anon_sym_unsigned] = ACTIONS(1899), - [anon_sym_long] = ACTIONS(1899), - [anon_sym_short] = ACTIONS(1899), - [sym_primitive_type] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_class] = ACTIONS(1899), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_switch] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1899), - [anon_sym_default] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_goto] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [anon_sym_PLUS_PLUS] = ACTIONS(1901), - [anon_sym_sizeof] = ACTIONS(1899), - [sym_number_literal] = ACTIONS(1901), - [anon_sym_L_SQUOTE] = ACTIONS(1901), - [anon_sym_u_SQUOTE] = ACTIONS(1901), - [anon_sym_U_SQUOTE] = ACTIONS(1901), - [anon_sym_u8_SQUOTE] = ACTIONS(1901), - [anon_sym_SQUOTE] = ACTIONS(1901), - [anon_sym_L_DQUOTE] = ACTIONS(1901), - [anon_sym_u_DQUOTE] = ACTIONS(1901), - [anon_sym_U_DQUOTE] = ACTIONS(1901), - [anon_sym_u8_DQUOTE] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1901), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_null] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1899), - [anon_sym_virtual] = ACTIONS(1899), - [anon_sym_explicit] = ACTIONS(1899), - [sym_auto] = ACTIONS(1899), - [anon_sym_typename] = ACTIONS(1899), - [anon_sym_template] = ACTIONS(1899), - [anon_sym_operator] = ACTIONS(1899), - [anon_sym_delete] = ACTIONS(1899), - [anon_sym_throw] = ACTIONS(1899), - [anon_sym_namespace] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(1899), - [anon_sym_static_assert] = ACTIONS(1899), - [anon_sym_co_return] = ACTIONS(1899), - [anon_sym_co_yield] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_co_await] = ACTIONS(1899), - [anon_sym_new] = ACTIONS(1899), - [sym_this] = ACTIONS(1899), - [sym_nullptr] = ACTIONS(1899), - [sym_alone_macro] = ACTIONS(1901), - [aux_sym_alone_macro_call_token1] = ACTIONS(1899), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1899), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_FORWARD] = ACTIONS(1899), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1899), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1899), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1899), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1899), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_PS_GET] = ACTIONS(1899), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1899), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1899), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1899), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1899), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1899), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1899), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1899), - [anon_sym_MOZ_COLD] = ACTIONS(1899), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1899), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1899), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1899), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1899), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1899), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1899), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1899), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1899), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1899), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1899), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1899), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1899), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1899), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_NONNULL] = ACTIONS(1899), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1899), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1899), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1899), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1899), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1899), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1899), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1899), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1899), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1899), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1899), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1899), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1899), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1899), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1899), - [anon_sym_MOZ_RAII] = ACTIONS(1899), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1899), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1899), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1899), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1899), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1899), - [sym_raw_string_literal] = ACTIONS(1901), - }, - [253] = { - [sym_identifier] = ACTIONS(1903), - [aux_sym_preproc_include_token1] = ACTIONS(1903), - [aux_sym_preproc_def_token1] = ACTIONS(1903), - [aux_sym_preproc_if_token1] = ACTIONS(1903), - [aux_sym_preproc_if_token2] = ACTIONS(1903), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1903), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1903), - [aux_sym_preproc_else_token1] = ACTIONS(1903), - [aux_sym_preproc_elif_token1] = ACTIONS(1903), - [sym_preproc_directive] = ACTIONS(1903), - [anon_sym_LPAREN2] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1903), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_AMP_AMP] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_SEMI] = ACTIONS(1905), - [anon_sym_typedef] = ACTIONS(1903), + [anon_sym___extension__] = ACTIONS(1898), + [anon_sym_typedef] = ACTIONS(1901), + [anon_sym_virtual] = ACTIONS(1903), [anon_sym_extern] = ACTIONS(1903), [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), [anon_sym_COLON_COLON] = ACTIONS(1905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1905), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), [anon_sym___declspec] = ACTIONS(1903), [anon_sym___based] = ACTIONS(1903), - [anon_sym___cdecl] = ACTIONS(1903), - [anon_sym___clrcall] = ACTIONS(1903), - [anon_sym___stdcall] = ACTIONS(1903), - [anon_sym___fastcall] = ACTIONS(1903), - [anon_sym___thiscall] = ACTIONS(1903), - [anon_sym___vectorcall] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1908), [anon_sym_static] = ACTIONS(1903), [anon_sym_register] = ACTIONS(1903), [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), [anon_sym_volatile] = ACTIONS(1903), [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), [anon_sym_mutable] = ACTIONS(1903), - [anon_sym_constexpr] = ACTIONS(1903), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [sym_primitive_type] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1911), [anon_sym_enum] = ACTIONS(1903), [anon_sym_class] = ACTIONS(1903), [anon_sym_struct] = ACTIONS(1903), [anon_sym_union] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_switch] = ACTIONS(1903), - [anon_sym_case] = ACTIONS(1903), - [anon_sym_default] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_do] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_goto] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1905), - [anon_sym_PLUS_PLUS] = ACTIONS(1905), - [anon_sym_sizeof] = ACTIONS(1903), - [sym_number_literal] = ACTIONS(1905), - [anon_sym_L_SQUOTE] = ACTIONS(1905), - [anon_sym_u_SQUOTE] = ACTIONS(1905), - [anon_sym_U_SQUOTE] = ACTIONS(1905), - [anon_sym_u8_SQUOTE] = ACTIONS(1905), - [anon_sym_SQUOTE] = ACTIONS(1905), - [anon_sym_L_DQUOTE] = ACTIONS(1905), - [anon_sym_u_DQUOTE] = ACTIONS(1905), - [anon_sym_U_DQUOTE] = ACTIONS(1905), - [anon_sym_u8_DQUOTE] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1905), - [sym_true] = ACTIONS(1903), - [sym_false] = ACTIONS(1903), - [sym_null] = ACTIONS(1903), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1903), - [anon_sym_virtual] = ACTIONS(1903), - [anon_sym_explicit] = ACTIONS(1903), [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1914), + [anon_sym_explicit] = ACTIONS(1903), [anon_sym_typename] = ACTIONS(1903), - [anon_sym_template] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1917), [anon_sym_operator] = ACTIONS(1903), - [anon_sym_delete] = ACTIONS(1903), - [anon_sym_throw] = ACTIONS(1903), - [anon_sym_namespace] = ACTIONS(1903), - [anon_sym_using] = ACTIONS(1903), - [anon_sym_static_assert] = ACTIONS(1903), - [anon_sym_co_return] = ACTIONS(1903), - [anon_sym_co_yield] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1903), - [anon_sym_co_await] = ACTIONS(1903), - [anon_sym_new] = ACTIONS(1903), - [sym_this] = ACTIONS(1903), - [sym_nullptr] = ACTIONS(1903), - [sym_alone_macro] = ACTIONS(1905), - [aux_sym_alone_macro_call_token1] = ACTIONS(1903), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1903), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_FORWARD] = ACTIONS(1903), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1903), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1903), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1903), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1903), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_PS_GET] = ACTIONS(1903), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1903), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1903), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1903), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1903), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), @@ -88048,51206 +84892,2329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), - [sym_raw_string_literal] = ACTIONS(1905), - }, - [254] = { - [ts_builtin_sym_end] = ACTIONS(1599), - [sym_identifier] = ACTIONS(1597), - [aux_sym_preproc_include_token1] = ACTIONS(1597), - [aux_sym_preproc_def_token1] = ACTIONS(1597), - [aux_sym_preproc_if_token1] = ACTIONS(1597), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1597), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1597), - [sym_preproc_directive] = ACTIONS(1597), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_typedef] = ACTIONS(1597), - [anon_sym_extern] = ACTIONS(1597), - [anon_sym___attribute__] = ACTIONS(1597), - [anon_sym_COLON_COLON] = ACTIONS(1599), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), - [anon_sym___declspec] = ACTIONS(1597), - [anon_sym___based] = ACTIONS(1597), - [anon_sym___cdecl] = ACTIONS(1597), - [anon_sym___clrcall] = ACTIONS(1597), - [anon_sym___stdcall] = ACTIONS(1597), - [anon_sym___fastcall] = ACTIONS(1597), - [anon_sym___thiscall] = ACTIONS(1597), - [anon_sym___vectorcall] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1597), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_register] = ACTIONS(1597), - [anon_sym_inline] = ACTIONS(1597), - [anon_sym_thread_local] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(1597), - [anon_sym_volatile] = ACTIONS(1597), - [anon_sym_restrict] = ACTIONS(1597), - [anon_sym__Atomic] = ACTIONS(1597), - [anon_sym_mutable] = ACTIONS(1597), - [anon_sym_constexpr] = ACTIONS(1597), - [anon_sym_signed] = ACTIONS(1597), - [anon_sym_unsigned] = ACTIONS(1597), - [anon_sym_long] = ACTIONS(1597), - [anon_sym_short] = ACTIONS(1597), - [sym_primitive_type] = ACTIONS(1597), - [anon_sym_enum] = ACTIONS(1597), - [anon_sym_class] = ACTIONS(1597), - [anon_sym_struct] = ACTIONS(1597), - [anon_sym_union] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_else] = ACTIONS(1597), - [anon_sym_switch] = ACTIONS(1597), - [anon_sym_case] = ACTIONS(1597), - [anon_sym_default] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_do] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_goto] = ACTIONS(1597), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_sizeof] = ACTIONS(1597), - [sym_number_literal] = ACTIONS(1599), - [anon_sym_L_SQUOTE] = ACTIONS(1599), - [anon_sym_u_SQUOTE] = ACTIONS(1599), - [anon_sym_U_SQUOTE] = ACTIONS(1599), - [anon_sym_u8_SQUOTE] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_L_DQUOTE] = ACTIONS(1599), - [anon_sym_u_DQUOTE] = ACTIONS(1599), - [anon_sym_U_DQUOTE] = ACTIONS(1599), - [anon_sym_u8_DQUOTE] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym_true] = ACTIONS(1597), - [sym_false] = ACTIONS(1597), - [sym_null] = ACTIONS(1597), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1597), - [anon_sym_virtual] = ACTIONS(1597), - [anon_sym_explicit] = ACTIONS(1597), - [sym_auto] = ACTIONS(1597), - [anon_sym_typename] = ACTIONS(1597), - [anon_sym_template] = ACTIONS(1597), - [anon_sym_operator] = ACTIONS(1597), - [anon_sym_delete] = ACTIONS(1597), - [anon_sym_throw] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_using] = ACTIONS(1597), - [anon_sym_static_assert] = ACTIONS(1597), - [anon_sym_co_return] = ACTIONS(1597), - [anon_sym_co_yield] = ACTIONS(1597), - [anon_sym_try] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1597), - [anon_sym_new] = ACTIONS(1597), - [sym_this] = ACTIONS(1597), - [sym_nullptr] = ACTIONS(1597), - [sym_alone_macro] = ACTIONS(1599), - [aux_sym_alone_macro_call_token1] = ACTIONS(1597), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_FORWARD] = ACTIONS(1597), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1597), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_PS_GET] = ACTIONS(1597), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1597), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1597), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1597), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1597), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1597), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1597), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1597), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1597), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1597), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1597), - [anon_sym_MOZ_COLD] = ACTIONS(1597), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1597), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1597), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1597), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1597), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1597), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1597), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1597), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1597), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1597), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1597), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1597), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1597), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1597), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1597), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1597), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1597), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1597), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1597), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1597), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1597), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_NONNULL] = ACTIONS(1597), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1597), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1597), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1597), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1597), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1597), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_NORETURN] = ACTIONS(1597), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1597), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1597), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1597), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1597), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1597), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1597), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1597), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1597), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1597), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1597), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1597), - [anon_sym_MOZ_RAII] = ACTIONS(1597), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1597), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1597), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1597), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1597), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1597), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1597), - [sym_raw_string_literal] = ACTIONS(1599), - }, - [255] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [256] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [257] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [258] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [259] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [260] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [261] = { - [sym_identifier] = ACTIONS(1549), - [aux_sym_preproc_include_token1] = ACTIONS(1549), - [aux_sym_preproc_def_token1] = ACTIONS(1549), - [aux_sym_preproc_if_token1] = ACTIONS(1549), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1549), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1549), - [sym_preproc_directive] = ACTIONS(1549), - [anon_sym_LPAREN2] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_AMP_AMP] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_typedef] = ACTIONS(1549), - [anon_sym_extern] = ACTIONS(1549), - [anon_sym___attribute__] = ACTIONS(1549), - [anon_sym_COLON_COLON] = ACTIONS(1551), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1551), - [anon_sym___declspec] = ACTIONS(1549), - [anon_sym___based] = ACTIONS(1549), - [anon_sym___cdecl] = ACTIONS(1549), - [anon_sym___clrcall] = ACTIONS(1549), - [anon_sym___stdcall] = ACTIONS(1549), - [anon_sym___fastcall] = ACTIONS(1549), - [anon_sym___thiscall] = ACTIONS(1549), - [anon_sym___vectorcall] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_RBRACE] = ACTIONS(1551), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_static] = ACTIONS(1549), - [anon_sym_register] = ACTIONS(1549), - [anon_sym_inline] = ACTIONS(1549), - [anon_sym_thread_local] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [anon_sym_volatile] = ACTIONS(1549), - [anon_sym_restrict] = ACTIONS(1549), - [anon_sym__Atomic] = ACTIONS(1549), - [anon_sym_mutable] = ACTIONS(1549), - [anon_sym_constexpr] = ACTIONS(1549), - [anon_sym_signed] = ACTIONS(1549), - [anon_sym_unsigned] = ACTIONS(1549), - [anon_sym_long] = ACTIONS(1549), - [anon_sym_short] = ACTIONS(1549), - [sym_primitive_type] = ACTIONS(1549), - [anon_sym_enum] = ACTIONS(1549), - [anon_sym_class] = ACTIONS(1549), - [anon_sym_struct] = ACTIONS(1549), - [anon_sym_union] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_else] = ACTIONS(1549), - [anon_sym_switch] = ACTIONS(1549), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1549), - [anon_sym_while] = ACTIONS(1549), - [anon_sym_do] = ACTIONS(1549), - [anon_sym_for] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1549), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1549), - [anon_sym_goto] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_PLUS_PLUS] = ACTIONS(1551), - [anon_sym_sizeof] = ACTIONS(1549), - [sym_number_literal] = ACTIONS(1551), - [anon_sym_L_SQUOTE] = ACTIONS(1551), - [anon_sym_u_SQUOTE] = ACTIONS(1551), - [anon_sym_U_SQUOTE] = ACTIONS(1551), - [anon_sym_u8_SQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1549), - [sym_false] = ACTIONS(1549), - [sym_null] = ACTIONS(1549), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1549), - [anon_sym_virtual] = ACTIONS(1549), - [anon_sym_explicit] = ACTIONS(1549), - [sym_auto] = ACTIONS(1549), - [anon_sym_typename] = ACTIONS(1549), - [anon_sym_template] = ACTIONS(1549), - [anon_sym_operator] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_throw] = ACTIONS(1549), - [anon_sym_namespace] = ACTIONS(1549), - [anon_sym_using] = ACTIONS(1549), - [anon_sym_static_assert] = ACTIONS(1549), - [anon_sym_co_return] = ACTIONS(1549), - [anon_sym_co_yield] = ACTIONS(1549), - [anon_sym_try] = ACTIONS(1549), - [anon_sym_co_await] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1549), - [sym_this] = ACTIONS(1549), - [sym_nullptr] = ACTIONS(1549), - [sym_alone_macro] = ACTIONS(1551), - [aux_sym_alone_macro_call_token1] = ACTIONS(1549), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_FORWARD] = ACTIONS(1549), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1549), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_PS_GET] = ACTIONS(1549), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1549), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1549), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1549), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1549), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1549), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1549), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1549), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1549), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1549), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1549), - [anon_sym_MOZ_COLD] = ACTIONS(1549), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1549), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1549), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1549), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1549), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1549), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1549), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1549), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1549), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1549), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1549), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1549), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1549), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1549), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1549), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1549), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1549), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1549), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1549), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1549), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1549), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_NONNULL] = ACTIONS(1549), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1549), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1549), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1549), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1549), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1549), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_NORETURN] = ACTIONS(1549), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1549), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1549), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1549), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1549), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1549), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1549), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1549), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1549), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1549), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1549), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1549), - [anon_sym_MOZ_RAII] = ACTIONS(1549), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1549), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1549), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1549), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1549), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1549), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1549), - [sym_raw_string_literal] = ACTIONS(1551), - }, - [262] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [263] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [264] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [265] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [266] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [267] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [268] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [269] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [270] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [271] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [272] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [273] = { - [ts_builtin_sym_end] = ACTIONS(1555), - [sym_identifier] = ACTIONS(1553), - [aux_sym_preproc_include_token1] = ACTIONS(1553), - [aux_sym_preproc_def_token1] = ACTIONS(1553), - [aux_sym_preproc_if_token1] = ACTIONS(1553), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1553), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1553), - [sym_preproc_directive] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1555), - [anon_sym_TILDE] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1555), - [anon_sym_AMP_AMP] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1555), - [anon_sym_typedef] = ACTIONS(1553), - [anon_sym_extern] = ACTIONS(1553), - [anon_sym___attribute__] = ACTIONS(1553), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1555), - [anon_sym___declspec] = ACTIONS(1553), - [anon_sym___based] = ACTIONS(1553), - [anon_sym___cdecl] = ACTIONS(1553), - [anon_sym___clrcall] = ACTIONS(1553), - [anon_sym___stdcall] = ACTIONS(1553), - [anon_sym___fastcall] = ACTIONS(1553), - [anon_sym___thiscall] = ACTIONS(1553), - [anon_sym___vectorcall] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_static] = ACTIONS(1553), - [anon_sym_register] = ACTIONS(1553), - [anon_sym_inline] = ACTIONS(1553), - [anon_sym_thread_local] = ACTIONS(1553), - [anon_sym_const] = ACTIONS(1553), - [anon_sym_volatile] = ACTIONS(1553), - [anon_sym_restrict] = ACTIONS(1553), - [anon_sym__Atomic] = ACTIONS(1553), - [anon_sym_mutable] = ACTIONS(1553), - [anon_sym_constexpr] = ACTIONS(1553), - [anon_sym_signed] = ACTIONS(1553), - [anon_sym_unsigned] = ACTIONS(1553), - [anon_sym_long] = ACTIONS(1553), - [anon_sym_short] = ACTIONS(1553), - [sym_primitive_type] = ACTIONS(1553), - [anon_sym_enum] = ACTIONS(1553), - [anon_sym_class] = ACTIONS(1553), - [anon_sym_struct] = ACTIONS(1553), - [anon_sym_union] = ACTIONS(1553), - [anon_sym_if] = ACTIONS(1553), - [anon_sym_else] = ACTIONS(1553), - [anon_sym_switch] = ACTIONS(1553), - [anon_sym_case] = ACTIONS(1553), - [anon_sym_default] = ACTIONS(1553), - [anon_sym_while] = ACTIONS(1553), - [anon_sym_do] = ACTIONS(1553), - [anon_sym_for] = ACTIONS(1553), - [anon_sym_return] = ACTIONS(1553), - [anon_sym_break] = ACTIONS(1553), - [anon_sym_continue] = ACTIONS(1553), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_DASH_DASH] = ACTIONS(1555), - [anon_sym_PLUS_PLUS] = ACTIONS(1555), - [anon_sym_sizeof] = ACTIONS(1553), - [sym_number_literal] = ACTIONS(1555), - [anon_sym_L_SQUOTE] = ACTIONS(1555), - [anon_sym_u_SQUOTE] = ACTIONS(1555), - [anon_sym_U_SQUOTE] = ACTIONS(1555), - [anon_sym_u8_SQUOTE] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1555), - [anon_sym_L_DQUOTE] = ACTIONS(1555), - [anon_sym_u_DQUOTE] = ACTIONS(1555), - [anon_sym_U_DQUOTE] = ACTIONS(1555), - [anon_sym_u8_DQUOTE] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(1555), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1553), - [anon_sym_virtual] = ACTIONS(1553), - [anon_sym_explicit] = ACTIONS(1553), - [sym_auto] = ACTIONS(1553), - [anon_sym_typename] = ACTIONS(1553), - [anon_sym_template] = ACTIONS(1553), - [anon_sym_operator] = ACTIONS(1553), - [anon_sym_delete] = ACTIONS(1553), - [anon_sym_throw] = ACTIONS(1553), - [anon_sym_namespace] = ACTIONS(1553), - [anon_sym_using] = ACTIONS(1553), - [anon_sym_static_assert] = ACTIONS(1553), - [anon_sym_co_return] = ACTIONS(1553), - [anon_sym_co_yield] = ACTIONS(1553), - [anon_sym_try] = ACTIONS(1553), - [anon_sym_co_await] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1553), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), - [sym_alone_macro] = ACTIONS(1555), - [aux_sym_alone_macro_call_token1] = ACTIONS(1553), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_FORWARD] = ACTIONS(1553), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1553), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_PS_GET] = ACTIONS(1553), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1553), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1553), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1553), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1553), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1553), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1553), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1553), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1553), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1553), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1553), - [anon_sym_MOZ_COLD] = ACTIONS(1553), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1553), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1553), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1553), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1553), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1553), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1553), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1553), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1553), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1553), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1553), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1553), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1553), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1553), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1553), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1553), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1553), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1553), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1553), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1553), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1553), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_NONNULL] = ACTIONS(1553), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1553), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1553), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1553), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1553), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1553), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_NORETURN] = ACTIONS(1553), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1553), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1553), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1553), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1553), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1553), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1553), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1553), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1553), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1553), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1553), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1553), - [anon_sym_MOZ_RAII] = ACTIONS(1553), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1553), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1553), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1553), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1553), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1553), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1553), - [sym_raw_string_literal] = ACTIONS(1555), - }, - [274] = { - [sym_identifier] = ACTIONS(1553), - [aux_sym_preproc_include_token1] = ACTIONS(1553), - [aux_sym_preproc_def_token1] = ACTIONS(1553), - [aux_sym_preproc_if_token1] = ACTIONS(1553), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1553), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1553), - [sym_preproc_directive] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1555), - [anon_sym_TILDE] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1555), - [anon_sym_AMP_AMP] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1555), - [anon_sym_typedef] = ACTIONS(1553), - [anon_sym_extern] = ACTIONS(1553), - [anon_sym___attribute__] = ACTIONS(1553), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1555), - [anon_sym___declspec] = ACTIONS(1553), - [anon_sym___based] = ACTIONS(1553), - [anon_sym___cdecl] = ACTIONS(1553), - [anon_sym___clrcall] = ACTIONS(1553), - [anon_sym___stdcall] = ACTIONS(1553), - [anon_sym___fastcall] = ACTIONS(1553), - [anon_sym___thiscall] = ACTIONS(1553), - [anon_sym___vectorcall] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_RBRACE] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_static] = ACTIONS(1553), - [anon_sym_register] = ACTIONS(1553), - [anon_sym_inline] = ACTIONS(1553), - [anon_sym_thread_local] = ACTIONS(1553), - [anon_sym_const] = ACTIONS(1553), - [anon_sym_volatile] = ACTIONS(1553), - [anon_sym_restrict] = ACTIONS(1553), - [anon_sym__Atomic] = ACTIONS(1553), - [anon_sym_mutable] = ACTIONS(1553), - [anon_sym_constexpr] = ACTIONS(1553), - [anon_sym_signed] = ACTIONS(1553), - [anon_sym_unsigned] = ACTIONS(1553), - [anon_sym_long] = ACTIONS(1553), - [anon_sym_short] = ACTIONS(1553), - [sym_primitive_type] = ACTIONS(1553), - [anon_sym_enum] = ACTIONS(1553), - [anon_sym_class] = ACTIONS(1553), - [anon_sym_struct] = ACTIONS(1553), - [anon_sym_union] = ACTIONS(1553), - [anon_sym_if] = ACTIONS(1553), - [anon_sym_else] = ACTIONS(1553), - [anon_sym_switch] = ACTIONS(1553), - [anon_sym_case] = ACTIONS(1553), - [anon_sym_default] = ACTIONS(1553), - [anon_sym_while] = ACTIONS(1553), - [anon_sym_do] = ACTIONS(1553), - [anon_sym_for] = ACTIONS(1553), - [anon_sym_return] = ACTIONS(1553), - [anon_sym_break] = ACTIONS(1553), - [anon_sym_continue] = ACTIONS(1553), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_DASH_DASH] = ACTIONS(1555), - [anon_sym_PLUS_PLUS] = ACTIONS(1555), - [anon_sym_sizeof] = ACTIONS(1553), - [sym_number_literal] = ACTIONS(1555), - [anon_sym_L_SQUOTE] = ACTIONS(1555), - [anon_sym_u_SQUOTE] = ACTIONS(1555), - [anon_sym_U_SQUOTE] = ACTIONS(1555), - [anon_sym_u8_SQUOTE] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1555), - [anon_sym_L_DQUOTE] = ACTIONS(1555), - [anon_sym_u_DQUOTE] = ACTIONS(1555), - [anon_sym_U_DQUOTE] = ACTIONS(1555), - [anon_sym_u8_DQUOTE] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(1555), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1553), - [anon_sym_virtual] = ACTIONS(1553), - [anon_sym_explicit] = ACTIONS(1553), - [sym_auto] = ACTIONS(1553), - [anon_sym_typename] = ACTIONS(1553), - [anon_sym_template] = ACTIONS(1553), - [anon_sym_operator] = ACTIONS(1553), - [anon_sym_delete] = ACTIONS(1553), - [anon_sym_throw] = ACTIONS(1553), - [anon_sym_namespace] = ACTIONS(1553), - [anon_sym_using] = ACTIONS(1553), - [anon_sym_static_assert] = ACTIONS(1553), - [anon_sym_co_return] = ACTIONS(1553), - [anon_sym_co_yield] = ACTIONS(1553), - [anon_sym_try] = ACTIONS(1553), - [anon_sym_co_await] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1553), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), - [sym_alone_macro] = ACTIONS(1555), - [aux_sym_alone_macro_call_token1] = ACTIONS(1553), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_FORWARD] = ACTIONS(1553), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1553), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_PS_GET] = ACTIONS(1553), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1553), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1553), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1553), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1553), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1553), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1553), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1553), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1553), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1553), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1553), - [anon_sym_MOZ_COLD] = ACTIONS(1553), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1553), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1553), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1553), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1553), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1553), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1553), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1553), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1553), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1553), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1553), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1553), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1553), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1553), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1553), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1553), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1553), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1553), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1553), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1553), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1553), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_NONNULL] = ACTIONS(1553), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1553), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1553), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1553), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1553), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1553), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_NORETURN] = ACTIONS(1553), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1553), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1553), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1553), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1553), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1553), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1553), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1553), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1553), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1553), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1553), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1553), - [anon_sym_MOZ_RAII] = ACTIONS(1553), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1553), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1553), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1553), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1553), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1553), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1553), - [sym_raw_string_literal] = ACTIONS(1555), - }, - [275] = { - [ts_builtin_sym_end] = ACTIONS(1551), - [sym_identifier] = ACTIONS(1549), - [aux_sym_preproc_include_token1] = ACTIONS(1549), - [aux_sym_preproc_def_token1] = ACTIONS(1549), - [aux_sym_preproc_if_token1] = ACTIONS(1549), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1549), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1549), - [sym_preproc_directive] = ACTIONS(1549), - [anon_sym_LPAREN2] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_AMP_AMP] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_typedef] = ACTIONS(1549), - [anon_sym_extern] = ACTIONS(1549), - [anon_sym___attribute__] = ACTIONS(1549), - [anon_sym_COLON_COLON] = ACTIONS(1551), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1551), - [anon_sym___declspec] = ACTIONS(1549), - [anon_sym___based] = ACTIONS(1549), - [anon_sym___cdecl] = ACTIONS(1549), - [anon_sym___clrcall] = ACTIONS(1549), - [anon_sym___stdcall] = ACTIONS(1549), - [anon_sym___fastcall] = ACTIONS(1549), - [anon_sym___thiscall] = ACTIONS(1549), - [anon_sym___vectorcall] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_static] = ACTIONS(1549), - [anon_sym_register] = ACTIONS(1549), - [anon_sym_inline] = ACTIONS(1549), - [anon_sym_thread_local] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [anon_sym_volatile] = ACTIONS(1549), - [anon_sym_restrict] = ACTIONS(1549), - [anon_sym__Atomic] = ACTIONS(1549), - [anon_sym_mutable] = ACTIONS(1549), - [anon_sym_constexpr] = ACTIONS(1549), - [anon_sym_signed] = ACTIONS(1549), - [anon_sym_unsigned] = ACTIONS(1549), - [anon_sym_long] = ACTIONS(1549), - [anon_sym_short] = ACTIONS(1549), - [sym_primitive_type] = ACTIONS(1549), - [anon_sym_enum] = ACTIONS(1549), - [anon_sym_class] = ACTIONS(1549), - [anon_sym_struct] = ACTIONS(1549), - [anon_sym_union] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_else] = ACTIONS(1549), - [anon_sym_switch] = ACTIONS(1549), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1549), - [anon_sym_while] = ACTIONS(1549), - [anon_sym_do] = ACTIONS(1549), - [anon_sym_for] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1549), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1549), - [anon_sym_goto] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_PLUS_PLUS] = ACTIONS(1551), - [anon_sym_sizeof] = ACTIONS(1549), - [sym_number_literal] = ACTIONS(1551), - [anon_sym_L_SQUOTE] = ACTIONS(1551), - [anon_sym_u_SQUOTE] = ACTIONS(1551), - [anon_sym_U_SQUOTE] = ACTIONS(1551), - [anon_sym_u8_SQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1549), - [sym_false] = ACTIONS(1549), - [sym_null] = ACTIONS(1549), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1549), - [anon_sym_virtual] = ACTIONS(1549), - [anon_sym_explicit] = ACTIONS(1549), - [sym_auto] = ACTIONS(1549), - [anon_sym_typename] = ACTIONS(1549), - [anon_sym_template] = ACTIONS(1549), - [anon_sym_operator] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_throw] = ACTIONS(1549), - [anon_sym_namespace] = ACTIONS(1549), - [anon_sym_using] = ACTIONS(1549), - [anon_sym_static_assert] = ACTIONS(1549), - [anon_sym_co_return] = ACTIONS(1549), - [anon_sym_co_yield] = ACTIONS(1549), - [anon_sym_try] = ACTIONS(1549), - [anon_sym_co_await] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1549), - [sym_this] = ACTIONS(1549), - [sym_nullptr] = ACTIONS(1549), - [sym_alone_macro] = ACTIONS(1551), - [aux_sym_alone_macro_call_token1] = ACTIONS(1549), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_FORWARD] = ACTIONS(1549), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1549), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_PS_GET] = ACTIONS(1549), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1549), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1549), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1549), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1549), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1549), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1549), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1549), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1549), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1549), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1549), - [anon_sym_MOZ_COLD] = ACTIONS(1549), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1549), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1549), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1549), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1549), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1549), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1549), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1549), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1549), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1549), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1549), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1549), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1549), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1549), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1549), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1549), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1549), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1549), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1549), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1549), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1549), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_NONNULL] = ACTIONS(1549), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1549), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1549), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1549), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1549), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1549), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_NORETURN] = ACTIONS(1549), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1549), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1549), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1549), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1549), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1549), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1549), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1549), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1549), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1549), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1549), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1549), - [anon_sym_MOZ_RAII] = ACTIONS(1549), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1549), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1549), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1549), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1549), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1549), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1549), - [sym_raw_string_literal] = ACTIONS(1551), - }, - [276] = { - [sym_preproc_def] = STATE(665), - [sym_preproc_function_def] = STATE(665), - [sym_preproc_call] = STATE(665), - [sym_preproc_if_in_field_declaration_list] = STATE(665), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(665), - [sym_preproc_else_in_field_declaration_list] = STATE(5166), - [sym_preproc_elif_in_field_declaration_list] = STATE(5166), - [sym_type_definition] = STATE(665), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3235), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3615), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(665), - [sym_field_declaration] = STATE(665), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(841), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(665), - [sym_operator_cast] = STATE(4161), - [sym_inline_method_definition] = STATE(665), - [sym__constructor_specifiers] = STATE(841), - [sym_operator_cast_definition] = STATE(665), - [sym_operator_cast_declaration] = STATE(665), - [sym_constructor_or_destructor_definition] = STATE(665), - [sym_constructor_or_destructor_declaration] = STATE(665), - [sym_friend_declaration] = STATE(665), - [sym_access_specifier] = STATE(665), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(665), - [sym_alias_declaration] = STATE(665), - [sym_static_assert_declaration] = STATE(665), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4161), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(665), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(665), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(841), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(1909), - [aux_sym_preproc_if_token1] = ACTIONS(1911), - [aux_sym_preproc_if_token2] = ACTIONS(1913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1915), - [aux_sym_preproc_else_token1] = ACTIONS(1917), - [aux_sym_preproc_elif_token1] = ACTIONS(1919), - [sym_preproc_directive] = ACTIONS(1921), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(1951), - [anon_sym_private] = ACTIONS(1951), - [anon_sym_protected] = ACTIONS(1951), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(1955), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1957), - [anon_sym_using] = ACTIONS(1959), - [anon_sym_static_assert] = ACTIONS(1961), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1963), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [277] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [278] = { - [ts_builtin_sym_end] = ACTIONS(1547), - [sym_identifier] = ACTIONS(1545), - [aux_sym_preproc_include_token1] = ACTIONS(1545), - [aux_sym_preproc_def_token1] = ACTIONS(1545), - [aux_sym_preproc_if_token1] = ACTIONS(1545), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1545), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1545), - [sym_preproc_directive] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1547), - [anon_sym_TILDE] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1547), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1547), - [anon_sym_typedef] = ACTIONS(1545), - [anon_sym_extern] = ACTIONS(1545), - [anon_sym___attribute__] = ACTIONS(1545), - [anon_sym_COLON_COLON] = ACTIONS(1547), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1547), - [anon_sym___declspec] = ACTIONS(1545), - [anon_sym___based] = ACTIONS(1545), - [anon_sym___cdecl] = ACTIONS(1545), - [anon_sym___clrcall] = ACTIONS(1545), - [anon_sym___stdcall] = ACTIONS(1545), - [anon_sym___fastcall] = ACTIONS(1545), - [anon_sym___thiscall] = ACTIONS(1545), - [anon_sym___vectorcall] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_static] = ACTIONS(1545), - [anon_sym_register] = ACTIONS(1545), - [anon_sym_inline] = ACTIONS(1545), - [anon_sym_thread_local] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_volatile] = ACTIONS(1545), - [anon_sym_restrict] = ACTIONS(1545), - [anon_sym__Atomic] = ACTIONS(1545), - [anon_sym_mutable] = ACTIONS(1545), - [anon_sym_constexpr] = ACTIONS(1545), - [anon_sym_signed] = ACTIONS(1545), - [anon_sym_unsigned] = ACTIONS(1545), - [anon_sym_long] = ACTIONS(1545), - [anon_sym_short] = ACTIONS(1545), - [sym_primitive_type] = ACTIONS(1545), - [anon_sym_enum] = ACTIONS(1545), - [anon_sym_class] = ACTIONS(1545), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_union] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_else] = ACTIONS(1545), - [anon_sym_switch] = ACTIONS(1545), - [anon_sym_case] = ACTIONS(1545), - [anon_sym_default] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_do] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_goto] = ACTIONS(1545), - [anon_sym_DASH_DASH] = ACTIONS(1547), - [anon_sym_PLUS_PLUS] = ACTIONS(1547), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1547), - [anon_sym_u_SQUOTE] = ACTIONS(1547), - [anon_sym_U_SQUOTE] = ACTIONS(1547), - [anon_sym_u8_SQUOTE] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_L_DQUOTE] = ACTIONS(1547), - [anon_sym_u_DQUOTE] = ACTIONS(1547), - [anon_sym_U_DQUOTE] = ACTIONS(1547), - [anon_sym_u8_DQUOTE] = ACTIONS(1547), - [anon_sym_DQUOTE] = ACTIONS(1547), - [sym_true] = ACTIONS(1545), - [sym_false] = ACTIONS(1545), - [sym_null] = ACTIONS(1545), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1545), - [anon_sym_virtual] = ACTIONS(1545), - [anon_sym_explicit] = ACTIONS(1545), - [sym_auto] = ACTIONS(1545), - [anon_sym_typename] = ACTIONS(1545), - [anon_sym_template] = ACTIONS(1545), - [anon_sym_operator] = ACTIONS(1545), - [anon_sym_delete] = ACTIONS(1545), - [anon_sym_throw] = ACTIONS(1545), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_using] = ACTIONS(1545), - [anon_sym_static_assert] = ACTIONS(1545), - [anon_sym_co_return] = ACTIONS(1545), - [anon_sym_co_yield] = ACTIONS(1545), - [anon_sym_try] = ACTIONS(1545), - [anon_sym_co_await] = ACTIONS(1545), - [anon_sym_new] = ACTIONS(1545), - [sym_this] = ACTIONS(1545), - [sym_nullptr] = ACTIONS(1545), - [sym_alone_macro] = ACTIONS(1547), - [aux_sym_alone_macro_call_token1] = ACTIONS(1545), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_FORWARD] = ACTIONS(1545), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1545), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_PS_GET] = ACTIONS(1545), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1545), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1545), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1545), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1545), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1545), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1545), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1545), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1545), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1545), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1545), - [anon_sym_MOZ_COLD] = ACTIONS(1545), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1545), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1545), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1545), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1545), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1545), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1545), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1545), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1545), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1545), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1545), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1545), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1545), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1545), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1545), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1545), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1545), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1545), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1545), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1545), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1545), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_NONNULL] = ACTIONS(1545), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1545), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1545), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1545), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1545), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1545), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_NORETURN] = ACTIONS(1545), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1545), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1545), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1545), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1545), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1545), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1545), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1545), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1545), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1545), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1545), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1545), - [anon_sym_MOZ_RAII] = ACTIONS(1545), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1545), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1545), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1545), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1545), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1545), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1545), - [sym_raw_string_literal] = ACTIONS(1547), - }, - [279] = { - [ts_builtin_sym_end] = ACTIONS(1543), - [sym_identifier] = ACTIONS(1541), - [aux_sym_preproc_include_token1] = ACTIONS(1541), - [aux_sym_preproc_def_token1] = ACTIONS(1541), - [aux_sym_preproc_if_token1] = ACTIONS(1541), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1541), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1541), - [sym_preproc_directive] = ACTIONS(1541), - [anon_sym_LPAREN2] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1543), - [anon_sym_AMP_AMP] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_typedef] = ACTIONS(1541), - [anon_sym_extern] = ACTIONS(1541), - [anon_sym___attribute__] = ACTIONS(1541), - [anon_sym_COLON_COLON] = ACTIONS(1543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1543), - [anon_sym___declspec] = ACTIONS(1541), - [anon_sym___based] = ACTIONS(1541), - [anon_sym___cdecl] = ACTIONS(1541), - [anon_sym___clrcall] = ACTIONS(1541), - [anon_sym___stdcall] = ACTIONS(1541), - [anon_sym___fastcall] = ACTIONS(1541), - [anon_sym___thiscall] = ACTIONS(1541), - [anon_sym___vectorcall] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1541), - [anon_sym_static] = ACTIONS(1541), - [anon_sym_register] = ACTIONS(1541), - [anon_sym_inline] = ACTIONS(1541), - [anon_sym_thread_local] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_volatile] = ACTIONS(1541), - [anon_sym_restrict] = ACTIONS(1541), - [anon_sym__Atomic] = ACTIONS(1541), - [anon_sym_mutable] = ACTIONS(1541), - [anon_sym_constexpr] = ACTIONS(1541), - [anon_sym_signed] = ACTIONS(1541), - [anon_sym_unsigned] = ACTIONS(1541), - [anon_sym_long] = ACTIONS(1541), - [anon_sym_short] = ACTIONS(1541), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_enum] = ACTIONS(1541), - [anon_sym_class] = ACTIONS(1541), - [anon_sym_struct] = ACTIONS(1541), - [anon_sym_union] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1541), - [anon_sym_else] = ACTIONS(1541), - [anon_sym_switch] = ACTIONS(1541), - [anon_sym_case] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1541), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1541), - [anon_sym_for] = ACTIONS(1541), - [anon_sym_return] = ACTIONS(1541), - [anon_sym_break] = ACTIONS(1541), - [anon_sym_continue] = ACTIONS(1541), - [anon_sym_goto] = ACTIONS(1541), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1541), - [sym_number_literal] = ACTIONS(1543), - [anon_sym_L_SQUOTE] = ACTIONS(1543), - [anon_sym_u_SQUOTE] = ACTIONS(1543), - [anon_sym_U_SQUOTE] = ACTIONS(1543), - [anon_sym_u8_SQUOTE] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_L_DQUOTE] = ACTIONS(1543), - [anon_sym_u_DQUOTE] = ACTIONS(1543), - [anon_sym_U_DQUOTE] = ACTIONS(1543), - [anon_sym_u8_DQUOTE] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1543), - [sym_true] = ACTIONS(1541), - [sym_false] = ACTIONS(1541), - [sym_null] = ACTIONS(1541), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1541), - [anon_sym_virtual] = ACTIONS(1541), - [anon_sym_explicit] = ACTIONS(1541), - [sym_auto] = ACTIONS(1541), - [anon_sym_typename] = ACTIONS(1541), - [anon_sym_template] = ACTIONS(1541), - [anon_sym_operator] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_throw] = ACTIONS(1541), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_using] = ACTIONS(1541), - [anon_sym_static_assert] = ACTIONS(1541), - [anon_sym_co_return] = ACTIONS(1541), - [anon_sym_co_yield] = ACTIONS(1541), - [anon_sym_try] = ACTIONS(1541), - [anon_sym_co_await] = ACTIONS(1541), - [anon_sym_new] = ACTIONS(1541), - [sym_this] = ACTIONS(1541), - [sym_nullptr] = ACTIONS(1541), - [sym_alone_macro] = ACTIONS(1543), - [aux_sym_alone_macro_call_token1] = ACTIONS(1541), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_FORWARD] = ACTIONS(1541), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1541), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_PS_GET] = ACTIONS(1541), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1541), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1541), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1541), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1541), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1541), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1541), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1541), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1541), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1541), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1541), - [anon_sym_MOZ_COLD] = ACTIONS(1541), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1541), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1541), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1541), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1541), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1541), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1541), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1541), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1541), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1541), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1541), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1541), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1541), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1541), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1541), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1541), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1541), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1541), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1541), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1541), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1541), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_NONNULL] = ACTIONS(1541), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1541), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1541), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1541), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1541), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1541), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_NORETURN] = ACTIONS(1541), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1541), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1541), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1541), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1541), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1541), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1541), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1541), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1541), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1541), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1541), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1541), - [anon_sym_MOZ_RAII] = ACTIONS(1541), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1541), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1541), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1541), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1541), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1541), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1541), - [sym_raw_string_literal] = ACTIONS(1543), - }, - [280] = { - [ts_builtin_sym_end] = ACTIONS(1643), - [sym_identifier] = ACTIONS(1641), - [aux_sym_preproc_include_token1] = ACTIONS(1641), - [aux_sym_preproc_def_token1] = ACTIONS(1641), - [aux_sym_preproc_if_token1] = ACTIONS(1641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1641), - [sym_preproc_directive] = ACTIONS(1641), - [anon_sym_LPAREN2] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_AMP_AMP] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_typedef] = ACTIONS(1641), - [anon_sym_extern] = ACTIONS(1641), - [anon_sym___attribute__] = ACTIONS(1641), - [anon_sym_COLON_COLON] = ACTIONS(1643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1643), - [anon_sym___declspec] = ACTIONS(1641), - [anon_sym___based] = ACTIONS(1641), - [anon_sym___cdecl] = ACTIONS(1641), - [anon_sym___clrcall] = ACTIONS(1641), - [anon_sym___stdcall] = ACTIONS(1641), - [anon_sym___fastcall] = ACTIONS(1641), - [anon_sym___thiscall] = ACTIONS(1641), - [anon_sym___vectorcall] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_register] = ACTIONS(1641), - [anon_sym_inline] = ACTIONS(1641), - [anon_sym_thread_local] = ACTIONS(1641), - [anon_sym_const] = ACTIONS(1641), - [anon_sym_volatile] = ACTIONS(1641), - [anon_sym_restrict] = ACTIONS(1641), - [anon_sym__Atomic] = ACTIONS(1641), - [anon_sym_mutable] = ACTIONS(1641), - [anon_sym_constexpr] = ACTIONS(1641), - [anon_sym_signed] = ACTIONS(1641), - [anon_sym_unsigned] = ACTIONS(1641), - [anon_sym_long] = ACTIONS(1641), - [anon_sym_short] = ACTIONS(1641), - [sym_primitive_type] = ACTIONS(1641), - [anon_sym_enum] = ACTIONS(1641), - [anon_sym_class] = ACTIONS(1641), - [anon_sym_struct] = ACTIONS(1641), - [anon_sym_union] = ACTIONS(1641), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_else] = ACTIONS(1641), - [anon_sym_switch] = ACTIONS(1641), - [anon_sym_case] = ACTIONS(1641), - [anon_sym_default] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_do] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_return] = ACTIONS(1641), - [anon_sym_break] = ACTIONS(1641), - [anon_sym_continue] = ACTIONS(1641), - [anon_sym_goto] = ACTIONS(1641), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_sizeof] = ACTIONS(1641), - [sym_number_literal] = ACTIONS(1643), - [anon_sym_L_SQUOTE] = ACTIONS(1643), - [anon_sym_u_SQUOTE] = ACTIONS(1643), - [anon_sym_U_SQUOTE] = ACTIONS(1643), - [anon_sym_u8_SQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1643), - [anon_sym_L_DQUOTE] = ACTIONS(1643), - [anon_sym_u_DQUOTE] = ACTIONS(1643), - [anon_sym_U_DQUOTE] = ACTIONS(1643), - [anon_sym_u8_DQUOTE] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym_true] = ACTIONS(1641), - [sym_false] = ACTIONS(1641), - [sym_null] = ACTIONS(1641), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1641), - [anon_sym_virtual] = ACTIONS(1641), - [anon_sym_explicit] = ACTIONS(1641), - [sym_auto] = ACTIONS(1641), - [anon_sym_typename] = ACTIONS(1641), - [anon_sym_template] = ACTIONS(1641), - [anon_sym_operator] = ACTIONS(1641), - [anon_sym_delete] = ACTIONS(1641), - [anon_sym_throw] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_using] = ACTIONS(1641), - [anon_sym_static_assert] = ACTIONS(1641), - [anon_sym_co_return] = ACTIONS(1641), - [anon_sym_co_yield] = ACTIONS(1641), - [anon_sym_try] = ACTIONS(1641), - [anon_sym_co_await] = ACTIONS(1641), - [anon_sym_new] = ACTIONS(1641), - [sym_this] = ACTIONS(1641), - [sym_nullptr] = ACTIONS(1641), - [sym_alone_macro] = ACTIONS(1643), - [aux_sym_alone_macro_call_token1] = ACTIONS(1641), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_FORWARD] = ACTIONS(1641), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1641), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_PS_GET] = ACTIONS(1641), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1641), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1641), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1641), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1641), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1641), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1641), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1641), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1641), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1641), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1641), - [anon_sym_MOZ_COLD] = ACTIONS(1641), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1641), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1641), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1641), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1641), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1641), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1641), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1641), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1641), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1641), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1641), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1641), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1641), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1641), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1641), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1641), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1641), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1641), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1641), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1641), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1641), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_NONNULL] = ACTIONS(1641), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1641), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1641), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1641), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1641), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1641), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_NORETURN] = ACTIONS(1641), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1641), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1641), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1641), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1641), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1641), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1641), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1641), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1641), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1641), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1641), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1641), - [anon_sym_MOZ_RAII] = ACTIONS(1641), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1641), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1641), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1641), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1641), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1641), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1641), - [sym_raw_string_literal] = ACTIONS(1643), - }, - [281] = { - [ts_builtin_sym_end] = ACTIONS(1539), - [sym_identifier] = ACTIONS(1537), - [aux_sym_preproc_include_token1] = ACTIONS(1537), - [aux_sym_preproc_def_token1] = ACTIONS(1537), - [aux_sym_preproc_if_token1] = ACTIONS(1537), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1537), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1537), - [sym_preproc_directive] = ACTIONS(1537), - [anon_sym_LPAREN2] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_TILDE] = ACTIONS(1539), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1539), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_typedef] = ACTIONS(1537), - [anon_sym_extern] = ACTIONS(1537), - [anon_sym___attribute__] = ACTIONS(1537), - [anon_sym_COLON_COLON] = ACTIONS(1539), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1537), - [anon_sym___based] = ACTIONS(1537), - [anon_sym___cdecl] = ACTIONS(1537), - [anon_sym___clrcall] = ACTIONS(1537), - [anon_sym___stdcall] = ACTIONS(1537), - [anon_sym___fastcall] = ACTIONS(1537), - [anon_sym___thiscall] = ACTIONS(1537), - [anon_sym___vectorcall] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_register] = ACTIONS(1537), - [anon_sym_inline] = ACTIONS(1537), - [anon_sym_thread_local] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_volatile] = ACTIONS(1537), - [anon_sym_restrict] = ACTIONS(1537), - [anon_sym__Atomic] = ACTIONS(1537), - [anon_sym_mutable] = ACTIONS(1537), - [anon_sym_constexpr] = ACTIONS(1537), - [anon_sym_signed] = ACTIONS(1537), - [anon_sym_unsigned] = ACTIONS(1537), - [anon_sym_long] = ACTIONS(1537), - [anon_sym_short] = ACTIONS(1537), - [sym_primitive_type] = ACTIONS(1537), - [anon_sym_enum] = ACTIONS(1537), - [anon_sym_class] = ACTIONS(1537), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_else] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1537), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_do] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_goto] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1539), - [anon_sym_PLUS_PLUS] = ACTIONS(1539), - [anon_sym_sizeof] = ACTIONS(1537), - [sym_number_literal] = ACTIONS(1539), - [anon_sym_L_SQUOTE] = ACTIONS(1539), - [anon_sym_u_SQUOTE] = ACTIONS(1539), - [anon_sym_U_SQUOTE] = ACTIONS(1539), - [anon_sym_u8_SQUOTE] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [anon_sym_L_DQUOTE] = ACTIONS(1539), - [anon_sym_u_DQUOTE] = ACTIONS(1539), - [anon_sym_U_DQUOTE] = ACTIONS(1539), - [anon_sym_u8_DQUOTE] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1539), - [sym_true] = ACTIONS(1537), - [sym_false] = ACTIONS(1537), - [sym_null] = ACTIONS(1537), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1537), - [anon_sym_virtual] = ACTIONS(1537), - [anon_sym_explicit] = ACTIONS(1537), - [sym_auto] = ACTIONS(1537), - [anon_sym_typename] = ACTIONS(1537), - [anon_sym_template] = ACTIONS(1537), - [anon_sym_operator] = ACTIONS(1537), - [anon_sym_delete] = ACTIONS(1537), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_using] = ACTIONS(1537), - [anon_sym_static_assert] = ACTIONS(1537), - [anon_sym_co_return] = ACTIONS(1537), - [anon_sym_co_yield] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1537), - [anon_sym_new] = ACTIONS(1537), - [sym_this] = ACTIONS(1537), - [sym_nullptr] = ACTIONS(1537), - [sym_alone_macro] = ACTIONS(1539), - [aux_sym_alone_macro_call_token1] = ACTIONS(1537), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_FORWARD] = ACTIONS(1537), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1537), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_PS_GET] = ACTIONS(1537), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1537), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1537), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1537), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1537), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1537), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1537), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1537), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1537), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1537), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1537), - [anon_sym_MOZ_COLD] = ACTIONS(1537), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1537), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1537), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1537), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1537), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1537), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1537), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1537), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1537), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1537), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1537), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1537), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1537), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1537), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1537), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1537), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1537), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1537), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1537), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1537), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1537), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_NONNULL] = ACTIONS(1537), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1537), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1537), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1537), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1537), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1537), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_NORETURN] = ACTIONS(1537), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1537), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1537), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1537), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1537), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1537), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1537), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1537), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1537), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1537), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1537), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1537), - [anon_sym_MOZ_RAII] = ACTIONS(1537), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1537), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1537), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1537), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1537), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1537), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1537), - [sym_raw_string_literal] = ACTIONS(1539), - }, - [282] = { - [ts_builtin_sym_end] = ACTIONS(1603), - [sym_identifier] = ACTIONS(1601), - [aux_sym_preproc_include_token1] = ACTIONS(1601), - [aux_sym_preproc_def_token1] = ACTIONS(1601), - [aux_sym_preproc_if_token1] = ACTIONS(1601), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1601), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1601), - [sym_preproc_directive] = ACTIONS(1601), - [anon_sym_LPAREN2] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(1603), - [anon_sym_AMP] = ACTIONS(1601), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_typedef] = ACTIONS(1601), - [anon_sym_extern] = ACTIONS(1601), - [anon_sym___attribute__] = ACTIONS(1601), - [anon_sym_COLON_COLON] = ACTIONS(1603), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1603), - [anon_sym___declspec] = ACTIONS(1601), - [anon_sym___based] = ACTIONS(1601), - [anon_sym___cdecl] = ACTIONS(1601), - [anon_sym___clrcall] = ACTIONS(1601), - [anon_sym___stdcall] = ACTIONS(1601), - [anon_sym___fastcall] = ACTIONS(1601), - [anon_sym___thiscall] = ACTIONS(1601), - [anon_sym___vectorcall] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_static] = ACTIONS(1601), - [anon_sym_register] = ACTIONS(1601), - [anon_sym_inline] = ACTIONS(1601), - [anon_sym_thread_local] = ACTIONS(1601), - [anon_sym_const] = ACTIONS(1601), - [anon_sym_volatile] = ACTIONS(1601), - [anon_sym_restrict] = ACTIONS(1601), - [anon_sym__Atomic] = ACTIONS(1601), - [anon_sym_mutable] = ACTIONS(1601), - [anon_sym_constexpr] = ACTIONS(1601), - [anon_sym_signed] = ACTIONS(1601), - [anon_sym_unsigned] = ACTIONS(1601), - [anon_sym_long] = ACTIONS(1601), - [anon_sym_short] = ACTIONS(1601), - [sym_primitive_type] = ACTIONS(1601), - [anon_sym_enum] = ACTIONS(1601), - [anon_sym_class] = ACTIONS(1601), - [anon_sym_struct] = ACTIONS(1601), - [anon_sym_union] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1601), - [anon_sym_else] = ACTIONS(1601), - [anon_sym_switch] = ACTIONS(1601), - [anon_sym_case] = ACTIONS(1601), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1601), - [anon_sym_do] = ACTIONS(1601), - [anon_sym_for] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_break] = ACTIONS(1601), - [anon_sym_continue] = ACTIONS(1601), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1603), - [anon_sym_sizeof] = ACTIONS(1601), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_L_SQUOTE] = ACTIONS(1603), - [anon_sym_u_SQUOTE] = ACTIONS(1603), - [anon_sym_U_SQUOTE] = ACTIONS(1603), - [anon_sym_u8_SQUOTE] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(1603), - [anon_sym_L_DQUOTE] = ACTIONS(1603), - [anon_sym_u_DQUOTE] = ACTIONS(1603), - [anon_sym_U_DQUOTE] = ACTIONS(1603), - [anon_sym_u8_DQUOTE] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1601), - [anon_sym_virtual] = ACTIONS(1601), - [anon_sym_explicit] = ACTIONS(1601), - [sym_auto] = ACTIONS(1601), - [anon_sym_typename] = ACTIONS(1601), - [anon_sym_template] = ACTIONS(1601), - [anon_sym_operator] = ACTIONS(1601), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_throw] = ACTIONS(1601), - [anon_sym_namespace] = ACTIONS(1601), - [anon_sym_using] = ACTIONS(1601), - [anon_sym_static_assert] = ACTIONS(1601), - [anon_sym_co_return] = ACTIONS(1601), - [anon_sym_co_yield] = ACTIONS(1601), - [anon_sym_try] = ACTIONS(1601), - [anon_sym_co_await] = ACTIONS(1601), - [anon_sym_new] = ACTIONS(1601), - [sym_this] = ACTIONS(1601), - [sym_nullptr] = ACTIONS(1601), - [sym_alone_macro] = ACTIONS(1603), - [aux_sym_alone_macro_call_token1] = ACTIONS(1601), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_FORWARD] = ACTIONS(1601), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1601), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_PS_GET] = ACTIONS(1601), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1601), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1601), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1601), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1601), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1601), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1601), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1601), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1601), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1601), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1601), - [anon_sym_MOZ_COLD] = ACTIONS(1601), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1601), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1601), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1601), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1601), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1601), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1601), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1601), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1601), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1601), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1601), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1601), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1601), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1601), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1601), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1601), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1601), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1601), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1601), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1601), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1601), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_NONNULL] = ACTIONS(1601), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1601), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1601), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1601), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1601), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1601), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_NORETURN] = ACTIONS(1601), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1601), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1601), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1601), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1601), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1601), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1601), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1601), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1601), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1601), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1601), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1601), - [anon_sym_MOZ_RAII] = ACTIONS(1601), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1601), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1601), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1601), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1601), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1601), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1601), - [sym_raw_string_literal] = ACTIONS(1603), - }, - [283] = { - [ts_builtin_sym_end] = ACTIONS(1607), - [sym_identifier] = ACTIONS(1605), - [aux_sym_preproc_include_token1] = ACTIONS(1605), - [aux_sym_preproc_def_token1] = ACTIONS(1605), - [aux_sym_preproc_if_token1] = ACTIONS(1605), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1605), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1605), - [sym_preproc_directive] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1607), - [anon_sym_TILDE] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_AMP_AMP] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_typedef] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym___attribute__] = ACTIONS(1605), - [anon_sym_COLON_COLON] = ACTIONS(1607), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1607), - [anon_sym___declspec] = ACTIONS(1605), - [anon_sym___based] = ACTIONS(1605), - [anon_sym___cdecl] = ACTIONS(1605), - [anon_sym___clrcall] = ACTIONS(1605), - [anon_sym___stdcall] = ACTIONS(1605), - [anon_sym___fastcall] = ACTIONS(1605), - [anon_sym___thiscall] = ACTIONS(1605), - [anon_sym___vectorcall] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_static] = ACTIONS(1605), - [anon_sym_register] = ACTIONS(1605), - [anon_sym_inline] = ACTIONS(1605), - [anon_sym_thread_local] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [anon_sym_volatile] = ACTIONS(1605), - [anon_sym_restrict] = ACTIONS(1605), - [anon_sym__Atomic] = ACTIONS(1605), - [anon_sym_mutable] = ACTIONS(1605), - [anon_sym_constexpr] = ACTIONS(1605), - [anon_sym_signed] = ACTIONS(1605), - [anon_sym_unsigned] = ACTIONS(1605), - [anon_sym_long] = ACTIONS(1605), - [anon_sym_short] = ACTIONS(1605), - [sym_primitive_type] = ACTIONS(1605), - [anon_sym_enum] = ACTIONS(1605), - [anon_sym_class] = ACTIONS(1605), - [anon_sym_struct] = ACTIONS(1605), - [anon_sym_union] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_else] = ACTIONS(1605), - [anon_sym_switch] = ACTIONS(1605), - [anon_sym_case] = ACTIONS(1605), - [anon_sym_default] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_goto] = ACTIONS(1605), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1605), - [sym_number_literal] = ACTIONS(1607), - [anon_sym_L_SQUOTE] = ACTIONS(1607), - [anon_sym_u_SQUOTE] = ACTIONS(1607), - [anon_sym_U_SQUOTE] = ACTIONS(1607), - [anon_sym_u8_SQUOTE] = ACTIONS(1607), - [anon_sym_SQUOTE] = ACTIONS(1607), - [anon_sym_L_DQUOTE] = ACTIONS(1607), - [anon_sym_u_DQUOTE] = ACTIONS(1607), - [anon_sym_U_DQUOTE] = ACTIONS(1607), - [anon_sym_u8_DQUOTE] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1605), - [anon_sym_virtual] = ACTIONS(1605), - [anon_sym_explicit] = ACTIONS(1605), - [sym_auto] = ACTIONS(1605), - [anon_sym_typename] = ACTIONS(1605), - [anon_sym_template] = ACTIONS(1605), - [anon_sym_operator] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_throw] = ACTIONS(1605), - [anon_sym_namespace] = ACTIONS(1605), - [anon_sym_using] = ACTIONS(1605), - [anon_sym_static_assert] = ACTIONS(1605), - [anon_sym_co_return] = ACTIONS(1605), - [anon_sym_co_yield] = ACTIONS(1605), - [anon_sym_try] = ACTIONS(1605), - [anon_sym_co_await] = ACTIONS(1605), - [anon_sym_new] = ACTIONS(1605), - [sym_this] = ACTIONS(1605), - [sym_nullptr] = ACTIONS(1605), - [sym_alone_macro] = ACTIONS(1607), - [aux_sym_alone_macro_call_token1] = ACTIONS(1605), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_FORWARD] = ACTIONS(1605), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1605), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_PS_GET] = ACTIONS(1605), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1605), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1605), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1605), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1605), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1605), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1605), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1605), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1605), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1605), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1605), - [anon_sym_MOZ_COLD] = ACTIONS(1605), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1605), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1605), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1605), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1605), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1605), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1605), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1605), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1605), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1605), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1605), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1605), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1605), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1605), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1605), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1605), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1605), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1605), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1605), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1605), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1605), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_NONNULL] = ACTIONS(1605), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1605), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1605), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1605), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1605), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1605), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_NORETURN] = ACTIONS(1605), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1605), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1605), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1605), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1605), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1605), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1605), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1605), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1605), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1605), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1605), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1605), - [anon_sym_MOZ_RAII] = ACTIONS(1605), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1605), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1605), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1605), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1605), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1605), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1605), - [sym_raw_string_literal] = ACTIONS(1607), - }, - [284] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [285] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [286] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [287] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [288] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [289] = { - [sym_preproc_def] = STATE(276), - [sym_preproc_function_def] = STATE(276), - [sym_preproc_call] = STATE(276), - [sym_preproc_if_in_field_declaration_list] = STATE(276), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(276), - [sym_preproc_else_in_field_declaration_list] = STATE(5163), - [sym_preproc_elif_in_field_declaration_list] = STATE(5163), - [sym_type_definition] = STATE(276), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3235), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3615), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(276), - [sym_field_declaration] = STATE(276), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(841), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(276), - [sym_operator_cast] = STATE(4161), - [sym_inline_method_definition] = STATE(276), - [sym__constructor_specifiers] = STATE(841), - [sym_operator_cast_definition] = STATE(276), - [sym_operator_cast_declaration] = STATE(276), - [sym_constructor_or_destructor_definition] = STATE(276), - [sym_constructor_or_destructor_declaration] = STATE(276), - [sym_friend_declaration] = STATE(276), - [sym_access_specifier] = STATE(276), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(276), - [sym_alias_declaration] = STATE(276), - [sym_static_assert_declaration] = STATE(276), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4161), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(276), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(276), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(841), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(1909), - [aux_sym_preproc_if_token1] = ACTIONS(1911), - [aux_sym_preproc_if_token2] = ACTIONS(1965), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1915), - [aux_sym_preproc_else_token1] = ACTIONS(1917), - [aux_sym_preproc_elif_token1] = ACTIONS(1919), - [sym_preproc_directive] = ACTIONS(1921), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), + }, + [STATE(133)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym___extension__] = ACTIONS(1898), + [anon_sym_typedef] = ACTIONS(1920), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1905), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym___based] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1908), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(1951), - [anon_sym_private] = ACTIONS(1951), - [anon_sym_protected] = ACTIONS(1951), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(1955), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1957), - [anon_sym_using] = ACTIONS(1959), - [anon_sym_static_assert] = ACTIONS(1961), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1963), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [290] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [291] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [292] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [293] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [294] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [295] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [296] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [297] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [298] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [299] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [300] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [301] = { - [ts_builtin_sym_end] = ACTIONS(1631), - [sym_identifier] = ACTIONS(1629), - [aux_sym_preproc_include_token1] = ACTIONS(1629), - [aux_sym_preproc_def_token1] = ACTIONS(1629), - [aux_sym_preproc_if_token1] = ACTIONS(1629), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1629), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1629), - [sym_preproc_directive] = ACTIONS(1629), - [anon_sym_LPAREN2] = ACTIONS(1631), - [anon_sym_BANG] = ACTIONS(1631), - [anon_sym_TILDE] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_AMP_AMP] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1629), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_typedef] = ACTIONS(1629), - [anon_sym_extern] = ACTIONS(1629), - [anon_sym___attribute__] = ACTIONS(1629), - [anon_sym_COLON_COLON] = ACTIONS(1631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1631), - [anon_sym___declspec] = ACTIONS(1629), - [anon_sym___based] = ACTIONS(1629), - [anon_sym___cdecl] = ACTIONS(1629), - [anon_sym___clrcall] = ACTIONS(1629), - [anon_sym___stdcall] = ACTIONS(1629), - [anon_sym___fastcall] = ACTIONS(1629), - [anon_sym___thiscall] = ACTIONS(1629), - [anon_sym___vectorcall] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_static] = ACTIONS(1629), - [anon_sym_register] = ACTIONS(1629), - [anon_sym_inline] = ACTIONS(1629), - [anon_sym_thread_local] = ACTIONS(1629), - [anon_sym_const] = ACTIONS(1629), - [anon_sym_volatile] = ACTIONS(1629), - [anon_sym_restrict] = ACTIONS(1629), - [anon_sym__Atomic] = ACTIONS(1629), - [anon_sym_mutable] = ACTIONS(1629), - [anon_sym_constexpr] = ACTIONS(1629), - [anon_sym_signed] = ACTIONS(1629), - [anon_sym_unsigned] = ACTIONS(1629), - [anon_sym_long] = ACTIONS(1629), - [anon_sym_short] = ACTIONS(1629), - [sym_primitive_type] = ACTIONS(1629), - [anon_sym_enum] = ACTIONS(1629), - [anon_sym_class] = ACTIONS(1629), - [anon_sym_struct] = ACTIONS(1629), - [anon_sym_union] = ACTIONS(1629), - [anon_sym_if] = ACTIONS(1629), - [anon_sym_else] = ACTIONS(1629), - [anon_sym_switch] = ACTIONS(1629), - [anon_sym_case] = ACTIONS(1629), - [anon_sym_default] = ACTIONS(1629), - [anon_sym_while] = ACTIONS(1629), - [anon_sym_do] = ACTIONS(1629), - [anon_sym_for] = ACTIONS(1629), - [anon_sym_return] = ACTIONS(1629), - [anon_sym_break] = ACTIONS(1629), - [anon_sym_continue] = ACTIONS(1629), - [anon_sym_goto] = ACTIONS(1629), - [anon_sym_DASH_DASH] = ACTIONS(1631), - [anon_sym_PLUS_PLUS] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(1631), - [anon_sym_L_SQUOTE] = ACTIONS(1631), - [anon_sym_u_SQUOTE] = ACTIONS(1631), - [anon_sym_U_SQUOTE] = ACTIONS(1631), - [anon_sym_u8_SQUOTE] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_L_DQUOTE] = ACTIONS(1631), - [anon_sym_u_DQUOTE] = ACTIONS(1631), - [anon_sym_U_DQUOTE] = ACTIONS(1631), - [anon_sym_u8_DQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_true] = ACTIONS(1629), - [sym_false] = ACTIONS(1629), - [sym_null] = ACTIONS(1629), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1629), - [anon_sym_virtual] = ACTIONS(1629), - [anon_sym_explicit] = ACTIONS(1629), - [sym_auto] = ACTIONS(1629), - [anon_sym_typename] = ACTIONS(1629), - [anon_sym_template] = ACTIONS(1629), - [anon_sym_operator] = ACTIONS(1629), - [anon_sym_delete] = ACTIONS(1629), - [anon_sym_throw] = ACTIONS(1629), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_using] = ACTIONS(1629), - [anon_sym_static_assert] = ACTIONS(1629), - [anon_sym_co_return] = ACTIONS(1629), - [anon_sym_co_yield] = ACTIONS(1629), - [anon_sym_try] = ACTIONS(1629), - [anon_sym_co_await] = ACTIONS(1629), - [anon_sym_new] = ACTIONS(1629), - [sym_this] = ACTIONS(1629), - [sym_nullptr] = ACTIONS(1629), - [sym_alone_macro] = ACTIONS(1631), - [aux_sym_alone_macro_call_token1] = ACTIONS(1629), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_FORWARD] = ACTIONS(1629), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1629), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_PS_GET] = ACTIONS(1629), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1629), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1629), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1629), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1629), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1629), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1629), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1629), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1629), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1629), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1629), - [anon_sym_MOZ_COLD] = ACTIONS(1629), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1629), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1629), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1629), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1629), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1629), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1629), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1629), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1629), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1629), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1629), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1629), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1629), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1629), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1629), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1629), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1629), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1629), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1629), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1629), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1629), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_NONNULL] = ACTIONS(1629), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1629), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1629), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1629), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1629), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1629), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_NORETURN] = ACTIONS(1629), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1629), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1629), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1629), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1629), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1629), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1629), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1629), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1629), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1629), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1629), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1629), - [anon_sym_MOZ_RAII] = ACTIONS(1629), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1629), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1629), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1629), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1629), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1629), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1629), - [sym_raw_string_literal] = ACTIONS(1631), - }, - [302] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [303] = { - [sym_identifier] = ACTIONS(1541), - [aux_sym_preproc_include_token1] = ACTIONS(1541), - [aux_sym_preproc_def_token1] = ACTIONS(1541), - [aux_sym_preproc_if_token1] = ACTIONS(1541), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1541), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1541), - [sym_preproc_directive] = ACTIONS(1541), - [anon_sym_LPAREN2] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1543), - [anon_sym_AMP_AMP] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_typedef] = ACTIONS(1541), - [anon_sym_extern] = ACTIONS(1541), - [anon_sym___attribute__] = ACTIONS(1541), - [anon_sym_COLON_COLON] = ACTIONS(1543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1543), - [anon_sym___declspec] = ACTIONS(1541), - [anon_sym___based] = ACTIONS(1541), - [anon_sym___cdecl] = ACTIONS(1541), - [anon_sym___clrcall] = ACTIONS(1541), - [anon_sym___stdcall] = ACTIONS(1541), - [anon_sym___fastcall] = ACTIONS(1541), - [anon_sym___thiscall] = ACTIONS(1541), - [anon_sym___vectorcall] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1541), - [anon_sym_static] = ACTIONS(1541), - [anon_sym_register] = ACTIONS(1541), - [anon_sym_inline] = ACTIONS(1541), - [anon_sym_thread_local] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_volatile] = ACTIONS(1541), - [anon_sym_restrict] = ACTIONS(1541), - [anon_sym__Atomic] = ACTIONS(1541), - [anon_sym_mutable] = ACTIONS(1541), - [anon_sym_constexpr] = ACTIONS(1541), - [anon_sym_signed] = ACTIONS(1541), - [anon_sym_unsigned] = ACTIONS(1541), - [anon_sym_long] = ACTIONS(1541), - [anon_sym_short] = ACTIONS(1541), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_enum] = ACTIONS(1541), - [anon_sym_class] = ACTIONS(1541), - [anon_sym_struct] = ACTIONS(1541), - [anon_sym_union] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1541), - [anon_sym_else] = ACTIONS(1541), - [anon_sym_switch] = ACTIONS(1541), - [anon_sym_case] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1541), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1541), - [anon_sym_for] = ACTIONS(1541), - [anon_sym_return] = ACTIONS(1541), - [anon_sym_break] = ACTIONS(1541), - [anon_sym_continue] = ACTIONS(1541), - [anon_sym_goto] = ACTIONS(1541), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1541), - [sym_number_literal] = ACTIONS(1543), - [anon_sym_L_SQUOTE] = ACTIONS(1543), - [anon_sym_u_SQUOTE] = ACTIONS(1543), - [anon_sym_U_SQUOTE] = ACTIONS(1543), - [anon_sym_u8_SQUOTE] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_L_DQUOTE] = ACTIONS(1543), - [anon_sym_u_DQUOTE] = ACTIONS(1543), - [anon_sym_U_DQUOTE] = ACTIONS(1543), - [anon_sym_u8_DQUOTE] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1543), - [sym_true] = ACTIONS(1541), - [sym_false] = ACTIONS(1541), - [sym_null] = ACTIONS(1541), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1541), - [anon_sym_virtual] = ACTIONS(1541), - [anon_sym_explicit] = ACTIONS(1541), - [sym_auto] = ACTIONS(1541), - [anon_sym_typename] = ACTIONS(1541), - [anon_sym_template] = ACTIONS(1541), - [anon_sym_operator] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_throw] = ACTIONS(1541), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_using] = ACTIONS(1541), - [anon_sym_static_assert] = ACTIONS(1541), - [anon_sym_co_return] = ACTIONS(1541), - [anon_sym_co_yield] = ACTIONS(1541), - [anon_sym_try] = ACTIONS(1541), - [anon_sym_co_await] = ACTIONS(1541), - [anon_sym_new] = ACTIONS(1541), - [sym_this] = ACTIONS(1541), - [sym_nullptr] = ACTIONS(1541), - [sym_alone_macro] = ACTIONS(1543), - [aux_sym_alone_macro_call_token1] = ACTIONS(1541), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_FORWARD] = ACTIONS(1541), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1541), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_PS_GET] = ACTIONS(1541), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1541), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1541), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1541), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1541), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1541), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1541), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1541), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1541), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1541), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1541), - [anon_sym_MOZ_COLD] = ACTIONS(1541), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1541), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1541), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1541), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1541), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1541), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1541), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1541), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1541), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1541), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1541), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1541), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1541), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1541), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1541), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1541), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1541), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1541), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1541), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1541), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1541), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_NONNULL] = ACTIONS(1541), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1541), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1541), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1541), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1541), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1541), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_NORETURN] = ACTIONS(1541), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1541), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1541), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1541), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1541), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1541), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1541), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1541), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1541), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1541), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1541), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1541), - [anon_sym_MOZ_RAII] = ACTIONS(1541), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1541), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1541), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1541), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1541), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1541), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1541), - [sym_raw_string_literal] = ACTIONS(1543), - }, - [304] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [305] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [306] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [307] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [308] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [309] = { - [ts_builtin_sym_end] = ACTIONS(1651), - [sym_identifier] = ACTIONS(1649), - [aux_sym_preproc_include_token1] = ACTIONS(1649), - [aux_sym_preproc_def_token1] = ACTIONS(1649), - [aux_sym_preproc_if_token1] = ACTIONS(1649), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1649), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1649), - [sym_preproc_directive] = ACTIONS(1649), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_AMP_AMP] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1649), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_typedef] = ACTIONS(1649), - [anon_sym_extern] = ACTIONS(1649), - [anon_sym___attribute__] = ACTIONS(1649), - [anon_sym_COLON_COLON] = ACTIONS(1651), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1651), - [anon_sym___declspec] = ACTIONS(1649), - [anon_sym___based] = ACTIONS(1649), - [anon_sym___cdecl] = ACTIONS(1649), - [anon_sym___clrcall] = ACTIONS(1649), - [anon_sym___stdcall] = ACTIONS(1649), - [anon_sym___fastcall] = ACTIONS(1649), - [anon_sym___thiscall] = ACTIONS(1649), - [anon_sym___vectorcall] = ACTIONS(1649), - [anon_sym_LBRACE] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1649), - [anon_sym_register] = ACTIONS(1649), - [anon_sym_inline] = ACTIONS(1649), - [anon_sym_thread_local] = ACTIONS(1649), - [anon_sym_const] = ACTIONS(1649), - [anon_sym_volatile] = ACTIONS(1649), - [anon_sym_restrict] = ACTIONS(1649), - [anon_sym__Atomic] = ACTIONS(1649), - [anon_sym_mutable] = ACTIONS(1649), - [anon_sym_constexpr] = ACTIONS(1649), - [anon_sym_signed] = ACTIONS(1649), - [anon_sym_unsigned] = ACTIONS(1649), - [anon_sym_long] = ACTIONS(1649), - [anon_sym_short] = ACTIONS(1649), - [sym_primitive_type] = ACTIONS(1649), - [anon_sym_enum] = ACTIONS(1649), - [anon_sym_class] = ACTIONS(1649), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_union] = ACTIONS(1649), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_else] = ACTIONS(1649), - [anon_sym_switch] = ACTIONS(1649), - [anon_sym_case] = ACTIONS(1649), - [anon_sym_default] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_do] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_goto] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1651), - [anon_sym_sizeof] = ACTIONS(1649), - [sym_number_literal] = ACTIONS(1651), - [anon_sym_L_SQUOTE] = ACTIONS(1651), - [anon_sym_u_SQUOTE] = ACTIONS(1651), - [anon_sym_U_SQUOTE] = ACTIONS(1651), - [anon_sym_u8_SQUOTE] = ACTIONS(1651), - [anon_sym_SQUOTE] = ACTIONS(1651), - [anon_sym_L_DQUOTE] = ACTIONS(1651), - [anon_sym_u_DQUOTE] = ACTIONS(1651), - [anon_sym_U_DQUOTE] = ACTIONS(1651), - [anon_sym_u8_DQUOTE] = ACTIONS(1651), - [anon_sym_DQUOTE] = ACTIONS(1651), - [sym_true] = ACTIONS(1649), - [sym_false] = ACTIONS(1649), - [sym_null] = ACTIONS(1649), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1649), - [anon_sym_virtual] = ACTIONS(1649), - [anon_sym_explicit] = ACTIONS(1649), - [sym_auto] = ACTIONS(1649), - [anon_sym_typename] = ACTIONS(1649), - [anon_sym_template] = ACTIONS(1649), - [anon_sym_operator] = ACTIONS(1649), - [anon_sym_delete] = ACTIONS(1649), - [anon_sym_throw] = ACTIONS(1649), - [anon_sym_namespace] = ACTIONS(1649), - [anon_sym_using] = ACTIONS(1649), - [anon_sym_static_assert] = ACTIONS(1649), - [anon_sym_co_return] = ACTIONS(1649), - [anon_sym_co_yield] = ACTIONS(1649), - [anon_sym_try] = ACTIONS(1649), - [anon_sym_co_await] = ACTIONS(1649), - [anon_sym_new] = ACTIONS(1649), - [sym_this] = ACTIONS(1649), - [sym_nullptr] = ACTIONS(1649), - [sym_alone_macro] = ACTIONS(1651), - [aux_sym_alone_macro_call_token1] = ACTIONS(1649), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_FORWARD] = ACTIONS(1649), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1649), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_PS_GET] = ACTIONS(1649), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1649), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1649), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1649), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1649), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1649), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1649), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1649), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1649), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1649), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1649), - [anon_sym_MOZ_COLD] = ACTIONS(1649), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1649), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1649), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1649), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1649), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1649), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1649), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1649), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1649), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1649), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1649), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1649), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1649), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1649), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1649), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1649), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1649), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1649), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1649), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1649), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1649), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_NONNULL] = ACTIONS(1649), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1649), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1649), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1649), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1649), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1649), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_NORETURN] = ACTIONS(1649), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1649), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1649), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1649), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1649), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1649), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1649), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1649), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1649), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1649), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1649), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1649), - [anon_sym_MOZ_RAII] = ACTIONS(1649), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1649), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1649), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1649), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1649), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1649), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1649), - [sym_raw_string_literal] = ACTIONS(1651), - }, - [310] = { - [sym_identifier] = ACTIONS(1537), - [aux_sym_preproc_include_token1] = ACTIONS(1537), - [aux_sym_preproc_def_token1] = ACTIONS(1537), - [aux_sym_preproc_if_token1] = ACTIONS(1537), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1537), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1537), - [sym_preproc_directive] = ACTIONS(1537), - [anon_sym_LPAREN2] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_TILDE] = ACTIONS(1539), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1539), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_typedef] = ACTIONS(1537), - [anon_sym_extern] = ACTIONS(1537), - [anon_sym___attribute__] = ACTIONS(1537), - [anon_sym_COLON_COLON] = ACTIONS(1539), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1537), - [anon_sym___based] = ACTIONS(1537), - [anon_sym___cdecl] = ACTIONS(1537), - [anon_sym___clrcall] = ACTIONS(1537), - [anon_sym___stdcall] = ACTIONS(1537), - [anon_sym___fastcall] = ACTIONS(1537), - [anon_sym___thiscall] = ACTIONS(1537), - [anon_sym___vectorcall] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_register] = ACTIONS(1537), - [anon_sym_inline] = ACTIONS(1537), - [anon_sym_thread_local] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_volatile] = ACTIONS(1537), - [anon_sym_restrict] = ACTIONS(1537), - [anon_sym__Atomic] = ACTIONS(1537), - [anon_sym_mutable] = ACTIONS(1537), - [anon_sym_constexpr] = ACTIONS(1537), - [anon_sym_signed] = ACTIONS(1537), - [anon_sym_unsigned] = ACTIONS(1537), - [anon_sym_long] = ACTIONS(1537), - [anon_sym_short] = ACTIONS(1537), - [sym_primitive_type] = ACTIONS(1537), - [anon_sym_enum] = ACTIONS(1537), - [anon_sym_class] = ACTIONS(1537), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_else] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1537), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_do] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_goto] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1539), - [anon_sym_PLUS_PLUS] = ACTIONS(1539), - [anon_sym_sizeof] = ACTIONS(1537), - [sym_number_literal] = ACTIONS(1539), - [anon_sym_L_SQUOTE] = ACTIONS(1539), - [anon_sym_u_SQUOTE] = ACTIONS(1539), - [anon_sym_U_SQUOTE] = ACTIONS(1539), - [anon_sym_u8_SQUOTE] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [anon_sym_L_DQUOTE] = ACTIONS(1539), - [anon_sym_u_DQUOTE] = ACTIONS(1539), - [anon_sym_U_DQUOTE] = ACTIONS(1539), - [anon_sym_u8_DQUOTE] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1539), - [sym_true] = ACTIONS(1537), - [sym_false] = ACTIONS(1537), - [sym_null] = ACTIONS(1537), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1537), - [anon_sym_virtual] = ACTIONS(1537), - [anon_sym_explicit] = ACTIONS(1537), - [sym_auto] = ACTIONS(1537), - [anon_sym_typename] = ACTIONS(1537), - [anon_sym_template] = ACTIONS(1537), - [anon_sym_operator] = ACTIONS(1537), - [anon_sym_delete] = ACTIONS(1537), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_using] = ACTIONS(1537), - [anon_sym_static_assert] = ACTIONS(1537), - [anon_sym_co_return] = ACTIONS(1537), - [anon_sym_co_yield] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1537), - [anon_sym_new] = ACTIONS(1537), - [sym_this] = ACTIONS(1537), - [sym_nullptr] = ACTIONS(1537), - [sym_alone_macro] = ACTIONS(1539), - [aux_sym_alone_macro_call_token1] = ACTIONS(1537), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_FORWARD] = ACTIONS(1537), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1537), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_PS_GET] = ACTIONS(1537), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1537), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1537), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1537), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1537), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1537), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1537), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1537), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1537), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1537), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1537), - [anon_sym_MOZ_COLD] = ACTIONS(1537), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1537), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1537), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1537), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1537), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1537), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1537), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1537), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1537), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1537), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1537), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1537), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1537), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1537), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1537), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1537), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1537), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1537), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1537), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1537), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1537), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_NONNULL] = ACTIONS(1537), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1537), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1537), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1537), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1537), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1537), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_NORETURN] = ACTIONS(1537), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1537), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1537), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1537), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1537), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1537), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1537), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1537), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1537), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1537), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1537), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1537), - [anon_sym_MOZ_RAII] = ACTIONS(1537), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1537), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1537), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1537), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1537), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1537), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1537), - [sym_raw_string_literal] = ACTIONS(1539), - }, - [311] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [312] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [313] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [314] = { - [ts_builtin_sym_end] = ACTIONS(1579), - [sym_identifier] = ACTIONS(1577), - [aux_sym_preproc_include_token1] = ACTIONS(1577), - [aux_sym_preproc_def_token1] = ACTIONS(1577), - [aux_sym_preproc_if_token1] = ACTIONS(1577), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1577), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1577), - [sym_preproc_directive] = ACTIONS(1577), - [anon_sym_LPAREN2] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1579), - [anon_sym_TILDE] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_AMP_AMP] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_typedef] = ACTIONS(1577), - [anon_sym_extern] = ACTIONS(1577), - [anon_sym___attribute__] = ACTIONS(1577), - [anon_sym_COLON_COLON] = ACTIONS(1579), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1579), - [anon_sym___declspec] = ACTIONS(1577), - [anon_sym___based] = ACTIONS(1577), - [anon_sym___cdecl] = ACTIONS(1577), - [anon_sym___clrcall] = ACTIONS(1577), - [anon_sym___stdcall] = ACTIONS(1577), - [anon_sym___fastcall] = ACTIONS(1577), - [anon_sym___thiscall] = ACTIONS(1577), - [anon_sym___vectorcall] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_register] = ACTIONS(1577), - [anon_sym_inline] = ACTIONS(1577), - [anon_sym_thread_local] = ACTIONS(1577), - [anon_sym_const] = ACTIONS(1577), - [anon_sym_volatile] = ACTIONS(1577), - [anon_sym_restrict] = ACTIONS(1577), - [anon_sym__Atomic] = ACTIONS(1577), - [anon_sym_mutable] = ACTIONS(1577), - [anon_sym_constexpr] = ACTIONS(1577), - [anon_sym_signed] = ACTIONS(1577), - [anon_sym_unsigned] = ACTIONS(1577), - [anon_sym_long] = ACTIONS(1577), - [anon_sym_short] = ACTIONS(1577), - [sym_primitive_type] = ACTIONS(1577), - [anon_sym_enum] = ACTIONS(1577), - [anon_sym_class] = ACTIONS(1577), - [anon_sym_struct] = ACTIONS(1577), - [anon_sym_union] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_else] = ACTIONS(1577), - [anon_sym_switch] = ACTIONS(1577), - [anon_sym_case] = ACTIONS(1577), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1577), - [anon_sym_do] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_return] = ACTIONS(1577), - [anon_sym_break] = ACTIONS(1577), - [anon_sym_continue] = ACTIONS(1577), - [anon_sym_goto] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1577), - [sym_number_literal] = ACTIONS(1579), - [anon_sym_L_SQUOTE] = ACTIONS(1579), - [anon_sym_u_SQUOTE] = ACTIONS(1579), - [anon_sym_U_SQUOTE] = ACTIONS(1579), - [anon_sym_u8_SQUOTE] = ACTIONS(1579), - [anon_sym_SQUOTE] = ACTIONS(1579), - [anon_sym_L_DQUOTE] = ACTIONS(1579), - [anon_sym_u_DQUOTE] = ACTIONS(1579), - [anon_sym_U_DQUOTE] = ACTIONS(1579), - [anon_sym_u8_DQUOTE] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1577), - [anon_sym_virtual] = ACTIONS(1577), - [anon_sym_explicit] = ACTIONS(1577), - [sym_auto] = ACTIONS(1577), - [anon_sym_typename] = ACTIONS(1577), - [anon_sym_template] = ACTIONS(1577), - [anon_sym_operator] = ACTIONS(1577), - [anon_sym_delete] = ACTIONS(1577), - [anon_sym_throw] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1577), - [anon_sym_using] = ACTIONS(1577), - [anon_sym_static_assert] = ACTIONS(1577), - [anon_sym_co_return] = ACTIONS(1577), - [anon_sym_co_yield] = ACTIONS(1577), - [anon_sym_try] = ACTIONS(1577), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1577), - [sym_this] = ACTIONS(1577), - [sym_nullptr] = ACTIONS(1577), - [sym_alone_macro] = ACTIONS(1579), - [aux_sym_alone_macro_call_token1] = ACTIONS(1577), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_FORWARD] = ACTIONS(1577), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1577), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_PS_GET] = ACTIONS(1577), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1577), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1577), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1577), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1577), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1577), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1577), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1577), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1577), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1577), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1577), - [anon_sym_MOZ_COLD] = ACTIONS(1577), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1577), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1577), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1577), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1577), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1577), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1577), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1577), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1577), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1577), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1577), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1577), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1577), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1577), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1577), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1577), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1577), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1577), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1577), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1577), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1577), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_NONNULL] = ACTIONS(1577), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1577), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1577), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1577), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1577), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1577), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_NORETURN] = ACTIONS(1577), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1577), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1577), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1577), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1577), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1577), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1577), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1577), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1577), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1577), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1577), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1577), - [anon_sym_MOZ_RAII] = ACTIONS(1577), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1577), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1577), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1577), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1577), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1577), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1577), - [sym_raw_string_literal] = ACTIONS(1579), - }, - [315] = { - [ts_builtin_sym_end] = ACTIONS(1647), - [sym_identifier] = ACTIONS(1645), - [aux_sym_preproc_include_token1] = ACTIONS(1645), - [aux_sym_preproc_def_token1] = ACTIONS(1645), - [aux_sym_preproc_if_token1] = ACTIONS(1645), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1645), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1645), - [sym_preproc_directive] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_AMP_AMP] = ACTIONS(1647), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_typedef] = ACTIONS(1645), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym___attribute__] = ACTIONS(1645), - [anon_sym_COLON_COLON] = ACTIONS(1647), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1647), - [anon_sym___declspec] = ACTIONS(1645), - [anon_sym___based] = ACTIONS(1645), - [anon_sym___cdecl] = ACTIONS(1645), - [anon_sym___clrcall] = ACTIONS(1645), - [anon_sym___stdcall] = ACTIONS(1645), - [anon_sym___fastcall] = ACTIONS(1645), - [anon_sym___thiscall] = ACTIONS(1645), - [anon_sym___vectorcall] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_register] = ACTIONS(1645), - [anon_sym_inline] = ACTIONS(1645), - [anon_sym_thread_local] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_volatile] = ACTIONS(1645), - [anon_sym_restrict] = ACTIONS(1645), - [anon_sym__Atomic] = ACTIONS(1645), - [anon_sym_mutable] = ACTIONS(1645), - [anon_sym_constexpr] = ACTIONS(1645), - [anon_sym_signed] = ACTIONS(1645), - [anon_sym_unsigned] = ACTIONS(1645), - [anon_sym_long] = ACTIONS(1645), - [anon_sym_short] = ACTIONS(1645), - [sym_primitive_type] = ACTIONS(1645), - [anon_sym_enum] = ACTIONS(1645), - [anon_sym_class] = ACTIONS(1645), - [anon_sym_struct] = ACTIONS(1645), - [anon_sym_union] = ACTIONS(1645), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_switch] = ACTIONS(1645), - [anon_sym_case] = ACTIONS(1645), - [anon_sym_default] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_goto] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1645), - [sym_number_literal] = ACTIONS(1647), - [anon_sym_L_SQUOTE] = ACTIONS(1647), - [anon_sym_u_SQUOTE] = ACTIONS(1647), - [anon_sym_U_SQUOTE] = ACTIONS(1647), - [anon_sym_u8_SQUOTE] = ACTIONS(1647), - [anon_sym_SQUOTE] = ACTIONS(1647), - [anon_sym_L_DQUOTE] = ACTIONS(1647), - [anon_sym_u_DQUOTE] = ACTIONS(1647), - [anon_sym_U_DQUOTE] = ACTIONS(1647), - [anon_sym_u8_DQUOTE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym_true] = ACTIONS(1645), - [sym_false] = ACTIONS(1645), - [sym_null] = ACTIONS(1645), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1645), - [anon_sym_virtual] = ACTIONS(1645), - [anon_sym_explicit] = ACTIONS(1645), - [sym_auto] = ACTIONS(1645), - [anon_sym_typename] = ACTIONS(1645), - [anon_sym_template] = ACTIONS(1645), - [anon_sym_operator] = ACTIONS(1645), - [anon_sym_delete] = ACTIONS(1645), - [anon_sym_throw] = ACTIONS(1645), - [anon_sym_namespace] = ACTIONS(1645), - [anon_sym_using] = ACTIONS(1645), - [anon_sym_static_assert] = ACTIONS(1645), - [anon_sym_co_return] = ACTIONS(1645), - [anon_sym_co_yield] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1645), - [anon_sym_co_await] = ACTIONS(1645), - [anon_sym_new] = ACTIONS(1645), - [sym_this] = ACTIONS(1645), - [sym_nullptr] = ACTIONS(1645), - [sym_alone_macro] = ACTIONS(1647), - [aux_sym_alone_macro_call_token1] = ACTIONS(1645), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_FORWARD] = ACTIONS(1645), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1645), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_PS_GET] = ACTIONS(1645), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1645), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1645), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1645), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1645), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1645), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1645), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1645), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1645), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1645), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1645), - [anon_sym_MOZ_COLD] = ACTIONS(1645), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1645), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1645), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1645), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1645), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1645), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1645), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1645), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1645), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1645), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1645), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1645), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1645), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1645), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1645), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1645), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1645), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1645), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1645), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1645), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1645), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_NONNULL] = ACTIONS(1645), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1645), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1645), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1645), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1645), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1645), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_NORETURN] = ACTIONS(1645), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1645), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1645), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1645), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1645), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1645), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1645), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1645), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1645), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1645), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1645), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1645), - [anon_sym_MOZ_RAII] = ACTIONS(1645), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1645), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1645), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1645), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1645), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1645), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1645), - [sym_raw_string_literal] = ACTIONS(1647), - }, - [316] = { - [ts_builtin_sym_end] = ACTIONS(1661), - [sym_identifier] = ACTIONS(1659), - [aux_sym_preproc_include_token1] = ACTIONS(1659), - [aux_sym_preproc_def_token1] = ACTIONS(1659), - [aux_sym_preproc_if_token1] = ACTIONS(1659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1659), - [sym_preproc_directive] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_TILDE] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_AMP_AMP] = ACTIONS(1661), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_typedef] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym___attribute__] = ACTIONS(1659), - [anon_sym_COLON_COLON] = ACTIONS(1661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1661), - [anon_sym___declspec] = ACTIONS(1659), - [anon_sym___based] = ACTIONS(1659), - [anon_sym___cdecl] = ACTIONS(1659), - [anon_sym___clrcall] = ACTIONS(1659), - [anon_sym___stdcall] = ACTIONS(1659), - [anon_sym___fastcall] = ACTIONS(1659), - [anon_sym___thiscall] = ACTIONS(1659), - [anon_sym___vectorcall] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_inline] = ACTIONS(1659), - [anon_sym_thread_local] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [anon_sym_volatile] = ACTIONS(1659), - [anon_sym_restrict] = ACTIONS(1659), - [anon_sym__Atomic] = ACTIONS(1659), - [anon_sym_mutable] = ACTIONS(1659), - [anon_sym_constexpr] = ACTIONS(1659), - [anon_sym_signed] = ACTIONS(1659), - [anon_sym_unsigned] = ACTIONS(1659), - [anon_sym_long] = ACTIONS(1659), - [anon_sym_short] = ACTIONS(1659), - [sym_primitive_type] = ACTIONS(1659), - [anon_sym_enum] = ACTIONS(1659), - [anon_sym_class] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_switch] = ACTIONS(1659), - [anon_sym_case] = ACTIONS(1659), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_goto] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1661), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1661), - [anon_sym_L_SQUOTE] = ACTIONS(1661), - [anon_sym_u_SQUOTE] = ACTIONS(1661), - [anon_sym_U_SQUOTE] = ACTIONS(1661), - [anon_sym_u8_SQUOTE] = ACTIONS(1661), - [anon_sym_SQUOTE] = ACTIONS(1661), - [anon_sym_L_DQUOTE] = ACTIONS(1661), - [anon_sym_u_DQUOTE] = ACTIONS(1661), - [anon_sym_U_DQUOTE] = ACTIONS(1661), - [anon_sym_u8_DQUOTE] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym_true] = ACTIONS(1659), - [sym_false] = ACTIONS(1659), - [sym_null] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1659), - [anon_sym_virtual] = ACTIONS(1659), - [anon_sym_explicit] = ACTIONS(1659), - [sym_auto] = ACTIONS(1659), - [anon_sym_typename] = ACTIONS(1659), - [anon_sym_template] = ACTIONS(1659), - [anon_sym_operator] = ACTIONS(1659), - [anon_sym_delete] = ACTIONS(1659), - [anon_sym_throw] = ACTIONS(1659), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_using] = ACTIONS(1659), - [anon_sym_static_assert] = ACTIONS(1659), - [anon_sym_co_return] = ACTIONS(1659), - [anon_sym_co_yield] = ACTIONS(1659), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_co_await] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [sym_this] = ACTIONS(1659), - [sym_nullptr] = ACTIONS(1659), - [sym_alone_macro] = ACTIONS(1661), - [aux_sym_alone_macro_call_token1] = ACTIONS(1659), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_FORWARD] = ACTIONS(1659), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1659), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_PS_GET] = ACTIONS(1659), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1659), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1659), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1659), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1659), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1659), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1659), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1659), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1659), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1659), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1659), - [anon_sym_MOZ_COLD] = ACTIONS(1659), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1659), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1659), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1659), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1659), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1659), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1659), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1659), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1659), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1659), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1659), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1659), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1659), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1659), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1659), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1659), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1659), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1659), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1659), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1659), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1659), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_NONNULL] = ACTIONS(1659), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1659), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1659), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1659), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1659), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1659), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_NORETURN] = ACTIONS(1659), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1659), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1659), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1659), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1659), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1659), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1659), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1659), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1659), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1659), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1659), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1659), - [anon_sym_MOZ_RAII] = ACTIONS(1659), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1659), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1659), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1659), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1659), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1659), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1659), - [sym_raw_string_literal] = ACTIONS(1661), - }, - [317] = { - [ts_builtin_sym_end] = ACTIONS(1623), - [sym_identifier] = ACTIONS(1621), - [aux_sym_preproc_include_token1] = ACTIONS(1621), - [aux_sym_preproc_def_token1] = ACTIONS(1621), - [aux_sym_preproc_if_token1] = ACTIONS(1621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1621), - [sym_preproc_directive] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_AMP_AMP] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_typedef] = ACTIONS(1621), - [anon_sym_extern] = ACTIONS(1621), - [anon_sym___attribute__] = ACTIONS(1621), - [anon_sym_COLON_COLON] = ACTIONS(1623), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1623), - [anon_sym___declspec] = ACTIONS(1621), - [anon_sym___based] = ACTIONS(1621), - [anon_sym___cdecl] = ACTIONS(1621), - [anon_sym___clrcall] = ACTIONS(1621), - [anon_sym___stdcall] = ACTIONS(1621), - [anon_sym___fastcall] = ACTIONS(1621), - [anon_sym___thiscall] = ACTIONS(1621), - [anon_sym___vectorcall] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1621), - [anon_sym_static] = ACTIONS(1621), - [anon_sym_register] = ACTIONS(1621), - [anon_sym_inline] = ACTIONS(1621), - [anon_sym_thread_local] = ACTIONS(1621), - [anon_sym_const] = ACTIONS(1621), - [anon_sym_volatile] = ACTIONS(1621), - [anon_sym_restrict] = ACTIONS(1621), - [anon_sym__Atomic] = ACTIONS(1621), - [anon_sym_mutable] = ACTIONS(1621), - [anon_sym_constexpr] = ACTIONS(1621), - [anon_sym_signed] = ACTIONS(1621), - [anon_sym_unsigned] = ACTIONS(1621), - [anon_sym_long] = ACTIONS(1621), - [anon_sym_short] = ACTIONS(1621), - [sym_primitive_type] = ACTIONS(1621), - [anon_sym_enum] = ACTIONS(1621), - [anon_sym_class] = ACTIONS(1621), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1621), - [anon_sym_else] = ACTIONS(1621), - [anon_sym_switch] = ACTIONS(1621), - [anon_sym_case] = ACTIONS(1621), - [anon_sym_default] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1621), - [anon_sym_do] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1621), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1621), - [anon_sym_continue] = ACTIONS(1621), - [anon_sym_goto] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_sizeof] = ACTIONS(1621), - [sym_number_literal] = ACTIONS(1623), - [anon_sym_L_SQUOTE] = ACTIONS(1623), - [anon_sym_u_SQUOTE] = ACTIONS(1623), - [anon_sym_U_SQUOTE] = ACTIONS(1623), - [anon_sym_u8_SQUOTE] = ACTIONS(1623), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_L_DQUOTE] = ACTIONS(1623), - [anon_sym_u_DQUOTE] = ACTIONS(1623), - [anon_sym_U_DQUOTE] = ACTIONS(1623), - [anon_sym_u8_DQUOTE] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym_true] = ACTIONS(1621), - [sym_false] = ACTIONS(1621), - [sym_null] = ACTIONS(1621), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1621), - [anon_sym_virtual] = ACTIONS(1621), - [anon_sym_explicit] = ACTIONS(1621), - [sym_auto] = ACTIONS(1621), - [anon_sym_typename] = ACTIONS(1621), - [anon_sym_template] = ACTIONS(1621), - [anon_sym_operator] = ACTIONS(1621), - [anon_sym_delete] = ACTIONS(1621), - [anon_sym_throw] = ACTIONS(1621), - [anon_sym_namespace] = ACTIONS(1621), - [anon_sym_using] = ACTIONS(1621), - [anon_sym_static_assert] = ACTIONS(1621), - [anon_sym_co_return] = ACTIONS(1621), - [anon_sym_co_yield] = ACTIONS(1621), - [anon_sym_try] = ACTIONS(1621), - [anon_sym_co_await] = ACTIONS(1621), - [anon_sym_new] = ACTIONS(1621), - [sym_this] = ACTIONS(1621), - [sym_nullptr] = ACTIONS(1621), - [sym_alone_macro] = ACTIONS(1623), - [aux_sym_alone_macro_call_token1] = ACTIONS(1621), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_FORWARD] = ACTIONS(1621), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1621), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_PS_GET] = ACTIONS(1621), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1621), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1621), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1621), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1621), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1621), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1621), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1621), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1621), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1621), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1621), - [anon_sym_MOZ_COLD] = ACTIONS(1621), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1621), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1621), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1621), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1621), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1621), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1621), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1621), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1621), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1621), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1621), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1621), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1621), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1621), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1621), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1621), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1621), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1621), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1621), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1621), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1621), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_NONNULL] = ACTIONS(1621), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1621), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1621), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1621), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1621), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1621), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_NORETURN] = ACTIONS(1621), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1621), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1621), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1621), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1621), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1621), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1621), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1621), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1621), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1621), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1621), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1621), - [anon_sym_MOZ_RAII] = ACTIONS(1621), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1621), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1621), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1621), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1621), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1621), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1621), - [sym_raw_string_literal] = ACTIONS(1623), - }, - [318] = { - [sym_identifier] = ACTIONS(1691), - [aux_sym_preproc_include_token1] = ACTIONS(1691), - [aux_sym_preproc_def_token1] = ACTIONS(1691), - [aux_sym_preproc_if_token1] = ACTIONS(1691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1691), - [sym_preproc_directive] = ACTIONS(1691), - [anon_sym_LPAREN2] = ACTIONS(1693), - [anon_sym_BANG] = ACTIONS(1693), - [anon_sym_TILDE] = ACTIONS(1693), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_PLUS] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(1693), - [anon_sym_AMP_AMP] = ACTIONS(1693), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_typedef] = ACTIONS(1691), - [anon_sym_extern] = ACTIONS(1691), - [anon_sym___attribute__] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1693), - [anon_sym___declspec] = ACTIONS(1691), - [anon_sym___based] = ACTIONS(1691), - [anon_sym___cdecl] = ACTIONS(1691), - [anon_sym___clrcall] = ACTIONS(1691), - [anon_sym___stdcall] = ACTIONS(1691), - [anon_sym___fastcall] = ACTIONS(1691), - [anon_sym___thiscall] = ACTIONS(1691), - [anon_sym___vectorcall] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_LBRACK] = ACTIONS(1691), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_register] = ACTIONS(1691), - [anon_sym_inline] = ACTIONS(1691), - [anon_sym_thread_local] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(1691), - [anon_sym_volatile] = ACTIONS(1691), - [anon_sym_restrict] = ACTIONS(1691), - [anon_sym__Atomic] = ACTIONS(1691), - [anon_sym_mutable] = ACTIONS(1691), - [anon_sym_constexpr] = ACTIONS(1691), - [anon_sym_signed] = ACTIONS(1691), - [anon_sym_unsigned] = ACTIONS(1691), - [anon_sym_long] = ACTIONS(1691), - [anon_sym_short] = ACTIONS(1691), - [sym_primitive_type] = ACTIONS(1691), - [anon_sym_enum] = ACTIONS(1691), - [anon_sym_class] = ACTIONS(1691), - [anon_sym_struct] = ACTIONS(1691), - [anon_sym_union] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1691), - [anon_sym_else] = ACTIONS(1691), - [anon_sym_switch] = ACTIONS(1691), - [anon_sym_case] = ACTIONS(1691), - [anon_sym_default] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1691), - [anon_sym_do] = ACTIONS(1691), - [anon_sym_for] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_goto] = ACTIONS(1691), - [anon_sym_DASH_DASH] = ACTIONS(1693), - [anon_sym_PLUS_PLUS] = ACTIONS(1693), - [anon_sym_sizeof] = ACTIONS(1691), - [sym_number_literal] = ACTIONS(1693), - [anon_sym_L_SQUOTE] = ACTIONS(1693), - [anon_sym_u_SQUOTE] = ACTIONS(1693), - [anon_sym_U_SQUOTE] = ACTIONS(1693), - [anon_sym_u8_SQUOTE] = ACTIONS(1693), - [anon_sym_SQUOTE] = ACTIONS(1693), - [anon_sym_L_DQUOTE] = ACTIONS(1693), - [anon_sym_u_DQUOTE] = ACTIONS(1693), - [anon_sym_U_DQUOTE] = ACTIONS(1693), - [anon_sym_u8_DQUOTE] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1693), - [sym_true] = ACTIONS(1691), - [sym_false] = ACTIONS(1691), - [sym_null] = ACTIONS(1691), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1691), - [anon_sym_virtual] = ACTIONS(1691), - [anon_sym_explicit] = ACTIONS(1691), - [sym_auto] = ACTIONS(1691), - [anon_sym_typename] = ACTIONS(1691), - [anon_sym_template] = ACTIONS(1691), - [anon_sym_operator] = ACTIONS(1691), - [anon_sym_delete] = ACTIONS(1691), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1691), - [anon_sym_using] = ACTIONS(1691), - [anon_sym_static_assert] = ACTIONS(1691), - [anon_sym_co_return] = ACTIONS(1691), - [anon_sym_co_yield] = ACTIONS(1691), - [anon_sym_try] = ACTIONS(1691), - [anon_sym_co_await] = ACTIONS(1691), - [anon_sym_new] = ACTIONS(1691), - [sym_this] = ACTIONS(1691), - [sym_nullptr] = ACTIONS(1691), - [sym_alone_macro] = ACTIONS(1693), - [aux_sym_alone_macro_call_token1] = ACTIONS(1691), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_FORWARD] = ACTIONS(1691), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1691), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_PS_GET] = ACTIONS(1691), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1691), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1691), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1691), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1691), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1691), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1691), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1691), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1691), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1691), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1691), - [anon_sym_MOZ_COLD] = ACTIONS(1691), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1691), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1691), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1691), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1691), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1691), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1691), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1691), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1691), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1691), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1691), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1691), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1691), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1691), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1691), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1691), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1691), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1691), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1691), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1691), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1691), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_NONNULL] = ACTIONS(1691), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1691), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1691), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1691), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1691), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1691), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_NORETURN] = ACTIONS(1691), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1691), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1691), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1691), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1691), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1691), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1691), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1691), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1691), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1691), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1691), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1691), - [anon_sym_MOZ_RAII] = ACTIONS(1691), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1691), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1691), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1691), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1691), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1691), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1691), - [sym_raw_string_literal] = ACTIONS(1693), - }, - [319] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [320] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [321] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [322] = { - [sym_identifier] = ACTIONS(1601), - [aux_sym_preproc_include_token1] = ACTIONS(1601), - [aux_sym_preproc_def_token1] = ACTIONS(1601), - [aux_sym_preproc_if_token1] = ACTIONS(1601), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1601), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1601), - [sym_preproc_directive] = ACTIONS(1601), - [anon_sym_LPAREN2] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(1603), - [anon_sym_AMP] = ACTIONS(1601), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_typedef] = ACTIONS(1601), - [anon_sym_extern] = ACTIONS(1601), - [anon_sym___attribute__] = ACTIONS(1601), - [anon_sym_COLON_COLON] = ACTIONS(1603), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1603), - [anon_sym___declspec] = ACTIONS(1601), - [anon_sym___based] = ACTIONS(1601), - [anon_sym___cdecl] = ACTIONS(1601), - [anon_sym___clrcall] = ACTIONS(1601), - [anon_sym___stdcall] = ACTIONS(1601), - [anon_sym___fastcall] = ACTIONS(1601), - [anon_sym___thiscall] = ACTIONS(1601), - [anon_sym___vectorcall] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_static] = ACTIONS(1601), - [anon_sym_register] = ACTIONS(1601), - [anon_sym_inline] = ACTIONS(1601), - [anon_sym_thread_local] = ACTIONS(1601), - [anon_sym_const] = ACTIONS(1601), - [anon_sym_volatile] = ACTIONS(1601), - [anon_sym_restrict] = ACTIONS(1601), - [anon_sym__Atomic] = ACTIONS(1601), - [anon_sym_mutable] = ACTIONS(1601), - [anon_sym_constexpr] = ACTIONS(1601), - [anon_sym_signed] = ACTIONS(1601), - [anon_sym_unsigned] = ACTIONS(1601), - [anon_sym_long] = ACTIONS(1601), - [anon_sym_short] = ACTIONS(1601), - [sym_primitive_type] = ACTIONS(1601), - [anon_sym_enum] = ACTIONS(1601), - [anon_sym_class] = ACTIONS(1601), - [anon_sym_struct] = ACTIONS(1601), - [anon_sym_union] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1601), - [anon_sym_else] = ACTIONS(1601), - [anon_sym_switch] = ACTIONS(1601), - [anon_sym_case] = ACTIONS(1601), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1601), - [anon_sym_do] = ACTIONS(1601), - [anon_sym_for] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_break] = ACTIONS(1601), - [anon_sym_continue] = ACTIONS(1601), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1603), - [anon_sym_sizeof] = ACTIONS(1601), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_L_SQUOTE] = ACTIONS(1603), - [anon_sym_u_SQUOTE] = ACTIONS(1603), - [anon_sym_U_SQUOTE] = ACTIONS(1603), - [anon_sym_u8_SQUOTE] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(1603), - [anon_sym_L_DQUOTE] = ACTIONS(1603), - [anon_sym_u_DQUOTE] = ACTIONS(1603), - [anon_sym_U_DQUOTE] = ACTIONS(1603), - [anon_sym_u8_DQUOTE] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1601), - [anon_sym_virtual] = ACTIONS(1601), - [anon_sym_explicit] = ACTIONS(1601), - [sym_auto] = ACTIONS(1601), - [anon_sym_typename] = ACTIONS(1601), - [anon_sym_template] = ACTIONS(1601), - [anon_sym_operator] = ACTIONS(1601), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_throw] = ACTIONS(1601), - [anon_sym_namespace] = ACTIONS(1601), - [anon_sym_using] = ACTIONS(1601), - [anon_sym_static_assert] = ACTIONS(1601), - [anon_sym_co_return] = ACTIONS(1601), - [anon_sym_co_yield] = ACTIONS(1601), - [anon_sym_try] = ACTIONS(1601), - [anon_sym_co_await] = ACTIONS(1601), - [anon_sym_new] = ACTIONS(1601), - [sym_this] = ACTIONS(1601), - [sym_nullptr] = ACTIONS(1601), - [sym_alone_macro] = ACTIONS(1603), - [aux_sym_alone_macro_call_token1] = ACTIONS(1601), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_FORWARD] = ACTIONS(1601), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1601), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_PS_GET] = ACTIONS(1601), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1601), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1601), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1601), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1601), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1601), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1601), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1601), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1601), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1601), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1601), - [anon_sym_MOZ_COLD] = ACTIONS(1601), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1601), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1601), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1601), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1601), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1601), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1601), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1601), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1601), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1601), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1601), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1601), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1601), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1601), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1601), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1601), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1601), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1601), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1601), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1601), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1601), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_NONNULL] = ACTIONS(1601), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1601), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1601), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1601), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1601), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1601), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_NORETURN] = ACTIONS(1601), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1601), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1601), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1601), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1601), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1601), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1601), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1601), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1601), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1601), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1601), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1601), - [anon_sym_MOZ_RAII] = ACTIONS(1601), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1601), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1601), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1601), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1601), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1601), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1601), - [sym_raw_string_literal] = ACTIONS(1603), - }, - [323] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [324] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [325] = { - [ts_builtin_sym_end] = ACTIONS(1639), - [sym_identifier] = ACTIONS(1637), - [aux_sym_preproc_include_token1] = ACTIONS(1637), - [aux_sym_preproc_def_token1] = ACTIONS(1637), - [aux_sym_preproc_if_token1] = ACTIONS(1637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1637), - [sym_preproc_directive] = ACTIONS(1637), - [anon_sym_LPAREN2] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_AMP_AMP] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_typedef] = ACTIONS(1637), - [anon_sym_extern] = ACTIONS(1637), - [anon_sym___attribute__] = ACTIONS(1637), - [anon_sym_COLON_COLON] = ACTIONS(1639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1639), - [anon_sym___declspec] = ACTIONS(1637), - [anon_sym___based] = ACTIONS(1637), - [anon_sym___cdecl] = ACTIONS(1637), - [anon_sym___clrcall] = ACTIONS(1637), - [anon_sym___stdcall] = ACTIONS(1637), - [anon_sym___fastcall] = ACTIONS(1637), - [anon_sym___thiscall] = ACTIONS(1637), - [anon_sym___vectorcall] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1637), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_register] = ACTIONS(1637), - [anon_sym_inline] = ACTIONS(1637), - [anon_sym_thread_local] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [anon_sym_volatile] = ACTIONS(1637), - [anon_sym_restrict] = ACTIONS(1637), - [anon_sym__Atomic] = ACTIONS(1637), - [anon_sym_mutable] = ACTIONS(1637), - [anon_sym_constexpr] = ACTIONS(1637), - [anon_sym_signed] = ACTIONS(1637), - [anon_sym_unsigned] = ACTIONS(1637), - [anon_sym_long] = ACTIONS(1637), - [anon_sym_short] = ACTIONS(1637), - [sym_primitive_type] = ACTIONS(1637), - [anon_sym_enum] = ACTIONS(1637), - [anon_sym_class] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(1637), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_else] = ACTIONS(1637), - [anon_sym_switch] = ACTIONS(1637), - [anon_sym_case] = ACTIONS(1637), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_do] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_goto] = ACTIONS(1637), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_sizeof] = ACTIONS(1637), - [sym_number_literal] = ACTIONS(1639), - [anon_sym_L_SQUOTE] = ACTIONS(1639), - [anon_sym_u_SQUOTE] = ACTIONS(1639), - [anon_sym_U_SQUOTE] = ACTIONS(1639), - [anon_sym_u8_SQUOTE] = ACTIONS(1639), - [anon_sym_SQUOTE] = ACTIONS(1639), - [anon_sym_L_DQUOTE] = ACTIONS(1639), - [anon_sym_u_DQUOTE] = ACTIONS(1639), - [anon_sym_U_DQUOTE] = ACTIONS(1639), - [anon_sym_u8_DQUOTE] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym_true] = ACTIONS(1637), - [sym_false] = ACTIONS(1637), - [sym_null] = ACTIONS(1637), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1637), - [anon_sym_virtual] = ACTIONS(1637), - [anon_sym_explicit] = ACTIONS(1637), - [sym_auto] = ACTIONS(1637), - [anon_sym_typename] = ACTIONS(1637), - [anon_sym_template] = ACTIONS(1637), - [anon_sym_operator] = ACTIONS(1637), - [anon_sym_delete] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1637), - [anon_sym_using] = ACTIONS(1637), - [anon_sym_static_assert] = ACTIONS(1637), - [anon_sym_co_return] = ACTIONS(1637), - [anon_sym_co_yield] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1637), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1637), - [sym_this] = ACTIONS(1637), - [sym_nullptr] = ACTIONS(1637), - [sym_alone_macro] = ACTIONS(1639), - [aux_sym_alone_macro_call_token1] = ACTIONS(1637), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_FORWARD] = ACTIONS(1637), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1637), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_PS_GET] = ACTIONS(1637), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1637), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1637), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1637), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1637), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1637), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1637), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1637), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1637), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1637), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1637), - [anon_sym_MOZ_COLD] = ACTIONS(1637), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1637), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1637), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1637), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1637), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1637), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1637), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1637), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1637), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1637), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1637), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1637), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1637), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1637), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1637), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1637), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1637), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1637), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1637), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1637), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1637), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_NONNULL] = ACTIONS(1637), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1637), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1637), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1637), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1637), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1637), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_NORETURN] = ACTIONS(1637), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1637), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1637), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1637), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1637), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1637), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1637), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1637), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1637), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1637), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1637), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1637), - [anon_sym_MOZ_RAII] = ACTIONS(1637), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1637), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1637), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1637), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1637), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1637), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1637), - [sym_raw_string_literal] = ACTIONS(1639), - }, - [326] = { - [ts_builtin_sym_end] = ACTIONS(1635), - [sym_identifier] = ACTIONS(1633), - [aux_sym_preproc_include_token1] = ACTIONS(1633), - [aux_sym_preproc_def_token1] = ACTIONS(1633), - [aux_sym_preproc_if_token1] = ACTIONS(1633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1633), - [sym_preproc_directive] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(1635), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1633), - [anon_sym_STAR] = ACTIONS(1635), - [anon_sym_AMP_AMP] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1635), - [anon_sym_typedef] = ACTIONS(1633), - [anon_sym_extern] = ACTIONS(1633), - [anon_sym___attribute__] = ACTIONS(1633), - [anon_sym_COLON_COLON] = ACTIONS(1635), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1635), - [anon_sym___declspec] = ACTIONS(1633), - [anon_sym___based] = ACTIONS(1633), - [anon_sym___cdecl] = ACTIONS(1633), - [anon_sym___clrcall] = ACTIONS(1633), - [anon_sym___stdcall] = ACTIONS(1633), - [anon_sym___fastcall] = ACTIONS(1633), - [anon_sym___thiscall] = ACTIONS(1633), - [anon_sym___vectorcall] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_static] = ACTIONS(1633), - [anon_sym_register] = ACTIONS(1633), - [anon_sym_inline] = ACTIONS(1633), - [anon_sym_thread_local] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [anon_sym_volatile] = ACTIONS(1633), - [anon_sym_restrict] = ACTIONS(1633), - [anon_sym__Atomic] = ACTIONS(1633), - [anon_sym_mutable] = ACTIONS(1633), - [anon_sym_constexpr] = ACTIONS(1633), - [anon_sym_signed] = ACTIONS(1633), - [anon_sym_unsigned] = ACTIONS(1633), - [anon_sym_long] = ACTIONS(1633), - [anon_sym_short] = ACTIONS(1633), - [sym_primitive_type] = ACTIONS(1633), - [anon_sym_enum] = ACTIONS(1633), - [anon_sym_class] = ACTIONS(1633), - [anon_sym_struct] = ACTIONS(1633), - [anon_sym_union] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_else] = ACTIONS(1633), - [anon_sym_switch] = ACTIONS(1633), - [anon_sym_case] = ACTIONS(1633), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_do] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_goto] = ACTIONS(1633), - [anon_sym_DASH_DASH] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1635), - [anon_sym_sizeof] = ACTIONS(1633), - [sym_number_literal] = ACTIONS(1635), - [anon_sym_L_SQUOTE] = ACTIONS(1635), - [anon_sym_u_SQUOTE] = ACTIONS(1635), - [anon_sym_U_SQUOTE] = ACTIONS(1635), - [anon_sym_u8_SQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1635), - [anon_sym_L_DQUOTE] = ACTIONS(1635), - [anon_sym_u_DQUOTE] = ACTIONS(1635), - [anon_sym_U_DQUOTE] = ACTIONS(1635), - [anon_sym_u8_DQUOTE] = ACTIONS(1635), - [anon_sym_DQUOTE] = ACTIONS(1635), - [sym_true] = ACTIONS(1633), - [sym_false] = ACTIONS(1633), - [sym_null] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1633), - [anon_sym_virtual] = ACTIONS(1633), - [anon_sym_explicit] = ACTIONS(1633), - [sym_auto] = ACTIONS(1633), - [anon_sym_typename] = ACTIONS(1633), - [anon_sym_template] = ACTIONS(1633), - [anon_sym_operator] = ACTIONS(1633), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_throw] = ACTIONS(1633), - [anon_sym_namespace] = ACTIONS(1633), - [anon_sym_using] = ACTIONS(1633), - [anon_sym_static_assert] = ACTIONS(1633), - [anon_sym_co_return] = ACTIONS(1633), - [anon_sym_co_yield] = ACTIONS(1633), - [anon_sym_try] = ACTIONS(1633), - [anon_sym_co_await] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1633), - [sym_this] = ACTIONS(1633), - [sym_nullptr] = ACTIONS(1633), - [sym_alone_macro] = ACTIONS(1635), - [aux_sym_alone_macro_call_token1] = ACTIONS(1633), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_FORWARD] = ACTIONS(1633), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1633), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_PS_GET] = ACTIONS(1633), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1633), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1633), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1633), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1633), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1633), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1633), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1633), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1633), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1633), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1633), - [anon_sym_MOZ_COLD] = ACTIONS(1633), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1633), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1633), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1633), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1633), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1633), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1633), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1633), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1633), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1633), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1633), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1633), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1633), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1633), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1633), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1633), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1633), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1633), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1633), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1633), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1633), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_NONNULL] = ACTIONS(1633), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1633), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1633), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1633), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1633), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1633), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_NORETURN] = ACTIONS(1633), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1633), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1633), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1633), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1633), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1633), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1633), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1633), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1633), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1633), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1633), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1633), - [anon_sym_MOZ_RAII] = ACTIONS(1633), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1633), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1633), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1633), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1633), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1633), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1633), - [sym_raw_string_literal] = ACTIONS(1635), - }, - [327] = { - [ts_builtin_sym_end] = ACTIONS(1627), - [sym_identifier] = ACTIONS(1625), - [aux_sym_preproc_include_token1] = ACTIONS(1625), - [aux_sym_preproc_def_token1] = ACTIONS(1625), - [aux_sym_preproc_if_token1] = ACTIONS(1625), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1625), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1625), - [sym_preproc_directive] = ACTIONS(1625), - [anon_sym_LPAREN2] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1627), - [anon_sym_TILDE] = ACTIONS(1627), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_STAR] = ACTIONS(1627), - [anon_sym_AMP_AMP] = ACTIONS(1627), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_SEMI] = ACTIONS(1627), - [anon_sym_typedef] = ACTIONS(1625), - [anon_sym_extern] = ACTIONS(1625), - [anon_sym___attribute__] = ACTIONS(1625), - [anon_sym_COLON_COLON] = ACTIONS(1627), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1627), - [anon_sym___declspec] = ACTIONS(1625), - [anon_sym___based] = ACTIONS(1625), - [anon_sym___cdecl] = ACTIONS(1625), - [anon_sym___clrcall] = ACTIONS(1625), - [anon_sym___stdcall] = ACTIONS(1625), - [anon_sym___fastcall] = ACTIONS(1625), - [anon_sym___thiscall] = ACTIONS(1625), - [anon_sym___vectorcall] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_LBRACK] = ACTIONS(1625), - [anon_sym_static] = ACTIONS(1625), - [anon_sym_register] = ACTIONS(1625), - [anon_sym_inline] = ACTIONS(1625), - [anon_sym_thread_local] = ACTIONS(1625), - [anon_sym_const] = ACTIONS(1625), - [anon_sym_volatile] = ACTIONS(1625), - [anon_sym_restrict] = ACTIONS(1625), - [anon_sym__Atomic] = ACTIONS(1625), - [anon_sym_mutable] = ACTIONS(1625), - [anon_sym_constexpr] = ACTIONS(1625), - [anon_sym_signed] = ACTIONS(1625), - [anon_sym_unsigned] = ACTIONS(1625), - [anon_sym_long] = ACTIONS(1625), - [anon_sym_short] = ACTIONS(1625), - [sym_primitive_type] = ACTIONS(1625), - [anon_sym_enum] = ACTIONS(1625), - [anon_sym_class] = ACTIONS(1625), - [anon_sym_struct] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1625), - [anon_sym_else] = ACTIONS(1625), - [anon_sym_switch] = ACTIONS(1625), - [anon_sym_case] = ACTIONS(1625), - [anon_sym_default] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1625), - [anon_sym_do] = ACTIONS(1625), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1625), - [anon_sym_break] = ACTIONS(1625), - [anon_sym_continue] = ACTIONS(1625), - [anon_sym_goto] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1625), - [sym_number_literal] = ACTIONS(1627), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1627), - [anon_sym_u_DQUOTE] = ACTIONS(1627), - [anon_sym_U_DQUOTE] = ACTIONS(1627), - [anon_sym_u8_DQUOTE] = ACTIONS(1627), - [anon_sym_DQUOTE] = ACTIONS(1627), - [sym_true] = ACTIONS(1625), - [sym_false] = ACTIONS(1625), - [sym_null] = ACTIONS(1625), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1625), - [anon_sym_virtual] = ACTIONS(1625), - [anon_sym_explicit] = ACTIONS(1625), - [sym_auto] = ACTIONS(1625), - [anon_sym_typename] = ACTIONS(1625), - [anon_sym_template] = ACTIONS(1625), - [anon_sym_operator] = ACTIONS(1625), - [anon_sym_delete] = ACTIONS(1625), - [anon_sym_throw] = ACTIONS(1625), - [anon_sym_namespace] = ACTIONS(1625), - [anon_sym_using] = ACTIONS(1625), - [anon_sym_static_assert] = ACTIONS(1625), - [anon_sym_co_return] = ACTIONS(1625), - [anon_sym_co_yield] = ACTIONS(1625), - [anon_sym_try] = ACTIONS(1625), - [anon_sym_co_await] = ACTIONS(1625), - [anon_sym_new] = ACTIONS(1625), - [sym_this] = ACTIONS(1625), - [sym_nullptr] = ACTIONS(1625), - [sym_alone_macro] = ACTIONS(1627), - [aux_sym_alone_macro_call_token1] = ACTIONS(1625), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_FORWARD] = ACTIONS(1625), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1625), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_PS_GET] = ACTIONS(1625), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1625), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1625), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1625), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1625), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1625), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1625), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1625), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1625), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1625), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1625), - [anon_sym_MOZ_COLD] = ACTIONS(1625), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1625), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1625), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1625), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1625), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1625), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1625), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1625), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1625), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1625), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1625), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1625), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1625), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1625), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1625), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1625), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1625), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1625), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1625), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1625), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1625), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_NONNULL] = ACTIONS(1625), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1625), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1625), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1625), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1625), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1625), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_NORETURN] = ACTIONS(1625), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1625), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1625), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1625), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1625), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1625), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1625), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1625), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1625), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1625), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1625), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1625), - [anon_sym_MOZ_RAII] = ACTIONS(1625), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1625), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1625), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1625), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1625), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1625), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1625), - [sym_raw_string_literal] = ACTIONS(1627), - }, - [328] = { - [sym_identifier] = ACTIONS(1573), - [aux_sym_preproc_include_token1] = ACTIONS(1573), - [aux_sym_preproc_def_token1] = ACTIONS(1573), - [aux_sym_preproc_if_token1] = ACTIONS(1573), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1573), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1573), - [sym_preproc_directive] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_BANG] = ACTIONS(1575), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1573), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_STAR] = ACTIONS(1575), - [anon_sym_AMP_AMP] = ACTIONS(1575), - [anon_sym_AMP] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_typedef] = ACTIONS(1573), - [anon_sym_extern] = ACTIONS(1573), - [anon_sym___attribute__] = ACTIONS(1573), - [anon_sym_COLON_COLON] = ACTIONS(1575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1575), - [anon_sym___declspec] = ACTIONS(1573), - [anon_sym___based] = ACTIONS(1573), - [anon_sym___cdecl] = ACTIONS(1573), - [anon_sym___clrcall] = ACTIONS(1573), - [anon_sym___stdcall] = ACTIONS(1573), - [anon_sym___fastcall] = ACTIONS(1573), - [anon_sym___thiscall] = ACTIONS(1573), - [anon_sym___vectorcall] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1573), - [anon_sym_static] = ACTIONS(1573), - [anon_sym_register] = ACTIONS(1573), - [anon_sym_inline] = ACTIONS(1573), - [anon_sym_thread_local] = ACTIONS(1573), - [anon_sym_const] = ACTIONS(1573), - [anon_sym_volatile] = ACTIONS(1573), - [anon_sym_restrict] = ACTIONS(1573), - [anon_sym__Atomic] = ACTIONS(1573), - [anon_sym_mutable] = ACTIONS(1573), - [anon_sym_constexpr] = ACTIONS(1573), - [anon_sym_signed] = ACTIONS(1573), - [anon_sym_unsigned] = ACTIONS(1573), - [anon_sym_long] = ACTIONS(1573), - [anon_sym_short] = ACTIONS(1573), - [sym_primitive_type] = ACTIONS(1573), - [anon_sym_enum] = ACTIONS(1573), - [anon_sym_class] = ACTIONS(1573), - [anon_sym_struct] = ACTIONS(1573), - [anon_sym_union] = ACTIONS(1573), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_else] = ACTIONS(1573), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1573), - [anon_sym_default] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1573), - [anon_sym_do] = ACTIONS(1573), - [anon_sym_for] = ACTIONS(1573), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1573), - [anon_sym_continue] = ACTIONS(1573), - [anon_sym_goto] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_sizeof] = ACTIONS(1573), - [sym_number_literal] = ACTIONS(1575), - [anon_sym_L_SQUOTE] = ACTIONS(1575), - [anon_sym_u_SQUOTE] = ACTIONS(1575), - [anon_sym_U_SQUOTE] = ACTIONS(1575), - [anon_sym_u8_SQUOTE] = ACTIONS(1575), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_L_DQUOTE] = ACTIONS(1575), - [anon_sym_u_DQUOTE] = ACTIONS(1575), - [anon_sym_U_DQUOTE] = ACTIONS(1575), - [anon_sym_u8_DQUOTE] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym_true] = ACTIONS(1573), - [sym_false] = ACTIONS(1573), - [sym_null] = ACTIONS(1573), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1573), - [anon_sym_virtual] = ACTIONS(1573), - [anon_sym_explicit] = ACTIONS(1573), - [sym_auto] = ACTIONS(1573), - [anon_sym_typename] = ACTIONS(1573), - [anon_sym_template] = ACTIONS(1573), - [anon_sym_operator] = ACTIONS(1573), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_throw] = ACTIONS(1573), - [anon_sym_namespace] = ACTIONS(1573), - [anon_sym_using] = ACTIONS(1573), - [anon_sym_static_assert] = ACTIONS(1573), - [anon_sym_co_return] = ACTIONS(1573), - [anon_sym_co_yield] = ACTIONS(1573), - [anon_sym_try] = ACTIONS(1573), - [anon_sym_co_await] = ACTIONS(1573), - [anon_sym_new] = ACTIONS(1573), - [sym_this] = ACTIONS(1573), - [sym_nullptr] = ACTIONS(1573), - [sym_alone_macro] = ACTIONS(1575), - [aux_sym_alone_macro_call_token1] = ACTIONS(1573), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_FORWARD] = ACTIONS(1573), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1573), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_PS_GET] = ACTIONS(1573), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1573), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1573), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1573), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1573), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1573), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1573), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1573), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1573), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1573), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1573), - [anon_sym_MOZ_COLD] = ACTIONS(1573), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1573), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1573), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1573), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1573), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1573), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1573), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1573), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1573), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1573), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1573), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1573), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1573), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1573), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1573), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1573), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1573), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1573), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1573), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1573), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1573), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_NONNULL] = ACTIONS(1573), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1573), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1573), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1573), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1573), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1573), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_NORETURN] = ACTIONS(1573), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1573), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1573), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1573), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1573), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1573), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1573), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1573), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1573), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1573), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1573), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1573), - [anon_sym_MOZ_RAII] = ACTIONS(1573), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1573), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1573), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1573), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1573), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1573), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1573), - [sym_raw_string_literal] = ACTIONS(1575), - }, - [329] = { - [sym_identifier] = ACTIONS(1605), - [aux_sym_preproc_include_token1] = ACTIONS(1605), - [aux_sym_preproc_def_token1] = ACTIONS(1605), - [aux_sym_preproc_if_token1] = ACTIONS(1605), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1605), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1605), - [sym_preproc_directive] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1607), - [anon_sym_TILDE] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_AMP_AMP] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_typedef] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym___attribute__] = ACTIONS(1605), - [anon_sym_COLON_COLON] = ACTIONS(1607), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1607), - [anon_sym___declspec] = ACTIONS(1605), - [anon_sym___based] = ACTIONS(1605), - [anon_sym___cdecl] = ACTIONS(1605), - [anon_sym___clrcall] = ACTIONS(1605), - [anon_sym___stdcall] = ACTIONS(1605), - [anon_sym___fastcall] = ACTIONS(1605), - [anon_sym___thiscall] = ACTIONS(1605), - [anon_sym___vectorcall] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_static] = ACTIONS(1605), - [anon_sym_register] = ACTIONS(1605), - [anon_sym_inline] = ACTIONS(1605), - [anon_sym_thread_local] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [anon_sym_volatile] = ACTIONS(1605), - [anon_sym_restrict] = ACTIONS(1605), - [anon_sym__Atomic] = ACTIONS(1605), - [anon_sym_mutable] = ACTIONS(1605), - [anon_sym_constexpr] = ACTIONS(1605), - [anon_sym_signed] = ACTIONS(1605), - [anon_sym_unsigned] = ACTIONS(1605), - [anon_sym_long] = ACTIONS(1605), - [anon_sym_short] = ACTIONS(1605), - [sym_primitive_type] = ACTIONS(1605), - [anon_sym_enum] = ACTIONS(1605), - [anon_sym_class] = ACTIONS(1605), - [anon_sym_struct] = ACTIONS(1605), - [anon_sym_union] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_else] = ACTIONS(1605), - [anon_sym_switch] = ACTIONS(1605), - [anon_sym_case] = ACTIONS(1605), - [anon_sym_default] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_goto] = ACTIONS(1605), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1605), - [sym_number_literal] = ACTIONS(1607), - [anon_sym_L_SQUOTE] = ACTIONS(1607), - [anon_sym_u_SQUOTE] = ACTIONS(1607), - [anon_sym_U_SQUOTE] = ACTIONS(1607), - [anon_sym_u8_SQUOTE] = ACTIONS(1607), - [anon_sym_SQUOTE] = ACTIONS(1607), - [anon_sym_L_DQUOTE] = ACTIONS(1607), - [anon_sym_u_DQUOTE] = ACTIONS(1607), - [anon_sym_U_DQUOTE] = ACTIONS(1607), - [anon_sym_u8_DQUOTE] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1605), - [anon_sym_virtual] = ACTIONS(1605), - [anon_sym_explicit] = ACTIONS(1605), - [sym_auto] = ACTIONS(1605), - [anon_sym_typename] = ACTIONS(1605), - [anon_sym_template] = ACTIONS(1605), - [anon_sym_operator] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_throw] = ACTIONS(1605), - [anon_sym_namespace] = ACTIONS(1605), - [anon_sym_using] = ACTIONS(1605), - [anon_sym_static_assert] = ACTIONS(1605), - [anon_sym_co_return] = ACTIONS(1605), - [anon_sym_co_yield] = ACTIONS(1605), - [anon_sym_try] = ACTIONS(1605), - [anon_sym_co_await] = ACTIONS(1605), - [anon_sym_new] = ACTIONS(1605), - [sym_this] = ACTIONS(1605), - [sym_nullptr] = ACTIONS(1605), - [sym_alone_macro] = ACTIONS(1607), - [aux_sym_alone_macro_call_token1] = ACTIONS(1605), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_FORWARD] = ACTIONS(1605), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1605), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_PS_GET] = ACTIONS(1605), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1605), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1605), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1605), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1605), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1605), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1605), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1605), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1605), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1605), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1605), - [anon_sym_MOZ_COLD] = ACTIONS(1605), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1605), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1605), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1605), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1605), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1605), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1605), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1605), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1605), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1605), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1605), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1605), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1605), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1605), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1605), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1605), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1605), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1605), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1605), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1605), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1605), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_NONNULL] = ACTIONS(1605), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1605), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1605), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1605), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1605), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1605), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_NORETURN] = ACTIONS(1605), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1605), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1605), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1605), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1605), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1605), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1605), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1605), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1605), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1605), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1605), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1605), - [anon_sym_MOZ_RAII] = ACTIONS(1605), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1605), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1605), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1605), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1605), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1605), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1605), - [sym_raw_string_literal] = ACTIONS(1607), - }, - [330] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [331] = { - [sym_identifier] = ACTIONS(1585), - [aux_sym_preproc_include_token1] = ACTIONS(1585), - [aux_sym_preproc_def_token1] = ACTIONS(1585), - [aux_sym_preproc_if_token1] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1585), - [sym_preproc_directive] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_AMP_AMP] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_typedef] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym___attribute__] = ACTIONS(1585), - [anon_sym_COLON_COLON] = ACTIONS(1587), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1587), - [anon_sym___declspec] = ACTIONS(1585), - [anon_sym___based] = ACTIONS(1585), - [anon_sym___cdecl] = ACTIONS(1585), - [anon_sym___clrcall] = ACTIONS(1585), - [anon_sym___stdcall] = ACTIONS(1585), - [anon_sym___fastcall] = ACTIONS(1585), - [anon_sym___thiscall] = ACTIONS(1585), - [anon_sym___vectorcall] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_register] = ACTIONS(1585), - [anon_sym_inline] = ACTIONS(1585), - [anon_sym_thread_local] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_volatile] = ACTIONS(1585), - [anon_sym_restrict] = ACTIONS(1585), - [anon_sym__Atomic] = ACTIONS(1585), - [anon_sym_mutable] = ACTIONS(1585), - [anon_sym_constexpr] = ACTIONS(1585), - [anon_sym_signed] = ACTIONS(1585), - [anon_sym_unsigned] = ACTIONS(1585), - [anon_sym_long] = ACTIONS(1585), - [anon_sym_short] = ACTIONS(1585), - [sym_primitive_type] = ACTIONS(1585), - [anon_sym_enum] = ACTIONS(1585), - [anon_sym_class] = ACTIONS(1585), - [anon_sym_struct] = ACTIONS(1585), - [anon_sym_union] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_else] = ACTIONS(1585), - [anon_sym_switch] = ACTIONS(1585), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_goto] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1587), - [anon_sym_u_SQUOTE] = ACTIONS(1587), - [anon_sym_U_SQUOTE] = ACTIONS(1587), - [anon_sym_u8_SQUOTE] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1587), - [anon_sym_L_DQUOTE] = ACTIONS(1587), - [anon_sym_u_DQUOTE] = ACTIONS(1587), - [anon_sym_U_DQUOTE] = ACTIONS(1587), - [anon_sym_u8_DQUOTE] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym_true] = ACTIONS(1585), - [sym_false] = ACTIONS(1585), - [sym_null] = ACTIONS(1585), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1585), - [anon_sym_virtual] = ACTIONS(1585), - [anon_sym_explicit] = ACTIONS(1585), - [sym_auto] = ACTIONS(1585), - [anon_sym_typename] = ACTIONS(1585), - [anon_sym_template] = ACTIONS(1585), - [anon_sym_operator] = ACTIONS(1585), - [anon_sym_delete] = ACTIONS(1585), - [anon_sym_throw] = ACTIONS(1585), - [anon_sym_namespace] = ACTIONS(1585), - [anon_sym_using] = ACTIONS(1585), - [anon_sym_static_assert] = ACTIONS(1585), - [anon_sym_co_return] = ACTIONS(1585), - [anon_sym_co_yield] = ACTIONS(1585), - [anon_sym_try] = ACTIONS(1585), - [anon_sym_co_await] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1585), - [sym_this] = ACTIONS(1585), - [sym_nullptr] = ACTIONS(1585), - [sym_alone_macro] = ACTIONS(1587), - [aux_sym_alone_macro_call_token1] = ACTIONS(1585), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_FORWARD] = ACTIONS(1585), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1585), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_PS_GET] = ACTIONS(1585), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1585), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1585), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1585), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1585), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1585), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1585), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1585), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1585), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1585), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1585), - [anon_sym_MOZ_COLD] = ACTIONS(1585), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1585), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1585), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1585), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1585), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1585), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1585), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1585), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1585), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1585), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1585), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1585), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1585), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1585), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1585), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1585), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1585), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1585), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1585), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1585), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1585), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_NONNULL] = ACTIONS(1585), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1585), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1585), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1585), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1585), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1585), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_NORETURN] = ACTIONS(1585), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1585), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1585), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1585), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1585), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1585), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1585), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1585), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1585), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1585), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1585), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1585), - [anon_sym_MOZ_RAII] = ACTIONS(1585), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1585), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1585), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1585), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1585), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1585), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1585), - [sym_raw_string_literal] = ACTIONS(1587), - }, - [332] = { - [sym_identifier] = ACTIONS(1589), - [aux_sym_preproc_include_token1] = ACTIONS(1589), - [aux_sym_preproc_def_token1] = ACTIONS(1589), - [aux_sym_preproc_if_token1] = ACTIONS(1589), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1589), - [sym_preproc_directive] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1591), - [anon_sym_AMP_AMP] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_typedef] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym___attribute__] = ACTIONS(1589), - [anon_sym_COLON_COLON] = ACTIONS(1591), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1591), - [anon_sym___declspec] = ACTIONS(1589), - [anon_sym___based] = ACTIONS(1589), - [anon_sym___cdecl] = ACTIONS(1589), - [anon_sym___clrcall] = ACTIONS(1589), - [anon_sym___stdcall] = ACTIONS(1589), - [anon_sym___fastcall] = ACTIONS(1589), - [anon_sym___thiscall] = ACTIONS(1589), - [anon_sym___vectorcall] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_inline] = ACTIONS(1589), - [anon_sym_thread_local] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [anon_sym_volatile] = ACTIONS(1589), - [anon_sym_restrict] = ACTIONS(1589), - [anon_sym__Atomic] = ACTIONS(1589), - [anon_sym_mutable] = ACTIONS(1589), - [anon_sym_constexpr] = ACTIONS(1589), - [anon_sym_signed] = ACTIONS(1589), - [anon_sym_unsigned] = ACTIONS(1589), - [anon_sym_long] = ACTIONS(1589), - [anon_sym_short] = ACTIONS(1589), - [sym_primitive_type] = ACTIONS(1589), - [anon_sym_enum] = ACTIONS(1589), - [anon_sym_class] = ACTIONS(1589), - [anon_sym_struct] = ACTIONS(1589), - [anon_sym_union] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_switch] = ACTIONS(1589), - [anon_sym_case] = ACTIONS(1589), - [anon_sym_default] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_goto] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_sizeof] = ACTIONS(1589), - [sym_number_literal] = ACTIONS(1591), - [anon_sym_L_SQUOTE] = ACTIONS(1591), - [anon_sym_u_SQUOTE] = ACTIONS(1591), - [anon_sym_U_SQUOTE] = ACTIONS(1591), - [anon_sym_u8_SQUOTE] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1591), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1589), - [anon_sym_virtual] = ACTIONS(1589), - [anon_sym_explicit] = ACTIONS(1589), - [sym_auto] = ACTIONS(1589), - [anon_sym_typename] = ACTIONS(1589), - [anon_sym_template] = ACTIONS(1589), - [anon_sym_operator] = ACTIONS(1589), - [anon_sym_delete] = ACTIONS(1589), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_namespace] = ACTIONS(1589), - [anon_sym_using] = ACTIONS(1589), - [anon_sym_static_assert] = ACTIONS(1589), - [anon_sym_co_return] = ACTIONS(1589), - [anon_sym_co_yield] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_co_await] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [sym_this] = ACTIONS(1589), - [sym_nullptr] = ACTIONS(1589), - [sym_alone_macro] = ACTIONS(1591), - [aux_sym_alone_macro_call_token1] = ACTIONS(1589), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_FORWARD] = ACTIONS(1589), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1589), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_PS_GET] = ACTIONS(1589), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1589), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1589), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1589), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1589), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1589), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1589), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1589), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1589), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1589), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1589), - [anon_sym_MOZ_COLD] = ACTIONS(1589), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1589), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1589), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1589), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1589), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1589), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1589), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1589), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1589), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1589), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1589), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1589), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1589), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1589), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1589), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1589), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1589), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1589), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1589), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1589), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1589), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_NONNULL] = ACTIONS(1589), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1589), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1589), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1589), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1589), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1589), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_NORETURN] = ACTIONS(1589), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1589), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1589), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1589), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1589), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1589), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1589), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1589), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1589), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1589), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1589), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1589), - [anon_sym_MOZ_RAII] = ACTIONS(1589), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1589), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1589), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1589), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1589), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1589), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1589), - [sym_raw_string_literal] = ACTIONS(1591), - }, - [333] = { - [sym_identifier] = ACTIONS(1597), - [aux_sym_preproc_include_token1] = ACTIONS(1597), - [aux_sym_preproc_def_token1] = ACTIONS(1597), - [aux_sym_preproc_if_token1] = ACTIONS(1597), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1597), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1597), - [sym_preproc_directive] = ACTIONS(1597), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_typedef] = ACTIONS(1597), - [anon_sym_extern] = ACTIONS(1597), - [anon_sym___attribute__] = ACTIONS(1597), - [anon_sym_COLON_COLON] = ACTIONS(1599), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), - [anon_sym___declspec] = ACTIONS(1597), - [anon_sym___based] = ACTIONS(1597), - [anon_sym___cdecl] = ACTIONS(1597), - [anon_sym___clrcall] = ACTIONS(1597), - [anon_sym___stdcall] = ACTIONS(1597), - [anon_sym___fastcall] = ACTIONS(1597), - [anon_sym___thiscall] = ACTIONS(1597), - [anon_sym___vectorcall] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1597), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_register] = ACTIONS(1597), - [anon_sym_inline] = ACTIONS(1597), - [anon_sym_thread_local] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(1597), - [anon_sym_volatile] = ACTIONS(1597), - [anon_sym_restrict] = ACTIONS(1597), - [anon_sym__Atomic] = ACTIONS(1597), - [anon_sym_mutable] = ACTIONS(1597), - [anon_sym_constexpr] = ACTIONS(1597), - [anon_sym_signed] = ACTIONS(1597), - [anon_sym_unsigned] = ACTIONS(1597), - [anon_sym_long] = ACTIONS(1597), - [anon_sym_short] = ACTIONS(1597), - [sym_primitive_type] = ACTIONS(1597), - [anon_sym_enum] = ACTIONS(1597), - [anon_sym_class] = ACTIONS(1597), - [anon_sym_struct] = ACTIONS(1597), - [anon_sym_union] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_else] = ACTIONS(1597), - [anon_sym_switch] = ACTIONS(1597), - [anon_sym_case] = ACTIONS(1597), - [anon_sym_default] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_do] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_goto] = ACTIONS(1597), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_sizeof] = ACTIONS(1597), - [sym_number_literal] = ACTIONS(1599), - [anon_sym_L_SQUOTE] = ACTIONS(1599), - [anon_sym_u_SQUOTE] = ACTIONS(1599), - [anon_sym_U_SQUOTE] = ACTIONS(1599), - [anon_sym_u8_SQUOTE] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_L_DQUOTE] = ACTIONS(1599), - [anon_sym_u_DQUOTE] = ACTIONS(1599), - [anon_sym_U_DQUOTE] = ACTIONS(1599), - [anon_sym_u8_DQUOTE] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym_true] = ACTIONS(1597), - [sym_false] = ACTIONS(1597), - [sym_null] = ACTIONS(1597), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1597), - [anon_sym_virtual] = ACTIONS(1597), - [anon_sym_explicit] = ACTIONS(1597), - [sym_auto] = ACTIONS(1597), - [anon_sym_typename] = ACTIONS(1597), - [anon_sym_template] = ACTIONS(1597), - [anon_sym_operator] = ACTIONS(1597), - [anon_sym_delete] = ACTIONS(1597), - [anon_sym_throw] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_using] = ACTIONS(1597), - [anon_sym_static_assert] = ACTIONS(1597), - [anon_sym_co_return] = ACTIONS(1597), - [anon_sym_co_yield] = ACTIONS(1597), - [anon_sym_try] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1597), - [anon_sym_new] = ACTIONS(1597), - [sym_this] = ACTIONS(1597), - [sym_nullptr] = ACTIONS(1597), - [sym_alone_macro] = ACTIONS(1599), - [aux_sym_alone_macro_call_token1] = ACTIONS(1597), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_FORWARD] = ACTIONS(1597), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1597), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_PS_GET] = ACTIONS(1597), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1597), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1597), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1597), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1597), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1597), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1597), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1597), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1597), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1597), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1597), - [anon_sym_MOZ_COLD] = ACTIONS(1597), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1597), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1597), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1597), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1597), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1597), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1597), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1597), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1597), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1597), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1597), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1597), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1597), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1597), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1597), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1597), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1597), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1597), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1597), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1597), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1597), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_NONNULL] = ACTIONS(1597), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1597), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1597), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1597), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1597), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1597), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_NORETURN] = ACTIONS(1597), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1597), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1597), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1597), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1597), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1597), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1597), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1597), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1597), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1597), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1597), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1597), - [anon_sym_MOZ_RAII] = ACTIONS(1597), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1597), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1597), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1597), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1597), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1597), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1597), - [sym_raw_string_literal] = ACTIONS(1599), - }, - [334] = { - [sym_preproc_def] = STATE(665), - [sym_preproc_function_def] = STATE(665), - [sym_preproc_call] = STATE(665), - [sym_preproc_if_in_field_declaration_list] = STATE(665), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(665), - [sym_preproc_else_in_field_declaration_list] = STATE(5212), - [sym_preproc_elif_in_field_declaration_list] = STATE(5212), - [sym_type_definition] = STATE(665), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3235), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3615), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(665), - [sym_field_declaration] = STATE(665), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(841), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(665), - [sym_operator_cast] = STATE(4161), - [sym_inline_method_definition] = STATE(665), - [sym__constructor_specifiers] = STATE(841), - [sym_operator_cast_definition] = STATE(665), - [sym_operator_cast_declaration] = STATE(665), - [sym_constructor_or_destructor_definition] = STATE(665), - [sym_constructor_or_destructor_declaration] = STATE(665), - [sym_friend_declaration] = STATE(665), - [sym_access_specifier] = STATE(665), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(665), - [sym_alias_declaration] = STATE(665), - [sym_static_assert_declaration] = STATE(665), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4161), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(665), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(665), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(841), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(1909), - [aux_sym_preproc_if_token1] = ACTIONS(1911), - [aux_sym_preproc_if_token2] = ACTIONS(1967), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1915), - [aux_sym_preproc_else_token1] = ACTIONS(1917), - [aux_sym_preproc_elif_token1] = ACTIONS(1919), - [sym_preproc_directive] = ACTIONS(1921), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1914), + [anon_sym_explicit] = ACTIONS(1903), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1917), + [anon_sym_operator] = ACTIONS(1903), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), + }, + [STATE(134)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym___extension__] = ACTIONS(1898), + [anon_sym_typedef] = ACTIONS(1922), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1905), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym___based] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1908), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(1951), - [anon_sym_private] = ACTIONS(1951), - [anon_sym_protected] = ACTIONS(1951), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(1955), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1957), - [anon_sym_using] = ACTIONS(1959), - [anon_sym_static_assert] = ACTIONS(1961), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1963), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [335] = { - [sym_identifier] = ACTIONS(1621), - [aux_sym_preproc_include_token1] = ACTIONS(1621), - [aux_sym_preproc_def_token1] = ACTIONS(1621), - [aux_sym_preproc_if_token1] = ACTIONS(1621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1621), - [sym_preproc_directive] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_AMP_AMP] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_typedef] = ACTIONS(1621), - [anon_sym_extern] = ACTIONS(1621), - [anon_sym___attribute__] = ACTIONS(1621), - [anon_sym_COLON_COLON] = ACTIONS(1623), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1623), - [anon_sym___declspec] = ACTIONS(1621), - [anon_sym___based] = ACTIONS(1621), - [anon_sym___cdecl] = ACTIONS(1621), - [anon_sym___clrcall] = ACTIONS(1621), - [anon_sym___stdcall] = ACTIONS(1621), - [anon_sym___fastcall] = ACTIONS(1621), - [anon_sym___thiscall] = ACTIONS(1621), - [anon_sym___vectorcall] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_RBRACE] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1621), - [anon_sym_static] = ACTIONS(1621), - [anon_sym_register] = ACTIONS(1621), - [anon_sym_inline] = ACTIONS(1621), - [anon_sym_thread_local] = ACTIONS(1621), - [anon_sym_const] = ACTIONS(1621), - [anon_sym_volatile] = ACTIONS(1621), - [anon_sym_restrict] = ACTIONS(1621), - [anon_sym__Atomic] = ACTIONS(1621), - [anon_sym_mutable] = ACTIONS(1621), - [anon_sym_constexpr] = ACTIONS(1621), - [anon_sym_signed] = ACTIONS(1621), - [anon_sym_unsigned] = ACTIONS(1621), - [anon_sym_long] = ACTIONS(1621), - [anon_sym_short] = ACTIONS(1621), - [sym_primitive_type] = ACTIONS(1621), - [anon_sym_enum] = ACTIONS(1621), - [anon_sym_class] = ACTIONS(1621), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1621), - [anon_sym_else] = ACTIONS(1621), - [anon_sym_switch] = ACTIONS(1621), - [anon_sym_case] = ACTIONS(1621), - [anon_sym_default] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1621), - [anon_sym_do] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1621), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1621), - [anon_sym_continue] = ACTIONS(1621), - [anon_sym_goto] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_sizeof] = ACTIONS(1621), - [sym_number_literal] = ACTIONS(1623), - [anon_sym_L_SQUOTE] = ACTIONS(1623), - [anon_sym_u_SQUOTE] = ACTIONS(1623), - [anon_sym_U_SQUOTE] = ACTIONS(1623), - [anon_sym_u8_SQUOTE] = ACTIONS(1623), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_L_DQUOTE] = ACTIONS(1623), - [anon_sym_u_DQUOTE] = ACTIONS(1623), - [anon_sym_U_DQUOTE] = ACTIONS(1623), - [anon_sym_u8_DQUOTE] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym_true] = ACTIONS(1621), - [sym_false] = ACTIONS(1621), - [sym_null] = ACTIONS(1621), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1621), - [anon_sym_virtual] = ACTIONS(1621), - [anon_sym_explicit] = ACTIONS(1621), - [sym_auto] = ACTIONS(1621), - [anon_sym_typename] = ACTIONS(1621), - [anon_sym_template] = ACTIONS(1621), - [anon_sym_operator] = ACTIONS(1621), - [anon_sym_delete] = ACTIONS(1621), - [anon_sym_throw] = ACTIONS(1621), - [anon_sym_namespace] = ACTIONS(1621), - [anon_sym_using] = ACTIONS(1621), - [anon_sym_static_assert] = ACTIONS(1621), - [anon_sym_co_return] = ACTIONS(1621), - [anon_sym_co_yield] = ACTIONS(1621), - [anon_sym_try] = ACTIONS(1621), - [anon_sym_co_await] = ACTIONS(1621), - [anon_sym_new] = ACTIONS(1621), - [sym_this] = ACTIONS(1621), - [sym_nullptr] = ACTIONS(1621), - [sym_alone_macro] = ACTIONS(1623), - [aux_sym_alone_macro_call_token1] = ACTIONS(1621), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_FORWARD] = ACTIONS(1621), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1621), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_PS_GET] = ACTIONS(1621), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1621), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1621), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1621), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1621), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1621), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1621), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1621), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1621), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1621), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1621), - [anon_sym_MOZ_COLD] = ACTIONS(1621), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1621), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1621), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1621), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1621), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1621), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1621), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1621), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1621), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1621), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1621), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1621), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1621), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1621), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1621), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1621), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1621), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1621), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1621), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1621), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1621), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_NONNULL] = ACTIONS(1621), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1621), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1621), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1621), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1621), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1621), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_NORETURN] = ACTIONS(1621), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1621), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1621), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1621), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1621), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1621), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1621), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1621), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1621), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1621), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1621), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1621), - [anon_sym_MOZ_RAII] = ACTIONS(1621), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1621), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1621), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1621), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1621), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1621), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1621), - [sym_raw_string_literal] = ACTIONS(1623), - }, - [336] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [337] = { - [sym_identifier] = ACTIONS(1629), - [aux_sym_preproc_include_token1] = ACTIONS(1629), - [aux_sym_preproc_def_token1] = ACTIONS(1629), - [aux_sym_preproc_if_token1] = ACTIONS(1629), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1629), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1629), - [sym_preproc_directive] = ACTIONS(1629), - [anon_sym_LPAREN2] = ACTIONS(1631), - [anon_sym_BANG] = ACTIONS(1631), - [anon_sym_TILDE] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_AMP_AMP] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1629), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_typedef] = ACTIONS(1629), - [anon_sym_extern] = ACTIONS(1629), - [anon_sym___attribute__] = ACTIONS(1629), - [anon_sym_COLON_COLON] = ACTIONS(1631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1631), - [anon_sym___declspec] = ACTIONS(1629), - [anon_sym___based] = ACTIONS(1629), - [anon_sym___cdecl] = ACTIONS(1629), - [anon_sym___clrcall] = ACTIONS(1629), - [anon_sym___stdcall] = ACTIONS(1629), - [anon_sym___fastcall] = ACTIONS(1629), - [anon_sym___thiscall] = ACTIONS(1629), - [anon_sym___vectorcall] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_static] = ACTIONS(1629), - [anon_sym_register] = ACTIONS(1629), - [anon_sym_inline] = ACTIONS(1629), - [anon_sym_thread_local] = ACTIONS(1629), - [anon_sym_const] = ACTIONS(1629), - [anon_sym_volatile] = ACTIONS(1629), - [anon_sym_restrict] = ACTIONS(1629), - [anon_sym__Atomic] = ACTIONS(1629), - [anon_sym_mutable] = ACTIONS(1629), - [anon_sym_constexpr] = ACTIONS(1629), - [anon_sym_signed] = ACTIONS(1629), - [anon_sym_unsigned] = ACTIONS(1629), - [anon_sym_long] = ACTIONS(1629), - [anon_sym_short] = ACTIONS(1629), - [sym_primitive_type] = ACTIONS(1629), - [anon_sym_enum] = ACTIONS(1629), - [anon_sym_class] = ACTIONS(1629), - [anon_sym_struct] = ACTIONS(1629), - [anon_sym_union] = ACTIONS(1629), - [anon_sym_if] = ACTIONS(1629), - [anon_sym_else] = ACTIONS(1629), - [anon_sym_switch] = ACTIONS(1629), - [anon_sym_case] = ACTIONS(1629), - [anon_sym_default] = ACTIONS(1629), - [anon_sym_while] = ACTIONS(1629), - [anon_sym_do] = ACTIONS(1629), - [anon_sym_for] = ACTIONS(1629), - [anon_sym_return] = ACTIONS(1629), - [anon_sym_break] = ACTIONS(1629), - [anon_sym_continue] = ACTIONS(1629), - [anon_sym_goto] = ACTIONS(1629), - [anon_sym_DASH_DASH] = ACTIONS(1631), - [anon_sym_PLUS_PLUS] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(1631), - [anon_sym_L_SQUOTE] = ACTIONS(1631), - [anon_sym_u_SQUOTE] = ACTIONS(1631), - [anon_sym_U_SQUOTE] = ACTIONS(1631), - [anon_sym_u8_SQUOTE] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_L_DQUOTE] = ACTIONS(1631), - [anon_sym_u_DQUOTE] = ACTIONS(1631), - [anon_sym_U_DQUOTE] = ACTIONS(1631), - [anon_sym_u8_DQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_true] = ACTIONS(1629), - [sym_false] = ACTIONS(1629), - [sym_null] = ACTIONS(1629), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1629), - [anon_sym_virtual] = ACTIONS(1629), - [anon_sym_explicit] = ACTIONS(1629), - [sym_auto] = ACTIONS(1629), - [anon_sym_typename] = ACTIONS(1629), - [anon_sym_template] = ACTIONS(1629), - [anon_sym_operator] = ACTIONS(1629), - [anon_sym_delete] = ACTIONS(1629), - [anon_sym_throw] = ACTIONS(1629), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_using] = ACTIONS(1629), - [anon_sym_static_assert] = ACTIONS(1629), - [anon_sym_co_return] = ACTIONS(1629), - [anon_sym_co_yield] = ACTIONS(1629), - [anon_sym_try] = ACTIONS(1629), - [anon_sym_co_await] = ACTIONS(1629), - [anon_sym_new] = ACTIONS(1629), - [sym_this] = ACTIONS(1629), - [sym_nullptr] = ACTIONS(1629), - [sym_alone_macro] = ACTIONS(1631), - [aux_sym_alone_macro_call_token1] = ACTIONS(1629), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_FORWARD] = ACTIONS(1629), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1629), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_PS_GET] = ACTIONS(1629), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1629), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1629), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1629), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1629), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1629), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1629), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1629), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1629), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1629), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1629), - [anon_sym_MOZ_COLD] = ACTIONS(1629), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1629), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1629), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1629), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1629), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1629), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1629), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1629), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1629), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1629), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1629), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1629), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1629), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1629), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1629), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1629), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1629), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1629), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1629), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1629), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1629), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_NONNULL] = ACTIONS(1629), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1629), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1629), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1629), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1629), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1629), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_NORETURN] = ACTIONS(1629), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1629), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1629), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1629), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1629), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1629), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1629), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1629), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1629), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1629), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1629), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1629), - [anon_sym_MOZ_RAII] = ACTIONS(1629), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1629), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1629), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1629), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1629), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1629), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1629), - [sym_raw_string_literal] = ACTIONS(1631), - }, - [338] = { - [sym_identifier] = ACTIONS(1565), - [aux_sym_preproc_include_token1] = ACTIONS(1565), - [aux_sym_preproc_def_token1] = ACTIONS(1565), - [aux_sym_preproc_if_token1] = ACTIONS(1565), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1565), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1565), - [sym_preproc_directive] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1567), - [anon_sym_TILDE] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_AMP_AMP] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_typedef] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym___attribute__] = ACTIONS(1565), - [anon_sym_COLON_COLON] = ACTIONS(1567), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1567), - [anon_sym___declspec] = ACTIONS(1565), - [anon_sym___based] = ACTIONS(1565), - [anon_sym___cdecl] = ACTIONS(1565), - [anon_sym___clrcall] = ACTIONS(1565), - [anon_sym___stdcall] = ACTIONS(1565), - [anon_sym___fastcall] = ACTIONS(1565), - [anon_sym___thiscall] = ACTIONS(1565), - [anon_sym___vectorcall] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_RBRACE] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1565), - [anon_sym_register] = ACTIONS(1565), - [anon_sym_inline] = ACTIONS(1565), - [anon_sym_thread_local] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [anon_sym_volatile] = ACTIONS(1565), - [anon_sym_restrict] = ACTIONS(1565), - [anon_sym__Atomic] = ACTIONS(1565), - [anon_sym_mutable] = ACTIONS(1565), - [anon_sym_constexpr] = ACTIONS(1565), - [anon_sym_signed] = ACTIONS(1565), - [anon_sym_unsigned] = ACTIONS(1565), - [anon_sym_long] = ACTIONS(1565), - [anon_sym_short] = ACTIONS(1565), - [sym_primitive_type] = ACTIONS(1565), - [anon_sym_enum] = ACTIONS(1565), - [anon_sym_class] = ACTIONS(1565), - [anon_sym_struct] = ACTIONS(1565), - [anon_sym_union] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_switch] = ACTIONS(1565), - [anon_sym_case] = ACTIONS(1565), - [anon_sym_default] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_goto] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_PLUS_PLUS] = ACTIONS(1567), - [anon_sym_sizeof] = ACTIONS(1565), - [sym_number_literal] = ACTIONS(1567), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1567), - [anon_sym_u_DQUOTE] = ACTIONS(1567), - [anon_sym_U_DQUOTE] = ACTIONS(1567), - [anon_sym_u8_DQUOTE] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym_true] = ACTIONS(1565), - [sym_false] = ACTIONS(1565), - [sym_null] = ACTIONS(1565), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1565), - [anon_sym_virtual] = ACTIONS(1565), - [anon_sym_explicit] = ACTIONS(1565), - [sym_auto] = ACTIONS(1565), - [anon_sym_typename] = ACTIONS(1565), - [anon_sym_template] = ACTIONS(1565), - [anon_sym_operator] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_throw] = ACTIONS(1565), - [anon_sym_namespace] = ACTIONS(1565), - [anon_sym_using] = ACTIONS(1565), - [anon_sym_static_assert] = ACTIONS(1565), - [anon_sym_co_return] = ACTIONS(1565), - [anon_sym_co_yield] = ACTIONS(1565), - [anon_sym_try] = ACTIONS(1565), - [anon_sym_co_await] = ACTIONS(1565), - [anon_sym_new] = ACTIONS(1565), - [sym_this] = ACTIONS(1565), - [sym_nullptr] = ACTIONS(1565), - [sym_alone_macro] = ACTIONS(1567), - [aux_sym_alone_macro_call_token1] = ACTIONS(1565), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_FORWARD] = ACTIONS(1565), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1565), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_PS_GET] = ACTIONS(1565), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1565), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1565), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1565), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1565), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1565), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1565), - [anon_sym_MOZ_COLD] = ACTIONS(1565), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1565), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1565), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1565), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1565), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1565), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1565), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1565), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1565), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1565), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1565), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1565), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1565), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1565), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_NONNULL] = ACTIONS(1565), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1565), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1565), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1565), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1565), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1565), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1565), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1565), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1565), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1565), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1565), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1565), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1565), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1565), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1565), - [anon_sym_MOZ_RAII] = ACTIONS(1565), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1565), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1565), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1565), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1565), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1565), - [sym_raw_string_literal] = ACTIONS(1567), - }, - [339] = { - [sym_preproc_def] = STATE(665), - [sym_preproc_function_def] = STATE(665), - [sym_preproc_call] = STATE(665), - [sym_preproc_if_in_field_declaration_list] = STATE(665), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(665), - [sym_preproc_else_in_field_declaration_list] = STATE(5151), - [sym_preproc_elif_in_field_declaration_list] = STATE(5151), - [sym_type_definition] = STATE(665), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3235), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3615), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(665), - [sym_field_declaration] = STATE(665), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(841), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(665), - [sym_operator_cast] = STATE(4161), - [sym_inline_method_definition] = STATE(665), - [sym__constructor_specifiers] = STATE(841), - [sym_operator_cast_definition] = STATE(665), - [sym_operator_cast_declaration] = STATE(665), - [sym_constructor_or_destructor_definition] = STATE(665), - [sym_constructor_or_destructor_declaration] = STATE(665), - [sym_friend_declaration] = STATE(665), - [sym_access_specifier] = STATE(665), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(665), - [sym_alias_declaration] = STATE(665), - [sym_static_assert_declaration] = STATE(665), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4161), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(665), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(665), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(841), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(1909), - [aux_sym_preproc_if_token1] = ACTIONS(1911), - [aux_sym_preproc_if_token2] = ACTIONS(1969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1915), - [aux_sym_preproc_else_token1] = ACTIONS(1917), - [aux_sym_preproc_elif_token1] = ACTIONS(1919), - [sym_preproc_directive] = ACTIONS(1921), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1914), + [anon_sym_explicit] = ACTIONS(1903), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1917), + [anon_sym_operator] = ACTIONS(1903), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), + }, + [STATE(135)] = { + [sym_catch_clause] = STATE(135), + [aux_sym_constructor_try_statement_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(1924), + [aux_sym_preproc_include_token1] = ACTIONS(1924), + [aux_sym_preproc_def_token1] = ACTIONS(1924), + [aux_sym_preproc_if_token1] = ACTIONS(1924), + [aux_sym_preproc_if_token2] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1924), + [aux_sym_preproc_else_token1] = ACTIONS(1924), + [aux_sym_preproc_elif_token1] = ACTIONS(1924), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1924), + [sym_preproc_directive] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_AMP_AMP] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym___extension__] = ACTIONS(1924), + [anon_sym_typedef] = ACTIONS(1924), + [anon_sym_virtual] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym___attribute__] = ACTIONS(1924), + [anon_sym___attribute] = ACTIONS(1924), + [anon_sym_COLON_COLON] = ACTIONS(1926), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1926), + [anon_sym___declspec] = ACTIONS(1924), + [anon_sym___based] = ACTIONS(1924), + [anon_sym___cdecl] = ACTIONS(1924), + [anon_sym___clrcall] = ACTIONS(1924), + [anon_sym___stdcall] = ACTIONS(1924), + [anon_sym___fastcall] = ACTIONS(1924), + [anon_sym___thiscall] = ACTIONS(1924), + [anon_sym___vectorcall] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_signed] = ACTIONS(1924), + [anon_sym_unsigned] = ACTIONS(1924), + [anon_sym_long] = ACTIONS(1924), + [anon_sym_short] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_register] = ACTIONS(1924), + [anon_sym_inline] = ACTIONS(1924), + [anon_sym___inline] = ACTIONS(1924), + [anon_sym___inline__] = ACTIONS(1924), + [anon_sym___forceinline] = ACTIONS(1924), + [anon_sym_thread_local] = ACTIONS(1924), + [anon_sym___thread] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_constexpr] = ACTIONS(1924), + [anon_sym_volatile] = ACTIONS(1924), + [anon_sym_restrict] = ACTIONS(1924), + [anon_sym___restrict__] = ACTIONS(1924), + [anon_sym__Atomic] = ACTIONS(1924), + [anon_sym__Noreturn] = ACTIONS(1924), + [anon_sym_noreturn] = ACTIONS(1924), + [anon_sym__Nonnull] = ACTIONS(1924), + [anon_sym_mutable] = ACTIONS(1924), + [anon_sym_constinit] = ACTIONS(1924), + [anon_sym_consteval] = ACTIONS(1924), + [anon_sym_alignas] = ACTIONS(1924), + [anon_sym__Alignas] = ACTIONS(1924), + [sym_primitive_type] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_class] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_else] = ACTIONS(1924), + [anon_sym_switch] = ACTIONS(1924), + [anon_sym_case] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_do] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_goto] = ACTIONS(1924), + [anon_sym___try] = ACTIONS(1924), + [anon_sym___leave] = ACTIONS(1924), + [anon_sym_not] = ACTIONS(1924), + [anon_sym_compl] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1924), + [anon_sym___alignof__] = ACTIONS(1924), + [anon_sym___alignof] = ACTIONS(1924), + [anon_sym__alignof] = ACTIONS(1924), + [anon_sym_alignof] = ACTIONS(1924), + [anon_sym__Alignof] = ACTIONS(1924), + [anon_sym_offsetof] = ACTIONS(1924), + [anon_sym__Generic] = ACTIONS(1924), + [anon_sym_asm] = ACTIONS(1924), + [anon_sym___asm__] = ACTIONS(1924), + [anon_sym___asm] = ACTIONS(1924), + [sym_number_literal] = ACTIONS(1926), + [anon_sym_L_SQUOTE] = ACTIONS(1926), + [anon_sym_u_SQUOTE] = ACTIONS(1926), + [anon_sym_U_SQUOTE] = ACTIONS(1926), + [anon_sym_u8_SQUOTE] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_L_DQUOTE] = ACTIONS(1926), + [anon_sym_u_DQUOTE] = ACTIONS(1926), + [anon_sym_U_DQUOTE] = ACTIONS(1926), + [anon_sym_u8_DQUOTE] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [sym_true] = ACTIONS(1924), + [sym_false] = ACTIONS(1924), + [anon_sym_NULL] = ACTIONS(1924), + [anon_sym_nullptr] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1924), + [anon_sym_decltype] = ACTIONS(1924), + [anon_sym_explicit] = ACTIONS(1924), + [anon_sym_typename] = ACTIONS(1924), + [anon_sym_template] = ACTIONS(1924), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_try] = ACTIONS(1924), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_throw] = ACTIONS(1924), + [anon_sym_namespace] = ACTIONS(1924), + [anon_sym_using] = ACTIONS(1924), + [anon_sym_static_assert] = ACTIONS(1924), + [anon_sym_concept] = ACTIONS(1924), + [anon_sym_co_return] = ACTIONS(1924), + [anon_sym_co_yield] = ACTIONS(1924), + [anon_sym_catch] = ACTIONS(1928), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1924), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_requires] = ACTIONS(1924), + [sym_this] = ACTIONS(1924), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_FORWARD] = ACTIONS(1924), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_PS_GET] = ACTIONS(1924), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1924), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1924), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1924), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1924), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1924), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1924), + [anon_sym_MOZ_COLD] = ACTIONS(1924), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1924), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1924), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1924), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1924), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1924), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1924), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1924), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1924), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1924), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1924), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1924), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1924), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1924), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_NONNULL] = ACTIONS(1924), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1924), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1924), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1924), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1924), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1924), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1924), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1924), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1924), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1924), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1924), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1924), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1924), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1924), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1924), + [anon_sym_MOZ_RAII] = ACTIONS(1924), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1924), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1924), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1924), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1924), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1924), + }, + [STATE(136)] = { + [sym_catch_clause] = STATE(135), + [aux_sym_constructor_try_statement_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(1931), + [aux_sym_preproc_include_token1] = ACTIONS(1931), + [aux_sym_preproc_def_token1] = ACTIONS(1931), + [aux_sym_preproc_if_token1] = ACTIONS(1931), + [aux_sym_preproc_if_token2] = ACTIONS(1931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1931), + [aux_sym_preproc_else_token1] = ACTIONS(1931), + [aux_sym_preproc_elif_token1] = ACTIONS(1931), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1931), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1931), + [sym_preproc_directive] = ACTIONS(1931), + [anon_sym_LPAREN2] = ACTIONS(1933), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_AMP_AMP] = ACTIONS(1933), + [anon_sym_AMP] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym___extension__] = ACTIONS(1931), [anon_sym_typedef] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_virtual] = ACTIONS(1931), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym___attribute__] = ACTIONS(1931), + [anon_sym___attribute] = ACTIONS(1931), [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1933), + [anon_sym___declspec] = ACTIONS(1931), + [anon_sym___based] = ACTIONS(1931), + [anon_sym___cdecl] = ACTIONS(1931), + [anon_sym___clrcall] = ACTIONS(1931), + [anon_sym___stdcall] = ACTIONS(1931), + [anon_sym___fastcall] = ACTIONS(1931), + [anon_sym___thiscall] = ACTIONS(1931), + [anon_sym___vectorcall] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_static] = ACTIONS(1931), + [anon_sym_register] = ACTIONS(1931), + [anon_sym_inline] = ACTIONS(1931), + [anon_sym___inline] = ACTIONS(1931), + [anon_sym___inline__] = ACTIONS(1931), + [anon_sym___forceinline] = ACTIONS(1931), + [anon_sym_thread_local] = ACTIONS(1931), + [anon_sym___thread] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_constexpr] = ACTIONS(1931), + [anon_sym_volatile] = ACTIONS(1931), + [anon_sym_restrict] = ACTIONS(1931), + [anon_sym___restrict__] = ACTIONS(1931), + [anon_sym__Atomic] = ACTIONS(1931), + [anon_sym__Noreturn] = ACTIONS(1931), + [anon_sym_noreturn] = ACTIONS(1931), + [anon_sym__Nonnull] = ACTIONS(1931), + [anon_sym_mutable] = ACTIONS(1931), + [anon_sym_constinit] = ACTIONS(1931), + [anon_sym_consteval] = ACTIONS(1931), + [anon_sym_alignas] = ACTIONS(1931), + [anon_sym__Alignas] = ACTIONS(1931), + [sym_primitive_type] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [anon_sym_class] = ACTIONS(1931), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_union] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_else] = ACTIONS(1931), + [anon_sym_switch] = ACTIONS(1931), + [anon_sym_case] = ACTIONS(1931), + [anon_sym_default] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_goto] = ACTIONS(1931), + [anon_sym___try] = ACTIONS(1931), + [anon_sym___leave] = ACTIONS(1931), + [anon_sym_not] = ACTIONS(1931), + [anon_sym_compl] = ACTIONS(1931), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [anon_sym_PLUS_PLUS] = ACTIONS(1933), + [anon_sym_sizeof] = ACTIONS(1931), + [anon_sym___alignof__] = ACTIONS(1931), + [anon_sym___alignof] = ACTIONS(1931), + [anon_sym__alignof] = ACTIONS(1931), + [anon_sym_alignof] = ACTIONS(1931), + [anon_sym__Alignof] = ACTIONS(1931), + [anon_sym_offsetof] = ACTIONS(1931), + [anon_sym__Generic] = ACTIONS(1931), + [anon_sym_asm] = ACTIONS(1931), + [anon_sym___asm__] = ACTIONS(1931), + [anon_sym___asm] = ACTIONS(1931), + [sym_number_literal] = ACTIONS(1933), + [anon_sym_L_SQUOTE] = ACTIONS(1933), + [anon_sym_u_SQUOTE] = ACTIONS(1933), + [anon_sym_U_SQUOTE] = ACTIONS(1933), + [anon_sym_u8_SQUOTE] = ACTIONS(1933), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_L_DQUOTE] = ACTIONS(1933), + [anon_sym_u_DQUOTE] = ACTIONS(1933), + [anon_sym_U_DQUOTE] = ACTIONS(1933), + [anon_sym_u8_DQUOTE] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(1933), + [sym_true] = ACTIONS(1931), + [sym_false] = ACTIONS(1931), + [anon_sym_NULL] = ACTIONS(1931), + [anon_sym_nullptr] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1931), + [anon_sym_decltype] = ACTIONS(1931), + [anon_sym_explicit] = ACTIONS(1931), + [anon_sym_typename] = ACTIONS(1931), + [anon_sym_template] = ACTIONS(1931), + [anon_sym_operator] = ACTIONS(1931), + [anon_sym_try] = ACTIONS(1931), + [anon_sym_delete] = ACTIONS(1931), + [anon_sym_throw] = ACTIONS(1931), + [anon_sym_namespace] = ACTIONS(1931), + [anon_sym_using] = ACTIONS(1931), + [anon_sym_static_assert] = ACTIONS(1931), + [anon_sym_concept] = ACTIONS(1931), + [anon_sym_co_return] = ACTIONS(1931), + [anon_sym_co_yield] = ACTIONS(1931), + [anon_sym_catch] = ACTIONS(1935), + [anon_sym_R_DQUOTE] = ACTIONS(1933), + [anon_sym_LR_DQUOTE] = ACTIONS(1933), + [anon_sym_uR_DQUOTE] = ACTIONS(1933), + [anon_sym_UR_DQUOTE] = ACTIONS(1933), + [anon_sym_u8R_DQUOTE] = ACTIONS(1933), + [anon_sym_co_await] = ACTIONS(1931), + [anon_sym_new] = ACTIONS(1931), + [anon_sym_requires] = ACTIONS(1931), + [sym_this] = ACTIONS(1931), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_FORWARD] = ACTIONS(1931), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1931), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_PS_GET] = ACTIONS(1931), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1931), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1931), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1931), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1931), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1931), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1931), + [anon_sym_MOZ_COLD] = ACTIONS(1931), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1931), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1931), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1931), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1931), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1931), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1931), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1931), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1931), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1931), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1931), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1931), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1931), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1931), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_NONNULL] = ACTIONS(1931), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1931), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1931), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1931), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1931), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1931), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1931), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1931), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1931), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1931), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1931), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1931), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1931), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1931), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1931), + [anon_sym_MOZ_RAII] = ACTIONS(1931), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1931), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1931), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1931), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1931), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1931), + }, + [STATE(137)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym___extension__] = ACTIONS(1898), + [anon_sym_typedef] = ACTIONS(1937), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1905), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym___based] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1908), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(1951), - [anon_sym_private] = ACTIONS(1951), - [anon_sym_protected] = ACTIONS(1951), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(1955), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1957), - [anon_sym_using] = ACTIONS(1959), - [anon_sym_static_assert] = ACTIONS(1961), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1963), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [340] = { - [ts_builtin_sym_end] = ACTIONS(1591), - [sym_identifier] = ACTIONS(1589), - [aux_sym_preproc_include_token1] = ACTIONS(1589), - [aux_sym_preproc_def_token1] = ACTIONS(1589), - [aux_sym_preproc_if_token1] = ACTIONS(1589), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1589), - [sym_preproc_directive] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1591), - [anon_sym_AMP_AMP] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_typedef] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym___attribute__] = ACTIONS(1589), - [anon_sym_COLON_COLON] = ACTIONS(1591), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1591), - [anon_sym___declspec] = ACTIONS(1589), - [anon_sym___based] = ACTIONS(1589), - [anon_sym___cdecl] = ACTIONS(1589), - [anon_sym___clrcall] = ACTIONS(1589), - [anon_sym___stdcall] = ACTIONS(1589), - [anon_sym___fastcall] = ACTIONS(1589), - [anon_sym___thiscall] = ACTIONS(1589), - [anon_sym___vectorcall] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_inline] = ACTIONS(1589), - [anon_sym_thread_local] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [anon_sym_volatile] = ACTIONS(1589), - [anon_sym_restrict] = ACTIONS(1589), - [anon_sym__Atomic] = ACTIONS(1589), - [anon_sym_mutable] = ACTIONS(1589), - [anon_sym_constexpr] = ACTIONS(1589), - [anon_sym_signed] = ACTIONS(1589), - [anon_sym_unsigned] = ACTIONS(1589), - [anon_sym_long] = ACTIONS(1589), - [anon_sym_short] = ACTIONS(1589), - [sym_primitive_type] = ACTIONS(1589), - [anon_sym_enum] = ACTIONS(1589), - [anon_sym_class] = ACTIONS(1589), - [anon_sym_struct] = ACTIONS(1589), - [anon_sym_union] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_switch] = ACTIONS(1589), - [anon_sym_case] = ACTIONS(1589), - [anon_sym_default] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_goto] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_sizeof] = ACTIONS(1589), - [sym_number_literal] = ACTIONS(1591), - [anon_sym_L_SQUOTE] = ACTIONS(1591), - [anon_sym_u_SQUOTE] = ACTIONS(1591), - [anon_sym_U_SQUOTE] = ACTIONS(1591), - [anon_sym_u8_SQUOTE] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1591), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1589), - [anon_sym_virtual] = ACTIONS(1589), - [anon_sym_explicit] = ACTIONS(1589), - [sym_auto] = ACTIONS(1589), - [anon_sym_typename] = ACTIONS(1589), - [anon_sym_template] = ACTIONS(1589), - [anon_sym_operator] = ACTIONS(1589), - [anon_sym_delete] = ACTIONS(1589), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_namespace] = ACTIONS(1589), - [anon_sym_using] = ACTIONS(1589), - [anon_sym_static_assert] = ACTIONS(1589), - [anon_sym_co_return] = ACTIONS(1589), - [anon_sym_co_yield] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_co_await] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [sym_this] = ACTIONS(1589), - [sym_nullptr] = ACTIONS(1589), - [sym_alone_macro] = ACTIONS(1591), - [aux_sym_alone_macro_call_token1] = ACTIONS(1589), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_FORWARD] = ACTIONS(1589), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1589), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_PS_GET] = ACTIONS(1589), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1589), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1589), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1589), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1589), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1589), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1589), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1589), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1589), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1589), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1589), - [anon_sym_MOZ_COLD] = ACTIONS(1589), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1589), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1589), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1589), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1589), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1589), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1589), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1589), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1589), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1589), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1589), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1589), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1589), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1589), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1589), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1589), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1589), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1589), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1589), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1589), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1589), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_NONNULL] = ACTIONS(1589), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1589), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1589), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1589), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1589), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1589), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_NORETURN] = ACTIONS(1589), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1589), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1589), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1589), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1589), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1589), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1589), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1589), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1589), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1589), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1589), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1589), - [anon_sym_MOZ_RAII] = ACTIONS(1589), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1589), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1589), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1589), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1589), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1589), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1589), - [sym_raw_string_literal] = ACTIONS(1591), - }, - [341] = { - [sym_identifier] = ACTIONS(1649), - [aux_sym_preproc_include_token1] = ACTIONS(1649), - [aux_sym_preproc_def_token1] = ACTIONS(1649), - [aux_sym_preproc_if_token1] = ACTIONS(1649), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1649), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1649), - [sym_preproc_directive] = ACTIONS(1649), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_AMP_AMP] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1649), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_typedef] = ACTIONS(1649), - [anon_sym_extern] = ACTIONS(1649), - [anon_sym___attribute__] = ACTIONS(1649), - [anon_sym_COLON_COLON] = ACTIONS(1651), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1651), - [anon_sym___declspec] = ACTIONS(1649), - [anon_sym___based] = ACTIONS(1649), - [anon_sym___cdecl] = ACTIONS(1649), - [anon_sym___clrcall] = ACTIONS(1649), - [anon_sym___stdcall] = ACTIONS(1649), - [anon_sym___fastcall] = ACTIONS(1649), - [anon_sym___thiscall] = ACTIONS(1649), - [anon_sym___vectorcall] = ACTIONS(1649), - [anon_sym_LBRACE] = ACTIONS(1651), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1649), - [anon_sym_register] = ACTIONS(1649), - [anon_sym_inline] = ACTIONS(1649), - [anon_sym_thread_local] = ACTIONS(1649), - [anon_sym_const] = ACTIONS(1649), - [anon_sym_volatile] = ACTIONS(1649), - [anon_sym_restrict] = ACTIONS(1649), - [anon_sym__Atomic] = ACTIONS(1649), - [anon_sym_mutable] = ACTIONS(1649), - [anon_sym_constexpr] = ACTIONS(1649), - [anon_sym_signed] = ACTIONS(1649), - [anon_sym_unsigned] = ACTIONS(1649), - [anon_sym_long] = ACTIONS(1649), - [anon_sym_short] = ACTIONS(1649), - [sym_primitive_type] = ACTIONS(1649), - [anon_sym_enum] = ACTIONS(1649), - [anon_sym_class] = ACTIONS(1649), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_union] = ACTIONS(1649), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_else] = ACTIONS(1649), - [anon_sym_switch] = ACTIONS(1649), - [anon_sym_case] = ACTIONS(1649), - [anon_sym_default] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_do] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_goto] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1651), - [anon_sym_sizeof] = ACTIONS(1649), - [sym_number_literal] = ACTIONS(1651), - [anon_sym_L_SQUOTE] = ACTIONS(1651), - [anon_sym_u_SQUOTE] = ACTIONS(1651), - [anon_sym_U_SQUOTE] = ACTIONS(1651), - [anon_sym_u8_SQUOTE] = ACTIONS(1651), - [anon_sym_SQUOTE] = ACTIONS(1651), - [anon_sym_L_DQUOTE] = ACTIONS(1651), - [anon_sym_u_DQUOTE] = ACTIONS(1651), - [anon_sym_U_DQUOTE] = ACTIONS(1651), - [anon_sym_u8_DQUOTE] = ACTIONS(1651), - [anon_sym_DQUOTE] = ACTIONS(1651), - [sym_true] = ACTIONS(1649), - [sym_false] = ACTIONS(1649), - [sym_null] = ACTIONS(1649), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1649), - [anon_sym_virtual] = ACTIONS(1649), - [anon_sym_explicit] = ACTIONS(1649), - [sym_auto] = ACTIONS(1649), - [anon_sym_typename] = ACTIONS(1649), - [anon_sym_template] = ACTIONS(1649), - [anon_sym_operator] = ACTIONS(1649), - [anon_sym_delete] = ACTIONS(1649), - [anon_sym_throw] = ACTIONS(1649), - [anon_sym_namespace] = ACTIONS(1649), - [anon_sym_using] = ACTIONS(1649), - [anon_sym_static_assert] = ACTIONS(1649), - [anon_sym_co_return] = ACTIONS(1649), - [anon_sym_co_yield] = ACTIONS(1649), - [anon_sym_try] = ACTIONS(1649), - [anon_sym_co_await] = ACTIONS(1649), - [anon_sym_new] = ACTIONS(1649), - [sym_this] = ACTIONS(1649), - [sym_nullptr] = ACTIONS(1649), - [sym_alone_macro] = ACTIONS(1651), - [aux_sym_alone_macro_call_token1] = ACTIONS(1649), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_FORWARD] = ACTIONS(1649), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1649), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_PS_GET] = ACTIONS(1649), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1649), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1649), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1649), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1649), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1649), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1649), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1649), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1649), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1649), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1649), - [anon_sym_MOZ_COLD] = ACTIONS(1649), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1649), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1649), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1649), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1649), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1649), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1649), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1649), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1649), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1649), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1649), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1649), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1649), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1649), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1649), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1649), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1649), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1649), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1649), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1649), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1649), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_NONNULL] = ACTIONS(1649), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1649), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1649), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1649), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1649), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1649), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_NORETURN] = ACTIONS(1649), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1649), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1649), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1649), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1649), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1649), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1649), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1649), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1649), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1649), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1649), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1649), - [anon_sym_MOZ_RAII] = ACTIONS(1649), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1649), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1649), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1649), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1649), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1649), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1649), - [sym_raw_string_literal] = ACTIONS(1651), - }, - [342] = { - [sym_identifier] = ACTIONS(1577), - [aux_sym_preproc_include_token1] = ACTIONS(1577), - [aux_sym_preproc_def_token1] = ACTIONS(1577), - [aux_sym_preproc_if_token1] = ACTIONS(1577), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1577), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1577), - [sym_preproc_directive] = ACTIONS(1577), - [anon_sym_LPAREN2] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1579), - [anon_sym_TILDE] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_AMP_AMP] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_typedef] = ACTIONS(1577), - [anon_sym_extern] = ACTIONS(1577), - [anon_sym___attribute__] = ACTIONS(1577), - [anon_sym_COLON_COLON] = ACTIONS(1579), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1579), - [anon_sym___declspec] = ACTIONS(1577), - [anon_sym___based] = ACTIONS(1577), - [anon_sym___cdecl] = ACTIONS(1577), - [anon_sym___clrcall] = ACTIONS(1577), - [anon_sym___stdcall] = ACTIONS(1577), - [anon_sym___fastcall] = ACTIONS(1577), - [anon_sym___thiscall] = ACTIONS(1577), - [anon_sym___vectorcall] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_RBRACE] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_register] = ACTIONS(1577), - [anon_sym_inline] = ACTIONS(1577), - [anon_sym_thread_local] = ACTIONS(1577), - [anon_sym_const] = ACTIONS(1577), - [anon_sym_volatile] = ACTIONS(1577), - [anon_sym_restrict] = ACTIONS(1577), - [anon_sym__Atomic] = ACTIONS(1577), - [anon_sym_mutable] = ACTIONS(1577), - [anon_sym_constexpr] = ACTIONS(1577), - [anon_sym_signed] = ACTIONS(1577), - [anon_sym_unsigned] = ACTIONS(1577), - [anon_sym_long] = ACTIONS(1577), - [anon_sym_short] = ACTIONS(1577), - [sym_primitive_type] = ACTIONS(1577), - [anon_sym_enum] = ACTIONS(1577), - [anon_sym_class] = ACTIONS(1577), - [anon_sym_struct] = ACTIONS(1577), - [anon_sym_union] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_else] = ACTIONS(1577), - [anon_sym_switch] = ACTIONS(1577), - [anon_sym_case] = ACTIONS(1577), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1577), - [anon_sym_do] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_return] = ACTIONS(1577), - [anon_sym_break] = ACTIONS(1577), - [anon_sym_continue] = ACTIONS(1577), - [anon_sym_goto] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1577), - [sym_number_literal] = ACTIONS(1579), - [anon_sym_L_SQUOTE] = ACTIONS(1579), - [anon_sym_u_SQUOTE] = ACTIONS(1579), - [anon_sym_U_SQUOTE] = ACTIONS(1579), - [anon_sym_u8_SQUOTE] = ACTIONS(1579), - [anon_sym_SQUOTE] = ACTIONS(1579), - [anon_sym_L_DQUOTE] = ACTIONS(1579), - [anon_sym_u_DQUOTE] = ACTIONS(1579), - [anon_sym_U_DQUOTE] = ACTIONS(1579), - [anon_sym_u8_DQUOTE] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1577), - [anon_sym_virtual] = ACTIONS(1577), - [anon_sym_explicit] = ACTIONS(1577), - [sym_auto] = ACTIONS(1577), - [anon_sym_typename] = ACTIONS(1577), - [anon_sym_template] = ACTIONS(1577), - [anon_sym_operator] = ACTIONS(1577), - [anon_sym_delete] = ACTIONS(1577), - [anon_sym_throw] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1577), - [anon_sym_using] = ACTIONS(1577), - [anon_sym_static_assert] = ACTIONS(1577), - [anon_sym_co_return] = ACTIONS(1577), - [anon_sym_co_yield] = ACTIONS(1577), - [anon_sym_try] = ACTIONS(1577), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1577), - [sym_this] = ACTIONS(1577), - [sym_nullptr] = ACTIONS(1577), - [sym_alone_macro] = ACTIONS(1579), - [aux_sym_alone_macro_call_token1] = ACTIONS(1577), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_FORWARD] = ACTIONS(1577), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1577), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_PS_GET] = ACTIONS(1577), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1577), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1577), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1577), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1577), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1577), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1577), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1577), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1577), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1577), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1577), - [anon_sym_MOZ_COLD] = ACTIONS(1577), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1577), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1577), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1577), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1577), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1577), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1577), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1577), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1577), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1577), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1577), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1577), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1577), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1577), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1577), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1577), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1577), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1577), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1577), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1577), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1577), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_NONNULL] = ACTIONS(1577), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1577), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1577), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1577), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1577), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1577), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_NORETURN] = ACTIONS(1577), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1577), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1577), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1577), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1577), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1577), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1577), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1577), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1577), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1577), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1577), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1577), - [anon_sym_MOZ_RAII] = ACTIONS(1577), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1577), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1577), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1577), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1577), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1577), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1577), - [sym_raw_string_literal] = ACTIONS(1579), - }, - [343] = { - [sym_preproc_def] = STATE(665), - [sym_preproc_function_def] = STATE(665), - [sym_preproc_call] = STATE(665), - [sym_preproc_if_in_field_declaration_list] = STATE(665), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(665), - [sym_preproc_else_in_field_declaration_list] = STATE(5197), - [sym_preproc_elif_in_field_declaration_list] = STATE(5197), - [sym_type_definition] = STATE(665), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3235), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3615), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(665), - [sym_field_declaration] = STATE(665), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(841), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(665), - [sym_operator_cast] = STATE(4161), - [sym_inline_method_definition] = STATE(665), - [sym__constructor_specifiers] = STATE(841), - [sym_operator_cast_definition] = STATE(665), - [sym_operator_cast_declaration] = STATE(665), - [sym_constructor_or_destructor_definition] = STATE(665), - [sym_constructor_or_destructor_declaration] = STATE(665), - [sym_friend_declaration] = STATE(665), - [sym_access_specifier] = STATE(665), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(665), - [sym_alias_declaration] = STATE(665), - [sym_static_assert_declaration] = STATE(665), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4161), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(665), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(665), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(841), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(1909), - [aux_sym_preproc_if_token1] = ACTIONS(1911), - [aux_sym_preproc_if_token2] = ACTIONS(1971), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1915), - [aux_sym_preproc_else_token1] = ACTIONS(1917), - [aux_sym_preproc_elif_token1] = ACTIONS(1919), - [sym_preproc_directive] = ACTIONS(1921), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1914), + [anon_sym_explicit] = ACTIONS(1903), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1917), + [anon_sym_operator] = ACTIONS(1903), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), + }, + [STATE(138)] = { + [sym_catch_clause] = STATE(135), + [aux_sym_constructor_try_statement_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(1939), + [aux_sym_preproc_include_token1] = ACTIONS(1939), + [aux_sym_preproc_def_token1] = ACTIONS(1939), + [aux_sym_preproc_if_token1] = ACTIONS(1939), + [aux_sym_preproc_if_token2] = ACTIONS(1939), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1939), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1939), + [aux_sym_preproc_else_token1] = ACTIONS(1939), + [aux_sym_preproc_elif_token1] = ACTIONS(1939), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1939), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1939), + [sym_preproc_directive] = ACTIONS(1939), + [anon_sym_LPAREN2] = ACTIONS(1941), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym___extension__] = ACTIONS(1939), + [anon_sym_typedef] = ACTIONS(1939), + [anon_sym_virtual] = ACTIONS(1939), + [anon_sym_extern] = ACTIONS(1939), + [anon_sym___attribute__] = ACTIONS(1939), + [anon_sym___attribute] = ACTIONS(1939), + [anon_sym_COLON_COLON] = ACTIONS(1941), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1941), + [anon_sym___declspec] = ACTIONS(1939), + [anon_sym___based] = ACTIONS(1939), + [anon_sym___cdecl] = ACTIONS(1939), + [anon_sym___clrcall] = ACTIONS(1939), + [anon_sym___stdcall] = ACTIONS(1939), + [anon_sym___fastcall] = ACTIONS(1939), + [anon_sym___thiscall] = ACTIONS(1939), + [anon_sym___vectorcall] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_signed] = ACTIONS(1939), + [anon_sym_unsigned] = ACTIONS(1939), + [anon_sym_long] = ACTIONS(1939), + [anon_sym_short] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1939), + [anon_sym_static] = ACTIONS(1939), + [anon_sym_register] = ACTIONS(1939), + [anon_sym_inline] = ACTIONS(1939), + [anon_sym___inline] = ACTIONS(1939), + [anon_sym___inline__] = ACTIONS(1939), + [anon_sym___forceinline] = ACTIONS(1939), + [anon_sym_thread_local] = ACTIONS(1939), + [anon_sym___thread] = ACTIONS(1939), + [anon_sym_const] = ACTIONS(1939), + [anon_sym_constexpr] = ACTIONS(1939), + [anon_sym_volatile] = ACTIONS(1939), + [anon_sym_restrict] = ACTIONS(1939), + [anon_sym___restrict__] = ACTIONS(1939), + [anon_sym__Atomic] = ACTIONS(1939), + [anon_sym__Noreturn] = ACTIONS(1939), + [anon_sym_noreturn] = ACTIONS(1939), + [anon_sym__Nonnull] = ACTIONS(1939), + [anon_sym_mutable] = ACTIONS(1939), + [anon_sym_constinit] = ACTIONS(1939), + [anon_sym_consteval] = ACTIONS(1939), + [anon_sym_alignas] = ACTIONS(1939), + [anon_sym__Alignas] = ACTIONS(1939), [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_class] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(1939), + [anon_sym_union] = ACTIONS(1939), + [anon_sym_if] = ACTIONS(1939), + [anon_sym_switch] = ACTIONS(1939), + [anon_sym_case] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(1939), + [anon_sym_while] = ACTIONS(1939), + [anon_sym_do] = ACTIONS(1939), + [anon_sym_for] = ACTIONS(1939), + [anon_sym_return] = ACTIONS(1939), + [anon_sym_break] = ACTIONS(1939), + [anon_sym_continue] = ACTIONS(1939), + [anon_sym_goto] = ACTIONS(1939), + [anon_sym___try] = ACTIONS(1939), + [anon_sym___leave] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1941), + [anon_sym_PLUS_PLUS] = ACTIONS(1941), + [anon_sym_sizeof] = ACTIONS(1939), + [anon_sym___alignof__] = ACTIONS(1939), + [anon_sym___alignof] = ACTIONS(1939), + [anon_sym__alignof] = ACTIONS(1939), + [anon_sym_alignof] = ACTIONS(1939), + [anon_sym__Alignof] = ACTIONS(1939), + [anon_sym_offsetof] = ACTIONS(1939), + [anon_sym__Generic] = ACTIONS(1939), + [anon_sym_asm] = ACTIONS(1939), + [anon_sym___asm__] = ACTIONS(1939), + [anon_sym___asm] = ACTIONS(1939), + [sym_number_literal] = ACTIONS(1941), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1941), + [anon_sym_u_DQUOTE] = ACTIONS(1941), + [anon_sym_U_DQUOTE] = ACTIONS(1941), + [anon_sym_u8_DQUOTE] = ACTIONS(1941), + [anon_sym_DQUOTE] = ACTIONS(1941), + [sym_true] = ACTIONS(1939), + [sym_false] = ACTIONS(1939), + [anon_sym_NULL] = ACTIONS(1939), + [anon_sym_nullptr] = ACTIONS(1939), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(1951), - [anon_sym_private] = ACTIONS(1951), - [anon_sym_protected] = ACTIONS(1951), [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(1955), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1957), - [anon_sym_using] = ACTIONS(1959), - [anon_sym_static_assert] = ACTIONS(1961), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1963), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [344] = { - [sym_preproc_def] = STATE(334), - [sym_preproc_function_def] = STATE(334), - [sym_preproc_call] = STATE(334), - [sym_preproc_if_in_field_declaration_list] = STATE(334), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(334), - [sym_preproc_else_in_field_declaration_list] = STATE(5196), - [sym_preproc_elif_in_field_declaration_list] = STATE(5196), - [sym_type_definition] = STATE(334), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3235), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3615), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(334), - [sym_field_declaration] = STATE(334), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(841), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(334), - [sym_operator_cast] = STATE(4161), - [sym_inline_method_definition] = STATE(334), - [sym__constructor_specifiers] = STATE(841), - [sym_operator_cast_definition] = STATE(334), - [sym_operator_cast_declaration] = STATE(334), - [sym_constructor_or_destructor_definition] = STATE(334), - [sym_constructor_or_destructor_declaration] = STATE(334), - [sym_friend_declaration] = STATE(334), - [sym_access_specifier] = STATE(334), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(334), - [sym_alias_declaration] = STATE(334), - [sym_static_assert_declaration] = STATE(334), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4161), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(334), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(334), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(841), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(1909), - [aux_sym_preproc_if_token1] = ACTIONS(1911), - [aux_sym_preproc_if_token2] = ACTIONS(1973), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1915), - [aux_sym_preproc_else_token1] = ACTIONS(1917), - [aux_sym_preproc_elif_token1] = ACTIONS(1919), - [sym_preproc_directive] = ACTIONS(1921), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), + [anon_sym_decltype] = ACTIONS(1939), + [anon_sym_explicit] = ACTIONS(1939), + [anon_sym_typename] = ACTIONS(1939), + [anon_sym_template] = ACTIONS(1939), + [anon_sym_operator] = ACTIONS(1939), + [anon_sym_try] = ACTIONS(1939), + [anon_sym_delete] = ACTIONS(1939), + [anon_sym_throw] = ACTIONS(1939), + [anon_sym_namespace] = ACTIONS(1939), + [anon_sym_using] = ACTIONS(1939), + [anon_sym_static_assert] = ACTIONS(1939), + [anon_sym_concept] = ACTIONS(1939), + [anon_sym_co_return] = ACTIONS(1939), + [anon_sym_co_yield] = ACTIONS(1939), + [anon_sym_catch] = ACTIONS(1935), + [anon_sym_R_DQUOTE] = ACTIONS(1941), + [anon_sym_LR_DQUOTE] = ACTIONS(1941), + [anon_sym_uR_DQUOTE] = ACTIONS(1941), + [anon_sym_UR_DQUOTE] = ACTIONS(1941), + [anon_sym_u8R_DQUOTE] = ACTIONS(1941), + [anon_sym_co_await] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1939), + [anon_sym_requires] = ACTIONS(1939), + [sym_this] = ACTIONS(1939), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1939), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_FORWARD] = ACTIONS(1939), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1939), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1939), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1939), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1939), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_PS_GET] = ACTIONS(1939), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1939), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1939), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1939), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1939), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1939), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1939), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1939), + [anon_sym_MOZ_COLD] = ACTIONS(1939), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1939), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1939), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1939), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1939), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1939), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1939), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1939), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1939), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1939), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1939), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1939), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1939), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1939), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_NONNULL] = ACTIONS(1939), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1939), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1939), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1939), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1939), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1939), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1939), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1939), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1939), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1939), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1939), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1939), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1939), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1939), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1939), + [anon_sym_MOZ_RAII] = ACTIONS(1939), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1939), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1939), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1939), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1939), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1939), + }, + [STATE(139)] = { + [sym_catch_clause] = STATE(135), + [aux_sym_constructor_try_statement_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(1943), + [aux_sym_preproc_include_token1] = ACTIONS(1943), + [aux_sym_preproc_def_token1] = ACTIONS(1943), + [aux_sym_preproc_if_token1] = ACTIONS(1943), + [aux_sym_preproc_if_token2] = ACTIONS(1943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1943), + [aux_sym_preproc_else_token1] = ACTIONS(1943), + [aux_sym_preproc_elif_token1] = ACTIONS(1943), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1943), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1943), + [sym_preproc_directive] = ACTIONS(1943), + [anon_sym_LPAREN2] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_AMP_AMP] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_SEMI] = ACTIONS(1945), + [anon_sym___extension__] = ACTIONS(1943), + [anon_sym_typedef] = ACTIONS(1943), + [anon_sym_virtual] = ACTIONS(1943), + [anon_sym_extern] = ACTIONS(1943), + [anon_sym___attribute__] = ACTIONS(1943), + [anon_sym___attribute] = ACTIONS(1943), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1945), + [anon_sym___declspec] = ACTIONS(1943), + [anon_sym___based] = ACTIONS(1943), + [anon_sym___cdecl] = ACTIONS(1943), + [anon_sym___clrcall] = ACTIONS(1943), + [anon_sym___stdcall] = ACTIONS(1943), + [anon_sym___fastcall] = ACTIONS(1943), + [anon_sym___thiscall] = ACTIONS(1943), + [anon_sym___vectorcall] = ACTIONS(1943), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_signed] = ACTIONS(1943), + [anon_sym_unsigned] = ACTIONS(1943), + [anon_sym_long] = ACTIONS(1943), + [anon_sym_short] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_static] = ACTIONS(1943), + [anon_sym_register] = ACTIONS(1943), + [anon_sym_inline] = ACTIONS(1943), + [anon_sym___inline] = ACTIONS(1943), + [anon_sym___inline__] = ACTIONS(1943), + [anon_sym___forceinline] = ACTIONS(1943), + [anon_sym_thread_local] = ACTIONS(1943), + [anon_sym___thread] = ACTIONS(1943), + [anon_sym_const] = ACTIONS(1943), + [anon_sym_constexpr] = ACTIONS(1943), + [anon_sym_volatile] = ACTIONS(1943), + [anon_sym_restrict] = ACTIONS(1943), + [anon_sym___restrict__] = ACTIONS(1943), + [anon_sym__Atomic] = ACTIONS(1943), + [anon_sym__Noreturn] = ACTIONS(1943), + [anon_sym_noreturn] = ACTIONS(1943), + [anon_sym__Nonnull] = ACTIONS(1943), + [anon_sym_mutable] = ACTIONS(1943), + [anon_sym_constinit] = ACTIONS(1943), + [anon_sym_consteval] = ACTIONS(1943), + [anon_sym_alignas] = ACTIONS(1943), + [anon_sym__Alignas] = ACTIONS(1943), + [sym_primitive_type] = ACTIONS(1943), + [anon_sym_enum] = ACTIONS(1943), [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), + [anon_sym_struct] = ACTIONS(1943), + [anon_sym_union] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(1943), + [anon_sym_switch] = ACTIONS(1943), + [anon_sym_case] = ACTIONS(1943), + [anon_sym_default] = ACTIONS(1943), + [anon_sym_while] = ACTIONS(1943), + [anon_sym_do] = ACTIONS(1943), + [anon_sym_for] = ACTIONS(1943), + [anon_sym_return] = ACTIONS(1943), + [anon_sym_break] = ACTIONS(1943), + [anon_sym_continue] = ACTIONS(1943), + [anon_sym_goto] = ACTIONS(1943), + [anon_sym___try] = ACTIONS(1943), + [anon_sym___leave] = ACTIONS(1943), + [anon_sym_not] = ACTIONS(1943), + [anon_sym_compl] = ACTIONS(1943), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_sizeof] = ACTIONS(1943), + [anon_sym___alignof__] = ACTIONS(1943), + [anon_sym___alignof] = ACTIONS(1943), + [anon_sym__alignof] = ACTIONS(1943), + [anon_sym_alignof] = ACTIONS(1943), + [anon_sym__Alignof] = ACTIONS(1943), + [anon_sym_offsetof] = ACTIONS(1943), + [anon_sym__Generic] = ACTIONS(1943), + [anon_sym_asm] = ACTIONS(1943), + [anon_sym___asm__] = ACTIONS(1943), + [anon_sym___asm] = ACTIONS(1943), + [sym_number_literal] = ACTIONS(1945), + [anon_sym_L_SQUOTE] = ACTIONS(1945), + [anon_sym_u_SQUOTE] = ACTIONS(1945), + [anon_sym_U_SQUOTE] = ACTIONS(1945), + [anon_sym_u8_SQUOTE] = ACTIONS(1945), + [anon_sym_SQUOTE] = ACTIONS(1945), + [anon_sym_L_DQUOTE] = ACTIONS(1945), + [anon_sym_u_DQUOTE] = ACTIONS(1945), + [anon_sym_U_DQUOTE] = ACTIONS(1945), + [anon_sym_u8_DQUOTE] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [sym_true] = ACTIONS(1943), + [sym_false] = ACTIONS(1943), + [anon_sym_NULL] = ACTIONS(1943), + [anon_sym_nullptr] = ACTIONS(1943), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1943), + [anon_sym_decltype] = ACTIONS(1943), + [anon_sym_explicit] = ACTIONS(1943), + [anon_sym_typename] = ACTIONS(1943), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_operator] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1943), + [anon_sym_delete] = ACTIONS(1943), + [anon_sym_throw] = ACTIONS(1943), + [anon_sym_namespace] = ACTIONS(1943), + [anon_sym_using] = ACTIONS(1943), + [anon_sym_static_assert] = ACTIONS(1943), + [anon_sym_concept] = ACTIONS(1943), + [anon_sym_co_return] = ACTIONS(1943), + [anon_sym_co_yield] = ACTIONS(1943), + [anon_sym_catch] = ACTIONS(1935), + [anon_sym_R_DQUOTE] = ACTIONS(1945), + [anon_sym_LR_DQUOTE] = ACTIONS(1945), + [anon_sym_uR_DQUOTE] = ACTIONS(1945), + [anon_sym_UR_DQUOTE] = ACTIONS(1945), + [anon_sym_u8R_DQUOTE] = ACTIONS(1945), + [anon_sym_co_await] = ACTIONS(1943), + [anon_sym_new] = ACTIONS(1943), + [anon_sym_requires] = ACTIONS(1943), + [sym_this] = ACTIONS(1943), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1943), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_FORWARD] = ACTIONS(1943), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1943), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1943), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1943), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1943), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_PS_GET] = ACTIONS(1943), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1943), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1943), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1943), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1943), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1943), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1943), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1943), + [anon_sym_MOZ_COLD] = ACTIONS(1943), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1943), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1943), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1943), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1943), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1943), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1943), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1943), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1943), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1943), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1943), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1943), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1943), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1943), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_NONNULL] = ACTIONS(1943), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1943), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1943), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1943), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1943), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1943), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1943), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1943), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1943), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1943), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1943), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1943), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1943), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1943), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1943), + [anon_sym_MOZ_RAII] = ACTIONS(1943), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1943), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1943), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1943), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1943), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1943), + }, + [STATE(140)] = { + [sym_else_clause] = STATE(179), + [sym_identifier] = ACTIONS(1947), + [aux_sym_preproc_include_token1] = ACTIONS(1947), + [aux_sym_preproc_def_token1] = ACTIONS(1947), + [aux_sym_preproc_if_token1] = ACTIONS(1947), + [aux_sym_preproc_if_token2] = ACTIONS(1947), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1947), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1947), + [aux_sym_preproc_else_token1] = ACTIONS(1947), + [aux_sym_preproc_elif_token1] = ACTIONS(1947), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1947), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1947), + [sym_preproc_directive] = ACTIONS(1947), + [anon_sym_LPAREN2] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1949), + [anon_sym_TILDE] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1949), + [anon_sym_AMP_AMP] = ACTIONS(1949), + [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_SEMI] = ACTIONS(1949), + [anon_sym___extension__] = ACTIONS(1947), + [anon_sym_typedef] = ACTIONS(1947), + [anon_sym_virtual] = ACTIONS(1947), + [anon_sym_extern] = ACTIONS(1947), + [anon_sym___attribute__] = ACTIONS(1947), + [anon_sym___attribute] = ACTIONS(1947), + [anon_sym_COLON_COLON] = ACTIONS(1949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1949), + [anon_sym___declspec] = ACTIONS(1947), + [anon_sym___based] = ACTIONS(1947), + [anon_sym___cdecl] = ACTIONS(1947), + [anon_sym___clrcall] = ACTIONS(1947), + [anon_sym___stdcall] = ACTIONS(1947), + [anon_sym___fastcall] = ACTIONS(1947), + [anon_sym___thiscall] = ACTIONS(1947), + [anon_sym___vectorcall] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1949), + [anon_sym_signed] = ACTIONS(1947), + [anon_sym_unsigned] = ACTIONS(1947), + [anon_sym_long] = ACTIONS(1947), + [anon_sym_short] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_static] = ACTIONS(1947), + [anon_sym_register] = ACTIONS(1947), + [anon_sym_inline] = ACTIONS(1947), + [anon_sym___inline] = ACTIONS(1947), + [anon_sym___inline__] = ACTIONS(1947), + [anon_sym___forceinline] = ACTIONS(1947), + [anon_sym_thread_local] = ACTIONS(1947), + [anon_sym___thread] = ACTIONS(1947), + [anon_sym_const] = ACTIONS(1947), + [anon_sym_constexpr] = ACTIONS(1947), + [anon_sym_volatile] = ACTIONS(1947), + [anon_sym_restrict] = ACTIONS(1947), + [anon_sym___restrict__] = ACTIONS(1947), + [anon_sym__Atomic] = ACTIONS(1947), + [anon_sym__Noreturn] = ACTIONS(1947), + [anon_sym_noreturn] = ACTIONS(1947), + [anon_sym__Nonnull] = ACTIONS(1947), + [anon_sym_mutable] = ACTIONS(1947), + [anon_sym_constinit] = ACTIONS(1947), + [anon_sym_consteval] = ACTIONS(1947), + [anon_sym_alignas] = ACTIONS(1947), + [anon_sym__Alignas] = ACTIONS(1947), + [sym_primitive_type] = ACTIONS(1947), + [anon_sym_enum] = ACTIONS(1947), + [anon_sym_class] = ACTIONS(1947), + [anon_sym_struct] = ACTIONS(1947), [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(1951), - [anon_sym_private] = ACTIONS(1951), - [anon_sym_protected] = ACTIONS(1951), - [sym_auto] = ACTIONS(1939), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_else] = ACTIONS(1951), + [anon_sym_switch] = ACTIONS(1947), + [anon_sym_case] = ACTIONS(1947), + [anon_sym_default] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_do] = ACTIONS(1947), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_break] = ACTIONS(1947), + [anon_sym_continue] = ACTIONS(1947), + [anon_sym_goto] = ACTIONS(1947), + [anon_sym___try] = ACTIONS(1947), + [anon_sym___leave] = ACTIONS(1947), + [anon_sym_not] = ACTIONS(1947), + [anon_sym_compl] = ACTIONS(1947), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_sizeof] = ACTIONS(1947), + [anon_sym___alignof__] = ACTIONS(1947), + [anon_sym___alignof] = ACTIONS(1947), + [anon_sym__alignof] = ACTIONS(1947), + [anon_sym_alignof] = ACTIONS(1947), + [anon_sym__Alignof] = ACTIONS(1947), + [anon_sym_offsetof] = ACTIONS(1947), + [anon_sym__Generic] = ACTIONS(1947), + [anon_sym_asm] = ACTIONS(1947), + [anon_sym___asm__] = ACTIONS(1947), + [anon_sym___asm] = ACTIONS(1947), + [sym_number_literal] = ACTIONS(1949), + [anon_sym_L_SQUOTE] = ACTIONS(1949), + [anon_sym_u_SQUOTE] = ACTIONS(1949), + [anon_sym_U_SQUOTE] = ACTIONS(1949), + [anon_sym_u8_SQUOTE] = ACTIONS(1949), + [anon_sym_SQUOTE] = ACTIONS(1949), + [anon_sym_L_DQUOTE] = ACTIONS(1949), + [anon_sym_u_DQUOTE] = ACTIONS(1949), + [anon_sym_U_DQUOTE] = ACTIONS(1949), + [anon_sym_u8_DQUOTE] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1949), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [anon_sym_NULL] = ACTIONS(1947), + [anon_sym_nullptr] = ACTIONS(1947), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1947), + [anon_sym_decltype] = ACTIONS(1947), + [anon_sym_explicit] = ACTIONS(1947), + [anon_sym_typename] = ACTIONS(1947), + [anon_sym_template] = ACTIONS(1947), + [anon_sym_operator] = ACTIONS(1947), + [anon_sym_try] = ACTIONS(1947), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1947), + [anon_sym_namespace] = ACTIONS(1947), + [anon_sym_using] = ACTIONS(1947), + [anon_sym_static_assert] = ACTIONS(1947), + [anon_sym_concept] = ACTIONS(1947), + [anon_sym_co_return] = ACTIONS(1947), + [anon_sym_co_yield] = ACTIONS(1947), + [anon_sym_R_DQUOTE] = ACTIONS(1949), + [anon_sym_LR_DQUOTE] = ACTIONS(1949), + [anon_sym_uR_DQUOTE] = ACTIONS(1949), + [anon_sym_UR_DQUOTE] = ACTIONS(1949), + [anon_sym_u8R_DQUOTE] = ACTIONS(1949), + [anon_sym_co_await] = ACTIONS(1947), + [anon_sym_new] = ACTIONS(1947), + [anon_sym_requires] = ACTIONS(1947), + [sym_this] = ACTIONS(1947), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_FORWARD] = ACTIONS(1947), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1947), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_PS_GET] = ACTIONS(1947), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1947), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1947), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1947), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1947), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1947), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1947), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1947), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1947), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1947), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1947), + [anon_sym_MOZ_COLD] = ACTIONS(1947), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1947), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1947), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1947), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1947), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1947), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1947), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1947), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1947), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1947), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1947), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1947), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1947), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1947), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1947), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1947), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1947), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1947), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1947), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1947), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1947), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_NONNULL] = ACTIONS(1947), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1947), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1947), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1947), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1947), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1947), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_NORETURN] = ACTIONS(1947), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1947), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1947), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1947), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1947), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1947), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1947), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1947), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1947), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1947), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1947), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1947), + [anon_sym_MOZ_RAII] = ACTIONS(1947), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1947), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1947), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1947), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1947), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1947), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1947), + }, + [STATE(141)] = { + [sym_identifier] = ACTIONS(1953), + [aux_sym_preproc_include_token1] = ACTIONS(1953), + [aux_sym_preproc_def_token1] = ACTIONS(1953), + [aux_sym_preproc_if_token1] = ACTIONS(1953), + [aux_sym_preproc_if_token2] = ACTIONS(1953), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1953), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1953), + [aux_sym_preproc_else_token1] = ACTIONS(1953), + [aux_sym_preproc_elif_token1] = ACTIONS(1953), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1953), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1953), + [sym_preproc_directive] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym___extension__] = ACTIONS(1953), + [anon_sym_typedef] = ACTIONS(1953), + [anon_sym_virtual] = ACTIONS(1953), + [anon_sym_extern] = ACTIONS(1953), + [anon_sym___attribute__] = ACTIONS(1953), + [anon_sym___attribute] = ACTIONS(1953), + [anon_sym_COLON_COLON] = ACTIONS(1955), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1955), + [anon_sym___declspec] = ACTIONS(1953), + [anon_sym___based] = ACTIONS(1953), + [anon_sym___cdecl] = ACTIONS(1953), + [anon_sym___clrcall] = ACTIONS(1953), + [anon_sym___stdcall] = ACTIONS(1953), + [anon_sym___fastcall] = ACTIONS(1953), + [anon_sym___thiscall] = ACTIONS(1953), + [anon_sym___vectorcall] = ACTIONS(1953), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_signed] = ACTIONS(1953), + [anon_sym_unsigned] = ACTIONS(1953), + [anon_sym_long] = ACTIONS(1953), + [anon_sym_short] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(1953), + [anon_sym_static] = ACTIONS(1953), + [anon_sym_register] = ACTIONS(1953), + [anon_sym_inline] = ACTIONS(1953), + [anon_sym___inline] = ACTIONS(1953), + [anon_sym___inline__] = ACTIONS(1953), + [anon_sym___forceinline] = ACTIONS(1953), + [anon_sym_thread_local] = ACTIONS(1953), + [anon_sym___thread] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [anon_sym_constexpr] = ACTIONS(1953), + [anon_sym_volatile] = ACTIONS(1953), + [anon_sym_restrict] = ACTIONS(1953), + [anon_sym___restrict__] = ACTIONS(1953), + [anon_sym__Atomic] = ACTIONS(1953), + [anon_sym__Noreturn] = ACTIONS(1953), + [anon_sym_noreturn] = ACTIONS(1953), + [anon_sym__Nonnull] = ACTIONS(1953), + [anon_sym_mutable] = ACTIONS(1953), + [anon_sym_constinit] = ACTIONS(1953), + [anon_sym_consteval] = ACTIONS(1953), + [anon_sym_alignas] = ACTIONS(1953), + [anon_sym__Alignas] = ACTIONS(1953), + [sym_primitive_type] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1953), + [anon_sym_class] = ACTIONS(1953), + [anon_sym_struct] = ACTIONS(1953), + [anon_sym_union] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_else] = ACTIONS(1953), + [anon_sym_switch] = ACTIONS(1953), + [anon_sym_case] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_do] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_break] = ACTIONS(1953), + [anon_sym_continue] = ACTIONS(1953), + [anon_sym_goto] = ACTIONS(1953), + [anon_sym___try] = ACTIONS(1953), + [anon_sym___leave] = ACTIONS(1953), + [anon_sym_not] = ACTIONS(1953), + [anon_sym_compl] = ACTIONS(1953), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_sizeof] = ACTIONS(1953), + [anon_sym___alignof__] = ACTIONS(1953), + [anon_sym___alignof] = ACTIONS(1953), + [anon_sym__alignof] = ACTIONS(1953), + [anon_sym_alignof] = ACTIONS(1953), + [anon_sym__Alignof] = ACTIONS(1953), + [anon_sym_offsetof] = ACTIONS(1953), + [anon_sym__Generic] = ACTIONS(1953), + [anon_sym_asm] = ACTIONS(1953), + [anon_sym___asm__] = ACTIONS(1953), + [anon_sym___asm] = ACTIONS(1953), + [sym_number_literal] = ACTIONS(1955), + [anon_sym_L_SQUOTE] = ACTIONS(1955), + [anon_sym_u_SQUOTE] = ACTIONS(1955), + [anon_sym_U_SQUOTE] = ACTIONS(1955), + [anon_sym_u8_SQUOTE] = ACTIONS(1955), + [anon_sym_SQUOTE] = ACTIONS(1955), + [anon_sym_L_DQUOTE] = ACTIONS(1955), + [anon_sym_u_DQUOTE] = ACTIONS(1955), + [anon_sym_U_DQUOTE] = ACTIONS(1955), + [anon_sym_u8_DQUOTE] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(1955), + [sym_true] = ACTIONS(1953), + [sym_false] = ACTIONS(1953), + [anon_sym_NULL] = ACTIONS(1953), + [anon_sym_nullptr] = ACTIONS(1953), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1953), + [anon_sym_decltype] = ACTIONS(1953), + [anon_sym_explicit] = ACTIONS(1953), [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(1955), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1957), - [anon_sym_using] = ACTIONS(1959), - [anon_sym_static_assert] = ACTIONS(1961), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1963), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [345] = { - [sym_identifier] = ACTIONS(1659), - [aux_sym_preproc_include_token1] = ACTIONS(1659), - [aux_sym_preproc_def_token1] = ACTIONS(1659), - [aux_sym_preproc_if_token1] = ACTIONS(1659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1659), - [sym_preproc_directive] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_TILDE] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_AMP_AMP] = ACTIONS(1661), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_typedef] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym___attribute__] = ACTIONS(1659), - [anon_sym_COLON_COLON] = ACTIONS(1661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1661), - [anon_sym___declspec] = ACTIONS(1659), - [anon_sym___based] = ACTIONS(1659), - [anon_sym___cdecl] = ACTIONS(1659), - [anon_sym___clrcall] = ACTIONS(1659), - [anon_sym___stdcall] = ACTIONS(1659), - [anon_sym___fastcall] = ACTIONS(1659), - [anon_sym___thiscall] = ACTIONS(1659), - [anon_sym___vectorcall] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_inline] = ACTIONS(1659), - [anon_sym_thread_local] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [anon_sym_volatile] = ACTIONS(1659), - [anon_sym_restrict] = ACTIONS(1659), - [anon_sym__Atomic] = ACTIONS(1659), - [anon_sym_mutable] = ACTIONS(1659), - [anon_sym_constexpr] = ACTIONS(1659), - [anon_sym_signed] = ACTIONS(1659), - [anon_sym_unsigned] = ACTIONS(1659), - [anon_sym_long] = ACTIONS(1659), - [anon_sym_short] = ACTIONS(1659), - [sym_primitive_type] = ACTIONS(1659), - [anon_sym_enum] = ACTIONS(1659), - [anon_sym_class] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_switch] = ACTIONS(1659), - [anon_sym_case] = ACTIONS(1659), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_goto] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1661), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1661), - [anon_sym_L_SQUOTE] = ACTIONS(1661), - [anon_sym_u_SQUOTE] = ACTIONS(1661), - [anon_sym_U_SQUOTE] = ACTIONS(1661), - [anon_sym_u8_SQUOTE] = ACTIONS(1661), - [anon_sym_SQUOTE] = ACTIONS(1661), - [anon_sym_L_DQUOTE] = ACTIONS(1661), - [anon_sym_u_DQUOTE] = ACTIONS(1661), - [anon_sym_U_DQUOTE] = ACTIONS(1661), - [anon_sym_u8_DQUOTE] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym_true] = ACTIONS(1659), - [sym_false] = ACTIONS(1659), - [sym_null] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1659), - [anon_sym_virtual] = ACTIONS(1659), - [anon_sym_explicit] = ACTIONS(1659), - [sym_auto] = ACTIONS(1659), - [anon_sym_typename] = ACTIONS(1659), - [anon_sym_template] = ACTIONS(1659), - [anon_sym_operator] = ACTIONS(1659), - [anon_sym_delete] = ACTIONS(1659), - [anon_sym_throw] = ACTIONS(1659), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_using] = ACTIONS(1659), - [anon_sym_static_assert] = ACTIONS(1659), - [anon_sym_co_return] = ACTIONS(1659), - [anon_sym_co_yield] = ACTIONS(1659), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_co_await] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [sym_this] = ACTIONS(1659), - [sym_nullptr] = ACTIONS(1659), - [sym_alone_macro] = ACTIONS(1661), - [aux_sym_alone_macro_call_token1] = ACTIONS(1659), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_FORWARD] = ACTIONS(1659), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1659), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_PS_GET] = ACTIONS(1659), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1659), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1659), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1659), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1659), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1659), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1659), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1659), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1659), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1659), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1659), - [anon_sym_MOZ_COLD] = ACTIONS(1659), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1659), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1659), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1659), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1659), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1659), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1659), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1659), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1659), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1659), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1659), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1659), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1659), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1659), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1659), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1659), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1659), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1659), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1659), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1659), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1659), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_NONNULL] = ACTIONS(1659), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1659), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1659), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1659), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1659), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1659), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_NORETURN] = ACTIONS(1659), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1659), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1659), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1659), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1659), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1659), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1659), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1659), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1659), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1659), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1659), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1659), - [anon_sym_MOZ_RAII] = ACTIONS(1659), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1659), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1659), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1659), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1659), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1659), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1659), - [sym_raw_string_literal] = ACTIONS(1661), - }, - [346] = { - [ts_builtin_sym_end] = ACTIONS(1571), - [sym_identifier] = ACTIONS(1569), - [aux_sym_preproc_include_token1] = ACTIONS(1569), - [aux_sym_preproc_def_token1] = ACTIONS(1569), - [aux_sym_preproc_if_token1] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1569), - [sym_preproc_directive] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP_AMP] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_typedef] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym___attribute__] = ACTIONS(1569), - [anon_sym_COLON_COLON] = ACTIONS(1571), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1571), - [anon_sym___declspec] = ACTIONS(1569), - [anon_sym___based] = ACTIONS(1569), - [anon_sym___cdecl] = ACTIONS(1569), - [anon_sym___clrcall] = ACTIONS(1569), - [anon_sym___stdcall] = ACTIONS(1569), - [anon_sym___fastcall] = ACTIONS(1569), - [anon_sym___thiscall] = ACTIONS(1569), - [anon_sym___vectorcall] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1569), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_inline] = ACTIONS(1569), - [anon_sym_thread_local] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [anon_sym_volatile] = ACTIONS(1569), - [anon_sym_restrict] = ACTIONS(1569), - [anon_sym__Atomic] = ACTIONS(1569), - [anon_sym_mutable] = ACTIONS(1569), - [anon_sym_constexpr] = ACTIONS(1569), - [anon_sym_signed] = ACTIONS(1569), - [anon_sym_unsigned] = ACTIONS(1569), - [anon_sym_long] = ACTIONS(1569), - [anon_sym_short] = ACTIONS(1569), - [sym_primitive_type] = ACTIONS(1569), - [anon_sym_enum] = ACTIONS(1569), - [anon_sym_class] = ACTIONS(1569), - [anon_sym_struct] = ACTIONS(1569), - [anon_sym_union] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_switch] = ACTIONS(1569), - [anon_sym_case] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_goto] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_sizeof] = ACTIONS(1569), - [sym_number_literal] = ACTIONS(1571), - [anon_sym_L_SQUOTE] = ACTIONS(1571), - [anon_sym_u_SQUOTE] = ACTIONS(1571), - [anon_sym_U_SQUOTE] = ACTIONS(1571), - [anon_sym_u8_SQUOTE] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1571), - [anon_sym_L_DQUOTE] = ACTIONS(1571), - [anon_sym_u_DQUOTE] = ACTIONS(1571), - [anon_sym_U_DQUOTE] = ACTIONS(1571), - [anon_sym_u8_DQUOTE] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym_true] = ACTIONS(1569), - [sym_false] = ACTIONS(1569), - [sym_null] = ACTIONS(1569), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1569), - [anon_sym_virtual] = ACTIONS(1569), - [anon_sym_explicit] = ACTIONS(1569), - [sym_auto] = ACTIONS(1569), - [anon_sym_typename] = ACTIONS(1569), - [anon_sym_template] = ACTIONS(1569), - [anon_sym_operator] = ACTIONS(1569), - [anon_sym_delete] = ACTIONS(1569), - [anon_sym_throw] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1569), - [anon_sym_using] = ACTIONS(1569), - [anon_sym_static_assert] = ACTIONS(1569), - [anon_sym_co_return] = ACTIONS(1569), - [anon_sym_co_yield] = ACTIONS(1569), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_co_await] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [sym_this] = ACTIONS(1569), - [sym_nullptr] = ACTIONS(1569), - [sym_alone_macro] = ACTIONS(1571), - [aux_sym_alone_macro_call_token1] = ACTIONS(1569), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_FORWARD] = ACTIONS(1569), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1569), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_PS_GET] = ACTIONS(1569), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1569), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1569), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1569), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1569), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1569), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1569), - [anon_sym_MOZ_COLD] = ACTIONS(1569), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1569), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1569), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1569), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1569), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1569), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1569), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1569), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1569), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1569), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1569), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1569), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1569), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1569), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_NONNULL] = ACTIONS(1569), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1569), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1569), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1569), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1569), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1569), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1569), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1569), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1569), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1569), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1569), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1569), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1569), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1569), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1569), - [anon_sym_MOZ_RAII] = ACTIONS(1569), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1569), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1569), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1569), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1569), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1569), - [sym_raw_string_literal] = ACTIONS(1571), - }, - [347] = { - [ts_builtin_sym_end] = ACTIONS(1587), - [sym_identifier] = ACTIONS(1585), - [aux_sym_preproc_include_token1] = ACTIONS(1585), - [aux_sym_preproc_def_token1] = ACTIONS(1585), - [aux_sym_preproc_if_token1] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1585), - [sym_preproc_directive] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_AMP_AMP] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_typedef] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym___attribute__] = ACTIONS(1585), - [anon_sym_COLON_COLON] = ACTIONS(1587), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1587), - [anon_sym___declspec] = ACTIONS(1585), - [anon_sym___based] = ACTIONS(1585), - [anon_sym___cdecl] = ACTIONS(1585), - [anon_sym___clrcall] = ACTIONS(1585), - [anon_sym___stdcall] = ACTIONS(1585), - [anon_sym___fastcall] = ACTIONS(1585), - [anon_sym___thiscall] = ACTIONS(1585), - [anon_sym___vectorcall] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_register] = ACTIONS(1585), - [anon_sym_inline] = ACTIONS(1585), - [anon_sym_thread_local] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_volatile] = ACTIONS(1585), - [anon_sym_restrict] = ACTIONS(1585), - [anon_sym__Atomic] = ACTIONS(1585), - [anon_sym_mutable] = ACTIONS(1585), - [anon_sym_constexpr] = ACTIONS(1585), - [anon_sym_signed] = ACTIONS(1585), - [anon_sym_unsigned] = ACTIONS(1585), - [anon_sym_long] = ACTIONS(1585), - [anon_sym_short] = ACTIONS(1585), - [sym_primitive_type] = ACTIONS(1585), - [anon_sym_enum] = ACTIONS(1585), - [anon_sym_class] = ACTIONS(1585), - [anon_sym_struct] = ACTIONS(1585), - [anon_sym_union] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_else] = ACTIONS(1585), - [anon_sym_switch] = ACTIONS(1585), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_goto] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1587), - [anon_sym_u_SQUOTE] = ACTIONS(1587), - [anon_sym_U_SQUOTE] = ACTIONS(1587), - [anon_sym_u8_SQUOTE] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1587), - [anon_sym_L_DQUOTE] = ACTIONS(1587), - [anon_sym_u_DQUOTE] = ACTIONS(1587), - [anon_sym_U_DQUOTE] = ACTIONS(1587), - [anon_sym_u8_DQUOTE] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym_true] = ACTIONS(1585), - [sym_false] = ACTIONS(1585), - [sym_null] = ACTIONS(1585), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1585), - [anon_sym_virtual] = ACTIONS(1585), - [anon_sym_explicit] = ACTIONS(1585), - [sym_auto] = ACTIONS(1585), - [anon_sym_typename] = ACTIONS(1585), - [anon_sym_template] = ACTIONS(1585), - [anon_sym_operator] = ACTIONS(1585), - [anon_sym_delete] = ACTIONS(1585), - [anon_sym_throw] = ACTIONS(1585), - [anon_sym_namespace] = ACTIONS(1585), - [anon_sym_using] = ACTIONS(1585), - [anon_sym_static_assert] = ACTIONS(1585), - [anon_sym_co_return] = ACTIONS(1585), - [anon_sym_co_yield] = ACTIONS(1585), - [anon_sym_try] = ACTIONS(1585), - [anon_sym_co_await] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1585), - [sym_this] = ACTIONS(1585), - [sym_nullptr] = ACTIONS(1585), - [sym_alone_macro] = ACTIONS(1587), - [aux_sym_alone_macro_call_token1] = ACTIONS(1585), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_FORWARD] = ACTIONS(1585), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1585), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_PS_GET] = ACTIONS(1585), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1585), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1585), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1585), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1585), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1585), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1585), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1585), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1585), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1585), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1585), - [anon_sym_MOZ_COLD] = ACTIONS(1585), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1585), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1585), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1585), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1585), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1585), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1585), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1585), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1585), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1585), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1585), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1585), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1585), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1585), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1585), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1585), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1585), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1585), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1585), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1585), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1585), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_NONNULL] = ACTIONS(1585), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1585), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1585), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1585), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1585), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1585), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_NORETURN] = ACTIONS(1585), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1585), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1585), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1585), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1585), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1585), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1585), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1585), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1585), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1585), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1585), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1585), - [anon_sym_MOZ_RAII] = ACTIONS(1585), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1585), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1585), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1585), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1585), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1585), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1585), - [sym_raw_string_literal] = ACTIONS(1587), - }, - [348] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [349] = { - [sym_identifier] = ACTIONS(1569), - [aux_sym_preproc_include_token1] = ACTIONS(1569), - [aux_sym_preproc_def_token1] = ACTIONS(1569), - [aux_sym_preproc_if_token1] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1569), - [sym_preproc_directive] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP_AMP] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_typedef] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym___attribute__] = ACTIONS(1569), - [anon_sym_COLON_COLON] = ACTIONS(1571), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1571), - [anon_sym___declspec] = ACTIONS(1569), - [anon_sym___based] = ACTIONS(1569), - [anon_sym___cdecl] = ACTIONS(1569), - [anon_sym___clrcall] = ACTIONS(1569), - [anon_sym___stdcall] = ACTIONS(1569), - [anon_sym___fastcall] = ACTIONS(1569), - [anon_sym___thiscall] = ACTIONS(1569), - [anon_sym___vectorcall] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1569), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_inline] = ACTIONS(1569), - [anon_sym_thread_local] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [anon_sym_volatile] = ACTIONS(1569), - [anon_sym_restrict] = ACTIONS(1569), - [anon_sym__Atomic] = ACTIONS(1569), - [anon_sym_mutable] = ACTIONS(1569), - [anon_sym_constexpr] = ACTIONS(1569), - [anon_sym_signed] = ACTIONS(1569), - [anon_sym_unsigned] = ACTIONS(1569), - [anon_sym_long] = ACTIONS(1569), - [anon_sym_short] = ACTIONS(1569), - [sym_primitive_type] = ACTIONS(1569), - [anon_sym_enum] = ACTIONS(1569), - [anon_sym_class] = ACTIONS(1569), - [anon_sym_struct] = ACTIONS(1569), - [anon_sym_union] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_switch] = ACTIONS(1569), - [anon_sym_case] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_goto] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_sizeof] = ACTIONS(1569), - [sym_number_literal] = ACTIONS(1571), - [anon_sym_L_SQUOTE] = ACTIONS(1571), - [anon_sym_u_SQUOTE] = ACTIONS(1571), - [anon_sym_U_SQUOTE] = ACTIONS(1571), - [anon_sym_u8_SQUOTE] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1571), - [anon_sym_L_DQUOTE] = ACTIONS(1571), - [anon_sym_u_DQUOTE] = ACTIONS(1571), - [anon_sym_U_DQUOTE] = ACTIONS(1571), - [anon_sym_u8_DQUOTE] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym_true] = ACTIONS(1569), - [sym_false] = ACTIONS(1569), - [sym_null] = ACTIONS(1569), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1569), - [anon_sym_virtual] = ACTIONS(1569), - [anon_sym_explicit] = ACTIONS(1569), - [sym_auto] = ACTIONS(1569), - [anon_sym_typename] = ACTIONS(1569), - [anon_sym_template] = ACTIONS(1569), - [anon_sym_operator] = ACTIONS(1569), - [anon_sym_delete] = ACTIONS(1569), - [anon_sym_throw] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1569), - [anon_sym_using] = ACTIONS(1569), - [anon_sym_static_assert] = ACTIONS(1569), - [anon_sym_co_return] = ACTIONS(1569), - [anon_sym_co_yield] = ACTIONS(1569), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_co_await] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [sym_this] = ACTIONS(1569), - [sym_nullptr] = ACTIONS(1569), - [sym_alone_macro] = ACTIONS(1571), - [aux_sym_alone_macro_call_token1] = ACTIONS(1569), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_FORWARD] = ACTIONS(1569), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1569), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_PS_GET] = ACTIONS(1569), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1569), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1569), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1569), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1569), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1569), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1569), - [anon_sym_MOZ_COLD] = ACTIONS(1569), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1569), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1569), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1569), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1569), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1569), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1569), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1569), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1569), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1569), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1569), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1569), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1569), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1569), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_NONNULL] = ACTIONS(1569), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1569), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1569), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1569), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1569), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1569), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1569), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1569), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1569), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1569), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1569), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1569), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1569), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1569), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1569), - [anon_sym_MOZ_RAII] = ACTIONS(1569), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1569), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1569), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1569), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1569), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1569), - [sym_raw_string_literal] = ACTIONS(1571), - }, - [350] = { - [sym_preproc_def] = STATE(343), - [sym_preproc_function_def] = STATE(343), - [sym_preproc_call] = STATE(343), - [sym_preproc_if_in_field_declaration_list] = STATE(343), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(343), - [sym_preproc_else_in_field_declaration_list] = STATE(5182), - [sym_preproc_elif_in_field_declaration_list] = STATE(5182), - [sym_type_definition] = STATE(343), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3235), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3615), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(343), - [sym_field_declaration] = STATE(343), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(841), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(343), - [sym_operator_cast] = STATE(4161), - [sym_inline_method_definition] = STATE(343), - [sym__constructor_specifiers] = STATE(841), - [sym_operator_cast_definition] = STATE(343), - [sym_operator_cast_declaration] = STATE(343), - [sym_constructor_or_destructor_definition] = STATE(343), - [sym_constructor_or_destructor_declaration] = STATE(343), - [sym_friend_declaration] = STATE(343), - [sym_access_specifier] = STATE(343), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(343), - [sym_alias_declaration] = STATE(343), - [sym_static_assert_declaration] = STATE(343), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4161), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(343), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(343), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(841), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(1909), - [aux_sym_preproc_if_token1] = ACTIONS(1911), - [aux_sym_preproc_if_token2] = ACTIONS(1975), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1915), - [aux_sym_preproc_else_token1] = ACTIONS(1917), - [aux_sym_preproc_elif_token1] = ACTIONS(1919), - [sym_preproc_directive] = ACTIONS(1921), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), + [anon_sym_template] = ACTIONS(1953), + [anon_sym_operator] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(1953), + [anon_sym_delete] = ACTIONS(1953), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_namespace] = ACTIONS(1953), + [anon_sym_using] = ACTIONS(1953), + [anon_sym_static_assert] = ACTIONS(1953), + [anon_sym_concept] = ACTIONS(1953), + [anon_sym_co_return] = ACTIONS(1953), + [anon_sym_co_yield] = ACTIONS(1953), + [anon_sym_catch] = ACTIONS(1953), + [anon_sym_R_DQUOTE] = ACTIONS(1955), + [anon_sym_LR_DQUOTE] = ACTIONS(1955), + [anon_sym_uR_DQUOTE] = ACTIONS(1955), + [anon_sym_UR_DQUOTE] = ACTIONS(1955), + [anon_sym_u8R_DQUOTE] = ACTIONS(1955), + [anon_sym_co_await] = ACTIONS(1953), + [anon_sym_new] = ACTIONS(1953), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1953), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_FORWARD] = ACTIONS(1953), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1953), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_PS_GET] = ACTIONS(1953), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1953), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1953), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1953), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1953), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1953), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1953), + [anon_sym_MOZ_COLD] = ACTIONS(1953), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1953), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1953), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1953), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1953), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1953), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1953), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1953), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1953), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1953), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1953), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1953), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1953), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1953), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_NONNULL] = ACTIONS(1953), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1953), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1953), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1953), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1953), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1953), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1953), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1953), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1953), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1953), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1953), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1953), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1953), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1953), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1953), + [anon_sym_MOZ_RAII] = ACTIONS(1953), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1953), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1953), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1953), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1953), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1953), + }, + [STATE(142)] = { + [sym_identifier] = ACTIONS(1879), + [aux_sym_preproc_include_token1] = ACTIONS(1879), + [aux_sym_preproc_def_token1] = ACTIONS(1879), + [aux_sym_preproc_if_token1] = ACTIONS(1879), + [aux_sym_preproc_if_token2] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1879), + [aux_sym_preproc_else_token1] = ACTIONS(1879), + [aux_sym_preproc_elif_token1] = ACTIONS(1879), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1879), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1879), + [sym_preproc_directive] = ACTIONS(1879), + [anon_sym_LPAREN2] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym___extension__] = ACTIONS(1879), + [anon_sym_typedef] = ACTIONS(1879), + [anon_sym_virtual] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym___attribute__] = ACTIONS(1879), + [anon_sym___attribute] = ACTIONS(1879), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1877), + [anon_sym___declspec] = ACTIONS(1879), + [anon_sym___based] = ACTIONS(1879), + [anon_sym___cdecl] = ACTIONS(1879), + [anon_sym___clrcall] = ACTIONS(1879), + [anon_sym___stdcall] = ACTIONS(1879), + [anon_sym___fastcall] = ACTIONS(1879), + [anon_sym___thiscall] = ACTIONS(1879), + [anon_sym___vectorcall] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_signed] = ACTIONS(1879), + [anon_sym_unsigned] = ACTIONS(1879), + [anon_sym_long] = ACTIONS(1879), + [anon_sym_short] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_static] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_inline] = ACTIONS(1879), + [anon_sym___inline] = ACTIONS(1879), + [anon_sym___inline__] = ACTIONS(1879), + [anon_sym___forceinline] = ACTIONS(1879), + [anon_sym_thread_local] = ACTIONS(1879), + [anon_sym___thread] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_constexpr] = ACTIONS(1879), + [anon_sym_volatile] = ACTIONS(1879), + [anon_sym_restrict] = ACTIONS(1879), + [anon_sym___restrict__] = ACTIONS(1879), + [anon_sym__Atomic] = ACTIONS(1879), + [anon_sym__Noreturn] = ACTIONS(1879), + [anon_sym_noreturn] = ACTIONS(1879), + [anon_sym__Nonnull] = ACTIONS(1879), + [anon_sym_mutable] = ACTIONS(1879), + [anon_sym_constinit] = ACTIONS(1879), + [anon_sym_consteval] = ACTIONS(1879), + [anon_sym_alignas] = ACTIONS(1879), + [anon_sym__Alignas] = ACTIONS(1879), + [sym_primitive_type] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_class] = ACTIONS(1879), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_switch] = ACTIONS(1879), + [anon_sym_case] = ACTIONS(1879), + [anon_sym_default] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym___try] = ACTIONS(1879), + [anon_sym___leave] = ACTIONS(1879), + [anon_sym_not] = ACTIONS(1879), + [anon_sym_compl] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_sizeof] = ACTIONS(1879), + [anon_sym___alignof__] = ACTIONS(1879), + [anon_sym___alignof] = ACTIONS(1879), + [anon_sym__alignof] = ACTIONS(1879), + [anon_sym_alignof] = ACTIONS(1879), + [anon_sym__Alignof] = ACTIONS(1879), + [anon_sym_offsetof] = ACTIONS(1879), + [anon_sym__Generic] = ACTIONS(1879), + [anon_sym_asm] = ACTIONS(1879), + [anon_sym___asm__] = ACTIONS(1879), + [anon_sym___asm] = ACTIONS(1879), + [sym_number_literal] = ACTIONS(1877), + [anon_sym_L_SQUOTE] = ACTIONS(1877), + [anon_sym_u_SQUOTE] = ACTIONS(1877), + [anon_sym_U_SQUOTE] = ACTIONS(1877), + [anon_sym_u8_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_L_DQUOTE] = ACTIONS(1877), + [anon_sym_u_DQUOTE] = ACTIONS(1877), + [anon_sym_U_DQUOTE] = ACTIONS(1877), + [anon_sym_u8_DQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(1951), - [anon_sym_private] = ACTIONS(1951), - [anon_sym_protected] = ACTIONS(1951), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(1955), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1957), - [anon_sym_using] = ACTIONS(1959), - [anon_sym_static_assert] = ACTIONS(1961), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1963), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [351] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [352] = { - [sym_identifier] = ACTIONS(1641), - [aux_sym_preproc_include_token1] = ACTIONS(1641), - [aux_sym_preproc_def_token1] = ACTIONS(1641), - [aux_sym_preproc_if_token1] = ACTIONS(1641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1641), - [sym_preproc_directive] = ACTIONS(1641), - [anon_sym_LPAREN2] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_AMP_AMP] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_typedef] = ACTIONS(1641), - [anon_sym_extern] = ACTIONS(1641), - [anon_sym___attribute__] = ACTIONS(1641), - [anon_sym_COLON_COLON] = ACTIONS(1643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1643), - [anon_sym___declspec] = ACTIONS(1641), - [anon_sym___based] = ACTIONS(1641), - [anon_sym___cdecl] = ACTIONS(1641), - [anon_sym___clrcall] = ACTIONS(1641), - [anon_sym___stdcall] = ACTIONS(1641), - [anon_sym___fastcall] = ACTIONS(1641), - [anon_sym___thiscall] = ACTIONS(1641), - [anon_sym___vectorcall] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_register] = ACTIONS(1641), - [anon_sym_inline] = ACTIONS(1641), - [anon_sym_thread_local] = ACTIONS(1641), - [anon_sym_const] = ACTIONS(1641), - [anon_sym_volatile] = ACTIONS(1641), - [anon_sym_restrict] = ACTIONS(1641), - [anon_sym__Atomic] = ACTIONS(1641), - [anon_sym_mutable] = ACTIONS(1641), - [anon_sym_constexpr] = ACTIONS(1641), - [anon_sym_signed] = ACTIONS(1641), - [anon_sym_unsigned] = ACTIONS(1641), - [anon_sym_long] = ACTIONS(1641), - [anon_sym_short] = ACTIONS(1641), - [sym_primitive_type] = ACTIONS(1641), - [anon_sym_enum] = ACTIONS(1641), - [anon_sym_class] = ACTIONS(1641), - [anon_sym_struct] = ACTIONS(1641), - [anon_sym_union] = ACTIONS(1641), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_else] = ACTIONS(1641), - [anon_sym_switch] = ACTIONS(1641), - [anon_sym_case] = ACTIONS(1641), - [anon_sym_default] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_do] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_return] = ACTIONS(1641), - [anon_sym_break] = ACTIONS(1641), - [anon_sym_continue] = ACTIONS(1641), - [anon_sym_goto] = ACTIONS(1641), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_sizeof] = ACTIONS(1641), - [sym_number_literal] = ACTIONS(1643), - [anon_sym_L_SQUOTE] = ACTIONS(1643), - [anon_sym_u_SQUOTE] = ACTIONS(1643), - [anon_sym_U_SQUOTE] = ACTIONS(1643), - [anon_sym_u8_SQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1643), - [anon_sym_L_DQUOTE] = ACTIONS(1643), - [anon_sym_u_DQUOTE] = ACTIONS(1643), - [anon_sym_U_DQUOTE] = ACTIONS(1643), - [anon_sym_u8_DQUOTE] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym_true] = ACTIONS(1641), - [sym_false] = ACTIONS(1641), - [sym_null] = ACTIONS(1641), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1641), - [anon_sym_virtual] = ACTIONS(1641), - [anon_sym_explicit] = ACTIONS(1641), - [sym_auto] = ACTIONS(1641), - [anon_sym_typename] = ACTIONS(1641), - [anon_sym_template] = ACTIONS(1641), - [anon_sym_operator] = ACTIONS(1641), - [anon_sym_delete] = ACTIONS(1641), - [anon_sym_throw] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_using] = ACTIONS(1641), - [anon_sym_static_assert] = ACTIONS(1641), - [anon_sym_co_return] = ACTIONS(1641), - [anon_sym_co_yield] = ACTIONS(1641), - [anon_sym_try] = ACTIONS(1641), - [anon_sym_co_await] = ACTIONS(1641), - [anon_sym_new] = ACTIONS(1641), - [sym_this] = ACTIONS(1641), - [sym_nullptr] = ACTIONS(1641), - [sym_alone_macro] = ACTIONS(1643), - [aux_sym_alone_macro_call_token1] = ACTIONS(1641), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_FORWARD] = ACTIONS(1641), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1641), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_PS_GET] = ACTIONS(1641), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1641), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1641), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1641), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1641), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1641), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1641), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1641), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1641), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1641), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1641), - [anon_sym_MOZ_COLD] = ACTIONS(1641), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1641), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1641), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1641), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1641), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1641), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1641), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1641), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1641), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1641), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1641), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1641), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1641), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1641), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1641), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1641), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1641), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1641), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1641), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1641), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1641), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_NONNULL] = ACTIONS(1641), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1641), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1641), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1641), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1641), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1641), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_NORETURN] = ACTIONS(1641), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1641), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1641), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1641), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1641), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1641), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1641), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1641), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1641), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1641), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1641), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1641), - [anon_sym_MOZ_RAII] = ACTIONS(1641), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1641), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1641), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1641), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1641), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1641), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1641), - [sym_raw_string_literal] = ACTIONS(1643), - }, - [353] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [354] = { - [sym_identifier] = ACTIONS(1645), - [aux_sym_preproc_include_token1] = ACTIONS(1645), - [aux_sym_preproc_def_token1] = ACTIONS(1645), - [aux_sym_preproc_if_token1] = ACTIONS(1645), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1645), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1645), - [sym_preproc_directive] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_AMP_AMP] = ACTIONS(1647), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_typedef] = ACTIONS(1645), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym___attribute__] = ACTIONS(1645), - [anon_sym_COLON_COLON] = ACTIONS(1647), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1647), - [anon_sym___declspec] = ACTIONS(1645), - [anon_sym___based] = ACTIONS(1645), - [anon_sym___cdecl] = ACTIONS(1645), - [anon_sym___clrcall] = ACTIONS(1645), - [anon_sym___stdcall] = ACTIONS(1645), - [anon_sym___fastcall] = ACTIONS(1645), - [anon_sym___thiscall] = ACTIONS(1645), - [anon_sym___vectorcall] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_register] = ACTIONS(1645), - [anon_sym_inline] = ACTIONS(1645), - [anon_sym_thread_local] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_volatile] = ACTIONS(1645), - [anon_sym_restrict] = ACTIONS(1645), - [anon_sym__Atomic] = ACTIONS(1645), - [anon_sym_mutable] = ACTIONS(1645), - [anon_sym_constexpr] = ACTIONS(1645), - [anon_sym_signed] = ACTIONS(1645), - [anon_sym_unsigned] = ACTIONS(1645), - [anon_sym_long] = ACTIONS(1645), - [anon_sym_short] = ACTIONS(1645), - [sym_primitive_type] = ACTIONS(1645), - [anon_sym_enum] = ACTIONS(1645), - [anon_sym_class] = ACTIONS(1645), - [anon_sym_struct] = ACTIONS(1645), - [anon_sym_union] = ACTIONS(1645), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_switch] = ACTIONS(1645), - [anon_sym_case] = ACTIONS(1645), - [anon_sym_default] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_goto] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1645), - [sym_number_literal] = ACTIONS(1647), - [anon_sym_L_SQUOTE] = ACTIONS(1647), - [anon_sym_u_SQUOTE] = ACTIONS(1647), - [anon_sym_U_SQUOTE] = ACTIONS(1647), - [anon_sym_u8_SQUOTE] = ACTIONS(1647), - [anon_sym_SQUOTE] = ACTIONS(1647), - [anon_sym_L_DQUOTE] = ACTIONS(1647), - [anon_sym_u_DQUOTE] = ACTIONS(1647), - [anon_sym_U_DQUOTE] = ACTIONS(1647), - [anon_sym_u8_DQUOTE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym_true] = ACTIONS(1645), - [sym_false] = ACTIONS(1645), - [sym_null] = ACTIONS(1645), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1645), - [anon_sym_virtual] = ACTIONS(1645), - [anon_sym_explicit] = ACTIONS(1645), - [sym_auto] = ACTIONS(1645), - [anon_sym_typename] = ACTIONS(1645), - [anon_sym_template] = ACTIONS(1645), - [anon_sym_operator] = ACTIONS(1645), - [anon_sym_delete] = ACTIONS(1645), - [anon_sym_throw] = ACTIONS(1645), - [anon_sym_namespace] = ACTIONS(1645), - [anon_sym_using] = ACTIONS(1645), - [anon_sym_static_assert] = ACTIONS(1645), - [anon_sym_co_return] = ACTIONS(1645), - [anon_sym_co_yield] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1645), - [anon_sym_co_await] = ACTIONS(1645), - [anon_sym_new] = ACTIONS(1645), - [sym_this] = ACTIONS(1645), - [sym_nullptr] = ACTIONS(1645), - [sym_alone_macro] = ACTIONS(1647), - [aux_sym_alone_macro_call_token1] = ACTIONS(1645), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_FORWARD] = ACTIONS(1645), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1645), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_PS_GET] = ACTIONS(1645), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1645), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1645), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1645), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1645), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1645), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1645), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1645), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1645), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1645), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1645), - [anon_sym_MOZ_COLD] = ACTIONS(1645), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1645), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1645), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1645), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1645), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1645), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1645), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1645), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1645), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1645), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1645), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1645), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1645), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1645), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1645), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1645), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1645), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1645), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1645), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1645), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1645), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_NONNULL] = ACTIONS(1645), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1645), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1645), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1645), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1645), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1645), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_NORETURN] = ACTIONS(1645), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1645), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1645), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1645), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1645), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1645), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1645), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1645), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1645), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1645), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1645), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1645), - [anon_sym_MOZ_RAII] = ACTIONS(1645), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1645), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1645), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1645), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1645), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1645), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1645), - [sym_raw_string_literal] = ACTIONS(1647), - }, - [355] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [356] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [357] = { - [sym_identifier] = ACTIONS(1653), - [aux_sym_preproc_include_token1] = ACTIONS(1653), - [aux_sym_preproc_def_token1] = ACTIONS(1653), - [aux_sym_preproc_if_token1] = ACTIONS(1653), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1653), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1653), - [sym_preproc_directive] = ACTIONS(1653), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_typedef] = ACTIONS(1653), - [anon_sym_extern] = ACTIONS(1653), - [anon_sym___attribute__] = ACTIONS(1653), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1655), - [anon_sym___declspec] = ACTIONS(1653), - [anon_sym___based] = ACTIONS(1653), - [anon_sym___cdecl] = ACTIONS(1653), - [anon_sym___clrcall] = ACTIONS(1653), - [anon_sym___stdcall] = ACTIONS(1653), - [anon_sym___fastcall] = ACTIONS(1653), - [anon_sym___thiscall] = ACTIONS(1653), - [anon_sym___vectorcall] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1653), - [anon_sym_register] = ACTIONS(1653), - [anon_sym_inline] = ACTIONS(1653), - [anon_sym_thread_local] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_volatile] = ACTIONS(1653), - [anon_sym_restrict] = ACTIONS(1653), - [anon_sym__Atomic] = ACTIONS(1653), - [anon_sym_mutable] = ACTIONS(1653), - [anon_sym_constexpr] = ACTIONS(1653), - [anon_sym_signed] = ACTIONS(1653), - [anon_sym_unsigned] = ACTIONS(1653), - [anon_sym_long] = ACTIONS(1653), - [anon_sym_short] = ACTIONS(1653), - [sym_primitive_type] = ACTIONS(1653), - [anon_sym_enum] = ACTIONS(1653), - [anon_sym_class] = ACTIONS(1653), - [anon_sym_struct] = ACTIONS(1653), - [anon_sym_union] = ACTIONS(1653), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_else] = ACTIONS(1977), - [anon_sym_switch] = ACTIONS(1653), - [anon_sym_case] = ACTIONS(1653), - [anon_sym_default] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_do] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_goto] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_sizeof] = ACTIONS(1653), - [sym_number_literal] = ACTIONS(1655), - [anon_sym_L_SQUOTE] = ACTIONS(1655), - [anon_sym_u_SQUOTE] = ACTIONS(1655), - [anon_sym_U_SQUOTE] = ACTIONS(1655), - [anon_sym_u8_SQUOTE] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [anon_sym_L_DQUOTE] = ACTIONS(1655), - [anon_sym_u_DQUOTE] = ACTIONS(1655), - [anon_sym_U_DQUOTE] = ACTIONS(1655), - [anon_sym_u8_DQUOTE] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1653), - [anon_sym_virtual] = ACTIONS(1653), - [anon_sym_explicit] = ACTIONS(1653), - [sym_auto] = ACTIONS(1653), - [anon_sym_typename] = ACTIONS(1653), - [anon_sym_template] = ACTIONS(1653), - [anon_sym_operator] = ACTIONS(1653), - [anon_sym_delete] = ACTIONS(1653), - [anon_sym_throw] = ACTIONS(1653), - [anon_sym_namespace] = ACTIONS(1653), - [anon_sym_using] = ACTIONS(1653), - [anon_sym_static_assert] = ACTIONS(1653), - [anon_sym_co_return] = ACTIONS(1653), - [anon_sym_co_yield] = ACTIONS(1653), - [anon_sym_try] = ACTIONS(1653), - [anon_sym_co_await] = ACTIONS(1653), - [anon_sym_new] = ACTIONS(1653), - [sym_this] = ACTIONS(1653), - [sym_nullptr] = ACTIONS(1653), - [sym_alone_macro] = ACTIONS(1655), - [aux_sym_alone_macro_call_token1] = ACTIONS(1653), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_FORWARD] = ACTIONS(1653), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1653), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_PS_GET] = ACTIONS(1653), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1653), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1653), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1653), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1653), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1653), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1653), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1653), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1653), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1653), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1653), - [anon_sym_MOZ_COLD] = ACTIONS(1653), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1653), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1653), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1653), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1653), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1653), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1653), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1653), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1653), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1653), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1653), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1653), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1653), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1653), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1653), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1653), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1653), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1653), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1653), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1653), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1653), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_NONNULL] = ACTIONS(1653), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1653), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1653), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1653), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1653), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1653), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_NORETURN] = ACTIONS(1653), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1653), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1653), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1653), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1653), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1653), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1653), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1653), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1653), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1653), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1653), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1653), - [anon_sym_MOZ_RAII] = ACTIONS(1653), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1653), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1653), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1653), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1653), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1653), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1653), - [sym_raw_string_literal] = ACTIONS(1655), - }, - [358] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [359] = { - [sym_identifier] = ACTIONS(1663), - [aux_sym_preproc_include_token1] = ACTIONS(1663), - [aux_sym_preproc_def_token1] = ACTIONS(1663), - [aux_sym_preproc_if_token1] = ACTIONS(1663), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1663), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1663), - [sym_preproc_directive] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1665), - [anon_sym_TILDE] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_AMP_AMP] = ACTIONS(1665), - [anon_sym_AMP] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_typedef] = ACTIONS(1663), - [anon_sym_extern] = ACTIONS(1663), - [anon_sym___attribute__] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1665), - [anon_sym___declspec] = ACTIONS(1663), - [anon_sym___based] = ACTIONS(1663), - [anon_sym___cdecl] = ACTIONS(1663), - [anon_sym___clrcall] = ACTIONS(1663), - [anon_sym___stdcall] = ACTIONS(1663), - [anon_sym___fastcall] = ACTIONS(1663), - [anon_sym___thiscall] = ACTIONS(1663), - [anon_sym___vectorcall] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1665), - [anon_sym_RBRACE] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_static] = ACTIONS(1663), - [anon_sym_register] = ACTIONS(1663), - [anon_sym_inline] = ACTIONS(1663), - [anon_sym_thread_local] = ACTIONS(1663), - [anon_sym_const] = ACTIONS(1663), - [anon_sym_volatile] = ACTIONS(1663), - [anon_sym_restrict] = ACTIONS(1663), - [anon_sym__Atomic] = ACTIONS(1663), - [anon_sym_mutable] = ACTIONS(1663), - [anon_sym_constexpr] = ACTIONS(1663), - [anon_sym_signed] = ACTIONS(1663), - [anon_sym_unsigned] = ACTIONS(1663), - [anon_sym_long] = ACTIONS(1663), - [anon_sym_short] = ACTIONS(1663), - [sym_primitive_type] = ACTIONS(1663), - [anon_sym_enum] = ACTIONS(1663), - [anon_sym_class] = ACTIONS(1663), - [anon_sym_struct] = ACTIONS(1663), - [anon_sym_union] = ACTIONS(1663), - [anon_sym_if] = ACTIONS(1663), - [anon_sym_else] = ACTIONS(1663), - [anon_sym_switch] = ACTIONS(1663), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1663), - [anon_sym_while] = ACTIONS(1663), - [anon_sym_do] = ACTIONS(1663), - [anon_sym_for] = ACTIONS(1663), - [anon_sym_return] = ACTIONS(1663), - [anon_sym_break] = ACTIONS(1663), - [anon_sym_continue] = ACTIONS(1663), - [anon_sym_goto] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1665), - [anon_sym_PLUS_PLUS] = ACTIONS(1665), - [anon_sym_sizeof] = ACTIONS(1663), - [sym_number_literal] = ACTIONS(1665), - [anon_sym_L_SQUOTE] = ACTIONS(1665), - [anon_sym_u_SQUOTE] = ACTIONS(1665), - [anon_sym_U_SQUOTE] = ACTIONS(1665), - [anon_sym_u8_SQUOTE] = ACTIONS(1665), - [anon_sym_SQUOTE] = ACTIONS(1665), - [anon_sym_L_DQUOTE] = ACTIONS(1665), - [anon_sym_u_DQUOTE] = ACTIONS(1665), - [anon_sym_U_DQUOTE] = ACTIONS(1665), - [anon_sym_u8_DQUOTE] = ACTIONS(1665), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_true] = ACTIONS(1663), - [sym_false] = ACTIONS(1663), - [sym_null] = ACTIONS(1663), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1663), - [anon_sym_virtual] = ACTIONS(1663), - [anon_sym_explicit] = ACTIONS(1663), - [sym_auto] = ACTIONS(1663), - [anon_sym_typename] = ACTIONS(1663), - [anon_sym_template] = ACTIONS(1663), - [anon_sym_operator] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_throw] = ACTIONS(1663), - [anon_sym_namespace] = ACTIONS(1663), - [anon_sym_using] = ACTIONS(1663), - [anon_sym_static_assert] = ACTIONS(1663), - [anon_sym_co_return] = ACTIONS(1663), - [anon_sym_co_yield] = ACTIONS(1663), - [anon_sym_try] = ACTIONS(1663), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1663), - [sym_this] = ACTIONS(1663), - [sym_nullptr] = ACTIONS(1663), - [sym_alone_macro] = ACTIONS(1665), - [aux_sym_alone_macro_call_token1] = ACTIONS(1663), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_FORWARD] = ACTIONS(1663), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1663), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_PS_GET] = ACTIONS(1663), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1663), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1663), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1663), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1663), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1663), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1663), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1663), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1663), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1663), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1663), - [anon_sym_MOZ_COLD] = ACTIONS(1663), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1663), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1663), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1663), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1663), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1663), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1663), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1663), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1663), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1663), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1663), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1663), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1663), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1663), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1663), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1663), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1663), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1663), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1663), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1663), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1663), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_NONNULL] = ACTIONS(1663), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1663), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1663), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1663), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1663), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1663), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_NORETURN] = ACTIONS(1663), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1663), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1663), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1663), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1663), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1663), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1663), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1663), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1663), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1663), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1663), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1663), - [anon_sym_MOZ_RAII] = ACTIONS(1663), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1663), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1663), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1663), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1663), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1663), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1663), - [sym_raw_string_literal] = ACTIONS(1665), - }, - [360] = { - [sym_identifier] = ACTIONS(1609), - [aux_sym_preproc_include_token1] = ACTIONS(1609), - [aux_sym_preproc_def_token1] = ACTIONS(1609), - [aux_sym_preproc_if_token1] = ACTIONS(1609), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1609), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1609), - [sym_preproc_directive] = ACTIONS(1609), - [anon_sym_LPAREN2] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_AMP_AMP] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1611), - [anon_sym_typedef] = ACTIONS(1609), - [anon_sym_extern] = ACTIONS(1609), - [anon_sym___attribute__] = ACTIONS(1609), - [anon_sym_COLON_COLON] = ACTIONS(1611), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1611), - [anon_sym___declspec] = ACTIONS(1609), - [anon_sym___based] = ACTIONS(1609), - [anon_sym___cdecl] = ACTIONS(1609), - [anon_sym___clrcall] = ACTIONS(1609), - [anon_sym___stdcall] = ACTIONS(1609), - [anon_sym___fastcall] = ACTIONS(1609), - [anon_sym___thiscall] = ACTIONS(1609), - [anon_sym___vectorcall] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_RBRACE] = ACTIONS(1611), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_static] = ACTIONS(1609), - [anon_sym_register] = ACTIONS(1609), - [anon_sym_inline] = ACTIONS(1609), - [anon_sym_thread_local] = ACTIONS(1609), - [anon_sym_const] = ACTIONS(1609), - [anon_sym_volatile] = ACTIONS(1609), - [anon_sym_restrict] = ACTIONS(1609), - [anon_sym__Atomic] = ACTIONS(1609), - [anon_sym_mutable] = ACTIONS(1609), - [anon_sym_constexpr] = ACTIONS(1609), - [anon_sym_signed] = ACTIONS(1609), - [anon_sym_unsigned] = ACTIONS(1609), - [anon_sym_long] = ACTIONS(1609), - [anon_sym_short] = ACTIONS(1609), - [sym_primitive_type] = ACTIONS(1609), - [anon_sym_enum] = ACTIONS(1609), - [anon_sym_class] = ACTIONS(1609), - [anon_sym_struct] = ACTIONS(1609), - [anon_sym_union] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1609), - [anon_sym_else] = ACTIONS(1609), - [anon_sym_switch] = ACTIONS(1609), - [anon_sym_case] = ACTIONS(1609), - [anon_sym_default] = ACTIONS(1609), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_do] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_break] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [anon_sym_goto] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_sizeof] = ACTIONS(1609), - [sym_number_literal] = ACTIONS(1611), - [anon_sym_L_SQUOTE] = ACTIONS(1611), - [anon_sym_u_SQUOTE] = ACTIONS(1611), - [anon_sym_U_SQUOTE] = ACTIONS(1611), - [anon_sym_u8_SQUOTE] = ACTIONS(1611), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_L_DQUOTE] = ACTIONS(1611), - [anon_sym_u_DQUOTE] = ACTIONS(1611), - [anon_sym_U_DQUOTE] = ACTIONS(1611), - [anon_sym_u8_DQUOTE] = ACTIONS(1611), - [anon_sym_DQUOTE] = ACTIONS(1611), - [sym_true] = ACTIONS(1609), - [sym_false] = ACTIONS(1609), - [sym_null] = ACTIONS(1609), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1609), - [anon_sym_virtual] = ACTIONS(1609), - [anon_sym_explicit] = ACTIONS(1609), - [sym_auto] = ACTIONS(1609), - [anon_sym_typename] = ACTIONS(1609), - [anon_sym_template] = ACTIONS(1609), - [anon_sym_operator] = ACTIONS(1609), - [anon_sym_delete] = ACTIONS(1609), - [anon_sym_throw] = ACTIONS(1609), - [anon_sym_namespace] = ACTIONS(1609), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_static_assert] = ACTIONS(1609), - [anon_sym_co_return] = ACTIONS(1609), - [anon_sym_co_yield] = ACTIONS(1609), - [anon_sym_try] = ACTIONS(1609), - [anon_sym_co_await] = ACTIONS(1609), - [anon_sym_new] = ACTIONS(1609), - [sym_this] = ACTIONS(1609), - [sym_nullptr] = ACTIONS(1609), - [sym_alone_macro] = ACTIONS(1611), - [aux_sym_alone_macro_call_token1] = ACTIONS(1609), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_FORWARD] = ACTIONS(1609), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1609), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_PS_GET] = ACTIONS(1609), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1609), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1609), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1609), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1609), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1609), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1609), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1609), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1609), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1609), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1609), - [anon_sym_MOZ_COLD] = ACTIONS(1609), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1609), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1609), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1609), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1609), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1609), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1609), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1609), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1609), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1609), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1609), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1609), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1609), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1609), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1609), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1609), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1609), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1609), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1609), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1609), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1609), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_NONNULL] = ACTIONS(1609), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1609), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1609), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1609), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1609), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1609), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_NORETURN] = ACTIONS(1609), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1609), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1609), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1609), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1609), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1609), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1609), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1609), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1609), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1609), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1609), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1609), - [anon_sym_MOZ_RAII] = ACTIONS(1609), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1609), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1609), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1609), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1609), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1609), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1609), - [sym_raw_string_literal] = ACTIONS(1611), - }, - [361] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [362] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [363] = { - [sym_identifier] = ACTIONS(1675), - [aux_sym_preproc_include_token1] = ACTIONS(1675), - [aux_sym_preproc_def_token1] = ACTIONS(1675), - [aux_sym_preproc_if_token1] = ACTIONS(1675), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1675), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1675), - [sym_preproc_directive] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1677), - [anon_sym_BANG] = ACTIONS(1677), - [anon_sym_TILDE] = ACTIONS(1677), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1677), - [anon_sym_AMP_AMP] = ACTIONS(1677), - [anon_sym_AMP] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_typedef] = ACTIONS(1675), - [anon_sym_extern] = ACTIONS(1675), - [anon_sym___attribute__] = ACTIONS(1675), - [anon_sym_COLON_COLON] = ACTIONS(1677), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1677), - [anon_sym___declspec] = ACTIONS(1675), - [anon_sym___based] = ACTIONS(1675), - [anon_sym___cdecl] = ACTIONS(1675), - [anon_sym___clrcall] = ACTIONS(1675), - [anon_sym___stdcall] = ACTIONS(1675), - [anon_sym___fastcall] = ACTIONS(1675), - [anon_sym___thiscall] = ACTIONS(1675), - [anon_sym___vectorcall] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_RBRACE] = ACTIONS(1677), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_register] = ACTIONS(1675), - [anon_sym_inline] = ACTIONS(1675), - [anon_sym_thread_local] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(1675), - [anon_sym_volatile] = ACTIONS(1675), - [anon_sym_restrict] = ACTIONS(1675), - [anon_sym__Atomic] = ACTIONS(1675), - [anon_sym_mutable] = ACTIONS(1675), - [anon_sym_constexpr] = ACTIONS(1675), - [anon_sym_signed] = ACTIONS(1675), - [anon_sym_unsigned] = ACTIONS(1675), - [anon_sym_long] = ACTIONS(1675), - [anon_sym_short] = ACTIONS(1675), - [sym_primitive_type] = ACTIONS(1675), - [anon_sym_enum] = ACTIONS(1675), - [anon_sym_class] = ACTIONS(1675), - [anon_sym_struct] = ACTIONS(1675), - [anon_sym_union] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1675), - [anon_sym_else] = ACTIONS(1675), - [anon_sym_switch] = ACTIONS(1675), - [anon_sym_case] = ACTIONS(1675), - [anon_sym_default] = ACTIONS(1675), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_do] = ACTIONS(1675), - [anon_sym_for] = ACTIONS(1675), - [anon_sym_return] = ACTIONS(1675), - [anon_sym_break] = ACTIONS(1675), - [anon_sym_continue] = ACTIONS(1675), - [anon_sym_goto] = ACTIONS(1675), - [anon_sym_DASH_DASH] = ACTIONS(1677), - [anon_sym_PLUS_PLUS] = ACTIONS(1677), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1677), - [anon_sym_u_SQUOTE] = ACTIONS(1677), - [anon_sym_U_SQUOTE] = ACTIONS(1677), - [anon_sym_u8_SQUOTE] = ACTIONS(1677), - [anon_sym_SQUOTE] = ACTIONS(1677), - [anon_sym_L_DQUOTE] = ACTIONS(1677), - [anon_sym_u_DQUOTE] = ACTIONS(1677), - [anon_sym_U_DQUOTE] = ACTIONS(1677), - [anon_sym_u8_DQUOTE] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1677), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_null] = ACTIONS(1675), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1675), - [anon_sym_virtual] = ACTIONS(1675), - [anon_sym_explicit] = ACTIONS(1675), - [sym_auto] = ACTIONS(1675), - [anon_sym_typename] = ACTIONS(1675), - [anon_sym_template] = ACTIONS(1675), - [anon_sym_operator] = ACTIONS(1675), - [anon_sym_delete] = ACTIONS(1675), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1675), - [anon_sym_using] = ACTIONS(1675), - [anon_sym_static_assert] = ACTIONS(1675), - [anon_sym_co_return] = ACTIONS(1675), - [anon_sym_co_yield] = ACTIONS(1675), - [anon_sym_try] = ACTIONS(1675), - [anon_sym_co_await] = ACTIONS(1675), - [anon_sym_new] = ACTIONS(1675), - [sym_this] = ACTIONS(1675), - [sym_nullptr] = ACTIONS(1675), - [sym_alone_macro] = ACTIONS(1677), - [aux_sym_alone_macro_call_token1] = ACTIONS(1675), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_FORWARD] = ACTIONS(1675), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1675), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_PS_GET] = ACTIONS(1675), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1675), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1675), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1675), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1675), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1675), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1675), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1675), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1675), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1675), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1675), - [anon_sym_MOZ_COLD] = ACTIONS(1675), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1675), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1675), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1675), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1675), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1675), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1675), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1675), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1675), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1675), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1675), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1675), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1675), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1675), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1675), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1675), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1675), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1675), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1675), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1675), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1675), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_NONNULL] = ACTIONS(1675), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1675), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1675), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1675), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1675), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1675), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_NORETURN] = ACTIONS(1675), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1675), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1675), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1675), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1675), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1675), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1675), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1675), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1675), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1675), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1675), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1675), - [anon_sym_MOZ_RAII] = ACTIONS(1675), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1675), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1675), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1675), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1675), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1675), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1675), - [sym_raw_string_literal] = ACTIONS(1677), - }, - [364] = { - [sym_identifier] = ACTIONS(1679), - [aux_sym_preproc_include_token1] = ACTIONS(1679), - [aux_sym_preproc_def_token1] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1679), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1679), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1679), - [sym_preproc_directive] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_BANG] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1679), - [anon_sym_PLUS] = ACTIONS(1679), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_typedef] = ACTIONS(1679), - [anon_sym_extern] = ACTIONS(1679), - [anon_sym___attribute__] = ACTIONS(1679), - [anon_sym_COLON_COLON] = ACTIONS(1681), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1681), - [anon_sym___declspec] = ACTIONS(1679), - [anon_sym___based] = ACTIONS(1679), - [anon_sym___cdecl] = ACTIONS(1679), - [anon_sym___clrcall] = ACTIONS(1679), - [anon_sym___stdcall] = ACTIONS(1679), - [anon_sym___fastcall] = ACTIONS(1679), - [anon_sym___thiscall] = ACTIONS(1679), - [anon_sym___vectorcall] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1681), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_static] = ACTIONS(1679), - [anon_sym_register] = ACTIONS(1679), - [anon_sym_inline] = ACTIONS(1679), - [anon_sym_thread_local] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1679), - [anon_sym_volatile] = ACTIONS(1679), - [anon_sym_restrict] = ACTIONS(1679), - [anon_sym__Atomic] = ACTIONS(1679), - [anon_sym_mutable] = ACTIONS(1679), - [anon_sym_constexpr] = ACTIONS(1679), - [anon_sym_signed] = ACTIONS(1679), - [anon_sym_unsigned] = ACTIONS(1679), - [anon_sym_long] = ACTIONS(1679), - [anon_sym_short] = ACTIONS(1679), - [sym_primitive_type] = ACTIONS(1679), - [anon_sym_enum] = ACTIONS(1679), - [anon_sym_class] = ACTIONS(1679), - [anon_sym_struct] = ACTIONS(1679), - [anon_sym_union] = ACTIONS(1679), - [anon_sym_if] = ACTIONS(1679), - [anon_sym_else] = ACTIONS(1679), - [anon_sym_switch] = ACTIONS(1679), - [anon_sym_case] = ACTIONS(1679), - [anon_sym_default] = ACTIONS(1679), - [anon_sym_while] = ACTIONS(1679), - [anon_sym_do] = ACTIONS(1679), - [anon_sym_for] = ACTIONS(1679), - [anon_sym_return] = ACTIONS(1679), - [anon_sym_break] = ACTIONS(1679), - [anon_sym_continue] = ACTIONS(1679), - [anon_sym_goto] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1681), - [anon_sym_PLUS_PLUS] = ACTIONS(1681), - [anon_sym_sizeof] = ACTIONS(1679), - [sym_number_literal] = ACTIONS(1681), - [anon_sym_L_SQUOTE] = ACTIONS(1681), - [anon_sym_u_SQUOTE] = ACTIONS(1681), - [anon_sym_U_SQUOTE] = ACTIONS(1681), - [anon_sym_u8_SQUOTE] = ACTIONS(1681), - [anon_sym_SQUOTE] = ACTIONS(1681), - [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(1679), - [sym_false] = ACTIONS(1679), - [sym_null] = ACTIONS(1679), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1679), - [anon_sym_virtual] = ACTIONS(1679), - [anon_sym_explicit] = ACTIONS(1679), - [sym_auto] = ACTIONS(1679), - [anon_sym_typename] = ACTIONS(1679), - [anon_sym_template] = ACTIONS(1679), - [anon_sym_operator] = ACTIONS(1679), - [anon_sym_delete] = ACTIONS(1679), - [anon_sym_throw] = ACTIONS(1679), - [anon_sym_namespace] = ACTIONS(1679), - [anon_sym_using] = ACTIONS(1679), - [anon_sym_static_assert] = ACTIONS(1679), - [anon_sym_co_return] = ACTIONS(1679), - [anon_sym_co_yield] = ACTIONS(1679), - [anon_sym_try] = ACTIONS(1679), - [anon_sym_co_await] = ACTIONS(1679), - [anon_sym_new] = ACTIONS(1679), - [sym_this] = ACTIONS(1679), - [sym_nullptr] = ACTIONS(1679), - [sym_alone_macro] = ACTIONS(1681), - [aux_sym_alone_macro_call_token1] = ACTIONS(1679), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_FORWARD] = ACTIONS(1679), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1679), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_PS_GET] = ACTIONS(1679), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1679), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1679), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1679), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1679), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1679), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1679), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1679), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1679), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1679), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1679), - [anon_sym_MOZ_COLD] = ACTIONS(1679), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1679), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1679), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1679), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1679), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1679), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1679), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1679), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1679), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1679), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1679), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1679), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1679), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1679), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1679), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1679), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1679), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1679), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1679), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1679), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1679), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_NONNULL] = ACTIONS(1679), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1679), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1679), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1679), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1679), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1679), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_NORETURN] = ACTIONS(1679), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1679), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1679), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1679), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1679), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1679), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1679), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1679), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1679), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1679), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1679), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1679), - [anon_sym_MOZ_RAII] = ACTIONS(1679), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1679), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1679), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1679), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1679), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1679), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1679), - [sym_raw_string_literal] = ACTIONS(1681), - }, - [365] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [366] = { - [sym_identifier] = ACTIONS(1671), - [aux_sym_preproc_include_token1] = ACTIONS(1671), - [aux_sym_preproc_def_token1] = ACTIONS(1671), - [aux_sym_preproc_if_token1] = ACTIONS(1671), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1671), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1671), - [sym_preproc_directive] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1673), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_AMP_AMP] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_typedef] = ACTIONS(1671), - [anon_sym_extern] = ACTIONS(1671), - [anon_sym___attribute__] = ACTIONS(1671), - [anon_sym_COLON_COLON] = ACTIONS(1673), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1673), - [anon_sym___declspec] = ACTIONS(1671), - [anon_sym___based] = ACTIONS(1671), - [anon_sym___cdecl] = ACTIONS(1671), - [anon_sym___clrcall] = ACTIONS(1671), - [anon_sym___stdcall] = ACTIONS(1671), - [anon_sym___fastcall] = ACTIONS(1671), - [anon_sym___thiscall] = ACTIONS(1671), - [anon_sym___vectorcall] = ACTIONS(1671), - [anon_sym_LBRACE] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_register] = ACTIONS(1671), - [anon_sym_inline] = ACTIONS(1671), - [anon_sym_thread_local] = ACTIONS(1671), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_volatile] = ACTIONS(1671), - [anon_sym_restrict] = ACTIONS(1671), - [anon_sym__Atomic] = ACTIONS(1671), - [anon_sym_mutable] = ACTIONS(1671), - [anon_sym_constexpr] = ACTIONS(1671), - [anon_sym_signed] = ACTIONS(1671), - [anon_sym_unsigned] = ACTIONS(1671), - [anon_sym_long] = ACTIONS(1671), - [anon_sym_short] = ACTIONS(1671), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_enum] = ACTIONS(1671), - [anon_sym_class] = ACTIONS(1671), - [anon_sym_struct] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_if] = ACTIONS(1671), - [anon_sym_else] = ACTIONS(1671), - [anon_sym_switch] = ACTIONS(1671), - [anon_sym_case] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_while] = ACTIONS(1671), - [anon_sym_do] = ACTIONS(1671), - [anon_sym_for] = ACTIONS(1671), - [anon_sym_return] = ACTIONS(1671), - [anon_sym_break] = ACTIONS(1671), - [anon_sym_continue] = ACTIONS(1671), - [anon_sym_goto] = ACTIONS(1671), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1671), - [sym_number_literal] = ACTIONS(1673), - [anon_sym_L_SQUOTE] = ACTIONS(1673), - [anon_sym_u_SQUOTE] = ACTIONS(1673), - [anon_sym_U_SQUOTE] = ACTIONS(1673), - [anon_sym_u8_SQUOTE] = ACTIONS(1673), - [anon_sym_SQUOTE] = ACTIONS(1673), - [anon_sym_L_DQUOTE] = ACTIONS(1673), - [anon_sym_u_DQUOTE] = ACTIONS(1673), - [anon_sym_U_DQUOTE] = ACTIONS(1673), - [anon_sym_u8_DQUOTE] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1673), - [sym_true] = ACTIONS(1671), - [sym_false] = ACTIONS(1671), - [sym_null] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1671), - [anon_sym_virtual] = ACTIONS(1671), - [anon_sym_explicit] = ACTIONS(1671), - [sym_auto] = ACTIONS(1671), - [anon_sym_typename] = ACTIONS(1671), - [anon_sym_template] = ACTIONS(1671), - [anon_sym_operator] = ACTIONS(1671), - [anon_sym_delete] = ACTIONS(1671), - [anon_sym_throw] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1671), - [anon_sym_using] = ACTIONS(1671), - [anon_sym_static_assert] = ACTIONS(1671), - [anon_sym_co_return] = ACTIONS(1671), - [anon_sym_co_yield] = ACTIONS(1671), - [anon_sym_try] = ACTIONS(1671), - [anon_sym_co_await] = ACTIONS(1671), - [anon_sym_new] = ACTIONS(1671), - [sym_this] = ACTIONS(1671), - [sym_nullptr] = ACTIONS(1671), - [sym_alone_macro] = ACTIONS(1673), - [aux_sym_alone_macro_call_token1] = ACTIONS(1671), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_FORWARD] = ACTIONS(1671), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1671), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_PS_GET] = ACTIONS(1671), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1671), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1671), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1671), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1671), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1671), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1671), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1671), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1671), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1671), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1671), - [anon_sym_MOZ_COLD] = ACTIONS(1671), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1671), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1671), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1671), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1671), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1671), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1671), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1671), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1671), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1671), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1671), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1671), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1671), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1671), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1671), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1671), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1671), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1671), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1671), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1671), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1671), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_NONNULL] = ACTIONS(1671), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1671), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1671), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1671), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1671), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1671), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_NORETURN] = ACTIONS(1671), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1671), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1671), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1671), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1671), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1671), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1671), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1671), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1671), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1671), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1671), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1671), - [anon_sym_MOZ_RAII] = ACTIONS(1671), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1671), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1671), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1671), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1671), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1671), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1671), - [sym_raw_string_literal] = ACTIONS(1673), - }, - [367] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [368] = { - [sym_identifier] = ACTIONS(1585), - [aux_sym_preproc_include_token1] = ACTIONS(1585), - [aux_sym_preproc_def_token1] = ACTIONS(1585), - [aux_sym_preproc_if_token1] = ACTIONS(1585), - [aux_sym_preproc_if_token2] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1585), - [sym_preproc_directive] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_AMP_AMP] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_typedef] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym___attribute__] = ACTIONS(1585), - [anon_sym_COLON_COLON] = ACTIONS(1587), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1587), - [anon_sym___declspec] = ACTIONS(1585), - [anon_sym___based] = ACTIONS(1585), - [anon_sym___cdecl] = ACTIONS(1585), - [anon_sym___clrcall] = ACTIONS(1585), - [anon_sym___stdcall] = ACTIONS(1585), - [anon_sym___fastcall] = ACTIONS(1585), - [anon_sym___thiscall] = ACTIONS(1585), - [anon_sym___vectorcall] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_register] = ACTIONS(1585), - [anon_sym_inline] = ACTIONS(1585), - [anon_sym_thread_local] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_volatile] = ACTIONS(1585), - [anon_sym_restrict] = ACTIONS(1585), - [anon_sym__Atomic] = ACTIONS(1585), - [anon_sym_mutable] = ACTIONS(1585), - [anon_sym_constexpr] = ACTIONS(1585), - [anon_sym_signed] = ACTIONS(1585), - [anon_sym_unsigned] = ACTIONS(1585), - [anon_sym_long] = ACTIONS(1585), - [anon_sym_short] = ACTIONS(1585), - [sym_primitive_type] = ACTIONS(1585), - [anon_sym_enum] = ACTIONS(1585), - [anon_sym_class] = ACTIONS(1585), - [anon_sym_struct] = ACTIONS(1585), - [anon_sym_union] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_else] = ACTIONS(1585), - [anon_sym_switch] = ACTIONS(1585), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_goto] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1587), - [anon_sym_u_SQUOTE] = ACTIONS(1587), - [anon_sym_U_SQUOTE] = ACTIONS(1587), - [anon_sym_u8_SQUOTE] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1587), - [anon_sym_L_DQUOTE] = ACTIONS(1587), - [anon_sym_u_DQUOTE] = ACTIONS(1587), - [anon_sym_U_DQUOTE] = ACTIONS(1587), - [anon_sym_u8_DQUOTE] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym_true] = ACTIONS(1585), - [sym_false] = ACTIONS(1585), - [sym_null] = ACTIONS(1585), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1585), - [anon_sym_virtual] = ACTIONS(1585), - [anon_sym_explicit] = ACTIONS(1585), - [sym_auto] = ACTIONS(1585), - [anon_sym_typename] = ACTIONS(1585), - [anon_sym_template] = ACTIONS(1585), - [anon_sym_operator] = ACTIONS(1585), - [anon_sym_delete] = ACTIONS(1585), - [anon_sym_throw] = ACTIONS(1585), - [anon_sym_namespace] = ACTIONS(1585), - [anon_sym_using] = ACTIONS(1585), - [anon_sym_static_assert] = ACTIONS(1585), - [anon_sym_co_return] = ACTIONS(1585), - [anon_sym_co_yield] = ACTIONS(1585), - [anon_sym_try] = ACTIONS(1585), - [anon_sym_co_await] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1585), - [sym_this] = ACTIONS(1585), - [sym_nullptr] = ACTIONS(1585), - [sym_alone_macro] = ACTIONS(1587), - [aux_sym_alone_macro_call_token1] = ACTIONS(1585), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_FORWARD] = ACTIONS(1585), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1585), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_PS_GET] = ACTIONS(1585), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1585), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1585), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1585), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1585), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1585), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1585), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1585), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1585), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1585), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1585), - [anon_sym_MOZ_COLD] = ACTIONS(1585), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1585), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1585), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1585), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1585), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1585), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1585), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1585), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1585), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1585), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1585), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1585), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1585), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1585), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1585), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1585), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1585), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1585), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1585), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1585), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1585), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_NONNULL] = ACTIONS(1585), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1585), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1585), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1585), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1585), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1585), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_NORETURN] = ACTIONS(1585), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1585), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1585), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1585), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1585), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1585), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1585), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1585), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1585), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1585), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1585), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1585), - [anon_sym_MOZ_RAII] = ACTIONS(1585), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1585), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1585), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1585), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1585), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1585), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1585), - [sym_raw_string_literal] = ACTIONS(1587), - }, - [369] = { - [sym_identifier] = ACTIONS(1589), - [aux_sym_preproc_include_token1] = ACTIONS(1589), - [aux_sym_preproc_def_token1] = ACTIONS(1589), - [aux_sym_preproc_if_token1] = ACTIONS(1589), - [aux_sym_preproc_if_token2] = ACTIONS(1589), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1589), - [sym_preproc_directive] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1591), - [anon_sym_AMP_AMP] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_typedef] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym___attribute__] = ACTIONS(1589), - [anon_sym_COLON_COLON] = ACTIONS(1591), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1591), - [anon_sym___declspec] = ACTIONS(1589), - [anon_sym___based] = ACTIONS(1589), - [anon_sym___cdecl] = ACTIONS(1589), - [anon_sym___clrcall] = ACTIONS(1589), - [anon_sym___stdcall] = ACTIONS(1589), - [anon_sym___fastcall] = ACTIONS(1589), - [anon_sym___thiscall] = ACTIONS(1589), - [anon_sym___vectorcall] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_inline] = ACTIONS(1589), - [anon_sym_thread_local] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [anon_sym_volatile] = ACTIONS(1589), - [anon_sym_restrict] = ACTIONS(1589), - [anon_sym__Atomic] = ACTIONS(1589), - [anon_sym_mutable] = ACTIONS(1589), - [anon_sym_constexpr] = ACTIONS(1589), - [anon_sym_signed] = ACTIONS(1589), - [anon_sym_unsigned] = ACTIONS(1589), - [anon_sym_long] = ACTIONS(1589), - [anon_sym_short] = ACTIONS(1589), - [sym_primitive_type] = ACTIONS(1589), - [anon_sym_enum] = ACTIONS(1589), - [anon_sym_class] = ACTIONS(1589), - [anon_sym_struct] = ACTIONS(1589), - [anon_sym_union] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_switch] = ACTIONS(1589), - [anon_sym_case] = ACTIONS(1589), - [anon_sym_default] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_goto] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_sizeof] = ACTIONS(1589), - [sym_number_literal] = ACTIONS(1591), - [anon_sym_L_SQUOTE] = ACTIONS(1591), - [anon_sym_u_SQUOTE] = ACTIONS(1591), - [anon_sym_U_SQUOTE] = ACTIONS(1591), - [anon_sym_u8_SQUOTE] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1591), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1589), - [anon_sym_virtual] = ACTIONS(1589), - [anon_sym_explicit] = ACTIONS(1589), - [sym_auto] = ACTIONS(1589), - [anon_sym_typename] = ACTIONS(1589), - [anon_sym_template] = ACTIONS(1589), - [anon_sym_operator] = ACTIONS(1589), - [anon_sym_delete] = ACTIONS(1589), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_namespace] = ACTIONS(1589), - [anon_sym_using] = ACTIONS(1589), - [anon_sym_static_assert] = ACTIONS(1589), - [anon_sym_co_return] = ACTIONS(1589), - [anon_sym_co_yield] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_co_await] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [sym_this] = ACTIONS(1589), - [sym_nullptr] = ACTIONS(1589), - [sym_alone_macro] = ACTIONS(1591), - [aux_sym_alone_macro_call_token1] = ACTIONS(1589), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_FORWARD] = ACTIONS(1589), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1589), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_PS_GET] = ACTIONS(1589), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1589), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1589), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1589), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1589), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1589), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1589), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1589), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1589), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1589), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1589), - [anon_sym_MOZ_COLD] = ACTIONS(1589), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1589), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1589), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1589), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1589), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1589), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1589), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1589), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1589), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1589), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1589), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1589), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1589), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1589), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1589), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1589), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1589), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1589), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1589), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1589), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1589), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_NONNULL] = ACTIONS(1589), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1589), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1589), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1589), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1589), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1589), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_NORETURN] = ACTIONS(1589), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1589), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1589), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1589), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1589), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1589), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1589), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1589), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1589), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1589), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1589), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1589), - [anon_sym_MOZ_RAII] = ACTIONS(1589), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1589), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1589), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1589), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1589), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1589), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1589), - [sym_raw_string_literal] = ACTIONS(1591), - }, - [370] = { - [sym_identifier] = ACTIONS(1597), - [aux_sym_preproc_include_token1] = ACTIONS(1597), - [aux_sym_preproc_def_token1] = ACTIONS(1597), - [aux_sym_preproc_if_token1] = ACTIONS(1597), - [aux_sym_preproc_if_token2] = ACTIONS(1597), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1597), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1597), - [sym_preproc_directive] = ACTIONS(1597), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_typedef] = ACTIONS(1597), - [anon_sym_extern] = ACTIONS(1597), - [anon_sym___attribute__] = ACTIONS(1597), - [anon_sym_COLON_COLON] = ACTIONS(1599), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), - [anon_sym___declspec] = ACTIONS(1597), - [anon_sym___based] = ACTIONS(1597), - [anon_sym___cdecl] = ACTIONS(1597), - [anon_sym___clrcall] = ACTIONS(1597), - [anon_sym___stdcall] = ACTIONS(1597), - [anon_sym___fastcall] = ACTIONS(1597), - [anon_sym___thiscall] = ACTIONS(1597), - [anon_sym___vectorcall] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1597), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_register] = ACTIONS(1597), - [anon_sym_inline] = ACTIONS(1597), - [anon_sym_thread_local] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(1597), - [anon_sym_volatile] = ACTIONS(1597), - [anon_sym_restrict] = ACTIONS(1597), - [anon_sym__Atomic] = ACTIONS(1597), - [anon_sym_mutable] = ACTIONS(1597), - [anon_sym_constexpr] = ACTIONS(1597), - [anon_sym_signed] = ACTIONS(1597), - [anon_sym_unsigned] = ACTIONS(1597), - [anon_sym_long] = ACTIONS(1597), - [anon_sym_short] = ACTIONS(1597), - [sym_primitive_type] = ACTIONS(1597), - [anon_sym_enum] = ACTIONS(1597), - [anon_sym_class] = ACTIONS(1597), - [anon_sym_struct] = ACTIONS(1597), - [anon_sym_union] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_else] = ACTIONS(1597), - [anon_sym_switch] = ACTIONS(1597), - [anon_sym_case] = ACTIONS(1597), - [anon_sym_default] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_do] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_goto] = ACTIONS(1597), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_sizeof] = ACTIONS(1597), - [sym_number_literal] = ACTIONS(1599), - [anon_sym_L_SQUOTE] = ACTIONS(1599), - [anon_sym_u_SQUOTE] = ACTIONS(1599), - [anon_sym_U_SQUOTE] = ACTIONS(1599), - [anon_sym_u8_SQUOTE] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_L_DQUOTE] = ACTIONS(1599), - [anon_sym_u_DQUOTE] = ACTIONS(1599), - [anon_sym_U_DQUOTE] = ACTIONS(1599), - [anon_sym_u8_DQUOTE] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym_true] = ACTIONS(1597), - [sym_false] = ACTIONS(1597), - [sym_null] = ACTIONS(1597), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1597), - [anon_sym_virtual] = ACTIONS(1597), - [anon_sym_explicit] = ACTIONS(1597), - [sym_auto] = ACTIONS(1597), - [anon_sym_typename] = ACTIONS(1597), - [anon_sym_template] = ACTIONS(1597), - [anon_sym_operator] = ACTIONS(1597), - [anon_sym_delete] = ACTIONS(1597), - [anon_sym_throw] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_using] = ACTIONS(1597), - [anon_sym_static_assert] = ACTIONS(1597), - [anon_sym_co_return] = ACTIONS(1597), - [anon_sym_co_yield] = ACTIONS(1597), - [anon_sym_try] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1597), - [anon_sym_new] = ACTIONS(1597), - [sym_this] = ACTIONS(1597), - [sym_nullptr] = ACTIONS(1597), - [sym_alone_macro] = ACTIONS(1599), - [aux_sym_alone_macro_call_token1] = ACTIONS(1597), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_FORWARD] = ACTIONS(1597), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1597), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_PS_GET] = ACTIONS(1597), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1597), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1597), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1597), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1597), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1597), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1597), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1597), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1597), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1597), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1597), - [anon_sym_MOZ_COLD] = ACTIONS(1597), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1597), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1597), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1597), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1597), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1597), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1597), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1597), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1597), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1597), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1597), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1597), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1597), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1597), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1597), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1597), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1597), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1597), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1597), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1597), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1597), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_NONNULL] = ACTIONS(1597), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1597), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1597), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1597), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1597), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1597), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_NORETURN] = ACTIONS(1597), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1597), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1597), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1597), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1597), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1597), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1597), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1597), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1597), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1597), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1597), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1597), - [anon_sym_MOZ_RAII] = ACTIONS(1597), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1597), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1597), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1597), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1597), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1597), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1597), - [sym_raw_string_literal] = ACTIONS(1599), - }, - [371] = { - [sym_identifier] = ACTIONS(1621), - [aux_sym_preproc_include_token1] = ACTIONS(1621), - [aux_sym_preproc_def_token1] = ACTIONS(1621), - [aux_sym_preproc_if_token1] = ACTIONS(1621), - [aux_sym_preproc_if_token2] = ACTIONS(1621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1621), - [sym_preproc_directive] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_AMP_AMP] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_typedef] = ACTIONS(1621), - [anon_sym_extern] = ACTIONS(1621), - [anon_sym___attribute__] = ACTIONS(1621), - [anon_sym_COLON_COLON] = ACTIONS(1623), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1623), - [anon_sym___declspec] = ACTIONS(1621), - [anon_sym___based] = ACTIONS(1621), - [anon_sym___cdecl] = ACTIONS(1621), - [anon_sym___clrcall] = ACTIONS(1621), - [anon_sym___stdcall] = ACTIONS(1621), - [anon_sym___fastcall] = ACTIONS(1621), - [anon_sym___thiscall] = ACTIONS(1621), - [anon_sym___vectorcall] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1621), - [anon_sym_static] = ACTIONS(1621), - [anon_sym_register] = ACTIONS(1621), - [anon_sym_inline] = ACTIONS(1621), - [anon_sym_thread_local] = ACTIONS(1621), - [anon_sym_const] = ACTIONS(1621), - [anon_sym_volatile] = ACTIONS(1621), - [anon_sym_restrict] = ACTIONS(1621), - [anon_sym__Atomic] = ACTIONS(1621), - [anon_sym_mutable] = ACTIONS(1621), - [anon_sym_constexpr] = ACTIONS(1621), - [anon_sym_signed] = ACTIONS(1621), - [anon_sym_unsigned] = ACTIONS(1621), - [anon_sym_long] = ACTIONS(1621), - [anon_sym_short] = ACTIONS(1621), - [sym_primitive_type] = ACTIONS(1621), - [anon_sym_enum] = ACTIONS(1621), - [anon_sym_class] = ACTIONS(1621), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1621), - [anon_sym_else] = ACTIONS(1621), - [anon_sym_switch] = ACTIONS(1621), - [anon_sym_case] = ACTIONS(1621), - [anon_sym_default] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1621), - [anon_sym_do] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1621), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1621), - [anon_sym_continue] = ACTIONS(1621), - [anon_sym_goto] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_sizeof] = ACTIONS(1621), - [sym_number_literal] = ACTIONS(1623), - [anon_sym_L_SQUOTE] = ACTIONS(1623), - [anon_sym_u_SQUOTE] = ACTIONS(1623), - [anon_sym_U_SQUOTE] = ACTIONS(1623), - [anon_sym_u8_SQUOTE] = ACTIONS(1623), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_L_DQUOTE] = ACTIONS(1623), - [anon_sym_u_DQUOTE] = ACTIONS(1623), - [anon_sym_U_DQUOTE] = ACTIONS(1623), - [anon_sym_u8_DQUOTE] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym_true] = ACTIONS(1621), - [sym_false] = ACTIONS(1621), - [sym_null] = ACTIONS(1621), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1621), - [anon_sym_virtual] = ACTIONS(1621), - [anon_sym_explicit] = ACTIONS(1621), - [sym_auto] = ACTIONS(1621), - [anon_sym_typename] = ACTIONS(1621), - [anon_sym_template] = ACTIONS(1621), - [anon_sym_operator] = ACTIONS(1621), - [anon_sym_delete] = ACTIONS(1621), - [anon_sym_throw] = ACTIONS(1621), - [anon_sym_namespace] = ACTIONS(1621), - [anon_sym_using] = ACTIONS(1621), - [anon_sym_static_assert] = ACTIONS(1621), - [anon_sym_co_return] = ACTIONS(1621), - [anon_sym_co_yield] = ACTIONS(1621), - [anon_sym_try] = ACTIONS(1621), - [anon_sym_co_await] = ACTIONS(1621), - [anon_sym_new] = ACTIONS(1621), - [sym_this] = ACTIONS(1621), - [sym_nullptr] = ACTIONS(1621), - [sym_alone_macro] = ACTIONS(1623), - [aux_sym_alone_macro_call_token1] = ACTIONS(1621), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_FORWARD] = ACTIONS(1621), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1621), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_PS_GET] = ACTIONS(1621), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1621), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1621), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1621), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1621), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1621), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1621), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1621), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1621), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1621), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1621), - [anon_sym_MOZ_COLD] = ACTIONS(1621), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1621), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1621), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1621), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1621), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1621), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1621), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1621), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1621), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1621), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1621), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1621), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1621), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1621), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1621), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1621), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1621), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1621), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1621), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1621), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1621), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_NONNULL] = ACTIONS(1621), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1621), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1621), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1621), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1621), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1621), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_NORETURN] = ACTIONS(1621), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1621), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1621), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1621), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1621), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1621), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1621), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1621), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1621), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1621), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1621), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1621), - [anon_sym_MOZ_RAII] = ACTIONS(1621), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1621), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1621), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1621), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1621), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1621), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1621), - [sym_raw_string_literal] = ACTIONS(1623), - }, - [372] = { - [sym_identifier] = ACTIONS(1629), - [aux_sym_preproc_include_token1] = ACTIONS(1629), - [aux_sym_preproc_def_token1] = ACTIONS(1629), - [aux_sym_preproc_if_token1] = ACTIONS(1629), - [aux_sym_preproc_if_token2] = ACTIONS(1629), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1629), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1629), - [sym_preproc_directive] = ACTIONS(1629), - [anon_sym_LPAREN2] = ACTIONS(1631), - [anon_sym_BANG] = ACTIONS(1631), - [anon_sym_TILDE] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_AMP_AMP] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1629), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_typedef] = ACTIONS(1629), - [anon_sym_extern] = ACTIONS(1629), - [anon_sym___attribute__] = ACTIONS(1629), - [anon_sym_COLON_COLON] = ACTIONS(1631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1631), - [anon_sym___declspec] = ACTIONS(1629), - [anon_sym___based] = ACTIONS(1629), - [anon_sym___cdecl] = ACTIONS(1629), - [anon_sym___clrcall] = ACTIONS(1629), - [anon_sym___stdcall] = ACTIONS(1629), - [anon_sym___fastcall] = ACTIONS(1629), - [anon_sym___thiscall] = ACTIONS(1629), - [anon_sym___vectorcall] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_static] = ACTIONS(1629), - [anon_sym_register] = ACTIONS(1629), - [anon_sym_inline] = ACTIONS(1629), - [anon_sym_thread_local] = ACTIONS(1629), - [anon_sym_const] = ACTIONS(1629), - [anon_sym_volatile] = ACTIONS(1629), - [anon_sym_restrict] = ACTIONS(1629), - [anon_sym__Atomic] = ACTIONS(1629), - [anon_sym_mutable] = ACTIONS(1629), - [anon_sym_constexpr] = ACTIONS(1629), - [anon_sym_signed] = ACTIONS(1629), - [anon_sym_unsigned] = ACTIONS(1629), - [anon_sym_long] = ACTIONS(1629), - [anon_sym_short] = ACTIONS(1629), - [sym_primitive_type] = ACTIONS(1629), - [anon_sym_enum] = ACTIONS(1629), - [anon_sym_class] = ACTIONS(1629), - [anon_sym_struct] = ACTIONS(1629), - [anon_sym_union] = ACTIONS(1629), - [anon_sym_if] = ACTIONS(1629), - [anon_sym_else] = ACTIONS(1629), - [anon_sym_switch] = ACTIONS(1629), - [anon_sym_case] = ACTIONS(1629), - [anon_sym_default] = ACTIONS(1629), - [anon_sym_while] = ACTIONS(1629), - [anon_sym_do] = ACTIONS(1629), - [anon_sym_for] = ACTIONS(1629), - [anon_sym_return] = ACTIONS(1629), - [anon_sym_break] = ACTIONS(1629), - [anon_sym_continue] = ACTIONS(1629), - [anon_sym_goto] = ACTIONS(1629), - [anon_sym_DASH_DASH] = ACTIONS(1631), - [anon_sym_PLUS_PLUS] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(1631), - [anon_sym_L_SQUOTE] = ACTIONS(1631), - [anon_sym_u_SQUOTE] = ACTIONS(1631), - [anon_sym_U_SQUOTE] = ACTIONS(1631), - [anon_sym_u8_SQUOTE] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_L_DQUOTE] = ACTIONS(1631), - [anon_sym_u_DQUOTE] = ACTIONS(1631), - [anon_sym_U_DQUOTE] = ACTIONS(1631), - [anon_sym_u8_DQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_true] = ACTIONS(1629), - [sym_false] = ACTIONS(1629), - [sym_null] = ACTIONS(1629), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1629), - [anon_sym_virtual] = ACTIONS(1629), - [anon_sym_explicit] = ACTIONS(1629), - [sym_auto] = ACTIONS(1629), - [anon_sym_typename] = ACTIONS(1629), - [anon_sym_template] = ACTIONS(1629), - [anon_sym_operator] = ACTIONS(1629), - [anon_sym_delete] = ACTIONS(1629), - [anon_sym_throw] = ACTIONS(1629), - [anon_sym_namespace] = ACTIONS(1629), - [anon_sym_using] = ACTIONS(1629), - [anon_sym_static_assert] = ACTIONS(1629), - [anon_sym_co_return] = ACTIONS(1629), - [anon_sym_co_yield] = ACTIONS(1629), - [anon_sym_try] = ACTIONS(1629), - [anon_sym_co_await] = ACTIONS(1629), - [anon_sym_new] = ACTIONS(1629), - [sym_this] = ACTIONS(1629), - [sym_nullptr] = ACTIONS(1629), - [sym_alone_macro] = ACTIONS(1631), - [aux_sym_alone_macro_call_token1] = ACTIONS(1629), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_FORWARD] = ACTIONS(1629), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1629), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_PS_GET] = ACTIONS(1629), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1629), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1629), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1629), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1629), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1629), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1629), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1629), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1629), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1629), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1629), - [anon_sym_MOZ_COLD] = ACTIONS(1629), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1629), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1629), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1629), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1629), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1629), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1629), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1629), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1629), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1629), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1629), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1629), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1629), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1629), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1629), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1629), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1629), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1629), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1629), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1629), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1629), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_NONNULL] = ACTIONS(1629), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1629), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1629), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1629), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1629), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1629), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_NORETURN] = ACTIONS(1629), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1629), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1629), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1629), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1629), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1629), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1629), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1629), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1629), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1629), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1629), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1629), - [anon_sym_MOZ_RAII] = ACTIONS(1629), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1629), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1629), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1629), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1629), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1629), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1629), - [sym_raw_string_literal] = ACTIONS(1631), - }, - [373] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [374] = { - [sym_identifier] = ACTIONS(1645), - [aux_sym_preproc_include_token1] = ACTIONS(1645), - [aux_sym_preproc_def_token1] = ACTIONS(1645), - [aux_sym_preproc_if_token1] = ACTIONS(1645), - [aux_sym_preproc_if_token2] = ACTIONS(1645), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1645), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1645), - [sym_preproc_directive] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_AMP_AMP] = ACTIONS(1647), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_typedef] = ACTIONS(1645), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym___attribute__] = ACTIONS(1645), - [anon_sym_COLON_COLON] = ACTIONS(1647), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1647), - [anon_sym___declspec] = ACTIONS(1645), - [anon_sym___based] = ACTIONS(1645), - [anon_sym___cdecl] = ACTIONS(1645), - [anon_sym___clrcall] = ACTIONS(1645), - [anon_sym___stdcall] = ACTIONS(1645), - [anon_sym___fastcall] = ACTIONS(1645), - [anon_sym___thiscall] = ACTIONS(1645), - [anon_sym___vectorcall] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_register] = ACTIONS(1645), - [anon_sym_inline] = ACTIONS(1645), - [anon_sym_thread_local] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_volatile] = ACTIONS(1645), - [anon_sym_restrict] = ACTIONS(1645), - [anon_sym__Atomic] = ACTIONS(1645), - [anon_sym_mutable] = ACTIONS(1645), - [anon_sym_constexpr] = ACTIONS(1645), - [anon_sym_signed] = ACTIONS(1645), - [anon_sym_unsigned] = ACTIONS(1645), - [anon_sym_long] = ACTIONS(1645), - [anon_sym_short] = ACTIONS(1645), - [sym_primitive_type] = ACTIONS(1645), - [anon_sym_enum] = ACTIONS(1645), - [anon_sym_class] = ACTIONS(1645), - [anon_sym_struct] = ACTIONS(1645), - [anon_sym_union] = ACTIONS(1645), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_switch] = ACTIONS(1645), - [anon_sym_case] = ACTIONS(1645), - [anon_sym_default] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_goto] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1645), - [sym_number_literal] = ACTIONS(1647), - [anon_sym_L_SQUOTE] = ACTIONS(1647), - [anon_sym_u_SQUOTE] = ACTIONS(1647), - [anon_sym_U_SQUOTE] = ACTIONS(1647), - [anon_sym_u8_SQUOTE] = ACTIONS(1647), - [anon_sym_SQUOTE] = ACTIONS(1647), - [anon_sym_L_DQUOTE] = ACTIONS(1647), - [anon_sym_u_DQUOTE] = ACTIONS(1647), - [anon_sym_U_DQUOTE] = ACTIONS(1647), - [anon_sym_u8_DQUOTE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym_true] = ACTIONS(1645), - [sym_false] = ACTIONS(1645), - [sym_null] = ACTIONS(1645), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1645), - [anon_sym_virtual] = ACTIONS(1645), - [anon_sym_explicit] = ACTIONS(1645), - [sym_auto] = ACTIONS(1645), - [anon_sym_typename] = ACTIONS(1645), - [anon_sym_template] = ACTIONS(1645), - [anon_sym_operator] = ACTIONS(1645), - [anon_sym_delete] = ACTIONS(1645), - [anon_sym_throw] = ACTIONS(1645), - [anon_sym_namespace] = ACTIONS(1645), - [anon_sym_using] = ACTIONS(1645), - [anon_sym_static_assert] = ACTIONS(1645), - [anon_sym_co_return] = ACTIONS(1645), - [anon_sym_co_yield] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1645), - [anon_sym_co_await] = ACTIONS(1645), - [anon_sym_new] = ACTIONS(1645), - [sym_this] = ACTIONS(1645), - [sym_nullptr] = ACTIONS(1645), - [sym_alone_macro] = ACTIONS(1647), - [aux_sym_alone_macro_call_token1] = ACTIONS(1645), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_FORWARD] = ACTIONS(1645), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1645), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_PS_GET] = ACTIONS(1645), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1645), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1645), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1645), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1645), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1645), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1645), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1645), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1645), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1645), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1645), - [anon_sym_MOZ_COLD] = ACTIONS(1645), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1645), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1645), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1645), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1645), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1645), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1645), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1645), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1645), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1645), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1645), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1645), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1645), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1645), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1645), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1645), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1645), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1645), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1645), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1645), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1645), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_NONNULL] = ACTIONS(1645), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1645), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1645), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1645), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1645), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1645), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_NORETURN] = ACTIONS(1645), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1645), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1645), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1645), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1645), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1645), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1645), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1645), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1645), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1645), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1645), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1645), - [anon_sym_MOZ_RAII] = ACTIONS(1645), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1645), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1645), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1645), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1645), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1645), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1645), - [sym_raw_string_literal] = ACTIONS(1647), - }, - [375] = { - [sym_identifier] = ACTIONS(1683), - [aux_sym_preproc_include_token1] = ACTIONS(1683), - [aux_sym_preproc_def_token1] = ACTIONS(1683), - [aux_sym_preproc_if_token1] = ACTIONS(1683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1683), - [sym_preproc_directive] = ACTIONS(1683), - [anon_sym_LPAREN2] = ACTIONS(1685), - [anon_sym_BANG] = ACTIONS(1685), - [anon_sym_TILDE] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_typedef] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1683), - [anon_sym___attribute__] = ACTIONS(1683), - [anon_sym_COLON_COLON] = ACTIONS(1685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1685), - [anon_sym___declspec] = ACTIONS(1683), - [anon_sym___based] = ACTIONS(1683), - [anon_sym___cdecl] = ACTIONS(1683), - [anon_sym___clrcall] = ACTIONS(1683), - [anon_sym___stdcall] = ACTIONS(1683), - [anon_sym___fastcall] = ACTIONS(1683), - [anon_sym___thiscall] = ACTIONS(1683), - [anon_sym___vectorcall] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1685), - [anon_sym_RBRACE] = ACTIONS(1685), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_static] = ACTIONS(1683), - [anon_sym_register] = ACTIONS(1683), - [anon_sym_inline] = ACTIONS(1683), - [anon_sym_thread_local] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_volatile] = ACTIONS(1683), - [anon_sym_restrict] = ACTIONS(1683), - [anon_sym__Atomic] = ACTIONS(1683), - [anon_sym_mutable] = ACTIONS(1683), - [anon_sym_constexpr] = ACTIONS(1683), - [anon_sym_signed] = ACTIONS(1683), - [anon_sym_unsigned] = ACTIONS(1683), - [anon_sym_long] = ACTIONS(1683), - [anon_sym_short] = ACTIONS(1683), - [sym_primitive_type] = ACTIONS(1683), - [anon_sym_enum] = ACTIONS(1683), - [anon_sym_class] = ACTIONS(1683), - [anon_sym_struct] = ACTIONS(1683), - [anon_sym_union] = ACTIONS(1683), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_else] = ACTIONS(1683), - [anon_sym_switch] = ACTIONS(1683), - [anon_sym_case] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1683), - [anon_sym_while] = ACTIONS(1683), - [anon_sym_do] = ACTIONS(1683), - [anon_sym_for] = ACTIONS(1683), - [anon_sym_return] = ACTIONS(1683), - [anon_sym_break] = ACTIONS(1683), - [anon_sym_continue] = ACTIONS(1683), - [anon_sym_goto] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1685), - [anon_sym_PLUS_PLUS] = ACTIONS(1685), - [anon_sym_sizeof] = ACTIONS(1683), - [sym_number_literal] = ACTIONS(1685), - [anon_sym_L_SQUOTE] = ACTIONS(1685), - [anon_sym_u_SQUOTE] = ACTIONS(1685), - [anon_sym_U_SQUOTE] = ACTIONS(1685), - [anon_sym_u8_SQUOTE] = ACTIONS(1685), - [anon_sym_SQUOTE] = ACTIONS(1685), - [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(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1683), - [anon_sym_virtual] = ACTIONS(1683), - [anon_sym_explicit] = ACTIONS(1683), - [sym_auto] = ACTIONS(1683), - [anon_sym_typename] = ACTIONS(1683), - [anon_sym_template] = ACTIONS(1683), - [anon_sym_operator] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_throw] = ACTIONS(1683), - [anon_sym_namespace] = ACTIONS(1683), - [anon_sym_using] = ACTIONS(1683), - [anon_sym_static_assert] = ACTIONS(1683), - [anon_sym_co_return] = ACTIONS(1683), - [anon_sym_co_yield] = ACTIONS(1683), - [anon_sym_try] = ACTIONS(1683), - [anon_sym_co_await] = ACTIONS(1683), - [anon_sym_new] = ACTIONS(1683), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - [sym_alone_macro] = ACTIONS(1685), - [aux_sym_alone_macro_call_token1] = ACTIONS(1683), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_FORWARD] = ACTIONS(1683), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1683), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_PS_GET] = ACTIONS(1683), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1683), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1683), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1683), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1683), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1683), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1683), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1683), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1683), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1683), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1683), - [anon_sym_MOZ_COLD] = ACTIONS(1683), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1683), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1683), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1683), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1683), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1683), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1683), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1683), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1683), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1683), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1683), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1683), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1683), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1683), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1683), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1683), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1683), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1683), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1683), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1683), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1683), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_NONNULL] = ACTIONS(1683), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1683), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1683), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1683), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1683), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1683), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_NORETURN] = ACTIONS(1683), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1683), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1683), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1683), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1683), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1683), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1683), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1683), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1683), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1683), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1683), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1683), - [anon_sym_MOZ_RAII] = ACTIONS(1683), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1683), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1683), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1683), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1683), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1683), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1683), - [sym_raw_string_literal] = ACTIONS(1685), - }, - [376] = { - [sym_identifier] = ACTIONS(1653), - [aux_sym_preproc_include_token1] = ACTIONS(1653), - [aux_sym_preproc_def_token1] = ACTIONS(1653), - [aux_sym_preproc_if_token1] = ACTIONS(1653), - [aux_sym_preproc_if_token2] = ACTIONS(1653), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1653), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1653), - [sym_preproc_directive] = ACTIONS(1653), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_typedef] = ACTIONS(1653), - [anon_sym_extern] = ACTIONS(1653), - [anon_sym___attribute__] = ACTIONS(1653), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1655), - [anon_sym___declspec] = ACTIONS(1653), - [anon_sym___based] = ACTIONS(1653), - [anon_sym___cdecl] = ACTIONS(1653), - [anon_sym___clrcall] = ACTIONS(1653), - [anon_sym___stdcall] = ACTIONS(1653), - [anon_sym___fastcall] = ACTIONS(1653), - [anon_sym___thiscall] = ACTIONS(1653), - [anon_sym___vectorcall] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1653), - [anon_sym_register] = ACTIONS(1653), - [anon_sym_inline] = ACTIONS(1653), - [anon_sym_thread_local] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_volatile] = ACTIONS(1653), - [anon_sym_restrict] = ACTIONS(1653), - [anon_sym__Atomic] = ACTIONS(1653), - [anon_sym_mutable] = ACTIONS(1653), - [anon_sym_constexpr] = ACTIONS(1653), - [anon_sym_signed] = ACTIONS(1653), - [anon_sym_unsigned] = ACTIONS(1653), - [anon_sym_long] = ACTIONS(1653), - [anon_sym_short] = ACTIONS(1653), - [sym_primitive_type] = ACTIONS(1653), - [anon_sym_enum] = ACTIONS(1653), - [anon_sym_class] = ACTIONS(1653), - [anon_sym_struct] = ACTIONS(1653), - [anon_sym_union] = ACTIONS(1653), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_else] = ACTIONS(1979), - [anon_sym_switch] = ACTIONS(1653), - [anon_sym_case] = ACTIONS(1653), - [anon_sym_default] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_do] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_goto] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_sizeof] = ACTIONS(1653), - [sym_number_literal] = ACTIONS(1655), - [anon_sym_L_SQUOTE] = ACTIONS(1655), - [anon_sym_u_SQUOTE] = ACTIONS(1655), - [anon_sym_U_SQUOTE] = ACTIONS(1655), - [anon_sym_u8_SQUOTE] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [anon_sym_L_DQUOTE] = ACTIONS(1655), - [anon_sym_u_DQUOTE] = ACTIONS(1655), - [anon_sym_U_DQUOTE] = ACTIONS(1655), - [anon_sym_u8_DQUOTE] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1653), - [anon_sym_virtual] = ACTIONS(1653), - [anon_sym_explicit] = ACTIONS(1653), - [sym_auto] = ACTIONS(1653), - [anon_sym_typename] = ACTIONS(1653), - [anon_sym_template] = ACTIONS(1653), - [anon_sym_operator] = ACTIONS(1653), - [anon_sym_delete] = ACTIONS(1653), - [anon_sym_throw] = ACTIONS(1653), - [anon_sym_namespace] = ACTIONS(1653), - [anon_sym_using] = ACTIONS(1653), - [anon_sym_static_assert] = ACTIONS(1653), - [anon_sym_co_return] = ACTIONS(1653), - [anon_sym_co_yield] = ACTIONS(1653), - [anon_sym_try] = ACTIONS(1653), - [anon_sym_co_await] = ACTIONS(1653), - [anon_sym_new] = ACTIONS(1653), - [sym_this] = ACTIONS(1653), - [sym_nullptr] = ACTIONS(1653), - [sym_alone_macro] = ACTIONS(1655), - [aux_sym_alone_macro_call_token1] = ACTIONS(1653), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_FORWARD] = ACTIONS(1653), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1653), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_PS_GET] = ACTIONS(1653), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1653), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1653), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1653), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1653), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1653), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1653), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1653), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1653), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1653), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1653), - [anon_sym_MOZ_COLD] = ACTIONS(1653), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1653), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1653), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1653), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1653), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1653), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1653), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1653), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1653), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1653), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1653), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1653), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1653), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1653), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1653), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1653), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1653), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1653), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1653), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1653), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1653), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_NONNULL] = ACTIONS(1653), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1653), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1653), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1653), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1653), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1653), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_NORETURN] = ACTIONS(1653), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1653), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1653), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1653), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1653), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1653), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1653), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1653), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1653), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1653), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1653), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1653), - [anon_sym_MOZ_RAII] = ACTIONS(1653), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1653), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1653), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1653), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1653), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1653), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1653), - [sym_raw_string_literal] = ACTIONS(1655), - }, - [377] = { - [sym_identifier] = ACTIONS(1561), - [aux_sym_preproc_include_token1] = ACTIONS(1561), - [aux_sym_preproc_def_token1] = ACTIONS(1561), - [aux_sym_preproc_if_token1] = ACTIONS(1561), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1561), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1561), - [sym_preproc_directive] = ACTIONS(1561), - [anon_sym_LPAREN2] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_AMP_AMP] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_typedef] = ACTIONS(1561), - [anon_sym_extern] = ACTIONS(1561), - [anon_sym___attribute__] = ACTIONS(1561), - [anon_sym_COLON_COLON] = ACTIONS(1563), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1563), - [anon_sym___declspec] = ACTIONS(1561), - [anon_sym___based] = ACTIONS(1561), - [anon_sym___cdecl] = ACTIONS(1561), - [anon_sym___clrcall] = ACTIONS(1561), - [anon_sym___stdcall] = ACTIONS(1561), - [anon_sym___fastcall] = ACTIONS(1561), - [anon_sym___thiscall] = ACTIONS(1561), - [anon_sym___vectorcall] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_RBRACE] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_static] = ACTIONS(1561), - [anon_sym_register] = ACTIONS(1561), - [anon_sym_inline] = ACTIONS(1561), - [anon_sym_thread_local] = ACTIONS(1561), - [anon_sym_const] = ACTIONS(1561), - [anon_sym_volatile] = ACTIONS(1561), - [anon_sym_restrict] = ACTIONS(1561), - [anon_sym__Atomic] = ACTIONS(1561), - [anon_sym_mutable] = ACTIONS(1561), - [anon_sym_constexpr] = ACTIONS(1561), - [anon_sym_signed] = ACTIONS(1561), - [anon_sym_unsigned] = ACTIONS(1561), - [anon_sym_long] = ACTIONS(1561), - [anon_sym_short] = ACTIONS(1561), - [sym_primitive_type] = ACTIONS(1561), - [anon_sym_enum] = ACTIONS(1561), - [anon_sym_class] = ACTIONS(1561), - [anon_sym_struct] = ACTIONS(1561), - [anon_sym_union] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1561), - [anon_sym_else] = ACTIONS(1561), - [anon_sym_switch] = ACTIONS(1561), - [anon_sym_case] = ACTIONS(1561), - [anon_sym_default] = ACTIONS(1561), - [anon_sym_while] = ACTIONS(1561), - [anon_sym_do] = ACTIONS(1561), - [anon_sym_for] = ACTIONS(1561), - [anon_sym_return] = ACTIONS(1561), - [anon_sym_break] = ACTIONS(1561), - [anon_sym_continue] = ACTIONS(1561), - [anon_sym_goto] = ACTIONS(1561), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_sizeof] = ACTIONS(1561), - [sym_number_literal] = ACTIONS(1563), - [anon_sym_L_SQUOTE] = ACTIONS(1563), - [anon_sym_u_SQUOTE] = ACTIONS(1563), - [anon_sym_U_SQUOTE] = ACTIONS(1563), - [anon_sym_u8_SQUOTE] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_L_DQUOTE] = ACTIONS(1563), - [anon_sym_u_DQUOTE] = ACTIONS(1563), - [anon_sym_U_DQUOTE] = ACTIONS(1563), - [anon_sym_u8_DQUOTE] = ACTIONS(1563), - [anon_sym_DQUOTE] = ACTIONS(1563), - [sym_true] = ACTIONS(1561), - [sym_false] = ACTIONS(1561), - [sym_null] = ACTIONS(1561), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1561), - [anon_sym_virtual] = ACTIONS(1561), - [anon_sym_explicit] = ACTIONS(1561), - [sym_auto] = ACTIONS(1561), - [anon_sym_typename] = ACTIONS(1561), - [anon_sym_template] = ACTIONS(1561), - [anon_sym_operator] = ACTIONS(1561), - [anon_sym_delete] = ACTIONS(1561), - [anon_sym_throw] = ACTIONS(1561), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_using] = ACTIONS(1561), - [anon_sym_static_assert] = ACTIONS(1561), - [anon_sym_co_return] = ACTIONS(1561), - [anon_sym_co_yield] = ACTIONS(1561), - [anon_sym_try] = ACTIONS(1561), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1561), - [sym_this] = ACTIONS(1561), - [sym_nullptr] = ACTIONS(1561), - [sym_alone_macro] = ACTIONS(1563), - [aux_sym_alone_macro_call_token1] = ACTIONS(1561), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_FORWARD] = ACTIONS(1561), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1561), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_PS_GET] = ACTIONS(1561), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1561), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1561), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1561), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1561), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1561), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1561), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1561), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1561), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1561), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1561), - [anon_sym_MOZ_COLD] = ACTIONS(1561), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1561), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1561), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1561), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1561), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1561), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1561), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1561), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1561), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1561), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1561), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1561), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1561), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1561), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1561), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1561), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1561), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1561), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1561), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1561), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1561), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_NONNULL] = ACTIONS(1561), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1561), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1561), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1561), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1561), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1561), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_NORETURN] = ACTIONS(1561), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1561), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1561), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1561), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1561), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1561), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1561), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1561), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1561), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1561), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1561), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1561), - [anon_sym_MOZ_RAII] = ACTIONS(1561), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1561), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1561), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1561), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1561), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1561), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1561), - [sym_raw_string_literal] = ACTIONS(1563), - }, - [378] = { - [sym_identifier] = ACTIONS(1663), - [aux_sym_preproc_include_token1] = ACTIONS(1663), - [aux_sym_preproc_def_token1] = ACTIONS(1663), - [aux_sym_preproc_if_token1] = ACTIONS(1663), - [aux_sym_preproc_if_token2] = ACTIONS(1663), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1663), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1663), - [sym_preproc_directive] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1665), - [anon_sym_TILDE] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_AMP_AMP] = ACTIONS(1665), - [anon_sym_AMP] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_typedef] = ACTIONS(1663), - [anon_sym_extern] = ACTIONS(1663), - [anon_sym___attribute__] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1665), - [anon_sym___declspec] = ACTIONS(1663), - [anon_sym___based] = ACTIONS(1663), - [anon_sym___cdecl] = ACTIONS(1663), - [anon_sym___clrcall] = ACTIONS(1663), - [anon_sym___stdcall] = ACTIONS(1663), - [anon_sym___fastcall] = ACTIONS(1663), - [anon_sym___thiscall] = ACTIONS(1663), - [anon_sym___vectorcall] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_static] = ACTIONS(1663), - [anon_sym_register] = ACTIONS(1663), - [anon_sym_inline] = ACTIONS(1663), - [anon_sym_thread_local] = ACTIONS(1663), - [anon_sym_const] = ACTIONS(1663), - [anon_sym_volatile] = ACTIONS(1663), - [anon_sym_restrict] = ACTIONS(1663), - [anon_sym__Atomic] = ACTIONS(1663), - [anon_sym_mutable] = ACTIONS(1663), - [anon_sym_constexpr] = ACTIONS(1663), - [anon_sym_signed] = ACTIONS(1663), - [anon_sym_unsigned] = ACTIONS(1663), - [anon_sym_long] = ACTIONS(1663), - [anon_sym_short] = ACTIONS(1663), - [sym_primitive_type] = ACTIONS(1663), - [anon_sym_enum] = ACTIONS(1663), - [anon_sym_class] = ACTIONS(1663), - [anon_sym_struct] = ACTIONS(1663), - [anon_sym_union] = ACTIONS(1663), - [anon_sym_if] = ACTIONS(1663), - [anon_sym_else] = ACTIONS(1663), - [anon_sym_switch] = ACTIONS(1663), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1663), - [anon_sym_while] = ACTIONS(1663), - [anon_sym_do] = ACTIONS(1663), - [anon_sym_for] = ACTIONS(1663), - [anon_sym_return] = ACTIONS(1663), - [anon_sym_break] = ACTIONS(1663), - [anon_sym_continue] = ACTIONS(1663), - [anon_sym_goto] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1665), - [anon_sym_PLUS_PLUS] = ACTIONS(1665), - [anon_sym_sizeof] = ACTIONS(1663), - [sym_number_literal] = ACTIONS(1665), - [anon_sym_L_SQUOTE] = ACTIONS(1665), - [anon_sym_u_SQUOTE] = ACTIONS(1665), - [anon_sym_U_SQUOTE] = ACTIONS(1665), - [anon_sym_u8_SQUOTE] = ACTIONS(1665), - [anon_sym_SQUOTE] = ACTIONS(1665), - [anon_sym_L_DQUOTE] = ACTIONS(1665), - [anon_sym_u_DQUOTE] = ACTIONS(1665), - [anon_sym_U_DQUOTE] = ACTIONS(1665), - [anon_sym_u8_DQUOTE] = ACTIONS(1665), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_true] = ACTIONS(1663), - [sym_false] = ACTIONS(1663), - [sym_null] = ACTIONS(1663), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1663), - [anon_sym_virtual] = ACTIONS(1663), - [anon_sym_explicit] = ACTIONS(1663), - [sym_auto] = ACTIONS(1663), - [anon_sym_typename] = ACTIONS(1663), - [anon_sym_template] = ACTIONS(1663), - [anon_sym_operator] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_throw] = ACTIONS(1663), - [anon_sym_namespace] = ACTIONS(1663), - [anon_sym_using] = ACTIONS(1663), - [anon_sym_static_assert] = ACTIONS(1663), - [anon_sym_co_return] = ACTIONS(1663), - [anon_sym_co_yield] = ACTIONS(1663), - [anon_sym_try] = ACTIONS(1663), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1663), - [sym_this] = ACTIONS(1663), - [sym_nullptr] = ACTIONS(1663), - [sym_alone_macro] = ACTIONS(1665), - [aux_sym_alone_macro_call_token1] = ACTIONS(1663), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_FORWARD] = ACTIONS(1663), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1663), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_PS_GET] = ACTIONS(1663), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1663), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1663), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1663), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1663), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1663), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1663), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1663), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1663), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1663), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1663), - [anon_sym_MOZ_COLD] = ACTIONS(1663), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1663), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1663), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1663), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1663), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1663), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1663), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1663), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1663), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1663), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1663), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1663), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1663), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1663), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1663), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1663), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1663), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1663), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1663), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1663), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1663), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_NONNULL] = ACTIONS(1663), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1663), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1663), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1663), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1663), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1663), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_NORETURN] = ACTIONS(1663), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1663), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1663), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1663), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1663), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1663), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1663), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1663), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1663), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1663), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1663), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1663), - [anon_sym_MOZ_RAII] = ACTIONS(1663), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1663), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1663), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1663), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1663), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1663), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1663), - [sym_raw_string_literal] = ACTIONS(1665), - }, - [379] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [380] = { - [sym_identifier] = ACTIONS(1687), - [aux_sym_preproc_include_token1] = ACTIONS(1687), - [aux_sym_preproc_def_token1] = ACTIONS(1687), - [aux_sym_preproc_if_token1] = ACTIONS(1687), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1687), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1687), - [sym_preproc_directive] = ACTIONS(1687), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_AMP_AMP] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_typedef] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(1687), - [anon_sym___attribute__] = ACTIONS(1687), - [anon_sym_COLON_COLON] = ACTIONS(1689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1689), - [anon_sym___declspec] = ACTIONS(1687), - [anon_sym___based] = ACTIONS(1687), - [anon_sym___cdecl] = ACTIONS(1687), - [anon_sym___clrcall] = ACTIONS(1687), - [anon_sym___stdcall] = ACTIONS(1687), - [anon_sym___fastcall] = ACTIONS(1687), - [anon_sym___thiscall] = ACTIONS(1687), - [anon_sym___vectorcall] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1689), - [anon_sym_RBRACE] = ACTIONS(1689), - [anon_sym_LBRACK] = ACTIONS(1687), - [anon_sym_static] = ACTIONS(1687), - [anon_sym_register] = ACTIONS(1687), - [anon_sym_inline] = ACTIONS(1687), - [anon_sym_thread_local] = ACTIONS(1687), - [anon_sym_const] = ACTIONS(1687), - [anon_sym_volatile] = ACTIONS(1687), - [anon_sym_restrict] = ACTIONS(1687), - [anon_sym__Atomic] = ACTIONS(1687), - [anon_sym_mutable] = ACTIONS(1687), - [anon_sym_constexpr] = ACTIONS(1687), - [anon_sym_signed] = ACTIONS(1687), - [anon_sym_unsigned] = ACTIONS(1687), - [anon_sym_long] = ACTIONS(1687), - [anon_sym_short] = ACTIONS(1687), - [sym_primitive_type] = ACTIONS(1687), - [anon_sym_enum] = ACTIONS(1687), - [anon_sym_class] = ACTIONS(1687), - [anon_sym_struct] = ACTIONS(1687), - [anon_sym_union] = ACTIONS(1687), - [anon_sym_if] = ACTIONS(1687), - [anon_sym_else] = ACTIONS(1687), - [anon_sym_switch] = ACTIONS(1687), - [anon_sym_case] = ACTIONS(1687), - [anon_sym_default] = ACTIONS(1687), - [anon_sym_while] = ACTIONS(1687), - [anon_sym_do] = ACTIONS(1687), - [anon_sym_for] = ACTIONS(1687), - [anon_sym_return] = ACTIONS(1687), - [anon_sym_break] = ACTIONS(1687), - [anon_sym_continue] = ACTIONS(1687), - [anon_sym_goto] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_sizeof] = ACTIONS(1687), - [sym_number_literal] = ACTIONS(1689), - [anon_sym_L_SQUOTE] = ACTIONS(1689), - [anon_sym_u_SQUOTE] = ACTIONS(1689), - [anon_sym_U_SQUOTE] = ACTIONS(1689), - [anon_sym_u8_SQUOTE] = ACTIONS(1689), - [anon_sym_SQUOTE] = ACTIONS(1689), - [anon_sym_L_DQUOTE] = ACTIONS(1689), - [anon_sym_u_DQUOTE] = ACTIONS(1689), - [anon_sym_U_DQUOTE] = ACTIONS(1689), - [anon_sym_u8_DQUOTE] = ACTIONS(1689), - [anon_sym_DQUOTE] = ACTIONS(1689), - [sym_true] = ACTIONS(1687), - [sym_false] = ACTIONS(1687), - [sym_null] = ACTIONS(1687), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1687), - [anon_sym_virtual] = ACTIONS(1687), - [anon_sym_explicit] = ACTIONS(1687), - [sym_auto] = ACTIONS(1687), - [anon_sym_typename] = ACTIONS(1687), - [anon_sym_template] = ACTIONS(1687), - [anon_sym_operator] = ACTIONS(1687), - [anon_sym_delete] = ACTIONS(1687), - [anon_sym_throw] = ACTIONS(1687), - [anon_sym_namespace] = ACTIONS(1687), - [anon_sym_using] = ACTIONS(1687), - [anon_sym_static_assert] = ACTIONS(1687), - [anon_sym_co_return] = ACTIONS(1687), - [anon_sym_co_yield] = ACTIONS(1687), - [anon_sym_try] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1687), - [anon_sym_new] = ACTIONS(1687), - [sym_this] = ACTIONS(1687), - [sym_nullptr] = ACTIONS(1687), - [sym_alone_macro] = ACTIONS(1689), - [aux_sym_alone_macro_call_token1] = ACTIONS(1687), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_FORWARD] = ACTIONS(1687), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1687), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_PS_GET] = ACTIONS(1687), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1687), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1687), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1687), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1687), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1687), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1687), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1687), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1687), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1687), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1687), - [anon_sym_MOZ_COLD] = ACTIONS(1687), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1687), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1687), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1687), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1687), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1687), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1687), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1687), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1687), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1687), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1687), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1687), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1687), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1687), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1687), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1687), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1687), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1687), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1687), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1687), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1687), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_NONNULL] = ACTIONS(1687), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1687), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1687), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1687), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1687), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1687), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_NORETURN] = ACTIONS(1687), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1687), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1687), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1687), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1687), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1687), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1687), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1687), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1687), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1687), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1687), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1687), - [anon_sym_MOZ_RAII] = ACTIONS(1687), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1687), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1687), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1687), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1687), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1687), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1687), - [sym_raw_string_literal] = ACTIONS(1689), - }, - [381] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [382] = { - [sym_identifier] = ACTIONS(1609), - [aux_sym_preproc_include_token1] = ACTIONS(1609), - [aux_sym_preproc_def_token1] = ACTIONS(1609), - [aux_sym_preproc_if_token1] = ACTIONS(1609), - [aux_sym_preproc_if_token2] = ACTIONS(1609), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1609), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1609), - [sym_preproc_directive] = ACTIONS(1609), - [anon_sym_LPAREN2] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_AMP_AMP] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1611), - [anon_sym_typedef] = ACTIONS(1609), - [anon_sym_extern] = ACTIONS(1609), - [anon_sym___attribute__] = ACTIONS(1609), - [anon_sym_COLON_COLON] = ACTIONS(1611), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1611), - [anon_sym___declspec] = ACTIONS(1609), - [anon_sym___based] = ACTIONS(1609), - [anon_sym___cdecl] = ACTIONS(1609), - [anon_sym___clrcall] = ACTIONS(1609), - [anon_sym___stdcall] = ACTIONS(1609), - [anon_sym___fastcall] = ACTIONS(1609), - [anon_sym___thiscall] = ACTIONS(1609), - [anon_sym___vectorcall] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_static] = ACTIONS(1609), - [anon_sym_register] = ACTIONS(1609), - [anon_sym_inline] = ACTIONS(1609), - [anon_sym_thread_local] = ACTIONS(1609), - [anon_sym_const] = ACTIONS(1609), - [anon_sym_volatile] = ACTIONS(1609), - [anon_sym_restrict] = ACTIONS(1609), - [anon_sym__Atomic] = ACTIONS(1609), - [anon_sym_mutable] = ACTIONS(1609), - [anon_sym_constexpr] = ACTIONS(1609), - [anon_sym_signed] = ACTIONS(1609), - [anon_sym_unsigned] = ACTIONS(1609), - [anon_sym_long] = ACTIONS(1609), - [anon_sym_short] = ACTIONS(1609), - [sym_primitive_type] = ACTIONS(1609), - [anon_sym_enum] = ACTIONS(1609), - [anon_sym_class] = ACTIONS(1609), - [anon_sym_struct] = ACTIONS(1609), - [anon_sym_union] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1609), - [anon_sym_else] = ACTIONS(1609), - [anon_sym_switch] = ACTIONS(1609), - [anon_sym_case] = ACTIONS(1609), - [anon_sym_default] = ACTIONS(1609), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_do] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_break] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [anon_sym_goto] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_sizeof] = ACTIONS(1609), - [sym_number_literal] = ACTIONS(1611), - [anon_sym_L_SQUOTE] = ACTIONS(1611), - [anon_sym_u_SQUOTE] = ACTIONS(1611), - [anon_sym_U_SQUOTE] = ACTIONS(1611), - [anon_sym_u8_SQUOTE] = ACTIONS(1611), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_L_DQUOTE] = ACTIONS(1611), - [anon_sym_u_DQUOTE] = ACTIONS(1611), - [anon_sym_U_DQUOTE] = ACTIONS(1611), - [anon_sym_u8_DQUOTE] = ACTIONS(1611), - [anon_sym_DQUOTE] = ACTIONS(1611), - [sym_true] = ACTIONS(1609), - [sym_false] = ACTIONS(1609), - [sym_null] = ACTIONS(1609), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1609), - [anon_sym_virtual] = ACTIONS(1609), - [anon_sym_explicit] = ACTIONS(1609), - [sym_auto] = ACTIONS(1609), - [anon_sym_typename] = ACTIONS(1609), - [anon_sym_template] = ACTIONS(1609), - [anon_sym_operator] = ACTIONS(1609), - [anon_sym_delete] = ACTIONS(1609), - [anon_sym_throw] = ACTIONS(1609), - [anon_sym_namespace] = ACTIONS(1609), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_static_assert] = ACTIONS(1609), - [anon_sym_co_return] = ACTIONS(1609), - [anon_sym_co_yield] = ACTIONS(1609), - [anon_sym_try] = ACTIONS(1609), - [anon_sym_co_await] = ACTIONS(1609), - [anon_sym_new] = ACTIONS(1609), - [sym_this] = ACTIONS(1609), - [sym_nullptr] = ACTIONS(1609), - [sym_alone_macro] = ACTIONS(1611), - [aux_sym_alone_macro_call_token1] = ACTIONS(1609), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_FORWARD] = ACTIONS(1609), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1609), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_PS_GET] = ACTIONS(1609), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1609), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1609), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1609), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1609), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1609), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1609), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1609), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1609), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1609), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1609), - [anon_sym_MOZ_COLD] = ACTIONS(1609), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1609), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1609), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1609), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1609), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1609), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1609), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1609), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1609), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1609), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1609), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1609), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1609), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1609), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1609), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1609), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1609), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1609), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1609), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1609), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1609), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_NONNULL] = ACTIONS(1609), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1609), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1609), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1609), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1609), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1609), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_NORETURN] = ACTIONS(1609), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1609), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1609), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1609), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1609), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1609), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1609), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1609), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1609), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1609), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1609), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1609), - [anon_sym_MOZ_RAII] = ACTIONS(1609), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1609), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1609), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1609), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1609), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1609), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1609), - [sym_raw_string_literal] = ACTIONS(1611), - }, - [383] = { - [sym_identifier] = ACTIONS(1675), - [aux_sym_preproc_include_token1] = ACTIONS(1675), - [aux_sym_preproc_def_token1] = ACTIONS(1675), - [aux_sym_preproc_if_token1] = ACTIONS(1675), - [aux_sym_preproc_if_token2] = ACTIONS(1675), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1675), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1675), - [sym_preproc_directive] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1677), - [anon_sym_BANG] = ACTIONS(1677), - [anon_sym_TILDE] = ACTIONS(1677), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1677), - [anon_sym_AMP_AMP] = ACTIONS(1677), - [anon_sym_AMP] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_typedef] = ACTIONS(1675), - [anon_sym_extern] = ACTIONS(1675), - [anon_sym___attribute__] = ACTIONS(1675), - [anon_sym_COLON_COLON] = ACTIONS(1677), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1677), - [anon_sym___declspec] = ACTIONS(1675), - [anon_sym___based] = ACTIONS(1675), - [anon_sym___cdecl] = ACTIONS(1675), - [anon_sym___clrcall] = ACTIONS(1675), - [anon_sym___stdcall] = ACTIONS(1675), - [anon_sym___fastcall] = ACTIONS(1675), - [anon_sym___thiscall] = ACTIONS(1675), - [anon_sym___vectorcall] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_register] = ACTIONS(1675), - [anon_sym_inline] = ACTIONS(1675), - [anon_sym_thread_local] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(1675), - [anon_sym_volatile] = ACTIONS(1675), - [anon_sym_restrict] = ACTIONS(1675), - [anon_sym__Atomic] = ACTIONS(1675), - [anon_sym_mutable] = ACTIONS(1675), - [anon_sym_constexpr] = ACTIONS(1675), - [anon_sym_signed] = ACTIONS(1675), - [anon_sym_unsigned] = ACTIONS(1675), - [anon_sym_long] = ACTIONS(1675), - [anon_sym_short] = ACTIONS(1675), - [sym_primitive_type] = ACTIONS(1675), - [anon_sym_enum] = ACTIONS(1675), - [anon_sym_class] = ACTIONS(1675), - [anon_sym_struct] = ACTIONS(1675), - [anon_sym_union] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1675), - [anon_sym_else] = ACTIONS(1675), - [anon_sym_switch] = ACTIONS(1675), - [anon_sym_case] = ACTIONS(1675), - [anon_sym_default] = ACTIONS(1675), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_do] = ACTIONS(1675), - [anon_sym_for] = ACTIONS(1675), - [anon_sym_return] = ACTIONS(1675), - [anon_sym_break] = ACTIONS(1675), - [anon_sym_continue] = ACTIONS(1675), - [anon_sym_goto] = ACTIONS(1675), - [anon_sym_DASH_DASH] = ACTIONS(1677), - [anon_sym_PLUS_PLUS] = ACTIONS(1677), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1677), - [anon_sym_u_SQUOTE] = ACTIONS(1677), - [anon_sym_U_SQUOTE] = ACTIONS(1677), - [anon_sym_u8_SQUOTE] = ACTIONS(1677), - [anon_sym_SQUOTE] = ACTIONS(1677), - [anon_sym_L_DQUOTE] = ACTIONS(1677), - [anon_sym_u_DQUOTE] = ACTIONS(1677), - [anon_sym_U_DQUOTE] = ACTIONS(1677), - [anon_sym_u8_DQUOTE] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1677), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_null] = ACTIONS(1675), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1675), - [anon_sym_virtual] = ACTIONS(1675), - [anon_sym_explicit] = ACTIONS(1675), - [sym_auto] = ACTIONS(1675), - [anon_sym_typename] = ACTIONS(1675), - [anon_sym_template] = ACTIONS(1675), - [anon_sym_operator] = ACTIONS(1675), - [anon_sym_delete] = ACTIONS(1675), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1675), - [anon_sym_using] = ACTIONS(1675), - [anon_sym_static_assert] = ACTIONS(1675), - [anon_sym_co_return] = ACTIONS(1675), - [anon_sym_co_yield] = ACTIONS(1675), - [anon_sym_try] = ACTIONS(1675), - [anon_sym_co_await] = ACTIONS(1675), - [anon_sym_new] = ACTIONS(1675), - [sym_this] = ACTIONS(1675), - [sym_nullptr] = ACTIONS(1675), - [sym_alone_macro] = ACTIONS(1677), - [aux_sym_alone_macro_call_token1] = ACTIONS(1675), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_FORWARD] = ACTIONS(1675), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1675), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_PS_GET] = ACTIONS(1675), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1675), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1675), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1675), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1675), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1675), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1675), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1675), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1675), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1675), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1675), - [anon_sym_MOZ_COLD] = ACTIONS(1675), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1675), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1675), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1675), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1675), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1675), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1675), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1675), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1675), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1675), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1675), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1675), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1675), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1675), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1675), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1675), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1675), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1675), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1675), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1675), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1675), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_NONNULL] = ACTIONS(1675), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1675), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1675), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1675), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1675), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1675), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_NORETURN] = ACTIONS(1675), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1675), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1675), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1675), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1675), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1675), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1675), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1675), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1675), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1675), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1675), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1675), - [anon_sym_MOZ_RAII] = ACTIONS(1675), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1675), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1675), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1675), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1675), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1675), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1675), - [sym_raw_string_literal] = ACTIONS(1677), - }, - [384] = { - [sym_identifier] = ACTIONS(1679), - [aux_sym_preproc_include_token1] = ACTIONS(1679), - [aux_sym_preproc_def_token1] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1679), - [aux_sym_preproc_if_token2] = ACTIONS(1679), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1679), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1679), - [sym_preproc_directive] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_BANG] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1679), - [anon_sym_PLUS] = ACTIONS(1679), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_typedef] = ACTIONS(1679), - [anon_sym_extern] = ACTIONS(1679), - [anon_sym___attribute__] = ACTIONS(1679), - [anon_sym_COLON_COLON] = ACTIONS(1681), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1681), - [anon_sym___declspec] = ACTIONS(1679), - [anon_sym___based] = ACTIONS(1679), - [anon_sym___cdecl] = ACTIONS(1679), - [anon_sym___clrcall] = ACTIONS(1679), - [anon_sym___stdcall] = ACTIONS(1679), - [anon_sym___fastcall] = ACTIONS(1679), - [anon_sym___thiscall] = ACTIONS(1679), - [anon_sym___vectorcall] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1681), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_static] = ACTIONS(1679), - [anon_sym_register] = ACTIONS(1679), - [anon_sym_inline] = ACTIONS(1679), - [anon_sym_thread_local] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1679), - [anon_sym_volatile] = ACTIONS(1679), - [anon_sym_restrict] = ACTIONS(1679), - [anon_sym__Atomic] = ACTIONS(1679), - [anon_sym_mutable] = ACTIONS(1679), - [anon_sym_constexpr] = ACTIONS(1679), - [anon_sym_signed] = ACTIONS(1679), - [anon_sym_unsigned] = ACTIONS(1679), - [anon_sym_long] = ACTIONS(1679), - [anon_sym_short] = ACTIONS(1679), - [sym_primitive_type] = ACTIONS(1679), - [anon_sym_enum] = ACTIONS(1679), - [anon_sym_class] = ACTIONS(1679), - [anon_sym_struct] = ACTIONS(1679), - [anon_sym_union] = ACTIONS(1679), - [anon_sym_if] = ACTIONS(1679), - [anon_sym_else] = ACTIONS(1679), - [anon_sym_switch] = ACTIONS(1679), - [anon_sym_case] = ACTIONS(1679), - [anon_sym_default] = ACTIONS(1679), - [anon_sym_while] = ACTIONS(1679), - [anon_sym_do] = ACTIONS(1679), - [anon_sym_for] = ACTIONS(1679), - [anon_sym_return] = ACTIONS(1679), - [anon_sym_break] = ACTIONS(1679), - [anon_sym_continue] = ACTIONS(1679), - [anon_sym_goto] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1681), - [anon_sym_PLUS_PLUS] = ACTIONS(1681), - [anon_sym_sizeof] = ACTIONS(1679), - [sym_number_literal] = ACTIONS(1681), - [anon_sym_L_SQUOTE] = ACTIONS(1681), - [anon_sym_u_SQUOTE] = ACTIONS(1681), - [anon_sym_U_SQUOTE] = ACTIONS(1681), - [anon_sym_u8_SQUOTE] = ACTIONS(1681), - [anon_sym_SQUOTE] = ACTIONS(1681), - [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(1679), - [sym_false] = ACTIONS(1679), - [sym_null] = ACTIONS(1679), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1679), - [anon_sym_virtual] = ACTIONS(1679), - [anon_sym_explicit] = ACTIONS(1679), - [sym_auto] = ACTIONS(1679), - [anon_sym_typename] = ACTIONS(1679), - [anon_sym_template] = ACTIONS(1679), - [anon_sym_operator] = ACTIONS(1679), - [anon_sym_delete] = ACTIONS(1679), - [anon_sym_throw] = ACTIONS(1679), - [anon_sym_namespace] = ACTIONS(1679), - [anon_sym_using] = ACTIONS(1679), - [anon_sym_static_assert] = ACTIONS(1679), - [anon_sym_co_return] = ACTIONS(1679), - [anon_sym_co_yield] = ACTIONS(1679), - [anon_sym_try] = ACTIONS(1679), - [anon_sym_co_await] = ACTIONS(1679), - [anon_sym_new] = ACTIONS(1679), - [sym_this] = ACTIONS(1679), - [sym_nullptr] = ACTIONS(1679), - [sym_alone_macro] = ACTIONS(1681), - [aux_sym_alone_macro_call_token1] = ACTIONS(1679), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_FORWARD] = ACTIONS(1679), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1679), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_PS_GET] = ACTIONS(1679), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1679), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1679), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1679), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1679), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1679), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1679), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1679), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1679), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1679), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1679), - [anon_sym_MOZ_COLD] = ACTIONS(1679), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1679), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1679), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1679), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1679), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1679), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1679), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1679), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1679), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1679), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1679), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1679), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1679), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1679), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1679), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1679), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1679), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1679), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1679), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1679), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1679), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_NONNULL] = ACTIONS(1679), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1679), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1679), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1679), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1679), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1679), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_NORETURN] = ACTIONS(1679), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1679), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1679), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1679), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1679), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1679), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1679), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1679), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1679), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1679), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1679), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1679), - [anon_sym_MOZ_RAII] = ACTIONS(1679), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1679), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1679), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1679), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1679), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1679), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1679), - [sym_raw_string_literal] = ACTIONS(1681), - }, - [385] = { - [sym_identifier] = ACTIONS(1683), - [aux_sym_preproc_include_token1] = ACTIONS(1683), - [aux_sym_preproc_def_token1] = ACTIONS(1683), - [aux_sym_preproc_if_token1] = ACTIONS(1683), - [aux_sym_preproc_if_token2] = ACTIONS(1683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1683), - [sym_preproc_directive] = ACTIONS(1683), - [anon_sym_LPAREN2] = ACTIONS(1685), - [anon_sym_BANG] = ACTIONS(1685), - [anon_sym_TILDE] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_typedef] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1683), - [anon_sym___attribute__] = ACTIONS(1683), - [anon_sym_COLON_COLON] = ACTIONS(1685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1685), - [anon_sym___declspec] = ACTIONS(1683), - [anon_sym___based] = ACTIONS(1683), - [anon_sym___cdecl] = ACTIONS(1683), - [anon_sym___clrcall] = ACTIONS(1683), - [anon_sym___stdcall] = ACTIONS(1683), - [anon_sym___fastcall] = ACTIONS(1683), - [anon_sym___thiscall] = ACTIONS(1683), - [anon_sym___vectorcall] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1685), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_static] = ACTIONS(1683), - [anon_sym_register] = ACTIONS(1683), - [anon_sym_inline] = ACTIONS(1683), - [anon_sym_thread_local] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_volatile] = ACTIONS(1683), - [anon_sym_restrict] = ACTIONS(1683), - [anon_sym__Atomic] = ACTIONS(1683), - [anon_sym_mutable] = ACTIONS(1683), - [anon_sym_constexpr] = ACTIONS(1683), - [anon_sym_signed] = ACTIONS(1683), - [anon_sym_unsigned] = ACTIONS(1683), - [anon_sym_long] = ACTIONS(1683), - [anon_sym_short] = ACTIONS(1683), - [sym_primitive_type] = ACTIONS(1683), - [anon_sym_enum] = ACTIONS(1683), - [anon_sym_class] = ACTIONS(1683), - [anon_sym_struct] = ACTIONS(1683), - [anon_sym_union] = ACTIONS(1683), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_else] = ACTIONS(1683), - [anon_sym_switch] = ACTIONS(1683), - [anon_sym_case] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1683), - [anon_sym_while] = ACTIONS(1683), - [anon_sym_do] = ACTIONS(1683), - [anon_sym_for] = ACTIONS(1683), - [anon_sym_return] = ACTIONS(1683), - [anon_sym_break] = ACTIONS(1683), - [anon_sym_continue] = ACTIONS(1683), - [anon_sym_goto] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1685), - [anon_sym_PLUS_PLUS] = ACTIONS(1685), - [anon_sym_sizeof] = ACTIONS(1683), - [sym_number_literal] = ACTIONS(1685), - [anon_sym_L_SQUOTE] = ACTIONS(1685), - [anon_sym_u_SQUOTE] = ACTIONS(1685), - [anon_sym_U_SQUOTE] = ACTIONS(1685), - [anon_sym_u8_SQUOTE] = ACTIONS(1685), - [anon_sym_SQUOTE] = ACTIONS(1685), - [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(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1683), - [anon_sym_virtual] = ACTIONS(1683), - [anon_sym_explicit] = ACTIONS(1683), - [sym_auto] = ACTIONS(1683), - [anon_sym_typename] = ACTIONS(1683), - [anon_sym_template] = ACTIONS(1683), - [anon_sym_operator] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_throw] = ACTIONS(1683), - [anon_sym_namespace] = ACTIONS(1683), - [anon_sym_using] = ACTIONS(1683), - [anon_sym_static_assert] = ACTIONS(1683), - [anon_sym_co_return] = ACTIONS(1683), - [anon_sym_co_yield] = ACTIONS(1683), - [anon_sym_try] = ACTIONS(1683), - [anon_sym_co_await] = ACTIONS(1683), - [anon_sym_new] = ACTIONS(1683), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - [sym_alone_macro] = ACTIONS(1685), - [aux_sym_alone_macro_call_token1] = ACTIONS(1683), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_FORWARD] = ACTIONS(1683), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1683), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_PS_GET] = ACTIONS(1683), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1683), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1683), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1683), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1683), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1683), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1683), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1683), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1683), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1683), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1683), - [anon_sym_MOZ_COLD] = ACTIONS(1683), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1683), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1683), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1683), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1683), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1683), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1683), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1683), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1683), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1683), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1683), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1683), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1683), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1683), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1683), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1683), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1683), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1683), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1683), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1683), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1683), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_NONNULL] = ACTIONS(1683), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1683), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1683), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1683), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1683), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1683), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_NORETURN] = ACTIONS(1683), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1683), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1683), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1683), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1683), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1683), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1683), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1683), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1683), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1683), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1683), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1683), - [anon_sym_MOZ_RAII] = ACTIONS(1683), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1683), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1683), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1683), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1683), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1683), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1683), - [sym_raw_string_literal] = ACTIONS(1685), - }, - [386] = { - [sym_identifier] = ACTIONS(1687), - [aux_sym_preproc_include_token1] = ACTIONS(1687), - [aux_sym_preproc_def_token1] = ACTIONS(1687), - [aux_sym_preproc_if_token1] = ACTIONS(1687), - [aux_sym_preproc_if_token2] = ACTIONS(1687), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1687), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1687), - [sym_preproc_directive] = ACTIONS(1687), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_AMP_AMP] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_typedef] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(1687), - [anon_sym___attribute__] = ACTIONS(1687), - [anon_sym_COLON_COLON] = ACTIONS(1689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1689), - [anon_sym___declspec] = ACTIONS(1687), - [anon_sym___based] = ACTIONS(1687), - [anon_sym___cdecl] = ACTIONS(1687), - [anon_sym___clrcall] = ACTIONS(1687), - [anon_sym___stdcall] = ACTIONS(1687), - [anon_sym___fastcall] = ACTIONS(1687), - [anon_sym___thiscall] = ACTIONS(1687), - [anon_sym___vectorcall] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1689), - [anon_sym_LBRACK] = ACTIONS(1687), - [anon_sym_static] = ACTIONS(1687), - [anon_sym_register] = ACTIONS(1687), - [anon_sym_inline] = ACTIONS(1687), - [anon_sym_thread_local] = ACTIONS(1687), - [anon_sym_const] = ACTIONS(1687), - [anon_sym_volatile] = ACTIONS(1687), - [anon_sym_restrict] = ACTIONS(1687), - [anon_sym__Atomic] = ACTIONS(1687), - [anon_sym_mutable] = ACTIONS(1687), - [anon_sym_constexpr] = ACTIONS(1687), - [anon_sym_signed] = ACTIONS(1687), - [anon_sym_unsigned] = ACTIONS(1687), - [anon_sym_long] = ACTIONS(1687), - [anon_sym_short] = ACTIONS(1687), - [sym_primitive_type] = ACTIONS(1687), - [anon_sym_enum] = ACTIONS(1687), - [anon_sym_class] = ACTIONS(1687), - [anon_sym_struct] = ACTIONS(1687), - [anon_sym_union] = ACTIONS(1687), - [anon_sym_if] = ACTIONS(1687), - [anon_sym_else] = ACTIONS(1687), - [anon_sym_switch] = ACTIONS(1687), - [anon_sym_case] = ACTIONS(1687), - [anon_sym_default] = ACTIONS(1687), - [anon_sym_while] = ACTIONS(1687), - [anon_sym_do] = ACTIONS(1687), - [anon_sym_for] = ACTIONS(1687), - [anon_sym_return] = ACTIONS(1687), - [anon_sym_break] = ACTIONS(1687), - [anon_sym_continue] = ACTIONS(1687), - [anon_sym_goto] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_sizeof] = ACTIONS(1687), - [sym_number_literal] = ACTIONS(1689), - [anon_sym_L_SQUOTE] = ACTIONS(1689), - [anon_sym_u_SQUOTE] = ACTIONS(1689), - [anon_sym_U_SQUOTE] = ACTIONS(1689), - [anon_sym_u8_SQUOTE] = ACTIONS(1689), - [anon_sym_SQUOTE] = ACTIONS(1689), - [anon_sym_L_DQUOTE] = ACTIONS(1689), - [anon_sym_u_DQUOTE] = ACTIONS(1689), - [anon_sym_U_DQUOTE] = ACTIONS(1689), - [anon_sym_u8_DQUOTE] = ACTIONS(1689), - [anon_sym_DQUOTE] = ACTIONS(1689), - [sym_true] = ACTIONS(1687), - [sym_false] = ACTIONS(1687), - [sym_null] = ACTIONS(1687), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1687), - [anon_sym_virtual] = ACTIONS(1687), - [anon_sym_explicit] = ACTIONS(1687), - [sym_auto] = ACTIONS(1687), - [anon_sym_typename] = ACTIONS(1687), - [anon_sym_template] = ACTIONS(1687), - [anon_sym_operator] = ACTIONS(1687), - [anon_sym_delete] = ACTIONS(1687), - [anon_sym_throw] = ACTIONS(1687), - [anon_sym_namespace] = ACTIONS(1687), - [anon_sym_using] = ACTIONS(1687), - [anon_sym_static_assert] = ACTIONS(1687), - [anon_sym_co_return] = ACTIONS(1687), - [anon_sym_co_yield] = ACTIONS(1687), - [anon_sym_try] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1687), - [anon_sym_new] = ACTIONS(1687), - [sym_this] = ACTIONS(1687), - [sym_nullptr] = ACTIONS(1687), - [sym_alone_macro] = ACTIONS(1689), - [aux_sym_alone_macro_call_token1] = ACTIONS(1687), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_FORWARD] = ACTIONS(1687), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1687), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_PS_GET] = ACTIONS(1687), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1687), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1687), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1687), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1687), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1687), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1687), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1687), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1687), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1687), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1687), - [anon_sym_MOZ_COLD] = ACTIONS(1687), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1687), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1687), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1687), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1687), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1687), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1687), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1687), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1687), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1687), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1687), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1687), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1687), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1687), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1687), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1687), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1687), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1687), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1687), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1687), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1687), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_NONNULL] = ACTIONS(1687), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1687), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1687), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1687), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1687), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1687), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_NORETURN] = ACTIONS(1687), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1687), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1687), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1687), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1687), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1687), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1687), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1687), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1687), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1687), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1687), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1687), - [anon_sym_MOZ_RAII] = ACTIONS(1687), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1687), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1687), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1687), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1687), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1687), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1687), - [sym_raw_string_literal] = ACTIONS(1689), - }, - [387] = { - [sym_identifier] = ACTIONS(1691), - [aux_sym_preproc_include_token1] = ACTIONS(1691), - [aux_sym_preproc_def_token1] = ACTIONS(1691), - [aux_sym_preproc_if_token1] = ACTIONS(1691), - [aux_sym_preproc_if_token2] = ACTIONS(1691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1691), - [sym_preproc_directive] = ACTIONS(1691), - [anon_sym_LPAREN2] = ACTIONS(1693), - [anon_sym_BANG] = ACTIONS(1693), - [anon_sym_TILDE] = ACTIONS(1693), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_PLUS] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(1693), - [anon_sym_AMP_AMP] = ACTIONS(1693), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_typedef] = ACTIONS(1691), - [anon_sym_extern] = ACTIONS(1691), - [anon_sym___attribute__] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1693), - [anon_sym___declspec] = ACTIONS(1691), - [anon_sym___based] = ACTIONS(1691), - [anon_sym___cdecl] = ACTIONS(1691), - [anon_sym___clrcall] = ACTIONS(1691), - [anon_sym___stdcall] = ACTIONS(1691), - [anon_sym___fastcall] = ACTIONS(1691), - [anon_sym___thiscall] = ACTIONS(1691), - [anon_sym___vectorcall] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_LBRACK] = ACTIONS(1691), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_register] = ACTIONS(1691), - [anon_sym_inline] = ACTIONS(1691), - [anon_sym_thread_local] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(1691), - [anon_sym_volatile] = ACTIONS(1691), - [anon_sym_restrict] = ACTIONS(1691), - [anon_sym__Atomic] = ACTIONS(1691), - [anon_sym_mutable] = ACTIONS(1691), - [anon_sym_constexpr] = ACTIONS(1691), - [anon_sym_signed] = ACTIONS(1691), - [anon_sym_unsigned] = ACTIONS(1691), - [anon_sym_long] = ACTIONS(1691), - [anon_sym_short] = ACTIONS(1691), - [sym_primitive_type] = ACTIONS(1691), - [anon_sym_enum] = ACTIONS(1691), - [anon_sym_class] = ACTIONS(1691), - [anon_sym_struct] = ACTIONS(1691), - [anon_sym_union] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1691), - [anon_sym_else] = ACTIONS(1691), - [anon_sym_switch] = ACTIONS(1691), - [anon_sym_case] = ACTIONS(1691), - [anon_sym_default] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1691), - [anon_sym_do] = ACTIONS(1691), - [anon_sym_for] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_goto] = ACTIONS(1691), - [anon_sym_DASH_DASH] = ACTIONS(1693), - [anon_sym_PLUS_PLUS] = ACTIONS(1693), - [anon_sym_sizeof] = ACTIONS(1691), - [sym_number_literal] = ACTIONS(1693), - [anon_sym_L_SQUOTE] = ACTIONS(1693), - [anon_sym_u_SQUOTE] = ACTIONS(1693), - [anon_sym_U_SQUOTE] = ACTIONS(1693), - [anon_sym_u8_SQUOTE] = ACTIONS(1693), - [anon_sym_SQUOTE] = ACTIONS(1693), - [anon_sym_L_DQUOTE] = ACTIONS(1693), - [anon_sym_u_DQUOTE] = ACTIONS(1693), - [anon_sym_U_DQUOTE] = ACTIONS(1693), - [anon_sym_u8_DQUOTE] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1693), - [sym_true] = ACTIONS(1691), - [sym_false] = ACTIONS(1691), - [sym_null] = ACTIONS(1691), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1691), - [anon_sym_virtual] = ACTIONS(1691), - [anon_sym_explicit] = ACTIONS(1691), - [sym_auto] = ACTIONS(1691), - [anon_sym_typename] = ACTIONS(1691), - [anon_sym_template] = ACTIONS(1691), - [anon_sym_operator] = ACTIONS(1691), - [anon_sym_delete] = ACTIONS(1691), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1691), - [anon_sym_using] = ACTIONS(1691), - [anon_sym_static_assert] = ACTIONS(1691), - [anon_sym_co_return] = ACTIONS(1691), - [anon_sym_co_yield] = ACTIONS(1691), - [anon_sym_try] = ACTIONS(1691), - [anon_sym_co_await] = ACTIONS(1691), - [anon_sym_new] = ACTIONS(1691), - [sym_this] = ACTIONS(1691), - [sym_nullptr] = ACTIONS(1691), - [sym_alone_macro] = ACTIONS(1693), - [aux_sym_alone_macro_call_token1] = ACTIONS(1691), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_FORWARD] = ACTIONS(1691), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1691), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_PS_GET] = ACTIONS(1691), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1691), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1691), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1691), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1691), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1691), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1691), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1691), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1691), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1691), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1691), - [anon_sym_MOZ_COLD] = ACTIONS(1691), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1691), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1691), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1691), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1691), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1691), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1691), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1691), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1691), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1691), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1691), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1691), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1691), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1691), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1691), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1691), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1691), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1691), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1691), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1691), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1691), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_NONNULL] = ACTIONS(1691), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1691), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1691), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1691), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1691), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1691), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_NORETURN] = ACTIONS(1691), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1691), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1691), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1691), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1691), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1691), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1691), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1691), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1691), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1691), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1691), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1691), - [anon_sym_MOZ_RAII] = ACTIONS(1691), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1691), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1691), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1691), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1691), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1691), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1691), - [sym_raw_string_literal] = ACTIONS(1693), - }, - [388] = { - [sym_identifier] = ACTIONS(1695), - [aux_sym_preproc_include_token1] = ACTIONS(1695), - [aux_sym_preproc_def_token1] = ACTIONS(1695), - [aux_sym_preproc_if_token1] = ACTIONS(1695), - [aux_sym_preproc_if_token2] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1695), - [sym_preproc_directive] = ACTIONS(1695), - [anon_sym_LPAREN2] = ACTIONS(1697), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1697), - [anon_sym_AMP_AMP] = ACTIONS(1697), - [anon_sym_AMP] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1697), - [anon_sym_typedef] = ACTIONS(1695), - [anon_sym_extern] = ACTIONS(1695), - [anon_sym___attribute__] = ACTIONS(1695), - [anon_sym_COLON_COLON] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1697), - [anon_sym___declspec] = ACTIONS(1695), - [anon_sym___based] = ACTIONS(1695), - [anon_sym___cdecl] = ACTIONS(1695), - [anon_sym___clrcall] = ACTIONS(1695), - [anon_sym___stdcall] = ACTIONS(1695), - [anon_sym___fastcall] = ACTIONS(1695), - [anon_sym___thiscall] = ACTIONS(1695), - [anon_sym___vectorcall] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_static] = ACTIONS(1695), - [anon_sym_register] = ACTIONS(1695), - [anon_sym_inline] = ACTIONS(1695), - [anon_sym_thread_local] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1695), - [anon_sym_volatile] = ACTIONS(1695), - [anon_sym_restrict] = ACTIONS(1695), - [anon_sym__Atomic] = ACTIONS(1695), - [anon_sym_mutable] = ACTIONS(1695), - [anon_sym_constexpr] = ACTIONS(1695), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1695), - [anon_sym_enum] = ACTIONS(1695), - [anon_sym_class] = ACTIONS(1695), - [anon_sym_struct] = ACTIONS(1695), - [anon_sym_union] = ACTIONS(1695), - [anon_sym_if] = ACTIONS(1695), - [anon_sym_else] = ACTIONS(1695), - [anon_sym_switch] = ACTIONS(1695), - [anon_sym_case] = ACTIONS(1695), - [anon_sym_default] = ACTIONS(1695), - [anon_sym_while] = ACTIONS(1695), - [anon_sym_do] = ACTIONS(1695), - [anon_sym_for] = ACTIONS(1695), - [anon_sym_return] = ACTIONS(1695), - [anon_sym_break] = ACTIONS(1695), - [anon_sym_continue] = ACTIONS(1695), - [anon_sym_goto] = ACTIONS(1695), - [anon_sym_DASH_DASH] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1697), - [anon_sym_sizeof] = ACTIONS(1695), - [sym_number_literal] = ACTIONS(1697), - [anon_sym_L_SQUOTE] = ACTIONS(1697), - [anon_sym_u_SQUOTE] = ACTIONS(1697), - [anon_sym_U_SQUOTE] = ACTIONS(1697), - [anon_sym_u8_SQUOTE] = ACTIONS(1697), - [anon_sym_SQUOTE] = ACTIONS(1697), - [anon_sym_L_DQUOTE] = ACTIONS(1697), - [anon_sym_u_DQUOTE] = ACTIONS(1697), - [anon_sym_U_DQUOTE] = ACTIONS(1697), - [anon_sym_u8_DQUOTE] = ACTIONS(1697), - [anon_sym_DQUOTE] = ACTIONS(1697), - [sym_true] = ACTIONS(1695), - [sym_false] = ACTIONS(1695), - [sym_null] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1695), - [anon_sym_virtual] = ACTIONS(1695), - [anon_sym_explicit] = ACTIONS(1695), - [sym_auto] = ACTIONS(1695), - [anon_sym_typename] = ACTIONS(1695), - [anon_sym_template] = ACTIONS(1695), - [anon_sym_operator] = ACTIONS(1695), - [anon_sym_delete] = ACTIONS(1695), - [anon_sym_throw] = ACTIONS(1695), - [anon_sym_namespace] = ACTIONS(1695), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_static_assert] = ACTIONS(1695), - [anon_sym_co_return] = ACTIONS(1695), - [anon_sym_co_yield] = ACTIONS(1695), - [anon_sym_try] = ACTIONS(1695), - [anon_sym_co_await] = ACTIONS(1695), - [anon_sym_new] = ACTIONS(1695), - [sym_this] = ACTIONS(1695), - [sym_nullptr] = ACTIONS(1695), - [sym_alone_macro] = ACTIONS(1697), - [aux_sym_alone_macro_call_token1] = ACTIONS(1695), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_FORWARD] = ACTIONS(1695), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1695), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_PS_GET] = ACTIONS(1695), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1695), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1695), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1695), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1695), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1695), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1695), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1695), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1695), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1695), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1695), - [anon_sym_MOZ_COLD] = ACTIONS(1695), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1695), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1695), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1695), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1695), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1695), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1695), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1695), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1695), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1695), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1695), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1695), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1695), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1695), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1695), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1695), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1695), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1695), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1695), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1695), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1695), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_NONNULL] = ACTIONS(1695), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1695), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1695), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1695), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1695), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1695), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_NORETURN] = ACTIONS(1695), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1695), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1695), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1695), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1695), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1695), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1695), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1695), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1695), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1695), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1695), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1695), - [anon_sym_MOZ_RAII] = ACTIONS(1695), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1695), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1695), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1695), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1695), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1695), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1695), - [sym_raw_string_literal] = ACTIONS(1697), - }, - [389] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [390] = { - [sym_identifier] = ACTIONS(1557), - [aux_sym_preproc_include_token1] = ACTIONS(1557), - [aux_sym_preproc_def_token1] = ACTIONS(1557), - [aux_sym_preproc_if_token1] = ACTIONS(1557), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1557), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1557), - [sym_preproc_directive] = ACTIONS(1557), - [anon_sym_LPAREN2] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_typedef] = ACTIONS(1557), - [anon_sym_extern] = ACTIONS(1557), - [anon_sym___attribute__] = ACTIONS(1557), - [anon_sym_COLON_COLON] = ACTIONS(1559), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1559), - [anon_sym___declspec] = ACTIONS(1557), - [anon_sym___based] = ACTIONS(1557), - [anon_sym___cdecl] = ACTIONS(1557), - [anon_sym___clrcall] = ACTIONS(1557), - [anon_sym___stdcall] = ACTIONS(1557), - [anon_sym___fastcall] = ACTIONS(1557), - [anon_sym___thiscall] = ACTIONS(1557), - [anon_sym___vectorcall] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_RBRACE] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_register] = ACTIONS(1557), - [anon_sym_inline] = ACTIONS(1557), - [anon_sym_thread_local] = ACTIONS(1557), - [anon_sym_const] = ACTIONS(1557), - [anon_sym_volatile] = ACTIONS(1557), - [anon_sym_restrict] = ACTIONS(1557), - [anon_sym__Atomic] = ACTIONS(1557), - [anon_sym_mutable] = ACTIONS(1557), - [anon_sym_constexpr] = ACTIONS(1557), - [anon_sym_signed] = ACTIONS(1557), - [anon_sym_unsigned] = ACTIONS(1557), - [anon_sym_long] = ACTIONS(1557), - [anon_sym_short] = ACTIONS(1557), - [sym_primitive_type] = ACTIONS(1557), - [anon_sym_enum] = ACTIONS(1557), - [anon_sym_class] = ACTIONS(1557), - [anon_sym_struct] = ACTIONS(1557), - [anon_sym_union] = ACTIONS(1557), - [anon_sym_if] = ACTIONS(1557), - [anon_sym_else] = ACTIONS(1557), - [anon_sym_switch] = ACTIONS(1557), - [anon_sym_case] = ACTIONS(1557), - [anon_sym_default] = ACTIONS(1557), - [anon_sym_while] = ACTIONS(1557), - [anon_sym_do] = ACTIONS(1557), - [anon_sym_for] = ACTIONS(1557), - [anon_sym_return] = ACTIONS(1557), - [anon_sym_break] = ACTIONS(1557), - [anon_sym_continue] = ACTIONS(1557), - [anon_sym_goto] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_sizeof] = ACTIONS(1557), - [sym_number_literal] = ACTIONS(1559), - [anon_sym_L_SQUOTE] = ACTIONS(1559), - [anon_sym_u_SQUOTE] = ACTIONS(1559), - [anon_sym_U_SQUOTE] = ACTIONS(1559), - [anon_sym_u8_SQUOTE] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1559), - [anon_sym_L_DQUOTE] = ACTIONS(1559), - [anon_sym_u_DQUOTE] = ACTIONS(1559), - [anon_sym_U_DQUOTE] = ACTIONS(1559), - [anon_sym_u8_DQUOTE] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1557), - [anon_sym_virtual] = ACTIONS(1557), - [anon_sym_explicit] = ACTIONS(1557), - [sym_auto] = ACTIONS(1557), - [anon_sym_typename] = ACTIONS(1557), - [anon_sym_template] = ACTIONS(1557), - [anon_sym_operator] = ACTIONS(1557), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_throw] = ACTIONS(1557), - [anon_sym_namespace] = ACTIONS(1557), - [anon_sym_using] = ACTIONS(1557), - [anon_sym_static_assert] = ACTIONS(1557), - [anon_sym_co_return] = ACTIONS(1557), - [anon_sym_co_yield] = ACTIONS(1557), - [anon_sym_try] = ACTIONS(1557), - [anon_sym_co_await] = ACTIONS(1557), - [anon_sym_new] = ACTIONS(1557), - [sym_this] = ACTIONS(1557), - [sym_nullptr] = ACTIONS(1557), - [sym_alone_macro] = ACTIONS(1559), - [aux_sym_alone_macro_call_token1] = ACTIONS(1557), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_FORWARD] = ACTIONS(1557), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1557), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_PS_GET] = ACTIONS(1557), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1557), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1557), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1557), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1557), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1557), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1557), - [anon_sym_MOZ_COLD] = ACTIONS(1557), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1557), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1557), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1557), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1557), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1557), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1557), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1557), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1557), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1557), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1557), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1557), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1557), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1557), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_NONNULL] = ACTIONS(1557), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1557), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1557), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1557), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1557), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1557), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1557), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1557), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1557), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1557), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1557), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1557), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1557), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1557), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1557), - [anon_sym_MOZ_RAII] = ACTIONS(1557), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1557), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1557), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1557), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1557), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1557), - [sym_raw_string_literal] = ACTIONS(1559), - }, - [391] = { - [sym_identifier] = ACTIONS(1667), - [aux_sym_preproc_include_token1] = ACTIONS(1667), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token2] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1667), - [sym_preproc_directive] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_BANG] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_typedef] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym___attribute__] = ACTIONS(1667), - [anon_sym_COLON_COLON] = ACTIONS(1669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1669), - [anon_sym___declspec] = ACTIONS(1667), - [anon_sym___based] = ACTIONS(1667), - [anon_sym___cdecl] = ACTIONS(1667), - [anon_sym___clrcall] = ACTIONS(1667), - [anon_sym___stdcall] = ACTIONS(1667), - [anon_sym___fastcall] = ACTIONS(1667), - [anon_sym___thiscall] = ACTIONS(1667), - [anon_sym___vectorcall] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_inline] = ACTIONS(1667), - [anon_sym_thread_local] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [anon_sym_volatile] = ACTIONS(1667), - [anon_sym_restrict] = ACTIONS(1667), - [anon_sym__Atomic] = ACTIONS(1667), - [anon_sym_mutable] = ACTIONS(1667), - [anon_sym_constexpr] = ACTIONS(1667), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [sym_primitive_type] = ACTIONS(1667), - [anon_sym_enum] = ACTIONS(1667), - [anon_sym_class] = ACTIONS(1667), - [anon_sym_struct] = ACTIONS(1667), - [anon_sym_union] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_switch] = ACTIONS(1667), - [anon_sym_case] = ACTIONS(1667), - [anon_sym_default] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_goto] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_sizeof] = ACTIONS(1667), - [sym_number_literal] = ACTIONS(1669), - [anon_sym_L_SQUOTE] = ACTIONS(1669), - [anon_sym_u_SQUOTE] = ACTIONS(1669), - [anon_sym_U_SQUOTE] = ACTIONS(1669), - [anon_sym_u8_SQUOTE] = ACTIONS(1669), - [anon_sym_SQUOTE] = ACTIONS(1669), - [anon_sym_L_DQUOTE] = ACTIONS(1669), - [anon_sym_u_DQUOTE] = ACTIONS(1669), - [anon_sym_U_DQUOTE] = ACTIONS(1669), - [anon_sym_u8_DQUOTE] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym_true] = ACTIONS(1667), - [sym_false] = ACTIONS(1667), - [sym_null] = ACTIONS(1667), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1667), - [anon_sym_virtual] = ACTIONS(1667), - [anon_sym_explicit] = ACTIONS(1667), - [sym_auto] = ACTIONS(1667), - [anon_sym_typename] = ACTIONS(1667), - [anon_sym_template] = ACTIONS(1667), - [anon_sym_operator] = ACTIONS(1667), - [anon_sym_delete] = ACTIONS(1667), - [anon_sym_throw] = ACTIONS(1667), - [anon_sym_namespace] = ACTIONS(1667), - [anon_sym_using] = ACTIONS(1667), - [anon_sym_static_assert] = ACTIONS(1667), - [anon_sym_co_return] = ACTIONS(1667), - [anon_sym_co_yield] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_co_await] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [sym_this] = ACTIONS(1667), - [sym_nullptr] = ACTIONS(1667), - [sym_alone_macro] = ACTIONS(1669), - [aux_sym_alone_macro_call_token1] = ACTIONS(1667), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_FORWARD] = ACTIONS(1667), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1667), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_PS_GET] = ACTIONS(1667), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1667), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1667), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1667), - [anon_sym_MOZ_COLD] = ACTIONS(1667), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1667), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1667), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1667), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1667), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1667), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1667), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1667), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1667), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1667), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1667), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1667), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1667), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_RAII] = ACTIONS(1667), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1667), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1667), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1667), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1667), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1667), - [sym_raw_string_literal] = ACTIONS(1669), - }, - [392] = { - [sym_identifier] = ACTIONS(1667), - [aux_sym_preproc_include_token1] = ACTIONS(1667), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token2] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1667), - [sym_preproc_directive] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_BANG] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_typedef] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym___attribute__] = ACTIONS(1667), - [anon_sym_COLON_COLON] = ACTIONS(1669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1669), - [anon_sym___declspec] = ACTIONS(1667), - [anon_sym___based] = ACTIONS(1667), - [anon_sym___cdecl] = ACTIONS(1667), - [anon_sym___clrcall] = ACTIONS(1667), - [anon_sym___stdcall] = ACTIONS(1667), - [anon_sym___fastcall] = ACTIONS(1667), - [anon_sym___thiscall] = ACTIONS(1667), - [anon_sym___vectorcall] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_inline] = ACTIONS(1667), - [anon_sym_thread_local] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [anon_sym_volatile] = ACTIONS(1667), - [anon_sym_restrict] = ACTIONS(1667), - [anon_sym__Atomic] = ACTIONS(1667), - [anon_sym_mutable] = ACTIONS(1667), - [anon_sym_constexpr] = ACTIONS(1667), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [sym_primitive_type] = ACTIONS(1667), - [anon_sym_enum] = ACTIONS(1667), - [anon_sym_class] = ACTIONS(1667), - [anon_sym_struct] = ACTIONS(1667), - [anon_sym_union] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_switch] = ACTIONS(1667), - [anon_sym_case] = ACTIONS(1667), - [anon_sym_default] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_goto] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_sizeof] = ACTIONS(1667), - [sym_number_literal] = ACTIONS(1669), - [anon_sym_L_SQUOTE] = ACTIONS(1669), - [anon_sym_u_SQUOTE] = ACTIONS(1669), - [anon_sym_U_SQUOTE] = ACTIONS(1669), - [anon_sym_u8_SQUOTE] = ACTIONS(1669), - [anon_sym_SQUOTE] = ACTIONS(1669), - [anon_sym_L_DQUOTE] = ACTIONS(1669), - [anon_sym_u_DQUOTE] = ACTIONS(1669), - [anon_sym_U_DQUOTE] = ACTIONS(1669), - [anon_sym_u8_DQUOTE] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym_true] = ACTIONS(1667), - [sym_false] = ACTIONS(1667), - [sym_null] = ACTIONS(1667), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1667), - [anon_sym_virtual] = ACTIONS(1667), - [anon_sym_explicit] = ACTIONS(1667), - [sym_auto] = ACTIONS(1667), - [anon_sym_typename] = ACTIONS(1667), - [anon_sym_template] = ACTIONS(1667), - [anon_sym_operator] = ACTIONS(1667), - [anon_sym_delete] = ACTIONS(1667), - [anon_sym_throw] = ACTIONS(1667), - [anon_sym_namespace] = ACTIONS(1667), - [anon_sym_using] = ACTIONS(1667), - [anon_sym_static_assert] = ACTIONS(1667), - [anon_sym_co_return] = ACTIONS(1667), - [anon_sym_co_yield] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_co_await] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [sym_this] = ACTIONS(1667), - [sym_nullptr] = ACTIONS(1667), - [sym_alone_macro] = ACTIONS(1669), - [aux_sym_alone_macro_call_token1] = ACTIONS(1667), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_FORWARD] = ACTIONS(1667), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1667), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_PS_GET] = ACTIONS(1667), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1667), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1667), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1667), - [anon_sym_MOZ_COLD] = ACTIONS(1667), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1667), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1667), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1667), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1667), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1667), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1667), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1667), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1667), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1667), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1667), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1667), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1667), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_RAII] = ACTIONS(1667), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1667), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1667), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1667), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1667), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1667), - [sym_raw_string_literal] = ACTIONS(1669), - }, - [393] = { - [sym_identifier] = ACTIONS(1695), - [aux_sym_preproc_include_token1] = ACTIONS(1695), - [aux_sym_preproc_def_token1] = ACTIONS(1695), - [aux_sym_preproc_if_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1695), - [sym_preproc_directive] = ACTIONS(1695), - [anon_sym_LPAREN2] = ACTIONS(1697), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1697), - [anon_sym_AMP_AMP] = ACTIONS(1697), - [anon_sym_AMP] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1697), - [anon_sym_typedef] = ACTIONS(1695), - [anon_sym_extern] = ACTIONS(1695), - [anon_sym___attribute__] = ACTIONS(1695), - [anon_sym_COLON_COLON] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1697), - [anon_sym___declspec] = ACTIONS(1695), - [anon_sym___based] = ACTIONS(1695), - [anon_sym___cdecl] = ACTIONS(1695), - [anon_sym___clrcall] = ACTIONS(1695), - [anon_sym___stdcall] = ACTIONS(1695), - [anon_sym___fastcall] = ACTIONS(1695), - [anon_sym___thiscall] = ACTIONS(1695), - [anon_sym___vectorcall] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1697), - [anon_sym_RBRACE] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_static] = ACTIONS(1695), - [anon_sym_register] = ACTIONS(1695), - [anon_sym_inline] = ACTIONS(1695), - [anon_sym_thread_local] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1695), - [anon_sym_volatile] = ACTIONS(1695), - [anon_sym_restrict] = ACTIONS(1695), - [anon_sym__Atomic] = ACTIONS(1695), - [anon_sym_mutable] = ACTIONS(1695), - [anon_sym_constexpr] = ACTIONS(1695), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1695), - [anon_sym_enum] = ACTIONS(1695), - [anon_sym_class] = ACTIONS(1695), - [anon_sym_struct] = ACTIONS(1695), - [anon_sym_union] = ACTIONS(1695), - [anon_sym_if] = ACTIONS(1695), - [anon_sym_else] = ACTIONS(1695), - [anon_sym_switch] = ACTIONS(1695), - [anon_sym_case] = ACTIONS(1695), - [anon_sym_default] = ACTIONS(1695), - [anon_sym_while] = ACTIONS(1695), - [anon_sym_do] = ACTIONS(1695), - [anon_sym_for] = ACTIONS(1695), - [anon_sym_return] = ACTIONS(1695), - [anon_sym_break] = ACTIONS(1695), - [anon_sym_continue] = ACTIONS(1695), - [anon_sym_goto] = ACTIONS(1695), - [anon_sym_DASH_DASH] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1697), - [anon_sym_sizeof] = ACTIONS(1695), - [sym_number_literal] = ACTIONS(1697), - [anon_sym_L_SQUOTE] = ACTIONS(1697), - [anon_sym_u_SQUOTE] = ACTIONS(1697), - [anon_sym_U_SQUOTE] = ACTIONS(1697), - [anon_sym_u8_SQUOTE] = ACTIONS(1697), - [anon_sym_SQUOTE] = ACTIONS(1697), - [anon_sym_L_DQUOTE] = ACTIONS(1697), - [anon_sym_u_DQUOTE] = ACTIONS(1697), - [anon_sym_U_DQUOTE] = ACTIONS(1697), - [anon_sym_u8_DQUOTE] = ACTIONS(1697), - [anon_sym_DQUOTE] = ACTIONS(1697), - [sym_true] = ACTIONS(1695), - [sym_false] = ACTIONS(1695), - [sym_null] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1695), - [anon_sym_virtual] = ACTIONS(1695), - [anon_sym_explicit] = ACTIONS(1695), - [sym_auto] = ACTIONS(1695), - [anon_sym_typename] = ACTIONS(1695), - [anon_sym_template] = ACTIONS(1695), - [anon_sym_operator] = ACTIONS(1695), - [anon_sym_delete] = ACTIONS(1695), - [anon_sym_throw] = ACTIONS(1695), - [anon_sym_namespace] = ACTIONS(1695), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_static_assert] = ACTIONS(1695), - [anon_sym_co_return] = ACTIONS(1695), - [anon_sym_co_yield] = ACTIONS(1695), - [anon_sym_try] = ACTIONS(1695), - [anon_sym_co_await] = ACTIONS(1695), - [anon_sym_new] = ACTIONS(1695), - [sym_this] = ACTIONS(1695), - [sym_nullptr] = ACTIONS(1695), - [sym_alone_macro] = ACTIONS(1697), - [aux_sym_alone_macro_call_token1] = ACTIONS(1695), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_FORWARD] = ACTIONS(1695), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1695), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_PS_GET] = ACTIONS(1695), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1695), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1695), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1695), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1695), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1695), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1695), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1695), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1695), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1695), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1695), - [anon_sym_MOZ_COLD] = ACTIONS(1695), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1695), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1695), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1695), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1695), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1695), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1695), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1695), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1695), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1695), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1695), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1695), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1695), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1695), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1695), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1695), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1695), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1695), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1695), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1695), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1695), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_NONNULL] = ACTIONS(1695), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1695), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1695), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1695), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1695), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1695), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_NORETURN] = ACTIONS(1695), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1695), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1695), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1695), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1695), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1695), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1695), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1695), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1695), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1695), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1695), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1695), - [anon_sym_MOZ_RAII] = ACTIONS(1695), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1695), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1695), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1695), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1695), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1695), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1695), - [sym_raw_string_literal] = ACTIONS(1697), - }, - [394] = { - [sym_identifier] = ACTIONS(1581), - [aux_sym_preproc_include_token1] = ACTIONS(1581), - [aux_sym_preproc_def_token1] = ACTIONS(1581), - [aux_sym_preproc_if_token1] = ACTIONS(1581), - [aux_sym_preproc_if_token2] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1581), - [sym_preproc_directive] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_TILDE] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1581), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_typedef] = ACTIONS(1581), - [anon_sym_extern] = ACTIONS(1581), - [anon_sym___attribute__] = ACTIONS(1581), - [anon_sym_COLON_COLON] = ACTIONS(1583), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1583), - [anon_sym___declspec] = ACTIONS(1581), - [anon_sym___based] = ACTIONS(1581), - [anon_sym___cdecl] = ACTIONS(1581), - [anon_sym___clrcall] = ACTIONS(1581), - [anon_sym___stdcall] = ACTIONS(1581), - [anon_sym___fastcall] = ACTIONS(1581), - [anon_sym___thiscall] = ACTIONS(1581), - [anon_sym___vectorcall] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1581), - [anon_sym_register] = ACTIONS(1581), - [anon_sym_inline] = ACTIONS(1581), - [anon_sym_thread_local] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1581), - [anon_sym_volatile] = ACTIONS(1581), - [anon_sym_restrict] = ACTIONS(1581), - [anon_sym__Atomic] = ACTIONS(1581), - [anon_sym_mutable] = ACTIONS(1581), - [anon_sym_constexpr] = ACTIONS(1581), - [anon_sym_signed] = ACTIONS(1581), - [anon_sym_unsigned] = ACTIONS(1581), - [anon_sym_long] = ACTIONS(1581), - [anon_sym_short] = ACTIONS(1581), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_enum] = ACTIONS(1581), - [anon_sym_class] = ACTIONS(1581), - [anon_sym_struct] = ACTIONS(1581), - [anon_sym_union] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_else] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1581), - [anon_sym_case] = ACTIONS(1581), - [anon_sym_default] = ACTIONS(1581), - [anon_sym_while] = ACTIONS(1581), - [anon_sym_do] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1581), - [anon_sym_break] = ACTIONS(1581), - [anon_sym_continue] = ACTIONS(1581), - [anon_sym_goto] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(1583), - [anon_sym_L_SQUOTE] = ACTIONS(1583), - [anon_sym_u_SQUOTE] = ACTIONS(1583), - [anon_sym_U_SQUOTE] = ACTIONS(1583), - [anon_sym_u8_SQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1583), - [anon_sym_L_DQUOTE] = ACTIONS(1583), - [anon_sym_u_DQUOTE] = ACTIONS(1583), - [anon_sym_U_DQUOTE] = ACTIONS(1583), - [anon_sym_u8_DQUOTE] = ACTIONS(1583), - [anon_sym_DQUOTE] = ACTIONS(1583), - [sym_true] = ACTIONS(1581), - [sym_false] = ACTIONS(1581), - [sym_null] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1581), - [anon_sym_virtual] = ACTIONS(1581), - [anon_sym_explicit] = ACTIONS(1581), - [sym_auto] = ACTIONS(1581), - [anon_sym_typename] = ACTIONS(1581), - [anon_sym_template] = ACTIONS(1581), - [anon_sym_operator] = ACTIONS(1581), - [anon_sym_delete] = ACTIONS(1581), - [anon_sym_throw] = ACTIONS(1581), - [anon_sym_namespace] = ACTIONS(1581), - [anon_sym_using] = ACTIONS(1581), - [anon_sym_static_assert] = ACTIONS(1581), - [anon_sym_co_return] = ACTIONS(1581), - [anon_sym_co_yield] = ACTIONS(1581), - [anon_sym_try] = ACTIONS(1581), - [anon_sym_co_await] = ACTIONS(1581), - [anon_sym_new] = ACTIONS(1581), - [sym_this] = ACTIONS(1581), - [sym_nullptr] = ACTIONS(1581), - [sym_alone_macro] = ACTIONS(1583), - [aux_sym_alone_macro_call_token1] = ACTIONS(1581), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_FORWARD] = ACTIONS(1581), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1581), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_PS_GET] = ACTIONS(1581), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1581), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1581), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1581), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1581), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1581), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1581), - [anon_sym_MOZ_COLD] = ACTIONS(1581), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1581), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1581), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1581), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1581), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1581), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1581), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1581), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1581), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1581), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1581), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1581), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1581), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1581), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_NONNULL] = ACTIONS(1581), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1581), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1581), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1581), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1581), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1581), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1581), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1581), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1581), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1581), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1581), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1581), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1581), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1581), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1581), - [anon_sym_MOZ_RAII] = ACTIONS(1581), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1581), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1581), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1581), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1581), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1581), - [sym_raw_string_literal] = ACTIONS(1583), - }, - [395] = { - [sym_identifier] = ACTIONS(1615), - [aux_sym_preproc_include_token1] = ACTIONS(1615), - [aux_sym_preproc_def_token1] = ACTIONS(1615), - [aux_sym_preproc_if_token1] = ACTIONS(1615), - [aux_sym_preproc_if_token2] = ACTIONS(1615), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1615), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1615), - [sym_preproc_directive] = ACTIONS(1615), - [anon_sym_LPAREN2] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1617), - [anon_sym_AMP_AMP] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1615), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_typedef] = ACTIONS(1615), - [anon_sym_extern] = ACTIONS(1615), - [anon_sym___attribute__] = ACTIONS(1615), - [anon_sym_COLON_COLON] = ACTIONS(1617), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1617), - [anon_sym___declspec] = ACTIONS(1615), - [anon_sym___based] = ACTIONS(1615), - [anon_sym___cdecl] = ACTIONS(1615), - [anon_sym___clrcall] = ACTIONS(1615), - [anon_sym___stdcall] = ACTIONS(1615), - [anon_sym___fastcall] = ACTIONS(1615), - [anon_sym___thiscall] = ACTIONS(1615), - [anon_sym___vectorcall] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_register] = ACTIONS(1615), - [anon_sym_inline] = ACTIONS(1615), - [anon_sym_thread_local] = ACTIONS(1615), - [anon_sym_const] = ACTIONS(1615), - [anon_sym_volatile] = ACTIONS(1615), - [anon_sym_restrict] = ACTIONS(1615), - [anon_sym__Atomic] = ACTIONS(1615), - [anon_sym_mutable] = ACTIONS(1615), - [anon_sym_constexpr] = ACTIONS(1615), - [anon_sym_signed] = ACTIONS(1615), - [anon_sym_unsigned] = ACTIONS(1615), - [anon_sym_long] = ACTIONS(1615), - [anon_sym_short] = ACTIONS(1615), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1615), - [anon_sym_class] = ACTIONS(1615), - [anon_sym_struct] = ACTIONS(1615), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_if] = ACTIONS(1615), - [anon_sym_else] = ACTIONS(1981), - [anon_sym_switch] = ACTIONS(1615), - [anon_sym_case] = ACTIONS(1615), - [anon_sym_default] = ACTIONS(1615), - [anon_sym_while] = ACTIONS(1615), - [anon_sym_do] = ACTIONS(1615), - [anon_sym_for] = ACTIONS(1615), - [anon_sym_return] = ACTIONS(1615), - [anon_sym_break] = ACTIONS(1615), - [anon_sym_continue] = ACTIONS(1615), - [anon_sym_goto] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_sizeof] = ACTIONS(1615), - [sym_number_literal] = ACTIONS(1617), - [anon_sym_L_SQUOTE] = ACTIONS(1617), - [anon_sym_u_SQUOTE] = ACTIONS(1617), - [anon_sym_U_SQUOTE] = ACTIONS(1617), - [anon_sym_u8_SQUOTE] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_L_DQUOTE] = ACTIONS(1617), - [anon_sym_u_DQUOTE] = ACTIONS(1617), - [anon_sym_U_DQUOTE] = ACTIONS(1617), - [anon_sym_u8_DQUOTE] = ACTIONS(1617), - [anon_sym_DQUOTE] = ACTIONS(1617), - [sym_true] = ACTIONS(1615), - [sym_false] = ACTIONS(1615), - [sym_null] = ACTIONS(1615), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1615), - [anon_sym_virtual] = ACTIONS(1615), - [anon_sym_explicit] = ACTIONS(1615), - [sym_auto] = ACTIONS(1615), - [anon_sym_typename] = ACTIONS(1615), - [anon_sym_template] = ACTIONS(1615), - [anon_sym_operator] = ACTIONS(1615), - [anon_sym_delete] = ACTIONS(1615), - [anon_sym_throw] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1615), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_static_assert] = ACTIONS(1615), - [anon_sym_co_return] = ACTIONS(1615), - [anon_sym_co_yield] = ACTIONS(1615), - [anon_sym_try] = ACTIONS(1615), - [anon_sym_co_await] = ACTIONS(1615), - [anon_sym_new] = ACTIONS(1615), - [sym_this] = ACTIONS(1615), - [sym_nullptr] = ACTIONS(1615), - [sym_alone_macro] = ACTIONS(1617), - [aux_sym_alone_macro_call_token1] = ACTIONS(1615), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_FORWARD] = ACTIONS(1615), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1615), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_PS_GET] = ACTIONS(1615), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1615), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1615), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1615), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1615), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1615), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1615), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1615), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1615), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1615), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1615), - [anon_sym_MOZ_COLD] = ACTIONS(1615), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1615), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1615), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1615), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1615), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1615), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1615), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1615), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1615), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1615), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1615), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1615), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1615), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1615), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1615), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1615), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1615), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1615), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1615), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1615), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1615), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_NONNULL] = ACTIONS(1615), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1615), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1615), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1615), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1615), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1615), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_NORETURN] = ACTIONS(1615), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1615), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1615), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1615), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1615), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1615), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1615), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1615), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1615), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1615), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1615), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1615), - [anon_sym_MOZ_RAII] = ACTIONS(1615), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1615), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1615), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1615), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1615), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1615), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1615), - [sym_raw_string_literal] = ACTIONS(1617), - }, - [396] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [397] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [398] = { - [sym_identifier] = ACTIONS(1667), - [aux_sym_preproc_include_token1] = ACTIONS(1667), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1667), - [sym_preproc_directive] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_BANG] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_typedef] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym___attribute__] = ACTIONS(1667), - [anon_sym_COLON_COLON] = ACTIONS(1669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1669), - [anon_sym___declspec] = ACTIONS(1667), - [anon_sym___based] = ACTIONS(1667), - [anon_sym___cdecl] = ACTIONS(1667), - [anon_sym___clrcall] = ACTIONS(1667), - [anon_sym___stdcall] = ACTIONS(1667), - [anon_sym___fastcall] = ACTIONS(1667), - [anon_sym___thiscall] = ACTIONS(1667), - [anon_sym___vectorcall] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_inline] = ACTIONS(1667), - [anon_sym_thread_local] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [anon_sym_volatile] = ACTIONS(1667), - [anon_sym_restrict] = ACTIONS(1667), - [anon_sym__Atomic] = ACTIONS(1667), - [anon_sym_mutable] = ACTIONS(1667), - [anon_sym_constexpr] = ACTIONS(1667), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [sym_primitive_type] = ACTIONS(1667), - [anon_sym_enum] = ACTIONS(1667), - [anon_sym_class] = ACTIONS(1667), - [anon_sym_struct] = ACTIONS(1667), - [anon_sym_union] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_switch] = ACTIONS(1667), - [anon_sym_case] = ACTIONS(1667), - [anon_sym_default] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_goto] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_sizeof] = ACTIONS(1667), - [sym_number_literal] = ACTIONS(1669), - [anon_sym_L_SQUOTE] = ACTIONS(1669), - [anon_sym_u_SQUOTE] = ACTIONS(1669), - [anon_sym_U_SQUOTE] = ACTIONS(1669), - [anon_sym_u8_SQUOTE] = ACTIONS(1669), - [anon_sym_SQUOTE] = ACTIONS(1669), - [anon_sym_L_DQUOTE] = ACTIONS(1669), - [anon_sym_u_DQUOTE] = ACTIONS(1669), - [anon_sym_U_DQUOTE] = ACTIONS(1669), - [anon_sym_u8_DQUOTE] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym_true] = ACTIONS(1667), - [sym_false] = ACTIONS(1667), - [sym_null] = ACTIONS(1667), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1667), - [anon_sym_virtual] = ACTIONS(1667), - [anon_sym_explicit] = ACTIONS(1667), - [sym_auto] = ACTIONS(1667), - [anon_sym_typename] = ACTIONS(1667), - [anon_sym_template] = ACTIONS(1667), - [anon_sym_operator] = ACTIONS(1667), - [anon_sym_delete] = ACTIONS(1667), - [anon_sym_throw] = ACTIONS(1667), - [anon_sym_namespace] = ACTIONS(1667), - [anon_sym_using] = ACTIONS(1667), - [anon_sym_static_assert] = ACTIONS(1667), - [anon_sym_co_return] = ACTIONS(1667), - [anon_sym_co_yield] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_co_await] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [sym_this] = ACTIONS(1667), - [sym_nullptr] = ACTIONS(1667), - [sym_alone_macro] = ACTIONS(1669), - [aux_sym_alone_macro_call_token1] = ACTIONS(1667), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_FORWARD] = ACTIONS(1667), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1667), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_PS_GET] = ACTIONS(1667), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1667), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1667), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1667), - [anon_sym_MOZ_COLD] = ACTIONS(1667), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1667), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1667), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1667), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1667), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1667), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1667), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1667), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1667), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1667), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1667), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1667), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1667), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_RAII] = ACTIONS(1667), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1667), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1667), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1667), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1667), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1667), - [sym_raw_string_literal] = ACTIONS(1669), - }, - [399] = { - [ts_builtin_sym_end] = ACTIONS(1673), - [sym_identifier] = ACTIONS(1671), - [aux_sym_preproc_include_token1] = ACTIONS(1671), - [aux_sym_preproc_def_token1] = ACTIONS(1671), - [aux_sym_preproc_if_token1] = ACTIONS(1671), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1671), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1671), - [sym_preproc_directive] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1673), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_AMP_AMP] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_typedef] = ACTIONS(1671), - [anon_sym_extern] = ACTIONS(1671), - [anon_sym___attribute__] = ACTIONS(1671), - [anon_sym_COLON_COLON] = ACTIONS(1673), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1673), - [anon_sym___declspec] = ACTIONS(1671), - [anon_sym___based] = ACTIONS(1671), - [anon_sym___cdecl] = ACTIONS(1671), - [anon_sym___clrcall] = ACTIONS(1671), - [anon_sym___stdcall] = ACTIONS(1671), - [anon_sym___fastcall] = ACTIONS(1671), - [anon_sym___thiscall] = ACTIONS(1671), - [anon_sym___vectorcall] = ACTIONS(1671), - [anon_sym_LBRACE] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_register] = ACTIONS(1671), - [anon_sym_inline] = ACTIONS(1671), - [anon_sym_thread_local] = ACTIONS(1671), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_volatile] = ACTIONS(1671), - [anon_sym_restrict] = ACTIONS(1671), - [anon_sym__Atomic] = ACTIONS(1671), - [anon_sym_mutable] = ACTIONS(1671), - [anon_sym_constexpr] = ACTIONS(1671), - [anon_sym_signed] = ACTIONS(1671), - [anon_sym_unsigned] = ACTIONS(1671), - [anon_sym_long] = ACTIONS(1671), - [anon_sym_short] = ACTIONS(1671), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_enum] = ACTIONS(1671), - [anon_sym_class] = ACTIONS(1671), - [anon_sym_struct] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_if] = ACTIONS(1671), - [anon_sym_else] = ACTIONS(1671), - [anon_sym_switch] = ACTIONS(1671), - [anon_sym_case] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_while] = ACTIONS(1671), - [anon_sym_do] = ACTIONS(1671), - [anon_sym_for] = ACTIONS(1671), - [anon_sym_return] = ACTIONS(1671), - [anon_sym_break] = ACTIONS(1671), - [anon_sym_continue] = ACTIONS(1671), - [anon_sym_goto] = ACTIONS(1671), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1671), - [sym_number_literal] = ACTIONS(1673), - [anon_sym_L_SQUOTE] = ACTIONS(1673), - [anon_sym_u_SQUOTE] = ACTIONS(1673), - [anon_sym_U_SQUOTE] = ACTIONS(1673), - [anon_sym_u8_SQUOTE] = ACTIONS(1673), - [anon_sym_SQUOTE] = ACTIONS(1673), - [anon_sym_L_DQUOTE] = ACTIONS(1673), - [anon_sym_u_DQUOTE] = ACTIONS(1673), - [anon_sym_U_DQUOTE] = ACTIONS(1673), - [anon_sym_u8_DQUOTE] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1673), - [sym_true] = ACTIONS(1671), - [sym_false] = ACTIONS(1671), - [sym_null] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1671), - [anon_sym_virtual] = ACTIONS(1671), - [anon_sym_explicit] = ACTIONS(1671), - [sym_auto] = ACTIONS(1671), - [anon_sym_typename] = ACTIONS(1671), - [anon_sym_template] = ACTIONS(1671), - [anon_sym_operator] = ACTIONS(1671), - [anon_sym_delete] = ACTIONS(1671), - [anon_sym_throw] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1671), - [anon_sym_using] = ACTIONS(1671), - [anon_sym_static_assert] = ACTIONS(1671), - [anon_sym_co_return] = ACTIONS(1671), - [anon_sym_co_yield] = ACTIONS(1671), - [anon_sym_try] = ACTIONS(1671), - [anon_sym_co_await] = ACTIONS(1671), - [anon_sym_new] = ACTIONS(1671), - [sym_this] = ACTIONS(1671), - [sym_nullptr] = ACTIONS(1671), - [sym_alone_macro] = ACTIONS(1673), - [aux_sym_alone_macro_call_token1] = ACTIONS(1671), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_FORWARD] = ACTIONS(1671), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1671), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_PS_GET] = ACTIONS(1671), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1671), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1671), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1671), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1671), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1671), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1671), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1671), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1671), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1671), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1671), - [anon_sym_MOZ_COLD] = ACTIONS(1671), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1671), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1671), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1671), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1671), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1671), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1671), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1671), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1671), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1671), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1671), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1671), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1671), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1671), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1671), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1671), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1671), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1671), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1671), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1671), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1671), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_NONNULL] = ACTIONS(1671), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1671), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1671), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1671), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1671), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1671), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_NORETURN] = ACTIONS(1671), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1671), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1671), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1671), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1671), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1671), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1671), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1671), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1671), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1671), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1671), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1671), - [anon_sym_MOZ_RAII] = ACTIONS(1671), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1671), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1671), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1671), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1671), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1671), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1671), - [sym_raw_string_literal] = ACTIONS(1673), - }, - [400] = { - [ts_builtin_sym_end] = ACTIONS(1563), - [sym_identifier] = ACTIONS(1561), - [aux_sym_preproc_include_token1] = ACTIONS(1561), - [aux_sym_preproc_def_token1] = ACTIONS(1561), - [aux_sym_preproc_if_token1] = ACTIONS(1561), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1561), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1561), - [sym_preproc_directive] = ACTIONS(1561), - [anon_sym_LPAREN2] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_AMP_AMP] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_typedef] = ACTIONS(1561), - [anon_sym_extern] = ACTIONS(1561), - [anon_sym___attribute__] = ACTIONS(1561), - [anon_sym_COLON_COLON] = ACTIONS(1563), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1563), - [anon_sym___declspec] = ACTIONS(1561), - [anon_sym___based] = ACTIONS(1561), - [anon_sym___cdecl] = ACTIONS(1561), - [anon_sym___clrcall] = ACTIONS(1561), - [anon_sym___stdcall] = ACTIONS(1561), - [anon_sym___fastcall] = ACTIONS(1561), - [anon_sym___thiscall] = ACTIONS(1561), - [anon_sym___vectorcall] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_static] = ACTIONS(1561), - [anon_sym_register] = ACTIONS(1561), - [anon_sym_inline] = ACTIONS(1561), - [anon_sym_thread_local] = ACTIONS(1561), - [anon_sym_const] = ACTIONS(1561), - [anon_sym_volatile] = ACTIONS(1561), - [anon_sym_restrict] = ACTIONS(1561), - [anon_sym__Atomic] = ACTIONS(1561), - [anon_sym_mutable] = ACTIONS(1561), - [anon_sym_constexpr] = ACTIONS(1561), - [anon_sym_signed] = ACTIONS(1561), - [anon_sym_unsigned] = ACTIONS(1561), - [anon_sym_long] = ACTIONS(1561), - [anon_sym_short] = ACTIONS(1561), - [sym_primitive_type] = ACTIONS(1561), - [anon_sym_enum] = ACTIONS(1561), - [anon_sym_class] = ACTIONS(1561), - [anon_sym_struct] = ACTIONS(1561), - [anon_sym_union] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1561), - [anon_sym_else] = ACTIONS(1561), - [anon_sym_switch] = ACTIONS(1561), - [anon_sym_case] = ACTIONS(1561), - [anon_sym_default] = ACTIONS(1561), - [anon_sym_while] = ACTIONS(1561), - [anon_sym_do] = ACTIONS(1561), - [anon_sym_for] = ACTIONS(1561), - [anon_sym_return] = ACTIONS(1561), - [anon_sym_break] = ACTIONS(1561), - [anon_sym_continue] = ACTIONS(1561), - [anon_sym_goto] = ACTIONS(1561), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_sizeof] = ACTIONS(1561), - [sym_number_literal] = ACTIONS(1563), - [anon_sym_L_SQUOTE] = ACTIONS(1563), - [anon_sym_u_SQUOTE] = ACTIONS(1563), - [anon_sym_U_SQUOTE] = ACTIONS(1563), - [anon_sym_u8_SQUOTE] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_L_DQUOTE] = ACTIONS(1563), - [anon_sym_u_DQUOTE] = ACTIONS(1563), - [anon_sym_U_DQUOTE] = ACTIONS(1563), - [anon_sym_u8_DQUOTE] = ACTIONS(1563), - [anon_sym_DQUOTE] = ACTIONS(1563), - [sym_true] = ACTIONS(1561), - [sym_false] = ACTIONS(1561), - [sym_null] = ACTIONS(1561), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1561), - [anon_sym_virtual] = ACTIONS(1561), - [anon_sym_explicit] = ACTIONS(1561), - [sym_auto] = ACTIONS(1561), - [anon_sym_typename] = ACTIONS(1561), - [anon_sym_template] = ACTIONS(1561), - [anon_sym_operator] = ACTIONS(1561), - [anon_sym_delete] = ACTIONS(1561), - [anon_sym_throw] = ACTIONS(1561), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_using] = ACTIONS(1561), - [anon_sym_static_assert] = ACTIONS(1561), - [anon_sym_co_return] = ACTIONS(1561), - [anon_sym_co_yield] = ACTIONS(1561), - [anon_sym_try] = ACTIONS(1561), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1561), - [sym_this] = ACTIONS(1561), - [sym_nullptr] = ACTIONS(1561), - [sym_alone_macro] = ACTIONS(1563), - [aux_sym_alone_macro_call_token1] = ACTIONS(1561), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_FORWARD] = ACTIONS(1561), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1561), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_PS_GET] = ACTIONS(1561), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1561), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1561), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1561), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1561), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1561), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1561), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1561), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1561), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1561), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1561), - [anon_sym_MOZ_COLD] = ACTIONS(1561), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1561), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1561), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1561), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1561), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1561), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1561), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1561), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1561), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1561), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1561), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1561), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1561), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1561), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1561), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1561), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1561), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1561), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1561), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1561), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1561), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_NONNULL] = ACTIONS(1561), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1561), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1561), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1561), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1561), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1561), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_NORETURN] = ACTIONS(1561), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1561), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1561), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1561), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1561), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1561), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1561), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1561), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1561), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1561), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1561), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1561), - [anon_sym_MOZ_RAII] = ACTIONS(1561), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1561), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1561), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1561), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1561), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1561), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1561), - [sym_raw_string_literal] = ACTIONS(1563), - }, - [401] = { - [sym_identifier] = ACTIONS(1593), - [aux_sym_preproc_include_token1] = ACTIONS(1593), - [aux_sym_preproc_def_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token2] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1593), - [sym_preproc_directive] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_typedef] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym___attribute__] = ACTIONS(1593), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1593), - [anon_sym___based] = ACTIONS(1593), - [anon_sym___cdecl] = ACTIONS(1593), - [anon_sym___clrcall] = ACTIONS(1593), - [anon_sym___stdcall] = ACTIONS(1593), - [anon_sym___fastcall] = ACTIONS(1593), - [anon_sym___thiscall] = ACTIONS(1593), - [anon_sym___vectorcall] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_inline] = ACTIONS(1593), - [anon_sym_thread_local] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_volatile] = ACTIONS(1593), - [anon_sym_restrict] = ACTIONS(1593), - [anon_sym__Atomic] = ACTIONS(1593), - [anon_sym_mutable] = ACTIONS(1593), - [anon_sym_constexpr] = ACTIONS(1593), - [anon_sym_signed] = ACTIONS(1593), - [anon_sym_unsigned] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [sym_primitive_type] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_class] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_else] = ACTIONS(1593), - [anon_sym_switch] = ACTIONS(1593), - [anon_sym_case] = ACTIONS(1593), - [anon_sym_default] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_goto] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_PLUS_PLUS] = ACTIONS(1595), - [anon_sym_sizeof] = ACTIONS(1593), - [sym_number_literal] = ACTIONS(1595), - [anon_sym_L_SQUOTE] = ACTIONS(1595), - [anon_sym_u_SQUOTE] = ACTIONS(1595), - [anon_sym_U_SQUOTE] = ACTIONS(1595), - [anon_sym_u8_SQUOTE] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1595), - [anon_sym_L_DQUOTE] = ACTIONS(1595), - [anon_sym_u_DQUOTE] = ACTIONS(1595), - [anon_sym_U_DQUOTE] = ACTIONS(1595), - [anon_sym_u8_DQUOTE] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1593), - [anon_sym_virtual] = ACTIONS(1593), - [anon_sym_explicit] = ACTIONS(1593), - [sym_auto] = ACTIONS(1593), - [anon_sym_typename] = ACTIONS(1593), - [anon_sym_template] = ACTIONS(1593), - [anon_sym_operator] = ACTIONS(1593), - [anon_sym_delete] = ACTIONS(1593), - [anon_sym_throw] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1593), - [anon_sym_using] = ACTIONS(1593), - [anon_sym_static_assert] = ACTIONS(1593), - [anon_sym_co_return] = ACTIONS(1593), - [anon_sym_co_yield] = ACTIONS(1593), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_co_await] = ACTIONS(1593), - [anon_sym_new] = ACTIONS(1593), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), - [sym_alone_macro] = ACTIONS(1595), - [aux_sym_alone_macro_call_token1] = ACTIONS(1593), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_FORWARD] = ACTIONS(1593), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1593), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_PS_GET] = ACTIONS(1593), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1593), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1593), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1593), - [anon_sym_MOZ_COLD] = ACTIONS(1593), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1593), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1593), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1593), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1593), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1593), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1593), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1593), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1593), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1593), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1593), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1593), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1593), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_RAII] = ACTIONS(1593), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1593), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1593), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1593), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1593), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1593), - [sym_raw_string_literal] = ACTIONS(1595), - }, - [402] = { - [sym_identifier] = ACTIONS(1593), - [aux_sym_preproc_include_token1] = ACTIONS(1593), - [aux_sym_preproc_def_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token2] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1593), - [sym_preproc_directive] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_typedef] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym___attribute__] = ACTIONS(1593), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1593), - [anon_sym___based] = ACTIONS(1593), - [anon_sym___cdecl] = ACTIONS(1593), - [anon_sym___clrcall] = ACTIONS(1593), - [anon_sym___stdcall] = ACTIONS(1593), - [anon_sym___fastcall] = ACTIONS(1593), - [anon_sym___thiscall] = ACTIONS(1593), - [anon_sym___vectorcall] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_inline] = ACTIONS(1593), - [anon_sym_thread_local] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_volatile] = ACTIONS(1593), - [anon_sym_restrict] = ACTIONS(1593), - [anon_sym__Atomic] = ACTIONS(1593), - [anon_sym_mutable] = ACTIONS(1593), - [anon_sym_constexpr] = ACTIONS(1593), - [anon_sym_signed] = ACTIONS(1593), - [anon_sym_unsigned] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [sym_primitive_type] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_class] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_else] = ACTIONS(1593), - [anon_sym_switch] = ACTIONS(1593), - [anon_sym_case] = ACTIONS(1593), - [anon_sym_default] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_goto] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_PLUS_PLUS] = ACTIONS(1595), - [anon_sym_sizeof] = ACTIONS(1593), - [sym_number_literal] = ACTIONS(1595), - [anon_sym_L_SQUOTE] = ACTIONS(1595), - [anon_sym_u_SQUOTE] = ACTIONS(1595), - [anon_sym_U_SQUOTE] = ACTIONS(1595), - [anon_sym_u8_SQUOTE] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1595), - [anon_sym_L_DQUOTE] = ACTIONS(1595), - [anon_sym_u_DQUOTE] = ACTIONS(1595), - [anon_sym_U_DQUOTE] = ACTIONS(1595), - [anon_sym_u8_DQUOTE] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1593), - [anon_sym_virtual] = ACTIONS(1593), - [anon_sym_explicit] = ACTIONS(1593), - [sym_auto] = ACTIONS(1593), - [anon_sym_typename] = ACTIONS(1593), - [anon_sym_template] = ACTIONS(1593), - [anon_sym_operator] = ACTIONS(1593), - [anon_sym_delete] = ACTIONS(1593), - [anon_sym_throw] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1593), - [anon_sym_using] = ACTIONS(1593), - [anon_sym_static_assert] = ACTIONS(1593), - [anon_sym_co_return] = ACTIONS(1593), - [anon_sym_co_yield] = ACTIONS(1593), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_co_await] = ACTIONS(1593), - [anon_sym_new] = ACTIONS(1593), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), - [sym_alone_macro] = ACTIONS(1595), - [aux_sym_alone_macro_call_token1] = ACTIONS(1593), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_FORWARD] = ACTIONS(1593), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1593), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_PS_GET] = ACTIONS(1593), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1593), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1593), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1593), - [anon_sym_MOZ_COLD] = ACTIONS(1593), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1593), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1593), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1593), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1593), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1593), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1593), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1593), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1593), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1593), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1593), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1593), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1593), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_RAII] = ACTIONS(1593), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1593), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1593), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1593), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1593), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1593), - [sym_raw_string_literal] = ACTIONS(1595), - }, - [403] = { - [sym_identifier] = ACTIONS(1557), - [aux_sym_preproc_include_token1] = ACTIONS(1557), - [aux_sym_preproc_def_token1] = ACTIONS(1557), - [aux_sym_preproc_if_token1] = ACTIONS(1557), - [aux_sym_preproc_if_token2] = ACTIONS(1557), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1557), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1557), - [sym_preproc_directive] = ACTIONS(1557), - [anon_sym_LPAREN2] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_typedef] = ACTIONS(1557), - [anon_sym_extern] = ACTIONS(1557), - [anon_sym___attribute__] = ACTIONS(1557), - [anon_sym_COLON_COLON] = ACTIONS(1559), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1559), - [anon_sym___declspec] = ACTIONS(1557), - [anon_sym___based] = ACTIONS(1557), - [anon_sym___cdecl] = ACTIONS(1557), - [anon_sym___clrcall] = ACTIONS(1557), - [anon_sym___stdcall] = ACTIONS(1557), - [anon_sym___fastcall] = ACTIONS(1557), - [anon_sym___thiscall] = ACTIONS(1557), - [anon_sym___vectorcall] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_register] = ACTIONS(1557), - [anon_sym_inline] = ACTIONS(1557), - [anon_sym_thread_local] = ACTIONS(1557), - [anon_sym_const] = ACTIONS(1557), - [anon_sym_volatile] = ACTIONS(1557), - [anon_sym_restrict] = ACTIONS(1557), - [anon_sym__Atomic] = ACTIONS(1557), - [anon_sym_mutable] = ACTIONS(1557), - [anon_sym_constexpr] = ACTIONS(1557), - [anon_sym_signed] = ACTIONS(1557), - [anon_sym_unsigned] = ACTIONS(1557), - [anon_sym_long] = ACTIONS(1557), - [anon_sym_short] = ACTIONS(1557), - [sym_primitive_type] = ACTIONS(1557), - [anon_sym_enum] = ACTIONS(1557), - [anon_sym_class] = ACTIONS(1557), - [anon_sym_struct] = ACTIONS(1557), - [anon_sym_union] = ACTIONS(1557), - [anon_sym_if] = ACTIONS(1557), - [anon_sym_else] = ACTIONS(1557), - [anon_sym_switch] = ACTIONS(1557), - [anon_sym_case] = ACTIONS(1557), - [anon_sym_default] = ACTIONS(1557), - [anon_sym_while] = ACTIONS(1557), - [anon_sym_do] = ACTIONS(1557), - [anon_sym_for] = ACTIONS(1557), - [anon_sym_return] = ACTIONS(1557), - [anon_sym_break] = ACTIONS(1557), - [anon_sym_continue] = ACTIONS(1557), - [anon_sym_goto] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_sizeof] = ACTIONS(1557), - [sym_number_literal] = ACTIONS(1559), - [anon_sym_L_SQUOTE] = ACTIONS(1559), - [anon_sym_u_SQUOTE] = ACTIONS(1559), - [anon_sym_U_SQUOTE] = ACTIONS(1559), - [anon_sym_u8_SQUOTE] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1559), - [anon_sym_L_DQUOTE] = ACTIONS(1559), - [anon_sym_u_DQUOTE] = ACTIONS(1559), - [anon_sym_U_DQUOTE] = ACTIONS(1559), - [anon_sym_u8_DQUOTE] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1557), - [anon_sym_virtual] = ACTIONS(1557), - [anon_sym_explicit] = ACTIONS(1557), - [sym_auto] = ACTIONS(1557), - [anon_sym_typename] = ACTIONS(1557), - [anon_sym_template] = ACTIONS(1557), - [anon_sym_operator] = ACTIONS(1557), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_throw] = ACTIONS(1557), - [anon_sym_namespace] = ACTIONS(1557), - [anon_sym_using] = ACTIONS(1557), - [anon_sym_static_assert] = ACTIONS(1557), - [anon_sym_co_return] = ACTIONS(1557), - [anon_sym_co_yield] = ACTIONS(1557), - [anon_sym_try] = ACTIONS(1557), - [anon_sym_co_await] = ACTIONS(1557), - [anon_sym_new] = ACTIONS(1557), - [sym_this] = ACTIONS(1557), - [sym_nullptr] = ACTIONS(1557), - [sym_alone_macro] = ACTIONS(1559), - [aux_sym_alone_macro_call_token1] = ACTIONS(1557), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_FORWARD] = ACTIONS(1557), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1557), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_PS_GET] = ACTIONS(1557), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1557), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1557), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1557), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1557), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1557), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1557), - [anon_sym_MOZ_COLD] = ACTIONS(1557), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1557), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1557), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1557), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1557), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1557), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1557), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1557), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1557), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1557), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1557), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1557), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1557), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1557), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_NONNULL] = ACTIONS(1557), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1557), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1557), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1557), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1557), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1557), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1557), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1557), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1557), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1557), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1557), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1557), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1557), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1557), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1557), - [anon_sym_MOZ_RAII] = ACTIONS(1557), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1557), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1557), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1557), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1557), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1557), - [sym_raw_string_literal] = ACTIONS(1559), - }, - [404] = { - [sym_identifier] = ACTIONS(1565), - [aux_sym_preproc_include_token1] = ACTIONS(1565), - [aux_sym_preproc_def_token1] = ACTIONS(1565), - [aux_sym_preproc_if_token1] = ACTIONS(1565), - [aux_sym_preproc_if_token2] = ACTIONS(1565), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1565), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1565), - [sym_preproc_directive] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1567), - [anon_sym_TILDE] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_AMP_AMP] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_typedef] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym___attribute__] = ACTIONS(1565), - [anon_sym_COLON_COLON] = ACTIONS(1567), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1567), - [anon_sym___declspec] = ACTIONS(1565), - [anon_sym___based] = ACTIONS(1565), - [anon_sym___cdecl] = ACTIONS(1565), - [anon_sym___clrcall] = ACTIONS(1565), - [anon_sym___stdcall] = ACTIONS(1565), - [anon_sym___fastcall] = ACTIONS(1565), - [anon_sym___thiscall] = ACTIONS(1565), - [anon_sym___vectorcall] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1565), - [anon_sym_register] = ACTIONS(1565), - [anon_sym_inline] = ACTIONS(1565), - [anon_sym_thread_local] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [anon_sym_volatile] = ACTIONS(1565), - [anon_sym_restrict] = ACTIONS(1565), - [anon_sym__Atomic] = ACTIONS(1565), - [anon_sym_mutable] = ACTIONS(1565), - [anon_sym_constexpr] = ACTIONS(1565), - [anon_sym_signed] = ACTIONS(1565), - [anon_sym_unsigned] = ACTIONS(1565), - [anon_sym_long] = ACTIONS(1565), - [anon_sym_short] = ACTIONS(1565), - [sym_primitive_type] = ACTIONS(1565), - [anon_sym_enum] = ACTIONS(1565), - [anon_sym_class] = ACTIONS(1565), - [anon_sym_struct] = ACTIONS(1565), - [anon_sym_union] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_switch] = ACTIONS(1565), - [anon_sym_case] = ACTIONS(1565), - [anon_sym_default] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_goto] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_PLUS_PLUS] = ACTIONS(1567), - [anon_sym_sizeof] = ACTIONS(1565), - [sym_number_literal] = ACTIONS(1567), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1567), - [anon_sym_u_DQUOTE] = ACTIONS(1567), - [anon_sym_U_DQUOTE] = ACTIONS(1567), - [anon_sym_u8_DQUOTE] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym_true] = ACTIONS(1565), - [sym_false] = ACTIONS(1565), - [sym_null] = ACTIONS(1565), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1565), - [anon_sym_virtual] = ACTIONS(1565), - [anon_sym_explicit] = ACTIONS(1565), - [sym_auto] = ACTIONS(1565), - [anon_sym_typename] = ACTIONS(1565), - [anon_sym_template] = ACTIONS(1565), - [anon_sym_operator] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_throw] = ACTIONS(1565), - [anon_sym_namespace] = ACTIONS(1565), - [anon_sym_using] = ACTIONS(1565), - [anon_sym_static_assert] = ACTIONS(1565), - [anon_sym_co_return] = ACTIONS(1565), - [anon_sym_co_yield] = ACTIONS(1565), - [anon_sym_try] = ACTIONS(1565), - [anon_sym_co_await] = ACTIONS(1565), - [anon_sym_new] = ACTIONS(1565), - [sym_this] = ACTIONS(1565), - [sym_nullptr] = ACTIONS(1565), - [sym_alone_macro] = ACTIONS(1567), - [aux_sym_alone_macro_call_token1] = ACTIONS(1565), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_FORWARD] = ACTIONS(1565), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1565), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_PS_GET] = ACTIONS(1565), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1565), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1565), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1565), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1565), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1565), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1565), - [anon_sym_MOZ_COLD] = ACTIONS(1565), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1565), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1565), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1565), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1565), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1565), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1565), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1565), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1565), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1565), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1565), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1565), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1565), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1565), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_NONNULL] = ACTIONS(1565), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1565), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1565), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1565), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1565), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1565), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1565), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1565), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1565), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1565), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1565), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1565), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1565), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1565), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1565), - [anon_sym_MOZ_RAII] = ACTIONS(1565), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1565), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1565), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1565), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1565), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1565), - [sym_raw_string_literal] = ACTIONS(1567), - }, - [405] = { - [sym_identifier] = ACTIONS(1561), - [aux_sym_preproc_include_token1] = ACTIONS(1561), - [aux_sym_preproc_def_token1] = ACTIONS(1561), - [aux_sym_preproc_if_token1] = ACTIONS(1561), - [aux_sym_preproc_if_token2] = ACTIONS(1561), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1561), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1561), - [sym_preproc_directive] = ACTIONS(1561), - [anon_sym_LPAREN2] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_AMP_AMP] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_typedef] = ACTIONS(1561), - [anon_sym_extern] = ACTIONS(1561), - [anon_sym___attribute__] = ACTIONS(1561), - [anon_sym_COLON_COLON] = ACTIONS(1563), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1563), - [anon_sym___declspec] = ACTIONS(1561), - [anon_sym___based] = ACTIONS(1561), - [anon_sym___cdecl] = ACTIONS(1561), - [anon_sym___clrcall] = ACTIONS(1561), - [anon_sym___stdcall] = ACTIONS(1561), - [anon_sym___fastcall] = ACTIONS(1561), - [anon_sym___thiscall] = ACTIONS(1561), - [anon_sym___vectorcall] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_static] = ACTIONS(1561), - [anon_sym_register] = ACTIONS(1561), - [anon_sym_inline] = ACTIONS(1561), - [anon_sym_thread_local] = ACTIONS(1561), - [anon_sym_const] = ACTIONS(1561), - [anon_sym_volatile] = ACTIONS(1561), - [anon_sym_restrict] = ACTIONS(1561), - [anon_sym__Atomic] = ACTIONS(1561), - [anon_sym_mutable] = ACTIONS(1561), - [anon_sym_constexpr] = ACTIONS(1561), - [anon_sym_signed] = ACTIONS(1561), - [anon_sym_unsigned] = ACTIONS(1561), - [anon_sym_long] = ACTIONS(1561), - [anon_sym_short] = ACTIONS(1561), - [sym_primitive_type] = ACTIONS(1561), - [anon_sym_enum] = ACTIONS(1561), - [anon_sym_class] = ACTIONS(1561), - [anon_sym_struct] = ACTIONS(1561), - [anon_sym_union] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1561), - [anon_sym_else] = ACTIONS(1561), - [anon_sym_switch] = ACTIONS(1561), - [anon_sym_case] = ACTIONS(1561), - [anon_sym_default] = ACTIONS(1561), - [anon_sym_while] = ACTIONS(1561), - [anon_sym_do] = ACTIONS(1561), - [anon_sym_for] = ACTIONS(1561), - [anon_sym_return] = ACTIONS(1561), - [anon_sym_break] = ACTIONS(1561), - [anon_sym_continue] = ACTIONS(1561), - [anon_sym_goto] = ACTIONS(1561), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_sizeof] = ACTIONS(1561), - [sym_number_literal] = ACTIONS(1563), - [anon_sym_L_SQUOTE] = ACTIONS(1563), - [anon_sym_u_SQUOTE] = ACTIONS(1563), - [anon_sym_U_SQUOTE] = ACTIONS(1563), - [anon_sym_u8_SQUOTE] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_L_DQUOTE] = ACTIONS(1563), - [anon_sym_u_DQUOTE] = ACTIONS(1563), - [anon_sym_U_DQUOTE] = ACTIONS(1563), - [anon_sym_u8_DQUOTE] = ACTIONS(1563), - [anon_sym_DQUOTE] = ACTIONS(1563), - [sym_true] = ACTIONS(1561), - [sym_false] = ACTIONS(1561), - [sym_null] = ACTIONS(1561), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1561), - [anon_sym_virtual] = ACTIONS(1561), - [anon_sym_explicit] = ACTIONS(1561), - [sym_auto] = ACTIONS(1561), - [anon_sym_typename] = ACTIONS(1561), - [anon_sym_template] = ACTIONS(1561), - [anon_sym_operator] = ACTIONS(1561), - [anon_sym_delete] = ACTIONS(1561), - [anon_sym_throw] = ACTIONS(1561), - [anon_sym_namespace] = ACTIONS(1561), - [anon_sym_using] = ACTIONS(1561), - [anon_sym_static_assert] = ACTIONS(1561), - [anon_sym_co_return] = ACTIONS(1561), - [anon_sym_co_yield] = ACTIONS(1561), - [anon_sym_try] = ACTIONS(1561), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1561), - [sym_this] = ACTIONS(1561), - [sym_nullptr] = ACTIONS(1561), - [sym_alone_macro] = ACTIONS(1563), - [aux_sym_alone_macro_call_token1] = ACTIONS(1561), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_FORWARD] = ACTIONS(1561), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1561), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_PS_GET] = ACTIONS(1561), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1561), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1561), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1561), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1561), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1561), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1561), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1561), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1561), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1561), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1561), - [anon_sym_MOZ_COLD] = ACTIONS(1561), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1561), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1561), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1561), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1561), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1561), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1561), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1561), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1561), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1561), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1561), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1561), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1561), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1561), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1561), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1561), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1561), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1561), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1561), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1561), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1561), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_NONNULL] = ACTIONS(1561), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1561), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1561), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1561), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1561), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1561), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_NORETURN] = ACTIONS(1561), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1561), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1561), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1561), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1561), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1561), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1561), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1561), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1561), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1561), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1561), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1561), - [anon_sym_MOZ_RAII] = ACTIONS(1561), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1561), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1561), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1561), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1561), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1561), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1561), - [sym_raw_string_literal] = ACTIONS(1563), - }, - [406] = { - [sym_identifier] = ACTIONS(1671), - [aux_sym_preproc_include_token1] = ACTIONS(1671), - [aux_sym_preproc_def_token1] = ACTIONS(1671), - [aux_sym_preproc_if_token1] = ACTIONS(1671), - [aux_sym_preproc_if_token2] = ACTIONS(1671), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1671), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1671), - [sym_preproc_directive] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1673), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_AMP_AMP] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_typedef] = ACTIONS(1671), - [anon_sym_extern] = ACTIONS(1671), - [anon_sym___attribute__] = ACTIONS(1671), - [anon_sym_COLON_COLON] = ACTIONS(1673), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1673), - [anon_sym___declspec] = ACTIONS(1671), - [anon_sym___based] = ACTIONS(1671), - [anon_sym___cdecl] = ACTIONS(1671), - [anon_sym___clrcall] = ACTIONS(1671), - [anon_sym___stdcall] = ACTIONS(1671), - [anon_sym___fastcall] = ACTIONS(1671), - [anon_sym___thiscall] = ACTIONS(1671), - [anon_sym___vectorcall] = ACTIONS(1671), - [anon_sym_LBRACE] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_register] = ACTIONS(1671), - [anon_sym_inline] = ACTIONS(1671), - [anon_sym_thread_local] = ACTIONS(1671), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_volatile] = ACTIONS(1671), - [anon_sym_restrict] = ACTIONS(1671), - [anon_sym__Atomic] = ACTIONS(1671), - [anon_sym_mutable] = ACTIONS(1671), - [anon_sym_constexpr] = ACTIONS(1671), - [anon_sym_signed] = ACTIONS(1671), - [anon_sym_unsigned] = ACTIONS(1671), - [anon_sym_long] = ACTIONS(1671), - [anon_sym_short] = ACTIONS(1671), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_enum] = ACTIONS(1671), - [anon_sym_class] = ACTIONS(1671), - [anon_sym_struct] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_if] = ACTIONS(1671), - [anon_sym_else] = ACTIONS(1671), - [anon_sym_switch] = ACTIONS(1671), - [anon_sym_case] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_while] = ACTIONS(1671), - [anon_sym_do] = ACTIONS(1671), - [anon_sym_for] = ACTIONS(1671), - [anon_sym_return] = ACTIONS(1671), - [anon_sym_break] = ACTIONS(1671), - [anon_sym_continue] = ACTIONS(1671), - [anon_sym_goto] = ACTIONS(1671), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1671), - [sym_number_literal] = ACTIONS(1673), - [anon_sym_L_SQUOTE] = ACTIONS(1673), - [anon_sym_u_SQUOTE] = ACTIONS(1673), - [anon_sym_U_SQUOTE] = ACTIONS(1673), - [anon_sym_u8_SQUOTE] = ACTIONS(1673), - [anon_sym_SQUOTE] = ACTIONS(1673), - [anon_sym_L_DQUOTE] = ACTIONS(1673), - [anon_sym_u_DQUOTE] = ACTIONS(1673), - [anon_sym_U_DQUOTE] = ACTIONS(1673), - [anon_sym_u8_DQUOTE] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1673), - [sym_true] = ACTIONS(1671), - [sym_false] = ACTIONS(1671), - [sym_null] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1671), - [anon_sym_virtual] = ACTIONS(1671), - [anon_sym_explicit] = ACTIONS(1671), - [sym_auto] = ACTIONS(1671), - [anon_sym_typename] = ACTIONS(1671), - [anon_sym_template] = ACTIONS(1671), - [anon_sym_operator] = ACTIONS(1671), - [anon_sym_delete] = ACTIONS(1671), - [anon_sym_throw] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1671), - [anon_sym_using] = ACTIONS(1671), - [anon_sym_static_assert] = ACTIONS(1671), - [anon_sym_co_return] = ACTIONS(1671), - [anon_sym_co_yield] = ACTIONS(1671), - [anon_sym_try] = ACTIONS(1671), - [anon_sym_co_await] = ACTIONS(1671), - [anon_sym_new] = ACTIONS(1671), - [sym_this] = ACTIONS(1671), - [sym_nullptr] = ACTIONS(1671), - [sym_alone_macro] = ACTIONS(1673), - [aux_sym_alone_macro_call_token1] = ACTIONS(1671), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_FORWARD] = ACTIONS(1671), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1671), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_PS_GET] = ACTIONS(1671), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1671), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1671), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1671), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1671), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1671), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1671), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1671), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1671), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1671), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1671), - [anon_sym_MOZ_COLD] = ACTIONS(1671), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1671), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1671), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1671), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1671), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1671), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1671), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1671), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1671), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1671), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1671), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1671), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1671), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1671), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1671), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1671), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1671), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1671), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1671), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1671), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1671), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_NONNULL] = ACTIONS(1671), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1671), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1671), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1671), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1671), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1671), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_NORETURN] = ACTIONS(1671), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1671), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1671), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1671), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1671), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1671), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1671), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1671), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1671), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1671), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1671), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1671), - [anon_sym_MOZ_RAII] = ACTIONS(1671), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1671), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1671), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1671), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1671), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1671), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1671), - [sym_raw_string_literal] = ACTIONS(1673), - }, - [407] = { - [sym_identifier] = ACTIONS(1667), - [aux_sym_preproc_include_token1] = ACTIONS(1667), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1667), - [sym_preproc_directive] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_BANG] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_typedef] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym___attribute__] = ACTIONS(1667), - [anon_sym_COLON_COLON] = ACTIONS(1669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1669), - [anon_sym___declspec] = ACTIONS(1667), - [anon_sym___based] = ACTIONS(1667), - [anon_sym___cdecl] = ACTIONS(1667), - [anon_sym___clrcall] = ACTIONS(1667), - [anon_sym___stdcall] = ACTIONS(1667), - [anon_sym___fastcall] = ACTIONS(1667), - [anon_sym___thiscall] = ACTIONS(1667), - [anon_sym___vectorcall] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_inline] = ACTIONS(1667), - [anon_sym_thread_local] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [anon_sym_volatile] = ACTIONS(1667), - [anon_sym_restrict] = ACTIONS(1667), - [anon_sym__Atomic] = ACTIONS(1667), - [anon_sym_mutable] = ACTIONS(1667), - [anon_sym_constexpr] = ACTIONS(1667), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [sym_primitive_type] = ACTIONS(1667), - [anon_sym_enum] = ACTIONS(1667), - [anon_sym_class] = ACTIONS(1667), - [anon_sym_struct] = ACTIONS(1667), - [anon_sym_union] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_switch] = ACTIONS(1667), - [anon_sym_case] = ACTIONS(1667), - [anon_sym_default] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_goto] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_sizeof] = ACTIONS(1667), - [sym_number_literal] = ACTIONS(1669), - [anon_sym_L_SQUOTE] = ACTIONS(1669), - [anon_sym_u_SQUOTE] = ACTIONS(1669), - [anon_sym_U_SQUOTE] = ACTIONS(1669), - [anon_sym_u8_SQUOTE] = ACTIONS(1669), - [anon_sym_SQUOTE] = ACTIONS(1669), - [anon_sym_L_DQUOTE] = ACTIONS(1669), - [anon_sym_u_DQUOTE] = ACTIONS(1669), - [anon_sym_U_DQUOTE] = ACTIONS(1669), - [anon_sym_u8_DQUOTE] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym_true] = ACTIONS(1667), - [sym_false] = ACTIONS(1667), - [sym_null] = ACTIONS(1667), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1667), - [anon_sym_virtual] = ACTIONS(1667), - [anon_sym_explicit] = ACTIONS(1667), - [sym_auto] = ACTIONS(1667), - [anon_sym_typename] = ACTIONS(1667), - [anon_sym_template] = ACTIONS(1667), - [anon_sym_operator] = ACTIONS(1667), - [anon_sym_delete] = ACTIONS(1667), - [anon_sym_throw] = ACTIONS(1667), - [anon_sym_namespace] = ACTIONS(1667), - [anon_sym_using] = ACTIONS(1667), - [anon_sym_static_assert] = ACTIONS(1667), - [anon_sym_co_return] = ACTIONS(1667), - [anon_sym_co_yield] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_co_await] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [sym_this] = ACTIONS(1667), - [sym_nullptr] = ACTIONS(1667), - [sym_alone_macro] = ACTIONS(1669), - [aux_sym_alone_macro_call_token1] = ACTIONS(1667), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_FORWARD] = ACTIONS(1667), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1667), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_PS_GET] = ACTIONS(1667), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1667), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1667), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1667), - [anon_sym_MOZ_COLD] = ACTIONS(1667), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1667), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1667), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1667), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1667), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1667), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1667), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1667), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1667), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1667), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1667), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1667), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1667), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_RAII] = ACTIONS(1667), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1667), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1667), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1667), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1667), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1667), - [sym_raw_string_literal] = ACTIONS(1669), - }, - [408] = { - [sym_identifier] = ACTIONS(1569), - [aux_sym_preproc_include_token1] = ACTIONS(1569), - [aux_sym_preproc_def_token1] = ACTIONS(1569), - [aux_sym_preproc_if_token1] = ACTIONS(1569), - [aux_sym_preproc_if_token2] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1569), - [sym_preproc_directive] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP_AMP] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_typedef] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym___attribute__] = ACTIONS(1569), - [anon_sym_COLON_COLON] = ACTIONS(1571), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1571), - [anon_sym___declspec] = ACTIONS(1569), - [anon_sym___based] = ACTIONS(1569), - [anon_sym___cdecl] = ACTIONS(1569), - [anon_sym___clrcall] = ACTIONS(1569), - [anon_sym___stdcall] = ACTIONS(1569), - [anon_sym___fastcall] = ACTIONS(1569), - [anon_sym___thiscall] = ACTIONS(1569), - [anon_sym___vectorcall] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1569), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_inline] = ACTIONS(1569), - [anon_sym_thread_local] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [anon_sym_volatile] = ACTIONS(1569), - [anon_sym_restrict] = ACTIONS(1569), - [anon_sym__Atomic] = ACTIONS(1569), - [anon_sym_mutable] = ACTIONS(1569), - [anon_sym_constexpr] = ACTIONS(1569), - [anon_sym_signed] = ACTIONS(1569), - [anon_sym_unsigned] = ACTIONS(1569), - [anon_sym_long] = ACTIONS(1569), - [anon_sym_short] = ACTIONS(1569), - [sym_primitive_type] = ACTIONS(1569), - [anon_sym_enum] = ACTIONS(1569), - [anon_sym_class] = ACTIONS(1569), - [anon_sym_struct] = ACTIONS(1569), - [anon_sym_union] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_switch] = ACTIONS(1569), - [anon_sym_case] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_goto] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_sizeof] = ACTIONS(1569), - [sym_number_literal] = ACTIONS(1571), - [anon_sym_L_SQUOTE] = ACTIONS(1571), - [anon_sym_u_SQUOTE] = ACTIONS(1571), - [anon_sym_U_SQUOTE] = ACTIONS(1571), - [anon_sym_u8_SQUOTE] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1571), - [anon_sym_L_DQUOTE] = ACTIONS(1571), - [anon_sym_u_DQUOTE] = ACTIONS(1571), - [anon_sym_U_DQUOTE] = ACTIONS(1571), - [anon_sym_u8_DQUOTE] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym_true] = ACTIONS(1569), - [sym_false] = ACTIONS(1569), - [sym_null] = ACTIONS(1569), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1569), - [anon_sym_virtual] = ACTIONS(1569), - [anon_sym_explicit] = ACTIONS(1569), - [sym_auto] = ACTIONS(1569), - [anon_sym_typename] = ACTIONS(1569), - [anon_sym_template] = ACTIONS(1569), - [anon_sym_operator] = ACTIONS(1569), - [anon_sym_delete] = ACTIONS(1569), - [anon_sym_throw] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1569), - [anon_sym_using] = ACTIONS(1569), - [anon_sym_static_assert] = ACTIONS(1569), - [anon_sym_co_return] = ACTIONS(1569), - [anon_sym_co_yield] = ACTIONS(1569), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_co_await] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [sym_this] = ACTIONS(1569), - [sym_nullptr] = ACTIONS(1569), - [sym_alone_macro] = ACTIONS(1571), - [aux_sym_alone_macro_call_token1] = ACTIONS(1569), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_FORWARD] = ACTIONS(1569), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1569), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_PS_GET] = ACTIONS(1569), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1569), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1569), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1569), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1569), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1569), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1569), - [anon_sym_MOZ_COLD] = ACTIONS(1569), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1569), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1569), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1569), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1569), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1569), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1569), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1569), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1569), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1569), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1569), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1569), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1569), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1569), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_NONNULL] = ACTIONS(1569), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1569), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1569), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1569), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1569), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1569), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1569), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1569), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1569), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1569), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1569), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1569), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1569), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1569), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1569), - [anon_sym_MOZ_RAII] = ACTIONS(1569), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1569), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1569), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1569), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1569), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1569), - [sym_raw_string_literal] = ACTIONS(1571), - }, - [409] = { - [sym_identifier] = ACTIONS(1659), - [aux_sym_preproc_include_token1] = ACTIONS(1659), - [aux_sym_preproc_def_token1] = ACTIONS(1659), - [aux_sym_preproc_if_token1] = ACTIONS(1659), - [aux_sym_preproc_if_token2] = ACTIONS(1659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1659), - [sym_preproc_directive] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_TILDE] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_AMP_AMP] = ACTIONS(1661), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_typedef] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym___attribute__] = ACTIONS(1659), - [anon_sym_COLON_COLON] = ACTIONS(1661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1661), - [anon_sym___declspec] = ACTIONS(1659), - [anon_sym___based] = ACTIONS(1659), - [anon_sym___cdecl] = ACTIONS(1659), - [anon_sym___clrcall] = ACTIONS(1659), - [anon_sym___stdcall] = ACTIONS(1659), - [anon_sym___fastcall] = ACTIONS(1659), - [anon_sym___thiscall] = ACTIONS(1659), - [anon_sym___vectorcall] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_inline] = ACTIONS(1659), - [anon_sym_thread_local] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [anon_sym_volatile] = ACTIONS(1659), - [anon_sym_restrict] = ACTIONS(1659), - [anon_sym__Atomic] = ACTIONS(1659), - [anon_sym_mutable] = ACTIONS(1659), - [anon_sym_constexpr] = ACTIONS(1659), - [anon_sym_signed] = ACTIONS(1659), - [anon_sym_unsigned] = ACTIONS(1659), - [anon_sym_long] = ACTIONS(1659), - [anon_sym_short] = ACTIONS(1659), - [sym_primitive_type] = ACTIONS(1659), - [anon_sym_enum] = ACTIONS(1659), - [anon_sym_class] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_switch] = ACTIONS(1659), - [anon_sym_case] = ACTIONS(1659), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_goto] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1661), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1661), - [anon_sym_L_SQUOTE] = ACTIONS(1661), - [anon_sym_u_SQUOTE] = ACTIONS(1661), - [anon_sym_U_SQUOTE] = ACTIONS(1661), - [anon_sym_u8_SQUOTE] = ACTIONS(1661), - [anon_sym_SQUOTE] = ACTIONS(1661), - [anon_sym_L_DQUOTE] = ACTIONS(1661), - [anon_sym_u_DQUOTE] = ACTIONS(1661), - [anon_sym_U_DQUOTE] = ACTIONS(1661), - [anon_sym_u8_DQUOTE] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym_true] = ACTIONS(1659), - [sym_false] = ACTIONS(1659), - [sym_null] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1659), - [anon_sym_virtual] = ACTIONS(1659), - [anon_sym_explicit] = ACTIONS(1659), - [sym_auto] = ACTIONS(1659), - [anon_sym_typename] = ACTIONS(1659), - [anon_sym_template] = ACTIONS(1659), - [anon_sym_operator] = ACTIONS(1659), - [anon_sym_delete] = ACTIONS(1659), - [anon_sym_throw] = ACTIONS(1659), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_using] = ACTIONS(1659), - [anon_sym_static_assert] = ACTIONS(1659), - [anon_sym_co_return] = ACTIONS(1659), - [anon_sym_co_yield] = ACTIONS(1659), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_co_await] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [sym_this] = ACTIONS(1659), - [sym_nullptr] = ACTIONS(1659), - [sym_alone_macro] = ACTIONS(1661), - [aux_sym_alone_macro_call_token1] = ACTIONS(1659), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_FORWARD] = ACTIONS(1659), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1659), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_PS_GET] = ACTIONS(1659), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1659), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1659), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1659), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1659), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1659), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1659), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1659), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1659), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1659), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1659), - [anon_sym_MOZ_COLD] = ACTIONS(1659), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1659), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1659), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1659), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1659), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1659), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1659), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1659), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1659), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1659), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1659), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1659), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1659), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1659), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1659), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1659), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1659), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1659), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1659), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1659), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1659), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_NONNULL] = ACTIONS(1659), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1659), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1659), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1659), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1659), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1659), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_NORETURN] = ACTIONS(1659), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1659), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1659), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1659), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1659), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1659), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1659), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1659), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1659), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1659), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1659), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1659), - [anon_sym_MOZ_RAII] = ACTIONS(1659), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1659), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1659), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1659), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1659), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1659), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1659), - [sym_raw_string_literal] = ACTIONS(1661), - }, - [410] = { - [sym_identifier] = ACTIONS(1577), - [aux_sym_preproc_include_token1] = ACTIONS(1577), - [aux_sym_preproc_def_token1] = ACTIONS(1577), - [aux_sym_preproc_if_token1] = ACTIONS(1577), - [aux_sym_preproc_if_token2] = ACTIONS(1577), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1577), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1577), - [sym_preproc_directive] = ACTIONS(1577), - [anon_sym_LPAREN2] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1579), - [anon_sym_TILDE] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_AMP_AMP] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_typedef] = ACTIONS(1577), - [anon_sym_extern] = ACTIONS(1577), - [anon_sym___attribute__] = ACTIONS(1577), - [anon_sym_COLON_COLON] = ACTIONS(1579), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1579), - [anon_sym___declspec] = ACTIONS(1577), - [anon_sym___based] = ACTIONS(1577), - [anon_sym___cdecl] = ACTIONS(1577), - [anon_sym___clrcall] = ACTIONS(1577), - [anon_sym___stdcall] = ACTIONS(1577), - [anon_sym___fastcall] = ACTIONS(1577), - [anon_sym___thiscall] = ACTIONS(1577), - [anon_sym___vectorcall] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_register] = ACTIONS(1577), - [anon_sym_inline] = ACTIONS(1577), - [anon_sym_thread_local] = ACTIONS(1577), - [anon_sym_const] = ACTIONS(1577), - [anon_sym_volatile] = ACTIONS(1577), - [anon_sym_restrict] = ACTIONS(1577), - [anon_sym__Atomic] = ACTIONS(1577), - [anon_sym_mutable] = ACTIONS(1577), - [anon_sym_constexpr] = ACTIONS(1577), - [anon_sym_signed] = ACTIONS(1577), - [anon_sym_unsigned] = ACTIONS(1577), - [anon_sym_long] = ACTIONS(1577), - [anon_sym_short] = ACTIONS(1577), - [sym_primitive_type] = ACTIONS(1577), - [anon_sym_enum] = ACTIONS(1577), - [anon_sym_class] = ACTIONS(1577), - [anon_sym_struct] = ACTIONS(1577), - [anon_sym_union] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_else] = ACTIONS(1577), - [anon_sym_switch] = ACTIONS(1577), - [anon_sym_case] = ACTIONS(1577), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1577), - [anon_sym_do] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_return] = ACTIONS(1577), - [anon_sym_break] = ACTIONS(1577), - [anon_sym_continue] = ACTIONS(1577), - [anon_sym_goto] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1577), - [sym_number_literal] = ACTIONS(1579), - [anon_sym_L_SQUOTE] = ACTIONS(1579), - [anon_sym_u_SQUOTE] = ACTIONS(1579), - [anon_sym_U_SQUOTE] = ACTIONS(1579), - [anon_sym_u8_SQUOTE] = ACTIONS(1579), - [anon_sym_SQUOTE] = ACTIONS(1579), - [anon_sym_L_DQUOTE] = ACTIONS(1579), - [anon_sym_u_DQUOTE] = ACTIONS(1579), - [anon_sym_U_DQUOTE] = ACTIONS(1579), - [anon_sym_u8_DQUOTE] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1577), - [anon_sym_virtual] = ACTIONS(1577), - [anon_sym_explicit] = ACTIONS(1577), - [sym_auto] = ACTIONS(1577), - [anon_sym_typename] = ACTIONS(1577), - [anon_sym_template] = ACTIONS(1577), - [anon_sym_operator] = ACTIONS(1577), - [anon_sym_delete] = ACTIONS(1577), - [anon_sym_throw] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1577), - [anon_sym_using] = ACTIONS(1577), - [anon_sym_static_assert] = ACTIONS(1577), - [anon_sym_co_return] = ACTIONS(1577), - [anon_sym_co_yield] = ACTIONS(1577), - [anon_sym_try] = ACTIONS(1577), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1577), - [sym_this] = ACTIONS(1577), - [sym_nullptr] = ACTIONS(1577), - [sym_alone_macro] = ACTIONS(1579), - [aux_sym_alone_macro_call_token1] = ACTIONS(1577), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_FORWARD] = ACTIONS(1577), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1577), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_PS_GET] = ACTIONS(1577), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1577), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1577), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1577), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1577), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1577), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1577), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1577), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1577), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1577), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1577), - [anon_sym_MOZ_COLD] = ACTIONS(1577), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1577), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1577), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1577), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1577), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1577), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1577), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1577), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1577), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1577), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1577), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1577), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1577), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1577), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1577), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1577), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1577), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1577), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1577), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1577), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1577), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_NONNULL] = ACTIONS(1577), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1577), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1577), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1577), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1577), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1577), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_NORETURN] = ACTIONS(1577), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1577), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1577), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1577), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1577), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1577), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1577), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1577), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1577), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1577), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1577), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1577), - [anon_sym_MOZ_RAII] = ACTIONS(1577), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1577), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1577), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1577), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1577), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1577), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1577), - [sym_raw_string_literal] = ACTIONS(1579), - }, - [411] = { - [sym_preproc_def] = STATE(665), - [sym_preproc_function_def] = STATE(665), - [sym_preproc_call] = STATE(665), - [sym_preproc_if_in_field_declaration_list] = STATE(665), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(665), - [sym_preproc_else_in_field_declaration_list] = STATE(5130), - [sym_preproc_elif_in_field_declaration_list] = STATE(5130), - [sym_type_definition] = STATE(665), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3235), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3615), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(665), - [sym_field_declaration] = STATE(665), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(841), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(665), - [sym_operator_cast] = STATE(4161), - [sym_inline_method_definition] = STATE(665), - [sym__constructor_specifiers] = STATE(841), - [sym_operator_cast_definition] = STATE(665), - [sym_operator_cast_declaration] = STATE(665), - [sym_constructor_or_destructor_definition] = STATE(665), - [sym_constructor_or_destructor_declaration] = STATE(665), - [sym_friend_declaration] = STATE(665), - [sym_access_specifier] = STATE(665), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(665), - [sym_alias_declaration] = STATE(665), - [sym_static_assert_declaration] = STATE(665), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4161), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(665), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(665), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(841), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(1909), - [aux_sym_preproc_if_token1] = ACTIONS(1911), - [aux_sym_preproc_if_token2] = ACTIONS(1983), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1915), - [aux_sym_preproc_else_token1] = ACTIONS(1917), - [aux_sym_preproc_elif_token1] = ACTIONS(1919), - [sym_preproc_directive] = ACTIONS(1921), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(1951), - [anon_sym_private] = ACTIONS(1951), - [anon_sym_protected] = ACTIONS(1951), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(1955), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1957), - [anon_sym_using] = ACTIONS(1959), - [anon_sym_static_assert] = ACTIONS(1961), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1963), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [412] = { - [sym_preproc_def] = STATE(339), - [sym_preproc_function_def] = STATE(339), - [sym_preproc_call] = STATE(339), - [sym_preproc_if_in_field_declaration_list] = STATE(339), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(339), - [sym_preproc_else_in_field_declaration_list] = STATE(5129), - [sym_preproc_elif_in_field_declaration_list] = STATE(5129), - [sym_type_definition] = STATE(339), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3235), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3615), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(339), - [sym_field_declaration] = STATE(339), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(841), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(339), - [sym_operator_cast] = STATE(4161), - [sym_inline_method_definition] = STATE(339), - [sym__constructor_specifiers] = STATE(841), - [sym_operator_cast_definition] = STATE(339), - [sym_operator_cast_declaration] = STATE(339), - [sym_constructor_or_destructor_definition] = STATE(339), - [sym_constructor_or_destructor_declaration] = STATE(339), - [sym_friend_declaration] = STATE(339), - [sym_access_specifier] = STATE(339), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(339), - [sym_alias_declaration] = STATE(339), - [sym_static_assert_declaration] = STATE(339), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4161), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(339), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(339), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(841), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(1909), - [aux_sym_preproc_if_token1] = ACTIONS(1911), - [aux_sym_preproc_if_token2] = ACTIONS(1985), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1915), - [aux_sym_preproc_else_token1] = ACTIONS(1917), - [aux_sym_preproc_elif_token1] = ACTIONS(1919), - [sym_preproc_directive] = ACTIONS(1921), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(1951), - [anon_sym_private] = ACTIONS(1951), - [anon_sym_protected] = ACTIONS(1951), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(1955), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1957), - [anon_sym_using] = ACTIONS(1959), - [anon_sym_static_assert] = ACTIONS(1961), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1963), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [413] = { - [sym_identifier] = ACTIONS(1649), - [aux_sym_preproc_include_token1] = ACTIONS(1649), - [aux_sym_preproc_def_token1] = ACTIONS(1649), - [aux_sym_preproc_if_token1] = ACTIONS(1649), - [aux_sym_preproc_if_token2] = ACTIONS(1649), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1649), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1649), - [sym_preproc_directive] = ACTIONS(1649), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_AMP_AMP] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1649), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_typedef] = ACTIONS(1649), - [anon_sym_extern] = ACTIONS(1649), - [anon_sym___attribute__] = ACTIONS(1649), - [anon_sym_COLON_COLON] = ACTIONS(1651), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1651), - [anon_sym___declspec] = ACTIONS(1649), - [anon_sym___based] = ACTIONS(1649), - [anon_sym___cdecl] = ACTIONS(1649), - [anon_sym___clrcall] = ACTIONS(1649), - [anon_sym___stdcall] = ACTIONS(1649), - [anon_sym___fastcall] = ACTIONS(1649), - [anon_sym___thiscall] = ACTIONS(1649), - [anon_sym___vectorcall] = ACTIONS(1649), - [anon_sym_LBRACE] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1649), - [anon_sym_register] = ACTIONS(1649), - [anon_sym_inline] = ACTIONS(1649), - [anon_sym_thread_local] = ACTIONS(1649), - [anon_sym_const] = ACTIONS(1649), - [anon_sym_volatile] = ACTIONS(1649), - [anon_sym_restrict] = ACTIONS(1649), - [anon_sym__Atomic] = ACTIONS(1649), - [anon_sym_mutable] = ACTIONS(1649), - [anon_sym_constexpr] = ACTIONS(1649), - [anon_sym_signed] = ACTIONS(1649), - [anon_sym_unsigned] = ACTIONS(1649), - [anon_sym_long] = ACTIONS(1649), - [anon_sym_short] = ACTIONS(1649), - [sym_primitive_type] = ACTIONS(1649), - [anon_sym_enum] = ACTIONS(1649), - [anon_sym_class] = ACTIONS(1649), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_union] = ACTIONS(1649), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_else] = ACTIONS(1649), - [anon_sym_switch] = ACTIONS(1649), - [anon_sym_case] = ACTIONS(1649), - [anon_sym_default] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_do] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_goto] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1651), - [anon_sym_sizeof] = ACTIONS(1649), - [sym_number_literal] = ACTIONS(1651), - [anon_sym_L_SQUOTE] = ACTIONS(1651), - [anon_sym_u_SQUOTE] = ACTIONS(1651), - [anon_sym_U_SQUOTE] = ACTIONS(1651), - [anon_sym_u8_SQUOTE] = ACTIONS(1651), - [anon_sym_SQUOTE] = ACTIONS(1651), - [anon_sym_L_DQUOTE] = ACTIONS(1651), - [anon_sym_u_DQUOTE] = ACTIONS(1651), - [anon_sym_U_DQUOTE] = ACTIONS(1651), - [anon_sym_u8_DQUOTE] = ACTIONS(1651), - [anon_sym_DQUOTE] = ACTIONS(1651), - [sym_true] = ACTIONS(1649), - [sym_false] = ACTIONS(1649), - [sym_null] = ACTIONS(1649), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1649), - [anon_sym_virtual] = ACTIONS(1649), - [anon_sym_explicit] = ACTIONS(1649), - [sym_auto] = ACTIONS(1649), - [anon_sym_typename] = ACTIONS(1649), - [anon_sym_template] = ACTIONS(1649), - [anon_sym_operator] = ACTIONS(1649), - [anon_sym_delete] = ACTIONS(1649), - [anon_sym_throw] = ACTIONS(1649), - [anon_sym_namespace] = ACTIONS(1649), - [anon_sym_using] = ACTIONS(1649), - [anon_sym_static_assert] = ACTIONS(1649), - [anon_sym_co_return] = ACTIONS(1649), - [anon_sym_co_yield] = ACTIONS(1649), - [anon_sym_try] = ACTIONS(1649), - [anon_sym_co_await] = ACTIONS(1649), - [anon_sym_new] = ACTIONS(1649), - [sym_this] = ACTIONS(1649), - [sym_nullptr] = ACTIONS(1649), - [sym_alone_macro] = ACTIONS(1651), - [aux_sym_alone_macro_call_token1] = ACTIONS(1649), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_FORWARD] = ACTIONS(1649), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1649), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_PS_GET] = ACTIONS(1649), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1649), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1649), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1649), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1649), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1649), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1649), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1649), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1649), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1649), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1649), - [anon_sym_MOZ_COLD] = ACTIONS(1649), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1649), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1649), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1649), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1649), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1649), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1649), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1649), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1649), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1649), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1649), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1649), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1649), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1649), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1649), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1649), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1649), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1649), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1649), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1649), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1649), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_NONNULL] = ACTIONS(1649), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1649), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1649), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1649), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1649), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1649), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_NORETURN] = ACTIONS(1649), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1649), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1649), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1649), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1649), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1649), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1649), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1649), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1649), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1649), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1649), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1649), - [anon_sym_MOZ_RAII] = ACTIONS(1649), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1649), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1649), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1649), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1649), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1649), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1649), - [sym_raw_string_literal] = ACTIONS(1651), - }, - [414] = { - [sym_identifier] = ACTIONS(1605), - [aux_sym_preproc_include_token1] = ACTIONS(1605), - [aux_sym_preproc_def_token1] = ACTIONS(1605), - [aux_sym_preproc_if_token1] = ACTIONS(1605), - [aux_sym_preproc_if_token2] = ACTIONS(1605), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1605), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1605), - [sym_preproc_directive] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1607), - [anon_sym_TILDE] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_AMP_AMP] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_typedef] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym___attribute__] = ACTIONS(1605), - [anon_sym_COLON_COLON] = ACTIONS(1607), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1607), - [anon_sym___declspec] = ACTIONS(1605), - [anon_sym___based] = ACTIONS(1605), - [anon_sym___cdecl] = ACTIONS(1605), - [anon_sym___clrcall] = ACTIONS(1605), - [anon_sym___stdcall] = ACTIONS(1605), - [anon_sym___fastcall] = ACTIONS(1605), - [anon_sym___thiscall] = ACTIONS(1605), - [anon_sym___vectorcall] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_static] = ACTIONS(1605), - [anon_sym_register] = ACTIONS(1605), - [anon_sym_inline] = ACTIONS(1605), - [anon_sym_thread_local] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [anon_sym_volatile] = ACTIONS(1605), - [anon_sym_restrict] = ACTIONS(1605), - [anon_sym__Atomic] = ACTIONS(1605), - [anon_sym_mutable] = ACTIONS(1605), - [anon_sym_constexpr] = ACTIONS(1605), - [anon_sym_signed] = ACTIONS(1605), - [anon_sym_unsigned] = ACTIONS(1605), - [anon_sym_long] = ACTIONS(1605), - [anon_sym_short] = ACTIONS(1605), - [sym_primitive_type] = ACTIONS(1605), - [anon_sym_enum] = ACTIONS(1605), - [anon_sym_class] = ACTIONS(1605), - [anon_sym_struct] = ACTIONS(1605), - [anon_sym_union] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_else] = ACTIONS(1605), - [anon_sym_switch] = ACTIONS(1605), - [anon_sym_case] = ACTIONS(1605), - [anon_sym_default] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_goto] = ACTIONS(1605), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1605), - [sym_number_literal] = ACTIONS(1607), - [anon_sym_L_SQUOTE] = ACTIONS(1607), - [anon_sym_u_SQUOTE] = ACTIONS(1607), - [anon_sym_U_SQUOTE] = ACTIONS(1607), - [anon_sym_u8_SQUOTE] = ACTIONS(1607), - [anon_sym_SQUOTE] = ACTIONS(1607), - [anon_sym_L_DQUOTE] = ACTIONS(1607), - [anon_sym_u_DQUOTE] = ACTIONS(1607), - [anon_sym_U_DQUOTE] = ACTIONS(1607), - [anon_sym_u8_DQUOTE] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1605), - [anon_sym_virtual] = ACTIONS(1605), - [anon_sym_explicit] = ACTIONS(1605), - [sym_auto] = ACTIONS(1605), - [anon_sym_typename] = ACTIONS(1605), - [anon_sym_template] = ACTIONS(1605), - [anon_sym_operator] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_throw] = ACTIONS(1605), - [anon_sym_namespace] = ACTIONS(1605), - [anon_sym_using] = ACTIONS(1605), - [anon_sym_static_assert] = ACTIONS(1605), - [anon_sym_co_return] = ACTIONS(1605), - [anon_sym_co_yield] = ACTIONS(1605), - [anon_sym_try] = ACTIONS(1605), - [anon_sym_co_await] = ACTIONS(1605), - [anon_sym_new] = ACTIONS(1605), - [sym_this] = ACTIONS(1605), - [sym_nullptr] = ACTIONS(1605), - [sym_alone_macro] = ACTIONS(1607), - [aux_sym_alone_macro_call_token1] = ACTIONS(1605), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_FORWARD] = ACTIONS(1605), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1605), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_PS_GET] = ACTIONS(1605), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1605), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1605), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1605), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1605), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1605), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1605), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1605), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1605), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1605), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1605), - [anon_sym_MOZ_COLD] = ACTIONS(1605), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1605), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1605), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1605), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1605), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1605), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1605), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1605), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1605), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1605), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1605), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1605), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1605), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1605), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1605), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1605), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1605), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1605), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1605), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1605), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1605), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_NONNULL] = ACTIONS(1605), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1605), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1605), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1605), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1605), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1605), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_NORETURN] = ACTIONS(1605), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1605), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1605), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1605), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1605), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1605), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1605), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1605), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1605), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1605), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1605), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1605), - [anon_sym_MOZ_RAII] = ACTIONS(1605), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1605), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1605), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1605), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1605), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1605), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1605), - [sym_raw_string_literal] = ACTIONS(1607), - }, - [415] = { - [sym_identifier] = ACTIONS(1601), - [aux_sym_preproc_include_token1] = ACTIONS(1601), - [aux_sym_preproc_def_token1] = ACTIONS(1601), - [aux_sym_preproc_if_token1] = ACTIONS(1601), - [aux_sym_preproc_if_token2] = ACTIONS(1601), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1601), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1601), - [sym_preproc_directive] = ACTIONS(1601), - [anon_sym_LPAREN2] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(1603), - [anon_sym_AMP] = ACTIONS(1601), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_typedef] = ACTIONS(1601), - [anon_sym_extern] = ACTIONS(1601), - [anon_sym___attribute__] = ACTIONS(1601), - [anon_sym_COLON_COLON] = ACTIONS(1603), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1603), - [anon_sym___declspec] = ACTIONS(1601), - [anon_sym___based] = ACTIONS(1601), - [anon_sym___cdecl] = ACTIONS(1601), - [anon_sym___clrcall] = ACTIONS(1601), - [anon_sym___stdcall] = ACTIONS(1601), - [anon_sym___fastcall] = ACTIONS(1601), - [anon_sym___thiscall] = ACTIONS(1601), - [anon_sym___vectorcall] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_static] = ACTIONS(1601), - [anon_sym_register] = ACTIONS(1601), - [anon_sym_inline] = ACTIONS(1601), - [anon_sym_thread_local] = ACTIONS(1601), - [anon_sym_const] = ACTIONS(1601), - [anon_sym_volatile] = ACTIONS(1601), - [anon_sym_restrict] = ACTIONS(1601), - [anon_sym__Atomic] = ACTIONS(1601), - [anon_sym_mutable] = ACTIONS(1601), - [anon_sym_constexpr] = ACTIONS(1601), - [anon_sym_signed] = ACTIONS(1601), - [anon_sym_unsigned] = ACTIONS(1601), - [anon_sym_long] = ACTIONS(1601), - [anon_sym_short] = ACTIONS(1601), - [sym_primitive_type] = ACTIONS(1601), - [anon_sym_enum] = ACTIONS(1601), - [anon_sym_class] = ACTIONS(1601), - [anon_sym_struct] = ACTIONS(1601), - [anon_sym_union] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1601), - [anon_sym_else] = ACTIONS(1601), - [anon_sym_switch] = ACTIONS(1601), - [anon_sym_case] = ACTIONS(1601), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1601), - [anon_sym_do] = ACTIONS(1601), - [anon_sym_for] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_break] = ACTIONS(1601), - [anon_sym_continue] = ACTIONS(1601), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1603), - [anon_sym_sizeof] = ACTIONS(1601), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_L_SQUOTE] = ACTIONS(1603), - [anon_sym_u_SQUOTE] = ACTIONS(1603), - [anon_sym_U_SQUOTE] = ACTIONS(1603), - [anon_sym_u8_SQUOTE] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(1603), - [anon_sym_L_DQUOTE] = ACTIONS(1603), - [anon_sym_u_DQUOTE] = ACTIONS(1603), - [anon_sym_U_DQUOTE] = ACTIONS(1603), - [anon_sym_u8_DQUOTE] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1601), - [anon_sym_virtual] = ACTIONS(1601), - [anon_sym_explicit] = ACTIONS(1601), - [sym_auto] = ACTIONS(1601), - [anon_sym_typename] = ACTIONS(1601), - [anon_sym_template] = ACTIONS(1601), - [anon_sym_operator] = ACTIONS(1601), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_throw] = ACTIONS(1601), - [anon_sym_namespace] = ACTIONS(1601), - [anon_sym_using] = ACTIONS(1601), - [anon_sym_static_assert] = ACTIONS(1601), - [anon_sym_co_return] = ACTIONS(1601), - [anon_sym_co_yield] = ACTIONS(1601), - [anon_sym_try] = ACTIONS(1601), - [anon_sym_co_await] = ACTIONS(1601), - [anon_sym_new] = ACTIONS(1601), - [sym_this] = ACTIONS(1601), - [sym_nullptr] = ACTIONS(1601), - [sym_alone_macro] = ACTIONS(1603), - [aux_sym_alone_macro_call_token1] = ACTIONS(1601), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_FORWARD] = ACTIONS(1601), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1601), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_PS_GET] = ACTIONS(1601), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1601), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1601), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1601), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1601), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1601), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1601), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1601), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1601), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1601), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1601), - [anon_sym_MOZ_COLD] = ACTIONS(1601), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1601), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1601), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1601), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1601), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1601), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1601), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1601), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1601), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1601), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1601), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1601), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1601), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1601), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1601), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1601), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1601), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1601), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1601), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1601), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1601), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_NONNULL] = ACTIONS(1601), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1601), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1601), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1601), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1601), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1601), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_NORETURN] = ACTIONS(1601), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1601), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1601), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1601), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1601), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1601), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1601), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1601), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1601), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1601), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1601), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1601), - [anon_sym_MOZ_RAII] = ACTIONS(1601), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1601), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1601), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1601), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1601), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1601), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1601), - [sym_raw_string_literal] = ACTIONS(1603), - }, - [416] = { - [sym_identifier] = ACTIONS(1537), - [aux_sym_preproc_include_token1] = ACTIONS(1537), - [aux_sym_preproc_def_token1] = ACTIONS(1537), - [aux_sym_preproc_if_token1] = ACTIONS(1537), - [aux_sym_preproc_if_token2] = ACTIONS(1537), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1537), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1537), - [sym_preproc_directive] = ACTIONS(1537), - [anon_sym_LPAREN2] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_TILDE] = ACTIONS(1539), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1539), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_typedef] = ACTIONS(1537), - [anon_sym_extern] = ACTIONS(1537), - [anon_sym___attribute__] = ACTIONS(1537), - [anon_sym_COLON_COLON] = ACTIONS(1539), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1537), - [anon_sym___based] = ACTIONS(1537), - [anon_sym___cdecl] = ACTIONS(1537), - [anon_sym___clrcall] = ACTIONS(1537), - [anon_sym___stdcall] = ACTIONS(1537), - [anon_sym___fastcall] = ACTIONS(1537), - [anon_sym___thiscall] = ACTIONS(1537), - [anon_sym___vectorcall] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_register] = ACTIONS(1537), - [anon_sym_inline] = ACTIONS(1537), - [anon_sym_thread_local] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_volatile] = ACTIONS(1537), - [anon_sym_restrict] = ACTIONS(1537), - [anon_sym__Atomic] = ACTIONS(1537), - [anon_sym_mutable] = ACTIONS(1537), - [anon_sym_constexpr] = ACTIONS(1537), - [anon_sym_signed] = ACTIONS(1537), - [anon_sym_unsigned] = ACTIONS(1537), - [anon_sym_long] = ACTIONS(1537), - [anon_sym_short] = ACTIONS(1537), - [sym_primitive_type] = ACTIONS(1537), - [anon_sym_enum] = ACTIONS(1537), - [anon_sym_class] = ACTIONS(1537), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_else] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1537), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_do] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_goto] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1539), - [anon_sym_PLUS_PLUS] = ACTIONS(1539), - [anon_sym_sizeof] = ACTIONS(1537), - [sym_number_literal] = ACTIONS(1539), - [anon_sym_L_SQUOTE] = ACTIONS(1539), - [anon_sym_u_SQUOTE] = ACTIONS(1539), - [anon_sym_U_SQUOTE] = ACTIONS(1539), - [anon_sym_u8_SQUOTE] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [anon_sym_L_DQUOTE] = ACTIONS(1539), - [anon_sym_u_DQUOTE] = ACTIONS(1539), - [anon_sym_U_DQUOTE] = ACTIONS(1539), - [anon_sym_u8_DQUOTE] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1539), - [sym_true] = ACTIONS(1537), - [sym_false] = ACTIONS(1537), - [sym_null] = ACTIONS(1537), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1537), - [anon_sym_virtual] = ACTIONS(1537), - [anon_sym_explicit] = ACTIONS(1537), - [sym_auto] = ACTIONS(1537), - [anon_sym_typename] = ACTIONS(1537), - [anon_sym_template] = ACTIONS(1537), - [anon_sym_operator] = ACTIONS(1537), - [anon_sym_delete] = ACTIONS(1537), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_using] = ACTIONS(1537), - [anon_sym_static_assert] = ACTIONS(1537), - [anon_sym_co_return] = ACTIONS(1537), - [anon_sym_co_yield] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1537), - [anon_sym_new] = ACTIONS(1537), - [sym_this] = ACTIONS(1537), - [sym_nullptr] = ACTIONS(1537), - [sym_alone_macro] = ACTIONS(1539), - [aux_sym_alone_macro_call_token1] = ACTIONS(1537), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_FORWARD] = ACTIONS(1537), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1537), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_PS_GET] = ACTIONS(1537), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1537), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1537), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1537), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1537), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1537), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1537), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1537), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1537), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1537), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1537), - [anon_sym_MOZ_COLD] = ACTIONS(1537), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1537), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1537), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1537), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1537), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1537), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1537), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1537), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1537), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1537), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1537), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1537), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1537), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1537), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1537), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1537), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1537), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1537), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1537), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1537), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1537), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_NONNULL] = ACTIONS(1537), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1537), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1537), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1537), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1537), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1537), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_NORETURN] = ACTIONS(1537), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1537), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1537), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1537), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1537), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1537), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1537), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1537), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1537), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1537), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1537), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1537), - [anon_sym_MOZ_RAII] = ACTIONS(1537), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1537), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1537), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1537), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1537), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1537), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1537), - [sym_raw_string_literal] = ACTIONS(1539), - }, - [417] = { - [sym_identifier] = ACTIONS(1541), - [aux_sym_preproc_include_token1] = ACTIONS(1541), - [aux_sym_preproc_def_token1] = ACTIONS(1541), - [aux_sym_preproc_if_token1] = ACTIONS(1541), - [aux_sym_preproc_if_token2] = ACTIONS(1541), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1541), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1541), - [sym_preproc_directive] = ACTIONS(1541), - [anon_sym_LPAREN2] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1543), - [anon_sym_AMP_AMP] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_typedef] = ACTIONS(1541), - [anon_sym_extern] = ACTIONS(1541), - [anon_sym___attribute__] = ACTIONS(1541), - [anon_sym_COLON_COLON] = ACTIONS(1543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1543), - [anon_sym___declspec] = ACTIONS(1541), - [anon_sym___based] = ACTIONS(1541), - [anon_sym___cdecl] = ACTIONS(1541), - [anon_sym___clrcall] = ACTIONS(1541), - [anon_sym___stdcall] = ACTIONS(1541), - [anon_sym___fastcall] = ACTIONS(1541), - [anon_sym___thiscall] = ACTIONS(1541), - [anon_sym___vectorcall] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1541), - [anon_sym_static] = ACTIONS(1541), - [anon_sym_register] = ACTIONS(1541), - [anon_sym_inline] = ACTIONS(1541), - [anon_sym_thread_local] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_volatile] = ACTIONS(1541), - [anon_sym_restrict] = ACTIONS(1541), - [anon_sym__Atomic] = ACTIONS(1541), - [anon_sym_mutable] = ACTIONS(1541), - [anon_sym_constexpr] = ACTIONS(1541), - [anon_sym_signed] = ACTIONS(1541), - [anon_sym_unsigned] = ACTIONS(1541), - [anon_sym_long] = ACTIONS(1541), - [anon_sym_short] = ACTIONS(1541), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_enum] = ACTIONS(1541), - [anon_sym_class] = ACTIONS(1541), - [anon_sym_struct] = ACTIONS(1541), - [anon_sym_union] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1541), - [anon_sym_else] = ACTIONS(1541), - [anon_sym_switch] = ACTIONS(1541), - [anon_sym_case] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1541), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1541), - [anon_sym_for] = ACTIONS(1541), - [anon_sym_return] = ACTIONS(1541), - [anon_sym_break] = ACTIONS(1541), - [anon_sym_continue] = ACTIONS(1541), - [anon_sym_goto] = ACTIONS(1541), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1541), - [sym_number_literal] = ACTIONS(1543), - [anon_sym_L_SQUOTE] = ACTIONS(1543), - [anon_sym_u_SQUOTE] = ACTIONS(1543), - [anon_sym_U_SQUOTE] = ACTIONS(1543), - [anon_sym_u8_SQUOTE] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_L_DQUOTE] = ACTIONS(1543), - [anon_sym_u_DQUOTE] = ACTIONS(1543), - [anon_sym_U_DQUOTE] = ACTIONS(1543), - [anon_sym_u8_DQUOTE] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1543), - [sym_true] = ACTIONS(1541), - [sym_false] = ACTIONS(1541), - [sym_null] = ACTIONS(1541), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1541), - [anon_sym_virtual] = ACTIONS(1541), - [anon_sym_explicit] = ACTIONS(1541), - [sym_auto] = ACTIONS(1541), - [anon_sym_typename] = ACTIONS(1541), - [anon_sym_template] = ACTIONS(1541), - [anon_sym_operator] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_throw] = ACTIONS(1541), - [anon_sym_namespace] = ACTIONS(1541), - [anon_sym_using] = ACTIONS(1541), - [anon_sym_static_assert] = ACTIONS(1541), - [anon_sym_co_return] = ACTIONS(1541), - [anon_sym_co_yield] = ACTIONS(1541), - [anon_sym_try] = ACTIONS(1541), - [anon_sym_co_await] = ACTIONS(1541), - [anon_sym_new] = ACTIONS(1541), - [sym_this] = ACTIONS(1541), - [sym_nullptr] = ACTIONS(1541), - [sym_alone_macro] = ACTIONS(1543), - [aux_sym_alone_macro_call_token1] = ACTIONS(1541), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_FORWARD] = ACTIONS(1541), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1541), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_PS_GET] = ACTIONS(1541), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1541), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1541), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1541), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1541), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1541), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1541), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1541), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1541), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1541), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1541), - [anon_sym_MOZ_COLD] = ACTIONS(1541), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1541), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1541), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1541), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1541), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1541), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1541), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1541), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1541), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1541), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1541), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1541), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1541), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1541), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1541), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1541), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1541), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1541), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1541), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1541), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1541), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_NONNULL] = ACTIONS(1541), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1541), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1541), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1541), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1541), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1541), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_NORETURN] = ACTIONS(1541), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1541), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1541), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1541), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1541), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1541), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1541), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1541), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1541), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1541), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1541), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1541), - [anon_sym_MOZ_RAII] = ACTIONS(1541), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1541), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1541), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1541), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1541), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1541), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1541), - [sym_raw_string_literal] = ACTIONS(1543), - }, - [418] = { - [sym_identifier] = ACTIONS(1545), - [aux_sym_preproc_include_token1] = ACTIONS(1545), - [aux_sym_preproc_def_token1] = ACTIONS(1545), - [aux_sym_preproc_if_token1] = ACTIONS(1545), - [aux_sym_preproc_if_token2] = ACTIONS(1545), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1545), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1545), - [sym_preproc_directive] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1547), - [anon_sym_TILDE] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1547), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1547), - [anon_sym_typedef] = ACTIONS(1545), - [anon_sym_extern] = ACTIONS(1545), - [anon_sym___attribute__] = ACTIONS(1545), - [anon_sym_COLON_COLON] = ACTIONS(1547), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1547), - [anon_sym___declspec] = ACTIONS(1545), - [anon_sym___based] = ACTIONS(1545), - [anon_sym___cdecl] = ACTIONS(1545), - [anon_sym___clrcall] = ACTIONS(1545), - [anon_sym___stdcall] = ACTIONS(1545), - [anon_sym___fastcall] = ACTIONS(1545), - [anon_sym___thiscall] = ACTIONS(1545), - [anon_sym___vectorcall] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_static] = ACTIONS(1545), - [anon_sym_register] = ACTIONS(1545), - [anon_sym_inline] = ACTIONS(1545), - [anon_sym_thread_local] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_volatile] = ACTIONS(1545), - [anon_sym_restrict] = ACTIONS(1545), - [anon_sym__Atomic] = ACTIONS(1545), - [anon_sym_mutable] = ACTIONS(1545), - [anon_sym_constexpr] = ACTIONS(1545), - [anon_sym_signed] = ACTIONS(1545), - [anon_sym_unsigned] = ACTIONS(1545), - [anon_sym_long] = ACTIONS(1545), - [anon_sym_short] = ACTIONS(1545), - [sym_primitive_type] = ACTIONS(1545), - [anon_sym_enum] = ACTIONS(1545), - [anon_sym_class] = ACTIONS(1545), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_union] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_else] = ACTIONS(1545), - [anon_sym_switch] = ACTIONS(1545), - [anon_sym_case] = ACTIONS(1545), - [anon_sym_default] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_do] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_goto] = ACTIONS(1545), - [anon_sym_DASH_DASH] = ACTIONS(1547), - [anon_sym_PLUS_PLUS] = ACTIONS(1547), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1547), - [anon_sym_u_SQUOTE] = ACTIONS(1547), - [anon_sym_U_SQUOTE] = ACTIONS(1547), - [anon_sym_u8_SQUOTE] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_L_DQUOTE] = ACTIONS(1547), - [anon_sym_u_DQUOTE] = ACTIONS(1547), - [anon_sym_U_DQUOTE] = ACTIONS(1547), - [anon_sym_u8_DQUOTE] = ACTIONS(1547), - [anon_sym_DQUOTE] = ACTIONS(1547), - [sym_true] = ACTIONS(1545), - [sym_false] = ACTIONS(1545), - [sym_null] = ACTIONS(1545), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1545), - [anon_sym_virtual] = ACTIONS(1545), - [anon_sym_explicit] = ACTIONS(1545), - [sym_auto] = ACTIONS(1545), - [anon_sym_typename] = ACTIONS(1545), - [anon_sym_template] = ACTIONS(1545), - [anon_sym_operator] = ACTIONS(1545), - [anon_sym_delete] = ACTIONS(1545), - [anon_sym_throw] = ACTIONS(1545), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_using] = ACTIONS(1545), - [anon_sym_static_assert] = ACTIONS(1545), - [anon_sym_co_return] = ACTIONS(1545), - [anon_sym_co_yield] = ACTIONS(1545), - [anon_sym_try] = ACTIONS(1545), - [anon_sym_co_await] = ACTIONS(1545), - [anon_sym_new] = ACTIONS(1545), - [sym_this] = ACTIONS(1545), - [sym_nullptr] = ACTIONS(1545), - [sym_alone_macro] = ACTIONS(1547), - [aux_sym_alone_macro_call_token1] = ACTIONS(1545), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_FORWARD] = ACTIONS(1545), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1545), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_PS_GET] = ACTIONS(1545), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1545), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1545), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1545), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1545), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1545), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1545), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1545), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1545), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1545), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1545), - [anon_sym_MOZ_COLD] = ACTIONS(1545), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1545), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1545), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1545), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1545), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1545), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1545), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1545), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1545), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1545), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1545), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1545), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1545), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1545), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1545), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1545), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1545), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1545), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1545), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1545), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1545), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_NONNULL] = ACTIONS(1545), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1545), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1545), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1545), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1545), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1545), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_NORETURN] = ACTIONS(1545), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1545), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1545), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1545), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1545), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1545), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1545), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1545), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1545), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1545), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1545), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1545), - [anon_sym_MOZ_RAII] = ACTIONS(1545), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1545), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1545), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1545), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1545), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1545), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1545), - [sym_raw_string_literal] = ACTIONS(1547), - }, - [419] = { - [ts_builtin_sym_end] = ACTIONS(1567), - [sym_identifier] = ACTIONS(1565), - [aux_sym_preproc_include_token1] = ACTIONS(1565), - [aux_sym_preproc_def_token1] = ACTIONS(1565), - [aux_sym_preproc_if_token1] = ACTIONS(1565), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1565), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1565), - [sym_preproc_directive] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1567), - [anon_sym_TILDE] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_AMP_AMP] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_typedef] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym___attribute__] = ACTIONS(1565), - [anon_sym_COLON_COLON] = ACTIONS(1567), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1567), - [anon_sym___declspec] = ACTIONS(1565), - [anon_sym___based] = ACTIONS(1565), - [anon_sym___cdecl] = ACTIONS(1565), - [anon_sym___clrcall] = ACTIONS(1565), - [anon_sym___stdcall] = ACTIONS(1565), - [anon_sym___fastcall] = ACTIONS(1565), - [anon_sym___thiscall] = ACTIONS(1565), - [anon_sym___vectorcall] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1565), - [anon_sym_register] = ACTIONS(1565), - [anon_sym_inline] = ACTIONS(1565), - [anon_sym_thread_local] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [anon_sym_volatile] = ACTIONS(1565), - [anon_sym_restrict] = ACTIONS(1565), - [anon_sym__Atomic] = ACTIONS(1565), - [anon_sym_mutable] = ACTIONS(1565), - [anon_sym_constexpr] = ACTIONS(1565), - [anon_sym_signed] = ACTIONS(1565), - [anon_sym_unsigned] = ACTIONS(1565), - [anon_sym_long] = ACTIONS(1565), - [anon_sym_short] = ACTIONS(1565), - [sym_primitive_type] = ACTIONS(1565), - [anon_sym_enum] = ACTIONS(1565), - [anon_sym_class] = ACTIONS(1565), - [anon_sym_struct] = ACTIONS(1565), - [anon_sym_union] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_switch] = ACTIONS(1565), - [anon_sym_case] = ACTIONS(1565), - [anon_sym_default] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_goto] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_PLUS_PLUS] = ACTIONS(1567), - [anon_sym_sizeof] = ACTIONS(1565), - [sym_number_literal] = ACTIONS(1567), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1567), - [anon_sym_u_DQUOTE] = ACTIONS(1567), - [anon_sym_U_DQUOTE] = ACTIONS(1567), - [anon_sym_u8_DQUOTE] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym_true] = ACTIONS(1565), - [sym_false] = ACTIONS(1565), - [sym_null] = ACTIONS(1565), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1565), - [anon_sym_virtual] = ACTIONS(1565), - [anon_sym_explicit] = ACTIONS(1565), - [sym_auto] = ACTIONS(1565), - [anon_sym_typename] = ACTIONS(1565), - [anon_sym_template] = ACTIONS(1565), - [anon_sym_operator] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_throw] = ACTIONS(1565), - [anon_sym_namespace] = ACTIONS(1565), - [anon_sym_using] = ACTIONS(1565), - [anon_sym_static_assert] = ACTIONS(1565), - [anon_sym_co_return] = ACTIONS(1565), - [anon_sym_co_yield] = ACTIONS(1565), - [anon_sym_try] = ACTIONS(1565), - [anon_sym_co_await] = ACTIONS(1565), - [anon_sym_new] = ACTIONS(1565), - [sym_this] = ACTIONS(1565), - [sym_nullptr] = ACTIONS(1565), - [sym_alone_macro] = ACTIONS(1567), - [aux_sym_alone_macro_call_token1] = ACTIONS(1565), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_FORWARD] = ACTIONS(1565), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1565), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_PS_GET] = ACTIONS(1565), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1565), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1565), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1565), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1565), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1565), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1565), - [anon_sym_MOZ_COLD] = ACTIONS(1565), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1565), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1565), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1565), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1565), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1565), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1565), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1565), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1565), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1565), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1565), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1565), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1565), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1565), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_NONNULL] = ACTIONS(1565), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1565), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1565), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1565), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1565), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1565), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1565), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1565), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1565), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1565), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1565), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1565), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1565), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1565), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1565), - [anon_sym_MOZ_RAII] = ACTIONS(1565), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1565), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1565), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1565), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1565), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1565), - [sym_raw_string_literal] = ACTIONS(1567), - }, - [420] = { - [sym_identifier] = ACTIONS(1549), - [aux_sym_preproc_include_token1] = ACTIONS(1549), - [aux_sym_preproc_def_token1] = ACTIONS(1549), - [aux_sym_preproc_if_token1] = ACTIONS(1549), - [aux_sym_preproc_if_token2] = ACTIONS(1549), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1549), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1549), - [sym_preproc_directive] = ACTIONS(1549), - [anon_sym_LPAREN2] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_AMP_AMP] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_typedef] = ACTIONS(1549), - [anon_sym_extern] = ACTIONS(1549), - [anon_sym___attribute__] = ACTIONS(1549), - [anon_sym_COLON_COLON] = ACTIONS(1551), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1551), - [anon_sym___declspec] = ACTIONS(1549), - [anon_sym___based] = ACTIONS(1549), - [anon_sym___cdecl] = ACTIONS(1549), - [anon_sym___clrcall] = ACTIONS(1549), - [anon_sym___stdcall] = ACTIONS(1549), - [anon_sym___fastcall] = ACTIONS(1549), - [anon_sym___thiscall] = ACTIONS(1549), - [anon_sym___vectorcall] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_static] = ACTIONS(1549), - [anon_sym_register] = ACTIONS(1549), - [anon_sym_inline] = ACTIONS(1549), - [anon_sym_thread_local] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [anon_sym_volatile] = ACTIONS(1549), - [anon_sym_restrict] = ACTIONS(1549), - [anon_sym__Atomic] = ACTIONS(1549), - [anon_sym_mutable] = ACTIONS(1549), - [anon_sym_constexpr] = ACTIONS(1549), - [anon_sym_signed] = ACTIONS(1549), - [anon_sym_unsigned] = ACTIONS(1549), - [anon_sym_long] = ACTIONS(1549), - [anon_sym_short] = ACTIONS(1549), - [sym_primitive_type] = ACTIONS(1549), - [anon_sym_enum] = ACTIONS(1549), - [anon_sym_class] = ACTIONS(1549), - [anon_sym_struct] = ACTIONS(1549), - [anon_sym_union] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_else] = ACTIONS(1549), - [anon_sym_switch] = ACTIONS(1549), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1549), - [anon_sym_while] = ACTIONS(1549), - [anon_sym_do] = ACTIONS(1549), - [anon_sym_for] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1549), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1549), - [anon_sym_goto] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_PLUS_PLUS] = ACTIONS(1551), - [anon_sym_sizeof] = ACTIONS(1549), - [sym_number_literal] = ACTIONS(1551), - [anon_sym_L_SQUOTE] = ACTIONS(1551), - [anon_sym_u_SQUOTE] = ACTIONS(1551), - [anon_sym_U_SQUOTE] = ACTIONS(1551), - [anon_sym_u8_SQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1549), - [sym_false] = ACTIONS(1549), - [sym_null] = ACTIONS(1549), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1549), - [anon_sym_virtual] = ACTIONS(1549), - [anon_sym_explicit] = ACTIONS(1549), - [sym_auto] = ACTIONS(1549), - [anon_sym_typename] = ACTIONS(1549), - [anon_sym_template] = ACTIONS(1549), - [anon_sym_operator] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_throw] = ACTIONS(1549), - [anon_sym_namespace] = ACTIONS(1549), - [anon_sym_using] = ACTIONS(1549), - [anon_sym_static_assert] = ACTIONS(1549), - [anon_sym_co_return] = ACTIONS(1549), - [anon_sym_co_yield] = ACTIONS(1549), - [anon_sym_try] = ACTIONS(1549), - [anon_sym_co_await] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1549), - [sym_this] = ACTIONS(1549), - [sym_nullptr] = ACTIONS(1549), - [sym_alone_macro] = ACTIONS(1551), - [aux_sym_alone_macro_call_token1] = ACTIONS(1549), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_FORWARD] = ACTIONS(1549), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1549), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_PS_GET] = ACTIONS(1549), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1549), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1549), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1549), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1549), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1549), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1549), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1549), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1549), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1549), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1549), - [anon_sym_MOZ_COLD] = ACTIONS(1549), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1549), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1549), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1549), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1549), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1549), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1549), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1549), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1549), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1549), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1549), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1549), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1549), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1549), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1549), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1549), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1549), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1549), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1549), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1549), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1549), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_NONNULL] = ACTIONS(1549), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1549), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1549), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1549), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1549), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1549), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_NORETURN] = ACTIONS(1549), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1549), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1549), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1549), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1549), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1549), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1549), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1549), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1549), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1549), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1549), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1549), - [anon_sym_MOZ_RAII] = ACTIONS(1549), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1549), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1549), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1549), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1549), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1549), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1549), - [sym_raw_string_literal] = ACTIONS(1551), - }, - [421] = { - [ts_builtin_sym_end] = ACTIONS(1559), - [sym_identifier] = ACTIONS(1557), - [aux_sym_preproc_include_token1] = ACTIONS(1557), - [aux_sym_preproc_def_token1] = ACTIONS(1557), - [aux_sym_preproc_if_token1] = ACTIONS(1557), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1557), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1557), - [sym_preproc_directive] = ACTIONS(1557), - [anon_sym_LPAREN2] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_typedef] = ACTIONS(1557), - [anon_sym_extern] = ACTIONS(1557), - [anon_sym___attribute__] = ACTIONS(1557), - [anon_sym_COLON_COLON] = ACTIONS(1559), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1559), - [anon_sym___declspec] = ACTIONS(1557), - [anon_sym___based] = ACTIONS(1557), - [anon_sym___cdecl] = ACTIONS(1557), - [anon_sym___clrcall] = ACTIONS(1557), - [anon_sym___stdcall] = ACTIONS(1557), - [anon_sym___fastcall] = ACTIONS(1557), - [anon_sym___thiscall] = ACTIONS(1557), - [anon_sym___vectorcall] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_register] = ACTIONS(1557), - [anon_sym_inline] = ACTIONS(1557), - [anon_sym_thread_local] = ACTIONS(1557), - [anon_sym_const] = ACTIONS(1557), - [anon_sym_volatile] = ACTIONS(1557), - [anon_sym_restrict] = ACTIONS(1557), - [anon_sym__Atomic] = ACTIONS(1557), - [anon_sym_mutable] = ACTIONS(1557), - [anon_sym_constexpr] = ACTIONS(1557), - [anon_sym_signed] = ACTIONS(1557), - [anon_sym_unsigned] = ACTIONS(1557), - [anon_sym_long] = ACTIONS(1557), - [anon_sym_short] = ACTIONS(1557), - [sym_primitive_type] = ACTIONS(1557), - [anon_sym_enum] = ACTIONS(1557), - [anon_sym_class] = ACTIONS(1557), - [anon_sym_struct] = ACTIONS(1557), - [anon_sym_union] = ACTIONS(1557), - [anon_sym_if] = ACTIONS(1557), - [anon_sym_else] = ACTIONS(1557), - [anon_sym_switch] = ACTIONS(1557), - [anon_sym_case] = ACTIONS(1557), - [anon_sym_default] = ACTIONS(1557), - [anon_sym_while] = ACTIONS(1557), - [anon_sym_do] = ACTIONS(1557), - [anon_sym_for] = ACTIONS(1557), - [anon_sym_return] = ACTIONS(1557), - [anon_sym_break] = ACTIONS(1557), - [anon_sym_continue] = ACTIONS(1557), - [anon_sym_goto] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_sizeof] = ACTIONS(1557), - [sym_number_literal] = ACTIONS(1559), - [anon_sym_L_SQUOTE] = ACTIONS(1559), - [anon_sym_u_SQUOTE] = ACTIONS(1559), - [anon_sym_U_SQUOTE] = ACTIONS(1559), - [anon_sym_u8_SQUOTE] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1559), - [anon_sym_L_DQUOTE] = ACTIONS(1559), - [anon_sym_u_DQUOTE] = ACTIONS(1559), - [anon_sym_U_DQUOTE] = ACTIONS(1559), - [anon_sym_u8_DQUOTE] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1557), - [anon_sym_virtual] = ACTIONS(1557), - [anon_sym_explicit] = ACTIONS(1557), - [sym_auto] = ACTIONS(1557), - [anon_sym_typename] = ACTIONS(1557), - [anon_sym_template] = ACTIONS(1557), - [anon_sym_operator] = ACTIONS(1557), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_throw] = ACTIONS(1557), - [anon_sym_namespace] = ACTIONS(1557), - [anon_sym_using] = ACTIONS(1557), - [anon_sym_static_assert] = ACTIONS(1557), - [anon_sym_co_return] = ACTIONS(1557), - [anon_sym_co_yield] = ACTIONS(1557), - [anon_sym_try] = ACTIONS(1557), - [anon_sym_co_await] = ACTIONS(1557), - [anon_sym_new] = ACTIONS(1557), - [sym_this] = ACTIONS(1557), - [sym_nullptr] = ACTIONS(1557), - [sym_alone_macro] = ACTIONS(1559), - [aux_sym_alone_macro_call_token1] = ACTIONS(1557), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_FORWARD] = ACTIONS(1557), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1557), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_PS_GET] = ACTIONS(1557), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1557), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1557), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1557), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1557), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1557), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1557), - [anon_sym_MOZ_COLD] = ACTIONS(1557), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1557), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1557), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1557), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1557), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1557), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1557), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1557), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1557), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1557), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1557), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1557), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1557), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1557), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_NONNULL] = ACTIONS(1557), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1557), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1557), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1557), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1557), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1557), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1557), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1557), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1557), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1557), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1557), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1557), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1557), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1557), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1557), - [anon_sym_MOZ_RAII] = ACTIONS(1557), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1557), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1557), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1557), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1557), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1557), - [sym_raw_string_literal] = ACTIONS(1559), - }, - [422] = { - [sym_identifier] = ACTIONS(1553), - [aux_sym_preproc_include_token1] = ACTIONS(1553), - [aux_sym_preproc_def_token1] = ACTIONS(1553), - [aux_sym_preproc_if_token1] = ACTIONS(1553), - [aux_sym_preproc_if_token2] = ACTIONS(1553), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1553), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1553), - [sym_preproc_directive] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1555), - [anon_sym_TILDE] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1555), - [anon_sym_AMP_AMP] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1555), - [anon_sym_typedef] = ACTIONS(1553), - [anon_sym_extern] = ACTIONS(1553), - [anon_sym___attribute__] = ACTIONS(1553), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1555), - [anon_sym___declspec] = ACTIONS(1553), - [anon_sym___based] = ACTIONS(1553), - [anon_sym___cdecl] = ACTIONS(1553), - [anon_sym___clrcall] = ACTIONS(1553), - [anon_sym___stdcall] = ACTIONS(1553), - [anon_sym___fastcall] = ACTIONS(1553), - [anon_sym___thiscall] = ACTIONS(1553), - [anon_sym___vectorcall] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_static] = ACTIONS(1553), - [anon_sym_register] = ACTIONS(1553), - [anon_sym_inline] = ACTIONS(1553), - [anon_sym_thread_local] = ACTIONS(1553), - [anon_sym_const] = ACTIONS(1553), - [anon_sym_volatile] = ACTIONS(1553), - [anon_sym_restrict] = ACTIONS(1553), - [anon_sym__Atomic] = ACTIONS(1553), - [anon_sym_mutable] = ACTIONS(1553), - [anon_sym_constexpr] = ACTIONS(1553), - [anon_sym_signed] = ACTIONS(1553), - [anon_sym_unsigned] = ACTIONS(1553), - [anon_sym_long] = ACTIONS(1553), - [anon_sym_short] = ACTIONS(1553), - [sym_primitive_type] = ACTIONS(1553), - [anon_sym_enum] = ACTIONS(1553), - [anon_sym_class] = ACTIONS(1553), - [anon_sym_struct] = ACTIONS(1553), - [anon_sym_union] = ACTIONS(1553), - [anon_sym_if] = ACTIONS(1553), - [anon_sym_else] = ACTIONS(1553), - [anon_sym_switch] = ACTIONS(1553), - [anon_sym_case] = ACTIONS(1553), - [anon_sym_default] = ACTIONS(1553), - [anon_sym_while] = ACTIONS(1553), - [anon_sym_do] = ACTIONS(1553), - [anon_sym_for] = ACTIONS(1553), - [anon_sym_return] = ACTIONS(1553), - [anon_sym_break] = ACTIONS(1553), - [anon_sym_continue] = ACTIONS(1553), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_DASH_DASH] = ACTIONS(1555), - [anon_sym_PLUS_PLUS] = ACTIONS(1555), - [anon_sym_sizeof] = ACTIONS(1553), - [sym_number_literal] = ACTIONS(1555), - [anon_sym_L_SQUOTE] = ACTIONS(1555), - [anon_sym_u_SQUOTE] = ACTIONS(1555), - [anon_sym_U_SQUOTE] = ACTIONS(1555), - [anon_sym_u8_SQUOTE] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1555), - [anon_sym_L_DQUOTE] = ACTIONS(1555), - [anon_sym_u_DQUOTE] = ACTIONS(1555), - [anon_sym_U_DQUOTE] = ACTIONS(1555), - [anon_sym_u8_DQUOTE] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(1555), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1553), - [anon_sym_virtual] = ACTIONS(1553), - [anon_sym_explicit] = ACTIONS(1553), - [sym_auto] = ACTIONS(1553), - [anon_sym_typename] = ACTIONS(1553), - [anon_sym_template] = ACTIONS(1553), - [anon_sym_operator] = ACTIONS(1553), - [anon_sym_delete] = ACTIONS(1553), - [anon_sym_throw] = ACTIONS(1553), - [anon_sym_namespace] = ACTIONS(1553), - [anon_sym_using] = ACTIONS(1553), - [anon_sym_static_assert] = ACTIONS(1553), - [anon_sym_co_return] = ACTIONS(1553), - [anon_sym_co_yield] = ACTIONS(1553), - [anon_sym_try] = ACTIONS(1553), - [anon_sym_co_await] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1553), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), - [sym_alone_macro] = ACTIONS(1555), - [aux_sym_alone_macro_call_token1] = ACTIONS(1553), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_FORWARD] = ACTIONS(1553), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1553), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_PS_GET] = ACTIONS(1553), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1553), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1553), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1553), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1553), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1553), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1553), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1553), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1553), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1553), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1553), - [anon_sym_MOZ_COLD] = ACTIONS(1553), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1553), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1553), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1553), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1553), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1553), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1553), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1553), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1553), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1553), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1553), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1553), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1553), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1553), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1553), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1553), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1553), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1553), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1553), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1553), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1553), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_NONNULL] = ACTIONS(1553), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1553), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1553), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1553), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1553), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1553), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_NORETURN] = ACTIONS(1553), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1553), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1553), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1553), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1553), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1553), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1553), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1553), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1553), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1553), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1553), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1553), - [anon_sym_MOZ_RAII] = ACTIONS(1553), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1553), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1553), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1553), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1553), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1553), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1553), - [sym_raw_string_literal] = ACTIONS(1555), - }, - [423] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [424] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [425] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [426] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [427] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [428] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [429] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [430] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [431] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [432] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [433] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [434] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [435] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [436] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [437] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [438] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [439] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [440] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [441] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [442] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [443] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [444] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [445] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [446] = { - [sym_preproc_def] = STATE(665), - [sym_preproc_function_def] = STATE(665), - [sym_preproc_call] = STATE(665), - [sym_preproc_if_in_field_declaration_list] = STATE(665), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(665), - [sym_preproc_else_in_field_declaration_list] = STATE(4968), - [sym_preproc_elif_in_field_declaration_list] = STATE(4968), - [sym_type_definition] = STATE(665), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3235), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3615), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(665), - [sym_field_declaration] = STATE(665), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(841), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(665), - [sym_operator_cast] = STATE(4161), - [sym_inline_method_definition] = STATE(665), - [sym__constructor_specifiers] = STATE(841), - [sym_operator_cast_definition] = STATE(665), - [sym_operator_cast_declaration] = STATE(665), - [sym_constructor_or_destructor_definition] = STATE(665), - [sym_constructor_or_destructor_declaration] = STATE(665), - [sym_friend_declaration] = STATE(665), - [sym_access_specifier] = STATE(665), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(665), - [sym_alias_declaration] = STATE(665), - [sym_static_assert_declaration] = STATE(665), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4161), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(665), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(665), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(841), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(1909), - [aux_sym_preproc_if_token1] = ACTIONS(1911), - [aux_sym_preproc_if_token2] = ACTIONS(1987), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1915), - [aux_sym_preproc_else_token1] = ACTIONS(1917), - [aux_sym_preproc_elif_token1] = ACTIONS(1919), - [sym_preproc_directive] = ACTIONS(1921), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(1951), - [anon_sym_private] = ACTIONS(1951), - [anon_sym_protected] = ACTIONS(1951), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(1955), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1957), - [anon_sym_using] = ACTIONS(1959), - [anon_sym_static_assert] = ACTIONS(1961), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1963), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [447] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [448] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [449] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [450] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [451] = { - [ts_builtin_sym_end] = ACTIONS(1655), - [sym_identifier] = ACTIONS(1653), - [aux_sym_preproc_include_token1] = ACTIONS(1653), - [aux_sym_preproc_def_token1] = ACTIONS(1653), - [aux_sym_preproc_if_token1] = ACTIONS(1653), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1653), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1653), - [sym_preproc_directive] = ACTIONS(1653), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_typedef] = ACTIONS(1653), - [anon_sym_extern] = ACTIONS(1653), - [anon_sym___attribute__] = ACTIONS(1653), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1655), - [anon_sym___declspec] = ACTIONS(1653), - [anon_sym___based] = ACTIONS(1653), - [anon_sym___cdecl] = ACTIONS(1653), - [anon_sym___clrcall] = ACTIONS(1653), - [anon_sym___stdcall] = ACTIONS(1653), - [anon_sym___fastcall] = ACTIONS(1653), - [anon_sym___thiscall] = ACTIONS(1653), - [anon_sym___vectorcall] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1653), - [anon_sym_register] = ACTIONS(1653), - [anon_sym_inline] = ACTIONS(1653), - [anon_sym_thread_local] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_volatile] = ACTIONS(1653), - [anon_sym_restrict] = ACTIONS(1653), - [anon_sym__Atomic] = ACTIONS(1653), - [anon_sym_mutable] = ACTIONS(1653), - [anon_sym_constexpr] = ACTIONS(1653), - [anon_sym_signed] = ACTIONS(1653), - [anon_sym_unsigned] = ACTIONS(1653), - [anon_sym_long] = ACTIONS(1653), - [anon_sym_short] = ACTIONS(1653), - [sym_primitive_type] = ACTIONS(1653), - [anon_sym_enum] = ACTIONS(1653), - [anon_sym_class] = ACTIONS(1653), - [anon_sym_struct] = ACTIONS(1653), - [anon_sym_union] = ACTIONS(1653), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_else] = ACTIONS(1989), - [anon_sym_switch] = ACTIONS(1653), - [anon_sym_case] = ACTIONS(1653), - [anon_sym_default] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_do] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_goto] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_sizeof] = ACTIONS(1653), - [sym_number_literal] = ACTIONS(1655), - [anon_sym_L_SQUOTE] = ACTIONS(1655), - [anon_sym_u_SQUOTE] = ACTIONS(1655), - [anon_sym_U_SQUOTE] = ACTIONS(1655), - [anon_sym_u8_SQUOTE] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [anon_sym_L_DQUOTE] = ACTIONS(1655), - [anon_sym_u_DQUOTE] = ACTIONS(1655), - [anon_sym_U_DQUOTE] = ACTIONS(1655), - [anon_sym_u8_DQUOTE] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1653), - [anon_sym_virtual] = ACTIONS(1653), - [anon_sym_explicit] = ACTIONS(1653), - [sym_auto] = ACTIONS(1653), - [anon_sym_typename] = ACTIONS(1653), - [anon_sym_template] = ACTIONS(1653), - [anon_sym_operator] = ACTIONS(1653), - [anon_sym_delete] = ACTIONS(1653), - [anon_sym_throw] = ACTIONS(1653), - [anon_sym_namespace] = ACTIONS(1653), - [anon_sym_using] = ACTIONS(1653), - [anon_sym_static_assert] = ACTIONS(1653), - [anon_sym_co_return] = ACTIONS(1653), - [anon_sym_co_yield] = ACTIONS(1653), - [anon_sym_try] = ACTIONS(1653), - [anon_sym_co_await] = ACTIONS(1653), - [anon_sym_new] = ACTIONS(1653), - [sym_this] = ACTIONS(1653), - [sym_nullptr] = ACTIONS(1653), - [sym_alone_macro] = ACTIONS(1655), - [aux_sym_alone_macro_call_token1] = ACTIONS(1653), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_FORWARD] = ACTIONS(1653), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1653), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_PS_GET] = ACTIONS(1653), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1653), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1653), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1653), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1653), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1653), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1653), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1653), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1653), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1653), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1653), - [anon_sym_MOZ_COLD] = ACTIONS(1653), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1653), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1653), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1653), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1653), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1653), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1653), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1653), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1653), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1653), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1653), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1653), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1653), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1653), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1653), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1653), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1653), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1653), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1653), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1653), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1653), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_NONNULL] = ACTIONS(1653), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1653), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1653), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1653), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1653), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1653), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_NORETURN] = ACTIONS(1653), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1653), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1653), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1653), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1653), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1653), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1653), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1653), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1653), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1653), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1653), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1653), - [anon_sym_MOZ_RAII] = ACTIONS(1653), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1653), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1653), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1653), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1653), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1653), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1653), - [sym_raw_string_literal] = ACTIONS(1655), - }, - [452] = { - [ts_builtin_sym_end] = ACTIONS(1665), - [sym_identifier] = ACTIONS(1663), - [aux_sym_preproc_include_token1] = ACTIONS(1663), - [aux_sym_preproc_def_token1] = ACTIONS(1663), - [aux_sym_preproc_if_token1] = ACTIONS(1663), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1663), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1663), - [sym_preproc_directive] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1665), - [anon_sym_TILDE] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_AMP_AMP] = ACTIONS(1665), - [anon_sym_AMP] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_typedef] = ACTIONS(1663), - [anon_sym_extern] = ACTIONS(1663), - [anon_sym___attribute__] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1665), - [anon_sym___declspec] = ACTIONS(1663), - [anon_sym___based] = ACTIONS(1663), - [anon_sym___cdecl] = ACTIONS(1663), - [anon_sym___clrcall] = ACTIONS(1663), - [anon_sym___stdcall] = ACTIONS(1663), - [anon_sym___fastcall] = ACTIONS(1663), - [anon_sym___thiscall] = ACTIONS(1663), - [anon_sym___vectorcall] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_static] = ACTIONS(1663), - [anon_sym_register] = ACTIONS(1663), - [anon_sym_inline] = ACTIONS(1663), - [anon_sym_thread_local] = ACTIONS(1663), - [anon_sym_const] = ACTIONS(1663), - [anon_sym_volatile] = ACTIONS(1663), - [anon_sym_restrict] = ACTIONS(1663), - [anon_sym__Atomic] = ACTIONS(1663), - [anon_sym_mutable] = ACTIONS(1663), - [anon_sym_constexpr] = ACTIONS(1663), - [anon_sym_signed] = ACTIONS(1663), - [anon_sym_unsigned] = ACTIONS(1663), - [anon_sym_long] = ACTIONS(1663), - [anon_sym_short] = ACTIONS(1663), - [sym_primitive_type] = ACTIONS(1663), - [anon_sym_enum] = ACTIONS(1663), - [anon_sym_class] = ACTIONS(1663), - [anon_sym_struct] = ACTIONS(1663), - [anon_sym_union] = ACTIONS(1663), - [anon_sym_if] = ACTIONS(1663), - [anon_sym_else] = ACTIONS(1663), - [anon_sym_switch] = ACTIONS(1663), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1663), - [anon_sym_while] = ACTIONS(1663), - [anon_sym_do] = ACTIONS(1663), - [anon_sym_for] = ACTIONS(1663), - [anon_sym_return] = ACTIONS(1663), - [anon_sym_break] = ACTIONS(1663), - [anon_sym_continue] = ACTIONS(1663), - [anon_sym_goto] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1665), - [anon_sym_PLUS_PLUS] = ACTIONS(1665), - [anon_sym_sizeof] = ACTIONS(1663), - [sym_number_literal] = ACTIONS(1665), - [anon_sym_L_SQUOTE] = ACTIONS(1665), - [anon_sym_u_SQUOTE] = ACTIONS(1665), - [anon_sym_U_SQUOTE] = ACTIONS(1665), - [anon_sym_u8_SQUOTE] = ACTIONS(1665), - [anon_sym_SQUOTE] = ACTIONS(1665), - [anon_sym_L_DQUOTE] = ACTIONS(1665), - [anon_sym_u_DQUOTE] = ACTIONS(1665), - [anon_sym_U_DQUOTE] = ACTIONS(1665), - [anon_sym_u8_DQUOTE] = ACTIONS(1665), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_true] = ACTIONS(1663), - [sym_false] = ACTIONS(1663), - [sym_null] = ACTIONS(1663), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1663), - [anon_sym_virtual] = ACTIONS(1663), - [anon_sym_explicit] = ACTIONS(1663), - [sym_auto] = ACTIONS(1663), - [anon_sym_typename] = ACTIONS(1663), - [anon_sym_template] = ACTIONS(1663), - [anon_sym_operator] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_throw] = ACTIONS(1663), - [anon_sym_namespace] = ACTIONS(1663), - [anon_sym_using] = ACTIONS(1663), - [anon_sym_static_assert] = ACTIONS(1663), - [anon_sym_co_return] = ACTIONS(1663), - [anon_sym_co_yield] = ACTIONS(1663), - [anon_sym_try] = ACTIONS(1663), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1663), - [sym_this] = ACTIONS(1663), - [sym_nullptr] = ACTIONS(1663), - [sym_alone_macro] = ACTIONS(1665), - [aux_sym_alone_macro_call_token1] = ACTIONS(1663), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_FORWARD] = ACTIONS(1663), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1663), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_PS_GET] = ACTIONS(1663), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1663), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1663), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1663), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1663), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1663), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1663), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1663), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1663), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1663), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1663), - [anon_sym_MOZ_COLD] = ACTIONS(1663), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1663), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1663), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1663), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1663), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1663), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1663), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1663), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1663), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1663), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1663), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1663), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1663), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1663), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1663), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1663), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1663), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1663), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1663), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1663), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1663), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_NONNULL] = ACTIONS(1663), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1663), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1663), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1663), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1663), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1663), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_NORETURN] = ACTIONS(1663), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1663), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1663), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1663), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1663), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1663), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1663), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1663), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1663), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1663), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1663), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1663), - [anon_sym_MOZ_RAII] = ACTIONS(1663), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1663), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1663), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1663), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1663), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1663), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1663), - [sym_raw_string_literal] = ACTIONS(1665), - }, - [453] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [454] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [455] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [456] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [457] = { - [ts_builtin_sym_end] = ACTIONS(1611), - [sym_identifier] = ACTIONS(1609), - [aux_sym_preproc_include_token1] = ACTIONS(1609), - [aux_sym_preproc_def_token1] = ACTIONS(1609), - [aux_sym_preproc_if_token1] = ACTIONS(1609), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1609), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1609), - [sym_preproc_directive] = ACTIONS(1609), - [anon_sym_LPAREN2] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_AMP_AMP] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1611), - [anon_sym_typedef] = ACTIONS(1609), - [anon_sym_extern] = ACTIONS(1609), - [anon_sym___attribute__] = ACTIONS(1609), - [anon_sym_COLON_COLON] = ACTIONS(1611), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1611), - [anon_sym___declspec] = ACTIONS(1609), - [anon_sym___based] = ACTIONS(1609), - [anon_sym___cdecl] = ACTIONS(1609), - [anon_sym___clrcall] = ACTIONS(1609), - [anon_sym___stdcall] = ACTIONS(1609), - [anon_sym___fastcall] = ACTIONS(1609), - [anon_sym___thiscall] = ACTIONS(1609), - [anon_sym___vectorcall] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_static] = ACTIONS(1609), - [anon_sym_register] = ACTIONS(1609), - [anon_sym_inline] = ACTIONS(1609), - [anon_sym_thread_local] = ACTIONS(1609), - [anon_sym_const] = ACTIONS(1609), - [anon_sym_volatile] = ACTIONS(1609), - [anon_sym_restrict] = ACTIONS(1609), - [anon_sym__Atomic] = ACTIONS(1609), - [anon_sym_mutable] = ACTIONS(1609), - [anon_sym_constexpr] = ACTIONS(1609), - [anon_sym_signed] = ACTIONS(1609), - [anon_sym_unsigned] = ACTIONS(1609), - [anon_sym_long] = ACTIONS(1609), - [anon_sym_short] = ACTIONS(1609), - [sym_primitive_type] = ACTIONS(1609), - [anon_sym_enum] = ACTIONS(1609), - [anon_sym_class] = ACTIONS(1609), - [anon_sym_struct] = ACTIONS(1609), - [anon_sym_union] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1609), - [anon_sym_else] = ACTIONS(1609), - [anon_sym_switch] = ACTIONS(1609), - [anon_sym_case] = ACTIONS(1609), - [anon_sym_default] = ACTIONS(1609), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_do] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_break] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [anon_sym_goto] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_sizeof] = ACTIONS(1609), - [sym_number_literal] = ACTIONS(1611), - [anon_sym_L_SQUOTE] = ACTIONS(1611), - [anon_sym_u_SQUOTE] = ACTIONS(1611), - [anon_sym_U_SQUOTE] = ACTIONS(1611), - [anon_sym_u8_SQUOTE] = ACTIONS(1611), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_L_DQUOTE] = ACTIONS(1611), - [anon_sym_u_DQUOTE] = ACTIONS(1611), - [anon_sym_U_DQUOTE] = ACTIONS(1611), - [anon_sym_u8_DQUOTE] = ACTIONS(1611), - [anon_sym_DQUOTE] = ACTIONS(1611), - [sym_true] = ACTIONS(1609), - [sym_false] = ACTIONS(1609), - [sym_null] = ACTIONS(1609), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1609), - [anon_sym_virtual] = ACTIONS(1609), - [anon_sym_explicit] = ACTIONS(1609), - [sym_auto] = ACTIONS(1609), - [anon_sym_typename] = ACTIONS(1609), - [anon_sym_template] = ACTIONS(1609), - [anon_sym_operator] = ACTIONS(1609), - [anon_sym_delete] = ACTIONS(1609), - [anon_sym_throw] = ACTIONS(1609), - [anon_sym_namespace] = ACTIONS(1609), - [anon_sym_using] = ACTIONS(1609), - [anon_sym_static_assert] = ACTIONS(1609), - [anon_sym_co_return] = ACTIONS(1609), - [anon_sym_co_yield] = ACTIONS(1609), - [anon_sym_try] = ACTIONS(1609), - [anon_sym_co_await] = ACTIONS(1609), - [anon_sym_new] = ACTIONS(1609), - [sym_this] = ACTIONS(1609), - [sym_nullptr] = ACTIONS(1609), - [sym_alone_macro] = ACTIONS(1611), - [aux_sym_alone_macro_call_token1] = ACTIONS(1609), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_FORWARD] = ACTIONS(1609), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1609), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_PS_GET] = ACTIONS(1609), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1609), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1609), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1609), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1609), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1609), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1609), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1609), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1609), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1609), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1609), - [anon_sym_MOZ_COLD] = ACTIONS(1609), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1609), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1609), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1609), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1609), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1609), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1609), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1609), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1609), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1609), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1609), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1609), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1609), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1609), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1609), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1609), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1609), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1609), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1609), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1609), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1609), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_NONNULL] = ACTIONS(1609), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1609), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1609), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1609), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1609), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1609), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_NORETURN] = ACTIONS(1609), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1609), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1609), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1609), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1609), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1609), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1609), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1609), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1609), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1609), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1609), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1609), - [anon_sym_MOZ_RAII] = ACTIONS(1609), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1609), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1609), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1609), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1609), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1609), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1609), - [sym_raw_string_literal] = ACTIONS(1611), - }, - [458] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [459] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [460] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [461] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [462] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [463] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [464] = { - [sym_preproc_def] = STATE(665), - [sym_preproc_function_def] = STATE(665), - [sym_preproc_call] = STATE(665), - [sym_preproc_if_in_field_declaration_list] = STATE(665), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(665), - [sym_preproc_else_in_field_declaration_list] = STATE(4943), - [sym_preproc_elif_in_field_declaration_list] = STATE(4943), - [sym_type_definition] = STATE(665), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3235), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3615), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(665), - [sym_field_declaration] = STATE(665), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(841), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(665), - [sym_operator_cast] = STATE(4161), - [sym_inline_method_definition] = STATE(665), - [sym__constructor_specifiers] = STATE(841), - [sym_operator_cast_definition] = STATE(665), - [sym_operator_cast_declaration] = STATE(665), - [sym_constructor_or_destructor_definition] = STATE(665), - [sym_constructor_or_destructor_declaration] = STATE(665), - [sym_friend_declaration] = STATE(665), - [sym_access_specifier] = STATE(665), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(665), - [sym_alias_declaration] = STATE(665), - [sym_static_assert_declaration] = STATE(665), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4161), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(665), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(665), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(841), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(1909), - [aux_sym_preproc_if_token1] = ACTIONS(1911), - [aux_sym_preproc_if_token2] = ACTIONS(1991), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1915), - [aux_sym_preproc_else_token1] = ACTIONS(1917), - [aux_sym_preproc_elif_token1] = ACTIONS(1919), - [sym_preproc_directive] = ACTIONS(1921), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(1951), - [anon_sym_private] = ACTIONS(1951), - [anon_sym_protected] = ACTIONS(1951), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(1955), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1957), - [anon_sym_using] = ACTIONS(1959), - [anon_sym_static_assert] = ACTIONS(1961), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1963), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [465] = { - [sym_preproc_def] = STATE(446), - [sym_preproc_function_def] = STATE(446), - [sym_preproc_call] = STATE(446), - [sym_preproc_if_in_field_declaration_list] = STATE(446), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(446), - [sym_preproc_else_in_field_declaration_list] = STATE(4940), - [sym_preproc_elif_in_field_declaration_list] = STATE(4940), - [sym_type_definition] = STATE(446), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3235), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3615), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(446), - [sym_field_declaration] = STATE(446), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(841), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(446), - [sym_operator_cast] = STATE(4161), - [sym_inline_method_definition] = STATE(446), - [sym__constructor_specifiers] = STATE(841), - [sym_operator_cast_definition] = STATE(446), - [sym_operator_cast_declaration] = STATE(446), - [sym_constructor_or_destructor_definition] = STATE(446), - [sym_constructor_or_destructor_declaration] = STATE(446), - [sym_friend_declaration] = STATE(446), - [sym_access_specifier] = STATE(446), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(446), - [sym_alias_declaration] = STATE(446), - [sym_static_assert_declaration] = STATE(446), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4161), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(446), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(446), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(841), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(1909), - [aux_sym_preproc_if_token1] = ACTIONS(1911), - [aux_sym_preproc_if_token2] = ACTIONS(1993), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1915), - [aux_sym_preproc_else_token1] = ACTIONS(1917), - [aux_sym_preproc_elif_token1] = ACTIONS(1919), - [sym_preproc_directive] = ACTIONS(1921), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(1951), - [anon_sym_private] = ACTIONS(1951), - [anon_sym_protected] = ACTIONS(1951), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(1955), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1957), - [anon_sym_using] = ACTIONS(1959), - [anon_sym_static_assert] = ACTIONS(1961), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1963), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [466] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [467] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [468] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [469] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [470] = { - [sym_identifier] = ACTIONS(1637), - [aux_sym_preproc_include_token1] = ACTIONS(1637), - [aux_sym_preproc_def_token1] = ACTIONS(1637), - [aux_sym_preproc_if_token1] = ACTIONS(1637), - [aux_sym_preproc_if_token2] = ACTIONS(1637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1637), - [sym_preproc_directive] = ACTIONS(1637), - [anon_sym_LPAREN2] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_AMP_AMP] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_typedef] = ACTIONS(1637), - [anon_sym_extern] = ACTIONS(1637), - [anon_sym___attribute__] = ACTIONS(1637), - [anon_sym_COLON_COLON] = ACTIONS(1639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1639), - [anon_sym___declspec] = ACTIONS(1637), - [anon_sym___based] = ACTIONS(1637), - [anon_sym___cdecl] = ACTIONS(1637), - [anon_sym___clrcall] = ACTIONS(1637), - [anon_sym___stdcall] = ACTIONS(1637), - [anon_sym___fastcall] = ACTIONS(1637), - [anon_sym___thiscall] = ACTIONS(1637), - [anon_sym___vectorcall] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1637), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_register] = ACTIONS(1637), - [anon_sym_inline] = ACTIONS(1637), - [anon_sym_thread_local] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [anon_sym_volatile] = ACTIONS(1637), - [anon_sym_restrict] = ACTIONS(1637), - [anon_sym__Atomic] = ACTIONS(1637), - [anon_sym_mutable] = ACTIONS(1637), - [anon_sym_constexpr] = ACTIONS(1637), - [anon_sym_signed] = ACTIONS(1637), - [anon_sym_unsigned] = ACTIONS(1637), - [anon_sym_long] = ACTIONS(1637), - [anon_sym_short] = ACTIONS(1637), - [sym_primitive_type] = ACTIONS(1637), - [anon_sym_enum] = ACTIONS(1637), - [anon_sym_class] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(1637), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_else] = ACTIONS(1637), - [anon_sym_switch] = ACTIONS(1637), - [anon_sym_case] = ACTIONS(1637), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_do] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_goto] = ACTIONS(1637), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_sizeof] = ACTIONS(1637), - [sym_number_literal] = ACTIONS(1639), - [anon_sym_L_SQUOTE] = ACTIONS(1639), - [anon_sym_u_SQUOTE] = ACTIONS(1639), - [anon_sym_U_SQUOTE] = ACTIONS(1639), - [anon_sym_u8_SQUOTE] = ACTIONS(1639), - [anon_sym_SQUOTE] = ACTIONS(1639), - [anon_sym_L_DQUOTE] = ACTIONS(1639), - [anon_sym_u_DQUOTE] = ACTIONS(1639), - [anon_sym_U_DQUOTE] = ACTIONS(1639), - [anon_sym_u8_DQUOTE] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym_true] = ACTIONS(1637), - [sym_false] = ACTIONS(1637), - [sym_null] = ACTIONS(1637), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1637), - [anon_sym_virtual] = ACTIONS(1637), - [anon_sym_explicit] = ACTIONS(1637), - [sym_auto] = ACTIONS(1637), - [anon_sym_typename] = ACTIONS(1637), - [anon_sym_template] = ACTIONS(1637), - [anon_sym_operator] = ACTIONS(1637), - [anon_sym_delete] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1637), - [anon_sym_using] = ACTIONS(1637), - [anon_sym_static_assert] = ACTIONS(1637), - [anon_sym_co_return] = ACTIONS(1637), - [anon_sym_co_yield] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1637), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1637), - [sym_this] = ACTIONS(1637), - [sym_nullptr] = ACTIONS(1637), - [sym_alone_macro] = ACTIONS(1639), - [aux_sym_alone_macro_call_token1] = ACTIONS(1637), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_FORWARD] = ACTIONS(1637), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1637), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_PS_GET] = ACTIONS(1637), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1637), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1637), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1637), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1637), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1637), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1637), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1637), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1637), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1637), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1637), - [anon_sym_MOZ_COLD] = ACTIONS(1637), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1637), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1637), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1637), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1637), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1637), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1637), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1637), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1637), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1637), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1637), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1637), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1637), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1637), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1637), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1637), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1637), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1637), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1637), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1637), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1637), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_NONNULL] = ACTIONS(1637), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1637), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1637), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1637), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1637), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1637), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_NORETURN] = ACTIONS(1637), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1637), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1637), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1637), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1637), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1637), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1637), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1637), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1637), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1637), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1637), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1637), - [anon_sym_MOZ_RAII] = ACTIONS(1637), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1637), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1637), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1637), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1637), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1637), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1637), - [sym_raw_string_literal] = ACTIONS(1639), - }, - [471] = { - [ts_builtin_sym_end] = ACTIONS(1677), - [sym_identifier] = ACTIONS(1675), - [aux_sym_preproc_include_token1] = ACTIONS(1675), - [aux_sym_preproc_def_token1] = ACTIONS(1675), - [aux_sym_preproc_if_token1] = ACTIONS(1675), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1675), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1675), - [sym_preproc_directive] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1677), - [anon_sym_BANG] = ACTIONS(1677), - [anon_sym_TILDE] = ACTIONS(1677), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1677), - [anon_sym_AMP_AMP] = ACTIONS(1677), - [anon_sym_AMP] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_typedef] = ACTIONS(1675), - [anon_sym_extern] = ACTIONS(1675), - [anon_sym___attribute__] = ACTIONS(1675), - [anon_sym_COLON_COLON] = ACTIONS(1677), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1677), - [anon_sym___declspec] = ACTIONS(1675), - [anon_sym___based] = ACTIONS(1675), - [anon_sym___cdecl] = ACTIONS(1675), - [anon_sym___clrcall] = ACTIONS(1675), - [anon_sym___stdcall] = ACTIONS(1675), - [anon_sym___fastcall] = ACTIONS(1675), - [anon_sym___thiscall] = ACTIONS(1675), - [anon_sym___vectorcall] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_register] = ACTIONS(1675), - [anon_sym_inline] = ACTIONS(1675), - [anon_sym_thread_local] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(1675), - [anon_sym_volatile] = ACTIONS(1675), - [anon_sym_restrict] = ACTIONS(1675), - [anon_sym__Atomic] = ACTIONS(1675), - [anon_sym_mutable] = ACTIONS(1675), - [anon_sym_constexpr] = ACTIONS(1675), - [anon_sym_signed] = ACTIONS(1675), - [anon_sym_unsigned] = ACTIONS(1675), - [anon_sym_long] = ACTIONS(1675), - [anon_sym_short] = ACTIONS(1675), - [sym_primitive_type] = ACTIONS(1675), - [anon_sym_enum] = ACTIONS(1675), - [anon_sym_class] = ACTIONS(1675), - [anon_sym_struct] = ACTIONS(1675), - [anon_sym_union] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1675), - [anon_sym_else] = ACTIONS(1675), - [anon_sym_switch] = ACTIONS(1675), - [anon_sym_case] = ACTIONS(1675), - [anon_sym_default] = ACTIONS(1675), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_do] = ACTIONS(1675), - [anon_sym_for] = ACTIONS(1675), - [anon_sym_return] = ACTIONS(1675), - [anon_sym_break] = ACTIONS(1675), - [anon_sym_continue] = ACTIONS(1675), - [anon_sym_goto] = ACTIONS(1675), - [anon_sym_DASH_DASH] = ACTIONS(1677), - [anon_sym_PLUS_PLUS] = ACTIONS(1677), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1677), - [anon_sym_u_SQUOTE] = ACTIONS(1677), - [anon_sym_U_SQUOTE] = ACTIONS(1677), - [anon_sym_u8_SQUOTE] = ACTIONS(1677), - [anon_sym_SQUOTE] = ACTIONS(1677), - [anon_sym_L_DQUOTE] = ACTIONS(1677), - [anon_sym_u_DQUOTE] = ACTIONS(1677), - [anon_sym_U_DQUOTE] = ACTIONS(1677), - [anon_sym_u8_DQUOTE] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1677), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_null] = ACTIONS(1675), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1675), - [anon_sym_virtual] = ACTIONS(1675), - [anon_sym_explicit] = ACTIONS(1675), - [sym_auto] = ACTIONS(1675), - [anon_sym_typename] = ACTIONS(1675), - [anon_sym_template] = ACTIONS(1675), - [anon_sym_operator] = ACTIONS(1675), - [anon_sym_delete] = ACTIONS(1675), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1675), - [anon_sym_using] = ACTIONS(1675), - [anon_sym_static_assert] = ACTIONS(1675), - [anon_sym_co_return] = ACTIONS(1675), - [anon_sym_co_yield] = ACTIONS(1675), - [anon_sym_try] = ACTIONS(1675), - [anon_sym_co_await] = ACTIONS(1675), - [anon_sym_new] = ACTIONS(1675), - [sym_this] = ACTIONS(1675), - [sym_nullptr] = ACTIONS(1675), - [sym_alone_macro] = ACTIONS(1677), - [aux_sym_alone_macro_call_token1] = ACTIONS(1675), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_FORWARD] = ACTIONS(1675), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1675), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_PS_GET] = ACTIONS(1675), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1675), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1675), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1675), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1675), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1675), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1675), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1675), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1675), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1675), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1675), - [anon_sym_MOZ_COLD] = ACTIONS(1675), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1675), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1675), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1675), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1675), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1675), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1675), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1675), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1675), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1675), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1675), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1675), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1675), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1675), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1675), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1675), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1675), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1675), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1675), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1675), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1675), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_NONNULL] = ACTIONS(1675), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1675), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1675), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1675), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1675), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1675), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_NORETURN] = ACTIONS(1675), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1675), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1675), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1675), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1675), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1675), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1675), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1675), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1675), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1675), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1675), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1675), - [anon_sym_MOZ_RAII] = ACTIONS(1675), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1675), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1675), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1675), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1675), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1675), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1675), - [sym_raw_string_literal] = ACTIONS(1677), - }, - [472] = { - [ts_builtin_sym_end] = ACTIONS(1681), - [sym_identifier] = ACTIONS(1679), - [aux_sym_preproc_include_token1] = ACTIONS(1679), - [aux_sym_preproc_def_token1] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1679), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1679), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1679), - [sym_preproc_directive] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_BANG] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1679), - [anon_sym_PLUS] = ACTIONS(1679), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_typedef] = ACTIONS(1679), - [anon_sym_extern] = ACTIONS(1679), - [anon_sym___attribute__] = ACTIONS(1679), - [anon_sym_COLON_COLON] = ACTIONS(1681), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1681), - [anon_sym___declspec] = ACTIONS(1679), - [anon_sym___based] = ACTIONS(1679), - [anon_sym___cdecl] = ACTIONS(1679), - [anon_sym___clrcall] = ACTIONS(1679), - [anon_sym___stdcall] = ACTIONS(1679), - [anon_sym___fastcall] = ACTIONS(1679), - [anon_sym___thiscall] = ACTIONS(1679), - [anon_sym___vectorcall] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1681), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_static] = ACTIONS(1679), - [anon_sym_register] = ACTIONS(1679), - [anon_sym_inline] = ACTIONS(1679), - [anon_sym_thread_local] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1679), - [anon_sym_volatile] = ACTIONS(1679), - [anon_sym_restrict] = ACTIONS(1679), - [anon_sym__Atomic] = ACTIONS(1679), - [anon_sym_mutable] = ACTIONS(1679), - [anon_sym_constexpr] = ACTIONS(1679), - [anon_sym_signed] = ACTIONS(1679), - [anon_sym_unsigned] = ACTIONS(1679), - [anon_sym_long] = ACTIONS(1679), - [anon_sym_short] = ACTIONS(1679), - [sym_primitive_type] = ACTIONS(1679), - [anon_sym_enum] = ACTIONS(1679), - [anon_sym_class] = ACTIONS(1679), - [anon_sym_struct] = ACTIONS(1679), - [anon_sym_union] = ACTIONS(1679), - [anon_sym_if] = ACTIONS(1679), - [anon_sym_else] = ACTIONS(1679), - [anon_sym_switch] = ACTIONS(1679), - [anon_sym_case] = ACTIONS(1679), - [anon_sym_default] = ACTIONS(1679), - [anon_sym_while] = ACTIONS(1679), - [anon_sym_do] = ACTIONS(1679), - [anon_sym_for] = ACTIONS(1679), - [anon_sym_return] = ACTIONS(1679), - [anon_sym_break] = ACTIONS(1679), - [anon_sym_continue] = ACTIONS(1679), - [anon_sym_goto] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1681), - [anon_sym_PLUS_PLUS] = ACTIONS(1681), - [anon_sym_sizeof] = ACTIONS(1679), - [sym_number_literal] = ACTIONS(1681), - [anon_sym_L_SQUOTE] = ACTIONS(1681), - [anon_sym_u_SQUOTE] = ACTIONS(1681), - [anon_sym_U_SQUOTE] = ACTIONS(1681), - [anon_sym_u8_SQUOTE] = ACTIONS(1681), - [anon_sym_SQUOTE] = ACTIONS(1681), - [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(1679), - [sym_false] = ACTIONS(1679), - [sym_null] = ACTIONS(1679), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1679), - [anon_sym_virtual] = ACTIONS(1679), - [anon_sym_explicit] = ACTIONS(1679), - [sym_auto] = ACTIONS(1679), - [anon_sym_typename] = ACTIONS(1679), - [anon_sym_template] = ACTIONS(1679), - [anon_sym_operator] = ACTIONS(1679), - [anon_sym_delete] = ACTIONS(1679), - [anon_sym_throw] = ACTIONS(1679), - [anon_sym_namespace] = ACTIONS(1679), - [anon_sym_using] = ACTIONS(1679), - [anon_sym_static_assert] = ACTIONS(1679), - [anon_sym_co_return] = ACTIONS(1679), - [anon_sym_co_yield] = ACTIONS(1679), - [anon_sym_try] = ACTIONS(1679), - [anon_sym_co_await] = ACTIONS(1679), - [anon_sym_new] = ACTIONS(1679), - [sym_this] = ACTIONS(1679), - [sym_nullptr] = ACTIONS(1679), - [sym_alone_macro] = ACTIONS(1681), - [aux_sym_alone_macro_call_token1] = ACTIONS(1679), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_FORWARD] = ACTIONS(1679), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1679), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_PS_GET] = ACTIONS(1679), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1679), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1679), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1679), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1679), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1679), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1679), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1679), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1679), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1679), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1679), - [anon_sym_MOZ_COLD] = ACTIONS(1679), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1679), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1679), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1679), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1679), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1679), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1679), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1679), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1679), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1679), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1679), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1679), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1679), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1679), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1679), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1679), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1679), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1679), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1679), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1679), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1679), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_NONNULL] = ACTIONS(1679), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1679), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1679), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1679), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1679), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1679), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_NORETURN] = ACTIONS(1679), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1679), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1679), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1679), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1679), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1679), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1679), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1679), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1679), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1679), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1679), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1679), - [anon_sym_MOZ_RAII] = ACTIONS(1679), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1679), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1679), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1679), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1679), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1679), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1679), - [sym_raw_string_literal] = ACTIONS(1681), - }, - [473] = { - [sym_identifier] = ACTIONS(1633), - [aux_sym_preproc_include_token1] = ACTIONS(1633), - [aux_sym_preproc_def_token1] = ACTIONS(1633), - [aux_sym_preproc_if_token1] = ACTIONS(1633), - [aux_sym_preproc_if_token2] = ACTIONS(1633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1633), - [sym_preproc_directive] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(1635), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1633), - [anon_sym_STAR] = ACTIONS(1635), - [anon_sym_AMP_AMP] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1635), - [anon_sym_typedef] = ACTIONS(1633), - [anon_sym_extern] = ACTIONS(1633), - [anon_sym___attribute__] = ACTIONS(1633), - [anon_sym_COLON_COLON] = ACTIONS(1635), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1635), - [anon_sym___declspec] = ACTIONS(1633), - [anon_sym___based] = ACTIONS(1633), - [anon_sym___cdecl] = ACTIONS(1633), - [anon_sym___clrcall] = ACTIONS(1633), - [anon_sym___stdcall] = ACTIONS(1633), - [anon_sym___fastcall] = ACTIONS(1633), - [anon_sym___thiscall] = ACTIONS(1633), - [anon_sym___vectorcall] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_static] = ACTIONS(1633), - [anon_sym_register] = ACTIONS(1633), - [anon_sym_inline] = ACTIONS(1633), - [anon_sym_thread_local] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [anon_sym_volatile] = ACTIONS(1633), - [anon_sym_restrict] = ACTIONS(1633), - [anon_sym__Atomic] = ACTIONS(1633), - [anon_sym_mutable] = ACTIONS(1633), - [anon_sym_constexpr] = ACTIONS(1633), - [anon_sym_signed] = ACTIONS(1633), - [anon_sym_unsigned] = ACTIONS(1633), - [anon_sym_long] = ACTIONS(1633), - [anon_sym_short] = ACTIONS(1633), - [sym_primitive_type] = ACTIONS(1633), - [anon_sym_enum] = ACTIONS(1633), - [anon_sym_class] = ACTIONS(1633), - [anon_sym_struct] = ACTIONS(1633), - [anon_sym_union] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_else] = ACTIONS(1633), - [anon_sym_switch] = ACTIONS(1633), - [anon_sym_case] = ACTIONS(1633), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_do] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_goto] = ACTIONS(1633), - [anon_sym_DASH_DASH] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1635), - [anon_sym_sizeof] = ACTIONS(1633), - [sym_number_literal] = ACTIONS(1635), - [anon_sym_L_SQUOTE] = ACTIONS(1635), - [anon_sym_u_SQUOTE] = ACTIONS(1635), - [anon_sym_U_SQUOTE] = ACTIONS(1635), - [anon_sym_u8_SQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1635), - [anon_sym_L_DQUOTE] = ACTIONS(1635), - [anon_sym_u_DQUOTE] = ACTIONS(1635), - [anon_sym_U_DQUOTE] = ACTIONS(1635), - [anon_sym_u8_DQUOTE] = ACTIONS(1635), - [anon_sym_DQUOTE] = ACTIONS(1635), - [sym_true] = ACTIONS(1633), - [sym_false] = ACTIONS(1633), - [sym_null] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1633), - [anon_sym_virtual] = ACTIONS(1633), - [anon_sym_explicit] = ACTIONS(1633), - [sym_auto] = ACTIONS(1633), - [anon_sym_typename] = ACTIONS(1633), - [anon_sym_template] = ACTIONS(1633), - [anon_sym_operator] = ACTIONS(1633), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_throw] = ACTIONS(1633), - [anon_sym_namespace] = ACTIONS(1633), - [anon_sym_using] = ACTIONS(1633), - [anon_sym_static_assert] = ACTIONS(1633), - [anon_sym_co_return] = ACTIONS(1633), - [anon_sym_co_yield] = ACTIONS(1633), - [anon_sym_try] = ACTIONS(1633), - [anon_sym_co_await] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1633), - [sym_this] = ACTIONS(1633), - [sym_nullptr] = ACTIONS(1633), - [sym_alone_macro] = ACTIONS(1635), - [aux_sym_alone_macro_call_token1] = ACTIONS(1633), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_FORWARD] = ACTIONS(1633), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1633), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_PS_GET] = ACTIONS(1633), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1633), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1633), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1633), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1633), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1633), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1633), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1633), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1633), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1633), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1633), - [anon_sym_MOZ_COLD] = ACTIONS(1633), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1633), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1633), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1633), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1633), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1633), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1633), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1633), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1633), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1633), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1633), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1633), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1633), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1633), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1633), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1633), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1633), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1633), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1633), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1633), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1633), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_NONNULL] = ACTIONS(1633), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1633), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1633), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1633), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1633), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1633), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_NORETURN] = ACTIONS(1633), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1633), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1633), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1633), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1633), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1633), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1633), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1633), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1633), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1633), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1633), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1633), - [anon_sym_MOZ_RAII] = ACTIONS(1633), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1633), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1633), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1633), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1633), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1633), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1633), - [sym_raw_string_literal] = ACTIONS(1635), - }, - [474] = { - [sym_identifier] = ACTIONS(1625), - [aux_sym_preproc_include_token1] = ACTIONS(1625), - [aux_sym_preproc_def_token1] = ACTIONS(1625), - [aux_sym_preproc_if_token1] = ACTIONS(1625), - [aux_sym_preproc_if_token2] = ACTIONS(1625), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1625), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1625), - [sym_preproc_directive] = ACTIONS(1625), - [anon_sym_LPAREN2] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1627), - [anon_sym_TILDE] = ACTIONS(1627), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_STAR] = ACTIONS(1627), - [anon_sym_AMP_AMP] = ACTIONS(1627), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_SEMI] = ACTIONS(1627), - [anon_sym_typedef] = ACTIONS(1625), - [anon_sym_extern] = ACTIONS(1625), - [anon_sym___attribute__] = ACTIONS(1625), - [anon_sym_COLON_COLON] = ACTIONS(1627), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1627), - [anon_sym___declspec] = ACTIONS(1625), - [anon_sym___based] = ACTIONS(1625), - [anon_sym___cdecl] = ACTIONS(1625), - [anon_sym___clrcall] = ACTIONS(1625), - [anon_sym___stdcall] = ACTIONS(1625), - [anon_sym___fastcall] = ACTIONS(1625), - [anon_sym___thiscall] = ACTIONS(1625), - [anon_sym___vectorcall] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_LBRACK] = ACTIONS(1625), - [anon_sym_static] = ACTIONS(1625), - [anon_sym_register] = ACTIONS(1625), - [anon_sym_inline] = ACTIONS(1625), - [anon_sym_thread_local] = ACTIONS(1625), - [anon_sym_const] = ACTIONS(1625), - [anon_sym_volatile] = ACTIONS(1625), - [anon_sym_restrict] = ACTIONS(1625), - [anon_sym__Atomic] = ACTIONS(1625), - [anon_sym_mutable] = ACTIONS(1625), - [anon_sym_constexpr] = ACTIONS(1625), - [anon_sym_signed] = ACTIONS(1625), - [anon_sym_unsigned] = ACTIONS(1625), - [anon_sym_long] = ACTIONS(1625), - [anon_sym_short] = ACTIONS(1625), - [sym_primitive_type] = ACTIONS(1625), - [anon_sym_enum] = ACTIONS(1625), - [anon_sym_class] = ACTIONS(1625), - [anon_sym_struct] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1625), - [anon_sym_else] = ACTIONS(1625), - [anon_sym_switch] = ACTIONS(1625), - [anon_sym_case] = ACTIONS(1625), - [anon_sym_default] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1625), - [anon_sym_do] = ACTIONS(1625), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1625), - [anon_sym_break] = ACTIONS(1625), - [anon_sym_continue] = ACTIONS(1625), - [anon_sym_goto] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1625), - [sym_number_literal] = ACTIONS(1627), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1627), - [anon_sym_u_DQUOTE] = ACTIONS(1627), - [anon_sym_U_DQUOTE] = ACTIONS(1627), - [anon_sym_u8_DQUOTE] = ACTIONS(1627), - [anon_sym_DQUOTE] = ACTIONS(1627), - [sym_true] = ACTIONS(1625), - [sym_false] = ACTIONS(1625), - [sym_null] = ACTIONS(1625), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1625), - [anon_sym_virtual] = ACTIONS(1625), - [anon_sym_explicit] = ACTIONS(1625), - [sym_auto] = ACTIONS(1625), - [anon_sym_typename] = ACTIONS(1625), - [anon_sym_template] = ACTIONS(1625), - [anon_sym_operator] = ACTIONS(1625), - [anon_sym_delete] = ACTIONS(1625), - [anon_sym_throw] = ACTIONS(1625), - [anon_sym_namespace] = ACTIONS(1625), - [anon_sym_using] = ACTIONS(1625), - [anon_sym_static_assert] = ACTIONS(1625), - [anon_sym_co_return] = ACTIONS(1625), - [anon_sym_co_yield] = ACTIONS(1625), - [anon_sym_try] = ACTIONS(1625), - [anon_sym_co_await] = ACTIONS(1625), - [anon_sym_new] = ACTIONS(1625), - [sym_this] = ACTIONS(1625), - [sym_nullptr] = ACTIONS(1625), - [sym_alone_macro] = ACTIONS(1627), - [aux_sym_alone_macro_call_token1] = ACTIONS(1625), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_FORWARD] = ACTIONS(1625), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1625), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_PS_GET] = ACTIONS(1625), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1625), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1625), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1625), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1625), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1625), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1625), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1625), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1625), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1625), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1625), - [anon_sym_MOZ_COLD] = ACTIONS(1625), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1625), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1625), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1625), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1625), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1625), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1625), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1625), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1625), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1625), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1625), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1625), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1625), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1625), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1625), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1625), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1625), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1625), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1625), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1625), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1625), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_NONNULL] = ACTIONS(1625), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1625), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1625), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1625), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1625), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1625), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_NORETURN] = ACTIONS(1625), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1625), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1625), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1625), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1625), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1625), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1625), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1625), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1625), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1625), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1625), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1625), - [anon_sym_MOZ_RAII] = ACTIONS(1625), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1625), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1625), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1625), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1625), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1625), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1625), - [sym_raw_string_literal] = ACTIONS(1627), - }, - [475] = { - [sym_identifier] = ACTIONS(1573), - [aux_sym_preproc_include_token1] = ACTIONS(1573), - [aux_sym_preproc_def_token1] = ACTIONS(1573), - [aux_sym_preproc_if_token1] = ACTIONS(1573), - [aux_sym_preproc_if_token2] = ACTIONS(1573), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1573), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1573), - [sym_preproc_directive] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_BANG] = ACTIONS(1575), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1573), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_STAR] = ACTIONS(1575), - [anon_sym_AMP_AMP] = ACTIONS(1575), - [anon_sym_AMP] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_typedef] = ACTIONS(1573), - [anon_sym_extern] = ACTIONS(1573), - [anon_sym___attribute__] = ACTIONS(1573), - [anon_sym_COLON_COLON] = ACTIONS(1575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1575), - [anon_sym___declspec] = ACTIONS(1573), - [anon_sym___based] = ACTIONS(1573), - [anon_sym___cdecl] = ACTIONS(1573), - [anon_sym___clrcall] = ACTIONS(1573), - [anon_sym___stdcall] = ACTIONS(1573), - [anon_sym___fastcall] = ACTIONS(1573), - [anon_sym___thiscall] = ACTIONS(1573), - [anon_sym___vectorcall] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1573), - [anon_sym_static] = ACTIONS(1573), - [anon_sym_register] = ACTIONS(1573), - [anon_sym_inline] = ACTIONS(1573), - [anon_sym_thread_local] = ACTIONS(1573), - [anon_sym_const] = ACTIONS(1573), - [anon_sym_volatile] = ACTIONS(1573), - [anon_sym_restrict] = ACTIONS(1573), - [anon_sym__Atomic] = ACTIONS(1573), - [anon_sym_mutable] = ACTIONS(1573), - [anon_sym_constexpr] = ACTIONS(1573), - [anon_sym_signed] = ACTIONS(1573), - [anon_sym_unsigned] = ACTIONS(1573), - [anon_sym_long] = ACTIONS(1573), - [anon_sym_short] = ACTIONS(1573), - [sym_primitive_type] = ACTIONS(1573), - [anon_sym_enum] = ACTIONS(1573), - [anon_sym_class] = ACTIONS(1573), - [anon_sym_struct] = ACTIONS(1573), - [anon_sym_union] = ACTIONS(1573), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_else] = ACTIONS(1573), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1573), - [anon_sym_default] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1573), - [anon_sym_do] = ACTIONS(1573), - [anon_sym_for] = ACTIONS(1573), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1573), - [anon_sym_continue] = ACTIONS(1573), - [anon_sym_goto] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_sizeof] = ACTIONS(1573), - [sym_number_literal] = ACTIONS(1575), - [anon_sym_L_SQUOTE] = ACTIONS(1575), - [anon_sym_u_SQUOTE] = ACTIONS(1575), - [anon_sym_U_SQUOTE] = ACTIONS(1575), - [anon_sym_u8_SQUOTE] = ACTIONS(1575), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_L_DQUOTE] = ACTIONS(1575), - [anon_sym_u_DQUOTE] = ACTIONS(1575), - [anon_sym_U_DQUOTE] = ACTIONS(1575), - [anon_sym_u8_DQUOTE] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym_true] = ACTIONS(1573), - [sym_false] = ACTIONS(1573), - [sym_null] = ACTIONS(1573), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1573), - [anon_sym_virtual] = ACTIONS(1573), - [anon_sym_explicit] = ACTIONS(1573), - [sym_auto] = ACTIONS(1573), - [anon_sym_typename] = ACTIONS(1573), - [anon_sym_template] = ACTIONS(1573), - [anon_sym_operator] = ACTIONS(1573), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_throw] = ACTIONS(1573), - [anon_sym_namespace] = ACTIONS(1573), - [anon_sym_using] = ACTIONS(1573), - [anon_sym_static_assert] = ACTIONS(1573), - [anon_sym_co_return] = ACTIONS(1573), - [anon_sym_co_yield] = ACTIONS(1573), - [anon_sym_try] = ACTIONS(1573), - [anon_sym_co_await] = ACTIONS(1573), - [anon_sym_new] = ACTIONS(1573), - [sym_this] = ACTIONS(1573), - [sym_nullptr] = ACTIONS(1573), - [sym_alone_macro] = ACTIONS(1575), - [aux_sym_alone_macro_call_token1] = ACTIONS(1573), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_FORWARD] = ACTIONS(1573), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1573), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_PS_GET] = ACTIONS(1573), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1573), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1573), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1573), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1573), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1573), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1573), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1573), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1573), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1573), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1573), - [anon_sym_MOZ_COLD] = ACTIONS(1573), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1573), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1573), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1573), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1573), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1573), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1573), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1573), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1573), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1573), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1573), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1573), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1573), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1573), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1573), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1573), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1573), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1573), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1573), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1573), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1573), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_NONNULL] = ACTIONS(1573), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1573), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1573), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1573), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1573), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1573), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_NORETURN] = ACTIONS(1573), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1573), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1573), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1573), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1573), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1573), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1573), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1573), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1573), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1573), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1573), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1573), - [anon_sym_MOZ_RAII] = ACTIONS(1573), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1573), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1573), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1573), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1573), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1573), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1573), - [sym_raw_string_literal] = ACTIONS(1575), - }, - [476] = { - [ts_builtin_sym_end] = ACTIONS(1595), - [sym_identifier] = ACTIONS(1593), - [aux_sym_preproc_include_token1] = ACTIONS(1593), - [aux_sym_preproc_def_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1593), - [sym_preproc_directive] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_typedef] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym___attribute__] = ACTIONS(1593), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1593), - [anon_sym___based] = ACTIONS(1593), - [anon_sym___cdecl] = ACTIONS(1593), - [anon_sym___clrcall] = ACTIONS(1593), - [anon_sym___stdcall] = ACTIONS(1593), - [anon_sym___fastcall] = ACTIONS(1593), - [anon_sym___thiscall] = ACTIONS(1593), - [anon_sym___vectorcall] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_inline] = ACTIONS(1593), - [anon_sym_thread_local] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_volatile] = ACTIONS(1593), - [anon_sym_restrict] = ACTIONS(1593), - [anon_sym__Atomic] = ACTIONS(1593), - [anon_sym_mutable] = ACTIONS(1593), - [anon_sym_constexpr] = ACTIONS(1593), - [anon_sym_signed] = ACTIONS(1593), - [anon_sym_unsigned] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [sym_primitive_type] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_class] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_else] = ACTIONS(1593), - [anon_sym_switch] = ACTIONS(1593), - [anon_sym_case] = ACTIONS(1593), - [anon_sym_default] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_goto] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_PLUS_PLUS] = ACTIONS(1595), - [anon_sym_sizeof] = ACTIONS(1593), - [sym_number_literal] = ACTIONS(1595), - [anon_sym_L_SQUOTE] = ACTIONS(1595), - [anon_sym_u_SQUOTE] = ACTIONS(1595), - [anon_sym_U_SQUOTE] = ACTIONS(1595), - [anon_sym_u8_SQUOTE] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1595), - [anon_sym_L_DQUOTE] = ACTIONS(1595), - [anon_sym_u_DQUOTE] = ACTIONS(1595), - [anon_sym_U_DQUOTE] = ACTIONS(1595), - [anon_sym_u8_DQUOTE] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1593), - [anon_sym_virtual] = ACTIONS(1593), - [anon_sym_explicit] = ACTIONS(1593), - [sym_auto] = ACTIONS(1593), - [anon_sym_typename] = ACTIONS(1593), - [anon_sym_template] = ACTIONS(1593), - [anon_sym_operator] = ACTIONS(1593), - [anon_sym_delete] = ACTIONS(1593), - [anon_sym_throw] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1593), - [anon_sym_using] = ACTIONS(1593), - [anon_sym_static_assert] = ACTIONS(1593), - [anon_sym_co_return] = ACTIONS(1593), - [anon_sym_co_yield] = ACTIONS(1593), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_co_await] = ACTIONS(1593), - [anon_sym_new] = ACTIONS(1593), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), - [sym_alone_macro] = ACTIONS(1595), - [aux_sym_alone_macro_call_token1] = ACTIONS(1593), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_FORWARD] = ACTIONS(1593), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1593), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_PS_GET] = ACTIONS(1593), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1593), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1593), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1593), - [anon_sym_MOZ_COLD] = ACTIONS(1593), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1593), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1593), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1593), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1593), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1593), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1593), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1593), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1593), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1593), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1593), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1593), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1593), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_RAII] = ACTIONS(1593), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1593), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1593), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1593), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1593), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1593), - [sym_raw_string_literal] = ACTIONS(1595), - }, - [477] = { - [sym_preproc_def] = STATE(464), - [sym_preproc_function_def] = STATE(464), - [sym_preproc_call] = STATE(464), - [sym_preproc_if_in_field_declaration_list] = STATE(464), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(464), - [sym_preproc_else_in_field_declaration_list] = STATE(4907), - [sym_preproc_elif_in_field_declaration_list] = STATE(4907), - [sym_type_definition] = STATE(464), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3235), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3615), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(464), - [sym_field_declaration] = STATE(464), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(841), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(464), - [sym_operator_cast] = STATE(4161), - [sym_inline_method_definition] = STATE(464), - [sym__constructor_specifiers] = STATE(841), - [sym_operator_cast_definition] = STATE(464), - [sym_operator_cast_declaration] = STATE(464), - [sym_constructor_or_destructor_definition] = STATE(464), - [sym_constructor_or_destructor_declaration] = STATE(464), - [sym_friend_declaration] = STATE(464), - [sym_access_specifier] = STATE(464), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(464), - [sym_alias_declaration] = STATE(464), - [sym_static_assert_declaration] = STATE(464), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4161), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(464), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(464), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(841), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(1909), - [aux_sym_preproc_if_token1] = ACTIONS(1911), - [aux_sym_preproc_if_token2] = ACTIONS(1995), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1915), - [aux_sym_preproc_else_token1] = ACTIONS(1917), - [aux_sym_preproc_elif_token1] = ACTIONS(1919), - [sym_preproc_directive] = ACTIONS(1921), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(1951), - [anon_sym_private] = ACTIONS(1951), - [anon_sym_protected] = ACTIONS(1951), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(1955), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1957), - [anon_sym_using] = ACTIONS(1959), - [anon_sym_static_assert] = ACTIONS(1961), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1963), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [478] = { - [ts_builtin_sym_end] = ACTIONS(1595), - [sym_identifier] = ACTIONS(1593), - [aux_sym_preproc_include_token1] = ACTIONS(1593), - [aux_sym_preproc_def_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1593), - [sym_preproc_directive] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_typedef] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym___attribute__] = ACTIONS(1593), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1593), - [anon_sym___based] = ACTIONS(1593), - [anon_sym___cdecl] = ACTIONS(1593), - [anon_sym___clrcall] = ACTIONS(1593), - [anon_sym___stdcall] = ACTIONS(1593), - [anon_sym___fastcall] = ACTIONS(1593), - [anon_sym___thiscall] = ACTIONS(1593), - [anon_sym___vectorcall] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_inline] = ACTIONS(1593), - [anon_sym_thread_local] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_volatile] = ACTIONS(1593), - [anon_sym_restrict] = ACTIONS(1593), - [anon_sym__Atomic] = ACTIONS(1593), - [anon_sym_mutable] = ACTIONS(1593), - [anon_sym_constexpr] = ACTIONS(1593), - [anon_sym_signed] = ACTIONS(1593), - [anon_sym_unsigned] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [sym_primitive_type] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_class] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_else] = ACTIONS(1593), - [anon_sym_switch] = ACTIONS(1593), - [anon_sym_case] = ACTIONS(1593), - [anon_sym_default] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_goto] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_PLUS_PLUS] = ACTIONS(1595), - [anon_sym_sizeof] = ACTIONS(1593), - [sym_number_literal] = ACTIONS(1595), - [anon_sym_L_SQUOTE] = ACTIONS(1595), - [anon_sym_u_SQUOTE] = ACTIONS(1595), - [anon_sym_U_SQUOTE] = ACTIONS(1595), - [anon_sym_u8_SQUOTE] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1595), - [anon_sym_L_DQUOTE] = ACTIONS(1595), - [anon_sym_u_DQUOTE] = ACTIONS(1595), - [anon_sym_U_DQUOTE] = ACTIONS(1595), - [anon_sym_u8_DQUOTE] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1593), - [anon_sym_virtual] = ACTIONS(1593), - [anon_sym_explicit] = ACTIONS(1593), - [sym_auto] = ACTIONS(1593), - [anon_sym_typename] = ACTIONS(1593), - [anon_sym_template] = ACTIONS(1593), - [anon_sym_operator] = ACTIONS(1593), - [anon_sym_delete] = ACTIONS(1593), - [anon_sym_throw] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1593), - [anon_sym_using] = ACTIONS(1593), - [anon_sym_static_assert] = ACTIONS(1593), - [anon_sym_co_return] = ACTIONS(1593), - [anon_sym_co_yield] = ACTIONS(1593), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_co_await] = ACTIONS(1593), - [anon_sym_new] = ACTIONS(1593), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), - [sym_alone_macro] = ACTIONS(1595), - [aux_sym_alone_macro_call_token1] = ACTIONS(1593), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_FORWARD] = ACTIONS(1593), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1593), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_PS_GET] = ACTIONS(1593), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1593), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1593), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1593), - [anon_sym_MOZ_COLD] = ACTIONS(1593), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1593), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1593), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1593), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1593), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1593), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1593), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1593), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1593), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1593), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1593), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1593), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1593), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_RAII] = ACTIONS(1593), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1593), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1593), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1593), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1593), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1593), - [sym_raw_string_literal] = ACTIONS(1595), - }, - [479] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [480] = { - [sym_identifier] = ACTIONS(1641), - [aux_sym_preproc_include_token1] = ACTIONS(1641), - [aux_sym_preproc_def_token1] = ACTIONS(1641), - [aux_sym_preproc_if_token1] = ACTIONS(1641), - [aux_sym_preproc_if_token2] = ACTIONS(1641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1641), - [sym_preproc_directive] = ACTIONS(1641), - [anon_sym_LPAREN2] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_AMP_AMP] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_typedef] = ACTIONS(1641), - [anon_sym_extern] = ACTIONS(1641), - [anon_sym___attribute__] = ACTIONS(1641), - [anon_sym_COLON_COLON] = ACTIONS(1643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1643), - [anon_sym___declspec] = ACTIONS(1641), - [anon_sym___based] = ACTIONS(1641), - [anon_sym___cdecl] = ACTIONS(1641), - [anon_sym___clrcall] = ACTIONS(1641), - [anon_sym___stdcall] = ACTIONS(1641), - [anon_sym___fastcall] = ACTIONS(1641), - [anon_sym___thiscall] = ACTIONS(1641), - [anon_sym___vectorcall] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_register] = ACTIONS(1641), - [anon_sym_inline] = ACTIONS(1641), - [anon_sym_thread_local] = ACTIONS(1641), - [anon_sym_const] = ACTIONS(1641), - [anon_sym_volatile] = ACTIONS(1641), - [anon_sym_restrict] = ACTIONS(1641), - [anon_sym__Atomic] = ACTIONS(1641), - [anon_sym_mutable] = ACTIONS(1641), - [anon_sym_constexpr] = ACTIONS(1641), - [anon_sym_signed] = ACTIONS(1641), - [anon_sym_unsigned] = ACTIONS(1641), - [anon_sym_long] = ACTIONS(1641), - [anon_sym_short] = ACTIONS(1641), - [sym_primitive_type] = ACTIONS(1641), - [anon_sym_enum] = ACTIONS(1641), - [anon_sym_class] = ACTIONS(1641), - [anon_sym_struct] = ACTIONS(1641), - [anon_sym_union] = ACTIONS(1641), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_else] = ACTIONS(1641), - [anon_sym_switch] = ACTIONS(1641), - [anon_sym_case] = ACTIONS(1641), - [anon_sym_default] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_do] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_return] = ACTIONS(1641), - [anon_sym_break] = ACTIONS(1641), - [anon_sym_continue] = ACTIONS(1641), - [anon_sym_goto] = ACTIONS(1641), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_sizeof] = ACTIONS(1641), - [sym_number_literal] = ACTIONS(1643), - [anon_sym_L_SQUOTE] = ACTIONS(1643), - [anon_sym_u_SQUOTE] = ACTIONS(1643), - [anon_sym_U_SQUOTE] = ACTIONS(1643), - [anon_sym_u8_SQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1643), - [anon_sym_L_DQUOTE] = ACTIONS(1643), - [anon_sym_u_DQUOTE] = ACTIONS(1643), - [anon_sym_U_DQUOTE] = ACTIONS(1643), - [anon_sym_u8_DQUOTE] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym_true] = ACTIONS(1641), - [sym_false] = ACTIONS(1641), - [sym_null] = ACTIONS(1641), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1641), - [anon_sym_virtual] = ACTIONS(1641), - [anon_sym_explicit] = ACTIONS(1641), - [sym_auto] = ACTIONS(1641), - [anon_sym_typename] = ACTIONS(1641), - [anon_sym_template] = ACTIONS(1641), - [anon_sym_operator] = ACTIONS(1641), - [anon_sym_delete] = ACTIONS(1641), - [anon_sym_throw] = ACTIONS(1641), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_using] = ACTIONS(1641), - [anon_sym_static_assert] = ACTIONS(1641), - [anon_sym_co_return] = ACTIONS(1641), - [anon_sym_co_yield] = ACTIONS(1641), - [anon_sym_try] = ACTIONS(1641), - [anon_sym_co_await] = ACTIONS(1641), - [anon_sym_new] = ACTIONS(1641), - [sym_this] = ACTIONS(1641), - [sym_nullptr] = ACTIONS(1641), - [sym_alone_macro] = ACTIONS(1643), - [aux_sym_alone_macro_call_token1] = ACTIONS(1641), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_FORWARD] = ACTIONS(1641), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1641), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_PS_GET] = ACTIONS(1641), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1641), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1641), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1641), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1641), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1641), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1641), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1641), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1641), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1641), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1641), - [anon_sym_MOZ_COLD] = ACTIONS(1641), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1641), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1641), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1641), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1641), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1641), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1641), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1641), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1641), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1641), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1641), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1641), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1641), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1641), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1641), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1641), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1641), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1641), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1641), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1641), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1641), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_NONNULL] = ACTIONS(1641), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1641), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1641), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1641), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1641), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1641), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_NORETURN] = ACTIONS(1641), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1641), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1641), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1641), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1641), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1641), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1641), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1641), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1641), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1641), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1641), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1641), - [anon_sym_MOZ_RAII] = ACTIONS(1641), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1641), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1641), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1641), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1641), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1641), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1641), - [sym_raw_string_literal] = ACTIONS(1643), - }, - [481] = { - [ts_builtin_sym_end] = ACTIONS(1531), - [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_include_token1] = ACTIONS(1529), - [aux_sym_preproc_def_token1] = ACTIONS(1529), - [anon_sym_COMMA] = ACTIONS(1613), - [aux_sym_preproc_if_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), - [sym_preproc_directive] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym___attribute__] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1531), - [anon_sym___declspec] = ACTIONS(1529), - [anon_sym___based] = ACTIONS(1529), - [anon_sym___cdecl] = ACTIONS(1529), - [anon_sym___clrcall] = ACTIONS(1529), - [anon_sym___stdcall] = ACTIONS(1529), - [anon_sym___fastcall] = ACTIONS(1529), - [anon_sym___thiscall] = ACTIONS(1529), - [anon_sym___vectorcall] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [anon_sym_thread_local] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym__Atomic] = ACTIONS(1529), - [anon_sym_mutable] = ACTIONS(1529), - [anon_sym_constexpr] = ACTIONS(1529), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_class] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_case] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_goto] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_sizeof] = ACTIONS(1529), - [sym_number_literal] = ACTIONS(1531), - [anon_sym_L_SQUOTE] = ACTIONS(1531), - [anon_sym_u_SQUOTE] = ACTIONS(1531), - [anon_sym_U_SQUOTE] = ACTIONS(1531), - [anon_sym_u8_SQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1529), - [sym_false] = ACTIONS(1529), - [sym_null] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1529), - [anon_sym_virtual] = ACTIONS(1529), - [anon_sym_explicit] = ACTIONS(1529), - [sym_auto] = ACTIONS(1529), - [anon_sym_typename] = ACTIONS(1529), - [anon_sym_template] = ACTIONS(1529), - [anon_sym_operator] = ACTIONS(1529), - [anon_sym_delete] = ACTIONS(1529), - [anon_sym_throw] = ACTIONS(1529), - [anon_sym_namespace] = ACTIONS(1529), - [anon_sym_using] = ACTIONS(1529), - [anon_sym_static_assert] = ACTIONS(1529), - [anon_sym_co_return] = ACTIONS(1529), - [anon_sym_co_yield] = ACTIONS(1529), - [anon_sym_try] = ACTIONS(1529), - [anon_sym_co_await] = ACTIONS(1529), - [anon_sym_new] = ACTIONS(1529), - [sym_this] = ACTIONS(1529), - [sym_nullptr] = ACTIONS(1529), - [sym_alone_macro] = ACTIONS(1531), - [aux_sym_alone_macro_call_token1] = ACTIONS(1529), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_FORWARD] = ACTIONS(1529), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1529), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_PS_GET] = ACTIONS(1529), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1529), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1529), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1529), - [anon_sym_MOZ_COLD] = ACTIONS(1529), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1529), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1529), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1529), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1529), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1529), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1529), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1529), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1529), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1529), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1529), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1529), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1529), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_RAII] = ACTIONS(1529), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1529), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1529), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1529), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1529), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1529), - [sym_raw_string_literal] = ACTIONS(1531), - }, - [482] = { - [sym_identifier] = ACTIONS(1545), - [aux_sym_preproc_include_token1] = ACTIONS(1545), - [aux_sym_preproc_def_token1] = ACTIONS(1545), - [aux_sym_preproc_if_token1] = ACTIONS(1545), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1545), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1545), - [sym_preproc_directive] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1547), - [anon_sym_TILDE] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1547), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1547), - [anon_sym_typedef] = ACTIONS(1545), - [anon_sym_extern] = ACTIONS(1545), - [anon_sym___attribute__] = ACTIONS(1545), - [anon_sym_COLON_COLON] = ACTIONS(1547), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1547), - [anon_sym___declspec] = ACTIONS(1545), - [anon_sym___based] = ACTIONS(1545), - [anon_sym___cdecl] = ACTIONS(1545), - [anon_sym___clrcall] = ACTIONS(1545), - [anon_sym___stdcall] = ACTIONS(1545), - [anon_sym___fastcall] = ACTIONS(1545), - [anon_sym___thiscall] = ACTIONS(1545), - [anon_sym___vectorcall] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_RBRACE] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_static] = ACTIONS(1545), - [anon_sym_register] = ACTIONS(1545), - [anon_sym_inline] = ACTIONS(1545), - [anon_sym_thread_local] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_volatile] = ACTIONS(1545), - [anon_sym_restrict] = ACTIONS(1545), - [anon_sym__Atomic] = ACTIONS(1545), - [anon_sym_mutable] = ACTIONS(1545), - [anon_sym_constexpr] = ACTIONS(1545), - [anon_sym_signed] = ACTIONS(1545), - [anon_sym_unsigned] = ACTIONS(1545), - [anon_sym_long] = ACTIONS(1545), - [anon_sym_short] = ACTIONS(1545), - [sym_primitive_type] = ACTIONS(1545), - [anon_sym_enum] = ACTIONS(1545), - [anon_sym_class] = ACTIONS(1545), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_union] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_else] = ACTIONS(1545), - [anon_sym_switch] = ACTIONS(1545), - [anon_sym_case] = ACTIONS(1545), - [anon_sym_default] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_do] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_goto] = ACTIONS(1545), - [anon_sym_DASH_DASH] = ACTIONS(1547), - [anon_sym_PLUS_PLUS] = ACTIONS(1547), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1547), - [anon_sym_u_SQUOTE] = ACTIONS(1547), - [anon_sym_U_SQUOTE] = ACTIONS(1547), - [anon_sym_u8_SQUOTE] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_L_DQUOTE] = ACTIONS(1547), - [anon_sym_u_DQUOTE] = ACTIONS(1547), - [anon_sym_U_DQUOTE] = ACTIONS(1547), - [anon_sym_u8_DQUOTE] = ACTIONS(1547), - [anon_sym_DQUOTE] = ACTIONS(1547), - [sym_true] = ACTIONS(1545), - [sym_false] = ACTIONS(1545), - [sym_null] = ACTIONS(1545), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1545), - [anon_sym_virtual] = ACTIONS(1545), - [anon_sym_explicit] = ACTIONS(1545), - [sym_auto] = ACTIONS(1545), - [anon_sym_typename] = ACTIONS(1545), - [anon_sym_template] = ACTIONS(1545), - [anon_sym_operator] = ACTIONS(1545), - [anon_sym_delete] = ACTIONS(1545), - [anon_sym_throw] = ACTIONS(1545), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_using] = ACTIONS(1545), - [anon_sym_static_assert] = ACTIONS(1545), - [anon_sym_co_return] = ACTIONS(1545), - [anon_sym_co_yield] = ACTIONS(1545), - [anon_sym_try] = ACTIONS(1545), - [anon_sym_co_await] = ACTIONS(1545), - [anon_sym_new] = ACTIONS(1545), - [sym_this] = ACTIONS(1545), - [sym_nullptr] = ACTIONS(1545), - [sym_alone_macro] = ACTIONS(1547), - [aux_sym_alone_macro_call_token1] = ACTIONS(1545), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_FORWARD] = ACTIONS(1545), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1545), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_PS_GET] = ACTIONS(1545), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1545), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1545), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1545), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1545), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1545), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1545), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1545), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1545), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1545), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1545), - [anon_sym_MOZ_COLD] = ACTIONS(1545), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1545), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1545), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1545), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1545), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1545), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1545), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1545), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1545), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1545), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1545), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1545), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1545), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1545), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1545), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1545), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1545), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1545), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1545), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1545), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1545), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_NONNULL] = ACTIONS(1545), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1545), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1545), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1545), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1545), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1545), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_NORETURN] = ACTIONS(1545), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1545), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1545), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1545), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1545), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1545), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1545), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1545), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1545), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1545), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1545), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1545), - [anon_sym_MOZ_RAII] = ACTIONS(1545), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1545), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1545), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1545), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1545), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1545), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1545), - [sym_raw_string_literal] = ACTIONS(1547), - }, - [483] = { - [ts_builtin_sym_end] = ACTIONS(1685), - [sym_identifier] = ACTIONS(1683), - [aux_sym_preproc_include_token1] = ACTIONS(1683), - [aux_sym_preproc_def_token1] = ACTIONS(1683), - [aux_sym_preproc_if_token1] = ACTIONS(1683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1683), - [sym_preproc_directive] = ACTIONS(1683), - [anon_sym_LPAREN2] = ACTIONS(1685), - [anon_sym_BANG] = ACTIONS(1685), - [anon_sym_TILDE] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_typedef] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1683), - [anon_sym___attribute__] = ACTIONS(1683), - [anon_sym_COLON_COLON] = ACTIONS(1685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1685), - [anon_sym___declspec] = ACTIONS(1683), - [anon_sym___based] = ACTIONS(1683), - [anon_sym___cdecl] = ACTIONS(1683), - [anon_sym___clrcall] = ACTIONS(1683), - [anon_sym___stdcall] = ACTIONS(1683), - [anon_sym___fastcall] = ACTIONS(1683), - [anon_sym___thiscall] = ACTIONS(1683), - [anon_sym___vectorcall] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1685), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_static] = ACTIONS(1683), - [anon_sym_register] = ACTIONS(1683), - [anon_sym_inline] = ACTIONS(1683), - [anon_sym_thread_local] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_volatile] = ACTIONS(1683), - [anon_sym_restrict] = ACTIONS(1683), - [anon_sym__Atomic] = ACTIONS(1683), - [anon_sym_mutable] = ACTIONS(1683), - [anon_sym_constexpr] = ACTIONS(1683), - [anon_sym_signed] = ACTIONS(1683), - [anon_sym_unsigned] = ACTIONS(1683), - [anon_sym_long] = ACTIONS(1683), - [anon_sym_short] = ACTIONS(1683), - [sym_primitive_type] = ACTIONS(1683), - [anon_sym_enum] = ACTIONS(1683), - [anon_sym_class] = ACTIONS(1683), - [anon_sym_struct] = ACTIONS(1683), - [anon_sym_union] = ACTIONS(1683), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_else] = ACTIONS(1683), - [anon_sym_switch] = ACTIONS(1683), - [anon_sym_case] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1683), - [anon_sym_while] = ACTIONS(1683), - [anon_sym_do] = ACTIONS(1683), - [anon_sym_for] = ACTIONS(1683), - [anon_sym_return] = ACTIONS(1683), - [anon_sym_break] = ACTIONS(1683), - [anon_sym_continue] = ACTIONS(1683), - [anon_sym_goto] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1685), - [anon_sym_PLUS_PLUS] = ACTIONS(1685), - [anon_sym_sizeof] = ACTIONS(1683), - [sym_number_literal] = ACTIONS(1685), - [anon_sym_L_SQUOTE] = ACTIONS(1685), - [anon_sym_u_SQUOTE] = ACTIONS(1685), - [anon_sym_U_SQUOTE] = ACTIONS(1685), - [anon_sym_u8_SQUOTE] = ACTIONS(1685), - [anon_sym_SQUOTE] = ACTIONS(1685), - [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(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1683), - [anon_sym_virtual] = ACTIONS(1683), - [anon_sym_explicit] = ACTIONS(1683), - [sym_auto] = ACTIONS(1683), - [anon_sym_typename] = ACTIONS(1683), - [anon_sym_template] = ACTIONS(1683), - [anon_sym_operator] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_throw] = ACTIONS(1683), - [anon_sym_namespace] = ACTIONS(1683), - [anon_sym_using] = ACTIONS(1683), - [anon_sym_static_assert] = ACTIONS(1683), - [anon_sym_co_return] = ACTIONS(1683), - [anon_sym_co_yield] = ACTIONS(1683), - [anon_sym_try] = ACTIONS(1683), - [anon_sym_co_await] = ACTIONS(1683), - [anon_sym_new] = ACTIONS(1683), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - [sym_alone_macro] = ACTIONS(1685), - [aux_sym_alone_macro_call_token1] = ACTIONS(1683), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_FORWARD] = ACTIONS(1683), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1683), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_PS_GET] = ACTIONS(1683), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1683), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1683), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1683), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1683), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1683), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1683), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1683), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1683), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1683), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1683), - [anon_sym_MOZ_COLD] = ACTIONS(1683), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1683), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1683), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1683), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1683), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1683), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1683), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1683), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1683), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1683), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1683), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1683), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1683), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1683), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1683), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1683), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1683), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1683), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1683), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1683), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1683), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_NONNULL] = ACTIONS(1683), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1683), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1683), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1683), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1683), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1683), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_NORETURN] = ACTIONS(1683), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1683), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1683), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1683), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1683), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1683), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1683), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1683), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1683), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1683), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1683), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1683), - [anon_sym_MOZ_RAII] = ACTIONS(1683), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1683), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1683), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1683), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1683), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1683), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1683), - [sym_raw_string_literal] = ACTIONS(1685), - }, - [484] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [485] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [486] = { - [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_include_token1] = ACTIONS(1529), - [aux_sym_preproc_def_token1] = ACTIONS(1529), - [anon_sym_COMMA] = ACTIONS(1613), - [aux_sym_preproc_if_token1] = ACTIONS(1529), - [aux_sym_preproc_if_token2] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), - [sym_preproc_directive] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym___attribute__] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1531), - [anon_sym___declspec] = ACTIONS(1529), - [anon_sym___based] = ACTIONS(1529), - [anon_sym___cdecl] = ACTIONS(1529), - [anon_sym___clrcall] = ACTIONS(1529), - [anon_sym___stdcall] = ACTIONS(1529), - [anon_sym___fastcall] = ACTIONS(1529), - [anon_sym___thiscall] = ACTIONS(1529), - [anon_sym___vectorcall] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [anon_sym_thread_local] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym__Atomic] = ACTIONS(1529), - [anon_sym_mutable] = ACTIONS(1529), - [anon_sym_constexpr] = ACTIONS(1529), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_class] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_case] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_goto] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_sizeof] = ACTIONS(1529), - [sym_number_literal] = ACTIONS(1531), - [anon_sym_L_SQUOTE] = ACTIONS(1531), - [anon_sym_u_SQUOTE] = ACTIONS(1531), - [anon_sym_U_SQUOTE] = ACTIONS(1531), - [anon_sym_u8_SQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1529), - [sym_false] = ACTIONS(1529), - [sym_null] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1529), - [anon_sym_virtual] = ACTIONS(1529), - [anon_sym_explicit] = ACTIONS(1529), - [sym_auto] = ACTIONS(1529), - [anon_sym_typename] = ACTIONS(1529), - [anon_sym_template] = ACTIONS(1529), - [anon_sym_operator] = ACTIONS(1529), - [anon_sym_delete] = ACTIONS(1529), - [anon_sym_throw] = ACTIONS(1529), - [anon_sym_namespace] = ACTIONS(1529), - [anon_sym_using] = ACTIONS(1529), - [anon_sym_static_assert] = ACTIONS(1529), - [anon_sym_co_return] = ACTIONS(1529), - [anon_sym_co_yield] = ACTIONS(1529), - [anon_sym_try] = ACTIONS(1529), - [anon_sym_co_await] = ACTIONS(1529), - [anon_sym_new] = ACTIONS(1529), - [sym_this] = ACTIONS(1529), - [sym_nullptr] = ACTIONS(1529), - [sym_alone_macro] = ACTIONS(1531), - [aux_sym_alone_macro_call_token1] = ACTIONS(1529), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_FORWARD] = ACTIONS(1529), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1529), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_PS_GET] = ACTIONS(1529), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1529), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1529), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1529), - [anon_sym_MOZ_COLD] = ACTIONS(1529), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1529), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1529), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1529), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1529), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1529), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1529), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1529), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1529), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1529), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1529), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1529), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1529), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_RAII] = ACTIONS(1529), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1529), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1529), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1529), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1529), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1529), - [sym_raw_string_literal] = ACTIONS(1531), - }, - [487] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [488] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [489] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [490] = { - [ts_builtin_sym_end] = ACTIONS(1617), - [sym_identifier] = ACTIONS(1615), - [aux_sym_preproc_include_token1] = ACTIONS(1615), - [aux_sym_preproc_def_token1] = ACTIONS(1615), - [aux_sym_preproc_if_token1] = ACTIONS(1615), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1615), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1615), - [sym_preproc_directive] = ACTIONS(1615), - [anon_sym_LPAREN2] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1617), - [anon_sym_AMP_AMP] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1615), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_typedef] = ACTIONS(1615), - [anon_sym_extern] = ACTIONS(1615), - [anon_sym___attribute__] = ACTIONS(1615), - [anon_sym_COLON_COLON] = ACTIONS(1617), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1617), - [anon_sym___declspec] = ACTIONS(1615), - [anon_sym___based] = ACTIONS(1615), - [anon_sym___cdecl] = ACTIONS(1615), - [anon_sym___clrcall] = ACTIONS(1615), - [anon_sym___stdcall] = ACTIONS(1615), - [anon_sym___fastcall] = ACTIONS(1615), - [anon_sym___thiscall] = ACTIONS(1615), - [anon_sym___vectorcall] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_register] = ACTIONS(1615), - [anon_sym_inline] = ACTIONS(1615), - [anon_sym_thread_local] = ACTIONS(1615), - [anon_sym_const] = ACTIONS(1615), - [anon_sym_volatile] = ACTIONS(1615), - [anon_sym_restrict] = ACTIONS(1615), - [anon_sym__Atomic] = ACTIONS(1615), - [anon_sym_mutable] = ACTIONS(1615), - [anon_sym_constexpr] = ACTIONS(1615), - [anon_sym_signed] = ACTIONS(1615), - [anon_sym_unsigned] = ACTIONS(1615), - [anon_sym_long] = ACTIONS(1615), - [anon_sym_short] = ACTIONS(1615), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1615), - [anon_sym_class] = ACTIONS(1615), - [anon_sym_struct] = ACTIONS(1615), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_if] = ACTIONS(1615), - [anon_sym_else] = ACTIONS(1997), - [anon_sym_switch] = ACTIONS(1615), - [anon_sym_case] = ACTIONS(1615), - [anon_sym_default] = ACTIONS(1615), - [anon_sym_while] = ACTIONS(1615), - [anon_sym_do] = ACTIONS(1615), - [anon_sym_for] = ACTIONS(1615), - [anon_sym_return] = ACTIONS(1615), - [anon_sym_break] = ACTIONS(1615), - [anon_sym_continue] = ACTIONS(1615), - [anon_sym_goto] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_sizeof] = ACTIONS(1615), - [sym_number_literal] = ACTIONS(1617), - [anon_sym_L_SQUOTE] = ACTIONS(1617), - [anon_sym_u_SQUOTE] = ACTIONS(1617), - [anon_sym_U_SQUOTE] = ACTIONS(1617), - [anon_sym_u8_SQUOTE] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_L_DQUOTE] = ACTIONS(1617), - [anon_sym_u_DQUOTE] = ACTIONS(1617), - [anon_sym_U_DQUOTE] = ACTIONS(1617), - [anon_sym_u8_DQUOTE] = ACTIONS(1617), - [anon_sym_DQUOTE] = ACTIONS(1617), - [sym_true] = ACTIONS(1615), - [sym_false] = ACTIONS(1615), - [sym_null] = ACTIONS(1615), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1615), - [anon_sym_virtual] = ACTIONS(1615), - [anon_sym_explicit] = ACTIONS(1615), - [sym_auto] = ACTIONS(1615), - [anon_sym_typename] = ACTIONS(1615), - [anon_sym_template] = ACTIONS(1615), - [anon_sym_operator] = ACTIONS(1615), - [anon_sym_delete] = ACTIONS(1615), - [anon_sym_throw] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1615), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_static_assert] = ACTIONS(1615), - [anon_sym_co_return] = ACTIONS(1615), - [anon_sym_co_yield] = ACTIONS(1615), - [anon_sym_try] = ACTIONS(1615), - [anon_sym_co_await] = ACTIONS(1615), - [anon_sym_new] = ACTIONS(1615), - [sym_this] = ACTIONS(1615), - [sym_nullptr] = ACTIONS(1615), - [sym_alone_macro] = ACTIONS(1617), - [aux_sym_alone_macro_call_token1] = ACTIONS(1615), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_FORWARD] = ACTIONS(1615), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1615), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_PS_GET] = ACTIONS(1615), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1615), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1615), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1615), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1615), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1615), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1615), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1615), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1615), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1615), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1615), - [anon_sym_MOZ_COLD] = ACTIONS(1615), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1615), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1615), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1615), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1615), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1615), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1615), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1615), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1615), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1615), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1615), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1615), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1615), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1615), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1615), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1615), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1615), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1615), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1615), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1615), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1615), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_NONNULL] = ACTIONS(1615), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1615), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1615), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1615), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1615), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1615), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_NORETURN] = ACTIONS(1615), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1615), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1615), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1615), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1615), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1615), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1615), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1615), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1615), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1615), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1615), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1615), - [anon_sym_MOZ_RAII] = ACTIONS(1615), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1615), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1615), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1615), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1615), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1615), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1615), - [sym_raw_string_literal] = ACTIONS(1617), - }, - [491] = { - [sym_preproc_def] = STATE(411), - [sym_preproc_function_def] = STATE(411), - [sym_preproc_call] = STATE(411), - [sym_preproc_if_in_field_declaration_list] = STATE(411), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(411), - [sym_preproc_else_in_field_declaration_list] = STATE(5040), - [sym_preproc_elif_in_field_declaration_list] = STATE(5040), - [sym_type_definition] = STATE(411), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3235), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3615), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(411), - [sym_field_declaration] = STATE(411), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(841), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(411), - [sym_operator_cast] = STATE(4161), - [sym_inline_method_definition] = STATE(411), - [sym__constructor_specifiers] = STATE(841), - [sym_operator_cast_definition] = STATE(411), - [sym_operator_cast_declaration] = STATE(411), - [sym_constructor_or_destructor_definition] = STATE(411), - [sym_constructor_or_destructor_declaration] = STATE(411), - [sym_friend_declaration] = STATE(411), - [sym_access_specifier] = STATE(411), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(411), - [sym_alias_declaration] = STATE(411), - [sym_static_assert_declaration] = STATE(411), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4161), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(411), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(411), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(841), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(1909), - [aux_sym_preproc_if_token1] = ACTIONS(1911), - [aux_sym_preproc_if_token2] = ACTIONS(1999), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1915), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1915), - [aux_sym_preproc_else_token1] = ACTIONS(1917), - [aux_sym_preproc_elif_token1] = ACTIONS(1919), - [sym_preproc_directive] = ACTIONS(1921), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(1951), - [anon_sym_private] = ACTIONS(1951), - [anon_sym_protected] = ACTIONS(1951), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(1955), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1957), - [anon_sym_using] = ACTIONS(1959), - [anon_sym_static_assert] = ACTIONS(1961), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1963), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [492] = { - [ts_builtin_sym_end] = ACTIONS(1583), - [sym_identifier] = ACTIONS(1581), - [aux_sym_preproc_include_token1] = ACTIONS(1581), - [aux_sym_preproc_def_token1] = ACTIONS(1581), - [aux_sym_preproc_if_token1] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1581), - [sym_preproc_directive] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_TILDE] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1581), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_typedef] = ACTIONS(1581), - [anon_sym_extern] = ACTIONS(1581), - [anon_sym___attribute__] = ACTIONS(1581), - [anon_sym_COLON_COLON] = ACTIONS(1583), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1583), - [anon_sym___declspec] = ACTIONS(1581), - [anon_sym___based] = ACTIONS(1581), - [anon_sym___cdecl] = ACTIONS(1581), - [anon_sym___clrcall] = ACTIONS(1581), - [anon_sym___stdcall] = ACTIONS(1581), - [anon_sym___fastcall] = ACTIONS(1581), - [anon_sym___thiscall] = ACTIONS(1581), - [anon_sym___vectorcall] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1581), - [anon_sym_register] = ACTIONS(1581), - [anon_sym_inline] = ACTIONS(1581), - [anon_sym_thread_local] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1581), - [anon_sym_volatile] = ACTIONS(1581), - [anon_sym_restrict] = ACTIONS(1581), - [anon_sym__Atomic] = ACTIONS(1581), - [anon_sym_mutable] = ACTIONS(1581), - [anon_sym_constexpr] = ACTIONS(1581), - [anon_sym_signed] = ACTIONS(1581), - [anon_sym_unsigned] = ACTIONS(1581), - [anon_sym_long] = ACTIONS(1581), - [anon_sym_short] = ACTIONS(1581), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_enum] = ACTIONS(1581), - [anon_sym_class] = ACTIONS(1581), - [anon_sym_struct] = ACTIONS(1581), - [anon_sym_union] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_else] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1581), - [anon_sym_case] = ACTIONS(1581), - [anon_sym_default] = ACTIONS(1581), - [anon_sym_while] = ACTIONS(1581), - [anon_sym_do] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1581), - [anon_sym_break] = ACTIONS(1581), - [anon_sym_continue] = ACTIONS(1581), - [anon_sym_goto] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(1583), - [anon_sym_L_SQUOTE] = ACTIONS(1583), - [anon_sym_u_SQUOTE] = ACTIONS(1583), - [anon_sym_U_SQUOTE] = ACTIONS(1583), - [anon_sym_u8_SQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1583), - [anon_sym_L_DQUOTE] = ACTIONS(1583), - [anon_sym_u_DQUOTE] = ACTIONS(1583), - [anon_sym_U_DQUOTE] = ACTIONS(1583), - [anon_sym_u8_DQUOTE] = ACTIONS(1583), - [anon_sym_DQUOTE] = ACTIONS(1583), - [sym_true] = ACTIONS(1581), - [sym_false] = ACTIONS(1581), - [sym_null] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1581), - [anon_sym_virtual] = ACTIONS(1581), - [anon_sym_explicit] = ACTIONS(1581), - [sym_auto] = ACTIONS(1581), - [anon_sym_typename] = ACTIONS(1581), - [anon_sym_template] = ACTIONS(1581), - [anon_sym_operator] = ACTIONS(1581), - [anon_sym_delete] = ACTIONS(1581), - [anon_sym_throw] = ACTIONS(1581), - [anon_sym_namespace] = ACTIONS(1581), - [anon_sym_using] = ACTIONS(1581), - [anon_sym_static_assert] = ACTIONS(1581), - [anon_sym_co_return] = ACTIONS(1581), - [anon_sym_co_yield] = ACTIONS(1581), - [anon_sym_try] = ACTIONS(1581), - [anon_sym_co_await] = ACTIONS(1581), - [anon_sym_new] = ACTIONS(1581), - [sym_this] = ACTIONS(1581), - [sym_nullptr] = ACTIONS(1581), - [sym_alone_macro] = ACTIONS(1583), - [aux_sym_alone_macro_call_token1] = ACTIONS(1581), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_FORWARD] = ACTIONS(1581), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1581), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_PS_GET] = ACTIONS(1581), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1581), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1581), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1581), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1581), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1581), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1581), - [anon_sym_MOZ_COLD] = ACTIONS(1581), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1581), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1581), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1581), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1581), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1581), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1581), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1581), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1581), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1581), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1581), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1581), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1581), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1581), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_NONNULL] = ACTIONS(1581), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1581), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1581), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1581), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1581), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1581), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1581), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1581), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1581), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1581), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1581), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1581), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1581), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1581), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1581), - [anon_sym_MOZ_RAII] = ACTIONS(1581), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1581), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1581), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1581), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1581), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1581), - [sym_raw_string_literal] = ACTIONS(1583), - }, - [493] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___based] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [anon_sym_explicit] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_operator] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1533), - [anon_sym_static_assert] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [sym_alone_macro] = ACTIONS(1535), - [aux_sym_alone_macro_call_token1] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [494] = { - [ts_builtin_sym_end] = ACTIONS(1575), - [sym_identifier] = ACTIONS(1573), - [aux_sym_preproc_include_token1] = ACTIONS(1573), - [aux_sym_preproc_def_token1] = ACTIONS(1573), - [aux_sym_preproc_if_token1] = ACTIONS(1573), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1573), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1573), - [sym_preproc_directive] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_BANG] = ACTIONS(1575), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1573), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_STAR] = ACTIONS(1575), - [anon_sym_AMP_AMP] = ACTIONS(1575), - [anon_sym_AMP] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_typedef] = ACTIONS(1573), - [anon_sym_extern] = ACTIONS(1573), - [anon_sym___attribute__] = ACTIONS(1573), - [anon_sym_COLON_COLON] = ACTIONS(1575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1575), - [anon_sym___declspec] = ACTIONS(1573), - [anon_sym___based] = ACTIONS(1573), - [anon_sym___cdecl] = ACTIONS(1573), - [anon_sym___clrcall] = ACTIONS(1573), - [anon_sym___stdcall] = ACTIONS(1573), - [anon_sym___fastcall] = ACTIONS(1573), - [anon_sym___thiscall] = ACTIONS(1573), - [anon_sym___vectorcall] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1573), - [anon_sym_static] = ACTIONS(1573), - [anon_sym_register] = ACTIONS(1573), - [anon_sym_inline] = ACTIONS(1573), - [anon_sym_thread_local] = ACTIONS(1573), - [anon_sym_const] = ACTIONS(1573), - [anon_sym_volatile] = ACTIONS(1573), - [anon_sym_restrict] = ACTIONS(1573), - [anon_sym__Atomic] = ACTIONS(1573), - [anon_sym_mutable] = ACTIONS(1573), - [anon_sym_constexpr] = ACTIONS(1573), - [anon_sym_signed] = ACTIONS(1573), - [anon_sym_unsigned] = ACTIONS(1573), - [anon_sym_long] = ACTIONS(1573), - [anon_sym_short] = ACTIONS(1573), - [sym_primitive_type] = ACTIONS(1573), - [anon_sym_enum] = ACTIONS(1573), - [anon_sym_class] = ACTIONS(1573), - [anon_sym_struct] = ACTIONS(1573), - [anon_sym_union] = ACTIONS(1573), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_else] = ACTIONS(1573), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_case] = ACTIONS(1573), - [anon_sym_default] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1573), - [anon_sym_do] = ACTIONS(1573), - [anon_sym_for] = ACTIONS(1573), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1573), - [anon_sym_continue] = ACTIONS(1573), - [anon_sym_goto] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_sizeof] = ACTIONS(1573), - [sym_number_literal] = ACTIONS(1575), - [anon_sym_L_SQUOTE] = ACTIONS(1575), - [anon_sym_u_SQUOTE] = ACTIONS(1575), - [anon_sym_U_SQUOTE] = ACTIONS(1575), - [anon_sym_u8_SQUOTE] = ACTIONS(1575), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_L_DQUOTE] = ACTIONS(1575), - [anon_sym_u_DQUOTE] = ACTIONS(1575), - [anon_sym_U_DQUOTE] = ACTIONS(1575), - [anon_sym_u8_DQUOTE] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym_true] = ACTIONS(1573), - [sym_false] = ACTIONS(1573), - [sym_null] = ACTIONS(1573), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1573), - [anon_sym_virtual] = ACTIONS(1573), - [anon_sym_explicit] = ACTIONS(1573), - [sym_auto] = ACTIONS(1573), - [anon_sym_typename] = ACTIONS(1573), - [anon_sym_template] = ACTIONS(1573), - [anon_sym_operator] = ACTIONS(1573), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_throw] = ACTIONS(1573), - [anon_sym_namespace] = ACTIONS(1573), - [anon_sym_using] = ACTIONS(1573), - [anon_sym_static_assert] = ACTIONS(1573), - [anon_sym_co_return] = ACTIONS(1573), - [anon_sym_co_yield] = ACTIONS(1573), - [anon_sym_try] = ACTIONS(1573), - [anon_sym_co_await] = ACTIONS(1573), - [anon_sym_new] = ACTIONS(1573), - [sym_this] = ACTIONS(1573), - [sym_nullptr] = ACTIONS(1573), - [sym_alone_macro] = ACTIONS(1575), - [aux_sym_alone_macro_call_token1] = ACTIONS(1573), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_FORWARD] = ACTIONS(1573), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1573), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_PS_GET] = ACTIONS(1573), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1573), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1573), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1573), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1573), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1573), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1573), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1573), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1573), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1573), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1573), - [anon_sym_MOZ_COLD] = ACTIONS(1573), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1573), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1573), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1573), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1573), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1573), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1573), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1573), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1573), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1573), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1573), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1573), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1573), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1573), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1573), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1573), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1573), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1573), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1573), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1573), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1573), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_NONNULL] = ACTIONS(1573), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1573), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1573), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1573), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1573), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1573), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_NORETURN] = ACTIONS(1573), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1573), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1573), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1573), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1573), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1573), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1573), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1573), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1573), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1573), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1573), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1573), - [anon_sym_MOZ_RAII] = ACTIONS(1573), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1573), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1573), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1573), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1573), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1573), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1573), - [sym_raw_string_literal] = ACTIONS(1575), - }, - [495] = { - [sym_identifier] = ACTIONS(1637), - [aux_sym_preproc_include_token1] = ACTIONS(1637), - [aux_sym_preproc_def_token1] = ACTIONS(1637), - [aux_sym_preproc_if_token1] = ACTIONS(1637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1637), - [sym_preproc_directive] = ACTIONS(1637), - [anon_sym_LPAREN2] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_AMP_AMP] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_typedef] = ACTIONS(1637), - [anon_sym_extern] = ACTIONS(1637), - [anon_sym___attribute__] = ACTIONS(1637), - [anon_sym_COLON_COLON] = ACTIONS(1639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1639), - [anon_sym___declspec] = ACTIONS(1637), - [anon_sym___based] = ACTIONS(1637), - [anon_sym___cdecl] = ACTIONS(1637), - [anon_sym___clrcall] = ACTIONS(1637), - [anon_sym___stdcall] = ACTIONS(1637), - [anon_sym___fastcall] = ACTIONS(1637), - [anon_sym___thiscall] = ACTIONS(1637), - [anon_sym___vectorcall] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1637), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_register] = ACTIONS(1637), - [anon_sym_inline] = ACTIONS(1637), - [anon_sym_thread_local] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [anon_sym_volatile] = ACTIONS(1637), - [anon_sym_restrict] = ACTIONS(1637), - [anon_sym__Atomic] = ACTIONS(1637), - [anon_sym_mutable] = ACTIONS(1637), - [anon_sym_constexpr] = ACTIONS(1637), - [anon_sym_signed] = ACTIONS(1637), - [anon_sym_unsigned] = ACTIONS(1637), - [anon_sym_long] = ACTIONS(1637), - [anon_sym_short] = ACTIONS(1637), - [sym_primitive_type] = ACTIONS(1637), - [anon_sym_enum] = ACTIONS(1637), - [anon_sym_class] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(1637), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_else] = ACTIONS(1637), - [anon_sym_switch] = ACTIONS(1637), - [anon_sym_case] = ACTIONS(1637), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_do] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_goto] = ACTIONS(1637), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_sizeof] = ACTIONS(1637), - [sym_number_literal] = ACTIONS(1639), - [anon_sym_L_SQUOTE] = ACTIONS(1639), - [anon_sym_u_SQUOTE] = ACTIONS(1639), - [anon_sym_U_SQUOTE] = ACTIONS(1639), - [anon_sym_u8_SQUOTE] = ACTIONS(1639), - [anon_sym_SQUOTE] = ACTIONS(1639), - [anon_sym_L_DQUOTE] = ACTIONS(1639), - [anon_sym_u_DQUOTE] = ACTIONS(1639), - [anon_sym_U_DQUOTE] = ACTIONS(1639), - [anon_sym_u8_DQUOTE] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym_true] = ACTIONS(1637), - [sym_false] = ACTIONS(1637), - [sym_null] = ACTIONS(1637), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1637), - [anon_sym_virtual] = ACTIONS(1637), - [anon_sym_explicit] = ACTIONS(1637), - [sym_auto] = ACTIONS(1637), - [anon_sym_typename] = ACTIONS(1637), - [anon_sym_template] = ACTIONS(1637), - [anon_sym_operator] = ACTIONS(1637), - [anon_sym_delete] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1637), - [anon_sym_using] = ACTIONS(1637), - [anon_sym_static_assert] = ACTIONS(1637), - [anon_sym_co_return] = ACTIONS(1637), - [anon_sym_co_yield] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1637), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1637), - [sym_this] = ACTIONS(1637), - [sym_nullptr] = ACTIONS(1637), - [sym_alone_macro] = ACTIONS(1639), - [aux_sym_alone_macro_call_token1] = ACTIONS(1637), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_FORWARD] = ACTIONS(1637), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1637), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_PS_GET] = ACTIONS(1637), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1637), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1637), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1637), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1637), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1637), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1637), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1637), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1637), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1637), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1637), - [anon_sym_MOZ_COLD] = ACTIONS(1637), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1637), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1637), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1637), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1637), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1637), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1637), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1637), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1637), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1637), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1637), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1637), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1637), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1637), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1637), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1637), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1637), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1637), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1637), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1637), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1637), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_NONNULL] = ACTIONS(1637), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1637), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1637), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1637), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1637), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1637), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_NORETURN] = ACTIONS(1637), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1637), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1637), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1637), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1637), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1637), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1637), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1637), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1637), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1637), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1637), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1637), - [anon_sym_MOZ_RAII] = ACTIONS(1637), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1637), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1637), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1637), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1637), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1637), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1637), - [sym_raw_string_literal] = ACTIONS(1639), - }, - [496] = { - [sym_identifier] = ACTIONS(1633), - [aux_sym_preproc_include_token1] = ACTIONS(1633), - [aux_sym_preproc_def_token1] = ACTIONS(1633), - [aux_sym_preproc_if_token1] = ACTIONS(1633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1633), - [sym_preproc_directive] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(1635), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1633), - [anon_sym_STAR] = ACTIONS(1635), - [anon_sym_AMP_AMP] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1635), - [anon_sym_typedef] = ACTIONS(1633), - [anon_sym_extern] = ACTIONS(1633), - [anon_sym___attribute__] = ACTIONS(1633), - [anon_sym_COLON_COLON] = ACTIONS(1635), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1635), - [anon_sym___declspec] = ACTIONS(1633), - [anon_sym___based] = ACTIONS(1633), - [anon_sym___cdecl] = ACTIONS(1633), - [anon_sym___clrcall] = ACTIONS(1633), - [anon_sym___stdcall] = ACTIONS(1633), - [anon_sym___fastcall] = ACTIONS(1633), - [anon_sym___thiscall] = ACTIONS(1633), - [anon_sym___vectorcall] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1635), - [anon_sym_RBRACE] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_static] = ACTIONS(1633), - [anon_sym_register] = ACTIONS(1633), - [anon_sym_inline] = ACTIONS(1633), - [anon_sym_thread_local] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [anon_sym_volatile] = ACTIONS(1633), - [anon_sym_restrict] = ACTIONS(1633), - [anon_sym__Atomic] = ACTIONS(1633), - [anon_sym_mutable] = ACTIONS(1633), - [anon_sym_constexpr] = ACTIONS(1633), - [anon_sym_signed] = ACTIONS(1633), - [anon_sym_unsigned] = ACTIONS(1633), - [anon_sym_long] = ACTIONS(1633), - [anon_sym_short] = ACTIONS(1633), - [sym_primitive_type] = ACTIONS(1633), - [anon_sym_enum] = ACTIONS(1633), - [anon_sym_class] = ACTIONS(1633), - [anon_sym_struct] = ACTIONS(1633), - [anon_sym_union] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_else] = ACTIONS(1633), - [anon_sym_switch] = ACTIONS(1633), - [anon_sym_case] = ACTIONS(1633), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_do] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_goto] = ACTIONS(1633), - [anon_sym_DASH_DASH] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1635), - [anon_sym_sizeof] = ACTIONS(1633), - [sym_number_literal] = ACTIONS(1635), - [anon_sym_L_SQUOTE] = ACTIONS(1635), - [anon_sym_u_SQUOTE] = ACTIONS(1635), - [anon_sym_U_SQUOTE] = ACTIONS(1635), - [anon_sym_u8_SQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1635), - [anon_sym_L_DQUOTE] = ACTIONS(1635), - [anon_sym_u_DQUOTE] = ACTIONS(1635), - [anon_sym_U_DQUOTE] = ACTIONS(1635), - [anon_sym_u8_DQUOTE] = ACTIONS(1635), - [anon_sym_DQUOTE] = ACTIONS(1635), - [sym_true] = ACTIONS(1633), - [sym_false] = ACTIONS(1633), - [sym_null] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1633), - [anon_sym_virtual] = ACTIONS(1633), - [anon_sym_explicit] = ACTIONS(1633), - [sym_auto] = ACTIONS(1633), - [anon_sym_typename] = ACTIONS(1633), - [anon_sym_template] = ACTIONS(1633), - [anon_sym_operator] = ACTIONS(1633), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_throw] = ACTIONS(1633), - [anon_sym_namespace] = ACTIONS(1633), - [anon_sym_using] = ACTIONS(1633), - [anon_sym_static_assert] = ACTIONS(1633), - [anon_sym_co_return] = ACTIONS(1633), - [anon_sym_co_yield] = ACTIONS(1633), - [anon_sym_try] = ACTIONS(1633), - [anon_sym_co_await] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1633), - [sym_this] = ACTIONS(1633), - [sym_nullptr] = ACTIONS(1633), - [sym_alone_macro] = ACTIONS(1635), - [aux_sym_alone_macro_call_token1] = ACTIONS(1633), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_FORWARD] = ACTIONS(1633), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1633), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_PS_GET] = ACTIONS(1633), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1633), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1633), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1633), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1633), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1633), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1633), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1633), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1633), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1633), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1633), - [anon_sym_MOZ_COLD] = ACTIONS(1633), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1633), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1633), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1633), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1633), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1633), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1633), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1633), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1633), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1633), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1633), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1633), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1633), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1633), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1633), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1633), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1633), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1633), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1633), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1633), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1633), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_NONNULL] = ACTIONS(1633), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1633), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1633), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1633), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1633), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1633), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_NORETURN] = ACTIONS(1633), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1633), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1633), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1633), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1633), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1633), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1633), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1633), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1633), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1633), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1633), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1633), - [anon_sym_MOZ_RAII] = ACTIONS(1633), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1633), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1633), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1633), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1633), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1633), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1633), - [sym_raw_string_literal] = ACTIONS(1635), - }, - [497] = { - [sym_identifier] = ACTIONS(1625), - [aux_sym_preproc_include_token1] = ACTIONS(1625), - [aux_sym_preproc_def_token1] = ACTIONS(1625), - [aux_sym_preproc_if_token1] = ACTIONS(1625), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1625), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1625), - [sym_preproc_directive] = ACTIONS(1625), - [anon_sym_LPAREN2] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1627), - [anon_sym_TILDE] = ACTIONS(1627), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_STAR] = ACTIONS(1627), - [anon_sym_AMP_AMP] = ACTIONS(1627), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_SEMI] = ACTIONS(1627), - [anon_sym_typedef] = ACTIONS(1625), - [anon_sym_extern] = ACTIONS(1625), - [anon_sym___attribute__] = ACTIONS(1625), - [anon_sym_COLON_COLON] = ACTIONS(1627), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1627), - [anon_sym___declspec] = ACTIONS(1625), - [anon_sym___based] = ACTIONS(1625), - [anon_sym___cdecl] = ACTIONS(1625), - [anon_sym___clrcall] = ACTIONS(1625), - [anon_sym___stdcall] = ACTIONS(1625), - [anon_sym___fastcall] = ACTIONS(1625), - [anon_sym___thiscall] = ACTIONS(1625), - [anon_sym___vectorcall] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_RBRACE] = ACTIONS(1627), - [anon_sym_LBRACK] = ACTIONS(1625), - [anon_sym_static] = ACTIONS(1625), - [anon_sym_register] = ACTIONS(1625), - [anon_sym_inline] = ACTIONS(1625), - [anon_sym_thread_local] = ACTIONS(1625), - [anon_sym_const] = ACTIONS(1625), - [anon_sym_volatile] = ACTIONS(1625), - [anon_sym_restrict] = ACTIONS(1625), - [anon_sym__Atomic] = ACTIONS(1625), - [anon_sym_mutable] = ACTIONS(1625), - [anon_sym_constexpr] = ACTIONS(1625), - [anon_sym_signed] = ACTIONS(1625), - [anon_sym_unsigned] = ACTIONS(1625), - [anon_sym_long] = ACTIONS(1625), - [anon_sym_short] = ACTIONS(1625), - [sym_primitive_type] = ACTIONS(1625), - [anon_sym_enum] = ACTIONS(1625), - [anon_sym_class] = ACTIONS(1625), - [anon_sym_struct] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1625), - [anon_sym_else] = ACTIONS(1625), - [anon_sym_switch] = ACTIONS(1625), - [anon_sym_case] = ACTIONS(1625), - [anon_sym_default] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1625), - [anon_sym_do] = ACTIONS(1625), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1625), - [anon_sym_break] = ACTIONS(1625), - [anon_sym_continue] = ACTIONS(1625), - [anon_sym_goto] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1625), - [sym_number_literal] = ACTIONS(1627), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1627), - [anon_sym_u_DQUOTE] = ACTIONS(1627), - [anon_sym_U_DQUOTE] = ACTIONS(1627), - [anon_sym_u8_DQUOTE] = ACTIONS(1627), - [anon_sym_DQUOTE] = ACTIONS(1627), - [sym_true] = ACTIONS(1625), - [sym_false] = ACTIONS(1625), - [sym_null] = ACTIONS(1625), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1625), - [anon_sym_virtual] = ACTIONS(1625), - [anon_sym_explicit] = ACTIONS(1625), - [sym_auto] = ACTIONS(1625), - [anon_sym_typename] = ACTIONS(1625), - [anon_sym_template] = ACTIONS(1625), - [anon_sym_operator] = ACTIONS(1625), - [anon_sym_delete] = ACTIONS(1625), - [anon_sym_throw] = ACTIONS(1625), - [anon_sym_namespace] = ACTIONS(1625), - [anon_sym_using] = ACTIONS(1625), - [anon_sym_static_assert] = ACTIONS(1625), - [anon_sym_co_return] = ACTIONS(1625), - [anon_sym_co_yield] = ACTIONS(1625), - [anon_sym_try] = ACTIONS(1625), - [anon_sym_co_await] = ACTIONS(1625), - [anon_sym_new] = ACTIONS(1625), - [sym_this] = ACTIONS(1625), - [sym_nullptr] = ACTIONS(1625), - [sym_alone_macro] = ACTIONS(1627), - [aux_sym_alone_macro_call_token1] = ACTIONS(1625), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_FORWARD] = ACTIONS(1625), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1625), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_PS_GET] = ACTIONS(1625), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1625), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1625), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1625), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1625), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1625), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1625), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1625), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1625), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1625), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1625), - [anon_sym_MOZ_COLD] = ACTIONS(1625), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1625), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1625), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1625), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1625), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1625), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1625), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1625), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1625), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1625), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1625), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1625), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1625), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1625), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1625), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1625), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1625), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1625), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1625), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1625), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1625), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_NONNULL] = ACTIONS(1625), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1625), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1625), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1625), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1625), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1625), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_NORETURN] = ACTIONS(1625), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1625), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1625), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1625), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1625), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1625), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1625), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1625), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1625), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1625), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1625), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1625), - [anon_sym_MOZ_RAII] = ACTIONS(1625), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1625), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1625), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1625), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1625), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1625), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1625), - [sym_raw_string_literal] = ACTIONS(1627), - }, - [498] = { - [ts_builtin_sym_end] = ACTIONS(1669), - [sym_identifier] = ACTIONS(1667), - [aux_sym_preproc_include_token1] = ACTIONS(1667), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1667), - [sym_preproc_directive] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_BANG] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_typedef] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym___attribute__] = ACTIONS(1667), - [anon_sym_COLON_COLON] = ACTIONS(1669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1669), - [anon_sym___declspec] = ACTIONS(1667), - [anon_sym___based] = ACTIONS(1667), - [anon_sym___cdecl] = ACTIONS(1667), - [anon_sym___clrcall] = ACTIONS(1667), - [anon_sym___stdcall] = ACTIONS(1667), - [anon_sym___fastcall] = ACTIONS(1667), - [anon_sym___thiscall] = ACTIONS(1667), - [anon_sym___vectorcall] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_inline] = ACTIONS(1667), - [anon_sym_thread_local] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [anon_sym_volatile] = ACTIONS(1667), - [anon_sym_restrict] = ACTIONS(1667), - [anon_sym__Atomic] = ACTIONS(1667), - [anon_sym_mutable] = ACTIONS(1667), - [anon_sym_constexpr] = ACTIONS(1667), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [sym_primitive_type] = ACTIONS(1667), - [anon_sym_enum] = ACTIONS(1667), - [anon_sym_class] = ACTIONS(1667), - [anon_sym_struct] = ACTIONS(1667), - [anon_sym_union] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_switch] = ACTIONS(1667), - [anon_sym_case] = ACTIONS(1667), - [anon_sym_default] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_goto] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_sizeof] = ACTIONS(1667), - [sym_number_literal] = ACTIONS(1669), - [anon_sym_L_SQUOTE] = ACTIONS(1669), - [anon_sym_u_SQUOTE] = ACTIONS(1669), - [anon_sym_U_SQUOTE] = ACTIONS(1669), - [anon_sym_u8_SQUOTE] = ACTIONS(1669), - [anon_sym_SQUOTE] = ACTIONS(1669), - [anon_sym_L_DQUOTE] = ACTIONS(1669), - [anon_sym_u_DQUOTE] = ACTIONS(1669), - [anon_sym_U_DQUOTE] = ACTIONS(1669), - [anon_sym_u8_DQUOTE] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym_true] = ACTIONS(1667), - [sym_false] = ACTIONS(1667), - [sym_null] = ACTIONS(1667), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1667), - [anon_sym_virtual] = ACTIONS(1667), - [anon_sym_explicit] = ACTIONS(1667), - [sym_auto] = ACTIONS(1667), - [anon_sym_typename] = ACTIONS(1667), - [anon_sym_template] = ACTIONS(1667), - [anon_sym_operator] = ACTIONS(1667), - [anon_sym_delete] = ACTIONS(1667), - [anon_sym_throw] = ACTIONS(1667), - [anon_sym_namespace] = ACTIONS(1667), - [anon_sym_using] = ACTIONS(1667), - [anon_sym_static_assert] = ACTIONS(1667), - [anon_sym_co_return] = ACTIONS(1667), - [anon_sym_co_yield] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_co_await] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [sym_this] = ACTIONS(1667), - [sym_nullptr] = ACTIONS(1667), - [sym_alone_macro] = ACTIONS(1669), - [aux_sym_alone_macro_call_token1] = ACTIONS(1667), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_FORWARD] = ACTIONS(1667), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1667), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_PS_GET] = ACTIONS(1667), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1667), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1667), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1667), - [anon_sym_MOZ_COLD] = ACTIONS(1667), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1667), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1667), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1667), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1667), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1667), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1667), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1667), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1667), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1667), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1667), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1667), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1667), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_RAII] = ACTIONS(1667), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1667), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1667), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1667), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1667), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1667), - [sym_raw_string_literal] = ACTIONS(1669), - }, - [499] = { - [ts_builtin_sym_end] = ACTIONS(1689), - [sym_identifier] = ACTIONS(1687), - [aux_sym_preproc_include_token1] = ACTIONS(1687), - [aux_sym_preproc_def_token1] = ACTIONS(1687), - [aux_sym_preproc_if_token1] = ACTIONS(1687), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1687), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1687), - [sym_preproc_directive] = ACTIONS(1687), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_AMP_AMP] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_typedef] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(1687), - [anon_sym___attribute__] = ACTIONS(1687), - [anon_sym_COLON_COLON] = ACTIONS(1689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1689), - [anon_sym___declspec] = ACTIONS(1687), - [anon_sym___based] = ACTIONS(1687), - [anon_sym___cdecl] = ACTIONS(1687), - [anon_sym___clrcall] = ACTIONS(1687), - [anon_sym___stdcall] = ACTIONS(1687), - [anon_sym___fastcall] = ACTIONS(1687), - [anon_sym___thiscall] = ACTIONS(1687), - [anon_sym___vectorcall] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1689), - [anon_sym_LBRACK] = ACTIONS(1687), - [anon_sym_static] = ACTIONS(1687), - [anon_sym_register] = ACTIONS(1687), - [anon_sym_inline] = ACTIONS(1687), - [anon_sym_thread_local] = ACTIONS(1687), - [anon_sym_const] = ACTIONS(1687), - [anon_sym_volatile] = ACTIONS(1687), - [anon_sym_restrict] = ACTIONS(1687), - [anon_sym__Atomic] = ACTIONS(1687), - [anon_sym_mutable] = ACTIONS(1687), - [anon_sym_constexpr] = ACTIONS(1687), - [anon_sym_signed] = ACTIONS(1687), - [anon_sym_unsigned] = ACTIONS(1687), - [anon_sym_long] = ACTIONS(1687), - [anon_sym_short] = ACTIONS(1687), - [sym_primitive_type] = ACTIONS(1687), - [anon_sym_enum] = ACTIONS(1687), - [anon_sym_class] = ACTIONS(1687), - [anon_sym_struct] = ACTIONS(1687), - [anon_sym_union] = ACTIONS(1687), - [anon_sym_if] = ACTIONS(1687), - [anon_sym_else] = ACTIONS(1687), - [anon_sym_switch] = ACTIONS(1687), - [anon_sym_case] = ACTIONS(1687), - [anon_sym_default] = ACTIONS(1687), - [anon_sym_while] = ACTIONS(1687), - [anon_sym_do] = ACTIONS(1687), - [anon_sym_for] = ACTIONS(1687), - [anon_sym_return] = ACTIONS(1687), - [anon_sym_break] = ACTIONS(1687), - [anon_sym_continue] = ACTIONS(1687), - [anon_sym_goto] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_sizeof] = ACTIONS(1687), - [sym_number_literal] = ACTIONS(1689), - [anon_sym_L_SQUOTE] = ACTIONS(1689), - [anon_sym_u_SQUOTE] = ACTIONS(1689), - [anon_sym_U_SQUOTE] = ACTIONS(1689), - [anon_sym_u8_SQUOTE] = ACTIONS(1689), - [anon_sym_SQUOTE] = ACTIONS(1689), - [anon_sym_L_DQUOTE] = ACTIONS(1689), - [anon_sym_u_DQUOTE] = ACTIONS(1689), - [anon_sym_U_DQUOTE] = ACTIONS(1689), - [anon_sym_u8_DQUOTE] = ACTIONS(1689), - [anon_sym_DQUOTE] = ACTIONS(1689), - [sym_true] = ACTIONS(1687), - [sym_false] = ACTIONS(1687), - [sym_null] = ACTIONS(1687), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1687), - [anon_sym_virtual] = ACTIONS(1687), - [anon_sym_explicit] = ACTIONS(1687), - [sym_auto] = ACTIONS(1687), - [anon_sym_typename] = ACTIONS(1687), - [anon_sym_template] = ACTIONS(1687), - [anon_sym_operator] = ACTIONS(1687), - [anon_sym_delete] = ACTIONS(1687), - [anon_sym_throw] = ACTIONS(1687), - [anon_sym_namespace] = ACTIONS(1687), - [anon_sym_using] = ACTIONS(1687), - [anon_sym_static_assert] = ACTIONS(1687), - [anon_sym_co_return] = ACTIONS(1687), - [anon_sym_co_yield] = ACTIONS(1687), - [anon_sym_try] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1687), - [anon_sym_new] = ACTIONS(1687), - [sym_this] = ACTIONS(1687), - [sym_nullptr] = ACTIONS(1687), - [sym_alone_macro] = ACTIONS(1689), - [aux_sym_alone_macro_call_token1] = ACTIONS(1687), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_FORWARD] = ACTIONS(1687), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1687), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_PS_GET] = ACTIONS(1687), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1687), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1687), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1687), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1687), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1687), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1687), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1687), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1687), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1687), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1687), - [anon_sym_MOZ_COLD] = ACTIONS(1687), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1687), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1687), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1687), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1687), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1687), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1687), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1687), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1687), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1687), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1687), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1687), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1687), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1687), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1687), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1687), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1687), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1687), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1687), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1687), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1687), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_NONNULL] = ACTIONS(1687), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1687), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1687), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1687), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1687), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1687), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_NORETURN] = ACTIONS(1687), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1687), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1687), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1687), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1687), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1687), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1687), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1687), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1687), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1687), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1687), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1687), - [anon_sym_MOZ_RAII] = ACTIONS(1687), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1687), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1687), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1687), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1687), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1687), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1687), - [sym_raw_string_literal] = ACTIONS(1689), - }, - [500] = { - [sym_identifier] = ACTIONS(1581), - [aux_sym_preproc_include_token1] = ACTIONS(1581), - [aux_sym_preproc_def_token1] = ACTIONS(1581), - [aux_sym_preproc_if_token1] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1581), - [sym_preproc_directive] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_TILDE] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1581), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_typedef] = ACTIONS(1581), - [anon_sym_extern] = ACTIONS(1581), - [anon_sym___attribute__] = ACTIONS(1581), - [anon_sym_COLON_COLON] = ACTIONS(1583), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1583), - [anon_sym___declspec] = ACTIONS(1581), - [anon_sym___based] = ACTIONS(1581), - [anon_sym___cdecl] = ACTIONS(1581), - [anon_sym___clrcall] = ACTIONS(1581), - [anon_sym___stdcall] = ACTIONS(1581), - [anon_sym___fastcall] = ACTIONS(1581), - [anon_sym___thiscall] = ACTIONS(1581), - [anon_sym___vectorcall] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_RBRACE] = ACTIONS(1583), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1581), - [anon_sym_register] = ACTIONS(1581), - [anon_sym_inline] = ACTIONS(1581), - [anon_sym_thread_local] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1581), - [anon_sym_volatile] = ACTIONS(1581), - [anon_sym_restrict] = ACTIONS(1581), - [anon_sym__Atomic] = ACTIONS(1581), - [anon_sym_mutable] = ACTIONS(1581), - [anon_sym_constexpr] = ACTIONS(1581), - [anon_sym_signed] = ACTIONS(1581), - [anon_sym_unsigned] = ACTIONS(1581), - [anon_sym_long] = ACTIONS(1581), - [anon_sym_short] = ACTIONS(1581), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_enum] = ACTIONS(1581), - [anon_sym_class] = ACTIONS(1581), - [anon_sym_struct] = ACTIONS(1581), - [anon_sym_union] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_else] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1581), - [anon_sym_case] = ACTIONS(1581), - [anon_sym_default] = ACTIONS(1581), - [anon_sym_while] = ACTIONS(1581), - [anon_sym_do] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1581), - [anon_sym_break] = ACTIONS(1581), - [anon_sym_continue] = ACTIONS(1581), - [anon_sym_goto] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(1583), - [anon_sym_L_SQUOTE] = ACTIONS(1583), - [anon_sym_u_SQUOTE] = ACTIONS(1583), - [anon_sym_U_SQUOTE] = ACTIONS(1583), - [anon_sym_u8_SQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1583), - [anon_sym_L_DQUOTE] = ACTIONS(1583), - [anon_sym_u_DQUOTE] = ACTIONS(1583), - [anon_sym_U_DQUOTE] = ACTIONS(1583), - [anon_sym_u8_DQUOTE] = ACTIONS(1583), - [anon_sym_DQUOTE] = ACTIONS(1583), - [sym_true] = ACTIONS(1581), - [sym_false] = ACTIONS(1581), - [sym_null] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1581), - [anon_sym_virtual] = ACTIONS(1581), - [anon_sym_explicit] = ACTIONS(1581), - [sym_auto] = ACTIONS(1581), - [anon_sym_typename] = ACTIONS(1581), - [anon_sym_template] = ACTIONS(1581), - [anon_sym_operator] = ACTIONS(1581), - [anon_sym_delete] = ACTIONS(1581), - [anon_sym_throw] = ACTIONS(1581), - [anon_sym_namespace] = ACTIONS(1581), - [anon_sym_using] = ACTIONS(1581), - [anon_sym_static_assert] = ACTIONS(1581), - [anon_sym_co_return] = ACTIONS(1581), - [anon_sym_co_yield] = ACTIONS(1581), - [anon_sym_try] = ACTIONS(1581), - [anon_sym_co_await] = ACTIONS(1581), - [anon_sym_new] = ACTIONS(1581), - [sym_this] = ACTIONS(1581), - [sym_nullptr] = ACTIONS(1581), - [sym_alone_macro] = ACTIONS(1583), - [aux_sym_alone_macro_call_token1] = ACTIONS(1581), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_FORWARD] = ACTIONS(1581), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1581), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_PS_GET] = ACTIONS(1581), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1581), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1581), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1581), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1581), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1581), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1581), - [anon_sym_MOZ_COLD] = ACTIONS(1581), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1581), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1581), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1581), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1581), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1581), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1581), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1581), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1581), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1581), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1581), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1581), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1581), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1581), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_NONNULL] = ACTIONS(1581), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1581), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1581), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1581), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1581), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1581), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1581), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1581), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1581), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1581), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1581), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1581), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1581), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1581), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1581), - [anon_sym_MOZ_RAII] = ACTIONS(1581), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1581), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1581), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1581), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1581), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1581), - [sym_raw_string_literal] = ACTIONS(1583), - }, - [501] = { - [sym_identifier] = ACTIONS(1615), - [aux_sym_preproc_include_token1] = ACTIONS(1615), - [aux_sym_preproc_def_token1] = ACTIONS(1615), - [aux_sym_preproc_if_token1] = ACTIONS(1615), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1615), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1615), - [sym_preproc_directive] = ACTIONS(1615), - [anon_sym_LPAREN2] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1617), - [anon_sym_AMP_AMP] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1615), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_typedef] = ACTIONS(1615), - [anon_sym_extern] = ACTIONS(1615), - [anon_sym___attribute__] = ACTIONS(1615), - [anon_sym_COLON_COLON] = ACTIONS(1617), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1617), - [anon_sym___declspec] = ACTIONS(1615), - [anon_sym___based] = ACTIONS(1615), - [anon_sym___cdecl] = ACTIONS(1615), - [anon_sym___clrcall] = ACTIONS(1615), - [anon_sym___stdcall] = ACTIONS(1615), - [anon_sym___fastcall] = ACTIONS(1615), - [anon_sym___thiscall] = ACTIONS(1615), - [anon_sym___vectorcall] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_RBRACE] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_register] = ACTIONS(1615), - [anon_sym_inline] = ACTIONS(1615), - [anon_sym_thread_local] = ACTIONS(1615), - [anon_sym_const] = ACTIONS(1615), - [anon_sym_volatile] = ACTIONS(1615), - [anon_sym_restrict] = ACTIONS(1615), - [anon_sym__Atomic] = ACTIONS(1615), - [anon_sym_mutable] = ACTIONS(1615), - [anon_sym_constexpr] = ACTIONS(1615), - [anon_sym_signed] = ACTIONS(1615), - [anon_sym_unsigned] = ACTIONS(1615), - [anon_sym_long] = ACTIONS(1615), - [anon_sym_short] = ACTIONS(1615), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1615), - [anon_sym_class] = ACTIONS(1615), - [anon_sym_struct] = ACTIONS(1615), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_if] = ACTIONS(1615), - [anon_sym_else] = ACTIONS(2001), - [anon_sym_switch] = ACTIONS(1615), - [anon_sym_case] = ACTIONS(1615), - [anon_sym_default] = ACTIONS(1615), - [anon_sym_while] = ACTIONS(1615), - [anon_sym_do] = ACTIONS(1615), - [anon_sym_for] = ACTIONS(1615), - [anon_sym_return] = ACTIONS(1615), - [anon_sym_break] = ACTIONS(1615), - [anon_sym_continue] = ACTIONS(1615), - [anon_sym_goto] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_sizeof] = ACTIONS(1615), - [sym_number_literal] = ACTIONS(1617), - [anon_sym_L_SQUOTE] = ACTIONS(1617), - [anon_sym_u_SQUOTE] = ACTIONS(1617), - [anon_sym_U_SQUOTE] = ACTIONS(1617), - [anon_sym_u8_SQUOTE] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_L_DQUOTE] = ACTIONS(1617), - [anon_sym_u_DQUOTE] = ACTIONS(1617), - [anon_sym_U_DQUOTE] = ACTIONS(1617), - [anon_sym_u8_DQUOTE] = ACTIONS(1617), - [anon_sym_DQUOTE] = ACTIONS(1617), - [sym_true] = ACTIONS(1615), - [sym_false] = ACTIONS(1615), - [sym_null] = ACTIONS(1615), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1615), - [anon_sym_virtual] = ACTIONS(1615), - [anon_sym_explicit] = ACTIONS(1615), - [sym_auto] = ACTIONS(1615), - [anon_sym_typename] = ACTIONS(1615), - [anon_sym_template] = ACTIONS(1615), - [anon_sym_operator] = ACTIONS(1615), - [anon_sym_delete] = ACTIONS(1615), - [anon_sym_throw] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1615), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_static_assert] = ACTIONS(1615), - [anon_sym_co_return] = ACTIONS(1615), - [anon_sym_co_yield] = ACTIONS(1615), - [anon_sym_try] = ACTIONS(1615), - [anon_sym_co_await] = ACTIONS(1615), - [anon_sym_new] = ACTIONS(1615), - [sym_this] = ACTIONS(1615), - [sym_nullptr] = ACTIONS(1615), - [sym_alone_macro] = ACTIONS(1617), - [aux_sym_alone_macro_call_token1] = ACTIONS(1615), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_FORWARD] = ACTIONS(1615), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1615), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_PS_GET] = ACTIONS(1615), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1615), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1615), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1615), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1615), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1615), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1615), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1615), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1615), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1615), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1615), - [anon_sym_MOZ_COLD] = ACTIONS(1615), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1615), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1615), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1615), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1615), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1615), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1615), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1615), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1615), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1615), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1615), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1615), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1615), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1615), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1615), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1615), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1615), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1615), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1615), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1615), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1615), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_NONNULL] = ACTIONS(1615), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1615), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1615), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1615), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1615), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1615), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_NORETURN] = ACTIONS(1615), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1615), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1615), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1615), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1615), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1615), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1615), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1615), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1615), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1615), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1615), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1615), - [anon_sym_MOZ_RAII] = ACTIONS(1615), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1615), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1615), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1615), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1615), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1615), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1615), - [sym_raw_string_literal] = ACTIONS(1617), - }, - [502] = { - [ts_builtin_sym_end] = ACTIONS(1693), - [sym_identifier] = ACTIONS(1691), - [aux_sym_preproc_include_token1] = ACTIONS(1691), - [aux_sym_preproc_def_token1] = ACTIONS(1691), - [aux_sym_preproc_if_token1] = ACTIONS(1691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1691), - [sym_preproc_directive] = ACTIONS(1691), - [anon_sym_LPAREN2] = ACTIONS(1693), - [anon_sym_BANG] = ACTIONS(1693), - [anon_sym_TILDE] = ACTIONS(1693), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_PLUS] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(1693), - [anon_sym_AMP_AMP] = ACTIONS(1693), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_typedef] = ACTIONS(1691), - [anon_sym_extern] = ACTIONS(1691), - [anon_sym___attribute__] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1693), - [anon_sym___declspec] = ACTIONS(1691), - [anon_sym___based] = ACTIONS(1691), - [anon_sym___cdecl] = ACTIONS(1691), - [anon_sym___clrcall] = ACTIONS(1691), - [anon_sym___stdcall] = ACTIONS(1691), - [anon_sym___fastcall] = ACTIONS(1691), - [anon_sym___thiscall] = ACTIONS(1691), - [anon_sym___vectorcall] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_LBRACK] = ACTIONS(1691), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_register] = ACTIONS(1691), - [anon_sym_inline] = ACTIONS(1691), - [anon_sym_thread_local] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(1691), - [anon_sym_volatile] = ACTIONS(1691), - [anon_sym_restrict] = ACTIONS(1691), - [anon_sym__Atomic] = ACTIONS(1691), - [anon_sym_mutable] = ACTIONS(1691), - [anon_sym_constexpr] = ACTIONS(1691), - [anon_sym_signed] = ACTIONS(1691), - [anon_sym_unsigned] = ACTIONS(1691), - [anon_sym_long] = ACTIONS(1691), - [anon_sym_short] = ACTIONS(1691), - [sym_primitive_type] = ACTIONS(1691), - [anon_sym_enum] = ACTIONS(1691), - [anon_sym_class] = ACTIONS(1691), - [anon_sym_struct] = ACTIONS(1691), - [anon_sym_union] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1691), - [anon_sym_else] = ACTIONS(1691), - [anon_sym_switch] = ACTIONS(1691), - [anon_sym_case] = ACTIONS(1691), - [anon_sym_default] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1691), - [anon_sym_do] = ACTIONS(1691), - [anon_sym_for] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_goto] = ACTIONS(1691), - [anon_sym_DASH_DASH] = ACTIONS(1693), - [anon_sym_PLUS_PLUS] = ACTIONS(1693), - [anon_sym_sizeof] = ACTIONS(1691), - [sym_number_literal] = ACTIONS(1693), - [anon_sym_L_SQUOTE] = ACTIONS(1693), - [anon_sym_u_SQUOTE] = ACTIONS(1693), - [anon_sym_U_SQUOTE] = ACTIONS(1693), - [anon_sym_u8_SQUOTE] = ACTIONS(1693), - [anon_sym_SQUOTE] = ACTIONS(1693), - [anon_sym_L_DQUOTE] = ACTIONS(1693), - [anon_sym_u_DQUOTE] = ACTIONS(1693), - [anon_sym_U_DQUOTE] = ACTIONS(1693), - [anon_sym_u8_DQUOTE] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1693), - [sym_true] = ACTIONS(1691), - [sym_false] = ACTIONS(1691), - [sym_null] = ACTIONS(1691), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1691), - [anon_sym_virtual] = ACTIONS(1691), - [anon_sym_explicit] = ACTIONS(1691), - [sym_auto] = ACTIONS(1691), - [anon_sym_typename] = ACTIONS(1691), - [anon_sym_template] = ACTIONS(1691), - [anon_sym_operator] = ACTIONS(1691), - [anon_sym_delete] = ACTIONS(1691), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1691), - [anon_sym_using] = ACTIONS(1691), - [anon_sym_static_assert] = ACTIONS(1691), - [anon_sym_co_return] = ACTIONS(1691), - [anon_sym_co_yield] = ACTIONS(1691), - [anon_sym_try] = ACTIONS(1691), - [anon_sym_co_await] = ACTIONS(1691), - [anon_sym_new] = ACTIONS(1691), - [sym_this] = ACTIONS(1691), - [sym_nullptr] = ACTIONS(1691), - [sym_alone_macro] = ACTIONS(1693), - [aux_sym_alone_macro_call_token1] = ACTIONS(1691), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_FORWARD] = ACTIONS(1691), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1691), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_PS_GET] = ACTIONS(1691), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1691), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1691), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1691), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1691), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1691), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1691), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1691), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1691), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1691), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1691), - [anon_sym_MOZ_COLD] = ACTIONS(1691), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1691), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1691), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1691), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1691), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1691), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1691), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1691), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1691), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1691), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1691), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1691), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1691), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1691), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1691), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1691), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1691), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1691), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1691), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1691), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1691), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_NONNULL] = ACTIONS(1691), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1691), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1691), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1691), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1691), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1691), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_NORETURN] = ACTIONS(1691), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1691), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1691), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1691), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1691), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1691), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1691), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1691), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1691), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1691), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1691), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1691), - [anon_sym_MOZ_RAII] = ACTIONS(1691), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1691), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1691), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1691), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1691), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1691), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1691), - [sym_raw_string_literal] = ACTIONS(1693), - }, - [503] = { - [ts_builtin_sym_end] = ACTIONS(1669), - [sym_identifier] = ACTIONS(1667), - [aux_sym_preproc_include_token1] = ACTIONS(1667), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1667), - [sym_preproc_directive] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_BANG] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_typedef] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym___attribute__] = ACTIONS(1667), - [anon_sym_COLON_COLON] = ACTIONS(1669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1669), - [anon_sym___declspec] = ACTIONS(1667), - [anon_sym___based] = ACTIONS(1667), - [anon_sym___cdecl] = ACTIONS(1667), - [anon_sym___clrcall] = ACTIONS(1667), - [anon_sym___stdcall] = ACTIONS(1667), - [anon_sym___fastcall] = ACTIONS(1667), - [anon_sym___thiscall] = ACTIONS(1667), - [anon_sym___vectorcall] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_inline] = ACTIONS(1667), - [anon_sym_thread_local] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [anon_sym_volatile] = ACTIONS(1667), - [anon_sym_restrict] = ACTIONS(1667), - [anon_sym__Atomic] = ACTIONS(1667), - [anon_sym_mutable] = ACTIONS(1667), - [anon_sym_constexpr] = ACTIONS(1667), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [sym_primitive_type] = ACTIONS(1667), - [anon_sym_enum] = ACTIONS(1667), - [anon_sym_class] = ACTIONS(1667), - [anon_sym_struct] = ACTIONS(1667), - [anon_sym_union] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_switch] = ACTIONS(1667), - [anon_sym_case] = ACTIONS(1667), - [anon_sym_default] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_goto] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_sizeof] = ACTIONS(1667), - [sym_number_literal] = ACTIONS(1669), - [anon_sym_L_SQUOTE] = ACTIONS(1669), - [anon_sym_u_SQUOTE] = ACTIONS(1669), - [anon_sym_U_SQUOTE] = ACTIONS(1669), - [anon_sym_u8_SQUOTE] = ACTIONS(1669), - [anon_sym_SQUOTE] = ACTIONS(1669), - [anon_sym_L_DQUOTE] = ACTIONS(1669), - [anon_sym_u_DQUOTE] = ACTIONS(1669), - [anon_sym_U_DQUOTE] = ACTIONS(1669), - [anon_sym_u8_DQUOTE] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym_true] = ACTIONS(1667), - [sym_false] = ACTIONS(1667), - [sym_null] = ACTIONS(1667), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1667), - [anon_sym_virtual] = ACTIONS(1667), - [anon_sym_explicit] = ACTIONS(1667), - [sym_auto] = ACTIONS(1667), - [anon_sym_typename] = ACTIONS(1667), - [anon_sym_template] = ACTIONS(1667), - [anon_sym_operator] = ACTIONS(1667), - [anon_sym_delete] = ACTIONS(1667), - [anon_sym_throw] = ACTIONS(1667), - [anon_sym_namespace] = ACTIONS(1667), - [anon_sym_using] = ACTIONS(1667), - [anon_sym_static_assert] = ACTIONS(1667), - [anon_sym_co_return] = ACTIONS(1667), - [anon_sym_co_yield] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_co_await] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [sym_this] = ACTIONS(1667), - [sym_nullptr] = ACTIONS(1667), - [sym_alone_macro] = ACTIONS(1669), - [aux_sym_alone_macro_call_token1] = ACTIONS(1667), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_FORWARD] = ACTIONS(1667), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1667), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_PS_GET] = ACTIONS(1667), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1667), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1667), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1667), - [anon_sym_MOZ_COLD] = ACTIONS(1667), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1667), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1667), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1667), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1667), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1667), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1667), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1667), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1667), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1667), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1667), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1667), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1667), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_RAII] = ACTIONS(1667), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1667), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1667), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1667), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1667), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1667), - [sym_raw_string_literal] = ACTIONS(1669), - }, - [504] = { - [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_include_token1] = ACTIONS(1529), - [aux_sym_preproc_def_token1] = ACTIONS(1529), - [anon_sym_COMMA] = ACTIONS(1613), - [aux_sym_preproc_if_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), - [sym_preproc_directive] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym___attribute__] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1531), - [anon_sym___declspec] = ACTIONS(1529), - [anon_sym___based] = ACTIONS(1529), - [anon_sym___cdecl] = ACTIONS(1529), - [anon_sym___clrcall] = ACTIONS(1529), - [anon_sym___stdcall] = ACTIONS(1529), - [anon_sym___fastcall] = ACTIONS(1529), - [anon_sym___thiscall] = ACTIONS(1529), - [anon_sym___vectorcall] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [anon_sym_thread_local] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym__Atomic] = ACTIONS(1529), - [anon_sym_mutable] = ACTIONS(1529), - [anon_sym_constexpr] = ACTIONS(1529), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_class] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_case] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_goto] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_sizeof] = ACTIONS(1529), - [sym_number_literal] = ACTIONS(1531), - [anon_sym_L_SQUOTE] = ACTIONS(1531), - [anon_sym_u_SQUOTE] = ACTIONS(1531), - [anon_sym_U_SQUOTE] = ACTIONS(1531), - [anon_sym_u8_SQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1529), - [sym_false] = ACTIONS(1529), - [sym_null] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1529), - [anon_sym_virtual] = ACTIONS(1529), - [anon_sym_explicit] = ACTIONS(1529), - [sym_auto] = ACTIONS(1529), - [anon_sym_typename] = ACTIONS(1529), - [anon_sym_template] = ACTIONS(1529), - [anon_sym_operator] = ACTIONS(1529), - [anon_sym_delete] = ACTIONS(1529), - [anon_sym_throw] = ACTIONS(1529), - [anon_sym_namespace] = ACTIONS(1529), - [anon_sym_using] = ACTIONS(1529), - [anon_sym_static_assert] = ACTIONS(1529), - [anon_sym_co_return] = ACTIONS(1529), - [anon_sym_co_yield] = ACTIONS(1529), - [anon_sym_try] = ACTIONS(1529), - [anon_sym_co_await] = ACTIONS(1529), - [anon_sym_new] = ACTIONS(1529), - [sym_this] = ACTIONS(1529), - [sym_nullptr] = ACTIONS(1529), - [sym_alone_macro] = ACTIONS(1531), - [aux_sym_alone_macro_call_token1] = ACTIONS(1529), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_FORWARD] = ACTIONS(1529), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1529), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_PS_GET] = ACTIONS(1529), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1529), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1529), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1529), - [anon_sym_MOZ_COLD] = ACTIONS(1529), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1529), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1529), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1529), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1529), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1529), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1529), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1529), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1529), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1529), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1529), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1529), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1529), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_RAII] = ACTIONS(1529), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1529), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1529), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1529), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1529), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1529), - [sym_raw_string_literal] = ACTIONS(1531), - }, - [505] = { - [sym_identifier] = ACTIONS(1593), - [aux_sym_preproc_include_token1] = ACTIONS(1593), - [aux_sym_preproc_def_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1593), - [sym_preproc_directive] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_typedef] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym___attribute__] = ACTIONS(1593), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1593), - [anon_sym___based] = ACTIONS(1593), - [anon_sym___cdecl] = ACTIONS(1593), - [anon_sym___clrcall] = ACTIONS(1593), - [anon_sym___stdcall] = ACTIONS(1593), - [anon_sym___fastcall] = ACTIONS(1593), - [anon_sym___thiscall] = ACTIONS(1593), - [anon_sym___vectorcall] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_inline] = ACTIONS(1593), - [anon_sym_thread_local] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_volatile] = ACTIONS(1593), - [anon_sym_restrict] = ACTIONS(1593), - [anon_sym__Atomic] = ACTIONS(1593), - [anon_sym_mutable] = ACTIONS(1593), - [anon_sym_constexpr] = ACTIONS(1593), - [anon_sym_signed] = ACTIONS(1593), - [anon_sym_unsigned] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [sym_primitive_type] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_class] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_else] = ACTIONS(1593), - [anon_sym_switch] = ACTIONS(1593), - [anon_sym_case] = ACTIONS(1593), - [anon_sym_default] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_goto] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_PLUS_PLUS] = ACTIONS(1595), - [anon_sym_sizeof] = ACTIONS(1593), - [sym_number_literal] = ACTIONS(1595), - [anon_sym_L_SQUOTE] = ACTIONS(1595), - [anon_sym_u_SQUOTE] = ACTIONS(1595), - [anon_sym_U_SQUOTE] = ACTIONS(1595), - [anon_sym_u8_SQUOTE] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1595), - [anon_sym_L_DQUOTE] = ACTIONS(1595), - [anon_sym_u_DQUOTE] = ACTIONS(1595), - [anon_sym_U_DQUOTE] = ACTIONS(1595), - [anon_sym_u8_DQUOTE] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1593), - [anon_sym_virtual] = ACTIONS(1593), - [anon_sym_explicit] = ACTIONS(1593), - [sym_auto] = ACTIONS(1593), - [anon_sym_typename] = ACTIONS(1593), - [anon_sym_template] = ACTIONS(1593), - [anon_sym_operator] = ACTIONS(1593), - [anon_sym_delete] = ACTIONS(1593), - [anon_sym_throw] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1593), - [anon_sym_using] = ACTIONS(1593), - [anon_sym_static_assert] = ACTIONS(1593), - [anon_sym_co_return] = ACTIONS(1593), - [anon_sym_co_yield] = ACTIONS(1593), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_co_await] = ACTIONS(1593), - [anon_sym_new] = ACTIONS(1593), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), - [sym_alone_macro] = ACTIONS(1595), - [aux_sym_alone_macro_call_token1] = ACTIONS(1593), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_FORWARD] = ACTIONS(1593), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1593), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_PS_GET] = ACTIONS(1593), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1593), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1593), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1593), - [anon_sym_MOZ_COLD] = ACTIONS(1593), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1593), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1593), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1593), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1593), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1593), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1593), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1593), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1593), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1593), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1593), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1593), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1593), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_RAII] = ACTIONS(1593), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1593), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1593), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1593), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1593), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1593), - [sym_raw_string_literal] = ACTIONS(1595), - }, - [506] = { - [ts_builtin_sym_end] = ACTIONS(1697), - [sym_identifier] = ACTIONS(1695), - [aux_sym_preproc_include_token1] = ACTIONS(1695), - [aux_sym_preproc_def_token1] = ACTIONS(1695), - [aux_sym_preproc_if_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1695), - [sym_preproc_directive] = ACTIONS(1695), - [anon_sym_LPAREN2] = ACTIONS(1697), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1697), - [anon_sym_AMP_AMP] = ACTIONS(1697), - [anon_sym_AMP] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1697), - [anon_sym_typedef] = ACTIONS(1695), - [anon_sym_extern] = ACTIONS(1695), - [anon_sym___attribute__] = ACTIONS(1695), - [anon_sym_COLON_COLON] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1697), - [anon_sym___declspec] = ACTIONS(1695), - [anon_sym___based] = ACTIONS(1695), - [anon_sym___cdecl] = ACTIONS(1695), - [anon_sym___clrcall] = ACTIONS(1695), - [anon_sym___stdcall] = ACTIONS(1695), - [anon_sym___fastcall] = ACTIONS(1695), - [anon_sym___thiscall] = ACTIONS(1695), - [anon_sym___vectorcall] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_static] = ACTIONS(1695), - [anon_sym_register] = ACTIONS(1695), - [anon_sym_inline] = ACTIONS(1695), - [anon_sym_thread_local] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1695), - [anon_sym_volatile] = ACTIONS(1695), - [anon_sym_restrict] = ACTIONS(1695), - [anon_sym__Atomic] = ACTIONS(1695), - [anon_sym_mutable] = ACTIONS(1695), - [anon_sym_constexpr] = ACTIONS(1695), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1695), - [anon_sym_enum] = ACTIONS(1695), - [anon_sym_class] = ACTIONS(1695), - [anon_sym_struct] = ACTIONS(1695), - [anon_sym_union] = ACTIONS(1695), - [anon_sym_if] = ACTIONS(1695), - [anon_sym_else] = ACTIONS(1695), - [anon_sym_switch] = ACTIONS(1695), - [anon_sym_case] = ACTIONS(1695), - [anon_sym_default] = ACTIONS(1695), - [anon_sym_while] = ACTIONS(1695), - [anon_sym_do] = ACTIONS(1695), - [anon_sym_for] = ACTIONS(1695), - [anon_sym_return] = ACTIONS(1695), - [anon_sym_break] = ACTIONS(1695), - [anon_sym_continue] = ACTIONS(1695), - [anon_sym_goto] = ACTIONS(1695), - [anon_sym_DASH_DASH] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1697), - [anon_sym_sizeof] = ACTIONS(1695), - [sym_number_literal] = ACTIONS(1697), - [anon_sym_L_SQUOTE] = ACTIONS(1697), - [anon_sym_u_SQUOTE] = ACTIONS(1697), - [anon_sym_U_SQUOTE] = ACTIONS(1697), - [anon_sym_u8_SQUOTE] = ACTIONS(1697), - [anon_sym_SQUOTE] = ACTIONS(1697), - [anon_sym_L_DQUOTE] = ACTIONS(1697), - [anon_sym_u_DQUOTE] = ACTIONS(1697), - [anon_sym_U_DQUOTE] = ACTIONS(1697), - [anon_sym_u8_DQUOTE] = ACTIONS(1697), - [anon_sym_DQUOTE] = ACTIONS(1697), - [sym_true] = ACTIONS(1695), - [sym_false] = ACTIONS(1695), - [sym_null] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1695), - [anon_sym_virtual] = ACTIONS(1695), - [anon_sym_explicit] = ACTIONS(1695), - [sym_auto] = ACTIONS(1695), - [anon_sym_typename] = ACTIONS(1695), - [anon_sym_template] = ACTIONS(1695), - [anon_sym_operator] = ACTIONS(1695), - [anon_sym_delete] = ACTIONS(1695), - [anon_sym_throw] = ACTIONS(1695), - [anon_sym_namespace] = ACTIONS(1695), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_static_assert] = ACTIONS(1695), - [anon_sym_co_return] = ACTIONS(1695), - [anon_sym_co_yield] = ACTIONS(1695), - [anon_sym_try] = ACTIONS(1695), - [anon_sym_co_await] = ACTIONS(1695), - [anon_sym_new] = ACTIONS(1695), - [sym_this] = ACTIONS(1695), - [sym_nullptr] = ACTIONS(1695), - [sym_alone_macro] = ACTIONS(1697), - [aux_sym_alone_macro_call_token1] = ACTIONS(1695), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_FORWARD] = ACTIONS(1695), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1695), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_PS_GET] = ACTIONS(1695), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1695), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1695), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1695), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1695), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1695), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1695), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1695), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1695), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1695), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1695), - [anon_sym_MOZ_COLD] = ACTIONS(1695), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1695), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1695), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1695), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1695), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1695), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1695), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1695), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1695), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1695), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1695), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1695), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1695), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1695), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1695), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1695), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1695), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1695), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1695), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1695), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1695), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_NONNULL] = ACTIONS(1695), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1695), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1695), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1695), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1695), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1695), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_NORETURN] = ACTIONS(1695), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1695), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1695), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1695), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1695), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1695), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1695), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1695), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1695), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1695), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1695), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1695), - [anon_sym_MOZ_RAII] = ACTIONS(1695), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1695), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1695), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1695), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1695), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1695), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1695), - [sym_raw_string_literal] = ACTIONS(1697), - }, - [507] = { - [sym_identifier] = ACTIONS(1593), - [aux_sym_preproc_include_token1] = ACTIONS(1593), - [aux_sym_preproc_def_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1593), - [sym_preproc_directive] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_typedef] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym___attribute__] = ACTIONS(1593), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1593), - [anon_sym___based] = ACTIONS(1593), - [anon_sym___cdecl] = ACTIONS(1593), - [anon_sym___clrcall] = ACTIONS(1593), - [anon_sym___stdcall] = ACTIONS(1593), - [anon_sym___fastcall] = ACTIONS(1593), - [anon_sym___thiscall] = ACTIONS(1593), - [anon_sym___vectorcall] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_inline] = ACTIONS(1593), - [anon_sym_thread_local] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_volatile] = ACTIONS(1593), - [anon_sym_restrict] = ACTIONS(1593), - [anon_sym__Atomic] = ACTIONS(1593), - [anon_sym_mutable] = ACTIONS(1593), - [anon_sym_constexpr] = ACTIONS(1593), - [anon_sym_signed] = ACTIONS(1593), - [anon_sym_unsigned] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [sym_primitive_type] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_class] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_else] = ACTIONS(1593), - [anon_sym_switch] = ACTIONS(1593), - [anon_sym_case] = ACTIONS(1593), - [anon_sym_default] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_goto] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_PLUS_PLUS] = ACTIONS(1595), - [anon_sym_sizeof] = ACTIONS(1593), - [sym_number_literal] = ACTIONS(1595), - [anon_sym_L_SQUOTE] = ACTIONS(1595), - [anon_sym_u_SQUOTE] = ACTIONS(1595), - [anon_sym_U_SQUOTE] = ACTIONS(1595), - [anon_sym_u8_SQUOTE] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1595), - [anon_sym_L_DQUOTE] = ACTIONS(1595), - [anon_sym_u_DQUOTE] = ACTIONS(1595), - [anon_sym_U_DQUOTE] = ACTIONS(1595), - [anon_sym_u8_DQUOTE] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1593), - [anon_sym_virtual] = ACTIONS(1593), - [anon_sym_explicit] = ACTIONS(1593), - [sym_auto] = ACTIONS(1593), - [anon_sym_typename] = ACTIONS(1593), - [anon_sym_template] = ACTIONS(1593), - [anon_sym_operator] = ACTIONS(1593), - [anon_sym_delete] = ACTIONS(1593), - [anon_sym_throw] = ACTIONS(1593), - [anon_sym_namespace] = ACTIONS(1593), - [anon_sym_using] = ACTIONS(1593), - [anon_sym_static_assert] = ACTIONS(1593), - [anon_sym_co_return] = ACTIONS(1593), - [anon_sym_co_yield] = ACTIONS(1593), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_co_await] = ACTIONS(1593), - [anon_sym_new] = ACTIONS(1593), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), - [sym_alone_macro] = ACTIONS(1595), - [aux_sym_alone_macro_call_token1] = ACTIONS(1593), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_FORWARD] = ACTIONS(1593), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1593), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_PS_GET] = ACTIONS(1593), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1593), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1593), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1593), - [anon_sym_MOZ_COLD] = ACTIONS(1593), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1593), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1593), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1593), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1593), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1593), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1593), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1593), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1593), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1593), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1593), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1593), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1593), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_RAII] = ACTIONS(1593), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1593), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1593), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1593), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1593), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1593), - [sym_raw_string_literal] = ACTIONS(1595), - }, - [508] = { - [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_include_token1] = ACTIONS(1529), - [aux_sym_preproc_def_token1] = ACTIONS(1529), - [anon_sym_COMMA] = ACTIONS(1613), - [aux_sym_preproc_if_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), - [sym_preproc_directive] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym___attribute__] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1531), - [anon_sym___declspec] = ACTIONS(1529), - [anon_sym___based] = ACTIONS(1529), - [anon_sym___cdecl] = ACTIONS(1529), - [anon_sym___clrcall] = ACTIONS(1529), - [anon_sym___stdcall] = ACTIONS(1529), - [anon_sym___fastcall] = ACTIONS(1529), - [anon_sym___thiscall] = ACTIONS(1529), - [anon_sym___vectorcall] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [anon_sym_thread_local] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym__Atomic] = ACTIONS(1529), - [anon_sym_mutable] = ACTIONS(1529), - [anon_sym_constexpr] = ACTIONS(1529), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_class] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_case] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_goto] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_sizeof] = ACTIONS(1529), - [sym_number_literal] = ACTIONS(1531), - [anon_sym_L_SQUOTE] = ACTIONS(1531), - [anon_sym_u_SQUOTE] = ACTIONS(1531), - [anon_sym_U_SQUOTE] = ACTIONS(1531), - [anon_sym_u8_SQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1529), - [sym_false] = ACTIONS(1529), - [sym_null] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1529), - [anon_sym_virtual] = ACTIONS(1529), - [anon_sym_explicit] = ACTIONS(1529), - [sym_auto] = ACTIONS(1529), - [anon_sym_typename] = ACTIONS(1529), - [anon_sym_template] = ACTIONS(1529), - [anon_sym_operator] = ACTIONS(1529), - [anon_sym_delete] = ACTIONS(1529), - [anon_sym_throw] = ACTIONS(1529), - [anon_sym_namespace] = ACTIONS(1529), - [anon_sym_using] = ACTIONS(1529), - [anon_sym_static_assert] = ACTIONS(1529), - [anon_sym_co_return] = ACTIONS(1529), - [anon_sym_co_yield] = ACTIONS(1529), - [anon_sym_try] = ACTIONS(1529), - [anon_sym_co_await] = ACTIONS(1529), - [anon_sym_new] = ACTIONS(1529), - [sym_this] = ACTIONS(1529), - [sym_nullptr] = ACTIONS(1529), - [sym_alone_macro] = ACTIONS(1531), - [aux_sym_alone_macro_call_token1] = ACTIONS(1529), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_FORWARD] = ACTIONS(1529), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1529), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_PS_GET] = ACTIONS(1529), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1529), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1529), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1529), - [anon_sym_MOZ_COLD] = ACTIONS(1529), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1529), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1529), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1529), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1529), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1529), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1529), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1529), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1529), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1529), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1529), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1529), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1529), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_RAII] = ACTIONS(1529), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1529), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1529), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1529), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1529), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1529), - [sym_raw_string_literal] = ACTIONS(1531), - }, - [509] = { - [sym_identifier] = ACTIONS(1767), - [aux_sym_preproc_include_token1] = ACTIONS(1767), - [aux_sym_preproc_def_token1] = ACTIONS(1767), - [aux_sym_preproc_if_token1] = ACTIONS(1767), - [aux_sym_preproc_if_token2] = ACTIONS(1767), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1767), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1767), - [sym_preproc_directive] = ACTIONS(1767), - [anon_sym_LPAREN2] = ACTIONS(1769), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1767), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1769), - [anon_sym_AMP_AMP] = ACTIONS(1769), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_typedef] = ACTIONS(1767), - [anon_sym_extern] = ACTIONS(1767), - [anon_sym___attribute__] = ACTIONS(1767), - [anon_sym_COLON_COLON] = ACTIONS(1769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1769), - [anon_sym___declspec] = ACTIONS(1767), - [anon_sym___based] = ACTIONS(1767), - [anon_sym___cdecl] = ACTIONS(1767), - [anon_sym___clrcall] = ACTIONS(1767), - [anon_sym___stdcall] = ACTIONS(1767), - [anon_sym___fastcall] = ACTIONS(1767), - [anon_sym___thiscall] = ACTIONS(1767), - [anon_sym___vectorcall] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_static] = ACTIONS(1767), - [anon_sym_register] = ACTIONS(1767), - [anon_sym_inline] = ACTIONS(1767), - [anon_sym_thread_local] = ACTIONS(1767), - [anon_sym_const] = ACTIONS(1767), - [anon_sym_volatile] = ACTIONS(1767), - [anon_sym_restrict] = ACTIONS(1767), - [anon_sym__Atomic] = ACTIONS(1767), - [anon_sym_mutable] = ACTIONS(1767), - [anon_sym_constexpr] = ACTIONS(1767), - [anon_sym_signed] = ACTIONS(1767), - [anon_sym_unsigned] = ACTIONS(1767), - [anon_sym_long] = ACTIONS(1767), - [anon_sym_short] = ACTIONS(1767), - [sym_primitive_type] = ACTIONS(1767), - [anon_sym_enum] = ACTIONS(1767), - [anon_sym_class] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1767), - [anon_sym_union] = ACTIONS(1767), - [anon_sym_if] = ACTIONS(1767), - [anon_sym_switch] = ACTIONS(1767), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1767), - [anon_sym_while] = ACTIONS(1767), - [anon_sym_do] = ACTIONS(1767), - [anon_sym_for] = ACTIONS(1767), - [anon_sym_return] = ACTIONS(1767), - [anon_sym_break] = ACTIONS(1767), - [anon_sym_continue] = ACTIONS(1767), - [anon_sym_goto] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_sizeof] = ACTIONS(1767), - [sym_number_literal] = ACTIONS(1769), - [anon_sym_L_SQUOTE] = ACTIONS(1769), - [anon_sym_u_SQUOTE] = ACTIONS(1769), - [anon_sym_U_SQUOTE] = ACTIONS(1769), - [anon_sym_u8_SQUOTE] = ACTIONS(1769), - [anon_sym_SQUOTE] = ACTIONS(1769), - [anon_sym_L_DQUOTE] = ACTIONS(1769), - [anon_sym_u_DQUOTE] = ACTIONS(1769), - [anon_sym_U_DQUOTE] = ACTIONS(1769), - [anon_sym_u8_DQUOTE] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [sym_true] = ACTIONS(1767), - [sym_false] = ACTIONS(1767), - [sym_null] = ACTIONS(1767), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1767), - [anon_sym_virtual] = ACTIONS(1767), - [anon_sym_explicit] = ACTIONS(1767), - [sym_auto] = ACTIONS(1767), - [anon_sym_typename] = ACTIONS(1767), - [anon_sym_template] = ACTIONS(1767), - [anon_sym_operator] = ACTIONS(1767), - [anon_sym_delete] = ACTIONS(1767), - [anon_sym_throw] = ACTIONS(1767), - [anon_sym_namespace] = ACTIONS(1767), - [anon_sym_using] = ACTIONS(1767), - [anon_sym_static_assert] = ACTIONS(1767), - [anon_sym_co_return] = ACTIONS(1767), - [anon_sym_co_yield] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1767), - [anon_sym_co_await] = ACTIONS(1767), - [anon_sym_new] = ACTIONS(1767), - [sym_this] = ACTIONS(1767), - [sym_nullptr] = ACTIONS(1767), - [sym_alone_macro] = ACTIONS(1769), - [aux_sym_alone_macro_call_token1] = ACTIONS(1767), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1767), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_FORWARD] = ACTIONS(1767), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1767), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1767), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1767), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1767), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_PS_GET] = ACTIONS(1767), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1767), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1767), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1767), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1767), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1767), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1767), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1767), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1767), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1767), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1767), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1767), - [anon_sym_MOZ_COLD] = ACTIONS(1767), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1767), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1767), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1767), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1767), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1767), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1767), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1767), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1767), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1767), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1767), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1767), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1767), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1767), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1767), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1767), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1767), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1767), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1767), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1767), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1767), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_NONNULL] = ACTIONS(1767), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1767), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1767), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1767), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1767), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1767), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_NORETURN] = ACTIONS(1767), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1767), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1767), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1767), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1767), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1767), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1767), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1767), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1767), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1767), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1767), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1767), - [anon_sym_MOZ_RAII] = ACTIONS(1767), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1767), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1767), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1767), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1767), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1767), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1767), - [sym_raw_string_literal] = ACTIONS(1769), - }, - [510] = { - [ts_builtin_sym_end] = ACTIONS(1769), - [sym_identifier] = ACTIONS(1767), - [aux_sym_preproc_include_token1] = ACTIONS(1767), - [aux_sym_preproc_def_token1] = ACTIONS(1767), - [aux_sym_preproc_if_token1] = ACTIONS(1767), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1767), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1767), - [sym_preproc_directive] = ACTIONS(1767), - [anon_sym_LPAREN2] = ACTIONS(1769), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1767), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1769), - [anon_sym_AMP_AMP] = ACTIONS(1769), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_typedef] = ACTIONS(1767), - [anon_sym_extern] = ACTIONS(1767), - [anon_sym___attribute__] = ACTIONS(1767), - [anon_sym_COLON_COLON] = ACTIONS(1769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1769), - [anon_sym___declspec] = ACTIONS(1767), - [anon_sym___based] = ACTIONS(1767), - [anon_sym___cdecl] = ACTIONS(1767), - [anon_sym___clrcall] = ACTIONS(1767), - [anon_sym___stdcall] = ACTIONS(1767), - [anon_sym___fastcall] = ACTIONS(1767), - [anon_sym___thiscall] = ACTIONS(1767), - [anon_sym___vectorcall] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_static] = ACTIONS(1767), - [anon_sym_register] = ACTIONS(1767), - [anon_sym_inline] = ACTIONS(1767), - [anon_sym_thread_local] = ACTIONS(1767), - [anon_sym_const] = ACTIONS(1767), - [anon_sym_volatile] = ACTIONS(1767), - [anon_sym_restrict] = ACTIONS(1767), - [anon_sym__Atomic] = ACTIONS(1767), - [anon_sym_mutable] = ACTIONS(1767), - [anon_sym_constexpr] = ACTIONS(1767), - [anon_sym_signed] = ACTIONS(1767), - [anon_sym_unsigned] = ACTIONS(1767), - [anon_sym_long] = ACTIONS(1767), - [anon_sym_short] = ACTIONS(1767), - [sym_primitive_type] = ACTIONS(1767), - [anon_sym_enum] = ACTIONS(1767), - [anon_sym_class] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1767), - [anon_sym_union] = ACTIONS(1767), - [anon_sym_if] = ACTIONS(1767), - [anon_sym_switch] = ACTIONS(1767), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1767), - [anon_sym_while] = ACTIONS(1767), - [anon_sym_do] = ACTIONS(1767), - [anon_sym_for] = ACTIONS(1767), - [anon_sym_return] = ACTIONS(1767), - [anon_sym_break] = ACTIONS(1767), - [anon_sym_continue] = ACTIONS(1767), - [anon_sym_goto] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_sizeof] = ACTIONS(1767), - [sym_number_literal] = ACTIONS(1769), - [anon_sym_L_SQUOTE] = ACTIONS(1769), - [anon_sym_u_SQUOTE] = ACTIONS(1769), - [anon_sym_U_SQUOTE] = ACTIONS(1769), - [anon_sym_u8_SQUOTE] = ACTIONS(1769), - [anon_sym_SQUOTE] = ACTIONS(1769), - [anon_sym_L_DQUOTE] = ACTIONS(1769), - [anon_sym_u_DQUOTE] = ACTIONS(1769), - [anon_sym_U_DQUOTE] = ACTIONS(1769), - [anon_sym_u8_DQUOTE] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [sym_true] = ACTIONS(1767), - [sym_false] = ACTIONS(1767), - [sym_null] = ACTIONS(1767), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1767), - [anon_sym_virtual] = ACTIONS(1767), - [anon_sym_explicit] = ACTIONS(1767), - [sym_auto] = ACTIONS(1767), - [anon_sym_typename] = ACTIONS(1767), - [anon_sym_template] = ACTIONS(1767), - [anon_sym_operator] = ACTIONS(1767), - [anon_sym_delete] = ACTIONS(1767), - [anon_sym_throw] = ACTIONS(1767), - [anon_sym_namespace] = ACTIONS(1767), - [anon_sym_using] = ACTIONS(1767), - [anon_sym_static_assert] = ACTIONS(1767), - [anon_sym_co_return] = ACTIONS(1767), - [anon_sym_co_yield] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1767), - [anon_sym_co_await] = ACTIONS(1767), - [anon_sym_new] = ACTIONS(1767), - [sym_this] = ACTIONS(1767), - [sym_nullptr] = ACTIONS(1767), - [sym_alone_macro] = ACTIONS(1769), - [aux_sym_alone_macro_call_token1] = ACTIONS(1767), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1767), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_FORWARD] = ACTIONS(1767), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1767), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1767), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1767), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1767), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_PS_GET] = ACTIONS(1767), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1767), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1767), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1767), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1767), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1767), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1767), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1767), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1767), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1767), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1767), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1767), - [anon_sym_MOZ_COLD] = ACTIONS(1767), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1767), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1767), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1767), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1767), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1767), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1767), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1767), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1767), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1767), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1767), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1767), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1767), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1767), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1767), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1767), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1767), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1767), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1767), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1767), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1767), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_NONNULL] = ACTIONS(1767), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1767), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1767), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1767), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1767), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1767), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_NORETURN] = ACTIONS(1767), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1767), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1767), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1767), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1767), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1767), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1767), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1767), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1767), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1767), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1767), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1767), - [anon_sym_MOZ_RAII] = ACTIONS(1767), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1767), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1767), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1767), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1767), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1767), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1767), - [sym_raw_string_literal] = ACTIONS(1769), - }, - [511] = { - [sym_identifier] = ACTIONS(1719), - [aux_sym_preproc_include_token1] = ACTIONS(1719), - [aux_sym_preproc_def_token1] = ACTIONS(1719), - [aux_sym_preproc_if_token1] = ACTIONS(1719), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1719), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1719), - [sym_preproc_directive] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(1721), - [anon_sym_BANG] = ACTIONS(1721), - [anon_sym_TILDE] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_typedef] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym___attribute__] = ACTIONS(1719), - [anon_sym_COLON_COLON] = ACTIONS(1721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1721), - [anon_sym___declspec] = ACTIONS(1719), - [anon_sym___based] = ACTIONS(1719), - [anon_sym___cdecl] = ACTIONS(1719), - [anon_sym___clrcall] = ACTIONS(1719), - [anon_sym___stdcall] = ACTIONS(1719), - [anon_sym___fastcall] = ACTIONS(1719), - [anon_sym___thiscall] = ACTIONS(1719), - [anon_sym___vectorcall] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_register] = ACTIONS(1719), - [anon_sym_inline] = ACTIONS(1719), - [anon_sym_thread_local] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_volatile] = ACTIONS(1719), - [anon_sym_restrict] = ACTIONS(1719), - [anon_sym__Atomic] = ACTIONS(1719), - [anon_sym_mutable] = ACTIONS(1719), - [anon_sym_constexpr] = ACTIONS(1719), - [anon_sym_signed] = ACTIONS(1719), - [anon_sym_unsigned] = ACTIONS(1719), - [anon_sym_long] = ACTIONS(1719), - [anon_sym_short] = ACTIONS(1719), - [sym_primitive_type] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), - [anon_sym_class] = ACTIONS(1719), - [anon_sym_struct] = ACTIONS(1719), - [anon_sym_union] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_switch] = ACTIONS(1719), - [anon_sym_case] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_goto] = ACTIONS(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1721), - [anon_sym_sizeof] = ACTIONS(1719), - [sym_number_literal] = ACTIONS(1721), - [anon_sym_L_SQUOTE] = ACTIONS(1721), - [anon_sym_u_SQUOTE] = ACTIONS(1721), - [anon_sym_U_SQUOTE] = ACTIONS(1721), - [anon_sym_u8_SQUOTE] = ACTIONS(1721), - [anon_sym_SQUOTE] = ACTIONS(1721), - [anon_sym_L_DQUOTE] = ACTIONS(1721), - [anon_sym_u_DQUOTE] = ACTIONS(1721), - [anon_sym_U_DQUOTE] = ACTIONS(1721), - [anon_sym_u8_DQUOTE] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1719), - [anon_sym_virtual] = ACTIONS(1719), - [anon_sym_explicit] = ACTIONS(1719), - [sym_auto] = ACTIONS(1719), - [anon_sym_typename] = ACTIONS(1719), - [anon_sym_template] = ACTIONS(1719), - [anon_sym_operator] = ACTIONS(1719), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_throw] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1719), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_static_assert] = ACTIONS(1719), - [anon_sym_co_return] = ACTIONS(1719), - [anon_sym_co_yield] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_co_await] = ACTIONS(1719), - [anon_sym_new] = ACTIONS(1719), - [sym_this] = ACTIONS(1719), - [sym_nullptr] = ACTIONS(1719), - [sym_alone_macro] = ACTIONS(1721), - [aux_sym_alone_macro_call_token1] = ACTIONS(1719), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1719), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_FORWARD] = ACTIONS(1719), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1719), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1719), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1719), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1719), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_PS_GET] = ACTIONS(1719), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1719), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1719), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1719), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1719), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1719), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1719), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1719), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1719), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1719), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1719), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1719), - [anon_sym_MOZ_COLD] = ACTIONS(1719), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1719), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1719), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1719), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1719), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1719), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1719), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1719), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1719), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1719), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1719), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1719), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1719), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1719), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1719), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1719), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1719), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1719), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1719), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1719), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1719), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_NONNULL] = ACTIONS(1719), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1719), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1719), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1719), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1719), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1719), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_NORETURN] = ACTIONS(1719), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1719), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1719), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1719), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1719), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1719), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1719), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1719), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1719), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1719), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1719), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1719), - [anon_sym_MOZ_RAII] = ACTIONS(1719), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1719), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1719), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1719), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1719), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1719), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1719), - [sym_raw_string_literal] = ACTIONS(1721), - }, - [512] = { - [sym_identifier] = ACTIONS(1855), - [aux_sym_preproc_include_token1] = ACTIONS(1855), - [aux_sym_preproc_def_token1] = ACTIONS(1855), - [aux_sym_preproc_if_token1] = ACTIONS(1855), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1855), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1855), - [sym_preproc_directive] = ACTIONS(1855), - [anon_sym_LPAREN2] = ACTIONS(1857), - [anon_sym_BANG] = ACTIONS(1857), - [anon_sym_TILDE] = ACTIONS(1857), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1857), - [anon_sym_AMP_AMP] = ACTIONS(1857), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_SEMI] = ACTIONS(1857), - [anon_sym_typedef] = ACTIONS(1855), - [anon_sym_extern] = ACTIONS(1855), - [anon_sym___attribute__] = ACTIONS(1855), - [anon_sym_COLON_COLON] = ACTIONS(1857), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1857), - [anon_sym___declspec] = ACTIONS(1855), - [anon_sym___based] = ACTIONS(1855), - [anon_sym___cdecl] = ACTIONS(1855), - [anon_sym___clrcall] = ACTIONS(1855), - [anon_sym___stdcall] = ACTIONS(1855), - [anon_sym___fastcall] = ACTIONS(1855), - [anon_sym___thiscall] = ACTIONS(1855), - [anon_sym___vectorcall] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1857), - [anon_sym_RBRACE] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_register] = ACTIONS(1855), - [anon_sym_inline] = ACTIONS(1855), - [anon_sym_thread_local] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_volatile] = ACTIONS(1855), - [anon_sym_restrict] = ACTIONS(1855), - [anon_sym__Atomic] = ACTIONS(1855), - [anon_sym_mutable] = ACTIONS(1855), - [anon_sym_constexpr] = ACTIONS(1855), - [anon_sym_signed] = ACTIONS(1855), - [anon_sym_unsigned] = ACTIONS(1855), - [anon_sym_long] = ACTIONS(1855), - [anon_sym_short] = ACTIONS(1855), - [sym_primitive_type] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), - [anon_sym_class] = ACTIONS(1855), - [anon_sym_struct] = ACTIONS(1855), - [anon_sym_union] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(1855), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_goto] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1857), - [anon_sym_PLUS_PLUS] = ACTIONS(1857), - [anon_sym_sizeof] = ACTIONS(1855), - [sym_number_literal] = ACTIONS(1857), - [anon_sym_L_SQUOTE] = ACTIONS(1857), - [anon_sym_u_SQUOTE] = ACTIONS(1857), - [anon_sym_U_SQUOTE] = ACTIONS(1857), - [anon_sym_u8_SQUOTE] = ACTIONS(1857), - [anon_sym_SQUOTE] = ACTIONS(1857), - [anon_sym_L_DQUOTE] = ACTIONS(1857), - [anon_sym_u_DQUOTE] = ACTIONS(1857), - [anon_sym_U_DQUOTE] = ACTIONS(1857), - [anon_sym_u8_DQUOTE] = ACTIONS(1857), - [anon_sym_DQUOTE] = ACTIONS(1857), - [sym_true] = ACTIONS(1855), - [sym_false] = ACTIONS(1855), - [sym_null] = ACTIONS(1855), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1855), - [anon_sym_virtual] = ACTIONS(1855), - [anon_sym_explicit] = ACTIONS(1855), - [sym_auto] = ACTIONS(1855), - [anon_sym_typename] = ACTIONS(1855), - [anon_sym_template] = ACTIONS(1855), - [anon_sym_operator] = ACTIONS(1855), - [anon_sym_delete] = ACTIONS(1855), - [anon_sym_throw] = ACTIONS(1855), - [anon_sym_namespace] = ACTIONS(1855), - [anon_sym_using] = ACTIONS(1855), - [anon_sym_static_assert] = ACTIONS(1855), - [anon_sym_co_return] = ACTIONS(1855), - [anon_sym_co_yield] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_co_await] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1855), - [sym_this] = ACTIONS(1855), - [sym_nullptr] = ACTIONS(1855), - [sym_alone_macro] = ACTIONS(1857), - [aux_sym_alone_macro_call_token1] = ACTIONS(1855), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1855), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_FORWARD] = ACTIONS(1855), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1855), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1855), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1855), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1855), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_PS_GET] = ACTIONS(1855), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1855), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1855), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1855), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1855), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1855), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1855), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1855), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1855), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1855), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1855), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1855), - [anon_sym_MOZ_COLD] = ACTIONS(1855), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1855), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1855), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1855), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1855), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1855), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1855), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1855), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1855), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1855), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1855), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1855), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1855), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1855), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1855), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1855), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1855), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1855), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1855), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1855), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1855), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_NONNULL] = ACTIONS(1855), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1855), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1855), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1855), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1855), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1855), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_NORETURN] = ACTIONS(1855), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1855), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1855), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1855), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1855), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1855), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1855), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1855), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1855), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1855), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1855), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1855), - [anon_sym_MOZ_RAII] = ACTIONS(1855), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1855), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1855), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1855), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1855), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1855), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1855), - [sym_raw_string_literal] = ACTIONS(1857), - }, - [513] = { - [sym_identifier] = ACTIONS(1723), - [aux_sym_preproc_include_token1] = ACTIONS(1723), - [aux_sym_preproc_def_token1] = ACTIONS(1723), - [aux_sym_preproc_if_token1] = ACTIONS(1723), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1723), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1723), - [sym_preproc_directive] = ACTIONS(1723), - [anon_sym_LPAREN2] = ACTIONS(1725), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1725), - [anon_sym_typedef] = ACTIONS(1723), - [anon_sym_extern] = ACTIONS(1723), - [anon_sym___attribute__] = ACTIONS(1723), - [anon_sym_COLON_COLON] = ACTIONS(1725), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1725), - [anon_sym___declspec] = ACTIONS(1723), - [anon_sym___based] = ACTIONS(1723), - [anon_sym___cdecl] = ACTIONS(1723), - [anon_sym___clrcall] = ACTIONS(1723), - [anon_sym___stdcall] = ACTIONS(1723), - [anon_sym___fastcall] = ACTIONS(1723), - [anon_sym___thiscall] = ACTIONS(1723), - [anon_sym___vectorcall] = ACTIONS(1723), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_static] = ACTIONS(1723), - [anon_sym_register] = ACTIONS(1723), - [anon_sym_inline] = ACTIONS(1723), - [anon_sym_thread_local] = ACTIONS(1723), - [anon_sym_const] = ACTIONS(1723), - [anon_sym_volatile] = ACTIONS(1723), - [anon_sym_restrict] = ACTIONS(1723), - [anon_sym__Atomic] = ACTIONS(1723), - [anon_sym_mutable] = ACTIONS(1723), - [anon_sym_constexpr] = ACTIONS(1723), - [anon_sym_signed] = ACTIONS(1723), - [anon_sym_unsigned] = ACTIONS(1723), - [anon_sym_long] = ACTIONS(1723), - [anon_sym_short] = ACTIONS(1723), - [sym_primitive_type] = ACTIONS(1723), - [anon_sym_enum] = ACTIONS(1723), - [anon_sym_class] = ACTIONS(1723), - [anon_sym_struct] = ACTIONS(1723), - [anon_sym_union] = ACTIONS(1723), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_switch] = ACTIONS(1723), - [anon_sym_case] = ACTIONS(1723), - [anon_sym_default] = ACTIONS(1723), - [anon_sym_while] = ACTIONS(1723), - [anon_sym_do] = ACTIONS(1723), - [anon_sym_for] = ACTIONS(1723), - [anon_sym_return] = ACTIONS(1723), - [anon_sym_break] = ACTIONS(1723), - [anon_sym_continue] = ACTIONS(1723), - [anon_sym_goto] = ACTIONS(1723), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_sizeof] = ACTIONS(1723), - [sym_number_literal] = ACTIONS(1725), - [anon_sym_L_SQUOTE] = ACTIONS(1725), - [anon_sym_u_SQUOTE] = ACTIONS(1725), - [anon_sym_U_SQUOTE] = ACTIONS(1725), - [anon_sym_u8_SQUOTE] = ACTIONS(1725), - [anon_sym_SQUOTE] = ACTIONS(1725), - [anon_sym_L_DQUOTE] = ACTIONS(1725), - [anon_sym_u_DQUOTE] = ACTIONS(1725), - [anon_sym_U_DQUOTE] = ACTIONS(1725), - [anon_sym_u8_DQUOTE] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym_true] = ACTIONS(1723), - [sym_false] = ACTIONS(1723), - [sym_null] = ACTIONS(1723), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1723), - [anon_sym_virtual] = ACTIONS(1723), - [anon_sym_explicit] = ACTIONS(1723), - [sym_auto] = ACTIONS(1723), - [anon_sym_typename] = ACTIONS(1723), - [anon_sym_template] = ACTIONS(1723), - [anon_sym_operator] = ACTIONS(1723), - [anon_sym_delete] = ACTIONS(1723), - [anon_sym_throw] = ACTIONS(1723), - [anon_sym_namespace] = ACTIONS(1723), - [anon_sym_using] = ACTIONS(1723), - [anon_sym_static_assert] = ACTIONS(1723), - [anon_sym_co_return] = ACTIONS(1723), - [anon_sym_co_yield] = ACTIONS(1723), - [anon_sym_try] = ACTIONS(1723), - [anon_sym_co_await] = ACTIONS(1723), - [anon_sym_new] = ACTIONS(1723), - [sym_this] = ACTIONS(1723), - [sym_nullptr] = ACTIONS(1723), - [sym_alone_macro] = ACTIONS(1725), - [aux_sym_alone_macro_call_token1] = ACTIONS(1723), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1723), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_FORWARD] = ACTIONS(1723), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1723), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1723), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1723), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1723), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_PS_GET] = ACTIONS(1723), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1723), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1723), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1723), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1723), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1723), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1723), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1723), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1723), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1723), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1723), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1723), - [anon_sym_MOZ_COLD] = ACTIONS(1723), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1723), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1723), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1723), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1723), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1723), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1723), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1723), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1723), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1723), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1723), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1723), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1723), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1723), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1723), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1723), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1723), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1723), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1723), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1723), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1723), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_NONNULL] = ACTIONS(1723), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1723), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1723), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1723), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1723), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1723), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_NORETURN] = ACTIONS(1723), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1723), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1723), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1723), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1723), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1723), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1723), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1723), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1723), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1723), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1723), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1723), - [anon_sym_MOZ_RAII] = ACTIONS(1723), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1723), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1723), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1723), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1723), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1723), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1723), - [sym_raw_string_literal] = ACTIONS(1725), - }, - [514] = { - [sym_identifier] = ACTIONS(1703), - [aux_sym_preproc_include_token1] = ACTIONS(1703), - [aux_sym_preproc_def_token1] = ACTIONS(1703), - [aux_sym_preproc_if_token1] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1703), - [sym_preproc_directive] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_typedef] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym___attribute__] = ACTIONS(1703), - [anon_sym_COLON_COLON] = ACTIONS(1705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1705), - [anon_sym___declspec] = ACTIONS(1703), - [anon_sym___based] = ACTIONS(1703), - [anon_sym___cdecl] = ACTIONS(1703), - [anon_sym___clrcall] = ACTIONS(1703), - [anon_sym___stdcall] = ACTIONS(1703), - [anon_sym___fastcall] = ACTIONS(1703), - [anon_sym___thiscall] = ACTIONS(1703), - [anon_sym___vectorcall] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_inline] = ACTIONS(1703), - [anon_sym_thread_local] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [anon_sym_volatile] = ACTIONS(1703), - [anon_sym_restrict] = ACTIONS(1703), - [anon_sym__Atomic] = ACTIONS(1703), - [anon_sym_mutable] = ACTIONS(1703), - [anon_sym_constexpr] = ACTIONS(1703), - [anon_sym_signed] = ACTIONS(1703), - [anon_sym_unsigned] = ACTIONS(1703), - [anon_sym_long] = ACTIONS(1703), - [anon_sym_short] = ACTIONS(1703), - [sym_primitive_type] = ACTIONS(1703), - [anon_sym_enum] = ACTIONS(1703), - [anon_sym_class] = ACTIONS(1703), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_switch] = ACTIONS(1703), - [anon_sym_case] = ACTIONS(1703), - [anon_sym_default] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_goto] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_PLUS_PLUS] = ACTIONS(1705), - [anon_sym_sizeof] = ACTIONS(1703), - [sym_number_literal] = ACTIONS(1705), - [anon_sym_L_SQUOTE] = ACTIONS(1705), - [anon_sym_u_SQUOTE] = ACTIONS(1705), - [anon_sym_U_SQUOTE] = ACTIONS(1705), - [anon_sym_u8_SQUOTE] = ACTIONS(1705), - [anon_sym_SQUOTE] = ACTIONS(1705), - [anon_sym_L_DQUOTE] = ACTIONS(1705), - [anon_sym_u_DQUOTE] = ACTIONS(1705), - [anon_sym_U_DQUOTE] = ACTIONS(1705), - [anon_sym_u8_DQUOTE] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym_true] = ACTIONS(1703), - [sym_false] = ACTIONS(1703), - [sym_null] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1703), - [anon_sym_virtual] = ACTIONS(1703), - [anon_sym_explicit] = ACTIONS(1703), - [sym_auto] = ACTIONS(1703), - [anon_sym_typename] = ACTIONS(1703), - [anon_sym_template] = ACTIONS(1703), - [anon_sym_operator] = ACTIONS(1703), - [anon_sym_delete] = ACTIONS(1703), - [anon_sym_throw] = ACTIONS(1703), - [anon_sym_namespace] = ACTIONS(1703), - [anon_sym_using] = ACTIONS(1703), - [anon_sym_static_assert] = ACTIONS(1703), - [anon_sym_co_return] = ACTIONS(1703), - [anon_sym_co_yield] = ACTIONS(1703), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_co_await] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [sym_this] = ACTIONS(1703), - [sym_nullptr] = ACTIONS(1703), - [sym_alone_macro] = ACTIONS(1705), - [aux_sym_alone_macro_call_token1] = ACTIONS(1703), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1703), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_FORWARD] = ACTIONS(1703), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1703), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1703), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1703), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1703), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_PS_GET] = ACTIONS(1703), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1703), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1703), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1703), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1703), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1703), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1703), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1703), - [anon_sym_MOZ_COLD] = ACTIONS(1703), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1703), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1703), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1703), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1703), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1703), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1703), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1703), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1703), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1703), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1703), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1703), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1703), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1703), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_NONNULL] = ACTIONS(1703), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1703), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1703), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1703), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1703), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1703), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1703), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1703), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1703), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1703), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1703), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1703), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1703), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1703), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1703), - [anon_sym_MOZ_RAII] = ACTIONS(1703), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1703), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1703), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1703), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1703), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1703), - [sym_raw_string_literal] = ACTIONS(1705), - }, - [515] = { - [sym_identifier] = ACTIONS(1711), - [aux_sym_preproc_include_token1] = ACTIONS(1711), - [aux_sym_preproc_def_token1] = ACTIONS(1711), - [aux_sym_preproc_if_token1] = ACTIONS(1711), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1711), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1711), - [sym_preproc_directive] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_BANG] = ACTIONS(1713), - [anon_sym_TILDE] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_typedef] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym___attribute__] = ACTIONS(1711), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), - [anon_sym___declspec] = ACTIONS(1711), - [anon_sym___based] = ACTIONS(1711), - [anon_sym___cdecl] = ACTIONS(1711), - [anon_sym___clrcall] = ACTIONS(1711), - [anon_sym___stdcall] = ACTIONS(1711), - [anon_sym___fastcall] = ACTIONS(1711), - [anon_sym___thiscall] = ACTIONS(1711), - [anon_sym___vectorcall] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_static] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_inline] = ACTIONS(1711), - [anon_sym_thread_local] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [anon_sym_volatile] = ACTIONS(1711), - [anon_sym_restrict] = ACTIONS(1711), - [anon_sym__Atomic] = ACTIONS(1711), - [anon_sym_mutable] = ACTIONS(1711), - [anon_sym_constexpr] = ACTIONS(1711), - [anon_sym_signed] = ACTIONS(1711), - [anon_sym_unsigned] = ACTIONS(1711), - [anon_sym_long] = ACTIONS(1711), - [anon_sym_short] = ACTIONS(1711), - [sym_primitive_type] = ACTIONS(1711), - [anon_sym_enum] = ACTIONS(1711), - [anon_sym_class] = ACTIONS(1711), - [anon_sym_struct] = ACTIONS(1711), - [anon_sym_union] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_switch] = ACTIONS(1711), - [anon_sym_case] = ACTIONS(1711), - [anon_sym_default] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_goto] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_sizeof] = ACTIONS(1711), - [sym_number_literal] = ACTIONS(1713), - [anon_sym_L_SQUOTE] = ACTIONS(1713), - [anon_sym_u_SQUOTE] = ACTIONS(1713), - [anon_sym_U_SQUOTE] = ACTIONS(1713), - [anon_sym_u8_SQUOTE] = ACTIONS(1713), - [anon_sym_SQUOTE] = ACTIONS(1713), - [anon_sym_L_DQUOTE] = ACTIONS(1713), - [anon_sym_u_DQUOTE] = ACTIONS(1713), - [anon_sym_U_DQUOTE] = ACTIONS(1713), - [anon_sym_u8_DQUOTE] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym_true] = ACTIONS(1711), - [sym_false] = ACTIONS(1711), - [sym_null] = ACTIONS(1711), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1711), - [anon_sym_virtual] = ACTIONS(1711), - [anon_sym_explicit] = ACTIONS(1711), - [sym_auto] = ACTIONS(1711), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(1711), - [anon_sym_operator] = ACTIONS(1711), - [anon_sym_delete] = ACTIONS(1711), - [anon_sym_throw] = ACTIONS(1711), - [anon_sym_namespace] = ACTIONS(1711), - [anon_sym_using] = ACTIONS(1711), - [anon_sym_static_assert] = ACTIONS(1711), - [anon_sym_co_return] = ACTIONS(1711), - [anon_sym_co_yield] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_co_await] = ACTIONS(1711), - [anon_sym_new] = ACTIONS(1711), - [sym_this] = ACTIONS(1711), - [sym_nullptr] = ACTIONS(1711), - [sym_alone_macro] = ACTIONS(1713), - [aux_sym_alone_macro_call_token1] = ACTIONS(1711), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1711), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_FORWARD] = ACTIONS(1711), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1711), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1711), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1711), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1711), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_PS_GET] = ACTIONS(1711), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1711), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1711), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1711), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1711), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1711), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1711), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1711), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1711), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1711), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1711), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1711), - [anon_sym_MOZ_COLD] = ACTIONS(1711), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1711), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1711), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1711), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1711), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1711), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1711), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1711), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1711), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1711), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1711), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1711), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1711), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1711), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1711), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1711), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1711), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1711), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1711), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1711), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1711), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_NONNULL] = ACTIONS(1711), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1711), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1711), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1711), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1711), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1711), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_NORETURN] = ACTIONS(1711), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1711), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1711), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1711), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1711), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1711), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1711), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1711), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1711), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1711), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1711), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1711), - [anon_sym_MOZ_RAII] = ACTIONS(1711), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1711), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1711), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1711), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1711), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1711), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1711), - [sym_raw_string_literal] = ACTIONS(1713), - }, - [516] = { - [sym_identifier] = ACTIONS(1891), - [aux_sym_preproc_include_token1] = ACTIONS(1891), - [aux_sym_preproc_def_token1] = ACTIONS(1891), - [aux_sym_preproc_if_token1] = ACTIONS(1891), - [aux_sym_preproc_if_token2] = ACTIONS(1891), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1891), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1891), - [sym_preproc_directive] = ACTIONS(1891), - [anon_sym_LPAREN2] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_TILDE] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_AMP_AMP] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_typedef] = ACTIONS(1891), - [anon_sym_extern] = ACTIONS(1891), - [anon_sym___attribute__] = ACTIONS(1891), - [anon_sym_COLON_COLON] = ACTIONS(1893), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), - [anon_sym___declspec] = ACTIONS(1891), - [anon_sym___based] = ACTIONS(1891), - [anon_sym___cdecl] = ACTIONS(1891), - [anon_sym___clrcall] = ACTIONS(1891), - [anon_sym___stdcall] = ACTIONS(1891), - [anon_sym___fastcall] = ACTIONS(1891), - [anon_sym___thiscall] = ACTIONS(1891), - [anon_sym___vectorcall] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_static] = ACTIONS(1891), - [anon_sym_register] = ACTIONS(1891), - [anon_sym_inline] = ACTIONS(1891), - [anon_sym_thread_local] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1891), - [anon_sym_volatile] = ACTIONS(1891), - [anon_sym_restrict] = ACTIONS(1891), - [anon_sym__Atomic] = ACTIONS(1891), - [anon_sym_mutable] = ACTIONS(1891), - [anon_sym_constexpr] = ACTIONS(1891), - [anon_sym_signed] = ACTIONS(1891), - [anon_sym_unsigned] = ACTIONS(1891), - [anon_sym_long] = ACTIONS(1891), - [anon_sym_short] = ACTIONS(1891), - [sym_primitive_type] = ACTIONS(1891), - [anon_sym_enum] = ACTIONS(1891), - [anon_sym_class] = ACTIONS(1891), - [anon_sym_struct] = ACTIONS(1891), - [anon_sym_union] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_switch] = ACTIONS(1891), - [anon_sym_case] = ACTIONS(1891), - [anon_sym_default] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_do] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_return] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_goto] = ACTIONS(1891), - [anon_sym_DASH_DASH] = ACTIONS(1893), - [anon_sym_PLUS_PLUS] = ACTIONS(1893), - [anon_sym_sizeof] = ACTIONS(1891), - [sym_number_literal] = ACTIONS(1893), - [anon_sym_L_SQUOTE] = ACTIONS(1893), - [anon_sym_u_SQUOTE] = ACTIONS(1893), - [anon_sym_U_SQUOTE] = ACTIONS(1893), - [anon_sym_u8_SQUOTE] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_L_DQUOTE] = ACTIONS(1893), - [anon_sym_u_DQUOTE] = ACTIONS(1893), - [anon_sym_U_DQUOTE] = ACTIONS(1893), - [anon_sym_u8_DQUOTE] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym_true] = ACTIONS(1891), - [sym_false] = ACTIONS(1891), - [sym_null] = ACTIONS(1891), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1891), - [anon_sym_virtual] = ACTIONS(1891), - [anon_sym_explicit] = ACTIONS(1891), - [sym_auto] = ACTIONS(1891), - [anon_sym_typename] = ACTIONS(1891), - [anon_sym_template] = ACTIONS(1891), - [anon_sym_operator] = ACTIONS(1891), - [anon_sym_delete] = ACTIONS(1891), - [anon_sym_throw] = ACTIONS(1891), - [anon_sym_namespace] = ACTIONS(1891), - [anon_sym_using] = ACTIONS(1891), - [anon_sym_static_assert] = ACTIONS(1891), - [anon_sym_co_return] = ACTIONS(1891), - [anon_sym_co_yield] = ACTIONS(1891), - [anon_sym_try] = ACTIONS(1891), - [anon_sym_co_await] = ACTIONS(1891), - [anon_sym_new] = ACTIONS(1891), - [sym_this] = ACTIONS(1891), - [sym_nullptr] = ACTIONS(1891), - [sym_alone_macro] = ACTIONS(1893), - [aux_sym_alone_macro_call_token1] = ACTIONS(1891), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1891), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_FORWARD] = ACTIONS(1891), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1891), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1891), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1891), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1891), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_PS_GET] = ACTIONS(1891), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1891), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1891), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1891), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1891), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1891), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1891), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1891), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1891), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1891), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1891), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1891), - [anon_sym_MOZ_COLD] = ACTIONS(1891), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1891), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1891), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1891), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1891), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1891), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1891), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1891), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1891), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1891), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1891), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1891), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1891), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1891), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1891), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1891), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1891), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1891), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1891), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1891), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1891), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_NONNULL] = ACTIONS(1891), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1891), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1891), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1891), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1891), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1891), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_NORETURN] = ACTIONS(1891), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1891), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1891), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1891), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1891), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1891), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1891), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1891), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1891), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1891), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1891), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1891), - [anon_sym_MOZ_RAII] = ACTIONS(1891), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1891), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1891), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1891), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1891), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1891), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1891), - [sym_raw_string_literal] = ACTIONS(1893), - }, - [517] = { - [sym_identifier] = ACTIONS(1807), - [aux_sym_preproc_include_token1] = ACTIONS(1807), - [aux_sym_preproc_def_token1] = ACTIONS(1807), - [aux_sym_preproc_if_token1] = ACTIONS(1807), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1807), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1807), - [sym_preproc_directive] = ACTIONS(1807), - [anon_sym_LPAREN2] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_typedef] = ACTIONS(1807), - [anon_sym_extern] = ACTIONS(1807), - [anon_sym___attribute__] = ACTIONS(1807), - [anon_sym_COLON_COLON] = ACTIONS(1809), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1809), - [anon_sym___declspec] = ACTIONS(1807), - [anon_sym___based] = ACTIONS(1807), - [anon_sym___cdecl] = ACTIONS(1807), - [anon_sym___clrcall] = ACTIONS(1807), - [anon_sym___stdcall] = ACTIONS(1807), - [anon_sym___fastcall] = ACTIONS(1807), - [anon_sym___thiscall] = ACTIONS(1807), - [anon_sym___vectorcall] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_static] = ACTIONS(1807), - [anon_sym_register] = ACTIONS(1807), - [anon_sym_inline] = ACTIONS(1807), - [anon_sym_thread_local] = ACTIONS(1807), - [anon_sym_const] = ACTIONS(1807), - [anon_sym_volatile] = ACTIONS(1807), - [anon_sym_restrict] = ACTIONS(1807), - [anon_sym__Atomic] = ACTIONS(1807), - [anon_sym_mutable] = ACTIONS(1807), - [anon_sym_constexpr] = ACTIONS(1807), - [anon_sym_signed] = ACTIONS(1807), - [anon_sym_unsigned] = ACTIONS(1807), - [anon_sym_long] = ACTIONS(1807), - [anon_sym_short] = ACTIONS(1807), - [sym_primitive_type] = ACTIONS(1807), - [anon_sym_enum] = ACTIONS(1807), - [anon_sym_class] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1807), - [anon_sym_union] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(1807), - [anon_sym_switch] = ACTIONS(1807), - [anon_sym_case] = ACTIONS(1807), - [anon_sym_default] = ACTIONS(1807), - [anon_sym_while] = ACTIONS(1807), - [anon_sym_do] = ACTIONS(1807), - [anon_sym_for] = ACTIONS(1807), - [anon_sym_return] = ACTIONS(1807), - [anon_sym_break] = ACTIONS(1807), - [anon_sym_continue] = ACTIONS(1807), - [anon_sym_goto] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_sizeof] = ACTIONS(1807), - [sym_number_literal] = ACTIONS(1809), - [anon_sym_L_SQUOTE] = ACTIONS(1809), - [anon_sym_u_SQUOTE] = ACTIONS(1809), - [anon_sym_U_SQUOTE] = ACTIONS(1809), - [anon_sym_u8_SQUOTE] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_L_DQUOTE] = ACTIONS(1809), - [anon_sym_u_DQUOTE] = ACTIONS(1809), - [anon_sym_U_DQUOTE] = ACTIONS(1809), - [anon_sym_u8_DQUOTE] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [sym_true] = ACTIONS(1807), - [sym_false] = ACTIONS(1807), - [sym_null] = ACTIONS(1807), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1807), - [anon_sym_virtual] = ACTIONS(1807), - [anon_sym_explicit] = ACTIONS(1807), - [sym_auto] = ACTIONS(1807), - [anon_sym_typename] = ACTIONS(1807), - [anon_sym_template] = ACTIONS(1807), - [anon_sym_operator] = ACTIONS(1807), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_throw] = ACTIONS(1807), - [anon_sym_namespace] = ACTIONS(1807), - [anon_sym_using] = ACTIONS(1807), - [anon_sym_static_assert] = ACTIONS(1807), - [anon_sym_co_return] = ACTIONS(1807), - [anon_sym_co_yield] = ACTIONS(1807), - [anon_sym_try] = ACTIONS(1807), - [anon_sym_co_await] = ACTIONS(1807), - [anon_sym_new] = ACTIONS(1807), - [sym_this] = ACTIONS(1807), - [sym_nullptr] = ACTIONS(1807), - [sym_alone_macro] = ACTIONS(1809), - [aux_sym_alone_macro_call_token1] = ACTIONS(1807), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1807), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_FORWARD] = ACTIONS(1807), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1807), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1807), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1807), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1807), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_PS_GET] = ACTIONS(1807), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1807), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1807), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1807), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1807), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1807), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1807), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1807), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1807), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1807), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1807), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1807), - [anon_sym_MOZ_COLD] = ACTIONS(1807), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1807), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1807), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1807), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1807), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1807), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1807), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1807), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1807), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1807), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1807), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1807), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1807), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1807), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1807), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1807), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1807), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1807), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1807), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1807), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1807), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_NONNULL] = ACTIONS(1807), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1807), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1807), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1807), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1807), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1807), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_NORETURN] = ACTIONS(1807), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1807), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1807), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1807), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1807), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1807), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1807), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1807), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1807), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1807), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1807), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1807), - [anon_sym_MOZ_RAII] = ACTIONS(1807), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1807), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1807), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1807), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1807), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1807), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1807), - [sym_raw_string_literal] = ACTIONS(1809), - }, - [518] = { - [sym_identifier] = ACTIONS(1851), - [aux_sym_preproc_include_token1] = ACTIONS(1851), - [aux_sym_preproc_def_token1] = ACTIONS(1851), - [aux_sym_preproc_if_token1] = ACTIONS(1851), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1851), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1851), - [sym_preproc_directive] = ACTIONS(1851), - [anon_sym_LPAREN2] = ACTIONS(1853), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_AMP_AMP] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_typedef] = ACTIONS(1851), - [anon_sym_extern] = ACTIONS(1851), - [anon_sym___attribute__] = ACTIONS(1851), - [anon_sym_COLON_COLON] = ACTIONS(1853), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1853), - [anon_sym___declspec] = ACTIONS(1851), - [anon_sym___based] = ACTIONS(1851), - [anon_sym___cdecl] = ACTIONS(1851), - [anon_sym___clrcall] = ACTIONS(1851), - [anon_sym___stdcall] = ACTIONS(1851), - [anon_sym___fastcall] = ACTIONS(1851), - [anon_sym___thiscall] = ACTIONS(1851), - [anon_sym___vectorcall] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_register] = ACTIONS(1851), - [anon_sym_inline] = ACTIONS(1851), - [anon_sym_thread_local] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [anon_sym_volatile] = ACTIONS(1851), - [anon_sym_restrict] = ACTIONS(1851), - [anon_sym__Atomic] = ACTIONS(1851), - [anon_sym_mutable] = ACTIONS(1851), - [anon_sym_constexpr] = ACTIONS(1851), - [anon_sym_signed] = ACTIONS(1851), - [anon_sym_unsigned] = ACTIONS(1851), - [anon_sym_long] = ACTIONS(1851), - [anon_sym_short] = ACTIONS(1851), - [sym_primitive_type] = ACTIONS(1851), - [anon_sym_enum] = ACTIONS(1851), - [anon_sym_class] = ACTIONS(1851), - [anon_sym_struct] = ACTIONS(1851), - [anon_sym_union] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1851), - [anon_sym_case] = ACTIONS(1851), - [anon_sym_default] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_goto] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_sizeof] = ACTIONS(1851), - [sym_number_literal] = ACTIONS(1853), - [anon_sym_L_SQUOTE] = ACTIONS(1853), - [anon_sym_u_SQUOTE] = ACTIONS(1853), - [anon_sym_U_SQUOTE] = ACTIONS(1853), - [anon_sym_u8_SQUOTE] = ACTIONS(1853), - [anon_sym_SQUOTE] = ACTIONS(1853), - [anon_sym_L_DQUOTE] = ACTIONS(1853), - [anon_sym_u_DQUOTE] = ACTIONS(1853), - [anon_sym_U_DQUOTE] = ACTIONS(1853), - [anon_sym_u8_DQUOTE] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1853), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_null] = ACTIONS(1851), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1851), - [anon_sym_virtual] = ACTIONS(1851), - [anon_sym_explicit] = ACTIONS(1851), - [sym_auto] = ACTIONS(1851), - [anon_sym_typename] = ACTIONS(1851), - [anon_sym_template] = ACTIONS(1851), - [anon_sym_operator] = ACTIONS(1851), - [anon_sym_delete] = ACTIONS(1851), - [anon_sym_throw] = ACTIONS(1851), - [anon_sym_namespace] = ACTIONS(1851), - [anon_sym_using] = ACTIONS(1851), - [anon_sym_static_assert] = ACTIONS(1851), - [anon_sym_co_return] = ACTIONS(1851), - [anon_sym_co_yield] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_co_await] = ACTIONS(1851), - [anon_sym_new] = ACTIONS(1851), - [sym_this] = ACTIONS(1851), - [sym_nullptr] = ACTIONS(1851), - [sym_alone_macro] = ACTIONS(1853), - [aux_sym_alone_macro_call_token1] = ACTIONS(1851), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1851), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_FORWARD] = ACTIONS(1851), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1851), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1851), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1851), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1851), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_PS_GET] = ACTIONS(1851), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1851), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1851), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1851), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1851), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1851), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1851), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1851), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1851), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1851), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1851), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1851), - [anon_sym_MOZ_COLD] = ACTIONS(1851), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1851), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1851), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1851), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1851), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1851), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1851), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1851), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1851), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1851), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1851), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1851), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1851), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1851), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1851), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1851), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1851), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1851), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1851), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1851), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1851), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_NONNULL] = ACTIONS(1851), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1851), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1851), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1851), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1851), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1851), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_NORETURN] = ACTIONS(1851), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1851), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1851), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1851), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1851), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1851), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1851), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1851), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1851), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1851), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1851), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1851), - [anon_sym_MOZ_RAII] = ACTIONS(1851), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1851), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1851), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1851), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1851), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1851), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1851), - [sym_raw_string_literal] = ACTIONS(1853), - }, - [519] = { - [sym_identifier] = ACTIONS(1839), - [aux_sym_preproc_include_token1] = ACTIONS(1839), - [aux_sym_preproc_def_token1] = ACTIONS(1839), - [aux_sym_preproc_if_token1] = ACTIONS(1839), - [aux_sym_preproc_if_token2] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [sym_preproc_directive] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_TILDE] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_AMP_AMP] = ACTIONS(1841), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_typedef] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym___attribute__] = ACTIONS(1839), - [anon_sym_COLON_COLON] = ACTIONS(1841), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1841), - [anon_sym___declspec] = ACTIONS(1839), - [anon_sym___based] = ACTIONS(1839), - [anon_sym___cdecl] = ACTIONS(1839), - [anon_sym___clrcall] = ACTIONS(1839), - [anon_sym___stdcall] = ACTIONS(1839), - [anon_sym___fastcall] = ACTIONS(1839), - [anon_sym___thiscall] = ACTIONS(1839), - [anon_sym___vectorcall] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_static] = ACTIONS(1839), - [anon_sym_register] = ACTIONS(1839), - [anon_sym_inline] = ACTIONS(1839), - [anon_sym_thread_local] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [anon_sym_volatile] = ACTIONS(1839), - [anon_sym_restrict] = ACTIONS(1839), - [anon_sym__Atomic] = ACTIONS(1839), - [anon_sym_mutable] = ACTIONS(1839), - [anon_sym_constexpr] = ACTIONS(1839), - [anon_sym_signed] = ACTIONS(1839), - [anon_sym_unsigned] = ACTIONS(1839), - [anon_sym_long] = ACTIONS(1839), - [anon_sym_short] = ACTIONS(1839), - [sym_primitive_type] = ACTIONS(1839), - [anon_sym_enum] = ACTIONS(1839), - [anon_sym_class] = ACTIONS(1839), - [anon_sym_struct] = ACTIONS(1839), - [anon_sym_union] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_switch] = ACTIONS(1839), - [anon_sym_case] = ACTIONS(1839), - [anon_sym_default] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_goto] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1841), - [anon_sym_PLUS_PLUS] = ACTIONS(1841), - [anon_sym_sizeof] = ACTIONS(1839), - [sym_number_literal] = ACTIONS(1841), - [anon_sym_L_SQUOTE] = ACTIONS(1841), - [anon_sym_u_SQUOTE] = ACTIONS(1841), - [anon_sym_U_SQUOTE] = ACTIONS(1841), - [anon_sym_u8_SQUOTE] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_L_DQUOTE] = ACTIONS(1841), - [anon_sym_u_DQUOTE] = ACTIONS(1841), - [anon_sym_U_DQUOTE] = ACTIONS(1841), - [anon_sym_u8_DQUOTE] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1841), - [sym_true] = ACTIONS(1839), - [sym_false] = ACTIONS(1839), - [sym_null] = ACTIONS(1839), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1839), - [anon_sym_virtual] = ACTIONS(1839), - [anon_sym_explicit] = ACTIONS(1839), - [sym_auto] = ACTIONS(1839), - [anon_sym_typename] = ACTIONS(1839), - [anon_sym_template] = ACTIONS(1839), - [anon_sym_operator] = ACTIONS(1839), - [anon_sym_delete] = ACTIONS(1839), - [anon_sym_throw] = ACTIONS(1839), - [anon_sym_namespace] = ACTIONS(1839), - [anon_sym_using] = ACTIONS(1839), - [anon_sym_static_assert] = ACTIONS(1839), - [anon_sym_co_return] = ACTIONS(1839), - [anon_sym_co_yield] = ACTIONS(1839), - [anon_sym_try] = ACTIONS(1839), - [anon_sym_co_await] = ACTIONS(1839), - [anon_sym_new] = ACTIONS(1839), - [sym_this] = ACTIONS(1839), - [sym_nullptr] = ACTIONS(1839), - [sym_alone_macro] = ACTIONS(1841), - [aux_sym_alone_macro_call_token1] = ACTIONS(1839), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1839), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_FORWARD] = ACTIONS(1839), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1839), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1839), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1839), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1839), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_PS_GET] = ACTIONS(1839), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1839), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1839), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1839), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1839), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1839), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1839), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1839), - [anon_sym_MOZ_COLD] = ACTIONS(1839), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1839), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1839), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1839), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1839), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1839), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1839), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1839), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1839), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1839), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1839), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1839), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1839), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1839), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_NONNULL] = ACTIONS(1839), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1839), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1839), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1839), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1839), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1839), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1839), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1839), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1839), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1839), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1839), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1839), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1839), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1839), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1839), - [anon_sym_MOZ_RAII] = ACTIONS(1839), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1839), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1839), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1839), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1839), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1839), - [sym_raw_string_literal] = ACTIONS(1841), - }, - [520] = { - [ts_builtin_sym_end] = ACTIONS(1785), - [sym_identifier] = ACTIONS(1783), - [aux_sym_preproc_include_token1] = ACTIONS(1783), - [aux_sym_preproc_def_token1] = ACTIONS(1783), - [aux_sym_preproc_if_token1] = ACTIONS(1783), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1783), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1783), - [sym_preproc_directive] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_BANG] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_typedef] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym___attribute__] = ACTIONS(1783), - [anon_sym_COLON_COLON] = ACTIONS(1785), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1785), - [anon_sym___declspec] = ACTIONS(1783), - [anon_sym___based] = ACTIONS(1783), - [anon_sym___cdecl] = ACTIONS(1783), - [anon_sym___clrcall] = ACTIONS(1783), - [anon_sym___stdcall] = ACTIONS(1783), - [anon_sym___fastcall] = ACTIONS(1783), - [anon_sym___thiscall] = ACTIONS(1783), - [anon_sym___vectorcall] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1783), - [anon_sym_static] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_inline] = ACTIONS(1783), - [anon_sym_thread_local] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [anon_sym_volatile] = ACTIONS(1783), - [anon_sym_restrict] = ACTIONS(1783), - [anon_sym__Atomic] = ACTIONS(1783), - [anon_sym_mutable] = ACTIONS(1783), - [anon_sym_constexpr] = ACTIONS(1783), - [anon_sym_signed] = ACTIONS(1783), - [anon_sym_unsigned] = ACTIONS(1783), - [anon_sym_long] = ACTIONS(1783), - [anon_sym_short] = ACTIONS(1783), - [sym_primitive_type] = ACTIONS(1783), - [anon_sym_enum] = ACTIONS(1783), - [anon_sym_class] = ACTIONS(1783), - [anon_sym_struct] = ACTIONS(1783), - [anon_sym_union] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_switch] = ACTIONS(1783), - [anon_sym_case] = ACTIONS(1783), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_goto] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1783), - [sym_number_literal] = ACTIONS(1785), - [anon_sym_L_SQUOTE] = ACTIONS(1785), - [anon_sym_u_SQUOTE] = ACTIONS(1785), - [anon_sym_U_SQUOTE] = ACTIONS(1785), - [anon_sym_u8_SQUOTE] = ACTIONS(1785), - [anon_sym_SQUOTE] = ACTIONS(1785), - [anon_sym_L_DQUOTE] = ACTIONS(1785), - [anon_sym_u_DQUOTE] = ACTIONS(1785), - [anon_sym_U_DQUOTE] = ACTIONS(1785), - [anon_sym_u8_DQUOTE] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym_true] = ACTIONS(1783), - [sym_false] = ACTIONS(1783), - [sym_null] = ACTIONS(1783), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1783), - [anon_sym_virtual] = ACTIONS(1783), - [anon_sym_explicit] = ACTIONS(1783), - [sym_auto] = ACTIONS(1783), - [anon_sym_typename] = ACTIONS(1783), - [anon_sym_template] = ACTIONS(1783), - [anon_sym_operator] = ACTIONS(1783), - [anon_sym_delete] = ACTIONS(1783), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_namespace] = ACTIONS(1783), - [anon_sym_using] = ACTIONS(1783), - [anon_sym_static_assert] = ACTIONS(1783), - [anon_sym_co_return] = ACTIONS(1783), - [anon_sym_co_yield] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_co_await] = ACTIONS(1783), - [anon_sym_new] = ACTIONS(1783), - [sym_this] = ACTIONS(1783), - [sym_nullptr] = ACTIONS(1783), - [sym_alone_macro] = ACTIONS(1785), - [aux_sym_alone_macro_call_token1] = ACTIONS(1783), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1783), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_FORWARD] = ACTIONS(1783), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1783), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1783), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1783), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1783), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_PS_GET] = ACTIONS(1783), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1783), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1783), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1783), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1783), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1783), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1783), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1783), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1783), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1783), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1783), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1783), - [anon_sym_MOZ_COLD] = ACTIONS(1783), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1783), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1783), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1783), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1783), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1783), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1783), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1783), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1783), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1783), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1783), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1783), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1783), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1783), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1783), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1783), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1783), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1783), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1783), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1783), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1783), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_NONNULL] = ACTIONS(1783), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1783), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1783), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1783), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1783), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1783), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_NORETURN] = ACTIONS(1783), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1783), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1783), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1783), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1783), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1783), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1783), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1783), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1783), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1783), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1783), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1783), - [anon_sym_MOZ_RAII] = ACTIONS(1783), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1783), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1783), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1783), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1783), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1783), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1783), - [sym_raw_string_literal] = ACTIONS(1785), - }, - [521] = { - [ts_builtin_sym_end] = ACTIONS(1873), - [sym_identifier] = ACTIONS(1871), - [aux_sym_preproc_include_token1] = ACTIONS(1871), - [aux_sym_preproc_def_token1] = ACTIONS(1871), - [aux_sym_preproc_if_token1] = ACTIONS(1871), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1871), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1871), - [sym_preproc_directive] = ACTIONS(1871), - [anon_sym_LPAREN2] = ACTIONS(1873), - [anon_sym_BANG] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1871), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_AMP_AMP] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_typedef] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym___attribute__] = ACTIONS(1871), - [anon_sym_COLON_COLON] = ACTIONS(1873), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), - [anon_sym___declspec] = ACTIONS(1871), - [anon_sym___based] = ACTIONS(1871), - [anon_sym___cdecl] = ACTIONS(1871), - [anon_sym___clrcall] = ACTIONS(1871), - [anon_sym___stdcall] = ACTIONS(1871), - [anon_sym___fastcall] = ACTIONS(1871), - [anon_sym___thiscall] = ACTIONS(1871), - [anon_sym___vectorcall] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1871), - [anon_sym_static] = ACTIONS(1871), - [anon_sym_register] = ACTIONS(1871), - [anon_sym_inline] = ACTIONS(1871), - [anon_sym_thread_local] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [anon_sym_volatile] = ACTIONS(1871), - [anon_sym_restrict] = ACTIONS(1871), - [anon_sym__Atomic] = ACTIONS(1871), - [anon_sym_mutable] = ACTIONS(1871), - [anon_sym_constexpr] = ACTIONS(1871), - [anon_sym_signed] = ACTIONS(1871), - [anon_sym_unsigned] = ACTIONS(1871), - [anon_sym_long] = ACTIONS(1871), - [anon_sym_short] = ACTIONS(1871), - [sym_primitive_type] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), - [anon_sym_class] = ACTIONS(1871), - [anon_sym_struct] = ACTIONS(1871), - [anon_sym_union] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_switch] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_goto] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [anon_sym_PLUS_PLUS] = ACTIONS(1873), - [anon_sym_sizeof] = ACTIONS(1871), - [sym_number_literal] = ACTIONS(1873), - [anon_sym_L_SQUOTE] = ACTIONS(1873), - [anon_sym_u_SQUOTE] = ACTIONS(1873), - [anon_sym_U_SQUOTE] = ACTIONS(1873), - [anon_sym_u8_SQUOTE] = ACTIONS(1873), - [anon_sym_SQUOTE] = ACTIONS(1873), - [anon_sym_L_DQUOTE] = ACTIONS(1873), - [anon_sym_u_DQUOTE] = ACTIONS(1873), - [anon_sym_U_DQUOTE] = ACTIONS(1873), - [anon_sym_u8_DQUOTE] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym_true] = ACTIONS(1871), - [sym_false] = ACTIONS(1871), - [sym_null] = ACTIONS(1871), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1871), - [anon_sym_virtual] = ACTIONS(1871), - [anon_sym_explicit] = ACTIONS(1871), - [sym_auto] = ACTIONS(1871), - [anon_sym_typename] = ACTIONS(1871), - [anon_sym_template] = ACTIONS(1871), - [anon_sym_operator] = ACTIONS(1871), - [anon_sym_delete] = ACTIONS(1871), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_namespace] = ACTIONS(1871), - [anon_sym_using] = ACTIONS(1871), - [anon_sym_static_assert] = ACTIONS(1871), - [anon_sym_co_return] = ACTIONS(1871), - [anon_sym_co_yield] = ACTIONS(1871), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_co_await] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1871), - [sym_this] = ACTIONS(1871), - [sym_nullptr] = ACTIONS(1871), - [sym_alone_macro] = ACTIONS(1873), - [aux_sym_alone_macro_call_token1] = ACTIONS(1871), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1871), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_FORWARD] = ACTIONS(1871), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1871), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1871), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1871), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1871), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_PS_GET] = ACTIONS(1871), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1871), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1871), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1871), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1871), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1871), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1871), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1871), - [anon_sym_MOZ_COLD] = ACTIONS(1871), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1871), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1871), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1871), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1871), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1871), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1871), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1871), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1871), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1871), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1871), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1871), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1871), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1871), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_NONNULL] = ACTIONS(1871), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1871), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1871), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1871), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1871), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1871), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1871), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1871), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1871), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1871), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1871), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1871), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1871), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1871), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1871), - [anon_sym_MOZ_RAII] = ACTIONS(1871), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1871), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1871), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1871), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1871), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1871), - [sym_raw_string_literal] = ACTIONS(1873), - }, - [522] = { - [ts_builtin_sym_end] = ACTIONS(1877), + [sym_auto] = ACTIONS(1879), + [anon_sym_decltype] = ACTIONS(1879), + [anon_sym_explicit] = ACTIONS(1879), + [anon_sym_typename] = ACTIONS(1879), + [anon_sym_template] = ACTIONS(1879), + [anon_sym_operator] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_delete] = ACTIONS(1879), + [anon_sym_throw] = ACTIONS(1879), + [anon_sym_namespace] = ACTIONS(1879), + [anon_sym_using] = ACTIONS(1879), + [anon_sym_static_assert] = ACTIONS(1879), + [anon_sym_concept] = ACTIONS(1879), + [anon_sym_co_return] = ACTIONS(1879), + [anon_sym_co_yield] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [anon_sym_R_DQUOTE] = ACTIONS(1877), + [anon_sym_LR_DQUOTE] = ACTIONS(1877), + [anon_sym_uR_DQUOTE] = ACTIONS(1877), + [anon_sym_UR_DQUOTE] = ACTIONS(1877), + [anon_sym_u8R_DQUOTE] = ACTIONS(1877), + [anon_sym_co_await] = ACTIONS(1879), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_requires] = ACTIONS(1879), + [sym_this] = ACTIONS(1879), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1879), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_FORWARD] = ACTIONS(1879), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1879), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1879), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1879), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1879), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_PS_GET] = ACTIONS(1879), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1879), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1879), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1879), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1879), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1879), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1879), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1879), + [anon_sym_MOZ_COLD] = ACTIONS(1879), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1879), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1879), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1879), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1879), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1879), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1879), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1879), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1879), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1879), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1879), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1879), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1879), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1879), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_NONNULL] = ACTIONS(1879), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1879), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1879), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1879), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1879), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1879), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1879), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1879), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1879), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1879), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1879), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1879), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1879), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), + [anon_sym_MOZ_RAII] = ACTIONS(1879), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1879), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1879), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1879), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1879), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1879), + }, + [STATE(143)] = { [sym_identifier] = ACTIONS(1875), [aux_sym_preproc_include_token1] = ACTIONS(1875), [aux_sym_preproc_def_token1] = ACTIONS(1875), [aux_sym_preproc_if_token1] = ACTIONS(1875), + [aux_sym_preproc_if_token2] = ACTIONS(1875), [aux_sym_preproc_ifdef_token1] = ACTIONS(1875), [aux_sym_preproc_ifdef_token2] = ACTIONS(1875), + [aux_sym_preproc_else_token1] = ACTIONS(1875), + [aux_sym_preproc_elif_token1] = ACTIONS(1875), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1875), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1875), [sym_preproc_directive] = ACTIONS(1875), - [anon_sym_LPAREN2] = ACTIONS(1877), - [anon_sym_BANG] = ACTIONS(1877), - [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), [anon_sym_DASH] = ACTIONS(1875), [anon_sym_PLUS] = ACTIONS(1875), - [anon_sym_STAR] = ACTIONS(1877), - [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), [anon_sym_AMP] = ACTIONS(1875), - [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym___extension__] = ACTIONS(1875), [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_virtual] = ACTIONS(1875), [anon_sym_extern] = ACTIONS(1875), [anon_sym___attribute__] = ACTIONS(1875), - [anon_sym_COLON_COLON] = ACTIONS(1877), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1877), + [anon_sym___attribute] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), [anon_sym___declspec] = ACTIONS(1875), [anon_sym___based] = ACTIONS(1875), [anon_sym___cdecl] = ACTIONS(1875), @@ -139256,28 +87223,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1875), [anon_sym___thiscall] = ACTIONS(1875), [anon_sym___vectorcall] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), [anon_sym_LBRACK] = ACTIONS(1875), [anon_sym_static] = ACTIONS(1875), [anon_sym_register] = ACTIONS(1875), [anon_sym_inline] = ACTIONS(1875), + [anon_sym___inline] = ACTIONS(1875), + [anon_sym___inline__] = ACTIONS(1875), + [anon_sym___forceinline] = ACTIONS(1875), [anon_sym_thread_local] = ACTIONS(1875), + [anon_sym___thread] = ACTIONS(1875), [anon_sym_const] = ACTIONS(1875), + [anon_sym_constexpr] = ACTIONS(1875), [anon_sym_volatile] = ACTIONS(1875), [anon_sym_restrict] = ACTIONS(1875), + [anon_sym___restrict__] = ACTIONS(1875), [anon_sym__Atomic] = ACTIONS(1875), + [anon_sym__Noreturn] = ACTIONS(1875), + [anon_sym_noreturn] = ACTIONS(1875), + [anon_sym__Nonnull] = ACTIONS(1875), [anon_sym_mutable] = ACTIONS(1875), - [anon_sym_constexpr] = ACTIONS(1875), - [anon_sym_signed] = ACTIONS(1875), - [anon_sym_unsigned] = ACTIONS(1875), - [anon_sym_long] = ACTIONS(1875), - [anon_sym_short] = ACTIONS(1875), + [anon_sym_constinit] = ACTIONS(1875), + [anon_sym_consteval] = ACTIONS(1875), + [anon_sym_alignas] = ACTIONS(1875), + [anon_sym__Alignas] = ACTIONS(1875), [sym_primitive_type] = ACTIONS(1875), [anon_sym_enum] = ACTIONS(1875), [anon_sym_class] = ACTIONS(1875), [anon_sym_struct] = ACTIONS(1875), [anon_sym_union] = ACTIONS(1875), [anon_sym_if] = ACTIONS(1875), + [anon_sym_else] = ACTIONS(1875), [anon_sym_switch] = ACTIONS(1875), [anon_sym_case] = ACTIONS(1875), [anon_sym_default] = ACTIONS(1875), @@ -139288,45 +87268,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1875), [anon_sym_continue] = ACTIONS(1875), [anon_sym_goto] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym___try] = ACTIONS(1875), + [anon_sym___leave] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(1875), + [anon_sym_compl] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1873), [anon_sym_sizeof] = ACTIONS(1875), - [sym_number_literal] = ACTIONS(1877), - [anon_sym_L_SQUOTE] = ACTIONS(1877), - [anon_sym_u_SQUOTE] = ACTIONS(1877), - [anon_sym_U_SQUOTE] = ACTIONS(1877), - [anon_sym_u8_SQUOTE] = ACTIONS(1877), - [anon_sym_SQUOTE] = ACTIONS(1877), - [anon_sym_L_DQUOTE] = ACTIONS(1877), - [anon_sym_u_DQUOTE] = ACTIONS(1877), - [anon_sym_U_DQUOTE] = ACTIONS(1877), - [anon_sym_u8_DQUOTE] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym___alignof__] = ACTIONS(1875), + [anon_sym___alignof] = ACTIONS(1875), + [anon_sym__alignof] = ACTIONS(1875), + [anon_sym_alignof] = ACTIONS(1875), + [anon_sym__Alignof] = ACTIONS(1875), + [anon_sym_offsetof] = ACTIONS(1875), + [anon_sym__Generic] = ACTIONS(1875), + [anon_sym_asm] = ACTIONS(1875), + [anon_sym___asm__] = ACTIONS(1875), + [anon_sym___asm] = ACTIONS(1875), + [sym_number_literal] = ACTIONS(1873), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1873), + [anon_sym_u_DQUOTE] = ACTIONS(1873), + [anon_sym_U_DQUOTE] = ACTIONS(1873), + [anon_sym_u8_DQUOTE] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), [sym_true] = ACTIONS(1875), [sym_false] = ACTIONS(1875), - [sym_null] = ACTIONS(1875), + [anon_sym_NULL] = ACTIONS(1875), + [anon_sym_nullptr] = ACTIONS(1875), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1875), [anon_sym_decltype] = ACTIONS(1875), - [anon_sym_virtual] = ACTIONS(1875), [anon_sym_explicit] = ACTIONS(1875), - [sym_auto] = ACTIONS(1875), [anon_sym_typename] = ACTIONS(1875), [anon_sym_template] = ACTIONS(1875), [anon_sym_operator] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), [anon_sym_delete] = ACTIONS(1875), [anon_sym_throw] = ACTIONS(1875), [anon_sym_namespace] = ACTIONS(1875), [anon_sym_using] = ACTIONS(1875), [anon_sym_static_assert] = ACTIONS(1875), + [anon_sym_concept] = ACTIONS(1875), [anon_sym_co_return] = ACTIONS(1875), [anon_sym_co_yield] = ACTIONS(1875), - [anon_sym_try] = ACTIONS(1875), + [anon_sym_catch] = ACTIONS(1875), + [anon_sym_R_DQUOTE] = ACTIONS(1873), + [anon_sym_LR_DQUOTE] = ACTIONS(1873), + [anon_sym_uR_DQUOTE] = ACTIONS(1873), + [anon_sym_UR_DQUOTE] = ACTIONS(1873), + [anon_sym_u8R_DQUOTE] = ACTIONS(1873), [anon_sym_co_await] = ACTIONS(1875), [anon_sym_new] = ACTIONS(1875), + [anon_sym_requires] = ACTIONS(1875), [sym_this] = ACTIONS(1875), - [sym_nullptr] = ACTIONS(1875), - [sym_alone_macro] = ACTIONS(1877), - [aux_sym_alone_macro_call_token1] = ACTIONS(1875), [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1875), [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1875), [anon_sym_FORWARD] = ACTIONS(1875), @@ -139413,13331 +87412,1403 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1875), [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), - [sym_raw_string_literal] = ACTIONS(1877), - }, - [523] = { - [ts_builtin_sym_end] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1715), - [aux_sym_preproc_include_token1] = ACTIONS(1715), - [aux_sym_preproc_def_token1] = ACTIONS(1715), - [aux_sym_preproc_if_token1] = ACTIONS(1715), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1715), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1715), - [sym_preproc_directive] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_typedef] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym___attribute__] = ACTIONS(1715), - [anon_sym_COLON_COLON] = ACTIONS(1717), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1717), - [anon_sym___declspec] = ACTIONS(1715), - [anon_sym___based] = ACTIONS(1715), - [anon_sym___cdecl] = ACTIONS(1715), - [anon_sym___clrcall] = ACTIONS(1715), - [anon_sym___stdcall] = ACTIONS(1715), - [anon_sym___fastcall] = ACTIONS(1715), - [anon_sym___thiscall] = ACTIONS(1715), - [anon_sym___vectorcall] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_inline] = ACTIONS(1715), - [anon_sym_thread_local] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [anon_sym_volatile] = ACTIONS(1715), - [anon_sym_restrict] = ACTIONS(1715), - [anon_sym__Atomic] = ACTIONS(1715), - [anon_sym_mutable] = ACTIONS(1715), - [anon_sym_constexpr] = ACTIONS(1715), - [anon_sym_signed] = ACTIONS(1715), - [anon_sym_unsigned] = ACTIONS(1715), - [anon_sym_long] = ACTIONS(1715), - [anon_sym_short] = ACTIONS(1715), - [sym_primitive_type] = ACTIONS(1715), - [anon_sym_enum] = ACTIONS(1715), - [anon_sym_class] = ACTIONS(1715), - [anon_sym_struct] = ACTIONS(1715), - [anon_sym_union] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_switch] = ACTIONS(1715), - [anon_sym_case] = ACTIONS(1715), - [anon_sym_default] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_goto] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_sizeof] = ACTIONS(1715), - [sym_number_literal] = ACTIONS(1717), - [anon_sym_L_SQUOTE] = ACTIONS(1717), - [anon_sym_u_SQUOTE] = ACTIONS(1717), - [anon_sym_U_SQUOTE] = ACTIONS(1717), - [anon_sym_u8_SQUOTE] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_L_DQUOTE] = ACTIONS(1717), - [anon_sym_u_DQUOTE] = ACTIONS(1717), - [anon_sym_U_DQUOTE] = ACTIONS(1717), - [anon_sym_u8_DQUOTE] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym_true] = ACTIONS(1715), - [sym_false] = ACTIONS(1715), - [sym_null] = ACTIONS(1715), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1715), - [anon_sym_virtual] = ACTIONS(1715), - [anon_sym_explicit] = ACTIONS(1715), - [sym_auto] = ACTIONS(1715), - [anon_sym_typename] = ACTIONS(1715), - [anon_sym_template] = ACTIONS(1715), - [anon_sym_operator] = ACTIONS(1715), - [anon_sym_delete] = ACTIONS(1715), - [anon_sym_throw] = ACTIONS(1715), - [anon_sym_namespace] = ACTIONS(1715), - [anon_sym_using] = ACTIONS(1715), - [anon_sym_static_assert] = ACTIONS(1715), - [anon_sym_co_return] = ACTIONS(1715), - [anon_sym_co_yield] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_co_await] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [sym_this] = ACTIONS(1715), - [sym_nullptr] = ACTIONS(1715), - [sym_alone_macro] = ACTIONS(1717), - [aux_sym_alone_macro_call_token1] = ACTIONS(1715), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1715), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_FORWARD] = ACTIONS(1715), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1715), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1715), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1715), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1715), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_PS_GET] = ACTIONS(1715), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1715), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1715), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1715), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1715), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1715), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1715), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1715), - [anon_sym_MOZ_COLD] = ACTIONS(1715), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1715), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1715), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1715), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1715), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1715), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1715), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1715), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1715), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1715), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1715), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1715), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1715), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1715), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_NONNULL] = ACTIONS(1715), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1715), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1715), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1715), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1715), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1715), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1715), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1715), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1715), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1715), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1715), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1715), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1715), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1715), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1715), - [anon_sym_MOZ_RAII] = ACTIONS(1715), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1715), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1715), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1715), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1715), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1715), - [sym_raw_string_literal] = ACTIONS(1717), - }, - [524] = { - [ts_builtin_sym_end] = ACTIONS(1721), - [sym_identifier] = ACTIONS(1719), - [aux_sym_preproc_include_token1] = ACTIONS(1719), - [aux_sym_preproc_def_token1] = ACTIONS(1719), - [aux_sym_preproc_if_token1] = ACTIONS(1719), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1719), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1719), - [sym_preproc_directive] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(1721), - [anon_sym_BANG] = ACTIONS(1721), - [anon_sym_TILDE] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_typedef] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym___attribute__] = ACTIONS(1719), - [anon_sym_COLON_COLON] = ACTIONS(1721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1721), - [anon_sym___declspec] = ACTIONS(1719), - [anon_sym___based] = ACTIONS(1719), - [anon_sym___cdecl] = ACTIONS(1719), - [anon_sym___clrcall] = ACTIONS(1719), - [anon_sym___stdcall] = ACTIONS(1719), - [anon_sym___fastcall] = ACTIONS(1719), - [anon_sym___thiscall] = ACTIONS(1719), - [anon_sym___vectorcall] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_register] = ACTIONS(1719), - [anon_sym_inline] = ACTIONS(1719), - [anon_sym_thread_local] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_volatile] = ACTIONS(1719), - [anon_sym_restrict] = ACTIONS(1719), - [anon_sym__Atomic] = ACTIONS(1719), - [anon_sym_mutable] = ACTIONS(1719), - [anon_sym_constexpr] = ACTIONS(1719), - [anon_sym_signed] = ACTIONS(1719), - [anon_sym_unsigned] = ACTIONS(1719), - [anon_sym_long] = ACTIONS(1719), - [anon_sym_short] = ACTIONS(1719), - [sym_primitive_type] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), - [anon_sym_class] = ACTIONS(1719), - [anon_sym_struct] = ACTIONS(1719), - [anon_sym_union] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_switch] = ACTIONS(1719), - [anon_sym_case] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_goto] = ACTIONS(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1721), - [anon_sym_sizeof] = ACTIONS(1719), - [sym_number_literal] = ACTIONS(1721), - [anon_sym_L_SQUOTE] = ACTIONS(1721), - [anon_sym_u_SQUOTE] = ACTIONS(1721), - [anon_sym_U_SQUOTE] = ACTIONS(1721), - [anon_sym_u8_SQUOTE] = ACTIONS(1721), - [anon_sym_SQUOTE] = ACTIONS(1721), - [anon_sym_L_DQUOTE] = ACTIONS(1721), - [anon_sym_u_DQUOTE] = ACTIONS(1721), - [anon_sym_U_DQUOTE] = ACTIONS(1721), - [anon_sym_u8_DQUOTE] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1719), - [anon_sym_virtual] = ACTIONS(1719), - [anon_sym_explicit] = ACTIONS(1719), - [sym_auto] = ACTIONS(1719), - [anon_sym_typename] = ACTIONS(1719), - [anon_sym_template] = ACTIONS(1719), - [anon_sym_operator] = ACTIONS(1719), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_throw] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1719), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_static_assert] = ACTIONS(1719), - [anon_sym_co_return] = ACTIONS(1719), - [anon_sym_co_yield] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_co_await] = ACTIONS(1719), - [anon_sym_new] = ACTIONS(1719), - [sym_this] = ACTIONS(1719), - [sym_nullptr] = ACTIONS(1719), - [sym_alone_macro] = ACTIONS(1721), - [aux_sym_alone_macro_call_token1] = ACTIONS(1719), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1719), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_FORWARD] = ACTIONS(1719), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1719), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1719), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1719), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1719), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_PS_GET] = ACTIONS(1719), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1719), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1719), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1719), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1719), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1719), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1719), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1719), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1719), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1719), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1719), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1719), - [anon_sym_MOZ_COLD] = ACTIONS(1719), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1719), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1719), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1719), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1719), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1719), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1719), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1719), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1719), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1719), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1719), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1719), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1719), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1719), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1719), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1719), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1719), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1719), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1719), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1719), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1719), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_NONNULL] = ACTIONS(1719), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1719), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1719), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1719), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1719), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1719), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_NORETURN] = ACTIONS(1719), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1719), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1719), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1719), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1719), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1719), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1719), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1719), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1719), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1719), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1719), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1719), - [anon_sym_MOZ_RAII] = ACTIONS(1719), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1719), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1719), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1719), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1719), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1719), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1719), - [sym_raw_string_literal] = ACTIONS(1721), - }, - [525] = { - [sym_identifier] = ACTIONS(1783), - [aux_sym_preproc_include_token1] = ACTIONS(1783), - [aux_sym_preproc_def_token1] = ACTIONS(1783), - [aux_sym_preproc_if_token1] = ACTIONS(1783), - [aux_sym_preproc_if_token2] = ACTIONS(1783), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1783), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1783), - [sym_preproc_directive] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_BANG] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_typedef] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym___attribute__] = ACTIONS(1783), - [anon_sym_COLON_COLON] = ACTIONS(1785), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1785), - [anon_sym___declspec] = ACTIONS(1783), - [anon_sym___based] = ACTIONS(1783), - [anon_sym___cdecl] = ACTIONS(1783), - [anon_sym___clrcall] = ACTIONS(1783), - [anon_sym___stdcall] = ACTIONS(1783), - [anon_sym___fastcall] = ACTIONS(1783), - [anon_sym___thiscall] = ACTIONS(1783), - [anon_sym___vectorcall] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1783), - [anon_sym_static] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_inline] = ACTIONS(1783), - [anon_sym_thread_local] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [anon_sym_volatile] = ACTIONS(1783), - [anon_sym_restrict] = ACTIONS(1783), - [anon_sym__Atomic] = ACTIONS(1783), - [anon_sym_mutable] = ACTIONS(1783), - [anon_sym_constexpr] = ACTIONS(1783), - [anon_sym_signed] = ACTIONS(1783), - [anon_sym_unsigned] = ACTIONS(1783), - [anon_sym_long] = ACTIONS(1783), - [anon_sym_short] = ACTIONS(1783), - [sym_primitive_type] = ACTIONS(1783), - [anon_sym_enum] = ACTIONS(1783), - [anon_sym_class] = ACTIONS(1783), - [anon_sym_struct] = ACTIONS(1783), - [anon_sym_union] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_switch] = ACTIONS(1783), - [anon_sym_case] = ACTIONS(1783), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_goto] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1783), - [sym_number_literal] = ACTIONS(1785), - [anon_sym_L_SQUOTE] = ACTIONS(1785), - [anon_sym_u_SQUOTE] = ACTIONS(1785), - [anon_sym_U_SQUOTE] = ACTIONS(1785), - [anon_sym_u8_SQUOTE] = ACTIONS(1785), - [anon_sym_SQUOTE] = ACTIONS(1785), - [anon_sym_L_DQUOTE] = ACTIONS(1785), - [anon_sym_u_DQUOTE] = ACTIONS(1785), - [anon_sym_U_DQUOTE] = ACTIONS(1785), - [anon_sym_u8_DQUOTE] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym_true] = ACTIONS(1783), - [sym_false] = ACTIONS(1783), - [sym_null] = ACTIONS(1783), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1783), - [anon_sym_virtual] = ACTIONS(1783), - [anon_sym_explicit] = ACTIONS(1783), - [sym_auto] = ACTIONS(1783), - [anon_sym_typename] = ACTIONS(1783), - [anon_sym_template] = ACTIONS(1783), - [anon_sym_operator] = ACTIONS(1783), - [anon_sym_delete] = ACTIONS(1783), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_namespace] = ACTIONS(1783), - [anon_sym_using] = ACTIONS(1783), - [anon_sym_static_assert] = ACTIONS(1783), - [anon_sym_co_return] = ACTIONS(1783), - [anon_sym_co_yield] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_co_await] = ACTIONS(1783), - [anon_sym_new] = ACTIONS(1783), - [sym_this] = ACTIONS(1783), - [sym_nullptr] = ACTIONS(1783), - [sym_alone_macro] = ACTIONS(1785), - [aux_sym_alone_macro_call_token1] = ACTIONS(1783), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1783), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_FORWARD] = ACTIONS(1783), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1783), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1783), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1783), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1783), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_PS_GET] = ACTIONS(1783), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1783), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1783), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1783), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1783), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1783), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1783), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1783), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1783), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1783), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1783), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1783), - [anon_sym_MOZ_COLD] = ACTIONS(1783), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1783), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1783), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1783), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1783), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1783), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1783), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1783), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1783), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1783), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1783), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1783), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1783), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1783), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1783), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1783), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1783), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1783), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1783), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1783), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1783), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_NONNULL] = ACTIONS(1783), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1783), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1783), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1783), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1783), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1783), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_NORETURN] = ACTIONS(1783), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1783), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1783), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1783), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1783), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1783), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1783), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1783), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1783), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1783), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1783), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1783), - [anon_sym_MOZ_RAII] = ACTIONS(1783), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1783), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1783), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1783), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1783), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1783), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1783), - [sym_raw_string_literal] = ACTIONS(1785), - }, - [526] = { - [ts_builtin_sym_end] = ACTIONS(1729), - [sym_identifier] = ACTIONS(1727), - [aux_sym_preproc_include_token1] = ACTIONS(1727), - [aux_sym_preproc_def_token1] = ACTIONS(1727), - [aux_sym_preproc_if_token1] = ACTIONS(1727), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1727), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1727), - [sym_preproc_directive] = ACTIONS(1727), - [anon_sym_LPAREN2] = ACTIONS(1729), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1729), - [anon_sym_typedef] = ACTIONS(1727), - [anon_sym_extern] = ACTIONS(1727), - [anon_sym___attribute__] = ACTIONS(1727), - [anon_sym_COLON_COLON] = ACTIONS(1729), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), - [anon_sym___declspec] = ACTIONS(1727), - [anon_sym___based] = ACTIONS(1727), - [anon_sym___cdecl] = ACTIONS(1727), - [anon_sym___clrcall] = ACTIONS(1727), - [anon_sym___stdcall] = ACTIONS(1727), - [anon_sym___fastcall] = ACTIONS(1727), - [anon_sym___thiscall] = ACTIONS(1727), - [anon_sym___vectorcall] = ACTIONS(1727), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_static] = ACTIONS(1727), - [anon_sym_register] = ACTIONS(1727), - [anon_sym_inline] = ACTIONS(1727), - [anon_sym_thread_local] = ACTIONS(1727), - [anon_sym_const] = ACTIONS(1727), - [anon_sym_volatile] = ACTIONS(1727), - [anon_sym_restrict] = ACTIONS(1727), - [anon_sym__Atomic] = ACTIONS(1727), - [anon_sym_mutable] = ACTIONS(1727), - [anon_sym_constexpr] = ACTIONS(1727), - [anon_sym_signed] = ACTIONS(1727), - [anon_sym_unsigned] = ACTIONS(1727), - [anon_sym_long] = ACTIONS(1727), - [anon_sym_short] = ACTIONS(1727), - [sym_primitive_type] = ACTIONS(1727), - [anon_sym_enum] = ACTIONS(1727), - [anon_sym_class] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(1727), - [anon_sym_union] = ACTIONS(1727), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_switch] = ACTIONS(1727), - [anon_sym_case] = ACTIONS(1727), - [anon_sym_default] = ACTIONS(1727), - [anon_sym_while] = ACTIONS(1727), - [anon_sym_do] = ACTIONS(1727), - [anon_sym_for] = ACTIONS(1727), - [anon_sym_return] = ACTIONS(1727), - [anon_sym_break] = ACTIONS(1727), - [anon_sym_continue] = ACTIONS(1727), - [anon_sym_goto] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1729), - [anon_sym_sizeof] = ACTIONS(1727), - [sym_number_literal] = ACTIONS(1729), - [anon_sym_L_SQUOTE] = ACTIONS(1729), - [anon_sym_u_SQUOTE] = ACTIONS(1729), - [anon_sym_U_SQUOTE] = ACTIONS(1729), - [anon_sym_u8_SQUOTE] = ACTIONS(1729), - [anon_sym_SQUOTE] = ACTIONS(1729), - [anon_sym_L_DQUOTE] = ACTIONS(1729), - [anon_sym_u_DQUOTE] = ACTIONS(1729), - [anon_sym_U_DQUOTE] = ACTIONS(1729), - [anon_sym_u8_DQUOTE] = ACTIONS(1729), - [anon_sym_DQUOTE] = ACTIONS(1729), - [sym_true] = ACTIONS(1727), - [sym_false] = ACTIONS(1727), - [sym_null] = ACTIONS(1727), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1727), - [anon_sym_virtual] = ACTIONS(1727), - [anon_sym_explicit] = ACTIONS(1727), - [sym_auto] = ACTIONS(1727), - [anon_sym_typename] = ACTIONS(1727), - [anon_sym_template] = ACTIONS(1727), - [anon_sym_operator] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_throw] = ACTIONS(1727), - [anon_sym_namespace] = ACTIONS(1727), - [anon_sym_using] = ACTIONS(1727), - [anon_sym_static_assert] = ACTIONS(1727), - [anon_sym_co_return] = ACTIONS(1727), - [anon_sym_co_yield] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1727), - [anon_sym_co_await] = ACTIONS(1727), - [anon_sym_new] = ACTIONS(1727), - [sym_this] = ACTIONS(1727), - [sym_nullptr] = ACTIONS(1727), - [sym_alone_macro] = ACTIONS(1729), - [aux_sym_alone_macro_call_token1] = ACTIONS(1727), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1727), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_FORWARD] = ACTIONS(1727), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1727), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1727), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1727), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1727), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_PS_GET] = ACTIONS(1727), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1727), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1727), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1727), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1727), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1727), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1727), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1727), - [anon_sym_MOZ_COLD] = ACTIONS(1727), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1727), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1727), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1727), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1727), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1727), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1727), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1727), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1727), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1727), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1727), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1727), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1727), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1727), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_NONNULL] = ACTIONS(1727), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1727), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1727), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1727), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1727), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1727), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1727), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1727), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1727), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1727), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1727), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1727), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1727), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1727), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1727), - [anon_sym_MOZ_RAII] = ACTIONS(1727), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1727), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1727), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1727), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1727), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1727), - [sym_raw_string_literal] = ACTIONS(1729), - }, - [527] = { - [sym_identifier] = ACTIONS(1775), - [aux_sym_preproc_include_token1] = ACTIONS(1775), - [aux_sym_preproc_def_token1] = ACTIONS(1775), - [aux_sym_preproc_if_token1] = ACTIONS(1775), - [aux_sym_preproc_if_token2] = ACTIONS(1775), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1775), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1775), - [sym_preproc_directive] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(1777), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_TILDE] = ACTIONS(1777), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_AMP_AMP] = ACTIONS(1777), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_SEMI] = ACTIONS(1777), - [anon_sym_typedef] = ACTIONS(1775), - [anon_sym_extern] = ACTIONS(1775), - [anon_sym___attribute__] = ACTIONS(1775), - [anon_sym_COLON_COLON] = ACTIONS(1777), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1777), - [anon_sym___declspec] = ACTIONS(1775), - [anon_sym___based] = ACTIONS(1775), - [anon_sym___cdecl] = ACTIONS(1775), - [anon_sym___clrcall] = ACTIONS(1775), - [anon_sym___stdcall] = ACTIONS(1775), - [anon_sym___fastcall] = ACTIONS(1775), - [anon_sym___thiscall] = ACTIONS(1775), - [anon_sym___vectorcall] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_LBRACK] = ACTIONS(1775), - [anon_sym_static] = ACTIONS(1775), - [anon_sym_register] = ACTIONS(1775), - [anon_sym_inline] = ACTIONS(1775), - [anon_sym_thread_local] = ACTIONS(1775), - [anon_sym_const] = ACTIONS(1775), - [anon_sym_volatile] = ACTIONS(1775), - [anon_sym_restrict] = ACTIONS(1775), - [anon_sym__Atomic] = ACTIONS(1775), - [anon_sym_mutable] = ACTIONS(1775), - [anon_sym_constexpr] = ACTIONS(1775), - [anon_sym_signed] = ACTIONS(1775), - [anon_sym_unsigned] = ACTIONS(1775), - [anon_sym_long] = ACTIONS(1775), - [anon_sym_short] = ACTIONS(1775), - [sym_primitive_type] = ACTIONS(1775), - [anon_sym_enum] = ACTIONS(1775), - [anon_sym_class] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1775), - [anon_sym_union] = ACTIONS(1775), - [anon_sym_if] = ACTIONS(1775), - [anon_sym_switch] = ACTIONS(1775), - [anon_sym_case] = ACTIONS(1775), - [anon_sym_default] = ACTIONS(1775), - [anon_sym_while] = ACTIONS(1775), - [anon_sym_do] = ACTIONS(1775), - [anon_sym_for] = ACTIONS(1775), - [anon_sym_return] = ACTIONS(1775), - [anon_sym_break] = ACTIONS(1775), - [anon_sym_continue] = ACTIONS(1775), - [anon_sym_goto] = ACTIONS(1775), - [anon_sym_DASH_DASH] = ACTIONS(1777), - [anon_sym_PLUS_PLUS] = ACTIONS(1777), - [anon_sym_sizeof] = ACTIONS(1775), - [sym_number_literal] = ACTIONS(1777), - [anon_sym_L_SQUOTE] = ACTIONS(1777), - [anon_sym_u_SQUOTE] = ACTIONS(1777), - [anon_sym_U_SQUOTE] = ACTIONS(1777), - [anon_sym_u8_SQUOTE] = ACTIONS(1777), - [anon_sym_SQUOTE] = ACTIONS(1777), - [anon_sym_L_DQUOTE] = ACTIONS(1777), - [anon_sym_u_DQUOTE] = ACTIONS(1777), - [anon_sym_U_DQUOTE] = ACTIONS(1777), - [anon_sym_u8_DQUOTE] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(1777), - [sym_true] = ACTIONS(1775), - [sym_false] = ACTIONS(1775), - [sym_null] = ACTIONS(1775), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1775), - [anon_sym_virtual] = ACTIONS(1775), - [anon_sym_explicit] = ACTIONS(1775), - [sym_auto] = ACTIONS(1775), - [anon_sym_typename] = ACTIONS(1775), - [anon_sym_template] = ACTIONS(1775), - [anon_sym_operator] = ACTIONS(1775), - [anon_sym_delete] = ACTIONS(1775), - [anon_sym_throw] = ACTIONS(1775), - [anon_sym_namespace] = ACTIONS(1775), - [anon_sym_using] = ACTIONS(1775), - [anon_sym_static_assert] = ACTIONS(1775), - [anon_sym_co_return] = ACTIONS(1775), - [anon_sym_co_yield] = ACTIONS(1775), - [anon_sym_try] = ACTIONS(1775), - [anon_sym_co_await] = ACTIONS(1775), - [anon_sym_new] = ACTIONS(1775), - [sym_this] = ACTIONS(1775), - [sym_nullptr] = ACTIONS(1775), - [sym_alone_macro] = ACTIONS(1777), - [aux_sym_alone_macro_call_token1] = ACTIONS(1775), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1775), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_FORWARD] = ACTIONS(1775), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1775), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1775), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1775), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1775), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_PS_GET] = ACTIONS(1775), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1775), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1775), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1775), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1775), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1775), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1775), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1775), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1775), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1775), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1775), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1775), - [anon_sym_MOZ_COLD] = ACTIONS(1775), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1775), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1775), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1775), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1775), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1775), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1775), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1775), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1775), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1775), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1775), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1775), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1775), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1775), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1775), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1775), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1775), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1775), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1775), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1775), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1775), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_NONNULL] = ACTIONS(1775), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1775), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1775), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1775), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1775), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1775), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_NORETURN] = ACTIONS(1775), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1775), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1775), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1775), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1775), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1775), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1775), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1775), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1775), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1775), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1775), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1775), - [anon_sym_MOZ_RAII] = ACTIONS(1775), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1775), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1775), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1775), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1775), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1775), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1775), - [sym_raw_string_literal] = ACTIONS(1777), - }, - [528] = { - [ts_builtin_sym_end] = ACTIONS(1865), - [sym_identifier] = ACTIONS(1863), - [aux_sym_preproc_include_token1] = ACTIONS(1863), - [aux_sym_preproc_def_token1] = ACTIONS(1863), - [aux_sym_preproc_if_token1] = ACTIONS(1863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1863), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1863), - [sym_preproc_directive] = ACTIONS(1863), - [anon_sym_LPAREN2] = ACTIONS(1865), - [anon_sym_BANG] = ACTIONS(1865), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_AMP_AMP] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1865), - [anon_sym_typedef] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1863), - [anon_sym___attribute__] = ACTIONS(1863), - [anon_sym_COLON_COLON] = ACTIONS(1865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1865), - [anon_sym___declspec] = ACTIONS(1863), - [anon_sym___based] = ACTIONS(1863), - [anon_sym___cdecl] = ACTIONS(1863), - [anon_sym___clrcall] = ACTIONS(1863), - [anon_sym___stdcall] = ACTIONS(1863), - [anon_sym___fastcall] = ACTIONS(1863), - [anon_sym___thiscall] = ACTIONS(1863), - [anon_sym___vectorcall] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_static] = ACTIONS(1863), - [anon_sym_register] = ACTIONS(1863), - [anon_sym_inline] = ACTIONS(1863), - [anon_sym_thread_local] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [anon_sym_volatile] = ACTIONS(1863), - [anon_sym_restrict] = ACTIONS(1863), - [anon_sym__Atomic] = ACTIONS(1863), - [anon_sym_mutable] = ACTIONS(1863), - [anon_sym_constexpr] = ACTIONS(1863), - [anon_sym_signed] = ACTIONS(1863), - [anon_sym_unsigned] = ACTIONS(1863), - [anon_sym_long] = ACTIONS(1863), - [anon_sym_short] = ACTIONS(1863), - [sym_primitive_type] = ACTIONS(1863), - [anon_sym_enum] = ACTIONS(1863), - [anon_sym_class] = ACTIONS(1863), - [anon_sym_struct] = ACTIONS(1863), - [anon_sym_union] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_switch] = ACTIONS(1863), - [anon_sym_case] = ACTIONS(1863), - [anon_sym_default] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_goto] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1865), - [anon_sym_PLUS_PLUS] = ACTIONS(1865), - [anon_sym_sizeof] = ACTIONS(1863), - [sym_number_literal] = ACTIONS(1865), - [anon_sym_L_SQUOTE] = ACTIONS(1865), - [anon_sym_u_SQUOTE] = ACTIONS(1865), - [anon_sym_U_SQUOTE] = ACTIONS(1865), - [anon_sym_u8_SQUOTE] = ACTIONS(1865), - [anon_sym_SQUOTE] = ACTIONS(1865), - [anon_sym_L_DQUOTE] = ACTIONS(1865), - [anon_sym_u_DQUOTE] = ACTIONS(1865), - [anon_sym_U_DQUOTE] = ACTIONS(1865), - [anon_sym_u8_DQUOTE] = ACTIONS(1865), - [anon_sym_DQUOTE] = ACTIONS(1865), - [sym_true] = ACTIONS(1863), - [sym_false] = ACTIONS(1863), - [sym_null] = ACTIONS(1863), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1863), - [anon_sym_virtual] = ACTIONS(1863), - [anon_sym_explicit] = ACTIONS(1863), - [sym_auto] = ACTIONS(1863), - [anon_sym_typename] = ACTIONS(1863), - [anon_sym_template] = ACTIONS(1863), - [anon_sym_operator] = ACTIONS(1863), - [anon_sym_delete] = ACTIONS(1863), - [anon_sym_throw] = ACTIONS(1863), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_using] = ACTIONS(1863), - [anon_sym_static_assert] = ACTIONS(1863), - [anon_sym_co_return] = ACTIONS(1863), - [anon_sym_co_yield] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_co_await] = ACTIONS(1863), - [anon_sym_new] = ACTIONS(1863), - [sym_this] = ACTIONS(1863), - [sym_nullptr] = ACTIONS(1863), - [sym_alone_macro] = ACTIONS(1865), - [aux_sym_alone_macro_call_token1] = ACTIONS(1863), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1863), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_FORWARD] = ACTIONS(1863), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1863), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1863), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1863), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1863), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_PS_GET] = ACTIONS(1863), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1863), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1863), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1863), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1863), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1863), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1863), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1863), - [anon_sym_MOZ_COLD] = ACTIONS(1863), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1863), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1863), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1863), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1863), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1863), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1863), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1863), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1863), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1863), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1863), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1863), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1863), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1863), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_NONNULL] = ACTIONS(1863), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1863), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1863), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1863), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1863), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1863), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1863), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1863), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1863), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1863), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1863), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1863), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1863), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1863), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1863), - [anon_sym_MOZ_RAII] = ACTIONS(1863), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1863), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1863), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1863), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1863), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1863), - [sym_raw_string_literal] = ACTIONS(1865), - }, - [529] = { - [ts_builtin_sym_end] = ACTIONS(1725), - [sym_identifier] = ACTIONS(1723), - [aux_sym_preproc_include_token1] = ACTIONS(1723), - [aux_sym_preproc_def_token1] = ACTIONS(1723), - [aux_sym_preproc_if_token1] = ACTIONS(1723), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1723), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1723), - [sym_preproc_directive] = ACTIONS(1723), - [anon_sym_LPAREN2] = ACTIONS(1725), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1725), - [anon_sym_typedef] = ACTIONS(1723), - [anon_sym_extern] = ACTIONS(1723), - [anon_sym___attribute__] = ACTIONS(1723), - [anon_sym_COLON_COLON] = ACTIONS(1725), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1725), - [anon_sym___declspec] = ACTIONS(1723), - [anon_sym___based] = ACTIONS(1723), - [anon_sym___cdecl] = ACTIONS(1723), - [anon_sym___clrcall] = ACTIONS(1723), - [anon_sym___stdcall] = ACTIONS(1723), - [anon_sym___fastcall] = ACTIONS(1723), - [anon_sym___thiscall] = ACTIONS(1723), - [anon_sym___vectorcall] = ACTIONS(1723), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_static] = ACTIONS(1723), - [anon_sym_register] = ACTIONS(1723), - [anon_sym_inline] = ACTIONS(1723), - [anon_sym_thread_local] = ACTIONS(1723), - [anon_sym_const] = ACTIONS(1723), - [anon_sym_volatile] = ACTIONS(1723), - [anon_sym_restrict] = ACTIONS(1723), - [anon_sym__Atomic] = ACTIONS(1723), - [anon_sym_mutable] = ACTIONS(1723), - [anon_sym_constexpr] = ACTIONS(1723), - [anon_sym_signed] = ACTIONS(1723), - [anon_sym_unsigned] = ACTIONS(1723), - [anon_sym_long] = ACTIONS(1723), - [anon_sym_short] = ACTIONS(1723), - [sym_primitive_type] = ACTIONS(1723), - [anon_sym_enum] = ACTIONS(1723), - [anon_sym_class] = ACTIONS(1723), - [anon_sym_struct] = ACTIONS(1723), - [anon_sym_union] = ACTIONS(1723), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_switch] = ACTIONS(1723), - [anon_sym_case] = ACTIONS(1723), - [anon_sym_default] = ACTIONS(1723), - [anon_sym_while] = ACTIONS(1723), - [anon_sym_do] = ACTIONS(1723), - [anon_sym_for] = ACTIONS(1723), - [anon_sym_return] = ACTIONS(1723), - [anon_sym_break] = ACTIONS(1723), - [anon_sym_continue] = ACTIONS(1723), - [anon_sym_goto] = ACTIONS(1723), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_sizeof] = ACTIONS(1723), - [sym_number_literal] = ACTIONS(1725), - [anon_sym_L_SQUOTE] = ACTIONS(1725), - [anon_sym_u_SQUOTE] = ACTIONS(1725), - [anon_sym_U_SQUOTE] = ACTIONS(1725), - [anon_sym_u8_SQUOTE] = ACTIONS(1725), - [anon_sym_SQUOTE] = ACTIONS(1725), - [anon_sym_L_DQUOTE] = ACTIONS(1725), - [anon_sym_u_DQUOTE] = ACTIONS(1725), - [anon_sym_U_DQUOTE] = ACTIONS(1725), - [anon_sym_u8_DQUOTE] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym_true] = ACTIONS(1723), - [sym_false] = ACTIONS(1723), - [sym_null] = ACTIONS(1723), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1723), - [anon_sym_virtual] = ACTIONS(1723), - [anon_sym_explicit] = ACTIONS(1723), - [sym_auto] = ACTIONS(1723), - [anon_sym_typename] = ACTIONS(1723), - [anon_sym_template] = ACTIONS(1723), - [anon_sym_operator] = ACTIONS(1723), - [anon_sym_delete] = ACTIONS(1723), - [anon_sym_throw] = ACTIONS(1723), - [anon_sym_namespace] = ACTIONS(1723), - [anon_sym_using] = ACTIONS(1723), - [anon_sym_static_assert] = ACTIONS(1723), - [anon_sym_co_return] = ACTIONS(1723), - [anon_sym_co_yield] = ACTIONS(1723), - [anon_sym_try] = ACTIONS(1723), - [anon_sym_co_await] = ACTIONS(1723), - [anon_sym_new] = ACTIONS(1723), - [sym_this] = ACTIONS(1723), - [sym_nullptr] = ACTIONS(1723), - [sym_alone_macro] = ACTIONS(1725), - [aux_sym_alone_macro_call_token1] = ACTIONS(1723), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1723), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_FORWARD] = ACTIONS(1723), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1723), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1723), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1723), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1723), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_PS_GET] = ACTIONS(1723), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1723), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1723), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1723), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1723), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1723), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1723), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1723), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1723), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1723), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1723), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1723), - [anon_sym_MOZ_COLD] = ACTIONS(1723), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1723), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1723), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1723), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1723), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1723), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1723), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1723), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1723), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1723), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1723), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1723), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1723), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1723), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1723), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1723), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1723), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1723), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1723), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1723), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1723), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_NONNULL] = ACTIONS(1723), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1723), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1723), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1723), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1723), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1723), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_NORETURN] = ACTIONS(1723), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1723), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1723), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1723), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1723), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1723), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1723), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1723), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1723), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1723), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1723), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1723), - [anon_sym_MOZ_RAII] = ACTIONS(1723), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1723), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1723), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1723), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1723), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1723), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1723), - [sym_raw_string_literal] = ACTIONS(1725), - }, - [530] = { - [sym_identifier] = ACTIONS(1859), - [aux_sym_preproc_include_token1] = ACTIONS(1859), - [aux_sym_preproc_def_token1] = ACTIONS(1859), - [aux_sym_preproc_if_token1] = ACTIONS(1859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1859), - [sym_preproc_directive] = ACTIONS(1859), - [anon_sym_LPAREN2] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1859), - [anon_sym_PLUS] = ACTIONS(1859), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1859), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_typedef] = ACTIONS(1859), - [anon_sym_extern] = ACTIONS(1859), - [anon_sym___attribute__] = ACTIONS(1859), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1861), - [anon_sym___declspec] = ACTIONS(1859), - [anon_sym___based] = ACTIONS(1859), - [anon_sym___cdecl] = ACTIONS(1859), - [anon_sym___clrcall] = ACTIONS(1859), - [anon_sym___stdcall] = ACTIONS(1859), - [anon_sym___fastcall] = ACTIONS(1859), - [anon_sym___thiscall] = ACTIONS(1859), - [anon_sym___vectorcall] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_static] = ACTIONS(1859), - [anon_sym_register] = ACTIONS(1859), - [anon_sym_inline] = ACTIONS(1859), - [anon_sym_thread_local] = ACTIONS(1859), - [anon_sym_const] = ACTIONS(1859), - [anon_sym_volatile] = ACTIONS(1859), - [anon_sym_restrict] = ACTIONS(1859), - [anon_sym__Atomic] = ACTIONS(1859), - [anon_sym_mutable] = ACTIONS(1859), - [anon_sym_constexpr] = ACTIONS(1859), - [anon_sym_signed] = ACTIONS(1859), - [anon_sym_unsigned] = ACTIONS(1859), - [anon_sym_long] = ACTIONS(1859), - [anon_sym_short] = ACTIONS(1859), - [sym_primitive_type] = ACTIONS(1859), - [anon_sym_enum] = ACTIONS(1859), - [anon_sym_class] = ACTIONS(1859), - [anon_sym_struct] = ACTIONS(1859), - [anon_sym_union] = ACTIONS(1859), - [anon_sym_if] = ACTIONS(1859), - [anon_sym_switch] = ACTIONS(1859), - [anon_sym_case] = ACTIONS(1859), - [anon_sym_default] = ACTIONS(1859), - [anon_sym_while] = ACTIONS(1859), - [anon_sym_do] = ACTIONS(1859), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(1859), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1859), - [anon_sym_goto] = ACTIONS(1859), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_sizeof] = ACTIONS(1859), - [sym_number_literal] = ACTIONS(1861), - [anon_sym_L_SQUOTE] = ACTIONS(1861), - [anon_sym_u_SQUOTE] = ACTIONS(1861), - [anon_sym_U_SQUOTE] = ACTIONS(1861), - [anon_sym_u8_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_L_DQUOTE] = ACTIONS(1861), - [anon_sym_u_DQUOTE] = ACTIONS(1861), - [anon_sym_U_DQUOTE] = ACTIONS(1861), - [anon_sym_u8_DQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [sym_true] = ACTIONS(1859), - [sym_false] = ACTIONS(1859), - [sym_null] = ACTIONS(1859), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1859), - [anon_sym_virtual] = ACTIONS(1859), - [anon_sym_explicit] = ACTIONS(1859), - [sym_auto] = ACTIONS(1859), - [anon_sym_typename] = ACTIONS(1859), - [anon_sym_template] = ACTIONS(1859), - [anon_sym_operator] = ACTIONS(1859), - [anon_sym_delete] = ACTIONS(1859), - [anon_sym_throw] = ACTIONS(1859), - [anon_sym_namespace] = ACTIONS(1859), - [anon_sym_using] = ACTIONS(1859), - [anon_sym_static_assert] = ACTIONS(1859), - [anon_sym_co_return] = ACTIONS(1859), - [anon_sym_co_yield] = ACTIONS(1859), - [anon_sym_try] = ACTIONS(1859), - [anon_sym_co_await] = ACTIONS(1859), - [anon_sym_new] = ACTIONS(1859), - [sym_this] = ACTIONS(1859), - [sym_nullptr] = ACTIONS(1859), - [sym_alone_macro] = ACTIONS(1861), - [aux_sym_alone_macro_call_token1] = ACTIONS(1859), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_FORWARD] = ACTIONS(1859), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_PS_GET] = ACTIONS(1859), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1859), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1859), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1859), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1859), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1859), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1859), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1859), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1859), - [anon_sym_MOZ_COLD] = ACTIONS(1859), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1859), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1859), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1859), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1859), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1859), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1859), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1859), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1859), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1859), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1859), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1859), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1859), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1859), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1859), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1859), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1859), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1859), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1859), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1859), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1859), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_NONNULL] = ACTIONS(1859), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1859), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1859), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1859), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1859), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1859), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_NORETURN] = ACTIONS(1859), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1859), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1859), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1859), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1859), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1859), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1859), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1859), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1859), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1859), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1859), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1859), - [anon_sym_MOZ_RAII] = ACTIONS(1859), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1859), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1859), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1859), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1859), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1859), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1859), - [sym_raw_string_literal] = ACTIONS(1861), - }, - [531] = { - [sym_identifier] = ACTIONS(1751), - [aux_sym_preproc_include_token1] = ACTIONS(1751), - [aux_sym_preproc_def_token1] = ACTIONS(1751), - [aux_sym_preproc_if_token1] = ACTIONS(1751), - [aux_sym_preproc_if_token2] = ACTIONS(1751), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1751), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1751), - [sym_preproc_directive] = ACTIONS(1751), - [anon_sym_LPAREN2] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1753), - [anon_sym_TILDE] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_STAR] = ACTIONS(1753), - [anon_sym_AMP_AMP] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_SEMI] = ACTIONS(1753), - [anon_sym_typedef] = ACTIONS(1751), - [anon_sym_extern] = ACTIONS(1751), - [anon_sym___attribute__] = ACTIONS(1751), - [anon_sym_COLON_COLON] = ACTIONS(1753), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1753), - [anon_sym___declspec] = ACTIONS(1751), - [anon_sym___based] = ACTIONS(1751), - [anon_sym___cdecl] = ACTIONS(1751), - [anon_sym___clrcall] = ACTIONS(1751), - [anon_sym___stdcall] = ACTIONS(1751), - [anon_sym___fastcall] = ACTIONS(1751), - [anon_sym___thiscall] = ACTIONS(1751), - [anon_sym___vectorcall] = ACTIONS(1751), - [anon_sym_LBRACE] = ACTIONS(1753), - [anon_sym_LBRACK] = ACTIONS(1751), - [anon_sym_static] = ACTIONS(1751), - [anon_sym_register] = ACTIONS(1751), - [anon_sym_inline] = ACTIONS(1751), - [anon_sym_thread_local] = ACTIONS(1751), - [anon_sym_const] = ACTIONS(1751), - [anon_sym_volatile] = ACTIONS(1751), - [anon_sym_restrict] = ACTIONS(1751), - [anon_sym__Atomic] = ACTIONS(1751), - [anon_sym_mutable] = ACTIONS(1751), - [anon_sym_constexpr] = ACTIONS(1751), - [anon_sym_signed] = ACTIONS(1751), - [anon_sym_unsigned] = ACTIONS(1751), - [anon_sym_long] = ACTIONS(1751), - [anon_sym_short] = ACTIONS(1751), - [sym_primitive_type] = ACTIONS(1751), - [anon_sym_enum] = ACTIONS(1751), - [anon_sym_class] = ACTIONS(1751), - [anon_sym_struct] = ACTIONS(1751), - [anon_sym_union] = ACTIONS(1751), - [anon_sym_if] = ACTIONS(1751), - [anon_sym_switch] = ACTIONS(1751), - [anon_sym_case] = ACTIONS(1751), - [anon_sym_default] = ACTIONS(1751), - [anon_sym_while] = ACTIONS(1751), - [anon_sym_do] = ACTIONS(1751), - [anon_sym_for] = ACTIONS(1751), - [anon_sym_return] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1751), - [anon_sym_continue] = ACTIONS(1751), - [anon_sym_goto] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1753), - [anon_sym_PLUS_PLUS] = ACTIONS(1753), - [anon_sym_sizeof] = ACTIONS(1751), - [sym_number_literal] = ACTIONS(1753), - [anon_sym_L_SQUOTE] = ACTIONS(1753), - [anon_sym_u_SQUOTE] = ACTIONS(1753), - [anon_sym_U_SQUOTE] = ACTIONS(1753), - [anon_sym_u8_SQUOTE] = ACTIONS(1753), - [anon_sym_SQUOTE] = ACTIONS(1753), - [anon_sym_L_DQUOTE] = ACTIONS(1753), - [anon_sym_u_DQUOTE] = ACTIONS(1753), - [anon_sym_U_DQUOTE] = ACTIONS(1753), - [anon_sym_u8_DQUOTE] = ACTIONS(1753), - [anon_sym_DQUOTE] = ACTIONS(1753), - [sym_true] = ACTIONS(1751), - [sym_false] = ACTIONS(1751), - [sym_null] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1751), - [anon_sym_virtual] = ACTIONS(1751), - [anon_sym_explicit] = ACTIONS(1751), - [sym_auto] = ACTIONS(1751), - [anon_sym_typename] = ACTIONS(1751), - [anon_sym_template] = ACTIONS(1751), - [anon_sym_operator] = ACTIONS(1751), - [anon_sym_delete] = ACTIONS(1751), - [anon_sym_throw] = ACTIONS(1751), - [anon_sym_namespace] = ACTIONS(1751), - [anon_sym_using] = ACTIONS(1751), - [anon_sym_static_assert] = ACTIONS(1751), - [anon_sym_co_return] = ACTIONS(1751), - [anon_sym_co_yield] = ACTIONS(1751), - [anon_sym_try] = ACTIONS(1751), - [anon_sym_co_await] = ACTIONS(1751), - [anon_sym_new] = ACTIONS(1751), - [sym_this] = ACTIONS(1751), - [sym_nullptr] = ACTIONS(1751), - [sym_alone_macro] = ACTIONS(1753), - [aux_sym_alone_macro_call_token1] = ACTIONS(1751), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1751), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_FORWARD] = ACTIONS(1751), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1751), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1751), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1751), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1751), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_PS_GET] = ACTIONS(1751), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1751), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1751), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1751), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1751), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1751), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1751), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1751), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1751), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1751), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1751), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1751), - [anon_sym_MOZ_COLD] = ACTIONS(1751), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1751), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1751), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1751), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1751), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1751), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1751), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1751), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1751), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1751), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1751), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1751), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1751), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1751), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1751), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1751), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1751), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1751), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1751), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1751), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1751), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_NONNULL] = ACTIONS(1751), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1751), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1751), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1751), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1751), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1751), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_NORETURN] = ACTIONS(1751), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1751), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1751), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1751), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1751), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1751), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1751), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1751), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1751), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1751), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1751), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1751), - [anon_sym_MOZ_RAII] = ACTIONS(1751), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1751), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1751), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1751), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1751), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1751), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1751), - [sym_raw_string_literal] = ACTIONS(1753), - }, - [532] = { - [ts_builtin_sym_end] = ACTIONS(1853), - [sym_identifier] = ACTIONS(1851), - [aux_sym_preproc_include_token1] = ACTIONS(1851), - [aux_sym_preproc_def_token1] = ACTIONS(1851), - [aux_sym_preproc_if_token1] = ACTIONS(1851), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1851), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1851), - [sym_preproc_directive] = ACTIONS(1851), - [anon_sym_LPAREN2] = ACTIONS(1853), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_AMP_AMP] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_typedef] = ACTIONS(1851), - [anon_sym_extern] = ACTIONS(1851), - [anon_sym___attribute__] = ACTIONS(1851), - [anon_sym_COLON_COLON] = ACTIONS(1853), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1853), - [anon_sym___declspec] = ACTIONS(1851), - [anon_sym___based] = ACTIONS(1851), - [anon_sym___cdecl] = ACTIONS(1851), - [anon_sym___clrcall] = ACTIONS(1851), - [anon_sym___stdcall] = ACTIONS(1851), - [anon_sym___fastcall] = ACTIONS(1851), - [anon_sym___thiscall] = ACTIONS(1851), - [anon_sym___vectorcall] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_register] = ACTIONS(1851), - [anon_sym_inline] = ACTIONS(1851), - [anon_sym_thread_local] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [anon_sym_volatile] = ACTIONS(1851), - [anon_sym_restrict] = ACTIONS(1851), - [anon_sym__Atomic] = ACTIONS(1851), - [anon_sym_mutable] = ACTIONS(1851), - [anon_sym_constexpr] = ACTIONS(1851), - [anon_sym_signed] = ACTIONS(1851), - [anon_sym_unsigned] = ACTIONS(1851), - [anon_sym_long] = ACTIONS(1851), - [anon_sym_short] = ACTIONS(1851), - [sym_primitive_type] = ACTIONS(1851), - [anon_sym_enum] = ACTIONS(1851), - [anon_sym_class] = ACTIONS(1851), - [anon_sym_struct] = ACTIONS(1851), - [anon_sym_union] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1851), - [anon_sym_case] = ACTIONS(1851), - [anon_sym_default] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_goto] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_sizeof] = ACTIONS(1851), - [sym_number_literal] = ACTIONS(1853), - [anon_sym_L_SQUOTE] = ACTIONS(1853), - [anon_sym_u_SQUOTE] = ACTIONS(1853), - [anon_sym_U_SQUOTE] = ACTIONS(1853), - [anon_sym_u8_SQUOTE] = ACTIONS(1853), - [anon_sym_SQUOTE] = ACTIONS(1853), - [anon_sym_L_DQUOTE] = ACTIONS(1853), - [anon_sym_u_DQUOTE] = ACTIONS(1853), - [anon_sym_U_DQUOTE] = ACTIONS(1853), - [anon_sym_u8_DQUOTE] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1853), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_null] = ACTIONS(1851), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1851), - [anon_sym_virtual] = ACTIONS(1851), - [anon_sym_explicit] = ACTIONS(1851), - [sym_auto] = ACTIONS(1851), - [anon_sym_typename] = ACTIONS(1851), - [anon_sym_template] = ACTIONS(1851), - [anon_sym_operator] = ACTIONS(1851), - [anon_sym_delete] = ACTIONS(1851), - [anon_sym_throw] = ACTIONS(1851), - [anon_sym_namespace] = ACTIONS(1851), - [anon_sym_using] = ACTIONS(1851), - [anon_sym_static_assert] = ACTIONS(1851), - [anon_sym_co_return] = ACTIONS(1851), - [anon_sym_co_yield] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_co_await] = ACTIONS(1851), - [anon_sym_new] = ACTIONS(1851), - [sym_this] = ACTIONS(1851), - [sym_nullptr] = ACTIONS(1851), - [sym_alone_macro] = ACTIONS(1853), - [aux_sym_alone_macro_call_token1] = ACTIONS(1851), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1851), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_FORWARD] = ACTIONS(1851), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1851), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1851), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1851), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1851), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_PS_GET] = ACTIONS(1851), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1851), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1851), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1851), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1851), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1851), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1851), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1851), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1851), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1851), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1851), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1851), - [anon_sym_MOZ_COLD] = ACTIONS(1851), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1851), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1851), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1851), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1851), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1851), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1851), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1851), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1851), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1851), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1851), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1851), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1851), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1851), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1851), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1851), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1851), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1851), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1851), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1851), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1851), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_NONNULL] = ACTIONS(1851), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1851), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1851), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1851), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1851), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1851), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_NORETURN] = ACTIONS(1851), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1851), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1851), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1851), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1851), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1851), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1851), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1851), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1851), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1851), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1851), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1851), - [anon_sym_MOZ_RAII] = ACTIONS(1851), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1851), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1851), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1851), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1851), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1851), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1851), - [sym_raw_string_literal] = ACTIONS(1853), - }, - [533] = { - [sym_identifier] = ACTIONS(1751), - [aux_sym_preproc_include_token1] = ACTIONS(1751), - [aux_sym_preproc_def_token1] = ACTIONS(1751), - [aux_sym_preproc_if_token1] = ACTIONS(1751), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1751), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1751), - [sym_preproc_directive] = ACTIONS(1751), - [anon_sym_LPAREN2] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1753), - [anon_sym_TILDE] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_STAR] = ACTIONS(1753), - [anon_sym_AMP_AMP] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_SEMI] = ACTIONS(1753), - [anon_sym_typedef] = ACTIONS(1751), - [anon_sym_extern] = ACTIONS(1751), - [anon_sym___attribute__] = ACTIONS(1751), - [anon_sym_COLON_COLON] = ACTIONS(1753), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1753), - [anon_sym___declspec] = ACTIONS(1751), - [anon_sym___based] = ACTIONS(1751), - [anon_sym___cdecl] = ACTIONS(1751), - [anon_sym___clrcall] = ACTIONS(1751), - [anon_sym___stdcall] = ACTIONS(1751), - [anon_sym___fastcall] = ACTIONS(1751), - [anon_sym___thiscall] = ACTIONS(1751), - [anon_sym___vectorcall] = ACTIONS(1751), - [anon_sym_LBRACE] = ACTIONS(1753), - [anon_sym_RBRACE] = ACTIONS(1753), - [anon_sym_LBRACK] = ACTIONS(1751), - [anon_sym_static] = ACTIONS(1751), - [anon_sym_register] = ACTIONS(1751), - [anon_sym_inline] = ACTIONS(1751), - [anon_sym_thread_local] = ACTIONS(1751), - [anon_sym_const] = ACTIONS(1751), - [anon_sym_volatile] = ACTIONS(1751), - [anon_sym_restrict] = ACTIONS(1751), - [anon_sym__Atomic] = ACTIONS(1751), - [anon_sym_mutable] = ACTIONS(1751), - [anon_sym_constexpr] = ACTIONS(1751), - [anon_sym_signed] = ACTIONS(1751), - [anon_sym_unsigned] = ACTIONS(1751), - [anon_sym_long] = ACTIONS(1751), - [anon_sym_short] = ACTIONS(1751), - [sym_primitive_type] = ACTIONS(1751), - [anon_sym_enum] = ACTIONS(1751), - [anon_sym_class] = ACTIONS(1751), - [anon_sym_struct] = ACTIONS(1751), - [anon_sym_union] = ACTIONS(1751), - [anon_sym_if] = ACTIONS(1751), - [anon_sym_switch] = ACTIONS(1751), - [anon_sym_case] = ACTIONS(1751), - [anon_sym_default] = ACTIONS(1751), - [anon_sym_while] = ACTIONS(1751), - [anon_sym_do] = ACTIONS(1751), - [anon_sym_for] = ACTIONS(1751), - [anon_sym_return] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1751), - [anon_sym_continue] = ACTIONS(1751), - [anon_sym_goto] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1753), - [anon_sym_PLUS_PLUS] = ACTIONS(1753), - [anon_sym_sizeof] = ACTIONS(1751), - [sym_number_literal] = ACTIONS(1753), - [anon_sym_L_SQUOTE] = ACTIONS(1753), - [anon_sym_u_SQUOTE] = ACTIONS(1753), - [anon_sym_U_SQUOTE] = ACTIONS(1753), - [anon_sym_u8_SQUOTE] = ACTIONS(1753), - [anon_sym_SQUOTE] = ACTIONS(1753), - [anon_sym_L_DQUOTE] = ACTIONS(1753), - [anon_sym_u_DQUOTE] = ACTIONS(1753), - [anon_sym_U_DQUOTE] = ACTIONS(1753), - [anon_sym_u8_DQUOTE] = ACTIONS(1753), - [anon_sym_DQUOTE] = ACTIONS(1753), - [sym_true] = ACTIONS(1751), - [sym_false] = ACTIONS(1751), - [sym_null] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1751), - [anon_sym_virtual] = ACTIONS(1751), - [anon_sym_explicit] = ACTIONS(1751), - [sym_auto] = ACTIONS(1751), - [anon_sym_typename] = ACTIONS(1751), - [anon_sym_template] = ACTIONS(1751), - [anon_sym_operator] = ACTIONS(1751), - [anon_sym_delete] = ACTIONS(1751), - [anon_sym_throw] = ACTIONS(1751), - [anon_sym_namespace] = ACTIONS(1751), - [anon_sym_using] = ACTIONS(1751), - [anon_sym_static_assert] = ACTIONS(1751), - [anon_sym_co_return] = ACTIONS(1751), - [anon_sym_co_yield] = ACTIONS(1751), - [anon_sym_try] = ACTIONS(1751), - [anon_sym_co_await] = ACTIONS(1751), - [anon_sym_new] = ACTIONS(1751), - [sym_this] = ACTIONS(1751), - [sym_nullptr] = ACTIONS(1751), - [sym_alone_macro] = ACTIONS(1753), - [aux_sym_alone_macro_call_token1] = ACTIONS(1751), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1751), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_FORWARD] = ACTIONS(1751), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1751), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1751), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1751), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1751), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_PS_GET] = ACTIONS(1751), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1751), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1751), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1751), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1751), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1751), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1751), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1751), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1751), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1751), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1751), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1751), - [anon_sym_MOZ_COLD] = ACTIONS(1751), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1751), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1751), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1751), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1751), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1751), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1751), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1751), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1751), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1751), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1751), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1751), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1751), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1751), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1751), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1751), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1751), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1751), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1751), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1751), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1751), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_NONNULL] = ACTIONS(1751), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1751), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1751), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1751), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1751), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1751), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_NORETURN] = ACTIONS(1751), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1751), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1751), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1751), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1751), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1751), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1751), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1751), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1751), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1751), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1751), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1751), - [anon_sym_MOZ_RAII] = ACTIONS(1751), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1751), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1751), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1751), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1751), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1751), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1751), - [sym_raw_string_literal] = ACTIONS(1753), - }, - [534] = { - [sym_identifier] = ACTIONS(1803), - [aux_sym_preproc_include_token1] = ACTIONS(1803), - [aux_sym_preproc_def_token1] = ACTIONS(1803), - [aux_sym_preproc_if_token1] = ACTIONS(1803), - [aux_sym_preproc_if_token2] = ACTIONS(1803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1803), - [sym_preproc_directive] = ACTIONS(1803), - [anon_sym_LPAREN2] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_AMP_AMP] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_typedef] = ACTIONS(1803), - [anon_sym_extern] = ACTIONS(1803), - [anon_sym___attribute__] = ACTIONS(1803), - [anon_sym_COLON_COLON] = ACTIONS(1805), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1805), - [anon_sym___declspec] = ACTIONS(1803), - [anon_sym___based] = ACTIONS(1803), - [anon_sym___cdecl] = ACTIONS(1803), - [anon_sym___clrcall] = ACTIONS(1803), - [anon_sym___stdcall] = ACTIONS(1803), - [anon_sym___fastcall] = ACTIONS(1803), - [anon_sym___thiscall] = ACTIONS(1803), - [anon_sym___vectorcall] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_register] = ACTIONS(1803), - [anon_sym_inline] = ACTIONS(1803), - [anon_sym_thread_local] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_volatile] = ACTIONS(1803), - [anon_sym_restrict] = ACTIONS(1803), - [anon_sym__Atomic] = ACTIONS(1803), - [anon_sym_mutable] = ACTIONS(1803), - [anon_sym_constexpr] = ACTIONS(1803), - [anon_sym_signed] = ACTIONS(1803), - [anon_sym_unsigned] = ACTIONS(1803), - [anon_sym_long] = ACTIONS(1803), - [anon_sym_short] = ACTIONS(1803), - [sym_primitive_type] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_struct] = ACTIONS(1803), - [anon_sym_union] = ACTIONS(1803), - [anon_sym_if] = ACTIONS(1803), - [anon_sym_switch] = ACTIONS(1803), - [anon_sym_case] = ACTIONS(1803), - [anon_sym_default] = ACTIONS(1803), - [anon_sym_while] = ACTIONS(1803), - [anon_sym_do] = ACTIONS(1803), - [anon_sym_for] = ACTIONS(1803), - [anon_sym_return] = ACTIONS(1803), - [anon_sym_break] = ACTIONS(1803), - [anon_sym_continue] = ACTIONS(1803), - [anon_sym_goto] = ACTIONS(1803), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_sizeof] = ACTIONS(1803), - [sym_number_literal] = ACTIONS(1805), - [anon_sym_L_SQUOTE] = ACTIONS(1805), - [anon_sym_u_SQUOTE] = ACTIONS(1805), - [anon_sym_U_SQUOTE] = ACTIONS(1805), - [anon_sym_u8_SQUOTE] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(1805), - [anon_sym_L_DQUOTE] = ACTIONS(1805), - [anon_sym_u_DQUOTE] = ACTIONS(1805), - [anon_sym_U_DQUOTE] = ACTIONS(1805), - [anon_sym_u8_DQUOTE] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(1805), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_null] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1803), - [anon_sym_virtual] = ACTIONS(1803), - [anon_sym_explicit] = ACTIONS(1803), - [sym_auto] = ACTIONS(1803), - [anon_sym_typename] = ACTIONS(1803), - [anon_sym_template] = ACTIONS(1803), - [anon_sym_operator] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1803), - [anon_sym_throw] = ACTIONS(1803), - [anon_sym_namespace] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1803), - [anon_sym_static_assert] = ACTIONS(1803), - [anon_sym_co_return] = ACTIONS(1803), - [anon_sym_co_yield] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1803), - [anon_sym_co_await] = ACTIONS(1803), - [anon_sym_new] = ACTIONS(1803), - [sym_this] = ACTIONS(1803), - [sym_nullptr] = ACTIONS(1803), - [sym_alone_macro] = ACTIONS(1805), - [aux_sym_alone_macro_call_token1] = ACTIONS(1803), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1803), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_FORWARD] = ACTIONS(1803), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1803), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1803), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1803), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1803), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_PS_GET] = ACTIONS(1803), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1803), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1803), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1803), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1803), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1803), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1803), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1803), - [anon_sym_MOZ_COLD] = ACTIONS(1803), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1803), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1803), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1803), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1803), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1803), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1803), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1803), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1803), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1803), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1803), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1803), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1803), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1803), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_NONNULL] = ACTIONS(1803), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1803), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1803), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1803), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1803), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1803), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1803), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1803), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1803), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1803), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1803), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1803), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1803), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1803), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1803), - [anon_sym_MOZ_RAII] = ACTIONS(1803), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1803), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1803), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1803), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1803), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1803), - [sym_raw_string_literal] = ACTIONS(1805), - }, - [535] = { - [ts_builtin_sym_end] = ACTIONS(1857), - [sym_identifier] = ACTIONS(1855), - [aux_sym_preproc_include_token1] = ACTIONS(1855), - [aux_sym_preproc_def_token1] = ACTIONS(1855), - [aux_sym_preproc_if_token1] = ACTIONS(1855), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1855), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1855), - [sym_preproc_directive] = ACTIONS(1855), - [anon_sym_LPAREN2] = ACTIONS(1857), - [anon_sym_BANG] = ACTIONS(1857), - [anon_sym_TILDE] = ACTIONS(1857), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1857), - [anon_sym_AMP_AMP] = ACTIONS(1857), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_SEMI] = ACTIONS(1857), - [anon_sym_typedef] = ACTIONS(1855), - [anon_sym_extern] = ACTIONS(1855), - [anon_sym___attribute__] = ACTIONS(1855), - [anon_sym_COLON_COLON] = ACTIONS(1857), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1857), - [anon_sym___declspec] = ACTIONS(1855), - [anon_sym___based] = ACTIONS(1855), - [anon_sym___cdecl] = ACTIONS(1855), - [anon_sym___clrcall] = ACTIONS(1855), - [anon_sym___stdcall] = ACTIONS(1855), - [anon_sym___fastcall] = ACTIONS(1855), - [anon_sym___thiscall] = ACTIONS(1855), - [anon_sym___vectorcall] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_register] = ACTIONS(1855), - [anon_sym_inline] = ACTIONS(1855), - [anon_sym_thread_local] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_volatile] = ACTIONS(1855), - [anon_sym_restrict] = ACTIONS(1855), - [anon_sym__Atomic] = ACTIONS(1855), - [anon_sym_mutable] = ACTIONS(1855), - [anon_sym_constexpr] = ACTIONS(1855), - [anon_sym_signed] = ACTIONS(1855), - [anon_sym_unsigned] = ACTIONS(1855), - [anon_sym_long] = ACTIONS(1855), - [anon_sym_short] = ACTIONS(1855), - [sym_primitive_type] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), - [anon_sym_class] = ACTIONS(1855), - [anon_sym_struct] = ACTIONS(1855), - [anon_sym_union] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(1855), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_goto] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1857), - [anon_sym_PLUS_PLUS] = ACTIONS(1857), - [anon_sym_sizeof] = ACTIONS(1855), - [sym_number_literal] = ACTIONS(1857), - [anon_sym_L_SQUOTE] = ACTIONS(1857), - [anon_sym_u_SQUOTE] = ACTIONS(1857), - [anon_sym_U_SQUOTE] = ACTIONS(1857), - [anon_sym_u8_SQUOTE] = ACTIONS(1857), - [anon_sym_SQUOTE] = ACTIONS(1857), - [anon_sym_L_DQUOTE] = ACTIONS(1857), - [anon_sym_u_DQUOTE] = ACTIONS(1857), - [anon_sym_U_DQUOTE] = ACTIONS(1857), - [anon_sym_u8_DQUOTE] = ACTIONS(1857), - [anon_sym_DQUOTE] = ACTIONS(1857), - [sym_true] = ACTIONS(1855), - [sym_false] = ACTIONS(1855), - [sym_null] = ACTIONS(1855), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1855), - [anon_sym_virtual] = ACTIONS(1855), - [anon_sym_explicit] = ACTIONS(1855), - [sym_auto] = ACTIONS(1855), - [anon_sym_typename] = ACTIONS(1855), - [anon_sym_template] = ACTIONS(1855), - [anon_sym_operator] = ACTIONS(1855), - [anon_sym_delete] = ACTIONS(1855), - [anon_sym_throw] = ACTIONS(1855), - [anon_sym_namespace] = ACTIONS(1855), - [anon_sym_using] = ACTIONS(1855), - [anon_sym_static_assert] = ACTIONS(1855), - [anon_sym_co_return] = ACTIONS(1855), - [anon_sym_co_yield] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_co_await] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1855), - [sym_this] = ACTIONS(1855), - [sym_nullptr] = ACTIONS(1855), - [sym_alone_macro] = ACTIONS(1857), - [aux_sym_alone_macro_call_token1] = ACTIONS(1855), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1855), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_FORWARD] = ACTIONS(1855), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1855), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1855), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1855), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1855), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_PS_GET] = ACTIONS(1855), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1855), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1855), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1855), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1855), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1855), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1855), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1855), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1855), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1855), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1855), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1855), - [anon_sym_MOZ_COLD] = ACTIONS(1855), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1855), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1855), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1855), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1855), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1855), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1855), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1855), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1855), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1855), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1855), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1855), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1855), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1855), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1855), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1855), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1855), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1855), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1855), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1855), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1855), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_NONNULL] = ACTIONS(1855), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1855), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1855), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1855), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1855), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1855), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_NORETURN] = ACTIONS(1855), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1855), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1855), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1855), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1855), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1855), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1855), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1855), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1855), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1855), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1855), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1855), - [anon_sym_MOZ_RAII] = ACTIONS(1855), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1855), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1855), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1855), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1855), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1855), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1855), - [sym_raw_string_literal] = ACTIONS(1857), - }, - [536] = { - [ts_builtin_sym_end] = ACTIONS(1861), - [sym_identifier] = ACTIONS(1859), - [aux_sym_preproc_include_token1] = ACTIONS(1859), - [aux_sym_preproc_def_token1] = ACTIONS(1859), - [aux_sym_preproc_if_token1] = ACTIONS(1859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1859), - [sym_preproc_directive] = ACTIONS(1859), - [anon_sym_LPAREN2] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1859), - [anon_sym_PLUS] = ACTIONS(1859), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1859), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_typedef] = ACTIONS(1859), - [anon_sym_extern] = ACTIONS(1859), - [anon_sym___attribute__] = ACTIONS(1859), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1861), - [anon_sym___declspec] = ACTIONS(1859), - [anon_sym___based] = ACTIONS(1859), - [anon_sym___cdecl] = ACTIONS(1859), - [anon_sym___clrcall] = ACTIONS(1859), - [anon_sym___stdcall] = ACTIONS(1859), - [anon_sym___fastcall] = ACTIONS(1859), - [anon_sym___thiscall] = ACTIONS(1859), - [anon_sym___vectorcall] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_static] = ACTIONS(1859), - [anon_sym_register] = ACTIONS(1859), - [anon_sym_inline] = ACTIONS(1859), - [anon_sym_thread_local] = ACTIONS(1859), - [anon_sym_const] = ACTIONS(1859), - [anon_sym_volatile] = ACTIONS(1859), - [anon_sym_restrict] = ACTIONS(1859), - [anon_sym__Atomic] = ACTIONS(1859), - [anon_sym_mutable] = ACTIONS(1859), - [anon_sym_constexpr] = ACTIONS(1859), - [anon_sym_signed] = ACTIONS(1859), - [anon_sym_unsigned] = ACTIONS(1859), - [anon_sym_long] = ACTIONS(1859), - [anon_sym_short] = ACTIONS(1859), - [sym_primitive_type] = ACTIONS(1859), - [anon_sym_enum] = ACTIONS(1859), - [anon_sym_class] = ACTIONS(1859), - [anon_sym_struct] = ACTIONS(1859), - [anon_sym_union] = ACTIONS(1859), - [anon_sym_if] = ACTIONS(1859), - [anon_sym_switch] = ACTIONS(1859), - [anon_sym_case] = ACTIONS(1859), - [anon_sym_default] = ACTIONS(1859), - [anon_sym_while] = ACTIONS(1859), - [anon_sym_do] = ACTIONS(1859), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(1859), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1859), - [anon_sym_goto] = ACTIONS(1859), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_sizeof] = ACTIONS(1859), - [sym_number_literal] = ACTIONS(1861), - [anon_sym_L_SQUOTE] = ACTIONS(1861), - [anon_sym_u_SQUOTE] = ACTIONS(1861), - [anon_sym_U_SQUOTE] = ACTIONS(1861), - [anon_sym_u8_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_L_DQUOTE] = ACTIONS(1861), - [anon_sym_u_DQUOTE] = ACTIONS(1861), - [anon_sym_U_DQUOTE] = ACTIONS(1861), - [anon_sym_u8_DQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [sym_true] = ACTIONS(1859), - [sym_false] = ACTIONS(1859), - [sym_null] = ACTIONS(1859), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1859), - [anon_sym_virtual] = ACTIONS(1859), - [anon_sym_explicit] = ACTIONS(1859), - [sym_auto] = ACTIONS(1859), - [anon_sym_typename] = ACTIONS(1859), - [anon_sym_template] = ACTIONS(1859), - [anon_sym_operator] = ACTIONS(1859), - [anon_sym_delete] = ACTIONS(1859), - [anon_sym_throw] = ACTIONS(1859), - [anon_sym_namespace] = ACTIONS(1859), - [anon_sym_using] = ACTIONS(1859), - [anon_sym_static_assert] = ACTIONS(1859), - [anon_sym_co_return] = ACTIONS(1859), - [anon_sym_co_yield] = ACTIONS(1859), - [anon_sym_try] = ACTIONS(1859), - [anon_sym_co_await] = ACTIONS(1859), - [anon_sym_new] = ACTIONS(1859), - [sym_this] = ACTIONS(1859), - [sym_nullptr] = ACTIONS(1859), - [sym_alone_macro] = ACTIONS(1861), - [aux_sym_alone_macro_call_token1] = ACTIONS(1859), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_FORWARD] = ACTIONS(1859), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_PS_GET] = ACTIONS(1859), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1859), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1859), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1859), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1859), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1859), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1859), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1859), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1859), - [anon_sym_MOZ_COLD] = ACTIONS(1859), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1859), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1859), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1859), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1859), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1859), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1859), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1859), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1859), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1859), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1859), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1859), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1859), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1859), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1859), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1859), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1859), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1859), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1859), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1859), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1859), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_NONNULL] = ACTIONS(1859), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1859), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1859), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1859), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1859), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1859), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_NORETURN] = ACTIONS(1859), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1859), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1859), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1859), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1859), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1859), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1859), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1859), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1859), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1859), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1859), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1859), - [anon_sym_MOZ_RAII] = ACTIONS(1859), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1859), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1859), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1859), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1859), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1859), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1859), - [sym_raw_string_literal] = ACTIONS(1861), - }, - [537] = { - [sym_identifier] = ACTIONS(1863), - [aux_sym_preproc_include_token1] = ACTIONS(1863), - [aux_sym_preproc_def_token1] = ACTIONS(1863), - [aux_sym_preproc_if_token1] = ACTIONS(1863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1863), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1863), - [sym_preproc_directive] = ACTIONS(1863), - [anon_sym_LPAREN2] = ACTIONS(1865), - [anon_sym_BANG] = ACTIONS(1865), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_AMP_AMP] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1865), - [anon_sym_typedef] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1863), - [anon_sym___attribute__] = ACTIONS(1863), - [anon_sym_COLON_COLON] = ACTIONS(1865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1865), - [anon_sym___declspec] = ACTIONS(1863), - [anon_sym___based] = ACTIONS(1863), - [anon_sym___cdecl] = ACTIONS(1863), - [anon_sym___clrcall] = ACTIONS(1863), - [anon_sym___stdcall] = ACTIONS(1863), - [anon_sym___fastcall] = ACTIONS(1863), - [anon_sym___thiscall] = ACTIONS(1863), - [anon_sym___vectorcall] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_static] = ACTIONS(1863), - [anon_sym_register] = ACTIONS(1863), - [anon_sym_inline] = ACTIONS(1863), - [anon_sym_thread_local] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [anon_sym_volatile] = ACTIONS(1863), - [anon_sym_restrict] = ACTIONS(1863), - [anon_sym__Atomic] = ACTIONS(1863), - [anon_sym_mutable] = ACTIONS(1863), - [anon_sym_constexpr] = ACTIONS(1863), - [anon_sym_signed] = ACTIONS(1863), - [anon_sym_unsigned] = ACTIONS(1863), - [anon_sym_long] = ACTIONS(1863), - [anon_sym_short] = ACTIONS(1863), - [sym_primitive_type] = ACTIONS(1863), - [anon_sym_enum] = ACTIONS(1863), - [anon_sym_class] = ACTIONS(1863), - [anon_sym_struct] = ACTIONS(1863), - [anon_sym_union] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_switch] = ACTIONS(1863), - [anon_sym_case] = ACTIONS(1863), - [anon_sym_default] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_goto] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1865), - [anon_sym_PLUS_PLUS] = ACTIONS(1865), - [anon_sym_sizeof] = ACTIONS(1863), - [sym_number_literal] = ACTIONS(1865), - [anon_sym_L_SQUOTE] = ACTIONS(1865), - [anon_sym_u_SQUOTE] = ACTIONS(1865), - [anon_sym_U_SQUOTE] = ACTIONS(1865), - [anon_sym_u8_SQUOTE] = ACTIONS(1865), - [anon_sym_SQUOTE] = ACTIONS(1865), - [anon_sym_L_DQUOTE] = ACTIONS(1865), - [anon_sym_u_DQUOTE] = ACTIONS(1865), - [anon_sym_U_DQUOTE] = ACTIONS(1865), - [anon_sym_u8_DQUOTE] = ACTIONS(1865), - [anon_sym_DQUOTE] = ACTIONS(1865), - [sym_true] = ACTIONS(1863), - [sym_false] = ACTIONS(1863), - [sym_null] = ACTIONS(1863), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1863), - [anon_sym_virtual] = ACTIONS(1863), - [anon_sym_explicit] = ACTIONS(1863), - [sym_auto] = ACTIONS(1863), - [anon_sym_typename] = ACTIONS(1863), - [anon_sym_template] = ACTIONS(1863), - [anon_sym_operator] = ACTIONS(1863), - [anon_sym_delete] = ACTIONS(1863), - [anon_sym_throw] = ACTIONS(1863), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_using] = ACTIONS(1863), - [anon_sym_static_assert] = ACTIONS(1863), - [anon_sym_co_return] = ACTIONS(1863), - [anon_sym_co_yield] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_co_await] = ACTIONS(1863), - [anon_sym_new] = ACTIONS(1863), - [sym_this] = ACTIONS(1863), - [sym_nullptr] = ACTIONS(1863), - [sym_alone_macro] = ACTIONS(1865), - [aux_sym_alone_macro_call_token1] = ACTIONS(1863), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1863), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_FORWARD] = ACTIONS(1863), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1863), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1863), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1863), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1863), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_PS_GET] = ACTIONS(1863), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1863), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1863), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1863), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1863), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1863), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1863), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1863), - [anon_sym_MOZ_COLD] = ACTIONS(1863), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1863), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1863), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1863), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1863), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1863), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1863), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1863), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1863), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1863), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1863), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1863), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1863), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1863), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_NONNULL] = ACTIONS(1863), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1863), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1863), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1863), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1863), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1863), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1863), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1863), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1863), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1863), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1863), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1863), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1863), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1863), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1863), - [anon_sym_MOZ_RAII] = ACTIONS(1863), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1863), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1863), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1863), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1863), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1863), - [sym_raw_string_literal] = ACTIONS(1865), - }, - [538] = { - [sym_identifier] = ACTIONS(1867), - [aux_sym_preproc_include_token1] = ACTIONS(1867), - [aux_sym_preproc_def_token1] = ACTIONS(1867), - [aux_sym_preproc_if_token1] = ACTIONS(1867), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1867), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1867), - [sym_preproc_directive] = ACTIONS(1867), - [anon_sym_LPAREN2] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_AMP_AMP] = ACTIONS(1869), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_typedef] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1867), - [anon_sym___attribute__] = ACTIONS(1867), - [anon_sym_COLON_COLON] = ACTIONS(1869), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1869), - [anon_sym___declspec] = ACTIONS(1867), - [anon_sym___based] = ACTIONS(1867), - [anon_sym___cdecl] = ACTIONS(1867), - [anon_sym___clrcall] = ACTIONS(1867), - [anon_sym___stdcall] = ACTIONS(1867), - [anon_sym___fastcall] = ACTIONS(1867), - [anon_sym___thiscall] = ACTIONS(1867), - [anon_sym___vectorcall] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1867), - [anon_sym_register] = ACTIONS(1867), - [anon_sym_inline] = ACTIONS(1867), - [anon_sym_thread_local] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_restrict] = ACTIONS(1867), - [anon_sym__Atomic] = ACTIONS(1867), - [anon_sym_mutable] = ACTIONS(1867), - [anon_sym_constexpr] = ACTIONS(1867), - [anon_sym_signed] = ACTIONS(1867), - [anon_sym_unsigned] = ACTIONS(1867), - [anon_sym_long] = ACTIONS(1867), - [anon_sym_short] = ACTIONS(1867), - [sym_primitive_type] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1867), - [anon_sym_class] = ACTIONS(1867), - [anon_sym_struct] = ACTIONS(1867), - [anon_sym_union] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1867), - [anon_sym_case] = ACTIONS(1867), - [anon_sym_default] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1867), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_goto] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [anon_sym_PLUS_PLUS] = ACTIONS(1869), - [anon_sym_sizeof] = ACTIONS(1867), - [sym_number_literal] = ACTIONS(1869), - [anon_sym_L_SQUOTE] = ACTIONS(1869), - [anon_sym_u_SQUOTE] = ACTIONS(1869), - [anon_sym_U_SQUOTE] = ACTIONS(1869), - [anon_sym_u8_SQUOTE] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_L_DQUOTE] = ACTIONS(1869), - [anon_sym_u_DQUOTE] = ACTIONS(1869), - [anon_sym_U_DQUOTE] = ACTIONS(1869), - [anon_sym_u8_DQUOTE] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1869), - [sym_true] = ACTIONS(1867), - [sym_false] = ACTIONS(1867), - [sym_null] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1867), - [anon_sym_virtual] = ACTIONS(1867), - [anon_sym_explicit] = ACTIONS(1867), - [sym_auto] = ACTIONS(1867), - [anon_sym_typename] = ACTIONS(1867), - [anon_sym_template] = ACTIONS(1867), - [anon_sym_operator] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_namespace] = ACTIONS(1867), - [anon_sym_using] = ACTIONS(1867), - [anon_sym_static_assert] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1867), - [anon_sym_co_yield] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_co_await] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(1867), - [sym_this] = ACTIONS(1867), - [sym_nullptr] = ACTIONS(1867), - [sym_alone_macro] = ACTIONS(1869), - [aux_sym_alone_macro_call_token1] = ACTIONS(1867), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1867), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_FORWARD] = ACTIONS(1867), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1867), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1867), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1867), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1867), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_PS_GET] = ACTIONS(1867), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1867), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1867), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1867), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1867), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1867), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1867), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1867), - [anon_sym_MOZ_COLD] = ACTIONS(1867), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1867), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1867), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1867), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1867), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1867), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1867), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1867), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1867), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1867), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1867), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1867), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1867), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1867), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_NONNULL] = ACTIONS(1867), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1867), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1867), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1867), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1867), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1867), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1867), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1867), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1867), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1867), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1867), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1867), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1867), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1867), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1867), - [anon_sym_MOZ_RAII] = ACTIONS(1867), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1867), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1867), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1867), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1867), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1867), - [sym_raw_string_literal] = ACTIONS(1869), - }, - [539] = { - [sym_identifier] = ACTIONS(1815), - [aux_sym_preproc_include_token1] = ACTIONS(1815), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token2] = ACTIONS(1815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1815), - [sym_preproc_directive] = ACTIONS(1815), - [anon_sym_LPAREN2] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_typedef] = ACTIONS(1815), - [anon_sym_extern] = ACTIONS(1815), - [anon_sym___attribute__] = ACTIONS(1815), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1817), - [anon_sym___declspec] = ACTIONS(1815), - [anon_sym___based] = ACTIONS(1815), - [anon_sym___cdecl] = ACTIONS(1815), - [anon_sym___clrcall] = ACTIONS(1815), - [anon_sym___stdcall] = ACTIONS(1815), - [anon_sym___fastcall] = ACTIONS(1815), - [anon_sym___thiscall] = ACTIONS(1815), - [anon_sym___vectorcall] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_static] = ACTIONS(1815), - [anon_sym_register] = ACTIONS(1815), - [anon_sym_inline] = ACTIONS(1815), - [anon_sym_thread_local] = ACTIONS(1815), - [anon_sym_const] = ACTIONS(1815), - [anon_sym_volatile] = ACTIONS(1815), - [anon_sym_restrict] = ACTIONS(1815), - [anon_sym__Atomic] = ACTIONS(1815), - [anon_sym_mutable] = ACTIONS(1815), - [anon_sym_constexpr] = ACTIONS(1815), - [anon_sym_signed] = ACTIONS(1815), - [anon_sym_unsigned] = ACTIONS(1815), - [anon_sym_long] = ACTIONS(1815), - [anon_sym_short] = ACTIONS(1815), - [sym_primitive_type] = ACTIONS(1815), - [anon_sym_enum] = ACTIONS(1815), - [anon_sym_class] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1815), - [anon_sym_union] = ACTIONS(1815), - [anon_sym_if] = ACTIONS(1815), - [anon_sym_switch] = ACTIONS(1815), - [anon_sym_case] = ACTIONS(1815), - [anon_sym_default] = ACTIONS(1815), - [anon_sym_while] = ACTIONS(1815), - [anon_sym_do] = ACTIONS(1815), - [anon_sym_for] = ACTIONS(1815), - [anon_sym_return] = ACTIONS(1815), - [anon_sym_break] = ACTIONS(1815), - [anon_sym_continue] = ACTIONS(1815), - [anon_sym_goto] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_sizeof] = ACTIONS(1815), - [sym_number_literal] = ACTIONS(1817), - [anon_sym_L_SQUOTE] = ACTIONS(1817), - [anon_sym_u_SQUOTE] = ACTIONS(1817), - [anon_sym_U_SQUOTE] = ACTIONS(1817), - [anon_sym_u8_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_L_DQUOTE] = ACTIONS(1817), - [anon_sym_u_DQUOTE] = ACTIONS(1817), - [anon_sym_U_DQUOTE] = ACTIONS(1817), - [anon_sym_u8_DQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [sym_true] = ACTIONS(1815), - [sym_false] = ACTIONS(1815), - [sym_null] = ACTIONS(1815), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1815), - [anon_sym_virtual] = ACTIONS(1815), - [anon_sym_explicit] = ACTIONS(1815), - [sym_auto] = ACTIONS(1815), - [anon_sym_typename] = ACTIONS(1815), - [anon_sym_template] = ACTIONS(1815), - [anon_sym_operator] = ACTIONS(1815), - [anon_sym_delete] = ACTIONS(1815), - [anon_sym_throw] = ACTIONS(1815), - [anon_sym_namespace] = ACTIONS(1815), - [anon_sym_using] = ACTIONS(1815), - [anon_sym_static_assert] = ACTIONS(1815), - [anon_sym_co_return] = ACTIONS(1815), - [anon_sym_co_yield] = ACTIONS(1815), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_co_await] = ACTIONS(1815), - [anon_sym_new] = ACTIONS(1815), - [sym_this] = ACTIONS(1815), - [sym_nullptr] = ACTIONS(1815), - [sym_alone_macro] = ACTIONS(1817), - [aux_sym_alone_macro_call_token1] = ACTIONS(1815), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1815), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_FORWARD] = ACTIONS(1815), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1815), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1815), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1815), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1815), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_PS_GET] = ACTIONS(1815), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1815), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1815), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1815), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1815), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1815), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1815), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1815), - [anon_sym_MOZ_COLD] = ACTIONS(1815), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1815), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1815), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1815), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1815), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1815), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1815), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1815), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1815), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1815), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1815), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1815), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1815), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1815), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_NONNULL] = ACTIONS(1815), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1815), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1815), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1815), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1815), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1815), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1815), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1815), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1815), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1815), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1815), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1815), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1815), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1815), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1815), - [anon_sym_MOZ_RAII] = ACTIONS(1815), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1815), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1815), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1815), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1815), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1815), - [sym_raw_string_literal] = ACTIONS(1817), - }, - [540] = { - [sym_identifier] = ACTIONS(1727), - [aux_sym_preproc_include_token1] = ACTIONS(1727), - [aux_sym_preproc_def_token1] = ACTIONS(1727), - [aux_sym_preproc_if_token1] = ACTIONS(1727), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1727), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1727), - [sym_preproc_directive] = ACTIONS(1727), - [anon_sym_LPAREN2] = ACTIONS(1729), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1729), - [anon_sym_typedef] = ACTIONS(1727), - [anon_sym_extern] = ACTIONS(1727), - [anon_sym___attribute__] = ACTIONS(1727), - [anon_sym_COLON_COLON] = ACTIONS(1729), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), - [anon_sym___declspec] = ACTIONS(1727), - [anon_sym___based] = ACTIONS(1727), - [anon_sym___cdecl] = ACTIONS(1727), - [anon_sym___clrcall] = ACTIONS(1727), - [anon_sym___stdcall] = ACTIONS(1727), - [anon_sym___fastcall] = ACTIONS(1727), - [anon_sym___thiscall] = ACTIONS(1727), - [anon_sym___vectorcall] = ACTIONS(1727), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_RBRACE] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_static] = ACTIONS(1727), - [anon_sym_register] = ACTIONS(1727), - [anon_sym_inline] = ACTIONS(1727), - [anon_sym_thread_local] = ACTIONS(1727), - [anon_sym_const] = ACTIONS(1727), - [anon_sym_volatile] = ACTIONS(1727), - [anon_sym_restrict] = ACTIONS(1727), - [anon_sym__Atomic] = ACTIONS(1727), - [anon_sym_mutable] = ACTIONS(1727), - [anon_sym_constexpr] = ACTIONS(1727), - [anon_sym_signed] = ACTIONS(1727), - [anon_sym_unsigned] = ACTIONS(1727), - [anon_sym_long] = ACTIONS(1727), - [anon_sym_short] = ACTIONS(1727), - [sym_primitive_type] = ACTIONS(1727), - [anon_sym_enum] = ACTIONS(1727), - [anon_sym_class] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(1727), - [anon_sym_union] = ACTIONS(1727), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_switch] = ACTIONS(1727), - [anon_sym_case] = ACTIONS(1727), - [anon_sym_default] = ACTIONS(1727), - [anon_sym_while] = ACTIONS(1727), - [anon_sym_do] = ACTIONS(1727), - [anon_sym_for] = ACTIONS(1727), - [anon_sym_return] = ACTIONS(1727), - [anon_sym_break] = ACTIONS(1727), - [anon_sym_continue] = ACTIONS(1727), - [anon_sym_goto] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1729), - [anon_sym_sizeof] = ACTIONS(1727), - [sym_number_literal] = ACTIONS(1729), - [anon_sym_L_SQUOTE] = ACTIONS(1729), - [anon_sym_u_SQUOTE] = ACTIONS(1729), - [anon_sym_U_SQUOTE] = ACTIONS(1729), - [anon_sym_u8_SQUOTE] = ACTIONS(1729), - [anon_sym_SQUOTE] = ACTIONS(1729), - [anon_sym_L_DQUOTE] = ACTIONS(1729), - [anon_sym_u_DQUOTE] = ACTIONS(1729), - [anon_sym_U_DQUOTE] = ACTIONS(1729), - [anon_sym_u8_DQUOTE] = ACTIONS(1729), - [anon_sym_DQUOTE] = ACTIONS(1729), - [sym_true] = ACTIONS(1727), - [sym_false] = ACTIONS(1727), - [sym_null] = ACTIONS(1727), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1727), - [anon_sym_virtual] = ACTIONS(1727), - [anon_sym_explicit] = ACTIONS(1727), - [sym_auto] = ACTIONS(1727), - [anon_sym_typename] = ACTIONS(1727), - [anon_sym_template] = ACTIONS(1727), - [anon_sym_operator] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_throw] = ACTIONS(1727), - [anon_sym_namespace] = ACTIONS(1727), - [anon_sym_using] = ACTIONS(1727), - [anon_sym_static_assert] = ACTIONS(1727), - [anon_sym_co_return] = ACTIONS(1727), - [anon_sym_co_yield] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1727), - [anon_sym_co_await] = ACTIONS(1727), - [anon_sym_new] = ACTIONS(1727), - [sym_this] = ACTIONS(1727), - [sym_nullptr] = ACTIONS(1727), - [sym_alone_macro] = ACTIONS(1729), - [aux_sym_alone_macro_call_token1] = ACTIONS(1727), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1727), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_FORWARD] = ACTIONS(1727), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1727), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1727), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1727), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1727), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_PS_GET] = ACTIONS(1727), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1727), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1727), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1727), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1727), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1727), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1727), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1727), - [anon_sym_MOZ_COLD] = ACTIONS(1727), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1727), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1727), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1727), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1727), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1727), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1727), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1727), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1727), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1727), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1727), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1727), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1727), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1727), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_NONNULL] = ACTIONS(1727), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1727), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1727), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1727), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1727), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1727), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1727), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1727), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1727), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1727), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1727), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1727), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1727), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1727), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1727), - [anon_sym_MOZ_RAII] = ACTIONS(1727), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1727), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1727), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1727), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1727), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1727), - [sym_raw_string_literal] = ACTIONS(1729), - }, - [541] = { - [sym_identifier] = ACTIONS(1771), - [aux_sym_preproc_include_token1] = ACTIONS(1771), - [aux_sym_preproc_def_token1] = ACTIONS(1771), - [aux_sym_preproc_if_token1] = ACTIONS(1771), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1771), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1771), - [sym_preproc_directive] = ACTIONS(1771), - [anon_sym_LPAREN2] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1773), - [anon_sym_AMP_AMP] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_typedef] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1771), - [anon_sym___attribute__] = ACTIONS(1771), - [anon_sym_COLON_COLON] = ACTIONS(1773), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1773), - [anon_sym___declspec] = ACTIONS(1771), - [anon_sym___based] = ACTIONS(1771), - [anon_sym___cdecl] = ACTIONS(1771), - [anon_sym___clrcall] = ACTIONS(1771), - [anon_sym___stdcall] = ACTIONS(1771), - [anon_sym___fastcall] = ACTIONS(1771), - [anon_sym___thiscall] = ACTIONS(1771), - [anon_sym___vectorcall] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_register] = ACTIONS(1771), - [anon_sym_inline] = ACTIONS(1771), - [anon_sym_thread_local] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [anon_sym_volatile] = ACTIONS(1771), - [anon_sym_restrict] = ACTIONS(1771), - [anon_sym__Atomic] = ACTIONS(1771), - [anon_sym_mutable] = ACTIONS(1771), - [anon_sym_constexpr] = ACTIONS(1771), - [anon_sym_signed] = ACTIONS(1771), - [anon_sym_unsigned] = ACTIONS(1771), - [anon_sym_long] = ACTIONS(1771), - [anon_sym_short] = ACTIONS(1771), - [sym_primitive_type] = ACTIONS(1771), - [anon_sym_enum] = ACTIONS(1771), - [anon_sym_class] = ACTIONS(1771), - [anon_sym_struct] = ACTIONS(1771), - [anon_sym_union] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_switch] = ACTIONS(1771), - [anon_sym_case] = ACTIONS(1771), - [anon_sym_default] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_goto] = ACTIONS(1771), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_sizeof] = ACTIONS(1771), - [sym_number_literal] = ACTIONS(1773), - [anon_sym_L_SQUOTE] = ACTIONS(1773), - [anon_sym_u_SQUOTE] = ACTIONS(1773), - [anon_sym_U_SQUOTE] = ACTIONS(1773), - [anon_sym_u8_SQUOTE] = ACTIONS(1773), - [anon_sym_SQUOTE] = ACTIONS(1773), - [anon_sym_L_DQUOTE] = ACTIONS(1773), - [anon_sym_u_DQUOTE] = ACTIONS(1773), - [anon_sym_U_DQUOTE] = ACTIONS(1773), - [anon_sym_u8_DQUOTE] = ACTIONS(1773), - [anon_sym_DQUOTE] = ACTIONS(1773), - [sym_true] = ACTIONS(1771), - [sym_false] = ACTIONS(1771), - [sym_null] = ACTIONS(1771), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1771), - [anon_sym_virtual] = ACTIONS(1771), - [anon_sym_explicit] = ACTIONS(1771), - [sym_auto] = ACTIONS(1771), - [anon_sym_typename] = ACTIONS(1771), - [anon_sym_template] = ACTIONS(1771), - [anon_sym_operator] = ACTIONS(1771), - [anon_sym_delete] = ACTIONS(1771), - [anon_sym_throw] = ACTIONS(1771), - [anon_sym_namespace] = ACTIONS(1771), - [anon_sym_using] = ACTIONS(1771), - [anon_sym_static_assert] = ACTIONS(1771), - [anon_sym_co_return] = ACTIONS(1771), - [anon_sym_co_yield] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_co_await] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1771), - [sym_this] = ACTIONS(1771), - [sym_nullptr] = ACTIONS(1771), - [sym_alone_macro] = ACTIONS(1773), - [aux_sym_alone_macro_call_token1] = ACTIONS(1771), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1771), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_FORWARD] = ACTIONS(1771), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1771), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1771), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1771), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1771), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_PS_GET] = ACTIONS(1771), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1771), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1771), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1771), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1771), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1771), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1771), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1771), - [anon_sym_MOZ_COLD] = ACTIONS(1771), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1771), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1771), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1771), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1771), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1771), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1771), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1771), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1771), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1771), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1771), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1771), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1771), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1771), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_NONNULL] = ACTIONS(1771), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1771), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1771), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1771), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1771), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1771), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1771), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1771), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1771), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1771), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1771), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1771), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1771), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1771), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1771), - [anon_sym_MOZ_RAII] = ACTIONS(1771), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1771), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1771), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1771), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1771), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1771), - [sym_raw_string_literal] = ACTIONS(1773), - }, - [542] = { - [sym_identifier] = ACTIONS(1823), - [aux_sym_preproc_include_token1] = ACTIONS(1823), - [aux_sym_preproc_def_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1823), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1825), - [anon_sym_BANG] = ACTIONS(1825), - [anon_sym_TILDE] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1825), - [anon_sym_AMP_AMP] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_typedef] = ACTIONS(1823), - [anon_sym_extern] = ACTIONS(1823), - [anon_sym___attribute__] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1825), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1825), - [anon_sym___declspec] = ACTIONS(1823), - [anon_sym___based] = ACTIONS(1823), - [anon_sym___cdecl] = ACTIONS(1823), - [anon_sym___clrcall] = ACTIONS(1823), - [anon_sym___stdcall] = ACTIONS(1823), - [anon_sym___fastcall] = ACTIONS(1823), - [anon_sym___thiscall] = ACTIONS(1823), - [anon_sym___vectorcall] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_register] = ACTIONS(1823), - [anon_sym_inline] = ACTIONS(1823), - [anon_sym_thread_local] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_volatile] = ACTIONS(1823), - [anon_sym_restrict] = ACTIONS(1823), - [anon_sym__Atomic] = ACTIONS(1823), - [anon_sym_mutable] = ACTIONS(1823), - [anon_sym_constexpr] = ACTIONS(1823), - [anon_sym_signed] = ACTIONS(1823), - [anon_sym_unsigned] = ACTIONS(1823), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_short] = ACTIONS(1823), - [sym_primitive_type] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [anon_sym_class] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(1823), - [anon_sym_union] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_switch] = ACTIONS(1823), - [anon_sym_case] = ACTIONS(1823), - [anon_sym_default] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_goto] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1825), - [anon_sym_PLUS_PLUS] = ACTIONS(1825), - [anon_sym_sizeof] = ACTIONS(1823), - [sym_number_literal] = ACTIONS(1825), - [anon_sym_L_SQUOTE] = ACTIONS(1825), - [anon_sym_u_SQUOTE] = ACTIONS(1825), - [anon_sym_U_SQUOTE] = ACTIONS(1825), - [anon_sym_u8_SQUOTE] = ACTIONS(1825), - [anon_sym_SQUOTE] = ACTIONS(1825), - [anon_sym_L_DQUOTE] = ACTIONS(1825), - [anon_sym_u_DQUOTE] = ACTIONS(1825), - [anon_sym_U_DQUOTE] = ACTIONS(1825), - [anon_sym_u8_DQUOTE] = ACTIONS(1825), - [anon_sym_DQUOTE] = ACTIONS(1825), - [sym_true] = ACTIONS(1823), - [sym_false] = ACTIONS(1823), - [sym_null] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1823), - [anon_sym_virtual] = ACTIONS(1823), - [anon_sym_explicit] = ACTIONS(1823), - [sym_auto] = ACTIONS(1823), - [anon_sym_typename] = ACTIONS(1823), - [anon_sym_template] = ACTIONS(1823), - [anon_sym_operator] = ACTIONS(1823), - [anon_sym_delete] = ACTIONS(1823), - [anon_sym_throw] = ACTIONS(1823), - [anon_sym_namespace] = ACTIONS(1823), - [anon_sym_using] = ACTIONS(1823), - [anon_sym_static_assert] = ACTIONS(1823), - [anon_sym_co_return] = ACTIONS(1823), - [anon_sym_co_yield] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1823), - [anon_sym_co_await] = ACTIONS(1823), - [anon_sym_new] = ACTIONS(1823), - [sym_this] = ACTIONS(1823), - [sym_nullptr] = ACTIONS(1823), - [sym_alone_macro] = ACTIONS(1825), - [aux_sym_alone_macro_call_token1] = ACTIONS(1823), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1823), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_FORWARD] = ACTIONS(1823), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1823), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1823), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1823), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1823), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_PS_GET] = ACTIONS(1823), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1823), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1823), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1823), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1823), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1823), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1823), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1823), - [anon_sym_MOZ_COLD] = ACTIONS(1823), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1823), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1823), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1823), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1823), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1823), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1823), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1823), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1823), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1823), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1823), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1823), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1823), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1823), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_NONNULL] = ACTIONS(1823), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1823), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1823), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1823), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1823), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1823), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1823), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1823), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1823), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1823), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1823), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1823), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1823), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1823), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1823), - [anon_sym_MOZ_RAII] = ACTIONS(1823), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1823), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1823), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1823), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1823), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1823), - [sym_raw_string_literal] = ACTIONS(1825), - }, - [543] = { - [sym_identifier] = ACTIONS(1827), - [aux_sym_preproc_include_token1] = ACTIONS(1827), - [aux_sym_preproc_def_token1] = ACTIONS(1827), - [aux_sym_preproc_if_token1] = ACTIONS(1827), - [aux_sym_preproc_if_token2] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1827), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_BANG] = ACTIONS(1829), - [anon_sym_TILDE] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_AMP_AMP] = ACTIONS(1829), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_typedef] = ACTIONS(1827), - [anon_sym_extern] = ACTIONS(1827), - [anon_sym___attribute__] = ACTIONS(1827), - [anon_sym_COLON_COLON] = ACTIONS(1829), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1829), - [anon_sym___declspec] = ACTIONS(1827), - [anon_sym___based] = ACTIONS(1827), - [anon_sym___cdecl] = ACTIONS(1827), - [anon_sym___clrcall] = ACTIONS(1827), - [anon_sym___stdcall] = ACTIONS(1827), - [anon_sym___fastcall] = ACTIONS(1827), - [anon_sym___thiscall] = ACTIONS(1827), - [anon_sym___vectorcall] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1829), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_static] = ACTIONS(1827), - [anon_sym_register] = ACTIONS(1827), - [anon_sym_inline] = ACTIONS(1827), - [anon_sym_thread_local] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_volatile] = ACTIONS(1827), - [anon_sym_restrict] = ACTIONS(1827), - [anon_sym__Atomic] = ACTIONS(1827), - [anon_sym_mutable] = ACTIONS(1827), - [anon_sym_constexpr] = ACTIONS(1827), - [anon_sym_signed] = ACTIONS(1827), - [anon_sym_unsigned] = ACTIONS(1827), - [anon_sym_long] = ACTIONS(1827), - [anon_sym_short] = ACTIONS(1827), - [sym_primitive_type] = ACTIONS(1827), - [anon_sym_enum] = ACTIONS(1827), - [anon_sym_class] = ACTIONS(1827), - [anon_sym_struct] = ACTIONS(1827), - [anon_sym_union] = ACTIONS(1827), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_switch] = ACTIONS(1827), - [anon_sym_case] = ACTIONS(1827), - [anon_sym_default] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_for] = ACTIONS(1827), - [anon_sym_return] = ACTIONS(1827), - [anon_sym_break] = ACTIONS(1827), - [anon_sym_continue] = ACTIONS(1827), - [anon_sym_goto] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1829), - [anon_sym_PLUS_PLUS] = ACTIONS(1829), - [anon_sym_sizeof] = ACTIONS(1827), - [sym_number_literal] = ACTIONS(1829), - [anon_sym_L_SQUOTE] = ACTIONS(1829), - [anon_sym_u_SQUOTE] = ACTIONS(1829), - [anon_sym_U_SQUOTE] = ACTIONS(1829), - [anon_sym_u8_SQUOTE] = ACTIONS(1829), - [anon_sym_SQUOTE] = ACTIONS(1829), - [anon_sym_L_DQUOTE] = ACTIONS(1829), - [anon_sym_u_DQUOTE] = ACTIONS(1829), - [anon_sym_U_DQUOTE] = ACTIONS(1829), - [anon_sym_u8_DQUOTE] = ACTIONS(1829), - [anon_sym_DQUOTE] = ACTIONS(1829), - [sym_true] = ACTIONS(1827), - [sym_false] = ACTIONS(1827), - [sym_null] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1827), - [anon_sym_virtual] = ACTIONS(1827), - [anon_sym_explicit] = ACTIONS(1827), - [sym_auto] = ACTIONS(1827), - [anon_sym_typename] = ACTIONS(1827), - [anon_sym_template] = ACTIONS(1827), - [anon_sym_operator] = ACTIONS(1827), - [anon_sym_delete] = ACTIONS(1827), - [anon_sym_throw] = ACTIONS(1827), - [anon_sym_namespace] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(1827), - [anon_sym_static_assert] = ACTIONS(1827), - [anon_sym_co_return] = ACTIONS(1827), - [anon_sym_co_yield] = ACTIONS(1827), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_co_await] = ACTIONS(1827), - [anon_sym_new] = ACTIONS(1827), - [sym_this] = ACTIONS(1827), - [sym_nullptr] = ACTIONS(1827), - [sym_alone_macro] = ACTIONS(1829), - [aux_sym_alone_macro_call_token1] = ACTIONS(1827), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1827), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_FORWARD] = ACTIONS(1827), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1827), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1827), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1827), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1827), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_PS_GET] = ACTIONS(1827), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1827), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1827), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1827), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1827), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1827), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1827), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1827), - [anon_sym_MOZ_COLD] = ACTIONS(1827), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1827), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1827), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1827), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1827), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1827), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1827), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1827), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1827), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1827), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1827), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1827), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1827), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1827), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_NONNULL] = ACTIONS(1827), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1827), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1827), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1827), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1827), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1827), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1827), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1827), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1827), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1827), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1827), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1827), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1827), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1827), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1827), - [anon_sym_MOZ_RAII] = ACTIONS(1827), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1827), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1827), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1827), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1827), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1827), - [sym_raw_string_literal] = ACTIONS(1829), - }, - [544] = { - [sym_identifier] = ACTIONS(1775), - [aux_sym_preproc_include_token1] = ACTIONS(1775), - [aux_sym_preproc_def_token1] = ACTIONS(1775), - [aux_sym_preproc_if_token1] = ACTIONS(1775), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1775), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1775), - [sym_preproc_directive] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(1777), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_TILDE] = ACTIONS(1777), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_AMP_AMP] = ACTIONS(1777), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_SEMI] = ACTIONS(1777), - [anon_sym_typedef] = ACTIONS(1775), - [anon_sym_extern] = ACTIONS(1775), - [anon_sym___attribute__] = ACTIONS(1775), - [anon_sym_COLON_COLON] = ACTIONS(1777), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1777), - [anon_sym___declspec] = ACTIONS(1775), - [anon_sym___based] = ACTIONS(1775), - [anon_sym___cdecl] = ACTIONS(1775), - [anon_sym___clrcall] = ACTIONS(1775), - [anon_sym___stdcall] = ACTIONS(1775), - [anon_sym___fastcall] = ACTIONS(1775), - [anon_sym___thiscall] = ACTIONS(1775), - [anon_sym___vectorcall] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_RBRACE] = ACTIONS(1777), - [anon_sym_LBRACK] = ACTIONS(1775), - [anon_sym_static] = ACTIONS(1775), - [anon_sym_register] = ACTIONS(1775), - [anon_sym_inline] = ACTIONS(1775), - [anon_sym_thread_local] = ACTIONS(1775), - [anon_sym_const] = ACTIONS(1775), - [anon_sym_volatile] = ACTIONS(1775), - [anon_sym_restrict] = ACTIONS(1775), - [anon_sym__Atomic] = ACTIONS(1775), - [anon_sym_mutable] = ACTIONS(1775), - [anon_sym_constexpr] = ACTIONS(1775), - [anon_sym_signed] = ACTIONS(1775), - [anon_sym_unsigned] = ACTIONS(1775), - [anon_sym_long] = ACTIONS(1775), - [anon_sym_short] = ACTIONS(1775), - [sym_primitive_type] = ACTIONS(1775), - [anon_sym_enum] = ACTIONS(1775), - [anon_sym_class] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1775), - [anon_sym_union] = ACTIONS(1775), - [anon_sym_if] = ACTIONS(1775), - [anon_sym_switch] = ACTIONS(1775), - [anon_sym_case] = ACTIONS(1775), - [anon_sym_default] = ACTIONS(1775), - [anon_sym_while] = ACTIONS(1775), - [anon_sym_do] = ACTIONS(1775), - [anon_sym_for] = ACTIONS(1775), - [anon_sym_return] = ACTIONS(1775), - [anon_sym_break] = ACTIONS(1775), - [anon_sym_continue] = ACTIONS(1775), - [anon_sym_goto] = ACTIONS(1775), - [anon_sym_DASH_DASH] = ACTIONS(1777), - [anon_sym_PLUS_PLUS] = ACTIONS(1777), - [anon_sym_sizeof] = ACTIONS(1775), - [sym_number_literal] = ACTIONS(1777), - [anon_sym_L_SQUOTE] = ACTIONS(1777), - [anon_sym_u_SQUOTE] = ACTIONS(1777), - [anon_sym_U_SQUOTE] = ACTIONS(1777), - [anon_sym_u8_SQUOTE] = ACTIONS(1777), - [anon_sym_SQUOTE] = ACTIONS(1777), - [anon_sym_L_DQUOTE] = ACTIONS(1777), - [anon_sym_u_DQUOTE] = ACTIONS(1777), - [anon_sym_U_DQUOTE] = ACTIONS(1777), - [anon_sym_u8_DQUOTE] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(1777), - [sym_true] = ACTIONS(1775), - [sym_false] = ACTIONS(1775), - [sym_null] = ACTIONS(1775), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1775), - [anon_sym_virtual] = ACTIONS(1775), - [anon_sym_explicit] = ACTIONS(1775), - [sym_auto] = ACTIONS(1775), - [anon_sym_typename] = ACTIONS(1775), - [anon_sym_template] = ACTIONS(1775), - [anon_sym_operator] = ACTIONS(1775), - [anon_sym_delete] = ACTIONS(1775), - [anon_sym_throw] = ACTIONS(1775), - [anon_sym_namespace] = ACTIONS(1775), - [anon_sym_using] = ACTIONS(1775), - [anon_sym_static_assert] = ACTIONS(1775), - [anon_sym_co_return] = ACTIONS(1775), - [anon_sym_co_yield] = ACTIONS(1775), - [anon_sym_try] = ACTIONS(1775), - [anon_sym_co_await] = ACTIONS(1775), - [anon_sym_new] = ACTIONS(1775), - [sym_this] = ACTIONS(1775), - [sym_nullptr] = ACTIONS(1775), - [sym_alone_macro] = ACTIONS(1777), - [aux_sym_alone_macro_call_token1] = ACTIONS(1775), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1775), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_FORWARD] = ACTIONS(1775), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1775), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1775), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1775), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1775), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_PS_GET] = ACTIONS(1775), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1775), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1775), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1775), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1775), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1775), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1775), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1775), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1775), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1775), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1775), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1775), - [anon_sym_MOZ_COLD] = ACTIONS(1775), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1775), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1775), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1775), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1775), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1775), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1775), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1775), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1775), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1775), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1775), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1775), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1775), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1775), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1775), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1775), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1775), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1775), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1775), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1775), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1775), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_NONNULL] = ACTIONS(1775), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1775), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1775), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1775), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1775), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1775), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_NORETURN] = ACTIONS(1775), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1775), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1775), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1775), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1775), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1775), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1775), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1775), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1775), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1775), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1775), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1775), - [anon_sym_MOZ_RAII] = ACTIONS(1775), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1775), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1775), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1775), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1775), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1775), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1775), - [sym_raw_string_literal] = ACTIONS(1777), - }, - [545] = { - [sym_identifier] = ACTIONS(1863), - [aux_sym_preproc_include_token1] = ACTIONS(1863), - [aux_sym_preproc_def_token1] = ACTIONS(1863), - [aux_sym_preproc_if_token1] = ACTIONS(1863), - [aux_sym_preproc_if_token2] = ACTIONS(1863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1863), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1863), - [sym_preproc_directive] = ACTIONS(1863), - [anon_sym_LPAREN2] = ACTIONS(1865), - [anon_sym_BANG] = ACTIONS(1865), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_AMP_AMP] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1865), - [anon_sym_typedef] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1863), - [anon_sym___attribute__] = ACTIONS(1863), - [anon_sym_COLON_COLON] = ACTIONS(1865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1865), - [anon_sym___declspec] = ACTIONS(1863), - [anon_sym___based] = ACTIONS(1863), - [anon_sym___cdecl] = ACTIONS(1863), - [anon_sym___clrcall] = ACTIONS(1863), - [anon_sym___stdcall] = ACTIONS(1863), - [anon_sym___fastcall] = ACTIONS(1863), - [anon_sym___thiscall] = ACTIONS(1863), - [anon_sym___vectorcall] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_static] = ACTIONS(1863), - [anon_sym_register] = ACTIONS(1863), - [anon_sym_inline] = ACTIONS(1863), - [anon_sym_thread_local] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [anon_sym_volatile] = ACTIONS(1863), - [anon_sym_restrict] = ACTIONS(1863), - [anon_sym__Atomic] = ACTIONS(1863), - [anon_sym_mutable] = ACTIONS(1863), - [anon_sym_constexpr] = ACTIONS(1863), - [anon_sym_signed] = ACTIONS(1863), - [anon_sym_unsigned] = ACTIONS(1863), - [anon_sym_long] = ACTIONS(1863), - [anon_sym_short] = ACTIONS(1863), - [sym_primitive_type] = ACTIONS(1863), - [anon_sym_enum] = ACTIONS(1863), - [anon_sym_class] = ACTIONS(1863), - [anon_sym_struct] = ACTIONS(1863), - [anon_sym_union] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_switch] = ACTIONS(1863), - [anon_sym_case] = ACTIONS(1863), - [anon_sym_default] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_goto] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1865), - [anon_sym_PLUS_PLUS] = ACTIONS(1865), - [anon_sym_sizeof] = ACTIONS(1863), - [sym_number_literal] = ACTIONS(1865), - [anon_sym_L_SQUOTE] = ACTIONS(1865), - [anon_sym_u_SQUOTE] = ACTIONS(1865), - [anon_sym_U_SQUOTE] = ACTIONS(1865), - [anon_sym_u8_SQUOTE] = ACTIONS(1865), - [anon_sym_SQUOTE] = ACTIONS(1865), - [anon_sym_L_DQUOTE] = ACTIONS(1865), - [anon_sym_u_DQUOTE] = ACTIONS(1865), - [anon_sym_U_DQUOTE] = ACTIONS(1865), - [anon_sym_u8_DQUOTE] = ACTIONS(1865), - [anon_sym_DQUOTE] = ACTIONS(1865), - [sym_true] = ACTIONS(1863), - [sym_false] = ACTIONS(1863), - [sym_null] = ACTIONS(1863), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1863), - [anon_sym_virtual] = ACTIONS(1863), - [anon_sym_explicit] = ACTIONS(1863), - [sym_auto] = ACTIONS(1863), - [anon_sym_typename] = ACTIONS(1863), - [anon_sym_template] = ACTIONS(1863), - [anon_sym_operator] = ACTIONS(1863), - [anon_sym_delete] = ACTIONS(1863), - [anon_sym_throw] = ACTIONS(1863), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_using] = ACTIONS(1863), - [anon_sym_static_assert] = ACTIONS(1863), - [anon_sym_co_return] = ACTIONS(1863), - [anon_sym_co_yield] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_co_await] = ACTIONS(1863), - [anon_sym_new] = ACTIONS(1863), - [sym_this] = ACTIONS(1863), - [sym_nullptr] = ACTIONS(1863), - [sym_alone_macro] = ACTIONS(1865), - [aux_sym_alone_macro_call_token1] = ACTIONS(1863), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1863), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_FORWARD] = ACTIONS(1863), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1863), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1863), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1863), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1863), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_PS_GET] = ACTIONS(1863), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1863), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1863), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1863), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1863), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1863), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1863), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1863), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1863), - [anon_sym_MOZ_COLD] = ACTIONS(1863), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1863), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1863), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1863), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1863), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1863), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1863), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1863), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1863), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1863), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1863), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1863), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1863), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1863), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_NONNULL] = ACTIONS(1863), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1863), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1863), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1863), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1863), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1863), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1863), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1863), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1863), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1863), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1863), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1863), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1863), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1863), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1863), - [anon_sym_MOZ_RAII] = ACTIONS(1863), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1863), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1863), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1863), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1863), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1863), - [sym_raw_string_literal] = ACTIONS(1865), - }, - [546] = { - [sym_identifier] = ACTIONS(1707), - [aux_sym_preproc_include_token1] = ACTIONS(1707), - [aux_sym_preproc_def_token1] = ACTIONS(1707), - [aux_sym_preproc_if_token1] = ACTIONS(1707), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1707), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1707), - [sym_preproc_directive] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1709), - [anon_sym_AMP_AMP] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_typedef] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym___attribute__] = ACTIONS(1707), - [anon_sym_COLON_COLON] = ACTIONS(1709), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1709), - [anon_sym___declspec] = ACTIONS(1707), - [anon_sym___based] = ACTIONS(1707), - [anon_sym___cdecl] = ACTIONS(1707), - [anon_sym___clrcall] = ACTIONS(1707), - [anon_sym___stdcall] = ACTIONS(1707), - [anon_sym___fastcall] = ACTIONS(1707), - [anon_sym___thiscall] = ACTIONS(1707), - [anon_sym___vectorcall] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_inline] = ACTIONS(1707), - [anon_sym_thread_local] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_volatile] = ACTIONS(1707), - [anon_sym_restrict] = ACTIONS(1707), - [anon_sym__Atomic] = ACTIONS(1707), - [anon_sym_mutable] = ACTIONS(1707), - [anon_sym_constexpr] = ACTIONS(1707), - [anon_sym_signed] = ACTIONS(1707), - [anon_sym_unsigned] = ACTIONS(1707), - [anon_sym_long] = ACTIONS(1707), - [anon_sym_short] = ACTIONS(1707), - [sym_primitive_type] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_class] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_switch] = ACTIONS(1707), - [anon_sym_case] = ACTIONS(1707), - [anon_sym_default] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_goto] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1709), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_sizeof] = ACTIONS(1707), - [sym_number_literal] = ACTIONS(1709), - [anon_sym_L_SQUOTE] = ACTIONS(1709), - [anon_sym_u_SQUOTE] = ACTIONS(1709), - [anon_sym_U_SQUOTE] = ACTIONS(1709), - [anon_sym_u8_SQUOTE] = ACTIONS(1709), - [anon_sym_SQUOTE] = ACTIONS(1709), - [anon_sym_L_DQUOTE] = ACTIONS(1709), - [anon_sym_u_DQUOTE] = ACTIONS(1709), - [anon_sym_U_DQUOTE] = ACTIONS(1709), - [anon_sym_u8_DQUOTE] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1709), - [sym_true] = ACTIONS(1707), - [sym_false] = ACTIONS(1707), - [sym_null] = ACTIONS(1707), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1707), - [anon_sym_virtual] = ACTIONS(1707), - [anon_sym_explicit] = ACTIONS(1707), - [sym_auto] = ACTIONS(1707), - [anon_sym_typename] = ACTIONS(1707), - [anon_sym_template] = ACTIONS(1707), - [anon_sym_operator] = ACTIONS(1707), - [anon_sym_delete] = ACTIONS(1707), - [anon_sym_throw] = ACTIONS(1707), - [anon_sym_namespace] = ACTIONS(1707), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_static_assert] = ACTIONS(1707), - [anon_sym_co_return] = ACTIONS(1707), - [anon_sym_co_yield] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1707), - [anon_sym_co_await] = ACTIONS(1707), - [anon_sym_new] = ACTIONS(1707), - [sym_this] = ACTIONS(1707), - [sym_nullptr] = ACTIONS(1707), - [sym_alone_macro] = ACTIONS(1709), - [aux_sym_alone_macro_call_token1] = ACTIONS(1707), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1707), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_FORWARD] = ACTIONS(1707), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1707), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1707), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1707), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1707), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_PS_GET] = ACTIONS(1707), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1707), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1707), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1707), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1707), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1707), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1707), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1707), - [anon_sym_MOZ_COLD] = ACTIONS(1707), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1707), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1707), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1707), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1707), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1707), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1707), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1707), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1707), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1707), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1707), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1707), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1707), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1707), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_NONNULL] = ACTIONS(1707), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1707), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1707), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1707), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1707), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1707), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1707), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1707), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1707), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1707), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1707), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1707), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1707), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1707), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1707), - [anon_sym_MOZ_RAII] = ACTIONS(1707), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1707), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1707), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1707), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1707), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1707), - [sym_raw_string_literal] = ACTIONS(1709), - }, - [547] = { - [sym_identifier] = ACTIONS(1779), - [aux_sym_preproc_include_token1] = ACTIONS(1779), - [aux_sym_preproc_def_token1] = ACTIONS(1779), - [aux_sym_preproc_if_token1] = ACTIONS(1779), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1779), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1779), - [sym_preproc_directive] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP_AMP] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_typedef] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym___attribute__] = ACTIONS(1779), - [anon_sym_COLON_COLON] = ACTIONS(1781), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1781), - [anon_sym___declspec] = ACTIONS(1779), - [anon_sym___based] = ACTIONS(1779), - [anon_sym___cdecl] = ACTIONS(1779), - [anon_sym___clrcall] = ACTIONS(1779), - [anon_sym___stdcall] = ACTIONS(1779), - [anon_sym___fastcall] = ACTIONS(1779), - [anon_sym___thiscall] = ACTIONS(1779), - [anon_sym___vectorcall] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_inline] = ACTIONS(1779), - [anon_sym_thread_local] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [anon_sym_volatile] = ACTIONS(1779), - [anon_sym_restrict] = ACTIONS(1779), - [anon_sym__Atomic] = ACTIONS(1779), - [anon_sym_mutable] = ACTIONS(1779), - [anon_sym_constexpr] = ACTIONS(1779), - [anon_sym_signed] = ACTIONS(1779), - [anon_sym_unsigned] = ACTIONS(1779), - [anon_sym_long] = ACTIONS(1779), - [anon_sym_short] = ACTIONS(1779), - [sym_primitive_type] = ACTIONS(1779), - [anon_sym_enum] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(1779), - [anon_sym_struct] = ACTIONS(1779), - [anon_sym_union] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1779), - [anon_sym_default] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_goto] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_sizeof] = ACTIONS(1779), - [sym_number_literal] = ACTIONS(1781), - [anon_sym_L_SQUOTE] = ACTIONS(1781), - [anon_sym_u_SQUOTE] = ACTIONS(1781), - [anon_sym_U_SQUOTE] = ACTIONS(1781), - [anon_sym_u8_SQUOTE] = ACTIONS(1781), - [anon_sym_SQUOTE] = ACTIONS(1781), - [anon_sym_L_DQUOTE] = ACTIONS(1781), - [anon_sym_u_DQUOTE] = ACTIONS(1781), - [anon_sym_U_DQUOTE] = ACTIONS(1781), - [anon_sym_u8_DQUOTE] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym_true] = ACTIONS(1779), - [sym_false] = ACTIONS(1779), - [sym_null] = ACTIONS(1779), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1779), - [anon_sym_virtual] = ACTIONS(1779), - [anon_sym_explicit] = ACTIONS(1779), - [sym_auto] = ACTIONS(1779), - [anon_sym_typename] = ACTIONS(1779), - [anon_sym_template] = ACTIONS(1779), - [anon_sym_operator] = ACTIONS(1779), - [anon_sym_delete] = ACTIONS(1779), - [anon_sym_throw] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1779), - [anon_sym_using] = ACTIONS(1779), - [anon_sym_static_assert] = ACTIONS(1779), - [anon_sym_co_return] = ACTIONS(1779), - [anon_sym_co_yield] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_co_await] = ACTIONS(1779), - [anon_sym_new] = ACTIONS(1779), - [sym_this] = ACTIONS(1779), - [sym_nullptr] = ACTIONS(1779), - [sym_alone_macro] = ACTIONS(1781), - [aux_sym_alone_macro_call_token1] = ACTIONS(1779), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1779), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_FORWARD] = ACTIONS(1779), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1779), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1779), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1779), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1779), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_PS_GET] = ACTIONS(1779), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1779), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1779), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1779), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1779), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1779), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1779), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1779), - [anon_sym_MOZ_COLD] = ACTIONS(1779), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1779), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1779), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1779), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1779), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1779), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1779), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1779), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1779), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1779), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1779), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1779), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1779), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1779), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_NONNULL] = ACTIONS(1779), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1779), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1779), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1779), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1779), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1779), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1779), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1779), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1779), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1779), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1779), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1779), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1779), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1779), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1779), - [anon_sym_MOZ_RAII] = ACTIONS(1779), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1779), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1779), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1779), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1779), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1779), - [sym_raw_string_literal] = ACTIONS(1781), - }, - [548] = { - [ts_builtin_sym_end] = ACTIONS(1881), - [sym_identifier] = ACTIONS(1879), - [aux_sym_preproc_include_token1] = ACTIONS(1879), - [aux_sym_preproc_def_token1] = ACTIONS(1879), - [aux_sym_preproc_if_token1] = ACTIONS(1879), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1879), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1879), - [sym_preproc_directive] = ACTIONS(1879), - [anon_sym_LPAREN2] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_typedef] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym___attribute__] = ACTIONS(1879), - [anon_sym_COLON_COLON] = ACTIONS(1881), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1881), - [anon_sym___declspec] = ACTIONS(1879), - [anon_sym___based] = ACTIONS(1879), - [anon_sym___cdecl] = ACTIONS(1879), - [anon_sym___clrcall] = ACTIONS(1879), - [anon_sym___stdcall] = ACTIONS(1879), - [anon_sym___fastcall] = ACTIONS(1879), - [anon_sym___thiscall] = ACTIONS(1879), - [anon_sym___vectorcall] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_static] = ACTIONS(1879), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_inline] = ACTIONS(1879), - [anon_sym_thread_local] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [anon_sym_volatile] = ACTIONS(1879), - [anon_sym_restrict] = ACTIONS(1879), - [anon_sym__Atomic] = ACTIONS(1879), - [anon_sym_mutable] = ACTIONS(1879), - [anon_sym_constexpr] = ACTIONS(1879), - [anon_sym_signed] = ACTIONS(1879), - [anon_sym_unsigned] = ACTIONS(1879), - [anon_sym_long] = ACTIONS(1879), - [anon_sym_short] = ACTIONS(1879), - [sym_primitive_type] = ACTIONS(1879), - [anon_sym_enum] = ACTIONS(1879), - [anon_sym_class] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1879), - [anon_sym_union] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_switch] = ACTIONS(1879), - [anon_sym_case] = ACTIONS(1879), - [anon_sym_default] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_goto] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_sizeof] = ACTIONS(1879), - [sym_number_literal] = ACTIONS(1881), - [anon_sym_L_SQUOTE] = ACTIONS(1881), - [anon_sym_u_SQUOTE] = ACTIONS(1881), - [anon_sym_U_SQUOTE] = ACTIONS(1881), - [anon_sym_u8_SQUOTE] = ACTIONS(1881), - [anon_sym_SQUOTE] = ACTIONS(1881), - [anon_sym_L_DQUOTE] = ACTIONS(1881), - [anon_sym_u_DQUOTE] = ACTIONS(1881), - [anon_sym_U_DQUOTE] = ACTIONS(1881), - [anon_sym_u8_DQUOTE] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym_true] = ACTIONS(1879), - [sym_false] = ACTIONS(1879), - [sym_null] = ACTIONS(1879), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1879), - [anon_sym_virtual] = ACTIONS(1879), - [anon_sym_explicit] = ACTIONS(1879), - [sym_auto] = ACTIONS(1879), - [anon_sym_typename] = ACTIONS(1879), - [anon_sym_template] = ACTIONS(1879), - [anon_sym_operator] = ACTIONS(1879), - [anon_sym_delete] = ACTIONS(1879), - [anon_sym_throw] = ACTIONS(1879), - [anon_sym_namespace] = ACTIONS(1879), - [anon_sym_using] = ACTIONS(1879), - [anon_sym_static_assert] = ACTIONS(1879), - [anon_sym_co_return] = ACTIONS(1879), - [anon_sym_co_yield] = ACTIONS(1879), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_co_await] = ACTIONS(1879), - [anon_sym_new] = ACTIONS(1879), - [sym_this] = ACTIONS(1879), - [sym_nullptr] = ACTIONS(1879), - [sym_alone_macro] = ACTIONS(1881), - [aux_sym_alone_macro_call_token1] = ACTIONS(1879), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1879), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_FORWARD] = ACTIONS(1879), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1879), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1879), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1879), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1879), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_PS_GET] = ACTIONS(1879), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1879), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1879), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1879), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1879), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1879), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1879), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1879), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1879), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1879), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1879), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1879), - [anon_sym_MOZ_COLD] = ACTIONS(1879), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1879), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1879), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1879), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1879), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1879), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1879), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1879), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1879), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1879), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1879), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1879), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1879), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1879), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1879), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1879), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1879), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1879), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1879), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1879), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_NONNULL] = ACTIONS(1879), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1879), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1879), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1879), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1879), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1879), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_NORETURN] = ACTIONS(1879), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1879), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1879), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1879), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1879), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1879), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1879), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1879), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1879), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1879), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), - [anon_sym_MOZ_RAII] = ACTIONS(1879), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1879), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1879), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1879), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1879), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1879), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1879), - [sym_raw_string_literal] = ACTIONS(1881), - }, - [549] = { - [sym_identifier] = ACTIONS(1783), - [aux_sym_preproc_include_token1] = ACTIONS(1783), - [aux_sym_preproc_def_token1] = ACTIONS(1783), - [aux_sym_preproc_if_token1] = ACTIONS(1783), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1783), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1783), - [sym_preproc_directive] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_BANG] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_typedef] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym___attribute__] = ACTIONS(1783), - [anon_sym_COLON_COLON] = ACTIONS(1785), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1785), - [anon_sym___declspec] = ACTIONS(1783), - [anon_sym___based] = ACTIONS(1783), - [anon_sym___cdecl] = ACTIONS(1783), - [anon_sym___clrcall] = ACTIONS(1783), - [anon_sym___stdcall] = ACTIONS(1783), - [anon_sym___fastcall] = ACTIONS(1783), - [anon_sym___thiscall] = ACTIONS(1783), - [anon_sym___vectorcall] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1783), - [anon_sym_static] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_inline] = ACTIONS(1783), - [anon_sym_thread_local] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [anon_sym_volatile] = ACTIONS(1783), - [anon_sym_restrict] = ACTIONS(1783), - [anon_sym__Atomic] = ACTIONS(1783), - [anon_sym_mutable] = ACTIONS(1783), - [anon_sym_constexpr] = ACTIONS(1783), - [anon_sym_signed] = ACTIONS(1783), - [anon_sym_unsigned] = ACTIONS(1783), - [anon_sym_long] = ACTIONS(1783), - [anon_sym_short] = ACTIONS(1783), - [sym_primitive_type] = ACTIONS(1783), - [anon_sym_enum] = ACTIONS(1783), - [anon_sym_class] = ACTIONS(1783), - [anon_sym_struct] = ACTIONS(1783), - [anon_sym_union] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_switch] = ACTIONS(1783), - [anon_sym_case] = ACTIONS(1783), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_goto] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1783), - [sym_number_literal] = ACTIONS(1785), - [anon_sym_L_SQUOTE] = ACTIONS(1785), - [anon_sym_u_SQUOTE] = ACTIONS(1785), - [anon_sym_U_SQUOTE] = ACTIONS(1785), - [anon_sym_u8_SQUOTE] = ACTIONS(1785), - [anon_sym_SQUOTE] = ACTIONS(1785), - [anon_sym_L_DQUOTE] = ACTIONS(1785), - [anon_sym_u_DQUOTE] = ACTIONS(1785), - [anon_sym_U_DQUOTE] = ACTIONS(1785), - [anon_sym_u8_DQUOTE] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym_true] = ACTIONS(1783), - [sym_false] = ACTIONS(1783), - [sym_null] = ACTIONS(1783), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1783), - [anon_sym_virtual] = ACTIONS(1783), - [anon_sym_explicit] = ACTIONS(1783), - [sym_auto] = ACTIONS(1783), - [anon_sym_typename] = ACTIONS(1783), - [anon_sym_template] = ACTIONS(1783), - [anon_sym_operator] = ACTIONS(1783), - [anon_sym_delete] = ACTIONS(1783), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_namespace] = ACTIONS(1783), - [anon_sym_using] = ACTIONS(1783), - [anon_sym_static_assert] = ACTIONS(1783), - [anon_sym_co_return] = ACTIONS(1783), - [anon_sym_co_yield] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_co_await] = ACTIONS(1783), - [anon_sym_new] = ACTIONS(1783), - [sym_this] = ACTIONS(1783), - [sym_nullptr] = ACTIONS(1783), - [sym_alone_macro] = ACTIONS(1785), - [aux_sym_alone_macro_call_token1] = ACTIONS(1783), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1783), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_FORWARD] = ACTIONS(1783), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1783), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1783), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1783), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1783), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_PS_GET] = ACTIONS(1783), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1783), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1783), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1783), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1783), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1783), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1783), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1783), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1783), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1783), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1783), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1783), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1783), - [anon_sym_MOZ_COLD] = ACTIONS(1783), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1783), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1783), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1783), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1783), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1783), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1783), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1783), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1783), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1783), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1783), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1783), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1783), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1783), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1783), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1783), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1783), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1783), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1783), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1783), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1783), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1783), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_NONNULL] = ACTIONS(1783), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1783), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1783), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1783), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1783), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1783), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_NORETURN] = ACTIONS(1783), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1783), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1783), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1783), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1783), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1783), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1783), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1783), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1783), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1783), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1783), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1783), - [anon_sym_MOZ_RAII] = ACTIONS(1783), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1783), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1783), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1783), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1783), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1783), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1783), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1783), - [sym_raw_string_literal] = ACTIONS(1785), - }, - [550] = { - [sym_identifier] = ACTIONS(1699), - [aux_sym_preproc_include_token1] = ACTIONS(1699), - [aux_sym_preproc_def_token1] = ACTIONS(1699), - [aux_sym_preproc_if_token1] = ACTIONS(1699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1699), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_typedef] = ACTIONS(1699), - [anon_sym_extern] = ACTIONS(1699), - [anon_sym___attribute__] = ACTIONS(1699), - [anon_sym_COLON_COLON] = ACTIONS(1701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1701), - [anon_sym___declspec] = ACTIONS(1699), - [anon_sym___based] = ACTIONS(1699), - [anon_sym___cdecl] = ACTIONS(1699), - [anon_sym___clrcall] = ACTIONS(1699), - [anon_sym___stdcall] = ACTIONS(1699), - [anon_sym___fastcall] = ACTIONS(1699), - [anon_sym___thiscall] = ACTIONS(1699), - [anon_sym___vectorcall] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1701), - [anon_sym_RBRACE] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_static] = ACTIONS(1699), - [anon_sym_register] = ACTIONS(1699), - [anon_sym_inline] = ACTIONS(1699), - [anon_sym_thread_local] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_volatile] = ACTIONS(1699), - [anon_sym_restrict] = ACTIONS(1699), - [anon_sym__Atomic] = ACTIONS(1699), - [anon_sym_mutable] = ACTIONS(1699), - [anon_sym_constexpr] = ACTIONS(1699), - [anon_sym_signed] = ACTIONS(1699), - [anon_sym_unsigned] = ACTIONS(1699), - [anon_sym_long] = ACTIONS(1699), - [anon_sym_short] = ACTIONS(1699), - [sym_primitive_type] = ACTIONS(1699), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1699), - [anon_sym_struct] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_switch] = ACTIONS(1699), - [anon_sym_case] = ACTIONS(1699), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_while] = ACTIONS(1699), - [anon_sym_do] = ACTIONS(1699), - [anon_sym_for] = ACTIONS(1699), - [anon_sym_return] = ACTIONS(1699), - [anon_sym_break] = ACTIONS(1699), - [anon_sym_continue] = ACTIONS(1699), - [anon_sym_goto] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_sizeof] = ACTIONS(1699), - [sym_number_literal] = ACTIONS(1701), - [anon_sym_L_SQUOTE] = ACTIONS(1701), - [anon_sym_u_SQUOTE] = ACTIONS(1701), - [anon_sym_U_SQUOTE] = ACTIONS(1701), - [anon_sym_u8_SQUOTE] = ACTIONS(1701), - [anon_sym_SQUOTE] = ACTIONS(1701), - [anon_sym_L_DQUOTE] = ACTIONS(1701), - [anon_sym_u_DQUOTE] = ACTIONS(1701), - [anon_sym_U_DQUOTE] = ACTIONS(1701), - [anon_sym_u8_DQUOTE] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(1701), - [sym_true] = ACTIONS(1699), - [sym_false] = ACTIONS(1699), - [sym_null] = ACTIONS(1699), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1699), - [anon_sym_virtual] = ACTIONS(1699), - [anon_sym_explicit] = ACTIONS(1699), - [sym_auto] = ACTIONS(1699), - [anon_sym_typename] = ACTIONS(1699), - [anon_sym_template] = ACTIONS(1699), - [anon_sym_operator] = ACTIONS(1699), - [anon_sym_delete] = ACTIONS(1699), - [anon_sym_throw] = ACTIONS(1699), - [anon_sym_namespace] = ACTIONS(1699), - [anon_sym_using] = ACTIONS(1699), - [anon_sym_static_assert] = ACTIONS(1699), - [anon_sym_co_return] = ACTIONS(1699), - [anon_sym_co_yield] = ACTIONS(1699), - [anon_sym_try] = ACTIONS(1699), - [anon_sym_co_await] = ACTIONS(1699), - [anon_sym_new] = ACTIONS(1699), - [sym_this] = ACTIONS(1699), - [sym_nullptr] = ACTIONS(1699), - [sym_alone_macro] = ACTIONS(1701), - [aux_sym_alone_macro_call_token1] = ACTIONS(1699), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1699), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_FORWARD] = ACTIONS(1699), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1699), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1699), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1699), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1699), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_PS_GET] = ACTIONS(1699), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1699), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1699), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1699), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1699), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1699), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1699), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1699), - [anon_sym_MOZ_COLD] = ACTIONS(1699), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1699), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1699), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1699), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1699), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1699), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1699), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1699), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1699), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1699), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1699), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1699), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1699), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1699), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_NONNULL] = ACTIONS(1699), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1699), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1699), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1699), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1699), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1699), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1699), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1699), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1699), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1699), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1699), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1699), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1699), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1699), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1699), - [anon_sym_MOZ_RAII] = ACTIONS(1699), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1699), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1699), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1699), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1699), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1699), - [sym_raw_string_literal] = ACTIONS(1701), - }, - [551] = { - [sym_identifier] = ACTIONS(1711), - [aux_sym_preproc_include_token1] = ACTIONS(1711), - [aux_sym_preproc_def_token1] = ACTIONS(1711), - [aux_sym_preproc_if_token1] = ACTIONS(1711), - [aux_sym_preproc_if_token2] = ACTIONS(1711), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1711), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1711), - [sym_preproc_directive] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_BANG] = ACTIONS(1713), - [anon_sym_TILDE] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_typedef] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym___attribute__] = ACTIONS(1711), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), - [anon_sym___declspec] = ACTIONS(1711), - [anon_sym___based] = ACTIONS(1711), - [anon_sym___cdecl] = ACTIONS(1711), - [anon_sym___clrcall] = ACTIONS(1711), - [anon_sym___stdcall] = ACTIONS(1711), - [anon_sym___fastcall] = ACTIONS(1711), - [anon_sym___thiscall] = ACTIONS(1711), - [anon_sym___vectorcall] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_static] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_inline] = ACTIONS(1711), - [anon_sym_thread_local] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [anon_sym_volatile] = ACTIONS(1711), - [anon_sym_restrict] = ACTIONS(1711), - [anon_sym__Atomic] = ACTIONS(1711), - [anon_sym_mutable] = ACTIONS(1711), - [anon_sym_constexpr] = ACTIONS(1711), - [anon_sym_signed] = ACTIONS(1711), - [anon_sym_unsigned] = ACTIONS(1711), - [anon_sym_long] = ACTIONS(1711), - [anon_sym_short] = ACTIONS(1711), - [sym_primitive_type] = ACTIONS(1711), - [anon_sym_enum] = ACTIONS(1711), - [anon_sym_class] = ACTIONS(1711), - [anon_sym_struct] = ACTIONS(1711), - [anon_sym_union] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_switch] = ACTIONS(1711), - [anon_sym_case] = ACTIONS(1711), - [anon_sym_default] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_goto] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_sizeof] = ACTIONS(1711), - [sym_number_literal] = ACTIONS(1713), - [anon_sym_L_SQUOTE] = ACTIONS(1713), - [anon_sym_u_SQUOTE] = ACTIONS(1713), - [anon_sym_U_SQUOTE] = ACTIONS(1713), - [anon_sym_u8_SQUOTE] = ACTIONS(1713), - [anon_sym_SQUOTE] = ACTIONS(1713), - [anon_sym_L_DQUOTE] = ACTIONS(1713), - [anon_sym_u_DQUOTE] = ACTIONS(1713), - [anon_sym_U_DQUOTE] = ACTIONS(1713), - [anon_sym_u8_DQUOTE] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym_true] = ACTIONS(1711), - [sym_false] = ACTIONS(1711), - [sym_null] = ACTIONS(1711), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1711), - [anon_sym_virtual] = ACTIONS(1711), - [anon_sym_explicit] = ACTIONS(1711), - [sym_auto] = ACTIONS(1711), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(1711), - [anon_sym_operator] = ACTIONS(1711), - [anon_sym_delete] = ACTIONS(1711), - [anon_sym_throw] = ACTIONS(1711), - [anon_sym_namespace] = ACTIONS(1711), - [anon_sym_using] = ACTIONS(1711), - [anon_sym_static_assert] = ACTIONS(1711), - [anon_sym_co_return] = ACTIONS(1711), - [anon_sym_co_yield] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_co_await] = ACTIONS(1711), - [anon_sym_new] = ACTIONS(1711), - [sym_this] = ACTIONS(1711), - [sym_nullptr] = ACTIONS(1711), - [sym_alone_macro] = ACTIONS(1713), - [aux_sym_alone_macro_call_token1] = ACTIONS(1711), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1711), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_FORWARD] = ACTIONS(1711), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1711), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1711), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1711), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1711), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_PS_GET] = ACTIONS(1711), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1711), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1711), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1711), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1711), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1711), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1711), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1711), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1711), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1711), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1711), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1711), - [anon_sym_MOZ_COLD] = ACTIONS(1711), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1711), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1711), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1711), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1711), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1711), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1711), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1711), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1711), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1711), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1711), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1711), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1711), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1711), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1711), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1711), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1711), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1711), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1711), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1711), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1711), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_NONNULL] = ACTIONS(1711), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1711), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1711), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1711), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1711), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1711), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_NORETURN] = ACTIONS(1711), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1711), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1711), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1711), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1711), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1711), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1711), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1711), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1711), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1711), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1711), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1711), - [anon_sym_MOZ_RAII] = ACTIONS(1711), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1711), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1711), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1711), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1711), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1711), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1711), - [sym_raw_string_literal] = ACTIONS(1713), - }, - [552] = { - [ts_builtin_sym_end] = ACTIONS(1709), - [sym_identifier] = ACTIONS(1707), - [aux_sym_preproc_include_token1] = ACTIONS(1707), - [aux_sym_preproc_def_token1] = ACTIONS(1707), - [aux_sym_preproc_if_token1] = ACTIONS(1707), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1707), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1707), - [sym_preproc_directive] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1709), - [anon_sym_AMP_AMP] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_typedef] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym___attribute__] = ACTIONS(1707), - [anon_sym_COLON_COLON] = ACTIONS(1709), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1709), - [anon_sym___declspec] = ACTIONS(1707), - [anon_sym___based] = ACTIONS(1707), - [anon_sym___cdecl] = ACTIONS(1707), - [anon_sym___clrcall] = ACTIONS(1707), - [anon_sym___stdcall] = ACTIONS(1707), - [anon_sym___fastcall] = ACTIONS(1707), - [anon_sym___thiscall] = ACTIONS(1707), - [anon_sym___vectorcall] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_inline] = ACTIONS(1707), - [anon_sym_thread_local] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_volatile] = ACTIONS(1707), - [anon_sym_restrict] = ACTIONS(1707), - [anon_sym__Atomic] = ACTIONS(1707), - [anon_sym_mutable] = ACTIONS(1707), - [anon_sym_constexpr] = ACTIONS(1707), - [anon_sym_signed] = ACTIONS(1707), - [anon_sym_unsigned] = ACTIONS(1707), - [anon_sym_long] = ACTIONS(1707), - [anon_sym_short] = ACTIONS(1707), - [sym_primitive_type] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_class] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_switch] = ACTIONS(1707), - [anon_sym_case] = ACTIONS(1707), - [anon_sym_default] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_goto] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1709), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_sizeof] = ACTIONS(1707), - [sym_number_literal] = ACTIONS(1709), - [anon_sym_L_SQUOTE] = ACTIONS(1709), - [anon_sym_u_SQUOTE] = ACTIONS(1709), - [anon_sym_U_SQUOTE] = ACTIONS(1709), - [anon_sym_u8_SQUOTE] = ACTIONS(1709), - [anon_sym_SQUOTE] = ACTIONS(1709), - [anon_sym_L_DQUOTE] = ACTIONS(1709), - [anon_sym_u_DQUOTE] = ACTIONS(1709), - [anon_sym_U_DQUOTE] = ACTIONS(1709), - [anon_sym_u8_DQUOTE] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1709), - [sym_true] = ACTIONS(1707), - [sym_false] = ACTIONS(1707), - [sym_null] = ACTIONS(1707), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1707), - [anon_sym_virtual] = ACTIONS(1707), - [anon_sym_explicit] = ACTIONS(1707), - [sym_auto] = ACTIONS(1707), - [anon_sym_typename] = ACTIONS(1707), - [anon_sym_template] = ACTIONS(1707), - [anon_sym_operator] = ACTIONS(1707), - [anon_sym_delete] = ACTIONS(1707), - [anon_sym_throw] = ACTIONS(1707), - [anon_sym_namespace] = ACTIONS(1707), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_static_assert] = ACTIONS(1707), - [anon_sym_co_return] = ACTIONS(1707), - [anon_sym_co_yield] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1707), - [anon_sym_co_await] = ACTIONS(1707), - [anon_sym_new] = ACTIONS(1707), - [sym_this] = ACTIONS(1707), - [sym_nullptr] = ACTIONS(1707), - [sym_alone_macro] = ACTIONS(1709), - [aux_sym_alone_macro_call_token1] = ACTIONS(1707), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1707), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_FORWARD] = ACTIONS(1707), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1707), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1707), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1707), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1707), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_PS_GET] = ACTIONS(1707), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1707), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1707), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1707), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1707), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1707), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1707), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1707), - [anon_sym_MOZ_COLD] = ACTIONS(1707), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1707), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1707), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1707), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1707), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1707), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1707), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1707), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1707), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1707), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1707), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1707), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1707), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1707), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_NONNULL] = ACTIONS(1707), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1707), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1707), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1707), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1707), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1707), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1707), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1707), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1707), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1707), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1707), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1707), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1707), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1707), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1707), - [anon_sym_MOZ_RAII] = ACTIONS(1707), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1707), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1707), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1707), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1707), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1707), - [sym_raw_string_literal] = ACTIONS(1709), - }, - [553] = { - [ts_builtin_sym_end] = ACTIONS(1701), - [sym_identifier] = ACTIONS(1699), - [aux_sym_preproc_include_token1] = ACTIONS(1699), - [aux_sym_preproc_def_token1] = ACTIONS(1699), - [aux_sym_preproc_if_token1] = ACTIONS(1699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1699), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_typedef] = ACTIONS(1699), - [anon_sym_extern] = ACTIONS(1699), - [anon_sym___attribute__] = ACTIONS(1699), - [anon_sym_COLON_COLON] = ACTIONS(1701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1701), - [anon_sym___declspec] = ACTIONS(1699), - [anon_sym___based] = ACTIONS(1699), - [anon_sym___cdecl] = ACTIONS(1699), - [anon_sym___clrcall] = ACTIONS(1699), - [anon_sym___stdcall] = ACTIONS(1699), - [anon_sym___fastcall] = ACTIONS(1699), - [anon_sym___thiscall] = ACTIONS(1699), - [anon_sym___vectorcall] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_static] = ACTIONS(1699), - [anon_sym_register] = ACTIONS(1699), - [anon_sym_inline] = ACTIONS(1699), - [anon_sym_thread_local] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_volatile] = ACTIONS(1699), - [anon_sym_restrict] = ACTIONS(1699), - [anon_sym__Atomic] = ACTIONS(1699), - [anon_sym_mutable] = ACTIONS(1699), - [anon_sym_constexpr] = ACTIONS(1699), - [anon_sym_signed] = ACTIONS(1699), - [anon_sym_unsigned] = ACTIONS(1699), - [anon_sym_long] = ACTIONS(1699), - [anon_sym_short] = ACTIONS(1699), - [sym_primitive_type] = ACTIONS(1699), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1699), - [anon_sym_struct] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_switch] = ACTIONS(1699), - [anon_sym_case] = ACTIONS(1699), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_while] = ACTIONS(1699), - [anon_sym_do] = ACTIONS(1699), - [anon_sym_for] = ACTIONS(1699), - [anon_sym_return] = ACTIONS(1699), - [anon_sym_break] = ACTIONS(1699), - [anon_sym_continue] = ACTIONS(1699), - [anon_sym_goto] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_sizeof] = ACTIONS(1699), - [sym_number_literal] = ACTIONS(1701), - [anon_sym_L_SQUOTE] = ACTIONS(1701), - [anon_sym_u_SQUOTE] = ACTIONS(1701), - [anon_sym_U_SQUOTE] = ACTIONS(1701), - [anon_sym_u8_SQUOTE] = ACTIONS(1701), - [anon_sym_SQUOTE] = ACTIONS(1701), - [anon_sym_L_DQUOTE] = ACTIONS(1701), - [anon_sym_u_DQUOTE] = ACTIONS(1701), - [anon_sym_U_DQUOTE] = ACTIONS(1701), - [anon_sym_u8_DQUOTE] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(1701), - [sym_true] = ACTIONS(1699), - [sym_false] = ACTIONS(1699), - [sym_null] = ACTIONS(1699), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1699), - [anon_sym_virtual] = ACTIONS(1699), - [anon_sym_explicit] = ACTIONS(1699), - [sym_auto] = ACTIONS(1699), - [anon_sym_typename] = ACTIONS(1699), - [anon_sym_template] = ACTIONS(1699), - [anon_sym_operator] = ACTIONS(1699), - [anon_sym_delete] = ACTIONS(1699), - [anon_sym_throw] = ACTIONS(1699), - [anon_sym_namespace] = ACTIONS(1699), - [anon_sym_using] = ACTIONS(1699), - [anon_sym_static_assert] = ACTIONS(1699), - [anon_sym_co_return] = ACTIONS(1699), - [anon_sym_co_yield] = ACTIONS(1699), - [anon_sym_try] = ACTIONS(1699), - [anon_sym_co_await] = ACTIONS(1699), - [anon_sym_new] = ACTIONS(1699), - [sym_this] = ACTIONS(1699), - [sym_nullptr] = ACTIONS(1699), - [sym_alone_macro] = ACTIONS(1701), - [aux_sym_alone_macro_call_token1] = ACTIONS(1699), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1699), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_FORWARD] = ACTIONS(1699), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1699), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1699), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1699), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1699), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_PS_GET] = ACTIONS(1699), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1699), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1699), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1699), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1699), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1699), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1699), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1699), - [anon_sym_MOZ_COLD] = ACTIONS(1699), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1699), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1699), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1699), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1699), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1699), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1699), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1699), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1699), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1699), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1699), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1699), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1699), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1699), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_NONNULL] = ACTIONS(1699), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1699), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1699), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1699), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1699), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1699), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1699), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1699), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1699), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1699), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1699), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1699), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1699), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1699), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1699), - [anon_sym_MOZ_RAII] = ACTIONS(1699), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1699), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1699), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1699), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1699), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1699), - [sym_raw_string_literal] = ACTIONS(1701), - }, - [554] = { - [ts_builtin_sym_end] = ACTIONS(1781), - [sym_identifier] = ACTIONS(1779), - [aux_sym_preproc_include_token1] = ACTIONS(1779), - [aux_sym_preproc_def_token1] = ACTIONS(1779), - [aux_sym_preproc_if_token1] = ACTIONS(1779), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1779), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1779), - [sym_preproc_directive] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP_AMP] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_typedef] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym___attribute__] = ACTIONS(1779), - [anon_sym_COLON_COLON] = ACTIONS(1781), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1781), - [anon_sym___declspec] = ACTIONS(1779), - [anon_sym___based] = ACTIONS(1779), - [anon_sym___cdecl] = ACTIONS(1779), - [anon_sym___clrcall] = ACTIONS(1779), - [anon_sym___stdcall] = ACTIONS(1779), - [anon_sym___fastcall] = ACTIONS(1779), - [anon_sym___thiscall] = ACTIONS(1779), - [anon_sym___vectorcall] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_inline] = ACTIONS(1779), - [anon_sym_thread_local] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [anon_sym_volatile] = ACTIONS(1779), - [anon_sym_restrict] = ACTIONS(1779), - [anon_sym__Atomic] = ACTIONS(1779), - [anon_sym_mutable] = ACTIONS(1779), - [anon_sym_constexpr] = ACTIONS(1779), - [anon_sym_signed] = ACTIONS(1779), - [anon_sym_unsigned] = ACTIONS(1779), - [anon_sym_long] = ACTIONS(1779), - [anon_sym_short] = ACTIONS(1779), - [sym_primitive_type] = ACTIONS(1779), - [anon_sym_enum] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(1779), - [anon_sym_struct] = ACTIONS(1779), - [anon_sym_union] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1779), - [anon_sym_default] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_goto] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_sizeof] = ACTIONS(1779), - [sym_number_literal] = ACTIONS(1781), - [anon_sym_L_SQUOTE] = ACTIONS(1781), - [anon_sym_u_SQUOTE] = ACTIONS(1781), - [anon_sym_U_SQUOTE] = ACTIONS(1781), - [anon_sym_u8_SQUOTE] = ACTIONS(1781), - [anon_sym_SQUOTE] = ACTIONS(1781), - [anon_sym_L_DQUOTE] = ACTIONS(1781), - [anon_sym_u_DQUOTE] = ACTIONS(1781), - [anon_sym_U_DQUOTE] = ACTIONS(1781), - [anon_sym_u8_DQUOTE] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym_true] = ACTIONS(1779), - [sym_false] = ACTIONS(1779), - [sym_null] = ACTIONS(1779), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1779), - [anon_sym_virtual] = ACTIONS(1779), - [anon_sym_explicit] = ACTIONS(1779), - [sym_auto] = ACTIONS(1779), - [anon_sym_typename] = ACTIONS(1779), - [anon_sym_template] = ACTIONS(1779), - [anon_sym_operator] = ACTIONS(1779), - [anon_sym_delete] = ACTIONS(1779), - [anon_sym_throw] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1779), - [anon_sym_using] = ACTIONS(1779), - [anon_sym_static_assert] = ACTIONS(1779), - [anon_sym_co_return] = ACTIONS(1779), - [anon_sym_co_yield] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_co_await] = ACTIONS(1779), - [anon_sym_new] = ACTIONS(1779), - [sym_this] = ACTIONS(1779), - [sym_nullptr] = ACTIONS(1779), - [sym_alone_macro] = ACTIONS(1781), - [aux_sym_alone_macro_call_token1] = ACTIONS(1779), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1779), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_FORWARD] = ACTIONS(1779), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1779), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1779), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1779), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1779), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_PS_GET] = ACTIONS(1779), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1779), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1779), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1779), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1779), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1779), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1779), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1779), - [anon_sym_MOZ_COLD] = ACTIONS(1779), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1779), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1779), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1779), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1779), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1779), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1779), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1779), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1779), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1779), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1779), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1779), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1779), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1779), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_NONNULL] = ACTIONS(1779), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1779), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1779), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1779), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1779), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1779), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1779), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1779), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1779), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1779), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1779), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1779), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1779), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1779), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1779), - [anon_sym_MOZ_RAII] = ACTIONS(1779), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1779), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1779), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1779), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1779), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1779), - [sym_raw_string_literal] = ACTIONS(1781), - }, - [555] = { - [sym_identifier] = ACTIONS(1743), - [aux_sym_preproc_include_token1] = ACTIONS(1743), - [aux_sym_preproc_def_token1] = ACTIONS(1743), - [aux_sym_preproc_if_token1] = ACTIONS(1743), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1743), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1743), - [sym_preproc_directive] = ACTIONS(1743), - [anon_sym_LPAREN2] = ACTIONS(1745), - [anon_sym_BANG] = ACTIONS(1745), - [anon_sym_TILDE] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1743), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_AMP_AMP] = ACTIONS(1745), - [anon_sym_AMP] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_typedef] = ACTIONS(1743), - [anon_sym_extern] = ACTIONS(1743), - [anon_sym___attribute__] = ACTIONS(1743), - [anon_sym_COLON_COLON] = ACTIONS(1745), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1745), - [anon_sym___declspec] = ACTIONS(1743), - [anon_sym___based] = ACTIONS(1743), - [anon_sym___cdecl] = ACTIONS(1743), - [anon_sym___clrcall] = ACTIONS(1743), - [anon_sym___stdcall] = ACTIONS(1743), - [anon_sym___fastcall] = ACTIONS(1743), - [anon_sym___thiscall] = ACTIONS(1743), - [anon_sym___vectorcall] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_static] = ACTIONS(1743), - [anon_sym_register] = ACTIONS(1743), - [anon_sym_inline] = ACTIONS(1743), - [anon_sym_thread_local] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_volatile] = ACTIONS(1743), - [anon_sym_restrict] = ACTIONS(1743), - [anon_sym__Atomic] = ACTIONS(1743), - [anon_sym_mutable] = ACTIONS(1743), - [anon_sym_constexpr] = ACTIONS(1743), - [anon_sym_signed] = ACTIONS(1743), - [anon_sym_unsigned] = ACTIONS(1743), - [anon_sym_long] = ACTIONS(1743), - [anon_sym_short] = ACTIONS(1743), - [sym_primitive_type] = ACTIONS(1743), - [anon_sym_enum] = ACTIONS(1743), - [anon_sym_class] = ACTIONS(1743), - [anon_sym_struct] = ACTIONS(1743), - [anon_sym_union] = ACTIONS(1743), - [anon_sym_if] = ACTIONS(1743), - [anon_sym_switch] = ACTIONS(1743), - [anon_sym_case] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1743), - [anon_sym_while] = ACTIONS(1743), - [anon_sym_do] = ACTIONS(1743), - [anon_sym_for] = ACTIONS(1743), - [anon_sym_return] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1743), - [anon_sym_continue] = ACTIONS(1743), - [anon_sym_goto] = ACTIONS(1743), - [anon_sym_DASH_DASH] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1745), - [anon_sym_sizeof] = ACTIONS(1743), - [sym_number_literal] = ACTIONS(1745), - [anon_sym_L_SQUOTE] = ACTIONS(1745), - [anon_sym_u_SQUOTE] = ACTIONS(1745), - [anon_sym_U_SQUOTE] = ACTIONS(1745), - [anon_sym_u8_SQUOTE] = ACTIONS(1745), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_L_DQUOTE] = ACTIONS(1745), - [anon_sym_u_DQUOTE] = ACTIONS(1745), - [anon_sym_U_DQUOTE] = ACTIONS(1745), - [anon_sym_u8_DQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1745), - [sym_true] = ACTIONS(1743), - [sym_false] = ACTIONS(1743), - [sym_null] = ACTIONS(1743), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1743), - [anon_sym_virtual] = ACTIONS(1743), - [anon_sym_explicit] = ACTIONS(1743), - [sym_auto] = ACTIONS(1743), - [anon_sym_typename] = ACTIONS(1743), - [anon_sym_template] = ACTIONS(1743), - [anon_sym_operator] = ACTIONS(1743), - [anon_sym_delete] = ACTIONS(1743), - [anon_sym_throw] = ACTIONS(1743), - [anon_sym_namespace] = ACTIONS(1743), - [anon_sym_using] = ACTIONS(1743), - [anon_sym_static_assert] = ACTIONS(1743), - [anon_sym_co_return] = ACTIONS(1743), - [anon_sym_co_yield] = ACTIONS(1743), - [anon_sym_try] = ACTIONS(1743), - [anon_sym_co_await] = ACTIONS(1743), - [anon_sym_new] = ACTIONS(1743), - [sym_this] = ACTIONS(1743), - [sym_nullptr] = ACTIONS(1743), - [sym_alone_macro] = ACTIONS(1745), - [aux_sym_alone_macro_call_token1] = ACTIONS(1743), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1743), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_FORWARD] = ACTIONS(1743), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1743), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1743), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1743), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1743), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_PS_GET] = ACTIONS(1743), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1743), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1743), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1743), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1743), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1743), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1743), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1743), - [anon_sym_MOZ_COLD] = ACTIONS(1743), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1743), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1743), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1743), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1743), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1743), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1743), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1743), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1743), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1743), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1743), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1743), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1743), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1743), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_NONNULL] = ACTIONS(1743), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1743), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1743), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1743), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1743), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1743), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1743), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1743), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1743), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1743), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1743), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1743), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1743), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1743), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1743), - [anon_sym_MOZ_RAII] = ACTIONS(1743), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1743), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1743), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1743), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1743), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1743), - [sym_raw_string_literal] = ACTIONS(1745), - }, - [556] = { - [sym_identifier] = ACTIONS(1723), - [aux_sym_preproc_include_token1] = ACTIONS(1723), - [aux_sym_preproc_def_token1] = ACTIONS(1723), - [aux_sym_preproc_if_token1] = ACTIONS(1723), - [aux_sym_preproc_if_token2] = ACTIONS(1723), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1723), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1723), - [sym_preproc_directive] = ACTIONS(1723), - [anon_sym_LPAREN2] = ACTIONS(1725), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1725), - [anon_sym_typedef] = ACTIONS(1723), - [anon_sym_extern] = ACTIONS(1723), - [anon_sym___attribute__] = ACTIONS(1723), - [anon_sym_COLON_COLON] = ACTIONS(1725), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1725), - [anon_sym___declspec] = ACTIONS(1723), - [anon_sym___based] = ACTIONS(1723), - [anon_sym___cdecl] = ACTIONS(1723), - [anon_sym___clrcall] = ACTIONS(1723), - [anon_sym___stdcall] = ACTIONS(1723), - [anon_sym___fastcall] = ACTIONS(1723), - [anon_sym___thiscall] = ACTIONS(1723), - [anon_sym___vectorcall] = ACTIONS(1723), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_static] = ACTIONS(1723), - [anon_sym_register] = ACTIONS(1723), - [anon_sym_inline] = ACTIONS(1723), - [anon_sym_thread_local] = ACTIONS(1723), - [anon_sym_const] = ACTIONS(1723), - [anon_sym_volatile] = ACTIONS(1723), - [anon_sym_restrict] = ACTIONS(1723), - [anon_sym__Atomic] = ACTIONS(1723), - [anon_sym_mutable] = ACTIONS(1723), - [anon_sym_constexpr] = ACTIONS(1723), - [anon_sym_signed] = ACTIONS(1723), - [anon_sym_unsigned] = ACTIONS(1723), - [anon_sym_long] = ACTIONS(1723), - [anon_sym_short] = ACTIONS(1723), - [sym_primitive_type] = ACTIONS(1723), - [anon_sym_enum] = ACTIONS(1723), - [anon_sym_class] = ACTIONS(1723), - [anon_sym_struct] = ACTIONS(1723), - [anon_sym_union] = ACTIONS(1723), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_switch] = ACTIONS(1723), - [anon_sym_case] = ACTIONS(1723), - [anon_sym_default] = ACTIONS(1723), - [anon_sym_while] = ACTIONS(1723), - [anon_sym_do] = ACTIONS(1723), - [anon_sym_for] = ACTIONS(1723), - [anon_sym_return] = ACTIONS(1723), - [anon_sym_break] = ACTIONS(1723), - [anon_sym_continue] = ACTIONS(1723), - [anon_sym_goto] = ACTIONS(1723), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_sizeof] = ACTIONS(1723), - [sym_number_literal] = ACTIONS(1725), - [anon_sym_L_SQUOTE] = ACTIONS(1725), - [anon_sym_u_SQUOTE] = ACTIONS(1725), - [anon_sym_U_SQUOTE] = ACTIONS(1725), - [anon_sym_u8_SQUOTE] = ACTIONS(1725), - [anon_sym_SQUOTE] = ACTIONS(1725), - [anon_sym_L_DQUOTE] = ACTIONS(1725), - [anon_sym_u_DQUOTE] = ACTIONS(1725), - [anon_sym_U_DQUOTE] = ACTIONS(1725), - [anon_sym_u8_DQUOTE] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym_true] = ACTIONS(1723), - [sym_false] = ACTIONS(1723), - [sym_null] = ACTIONS(1723), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1723), - [anon_sym_virtual] = ACTIONS(1723), - [anon_sym_explicit] = ACTIONS(1723), - [sym_auto] = ACTIONS(1723), - [anon_sym_typename] = ACTIONS(1723), - [anon_sym_template] = ACTIONS(1723), - [anon_sym_operator] = ACTIONS(1723), - [anon_sym_delete] = ACTIONS(1723), - [anon_sym_throw] = ACTIONS(1723), - [anon_sym_namespace] = ACTIONS(1723), - [anon_sym_using] = ACTIONS(1723), - [anon_sym_static_assert] = ACTIONS(1723), - [anon_sym_co_return] = ACTIONS(1723), - [anon_sym_co_yield] = ACTIONS(1723), - [anon_sym_try] = ACTIONS(1723), - [anon_sym_co_await] = ACTIONS(1723), - [anon_sym_new] = ACTIONS(1723), - [sym_this] = ACTIONS(1723), - [sym_nullptr] = ACTIONS(1723), - [sym_alone_macro] = ACTIONS(1725), - [aux_sym_alone_macro_call_token1] = ACTIONS(1723), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1723), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_FORWARD] = ACTIONS(1723), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1723), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1723), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1723), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1723), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_PS_GET] = ACTIONS(1723), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1723), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1723), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1723), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1723), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1723), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1723), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1723), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1723), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1723), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1723), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1723), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1723), - [anon_sym_MOZ_COLD] = ACTIONS(1723), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1723), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1723), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1723), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1723), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1723), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1723), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1723), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1723), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1723), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1723), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1723), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1723), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1723), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1723), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1723), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1723), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1723), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1723), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1723), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1723), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1723), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_NONNULL] = ACTIONS(1723), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1723), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1723), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1723), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1723), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1723), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_NORETURN] = ACTIONS(1723), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1723), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1723), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1723), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1723), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1723), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1723), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1723), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1723), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1723), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1723), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1723), - [anon_sym_MOZ_RAII] = ACTIONS(1723), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1723), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1723), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1723), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1723), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1723), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1723), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1723), - [sym_raw_string_literal] = ACTIONS(1725), - }, - [557] = { - [sym_identifier] = ACTIONS(1719), - [aux_sym_preproc_include_token1] = ACTIONS(1719), - [aux_sym_preproc_def_token1] = ACTIONS(1719), - [aux_sym_preproc_if_token1] = ACTIONS(1719), - [aux_sym_preproc_if_token2] = ACTIONS(1719), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1719), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1719), - [sym_preproc_directive] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(1721), - [anon_sym_BANG] = ACTIONS(1721), - [anon_sym_TILDE] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_typedef] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym___attribute__] = ACTIONS(1719), - [anon_sym_COLON_COLON] = ACTIONS(1721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1721), - [anon_sym___declspec] = ACTIONS(1719), - [anon_sym___based] = ACTIONS(1719), - [anon_sym___cdecl] = ACTIONS(1719), - [anon_sym___clrcall] = ACTIONS(1719), - [anon_sym___stdcall] = ACTIONS(1719), - [anon_sym___fastcall] = ACTIONS(1719), - [anon_sym___thiscall] = ACTIONS(1719), - [anon_sym___vectorcall] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_register] = ACTIONS(1719), - [anon_sym_inline] = ACTIONS(1719), - [anon_sym_thread_local] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_volatile] = ACTIONS(1719), - [anon_sym_restrict] = ACTIONS(1719), - [anon_sym__Atomic] = ACTIONS(1719), - [anon_sym_mutable] = ACTIONS(1719), - [anon_sym_constexpr] = ACTIONS(1719), - [anon_sym_signed] = ACTIONS(1719), - [anon_sym_unsigned] = ACTIONS(1719), - [anon_sym_long] = ACTIONS(1719), - [anon_sym_short] = ACTIONS(1719), - [sym_primitive_type] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), - [anon_sym_class] = ACTIONS(1719), - [anon_sym_struct] = ACTIONS(1719), - [anon_sym_union] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_switch] = ACTIONS(1719), - [anon_sym_case] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_goto] = ACTIONS(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1721), - [anon_sym_sizeof] = ACTIONS(1719), - [sym_number_literal] = ACTIONS(1721), - [anon_sym_L_SQUOTE] = ACTIONS(1721), - [anon_sym_u_SQUOTE] = ACTIONS(1721), - [anon_sym_U_SQUOTE] = ACTIONS(1721), - [anon_sym_u8_SQUOTE] = ACTIONS(1721), - [anon_sym_SQUOTE] = ACTIONS(1721), - [anon_sym_L_DQUOTE] = ACTIONS(1721), - [anon_sym_u_DQUOTE] = ACTIONS(1721), - [anon_sym_U_DQUOTE] = ACTIONS(1721), - [anon_sym_u8_DQUOTE] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1719), - [anon_sym_virtual] = ACTIONS(1719), - [anon_sym_explicit] = ACTIONS(1719), - [sym_auto] = ACTIONS(1719), - [anon_sym_typename] = ACTIONS(1719), - [anon_sym_template] = ACTIONS(1719), - [anon_sym_operator] = ACTIONS(1719), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_throw] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1719), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_static_assert] = ACTIONS(1719), - [anon_sym_co_return] = ACTIONS(1719), - [anon_sym_co_yield] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_co_await] = ACTIONS(1719), - [anon_sym_new] = ACTIONS(1719), - [sym_this] = ACTIONS(1719), - [sym_nullptr] = ACTIONS(1719), - [sym_alone_macro] = ACTIONS(1721), - [aux_sym_alone_macro_call_token1] = ACTIONS(1719), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1719), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_FORWARD] = ACTIONS(1719), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1719), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1719), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1719), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1719), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_PS_GET] = ACTIONS(1719), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1719), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1719), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1719), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1719), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1719), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1719), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1719), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1719), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1719), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1719), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1719), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1719), - [anon_sym_MOZ_COLD] = ACTIONS(1719), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1719), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1719), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1719), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1719), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1719), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1719), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1719), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1719), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1719), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1719), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1719), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1719), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1719), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1719), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1719), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1719), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1719), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1719), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1719), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1719), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1719), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_NONNULL] = ACTIONS(1719), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1719), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1719), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1719), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1719), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1719), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_NORETURN] = ACTIONS(1719), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1719), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1719), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1719), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1719), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1719), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1719), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1719), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1719), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1719), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1719), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1719), - [anon_sym_MOZ_RAII] = ACTIONS(1719), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1719), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1719), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1719), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1719), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1719), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1719), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1719), - [sym_raw_string_literal] = ACTIONS(1721), - }, - [558] = { - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1787), - [aux_sym_preproc_include_token1] = ACTIONS(1787), - [aux_sym_preproc_def_token1] = ACTIONS(1787), - [aux_sym_preproc_if_token1] = ACTIONS(1787), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1787), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1787), - [sym_preproc_directive] = ACTIONS(1787), - [anon_sym_LPAREN2] = ACTIONS(1789), - [anon_sym_BANG] = ACTIONS(1789), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_AMP_AMP] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1789), - [anon_sym_typedef] = ACTIONS(1787), - [anon_sym_extern] = ACTIONS(1787), - [anon_sym___attribute__] = ACTIONS(1787), - [anon_sym_COLON_COLON] = ACTIONS(1789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), - [anon_sym___declspec] = ACTIONS(1787), - [anon_sym___based] = ACTIONS(1787), - [anon_sym___cdecl] = ACTIONS(1787), - [anon_sym___clrcall] = ACTIONS(1787), - [anon_sym___stdcall] = ACTIONS(1787), - [anon_sym___fastcall] = ACTIONS(1787), - [anon_sym___thiscall] = ACTIONS(1787), - [anon_sym___vectorcall] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_static] = ACTIONS(1787), - [anon_sym_register] = ACTIONS(1787), - [anon_sym_inline] = ACTIONS(1787), - [anon_sym_thread_local] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_volatile] = ACTIONS(1787), - [anon_sym_restrict] = ACTIONS(1787), - [anon_sym__Atomic] = ACTIONS(1787), - [anon_sym_mutable] = ACTIONS(1787), - [anon_sym_constexpr] = ACTIONS(1787), - [anon_sym_signed] = ACTIONS(1787), - [anon_sym_unsigned] = ACTIONS(1787), - [anon_sym_long] = ACTIONS(1787), - [anon_sym_short] = ACTIONS(1787), - [sym_primitive_type] = ACTIONS(1787), - [anon_sym_enum] = ACTIONS(1787), - [anon_sym_class] = ACTIONS(1787), - [anon_sym_struct] = ACTIONS(1787), - [anon_sym_union] = ACTIONS(1787), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_switch] = ACTIONS(1787), - [anon_sym_case] = ACTIONS(1787), - [anon_sym_default] = ACTIONS(1787), - [anon_sym_while] = ACTIONS(1787), - [anon_sym_do] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_goto] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1787), - [sym_number_literal] = ACTIONS(1789), - [anon_sym_L_SQUOTE] = ACTIONS(1789), - [anon_sym_u_SQUOTE] = ACTIONS(1789), - [anon_sym_U_SQUOTE] = ACTIONS(1789), - [anon_sym_u8_SQUOTE] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [anon_sym_L_DQUOTE] = ACTIONS(1789), - [anon_sym_u_DQUOTE] = ACTIONS(1789), - [anon_sym_U_DQUOTE] = ACTIONS(1789), - [anon_sym_u8_DQUOTE] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [sym_true] = ACTIONS(1787), - [sym_false] = ACTIONS(1787), - [sym_null] = ACTIONS(1787), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1787), - [anon_sym_virtual] = ACTIONS(1787), - [anon_sym_explicit] = ACTIONS(1787), - [sym_auto] = ACTIONS(1787), - [anon_sym_typename] = ACTIONS(1787), - [anon_sym_template] = ACTIONS(1787), - [anon_sym_operator] = ACTIONS(1787), - [anon_sym_delete] = ACTIONS(1787), - [anon_sym_throw] = ACTIONS(1787), - [anon_sym_namespace] = ACTIONS(1787), - [anon_sym_using] = ACTIONS(1787), - [anon_sym_static_assert] = ACTIONS(1787), - [anon_sym_co_return] = ACTIONS(1787), - [anon_sym_co_yield] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1787), - [anon_sym_co_await] = ACTIONS(1787), - [anon_sym_new] = ACTIONS(1787), - [sym_this] = ACTIONS(1787), - [sym_nullptr] = ACTIONS(1787), - [sym_alone_macro] = ACTIONS(1789), - [aux_sym_alone_macro_call_token1] = ACTIONS(1787), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1787), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_FORWARD] = ACTIONS(1787), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1787), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1787), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1787), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1787), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_PS_GET] = ACTIONS(1787), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1787), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1787), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1787), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1787), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1787), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1787), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1787), - [anon_sym_MOZ_COLD] = ACTIONS(1787), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1787), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1787), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1787), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1787), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1787), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1787), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1787), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1787), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1787), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1787), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1787), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1787), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1787), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_NONNULL] = ACTIONS(1787), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1787), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1787), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1787), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1787), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1787), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1787), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1787), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1787), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1787), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1787), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1787), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1787), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1787), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1787), - [anon_sym_MOZ_RAII] = ACTIONS(1787), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1787), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1787), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1787), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1787), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1787), - [sym_raw_string_literal] = ACTIONS(1789), - }, - [559] = { - [sym_identifier] = ACTIONS(1727), - [aux_sym_preproc_include_token1] = ACTIONS(1727), - [aux_sym_preproc_def_token1] = ACTIONS(1727), - [aux_sym_preproc_if_token1] = ACTIONS(1727), - [aux_sym_preproc_if_token2] = ACTIONS(1727), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1727), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1727), - [sym_preproc_directive] = ACTIONS(1727), - [anon_sym_LPAREN2] = ACTIONS(1729), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1729), - [anon_sym_typedef] = ACTIONS(1727), - [anon_sym_extern] = ACTIONS(1727), - [anon_sym___attribute__] = ACTIONS(1727), - [anon_sym_COLON_COLON] = ACTIONS(1729), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), - [anon_sym___declspec] = ACTIONS(1727), - [anon_sym___based] = ACTIONS(1727), - [anon_sym___cdecl] = ACTIONS(1727), - [anon_sym___clrcall] = ACTIONS(1727), - [anon_sym___stdcall] = ACTIONS(1727), - [anon_sym___fastcall] = ACTIONS(1727), - [anon_sym___thiscall] = ACTIONS(1727), - [anon_sym___vectorcall] = ACTIONS(1727), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_static] = ACTIONS(1727), - [anon_sym_register] = ACTIONS(1727), - [anon_sym_inline] = ACTIONS(1727), - [anon_sym_thread_local] = ACTIONS(1727), - [anon_sym_const] = ACTIONS(1727), - [anon_sym_volatile] = ACTIONS(1727), - [anon_sym_restrict] = ACTIONS(1727), - [anon_sym__Atomic] = ACTIONS(1727), - [anon_sym_mutable] = ACTIONS(1727), - [anon_sym_constexpr] = ACTIONS(1727), - [anon_sym_signed] = ACTIONS(1727), - [anon_sym_unsigned] = ACTIONS(1727), - [anon_sym_long] = ACTIONS(1727), - [anon_sym_short] = ACTIONS(1727), - [sym_primitive_type] = ACTIONS(1727), - [anon_sym_enum] = ACTIONS(1727), - [anon_sym_class] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(1727), - [anon_sym_union] = ACTIONS(1727), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_switch] = ACTIONS(1727), - [anon_sym_case] = ACTIONS(1727), - [anon_sym_default] = ACTIONS(1727), - [anon_sym_while] = ACTIONS(1727), - [anon_sym_do] = ACTIONS(1727), - [anon_sym_for] = ACTIONS(1727), - [anon_sym_return] = ACTIONS(1727), - [anon_sym_break] = ACTIONS(1727), - [anon_sym_continue] = ACTIONS(1727), - [anon_sym_goto] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1729), - [anon_sym_sizeof] = ACTIONS(1727), - [sym_number_literal] = ACTIONS(1729), - [anon_sym_L_SQUOTE] = ACTIONS(1729), - [anon_sym_u_SQUOTE] = ACTIONS(1729), - [anon_sym_U_SQUOTE] = ACTIONS(1729), - [anon_sym_u8_SQUOTE] = ACTIONS(1729), - [anon_sym_SQUOTE] = ACTIONS(1729), - [anon_sym_L_DQUOTE] = ACTIONS(1729), - [anon_sym_u_DQUOTE] = ACTIONS(1729), - [anon_sym_U_DQUOTE] = ACTIONS(1729), - [anon_sym_u8_DQUOTE] = ACTIONS(1729), - [anon_sym_DQUOTE] = ACTIONS(1729), - [sym_true] = ACTIONS(1727), - [sym_false] = ACTIONS(1727), - [sym_null] = ACTIONS(1727), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1727), - [anon_sym_virtual] = ACTIONS(1727), - [anon_sym_explicit] = ACTIONS(1727), - [sym_auto] = ACTIONS(1727), - [anon_sym_typename] = ACTIONS(1727), - [anon_sym_template] = ACTIONS(1727), - [anon_sym_operator] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_throw] = ACTIONS(1727), - [anon_sym_namespace] = ACTIONS(1727), - [anon_sym_using] = ACTIONS(1727), - [anon_sym_static_assert] = ACTIONS(1727), - [anon_sym_co_return] = ACTIONS(1727), - [anon_sym_co_yield] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1727), - [anon_sym_co_await] = ACTIONS(1727), - [anon_sym_new] = ACTIONS(1727), - [sym_this] = ACTIONS(1727), - [sym_nullptr] = ACTIONS(1727), - [sym_alone_macro] = ACTIONS(1729), - [aux_sym_alone_macro_call_token1] = ACTIONS(1727), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1727), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_FORWARD] = ACTIONS(1727), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1727), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1727), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1727), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1727), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_PS_GET] = ACTIONS(1727), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1727), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1727), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1727), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1727), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1727), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1727), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1727), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1727), - [anon_sym_MOZ_COLD] = ACTIONS(1727), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1727), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1727), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1727), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1727), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1727), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1727), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1727), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1727), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1727), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1727), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1727), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1727), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1727), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_NONNULL] = ACTIONS(1727), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1727), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1727), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1727), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1727), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1727), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1727), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1727), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1727), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1727), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1727), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1727), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1727), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1727), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1727), - [anon_sym_MOZ_RAII] = ACTIONS(1727), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1727), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1727), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1727), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1727), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1727), - [sym_raw_string_literal] = ACTIONS(1729), - }, - [560] = { - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_include_token1] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1831), - [aux_sym_preproc_if_token1] = ACTIONS(1831), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1831), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1831), - [sym_preproc_directive] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1833), - [anon_sym_BANG] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_AMP_AMP] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_typedef] = ACTIONS(1831), - [anon_sym_extern] = ACTIONS(1831), - [anon_sym___attribute__] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1833), - [anon_sym___declspec] = ACTIONS(1831), - [anon_sym___based] = ACTIONS(1831), - [anon_sym___cdecl] = ACTIONS(1831), - [anon_sym___clrcall] = ACTIONS(1831), - [anon_sym___stdcall] = ACTIONS(1831), - [anon_sym___fastcall] = ACTIONS(1831), - [anon_sym___thiscall] = ACTIONS(1831), - [anon_sym___vectorcall] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_RBRACE] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_static] = ACTIONS(1831), - [anon_sym_register] = ACTIONS(1831), - [anon_sym_inline] = ACTIONS(1831), - [anon_sym_thread_local] = ACTIONS(1831), - [anon_sym_const] = ACTIONS(1831), - [anon_sym_volatile] = ACTIONS(1831), - [anon_sym_restrict] = ACTIONS(1831), - [anon_sym__Atomic] = ACTIONS(1831), - [anon_sym_mutable] = ACTIONS(1831), - [anon_sym_constexpr] = ACTIONS(1831), - [anon_sym_signed] = ACTIONS(1831), - [anon_sym_unsigned] = ACTIONS(1831), - [anon_sym_long] = ACTIONS(1831), - [anon_sym_short] = ACTIONS(1831), - [sym_primitive_type] = ACTIONS(1831), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_class] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(1831), - [anon_sym_union] = ACTIONS(1831), - [anon_sym_if] = ACTIONS(1831), - [anon_sym_switch] = ACTIONS(1831), - [anon_sym_case] = ACTIONS(1831), - [anon_sym_default] = ACTIONS(1831), - [anon_sym_while] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_for] = ACTIONS(1831), - [anon_sym_return] = ACTIONS(1831), - [anon_sym_break] = ACTIONS(1831), - [anon_sym_continue] = ACTIONS(1831), - [anon_sym_goto] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1833), - [anon_sym_PLUS_PLUS] = ACTIONS(1833), - [anon_sym_sizeof] = ACTIONS(1831), - [sym_number_literal] = ACTIONS(1833), - [anon_sym_L_SQUOTE] = ACTIONS(1833), - [anon_sym_u_SQUOTE] = ACTIONS(1833), - [anon_sym_U_SQUOTE] = ACTIONS(1833), - [anon_sym_u8_SQUOTE] = ACTIONS(1833), - [anon_sym_SQUOTE] = ACTIONS(1833), - [anon_sym_L_DQUOTE] = ACTIONS(1833), - [anon_sym_u_DQUOTE] = ACTIONS(1833), - [anon_sym_U_DQUOTE] = ACTIONS(1833), - [anon_sym_u8_DQUOTE] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(1833), - [sym_true] = ACTIONS(1831), - [sym_false] = ACTIONS(1831), - [sym_null] = ACTIONS(1831), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1831), - [anon_sym_virtual] = ACTIONS(1831), - [anon_sym_explicit] = ACTIONS(1831), - [sym_auto] = ACTIONS(1831), - [anon_sym_typename] = ACTIONS(1831), - [anon_sym_template] = ACTIONS(1831), - [anon_sym_operator] = ACTIONS(1831), - [anon_sym_delete] = ACTIONS(1831), - [anon_sym_throw] = ACTIONS(1831), - [anon_sym_namespace] = ACTIONS(1831), - [anon_sym_using] = ACTIONS(1831), - [anon_sym_static_assert] = ACTIONS(1831), - [anon_sym_co_return] = ACTIONS(1831), - [anon_sym_co_yield] = ACTIONS(1831), - [anon_sym_try] = ACTIONS(1831), - [anon_sym_co_await] = ACTIONS(1831), - [anon_sym_new] = ACTIONS(1831), - [sym_this] = ACTIONS(1831), - [sym_nullptr] = ACTIONS(1831), - [sym_alone_macro] = ACTIONS(1833), - [aux_sym_alone_macro_call_token1] = ACTIONS(1831), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1831), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_FORWARD] = ACTIONS(1831), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1831), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1831), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1831), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1831), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_PS_GET] = ACTIONS(1831), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1831), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1831), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1831), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1831), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1831), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1831), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1831), - [anon_sym_MOZ_COLD] = ACTIONS(1831), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1831), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1831), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1831), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1831), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1831), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1831), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1831), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1831), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1831), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1831), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1831), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1831), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1831), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_NONNULL] = ACTIONS(1831), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1831), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1831), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1831), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1831), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1831), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1831), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1831), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1831), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1831), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1831), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1831), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1831), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1831), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1831), - [anon_sym_MOZ_RAII] = ACTIONS(1831), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1831), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1831), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1831), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1831), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1831), - [sym_raw_string_literal] = ACTIONS(1833), - }, - [561] = { - [sym_identifier] = ACTIONS(1835), - [aux_sym_preproc_include_token1] = ACTIONS(1835), - [aux_sym_preproc_def_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1835), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1835), - [sym_preproc_directive] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1837), - [anon_sym_TILDE] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1837), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_SEMI] = ACTIONS(1837), - [anon_sym_typedef] = ACTIONS(1835), - [anon_sym_extern] = ACTIONS(1835), - [anon_sym___attribute__] = ACTIONS(1835), - [anon_sym_COLON_COLON] = ACTIONS(1837), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1837), - [anon_sym___declspec] = ACTIONS(1835), - [anon_sym___based] = ACTIONS(1835), - [anon_sym___cdecl] = ACTIONS(1835), - [anon_sym___clrcall] = ACTIONS(1835), - [anon_sym___stdcall] = ACTIONS(1835), - [anon_sym___fastcall] = ACTIONS(1835), - [anon_sym___thiscall] = ACTIONS(1835), - [anon_sym___vectorcall] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_static] = ACTIONS(1835), - [anon_sym_register] = ACTIONS(1835), - [anon_sym_inline] = ACTIONS(1835), - [anon_sym_thread_local] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym_mutable] = ACTIONS(1835), - [anon_sym_constexpr] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(1835), - [anon_sym_unsigned] = ACTIONS(1835), - [anon_sym_long] = ACTIONS(1835), - [anon_sym_short] = ACTIONS(1835), - [sym_primitive_type] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_struct] = ACTIONS(1835), - [anon_sym_union] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_switch] = ACTIONS(1835), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_goto] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1837), - [anon_sym_PLUS_PLUS] = ACTIONS(1837), - [anon_sym_sizeof] = ACTIONS(1835), - [sym_number_literal] = ACTIONS(1837), - [anon_sym_L_SQUOTE] = ACTIONS(1837), - [anon_sym_u_SQUOTE] = ACTIONS(1837), - [anon_sym_U_SQUOTE] = ACTIONS(1837), - [anon_sym_u8_SQUOTE] = ACTIONS(1837), - [anon_sym_SQUOTE] = ACTIONS(1837), - [anon_sym_L_DQUOTE] = ACTIONS(1837), - [anon_sym_u_DQUOTE] = ACTIONS(1837), - [anon_sym_U_DQUOTE] = ACTIONS(1837), - [anon_sym_u8_DQUOTE] = ACTIONS(1837), - [anon_sym_DQUOTE] = ACTIONS(1837), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_null] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1835), - [anon_sym_virtual] = ACTIONS(1835), - [anon_sym_explicit] = ACTIONS(1835), - [sym_auto] = ACTIONS(1835), - [anon_sym_typename] = ACTIONS(1835), - [anon_sym_template] = ACTIONS(1835), - [anon_sym_operator] = ACTIONS(1835), - [anon_sym_delete] = ACTIONS(1835), - [anon_sym_throw] = ACTIONS(1835), - [anon_sym_namespace] = ACTIONS(1835), - [anon_sym_using] = ACTIONS(1835), - [anon_sym_static_assert] = ACTIONS(1835), - [anon_sym_co_return] = ACTIONS(1835), - [anon_sym_co_yield] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_co_await] = ACTIONS(1835), - [anon_sym_new] = ACTIONS(1835), - [sym_this] = ACTIONS(1835), - [sym_nullptr] = ACTIONS(1835), - [sym_alone_macro] = ACTIONS(1837), - [aux_sym_alone_macro_call_token1] = ACTIONS(1835), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1835), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_FORWARD] = ACTIONS(1835), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1835), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1835), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1835), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1835), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_PS_GET] = ACTIONS(1835), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1835), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1835), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1835), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1835), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1835), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1835), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1835), - [anon_sym_MOZ_COLD] = ACTIONS(1835), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1835), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1835), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1835), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1835), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1835), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1835), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1835), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1835), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1835), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1835), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1835), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1835), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1835), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_NONNULL] = ACTIONS(1835), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1835), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1835), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1835), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1835), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1835), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1835), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1835), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1835), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1835), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1835), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1835), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1835), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1835), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1835), - [anon_sym_MOZ_RAII] = ACTIONS(1835), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1835), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1835), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1835), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1835), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1835), - [sym_raw_string_literal] = ACTIONS(1837), - }, - [562] = { - [sym_identifier] = ACTIONS(1791), - [aux_sym_preproc_include_token1] = ACTIONS(1791), - [aux_sym_preproc_def_token1] = ACTIONS(1791), - [aux_sym_preproc_if_token1] = ACTIONS(1791), - [aux_sym_preproc_if_token2] = ACTIONS(1791), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1791), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1791), - [sym_preproc_directive] = ACTIONS(1791), - [anon_sym_LPAREN2] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1793), - [anon_sym_TILDE] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_AMP_AMP] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_SEMI] = ACTIONS(1793), - [anon_sym_typedef] = ACTIONS(1791), - [anon_sym_extern] = ACTIONS(1791), - [anon_sym___attribute__] = ACTIONS(1791), - [anon_sym_COLON_COLON] = ACTIONS(1793), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1793), - [anon_sym___declspec] = ACTIONS(1791), - [anon_sym___based] = ACTIONS(1791), - [anon_sym___cdecl] = ACTIONS(1791), - [anon_sym___clrcall] = ACTIONS(1791), - [anon_sym___stdcall] = ACTIONS(1791), - [anon_sym___fastcall] = ACTIONS(1791), - [anon_sym___thiscall] = ACTIONS(1791), - [anon_sym___vectorcall] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_LBRACK] = ACTIONS(1791), - [anon_sym_static] = ACTIONS(1791), - [anon_sym_register] = ACTIONS(1791), - [anon_sym_inline] = ACTIONS(1791), - [anon_sym_thread_local] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_volatile] = ACTIONS(1791), - [anon_sym_restrict] = ACTIONS(1791), - [anon_sym__Atomic] = ACTIONS(1791), - [anon_sym_mutable] = ACTIONS(1791), - [anon_sym_constexpr] = ACTIONS(1791), - [anon_sym_signed] = ACTIONS(1791), - [anon_sym_unsigned] = ACTIONS(1791), - [anon_sym_long] = ACTIONS(1791), - [anon_sym_short] = ACTIONS(1791), - [sym_primitive_type] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_class] = ACTIONS(1791), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_union] = ACTIONS(1791), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_switch] = ACTIONS(1791), - [anon_sym_case] = ACTIONS(1791), - [anon_sym_default] = ACTIONS(1791), - [anon_sym_while] = ACTIONS(1791), - [anon_sym_do] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_goto] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1793), - [anon_sym_PLUS_PLUS] = ACTIONS(1793), - [anon_sym_sizeof] = ACTIONS(1791), - [sym_number_literal] = ACTIONS(1793), - [anon_sym_L_SQUOTE] = ACTIONS(1793), - [anon_sym_u_SQUOTE] = ACTIONS(1793), - [anon_sym_U_SQUOTE] = ACTIONS(1793), - [anon_sym_u8_SQUOTE] = ACTIONS(1793), - [anon_sym_SQUOTE] = ACTIONS(1793), - [anon_sym_L_DQUOTE] = ACTIONS(1793), - [anon_sym_u_DQUOTE] = ACTIONS(1793), - [anon_sym_U_DQUOTE] = ACTIONS(1793), - [anon_sym_u8_DQUOTE] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1793), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_null] = ACTIONS(1791), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1791), - [anon_sym_virtual] = ACTIONS(1791), - [anon_sym_explicit] = ACTIONS(1791), - [sym_auto] = ACTIONS(1791), - [anon_sym_typename] = ACTIONS(1791), - [anon_sym_template] = ACTIONS(1791), - [anon_sym_operator] = ACTIONS(1791), - [anon_sym_delete] = ACTIONS(1791), - [anon_sym_throw] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1791), - [anon_sym_using] = ACTIONS(1791), - [anon_sym_static_assert] = ACTIONS(1791), - [anon_sym_co_return] = ACTIONS(1791), - [anon_sym_co_yield] = ACTIONS(1791), - [anon_sym_try] = ACTIONS(1791), - [anon_sym_co_await] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1791), - [sym_this] = ACTIONS(1791), - [sym_nullptr] = ACTIONS(1791), - [sym_alone_macro] = ACTIONS(1793), - [aux_sym_alone_macro_call_token1] = ACTIONS(1791), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1791), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_FORWARD] = ACTIONS(1791), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1791), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1791), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1791), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1791), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_PS_GET] = ACTIONS(1791), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1791), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1791), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1791), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1791), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1791), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1791), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1791), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1791), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1791), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1791), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1791), - [anon_sym_MOZ_COLD] = ACTIONS(1791), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1791), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1791), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1791), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1791), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1791), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1791), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1791), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1791), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1791), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1791), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1791), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1791), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1791), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1791), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1791), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1791), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1791), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1791), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1791), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1791), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_NONNULL] = ACTIONS(1791), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1791), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1791), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1791), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1791), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1791), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_NORETURN] = ACTIONS(1791), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1791), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1791), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1791), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1791), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1791), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1791), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1791), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1791), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1791), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1791), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1791), - [anon_sym_MOZ_RAII] = ACTIONS(1791), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1791), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1791), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1791), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1791), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1791), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1791), - [sym_raw_string_literal] = ACTIONS(1793), - }, - [563] = { - [sym_identifier] = ACTIONS(1795), - [aux_sym_preproc_include_token1] = ACTIONS(1795), - [aux_sym_preproc_def_token1] = ACTIONS(1795), - [aux_sym_preproc_if_token1] = ACTIONS(1795), - [aux_sym_preproc_if_token2] = ACTIONS(1795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1795), - [sym_preproc_directive] = ACTIONS(1795), - [anon_sym_LPAREN2] = ACTIONS(1797), - [anon_sym_BANG] = ACTIONS(1797), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1795), - [anon_sym_PLUS] = ACTIONS(1795), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_AMP_AMP] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1797), - [anon_sym_typedef] = ACTIONS(1795), - [anon_sym_extern] = ACTIONS(1795), - [anon_sym___attribute__] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1797), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1797), - [anon_sym___declspec] = ACTIONS(1795), - [anon_sym___based] = ACTIONS(1795), - [anon_sym___cdecl] = ACTIONS(1795), - [anon_sym___clrcall] = ACTIONS(1795), - [anon_sym___stdcall] = ACTIONS(1795), - [anon_sym___fastcall] = ACTIONS(1795), - [anon_sym___thiscall] = ACTIONS(1795), - [anon_sym___vectorcall] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_static] = ACTIONS(1795), - [anon_sym_register] = ACTIONS(1795), - [anon_sym_inline] = ACTIONS(1795), - [anon_sym_thread_local] = ACTIONS(1795), - [anon_sym_const] = ACTIONS(1795), - [anon_sym_volatile] = ACTIONS(1795), - [anon_sym_restrict] = ACTIONS(1795), - [anon_sym__Atomic] = ACTIONS(1795), - [anon_sym_mutable] = ACTIONS(1795), - [anon_sym_constexpr] = ACTIONS(1795), - [anon_sym_signed] = ACTIONS(1795), - [anon_sym_unsigned] = ACTIONS(1795), - [anon_sym_long] = ACTIONS(1795), - [anon_sym_short] = ACTIONS(1795), - [sym_primitive_type] = ACTIONS(1795), - [anon_sym_enum] = ACTIONS(1795), - [anon_sym_class] = ACTIONS(1795), - [anon_sym_struct] = ACTIONS(1795), - [anon_sym_union] = ACTIONS(1795), - [anon_sym_if] = ACTIONS(1795), - [anon_sym_switch] = ACTIONS(1795), - [anon_sym_case] = ACTIONS(1795), - [anon_sym_default] = ACTIONS(1795), - [anon_sym_while] = ACTIONS(1795), - [anon_sym_do] = ACTIONS(1795), - [anon_sym_for] = ACTIONS(1795), - [anon_sym_return] = ACTIONS(1795), - [anon_sym_break] = ACTIONS(1795), - [anon_sym_continue] = ACTIONS(1795), - [anon_sym_goto] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1797), - [anon_sym_PLUS_PLUS] = ACTIONS(1797), - [anon_sym_sizeof] = ACTIONS(1795), - [sym_number_literal] = ACTIONS(1797), - [anon_sym_L_SQUOTE] = ACTIONS(1797), - [anon_sym_u_SQUOTE] = ACTIONS(1797), - [anon_sym_U_SQUOTE] = ACTIONS(1797), - [anon_sym_u8_SQUOTE] = ACTIONS(1797), - [anon_sym_SQUOTE] = ACTIONS(1797), - [anon_sym_L_DQUOTE] = ACTIONS(1797), - [anon_sym_u_DQUOTE] = ACTIONS(1797), - [anon_sym_U_DQUOTE] = ACTIONS(1797), - [anon_sym_u8_DQUOTE] = ACTIONS(1797), - [anon_sym_DQUOTE] = ACTIONS(1797), - [sym_true] = ACTIONS(1795), - [sym_false] = ACTIONS(1795), - [sym_null] = ACTIONS(1795), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1795), - [anon_sym_virtual] = ACTIONS(1795), - [anon_sym_explicit] = ACTIONS(1795), - [sym_auto] = ACTIONS(1795), - [anon_sym_typename] = ACTIONS(1795), - [anon_sym_template] = ACTIONS(1795), - [anon_sym_operator] = ACTIONS(1795), - [anon_sym_delete] = ACTIONS(1795), - [anon_sym_throw] = ACTIONS(1795), - [anon_sym_namespace] = ACTIONS(1795), - [anon_sym_using] = ACTIONS(1795), - [anon_sym_static_assert] = ACTIONS(1795), - [anon_sym_co_return] = ACTIONS(1795), - [anon_sym_co_yield] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1795), - [anon_sym_co_await] = ACTIONS(1795), - [anon_sym_new] = ACTIONS(1795), - [sym_this] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(1795), - [sym_alone_macro] = ACTIONS(1797), - [aux_sym_alone_macro_call_token1] = ACTIONS(1795), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1795), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_FORWARD] = ACTIONS(1795), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1795), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1795), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1795), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1795), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_PS_GET] = ACTIONS(1795), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1795), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1795), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1795), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1795), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1795), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1795), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1795), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1795), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1795), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1795), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1795), - [anon_sym_MOZ_COLD] = ACTIONS(1795), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1795), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1795), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1795), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1795), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1795), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1795), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1795), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1795), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1795), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1795), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1795), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1795), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1795), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1795), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1795), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1795), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1795), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1795), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1795), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1795), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_NONNULL] = ACTIONS(1795), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1795), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1795), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1795), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1795), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1795), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_NORETURN] = ACTIONS(1795), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1795), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1795), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1795), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1795), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1795), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1795), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1795), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1795), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1795), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1795), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1795), - [anon_sym_MOZ_RAII] = ACTIONS(1795), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1795), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1795), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1795), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1795), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1795), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1795), - [sym_raw_string_literal] = ACTIONS(1797), - }, - [564] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1883), - [aux_sym_preproc_include_token1] = ACTIONS(1883), - [aux_sym_preproc_def_token1] = ACTIONS(1883), - [aux_sym_preproc_if_token1] = ACTIONS(1883), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1883), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1883), - [sym_preproc_directive] = ACTIONS(1883), - [anon_sym_LPAREN2] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1883), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_typedef] = ACTIONS(1883), - [anon_sym_extern] = ACTIONS(1883), - [anon_sym___attribute__] = ACTIONS(1883), - [anon_sym_COLON_COLON] = ACTIONS(1885), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1885), - [anon_sym___declspec] = ACTIONS(1883), - [anon_sym___based] = ACTIONS(1883), - [anon_sym___cdecl] = ACTIONS(1883), - [anon_sym___clrcall] = ACTIONS(1883), - [anon_sym___stdcall] = ACTIONS(1883), - [anon_sym___fastcall] = ACTIONS(1883), - [anon_sym___thiscall] = ACTIONS(1883), - [anon_sym___vectorcall] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1883), - [anon_sym_static] = ACTIONS(1883), - [anon_sym_register] = ACTIONS(1883), - [anon_sym_inline] = ACTIONS(1883), - [anon_sym_thread_local] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(1883), - [anon_sym_volatile] = ACTIONS(1883), - [anon_sym_restrict] = ACTIONS(1883), - [anon_sym__Atomic] = ACTIONS(1883), - [anon_sym_mutable] = ACTIONS(1883), - [anon_sym_constexpr] = ACTIONS(1883), - [anon_sym_signed] = ACTIONS(1883), - [anon_sym_unsigned] = ACTIONS(1883), - [anon_sym_long] = ACTIONS(1883), - [anon_sym_short] = ACTIONS(1883), - [sym_primitive_type] = ACTIONS(1883), - [anon_sym_enum] = ACTIONS(1883), - [anon_sym_class] = ACTIONS(1883), - [anon_sym_struct] = ACTIONS(1883), - [anon_sym_union] = ACTIONS(1883), - [anon_sym_if] = ACTIONS(1883), - [anon_sym_switch] = ACTIONS(1883), - [anon_sym_case] = ACTIONS(1883), - [anon_sym_default] = ACTIONS(1883), - [anon_sym_while] = ACTIONS(1883), - [anon_sym_do] = ACTIONS(1883), - [anon_sym_for] = ACTIONS(1883), - [anon_sym_return] = ACTIONS(1883), - [anon_sym_break] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(1883), - [anon_sym_goto] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_sizeof] = ACTIONS(1883), - [sym_number_literal] = ACTIONS(1885), - [anon_sym_L_SQUOTE] = ACTIONS(1885), - [anon_sym_u_SQUOTE] = ACTIONS(1885), - [anon_sym_U_SQUOTE] = ACTIONS(1885), - [anon_sym_u8_SQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_L_DQUOTE] = ACTIONS(1885), - [anon_sym_u_DQUOTE] = ACTIONS(1885), - [anon_sym_U_DQUOTE] = ACTIONS(1885), - [anon_sym_u8_DQUOTE] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym_true] = ACTIONS(1883), - [sym_false] = ACTIONS(1883), - [sym_null] = ACTIONS(1883), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1883), - [anon_sym_virtual] = ACTIONS(1883), - [anon_sym_explicit] = ACTIONS(1883), - [sym_auto] = ACTIONS(1883), - [anon_sym_typename] = ACTIONS(1883), - [anon_sym_template] = ACTIONS(1883), - [anon_sym_operator] = ACTIONS(1883), - [anon_sym_delete] = ACTIONS(1883), - [anon_sym_throw] = ACTIONS(1883), - [anon_sym_namespace] = ACTIONS(1883), - [anon_sym_using] = ACTIONS(1883), - [anon_sym_static_assert] = ACTIONS(1883), - [anon_sym_co_return] = ACTIONS(1883), - [anon_sym_co_yield] = ACTIONS(1883), - [anon_sym_try] = ACTIONS(1883), - [anon_sym_co_await] = ACTIONS(1883), - [anon_sym_new] = ACTIONS(1883), - [sym_this] = ACTIONS(1883), - [sym_nullptr] = ACTIONS(1883), - [sym_alone_macro] = ACTIONS(1885), - [aux_sym_alone_macro_call_token1] = ACTIONS(1883), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1883), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_FORWARD] = ACTIONS(1883), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1883), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1883), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1883), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1883), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_PS_GET] = ACTIONS(1883), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1883), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1883), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1883), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1883), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1883), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1883), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1883), - [anon_sym_MOZ_COLD] = ACTIONS(1883), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1883), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1883), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1883), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1883), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1883), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1883), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1883), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1883), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1883), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1883), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1883), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1883), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1883), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_NONNULL] = ACTIONS(1883), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1883), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1883), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1883), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1883), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1883), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1883), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1883), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1883), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1883), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1883), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1883), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1883), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1883), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1883), - [anon_sym_MOZ_RAII] = ACTIONS(1883), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1883), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1883), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1883), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1883), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1883), - [sym_raw_string_literal] = ACTIONS(1885), - }, - [565] = { - [sym_identifier] = ACTIONS(1839), - [aux_sym_preproc_include_token1] = ACTIONS(1839), - [aux_sym_preproc_def_token1] = ACTIONS(1839), - [aux_sym_preproc_if_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [sym_preproc_directive] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_TILDE] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_AMP_AMP] = ACTIONS(1841), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_typedef] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym___attribute__] = ACTIONS(1839), - [anon_sym_COLON_COLON] = ACTIONS(1841), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1841), - [anon_sym___declspec] = ACTIONS(1839), - [anon_sym___based] = ACTIONS(1839), - [anon_sym___cdecl] = ACTIONS(1839), - [anon_sym___clrcall] = ACTIONS(1839), - [anon_sym___stdcall] = ACTIONS(1839), - [anon_sym___fastcall] = ACTIONS(1839), - [anon_sym___thiscall] = ACTIONS(1839), - [anon_sym___vectorcall] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1841), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_static] = ACTIONS(1839), - [anon_sym_register] = ACTIONS(1839), - [anon_sym_inline] = ACTIONS(1839), - [anon_sym_thread_local] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [anon_sym_volatile] = ACTIONS(1839), - [anon_sym_restrict] = ACTIONS(1839), - [anon_sym__Atomic] = ACTIONS(1839), - [anon_sym_mutable] = ACTIONS(1839), - [anon_sym_constexpr] = ACTIONS(1839), - [anon_sym_signed] = ACTIONS(1839), - [anon_sym_unsigned] = ACTIONS(1839), - [anon_sym_long] = ACTIONS(1839), - [anon_sym_short] = ACTIONS(1839), - [sym_primitive_type] = ACTIONS(1839), - [anon_sym_enum] = ACTIONS(1839), - [anon_sym_class] = ACTIONS(1839), - [anon_sym_struct] = ACTIONS(1839), - [anon_sym_union] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_switch] = ACTIONS(1839), - [anon_sym_case] = ACTIONS(1839), - [anon_sym_default] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_goto] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1841), - [anon_sym_PLUS_PLUS] = ACTIONS(1841), - [anon_sym_sizeof] = ACTIONS(1839), - [sym_number_literal] = ACTIONS(1841), - [anon_sym_L_SQUOTE] = ACTIONS(1841), - [anon_sym_u_SQUOTE] = ACTIONS(1841), - [anon_sym_U_SQUOTE] = ACTIONS(1841), - [anon_sym_u8_SQUOTE] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_L_DQUOTE] = ACTIONS(1841), - [anon_sym_u_DQUOTE] = ACTIONS(1841), - [anon_sym_U_DQUOTE] = ACTIONS(1841), - [anon_sym_u8_DQUOTE] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1841), - [sym_true] = ACTIONS(1839), - [sym_false] = ACTIONS(1839), - [sym_null] = ACTIONS(1839), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1839), - [anon_sym_virtual] = ACTIONS(1839), - [anon_sym_explicit] = ACTIONS(1839), - [sym_auto] = ACTIONS(1839), - [anon_sym_typename] = ACTIONS(1839), - [anon_sym_template] = ACTIONS(1839), - [anon_sym_operator] = ACTIONS(1839), - [anon_sym_delete] = ACTIONS(1839), - [anon_sym_throw] = ACTIONS(1839), - [anon_sym_namespace] = ACTIONS(1839), - [anon_sym_using] = ACTIONS(1839), - [anon_sym_static_assert] = ACTIONS(1839), - [anon_sym_co_return] = ACTIONS(1839), - [anon_sym_co_yield] = ACTIONS(1839), - [anon_sym_try] = ACTIONS(1839), - [anon_sym_co_await] = ACTIONS(1839), - [anon_sym_new] = ACTIONS(1839), - [sym_this] = ACTIONS(1839), - [sym_nullptr] = ACTIONS(1839), - [sym_alone_macro] = ACTIONS(1841), - [aux_sym_alone_macro_call_token1] = ACTIONS(1839), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1839), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_FORWARD] = ACTIONS(1839), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1839), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1839), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1839), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1839), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_PS_GET] = ACTIONS(1839), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1839), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1839), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1839), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1839), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1839), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1839), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1839), - [anon_sym_MOZ_COLD] = ACTIONS(1839), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1839), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1839), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1839), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1839), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1839), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1839), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1839), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1839), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1839), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1839), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1839), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1839), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1839), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_NONNULL] = ACTIONS(1839), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1839), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1839), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1839), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1839), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1839), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1839), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1839), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1839), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1839), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1839), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1839), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1839), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1839), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1839), - [anon_sym_MOZ_RAII] = ACTIONS(1839), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1839), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1839), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1839), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1839), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1839), - [sym_raw_string_literal] = ACTIONS(1841), - }, - [566] = { - [sym_identifier] = ACTIONS(1843), - [aux_sym_preproc_include_token1] = ACTIONS(1843), - [aux_sym_preproc_def_token1] = ACTIONS(1843), - [aux_sym_preproc_if_token1] = ACTIONS(1843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1843), - [sym_preproc_directive] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1845), - [anon_sym_typedef] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym___attribute__] = ACTIONS(1843), - [anon_sym_COLON_COLON] = ACTIONS(1845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1845), - [anon_sym___declspec] = ACTIONS(1843), - [anon_sym___based] = ACTIONS(1843), - [anon_sym___cdecl] = ACTIONS(1843), - [anon_sym___clrcall] = ACTIONS(1843), - [anon_sym___stdcall] = ACTIONS(1843), - [anon_sym___fastcall] = ACTIONS(1843), - [anon_sym___thiscall] = ACTIONS(1843), - [anon_sym___vectorcall] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_RBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_static] = ACTIONS(1843), - [anon_sym_register] = ACTIONS(1843), - [anon_sym_inline] = ACTIONS(1843), - [anon_sym_thread_local] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym_mutable] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_signed] = ACTIONS(1843), - [anon_sym_unsigned] = ACTIONS(1843), - [anon_sym_long] = ACTIONS(1843), - [anon_sym_short] = ACTIONS(1843), - [sym_primitive_type] = ACTIONS(1843), - [anon_sym_enum] = ACTIONS(1843), - [anon_sym_class] = ACTIONS(1843), - [anon_sym_struct] = ACTIONS(1843), - [anon_sym_union] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_switch] = ACTIONS(1843), - [anon_sym_case] = ACTIONS(1843), - [anon_sym_default] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_do] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_goto] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_sizeof] = ACTIONS(1843), - [sym_number_literal] = ACTIONS(1845), - [anon_sym_L_SQUOTE] = ACTIONS(1845), - [anon_sym_u_SQUOTE] = ACTIONS(1845), - [anon_sym_U_SQUOTE] = ACTIONS(1845), - [anon_sym_u8_SQUOTE] = ACTIONS(1845), - [anon_sym_SQUOTE] = ACTIONS(1845), - [anon_sym_L_DQUOTE] = ACTIONS(1845), - [anon_sym_u_DQUOTE] = ACTIONS(1845), - [anon_sym_U_DQUOTE] = ACTIONS(1845), - [anon_sym_u8_DQUOTE] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(1845), - [sym_true] = ACTIONS(1843), - [sym_false] = ACTIONS(1843), - [sym_null] = ACTIONS(1843), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1843), - [anon_sym_virtual] = ACTIONS(1843), - [anon_sym_explicit] = ACTIONS(1843), - [sym_auto] = ACTIONS(1843), - [anon_sym_typename] = ACTIONS(1843), - [anon_sym_template] = ACTIONS(1843), - [anon_sym_operator] = ACTIONS(1843), - [anon_sym_delete] = ACTIONS(1843), - [anon_sym_throw] = ACTIONS(1843), - [anon_sym_namespace] = ACTIONS(1843), - [anon_sym_using] = ACTIONS(1843), - [anon_sym_static_assert] = ACTIONS(1843), - [anon_sym_co_return] = ACTIONS(1843), - [anon_sym_co_yield] = ACTIONS(1843), - [anon_sym_try] = ACTIONS(1843), - [anon_sym_co_await] = ACTIONS(1843), - [anon_sym_new] = ACTIONS(1843), - [sym_this] = ACTIONS(1843), - [sym_nullptr] = ACTIONS(1843), - [sym_alone_macro] = ACTIONS(1845), - [aux_sym_alone_macro_call_token1] = ACTIONS(1843), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1843), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_FORWARD] = ACTIONS(1843), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1843), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1843), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1843), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1843), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_PS_GET] = ACTIONS(1843), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1843), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1843), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1843), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1843), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1843), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1843), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1843), - [anon_sym_MOZ_COLD] = ACTIONS(1843), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1843), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1843), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1843), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1843), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1843), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1843), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1843), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1843), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1843), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1843), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1843), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1843), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1843), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_NONNULL] = ACTIONS(1843), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1843), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1843), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1843), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1843), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1843), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1843), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1843), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1843), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1843), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1843), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1843), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1843), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1843), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1843), - [anon_sym_MOZ_RAII] = ACTIONS(1843), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1843), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1843), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1843), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1843), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1843), - [sym_raw_string_literal] = ACTIONS(1845), - }, - [567] = { - [sym_identifier] = ACTIONS(1847), - [aux_sym_preproc_include_token1] = ACTIONS(1847), - [aux_sym_preproc_def_token1] = ACTIONS(1847), - [aux_sym_preproc_if_token1] = ACTIONS(1847), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), - [sym_preproc_directive] = ACTIONS(1847), - [anon_sym_LPAREN2] = ACTIONS(1849), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_AMP_AMP] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_typedef] = ACTIONS(1847), - [anon_sym_extern] = ACTIONS(1847), - [anon_sym___attribute__] = ACTIONS(1847), - [anon_sym_COLON_COLON] = ACTIONS(1849), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1849), - [anon_sym___declspec] = ACTIONS(1847), - [anon_sym___based] = ACTIONS(1847), - [anon_sym___cdecl] = ACTIONS(1847), - [anon_sym___clrcall] = ACTIONS(1847), - [anon_sym___stdcall] = ACTIONS(1847), - [anon_sym___fastcall] = ACTIONS(1847), - [anon_sym___thiscall] = ACTIONS(1847), - [anon_sym___vectorcall] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_register] = ACTIONS(1847), - [anon_sym_inline] = ACTIONS(1847), - [anon_sym_thread_local] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym_constexpr] = ACTIONS(1847), - [anon_sym_signed] = ACTIONS(1847), - [anon_sym_unsigned] = ACTIONS(1847), - [anon_sym_long] = ACTIONS(1847), - [anon_sym_short] = ACTIONS(1847), - [sym_primitive_type] = ACTIONS(1847), - [anon_sym_enum] = ACTIONS(1847), - [anon_sym_class] = ACTIONS(1847), - [anon_sym_struct] = ACTIONS(1847), - [anon_sym_union] = ACTIONS(1847), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1847), - [anon_sym_case] = ACTIONS(1847), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1847), - [anon_sym_do] = ACTIONS(1847), - [anon_sym_for] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1847), - [anon_sym_break] = ACTIONS(1847), - [anon_sym_continue] = ACTIONS(1847), - [anon_sym_goto] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_sizeof] = ACTIONS(1847), - [sym_number_literal] = ACTIONS(1849), - [anon_sym_L_SQUOTE] = ACTIONS(1849), - [anon_sym_u_SQUOTE] = ACTIONS(1849), - [anon_sym_U_SQUOTE] = ACTIONS(1849), - [anon_sym_u8_SQUOTE] = ACTIONS(1849), - [anon_sym_SQUOTE] = ACTIONS(1849), - [anon_sym_L_DQUOTE] = ACTIONS(1849), - [anon_sym_u_DQUOTE] = ACTIONS(1849), - [anon_sym_U_DQUOTE] = ACTIONS(1849), - [anon_sym_u8_DQUOTE] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1849), - [sym_true] = ACTIONS(1847), - [sym_false] = ACTIONS(1847), - [sym_null] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1847), - [anon_sym_virtual] = ACTIONS(1847), - [anon_sym_explicit] = ACTIONS(1847), - [sym_auto] = ACTIONS(1847), - [anon_sym_typename] = ACTIONS(1847), - [anon_sym_template] = ACTIONS(1847), - [anon_sym_operator] = ACTIONS(1847), - [anon_sym_delete] = ACTIONS(1847), - [anon_sym_throw] = ACTIONS(1847), - [anon_sym_namespace] = ACTIONS(1847), - [anon_sym_using] = ACTIONS(1847), - [anon_sym_static_assert] = ACTIONS(1847), - [anon_sym_co_return] = ACTIONS(1847), - [anon_sym_co_yield] = ACTIONS(1847), - [anon_sym_try] = ACTIONS(1847), - [anon_sym_co_await] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [sym_this] = ACTIONS(1847), - [sym_nullptr] = ACTIONS(1847), - [sym_alone_macro] = ACTIONS(1849), - [aux_sym_alone_macro_call_token1] = ACTIONS(1847), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1847), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_FORWARD] = ACTIONS(1847), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1847), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1847), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1847), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1847), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_PS_GET] = ACTIONS(1847), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1847), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1847), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1847), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1847), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1847), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1847), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1847), - [anon_sym_MOZ_COLD] = ACTIONS(1847), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1847), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1847), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1847), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1847), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1847), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1847), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1847), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1847), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1847), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1847), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1847), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1847), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1847), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_NONNULL] = ACTIONS(1847), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1847), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1847), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1847), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1847), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1847), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1847), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1847), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1847), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1847), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1847), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1847), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1847), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1847), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1847), - [anon_sym_MOZ_RAII] = ACTIONS(1847), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1847), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1847), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1847), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1847), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1847), - [sym_raw_string_literal] = ACTIONS(1849), - }, - [568] = { - [sym_identifier] = ACTIONS(1891), - [aux_sym_preproc_include_token1] = ACTIONS(1891), - [aux_sym_preproc_def_token1] = ACTIONS(1891), - [aux_sym_preproc_if_token1] = ACTIONS(1891), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1891), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1891), - [sym_preproc_directive] = ACTIONS(1891), - [anon_sym_LPAREN2] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_TILDE] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_AMP_AMP] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_typedef] = ACTIONS(1891), - [anon_sym_extern] = ACTIONS(1891), - [anon_sym___attribute__] = ACTIONS(1891), - [anon_sym_COLON_COLON] = ACTIONS(1893), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), - [anon_sym___declspec] = ACTIONS(1891), - [anon_sym___based] = ACTIONS(1891), - [anon_sym___cdecl] = ACTIONS(1891), - [anon_sym___clrcall] = ACTIONS(1891), - [anon_sym___stdcall] = ACTIONS(1891), - [anon_sym___fastcall] = ACTIONS(1891), - [anon_sym___thiscall] = ACTIONS(1891), - [anon_sym___vectorcall] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_static] = ACTIONS(1891), - [anon_sym_register] = ACTIONS(1891), - [anon_sym_inline] = ACTIONS(1891), - [anon_sym_thread_local] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1891), - [anon_sym_volatile] = ACTIONS(1891), - [anon_sym_restrict] = ACTIONS(1891), - [anon_sym__Atomic] = ACTIONS(1891), - [anon_sym_mutable] = ACTIONS(1891), - [anon_sym_constexpr] = ACTIONS(1891), - [anon_sym_signed] = ACTIONS(1891), - [anon_sym_unsigned] = ACTIONS(1891), - [anon_sym_long] = ACTIONS(1891), - [anon_sym_short] = ACTIONS(1891), - [sym_primitive_type] = ACTIONS(1891), - [anon_sym_enum] = ACTIONS(1891), - [anon_sym_class] = ACTIONS(1891), - [anon_sym_struct] = ACTIONS(1891), - [anon_sym_union] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_switch] = ACTIONS(1891), - [anon_sym_case] = ACTIONS(1891), - [anon_sym_default] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_do] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_return] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_goto] = ACTIONS(1891), - [anon_sym_DASH_DASH] = ACTIONS(1893), - [anon_sym_PLUS_PLUS] = ACTIONS(1893), - [anon_sym_sizeof] = ACTIONS(1891), - [sym_number_literal] = ACTIONS(1893), - [anon_sym_L_SQUOTE] = ACTIONS(1893), - [anon_sym_u_SQUOTE] = ACTIONS(1893), - [anon_sym_U_SQUOTE] = ACTIONS(1893), - [anon_sym_u8_SQUOTE] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_L_DQUOTE] = ACTIONS(1893), - [anon_sym_u_DQUOTE] = ACTIONS(1893), - [anon_sym_U_DQUOTE] = ACTIONS(1893), - [anon_sym_u8_DQUOTE] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym_true] = ACTIONS(1891), - [sym_false] = ACTIONS(1891), - [sym_null] = ACTIONS(1891), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1891), - [anon_sym_virtual] = ACTIONS(1891), - [anon_sym_explicit] = ACTIONS(1891), - [sym_auto] = ACTIONS(1891), - [anon_sym_typename] = ACTIONS(1891), - [anon_sym_template] = ACTIONS(1891), - [anon_sym_operator] = ACTIONS(1891), - [anon_sym_delete] = ACTIONS(1891), - [anon_sym_throw] = ACTIONS(1891), - [anon_sym_namespace] = ACTIONS(1891), - [anon_sym_using] = ACTIONS(1891), - [anon_sym_static_assert] = ACTIONS(1891), - [anon_sym_co_return] = ACTIONS(1891), - [anon_sym_co_yield] = ACTIONS(1891), - [anon_sym_try] = ACTIONS(1891), - [anon_sym_co_await] = ACTIONS(1891), - [anon_sym_new] = ACTIONS(1891), - [sym_this] = ACTIONS(1891), - [sym_nullptr] = ACTIONS(1891), - [sym_alone_macro] = ACTIONS(1893), - [aux_sym_alone_macro_call_token1] = ACTIONS(1891), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1891), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_FORWARD] = ACTIONS(1891), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1891), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1891), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1891), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1891), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_PS_GET] = ACTIONS(1891), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1891), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1891), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1891), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1891), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1891), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1891), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1891), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1891), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1891), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1891), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1891), - [anon_sym_MOZ_COLD] = ACTIONS(1891), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1891), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1891), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1891), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1891), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1891), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1891), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1891), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1891), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1891), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1891), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1891), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1891), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1891), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1891), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1891), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1891), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1891), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1891), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1891), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1891), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_NONNULL] = ACTIONS(1891), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1891), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1891), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1891), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1891), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1891), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_NORETURN] = ACTIONS(1891), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1891), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1891), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1891), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1891), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1891), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1891), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1891), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1891), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1891), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1891), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1891), - [anon_sym_MOZ_RAII] = ACTIONS(1891), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1891), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1891), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1891), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1891), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1891), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1891), - [sym_raw_string_literal] = ACTIONS(1893), - }, - [569] = { - [sym_identifier] = ACTIONS(1735), - [aux_sym_preproc_include_token1] = ACTIONS(1735), - [aux_sym_preproc_def_token1] = ACTIONS(1735), - [aux_sym_preproc_if_token1] = ACTIONS(1735), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1735), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1735), - [sym_preproc_directive] = ACTIONS(1735), - [anon_sym_LPAREN2] = ACTIONS(1737), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_typedef] = ACTIONS(1735), - [anon_sym_extern] = ACTIONS(1735), - [anon_sym___attribute__] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1737), - [anon_sym___declspec] = ACTIONS(1735), - [anon_sym___based] = ACTIONS(1735), - [anon_sym___cdecl] = ACTIONS(1735), - [anon_sym___clrcall] = ACTIONS(1735), - [anon_sym___stdcall] = ACTIONS(1735), - [anon_sym___fastcall] = ACTIONS(1735), - [anon_sym___thiscall] = ACTIONS(1735), - [anon_sym___vectorcall] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_register] = ACTIONS(1735), - [anon_sym_inline] = ACTIONS(1735), - [anon_sym_thread_local] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_volatile] = ACTIONS(1735), - [anon_sym_restrict] = ACTIONS(1735), - [anon_sym__Atomic] = ACTIONS(1735), - [anon_sym_mutable] = ACTIONS(1735), - [anon_sym_constexpr] = ACTIONS(1735), - [anon_sym_signed] = ACTIONS(1735), - [anon_sym_unsigned] = ACTIONS(1735), - [anon_sym_long] = ACTIONS(1735), - [anon_sym_short] = ACTIONS(1735), - [sym_primitive_type] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [anon_sym_class] = ACTIONS(1735), - [anon_sym_struct] = ACTIONS(1735), - [anon_sym_union] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1735), - [anon_sym_switch] = ACTIONS(1735), - [anon_sym_case] = ACTIONS(1735), - [anon_sym_default] = ACTIONS(1735), - [anon_sym_while] = ACTIONS(1735), - [anon_sym_do] = ACTIONS(1735), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_return] = ACTIONS(1735), - [anon_sym_break] = ACTIONS(1735), - [anon_sym_continue] = ACTIONS(1735), - [anon_sym_goto] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_sizeof] = ACTIONS(1735), - [sym_number_literal] = ACTIONS(1737), - [anon_sym_L_SQUOTE] = ACTIONS(1737), - [anon_sym_u_SQUOTE] = ACTIONS(1737), - [anon_sym_U_SQUOTE] = ACTIONS(1737), - [anon_sym_u8_SQUOTE] = ACTIONS(1737), - [anon_sym_SQUOTE] = ACTIONS(1737), - [anon_sym_L_DQUOTE] = ACTIONS(1737), - [anon_sym_u_DQUOTE] = ACTIONS(1737), - [anon_sym_U_DQUOTE] = ACTIONS(1737), - [anon_sym_u8_DQUOTE] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [sym_true] = ACTIONS(1735), - [sym_false] = ACTIONS(1735), - [sym_null] = ACTIONS(1735), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1735), - [anon_sym_virtual] = ACTIONS(1735), - [anon_sym_explicit] = ACTIONS(1735), - [sym_auto] = ACTIONS(1735), - [anon_sym_typename] = ACTIONS(1735), - [anon_sym_template] = ACTIONS(1735), - [anon_sym_operator] = ACTIONS(1735), - [anon_sym_delete] = ACTIONS(1735), - [anon_sym_throw] = ACTIONS(1735), - [anon_sym_namespace] = ACTIONS(1735), - [anon_sym_using] = ACTIONS(1735), - [anon_sym_static_assert] = ACTIONS(1735), - [anon_sym_co_return] = ACTIONS(1735), - [anon_sym_co_yield] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1735), - [anon_sym_co_await] = ACTIONS(1735), - [anon_sym_new] = ACTIONS(1735), - [sym_this] = ACTIONS(1735), - [sym_nullptr] = ACTIONS(1735), - [sym_alone_macro] = ACTIONS(1737), - [aux_sym_alone_macro_call_token1] = ACTIONS(1735), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1735), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_FORWARD] = ACTIONS(1735), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1735), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1735), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1735), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1735), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_PS_GET] = ACTIONS(1735), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1735), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1735), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1735), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1735), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1735), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1735), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1735), - [anon_sym_MOZ_COLD] = ACTIONS(1735), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1735), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1735), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1735), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1735), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1735), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1735), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1735), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1735), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1735), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1735), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1735), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1735), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1735), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_NONNULL] = ACTIONS(1735), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1735), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1735), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1735), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1735), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1735), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1735), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1735), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1735), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1735), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1735), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1735), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1735), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1735), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1735), - [anon_sym_MOZ_RAII] = ACTIONS(1735), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1735), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1735), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1735), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1735), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1735), - [sym_raw_string_literal] = ACTIONS(1737), - }, - [570] = { - [sym_identifier] = ACTIONS(1739), - [aux_sym_preproc_include_token1] = ACTIONS(1739), - [aux_sym_preproc_def_token1] = ACTIONS(1739), - [aux_sym_preproc_if_token1] = ACTIONS(1739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1739), - [sym_preproc_directive] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_typedef] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym___attribute__] = ACTIONS(1739), - [anon_sym_COLON_COLON] = ACTIONS(1741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1741), - [anon_sym___declspec] = ACTIONS(1739), - [anon_sym___based] = ACTIONS(1739), - [anon_sym___cdecl] = ACTIONS(1739), - [anon_sym___clrcall] = ACTIONS(1739), - [anon_sym___stdcall] = ACTIONS(1739), - [anon_sym___fastcall] = ACTIONS(1739), - [anon_sym___thiscall] = ACTIONS(1739), - [anon_sym___vectorcall] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_static] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_inline] = ACTIONS(1739), - [anon_sym_thread_local] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [anon_sym_volatile] = ACTIONS(1739), - [anon_sym_restrict] = ACTIONS(1739), - [anon_sym__Atomic] = ACTIONS(1739), - [anon_sym_mutable] = ACTIONS(1739), - [anon_sym_constexpr] = ACTIONS(1739), - [anon_sym_signed] = ACTIONS(1739), - [anon_sym_unsigned] = ACTIONS(1739), - [anon_sym_long] = ACTIONS(1739), - [anon_sym_short] = ACTIONS(1739), - [sym_primitive_type] = ACTIONS(1739), - [anon_sym_enum] = ACTIONS(1739), - [anon_sym_class] = ACTIONS(1739), - [anon_sym_struct] = ACTIONS(1739), - [anon_sym_union] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_switch] = ACTIONS(1739), - [anon_sym_case] = ACTIONS(1739), - [anon_sym_default] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_goto] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_sizeof] = ACTIONS(1739), - [sym_number_literal] = ACTIONS(1741), - [anon_sym_L_SQUOTE] = ACTIONS(1741), - [anon_sym_u_SQUOTE] = ACTIONS(1741), - [anon_sym_U_SQUOTE] = ACTIONS(1741), - [anon_sym_u8_SQUOTE] = ACTIONS(1741), - [anon_sym_SQUOTE] = ACTIONS(1741), - [anon_sym_L_DQUOTE] = ACTIONS(1741), - [anon_sym_u_DQUOTE] = ACTIONS(1741), - [anon_sym_U_DQUOTE] = ACTIONS(1741), - [anon_sym_u8_DQUOTE] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym_true] = ACTIONS(1739), - [sym_false] = ACTIONS(1739), - [sym_null] = ACTIONS(1739), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1739), - [anon_sym_virtual] = ACTIONS(1739), - [anon_sym_explicit] = ACTIONS(1739), - [sym_auto] = ACTIONS(1739), - [anon_sym_typename] = ACTIONS(1739), - [anon_sym_template] = ACTIONS(1739), - [anon_sym_operator] = ACTIONS(1739), - [anon_sym_delete] = ACTIONS(1739), - [anon_sym_throw] = ACTIONS(1739), - [anon_sym_namespace] = ACTIONS(1739), - [anon_sym_using] = ACTIONS(1739), - [anon_sym_static_assert] = ACTIONS(1739), - [anon_sym_co_return] = ACTIONS(1739), - [anon_sym_co_yield] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_co_await] = ACTIONS(1739), - [anon_sym_new] = ACTIONS(1739), - [sym_this] = ACTIONS(1739), - [sym_nullptr] = ACTIONS(1739), - [sym_alone_macro] = ACTIONS(1741), - [aux_sym_alone_macro_call_token1] = ACTIONS(1739), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1739), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_FORWARD] = ACTIONS(1739), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1739), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1739), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1739), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1739), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_PS_GET] = ACTIONS(1739), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1739), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1739), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1739), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1739), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1739), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1739), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1739), - [anon_sym_MOZ_COLD] = ACTIONS(1739), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1739), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1739), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1739), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1739), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1739), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1739), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1739), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1739), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1739), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1739), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1739), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1739), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1739), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_NONNULL] = ACTIONS(1739), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1739), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1739), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1739), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1739), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1739), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1739), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1739), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1739), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1739), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1739), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1739), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1739), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1739), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1739), - [anon_sym_MOZ_RAII] = ACTIONS(1739), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1739), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1739), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1739), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1739), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1739), - [sym_raw_string_literal] = ACTIONS(1741), - }, - [571] = { - [sym_identifier] = ACTIONS(1867), - [aux_sym_preproc_include_token1] = ACTIONS(1867), - [aux_sym_preproc_def_token1] = ACTIONS(1867), - [aux_sym_preproc_if_token1] = ACTIONS(1867), - [aux_sym_preproc_if_token2] = ACTIONS(1867), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1867), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1867), - [sym_preproc_directive] = ACTIONS(1867), - [anon_sym_LPAREN2] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_AMP_AMP] = ACTIONS(1869), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_typedef] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1867), - [anon_sym___attribute__] = ACTIONS(1867), - [anon_sym_COLON_COLON] = ACTIONS(1869), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1869), - [anon_sym___declspec] = ACTIONS(1867), - [anon_sym___based] = ACTIONS(1867), - [anon_sym___cdecl] = ACTIONS(1867), - [anon_sym___clrcall] = ACTIONS(1867), - [anon_sym___stdcall] = ACTIONS(1867), - [anon_sym___fastcall] = ACTIONS(1867), - [anon_sym___thiscall] = ACTIONS(1867), - [anon_sym___vectorcall] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1867), - [anon_sym_register] = ACTIONS(1867), - [anon_sym_inline] = ACTIONS(1867), - [anon_sym_thread_local] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_restrict] = ACTIONS(1867), - [anon_sym__Atomic] = ACTIONS(1867), - [anon_sym_mutable] = ACTIONS(1867), - [anon_sym_constexpr] = ACTIONS(1867), - [anon_sym_signed] = ACTIONS(1867), - [anon_sym_unsigned] = ACTIONS(1867), - [anon_sym_long] = ACTIONS(1867), - [anon_sym_short] = ACTIONS(1867), - [sym_primitive_type] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1867), - [anon_sym_class] = ACTIONS(1867), - [anon_sym_struct] = ACTIONS(1867), - [anon_sym_union] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1867), - [anon_sym_case] = ACTIONS(1867), - [anon_sym_default] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1867), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_goto] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [anon_sym_PLUS_PLUS] = ACTIONS(1869), - [anon_sym_sizeof] = ACTIONS(1867), - [sym_number_literal] = ACTIONS(1869), - [anon_sym_L_SQUOTE] = ACTIONS(1869), - [anon_sym_u_SQUOTE] = ACTIONS(1869), - [anon_sym_U_SQUOTE] = ACTIONS(1869), - [anon_sym_u8_SQUOTE] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_L_DQUOTE] = ACTIONS(1869), - [anon_sym_u_DQUOTE] = ACTIONS(1869), - [anon_sym_U_DQUOTE] = ACTIONS(1869), - [anon_sym_u8_DQUOTE] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1869), - [sym_true] = ACTIONS(1867), - [sym_false] = ACTIONS(1867), - [sym_null] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1867), - [anon_sym_virtual] = ACTIONS(1867), - [anon_sym_explicit] = ACTIONS(1867), - [sym_auto] = ACTIONS(1867), - [anon_sym_typename] = ACTIONS(1867), - [anon_sym_template] = ACTIONS(1867), - [anon_sym_operator] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_namespace] = ACTIONS(1867), - [anon_sym_using] = ACTIONS(1867), - [anon_sym_static_assert] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1867), - [anon_sym_co_yield] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_co_await] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(1867), - [sym_this] = ACTIONS(1867), - [sym_nullptr] = ACTIONS(1867), - [sym_alone_macro] = ACTIONS(1869), - [aux_sym_alone_macro_call_token1] = ACTIONS(1867), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1867), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_FORWARD] = ACTIONS(1867), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1867), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1867), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1867), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1867), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_PS_GET] = ACTIONS(1867), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1867), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1867), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1867), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1867), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1867), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1867), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1867), - [anon_sym_MOZ_COLD] = ACTIONS(1867), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1867), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1867), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1867), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1867), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1867), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1867), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1867), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1867), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1867), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1867), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1867), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1867), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1867), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_NONNULL] = ACTIONS(1867), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1867), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1867), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1867), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1867), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1867), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1867), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1867), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1867), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1867), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1867), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1867), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1867), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1867), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1867), - [anon_sym_MOZ_RAII] = ACTIONS(1867), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1867), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1867), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1867), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1867), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1867), - [sym_raw_string_literal] = ACTIONS(1869), - }, - [572] = { - [sym_identifier] = ACTIONS(1747), - [aux_sym_preproc_include_token1] = ACTIONS(1747), - [aux_sym_preproc_def_token1] = ACTIONS(1747), - [aux_sym_preproc_if_token1] = ACTIONS(1747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1747), - [sym_preproc_directive] = ACTIONS(1747), - [anon_sym_LPAREN2] = ACTIONS(1749), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1749), - [anon_sym_AMP_AMP] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1749), - [anon_sym_typedef] = ACTIONS(1747), - [anon_sym_extern] = ACTIONS(1747), - [anon_sym___attribute__] = ACTIONS(1747), - [anon_sym_COLON_COLON] = ACTIONS(1749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1749), - [anon_sym___declspec] = ACTIONS(1747), - [anon_sym___based] = ACTIONS(1747), - [anon_sym___cdecl] = ACTIONS(1747), - [anon_sym___clrcall] = ACTIONS(1747), - [anon_sym___stdcall] = ACTIONS(1747), - [anon_sym___fastcall] = ACTIONS(1747), - [anon_sym___thiscall] = ACTIONS(1747), - [anon_sym___vectorcall] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1749), - [anon_sym_RBRACE] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_static] = ACTIONS(1747), - [anon_sym_register] = ACTIONS(1747), - [anon_sym_inline] = ACTIONS(1747), - [anon_sym_thread_local] = ACTIONS(1747), - [anon_sym_const] = ACTIONS(1747), - [anon_sym_volatile] = ACTIONS(1747), - [anon_sym_restrict] = ACTIONS(1747), - [anon_sym__Atomic] = ACTIONS(1747), - [anon_sym_mutable] = ACTIONS(1747), - [anon_sym_constexpr] = ACTIONS(1747), - [anon_sym_signed] = ACTIONS(1747), - [anon_sym_unsigned] = ACTIONS(1747), - [anon_sym_long] = ACTIONS(1747), - [anon_sym_short] = ACTIONS(1747), - [sym_primitive_type] = ACTIONS(1747), - [anon_sym_enum] = ACTIONS(1747), - [anon_sym_class] = ACTIONS(1747), - [anon_sym_struct] = ACTIONS(1747), - [anon_sym_union] = ACTIONS(1747), - [anon_sym_if] = ACTIONS(1747), - [anon_sym_switch] = ACTIONS(1747), - [anon_sym_case] = ACTIONS(1747), - [anon_sym_default] = ACTIONS(1747), - [anon_sym_while] = ACTIONS(1747), - [anon_sym_do] = ACTIONS(1747), - [anon_sym_for] = ACTIONS(1747), - [anon_sym_return] = ACTIONS(1747), - [anon_sym_break] = ACTIONS(1747), - [anon_sym_continue] = ACTIONS(1747), - [anon_sym_goto] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_sizeof] = ACTIONS(1747), - [sym_number_literal] = ACTIONS(1749), - [anon_sym_L_SQUOTE] = ACTIONS(1749), - [anon_sym_u_SQUOTE] = ACTIONS(1749), - [anon_sym_U_SQUOTE] = ACTIONS(1749), - [anon_sym_u8_SQUOTE] = ACTIONS(1749), - [anon_sym_SQUOTE] = ACTIONS(1749), - [anon_sym_L_DQUOTE] = ACTIONS(1749), - [anon_sym_u_DQUOTE] = ACTIONS(1749), - [anon_sym_U_DQUOTE] = ACTIONS(1749), - [anon_sym_u8_DQUOTE] = ACTIONS(1749), - [anon_sym_DQUOTE] = ACTIONS(1749), - [sym_true] = ACTIONS(1747), - [sym_false] = ACTIONS(1747), - [sym_null] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1747), - [anon_sym_virtual] = ACTIONS(1747), - [anon_sym_explicit] = ACTIONS(1747), - [sym_auto] = ACTIONS(1747), - [anon_sym_typename] = ACTIONS(1747), - [anon_sym_template] = ACTIONS(1747), - [anon_sym_operator] = ACTIONS(1747), - [anon_sym_delete] = ACTIONS(1747), - [anon_sym_throw] = ACTIONS(1747), - [anon_sym_namespace] = ACTIONS(1747), - [anon_sym_using] = ACTIONS(1747), - [anon_sym_static_assert] = ACTIONS(1747), - [anon_sym_co_return] = ACTIONS(1747), - [anon_sym_co_yield] = ACTIONS(1747), - [anon_sym_try] = ACTIONS(1747), - [anon_sym_co_await] = ACTIONS(1747), - [anon_sym_new] = ACTIONS(1747), - [sym_this] = ACTIONS(1747), - [sym_nullptr] = ACTIONS(1747), - [sym_alone_macro] = ACTIONS(1749), - [aux_sym_alone_macro_call_token1] = ACTIONS(1747), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1747), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_FORWARD] = ACTIONS(1747), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1747), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1747), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1747), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1747), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_PS_GET] = ACTIONS(1747), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1747), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1747), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1747), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1747), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1747), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1747), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1747), - [anon_sym_MOZ_COLD] = ACTIONS(1747), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1747), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1747), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1747), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1747), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1747), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1747), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1747), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1747), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1747), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1747), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1747), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1747), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1747), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_NONNULL] = ACTIONS(1747), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1747), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1747), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1747), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1747), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1747), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1747), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1747), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1747), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1747), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1747), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1747), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1747), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1747), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1747), - [anon_sym_MOZ_RAII] = ACTIONS(1747), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1747), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1747), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1747), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1747), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1747), - [sym_raw_string_literal] = ACTIONS(1749), - }, - [573] = { - [sym_identifier] = ACTIONS(1755), - [aux_sym_preproc_include_token1] = ACTIONS(1755), - [aux_sym_preproc_def_token1] = ACTIONS(1755), - [aux_sym_preproc_if_token1] = ACTIONS(1755), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1755), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1755), - [sym_preproc_directive] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_typedef] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym___attribute__] = ACTIONS(1755), - [anon_sym_COLON_COLON] = ACTIONS(1757), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1757), - [anon_sym___declspec] = ACTIONS(1755), - [anon_sym___based] = ACTIONS(1755), - [anon_sym___cdecl] = ACTIONS(1755), - [anon_sym___clrcall] = ACTIONS(1755), - [anon_sym___stdcall] = ACTIONS(1755), - [anon_sym___fastcall] = ACTIONS(1755), - [anon_sym___thiscall] = ACTIONS(1755), - [anon_sym___vectorcall] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1755), - [anon_sym_static] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_inline] = ACTIONS(1755), - [anon_sym_thread_local] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [anon_sym_volatile] = ACTIONS(1755), - [anon_sym_restrict] = ACTIONS(1755), - [anon_sym__Atomic] = ACTIONS(1755), - [anon_sym_mutable] = ACTIONS(1755), - [anon_sym_constexpr] = ACTIONS(1755), - [anon_sym_signed] = ACTIONS(1755), - [anon_sym_unsigned] = ACTIONS(1755), - [anon_sym_long] = ACTIONS(1755), - [anon_sym_short] = ACTIONS(1755), - [sym_primitive_type] = ACTIONS(1755), - [anon_sym_enum] = ACTIONS(1755), - [anon_sym_class] = ACTIONS(1755), - [anon_sym_struct] = ACTIONS(1755), - [anon_sym_union] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1755), - [anon_sym_case] = ACTIONS(1755), - [anon_sym_default] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_goto] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_sizeof] = ACTIONS(1755), - [sym_number_literal] = ACTIONS(1757), - [anon_sym_L_SQUOTE] = ACTIONS(1757), - [anon_sym_u_SQUOTE] = ACTIONS(1757), - [anon_sym_U_SQUOTE] = ACTIONS(1757), - [anon_sym_u8_SQUOTE] = ACTIONS(1757), - [anon_sym_SQUOTE] = ACTIONS(1757), - [anon_sym_L_DQUOTE] = ACTIONS(1757), - [anon_sym_u_DQUOTE] = ACTIONS(1757), - [anon_sym_U_DQUOTE] = ACTIONS(1757), - [anon_sym_u8_DQUOTE] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym_true] = ACTIONS(1755), - [sym_false] = ACTIONS(1755), - [sym_null] = ACTIONS(1755), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1755), - [anon_sym_virtual] = ACTIONS(1755), - [anon_sym_explicit] = ACTIONS(1755), - [sym_auto] = ACTIONS(1755), - [anon_sym_typename] = ACTIONS(1755), - [anon_sym_template] = ACTIONS(1755), - [anon_sym_operator] = ACTIONS(1755), - [anon_sym_delete] = ACTIONS(1755), - [anon_sym_throw] = ACTIONS(1755), - [anon_sym_namespace] = ACTIONS(1755), - [anon_sym_using] = ACTIONS(1755), - [anon_sym_static_assert] = ACTIONS(1755), - [anon_sym_co_return] = ACTIONS(1755), - [anon_sym_co_yield] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_co_await] = ACTIONS(1755), - [anon_sym_new] = ACTIONS(1755), - [sym_this] = ACTIONS(1755), - [sym_nullptr] = ACTIONS(1755), - [sym_alone_macro] = ACTIONS(1757), - [aux_sym_alone_macro_call_token1] = ACTIONS(1755), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1755), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_FORWARD] = ACTIONS(1755), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1755), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1755), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1755), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1755), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_PS_GET] = ACTIONS(1755), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1755), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1755), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1755), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1755), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1755), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1755), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1755), - [anon_sym_MOZ_COLD] = ACTIONS(1755), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1755), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1755), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1755), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1755), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1755), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1755), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1755), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1755), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1755), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1755), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1755), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1755), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1755), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_NONNULL] = ACTIONS(1755), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1755), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1755), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1755), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1755), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1755), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1755), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1755), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1755), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1755), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1755), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1755), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1755), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1755), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1755), - [anon_sym_MOZ_RAII] = ACTIONS(1755), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1755), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1755), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1755), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1755), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1755), - [sym_raw_string_literal] = ACTIONS(1757), - }, - [574] = { - [sym_identifier] = ACTIONS(1759), - [aux_sym_preproc_include_token1] = ACTIONS(1759), - [aux_sym_preproc_def_token1] = ACTIONS(1759), - [aux_sym_preproc_if_token1] = ACTIONS(1759), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1759), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1759), - [sym_preproc_directive] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1761), - [anon_sym_TILDE] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1759), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_AMP_AMP] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_typedef] = ACTIONS(1759), - [anon_sym_extern] = ACTIONS(1759), - [anon_sym___attribute__] = ACTIONS(1759), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), - [anon_sym___declspec] = ACTIONS(1759), - [anon_sym___based] = ACTIONS(1759), - [anon_sym___cdecl] = ACTIONS(1759), - [anon_sym___clrcall] = ACTIONS(1759), - [anon_sym___stdcall] = ACTIONS(1759), - [anon_sym___fastcall] = ACTIONS(1759), - [anon_sym___thiscall] = ACTIONS(1759), - [anon_sym___vectorcall] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_static] = ACTIONS(1759), - [anon_sym_register] = ACTIONS(1759), - [anon_sym_inline] = ACTIONS(1759), - [anon_sym_thread_local] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_volatile] = ACTIONS(1759), - [anon_sym_restrict] = ACTIONS(1759), - [anon_sym__Atomic] = ACTIONS(1759), - [anon_sym_mutable] = ACTIONS(1759), - [anon_sym_constexpr] = ACTIONS(1759), - [anon_sym_signed] = ACTIONS(1759), - [anon_sym_unsigned] = ACTIONS(1759), - [anon_sym_long] = ACTIONS(1759), - [anon_sym_short] = ACTIONS(1759), - [sym_primitive_type] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_class] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(1759), - [anon_sym_union] = ACTIONS(1759), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_switch] = ACTIONS(1759), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1759), - [anon_sym_while] = ACTIONS(1759), - [anon_sym_do] = ACTIONS(1759), - [anon_sym_for] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1759), - [anon_sym_break] = ACTIONS(1759), - [anon_sym_continue] = ACTIONS(1759), - [anon_sym_goto] = ACTIONS(1759), - [anon_sym_DASH_DASH] = ACTIONS(1761), - [anon_sym_PLUS_PLUS] = ACTIONS(1761), - [anon_sym_sizeof] = ACTIONS(1759), - [sym_number_literal] = ACTIONS(1761), - [anon_sym_L_SQUOTE] = ACTIONS(1761), - [anon_sym_u_SQUOTE] = ACTIONS(1761), - [anon_sym_U_SQUOTE] = ACTIONS(1761), - [anon_sym_u8_SQUOTE] = ACTIONS(1761), - [anon_sym_SQUOTE] = ACTIONS(1761), - [anon_sym_L_DQUOTE] = ACTIONS(1761), - [anon_sym_u_DQUOTE] = ACTIONS(1761), - [anon_sym_U_DQUOTE] = ACTIONS(1761), - [anon_sym_u8_DQUOTE] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1761), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_null] = ACTIONS(1759), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1759), - [anon_sym_virtual] = ACTIONS(1759), - [anon_sym_explicit] = ACTIONS(1759), - [sym_auto] = ACTIONS(1759), - [anon_sym_typename] = ACTIONS(1759), - [anon_sym_template] = ACTIONS(1759), - [anon_sym_operator] = ACTIONS(1759), - [anon_sym_delete] = ACTIONS(1759), - [anon_sym_throw] = ACTIONS(1759), - [anon_sym_namespace] = ACTIONS(1759), - [anon_sym_using] = ACTIONS(1759), - [anon_sym_static_assert] = ACTIONS(1759), - [anon_sym_co_return] = ACTIONS(1759), - [anon_sym_co_yield] = ACTIONS(1759), - [anon_sym_try] = ACTIONS(1759), - [anon_sym_co_await] = ACTIONS(1759), - [anon_sym_new] = ACTIONS(1759), - [sym_this] = ACTIONS(1759), - [sym_nullptr] = ACTIONS(1759), - [sym_alone_macro] = ACTIONS(1761), - [aux_sym_alone_macro_call_token1] = ACTIONS(1759), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1759), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_FORWARD] = ACTIONS(1759), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1759), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1759), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1759), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1759), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_PS_GET] = ACTIONS(1759), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1759), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1759), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1759), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1759), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1759), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1759), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1759), - [anon_sym_MOZ_COLD] = ACTIONS(1759), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1759), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1759), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1759), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1759), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1759), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1759), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1759), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1759), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1759), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1759), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1759), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1759), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1759), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_NONNULL] = ACTIONS(1759), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1759), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1759), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1759), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1759), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1759), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1759), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1759), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1759), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1759), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1759), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1759), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1759), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1759), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1759), - [anon_sym_MOZ_RAII] = ACTIONS(1759), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1759), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1759), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1759), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1759), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1759), - [sym_raw_string_literal] = ACTIONS(1761), - }, - [575] = { - [sym_identifier] = ACTIONS(1763), - [aux_sym_preproc_include_token1] = ACTIONS(1763), - [aux_sym_preproc_def_token1] = ACTIONS(1763), - [aux_sym_preproc_if_token1] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), - [sym_preproc_directive] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(1765), - [anon_sym_BANG] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_typedef] = ACTIONS(1763), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym___attribute__] = ACTIONS(1763), - [anon_sym_COLON_COLON] = ACTIONS(1765), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1765), - [anon_sym___declspec] = ACTIONS(1763), - [anon_sym___based] = ACTIONS(1763), - [anon_sym___cdecl] = ACTIONS(1763), - [anon_sym___clrcall] = ACTIONS(1763), - [anon_sym___stdcall] = ACTIONS(1763), - [anon_sym___fastcall] = ACTIONS(1763), - [anon_sym___thiscall] = ACTIONS(1763), - [anon_sym___vectorcall] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_inline] = ACTIONS(1763), - [anon_sym_thread_local] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym_mutable] = ACTIONS(1763), - [anon_sym_constexpr] = ACTIONS(1763), - [anon_sym_signed] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [sym_primitive_type] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [anon_sym_class] = ACTIONS(1763), - [anon_sym_struct] = ACTIONS(1763), - [anon_sym_union] = ACTIONS(1763), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_switch] = ACTIONS(1763), - [anon_sym_case] = ACTIONS(1763), - [anon_sym_default] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_goto] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_sizeof] = ACTIONS(1763), - [sym_number_literal] = ACTIONS(1765), - [anon_sym_L_SQUOTE] = ACTIONS(1765), - [anon_sym_u_SQUOTE] = ACTIONS(1765), - [anon_sym_U_SQUOTE] = ACTIONS(1765), - [anon_sym_u8_SQUOTE] = ACTIONS(1765), - [anon_sym_SQUOTE] = ACTIONS(1765), - [anon_sym_L_DQUOTE] = ACTIONS(1765), - [anon_sym_u_DQUOTE] = ACTIONS(1765), - [anon_sym_U_DQUOTE] = ACTIONS(1765), - [anon_sym_u8_DQUOTE] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym_true] = ACTIONS(1763), - [sym_false] = ACTIONS(1763), - [sym_null] = ACTIONS(1763), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1763), - [anon_sym_virtual] = ACTIONS(1763), - [anon_sym_explicit] = ACTIONS(1763), - [sym_auto] = ACTIONS(1763), - [anon_sym_typename] = ACTIONS(1763), - [anon_sym_template] = ACTIONS(1763), - [anon_sym_operator] = ACTIONS(1763), - [anon_sym_delete] = ACTIONS(1763), - [anon_sym_throw] = ACTIONS(1763), - [anon_sym_namespace] = ACTIONS(1763), - [anon_sym_using] = ACTIONS(1763), - [anon_sym_static_assert] = ACTIONS(1763), - [anon_sym_co_return] = ACTIONS(1763), - [anon_sym_co_yield] = ACTIONS(1763), - [anon_sym_try] = ACTIONS(1763), - [anon_sym_co_await] = ACTIONS(1763), - [anon_sym_new] = ACTIONS(1763), - [sym_this] = ACTIONS(1763), - [sym_nullptr] = ACTIONS(1763), - [sym_alone_macro] = ACTIONS(1765), - [aux_sym_alone_macro_call_token1] = ACTIONS(1763), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1763), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_FORWARD] = ACTIONS(1763), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1763), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1763), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1763), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1763), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_PS_GET] = ACTIONS(1763), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1763), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1763), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1763), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1763), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1763), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1763), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1763), - [anon_sym_MOZ_COLD] = ACTIONS(1763), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1763), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1763), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1763), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1763), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1763), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1763), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1763), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1763), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1763), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1763), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1763), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1763), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1763), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_NONNULL] = ACTIONS(1763), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1763), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1763), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1763), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1763), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1763), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1763), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1763), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1763), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1763), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1763), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1763), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1763), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1763), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1763), - [anon_sym_MOZ_RAII] = ACTIONS(1763), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1763), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1763), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1763), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1763), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1763), - [sym_raw_string_literal] = ACTIONS(1765), - }, - [576] = { - [sym_identifier] = ACTIONS(1767), - [aux_sym_preproc_include_token1] = ACTIONS(1767), - [aux_sym_preproc_def_token1] = ACTIONS(1767), - [aux_sym_preproc_if_token1] = ACTIONS(1767), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1767), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1767), - [sym_preproc_directive] = ACTIONS(1767), - [anon_sym_LPAREN2] = ACTIONS(1769), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1767), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1769), - [anon_sym_AMP_AMP] = ACTIONS(1769), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_typedef] = ACTIONS(1767), - [anon_sym_extern] = ACTIONS(1767), - [anon_sym___attribute__] = ACTIONS(1767), - [anon_sym_COLON_COLON] = ACTIONS(1769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1769), - [anon_sym___declspec] = ACTIONS(1767), - [anon_sym___based] = ACTIONS(1767), - [anon_sym___cdecl] = ACTIONS(1767), - [anon_sym___clrcall] = ACTIONS(1767), - [anon_sym___stdcall] = ACTIONS(1767), - [anon_sym___fastcall] = ACTIONS(1767), - [anon_sym___thiscall] = ACTIONS(1767), - [anon_sym___vectorcall] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_static] = ACTIONS(1767), - [anon_sym_register] = ACTIONS(1767), - [anon_sym_inline] = ACTIONS(1767), - [anon_sym_thread_local] = ACTIONS(1767), - [anon_sym_const] = ACTIONS(1767), - [anon_sym_volatile] = ACTIONS(1767), - [anon_sym_restrict] = ACTIONS(1767), - [anon_sym__Atomic] = ACTIONS(1767), - [anon_sym_mutable] = ACTIONS(1767), - [anon_sym_constexpr] = ACTIONS(1767), - [anon_sym_signed] = ACTIONS(1767), - [anon_sym_unsigned] = ACTIONS(1767), - [anon_sym_long] = ACTIONS(1767), - [anon_sym_short] = ACTIONS(1767), - [sym_primitive_type] = ACTIONS(1767), - [anon_sym_enum] = ACTIONS(1767), - [anon_sym_class] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1767), - [anon_sym_union] = ACTIONS(1767), - [anon_sym_if] = ACTIONS(1767), - [anon_sym_switch] = ACTIONS(1767), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1767), - [anon_sym_while] = ACTIONS(1767), - [anon_sym_do] = ACTIONS(1767), - [anon_sym_for] = ACTIONS(1767), - [anon_sym_return] = ACTIONS(1767), - [anon_sym_break] = ACTIONS(1767), - [anon_sym_continue] = ACTIONS(1767), - [anon_sym_goto] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_sizeof] = ACTIONS(1767), - [sym_number_literal] = ACTIONS(1769), - [anon_sym_L_SQUOTE] = ACTIONS(1769), - [anon_sym_u_SQUOTE] = ACTIONS(1769), - [anon_sym_U_SQUOTE] = ACTIONS(1769), - [anon_sym_u8_SQUOTE] = ACTIONS(1769), - [anon_sym_SQUOTE] = ACTIONS(1769), - [anon_sym_L_DQUOTE] = ACTIONS(1769), - [anon_sym_u_DQUOTE] = ACTIONS(1769), - [anon_sym_U_DQUOTE] = ACTIONS(1769), - [anon_sym_u8_DQUOTE] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [sym_true] = ACTIONS(1767), - [sym_false] = ACTIONS(1767), - [sym_null] = ACTIONS(1767), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1767), - [anon_sym_virtual] = ACTIONS(1767), - [anon_sym_explicit] = ACTIONS(1767), - [sym_auto] = ACTIONS(1767), - [anon_sym_typename] = ACTIONS(1767), - [anon_sym_template] = ACTIONS(1767), - [anon_sym_operator] = ACTIONS(1767), - [anon_sym_delete] = ACTIONS(1767), - [anon_sym_throw] = ACTIONS(1767), - [anon_sym_namespace] = ACTIONS(1767), - [anon_sym_using] = ACTIONS(1767), - [anon_sym_static_assert] = ACTIONS(1767), - [anon_sym_co_return] = ACTIONS(1767), - [anon_sym_co_yield] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1767), - [anon_sym_co_await] = ACTIONS(1767), - [anon_sym_new] = ACTIONS(1767), - [sym_this] = ACTIONS(1767), - [sym_nullptr] = ACTIONS(1767), - [sym_alone_macro] = ACTIONS(1769), - [aux_sym_alone_macro_call_token1] = ACTIONS(1767), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1767), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_FORWARD] = ACTIONS(1767), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1767), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1767), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1767), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1767), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_PS_GET] = ACTIONS(1767), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1767), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1767), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1767), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1767), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1767), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1767), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1767), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1767), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1767), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1767), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1767), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1767), - [anon_sym_MOZ_COLD] = ACTIONS(1767), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1767), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1767), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1767), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1767), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1767), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1767), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1767), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1767), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1767), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1767), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1767), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1767), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1767), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1767), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1767), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1767), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1767), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1767), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1767), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1767), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1767), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_NONNULL] = ACTIONS(1767), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1767), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1767), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1767), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1767), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1767), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_NORETURN] = ACTIONS(1767), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1767), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1767), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1767), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1767), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1767), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1767), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1767), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1767), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1767), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1767), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1767), - [anon_sym_MOZ_RAII] = ACTIONS(1767), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1767), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1767), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1767), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1767), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1767), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1767), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1767), - [sym_raw_string_literal] = ACTIONS(1769), - }, - [577] = { - [sym_identifier] = ACTIONS(1731), - [aux_sym_preproc_include_token1] = ACTIONS(1731), - [aux_sym_preproc_def_token1] = ACTIONS(1731), - [aux_sym_preproc_if_token1] = ACTIONS(1731), - [aux_sym_preproc_if_token2] = ACTIONS(1731), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1731), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1731), - [sym_preproc_directive] = ACTIONS(1731), - [anon_sym_LPAREN2] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_AMP_AMP] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_typedef] = ACTIONS(1731), - [anon_sym_extern] = ACTIONS(1731), - [anon_sym___attribute__] = ACTIONS(1731), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1733), - [anon_sym___declspec] = ACTIONS(1731), - [anon_sym___based] = ACTIONS(1731), - [anon_sym___cdecl] = ACTIONS(1731), - [anon_sym___clrcall] = ACTIONS(1731), - [anon_sym___stdcall] = ACTIONS(1731), - [anon_sym___fastcall] = ACTIONS(1731), - [anon_sym___thiscall] = ACTIONS(1731), - [anon_sym___vectorcall] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_static] = ACTIONS(1731), - [anon_sym_register] = ACTIONS(1731), - [anon_sym_inline] = ACTIONS(1731), - [anon_sym_thread_local] = ACTIONS(1731), - [anon_sym_const] = ACTIONS(1731), - [anon_sym_volatile] = ACTIONS(1731), - [anon_sym_restrict] = ACTIONS(1731), - [anon_sym__Atomic] = ACTIONS(1731), - [anon_sym_mutable] = ACTIONS(1731), - [anon_sym_constexpr] = ACTIONS(1731), - [anon_sym_signed] = ACTIONS(1731), - [anon_sym_unsigned] = ACTIONS(1731), - [anon_sym_long] = ACTIONS(1731), - [anon_sym_short] = ACTIONS(1731), - [sym_primitive_type] = ACTIONS(1731), - [anon_sym_enum] = ACTIONS(1731), - [anon_sym_class] = ACTIONS(1731), - [anon_sym_struct] = ACTIONS(1731), - [anon_sym_union] = ACTIONS(1731), - [anon_sym_if] = ACTIONS(1731), - [anon_sym_switch] = ACTIONS(1731), - [anon_sym_case] = ACTIONS(1731), - [anon_sym_default] = ACTIONS(1731), - [anon_sym_while] = ACTIONS(1731), - [anon_sym_do] = ACTIONS(1731), - [anon_sym_for] = ACTIONS(1731), - [anon_sym_return] = ACTIONS(1731), - [anon_sym_break] = ACTIONS(1731), - [anon_sym_continue] = ACTIONS(1731), - [anon_sym_goto] = ACTIONS(1731), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_sizeof] = ACTIONS(1731), - [sym_number_literal] = ACTIONS(1733), - [anon_sym_L_SQUOTE] = ACTIONS(1733), - [anon_sym_u_SQUOTE] = ACTIONS(1733), - [anon_sym_U_SQUOTE] = ACTIONS(1733), - [anon_sym_u8_SQUOTE] = ACTIONS(1733), - [anon_sym_SQUOTE] = ACTIONS(1733), - [anon_sym_L_DQUOTE] = ACTIONS(1733), - [anon_sym_u_DQUOTE] = ACTIONS(1733), - [anon_sym_U_DQUOTE] = ACTIONS(1733), - [anon_sym_u8_DQUOTE] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1733), - [sym_true] = ACTIONS(1731), - [sym_false] = ACTIONS(1731), - [sym_null] = ACTIONS(1731), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1731), - [anon_sym_virtual] = ACTIONS(1731), - [anon_sym_explicit] = ACTIONS(1731), - [sym_auto] = ACTIONS(1731), - [anon_sym_typename] = ACTIONS(1731), - [anon_sym_template] = ACTIONS(1731), - [anon_sym_operator] = ACTIONS(1731), - [anon_sym_delete] = ACTIONS(1731), - [anon_sym_throw] = ACTIONS(1731), - [anon_sym_namespace] = ACTIONS(1731), - [anon_sym_using] = ACTIONS(1731), - [anon_sym_static_assert] = ACTIONS(1731), - [anon_sym_co_return] = ACTIONS(1731), - [anon_sym_co_yield] = ACTIONS(1731), - [anon_sym_try] = ACTIONS(1731), - [anon_sym_co_await] = ACTIONS(1731), - [anon_sym_new] = ACTIONS(1731), - [sym_this] = ACTIONS(1731), - [sym_nullptr] = ACTIONS(1731), - [sym_alone_macro] = ACTIONS(1733), - [aux_sym_alone_macro_call_token1] = ACTIONS(1731), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1731), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_FORWARD] = ACTIONS(1731), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1731), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1731), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1731), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1731), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_PS_GET] = ACTIONS(1731), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1731), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1731), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1731), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1731), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1731), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1731), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1731), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1731), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1731), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1731), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1731), - [anon_sym_MOZ_COLD] = ACTIONS(1731), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1731), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1731), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1731), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1731), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1731), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1731), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1731), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1731), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1731), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1731), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1731), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1731), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1731), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1731), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1731), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1731), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1731), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1731), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1731), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1731), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_NONNULL] = ACTIONS(1731), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1731), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1731), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1731), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1731), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1731), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_NORETURN] = ACTIONS(1731), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1731), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1731), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1731), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1731), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1731), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1731), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1731), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1731), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1731), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1731), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1731), - [anon_sym_MOZ_RAII] = ACTIONS(1731), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1731), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1731), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1731), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1731), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1731), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1731), - [sym_raw_string_literal] = ACTIONS(1733), - }, - [578] = { - [sym_identifier] = ACTIONS(1903), - [aux_sym_preproc_include_token1] = ACTIONS(1903), - [aux_sym_preproc_def_token1] = ACTIONS(1903), - [aux_sym_preproc_if_token1] = ACTIONS(1903), - [aux_sym_preproc_if_token2] = ACTIONS(1903), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1903), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1903), - [sym_preproc_directive] = ACTIONS(1903), - [anon_sym_LPAREN2] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1903), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_AMP_AMP] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_SEMI] = ACTIONS(1905), - [anon_sym_typedef] = ACTIONS(1903), - [anon_sym_extern] = ACTIONS(1903), - [anon_sym___attribute__] = ACTIONS(1903), - [anon_sym_COLON_COLON] = ACTIONS(1905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1905), - [anon_sym___declspec] = ACTIONS(1903), - [anon_sym___based] = ACTIONS(1903), - [anon_sym___cdecl] = ACTIONS(1903), - [anon_sym___clrcall] = ACTIONS(1903), - [anon_sym___stdcall] = ACTIONS(1903), - [anon_sym___fastcall] = ACTIONS(1903), - [anon_sym___thiscall] = ACTIONS(1903), - [anon_sym___vectorcall] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_static] = ACTIONS(1903), - [anon_sym_register] = ACTIONS(1903), - [anon_sym_inline] = ACTIONS(1903), - [anon_sym_thread_local] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(1903), - [anon_sym_volatile] = ACTIONS(1903), - [anon_sym_restrict] = ACTIONS(1903), - [anon_sym__Atomic] = ACTIONS(1903), - [anon_sym_mutable] = ACTIONS(1903), - [anon_sym_constexpr] = ACTIONS(1903), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [sym_primitive_type] = ACTIONS(1903), - [anon_sym_enum] = ACTIONS(1903), - [anon_sym_class] = ACTIONS(1903), - [anon_sym_struct] = ACTIONS(1903), - [anon_sym_union] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_switch] = ACTIONS(1903), - [anon_sym_case] = ACTIONS(1903), - [anon_sym_default] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_do] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_goto] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1905), - [anon_sym_PLUS_PLUS] = ACTIONS(1905), - [anon_sym_sizeof] = ACTIONS(1903), - [sym_number_literal] = ACTIONS(1905), - [anon_sym_L_SQUOTE] = ACTIONS(1905), - [anon_sym_u_SQUOTE] = ACTIONS(1905), - [anon_sym_U_SQUOTE] = ACTIONS(1905), - [anon_sym_u8_SQUOTE] = ACTIONS(1905), - [anon_sym_SQUOTE] = ACTIONS(1905), - [anon_sym_L_DQUOTE] = ACTIONS(1905), - [anon_sym_u_DQUOTE] = ACTIONS(1905), - [anon_sym_U_DQUOTE] = ACTIONS(1905), - [anon_sym_u8_DQUOTE] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1905), - [sym_true] = ACTIONS(1903), - [sym_false] = ACTIONS(1903), - [sym_null] = ACTIONS(1903), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1903), - [anon_sym_virtual] = ACTIONS(1903), - [anon_sym_explicit] = ACTIONS(1903), - [sym_auto] = ACTIONS(1903), - [anon_sym_typename] = ACTIONS(1903), - [anon_sym_template] = ACTIONS(1903), - [anon_sym_operator] = ACTIONS(1903), - [anon_sym_delete] = ACTIONS(1903), - [anon_sym_throw] = ACTIONS(1903), - [anon_sym_namespace] = ACTIONS(1903), - [anon_sym_using] = ACTIONS(1903), - [anon_sym_static_assert] = ACTIONS(1903), - [anon_sym_co_return] = ACTIONS(1903), - [anon_sym_co_yield] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1903), - [anon_sym_co_await] = ACTIONS(1903), - [anon_sym_new] = ACTIONS(1903), - [sym_this] = ACTIONS(1903), - [sym_nullptr] = ACTIONS(1903), - [sym_alone_macro] = ACTIONS(1905), - [aux_sym_alone_macro_call_token1] = ACTIONS(1903), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1903), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_FORWARD] = ACTIONS(1903), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1903), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1903), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1903), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1903), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_PS_GET] = ACTIONS(1903), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1903), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1903), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1903), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), - [anon_sym_MOZ_COLD] = ACTIONS(1903), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), - [anon_sym_MOZ_NONNULL] = ACTIONS(1903), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), - [anon_sym_MOZ_NORETURN] = ACTIONS(1903), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), - [anon_sym_MOZ_RAII] = ACTIONS(1903), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), - [sym_raw_string_literal] = ACTIONS(1905), - }, - [579] = { - [ts_builtin_sym_end] = ACTIONS(1777), - [sym_identifier] = ACTIONS(1775), - [aux_sym_preproc_include_token1] = ACTIONS(1775), - [aux_sym_preproc_def_token1] = ACTIONS(1775), - [aux_sym_preproc_if_token1] = ACTIONS(1775), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1775), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1775), - [sym_preproc_directive] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(1777), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_TILDE] = ACTIONS(1777), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_AMP_AMP] = ACTIONS(1777), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_SEMI] = ACTIONS(1777), - [anon_sym_typedef] = ACTIONS(1775), - [anon_sym_extern] = ACTIONS(1775), - [anon_sym___attribute__] = ACTIONS(1775), - [anon_sym_COLON_COLON] = ACTIONS(1777), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1777), - [anon_sym___declspec] = ACTIONS(1775), - [anon_sym___based] = ACTIONS(1775), - [anon_sym___cdecl] = ACTIONS(1775), - [anon_sym___clrcall] = ACTIONS(1775), - [anon_sym___stdcall] = ACTIONS(1775), - [anon_sym___fastcall] = ACTIONS(1775), - [anon_sym___thiscall] = ACTIONS(1775), - [anon_sym___vectorcall] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_LBRACK] = ACTIONS(1775), - [anon_sym_static] = ACTIONS(1775), - [anon_sym_register] = ACTIONS(1775), - [anon_sym_inline] = ACTIONS(1775), - [anon_sym_thread_local] = ACTIONS(1775), - [anon_sym_const] = ACTIONS(1775), - [anon_sym_volatile] = ACTIONS(1775), - [anon_sym_restrict] = ACTIONS(1775), - [anon_sym__Atomic] = ACTIONS(1775), - [anon_sym_mutable] = ACTIONS(1775), - [anon_sym_constexpr] = ACTIONS(1775), - [anon_sym_signed] = ACTIONS(1775), - [anon_sym_unsigned] = ACTIONS(1775), - [anon_sym_long] = ACTIONS(1775), - [anon_sym_short] = ACTIONS(1775), - [sym_primitive_type] = ACTIONS(1775), - [anon_sym_enum] = ACTIONS(1775), - [anon_sym_class] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1775), - [anon_sym_union] = ACTIONS(1775), - [anon_sym_if] = ACTIONS(1775), - [anon_sym_switch] = ACTIONS(1775), - [anon_sym_case] = ACTIONS(1775), - [anon_sym_default] = ACTIONS(1775), - [anon_sym_while] = ACTIONS(1775), - [anon_sym_do] = ACTIONS(1775), - [anon_sym_for] = ACTIONS(1775), - [anon_sym_return] = ACTIONS(1775), - [anon_sym_break] = ACTIONS(1775), - [anon_sym_continue] = ACTIONS(1775), - [anon_sym_goto] = ACTIONS(1775), - [anon_sym_DASH_DASH] = ACTIONS(1777), - [anon_sym_PLUS_PLUS] = ACTIONS(1777), - [anon_sym_sizeof] = ACTIONS(1775), - [sym_number_literal] = ACTIONS(1777), - [anon_sym_L_SQUOTE] = ACTIONS(1777), - [anon_sym_u_SQUOTE] = ACTIONS(1777), - [anon_sym_U_SQUOTE] = ACTIONS(1777), - [anon_sym_u8_SQUOTE] = ACTIONS(1777), - [anon_sym_SQUOTE] = ACTIONS(1777), - [anon_sym_L_DQUOTE] = ACTIONS(1777), - [anon_sym_u_DQUOTE] = ACTIONS(1777), - [anon_sym_U_DQUOTE] = ACTIONS(1777), - [anon_sym_u8_DQUOTE] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(1777), - [sym_true] = ACTIONS(1775), - [sym_false] = ACTIONS(1775), - [sym_null] = ACTIONS(1775), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1775), - [anon_sym_virtual] = ACTIONS(1775), - [anon_sym_explicit] = ACTIONS(1775), - [sym_auto] = ACTIONS(1775), - [anon_sym_typename] = ACTIONS(1775), - [anon_sym_template] = ACTIONS(1775), - [anon_sym_operator] = ACTIONS(1775), - [anon_sym_delete] = ACTIONS(1775), - [anon_sym_throw] = ACTIONS(1775), - [anon_sym_namespace] = ACTIONS(1775), - [anon_sym_using] = ACTIONS(1775), - [anon_sym_static_assert] = ACTIONS(1775), - [anon_sym_co_return] = ACTIONS(1775), - [anon_sym_co_yield] = ACTIONS(1775), - [anon_sym_try] = ACTIONS(1775), - [anon_sym_co_await] = ACTIONS(1775), - [anon_sym_new] = ACTIONS(1775), - [sym_this] = ACTIONS(1775), - [sym_nullptr] = ACTIONS(1775), - [sym_alone_macro] = ACTIONS(1777), - [aux_sym_alone_macro_call_token1] = ACTIONS(1775), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1775), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_FORWARD] = ACTIONS(1775), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1775), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1775), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1775), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1775), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_PS_GET] = ACTIONS(1775), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1775), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1775), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1775), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1775), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1775), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1775), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1775), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1775), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1775), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1775), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1775), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1775), - [anon_sym_MOZ_COLD] = ACTIONS(1775), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1775), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1775), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1775), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1775), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1775), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1775), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1775), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1775), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1775), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1775), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1775), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1775), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1775), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1775), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1775), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1775), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1775), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1775), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1775), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1775), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1775), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_NONNULL] = ACTIONS(1775), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1775), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1775), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1775), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1775), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1775), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_NORETURN] = ACTIONS(1775), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1775), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1775), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1775), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1775), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1775), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1775), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1775), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1775), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1775), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1775), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1775), - [anon_sym_MOZ_RAII] = ACTIONS(1775), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1775), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1775), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1775), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1775), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1775), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1775), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1775), - [sym_raw_string_literal] = ACTIONS(1777), - }, - [580] = { - [sym_identifier] = ACTIONS(1895), - [aux_sym_preproc_include_token1] = ACTIONS(1895), - [aux_sym_preproc_def_token1] = ACTIONS(1895), - [aux_sym_preproc_if_token1] = ACTIONS(1895), - [aux_sym_preproc_if_token2] = ACTIONS(1895), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1895), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1895), - [sym_preproc_directive] = ACTIONS(1895), - [anon_sym_LPAREN2] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1895), - [anon_sym_PLUS] = ACTIONS(1895), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_AMP_AMP] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_typedef] = ACTIONS(1895), - [anon_sym_extern] = ACTIONS(1895), - [anon_sym___attribute__] = ACTIONS(1895), - [anon_sym_COLON_COLON] = ACTIONS(1897), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1897), - [anon_sym___declspec] = ACTIONS(1895), - [anon_sym___based] = ACTIONS(1895), - [anon_sym___cdecl] = ACTIONS(1895), - [anon_sym___clrcall] = ACTIONS(1895), - [anon_sym___stdcall] = ACTIONS(1895), - [anon_sym___fastcall] = ACTIONS(1895), - [anon_sym___thiscall] = ACTIONS(1895), - [anon_sym___vectorcall] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1895), - [anon_sym_static] = ACTIONS(1895), - [anon_sym_register] = ACTIONS(1895), - [anon_sym_inline] = ACTIONS(1895), - [anon_sym_thread_local] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [anon_sym_volatile] = ACTIONS(1895), - [anon_sym_restrict] = ACTIONS(1895), - [anon_sym__Atomic] = ACTIONS(1895), - [anon_sym_mutable] = ACTIONS(1895), - [anon_sym_constexpr] = ACTIONS(1895), - [anon_sym_signed] = ACTIONS(1895), - [anon_sym_unsigned] = ACTIONS(1895), - [anon_sym_long] = ACTIONS(1895), - [anon_sym_short] = ACTIONS(1895), - [sym_primitive_type] = ACTIONS(1895), - [anon_sym_enum] = ACTIONS(1895), - [anon_sym_class] = ACTIONS(1895), - [anon_sym_struct] = ACTIONS(1895), - [anon_sym_union] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_switch] = ACTIONS(1895), - [anon_sym_case] = ACTIONS(1895), - [anon_sym_default] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_do] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_goto] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_sizeof] = ACTIONS(1895), - [sym_number_literal] = ACTIONS(1897), - [anon_sym_L_SQUOTE] = ACTIONS(1897), - [anon_sym_u_SQUOTE] = ACTIONS(1897), - [anon_sym_U_SQUOTE] = ACTIONS(1897), - [anon_sym_u8_SQUOTE] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_L_DQUOTE] = ACTIONS(1897), - [anon_sym_u_DQUOTE] = ACTIONS(1897), - [anon_sym_U_DQUOTE] = ACTIONS(1897), - [anon_sym_u8_DQUOTE] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym_true] = ACTIONS(1895), - [sym_false] = ACTIONS(1895), - [sym_null] = ACTIONS(1895), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1895), - [anon_sym_virtual] = ACTIONS(1895), - [anon_sym_explicit] = ACTIONS(1895), - [sym_auto] = ACTIONS(1895), - [anon_sym_typename] = ACTIONS(1895), - [anon_sym_template] = ACTIONS(1895), - [anon_sym_operator] = ACTIONS(1895), - [anon_sym_delete] = ACTIONS(1895), - [anon_sym_throw] = ACTIONS(1895), - [anon_sym_namespace] = ACTIONS(1895), - [anon_sym_using] = ACTIONS(1895), - [anon_sym_static_assert] = ACTIONS(1895), - [anon_sym_co_return] = ACTIONS(1895), - [anon_sym_co_yield] = ACTIONS(1895), - [anon_sym_try] = ACTIONS(1895), - [anon_sym_co_await] = ACTIONS(1895), - [anon_sym_new] = ACTIONS(1895), - [sym_this] = ACTIONS(1895), - [sym_nullptr] = ACTIONS(1895), - [sym_alone_macro] = ACTIONS(1897), - [aux_sym_alone_macro_call_token1] = ACTIONS(1895), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1895), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_FORWARD] = ACTIONS(1895), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1895), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1895), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1895), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1895), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_PS_GET] = ACTIONS(1895), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1895), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1895), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1895), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1895), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1895), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1895), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1895), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1895), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1895), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1895), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1895), - [anon_sym_MOZ_COLD] = ACTIONS(1895), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1895), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1895), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1895), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1895), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1895), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1895), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1895), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1895), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1895), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1895), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1895), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1895), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1895), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1895), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1895), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1895), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1895), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1895), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1895), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1895), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_NONNULL] = ACTIONS(1895), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1895), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1895), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1895), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1895), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1895), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_NORETURN] = ACTIONS(1895), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1895), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1895), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1895), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1895), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1895), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1895), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1895), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1895), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1895), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1895), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1895), - [anon_sym_MOZ_RAII] = ACTIONS(1895), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1895), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1895), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1895), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1895), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1895), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1895), - [sym_raw_string_literal] = ACTIONS(1897), - }, - [581] = { - [sym_identifier] = ACTIONS(1887), - [aux_sym_preproc_include_token1] = ACTIONS(1887), - [aux_sym_preproc_def_token1] = ACTIONS(1887), - [aux_sym_preproc_if_token1] = ACTIONS(1887), - [aux_sym_preproc_if_token2] = ACTIONS(1887), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1887), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1887), - [sym_preproc_directive] = ACTIONS(1887), - [anon_sym_LPAREN2] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_typedef] = ACTIONS(1887), - [anon_sym_extern] = ACTIONS(1887), - [anon_sym___attribute__] = ACTIONS(1887), - [anon_sym_COLON_COLON] = ACTIONS(1889), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1889), - [anon_sym___declspec] = ACTIONS(1887), - [anon_sym___based] = ACTIONS(1887), - [anon_sym___cdecl] = ACTIONS(1887), - [anon_sym___clrcall] = ACTIONS(1887), - [anon_sym___stdcall] = ACTIONS(1887), - [anon_sym___fastcall] = ACTIONS(1887), - [anon_sym___thiscall] = ACTIONS(1887), - [anon_sym___vectorcall] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_register] = ACTIONS(1887), - [anon_sym_inline] = ACTIONS(1887), - [anon_sym_thread_local] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [anon_sym_volatile] = ACTIONS(1887), - [anon_sym_restrict] = ACTIONS(1887), - [anon_sym__Atomic] = ACTIONS(1887), - [anon_sym_mutable] = ACTIONS(1887), - [anon_sym_constexpr] = ACTIONS(1887), - [anon_sym_signed] = ACTIONS(1887), - [anon_sym_unsigned] = ACTIONS(1887), - [anon_sym_long] = ACTIONS(1887), - [anon_sym_short] = ACTIONS(1887), - [sym_primitive_type] = ACTIONS(1887), - [anon_sym_enum] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1887), - [anon_sym_union] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_switch] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_default] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_do] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_goto] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_sizeof] = ACTIONS(1887), - [sym_number_literal] = ACTIONS(1889), - [anon_sym_L_SQUOTE] = ACTIONS(1889), - [anon_sym_u_SQUOTE] = ACTIONS(1889), - [anon_sym_U_SQUOTE] = ACTIONS(1889), - [anon_sym_u8_SQUOTE] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1889), - [anon_sym_L_DQUOTE] = ACTIONS(1889), - [anon_sym_u_DQUOTE] = ACTIONS(1889), - [anon_sym_U_DQUOTE] = ACTIONS(1889), - [anon_sym_u8_DQUOTE] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [sym_true] = ACTIONS(1887), - [sym_false] = ACTIONS(1887), - [sym_null] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1887), - [anon_sym_virtual] = ACTIONS(1887), - [anon_sym_explicit] = ACTIONS(1887), - [sym_auto] = ACTIONS(1887), - [anon_sym_typename] = ACTIONS(1887), - [anon_sym_template] = ACTIONS(1887), - [anon_sym_operator] = ACTIONS(1887), - [anon_sym_delete] = ACTIONS(1887), - [anon_sym_throw] = ACTIONS(1887), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_using] = ACTIONS(1887), - [anon_sym_static_assert] = ACTIONS(1887), - [anon_sym_co_return] = ACTIONS(1887), - [anon_sym_co_yield] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_co_await] = ACTIONS(1887), - [anon_sym_new] = ACTIONS(1887), - [sym_this] = ACTIONS(1887), - [sym_nullptr] = ACTIONS(1887), - [sym_alone_macro] = ACTIONS(1889), - [aux_sym_alone_macro_call_token1] = ACTIONS(1887), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1887), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_FORWARD] = ACTIONS(1887), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1887), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1887), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1887), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1887), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_PS_GET] = ACTIONS(1887), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1887), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1887), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1887), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1887), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1887), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1887), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1887), - [anon_sym_MOZ_COLD] = ACTIONS(1887), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1887), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1887), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1887), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1887), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1887), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1887), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1887), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1887), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1887), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1887), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1887), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1887), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1887), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_NONNULL] = ACTIONS(1887), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1887), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1887), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1887), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1887), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1887), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1887), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1887), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1887), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1887), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1887), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1887), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1887), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1887), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1887), - [anon_sym_MOZ_RAII] = ACTIONS(1887), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1887), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1887), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1887), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1887), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1887), - [sym_raw_string_literal] = ACTIONS(1889), - }, - [582] = { - [sym_identifier] = ACTIONS(1799), - [aux_sym_preproc_include_token1] = ACTIONS(1799), - [aux_sym_preproc_def_token1] = ACTIONS(1799), - [aux_sym_preproc_if_token1] = ACTIONS(1799), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1799), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1799), - [sym_preproc_directive] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_typedef] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym___attribute__] = ACTIONS(1799), - [anon_sym_COLON_COLON] = ACTIONS(1801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1801), - [anon_sym___declspec] = ACTIONS(1799), - [anon_sym___based] = ACTIONS(1799), - [anon_sym___cdecl] = ACTIONS(1799), - [anon_sym___clrcall] = ACTIONS(1799), - [anon_sym___stdcall] = ACTIONS(1799), - [anon_sym___fastcall] = ACTIONS(1799), - [anon_sym___thiscall] = ACTIONS(1799), - [anon_sym___vectorcall] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_inline] = ACTIONS(1799), - [anon_sym_thread_local] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_volatile] = ACTIONS(1799), - [anon_sym_restrict] = ACTIONS(1799), - [anon_sym__Atomic] = ACTIONS(1799), - [anon_sym_mutable] = ACTIONS(1799), - [anon_sym_constexpr] = ACTIONS(1799), - [anon_sym_signed] = ACTIONS(1799), - [anon_sym_unsigned] = ACTIONS(1799), - [anon_sym_long] = ACTIONS(1799), - [anon_sym_short] = ACTIONS(1799), - [sym_primitive_type] = ACTIONS(1799), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_class] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1799), - [anon_sym_union] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_switch] = ACTIONS(1799), - [anon_sym_case] = ACTIONS(1799), - [anon_sym_default] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_goto] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1799), - [sym_number_literal] = ACTIONS(1801), - [anon_sym_L_SQUOTE] = ACTIONS(1801), - [anon_sym_u_SQUOTE] = ACTIONS(1801), - [anon_sym_U_SQUOTE] = ACTIONS(1801), - [anon_sym_u8_SQUOTE] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(1801), - [anon_sym_L_DQUOTE] = ACTIONS(1801), - [anon_sym_u_DQUOTE] = ACTIONS(1801), - [anon_sym_U_DQUOTE] = ACTIONS(1801), - [anon_sym_u8_DQUOTE] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym_true] = ACTIONS(1799), - [sym_false] = ACTIONS(1799), - [sym_null] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1799), - [anon_sym_virtual] = ACTIONS(1799), - [anon_sym_explicit] = ACTIONS(1799), - [sym_auto] = ACTIONS(1799), - [anon_sym_typename] = ACTIONS(1799), - [anon_sym_template] = ACTIONS(1799), - [anon_sym_operator] = ACTIONS(1799), - [anon_sym_delete] = ACTIONS(1799), - [anon_sym_throw] = ACTIONS(1799), - [anon_sym_namespace] = ACTIONS(1799), - [anon_sym_using] = ACTIONS(1799), - [anon_sym_static_assert] = ACTIONS(1799), - [anon_sym_co_return] = ACTIONS(1799), - [anon_sym_co_yield] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_co_await] = ACTIONS(1799), - [anon_sym_new] = ACTIONS(1799), - [sym_this] = ACTIONS(1799), - [sym_nullptr] = ACTIONS(1799), - [sym_alone_macro] = ACTIONS(1801), - [aux_sym_alone_macro_call_token1] = ACTIONS(1799), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1799), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_FORWARD] = ACTIONS(1799), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1799), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1799), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1799), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1799), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_PS_GET] = ACTIONS(1799), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1799), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1799), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1799), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1799), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1799), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1799), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1799), - [anon_sym_MOZ_COLD] = ACTIONS(1799), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1799), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1799), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1799), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1799), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1799), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1799), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1799), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1799), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1799), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1799), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1799), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1799), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1799), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_NONNULL] = ACTIONS(1799), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1799), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1799), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1799), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1799), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1799), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1799), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1799), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1799), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1799), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1799), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1799), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1799), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1799), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1799), - [anon_sym_MOZ_RAII] = ACTIONS(1799), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1799), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1799), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1799), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1799), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1799), - [sym_raw_string_literal] = ACTIONS(1801), - }, - [583] = { - [sym_identifier] = ACTIONS(1859), - [aux_sym_preproc_include_token1] = ACTIONS(1859), - [aux_sym_preproc_def_token1] = ACTIONS(1859), - [aux_sym_preproc_if_token1] = ACTIONS(1859), - [aux_sym_preproc_if_token2] = ACTIONS(1859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1859), - [sym_preproc_directive] = ACTIONS(1859), - [anon_sym_LPAREN2] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1859), - [anon_sym_PLUS] = ACTIONS(1859), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1859), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_typedef] = ACTIONS(1859), - [anon_sym_extern] = ACTIONS(1859), - [anon_sym___attribute__] = ACTIONS(1859), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1861), - [anon_sym___declspec] = ACTIONS(1859), - [anon_sym___based] = ACTIONS(1859), - [anon_sym___cdecl] = ACTIONS(1859), - [anon_sym___clrcall] = ACTIONS(1859), - [anon_sym___stdcall] = ACTIONS(1859), - [anon_sym___fastcall] = ACTIONS(1859), - [anon_sym___thiscall] = ACTIONS(1859), - [anon_sym___vectorcall] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_static] = ACTIONS(1859), - [anon_sym_register] = ACTIONS(1859), - [anon_sym_inline] = ACTIONS(1859), - [anon_sym_thread_local] = ACTIONS(1859), - [anon_sym_const] = ACTIONS(1859), - [anon_sym_volatile] = ACTIONS(1859), - [anon_sym_restrict] = ACTIONS(1859), - [anon_sym__Atomic] = ACTIONS(1859), - [anon_sym_mutable] = ACTIONS(1859), - [anon_sym_constexpr] = ACTIONS(1859), - [anon_sym_signed] = ACTIONS(1859), - [anon_sym_unsigned] = ACTIONS(1859), - [anon_sym_long] = ACTIONS(1859), - [anon_sym_short] = ACTIONS(1859), - [sym_primitive_type] = ACTIONS(1859), - [anon_sym_enum] = ACTIONS(1859), - [anon_sym_class] = ACTIONS(1859), - [anon_sym_struct] = ACTIONS(1859), - [anon_sym_union] = ACTIONS(1859), - [anon_sym_if] = ACTIONS(1859), - [anon_sym_switch] = ACTIONS(1859), - [anon_sym_case] = ACTIONS(1859), - [anon_sym_default] = ACTIONS(1859), - [anon_sym_while] = ACTIONS(1859), - [anon_sym_do] = ACTIONS(1859), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(1859), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1859), - [anon_sym_goto] = ACTIONS(1859), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_sizeof] = ACTIONS(1859), - [sym_number_literal] = ACTIONS(1861), - [anon_sym_L_SQUOTE] = ACTIONS(1861), - [anon_sym_u_SQUOTE] = ACTIONS(1861), - [anon_sym_U_SQUOTE] = ACTIONS(1861), - [anon_sym_u8_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_L_DQUOTE] = ACTIONS(1861), - [anon_sym_u_DQUOTE] = ACTIONS(1861), - [anon_sym_U_DQUOTE] = ACTIONS(1861), - [anon_sym_u8_DQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [sym_true] = ACTIONS(1859), - [sym_false] = ACTIONS(1859), - [sym_null] = ACTIONS(1859), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1859), - [anon_sym_virtual] = ACTIONS(1859), - [anon_sym_explicit] = ACTIONS(1859), - [sym_auto] = ACTIONS(1859), - [anon_sym_typename] = ACTIONS(1859), - [anon_sym_template] = ACTIONS(1859), - [anon_sym_operator] = ACTIONS(1859), - [anon_sym_delete] = ACTIONS(1859), - [anon_sym_throw] = ACTIONS(1859), - [anon_sym_namespace] = ACTIONS(1859), - [anon_sym_using] = ACTIONS(1859), - [anon_sym_static_assert] = ACTIONS(1859), - [anon_sym_co_return] = ACTIONS(1859), - [anon_sym_co_yield] = ACTIONS(1859), - [anon_sym_try] = ACTIONS(1859), - [anon_sym_co_await] = ACTIONS(1859), - [anon_sym_new] = ACTIONS(1859), - [sym_this] = ACTIONS(1859), - [sym_nullptr] = ACTIONS(1859), - [sym_alone_macro] = ACTIONS(1861), - [aux_sym_alone_macro_call_token1] = ACTIONS(1859), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_FORWARD] = ACTIONS(1859), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_PS_GET] = ACTIONS(1859), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1859), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1859), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1859), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1859), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1859), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1859), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1859), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1859), - [anon_sym_MOZ_COLD] = ACTIONS(1859), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1859), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1859), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1859), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1859), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1859), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1859), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1859), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1859), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1859), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1859), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1859), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1859), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1859), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1859), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1859), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1859), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1859), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1859), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1859), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1859), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1859), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_NONNULL] = ACTIONS(1859), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1859), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1859), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1859), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1859), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1859), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_NORETURN] = ACTIONS(1859), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1859), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1859), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1859), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1859), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1859), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1859), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1859), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1859), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1859), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1859), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1859), - [anon_sym_MOZ_RAII] = ACTIONS(1859), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1859), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1859), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1859), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1859), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1859), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1859), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1859), - [sym_raw_string_literal] = ACTIONS(1861), - }, - [584] = { - [sym_identifier] = ACTIONS(1855), - [aux_sym_preproc_include_token1] = ACTIONS(1855), - [aux_sym_preproc_def_token1] = ACTIONS(1855), - [aux_sym_preproc_if_token1] = ACTIONS(1855), - [aux_sym_preproc_if_token2] = ACTIONS(1855), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1855), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1855), - [sym_preproc_directive] = ACTIONS(1855), - [anon_sym_LPAREN2] = ACTIONS(1857), - [anon_sym_BANG] = ACTIONS(1857), - [anon_sym_TILDE] = ACTIONS(1857), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1857), - [anon_sym_AMP_AMP] = ACTIONS(1857), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_SEMI] = ACTIONS(1857), - [anon_sym_typedef] = ACTIONS(1855), - [anon_sym_extern] = ACTIONS(1855), - [anon_sym___attribute__] = ACTIONS(1855), - [anon_sym_COLON_COLON] = ACTIONS(1857), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1857), - [anon_sym___declspec] = ACTIONS(1855), - [anon_sym___based] = ACTIONS(1855), - [anon_sym___cdecl] = ACTIONS(1855), - [anon_sym___clrcall] = ACTIONS(1855), - [anon_sym___stdcall] = ACTIONS(1855), - [anon_sym___fastcall] = ACTIONS(1855), - [anon_sym___thiscall] = ACTIONS(1855), - [anon_sym___vectorcall] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_register] = ACTIONS(1855), - [anon_sym_inline] = ACTIONS(1855), - [anon_sym_thread_local] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_volatile] = ACTIONS(1855), - [anon_sym_restrict] = ACTIONS(1855), - [anon_sym__Atomic] = ACTIONS(1855), - [anon_sym_mutable] = ACTIONS(1855), - [anon_sym_constexpr] = ACTIONS(1855), - [anon_sym_signed] = ACTIONS(1855), - [anon_sym_unsigned] = ACTIONS(1855), - [anon_sym_long] = ACTIONS(1855), - [anon_sym_short] = ACTIONS(1855), - [sym_primitive_type] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), - [anon_sym_class] = ACTIONS(1855), - [anon_sym_struct] = ACTIONS(1855), - [anon_sym_union] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(1855), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_goto] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1857), - [anon_sym_PLUS_PLUS] = ACTIONS(1857), - [anon_sym_sizeof] = ACTIONS(1855), - [sym_number_literal] = ACTIONS(1857), - [anon_sym_L_SQUOTE] = ACTIONS(1857), - [anon_sym_u_SQUOTE] = ACTIONS(1857), - [anon_sym_U_SQUOTE] = ACTIONS(1857), - [anon_sym_u8_SQUOTE] = ACTIONS(1857), - [anon_sym_SQUOTE] = ACTIONS(1857), - [anon_sym_L_DQUOTE] = ACTIONS(1857), - [anon_sym_u_DQUOTE] = ACTIONS(1857), - [anon_sym_U_DQUOTE] = ACTIONS(1857), - [anon_sym_u8_DQUOTE] = ACTIONS(1857), - [anon_sym_DQUOTE] = ACTIONS(1857), - [sym_true] = ACTIONS(1855), - [sym_false] = ACTIONS(1855), - [sym_null] = ACTIONS(1855), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1855), - [anon_sym_virtual] = ACTIONS(1855), - [anon_sym_explicit] = ACTIONS(1855), - [sym_auto] = ACTIONS(1855), - [anon_sym_typename] = ACTIONS(1855), - [anon_sym_template] = ACTIONS(1855), - [anon_sym_operator] = ACTIONS(1855), - [anon_sym_delete] = ACTIONS(1855), - [anon_sym_throw] = ACTIONS(1855), - [anon_sym_namespace] = ACTIONS(1855), - [anon_sym_using] = ACTIONS(1855), - [anon_sym_static_assert] = ACTIONS(1855), - [anon_sym_co_return] = ACTIONS(1855), - [anon_sym_co_yield] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_co_await] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1855), - [sym_this] = ACTIONS(1855), - [sym_nullptr] = ACTIONS(1855), - [sym_alone_macro] = ACTIONS(1857), - [aux_sym_alone_macro_call_token1] = ACTIONS(1855), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1855), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_FORWARD] = ACTIONS(1855), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1855), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1855), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1855), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1855), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_PS_GET] = ACTIONS(1855), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1855), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1855), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1855), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1855), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1855), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1855), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1855), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1855), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1855), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1855), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1855), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1855), - [anon_sym_MOZ_COLD] = ACTIONS(1855), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1855), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1855), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1855), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1855), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1855), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1855), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1855), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1855), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1855), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1855), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1855), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1855), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1855), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1855), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1855), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1855), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1855), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1855), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1855), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1855), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1855), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_NONNULL] = ACTIONS(1855), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1855), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1855), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1855), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1855), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1855), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_NORETURN] = ACTIONS(1855), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1855), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1855), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1855), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1855), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1855), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1855), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1855), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1855), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1855), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1855), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1855), - [anon_sym_MOZ_RAII] = ACTIONS(1855), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1855), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1855), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1855), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1855), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1855), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1855), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1855), - [sym_raw_string_literal] = ACTIONS(1857), - }, - [585] = { - [sym_identifier] = ACTIONS(1851), - [aux_sym_preproc_include_token1] = ACTIONS(1851), - [aux_sym_preproc_def_token1] = ACTIONS(1851), - [aux_sym_preproc_if_token1] = ACTIONS(1851), - [aux_sym_preproc_if_token2] = ACTIONS(1851), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1851), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1851), - [sym_preproc_directive] = ACTIONS(1851), - [anon_sym_LPAREN2] = ACTIONS(1853), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_AMP_AMP] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_typedef] = ACTIONS(1851), - [anon_sym_extern] = ACTIONS(1851), - [anon_sym___attribute__] = ACTIONS(1851), - [anon_sym_COLON_COLON] = ACTIONS(1853), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1853), - [anon_sym___declspec] = ACTIONS(1851), - [anon_sym___based] = ACTIONS(1851), - [anon_sym___cdecl] = ACTIONS(1851), - [anon_sym___clrcall] = ACTIONS(1851), - [anon_sym___stdcall] = ACTIONS(1851), - [anon_sym___fastcall] = ACTIONS(1851), - [anon_sym___thiscall] = ACTIONS(1851), - [anon_sym___vectorcall] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_register] = ACTIONS(1851), - [anon_sym_inline] = ACTIONS(1851), - [anon_sym_thread_local] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [anon_sym_volatile] = ACTIONS(1851), - [anon_sym_restrict] = ACTIONS(1851), - [anon_sym__Atomic] = ACTIONS(1851), - [anon_sym_mutable] = ACTIONS(1851), - [anon_sym_constexpr] = ACTIONS(1851), - [anon_sym_signed] = ACTIONS(1851), - [anon_sym_unsigned] = ACTIONS(1851), - [anon_sym_long] = ACTIONS(1851), - [anon_sym_short] = ACTIONS(1851), - [sym_primitive_type] = ACTIONS(1851), - [anon_sym_enum] = ACTIONS(1851), - [anon_sym_class] = ACTIONS(1851), - [anon_sym_struct] = ACTIONS(1851), - [anon_sym_union] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1851), - [anon_sym_case] = ACTIONS(1851), - [anon_sym_default] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_goto] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_sizeof] = ACTIONS(1851), - [sym_number_literal] = ACTIONS(1853), - [anon_sym_L_SQUOTE] = ACTIONS(1853), - [anon_sym_u_SQUOTE] = ACTIONS(1853), - [anon_sym_U_SQUOTE] = ACTIONS(1853), - [anon_sym_u8_SQUOTE] = ACTIONS(1853), - [anon_sym_SQUOTE] = ACTIONS(1853), - [anon_sym_L_DQUOTE] = ACTIONS(1853), - [anon_sym_u_DQUOTE] = ACTIONS(1853), - [anon_sym_U_DQUOTE] = ACTIONS(1853), - [anon_sym_u8_DQUOTE] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1853), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_null] = ACTIONS(1851), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1851), - [anon_sym_virtual] = ACTIONS(1851), - [anon_sym_explicit] = ACTIONS(1851), - [sym_auto] = ACTIONS(1851), - [anon_sym_typename] = ACTIONS(1851), - [anon_sym_template] = ACTIONS(1851), - [anon_sym_operator] = ACTIONS(1851), - [anon_sym_delete] = ACTIONS(1851), - [anon_sym_throw] = ACTIONS(1851), - [anon_sym_namespace] = ACTIONS(1851), - [anon_sym_using] = ACTIONS(1851), - [anon_sym_static_assert] = ACTIONS(1851), - [anon_sym_co_return] = ACTIONS(1851), - [anon_sym_co_yield] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_co_await] = ACTIONS(1851), - [anon_sym_new] = ACTIONS(1851), - [sym_this] = ACTIONS(1851), - [sym_nullptr] = ACTIONS(1851), - [sym_alone_macro] = ACTIONS(1853), - [aux_sym_alone_macro_call_token1] = ACTIONS(1851), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1851), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_FORWARD] = ACTIONS(1851), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1851), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1851), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1851), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1851), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_PS_GET] = ACTIONS(1851), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1851), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1851), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1851), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1851), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1851), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1851), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1851), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1851), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1851), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1851), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1851), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1851), - [anon_sym_MOZ_COLD] = ACTIONS(1851), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1851), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1851), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1851), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1851), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1851), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1851), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1851), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1851), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1851), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1851), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1851), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1851), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1851), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1851), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1851), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1851), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1851), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1851), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1851), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1851), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1851), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_NONNULL] = ACTIONS(1851), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1851), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1851), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1851), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1851), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1851), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_NORETURN] = ACTIONS(1851), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1851), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1851), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1851), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1851), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1851), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1851), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1851), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1851), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1851), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1851), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1851), - [anon_sym_MOZ_RAII] = ACTIONS(1851), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1851), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1851), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1851), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1851), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1851), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1851), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1851), - [sym_raw_string_literal] = ACTIONS(1853), - }, - [586] = { - [sym_identifier] = ACTIONS(1791), - [aux_sym_preproc_include_token1] = ACTIONS(1791), - [aux_sym_preproc_def_token1] = ACTIONS(1791), - [aux_sym_preproc_if_token1] = ACTIONS(1791), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1791), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1791), - [sym_preproc_directive] = ACTIONS(1791), - [anon_sym_LPAREN2] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1793), - [anon_sym_TILDE] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_AMP_AMP] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_SEMI] = ACTIONS(1793), - [anon_sym_typedef] = ACTIONS(1791), - [anon_sym_extern] = ACTIONS(1791), - [anon_sym___attribute__] = ACTIONS(1791), - [anon_sym_COLON_COLON] = ACTIONS(1793), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1793), - [anon_sym___declspec] = ACTIONS(1791), - [anon_sym___based] = ACTIONS(1791), - [anon_sym___cdecl] = ACTIONS(1791), - [anon_sym___clrcall] = ACTIONS(1791), - [anon_sym___stdcall] = ACTIONS(1791), - [anon_sym___fastcall] = ACTIONS(1791), - [anon_sym___thiscall] = ACTIONS(1791), - [anon_sym___vectorcall] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1793), - [anon_sym_LBRACK] = ACTIONS(1791), - [anon_sym_static] = ACTIONS(1791), - [anon_sym_register] = ACTIONS(1791), - [anon_sym_inline] = ACTIONS(1791), - [anon_sym_thread_local] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_volatile] = ACTIONS(1791), - [anon_sym_restrict] = ACTIONS(1791), - [anon_sym__Atomic] = ACTIONS(1791), - [anon_sym_mutable] = ACTIONS(1791), - [anon_sym_constexpr] = ACTIONS(1791), - [anon_sym_signed] = ACTIONS(1791), - [anon_sym_unsigned] = ACTIONS(1791), - [anon_sym_long] = ACTIONS(1791), - [anon_sym_short] = ACTIONS(1791), - [sym_primitive_type] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_class] = ACTIONS(1791), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_union] = ACTIONS(1791), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_switch] = ACTIONS(1791), - [anon_sym_case] = ACTIONS(1791), - [anon_sym_default] = ACTIONS(1791), - [anon_sym_while] = ACTIONS(1791), - [anon_sym_do] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_goto] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1793), - [anon_sym_PLUS_PLUS] = ACTIONS(1793), - [anon_sym_sizeof] = ACTIONS(1791), - [sym_number_literal] = ACTIONS(1793), - [anon_sym_L_SQUOTE] = ACTIONS(1793), - [anon_sym_u_SQUOTE] = ACTIONS(1793), - [anon_sym_U_SQUOTE] = ACTIONS(1793), - [anon_sym_u8_SQUOTE] = ACTIONS(1793), - [anon_sym_SQUOTE] = ACTIONS(1793), - [anon_sym_L_DQUOTE] = ACTIONS(1793), - [anon_sym_u_DQUOTE] = ACTIONS(1793), - [anon_sym_U_DQUOTE] = ACTIONS(1793), - [anon_sym_u8_DQUOTE] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1793), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_null] = ACTIONS(1791), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1791), - [anon_sym_virtual] = ACTIONS(1791), - [anon_sym_explicit] = ACTIONS(1791), - [sym_auto] = ACTIONS(1791), - [anon_sym_typename] = ACTIONS(1791), - [anon_sym_template] = ACTIONS(1791), - [anon_sym_operator] = ACTIONS(1791), - [anon_sym_delete] = ACTIONS(1791), - [anon_sym_throw] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1791), - [anon_sym_using] = ACTIONS(1791), - [anon_sym_static_assert] = ACTIONS(1791), - [anon_sym_co_return] = ACTIONS(1791), - [anon_sym_co_yield] = ACTIONS(1791), - [anon_sym_try] = ACTIONS(1791), - [anon_sym_co_await] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1791), - [sym_this] = ACTIONS(1791), - [sym_nullptr] = ACTIONS(1791), - [sym_alone_macro] = ACTIONS(1793), - [aux_sym_alone_macro_call_token1] = ACTIONS(1791), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1791), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_FORWARD] = ACTIONS(1791), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1791), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1791), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1791), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1791), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_PS_GET] = ACTIONS(1791), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1791), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1791), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1791), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1791), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1791), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1791), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1791), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1791), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1791), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1791), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1791), - [anon_sym_MOZ_COLD] = ACTIONS(1791), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1791), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1791), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1791), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1791), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1791), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1791), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1791), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1791), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1791), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1791), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1791), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1791), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1791), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1791), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1791), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1791), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1791), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1791), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1791), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1791), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_NONNULL] = ACTIONS(1791), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1791), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1791), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1791), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1791), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1791), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_NORETURN] = ACTIONS(1791), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1791), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1791), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1791), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1791), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1791), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1791), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1791), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1791), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1791), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1791), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1791), - [anon_sym_MOZ_RAII] = ACTIONS(1791), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1791), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1791), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1791), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1791), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1791), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1791), - [sym_raw_string_literal] = ACTIONS(1793), - }, - [587] = { - [sym_identifier] = ACTIONS(1795), - [aux_sym_preproc_include_token1] = ACTIONS(1795), - [aux_sym_preproc_def_token1] = ACTIONS(1795), - [aux_sym_preproc_if_token1] = ACTIONS(1795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1795), - [sym_preproc_directive] = ACTIONS(1795), - [anon_sym_LPAREN2] = ACTIONS(1797), - [anon_sym_BANG] = ACTIONS(1797), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1795), - [anon_sym_PLUS] = ACTIONS(1795), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_AMP_AMP] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1797), - [anon_sym_typedef] = ACTIONS(1795), - [anon_sym_extern] = ACTIONS(1795), - [anon_sym___attribute__] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1797), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1797), - [anon_sym___declspec] = ACTIONS(1795), - [anon_sym___based] = ACTIONS(1795), - [anon_sym___cdecl] = ACTIONS(1795), - [anon_sym___clrcall] = ACTIONS(1795), - [anon_sym___stdcall] = ACTIONS(1795), - [anon_sym___fastcall] = ACTIONS(1795), - [anon_sym___thiscall] = ACTIONS(1795), - [anon_sym___vectorcall] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_RBRACE] = ACTIONS(1797), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_static] = ACTIONS(1795), - [anon_sym_register] = ACTIONS(1795), - [anon_sym_inline] = ACTIONS(1795), - [anon_sym_thread_local] = ACTIONS(1795), - [anon_sym_const] = ACTIONS(1795), - [anon_sym_volatile] = ACTIONS(1795), - [anon_sym_restrict] = ACTIONS(1795), - [anon_sym__Atomic] = ACTIONS(1795), - [anon_sym_mutable] = ACTIONS(1795), - [anon_sym_constexpr] = ACTIONS(1795), - [anon_sym_signed] = ACTIONS(1795), - [anon_sym_unsigned] = ACTIONS(1795), - [anon_sym_long] = ACTIONS(1795), - [anon_sym_short] = ACTIONS(1795), - [sym_primitive_type] = ACTIONS(1795), - [anon_sym_enum] = ACTIONS(1795), - [anon_sym_class] = ACTIONS(1795), - [anon_sym_struct] = ACTIONS(1795), - [anon_sym_union] = ACTIONS(1795), - [anon_sym_if] = ACTIONS(1795), - [anon_sym_switch] = ACTIONS(1795), - [anon_sym_case] = ACTIONS(1795), - [anon_sym_default] = ACTIONS(1795), - [anon_sym_while] = ACTIONS(1795), - [anon_sym_do] = ACTIONS(1795), - [anon_sym_for] = ACTIONS(1795), - [anon_sym_return] = ACTIONS(1795), - [anon_sym_break] = ACTIONS(1795), - [anon_sym_continue] = ACTIONS(1795), - [anon_sym_goto] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1797), - [anon_sym_PLUS_PLUS] = ACTIONS(1797), - [anon_sym_sizeof] = ACTIONS(1795), - [sym_number_literal] = ACTIONS(1797), - [anon_sym_L_SQUOTE] = ACTIONS(1797), - [anon_sym_u_SQUOTE] = ACTIONS(1797), - [anon_sym_U_SQUOTE] = ACTIONS(1797), - [anon_sym_u8_SQUOTE] = ACTIONS(1797), - [anon_sym_SQUOTE] = ACTIONS(1797), - [anon_sym_L_DQUOTE] = ACTIONS(1797), - [anon_sym_u_DQUOTE] = ACTIONS(1797), - [anon_sym_U_DQUOTE] = ACTIONS(1797), - [anon_sym_u8_DQUOTE] = ACTIONS(1797), - [anon_sym_DQUOTE] = ACTIONS(1797), - [sym_true] = ACTIONS(1795), - [sym_false] = ACTIONS(1795), - [sym_null] = ACTIONS(1795), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1795), - [anon_sym_virtual] = ACTIONS(1795), - [anon_sym_explicit] = ACTIONS(1795), - [sym_auto] = ACTIONS(1795), - [anon_sym_typename] = ACTIONS(1795), - [anon_sym_template] = ACTIONS(1795), - [anon_sym_operator] = ACTIONS(1795), - [anon_sym_delete] = ACTIONS(1795), - [anon_sym_throw] = ACTIONS(1795), - [anon_sym_namespace] = ACTIONS(1795), - [anon_sym_using] = ACTIONS(1795), - [anon_sym_static_assert] = ACTIONS(1795), - [anon_sym_co_return] = ACTIONS(1795), - [anon_sym_co_yield] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1795), - [anon_sym_co_await] = ACTIONS(1795), - [anon_sym_new] = ACTIONS(1795), - [sym_this] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(1795), - [sym_alone_macro] = ACTIONS(1797), - [aux_sym_alone_macro_call_token1] = ACTIONS(1795), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1795), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_FORWARD] = ACTIONS(1795), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1795), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1795), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1795), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1795), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_PS_GET] = ACTIONS(1795), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1795), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1795), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1795), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1795), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1795), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1795), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1795), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1795), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1795), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1795), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1795), - [anon_sym_MOZ_COLD] = ACTIONS(1795), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1795), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1795), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1795), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1795), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1795), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1795), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1795), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1795), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1795), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1795), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1795), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1795), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1795), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1795), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1795), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1795), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1795), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1795), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1795), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1795), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_NONNULL] = ACTIONS(1795), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1795), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1795), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1795), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1795), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1795), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_NORETURN] = ACTIONS(1795), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1795), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1795), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1795), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1795), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1795), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1795), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1795), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1795), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1795), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1795), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1795), - [anon_sym_MOZ_RAII] = ACTIONS(1795), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1795), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1795), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1795), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1795), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1795), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1795), - [sym_raw_string_literal] = ACTIONS(1797), - }, - [588] = { - [sym_identifier] = ACTIONS(1871), - [aux_sym_preproc_include_token1] = ACTIONS(1871), - [aux_sym_preproc_def_token1] = ACTIONS(1871), - [aux_sym_preproc_if_token1] = ACTIONS(1871), - [aux_sym_preproc_if_token2] = ACTIONS(1871), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1871), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1871), - [sym_preproc_directive] = ACTIONS(1871), - [anon_sym_LPAREN2] = ACTIONS(1873), - [anon_sym_BANG] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1871), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_AMP_AMP] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_typedef] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym___attribute__] = ACTIONS(1871), - [anon_sym_COLON_COLON] = ACTIONS(1873), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), - [anon_sym___declspec] = ACTIONS(1871), - [anon_sym___based] = ACTIONS(1871), - [anon_sym___cdecl] = ACTIONS(1871), - [anon_sym___clrcall] = ACTIONS(1871), - [anon_sym___stdcall] = ACTIONS(1871), - [anon_sym___fastcall] = ACTIONS(1871), - [anon_sym___thiscall] = ACTIONS(1871), - [anon_sym___vectorcall] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1871), - [anon_sym_static] = ACTIONS(1871), - [anon_sym_register] = ACTIONS(1871), - [anon_sym_inline] = ACTIONS(1871), - [anon_sym_thread_local] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [anon_sym_volatile] = ACTIONS(1871), - [anon_sym_restrict] = ACTIONS(1871), - [anon_sym__Atomic] = ACTIONS(1871), - [anon_sym_mutable] = ACTIONS(1871), - [anon_sym_constexpr] = ACTIONS(1871), - [anon_sym_signed] = ACTIONS(1871), - [anon_sym_unsigned] = ACTIONS(1871), - [anon_sym_long] = ACTIONS(1871), - [anon_sym_short] = ACTIONS(1871), - [sym_primitive_type] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), - [anon_sym_class] = ACTIONS(1871), - [anon_sym_struct] = ACTIONS(1871), - [anon_sym_union] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_switch] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_goto] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [anon_sym_PLUS_PLUS] = ACTIONS(1873), - [anon_sym_sizeof] = ACTIONS(1871), - [sym_number_literal] = ACTIONS(1873), - [anon_sym_L_SQUOTE] = ACTIONS(1873), - [anon_sym_u_SQUOTE] = ACTIONS(1873), - [anon_sym_U_SQUOTE] = ACTIONS(1873), - [anon_sym_u8_SQUOTE] = ACTIONS(1873), - [anon_sym_SQUOTE] = ACTIONS(1873), - [anon_sym_L_DQUOTE] = ACTIONS(1873), - [anon_sym_u_DQUOTE] = ACTIONS(1873), - [anon_sym_U_DQUOTE] = ACTIONS(1873), - [anon_sym_u8_DQUOTE] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym_true] = ACTIONS(1871), - [sym_false] = ACTIONS(1871), - [sym_null] = ACTIONS(1871), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1871), - [anon_sym_virtual] = ACTIONS(1871), - [anon_sym_explicit] = ACTIONS(1871), - [sym_auto] = ACTIONS(1871), - [anon_sym_typename] = ACTIONS(1871), - [anon_sym_template] = ACTIONS(1871), - [anon_sym_operator] = ACTIONS(1871), - [anon_sym_delete] = ACTIONS(1871), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_namespace] = ACTIONS(1871), - [anon_sym_using] = ACTIONS(1871), - [anon_sym_static_assert] = ACTIONS(1871), - [anon_sym_co_return] = ACTIONS(1871), - [anon_sym_co_yield] = ACTIONS(1871), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_co_await] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1871), - [sym_this] = ACTIONS(1871), - [sym_nullptr] = ACTIONS(1871), - [sym_alone_macro] = ACTIONS(1873), - [aux_sym_alone_macro_call_token1] = ACTIONS(1871), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1871), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_FORWARD] = ACTIONS(1871), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1871), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1871), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1871), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1871), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_PS_GET] = ACTIONS(1871), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1871), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1871), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1871), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1871), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1871), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1871), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1871), - [anon_sym_MOZ_COLD] = ACTIONS(1871), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1871), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1871), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1871), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1871), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1871), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1871), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1871), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1871), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1871), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1871), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1871), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1871), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1871), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_NONNULL] = ACTIONS(1871), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1871), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1871), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1871), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1871), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1871), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1871), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1871), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1871), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1871), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1871), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1871), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1871), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1871), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1871), - [anon_sym_MOZ_RAII] = ACTIONS(1871), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1871), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1871), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1871), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1871), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1871), - [sym_raw_string_literal] = ACTIONS(1873), - }, - [589] = { - [ts_builtin_sym_end] = ACTIONS(1737), - [sym_identifier] = ACTIONS(1735), - [aux_sym_preproc_include_token1] = ACTIONS(1735), - [aux_sym_preproc_def_token1] = ACTIONS(1735), - [aux_sym_preproc_if_token1] = ACTIONS(1735), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1735), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1735), - [sym_preproc_directive] = ACTIONS(1735), - [anon_sym_LPAREN2] = ACTIONS(1737), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_typedef] = ACTIONS(1735), - [anon_sym_extern] = ACTIONS(1735), - [anon_sym___attribute__] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1737), - [anon_sym___declspec] = ACTIONS(1735), - [anon_sym___based] = ACTIONS(1735), - [anon_sym___cdecl] = ACTIONS(1735), - [anon_sym___clrcall] = ACTIONS(1735), - [anon_sym___stdcall] = ACTIONS(1735), - [anon_sym___fastcall] = ACTIONS(1735), - [anon_sym___thiscall] = ACTIONS(1735), - [anon_sym___vectorcall] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_register] = ACTIONS(1735), - [anon_sym_inline] = ACTIONS(1735), - [anon_sym_thread_local] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_volatile] = ACTIONS(1735), - [anon_sym_restrict] = ACTIONS(1735), - [anon_sym__Atomic] = ACTIONS(1735), - [anon_sym_mutable] = ACTIONS(1735), - [anon_sym_constexpr] = ACTIONS(1735), - [anon_sym_signed] = ACTIONS(1735), - [anon_sym_unsigned] = ACTIONS(1735), - [anon_sym_long] = ACTIONS(1735), - [anon_sym_short] = ACTIONS(1735), - [sym_primitive_type] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [anon_sym_class] = ACTIONS(1735), - [anon_sym_struct] = ACTIONS(1735), - [anon_sym_union] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1735), - [anon_sym_switch] = ACTIONS(1735), - [anon_sym_case] = ACTIONS(1735), - [anon_sym_default] = ACTIONS(1735), - [anon_sym_while] = ACTIONS(1735), - [anon_sym_do] = ACTIONS(1735), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_return] = ACTIONS(1735), - [anon_sym_break] = ACTIONS(1735), - [anon_sym_continue] = ACTIONS(1735), - [anon_sym_goto] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_sizeof] = ACTIONS(1735), - [sym_number_literal] = ACTIONS(1737), - [anon_sym_L_SQUOTE] = ACTIONS(1737), - [anon_sym_u_SQUOTE] = ACTIONS(1737), - [anon_sym_U_SQUOTE] = ACTIONS(1737), - [anon_sym_u8_SQUOTE] = ACTIONS(1737), - [anon_sym_SQUOTE] = ACTIONS(1737), - [anon_sym_L_DQUOTE] = ACTIONS(1737), - [anon_sym_u_DQUOTE] = ACTIONS(1737), - [anon_sym_U_DQUOTE] = ACTIONS(1737), - [anon_sym_u8_DQUOTE] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [sym_true] = ACTIONS(1735), - [sym_false] = ACTIONS(1735), - [sym_null] = ACTIONS(1735), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1735), - [anon_sym_virtual] = ACTIONS(1735), - [anon_sym_explicit] = ACTIONS(1735), - [sym_auto] = ACTIONS(1735), - [anon_sym_typename] = ACTIONS(1735), - [anon_sym_template] = ACTIONS(1735), - [anon_sym_operator] = ACTIONS(1735), - [anon_sym_delete] = ACTIONS(1735), - [anon_sym_throw] = ACTIONS(1735), - [anon_sym_namespace] = ACTIONS(1735), - [anon_sym_using] = ACTIONS(1735), - [anon_sym_static_assert] = ACTIONS(1735), - [anon_sym_co_return] = ACTIONS(1735), - [anon_sym_co_yield] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1735), - [anon_sym_co_await] = ACTIONS(1735), - [anon_sym_new] = ACTIONS(1735), - [sym_this] = ACTIONS(1735), - [sym_nullptr] = ACTIONS(1735), - [sym_alone_macro] = ACTIONS(1737), - [aux_sym_alone_macro_call_token1] = ACTIONS(1735), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1735), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_FORWARD] = ACTIONS(1735), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1735), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1735), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1735), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1735), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_PS_GET] = ACTIONS(1735), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1735), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1735), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1735), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1735), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1735), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1735), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1735), - [anon_sym_MOZ_COLD] = ACTIONS(1735), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1735), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1735), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1735), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1735), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1735), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1735), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1735), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1735), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1735), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1735), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1735), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1735), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1735), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_NONNULL] = ACTIONS(1735), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1735), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1735), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1735), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1735), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1735), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1735), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1735), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1735), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1735), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1735), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1735), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1735), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1735), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1735), - [anon_sym_MOZ_RAII] = ACTIONS(1735), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1735), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1735), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1735), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1735), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1735), - [sym_raw_string_literal] = ACTIONS(1737), - }, - [590] = { - [ts_builtin_sym_end] = ACTIONS(1773), - [sym_identifier] = ACTIONS(1771), - [aux_sym_preproc_include_token1] = ACTIONS(1771), - [aux_sym_preproc_def_token1] = ACTIONS(1771), - [aux_sym_preproc_if_token1] = ACTIONS(1771), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1771), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1771), - [sym_preproc_directive] = ACTIONS(1771), - [anon_sym_LPAREN2] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1773), - [anon_sym_AMP_AMP] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_typedef] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1771), - [anon_sym___attribute__] = ACTIONS(1771), - [anon_sym_COLON_COLON] = ACTIONS(1773), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1773), - [anon_sym___declspec] = ACTIONS(1771), - [anon_sym___based] = ACTIONS(1771), - [anon_sym___cdecl] = ACTIONS(1771), - [anon_sym___clrcall] = ACTIONS(1771), - [anon_sym___stdcall] = ACTIONS(1771), - [anon_sym___fastcall] = ACTIONS(1771), - [anon_sym___thiscall] = ACTIONS(1771), - [anon_sym___vectorcall] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_register] = ACTIONS(1771), - [anon_sym_inline] = ACTIONS(1771), - [anon_sym_thread_local] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [anon_sym_volatile] = ACTIONS(1771), - [anon_sym_restrict] = ACTIONS(1771), - [anon_sym__Atomic] = ACTIONS(1771), - [anon_sym_mutable] = ACTIONS(1771), - [anon_sym_constexpr] = ACTIONS(1771), - [anon_sym_signed] = ACTIONS(1771), - [anon_sym_unsigned] = ACTIONS(1771), - [anon_sym_long] = ACTIONS(1771), - [anon_sym_short] = ACTIONS(1771), - [sym_primitive_type] = ACTIONS(1771), - [anon_sym_enum] = ACTIONS(1771), - [anon_sym_class] = ACTIONS(1771), - [anon_sym_struct] = ACTIONS(1771), - [anon_sym_union] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_switch] = ACTIONS(1771), - [anon_sym_case] = ACTIONS(1771), - [anon_sym_default] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_goto] = ACTIONS(1771), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_sizeof] = ACTIONS(1771), - [sym_number_literal] = ACTIONS(1773), - [anon_sym_L_SQUOTE] = ACTIONS(1773), - [anon_sym_u_SQUOTE] = ACTIONS(1773), - [anon_sym_U_SQUOTE] = ACTIONS(1773), - [anon_sym_u8_SQUOTE] = ACTIONS(1773), - [anon_sym_SQUOTE] = ACTIONS(1773), - [anon_sym_L_DQUOTE] = ACTIONS(1773), - [anon_sym_u_DQUOTE] = ACTIONS(1773), - [anon_sym_U_DQUOTE] = ACTIONS(1773), - [anon_sym_u8_DQUOTE] = ACTIONS(1773), - [anon_sym_DQUOTE] = ACTIONS(1773), - [sym_true] = ACTIONS(1771), - [sym_false] = ACTIONS(1771), - [sym_null] = ACTIONS(1771), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1771), - [anon_sym_virtual] = ACTIONS(1771), - [anon_sym_explicit] = ACTIONS(1771), - [sym_auto] = ACTIONS(1771), - [anon_sym_typename] = ACTIONS(1771), - [anon_sym_template] = ACTIONS(1771), - [anon_sym_operator] = ACTIONS(1771), - [anon_sym_delete] = ACTIONS(1771), - [anon_sym_throw] = ACTIONS(1771), - [anon_sym_namespace] = ACTIONS(1771), - [anon_sym_using] = ACTIONS(1771), - [anon_sym_static_assert] = ACTIONS(1771), - [anon_sym_co_return] = ACTIONS(1771), - [anon_sym_co_yield] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_co_await] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1771), - [sym_this] = ACTIONS(1771), - [sym_nullptr] = ACTIONS(1771), - [sym_alone_macro] = ACTIONS(1773), - [aux_sym_alone_macro_call_token1] = ACTIONS(1771), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1771), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_FORWARD] = ACTIONS(1771), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1771), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1771), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1771), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1771), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_PS_GET] = ACTIONS(1771), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1771), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1771), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1771), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1771), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1771), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1771), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1771), - [anon_sym_MOZ_COLD] = ACTIONS(1771), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1771), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1771), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1771), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1771), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1771), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1771), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1771), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1771), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1771), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1771), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1771), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1771), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1771), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_NONNULL] = ACTIONS(1771), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1771), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1771), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1771), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1771), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1771), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1771), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1771), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1771), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1771), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1771), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1771), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1771), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1771), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1771), - [anon_sym_MOZ_RAII] = ACTIONS(1771), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1771), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1771), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1771), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1771), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1771), - [sym_raw_string_literal] = ACTIONS(1773), - }, - [591] = { - [ts_builtin_sym_end] = ACTIONS(1741), - [sym_identifier] = ACTIONS(1739), - [aux_sym_preproc_include_token1] = ACTIONS(1739), - [aux_sym_preproc_def_token1] = ACTIONS(1739), - [aux_sym_preproc_if_token1] = ACTIONS(1739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1739), - [sym_preproc_directive] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_typedef] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym___attribute__] = ACTIONS(1739), - [anon_sym_COLON_COLON] = ACTIONS(1741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1741), - [anon_sym___declspec] = ACTIONS(1739), - [anon_sym___based] = ACTIONS(1739), - [anon_sym___cdecl] = ACTIONS(1739), - [anon_sym___clrcall] = ACTIONS(1739), - [anon_sym___stdcall] = ACTIONS(1739), - [anon_sym___fastcall] = ACTIONS(1739), - [anon_sym___thiscall] = ACTIONS(1739), - [anon_sym___vectorcall] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_static] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_inline] = ACTIONS(1739), - [anon_sym_thread_local] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [anon_sym_volatile] = ACTIONS(1739), - [anon_sym_restrict] = ACTIONS(1739), - [anon_sym__Atomic] = ACTIONS(1739), - [anon_sym_mutable] = ACTIONS(1739), - [anon_sym_constexpr] = ACTIONS(1739), - [anon_sym_signed] = ACTIONS(1739), - [anon_sym_unsigned] = ACTIONS(1739), - [anon_sym_long] = ACTIONS(1739), - [anon_sym_short] = ACTIONS(1739), - [sym_primitive_type] = ACTIONS(1739), - [anon_sym_enum] = ACTIONS(1739), - [anon_sym_class] = ACTIONS(1739), - [anon_sym_struct] = ACTIONS(1739), - [anon_sym_union] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_switch] = ACTIONS(1739), - [anon_sym_case] = ACTIONS(1739), - [anon_sym_default] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_goto] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_sizeof] = ACTIONS(1739), - [sym_number_literal] = ACTIONS(1741), - [anon_sym_L_SQUOTE] = ACTIONS(1741), - [anon_sym_u_SQUOTE] = ACTIONS(1741), - [anon_sym_U_SQUOTE] = ACTIONS(1741), - [anon_sym_u8_SQUOTE] = ACTIONS(1741), - [anon_sym_SQUOTE] = ACTIONS(1741), - [anon_sym_L_DQUOTE] = ACTIONS(1741), - [anon_sym_u_DQUOTE] = ACTIONS(1741), - [anon_sym_U_DQUOTE] = ACTIONS(1741), - [anon_sym_u8_DQUOTE] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym_true] = ACTIONS(1739), - [sym_false] = ACTIONS(1739), - [sym_null] = ACTIONS(1739), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1739), - [anon_sym_virtual] = ACTIONS(1739), - [anon_sym_explicit] = ACTIONS(1739), - [sym_auto] = ACTIONS(1739), - [anon_sym_typename] = ACTIONS(1739), - [anon_sym_template] = ACTIONS(1739), - [anon_sym_operator] = ACTIONS(1739), - [anon_sym_delete] = ACTIONS(1739), - [anon_sym_throw] = ACTIONS(1739), - [anon_sym_namespace] = ACTIONS(1739), - [anon_sym_using] = ACTIONS(1739), - [anon_sym_static_assert] = ACTIONS(1739), - [anon_sym_co_return] = ACTIONS(1739), - [anon_sym_co_yield] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_co_await] = ACTIONS(1739), - [anon_sym_new] = ACTIONS(1739), - [sym_this] = ACTIONS(1739), - [sym_nullptr] = ACTIONS(1739), - [sym_alone_macro] = ACTIONS(1741), - [aux_sym_alone_macro_call_token1] = ACTIONS(1739), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1739), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_FORWARD] = ACTIONS(1739), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1739), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1739), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1739), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1739), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_PS_GET] = ACTIONS(1739), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1739), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1739), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1739), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1739), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1739), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1739), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1739), - [anon_sym_MOZ_COLD] = ACTIONS(1739), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1739), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1739), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1739), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1739), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1739), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1739), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1739), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1739), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1739), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1739), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1739), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1739), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1739), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_NONNULL] = ACTIONS(1739), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1739), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1739), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1739), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1739), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1739), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1739), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1739), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1739), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1739), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1739), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1739), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1739), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1739), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1739), - [anon_sym_MOZ_RAII] = ACTIONS(1739), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1739), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1739), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1739), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1739), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1739), - [sym_raw_string_literal] = ACTIONS(1741), - }, - [592] = { - [ts_builtin_sym_end] = ACTIONS(1749), - [sym_identifier] = ACTIONS(1747), - [aux_sym_preproc_include_token1] = ACTIONS(1747), - [aux_sym_preproc_def_token1] = ACTIONS(1747), - [aux_sym_preproc_if_token1] = ACTIONS(1747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1747), - [sym_preproc_directive] = ACTIONS(1747), - [anon_sym_LPAREN2] = ACTIONS(1749), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1749), - [anon_sym_AMP_AMP] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1749), - [anon_sym_typedef] = ACTIONS(1747), - [anon_sym_extern] = ACTIONS(1747), - [anon_sym___attribute__] = ACTIONS(1747), - [anon_sym_COLON_COLON] = ACTIONS(1749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1749), - [anon_sym___declspec] = ACTIONS(1747), - [anon_sym___based] = ACTIONS(1747), - [anon_sym___cdecl] = ACTIONS(1747), - [anon_sym___clrcall] = ACTIONS(1747), - [anon_sym___stdcall] = ACTIONS(1747), - [anon_sym___fastcall] = ACTIONS(1747), - [anon_sym___thiscall] = ACTIONS(1747), - [anon_sym___vectorcall] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_static] = ACTIONS(1747), - [anon_sym_register] = ACTIONS(1747), - [anon_sym_inline] = ACTIONS(1747), - [anon_sym_thread_local] = ACTIONS(1747), - [anon_sym_const] = ACTIONS(1747), - [anon_sym_volatile] = ACTIONS(1747), - [anon_sym_restrict] = ACTIONS(1747), - [anon_sym__Atomic] = ACTIONS(1747), - [anon_sym_mutable] = ACTIONS(1747), - [anon_sym_constexpr] = ACTIONS(1747), - [anon_sym_signed] = ACTIONS(1747), - [anon_sym_unsigned] = ACTIONS(1747), - [anon_sym_long] = ACTIONS(1747), - [anon_sym_short] = ACTIONS(1747), - [sym_primitive_type] = ACTIONS(1747), - [anon_sym_enum] = ACTIONS(1747), - [anon_sym_class] = ACTIONS(1747), - [anon_sym_struct] = ACTIONS(1747), - [anon_sym_union] = ACTIONS(1747), - [anon_sym_if] = ACTIONS(1747), - [anon_sym_switch] = ACTIONS(1747), - [anon_sym_case] = ACTIONS(1747), - [anon_sym_default] = ACTIONS(1747), - [anon_sym_while] = ACTIONS(1747), - [anon_sym_do] = ACTIONS(1747), - [anon_sym_for] = ACTIONS(1747), - [anon_sym_return] = ACTIONS(1747), - [anon_sym_break] = ACTIONS(1747), - [anon_sym_continue] = ACTIONS(1747), - [anon_sym_goto] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_sizeof] = ACTIONS(1747), - [sym_number_literal] = ACTIONS(1749), - [anon_sym_L_SQUOTE] = ACTIONS(1749), - [anon_sym_u_SQUOTE] = ACTIONS(1749), - [anon_sym_U_SQUOTE] = ACTIONS(1749), - [anon_sym_u8_SQUOTE] = ACTIONS(1749), - [anon_sym_SQUOTE] = ACTIONS(1749), - [anon_sym_L_DQUOTE] = ACTIONS(1749), - [anon_sym_u_DQUOTE] = ACTIONS(1749), - [anon_sym_U_DQUOTE] = ACTIONS(1749), - [anon_sym_u8_DQUOTE] = ACTIONS(1749), - [anon_sym_DQUOTE] = ACTIONS(1749), - [sym_true] = ACTIONS(1747), - [sym_false] = ACTIONS(1747), - [sym_null] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1747), - [anon_sym_virtual] = ACTIONS(1747), - [anon_sym_explicit] = ACTIONS(1747), - [sym_auto] = ACTIONS(1747), - [anon_sym_typename] = ACTIONS(1747), - [anon_sym_template] = ACTIONS(1747), - [anon_sym_operator] = ACTIONS(1747), - [anon_sym_delete] = ACTIONS(1747), - [anon_sym_throw] = ACTIONS(1747), - [anon_sym_namespace] = ACTIONS(1747), - [anon_sym_using] = ACTIONS(1747), - [anon_sym_static_assert] = ACTIONS(1747), - [anon_sym_co_return] = ACTIONS(1747), - [anon_sym_co_yield] = ACTIONS(1747), - [anon_sym_try] = ACTIONS(1747), - [anon_sym_co_await] = ACTIONS(1747), - [anon_sym_new] = ACTIONS(1747), - [sym_this] = ACTIONS(1747), - [sym_nullptr] = ACTIONS(1747), - [sym_alone_macro] = ACTIONS(1749), - [aux_sym_alone_macro_call_token1] = ACTIONS(1747), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1747), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_FORWARD] = ACTIONS(1747), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1747), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1747), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1747), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1747), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_PS_GET] = ACTIONS(1747), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1747), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1747), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1747), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1747), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1747), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1747), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1747), - [anon_sym_MOZ_COLD] = ACTIONS(1747), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1747), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1747), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1747), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1747), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1747), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1747), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1747), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1747), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1747), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1747), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1747), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1747), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1747), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_NONNULL] = ACTIONS(1747), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1747), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1747), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1747), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1747), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1747), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1747), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1747), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1747), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1747), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1747), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1747), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1747), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1747), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1747), - [anon_sym_MOZ_RAII] = ACTIONS(1747), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1747), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1747), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1747), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1747), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1747), - [sym_raw_string_literal] = ACTIONS(1749), - }, - [593] = { + }, + [STATE(144)] = { + [sym_else_clause] = STATE(148), + [sym_identifier] = ACTIONS(1957), + [aux_sym_preproc_include_token1] = ACTIONS(1957), + [aux_sym_preproc_def_token1] = ACTIONS(1957), + [aux_sym_preproc_if_token1] = ACTIONS(1957), + [aux_sym_preproc_if_token2] = ACTIONS(1957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1957), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1957), + [aux_sym_preproc_else_token1] = ACTIONS(1957), + [aux_sym_preproc_elif_token1] = ACTIONS(1957), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1957), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1957), + [sym_preproc_directive] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1959), + [anon_sym_BANG] = ACTIONS(1959), + [anon_sym_TILDE] = ACTIONS(1959), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym___extension__] = ACTIONS(1957), + [anon_sym_typedef] = ACTIONS(1957), + [anon_sym_virtual] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym___attribute__] = ACTIONS(1957), + [anon_sym___attribute] = ACTIONS(1957), + [anon_sym_COLON_COLON] = ACTIONS(1959), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1959), + [anon_sym___declspec] = ACTIONS(1957), + [anon_sym___based] = ACTIONS(1957), + [anon_sym___cdecl] = ACTIONS(1957), + [anon_sym___clrcall] = ACTIONS(1957), + [anon_sym___stdcall] = ACTIONS(1957), + [anon_sym___fastcall] = ACTIONS(1957), + [anon_sym___thiscall] = ACTIONS(1957), + [anon_sym___vectorcall] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_signed] = ACTIONS(1957), + [anon_sym_unsigned] = ACTIONS(1957), + [anon_sym_long] = ACTIONS(1957), + [anon_sym_short] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1957), + [anon_sym_static] = ACTIONS(1957), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_inline] = ACTIONS(1957), + [anon_sym___inline] = ACTIONS(1957), + [anon_sym___inline__] = ACTIONS(1957), + [anon_sym___forceinline] = ACTIONS(1957), + [anon_sym_thread_local] = ACTIONS(1957), + [anon_sym___thread] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [anon_sym_constexpr] = ACTIONS(1957), + [anon_sym_volatile] = ACTIONS(1957), + [anon_sym_restrict] = ACTIONS(1957), + [anon_sym___restrict__] = ACTIONS(1957), + [anon_sym__Atomic] = ACTIONS(1957), + [anon_sym__Noreturn] = ACTIONS(1957), + [anon_sym_noreturn] = ACTIONS(1957), + [anon_sym__Nonnull] = ACTIONS(1957), + [anon_sym_mutable] = ACTIONS(1957), + [anon_sym_constinit] = ACTIONS(1957), + [anon_sym_consteval] = ACTIONS(1957), + [anon_sym_alignas] = ACTIONS(1957), + [anon_sym__Alignas] = ACTIONS(1957), + [sym_primitive_type] = ACTIONS(1957), + [anon_sym_enum] = ACTIONS(1957), + [anon_sym_class] = ACTIONS(1957), + [anon_sym_struct] = ACTIONS(1957), + [anon_sym_union] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(1951), + [anon_sym_switch] = ACTIONS(1957), + [anon_sym_case] = ACTIONS(1957), + [anon_sym_default] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_goto] = ACTIONS(1957), + [anon_sym___try] = ACTIONS(1957), + [anon_sym___leave] = ACTIONS(1957), + [anon_sym_not] = ACTIONS(1957), + [anon_sym_compl] = ACTIONS(1957), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_sizeof] = ACTIONS(1957), + [anon_sym___alignof__] = ACTIONS(1957), + [anon_sym___alignof] = ACTIONS(1957), + [anon_sym__alignof] = ACTIONS(1957), + [anon_sym_alignof] = ACTIONS(1957), + [anon_sym__Alignof] = ACTIONS(1957), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1957), + [anon_sym_asm] = ACTIONS(1957), + [anon_sym___asm__] = ACTIONS(1957), + [anon_sym___asm] = ACTIONS(1957), + [sym_number_literal] = ACTIONS(1959), + [anon_sym_L_SQUOTE] = ACTIONS(1959), + [anon_sym_u_SQUOTE] = ACTIONS(1959), + [anon_sym_U_SQUOTE] = ACTIONS(1959), + [anon_sym_u8_SQUOTE] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(1959), + [anon_sym_L_DQUOTE] = ACTIONS(1959), + [anon_sym_u_DQUOTE] = ACTIONS(1959), + [anon_sym_U_DQUOTE] = ACTIONS(1959), + [anon_sym_u8_DQUOTE] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [sym_true] = ACTIONS(1957), + [sym_false] = ACTIONS(1957), + [anon_sym_NULL] = ACTIONS(1957), + [anon_sym_nullptr] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1957), + [anon_sym_decltype] = ACTIONS(1957), + [anon_sym_explicit] = ACTIONS(1957), + [anon_sym_typename] = ACTIONS(1957), + [anon_sym_template] = ACTIONS(1957), + [anon_sym_operator] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_delete] = ACTIONS(1957), + [anon_sym_throw] = ACTIONS(1957), + [anon_sym_namespace] = ACTIONS(1957), + [anon_sym_using] = ACTIONS(1957), + [anon_sym_static_assert] = ACTIONS(1957), + [anon_sym_concept] = ACTIONS(1957), + [anon_sym_co_return] = ACTIONS(1957), + [anon_sym_co_yield] = ACTIONS(1957), + [anon_sym_R_DQUOTE] = ACTIONS(1959), + [anon_sym_LR_DQUOTE] = ACTIONS(1959), + [anon_sym_uR_DQUOTE] = ACTIONS(1959), + [anon_sym_UR_DQUOTE] = ACTIONS(1959), + [anon_sym_u8R_DQUOTE] = ACTIONS(1959), + [anon_sym_co_await] = ACTIONS(1957), + [anon_sym_new] = ACTIONS(1957), + [anon_sym_requires] = ACTIONS(1957), + [sym_this] = ACTIONS(1957), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_FORWARD] = ACTIONS(1957), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1957), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_PS_GET] = ACTIONS(1957), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1957), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1957), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1957), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1957), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1957), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1957), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1957), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1957), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1957), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1957), + [anon_sym_MOZ_COLD] = ACTIONS(1957), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1957), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1957), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1957), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1957), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1957), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1957), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1957), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1957), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1957), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1957), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1957), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1957), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1957), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1957), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1957), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1957), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1957), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1957), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1957), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1957), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_NONNULL] = ACTIONS(1957), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1957), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1957), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1957), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1957), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1957), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_NORETURN] = ACTIONS(1957), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1957), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1957), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1957), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1957), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1957), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1957), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1957), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1957), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1957), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1957), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1957), + [anon_sym_MOZ_RAII] = ACTIONS(1957), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1957), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1957), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1957), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1957), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1957), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1957), + }, + [STATE(145)] = { + [sym_catch_clause] = STATE(146), + [aux_sym_constructor_try_statement_repeat1] = STATE(146), + [ts_builtin_sym_end] = ACTIONS(1933), + [sym_identifier] = ACTIONS(1931), + [aux_sym_preproc_include_token1] = ACTIONS(1931), + [aux_sym_preproc_def_token1] = ACTIONS(1931), + [aux_sym_preproc_if_token1] = ACTIONS(1931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1931), + [sym_preproc_directive] = ACTIONS(1931), + [anon_sym_LPAREN2] = ACTIONS(1933), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_AMP_AMP] = ACTIONS(1933), + [anon_sym_AMP] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym___extension__] = ACTIONS(1931), + [anon_sym_typedef] = ACTIONS(1931), + [anon_sym_virtual] = ACTIONS(1931), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym___attribute__] = ACTIONS(1931), + [anon_sym___attribute] = ACTIONS(1931), + [anon_sym_COLON_COLON] = ACTIONS(1933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1933), + [anon_sym___declspec] = ACTIONS(1931), + [anon_sym___based] = ACTIONS(1931), + [anon_sym___cdecl] = ACTIONS(1931), + [anon_sym___clrcall] = ACTIONS(1931), + [anon_sym___stdcall] = ACTIONS(1931), + [anon_sym___fastcall] = ACTIONS(1931), + [anon_sym___thiscall] = ACTIONS(1931), + [anon_sym___vectorcall] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_static] = ACTIONS(1931), + [anon_sym_register] = ACTIONS(1931), + [anon_sym_inline] = ACTIONS(1931), + [anon_sym___inline] = ACTIONS(1931), + [anon_sym___inline__] = ACTIONS(1931), + [anon_sym___forceinline] = ACTIONS(1931), + [anon_sym_thread_local] = ACTIONS(1931), + [anon_sym___thread] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_constexpr] = ACTIONS(1931), + [anon_sym_volatile] = ACTIONS(1931), + [anon_sym_restrict] = ACTIONS(1931), + [anon_sym___restrict__] = ACTIONS(1931), + [anon_sym__Atomic] = ACTIONS(1931), + [anon_sym__Noreturn] = ACTIONS(1931), + [anon_sym_noreturn] = ACTIONS(1931), + [anon_sym__Nonnull] = ACTIONS(1931), + [anon_sym_mutable] = ACTIONS(1931), + [anon_sym_constinit] = ACTIONS(1931), + [anon_sym_consteval] = ACTIONS(1931), + [anon_sym_alignas] = ACTIONS(1931), + [anon_sym__Alignas] = ACTIONS(1931), + [sym_primitive_type] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [anon_sym_class] = ACTIONS(1931), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_union] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_else] = ACTIONS(1931), + [anon_sym_switch] = ACTIONS(1931), + [anon_sym_case] = ACTIONS(1931), + [anon_sym_default] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_goto] = ACTIONS(1931), + [anon_sym___try] = ACTIONS(1931), + [anon_sym___leave] = ACTIONS(1931), + [anon_sym_not] = ACTIONS(1931), + [anon_sym_compl] = ACTIONS(1931), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [anon_sym_PLUS_PLUS] = ACTIONS(1933), + [anon_sym_sizeof] = ACTIONS(1931), + [anon_sym___alignof__] = ACTIONS(1931), + [anon_sym___alignof] = ACTIONS(1931), + [anon_sym__alignof] = ACTIONS(1931), + [anon_sym_alignof] = ACTIONS(1931), + [anon_sym__Alignof] = ACTIONS(1931), + [anon_sym_offsetof] = ACTIONS(1931), + [anon_sym__Generic] = ACTIONS(1931), + [anon_sym_asm] = ACTIONS(1931), + [anon_sym___asm__] = ACTIONS(1931), + [anon_sym___asm] = ACTIONS(1931), + [sym_number_literal] = ACTIONS(1933), + [anon_sym_L_SQUOTE] = ACTIONS(1933), + [anon_sym_u_SQUOTE] = ACTIONS(1933), + [anon_sym_U_SQUOTE] = ACTIONS(1933), + [anon_sym_u8_SQUOTE] = ACTIONS(1933), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_L_DQUOTE] = ACTIONS(1933), + [anon_sym_u_DQUOTE] = ACTIONS(1933), + [anon_sym_U_DQUOTE] = ACTIONS(1933), + [anon_sym_u8_DQUOTE] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(1933), + [sym_true] = ACTIONS(1931), + [sym_false] = ACTIONS(1931), + [anon_sym_NULL] = ACTIONS(1931), + [anon_sym_nullptr] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1931), + [anon_sym_decltype] = ACTIONS(1931), + [anon_sym_explicit] = ACTIONS(1931), + [anon_sym_typename] = ACTIONS(1931), + [anon_sym_template] = ACTIONS(1931), + [anon_sym_operator] = ACTIONS(1931), + [anon_sym_try] = ACTIONS(1931), + [anon_sym_delete] = ACTIONS(1931), + [anon_sym_throw] = ACTIONS(1931), + [anon_sym_namespace] = ACTIONS(1931), + [anon_sym_using] = ACTIONS(1931), + [anon_sym_static_assert] = ACTIONS(1931), + [anon_sym_concept] = ACTIONS(1931), + [anon_sym_co_return] = ACTIONS(1931), + [anon_sym_co_yield] = ACTIONS(1931), + [anon_sym_catch] = ACTIONS(1961), + [anon_sym_R_DQUOTE] = ACTIONS(1933), + [anon_sym_LR_DQUOTE] = ACTIONS(1933), + [anon_sym_uR_DQUOTE] = ACTIONS(1933), + [anon_sym_UR_DQUOTE] = ACTIONS(1933), + [anon_sym_u8R_DQUOTE] = ACTIONS(1933), + [anon_sym_co_await] = ACTIONS(1931), + [anon_sym_new] = ACTIONS(1931), + [anon_sym_requires] = ACTIONS(1931), + [sym_this] = ACTIONS(1931), + [sym_alone_macro] = ACTIONS(1933), + [aux_sym_alone_macro_call_token1] = ACTIONS(1931), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_FORWARD] = ACTIONS(1931), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1931), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_PS_GET] = ACTIONS(1931), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1931), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1931), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1931), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1931), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1931), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1931), + [anon_sym_MOZ_COLD] = ACTIONS(1931), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1931), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1931), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1931), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1931), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1931), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1931), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1931), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1931), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1931), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1931), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1931), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1931), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1931), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_NONNULL] = ACTIONS(1931), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1931), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1931), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1931), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1931), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1931), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1931), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1931), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1931), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1931), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1931), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1931), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1931), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1931), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1931), + [anon_sym_MOZ_RAII] = ACTIONS(1931), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1931), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1931), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1931), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1931), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1931), + }, + [STATE(146)] = { + [sym_catch_clause] = STATE(146), + [aux_sym_constructor_try_statement_repeat1] = STATE(146), + [ts_builtin_sym_end] = ACTIONS(1926), + [sym_identifier] = ACTIONS(1924), + [aux_sym_preproc_include_token1] = ACTIONS(1924), + [aux_sym_preproc_def_token1] = ACTIONS(1924), + [aux_sym_preproc_if_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1924), + [sym_preproc_directive] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_AMP_AMP] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym___extension__] = ACTIONS(1924), + [anon_sym_typedef] = ACTIONS(1924), + [anon_sym_virtual] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym___attribute__] = ACTIONS(1924), + [anon_sym___attribute] = ACTIONS(1924), + [anon_sym_COLON_COLON] = ACTIONS(1926), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1926), + [anon_sym___declspec] = ACTIONS(1924), + [anon_sym___based] = ACTIONS(1924), + [anon_sym___cdecl] = ACTIONS(1924), + [anon_sym___clrcall] = ACTIONS(1924), + [anon_sym___stdcall] = ACTIONS(1924), + [anon_sym___fastcall] = ACTIONS(1924), + [anon_sym___thiscall] = ACTIONS(1924), + [anon_sym___vectorcall] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_signed] = ACTIONS(1924), + [anon_sym_unsigned] = ACTIONS(1924), + [anon_sym_long] = ACTIONS(1924), + [anon_sym_short] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_register] = ACTIONS(1924), + [anon_sym_inline] = ACTIONS(1924), + [anon_sym___inline] = ACTIONS(1924), + [anon_sym___inline__] = ACTIONS(1924), + [anon_sym___forceinline] = ACTIONS(1924), + [anon_sym_thread_local] = ACTIONS(1924), + [anon_sym___thread] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_constexpr] = ACTIONS(1924), + [anon_sym_volatile] = ACTIONS(1924), + [anon_sym_restrict] = ACTIONS(1924), + [anon_sym___restrict__] = ACTIONS(1924), + [anon_sym__Atomic] = ACTIONS(1924), + [anon_sym__Noreturn] = ACTIONS(1924), + [anon_sym_noreturn] = ACTIONS(1924), + [anon_sym__Nonnull] = ACTIONS(1924), + [anon_sym_mutable] = ACTIONS(1924), + [anon_sym_constinit] = ACTIONS(1924), + [anon_sym_consteval] = ACTIONS(1924), + [anon_sym_alignas] = ACTIONS(1924), + [anon_sym__Alignas] = ACTIONS(1924), + [sym_primitive_type] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_class] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_else] = ACTIONS(1924), + [anon_sym_switch] = ACTIONS(1924), + [anon_sym_case] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_do] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_goto] = ACTIONS(1924), + [anon_sym___try] = ACTIONS(1924), + [anon_sym___leave] = ACTIONS(1924), + [anon_sym_not] = ACTIONS(1924), + [anon_sym_compl] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1924), + [anon_sym___alignof__] = ACTIONS(1924), + [anon_sym___alignof] = ACTIONS(1924), + [anon_sym__alignof] = ACTIONS(1924), + [anon_sym_alignof] = ACTIONS(1924), + [anon_sym__Alignof] = ACTIONS(1924), + [anon_sym_offsetof] = ACTIONS(1924), + [anon_sym__Generic] = ACTIONS(1924), + [anon_sym_asm] = ACTIONS(1924), + [anon_sym___asm__] = ACTIONS(1924), + [anon_sym___asm] = ACTIONS(1924), + [sym_number_literal] = ACTIONS(1926), + [anon_sym_L_SQUOTE] = ACTIONS(1926), + [anon_sym_u_SQUOTE] = ACTIONS(1926), + [anon_sym_U_SQUOTE] = ACTIONS(1926), + [anon_sym_u8_SQUOTE] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_L_DQUOTE] = ACTIONS(1926), + [anon_sym_u_DQUOTE] = ACTIONS(1926), + [anon_sym_U_DQUOTE] = ACTIONS(1926), + [anon_sym_u8_DQUOTE] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [sym_true] = ACTIONS(1924), + [sym_false] = ACTIONS(1924), + [anon_sym_NULL] = ACTIONS(1924), + [anon_sym_nullptr] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1924), + [anon_sym_decltype] = ACTIONS(1924), + [anon_sym_explicit] = ACTIONS(1924), + [anon_sym_typename] = ACTIONS(1924), + [anon_sym_template] = ACTIONS(1924), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_try] = ACTIONS(1924), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_throw] = ACTIONS(1924), + [anon_sym_namespace] = ACTIONS(1924), + [anon_sym_using] = ACTIONS(1924), + [anon_sym_static_assert] = ACTIONS(1924), + [anon_sym_concept] = ACTIONS(1924), + [anon_sym_co_return] = ACTIONS(1924), + [anon_sym_co_yield] = ACTIONS(1924), + [anon_sym_catch] = ACTIONS(1963), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1924), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_requires] = ACTIONS(1924), + [sym_this] = ACTIONS(1924), + [sym_alone_macro] = ACTIONS(1926), + [aux_sym_alone_macro_call_token1] = ACTIONS(1924), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_FORWARD] = ACTIONS(1924), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_PS_GET] = ACTIONS(1924), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1924), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1924), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1924), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1924), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1924), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1924), + [anon_sym_MOZ_COLD] = ACTIONS(1924), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1924), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1924), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1924), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1924), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1924), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1924), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1924), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1924), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1924), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1924), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1924), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1924), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1924), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_NONNULL] = ACTIONS(1924), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1924), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1924), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1924), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1924), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1924), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1924), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1924), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1924), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1924), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1924), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1924), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1924), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1924), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1924), + [anon_sym_MOZ_RAII] = ACTIONS(1924), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1924), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1924), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1924), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1924), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1924), + }, + [STATE(147)] = { + [sym_identifier] = ACTIONS(1966), + [aux_sym_preproc_include_token1] = ACTIONS(1966), + [aux_sym_preproc_def_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token2] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1966), + [aux_sym_preproc_else_token1] = ACTIONS(1966), + [aux_sym_preproc_elif_token1] = ACTIONS(1966), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1966), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1966), + [sym_preproc_directive] = ACTIONS(1966), + [anon_sym_LPAREN2] = ACTIONS(1968), + [anon_sym_BANG] = ACTIONS(1968), + [anon_sym_TILDE] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym___extension__] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1966), + [anon_sym_virtual] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym___attribute__] = ACTIONS(1966), + [anon_sym___attribute] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1966), + [anon_sym___based] = ACTIONS(1966), + [anon_sym___cdecl] = ACTIONS(1966), + [anon_sym___clrcall] = ACTIONS(1966), + [anon_sym___stdcall] = ACTIONS(1966), + [anon_sym___fastcall] = ACTIONS(1966), + [anon_sym___thiscall] = ACTIONS(1966), + [anon_sym___vectorcall] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_register] = ACTIONS(1966), + [anon_sym_inline] = ACTIONS(1966), + [anon_sym___inline] = ACTIONS(1966), + [anon_sym___inline__] = ACTIONS(1966), + [anon_sym___forceinline] = ACTIONS(1966), + [anon_sym_thread_local] = ACTIONS(1966), + [anon_sym___thread] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_constexpr] = ACTIONS(1966), + [anon_sym_volatile] = ACTIONS(1966), + [anon_sym_restrict] = ACTIONS(1966), + [anon_sym___restrict__] = ACTIONS(1966), + [anon_sym__Atomic] = ACTIONS(1966), + [anon_sym__Noreturn] = ACTIONS(1966), + [anon_sym_noreturn] = ACTIONS(1966), + [anon_sym__Nonnull] = ACTIONS(1966), + [anon_sym_mutable] = ACTIONS(1966), + [anon_sym_constinit] = ACTIONS(1966), + [anon_sym_consteval] = ACTIONS(1966), + [anon_sym_alignas] = ACTIONS(1966), + [anon_sym__Alignas] = ACTIONS(1966), + [sym_primitive_type] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_class] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_else] = ACTIONS(1966), + [anon_sym_switch] = ACTIONS(1966), + [anon_sym_case] = ACTIONS(1966), + [anon_sym_default] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1966), + [anon_sym_do] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1966), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1966), + [anon_sym_continue] = ACTIONS(1966), + [anon_sym_goto] = ACTIONS(1966), + [anon_sym___try] = ACTIONS(1966), + [anon_sym___leave] = ACTIONS(1966), + [anon_sym_not] = ACTIONS(1966), + [anon_sym_compl] = ACTIONS(1966), + [anon_sym_DASH_DASH] = ACTIONS(1968), + [anon_sym_PLUS_PLUS] = ACTIONS(1968), + [anon_sym_sizeof] = ACTIONS(1966), + [anon_sym___alignof__] = ACTIONS(1966), + [anon_sym___alignof] = ACTIONS(1966), + [anon_sym__alignof] = ACTIONS(1966), + [anon_sym_alignof] = ACTIONS(1966), + [anon_sym__Alignof] = ACTIONS(1966), + [anon_sym_offsetof] = ACTIONS(1966), + [anon_sym__Generic] = ACTIONS(1966), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(1968), + [anon_sym_L_SQUOTE] = ACTIONS(1968), + [anon_sym_u_SQUOTE] = ACTIONS(1968), + [anon_sym_U_SQUOTE] = ACTIONS(1968), + [anon_sym_u8_SQUOTE] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(1968), + [anon_sym_L_DQUOTE] = ACTIONS(1968), + [anon_sym_u_DQUOTE] = ACTIONS(1968), + [anon_sym_U_DQUOTE] = ACTIONS(1968), + [anon_sym_u8_DQUOTE] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [sym_true] = ACTIONS(1966), + [sym_false] = ACTIONS(1966), + [anon_sym_NULL] = ACTIONS(1966), + [anon_sym_nullptr] = ACTIONS(1966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1966), + [anon_sym_decltype] = ACTIONS(1966), + [anon_sym_explicit] = ACTIONS(1966), + [anon_sym_typename] = ACTIONS(1966), + [anon_sym_template] = ACTIONS(1966), + [anon_sym_operator] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1966), + [anon_sym_delete] = ACTIONS(1966), + [anon_sym_throw] = ACTIONS(1966), + [anon_sym_namespace] = ACTIONS(1966), + [anon_sym_using] = ACTIONS(1966), + [anon_sym_static_assert] = ACTIONS(1966), + [anon_sym_concept] = ACTIONS(1966), + [anon_sym_co_return] = ACTIONS(1966), + [anon_sym_co_yield] = ACTIONS(1966), + [anon_sym_R_DQUOTE] = ACTIONS(1968), + [anon_sym_LR_DQUOTE] = ACTIONS(1968), + [anon_sym_uR_DQUOTE] = ACTIONS(1968), + [anon_sym_UR_DQUOTE] = ACTIONS(1968), + [anon_sym_u8R_DQUOTE] = ACTIONS(1968), + [anon_sym_co_await] = ACTIONS(1966), + [anon_sym_new] = ACTIONS(1966), + [anon_sym_requires] = ACTIONS(1966), + [sym_this] = ACTIONS(1966), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_FORWARD] = ACTIONS(1966), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1966), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_PS_GET] = ACTIONS(1966), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1966), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1966), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1966), + [anon_sym_MOZ_COLD] = ACTIONS(1966), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1966), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1966), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1966), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1966), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1966), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1966), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1966), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1966), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1966), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1966), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1966), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1966), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_RAII] = ACTIONS(1966), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1966), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1966), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1966), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1966), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1966), + }, + [STATE(148)] = { + [sym_identifier] = ACTIONS(1970), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token2] = ACTIONS(1970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1970), + [aux_sym_preproc_else_token1] = ACTIONS(1970), + [aux_sym_preproc_elif_token1] = ACTIONS(1970), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1970), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1970), + [sym_preproc_directive] = ACTIONS(1970), + [anon_sym_LPAREN2] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1970), + [anon_sym_PLUS] = ACTIONS(1970), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym___extension__] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1970), + [anon_sym_virtual] = ACTIONS(1970), + [anon_sym_extern] = ACTIONS(1970), + [anon_sym___attribute__] = ACTIONS(1970), + [anon_sym___attribute] = ACTIONS(1970), + [anon_sym_COLON_COLON] = ACTIONS(1972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1970), + [anon_sym___based] = ACTIONS(1970), + [anon_sym___cdecl] = ACTIONS(1970), + [anon_sym___clrcall] = ACTIONS(1970), + [anon_sym___stdcall] = ACTIONS(1970), + [anon_sym___fastcall] = ACTIONS(1970), + [anon_sym___thiscall] = ACTIONS(1970), + [anon_sym___vectorcall] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1970), + [anon_sym_unsigned] = ACTIONS(1970), + [anon_sym_long] = ACTIONS(1970), + [anon_sym_short] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1970), + [anon_sym_register] = ACTIONS(1970), + [anon_sym_inline] = ACTIONS(1970), + [anon_sym___inline] = ACTIONS(1970), + [anon_sym___inline__] = ACTIONS(1970), + [anon_sym___forceinline] = ACTIONS(1970), + [anon_sym_thread_local] = ACTIONS(1970), + [anon_sym___thread] = ACTIONS(1970), + [anon_sym_const] = ACTIONS(1970), + [anon_sym_constexpr] = ACTIONS(1970), + [anon_sym_volatile] = ACTIONS(1970), + [anon_sym_restrict] = ACTIONS(1970), + [anon_sym___restrict__] = ACTIONS(1970), + [anon_sym__Atomic] = ACTIONS(1970), + [anon_sym__Noreturn] = ACTIONS(1970), + [anon_sym_noreturn] = ACTIONS(1970), + [anon_sym__Nonnull] = ACTIONS(1970), + [anon_sym_mutable] = ACTIONS(1970), + [anon_sym_constinit] = ACTIONS(1970), + [anon_sym_consteval] = ACTIONS(1970), + [anon_sym_alignas] = ACTIONS(1970), + [anon_sym__Alignas] = ACTIONS(1970), + [sym_primitive_type] = ACTIONS(1970), + [anon_sym_enum] = ACTIONS(1970), + [anon_sym_class] = ACTIONS(1970), + [anon_sym_struct] = ACTIONS(1970), + [anon_sym_union] = ACTIONS(1970), + [anon_sym_if] = ACTIONS(1970), + [anon_sym_else] = ACTIONS(1970), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1970), + [anon_sym_default] = ACTIONS(1970), + [anon_sym_while] = ACTIONS(1970), + [anon_sym_do] = ACTIONS(1970), + [anon_sym_for] = ACTIONS(1970), + [anon_sym_return] = ACTIONS(1970), + [anon_sym_break] = ACTIONS(1970), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1970), + [anon_sym___try] = ACTIONS(1970), + [anon_sym___leave] = ACTIONS(1970), + [anon_sym_not] = ACTIONS(1970), + [anon_sym_compl] = ACTIONS(1970), + [anon_sym_DASH_DASH] = ACTIONS(1972), + [anon_sym_PLUS_PLUS] = ACTIONS(1972), + [anon_sym_sizeof] = ACTIONS(1970), + [anon_sym___alignof__] = ACTIONS(1970), + [anon_sym___alignof] = ACTIONS(1970), + [anon_sym__alignof] = ACTIONS(1970), + [anon_sym_alignof] = ACTIONS(1970), + [anon_sym__Alignof] = ACTIONS(1970), + [anon_sym_offsetof] = ACTIONS(1970), + [anon_sym__Generic] = ACTIONS(1970), + [anon_sym_asm] = ACTIONS(1970), + [anon_sym___asm__] = ACTIONS(1970), + [anon_sym___asm] = ACTIONS(1970), + [sym_number_literal] = ACTIONS(1972), + [anon_sym_L_SQUOTE] = ACTIONS(1972), + [anon_sym_u_SQUOTE] = ACTIONS(1972), + [anon_sym_U_SQUOTE] = ACTIONS(1972), + [anon_sym_u8_SQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_L_DQUOTE] = ACTIONS(1972), + [anon_sym_u_DQUOTE] = ACTIONS(1972), + [anon_sym_U_DQUOTE] = ACTIONS(1972), + [anon_sym_u8_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), + [sym_true] = ACTIONS(1970), + [sym_false] = ACTIONS(1970), + [anon_sym_NULL] = ACTIONS(1970), + [anon_sym_nullptr] = ACTIONS(1970), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1970), + [anon_sym_decltype] = ACTIONS(1970), + [anon_sym_explicit] = ACTIONS(1970), + [anon_sym_typename] = ACTIONS(1970), + [anon_sym_template] = ACTIONS(1970), + [anon_sym_operator] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1970), + [anon_sym_delete] = ACTIONS(1970), + [anon_sym_throw] = ACTIONS(1970), + [anon_sym_namespace] = ACTIONS(1970), + [anon_sym_using] = ACTIONS(1970), + [anon_sym_static_assert] = ACTIONS(1970), + [anon_sym_concept] = ACTIONS(1970), + [anon_sym_co_return] = ACTIONS(1970), + [anon_sym_co_yield] = ACTIONS(1970), + [anon_sym_R_DQUOTE] = ACTIONS(1972), + [anon_sym_LR_DQUOTE] = ACTIONS(1972), + [anon_sym_uR_DQUOTE] = ACTIONS(1972), + [anon_sym_UR_DQUOTE] = ACTIONS(1972), + [anon_sym_u8R_DQUOTE] = ACTIONS(1972), + [anon_sym_co_await] = ACTIONS(1970), + [anon_sym_new] = ACTIONS(1970), + [anon_sym_requires] = ACTIONS(1970), + [sym_this] = ACTIONS(1970), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_FORWARD] = ACTIONS(1970), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1970), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_PS_GET] = ACTIONS(1970), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1970), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1970), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1970), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1970), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1970), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1970), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1970), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1970), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1970), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1970), + [anon_sym_MOZ_COLD] = ACTIONS(1970), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1970), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1970), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1970), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1970), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1970), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1970), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1970), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1970), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1970), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1970), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1970), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1970), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1970), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1970), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1970), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1970), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1970), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1970), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1970), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1970), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_NONNULL] = ACTIONS(1970), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1970), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1970), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1970), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1970), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1970), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_NORETURN] = ACTIONS(1970), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1970), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1970), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1970), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1970), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1970), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1970), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1970), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1970), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1970), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1970), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1970), + [anon_sym_MOZ_RAII] = ACTIONS(1970), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1970), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1970), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1970), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1970), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1970), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1970), + }, + [STATE(149)] = { + [sym_identifier] = ACTIONS(1974), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token2] = ACTIONS(1974), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1974), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1974), + [aux_sym_preproc_else_token1] = ACTIONS(1974), + [aux_sym_preproc_elif_token1] = ACTIONS(1974), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1974), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1974), + [sym_preproc_directive] = ACTIONS(1974), + [anon_sym_LPAREN2] = ACTIONS(1976), + [anon_sym_BANG] = ACTIONS(1976), + [anon_sym_TILDE] = ACTIONS(1976), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP_AMP] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1974), + [anon_sym_virtual] = ACTIONS(1974), + [anon_sym_extern] = ACTIONS(1974), + [anon_sym___attribute__] = ACTIONS(1974), + [anon_sym___attribute] = ACTIONS(1974), + [anon_sym_COLON_COLON] = ACTIONS(1976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1974), + [anon_sym___based] = ACTIONS(1974), + [anon_sym___cdecl] = ACTIONS(1974), + [anon_sym___clrcall] = ACTIONS(1974), + [anon_sym___stdcall] = ACTIONS(1974), + [anon_sym___fastcall] = ACTIONS(1974), + [anon_sym___thiscall] = ACTIONS(1974), + [anon_sym___vectorcall] = ACTIONS(1974), + [anon_sym_LBRACE] = ACTIONS(1976), + [anon_sym_signed] = ACTIONS(1974), + [anon_sym_unsigned] = ACTIONS(1974), + [anon_sym_long] = ACTIONS(1974), + [anon_sym_short] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_register] = ACTIONS(1974), + [anon_sym_inline] = ACTIONS(1974), + [anon_sym___inline] = ACTIONS(1974), + [anon_sym___inline__] = ACTIONS(1974), + [anon_sym___forceinline] = ACTIONS(1974), + [anon_sym_thread_local] = ACTIONS(1974), + [anon_sym___thread] = ACTIONS(1974), + [anon_sym_const] = ACTIONS(1974), + [anon_sym_constexpr] = ACTIONS(1974), + [anon_sym_volatile] = ACTIONS(1974), + [anon_sym_restrict] = ACTIONS(1974), + [anon_sym___restrict__] = ACTIONS(1974), + [anon_sym__Atomic] = ACTIONS(1974), + [anon_sym__Noreturn] = ACTIONS(1974), + [anon_sym_noreturn] = ACTIONS(1974), + [anon_sym__Nonnull] = ACTIONS(1974), + [anon_sym_mutable] = ACTIONS(1974), + [anon_sym_constinit] = ACTIONS(1974), + [anon_sym_consteval] = ACTIONS(1974), + [anon_sym_alignas] = ACTIONS(1974), + [anon_sym__Alignas] = ACTIONS(1974), + [sym_primitive_type] = ACTIONS(1974), + [anon_sym_enum] = ACTIONS(1974), + [anon_sym_class] = ACTIONS(1974), + [anon_sym_struct] = ACTIONS(1974), + [anon_sym_union] = ACTIONS(1974), + [anon_sym_if] = ACTIONS(1974), + [anon_sym_else] = ACTIONS(1974), + [anon_sym_switch] = ACTIONS(1974), + [anon_sym_case] = ACTIONS(1974), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1974), + [anon_sym_do] = ACTIONS(1974), + [anon_sym_for] = ACTIONS(1974), + [anon_sym_return] = ACTIONS(1974), + [anon_sym_break] = ACTIONS(1974), + [anon_sym_continue] = ACTIONS(1974), + [anon_sym_goto] = ACTIONS(1974), + [anon_sym___try] = ACTIONS(1974), + [anon_sym___leave] = ACTIONS(1974), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1976), + [anon_sym_PLUS_PLUS] = ACTIONS(1976), + [anon_sym_sizeof] = ACTIONS(1974), + [anon_sym___alignof__] = ACTIONS(1974), + [anon_sym___alignof] = ACTIONS(1974), + [anon_sym__alignof] = ACTIONS(1974), + [anon_sym_alignof] = ACTIONS(1974), + [anon_sym__Alignof] = ACTIONS(1974), + [anon_sym_offsetof] = ACTIONS(1974), + [anon_sym__Generic] = ACTIONS(1974), + [anon_sym_asm] = ACTIONS(1974), + [anon_sym___asm__] = ACTIONS(1974), + [anon_sym___asm] = ACTIONS(1974), + [sym_number_literal] = ACTIONS(1976), + [anon_sym_L_SQUOTE] = ACTIONS(1976), + [anon_sym_u_SQUOTE] = ACTIONS(1976), + [anon_sym_U_SQUOTE] = ACTIONS(1976), + [anon_sym_u8_SQUOTE] = ACTIONS(1976), + [anon_sym_SQUOTE] = ACTIONS(1976), + [anon_sym_L_DQUOTE] = ACTIONS(1976), + [anon_sym_u_DQUOTE] = ACTIONS(1976), + [anon_sym_U_DQUOTE] = ACTIONS(1976), + [anon_sym_u8_DQUOTE] = ACTIONS(1976), + [anon_sym_DQUOTE] = ACTIONS(1976), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1974), + [anon_sym_nullptr] = ACTIONS(1974), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1974), + [anon_sym_decltype] = ACTIONS(1974), + [anon_sym_explicit] = ACTIONS(1974), + [anon_sym_typename] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1974), + [anon_sym_operator] = ACTIONS(1974), + [anon_sym_try] = ACTIONS(1974), + [anon_sym_delete] = ACTIONS(1974), + [anon_sym_throw] = ACTIONS(1974), + [anon_sym_namespace] = ACTIONS(1974), + [anon_sym_using] = ACTIONS(1974), + [anon_sym_static_assert] = ACTIONS(1974), + [anon_sym_concept] = ACTIONS(1974), + [anon_sym_co_return] = ACTIONS(1974), + [anon_sym_co_yield] = ACTIONS(1974), + [anon_sym_R_DQUOTE] = ACTIONS(1976), + [anon_sym_LR_DQUOTE] = ACTIONS(1976), + [anon_sym_uR_DQUOTE] = ACTIONS(1976), + [anon_sym_UR_DQUOTE] = ACTIONS(1976), + [anon_sym_u8R_DQUOTE] = ACTIONS(1976), + [anon_sym_co_await] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1974), + [anon_sym_requires] = ACTIONS(1974), + [sym_this] = ACTIONS(1974), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_FORWARD] = ACTIONS(1974), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1974), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_PS_GET] = ACTIONS(1974), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1974), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1974), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1974), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1974), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1974), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1974), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1974), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1974), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1974), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1974), + [anon_sym_MOZ_COLD] = ACTIONS(1974), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1974), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1974), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1974), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1974), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1974), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1974), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1974), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1974), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1974), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1974), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1974), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1974), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1974), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1974), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1974), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1974), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1974), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1974), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1974), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1974), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_NONNULL] = ACTIONS(1974), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1974), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1974), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1974), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1974), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1974), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_NORETURN] = ACTIONS(1974), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1974), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1974), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1974), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1974), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1974), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1974), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1974), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1974), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1974), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1974), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1974), + [anon_sym_MOZ_RAII] = ACTIONS(1974), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1974), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1974), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1974), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1974), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1974), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1974), + }, + [STATE(150)] = { [sym_identifier] = ACTIONS(1875), [aux_sym_preproc_include_token1] = ACTIONS(1875), [aux_sym_preproc_def_token1] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1978), [aux_sym_preproc_if_token1] = ACTIONS(1875), [aux_sym_preproc_if_token2] = ACTIONS(1875), [aux_sym_preproc_ifdef_token1] = ACTIONS(1875), [aux_sym_preproc_ifdef_token2] = ACTIONS(1875), + [aux_sym_preproc_else_token1] = ACTIONS(1875), + [aux_sym_preproc_elif_token1] = ACTIONS(1875), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1875), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1875), [sym_preproc_directive] = ACTIONS(1875), - [anon_sym_LPAREN2] = ACTIONS(1877), - [anon_sym_BANG] = ACTIONS(1877), - [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), [anon_sym_DASH] = ACTIONS(1875), [anon_sym_PLUS] = ACTIONS(1875), - [anon_sym_STAR] = ACTIONS(1877), - [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), [anon_sym_AMP] = ACTIONS(1875), - [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym___extension__] = ACTIONS(1875), [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_virtual] = ACTIONS(1875), [anon_sym_extern] = ACTIONS(1875), [anon_sym___attribute__] = ACTIONS(1875), - [anon_sym_COLON_COLON] = ACTIONS(1877), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1877), + [anon_sym___attribute] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), [anon_sym___declspec] = ACTIONS(1875), [anon_sym___based] = ACTIONS(1875), [anon_sym___cdecl] = ACTIONS(1875), @@ -152746,22 +88817,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1875), [anon_sym___thiscall] = ACTIONS(1875), [anon_sym___vectorcall] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), [anon_sym_LBRACK] = ACTIONS(1875), [anon_sym_static] = ACTIONS(1875), [anon_sym_register] = ACTIONS(1875), [anon_sym_inline] = ACTIONS(1875), + [anon_sym___inline] = ACTIONS(1875), + [anon_sym___inline__] = ACTIONS(1875), + [anon_sym___forceinline] = ACTIONS(1875), [anon_sym_thread_local] = ACTIONS(1875), + [anon_sym___thread] = ACTIONS(1875), [anon_sym_const] = ACTIONS(1875), + [anon_sym_constexpr] = ACTIONS(1875), [anon_sym_volatile] = ACTIONS(1875), [anon_sym_restrict] = ACTIONS(1875), + [anon_sym___restrict__] = ACTIONS(1875), [anon_sym__Atomic] = ACTIONS(1875), + [anon_sym__Noreturn] = ACTIONS(1875), + [anon_sym_noreturn] = ACTIONS(1875), + [anon_sym__Nonnull] = ACTIONS(1875), [anon_sym_mutable] = ACTIONS(1875), - [anon_sym_constexpr] = ACTIONS(1875), - [anon_sym_signed] = ACTIONS(1875), - [anon_sym_unsigned] = ACTIONS(1875), - [anon_sym_long] = ACTIONS(1875), - [anon_sym_short] = ACTIONS(1875), + [anon_sym_constinit] = ACTIONS(1875), + [anon_sym_consteval] = ACTIONS(1875), + [anon_sym_alignas] = ACTIONS(1875), + [anon_sym__Alignas] = ACTIONS(1875), [sym_primitive_type] = ACTIONS(1875), [anon_sym_enum] = ACTIONS(1875), [anon_sym_class] = ACTIONS(1875), @@ -152778,45 +88861,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1875), [anon_sym_continue] = ACTIONS(1875), [anon_sym_goto] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym___try] = ACTIONS(1875), + [anon_sym___leave] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(1875), + [anon_sym_compl] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1873), [anon_sym_sizeof] = ACTIONS(1875), - [sym_number_literal] = ACTIONS(1877), - [anon_sym_L_SQUOTE] = ACTIONS(1877), - [anon_sym_u_SQUOTE] = ACTIONS(1877), - [anon_sym_U_SQUOTE] = ACTIONS(1877), - [anon_sym_u8_SQUOTE] = ACTIONS(1877), - [anon_sym_SQUOTE] = ACTIONS(1877), - [anon_sym_L_DQUOTE] = ACTIONS(1877), - [anon_sym_u_DQUOTE] = ACTIONS(1877), - [anon_sym_U_DQUOTE] = ACTIONS(1877), - [anon_sym_u8_DQUOTE] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym___alignof__] = ACTIONS(1875), + [anon_sym___alignof] = ACTIONS(1875), + [anon_sym__alignof] = ACTIONS(1875), + [anon_sym_alignof] = ACTIONS(1875), + [anon_sym__Alignof] = ACTIONS(1875), + [anon_sym_offsetof] = ACTIONS(1875), + [anon_sym__Generic] = ACTIONS(1875), + [anon_sym_asm] = ACTIONS(1875), + [anon_sym___asm__] = ACTIONS(1875), + [anon_sym___asm] = ACTIONS(1875), + [sym_number_literal] = ACTIONS(1873), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1873), + [anon_sym_u_DQUOTE] = ACTIONS(1873), + [anon_sym_U_DQUOTE] = ACTIONS(1873), + [anon_sym_u8_DQUOTE] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), [sym_true] = ACTIONS(1875), [sym_false] = ACTIONS(1875), - [sym_null] = ACTIONS(1875), + [anon_sym_NULL] = ACTIONS(1875), + [anon_sym_nullptr] = ACTIONS(1875), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1875), [anon_sym_decltype] = ACTIONS(1875), - [anon_sym_virtual] = ACTIONS(1875), [anon_sym_explicit] = ACTIONS(1875), - [sym_auto] = ACTIONS(1875), [anon_sym_typename] = ACTIONS(1875), [anon_sym_template] = ACTIONS(1875), [anon_sym_operator] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), [anon_sym_delete] = ACTIONS(1875), [anon_sym_throw] = ACTIONS(1875), [anon_sym_namespace] = ACTIONS(1875), [anon_sym_using] = ACTIONS(1875), [anon_sym_static_assert] = ACTIONS(1875), + [anon_sym_concept] = ACTIONS(1875), [anon_sym_co_return] = ACTIONS(1875), [anon_sym_co_yield] = ACTIONS(1875), - [anon_sym_try] = ACTIONS(1875), + [anon_sym_R_DQUOTE] = ACTIONS(1873), + [anon_sym_LR_DQUOTE] = ACTIONS(1873), + [anon_sym_uR_DQUOTE] = ACTIONS(1873), + [anon_sym_UR_DQUOTE] = ACTIONS(1873), + [anon_sym_u8R_DQUOTE] = ACTIONS(1873), [anon_sym_co_await] = ACTIONS(1875), [anon_sym_new] = ACTIONS(1875), + [anon_sym_requires] = ACTIONS(1875), [sym_this] = ACTIONS(1875), - [sym_nullptr] = ACTIONS(1875), - [sym_alone_macro] = ACTIONS(1877), - [aux_sym_alone_macro_call_token1] = ACTIONS(1875), [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1875), [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1875), [anon_sym_FORWARD] = ACTIONS(1875), @@ -152903,6207 +89004,10596 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1875), [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), - [sym_raw_string_literal] = ACTIONS(1877), - }, - [594] = { - [ts_builtin_sym_end] = ACTIONS(1757), - [sym_identifier] = ACTIONS(1755), - [aux_sym_preproc_include_token1] = ACTIONS(1755), - [aux_sym_preproc_def_token1] = ACTIONS(1755), - [aux_sym_preproc_if_token1] = ACTIONS(1755), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1755), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1755), - [sym_preproc_directive] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_typedef] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym___attribute__] = ACTIONS(1755), - [anon_sym_COLON_COLON] = ACTIONS(1757), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1757), - [anon_sym___declspec] = ACTIONS(1755), - [anon_sym___based] = ACTIONS(1755), - [anon_sym___cdecl] = ACTIONS(1755), - [anon_sym___clrcall] = ACTIONS(1755), - [anon_sym___stdcall] = ACTIONS(1755), - [anon_sym___fastcall] = ACTIONS(1755), - [anon_sym___thiscall] = ACTIONS(1755), - [anon_sym___vectorcall] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1755), - [anon_sym_static] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_inline] = ACTIONS(1755), - [anon_sym_thread_local] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [anon_sym_volatile] = ACTIONS(1755), - [anon_sym_restrict] = ACTIONS(1755), - [anon_sym__Atomic] = ACTIONS(1755), - [anon_sym_mutable] = ACTIONS(1755), - [anon_sym_constexpr] = ACTIONS(1755), - [anon_sym_signed] = ACTIONS(1755), - [anon_sym_unsigned] = ACTIONS(1755), - [anon_sym_long] = ACTIONS(1755), - [anon_sym_short] = ACTIONS(1755), - [sym_primitive_type] = ACTIONS(1755), - [anon_sym_enum] = ACTIONS(1755), - [anon_sym_class] = ACTIONS(1755), - [anon_sym_struct] = ACTIONS(1755), - [anon_sym_union] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1755), - [anon_sym_case] = ACTIONS(1755), - [anon_sym_default] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_goto] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_sizeof] = ACTIONS(1755), - [sym_number_literal] = ACTIONS(1757), - [anon_sym_L_SQUOTE] = ACTIONS(1757), - [anon_sym_u_SQUOTE] = ACTIONS(1757), - [anon_sym_U_SQUOTE] = ACTIONS(1757), - [anon_sym_u8_SQUOTE] = ACTIONS(1757), - [anon_sym_SQUOTE] = ACTIONS(1757), - [anon_sym_L_DQUOTE] = ACTIONS(1757), - [anon_sym_u_DQUOTE] = ACTIONS(1757), - [anon_sym_U_DQUOTE] = ACTIONS(1757), - [anon_sym_u8_DQUOTE] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym_true] = ACTIONS(1755), - [sym_false] = ACTIONS(1755), - [sym_null] = ACTIONS(1755), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1755), - [anon_sym_virtual] = ACTIONS(1755), - [anon_sym_explicit] = ACTIONS(1755), - [sym_auto] = ACTIONS(1755), - [anon_sym_typename] = ACTIONS(1755), - [anon_sym_template] = ACTIONS(1755), - [anon_sym_operator] = ACTIONS(1755), - [anon_sym_delete] = ACTIONS(1755), - [anon_sym_throw] = ACTIONS(1755), - [anon_sym_namespace] = ACTIONS(1755), - [anon_sym_using] = ACTIONS(1755), - [anon_sym_static_assert] = ACTIONS(1755), - [anon_sym_co_return] = ACTIONS(1755), - [anon_sym_co_yield] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_co_await] = ACTIONS(1755), - [anon_sym_new] = ACTIONS(1755), - [sym_this] = ACTIONS(1755), - [sym_nullptr] = ACTIONS(1755), - [sym_alone_macro] = ACTIONS(1757), - [aux_sym_alone_macro_call_token1] = ACTIONS(1755), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1755), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_FORWARD] = ACTIONS(1755), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1755), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1755), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1755), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1755), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_PS_GET] = ACTIONS(1755), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1755), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1755), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1755), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1755), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1755), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1755), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1755), - [anon_sym_MOZ_COLD] = ACTIONS(1755), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1755), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1755), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1755), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1755), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1755), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1755), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1755), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1755), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1755), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1755), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1755), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1755), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1755), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_NONNULL] = ACTIONS(1755), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1755), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1755), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1755), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1755), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1755), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1755), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1755), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1755), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1755), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1755), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1755), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1755), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1755), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1755), - [anon_sym_MOZ_RAII] = ACTIONS(1755), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1755), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1755), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1755), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1755), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1755), - [sym_raw_string_literal] = ACTIONS(1757), - }, - [595] = { - [sym_identifier] = ACTIONS(1787), - [aux_sym_preproc_include_token1] = ACTIONS(1787), - [aux_sym_preproc_def_token1] = ACTIONS(1787), - [aux_sym_preproc_if_token1] = ACTIONS(1787), - [aux_sym_preproc_if_token2] = ACTIONS(1787), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1787), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1787), - [sym_preproc_directive] = ACTIONS(1787), - [anon_sym_LPAREN2] = ACTIONS(1789), - [anon_sym_BANG] = ACTIONS(1789), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_AMP_AMP] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1789), - [anon_sym_typedef] = ACTIONS(1787), - [anon_sym_extern] = ACTIONS(1787), - [anon_sym___attribute__] = ACTIONS(1787), - [anon_sym_COLON_COLON] = ACTIONS(1789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), - [anon_sym___declspec] = ACTIONS(1787), - [anon_sym___based] = ACTIONS(1787), - [anon_sym___cdecl] = ACTIONS(1787), - [anon_sym___clrcall] = ACTIONS(1787), - [anon_sym___stdcall] = ACTIONS(1787), - [anon_sym___fastcall] = ACTIONS(1787), - [anon_sym___thiscall] = ACTIONS(1787), - [anon_sym___vectorcall] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_static] = ACTIONS(1787), - [anon_sym_register] = ACTIONS(1787), - [anon_sym_inline] = ACTIONS(1787), - [anon_sym_thread_local] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_volatile] = ACTIONS(1787), - [anon_sym_restrict] = ACTIONS(1787), - [anon_sym__Atomic] = ACTIONS(1787), - [anon_sym_mutable] = ACTIONS(1787), - [anon_sym_constexpr] = ACTIONS(1787), - [anon_sym_signed] = ACTIONS(1787), - [anon_sym_unsigned] = ACTIONS(1787), - [anon_sym_long] = ACTIONS(1787), - [anon_sym_short] = ACTIONS(1787), - [sym_primitive_type] = ACTIONS(1787), - [anon_sym_enum] = ACTIONS(1787), - [anon_sym_class] = ACTIONS(1787), - [anon_sym_struct] = ACTIONS(1787), - [anon_sym_union] = ACTIONS(1787), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_switch] = ACTIONS(1787), - [anon_sym_case] = ACTIONS(1787), - [anon_sym_default] = ACTIONS(1787), - [anon_sym_while] = ACTIONS(1787), - [anon_sym_do] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_goto] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1787), - [sym_number_literal] = ACTIONS(1789), - [anon_sym_L_SQUOTE] = ACTIONS(1789), - [anon_sym_u_SQUOTE] = ACTIONS(1789), - [anon_sym_U_SQUOTE] = ACTIONS(1789), - [anon_sym_u8_SQUOTE] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [anon_sym_L_DQUOTE] = ACTIONS(1789), - [anon_sym_u_DQUOTE] = ACTIONS(1789), - [anon_sym_U_DQUOTE] = ACTIONS(1789), - [anon_sym_u8_DQUOTE] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [sym_true] = ACTIONS(1787), - [sym_false] = ACTIONS(1787), - [sym_null] = ACTIONS(1787), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1787), - [anon_sym_virtual] = ACTIONS(1787), - [anon_sym_explicit] = ACTIONS(1787), - [sym_auto] = ACTIONS(1787), - [anon_sym_typename] = ACTIONS(1787), - [anon_sym_template] = ACTIONS(1787), - [anon_sym_operator] = ACTIONS(1787), - [anon_sym_delete] = ACTIONS(1787), - [anon_sym_throw] = ACTIONS(1787), - [anon_sym_namespace] = ACTIONS(1787), - [anon_sym_using] = ACTIONS(1787), - [anon_sym_static_assert] = ACTIONS(1787), - [anon_sym_co_return] = ACTIONS(1787), - [anon_sym_co_yield] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1787), - [anon_sym_co_await] = ACTIONS(1787), - [anon_sym_new] = ACTIONS(1787), - [sym_this] = ACTIONS(1787), - [sym_nullptr] = ACTIONS(1787), - [sym_alone_macro] = ACTIONS(1789), - [aux_sym_alone_macro_call_token1] = ACTIONS(1787), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1787), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_FORWARD] = ACTIONS(1787), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1787), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1787), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1787), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1787), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_PS_GET] = ACTIONS(1787), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1787), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1787), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1787), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1787), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1787), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1787), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1787), - [anon_sym_MOZ_COLD] = ACTIONS(1787), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1787), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1787), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1787), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1787), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1787), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1787), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1787), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1787), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1787), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1787), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1787), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1787), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1787), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_NONNULL] = ACTIONS(1787), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1787), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1787), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1787), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1787), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1787), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1787), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1787), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1787), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1787), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1787), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1787), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1787), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1787), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1787), - [anon_sym_MOZ_RAII] = ACTIONS(1787), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1787), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1787), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1787), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1787), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1787), - [sym_raw_string_literal] = ACTIONS(1789), - }, - [596] = { - [sym_identifier] = ACTIONS(1879), - [aux_sym_preproc_include_token1] = ACTIONS(1879), - [aux_sym_preproc_def_token1] = ACTIONS(1879), - [aux_sym_preproc_if_token1] = ACTIONS(1879), - [aux_sym_preproc_if_token2] = ACTIONS(1879), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1879), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1879), - [sym_preproc_directive] = ACTIONS(1879), - [anon_sym_LPAREN2] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_typedef] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym___attribute__] = ACTIONS(1879), - [anon_sym_COLON_COLON] = ACTIONS(1881), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1881), - [anon_sym___declspec] = ACTIONS(1879), - [anon_sym___based] = ACTIONS(1879), - [anon_sym___cdecl] = ACTIONS(1879), - [anon_sym___clrcall] = ACTIONS(1879), - [anon_sym___stdcall] = ACTIONS(1879), - [anon_sym___fastcall] = ACTIONS(1879), - [anon_sym___thiscall] = ACTIONS(1879), - [anon_sym___vectorcall] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_static] = ACTIONS(1879), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_inline] = ACTIONS(1879), - [anon_sym_thread_local] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [anon_sym_volatile] = ACTIONS(1879), - [anon_sym_restrict] = ACTIONS(1879), - [anon_sym__Atomic] = ACTIONS(1879), - [anon_sym_mutable] = ACTIONS(1879), - [anon_sym_constexpr] = ACTIONS(1879), - [anon_sym_signed] = ACTIONS(1879), - [anon_sym_unsigned] = ACTIONS(1879), - [anon_sym_long] = ACTIONS(1879), - [anon_sym_short] = ACTIONS(1879), - [sym_primitive_type] = ACTIONS(1879), - [anon_sym_enum] = ACTIONS(1879), - [anon_sym_class] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1879), - [anon_sym_union] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_switch] = ACTIONS(1879), - [anon_sym_case] = ACTIONS(1879), - [anon_sym_default] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_goto] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_sizeof] = ACTIONS(1879), - [sym_number_literal] = ACTIONS(1881), - [anon_sym_L_SQUOTE] = ACTIONS(1881), - [anon_sym_u_SQUOTE] = ACTIONS(1881), - [anon_sym_U_SQUOTE] = ACTIONS(1881), - [anon_sym_u8_SQUOTE] = ACTIONS(1881), - [anon_sym_SQUOTE] = ACTIONS(1881), - [anon_sym_L_DQUOTE] = ACTIONS(1881), - [anon_sym_u_DQUOTE] = ACTIONS(1881), - [anon_sym_U_DQUOTE] = ACTIONS(1881), - [anon_sym_u8_DQUOTE] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym_true] = ACTIONS(1879), - [sym_false] = ACTIONS(1879), - [sym_null] = ACTIONS(1879), + }, + [STATE(151)] = { + [sym_identifier] = ACTIONS(1980), + [aux_sym_preproc_include_token1] = ACTIONS(1980), + [aux_sym_preproc_def_token1] = ACTIONS(1980), + [aux_sym_preproc_if_token1] = ACTIONS(1980), + [aux_sym_preproc_if_token2] = ACTIONS(1980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1980), + [aux_sym_preproc_else_token1] = ACTIONS(1980), + [aux_sym_preproc_elif_token1] = ACTIONS(1980), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1980), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1980), + [sym_preproc_directive] = ACTIONS(1980), + [anon_sym_LPAREN2] = ACTIONS(1982), + [anon_sym_BANG] = ACTIONS(1982), + [anon_sym_TILDE] = ACTIONS(1982), + [anon_sym_DASH] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(1980), + [anon_sym_STAR] = ACTIONS(1982), + [anon_sym_AMP_AMP] = ACTIONS(1982), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym___extension__] = ACTIONS(1980), + [anon_sym_typedef] = ACTIONS(1980), + [anon_sym_virtual] = ACTIONS(1980), + [anon_sym_extern] = ACTIONS(1980), + [anon_sym___attribute__] = ACTIONS(1980), + [anon_sym___attribute] = ACTIONS(1980), + [anon_sym_COLON_COLON] = ACTIONS(1982), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1982), + [anon_sym___declspec] = ACTIONS(1980), + [anon_sym___based] = ACTIONS(1980), + [anon_sym___cdecl] = ACTIONS(1980), + [anon_sym___clrcall] = ACTIONS(1980), + [anon_sym___stdcall] = ACTIONS(1980), + [anon_sym___fastcall] = ACTIONS(1980), + [anon_sym___thiscall] = ACTIONS(1980), + [anon_sym___vectorcall] = ACTIONS(1980), + [anon_sym_LBRACE] = ACTIONS(1982), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_static] = ACTIONS(1980), + [anon_sym_register] = ACTIONS(1980), + [anon_sym_inline] = ACTIONS(1980), + [anon_sym___inline] = ACTIONS(1980), + [anon_sym___inline__] = ACTIONS(1980), + [anon_sym___forceinline] = ACTIONS(1980), + [anon_sym_thread_local] = ACTIONS(1980), + [anon_sym___thread] = ACTIONS(1980), + [anon_sym_const] = ACTIONS(1980), + [anon_sym_constexpr] = ACTIONS(1980), + [anon_sym_volatile] = ACTIONS(1980), + [anon_sym_restrict] = ACTIONS(1980), + [anon_sym___restrict__] = ACTIONS(1980), + [anon_sym__Atomic] = ACTIONS(1980), + [anon_sym__Noreturn] = ACTIONS(1980), + [anon_sym_noreturn] = ACTIONS(1980), + [anon_sym__Nonnull] = ACTIONS(1980), + [anon_sym_mutable] = ACTIONS(1980), + [anon_sym_constinit] = ACTIONS(1980), + [anon_sym_consteval] = ACTIONS(1980), + [anon_sym_alignas] = ACTIONS(1980), + [anon_sym__Alignas] = ACTIONS(1980), + [sym_primitive_type] = ACTIONS(1980), + [anon_sym_enum] = ACTIONS(1980), + [anon_sym_class] = ACTIONS(1980), + [anon_sym_struct] = ACTIONS(1980), + [anon_sym_union] = ACTIONS(1980), + [anon_sym_if] = ACTIONS(1980), + [anon_sym_else] = ACTIONS(1980), + [anon_sym_switch] = ACTIONS(1980), + [anon_sym_case] = ACTIONS(1980), + [anon_sym_default] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [anon_sym_do] = ACTIONS(1980), + [anon_sym_for] = ACTIONS(1980), + [anon_sym_return] = ACTIONS(1980), + [anon_sym_break] = ACTIONS(1980), + [anon_sym_continue] = ACTIONS(1980), + [anon_sym_goto] = ACTIONS(1980), + [anon_sym___try] = ACTIONS(1980), + [anon_sym___leave] = ACTIONS(1980), + [anon_sym_not] = ACTIONS(1980), + [anon_sym_compl] = ACTIONS(1980), + [anon_sym_DASH_DASH] = ACTIONS(1982), + [anon_sym_PLUS_PLUS] = ACTIONS(1982), + [anon_sym_sizeof] = ACTIONS(1980), + [anon_sym___alignof__] = ACTIONS(1980), + [anon_sym___alignof] = ACTIONS(1980), + [anon_sym__alignof] = ACTIONS(1980), + [anon_sym_alignof] = ACTIONS(1980), + [anon_sym__Alignof] = ACTIONS(1980), + [anon_sym_offsetof] = ACTIONS(1980), + [anon_sym__Generic] = ACTIONS(1980), + [anon_sym_asm] = ACTIONS(1980), + [anon_sym___asm__] = ACTIONS(1980), + [anon_sym___asm] = ACTIONS(1980), + [sym_number_literal] = ACTIONS(1982), + [anon_sym_L_SQUOTE] = ACTIONS(1982), + [anon_sym_u_SQUOTE] = ACTIONS(1982), + [anon_sym_U_SQUOTE] = ACTIONS(1982), + [anon_sym_u8_SQUOTE] = ACTIONS(1982), + [anon_sym_SQUOTE] = ACTIONS(1982), + [anon_sym_L_DQUOTE] = ACTIONS(1982), + [anon_sym_u_DQUOTE] = ACTIONS(1982), + [anon_sym_U_DQUOTE] = ACTIONS(1982), + [anon_sym_u8_DQUOTE] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(1982), + [sym_true] = ACTIONS(1980), + [sym_false] = ACTIONS(1980), + [anon_sym_NULL] = ACTIONS(1980), + [anon_sym_nullptr] = ACTIONS(1980), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1980), + [anon_sym_decltype] = ACTIONS(1980), + [anon_sym_explicit] = ACTIONS(1980), + [anon_sym_typename] = ACTIONS(1980), + [anon_sym_template] = ACTIONS(1980), + [anon_sym_operator] = ACTIONS(1980), + [anon_sym_try] = ACTIONS(1980), + [anon_sym_delete] = ACTIONS(1980), + [anon_sym_throw] = ACTIONS(1980), + [anon_sym_namespace] = ACTIONS(1980), + [anon_sym_using] = ACTIONS(1980), + [anon_sym_static_assert] = ACTIONS(1980), + [anon_sym_concept] = ACTIONS(1980), + [anon_sym_co_return] = ACTIONS(1980), + [anon_sym_co_yield] = ACTIONS(1980), + [anon_sym_R_DQUOTE] = ACTIONS(1982), + [anon_sym_LR_DQUOTE] = ACTIONS(1982), + [anon_sym_uR_DQUOTE] = ACTIONS(1982), + [anon_sym_UR_DQUOTE] = ACTIONS(1982), + [anon_sym_u8R_DQUOTE] = ACTIONS(1982), + [anon_sym_co_await] = ACTIONS(1980), + [anon_sym_new] = ACTIONS(1980), + [anon_sym_requires] = ACTIONS(1980), + [sym_this] = ACTIONS(1980), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_FORWARD] = ACTIONS(1980), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1980), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_PS_GET] = ACTIONS(1980), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1980), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1980), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1980), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1980), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1980), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1980), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1980), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1980), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1980), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1980), + [anon_sym_MOZ_COLD] = ACTIONS(1980), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1980), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1980), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1980), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1980), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1980), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1980), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1980), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1980), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1980), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1980), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1980), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1980), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1980), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1980), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1980), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1980), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1980), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1980), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1980), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1980), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_NONNULL] = ACTIONS(1980), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1980), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1980), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1980), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1980), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1980), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_NORETURN] = ACTIONS(1980), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1980), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1980), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1980), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1980), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1980), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1980), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1980), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1980), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1980), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1980), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1980), + [anon_sym_MOZ_RAII] = ACTIONS(1980), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1980), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1980), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1980), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1980), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1980), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1980), + }, + [STATE(152)] = { + [sym_identifier] = ACTIONS(1984), + [aux_sym_preproc_include_token1] = ACTIONS(1984), + [aux_sym_preproc_def_token1] = ACTIONS(1984), + [aux_sym_preproc_if_token1] = ACTIONS(1984), + [aux_sym_preproc_if_token2] = ACTIONS(1984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1984), + [aux_sym_preproc_else_token1] = ACTIONS(1984), + [aux_sym_preproc_elif_token1] = ACTIONS(1984), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1984), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1984), + [sym_preproc_directive] = ACTIONS(1984), + [anon_sym_LPAREN2] = ACTIONS(1986), + [anon_sym_BANG] = ACTIONS(1986), + [anon_sym_TILDE] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(1986), + [anon_sym_AMP_AMP] = ACTIONS(1986), + [anon_sym_AMP] = ACTIONS(1984), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym___extension__] = ACTIONS(1984), + [anon_sym_typedef] = ACTIONS(1984), + [anon_sym_virtual] = ACTIONS(1984), + [anon_sym_extern] = ACTIONS(1984), + [anon_sym___attribute__] = ACTIONS(1984), + [anon_sym___attribute] = ACTIONS(1984), + [anon_sym_COLON_COLON] = ACTIONS(1986), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1986), + [anon_sym___declspec] = ACTIONS(1984), + [anon_sym___based] = ACTIONS(1984), + [anon_sym___cdecl] = ACTIONS(1984), + [anon_sym___clrcall] = ACTIONS(1984), + [anon_sym___stdcall] = ACTIONS(1984), + [anon_sym___fastcall] = ACTIONS(1984), + [anon_sym___thiscall] = ACTIONS(1984), + [anon_sym___vectorcall] = ACTIONS(1984), + [anon_sym_LBRACE] = ACTIONS(1986), + [anon_sym_signed] = ACTIONS(1984), + [anon_sym_unsigned] = ACTIONS(1984), + [anon_sym_long] = ACTIONS(1984), + [anon_sym_short] = ACTIONS(1984), + [anon_sym_LBRACK] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1984), + [anon_sym_register] = ACTIONS(1984), + [anon_sym_inline] = ACTIONS(1984), + [anon_sym___inline] = ACTIONS(1984), + [anon_sym___inline__] = ACTIONS(1984), + [anon_sym___forceinline] = ACTIONS(1984), + [anon_sym_thread_local] = ACTIONS(1984), + [anon_sym___thread] = ACTIONS(1984), + [anon_sym_const] = ACTIONS(1984), + [anon_sym_constexpr] = ACTIONS(1984), + [anon_sym_volatile] = ACTIONS(1984), + [anon_sym_restrict] = ACTIONS(1984), + [anon_sym___restrict__] = ACTIONS(1984), + [anon_sym__Atomic] = ACTIONS(1984), + [anon_sym__Noreturn] = ACTIONS(1984), + [anon_sym_noreturn] = ACTIONS(1984), + [anon_sym__Nonnull] = ACTIONS(1984), + [anon_sym_mutable] = ACTIONS(1984), + [anon_sym_constinit] = ACTIONS(1984), + [anon_sym_consteval] = ACTIONS(1984), + [anon_sym_alignas] = ACTIONS(1984), + [anon_sym__Alignas] = ACTIONS(1984), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1984), + [anon_sym_class] = ACTIONS(1984), + [anon_sym_struct] = ACTIONS(1984), + [anon_sym_union] = ACTIONS(1984), + [anon_sym_if] = ACTIONS(1984), + [anon_sym_else] = ACTIONS(1984), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_case] = ACTIONS(1984), + [anon_sym_default] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1984), + [anon_sym_do] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1984), + [anon_sym_return] = ACTIONS(1984), + [anon_sym_break] = ACTIONS(1984), + [anon_sym_continue] = ACTIONS(1984), + [anon_sym_goto] = ACTIONS(1984), + [anon_sym___try] = ACTIONS(1984), + [anon_sym___leave] = ACTIONS(1984), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_compl] = ACTIONS(1984), + [anon_sym_DASH_DASH] = ACTIONS(1986), + [anon_sym_PLUS_PLUS] = ACTIONS(1986), + [anon_sym_sizeof] = ACTIONS(1984), + [anon_sym___alignof__] = ACTIONS(1984), + [anon_sym___alignof] = ACTIONS(1984), + [anon_sym__alignof] = ACTIONS(1984), + [anon_sym_alignof] = ACTIONS(1984), + [anon_sym__Alignof] = ACTIONS(1984), + [anon_sym_offsetof] = ACTIONS(1984), + [anon_sym__Generic] = ACTIONS(1984), + [anon_sym_asm] = ACTIONS(1984), + [anon_sym___asm__] = ACTIONS(1984), + [anon_sym___asm] = ACTIONS(1984), + [sym_number_literal] = ACTIONS(1986), + [anon_sym_L_SQUOTE] = ACTIONS(1986), + [anon_sym_u_SQUOTE] = ACTIONS(1986), + [anon_sym_U_SQUOTE] = ACTIONS(1986), + [anon_sym_u8_SQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1986), + [anon_sym_L_DQUOTE] = ACTIONS(1986), + [anon_sym_u_DQUOTE] = ACTIONS(1986), + [anon_sym_U_DQUOTE] = ACTIONS(1986), + [anon_sym_u8_DQUOTE] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [anon_sym_NULL] = ACTIONS(1984), + [anon_sym_nullptr] = ACTIONS(1984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1984), + [anon_sym_decltype] = ACTIONS(1984), + [anon_sym_explicit] = ACTIONS(1984), + [anon_sym_typename] = ACTIONS(1984), + [anon_sym_template] = ACTIONS(1984), + [anon_sym_operator] = ACTIONS(1984), + [anon_sym_try] = ACTIONS(1984), + [anon_sym_delete] = ACTIONS(1984), + [anon_sym_throw] = ACTIONS(1984), + [anon_sym_namespace] = ACTIONS(1984), + [anon_sym_using] = ACTIONS(1984), + [anon_sym_static_assert] = ACTIONS(1984), + [anon_sym_concept] = ACTIONS(1984), + [anon_sym_co_return] = ACTIONS(1984), + [anon_sym_co_yield] = ACTIONS(1984), + [anon_sym_R_DQUOTE] = ACTIONS(1986), + [anon_sym_LR_DQUOTE] = ACTIONS(1986), + [anon_sym_uR_DQUOTE] = ACTIONS(1986), + [anon_sym_UR_DQUOTE] = ACTIONS(1986), + [anon_sym_u8R_DQUOTE] = ACTIONS(1986), + [anon_sym_co_await] = ACTIONS(1984), + [anon_sym_new] = ACTIONS(1984), + [anon_sym_requires] = ACTIONS(1984), + [sym_this] = ACTIONS(1984), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_FORWARD] = ACTIONS(1984), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1984), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_PS_GET] = ACTIONS(1984), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1984), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1984), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1984), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1984), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1984), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1984), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1984), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1984), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1984), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1984), + [anon_sym_MOZ_COLD] = ACTIONS(1984), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1984), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1984), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1984), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1984), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1984), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1984), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1984), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1984), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1984), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1984), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1984), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1984), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1984), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1984), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1984), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1984), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1984), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1984), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1984), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1984), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_NONNULL] = ACTIONS(1984), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1984), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1984), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1984), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1984), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1984), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_NORETURN] = ACTIONS(1984), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1984), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1984), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1984), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1984), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1984), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1984), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1984), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1984), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1984), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1984), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1984), + [anon_sym_MOZ_RAII] = ACTIONS(1984), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1984), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1984), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1984), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1984), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1984), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1984), + }, + [STATE(153)] = { + [sym_identifier] = ACTIONS(1988), + [aux_sym_preproc_include_token1] = ACTIONS(1988), + [aux_sym_preproc_def_token1] = ACTIONS(1988), + [aux_sym_preproc_if_token1] = ACTIONS(1988), + [aux_sym_preproc_if_token2] = ACTIONS(1988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1988), + [aux_sym_preproc_else_token1] = ACTIONS(1988), + [aux_sym_preproc_elif_token1] = ACTIONS(1988), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1988), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1988), + [sym_preproc_directive] = ACTIONS(1988), + [anon_sym_LPAREN2] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_TILDE] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1988), + [anon_sym_PLUS] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1990), + [anon_sym_AMP_AMP] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1988), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym___extension__] = ACTIONS(1988), + [anon_sym_typedef] = ACTIONS(1988), + [anon_sym_virtual] = ACTIONS(1988), + [anon_sym_extern] = ACTIONS(1988), + [anon_sym___attribute__] = ACTIONS(1988), + [anon_sym___attribute] = ACTIONS(1988), + [anon_sym_COLON_COLON] = ACTIONS(1990), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1990), + [anon_sym___declspec] = ACTIONS(1988), + [anon_sym___based] = ACTIONS(1988), + [anon_sym___cdecl] = ACTIONS(1988), + [anon_sym___clrcall] = ACTIONS(1988), + [anon_sym___stdcall] = ACTIONS(1988), + [anon_sym___fastcall] = ACTIONS(1988), + [anon_sym___thiscall] = ACTIONS(1988), + [anon_sym___vectorcall] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1990), + [anon_sym_signed] = ACTIONS(1988), + [anon_sym_unsigned] = ACTIONS(1988), + [anon_sym_long] = ACTIONS(1988), + [anon_sym_short] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1988), + [anon_sym_register] = ACTIONS(1988), + [anon_sym_inline] = ACTIONS(1988), + [anon_sym___inline] = ACTIONS(1988), + [anon_sym___inline__] = ACTIONS(1988), + [anon_sym___forceinline] = ACTIONS(1988), + [anon_sym_thread_local] = ACTIONS(1988), + [anon_sym___thread] = ACTIONS(1988), + [anon_sym_const] = ACTIONS(1988), + [anon_sym_constexpr] = ACTIONS(1988), + [anon_sym_volatile] = ACTIONS(1988), + [anon_sym_restrict] = ACTIONS(1988), + [anon_sym___restrict__] = ACTIONS(1988), + [anon_sym__Atomic] = ACTIONS(1988), + [anon_sym__Noreturn] = ACTIONS(1988), + [anon_sym_noreturn] = ACTIONS(1988), + [anon_sym__Nonnull] = ACTIONS(1988), + [anon_sym_mutable] = ACTIONS(1988), + [anon_sym_constinit] = ACTIONS(1988), + [anon_sym_consteval] = ACTIONS(1988), + [anon_sym_alignas] = ACTIONS(1988), + [anon_sym__Alignas] = ACTIONS(1988), + [sym_primitive_type] = ACTIONS(1988), + [anon_sym_enum] = ACTIONS(1988), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1988), + [anon_sym_union] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_else] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_do] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_return] = ACTIONS(1988), + [anon_sym_break] = ACTIONS(1988), + [anon_sym_continue] = ACTIONS(1988), + [anon_sym_goto] = ACTIONS(1988), + [anon_sym___try] = ACTIONS(1988), + [anon_sym___leave] = ACTIONS(1988), + [anon_sym_not] = ACTIONS(1988), + [anon_sym_compl] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1990), + [anon_sym_PLUS_PLUS] = ACTIONS(1990), + [anon_sym_sizeof] = ACTIONS(1988), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1988), + [anon_sym__Generic] = ACTIONS(1988), + [anon_sym_asm] = ACTIONS(1988), + [anon_sym___asm__] = ACTIONS(1988), + [anon_sym___asm] = ACTIONS(1988), + [sym_number_literal] = ACTIONS(1990), + [anon_sym_L_SQUOTE] = ACTIONS(1990), + [anon_sym_u_SQUOTE] = ACTIONS(1990), + [anon_sym_U_SQUOTE] = ACTIONS(1990), + [anon_sym_u8_SQUOTE] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_L_DQUOTE] = ACTIONS(1990), + [anon_sym_u_DQUOTE] = ACTIONS(1990), + [anon_sym_U_DQUOTE] = ACTIONS(1990), + [anon_sym_u8_DQUOTE] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1990), + [sym_true] = ACTIONS(1988), + [sym_false] = ACTIONS(1988), + [anon_sym_NULL] = ACTIONS(1988), + [anon_sym_nullptr] = ACTIONS(1988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1988), + [anon_sym_decltype] = ACTIONS(1988), + [anon_sym_explicit] = ACTIONS(1988), + [anon_sym_typename] = ACTIONS(1988), + [anon_sym_template] = ACTIONS(1988), + [anon_sym_operator] = ACTIONS(1988), + [anon_sym_try] = ACTIONS(1988), + [anon_sym_delete] = ACTIONS(1988), + [anon_sym_throw] = ACTIONS(1988), + [anon_sym_namespace] = ACTIONS(1988), + [anon_sym_using] = ACTIONS(1988), + [anon_sym_static_assert] = ACTIONS(1988), + [anon_sym_concept] = ACTIONS(1988), + [anon_sym_co_return] = ACTIONS(1988), + [anon_sym_co_yield] = ACTIONS(1988), + [anon_sym_R_DQUOTE] = ACTIONS(1990), + [anon_sym_LR_DQUOTE] = ACTIONS(1990), + [anon_sym_uR_DQUOTE] = ACTIONS(1990), + [anon_sym_UR_DQUOTE] = ACTIONS(1990), + [anon_sym_u8R_DQUOTE] = ACTIONS(1990), + [anon_sym_co_await] = ACTIONS(1988), + [anon_sym_new] = ACTIONS(1988), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1988), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_FORWARD] = ACTIONS(1988), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1988), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_PS_GET] = ACTIONS(1988), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1988), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1988), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1988), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1988), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1988), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1988), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1988), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1988), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1988), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1988), + [anon_sym_MOZ_COLD] = ACTIONS(1988), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1988), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1988), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1988), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1988), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1988), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1988), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1988), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1988), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1988), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1988), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1988), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1988), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1988), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1988), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1988), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1988), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1988), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1988), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1988), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1988), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_NONNULL] = ACTIONS(1988), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1988), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1988), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1988), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1988), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1988), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_NORETURN] = ACTIONS(1988), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1988), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1988), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1988), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1988), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1988), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1988), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1988), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1988), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1988), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1988), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1988), + [anon_sym_MOZ_RAII] = ACTIONS(1988), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1988), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1988), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1988), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1988), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1988), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1988), + }, + [STATE(154)] = { + [sym_identifier] = ACTIONS(1992), + [aux_sym_preproc_include_token1] = ACTIONS(1992), + [aux_sym_preproc_def_token1] = ACTIONS(1992), + [aux_sym_preproc_if_token1] = ACTIONS(1992), + [aux_sym_preproc_if_token2] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1992), + [aux_sym_preproc_else_token1] = ACTIONS(1992), + [aux_sym_preproc_elif_token1] = ACTIONS(1992), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1992), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1992), + [sym_preproc_directive] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_AMP_AMP] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1992), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym___extension__] = ACTIONS(1992), + [anon_sym_typedef] = ACTIONS(1992), + [anon_sym_virtual] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1992), + [anon_sym___attribute] = ACTIONS(1992), + [anon_sym_COLON_COLON] = ACTIONS(1994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1994), + [anon_sym___declspec] = ACTIONS(1992), + [anon_sym___based] = ACTIONS(1992), + [anon_sym___cdecl] = ACTIONS(1992), + [anon_sym___clrcall] = ACTIONS(1992), + [anon_sym___stdcall] = ACTIONS(1992), + [anon_sym___fastcall] = ACTIONS(1992), + [anon_sym___thiscall] = ACTIONS(1992), + [anon_sym___vectorcall] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_signed] = ACTIONS(1992), + [anon_sym_unsigned] = ACTIONS(1992), + [anon_sym_long] = ACTIONS(1992), + [anon_sym_short] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1992), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_inline] = ACTIONS(1992), + [anon_sym___inline] = ACTIONS(1992), + [anon_sym___inline__] = ACTIONS(1992), + [anon_sym___forceinline] = ACTIONS(1992), + [anon_sym_thread_local] = ACTIONS(1992), + [anon_sym___thread] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_constexpr] = ACTIONS(1992), + [anon_sym_volatile] = ACTIONS(1992), + [anon_sym_restrict] = ACTIONS(1992), + [anon_sym___restrict__] = ACTIONS(1992), + [anon_sym__Atomic] = ACTIONS(1992), + [anon_sym__Noreturn] = ACTIONS(1992), + [anon_sym_noreturn] = ACTIONS(1992), + [anon_sym__Nonnull] = ACTIONS(1992), + [anon_sym_mutable] = ACTIONS(1992), + [anon_sym_constinit] = ACTIONS(1992), + [anon_sym_consteval] = ACTIONS(1992), + [anon_sym_alignas] = ACTIONS(1992), + [anon_sym__Alignas] = ACTIONS(1992), + [sym_primitive_type] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_class] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1992), + [anon_sym_switch] = ACTIONS(1992), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(1992), + [anon_sym___try] = ACTIONS(1992), + [anon_sym___leave] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1992), + [anon_sym___alignof__] = ACTIONS(1992), + [anon_sym___alignof] = ACTIONS(1992), + [anon_sym__alignof] = ACTIONS(1992), + [anon_sym_alignof] = ACTIONS(1992), + [anon_sym__Alignof] = ACTIONS(1992), + [anon_sym_offsetof] = ACTIONS(1992), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_asm] = ACTIONS(1992), + [anon_sym___asm__] = ACTIONS(1992), + [anon_sym___asm] = ACTIONS(1992), + [sym_number_literal] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1994), + [anon_sym_u_SQUOTE] = ACTIONS(1994), + [anon_sym_U_SQUOTE] = ACTIONS(1994), + [anon_sym_u8_SQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_L_DQUOTE] = ACTIONS(1994), + [anon_sym_u_DQUOTE] = ACTIONS(1994), + [anon_sym_U_DQUOTE] = ACTIONS(1994), + [anon_sym_u8_DQUOTE] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym_true] = ACTIONS(1992), + [sym_false] = ACTIONS(1992), + [anon_sym_NULL] = ACTIONS(1992), + [anon_sym_nullptr] = ACTIONS(1992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1992), + [anon_sym_decltype] = ACTIONS(1992), + [anon_sym_explicit] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(1992), + [anon_sym_template] = ACTIONS(1992), + [anon_sym_operator] = ACTIONS(1992), + [anon_sym_try] = ACTIONS(1992), + [anon_sym_delete] = ACTIONS(1992), + [anon_sym_throw] = ACTIONS(1992), + [anon_sym_namespace] = ACTIONS(1992), + [anon_sym_using] = ACTIONS(1992), + [anon_sym_static_assert] = ACTIONS(1992), + [anon_sym_concept] = ACTIONS(1992), + [anon_sym_co_return] = ACTIONS(1992), + [anon_sym_co_yield] = ACTIONS(1992), + [anon_sym_R_DQUOTE] = ACTIONS(1994), + [anon_sym_LR_DQUOTE] = ACTIONS(1994), + [anon_sym_uR_DQUOTE] = ACTIONS(1994), + [anon_sym_UR_DQUOTE] = ACTIONS(1994), + [anon_sym_u8R_DQUOTE] = ACTIONS(1994), + [anon_sym_co_await] = ACTIONS(1992), + [anon_sym_new] = ACTIONS(1992), + [anon_sym_requires] = ACTIONS(1992), + [sym_this] = ACTIONS(1992), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_FORWARD] = ACTIONS(1992), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_PS_GET] = ACTIONS(1992), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1992), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1992), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1992), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1992), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1992), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1992), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1992), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1992), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1992), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1992), + [anon_sym_MOZ_COLD] = ACTIONS(1992), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1992), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1992), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1992), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1992), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1992), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1992), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1992), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1992), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1992), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1992), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1992), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1992), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1992), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1992), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1992), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1992), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1992), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1992), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1992), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1992), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_NONNULL] = ACTIONS(1992), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1992), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1992), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1992), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1992), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1992), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_NORETURN] = ACTIONS(1992), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1992), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1992), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1992), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1992), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1992), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1992), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1992), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1992), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1992), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1992), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1992), + [anon_sym_MOZ_RAII] = ACTIONS(1992), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1992), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1992), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1992), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1992), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1992), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1992), + }, + [STATE(155)] = { + [sym_identifier] = ACTIONS(1996), + [aux_sym_preproc_include_token1] = ACTIONS(1996), + [aux_sym_preproc_def_token1] = ACTIONS(1996), + [aux_sym_preproc_if_token1] = ACTIONS(1996), + [aux_sym_preproc_if_token2] = ACTIONS(1996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1996), + [aux_sym_preproc_else_token1] = ACTIONS(1996), + [aux_sym_preproc_elif_token1] = ACTIONS(1996), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1996), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1996), + [sym_preproc_directive] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(1998), + [anon_sym_BANG] = ACTIONS(1998), + [anon_sym_TILDE] = ACTIONS(1998), + [anon_sym_DASH] = ACTIONS(1996), + [anon_sym_PLUS] = ACTIONS(1996), + [anon_sym_STAR] = ACTIONS(1998), + [anon_sym_AMP_AMP] = ACTIONS(1998), + [anon_sym_AMP] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_typedef] = ACTIONS(1996), + [anon_sym_virtual] = ACTIONS(1996), + [anon_sym_extern] = ACTIONS(1996), + [anon_sym___attribute__] = ACTIONS(1996), + [anon_sym___attribute] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1998), + [anon_sym___declspec] = ACTIONS(1996), + [anon_sym___based] = ACTIONS(1996), + [anon_sym___cdecl] = ACTIONS(1996), + [anon_sym___clrcall] = ACTIONS(1996), + [anon_sym___stdcall] = ACTIONS(1996), + [anon_sym___fastcall] = ACTIONS(1996), + [anon_sym___thiscall] = ACTIONS(1996), + [anon_sym___vectorcall] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1998), + [anon_sym_signed] = ACTIONS(1996), + [anon_sym_unsigned] = ACTIONS(1996), + [anon_sym_long] = ACTIONS(1996), + [anon_sym_short] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_static] = ACTIONS(1996), + [anon_sym_register] = ACTIONS(1996), + [anon_sym_inline] = ACTIONS(1996), + [anon_sym___inline] = ACTIONS(1996), + [anon_sym___inline__] = ACTIONS(1996), + [anon_sym___forceinline] = ACTIONS(1996), + [anon_sym_thread_local] = ACTIONS(1996), + [anon_sym___thread] = ACTIONS(1996), + [anon_sym_const] = ACTIONS(1996), + [anon_sym_constexpr] = ACTIONS(1996), + [anon_sym_volatile] = ACTIONS(1996), + [anon_sym_restrict] = ACTIONS(1996), + [anon_sym___restrict__] = ACTIONS(1996), + [anon_sym__Atomic] = ACTIONS(1996), + [anon_sym__Noreturn] = ACTIONS(1996), + [anon_sym_noreturn] = ACTIONS(1996), + [anon_sym__Nonnull] = ACTIONS(1996), + [anon_sym_mutable] = ACTIONS(1996), + [anon_sym_constinit] = ACTIONS(1996), + [anon_sym_consteval] = ACTIONS(1996), + [anon_sym_alignas] = ACTIONS(1996), + [anon_sym__Alignas] = ACTIONS(1996), + [sym_primitive_type] = ACTIONS(1996), + [anon_sym_enum] = ACTIONS(1996), + [anon_sym_class] = ACTIONS(1996), + [anon_sym_struct] = ACTIONS(1996), + [anon_sym_union] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1996), + [anon_sym_else] = ACTIONS(1996), + [anon_sym_switch] = ACTIONS(1996), + [anon_sym_case] = ACTIONS(1996), + [anon_sym_default] = ACTIONS(1996), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(1996), + [anon_sym_for] = ACTIONS(1996), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_break] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(1996), + [anon_sym_goto] = ACTIONS(1996), + [anon_sym___try] = ACTIONS(1996), + [anon_sym___leave] = ACTIONS(1996), + [anon_sym_not] = ACTIONS(1996), + [anon_sym_compl] = ACTIONS(1996), + [anon_sym_DASH_DASH] = ACTIONS(1998), + [anon_sym_PLUS_PLUS] = ACTIONS(1998), + [anon_sym_sizeof] = ACTIONS(1996), + [anon_sym___alignof__] = ACTIONS(1996), + [anon_sym___alignof] = ACTIONS(1996), + [anon_sym__alignof] = ACTIONS(1996), + [anon_sym_alignof] = ACTIONS(1996), + [anon_sym__Alignof] = ACTIONS(1996), + [anon_sym_offsetof] = ACTIONS(1996), + [anon_sym__Generic] = ACTIONS(1996), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(1998), + [anon_sym_u_SQUOTE] = ACTIONS(1998), + [anon_sym_U_SQUOTE] = ACTIONS(1998), + [anon_sym_u8_SQUOTE] = ACTIONS(1998), + [anon_sym_SQUOTE] = ACTIONS(1998), + [anon_sym_L_DQUOTE] = ACTIONS(1998), + [anon_sym_u_DQUOTE] = ACTIONS(1998), + [anon_sym_U_DQUOTE] = ACTIONS(1998), + [anon_sym_u8_DQUOTE] = ACTIONS(1998), + [anon_sym_DQUOTE] = ACTIONS(1998), + [sym_true] = ACTIONS(1996), + [sym_false] = ACTIONS(1996), + [anon_sym_NULL] = ACTIONS(1996), + [anon_sym_nullptr] = ACTIONS(1996), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1996), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_explicit] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1996), + [anon_sym_template] = ACTIONS(1996), + [anon_sym_operator] = ACTIONS(1996), + [anon_sym_try] = ACTIONS(1996), + [anon_sym_delete] = ACTIONS(1996), + [anon_sym_throw] = ACTIONS(1996), + [anon_sym_namespace] = ACTIONS(1996), + [anon_sym_using] = ACTIONS(1996), + [anon_sym_static_assert] = ACTIONS(1996), + [anon_sym_concept] = ACTIONS(1996), + [anon_sym_co_return] = ACTIONS(1996), + [anon_sym_co_yield] = ACTIONS(1996), + [anon_sym_R_DQUOTE] = ACTIONS(1998), + [anon_sym_LR_DQUOTE] = ACTIONS(1998), + [anon_sym_uR_DQUOTE] = ACTIONS(1998), + [anon_sym_UR_DQUOTE] = ACTIONS(1998), + [anon_sym_u8R_DQUOTE] = ACTIONS(1998), + [anon_sym_co_await] = ACTIONS(1996), + [anon_sym_new] = ACTIONS(1996), + [anon_sym_requires] = ACTIONS(1996), + [sym_this] = ACTIONS(1996), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_FORWARD] = ACTIONS(1996), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1996), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_PS_GET] = ACTIONS(1996), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1996), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1996), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1996), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1996), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1996), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1996), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1996), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1996), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1996), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1996), + [anon_sym_MOZ_COLD] = ACTIONS(1996), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1996), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1996), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1996), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1996), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1996), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1996), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1996), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1996), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1996), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1996), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1996), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1996), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1996), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1996), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1996), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1996), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1996), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1996), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1996), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1996), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_NONNULL] = ACTIONS(1996), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1996), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1996), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1996), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1996), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1996), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_NORETURN] = ACTIONS(1996), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1996), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1996), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1996), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1996), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1996), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1996), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1996), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1996), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1996), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1996), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1996), + [anon_sym_MOZ_RAII] = ACTIONS(1996), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1996), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1996), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1996), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1996), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1996), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1996), + }, + [STATE(156)] = { + [sym_identifier] = ACTIONS(2000), + [aux_sym_preproc_include_token1] = ACTIONS(2000), + [aux_sym_preproc_def_token1] = ACTIONS(2000), + [aux_sym_preproc_if_token1] = ACTIONS(2000), + [aux_sym_preproc_if_token2] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2000), + [aux_sym_preproc_else_token1] = ACTIONS(2000), + [aux_sym_preproc_elif_token1] = ACTIONS(2000), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2000), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2000), + [sym_preproc_directive] = ACTIONS(2000), + [anon_sym_LPAREN2] = ACTIONS(2002), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2000), + [anon_sym_PLUS] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym___extension__] = ACTIONS(2000), + [anon_sym_typedef] = ACTIONS(2000), + [anon_sym_virtual] = ACTIONS(2000), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym___attribute__] = ACTIONS(2000), + [anon_sym___attribute] = ACTIONS(2000), + [anon_sym_COLON_COLON] = ACTIONS(2002), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2002), + [anon_sym___declspec] = ACTIONS(2000), + [anon_sym___based] = ACTIONS(2000), + [anon_sym___cdecl] = ACTIONS(2000), + [anon_sym___clrcall] = ACTIONS(2000), + [anon_sym___stdcall] = ACTIONS(2000), + [anon_sym___fastcall] = ACTIONS(2000), + [anon_sym___thiscall] = ACTIONS(2000), + [anon_sym___vectorcall] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_signed] = ACTIONS(2000), + [anon_sym_unsigned] = ACTIONS(2000), + [anon_sym_long] = ACTIONS(2000), + [anon_sym_short] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_static] = ACTIONS(2000), + [anon_sym_register] = ACTIONS(2000), + [anon_sym_inline] = ACTIONS(2000), + [anon_sym___inline] = ACTIONS(2000), + [anon_sym___inline__] = ACTIONS(2000), + [anon_sym___forceinline] = ACTIONS(2000), + [anon_sym_thread_local] = ACTIONS(2000), + [anon_sym___thread] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [anon_sym_constexpr] = ACTIONS(2000), + [anon_sym_volatile] = ACTIONS(2000), + [anon_sym_restrict] = ACTIONS(2000), + [anon_sym___restrict__] = ACTIONS(2000), + [anon_sym__Atomic] = ACTIONS(2000), + [anon_sym__Noreturn] = ACTIONS(2000), + [anon_sym_noreturn] = ACTIONS(2000), + [anon_sym__Nonnull] = ACTIONS(2000), + [anon_sym_mutable] = ACTIONS(2000), + [anon_sym_constinit] = ACTIONS(2000), + [anon_sym_consteval] = ACTIONS(2000), + [anon_sym_alignas] = ACTIONS(2000), + [anon_sym__Alignas] = ACTIONS(2000), + [sym_primitive_type] = ACTIONS(2000), + [anon_sym_enum] = ACTIONS(2000), + [anon_sym_class] = ACTIONS(2000), + [anon_sym_struct] = ACTIONS(2000), + [anon_sym_union] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2000), + [anon_sym_switch] = ACTIONS(2000), + [anon_sym_case] = ACTIONS(2000), + [anon_sym_default] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_goto] = ACTIONS(2000), + [anon_sym___try] = ACTIONS(2000), + [anon_sym___leave] = ACTIONS(2000), + [anon_sym_not] = ACTIONS(2000), + [anon_sym_compl] = ACTIONS(2000), + [anon_sym_DASH_DASH] = ACTIONS(2002), + [anon_sym_PLUS_PLUS] = ACTIONS(2002), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(2000), + [anon_sym___alignof] = ACTIONS(2000), + [anon_sym__alignof] = ACTIONS(2000), + [anon_sym_alignof] = ACTIONS(2000), + [anon_sym__Alignof] = ACTIONS(2000), + [anon_sym_offsetof] = ACTIONS(2000), + [anon_sym__Generic] = ACTIONS(2000), + [anon_sym_asm] = ACTIONS(2000), + [anon_sym___asm__] = ACTIONS(2000), + [anon_sym___asm] = ACTIONS(2000), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2002), + [anon_sym_u_SQUOTE] = ACTIONS(2002), + [anon_sym_U_SQUOTE] = ACTIONS(2002), + [anon_sym_u8_SQUOTE] = ACTIONS(2002), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2000), + [sym_false] = ACTIONS(2000), + [anon_sym_NULL] = ACTIONS(2000), + [anon_sym_nullptr] = ACTIONS(2000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2000), + [anon_sym_decltype] = ACTIONS(2000), + [anon_sym_explicit] = ACTIONS(2000), + [anon_sym_typename] = ACTIONS(2000), + [anon_sym_template] = ACTIONS(2000), + [anon_sym_operator] = ACTIONS(2000), + [anon_sym_try] = ACTIONS(2000), + [anon_sym_delete] = ACTIONS(2000), + [anon_sym_throw] = ACTIONS(2000), + [anon_sym_namespace] = ACTIONS(2000), + [anon_sym_using] = ACTIONS(2000), + [anon_sym_static_assert] = ACTIONS(2000), + [anon_sym_concept] = ACTIONS(2000), + [anon_sym_co_return] = ACTIONS(2000), + [anon_sym_co_yield] = ACTIONS(2000), + [anon_sym_R_DQUOTE] = ACTIONS(2002), + [anon_sym_LR_DQUOTE] = ACTIONS(2002), + [anon_sym_uR_DQUOTE] = ACTIONS(2002), + [anon_sym_UR_DQUOTE] = ACTIONS(2002), + [anon_sym_u8R_DQUOTE] = ACTIONS(2002), + [anon_sym_co_await] = ACTIONS(2000), + [anon_sym_new] = ACTIONS(2000), + [anon_sym_requires] = ACTIONS(2000), + [sym_this] = ACTIONS(2000), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_FORWARD] = ACTIONS(2000), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2000), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_PS_GET] = ACTIONS(2000), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2000), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2000), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2000), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2000), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2000), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2000), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2000), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2000), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2000), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2000), + [anon_sym_MOZ_COLD] = ACTIONS(2000), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2000), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2000), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2000), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2000), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2000), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2000), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2000), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2000), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2000), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2000), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2000), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2000), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2000), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2000), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2000), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2000), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2000), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2000), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2000), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2000), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_NONNULL] = ACTIONS(2000), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2000), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2000), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2000), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2000), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2000), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_NORETURN] = ACTIONS(2000), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2000), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2000), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2000), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2000), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2000), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2000), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2000), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2000), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2000), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2000), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2000), + [anon_sym_MOZ_RAII] = ACTIONS(2000), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2000), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2000), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2000), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2000), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2000), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2000), + }, + [STATE(157)] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2004), + [aux_sym_preproc_def_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [aux_sym_preproc_else_token1] = ACTIONS(2004), + [aux_sym_preproc_elif_token1] = ACTIONS(2004), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2004), + [sym_preproc_directive] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP_AMP] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(2004), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_virtual] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym_COLON_COLON] = ACTIONS(2006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2006), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___based] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [anon_sym_LBRACK] = ACTIONS(2004), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [anon_sym___inline] = ACTIONS(2004), + [anon_sym___inline__] = ACTIONS(2004), + [anon_sym___forceinline] = ACTIONS(2004), + [anon_sym_thread_local] = ACTIONS(2004), + [anon_sym___thread] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_constexpr] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym___restrict__] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym__Noreturn] = ACTIONS(2004), + [anon_sym_noreturn] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym_mutable] = ACTIONS(2004), + [anon_sym_constinit] = ACTIONS(2004), + [anon_sym_consteval] = ACTIONS(2004), + [anon_sym_alignas] = ACTIONS(2004), + [anon_sym__Alignas] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_class] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_else] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym___try] = ACTIONS(2004), + [anon_sym___leave] = ACTIONS(2004), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [anon_sym___alignof__] = ACTIONS(2004), + [anon_sym___alignof] = ACTIONS(2004), + [anon_sym__alignof] = ACTIONS(2004), + [anon_sym_alignof] = ACTIONS(2004), + [anon_sym__Alignof] = ACTIONS(2004), + [anon_sym_offsetof] = ACTIONS(2004), + [anon_sym__Generic] = ACTIONS(2004), + [anon_sym_asm] = ACTIONS(2004), + [anon_sym___asm__] = ACTIONS(2004), + [anon_sym___asm] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2004), + [anon_sym_nullptr] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2004), + [anon_sym_decltype] = ACTIONS(2004), + [anon_sym_explicit] = ACTIONS(2004), + [anon_sym_typename] = ACTIONS(2004), + [anon_sym_template] = ACTIONS(2004), + [anon_sym_operator] = ACTIONS(2004), + [anon_sym_try] = ACTIONS(2004), + [anon_sym_delete] = ACTIONS(2004), + [anon_sym_throw] = ACTIONS(2004), + [anon_sym_namespace] = ACTIONS(2004), + [anon_sym_using] = ACTIONS(2004), + [anon_sym_static_assert] = ACTIONS(2004), + [anon_sym_concept] = ACTIONS(2004), + [anon_sym_co_return] = ACTIONS(2004), + [anon_sym_co_yield] = ACTIONS(2004), + [anon_sym_R_DQUOTE] = ACTIONS(2006), + [anon_sym_LR_DQUOTE] = ACTIONS(2006), + [anon_sym_uR_DQUOTE] = ACTIONS(2006), + [anon_sym_UR_DQUOTE] = ACTIONS(2006), + [anon_sym_u8R_DQUOTE] = ACTIONS(2006), + [anon_sym_co_await] = ACTIONS(2004), + [anon_sym_new] = ACTIONS(2004), + [anon_sym_requires] = ACTIONS(2004), + [sym_this] = ACTIONS(2004), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_FORWARD] = ACTIONS(2004), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_PS_GET] = ACTIONS(2004), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2004), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2004), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2004), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2004), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2004), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2004), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2004), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2004), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2004), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2004), + [anon_sym_MOZ_COLD] = ACTIONS(2004), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2004), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2004), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2004), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2004), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2004), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2004), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2004), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2004), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2004), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2004), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2004), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2004), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2004), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2004), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2004), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2004), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2004), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2004), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2004), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2004), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_NONNULL] = ACTIONS(2004), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2004), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2004), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2004), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2004), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2004), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_NORETURN] = ACTIONS(2004), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2004), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2004), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2004), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2004), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2004), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2004), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2004), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2004), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2004), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2004), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2004), + [anon_sym_MOZ_RAII] = ACTIONS(2004), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2004), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2004), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2004), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2004), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2004), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2004), + }, + [STATE(158)] = { + [sym_identifier] = ACTIONS(2008), + [aux_sym_preproc_include_token1] = ACTIONS(2008), + [aux_sym_preproc_def_token1] = ACTIONS(2008), + [aux_sym_preproc_if_token1] = ACTIONS(2008), + [aux_sym_preproc_if_token2] = ACTIONS(2008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2008), + [aux_sym_preproc_else_token1] = ACTIONS(2008), + [aux_sym_preproc_elif_token1] = ACTIONS(2008), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2008), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2008), + [sym_preproc_directive] = ACTIONS(2008), + [anon_sym_LPAREN2] = ACTIONS(2010), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(2010), + [anon_sym_AMP_AMP] = ACTIONS(2010), + [anon_sym_AMP] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym___extension__] = ACTIONS(2008), + [anon_sym_typedef] = ACTIONS(2008), + [anon_sym_virtual] = ACTIONS(2008), + [anon_sym_extern] = ACTIONS(2008), + [anon_sym___attribute__] = ACTIONS(2008), + [anon_sym___attribute] = ACTIONS(2008), + [anon_sym_COLON_COLON] = ACTIONS(2010), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2010), + [anon_sym___declspec] = ACTIONS(2008), + [anon_sym___based] = ACTIONS(2008), + [anon_sym___cdecl] = ACTIONS(2008), + [anon_sym___clrcall] = ACTIONS(2008), + [anon_sym___stdcall] = ACTIONS(2008), + [anon_sym___fastcall] = ACTIONS(2008), + [anon_sym___thiscall] = ACTIONS(2008), + [anon_sym___vectorcall] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2010), + [anon_sym_signed] = ACTIONS(2008), + [anon_sym_unsigned] = ACTIONS(2008), + [anon_sym_long] = ACTIONS(2008), + [anon_sym_short] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_static] = ACTIONS(2008), + [anon_sym_register] = ACTIONS(2008), + [anon_sym_inline] = ACTIONS(2008), + [anon_sym___inline] = ACTIONS(2008), + [anon_sym___inline__] = ACTIONS(2008), + [anon_sym___forceinline] = ACTIONS(2008), + [anon_sym_thread_local] = ACTIONS(2008), + [anon_sym___thread] = ACTIONS(2008), + [anon_sym_const] = ACTIONS(2008), + [anon_sym_constexpr] = ACTIONS(2008), + [anon_sym_volatile] = ACTIONS(2008), + [anon_sym_restrict] = ACTIONS(2008), + [anon_sym___restrict__] = ACTIONS(2008), + [anon_sym__Atomic] = ACTIONS(2008), + [anon_sym__Noreturn] = ACTIONS(2008), + [anon_sym_noreturn] = ACTIONS(2008), + [anon_sym__Nonnull] = ACTIONS(2008), + [anon_sym_mutable] = ACTIONS(2008), + [anon_sym_constinit] = ACTIONS(2008), + [anon_sym_consteval] = ACTIONS(2008), + [anon_sym_alignas] = ACTIONS(2008), + [anon_sym__Alignas] = ACTIONS(2008), + [sym_primitive_type] = ACTIONS(2008), + [anon_sym_enum] = ACTIONS(2008), + [anon_sym_class] = ACTIONS(2008), + [anon_sym_struct] = ACTIONS(2008), + [anon_sym_union] = ACTIONS(2008), + [anon_sym_if] = ACTIONS(2008), + [anon_sym_else] = ACTIONS(2008), + [anon_sym_switch] = ACTIONS(2008), + [anon_sym_case] = ACTIONS(2008), + [anon_sym_default] = ACTIONS(2008), + [anon_sym_while] = ACTIONS(2008), + [anon_sym_do] = ACTIONS(2008), + [anon_sym_for] = ACTIONS(2008), + [anon_sym_return] = ACTIONS(2008), + [anon_sym_break] = ACTIONS(2008), + [anon_sym_continue] = ACTIONS(2008), + [anon_sym_goto] = ACTIONS(2008), + [anon_sym___try] = ACTIONS(2008), + [anon_sym___leave] = ACTIONS(2008), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2010), + [anon_sym_PLUS_PLUS] = ACTIONS(2010), + [anon_sym_sizeof] = ACTIONS(2008), + [anon_sym___alignof__] = ACTIONS(2008), + [anon_sym___alignof] = ACTIONS(2008), + [anon_sym__alignof] = ACTIONS(2008), + [anon_sym_alignof] = ACTIONS(2008), + [anon_sym__Alignof] = ACTIONS(2008), + [anon_sym_offsetof] = ACTIONS(2008), + [anon_sym__Generic] = ACTIONS(2008), + [anon_sym_asm] = ACTIONS(2008), + [anon_sym___asm__] = ACTIONS(2008), + [anon_sym___asm] = ACTIONS(2008), + [sym_number_literal] = ACTIONS(2010), + [anon_sym_L_SQUOTE] = ACTIONS(2010), + [anon_sym_u_SQUOTE] = ACTIONS(2010), + [anon_sym_U_SQUOTE] = ACTIONS(2010), + [anon_sym_u8_SQUOTE] = ACTIONS(2010), + [anon_sym_SQUOTE] = ACTIONS(2010), + [anon_sym_L_DQUOTE] = ACTIONS(2010), + [anon_sym_u_DQUOTE] = ACTIONS(2010), + [anon_sym_U_DQUOTE] = ACTIONS(2010), + [anon_sym_u8_DQUOTE] = ACTIONS(2010), + [anon_sym_DQUOTE] = ACTIONS(2010), + [sym_true] = ACTIONS(2008), + [sym_false] = ACTIONS(2008), + [anon_sym_NULL] = ACTIONS(2008), + [anon_sym_nullptr] = ACTIONS(2008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2008), + [anon_sym_decltype] = ACTIONS(2008), + [anon_sym_explicit] = ACTIONS(2008), + [anon_sym_typename] = ACTIONS(2008), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_operator] = ACTIONS(2008), + [anon_sym_try] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_throw] = ACTIONS(2008), + [anon_sym_namespace] = ACTIONS(2008), + [anon_sym_using] = ACTIONS(2008), + [anon_sym_static_assert] = ACTIONS(2008), + [anon_sym_concept] = ACTIONS(2008), + [anon_sym_co_return] = ACTIONS(2008), + [anon_sym_co_yield] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2008), + [anon_sym_new] = ACTIONS(2008), + [anon_sym_requires] = ACTIONS(2008), + [sym_this] = ACTIONS(2008), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_FORWARD] = ACTIONS(2008), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2008), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_PS_GET] = ACTIONS(2008), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2008), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2008), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2008), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2008), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2008), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2008), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2008), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2008), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2008), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2008), + [anon_sym_MOZ_COLD] = ACTIONS(2008), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2008), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2008), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2008), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2008), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2008), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2008), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2008), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2008), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2008), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2008), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2008), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2008), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2008), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2008), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2008), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2008), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2008), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2008), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2008), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2008), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_NONNULL] = ACTIONS(2008), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2008), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2008), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2008), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2008), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2008), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_NORETURN] = ACTIONS(2008), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2008), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2008), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2008), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2008), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2008), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2008), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2008), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2008), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2008), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2008), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2008), + [anon_sym_MOZ_RAII] = ACTIONS(2008), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2008), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2008), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2008), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2008), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2008), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2008), + }, + [STATE(159)] = { + [sym_identifier] = ACTIONS(2012), + [aux_sym_preproc_include_token1] = ACTIONS(2012), + [aux_sym_preproc_def_token1] = ACTIONS(2012), + [aux_sym_preproc_if_token1] = ACTIONS(2012), + [aux_sym_preproc_if_token2] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2012), + [aux_sym_preproc_else_token1] = ACTIONS(2012), + [aux_sym_preproc_elif_token1] = ACTIONS(2012), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2012), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2012), + [sym_preproc_directive] = ACTIONS(2012), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_TILDE] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_PLUS] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym___extension__] = ACTIONS(2012), + [anon_sym_typedef] = ACTIONS(2012), + [anon_sym_virtual] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym___attribute__] = ACTIONS(2012), + [anon_sym___attribute] = ACTIONS(2012), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2014), + [anon_sym___declspec] = ACTIONS(2012), + [anon_sym___based] = ACTIONS(2012), + [anon_sym___cdecl] = ACTIONS(2012), + [anon_sym___clrcall] = ACTIONS(2012), + [anon_sym___stdcall] = ACTIONS(2012), + [anon_sym___fastcall] = ACTIONS(2012), + [anon_sym___thiscall] = ACTIONS(2012), + [anon_sym___vectorcall] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_signed] = ACTIONS(2012), + [anon_sym_unsigned] = ACTIONS(2012), + [anon_sym_long] = ACTIONS(2012), + [anon_sym_short] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2012), + [anon_sym_inline] = ACTIONS(2012), + [anon_sym___inline] = ACTIONS(2012), + [anon_sym___inline__] = ACTIONS(2012), + [anon_sym___forceinline] = ACTIONS(2012), + [anon_sym_thread_local] = ACTIONS(2012), + [anon_sym___thread] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_constexpr] = ACTIONS(2012), + [anon_sym_volatile] = ACTIONS(2012), + [anon_sym_restrict] = ACTIONS(2012), + [anon_sym___restrict__] = ACTIONS(2012), + [anon_sym__Atomic] = ACTIONS(2012), + [anon_sym__Noreturn] = ACTIONS(2012), + [anon_sym_noreturn] = ACTIONS(2012), + [anon_sym__Nonnull] = ACTIONS(2012), + [anon_sym_mutable] = ACTIONS(2012), + [anon_sym_constinit] = ACTIONS(2012), + [anon_sym_consteval] = ACTIONS(2012), + [anon_sym_alignas] = ACTIONS(2012), + [anon_sym__Alignas] = ACTIONS(2012), + [sym_primitive_type] = ACTIONS(2012), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(2012), + [anon_sym_struct] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_else] = ACTIONS(2012), + [anon_sym_switch] = ACTIONS(2012), + [anon_sym_case] = ACTIONS(2012), + [anon_sym_default] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_do] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_goto] = ACTIONS(2012), + [anon_sym___try] = ACTIONS(2012), + [anon_sym___leave] = ACTIONS(2012), + [anon_sym_not] = ACTIONS(2012), + [anon_sym_compl] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2014), + [anon_sym_PLUS_PLUS] = ACTIONS(2014), + [anon_sym_sizeof] = ACTIONS(2012), + [anon_sym___alignof__] = ACTIONS(2012), + [anon_sym___alignof] = ACTIONS(2012), + [anon_sym__alignof] = ACTIONS(2012), + [anon_sym_alignof] = ACTIONS(2012), + [anon_sym__Alignof] = ACTIONS(2012), + [anon_sym_offsetof] = ACTIONS(2012), + [anon_sym__Generic] = ACTIONS(2012), + [anon_sym_asm] = ACTIONS(2012), + [anon_sym___asm__] = ACTIONS(2012), + [anon_sym___asm] = ACTIONS(2012), + [sym_number_literal] = ACTIONS(2014), + [anon_sym_L_SQUOTE] = ACTIONS(2014), + [anon_sym_u_SQUOTE] = ACTIONS(2014), + [anon_sym_U_SQUOTE] = ACTIONS(2014), + [anon_sym_u8_SQUOTE] = ACTIONS(2014), + [anon_sym_SQUOTE] = ACTIONS(2014), + [anon_sym_L_DQUOTE] = ACTIONS(2014), + [anon_sym_u_DQUOTE] = ACTIONS(2014), + [anon_sym_U_DQUOTE] = ACTIONS(2014), + [anon_sym_u8_DQUOTE] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym_true] = ACTIONS(2012), + [sym_false] = ACTIONS(2012), + [anon_sym_NULL] = ACTIONS(2012), + [anon_sym_nullptr] = ACTIONS(2012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2012), + [anon_sym_decltype] = ACTIONS(2012), + [anon_sym_explicit] = ACTIONS(2012), + [anon_sym_typename] = ACTIONS(2012), + [anon_sym_template] = ACTIONS(2012), + [anon_sym_operator] = ACTIONS(2012), + [anon_sym_try] = ACTIONS(2012), + [anon_sym_delete] = ACTIONS(2012), + [anon_sym_throw] = ACTIONS(2012), + [anon_sym_namespace] = ACTIONS(2012), + [anon_sym_using] = ACTIONS(2012), + [anon_sym_static_assert] = ACTIONS(2012), + [anon_sym_concept] = ACTIONS(2012), + [anon_sym_co_return] = ACTIONS(2012), + [anon_sym_co_yield] = ACTIONS(2012), + [anon_sym_R_DQUOTE] = ACTIONS(2014), + [anon_sym_LR_DQUOTE] = ACTIONS(2014), + [anon_sym_uR_DQUOTE] = ACTIONS(2014), + [anon_sym_UR_DQUOTE] = ACTIONS(2014), + [anon_sym_u8R_DQUOTE] = ACTIONS(2014), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2012), + [anon_sym_requires] = ACTIONS(2012), + [sym_this] = ACTIONS(2012), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_FORWARD] = ACTIONS(2012), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_PS_GET] = ACTIONS(2012), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2012), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2012), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2012), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2012), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2012), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2012), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2012), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2012), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2012), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2012), + [anon_sym_MOZ_COLD] = ACTIONS(2012), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2012), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2012), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2012), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2012), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2012), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2012), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2012), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2012), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2012), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2012), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2012), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2012), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2012), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2012), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2012), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2012), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2012), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2012), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2012), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2012), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_NONNULL] = ACTIONS(2012), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2012), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2012), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2012), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2012), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2012), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_NORETURN] = ACTIONS(2012), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2012), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2012), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2012), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2012), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2012), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2012), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2012), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2012), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2012), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2012), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2012), + [anon_sym_MOZ_RAII] = ACTIONS(2012), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2012), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2012), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2012), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2012), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2012), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2012), + }, + [STATE(160)] = { + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2016), + [aux_sym_preproc_def_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token2] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [aux_sym_preproc_else_token1] = ACTIONS(2016), + [aux_sym_preproc_elif_token1] = ACTIONS(2016), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2016), + [sym_preproc_directive] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_AMP_AMP] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2016), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym___extension__] = ACTIONS(2016), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_virtual] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym_COLON_COLON] = ACTIONS(2018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2018), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___based] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [anon_sym___inline] = ACTIONS(2016), + [anon_sym___inline__] = ACTIONS(2016), + [anon_sym___forceinline] = ACTIONS(2016), + [anon_sym_thread_local] = ACTIONS(2016), + [anon_sym___thread] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_constexpr] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym___restrict__] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym__Noreturn] = ACTIONS(2016), + [anon_sym_noreturn] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym_mutable] = ACTIONS(2016), + [anon_sym_constinit] = ACTIONS(2016), + [anon_sym_consteval] = ACTIONS(2016), + [anon_sym_alignas] = ACTIONS(2016), + [anon_sym__Alignas] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_class] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_else] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym___try] = ACTIONS(2016), + [anon_sym___leave] = ACTIONS(2016), + [anon_sym_not] = ACTIONS(2016), + [anon_sym_compl] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [anon_sym___alignof__] = ACTIONS(2016), + [anon_sym___alignof] = ACTIONS(2016), + [anon_sym__alignof] = ACTIONS(2016), + [anon_sym_alignof] = ACTIONS(2016), + [anon_sym__Alignof] = ACTIONS(2016), + [anon_sym_offsetof] = ACTIONS(2016), + [anon_sym__Generic] = ACTIONS(2016), + [anon_sym_asm] = ACTIONS(2016), + [anon_sym___asm__] = ACTIONS(2016), + [anon_sym___asm] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [anon_sym_NULL] = ACTIONS(2016), + [anon_sym_nullptr] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2016), + [anon_sym_decltype] = ACTIONS(2016), + [anon_sym_explicit] = ACTIONS(2016), + [anon_sym_typename] = ACTIONS(2016), + [anon_sym_template] = ACTIONS(2016), + [anon_sym_operator] = ACTIONS(2016), + [anon_sym_try] = ACTIONS(2016), + [anon_sym_delete] = ACTIONS(2016), + [anon_sym_throw] = ACTIONS(2016), + [anon_sym_namespace] = ACTIONS(2016), + [anon_sym_using] = ACTIONS(2016), + [anon_sym_static_assert] = ACTIONS(2016), + [anon_sym_concept] = ACTIONS(2016), + [anon_sym_co_return] = ACTIONS(2016), + [anon_sym_co_yield] = ACTIONS(2016), + [anon_sym_R_DQUOTE] = ACTIONS(2018), + [anon_sym_LR_DQUOTE] = ACTIONS(2018), + [anon_sym_uR_DQUOTE] = ACTIONS(2018), + [anon_sym_UR_DQUOTE] = ACTIONS(2018), + [anon_sym_u8R_DQUOTE] = ACTIONS(2018), + [anon_sym_co_await] = ACTIONS(2016), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2016), + [sym_this] = ACTIONS(2016), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_FORWARD] = ACTIONS(2016), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_PS_GET] = ACTIONS(2016), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2016), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2016), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2016), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2016), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2016), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2016), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2016), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2016), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2016), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2016), + [anon_sym_MOZ_COLD] = ACTIONS(2016), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2016), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2016), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2016), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2016), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2016), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2016), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2016), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2016), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2016), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2016), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2016), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2016), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2016), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2016), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2016), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2016), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2016), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2016), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2016), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2016), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_NONNULL] = ACTIONS(2016), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2016), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2016), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2016), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2016), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2016), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_NORETURN] = ACTIONS(2016), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2016), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2016), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2016), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2016), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2016), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2016), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2016), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2016), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2016), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2016), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2016), + [anon_sym_MOZ_RAII] = ACTIONS(2016), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2016), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2016), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2016), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2016), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2016), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2016), + }, + [STATE(161)] = { + [sym_identifier] = ACTIONS(2020), + [aux_sym_preproc_include_token1] = ACTIONS(2020), + [aux_sym_preproc_def_token1] = ACTIONS(2020), + [aux_sym_preproc_if_token1] = ACTIONS(2020), + [aux_sym_preproc_if_token2] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [aux_sym_preproc_else_token1] = ACTIONS(2020), + [aux_sym_preproc_elif_token1] = ACTIONS(2020), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2020), + [anon_sym_LPAREN2] = ACTIONS(2022), + [anon_sym_BANG] = ACTIONS(2022), + [anon_sym_TILDE] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2020), + [anon_sym_PLUS] = ACTIONS(2020), + [anon_sym_STAR] = ACTIONS(2022), + [anon_sym_AMP_AMP] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_SEMI] = ACTIONS(2022), + [anon_sym___extension__] = ACTIONS(2020), + [anon_sym_typedef] = ACTIONS(2020), + [anon_sym_virtual] = ACTIONS(2020), + [anon_sym_extern] = ACTIONS(2020), + [anon_sym___attribute__] = ACTIONS(2020), + [anon_sym___attribute] = ACTIONS(2020), + [anon_sym_COLON_COLON] = ACTIONS(2022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2022), + [anon_sym___declspec] = ACTIONS(2020), + [anon_sym___based] = ACTIONS(2020), + [anon_sym___cdecl] = ACTIONS(2020), + [anon_sym___clrcall] = ACTIONS(2020), + [anon_sym___stdcall] = ACTIONS(2020), + [anon_sym___fastcall] = ACTIONS(2020), + [anon_sym___thiscall] = ACTIONS(2020), + [anon_sym___vectorcall] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_signed] = ACTIONS(2020), + [anon_sym_unsigned] = ACTIONS(2020), + [anon_sym_long] = ACTIONS(2020), + [anon_sym_short] = ACTIONS(2020), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2020), + [anon_sym_register] = ACTIONS(2020), + [anon_sym_inline] = ACTIONS(2020), + [anon_sym___inline] = ACTIONS(2020), + [anon_sym___inline__] = ACTIONS(2020), + [anon_sym___forceinline] = ACTIONS(2020), + [anon_sym_thread_local] = ACTIONS(2020), + [anon_sym___thread] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_constexpr] = ACTIONS(2020), + [anon_sym_volatile] = ACTIONS(2020), + [anon_sym_restrict] = ACTIONS(2020), + [anon_sym___restrict__] = ACTIONS(2020), + [anon_sym__Atomic] = ACTIONS(2020), + [anon_sym__Noreturn] = ACTIONS(2020), + [anon_sym_noreturn] = ACTIONS(2020), + [anon_sym__Nonnull] = ACTIONS(2020), + [anon_sym_mutable] = ACTIONS(2020), + [anon_sym_constinit] = ACTIONS(2020), + [anon_sym_consteval] = ACTIONS(2020), + [anon_sym_alignas] = ACTIONS(2020), + [anon_sym__Alignas] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_enum] = ACTIONS(2020), + [anon_sym_class] = ACTIONS(2020), + [anon_sym_struct] = ACTIONS(2020), + [anon_sym_union] = ACTIONS(2020), + [anon_sym_if] = ACTIONS(2020), + [anon_sym_else] = ACTIONS(2020), + [anon_sym_switch] = ACTIONS(2020), + [anon_sym_case] = ACTIONS(2020), + [anon_sym_default] = ACTIONS(2020), + [anon_sym_while] = ACTIONS(2020), + [anon_sym_do] = ACTIONS(2020), + [anon_sym_for] = ACTIONS(2020), + [anon_sym_return] = ACTIONS(2020), + [anon_sym_break] = ACTIONS(2020), + [anon_sym_continue] = ACTIONS(2020), + [anon_sym_goto] = ACTIONS(2020), + [anon_sym___try] = ACTIONS(2020), + [anon_sym___leave] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2020), + [anon_sym_compl] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2020), + [anon_sym___alignof__] = ACTIONS(2020), + [anon_sym___alignof] = ACTIONS(2020), + [anon_sym__alignof] = ACTIONS(2020), + [anon_sym_alignof] = ACTIONS(2020), + [anon_sym__Alignof] = ACTIONS(2020), + [anon_sym_offsetof] = ACTIONS(2020), + [anon_sym__Generic] = ACTIONS(2020), + [anon_sym_asm] = ACTIONS(2020), + [anon_sym___asm__] = ACTIONS(2020), + [anon_sym___asm] = ACTIONS(2020), + [sym_number_literal] = ACTIONS(2022), + [anon_sym_L_SQUOTE] = ACTIONS(2022), + [anon_sym_u_SQUOTE] = ACTIONS(2022), + [anon_sym_U_SQUOTE] = ACTIONS(2022), + [anon_sym_u8_SQUOTE] = ACTIONS(2022), + [anon_sym_SQUOTE] = ACTIONS(2022), + [anon_sym_L_DQUOTE] = ACTIONS(2022), + [anon_sym_u_DQUOTE] = ACTIONS(2022), + [anon_sym_U_DQUOTE] = ACTIONS(2022), + [anon_sym_u8_DQUOTE] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2022), + [sym_true] = ACTIONS(2020), + [sym_false] = ACTIONS(2020), + [anon_sym_NULL] = ACTIONS(2020), + [anon_sym_nullptr] = ACTIONS(2020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2020), + [anon_sym_decltype] = ACTIONS(2020), + [anon_sym_explicit] = ACTIONS(2020), + [anon_sym_typename] = ACTIONS(2020), + [anon_sym_template] = ACTIONS(2020), + [anon_sym_operator] = ACTIONS(2020), + [anon_sym_try] = ACTIONS(2020), + [anon_sym_delete] = ACTIONS(2020), + [anon_sym_throw] = ACTIONS(2020), + [anon_sym_namespace] = ACTIONS(2020), + [anon_sym_using] = ACTIONS(2020), + [anon_sym_static_assert] = ACTIONS(2020), + [anon_sym_concept] = ACTIONS(2020), + [anon_sym_co_return] = ACTIONS(2020), + [anon_sym_co_yield] = ACTIONS(2020), + [anon_sym_R_DQUOTE] = ACTIONS(2022), + [anon_sym_LR_DQUOTE] = ACTIONS(2022), + [anon_sym_uR_DQUOTE] = ACTIONS(2022), + [anon_sym_UR_DQUOTE] = ACTIONS(2022), + [anon_sym_u8R_DQUOTE] = ACTIONS(2022), + [anon_sym_co_await] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2020), + [anon_sym_requires] = ACTIONS(2020), + [sym_this] = ACTIONS(2020), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_FORWARD] = ACTIONS(2020), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2020), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_PS_GET] = ACTIONS(2020), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2020), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2020), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2020), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2020), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2020), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2020), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2020), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2020), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2020), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2020), + [anon_sym_MOZ_COLD] = ACTIONS(2020), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2020), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2020), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2020), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2020), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2020), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2020), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2020), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2020), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2020), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2020), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2020), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2020), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2020), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2020), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2020), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2020), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2020), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2020), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2020), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2020), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_NONNULL] = ACTIONS(2020), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2020), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2020), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2020), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2020), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2020), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_NORETURN] = ACTIONS(2020), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2020), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2020), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2020), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2020), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2020), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2020), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2020), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2020), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2020), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2020), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2020), + [anon_sym_MOZ_RAII] = ACTIONS(2020), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2020), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2020), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2020), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2020), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2020), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2020), + }, + [STATE(162)] = { + [sym_identifier] = ACTIONS(2024), + [aux_sym_preproc_include_token1] = ACTIONS(2024), + [aux_sym_preproc_def_token1] = ACTIONS(2024), + [aux_sym_preproc_if_token1] = ACTIONS(2024), + [aux_sym_preproc_if_token2] = ACTIONS(2024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2024), + [aux_sym_preproc_else_token1] = ACTIONS(2024), + [aux_sym_preproc_elif_token1] = ACTIONS(2024), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2024), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2024), + [sym_preproc_directive] = ACTIONS(2024), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2026), + [anon_sym_TILDE] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_typedef] = ACTIONS(2024), + [anon_sym_virtual] = ACTIONS(2024), + [anon_sym_extern] = ACTIONS(2024), + [anon_sym___attribute__] = ACTIONS(2024), + [anon_sym___attribute] = ACTIONS(2024), + [anon_sym_COLON_COLON] = ACTIONS(2026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2026), + [anon_sym___declspec] = ACTIONS(2024), + [anon_sym___based] = ACTIONS(2024), + [anon_sym___cdecl] = ACTIONS(2024), + [anon_sym___clrcall] = ACTIONS(2024), + [anon_sym___stdcall] = ACTIONS(2024), + [anon_sym___fastcall] = ACTIONS(2024), + [anon_sym___thiscall] = ACTIONS(2024), + [anon_sym___vectorcall] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_signed] = ACTIONS(2024), + [anon_sym_unsigned] = ACTIONS(2024), + [anon_sym_long] = ACTIONS(2024), + [anon_sym_short] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_static] = ACTIONS(2024), + [anon_sym_register] = ACTIONS(2024), + [anon_sym_inline] = ACTIONS(2024), + [anon_sym___inline] = ACTIONS(2024), + [anon_sym___inline__] = ACTIONS(2024), + [anon_sym___forceinline] = ACTIONS(2024), + [anon_sym_thread_local] = ACTIONS(2024), + [anon_sym___thread] = ACTIONS(2024), + [anon_sym_const] = ACTIONS(2024), + [anon_sym_constexpr] = ACTIONS(2024), + [anon_sym_volatile] = ACTIONS(2024), + [anon_sym_restrict] = ACTIONS(2024), + [anon_sym___restrict__] = ACTIONS(2024), + [anon_sym__Atomic] = ACTIONS(2024), + [anon_sym__Noreturn] = ACTIONS(2024), + [anon_sym_noreturn] = ACTIONS(2024), + [anon_sym__Nonnull] = ACTIONS(2024), + [anon_sym_mutable] = ACTIONS(2024), + [anon_sym_constinit] = ACTIONS(2024), + [anon_sym_consteval] = ACTIONS(2024), + [anon_sym_alignas] = ACTIONS(2024), + [anon_sym__Alignas] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2024), + [anon_sym_enum] = ACTIONS(2024), + [anon_sym_class] = ACTIONS(2024), + [anon_sym_struct] = ACTIONS(2024), + [anon_sym_union] = ACTIONS(2024), + [anon_sym_if] = ACTIONS(2024), + [anon_sym_else] = ACTIONS(2024), + [anon_sym_switch] = ACTIONS(2024), + [anon_sym_case] = ACTIONS(2024), + [anon_sym_default] = ACTIONS(2024), + [anon_sym_while] = ACTIONS(2024), + [anon_sym_do] = ACTIONS(2024), + [anon_sym_for] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2024), + [anon_sym_break] = ACTIONS(2024), + [anon_sym_continue] = ACTIONS(2024), + [anon_sym_goto] = ACTIONS(2024), + [anon_sym___try] = ACTIONS(2024), + [anon_sym___leave] = ACTIONS(2024), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_compl] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2024), + [anon_sym__Generic] = ACTIONS(2024), + [anon_sym_asm] = ACTIONS(2024), + [anon_sym___asm__] = ACTIONS(2024), + [anon_sym___asm] = ACTIONS(2024), + [sym_number_literal] = ACTIONS(2026), + [anon_sym_L_SQUOTE] = ACTIONS(2026), + [anon_sym_u_SQUOTE] = ACTIONS(2026), + [anon_sym_U_SQUOTE] = ACTIONS(2026), + [anon_sym_u8_SQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2026), + [anon_sym_L_DQUOTE] = ACTIONS(2026), + [anon_sym_u_DQUOTE] = ACTIONS(2026), + [anon_sym_U_DQUOTE] = ACTIONS(2026), + [anon_sym_u8_DQUOTE] = ACTIONS(2026), + [anon_sym_DQUOTE] = ACTIONS(2026), + [sym_true] = ACTIONS(2024), + [sym_false] = ACTIONS(2024), + [anon_sym_NULL] = ACTIONS(2024), + [anon_sym_nullptr] = ACTIONS(2024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2024), + [anon_sym_decltype] = ACTIONS(2024), + [anon_sym_explicit] = ACTIONS(2024), + [anon_sym_typename] = ACTIONS(2024), + [anon_sym_template] = ACTIONS(2024), + [anon_sym_operator] = ACTIONS(2024), + [anon_sym_try] = ACTIONS(2024), + [anon_sym_delete] = ACTIONS(2024), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_namespace] = ACTIONS(2024), + [anon_sym_using] = ACTIONS(2024), + [anon_sym_static_assert] = ACTIONS(2024), + [anon_sym_concept] = ACTIONS(2024), + [anon_sym_co_return] = ACTIONS(2024), + [anon_sym_co_yield] = ACTIONS(2024), + [anon_sym_R_DQUOTE] = ACTIONS(2026), + [anon_sym_LR_DQUOTE] = ACTIONS(2026), + [anon_sym_uR_DQUOTE] = ACTIONS(2026), + [anon_sym_UR_DQUOTE] = ACTIONS(2026), + [anon_sym_u8R_DQUOTE] = ACTIONS(2026), + [anon_sym_co_await] = ACTIONS(2024), + [anon_sym_new] = ACTIONS(2024), + [anon_sym_requires] = ACTIONS(2024), + [sym_this] = ACTIONS(2024), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_FORWARD] = ACTIONS(2024), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2024), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_PS_GET] = ACTIONS(2024), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2024), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2024), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2024), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2024), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2024), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2024), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2024), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2024), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2024), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2024), + [anon_sym_MOZ_COLD] = ACTIONS(2024), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2024), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2024), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2024), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2024), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2024), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2024), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2024), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2024), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2024), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2024), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2024), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2024), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2024), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2024), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2024), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2024), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2024), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2024), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2024), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2024), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_NONNULL] = ACTIONS(2024), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2024), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2024), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2024), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2024), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2024), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_NORETURN] = ACTIONS(2024), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2024), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2024), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2024), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2024), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2024), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2024), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2024), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2024), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2024), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2024), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2024), + [anon_sym_MOZ_RAII] = ACTIONS(2024), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2024), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2024), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2024), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2024), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2024), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2024), + }, + [STATE(163)] = { + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2028), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token2] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [aux_sym_preproc_else_token1] = ACTIONS(2028), + [aux_sym_preproc_elif_token1] = ACTIONS(2028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2028), + [sym_preproc_directive] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym___extension__] = ACTIONS(2028), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_virtual] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym_COLON_COLON] = ACTIONS(2030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2030), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___based] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [anon_sym___inline] = ACTIONS(2028), + [anon_sym___inline__] = ACTIONS(2028), + [anon_sym___forceinline] = ACTIONS(2028), + [anon_sym_thread_local] = ACTIONS(2028), + [anon_sym___thread] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_constexpr] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym___restrict__] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym__Noreturn] = ACTIONS(2028), + [anon_sym_noreturn] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym_mutable] = ACTIONS(2028), + [anon_sym_constinit] = ACTIONS(2028), + [anon_sym_consteval] = ACTIONS(2028), + [anon_sym_alignas] = ACTIONS(2028), + [anon_sym__Alignas] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_class] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_else] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym___try] = ACTIONS(2028), + [anon_sym___leave] = ACTIONS(2028), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [anon_sym___alignof__] = ACTIONS(2028), + [anon_sym___alignof] = ACTIONS(2028), + [anon_sym__alignof] = ACTIONS(2028), + [anon_sym_alignof] = ACTIONS(2028), + [anon_sym__Alignof] = ACTIONS(2028), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2028), + [anon_sym___asm__] = ACTIONS(2028), + [anon_sym___asm] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [anon_sym_NULL] = ACTIONS(2028), + [anon_sym_nullptr] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2028), + [anon_sym_decltype] = ACTIONS(2028), + [anon_sym_explicit] = ACTIONS(2028), + [anon_sym_typename] = ACTIONS(2028), + [anon_sym_template] = ACTIONS(2028), + [anon_sym_operator] = ACTIONS(2028), + [anon_sym_try] = ACTIONS(2028), + [anon_sym_delete] = ACTIONS(2028), + [anon_sym_throw] = ACTIONS(2028), + [anon_sym_namespace] = ACTIONS(2028), + [anon_sym_using] = ACTIONS(2028), + [anon_sym_static_assert] = ACTIONS(2028), + [anon_sym_concept] = ACTIONS(2028), + [anon_sym_co_return] = ACTIONS(2028), + [anon_sym_co_yield] = ACTIONS(2028), + [anon_sym_R_DQUOTE] = ACTIONS(2030), + [anon_sym_LR_DQUOTE] = ACTIONS(2030), + [anon_sym_uR_DQUOTE] = ACTIONS(2030), + [anon_sym_UR_DQUOTE] = ACTIONS(2030), + [anon_sym_u8R_DQUOTE] = ACTIONS(2030), + [anon_sym_co_await] = ACTIONS(2028), + [anon_sym_new] = ACTIONS(2028), + [anon_sym_requires] = ACTIONS(2028), + [sym_this] = ACTIONS(2028), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_FORWARD] = ACTIONS(2028), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_PS_GET] = ACTIONS(2028), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2028), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2028), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2028), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2028), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2028), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2028), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2028), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2028), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2028), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2028), + [anon_sym_MOZ_COLD] = ACTIONS(2028), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2028), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2028), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2028), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2028), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2028), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2028), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2028), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2028), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2028), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2028), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2028), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2028), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2028), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2028), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2028), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2028), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2028), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2028), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2028), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2028), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_NONNULL] = ACTIONS(2028), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2028), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2028), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2028), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2028), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2028), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_NORETURN] = ACTIONS(2028), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2028), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2028), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2028), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2028), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2028), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2028), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2028), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2028), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2028), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2028), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2028), + [anon_sym_MOZ_RAII] = ACTIONS(2028), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2028), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2028), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2028), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2028), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2028), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2028), + }, + [STATE(164)] = { + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2032), + [aux_sym_preproc_def_token1] = ACTIONS(2032), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_if_token2] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [aux_sym_preproc_else_token1] = ACTIONS(2032), + [aux_sym_preproc_elif_token1] = ACTIONS(2032), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_AMP_AMP] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_virtual] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2034), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___based] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_LBRACK] = ACTIONS(2032), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [anon_sym___inline] = ACTIONS(2032), + [anon_sym___inline__] = ACTIONS(2032), + [anon_sym___forceinline] = ACTIONS(2032), + [anon_sym_thread_local] = ACTIONS(2032), + [anon_sym___thread] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_constexpr] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym___restrict__] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym__Noreturn] = ACTIONS(2032), + [anon_sym_noreturn] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym_mutable] = ACTIONS(2032), + [anon_sym_constinit] = ACTIONS(2032), + [anon_sym_consteval] = ACTIONS(2032), + [anon_sym_alignas] = ACTIONS(2032), + [anon_sym__Alignas] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_class] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_else] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym___try] = ACTIONS(2032), + [anon_sym___leave] = ACTIONS(2032), + [anon_sym_not] = ACTIONS(2032), + [anon_sym_compl] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [anon_sym___alignof__] = ACTIONS(2032), + [anon_sym___alignof] = ACTIONS(2032), + [anon_sym__alignof] = ACTIONS(2032), + [anon_sym_alignof] = ACTIONS(2032), + [anon_sym__Alignof] = ACTIONS(2032), + [anon_sym_offsetof] = ACTIONS(2032), + [anon_sym__Generic] = ACTIONS(2032), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [anon_sym___asm] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [anon_sym_NULL] = ACTIONS(2032), + [anon_sym_nullptr] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2032), + [anon_sym_decltype] = ACTIONS(2032), + [anon_sym_explicit] = ACTIONS(2032), + [anon_sym_typename] = ACTIONS(2032), + [anon_sym_template] = ACTIONS(2032), + [anon_sym_operator] = ACTIONS(2032), + [anon_sym_try] = ACTIONS(2032), + [anon_sym_delete] = ACTIONS(2032), + [anon_sym_throw] = ACTIONS(2032), + [anon_sym_namespace] = ACTIONS(2032), + [anon_sym_using] = ACTIONS(2032), + [anon_sym_static_assert] = ACTIONS(2032), + [anon_sym_concept] = ACTIONS(2032), + [anon_sym_co_return] = ACTIONS(2032), + [anon_sym_co_yield] = ACTIONS(2032), + [anon_sym_R_DQUOTE] = ACTIONS(2034), + [anon_sym_LR_DQUOTE] = ACTIONS(2034), + [anon_sym_uR_DQUOTE] = ACTIONS(2034), + [anon_sym_UR_DQUOTE] = ACTIONS(2034), + [anon_sym_u8R_DQUOTE] = ACTIONS(2034), + [anon_sym_co_await] = ACTIONS(2032), + [anon_sym_new] = ACTIONS(2032), + [anon_sym_requires] = ACTIONS(2032), + [sym_this] = ACTIONS(2032), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_FORWARD] = ACTIONS(2032), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_PS_GET] = ACTIONS(2032), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2032), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2032), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2032), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2032), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2032), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2032), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2032), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2032), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2032), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2032), + [anon_sym_MOZ_COLD] = ACTIONS(2032), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2032), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2032), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2032), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2032), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2032), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2032), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2032), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2032), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2032), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2032), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2032), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2032), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2032), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2032), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2032), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2032), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2032), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2032), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2032), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2032), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_NONNULL] = ACTIONS(2032), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2032), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2032), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2032), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2032), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2032), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_NORETURN] = ACTIONS(2032), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2032), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2032), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2032), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2032), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2032), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2032), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2032), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2032), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2032), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2032), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2032), + [anon_sym_MOZ_RAII] = ACTIONS(2032), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2032), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2032), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2032), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2032), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2032), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2032), + }, + [STATE(165)] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2036), + [aux_sym_preproc_def_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [aux_sym_preproc_else_token1] = ACTIONS(2036), + [aux_sym_preproc_elif_token1] = ACTIONS(2036), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2036), + [sym_preproc_directive] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_AMP_AMP] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym___extension__] = ACTIONS(2036), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_virtual] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym_COLON_COLON] = ACTIONS(2038), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2038), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___based] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [anon_sym___inline] = ACTIONS(2036), + [anon_sym___inline__] = ACTIONS(2036), + [anon_sym___forceinline] = ACTIONS(2036), + [anon_sym_thread_local] = ACTIONS(2036), + [anon_sym___thread] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_constexpr] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym___restrict__] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym__Noreturn] = ACTIONS(2036), + [anon_sym_noreturn] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym_mutable] = ACTIONS(2036), + [anon_sym_constinit] = ACTIONS(2036), + [anon_sym_consteval] = ACTIONS(2036), + [anon_sym_alignas] = ACTIONS(2036), + [anon_sym__Alignas] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_class] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_else] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym___try] = ACTIONS(2036), + [anon_sym___leave] = ACTIONS(2036), + [anon_sym_not] = ACTIONS(2036), + [anon_sym_compl] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [anon_sym___alignof__] = ACTIONS(2036), + [anon_sym___alignof] = ACTIONS(2036), + [anon_sym__alignof] = ACTIONS(2036), + [anon_sym_alignof] = ACTIONS(2036), + [anon_sym__Alignof] = ACTIONS(2036), + [anon_sym_offsetof] = ACTIONS(2036), + [anon_sym__Generic] = ACTIONS(2036), + [anon_sym_asm] = ACTIONS(2036), + [anon_sym___asm__] = ACTIONS(2036), + [anon_sym___asm] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [anon_sym_NULL] = ACTIONS(2036), + [anon_sym_nullptr] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2036), + [anon_sym_decltype] = ACTIONS(2036), + [anon_sym_explicit] = ACTIONS(2036), + [anon_sym_typename] = ACTIONS(2036), + [anon_sym_template] = ACTIONS(2036), + [anon_sym_operator] = ACTIONS(2036), + [anon_sym_try] = ACTIONS(2036), + [anon_sym_delete] = ACTIONS(2036), + [anon_sym_throw] = ACTIONS(2036), + [anon_sym_namespace] = ACTIONS(2036), + [anon_sym_using] = ACTIONS(2036), + [anon_sym_static_assert] = ACTIONS(2036), + [anon_sym_concept] = ACTIONS(2036), + [anon_sym_co_return] = ACTIONS(2036), + [anon_sym_co_yield] = ACTIONS(2036), + [anon_sym_R_DQUOTE] = ACTIONS(2038), + [anon_sym_LR_DQUOTE] = ACTIONS(2038), + [anon_sym_uR_DQUOTE] = ACTIONS(2038), + [anon_sym_UR_DQUOTE] = ACTIONS(2038), + [anon_sym_u8R_DQUOTE] = ACTIONS(2038), + [anon_sym_co_await] = ACTIONS(2036), + [anon_sym_new] = ACTIONS(2036), + [anon_sym_requires] = ACTIONS(2036), + [sym_this] = ACTIONS(2036), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_FORWARD] = ACTIONS(2036), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_PS_GET] = ACTIONS(2036), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2036), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2036), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2036), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2036), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2036), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2036), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2036), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2036), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2036), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2036), + [anon_sym_MOZ_COLD] = ACTIONS(2036), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2036), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2036), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2036), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2036), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2036), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2036), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2036), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2036), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2036), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2036), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2036), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2036), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2036), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2036), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2036), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2036), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2036), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2036), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2036), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2036), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_NONNULL] = ACTIONS(2036), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2036), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2036), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2036), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2036), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2036), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_NORETURN] = ACTIONS(2036), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2036), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2036), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2036), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2036), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2036), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2036), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2036), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2036), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2036), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2036), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2036), + [anon_sym_MOZ_RAII] = ACTIONS(2036), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2036), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2036), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2036), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2036), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2036), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2036), + }, + [STATE(166)] = { + [sym_identifier] = ACTIONS(2040), + [aux_sym_preproc_include_token1] = ACTIONS(2040), + [aux_sym_preproc_def_token1] = ACTIONS(2040), + [aux_sym_preproc_if_token1] = ACTIONS(2040), + [aux_sym_preproc_if_token2] = ACTIONS(2040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2040), + [aux_sym_preproc_else_token1] = ACTIONS(2040), + [aux_sym_preproc_elif_token1] = ACTIONS(2040), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2040), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2040), + [sym_preproc_directive] = ACTIONS(2040), + [anon_sym_LPAREN2] = ACTIONS(2042), + [anon_sym_BANG] = ACTIONS(2042), + [anon_sym_TILDE] = ACTIONS(2042), + [anon_sym_DASH] = ACTIONS(2040), + [anon_sym_PLUS] = ACTIONS(2040), + [anon_sym_STAR] = ACTIONS(2042), + [anon_sym_AMP_AMP] = ACTIONS(2042), + [anon_sym_AMP] = ACTIONS(2040), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym___extension__] = ACTIONS(2040), + [anon_sym_typedef] = ACTIONS(2040), + [anon_sym_virtual] = ACTIONS(2040), + [anon_sym_extern] = ACTIONS(2040), + [anon_sym___attribute__] = ACTIONS(2040), + [anon_sym___attribute] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(2042), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2042), + [anon_sym___declspec] = ACTIONS(2040), + [anon_sym___based] = ACTIONS(2040), + [anon_sym___cdecl] = ACTIONS(2040), + [anon_sym___clrcall] = ACTIONS(2040), + [anon_sym___stdcall] = ACTIONS(2040), + [anon_sym___fastcall] = ACTIONS(2040), + [anon_sym___thiscall] = ACTIONS(2040), + [anon_sym___vectorcall] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2042), + [anon_sym_signed] = ACTIONS(2040), + [anon_sym_unsigned] = ACTIONS(2040), + [anon_sym_long] = ACTIONS(2040), + [anon_sym_short] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(2040), + [anon_sym_static] = ACTIONS(2040), + [anon_sym_register] = ACTIONS(2040), + [anon_sym_inline] = ACTIONS(2040), + [anon_sym___inline] = ACTIONS(2040), + [anon_sym___inline__] = ACTIONS(2040), + [anon_sym___forceinline] = ACTIONS(2040), + [anon_sym_thread_local] = ACTIONS(2040), + [anon_sym___thread] = ACTIONS(2040), + [anon_sym_const] = ACTIONS(2040), + [anon_sym_constexpr] = ACTIONS(2040), + [anon_sym_volatile] = ACTIONS(2040), + [anon_sym_restrict] = ACTIONS(2040), + [anon_sym___restrict__] = ACTIONS(2040), + [anon_sym__Atomic] = ACTIONS(2040), + [anon_sym__Noreturn] = ACTIONS(2040), + [anon_sym_noreturn] = ACTIONS(2040), + [anon_sym__Nonnull] = ACTIONS(2040), + [anon_sym_mutable] = ACTIONS(2040), + [anon_sym_constinit] = ACTIONS(2040), + [anon_sym_consteval] = ACTIONS(2040), + [anon_sym_alignas] = ACTIONS(2040), + [anon_sym__Alignas] = ACTIONS(2040), + [sym_primitive_type] = ACTIONS(2040), + [anon_sym_enum] = ACTIONS(2040), + [anon_sym_class] = ACTIONS(2040), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2040), + [anon_sym_if] = ACTIONS(2040), + [anon_sym_else] = ACTIONS(2040), + [anon_sym_switch] = ACTIONS(2040), + [anon_sym_case] = ACTIONS(2040), + [anon_sym_default] = ACTIONS(2040), + [anon_sym_while] = ACTIONS(2040), + [anon_sym_do] = ACTIONS(2040), + [anon_sym_for] = ACTIONS(2040), + [anon_sym_return] = ACTIONS(2040), + [anon_sym_break] = ACTIONS(2040), + [anon_sym_continue] = ACTIONS(2040), + [anon_sym_goto] = ACTIONS(2040), + [anon_sym___try] = ACTIONS(2040), + [anon_sym___leave] = ACTIONS(2040), + [anon_sym_not] = ACTIONS(2040), + [anon_sym_compl] = ACTIONS(2040), + [anon_sym_DASH_DASH] = ACTIONS(2042), + [anon_sym_PLUS_PLUS] = ACTIONS(2042), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2040), + [anon_sym___alignof] = ACTIONS(2040), + [anon_sym__alignof] = ACTIONS(2040), + [anon_sym_alignof] = ACTIONS(2040), + [anon_sym__Alignof] = ACTIONS(2040), + [anon_sym_offsetof] = ACTIONS(2040), + [anon_sym__Generic] = ACTIONS(2040), + [anon_sym_asm] = ACTIONS(2040), + [anon_sym___asm__] = ACTIONS(2040), + [anon_sym___asm] = ACTIONS(2040), + [sym_number_literal] = ACTIONS(2042), + [anon_sym_L_SQUOTE] = ACTIONS(2042), + [anon_sym_u_SQUOTE] = ACTIONS(2042), + [anon_sym_U_SQUOTE] = ACTIONS(2042), + [anon_sym_u8_SQUOTE] = ACTIONS(2042), + [anon_sym_SQUOTE] = ACTIONS(2042), + [anon_sym_L_DQUOTE] = ACTIONS(2042), + [anon_sym_u_DQUOTE] = ACTIONS(2042), + [anon_sym_U_DQUOTE] = ACTIONS(2042), + [anon_sym_u8_DQUOTE] = ACTIONS(2042), + [anon_sym_DQUOTE] = ACTIONS(2042), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2040), + [anon_sym_decltype] = ACTIONS(2040), + [anon_sym_explicit] = ACTIONS(2040), + [anon_sym_typename] = ACTIONS(2040), + [anon_sym_template] = ACTIONS(2040), + [anon_sym_operator] = ACTIONS(2040), + [anon_sym_try] = ACTIONS(2040), + [anon_sym_delete] = ACTIONS(2040), + [anon_sym_throw] = ACTIONS(2040), + [anon_sym_namespace] = ACTIONS(2040), + [anon_sym_using] = ACTIONS(2040), + [anon_sym_static_assert] = ACTIONS(2040), + [anon_sym_concept] = ACTIONS(2040), + [anon_sym_co_return] = ACTIONS(2040), + [anon_sym_co_yield] = ACTIONS(2040), + [anon_sym_R_DQUOTE] = ACTIONS(2042), + [anon_sym_LR_DQUOTE] = ACTIONS(2042), + [anon_sym_uR_DQUOTE] = ACTIONS(2042), + [anon_sym_UR_DQUOTE] = ACTIONS(2042), + [anon_sym_u8R_DQUOTE] = ACTIONS(2042), + [anon_sym_co_await] = ACTIONS(2040), + [anon_sym_new] = ACTIONS(2040), + [anon_sym_requires] = ACTIONS(2040), + [sym_this] = ACTIONS(2040), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_FORWARD] = ACTIONS(2040), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2040), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_PS_GET] = ACTIONS(2040), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2040), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2040), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2040), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2040), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2040), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2040), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2040), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2040), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2040), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2040), + [anon_sym_MOZ_COLD] = ACTIONS(2040), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2040), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2040), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2040), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2040), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2040), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2040), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2040), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2040), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2040), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2040), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2040), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2040), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2040), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2040), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2040), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2040), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2040), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2040), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2040), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2040), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_NONNULL] = ACTIONS(2040), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2040), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2040), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2040), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2040), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2040), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_NORETURN] = ACTIONS(2040), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2040), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2040), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2040), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2040), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2040), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2040), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2040), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2040), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2040), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2040), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2040), + [anon_sym_MOZ_RAII] = ACTIONS(2040), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2040), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2040), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2040), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2040), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2040), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2040), + }, + [STATE(167)] = { + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2044), + [aux_sym_preproc_def_token1] = ACTIONS(2044), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_if_token2] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [aux_sym_preproc_else_token1] = ACTIONS(2044), + [aux_sym_preproc_elif_token1] = ACTIONS(2044), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2044), + [sym_preproc_directive] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_AMP_AMP] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2044), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym___extension__] = ACTIONS(2044), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym_COLON_COLON] = ACTIONS(2046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2046), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___based] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [anon_sym_LBRACK] = ACTIONS(2044), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [anon_sym___inline] = ACTIONS(2044), + [anon_sym___inline__] = ACTIONS(2044), + [anon_sym___forceinline] = ACTIONS(2044), + [anon_sym_thread_local] = ACTIONS(2044), + [anon_sym___thread] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_constexpr] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym___restrict__] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym__Noreturn] = ACTIONS(2044), + [anon_sym_noreturn] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym_mutable] = ACTIONS(2044), + [anon_sym_constinit] = ACTIONS(2044), + [anon_sym_consteval] = ACTIONS(2044), + [anon_sym_alignas] = ACTIONS(2044), + [anon_sym__Alignas] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_class] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_else] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym___try] = ACTIONS(2044), + [anon_sym___leave] = ACTIONS(2044), + [anon_sym_not] = ACTIONS(2044), + [anon_sym_compl] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [anon_sym___alignof__] = ACTIONS(2044), + [anon_sym___alignof] = ACTIONS(2044), + [anon_sym__alignof] = ACTIONS(2044), + [anon_sym_alignof] = ACTIONS(2044), + [anon_sym__Alignof] = ACTIONS(2044), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2044), + [anon_sym_asm] = ACTIONS(2044), + [anon_sym___asm__] = ACTIONS(2044), + [anon_sym___asm] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [anon_sym_NULL] = ACTIONS(2044), + [anon_sym_nullptr] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2044), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_explicit] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(2044), + [anon_sym_operator] = ACTIONS(2044), + [anon_sym_try] = ACTIONS(2044), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_throw] = ACTIONS(2044), + [anon_sym_namespace] = ACTIONS(2044), + [anon_sym_using] = ACTIONS(2044), + [anon_sym_static_assert] = ACTIONS(2044), + [anon_sym_concept] = ACTIONS(2044), + [anon_sym_co_return] = ACTIONS(2044), + [anon_sym_co_yield] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2044), + [anon_sym_new] = ACTIONS(2044), + [anon_sym_requires] = ACTIONS(2044), + [sym_this] = ACTIONS(2044), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_FORWARD] = ACTIONS(2044), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_PS_GET] = ACTIONS(2044), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2044), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2044), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2044), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2044), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2044), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2044), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2044), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2044), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2044), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2044), + [anon_sym_MOZ_COLD] = ACTIONS(2044), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2044), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2044), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2044), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2044), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2044), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2044), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2044), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2044), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2044), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2044), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2044), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2044), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2044), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2044), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2044), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2044), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2044), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2044), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2044), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2044), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_NONNULL] = ACTIONS(2044), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2044), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2044), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2044), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2044), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2044), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_NORETURN] = ACTIONS(2044), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2044), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2044), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2044), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2044), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2044), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2044), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2044), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2044), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2044), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2044), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2044), + [anon_sym_MOZ_RAII] = ACTIONS(2044), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2044), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2044), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2044), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2044), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2044), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2044), + }, + [STATE(168)] = { + [sym_identifier] = ACTIONS(2048), + [aux_sym_preproc_include_token1] = ACTIONS(2048), + [aux_sym_preproc_def_token1] = ACTIONS(2048), + [aux_sym_preproc_if_token1] = ACTIONS(2048), + [aux_sym_preproc_if_token2] = ACTIONS(2048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2048), + [aux_sym_preproc_else_token1] = ACTIONS(2048), + [aux_sym_preproc_elif_token1] = ACTIONS(2048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2048), + [sym_preproc_directive] = ACTIONS(2048), + [anon_sym_LPAREN2] = ACTIONS(2050), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_TILDE] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2048), + [anon_sym_PLUS] = ACTIONS(2048), + [anon_sym_STAR] = ACTIONS(2050), + [anon_sym_AMP_AMP] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym___extension__] = ACTIONS(2048), + [anon_sym_typedef] = ACTIONS(2048), + [anon_sym_virtual] = ACTIONS(2048), + [anon_sym_extern] = ACTIONS(2048), + [anon_sym___attribute__] = ACTIONS(2048), + [anon_sym___attribute] = ACTIONS(2048), + [anon_sym_COLON_COLON] = ACTIONS(2050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2050), + [anon_sym___declspec] = ACTIONS(2048), + [anon_sym___based] = ACTIONS(2048), + [anon_sym___cdecl] = ACTIONS(2048), + [anon_sym___clrcall] = ACTIONS(2048), + [anon_sym___stdcall] = ACTIONS(2048), + [anon_sym___fastcall] = ACTIONS(2048), + [anon_sym___thiscall] = ACTIONS(2048), + [anon_sym___vectorcall] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2050), + [anon_sym_signed] = ACTIONS(2048), + [anon_sym_unsigned] = ACTIONS(2048), + [anon_sym_long] = ACTIONS(2048), + [anon_sym_short] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(2048), + [anon_sym_static] = ACTIONS(2048), + [anon_sym_register] = ACTIONS(2048), + [anon_sym_inline] = ACTIONS(2048), + [anon_sym___inline] = ACTIONS(2048), + [anon_sym___inline__] = ACTIONS(2048), + [anon_sym___forceinline] = ACTIONS(2048), + [anon_sym_thread_local] = ACTIONS(2048), + [anon_sym___thread] = ACTIONS(2048), + [anon_sym_const] = ACTIONS(2048), + [anon_sym_constexpr] = ACTIONS(2048), + [anon_sym_volatile] = ACTIONS(2048), + [anon_sym_restrict] = ACTIONS(2048), + [anon_sym___restrict__] = ACTIONS(2048), + [anon_sym__Atomic] = ACTIONS(2048), + [anon_sym__Noreturn] = ACTIONS(2048), + [anon_sym_noreturn] = ACTIONS(2048), + [anon_sym__Nonnull] = ACTIONS(2048), + [anon_sym_mutable] = ACTIONS(2048), + [anon_sym_constinit] = ACTIONS(2048), + [anon_sym_consteval] = ACTIONS(2048), + [anon_sym_alignas] = ACTIONS(2048), + [anon_sym__Alignas] = ACTIONS(2048), + [sym_primitive_type] = ACTIONS(2048), + [anon_sym_enum] = ACTIONS(2048), + [anon_sym_class] = ACTIONS(2048), + [anon_sym_struct] = ACTIONS(2048), + [anon_sym_union] = ACTIONS(2048), + [anon_sym_if] = ACTIONS(2048), + [anon_sym_else] = ACTIONS(2048), + [anon_sym_switch] = ACTIONS(2048), + [anon_sym_case] = ACTIONS(2048), + [anon_sym_default] = ACTIONS(2048), + [anon_sym_while] = ACTIONS(2048), + [anon_sym_do] = ACTIONS(2048), + [anon_sym_for] = ACTIONS(2048), + [anon_sym_return] = ACTIONS(2048), + [anon_sym_break] = ACTIONS(2048), + [anon_sym_continue] = ACTIONS(2048), + [anon_sym_goto] = ACTIONS(2048), + [anon_sym___try] = ACTIONS(2048), + [anon_sym___leave] = ACTIONS(2048), + [anon_sym_not] = ACTIONS(2048), + [anon_sym_compl] = ACTIONS(2048), + [anon_sym_DASH_DASH] = ACTIONS(2050), + [anon_sym_PLUS_PLUS] = ACTIONS(2050), + [anon_sym_sizeof] = ACTIONS(2048), + [anon_sym___alignof__] = ACTIONS(2048), + [anon_sym___alignof] = ACTIONS(2048), + [anon_sym__alignof] = ACTIONS(2048), + [anon_sym_alignof] = ACTIONS(2048), + [anon_sym__Alignof] = ACTIONS(2048), + [anon_sym_offsetof] = ACTIONS(2048), + [anon_sym__Generic] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2048), + [anon_sym___asm__] = ACTIONS(2048), + [anon_sym___asm] = ACTIONS(2048), + [sym_number_literal] = ACTIONS(2050), + [anon_sym_L_SQUOTE] = ACTIONS(2050), + [anon_sym_u_SQUOTE] = ACTIONS(2050), + [anon_sym_U_SQUOTE] = ACTIONS(2050), + [anon_sym_u8_SQUOTE] = ACTIONS(2050), + [anon_sym_SQUOTE] = ACTIONS(2050), + [anon_sym_L_DQUOTE] = ACTIONS(2050), + [anon_sym_u_DQUOTE] = ACTIONS(2050), + [anon_sym_U_DQUOTE] = ACTIONS(2050), + [anon_sym_u8_DQUOTE] = ACTIONS(2050), + [anon_sym_DQUOTE] = ACTIONS(2050), + [sym_true] = ACTIONS(2048), + [sym_false] = ACTIONS(2048), + [anon_sym_NULL] = ACTIONS(2048), + [anon_sym_nullptr] = ACTIONS(2048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2048), + [anon_sym_decltype] = ACTIONS(2048), + [anon_sym_explicit] = ACTIONS(2048), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_template] = ACTIONS(2048), + [anon_sym_operator] = ACTIONS(2048), + [anon_sym_try] = ACTIONS(2048), + [anon_sym_delete] = ACTIONS(2048), + [anon_sym_throw] = ACTIONS(2048), + [anon_sym_namespace] = ACTIONS(2048), + [anon_sym_using] = ACTIONS(2048), + [anon_sym_static_assert] = ACTIONS(2048), + [anon_sym_concept] = ACTIONS(2048), + [anon_sym_co_return] = ACTIONS(2048), + [anon_sym_co_yield] = ACTIONS(2048), + [anon_sym_R_DQUOTE] = ACTIONS(2050), + [anon_sym_LR_DQUOTE] = ACTIONS(2050), + [anon_sym_uR_DQUOTE] = ACTIONS(2050), + [anon_sym_UR_DQUOTE] = ACTIONS(2050), + [anon_sym_u8R_DQUOTE] = ACTIONS(2050), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2048), + [anon_sym_requires] = ACTIONS(2048), + [sym_this] = ACTIONS(2048), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_FORWARD] = ACTIONS(2048), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2048), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_PS_GET] = ACTIONS(2048), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2048), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2048), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2048), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2048), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2048), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2048), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2048), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2048), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2048), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2048), + [anon_sym_MOZ_COLD] = ACTIONS(2048), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2048), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2048), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2048), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2048), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2048), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2048), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2048), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2048), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2048), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2048), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2048), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2048), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2048), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2048), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2048), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2048), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2048), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2048), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2048), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2048), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_NONNULL] = ACTIONS(2048), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2048), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2048), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2048), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2048), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2048), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_NORETURN] = ACTIONS(2048), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2048), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2048), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2048), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2048), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2048), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2048), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2048), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2048), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2048), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2048), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2048), + [anon_sym_MOZ_RAII] = ACTIONS(2048), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2048), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2048), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2048), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2048), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2048), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2048), + }, + [STATE(169)] = { + [sym_expression] = STATE(4769), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8475), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(2052), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym___extension__] = ACTIONS(2057), + [anon_sym_virtual] = ACTIONS(1974), + [anon_sym_extern] = ACTIONS(1974), + [anon_sym___attribute__] = ACTIONS(1974), + [anon_sym___attribute] = ACTIONS(1974), + [anon_sym_COLON_COLON] = ACTIONS(2060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1974), + [anon_sym_signed] = ACTIONS(1974), + [anon_sym_unsigned] = ACTIONS(1974), + [anon_sym_long] = ACTIONS(1974), + [anon_sym_short] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_register] = ACTIONS(1974), + [anon_sym_inline] = ACTIONS(1974), + [anon_sym___inline] = ACTIONS(1974), + [anon_sym___inline__] = ACTIONS(1974), + [anon_sym___forceinline] = ACTIONS(1974), + [anon_sym_thread_local] = ACTIONS(1974), + [anon_sym___thread] = ACTIONS(1974), + [anon_sym_const] = ACTIONS(1974), + [anon_sym_constexpr] = ACTIONS(1974), + [anon_sym_volatile] = ACTIONS(1974), + [anon_sym_restrict] = ACTIONS(1974), + [anon_sym___restrict__] = ACTIONS(1974), + [anon_sym__Atomic] = ACTIONS(1974), + [anon_sym__Noreturn] = ACTIONS(1974), + [anon_sym_noreturn] = ACTIONS(1974), + [anon_sym__Nonnull] = ACTIONS(1974), + [anon_sym_mutable] = ACTIONS(1974), + [anon_sym_constinit] = ACTIONS(1974), + [anon_sym_consteval] = ACTIONS(1974), + [anon_sym_alignas] = ACTIONS(1974), + [anon_sym__Alignas] = ACTIONS(1974), + [sym_primitive_type] = ACTIONS(2063), + [anon_sym_enum] = ACTIONS(1974), + [anon_sym_class] = ACTIONS(1974), + [anon_sym_struct] = ACTIONS(1974), + [anon_sym_union] = ACTIONS(1974), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1974), + [anon_sym_decltype] = ACTIONS(2066), + [anon_sym_typename] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(2069), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1974), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1974), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1974), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1974), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1974), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1974), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1974), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1974), + [anon_sym_MOZ_COLD] = ACTIONS(1974), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1974), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1974), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1974), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1974), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1974), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1974), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1974), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1974), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1974), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1974), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1974), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1974), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1974), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1974), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1974), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1974), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1974), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1974), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1974), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1974), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_NONNULL] = ACTIONS(1974), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1974), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1974), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1974), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1974), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1974), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_NORETURN] = ACTIONS(1974), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1974), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1974), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1974), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1974), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1974), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1974), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1974), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1974), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1974), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1974), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1974), + [anon_sym_MOZ_RAII] = ACTIONS(1974), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1974), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1974), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1974), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1974), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1974), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1974), + }, + [STATE(170)] = { + [sym_expression] = STATE(4758), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8539), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym___extension__] = ACTIONS(2077), + [anon_sym_virtual] = ACTIONS(2080), + [anon_sym_extern] = ACTIONS(2080), + [anon_sym___attribute__] = ACTIONS(2080), + [anon_sym___attribute] = ACTIONS(2080), + [anon_sym_COLON_COLON] = ACTIONS(2082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2085), + [anon_sym___declspec] = ACTIONS(2080), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_register] = ACTIONS(2080), + [anon_sym_inline] = ACTIONS(2080), + [anon_sym___inline] = ACTIONS(2080), + [anon_sym___inline__] = ACTIONS(2080), + [anon_sym___forceinline] = ACTIONS(2080), + [anon_sym_thread_local] = ACTIONS(2080), + [anon_sym___thread] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_constexpr] = ACTIONS(2080), + [anon_sym_volatile] = ACTIONS(2080), + [anon_sym_restrict] = ACTIONS(2080), + [anon_sym___restrict__] = ACTIONS(2080), + [anon_sym__Atomic] = ACTIONS(2080), + [anon_sym__Noreturn] = ACTIONS(2080), + [anon_sym_noreturn] = ACTIONS(2080), + [anon_sym__Nonnull] = ACTIONS(2080), + [anon_sym_mutable] = ACTIONS(2080), + [anon_sym_constinit] = ACTIONS(2080), + [anon_sym_consteval] = ACTIONS(2080), + [anon_sym_alignas] = ACTIONS(2080), + [anon_sym__Alignas] = ACTIONS(2080), + [sym_primitive_type] = ACTIONS(2087), + [anon_sym_enum] = ACTIONS(2080), + [anon_sym_class] = ACTIONS(2080), + [anon_sym_struct] = ACTIONS(2080), + [anon_sym_union] = ACTIONS(2080), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2080), + [anon_sym_decltype] = ACTIONS(2090), + [anon_sym_typename] = ACTIONS(2080), + [anon_sym_template] = ACTIONS(2093), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2080), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2080), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2080), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2080), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2080), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2080), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2080), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2080), + [anon_sym_MOZ_COLD] = ACTIONS(2080), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2080), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2080), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2080), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2080), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2080), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2080), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2080), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2080), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2080), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2080), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2080), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2080), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2080), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2080), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2080), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2080), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2080), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2080), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2080), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2080), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_NONNULL] = ACTIONS(2080), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2080), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2080), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2080), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2080), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2080), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_NORETURN] = ACTIONS(2080), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2080), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2080), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2080), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2080), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2080), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2080), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2080), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2080), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2080), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2080), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2080), + [anon_sym_MOZ_RAII] = ACTIONS(2080), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2080), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2080), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2080), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2080), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2080), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2080), + }, + [STATE(171)] = { + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2096), + [aux_sym_preproc_def_token1] = ACTIONS(2096), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_if_token2] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [aux_sym_preproc_else_token1] = ACTIONS(2096), + [aux_sym_preproc_elif_token1] = ACTIONS(2096), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2096), + [sym_preproc_directive] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_AMP_AMP] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2096), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym___extension__] = ACTIONS(2096), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_virtual] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym_COLON_COLON] = ACTIONS(2098), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2098), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___based] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [anon_sym_LBRACK] = ACTIONS(2096), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [anon_sym___inline] = ACTIONS(2096), + [anon_sym___inline__] = ACTIONS(2096), + [anon_sym___forceinline] = ACTIONS(2096), + [anon_sym_thread_local] = ACTIONS(2096), + [anon_sym___thread] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_constexpr] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym___restrict__] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym__Noreturn] = ACTIONS(2096), + [anon_sym_noreturn] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym_mutable] = ACTIONS(2096), + [anon_sym_constinit] = ACTIONS(2096), + [anon_sym_consteval] = ACTIONS(2096), + [anon_sym_alignas] = ACTIONS(2096), + [anon_sym__Alignas] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_class] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_else] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym___try] = ACTIONS(2096), + [anon_sym___leave] = ACTIONS(2096), + [anon_sym_not] = ACTIONS(2096), + [anon_sym_compl] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2096), + [anon_sym___alignof] = ACTIONS(2096), + [anon_sym__alignof] = ACTIONS(2096), + [anon_sym_alignof] = ACTIONS(2096), + [anon_sym__Alignof] = ACTIONS(2096), + [anon_sym_offsetof] = ACTIONS(2096), + [anon_sym__Generic] = ACTIONS(2096), + [anon_sym_asm] = ACTIONS(2096), + [anon_sym___asm__] = ACTIONS(2096), + [anon_sym___asm] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [anon_sym_NULL] = ACTIONS(2096), + [anon_sym_nullptr] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2096), + [anon_sym_decltype] = ACTIONS(2096), + [anon_sym_explicit] = ACTIONS(2096), + [anon_sym_typename] = ACTIONS(2096), + [anon_sym_template] = ACTIONS(2096), + [anon_sym_operator] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2096), + [anon_sym_delete] = ACTIONS(2096), + [anon_sym_throw] = ACTIONS(2096), + [anon_sym_namespace] = ACTIONS(2096), + [anon_sym_using] = ACTIONS(2096), + [anon_sym_static_assert] = ACTIONS(2096), + [anon_sym_concept] = ACTIONS(2096), + [anon_sym_co_return] = ACTIONS(2096), + [anon_sym_co_yield] = ACTIONS(2096), + [anon_sym_R_DQUOTE] = ACTIONS(2098), + [anon_sym_LR_DQUOTE] = ACTIONS(2098), + [anon_sym_uR_DQUOTE] = ACTIONS(2098), + [anon_sym_UR_DQUOTE] = ACTIONS(2098), + [anon_sym_u8R_DQUOTE] = ACTIONS(2098), + [anon_sym_co_await] = ACTIONS(2096), + [anon_sym_new] = ACTIONS(2096), + [anon_sym_requires] = ACTIONS(2096), + [sym_this] = ACTIONS(2096), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_FORWARD] = ACTIONS(2096), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_PS_GET] = ACTIONS(2096), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2096), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2096), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2096), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2096), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2096), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2096), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2096), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2096), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2096), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2096), + [anon_sym_MOZ_COLD] = ACTIONS(2096), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2096), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2096), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2096), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2096), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2096), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2096), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2096), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2096), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2096), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2096), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2096), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2096), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2096), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2096), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2096), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2096), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2096), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2096), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2096), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2096), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_NONNULL] = ACTIONS(2096), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2096), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2096), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2096), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2096), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2096), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_NORETURN] = ACTIONS(2096), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2096), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2096), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2096), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2096), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2096), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2096), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2096), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2096), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2096), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2096), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2096), + [anon_sym_MOZ_RAII] = ACTIONS(2096), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2096), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2096), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2096), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2096), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2096), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2096), + }, + [STATE(172)] = { + [sym_identifier] = ACTIONS(2100), + [aux_sym_preproc_include_token1] = ACTIONS(2100), + [aux_sym_preproc_def_token1] = ACTIONS(2100), + [aux_sym_preproc_if_token1] = ACTIONS(2100), + [aux_sym_preproc_if_token2] = ACTIONS(2100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2100), + [aux_sym_preproc_else_token1] = ACTIONS(2100), + [aux_sym_preproc_elif_token1] = ACTIONS(2100), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2100), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2100), + [sym_preproc_directive] = ACTIONS(2100), + [anon_sym_LPAREN2] = ACTIONS(2102), + [anon_sym_BANG] = ACTIONS(2102), + [anon_sym_TILDE] = ACTIONS(2102), + [anon_sym_DASH] = ACTIONS(2100), + [anon_sym_PLUS] = ACTIONS(2100), + [anon_sym_STAR] = ACTIONS(2102), + [anon_sym_AMP_AMP] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym___extension__] = ACTIONS(2100), + [anon_sym_typedef] = ACTIONS(2100), + [anon_sym_virtual] = ACTIONS(2100), + [anon_sym_extern] = ACTIONS(2100), + [anon_sym___attribute__] = ACTIONS(2100), + [anon_sym___attribute] = ACTIONS(2100), + [anon_sym_COLON_COLON] = ACTIONS(2102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2102), + [anon_sym___declspec] = ACTIONS(2100), + [anon_sym___based] = ACTIONS(2100), + [anon_sym___cdecl] = ACTIONS(2100), + [anon_sym___clrcall] = ACTIONS(2100), + [anon_sym___stdcall] = ACTIONS(2100), + [anon_sym___fastcall] = ACTIONS(2100), + [anon_sym___thiscall] = ACTIONS(2100), + [anon_sym___vectorcall] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_signed] = ACTIONS(2100), + [anon_sym_unsigned] = ACTIONS(2100), + [anon_sym_long] = ACTIONS(2100), + [anon_sym_short] = ACTIONS(2100), + [anon_sym_LBRACK] = ACTIONS(2100), + [anon_sym_static] = ACTIONS(2100), + [anon_sym_register] = ACTIONS(2100), + [anon_sym_inline] = ACTIONS(2100), + [anon_sym___inline] = ACTIONS(2100), + [anon_sym___inline__] = ACTIONS(2100), + [anon_sym___forceinline] = ACTIONS(2100), + [anon_sym_thread_local] = ACTIONS(2100), + [anon_sym___thread] = ACTIONS(2100), + [anon_sym_const] = ACTIONS(2100), + [anon_sym_constexpr] = ACTIONS(2100), + [anon_sym_volatile] = ACTIONS(2100), + [anon_sym_restrict] = ACTIONS(2100), + [anon_sym___restrict__] = ACTIONS(2100), + [anon_sym__Atomic] = ACTIONS(2100), + [anon_sym__Noreturn] = ACTIONS(2100), + [anon_sym_noreturn] = ACTIONS(2100), + [anon_sym__Nonnull] = ACTIONS(2100), + [anon_sym_mutable] = ACTIONS(2100), + [anon_sym_constinit] = ACTIONS(2100), + [anon_sym_consteval] = ACTIONS(2100), + [anon_sym_alignas] = ACTIONS(2100), + [anon_sym__Alignas] = ACTIONS(2100), + [sym_primitive_type] = ACTIONS(2100), + [anon_sym_enum] = ACTIONS(2100), + [anon_sym_class] = ACTIONS(2100), + [anon_sym_struct] = ACTIONS(2100), + [anon_sym_union] = ACTIONS(2100), + [anon_sym_if] = ACTIONS(2100), + [anon_sym_else] = ACTIONS(2100), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_case] = ACTIONS(2100), + [anon_sym_default] = ACTIONS(2100), + [anon_sym_while] = ACTIONS(2100), + [anon_sym_do] = ACTIONS(2100), + [anon_sym_for] = ACTIONS(2100), + [anon_sym_return] = ACTIONS(2100), + [anon_sym_break] = ACTIONS(2100), + [anon_sym_continue] = ACTIONS(2100), + [anon_sym_goto] = ACTIONS(2100), + [anon_sym___try] = ACTIONS(2100), + [anon_sym___leave] = ACTIONS(2100), + [anon_sym_not] = ACTIONS(2100), + [anon_sym_compl] = ACTIONS(2100), + [anon_sym_DASH_DASH] = ACTIONS(2102), + [anon_sym_PLUS_PLUS] = ACTIONS(2102), + [anon_sym_sizeof] = ACTIONS(2100), + [anon_sym___alignof__] = ACTIONS(2100), + [anon_sym___alignof] = ACTIONS(2100), + [anon_sym__alignof] = ACTIONS(2100), + [anon_sym_alignof] = ACTIONS(2100), + [anon_sym__Alignof] = ACTIONS(2100), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2100), + [anon_sym_asm] = ACTIONS(2100), + [anon_sym___asm__] = ACTIONS(2100), + [anon_sym___asm] = ACTIONS(2100), + [sym_number_literal] = ACTIONS(2102), + [anon_sym_L_SQUOTE] = ACTIONS(2102), + [anon_sym_u_SQUOTE] = ACTIONS(2102), + [anon_sym_U_SQUOTE] = ACTIONS(2102), + [anon_sym_u8_SQUOTE] = ACTIONS(2102), + [anon_sym_SQUOTE] = ACTIONS(2102), + [anon_sym_L_DQUOTE] = ACTIONS(2102), + [anon_sym_u_DQUOTE] = ACTIONS(2102), + [anon_sym_U_DQUOTE] = ACTIONS(2102), + [anon_sym_u8_DQUOTE] = ACTIONS(2102), + [anon_sym_DQUOTE] = ACTIONS(2102), + [sym_true] = ACTIONS(2100), + [sym_false] = ACTIONS(2100), + [anon_sym_NULL] = ACTIONS(2100), + [anon_sym_nullptr] = ACTIONS(2100), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2100), + [anon_sym_decltype] = ACTIONS(2100), + [anon_sym_explicit] = ACTIONS(2100), + [anon_sym_typename] = ACTIONS(2100), + [anon_sym_template] = ACTIONS(2100), + [anon_sym_operator] = ACTIONS(2100), + [anon_sym_try] = ACTIONS(2100), + [anon_sym_delete] = ACTIONS(2100), + [anon_sym_throw] = ACTIONS(2100), + [anon_sym_namespace] = ACTIONS(2100), + [anon_sym_using] = ACTIONS(2100), + [anon_sym_static_assert] = ACTIONS(2100), + [anon_sym_concept] = ACTIONS(2100), + [anon_sym_co_return] = ACTIONS(2100), + [anon_sym_co_yield] = ACTIONS(2100), + [anon_sym_R_DQUOTE] = ACTIONS(2102), + [anon_sym_LR_DQUOTE] = ACTIONS(2102), + [anon_sym_uR_DQUOTE] = ACTIONS(2102), + [anon_sym_UR_DQUOTE] = ACTIONS(2102), + [anon_sym_u8R_DQUOTE] = ACTIONS(2102), + [anon_sym_co_await] = ACTIONS(2100), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2100), + [sym_this] = ACTIONS(2100), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_FORWARD] = ACTIONS(2100), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2100), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_PS_GET] = ACTIONS(2100), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2100), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2100), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2100), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2100), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2100), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2100), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2100), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2100), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2100), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2100), + [anon_sym_MOZ_COLD] = ACTIONS(2100), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2100), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2100), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2100), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2100), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2100), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2100), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2100), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2100), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2100), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2100), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2100), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2100), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2100), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2100), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2100), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2100), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2100), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2100), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2100), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2100), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_NONNULL] = ACTIONS(2100), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2100), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2100), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2100), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2100), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2100), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_NORETURN] = ACTIONS(2100), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2100), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2100), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2100), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2100), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2100), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2100), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2100), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2100), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2100), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2100), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2100), + [anon_sym_MOZ_RAII] = ACTIONS(2100), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2100), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2100), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2100), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2100), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2100), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2100), + }, + [STATE(173)] = { + [sym_identifier] = ACTIONS(2104), + [aux_sym_preproc_include_token1] = ACTIONS(2104), + [aux_sym_preproc_def_token1] = ACTIONS(2104), + [aux_sym_preproc_if_token1] = ACTIONS(2104), + [aux_sym_preproc_if_token2] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2104), + [aux_sym_preproc_else_token1] = ACTIONS(2104), + [aux_sym_preproc_elif_token1] = ACTIONS(2104), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2104), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2104), + [sym_preproc_directive] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_TILDE] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_AMP_AMP] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym___extension__] = ACTIONS(2104), + [anon_sym_typedef] = ACTIONS(2104), + [anon_sym_virtual] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2104), + [anon_sym___attribute__] = ACTIONS(2104), + [anon_sym___attribute] = ACTIONS(2104), + [anon_sym_COLON_COLON] = ACTIONS(2106), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2106), + [anon_sym___declspec] = ACTIONS(2104), + [anon_sym___based] = ACTIONS(2104), + [anon_sym___cdecl] = ACTIONS(2104), + [anon_sym___clrcall] = ACTIONS(2104), + [anon_sym___stdcall] = ACTIONS(2104), + [anon_sym___fastcall] = ACTIONS(2104), + [anon_sym___thiscall] = ACTIONS(2104), + [anon_sym___vectorcall] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_signed] = ACTIONS(2104), + [anon_sym_unsigned] = ACTIONS(2104), + [anon_sym_long] = ACTIONS(2104), + [anon_sym_short] = ACTIONS(2104), + [anon_sym_LBRACK] = ACTIONS(2104), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_register] = ACTIONS(2104), + [anon_sym_inline] = ACTIONS(2104), + [anon_sym___inline] = ACTIONS(2104), + [anon_sym___inline__] = ACTIONS(2104), + [anon_sym___forceinline] = ACTIONS(2104), + [anon_sym_thread_local] = ACTIONS(2104), + [anon_sym___thread] = ACTIONS(2104), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_constexpr] = ACTIONS(2104), + [anon_sym_volatile] = ACTIONS(2104), + [anon_sym_restrict] = ACTIONS(2104), + [anon_sym___restrict__] = ACTIONS(2104), + [anon_sym__Atomic] = ACTIONS(2104), + [anon_sym__Noreturn] = ACTIONS(2104), + [anon_sym_noreturn] = ACTIONS(2104), + [anon_sym__Nonnull] = ACTIONS(2104), + [anon_sym_mutable] = ACTIONS(2104), + [anon_sym_constinit] = ACTIONS(2104), + [anon_sym_consteval] = ACTIONS(2104), + [anon_sym_alignas] = ACTIONS(2104), + [anon_sym__Alignas] = ACTIONS(2104), + [sym_primitive_type] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2104), + [anon_sym_class] = ACTIONS(2104), + [anon_sym_struct] = ACTIONS(2104), + [anon_sym_union] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_else] = ACTIONS(2104), + [anon_sym_switch] = ACTIONS(2104), + [anon_sym_case] = ACTIONS(2104), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_while] = ACTIONS(2104), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_break] = ACTIONS(2104), + [anon_sym_continue] = ACTIONS(2104), + [anon_sym_goto] = ACTIONS(2104), + [anon_sym___try] = ACTIONS(2104), + [anon_sym___leave] = ACTIONS(2104), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_compl] = ACTIONS(2104), + [anon_sym_DASH_DASH] = ACTIONS(2106), + [anon_sym_PLUS_PLUS] = ACTIONS(2106), + [anon_sym_sizeof] = ACTIONS(2104), + [anon_sym___alignof__] = ACTIONS(2104), + [anon_sym___alignof] = ACTIONS(2104), + [anon_sym__alignof] = ACTIONS(2104), + [anon_sym_alignof] = ACTIONS(2104), + [anon_sym__Alignof] = ACTIONS(2104), + [anon_sym_offsetof] = ACTIONS(2104), + [anon_sym__Generic] = ACTIONS(2104), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [anon_sym___asm] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2106), + [anon_sym_u_SQUOTE] = ACTIONS(2106), + [anon_sym_U_SQUOTE] = ACTIONS(2106), + [anon_sym_u8_SQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_L_DQUOTE] = ACTIONS(2106), + [anon_sym_u_DQUOTE] = ACTIONS(2106), + [anon_sym_U_DQUOTE] = ACTIONS(2106), + [anon_sym_u8_DQUOTE] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2106), + [sym_true] = ACTIONS(2104), + [sym_false] = ACTIONS(2104), + [anon_sym_NULL] = ACTIONS(2104), + [anon_sym_nullptr] = ACTIONS(2104), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2104), + [anon_sym_decltype] = ACTIONS(2104), + [anon_sym_explicit] = ACTIONS(2104), + [anon_sym_typename] = ACTIONS(2104), + [anon_sym_template] = ACTIONS(2104), + [anon_sym_operator] = ACTIONS(2104), + [anon_sym_try] = ACTIONS(2104), + [anon_sym_delete] = ACTIONS(2104), + [anon_sym_throw] = ACTIONS(2104), + [anon_sym_namespace] = ACTIONS(2104), + [anon_sym_using] = ACTIONS(2104), + [anon_sym_static_assert] = ACTIONS(2104), + [anon_sym_concept] = ACTIONS(2104), + [anon_sym_co_return] = ACTIONS(2104), + [anon_sym_co_yield] = ACTIONS(2104), + [anon_sym_R_DQUOTE] = ACTIONS(2106), + [anon_sym_LR_DQUOTE] = ACTIONS(2106), + [anon_sym_uR_DQUOTE] = ACTIONS(2106), + [anon_sym_UR_DQUOTE] = ACTIONS(2106), + [anon_sym_u8R_DQUOTE] = ACTIONS(2106), + [anon_sym_co_await] = ACTIONS(2104), + [anon_sym_new] = ACTIONS(2104), + [anon_sym_requires] = ACTIONS(2104), + [sym_this] = ACTIONS(2104), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_FORWARD] = ACTIONS(2104), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_PS_GET] = ACTIONS(2104), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2104), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2104), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2104), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2104), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2104), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2104), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2104), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2104), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2104), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2104), + [anon_sym_MOZ_COLD] = ACTIONS(2104), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2104), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2104), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2104), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2104), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2104), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2104), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2104), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2104), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2104), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2104), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2104), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2104), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2104), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2104), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2104), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2104), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2104), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2104), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2104), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2104), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_NONNULL] = ACTIONS(2104), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2104), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2104), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2104), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2104), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2104), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_NORETURN] = ACTIONS(2104), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2104), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2104), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2104), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2104), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2104), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2104), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2104), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2104), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2104), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2104), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2104), + [anon_sym_MOZ_RAII] = ACTIONS(2104), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2104), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2104), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2104), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2104), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2104), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2104), + }, + [STATE(174)] = { + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_include_token1] = ACTIONS(2108), + [aux_sym_preproc_def_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token2] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [aux_sym_preproc_else_token1] = ACTIONS(2108), + [aux_sym_preproc_elif_token1] = ACTIONS(2108), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2108), + [sym_preproc_directive] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_AMP_AMP] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym___extension__] = ACTIONS(2108), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_virtual] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym_COLON_COLON] = ACTIONS(2110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2110), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___based] = ACTIONS(2108), + [anon_sym___cdecl] = ACTIONS(2108), + [anon_sym___clrcall] = ACTIONS(2108), + [anon_sym___stdcall] = ACTIONS(2108), + [anon_sym___fastcall] = ACTIONS(2108), + [anon_sym___thiscall] = ACTIONS(2108), + [anon_sym___vectorcall] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [anon_sym_LBRACK] = ACTIONS(2108), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [anon_sym___inline] = ACTIONS(2108), + [anon_sym___inline__] = ACTIONS(2108), + [anon_sym___forceinline] = ACTIONS(2108), + [anon_sym_thread_local] = ACTIONS(2108), + [anon_sym___thread] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_constexpr] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym___restrict__] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym__Noreturn] = ACTIONS(2108), + [anon_sym_noreturn] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym_mutable] = ACTIONS(2108), + [anon_sym_constinit] = ACTIONS(2108), + [anon_sym_consteval] = ACTIONS(2108), + [anon_sym_alignas] = ACTIONS(2108), + [anon_sym__Alignas] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_class] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_else] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_case] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_goto] = ACTIONS(2108), + [anon_sym___try] = ACTIONS(2108), + [anon_sym___leave] = ACTIONS(2108), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_sizeof] = ACTIONS(2108), + [anon_sym___alignof__] = ACTIONS(2108), + [anon_sym___alignof] = ACTIONS(2108), + [anon_sym__alignof] = ACTIONS(2108), + [anon_sym_alignof] = ACTIONS(2108), + [anon_sym__Alignof] = ACTIONS(2108), + [anon_sym_offsetof] = ACTIONS(2108), + [anon_sym__Generic] = ACTIONS(2108), + [anon_sym_asm] = ACTIONS(2108), + [anon_sym___asm__] = ACTIONS(2108), + [anon_sym___asm] = ACTIONS(2108), + [sym_number_literal] = ACTIONS(2110), + [anon_sym_L_SQUOTE] = ACTIONS(2110), + [anon_sym_u_SQUOTE] = ACTIONS(2110), + [anon_sym_U_SQUOTE] = ACTIONS(2110), + [anon_sym_u8_SQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [anon_sym_NULL] = ACTIONS(2108), + [anon_sym_nullptr] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2108), + [anon_sym_decltype] = ACTIONS(2108), + [anon_sym_explicit] = ACTIONS(2108), + [anon_sym_typename] = ACTIONS(2108), + [anon_sym_template] = ACTIONS(2108), + [anon_sym_operator] = ACTIONS(2108), + [anon_sym_try] = ACTIONS(2108), + [anon_sym_delete] = ACTIONS(2108), + [anon_sym_throw] = ACTIONS(2108), + [anon_sym_namespace] = ACTIONS(2108), + [anon_sym_using] = ACTIONS(2108), + [anon_sym_static_assert] = ACTIONS(2108), + [anon_sym_concept] = ACTIONS(2108), + [anon_sym_co_return] = ACTIONS(2108), + [anon_sym_co_yield] = ACTIONS(2108), + [anon_sym_R_DQUOTE] = ACTIONS(2110), + [anon_sym_LR_DQUOTE] = ACTIONS(2110), + [anon_sym_uR_DQUOTE] = ACTIONS(2110), + [anon_sym_UR_DQUOTE] = ACTIONS(2110), + [anon_sym_u8R_DQUOTE] = ACTIONS(2110), + [anon_sym_co_await] = ACTIONS(2108), + [anon_sym_new] = ACTIONS(2108), + [anon_sym_requires] = ACTIONS(2108), + [sym_this] = ACTIONS(2108), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_FORWARD] = ACTIONS(2108), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_PS_GET] = ACTIONS(2108), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2108), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2108), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2108), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2108), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2108), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2108), + [anon_sym_MOZ_COLD] = ACTIONS(2108), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2108), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2108), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2108), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2108), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2108), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2108), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2108), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2108), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2108), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2108), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2108), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2108), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2108), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_NONNULL] = ACTIONS(2108), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2108), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2108), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2108), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2108), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2108), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2108), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2108), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2108), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2108), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2108), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2108), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2108), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2108), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2108), + [anon_sym_MOZ_RAII] = ACTIONS(2108), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2108), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2108), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2108), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2108), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2108), + }, + [STATE(175)] = { + [sym_identifier] = ACTIONS(1966), + [aux_sym_preproc_include_token1] = ACTIONS(1966), + [aux_sym_preproc_def_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token2] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1966), + [aux_sym_preproc_else_token1] = ACTIONS(1966), + [aux_sym_preproc_elif_token1] = ACTIONS(1966), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1966), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1966), + [sym_preproc_directive] = ACTIONS(1966), + [anon_sym_LPAREN2] = ACTIONS(1968), + [anon_sym_BANG] = ACTIONS(1968), + [anon_sym_TILDE] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym___extension__] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1966), + [anon_sym_virtual] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym___attribute__] = ACTIONS(1966), + [anon_sym___attribute] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1966), + [anon_sym___based] = ACTIONS(1966), + [anon_sym___cdecl] = ACTIONS(1966), + [anon_sym___clrcall] = ACTIONS(1966), + [anon_sym___stdcall] = ACTIONS(1966), + [anon_sym___fastcall] = ACTIONS(1966), + [anon_sym___thiscall] = ACTIONS(1966), + [anon_sym___vectorcall] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_register] = ACTIONS(1966), + [anon_sym_inline] = ACTIONS(1966), + [anon_sym___inline] = ACTIONS(1966), + [anon_sym___inline__] = ACTIONS(1966), + [anon_sym___forceinline] = ACTIONS(1966), + [anon_sym_thread_local] = ACTIONS(1966), + [anon_sym___thread] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_constexpr] = ACTIONS(1966), + [anon_sym_volatile] = ACTIONS(1966), + [anon_sym_restrict] = ACTIONS(1966), + [anon_sym___restrict__] = ACTIONS(1966), + [anon_sym__Atomic] = ACTIONS(1966), + [anon_sym__Noreturn] = ACTIONS(1966), + [anon_sym_noreturn] = ACTIONS(1966), + [anon_sym__Nonnull] = ACTIONS(1966), + [anon_sym_mutable] = ACTIONS(1966), + [anon_sym_constinit] = ACTIONS(1966), + [anon_sym_consteval] = ACTIONS(1966), + [anon_sym_alignas] = ACTIONS(1966), + [anon_sym__Alignas] = ACTIONS(1966), + [sym_primitive_type] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_class] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_else] = ACTIONS(1966), + [anon_sym_switch] = ACTIONS(1966), + [anon_sym_case] = ACTIONS(1966), + [anon_sym_default] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1966), + [anon_sym_do] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1966), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1966), + [anon_sym_continue] = ACTIONS(1966), + [anon_sym_goto] = ACTIONS(1966), + [anon_sym___try] = ACTIONS(1966), + [anon_sym___leave] = ACTIONS(1966), + [anon_sym_not] = ACTIONS(1966), + [anon_sym_compl] = ACTIONS(1966), + [anon_sym_DASH_DASH] = ACTIONS(1968), + [anon_sym_PLUS_PLUS] = ACTIONS(1968), + [anon_sym_sizeof] = ACTIONS(1966), + [anon_sym___alignof__] = ACTIONS(1966), + [anon_sym___alignof] = ACTIONS(1966), + [anon_sym__alignof] = ACTIONS(1966), + [anon_sym_alignof] = ACTIONS(1966), + [anon_sym__Alignof] = ACTIONS(1966), + [anon_sym_offsetof] = ACTIONS(1966), + [anon_sym__Generic] = ACTIONS(1966), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(1968), + [anon_sym_L_SQUOTE] = ACTIONS(1968), + [anon_sym_u_SQUOTE] = ACTIONS(1968), + [anon_sym_U_SQUOTE] = ACTIONS(1968), + [anon_sym_u8_SQUOTE] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(1968), + [anon_sym_L_DQUOTE] = ACTIONS(1968), + [anon_sym_u_DQUOTE] = ACTIONS(1968), + [anon_sym_U_DQUOTE] = ACTIONS(1968), + [anon_sym_u8_DQUOTE] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [sym_true] = ACTIONS(1966), + [sym_false] = ACTIONS(1966), + [anon_sym_NULL] = ACTIONS(1966), + [anon_sym_nullptr] = ACTIONS(1966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1966), + [anon_sym_decltype] = ACTIONS(1966), + [anon_sym_explicit] = ACTIONS(1966), + [anon_sym_typename] = ACTIONS(1966), + [anon_sym_template] = ACTIONS(1966), + [anon_sym_operator] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1966), + [anon_sym_delete] = ACTIONS(1966), + [anon_sym_throw] = ACTIONS(1966), + [anon_sym_namespace] = ACTIONS(1966), + [anon_sym_using] = ACTIONS(1966), + [anon_sym_static_assert] = ACTIONS(1966), + [anon_sym_concept] = ACTIONS(1966), + [anon_sym_co_return] = ACTIONS(1966), + [anon_sym_co_yield] = ACTIONS(1966), + [anon_sym_R_DQUOTE] = ACTIONS(1968), + [anon_sym_LR_DQUOTE] = ACTIONS(1968), + [anon_sym_uR_DQUOTE] = ACTIONS(1968), + [anon_sym_UR_DQUOTE] = ACTIONS(1968), + [anon_sym_u8R_DQUOTE] = ACTIONS(1968), + [anon_sym_co_await] = ACTIONS(1966), + [anon_sym_new] = ACTIONS(1966), + [anon_sym_requires] = ACTIONS(1966), + [sym_this] = ACTIONS(1966), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_FORWARD] = ACTIONS(1966), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1966), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_PS_GET] = ACTIONS(1966), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1966), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1966), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1966), + [anon_sym_MOZ_COLD] = ACTIONS(1966), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1966), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1966), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1966), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1966), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1966), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1966), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1966), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1966), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1966), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1966), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1966), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1966), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_RAII] = ACTIONS(1966), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1966), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1966), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1966), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1966), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1966), + }, + [STATE(176)] = { + [sym_identifier] = ACTIONS(2112), + [aux_sym_preproc_include_token1] = ACTIONS(2112), + [aux_sym_preproc_def_token1] = ACTIONS(2112), + [aux_sym_preproc_if_token1] = ACTIONS(2112), + [aux_sym_preproc_if_token2] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2112), + [aux_sym_preproc_else_token1] = ACTIONS(2112), + [aux_sym_preproc_elif_token1] = ACTIONS(2112), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2112), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2112), + [sym_preproc_directive] = ACTIONS(2112), + [anon_sym_LPAREN2] = ACTIONS(2114), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(2112), + [anon_sym_PLUS] = ACTIONS(2112), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_AMP_AMP] = ACTIONS(2114), + [anon_sym_AMP] = ACTIONS(2112), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym___extension__] = ACTIONS(2112), + [anon_sym_typedef] = ACTIONS(2112), + [anon_sym_virtual] = ACTIONS(2112), + [anon_sym_extern] = ACTIONS(2112), + [anon_sym___attribute__] = ACTIONS(2112), + [anon_sym___attribute] = ACTIONS(2112), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2114), + [anon_sym___declspec] = ACTIONS(2112), + [anon_sym___based] = ACTIONS(2112), + [anon_sym___cdecl] = ACTIONS(2112), + [anon_sym___clrcall] = ACTIONS(2112), + [anon_sym___stdcall] = ACTIONS(2112), + [anon_sym___fastcall] = ACTIONS(2112), + [anon_sym___thiscall] = ACTIONS(2112), + [anon_sym___vectorcall] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_signed] = ACTIONS(2112), + [anon_sym_unsigned] = ACTIONS(2112), + [anon_sym_long] = ACTIONS(2112), + [anon_sym_short] = ACTIONS(2112), + [anon_sym_LBRACK] = ACTIONS(2112), + [anon_sym_static] = ACTIONS(2112), + [anon_sym_register] = ACTIONS(2112), + [anon_sym_inline] = ACTIONS(2112), + [anon_sym___inline] = ACTIONS(2112), + [anon_sym___inline__] = ACTIONS(2112), + [anon_sym___forceinline] = ACTIONS(2112), + [anon_sym_thread_local] = ACTIONS(2112), + [anon_sym___thread] = ACTIONS(2112), + [anon_sym_const] = ACTIONS(2112), + [anon_sym_constexpr] = ACTIONS(2112), + [anon_sym_volatile] = ACTIONS(2112), + [anon_sym_restrict] = ACTIONS(2112), + [anon_sym___restrict__] = ACTIONS(2112), + [anon_sym__Atomic] = ACTIONS(2112), + [anon_sym__Noreturn] = ACTIONS(2112), + [anon_sym_noreturn] = ACTIONS(2112), + [anon_sym__Nonnull] = ACTIONS(2112), + [anon_sym_mutable] = ACTIONS(2112), + [anon_sym_constinit] = ACTIONS(2112), + [anon_sym_consteval] = ACTIONS(2112), + [anon_sym_alignas] = ACTIONS(2112), + [anon_sym__Alignas] = ACTIONS(2112), + [sym_primitive_type] = ACTIONS(2112), + [anon_sym_enum] = ACTIONS(2112), + [anon_sym_class] = ACTIONS(2112), + [anon_sym_struct] = ACTIONS(2112), + [anon_sym_union] = ACTIONS(2112), + [anon_sym_if] = ACTIONS(2112), + [anon_sym_else] = ACTIONS(2112), + [anon_sym_switch] = ACTIONS(2112), + [anon_sym_case] = ACTIONS(2112), + [anon_sym_default] = ACTIONS(2112), + [anon_sym_while] = ACTIONS(2112), + [anon_sym_do] = ACTIONS(2112), + [anon_sym_for] = ACTIONS(2112), + [anon_sym_return] = ACTIONS(2112), + [anon_sym_break] = ACTIONS(2112), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_goto] = ACTIONS(2112), + [anon_sym___try] = ACTIONS(2112), + [anon_sym___leave] = ACTIONS(2112), + [anon_sym_not] = ACTIONS(2112), + [anon_sym_compl] = ACTIONS(2112), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_sizeof] = ACTIONS(2112), + [anon_sym___alignof__] = ACTIONS(2112), + [anon_sym___alignof] = ACTIONS(2112), + [anon_sym__alignof] = ACTIONS(2112), + [anon_sym_alignof] = ACTIONS(2112), + [anon_sym__Alignof] = ACTIONS(2112), + [anon_sym_offsetof] = ACTIONS(2112), + [anon_sym__Generic] = ACTIONS(2112), + [anon_sym_asm] = ACTIONS(2112), + [anon_sym___asm__] = ACTIONS(2112), + [anon_sym___asm] = ACTIONS(2112), + [sym_number_literal] = ACTIONS(2114), + [anon_sym_L_SQUOTE] = ACTIONS(2114), + [anon_sym_u_SQUOTE] = ACTIONS(2114), + [anon_sym_U_SQUOTE] = ACTIONS(2114), + [anon_sym_u8_SQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), + [anon_sym_L_DQUOTE] = ACTIONS(2114), + [anon_sym_u_DQUOTE] = ACTIONS(2114), + [anon_sym_U_DQUOTE] = ACTIONS(2114), + [anon_sym_u8_DQUOTE] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2112), + [anon_sym_nullptr] = ACTIONS(2112), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2112), + [anon_sym_decltype] = ACTIONS(2112), + [anon_sym_explicit] = ACTIONS(2112), + [anon_sym_typename] = ACTIONS(2112), + [anon_sym_template] = ACTIONS(2112), + [anon_sym_operator] = ACTIONS(2112), + [anon_sym_try] = ACTIONS(2112), + [anon_sym_delete] = ACTIONS(2112), + [anon_sym_throw] = ACTIONS(2112), + [anon_sym_namespace] = ACTIONS(2112), + [anon_sym_using] = ACTIONS(2112), + [anon_sym_static_assert] = ACTIONS(2112), + [anon_sym_concept] = ACTIONS(2112), + [anon_sym_co_return] = ACTIONS(2112), + [anon_sym_co_yield] = ACTIONS(2112), + [anon_sym_R_DQUOTE] = ACTIONS(2114), + [anon_sym_LR_DQUOTE] = ACTIONS(2114), + [anon_sym_uR_DQUOTE] = ACTIONS(2114), + [anon_sym_UR_DQUOTE] = ACTIONS(2114), + [anon_sym_u8R_DQUOTE] = ACTIONS(2114), + [anon_sym_co_await] = ACTIONS(2112), + [anon_sym_new] = ACTIONS(2112), + [anon_sym_requires] = ACTIONS(2112), + [sym_this] = ACTIONS(2112), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_FORWARD] = ACTIONS(2112), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2112), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_PS_GET] = ACTIONS(2112), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2112), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2112), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2112), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2112), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2112), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2112), + [anon_sym_MOZ_COLD] = ACTIONS(2112), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2112), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2112), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2112), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2112), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2112), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2112), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2112), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2112), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2112), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2112), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2112), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2112), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2112), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_NONNULL] = ACTIONS(2112), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2112), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2112), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2112), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2112), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2112), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2112), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2112), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2112), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2112), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2112), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2112), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2112), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2112), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2112), + [anon_sym_MOZ_RAII] = ACTIONS(2112), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2112), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2112), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2112), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2112), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2112), + }, + [STATE(177)] = { + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2116), + [aux_sym_preproc_def_token1] = ACTIONS(2116), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_if_token2] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [aux_sym_preproc_else_token1] = ACTIONS(2116), + [aux_sym_preproc_elif_token1] = ACTIONS(2116), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2116), + [sym_preproc_directive] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_AMP_AMP] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym___extension__] = ACTIONS(2116), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_virtual] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym_COLON_COLON] = ACTIONS(2118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2118), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___based] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2116), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [anon_sym___inline] = ACTIONS(2116), + [anon_sym___inline__] = ACTIONS(2116), + [anon_sym___forceinline] = ACTIONS(2116), + [anon_sym_thread_local] = ACTIONS(2116), + [anon_sym___thread] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_constexpr] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym___restrict__] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym__Noreturn] = ACTIONS(2116), + [anon_sym_noreturn] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym_mutable] = ACTIONS(2116), + [anon_sym_constinit] = ACTIONS(2116), + [anon_sym_consteval] = ACTIONS(2116), + [anon_sym_alignas] = ACTIONS(2116), + [anon_sym__Alignas] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym___try] = ACTIONS(2116), + [anon_sym___leave] = ACTIONS(2116), + [anon_sym_not] = ACTIONS(2116), + [anon_sym_compl] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [anon_sym___alignof__] = ACTIONS(2116), + [anon_sym___alignof] = ACTIONS(2116), + [anon_sym__alignof] = ACTIONS(2116), + [anon_sym_alignof] = ACTIONS(2116), + [anon_sym__Alignof] = ACTIONS(2116), + [anon_sym_offsetof] = ACTIONS(2116), + [anon_sym__Generic] = ACTIONS(2116), + [anon_sym_asm] = ACTIONS(2116), + [anon_sym___asm__] = ACTIONS(2116), + [anon_sym___asm] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [anon_sym_NULL] = ACTIONS(2116), + [anon_sym_nullptr] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2116), + [anon_sym_explicit] = ACTIONS(2116), + [anon_sym_typename] = ACTIONS(2116), + [anon_sym_template] = ACTIONS(2116), + [anon_sym_operator] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_using] = ACTIONS(2116), + [anon_sym_static_assert] = ACTIONS(2116), + [anon_sym_concept] = ACTIONS(2116), + [anon_sym_co_return] = ACTIONS(2116), + [anon_sym_co_yield] = ACTIONS(2116), + [anon_sym_R_DQUOTE] = ACTIONS(2118), + [anon_sym_LR_DQUOTE] = ACTIONS(2118), + [anon_sym_uR_DQUOTE] = ACTIONS(2118), + [anon_sym_UR_DQUOTE] = ACTIONS(2118), + [anon_sym_u8R_DQUOTE] = ACTIONS(2118), + [anon_sym_co_await] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_requires] = ACTIONS(2116), + [sym_this] = ACTIONS(2116), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_FORWARD] = ACTIONS(2116), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_PS_GET] = ACTIONS(2116), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2116), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2116), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2116), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2116), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2116), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2116), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2116), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2116), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2116), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2116), + [anon_sym_MOZ_COLD] = ACTIONS(2116), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2116), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2116), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2116), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2116), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2116), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2116), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2116), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2116), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2116), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2116), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2116), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2116), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2116), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2116), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2116), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2116), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2116), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2116), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2116), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2116), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_NONNULL] = ACTIONS(2116), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2116), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2116), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2116), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2116), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2116), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_NORETURN] = ACTIONS(2116), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2116), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2116), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2116), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2116), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2116), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2116), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2116), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2116), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2116), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2116), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2116), + [anon_sym_MOZ_RAII] = ACTIONS(2116), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2116), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2116), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2116), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2116), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2116), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2116), + }, + [STATE(178)] = { + [sym_identifier] = ACTIONS(2120), + [aux_sym_preproc_include_token1] = ACTIONS(2120), + [aux_sym_preproc_def_token1] = ACTIONS(2120), + [aux_sym_preproc_if_token1] = ACTIONS(2120), + [aux_sym_preproc_if_token2] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), + [aux_sym_preproc_else_token1] = ACTIONS(2120), + [aux_sym_preproc_elif_token1] = ACTIONS(2120), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2120), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2120), + [sym_preproc_directive] = ACTIONS(2120), + [anon_sym_LPAREN2] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_PLUS] = ACTIONS(2120), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym___extension__] = ACTIONS(2120), + [anon_sym_typedef] = ACTIONS(2120), + [anon_sym_virtual] = ACTIONS(2120), + [anon_sym_extern] = ACTIONS(2120), + [anon_sym___attribute__] = ACTIONS(2120), + [anon_sym___attribute] = ACTIONS(2120), + [anon_sym_COLON_COLON] = ACTIONS(2122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2122), + [anon_sym___declspec] = ACTIONS(2120), + [anon_sym___based] = ACTIONS(2120), + [anon_sym___cdecl] = ACTIONS(2120), + [anon_sym___clrcall] = ACTIONS(2120), + [anon_sym___stdcall] = ACTIONS(2120), + [anon_sym___fastcall] = ACTIONS(2120), + [anon_sym___thiscall] = ACTIONS(2120), + [anon_sym___vectorcall] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2122), + [anon_sym_signed] = ACTIONS(2120), + [anon_sym_unsigned] = ACTIONS(2120), + [anon_sym_long] = ACTIONS(2120), + [anon_sym_short] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_register] = ACTIONS(2120), + [anon_sym_inline] = ACTIONS(2120), + [anon_sym___inline] = ACTIONS(2120), + [anon_sym___inline__] = ACTIONS(2120), + [anon_sym___forceinline] = ACTIONS(2120), + [anon_sym_thread_local] = ACTIONS(2120), + [anon_sym___thread] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_constexpr] = ACTIONS(2120), + [anon_sym_volatile] = ACTIONS(2120), + [anon_sym_restrict] = ACTIONS(2120), + [anon_sym___restrict__] = ACTIONS(2120), + [anon_sym__Atomic] = ACTIONS(2120), + [anon_sym__Noreturn] = ACTIONS(2120), + [anon_sym_noreturn] = ACTIONS(2120), + [anon_sym__Nonnull] = ACTIONS(2120), + [anon_sym_mutable] = ACTIONS(2120), + [anon_sym_constinit] = ACTIONS(2120), + [anon_sym_consteval] = ACTIONS(2120), + [anon_sym_alignas] = ACTIONS(2120), + [anon_sym__Alignas] = ACTIONS(2120), + [sym_primitive_type] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_union] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_else] = ACTIONS(2120), + [anon_sym_switch] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_default] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_do] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_goto] = ACTIONS(2120), + [anon_sym___try] = ACTIONS(2120), + [anon_sym___leave] = ACTIONS(2120), + [anon_sym_not] = ACTIONS(2120), + [anon_sym_compl] = ACTIONS(2120), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_sizeof] = ACTIONS(2120), + [anon_sym___alignof__] = ACTIONS(2120), + [anon_sym___alignof] = ACTIONS(2120), + [anon_sym__alignof] = ACTIONS(2120), + [anon_sym_alignof] = ACTIONS(2120), + [anon_sym__Alignof] = ACTIONS(2120), + [anon_sym_offsetof] = ACTIONS(2120), + [anon_sym__Generic] = ACTIONS(2120), + [anon_sym_asm] = ACTIONS(2120), + [anon_sym___asm__] = ACTIONS(2120), + [anon_sym___asm] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2122), + [anon_sym_u_DQUOTE] = ACTIONS(2122), + [anon_sym_U_DQUOTE] = ACTIONS(2122), + [anon_sym_u8_DQUOTE] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [sym_true] = ACTIONS(2120), + [sym_false] = ACTIONS(2120), + [anon_sym_NULL] = ACTIONS(2120), + [anon_sym_nullptr] = ACTIONS(2120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2120), + [anon_sym_decltype] = ACTIONS(2120), + [anon_sym_explicit] = ACTIONS(2120), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(2120), + [anon_sym_operator] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2120), + [anon_sym_delete] = ACTIONS(2120), + [anon_sym_throw] = ACTIONS(2120), + [anon_sym_namespace] = ACTIONS(2120), + [anon_sym_using] = ACTIONS(2120), + [anon_sym_static_assert] = ACTIONS(2120), + [anon_sym_concept] = ACTIONS(2120), + [anon_sym_co_return] = ACTIONS(2120), + [anon_sym_co_yield] = ACTIONS(2120), + [anon_sym_R_DQUOTE] = ACTIONS(2122), + [anon_sym_LR_DQUOTE] = ACTIONS(2122), + [anon_sym_uR_DQUOTE] = ACTIONS(2122), + [anon_sym_UR_DQUOTE] = ACTIONS(2122), + [anon_sym_u8R_DQUOTE] = ACTIONS(2122), + [anon_sym_co_await] = ACTIONS(2120), + [anon_sym_new] = ACTIONS(2120), + [anon_sym_requires] = ACTIONS(2120), + [sym_this] = ACTIONS(2120), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_FORWARD] = ACTIONS(2120), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2120), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_PS_GET] = ACTIONS(2120), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2120), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2120), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2120), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2120), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2120), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2120), + [anon_sym_MOZ_COLD] = ACTIONS(2120), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2120), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2120), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2120), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2120), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2120), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2120), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2120), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2120), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2120), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2120), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2120), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2120), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2120), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_NONNULL] = ACTIONS(2120), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2120), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2120), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2120), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2120), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2120), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2120), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2120), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2120), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2120), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2120), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2120), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2120), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2120), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2120), + [anon_sym_MOZ_RAII] = ACTIONS(2120), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2120), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2120), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2120), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2120), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2120), + }, + [STATE(179)] = { + [sym_identifier] = ACTIONS(2124), + [aux_sym_preproc_include_token1] = ACTIONS(2124), + [aux_sym_preproc_def_token1] = ACTIONS(2124), + [aux_sym_preproc_if_token1] = ACTIONS(2124), + [aux_sym_preproc_if_token2] = ACTIONS(2124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2124), + [aux_sym_preproc_else_token1] = ACTIONS(2124), + [aux_sym_preproc_elif_token1] = ACTIONS(2124), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2124), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2124), + [sym_preproc_directive] = ACTIONS(2124), + [anon_sym_LPAREN2] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_AMP_AMP] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym___extension__] = ACTIONS(2124), + [anon_sym_typedef] = ACTIONS(2124), + [anon_sym_virtual] = ACTIONS(2124), + [anon_sym_extern] = ACTIONS(2124), + [anon_sym___attribute__] = ACTIONS(2124), + [anon_sym___attribute] = ACTIONS(2124), + [anon_sym_COLON_COLON] = ACTIONS(2126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2126), + [anon_sym___declspec] = ACTIONS(2124), + [anon_sym___based] = ACTIONS(2124), + [anon_sym___cdecl] = ACTIONS(2124), + [anon_sym___clrcall] = ACTIONS(2124), + [anon_sym___stdcall] = ACTIONS(2124), + [anon_sym___fastcall] = ACTIONS(2124), + [anon_sym___thiscall] = ACTIONS(2124), + [anon_sym___vectorcall] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2126), + [anon_sym_signed] = ACTIONS(2124), + [anon_sym_unsigned] = ACTIONS(2124), + [anon_sym_long] = ACTIONS(2124), + [anon_sym_short] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_register] = ACTIONS(2124), + [anon_sym_inline] = ACTIONS(2124), + [anon_sym___inline] = ACTIONS(2124), + [anon_sym___inline__] = ACTIONS(2124), + [anon_sym___forceinline] = ACTIONS(2124), + [anon_sym_thread_local] = ACTIONS(2124), + [anon_sym___thread] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_constexpr] = ACTIONS(2124), + [anon_sym_volatile] = ACTIONS(2124), + [anon_sym_restrict] = ACTIONS(2124), + [anon_sym___restrict__] = ACTIONS(2124), + [anon_sym__Atomic] = ACTIONS(2124), + [anon_sym__Noreturn] = ACTIONS(2124), + [anon_sym_noreturn] = ACTIONS(2124), + [anon_sym__Nonnull] = ACTIONS(2124), + [anon_sym_mutable] = ACTIONS(2124), + [anon_sym_constinit] = ACTIONS(2124), + [anon_sym_consteval] = ACTIONS(2124), + [anon_sym_alignas] = ACTIONS(2124), + [anon_sym__Alignas] = ACTIONS(2124), + [sym_primitive_type] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), + [anon_sym_class] = ACTIONS(2124), + [anon_sym_struct] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_else] = ACTIONS(2124), + [anon_sym_switch] = ACTIONS(2124), + [anon_sym_case] = ACTIONS(2124), + [anon_sym_default] = ACTIONS(2124), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_goto] = ACTIONS(2124), + [anon_sym___try] = ACTIONS(2124), + [anon_sym___leave] = ACTIONS(2124), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_compl] = ACTIONS(2124), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_sizeof] = ACTIONS(2124), + [anon_sym___alignof__] = ACTIONS(2124), + [anon_sym___alignof] = ACTIONS(2124), + [anon_sym__alignof] = ACTIONS(2124), + [anon_sym_alignof] = ACTIONS(2124), + [anon_sym__Alignof] = ACTIONS(2124), + [anon_sym_offsetof] = ACTIONS(2124), + [anon_sym__Generic] = ACTIONS(2124), + [anon_sym_asm] = ACTIONS(2124), + [anon_sym___asm__] = ACTIONS(2124), + [anon_sym___asm] = ACTIONS(2124), + [sym_number_literal] = ACTIONS(2126), + [anon_sym_L_SQUOTE] = ACTIONS(2126), + [anon_sym_u_SQUOTE] = ACTIONS(2126), + [anon_sym_U_SQUOTE] = ACTIONS(2126), + [anon_sym_u8_SQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_L_DQUOTE] = ACTIONS(2126), + [anon_sym_u_DQUOTE] = ACTIONS(2126), + [anon_sym_U_DQUOTE] = ACTIONS(2126), + [anon_sym_u8_DQUOTE] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2126), + [sym_true] = ACTIONS(2124), + [sym_false] = ACTIONS(2124), + [anon_sym_NULL] = ACTIONS(2124), + [anon_sym_nullptr] = ACTIONS(2124), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2124), + [anon_sym_decltype] = ACTIONS(2124), + [anon_sym_explicit] = ACTIONS(2124), + [anon_sym_typename] = ACTIONS(2124), + [anon_sym_template] = ACTIONS(2124), + [anon_sym_operator] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2124), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_throw] = ACTIONS(2124), + [anon_sym_namespace] = ACTIONS(2124), + [anon_sym_using] = ACTIONS(2124), + [anon_sym_static_assert] = ACTIONS(2124), + [anon_sym_concept] = ACTIONS(2124), + [anon_sym_co_return] = ACTIONS(2124), + [anon_sym_co_yield] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2124), + [anon_sym_new] = ACTIONS(2124), + [anon_sym_requires] = ACTIONS(2124), + [sym_this] = ACTIONS(2124), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_FORWARD] = ACTIONS(2124), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2124), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_PS_GET] = ACTIONS(2124), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2124), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2124), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2124), + [anon_sym_MOZ_COLD] = ACTIONS(2124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_NONNULL] = ACTIONS(2124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_NORETURN] = ACTIONS(2124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2124), + [anon_sym_MOZ_RAII] = ACTIONS(2124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2124), + }, + [STATE(180)] = { + [sym_expression] = STATE(4810), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8796), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(2128), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(2131), + [anon_sym___extension__] = ACTIONS(2133), + [anon_sym_virtual] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2018), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [anon_sym___inline] = ACTIONS(2016), + [anon_sym___inline__] = ACTIONS(2016), + [anon_sym___forceinline] = ACTIONS(2016), + [anon_sym_thread_local] = ACTIONS(2016), + [anon_sym___thread] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_constexpr] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym___restrict__] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym__Noreturn] = ACTIONS(2016), + [anon_sym_noreturn] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym_mutable] = ACTIONS(2016), + [anon_sym_constinit] = ACTIONS(2016), + [anon_sym_consteval] = ACTIONS(2016), + [anon_sym_alignas] = ACTIONS(2016), + [anon_sym__Alignas] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_class] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2016), + [anon_sym_decltype] = ACTIONS(2142), + [anon_sym_typename] = ACTIONS(2016), + [anon_sym_template] = ACTIONS(2145), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2016), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2016), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2016), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2016), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2016), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2016), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2016), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2016), + [anon_sym_MOZ_COLD] = ACTIONS(2016), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2016), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2016), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2016), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2016), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2016), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2016), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2016), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2016), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2016), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2016), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2016), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2016), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2016), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2016), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2016), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2016), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2016), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2016), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2016), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2016), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_NONNULL] = ACTIONS(2016), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2016), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2016), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2016), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2016), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2016), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_NORETURN] = ACTIONS(2016), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2016), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2016), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2016), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2016), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2016), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2016), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2016), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2016), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2016), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2016), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2016), + [anon_sym_MOZ_RAII] = ACTIONS(2016), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2016), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2016), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2016), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2016), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2016), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2016), + }, + [STATE(181)] = { + [sym_identifier] = ACTIONS(2148), + [aux_sym_preproc_include_token1] = ACTIONS(2148), + [aux_sym_preproc_def_token1] = ACTIONS(2148), + [aux_sym_preproc_if_token1] = ACTIONS(2148), + [aux_sym_preproc_if_token2] = ACTIONS(2148), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2148), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2148), + [aux_sym_preproc_else_token1] = ACTIONS(2148), + [aux_sym_preproc_elif_token1] = ACTIONS(2148), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2148), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2148), + [sym_preproc_directive] = ACTIONS(2148), + [anon_sym_LPAREN2] = ACTIONS(2150), + [anon_sym_BANG] = ACTIONS(2150), + [anon_sym_TILDE] = ACTIONS(2150), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_PLUS] = ACTIONS(2148), + [anon_sym_STAR] = ACTIONS(2150), + [anon_sym_AMP_AMP] = ACTIONS(2150), + [anon_sym_AMP] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym___extension__] = ACTIONS(2148), + [anon_sym_typedef] = ACTIONS(2148), + [anon_sym_virtual] = ACTIONS(2148), + [anon_sym_extern] = ACTIONS(2148), + [anon_sym___attribute__] = ACTIONS(2148), + [anon_sym___attribute] = ACTIONS(2148), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2150), + [anon_sym___declspec] = ACTIONS(2148), + [anon_sym___based] = ACTIONS(2148), + [anon_sym___cdecl] = ACTIONS(2148), + [anon_sym___clrcall] = ACTIONS(2148), + [anon_sym___stdcall] = ACTIONS(2148), + [anon_sym___fastcall] = ACTIONS(2148), + [anon_sym___thiscall] = ACTIONS(2148), + [anon_sym___vectorcall] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_signed] = ACTIONS(2148), + [anon_sym_unsigned] = ACTIONS(2148), + [anon_sym_long] = ACTIONS(2148), + [anon_sym_short] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_register] = ACTIONS(2148), + [anon_sym_inline] = ACTIONS(2148), + [anon_sym___inline] = ACTIONS(2148), + [anon_sym___inline__] = ACTIONS(2148), + [anon_sym___forceinline] = ACTIONS(2148), + [anon_sym_thread_local] = ACTIONS(2148), + [anon_sym___thread] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_constexpr] = ACTIONS(2148), + [anon_sym_volatile] = ACTIONS(2148), + [anon_sym_restrict] = ACTIONS(2148), + [anon_sym___restrict__] = ACTIONS(2148), + [anon_sym__Atomic] = ACTIONS(2148), + [anon_sym__Noreturn] = ACTIONS(2148), + [anon_sym_noreturn] = ACTIONS(2148), + [anon_sym__Nonnull] = ACTIONS(2148), + [anon_sym_mutable] = ACTIONS(2148), + [anon_sym_constinit] = ACTIONS(2148), + [anon_sym_consteval] = ACTIONS(2148), + [anon_sym_alignas] = ACTIONS(2148), + [anon_sym__Alignas] = ACTIONS(2148), + [sym_primitive_type] = ACTIONS(2148), + [anon_sym_enum] = ACTIONS(2148), + [anon_sym_class] = ACTIONS(2148), + [anon_sym_struct] = ACTIONS(2148), + [anon_sym_union] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2148), + [anon_sym_else] = ACTIONS(2148), + [anon_sym_switch] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2148), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2148), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_for] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2148), + [anon_sym_break] = ACTIONS(2148), + [anon_sym_continue] = ACTIONS(2148), + [anon_sym_goto] = ACTIONS(2148), + [anon_sym___try] = ACTIONS(2148), + [anon_sym___leave] = ACTIONS(2148), + [anon_sym_not] = ACTIONS(2148), + [anon_sym_compl] = ACTIONS(2148), + [anon_sym_DASH_DASH] = ACTIONS(2150), + [anon_sym_PLUS_PLUS] = ACTIONS(2150), + [anon_sym_sizeof] = ACTIONS(2148), + [anon_sym___alignof__] = ACTIONS(2148), + [anon_sym___alignof] = ACTIONS(2148), + [anon_sym__alignof] = ACTIONS(2148), + [anon_sym_alignof] = ACTIONS(2148), + [anon_sym__Alignof] = ACTIONS(2148), + [anon_sym_offsetof] = ACTIONS(2148), + [anon_sym__Generic] = ACTIONS(2148), + [anon_sym_asm] = ACTIONS(2148), + [anon_sym___asm__] = ACTIONS(2148), + [anon_sym___asm] = ACTIONS(2148), + [sym_number_literal] = ACTIONS(2150), + [anon_sym_L_SQUOTE] = ACTIONS(2150), + [anon_sym_u_SQUOTE] = ACTIONS(2150), + [anon_sym_U_SQUOTE] = ACTIONS(2150), + [anon_sym_u8_SQUOTE] = ACTIONS(2150), + [anon_sym_SQUOTE] = ACTIONS(2150), + [anon_sym_L_DQUOTE] = ACTIONS(2150), + [anon_sym_u_DQUOTE] = ACTIONS(2150), + [anon_sym_U_DQUOTE] = ACTIONS(2150), + [anon_sym_u8_DQUOTE] = ACTIONS(2150), + [anon_sym_DQUOTE] = ACTIONS(2150), + [sym_true] = ACTIONS(2148), + [sym_false] = ACTIONS(2148), + [anon_sym_NULL] = ACTIONS(2148), + [anon_sym_nullptr] = ACTIONS(2148), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2148), + [anon_sym_decltype] = ACTIONS(2148), + [anon_sym_explicit] = ACTIONS(2148), + [anon_sym_typename] = ACTIONS(2148), + [anon_sym_template] = ACTIONS(2148), + [anon_sym_operator] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2148), + [anon_sym_delete] = ACTIONS(2148), + [anon_sym_throw] = ACTIONS(2148), + [anon_sym_namespace] = ACTIONS(2148), + [anon_sym_using] = ACTIONS(2148), + [anon_sym_static_assert] = ACTIONS(2148), + [anon_sym_concept] = ACTIONS(2148), + [anon_sym_co_return] = ACTIONS(2148), + [anon_sym_co_yield] = ACTIONS(2148), + [anon_sym_R_DQUOTE] = ACTIONS(2150), + [anon_sym_LR_DQUOTE] = ACTIONS(2150), + [anon_sym_uR_DQUOTE] = ACTIONS(2150), + [anon_sym_UR_DQUOTE] = ACTIONS(2150), + [anon_sym_u8R_DQUOTE] = ACTIONS(2150), + [anon_sym_co_await] = ACTIONS(2148), + [anon_sym_new] = ACTIONS(2148), + [anon_sym_requires] = ACTIONS(2148), + [sym_this] = ACTIONS(2148), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_FORWARD] = ACTIONS(2148), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2148), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_PS_GET] = ACTIONS(2148), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2148), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2148), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2148), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2148), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2148), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2148), + [anon_sym_MOZ_COLD] = ACTIONS(2148), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2148), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2148), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2148), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2148), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2148), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2148), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2148), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2148), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2148), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2148), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2148), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2148), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2148), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_NONNULL] = ACTIONS(2148), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2148), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2148), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2148), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2148), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2148), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2148), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2148), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2148), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2148), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2148), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2148), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2148), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2148), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2148), + [anon_sym_MOZ_RAII] = ACTIONS(2148), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2148), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2148), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2148), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2148), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2148), + }, + [STATE(182)] = { + [sym_identifier] = ACTIONS(2152), + [aux_sym_preproc_include_token1] = ACTIONS(2152), + [aux_sym_preproc_def_token1] = ACTIONS(2152), + [aux_sym_preproc_if_token1] = ACTIONS(2152), + [aux_sym_preproc_if_token2] = ACTIONS(2152), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2152), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2152), + [aux_sym_preproc_else_token1] = ACTIONS(2152), + [aux_sym_preproc_elif_token1] = ACTIONS(2152), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2152), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2152), + [sym_preproc_directive] = ACTIONS(2152), + [anon_sym_LPAREN2] = ACTIONS(2154), + [anon_sym_BANG] = ACTIONS(2154), + [anon_sym_TILDE] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_STAR] = ACTIONS(2154), + [anon_sym_AMP_AMP] = ACTIONS(2154), + [anon_sym_AMP] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym___extension__] = ACTIONS(2152), + [anon_sym_typedef] = ACTIONS(2152), + [anon_sym_virtual] = ACTIONS(2152), + [anon_sym_extern] = ACTIONS(2152), + [anon_sym___attribute__] = ACTIONS(2152), + [anon_sym___attribute] = ACTIONS(2152), + [anon_sym_COLON_COLON] = ACTIONS(2154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2154), + [anon_sym___declspec] = ACTIONS(2152), + [anon_sym___based] = ACTIONS(2152), + [anon_sym___cdecl] = ACTIONS(2152), + [anon_sym___clrcall] = ACTIONS(2152), + [anon_sym___stdcall] = ACTIONS(2152), + [anon_sym___fastcall] = ACTIONS(2152), + [anon_sym___thiscall] = ACTIONS(2152), + [anon_sym___vectorcall] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_signed] = ACTIONS(2152), + [anon_sym_unsigned] = ACTIONS(2152), + [anon_sym_long] = ACTIONS(2152), + [anon_sym_short] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_register] = ACTIONS(2152), + [anon_sym_inline] = ACTIONS(2152), + [anon_sym___inline] = ACTIONS(2152), + [anon_sym___inline__] = ACTIONS(2152), + [anon_sym___forceinline] = ACTIONS(2152), + [anon_sym_thread_local] = ACTIONS(2152), + [anon_sym___thread] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_constexpr] = ACTIONS(2152), + [anon_sym_volatile] = ACTIONS(2152), + [anon_sym_restrict] = ACTIONS(2152), + [anon_sym___restrict__] = ACTIONS(2152), + [anon_sym__Atomic] = ACTIONS(2152), + [anon_sym__Noreturn] = ACTIONS(2152), + [anon_sym_noreturn] = ACTIONS(2152), + [anon_sym__Nonnull] = ACTIONS(2152), + [anon_sym_mutable] = ACTIONS(2152), + [anon_sym_constinit] = ACTIONS(2152), + [anon_sym_consteval] = ACTIONS(2152), + [anon_sym_alignas] = ACTIONS(2152), + [anon_sym__Alignas] = ACTIONS(2152), + [sym_primitive_type] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_struct] = ACTIONS(2152), + [anon_sym_union] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_else] = ACTIONS(2152), + [anon_sym_switch] = ACTIONS(2152), + [anon_sym_case] = ACTIONS(2152), + [anon_sym_default] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_goto] = ACTIONS(2152), + [anon_sym___try] = ACTIONS(2152), + [anon_sym___leave] = ACTIONS(2152), + [anon_sym_not] = ACTIONS(2152), + [anon_sym_compl] = ACTIONS(2152), + [anon_sym_DASH_DASH] = ACTIONS(2154), + [anon_sym_PLUS_PLUS] = ACTIONS(2154), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2152), + [anon_sym___alignof] = ACTIONS(2152), + [anon_sym__alignof] = ACTIONS(2152), + [anon_sym_alignof] = ACTIONS(2152), + [anon_sym__Alignof] = ACTIONS(2152), + [anon_sym_offsetof] = ACTIONS(2152), + [anon_sym__Generic] = ACTIONS(2152), + [anon_sym_asm] = ACTIONS(2152), + [anon_sym___asm__] = ACTIONS(2152), + [anon_sym___asm] = ACTIONS(2152), + [sym_number_literal] = ACTIONS(2154), + [anon_sym_L_SQUOTE] = ACTIONS(2154), + [anon_sym_u_SQUOTE] = ACTIONS(2154), + [anon_sym_U_SQUOTE] = ACTIONS(2154), + [anon_sym_u8_SQUOTE] = ACTIONS(2154), + [anon_sym_SQUOTE] = ACTIONS(2154), + [anon_sym_L_DQUOTE] = ACTIONS(2154), + [anon_sym_u_DQUOTE] = ACTIONS(2154), + [anon_sym_U_DQUOTE] = ACTIONS(2154), + [anon_sym_u8_DQUOTE] = ACTIONS(2154), + [anon_sym_DQUOTE] = ACTIONS(2154), + [sym_true] = ACTIONS(2152), + [sym_false] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_nullptr] = ACTIONS(2152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2152), + [anon_sym_decltype] = ACTIONS(2152), + [anon_sym_explicit] = ACTIONS(2152), + [anon_sym_typename] = ACTIONS(2152), + [anon_sym_template] = ACTIONS(2152), + [anon_sym_operator] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2152), + [anon_sym_delete] = ACTIONS(2152), + [anon_sym_throw] = ACTIONS(2152), + [anon_sym_namespace] = ACTIONS(2152), + [anon_sym_using] = ACTIONS(2152), + [anon_sym_static_assert] = ACTIONS(2152), + [anon_sym_concept] = ACTIONS(2152), + [anon_sym_co_return] = ACTIONS(2152), + [anon_sym_co_yield] = ACTIONS(2152), + [anon_sym_R_DQUOTE] = ACTIONS(2154), + [anon_sym_LR_DQUOTE] = ACTIONS(2154), + [anon_sym_uR_DQUOTE] = ACTIONS(2154), + [anon_sym_UR_DQUOTE] = ACTIONS(2154), + [anon_sym_u8R_DQUOTE] = ACTIONS(2154), + [anon_sym_co_await] = ACTIONS(2152), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_requires] = ACTIONS(2152), + [sym_this] = ACTIONS(2152), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_FORWARD] = ACTIONS(2152), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2152), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_PS_GET] = ACTIONS(2152), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2152), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2152), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2152), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2152), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2152), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2152), + [anon_sym_MOZ_COLD] = ACTIONS(2152), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2152), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2152), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2152), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2152), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2152), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2152), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2152), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2152), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2152), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2152), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2152), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2152), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2152), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_NONNULL] = ACTIONS(2152), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2152), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2152), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2152), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2152), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2152), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2152), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2152), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2152), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2152), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2152), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2152), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2152), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2152), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2152), + [anon_sym_MOZ_RAII] = ACTIONS(2152), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2152), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2152), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2152), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2152), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2152), + }, + [STATE(183)] = { + [sym_identifier] = ACTIONS(2156), + [aux_sym_preproc_include_token1] = ACTIONS(2156), + [aux_sym_preproc_def_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token2] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2156), + [aux_sym_preproc_else_token1] = ACTIONS(2156), + [aux_sym_preproc_elif_token1] = ACTIONS(2156), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2156), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2156), + [sym_preproc_directive] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(2158), + [anon_sym_BANG] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2158), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym___extension__] = ACTIONS(2156), + [anon_sym_typedef] = ACTIONS(2156), + [anon_sym_virtual] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym___attribute__] = ACTIONS(2156), + [anon_sym___attribute] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2158), + [anon_sym___declspec] = ACTIONS(2156), + [anon_sym___based] = ACTIONS(2156), + [anon_sym___cdecl] = ACTIONS(2156), + [anon_sym___clrcall] = ACTIONS(2156), + [anon_sym___stdcall] = ACTIONS(2156), + [anon_sym___fastcall] = ACTIONS(2156), + [anon_sym___thiscall] = ACTIONS(2156), + [anon_sym___vectorcall] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2158), + [anon_sym_signed] = ACTIONS(2156), + [anon_sym_unsigned] = ACTIONS(2156), + [anon_sym_long] = ACTIONS(2156), + [anon_sym_short] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_inline] = ACTIONS(2156), + [anon_sym___inline] = ACTIONS(2156), + [anon_sym___inline__] = ACTIONS(2156), + [anon_sym___forceinline] = ACTIONS(2156), + [anon_sym_thread_local] = ACTIONS(2156), + [anon_sym___thread] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_constexpr] = ACTIONS(2156), + [anon_sym_volatile] = ACTIONS(2156), + [anon_sym_restrict] = ACTIONS(2156), + [anon_sym___restrict__] = ACTIONS(2156), + [anon_sym__Atomic] = ACTIONS(2156), + [anon_sym__Noreturn] = ACTIONS(2156), + [anon_sym_noreturn] = ACTIONS(2156), + [anon_sym__Nonnull] = ACTIONS(2156), + [anon_sym_mutable] = ACTIONS(2156), + [anon_sym_constinit] = ACTIONS(2156), + [anon_sym_consteval] = ACTIONS(2156), + [anon_sym_alignas] = ACTIONS(2156), + [anon_sym__Alignas] = ACTIONS(2156), + [sym_primitive_type] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_case] = ACTIONS(2156), + [anon_sym_default] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_goto] = ACTIONS(2156), + [anon_sym___try] = ACTIONS(2156), + [anon_sym___leave] = ACTIONS(2156), + [anon_sym_not] = ACTIONS(2156), + [anon_sym_compl] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2158), + [anon_sym_PLUS_PLUS] = ACTIONS(2158), + [anon_sym_sizeof] = ACTIONS(2156), + [anon_sym___alignof__] = ACTIONS(2156), + [anon_sym___alignof] = ACTIONS(2156), + [anon_sym__alignof] = ACTIONS(2156), + [anon_sym_alignof] = ACTIONS(2156), + [anon_sym__Alignof] = ACTIONS(2156), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2156), + [anon_sym_asm] = ACTIONS(2156), + [anon_sym___asm__] = ACTIONS(2156), + [anon_sym___asm] = ACTIONS(2156), + [sym_number_literal] = ACTIONS(2158), + [anon_sym_L_SQUOTE] = ACTIONS(2158), + [anon_sym_u_SQUOTE] = ACTIONS(2158), + [anon_sym_U_SQUOTE] = ACTIONS(2158), + [anon_sym_u8_SQUOTE] = ACTIONS(2158), + [anon_sym_SQUOTE] = ACTIONS(2158), + [anon_sym_L_DQUOTE] = ACTIONS(2158), + [anon_sym_u_DQUOTE] = ACTIONS(2158), + [anon_sym_U_DQUOTE] = ACTIONS(2158), + [anon_sym_u8_DQUOTE] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [anon_sym_NULL] = ACTIONS(2156), + [anon_sym_nullptr] = ACTIONS(2156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2156), + [anon_sym_decltype] = ACTIONS(2156), + [anon_sym_explicit] = ACTIONS(2156), + [anon_sym_typename] = ACTIONS(2156), + [anon_sym_template] = ACTIONS(2156), + [anon_sym_operator] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_static_assert] = ACTIONS(2156), + [anon_sym_concept] = ACTIONS(2156), + [anon_sym_co_return] = ACTIONS(2156), + [anon_sym_co_yield] = ACTIONS(2156), + [anon_sym_R_DQUOTE] = ACTIONS(2158), + [anon_sym_LR_DQUOTE] = ACTIONS(2158), + [anon_sym_uR_DQUOTE] = ACTIONS(2158), + [anon_sym_UR_DQUOTE] = ACTIONS(2158), + [anon_sym_u8R_DQUOTE] = ACTIONS(2158), + [anon_sym_co_await] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_requires] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_FORWARD] = ACTIONS(2156), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2156), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_PS_GET] = ACTIONS(2156), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2156), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2156), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2156), + [anon_sym_MOZ_COLD] = ACTIONS(2156), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2156), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2156), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2156), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2156), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2156), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2156), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2156), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2156), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2156), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2156), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2156), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2156), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_RAII] = ACTIONS(2156), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2156), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2156), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2156), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2156), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2156), + }, + [STATE(184)] = { + [sym_identifier] = ACTIONS(2156), + [aux_sym_preproc_include_token1] = ACTIONS(2156), + [aux_sym_preproc_def_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token2] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2156), + [aux_sym_preproc_else_token1] = ACTIONS(2156), + [aux_sym_preproc_elif_token1] = ACTIONS(2156), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2156), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2156), + [sym_preproc_directive] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(2158), + [anon_sym_BANG] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2158), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym___extension__] = ACTIONS(2156), + [anon_sym_typedef] = ACTIONS(2156), + [anon_sym_virtual] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym___attribute__] = ACTIONS(2156), + [anon_sym___attribute] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2158), + [anon_sym___declspec] = ACTIONS(2156), + [anon_sym___based] = ACTIONS(2156), + [anon_sym___cdecl] = ACTIONS(2156), + [anon_sym___clrcall] = ACTIONS(2156), + [anon_sym___stdcall] = ACTIONS(2156), + [anon_sym___fastcall] = ACTIONS(2156), + [anon_sym___thiscall] = ACTIONS(2156), + [anon_sym___vectorcall] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2158), + [anon_sym_signed] = ACTIONS(2156), + [anon_sym_unsigned] = ACTIONS(2156), + [anon_sym_long] = ACTIONS(2156), + [anon_sym_short] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_inline] = ACTIONS(2156), + [anon_sym___inline] = ACTIONS(2156), + [anon_sym___inline__] = ACTIONS(2156), + [anon_sym___forceinline] = ACTIONS(2156), + [anon_sym_thread_local] = ACTIONS(2156), + [anon_sym___thread] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_constexpr] = ACTIONS(2156), + [anon_sym_volatile] = ACTIONS(2156), + [anon_sym_restrict] = ACTIONS(2156), + [anon_sym___restrict__] = ACTIONS(2156), + [anon_sym__Atomic] = ACTIONS(2156), + [anon_sym__Noreturn] = ACTIONS(2156), + [anon_sym_noreturn] = ACTIONS(2156), + [anon_sym__Nonnull] = ACTIONS(2156), + [anon_sym_mutable] = ACTIONS(2156), + [anon_sym_constinit] = ACTIONS(2156), + [anon_sym_consteval] = ACTIONS(2156), + [anon_sym_alignas] = ACTIONS(2156), + [anon_sym__Alignas] = ACTIONS(2156), + [sym_primitive_type] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_case] = ACTIONS(2156), + [anon_sym_default] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_goto] = ACTIONS(2156), + [anon_sym___try] = ACTIONS(2156), + [anon_sym___leave] = ACTIONS(2156), + [anon_sym_not] = ACTIONS(2156), + [anon_sym_compl] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2158), + [anon_sym_PLUS_PLUS] = ACTIONS(2158), + [anon_sym_sizeof] = ACTIONS(2156), + [anon_sym___alignof__] = ACTIONS(2156), + [anon_sym___alignof] = ACTIONS(2156), + [anon_sym__alignof] = ACTIONS(2156), + [anon_sym_alignof] = ACTIONS(2156), + [anon_sym__Alignof] = ACTIONS(2156), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2156), + [anon_sym_asm] = ACTIONS(2156), + [anon_sym___asm__] = ACTIONS(2156), + [anon_sym___asm] = ACTIONS(2156), + [sym_number_literal] = ACTIONS(2158), + [anon_sym_L_SQUOTE] = ACTIONS(2158), + [anon_sym_u_SQUOTE] = ACTIONS(2158), + [anon_sym_U_SQUOTE] = ACTIONS(2158), + [anon_sym_u8_SQUOTE] = ACTIONS(2158), + [anon_sym_SQUOTE] = ACTIONS(2158), + [anon_sym_L_DQUOTE] = ACTIONS(2158), + [anon_sym_u_DQUOTE] = ACTIONS(2158), + [anon_sym_U_DQUOTE] = ACTIONS(2158), + [anon_sym_u8_DQUOTE] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [anon_sym_NULL] = ACTIONS(2156), + [anon_sym_nullptr] = ACTIONS(2156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2156), + [anon_sym_decltype] = ACTIONS(2156), + [anon_sym_explicit] = ACTIONS(2156), + [anon_sym_typename] = ACTIONS(2156), + [anon_sym_template] = ACTIONS(2156), + [anon_sym_operator] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_static_assert] = ACTIONS(2156), + [anon_sym_concept] = ACTIONS(2156), + [anon_sym_co_return] = ACTIONS(2156), + [anon_sym_co_yield] = ACTIONS(2156), + [anon_sym_R_DQUOTE] = ACTIONS(2158), + [anon_sym_LR_DQUOTE] = ACTIONS(2158), + [anon_sym_uR_DQUOTE] = ACTIONS(2158), + [anon_sym_UR_DQUOTE] = ACTIONS(2158), + [anon_sym_u8R_DQUOTE] = ACTIONS(2158), + [anon_sym_co_await] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_requires] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_FORWARD] = ACTIONS(2156), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2156), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_PS_GET] = ACTIONS(2156), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2156), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2156), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2156), + [anon_sym_MOZ_COLD] = ACTIONS(2156), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2156), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2156), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2156), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2156), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2156), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2156), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2156), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2156), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2156), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2156), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2156), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2156), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_RAII] = ACTIONS(2156), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2156), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2156), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2156), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2156), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2156), + }, + [STATE(185)] = { + [sym_identifier] = ACTIONS(2160), + [aux_sym_preproc_include_token1] = ACTIONS(2160), + [aux_sym_preproc_def_token1] = ACTIONS(2160), + [aux_sym_preproc_if_token1] = ACTIONS(2160), + [aux_sym_preproc_if_token2] = ACTIONS(2160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2160), + [aux_sym_preproc_else_token1] = ACTIONS(2160), + [aux_sym_preproc_elif_token1] = ACTIONS(2160), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2160), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2160), + [sym_preproc_directive] = ACTIONS(2160), + [anon_sym_LPAREN2] = ACTIONS(2162), + [anon_sym_BANG] = ACTIONS(2162), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym___extension__] = ACTIONS(2160), + [anon_sym_typedef] = ACTIONS(2160), + [anon_sym_virtual] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2160), + [anon_sym___attribute__] = ACTIONS(2160), + [anon_sym___attribute] = ACTIONS(2160), + [anon_sym_COLON_COLON] = ACTIONS(2162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2162), + [anon_sym___declspec] = ACTIONS(2160), + [anon_sym___based] = ACTIONS(2160), + [anon_sym___cdecl] = ACTIONS(2160), + [anon_sym___clrcall] = ACTIONS(2160), + [anon_sym___stdcall] = ACTIONS(2160), + [anon_sym___fastcall] = ACTIONS(2160), + [anon_sym___thiscall] = ACTIONS(2160), + [anon_sym___vectorcall] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_signed] = ACTIONS(2160), + [anon_sym_unsigned] = ACTIONS(2160), + [anon_sym_long] = ACTIONS(2160), + [anon_sym_short] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_register] = ACTIONS(2160), + [anon_sym_inline] = ACTIONS(2160), + [anon_sym___inline] = ACTIONS(2160), + [anon_sym___inline__] = ACTIONS(2160), + [anon_sym___forceinline] = ACTIONS(2160), + [anon_sym_thread_local] = ACTIONS(2160), + [anon_sym___thread] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_constexpr] = ACTIONS(2160), + [anon_sym_volatile] = ACTIONS(2160), + [anon_sym_restrict] = ACTIONS(2160), + [anon_sym___restrict__] = ACTIONS(2160), + [anon_sym__Atomic] = ACTIONS(2160), + [anon_sym__Noreturn] = ACTIONS(2160), + [anon_sym_noreturn] = ACTIONS(2160), + [anon_sym__Nonnull] = ACTIONS(2160), + [anon_sym_mutable] = ACTIONS(2160), + [anon_sym_constinit] = ACTIONS(2160), + [anon_sym_consteval] = ACTIONS(2160), + [anon_sym_alignas] = ACTIONS(2160), + [anon_sym__Alignas] = ACTIONS(2160), + [sym_primitive_type] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_struct] = ACTIONS(2160), + [anon_sym_union] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_goto] = ACTIONS(2160), + [anon_sym___try] = ACTIONS(2160), + [anon_sym___leave] = ACTIONS(2160), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_compl] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_sizeof] = ACTIONS(2160), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2160), + [anon_sym__Generic] = ACTIONS(2160), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [anon_sym___asm] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2162), + [anon_sym_u_DQUOTE] = ACTIONS(2162), + [anon_sym_U_DQUOTE] = ACTIONS(2162), + [anon_sym_u8_DQUOTE] = ACTIONS(2162), + [anon_sym_DQUOTE] = ACTIONS(2162), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [anon_sym_NULL] = ACTIONS(2160), + [anon_sym_nullptr] = ACTIONS(2160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2160), + [anon_sym_decltype] = ACTIONS(2160), + [anon_sym_explicit] = ACTIONS(2160), + [anon_sym_typename] = ACTIONS(2160), + [anon_sym_template] = ACTIONS(2160), + [anon_sym_operator] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_static_assert] = ACTIONS(2160), + [anon_sym_concept] = ACTIONS(2160), + [anon_sym_co_return] = ACTIONS(2160), + [anon_sym_co_yield] = ACTIONS(2160), + [anon_sym_R_DQUOTE] = ACTIONS(2162), + [anon_sym_LR_DQUOTE] = ACTIONS(2162), + [anon_sym_uR_DQUOTE] = ACTIONS(2162), + [anon_sym_UR_DQUOTE] = ACTIONS(2162), + [anon_sym_u8R_DQUOTE] = ACTIONS(2162), + [anon_sym_co_await] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_requires] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_FORWARD] = ACTIONS(2160), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2160), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_PS_GET] = ACTIONS(2160), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2160), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2160), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2160), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2160), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2160), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2160), + [anon_sym_MOZ_COLD] = ACTIONS(2160), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2160), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2160), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2160), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2160), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2160), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2160), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2160), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2160), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2160), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2160), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2160), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2160), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2160), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_NONNULL] = ACTIONS(2160), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2160), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2160), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2160), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2160), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2160), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2160), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2160), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2160), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2160), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2160), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2160), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2160), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2160), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2160), + [anon_sym_MOZ_RAII] = ACTIONS(2160), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2160), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2160), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2160), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2160), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2160), + }, + [STATE(186)] = { + [sym_identifier] = ACTIONS(2164), + [aux_sym_preproc_include_token1] = ACTIONS(2164), + [aux_sym_preproc_def_token1] = ACTIONS(2164), + [aux_sym_preproc_if_token1] = ACTIONS(2164), + [aux_sym_preproc_if_token2] = ACTIONS(2164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2164), + [aux_sym_preproc_else_token1] = ACTIONS(2164), + [aux_sym_preproc_elif_token1] = ACTIONS(2164), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2164), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2164), + [sym_preproc_directive] = ACTIONS(2164), + [anon_sym_LPAREN2] = ACTIONS(2166), + [anon_sym_BANG] = ACTIONS(2166), + [anon_sym_TILDE] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_PLUS] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2166), + [anon_sym_AMP_AMP] = ACTIONS(2166), + [anon_sym_AMP] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym___extension__] = ACTIONS(2164), + [anon_sym_typedef] = ACTIONS(2164), + [anon_sym_virtual] = ACTIONS(2164), + [anon_sym_extern] = ACTIONS(2164), + [anon_sym___attribute__] = ACTIONS(2164), + [anon_sym___attribute] = ACTIONS(2164), + [anon_sym_COLON_COLON] = ACTIONS(2166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2166), + [anon_sym___declspec] = ACTIONS(2164), + [anon_sym___based] = ACTIONS(2164), + [anon_sym___cdecl] = ACTIONS(2164), + [anon_sym___clrcall] = ACTIONS(2164), + [anon_sym___stdcall] = ACTIONS(2164), + [anon_sym___fastcall] = ACTIONS(2164), + [anon_sym___thiscall] = ACTIONS(2164), + [anon_sym___vectorcall] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_signed] = ACTIONS(2164), + [anon_sym_unsigned] = ACTIONS(2164), + [anon_sym_long] = ACTIONS(2164), + [anon_sym_short] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_static] = ACTIONS(2164), + [anon_sym_register] = ACTIONS(2164), + [anon_sym_inline] = ACTIONS(2164), + [anon_sym___inline] = ACTIONS(2164), + [anon_sym___inline__] = ACTIONS(2164), + [anon_sym___forceinline] = ACTIONS(2164), + [anon_sym_thread_local] = ACTIONS(2164), + [anon_sym___thread] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [anon_sym_constexpr] = ACTIONS(2164), + [anon_sym_volatile] = ACTIONS(2164), + [anon_sym_restrict] = ACTIONS(2164), + [anon_sym___restrict__] = ACTIONS(2164), + [anon_sym__Atomic] = ACTIONS(2164), + [anon_sym__Noreturn] = ACTIONS(2164), + [anon_sym_noreturn] = ACTIONS(2164), + [anon_sym__Nonnull] = ACTIONS(2164), + [anon_sym_mutable] = ACTIONS(2164), + [anon_sym_constinit] = ACTIONS(2164), + [anon_sym_consteval] = ACTIONS(2164), + [anon_sym_alignas] = ACTIONS(2164), + [anon_sym__Alignas] = ACTIONS(2164), + [sym_primitive_type] = ACTIONS(2164), + [anon_sym_enum] = ACTIONS(2164), + [anon_sym_class] = ACTIONS(2164), + [anon_sym_struct] = ACTIONS(2164), + [anon_sym_union] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_else] = ACTIONS(2164), + [anon_sym_switch] = ACTIONS(2164), + [anon_sym_case] = ACTIONS(2164), + [anon_sym_default] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_goto] = ACTIONS(2164), + [anon_sym___try] = ACTIONS(2164), + [anon_sym___leave] = ACTIONS(2164), + [anon_sym_not] = ACTIONS(2164), + [anon_sym_compl] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2166), + [anon_sym_sizeof] = ACTIONS(2164), + [anon_sym___alignof__] = ACTIONS(2164), + [anon_sym___alignof] = ACTIONS(2164), + [anon_sym__alignof] = ACTIONS(2164), + [anon_sym_alignof] = ACTIONS(2164), + [anon_sym__Alignof] = ACTIONS(2164), + [anon_sym_offsetof] = ACTIONS(2164), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2164), + [anon_sym___asm__] = ACTIONS(2164), + [anon_sym___asm] = ACTIONS(2164), + [sym_number_literal] = ACTIONS(2166), + [anon_sym_L_SQUOTE] = ACTIONS(2166), + [anon_sym_u_SQUOTE] = ACTIONS(2166), + [anon_sym_U_SQUOTE] = ACTIONS(2166), + [anon_sym_u8_SQUOTE] = ACTIONS(2166), + [anon_sym_SQUOTE] = ACTIONS(2166), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2164), + [sym_false] = ACTIONS(2164), + [anon_sym_NULL] = ACTIONS(2164), + [anon_sym_nullptr] = ACTIONS(2164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2164), + [anon_sym_decltype] = ACTIONS(2164), + [anon_sym_explicit] = ACTIONS(2164), + [anon_sym_typename] = ACTIONS(2164), + [anon_sym_template] = ACTIONS(2164), + [anon_sym_operator] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_delete] = ACTIONS(2164), + [anon_sym_throw] = ACTIONS(2164), + [anon_sym_namespace] = ACTIONS(2164), + [anon_sym_using] = ACTIONS(2164), + [anon_sym_static_assert] = ACTIONS(2164), + [anon_sym_concept] = ACTIONS(2164), + [anon_sym_co_return] = ACTIONS(2164), + [anon_sym_co_yield] = ACTIONS(2164), + [anon_sym_R_DQUOTE] = ACTIONS(2166), + [anon_sym_LR_DQUOTE] = ACTIONS(2166), + [anon_sym_uR_DQUOTE] = ACTIONS(2166), + [anon_sym_UR_DQUOTE] = ACTIONS(2166), + [anon_sym_u8R_DQUOTE] = ACTIONS(2166), + [anon_sym_co_await] = ACTIONS(2164), + [anon_sym_new] = ACTIONS(2164), + [anon_sym_requires] = ACTIONS(2164), + [sym_this] = ACTIONS(2164), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_FORWARD] = ACTIONS(2164), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2164), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_PS_GET] = ACTIONS(2164), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2164), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2164), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2164), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2164), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2164), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2164), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2164), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2164), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2164), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2164), + [anon_sym_MOZ_COLD] = ACTIONS(2164), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2164), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2164), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2164), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2164), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2164), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2164), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2164), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2164), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2164), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2164), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2164), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2164), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2164), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2164), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2164), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2164), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2164), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2164), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2164), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2164), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_NONNULL] = ACTIONS(2164), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2164), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2164), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2164), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2164), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2164), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_NORETURN] = ACTIONS(2164), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2164), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2164), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2164), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2164), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2164), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2164), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2164), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2164), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2164), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2164), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2164), + [anon_sym_MOZ_RAII] = ACTIONS(2164), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2164), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2164), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2164), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2164), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2164), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2164), + }, + [STATE(187)] = { + [sym_identifier] = ACTIONS(2168), + [aux_sym_preproc_include_token1] = ACTIONS(2168), + [aux_sym_preproc_def_token1] = ACTIONS(2168), + [aux_sym_preproc_if_token1] = ACTIONS(2168), + [aux_sym_preproc_if_token2] = ACTIONS(2168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2168), + [aux_sym_preproc_else_token1] = ACTIONS(2168), + [aux_sym_preproc_elif_token1] = ACTIONS(2168), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2168), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2168), + [sym_preproc_directive] = ACTIONS(2168), + [anon_sym_LPAREN2] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2168), + [anon_sym_PLUS] = ACTIONS(2168), + [anon_sym_STAR] = ACTIONS(2170), + [anon_sym_AMP_AMP] = ACTIONS(2170), + [anon_sym_AMP] = ACTIONS(2168), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym___extension__] = ACTIONS(2168), + [anon_sym_typedef] = ACTIONS(2168), + [anon_sym_virtual] = ACTIONS(2168), + [anon_sym_extern] = ACTIONS(2168), + [anon_sym___attribute__] = ACTIONS(2168), + [anon_sym___attribute] = ACTIONS(2168), + [anon_sym_COLON_COLON] = ACTIONS(2170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2170), + [anon_sym___declspec] = ACTIONS(2168), + [anon_sym___based] = ACTIONS(2168), + [anon_sym___cdecl] = ACTIONS(2168), + [anon_sym___clrcall] = ACTIONS(2168), + [anon_sym___stdcall] = ACTIONS(2168), + [anon_sym___fastcall] = ACTIONS(2168), + [anon_sym___thiscall] = ACTIONS(2168), + [anon_sym___vectorcall] = ACTIONS(2168), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_signed] = ACTIONS(2168), + [anon_sym_unsigned] = ACTIONS(2168), + [anon_sym_long] = ACTIONS(2168), + [anon_sym_short] = ACTIONS(2168), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_static] = ACTIONS(2168), + [anon_sym_register] = ACTIONS(2168), + [anon_sym_inline] = ACTIONS(2168), + [anon_sym___inline] = ACTIONS(2168), + [anon_sym___inline__] = ACTIONS(2168), + [anon_sym___forceinline] = ACTIONS(2168), + [anon_sym_thread_local] = ACTIONS(2168), + [anon_sym___thread] = ACTIONS(2168), + [anon_sym_const] = ACTIONS(2168), + [anon_sym_constexpr] = ACTIONS(2168), + [anon_sym_volatile] = ACTIONS(2168), + [anon_sym_restrict] = ACTIONS(2168), + [anon_sym___restrict__] = ACTIONS(2168), + [anon_sym__Atomic] = ACTIONS(2168), + [anon_sym__Noreturn] = ACTIONS(2168), + [anon_sym_noreturn] = ACTIONS(2168), + [anon_sym__Nonnull] = ACTIONS(2168), + [anon_sym_mutable] = ACTIONS(2168), + [anon_sym_constinit] = ACTIONS(2168), + [anon_sym_consteval] = ACTIONS(2168), + [anon_sym_alignas] = ACTIONS(2168), + [anon_sym__Alignas] = ACTIONS(2168), + [sym_primitive_type] = ACTIONS(2168), + [anon_sym_enum] = ACTIONS(2168), + [anon_sym_class] = ACTIONS(2168), + [anon_sym_struct] = ACTIONS(2168), + [anon_sym_union] = ACTIONS(2168), + [anon_sym_if] = ACTIONS(2168), + [anon_sym_else] = ACTIONS(2168), + [anon_sym_switch] = ACTIONS(2168), + [anon_sym_case] = ACTIONS(2168), + [anon_sym_default] = ACTIONS(2168), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_do] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2168), + [anon_sym_return] = ACTIONS(2168), + [anon_sym_break] = ACTIONS(2168), + [anon_sym_continue] = ACTIONS(2168), + [anon_sym_goto] = ACTIONS(2168), + [anon_sym___try] = ACTIONS(2168), + [anon_sym___leave] = ACTIONS(2168), + [anon_sym_not] = ACTIONS(2168), + [anon_sym_compl] = ACTIONS(2168), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_sizeof] = ACTIONS(2168), + [anon_sym___alignof__] = ACTIONS(2168), + [anon_sym___alignof] = ACTIONS(2168), + [anon_sym__alignof] = ACTIONS(2168), + [anon_sym_alignof] = ACTIONS(2168), + [anon_sym__Alignof] = ACTIONS(2168), + [anon_sym_offsetof] = ACTIONS(2168), + [anon_sym__Generic] = ACTIONS(2168), + [anon_sym_asm] = ACTIONS(2168), + [anon_sym___asm__] = ACTIONS(2168), + [anon_sym___asm] = ACTIONS(2168), + [sym_number_literal] = ACTIONS(2170), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2170), + [anon_sym_u_DQUOTE] = ACTIONS(2170), + [anon_sym_U_DQUOTE] = ACTIONS(2170), + [anon_sym_u8_DQUOTE] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2168), + [anon_sym_nullptr] = ACTIONS(2168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2168), + [anon_sym_decltype] = ACTIONS(2168), + [anon_sym_explicit] = ACTIONS(2168), + [anon_sym_typename] = ACTIONS(2168), + [anon_sym_template] = ACTIONS(2168), + [anon_sym_operator] = ACTIONS(2168), + [anon_sym_try] = ACTIONS(2168), + [anon_sym_delete] = ACTIONS(2168), + [anon_sym_throw] = ACTIONS(2168), + [anon_sym_namespace] = ACTIONS(2168), + [anon_sym_using] = ACTIONS(2168), + [anon_sym_static_assert] = ACTIONS(2168), + [anon_sym_concept] = ACTIONS(2168), + [anon_sym_co_return] = ACTIONS(2168), + [anon_sym_co_yield] = ACTIONS(2168), + [anon_sym_R_DQUOTE] = ACTIONS(2170), + [anon_sym_LR_DQUOTE] = ACTIONS(2170), + [anon_sym_uR_DQUOTE] = ACTIONS(2170), + [anon_sym_UR_DQUOTE] = ACTIONS(2170), + [anon_sym_u8R_DQUOTE] = ACTIONS(2170), + [anon_sym_co_await] = ACTIONS(2168), + [anon_sym_new] = ACTIONS(2168), + [anon_sym_requires] = ACTIONS(2168), + [sym_this] = ACTIONS(2168), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_FORWARD] = ACTIONS(2168), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2168), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_PS_GET] = ACTIONS(2168), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2168), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2168), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2168), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2168), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2168), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2168), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2168), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2168), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2168), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2168), + [anon_sym_MOZ_COLD] = ACTIONS(2168), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2168), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2168), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2168), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2168), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2168), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2168), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2168), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2168), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2168), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2168), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2168), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2168), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2168), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2168), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2168), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2168), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2168), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2168), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2168), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2168), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_NONNULL] = ACTIONS(2168), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2168), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2168), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2168), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2168), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2168), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_NORETURN] = ACTIONS(2168), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2168), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2168), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2168), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2168), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2168), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2168), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2168), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2168), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2168), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2168), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2168), + [anon_sym_MOZ_RAII] = ACTIONS(2168), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2168), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2168), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2168), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2168), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2168), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2168), + }, + [STATE(188)] = { + [sym_identifier] = ACTIONS(2172), + [aux_sym_preproc_include_token1] = ACTIONS(2172), + [aux_sym_preproc_def_token1] = ACTIONS(2172), + [aux_sym_preproc_if_token1] = ACTIONS(2172), + [aux_sym_preproc_if_token2] = ACTIONS(2172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2172), + [aux_sym_preproc_else_token1] = ACTIONS(2172), + [aux_sym_preproc_elif_token1] = ACTIONS(2172), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2172), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2172), + [sym_preproc_directive] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym___extension__] = ACTIONS(2172), + [anon_sym_typedef] = ACTIONS(2172), + [anon_sym_virtual] = ACTIONS(2172), + [anon_sym_extern] = ACTIONS(2172), + [anon_sym___attribute__] = ACTIONS(2172), + [anon_sym___attribute] = ACTIONS(2172), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2175), + [anon_sym___declspec] = ACTIONS(2172), + [anon_sym___based] = ACTIONS(2172), + [anon_sym___cdecl] = ACTIONS(2172), + [anon_sym___clrcall] = ACTIONS(2172), + [anon_sym___stdcall] = ACTIONS(2172), + [anon_sym___fastcall] = ACTIONS(2172), + [anon_sym___thiscall] = ACTIONS(2172), + [anon_sym___vectorcall] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_signed] = ACTIONS(2172), + [anon_sym_unsigned] = ACTIONS(2172), + [anon_sym_long] = ACTIONS(2172), + [anon_sym_short] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_register] = ACTIONS(2172), + [anon_sym_inline] = ACTIONS(2172), + [anon_sym___inline] = ACTIONS(2172), + [anon_sym___inline__] = ACTIONS(2172), + [anon_sym___forceinline] = ACTIONS(2172), + [anon_sym_thread_local] = ACTIONS(2172), + [anon_sym___thread] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_constexpr] = ACTIONS(2172), + [anon_sym_volatile] = ACTIONS(2172), + [anon_sym_restrict] = ACTIONS(2172), + [anon_sym___restrict__] = ACTIONS(2172), + [anon_sym__Atomic] = ACTIONS(2172), + [anon_sym__Noreturn] = ACTIONS(2172), + [anon_sym_noreturn] = ACTIONS(2172), + [anon_sym__Nonnull] = ACTIONS(2172), + [anon_sym_mutable] = ACTIONS(2172), + [anon_sym_constinit] = ACTIONS(2172), + [anon_sym_consteval] = ACTIONS(2172), + [anon_sym_alignas] = ACTIONS(2172), + [anon_sym__Alignas] = ACTIONS(2172), + [sym_primitive_type] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_struct] = ACTIONS(2172), + [anon_sym_union] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_goto] = ACTIONS(2172), + [anon_sym___try] = ACTIONS(2172), + [anon_sym___leave] = ACTIONS(2172), + [anon_sym_not] = ACTIONS(2172), + [anon_sym_compl] = ACTIONS(2172), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_sizeof] = ACTIONS(2172), + [anon_sym___alignof__] = ACTIONS(2172), + [anon_sym___alignof] = ACTIONS(2172), + [anon_sym__alignof] = ACTIONS(2172), + [anon_sym_alignof] = ACTIONS(2172), + [anon_sym__Alignof] = ACTIONS(2172), + [anon_sym_offsetof] = ACTIONS(2172), + [anon_sym__Generic] = ACTIONS(2172), + [anon_sym_asm] = ACTIONS(2172), + [anon_sym___asm__] = ACTIONS(2172), + [anon_sym___asm] = ACTIONS(2172), + [sym_number_literal] = ACTIONS(2175), + [anon_sym_L_SQUOTE] = ACTIONS(2175), + [anon_sym_u_SQUOTE] = ACTIONS(2175), + [anon_sym_U_SQUOTE] = ACTIONS(2175), + [anon_sym_u8_SQUOTE] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_L_DQUOTE] = ACTIONS(2175), + [anon_sym_u_DQUOTE] = ACTIONS(2175), + [anon_sym_U_DQUOTE] = ACTIONS(2175), + [anon_sym_u8_DQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [anon_sym_NULL] = ACTIONS(2172), + [anon_sym_nullptr] = ACTIONS(2172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2172), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_explicit] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(2172), + [anon_sym_operator] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_using] = ACTIONS(2172), + [anon_sym_static_assert] = ACTIONS(2172), + [anon_sym_concept] = ACTIONS(2172), + [anon_sym_co_return] = ACTIONS(2172), + [anon_sym_co_yield] = ACTIONS(2172), + [anon_sym_R_DQUOTE] = ACTIONS(2175), + [anon_sym_LR_DQUOTE] = ACTIONS(2175), + [anon_sym_uR_DQUOTE] = ACTIONS(2175), + [anon_sym_UR_DQUOTE] = ACTIONS(2175), + [anon_sym_u8R_DQUOTE] = ACTIONS(2175), + [anon_sym_co_await] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_requires] = ACTIONS(2172), + [sym_this] = ACTIONS(2172), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2172), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_FORWARD] = ACTIONS(2172), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2172), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2172), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2172), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2172), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_PS_GET] = ACTIONS(2172), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2172), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2172), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2172), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2172), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2172), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2172), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2172), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2172), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2172), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2172), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2172), + [anon_sym_MOZ_COLD] = ACTIONS(2172), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2172), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2172), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2172), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2172), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2172), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2172), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2172), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2172), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2172), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2172), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2172), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2172), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2172), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2172), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2172), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2172), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2172), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2172), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2172), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2172), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_NONNULL] = ACTIONS(2172), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2172), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2172), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2172), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2172), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2172), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_NORETURN] = ACTIONS(2172), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2172), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2172), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2172), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2172), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2172), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2172), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2172), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2172), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2172), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2172), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2172), + [anon_sym_MOZ_RAII] = ACTIONS(2172), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2172), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2172), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2172), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2172), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2172), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2172), + }, + [STATE(189)] = { + [sym_identifier] = ACTIONS(2178), + [aux_sym_preproc_include_token1] = ACTIONS(2178), + [aux_sym_preproc_def_token1] = ACTIONS(2178), + [aux_sym_preproc_if_token1] = ACTIONS(2178), + [aux_sym_preproc_if_token2] = ACTIONS(2178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), + [aux_sym_preproc_else_token1] = ACTIONS(2178), + [aux_sym_preproc_elif_token1] = ACTIONS(2178), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2178), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2178), + [sym_preproc_directive] = ACTIONS(2178), + [anon_sym_LPAREN2] = ACTIONS(2180), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_TILDE] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(2180), + [anon_sym_AMP_AMP] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2180), + [anon_sym___extension__] = ACTIONS(2178), + [anon_sym_typedef] = ACTIONS(2178), + [anon_sym_virtual] = ACTIONS(2178), + [anon_sym_extern] = ACTIONS(2178), + [anon_sym___attribute__] = ACTIONS(2178), + [anon_sym___attribute] = ACTIONS(2178), + [anon_sym_COLON_COLON] = ACTIONS(2180), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2180), + [anon_sym___declspec] = ACTIONS(2178), + [anon_sym___based] = ACTIONS(2178), + [anon_sym___cdecl] = ACTIONS(2178), + [anon_sym___clrcall] = ACTIONS(2178), + [anon_sym___stdcall] = ACTIONS(2178), + [anon_sym___fastcall] = ACTIONS(2178), + [anon_sym___thiscall] = ACTIONS(2178), + [anon_sym___vectorcall] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2180), + [anon_sym_signed] = ACTIONS(2178), + [anon_sym_unsigned] = ACTIONS(2178), + [anon_sym_long] = ACTIONS(2178), + [anon_sym_short] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_register] = ACTIONS(2178), + [anon_sym_inline] = ACTIONS(2178), + [anon_sym___inline] = ACTIONS(2178), + [anon_sym___inline__] = ACTIONS(2178), + [anon_sym___forceinline] = ACTIONS(2178), + [anon_sym_thread_local] = ACTIONS(2178), + [anon_sym___thread] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_constexpr] = ACTIONS(2178), + [anon_sym_volatile] = ACTIONS(2178), + [anon_sym_restrict] = ACTIONS(2178), + [anon_sym___restrict__] = ACTIONS(2178), + [anon_sym__Atomic] = ACTIONS(2178), + [anon_sym__Noreturn] = ACTIONS(2178), + [anon_sym_noreturn] = ACTIONS(2178), + [anon_sym__Nonnull] = ACTIONS(2178), + [anon_sym_mutable] = ACTIONS(2178), + [anon_sym_constinit] = ACTIONS(2178), + [anon_sym_consteval] = ACTIONS(2178), + [anon_sym_alignas] = ACTIONS(2178), + [anon_sym__Alignas] = ACTIONS(2178), + [sym_primitive_type] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_struct] = ACTIONS(2178), + [anon_sym_union] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_case] = ACTIONS(2178), + [anon_sym_default] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_goto] = ACTIONS(2178), + [anon_sym___try] = ACTIONS(2178), + [anon_sym___leave] = ACTIONS(2178), + [anon_sym_not] = ACTIONS(2178), + [anon_sym_compl] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(2178), + [anon_sym___alignof__] = ACTIONS(2178), + [anon_sym___alignof] = ACTIONS(2178), + [anon_sym__alignof] = ACTIONS(2178), + [anon_sym_alignof] = ACTIONS(2178), + [anon_sym__Alignof] = ACTIONS(2178), + [anon_sym_offsetof] = ACTIONS(2178), + [anon_sym__Generic] = ACTIONS(2178), + [anon_sym_asm] = ACTIONS(2178), + [anon_sym___asm__] = ACTIONS(2178), + [anon_sym___asm] = ACTIONS(2178), + [sym_number_literal] = ACTIONS(2180), + [anon_sym_L_SQUOTE] = ACTIONS(2180), + [anon_sym_u_SQUOTE] = ACTIONS(2180), + [anon_sym_U_SQUOTE] = ACTIONS(2180), + [anon_sym_u8_SQUOTE] = ACTIONS(2180), + [anon_sym_SQUOTE] = ACTIONS(2180), + [anon_sym_L_DQUOTE] = ACTIONS(2180), + [anon_sym_u_DQUOTE] = ACTIONS(2180), + [anon_sym_U_DQUOTE] = ACTIONS(2180), + [anon_sym_u8_DQUOTE] = ACTIONS(2180), + [anon_sym_DQUOTE] = ACTIONS(2180), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [anon_sym_NULL] = ACTIONS(2178), + [anon_sym_nullptr] = ACTIONS(2178), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2178), + [anon_sym_decltype] = ACTIONS(2178), + [anon_sym_explicit] = ACTIONS(2178), + [anon_sym_typename] = ACTIONS(2178), + [anon_sym_template] = ACTIONS(2178), + [anon_sym_operator] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_static_assert] = ACTIONS(2178), + [anon_sym_concept] = ACTIONS(2178), + [anon_sym_co_return] = ACTIONS(2178), + [anon_sym_co_yield] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_requires] = ACTIONS(2178), + [sym_this] = ACTIONS(2178), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2178), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_FORWARD] = ACTIONS(2178), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2178), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2178), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2178), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2178), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_PS_GET] = ACTIONS(2178), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2178), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2178), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2178), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2178), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2178), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2178), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2178), + [anon_sym_MOZ_COLD] = ACTIONS(2178), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2178), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2178), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2178), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2178), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2178), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2178), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2178), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2178), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2178), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2178), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2178), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2178), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2178), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_NONNULL] = ACTIONS(2178), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2178), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2178), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2178), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2178), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2178), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2178), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2178), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2178), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2178), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2178), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2178), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2178), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2178), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2178), + [anon_sym_MOZ_RAII] = ACTIONS(2178), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2178), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2178), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2178), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2178), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2178), + }, + [STATE(190)] = { + [sym_identifier] = ACTIONS(2182), + [aux_sym_preproc_include_token1] = ACTIONS(2182), + [aux_sym_preproc_def_token1] = ACTIONS(2182), + [aux_sym_preproc_if_token1] = ACTIONS(2182), + [aux_sym_preproc_if_token2] = ACTIONS(2182), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2182), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2182), + [aux_sym_preproc_else_token1] = ACTIONS(2182), + [aux_sym_preproc_elif_token1] = ACTIONS(2182), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2182), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2182), + [sym_preproc_directive] = ACTIONS(2182), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2182), + [anon_sym_PLUS] = ACTIONS(2182), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym___extension__] = ACTIONS(2182), + [anon_sym_typedef] = ACTIONS(2182), + [anon_sym_virtual] = ACTIONS(2182), + [anon_sym_extern] = ACTIONS(2182), + [anon_sym___attribute__] = ACTIONS(2182), + [anon_sym___attribute] = ACTIONS(2182), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2182), + [anon_sym___based] = ACTIONS(2182), + [anon_sym___cdecl] = ACTIONS(2182), + [anon_sym___clrcall] = ACTIONS(2182), + [anon_sym___stdcall] = ACTIONS(2182), + [anon_sym___fastcall] = ACTIONS(2182), + [anon_sym___thiscall] = ACTIONS(2182), + [anon_sym___vectorcall] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2182), + [anon_sym_unsigned] = ACTIONS(2182), + [anon_sym_long] = ACTIONS(2182), + [anon_sym_short] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_register] = ACTIONS(2182), + [anon_sym_inline] = ACTIONS(2182), + [anon_sym___inline] = ACTIONS(2182), + [anon_sym___inline__] = ACTIONS(2182), + [anon_sym___forceinline] = ACTIONS(2182), + [anon_sym_thread_local] = ACTIONS(2182), + [anon_sym___thread] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_constexpr] = ACTIONS(2182), + [anon_sym_volatile] = ACTIONS(2182), + [anon_sym_restrict] = ACTIONS(2182), + [anon_sym___restrict__] = ACTIONS(2182), + [anon_sym__Atomic] = ACTIONS(2182), + [anon_sym__Noreturn] = ACTIONS(2182), + [anon_sym_noreturn] = ACTIONS(2182), + [anon_sym__Nonnull] = ACTIONS(2182), + [anon_sym_mutable] = ACTIONS(2182), + [anon_sym_constinit] = ACTIONS(2182), + [anon_sym_consteval] = ACTIONS(2182), + [anon_sym_alignas] = ACTIONS(2182), + [anon_sym__Alignas] = ACTIONS(2182), + [sym_primitive_type] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), + [anon_sym_class] = ACTIONS(2182), + [anon_sym_struct] = ACTIONS(2182), + [anon_sym_union] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_switch] = ACTIONS(2182), + [anon_sym_case] = ACTIONS(2182), + [anon_sym_default] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_do] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_goto] = ACTIONS(2182), + [anon_sym___try] = ACTIONS(2182), + [anon_sym___leave] = ACTIONS(2182), + [anon_sym_not] = ACTIONS(2182), + [anon_sym_compl] = ACTIONS(2182), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_sizeof] = ACTIONS(2182), + [anon_sym___alignof__] = ACTIONS(2182), + [anon_sym___alignof] = ACTIONS(2182), + [anon_sym__alignof] = ACTIONS(2182), + [anon_sym_alignof] = ACTIONS(2182), + [anon_sym__Alignof] = ACTIONS(2182), + [anon_sym_offsetof] = ACTIONS(2182), + [anon_sym__Generic] = ACTIONS(2182), + [anon_sym_asm] = ACTIONS(2182), + [anon_sym___asm__] = ACTIONS(2182), + [anon_sym___asm] = ACTIONS(2182), + [sym_number_literal] = ACTIONS(2184), + [anon_sym_L_SQUOTE] = ACTIONS(2184), + [anon_sym_u_SQUOTE] = ACTIONS(2184), + [anon_sym_U_SQUOTE] = ACTIONS(2184), + [anon_sym_u8_SQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_L_DQUOTE] = ACTIONS(2184), + [anon_sym_u_DQUOTE] = ACTIONS(2184), + [anon_sym_U_DQUOTE] = ACTIONS(2184), + [anon_sym_u8_DQUOTE] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym_true] = ACTIONS(2182), + [sym_false] = ACTIONS(2182), + [anon_sym_NULL] = ACTIONS(2182), + [anon_sym_nullptr] = ACTIONS(2182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2182), + [anon_sym_decltype] = ACTIONS(2182), + [anon_sym_explicit] = ACTIONS(2182), + [anon_sym_typename] = ACTIONS(2182), + [anon_sym_template] = ACTIONS(2182), + [anon_sym_operator] = ACTIONS(2182), + [anon_sym_try] = ACTIONS(2182), + [anon_sym_delete] = ACTIONS(2182), + [anon_sym_throw] = ACTIONS(2182), + [anon_sym_namespace] = ACTIONS(2182), + [anon_sym_using] = ACTIONS(2182), + [anon_sym_static_assert] = ACTIONS(2182), + [anon_sym_concept] = ACTIONS(2182), + [anon_sym_co_return] = ACTIONS(2182), + [anon_sym_co_yield] = ACTIONS(2182), + [anon_sym_R_DQUOTE] = ACTIONS(2184), + [anon_sym_LR_DQUOTE] = ACTIONS(2184), + [anon_sym_uR_DQUOTE] = ACTIONS(2184), + [anon_sym_UR_DQUOTE] = ACTIONS(2184), + [anon_sym_u8R_DQUOTE] = ACTIONS(2184), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2182), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2182), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2182), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_FORWARD] = ACTIONS(2182), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2182), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2182), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2182), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2182), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_PS_GET] = ACTIONS(2182), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2182), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2182), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2182), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2182), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2182), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2182), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2182), + [anon_sym_MOZ_COLD] = ACTIONS(2182), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2182), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2182), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2182), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2182), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2182), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2182), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2182), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2182), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2182), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2182), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2182), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2182), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2182), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_NONNULL] = ACTIONS(2182), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2182), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2182), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2182), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2182), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2182), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2182), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2182), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2182), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2182), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2182), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2182), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2182), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2182), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2182), + [anon_sym_MOZ_RAII] = ACTIONS(2182), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2182), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2182), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2182), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2182), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2182), + }, + [STATE(191)] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_include_token1] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token2] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [aux_sym_preproc_else_token1] = ACTIONS(2186), + [aux_sym_preproc_elif_token1] = ACTIONS(2186), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym___attribute] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2188), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym___cdecl] = ACTIONS(2186), + [anon_sym___clrcall] = ACTIONS(2186), + [anon_sym___stdcall] = ACTIONS(2186), + [anon_sym___fastcall] = ACTIONS(2186), + [anon_sym___thiscall] = ACTIONS(2186), + [anon_sym___vectorcall] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym__Nonnull] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym__Alignas] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_switch] = ACTIONS(2186), + [anon_sym_case] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_goto] = ACTIONS(2186), + [anon_sym___try] = ACTIONS(2186), + [anon_sym___leave] = ACTIONS(2186), + [anon_sym_not] = ACTIONS(2186), + [anon_sym_compl] = ACTIONS(2186), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_sizeof] = ACTIONS(2186), + [anon_sym___alignof__] = ACTIONS(2186), + [anon_sym___alignof] = ACTIONS(2186), + [anon_sym__alignof] = ACTIONS(2186), + [anon_sym_alignof] = ACTIONS(2186), + [anon_sym__Alignof] = ACTIONS(2186), + [anon_sym_offsetof] = ACTIONS(2186), + [anon_sym__Generic] = ACTIONS(2186), + [anon_sym_asm] = ACTIONS(2186), + [anon_sym___asm__] = ACTIONS(2186), + [anon_sym___asm] = ACTIONS(2186), + [sym_number_literal] = ACTIONS(2188), + [anon_sym_L_SQUOTE] = ACTIONS(2188), + [anon_sym_u_SQUOTE] = ACTIONS(2188), + [anon_sym_U_SQUOTE] = ACTIONS(2188), + [anon_sym_u8_SQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_L_DQUOTE] = ACTIONS(2188), + [anon_sym_u_DQUOTE] = ACTIONS(2188), + [anon_sym_U_DQUOTE] = ACTIONS(2188), + [anon_sym_u8_DQUOTE] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(2188), + [sym_true] = ACTIONS(2186), + [sym_false] = ACTIONS(2186), + [anon_sym_NULL] = ACTIONS(2186), + [anon_sym_nullptr] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_delete] = ACTIONS(2186), + [anon_sym_throw] = ACTIONS(2186), + [anon_sym_namespace] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [anon_sym_concept] = ACTIONS(2186), + [anon_sym_co_return] = ACTIONS(2186), + [anon_sym_co_yield] = ACTIONS(2186), + [anon_sym_R_DQUOTE] = ACTIONS(2188), + [anon_sym_LR_DQUOTE] = ACTIONS(2188), + [anon_sym_uR_DQUOTE] = ACTIONS(2188), + [anon_sym_UR_DQUOTE] = ACTIONS(2188), + [anon_sym_u8R_DQUOTE] = ACTIONS(2188), + [anon_sym_co_await] = ACTIONS(2186), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2186), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2186), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_FORWARD] = ACTIONS(2186), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2186), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2186), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2186), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2186), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_PS_GET] = ACTIONS(2186), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2186), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2186), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2186), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2186), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2186), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2186), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2186), + [anon_sym_MOZ_COLD] = ACTIONS(2186), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2186), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2186), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2186), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2186), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2186), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2186), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2186), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2186), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2186), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2186), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2186), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2186), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2186), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_NONNULL] = ACTIONS(2186), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2186), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2186), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2186), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2186), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2186), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2186), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2186), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2186), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2186), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2186), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2186), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2186), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2186), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2186), + [anon_sym_MOZ_RAII] = ACTIONS(2186), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2186), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2186), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2186), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2186), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2186), + }, + [STATE(192)] = { + [sym_identifier] = ACTIONS(2190), + [aux_sym_preproc_include_token1] = ACTIONS(2190), + [aux_sym_preproc_def_token1] = ACTIONS(2190), + [aux_sym_preproc_if_token1] = ACTIONS(2190), + [aux_sym_preproc_if_token2] = ACTIONS(2190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2190), + [aux_sym_preproc_else_token1] = ACTIONS(2190), + [aux_sym_preproc_elif_token1] = ACTIONS(2190), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2190), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2190), + [sym_preproc_directive] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym___extension__] = ACTIONS(2190), + [anon_sym_typedef] = ACTIONS(2190), + [anon_sym_virtual] = ACTIONS(2190), + [anon_sym_extern] = ACTIONS(2190), + [anon_sym___attribute__] = ACTIONS(2190), + [anon_sym___attribute] = ACTIONS(2190), + [anon_sym_COLON_COLON] = ACTIONS(2192), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), + [anon_sym___declspec] = ACTIONS(2190), + [anon_sym___based] = ACTIONS(2190), + [anon_sym___cdecl] = ACTIONS(2190), + [anon_sym___clrcall] = ACTIONS(2190), + [anon_sym___stdcall] = ACTIONS(2190), + [anon_sym___fastcall] = ACTIONS(2190), + [anon_sym___thiscall] = ACTIONS(2190), + [anon_sym___vectorcall] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_signed] = ACTIONS(2190), + [anon_sym_unsigned] = ACTIONS(2190), + [anon_sym_long] = ACTIONS(2190), + [anon_sym_short] = ACTIONS(2190), + [anon_sym_LBRACK] = ACTIONS(2190), + [anon_sym_static] = ACTIONS(2190), + [anon_sym_register] = ACTIONS(2190), + [anon_sym_inline] = ACTIONS(2190), + [anon_sym___inline] = ACTIONS(2190), + [anon_sym___inline__] = ACTIONS(2190), + [anon_sym___forceinline] = ACTIONS(2190), + [anon_sym_thread_local] = ACTIONS(2190), + [anon_sym___thread] = ACTIONS(2190), + [anon_sym_const] = ACTIONS(2190), + [anon_sym_constexpr] = ACTIONS(2190), + [anon_sym_volatile] = ACTIONS(2190), + [anon_sym_restrict] = ACTIONS(2190), + [anon_sym___restrict__] = ACTIONS(2190), + [anon_sym__Atomic] = ACTIONS(2190), + [anon_sym__Noreturn] = ACTIONS(2190), + [anon_sym_noreturn] = ACTIONS(2190), + [anon_sym__Nonnull] = ACTIONS(2190), + [anon_sym_mutable] = ACTIONS(2190), + [anon_sym_constinit] = ACTIONS(2190), + [anon_sym_consteval] = ACTIONS(2190), + [anon_sym_alignas] = ACTIONS(2190), + [anon_sym__Alignas] = ACTIONS(2190), + [sym_primitive_type] = ACTIONS(2190), + [anon_sym_enum] = ACTIONS(2190), + [anon_sym_class] = ACTIONS(2190), + [anon_sym_struct] = ACTIONS(2190), + [anon_sym_union] = ACTIONS(2190), + [anon_sym_if] = ACTIONS(2190), + [anon_sym_switch] = ACTIONS(2190), + [anon_sym_case] = ACTIONS(2190), + [anon_sym_default] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2190), + [anon_sym_do] = ACTIONS(2190), + [anon_sym_for] = ACTIONS(2190), + [anon_sym_return] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_goto] = ACTIONS(2190), + [anon_sym___try] = ACTIONS(2190), + [anon_sym___leave] = ACTIONS(2190), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2192), + [anon_sym_PLUS_PLUS] = ACTIONS(2192), + [anon_sym_sizeof] = ACTIONS(2190), + [anon_sym___alignof__] = ACTIONS(2190), + [anon_sym___alignof] = ACTIONS(2190), + [anon_sym__alignof] = ACTIONS(2190), + [anon_sym_alignof] = ACTIONS(2190), + [anon_sym__Alignof] = ACTIONS(2190), + [anon_sym_offsetof] = ACTIONS(2190), + [anon_sym__Generic] = ACTIONS(2190), + [anon_sym_asm] = ACTIONS(2190), + [anon_sym___asm__] = ACTIONS(2190), + [anon_sym___asm] = ACTIONS(2190), + [sym_number_literal] = ACTIONS(2192), + [anon_sym_L_SQUOTE] = ACTIONS(2192), + [anon_sym_u_SQUOTE] = ACTIONS(2192), + [anon_sym_U_SQUOTE] = ACTIONS(2192), + [anon_sym_u8_SQUOTE] = ACTIONS(2192), + [anon_sym_SQUOTE] = ACTIONS(2192), + [anon_sym_L_DQUOTE] = ACTIONS(2192), + [anon_sym_u_DQUOTE] = ACTIONS(2192), + [anon_sym_U_DQUOTE] = ACTIONS(2192), + [anon_sym_u8_DQUOTE] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [sym_true] = ACTIONS(2190), + [sym_false] = ACTIONS(2190), + [anon_sym_NULL] = ACTIONS(2190), + [anon_sym_nullptr] = ACTIONS(2190), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2190), + [anon_sym_decltype] = ACTIONS(2190), + [anon_sym_explicit] = ACTIONS(2190), + [anon_sym_typename] = ACTIONS(2190), + [anon_sym_template] = ACTIONS(2190), + [anon_sym_operator] = ACTIONS(2190), + [anon_sym_try] = ACTIONS(2190), + [anon_sym_delete] = ACTIONS(2190), + [anon_sym_throw] = ACTIONS(2190), + [anon_sym_namespace] = ACTIONS(2190), + [anon_sym_using] = ACTIONS(2190), + [anon_sym_static_assert] = ACTIONS(2190), + [anon_sym_concept] = ACTIONS(2190), + [anon_sym_co_return] = ACTIONS(2190), + [anon_sym_co_yield] = ACTIONS(2190), + [anon_sym_R_DQUOTE] = ACTIONS(2192), + [anon_sym_LR_DQUOTE] = ACTIONS(2192), + [anon_sym_uR_DQUOTE] = ACTIONS(2192), + [anon_sym_UR_DQUOTE] = ACTIONS(2192), + [anon_sym_u8R_DQUOTE] = ACTIONS(2192), + [anon_sym_co_await] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(2190), + [anon_sym_requires] = ACTIONS(2190), + [sym_this] = ACTIONS(2190), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2190), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_FORWARD] = ACTIONS(2190), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2190), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2190), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2190), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2190), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_PS_GET] = ACTIONS(2190), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2190), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2190), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2190), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2190), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2190), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2190), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2190), + [anon_sym_MOZ_COLD] = ACTIONS(2190), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2190), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2190), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2190), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2190), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2190), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2190), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2190), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2190), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2190), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2190), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2190), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2190), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2190), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_NONNULL] = ACTIONS(2190), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2190), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2190), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2190), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2190), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2190), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2190), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2190), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2190), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2190), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2190), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2190), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2190), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2190), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2190), + [anon_sym_MOZ_RAII] = ACTIONS(2190), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2190), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2190), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2190), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2190), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2190), + }, + [STATE(193)] = { + [sym_identifier] = ACTIONS(2194), + [aux_sym_preproc_include_token1] = ACTIONS(2194), + [aux_sym_preproc_def_token1] = ACTIONS(2194), + [aux_sym_preproc_if_token1] = ACTIONS(2194), + [aux_sym_preproc_if_token2] = ACTIONS(2194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), + [aux_sym_preproc_else_token1] = ACTIONS(2194), + [aux_sym_preproc_elif_token1] = ACTIONS(2194), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2194), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2194), + [sym_preproc_directive] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2196), + [anon_sym_TILDE] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym___extension__] = ACTIONS(2194), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_virtual] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(2194), + [anon_sym___attribute__] = ACTIONS(2194), + [anon_sym___attribute] = ACTIONS(2194), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2196), + [anon_sym___declspec] = ACTIONS(2194), + [anon_sym___based] = ACTIONS(2194), + [anon_sym___cdecl] = ACTIONS(2194), + [anon_sym___clrcall] = ACTIONS(2194), + [anon_sym___stdcall] = ACTIONS(2194), + [anon_sym___fastcall] = ACTIONS(2194), + [anon_sym___thiscall] = ACTIONS(2194), + [anon_sym___vectorcall] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_signed] = ACTIONS(2194), + [anon_sym_unsigned] = ACTIONS(2194), + [anon_sym_long] = ACTIONS(2194), + [anon_sym_short] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2194), + [anon_sym_static] = ACTIONS(2194), + [anon_sym_register] = ACTIONS(2194), + [anon_sym_inline] = ACTIONS(2194), + [anon_sym___inline] = ACTIONS(2194), + [anon_sym___inline__] = ACTIONS(2194), + [anon_sym___forceinline] = ACTIONS(2194), + [anon_sym_thread_local] = ACTIONS(2194), + [anon_sym___thread] = ACTIONS(2194), + [anon_sym_const] = ACTIONS(2194), + [anon_sym_constexpr] = ACTIONS(2194), + [anon_sym_volatile] = ACTIONS(2194), + [anon_sym_restrict] = ACTIONS(2194), + [anon_sym___restrict__] = ACTIONS(2194), + [anon_sym__Atomic] = ACTIONS(2194), + [anon_sym__Noreturn] = ACTIONS(2194), + [anon_sym_noreturn] = ACTIONS(2194), + [anon_sym__Nonnull] = ACTIONS(2194), + [anon_sym_mutable] = ACTIONS(2194), + [anon_sym_constinit] = ACTIONS(2194), + [anon_sym_consteval] = ACTIONS(2194), + [anon_sym_alignas] = ACTIONS(2194), + [anon_sym__Alignas] = ACTIONS(2194), + [sym_primitive_type] = ACTIONS(2194), + [anon_sym_enum] = ACTIONS(2194), + [anon_sym_class] = ACTIONS(2194), + [anon_sym_struct] = ACTIONS(2194), + [anon_sym_union] = ACTIONS(2194), + [anon_sym_if] = ACTIONS(2194), + [anon_sym_switch] = ACTIONS(2194), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2194), + [anon_sym_while] = ACTIONS(2194), + [anon_sym_do] = ACTIONS(2194), + [anon_sym_for] = ACTIONS(2194), + [anon_sym_return] = ACTIONS(2194), + [anon_sym_break] = ACTIONS(2194), + [anon_sym_continue] = ACTIONS(2194), + [anon_sym_goto] = ACTIONS(2194), + [anon_sym___try] = ACTIONS(2194), + [anon_sym___leave] = ACTIONS(2194), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_compl] = ACTIONS(2194), + [anon_sym_DASH_DASH] = ACTIONS(2196), + [anon_sym_PLUS_PLUS] = ACTIONS(2196), + [anon_sym_sizeof] = ACTIONS(2194), + [anon_sym___alignof__] = ACTIONS(2194), + [anon_sym___alignof] = ACTIONS(2194), + [anon_sym__alignof] = ACTIONS(2194), + [anon_sym_alignof] = ACTIONS(2194), + [anon_sym__Alignof] = ACTIONS(2194), + [anon_sym_offsetof] = ACTIONS(2194), + [anon_sym__Generic] = ACTIONS(2194), + [anon_sym_asm] = ACTIONS(2194), + [anon_sym___asm__] = ACTIONS(2194), + [anon_sym___asm] = ACTIONS(2194), + [sym_number_literal] = ACTIONS(2196), + [anon_sym_L_SQUOTE] = ACTIONS(2196), + [anon_sym_u_SQUOTE] = ACTIONS(2196), + [anon_sym_U_SQUOTE] = ACTIONS(2196), + [anon_sym_u8_SQUOTE] = ACTIONS(2196), + [anon_sym_SQUOTE] = ACTIONS(2196), + [anon_sym_L_DQUOTE] = ACTIONS(2196), + [anon_sym_u_DQUOTE] = ACTIONS(2196), + [anon_sym_U_DQUOTE] = ACTIONS(2196), + [anon_sym_u8_DQUOTE] = ACTIONS(2196), + [anon_sym_DQUOTE] = ACTIONS(2196), + [sym_true] = ACTIONS(2194), + [sym_false] = ACTIONS(2194), + [anon_sym_NULL] = ACTIONS(2194), + [anon_sym_nullptr] = ACTIONS(2194), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2194), + [anon_sym_decltype] = ACTIONS(2194), + [anon_sym_explicit] = ACTIONS(2194), + [anon_sym_typename] = ACTIONS(2194), + [anon_sym_template] = ACTIONS(2194), + [anon_sym_operator] = ACTIONS(2194), + [anon_sym_try] = ACTIONS(2194), + [anon_sym_delete] = ACTIONS(2194), + [anon_sym_throw] = ACTIONS(2194), + [anon_sym_namespace] = ACTIONS(2194), + [anon_sym_using] = ACTIONS(2194), + [anon_sym_static_assert] = ACTIONS(2194), + [anon_sym_concept] = ACTIONS(2194), + [anon_sym_co_return] = ACTIONS(2194), + [anon_sym_co_yield] = ACTIONS(2194), + [anon_sym_R_DQUOTE] = ACTIONS(2196), + [anon_sym_LR_DQUOTE] = ACTIONS(2196), + [anon_sym_uR_DQUOTE] = ACTIONS(2196), + [anon_sym_UR_DQUOTE] = ACTIONS(2196), + [anon_sym_u8R_DQUOTE] = ACTIONS(2196), + [anon_sym_co_await] = ACTIONS(2194), + [anon_sym_new] = ACTIONS(2194), + [anon_sym_requires] = ACTIONS(2194), + [sym_this] = ACTIONS(2194), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2194), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_FORWARD] = ACTIONS(2194), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2194), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2194), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2194), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2194), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_PS_GET] = ACTIONS(2194), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2194), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2194), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2194), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2194), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2194), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2194), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2194), + [anon_sym_MOZ_COLD] = ACTIONS(2194), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2194), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2194), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2194), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2194), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2194), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2194), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2194), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2194), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2194), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2194), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2194), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2194), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2194), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_NONNULL] = ACTIONS(2194), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2194), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2194), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2194), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2194), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2194), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2194), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2194), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2194), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2194), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2194), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2194), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2194), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2194), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2194), + [anon_sym_MOZ_RAII] = ACTIONS(2194), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2194), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2194), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2194), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2194), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2194), + }, + [STATE(194)] = { + [sym_identifier] = ACTIONS(2198), + [aux_sym_preproc_include_token1] = ACTIONS(2198), + [aux_sym_preproc_def_token1] = ACTIONS(2198), + [aux_sym_preproc_if_token1] = ACTIONS(2198), + [aux_sym_preproc_if_token2] = ACTIONS(2198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2198), + [aux_sym_preproc_else_token1] = ACTIONS(2198), + [aux_sym_preproc_elif_token1] = ACTIONS(2198), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2198), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2198), + [sym_preproc_directive] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2198), + [anon_sym_PLUS] = ACTIONS(2198), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_AMP_AMP] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym___extension__] = ACTIONS(2198), + [anon_sym_typedef] = ACTIONS(2198), + [anon_sym_virtual] = ACTIONS(2198), + [anon_sym_extern] = ACTIONS(2198), + [anon_sym___attribute__] = ACTIONS(2198), + [anon_sym___attribute] = ACTIONS(2198), + [anon_sym_COLON_COLON] = ACTIONS(2200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2200), + [anon_sym___declspec] = ACTIONS(2198), + [anon_sym___based] = ACTIONS(2198), + [anon_sym___cdecl] = ACTIONS(2198), + [anon_sym___clrcall] = ACTIONS(2198), + [anon_sym___stdcall] = ACTIONS(2198), + [anon_sym___fastcall] = ACTIONS(2198), + [anon_sym___thiscall] = ACTIONS(2198), + [anon_sym___vectorcall] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_signed] = ACTIONS(2198), + [anon_sym_unsigned] = ACTIONS(2198), + [anon_sym_long] = ACTIONS(2198), + [anon_sym_short] = ACTIONS(2198), + [anon_sym_LBRACK] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_register] = ACTIONS(2198), + [anon_sym_inline] = ACTIONS(2198), + [anon_sym___inline] = ACTIONS(2198), + [anon_sym___inline__] = ACTIONS(2198), + [anon_sym___forceinline] = ACTIONS(2198), + [anon_sym_thread_local] = ACTIONS(2198), + [anon_sym___thread] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_constexpr] = ACTIONS(2198), + [anon_sym_volatile] = ACTIONS(2198), + [anon_sym_restrict] = ACTIONS(2198), + [anon_sym___restrict__] = ACTIONS(2198), + [anon_sym__Atomic] = ACTIONS(2198), + [anon_sym__Noreturn] = ACTIONS(2198), + [anon_sym_noreturn] = ACTIONS(2198), + [anon_sym__Nonnull] = ACTIONS(2198), + [anon_sym_mutable] = ACTIONS(2198), + [anon_sym_constinit] = ACTIONS(2198), + [anon_sym_consteval] = ACTIONS(2198), + [anon_sym_alignas] = ACTIONS(2198), + [anon_sym__Alignas] = ACTIONS(2198), + [sym_primitive_type] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), + [anon_sym_class] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(2198), + [anon_sym_union] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2198), + [anon_sym_switch] = ACTIONS(2198), + [anon_sym_case] = ACTIONS(2198), + [anon_sym_default] = ACTIONS(2198), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(2198), + [anon_sym_for] = ACTIONS(2198), + [anon_sym_return] = ACTIONS(2198), + [anon_sym_break] = ACTIONS(2198), + [anon_sym_continue] = ACTIONS(2198), + [anon_sym_goto] = ACTIONS(2198), + [anon_sym___try] = ACTIONS(2198), + [anon_sym___leave] = ACTIONS(2198), + [anon_sym_not] = ACTIONS(2198), + [anon_sym_compl] = ACTIONS(2198), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [anon_sym_PLUS_PLUS] = ACTIONS(2200), + [anon_sym_sizeof] = ACTIONS(2198), + [anon_sym___alignof__] = ACTIONS(2198), + [anon_sym___alignof] = ACTIONS(2198), + [anon_sym__alignof] = ACTIONS(2198), + [anon_sym_alignof] = ACTIONS(2198), + [anon_sym__Alignof] = ACTIONS(2198), + [anon_sym_offsetof] = ACTIONS(2198), + [anon_sym__Generic] = ACTIONS(2198), + [anon_sym_asm] = ACTIONS(2198), + [anon_sym___asm__] = ACTIONS(2198), + [anon_sym___asm] = ACTIONS(2198), + [sym_number_literal] = ACTIONS(2200), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2200), + [anon_sym_u_DQUOTE] = ACTIONS(2200), + [anon_sym_U_DQUOTE] = ACTIONS(2200), + [anon_sym_u8_DQUOTE] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [sym_true] = ACTIONS(2198), + [sym_false] = ACTIONS(2198), + [anon_sym_NULL] = ACTIONS(2198), + [anon_sym_nullptr] = ACTIONS(2198), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2198), + [anon_sym_decltype] = ACTIONS(2198), + [anon_sym_explicit] = ACTIONS(2198), + [anon_sym_typename] = ACTIONS(2198), + [anon_sym_template] = ACTIONS(2198), + [anon_sym_operator] = ACTIONS(2198), + [anon_sym_try] = ACTIONS(2198), + [anon_sym_delete] = ACTIONS(2198), + [anon_sym_throw] = ACTIONS(2198), + [anon_sym_namespace] = ACTIONS(2198), + [anon_sym_using] = ACTIONS(2198), + [anon_sym_static_assert] = ACTIONS(2198), + [anon_sym_concept] = ACTIONS(2198), + [anon_sym_co_return] = ACTIONS(2198), + [anon_sym_co_yield] = ACTIONS(2198), + [anon_sym_R_DQUOTE] = ACTIONS(2200), + [anon_sym_LR_DQUOTE] = ACTIONS(2200), + [anon_sym_uR_DQUOTE] = ACTIONS(2200), + [anon_sym_UR_DQUOTE] = ACTIONS(2200), + [anon_sym_u8R_DQUOTE] = ACTIONS(2200), + [anon_sym_co_await] = ACTIONS(2198), + [anon_sym_new] = ACTIONS(2198), + [anon_sym_requires] = ACTIONS(2198), + [sym_this] = ACTIONS(2198), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2198), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_FORWARD] = ACTIONS(2198), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2198), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2198), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2198), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2198), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_PS_GET] = ACTIONS(2198), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2198), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2198), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2198), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2198), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2198), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2198), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2198), + [anon_sym_MOZ_COLD] = ACTIONS(2198), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2198), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2198), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2198), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2198), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2198), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2198), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2198), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2198), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2198), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2198), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2198), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2198), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2198), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_NONNULL] = ACTIONS(2198), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2198), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2198), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2198), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2198), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2198), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2198), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2198), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2198), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2198), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2198), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2198), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2198), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2198), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2198), + [anon_sym_MOZ_RAII] = ACTIONS(2198), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2198), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2198), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2198), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2198), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2198), + }, + [STATE(195)] = { + [sym_identifier] = ACTIONS(2202), + [aux_sym_preproc_include_token1] = ACTIONS(2202), + [aux_sym_preproc_def_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token2] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2202), + [aux_sym_preproc_else_token1] = ACTIONS(2202), + [aux_sym_preproc_elif_token1] = ACTIONS(2202), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2202), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2202), + [sym_preproc_directive] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym___extension__] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2202), + [anon_sym_virtual] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym___attribute__] = ACTIONS(2202), + [anon_sym___attribute] = ACTIONS(2202), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2204), + [anon_sym___declspec] = ACTIONS(2202), + [anon_sym___based] = ACTIONS(2202), + [anon_sym___cdecl] = ACTIONS(2202), + [anon_sym___clrcall] = ACTIONS(2202), + [anon_sym___stdcall] = ACTIONS(2202), + [anon_sym___fastcall] = ACTIONS(2202), + [anon_sym___thiscall] = ACTIONS(2202), + [anon_sym___vectorcall] = ACTIONS(2202), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_signed] = ACTIONS(2202), + [anon_sym_unsigned] = ACTIONS(2202), + [anon_sym_long] = ACTIONS(2202), + [anon_sym_short] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_register] = ACTIONS(2202), + [anon_sym_inline] = ACTIONS(2202), + [anon_sym___inline] = ACTIONS(2202), + [anon_sym___inline__] = ACTIONS(2202), + [anon_sym___forceinline] = ACTIONS(2202), + [anon_sym_thread_local] = ACTIONS(2202), + [anon_sym___thread] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_constexpr] = ACTIONS(2202), + [anon_sym_volatile] = ACTIONS(2202), + [anon_sym_restrict] = ACTIONS(2202), + [anon_sym___restrict__] = ACTIONS(2202), + [anon_sym__Atomic] = ACTIONS(2202), + [anon_sym__Noreturn] = ACTIONS(2202), + [anon_sym_noreturn] = ACTIONS(2202), + [anon_sym__Nonnull] = ACTIONS(2202), + [anon_sym_mutable] = ACTIONS(2202), + [anon_sym_constinit] = ACTIONS(2202), + [anon_sym_consteval] = ACTIONS(2202), + [anon_sym_alignas] = ACTIONS(2202), + [anon_sym__Alignas] = ACTIONS(2202), + [sym_primitive_type] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_class] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [anon_sym_if] = ACTIONS(2202), + [anon_sym_switch] = ACTIONS(2202), + [anon_sym_case] = ACTIONS(2202), + [anon_sym_default] = ACTIONS(2202), + [anon_sym_while] = ACTIONS(2202), + [anon_sym_do] = ACTIONS(2202), + [anon_sym_for] = ACTIONS(2202), + [anon_sym_return] = ACTIONS(2202), + [anon_sym_break] = ACTIONS(2202), + [anon_sym_continue] = ACTIONS(2202), + [anon_sym_goto] = ACTIONS(2202), + [anon_sym___try] = ACTIONS(2202), + [anon_sym___leave] = ACTIONS(2202), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_compl] = ACTIONS(2202), + [anon_sym_DASH_DASH] = ACTIONS(2204), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_sizeof] = ACTIONS(2202), + [anon_sym___alignof__] = ACTIONS(2202), + [anon_sym___alignof] = ACTIONS(2202), + [anon_sym__alignof] = ACTIONS(2202), + [anon_sym_alignof] = ACTIONS(2202), + [anon_sym__Alignof] = ACTIONS(2202), + [anon_sym_offsetof] = ACTIONS(2202), + [anon_sym__Generic] = ACTIONS(2202), + [anon_sym_asm] = ACTIONS(2202), + [anon_sym___asm__] = ACTIONS(2202), + [anon_sym___asm] = ACTIONS(2202), + [sym_number_literal] = ACTIONS(2204), + [anon_sym_L_SQUOTE] = ACTIONS(2204), + [anon_sym_u_SQUOTE] = ACTIONS(2204), + [anon_sym_U_SQUOTE] = ACTIONS(2204), + [anon_sym_u8_SQUOTE] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_L_DQUOTE] = ACTIONS(2204), + [anon_sym_u_DQUOTE] = ACTIONS(2204), + [anon_sym_U_DQUOTE] = ACTIONS(2204), + [anon_sym_u8_DQUOTE] = ACTIONS(2204), + [anon_sym_DQUOTE] = ACTIONS(2204), + [sym_true] = ACTIONS(2202), + [sym_false] = ACTIONS(2202), + [anon_sym_NULL] = ACTIONS(2202), + [anon_sym_nullptr] = ACTIONS(2202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2202), + [anon_sym_decltype] = ACTIONS(2202), + [anon_sym_explicit] = ACTIONS(2202), + [anon_sym_typename] = ACTIONS(2202), + [anon_sym_template] = ACTIONS(2202), + [anon_sym_operator] = ACTIONS(2202), + [anon_sym_try] = ACTIONS(2202), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_throw] = ACTIONS(2202), + [anon_sym_namespace] = ACTIONS(2202), + [anon_sym_using] = ACTIONS(2202), + [anon_sym_static_assert] = ACTIONS(2202), + [anon_sym_concept] = ACTIONS(2202), + [anon_sym_co_return] = ACTIONS(2202), + [anon_sym_co_yield] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2204), + [anon_sym_LR_DQUOTE] = ACTIONS(2204), + [anon_sym_uR_DQUOTE] = ACTIONS(2204), + [anon_sym_UR_DQUOTE] = ACTIONS(2204), + [anon_sym_u8R_DQUOTE] = ACTIONS(2204), + [anon_sym_co_await] = ACTIONS(2202), + [anon_sym_new] = ACTIONS(2202), + [anon_sym_requires] = ACTIONS(2202), + [sym_this] = ACTIONS(2202), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_FORWARD] = ACTIONS(2202), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2202), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_PS_GET] = ACTIONS(2202), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2202), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2202), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2202), + [anon_sym_MOZ_COLD] = ACTIONS(2202), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2202), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2202), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2202), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2202), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2202), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2202), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2202), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2202), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2202), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2202), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2202), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2202), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_RAII] = ACTIONS(2202), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2202), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2202), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2202), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2202), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2202), + }, + [STATE(196)] = { + [sym_identifier] = ACTIONS(2206), + [aux_sym_preproc_include_token1] = ACTIONS(2206), + [aux_sym_preproc_def_token1] = ACTIONS(2206), + [aux_sym_preproc_if_token1] = ACTIONS(2206), + [aux_sym_preproc_if_token2] = ACTIONS(2206), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2206), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2206), + [aux_sym_preproc_else_token1] = ACTIONS(2206), + [aux_sym_preproc_elif_token1] = ACTIONS(2206), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2206), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2206), + [sym_preproc_directive] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_PLUS] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym___extension__] = ACTIONS(2206), + [anon_sym_typedef] = ACTIONS(2206), + [anon_sym_virtual] = ACTIONS(2206), + [anon_sym_extern] = ACTIONS(2206), + [anon_sym___attribute__] = ACTIONS(2206), + [anon_sym___attribute] = ACTIONS(2206), + [anon_sym_COLON_COLON] = ACTIONS(2208), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2208), + [anon_sym___declspec] = ACTIONS(2206), + [anon_sym___based] = ACTIONS(2206), + [anon_sym___cdecl] = ACTIONS(2206), + [anon_sym___clrcall] = ACTIONS(2206), + [anon_sym___stdcall] = ACTIONS(2206), + [anon_sym___fastcall] = ACTIONS(2206), + [anon_sym___thiscall] = ACTIONS(2206), + [anon_sym___vectorcall] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_signed] = ACTIONS(2206), + [anon_sym_unsigned] = ACTIONS(2206), + [anon_sym_long] = ACTIONS(2206), + [anon_sym_short] = ACTIONS(2206), + [anon_sym_LBRACK] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_register] = ACTIONS(2206), + [anon_sym_inline] = ACTIONS(2206), + [anon_sym___inline] = ACTIONS(2206), + [anon_sym___inline__] = ACTIONS(2206), + [anon_sym___forceinline] = ACTIONS(2206), + [anon_sym_thread_local] = ACTIONS(2206), + [anon_sym___thread] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_constexpr] = ACTIONS(2206), + [anon_sym_volatile] = ACTIONS(2206), + [anon_sym_restrict] = ACTIONS(2206), + [anon_sym___restrict__] = ACTIONS(2206), + [anon_sym__Atomic] = ACTIONS(2206), + [anon_sym__Noreturn] = ACTIONS(2206), + [anon_sym_noreturn] = ACTIONS(2206), + [anon_sym__Nonnull] = ACTIONS(2206), + [anon_sym_mutable] = ACTIONS(2206), + [anon_sym_constinit] = ACTIONS(2206), + [anon_sym_consteval] = ACTIONS(2206), + [anon_sym_alignas] = ACTIONS(2206), + [anon_sym__Alignas] = ACTIONS(2206), + [sym_primitive_type] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_class] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_switch] = ACTIONS(2206), + [anon_sym_case] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [anon_sym_do] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_goto] = ACTIONS(2206), + [anon_sym___try] = ACTIONS(2206), + [anon_sym___leave] = ACTIONS(2206), + [anon_sym_not] = ACTIONS(2206), + [anon_sym_compl] = ACTIONS(2206), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_sizeof] = ACTIONS(2206), + [anon_sym___alignof__] = ACTIONS(2206), + [anon_sym___alignof] = ACTIONS(2206), + [anon_sym__alignof] = ACTIONS(2206), + [anon_sym_alignof] = ACTIONS(2206), + [anon_sym__Alignof] = ACTIONS(2206), + [anon_sym_offsetof] = ACTIONS(2206), + [anon_sym__Generic] = ACTIONS(2206), + [anon_sym_asm] = ACTIONS(2206), + [anon_sym___asm__] = ACTIONS(2206), + [anon_sym___asm] = ACTIONS(2206), + [sym_number_literal] = ACTIONS(2208), + [anon_sym_L_SQUOTE] = ACTIONS(2208), + [anon_sym_u_SQUOTE] = ACTIONS(2208), + [anon_sym_U_SQUOTE] = ACTIONS(2208), + [anon_sym_u8_SQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_L_DQUOTE] = ACTIONS(2208), + [anon_sym_u_DQUOTE] = ACTIONS(2208), + [anon_sym_U_DQUOTE] = ACTIONS(2208), + [anon_sym_u8_DQUOTE] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [sym_true] = ACTIONS(2206), + [sym_false] = ACTIONS(2206), + [anon_sym_NULL] = ACTIONS(2206), + [anon_sym_nullptr] = ACTIONS(2206), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2206), + [anon_sym_decltype] = ACTIONS(2206), + [anon_sym_explicit] = ACTIONS(2206), + [anon_sym_typename] = ACTIONS(2206), + [anon_sym_template] = ACTIONS(2206), + [anon_sym_operator] = ACTIONS(2206), + [anon_sym_try] = ACTIONS(2206), + [anon_sym_delete] = ACTIONS(2206), + [anon_sym_throw] = ACTIONS(2206), + [anon_sym_namespace] = ACTIONS(2206), + [anon_sym_using] = ACTIONS(2206), + [anon_sym_static_assert] = ACTIONS(2206), + [anon_sym_concept] = ACTIONS(2206), + [anon_sym_co_return] = ACTIONS(2206), + [anon_sym_co_yield] = ACTIONS(2206), + [anon_sym_R_DQUOTE] = ACTIONS(2208), + [anon_sym_LR_DQUOTE] = ACTIONS(2208), + [anon_sym_uR_DQUOTE] = ACTIONS(2208), + [anon_sym_UR_DQUOTE] = ACTIONS(2208), + [anon_sym_u8R_DQUOTE] = ACTIONS(2208), + [anon_sym_co_await] = ACTIONS(2206), + [anon_sym_new] = ACTIONS(2206), + [anon_sym_requires] = ACTIONS(2206), + [sym_this] = ACTIONS(2206), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2206), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_FORWARD] = ACTIONS(2206), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2206), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2206), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2206), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2206), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_PS_GET] = ACTIONS(2206), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2206), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2206), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2206), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2206), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2206), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2206), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2206), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2206), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2206), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2206), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2206), + [anon_sym_MOZ_COLD] = ACTIONS(2206), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2206), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2206), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2206), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2206), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2206), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2206), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2206), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2206), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2206), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2206), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2206), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2206), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2206), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2206), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2206), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2206), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2206), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2206), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2206), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2206), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_NONNULL] = ACTIONS(2206), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2206), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2206), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2206), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2206), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2206), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_NORETURN] = ACTIONS(2206), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2206), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2206), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2206), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2206), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2206), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2206), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2206), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2206), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2206), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2206), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2206), + [anon_sym_MOZ_RAII] = ACTIONS(2206), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2206), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2206), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2206), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2206), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2206), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2206), + }, + [STATE(197)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1898), + [anon_sym_typedef] = ACTIONS(1937), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1905), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1879), - [anon_sym_virtual] = ACTIONS(1879), - [anon_sym_explicit] = ACTIONS(1879), - [sym_auto] = ACTIONS(1879), - [anon_sym_typename] = ACTIONS(1879), - [anon_sym_template] = ACTIONS(1879), - [anon_sym_operator] = ACTIONS(1879), - [anon_sym_delete] = ACTIONS(1879), - [anon_sym_throw] = ACTIONS(1879), - [anon_sym_namespace] = ACTIONS(1879), - [anon_sym_using] = ACTIONS(1879), - [anon_sym_static_assert] = ACTIONS(1879), - [anon_sym_co_return] = ACTIONS(1879), - [anon_sym_co_yield] = ACTIONS(1879), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_co_await] = ACTIONS(1879), - [anon_sym_new] = ACTIONS(1879), - [sym_this] = ACTIONS(1879), - [sym_nullptr] = ACTIONS(1879), - [sym_alone_macro] = ACTIONS(1881), - [aux_sym_alone_macro_call_token1] = ACTIONS(1879), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1879), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_FORWARD] = ACTIONS(1879), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1879), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1879), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1879), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1879), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_PS_GET] = ACTIONS(1879), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1879), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1879), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1879), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1879), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1879), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1879), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1879), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1879), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1879), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1879), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1879), - [anon_sym_MOZ_COLD] = ACTIONS(1879), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1879), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1879), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1879), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1879), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1879), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1879), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1879), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1879), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1879), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1879), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1879), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1879), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1879), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1879), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1879), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1879), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1879), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1879), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1879), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_NONNULL] = ACTIONS(1879), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1879), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1879), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1879), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1879), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1879), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_NORETURN] = ACTIONS(1879), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1879), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1879), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1879), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1879), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1879), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1879), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1879), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1879), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1879), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), - [anon_sym_MOZ_RAII] = ACTIONS(1879), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1879), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1879), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1879), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1879), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1879), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1879), - [sym_raw_string_literal] = ACTIONS(1881), - }, - [597] = { - [sym_identifier] = ACTIONS(1883), - [aux_sym_preproc_include_token1] = ACTIONS(1883), - [aux_sym_preproc_def_token1] = ACTIONS(1883), - [aux_sym_preproc_if_token1] = ACTIONS(1883), - [aux_sym_preproc_if_token2] = ACTIONS(1883), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1883), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1883), - [sym_preproc_directive] = ACTIONS(1883), - [anon_sym_LPAREN2] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1883), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_typedef] = ACTIONS(1883), - [anon_sym_extern] = ACTIONS(1883), - [anon_sym___attribute__] = ACTIONS(1883), - [anon_sym_COLON_COLON] = ACTIONS(1885), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1885), - [anon_sym___declspec] = ACTIONS(1883), - [anon_sym___based] = ACTIONS(1883), - [anon_sym___cdecl] = ACTIONS(1883), - [anon_sym___clrcall] = ACTIONS(1883), - [anon_sym___stdcall] = ACTIONS(1883), - [anon_sym___fastcall] = ACTIONS(1883), - [anon_sym___thiscall] = ACTIONS(1883), - [anon_sym___vectorcall] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1883), - [anon_sym_static] = ACTIONS(1883), - [anon_sym_register] = ACTIONS(1883), - [anon_sym_inline] = ACTIONS(1883), - [anon_sym_thread_local] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(1883), - [anon_sym_volatile] = ACTIONS(1883), - [anon_sym_restrict] = ACTIONS(1883), - [anon_sym__Atomic] = ACTIONS(1883), - [anon_sym_mutable] = ACTIONS(1883), - [anon_sym_constexpr] = ACTIONS(1883), - [anon_sym_signed] = ACTIONS(1883), - [anon_sym_unsigned] = ACTIONS(1883), - [anon_sym_long] = ACTIONS(1883), - [anon_sym_short] = ACTIONS(1883), - [sym_primitive_type] = ACTIONS(1883), - [anon_sym_enum] = ACTIONS(1883), - [anon_sym_class] = ACTIONS(1883), - [anon_sym_struct] = ACTIONS(1883), - [anon_sym_union] = ACTIONS(1883), - [anon_sym_if] = ACTIONS(1883), - [anon_sym_switch] = ACTIONS(1883), - [anon_sym_case] = ACTIONS(1883), - [anon_sym_default] = ACTIONS(1883), - [anon_sym_while] = ACTIONS(1883), - [anon_sym_do] = ACTIONS(1883), - [anon_sym_for] = ACTIONS(1883), - [anon_sym_return] = ACTIONS(1883), - [anon_sym_break] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(1883), - [anon_sym_goto] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_sizeof] = ACTIONS(1883), - [sym_number_literal] = ACTIONS(1885), - [anon_sym_L_SQUOTE] = ACTIONS(1885), - [anon_sym_u_SQUOTE] = ACTIONS(1885), - [anon_sym_U_SQUOTE] = ACTIONS(1885), - [anon_sym_u8_SQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_L_DQUOTE] = ACTIONS(1885), - [anon_sym_u_DQUOTE] = ACTIONS(1885), - [anon_sym_U_DQUOTE] = ACTIONS(1885), - [anon_sym_u8_DQUOTE] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym_true] = ACTIONS(1883), - [sym_false] = ACTIONS(1883), - [sym_null] = ACTIONS(1883), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1883), - [anon_sym_virtual] = ACTIONS(1883), - [anon_sym_explicit] = ACTIONS(1883), - [sym_auto] = ACTIONS(1883), - [anon_sym_typename] = ACTIONS(1883), - [anon_sym_template] = ACTIONS(1883), - [anon_sym_operator] = ACTIONS(1883), - [anon_sym_delete] = ACTIONS(1883), - [anon_sym_throw] = ACTIONS(1883), - [anon_sym_namespace] = ACTIONS(1883), - [anon_sym_using] = ACTIONS(1883), - [anon_sym_static_assert] = ACTIONS(1883), - [anon_sym_co_return] = ACTIONS(1883), - [anon_sym_co_yield] = ACTIONS(1883), - [anon_sym_try] = ACTIONS(1883), - [anon_sym_co_await] = ACTIONS(1883), - [anon_sym_new] = ACTIONS(1883), - [sym_this] = ACTIONS(1883), - [sym_nullptr] = ACTIONS(1883), - [sym_alone_macro] = ACTIONS(1885), - [aux_sym_alone_macro_call_token1] = ACTIONS(1883), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1883), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_FORWARD] = ACTIONS(1883), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1883), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1883), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1883), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1883), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_PS_GET] = ACTIONS(1883), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1883), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1883), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1883), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1883), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1883), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1883), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1883), - [anon_sym_MOZ_COLD] = ACTIONS(1883), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1883), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1883), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1883), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1883), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1883), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1883), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1883), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1883), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1883), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1883), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1883), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1883), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1883), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_NONNULL] = ACTIONS(1883), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1883), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1883), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1883), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1883), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1883), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1883), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1883), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1883), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1883), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1883), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1883), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1883), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1883), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1883), - [anon_sym_MOZ_RAII] = ACTIONS(1883), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1883), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1883), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1883), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1883), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1883), - [sym_raw_string_literal] = ACTIONS(1885), - }, - [598] = { - [sym_identifier] = ACTIONS(1715), - [aux_sym_preproc_include_token1] = ACTIONS(1715), - [aux_sym_preproc_def_token1] = ACTIONS(1715), - [aux_sym_preproc_if_token1] = ACTIONS(1715), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1715), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1715), - [sym_preproc_directive] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_typedef] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym___attribute__] = ACTIONS(1715), - [anon_sym_COLON_COLON] = ACTIONS(1717), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1717), - [anon_sym___declspec] = ACTIONS(1715), - [anon_sym___based] = ACTIONS(1715), - [anon_sym___cdecl] = ACTIONS(1715), - [anon_sym___clrcall] = ACTIONS(1715), - [anon_sym___stdcall] = ACTIONS(1715), - [anon_sym___fastcall] = ACTIONS(1715), - [anon_sym___thiscall] = ACTIONS(1715), - [anon_sym___vectorcall] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_inline] = ACTIONS(1715), - [anon_sym_thread_local] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [anon_sym_volatile] = ACTIONS(1715), - [anon_sym_restrict] = ACTIONS(1715), - [anon_sym__Atomic] = ACTIONS(1715), - [anon_sym_mutable] = ACTIONS(1715), - [anon_sym_constexpr] = ACTIONS(1715), - [anon_sym_signed] = ACTIONS(1715), - [anon_sym_unsigned] = ACTIONS(1715), - [anon_sym_long] = ACTIONS(1715), - [anon_sym_short] = ACTIONS(1715), - [sym_primitive_type] = ACTIONS(1715), - [anon_sym_enum] = ACTIONS(1715), - [anon_sym_class] = ACTIONS(1715), - [anon_sym_struct] = ACTIONS(1715), - [anon_sym_union] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_switch] = ACTIONS(1715), - [anon_sym_case] = ACTIONS(1715), - [anon_sym_default] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_goto] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_sizeof] = ACTIONS(1715), - [sym_number_literal] = ACTIONS(1717), - [anon_sym_L_SQUOTE] = ACTIONS(1717), - [anon_sym_u_SQUOTE] = ACTIONS(1717), - [anon_sym_U_SQUOTE] = ACTIONS(1717), - [anon_sym_u8_SQUOTE] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_L_DQUOTE] = ACTIONS(1717), - [anon_sym_u_DQUOTE] = ACTIONS(1717), - [anon_sym_U_DQUOTE] = ACTIONS(1717), - [anon_sym_u8_DQUOTE] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym_true] = ACTIONS(1715), - [sym_false] = ACTIONS(1715), - [sym_null] = ACTIONS(1715), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1715), - [anon_sym_virtual] = ACTIONS(1715), - [anon_sym_explicit] = ACTIONS(1715), - [sym_auto] = ACTIONS(1715), - [anon_sym_typename] = ACTIONS(1715), - [anon_sym_template] = ACTIONS(1715), - [anon_sym_operator] = ACTIONS(1715), - [anon_sym_delete] = ACTIONS(1715), - [anon_sym_throw] = ACTIONS(1715), - [anon_sym_namespace] = ACTIONS(1715), - [anon_sym_using] = ACTIONS(1715), - [anon_sym_static_assert] = ACTIONS(1715), - [anon_sym_co_return] = ACTIONS(1715), - [anon_sym_co_yield] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_co_await] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [sym_this] = ACTIONS(1715), - [sym_nullptr] = ACTIONS(1715), - [sym_alone_macro] = ACTIONS(1717), - [aux_sym_alone_macro_call_token1] = ACTIONS(1715), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1715), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_FORWARD] = ACTIONS(1715), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1715), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1715), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1715), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1715), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_PS_GET] = ACTIONS(1715), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1715), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1715), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1715), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1715), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1715), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1715), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1715), - [anon_sym_MOZ_COLD] = ACTIONS(1715), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1715), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1715), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1715), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1715), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1715), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1715), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1715), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1715), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1715), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1715), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1715), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1715), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1715), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_NONNULL] = ACTIONS(1715), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1715), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1715), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1715), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1715), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1715), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1715), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1715), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1715), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1715), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1715), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1715), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1715), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1715), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1715), - [anon_sym_MOZ_RAII] = ACTIONS(1715), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1715), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1715), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1715), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1715), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1715), - [sym_raw_string_literal] = ACTIONS(1717), - }, - [599] = { - [ts_builtin_sym_end] = ACTIONS(1761), - [sym_identifier] = ACTIONS(1759), - [aux_sym_preproc_include_token1] = ACTIONS(1759), - [aux_sym_preproc_def_token1] = ACTIONS(1759), - [aux_sym_preproc_if_token1] = ACTIONS(1759), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1759), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1759), - [sym_preproc_directive] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1761), - [anon_sym_TILDE] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1759), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_AMP_AMP] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_typedef] = ACTIONS(1759), - [anon_sym_extern] = ACTIONS(1759), - [anon_sym___attribute__] = ACTIONS(1759), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), - [anon_sym___declspec] = ACTIONS(1759), - [anon_sym___based] = ACTIONS(1759), - [anon_sym___cdecl] = ACTIONS(1759), - [anon_sym___clrcall] = ACTIONS(1759), - [anon_sym___stdcall] = ACTIONS(1759), - [anon_sym___fastcall] = ACTIONS(1759), - [anon_sym___thiscall] = ACTIONS(1759), - [anon_sym___vectorcall] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_static] = ACTIONS(1759), - [anon_sym_register] = ACTIONS(1759), - [anon_sym_inline] = ACTIONS(1759), - [anon_sym_thread_local] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_volatile] = ACTIONS(1759), - [anon_sym_restrict] = ACTIONS(1759), - [anon_sym__Atomic] = ACTIONS(1759), - [anon_sym_mutable] = ACTIONS(1759), - [anon_sym_constexpr] = ACTIONS(1759), - [anon_sym_signed] = ACTIONS(1759), - [anon_sym_unsigned] = ACTIONS(1759), - [anon_sym_long] = ACTIONS(1759), - [anon_sym_short] = ACTIONS(1759), - [sym_primitive_type] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_class] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(1759), - [anon_sym_union] = ACTIONS(1759), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_switch] = ACTIONS(1759), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1759), - [anon_sym_while] = ACTIONS(1759), - [anon_sym_do] = ACTIONS(1759), - [anon_sym_for] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1759), - [anon_sym_break] = ACTIONS(1759), - [anon_sym_continue] = ACTIONS(1759), - [anon_sym_goto] = ACTIONS(1759), - [anon_sym_DASH_DASH] = ACTIONS(1761), - [anon_sym_PLUS_PLUS] = ACTIONS(1761), - [anon_sym_sizeof] = ACTIONS(1759), - [sym_number_literal] = ACTIONS(1761), - [anon_sym_L_SQUOTE] = ACTIONS(1761), - [anon_sym_u_SQUOTE] = ACTIONS(1761), - [anon_sym_U_SQUOTE] = ACTIONS(1761), - [anon_sym_u8_SQUOTE] = ACTIONS(1761), - [anon_sym_SQUOTE] = ACTIONS(1761), - [anon_sym_L_DQUOTE] = ACTIONS(1761), - [anon_sym_u_DQUOTE] = ACTIONS(1761), - [anon_sym_U_DQUOTE] = ACTIONS(1761), - [anon_sym_u8_DQUOTE] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1761), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_null] = ACTIONS(1759), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1759), - [anon_sym_virtual] = ACTIONS(1759), - [anon_sym_explicit] = ACTIONS(1759), - [sym_auto] = ACTIONS(1759), - [anon_sym_typename] = ACTIONS(1759), - [anon_sym_template] = ACTIONS(1759), - [anon_sym_operator] = ACTIONS(1759), - [anon_sym_delete] = ACTIONS(1759), - [anon_sym_throw] = ACTIONS(1759), - [anon_sym_namespace] = ACTIONS(1759), - [anon_sym_using] = ACTIONS(1759), - [anon_sym_static_assert] = ACTIONS(1759), - [anon_sym_co_return] = ACTIONS(1759), - [anon_sym_co_yield] = ACTIONS(1759), - [anon_sym_try] = ACTIONS(1759), - [anon_sym_co_await] = ACTIONS(1759), - [anon_sym_new] = ACTIONS(1759), - [sym_this] = ACTIONS(1759), - [sym_nullptr] = ACTIONS(1759), - [sym_alone_macro] = ACTIONS(1761), - [aux_sym_alone_macro_call_token1] = ACTIONS(1759), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1759), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_FORWARD] = ACTIONS(1759), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1759), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1759), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1759), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1759), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_PS_GET] = ACTIONS(1759), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1759), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1759), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1759), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1759), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1759), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1759), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1759), - [anon_sym_MOZ_COLD] = ACTIONS(1759), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1759), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1759), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1759), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1759), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1759), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1759), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1759), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1759), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1759), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1759), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1759), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1759), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1759), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_NONNULL] = ACTIONS(1759), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1759), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1759), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1759), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1759), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1759), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1759), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1759), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1759), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1759), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1759), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1759), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1759), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1759), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1759), - [anon_sym_MOZ_RAII] = ACTIONS(1759), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1759), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1759), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1759), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1759), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1759), - [sym_raw_string_literal] = ACTIONS(1761), - }, - [600] = { - [ts_builtin_sym_end] = ACTIONS(1765), - [sym_identifier] = ACTIONS(1763), - [aux_sym_preproc_include_token1] = ACTIONS(1763), - [aux_sym_preproc_def_token1] = ACTIONS(1763), - [aux_sym_preproc_if_token1] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), - [sym_preproc_directive] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(1765), - [anon_sym_BANG] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_typedef] = ACTIONS(1763), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym___attribute__] = ACTIONS(1763), - [anon_sym_COLON_COLON] = ACTIONS(1765), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1765), - [anon_sym___declspec] = ACTIONS(1763), - [anon_sym___based] = ACTIONS(1763), - [anon_sym___cdecl] = ACTIONS(1763), - [anon_sym___clrcall] = ACTIONS(1763), - [anon_sym___stdcall] = ACTIONS(1763), - [anon_sym___fastcall] = ACTIONS(1763), - [anon_sym___thiscall] = ACTIONS(1763), - [anon_sym___vectorcall] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_inline] = ACTIONS(1763), - [anon_sym_thread_local] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym_mutable] = ACTIONS(1763), - [anon_sym_constexpr] = ACTIONS(1763), - [anon_sym_signed] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [sym_primitive_type] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [anon_sym_class] = ACTIONS(1763), - [anon_sym_struct] = ACTIONS(1763), - [anon_sym_union] = ACTIONS(1763), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_switch] = ACTIONS(1763), - [anon_sym_case] = ACTIONS(1763), - [anon_sym_default] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_goto] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_sizeof] = ACTIONS(1763), - [sym_number_literal] = ACTIONS(1765), - [anon_sym_L_SQUOTE] = ACTIONS(1765), - [anon_sym_u_SQUOTE] = ACTIONS(1765), - [anon_sym_U_SQUOTE] = ACTIONS(1765), - [anon_sym_u8_SQUOTE] = ACTIONS(1765), - [anon_sym_SQUOTE] = ACTIONS(1765), - [anon_sym_L_DQUOTE] = ACTIONS(1765), - [anon_sym_u_DQUOTE] = ACTIONS(1765), - [anon_sym_U_DQUOTE] = ACTIONS(1765), - [anon_sym_u8_DQUOTE] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym_true] = ACTIONS(1763), - [sym_false] = ACTIONS(1763), - [sym_null] = ACTIONS(1763), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1763), - [anon_sym_virtual] = ACTIONS(1763), - [anon_sym_explicit] = ACTIONS(1763), - [sym_auto] = ACTIONS(1763), - [anon_sym_typename] = ACTIONS(1763), - [anon_sym_template] = ACTIONS(1763), - [anon_sym_operator] = ACTIONS(1763), - [anon_sym_delete] = ACTIONS(1763), - [anon_sym_throw] = ACTIONS(1763), - [anon_sym_namespace] = ACTIONS(1763), - [anon_sym_using] = ACTIONS(1763), - [anon_sym_static_assert] = ACTIONS(1763), - [anon_sym_co_return] = ACTIONS(1763), - [anon_sym_co_yield] = ACTIONS(1763), - [anon_sym_try] = ACTIONS(1763), - [anon_sym_co_await] = ACTIONS(1763), - [anon_sym_new] = ACTIONS(1763), - [sym_this] = ACTIONS(1763), - [sym_nullptr] = ACTIONS(1763), - [sym_alone_macro] = ACTIONS(1765), - [aux_sym_alone_macro_call_token1] = ACTIONS(1763), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1763), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_FORWARD] = ACTIONS(1763), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1763), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1763), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1763), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1763), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_PS_GET] = ACTIONS(1763), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1763), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1763), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1763), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1763), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1763), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1763), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1763), - [anon_sym_MOZ_COLD] = ACTIONS(1763), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1763), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1763), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1763), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1763), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1763), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1763), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1763), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1763), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1763), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1763), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1763), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1763), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1763), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_NONNULL] = ACTIONS(1763), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1763), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1763), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1763), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1763), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1763), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1763), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1763), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1763), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1763), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1763), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1763), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1763), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1763), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1763), - [anon_sym_MOZ_RAII] = ACTIONS(1763), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1763), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1763), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1763), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1763), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1763), - [sym_raw_string_literal] = ACTIONS(1765), - }, - [601] = { - [ts_builtin_sym_end] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1807), - [aux_sym_preproc_include_token1] = ACTIONS(1807), - [aux_sym_preproc_def_token1] = ACTIONS(1807), - [aux_sym_preproc_if_token1] = ACTIONS(1807), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1807), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1807), - [sym_preproc_directive] = ACTIONS(1807), - [anon_sym_LPAREN2] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_typedef] = ACTIONS(1807), - [anon_sym_extern] = ACTIONS(1807), - [anon_sym___attribute__] = ACTIONS(1807), - [anon_sym_COLON_COLON] = ACTIONS(1809), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1809), - [anon_sym___declspec] = ACTIONS(1807), - [anon_sym___based] = ACTIONS(1807), - [anon_sym___cdecl] = ACTIONS(1807), - [anon_sym___clrcall] = ACTIONS(1807), - [anon_sym___stdcall] = ACTIONS(1807), - [anon_sym___fastcall] = ACTIONS(1807), - [anon_sym___thiscall] = ACTIONS(1807), - [anon_sym___vectorcall] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_static] = ACTIONS(1807), - [anon_sym_register] = ACTIONS(1807), - [anon_sym_inline] = ACTIONS(1807), - [anon_sym_thread_local] = ACTIONS(1807), - [anon_sym_const] = ACTIONS(1807), - [anon_sym_volatile] = ACTIONS(1807), - [anon_sym_restrict] = ACTIONS(1807), - [anon_sym__Atomic] = ACTIONS(1807), - [anon_sym_mutable] = ACTIONS(1807), - [anon_sym_constexpr] = ACTIONS(1807), - [anon_sym_signed] = ACTIONS(1807), - [anon_sym_unsigned] = ACTIONS(1807), - [anon_sym_long] = ACTIONS(1807), - [anon_sym_short] = ACTIONS(1807), - [sym_primitive_type] = ACTIONS(1807), - [anon_sym_enum] = ACTIONS(1807), - [anon_sym_class] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1807), - [anon_sym_union] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(1807), - [anon_sym_switch] = ACTIONS(1807), - [anon_sym_case] = ACTIONS(1807), - [anon_sym_default] = ACTIONS(1807), - [anon_sym_while] = ACTIONS(1807), - [anon_sym_do] = ACTIONS(1807), - [anon_sym_for] = ACTIONS(1807), - [anon_sym_return] = ACTIONS(1807), - [anon_sym_break] = ACTIONS(1807), - [anon_sym_continue] = ACTIONS(1807), - [anon_sym_goto] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_sizeof] = ACTIONS(1807), - [sym_number_literal] = ACTIONS(1809), - [anon_sym_L_SQUOTE] = ACTIONS(1809), - [anon_sym_u_SQUOTE] = ACTIONS(1809), - [anon_sym_U_SQUOTE] = ACTIONS(1809), - [anon_sym_u8_SQUOTE] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_L_DQUOTE] = ACTIONS(1809), - [anon_sym_u_DQUOTE] = ACTIONS(1809), - [anon_sym_U_DQUOTE] = ACTIONS(1809), - [anon_sym_u8_DQUOTE] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [sym_true] = ACTIONS(1807), - [sym_false] = ACTIONS(1807), - [sym_null] = ACTIONS(1807), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1807), - [anon_sym_virtual] = ACTIONS(1807), - [anon_sym_explicit] = ACTIONS(1807), - [sym_auto] = ACTIONS(1807), - [anon_sym_typename] = ACTIONS(1807), - [anon_sym_template] = ACTIONS(1807), - [anon_sym_operator] = ACTIONS(1807), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_throw] = ACTIONS(1807), - [anon_sym_namespace] = ACTIONS(1807), - [anon_sym_using] = ACTIONS(1807), - [anon_sym_static_assert] = ACTIONS(1807), - [anon_sym_co_return] = ACTIONS(1807), - [anon_sym_co_yield] = ACTIONS(1807), - [anon_sym_try] = ACTIONS(1807), - [anon_sym_co_await] = ACTIONS(1807), - [anon_sym_new] = ACTIONS(1807), - [sym_this] = ACTIONS(1807), - [sym_nullptr] = ACTIONS(1807), - [sym_alone_macro] = ACTIONS(1809), - [aux_sym_alone_macro_call_token1] = ACTIONS(1807), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1807), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_FORWARD] = ACTIONS(1807), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1807), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1807), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1807), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1807), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_PS_GET] = ACTIONS(1807), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1807), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1807), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1807), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1807), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1807), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1807), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1807), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1807), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1807), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1807), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1807), - [anon_sym_MOZ_COLD] = ACTIONS(1807), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1807), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1807), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1807), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1807), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1807), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1807), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1807), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1807), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1807), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1807), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1807), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1807), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1807), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1807), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1807), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1807), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1807), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1807), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1807), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1807), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_NONNULL] = ACTIONS(1807), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1807), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1807), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1807), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1807), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1807), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_NORETURN] = ACTIONS(1807), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1807), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1807), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1807), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1807), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1807), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1807), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1807), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1807), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1807), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1807), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1807), - [anon_sym_MOZ_RAII] = ACTIONS(1807), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1807), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1807), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1807), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1807), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1807), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1807), - [sym_raw_string_literal] = ACTIONS(1809), - }, - [602] = { - [ts_builtin_sym_end] = ACTIONS(1813), - [sym_identifier] = ACTIONS(1811), - [aux_sym_preproc_include_token1] = ACTIONS(1811), - [aux_sym_preproc_def_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token1] = ACTIONS(1811), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1811), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1811), - [sym_preproc_directive] = ACTIONS(1811), - [anon_sym_LPAREN2] = ACTIONS(1813), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_AMP_AMP] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1813), - [anon_sym_typedef] = ACTIONS(1811), - [anon_sym_extern] = ACTIONS(1811), - [anon_sym___attribute__] = ACTIONS(1811), - [anon_sym_COLON_COLON] = ACTIONS(1813), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), - [anon_sym___declspec] = ACTIONS(1811), - [anon_sym___based] = ACTIONS(1811), - [anon_sym___cdecl] = ACTIONS(1811), - [anon_sym___clrcall] = ACTIONS(1811), - [anon_sym___stdcall] = ACTIONS(1811), - [anon_sym___fastcall] = ACTIONS(1811), - [anon_sym___thiscall] = ACTIONS(1811), - [anon_sym___vectorcall] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_static] = ACTIONS(1811), - [anon_sym_register] = ACTIONS(1811), - [anon_sym_inline] = ACTIONS(1811), - [anon_sym_thread_local] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [anon_sym_volatile] = ACTIONS(1811), - [anon_sym_restrict] = ACTIONS(1811), - [anon_sym__Atomic] = ACTIONS(1811), - [anon_sym_mutable] = ACTIONS(1811), - [anon_sym_constexpr] = ACTIONS(1811), - [anon_sym_signed] = ACTIONS(1811), - [anon_sym_unsigned] = ACTIONS(1811), - [anon_sym_long] = ACTIONS(1811), - [anon_sym_short] = ACTIONS(1811), - [sym_primitive_type] = ACTIONS(1811), - [anon_sym_enum] = ACTIONS(1811), - [anon_sym_class] = ACTIONS(1811), - [anon_sym_struct] = ACTIONS(1811), - [anon_sym_union] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_switch] = ACTIONS(1811), - [anon_sym_case] = ACTIONS(1811), - [anon_sym_default] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_goto] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_sizeof] = ACTIONS(1811), - [sym_number_literal] = ACTIONS(1813), - [anon_sym_L_SQUOTE] = ACTIONS(1813), - [anon_sym_u_SQUOTE] = ACTIONS(1813), - [anon_sym_U_SQUOTE] = ACTIONS(1813), - [anon_sym_u8_SQUOTE] = ACTIONS(1813), - [anon_sym_SQUOTE] = ACTIONS(1813), - [anon_sym_L_DQUOTE] = ACTIONS(1813), - [anon_sym_u_DQUOTE] = ACTIONS(1813), - [anon_sym_U_DQUOTE] = ACTIONS(1813), - [anon_sym_u8_DQUOTE] = ACTIONS(1813), - [anon_sym_DQUOTE] = ACTIONS(1813), - [sym_true] = ACTIONS(1811), - [sym_false] = ACTIONS(1811), - [sym_null] = ACTIONS(1811), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1811), - [anon_sym_virtual] = ACTIONS(1811), - [anon_sym_explicit] = ACTIONS(1811), - [sym_auto] = ACTIONS(1811), - [anon_sym_typename] = ACTIONS(1811), - [anon_sym_template] = ACTIONS(1811), - [anon_sym_operator] = ACTIONS(1811), - [anon_sym_delete] = ACTIONS(1811), - [anon_sym_throw] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(1811), - [anon_sym_static_assert] = ACTIONS(1811), - [anon_sym_co_return] = ACTIONS(1811), - [anon_sym_co_yield] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1811), - [anon_sym_co_await] = ACTIONS(1811), - [anon_sym_new] = ACTIONS(1811), - [sym_this] = ACTIONS(1811), - [sym_nullptr] = ACTIONS(1811), - [sym_alone_macro] = ACTIONS(1813), - [aux_sym_alone_macro_call_token1] = ACTIONS(1811), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1811), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_FORWARD] = ACTIONS(1811), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1811), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1811), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1811), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1811), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_PS_GET] = ACTIONS(1811), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1811), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1811), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1811), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1811), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1811), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1811), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1811), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1811), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1811), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1811), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1811), - [anon_sym_MOZ_COLD] = ACTIONS(1811), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1811), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1811), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1811), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1811), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1811), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1811), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1811), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1811), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1811), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1811), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1811), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1811), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1811), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1811), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1811), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1811), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1811), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1811), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1811), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1811), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_NONNULL] = ACTIONS(1811), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1811), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1811), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1811), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1811), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1811), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_NORETURN] = ACTIONS(1811), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1811), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1811), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1811), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1811), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1811), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1811), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1811), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1811), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1811), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1811), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1811), - [anon_sym_MOZ_RAII] = ACTIONS(1811), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1811), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1811), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1811), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1811), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1811), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1811), - [sym_raw_string_literal] = ACTIONS(1813), - }, - [603] = { - [ts_builtin_sym_end] = ACTIONS(1745), - [sym_identifier] = ACTIONS(1743), - [aux_sym_preproc_include_token1] = ACTIONS(1743), - [aux_sym_preproc_def_token1] = ACTIONS(1743), - [aux_sym_preproc_if_token1] = ACTIONS(1743), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1743), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1743), - [sym_preproc_directive] = ACTIONS(1743), - [anon_sym_LPAREN2] = ACTIONS(1745), - [anon_sym_BANG] = ACTIONS(1745), - [anon_sym_TILDE] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1743), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_AMP_AMP] = ACTIONS(1745), - [anon_sym_AMP] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_typedef] = ACTIONS(1743), - [anon_sym_extern] = ACTIONS(1743), - [anon_sym___attribute__] = ACTIONS(1743), - [anon_sym_COLON_COLON] = ACTIONS(1745), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1745), - [anon_sym___declspec] = ACTIONS(1743), - [anon_sym___based] = ACTIONS(1743), - [anon_sym___cdecl] = ACTIONS(1743), - [anon_sym___clrcall] = ACTIONS(1743), - [anon_sym___stdcall] = ACTIONS(1743), - [anon_sym___fastcall] = ACTIONS(1743), - [anon_sym___thiscall] = ACTIONS(1743), - [anon_sym___vectorcall] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_static] = ACTIONS(1743), - [anon_sym_register] = ACTIONS(1743), - [anon_sym_inline] = ACTIONS(1743), - [anon_sym_thread_local] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_volatile] = ACTIONS(1743), - [anon_sym_restrict] = ACTIONS(1743), - [anon_sym__Atomic] = ACTIONS(1743), - [anon_sym_mutable] = ACTIONS(1743), - [anon_sym_constexpr] = ACTIONS(1743), - [anon_sym_signed] = ACTIONS(1743), - [anon_sym_unsigned] = ACTIONS(1743), - [anon_sym_long] = ACTIONS(1743), - [anon_sym_short] = ACTIONS(1743), - [sym_primitive_type] = ACTIONS(1743), - [anon_sym_enum] = ACTIONS(1743), - [anon_sym_class] = ACTIONS(1743), - [anon_sym_struct] = ACTIONS(1743), - [anon_sym_union] = ACTIONS(1743), - [anon_sym_if] = ACTIONS(1743), - [anon_sym_switch] = ACTIONS(1743), - [anon_sym_case] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1743), - [anon_sym_while] = ACTIONS(1743), - [anon_sym_do] = ACTIONS(1743), - [anon_sym_for] = ACTIONS(1743), - [anon_sym_return] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1743), - [anon_sym_continue] = ACTIONS(1743), - [anon_sym_goto] = ACTIONS(1743), - [anon_sym_DASH_DASH] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1745), - [anon_sym_sizeof] = ACTIONS(1743), - [sym_number_literal] = ACTIONS(1745), - [anon_sym_L_SQUOTE] = ACTIONS(1745), - [anon_sym_u_SQUOTE] = ACTIONS(1745), - [anon_sym_U_SQUOTE] = ACTIONS(1745), - [anon_sym_u8_SQUOTE] = ACTIONS(1745), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_L_DQUOTE] = ACTIONS(1745), - [anon_sym_u_DQUOTE] = ACTIONS(1745), - [anon_sym_U_DQUOTE] = ACTIONS(1745), - [anon_sym_u8_DQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1745), - [sym_true] = ACTIONS(1743), - [sym_false] = ACTIONS(1743), - [sym_null] = ACTIONS(1743), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1743), - [anon_sym_virtual] = ACTIONS(1743), - [anon_sym_explicit] = ACTIONS(1743), - [sym_auto] = ACTIONS(1743), - [anon_sym_typename] = ACTIONS(1743), - [anon_sym_template] = ACTIONS(1743), - [anon_sym_operator] = ACTIONS(1743), - [anon_sym_delete] = ACTIONS(1743), - [anon_sym_throw] = ACTIONS(1743), - [anon_sym_namespace] = ACTIONS(1743), - [anon_sym_using] = ACTIONS(1743), - [anon_sym_static_assert] = ACTIONS(1743), - [anon_sym_co_return] = ACTIONS(1743), - [anon_sym_co_yield] = ACTIONS(1743), - [anon_sym_try] = ACTIONS(1743), - [anon_sym_co_await] = ACTIONS(1743), - [anon_sym_new] = ACTIONS(1743), - [sym_this] = ACTIONS(1743), - [sym_nullptr] = ACTIONS(1743), - [sym_alone_macro] = ACTIONS(1745), - [aux_sym_alone_macro_call_token1] = ACTIONS(1743), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1743), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_FORWARD] = ACTIONS(1743), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1743), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1743), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1743), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1743), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_PS_GET] = ACTIONS(1743), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1743), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1743), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1743), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1743), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1743), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1743), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1743), - [anon_sym_MOZ_COLD] = ACTIONS(1743), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1743), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1743), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1743), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1743), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1743), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1743), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1743), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1743), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1743), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1743), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1743), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1743), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1743), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_NONNULL] = ACTIONS(1743), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1743), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1743), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1743), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1743), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1743), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1743), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1743), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1743), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1743), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1743), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1743), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1743), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1743), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1743), - [anon_sym_MOZ_RAII] = ACTIONS(1743), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1743), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1743), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1743), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1743), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1743), - [sym_raw_string_literal] = ACTIONS(1745), - }, - [604] = { - [ts_builtin_sym_end] = ACTIONS(1869), - [sym_identifier] = ACTIONS(1867), - [aux_sym_preproc_include_token1] = ACTIONS(1867), - [aux_sym_preproc_def_token1] = ACTIONS(1867), - [aux_sym_preproc_if_token1] = ACTIONS(1867), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1867), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1867), - [sym_preproc_directive] = ACTIONS(1867), - [anon_sym_LPAREN2] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_AMP_AMP] = ACTIONS(1869), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_typedef] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1867), - [anon_sym___attribute__] = ACTIONS(1867), - [anon_sym_COLON_COLON] = ACTIONS(1869), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1869), - [anon_sym___declspec] = ACTIONS(1867), - [anon_sym___based] = ACTIONS(1867), - [anon_sym___cdecl] = ACTIONS(1867), - [anon_sym___clrcall] = ACTIONS(1867), - [anon_sym___stdcall] = ACTIONS(1867), - [anon_sym___fastcall] = ACTIONS(1867), - [anon_sym___thiscall] = ACTIONS(1867), - [anon_sym___vectorcall] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1867), - [anon_sym_register] = ACTIONS(1867), - [anon_sym_inline] = ACTIONS(1867), - [anon_sym_thread_local] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_restrict] = ACTIONS(1867), - [anon_sym__Atomic] = ACTIONS(1867), - [anon_sym_mutable] = ACTIONS(1867), - [anon_sym_constexpr] = ACTIONS(1867), - [anon_sym_signed] = ACTIONS(1867), - [anon_sym_unsigned] = ACTIONS(1867), - [anon_sym_long] = ACTIONS(1867), - [anon_sym_short] = ACTIONS(1867), - [sym_primitive_type] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1867), - [anon_sym_class] = ACTIONS(1867), - [anon_sym_struct] = ACTIONS(1867), - [anon_sym_union] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1867), - [anon_sym_case] = ACTIONS(1867), - [anon_sym_default] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1867), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_goto] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [anon_sym_PLUS_PLUS] = ACTIONS(1869), - [anon_sym_sizeof] = ACTIONS(1867), - [sym_number_literal] = ACTIONS(1869), - [anon_sym_L_SQUOTE] = ACTIONS(1869), - [anon_sym_u_SQUOTE] = ACTIONS(1869), - [anon_sym_U_SQUOTE] = ACTIONS(1869), - [anon_sym_u8_SQUOTE] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_L_DQUOTE] = ACTIONS(1869), - [anon_sym_u_DQUOTE] = ACTIONS(1869), - [anon_sym_U_DQUOTE] = ACTIONS(1869), - [anon_sym_u8_DQUOTE] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1869), - [sym_true] = ACTIONS(1867), - [sym_false] = ACTIONS(1867), - [sym_null] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1867), - [anon_sym_virtual] = ACTIONS(1867), - [anon_sym_explicit] = ACTIONS(1867), - [sym_auto] = ACTIONS(1867), - [anon_sym_typename] = ACTIONS(1867), - [anon_sym_template] = ACTIONS(1867), - [anon_sym_operator] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_namespace] = ACTIONS(1867), - [anon_sym_using] = ACTIONS(1867), - [anon_sym_static_assert] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1867), - [anon_sym_co_yield] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_co_await] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(1867), - [sym_this] = ACTIONS(1867), - [sym_nullptr] = ACTIONS(1867), - [sym_alone_macro] = ACTIONS(1869), - [aux_sym_alone_macro_call_token1] = ACTIONS(1867), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1867), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_FORWARD] = ACTIONS(1867), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1867), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1867), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1867), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1867), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_PS_GET] = ACTIONS(1867), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1867), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1867), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1867), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1867), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1867), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1867), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1867), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1867), - [anon_sym_MOZ_COLD] = ACTIONS(1867), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1867), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1867), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1867), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1867), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1867), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1867), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1867), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1867), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1867), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1867), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1867), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1867), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1867), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_NONNULL] = ACTIONS(1867), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1867), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1867), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1867), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1867), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1867), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1867), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1867), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1867), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1867), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1867), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1867), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1867), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1867), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1867), - [anon_sym_MOZ_RAII] = ACTIONS(1867), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1867), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1867), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1867), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1867), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1867), - [sym_raw_string_literal] = ACTIONS(1869), - }, - [605] = { - [ts_builtin_sym_end] = ACTIONS(1817), - [sym_identifier] = ACTIONS(1815), - [aux_sym_preproc_include_token1] = ACTIONS(1815), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1815), - [sym_preproc_directive] = ACTIONS(1815), - [anon_sym_LPAREN2] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_typedef] = ACTIONS(1815), - [anon_sym_extern] = ACTIONS(1815), - [anon_sym___attribute__] = ACTIONS(1815), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1817), - [anon_sym___declspec] = ACTIONS(1815), - [anon_sym___based] = ACTIONS(1815), - [anon_sym___cdecl] = ACTIONS(1815), - [anon_sym___clrcall] = ACTIONS(1815), - [anon_sym___stdcall] = ACTIONS(1815), - [anon_sym___fastcall] = ACTIONS(1815), - [anon_sym___thiscall] = ACTIONS(1815), - [anon_sym___vectorcall] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_static] = ACTIONS(1815), - [anon_sym_register] = ACTIONS(1815), - [anon_sym_inline] = ACTIONS(1815), - [anon_sym_thread_local] = ACTIONS(1815), - [anon_sym_const] = ACTIONS(1815), - [anon_sym_volatile] = ACTIONS(1815), - [anon_sym_restrict] = ACTIONS(1815), - [anon_sym__Atomic] = ACTIONS(1815), - [anon_sym_mutable] = ACTIONS(1815), - [anon_sym_constexpr] = ACTIONS(1815), - [anon_sym_signed] = ACTIONS(1815), - [anon_sym_unsigned] = ACTIONS(1815), - [anon_sym_long] = ACTIONS(1815), - [anon_sym_short] = ACTIONS(1815), - [sym_primitive_type] = ACTIONS(1815), - [anon_sym_enum] = ACTIONS(1815), - [anon_sym_class] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1815), - [anon_sym_union] = ACTIONS(1815), - [anon_sym_if] = ACTIONS(1815), - [anon_sym_switch] = ACTIONS(1815), - [anon_sym_case] = ACTIONS(1815), - [anon_sym_default] = ACTIONS(1815), - [anon_sym_while] = ACTIONS(1815), - [anon_sym_do] = ACTIONS(1815), - [anon_sym_for] = ACTIONS(1815), - [anon_sym_return] = ACTIONS(1815), - [anon_sym_break] = ACTIONS(1815), - [anon_sym_continue] = ACTIONS(1815), - [anon_sym_goto] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_sizeof] = ACTIONS(1815), - [sym_number_literal] = ACTIONS(1817), - [anon_sym_L_SQUOTE] = ACTIONS(1817), - [anon_sym_u_SQUOTE] = ACTIONS(1817), - [anon_sym_U_SQUOTE] = ACTIONS(1817), - [anon_sym_u8_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_L_DQUOTE] = ACTIONS(1817), - [anon_sym_u_DQUOTE] = ACTIONS(1817), - [anon_sym_U_DQUOTE] = ACTIONS(1817), - [anon_sym_u8_DQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [sym_true] = ACTIONS(1815), - [sym_false] = ACTIONS(1815), - [sym_null] = ACTIONS(1815), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1815), - [anon_sym_virtual] = ACTIONS(1815), - [anon_sym_explicit] = ACTIONS(1815), - [sym_auto] = ACTIONS(1815), - [anon_sym_typename] = ACTIONS(1815), - [anon_sym_template] = ACTIONS(1815), - [anon_sym_operator] = ACTIONS(1815), - [anon_sym_delete] = ACTIONS(1815), - [anon_sym_throw] = ACTIONS(1815), - [anon_sym_namespace] = ACTIONS(1815), - [anon_sym_using] = ACTIONS(1815), - [anon_sym_static_assert] = ACTIONS(1815), - [anon_sym_co_return] = ACTIONS(1815), - [anon_sym_co_yield] = ACTIONS(1815), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_co_await] = ACTIONS(1815), - [anon_sym_new] = ACTIONS(1815), - [sym_this] = ACTIONS(1815), - [sym_nullptr] = ACTIONS(1815), - [sym_alone_macro] = ACTIONS(1817), - [aux_sym_alone_macro_call_token1] = ACTIONS(1815), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1815), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_FORWARD] = ACTIONS(1815), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1815), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1815), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1815), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1815), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_PS_GET] = ACTIONS(1815), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1815), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1815), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1815), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1815), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1815), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1815), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1815), - [anon_sym_MOZ_COLD] = ACTIONS(1815), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1815), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1815), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1815), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1815), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1815), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1815), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1815), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1815), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1815), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1815), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1815), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1815), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1815), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_NONNULL] = ACTIONS(1815), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1815), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1815), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1815), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1815), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1815), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1815), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1815), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1815), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1815), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1815), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1815), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1815), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1815), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1815), - [anon_sym_MOZ_RAII] = ACTIONS(1815), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1815), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1815), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1815), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1815), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1815), - [sym_raw_string_literal] = ACTIONS(1817), - }, - [606] = { - [ts_builtin_sym_end] = ACTIONS(1705), - [sym_identifier] = ACTIONS(1703), - [aux_sym_preproc_include_token1] = ACTIONS(1703), - [aux_sym_preproc_def_token1] = ACTIONS(1703), - [aux_sym_preproc_if_token1] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1703), - [sym_preproc_directive] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_typedef] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym___attribute__] = ACTIONS(1703), - [anon_sym_COLON_COLON] = ACTIONS(1705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1705), - [anon_sym___declspec] = ACTIONS(1703), - [anon_sym___based] = ACTIONS(1703), - [anon_sym___cdecl] = ACTIONS(1703), - [anon_sym___clrcall] = ACTIONS(1703), - [anon_sym___stdcall] = ACTIONS(1703), - [anon_sym___fastcall] = ACTIONS(1703), - [anon_sym___thiscall] = ACTIONS(1703), - [anon_sym___vectorcall] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_inline] = ACTIONS(1703), - [anon_sym_thread_local] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [anon_sym_volatile] = ACTIONS(1703), - [anon_sym_restrict] = ACTIONS(1703), - [anon_sym__Atomic] = ACTIONS(1703), - [anon_sym_mutable] = ACTIONS(1703), - [anon_sym_constexpr] = ACTIONS(1703), - [anon_sym_signed] = ACTIONS(1703), - [anon_sym_unsigned] = ACTIONS(1703), - [anon_sym_long] = ACTIONS(1703), - [anon_sym_short] = ACTIONS(1703), - [sym_primitive_type] = ACTIONS(1703), - [anon_sym_enum] = ACTIONS(1703), - [anon_sym_class] = ACTIONS(1703), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_switch] = ACTIONS(1703), - [anon_sym_case] = ACTIONS(1703), - [anon_sym_default] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_goto] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_PLUS_PLUS] = ACTIONS(1705), - [anon_sym_sizeof] = ACTIONS(1703), - [sym_number_literal] = ACTIONS(1705), - [anon_sym_L_SQUOTE] = ACTIONS(1705), - [anon_sym_u_SQUOTE] = ACTIONS(1705), - [anon_sym_U_SQUOTE] = ACTIONS(1705), - [anon_sym_u8_SQUOTE] = ACTIONS(1705), - [anon_sym_SQUOTE] = ACTIONS(1705), - [anon_sym_L_DQUOTE] = ACTIONS(1705), - [anon_sym_u_DQUOTE] = ACTIONS(1705), - [anon_sym_U_DQUOTE] = ACTIONS(1705), - [anon_sym_u8_DQUOTE] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym_true] = ACTIONS(1703), - [sym_false] = ACTIONS(1703), - [sym_null] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1703), - [anon_sym_virtual] = ACTIONS(1703), - [anon_sym_explicit] = ACTIONS(1703), - [sym_auto] = ACTIONS(1703), - [anon_sym_typename] = ACTIONS(1703), - [anon_sym_template] = ACTIONS(1703), - [anon_sym_operator] = ACTIONS(1703), - [anon_sym_delete] = ACTIONS(1703), - [anon_sym_throw] = ACTIONS(1703), - [anon_sym_namespace] = ACTIONS(1703), - [anon_sym_using] = ACTIONS(1703), - [anon_sym_static_assert] = ACTIONS(1703), - [anon_sym_co_return] = ACTIONS(1703), - [anon_sym_co_yield] = ACTIONS(1703), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_co_await] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [sym_this] = ACTIONS(1703), - [sym_nullptr] = ACTIONS(1703), - [sym_alone_macro] = ACTIONS(1705), - [aux_sym_alone_macro_call_token1] = ACTIONS(1703), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1703), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_FORWARD] = ACTIONS(1703), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1703), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1703), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1703), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1703), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_PS_GET] = ACTIONS(1703), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1703), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1703), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1703), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1703), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1703), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1703), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1703), - [anon_sym_MOZ_COLD] = ACTIONS(1703), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1703), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1703), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1703), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1703), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1703), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1703), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1703), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1703), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1703), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1703), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1703), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1703), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1703), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_NONNULL] = ACTIONS(1703), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1703), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1703), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1703), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1703), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1703), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1703), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1703), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1703), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1703), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1703), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1703), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1703), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1703), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1703), - [anon_sym_MOZ_RAII] = ACTIONS(1703), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1703), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1703), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1703), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1703), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1703), - [sym_raw_string_literal] = ACTIONS(1705), - }, - [607] = { - [sym_identifier] = ACTIONS(1899), - [aux_sym_preproc_include_token1] = ACTIONS(1899), - [aux_sym_preproc_def_token1] = ACTIONS(1899), - [aux_sym_preproc_if_token1] = ACTIONS(1899), - [aux_sym_preproc_if_token2] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1899), - [sym_preproc_directive] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1901), - [anon_sym_BANG] = ACTIONS(1901), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_AMP_AMP] = ACTIONS(1901), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_typedef] = ACTIONS(1899), - [anon_sym_extern] = ACTIONS(1899), - [anon_sym___attribute__] = ACTIONS(1899), - [anon_sym_COLON_COLON] = ACTIONS(1901), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1901), - [anon_sym___declspec] = ACTIONS(1899), - [anon_sym___based] = ACTIONS(1899), - [anon_sym___cdecl] = ACTIONS(1899), - [anon_sym___clrcall] = ACTIONS(1899), - [anon_sym___stdcall] = ACTIONS(1899), - [anon_sym___fastcall] = ACTIONS(1899), - [anon_sym___thiscall] = ACTIONS(1899), - [anon_sym___vectorcall] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_register] = ACTIONS(1899), - [anon_sym_inline] = ACTIONS(1899), - [anon_sym_thread_local] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_volatile] = ACTIONS(1899), - [anon_sym_restrict] = ACTIONS(1899), - [anon_sym__Atomic] = ACTIONS(1899), - [anon_sym_mutable] = ACTIONS(1899), - [anon_sym_constexpr] = ACTIONS(1899), - [anon_sym_signed] = ACTIONS(1899), - [anon_sym_unsigned] = ACTIONS(1899), - [anon_sym_long] = ACTIONS(1899), - [anon_sym_short] = ACTIONS(1899), - [sym_primitive_type] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_class] = ACTIONS(1899), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_switch] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1899), - [anon_sym_default] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_goto] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [anon_sym_PLUS_PLUS] = ACTIONS(1901), - [anon_sym_sizeof] = ACTIONS(1899), - [sym_number_literal] = ACTIONS(1901), - [anon_sym_L_SQUOTE] = ACTIONS(1901), - [anon_sym_u_SQUOTE] = ACTIONS(1901), - [anon_sym_U_SQUOTE] = ACTIONS(1901), - [anon_sym_u8_SQUOTE] = ACTIONS(1901), - [anon_sym_SQUOTE] = ACTIONS(1901), - [anon_sym_L_DQUOTE] = ACTIONS(1901), - [anon_sym_u_DQUOTE] = ACTIONS(1901), - [anon_sym_U_DQUOTE] = ACTIONS(1901), - [anon_sym_u8_DQUOTE] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1901), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_null] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1899), - [anon_sym_virtual] = ACTIONS(1899), - [anon_sym_explicit] = ACTIONS(1899), - [sym_auto] = ACTIONS(1899), - [anon_sym_typename] = ACTIONS(1899), - [anon_sym_template] = ACTIONS(1899), - [anon_sym_operator] = ACTIONS(1899), - [anon_sym_delete] = ACTIONS(1899), - [anon_sym_throw] = ACTIONS(1899), - [anon_sym_namespace] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(1899), - [anon_sym_static_assert] = ACTIONS(1899), - [anon_sym_co_return] = ACTIONS(1899), - [anon_sym_co_yield] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_co_await] = ACTIONS(1899), - [anon_sym_new] = ACTIONS(1899), - [sym_this] = ACTIONS(1899), - [sym_nullptr] = ACTIONS(1899), - [sym_alone_macro] = ACTIONS(1901), - [aux_sym_alone_macro_call_token1] = ACTIONS(1899), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1899), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_FORWARD] = ACTIONS(1899), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1899), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1899), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1899), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1899), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_PS_GET] = ACTIONS(1899), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1899), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1899), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1899), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1899), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1899), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1899), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1899), - [anon_sym_MOZ_COLD] = ACTIONS(1899), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1899), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1899), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1899), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1899), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1899), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1899), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1899), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1899), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1899), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1899), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1899), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1899), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1899), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_NONNULL] = ACTIONS(1899), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1899), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1899), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1899), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1899), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1899), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1899), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1899), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1899), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1899), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1899), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1899), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1899), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1899), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1899), - [anon_sym_MOZ_RAII] = ACTIONS(1899), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1899), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1899), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1899), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1899), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1899), - [sym_raw_string_literal] = ACTIONS(1901), - }, - [608] = { - [ts_builtin_sym_end] = ACTIONS(1893), - [sym_identifier] = ACTIONS(1891), - [aux_sym_preproc_include_token1] = ACTIONS(1891), - [aux_sym_preproc_def_token1] = ACTIONS(1891), - [aux_sym_preproc_if_token1] = ACTIONS(1891), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1891), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1891), - [sym_preproc_directive] = ACTIONS(1891), - [anon_sym_LPAREN2] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_TILDE] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_AMP_AMP] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_typedef] = ACTIONS(1891), - [anon_sym_extern] = ACTIONS(1891), - [anon_sym___attribute__] = ACTIONS(1891), - [anon_sym_COLON_COLON] = ACTIONS(1893), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), - [anon_sym___declspec] = ACTIONS(1891), - [anon_sym___based] = ACTIONS(1891), - [anon_sym___cdecl] = ACTIONS(1891), - [anon_sym___clrcall] = ACTIONS(1891), - [anon_sym___stdcall] = ACTIONS(1891), - [anon_sym___fastcall] = ACTIONS(1891), - [anon_sym___thiscall] = ACTIONS(1891), - [anon_sym___vectorcall] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_static] = ACTIONS(1891), - [anon_sym_register] = ACTIONS(1891), - [anon_sym_inline] = ACTIONS(1891), - [anon_sym_thread_local] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1891), - [anon_sym_volatile] = ACTIONS(1891), - [anon_sym_restrict] = ACTIONS(1891), - [anon_sym__Atomic] = ACTIONS(1891), - [anon_sym_mutable] = ACTIONS(1891), - [anon_sym_constexpr] = ACTIONS(1891), - [anon_sym_signed] = ACTIONS(1891), - [anon_sym_unsigned] = ACTIONS(1891), - [anon_sym_long] = ACTIONS(1891), - [anon_sym_short] = ACTIONS(1891), - [sym_primitive_type] = ACTIONS(1891), - [anon_sym_enum] = ACTIONS(1891), - [anon_sym_class] = ACTIONS(1891), - [anon_sym_struct] = ACTIONS(1891), - [anon_sym_union] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_switch] = ACTIONS(1891), - [anon_sym_case] = ACTIONS(1891), - [anon_sym_default] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_do] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_return] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_goto] = ACTIONS(1891), - [anon_sym_DASH_DASH] = ACTIONS(1893), - [anon_sym_PLUS_PLUS] = ACTIONS(1893), - [anon_sym_sizeof] = ACTIONS(1891), - [sym_number_literal] = ACTIONS(1893), - [anon_sym_L_SQUOTE] = ACTIONS(1893), - [anon_sym_u_SQUOTE] = ACTIONS(1893), - [anon_sym_U_SQUOTE] = ACTIONS(1893), - [anon_sym_u8_SQUOTE] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_L_DQUOTE] = ACTIONS(1893), - [anon_sym_u_DQUOTE] = ACTIONS(1893), - [anon_sym_U_DQUOTE] = ACTIONS(1893), - [anon_sym_u8_DQUOTE] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym_true] = ACTIONS(1891), - [sym_false] = ACTIONS(1891), - [sym_null] = ACTIONS(1891), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1891), - [anon_sym_virtual] = ACTIONS(1891), - [anon_sym_explicit] = ACTIONS(1891), - [sym_auto] = ACTIONS(1891), - [anon_sym_typename] = ACTIONS(1891), - [anon_sym_template] = ACTIONS(1891), - [anon_sym_operator] = ACTIONS(1891), - [anon_sym_delete] = ACTIONS(1891), - [anon_sym_throw] = ACTIONS(1891), - [anon_sym_namespace] = ACTIONS(1891), - [anon_sym_using] = ACTIONS(1891), - [anon_sym_static_assert] = ACTIONS(1891), - [anon_sym_co_return] = ACTIONS(1891), - [anon_sym_co_yield] = ACTIONS(1891), - [anon_sym_try] = ACTIONS(1891), - [anon_sym_co_await] = ACTIONS(1891), - [anon_sym_new] = ACTIONS(1891), - [sym_this] = ACTIONS(1891), - [sym_nullptr] = ACTIONS(1891), - [sym_alone_macro] = ACTIONS(1893), - [aux_sym_alone_macro_call_token1] = ACTIONS(1891), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1891), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_FORWARD] = ACTIONS(1891), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1891), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1891), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1891), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1891), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_PS_GET] = ACTIONS(1891), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1891), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1891), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1891), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1891), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1891), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1891), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1891), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1891), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1891), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1891), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1891), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1891), - [anon_sym_MOZ_COLD] = ACTIONS(1891), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1891), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1891), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1891), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1891), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1891), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1891), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1891), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1891), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1891), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1891), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1891), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1891), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1891), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1891), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1891), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1891), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1891), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1891), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1891), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1891), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1891), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_NONNULL] = ACTIONS(1891), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1891), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1891), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1891), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1891), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1891), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_NORETURN] = ACTIONS(1891), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1891), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1891), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1891), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1891), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1891), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1891), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1891), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1891), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1891), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1891), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1891), - [anon_sym_MOZ_RAII] = ACTIONS(1891), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1891), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1891), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1891), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1891), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1891), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1891), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1891), - [sym_raw_string_literal] = ACTIONS(1893), - }, - [609] = { - [sym_identifier] = ACTIONS(1803), - [aux_sym_preproc_include_token1] = ACTIONS(1803), - [aux_sym_preproc_def_token1] = ACTIONS(1803), - [aux_sym_preproc_if_token1] = ACTIONS(1803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1803), - [sym_preproc_directive] = ACTIONS(1803), - [anon_sym_LPAREN2] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_AMP_AMP] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_typedef] = ACTIONS(1803), - [anon_sym_extern] = ACTIONS(1803), - [anon_sym___attribute__] = ACTIONS(1803), - [anon_sym_COLON_COLON] = ACTIONS(1805), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1805), - [anon_sym___declspec] = ACTIONS(1803), - [anon_sym___based] = ACTIONS(1803), - [anon_sym___cdecl] = ACTIONS(1803), - [anon_sym___clrcall] = ACTIONS(1803), - [anon_sym___stdcall] = ACTIONS(1803), - [anon_sym___fastcall] = ACTIONS(1803), - [anon_sym___thiscall] = ACTIONS(1803), - [anon_sym___vectorcall] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_register] = ACTIONS(1803), - [anon_sym_inline] = ACTIONS(1803), - [anon_sym_thread_local] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_volatile] = ACTIONS(1803), - [anon_sym_restrict] = ACTIONS(1803), - [anon_sym__Atomic] = ACTIONS(1803), - [anon_sym_mutable] = ACTIONS(1803), - [anon_sym_constexpr] = ACTIONS(1803), - [anon_sym_signed] = ACTIONS(1803), - [anon_sym_unsigned] = ACTIONS(1803), - [anon_sym_long] = ACTIONS(1803), - [anon_sym_short] = ACTIONS(1803), - [sym_primitive_type] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_struct] = ACTIONS(1803), - [anon_sym_union] = ACTIONS(1803), - [anon_sym_if] = ACTIONS(1803), - [anon_sym_switch] = ACTIONS(1803), - [anon_sym_case] = ACTIONS(1803), - [anon_sym_default] = ACTIONS(1803), - [anon_sym_while] = ACTIONS(1803), - [anon_sym_do] = ACTIONS(1803), - [anon_sym_for] = ACTIONS(1803), - [anon_sym_return] = ACTIONS(1803), - [anon_sym_break] = ACTIONS(1803), - [anon_sym_continue] = ACTIONS(1803), - [anon_sym_goto] = ACTIONS(1803), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_sizeof] = ACTIONS(1803), - [sym_number_literal] = ACTIONS(1805), - [anon_sym_L_SQUOTE] = ACTIONS(1805), - [anon_sym_u_SQUOTE] = ACTIONS(1805), - [anon_sym_U_SQUOTE] = ACTIONS(1805), - [anon_sym_u8_SQUOTE] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(1805), - [anon_sym_L_DQUOTE] = ACTIONS(1805), - [anon_sym_u_DQUOTE] = ACTIONS(1805), - [anon_sym_U_DQUOTE] = ACTIONS(1805), - [anon_sym_u8_DQUOTE] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(1805), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_null] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1803), - [anon_sym_virtual] = ACTIONS(1803), - [anon_sym_explicit] = ACTIONS(1803), - [sym_auto] = ACTIONS(1803), - [anon_sym_typename] = ACTIONS(1803), - [anon_sym_template] = ACTIONS(1803), - [anon_sym_operator] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1803), - [anon_sym_throw] = ACTIONS(1803), - [anon_sym_namespace] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1803), - [anon_sym_static_assert] = ACTIONS(1803), - [anon_sym_co_return] = ACTIONS(1803), - [anon_sym_co_yield] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1803), - [anon_sym_co_await] = ACTIONS(1803), - [anon_sym_new] = ACTIONS(1803), - [sym_this] = ACTIONS(1803), - [sym_nullptr] = ACTIONS(1803), - [sym_alone_macro] = ACTIONS(1805), - [aux_sym_alone_macro_call_token1] = ACTIONS(1803), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1803), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_FORWARD] = ACTIONS(1803), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1803), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1803), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1803), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1803), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_PS_GET] = ACTIONS(1803), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1803), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1803), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1803), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1803), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1803), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1803), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1803), - [anon_sym_MOZ_COLD] = ACTIONS(1803), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1803), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1803), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1803), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1803), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1803), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1803), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1803), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1803), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1803), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1803), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1803), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1803), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1803), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_NONNULL] = ACTIONS(1803), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1803), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1803), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1803), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1803), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1803), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1803), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1803), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1803), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1803), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1803), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1803), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1803), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1803), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1803), - [anon_sym_MOZ_RAII] = ACTIONS(1803), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1803), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1803), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1803), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1803), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1803), - [sym_raw_string_literal] = ACTIONS(1805), - }, - [610] = { - [ts_builtin_sym_end] = ACTIONS(1889), - [sym_identifier] = ACTIONS(1887), - [aux_sym_preproc_include_token1] = ACTIONS(1887), - [aux_sym_preproc_def_token1] = ACTIONS(1887), - [aux_sym_preproc_if_token1] = ACTIONS(1887), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1887), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1887), - [sym_preproc_directive] = ACTIONS(1887), - [anon_sym_LPAREN2] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_typedef] = ACTIONS(1887), - [anon_sym_extern] = ACTIONS(1887), - [anon_sym___attribute__] = ACTIONS(1887), - [anon_sym_COLON_COLON] = ACTIONS(1889), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1889), - [anon_sym___declspec] = ACTIONS(1887), - [anon_sym___based] = ACTIONS(1887), - [anon_sym___cdecl] = ACTIONS(1887), - [anon_sym___clrcall] = ACTIONS(1887), - [anon_sym___stdcall] = ACTIONS(1887), - [anon_sym___fastcall] = ACTIONS(1887), - [anon_sym___thiscall] = ACTIONS(1887), - [anon_sym___vectorcall] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_register] = ACTIONS(1887), - [anon_sym_inline] = ACTIONS(1887), - [anon_sym_thread_local] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [anon_sym_volatile] = ACTIONS(1887), - [anon_sym_restrict] = ACTIONS(1887), - [anon_sym__Atomic] = ACTIONS(1887), - [anon_sym_mutable] = ACTIONS(1887), - [anon_sym_constexpr] = ACTIONS(1887), - [anon_sym_signed] = ACTIONS(1887), - [anon_sym_unsigned] = ACTIONS(1887), - [anon_sym_long] = ACTIONS(1887), - [anon_sym_short] = ACTIONS(1887), - [sym_primitive_type] = ACTIONS(1887), - [anon_sym_enum] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1887), - [anon_sym_union] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_switch] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_default] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_do] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_goto] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_sizeof] = ACTIONS(1887), - [sym_number_literal] = ACTIONS(1889), - [anon_sym_L_SQUOTE] = ACTIONS(1889), - [anon_sym_u_SQUOTE] = ACTIONS(1889), - [anon_sym_U_SQUOTE] = ACTIONS(1889), - [anon_sym_u8_SQUOTE] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1889), - [anon_sym_L_DQUOTE] = ACTIONS(1889), - [anon_sym_u_DQUOTE] = ACTIONS(1889), - [anon_sym_U_DQUOTE] = ACTIONS(1889), - [anon_sym_u8_DQUOTE] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [sym_true] = ACTIONS(1887), - [sym_false] = ACTIONS(1887), - [sym_null] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1887), - [anon_sym_virtual] = ACTIONS(1887), - [anon_sym_explicit] = ACTIONS(1887), - [sym_auto] = ACTIONS(1887), - [anon_sym_typename] = ACTIONS(1887), - [anon_sym_template] = ACTIONS(1887), - [anon_sym_operator] = ACTIONS(1887), - [anon_sym_delete] = ACTIONS(1887), - [anon_sym_throw] = ACTIONS(1887), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_using] = ACTIONS(1887), - [anon_sym_static_assert] = ACTIONS(1887), - [anon_sym_co_return] = ACTIONS(1887), - [anon_sym_co_yield] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_co_await] = ACTIONS(1887), - [anon_sym_new] = ACTIONS(1887), - [sym_this] = ACTIONS(1887), - [sym_nullptr] = ACTIONS(1887), - [sym_alone_macro] = ACTIONS(1889), - [aux_sym_alone_macro_call_token1] = ACTIONS(1887), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1887), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_FORWARD] = ACTIONS(1887), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1887), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1887), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1887), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1887), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_PS_GET] = ACTIONS(1887), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1887), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1887), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1887), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1887), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1887), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1887), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1887), - [anon_sym_MOZ_COLD] = ACTIONS(1887), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1887), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1887), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1887), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1887), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1887), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1887), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1887), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1887), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1887), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1887), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1887), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1887), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1887), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_NONNULL] = ACTIONS(1887), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1887), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1887), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1887), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1887), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1887), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1887), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1887), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1887), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1887), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1887), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1887), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1887), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1887), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1887), - [anon_sym_MOZ_RAII] = ACTIONS(1887), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1887), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1887), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1887), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1887), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1887), - [sym_raw_string_literal] = ACTIONS(1889), - }, - [611] = { - [sym_identifier] = ACTIONS(1787), - [aux_sym_preproc_include_token1] = ACTIONS(1787), - [aux_sym_preproc_def_token1] = ACTIONS(1787), - [aux_sym_preproc_if_token1] = ACTIONS(1787), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1787), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1787), - [sym_preproc_directive] = ACTIONS(1787), - [anon_sym_LPAREN2] = ACTIONS(1789), - [anon_sym_BANG] = ACTIONS(1789), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_AMP_AMP] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1789), - [anon_sym_typedef] = ACTIONS(1787), - [anon_sym_extern] = ACTIONS(1787), - [anon_sym___attribute__] = ACTIONS(1787), - [anon_sym_COLON_COLON] = ACTIONS(1789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), - [anon_sym___declspec] = ACTIONS(1787), - [anon_sym___based] = ACTIONS(1787), - [anon_sym___cdecl] = ACTIONS(1787), - [anon_sym___clrcall] = ACTIONS(1787), - [anon_sym___stdcall] = ACTIONS(1787), - [anon_sym___fastcall] = ACTIONS(1787), - [anon_sym___thiscall] = ACTIONS(1787), - [anon_sym___vectorcall] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_static] = ACTIONS(1787), - [anon_sym_register] = ACTIONS(1787), - [anon_sym_inline] = ACTIONS(1787), - [anon_sym_thread_local] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_volatile] = ACTIONS(1787), - [anon_sym_restrict] = ACTIONS(1787), - [anon_sym__Atomic] = ACTIONS(1787), - [anon_sym_mutable] = ACTIONS(1787), - [anon_sym_constexpr] = ACTIONS(1787), - [anon_sym_signed] = ACTIONS(1787), - [anon_sym_unsigned] = ACTIONS(1787), - [anon_sym_long] = ACTIONS(1787), - [anon_sym_short] = ACTIONS(1787), - [sym_primitive_type] = ACTIONS(1787), - [anon_sym_enum] = ACTIONS(1787), - [anon_sym_class] = ACTIONS(1787), - [anon_sym_struct] = ACTIONS(1787), - [anon_sym_union] = ACTIONS(1787), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_switch] = ACTIONS(1787), - [anon_sym_case] = ACTIONS(1787), - [anon_sym_default] = ACTIONS(1787), - [anon_sym_while] = ACTIONS(1787), - [anon_sym_do] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_goto] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1787), - [sym_number_literal] = ACTIONS(1789), - [anon_sym_L_SQUOTE] = ACTIONS(1789), - [anon_sym_u_SQUOTE] = ACTIONS(1789), - [anon_sym_U_SQUOTE] = ACTIONS(1789), - [anon_sym_u8_SQUOTE] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [anon_sym_L_DQUOTE] = ACTIONS(1789), - [anon_sym_u_DQUOTE] = ACTIONS(1789), - [anon_sym_U_DQUOTE] = ACTIONS(1789), - [anon_sym_u8_DQUOTE] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [sym_true] = ACTIONS(1787), - [sym_false] = ACTIONS(1787), - [sym_null] = ACTIONS(1787), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1787), - [anon_sym_virtual] = ACTIONS(1787), - [anon_sym_explicit] = ACTIONS(1787), - [sym_auto] = ACTIONS(1787), - [anon_sym_typename] = ACTIONS(1787), - [anon_sym_template] = ACTIONS(1787), - [anon_sym_operator] = ACTIONS(1787), - [anon_sym_delete] = ACTIONS(1787), - [anon_sym_throw] = ACTIONS(1787), - [anon_sym_namespace] = ACTIONS(1787), - [anon_sym_using] = ACTIONS(1787), - [anon_sym_static_assert] = ACTIONS(1787), - [anon_sym_co_return] = ACTIONS(1787), - [anon_sym_co_yield] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1787), - [anon_sym_co_await] = ACTIONS(1787), - [anon_sym_new] = ACTIONS(1787), - [sym_this] = ACTIONS(1787), - [sym_nullptr] = ACTIONS(1787), - [sym_alone_macro] = ACTIONS(1789), - [aux_sym_alone_macro_call_token1] = ACTIONS(1787), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1787), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_FORWARD] = ACTIONS(1787), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1787), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1787), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1787), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1787), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_PS_GET] = ACTIONS(1787), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1787), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1787), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1787), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1787), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1787), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1787), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1787), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1787), - [anon_sym_MOZ_COLD] = ACTIONS(1787), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1787), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1787), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1787), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1787), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1787), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1787), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1787), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1787), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1787), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1787), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1787), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1787), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1787), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_NONNULL] = ACTIONS(1787), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1787), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1787), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1787), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1787), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1787), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1787), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1787), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1787), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1787), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1787), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1787), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1787), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1787), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1787), - [anon_sym_MOZ_RAII] = ACTIONS(1787), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1787), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1787), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1787), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1787), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1787), - [sym_raw_string_literal] = ACTIONS(1789), - }, - [612] = { - [sym_identifier] = ACTIONS(1871), - [aux_sym_preproc_include_token1] = ACTIONS(1871), - [aux_sym_preproc_def_token1] = ACTIONS(1871), - [aux_sym_preproc_if_token1] = ACTIONS(1871), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1871), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1871), - [sym_preproc_directive] = ACTIONS(1871), - [anon_sym_LPAREN2] = ACTIONS(1873), - [anon_sym_BANG] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1871), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_AMP_AMP] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_typedef] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym___attribute__] = ACTIONS(1871), - [anon_sym_COLON_COLON] = ACTIONS(1873), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), - [anon_sym___declspec] = ACTIONS(1871), - [anon_sym___based] = ACTIONS(1871), - [anon_sym___cdecl] = ACTIONS(1871), - [anon_sym___clrcall] = ACTIONS(1871), - [anon_sym___stdcall] = ACTIONS(1871), - [anon_sym___fastcall] = ACTIONS(1871), - [anon_sym___thiscall] = ACTIONS(1871), - [anon_sym___vectorcall] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1871), - [anon_sym_static] = ACTIONS(1871), - [anon_sym_register] = ACTIONS(1871), - [anon_sym_inline] = ACTIONS(1871), - [anon_sym_thread_local] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [anon_sym_volatile] = ACTIONS(1871), - [anon_sym_restrict] = ACTIONS(1871), - [anon_sym__Atomic] = ACTIONS(1871), - [anon_sym_mutable] = ACTIONS(1871), - [anon_sym_constexpr] = ACTIONS(1871), - [anon_sym_signed] = ACTIONS(1871), - [anon_sym_unsigned] = ACTIONS(1871), - [anon_sym_long] = ACTIONS(1871), - [anon_sym_short] = ACTIONS(1871), - [sym_primitive_type] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), - [anon_sym_class] = ACTIONS(1871), - [anon_sym_struct] = ACTIONS(1871), - [anon_sym_union] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_switch] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_goto] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [anon_sym_PLUS_PLUS] = ACTIONS(1873), - [anon_sym_sizeof] = ACTIONS(1871), - [sym_number_literal] = ACTIONS(1873), - [anon_sym_L_SQUOTE] = ACTIONS(1873), - [anon_sym_u_SQUOTE] = ACTIONS(1873), - [anon_sym_U_SQUOTE] = ACTIONS(1873), - [anon_sym_u8_SQUOTE] = ACTIONS(1873), - [anon_sym_SQUOTE] = ACTIONS(1873), - [anon_sym_L_DQUOTE] = ACTIONS(1873), - [anon_sym_u_DQUOTE] = ACTIONS(1873), - [anon_sym_U_DQUOTE] = ACTIONS(1873), - [anon_sym_u8_DQUOTE] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym_true] = ACTIONS(1871), - [sym_false] = ACTIONS(1871), - [sym_null] = ACTIONS(1871), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1871), - [anon_sym_virtual] = ACTIONS(1871), - [anon_sym_explicit] = ACTIONS(1871), - [sym_auto] = ACTIONS(1871), - [anon_sym_typename] = ACTIONS(1871), - [anon_sym_template] = ACTIONS(1871), - [anon_sym_operator] = ACTIONS(1871), - [anon_sym_delete] = ACTIONS(1871), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_namespace] = ACTIONS(1871), - [anon_sym_using] = ACTIONS(1871), - [anon_sym_static_assert] = ACTIONS(1871), - [anon_sym_co_return] = ACTIONS(1871), - [anon_sym_co_yield] = ACTIONS(1871), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_co_await] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1871), - [sym_this] = ACTIONS(1871), - [sym_nullptr] = ACTIONS(1871), - [sym_alone_macro] = ACTIONS(1873), - [aux_sym_alone_macro_call_token1] = ACTIONS(1871), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1871), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_FORWARD] = ACTIONS(1871), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1871), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1871), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1871), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1871), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_PS_GET] = ACTIONS(1871), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1871), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1871), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1871), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1871), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1871), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1871), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1871), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1871), - [anon_sym_MOZ_COLD] = ACTIONS(1871), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1871), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1871), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1871), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1871), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1871), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1871), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1871), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1871), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1871), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1871), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1871), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1871), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1871), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_NONNULL] = ACTIONS(1871), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1871), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1871), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1871), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1871), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1871), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1871), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1871), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1871), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1871), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1871), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1871), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1871), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1871), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1871), - [anon_sym_MOZ_RAII] = ACTIONS(1871), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1871), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1871), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1871), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1871), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1871), - [sym_raw_string_literal] = ACTIONS(1873), - }, - [613] = { - [sym_identifier] = ACTIONS(1799), - [aux_sym_preproc_include_token1] = ACTIONS(1799), - [aux_sym_preproc_def_token1] = ACTIONS(1799), - [aux_sym_preproc_if_token1] = ACTIONS(1799), - [aux_sym_preproc_if_token2] = ACTIONS(1799), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1799), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1799), - [sym_preproc_directive] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_typedef] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym___attribute__] = ACTIONS(1799), - [anon_sym_COLON_COLON] = ACTIONS(1801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1801), - [anon_sym___declspec] = ACTIONS(1799), - [anon_sym___based] = ACTIONS(1799), - [anon_sym___cdecl] = ACTIONS(1799), - [anon_sym___clrcall] = ACTIONS(1799), - [anon_sym___stdcall] = ACTIONS(1799), - [anon_sym___fastcall] = ACTIONS(1799), - [anon_sym___thiscall] = ACTIONS(1799), - [anon_sym___vectorcall] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_inline] = ACTIONS(1799), - [anon_sym_thread_local] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_volatile] = ACTIONS(1799), - [anon_sym_restrict] = ACTIONS(1799), - [anon_sym__Atomic] = ACTIONS(1799), - [anon_sym_mutable] = ACTIONS(1799), - [anon_sym_constexpr] = ACTIONS(1799), - [anon_sym_signed] = ACTIONS(1799), - [anon_sym_unsigned] = ACTIONS(1799), - [anon_sym_long] = ACTIONS(1799), - [anon_sym_short] = ACTIONS(1799), - [sym_primitive_type] = ACTIONS(1799), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_class] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1799), - [anon_sym_union] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_switch] = ACTIONS(1799), - [anon_sym_case] = ACTIONS(1799), - [anon_sym_default] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_goto] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1799), - [sym_number_literal] = ACTIONS(1801), - [anon_sym_L_SQUOTE] = ACTIONS(1801), - [anon_sym_u_SQUOTE] = ACTIONS(1801), - [anon_sym_U_SQUOTE] = ACTIONS(1801), - [anon_sym_u8_SQUOTE] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(1801), - [anon_sym_L_DQUOTE] = ACTIONS(1801), - [anon_sym_u_DQUOTE] = ACTIONS(1801), - [anon_sym_U_DQUOTE] = ACTIONS(1801), - [anon_sym_u8_DQUOTE] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym_true] = ACTIONS(1799), - [sym_false] = ACTIONS(1799), - [sym_null] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1799), - [anon_sym_virtual] = ACTIONS(1799), - [anon_sym_explicit] = ACTIONS(1799), - [sym_auto] = ACTIONS(1799), - [anon_sym_typename] = ACTIONS(1799), - [anon_sym_template] = ACTIONS(1799), - [anon_sym_operator] = ACTIONS(1799), - [anon_sym_delete] = ACTIONS(1799), - [anon_sym_throw] = ACTIONS(1799), - [anon_sym_namespace] = ACTIONS(1799), - [anon_sym_using] = ACTIONS(1799), - [anon_sym_static_assert] = ACTIONS(1799), - [anon_sym_co_return] = ACTIONS(1799), - [anon_sym_co_yield] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_co_await] = ACTIONS(1799), - [anon_sym_new] = ACTIONS(1799), - [sym_this] = ACTIONS(1799), - [sym_nullptr] = ACTIONS(1799), - [sym_alone_macro] = ACTIONS(1801), - [aux_sym_alone_macro_call_token1] = ACTIONS(1799), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1799), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_FORWARD] = ACTIONS(1799), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1799), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1799), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1799), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1799), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_PS_GET] = ACTIONS(1799), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1799), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1799), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1799), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1799), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1799), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1799), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1799), - [anon_sym_MOZ_COLD] = ACTIONS(1799), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1799), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1799), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1799), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1799), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1799), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1799), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1799), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1799), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1799), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1799), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1799), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1799), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1799), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_NONNULL] = ACTIONS(1799), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1799), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1799), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1799), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1799), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1799), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1799), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1799), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1799), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1799), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1799), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1799), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1799), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1799), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1799), - [anon_sym_MOZ_RAII] = ACTIONS(1799), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1799), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1799), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1799), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1799), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1799), - [sym_raw_string_literal] = ACTIONS(1801), - }, - [614] = { - [sym_identifier] = ACTIONS(1763), - [aux_sym_preproc_include_token1] = ACTIONS(1763), - [aux_sym_preproc_def_token1] = ACTIONS(1763), - [aux_sym_preproc_if_token1] = ACTIONS(1763), - [aux_sym_preproc_if_token2] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), - [sym_preproc_directive] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(1765), - [anon_sym_BANG] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_typedef] = ACTIONS(1763), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym___attribute__] = ACTIONS(1763), - [anon_sym_COLON_COLON] = ACTIONS(1765), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1765), - [anon_sym___declspec] = ACTIONS(1763), - [anon_sym___based] = ACTIONS(1763), - [anon_sym___cdecl] = ACTIONS(1763), - [anon_sym___clrcall] = ACTIONS(1763), - [anon_sym___stdcall] = ACTIONS(1763), - [anon_sym___fastcall] = ACTIONS(1763), - [anon_sym___thiscall] = ACTIONS(1763), - [anon_sym___vectorcall] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_inline] = ACTIONS(1763), - [anon_sym_thread_local] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym_mutable] = ACTIONS(1763), - [anon_sym_constexpr] = ACTIONS(1763), - [anon_sym_signed] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [sym_primitive_type] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [anon_sym_class] = ACTIONS(1763), - [anon_sym_struct] = ACTIONS(1763), - [anon_sym_union] = ACTIONS(1763), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_switch] = ACTIONS(1763), - [anon_sym_case] = ACTIONS(1763), - [anon_sym_default] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_goto] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_sizeof] = ACTIONS(1763), - [sym_number_literal] = ACTIONS(1765), - [anon_sym_L_SQUOTE] = ACTIONS(1765), - [anon_sym_u_SQUOTE] = ACTIONS(1765), - [anon_sym_U_SQUOTE] = ACTIONS(1765), - [anon_sym_u8_SQUOTE] = ACTIONS(1765), - [anon_sym_SQUOTE] = ACTIONS(1765), - [anon_sym_L_DQUOTE] = ACTIONS(1765), - [anon_sym_u_DQUOTE] = ACTIONS(1765), - [anon_sym_U_DQUOTE] = ACTIONS(1765), - [anon_sym_u8_DQUOTE] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym_true] = ACTIONS(1763), - [sym_false] = ACTIONS(1763), - [sym_null] = ACTIONS(1763), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1763), - [anon_sym_virtual] = ACTIONS(1763), - [anon_sym_explicit] = ACTIONS(1763), - [sym_auto] = ACTIONS(1763), - [anon_sym_typename] = ACTIONS(1763), - [anon_sym_template] = ACTIONS(1763), - [anon_sym_operator] = ACTIONS(1763), - [anon_sym_delete] = ACTIONS(1763), - [anon_sym_throw] = ACTIONS(1763), - [anon_sym_namespace] = ACTIONS(1763), - [anon_sym_using] = ACTIONS(1763), - [anon_sym_static_assert] = ACTIONS(1763), - [anon_sym_co_return] = ACTIONS(1763), - [anon_sym_co_yield] = ACTIONS(1763), - [anon_sym_try] = ACTIONS(1763), - [anon_sym_co_await] = ACTIONS(1763), - [anon_sym_new] = ACTIONS(1763), - [sym_this] = ACTIONS(1763), - [sym_nullptr] = ACTIONS(1763), - [sym_alone_macro] = ACTIONS(1765), - [aux_sym_alone_macro_call_token1] = ACTIONS(1763), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1763), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_FORWARD] = ACTIONS(1763), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1763), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1763), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1763), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1763), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_PS_GET] = ACTIONS(1763), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1763), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1763), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1763), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1763), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1763), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1763), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1763), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1763), - [anon_sym_MOZ_COLD] = ACTIONS(1763), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1763), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1763), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1763), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1763), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1763), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1763), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1763), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1763), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1763), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1763), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1763), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1763), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1763), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_NONNULL] = ACTIONS(1763), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1763), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1763), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1763), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1763), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1763), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1763), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1763), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1763), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1763), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1763), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1763), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1763), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1763), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1763), - [anon_sym_MOZ_RAII] = ACTIONS(1763), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1763), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1763), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1763), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1763), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1763), - [sym_raw_string_literal] = ACTIONS(1765), - }, - [615] = { - [sym_identifier] = ACTIONS(1759), - [aux_sym_preproc_include_token1] = ACTIONS(1759), - [aux_sym_preproc_def_token1] = ACTIONS(1759), - [aux_sym_preproc_if_token1] = ACTIONS(1759), - [aux_sym_preproc_if_token2] = ACTIONS(1759), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1759), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1759), - [sym_preproc_directive] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1761), - [anon_sym_TILDE] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1759), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_AMP_AMP] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_typedef] = ACTIONS(1759), - [anon_sym_extern] = ACTIONS(1759), - [anon_sym___attribute__] = ACTIONS(1759), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), - [anon_sym___declspec] = ACTIONS(1759), - [anon_sym___based] = ACTIONS(1759), - [anon_sym___cdecl] = ACTIONS(1759), - [anon_sym___clrcall] = ACTIONS(1759), - [anon_sym___stdcall] = ACTIONS(1759), - [anon_sym___fastcall] = ACTIONS(1759), - [anon_sym___thiscall] = ACTIONS(1759), - [anon_sym___vectorcall] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_static] = ACTIONS(1759), - [anon_sym_register] = ACTIONS(1759), - [anon_sym_inline] = ACTIONS(1759), - [anon_sym_thread_local] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_volatile] = ACTIONS(1759), - [anon_sym_restrict] = ACTIONS(1759), - [anon_sym__Atomic] = ACTIONS(1759), - [anon_sym_mutable] = ACTIONS(1759), - [anon_sym_constexpr] = ACTIONS(1759), - [anon_sym_signed] = ACTIONS(1759), - [anon_sym_unsigned] = ACTIONS(1759), - [anon_sym_long] = ACTIONS(1759), - [anon_sym_short] = ACTIONS(1759), - [sym_primitive_type] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_class] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(1759), - [anon_sym_union] = ACTIONS(1759), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_switch] = ACTIONS(1759), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1759), - [anon_sym_while] = ACTIONS(1759), - [anon_sym_do] = ACTIONS(1759), - [anon_sym_for] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1759), - [anon_sym_break] = ACTIONS(1759), - [anon_sym_continue] = ACTIONS(1759), - [anon_sym_goto] = ACTIONS(1759), - [anon_sym_DASH_DASH] = ACTIONS(1761), - [anon_sym_PLUS_PLUS] = ACTIONS(1761), - [anon_sym_sizeof] = ACTIONS(1759), - [sym_number_literal] = ACTIONS(1761), - [anon_sym_L_SQUOTE] = ACTIONS(1761), - [anon_sym_u_SQUOTE] = ACTIONS(1761), - [anon_sym_U_SQUOTE] = ACTIONS(1761), - [anon_sym_u8_SQUOTE] = ACTIONS(1761), - [anon_sym_SQUOTE] = ACTIONS(1761), - [anon_sym_L_DQUOTE] = ACTIONS(1761), - [anon_sym_u_DQUOTE] = ACTIONS(1761), - [anon_sym_U_DQUOTE] = ACTIONS(1761), - [anon_sym_u8_DQUOTE] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1761), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_null] = ACTIONS(1759), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1759), - [anon_sym_virtual] = ACTIONS(1759), - [anon_sym_explicit] = ACTIONS(1759), - [sym_auto] = ACTIONS(1759), - [anon_sym_typename] = ACTIONS(1759), - [anon_sym_template] = ACTIONS(1759), - [anon_sym_operator] = ACTIONS(1759), - [anon_sym_delete] = ACTIONS(1759), - [anon_sym_throw] = ACTIONS(1759), - [anon_sym_namespace] = ACTIONS(1759), - [anon_sym_using] = ACTIONS(1759), - [anon_sym_static_assert] = ACTIONS(1759), - [anon_sym_co_return] = ACTIONS(1759), - [anon_sym_co_yield] = ACTIONS(1759), - [anon_sym_try] = ACTIONS(1759), - [anon_sym_co_await] = ACTIONS(1759), - [anon_sym_new] = ACTIONS(1759), - [sym_this] = ACTIONS(1759), - [sym_nullptr] = ACTIONS(1759), - [sym_alone_macro] = ACTIONS(1761), - [aux_sym_alone_macro_call_token1] = ACTIONS(1759), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1759), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_FORWARD] = ACTIONS(1759), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1759), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1759), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1759), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1759), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_PS_GET] = ACTIONS(1759), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1759), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1759), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1759), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1759), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1759), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1759), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1759), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1759), - [anon_sym_MOZ_COLD] = ACTIONS(1759), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1759), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1759), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1759), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1759), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1759), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1759), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1759), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1759), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1759), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1759), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1759), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1759), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1759), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_NONNULL] = ACTIONS(1759), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1759), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1759), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1759), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1759), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1759), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1759), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1759), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1759), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1759), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1759), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1759), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1759), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1759), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1759), - [anon_sym_MOZ_RAII] = ACTIONS(1759), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1759), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1759), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1759), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1759), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1759), - [sym_raw_string_literal] = ACTIONS(1761), - }, - [616] = { - [sym_identifier] = ACTIONS(1755), - [aux_sym_preproc_include_token1] = ACTIONS(1755), - [aux_sym_preproc_def_token1] = ACTIONS(1755), - [aux_sym_preproc_if_token1] = ACTIONS(1755), - [aux_sym_preproc_if_token2] = ACTIONS(1755), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1755), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1755), - [sym_preproc_directive] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_typedef] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym___attribute__] = ACTIONS(1755), - [anon_sym_COLON_COLON] = ACTIONS(1757), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1757), - [anon_sym___declspec] = ACTIONS(1755), - [anon_sym___based] = ACTIONS(1755), - [anon_sym___cdecl] = ACTIONS(1755), - [anon_sym___clrcall] = ACTIONS(1755), - [anon_sym___stdcall] = ACTIONS(1755), - [anon_sym___fastcall] = ACTIONS(1755), - [anon_sym___thiscall] = ACTIONS(1755), - [anon_sym___vectorcall] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1755), - [anon_sym_static] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_inline] = ACTIONS(1755), - [anon_sym_thread_local] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [anon_sym_volatile] = ACTIONS(1755), - [anon_sym_restrict] = ACTIONS(1755), - [anon_sym__Atomic] = ACTIONS(1755), - [anon_sym_mutable] = ACTIONS(1755), - [anon_sym_constexpr] = ACTIONS(1755), - [anon_sym_signed] = ACTIONS(1755), - [anon_sym_unsigned] = ACTIONS(1755), - [anon_sym_long] = ACTIONS(1755), - [anon_sym_short] = ACTIONS(1755), - [sym_primitive_type] = ACTIONS(1755), - [anon_sym_enum] = ACTIONS(1755), - [anon_sym_class] = ACTIONS(1755), - [anon_sym_struct] = ACTIONS(1755), - [anon_sym_union] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1755), - [anon_sym_case] = ACTIONS(1755), - [anon_sym_default] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_goto] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_sizeof] = ACTIONS(1755), - [sym_number_literal] = ACTIONS(1757), - [anon_sym_L_SQUOTE] = ACTIONS(1757), - [anon_sym_u_SQUOTE] = ACTIONS(1757), - [anon_sym_U_SQUOTE] = ACTIONS(1757), - [anon_sym_u8_SQUOTE] = ACTIONS(1757), - [anon_sym_SQUOTE] = ACTIONS(1757), - [anon_sym_L_DQUOTE] = ACTIONS(1757), - [anon_sym_u_DQUOTE] = ACTIONS(1757), - [anon_sym_U_DQUOTE] = ACTIONS(1757), - [anon_sym_u8_DQUOTE] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym_true] = ACTIONS(1755), - [sym_false] = ACTIONS(1755), - [sym_null] = ACTIONS(1755), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1755), - [anon_sym_virtual] = ACTIONS(1755), - [anon_sym_explicit] = ACTIONS(1755), - [sym_auto] = ACTIONS(1755), - [anon_sym_typename] = ACTIONS(1755), - [anon_sym_template] = ACTIONS(1755), - [anon_sym_operator] = ACTIONS(1755), - [anon_sym_delete] = ACTIONS(1755), - [anon_sym_throw] = ACTIONS(1755), - [anon_sym_namespace] = ACTIONS(1755), - [anon_sym_using] = ACTIONS(1755), - [anon_sym_static_assert] = ACTIONS(1755), - [anon_sym_co_return] = ACTIONS(1755), - [anon_sym_co_yield] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_co_await] = ACTIONS(1755), - [anon_sym_new] = ACTIONS(1755), - [sym_this] = ACTIONS(1755), - [sym_nullptr] = ACTIONS(1755), - [sym_alone_macro] = ACTIONS(1757), - [aux_sym_alone_macro_call_token1] = ACTIONS(1755), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1755), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_FORWARD] = ACTIONS(1755), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1755), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1755), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1755), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1755), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_PS_GET] = ACTIONS(1755), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1755), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1755), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1755), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1755), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1755), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1755), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1755), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1755), - [anon_sym_MOZ_COLD] = ACTIONS(1755), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1755), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1755), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1755), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1755), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1755), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1755), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1755), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1755), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1755), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1755), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1755), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1755), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1755), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_NONNULL] = ACTIONS(1755), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1755), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1755), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1755), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1755), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1755), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1755), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1755), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1755), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1755), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1755), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1755), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1755), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1755), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1755), - [anon_sym_MOZ_RAII] = ACTIONS(1755), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1755), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1755), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1755), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1755), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1755), - [sym_raw_string_literal] = ACTIONS(1757), - }, - [617] = { - [sym_identifier] = ACTIONS(1747), - [aux_sym_preproc_include_token1] = ACTIONS(1747), - [aux_sym_preproc_def_token1] = ACTIONS(1747), - [aux_sym_preproc_if_token1] = ACTIONS(1747), - [aux_sym_preproc_if_token2] = ACTIONS(1747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1747), - [sym_preproc_directive] = ACTIONS(1747), - [anon_sym_LPAREN2] = ACTIONS(1749), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1749), - [anon_sym_AMP_AMP] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1749), - [anon_sym_typedef] = ACTIONS(1747), - [anon_sym_extern] = ACTIONS(1747), - [anon_sym___attribute__] = ACTIONS(1747), - [anon_sym_COLON_COLON] = ACTIONS(1749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1749), - [anon_sym___declspec] = ACTIONS(1747), - [anon_sym___based] = ACTIONS(1747), - [anon_sym___cdecl] = ACTIONS(1747), - [anon_sym___clrcall] = ACTIONS(1747), - [anon_sym___stdcall] = ACTIONS(1747), - [anon_sym___fastcall] = ACTIONS(1747), - [anon_sym___thiscall] = ACTIONS(1747), - [anon_sym___vectorcall] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_static] = ACTIONS(1747), - [anon_sym_register] = ACTIONS(1747), - [anon_sym_inline] = ACTIONS(1747), - [anon_sym_thread_local] = ACTIONS(1747), - [anon_sym_const] = ACTIONS(1747), - [anon_sym_volatile] = ACTIONS(1747), - [anon_sym_restrict] = ACTIONS(1747), - [anon_sym__Atomic] = ACTIONS(1747), - [anon_sym_mutable] = ACTIONS(1747), - [anon_sym_constexpr] = ACTIONS(1747), - [anon_sym_signed] = ACTIONS(1747), - [anon_sym_unsigned] = ACTIONS(1747), - [anon_sym_long] = ACTIONS(1747), - [anon_sym_short] = ACTIONS(1747), - [sym_primitive_type] = ACTIONS(1747), - [anon_sym_enum] = ACTIONS(1747), - [anon_sym_class] = ACTIONS(1747), - [anon_sym_struct] = ACTIONS(1747), - [anon_sym_union] = ACTIONS(1747), - [anon_sym_if] = ACTIONS(1747), - [anon_sym_switch] = ACTIONS(1747), - [anon_sym_case] = ACTIONS(1747), - [anon_sym_default] = ACTIONS(1747), - [anon_sym_while] = ACTIONS(1747), - [anon_sym_do] = ACTIONS(1747), - [anon_sym_for] = ACTIONS(1747), - [anon_sym_return] = ACTIONS(1747), - [anon_sym_break] = ACTIONS(1747), - [anon_sym_continue] = ACTIONS(1747), - [anon_sym_goto] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_sizeof] = ACTIONS(1747), - [sym_number_literal] = ACTIONS(1749), - [anon_sym_L_SQUOTE] = ACTIONS(1749), - [anon_sym_u_SQUOTE] = ACTIONS(1749), - [anon_sym_U_SQUOTE] = ACTIONS(1749), - [anon_sym_u8_SQUOTE] = ACTIONS(1749), - [anon_sym_SQUOTE] = ACTIONS(1749), - [anon_sym_L_DQUOTE] = ACTIONS(1749), - [anon_sym_u_DQUOTE] = ACTIONS(1749), - [anon_sym_U_DQUOTE] = ACTIONS(1749), - [anon_sym_u8_DQUOTE] = ACTIONS(1749), - [anon_sym_DQUOTE] = ACTIONS(1749), - [sym_true] = ACTIONS(1747), - [sym_false] = ACTIONS(1747), - [sym_null] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1747), - [anon_sym_virtual] = ACTIONS(1747), - [anon_sym_explicit] = ACTIONS(1747), - [sym_auto] = ACTIONS(1747), - [anon_sym_typename] = ACTIONS(1747), - [anon_sym_template] = ACTIONS(1747), - [anon_sym_operator] = ACTIONS(1747), - [anon_sym_delete] = ACTIONS(1747), - [anon_sym_throw] = ACTIONS(1747), - [anon_sym_namespace] = ACTIONS(1747), - [anon_sym_using] = ACTIONS(1747), - [anon_sym_static_assert] = ACTIONS(1747), - [anon_sym_co_return] = ACTIONS(1747), - [anon_sym_co_yield] = ACTIONS(1747), - [anon_sym_try] = ACTIONS(1747), - [anon_sym_co_await] = ACTIONS(1747), - [anon_sym_new] = ACTIONS(1747), - [sym_this] = ACTIONS(1747), - [sym_nullptr] = ACTIONS(1747), - [sym_alone_macro] = ACTIONS(1749), - [aux_sym_alone_macro_call_token1] = ACTIONS(1747), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1747), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_FORWARD] = ACTIONS(1747), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1747), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1747), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1747), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1747), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_PS_GET] = ACTIONS(1747), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1747), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1747), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1747), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1747), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1747), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1747), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1747), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1747), - [anon_sym_MOZ_COLD] = ACTIONS(1747), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1747), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1747), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1747), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1747), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1747), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1747), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1747), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1747), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1747), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1747), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1747), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1747), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1747), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_NONNULL] = ACTIONS(1747), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1747), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1747), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1747), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1747), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1747), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1747), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1747), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1747), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1747), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1747), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1747), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1747), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1747), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1747), - [anon_sym_MOZ_RAII] = ACTIONS(1747), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1747), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1747), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1747), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1747), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1747), - [sym_raw_string_literal] = ACTIONS(1749), - }, - [618] = { - [sym_identifier] = ACTIONS(1739), - [aux_sym_preproc_include_token1] = ACTIONS(1739), - [aux_sym_preproc_def_token1] = ACTIONS(1739), - [aux_sym_preproc_if_token1] = ACTIONS(1739), - [aux_sym_preproc_if_token2] = ACTIONS(1739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1739), - [sym_preproc_directive] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_typedef] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym___attribute__] = ACTIONS(1739), - [anon_sym_COLON_COLON] = ACTIONS(1741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1741), - [anon_sym___declspec] = ACTIONS(1739), - [anon_sym___based] = ACTIONS(1739), - [anon_sym___cdecl] = ACTIONS(1739), - [anon_sym___clrcall] = ACTIONS(1739), - [anon_sym___stdcall] = ACTIONS(1739), - [anon_sym___fastcall] = ACTIONS(1739), - [anon_sym___thiscall] = ACTIONS(1739), - [anon_sym___vectorcall] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_static] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_inline] = ACTIONS(1739), - [anon_sym_thread_local] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [anon_sym_volatile] = ACTIONS(1739), - [anon_sym_restrict] = ACTIONS(1739), - [anon_sym__Atomic] = ACTIONS(1739), - [anon_sym_mutable] = ACTIONS(1739), - [anon_sym_constexpr] = ACTIONS(1739), - [anon_sym_signed] = ACTIONS(1739), - [anon_sym_unsigned] = ACTIONS(1739), - [anon_sym_long] = ACTIONS(1739), - [anon_sym_short] = ACTIONS(1739), - [sym_primitive_type] = ACTIONS(1739), - [anon_sym_enum] = ACTIONS(1739), - [anon_sym_class] = ACTIONS(1739), - [anon_sym_struct] = ACTIONS(1739), - [anon_sym_union] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_switch] = ACTIONS(1739), - [anon_sym_case] = ACTIONS(1739), - [anon_sym_default] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_goto] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_sizeof] = ACTIONS(1739), - [sym_number_literal] = ACTIONS(1741), - [anon_sym_L_SQUOTE] = ACTIONS(1741), - [anon_sym_u_SQUOTE] = ACTIONS(1741), - [anon_sym_U_SQUOTE] = ACTIONS(1741), - [anon_sym_u8_SQUOTE] = ACTIONS(1741), - [anon_sym_SQUOTE] = ACTIONS(1741), - [anon_sym_L_DQUOTE] = ACTIONS(1741), - [anon_sym_u_DQUOTE] = ACTIONS(1741), - [anon_sym_U_DQUOTE] = ACTIONS(1741), - [anon_sym_u8_DQUOTE] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym_true] = ACTIONS(1739), - [sym_false] = ACTIONS(1739), - [sym_null] = ACTIONS(1739), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1739), - [anon_sym_virtual] = ACTIONS(1739), - [anon_sym_explicit] = ACTIONS(1739), - [sym_auto] = ACTIONS(1739), - [anon_sym_typename] = ACTIONS(1739), - [anon_sym_template] = ACTIONS(1739), - [anon_sym_operator] = ACTIONS(1739), - [anon_sym_delete] = ACTIONS(1739), - [anon_sym_throw] = ACTIONS(1739), - [anon_sym_namespace] = ACTIONS(1739), - [anon_sym_using] = ACTIONS(1739), - [anon_sym_static_assert] = ACTIONS(1739), - [anon_sym_co_return] = ACTIONS(1739), - [anon_sym_co_yield] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_co_await] = ACTIONS(1739), - [anon_sym_new] = ACTIONS(1739), - [sym_this] = ACTIONS(1739), - [sym_nullptr] = ACTIONS(1739), - [sym_alone_macro] = ACTIONS(1741), - [aux_sym_alone_macro_call_token1] = ACTIONS(1739), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1739), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_FORWARD] = ACTIONS(1739), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1739), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1739), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1739), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1739), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_PS_GET] = ACTIONS(1739), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1739), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1739), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1739), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1739), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1739), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1739), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1739), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1739), - [anon_sym_MOZ_COLD] = ACTIONS(1739), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1739), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1739), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1739), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1739), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1739), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1739), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1739), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1739), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1739), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1739), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1739), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1739), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1739), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_NONNULL] = ACTIONS(1739), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1739), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1739), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1739), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1739), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1739), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1739), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1739), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1739), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1739), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1739), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1739), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1739), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1739), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1739), - [anon_sym_MOZ_RAII] = ACTIONS(1739), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1739), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1739), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1739), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1739), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1739), - [sym_raw_string_literal] = ACTIONS(1741), - }, - [619] = { - [ts_builtin_sym_end] = ACTIONS(1793), - [sym_identifier] = ACTIONS(1791), - [aux_sym_preproc_include_token1] = ACTIONS(1791), - [aux_sym_preproc_def_token1] = ACTIONS(1791), - [aux_sym_preproc_if_token1] = ACTIONS(1791), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1791), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1791), - [sym_preproc_directive] = ACTIONS(1791), - [anon_sym_LPAREN2] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1793), - [anon_sym_TILDE] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_AMP_AMP] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_SEMI] = ACTIONS(1793), - [anon_sym_typedef] = ACTIONS(1791), - [anon_sym_extern] = ACTIONS(1791), - [anon_sym___attribute__] = ACTIONS(1791), - [anon_sym_COLON_COLON] = ACTIONS(1793), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1793), - [anon_sym___declspec] = ACTIONS(1791), - [anon_sym___based] = ACTIONS(1791), - [anon_sym___cdecl] = ACTIONS(1791), - [anon_sym___clrcall] = ACTIONS(1791), - [anon_sym___stdcall] = ACTIONS(1791), - [anon_sym___fastcall] = ACTIONS(1791), - [anon_sym___thiscall] = ACTIONS(1791), - [anon_sym___vectorcall] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_LBRACK] = ACTIONS(1791), - [anon_sym_static] = ACTIONS(1791), - [anon_sym_register] = ACTIONS(1791), - [anon_sym_inline] = ACTIONS(1791), - [anon_sym_thread_local] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_volatile] = ACTIONS(1791), - [anon_sym_restrict] = ACTIONS(1791), - [anon_sym__Atomic] = ACTIONS(1791), - [anon_sym_mutable] = ACTIONS(1791), - [anon_sym_constexpr] = ACTIONS(1791), - [anon_sym_signed] = ACTIONS(1791), - [anon_sym_unsigned] = ACTIONS(1791), - [anon_sym_long] = ACTIONS(1791), - [anon_sym_short] = ACTIONS(1791), - [sym_primitive_type] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_class] = ACTIONS(1791), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_union] = ACTIONS(1791), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_switch] = ACTIONS(1791), - [anon_sym_case] = ACTIONS(1791), - [anon_sym_default] = ACTIONS(1791), - [anon_sym_while] = ACTIONS(1791), - [anon_sym_do] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_goto] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1793), - [anon_sym_PLUS_PLUS] = ACTIONS(1793), - [anon_sym_sizeof] = ACTIONS(1791), - [sym_number_literal] = ACTIONS(1793), - [anon_sym_L_SQUOTE] = ACTIONS(1793), - [anon_sym_u_SQUOTE] = ACTIONS(1793), - [anon_sym_U_SQUOTE] = ACTIONS(1793), - [anon_sym_u8_SQUOTE] = ACTIONS(1793), - [anon_sym_SQUOTE] = ACTIONS(1793), - [anon_sym_L_DQUOTE] = ACTIONS(1793), - [anon_sym_u_DQUOTE] = ACTIONS(1793), - [anon_sym_U_DQUOTE] = ACTIONS(1793), - [anon_sym_u8_DQUOTE] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1793), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_null] = ACTIONS(1791), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1791), - [anon_sym_virtual] = ACTIONS(1791), - [anon_sym_explicit] = ACTIONS(1791), - [sym_auto] = ACTIONS(1791), - [anon_sym_typename] = ACTIONS(1791), - [anon_sym_template] = ACTIONS(1791), - [anon_sym_operator] = ACTIONS(1791), - [anon_sym_delete] = ACTIONS(1791), - [anon_sym_throw] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1791), - [anon_sym_using] = ACTIONS(1791), - [anon_sym_static_assert] = ACTIONS(1791), - [anon_sym_co_return] = ACTIONS(1791), - [anon_sym_co_yield] = ACTIONS(1791), - [anon_sym_try] = ACTIONS(1791), - [anon_sym_co_await] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1791), - [sym_this] = ACTIONS(1791), - [sym_nullptr] = ACTIONS(1791), - [sym_alone_macro] = ACTIONS(1793), - [aux_sym_alone_macro_call_token1] = ACTIONS(1791), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1791), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_FORWARD] = ACTIONS(1791), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1791), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1791), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1791), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1791), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_PS_GET] = ACTIONS(1791), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1791), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1791), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1791), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1791), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1791), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1791), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1791), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1791), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1791), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1791), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1791), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1791), - [anon_sym_MOZ_COLD] = ACTIONS(1791), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1791), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1791), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1791), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1791), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1791), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1791), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1791), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1791), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1791), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1791), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1791), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1791), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1791), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1791), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1791), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1791), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1791), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1791), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1791), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1791), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1791), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_NONNULL] = ACTIONS(1791), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1791), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1791), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1791), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1791), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1791), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_NORETURN] = ACTIONS(1791), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1791), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1791), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1791), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1791), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1791), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1791), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1791), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1791), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1791), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1791), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1791), - [anon_sym_MOZ_RAII] = ACTIONS(1791), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1791), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1791), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1791), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1791), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1791), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1791), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1791), - [sym_raw_string_literal] = ACTIONS(1793), - }, - [620] = { - [ts_builtin_sym_end] = ACTIONS(1797), - [sym_identifier] = ACTIONS(1795), - [aux_sym_preproc_include_token1] = ACTIONS(1795), - [aux_sym_preproc_def_token1] = ACTIONS(1795), - [aux_sym_preproc_if_token1] = ACTIONS(1795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1795), - [sym_preproc_directive] = ACTIONS(1795), - [anon_sym_LPAREN2] = ACTIONS(1797), - [anon_sym_BANG] = ACTIONS(1797), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1795), - [anon_sym_PLUS] = ACTIONS(1795), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_AMP_AMP] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1797), - [anon_sym_typedef] = ACTIONS(1795), - [anon_sym_extern] = ACTIONS(1795), - [anon_sym___attribute__] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1797), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1797), - [anon_sym___declspec] = ACTIONS(1795), - [anon_sym___based] = ACTIONS(1795), - [anon_sym___cdecl] = ACTIONS(1795), - [anon_sym___clrcall] = ACTIONS(1795), - [anon_sym___stdcall] = ACTIONS(1795), - [anon_sym___fastcall] = ACTIONS(1795), - [anon_sym___thiscall] = ACTIONS(1795), - [anon_sym___vectorcall] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_static] = ACTIONS(1795), - [anon_sym_register] = ACTIONS(1795), - [anon_sym_inline] = ACTIONS(1795), - [anon_sym_thread_local] = ACTIONS(1795), - [anon_sym_const] = ACTIONS(1795), - [anon_sym_volatile] = ACTIONS(1795), - [anon_sym_restrict] = ACTIONS(1795), - [anon_sym__Atomic] = ACTIONS(1795), - [anon_sym_mutable] = ACTIONS(1795), - [anon_sym_constexpr] = ACTIONS(1795), - [anon_sym_signed] = ACTIONS(1795), - [anon_sym_unsigned] = ACTIONS(1795), - [anon_sym_long] = ACTIONS(1795), - [anon_sym_short] = ACTIONS(1795), - [sym_primitive_type] = ACTIONS(1795), - [anon_sym_enum] = ACTIONS(1795), - [anon_sym_class] = ACTIONS(1795), - [anon_sym_struct] = ACTIONS(1795), - [anon_sym_union] = ACTIONS(1795), - [anon_sym_if] = ACTIONS(1795), - [anon_sym_switch] = ACTIONS(1795), - [anon_sym_case] = ACTIONS(1795), - [anon_sym_default] = ACTIONS(1795), - [anon_sym_while] = ACTIONS(1795), - [anon_sym_do] = ACTIONS(1795), - [anon_sym_for] = ACTIONS(1795), - [anon_sym_return] = ACTIONS(1795), - [anon_sym_break] = ACTIONS(1795), - [anon_sym_continue] = ACTIONS(1795), - [anon_sym_goto] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1797), - [anon_sym_PLUS_PLUS] = ACTIONS(1797), - [anon_sym_sizeof] = ACTIONS(1795), - [sym_number_literal] = ACTIONS(1797), - [anon_sym_L_SQUOTE] = ACTIONS(1797), - [anon_sym_u_SQUOTE] = ACTIONS(1797), - [anon_sym_U_SQUOTE] = ACTIONS(1797), - [anon_sym_u8_SQUOTE] = ACTIONS(1797), - [anon_sym_SQUOTE] = ACTIONS(1797), - [anon_sym_L_DQUOTE] = ACTIONS(1797), - [anon_sym_u_DQUOTE] = ACTIONS(1797), - [anon_sym_U_DQUOTE] = ACTIONS(1797), - [anon_sym_u8_DQUOTE] = ACTIONS(1797), - [anon_sym_DQUOTE] = ACTIONS(1797), - [sym_true] = ACTIONS(1795), - [sym_false] = ACTIONS(1795), - [sym_null] = ACTIONS(1795), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1795), - [anon_sym_virtual] = ACTIONS(1795), - [anon_sym_explicit] = ACTIONS(1795), - [sym_auto] = ACTIONS(1795), - [anon_sym_typename] = ACTIONS(1795), - [anon_sym_template] = ACTIONS(1795), - [anon_sym_operator] = ACTIONS(1795), - [anon_sym_delete] = ACTIONS(1795), - [anon_sym_throw] = ACTIONS(1795), - [anon_sym_namespace] = ACTIONS(1795), - [anon_sym_using] = ACTIONS(1795), - [anon_sym_static_assert] = ACTIONS(1795), - [anon_sym_co_return] = ACTIONS(1795), - [anon_sym_co_yield] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1795), - [anon_sym_co_await] = ACTIONS(1795), - [anon_sym_new] = ACTIONS(1795), - [sym_this] = ACTIONS(1795), - [sym_nullptr] = ACTIONS(1795), - [sym_alone_macro] = ACTIONS(1797), - [aux_sym_alone_macro_call_token1] = ACTIONS(1795), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1795), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_FORWARD] = ACTIONS(1795), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1795), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1795), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1795), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1795), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_PS_GET] = ACTIONS(1795), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1795), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1795), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1795), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1795), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1795), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1795), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1795), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1795), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1795), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1795), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1795), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1795), - [anon_sym_MOZ_COLD] = ACTIONS(1795), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1795), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1795), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1795), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1795), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1795), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1795), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1795), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1795), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1795), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1795), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1795), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1795), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1795), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1795), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1795), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1795), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1795), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1795), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1795), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1795), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1795), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_NONNULL] = ACTIONS(1795), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1795), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1795), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1795), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1795), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1795), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_NORETURN] = ACTIONS(1795), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1795), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1795), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1795), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1795), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1795), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1795), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1795), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1795), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1795), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1795), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1795), - [anon_sym_MOZ_RAII] = ACTIONS(1795), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1795), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1795), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1795), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1795), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1795), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1795), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1795), - [sym_raw_string_literal] = ACTIONS(1797), - }, - [621] = { - [ts_builtin_sym_end] = ACTIONS(1801), - [sym_identifier] = ACTIONS(1799), - [aux_sym_preproc_include_token1] = ACTIONS(1799), - [aux_sym_preproc_def_token1] = ACTIONS(1799), - [aux_sym_preproc_if_token1] = ACTIONS(1799), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1799), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1799), - [sym_preproc_directive] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_typedef] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym___attribute__] = ACTIONS(1799), - [anon_sym_COLON_COLON] = ACTIONS(1801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1801), - [anon_sym___declspec] = ACTIONS(1799), - [anon_sym___based] = ACTIONS(1799), - [anon_sym___cdecl] = ACTIONS(1799), - [anon_sym___clrcall] = ACTIONS(1799), - [anon_sym___stdcall] = ACTIONS(1799), - [anon_sym___fastcall] = ACTIONS(1799), - [anon_sym___thiscall] = ACTIONS(1799), - [anon_sym___vectorcall] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_inline] = ACTIONS(1799), - [anon_sym_thread_local] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_volatile] = ACTIONS(1799), - [anon_sym_restrict] = ACTIONS(1799), - [anon_sym__Atomic] = ACTIONS(1799), - [anon_sym_mutable] = ACTIONS(1799), - [anon_sym_constexpr] = ACTIONS(1799), - [anon_sym_signed] = ACTIONS(1799), - [anon_sym_unsigned] = ACTIONS(1799), - [anon_sym_long] = ACTIONS(1799), - [anon_sym_short] = ACTIONS(1799), - [sym_primitive_type] = ACTIONS(1799), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_class] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1799), - [anon_sym_union] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_switch] = ACTIONS(1799), - [anon_sym_case] = ACTIONS(1799), - [anon_sym_default] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_goto] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1799), - [sym_number_literal] = ACTIONS(1801), - [anon_sym_L_SQUOTE] = ACTIONS(1801), - [anon_sym_u_SQUOTE] = ACTIONS(1801), - [anon_sym_U_SQUOTE] = ACTIONS(1801), - [anon_sym_u8_SQUOTE] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(1801), - [anon_sym_L_DQUOTE] = ACTIONS(1801), - [anon_sym_u_DQUOTE] = ACTIONS(1801), - [anon_sym_U_DQUOTE] = ACTIONS(1801), - [anon_sym_u8_DQUOTE] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym_true] = ACTIONS(1799), - [sym_false] = ACTIONS(1799), - [sym_null] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1799), - [anon_sym_virtual] = ACTIONS(1799), - [anon_sym_explicit] = ACTIONS(1799), - [sym_auto] = ACTIONS(1799), - [anon_sym_typename] = ACTIONS(1799), - [anon_sym_template] = ACTIONS(1799), - [anon_sym_operator] = ACTIONS(1799), - [anon_sym_delete] = ACTIONS(1799), - [anon_sym_throw] = ACTIONS(1799), - [anon_sym_namespace] = ACTIONS(1799), - [anon_sym_using] = ACTIONS(1799), - [anon_sym_static_assert] = ACTIONS(1799), - [anon_sym_co_return] = ACTIONS(1799), - [anon_sym_co_yield] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_co_await] = ACTIONS(1799), - [anon_sym_new] = ACTIONS(1799), - [sym_this] = ACTIONS(1799), - [sym_nullptr] = ACTIONS(1799), - [sym_alone_macro] = ACTIONS(1801), - [aux_sym_alone_macro_call_token1] = ACTIONS(1799), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1799), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_FORWARD] = ACTIONS(1799), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1799), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1799), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1799), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1799), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_PS_GET] = ACTIONS(1799), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1799), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1799), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1799), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1799), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1799), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1799), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1799), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1799), - [anon_sym_MOZ_COLD] = ACTIONS(1799), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1799), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1799), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1799), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1799), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1799), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1799), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1799), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1799), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1799), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1799), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1799), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1799), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1799), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_NONNULL] = ACTIONS(1799), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1799), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1799), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1799), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1799), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1799), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1799), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1799), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1799), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1799), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1799), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1799), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1799), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1799), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1799), - [anon_sym_MOZ_RAII] = ACTIONS(1799), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1799), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1799), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1799), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1799), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1799), - [sym_raw_string_literal] = ACTIONS(1801), - }, - [622] = { - [ts_builtin_sym_end] = ACTIONS(1849), - [sym_identifier] = ACTIONS(1847), - [aux_sym_preproc_include_token1] = ACTIONS(1847), - [aux_sym_preproc_def_token1] = ACTIONS(1847), - [aux_sym_preproc_if_token1] = ACTIONS(1847), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), - [sym_preproc_directive] = ACTIONS(1847), - [anon_sym_LPAREN2] = ACTIONS(1849), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_AMP_AMP] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_typedef] = ACTIONS(1847), - [anon_sym_extern] = ACTIONS(1847), - [anon_sym___attribute__] = ACTIONS(1847), - [anon_sym_COLON_COLON] = ACTIONS(1849), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1849), - [anon_sym___declspec] = ACTIONS(1847), - [anon_sym___based] = ACTIONS(1847), - [anon_sym___cdecl] = ACTIONS(1847), - [anon_sym___clrcall] = ACTIONS(1847), - [anon_sym___stdcall] = ACTIONS(1847), - [anon_sym___fastcall] = ACTIONS(1847), - [anon_sym___thiscall] = ACTIONS(1847), - [anon_sym___vectorcall] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_register] = ACTIONS(1847), - [anon_sym_inline] = ACTIONS(1847), - [anon_sym_thread_local] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym_constexpr] = ACTIONS(1847), - [anon_sym_signed] = ACTIONS(1847), - [anon_sym_unsigned] = ACTIONS(1847), - [anon_sym_long] = ACTIONS(1847), - [anon_sym_short] = ACTIONS(1847), - [sym_primitive_type] = ACTIONS(1847), - [anon_sym_enum] = ACTIONS(1847), - [anon_sym_class] = ACTIONS(1847), - [anon_sym_struct] = ACTIONS(1847), - [anon_sym_union] = ACTIONS(1847), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1847), - [anon_sym_case] = ACTIONS(1847), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1847), - [anon_sym_do] = ACTIONS(1847), - [anon_sym_for] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1847), - [anon_sym_break] = ACTIONS(1847), - [anon_sym_continue] = ACTIONS(1847), - [anon_sym_goto] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_sizeof] = ACTIONS(1847), - [sym_number_literal] = ACTIONS(1849), - [anon_sym_L_SQUOTE] = ACTIONS(1849), - [anon_sym_u_SQUOTE] = ACTIONS(1849), - [anon_sym_U_SQUOTE] = ACTIONS(1849), - [anon_sym_u8_SQUOTE] = ACTIONS(1849), - [anon_sym_SQUOTE] = ACTIONS(1849), - [anon_sym_L_DQUOTE] = ACTIONS(1849), - [anon_sym_u_DQUOTE] = ACTIONS(1849), - [anon_sym_U_DQUOTE] = ACTIONS(1849), - [anon_sym_u8_DQUOTE] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1849), - [sym_true] = ACTIONS(1847), - [sym_false] = ACTIONS(1847), - [sym_null] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1847), - [anon_sym_virtual] = ACTIONS(1847), - [anon_sym_explicit] = ACTIONS(1847), - [sym_auto] = ACTIONS(1847), - [anon_sym_typename] = ACTIONS(1847), - [anon_sym_template] = ACTIONS(1847), - [anon_sym_operator] = ACTIONS(1847), - [anon_sym_delete] = ACTIONS(1847), - [anon_sym_throw] = ACTIONS(1847), - [anon_sym_namespace] = ACTIONS(1847), - [anon_sym_using] = ACTIONS(1847), - [anon_sym_static_assert] = ACTIONS(1847), - [anon_sym_co_return] = ACTIONS(1847), - [anon_sym_co_yield] = ACTIONS(1847), - [anon_sym_try] = ACTIONS(1847), - [anon_sym_co_await] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [sym_this] = ACTIONS(1847), - [sym_nullptr] = ACTIONS(1847), - [sym_alone_macro] = ACTIONS(1849), - [aux_sym_alone_macro_call_token1] = ACTIONS(1847), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1847), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_FORWARD] = ACTIONS(1847), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1847), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1847), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1847), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1847), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_PS_GET] = ACTIONS(1847), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1847), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1847), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1847), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1847), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1847), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1847), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1847), - [anon_sym_MOZ_COLD] = ACTIONS(1847), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1847), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1847), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1847), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1847), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1847), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1847), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1847), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1847), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1847), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1847), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1847), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1847), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1847), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_NONNULL] = ACTIONS(1847), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1847), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1847), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1847), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1847), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1847), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1847), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1847), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1847), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1847), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1847), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1847), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1847), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1847), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1847), - [anon_sym_MOZ_RAII] = ACTIONS(1847), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1847), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1847), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1847), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1847), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1847), - [sym_raw_string_literal] = ACTIONS(1849), - }, - [623] = { - [ts_builtin_sym_end] = ACTIONS(1845), - [sym_identifier] = ACTIONS(1843), - [aux_sym_preproc_include_token1] = ACTIONS(1843), - [aux_sym_preproc_def_token1] = ACTIONS(1843), - [aux_sym_preproc_if_token1] = ACTIONS(1843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1843), - [sym_preproc_directive] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1845), - [anon_sym_typedef] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym___attribute__] = ACTIONS(1843), - [anon_sym_COLON_COLON] = ACTIONS(1845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1845), - [anon_sym___declspec] = ACTIONS(1843), - [anon_sym___based] = ACTIONS(1843), - [anon_sym___cdecl] = ACTIONS(1843), - [anon_sym___clrcall] = ACTIONS(1843), - [anon_sym___stdcall] = ACTIONS(1843), - [anon_sym___fastcall] = ACTIONS(1843), - [anon_sym___thiscall] = ACTIONS(1843), - [anon_sym___vectorcall] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_static] = ACTIONS(1843), - [anon_sym_register] = ACTIONS(1843), - [anon_sym_inline] = ACTIONS(1843), - [anon_sym_thread_local] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym_mutable] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_signed] = ACTIONS(1843), - [anon_sym_unsigned] = ACTIONS(1843), - [anon_sym_long] = ACTIONS(1843), - [anon_sym_short] = ACTIONS(1843), - [sym_primitive_type] = ACTIONS(1843), - [anon_sym_enum] = ACTIONS(1843), - [anon_sym_class] = ACTIONS(1843), - [anon_sym_struct] = ACTIONS(1843), - [anon_sym_union] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_switch] = ACTIONS(1843), - [anon_sym_case] = ACTIONS(1843), - [anon_sym_default] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_do] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_goto] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_sizeof] = ACTIONS(1843), - [sym_number_literal] = ACTIONS(1845), - [anon_sym_L_SQUOTE] = ACTIONS(1845), - [anon_sym_u_SQUOTE] = ACTIONS(1845), - [anon_sym_U_SQUOTE] = ACTIONS(1845), - [anon_sym_u8_SQUOTE] = ACTIONS(1845), - [anon_sym_SQUOTE] = ACTIONS(1845), - [anon_sym_L_DQUOTE] = ACTIONS(1845), - [anon_sym_u_DQUOTE] = ACTIONS(1845), - [anon_sym_U_DQUOTE] = ACTIONS(1845), - [anon_sym_u8_DQUOTE] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(1845), - [sym_true] = ACTIONS(1843), - [sym_false] = ACTIONS(1843), - [sym_null] = ACTIONS(1843), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1843), - [anon_sym_virtual] = ACTIONS(1843), - [anon_sym_explicit] = ACTIONS(1843), - [sym_auto] = ACTIONS(1843), - [anon_sym_typename] = ACTIONS(1843), - [anon_sym_template] = ACTIONS(1843), - [anon_sym_operator] = ACTIONS(1843), - [anon_sym_delete] = ACTIONS(1843), - [anon_sym_throw] = ACTIONS(1843), - [anon_sym_namespace] = ACTIONS(1843), - [anon_sym_using] = ACTIONS(1843), - [anon_sym_static_assert] = ACTIONS(1843), - [anon_sym_co_return] = ACTIONS(1843), - [anon_sym_co_yield] = ACTIONS(1843), - [anon_sym_try] = ACTIONS(1843), - [anon_sym_co_await] = ACTIONS(1843), - [anon_sym_new] = ACTIONS(1843), - [sym_this] = ACTIONS(1843), - [sym_nullptr] = ACTIONS(1843), - [sym_alone_macro] = ACTIONS(1845), - [aux_sym_alone_macro_call_token1] = ACTIONS(1843), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1843), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_FORWARD] = ACTIONS(1843), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1843), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1843), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1843), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1843), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_PS_GET] = ACTIONS(1843), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1843), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1843), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1843), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1843), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1843), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1843), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1843), - [anon_sym_MOZ_COLD] = ACTIONS(1843), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1843), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1843), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1843), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1843), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1843), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1843), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1843), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1843), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1843), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1843), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1843), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1843), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1843), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_NONNULL] = ACTIONS(1843), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1843), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1843), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1843), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1843), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1843), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1843), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1843), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1843), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1843), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1843), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1843), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1843), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1843), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1843), - [anon_sym_MOZ_RAII] = ACTIONS(1843), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1843), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1843), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1843), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1843), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1843), - [sym_raw_string_literal] = ACTIONS(1845), - }, - [624] = { - [ts_builtin_sym_end] = ACTIONS(1841), - [sym_identifier] = ACTIONS(1839), - [aux_sym_preproc_include_token1] = ACTIONS(1839), - [aux_sym_preproc_def_token1] = ACTIONS(1839), - [aux_sym_preproc_if_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [sym_preproc_directive] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_TILDE] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_AMP_AMP] = ACTIONS(1841), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_typedef] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym___attribute__] = ACTIONS(1839), - [anon_sym_COLON_COLON] = ACTIONS(1841), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1841), - [anon_sym___declspec] = ACTIONS(1839), - [anon_sym___based] = ACTIONS(1839), - [anon_sym___cdecl] = ACTIONS(1839), - [anon_sym___clrcall] = ACTIONS(1839), - [anon_sym___stdcall] = ACTIONS(1839), - [anon_sym___fastcall] = ACTIONS(1839), - [anon_sym___thiscall] = ACTIONS(1839), - [anon_sym___vectorcall] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_static] = ACTIONS(1839), - [anon_sym_register] = ACTIONS(1839), - [anon_sym_inline] = ACTIONS(1839), - [anon_sym_thread_local] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [anon_sym_volatile] = ACTIONS(1839), - [anon_sym_restrict] = ACTIONS(1839), - [anon_sym__Atomic] = ACTIONS(1839), - [anon_sym_mutable] = ACTIONS(1839), - [anon_sym_constexpr] = ACTIONS(1839), - [anon_sym_signed] = ACTIONS(1839), - [anon_sym_unsigned] = ACTIONS(1839), - [anon_sym_long] = ACTIONS(1839), - [anon_sym_short] = ACTIONS(1839), - [sym_primitive_type] = ACTIONS(1839), - [anon_sym_enum] = ACTIONS(1839), - [anon_sym_class] = ACTIONS(1839), - [anon_sym_struct] = ACTIONS(1839), - [anon_sym_union] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_switch] = ACTIONS(1839), - [anon_sym_case] = ACTIONS(1839), - [anon_sym_default] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_goto] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1841), - [anon_sym_PLUS_PLUS] = ACTIONS(1841), - [anon_sym_sizeof] = ACTIONS(1839), - [sym_number_literal] = ACTIONS(1841), - [anon_sym_L_SQUOTE] = ACTIONS(1841), - [anon_sym_u_SQUOTE] = ACTIONS(1841), - [anon_sym_U_SQUOTE] = ACTIONS(1841), - [anon_sym_u8_SQUOTE] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_L_DQUOTE] = ACTIONS(1841), - [anon_sym_u_DQUOTE] = ACTIONS(1841), - [anon_sym_U_DQUOTE] = ACTIONS(1841), - [anon_sym_u8_DQUOTE] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1841), - [sym_true] = ACTIONS(1839), - [sym_false] = ACTIONS(1839), - [sym_null] = ACTIONS(1839), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1839), - [anon_sym_virtual] = ACTIONS(1839), - [anon_sym_explicit] = ACTIONS(1839), - [sym_auto] = ACTIONS(1839), - [anon_sym_typename] = ACTIONS(1839), - [anon_sym_template] = ACTIONS(1839), - [anon_sym_operator] = ACTIONS(1839), - [anon_sym_delete] = ACTIONS(1839), - [anon_sym_throw] = ACTIONS(1839), - [anon_sym_namespace] = ACTIONS(1839), - [anon_sym_using] = ACTIONS(1839), - [anon_sym_static_assert] = ACTIONS(1839), - [anon_sym_co_return] = ACTIONS(1839), - [anon_sym_co_yield] = ACTIONS(1839), - [anon_sym_try] = ACTIONS(1839), - [anon_sym_co_await] = ACTIONS(1839), - [anon_sym_new] = ACTIONS(1839), - [sym_this] = ACTIONS(1839), - [sym_nullptr] = ACTIONS(1839), - [sym_alone_macro] = ACTIONS(1841), - [aux_sym_alone_macro_call_token1] = ACTIONS(1839), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1839), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_FORWARD] = ACTIONS(1839), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1839), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1839), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1839), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1839), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_PS_GET] = ACTIONS(1839), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1839), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1839), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1839), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1839), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1839), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1839), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1839), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1839), - [anon_sym_MOZ_COLD] = ACTIONS(1839), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1839), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1839), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1839), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1839), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1839), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1839), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1839), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1839), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1839), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1839), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1839), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1839), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1839), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_NONNULL] = ACTIONS(1839), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1839), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1839), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1839), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1839), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1839), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1839), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1839), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1839), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1839), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1839), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1839), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1839), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1839), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1839), - [anon_sym_MOZ_RAII] = ACTIONS(1839), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1839), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1839), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1839), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1839), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1839), - [sym_raw_string_literal] = ACTIONS(1841), - }, - [625] = { - [sym_identifier] = ACTIONS(1731), - [aux_sym_preproc_include_token1] = ACTIONS(1731), - [aux_sym_preproc_def_token1] = ACTIONS(1731), - [aux_sym_preproc_if_token1] = ACTIONS(1731), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1731), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1731), - [sym_preproc_directive] = ACTIONS(1731), - [anon_sym_LPAREN2] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_AMP_AMP] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_typedef] = ACTIONS(1731), - [anon_sym_extern] = ACTIONS(1731), - [anon_sym___attribute__] = ACTIONS(1731), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1733), - [anon_sym___declspec] = ACTIONS(1731), - [anon_sym___based] = ACTIONS(1731), - [anon_sym___cdecl] = ACTIONS(1731), - [anon_sym___clrcall] = ACTIONS(1731), - [anon_sym___stdcall] = ACTIONS(1731), - [anon_sym___fastcall] = ACTIONS(1731), - [anon_sym___thiscall] = ACTIONS(1731), - [anon_sym___vectorcall] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_static] = ACTIONS(1731), - [anon_sym_register] = ACTIONS(1731), - [anon_sym_inline] = ACTIONS(1731), - [anon_sym_thread_local] = ACTIONS(1731), - [anon_sym_const] = ACTIONS(1731), - [anon_sym_volatile] = ACTIONS(1731), - [anon_sym_restrict] = ACTIONS(1731), - [anon_sym__Atomic] = ACTIONS(1731), - [anon_sym_mutable] = ACTIONS(1731), - [anon_sym_constexpr] = ACTIONS(1731), - [anon_sym_signed] = ACTIONS(1731), - [anon_sym_unsigned] = ACTIONS(1731), - [anon_sym_long] = ACTIONS(1731), - [anon_sym_short] = ACTIONS(1731), - [sym_primitive_type] = ACTIONS(1731), - [anon_sym_enum] = ACTIONS(1731), - [anon_sym_class] = ACTIONS(1731), - [anon_sym_struct] = ACTIONS(1731), - [anon_sym_union] = ACTIONS(1731), - [anon_sym_if] = ACTIONS(1731), - [anon_sym_switch] = ACTIONS(1731), - [anon_sym_case] = ACTIONS(1731), - [anon_sym_default] = ACTIONS(1731), - [anon_sym_while] = ACTIONS(1731), - [anon_sym_do] = ACTIONS(1731), - [anon_sym_for] = ACTIONS(1731), - [anon_sym_return] = ACTIONS(1731), - [anon_sym_break] = ACTIONS(1731), - [anon_sym_continue] = ACTIONS(1731), - [anon_sym_goto] = ACTIONS(1731), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_sizeof] = ACTIONS(1731), - [sym_number_literal] = ACTIONS(1733), - [anon_sym_L_SQUOTE] = ACTIONS(1733), - [anon_sym_u_SQUOTE] = ACTIONS(1733), - [anon_sym_U_SQUOTE] = ACTIONS(1733), - [anon_sym_u8_SQUOTE] = ACTIONS(1733), - [anon_sym_SQUOTE] = ACTIONS(1733), - [anon_sym_L_DQUOTE] = ACTIONS(1733), - [anon_sym_u_DQUOTE] = ACTIONS(1733), - [anon_sym_U_DQUOTE] = ACTIONS(1733), - [anon_sym_u8_DQUOTE] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1733), - [sym_true] = ACTIONS(1731), - [sym_false] = ACTIONS(1731), - [sym_null] = ACTIONS(1731), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1731), - [anon_sym_virtual] = ACTIONS(1731), - [anon_sym_explicit] = ACTIONS(1731), - [sym_auto] = ACTIONS(1731), - [anon_sym_typename] = ACTIONS(1731), - [anon_sym_template] = ACTIONS(1731), - [anon_sym_operator] = ACTIONS(1731), - [anon_sym_delete] = ACTIONS(1731), - [anon_sym_throw] = ACTIONS(1731), - [anon_sym_namespace] = ACTIONS(1731), - [anon_sym_using] = ACTIONS(1731), - [anon_sym_static_assert] = ACTIONS(1731), - [anon_sym_co_return] = ACTIONS(1731), - [anon_sym_co_yield] = ACTIONS(1731), - [anon_sym_try] = ACTIONS(1731), - [anon_sym_co_await] = ACTIONS(1731), - [anon_sym_new] = ACTIONS(1731), - [sym_this] = ACTIONS(1731), - [sym_nullptr] = ACTIONS(1731), - [sym_alone_macro] = ACTIONS(1733), - [aux_sym_alone_macro_call_token1] = ACTIONS(1731), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1731), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_FORWARD] = ACTIONS(1731), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1731), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1731), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1731), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1731), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_PS_GET] = ACTIONS(1731), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1731), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1731), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1731), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1731), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1731), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1731), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1731), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1731), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1731), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1731), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1731), - [anon_sym_MOZ_COLD] = ACTIONS(1731), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1731), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1731), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1731), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1731), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1731), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1731), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1731), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1731), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1731), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1731), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1731), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1731), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1731), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1731), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1731), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1731), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1731), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1731), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1731), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1731), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_NONNULL] = ACTIONS(1731), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1731), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1731), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1731), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1731), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1731), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_NORETURN] = ACTIONS(1731), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1731), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1731), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1731), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1731), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1731), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1731), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1731), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1731), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1731), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1731), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1731), - [anon_sym_MOZ_RAII] = ACTIONS(1731), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1731), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1731), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1731), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1731), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1731), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1731), - [sym_raw_string_literal] = ACTIONS(1733), - }, - [626] = { - [sym_identifier] = ACTIONS(1903), - [aux_sym_preproc_include_token1] = ACTIONS(1903), - [aux_sym_preproc_def_token1] = ACTIONS(1903), - [aux_sym_preproc_if_token1] = ACTIONS(1903), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1903), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1903), - [sym_preproc_directive] = ACTIONS(1903), - [anon_sym_LPAREN2] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1903), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_AMP_AMP] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_SEMI] = ACTIONS(1905), - [anon_sym_typedef] = ACTIONS(1903), - [anon_sym_extern] = ACTIONS(1903), - [anon_sym___attribute__] = ACTIONS(1903), - [anon_sym_COLON_COLON] = ACTIONS(1905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1905), - [anon_sym___declspec] = ACTIONS(1903), - [anon_sym___based] = ACTIONS(1903), - [anon_sym___cdecl] = ACTIONS(1903), - [anon_sym___clrcall] = ACTIONS(1903), - [anon_sym___stdcall] = ACTIONS(1903), - [anon_sym___fastcall] = ACTIONS(1903), - [anon_sym___thiscall] = ACTIONS(1903), - [anon_sym___vectorcall] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_static] = ACTIONS(1903), - [anon_sym_register] = ACTIONS(1903), - [anon_sym_inline] = ACTIONS(1903), - [anon_sym_thread_local] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(1903), - [anon_sym_volatile] = ACTIONS(1903), - [anon_sym_restrict] = ACTIONS(1903), - [anon_sym__Atomic] = ACTIONS(1903), - [anon_sym_mutable] = ACTIONS(1903), - [anon_sym_constexpr] = ACTIONS(1903), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [sym_primitive_type] = ACTIONS(1903), - [anon_sym_enum] = ACTIONS(1903), - [anon_sym_class] = ACTIONS(1903), - [anon_sym_struct] = ACTIONS(1903), - [anon_sym_union] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_switch] = ACTIONS(1903), - [anon_sym_case] = ACTIONS(1903), - [anon_sym_default] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_do] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_goto] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1905), - [anon_sym_PLUS_PLUS] = ACTIONS(1905), - [anon_sym_sizeof] = ACTIONS(1903), - [sym_number_literal] = ACTIONS(1905), - [anon_sym_L_SQUOTE] = ACTIONS(1905), - [anon_sym_u_SQUOTE] = ACTIONS(1905), - [anon_sym_U_SQUOTE] = ACTIONS(1905), - [anon_sym_u8_SQUOTE] = ACTIONS(1905), - [anon_sym_SQUOTE] = ACTIONS(1905), - [anon_sym_L_DQUOTE] = ACTIONS(1905), - [anon_sym_u_DQUOTE] = ACTIONS(1905), - [anon_sym_U_DQUOTE] = ACTIONS(1905), - [anon_sym_u8_DQUOTE] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1905), - [sym_true] = ACTIONS(1903), - [sym_false] = ACTIONS(1903), - [sym_null] = ACTIONS(1903), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1903), - [anon_sym_virtual] = ACTIONS(1903), - [anon_sym_explicit] = ACTIONS(1903), [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1914), [anon_sym_typename] = ACTIONS(1903), - [anon_sym_template] = ACTIONS(1903), - [anon_sym_operator] = ACTIONS(1903), - [anon_sym_delete] = ACTIONS(1903), - [anon_sym_throw] = ACTIONS(1903), - [anon_sym_namespace] = ACTIONS(1903), - [anon_sym_using] = ACTIONS(1903), - [anon_sym_static_assert] = ACTIONS(1903), - [anon_sym_co_return] = ACTIONS(1903), - [anon_sym_co_yield] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1903), - [anon_sym_co_await] = ACTIONS(1903), - [anon_sym_new] = ACTIONS(1903), - [sym_this] = ACTIONS(1903), - [sym_nullptr] = ACTIONS(1903), - [sym_alone_macro] = ACTIONS(1905), - [aux_sym_alone_macro_call_token1] = ACTIONS(1903), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1903), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_FORWARD] = ACTIONS(1903), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1903), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1903), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1903), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1903), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_PS_GET] = ACTIONS(1903), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1903), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1903), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1903), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1917), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), @@ -159173,3547 +99663,1519 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), - [sym_raw_string_literal] = ACTIONS(1905), - }, - [627] = { - [sym_identifier] = ACTIONS(1735), - [aux_sym_preproc_include_token1] = ACTIONS(1735), - [aux_sym_preproc_def_token1] = ACTIONS(1735), - [aux_sym_preproc_if_token1] = ACTIONS(1735), - [aux_sym_preproc_if_token2] = ACTIONS(1735), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1735), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1735), - [sym_preproc_directive] = ACTIONS(1735), - [anon_sym_LPAREN2] = ACTIONS(1737), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_typedef] = ACTIONS(1735), - [anon_sym_extern] = ACTIONS(1735), - [anon_sym___attribute__] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1737), - [anon_sym___declspec] = ACTIONS(1735), - [anon_sym___based] = ACTIONS(1735), - [anon_sym___cdecl] = ACTIONS(1735), - [anon_sym___clrcall] = ACTIONS(1735), - [anon_sym___stdcall] = ACTIONS(1735), - [anon_sym___fastcall] = ACTIONS(1735), - [anon_sym___thiscall] = ACTIONS(1735), - [anon_sym___vectorcall] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_register] = ACTIONS(1735), - [anon_sym_inline] = ACTIONS(1735), - [anon_sym_thread_local] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_volatile] = ACTIONS(1735), - [anon_sym_restrict] = ACTIONS(1735), - [anon_sym__Atomic] = ACTIONS(1735), - [anon_sym_mutable] = ACTIONS(1735), - [anon_sym_constexpr] = ACTIONS(1735), - [anon_sym_signed] = ACTIONS(1735), - [anon_sym_unsigned] = ACTIONS(1735), - [anon_sym_long] = ACTIONS(1735), - [anon_sym_short] = ACTIONS(1735), - [sym_primitive_type] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [anon_sym_class] = ACTIONS(1735), - [anon_sym_struct] = ACTIONS(1735), - [anon_sym_union] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1735), - [anon_sym_switch] = ACTIONS(1735), - [anon_sym_case] = ACTIONS(1735), - [anon_sym_default] = ACTIONS(1735), - [anon_sym_while] = ACTIONS(1735), - [anon_sym_do] = ACTIONS(1735), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_return] = ACTIONS(1735), - [anon_sym_break] = ACTIONS(1735), - [anon_sym_continue] = ACTIONS(1735), - [anon_sym_goto] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_sizeof] = ACTIONS(1735), - [sym_number_literal] = ACTIONS(1737), - [anon_sym_L_SQUOTE] = ACTIONS(1737), - [anon_sym_u_SQUOTE] = ACTIONS(1737), - [anon_sym_U_SQUOTE] = ACTIONS(1737), - [anon_sym_u8_SQUOTE] = ACTIONS(1737), - [anon_sym_SQUOTE] = ACTIONS(1737), - [anon_sym_L_DQUOTE] = ACTIONS(1737), - [anon_sym_u_DQUOTE] = ACTIONS(1737), - [anon_sym_U_DQUOTE] = ACTIONS(1737), - [anon_sym_u8_DQUOTE] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [sym_true] = ACTIONS(1735), - [sym_false] = ACTIONS(1735), - [sym_null] = ACTIONS(1735), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1735), - [anon_sym_virtual] = ACTIONS(1735), - [anon_sym_explicit] = ACTIONS(1735), - [sym_auto] = ACTIONS(1735), - [anon_sym_typename] = ACTIONS(1735), - [anon_sym_template] = ACTIONS(1735), - [anon_sym_operator] = ACTIONS(1735), - [anon_sym_delete] = ACTIONS(1735), - [anon_sym_throw] = ACTIONS(1735), - [anon_sym_namespace] = ACTIONS(1735), - [anon_sym_using] = ACTIONS(1735), - [anon_sym_static_assert] = ACTIONS(1735), - [anon_sym_co_return] = ACTIONS(1735), - [anon_sym_co_yield] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1735), - [anon_sym_co_await] = ACTIONS(1735), - [anon_sym_new] = ACTIONS(1735), - [sym_this] = ACTIONS(1735), - [sym_nullptr] = ACTIONS(1735), - [sym_alone_macro] = ACTIONS(1737), - [aux_sym_alone_macro_call_token1] = ACTIONS(1735), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1735), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_FORWARD] = ACTIONS(1735), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1735), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1735), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1735), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1735), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_PS_GET] = ACTIONS(1735), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1735), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1735), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1735), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1735), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1735), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1735), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1735), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1735), - [anon_sym_MOZ_COLD] = ACTIONS(1735), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1735), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1735), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1735), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1735), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1735), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1735), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1735), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1735), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1735), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1735), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1735), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1735), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1735), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_NONNULL] = ACTIONS(1735), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1735), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1735), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1735), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1735), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1735), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1735), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1735), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1735), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1735), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1735), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1735), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1735), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1735), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1735), - [anon_sym_MOZ_RAII] = ACTIONS(1735), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1735), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1735), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1735), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1735), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1735), - [sym_raw_string_literal] = ACTIONS(1737), - }, - [628] = { - [sym_identifier] = ACTIONS(1899), - [aux_sym_preproc_include_token1] = ACTIONS(1899), - [aux_sym_preproc_def_token1] = ACTIONS(1899), - [aux_sym_preproc_if_token1] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1899), - [sym_preproc_directive] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1901), - [anon_sym_BANG] = ACTIONS(1901), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_AMP_AMP] = ACTIONS(1901), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_typedef] = ACTIONS(1899), - [anon_sym_extern] = ACTIONS(1899), - [anon_sym___attribute__] = ACTIONS(1899), - [anon_sym_COLON_COLON] = ACTIONS(1901), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1901), - [anon_sym___declspec] = ACTIONS(1899), - [anon_sym___based] = ACTIONS(1899), - [anon_sym___cdecl] = ACTIONS(1899), - [anon_sym___clrcall] = ACTIONS(1899), - [anon_sym___stdcall] = ACTIONS(1899), - [anon_sym___fastcall] = ACTIONS(1899), - [anon_sym___thiscall] = ACTIONS(1899), - [anon_sym___vectorcall] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_register] = ACTIONS(1899), - [anon_sym_inline] = ACTIONS(1899), - [anon_sym_thread_local] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_volatile] = ACTIONS(1899), - [anon_sym_restrict] = ACTIONS(1899), - [anon_sym__Atomic] = ACTIONS(1899), - [anon_sym_mutable] = ACTIONS(1899), - [anon_sym_constexpr] = ACTIONS(1899), - [anon_sym_signed] = ACTIONS(1899), - [anon_sym_unsigned] = ACTIONS(1899), - [anon_sym_long] = ACTIONS(1899), - [anon_sym_short] = ACTIONS(1899), - [sym_primitive_type] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_class] = ACTIONS(1899), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_switch] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1899), - [anon_sym_default] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_goto] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [anon_sym_PLUS_PLUS] = ACTIONS(1901), - [anon_sym_sizeof] = ACTIONS(1899), - [sym_number_literal] = ACTIONS(1901), - [anon_sym_L_SQUOTE] = ACTIONS(1901), - [anon_sym_u_SQUOTE] = ACTIONS(1901), - [anon_sym_U_SQUOTE] = ACTIONS(1901), - [anon_sym_u8_SQUOTE] = ACTIONS(1901), - [anon_sym_SQUOTE] = ACTIONS(1901), - [anon_sym_L_DQUOTE] = ACTIONS(1901), - [anon_sym_u_DQUOTE] = ACTIONS(1901), - [anon_sym_U_DQUOTE] = ACTIONS(1901), - [anon_sym_u8_DQUOTE] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1901), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_null] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1899), - [anon_sym_virtual] = ACTIONS(1899), - [anon_sym_explicit] = ACTIONS(1899), - [sym_auto] = ACTIONS(1899), - [anon_sym_typename] = ACTIONS(1899), - [anon_sym_template] = ACTIONS(1899), - [anon_sym_operator] = ACTIONS(1899), - [anon_sym_delete] = ACTIONS(1899), - [anon_sym_throw] = ACTIONS(1899), - [anon_sym_namespace] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(1899), - [anon_sym_static_assert] = ACTIONS(1899), - [anon_sym_co_return] = ACTIONS(1899), - [anon_sym_co_yield] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_co_await] = ACTIONS(1899), - [anon_sym_new] = ACTIONS(1899), - [sym_this] = ACTIONS(1899), - [sym_nullptr] = ACTIONS(1899), - [sym_alone_macro] = ACTIONS(1901), - [aux_sym_alone_macro_call_token1] = ACTIONS(1899), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1899), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_FORWARD] = ACTIONS(1899), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1899), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1899), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1899), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1899), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_PS_GET] = ACTIONS(1899), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1899), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1899), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1899), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1899), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1899), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1899), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1899), - [anon_sym_MOZ_COLD] = ACTIONS(1899), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1899), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1899), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1899), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1899), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1899), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1899), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1899), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1899), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1899), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1899), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1899), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1899), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1899), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_NONNULL] = ACTIONS(1899), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1899), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1899), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1899), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1899), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1899), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1899), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1899), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1899), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1899), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1899), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1899), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1899), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1899), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1899), - [anon_sym_MOZ_RAII] = ACTIONS(1899), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1899), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1899), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1899), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1899), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1899), - [sym_raw_string_literal] = ACTIONS(1901), - }, - [629] = { - [sym_identifier] = ACTIONS(1895), - [aux_sym_preproc_include_token1] = ACTIONS(1895), - [aux_sym_preproc_def_token1] = ACTIONS(1895), - [aux_sym_preproc_if_token1] = ACTIONS(1895), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1895), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1895), - [sym_preproc_directive] = ACTIONS(1895), - [anon_sym_LPAREN2] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1895), - [anon_sym_PLUS] = ACTIONS(1895), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_AMP_AMP] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_typedef] = ACTIONS(1895), - [anon_sym_extern] = ACTIONS(1895), - [anon_sym___attribute__] = ACTIONS(1895), - [anon_sym_COLON_COLON] = ACTIONS(1897), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1897), - [anon_sym___declspec] = ACTIONS(1895), - [anon_sym___based] = ACTIONS(1895), - [anon_sym___cdecl] = ACTIONS(1895), - [anon_sym___clrcall] = ACTIONS(1895), - [anon_sym___stdcall] = ACTIONS(1895), - [anon_sym___fastcall] = ACTIONS(1895), - [anon_sym___thiscall] = ACTIONS(1895), - [anon_sym___vectorcall] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1895), - [anon_sym_static] = ACTIONS(1895), - [anon_sym_register] = ACTIONS(1895), - [anon_sym_inline] = ACTIONS(1895), - [anon_sym_thread_local] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [anon_sym_volatile] = ACTIONS(1895), - [anon_sym_restrict] = ACTIONS(1895), - [anon_sym__Atomic] = ACTIONS(1895), - [anon_sym_mutable] = ACTIONS(1895), - [anon_sym_constexpr] = ACTIONS(1895), - [anon_sym_signed] = ACTIONS(1895), - [anon_sym_unsigned] = ACTIONS(1895), - [anon_sym_long] = ACTIONS(1895), - [anon_sym_short] = ACTIONS(1895), - [sym_primitive_type] = ACTIONS(1895), - [anon_sym_enum] = ACTIONS(1895), - [anon_sym_class] = ACTIONS(1895), - [anon_sym_struct] = ACTIONS(1895), - [anon_sym_union] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_switch] = ACTIONS(1895), - [anon_sym_case] = ACTIONS(1895), - [anon_sym_default] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_do] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_goto] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_sizeof] = ACTIONS(1895), - [sym_number_literal] = ACTIONS(1897), - [anon_sym_L_SQUOTE] = ACTIONS(1897), - [anon_sym_u_SQUOTE] = ACTIONS(1897), - [anon_sym_U_SQUOTE] = ACTIONS(1897), - [anon_sym_u8_SQUOTE] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_L_DQUOTE] = ACTIONS(1897), - [anon_sym_u_DQUOTE] = ACTIONS(1897), - [anon_sym_U_DQUOTE] = ACTIONS(1897), - [anon_sym_u8_DQUOTE] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym_true] = ACTIONS(1895), - [sym_false] = ACTIONS(1895), - [sym_null] = ACTIONS(1895), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1895), - [anon_sym_virtual] = ACTIONS(1895), - [anon_sym_explicit] = ACTIONS(1895), - [sym_auto] = ACTIONS(1895), - [anon_sym_typename] = ACTIONS(1895), - [anon_sym_template] = ACTIONS(1895), - [anon_sym_operator] = ACTIONS(1895), - [anon_sym_delete] = ACTIONS(1895), - [anon_sym_throw] = ACTIONS(1895), - [anon_sym_namespace] = ACTIONS(1895), - [anon_sym_using] = ACTIONS(1895), - [anon_sym_static_assert] = ACTIONS(1895), - [anon_sym_co_return] = ACTIONS(1895), - [anon_sym_co_yield] = ACTIONS(1895), - [anon_sym_try] = ACTIONS(1895), - [anon_sym_co_await] = ACTIONS(1895), - [anon_sym_new] = ACTIONS(1895), - [sym_this] = ACTIONS(1895), - [sym_nullptr] = ACTIONS(1895), - [sym_alone_macro] = ACTIONS(1897), - [aux_sym_alone_macro_call_token1] = ACTIONS(1895), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1895), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_FORWARD] = ACTIONS(1895), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1895), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1895), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1895), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1895), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_PS_GET] = ACTIONS(1895), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1895), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1895), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1895), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1895), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1895), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1895), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1895), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1895), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1895), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1895), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1895), - [anon_sym_MOZ_COLD] = ACTIONS(1895), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1895), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1895), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1895), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1895), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1895), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1895), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1895), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1895), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1895), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1895), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1895), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1895), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1895), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1895), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1895), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1895), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1895), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1895), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1895), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1895), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_NONNULL] = ACTIONS(1895), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1895), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1895), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1895), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1895), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1895), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_NORETURN] = ACTIONS(1895), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1895), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1895), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1895), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1895), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1895), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1895), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1895), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1895), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1895), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1895), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1895), - [anon_sym_MOZ_RAII] = ACTIONS(1895), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1895), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1895), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1895), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1895), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1895), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1895), - [sym_raw_string_literal] = ACTIONS(1897), - }, - [630] = { - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_include_token1] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1819), - [aux_sym_preproc_if_token1] = ACTIONS(1819), - [aux_sym_preproc_if_token2] = ACTIONS(1819), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1819), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1819), - [sym_preproc_directive] = ACTIONS(1819), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1821), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_STAR] = ACTIONS(1821), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_typedef] = ACTIONS(1819), - [anon_sym_extern] = ACTIONS(1819), - [anon_sym___attribute__] = ACTIONS(1819), - [anon_sym_COLON_COLON] = ACTIONS(1821), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1821), - [anon_sym___declspec] = ACTIONS(1819), - [anon_sym___based] = ACTIONS(1819), - [anon_sym___cdecl] = ACTIONS(1819), - [anon_sym___clrcall] = ACTIONS(1819), - [anon_sym___stdcall] = ACTIONS(1819), - [anon_sym___fastcall] = ACTIONS(1819), - [anon_sym___thiscall] = ACTIONS(1819), - [anon_sym___vectorcall] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_static] = ACTIONS(1819), - [anon_sym_register] = ACTIONS(1819), - [anon_sym_inline] = ACTIONS(1819), - [anon_sym_thread_local] = ACTIONS(1819), - [anon_sym_const] = ACTIONS(1819), - [anon_sym_volatile] = ACTIONS(1819), - [anon_sym_restrict] = ACTIONS(1819), - [anon_sym__Atomic] = ACTIONS(1819), - [anon_sym_mutable] = ACTIONS(1819), - [anon_sym_constexpr] = ACTIONS(1819), - [anon_sym_signed] = ACTIONS(1819), - [anon_sym_unsigned] = ACTIONS(1819), - [anon_sym_long] = ACTIONS(1819), - [anon_sym_short] = ACTIONS(1819), - [sym_primitive_type] = ACTIONS(1819), - [anon_sym_enum] = ACTIONS(1819), - [anon_sym_class] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1819), - [anon_sym_union] = ACTIONS(1819), - [anon_sym_if] = ACTIONS(1819), - [anon_sym_switch] = ACTIONS(1819), - [anon_sym_case] = ACTIONS(1819), - [anon_sym_default] = ACTIONS(1819), - [anon_sym_while] = ACTIONS(1819), - [anon_sym_do] = ACTIONS(1819), - [anon_sym_for] = ACTIONS(1819), - [anon_sym_return] = ACTIONS(1819), - [anon_sym_break] = ACTIONS(1819), - [anon_sym_continue] = ACTIONS(1819), - [anon_sym_goto] = ACTIONS(1819), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [anon_sym_PLUS_PLUS] = ACTIONS(1821), - [anon_sym_sizeof] = ACTIONS(1819), - [sym_number_literal] = ACTIONS(1821), - [anon_sym_L_SQUOTE] = ACTIONS(1821), - [anon_sym_u_SQUOTE] = ACTIONS(1821), - [anon_sym_U_SQUOTE] = ACTIONS(1821), - [anon_sym_u8_SQUOTE] = ACTIONS(1821), - [anon_sym_SQUOTE] = ACTIONS(1821), - [anon_sym_L_DQUOTE] = ACTIONS(1821), - [anon_sym_u_DQUOTE] = ACTIONS(1821), - [anon_sym_U_DQUOTE] = ACTIONS(1821), - [anon_sym_u8_DQUOTE] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [sym_true] = ACTIONS(1819), - [sym_false] = ACTIONS(1819), - [sym_null] = ACTIONS(1819), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1819), - [anon_sym_virtual] = ACTIONS(1819), - [anon_sym_explicit] = ACTIONS(1819), - [sym_auto] = ACTIONS(1819), - [anon_sym_typename] = ACTIONS(1819), - [anon_sym_template] = ACTIONS(1819), - [anon_sym_operator] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_throw] = ACTIONS(1819), - [anon_sym_namespace] = ACTIONS(1819), - [anon_sym_using] = ACTIONS(1819), - [anon_sym_static_assert] = ACTIONS(1819), - [anon_sym_co_return] = ACTIONS(1819), - [anon_sym_co_yield] = ACTIONS(1819), - [anon_sym_try] = ACTIONS(1819), - [anon_sym_co_await] = ACTIONS(1819), - [anon_sym_new] = ACTIONS(1819), - [sym_this] = ACTIONS(1819), - [sym_nullptr] = ACTIONS(1819), - [sym_alone_macro] = ACTIONS(1821), - [aux_sym_alone_macro_call_token1] = ACTIONS(1819), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1819), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_FORWARD] = ACTIONS(1819), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1819), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1819), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1819), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1819), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_PS_GET] = ACTIONS(1819), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1819), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1819), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1819), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1819), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1819), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1819), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1819), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1819), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1819), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1819), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1819), - [anon_sym_MOZ_COLD] = ACTIONS(1819), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1819), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1819), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1819), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1819), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1819), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1819), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1819), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1819), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1819), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1819), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1819), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1819), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1819), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1819), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1819), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1819), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1819), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1819), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1819), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1819), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_NONNULL] = ACTIONS(1819), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1819), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1819), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1819), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1819), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1819), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_NORETURN] = ACTIONS(1819), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1819), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1819), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1819), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1819), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1819), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1819), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1819), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1819), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1819), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1819), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1819), - [anon_sym_MOZ_RAII] = ACTIONS(1819), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1819), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1819), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1819), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1819), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1819), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1819), - [sym_raw_string_literal] = ACTIONS(1821), - }, - [631] = { - [sym_identifier] = ACTIONS(1699), - [aux_sym_preproc_include_token1] = ACTIONS(1699), - [aux_sym_preproc_def_token1] = ACTIONS(1699), - [aux_sym_preproc_if_token1] = ACTIONS(1699), - [aux_sym_preproc_if_token2] = ACTIONS(1699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1699), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_typedef] = ACTIONS(1699), - [anon_sym_extern] = ACTIONS(1699), - [anon_sym___attribute__] = ACTIONS(1699), - [anon_sym_COLON_COLON] = ACTIONS(1701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1701), - [anon_sym___declspec] = ACTIONS(1699), - [anon_sym___based] = ACTIONS(1699), - [anon_sym___cdecl] = ACTIONS(1699), - [anon_sym___clrcall] = ACTIONS(1699), - [anon_sym___stdcall] = ACTIONS(1699), - [anon_sym___fastcall] = ACTIONS(1699), - [anon_sym___thiscall] = ACTIONS(1699), - [anon_sym___vectorcall] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_static] = ACTIONS(1699), - [anon_sym_register] = ACTIONS(1699), - [anon_sym_inline] = ACTIONS(1699), - [anon_sym_thread_local] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_volatile] = ACTIONS(1699), - [anon_sym_restrict] = ACTIONS(1699), - [anon_sym__Atomic] = ACTIONS(1699), - [anon_sym_mutable] = ACTIONS(1699), - [anon_sym_constexpr] = ACTIONS(1699), - [anon_sym_signed] = ACTIONS(1699), - [anon_sym_unsigned] = ACTIONS(1699), - [anon_sym_long] = ACTIONS(1699), - [anon_sym_short] = ACTIONS(1699), - [sym_primitive_type] = ACTIONS(1699), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1699), - [anon_sym_struct] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_switch] = ACTIONS(1699), - [anon_sym_case] = ACTIONS(1699), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_while] = ACTIONS(1699), - [anon_sym_do] = ACTIONS(1699), - [anon_sym_for] = ACTIONS(1699), - [anon_sym_return] = ACTIONS(1699), - [anon_sym_break] = ACTIONS(1699), - [anon_sym_continue] = ACTIONS(1699), - [anon_sym_goto] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_sizeof] = ACTIONS(1699), - [sym_number_literal] = ACTIONS(1701), - [anon_sym_L_SQUOTE] = ACTIONS(1701), - [anon_sym_u_SQUOTE] = ACTIONS(1701), - [anon_sym_U_SQUOTE] = ACTIONS(1701), - [anon_sym_u8_SQUOTE] = ACTIONS(1701), - [anon_sym_SQUOTE] = ACTIONS(1701), - [anon_sym_L_DQUOTE] = ACTIONS(1701), - [anon_sym_u_DQUOTE] = ACTIONS(1701), - [anon_sym_U_DQUOTE] = ACTIONS(1701), - [anon_sym_u8_DQUOTE] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(1701), - [sym_true] = ACTIONS(1699), - [sym_false] = ACTIONS(1699), - [sym_null] = ACTIONS(1699), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1699), - [anon_sym_virtual] = ACTIONS(1699), - [anon_sym_explicit] = ACTIONS(1699), - [sym_auto] = ACTIONS(1699), - [anon_sym_typename] = ACTIONS(1699), - [anon_sym_template] = ACTIONS(1699), - [anon_sym_operator] = ACTIONS(1699), - [anon_sym_delete] = ACTIONS(1699), - [anon_sym_throw] = ACTIONS(1699), - [anon_sym_namespace] = ACTIONS(1699), - [anon_sym_using] = ACTIONS(1699), - [anon_sym_static_assert] = ACTIONS(1699), - [anon_sym_co_return] = ACTIONS(1699), - [anon_sym_co_yield] = ACTIONS(1699), - [anon_sym_try] = ACTIONS(1699), - [anon_sym_co_await] = ACTIONS(1699), - [anon_sym_new] = ACTIONS(1699), - [sym_this] = ACTIONS(1699), - [sym_nullptr] = ACTIONS(1699), - [sym_alone_macro] = ACTIONS(1701), - [aux_sym_alone_macro_call_token1] = ACTIONS(1699), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1699), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_FORWARD] = ACTIONS(1699), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1699), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1699), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1699), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1699), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_PS_GET] = ACTIONS(1699), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1699), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1699), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1699), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1699), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1699), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1699), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1699), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1699), - [anon_sym_MOZ_COLD] = ACTIONS(1699), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1699), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1699), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1699), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1699), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1699), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1699), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1699), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1699), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1699), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1699), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1699), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1699), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1699), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_NONNULL] = ACTIONS(1699), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1699), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1699), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1699), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1699), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1699), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1699), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1699), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1699), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1699), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1699), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1699), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1699), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1699), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1699), - [anon_sym_MOZ_RAII] = ACTIONS(1699), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1699), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1699), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1699), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1699), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1699), - [sym_raw_string_literal] = ACTIONS(1701), - }, - [632] = { - [ts_builtin_sym_end] = ACTIONS(1805), - [sym_identifier] = ACTIONS(1803), - [aux_sym_preproc_include_token1] = ACTIONS(1803), - [aux_sym_preproc_def_token1] = ACTIONS(1803), - [aux_sym_preproc_if_token1] = ACTIONS(1803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1803), - [sym_preproc_directive] = ACTIONS(1803), - [anon_sym_LPAREN2] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_AMP_AMP] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_typedef] = ACTIONS(1803), - [anon_sym_extern] = ACTIONS(1803), - [anon_sym___attribute__] = ACTIONS(1803), - [anon_sym_COLON_COLON] = ACTIONS(1805), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1805), - [anon_sym___declspec] = ACTIONS(1803), - [anon_sym___based] = ACTIONS(1803), - [anon_sym___cdecl] = ACTIONS(1803), - [anon_sym___clrcall] = ACTIONS(1803), - [anon_sym___stdcall] = ACTIONS(1803), - [anon_sym___fastcall] = ACTIONS(1803), - [anon_sym___thiscall] = ACTIONS(1803), - [anon_sym___vectorcall] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_register] = ACTIONS(1803), - [anon_sym_inline] = ACTIONS(1803), - [anon_sym_thread_local] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_volatile] = ACTIONS(1803), - [anon_sym_restrict] = ACTIONS(1803), - [anon_sym__Atomic] = ACTIONS(1803), - [anon_sym_mutable] = ACTIONS(1803), - [anon_sym_constexpr] = ACTIONS(1803), - [anon_sym_signed] = ACTIONS(1803), - [anon_sym_unsigned] = ACTIONS(1803), - [anon_sym_long] = ACTIONS(1803), - [anon_sym_short] = ACTIONS(1803), - [sym_primitive_type] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_struct] = ACTIONS(1803), - [anon_sym_union] = ACTIONS(1803), - [anon_sym_if] = ACTIONS(1803), - [anon_sym_switch] = ACTIONS(1803), - [anon_sym_case] = ACTIONS(1803), - [anon_sym_default] = ACTIONS(1803), - [anon_sym_while] = ACTIONS(1803), - [anon_sym_do] = ACTIONS(1803), - [anon_sym_for] = ACTIONS(1803), - [anon_sym_return] = ACTIONS(1803), - [anon_sym_break] = ACTIONS(1803), - [anon_sym_continue] = ACTIONS(1803), - [anon_sym_goto] = ACTIONS(1803), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_sizeof] = ACTIONS(1803), - [sym_number_literal] = ACTIONS(1805), - [anon_sym_L_SQUOTE] = ACTIONS(1805), - [anon_sym_u_SQUOTE] = ACTIONS(1805), - [anon_sym_U_SQUOTE] = ACTIONS(1805), - [anon_sym_u8_SQUOTE] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(1805), - [anon_sym_L_DQUOTE] = ACTIONS(1805), - [anon_sym_u_DQUOTE] = ACTIONS(1805), - [anon_sym_U_DQUOTE] = ACTIONS(1805), - [anon_sym_u8_DQUOTE] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(1805), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_null] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1803), - [anon_sym_virtual] = ACTIONS(1803), - [anon_sym_explicit] = ACTIONS(1803), - [sym_auto] = ACTIONS(1803), - [anon_sym_typename] = ACTIONS(1803), - [anon_sym_template] = ACTIONS(1803), - [anon_sym_operator] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1803), - [anon_sym_throw] = ACTIONS(1803), - [anon_sym_namespace] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1803), - [anon_sym_static_assert] = ACTIONS(1803), - [anon_sym_co_return] = ACTIONS(1803), - [anon_sym_co_yield] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1803), - [anon_sym_co_await] = ACTIONS(1803), - [anon_sym_new] = ACTIONS(1803), - [sym_this] = ACTIONS(1803), - [sym_nullptr] = ACTIONS(1803), - [sym_alone_macro] = ACTIONS(1805), - [aux_sym_alone_macro_call_token1] = ACTIONS(1803), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1803), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_FORWARD] = ACTIONS(1803), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1803), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1803), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1803), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1803), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_PS_GET] = ACTIONS(1803), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1803), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1803), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1803), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1803), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1803), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1803), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1803), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1803), - [anon_sym_MOZ_COLD] = ACTIONS(1803), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1803), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1803), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1803), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1803), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1803), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1803), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1803), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1803), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1803), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1803), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1803), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1803), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1803), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_NONNULL] = ACTIONS(1803), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1803), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1803), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1803), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1803), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1803), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1803), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1803), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1803), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1803), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1803), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1803), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1803), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1803), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1803), - [anon_sym_MOZ_RAII] = ACTIONS(1803), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1803), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1803), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1803), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1803), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1803), - [sym_raw_string_literal] = ACTIONS(1805), - }, - [633] = { - [sym_identifier] = ACTIONS(1707), - [aux_sym_preproc_include_token1] = ACTIONS(1707), - [aux_sym_preproc_def_token1] = ACTIONS(1707), - [aux_sym_preproc_if_token1] = ACTIONS(1707), - [aux_sym_preproc_if_token2] = ACTIONS(1707), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1707), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1707), - [sym_preproc_directive] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1709), - [anon_sym_AMP_AMP] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_typedef] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym___attribute__] = ACTIONS(1707), - [anon_sym_COLON_COLON] = ACTIONS(1709), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1709), - [anon_sym___declspec] = ACTIONS(1707), - [anon_sym___based] = ACTIONS(1707), - [anon_sym___cdecl] = ACTIONS(1707), - [anon_sym___clrcall] = ACTIONS(1707), - [anon_sym___stdcall] = ACTIONS(1707), - [anon_sym___fastcall] = ACTIONS(1707), - [anon_sym___thiscall] = ACTIONS(1707), - [anon_sym___vectorcall] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_inline] = ACTIONS(1707), - [anon_sym_thread_local] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_volatile] = ACTIONS(1707), - [anon_sym_restrict] = ACTIONS(1707), - [anon_sym__Atomic] = ACTIONS(1707), - [anon_sym_mutable] = ACTIONS(1707), - [anon_sym_constexpr] = ACTIONS(1707), - [anon_sym_signed] = ACTIONS(1707), - [anon_sym_unsigned] = ACTIONS(1707), - [anon_sym_long] = ACTIONS(1707), - [anon_sym_short] = ACTIONS(1707), - [sym_primitive_type] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_class] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_switch] = ACTIONS(1707), - [anon_sym_case] = ACTIONS(1707), - [anon_sym_default] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_goto] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1709), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_sizeof] = ACTIONS(1707), - [sym_number_literal] = ACTIONS(1709), - [anon_sym_L_SQUOTE] = ACTIONS(1709), - [anon_sym_u_SQUOTE] = ACTIONS(1709), - [anon_sym_U_SQUOTE] = ACTIONS(1709), - [anon_sym_u8_SQUOTE] = ACTIONS(1709), - [anon_sym_SQUOTE] = ACTIONS(1709), - [anon_sym_L_DQUOTE] = ACTIONS(1709), - [anon_sym_u_DQUOTE] = ACTIONS(1709), - [anon_sym_U_DQUOTE] = ACTIONS(1709), - [anon_sym_u8_DQUOTE] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1709), - [sym_true] = ACTIONS(1707), - [sym_false] = ACTIONS(1707), - [sym_null] = ACTIONS(1707), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1707), - [anon_sym_virtual] = ACTIONS(1707), - [anon_sym_explicit] = ACTIONS(1707), - [sym_auto] = ACTIONS(1707), - [anon_sym_typename] = ACTIONS(1707), - [anon_sym_template] = ACTIONS(1707), - [anon_sym_operator] = ACTIONS(1707), - [anon_sym_delete] = ACTIONS(1707), - [anon_sym_throw] = ACTIONS(1707), - [anon_sym_namespace] = ACTIONS(1707), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_static_assert] = ACTIONS(1707), - [anon_sym_co_return] = ACTIONS(1707), - [anon_sym_co_yield] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1707), - [anon_sym_co_await] = ACTIONS(1707), - [anon_sym_new] = ACTIONS(1707), - [sym_this] = ACTIONS(1707), - [sym_nullptr] = ACTIONS(1707), - [sym_alone_macro] = ACTIONS(1709), - [aux_sym_alone_macro_call_token1] = ACTIONS(1707), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1707), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_FORWARD] = ACTIONS(1707), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1707), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1707), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1707), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1707), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_PS_GET] = ACTIONS(1707), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1707), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1707), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1707), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1707), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1707), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1707), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1707), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1707), - [anon_sym_MOZ_COLD] = ACTIONS(1707), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1707), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1707), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1707), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1707), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1707), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1707), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1707), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1707), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1707), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1707), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1707), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1707), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1707), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_NONNULL] = ACTIONS(1707), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1707), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1707), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1707), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1707), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1707), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1707), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1707), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1707), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1707), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1707), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1707), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1707), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1707), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1707), - [anon_sym_MOZ_RAII] = ACTIONS(1707), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1707), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1707), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1707), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1707), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1707), - [sym_raw_string_literal] = ACTIONS(1709), - }, - [634] = { - [ts_builtin_sym_end] = ACTIONS(1713), - [sym_identifier] = ACTIONS(1711), - [aux_sym_preproc_include_token1] = ACTIONS(1711), - [aux_sym_preproc_def_token1] = ACTIONS(1711), - [aux_sym_preproc_if_token1] = ACTIONS(1711), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1711), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1711), - [sym_preproc_directive] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_BANG] = ACTIONS(1713), - [anon_sym_TILDE] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_typedef] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym___attribute__] = ACTIONS(1711), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), - [anon_sym___declspec] = ACTIONS(1711), - [anon_sym___based] = ACTIONS(1711), - [anon_sym___cdecl] = ACTIONS(1711), - [anon_sym___clrcall] = ACTIONS(1711), - [anon_sym___stdcall] = ACTIONS(1711), - [anon_sym___fastcall] = ACTIONS(1711), - [anon_sym___thiscall] = ACTIONS(1711), - [anon_sym___vectorcall] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_static] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_inline] = ACTIONS(1711), - [anon_sym_thread_local] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [anon_sym_volatile] = ACTIONS(1711), - [anon_sym_restrict] = ACTIONS(1711), - [anon_sym__Atomic] = ACTIONS(1711), - [anon_sym_mutable] = ACTIONS(1711), - [anon_sym_constexpr] = ACTIONS(1711), - [anon_sym_signed] = ACTIONS(1711), - [anon_sym_unsigned] = ACTIONS(1711), - [anon_sym_long] = ACTIONS(1711), - [anon_sym_short] = ACTIONS(1711), - [sym_primitive_type] = ACTIONS(1711), - [anon_sym_enum] = ACTIONS(1711), - [anon_sym_class] = ACTIONS(1711), - [anon_sym_struct] = ACTIONS(1711), - [anon_sym_union] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_switch] = ACTIONS(1711), - [anon_sym_case] = ACTIONS(1711), - [anon_sym_default] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_goto] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_sizeof] = ACTIONS(1711), - [sym_number_literal] = ACTIONS(1713), - [anon_sym_L_SQUOTE] = ACTIONS(1713), - [anon_sym_u_SQUOTE] = ACTIONS(1713), - [anon_sym_U_SQUOTE] = ACTIONS(1713), - [anon_sym_u8_SQUOTE] = ACTIONS(1713), - [anon_sym_SQUOTE] = ACTIONS(1713), - [anon_sym_L_DQUOTE] = ACTIONS(1713), - [anon_sym_u_DQUOTE] = ACTIONS(1713), - [anon_sym_U_DQUOTE] = ACTIONS(1713), - [anon_sym_u8_DQUOTE] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym_true] = ACTIONS(1711), - [sym_false] = ACTIONS(1711), - [sym_null] = ACTIONS(1711), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1711), - [anon_sym_virtual] = ACTIONS(1711), - [anon_sym_explicit] = ACTIONS(1711), - [sym_auto] = ACTIONS(1711), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(1711), - [anon_sym_operator] = ACTIONS(1711), - [anon_sym_delete] = ACTIONS(1711), - [anon_sym_throw] = ACTIONS(1711), - [anon_sym_namespace] = ACTIONS(1711), - [anon_sym_using] = ACTIONS(1711), - [anon_sym_static_assert] = ACTIONS(1711), - [anon_sym_co_return] = ACTIONS(1711), - [anon_sym_co_yield] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_co_await] = ACTIONS(1711), - [anon_sym_new] = ACTIONS(1711), - [sym_this] = ACTIONS(1711), - [sym_nullptr] = ACTIONS(1711), - [sym_alone_macro] = ACTIONS(1713), - [aux_sym_alone_macro_call_token1] = ACTIONS(1711), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1711), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_FORWARD] = ACTIONS(1711), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1711), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1711), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1711), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1711), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_PS_GET] = ACTIONS(1711), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1711), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1711), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1711), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1711), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1711), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1711), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1711), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1711), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1711), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1711), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1711), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1711), - [anon_sym_MOZ_COLD] = ACTIONS(1711), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1711), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1711), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1711), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1711), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1711), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1711), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1711), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1711), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1711), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1711), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1711), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1711), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1711), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1711), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1711), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1711), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1711), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1711), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1711), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1711), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1711), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_NONNULL] = ACTIONS(1711), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1711), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1711), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1711), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1711), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1711), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_NORETURN] = ACTIONS(1711), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1711), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1711), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1711), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1711), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1711), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1711), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1711), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1711), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1711), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1711), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1711), - [anon_sym_MOZ_RAII] = ACTIONS(1711), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1711), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1711), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1711), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1711), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1711), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1711), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1711), - [sym_raw_string_literal] = ACTIONS(1713), - }, - [635] = { - [sym_identifier] = ACTIONS(1811), - [aux_sym_preproc_include_token1] = ACTIONS(1811), - [aux_sym_preproc_def_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token2] = ACTIONS(1811), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1811), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1811), - [sym_preproc_directive] = ACTIONS(1811), - [anon_sym_LPAREN2] = ACTIONS(1813), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_AMP_AMP] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1813), - [anon_sym_typedef] = ACTIONS(1811), - [anon_sym_extern] = ACTIONS(1811), - [anon_sym___attribute__] = ACTIONS(1811), - [anon_sym_COLON_COLON] = ACTIONS(1813), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), - [anon_sym___declspec] = ACTIONS(1811), - [anon_sym___based] = ACTIONS(1811), - [anon_sym___cdecl] = ACTIONS(1811), - [anon_sym___clrcall] = ACTIONS(1811), - [anon_sym___stdcall] = ACTIONS(1811), - [anon_sym___fastcall] = ACTIONS(1811), - [anon_sym___thiscall] = ACTIONS(1811), - [anon_sym___vectorcall] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_static] = ACTIONS(1811), - [anon_sym_register] = ACTIONS(1811), - [anon_sym_inline] = ACTIONS(1811), - [anon_sym_thread_local] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [anon_sym_volatile] = ACTIONS(1811), - [anon_sym_restrict] = ACTIONS(1811), - [anon_sym__Atomic] = ACTIONS(1811), - [anon_sym_mutable] = ACTIONS(1811), - [anon_sym_constexpr] = ACTIONS(1811), - [anon_sym_signed] = ACTIONS(1811), - [anon_sym_unsigned] = ACTIONS(1811), - [anon_sym_long] = ACTIONS(1811), - [anon_sym_short] = ACTIONS(1811), - [sym_primitive_type] = ACTIONS(1811), - [anon_sym_enum] = ACTIONS(1811), - [anon_sym_class] = ACTIONS(1811), - [anon_sym_struct] = ACTIONS(1811), - [anon_sym_union] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_switch] = ACTIONS(1811), - [anon_sym_case] = ACTIONS(1811), - [anon_sym_default] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_goto] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_sizeof] = ACTIONS(1811), - [sym_number_literal] = ACTIONS(1813), - [anon_sym_L_SQUOTE] = ACTIONS(1813), - [anon_sym_u_SQUOTE] = ACTIONS(1813), - [anon_sym_U_SQUOTE] = ACTIONS(1813), - [anon_sym_u8_SQUOTE] = ACTIONS(1813), - [anon_sym_SQUOTE] = ACTIONS(1813), - [anon_sym_L_DQUOTE] = ACTIONS(1813), - [anon_sym_u_DQUOTE] = ACTIONS(1813), - [anon_sym_U_DQUOTE] = ACTIONS(1813), - [anon_sym_u8_DQUOTE] = ACTIONS(1813), - [anon_sym_DQUOTE] = ACTIONS(1813), - [sym_true] = ACTIONS(1811), - [sym_false] = ACTIONS(1811), - [sym_null] = ACTIONS(1811), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1811), - [anon_sym_virtual] = ACTIONS(1811), - [anon_sym_explicit] = ACTIONS(1811), - [sym_auto] = ACTIONS(1811), - [anon_sym_typename] = ACTIONS(1811), - [anon_sym_template] = ACTIONS(1811), - [anon_sym_operator] = ACTIONS(1811), - [anon_sym_delete] = ACTIONS(1811), - [anon_sym_throw] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(1811), - [anon_sym_static_assert] = ACTIONS(1811), - [anon_sym_co_return] = ACTIONS(1811), - [anon_sym_co_yield] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1811), - [anon_sym_co_await] = ACTIONS(1811), - [anon_sym_new] = ACTIONS(1811), - [sym_this] = ACTIONS(1811), - [sym_nullptr] = ACTIONS(1811), - [sym_alone_macro] = ACTIONS(1813), - [aux_sym_alone_macro_call_token1] = ACTIONS(1811), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1811), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_FORWARD] = ACTIONS(1811), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1811), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1811), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1811), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1811), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_PS_GET] = ACTIONS(1811), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1811), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1811), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1811), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1811), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1811), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1811), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1811), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1811), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1811), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1811), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1811), - [anon_sym_MOZ_COLD] = ACTIONS(1811), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1811), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1811), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1811), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1811), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1811), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1811), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1811), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1811), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1811), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1811), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1811), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1811), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1811), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1811), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1811), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1811), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1811), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1811), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1811), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1811), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_NONNULL] = ACTIONS(1811), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1811), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1811), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1811), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1811), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1811), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_NORETURN] = ACTIONS(1811), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1811), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1811), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1811), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1811), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1811), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1811), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1811), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1811), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1811), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1811), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1811), - [anon_sym_MOZ_RAII] = ACTIONS(1811), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1811), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1811), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1811), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1811), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1811), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1811), - [sym_raw_string_literal] = ACTIONS(1813), - }, - [636] = { - [sym_identifier] = ACTIONS(1807), - [aux_sym_preproc_include_token1] = ACTIONS(1807), - [aux_sym_preproc_def_token1] = ACTIONS(1807), - [aux_sym_preproc_if_token1] = ACTIONS(1807), - [aux_sym_preproc_if_token2] = ACTIONS(1807), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1807), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1807), - [sym_preproc_directive] = ACTIONS(1807), - [anon_sym_LPAREN2] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_typedef] = ACTIONS(1807), - [anon_sym_extern] = ACTIONS(1807), - [anon_sym___attribute__] = ACTIONS(1807), - [anon_sym_COLON_COLON] = ACTIONS(1809), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1809), - [anon_sym___declspec] = ACTIONS(1807), - [anon_sym___based] = ACTIONS(1807), - [anon_sym___cdecl] = ACTIONS(1807), - [anon_sym___clrcall] = ACTIONS(1807), - [anon_sym___stdcall] = ACTIONS(1807), - [anon_sym___fastcall] = ACTIONS(1807), - [anon_sym___thiscall] = ACTIONS(1807), - [anon_sym___vectorcall] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_static] = ACTIONS(1807), - [anon_sym_register] = ACTIONS(1807), - [anon_sym_inline] = ACTIONS(1807), - [anon_sym_thread_local] = ACTIONS(1807), - [anon_sym_const] = ACTIONS(1807), - [anon_sym_volatile] = ACTIONS(1807), - [anon_sym_restrict] = ACTIONS(1807), - [anon_sym__Atomic] = ACTIONS(1807), - [anon_sym_mutable] = ACTIONS(1807), - [anon_sym_constexpr] = ACTIONS(1807), - [anon_sym_signed] = ACTIONS(1807), - [anon_sym_unsigned] = ACTIONS(1807), - [anon_sym_long] = ACTIONS(1807), - [anon_sym_short] = ACTIONS(1807), - [sym_primitive_type] = ACTIONS(1807), - [anon_sym_enum] = ACTIONS(1807), - [anon_sym_class] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1807), - [anon_sym_union] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(1807), - [anon_sym_switch] = ACTIONS(1807), - [anon_sym_case] = ACTIONS(1807), - [anon_sym_default] = ACTIONS(1807), - [anon_sym_while] = ACTIONS(1807), - [anon_sym_do] = ACTIONS(1807), - [anon_sym_for] = ACTIONS(1807), - [anon_sym_return] = ACTIONS(1807), - [anon_sym_break] = ACTIONS(1807), - [anon_sym_continue] = ACTIONS(1807), - [anon_sym_goto] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_sizeof] = ACTIONS(1807), - [sym_number_literal] = ACTIONS(1809), - [anon_sym_L_SQUOTE] = ACTIONS(1809), - [anon_sym_u_SQUOTE] = ACTIONS(1809), - [anon_sym_U_SQUOTE] = ACTIONS(1809), - [anon_sym_u8_SQUOTE] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_L_DQUOTE] = ACTIONS(1809), - [anon_sym_u_DQUOTE] = ACTIONS(1809), - [anon_sym_U_DQUOTE] = ACTIONS(1809), - [anon_sym_u8_DQUOTE] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [sym_true] = ACTIONS(1807), - [sym_false] = ACTIONS(1807), - [sym_null] = ACTIONS(1807), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1807), - [anon_sym_virtual] = ACTIONS(1807), - [anon_sym_explicit] = ACTIONS(1807), - [sym_auto] = ACTIONS(1807), - [anon_sym_typename] = ACTIONS(1807), - [anon_sym_template] = ACTIONS(1807), - [anon_sym_operator] = ACTIONS(1807), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_throw] = ACTIONS(1807), - [anon_sym_namespace] = ACTIONS(1807), - [anon_sym_using] = ACTIONS(1807), - [anon_sym_static_assert] = ACTIONS(1807), - [anon_sym_co_return] = ACTIONS(1807), - [anon_sym_co_yield] = ACTIONS(1807), - [anon_sym_try] = ACTIONS(1807), - [anon_sym_co_await] = ACTIONS(1807), - [anon_sym_new] = ACTIONS(1807), - [sym_this] = ACTIONS(1807), - [sym_nullptr] = ACTIONS(1807), - [sym_alone_macro] = ACTIONS(1809), - [aux_sym_alone_macro_call_token1] = ACTIONS(1807), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1807), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_FORWARD] = ACTIONS(1807), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1807), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1807), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1807), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1807), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_PS_GET] = ACTIONS(1807), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1807), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1807), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1807), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1807), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1807), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1807), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1807), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1807), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1807), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1807), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1807), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1807), - [anon_sym_MOZ_COLD] = ACTIONS(1807), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1807), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1807), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1807), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1807), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1807), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1807), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1807), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1807), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1807), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1807), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1807), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1807), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1807), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1807), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1807), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1807), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1807), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1807), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1807), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1807), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1807), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_NONNULL] = ACTIONS(1807), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1807), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1807), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1807), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1807), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1807), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_NORETURN] = ACTIONS(1807), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1807), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1807), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1807), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1807), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1807), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1807), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1807), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1807), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1807), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1807), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1807), - [anon_sym_MOZ_RAII] = ACTIONS(1807), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1807), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1807), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1807), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1807), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1807), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1807), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1807), - [sym_raw_string_literal] = ACTIONS(1809), - }, - [637] = { - [sym_identifier] = ACTIONS(1715), - [aux_sym_preproc_include_token1] = ACTIONS(1715), - [aux_sym_preproc_def_token1] = ACTIONS(1715), - [aux_sym_preproc_if_token1] = ACTIONS(1715), - [aux_sym_preproc_if_token2] = ACTIONS(1715), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1715), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1715), - [sym_preproc_directive] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_typedef] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym___attribute__] = ACTIONS(1715), - [anon_sym_COLON_COLON] = ACTIONS(1717), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1717), - [anon_sym___declspec] = ACTIONS(1715), - [anon_sym___based] = ACTIONS(1715), - [anon_sym___cdecl] = ACTIONS(1715), - [anon_sym___clrcall] = ACTIONS(1715), - [anon_sym___stdcall] = ACTIONS(1715), - [anon_sym___fastcall] = ACTIONS(1715), - [anon_sym___thiscall] = ACTIONS(1715), - [anon_sym___vectorcall] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_inline] = ACTIONS(1715), - [anon_sym_thread_local] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [anon_sym_volatile] = ACTIONS(1715), - [anon_sym_restrict] = ACTIONS(1715), - [anon_sym__Atomic] = ACTIONS(1715), - [anon_sym_mutable] = ACTIONS(1715), - [anon_sym_constexpr] = ACTIONS(1715), - [anon_sym_signed] = ACTIONS(1715), - [anon_sym_unsigned] = ACTIONS(1715), - [anon_sym_long] = ACTIONS(1715), - [anon_sym_short] = ACTIONS(1715), - [sym_primitive_type] = ACTIONS(1715), - [anon_sym_enum] = ACTIONS(1715), - [anon_sym_class] = ACTIONS(1715), - [anon_sym_struct] = ACTIONS(1715), - [anon_sym_union] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_switch] = ACTIONS(1715), - [anon_sym_case] = ACTIONS(1715), - [anon_sym_default] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_goto] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_sizeof] = ACTIONS(1715), - [sym_number_literal] = ACTIONS(1717), - [anon_sym_L_SQUOTE] = ACTIONS(1717), - [anon_sym_u_SQUOTE] = ACTIONS(1717), - [anon_sym_U_SQUOTE] = ACTIONS(1717), - [anon_sym_u8_SQUOTE] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_L_DQUOTE] = ACTIONS(1717), - [anon_sym_u_DQUOTE] = ACTIONS(1717), - [anon_sym_U_DQUOTE] = ACTIONS(1717), - [anon_sym_u8_DQUOTE] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym_true] = ACTIONS(1715), - [sym_false] = ACTIONS(1715), - [sym_null] = ACTIONS(1715), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1715), - [anon_sym_virtual] = ACTIONS(1715), - [anon_sym_explicit] = ACTIONS(1715), - [sym_auto] = ACTIONS(1715), - [anon_sym_typename] = ACTIONS(1715), - [anon_sym_template] = ACTIONS(1715), - [anon_sym_operator] = ACTIONS(1715), - [anon_sym_delete] = ACTIONS(1715), - [anon_sym_throw] = ACTIONS(1715), - [anon_sym_namespace] = ACTIONS(1715), - [anon_sym_using] = ACTIONS(1715), - [anon_sym_static_assert] = ACTIONS(1715), - [anon_sym_co_return] = ACTIONS(1715), - [anon_sym_co_yield] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_co_await] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [sym_this] = ACTIONS(1715), - [sym_nullptr] = ACTIONS(1715), - [sym_alone_macro] = ACTIONS(1717), - [aux_sym_alone_macro_call_token1] = ACTIONS(1715), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1715), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_FORWARD] = ACTIONS(1715), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1715), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1715), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1715), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1715), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_PS_GET] = ACTIONS(1715), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1715), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1715), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1715), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1715), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1715), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1715), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1715), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1715), - [anon_sym_MOZ_COLD] = ACTIONS(1715), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1715), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1715), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1715), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1715), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1715), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1715), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1715), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1715), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1715), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1715), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1715), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1715), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1715), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_NONNULL] = ACTIONS(1715), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1715), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1715), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1715), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1715), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1715), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1715), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1715), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1715), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1715), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1715), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1715), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1715), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1715), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1715), - [anon_sym_MOZ_RAII] = ACTIONS(1715), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1715), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1715), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1715), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1715), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1715), - [sym_raw_string_literal] = ACTIONS(1717), - }, - [638] = { - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1895), - [aux_sym_preproc_include_token1] = ACTIONS(1895), - [aux_sym_preproc_def_token1] = ACTIONS(1895), - [aux_sym_preproc_if_token1] = ACTIONS(1895), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1895), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1895), - [sym_preproc_directive] = ACTIONS(1895), - [anon_sym_LPAREN2] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1895), - [anon_sym_PLUS] = ACTIONS(1895), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_AMP_AMP] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_typedef] = ACTIONS(1895), - [anon_sym_extern] = ACTIONS(1895), - [anon_sym___attribute__] = ACTIONS(1895), - [anon_sym_COLON_COLON] = ACTIONS(1897), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1897), - [anon_sym___declspec] = ACTIONS(1895), - [anon_sym___based] = ACTIONS(1895), - [anon_sym___cdecl] = ACTIONS(1895), - [anon_sym___clrcall] = ACTIONS(1895), - [anon_sym___stdcall] = ACTIONS(1895), - [anon_sym___fastcall] = ACTIONS(1895), - [anon_sym___thiscall] = ACTIONS(1895), - [anon_sym___vectorcall] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1895), - [anon_sym_static] = ACTIONS(1895), - [anon_sym_register] = ACTIONS(1895), - [anon_sym_inline] = ACTIONS(1895), - [anon_sym_thread_local] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [anon_sym_volatile] = ACTIONS(1895), - [anon_sym_restrict] = ACTIONS(1895), - [anon_sym__Atomic] = ACTIONS(1895), - [anon_sym_mutable] = ACTIONS(1895), - [anon_sym_constexpr] = ACTIONS(1895), - [anon_sym_signed] = ACTIONS(1895), - [anon_sym_unsigned] = ACTIONS(1895), - [anon_sym_long] = ACTIONS(1895), - [anon_sym_short] = ACTIONS(1895), - [sym_primitive_type] = ACTIONS(1895), - [anon_sym_enum] = ACTIONS(1895), - [anon_sym_class] = ACTIONS(1895), - [anon_sym_struct] = ACTIONS(1895), - [anon_sym_union] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_switch] = ACTIONS(1895), - [anon_sym_case] = ACTIONS(1895), - [anon_sym_default] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_do] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_goto] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_sizeof] = ACTIONS(1895), - [sym_number_literal] = ACTIONS(1897), - [anon_sym_L_SQUOTE] = ACTIONS(1897), - [anon_sym_u_SQUOTE] = ACTIONS(1897), - [anon_sym_U_SQUOTE] = ACTIONS(1897), - [anon_sym_u8_SQUOTE] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_L_DQUOTE] = ACTIONS(1897), - [anon_sym_u_DQUOTE] = ACTIONS(1897), - [anon_sym_U_DQUOTE] = ACTIONS(1897), - [anon_sym_u8_DQUOTE] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym_true] = ACTIONS(1895), - [sym_false] = ACTIONS(1895), - [sym_null] = ACTIONS(1895), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1895), - [anon_sym_virtual] = ACTIONS(1895), - [anon_sym_explicit] = ACTIONS(1895), - [sym_auto] = ACTIONS(1895), - [anon_sym_typename] = ACTIONS(1895), - [anon_sym_template] = ACTIONS(1895), - [anon_sym_operator] = ACTIONS(1895), - [anon_sym_delete] = ACTIONS(1895), - [anon_sym_throw] = ACTIONS(1895), - [anon_sym_namespace] = ACTIONS(1895), - [anon_sym_using] = ACTIONS(1895), - [anon_sym_static_assert] = ACTIONS(1895), - [anon_sym_co_return] = ACTIONS(1895), - [anon_sym_co_yield] = ACTIONS(1895), - [anon_sym_try] = ACTIONS(1895), - [anon_sym_co_await] = ACTIONS(1895), - [anon_sym_new] = ACTIONS(1895), - [sym_this] = ACTIONS(1895), - [sym_nullptr] = ACTIONS(1895), - [sym_alone_macro] = ACTIONS(1897), - [aux_sym_alone_macro_call_token1] = ACTIONS(1895), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1895), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_FORWARD] = ACTIONS(1895), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1895), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1895), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1895), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1895), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_PS_GET] = ACTIONS(1895), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1895), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1895), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1895), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1895), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1895), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1895), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1895), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1895), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1895), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1895), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1895), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1895), - [anon_sym_MOZ_COLD] = ACTIONS(1895), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1895), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1895), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1895), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1895), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1895), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1895), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1895), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1895), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1895), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1895), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1895), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1895), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1895), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1895), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1895), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1895), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1895), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1895), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1895), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1895), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1895), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_NONNULL] = ACTIONS(1895), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1895), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1895), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1895), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1895), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1895), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_NORETURN] = ACTIONS(1895), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1895), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1895), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1895), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1895), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1895), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1895), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1895), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1895), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1895), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1895), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1895), - [anon_sym_MOZ_RAII] = ACTIONS(1895), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1895), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1895), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1895), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1895), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1895), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1895), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1895), - [sym_raw_string_literal] = ACTIONS(1897), - }, - [639] = { - [sym_identifier] = ACTIONS(1827), - [aux_sym_preproc_include_token1] = ACTIONS(1827), - [aux_sym_preproc_def_token1] = ACTIONS(1827), - [aux_sym_preproc_if_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1827), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_BANG] = ACTIONS(1829), - [anon_sym_TILDE] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_AMP_AMP] = ACTIONS(1829), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_typedef] = ACTIONS(1827), - [anon_sym_extern] = ACTIONS(1827), - [anon_sym___attribute__] = ACTIONS(1827), - [anon_sym_COLON_COLON] = ACTIONS(1829), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1829), - [anon_sym___declspec] = ACTIONS(1827), - [anon_sym___based] = ACTIONS(1827), - [anon_sym___cdecl] = ACTIONS(1827), - [anon_sym___clrcall] = ACTIONS(1827), - [anon_sym___stdcall] = ACTIONS(1827), - [anon_sym___fastcall] = ACTIONS(1827), - [anon_sym___thiscall] = ACTIONS(1827), - [anon_sym___vectorcall] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1829), - [anon_sym_RBRACE] = ACTIONS(1829), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_static] = ACTIONS(1827), - [anon_sym_register] = ACTIONS(1827), - [anon_sym_inline] = ACTIONS(1827), - [anon_sym_thread_local] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_volatile] = ACTIONS(1827), - [anon_sym_restrict] = ACTIONS(1827), - [anon_sym__Atomic] = ACTIONS(1827), - [anon_sym_mutable] = ACTIONS(1827), - [anon_sym_constexpr] = ACTIONS(1827), - [anon_sym_signed] = ACTIONS(1827), - [anon_sym_unsigned] = ACTIONS(1827), - [anon_sym_long] = ACTIONS(1827), - [anon_sym_short] = ACTIONS(1827), - [sym_primitive_type] = ACTIONS(1827), - [anon_sym_enum] = ACTIONS(1827), - [anon_sym_class] = ACTIONS(1827), - [anon_sym_struct] = ACTIONS(1827), - [anon_sym_union] = ACTIONS(1827), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_switch] = ACTIONS(1827), - [anon_sym_case] = ACTIONS(1827), - [anon_sym_default] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_for] = ACTIONS(1827), - [anon_sym_return] = ACTIONS(1827), - [anon_sym_break] = ACTIONS(1827), - [anon_sym_continue] = ACTIONS(1827), - [anon_sym_goto] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1829), - [anon_sym_PLUS_PLUS] = ACTIONS(1829), - [anon_sym_sizeof] = ACTIONS(1827), - [sym_number_literal] = ACTIONS(1829), - [anon_sym_L_SQUOTE] = ACTIONS(1829), - [anon_sym_u_SQUOTE] = ACTIONS(1829), - [anon_sym_U_SQUOTE] = ACTIONS(1829), - [anon_sym_u8_SQUOTE] = ACTIONS(1829), - [anon_sym_SQUOTE] = ACTIONS(1829), - [anon_sym_L_DQUOTE] = ACTIONS(1829), - [anon_sym_u_DQUOTE] = ACTIONS(1829), - [anon_sym_U_DQUOTE] = ACTIONS(1829), - [anon_sym_u8_DQUOTE] = ACTIONS(1829), - [anon_sym_DQUOTE] = ACTIONS(1829), - [sym_true] = ACTIONS(1827), - [sym_false] = ACTIONS(1827), - [sym_null] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1827), - [anon_sym_virtual] = ACTIONS(1827), - [anon_sym_explicit] = ACTIONS(1827), - [sym_auto] = ACTIONS(1827), - [anon_sym_typename] = ACTIONS(1827), - [anon_sym_template] = ACTIONS(1827), - [anon_sym_operator] = ACTIONS(1827), - [anon_sym_delete] = ACTIONS(1827), - [anon_sym_throw] = ACTIONS(1827), - [anon_sym_namespace] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(1827), - [anon_sym_static_assert] = ACTIONS(1827), - [anon_sym_co_return] = ACTIONS(1827), - [anon_sym_co_yield] = ACTIONS(1827), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_co_await] = ACTIONS(1827), - [anon_sym_new] = ACTIONS(1827), - [sym_this] = ACTIONS(1827), - [sym_nullptr] = ACTIONS(1827), - [sym_alone_macro] = ACTIONS(1829), - [aux_sym_alone_macro_call_token1] = ACTIONS(1827), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1827), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_FORWARD] = ACTIONS(1827), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1827), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1827), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1827), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1827), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_PS_GET] = ACTIONS(1827), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1827), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1827), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1827), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1827), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1827), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1827), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1827), - [anon_sym_MOZ_COLD] = ACTIONS(1827), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1827), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1827), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1827), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1827), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1827), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1827), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1827), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1827), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1827), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1827), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1827), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1827), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1827), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_NONNULL] = ACTIONS(1827), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1827), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1827), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1827), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1827), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1827), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1827), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1827), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1827), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1827), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1827), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1827), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1827), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1827), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1827), - [anon_sym_MOZ_RAII] = ACTIONS(1827), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1827), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1827), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1827), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1827), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1827), - [sym_raw_string_literal] = ACTIONS(1829), - }, - [640] = { - [sym_identifier] = ACTIONS(1887), - [aux_sym_preproc_include_token1] = ACTIONS(1887), - [aux_sym_preproc_def_token1] = ACTIONS(1887), - [aux_sym_preproc_if_token1] = ACTIONS(1887), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1887), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1887), - [sym_preproc_directive] = ACTIONS(1887), - [anon_sym_LPAREN2] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_typedef] = ACTIONS(1887), - [anon_sym_extern] = ACTIONS(1887), - [anon_sym___attribute__] = ACTIONS(1887), - [anon_sym_COLON_COLON] = ACTIONS(1889), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1889), - [anon_sym___declspec] = ACTIONS(1887), - [anon_sym___based] = ACTIONS(1887), - [anon_sym___cdecl] = ACTIONS(1887), - [anon_sym___clrcall] = ACTIONS(1887), - [anon_sym___stdcall] = ACTIONS(1887), - [anon_sym___fastcall] = ACTIONS(1887), - [anon_sym___thiscall] = ACTIONS(1887), - [anon_sym___vectorcall] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_register] = ACTIONS(1887), - [anon_sym_inline] = ACTIONS(1887), - [anon_sym_thread_local] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [anon_sym_volatile] = ACTIONS(1887), - [anon_sym_restrict] = ACTIONS(1887), - [anon_sym__Atomic] = ACTIONS(1887), - [anon_sym_mutable] = ACTIONS(1887), - [anon_sym_constexpr] = ACTIONS(1887), - [anon_sym_signed] = ACTIONS(1887), - [anon_sym_unsigned] = ACTIONS(1887), - [anon_sym_long] = ACTIONS(1887), - [anon_sym_short] = ACTIONS(1887), - [sym_primitive_type] = ACTIONS(1887), - [anon_sym_enum] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1887), - [anon_sym_union] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_switch] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_default] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_do] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_goto] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_sizeof] = ACTIONS(1887), - [sym_number_literal] = ACTIONS(1889), - [anon_sym_L_SQUOTE] = ACTIONS(1889), - [anon_sym_u_SQUOTE] = ACTIONS(1889), - [anon_sym_U_SQUOTE] = ACTIONS(1889), - [anon_sym_u8_SQUOTE] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1889), - [anon_sym_L_DQUOTE] = ACTIONS(1889), - [anon_sym_u_DQUOTE] = ACTIONS(1889), - [anon_sym_U_DQUOTE] = ACTIONS(1889), - [anon_sym_u8_DQUOTE] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [sym_true] = ACTIONS(1887), - [sym_false] = ACTIONS(1887), - [sym_null] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1887), - [anon_sym_virtual] = ACTIONS(1887), - [anon_sym_explicit] = ACTIONS(1887), - [sym_auto] = ACTIONS(1887), - [anon_sym_typename] = ACTIONS(1887), - [anon_sym_template] = ACTIONS(1887), - [anon_sym_operator] = ACTIONS(1887), - [anon_sym_delete] = ACTIONS(1887), - [anon_sym_throw] = ACTIONS(1887), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_using] = ACTIONS(1887), - [anon_sym_static_assert] = ACTIONS(1887), - [anon_sym_co_return] = ACTIONS(1887), - [anon_sym_co_yield] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_co_await] = ACTIONS(1887), - [anon_sym_new] = ACTIONS(1887), - [sym_this] = ACTIONS(1887), - [sym_nullptr] = ACTIONS(1887), - [sym_alone_macro] = ACTIONS(1889), - [aux_sym_alone_macro_call_token1] = ACTIONS(1887), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1887), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_FORWARD] = ACTIONS(1887), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1887), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1887), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1887), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1887), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_PS_GET] = ACTIONS(1887), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1887), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1887), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1887), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1887), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1887), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1887), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1887), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1887), - [anon_sym_MOZ_COLD] = ACTIONS(1887), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1887), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1887), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1887), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1887), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1887), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1887), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1887), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1887), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1887), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1887), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1887), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1887), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1887), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_NONNULL] = ACTIONS(1887), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1887), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1887), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1887), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1887), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1887), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1887), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1887), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1887), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1887), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1887), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1887), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1887), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1887), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1887), - [anon_sym_MOZ_RAII] = ACTIONS(1887), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1887), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1887), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1887), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1887), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1887), - [sym_raw_string_literal] = ACTIONS(1889), - }, - [641] = { - [sym_identifier] = ACTIONS(1703), - [aux_sym_preproc_include_token1] = ACTIONS(1703), - [aux_sym_preproc_def_token1] = ACTIONS(1703), - [aux_sym_preproc_if_token1] = ACTIONS(1703), - [aux_sym_preproc_if_token2] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1703), - [sym_preproc_directive] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_typedef] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym___attribute__] = ACTIONS(1703), - [anon_sym_COLON_COLON] = ACTIONS(1705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1705), - [anon_sym___declspec] = ACTIONS(1703), - [anon_sym___based] = ACTIONS(1703), - [anon_sym___cdecl] = ACTIONS(1703), - [anon_sym___clrcall] = ACTIONS(1703), - [anon_sym___stdcall] = ACTIONS(1703), - [anon_sym___fastcall] = ACTIONS(1703), - [anon_sym___thiscall] = ACTIONS(1703), - [anon_sym___vectorcall] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_inline] = ACTIONS(1703), - [anon_sym_thread_local] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [anon_sym_volatile] = ACTIONS(1703), - [anon_sym_restrict] = ACTIONS(1703), - [anon_sym__Atomic] = ACTIONS(1703), - [anon_sym_mutable] = ACTIONS(1703), - [anon_sym_constexpr] = ACTIONS(1703), - [anon_sym_signed] = ACTIONS(1703), - [anon_sym_unsigned] = ACTIONS(1703), - [anon_sym_long] = ACTIONS(1703), - [anon_sym_short] = ACTIONS(1703), - [sym_primitive_type] = ACTIONS(1703), - [anon_sym_enum] = ACTIONS(1703), - [anon_sym_class] = ACTIONS(1703), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_switch] = ACTIONS(1703), - [anon_sym_case] = ACTIONS(1703), - [anon_sym_default] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_goto] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_PLUS_PLUS] = ACTIONS(1705), - [anon_sym_sizeof] = ACTIONS(1703), - [sym_number_literal] = ACTIONS(1705), - [anon_sym_L_SQUOTE] = ACTIONS(1705), - [anon_sym_u_SQUOTE] = ACTIONS(1705), - [anon_sym_U_SQUOTE] = ACTIONS(1705), - [anon_sym_u8_SQUOTE] = ACTIONS(1705), - [anon_sym_SQUOTE] = ACTIONS(1705), - [anon_sym_L_DQUOTE] = ACTIONS(1705), - [anon_sym_u_DQUOTE] = ACTIONS(1705), - [anon_sym_U_DQUOTE] = ACTIONS(1705), - [anon_sym_u8_DQUOTE] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym_true] = ACTIONS(1703), - [sym_false] = ACTIONS(1703), - [sym_null] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1703), - [anon_sym_virtual] = ACTIONS(1703), - [anon_sym_explicit] = ACTIONS(1703), - [sym_auto] = ACTIONS(1703), - [anon_sym_typename] = ACTIONS(1703), - [anon_sym_template] = ACTIONS(1703), - [anon_sym_operator] = ACTIONS(1703), - [anon_sym_delete] = ACTIONS(1703), - [anon_sym_throw] = ACTIONS(1703), - [anon_sym_namespace] = ACTIONS(1703), - [anon_sym_using] = ACTIONS(1703), - [anon_sym_static_assert] = ACTIONS(1703), - [anon_sym_co_return] = ACTIONS(1703), - [anon_sym_co_yield] = ACTIONS(1703), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_co_await] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [sym_this] = ACTIONS(1703), - [sym_nullptr] = ACTIONS(1703), - [sym_alone_macro] = ACTIONS(1705), - [aux_sym_alone_macro_call_token1] = ACTIONS(1703), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1703), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_FORWARD] = ACTIONS(1703), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1703), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1703), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1703), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1703), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_PS_GET] = ACTIONS(1703), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1703), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1703), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1703), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1703), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1703), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1703), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1703), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1703), - [anon_sym_MOZ_COLD] = ACTIONS(1703), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1703), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1703), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1703), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1703), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1703), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1703), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1703), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1703), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1703), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1703), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1703), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1703), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1703), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_NONNULL] = ACTIONS(1703), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1703), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1703), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1703), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1703), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1703), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1703), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1703), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1703), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1703), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1703), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1703), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1703), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1703), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1703), - [anon_sym_MOZ_RAII] = ACTIONS(1703), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1703), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1703), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1703), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1703), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1703), - [sym_raw_string_literal] = ACTIONS(1705), - }, - [642] = { - [sym_identifier] = ACTIONS(1811), - [aux_sym_preproc_include_token1] = ACTIONS(1811), - [aux_sym_preproc_def_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token1] = ACTIONS(1811), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1811), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1811), - [sym_preproc_directive] = ACTIONS(1811), - [anon_sym_LPAREN2] = ACTIONS(1813), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_AMP_AMP] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1813), - [anon_sym_typedef] = ACTIONS(1811), - [anon_sym_extern] = ACTIONS(1811), - [anon_sym___attribute__] = ACTIONS(1811), - [anon_sym_COLON_COLON] = ACTIONS(1813), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), - [anon_sym___declspec] = ACTIONS(1811), - [anon_sym___based] = ACTIONS(1811), - [anon_sym___cdecl] = ACTIONS(1811), - [anon_sym___clrcall] = ACTIONS(1811), - [anon_sym___stdcall] = ACTIONS(1811), - [anon_sym___fastcall] = ACTIONS(1811), - [anon_sym___thiscall] = ACTIONS(1811), - [anon_sym___vectorcall] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_RBRACE] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_static] = ACTIONS(1811), - [anon_sym_register] = ACTIONS(1811), - [anon_sym_inline] = ACTIONS(1811), - [anon_sym_thread_local] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [anon_sym_volatile] = ACTIONS(1811), - [anon_sym_restrict] = ACTIONS(1811), - [anon_sym__Atomic] = ACTIONS(1811), - [anon_sym_mutable] = ACTIONS(1811), - [anon_sym_constexpr] = ACTIONS(1811), - [anon_sym_signed] = ACTIONS(1811), - [anon_sym_unsigned] = ACTIONS(1811), - [anon_sym_long] = ACTIONS(1811), - [anon_sym_short] = ACTIONS(1811), - [sym_primitive_type] = ACTIONS(1811), - [anon_sym_enum] = ACTIONS(1811), - [anon_sym_class] = ACTIONS(1811), - [anon_sym_struct] = ACTIONS(1811), - [anon_sym_union] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_switch] = ACTIONS(1811), - [anon_sym_case] = ACTIONS(1811), - [anon_sym_default] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_goto] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_sizeof] = ACTIONS(1811), - [sym_number_literal] = ACTIONS(1813), - [anon_sym_L_SQUOTE] = ACTIONS(1813), - [anon_sym_u_SQUOTE] = ACTIONS(1813), - [anon_sym_U_SQUOTE] = ACTIONS(1813), - [anon_sym_u8_SQUOTE] = ACTIONS(1813), - [anon_sym_SQUOTE] = ACTIONS(1813), - [anon_sym_L_DQUOTE] = ACTIONS(1813), - [anon_sym_u_DQUOTE] = ACTIONS(1813), - [anon_sym_U_DQUOTE] = ACTIONS(1813), - [anon_sym_u8_DQUOTE] = ACTIONS(1813), - [anon_sym_DQUOTE] = ACTIONS(1813), - [sym_true] = ACTIONS(1811), - [sym_false] = ACTIONS(1811), - [sym_null] = ACTIONS(1811), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1811), - [anon_sym_virtual] = ACTIONS(1811), - [anon_sym_explicit] = ACTIONS(1811), - [sym_auto] = ACTIONS(1811), - [anon_sym_typename] = ACTIONS(1811), - [anon_sym_template] = ACTIONS(1811), - [anon_sym_operator] = ACTIONS(1811), - [anon_sym_delete] = ACTIONS(1811), - [anon_sym_throw] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(1811), - [anon_sym_static_assert] = ACTIONS(1811), - [anon_sym_co_return] = ACTIONS(1811), - [anon_sym_co_yield] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1811), - [anon_sym_co_await] = ACTIONS(1811), - [anon_sym_new] = ACTIONS(1811), - [sym_this] = ACTIONS(1811), - [sym_nullptr] = ACTIONS(1811), - [sym_alone_macro] = ACTIONS(1813), - [aux_sym_alone_macro_call_token1] = ACTIONS(1811), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1811), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_FORWARD] = ACTIONS(1811), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1811), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1811), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1811), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1811), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_PS_GET] = ACTIONS(1811), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1811), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1811), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1811), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1811), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1811), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1811), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1811), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1811), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1811), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1811), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1811), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1811), - [anon_sym_MOZ_COLD] = ACTIONS(1811), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1811), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1811), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1811), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1811), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1811), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1811), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1811), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1811), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1811), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1811), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1811), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1811), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1811), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1811), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1811), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1811), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1811), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1811), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1811), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1811), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1811), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_NONNULL] = ACTIONS(1811), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1811), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1811), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1811), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1811), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1811), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_NORETURN] = ACTIONS(1811), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1811), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1811), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1811), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1811), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1811), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1811), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1811), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1811), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1811), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1811), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1811), - [anon_sym_MOZ_RAII] = ACTIONS(1811), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1811), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1811), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1811), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1811), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1811), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1811), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1811), - [sym_raw_string_literal] = ACTIONS(1813), - }, - [643] = { - [ts_builtin_sym_end] = ACTIONS(1901), - [sym_identifier] = ACTIONS(1899), - [aux_sym_preproc_include_token1] = ACTIONS(1899), - [aux_sym_preproc_def_token1] = ACTIONS(1899), - [aux_sym_preproc_if_token1] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1899), - [sym_preproc_directive] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1901), - [anon_sym_BANG] = ACTIONS(1901), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_AMP_AMP] = ACTIONS(1901), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_typedef] = ACTIONS(1899), - [anon_sym_extern] = ACTIONS(1899), - [anon_sym___attribute__] = ACTIONS(1899), - [anon_sym_COLON_COLON] = ACTIONS(1901), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1901), - [anon_sym___declspec] = ACTIONS(1899), - [anon_sym___based] = ACTIONS(1899), - [anon_sym___cdecl] = ACTIONS(1899), - [anon_sym___clrcall] = ACTIONS(1899), - [anon_sym___stdcall] = ACTIONS(1899), - [anon_sym___fastcall] = ACTIONS(1899), - [anon_sym___thiscall] = ACTIONS(1899), - [anon_sym___vectorcall] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_register] = ACTIONS(1899), - [anon_sym_inline] = ACTIONS(1899), - [anon_sym_thread_local] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_volatile] = ACTIONS(1899), - [anon_sym_restrict] = ACTIONS(1899), - [anon_sym__Atomic] = ACTIONS(1899), - [anon_sym_mutable] = ACTIONS(1899), - [anon_sym_constexpr] = ACTIONS(1899), - [anon_sym_signed] = ACTIONS(1899), - [anon_sym_unsigned] = ACTIONS(1899), - [anon_sym_long] = ACTIONS(1899), - [anon_sym_short] = ACTIONS(1899), - [sym_primitive_type] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_class] = ACTIONS(1899), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_switch] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1899), - [anon_sym_default] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_goto] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [anon_sym_PLUS_PLUS] = ACTIONS(1901), - [anon_sym_sizeof] = ACTIONS(1899), - [sym_number_literal] = ACTIONS(1901), - [anon_sym_L_SQUOTE] = ACTIONS(1901), - [anon_sym_u_SQUOTE] = ACTIONS(1901), - [anon_sym_U_SQUOTE] = ACTIONS(1901), - [anon_sym_u8_SQUOTE] = ACTIONS(1901), - [anon_sym_SQUOTE] = ACTIONS(1901), - [anon_sym_L_DQUOTE] = ACTIONS(1901), - [anon_sym_u_DQUOTE] = ACTIONS(1901), - [anon_sym_U_DQUOTE] = ACTIONS(1901), - [anon_sym_u8_DQUOTE] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1901), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_null] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1899), - [anon_sym_virtual] = ACTIONS(1899), - [anon_sym_explicit] = ACTIONS(1899), - [sym_auto] = ACTIONS(1899), - [anon_sym_typename] = ACTIONS(1899), - [anon_sym_template] = ACTIONS(1899), - [anon_sym_operator] = ACTIONS(1899), - [anon_sym_delete] = ACTIONS(1899), - [anon_sym_throw] = ACTIONS(1899), - [anon_sym_namespace] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(1899), - [anon_sym_static_assert] = ACTIONS(1899), - [anon_sym_co_return] = ACTIONS(1899), - [anon_sym_co_yield] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_co_await] = ACTIONS(1899), - [anon_sym_new] = ACTIONS(1899), - [sym_this] = ACTIONS(1899), - [sym_nullptr] = ACTIONS(1899), - [sym_alone_macro] = ACTIONS(1901), - [aux_sym_alone_macro_call_token1] = ACTIONS(1899), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1899), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_FORWARD] = ACTIONS(1899), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1899), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1899), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1899), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1899), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_PS_GET] = ACTIONS(1899), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1899), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1899), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1899), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1899), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1899), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1899), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1899), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1899), - [anon_sym_MOZ_COLD] = ACTIONS(1899), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1899), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1899), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1899), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1899), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1899), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1899), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1899), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1899), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1899), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1899), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1899), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1899), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1899), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_NONNULL] = ACTIONS(1899), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1899), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1899), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1899), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1899), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1899), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1899), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1899), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1899), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1899), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1899), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1899), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1899), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1899), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1899), - [anon_sym_MOZ_RAII] = ACTIONS(1899), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1899), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1899), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1899), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1899), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1899), - [sym_raw_string_literal] = ACTIONS(1901), - }, - [644] = { - [ts_builtin_sym_end] = ACTIONS(1833), - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_include_token1] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1831), - [aux_sym_preproc_if_token1] = ACTIONS(1831), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1831), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1831), - [sym_preproc_directive] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1833), - [anon_sym_BANG] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_AMP_AMP] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_typedef] = ACTIONS(1831), - [anon_sym_extern] = ACTIONS(1831), - [anon_sym___attribute__] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1833), - [anon_sym___declspec] = ACTIONS(1831), - [anon_sym___based] = ACTIONS(1831), - [anon_sym___cdecl] = ACTIONS(1831), - [anon_sym___clrcall] = ACTIONS(1831), - [anon_sym___stdcall] = ACTIONS(1831), - [anon_sym___fastcall] = ACTIONS(1831), - [anon_sym___thiscall] = ACTIONS(1831), - [anon_sym___vectorcall] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_static] = ACTIONS(1831), - [anon_sym_register] = ACTIONS(1831), - [anon_sym_inline] = ACTIONS(1831), - [anon_sym_thread_local] = ACTIONS(1831), - [anon_sym_const] = ACTIONS(1831), - [anon_sym_volatile] = ACTIONS(1831), - [anon_sym_restrict] = ACTIONS(1831), - [anon_sym__Atomic] = ACTIONS(1831), - [anon_sym_mutable] = ACTIONS(1831), - [anon_sym_constexpr] = ACTIONS(1831), - [anon_sym_signed] = ACTIONS(1831), - [anon_sym_unsigned] = ACTIONS(1831), - [anon_sym_long] = ACTIONS(1831), - [anon_sym_short] = ACTIONS(1831), - [sym_primitive_type] = ACTIONS(1831), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_class] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(1831), - [anon_sym_union] = ACTIONS(1831), - [anon_sym_if] = ACTIONS(1831), - [anon_sym_switch] = ACTIONS(1831), - [anon_sym_case] = ACTIONS(1831), - [anon_sym_default] = ACTIONS(1831), - [anon_sym_while] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_for] = ACTIONS(1831), - [anon_sym_return] = ACTIONS(1831), - [anon_sym_break] = ACTIONS(1831), - [anon_sym_continue] = ACTIONS(1831), - [anon_sym_goto] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1833), - [anon_sym_PLUS_PLUS] = ACTIONS(1833), - [anon_sym_sizeof] = ACTIONS(1831), - [sym_number_literal] = ACTIONS(1833), - [anon_sym_L_SQUOTE] = ACTIONS(1833), - [anon_sym_u_SQUOTE] = ACTIONS(1833), - [anon_sym_U_SQUOTE] = ACTIONS(1833), - [anon_sym_u8_SQUOTE] = ACTIONS(1833), - [anon_sym_SQUOTE] = ACTIONS(1833), - [anon_sym_L_DQUOTE] = ACTIONS(1833), - [anon_sym_u_DQUOTE] = ACTIONS(1833), - [anon_sym_U_DQUOTE] = ACTIONS(1833), - [anon_sym_u8_DQUOTE] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(1833), - [sym_true] = ACTIONS(1831), - [sym_false] = ACTIONS(1831), - [sym_null] = ACTIONS(1831), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1831), - [anon_sym_virtual] = ACTIONS(1831), - [anon_sym_explicit] = ACTIONS(1831), - [sym_auto] = ACTIONS(1831), - [anon_sym_typename] = ACTIONS(1831), - [anon_sym_template] = ACTIONS(1831), - [anon_sym_operator] = ACTIONS(1831), - [anon_sym_delete] = ACTIONS(1831), - [anon_sym_throw] = ACTIONS(1831), - [anon_sym_namespace] = ACTIONS(1831), - [anon_sym_using] = ACTIONS(1831), - [anon_sym_static_assert] = ACTIONS(1831), - [anon_sym_co_return] = ACTIONS(1831), - [anon_sym_co_yield] = ACTIONS(1831), - [anon_sym_try] = ACTIONS(1831), - [anon_sym_co_await] = ACTIONS(1831), - [anon_sym_new] = ACTIONS(1831), - [sym_this] = ACTIONS(1831), - [sym_nullptr] = ACTIONS(1831), - [sym_alone_macro] = ACTIONS(1833), - [aux_sym_alone_macro_call_token1] = ACTIONS(1831), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1831), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_FORWARD] = ACTIONS(1831), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1831), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1831), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1831), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1831), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_PS_GET] = ACTIONS(1831), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1831), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1831), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1831), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1831), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1831), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1831), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1831), - [anon_sym_MOZ_COLD] = ACTIONS(1831), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1831), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1831), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1831), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1831), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1831), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1831), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1831), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1831), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1831), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1831), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1831), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1831), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1831), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_NONNULL] = ACTIONS(1831), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1831), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1831), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1831), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1831), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1831), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1831), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1831), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1831), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1831), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1831), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1831), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1831), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1831), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1831), - [anon_sym_MOZ_RAII] = ACTIONS(1831), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1831), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1831), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1831), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1831), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1831), - [sym_raw_string_literal] = ACTIONS(1833), - }, - [645] = { - [ts_builtin_sym_end] = ACTIONS(1905), - [sym_identifier] = ACTIONS(1903), - [aux_sym_preproc_include_token1] = ACTIONS(1903), - [aux_sym_preproc_def_token1] = ACTIONS(1903), - [aux_sym_preproc_if_token1] = ACTIONS(1903), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1903), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1903), - [sym_preproc_directive] = ACTIONS(1903), - [anon_sym_LPAREN2] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1903), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_AMP_AMP] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_SEMI] = ACTIONS(1905), - [anon_sym_typedef] = ACTIONS(1903), + }, + [STATE(198)] = { + [sym_identifier] = ACTIONS(2210), + [aux_sym_preproc_include_token1] = ACTIONS(2210), + [aux_sym_preproc_def_token1] = ACTIONS(2210), + [aux_sym_preproc_if_token1] = ACTIONS(2210), + [aux_sym_preproc_if_token2] = ACTIONS(2210), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2210), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2210), + [aux_sym_preproc_else_token1] = ACTIONS(2210), + [aux_sym_preproc_elif_token1] = ACTIONS(2210), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2210), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2210), + [sym_preproc_directive] = ACTIONS(2210), + [anon_sym_LPAREN2] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_PLUS] = ACTIONS(2210), + [anon_sym_STAR] = ACTIONS(2212), + [anon_sym_AMP_AMP] = ACTIONS(2212), + [anon_sym_AMP] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym___extension__] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_virtual] = ACTIONS(2210), + [anon_sym_extern] = ACTIONS(2210), + [anon_sym___attribute__] = ACTIONS(2210), + [anon_sym___attribute] = ACTIONS(2210), + [anon_sym_COLON_COLON] = ACTIONS(2212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2212), + [anon_sym___declspec] = ACTIONS(2210), + [anon_sym___based] = ACTIONS(2210), + [anon_sym___cdecl] = ACTIONS(2210), + [anon_sym___clrcall] = ACTIONS(2210), + [anon_sym___stdcall] = ACTIONS(2210), + [anon_sym___fastcall] = ACTIONS(2210), + [anon_sym___thiscall] = ACTIONS(2210), + [anon_sym___vectorcall] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_signed] = ACTIONS(2210), + [anon_sym_unsigned] = ACTIONS(2210), + [anon_sym_long] = ACTIONS(2210), + [anon_sym_short] = ACTIONS(2210), + [anon_sym_LBRACK] = ACTIONS(2210), + [anon_sym_static] = ACTIONS(2210), + [anon_sym_register] = ACTIONS(2210), + [anon_sym_inline] = ACTIONS(2210), + [anon_sym___inline] = ACTIONS(2210), + [anon_sym___inline__] = ACTIONS(2210), + [anon_sym___forceinline] = ACTIONS(2210), + [anon_sym_thread_local] = ACTIONS(2210), + [anon_sym___thread] = ACTIONS(2210), + [anon_sym_const] = ACTIONS(2210), + [anon_sym_constexpr] = ACTIONS(2210), + [anon_sym_volatile] = ACTIONS(2210), + [anon_sym_restrict] = ACTIONS(2210), + [anon_sym___restrict__] = ACTIONS(2210), + [anon_sym__Atomic] = ACTIONS(2210), + [anon_sym__Noreturn] = ACTIONS(2210), + [anon_sym_noreturn] = ACTIONS(2210), + [anon_sym__Nonnull] = ACTIONS(2210), + [anon_sym_mutable] = ACTIONS(2210), + [anon_sym_constinit] = ACTIONS(2210), + [anon_sym_consteval] = ACTIONS(2210), + [anon_sym_alignas] = ACTIONS(2210), + [anon_sym__Alignas] = ACTIONS(2210), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_enum] = ACTIONS(2210), + [anon_sym_class] = ACTIONS(2210), + [anon_sym_struct] = ACTIONS(2210), + [anon_sym_union] = ACTIONS(2210), + [anon_sym_if] = ACTIONS(2210), + [anon_sym_switch] = ACTIONS(2210), + [anon_sym_case] = ACTIONS(2210), + [anon_sym_default] = ACTIONS(2210), + [anon_sym_while] = ACTIONS(2210), + [anon_sym_do] = ACTIONS(2210), + [anon_sym_for] = ACTIONS(2210), + [anon_sym_return] = ACTIONS(2210), + [anon_sym_break] = ACTIONS(2210), + [anon_sym_continue] = ACTIONS(2210), + [anon_sym_goto] = ACTIONS(2210), + [anon_sym___try] = ACTIONS(2210), + [anon_sym___leave] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(2210), + [anon_sym_compl] = ACTIONS(2210), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_sizeof] = ACTIONS(2210), + [anon_sym___alignof__] = ACTIONS(2210), + [anon_sym___alignof] = ACTIONS(2210), + [anon_sym__alignof] = ACTIONS(2210), + [anon_sym_alignof] = ACTIONS(2210), + [anon_sym__Alignof] = ACTIONS(2210), + [anon_sym_offsetof] = ACTIONS(2210), + [anon_sym__Generic] = ACTIONS(2210), + [anon_sym_asm] = ACTIONS(2210), + [anon_sym___asm__] = ACTIONS(2210), + [anon_sym___asm] = ACTIONS(2210), + [sym_number_literal] = ACTIONS(2212), + [anon_sym_L_SQUOTE] = ACTIONS(2212), + [anon_sym_u_SQUOTE] = ACTIONS(2212), + [anon_sym_U_SQUOTE] = ACTIONS(2212), + [anon_sym_u8_SQUOTE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_L_DQUOTE] = ACTIONS(2212), + [anon_sym_u_DQUOTE] = ACTIONS(2212), + [anon_sym_U_DQUOTE] = ACTIONS(2212), + [anon_sym_u8_DQUOTE] = ACTIONS(2212), + [anon_sym_DQUOTE] = ACTIONS(2212), + [sym_true] = ACTIONS(2210), + [sym_false] = ACTIONS(2210), + [anon_sym_NULL] = ACTIONS(2210), + [anon_sym_nullptr] = ACTIONS(2210), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2210), + [anon_sym_decltype] = ACTIONS(2210), + [anon_sym_explicit] = ACTIONS(2210), + [anon_sym_typename] = ACTIONS(2210), + [anon_sym_template] = ACTIONS(2210), + [anon_sym_operator] = ACTIONS(2210), + [anon_sym_try] = ACTIONS(2210), + [anon_sym_delete] = ACTIONS(2210), + [anon_sym_throw] = ACTIONS(2210), + [anon_sym_namespace] = ACTIONS(2210), + [anon_sym_using] = ACTIONS(2210), + [anon_sym_static_assert] = ACTIONS(2210), + [anon_sym_concept] = ACTIONS(2210), + [anon_sym_co_return] = ACTIONS(2210), + [anon_sym_co_yield] = ACTIONS(2210), + [anon_sym_R_DQUOTE] = ACTIONS(2212), + [anon_sym_LR_DQUOTE] = ACTIONS(2212), + [anon_sym_uR_DQUOTE] = ACTIONS(2212), + [anon_sym_UR_DQUOTE] = ACTIONS(2212), + [anon_sym_u8R_DQUOTE] = ACTIONS(2212), + [anon_sym_co_await] = ACTIONS(2210), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2210), + [sym_this] = ACTIONS(2210), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2210), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_FORWARD] = ACTIONS(2210), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2210), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2210), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2210), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2210), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_PS_GET] = ACTIONS(2210), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2210), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2210), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2210), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2210), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2210), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2210), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2210), + [anon_sym_MOZ_COLD] = ACTIONS(2210), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2210), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2210), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2210), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2210), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2210), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2210), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2210), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2210), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2210), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2210), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2210), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2210), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2210), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_NONNULL] = ACTIONS(2210), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2210), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2210), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2210), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2210), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2210), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2210), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2210), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2210), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2210), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2210), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2210), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2210), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2210), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2210), + [anon_sym_MOZ_RAII] = ACTIONS(2210), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2210), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2210), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2210), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2210), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2210), + }, + [STATE(199)] = { + [sym_identifier] = ACTIONS(2214), + [aux_sym_preproc_include_token1] = ACTIONS(2214), + [aux_sym_preproc_def_token1] = ACTIONS(2214), + [aux_sym_preproc_if_token1] = ACTIONS(2214), + [aux_sym_preproc_if_token2] = ACTIONS(2214), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2214), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2214), + [aux_sym_preproc_else_token1] = ACTIONS(2214), + [aux_sym_preproc_elif_token1] = ACTIONS(2214), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2214), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2214), + [sym_preproc_directive] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [anon_sym_BANG] = ACTIONS(2216), + [anon_sym_TILDE] = ACTIONS(2216), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_STAR] = ACTIONS(2216), + [anon_sym_AMP_AMP] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym___extension__] = ACTIONS(2214), + [anon_sym_typedef] = ACTIONS(2214), + [anon_sym_virtual] = ACTIONS(2214), + [anon_sym_extern] = ACTIONS(2214), + [anon_sym___attribute__] = ACTIONS(2214), + [anon_sym___attribute] = ACTIONS(2214), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(2214), + [anon_sym___based] = ACTIONS(2214), + [anon_sym___cdecl] = ACTIONS(2214), + [anon_sym___clrcall] = ACTIONS(2214), + [anon_sym___stdcall] = ACTIONS(2214), + [anon_sym___fastcall] = ACTIONS(2214), + [anon_sym___thiscall] = ACTIONS(2214), + [anon_sym___vectorcall] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2216), + [anon_sym_signed] = ACTIONS(2214), + [anon_sym_unsigned] = ACTIONS(2214), + [anon_sym_long] = ACTIONS(2214), + [anon_sym_short] = ACTIONS(2214), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2214), + [anon_sym_register] = ACTIONS(2214), + [anon_sym_inline] = ACTIONS(2214), + [anon_sym___inline] = ACTIONS(2214), + [anon_sym___inline__] = ACTIONS(2214), + [anon_sym___forceinline] = ACTIONS(2214), + [anon_sym_thread_local] = ACTIONS(2214), + [anon_sym___thread] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [anon_sym_constexpr] = ACTIONS(2214), + [anon_sym_volatile] = ACTIONS(2214), + [anon_sym_restrict] = ACTIONS(2214), + [anon_sym___restrict__] = ACTIONS(2214), + [anon_sym__Atomic] = ACTIONS(2214), + [anon_sym__Noreturn] = ACTIONS(2214), + [anon_sym_noreturn] = ACTIONS(2214), + [anon_sym__Nonnull] = ACTIONS(2214), + [anon_sym_mutable] = ACTIONS(2214), + [anon_sym_constinit] = ACTIONS(2214), + [anon_sym_consteval] = ACTIONS(2214), + [anon_sym_alignas] = ACTIONS(2214), + [anon_sym__Alignas] = ACTIONS(2214), + [sym_primitive_type] = ACTIONS(2214), + [anon_sym_enum] = ACTIONS(2214), + [anon_sym_class] = ACTIONS(2214), + [anon_sym_struct] = ACTIONS(2214), + [anon_sym_union] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_switch] = ACTIONS(2214), + [anon_sym_case] = ACTIONS(2214), + [anon_sym_default] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_do] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_goto] = ACTIONS(2214), + [anon_sym___try] = ACTIONS(2214), + [anon_sym___leave] = ACTIONS(2214), + [anon_sym_not] = ACTIONS(2214), + [anon_sym_compl] = ACTIONS(2214), + [anon_sym_DASH_DASH] = ACTIONS(2216), + [anon_sym_PLUS_PLUS] = ACTIONS(2216), + [anon_sym_sizeof] = ACTIONS(2214), + [anon_sym___alignof__] = ACTIONS(2214), + [anon_sym___alignof] = ACTIONS(2214), + [anon_sym__alignof] = ACTIONS(2214), + [anon_sym_alignof] = ACTIONS(2214), + [anon_sym__Alignof] = ACTIONS(2214), + [anon_sym_offsetof] = ACTIONS(2214), + [anon_sym__Generic] = ACTIONS(2214), + [anon_sym_asm] = ACTIONS(2214), + [anon_sym___asm__] = ACTIONS(2214), + [anon_sym___asm] = ACTIONS(2214), + [sym_number_literal] = ACTIONS(2216), + [anon_sym_L_SQUOTE] = ACTIONS(2216), + [anon_sym_u_SQUOTE] = ACTIONS(2216), + [anon_sym_U_SQUOTE] = ACTIONS(2216), + [anon_sym_u8_SQUOTE] = ACTIONS(2216), + [anon_sym_SQUOTE] = ACTIONS(2216), + [anon_sym_L_DQUOTE] = ACTIONS(2216), + [anon_sym_u_DQUOTE] = ACTIONS(2216), + [anon_sym_U_DQUOTE] = ACTIONS(2216), + [anon_sym_u8_DQUOTE] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2216), + [sym_true] = ACTIONS(2214), + [sym_false] = ACTIONS(2214), + [anon_sym_NULL] = ACTIONS(2214), + [anon_sym_nullptr] = ACTIONS(2214), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2214), + [anon_sym_decltype] = ACTIONS(2214), + [anon_sym_explicit] = ACTIONS(2214), + [anon_sym_typename] = ACTIONS(2214), + [anon_sym_template] = ACTIONS(2214), + [anon_sym_operator] = ACTIONS(2214), + [anon_sym_try] = ACTIONS(2214), + [anon_sym_delete] = ACTIONS(2214), + [anon_sym_throw] = ACTIONS(2214), + [anon_sym_namespace] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2214), + [anon_sym_static_assert] = ACTIONS(2214), + [anon_sym_concept] = ACTIONS(2214), + [anon_sym_co_return] = ACTIONS(2214), + [anon_sym_co_yield] = ACTIONS(2214), + [anon_sym_R_DQUOTE] = ACTIONS(2216), + [anon_sym_LR_DQUOTE] = ACTIONS(2216), + [anon_sym_uR_DQUOTE] = ACTIONS(2216), + [anon_sym_UR_DQUOTE] = ACTIONS(2216), + [anon_sym_u8R_DQUOTE] = ACTIONS(2216), + [anon_sym_co_await] = ACTIONS(2214), + [anon_sym_new] = ACTIONS(2214), + [anon_sym_requires] = ACTIONS(2214), + [sym_this] = ACTIONS(2214), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2214), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_FORWARD] = ACTIONS(2214), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2214), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2214), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2214), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2214), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_PS_GET] = ACTIONS(2214), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2214), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2214), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2214), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2214), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2214), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2214), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2214), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2214), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2214), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2214), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2214), + [anon_sym_MOZ_COLD] = ACTIONS(2214), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2214), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2214), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2214), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2214), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2214), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2214), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2214), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2214), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2214), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2214), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2214), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2214), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2214), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2214), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2214), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2214), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2214), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2214), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2214), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2214), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_NONNULL] = ACTIONS(2214), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2214), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2214), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2214), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2214), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2214), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_NORETURN] = ACTIONS(2214), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2214), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2214), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2214), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2214), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2214), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2214), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2214), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2214), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2214), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2214), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2214), + [anon_sym_MOZ_RAII] = ACTIONS(2214), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2214), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2214), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2214), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2214), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2214), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2214), + }, + [STATE(200)] = { + [sym_identifier] = ACTIONS(2218), + [aux_sym_preproc_include_token1] = ACTIONS(2218), + [aux_sym_preproc_def_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token2] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2218), + [aux_sym_preproc_else_token1] = ACTIONS(2218), + [aux_sym_preproc_elif_token1] = ACTIONS(2218), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2218), + [sym_preproc_directive] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_PLUS] = ACTIONS(2218), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP_AMP] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2218), + [anon_sym_typedef] = ACTIONS(2218), + [anon_sym_virtual] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym___attribute__] = ACTIONS(2218), + [anon_sym___attribute] = ACTIONS(2218), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2220), + [anon_sym___declspec] = ACTIONS(2218), + [anon_sym___based] = ACTIONS(2218), + [anon_sym___cdecl] = ACTIONS(2218), + [anon_sym___clrcall] = ACTIONS(2218), + [anon_sym___stdcall] = ACTIONS(2218), + [anon_sym___fastcall] = ACTIONS(2218), + [anon_sym___thiscall] = ACTIONS(2218), + [anon_sym___vectorcall] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_signed] = ACTIONS(2218), + [anon_sym_unsigned] = ACTIONS(2218), + [anon_sym_long] = ACTIONS(2218), + [anon_sym_short] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_inline] = ACTIONS(2218), + [anon_sym___inline] = ACTIONS(2218), + [anon_sym___inline__] = ACTIONS(2218), + [anon_sym___forceinline] = ACTIONS(2218), + [anon_sym_thread_local] = ACTIONS(2218), + [anon_sym___thread] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_constexpr] = ACTIONS(2218), + [anon_sym_volatile] = ACTIONS(2218), + [anon_sym_restrict] = ACTIONS(2218), + [anon_sym___restrict__] = ACTIONS(2218), + [anon_sym__Atomic] = ACTIONS(2218), + [anon_sym__Noreturn] = ACTIONS(2218), + [anon_sym_noreturn] = ACTIONS(2218), + [anon_sym__Nonnull] = ACTIONS(2218), + [anon_sym_mutable] = ACTIONS(2218), + [anon_sym_constinit] = ACTIONS(2218), + [anon_sym_consteval] = ACTIONS(2218), + [anon_sym_alignas] = ACTIONS(2218), + [anon_sym__Alignas] = ACTIONS(2218), + [sym_primitive_type] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_class] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_switch] = ACTIONS(2218), + [anon_sym_case] = ACTIONS(2218), + [anon_sym_default] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_do] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_goto] = ACTIONS(2218), + [anon_sym___try] = ACTIONS(2218), + [anon_sym___leave] = ACTIONS(2218), + [anon_sym_not] = ACTIONS(2218), + [anon_sym_compl] = ACTIONS(2218), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(2218), + [anon_sym___alignof__] = ACTIONS(2218), + [anon_sym___alignof] = ACTIONS(2218), + [anon_sym__alignof] = ACTIONS(2218), + [anon_sym_alignof] = ACTIONS(2218), + [anon_sym__Alignof] = ACTIONS(2218), + [anon_sym_offsetof] = ACTIONS(2218), + [anon_sym__Generic] = ACTIONS(2218), + [anon_sym_asm] = ACTIONS(2218), + [anon_sym___asm__] = ACTIONS(2218), + [anon_sym___asm] = ACTIONS(2218), + [sym_number_literal] = ACTIONS(2220), + [anon_sym_L_SQUOTE] = ACTIONS(2220), + [anon_sym_u_SQUOTE] = ACTIONS(2220), + [anon_sym_U_SQUOTE] = ACTIONS(2220), + [anon_sym_u8_SQUOTE] = ACTIONS(2220), + [anon_sym_SQUOTE] = ACTIONS(2220), + [anon_sym_L_DQUOTE] = ACTIONS(2220), + [anon_sym_u_DQUOTE] = ACTIONS(2220), + [anon_sym_U_DQUOTE] = ACTIONS(2220), + [anon_sym_u8_DQUOTE] = ACTIONS(2220), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_true] = ACTIONS(2218), + [sym_false] = ACTIONS(2218), + [anon_sym_NULL] = ACTIONS(2218), + [anon_sym_nullptr] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2218), + [anon_sym_explicit] = ACTIONS(2218), + [anon_sym_typename] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_operator] = ACTIONS(2218), + [anon_sym_try] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(2218), + [anon_sym_throw] = ACTIONS(2218), + [anon_sym_namespace] = ACTIONS(2218), + [anon_sym_using] = ACTIONS(2218), + [anon_sym_static_assert] = ACTIONS(2218), + [anon_sym_concept] = ACTIONS(2218), + [anon_sym_co_return] = ACTIONS(2218), + [anon_sym_co_yield] = ACTIONS(2218), + [anon_sym_R_DQUOTE] = ACTIONS(2220), + [anon_sym_LR_DQUOTE] = ACTIONS(2220), + [anon_sym_uR_DQUOTE] = ACTIONS(2220), + [anon_sym_UR_DQUOTE] = ACTIONS(2220), + [anon_sym_u8R_DQUOTE] = ACTIONS(2220), + [anon_sym_co_await] = ACTIONS(2218), + [anon_sym_new] = ACTIONS(2218), + [anon_sym_requires] = ACTIONS(2218), + [sym_this] = ACTIONS(2218), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2218), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_FORWARD] = ACTIONS(2218), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2218), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2218), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2218), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2218), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_PS_GET] = ACTIONS(2218), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2218), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2218), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2218), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2218), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2218), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2218), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2218), + [anon_sym_MOZ_COLD] = ACTIONS(2218), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2218), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2218), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2218), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2218), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2218), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2218), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2218), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2218), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2218), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2218), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2218), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2218), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2218), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_NONNULL] = ACTIONS(2218), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2218), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2218), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2218), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2218), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2218), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2218), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2218), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2218), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2218), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2218), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2218), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2218), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2218), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2218), + [anon_sym_MOZ_RAII] = ACTIONS(2218), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2218), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2218), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2218), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2218), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2218), + }, + [STATE(201)] = { + [sym_identifier] = ACTIONS(2222), + [aux_sym_preproc_include_token1] = ACTIONS(2222), + [aux_sym_preproc_def_token1] = ACTIONS(2222), + [aux_sym_preproc_if_token1] = ACTIONS(2222), + [aux_sym_preproc_if_token2] = ACTIONS(2222), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2222), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2222), + [aux_sym_preproc_else_token1] = ACTIONS(2222), + [aux_sym_preproc_elif_token1] = ACTIONS(2222), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2222), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2222), + [sym_preproc_directive] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2224), + [anon_sym_BANG] = ACTIONS(2224), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_AMP_AMP] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym___extension__] = ACTIONS(2222), + [anon_sym_typedef] = ACTIONS(2222), + [anon_sym_virtual] = ACTIONS(2222), + [anon_sym_extern] = ACTIONS(2222), + [anon_sym___attribute__] = ACTIONS(2222), + [anon_sym___attribute] = ACTIONS(2222), + [anon_sym_COLON_COLON] = ACTIONS(2224), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2224), + [anon_sym___declspec] = ACTIONS(2222), + [anon_sym___based] = ACTIONS(2222), + [anon_sym___cdecl] = ACTIONS(2222), + [anon_sym___clrcall] = ACTIONS(2222), + [anon_sym___stdcall] = ACTIONS(2222), + [anon_sym___fastcall] = ACTIONS(2222), + [anon_sym___thiscall] = ACTIONS(2222), + [anon_sym___vectorcall] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2224), + [anon_sym_signed] = ACTIONS(2222), + [anon_sym_unsigned] = ACTIONS(2222), + [anon_sym_long] = ACTIONS(2222), + [anon_sym_short] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_register] = ACTIONS(2222), + [anon_sym_inline] = ACTIONS(2222), + [anon_sym___inline] = ACTIONS(2222), + [anon_sym___inline__] = ACTIONS(2222), + [anon_sym___forceinline] = ACTIONS(2222), + [anon_sym_thread_local] = ACTIONS(2222), + [anon_sym___thread] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_constexpr] = ACTIONS(2222), + [anon_sym_volatile] = ACTIONS(2222), + [anon_sym_restrict] = ACTIONS(2222), + [anon_sym___restrict__] = ACTIONS(2222), + [anon_sym__Atomic] = ACTIONS(2222), + [anon_sym__Noreturn] = ACTIONS(2222), + [anon_sym_noreturn] = ACTIONS(2222), + [anon_sym__Nonnull] = ACTIONS(2222), + [anon_sym_mutable] = ACTIONS(2222), + [anon_sym_constinit] = ACTIONS(2222), + [anon_sym_consteval] = ACTIONS(2222), + [anon_sym_alignas] = ACTIONS(2222), + [anon_sym__Alignas] = ACTIONS(2222), + [sym_primitive_type] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(2222), + [anon_sym_union] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2222), + [anon_sym_default] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_goto] = ACTIONS(2222), + [anon_sym___try] = ACTIONS(2222), + [anon_sym___leave] = ACTIONS(2222), + [anon_sym_not] = ACTIONS(2222), + [anon_sym_compl] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2224), + [anon_sym_PLUS_PLUS] = ACTIONS(2224), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2222), + [anon_sym___alignof] = ACTIONS(2222), + [anon_sym__alignof] = ACTIONS(2222), + [anon_sym_alignof] = ACTIONS(2222), + [anon_sym__Alignof] = ACTIONS(2222), + [anon_sym_offsetof] = ACTIONS(2222), + [anon_sym__Generic] = ACTIONS(2222), + [anon_sym_asm] = ACTIONS(2222), + [anon_sym___asm__] = ACTIONS(2222), + [anon_sym___asm] = ACTIONS(2222), + [sym_number_literal] = ACTIONS(2224), + [anon_sym_L_SQUOTE] = ACTIONS(2224), + [anon_sym_u_SQUOTE] = ACTIONS(2224), + [anon_sym_U_SQUOTE] = ACTIONS(2224), + [anon_sym_u8_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_L_DQUOTE] = ACTIONS(2224), + [anon_sym_u_DQUOTE] = ACTIONS(2224), + [anon_sym_U_DQUOTE] = ACTIONS(2224), + [anon_sym_u8_DQUOTE] = ACTIONS(2224), + [anon_sym_DQUOTE] = ACTIONS(2224), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [anon_sym_NULL] = ACTIONS(2222), + [anon_sym_nullptr] = ACTIONS(2222), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2222), + [anon_sym_decltype] = ACTIONS(2222), + [anon_sym_explicit] = ACTIONS(2222), + [anon_sym_typename] = ACTIONS(2222), + [anon_sym_template] = ACTIONS(2222), + [anon_sym_operator] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_delete] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_namespace] = ACTIONS(2222), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_static_assert] = ACTIONS(2222), + [anon_sym_concept] = ACTIONS(2222), + [anon_sym_co_return] = ACTIONS(2222), + [anon_sym_co_yield] = ACTIONS(2222), + [anon_sym_R_DQUOTE] = ACTIONS(2224), + [anon_sym_LR_DQUOTE] = ACTIONS(2224), + [anon_sym_uR_DQUOTE] = ACTIONS(2224), + [anon_sym_UR_DQUOTE] = ACTIONS(2224), + [anon_sym_u8R_DQUOTE] = ACTIONS(2224), + [anon_sym_co_await] = ACTIONS(2222), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_requires] = ACTIONS(2222), + [sym_this] = ACTIONS(2222), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2222), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_FORWARD] = ACTIONS(2222), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2222), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2222), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2222), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2222), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_PS_GET] = ACTIONS(2222), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2222), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2222), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2222), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2222), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2222), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2222), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2222), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2222), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2222), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2222), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2222), + [anon_sym_MOZ_COLD] = ACTIONS(2222), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2222), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2222), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2222), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2222), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2222), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2222), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2222), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2222), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2222), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2222), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2222), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2222), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2222), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2222), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2222), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2222), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2222), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2222), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2222), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2222), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_NONNULL] = ACTIONS(2222), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2222), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2222), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2222), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2222), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2222), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_NORETURN] = ACTIONS(2222), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2222), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2222), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2222), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2222), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2222), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2222), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2222), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2222), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2222), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2222), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2222), + [anon_sym_MOZ_RAII] = ACTIONS(2222), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2222), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2222), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2222), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2222), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2222), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2222), + }, + [STATE(202)] = { + [sym_identifier] = ACTIONS(2202), + [aux_sym_preproc_include_token1] = ACTIONS(2202), + [aux_sym_preproc_def_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token2] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2202), + [aux_sym_preproc_else_token1] = ACTIONS(2202), + [aux_sym_preproc_elif_token1] = ACTIONS(2202), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2202), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2202), + [sym_preproc_directive] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym___extension__] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2202), + [anon_sym_virtual] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym___attribute__] = ACTIONS(2202), + [anon_sym___attribute] = ACTIONS(2202), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2204), + [anon_sym___declspec] = ACTIONS(2202), + [anon_sym___based] = ACTIONS(2202), + [anon_sym___cdecl] = ACTIONS(2202), + [anon_sym___clrcall] = ACTIONS(2202), + [anon_sym___stdcall] = ACTIONS(2202), + [anon_sym___fastcall] = ACTIONS(2202), + [anon_sym___thiscall] = ACTIONS(2202), + [anon_sym___vectorcall] = ACTIONS(2202), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_signed] = ACTIONS(2202), + [anon_sym_unsigned] = ACTIONS(2202), + [anon_sym_long] = ACTIONS(2202), + [anon_sym_short] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_register] = ACTIONS(2202), + [anon_sym_inline] = ACTIONS(2202), + [anon_sym___inline] = ACTIONS(2202), + [anon_sym___inline__] = ACTIONS(2202), + [anon_sym___forceinline] = ACTIONS(2202), + [anon_sym_thread_local] = ACTIONS(2202), + [anon_sym___thread] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_constexpr] = ACTIONS(2202), + [anon_sym_volatile] = ACTIONS(2202), + [anon_sym_restrict] = ACTIONS(2202), + [anon_sym___restrict__] = ACTIONS(2202), + [anon_sym__Atomic] = ACTIONS(2202), + [anon_sym__Noreturn] = ACTIONS(2202), + [anon_sym_noreturn] = ACTIONS(2202), + [anon_sym__Nonnull] = ACTIONS(2202), + [anon_sym_mutable] = ACTIONS(2202), + [anon_sym_constinit] = ACTIONS(2202), + [anon_sym_consteval] = ACTIONS(2202), + [anon_sym_alignas] = ACTIONS(2202), + [anon_sym__Alignas] = ACTIONS(2202), + [sym_primitive_type] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_class] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [anon_sym_if] = ACTIONS(2202), + [anon_sym_switch] = ACTIONS(2202), + [anon_sym_case] = ACTIONS(2202), + [anon_sym_default] = ACTIONS(2202), + [anon_sym_while] = ACTIONS(2202), + [anon_sym_do] = ACTIONS(2202), + [anon_sym_for] = ACTIONS(2202), + [anon_sym_return] = ACTIONS(2202), + [anon_sym_break] = ACTIONS(2202), + [anon_sym_continue] = ACTIONS(2202), + [anon_sym_goto] = ACTIONS(2202), + [anon_sym___try] = ACTIONS(2202), + [anon_sym___leave] = ACTIONS(2202), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_compl] = ACTIONS(2202), + [anon_sym_DASH_DASH] = ACTIONS(2204), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_sizeof] = ACTIONS(2202), + [anon_sym___alignof__] = ACTIONS(2202), + [anon_sym___alignof] = ACTIONS(2202), + [anon_sym__alignof] = ACTIONS(2202), + [anon_sym_alignof] = ACTIONS(2202), + [anon_sym__Alignof] = ACTIONS(2202), + [anon_sym_offsetof] = ACTIONS(2202), + [anon_sym__Generic] = ACTIONS(2202), + [anon_sym_asm] = ACTIONS(2202), + [anon_sym___asm__] = ACTIONS(2202), + [anon_sym___asm] = ACTIONS(2202), + [sym_number_literal] = ACTIONS(2204), + [anon_sym_L_SQUOTE] = ACTIONS(2204), + [anon_sym_u_SQUOTE] = ACTIONS(2204), + [anon_sym_U_SQUOTE] = ACTIONS(2204), + [anon_sym_u8_SQUOTE] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_L_DQUOTE] = ACTIONS(2204), + [anon_sym_u_DQUOTE] = ACTIONS(2204), + [anon_sym_U_DQUOTE] = ACTIONS(2204), + [anon_sym_u8_DQUOTE] = ACTIONS(2204), + [anon_sym_DQUOTE] = ACTIONS(2204), + [sym_true] = ACTIONS(2202), + [sym_false] = ACTIONS(2202), + [anon_sym_NULL] = ACTIONS(2202), + [anon_sym_nullptr] = ACTIONS(2202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2202), + [anon_sym_decltype] = ACTIONS(2202), + [anon_sym_explicit] = ACTIONS(2202), + [anon_sym_typename] = ACTIONS(2202), + [anon_sym_template] = ACTIONS(2202), + [anon_sym_operator] = ACTIONS(2202), + [anon_sym_try] = ACTIONS(2202), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_throw] = ACTIONS(2202), + [anon_sym_namespace] = ACTIONS(2202), + [anon_sym_using] = ACTIONS(2202), + [anon_sym_static_assert] = ACTIONS(2202), + [anon_sym_concept] = ACTIONS(2202), + [anon_sym_co_return] = ACTIONS(2202), + [anon_sym_co_yield] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2204), + [anon_sym_LR_DQUOTE] = ACTIONS(2204), + [anon_sym_uR_DQUOTE] = ACTIONS(2204), + [anon_sym_UR_DQUOTE] = ACTIONS(2204), + [anon_sym_u8R_DQUOTE] = ACTIONS(2204), + [anon_sym_co_await] = ACTIONS(2202), + [anon_sym_new] = ACTIONS(2202), + [anon_sym_requires] = ACTIONS(2202), + [sym_this] = ACTIONS(2202), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_FORWARD] = ACTIONS(2202), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2202), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_PS_GET] = ACTIONS(2202), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2202), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2202), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2202), + [anon_sym_MOZ_COLD] = ACTIONS(2202), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2202), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2202), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2202), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2202), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2202), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2202), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2202), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2202), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2202), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2202), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2202), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2202), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_RAII] = ACTIONS(2202), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2202), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2202), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2202), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2202), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2202), + }, + [STATE(203)] = { + [sym_identifier] = ACTIONS(2226), + [aux_sym_preproc_include_token1] = ACTIONS(2226), + [aux_sym_preproc_def_token1] = ACTIONS(2226), + [aux_sym_preproc_if_token1] = ACTIONS(2226), + [aux_sym_preproc_if_token2] = ACTIONS(2226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2226), + [aux_sym_preproc_else_token1] = ACTIONS(2226), + [aux_sym_preproc_elif_token1] = ACTIONS(2226), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2226), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2226), + [sym_preproc_directive] = ACTIONS(2226), + [anon_sym_LPAREN2] = ACTIONS(2228), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_AMP_AMP] = ACTIONS(2228), + [anon_sym_AMP] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym___extension__] = ACTIONS(2226), + [anon_sym_typedef] = ACTIONS(2226), + [anon_sym_virtual] = ACTIONS(2226), + [anon_sym_extern] = ACTIONS(2226), + [anon_sym___attribute__] = ACTIONS(2226), + [anon_sym___attribute] = ACTIONS(2226), + [anon_sym_COLON_COLON] = ACTIONS(2228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2228), + [anon_sym___declspec] = ACTIONS(2226), + [anon_sym___based] = ACTIONS(2226), + [anon_sym___cdecl] = ACTIONS(2226), + [anon_sym___clrcall] = ACTIONS(2226), + [anon_sym___stdcall] = ACTIONS(2226), + [anon_sym___fastcall] = ACTIONS(2226), + [anon_sym___thiscall] = ACTIONS(2226), + [anon_sym___vectorcall] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_signed] = ACTIONS(2226), + [anon_sym_unsigned] = ACTIONS(2226), + [anon_sym_long] = ACTIONS(2226), + [anon_sym_short] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2226), + [anon_sym_register] = ACTIONS(2226), + [anon_sym_inline] = ACTIONS(2226), + [anon_sym___inline] = ACTIONS(2226), + [anon_sym___inline__] = ACTIONS(2226), + [anon_sym___forceinline] = ACTIONS(2226), + [anon_sym_thread_local] = ACTIONS(2226), + [anon_sym___thread] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [anon_sym_constexpr] = ACTIONS(2226), + [anon_sym_volatile] = ACTIONS(2226), + [anon_sym_restrict] = ACTIONS(2226), + [anon_sym___restrict__] = ACTIONS(2226), + [anon_sym__Atomic] = ACTIONS(2226), + [anon_sym__Noreturn] = ACTIONS(2226), + [anon_sym_noreturn] = ACTIONS(2226), + [anon_sym__Nonnull] = ACTIONS(2226), + [anon_sym_mutable] = ACTIONS(2226), + [anon_sym_constinit] = ACTIONS(2226), + [anon_sym_consteval] = ACTIONS(2226), + [anon_sym_alignas] = ACTIONS(2226), + [anon_sym__Alignas] = ACTIONS(2226), + [sym_primitive_type] = ACTIONS(2226), + [anon_sym_enum] = ACTIONS(2226), + [anon_sym_class] = ACTIONS(2226), + [anon_sym_struct] = ACTIONS(2226), + [anon_sym_union] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_switch] = ACTIONS(2226), + [anon_sym_case] = ACTIONS(2226), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_do] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_goto] = ACTIONS(2226), + [anon_sym___try] = ACTIONS(2226), + [anon_sym___leave] = ACTIONS(2226), + [anon_sym_not] = ACTIONS(2226), + [anon_sym_compl] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym___alignof__] = ACTIONS(2226), + [anon_sym___alignof] = ACTIONS(2226), + [anon_sym__alignof] = ACTIONS(2226), + [anon_sym_alignof] = ACTIONS(2226), + [anon_sym__Alignof] = ACTIONS(2226), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2226), + [anon_sym_asm] = ACTIONS(2226), + [anon_sym___asm__] = ACTIONS(2226), + [anon_sym___asm] = ACTIONS(2226), + [sym_number_literal] = ACTIONS(2228), + [anon_sym_L_SQUOTE] = ACTIONS(2228), + [anon_sym_u_SQUOTE] = ACTIONS(2228), + [anon_sym_U_SQUOTE] = ACTIONS(2228), + [anon_sym_u8_SQUOTE] = ACTIONS(2228), + [anon_sym_SQUOTE] = ACTIONS(2228), + [anon_sym_L_DQUOTE] = ACTIONS(2228), + [anon_sym_u_DQUOTE] = ACTIONS(2228), + [anon_sym_U_DQUOTE] = ACTIONS(2228), + [anon_sym_u8_DQUOTE] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym_true] = ACTIONS(2226), + [sym_false] = ACTIONS(2226), + [anon_sym_NULL] = ACTIONS(2226), + [anon_sym_nullptr] = ACTIONS(2226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2226), + [anon_sym_decltype] = ACTIONS(2226), + [anon_sym_explicit] = ACTIONS(2226), + [anon_sym_typename] = ACTIONS(2226), + [anon_sym_template] = ACTIONS(2226), + [anon_sym_operator] = ACTIONS(2226), + [anon_sym_try] = ACTIONS(2226), + [anon_sym_delete] = ACTIONS(2226), + [anon_sym_throw] = ACTIONS(2226), + [anon_sym_namespace] = ACTIONS(2226), + [anon_sym_using] = ACTIONS(2226), + [anon_sym_static_assert] = ACTIONS(2226), + [anon_sym_concept] = ACTIONS(2226), + [anon_sym_co_return] = ACTIONS(2226), + [anon_sym_co_yield] = ACTIONS(2226), + [anon_sym_R_DQUOTE] = ACTIONS(2228), + [anon_sym_LR_DQUOTE] = ACTIONS(2228), + [anon_sym_uR_DQUOTE] = ACTIONS(2228), + [anon_sym_UR_DQUOTE] = ACTIONS(2228), + [anon_sym_u8R_DQUOTE] = ACTIONS(2228), + [anon_sym_co_await] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(2226), + [anon_sym_requires] = ACTIONS(2226), + [sym_this] = ACTIONS(2226), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2226), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_FORWARD] = ACTIONS(2226), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2226), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2226), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2226), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2226), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_PS_GET] = ACTIONS(2226), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2226), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2226), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2226), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2226), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2226), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2226), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2226), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2226), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2226), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2226), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2226), + [anon_sym_MOZ_COLD] = ACTIONS(2226), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2226), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2226), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2226), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2226), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2226), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2226), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2226), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2226), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2226), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2226), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2226), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2226), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2226), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2226), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2226), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2226), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2226), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2226), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2226), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2226), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_NONNULL] = ACTIONS(2226), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2226), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2226), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2226), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2226), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2226), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_NORETURN] = ACTIONS(2226), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2226), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2226), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2226), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2226), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2226), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2226), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2226), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2226), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2226), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2226), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2226), + [anon_sym_MOZ_RAII] = ACTIONS(2226), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2226), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2226), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2226), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2226), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2226), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2226), + }, + [STATE(204)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1898), + [anon_sym_typedef] = ACTIONS(2230), + [anon_sym_virtual] = ACTIONS(1903), [anon_sym_extern] = ACTIONS(1903), [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), [anon_sym_COLON_COLON] = ACTIONS(1905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1905), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), [anon_sym___declspec] = ACTIONS(1903), - [anon_sym___based] = ACTIONS(1903), - [anon_sym___cdecl] = ACTIONS(1903), - [anon_sym___clrcall] = ACTIONS(1903), - [anon_sym___stdcall] = ACTIONS(1903), - [anon_sym___fastcall] = ACTIONS(1903), - [anon_sym___thiscall] = ACTIONS(1903), - [anon_sym___vectorcall] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_static] = ACTIONS(1903), [anon_sym_register] = ACTIONS(1903), [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), [anon_sym_volatile] = ACTIONS(1903), [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), [anon_sym_mutable] = ACTIONS(1903), - [anon_sym_constexpr] = ACTIONS(1903), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [sym_primitive_type] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1911), [anon_sym_enum] = ACTIONS(1903), [anon_sym_class] = ACTIONS(1903), [anon_sym_struct] = ACTIONS(1903), [anon_sym_union] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_switch] = ACTIONS(1903), - [anon_sym_case] = ACTIONS(1903), - [anon_sym_default] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_do] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_goto] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1905), - [anon_sym_PLUS_PLUS] = ACTIONS(1905), - [anon_sym_sizeof] = ACTIONS(1903), - [sym_number_literal] = ACTIONS(1905), - [anon_sym_L_SQUOTE] = ACTIONS(1905), - [anon_sym_u_SQUOTE] = ACTIONS(1905), - [anon_sym_U_SQUOTE] = ACTIONS(1905), - [anon_sym_u8_SQUOTE] = ACTIONS(1905), - [anon_sym_SQUOTE] = ACTIONS(1905), - [anon_sym_L_DQUOTE] = ACTIONS(1905), - [anon_sym_u_DQUOTE] = ACTIONS(1905), - [anon_sym_U_DQUOTE] = ACTIONS(1905), - [anon_sym_u8_DQUOTE] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1905), - [sym_true] = ACTIONS(1903), - [sym_false] = ACTIONS(1903), - [sym_null] = ACTIONS(1903), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1903), - [anon_sym_virtual] = ACTIONS(1903), - [anon_sym_explicit] = ACTIONS(1903), [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1914), [anon_sym_typename] = ACTIONS(1903), - [anon_sym_template] = ACTIONS(1903), - [anon_sym_operator] = ACTIONS(1903), - [anon_sym_delete] = ACTIONS(1903), - [anon_sym_throw] = ACTIONS(1903), - [anon_sym_namespace] = ACTIONS(1903), - [anon_sym_using] = ACTIONS(1903), - [anon_sym_static_assert] = ACTIONS(1903), - [anon_sym_co_return] = ACTIONS(1903), - [anon_sym_co_yield] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1903), - [anon_sym_co_await] = ACTIONS(1903), - [anon_sym_new] = ACTIONS(1903), - [sym_this] = ACTIONS(1903), - [sym_nullptr] = ACTIONS(1903), - [sym_alone_macro] = ACTIONS(1905), - [aux_sym_alone_macro_call_token1] = ACTIONS(1903), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1903), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_FORWARD] = ACTIONS(1903), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1903), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1903), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1903), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1903), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_PS_GET] = ACTIONS(1903), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1903), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1903), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1903), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1903), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1917), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), @@ -162783,7444 +101245,2875 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), - [sym_raw_string_literal] = ACTIONS(1905), - }, - [646] = { - [ts_builtin_sym_end] = ACTIONS(1733), - [sym_identifier] = ACTIONS(1731), - [aux_sym_preproc_include_token1] = ACTIONS(1731), - [aux_sym_preproc_def_token1] = ACTIONS(1731), - [aux_sym_preproc_if_token1] = ACTIONS(1731), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1731), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1731), - [sym_preproc_directive] = ACTIONS(1731), - [anon_sym_LPAREN2] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_AMP_AMP] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_typedef] = ACTIONS(1731), - [anon_sym_extern] = ACTIONS(1731), - [anon_sym___attribute__] = ACTIONS(1731), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1733), - [anon_sym___declspec] = ACTIONS(1731), - [anon_sym___based] = ACTIONS(1731), - [anon_sym___cdecl] = ACTIONS(1731), - [anon_sym___clrcall] = ACTIONS(1731), - [anon_sym___stdcall] = ACTIONS(1731), - [anon_sym___fastcall] = ACTIONS(1731), - [anon_sym___thiscall] = ACTIONS(1731), - [anon_sym___vectorcall] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_static] = ACTIONS(1731), - [anon_sym_register] = ACTIONS(1731), - [anon_sym_inline] = ACTIONS(1731), - [anon_sym_thread_local] = ACTIONS(1731), - [anon_sym_const] = ACTIONS(1731), - [anon_sym_volatile] = ACTIONS(1731), - [anon_sym_restrict] = ACTIONS(1731), - [anon_sym__Atomic] = ACTIONS(1731), - [anon_sym_mutable] = ACTIONS(1731), - [anon_sym_constexpr] = ACTIONS(1731), - [anon_sym_signed] = ACTIONS(1731), - [anon_sym_unsigned] = ACTIONS(1731), - [anon_sym_long] = ACTIONS(1731), - [anon_sym_short] = ACTIONS(1731), - [sym_primitive_type] = ACTIONS(1731), - [anon_sym_enum] = ACTIONS(1731), - [anon_sym_class] = ACTIONS(1731), - [anon_sym_struct] = ACTIONS(1731), - [anon_sym_union] = ACTIONS(1731), - [anon_sym_if] = ACTIONS(1731), - [anon_sym_switch] = ACTIONS(1731), - [anon_sym_case] = ACTIONS(1731), - [anon_sym_default] = ACTIONS(1731), - [anon_sym_while] = ACTIONS(1731), - [anon_sym_do] = ACTIONS(1731), - [anon_sym_for] = ACTIONS(1731), - [anon_sym_return] = ACTIONS(1731), - [anon_sym_break] = ACTIONS(1731), - [anon_sym_continue] = ACTIONS(1731), - [anon_sym_goto] = ACTIONS(1731), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_sizeof] = ACTIONS(1731), - [sym_number_literal] = ACTIONS(1733), - [anon_sym_L_SQUOTE] = ACTIONS(1733), - [anon_sym_u_SQUOTE] = ACTIONS(1733), - [anon_sym_U_SQUOTE] = ACTIONS(1733), - [anon_sym_u8_SQUOTE] = ACTIONS(1733), - [anon_sym_SQUOTE] = ACTIONS(1733), - [anon_sym_L_DQUOTE] = ACTIONS(1733), - [anon_sym_u_DQUOTE] = ACTIONS(1733), - [anon_sym_U_DQUOTE] = ACTIONS(1733), - [anon_sym_u8_DQUOTE] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1733), - [sym_true] = ACTIONS(1731), - [sym_false] = ACTIONS(1731), - [sym_null] = ACTIONS(1731), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1731), - [anon_sym_virtual] = ACTIONS(1731), - [anon_sym_explicit] = ACTIONS(1731), - [sym_auto] = ACTIONS(1731), - [anon_sym_typename] = ACTIONS(1731), - [anon_sym_template] = ACTIONS(1731), - [anon_sym_operator] = ACTIONS(1731), - [anon_sym_delete] = ACTIONS(1731), - [anon_sym_throw] = ACTIONS(1731), - [anon_sym_namespace] = ACTIONS(1731), - [anon_sym_using] = ACTIONS(1731), - [anon_sym_static_assert] = ACTIONS(1731), - [anon_sym_co_return] = ACTIONS(1731), - [anon_sym_co_yield] = ACTIONS(1731), - [anon_sym_try] = ACTIONS(1731), - [anon_sym_co_await] = ACTIONS(1731), - [anon_sym_new] = ACTIONS(1731), - [sym_this] = ACTIONS(1731), - [sym_nullptr] = ACTIONS(1731), - [sym_alone_macro] = ACTIONS(1733), - [aux_sym_alone_macro_call_token1] = ACTIONS(1731), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1731), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_FORWARD] = ACTIONS(1731), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1731), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1731), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1731), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1731), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_PS_GET] = ACTIONS(1731), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1731), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1731), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1731), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1731), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1731), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1731), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1731), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1731), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1731), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1731), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1731), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1731), - [anon_sym_MOZ_COLD] = ACTIONS(1731), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1731), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1731), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1731), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1731), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1731), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1731), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1731), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1731), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1731), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1731), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1731), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1731), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1731), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1731), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1731), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1731), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1731), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1731), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1731), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1731), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1731), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_NONNULL] = ACTIONS(1731), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1731), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1731), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1731), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1731), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1731), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_NORETURN] = ACTIONS(1731), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1731), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1731), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1731), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1731), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1731), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1731), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1731), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1731), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1731), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1731), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1731), - [anon_sym_MOZ_RAII] = ACTIONS(1731), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1731), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1731), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1731), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1731), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1731), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1731), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1731), - [sym_raw_string_literal] = ACTIONS(1733), - }, - [647] = { - [ts_builtin_sym_end] = ACTIONS(1837), - [sym_identifier] = ACTIONS(1835), - [aux_sym_preproc_include_token1] = ACTIONS(1835), - [aux_sym_preproc_def_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1835), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1835), - [sym_preproc_directive] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1837), - [anon_sym_TILDE] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1837), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_SEMI] = ACTIONS(1837), - [anon_sym_typedef] = ACTIONS(1835), - [anon_sym_extern] = ACTIONS(1835), - [anon_sym___attribute__] = ACTIONS(1835), - [anon_sym_COLON_COLON] = ACTIONS(1837), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1837), - [anon_sym___declspec] = ACTIONS(1835), - [anon_sym___based] = ACTIONS(1835), - [anon_sym___cdecl] = ACTIONS(1835), - [anon_sym___clrcall] = ACTIONS(1835), - [anon_sym___stdcall] = ACTIONS(1835), - [anon_sym___fastcall] = ACTIONS(1835), - [anon_sym___thiscall] = ACTIONS(1835), - [anon_sym___vectorcall] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_static] = ACTIONS(1835), - [anon_sym_register] = ACTIONS(1835), - [anon_sym_inline] = ACTIONS(1835), - [anon_sym_thread_local] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym_mutable] = ACTIONS(1835), - [anon_sym_constexpr] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(1835), - [anon_sym_unsigned] = ACTIONS(1835), - [anon_sym_long] = ACTIONS(1835), - [anon_sym_short] = ACTIONS(1835), - [sym_primitive_type] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_struct] = ACTIONS(1835), - [anon_sym_union] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_switch] = ACTIONS(1835), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_goto] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1837), - [anon_sym_PLUS_PLUS] = ACTIONS(1837), - [anon_sym_sizeof] = ACTIONS(1835), - [sym_number_literal] = ACTIONS(1837), - [anon_sym_L_SQUOTE] = ACTIONS(1837), - [anon_sym_u_SQUOTE] = ACTIONS(1837), - [anon_sym_U_SQUOTE] = ACTIONS(1837), - [anon_sym_u8_SQUOTE] = ACTIONS(1837), - [anon_sym_SQUOTE] = ACTIONS(1837), - [anon_sym_L_DQUOTE] = ACTIONS(1837), - [anon_sym_u_DQUOTE] = ACTIONS(1837), - [anon_sym_U_DQUOTE] = ACTIONS(1837), - [anon_sym_u8_DQUOTE] = ACTIONS(1837), - [anon_sym_DQUOTE] = ACTIONS(1837), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_null] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1835), - [anon_sym_virtual] = ACTIONS(1835), - [anon_sym_explicit] = ACTIONS(1835), - [sym_auto] = ACTIONS(1835), - [anon_sym_typename] = ACTIONS(1835), - [anon_sym_template] = ACTIONS(1835), - [anon_sym_operator] = ACTIONS(1835), - [anon_sym_delete] = ACTIONS(1835), - [anon_sym_throw] = ACTIONS(1835), - [anon_sym_namespace] = ACTIONS(1835), - [anon_sym_using] = ACTIONS(1835), - [anon_sym_static_assert] = ACTIONS(1835), - [anon_sym_co_return] = ACTIONS(1835), - [anon_sym_co_yield] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_co_await] = ACTIONS(1835), - [anon_sym_new] = ACTIONS(1835), - [sym_this] = ACTIONS(1835), - [sym_nullptr] = ACTIONS(1835), - [sym_alone_macro] = ACTIONS(1837), - [aux_sym_alone_macro_call_token1] = ACTIONS(1835), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1835), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_FORWARD] = ACTIONS(1835), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1835), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1835), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1835), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1835), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_PS_GET] = ACTIONS(1835), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1835), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1835), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1835), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1835), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1835), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1835), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1835), - [anon_sym_MOZ_COLD] = ACTIONS(1835), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1835), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1835), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1835), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1835), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1835), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1835), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1835), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1835), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1835), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1835), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1835), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1835), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1835), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_NONNULL] = ACTIONS(1835), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1835), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1835), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1835), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1835), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1835), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1835), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1835), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1835), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1835), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1835), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1835), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1835), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1835), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1835), - [anon_sym_MOZ_RAII] = ACTIONS(1835), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1835), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1835), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1835), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1835), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1835), - [sym_raw_string_literal] = ACTIONS(1837), - }, - [648] = { - [sym_identifier] = ACTIONS(1815), - [aux_sym_preproc_include_token1] = ACTIONS(1815), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1815), - [sym_preproc_directive] = ACTIONS(1815), - [anon_sym_LPAREN2] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_typedef] = ACTIONS(1815), - [anon_sym_extern] = ACTIONS(1815), - [anon_sym___attribute__] = ACTIONS(1815), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1817), - [anon_sym___declspec] = ACTIONS(1815), - [anon_sym___based] = ACTIONS(1815), - [anon_sym___cdecl] = ACTIONS(1815), - [anon_sym___clrcall] = ACTIONS(1815), - [anon_sym___stdcall] = ACTIONS(1815), - [anon_sym___fastcall] = ACTIONS(1815), - [anon_sym___thiscall] = ACTIONS(1815), - [anon_sym___vectorcall] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_static] = ACTIONS(1815), - [anon_sym_register] = ACTIONS(1815), - [anon_sym_inline] = ACTIONS(1815), - [anon_sym_thread_local] = ACTIONS(1815), - [anon_sym_const] = ACTIONS(1815), - [anon_sym_volatile] = ACTIONS(1815), - [anon_sym_restrict] = ACTIONS(1815), - [anon_sym__Atomic] = ACTIONS(1815), - [anon_sym_mutable] = ACTIONS(1815), - [anon_sym_constexpr] = ACTIONS(1815), - [anon_sym_signed] = ACTIONS(1815), - [anon_sym_unsigned] = ACTIONS(1815), - [anon_sym_long] = ACTIONS(1815), - [anon_sym_short] = ACTIONS(1815), - [sym_primitive_type] = ACTIONS(1815), - [anon_sym_enum] = ACTIONS(1815), - [anon_sym_class] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1815), - [anon_sym_union] = ACTIONS(1815), - [anon_sym_if] = ACTIONS(1815), - [anon_sym_switch] = ACTIONS(1815), - [anon_sym_case] = ACTIONS(1815), - [anon_sym_default] = ACTIONS(1815), - [anon_sym_while] = ACTIONS(1815), - [anon_sym_do] = ACTIONS(1815), - [anon_sym_for] = ACTIONS(1815), - [anon_sym_return] = ACTIONS(1815), - [anon_sym_break] = ACTIONS(1815), - [anon_sym_continue] = ACTIONS(1815), - [anon_sym_goto] = ACTIONS(1815), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_sizeof] = ACTIONS(1815), - [sym_number_literal] = ACTIONS(1817), - [anon_sym_L_SQUOTE] = ACTIONS(1817), - [anon_sym_u_SQUOTE] = ACTIONS(1817), - [anon_sym_U_SQUOTE] = ACTIONS(1817), - [anon_sym_u8_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_L_DQUOTE] = ACTIONS(1817), - [anon_sym_u_DQUOTE] = ACTIONS(1817), - [anon_sym_U_DQUOTE] = ACTIONS(1817), - [anon_sym_u8_DQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [sym_true] = ACTIONS(1815), - [sym_false] = ACTIONS(1815), - [sym_null] = ACTIONS(1815), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1815), - [anon_sym_virtual] = ACTIONS(1815), - [anon_sym_explicit] = ACTIONS(1815), - [sym_auto] = ACTIONS(1815), - [anon_sym_typename] = ACTIONS(1815), - [anon_sym_template] = ACTIONS(1815), - [anon_sym_operator] = ACTIONS(1815), - [anon_sym_delete] = ACTIONS(1815), - [anon_sym_throw] = ACTIONS(1815), - [anon_sym_namespace] = ACTIONS(1815), - [anon_sym_using] = ACTIONS(1815), - [anon_sym_static_assert] = ACTIONS(1815), - [anon_sym_co_return] = ACTIONS(1815), - [anon_sym_co_yield] = ACTIONS(1815), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_co_await] = ACTIONS(1815), - [anon_sym_new] = ACTIONS(1815), - [sym_this] = ACTIONS(1815), - [sym_nullptr] = ACTIONS(1815), - [sym_alone_macro] = ACTIONS(1817), - [aux_sym_alone_macro_call_token1] = ACTIONS(1815), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1815), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_FORWARD] = ACTIONS(1815), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1815), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1815), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1815), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1815), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_PS_GET] = ACTIONS(1815), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1815), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1815), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1815), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1815), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1815), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1815), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1815), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1815), - [anon_sym_MOZ_COLD] = ACTIONS(1815), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1815), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1815), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1815), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1815), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1815), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1815), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1815), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1815), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1815), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1815), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1815), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1815), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1815), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_NONNULL] = ACTIONS(1815), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1815), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1815), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1815), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1815), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1815), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1815), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1815), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1815), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1815), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1815), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1815), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1815), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1815), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1815), - [anon_sym_MOZ_RAII] = ACTIONS(1815), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1815), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1815), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1815), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1815), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1815), - [sym_raw_string_literal] = ACTIONS(1817), - }, - [649] = { - [sym_identifier] = ACTIONS(1883), - [aux_sym_preproc_include_token1] = ACTIONS(1883), - [aux_sym_preproc_def_token1] = ACTIONS(1883), - [aux_sym_preproc_if_token1] = ACTIONS(1883), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1883), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1883), - [sym_preproc_directive] = ACTIONS(1883), - [anon_sym_LPAREN2] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1883), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_typedef] = ACTIONS(1883), - [anon_sym_extern] = ACTIONS(1883), - [anon_sym___attribute__] = ACTIONS(1883), - [anon_sym_COLON_COLON] = ACTIONS(1885), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1885), - [anon_sym___declspec] = ACTIONS(1883), - [anon_sym___based] = ACTIONS(1883), - [anon_sym___cdecl] = ACTIONS(1883), - [anon_sym___clrcall] = ACTIONS(1883), - [anon_sym___stdcall] = ACTIONS(1883), - [anon_sym___fastcall] = ACTIONS(1883), - [anon_sym___thiscall] = ACTIONS(1883), - [anon_sym___vectorcall] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1883), - [anon_sym_static] = ACTIONS(1883), - [anon_sym_register] = ACTIONS(1883), - [anon_sym_inline] = ACTIONS(1883), - [anon_sym_thread_local] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(1883), - [anon_sym_volatile] = ACTIONS(1883), - [anon_sym_restrict] = ACTIONS(1883), - [anon_sym__Atomic] = ACTIONS(1883), - [anon_sym_mutable] = ACTIONS(1883), - [anon_sym_constexpr] = ACTIONS(1883), - [anon_sym_signed] = ACTIONS(1883), - [anon_sym_unsigned] = ACTIONS(1883), - [anon_sym_long] = ACTIONS(1883), - [anon_sym_short] = ACTIONS(1883), - [sym_primitive_type] = ACTIONS(1883), - [anon_sym_enum] = ACTIONS(1883), - [anon_sym_class] = ACTIONS(1883), - [anon_sym_struct] = ACTIONS(1883), - [anon_sym_union] = ACTIONS(1883), - [anon_sym_if] = ACTIONS(1883), - [anon_sym_switch] = ACTIONS(1883), - [anon_sym_case] = ACTIONS(1883), - [anon_sym_default] = ACTIONS(1883), - [anon_sym_while] = ACTIONS(1883), - [anon_sym_do] = ACTIONS(1883), - [anon_sym_for] = ACTIONS(1883), - [anon_sym_return] = ACTIONS(1883), - [anon_sym_break] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(1883), - [anon_sym_goto] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_sizeof] = ACTIONS(1883), - [sym_number_literal] = ACTIONS(1885), - [anon_sym_L_SQUOTE] = ACTIONS(1885), - [anon_sym_u_SQUOTE] = ACTIONS(1885), - [anon_sym_U_SQUOTE] = ACTIONS(1885), - [anon_sym_u8_SQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_L_DQUOTE] = ACTIONS(1885), - [anon_sym_u_DQUOTE] = ACTIONS(1885), - [anon_sym_U_DQUOTE] = ACTIONS(1885), - [anon_sym_u8_DQUOTE] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym_true] = ACTIONS(1883), - [sym_false] = ACTIONS(1883), - [sym_null] = ACTIONS(1883), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1883), - [anon_sym_virtual] = ACTIONS(1883), - [anon_sym_explicit] = ACTIONS(1883), - [sym_auto] = ACTIONS(1883), - [anon_sym_typename] = ACTIONS(1883), - [anon_sym_template] = ACTIONS(1883), - [anon_sym_operator] = ACTIONS(1883), - [anon_sym_delete] = ACTIONS(1883), - [anon_sym_throw] = ACTIONS(1883), - [anon_sym_namespace] = ACTIONS(1883), - [anon_sym_using] = ACTIONS(1883), - [anon_sym_static_assert] = ACTIONS(1883), - [anon_sym_co_return] = ACTIONS(1883), - [anon_sym_co_yield] = ACTIONS(1883), - [anon_sym_try] = ACTIONS(1883), - [anon_sym_co_await] = ACTIONS(1883), - [anon_sym_new] = ACTIONS(1883), - [sym_this] = ACTIONS(1883), - [sym_nullptr] = ACTIONS(1883), - [sym_alone_macro] = ACTIONS(1885), - [aux_sym_alone_macro_call_token1] = ACTIONS(1883), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1883), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_FORWARD] = ACTIONS(1883), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1883), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1883), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1883), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1883), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_PS_GET] = ACTIONS(1883), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1883), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1883), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1883), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1883), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1883), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1883), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1883), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1883), - [anon_sym_MOZ_COLD] = ACTIONS(1883), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1883), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1883), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1883), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1883), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1883), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1883), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1883), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1883), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1883), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1883), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1883), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1883), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1883), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_NONNULL] = ACTIONS(1883), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1883), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1883), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1883), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1883), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1883), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1883), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1883), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1883), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1883), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1883), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1883), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1883), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1883), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1883), - [anon_sym_MOZ_RAII] = ACTIONS(1883), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1883), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1883), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1883), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1883), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1883), - [sym_raw_string_literal] = ACTIONS(1885), - }, - [650] = { - [sym_identifier] = ACTIONS(1879), - [aux_sym_preproc_include_token1] = ACTIONS(1879), - [aux_sym_preproc_def_token1] = ACTIONS(1879), - [aux_sym_preproc_if_token1] = ACTIONS(1879), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1879), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1879), - [sym_preproc_directive] = ACTIONS(1879), - [anon_sym_LPAREN2] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_typedef] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym___attribute__] = ACTIONS(1879), - [anon_sym_COLON_COLON] = ACTIONS(1881), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1881), - [anon_sym___declspec] = ACTIONS(1879), - [anon_sym___based] = ACTIONS(1879), - [anon_sym___cdecl] = ACTIONS(1879), - [anon_sym___clrcall] = ACTIONS(1879), - [anon_sym___stdcall] = ACTIONS(1879), - [anon_sym___fastcall] = ACTIONS(1879), - [anon_sym___thiscall] = ACTIONS(1879), - [anon_sym___vectorcall] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_static] = ACTIONS(1879), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_inline] = ACTIONS(1879), - [anon_sym_thread_local] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [anon_sym_volatile] = ACTIONS(1879), - [anon_sym_restrict] = ACTIONS(1879), - [anon_sym__Atomic] = ACTIONS(1879), - [anon_sym_mutable] = ACTIONS(1879), - [anon_sym_constexpr] = ACTIONS(1879), - [anon_sym_signed] = ACTIONS(1879), - [anon_sym_unsigned] = ACTIONS(1879), - [anon_sym_long] = ACTIONS(1879), - [anon_sym_short] = ACTIONS(1879), - [sym_primitive_type] = ACTIONS(1879), - [anon_sym_enum] = ACTIONS(1879), - [anon_sym_class] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1879), - [anon_sym_union] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_switch] = ACTIONS(1879), - [anon_sym_case] = ACTIONS(1879), - [anon_sym_default] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_goto] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_sizeof] = ACTIONS(1879), - [sym_number_literal] = ACTIONS(1881), - [anon_sym_L_SQUOTE] = ACTIONS(1881), - [anon_sym_u_SQUOTE] = ACTIONS(1881), - [anon_sym_U_SQUOTE] = ACTIONS(1881), - [anon_sym_u8_SQUOTE] = ACTIONS(1881), - [anon_sym_SQUOTE] = ACTIONS(1881), - [anon_sym_L_DQUOTE] = ACTIONS(1881), - [anon_sym_u_DQUOTE] = ACTIONS(1881), - [anon_sym_U_DQUOTE] = ACTIONS(1881), - [anon_sym_u8_DQUOTE] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym_true] = ACTIONS(1879), - [sym_false] = ACTIONS(1879), - [sym_null] = ACTIONS(1879), + }, + [STATE(205)] = { + [sym_identifier] = ACTIONS(2232), + [aux_sym_preproc_include_token1] = ACTIONS(2232), + [aux_sym_preproc_def_token1] = ACTIONS(2232), + [aux_sym_preproc_if_token1] = ACTIONS(2232), + [aux_sym_preproc_if_token2] = ACTIONS(2232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2232), + [aux_sym_preproc_else_token1] = ACTIONS(2232), + [aux_sym_preproc_elif_token1] = ACTIONS(2232), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2232), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2232), + [sym_preproc_directive] = ACTIONS(2232), + [anon_sym_LPAREN2] = ACTIONS(2234), + [anon_sym_BANG] = ACTIONS(2234), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym___extension__] = ACTIONS(2232), + [anon_sym_typedef] = ACTIONS(2232), + [anon_sym_virtual] = ACTIONS(2232), + [anon_sym_extern] = ACTIONS(2232), + [anon_sym___attribute__] = ACTIONS(2232), + [anon_sym___attribute] = ACTIONS(2232), + [anon_sym_COLON_COLON] = ACTIONS(2234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2234), + [anon_sym___declspec] = ACTIONS(2232), + [anon_sym___based] = ACTIONS(2232), + [anon_sym___cdecl] = ACTIONS(2232), + [anon_sym___clrcall] = ACTIONS(2232), + [anon_sym___stdcall] = ACTIONS(2232), + [anon_sym___fastcall] = ACTIONS(2232), + [anon_sym___thiscall] = ACTIONS(2232), + [anon_sym___vectorcall] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_signed] = ACTIONS(2232), + [anon_sym_unsigned] = ACTIONS(2232), + [anon_sym_long] = ACTIONS(2232), + [anon_sym_short] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2232), + [anon_sym_static] = ACTIONS(2232), + [anon_sym_register] = ACTIONS(2232), + [anon_sym_inline] = ACTIONS(2232), + [anon_sym___inline] = ACTIONS(2232), + [anon_sym___inline__] = ACTIONS(2232), + [anon_sym___forceinline] = ACTIONS(2232), + [anon_sym_thread_local] = ACTIONS(2232), + [anon_sym___thread] = ACTIONS(2232), + [anon_sym_const] = ACTIONS(2232), + [anon_sym_constexpr] = ACTIONS(2232), + [anon_sym_volatile] = ACTIONS(2232), + [anon_sym_restrict] = ACTIONS(2232), + [anon_sym___restrict__] = ACTIONS(2232), + [anon_sym__Atomic] = ACTIONS(2232), + [anon_sym__Noreturn] = ACTIONS(2232), + [anon_sym_noreturn] = ACTIONS(2232), + [anon_sym__Nonnull] = ACTIONS(2232), + [anon_sym_mutable] = ACTIONS(2232), + [anon_sym_constinit] = ACTIONS(2232), + [anon_sym_consteval] = ACTIONS(2232), + [anon_sym_alignas] = ACTIONS(2232), + [anon_sym__Alignas] = ACTIONS(2232), + [sym_primitive_type] = ACTIONS(2232), + [anon_sym_enum] = ACTIONS(2232), + [anon_sym_class] = ACTIONS(2232), + [anon_sym_struct] = ACTIONS(2232), + [anon_sym_union] = ACTIONS(2232), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_switch] = ACTIONS(2232), + [anon_sym_case] = ACTIONS(2232), + [anon_sym_default] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2232), + [anon_sym_do] = ACTIONS(2232), + [anon_sym_for] = ACTIONS(2232), + [anon_sym_return] = ACTIONS(2232), + [anon_sym_break] = ACTIONS(2232), + [anon_sym_continue] = ACTIONS(2232), + [anon_sym_goto] = ACTIONS(2232), + [anon_sym___try] = ACTIONS(2232), + [anon_sym___leave] = ACTIONS(2232), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_sizeof] = ACTIONS(2232), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2232), + [anon_sym__Generic] = ACTIONS(2232), + [anon_sym_asm] = ACTIONS(2232), + [anon_sym___asm__] = ACTIONS(2232), + [anon_sym___asm] = ACTIONS(2232), + [sym_number_literal] = ACTIONS(2234), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2234), + [anon_sym_u_DQUOTE] = ACTIONS(2234), + [anon_sym_U_DQUOTE] = ACTIONS(2234), + [anon_sym_u8_DQUOTE] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2234), + [sym_true] = ACTIONS(2232), + [sym_false] = ACTIONS(2232), + [anon_sym_NULL] = ACTIONS(2232), + [anon_sym_nullptr] = ACTIONS(2232), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2232), + [anon_sym_decltype] = ACTIONS(2232), + [anon_sym_explicit] = ACTIONS(2232), + [anon_sym_typename] = ACTIONS(2232), + [anon_sym_template] = ACTIONS(2232), + [anon_sym_operator] = ACTIONS(2232), + [anon_sym_try] = ACTIONS(2232), + [anon_sym_delete] = ACTIONS(2232), + [anon_sym_throw] = ACTIONS(2232), + [anon_sym_namespace] = ACTIONS(2232), + [anon_sym_using] = ACTIONS(2232), + [anon_sym_static_assert] = ACTIONS(2232), + [anon_sym_concept] = ACTIONS(2232), + [anon_sym_co_return] = ACTIONS(2232), + [anon_sym_co_yield] = ACTIONS(2232), + [anon_sym_R_DQUOTE] = ACTIONS(2234), + [anon_sym_LR_DQUOTE] = ACTIONS(2234), + [anon_sym_uR_DQUOTE] = ACTIONS(2234), + [anon_sym_UR_DQUOTE] = ACTIONS(2234), + [anon_sym_u8R_DQUOTE] = ACTIONS(2234), + [anon_sym_co_await] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_requires] = ACTIONS(2232), + [sym_this] = ACTIONS(2232), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2232), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_FORWARD] = ACTIONS(2232), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2232), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2232), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2232), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2232), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_PS_GET] = ACTIONS(2232), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2232), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2232), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2232), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2232), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2232), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2232), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2232), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2232), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2232), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2232), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2232), + [anon_sym_MOZ_COLD] = ACTIONS(2232), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2232), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2232), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2232), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2232), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2232), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2232), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2232), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2232), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2232), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2232), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2232), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2232), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2232), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2232), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2232), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2232), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2232), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2232), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2232), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2232), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_NONNULL] = ACTIONS(2232), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2232), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2232), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2232), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2232), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2232), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_NORETURN] = ACTIONS(2232), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2232), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2232), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2232), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2232), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2232), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2232), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2232), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2232), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2232), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2232), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2232), + [anon_sym_MOZ_RAII] = ACTIONS(2232), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2232), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2232), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2232), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2232), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2232), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2232), + }, + [STATE(206)] = { + [sym_identifier] = ACTIONS(2236), + [aux_sym_preproc_include_token1] = ACTIONS(2236), + [aux_sym_preproc_def_token1] = ACTIONS(2236), + [aux_sym_preproc_if_token1] = ACTIONS(2236), + [aux_sym_preproc_if_token2] = ACTIONS(2236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2236), + [aux_sym_preproc_else_token1] = ACTIONS(2236), + [aux_sym_preproc_elif_token1] = ACTIONS(2236), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2236), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2236), + [sym_preproc_directive] = ACTIONS(2236), + [anon_sym_LPAREN2] = ACTIONS(2238), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_TILDE] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_STAR] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_typedef] = ACTIONS(2236), + [anon_sym_virtual] = ACTIONS(2236), + [anon_sym_extern] = ACTIONS(2236), + [anon_sym___attribute__] = ACTIONS(2236), + [anon_sym___attribute] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2238), + [anon_sym___declspec] = ACTIONS(2236), + [anon_sym___based] = ACTIONS(2236), + [anon_sym___cdecl] = ACTIONS(2236), + [anon_sym___clrcall] = ACTIONS(2236), + [anon_sym___stdcall] = ACTIONS(2236), + [anon_sym___fastcall] = ACTIONS(2236), + [anon_sym___thiscall] = ACTIONS(2236), + [anon_sym___vectorcall] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_signed] = ACTIONS(2236), + [anon_sym_unsigned] = ACTIONS(2236), + [anon_sym_long] = ACTIONS(2236), + [anon_sym_short] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_register] = ACTIONS(2236), + [anon_sym_inline] = ACTIONS(2236), + [anon_sym___inline] = ACTIONS(2236), + [anon_sym___inline__] = ACTIONS(2236), + [anon_sym___forceinline] = ACTIONS(2236), + [anon_sym_thread_local] = ACTIONS(2236), + [anon_sym___thread] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(2236), + [anon_sym_constexpr] = ACTIONS(2236), + [anon_sym_volatile] = ACTIONS(2236), + [anon_sym_restrict] = ACTIONS(2236), + [anon_sym___restrict__] = ACTIONS(2236), + [anon_sym__Atomic] = ACTIONS(2236), + [anon_sym__Noreturn] = ACTIONS(2236), + [anon_sym_noreturn] = ACTIONS(2236), + [anon_sym__Nonnull] = ACTIONS(2236), + [anon_sym_mutable] = ACTIONS(2236), + [anon_sym_constinit] = ACTIONS(2236), + [anon_sym_consteval] = ACTIONS(2236), + [anon_sym_alignas] = ACTIONS(2236), + [anon_sym__Alignas] = ACTIONS(2236), + [sym_primitive_type] = ACTIONS(2236), + [anon_sym_enum] = ACTIONS(2236), + [anon_sym_class] = ACTIONS(2236), + [anon_sym_struct] = ACTIONS(2236), + [anon_sym_union] = ACTIONS(2236), + [anon_sym_if] = ACTIONS(2236), + [anon_sym_switch] = ACTIONS(2236), + [anon_sym_case] = ACTIONS(2236), + [anon_sym_default] = ACTIONS(2236), + [anon_sym_while] = ACTIONS(2236), + [anon_sym_do] = ACTIONS(2236), + [anon_sym_for] = ACTIONS(2236), + [anon_sym_return] = ACTIONS(2236), + [anon_sym_break] = ACTIONS(2236), + [anon_sym_continue] = ACTIONS(2236), + [anon_sym_goto] = ACTIONS(2236), + [anon_sym___try] = ACTIONS(2236), + [anon_sym___leave] = ACTIONS(2236), + [anon_sym_not] = ACTIONS(2236), + [anon_sym_compl] = ACTIONS(2236), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_sizeof] = ACTIONS(2236), + [anon_sym___alignof__] = ACTIONS(2236), + [anon_sym___alignof] = ACTIONS(2236), + [anon_sym__alignof] = ACTIONS(2236), + [anon_sym_alignof] = ACTIONS(2236), + [anon_sym__Alignof] = ACTIONS(2236), + [anon_sym_offsetof] = ACTIONS(2236), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2236), + [anon_sym___asm__] = ACTIONS(2236), + [anon_sym___asm] = ACTIONS(2236), + [sym_number_literal] = ACTIONS(2238), + [anon_sym_L_SQUOTE] = ACTIONS(2238), + [anon_sym_u_SQUOTE] = ACTIONS(2238), + [anon_sym_U_SQUOTE] = ACTIONS(2238), + [anon_sym_u8_SQUOTE] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2238), + [anon_sym_L_DQUOTE] = ACTIONS(2238), + [anon_sym_u_DQUOTE] = ACTIONS(2238), + [anon_sym_U_DQUOTE] = ACTIONS(2238), + [anon_sym_u8_DQUOTE] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2238), + [sym_true] = ACTIONS(2236), + [sym_false] = ACTIONS(2236), + [anon_sym_NULL] = ACTIONS(2236), + [anon_sym_nullptr] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2236), + [anon_sym_decltype] = ACTIONS(2236), + [anon_sym_explicit] = ACTIONS(2236), + [anon_sym_typename] = ACTIONS(2236), + [anon_sym_template] = ACTIONS(2236), + [anon_sym_operator] = ACTIONS(2236), + [anon_sym_try] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2236), + [anon_sym_throw] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2236), + [anon_sym_using] = ACTIONS(2236), + [anon_sym_static_assert] = ACTIONS(2236), + [anon_sym_concept] = ACTIONS(2236), + [anon_sym_co_return] = ACTIONS(2236), + [anon_sym_co_yield] = ACTIONS(2236), + [anon_sym_R_DQUOTE] = ACTIONS(2238), + [anon_sym_LR_DQUOTE] = ACTIONS(2238), + [anon_sym_uR_DQUOTE] = ACTIONS(2238), + [anon_sym_UR_DQUOTE] = ACTIONS(2238), + [anon_sym_u8R_DQUOTE] = ACTIONS(2238), + [anon_sym_co_await] = ACTIONS(2236), + [anon_sym_new] = ACTIONS(2236), + [anon_sym_requires] = ACTIONS(2236), + [sym_this] = ACTIONS(2236), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2236), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_FORWARD] = ACTIONS(2236), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2236), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2236), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2236), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2236), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_PS_GET] = ACTIONS(2236), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2236), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2236), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2236), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2236), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2236), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2236), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2236), + [anon_sym_MOZ_COLD] = ACTIONS(2236), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2236), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2236), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2236), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2236), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2236), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2236), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2236), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2236), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2236), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2236), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2236), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2236), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2236), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_NONNULL] = ACTIONS(2236), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2236), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2236), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2236), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2236), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2236), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2236), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2236), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2236), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2236), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2236), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2236), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2236), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2236), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2236), + [anon_sym_MOZ_RAII] = ACTIONS(2236), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2236), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2236), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2236), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2236), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2236), + }, + [STATE(207)] = { + [sym_identifier] = ACTIONS(2240), + [aux_sym_preproc_include_token1] = ACTIONS(2240), + [aux_sym_preproc_def_token1] = ACTIONS(2240), + [aux_sym_preproc_if_token1] = ACTIONS(2240), + [aux_sym_preproc_if_token2] = ACTIONS(2240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2240), + [aux_sym_preproc_else_token1] = ACTIONS(2240), + [aux_sym_preproc_elif_token1] = ACTIONS(2240), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2240), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2240), + [sym_preproc_directive] = ACTIONS(2240), + [anon_sym_LPAREN2] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_TILDE] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym___extension__] = ACTIONS(2240), + [anon_sym_typedef] = ACTIONS(2240), + [anon_sym_virtual] = ACTIONS(2240), + [anon_sym_extern] = ACTIONS(2240), + [anon_sym___attribute__] = ACTIONS(2240), + [anon_sym___attribute] = ACTIONS(2240), + [anon_sym_COLON_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2242), + [anon_sym___declspec] = ACTIONS(2240), + [anon_sym___based] = ACTIONS(2240), + [anon_sym___cdecl] = ACTIONS(2240), + [anon_sym___clrcall] = ACTIONS(2240), + [anon_sym___stdcall] = ACTIONS(2240), + [anon_sym___fastcall] = ACTIONS(2240), + [anon_sym___thiscall] = ACTIONS(2240), + [anon_sym___vectorcall] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_signed] = ACTIONS(2240), + [anon_sym_unsigned] = ACTIONS(2240), + [anon_sym_long] = ACTIONS(2240), + [anon_sym_short] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2240), + [anon_sym_static] = ACTIONS(2240), + [anon_sym_register] = ACTIONS(2240), + [anon_sym_inline] = ACTIONS(2240), + [anon_sym___inline] = ACTIONS(2240), + [anon_sym___inline__] = ACTIONS(2240), + [anon_sym___forceinline] = ACTIONS(2240), + [anon_sym_thread_local] = ACTIONS(2240), + [anon_sym___thread] = ACTIONS(2240), + [anon_sym_const] = ACTIONS(2240), + [anon_sym_constexpr] = ACTIONS(2240), + [anon_sym_volatile] = ACTIONS(2240), + [anon_sym_restrict] = ACTIONS(2240), + [anon_sym___restrict__] = ACTIONS(2240), + [anon_sym__Atomic] = ACTIONS(2240), + [anon_sym__Noreturn] = ACTIONS(2240), + [anon_sym_noreturn] = ACTIONS(2240), + [anon_sym__Nonnull] = ACTIONS(2240), + [anon_sym_mutable] = ACTIONS(2240), + [anon_sym_constinit] = ACTIONS(2240), + [anon_sym_consteval] = ACTIONS(2240), + [anon_sym_alignas] = ACTIONS(2240), + [anon_sym__Alignas] = ACTIONS(2240), + [sym_primitive_type] = ACTIONS(2240), + [anon_sym_enum] = ACTIONS(2240), + [anon_sym_class] = ACTIONS(2240), + [anon_sym_struct] = ACTIONS(2240), + [anon_sym_union] = ACTIONS(2240), + [anon_sym_if] = ACTIONS(2240), + [anon_sym_switch] = ACTIONS(2240), + [anon_sym_case] = ACTIONS(2240), + [anon_sym_default] = ACTIONS(2240), + [anon_sym_while] = ACTIONS(2240), + [anon_sym_do] = ACTIONS(2240), + [anon_sym_for] = ACTIONS(2240), + [anon_sym_return] = ACTIONS(2240), + [anon_sym_break] = ACTIONS(2240), + [anon_sym_continue] = ACTIONS(2240), + [anon_sym_goto] = ACTIONS(2240), + [anon_sym___try] = ACTIONS(2240), + [anon_sym___leave] = ACTIONS(2240), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_compl] = ACTIONS(2240), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_sizeof] = ACTIONS(2240), + [anon_sym___alignof__] = ACTIONS(2240), + [anon_sym___alignof] = ACTIONS(2240), + [anon_sym__alignof] = ACTIONS(2240), + [anon_sym_alignof] = ACTIONS(2240), + [anon_sym__Alignof] = ACTIONS(2240), + [anon_sym_offsetof] = ACTIONS(2240), + [anon_sym__Generic] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(2240), + [anon_sym___asm__] = ACTIONS(2240), + [anon_sym___asm] = ACTIONS(2240), + [sym_number_literal] = ACTIONS(2242), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_L_DQUOTE] = ACTIONS(2242), + [anon_sym_u_DQUOTE] = ACTIONS(2242), + [anon_sym_U_DQUOTE] = ACTIONS(2242), + [anon_sym_u8_DQUOTE] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym_true] = ACTIONS(2240), + [sym_false] = ACTIONS(2240), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2240), + [anon_sym_decltype] = ACTIONS(2240), + [anon_sym_explicit] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_template] = ACTIONS(2240), + [anon_sym_operator] = ACTIONS(2240), + [anon_sym_try] = ACTIONS(2240), + [anon_sym_delete] = ACTIONS(2240), + [anon_sym_throw] = ACTIONS(2240), + [anon_sym_namespace] = ACTIONS(2240), + [anon_sym_using] = ACTIONS(2240), + [anon_sym_static_assert] = ACTIONS(2240), + [anon_sym_concept] = ACTIONS(2240), + [anon_sym_co_return] = ACTIONS(2240), + [anon_sym_co_yield] = ACTIONS(2240), + [anon_sym_R_DQUOTE] = ACTIONS(2242), + [anon_sym_LR_DQUOTE] = ACTIONS(2242), + [anon_sym_uR_DQUOTE] = ACTIONS(2242), + [anon_sym_UR_DQUOTE] = ACTIONS(2242), + [anon_sym_u8R_DQUOTE] = ACTIONS(2242), + [anon_sym_co_await] = ACTIONS(2240), + [anon_sym_new] = ACTIONS(2240), + [anon_sym_requires] = ACTIONS(2240), + [sym_this] = ACTIONS(2240), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2240), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_FORWARD] = ACTIONS(2240), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2240), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2240), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2240), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2240), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_PS_GET] = ACTIONS(2240), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2240), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2240), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2240), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2240), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2240), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2240), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2240), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2240), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2240), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2240), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2240), + [anon_sym_MOZ_COLD] = ACTIONS(2240), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2240), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2240), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2240), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2240), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2240), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2240), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2240), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2240), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2240), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2240), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2240), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2240), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2240), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2240), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2240), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2240), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2240), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2240), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2240), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2240), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_NONNULL] = ACTIONS(2240), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2240), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2240), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2240), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2240), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2240), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_NORETURN] = ACTIONS(2240), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2240), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2240), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2240), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2240), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2240), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2240), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2240), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2240), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2240), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2240), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2240), + [anon_sym_MOZ_RAII] = ACTIONS(2240), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2240), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2240), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2240), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2240), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2240), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2240), + }, + [STATE(208)] = { + [sym_identifier] = ACTIONS(2244), + [aux_sym_preproc_include_token1] = ACTIONS(2244), + [aux_sym_preproc_def_token1] = ACTIONS(2244), + [aux_sym_preproc_if_token1] = ACTIONS(2244), + [aux_sym_preproc_if_token2] = ACTIONS(2244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2244), + [aux_sym_preproc_else_token1] = ACTIONS(2244), + [aux_sym_preproc_elif_token1] = ACTIONS(2244), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2244), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2244), + [sym_preproc_directive] = ACTIONS(2244), + [anon_sym_LPAREN2] = ACTIONS(2246), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_STAR] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym___extension__] = ACTIONS(2244), + [anon_sym_typedef] = ACTIONS(2244), + [anon_sym_virtual] = ACTIONS(2244), + [anon_sym_extern] = ACTIONS(2244), + [anon_sym___attribute__] = ACTIONS(2244), + [anon_sym___attribute] = ACTIONS(2244), + [anon_sym_COLON_COLON] = ACTIONS(2246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2246), + [anon_sym___declspec] = ACTIONS(2244), + [anon_sym___based] = ACTIONS(2244), + [anon_sym___cdecl] = ACTIONS(2244), + [anon_sym___clrcall] = ACTIONS(2244), + [anon_sym___stdcall] = ACTIONS(2244), + [anon_sym___fastcall] = ACTIONS(2244), + [anon_sym___thiscall] = ACTIONS(2244), + [anon_sym___vectorcall] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_register] = ACTIONS(2244), + [anon_sym_inline] = ACTIONS(2244), + [anon_sym___inline] = ACTIONS(2244), + [anon_sym___inline__] = ACTIONS(2244), + [anon_sym___forceinline] = ACTIONS(2244), + [anon_sym_thread_local] = ACTIONS(2244), + [anon_sym___thread] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_constexpr] = ACTIONS(2244), + [anon_sym_volatile] = ACTIONS(2244), + [anon_sym_restrict] = ACTIONS(2244), + [anon_sym___restrict__] = ACTIONS(2244), + [anon_sym__Atomic] = ACTIONS(2244), + [anon_sym__Noreturn] = ACTIONS(2244), + [anon_sym_noreturn] = ACTIONS(2244), + [anon_sym__Nonnull] = ACTIONS(2244), + [anon_sym_mutable] = ACTIONS(2244), + [anon_sym_constinit] = ACTIONS(2244), + [anon_sym_consteval] = ACTIONS(2244), + [anon_sym_alignas] = ACTIONS(2244), + [anon_sym__Alignas] = ACTIONS(2244), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_struct] = ACTIONS(2244), + [anon_sym_union] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_goto] = ACTIONS(2244), + [anon_sym___try] = ACTIONS(2244), + [anon_sym___leave] = ACTIONS(2244), + [anon_sym_not] = ACTIONS(2244), + [anon_sym_compl] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_sizeof] = ACTIONS(2244), + [anon_sym___alignof__] = ACTIONS(2244), + [anon_sym___alignof] = ACTIONS(2244), + [anon_sym__alignof] = ACTIONS(2244), + [anon_sym_alignof] = ACTIONS(2244), + [anon_sym__Alignof] = ACTIONS(2244), + [anon_sym_offsetof] = ACTIONS(2244), + [anon_sym__Generic] = ACTIONS(2244), + [anon_sym_asm] = ACTIONS(2244), + [anon_sym___asm__] = ACTIONS(2244), + [anon_sym___asm] = ACTIONS(2244), + [sym_number_literal] = ACTIONS(2246), + [anon_sym_L_SQUOTE] = ACTIONS(2246), + [anon_sym_u_SQUOTE] = ACTIONS(2246), + [anon_sym_U_SQUOTE] = ACTIONS(2246), + [anon_sym_u8_SQUOTE] = ACTIONS(2246), + [anon_sym_SQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [anon_sym_NULL] = ACTIONS(2244), + [anon_sym_nullptr] = ACTIONS(2244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2244), + [anon_sym_decltype] = ACTIONS(2244), + [anon_sym_explicit] = ACTIONS(2244), + [anon_sym_typename] = ACTIONS(2244), + [anon_sym_template] = ACTIONS(2244), + [anon_sym_operator] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_static_assert] = ACTIONS(2244), + [anon_sym_concept] = ACTIONS(2244), + [anon_sym_co_return] = ACTIONS(2244), + [anon_sym_co_yield] = ACTIONS(2244), + [anon_sym_R_DQUOTE] = ACTIONS(2246), + [anon_sym_LR_DQUOTE] = ACTIONS(2246), + [anon_sym_uR_DQUOTE] = ACTIONS(2246), + [anon_sym_UR_DQUOTE] = ACTIONS(2246), + [anon_sym_u8R_DQUOTE] = ACTIONS(2246), + [anon_sym_co_await] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_requires] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2244), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_FORWARD] = ACTIONS(2244), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2244), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2244), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2244), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2244), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_PS_GET] = ACTIONS(2244), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2244), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2244), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2244), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2244), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2244), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2244), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2244), + [anon_sym_MOZ_COLD] = ACTIONS(2244), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2244), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2244), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2244), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2244), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2244), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2244), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2244), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2244), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2244), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2244), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2244), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2244), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2244), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_NONNULL] = ACTIONS(2244), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2244), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2244), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2244), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2244), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2244), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2244), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2244), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2244), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2244), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2244), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2244), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2244), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2244), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2244), + [anon_sym_MOZ_RAII] = ACTIONS(2244), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2244), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2244), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2244), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2244), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2244), + }, + [STATE(209)] = { + [sym_catch_clause] = STATE(218), + [aux_sym_constructor_try_statement_repeat1] = STATE(218), + [sym_identifier] = ACTIONS(1931), + [aux_sym_preproc_include_token1] = ACTIONS(1931), + [aux_sym_preproc_def_token1] = ACTIONS(1931), + [aux_sym_preproc_if_token1] = ACTIONS(1931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1931), + [sym_preproc_directive] = ACTIONS(1931), + [anon_sym_LPAREN2] = ACTIONS(1933), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_AMP_AMP] = ACTIONS(1933), + [anon_sym_AMP] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym___extension__] = ACTIONS(1931), + [anon_sym_typedef] = ACTIONS(1931), + [anon_sym_virtual] = ACTIONS(1931), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym___attribute__] = ACTIONS(1931), + [anon_sym___attribute] = ACTIONS(1931), + [anon_sym_COLON_COLON] = ACTIONS(1933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1933), + [anon_sym___declspec] = ACTIONS(1931), + [anon_sym___based] = ACTIONS(1931), + [anon_sym___cdecl] = ACTIONS(1931), + [anon_sym___clrcall] = ACTIONS(1931), + [anon_sym___stdcall] = ACTIONS(1931), + [anon_sym___fastcall] = ACTIONS(1931), + [anon_sym___thiscall] = ACTIONS(1931), + [anon_sym___vectorcall] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_static] = ACTIONS(1931), + [anon_sym_register] = ACTIONS(1931), + [anon_sym_inline] = ACTIONS(1931), + [anon_sym___inline] = ACTIONS(1931), + [anon_sym___inline__] = ACTIONS(1931), + [anon_sym___forceinline] = ACTIONS(1931), + [anon_sym_thread_local] = ACTIONS(1931), + [anon_sym___thread] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_constexpr] = ACTIONS(1931), + [anon_sym_volatile] = ACTIONS(1931), + [anon_sym_restrict] = ACTIONS(1931), + [anon_sym___restrict__] = ACTIONS(1931), + [anon_sym__Atomic] = ACTIONS(1931), + [anon_sym__Noreturn] = ACTIONS(1931), + [anon_sym_noreturn] = ACTIONS(1931), + [anon_sym__Nonnull] = ACTIONS(1931), + [anon_sym_mutable] = ACTIONS(1931), + [anon_sym_constinit] = ACTIONS(1931), + [anon_sym_consteval] = ACTIONS(1931), + [anon_sym_alignas] = ACTIONS(1931), + [anon_sym__Alignas] = ACTIONS(1931), + [sym_primitive_type] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [anon_sym_class] = ACTIONS(1931), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_union] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_else] = ACTIONS(1931), + [anon_sym_switch] = ACTIONS(1931), + [anon_sym_case] = ACTIONS(1931), + [anon_sym_default] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_goto] = ACTIONS(1931), + [anon_sym___try] = ACTIONS(1931), + [anon_sym___leave] = ACTIONS(1931), + [anon_sym_not] = ACTIONS(1931), + [anon_sym_compl] = ACTIONS(1931), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [anon_sym_PLUS_PLUS] = ACTIONS(1933), + [anon_sym_sizeof] = ACTIONS(1931), + [anon_sym___alignof__] = ACTIONS(1931), + [anon_sym___alignof] = ACTIONS(1931), + [anon_sym__alignof] = ACTIONS(1931), + [anon_sym_alignof] = ACTIONS(1931), + [anon_sym__Alignof] = ACTIONS(1931), + [anon_sym_offsetof] = ACTIONS(1931), + [anon_sym__Generic] = ACTIONS(1931), + [anon_sym_asm] = ACTIONS(1931), + [anon_sym___asm__] = ACTIONS(1931), + [anon_sym___asm] = ACTIONS(1931), + [sym_number_literal] = ACTIONS(1933), + [anon_sym_L_SQUOTE] = ACTIONS(1933), + [anon_sym_u_SQUOTE] = ACTIONS(1933), + [anon_sym_U_SQUOTE] = ACTIONS(1933), + [anon_sym_u8_SQUOTE] = ACTIONS(1933), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_L_DQUOTE] = ACTIONS(1933), + [anon_sym_u_DQUOTE] = ACTIONS(1933), + [anon_sym_U_DQUOTE] = ACTIONS(1933), + [anon_sym_u8_DQUOTE] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(1933), + [sym_true] = ACTIONS(1931), + [sym_false] = ACTIONS(1931), + [anon_sym_NULL] = ACTIONS(1931), + [anon_sym_nullptr] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1931), + [anon_sym_decltype] = ACTIONS(1931), + [anon_sym_explicit] = ACTIONS(1931), + [anon_sym_typename] = ACTIONS(1931), + [anon_sym_template] = ACTIONS(1931), + [anon_sym_operator] = ACTIONS(1931), + [anon_sym_try] = ACTIONS(1931), + [anon_sym_delete] = ACTIONS(1931), + [anon_sym_throw] = ACTIONS(1931), + [anon_sym_namespace] = ACTIONS(1931), + [anon_sym_using] = ACTIONS(1931), + [anon_sym_static_assert] = ACTIONS(1931), + [anon_sym_concept] = ACTIONS(1931), + [anon_sym_co_return] = ACTIONS(1931), + [anon_sym_co_yield] = ACTIONS(1931), + [anon_sym_catch] = ACTIONS(2248), + [anon_sym_R_DQUOTE] = ACTIONS(1933), + [anon_sym_LR_DQUOTE] = ACTIONS(1933), + [anon_sym_uR_DQUOTE] = ACTIONS(1933), + [anon_sym_UR_DQUOTE] = ACTIONS(1933), + [anon_sym_u8R_DQUOTE] = ACTIONS(1933), + [anon_sym_co_await] = ACTIONS(1931), + [anon_sym_new] = ACTIONS(1931), + [anon_sym_requires] = ACTIONS(1931), + [sym_this] = ACTIONS(1931), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_FORWARD] = ACTIONS(1931), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1931), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_PS_GET] = ACTIONS(1931), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1931), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1931), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1931), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1931), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1931), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1931), + [anon_sym_MOZ_COLD] = ACTIONS(1931), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1931), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1931), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1931), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1931), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1931), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1931), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1931), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1931), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1931), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1931), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1931), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1931), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1931), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_NONNULL] = ACTIONS(1931), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1931), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1931), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1931), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1931), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1931), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1931), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1931), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1931), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1931), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1931), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1931), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1931), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1931), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1931), + [anon_sym_MOZ_RAII] = ACTIONS(1931), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1931), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1931), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1931), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1931), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1931), + }, + [STATE(210)] = { + [sym_identifier] = ACTIONS(2250), + [aux_sym_preproc_include_token1] = ACTIONS(2250), + [aux_sym_preproc_def_token1] = ACTIONS(2250), + [aux_sym_preproc_if_token1] = ACTIONS(2250), + [aux_sym_preproc_if_token2] = ACTIONS(2250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2250), + [aux_sym_preproc_else_token1] = ACTIONS(2250), + [aux_sym_preproc_elif_token1] = ACTIONS(2250), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2250), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2250), + [sym_preproc_directive] = ACTIONS(2250), + [anon_sym_LPAREN2] = ACTIONS(2252), + [anon_sym_BANG] = ACTIONS(2252), + [anon_sym_TILDE] = ACTIONS(2252), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2252), + [anon_sym_AMP_AMP] = ACTIONS(2252), + [anon_sym_AMP] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2252), + [anon_sym___extension__] = ACTIONS(2250), + [anon_sym_typedef] = ACTIONS(2250), + [anon_sym_virtual] = ACTIONS(2250), + [anon_sym_extern] = ACTIONS(2250), + [anon_sym___attribute__] = ACTIONS(2250), + [anon_sym___attribute] = ACTIONS(2250), + [anon_sym_COLON_COLON] = ACTIONS(2252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2252), + [anon_sym___declspec] = ACTIONS(2250), + [anon_sym___based] = ACTIONS(2250), + [anon_sym___cdecl] = ACTIONS(2250), + [anon_sym___clrcall] = ACTIONS(2250), + [anon_sym___stdcall] = ACTIONS(2250), + [anon_sym___fastcall] = ACTIONS(2250), + [anon_sym___thiscall] = ACTIONS(2250), + [anon_sym___vectorcall] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2252), + [anon_sym_signed] = ACTIONS(2250), + [anon_sym_unsigned] = ACTIONS(2250), + [anon_sym_long] = ACTIONS(2250), + [anon_sym_short] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_register] = ACTIONS(2250), + [anon_sym_inline] = ACTIONS(2250), + [anon_sym___inline] = ACTIONS(2250), + [anon_sym___inline__] = ACTIONS(2250), + [anon_sym___forceinline] = ACTIONS(2250), + [anon_sym_thread_local] = ACTIONS(2250), + [anon_sym___thread] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_constexpr] = ACTIONS(2250), + [anon_sym_volatile] = ACTIONS(2250), + [anon_sym_restrict] = ACTIONS(2250), + [anon_sym___restrict__] = ACTIONS(2250), + [anon_sym__Atomic] = ACTIONS(2250), + [anon_sym__Noreturn] = ACTIONS(2250), + [anon_sym_noreturn] = ACTIONS(2250), + [anon_sym__Nonnull] = ACTIONS(2250), + [anon_sym_mutable] = ACTIONS(2250), + [anon_sym_constinit] = ACTIONS(2250), + [anon_sym_consteval] = ACTIONS(2250), + [anon_sym_alignas] = ACTIONS(2250), + [anon_sym__Alignas] = ACTIONS(2250), + [sym_primitive_type] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_case] = ACTIONS(2250), + [anon_sym_default] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_goto] = ACTIONS(2250), + [anon_sym___try] = ACTIONS(2250), + [anon_sym___leave] = ACTIONS(2250), + [anon_sym_not] = ACTIONS(2250), + [anon_sym_compl] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2252), + [anon_sym_PLUS_PLUS] = ACTIONS(2252), + [anon_sym_sizeof] = ACTIONS(2250), + [anon_sym___alignof__] = ACTIONS(2250), + [anon_sym___alignof] = ACTIONS(2250), + [anon_sym__alignof] = ACTIONS(2250), + [anon_sym_alignof] = ACTIONS(2250), + [anon_sym__Alignof] = ACTIONS(2250), + [anon_sym_offsetof] = ACTIONS(2250), + [anon_sym__Generic] = ACTIONS(2250), + [anon_sym_asm] = ACTIONS(2250), + [anon_sym___asm__] = ACTIONS(2250), + [anon_sym___asm] = ACTIONS(2250), + [sym_number_literal] = ACTIONS(2252), + [anon_sym_L_SQUOTE] = ACTIONS(2252), + [anon_sym_u_SQUOTE] = ACTIONS(2252), + [anon_sym_U_SQUOTE] = ACTIONS(2252), + [anon_sym_u8_SQUOTE] = ACTIONS(2252), + [anon_sym_SQUOTE] = ACTIONS(2252), + [anon_sym_L_DQUOTE] = ACTIONS(2252), + [anon_sym_u_DQUOTE] = ACTIONS(2252), + [anon_sym_U_DQUOTE] = ACTIONS(2252), + [anon_sym_u8_DQUOTE] = ACTIONS(2252), + [anon_sym_DQUOTE] = ACTIONS(2252), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2250), + [anon_sym_decltype] = ACTIONS(2250), + [anon_sym_explicit] = ACTIONS(2250), + [anon_sym_typename] = ACTIONS(2250), + [anon_sym_template] = ACTIONS(2250), + [anon_sym_operator] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_static_assert] = ACTIONS(2250), + [anon_sym_concept] = ACTIONS(2250), + [anon_sym_co_return] = ACTIONS(2250), + [anon_sym_co_yield] = ACTIONS(2250), + [anon_sym_R_DQUOTE] = ACTIONS(2252), + [anon_sym_LR_DQUOTE] = ACTIONS(2252), + [anon_sym_uR_DQUOTE] = ACTIONS(2252), + [anon_sym_UR_DQUOTE] = ACTIONS(2252), + [anon_sym_u8R_DQUOTE] = ACTIONS(2252), + [anon_sym_co_await] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2250), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_FORWARD] = ACTIONS(2250), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2250), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2250), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2250), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2250), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_PS_GET] = ACTIONS(2250), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2250), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2250), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2250), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2250), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2250), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2250), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2250), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2250), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2250), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2250), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2250), + [anon_sym_MOZ_COLD] = ACTIONS(2250), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2250), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2250), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2250), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2250), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2250), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2250), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2250), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2250), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2250), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2250), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2250), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2250), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2250), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2250), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2250), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2250), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2250), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2250), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2250), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2250), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_NONNULL] = ACTIONS(2250), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2250), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2250), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2250), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2250), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2250), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_NORETURN] = ACTIONS(2250), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2250), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2250), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2250), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2250), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2250), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2250), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2250), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2250), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2250), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2250), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2250), + [anon_sym_MOZ_RAII] = ACTIONS(2250), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2250), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2250), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2250), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2250), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2250), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2250), + }, + [STATE(211)] = { + [sym_else_clause] = STATE(291), + [ts_builtin_sym_end] = ACTIONS(1949), + [sym_identifier] = ACTIONS(1947), + [aux_sym_preproc_include_token1] = ACTIONS(1947), + [aux_sym_preproc_def_token1] = ACTIONS(1947), + [aux_sym_preproc_if_token1] = ACTIONS(1947), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1947), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1947), + [sym_preproc_directive] = ACTIONS(1947), + [anon_sym_LPAREN2] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1949), + [anon_sym_TILDE] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1949), + [anon_sym_AMP_AMP] = ACTIONS(1949), + [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_SEMI] = ACTIONS(1949), + [anon_sym___extension__] = ACTIONS(1947), + [anon_sym_typedef] = ACTIONS(1947), + [anon_sym_virtual] = ACTIONS(1947), + [anon_sym_extern] = ACTIONS(1947), + [anon_sym___attribute__] = ACTIONS(1947), + [anon_sym___attribute] = ACTIONS(1947), + [anon_sym_COLON_COLON] = ACTIONS(1949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1949), + [anon_sym___declspec] = ACTIONS(1947), + [anon_sym___based] = ACTIONS(1947), + [anon_sym___cdecl] = ACTIONS(1947), + [anon_sym___clrcall] = ACTIONS(1947), + [anon_sym___stdcall] = ACTIONS(1947), + [anon_sym___fastcall] = ACTIONS(1947), + [anon_sym___thiscall] = ACTIONS(1947), + [anon_sym___vectorcall] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1949), + [anon_sym_signed] = ACTIONS(1947), + [anon_sym_unsigned] = ACTIONS(1947), + [anon_sym_long] = ACTIONS(1947), + [anon_sym_short] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_static] = ACTIONS(1947), + [anon_sym_register] = ACTIONS(1947), + [anon_sym_inline] = ACTIONS(1947), + [anon_sym___inline] = ACTIONS(1947), + [anon_sym___inline__] = ACTIONS(1947), + [anon_sym___forceinline] = ACTIONS(1947), + [anon_sym_thread_local] = ACTIONS(1947), + [anon_sym___thread] = ACTIONS(1947), + [anon_sym_const] = ACTIONS(1947), + [anon_sym_constexpr] = ACTIONS(1947), + [anon_sym_volatile] = ACTIONS(1947), + [anon_sym_restrict] = ACTIONS(1947), + [anon_sym___restrict__] = ACTIONS(1947), + [anon_sym__Atomic] = ACTIONS(1947), + [anon_sym__Noreturn] = ACTIONS(1947), + [anon_sym_noreturn] = ACTIONS(1947), + [anon_sym__Nonnull] = ACTIONS(1947), + [anon_sym_mutable] = ACTIONS(1947), + [anon_sym_constinit] = ACTIONS(1947), + [anon_sym_consteval] = ACTIONS(1947), + [anon_sym_alignas] = ACTIONS(1947), + [anon_sym__Alignas] = ACTIONS(1947), + [sym_primitive_type] = ACTIONS(1947), + [anon_sym_enum] = ACTIONS(1947), + [anon_sym_class] = ACTIONS(1947), + [anon_sym_struct] = ACTIONS(1947), + [anon_sym_union] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_else] = ACTIONS(2254), + [anon_sym_switch] = ACTIONS(1947), + [anon_sym_case] = ACTIONS(1947), + [anon_sym_default] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_do] = ACTIONS(1947), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_break] = ACTIONS(1947), + [anon_sym_continue] = ACTIONS(1947), + [anon_sym_goto] = ACTIONS(1947), + [anon_sym___try] = ACTIONS(1947), + [anon_sym___leave] = ACTIONS(1947), + [anon_sym_not] = ACTIONS(1947), + [anon_sym_compl] = ACTIONS(1947), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_sizeof] = ACTIONS(1947), + [anon_sym___alignof__] = ACTIONS(1947), + [anon_sym___alignof] = ACTIONS(1947), + [anon_sym__alignof] = ACTIONS(1947), + [anon_sym_alignof] = ACTIONS(1947), + [anon_sym__Alignof] = ACTIONS(1947), + [anon_sym_offsetof] = ACTIONS(1947), + [anon_sym__Generic] = ACTIONS(1947), + [anon_sym_asm] = ACTIONS(1947), + [anon_sym___asm__] = ACTIONS(1947), + [anon_sym___asm] = ACTIONS(1947), + [sym_number_literal] = ACTIONS(1949), + [anon_sym_L_SQUOTE] = ACTIONS(1949), + [anon_sym_u_SQUOTE] = ACTIONS(1949), + [anon_sym_U_SQUOTE] = ACTIONS(1949), + [anon_sym_u8_SQUOTE] = ACTIONS(1949), + [anon_sym_SQUOTE] = ACTIONS(1949), + [anon_sym_L_DQUOTE] = ACTIONS(1949), + [anon_sym_u_DQUOTE] = ACTIONS(1949), + [anon_sym_U_DQUOTE] = ACTIONS(1949), + [anon_sym_u8_DQUOTE] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1949), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [anon_sym_NULL] = ACTIONS(1947), + [anon_sym_nullptr] = ACTIONS(1947), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1947), + [anon_sym_decltype] = ACTIONS(1947), + [anon_sym_explicit] = ACTIONS(1947), + [anon_sym_typename] = ACTIONS(1947), + [anon_sym_template] = ACTIONS(1947), + [anon_sym_operator] = ACTIONS(1947), + [anon_sym_try] = ACTIONS(1947), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1947), + [anon_sym_namespace] = ACTIONS(1947), + [anon_sym_using] = ACTIONS(1947), + [anon_sym_static_assert] = ACTIONS(1947), + [anon_sym_concept] = ACTIONS(1947), + [anon_sym_co_return] = ACTIONS(1947), + [anon_sym_co_yield] = ACTIONS(1947), + [anon_sym_R_DQUOTE] = ACTIONS(1949), + [anon_sym_LR_DQUOTE] = ACTIONS(1949), + [anon_sym_uR_DQUOTE] = ACTIONS(1949), + [anon_sym_UR_DQUOTE] = ACTIONS(1949), + [anon_sym_u8R_DQUOTE] = ACTIONS(1949), + [anon_sym_co_await] = ACTIONS(1947), + [anon_sym_new] = ACTIONS(1947), + [anon_sym_requires] = ACTIONS(1947), + [sym_this] = ACTIONS(1947), + [sym_alone_macro] = ACTIONS(1949), + [aux_sym_alone_macro_call_token1] = ACTIONS(1947), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_FORWARD] = ACTIONS(1947), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1947), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_PS_GET] = ACTIONS(1947), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1947), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1947), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1947), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1947), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1947), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1947), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1947), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1947), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1947), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1947), + [anon_sym_MOZ_COLD] = ACTIONS(1947), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1947), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1947), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1947), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1947), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1947), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1947), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1947), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1947), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1947), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1947), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1947), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1947), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1947), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1947), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1947), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1947), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1947), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1947), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1947), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1947), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_NONNULL] = ACTIONS(1947), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1947), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1947), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1947), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1947), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1947), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_NORETURN] = ACTIONS(1947), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1947), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1947), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1947), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1947), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1947), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1947), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1947), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1947), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1947), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1947), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1947), + [anon_sym_MOZ_RAII] = ACTIONS(1947), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1947), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1947), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1947), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1947), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1947), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1947), + }, + [STATE(212)] = { + [sym_identifier] = ACTIONS(2256), + [aux_sym_preproc_include_token1] = ACTIONS(2256), + [aux_sym_preproc_def_token1] = ACTIONS(2256), + [aux_sym_preproc_if_token1] = ACTIONS(2256), + [aux_sym_preproc_if_token2] = ACTIONS(2256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2256), + [aux_sym_preproc_else_token1] = ACTIONS(2256), + [aux_sym_preproc_elif_token1] = ACTIONS(2256), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2256), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2256), + [sym_preproc_directive] = ACTIONS(2256), + [anon_sym_LPAREN2] = ACTIONS(2258), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_STAR] = ACTIONS(2258), + [anon_sym_AMP_AMP] = ACTIONS(2258), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym___extension__] = ACTIONS(2256), + [anon_sym_typedef] = ACTIONS(2256), + [anon_sym_virtual] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym_COLON_COLON] = ACTIONS(2258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2258), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym___based] = ACTIONS(2256), + [anon_sym___cdecl] = ACTIONS(2256), + [anon_sym___clrcall] = ACTIONS(2256), + [anon_sym___stdcall] = ACTIONS(2256), + [anon_sym___fastcall] = ACTIONS(2256), + [anon_sym___thiscall] = ACTIONS(2256), + [anon_sym___vectorcall] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(2258), + [anon_sym_signed] = ACTIONS(2256), + [anon_sym_unsigned] = ACTIONS(2256), + [anon_sym_long] = ACTIONS(2256), + [anon_sym_short] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2256), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [anon_sym___inline] = ACTIONS(2256), + [anon_sym___inline__] = ACTIONS(2256), + [anon_sym___forceinline] = ACTIONS(2256), + [anon_sym_thread_local] = ACTIONS(2256), + [anon_sym___thread] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_constexpr] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym___restrict__] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym__Noreturn] = ACTIONS(2256), + [anon_sym_noreturn] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym_mutable] = ACTIONS(2256), + [anon_sym_constinit] = ACTIONS(2256), + [anon_sym_consteval] = ACTIONS(2256), + [anon_sym_alignas] = ACTIONS(2256), + [anon_sym__Alignas] = ACTIONS(2256), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_class] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_switch] = ACTIONS(2256), + [anon_sym_case] = ACTIONS(2256), + [anon_sym_default] = ACTIONS(2256), + [anon_sym_while] = ACTIONS(2256), + [anon_sym_do] = ACTIONS(2256), + [anon_sym_for] = ACTIONS(2256), + [anon_sym_return] = ACTIONS(2256), + [anon_sym_break] = ACTIONS(2256), + [anon_sym_continue] = ACTIONS(2256), + [anon_sym_goto] = ACTIONS(2256), + [anon_sym___try] = ACTIONS(2256), + [anon_sym___leave] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2256), + [anon_sym_compl] = ACTIONS(2256), + [anon_sym_DASH_DASH] = ACTIONS(2258), + [anon_sym_PLUS_PLUS] = ACTIONS(2258), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2256), + [anon_sym___alignof] = ACTIONS(2256), + [anon_sym__alignof] = ACTIONS(2256), + [anon_sym_alignof] = ACTIONS(2256), + [anon_sym__Alignof] = ACTIONS(2256), + [anon_sym_offsetof] = ACTIONS(2256), + [anon_sym__Generic] = ACTIONS(2256), + [anon_sym_asm] = ACTIONS(2256), + [anon_sym___asm__] = ACTIONS(2256), + [anon_sym___asm] = ACTIONS(2256), + [sym_number_literal] = ACTIONS(2258), + [anon_sym_L_SQUOTE] = ACTIONS(2258), + [anon_sym_u_SQUOTE] = ACTIONS(2258), + [anon_sym_U_SQUOTE] = ACTIONS(2258), + [anon_sym_u8_SQUOTE] = ACTIONS(2258), + [anon_sym_SQUOTE] = ACTIONS(2258), + [anon_sym_L_DQUOTE] = ACTIONS(2258), + [anon_sym_u_DQUOTE] = ACTIONS(2258), + [anon_sym_U_DQUOTE] = ACTIONS(2258), + [anon_sym_u8_DQUOTE] = ACTIONS(2258), + [anon_sym_DQUOTE] = ACTIONS(2258), + [sym_true] = ACTIONS(2256), + [sym_false] = ACTIONS(2256), + [anon_sym_NULL] = ACTIONS(2256), + [anon_sym_nullptr] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2256), + [anon_sym_decltype] = ACTIONS(2256), + [anon_sym_explicit] = ACTIONS(2256), + [anon_sym_typename] = ACTIONS(2256), + [anon_sym_template] = ACTIONS(2256), + [anon_sym_operator] = ACTIONS(2256), + [anon_sym_try] = ACTIONS(2256), + [anon_sym_delete] = ACTIONS(2256), + [anon_sym_throw] = ACTIONS(2256), + [anon_sym_namespace] = ACTIONS(2256), + [anon_sym_using] = ACTIONS(2256), + [anon_sym_static_assert] = ACTIONS(2256), + [anon_sym_concept] = ACTIONS(2256), + [anon_sym_co_return] = ACTIONS(2256), + [anon_sym_co_yield] = ACTIONS(2256), + [anon_sym_R_DQUOTE] = ACTIONS(2258), + [anon_sym_LR_DQUOTE] = ACTIONS(2258), + [anon_sym_uR_DQUOTE] = ACTIONS(2258), + [anon_sym_UR_DQUOTE] = ACTIONS(2258), + [anon_sym_u8R_DQUOTE] = ACTIONS(2258), + [anon_sym_co_await] = ACTIONS(2256), + [anon_sym_new] = ACTIONS(2256), + [anon_sym_requires] = ACTIONS(2256), + [sym_this] = ACTIONS(2256), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2256), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_FORWARD] = ACTIONS(2256), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2256), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2256), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2256), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_PS_GET] = ACTIONS(2256), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2256), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2256), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2256), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2256), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2256), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2256), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2256), + [anon_sym_MOZ_COLD] = ACTIONS(2256), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2256), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2256), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2256), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2256), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2256), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2256), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2256), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2256), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2256), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2256), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2256), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2256), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2256), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_NONNULL] = ACTIONS(2256), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2256), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2256), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2256), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2256), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2256), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2256), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2256), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2256), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2256), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2256), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2256), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2256), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2256), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2256), + [anon_sym_MOZ_RAII] = ACTIONS(2256), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2256), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2256), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2256), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2256), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2256), + }, + [STATE(213)] = { + [sym_identifier] = ACTIONS(2260), + [aux_sym_preproc_include_token1] = ACTIONS(2260), + [aux_sym_preproc_def_token1] = ACTIONS(2260), + [aux_sym_preproc_if_token1] = ACTIONS(2260), + [aux_sym_preproc_if_token2] = ACTIONS(2260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2260), + [aux_sym_preproc_else_token1] = ACTIONS(2260), + [aux_sym_preproc_elif_token1] = ACTIONS(2260), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2260), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2260), + [sym_preproc_directive] = ACTIONS(2260), + [anon_sym_LPAREN2] = ACTIONS(2262), + [anon_sym_BANG] = ACTIONS(2262), + [anon_sym_TILDE] = ACTIONS(2262), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_STAR] = ACTIONS(2262), + [anon_sym_AMP_AMP] = ACTIONS(2262), + [anon_sym_AMP] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2262), + [anon_sym___extension__] = ACTIONS(2260), + [anon_sym_typedef] = ACTIONS(2260), + [anon_sym_virtual] = ACTIONS(2260), + [anon_sym_extern] = ACTIONS(2260), + [anon_sym___attribute__] = ACTIONS(2260), + [anon_sym___attribute] = ACTIONS(2260), + [anon_sym_COLON_COLON] = ACTIONS(2262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2262), + [anon_sym___declspec] = ACTIONS(2260), + [anon_sym___based] = ACTIONS(2260), + [anon_sym___cdecl] = ACTIONS(2260), + [anon_sym___clrcall] = ACTIONS(2260), + [anon_sym___stdcall] = ACTIONS(2260), + [anon_sym___fastcall] = ACTIONS(2260), + [anon_sym___thiscall] = ACTIONS(2260), + [anon_sym___vectorcall] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_signed] = ACTIONS(2260), + [anon_sym_unsigned] = ACTIONS(2260), + [anon_sym_long] = ACTIONS(2260), + [anon_sym_short] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_static] = ACTIONS(2260), + [anon_sym_register] = ACTIONS(2260), + [anon_sym_inline] = ACTIONS(2260), + [anon_sym___inline] = ACTIONS(2260), + [anon_sym___inline__] = ACTIONS(2260), + [anon_sym___forceinline] = ACTIONS(2260), + [anon_sym_thread_local] = ACTIONS(2260), + [anon_sym___thread] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [anon_sym_constexpr] = ACTIONS(2260), + [anon_sym_volatile] = ACTIONS(2260), + [anon_sym_restrict] = ACTIONS(2260), + [anon_sym___restrict__] = ACTIONS(2260), + [anon_sym__Atomic] = ACTIONS(2260), + [anon_sym__Noreturn] = ACTIONS(2260), + [anon_sym_noreturn] = ACTIONS(2260), + [anon_sym__Nonnull] = ACTIONS(2260), + [anon_sym_mutable] = ACTIONS(2260), + [anon_sym_constinit] = ACTIONS(2260), + [anon_sym_consteval] = ACTIONS(2260), + [anon_sym_alignas] = ACTIONS(2260), + [anon_sym__Alignas] = ACTIONS(2260), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), + [anon_sym_class] = ACTIONS(2260), + [anon_sym_struct] = ACTIONS(2260), + [anon_sym_union] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_switch] = ACTIONS(2260), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_break] = ACTIONS(2260), + [anon_sym_continue] = ACTIONS(2260), + [anon_sym_goto] = ACTIONS(2260), + [anon_sym___try] = ACTIONS(2260), + [anon_sym___leave] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(2260), + [anon_sym_compl] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2260), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2260), + [anon_sym_asm] = ACTIONS(2260), + [anon_sym___asm__] = ACTIONS(2260), + [anon_sym___asm] = ACTIONS(2260), + [sym_number_literal] = ACTIONS(2262), + [anon_sym_L_SQUOTE] = ACTIONS(2262), + [anon_sym_u_SQUOTE] = ACTIONS(2262), + [anon_sym_U_SQUOTE] = ACTIONS(2262), + [anon_sym_u8_SQUOTE] = ACTIONS(2262), + [anon_sym_SQUOTE] = ACTIONS(2262), + [anon_sym_L_DQUOTE] = ACTIONS(2262), + [anon_sym_u_DQUOTE] = ACTIONS(2262), + [anon_sym_U_DQUOTE] = ACTIONS(2262), + [anon_sym_u8_DQUOTE] = ACTIONS(2262), + [anon_sym_DQUOTE] = ACTIONS(2262), + [sym_true] = ACTIONS(2260), + [sym_false] = ACTIONS(2260), + [anon_sym_NULL] = ACTIONS(2260), + [anon_sym_nullptr] = ACTIONS(2260), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1879), - [anon_sym_virtual] = ACTIONS(1879), - [anon_sym_explicit] = ACTIONS(1879), - [sym_auto] = ACTIONS(1879), - [anon_sym_typename] = ACTIONS(1879), - [anon_sym_template] = ACTIONS(1879), - [anon_sym_operator] = ACTIONS(1879), - [anon_sym_delete] = ACTIONS(1879), - [anon_sym_throw] = ACTIONS(1879), - [anon_sym_namespace] = ACTIONS(1879), - [anon_sym_using] = ACTIONS(1879), - [anon_sym_static_assert] = ACTIONS(1879), - [anon_sym_co_return] = ACTIONS(1879), - [anon_sym_co_yield] = ACTIONS(1879), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_co_await] = ACTIONS(1879), - [anon_sym_new] = ACTIONS(1879), - [sym_this] = ACTIONS(1879), - [sym_nullptr] = ACTIONS(1879), - [sym_alone_macro] = ACTIONS(1881), - [aux_sym_alone_macro_call_token1] = ACTIONS(1879), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1879), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_FORWARD] = ACTIONS(1879), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1879), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1879), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1879), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1879), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_PS_GET] = ACTIONS(1879), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1879), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1879), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1879), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1879), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1879), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1879), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1879), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1879), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1879), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1879), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1879), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1879), - [anon_sym_MOZ_COLD] = ACTIONS(1879), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1879), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1879), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1879), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1879), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1879), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1879), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1879), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1879), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1879), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1879), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1879), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1879), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1879), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1879), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1879), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1879), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1879), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1879), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1879), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_NONNULL] = ACTIONS(1879), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1879), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1879), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1879), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1879), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1879), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_NORETURN] = ACTIONS(1879), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1879), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1879), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1879), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1879), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1879), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1879), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1879), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1879), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1879), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), - [anon_sym_MOZ_RAII] = ACTIONS(1879), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1879), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1879), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1879), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1879), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1879), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1879), - [sym_raw_string_literal] = ACTIONS(1881), - }, - [651] = { - [ts_builtin_sym_end] = ACTIONS(1829), - [sym_identifier] = ACTIONS(1827), - [aux_sym_preproc_include_token1] = ACTIONS(1827), - [aux_sym_preproc_def_token1] = ACTIONS(1827), - [aux_sym_preproc_if_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1827), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_BANG] = ACTIONS(1829), - [anon_sym_TILDE] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_AMP_AMP] = ACTIONS(1829), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_typedef] = ACTIONS(1827), - [anon_sym_extern] = ACTIONS(1827), - [anon_sym___attribute__] = ACTIONS(1827), - [anon_sym_COLON_COLON] = ACTIONS(1829), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1829), - [anon_sym___declspec] = ACTIONS(1827), - [anon_sym___based] = ACTIONS(1827), - [anon_sym___cdecl] = ACTIONS(1827), - [anon_sym___clrcall] = ACTIONS(1827), - [anon_sym___stdcall] = ACTIONS(1827), - [anon_sym___fastcall] = ACTIONS(1827), - [anon_sym___thiscall] = ACTIONS(1827), - [anon_sym___vectorcall] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1829), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_static] = ACTIONS(1827), - [anon_sym_register] = ACTIONS(1827), - [anon_sym_inline] = ACTIONS(1827), - [anon_sym_thread_local] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_volatile] = ACTIONS(1827), - [anon_sym_restrict] = ACTIONS(1827), - [anon_sym__Atomic] = ACTIONS(1827), - [anon_sym_mutable] = ACTIONS(1827), - [anon_sym_constexpr] = ACTIONS(1827), - [anon_sym_signed] = ACTIONS(1827), - [anon_sym_unsigned] = ACTIONS(1827), - [anon_sym_long] = ACTIONS(1827), - [anon_sym_short] = ACTIONS(1827), - [sym_primitive_type] = ACTIONS(1827), - [anon_sym_enum] = ACTIONS(1827), - [anon_sym_class] = ACTIONS(1827), - [anon_sym_struct] = ACTIONS(1827), - [anon_sym_union] = ACTIONS(1827), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_switch] = ACTIONS(1827), - [anon_sym_case] = ACTIONS(1827), - [anon_sym_default] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_for] = ACTIONS(1827), - [anon_sym_return] = ACTIONS(1827), - [anon_sym_break] = ACTIONS(1827), - [anon_sym_continue] = ACTIONS(1827), - [anon_sym_goto] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1829), - [anon_sym_PLUS_PLUS] = ACTIONS(1829), - [anon_sym_sizeof] = ACTIONS(1827), - [sym_number_literal] = ACTIONS(1829), - [anon_sym_L_SQUOTE] = ACTIONS(1829), - [anon_sym_u_SQUOTE] = ACTIONS(1829), - [anon_sym_U_SQUOTE] = ACTIONS(1829), - [anon_sym_u8_SQUOTE] = ACTIONS(1829), - [anon_sym_SQUOTE] = ACTIONS(1829), - [anon_sym_L_DQUOTE] = ACTIONS(1829), - [anon_sym_u_DQUOTE] = ACTIONS(1829), - [anon_sym_U_DQUOTE] = ACTIONS(1829), - [anon_sym_u8_DQUOTE] = ACTIONS(1829), - [anon_sym_DQUOTE] = ACTIONS(1829), - [sym_true] = ACTIONS(1827), - [sym_false] = ACTIONS(1827), - [sym_null] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1827), - [anon_sym_virtual] = ACTIONS(1827), - [anon_sym_explicit] = ACTIONS(1827), - [sym_auto] = ACTIONS(1827), - [anon_sym_typename] = ACTIONS(1827), - [anon_sym_template] = ACTIONS(1827), - [anon_sym_operator] = ACTIONS(1827), - [anon_sym_delete] = ACTIONS(1827), - [anon_sym_throw] = ACTIONS(1827), - [anon_sym_namespace] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(1827), - [anon_sym_static_assert] = ACTIONS(1827), - [anon_sym_co_return] = ACTIONS(1827), - [anon_sym_co_yield] = ACTIONS(1827), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_co_await] = ACTIONS(1827), - [anon_sym_new] = ACTIONS(1827), - [sym_this] = ACTIONS(1827), - [sym_nullptr] = ACTIONS(1827), - [sym_alone_macro] = ACTIONS(1829), - [aux_sym_alone_macro_call_token1] = ACTIONS(1827), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1827), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_FORWARD] = ACTIONS(1827), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1827), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1827), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1827), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1827), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_PS_GET] = ACTIONS(1827), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1827), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1827), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1827), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1827), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1827), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1827), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1827), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1827), - [anon_sym_MOZ_COLD] = ACTIONS(1827), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1827), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1827), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1827), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1827), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1827), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1827), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1827), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1827), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1827), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1827), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1827), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1827), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1827), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_NONNULL] = ACTIONS(1827), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1827), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1827), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1827), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1827), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1827), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1827), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1827), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1827), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1827), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1827), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1827), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1827), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1827), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1827), - [anon_sym_MOZ_RAII] = ACTIONS(1827), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1827), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1827), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1827), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1827), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1827), - [sym_raw_string_literal] = ACTIONS(1829), - }, - [652] = { - [ts_builtin_sym_end] = ACTIONS(1825), - [sym_identifier] = ACTIONS(1823), - [aux_sym_preproc_include_token1] = ACTIONS(1823), - [aux_sym_preproc_def_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1825), - [anon_sym_BANG] = ACTIONS(1825), - [anon_sym_TILDE] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1825), - [anon_sym_AMP_AMP] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_typedef] = ACTIONS(1823), - [anon_sym_extern] = ACTIONS(1823), - [anon_sym___attribute__] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1825), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1825), - [anon_sym___declspec] = ACTIONS(1823), - [anon_sym___based] = ACTIONS(1823), - [anon_sym___cdecl] = ACTIONS(1823), - [anon_sym___clrcall] = ACTIONS(1823), - [anon_sym___stdcall] = ACTIONS(1823), - [anon_sym___fastcall] = ACTIONS(1823), - [anon_sym___thiscall] = ACTIONS(1823), - [anon_sym___vectorcall] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_register] = ACTIONS(1823), - [anon_sym_inline] = ACTIONS(1823), - [anon_sym_thread_local] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_volatile] = ACTIONS(1823), - [anon_sym_restrict] = ACTIONS(1823), - [anon_sym__Atomic] = ACTIONS(1823), - [anon_sym_mutable] = ACTIONS(1823), - [anon_sym_constexpr] = ACTIONS(1823), - [anon_sym_signed] = ACTIONS(1823), - [anon_sym_unsigned] = ACTIONS(1823), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_short] = ACTIONS(1823), - [sym_primitive_type] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [anon_sym_class] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(1823), - [anon_sym_union] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_switch] = ACTIONS(1823), - [anon_sym_case] = ACTIONS(1823), - [anon_sym_default] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_goto] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1825), - [anon_sym_PLUS_PLUS] = ACTIONS(1825), - [anon_sym_sizeof] = ACTIONS(1823), - [sym_number_literal] = ACTIONS(1825), - [anon_sym_L_SQUOTE] = ACTIONS(1825), - [anon_sym_u_SQUOTE] = ACTIONS(1825), - [anon_sym_U_SQUOTE] = ACTIONS(1825), - [anon_sym_u8_SQUOTE] = ACTIONS(1825), - [anon_sym_SQUOTE] = ACTIONS(1825), - [anon_sym_L_DQUOTE] = ACTIONS(1825), - [anon_sym_u_DQUOTE] = ACTIONS(1825), - [anon_sym_U_DQUOTE] = ACTIONS(1825), - [anon_sym_u8_DQUOTE] = ACTIONS(1825), - [anon_sym_DQUOTE] = ACTIONS(1825), - [sym_true] = ACTIONS(1823), - [sym_false] = ACTIONS(1823), - [sym_null] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1823), - [anon_sym_virtual] = ACTIONS(1823), - [anon_sym_explicit] = ACTIONS(1823), - [sym_auto] = ACTIONS(1823), - [anon_sym_typename] = ACTIONS(1823), - [anon_sym_template] = ACTIONS(1823), - [anon_sym_operator] = ACTIONS(1823), - [anon_sym_delete] = ACTIONS(1823), - [anon_sym_throw] = ACTIONS(1823), - [anon_sym_namespace] = ACTIONS(1823), - [anon_sym_using] = ACTIONS(1823), - [anon_sym_static_assert] = ACTIONS(1823), - [anon_sym_co_return] = ACTIONS(1823), - [anon_sym_co_yield] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1823), - [anon_sym_co_await] = ACTIONS(1823), - [anon_sym_new] = ACTIONS(1823), - [sym_this] = ACTIONS(1823), - [sym_nullptr] = ACTIONS(1823), - [sym_alone_macro] = ACTIONS(1825), - [aux_sym_alone_macro_call_token1] = ACTIONS(1823), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1823), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_FORWARD] = ACTIONS(1823), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1823), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1823), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1823), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1823), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_PS_GET] = ACTIONS(1823), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1823), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1823), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1823), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1823), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1823), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1823), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1823), - [anon_sym_MOZ_COLD] = ACTIONS(1823), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1823), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1823), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1823), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1823), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1823), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1823), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1823), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1823), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1823), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1823), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1823), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1823), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1823), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_NONNULL] = ACTIONS(1823), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1823), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1823), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1823), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1823), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1823), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1823), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1823), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1823), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1823), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1823), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1823), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1823), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1823), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1823), - [anon_sym_MOZ_RAII] = ACTIONS(1823), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1823), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1823), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1823), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1823), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1823), - [sym_raw_string_literal] = ACTIONS(1825), - }, - [653] = { - [ts_builtin_sym_end] = ACTIONS(1753), - [sym_identifier] = ACTIONS(1751), - [aux_sym_preproc_include_token1] = ACTIONS(1751), - [aux_sym_preproc_def_token1] = ACTIONS(1751), - [aux_sym_preproc_if_token1] = ACTIONS(1751), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1751), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1751), - [sym_preproc_directive] = ACTIONS(1751), - [anon_sym_LPAREN2] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1753), - [anon_sym_TILDE] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_STAR] = ACTIONS(1753), - [anon_sym_AMP_AMP] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_SEMI] = ACTIONS(1753), - [anon_sym_typedef] = ACTIONS(1751), - [anon_sym_extern] = ACTIONS(1751), - [anon_sym___attribute__] = ACTIONS(1751), - [anon_sym_COLON_COLON] = ACTIONS(1753), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1753), - [anon_sym___declspec] = ACTIONS(1751), - [anon_sym___based] = ACTIONS(1751), - [anon_sym___cdecl] = ACTIONS(1751), - [anon_sym___clrcall] = ACTIONS(1751), - [anon_sym___stdcall] = ACTIONS(1751), - [anon_sym___fastcall] = ACTIONS(1751), - [anon_sym___thiscall] = ACTIONS(1751), - [anon_sym___vectorcall] = ACTIONS(1751), - [anon_sym_LBRACE] = ACTIONS(1753), - [anon_sym_LBRACK] = ACTIONS(1751), - [anon_sym_static] = ACTIONS(1751), - [anon_sym_register] = ACTIONS(1751), - [anon_sym_inline] = ACTIONS(1751), - [anon_sym_thread_local] = ACTIONS(1751), - [anon_sym_const] = ACTIONS(1751), - [anon_sym_volatile] = ACTIONS(1751), - [anon_sym_restrict] = ACTIONS(1751), - [anon_sym__Atomic] = ACTIONS(1751), - [anon_sym_mutable] = ACTIONS(1751), - [anon_sym_constexpr] = ACTIONS(1751), - [anon_sym_signed] = ACTIONS(1751), - [anon_sym_unsigned] = ACTIONS(1751), - [anon_sym_long] = ACTIONS(1751), - [anon_sym_short] = ACTIONS(1751), - [sym_primitive_type] = ACTIONS(1751), - [anon_sym_enum] = ACTIONS(1751), - [anon_sym_class] = ACTIONS(1751), - [anon_sym_struct] = ACTIONS(1751), - [anon_sym_union] = ACTIONS(1751), - [anon_sym_if] = ACTIONS(1751), - [anon_sym_switch] = ACTIONS(1751), - [anon_sym_case] = ACTIONS(1751), - [anon_sym_default] = ACTIONS(1751), - [anon_sym_while] = ACTIONS(1751), - [anon_sym_do] = ACTIONS(1751), - [anon_sym_for] = ACTIONS(1751), - [anon_sym_return] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1751), - [anon_sym_continue] = ACTIONS(1751), - [anon_sym_goto] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1753), - [anon_sym_PLUS_PLUS] = ACTIONS(1753), - [anon_sym_sizeof] = ACTIONS(1751), - [sym_number_literal] = ACTIONS(1753), - [anon_sym_L_SQUOTE] = ACTIONS(1753), - [anon_sym_u_SQUOTE] = ACTIONS(1753), - [anon_sym_U_SQUOTE] = ACTIONS(1753), - [anon_sym_u8_SQUOTE] = ACTIONS(1753), - [anon_sym_SQUOTE] = ACTIONS(1753), - [anon_sym_L_DQUOTE] = ACTIONS(1753), - [anon_sym_u_DQUOTE] = ACTIONS(1753), - [anon_sym_U_DQUOTE] = ACTIONS(1753), - [anon_sym_u8_DQUOTE] = ACTIONS(1753), - [anon_sym_DQUOTE] = ACTIONS(1753), - [sym_true] = ACTIONS(1751), - [sym_false] = ACTIONS(1751), - [sym_null] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1751), - [anon_sym_virtual] = ACTIONS(1751), - [anon_sym_explicit] = ACTIONS(1751), - [sym_auto] = ACTIONS(1751), - [anon_sym_typename] = ACTIONS(1751), - [anon_sym_template] = ACTIONS(1751), - [anon_sym_operator] = ACTIONS(1751), - [anon_sym_delete] = ACTIONS(1751), - [anon_sym_throw] = ACTIONS(1751), - [anon_sym_namespace] = ACTIONS(1751), - [anon_sym_using] = ACTIONS(1751), - [anon_sym_static_assert] = ACTIONS(1751), - [anon_sym_co_return] = ACTIONS(1751), - [anon_sym_co_yield] = ACTIONS(1751), - [anon_sym_try] = ACTIONS(1751), - [anon_sym_co_await] = ACTIONS(1751), - [anon_sym_new] = ACTIONS(1751), - [sym_this] = ACTIONS(1751), - [sym_nullptr] = ACTIONS(1751), - [sym_alone_macro] = ACTIONS(1753), - [aux_sym_alone_macro_call_token1] = ACTIONS(1751), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1751), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_FORWARD] = ACTIONS(1751), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1751), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1751), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1751), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1751), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_PS_GET] = ACTIONS(1751), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1751), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1751), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1751), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1751), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1751), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1751), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1751), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1751), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1751), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1751), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1751), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1751), - [anon_sym_MOZ_COLD] = ACTIONS(1751), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1751), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1751), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1751), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1751), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1751), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1751), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1751), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1751), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1751), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1751), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1751), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1751), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1751), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1751), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1751), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1751), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1751), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1751), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1751), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1751), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1751), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_NONNULL] = ACTIONS(1751), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1751), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1751), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1751), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1751), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1751), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_NORETURN] = ACTIONS(1751), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1751), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1751), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1751), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1751), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1751), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1751), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1751), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1751), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1751), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1751), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1751), - [anon_sym_MOZ_RAII] = ACTIONS(1751), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1751), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1751), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1751), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1751), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1751), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1751), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1751), - [sym_raw_string_literal] = ACTIONS(1753), - }, - [654] = { - [ts_builtin_sym_end] = ACTIONS(1821), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_include_token1] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1819), - [aux_sym_preproc_if_token1] = ACTIONS(1819), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1819), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1819), - [sym_preproc_directive] = ACTIONS(1819), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1821), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_STAR] = ACTIONS(1821), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_typedef] = ACTIONS(1819), - [anon_sym_extern] = ACTIONS(1819), - [anon_sym___attribute__] = ACTIONS(1819), - [anon_sym_COLON_COLON] = ACTIONS(1821), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1821), - [anon_sym___declspec] = ACTIONS(1819), - [anon_sym___based] = ACTIONS(1819), - [anon_sym___cdecl] = ACTIONS(1819), - [anon_sym___clrcall] = ACTIONS(1819), - [anon_sym___stdcall] = ACTIONS(1819), - [anon_sym___fastcall] = ACTIONS(1819), - [anon_sym___thiscall] = ACTIONS(1819), - [anon_sym___vectorcall] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_static] = ACTIONS(1819), - [anon_sym_register] = ACTIONS(1819), - [anon_sym_inline] = ACTIONS(1819), - [anon_sym_thread_local] = ACTIONS(1819), - [anon_sym_const] = ACTIONS(1819), - [anon_sym_volatile] = ACTIONS(1819), - [anon_sym_restrict] = ACTIONS(1819), - [anon_sym__Atomic] = ACTIONS(1819), - [anon_sym_mutable] = ACTIONS(1819), - [anon_sym_constexpr] = ACTIONS(1819), - [anon_sym_signed] = ACTIONS(1819), - [anon_sym_unsigned] = ACTIONS(1819), - [anon_sym_long] = ACTIONS(1819), - [anon_sym_short] = ACTIONS(1819), - [sym_primitive_type] = ACTIONS(1819), - [anon_sym_enum] = ACTIONS(1819), - [anon_sym_class] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1819), - [anon_sym_union] = ACTIONS(1819), - [anon_sym_if] = ACTIONS(1819), - [anon_sym_switch] = ACTIONS(1819), - [anon_sym_case] = ACTIONS(1819), - [anon_sym_default] = ACTIONS(1819), - [anon_sym_while] = ACTIONS(1819), - [anon_sym_do] = ACTIONS(1819), - [anon_sym_for] = ACTIONS(1819), - [anon_sym_return] = ACTIONS(1819), - [anon_sym_break] = ACTIONS(1819), - [anon_sym_continue] = ACTIONS(1819), - [anon_sym_goto] = ACTIONS(1819), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [anon_sym_PLUS_PLUS] = ACTIONS(1821), - [anon_sym_sizeof] = ACTIONS(1819), - [sym_number_literal] = ACTIONS(1821), - [anon_sym_L_SQUOTE] = ACTIONS(1821), - [anon_sym_u_SQUOTE] = ACTIONS(1821), - [anon_sym_U_SQUOTE] = ACTIONS(1821), - [anon_sym_u8_SQUOTE] = ACTIONS(1821), - [anon_sym_SQUOTE] = ACTIONS(1821), - [anon_sym_L_DQUOTE] = ACTIONS(1821), - [anon_sym_u_DQUOTE] = ACTIONS(1821), - [anon_sym_U_DQUOTE] = ACTIONS(1821), - [anon_sym_u8_DQUOTE] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [sym_true] = ACTIONS(1819), - [sym_false] = ACTIONS(1819), - [sym_null] = ACTIONS(1819), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1819), - [anon_sym_virtual] = ACTIONS(1819), - [anon_sym_explicit] = ACTIONS(1819), - [sym_auto] = ACTIONS(1819), - [anon_sym_typename] = ACTIONS(1819), - [anon_sym_template] = ACTIONS(1819), - [anon_sym_operator] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_throw] = ACTIONS(1819), - [anon_sym_namespace] = ACTIONS(1819), - [anon_sym_using] = ACTIONS(1819), - [anon_sym_static_assert] = ACTIONS(1819), - [anon_sym_co_return] = ACTIONS(1819), - [anon_sym_co_yield] = ACTIONS(1819), - [anon_sym_try] = ACTIONS(1819), - [anon_sym_co_await] = ACTIONS(1819), - [anon_sym_new] = ACTIONS(1819), - [sym_this] = ACTIONS(1819), - [sym_nullptr] = ACTIONS(1819), - [sym_alone_macro] = ACTIONS(1821), - [aux_sym_alone_macro_call_token1] = ACTIONS(1819), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1819), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_FORWARD] = ACTIONS(1819), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1819), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1819), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1819), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1819), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_PS_GET] = ACTIONS(1819), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1819), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1819), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1819), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1819), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1819), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1819), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1819), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1819), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1819), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1819), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1819), - [anon_sym_MOZ_COLD] = ACTIONS(1819), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1819), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1819), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1819), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1819), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1819), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1819), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1819), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1819), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1819), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1819), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1819), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1819), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1819), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1819), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1819), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1819), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1819), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1819), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1819), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1819), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_NONNULL] = ACTIONS(1819), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1819), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1819), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1819), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1819), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1819), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_NORETURN] = ACTIONS(1819), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1819), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1819), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1819), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1819), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1819), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1819), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1819), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1819), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1819), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1819), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1819), - [anon_sym_MOZ_RAII] = ACTIONS(1819), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1819), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1819), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1819), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1819), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1819), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1819), - [sym_raw_string_literal] = ACTIONS(1821), - }, - [655] = { - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_include_token1] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1819), - [aux_sym_preproc_if_token1] = ACTIONS(1819), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1819), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1819), - [sym_preproc_directive] = ACTIONS(1819), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1821), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_STAR] = ACTIONS(1821), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_typedef] = ACTIONS(1819), - [anon_sym_extern] = ACTIONS(1819), - [anon_sym___attribute__] = ACTIONS(1819), - [anon_sym_COLON_COLON] = ACTIONS(1821), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1821), - [anon_sym___declspec] = ACTIONS(1819), - [anon_sym___based] = ACTIONS(1819), - [anon_sym___cdecl] = ACTIONS(1819), - [anon_sym___clrcall] = ACTIONS(1819), - [anon_sym___stdcall] = ACTIONS(1819), - [anon_sym___fastcall] = ACTIONS(1819), - [anon_sym___thiscall] = ACTIONS(1819), - [anon_sym___vectorcall] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_static] = ACTIONS(1819), - [anon_sym_register] = ACTIONS(1819), - [anon_sym_inline] = ACTIONS(1819), - [anon_sym_thread_local] = ACTIONS(1819), - [anon_sym_const] = ACTIONS(1819), - [anon_sym_volatile] = ACTIONS(1819), - [anon_sym_restrict] = ACTIONS(1819), - [anon_sym__Atomic] = ACTIONS(1819), - [anon_sym_mutable] = ACTIONS(1819), - [anon_sym_constexpr] = ACTIONS(1819), - [anon_sym_signed] = ACTIONS(1819), - [anon_sym_unsigned] = ACTIONS(1819), - [anon_sym_long] = ACTIONS(1819), - [anon_sym_short] = ACTIONS(1819), - [sym_primitive_type] = ACTIONS(1819), - [anon_sym_enum] = ACTIONS(1819), - [anon_sym_class] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1819), - [anon_sym_union] = ACTIONS(1819), - [anon_sym_if] = ACTIONS(1819), - [anon_sym_switch] = ACTIONS(1819), - [anon_sym_case] = ACTIONS(1819), - [anon_sym_default] = ACTIONS(1819), - [anon_sym_while] = ACTIONS(1819), - [anon_sym_do] = ACTIONS(1819), - [anon_sym_for] = ACTIONS(1819), - [anon_sym_return] = ACTIONS(1819), - [anon_sym_break] = ACTIONS(1819), - [anon_sym_continue] = ACTIONS(1819), - [anon_sym_goto] = ACTIONS(1819), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [anon_sym_PLUS_PLUS] = ACTIONS(1821), - [anon_sym_sizeof] = ACTIONS(1819), - [sym_number_literal] = ACTIONS(1821), - [anon_sym_L_SQUOTE] = ACTIONS(1821), - [anon_sym_u_SQUOTE] = ACTIONS(1821), - [anon_sym_U_SQUOTE] = ACTIONS(1821), - [anon_sym_u8_SQUOTE] = ACTIONS(1821), - [anon_sym_SQUOTE] = ACTIONS(1821), - [anon_sym_L_DQUOTE] = ACTIONS(1821), - [anon_sym_u_DQUOTE] = ACTIONS(1821), - [anon_sym_U_DQUOTE] = ACTIONS(1821), - [anon_sym_u8_DQUOTE] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [sym_true] = ACTIONS(1819), - [sym_false] = ACTIONS(1819), - [sym_null] = ACTIONS(1819), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1819), - [anon_sym_virtual] = ACTIONS(1819), - [anon_sym_explicit] = ACTIONS(1819), - [sym_auto] = ACTIONS(1819), - [anon_sym_typename] = ACTIONS(1819), - [anon_sym_template] = ACTIONS(1819), - [anon_sym_operator] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_throw] = ACTIONS(1819), - [anon_sym_namespace] = ACTIONS(1819), - [anon_sym_using] = ACTIONS(1819), - [anon_sym_static_assert] = ACTIONS(1819), - [anon_sym_co_return] = ACTIONS(1819), - [anon_sym_co_yield] = ACTIONS(1819), - [anon_sym_try] = ACTIONS(1819), - [anon_sym_co_await] = ACTIONS(1819), - [anon_sym_new] = ACTIONS(1819), - [sym_this] = ACTIONS(1819), - [sym_nullptr] = ACTIONS(1819), - [sym_alone_macro] = ACTIONS(1821), - [aux_sym_alone_macro_call_token1] = ACTIONS(1819), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1819), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_FORWARD] = ACTIONS(1819), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1819), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1819), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1819), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1819), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_PS_GET] = ACTIONS(1819), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1819), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1819), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1819), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1819), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1819), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1819), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1819), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1819), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1819), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1819), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1819), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1819), - [anon_sym_MOZ_COLD] = ACTIONS(1819), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1819), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1819), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1819), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1819), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1819), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1819), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1819), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1819), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1819), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1819), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1819), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1819), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1819), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1819), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1819), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1819), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1819), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1819), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1819), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1819), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1819), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_NONNULL] = ACTIONS(1819), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1819), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1819), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1819), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1819), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1819), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_NORETURN] = ACTIONS(1819), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1819), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1819), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1819), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1819), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1819), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1819), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1819), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1819), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1819), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1819), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1819), - [anon_sym_MOZ_RAII] = ACTIONS(1819), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1819), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1819), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1819), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1819), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1819), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1819), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1819), - [sym_raw_string_literal] = ACTIONS(1821), - }, - [656] = { - [sym_identifier] = ACTIONS(1771), - [aux_sym_preproc_include_token1] = ACTIONS(1771), - [aux_sym_preproc_def_token1] = ACTIONS(1771), - [aux_sym_preproc_if_token1] = ACTIONS(1771), - [aux_sym_preproc_if_token2] = ACTIONS(1771), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1771), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1771), - [sym_preproc_directive] = ACTIONS(1771), - [anon_sym_LPAREN2] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1773), - [anon_sym_AMP_AMP] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_typedef] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1771), - [anon_sym___attribute__] = ACTIONS(1771), - [anon_sym_COLON_COLON] = ACTIONS(1773), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1773), - [anon_sym___declspec] = ACTIONS(1771), - [anon_sym___based] = ACTIONS(1771), - [anon_sym___cdecl] = ACTIONS(1771), - [anon_sym___clrcall] = ACTIONS(1771), - [anon_sym___stdcall] = ACTIONS(1771), - [anon_sym___fastcall] = ACTIONS(1771), - [anon_sym___thiscall] = ACTIONS(1771), - [anon_sym___vectorcall] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_register] = ACTIONS(1771), - [anon_sym_inline] = ACTIONS(1771), - [anon_sym_thread_local] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [anon_sym_volatile] = ACTIONS(1771), - [anon_sym_restrict] = ACTIONS(1771), - [anon_sym__Atomic] = ACTIONS(1771), - [anon_sym_mutable] = ACTIONS(1771), - [anon_sym_constexpr] = ACTIONS(1771), - [anon_sym_signed] = ACTIONS(1771), - [anon_sym_unsigned] = ACTIONS(1771), - [anon_sym_long] = ACTIONS(1771), - [anon_sym_short] = ACTIONS(1771), - [sym_primitive_type] = ACTIONS(1771), - [anon_sym_enum] = ACTIONS(1771), - [anon_sym_class] = ACTIONS(1771), - [anon_sym_struct] = ACTIONS(1771), - [anon_sym_union] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_switch] = ACTIONS(1771), - [anon_sym_case] = ACTIONS(1771), - [anon_sym_default] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_goto] = ACTIONS(1771), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_sizeof] = ACTIONS(1771), - [sym_number_literal] = ACTIONS(1773), - [anon_sym_L_SQUOTE] = ACTIONS(1773), - [anon_sym_u_SQUOTE] = ACTIONS(1773), - [anon_sym_U_SQUOTE] = ACTIONS(1773), - [anon_sym_u8_SQUOTE] = ACTIONS(1773), - [anon_sym_SQUOTE] = ACTIONS(1773), - [anon_sym_L_DQUOTE] = ACTIONS(1773), - [anon_sym_u_DQUOTE] = ACTIONS(1773), - [anon_sym_U_DQUOTE] = ACTIONS(1773), - [anon_sym_u8_DQUOTE] = ACTIONS(1773), - [anon_sym_DQUOTE] = ACTIONS(1773), - [sym_true] = ACTIONS(1771), - [sym_false] = ACTIONS(1771), - [sym_null] = ACTIONS(1771), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1771), - [anon_sym_virtual] = ACTIONS(1771), - [anon_sym_explicit] = ACTIONS(1771), - [sym_auto] = ACTIONS(1771), - [anon_sym_typename] = ACTIONS(1771), - [anon_sym_template] = ACTIONS(1771), - [anon_sym_operator] = ACTIONS(1771), - [anon_sym_delete] = ACTIONS(1771), - [anon_sym_throw] = ACTIONS(1771), - [anon_sym_namespace] = ACTIONS(1771), - [anon_sym_using] = ACTIONS(1771), - [anon_sym_static_assert] = ACTIONS(1771), - [anon_sym_co_return] = ACTIONS(1771), - [anon_sym_co_yield] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_co_await] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1771), - [sym_this] = ACTIONS(1771), - [sym_nullptr] = ACTIONS(1771), - [sym_alone_macro] = ACTIONS(1773), - [aux_sym_alone_macro_call_token1] = ACTIONS(1771), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1771), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_FORWARD] = ACTIONS(1771), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1771), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1771), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1771), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1771), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_PS_GET] = ACTIONS(1771), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1771), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1771), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1771), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1771), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1771), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1771), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1771), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1771), - [anon_sym_MOZ_COLD] = ACTIONS(1771), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1771), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1771), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1771), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1771), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1771), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1771), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1771), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1771), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1771), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1771), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1771), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1771), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1771), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_NONNULL] = ACTIONS(1771), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1771), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1771), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1771), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1771), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1771), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1771), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1771), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1771), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1771), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1771), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1771), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1771), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1771), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1771), - [anon_sym_MOZ_RAII] = ACTIONS(1771), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1771), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1771), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1771), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1771), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1771), - [sym_raw_string_literal] = ACTIONS(1773), - }, - [657] = { - [sym_identifier] = ACTIONS(1779), - [aux_sym_preproc_include_token1] = ACTIONS(1779), - [aux_sym_preproc_def_token1] = ACTIONS(1779), - [aux_sym_preproc_if_token1] = ACTIONS(1779), - [aux_sym_preproc_if_token2] = ACTIONS(1779), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1779), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1779), - [sym_preproc_directive] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP_AMP] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_typedef] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym___attribute__] = ACTIONS(1779), - [anon_sym_COLON_COLON] = ACTIONS(1781), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1781), - [anon_sym___declspec] = ACTIONS(1779), - [anon_sym___based] = ACTIONS(1779), - [anon_sym___cdecl] = ACTIONS(1779), - [anon_sym___clrcall] = ACTIONS(1779), - [anon_sym___stdcall] = ACTIONS(1779), - [anon_sym___fastcall] = ACTIONS(1779), - [anon_sym___thiscall] = ACTIONS(1779), - [anon_sym___vectorcall] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_inline] = ACTIONS(1779), - [anon_sym_thread_local] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [anon_sym_volatile] = ACTIONS(1779), - [anon_sym_restrict] = ACTIONS(1779), - [anon_sym__Atomic] = ACTIONS(1779), - [anon_sym_mutable] = ACTIONS(1779), - [anon_sym_constexpr] = ACTIONS(1779), - [anon_sym_signed] = ACTIONS(1779), - [anon_sym_unsigned] = ACTIONS(1779), - [anon_sym_long] = ACTIONS(1779), - [anon_sym_short] = ACTIONS(1779), - [sym_primitive_type] = ACTIONS(1779), - [anon_sym_enum] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(1779), - [anon_sym_struct] = ACTIONS(1779), - [anon_sym_union] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1779), - [anon_sym_default] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_goto] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_sizeof] = ACTIONS(1779), - [sym_number_literal] = ACTIONS(1781), - [anon_sym_L_SQUOTE] = ACTIONS(1781), - [anon_sym_u_SQUOTE] = ACTIONS(1781), - [anon_sym_U_SQUOTE] = ACTIONS(1781), - [anon_sym_u8_SQUOTE] = ACTIONS(1781), - [anon_sym_SQUOTE] = ACTIONS(1781), - [anon_sym_L_DQUOTE] = ACTIONS(1781), - [anon_sym_u_DQUOTE] = ACTIONS(1781), - [anon_sym_U_DQUOTE] = ACTIONS(1781), - [anon_sym_u8_DQUOTE] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym_true] = ACTIONS(1779), - [sym_false] = ACTIONS(1779), - [sym_null] = ACTIONS(1779), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1779), - [anon_sym_virtual] = ACTIONS(1779), - [anon_sym_explicit] = ACTIONS(1779), - [sym_auto] = ACTIONS(1779), - [anon_sym_typename] = ACTIONS(1779), - [anon_sym_template] = ACTIONS(1779), - [anon_sym_operator] = ACTIONS(1779), - [anon_sym_delete] = ACTIONS(1779), - [anon_sym_throw] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1779), - [anon_sym_using] = ACTIONS(1779), - [anon_sym_static_assert] = ACTIONS(1779), - [anon_sym_co_return] = ACTIONS(1779), - [anon_sym_co_yield] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_co_await] = ACTIONS(1779), - [anon_sym_new] = ACTIONS(1779), - [sym_this] = ACTIONS(1779), - [sym_nullptr] = ACTIONS(1779), - [sym_alone_macro] = ACTIONS(1781), - [aux_sym_alone_macro_call_token1] = ACTIONS(1779), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1779), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_FORWARD] = ACTIONS(1779), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1779), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1779), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1779), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1779), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_PS_GET] = ACTIONS(1779), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1779), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1779), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1779), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1779), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1779), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1779), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1779), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1779), - [anon_sym_MOZ_COLD] = ACTIONS(1779), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1779), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1779), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1779), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1779), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1779), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1779), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1779), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1779), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1779), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1779), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1779), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1779), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1779), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_NONNULL] = ACTIONS(1779), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1779), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1779), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1779), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1779), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1779), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1779), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1779), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1779), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1779), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1779), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1779), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1779), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1779), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1779), - [anon_sym_MOZ_RAII] = ACTIONS(1779), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1779), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1779), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1779), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1779), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1779), - [sym_raw_string_literal] = ACTIONS(1781), - }, - [658] = { - [sym_identifier] = ACTIONS(1743), - [aux_sym_preproc_include_token1] = ACTIONS(1743), - [aux_sym_preproc_def_token1] = ACTIONS(1743), - [aux_sym_preproc_if_token1] = ACTIONS(1743), - [aux_sym_preproc_if_token2] = ACTIONS(1743), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1743), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1743), - [sym_preproc_directive] = ACTIONS(1743), - [anon_sym_LPAREN2] = ACTIONS(1745), - [anon_sym_BANG] = ACTIONS(1745), - [anon_sym_TILDE] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1743), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_AMP_AMP] = ACTIONS(1745), - [anon_sym_AMP] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_typedef] = ACTIONS(1743), - [anon_sym_extern] = ACTIONS(1743), - [anon_sym___attribute__] = ACTIONS(1743), - [anon_sym_COLON_COLON] = ACTIONS(1745), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1745), - [anon_sym___declspec] = ACTIONS(1743), - [anon_sym___based] = ACTIONS(1743), - [anon_sym___cdecl] = ACTIONS(1743), - [anon_sym___clrcall] = ACTIONS(1743), - [anon_sym___stdcall] = ACTIONS(1743), - [anon_sym___fastcall] = ACTIONS(1743), - [anon_sym___thiscall] = ACTIONS(1743), - [anon_sym___vectorcall] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_static] = ACTIONS(1743), - [anon_sym_register] = ACTIONS(1743), - [anon_sym_inline] = ACTIONS(1743), - [anon_sym_thread_local] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_volatile] = ACTIONS(1743), - [anon_sym_restrict] = ACTIONS(1743), - [anon_sym__Atomic] = ACTIONS(1743), - [anon_sym_mutable] = ACTIONS(1743), - [anon_sym_constexpr] = ACTIONS(1743), - [anon_sym_signed] = ACTIONS(1743), - [anon_sym_unsigned] = ACTIONS(1743), - [anon_sym_long] = ACTIONS(1743), - [anon_sym_short] = ACTIONS(1743), - [sym_primitive_type] = ACTIONS(1743), - [anon_sym_enum] = ACTIONS(1743), - [anon_sym_class] = ACTIONS(1743), - [anon_sym_struct] = ACTIONS(1743), - [anon_sym_union] = ACTIONS(1743), - [anon_sym_if] = ACTIONS(1743), - [anon_sym_switch] = ACTIONS(1743), - [anon_sym_case] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1743), - [anon_sym_while] = ACTIONS(1743), - [anon_sym_do] = ACTIONS(1743), - [anon_sym_for] = ACTIONS(1743), - [anon_sym_return] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1743), - [anon_sym_continue] = ACTIONS(1743), - [anon_sym_goto] = ACTIONS(1743), - [anon_sym_DASH_DASH] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1745), - [anon_sym_sizeof] = ACTIONS(1743), - [sym_number_literal] = ACTIONS(1745), - [anon_sym_L_SQUOTE] = ACTIONS(1745), - [anon_sym_u_SQUOTE] = ACTIONS(1745), - [anon_sym_U_SQUOTE] = ACTIONS(1745), - [anon_sym_u8_SQUOTE] = ACTIONS(1745), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_L_DQUOTE] = ACTIONS(1745), - [anon_sym_u_DQUOTE] = ACTIONS(1745), - [anon_sym_U_DQUOTE] = ACTIONS(1745), - [anon_sym_u8_DQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1745), - [sym_true] = ACTIONS(1743), - [sym_false] = ACTIONS(1743), - [sym_null] = ACTIONS(1743), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1743), - [anon_sym_virtual] = ACTIONS(1743), - [anon_sym_explicit] = ACTIONS(1743), - [sym_auto] = ACTIONS(1743), - [anon_sym_typename] = ACTIONS(1743), - [anon_sym_template] = ACTIONS(1743), - [anon_sym_operator] = ACTIONS(1743), - [anon_sym_delete] = ACTIONS(1743), - [anon_sym_throw] = ACTIONS(1743), - [anon_sym_namespace] = ACTIONS(1743), - [anon_sym_using] = ACTIONS(1743), - [anon_sym_static_assert] = ACTIONS(1743), - [anon_sym_co_return] = ACTIONS(1743), - [anon_sym_co_yield] = ACTIONS(1743), - [anon_sym_try] = ACTIONS(1743), - [anon_sym_co_await] = ACTIONS(1743), - [anon_sym_new] = ACTIONS(1743), - [sym_this] = ACTIONS(1743), - [sym_nullptr] = ACTIONS(1743), - [sym_alone_macro] = ACTIONS(1745), - [aux_sym_alone_macro_call_token1] = ACTIONS(1743), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1743), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_FORWARD] = ACTIONS(1743), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1743), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1743), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1743), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1743), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_PS_GET] = ACTIONS(1743), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1743), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1743), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1743), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1743), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1743), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1743), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1743), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1743), - [anon_sym_MOZ_COLD] = ACTIONS(1743), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1743), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1743), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1743), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1743), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1743), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1743), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1743), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1743), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1743), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1743), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1743), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1743), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1743), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_NONNULL] = ACTIONS(1743), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1743), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1743), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1743), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1743), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1743), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1743), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1743), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1743), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1743), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1743), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1743), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1743), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1743), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1743), - [anon_sym_MOZ_RAII] = ACTIONS(1743), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1743), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1743), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1743), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1743), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1743), - [sym_raw_string_literal] = ACTIONS(1745), - }, - [659] = { - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_include_token1] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1831), - [aux_sym_preproc_if_token1] = ACTIONS(1831), - [aux_sym_preproc_if_token2] = ACTIONS(1831), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1831), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1831), - [sym_preproc_directive] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1833), - [anon_sym_BANG] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_AMP_AMP] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_typedef] = ACTIONS(1831), - [anon_sym_extern] = ACTIONS(1831), - [anon_sym___attribute__] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1833), - [anon_sym___declspec] = ACTIONS(1831), - [anon_sym___based] = ACTIONS(1831), - [anon_sym___cdecl] = ACTIONS(1831), - [anon_sym___clrcall] = ACTIONS(1831), - [anon_sym___stdcall] = ACTIONS(1831), - [anon_sym___fastcall] = ACTIONS(1831), - [anon_sym___thiscall] = ACTIONS(1831), - [anon_sym___vectorcall] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_static] = ACTIONS(1831), - [anon_sym_register] = ACTIONS(1831), - [anon_sym_inline] = ACTIONS(1831), - [anon_sym_thread_local] = ACTIONS(1831), - [anon_sym_const] = ACTIONS(1831), - [anon_sym_volatile] = ACTIONS(1831), - [anon_sym_restrict] = ACTIONS(1831), - [anon_sym__Atomic] = ACTIONS(1831), - [anon_sym_mutable] = ACTIONS(1831), - [anon_sym_constexpr] = ACTIONS(1831), - [anon_sym_signed] = ACTIONS(1831), - [anon_sym_unsigned] = ACTIONS(1831), - [anon_sym_long] = ACTIONS(1831), - [anon_sym_short] = ACTIONS(1831), - [sym_primitive_type] = ACTIONS(1831), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_class] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(1831), - [anon_sym_union] = ACTIONS(1831), - [anon_sym_if] = ACTIONS(1831), - [anon_sym_switch] = ACTIONS(1831), - [anon_sym_case] = ACTIONS(1831), - [anon_sym_default] = ACTIONS(1831), - [anon_sym_while] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_for] = ACTIONS(1831), - [anon_sym_return] = ACTIONS(1831), - [anon_sym_break] = ACTIONS(1831), - [anon_sym_continue] = ACTIONS(1831), - [anon_sym_goto] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1833), - [anon_sym_PLUS_PLUS] = ACTIONS(1833), - [anon_sym_sizeof] = ACTIONS(1831), - [sym_number_literal] = ACTIONS(1833), - [anon_sym_L_SQUOTE] = ACTIONS(1833), - [anon_sym_u_SQUOTE] = ACTIONS(1833), - [anon_sym_U_SQUOTE] = ACTIONS(1833), - [anon_sym_u8_SQUOTE] = ACTIONS(1833), - [anon_sym_SQUOTE] = ACTIONS(1833), - [anon_sym_L_DQUOTE] = ACTIONS(1833), - [anon_sym_u_DQUOTE] = ACTIONS(1833), - [anon_sym_U_DQUOTE] = ACTIONS(1833), - [anon_sym_u8_DQUOTE] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(1833), - [sym_true] = ACTIONS(1831), - [sym_false] = ACTIONS(1831), - [sym_null] = ACTIONS(1831), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1831), - [anon_sym_virtual] = ACTIONS(1831), - [anon_sym_explicit] = ACTIONS(1831), - [sym_auto] = ACTIONS(1831), - [anon_sym_typename] = ACTIONS(1831), - [anon_sym_template] = ACTIONS(1831), - [anon_sym_operator] = ACTIONS(1831), - [anon_sym_delete] = ACTIONS(1831), - [anon_sym_throw] = ACTIONS(1831), - [anon_sym_namespace] = ACTIONS(1831), - [anon_sym_using] = ACTIONS(1831), - [anon_sym_static_assert] = ACTIONS(1831), - [anon_sym_co_return] = ACTIONS(1831), - [anon_sym_co_yield] = ACTIONS(1831), - [anon_sym_try] = ACTIONS(1831), - [anon_sym_co_await] = ACTIONS(1831), - [anon_sym_new] = ACTIONS(1831), - [sym_this] = ACTIONS(1831), - [sym_nullptr] = ACTIONS(1831), - [sym_alone_macro] = ACTIONS(1833), - [aux_sym_alone_macro_call_token1] = ACTIONS(1831), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1831), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_FORWARD] = ACTIONS(1831), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1831), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1831), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1831), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1831), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_PS_GET] = ACTIONS(1831), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1831), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1831), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1831), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1831), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1831), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1831), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1831), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1831), - [anon_sym_MOZ_COLD] = ACTIONS(1831), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1831), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1831), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1831), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1831), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1831), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1831), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1831), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1831), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1831), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1831), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1831), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1831), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1831), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_NONNULL] = ACTIONS(1831), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1831), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1831), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1831), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1831), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1831), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1831), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1831), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1831), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1831), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1831), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1831), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1831), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1831), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1831), - [anon_sym_MOZ_RAII] = ACTIONS(1831), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1831), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1831), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1831), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1831), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1831), - [sym_raw_string_literal] = ACTIONS(1833), - }, - [660] = { - [sym_identifier] = ACTIONS(1875), - [aux_sym_preproc_include_token1] = ACTIONS(1875), - [aux_sym_preproc_def_token1] = ACTIONS(1875), - [aux_sym_preproc_if_token1] = ACTIONS(1875), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1875), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1875), - [sym_preproc_directive] = ACTIONS(1875), - [anon_sym_LPAREN2] = ACTIONS(1877), - [anon_sym_BANG] = ACTIONS(1877), - [anon_sym_TILDE] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1875), - [anon_sym_PLUS] = ACTIONS(1875), - [anon_sym_STAR] = ACTIONS(1877), - [anon_sym_AMP_AMP] = ACTIONS(1877), - [anon_sym_AMP] = ACTIONS(1875), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_typedef] = ACTIONS(1875), - [anon_sym_extern] = ACTIONS(1875), - [anon_sym___attribute__] = ACTIONS(1875), - [anon_sym_COLON_COLON] = ACTIONS(1877), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1877), - [anon_sym___declspec] = ACTIONS(1875), - [anon_sym___based] = ACTIONS(1875), - [anon_sym___cdecl] = ACTIONS(1875), - [anon_sym___clrcall] = ACTIONS(1875), - [anon_sym___stdcall] = ACTIONS(1875), - [anon_sym___fastcall] = ACTIONS(1875), - [anon_sym___thiscall] = ACTIONS(1875), - [anon_sym___vectorcall] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1875), - [anon_sym_static] = ACTIONS(1875), - [anon_sym_register] = ACTIONS(1875), - [anon_sym_inline] = ACTIONS(1875), - [anon_sym_thread_local] = ACTIONS(1875), - [anon_sym_const] = ACTIONS(1875), - [anon_sym_volatile] = ACTIONS(1875), - [anon_sym_restrict] = ACTIONS(1875), - [anon_sym__Atomic] = ACTIONS(1875), - [anon_sym_mutable] = ACTIONS(1875), - [anon_sym_constexpr] = ACTIONS(1875), - [anon_sym_signed] = ACTIONS(1875), - [anon_sym_unsigned] = ACTIONS(1875), - [anon_sym_long] = ACTIONS(1875), - [anon_sym_short] = ACTIONS(1875), - [sym_primitive_type] = ACTIONS(1875), - [anon_sym_enum] = ACTIONS(1875), - [anon_sym_class] = ACTIONS(1875), - [anon_sym_struct] = ACTIONS(1875), - [anon_sym_union] = ACTIONS(1875), - [anon_sym_if] = ACTIONS(1875), - [anon_sym_switch] = ACTIONS(1875), - [anon_sym_case] = ACTIONS(1875), - [anon_sym_default] = ACTIONS(1875), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_return] = ACTIONS(1875), - [anon_sym_break] = ACTIONS(1875), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_goto] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [anon_sym_PLUS_PLUS] = ACTIONS(1877), - [anon_sym_sizeof] = ACTIONS(1875), - [sym_number_literal] = ACTIONS(1877), - [anon_sym_L_SQUOTE] = ACTIONS(1877), - [anon_sym_u_SQUOTE] = ACTIONS(1877), - [anon_sym_U_SQUOTE] = ACTIONS(1877), - [anon_sym_u8_SQUOTE] = ACTIONS(1877), - [anon_sym_SQUOTE] = ACTIONS(1877), - [anon_sym_L_DQUOTE] = ACTIONS(1877), - [anon_sym_u_DQUOTE] = ACTIONS(1877), - [anon_sym_U_DQUOTE] = ACTIONS(1877), - [anon_sym_u8_DQUOTE] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [sym_true] = ACTIONS(1875), - [sym_false] = ACTIONS(1875), - [sym_null] = ACTIONS(1875), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1875), - [anon_sym_virtual] = ACTIONS(1875), - [anon_sym_explicit] = ACTIONS(1875), - [sym_auto] = ACTIONS(1875), - [anon_sym_typename] = ACTIONS(1875), - [anon_sym_template] = ACTIONS(1875), - [anon_sym_operator] = ACTIONS(1875), - [anon_sym_delete] = ACTIONS(1875), - [anon_sym_throw] = ACTIONS(1875), - [anon_sym_namespace] = ACTIONS(1875), - [anon_sym_using] = ACTIONS(1875), - [anon_sym_static_assert] = ACTIONS(1875), - [anon_sym_co_return] = ACTIONS(1875), - [anon_sym_co_yield] = ACTIONS(1875), - [anon_sym_try] = ACTIONS(1875), - [anon_sym_co_await] = ACTIONS(1875), - [anon_sym_new] = ACTIONS(1875), - [sym_this] = ACTIONS(1875), - [sym_nullptr] = ACTIONS(1875), - [sym_alone_macro] = ACTIONS(1877), - [aux_sym_alone_macro_call_token1] = ACTIONS(1875), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1875), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1875), - [anon_sym_FORWARD] = ACTIONS(1875), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1875), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1875), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1875), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1875), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1875), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1875), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1875), - [anon_sym_PS_GET] = ACTIONS(1875), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1875), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1875), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1875), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1875), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1875), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1875), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1875), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1875), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1875), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1875), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1875), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1875), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1875), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1875), - [anon_sym_MOZ_COLD] = ACTIONS(1875), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1875), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1875), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1875), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1875), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1875), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1875), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1875), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1875), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1875), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1875), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1875), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1875), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1875), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1875), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1875), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1875), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1875), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1875), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1875), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1875), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1875), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1875), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1875), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1875), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1875), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1875), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1875), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1875), - [anon_sym_MOZ_NONNULL] = ACTIONS(1875), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1875), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1875), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1875), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1875), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1875), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1875), - [anon_sym_MOZ_NORETURN] = ACTIONS(1875), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1875), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1875), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1875), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1875), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1875), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1875), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1875), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1875), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1875), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), - [anon_sym_MOZ_RAII] = ACTIONS(1875), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1875), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1875), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1875), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1875), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1875), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1875), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1875), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1875), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), - [sym_raw_string_literal] = ACTIONS(1877), - }, - [661] = { - [sym_identifier] = ACTIONS(1823), - [aux_sym_preproc_include_token1] = ACTIONS(1823), - [aux_sym_preproc_def_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1825), - [anon_sym_BANG] = ACTIONS(1825), - [anon_sym_TILDE] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1825), - [anon_sym_AMP_AMP] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_typedef] = ACTIONS(1823), - [anon_sym_extern] = ACTIONS(1823), - [anon_sym___attribute__] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1825), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1825), - [anon_sym___declspec] = ACTIONS(1823), - [anon_sym___based] = ACTIONS(1823), - [anon_sym___cdecl] = ACTIONS(1823), - [anon_sym___clrcall] = ACTIONS(1823), - [anon_sym___stdcall] = ACTIONS(1823), - [anon_sym___fastcall] = ACTIONS(1823), - [anon_sym___thiscall] = ACTIONS(1823), - [anon_sym___vectorcall] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1825), - [anon_sym_RBRACE] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_register] = ACTIONS(1823), - [anon_sym_inline] = ACTIONS(1823), - [anon_sym_thread_local] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_volatile] = ACTIONS(1823), - [anon_sym_restrict] = ACTIONS(1823), - [anon_sym__Atomic] = ACTIONS(1823), - [anon_sym_mutable] = ACTIONS(1823), - [anon_sym_constexpr] = ACTIONS(1823), - [anon_sym_signed] = ACTIONS(1823), - [anon_sym_unsigned] = ACTIONS(1823), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_short] = ACTIONS(1823), - [sym_primitive_type] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [anon_sym_class] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(1823), - [anon_sym_union] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_switch] = ACTIONS(1823), - [anon_sym_case] = ACTIONS(1823), - [anon_sym_default] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_goto] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1825), - [anon_sym_PLUS_PLUS] = ACTIONS(1825), - [anon_sym_sizeof] = ACTIONS(1823), - [sym_number_literal] = ACTIONS(1825), - [anon_sym_L_SQUOTE] = ACTIONS(1825), - [anon_sym_u_SQUOTE] = ACTIONS(1825), - [anon_sym_U_SQUOTE] = ACTIONS(1825), - [anon_sym_u8_SQUOTE] = ACTIONS(1825), - [anon_sym_SQUOTE] = ACTIONS(1825), - [anon_sym_L_DQUOTE] = ACTIONS(1825), - [anon_sym_u_DQUOTE] = ACTIONS(1825), - [anon_sym_U_DQUOTE] = ACTIONS(1825), - [anon_sym_u8_DQUOTE] = ACTIONS(1825), - [anon_sym_DQUOTE] = ACTIONS(1825), - [sym_true] = ACTIONS(1823), - [sym_false] = ACTIONS(1823), - [sym_null] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1823), - [anon_sym_virtual] = ACTIONS(1823), - [anon_sym_explicit] = ACTIONS(1823), - [sym_auto] = ACTIONS(1823), - [anon_sym_typename] = ACTIONS(1823), - [anon_sym_template] = ACTIONS(1823), - [anon_sym_operator] = ACTIONS(1823), - [anon_sym_delete] = ACTIONS(1823), - [anon_sym_throw] = ACTIONS(1823), - [anon_sym_namespace] = ACTIONS(1823), - [anon_sym_using] = ACTIONS(1823), - [anon_sym_static_assert] = ACTIONS(1823), - [anon_sym_co_return] = ACTIONS(1823), - [anon_sym_co_yield] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1823), - [anon_sym_co_await] = ACTIONS(1823), - [anon_sym_new] = ACTIONS(1823), - [sym_this] = ACTIONS(1823), - [sym_nullptr] = ACTIONS(1823), - [sym_alone_macro] = ACTIONS(1825), - [aux_sym_alone_macro_call_token1] = ACTIONS(1823), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1823), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_FORWARD] = ACTIONS(1823), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1823), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1823), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1823), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1823), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_PS_GET] = ACTIONS(1823), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1823), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1823), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1823), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1823), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1823), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1823), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1823), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1823), - [anon_sym_MOZ_COLD] = ACTIONS(1823), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1823), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1823), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1823), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1823), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1823), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1823), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1823), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1823), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1823), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1823), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1823), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1823), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1823), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_NONNULL] = ACTIONS(1823), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1823), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1823), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1823), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1823), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1823), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1823), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1823), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1823), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1823), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1823), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1823), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1823), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1823), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1823), - [anon_sym_MOZ_RAII] = ACTIONS(1823), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1823), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1823), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1823), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1823), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1823), - [sym_raw_string_literal] = ACTIONS(1825), - }, - [662] = { - [sym_identifier] = ACTIONS(1835), - [aux_sym_preproc_include_token1] = ACTIONS(1835), - [aux_sym_preproc_def_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token2] = ACTIONS(1835), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1835), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1835), - [sym_preproc_directive] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1837), - [anon_sym_TILDE] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1837), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_SEMI] = ACTIONS(1837), - [anon_sym_typedef] = ACTIONS(1835), - [anon_sym_extern] = ACTIONS(1835), - [anon_sym___attribute__] = ACTIONS(1835), - [anon_sym_COLON_COLON] = ACTIONS(1837), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1837), - [anon_sym___declspec] = ACTIONS(1835), - [anon_sym___based] = ACTIONS(1835), - [anon_sym___cdecl] = ACTIONS(1835), - [anon_sym___clrcall] = ACTIONS(1835), - [anon_sym___stdcall] = ACTIONS(1835), - [anon_sym___fastcall] = ACTIONS(1835), - [anon_sym___thiscall] = ACTIONS(1835), - [anon_sym___vectorcall] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_static] = ACTIONS(1835), - [anon_sym_register] = ACTIONS(1835), - [anon_sym_inline] = ACTIONS(1835), - [anon_sym_thread_local] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym_mutable] = ACTIONS(1835), - [anon_sym_constexpr] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(1835), - [anon_sym_unsigned] = ACTIONS(1835), - [anon_sym_long] = ACTIONS(1835), - [anon_sym_short] = ACTIONS(1835), - [sym_primitive_type] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_struct] = ACTIONS(1835), - [anon_sym_union] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_switch] = ACTIONS(1835), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_goto] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1837), - [anon_sym_PLUS_PLUS] = ACTIONS(1837), - [anon_sym_sizeof] = ACTIONS(1835), - [sym_number_literal] = ACTIONS(1837), - [anon_sym_L_SQUOTE] = ACTIONS(1837), - [anon_sym_u_SQUOTE] = ACTIONS(1837), - [anon_sym_U_SQUOTE] = ACTIONS(1837), - [anon_sym_u8_SQUOTE] = ACTIONS(1837), - [anon_sym_SQUOTE] = ACTIONS(1837), - [anon_sym_L_DQUOTE] = ACTIONS(1837), - [anon_sym_u_DQUOTE] = ACTIONS(1837), - [anon_sym_U_DQUOTE] = ACTIONS(1837), - [anon_sym_u8_DQUOTE] = ACTIONS(1837), - [anon_sym_DQUOTE] = ACTIONS(1837), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_null] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1835), - [anon_sym_virtual] = ACTIONS(1835), - [anon_sym_explicit] = ACTIONS(1835), - [sym_auto] = ACTIONS(1835), - [anon_sym_typename] = ACTIONS(1835), - [anon_sym_template] = ACTIONS(1835), - [anon_sym_operator] = ACTIONS(1835), - [anon_sym_delete] = ACTIONS(1835), - [anon_sym_throw] = ACTIONS(1835), - [anon_sym_namespace] = ACTIONS(1835), - [anon_sym_using] = ACTIONS(1835), - [anon_sym_static_assert] = ACTIONS(1835), - [anon_sym_co_return] = ACTIONS(1835), - [anon_sym_co_yield] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_co_await] = ACTIONS(1835), - [anon_sym_new] = ACTIONS(1835), - [sym_this] = ACTIONS(1835), - [sym_nullptr] = ACTIONS(1835), - [sym_alone_macro] = ACTIONS(1837), - [aux_sym_alone_macro_call_token1] = ACTIONS(1835), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1835), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_FORWARD] = ACTIONS(1835), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1835), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1835), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1835), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1835), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_PS_GET] = ACTIONS(1835), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1835), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1835), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1835), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1835), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1835), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1835), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1835), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1835), - [anon_sym_MOZ_COLD] = ACTIONS(1835), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1835), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1835), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1835), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1835), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1835), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1835), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1835), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1835), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1835), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1835), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1835), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1835), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1835), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_NONNULL] = ACTIONS(1835), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1835), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1835), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1835), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1835), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1835), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1835), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1835), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1835), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1835), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1835), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1835), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1835), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1835), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1835), - [anon_sym_MOZ_RAII] = ACTIONS(1835), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1835), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1835), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1835), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1835), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1835), - [sym_raw_string_literal] = ACTIONS(1837), - }, - [663] = { - [sym_identifier] = ACTIONS(1847), - [aux_sym_preproc_include_token1] = ACTIONS(1847), - [aux_sym_preproc_def_token1] = ACTIONS(1847), - [aux_sym_preproc_if_token1] = ACTIONS(1847), - [aux_sym_preproc_if_token2] = ACTIONS(1847), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), - [sym_preproc_directive] = ACTIONS(1847), - [anon_sym_LPAREN2] = ACTIONS(1849), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_AMP_AMP] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_typedef] = ACTIONS(1847), - [anon_sym_extern] = ACTIONS(1847), - [anon_sym___attribute__] = ACTIONS(1847), - [anon_sym_COLON_COLON] = ACTIONS(1849), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1849), - [anon_sym___declspec] = ACTIONS(1847), - [anon_sym___based] = ACTIONS(1847), - [anon_sym___cdecl] = ACTIONS(1847), - [anon_sym___clrcall] = ACTIONS(1847), - [anon_sym___stdcall] = ACTIONS(1847), - [anon_sym___fastcall] = ACTIONS(1847), - [anon_sym___thiscall] = ACTIONS(1847), - [anon_sym___vectorcall] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_register] = ACTIONS(1847), - [anon_sym_inline] = ACTIONS(1847), - [anon_sym_thread_local] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym_constexpr] = ACTIONS(1847), - [anon_sym_signed] = ACTIONS(1847), - [anon_sym_unsigned] = ACTIONS(1847), - [anon_sym_long] = ACTIONS(1847), - [anon_sym_short] = ACTIONS(1847), - [sym_primitive_type] = ACTIONS(1847), - [anon_sym_enum] = ACTIONS(1847), - [anon_sym_class] = ACTIONS(1847), - [anon_sym_struct] = ACTIONS(1847), - [anon_sym_union] = ACTIONS(1847), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1847), - [anon_sym_case] = ACTIONS(1847), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1847), - [anon_sym_do] = ACTIONS(1847), - [anon_sym_for] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1847), - [anon_sym_break] = ACTIONS(1847), - [anon_sym_continue] = ACTIONS(1847), - [anon_sym_goto] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_sizeof] = ACTIONS(1847), - [sym_number_literal] = ACTIONS(1849), - [anon_sym_L_SQUOTE] = ACTIONS(1849), - [anon_sym_u_SQUOTE] = ACTIONS(1849), - [anon_sym_U_SQUOTE] = ACTIONS(1849), - [anon_sym_u8_SQUOTE] = ACTIONS(1849), - [anon_sym_SQUOTE] = ACTIONS(1849), - [anon_sym_L_DQUOTE] = ACTIONS(1849), - [anon_sym_u_DQUOTE] = ACTIONS(1849), - [anon_sym_U_DQUOTE] = ACTIONS(1849), - [anon_sym_u8_DQUOTE] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1849), - [sym_true] = ACTIONS(1847), - [sym_false] = ACTIONS(1847), - [sym_null] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1847), - [anon_sym_virtual] = ACTIONS(1847), - [anon_sym_explicit] = ACTIONS(1847), - [sym_auto] = ACTIONS(1847), - [anon_sym_typename] = ACTIONS(1847), - [anon_sym_template] = ACTIONS(1847), - [anon_sym_operator] = ACTIONS(1847), - [anon_sym_delete] = ACTIONS(1847), - [anon_sym_throw] = ACTIONS(1847), - [anon_sym_namespace] = ACTIONS(1847), - [anon_sym_using] = ACTIONS(1847), - [anon_sym_static_assert] = ACTIONS(1847), - [anon_sym_co_return] = ACTIONS(1847), - [anon_sym_co_yield] = ACTIONS(1847), - [anon_sym_try] = ACTIONS(1847), - [anon_sym_co_await] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [sym_this] = ACTIONS(1847), - [sym_nullptr] = ACTIONS(1847), - [sym_alone_macro] = ACTIONS(1849), - [aux_sym_alone_macro_call_token1] = ACTIONS(1847), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1847), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_FORWARD] = ACTIONS(1847), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1847), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1847), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1847), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1847), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_PS_GET] = ACTIONS(1847), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1847), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1847), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1847), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1847), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1847), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1847), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1847), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1847), - [anon_sym_MOZ_COLD] = ACTIONS(1847), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1847), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1847), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1847), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1847), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1847), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1847), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1847), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1847), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1847), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1847), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1847), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1847), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1847), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_NONNULL] = ACTIONS(1847), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1847), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1847), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1847), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1847), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1847), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1847), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1847), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1847), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1847), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1847), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1847), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1847), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1847), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1847), - [anon_sym_MOZ_RAII] = ACTIONS(1847), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1847), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1847), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1847), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1847), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1847), - [sym_raw_string_literal] = ACTIONS(1849), - }, - [664] = { - [sym_identifier] = ACTIONS(1843), - [aux_sym_preproc_include_token1] = ACTIONS(1843), - [aux_sym_preproc_def_token1] = ACTIONS(1843), - [aux_sym_preproc_if_token1] = ACTIONS(1843), - [aux_sym_preproc_if_token2] = ACTIONS(1843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1843), - [sym_preproc_directive] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1845), - [anon_sym_typedef] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym___attribute__] = ACTIONS(1843), - [anon_sym_COLON_COLON] = ACTIONS(1845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1845), - [anon_sym___declspec] = ACTIONS(1843), - [anon_sym___based] = ACTIONS(1843), - [anon_sym___cdecl] = ACTIONS(1843), - [anon_sym___clrcall] = ACTIONS(1843), - [anon_sym___stdcall] = ACTIONS(1843), - [anon_sym___fastcall] = ACTIONS(1843), - [anon_sym___thiscall] = ACTIONS(1843), - [anon_sym___vectorcall] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_static] = ACTIONS(1843), - [anon_sym_register] = ACTIONS(1843), - [anon_sym_inline] = ACTIONS(1843), - [anon_sym_thread_local] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym_mutable] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_signed] = ACTIONS(1843), - [anon_sym_unsigned] = ACTIONS(1843), - [anon_sym_long] = ACTIONS(1843), - [anon_sym_short] = ACTIONS(1843), - [sym_primitive_type] = ACTIONS(1843), - [anon_sym_enum] = ACTIONS(1843), - [anon_sym_class] = ACTIONS(1843), - [anon_sym_struct] = ACTIONS(1843), - [anon_sym_union] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_switch] = ACTIONS(1843), - [anon_sym_case] = ACTIONS(1843), - [anon_sym_default] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_do] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_goto] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_sizeof] = ACTIONS(1843), - [sym_number_literal] = ACTIONS(1845), - [anon_sym_L_SQUOTE] = ACTIONS(1845), - [anon_sym_u_SQUOTE] = ACTIONS(1845), - [anon_sym_U_SQUOTE] = ACTIONS(1845), - [anon_sym_u8_SQUOTE] = ACTIONS(1845), - [anon_sym_SQUOTE] = ACTIONS(1845), - [anon_sym_L_DQUOTE] = ACTIONS(1845), - [anon_sym_u_DQUOTE] = ACTIONS(1845), - [anon_sym_U_DQUOTE] = ACTIONS(1845), - [anon_sym_u8_DQUOTE] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(1845), - [sym_true] = ACTIONS(1843), - [sym_false] = ACTIONS(1843), - [sym_null] = ACTIONS(1843), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1843), - [anon_sym_virtual] = ACTIONS(1843), - [anon_sym_explicit] = ACTIONS(1843), - [sym_auto] = ACTIONS(1843), - [anon_sym_typename] = ACTIONS(1843), - [anon_sym_template] = ACTIONS(1843), - [anon_sym_operator] = ACTIONS(1843), - [anon_sym_delete] = ACTIONS(1843), - [anon_sym_throw] = ACTIONS(1843), - [anon_sym_namespace] = ACTIONS(1843), - [anon_sym_using] = ACTIONS(1843), - [anon_sym_static_assert] = ACTIONS(1843), - [anon_sym_co_return] = ACTIONS(1843), - [anon_sym_co_yield] = ACTIONS(1843), - [anon_sym_try] = ACTIONS(1843), - [anon_sym_co_await] = ACTIONS(1843), - [anon_sym_new] = ACTIONS(1843), - [sym_this] = ACTIONS(1843), - [sym_nullptr] = ACTIONS(1843), - [sym_alone_macro] = ACTIONS(1845), - [aux_sym_alone_macro_call_token1] = ACTIONS(1843), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1843), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_FORWARD] = ACTIONS(1843), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1843), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1843), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1843), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1843), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_PS_GET] = ACTIONS(1843), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1843), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1843), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1843), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1843), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1843), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1843), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1843), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1843), - [anon_sym_MOZ_COLD] = ACTIONS(1843), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1843), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1843), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1843), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1843), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1843), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1843), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1843), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1843), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1843), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1843), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1843), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1843), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1843), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_NONNULL] = ACTIONS(1843), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1843), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1843), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1843), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1843), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1843), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1843), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1843), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1843), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1843), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1843), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1843), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1843), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1843), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1843), - [anon_sym_MOZ_RAII] = ACTIONS(1843), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1843), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1843), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1843), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1843), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1843), - [sym_raw_string_literal] = ACTIONS(1845), - }, - [665] = { - [sym_preproc_def] = STATE(665), - [sym_preproc_function_def] = STATE(665), - [sym_preproc_call] = STATE(665), - [sym_preproc_if_in_field_declaration_list] = STATE(665), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(665), - [sym_type_definition] = STATE(665), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3235), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3615), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(665), - [sym_field_declaration] = STATE(665), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(841), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(665), - [sym_operator_cast] = STATE(4161), - [sym_inline_method_definition] = STATE(665), - [sym__constructor_specifiers] = STATE(841), - [sym_operator_cast_definition] = STATE(665), - [sym_operator_cast_declaration] = STATE(665), - [sym_constructor_or_destructor_definition] = STATE(665), - [sym_constructor_or_destructor_declaration] = STATE(665), - [sym_friend_declaration] = STATE(665), - [sym_access_specifier] = STATE(665), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(665), - [sym_alias_declaration] = STATE(665), - [sym_static_assert_declaration] = STATE(665), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4161), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(665), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(665), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(841), - [sym_identifier] = ACTIONS(2003), - [aux_sym_preproc_def_token1] = ACTIONS(2006), - [aux_sym_preproc_if_token1] = ACTIONS(2009), - [aux_sym_preproc_if_token2] = ACTIONS(2012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2014), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2014), - [aux_sym_preproc_else_token1] = ACTIONS(2012), - [aux_sym_preproc_elif_token1] = ACTIONS(2012), - [sym_preproc_directive] = ACTIONS(2017), - [anon_sym_LPAREN2] = ACTIONS(2020), - [anon_sym_TILDE] = ACTIONS(2023), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2032), - [anon_sym_typedef] = ACTIONS(2035), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2041), - [anon_sym_COLON_COLON] = ACTIONS(2044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2047), - [anon_sym___declspec] = ACTIONS(2050), - [anon_sym___based] = ACTIONS(2053), - [anon_sym_LBRACK] = ACTIONS(2056), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [anon_sym_thread_local] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2059), - [anon_sym_volatile] = ACTIONS(2059), - [anon_sym_restrict] = ACTIONS(2059), - [anon_sym__Atomic] = ACTIONS(2059), - [anon_sym_mutable] = ACTIONS(2059), - [anon_sym_constexpr] = ACTIONS(2059), - [anon_sym_signed] = ACTIONS(2062), - [anon_sym_unsigned] = ACTIONS(2062), - [anon_sym_long] = ACTIONS(2062), - [anon_sym_short] = ACTIONS(2062), - [sym_primitive_type] = ACTIONS(2065), - [anon_sym_enum] = ACTIONS(2068), - [anon_sym_class] = ACTIONS(2071), - [anon_sym_struct] = ACTIONS(2074), - [anon_sym_union] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2080), - [anon_sym_virtual] = ACTIONS(2083), - [anon_sym_explicit] = ACTIONS(2086), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [sym_auto] = ACTIONS(2065), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(2095), - [anon_sym_operator] = ACTIONS(2098), - [anon_sym_friend] = ACTIONS(2101), - [anon_sym_using] = ACTIONS(2104), - [anon_sym_static_assert] = ACTIONS(2107), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2110), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2113), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2113), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2113), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2113), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2113), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2113), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2113), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2113), - [anon_sym_MOZ_COLD] = ACTIONS(2113), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2113), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2113), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2113), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2113), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2113), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2113), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2113), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2113), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2113), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2113), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2113), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2113), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2113), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2113), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2113), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2113), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2113), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2113), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2113), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2113), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_NONNULL] = ACTIONS(2113), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2113), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2113), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2113), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2113), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2113), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_NORETURN] = ACTIONS(2113), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2113), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2113), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2113), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2113), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2113), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2113), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2113), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2113), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2113), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2113), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2113), - [anon_sym_MOZ_RAII] = ACTIONS(2113), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2113), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2113), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2113), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2113), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2113), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2113), - }, - [666] = { - [sym_preproc_def] = STATE(683), - [sym_preproc_function_def] = STATE(683), - [sym_preproc_call] = STATE(683), - [sym_preproc_if_in_field_declaration_list] = STATE(683), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(683), - [sym_type_definition] = STATE(683), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3232), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3607), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(683), - [sym_field_declaration] = STATE(683), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(840), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(683), - [sym_operator_cast] = STATE(4176), - [sym_inline_method_definition] = STATE(683), - [sym__constructor_specifiers] = STATE(840), - [sym_operator_cast_definition] = STATE(683), - [sym_operator_cast_declaration] = STATE(683), - [sym_constructor_or_destructor_definition] = STATE(683), - [sym_constructor_or_destructor_declaration] = STATE(683), - [sym_friend_declaration] = STATE(683), - [sym_access_specifier] = STATE(683), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(683), - [sym_alias_declaration] = STATE(683), - [sym_static_assert_declaration] = STATE(683), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4176), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(683), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(683), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(840), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token1] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(2128), - [anon_sym_private] = ACTIONS(2128), - [anon_sym_protected] = ACTIONS(2128), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(2130), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2132), - [anon_sym_using] = ACTIONS(2134), - [anon_sym_static_assert] = ACTIONS(2136), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2138), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [667] = { - [sym_preproc_def] = STATE(668), - [sym_preproc_function_def] = STATE(668), - [sym_preproc_call] = STATE(668), - [sym_preproc_if_in_field_declaration_list] = STATE(668), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(668), - [sym_type_definition] = STATE(668), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3232), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3607), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(668), - [sym_field_declaration] = STATE(668), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(840), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(668), - [sym_operator_cast] = STATE(4176), - [sym_inline_method_definition] = STATE(668), - [sym__constructor_specifiers] = STATE(840), - [sym_operator_cast_definition] = STATE(668), - [sym_operator_cast_declaration] = STATE(668), - [sym_constructor_or_destructor_definition] = STATE(668), - [sym_constructor_or_destructor_declaration] = STATE(668), - [sym_friend_declaration] = STATE(668), - [sym_access_specifier] = STATE(668), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(668), - [sym_alias_declaration] = STATE(668), - [sym_static_assert_declaration] = STATE(668), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4176), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(668), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(668), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(840), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token1] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(2128), - [anon_sym_private] = ACTIONS(2128), - [anon_sym_protected] = ACTIONS(2128), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(2130), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2132), - [anon_sym_using] = ACTIONS(2134), - [anon_sym_static_assert] = ACTIONS(2136), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2138), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [668] = { - [sym_preproc_def] = STATE(683), - [sym_preproc_function_def] = STATE(683), - [sym_preproc_call] = STATE(683), - [sym_preproc_if_in_field_declaration_list] = STATE(683), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(683), - [sym_type_definition] = STATE(683), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3232), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3607), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(683), - [sym_field_declaration] = STATE(683), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(840), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(683), - [sym_operator_cast] = STATE(4176), - [sym_inline_method_definition] = STATE(683), - [sym__constructor_specifiers] = STATE(840), - [sym_operator_cast_definition] = STATE(683), - [sym_operator_cast_declaration] = STATE(683), - [sym_constructor_or_destructor_definition] = STATE(683), - [sym_constructor_or_destructor_declaration] = STATE(683), - [sym_friend_declaration] = STATE(683), - [sym_access_specifier] = STATE(683), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(683), - [sym_alias_declaration] = STATE(683), - [sym_static_assert_declaration] = STATE(683), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4176), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(683), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(683), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(840), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token1] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(2128), - [anon_sym_private] = ACTIONS(2128), - [anon_sym_protected] = ACTIONS(2128), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(2130), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2132), - [anon_sym_using] = ACTIONS(2134), - [anon_sym_static_assert] = ACTIONS(2136), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2138), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [669] = { - [sym_preproc_def] = STATE(676), - [sym_preproc_function_def] = STATE(676), - [sym_preproc_call] = STATE(676), - [sym_preproc_if_in_field_declaration_list] = STATE(676), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(676), - [sym_type_definition] = STATE(676), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3232), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3607), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(676), - [sym_field_declaration] = STATE(676), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(840), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(676), - [sym_operator_cast] = STATE(4176), - [sym_inline_method_definition] = STATE(676), - [sym__constructor_specifiers] = STATE(840), - [sym_operator_cast_definition] = STATE(676), - [sym_operator_cast_declaration] = STATE(676), - [sym_constructor_or_destructor_definition] = STATE(676), - [sym_constructor_or_destructor_declaration] = STATE(676), - [sym_friend_declaration] = STATE(676), - [sym_access_specifier] = STATE(676), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(676), - [sym_alias_declaration] = STATE(676), - [sym_static_assert_declaration] = STATE(676), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4176), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(676), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(676), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(840), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token1] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(2128), - [anon_sym_private] = ACTIONS(2128), - [anon_sym_protected] = ACTIONS(2128), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(2130), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2132), - [anon_sym_using] = ACTIONS(2134), - [anon_sym_static_assert] = ACTIONS(2136), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2138), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [670] = { - [sym_preproc_def] = STATE(680), - [sym_preproc_function_def] = STATE(680), - [sym_preproc_call] = STATE(680), - [sym_preproc_if_in_field_declaration_list] = STATE(680), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(680), - [sym_type_definition] = STATE(680), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3232), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3607), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(680), - [sym_field_declaration] = STATE(680), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(840), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(680), - [sym_operator_cast] = STATE(4176), - [sym_inline_method_definition] = STATE(680), - [sym__constructor_specifiers] = STATE(840), - [sym_operator_cast_definition] = STATE(680), - [sym_operator_cast_declaration] = STATE(680), - [sym_constructor_or_destructor_definition] = STATE(680), - [sym_constructor_or_destructor_declaration] = STATE(680), - [sym_friend_declaration] = STATE(680), - [sym_access_specifier] = STATE(680), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(680), - [sym_alias_declaration] = STATE(680), - [sym_static_assert_declaration] = STATE(680), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4176), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(680), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(680), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(840), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token1] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2146), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(2128), - [anon_sym_private] = ACTIONS(2128), - [anon_sym_protected] = ACTIONS(2128), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(2130), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2132), - [anon_sym_using] = ACTIONS(2134), - [anon_sym_static_assert] = ACTIONS(2136), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2138), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [671] = { - [sym_preproc_def] = STATE(672), - [sym_preproc_function_def] = STATE(672), - [sym_preproc_call] = STATE(672), - [sym_preproc_if_in_field_declaration_list] = STATE(672), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(672), - [sym_type_definition] = STATE(672), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3232), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3607), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(672), - [sym_field_declaration] = STATE(672), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(840), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(672), - [sym_operator_cast] = STATE(4176), - [sym_inline_method_definition] = STATE(672), - [sym__constructor_specifiers] = STATE(840), - [sym_operator_cast_definition] = STATE(672), - [sym_operator_cast_declaration] = STATE(672), - [sym_constructor_or_destructor_definition] = STATE(672), - [sym_constructor_or_destructor_declaration] = STATE(672), - [sym_friend_declaration] = STATE(672), - [sym_access_specifier] = STATE(672), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(672), - [sym_alias_declaration] = STATE(672), - [sym_static_assert_declaration] = STATE(672), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4176), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(672), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(672), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(840), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token1] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(2128), - [anon_sym_private] = ACTIONS(2128), - [anon_sym_protected] = ACTIONS(2128), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(2130), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2132), - [anon_sym_using] = ACTIONS(2134), - [anon_sym_static_assert] = ACTIONS(2136), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2138), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [672] = { - [sym_preproc_def] = STATE(683), - [sym_preproc_function_def] = STATE(683), - [sym_preproc_call] = STATE(683), - [sym_preproc_if_in_field_declaration_list] = STATE(683), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(683), - [sym_type_definition] = STATE(683), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3232), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3607), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(683), - [sym_field_declaration] = STATE(683), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(840), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(683), - [sym_operator_cast] = STATE(4176), - [sym_inline_method_definition] = STATE(683), - [sym__constructor_specifiers] = STATE(840), - [sym_operator_cast_definition] = STATE(683), - [sym_operator_cast_declaration] = STATE(683), - [sym_constructor_or_destructor_definition] = STATE(683), - [sym_constructor_or_destructor_declaration] = STATE(683), - [sym_friend_declaration] = STATE(683), - [sym_access_specifier] = STATE(683), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(683), - [sym_alias_declaration] = STATE(683), - [sym_static_assert_declaration] = STATE(683), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4176), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(683), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(683), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(840), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token1] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(2128), - [anon_sym_private] = ACTIONS(2128), - [anon_sym_protected] = ACTIONS(2128), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(2130), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2132), - [anon_sym_using] = ACTIONS(2134), - [anon_sym_static_assert] = ACTIONS(2136), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2138), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [673] = { - [sym_preproc_def] = STATE(683), - [sym_preproc_function_def] = STATE(683), - [sym_preproc_call] = STATE(683), - [sym_preproc_if_in_field_declaration_list] = STATE(683), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(683), - [sym_type_definition] = STATE(683), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3232), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3607), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(683), - [sym_field_declaration] = STATE(683), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(840), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(683), - [sym_operator_cast] = STATE(4176), - [sym_inline_method_definition] = STATE(683), - [sym__constructor_specifiers] = STATE(840), - [sym_operator_cast_definition] = STATE(683), - [sym_operator_cast_declaration] = STATE(683), - [sym_constructor_or_destructor_definition] = STATE(683), - [sym_constructor_or_destructor_declaration] = STATE(683), - [sym_friend_declaration] = STATE(683), - [sym_access_specifier] = STATE(683), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(683), - [sym_alias_declaration] = STATE(683), - [sym_static_assert_declaration] = STATE(683), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4176), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(683), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(683), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(840), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token1] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(2128), - [anon_sym_private] = ACTIONS(2128), - [anon_sym_protected] = ACTIONS(2128), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(2130), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2132), - [anon_sym_using] = ACTIONS(2134), - [anon_sym_static_assert] = ACTIONS(2136), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2138), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [674] = { - [sym_preproc_def] = STATE(681), - [sym_preproc_function_def] = STATE(681), - [sym_preproc_call] = STATE(681), - [sym_preproc_if_in_field_declaration_list] = STATE(681), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(681), - [sym_type_definition] = STATE(681), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3250), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3646), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(681), - [sym_field_declaration] = STATE(681), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(846), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(681), - [sym_operator_cast] = STATE(4029), - [sym_inline_method_definition] = STATE(681), - [sym__constructor_specifiers] = STATE(846), - [sym_operator_cast_definition] = STATE(681), - [sym_operator_cast_declaration] = STATE(681), - [sym_constructor_or_destructor_definition] = STATE(681), - [sym_constructor_or_destructor_declaration] = STATE(681), - [sym_friend_declaration] = STATE(681), - [sym_access_specifier] = STATE(681), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(681), - [sym_alias_declaration] = STATE(681), - [sym_static_assert_declaration] = STATE(681), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4029), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(681), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(681), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(846), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(2154), - [aux_sym_preproc_if_token1] = ACTIONS(2156), - [aux_sym_preproc_if_token2] = ACTIONS(2158), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2160), - [sym_preproc_directive] = ACTIONS(2162), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(2164), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(2166), - [anon_sym_private] = ACTIONS(2166), - [anon_sym_protected] = ACTIONS(2166), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(2168), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2170), - [anon_sym_using] = ACTIONS(2172), - [anon_sym_static_assert] = ACTIONS(2174), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2176), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [675] = { - [sym_preproc_def] = STATE(683), - [sym_preproc_function_def] = STATE(683), - [sym_preproc_call] = STATE(683), - [sym_preproc_if_in_field_declaration_list] = STATE(683), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(683), - [sym_type_definition] = STATE(683), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3232), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3607), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(683), - [sym_field_declaration] = STATE(683), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(840), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(683), - [sym_operator_cast] = STATE(4176), - [sym_inline_method_definition] = STATE(683), - [sym__constructor_specifiers] = STATE(840), - [sym_operator_cast_definition] = STATE(683), - [sym_operator_cast_declaration] = STATE(683), - [sym_constructor_or_destructor_definition] = STATE(683), - [sym_constructor_or_destructor_declaration] = STATE(683), - [sym_friend_declaration] = STATE(683), - [sym_access_specifier] = STATE(683), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(683), - [sym_alias_declaration] = STATE(683), - [sym_static_assert_declaration] = STATE(683), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4176), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(683), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(683), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(840), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token1] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(2128), - [anon_sym_private] = ACTIONS(2128), - [anon_sym_protected] = ACTIONS(2128), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(2130), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2132), - [anon_sym_using] = ACTIONS(2134), - [anon_sym_static_assert] = ACTIONS(2136), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2138), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [676] = { - [sym_preproc_def] = STATE(683), - [sym_preproc_function_def] = STATE(683), - [sym_preproc_call] = STATE(683), - [sym_preproc_if_in_field_declaration_list] = STATE(683), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(683), - [sym_type_definition] = STATE(683), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3232), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3607), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(683), - [sym_field_declaration] = STATE(683), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(840), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(683), - [sym_operator_cast] = STATE(4176), - [sym_inline_method_definition] = STATE(683), - [sym__constructor_specifiers] = STATE(840), - [sym_operator_cast_definition] = STATE(683), - [sym_operator_cast_declaration] = STATE(683), - [sym_constructor_or_destructor_definition] = STATE(683), - [sym_constructor_or_destructor_declaration] = STATE(683), - [sym_friend_declaration] = STATE(683), - [sym_access_specifier] = STATE(683), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(683), - [sym_alias_declaration] = STATE(683), - [sym_static_assert_declaration] = STATE(683), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4176), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(683), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(683), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(840), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token1] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(2128), - [anon_sym_private] = ACTIONS(2128), - [anon_sym_protected] = ACTIONS(2128), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(2130), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2132), - [anon_sym_using] = ACTIONS(2134), - [anon_sym_static_assert] = ACTIONS(2136), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2138), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [677] = { - [sym_preproc_def] = STATE(666), - [sym_preproc_function_def] = STATE(666), - [sym_preproc_call] = STATE(666), - [sym_preproc_if_in_field_declaration_list] = STATE(666), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(666), - [sym_type_definition] = STATE(666), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3232), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3607), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(666), - [sym_field_declaration] = STATE(666), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(840), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(666), - [sym_operator_cast] = STATE(4176), - [sym_inline_method_definition] = STATE(666), - [sym__constructor_specifiers] = STATE(840), - [sym_operator_cast_definition] = STATE(666), - [sym_operator_cast_declaration] = STATE(666), - [sym_constructor_or_destructor_definition] = STATE(666), - [sym_constructor_or_destructor_declaration] = STATE(666), - [sym_friend_declaration] = STATE(666), - [sym_access_specifier] = STATE(666), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(666), - [sym_alias_declaration] = STATE(666), - [sym_static_assert_declaration] = STATE(666), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4176), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(666), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(666), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(840), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token1] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(2128), - [anon_sym_private] = ACTIONS(2128), - [anon_sym_protected] = ACTIONS(2128), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(2130), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2132), - [anon_sym_using] = ACTIONS(2134), - [anon_sym_static_assert] = ACTIONS(2136), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2138), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [678] = { - [sym_preproc_def] = STATE(678), - [sym_preproc_function_def] = STATE(678), - [sym_preproc_call] = STATE(678), - [sym_preproc_if_in_field_declaration_list] = STATE(678), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(678), - [sym_type_definition] = STATE(678), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3250), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3646), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(678), - [sym_field_declaration] = STATE(678), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(846), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(678), - [sym_operator_cast] = STATE(4029), - [sym_inline_method_definition] = STATE(678), - [sym__constructor_specifiers] = STATE(846), - [sym_operator_cast_definition] = STATE(678), - [sym_operator_cast_declaration] = STATE(678), - [sym_constructor_or_destructor_definition] = STATE(678), - [sym_constructor_or_destructor_declaration] = STATE(678), - [sym_friend_declaration] = STATE(678), - [sym_access_specifier] = STATE(678), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(678), - [sym_alias_declaration] = STATE(678), - [sym_static_assert_declaration] = STATE(678), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4029), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(678), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(678), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(846), - [sym_identifier] = ACTIONS(2003), - [aux_sym_preproc_def_token1] = ACTIONS(2184), - [aux_sym_preproc_if_token1] = ACTIONS(2187), - [aux_sym_preproc_if_token2] = ACTIONS(2012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2190), - [sym_preproc_directive] = ACTIONS(2193), - [anon_sym_LPAREN2] = ACTIONS(2020), - [anon_sym_TILDE] = ACTIONS(2023), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2032), - [anon_sym_typedef] = ACTIONS(2196), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2041), - [anon_sym_COLON_COLON] = ACTIONS(2044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2047), - [anon_sym___declspec] = ACTIONS(2050), - [anon_sym___based] = ACTIONS(2053), - [anon_sym_LBRACK] = ACTIONS(2056), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [anon_sym_thread_local] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2059), - [anon_sym_volatile] = ACTIONS(2059), - [anon_sym_restrict] = ACTIONS(2059), - [anon_sym__Atomic] = ACTIONS(2059), - [anon_sym_mutable] = ACTIONS(2059), - [anon_sym_constexpr] = ACTIONS(2059), - [anon_sym_signed] = ACTIONS(2062), - [anon_sym_unsigned] = ACTIONS(2062), - [anon_sym_long] = ACTIONS(2062), - [anon_sym_short] = ACTIONS(2062), - [sym_primitive_type] = ACTIONS(2065), - [anon_sym_enum] = ACTIONS(2068), - [anon_sym_class] = ACTIONS(2071), - [anon_sym_struct] = ACTIONS(2074), - [anon_sym_union] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2080), - [anon_sym_virtual] = ACTIONS(2083), - [anon_sym_explicit] = ACTIONS(2086), - [anon_sym_public] = ACTIONS(2199), - [anon_sym_private] = ACTIONS(2199), - [anon_sym_protected] = ACTIONS(2199), - [sym_auto] = ACTIONS(2065), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(2202), - [anon_sym_operator] = ACTIONS(2098), - [anon_sym_friend] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_static_assert] = ACTIONS(2211), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2214), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2113), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2113), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2113), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2113), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2113), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2113), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2113), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2113), - [anon_sym_MOZ_COLD] = ACTIONS(2113), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2113), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2113), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2113), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2113), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2113), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2113), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2113), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2113), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2113), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2113), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2113), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2113), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2113), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2113), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2113), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2113), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2113), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2113), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2113), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2113), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_NONNULL] = ACTIONS(2113), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2113), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2113), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2113), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2113), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2113), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_NORETURN] = ACTIONS(2113), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2113), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2113), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2113), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2113), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2113), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2113), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2113), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2113), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2113), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2113), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2113), - [anon_sym_MOZ_RAII] = ACTIONS(2113), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2113), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2113), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2113), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2113), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2113), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2113), - }, - [679] = { - [sym_preproc_def] = STATE(673), - [sym_preproc_function_def] = STATE(673), - [sym_preproc_call] = STATE(673), - [sym_preproc_if_in_field_declaration_list] = STATE(673), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(673), - [sym_type_definition] = STATE(673), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3232), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3607), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(673), - [sym_field_declaration] = STATE(673), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(840), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(673), - [sym_operator_cast] = STATE(4176), - [sym_inline_method_definition] = STATE(673), - [sym__constructor_specifiers] = STATE(840), - [sym_operator_cast_definition] = STATE(673), - [sym_operator_cast_declaration] = STATE(673), - [sym_constructor_or_destructor_definition] = STATE(673), - [sym_constructor_or_destructor_declaration] = STATE(673), - [sym_friend_declaration] = STATE(673), - [sym_access_specifier] = STATE(673), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(673), - [sym_alias_declaration] = STATE(673), - [sym_static_assert_declaration] = STATE(673), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4176), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(673), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(673), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(840), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token1] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(2128), - [anon_sym_private] = ACTIONS(2128), - [anon_sym_protected] = ACTIONS(2128), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(2130), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2132), - [anon_sym_using] = ACTIONS(2134), - [anon_sym_static_assert] = ACTIONS(2136), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2138), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [680] = { - [sym_preproc_def] = STATE(683), - [sym_preproc_function_def] = STATE(683), - [sym_preproc_call] = STATE(683), - [sym_preproc_if_in_field_declaration_list] = STATE(683), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(683), - [sym_type_definition] = STATE(683), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3232), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3607), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(683), - [sym_field_declaration] = STATE(683), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(840), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(683), - [sym_operator_cast] = STATE(4176), - [sym_inline_method_definition] = STATE(683), - [sym__constructor_specifiers] = STATE(840), - [sym_operator_cast_definition] = STATE(683), - [sym_operator_cast_declaration] = STATE(683), - [sym_constructor_or_destructor_definition] = STATE(683), - [sym_constructor_or_destructor_declaration] = STATE(683), - [sym_friend_declaration] = STATE(683), - [sym_access_specifier] = STATE(683), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(683), - [sym_alias_declaration] = STATE(683), - [sym_static_assert_declaration] = STATE(683), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4176), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(683), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(683), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(840), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token1] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(2128), - [anon_sym_private] = ACTIONS(2128), - [anon_sym_protected] = ACTIONS(2128), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(2130), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2132), - [anon_sym_using] = ACTIONS(2134), - [anon_sym_static_assert] = ACTIONS(2136), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2138), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [681] = { - [sym_preproc_def] = STATE(678), - [sym_preproc_function_def] = STATE(678), - [sym_preproc_call] = STATE(678), - [sym_preproc_if_in_field_declaration_list] = STATE(678), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(678), - [sym_type_definition] = STATE(678), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3250), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3646), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(678), - [sym_field_declaration] = STATE(678), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(846), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(678), - [sym_operator_cast] = STATE(4029), - [sym_inline_method_definition] = STATE(678), - [sym__constructor_specifiers] = STATE(846), - [sym_operator_cast_definition] = STATE(678), - [sym_operator_cast_declaration] = STATE(678), - [sym_constructor_or_destructor_definition] = STATE(678), - [sym_constructor_or_destructor_declaration] = STATE(678), - [sym_friend_declaration] = STATE(678), - [sym_access_specifier] = STATE(678), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(678), - [sym_alias_declaration] = STATE(678), - [sym_static_assert_declaration] = STATE(678), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4029), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(678), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(678), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(846), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(2154), - [aux_sym_preproc_if_token1] = ACTIONS(2156), - [aux_sym_preproc_if_token2] = ACTIONS(2221), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2160), - [sym_preproc_directive] = ACTIONS(2162), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(2164), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(2166), - [anon_sym_private] = ACTIONS(2166), - [anon_sym_protected] = ACTIONS(2166), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(2168), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2170), - [anon_sym_using] = ACTIONS(2172), - [anon_sym_static_assert] = ACTIONS(2174), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2176), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [682] = { - [sym_preproc_def] = STATE(675), - [sym_preproc_function_def] = STATE(675), - [sym_preproc_call] = STATE(675), - [sym_preproc_if_in_field_declaration_list] = STATE(675), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(675), - [sym_type_definition] = STATE(675), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3232), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3607), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(675), - [sym_field_declaration] = STATE(675), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(840), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(675), - [sym_operator_cast] = STATE(4176), - [sym_inline_method_definition] = STATE(675), - [sym__constructor_specifiers] = STATE(840), - [sym_operator_cast_definition] = STATE(675), - [sym_operator_cast_declaration] = STATE(675), - [sym_constructor_or_destructor_definition] = STATE(675), - [sym_constructor_or_destructor_declaration] = STATE(675), - [sym_friend_declaration] = STATE(675), - [sym_access_specifier] = STATE(675), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(675), - [sym_alias_declaration] = STATE(675), - [sym_static_assert_declaration] = STATE(675), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4176), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(675), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(675), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(840), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token1] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_typedef] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_public] = ACTIONS(2128), - [anon_sym_private] = ACTIONS(2128), - [anon_sym_protected] = ACTIONS(2128), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(2130), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(2132), - [anon_sym_using] = ACTIONS(2134), - [anon_sym_static_assert] = ACTIONS(2136), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2138), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [683] = { - [sym_preproc_def] = STATE(683), - [sym_preproc_function_def] = STATE(683), - [sym_preproc_call] = STATE(683), - [sym_preproc_if_in_field_declaration_list] = STATE(683), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(683), - [sym_type_definition] = STATE(683), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3232), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3607), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1391), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym__field_declaration_list_item] = STATE(683), - [sym_field_declaration] = STATE(683), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(840), - [sym_dependent_type] = STATE(1410), - [sym_template_declaration] = STATE(683), - [sym_operator_cast] = STATE(4176), - [sym_inline_method_definition] = STATE(683), - [sym__constructor_specifiers] = STATE(840), - [sym_operator_cast_definition] = STATE(683), - [sym_operator_cast_declaration] = STATE(683), - [sym_constructor_or_destructor_definition] = STATE(683), - [sym_constructor_or_destructor_declaration] = STATE(683), - [sym_friend_declaration] = STATE(683), - [sym_access_specifier] = STATE(683), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_using_declaration] = STATE(683), - [sym_alias_declaration] = STATE(683), - [sym_static_assert_declaration] = STATE(683), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3463), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1454), - [sym_qualified_operator_cast_identifier] = STATE(4176), - [sym_operator_name] = STATE(3720), - [sym_macro_statement] = STATE(683), - [sym_macro_annotation] = STATE(1308), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(683), - [aux_sym__declaration_specifiers_repeat1] = STATE(1220), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [aux_sym_operator_cast_definition_repeat1] = STATE(840), - [sym_identifier] = ACTIONS(2003), - [aux_sym_preproc_def_token1] = ACTIONS(2225), - [aux_sym_preproc_if_token1] = ACTIONS(2228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2231), - [sym_preproc_directive] = ACTIONS(2234), - [anon_sym_LPAREN2] = ACTIONS(2020), - [anon_sym_TILDE] = ACTIONS(2023), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2032), - [anon_sym_typedef] = ACTIONS(2237), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2041), - [anon_sym_COLON_COLON] = ACTIONS(2044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2047), - [anon_sym___declspec] = ACTIONS(2050), - [anon_sym___based] = ACTIONS(2053), - [anon_sym_RBRACE] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(2056), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [anon_sym_thread_local] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2059), - [anon_sym_volatile] = ACTIONS(2059), - [anon_sym_restrict] = ACTIONS(2059), - [anon_sym__Atomic] = ACTIONS(2059), - [anon_sym_mutable] = ACTIONS(2059), - [anon_sym_constexpr] = ACTIONS(2059), - [anon_sym_signed] = ACTIONS(2062), - [anon_sym_unsigned] = ACTIONS(2062), - [anon_sym_long] = ACTIONS(2062), - [anon_sym_short] = ACTIONS(2062), - [sym_primitive_type] = ACTIONS(2065), - [anon_sym_enum] = ACTIONS(2068), - [anon_sym_class] = ACTIONS(2071), - [anon_sym_struct] = ACTIONS(2074), - [anon_sym_union] = ACTIONS(2077), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2080), - [anon_sym_virtual] = ACTIONS(2083), - [anon_sym_explicit] = ACTIONS(2086), - [anon_sym_public] = ACTIONS(2242), - [anon_sym_private] = ACTIONS(2242), - [anon_sym_protected] = ACTIONS(2242), - [sym_auto] = ACTIONS(2065), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(2245), - [anon_sym_operator] = ACTIONS(2098), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_using] = ACTIONS(2251), - [anon_sym_static_assert] = ACTIONS(2254), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2257), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2113), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2113), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2113), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2113), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2113), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2113), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2113), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2113), - [anon_sym_MOZ_COLD] = ACTIONS(2113), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2113), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2113), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2113), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2113), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2113), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2113), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2113), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2113), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2113), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2113), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2113), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2113), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2113), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2113), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2113), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2113), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2113), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2113), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2113), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2113), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2113), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_NONNULL] = ACTIONS(2113), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2113), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2113), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2113), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2113), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2113), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_NORETURN] = ACTIONS(2113), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2113), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2113), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2113), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2113), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2113), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2113), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2113), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2113), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2113), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2113), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2113), - [anon_sym_MOZ_RAII] = ACTIONS(2113), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2113), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2113), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2113), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2113), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2113), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2113), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2113), - }, - [684] = { - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_TILDE] = ACTIONS(2262), - [anon_sym_DASH] = ACTIONS(2260), - [anon_sym_PLUS] = ACTIONS(2260), - [anon_sym_STAR] = ACTIONS(2262), - [anon_sym_AMP_AMP] = ACTIONS(2262), - [anon_sym_AMP] = ACTIONS(2260), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_extern] = ACTIONS(2260), - [anon_sym___attribute__] = ACTIONS(2260), - [anon_sym_COLON_COLON] = ACTIONS(2262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2262), - [anon_sym___declspec] = ACTIONS(2260), - [anon_sym___based] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2260), - [anon_sym_static] = ACTIONS(2260), - [anon_sym_register] = ACTIONS(2260), - [anon_sym_inline] = ACTIONS(2260), - [anon_sym_thread_local] = ACTIONS(2260), - [anon_sym_const] = ACTIONS(2260), - [anon_sym_volatile] = ACTIONS(2260), - [anon_sym_restrict] = ACTIONS(2260), - [anon_sym__Atomic] = ACTIONS(2260), - [anon_sym_mutable] = ACTIONS(2260), - [anon_sym_constexpr] = ACTIONS(2260), - [anon_sym_signed] = ACTIONS(2260), - [anon_sym_unsigned] = ACTIONS(2260), - [anon_sym_long] = ACTIONS(2260), - [anon_sym_short] = ACTIONS(2260), - [sym_primitive_type] = ACTIONS(2260), - [anon_sym_enum] = ACTIONS(2260), - [anon_sym_class] = ACTIONS(2260), - [anon_sym_struct] = ACTIONS(2260), - [anon_sym_union] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_switch] = ACTIONS(2260), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_do] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2260), - [anon_sym_continue] = ACTIONS(2260), - [anon_sym_goto] = ACTIONS(2260), - [anon_sym_DASH_DASH] = ACTIONS(2262), - [anon_sym_PLUS_PLUS] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2260), - [sym_number_literal] = ACTIONS(2262), - [anon_sym_L_SQUOTE] = ACTIONS(2262), - [anon_sym_u_SQUOTE] = ACTIONS(2262), - [anon_sym_U_SQUOTE] = ACTIONS(2262), - [anon_sym_u8_SQUOTE] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(2262), - [anon_sym_L_DQUOTE] = ACTIONS(2262), - [anon_sym_u_DQUOTE] = ACTIONS(2262), - [anon_sym_U_DQUOTE] = ACTIONS(2262), - [anon_sym_u8_DQUOTE] = ACTIONS(2262), - [anon_sym_DQUOTE] = ACTIONS(2262), - [sym_true] = ACTIONS(2260), - [sym_false] = ACTIONS(2260), - [sym_null] = ACTIONS(2260), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2260), - [anon_sym_virtual] = ACTIONS(2260), - [anon_sym_explicit] = ACTIONS(2260), - [sym_auto] = ACTIONS(2260), - [anon_sym_typename] = ACTIONS(2260), - [anon_sym_template] = ACTIONS(2260), - [anon_sym_operator] = ACTIONS(2260), - [anon_sym_delete] = ACTIONS(2260), - [anon_sym_throw] = ACTIONS(2260), - [anon_sym_co_return] = ACTIONS(2260), - [anon_sym_co_yield] = ACTIONS(2260), - [anon_sym_try] = ACTIONS(2260), - [anon_sym_co_await] = ACTIONS(2260), - [anon_sym_new] = ACTIONS(2260), - [sym_this] = ACTIONS(2260), - [sym_nullptr] = ACTIONS(2260), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2260), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2260), - [anon_sym_FORWARD] = ACTIONS(2260), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2260), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2260), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2260), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(2260), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2260), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2260), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2260), - [anon_sym_PS_GET] = ACTIONS(2260), - [anon_sym_PS_GET_AND_SET] = ACTIONS(2260), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2260), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(2260), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2260), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2260), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2260), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2260), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2260), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2260), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2260), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2260), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2260), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2260), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2260), - [anon_sym_MOZ_COLD] = ACTIONS(2260), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2260), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2260), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2260), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2260), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2260), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2260), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2260), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2260), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2260), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2260), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2260), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2260), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2260), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2260), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2260), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2260), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2260), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2260), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2260), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2260), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_NONNULL] = ACTIONS(2260), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2260), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2260), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2260), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2260), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2260), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_NORETURN] = ACTIONS(2260), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2260), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2260), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2260), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2260), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2260), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2260), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2260), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2260), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2260), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2260), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2260), - [anon_sym_MOZ_RAII] = ACTIONS(2260), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2260), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2260), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2260), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2260), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2260), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2260), - [sym_raw_string_literal] = ACTIONS(2262), - }, - [685] = { - [sym_identifier] = ACTIONS(2264), - [anon_sym_LPAREN2] = ACTIONS(2267), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_DASH] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2267), - [anon_sym_AMP_AMP] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_extern] = ACTIONS(2276), - [anon_sym___attribute__] = ACTIONS(2276), - [anon_sym_COLON_COLON] = ACTIONS(2267), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2267), - [anon_sym___declspec] = ACTIONS(2276), - [anon_sym___based] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2270), - [anon_sym_LBRACK] = ACTIONS(2264), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_register] = ACTIONS(2276), - [anon_sym_inline] = ACTIONS(2276), - [anon_sym_thread_local] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [anon_sym_volatile] = ACTIONS(2276), - [anon_sym_restrict] = ACTIONS(2276), - [anon_sym__Atomic] = ACTIONS(2276), - [anon_sym_mutable] = ACTIONS(2276), - [anon_sym_constexpr] = ACTIONS(2276), - [anon_sym_signed] = ACTIONS(2276), - [anon_sym_unsigned] = ACTIONS(2276), - [anon_sym_long] = ACTIONS(2276), - [anon_sym_short] = ACTIONS(2276), - [sym_primitive_type] = ACTIONS(2264), - [anon_sym_enum] = ACTIONS(2276), - [anon_sym_class] = ACTIONS(2276), - [anon_sym_struct] = ACTIONS(2276), - [anon_sym_union] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_switch] = ACTIONS(2272), - [anon_sym_case] = ACTIONS(2272), - [anon_sym_default] = ACTIONS(2272), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_do] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_goto] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2270), - [anon_sym_PLUS_PLUS] = ACTIONS(2270), - [anon_sym_sizeof] = ACTIONS(2272), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2270), - [anon_sym_u_SQUOTE] = ACTIONS(2270), - [anon_sym_U_SQUOTE] = ACTIONS(2270), - [anon_sym_u8_SQUOTE] = ACTIONS(2270), - [anon_sym_SQUOTE] = ACTIONS(2270), - [anon_sym_L_DQUOTE] = ACTIONS(2270), - [anon_sym_u_DQUOTE] = ACTIONS(2270), - [anon_sym_U_DQUOTE] = ACTIONS(2270), - [anon_sym_u8_DQUOTE] = ACTIONS(2270), - [anon_sym_DQUOTE] = ACTIONS(2270), - [sym_true] = ACTIONS(2272), - [sym_false] = ACTIONS(2272), - [sym_null] = ACTIONS(2272), + [sym_auto] = ACTIONS(2260), + [anon_sym_decltype] = ACTIONS(2260), + [anon_sym_explicit] = ACTIONS(2260), + [anon_sym_typename] = ACTIONS(2260), + [anon_sym_template] = ACTIONS(2260), + [anon_sym_operator] = ACTIONS(2260), + [anon_sym_try] = ACTIONS(2260), + [anon_sym_delete] = ACTIONS(2260), + [anon_sym_throw] = ACTIONS(2260), + [anon_sym_namespace] = ACTIONS(2260), + [anon_sym_using] = ACTIONS(2260), + [anon_sym_static_assert] = ACTIONS(2260), + [anon_sym_concept] = ACTIONS(2260), + [anon_sym_co_return] = ACTIONS(2260), + [anon_sym_co_yield] = ACTIONS(2260), + [anon_sym_R_DQUOTE] = ACTIONS(2262), + [anon_sym_LR_DQUOTE] = ACTIONS(2262), + [anon_sym_uR_DQUOTE] = ACTIONS(2262), + [anon_sym_UR_DQUOTE] = ACTIONS(2262), + [anon_sym_u8R_DQUOTE] = ACTIONS(2262), + [anon_sym_co_await] = ACTIONS(2260), + [anon_sym_new] = ACTIONS(2260), + [anon_sym_requires] = ACTIONS(2260), + [sym_this] = ACTIONS(2260), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_FORWARD] = ACTIONS(2260), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2260), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_PS_GET] = ACTIONS(2260), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2260), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2260), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2260), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2260), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2260), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2260), + [anon_sym_MOZ_COLD] = ACTIONS(2260), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2260), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2260), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2260), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2260), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2260), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2260), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2260), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2260), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2260), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2260), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2260), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2260), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2260), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_NONNULL] = ACTIONS(2260), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2260), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2260), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2260), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2260), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2260), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2260), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2260), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2260), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2260), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2260), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2260), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2260), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2260), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2260), + [anon_sym_MOZ_RAII] = ACTIONS(2260), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2260), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2260), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2260), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2260), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2260), + }, + [STATE(214)] = { + [sym_identifier] = ACTIONS(2264), + [aux_sym_preproc_include_token1] = ACTIONS(2264), + [aux_sym_preproc_def_token1] = ACTIONS(2264), + [aux_sym_preproc_if_token1] = ACTIONS(2264), + [aux_sym_preproc_if_token2] = ACTIONS(2264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2264), + [aux_sym_preproc_else_token1] = ACTIONS(2264), + [aux_sym_preproc_elif_token1] = ACTIONS(2264), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2264), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2264), + [sym_preproc_directive] = ACTIONS(2264), + [anon_sym_LPAREN2] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_AMP] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym___extension__] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2264), + [anon_sym_virtual] = ACTIONS(2264), + [anon_sym_extern] = ACTIONS(2264), + [anon_sym___attribute__] = ACTIONS(2264), + [anon_sym___attribute] = ACTIONS(2264), + [anon_sym_COLON_COLON] = ACTIONS(2266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2266), + [anon_sym___declspec] = ACTIONS(2264), + [anon_sym___based] = ACTIONS(2264), + [anon_sym___cdecl] = ACTIONS(2264), + [anon_sym___clrcall] = ACTIONS(2264), + [anon_sym___stdcall] = ACTIONS(2264), + [anon_sym___fastcall] = ACTIONS(2264), + [anon_sym___thiscall] = ACTIONS(2264), + [anon_sym___vectorcall] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2266), + [anon_sym_signed] = ACTIONS(2264), + [anon_sym_unsigned] = ACTIONS(2264), + [anon_sym_long] = ACTIONS(2264), + [anon_sym_short] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_register] = ACTIONS(2264), + [anon_sym_inline] = ACTIONS(2264), + [anon_sym___inline] = ACTIONS(2264), + [anon_sym___inline__] = ACTIONS(2264), + [anon_sym___forceinline] = ACTIONS(2264), + [anon_sym_thread_local] = ACTIONS(2264), + [anon_sym___thread] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_constexpr] = ACTIONS(2264), + [anon_sym_volatile] = ACTIONS(2264), + [anon_sym_restrict] = ACTIONS(2264), + [anon_sym___restrict__] = ACTIONS(2264), + [anon_sym__Atomic] = ACTIONS(2264), + [anon_sym__Noreturn] = ACTIONS(2264), + [anon_sym_noreturn] = ACTIONS(2264), + [anon_sym__Nonnull] = ACTIONS(2264), + [anon_sym_mutable] = ACTIONS(2264), + [anon_sym_constinit] = ACTIONS(2264), + [anon_sym_consteval] = ACTIONS(2264), + [anon_sym_alignas] = ACTIONS(2264), + [anon_sym__Alignas] = ACTIONS(2264), + [sym_primitive_type] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + [anon_sym_class] = ACTIONS(2264), + [anon_sym_struct] = ACTIONS(2264), + [anon_sym_union] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_switch] = ACTIONS(2264), + [anon_sym_case] = ACTIONS(2264), + [anon_sym_default] = ACTIONS(2264), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_goto] = ACTIONS(2264), + [anon_sym___try] = ACTIONS(2264), + [anon_sym___leave] = ACTIONS(2264), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(2266), + [anon_sym_PLUS_PLUS] = ACTIONS(2266), + [anon_sym_sizeof] = ACTIONS(2264), + [anon_sym___alignof__] = ACTIONS(2264), + [anon_sym___alignof] = ACTIONS(2264), + [anon_sym__alignof] = ACTIONS(2264), + [anon_sym_alignof] = ACTIONS(2264), + [anon_sym__Alignof] = ACTIONS(2264), + [anon_sym_offsetof] = ACTIONS(2264), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2264), + [anon_sym___asm__] = ACTIONS(2264), + [anon_sym___asm] = ACTIONS(2264), + [sym_number_literal] = ACTIONS(2266), + [anon_sym_L_SQUOTE] = ACTIONS(2266), + [anon_sym_u_SQUOTE] = ACTIONS(2266), + [anon_sym_U_SQUOTE] = ACTIONS(2266), + [anon_sym_u8_SQUOTE] = ACTIONS(2266), + [anon_sym_SQUOTE] = ACTIONS(2266), + [anon_sym_L_DQUOTE] = ACTIONS(2266), + [anon_sym_u_DQUOTE] = ACTIONS(2266), + [anon_sym_U_DQUOTE] = ACTIONS(2266), + [anon_sym_u8_DQUOTE] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(2266), + [sym_true] = ACTIONS(2264), + [sym_false] = ACTIONS(2264), + [anon_sym_NULL] = ACTIONS(2264), + [anon_sym_nullptr] = ACTIONS(2264), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2264), + [anon_sym_decltype] = ACTIONS(2264), + [anon_sym_explicit] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_template] = ACTIONS(2264), + [anon_sym_operator] = ACTIONS(2264), + [anon_sym_try] = ACTIONS(2264), + [anon_sym_delete] = ACTIONS(2264), + [anon_sym_throw] = ACTIONS(2264), + [anon_sym_namespace] = ACTIONS(2264), + [anon_sym_using] = ACTIONS(2264), + [anon_sym_static_assert] = ACTIONS(2264), + [anon_sym_concept] = ACTIONS(2264), + [anon_sym_co_return] = ACTIONS(2264), + [anon_sym_co_yield] = ACTIONS(2264), + [anon_sym_R_DQUOTE] = ACTIONS(2266), + [anon_sym_LR_DQUOTE] = ACTIONS(2266), + [anon_sym_uR_DQUOTE] = ACTIONS(2266), + [anon_sym_UR_DQUOTE] = ACTIONS(2266), + [anon_sym_u8R_DQUOTE] = ACTIONS(2266), + [anon_sym_co_await] = ACTIONS(2264), + [anon_sym_new] = ACTIONS(2264), + [anon_sym_requires] = ACTIONS(2264), + [sym_this] = ACTIONS(2264), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2264), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_FORWARD] = ACTIONS(2264), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2264), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2264), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2264), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2264), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_PS_GET] = ACTIONS(2264), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2264), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2264), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2264), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2264), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2264), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2264), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2264), + [anon_sym_MOZ_COLD] = ACTIONS(2264), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2264), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2264), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2264), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2264), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2264), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2264), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2264), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2264), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2264), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2264), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2264), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2264), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2264), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_NONNULL] = ACTIONS(2264), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2264), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2264), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2264), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2264), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2264), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2264), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2264), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2264), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2264), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2264), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2264), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2264), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2264), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2264), + [anon_sym_MOZ_RAII] = ACTIONS(2264), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2264), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2264), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2264), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2264), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2264), + }, + [STATE(215)] = { + [sym_identifier] = ACTIONS(2268), + [aux_sym_preproc_include_token1] = ACTIONS(2268), + [aux_sym_preproc_def_token1] = ACTIONS(2268), + [aux_sym_preproc_if_token1] = ACTIONS(2268), + [aux_sym_preproc_if_token2] = ACTIONS(2268), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2268), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2268), + [aux_sym_preproc_else_token1] = ACTIONS(2268), + [aux_sym_preproc_elif_token1] = ACTIONS(2268), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2268), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2268), + [sym_preproc_directive] = ACTIONS(2268), + [anon_sym_LPAREN2] = ACTIONS(2270), + [anon_sym_BANG] = ACTIONS(2270), + [anon_sym_TILDE] = ACTIONS(2270), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_AMP_AMP] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym___extension__] = ACTIONS(2268), + [anon_sym_typedef] = ACTIONS(2268), + [anon_sym_virtual] = ACTIONS(2268), + [anon_sym_extern] = ACTIONS(2268), + [anon_sym___attribute__] = ACTIONS(2268), + [anon_sym___attribute] = ACTIONS(2268), + [anon_sym_COLON_COLON] = ACTIONS(2270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2270), + [anon_sym___declspec] = ACTIONS(2268), + [anon_sym___based] = ACTIONS(2268), + [anon_sym___cdecl] = ACTIONS(2268), + [anon_sym___clrcall] = ACTIONS(2268), + [anon_sym___stdcall] = ACTIONS(2268), + [anon_sym___fastcall] = ACTIONS(2268), + [anon_sym___thiscall] = ACTIONS(2268), + [anon_sym___vectorcall] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_signed] = ACTIONS(2268), + [anon_sym_unsigned] = ACTIONS(2268), + [anon_sym_long] = ACTIONS(2268), + [anon_sym_short] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_register] = ACTIONS(2268), + [anon_sym_inline] = ACTIONS(2268), + [anon_sym___inline] = ACTIONS(2268), + [anon_sym___inline__] = ACTIONS(2268), + [anon_sym___forceinline] = ACTIONS(2268), + [anon_sym_thread_local] = ACTIONS(2268), + [anon_sym___thread] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_constexpr] = ACTIONS(2268), + [anon_sym_volatile] = ACTIONS(2268), + [anon_sym_restrict] = ACTIONS(2268), + [anon_sym___restrict__] = ACTIONS(2268), + [anon_sym__Atomic] = ACTIONS(2268), + [anon_sym__Noreturn] = ACTIONS(2268), + [anon_sym_noreturn] = ACTIONS(2268), + [anon_sym__Nonnull] = ACTIONS(2268), + [anon_sym_mutable] = ACTIONS(2268), + [anon_sym_constinit] = ACTIONS(2268), + [anon_sym_consteval] = ACTIONS(2268), + [anon_sym_alignas] = ACTIONS(2268), + [anon_sym__Alignas] = ACTIONS(2268), + [sym_primitive_type] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(2268), + [anon_sym_union] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_case] = ACTIONS(2268), + [anon_sym_default] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_goto] = ACTIONS(2268), + [anon_sym___try] = ACTIONS(2268), + [anon_sym___leave] = ACTIONS(2268), + [anon_sym_not] = ACTIONS(2268), + [anon_sym_compl] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2270), + [anon_sym_PLUS_PLUS] = ACTIONS(2270), + [anon_sym_sizeof] = ACTIONS(2268), + [anon_sym___alignof__] = ACTIONS(2268), + [anon_sym___alignof] = ACTIONS(2268), + [anon_sym__alignof] = ACTIONS(2268), + [anon_sym_alignof] = ACTIONS(2268), + [anon_sym__Alignof] = ACTIONS(2268), + [anon_sym_offsetof] = ACTIONS(2268), + [anon_sym__Generic] = ACTIONS(2268), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2270), + [anon_sym_u_DQUOTE] = ACTIONS(2270), + [anon_sym_U_DQUOTE] = ACTIONS(2270), + [anon_sym_u8_DQUOTE] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2270), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [anon_sym_NULL] = ACTIONS(2268), + [anon_sym_nullptr] = ACTIONS(2268), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2268), + [anon_sym_decltype] = ACTIONS(2268), + [anon_sym_explicit] = ACTIONS(2268), + [anon_sym_typename] = ACTIONS(2268), + [anon_sym_template] = ACTIONS(2268), + [anon_sym_operator] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_using] = ACTIONS(2268), + [anon_sym_static_assert] = ACTIONS(2268), + [anon_sym_concept] = ACTIONS(2268), + [anon_sym_co_return] = ACTIONS(2268), + [anon_sym_co_yield] = ACTIONS(2268), + [anon_sym_R_DQUOTE] = ACTIONS(2270), + [anon_sym_LR_DQUOTE] = ACTIONS(2270), + [anon_sym_uR_DQUOTE] = ACTIONS(2270), + [anon_sym_UR_DQUOTE] = ACTIONS(2270), + [anon_sym_u8R_DQUOTE] = ACTIONS(2270), + [anon_sym_co_await] = ACTIONS(2268), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_requires] = ACTIONS(2268), + [sym_this] = ACTIONS(2268), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2268), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_FORWARD] = ACTIONS(2268), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2268), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2268), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2268), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2268), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_PS_GET] = ACTIONS(2268), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2268), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2268), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2268), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2268), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2268), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2268), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2268), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2268), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2268), + [anon_sym_MOZ_COLD] = ACTIONS(2268), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2268), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2268), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2268), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2268), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2268), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2268), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2268), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2268), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2268), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2268), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2268), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2268), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2268), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2268), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2268), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2268), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2268), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2268), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_NONNULL] = ACTIONS(2268), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2268), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2268), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2268), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2268), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2268), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_NORETURN] = ACTIONS(2268), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2268), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2268), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2268), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2268), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2268), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2268), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2268), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2268), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2268), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2268), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2268), + [anon_sym_MOZ_RAII] = ACTIONS(2268), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2268), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2268), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2268), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2268), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2268), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2268), + }, + [STATE(216)] = { + [sym_identifier] = ACTIONS(2272), + [aux_sym_preproc_include_token1] = ACTIONS(2272), + [aux_sym_preproc_def_token1] = ACTIONS(2272), + [aux_sym_preproc_if_token1] = ACTIONS(2272), + [aux_sym_preproc_if_token2] = ACTIONS(2272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2272), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2272), + [aux_sym_preproc_else_token1] = ACTIONS(2272), + [aux_sym_preproc_elif_token1] = ACTIONS(2272), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2272), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2272), + [sym_preproc_directive] = ACTIONS(2272), + [anon_sym_LPAREN2] = ACTIONS(2274), + [anon_sym_BANG] = ACTIONS(2274), + [anon_sym_TILDE] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2272), + [anon_sym_PLUS] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2274), + [anon_sym_AMP_AMP] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym___extension__] = ACTIONS(2272), + [anon_sym_typedef] = ACTIONS(2272), + [anon_sym_virtual] = ACTIONS(2272), + [anon_sym_extern] = ACTIONS(2272), + [anon_sym___attribute__] = ACTIONS(2272), + [anon_sym___attribute] = ACTIONS(2272), + [anon_sym_COLON_COLON] = ACTIONS(2274), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2274), + [anon_sym___declspec] = ACTIONS(2272), + [anon_sym___based] = ACTIONS(2272), + [anon_sym___cdecl] = ACTIONS(2272), + [anon_sym___clrcall] = ACTIONS(2272), + [anon_sym___stdcall] = ACTIONS(2272), + [anon_sym___fastcall] = ACTIONS(2272), + [anon_sym___thiscall] = ACTIONS(2272), + [anon_sym___vectorcall] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2274), + [anon_sym_signed] = ACTIONS(2272), + [anon_sym_unsigned] = ACTIONS(2272), + [anon_sym_long] = ACTIONS(2272), + [anon_sym_short] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_static] = ACTIONS(2272), + [anon_sym_register] = ACTIONS(2272), + [anon_sym_inline] = ACTIONS(2272), + [anon_sym___inline] = ACTIONS(2272), + [anon_sym___inline__] = ACTIONS(2272), + [anon_sym___forceinline] = ACTIONS(2272), + [anon_sym_thread_local] = ACTIONS(2272), + [anon_sym___thread] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [anon_sym_constexpr] = ACTIONS(2272), + [anon_sym_volatile] = ACTIONS(2272), + [anon_sym_restrict] = ACTIONS(2272), + [anon_sym___restrict__] = ACTIONS(2272), + [anon_sym__Atomic] = ACTIONS(2272), + [anon_sym__Noreturn] = ACTIONS(2272), + [anon_sym_noreturn] = ACTIONS(2272), + [anon_sym__Nonnull] = ACTIONS(2272), + [anon_sym_mutable] = ACTIONS(2272), + [anon_sym_constinit] = ACTIONS(2272), + [anon_sym_consteval] = ACTIONS(2272), + [anon_sym_alignas] = ACTIONS(2272), + [anon_sym__Alignas] = ACTIONS(2272), + [sym_primitive_type] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), + [anon_sym_class] = ACTIONS(2272), + [anon_sym_struct] = ACTIONS(2272), + [anon_sym_union] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_switch] = ACTIONS(2272), + [anon_sym_case] = ACTIONS(2272), + [anon_sym_default] = ACTIONS(2272), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_goto] = ACTIONS(2272), + [anon_sym___try] = ACTIONS(2272), + [anon_sym___leave] = ACTIONS(2272), + [anon_sym_not] = ACTIONS(2272), + [anon_sym_compl] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2274), + [anon_sym_PLUS_PLUS] = ACTIONS(2274), + [anon_sym_sizeof] = ACTIONS(2272), + [anon_sym___alignof__] = ACTIONS(2272), + [anon_sym___alignof] = ACTIONS(2272), + [anon_sym__alignof] = ACTIONS(2272), + [anon_sym_alignof] = ACTIONS(2272), + [anon_sym__Alignof] = ACTIONS(2272), + [anon_sym_offsetof] = ACTIONS(2272), + [anon_sym__Generic] = ACTIONS(2272), + [anon_sym_asm] = ACTIONS(2272), + [anon_sym___asm__] = ACTIONS(2272), + [anon_sym___asm] = ACTIONS(2272), + [sym_number_literal] = ACTIONS(2274), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2272), + [sym_false] = ACTIONS(2272), + [anon_sym_NULL] = ACTIONS(2272), + [anon_sym_nullptr] = ACTIONS(2272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2272), + [anon_sym_decltype] = ACTIONS(2272), + [anon_sym_explicit] = ACTIONS(2272), + [anon_sym_typename] = ACTIONS(2272), + [anon_sym_template] = ACTIONS(2272), + [anon_sym_operator] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2272), + [anon_sym_delete] = ACTIONS(2272), + [anon_sym_throw] = ACTIONS(2272), + [anon_sym_namespace] = ACTIONS(2272), + [anon_sym_using] = ACTIONS(2272), + [anon_sym_static_assert] = ACTIONS(2272), + [anon_sym_concept] = ACTIONS(2272), + [anon_sym_co_return] = ACTIONS(2272), + [anon_sym_co_yield] = ACTIONS(2272), + [anon_sym_R_DQUOTE] = ACTIONS(2274), + [anon_sym_LR_DQUOTE] = ACTIONS(2274), + [anon_sym_uR_DQUOTE] = ACTIONS(2274), + [anon_sym_UR_DQUOTE] = ACTIONS(2274), + [anon_sym_u8R_DQUOTE] = ACTIONS(2274), + [anon_sym_co_await] = ACTIONS(2272), + [anon_sym_new] = ACTIONS(2272), + [anon_sym_requires] = ACTIONS(2272), + [sym_this] = ACTIONS(2272), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2272), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_FORWARD] = ACTIONS(2272), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2272), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2272), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2272), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2272), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_PS_GET] = ACTIONS(2272), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2272), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2272), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2272), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2272), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2272), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2272), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2272), + [anon_sym_MOZ_COLD] = ACTIONS(2272), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2272), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2272), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2272), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2272), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2272), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2272), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2272), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2272), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2272), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2272), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2272), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2272), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2272), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_NONNULL] = ACTIONS(2272), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2272), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2272), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2272), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2272), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2272), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2272), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2272), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2272), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2272), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2272), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2272), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2272), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2272), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2272), + [anon_sym_MOZ_RAII] = ACTIONS(2272), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2272), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2272), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2272), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2272), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2272), + }, + [STATE(217)] = { + [sym_identifier] = ACTIONS(2276), + [aux_sym_preproc_include_token1] = ACTIONS(2276), + [aux_sym_preproc_def_token1] = ACTIONS(2276), + [aux_sym_preproc_if_token1] = ACTIONS(2276), + [aux_sym_preproc_if_token2] = ACTIONS(2276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2276), + [aux_sym_preproc_else_token1] = ACTIONS(2276), + [aux_sym_preproc_elif_token1] = ACTIONS(2276), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2276), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2276), + [sym_preproc_directive] = ACTIONS(2276), + [anon_sym_LPAREN2] = ACTIONS(2278), + [anon_sym_BANG] = ACTIONS(2278), + [anon_sym_TILDE] = ACTIONS(2278), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2278), + [anon_sym_AMP_AMP] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym___extension__] = ACTIONS(2276), + [anon_sym_typedef] = ACTIONS(2276), + [anon_sym_virtual] = ACTIONS(2276), + [anon_sym_extern] = ACTIONS(2276), + [anon_sym___attribute__] = ACTIONS(2276), + [anon_sym___attribute] = ACTIONS(2276), + [anon_sym_COLON_COLON] = ACTIONS(2278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2278), + [anon_sym___declspec] = ACTIONS(2276), + [anon_sym___based] = ACTIONS(2276), + [anon_sym___cdecl] = ACTIONS(2276), + [anon_sym___clrcall] = ACTIONS(2276), + [anon_sym___stdcall] = ACTIONS(2276), + [anon_sym___fastcall] = ACTIONS(2276), + [anon_sym___thiscall] = ACTIONS(2276), + [anon_sym___vectorcall] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_signed] = ACTIONS(2276), + [anon_sym_unsigned] = ACTIONS(2276), + [anon_sym_long] = ACTIONS(2276), + [anon_sym_short] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_register] = ACTIONS(2276), + [anon_sym_inline] = ACTIONS(2276), + [anon_sym___inline] = ACTIONS(2276), + [anon_sym___inline__] = ACTIONS(2276), + [anon_sym___forceinline] = ACTIONS(2276), + [anon_sym_thread_local] = ACTIONS(2276), + [anon_sym___thread] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_constexpr] = ACTIONS(2276), + [anon_sym_volatile] = ACTIONS(2276), + [anon_sym_restrict] = ACTIONS(2276), + [anon_sym___restrict__] = ACTIONS(2276), + [anon_sym__Atomic] = ACTIONS(2276), + [anon_sym__Noreturn] = ACTIONS(2276), + [anon_sym_noreturn] = ACTIONS(2276), + [anon_sym__Nonnull] = ACTIONS(2276), + [anon_sym_mutable] = ACTIONS(2276), + [anon_sym_constinit] = ACTIONS(2276), + [anon_sym_consteval] = ACTIONS(2276), + [anon_sym_alignas] = ACTIONS(2276), + [anon_sym__Alignas] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_struct] = ACTIONS(2276), + [anon_sym_union] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_case] = ACTIONS(2276), + [anon_sym_default] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym___try] = ACTIONS(2276), + [anon_sym___leave] = ACTIONS(2276), + [anon_sym_not] = ACTIONS(2276), + [anon_sym_compl] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2278), + [anon_sym_PLUS_PLUS] = ACTIONS(2278), + [anon_sym_sizeof] = ACTIONS(2276), + [anon_sym___alignof__] = ACTIONS(2276), + [anon_sym___alignof] = ACTIONS(2276), + [anon_sym__alignof] = ACTIONS(2276), + [anon_sym_alignof] = ACTIONS(2276), + [anon_sym__Alignof] = ACTIONS(2276), + [anon_sym_offsetof] = ACTIONS(2276), + [anon_sym__Generic] = ACTIONS(2276), + [anon_sym_asm] = ACTIONS(2276), + [anon_sym___asm__] = ACTIONS(2276), + [anon_sym___asm] = ACTIONS(2276), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_L_SQUOTE] = ACTIONS(2278), + [anon_sym_u_SQUOTE] = ACTIONS(2278), + [anon_sym_U_SQUOTE] = ACTIONS(2278), + [anon_sym_u8_SQUOTE] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(2278), + [anon_sym_L_DQUOTE] = ACTIONS(2278), + [anon_sym_u_DQUOTE] = ACTIONS(2278), + [anon_sym_U_DQUOTE] = ACTIONS(2278), + [anon_sym_u8_DQUOTE] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2278), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2276), [anon_sym_decltype] = ACTIONS(2276), - [anon_sym_virtual] = ACTIONS(2276), [anon_sym_explicit] = ACTIONS(2276), - [sym_auto] = ACTIONS(2276), [anon_sym_typename] = ACTIONS(2276), - [anon_sym_template] = ACTIONS(2264), + [anon_sym_template] = ACTIONS(2276), [anon_sym_operator] = ACTIONS(2276), - [anon_sym_delete] = ACTIONS(2272), - [anon_sym_throw] = ACTIONS(2272), - [anon_sym_co_return] = ACTIONS(2272), - [anon_sym_co_yield] = ACTIONS(2272), - [anon_sym_try] = ACTIONS(2272), - [anon_sym_co_await] = ACTIONS(2272), - [anon_sym_new] = ACTIONS(2272), - [sym_this] = ACTIONS(2272), - [sym_nullptr] = ACTIONS(2272), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2272), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2272), - [anon_sym_FORWARD] = ACTIONS(2272), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2272), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2272), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2272), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(2272), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2272), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2272), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2272), - [anon_sym_PS_GET] = ACTIONS(2272), - [anon_sym_PS_GET_AND_SET] = ACTIONS(2272), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2272), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(2272), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2272), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2272), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_using] = ACTIONS(2276), + [anon_sym_static_assert] = ACTIONS(2276), + [anon_sym_concept] = ACTIONS(2276), + [anon_sym_co_return] = ACTIONS(2276), + [anon_sym_co_yield] = ACTIONS(2276), + [anon_sym_R_DQUOTE] = ACTIONS(2278), + [anon_sym_LR_DQUOTE] = ACTIONS(2278), + [anon_sym_uR_DQUOTE] = ACTIONS(2278), + [anon_sym_UR_DQUOTE] = ACTIONS(2278), + [anon_sym_u8R_DQUOTE] = ACTIONS(2278), + [anon_sym_co_await] = ACTIONS(2276), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_requires] = ACTIONS(2276), + [sym_this] = ACTIONS(2276), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2276), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_FORWARD] = ACTIONS(2276), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2276), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2276), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2276), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2276), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_PS_GET] = ACTIONS(2276), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2276), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2276), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2276), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2276), [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2276), [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2276), [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2276), @@ -170290,50798 +104183,23386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2276), [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2276), [anon_sym_JS_PUBLIC_API] = ACTIONS(2276), - [sym_raw_string_literal] = ACTIONS(2270), - }, - [686] = { - [sym_identifier] = ACTIONS(2278), - [anon_sym_LPAREN2] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2278), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_extern] = ACTIONS(2278), - [anon_sym___attribute__] = ACTIONS(2278), - [anon_sym_COLON_COLON] = ACTIONS(2280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2280), - [anon_sym___declspec] = ACTIONS(2278), - [anon_sym___based] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_static] = ACTIONS(2278), - [anon_sym_register] = ACTIONS(2278), - [anon_sym_inline] = ACTIONS(2278), - [anon_sym_thread_local] = ACTIONS(2278), - [anon_sym_const] = ACTIONS(2278), - [anon_sym_volatile] = ACTIONS(2278), - [anon_sym_restrict] = ACTIONS(2278), - [anon_sym__Atomic] = ACTIONS(2278), - [anon_sym_mutable] = ACTIONS(2278), - [anon_sym_constexpr] = ACTIONS(2278), - [anon_sym_signed] = ACTIONS(2278), - [anon_sym_unsigned] = ACTIONS(2278), - [anon_sym_long] = ACTIONS(2278), - [anon_sym_short] = ACTIONS(2278), - [sym_primitive_type] = ACTIONS(2278), - [anon_sym_enum] = ACTIONS(2278), - [anon_sym_class] = ACTIONS(2278), - [anon_sym_struct] = ACTIONS(2278), - [anon_sym_union] = ACTIONS(2278), - [anon_sym_if] = ACTIONS(2278), - [anon_sym_switch] = ACTIONS(2278), - [anon_sym_case] = ACTIONS(2278), - [anon_sym_default] = ACTIONS(2278), - [anon_sym_while] = ACTIONS(2278), - [anon_sym_do] = ACTIONS(2278), - [anon_sym_for] = ACTIONS(2278), - [anon_sym_return] = ACTIONS(2278), - [anon_sym_break] = ACTIONS(2278), - [anon_sym_continue] = ACTIONS(2278), - [anon_sym_goto] = ACTIONS(2278), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_sizeof] = ACTIONS(2278), - [sym_number_literal] = ACTIONS(2280), - [anon_sym_L_SQUOTE] = ACTIONS(2280), - [anon_sym_u_SQUOTE] = ACTIONS(2280), - [anon_sym_U_SQUOTE] = ACTIONS(2280), - [anon_sym_u8_SQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_L_DQUOTE] = ACTIONS(2280), - [anon_sym_u_DQUOTE] = ACTIONS(2280), - [anon_sym_U_DQUOTE] = ACTIONS(2280), - [anon_sym_u8_DQUOTE] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [sym_true] = ACTIONS(2278), - [sym_false] = ACTIONS(2278), - [sym_null] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2278), - [anon_sym_virtual] = ACTIONS(2278), - [anon_sym_explicit] = ACTIONS(2278), - [sym_auto] = ACTIONS(2278), - [anon_sym_typename] = ACTIONS(2278), - [anon_sym_template] = ACTIONS(2278), - [anon_sym_operator] = ACTIONS(2278), - [anon_sym_delete] = ACTIONS(2278), - [anon_sym_throw] = ACTIONS(2278), - [anon_sym_co_return] = ACTIONS(2278), - [anon_sym_co_yield] = ACTIONS(2278), - [anon_sym_try] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2278), - [anon_sym_new] = ACTIONS(2278), - [sym_this] = ACTIONS(2278), - [sym_nullptr] = ACTIONS(2278), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2278), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2278), - [anon_sym_FORWARD] = ACTIONS(2278), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2278), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2278), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2278), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(2278), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2278), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2278), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2278), - [anon_sym_PS_GET] = ACTIONS(2278), - [anon_sym_PS_GET_AND_SET] = ACTIONS(2278), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2278), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(2278), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2278), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2278), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2278), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2278), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2278), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2278), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2278), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2278), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2278), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2278), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2278), - [anon_sym_MOZ_COLD] = ACTIONS(2278), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2278), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2278), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2278), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2278), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2278), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2278), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2278), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2278), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2278), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2278), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2278), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2278), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2278), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2278), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2278), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2278), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2278), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2278), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2278), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2278), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_NONNULL] = ACTIONS(2278), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2278), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2278), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2278), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2278), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2278), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_NORETURN] = ACTIONS(2278), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2278), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2278), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2278), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2278), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2278), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2278), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2278), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2278), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2278), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2278), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2278), - [anon_sym_MOZ_RAII] = ACTIONS(2278), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2278), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2278), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2278), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2278), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2278), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2278), - [sym_raw_string_literal] = ACTIONS(2280), - }, - [687] = { - [sym_catch_clause] = STATE(688), - [aux_sym_try_statement_repeat1] = STATE(688), - [sym_identifier] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_COLON_COLON] = ACTIONS(1502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym_mutable] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_class] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_else] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [sym_null] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1500), - [anon_sym_virtual] = ACTIONS(1500), - [sym_auto] = ACTIONS(1500), - [anon_sym_typename] = ACTIONS(1500), - [anon_sym_template] = ACTIONS(1500), - [anon_sym_delete] = ACTIONS(1500), - [anon_sym_throw] = ACTIONS(1500), - [anon_sym_co_return] = ACTIONS(1500), - [anon_sym_co_yield] = ACTIONS(1500), - [anon_sym_try] = ACTIONS(1500), - [anon_sym_catch] = ACTIONS(2282), - [anon_sym_co_await] = ACTIONS(1500), - [anon_sym_new] = ACTIONS(1500), - [sym_this] = ACTIONS(1500), - [sym_nullptr] = ACTIONS(1500), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_FORWARD] = ACTIONS(1500), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1500), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_PS_GET] = ACTIONS(1500), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1500), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1500), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1500), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1500), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1500), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1500), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1500), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1500), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1500), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1500), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1500), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1500), - [anon_sym_MOZ_COLD] = ACTIONS(1500), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1500), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1500), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1500), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1500), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1500), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1500), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1500), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1500), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1500), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1500), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1500), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1500), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1500), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1500), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1500), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1500), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1500), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1500), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1500), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1500), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1500), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_NONNULL] = ACTIONS(1500), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1500), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1500), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1500), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1500), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1500), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_NORETURN] = ACTIONS(1500), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1500), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1500), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1500), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1500), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1500), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1500), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1500), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1500), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1500), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1500), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1500), - [anon_sym_MOZ_RAII] = ACTIONS(1500), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1500), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1500), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1500), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1500), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1500), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1500), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1500), - [sym_raw_string_literal] = ACTIONS(1502), - }, - [688] = { - [sym_catch_clause] = STATE(688), - [aux_sym_try_statement_repeat1] = STATE(688), - [sym_identifier] = ACTIONS(1493), - [anon_sym_LPAREN2] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_typedef] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym___attribute__] = ACTIONS(1493), - [anon_sym_COLON_COLON] = ACTIONS(1495), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1495), - [anon_sym___declspec] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1493), - [anon_sym_register] = ACTIONS(1493), - [anon_sym_inline] = ACTIONS(1493), - [anon_sym_thread_local] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_volatile] = ACTIONS(1493), - [anon_sym_restrict] = ACTIONS(1493), - [anon_sym__Atomic] = ACTIONS(1493), - [anon_sym_mutable] = ACTIONS(1493), - [anon_sym_constexpr] = ACTIONS(1493), - [anon_sym_signed] = ACTIONS(1493), - [anon_sym_unsigned] = ACTIONS(1493), - [anon_sym_long] = ACTIONS(1493), - [anon_sym_short] = ACTIONS(1493), - [sym_primitive_type] = ACTIONS(1493), - [anon_sym_enum] = ACTIONS(1493), - [anon_sym_class] = ACTIONS(1493), - [anon_sym_struct] = ACTIONS(1493), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_else] = ACTIONS(1493), - [anon_sym_switch] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_do] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_goto] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_sizeof] = ACTIONS(1493), - [sym_number_literal] = ACTIONS(1495), - [anon_sym_L_SQUOTE] = ACTIONS(1495), - [anon_sym_u_SQUOTE] = ACTIONS(1495), - [anon_sym_U_SQUOTE] = ACTIONS(1495), - [anon_sym_u8_SQUOTE] = ACTIONS(1495), - [anon_sym_SQUOTE] = ACTIONS(1495), - [anon_sym_L_DQUOTE] = ACTIONS(1495), - [anon_sym_u_DQUOTE] = ACTIONS(1495), - [anon_sym_U_DQUOTE] = ACTIONS(1495), - [anon_sym_u8_DQUOTE] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym_true] = ACTIONS(1493), - [sym_false] = ACTIONS(1493), - [sym_null] = ACTIONS(1493), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_virtual] = ACTIONS(1493), - [sym_auto] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1493), - [anon_sym_template] = ACTIONS(1493), - [anon_sym_delete] = ACTIONS(1493), - [anon_sym_throw] = ACTIONS(1493), - [anon_sym_co_return] = ACTIONS(1493), - [anon_sym_co_yield] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1493), - [anon_sym_catch] = ACTIONS(2284), - [anon_sym_co_await] = ACTIONS(1493), - [anon_sym_new] = ACTIONS(1493), - [sym_this] = ACTIONS(1493), - [sym_nullptr] = ACTIONS(1493), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_FORWARD] = ACTIONS(1493), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1493), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_PS_GET] = ACTIONS(1493), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1493), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1493), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1493), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1493), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1493), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1493), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1493), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1493), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1493), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1493), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1493), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1493), - [anon_sym_MOZ_COLD] = ACTIONS(1493), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1493), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1493), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1493), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1493), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1493), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1493), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1493), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1493), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1493), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1493), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1493), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1493), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1493), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1493), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1493), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1493), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1493), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1493), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1493), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1493), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1493), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_NONNULL] = ACTIONS(1493), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1493), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1493), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1493), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1493), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1493), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_NORETURN] = ACTIONS(1493), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1493), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1493), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1493), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1493), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1493), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1493), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1493), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1493), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1493), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1493), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1493), - [anon_sym_MOZ_RAII] = ACTIONS(1493), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1493), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1493), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1493), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1493), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1493), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1493), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1493), - [sym_raw_string_literal] = ACTIONS(1495), - }, - [689] = { - [sym_function_definition] = STATE(606), - [sym_declaration] = STATE(606), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3013), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1170), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3650), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1371), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym__empty_declaration] = STATE(606), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(847), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(606), - [sym_operator_cast] = STATE(4028), - [sym__constructor_specifiers] = STATE(847), - [sym_operator_cast_definition] = STATE(606), - [sym_operator_cast_declaration] = STATE(606), - [sym_constructor_or_destructor_definition] = STATE(606), - [sym_constructor_or_destructor_declaration] = STATE(606), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_alias_declaration] = STATE(606), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3457), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1357), - [sym_qualified_operator_cast_identifier] = STATE(4028), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(847), + }, + [STATE(218)] = { + [sym_catch_clause] = STATE(218), + [aux_sym_constructor_try_statement_repeat1] = STATE(218), + [sym_identifier] = ACTIONS(1924), + [aux_sym_preproc_include_token1] = ACTIONS(1924), + [aux_sym_preproc_def_token1] = ACTIONS(1924), + [aux_sym_preproc_if_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1924), + [sym_preproc_directive] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_AMP_AMP] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym___extension__] = ACTIONS(1924), + [anon_sym_typedef] = ACTIONS(1924), + [anon_sym_virtual] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym___attribute__] = ACTIONS(1924), + [anon_sym___attribute] = ACTIONS(1924), + [anon_sym_COLON_COLON] = ACTIONS(1926), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1926), + [anon_sym___declspec] = ACTIONS(1924), + [anon_sym___based] = ACTIONS(1924), + [anon_sym___cdecl] = ACTIONS(1924), + [anon_sym___clrcall] = ACTIONS(1924), + [anon_sym___stdcall] = ACTIONS(1924), + [anon_sym___fastcall] = ACTIONS(1924), + [anon_sym___thiscall] = ACTIONS(1924), + [anon_sym___vectorcall] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_RBRACE] = ACTIONS(1926), + [anon_sym_signed] = ACTIONS(1924), + [anon_sym_unsigned] = ACTIONS(1924), + [anon_sym_long] = ACTIONS(1924), + [anon_sym_short] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_register] = ACTIONS(1924), + [anon_sym_inline] = ACTIONS(1924), + [anon_sym___inline] = ACTIONS(1924), + [anon_sym___inline__] = ACTIONS(1924), + [anon_sym___forceinline] = ACTIONS(1924), + [anon_sym_thread_local] = ACTIONS(1924), + [anon_sym___thread] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_constexpr] = ACTIONS(1924), + [anon_sym_volatile] = ACTIONS(1924), + [anon_sym_restrict] = ACTIONS(1924), + [anon_sym___restrict__] = ACTIONS(1924), + [anon_sym__Atomic] = ACTIONS(1924), + [anon_sym__Noreturn] = ACTIONS(1924), + [anon_sym_noreturn] = ACTIONS(1924), + [anon_sym__Nonnull] = ACTIONS(1924), + [anon_sym_mutable] = ACTIONS(1924), + [anon_sym_constinit] = ACTIONS(1924), + [anon_sym_consteval] = ACTIONS(1924), + [anon_sym_alignas] = ACTIONS(1924), + [anon_sym__Alignas] = ACTIONS(1924), + [sym_primitive_type] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_class] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_else] = ACTIONS(1924), + [anon_sym_switch] = ACTIONS(1924), + [anon_sym_case] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_do] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_goto] = ACTIONS(1924), + [anon_sym___try] = ACTIONS(1924), + [anon_sym___leave] = ACTIONS(1924), + [anon_sym_not] = ACTIONS(1924), + [anon_sym_compl] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1924), + [anon_sym___alignof__] = ACTIONS(1924), + [anon_sym___alignof] = ACTIONS(1924), + [anon_sym__alignof] = ACTIONS(1924), + [anon_sym_alignof] = ACTIONS(1924), + [anon_sym__Alignof] = ACTIONS(1924), + [anon_sym_offsetof] = ACTIONS(1924), + [anon_sym__Generic] = ACTIONS(1924), + [anon_sym_asm] = ACTIONS(1924), + [anon_sym___asm__] = ACTIONS(1924), + [anon_sym___asm] = ACTIONS(1924), + [sym_number_literal] = ACTIONS(1926), + [anon_sym_L_SQUOTE] = ACTIONS(1926), + [anon_sym_u_SQUOTE] = ACTIONS(1926), + [anon_sym_U_SQUOTE] = ACTIONS(1926), + [anon_sym_u8_SQUOTE] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_L_DQUOTE] = ACTIONS(1926), + [anon_sym_u_DQUOTE] = ACTIONS(1926), + [anon_sym_U_DQUOTE] = ACTIONS(1926), + [anon_sym_u8_DQUOTE] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [sym_true] = ACTIONS(1924), + [sym_false] = ACTIONS(1924), + [anon_sym_NULL] = ACTIONS(1924), + [anon_sym_nullptr] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1924), + [anon_sym_decltype] = ACTIONS(1924), + [anon_sym_explicit] = ACTIONS(1924), + [anon_sym_typename] = ACTIONS(1924), + [anon_sym_template] = ACTIONS(1924), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_try] = ACTIONS(1924), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_throw] = ACTIONS(1924), + [anon_sym_namespace] = ACTIONS(1924), + [anon_sym_using] = ACTIONS(1924), + [anon_sym_static_assert] = ACTIONS(1924), + [anon_sym_concept] = ACTIONS(1924), + [anon_sym_co_return] = ACTIONS(1924), + [anon_sym_co_yield] = ACTIONS(1924), + [anon_sym_catch] = ACTIONS(2280), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1924), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_requires] = ACTIONS(1924), + [sym_this] = ACTIONS(1924), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_FORWARD] = ACTIONS(1924), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_PS_GET] = ACTIONS(1924), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1924), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1924), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1924), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1924), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1924), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1924), + [anon_sym_MOZ_COLD] = ACTIONS(1924), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1924), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1924), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1924), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1924), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1924), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1924), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1924), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1924), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1924), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1924), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1924), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1924), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1924), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_NONNULL] = ACTIONS(1924), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1924), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1924), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1924), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1924), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1924), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1924), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1924), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1924), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1924), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1924), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1924), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1924), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1924), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1924), + [anon_sym_MOZ_RAII] = ACTIONS(1924), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1924), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1924), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1924), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1924), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1924), + }, + [STATE(219)] = { + [sym_identifier] = ACTIONS(2283), + [aux_sym_preproc_include_token1] = ACTIONS(2283), + [aux_sym_preproc_def_token1] = ACTIONS(2283), + [aux_sym_preproc_if_token1] = ACTIONS(2283), + [aux_sym_preproc_if_token2] = ACTIONS(2283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2283), + [aux_sym_preproc_else_token1] = ACTIONS(2283), + [aux_sym_preproc_elif_token1] = ACTIONS(2283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2283), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2283), + [sym_preproc_directive] = ACTIONS(2283), + [anon_sym_LPAREN2] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(2283), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_AMP_AMP] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2283), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym___extension__] = ACTIONS(2283), + [anon_sym_typedef] = ACTIONS(2283), + [anon_sym_virtual] = ACTIONS(2283), + [anon_sym_extern] = ACTIONS(2283), + [anon_sym___attribute__] = ACTIONS(2283), + [anon_sym___attribute] = ACTIONS(2283), + [anon_sym_COLON_COLON] = ACTIONS(2285), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2285), + [anon_sym___declspec] = ACTIONS(2283), + [anon_sym___based] = ACTIONS(2283), + [anon_sym___cdecl] = ACTIONS(2283), + [anon_sym___clrcall] = ACTIONS(2283), + [anon_sym___stdcall] = ACTIONS(2283), + [anon_sym___fastcall] = ACTIONS(2283), + [anon_sym___thiscall] = ACTIONS(2283), + [anon_sym___vectorcall] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_signed] = ACTIONS(2283), + [anon_sym_unsigned] = ACTIONS(2283), + [anon_sym_long] = ACTIONS(2283), + [anon_sym_short] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_static] = ACTIONS(2283), + [anon_sym_register] = ACTIONS(2283), + [anon_sym_inline] = ACTIONS(2283), + [anon_sym___inline] = ACTIONS(2283), + [anon_sym___inline__] = ACTIONS(2283), + [anon_sym___forceinline] = ACTIONS(2283), + [anon_sym_thread_local] = ACTIONS(2283), + [anon_sym___thread] = ACTIONS(2283), + [anon_sym_const] = ACTIONS(2283), + [anon_sym_constexpr] = ACTIONS(2283), + [anon_sym_volatile] = ACTIONS(2283), + [anon_sym_restrict] = ACTIONS(2283), + [anon_sym___restrict__] = ACTIONS(2283), + [anon_sym__Atomic] = ACTIONS(2283), + [anon_sym__Noreturn] = ACTIONS(2283), + [anon_sym_noreturn] = ACTIONS(2283), + [anon_sym__Nonnull] = ACTIONS(2283), + [anon_sym_mutable] = ACTIONS(2283), + [anon_sym_constinit] = ACTIONS(2283), + [anon_sym_consteval] = ACTIONS(2283), + [anon_sym_alignas] = ACTIONS(2283), + [anon_sym__Alignas] = ACTIONS(2283), + [sym_primitive_type] = ACTIONS(2283), + [anon_sym_enum] = ACTIONS(2283), + [anon_sym_class] = ACTIONS(2283), + [anon_sym_struct] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_if] = ACTIONS(2283), + [anon_sym_switch] = ACTIONS(2283), + [anon_sym_case] = ACTIONS(2283), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_while] = ACTIONS(2283), + [anon_sym_do] = ACTIONS(2283), + [anon_sym_for] = ACTIONS(2283), + [anon_sym_return] = ACTIONS(2283), + [anon_sym_break] = ACTIONS(2283), + [anon_sym_continue] = ACTIONS(2283), + [anon_sym_goto] = ACTIONS(2283), + [anon_sym___try] = ACTIONS(2283), + [anon_sym___leave] = ACTIONS(2283), + [anon_sym_not] = ACTIONS(2283), + [anon_sym_compl] = ACTIONS(2283), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_sizeof] = ACTIONS(2283), + [anon_sym___alignof__] = ACTIONS(2283), + [anon_sym___alignof] = ACTIONS(2283), + [anon_sym__alignof] = ACTIONS(2283), + [anon_sym_alignof] = ACTIONS(2283), + [anon_sym__Alignof] = ACTIONS(2283), + [anon_sym_offsetof] = ACTIONS(2283), + [anon_sym__Generic] = ACTIONS(2283), + [anon_sym_asm] = ACTIONS(2283), + [anon_sym___asm__] = ACTIONS(2283), + [anon_sym___asm] = ACTIONS(2283), + [sym_number_literal] = ACTIONS(2285), + [anon_sym_L_SQUOTE] = ACTIONS(2285), + [anon_sym_u_SQUOTE] = ACTIONS(2285), + [anon_sym_U_SQUOTE] = ACTIONS(2285), + [anon_sym_u8_SQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_L_DQUOTE] = ACTIONS(2285), + [anon_sym_u_DQUOTE] = ACTIONS(2285), + [anon_sym_U_DQUOTE] = ACTIONS(2285), + [anon_sym_u8_DQUOTE] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [sym_true] = ACTIONS(2283), + [sym_false] = ACTIONS(2283), + [anon_sym_NULL] = ACTIONS(2283), + [anon_sym_nullptr] = ACTIONS(2283), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2283), + [anon_sym_decltype] = ACTIONS(2283), + [anon_sym_explicit] = ACTIONS(2283), + [anon_sym_typename] = ACTIONS(2283), + [anon_sym_template] = ACTIONS(2283), + [anon_sym_operator] = ACTIONS(2283), + [anon_sym_try] = ACTIONS(2283), + [anon_sym_delete] = ACTIONS(2283), + [anon_sym_throw] = ACTIONS(2283), + [anon_sym_namespace] = ACTIONS(2283), + [anon_sym_using] = ACTIONS(2283), + [anon_sym_static_assert] = ACTIONS(2283), + [anon_sym_concept] = ACTIONS(2283), + [anon_sym_co_return] = ACTIONS(2283), + [anon_sym_co_yield] = ACTIONS(2283), + [anon_sym_R_DQUOTE] = ACTIONS(2285), + [anon_sym_LR_DQUOTE] = ACTIONS(2285), + [anon_sym_uR_DQUOTE] = ACTIONS(2285), + [anon_sym_UR_DQUOTE] = ACTIONS(2285), + [anon_sym_u8R_DQUOTE] = ACTIONS(2285), + [anon_sym_co_await] = ACTIONS(2283), + [anon_sym_new] = ACTIONS(2283), + [anon_sym_requires] = ACTIONS(2283), + [sym_this] = ACTIONS(2283), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2283), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_FORWARD] = ACTIONS(2283), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2283), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2283), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2283), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2283), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_PS_GET] = ACTIONS(2283), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2283), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2283), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2283), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2283), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2283), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2283), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2283), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2283), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2283), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2283), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2283), + [anon_sym_MOZ_COLD] = ACTIONS(2283), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2283), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2283), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2283), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2283), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2283), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2283), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2283), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2283), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2283), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2283), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2283), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2283), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2283), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2283), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2283), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2283), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2283), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2283), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2283), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2283), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_NONNULL] = ACTIONS(2283), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2283), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2283), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2283), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2283), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2283), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_NORETURN] = ACTIONS(2283), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2283), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2283), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2283), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2283), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2283), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2283), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2283), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2283), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2283), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2283), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2283), + [anon_sym_MOZ_RAII] = ACTIONS(2283), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2283), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2283), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2283), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2283), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2283), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2283), + }, + [STATE(220)] = { [sym_identifier] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), + [aux_sym_preproc_include_token1] = ACTIONS(2287), + [aux_sym_preproc_def_token1] = ACTIONS(2287), + [aux_sym_preproc_if_token1] = ACTIONS(2287), + [aux_sym_preproc_if_token2] = ACTIONS(2287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2287), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2287), + [aux_sym_preproc_else_token1] = ACTIONS(2287), + [aux_sym_preproc_elif_token1] = ACTIONS(2287), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2287), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2287), + [sym_preproc_directive] = ACTIONS(2287), + [anon_sym_LPAREN2] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_AMP_AMP] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym___extension__] = ACTIONS(2287), + [anon_sym_typedef] = ACTIONS(2287), + [anon_sym_virtual] = ACTIONS(2287), + [anon_sym_extern] = ACTIONS(2287), + [anon_sym___attribute__] = ACTIONS(2287), + [anon_sym___attribute] = ACTIONS(2287), [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2289), + [anon_sym___declspec] = ACTIONS(2287), + [anon_sym___based] = ACTIONS(2287), + [anon_sym___cdecl] = ACTIONS(2287), + [anon_sym___clrcall] = ACTIONS(2287), + [anon_sym___stdcall] = ACTIONS(2287), + [anon_sym___fastcall] = ACTIONS(2287), + [anon_sym___thiscall] = ACTIONS(2287), + [anon_sym___vectorcall] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_signed] = ACTIONS(2287), + [anon_sym_unsigned] = ACTIONS(2287), + [anon_sym_long] = ACTIONS(2287), + [anon_sym_short] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(2287), + [anon_sym_static] = ACTIONS(2287), + [anon_sym_register] = ACTIONS(2287), + [anon_sym_inline] = ACTIONS(2287), + [anon_sym___inline] = ACTIONS(2287), + [anon_sym___inline__] = ACTIONS(2287), + [anon_sym___forceinline] = ACTIONS(2287), + [anon_sym_thread_local] = ACTIONS(2287), + [anon_sym___thread] = ACTIONS(2287), + [anon_sym_const] = ACTIONS(2287), + [anon_sym_constexpr] = ACTIONS(2287), + [anon_sym_volatile] = ACTIONS(2287), + [anon_sym_restrict] = ACTIONS(2287), + [anon_sym___restrict__] = ACTIONS(2287), + [anon_sym__Atomic] = ACTIONS(2287), + [anon_sym__Noreturn] = ACTIONS(2287), + [anon_sym_noreturn] = ACTIONS(2287), + [anon_sym__Nonnull] = ACTIONS(2287), + [anon_sym_mutable] = ACTIONS(2287), + [anon_sym_constinit] = ACTIONS(2287), + [anon_sym_consteval] = ACTIONS(2287), + [anon_sym_alignas] = ACTIONS(2287), + [anon_sym__Alignas] = ACTIONS(2287), + [sym_primitive_type] = ACTIONS(2287), + [anon_sym_enum] = ACTIONS(2287), + [anon_sym_class] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(2287), + [anon_sym_union] = ACTIONS(2287), + [anon_sym_if] = ACTIONS(2287), + [anon_sym_switch] = ACTIONS(2287), + [anon_sym_case] = ACTIONS(2287), + [anon_sym_default] = ACTIONS(2287), + [anon_sym_while] = ACTIONS(2287), + [anon_sym_do] = ACTIONS(2287), + [anon_sym_for] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2287), + [anon_sym_break] = ACTIONS(2287), + [anon_sym_continue] = ACTIONS(2287), + [anon_sym_goto] = ACTIONS(2287), + [anon_sym___try] = ACTIONS(2287), + [anon_sym___leave] = ACTIONS(2287), + [anon_sym_not] = ACTIONS(2287), + [anon_sym_compl] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_sizeof] = ACTIONS(2287), + [anon_sym___alignof__] = ACTIONS(2287), + [anon_sym___alignof] = ACTIONS(2287), + [anon_sym__alignof] = ACTIONS(2287), + [anon_sym_alignof] = ACTIONS(2287), + [anon_sym__Alignof] = ACTIONS(2287), + [anon_sym_offsetof] = ACTIONS(2287), + [anon_sym__Generic] = ACTIONS(2287), + [anon_sym_asm] = ACTIONS(2287), + [anon_sym___asm__] = ACTIONS(2287), + [anon_sym___asm] = ACTIONS(2287), + [sym_number_literal] = ACTIONS(2289), + [anon_sym_L_SQUOTE] = ACTIONS(2289), + [anon_sym_u_SQUOTE] = ACTIONS(2289), + [anon_sym_U_SQUOTE] = ACTIONS(2289), + [anon_sym_u8_SQUOTE] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_L_DQUOTE] = ACTIONS(2289), + [anon_sym_u_DQUOTE] = ACTIONS(2289), + [anon_sym_U_DQUOTE] = ACTIONS(2289), + [anon_sym_u8_DQUOTE] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(2289), + [sym_true] = ACTIONS(2287), + [sym_false] = ACTIONS(2287), + [anon_sym_NULL] = ACTIONS(2287), + [anon_sym_nullptr] = ACTIONS(2287), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2287), + [anon_sym_decltype] = ACTIONS(2287), + [anon_sym_explicit] = ACTIONS(2287), + [anon_sym_typename] = ACTIONS(2287), + [anon_sym_template] = ACTIONS(2287), + [anon_sym_operator] = ACTIONS(2287), + [anon_sym_try] = ACTIONS(2287), + [anon_sym_delete] = ACTIONS(2287), + [anon_sym_throw] = ACTIONS(2287), + [anon_sym_namespace] = ACTIONS(2287), + [anon_sym_using] = ACTIONS(2287), + [anon_sym_static_assert] = ACTIONS(2287), + [anon_sym_concept] = ACTIONS(2287), + [anon_sym_co_return] = ACTIONS(2287), + [anon_sym_co_yield] = ACTIONS(2287), + [anon_sym_R_DQUOTE] = ACTIONS(2289), + [anon_sym_LR_DQUOTE] = ACTIONS(2289), + [anon_sym_uR_DQUOTE] = ACTIONS(2289), + [anon_sym_UR_DQUOTE] = ACTIONS(2289), + [anon_sym_u8R_DQUOTE] = ACTIONS(2289), + [anon_sym_co_await] = ACTIONS(2287), + [anon_sym_new] = ACTIONS(2287), + [anon_sym_requires] = ACTIONS(2287), + [sym_this] = ACTIONS(2287), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2287), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_FORWARD] = ACTIONS(2287), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2287), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2287), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2287), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2287), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_PS_GET] = ACTIONS(2287), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2287), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2287), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2287), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2287), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2287), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2287), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2287), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2287), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2287), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2287), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2287), + [anon_sym_MOZ_COLD] = ACTIONS(2287), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2287), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2287), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2287), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2287), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2287), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2287), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2287), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2287), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2287), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2287), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2287), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2287), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2287), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2287), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2287), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2287), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2287), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2287), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2287), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2287), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_NONNULL] = ACTIONS(2287), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2287), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2287), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2287), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2287), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2287), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_NORETURN] = ACTIONS(2287), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2287), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2287), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2287), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2287), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2287), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2287), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2287), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2287), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2287), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2287), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2287), + [anon_sym_MOZ_RAII] = ACTIONS(2287), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2287), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2287), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2287), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2287), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2287), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2287), + }, + [STATE(221)] = { + [sym_identifier] = ACTIONS(2291), + [aux_sym_preproc_include_token1] = ACTIONS(2291), + [aux_sym_preproc_def_token1] = ACTIONS(2291), + [aux_sym_preproc_if_token1] = ACTIONS(2291), + [aux_sym_preproc_if_token2] = ACTIONS(2291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2291), + [aux_sym_preproc_else_token1] = ACTIONS(2291), + [aux_sym_preproc_elif_token1] = ACTIONS(2291), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2291), + [sym_preproc_directive] = ACTIONS(2291), + [anon_sym_LPAREN2] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(2293), + [anon_sym_TILDE] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2291), + [anon_sym_PLUS] = ACTIONS(2291), + [anon_sym_STAR] = ACTIONS(2293), + [anon_sym_AMP_AMP] = ACTIONS(2293), + [anon_sym_AMP] = ACTIONS(2291), + [anon_sym_SEMI] = ACTIONS(2293), + [anon_sym___extension__] = ACTIONS(2291), + [anon_sym_typedef] = ACTIONS(2291), + [anon_sym_virtual] = ACTIONS(2291), + [anon_sym_extern] = ACTIONS(2291), + [anon_sym___attribute__] = ACTIONS(2291), + [anon_sym___attribute] = ACTIONS(2291), + [anon_sym_COLON_COLON] = ACTIONS(2293), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2293), + [anon_sym___declspec] = ACTIONS(2291), + [anon_sym___based] = ACTIONS(2291), + [anon_sym___cdecl] = ACTIONS(2291), + [anon_sym___clrcall] = ACTIONS(2291), + [anon_sym___stdcall] = ACTIONS(2291), + [anon_sym___fastcall] = ACTIONS(2291), + [anon_sym___thiscall] = ACTIONS(2291), + [anon_sym___vectorcall] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2293), + [anon_sym_signed] = ACTIONS(2291), + [anon_sym_unsigned] = ACTIONS(2291), + [anon_sym_long] = ACTIONS(2291), + [anon_sym_short] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_static] = ACTIONS(2291), + [anon_sym_register] = ACTIONS(2291), + [anon_sym_inline] = ACTIONS(2291), + [anon_sym___inline] = ACTIONS(2291), + [anon_sym___inline__] = ACTIONS(2291), + [anon_sym___forceinline] = ACTIONS(2291), + [anon_sym_thread_local] = ACTIONS(2291), + [anon_sym___thread] = ACTIONS(2291), + [anon_sym_const] = ACTIONS(2291), + [anon_sym_constexpr] = ACTIONS(2291), + [anon_sym_volatile] = ACTIONS(2291), + [anon_sym_restrict] = ACTIONS(2291), + [anon_sym___restrict__] = ACTIONS(2291), + [anon_sym__Atomic] = ACTIONS(2291), + [anon_sym__Noreturn] = ACTIONS(2291), + [anon_sym_noreturn] = ACTIONS(2291), + [anon_sym__Nonnull] = ACTIONS(2291), + [anon_sym_mutable] = ACTIONS(2291), + [anon_sym_constinit] = ACTIONS(2291), + [anon_sym_consteval] = ACTIONS(2291), + [anon_sym_alignas] = ACTIONS(2291), + [anon_sym__Alignas] = ACTIONS(2291), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_enum] = ACTIONS(2291), + [anon_sym_class] = ACTIONS(2291), + [anon_sym_struct] = ACTIONS(2291), + [anon_sym_union] = ACTIONS(2291), + [anon_sym_if] = ACTIONS(2291), + [anon_sym_switch] = ACTIONS(2291), + [anon_sym_case] = ACTIONS(2291), + [anon_sym_default] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2291), + [anon_sym_do] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2291), + [anon_sym_break] = ACTIONS(2291), + [anon_sym_continue] = ACTIONS(2291), + [anon_sym_goto] = ACTIONS(2291), + [anon_sym___try] = ACTIONS(2291), + [anon_sym___leave] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2291), + [anon_sym_compl] = ACTIONS(2291), + [anon_sym_DASH_DASH] = ACTIONS(2293), + [anon_sym_PLUS_PLUS] = ACTIONS(2293), + [anon_sym_sizeof] = ACTIONS(2291), + [anon_sym___alignof__] = ACTIONS(2291), + [anon_sym___alignof] = ACTIONS(2291), + [anon_sym__alignof] = ACTIONS(2291), + [anon_sym_alignof] = ACTIONS(2291), + [anon_sym__Alignof] = ACTIONS(2291), + [anon_sym_offsetof] = ACTIONS(2291), + [anon_sym__Generic] = ACTIONS(2291), + [anon_sym_asm] = ACTIONS(2291), + [anon_sym___asm__] = ACTIONS(2291), + [anon_sym___asm] = ACTIONS(2291), + [sym_number_literal] = ACTIONS(2293), + [anon_sym_L_SQUOTE] = ACTIONS(2293), + [anon_sym_u_SQUOTE] = ACTIONS(2293), + [anon_sym_U_SQUOTE] = ACTIONS(2293), + [anon_sym_u8_SQUOTE] = ACTIONS(2293), + [anon_sym_SQUOTE] = ACTIONS(2293), + [anon_sym_L_DQUOTE] = ACTIONS(2293), + [anon_sym_u_DQUOTE] = ACTIONS(2293), + [anon_sym_U_DQUOTE] = ACTIONS(2293), + [anon_sym_u8_DQUOTE] = ACTIONS(2293), + [anon_sym_DQUOTE] = ACTIONS(2293), + [sym_true] = ACTIONS(2291), + [sym_false] = ACTIONS(2291), + [anon_sym_NULL] = ACTIONS(2291), + [anon_sym_nullptr] = ACTIONS(2291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2291), + [anon_sym_decltype] = ACTIONS(2291), + [anon_sym_explicit] = ACTIONS(2291), + [anon_sym_typename] = ACTIONS(2291), [anon_sym_template] = ACTIONS(2291), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(2293), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [690] = { - [sym_function_definition] = STATE(1197), - [sym_declaration] = STATE(1197), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3062), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1174), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3607), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1375), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym__empty_declaration] = STATE(1197), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(840), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(1197), - [sym_operator_cast] = STATE(4176), - [sym__constructor_specifiers] = STATE(840), - [sym_operator_cast_definition] = STATE(1197), - [sym_operator_cast_declaration] = STATE(1197), - [sym_constructor_or_destructor_definition] = STATE(1197), - [sym_constructor_or_destructor_declaration] = STATE(1197), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_alias_declaration] = STATE(1197), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3457), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1357), - [sym_qualified_operator_cast_identifier] = STATE(4176), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(840), - [sym_identifier] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(2130), - [anon_sym_operator] = ACTIONS(117), + [anon_sym_operator] = ACTIONS(2291), + [anon_sym_try] = ACTIONS(2291), + [anon_sym_delete] = ACTIONS(2291), + [anon_sym_throw] = ACTIONS(2291), + [anon_sym_namespace] = ACTIONS(2291), + [anon_sym_using] = ACTIONS(2291), + [anon_sym_static_assert] = ACTIONS(2291), + [anon_sym_concept] = ACTIONS(2291), + [anon_sym_co_return] = ACTIONS(2291), + [anon_sym_co_yield] = ACTIONS(2291), + [anon_sym_R_DQUOTE] = ACTIONS(2293), + [anon_sym_LR_DQUOTE] = ACTIONS(2293), + [anon_sym_uR_DQUOTE] = ACTIONS(2293), + [anon_sym_UR_DQUOTE] = ACTIONS(2293), + [anon_sym_u8R_DQUOTE] = ACTIONS(2293), + [anon_sym_co_await] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(2291), + [anon_sym_requires] = ACTIONS(2291), + [sym_this] = ACTIONS(2291), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2291), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_FORWARD] = ACTIONS(2291), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2291), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2291), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2291), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2291), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_PS_GET] = ACTIONS(2291), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2291), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2291), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2291), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2291), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2291), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2291), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2291), + [anon_sym_MOZ_COLD] = ACTIONS(2291), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2291), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2291), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2291), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2291), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2291), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2291), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2291), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2291), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2291), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2291), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2291), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2291), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2291), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_NONNULL] = ACTIONS(2291), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2291), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2291), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2291), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2291), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2291), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2291), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2291), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2291), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2291), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2291), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2291), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2291), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2291), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2291), + [anon_sym_MOZ_RAII] = ACTIONS(2291), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2291), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2291), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2291), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2291), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2291), + }, + [STATE(222)] = { + [sym_identifier] = ACTIONS(2295), + [aux_sym_preproc_include_token1] = ACTIONS(2295), + [aux_sym_preproc_def_token1] = ACTIONS(2295), + [aux_sym_preproc_if_token1] = ACTIONS(2295), + [aux_sym_preproc_if_token2] = ACTIONS(2295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2295), + [aux_sym_preproc_else_token1] = ACTIONS(2295), + [aux_sym_preproc_elif_token1] = ACTIONS(2295), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2295), + [sym_preproc_directive] = ACTIONS(2295), + [anon_sym_LPAREN2] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2295), + [anon_sym_PLUS] = ACTIONS(2295), + [anon_sym_STAR] = ACTIONS(2297), + [anon_sym_AMP_AMP] = ACTIONS(2297), + [anon_sym_AMP] = ACTIONS(2295), + [anon_sym_SEMI] = ACTIONS(2297), + [anon_sym___extension__] = ACTIONS(2295), + [anon_sym_typedef] = ACTIONS(2295), + [anon_sym_virtual] = ACTIONS(2295), + [anon_sym_extern] = ACTIONS(2295), + [anon_sym___attribute__] = ACTIONS(2295), + [anon_sym___attribute] = ACTIONS(2295), + [anon_sym_COLON_COLON] = ACTIONS(2297), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2297), + [anon_sym___declspec] = ACTIONS(2295), + [anon_sym___based] = ACTIONS(2295), + [anon_sym___cdecl] = ACTIONS(2295), + [anon_sym___clrcall] = ACTIONS(2295), + [anon_sym___stdcall] = ACTIONS(2295), + [anon_sym___fastcall] = ACTIONS(2295), + [anon_sym___thiscall] = ACTIONS(2295), + [anon_sym___vectorcall] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2297), + [anon_sym_signed] = ACTIONS(2295), + [anon_sym_unsigned] = ACTIONS(2295), + [anon_sym_long] = ACTIONS(2295), + [anon_sym_short] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_static] = ACTIONS(2295), + [anon_sym_register] = ACTIONS(2295), + [anon_sym_inline] = ACTIONS(2295), + [anon_sym___inline] = ACTIONS(2295), + [anon_sym___inline__] = ACTIONS(2295), + [anon_sym___forceinline] = ACTIONS(2295), + [anon_sym_thread_local] = ACTIONS(2295), + [anon_sym___thread] = ACTIONS(2295), + [anon_sym_const] = ACTIONS(2295), + [anon_sym_constexpr] = ACTIONS(2295), + [anon_sym_volatile] = ACTIONS(2295), + [anon_sym_restrict] = ACTIONS(2295), + [anon_sym___restrict__] = ACTIONS(2295), + [anon_sym__Atomic] = ACTIONS(2295), + [anon_sym__Noreturn] = ACTIONS(2295), + [anon_sym_noreturn] = ACTIONS(2295), + [anon_sym__Nonnull] = ACTIONS(2295), + [anon_sym_mutable] = ACTIONS(2295), + [anon_sym_constinit] = ACTIONS(2295), + [anon_sym_consteval] = ACTIONS(2295), + [anon_sym_alignas] = ACTIONS(2295), + [anon_sym__Alignas] = ACTIONS(2295), + [sym_primitive_type] = ACTIONS(2295), + [anon_sym_enum] = ACTIONS(2295), + [anon_sym_class] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(2295), + [anon_sym_union] = ACTIONS(2295), + [anon_sym_if] = ACTIONS(2295), + [anon_sym_switch] = ACTIONS(2295), + [anon_sym_case] = ACTIONS(2295), + [anon_sym_default] = ACTIONS(2295), + [anon_sym_while] = ACTIONS(2295), + [anon_sym_do] = ACTIONS(2295), + [anon_sym_for] = ACTIONS(2295), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_break] = ACTIONS(2295), + [anon_sym_continue] = ACTIONS(2295), + [anon_sym_goto] = ACTIONS(2295), + [anon_sym___try] = ACTIONS(2295), + [anon_sym___leave] = ACTIONS(2295), + [anon_sym_not] = ACTIONS(2295), + [anon_sym_compl] = ACTIONS(2295), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_sizeof] = ACTIONS(2295), + [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(2295), + [anon_sym__Generic] = ACTIONS(2295), + [anon_sym_asm] = ACTIONS(2295), + [anon_sym___asm__] = ACTIONS(2295), + [anon_sym___asm] = ACTIONS(2295), + [sym_number_literal] = ACTIONS(2297), + [anon_sym_L_SQUOTE] = ACTIONS(2297), + [anon_sym_u_SQUOTE] = ACTIONS(2297), + [anon_sym_U_SQUOTE] = ACTIONS(2297), + [anon_sym_u8_SQUOTE] = ACTIONS(2297), + [anon_sym_SQUOTE] = ACTIONS(2297), + [anon_sym_L_DQUOTE] = ACTIONS(2297), + [anon_sym_u_DQUOTE] = ACTIONS(2297), + [anon_sym_U_DQUOTE] = ACTIONS(2297), + [anon_sym_u8_DQUOTE] = ACTIONS(2297), + [anon_sym_DQUOTE] = ACTIONS(2297), + [sym_true] = ACTIONS(2295), + [sym_false] = ACTIONS(2295), + [anon_sym_NULL] = ACTIONS(2295), + [anon_sym_nullptr] = ACTIONS(2295), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2295), + [anon_sym_decltype] = ACTIONS(2295), + [anon_sym_explicit] = ACTIONS(2295), + [anon_sym_typename] = ACTIONS(2295), + [anon_sym_template] = ACTIONS(2295), + [anon_sym_operator] = ACTIONS(2295), + [anon_sym_try] = ACTIONS(2295), + [anon_sym_delete] = ACTIONS(2295), + [anon_sym_throw] = ACTIONS(2295), + [anon_sym_namespace] = ACTIONS(2295), [anon_sym_using] = ACTIONS(2295), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [691] = { - [sym_function_definition] = STATE(1202), - [sym_declaration] = STATE(1202), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3082), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1168), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3646), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1373), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym__empty_declaration] = STATE(1202), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(846), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(1202), - [sym_operator_cast] = STATE(4029), - [sym__constructor_specifiers] = STATE(846), - [sym_operator_cast_definition] = STATE(1202), - [sym_operator_cast_declaration] = STATE(1202), - [sym_constructor_or_destructor_definition] = STATE(1202), - [sym_constructor_or_destructor_declaration] = STATE(1202), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_alias_declaration] = STATE(1202), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3457), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1357), - [sym_qualified_operator_cast_identifier] = STATE(4029), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(846), - [sym_identifier] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(2168), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [692] = { - [sym_function_definition] = STATE(641), - [sym_declaration] = STATE(641), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3058), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1169), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3613), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1374), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym__empty_declaration] = STATE(641), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(842), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(641), - [sym_operator_cast] = STATE(4067), - [sym__constructor_specifiers] = STATE(842), - [sym_operator_cast_definition] = STATE(641), - [sym_operator_cast_declaration] = STATE(641), - [sym_constructor_or_destructor_definition] = STATE(641), - [sym_constructor_or_destructor_declaration] = STATE(641), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_alias_declaration] = STATE(641), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3457), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1357), - [sym_qualified_operator_cast_identifier] = STATE(4067), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(842), - [sym_identifier] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), + [anon_sym_static_assert] = ACTIONS(2295), + [anon_sym_concept] = ACTIONS(2295), + [anon_sym_co_return] = ACTIONS(2295), + [anon_sym_co_yield] = ACTIONS(2295), + [anon_sym_R_DQUOTE] = ACTIONS(2297), + [anon_sym_LR_DQUOTE] = ACTIONS(2297), + [anon_sym_uR_DQUOTE] = ACTIONS(2297), + [anon_sym_UR_DQUOTE] = ACTIONS(2297), + [anon_sym_u8R_DQUOTE] = ACTIONS(2297), + [anon_sym_co_await] = ACTIONS(2295), + [anon_sym_new] = ACTIONS(2295), + [anon_sym_requires] = ACTIONS(2295), + [sym_this] = ACTIONS(2295), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2295), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_FORWARD] = ACTIONS(2295), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2295), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2295), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2295), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2295), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_PS_GET] = ACTIONS(2295), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2295), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2295), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2295), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2295), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2295), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2295), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2295), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2295), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2295), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2295), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2295), + [anon_sym_MOZ_COLD] = ACTIONS(2295), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2295), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2295), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2295), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2295), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2295), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2295), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2295), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2295), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2295), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2295), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2295), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2295), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2295), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2295), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2295), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2295), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2295), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2295), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2295), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2295), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_NONNULL] = ACTIONS(2295), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2295), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2295), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2295), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2295), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2295), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_NORETURN] = ACTIONS(2295), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2295), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2295), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2295), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2295), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2295), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2295), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2295), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2295), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2295), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2295), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2295), + [anon_sym_MOZ_RAII] = ACTIONS(2295), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2295), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2295), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2295), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2295), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2295), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2295), + }, + [STATE(223)] = { + [sym_identifier] = ACTIONS(2299), + [aux_sym_preproc_include_token1] = ACTIONS(2299), + [aux_sym_preproc_def_token1] = ACTIONS(2299), + [aux_sym_preproc_if_token1] = ACTIONS(2299), + [aux_sym_preproc_if_token2] = ACTIONS(2299), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2299), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2299), + [aux_sym_preproc_else_token1] = ACTIONS(2299), + [aux_sym_preproc_elif_token1] = ACTIONS(2299), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2299), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2299), + [sym_preproc_directive] = ACTIONS(2299), + [anon_sym_LPAREN2] = ACTIONS(2301), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2301), + [anon_sym_AMP_AMP] = ACTIONS(2301), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym___extension__] = ACTIONS(2299), + [anon_sym_typedef] = ACTIONS(2299), + [anon_sym_virtual] = ACTIONS(2299), + [anon_sym_extern] = ACTIONS(2299), + [anon_sym___attribute__] = ACTIONS(2299), + [anon_sym___attribute] = ACTIONS(2299), + [anon_sym_COLON_COLON] = ACTIONS(2301), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2301), + [anon_sym___declspec] = ACTIONS(2299), + [anon_sym___based] = ACTIONS(2299), + [anon_sym___cdecl] = ACTIONS(2299), + [anon_sym___clrcall] = ACTIONS(2299), + [anon_sym___stdcall] = ACTIONS(2299), + [anon_sym___fastcall] = ACTIONS(2299), + [anon_sym___thiscall] = ACTIONS(2299), + [anon_sym___vectorcall] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2301), + [anon_sym_signed] = ACTIONS(2299), + [anon_sym_unsigned] = ACTIONS(2299), + [anon_sym_long] = ACTIONS(2299), + [anon_sym_short] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2299), + [anon_sym_register] = ACTIONS(2299), + [anon_sym_inline] = ACTIONS(2299), + [anon_sym___inline] = ACTIONS(2299), + [anon_sym___inline__] = ACTIONS(2299), + [anon_sym___forceinline] = ACTIONS(2299), + [anon_sym_thread_local] = ACTIONS(2299), + [anon_sym___thread] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [anon_sym_constexpr] = ACTIONS(2299), + [anon_sym_volatile] = ACTIONS(2299), + [anon_sym_restrict] = ACTIONS(2299), + [anon_sym___restrict__] = ACTIONS(2299), + [anon_sym__Atomic] = ACTIONS(2299), + [anon_sym__Noreturn] = ACTIONS(2299), + [anon_sym_noreturn] = ACTIONS(2299), + [anon_sym__Nonnull] = ACTIONS(2299), + [anon_sym_mutable] = ACTIONS(2299), + [anon_sym_constinit] = ACTIONS(2299), + [anon_sym_consteval] = ACTIONS(2299), + [anon_sym_alignas] = ACTIONS(2299), + [anon_sym__Alignas] = ACTIONS(2299), + [sym_primitive_type] = ACTIONS(2299), + [anon_sym_enum] = ACTIONS(2299), + [anon_sym_class] = ACTIONS(2299), + [anon_sym_struct] = ACTIONS(2299), + [anon_sym_union] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_switch] = ACTIONS(2299), + [anon_sym_case] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(2299), + [anon_sym_while] = ACTIONS(2299), + [anon_sym_do] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_goto] = ACTIONS(2299), + [anon_sym___try] = ACTIONS(2299), + [anon_sym___leave] = ACTIONS(2299), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_compl] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2301), + [anon_sym_PLUS_PLUS] = ACTIONS(2301), + [anon_sym_sizeof] = ACTIONS(2299), + [anon_sym___alignof__] = ACTIONS(2299), + [anon_sym___alignof] = ACTIONS(2299), + [anon_sym__alignof] = ACTIONS(2299), + [anon_sym_alignof] = ACTIONS(2299), + [anon_sym__Alignof] = ACTIONS(2299), + [anon_sym_offsetof] = ACTIONS(2299), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2299), + [anon_sym___asm__] = ACTIONS(2299), + [anon_sym___asm] = ACTIONS(2299), + [sym_number_literal] = ACTIONS(2301), + [anon_sym_L_SQUOTE] = ACTIONS(2301), + [anon_sym_u_SQUOTE] = ACTIONS(2301), + [anon_sym_U_SQUOTE] = ACTIONS(2301), + [anon_sym_u8_SQUOTE] = ACTIONS(2301), + [anon_sym_SQUOTE] = ACTIONS(2301), + [anon_sym_L_DQUOTE] = ACTIONS(2301), + [anon_sym_u_DQUOTE] = ACTIONS(2301), + [anon_sym_U_DQUOTE] = ACTIONS(2301), + [anon_sym_u8_DQUOTE] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(2301), + [sym_true] = ACTIONS(2299), + [sym_false] = ACTIONS(2299), + [anon_sym_NULL] = ACTIONS(2299), + [anon_sym_nullptr] = ACTIONS(2299), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2299), + [anon_sym_decltype] = ACTIONS(2299), + [anon_sym_explicit] = ACTIONS(2299), + [anon_sym_typename] = ACTIONS(2299), [anon_sym_template] = ACTIONS(2299), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(2301), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [693] = { - [sym_function_definition] = STATE(1000), - [sym_declaration] = STATE(1000), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(2944), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1119), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3615), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1366), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym__empty_declaration] = STATE(1000), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(841), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(1000), - [sym_operator_cast] = STATE(4161), - [sym__constructor_specifiers] = STATE(841), - [sym_operator_cast_definition] = STATE(1000), - [sym_operator_cast_declaration] = STATE(1000), - [sym_constructor_or_destructor_definition] = STATE(1000), - [sym_constructor_or_destructor_declaration] = STATE(1000), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_alias_declaration] = STATE(1000), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3457), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1357), - [sym_qualified_operator_cast_identifier] = STATE(4161), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(841), - [sym_identifier] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1955), - [anon_sym_operator] = ACTIONS(117), + [anon_sym_operator] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(2299), + [anon_sym_delete] = ACTIONS(2299), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_namespace] = ACTIONS(2299), + [anon_sym_using] = ACTIONS(2299), + [anon_sym_static_assert] = ACTIONS(2299), + [anon_sym_concept] = ACTIONS(2299), + [anon_sym_co_return] = ACTIONS(2299), + [anon_sym_co_yield] = ACTIONS(2299), + [anon_sym_R_DQUOTE] = ACTIONS(2301), + [anon_sym_LR_DQUOTE] = ACTIONS(2301), + [anon_sym_uR_DQUOTE] = ACTIONS(2301), + [anon_sym_UR_DQUOTE] = ACTIONS(2301), + [anon_sym_u8R_DQUOTE] = ACTIONS(2301), + [anon_sym_co_await] = ACTIONS(2299), + [anon_sym_new] = ACTIONS(2299), + [anon_sym_requires] = ACTIONS(2299), + [sym_this] = ACTIONS(2299), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2299), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_FORWARD] = ACTIONS(2299), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2299), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2299), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2299), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2299), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_PS_GET] = ACTIONS(2299), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2299), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2299), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2299), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2299), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2299), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2299), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2299), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2299), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2299), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2299), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2299), + [anon_sym_MOZ_COLD] = ACTIONS(2299), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2299), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2299), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2299), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2299), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2299), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2299), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2299), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2299), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2299), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2299), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2299), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2299), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2299), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2299), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2299), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2299), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2299), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2299), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2299), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2299), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_NONNULL] = ACTIONS(2299), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2299), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2299), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2299), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2299), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2299), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_NORETURN] = ACTIONS(2299), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2299), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2299), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2299), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2299), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2299), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2299), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2299), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2299), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2299), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2299), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2299), + [anon_sym_MOZ_RAII] = ACTIONS(2299), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2299), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2299), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2299), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2299), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2299), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2299), + }, + [STATE(224)] = { + [sym_identifier] = ACTIONS(2303), + [aux_sym_preproc_include_token1] = ACTIONS(2303), + [aux_sym_preproc_def_token1] = ACTIONS(2303), + [aux_sym_preproc_if_token1] = ACTIONS(2303), + [aux_sym_preproc_if_token2] = ACTIONS(2303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2303), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2303), + [aux_sym_preproc_else_token1] = ACTIONS(2303), + [aux_sym_preproc_elif_token1] = ACTIONS(2303), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2303), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2303), + [sym_preproc_directive] = ACTIONS(2303), + [anon_sym_LPAREN2] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2305), + [anon_sym_AMP_AMP] = ACTIONS(2305), + [anon_sym_AMP] = ACTIONS(2303), + [anon_sym_SEMI] = ACTIONS(2305), + [anon_sym___extension__] = ACTIONS(2303), + [anon_sym_typedef] = ACTIONS(2303), + [anon_sym_virtual] = ACTIONS(2303), + [anon_sym_extern] = ACTIONS(2303), + [anon_sym___attribute__] = ACTIONS(2303), + [anon_sym___attribute] = ACTIONS(2303), + [anon_sym_COLON_COLON] = ACTIONS(2305), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2305), + [anon_sym___declspec] = ACTIONS(2303), + [anon_sym___based] = ACTIONS(2303), + [anon_sym___cdecl] = ACTIONS(2303), + [anon_sym___clrcall] = ACTIONS(2303), + [anon_sym___stdcall] = ACTIONS(2303), + [anon_sym___fastcall] = ACTIONS(2303), + [anon_sym___thiscall] = ACTIONS(2303), + [anon_sym___vectorcall] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_signed] = ACTIONS(2303), + [anon_sym_unsigned] = ACTIONS(2303), + [anon_sym_long] = ACTIONS(2303), + [anon_sym_short] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_static] = ACTIONS(2303), + [anon_sym_register] = ACTIONS(2303), + [anon_sym_inline] = ACTIONS(2303), + [anon_sym___inline] = ACTIONS(2303), + [anon_sym___inline__] = ACTIONS(2303), + [anon_sym___forceinline] = ACTIONS(2303), + [anon_sym_thread_local] = ACTIONS(2303), + [anon_sym___thread] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [anon_sym_constexpr] = ACTIONS(2303), + [anon_sym_volatile] = ACTIONS(2303), + [anon_sym_restrict] = ACTIONS(2303), + [anon_sym___restrict__] = ACTIONS(2303), + [anon_sym__Atomic] = ACTIONS(2303), + [anon_sym__Noreturn] = ACTIONS(2303), + [anon_sym_noreturn] = ACTIONS(2303), + [anon_sym__Nonnull] = ACTIONS(2303), + [anon_sym_mutable] = ACTIONS(2303), + [anon_sym_constinit] = ACTIONS(2303), + [anon_sym_consteval] = ACTIONS(2303), + [anon_sym_alignas] = ACTIONS(2303), + [anon_sym__Alignas] = ACTIONS(2303), + [sym_primitive_type] = ACTIONS(2303), + [anon_sym_enum] = ACTIONS(2303), + [anon_sym_class] = ACTIONS(2303), + [anon_sym_struct] = ACTIONS(2303), + [anon_sym_union] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_switch] = ACTIONS(2303), + [anon_sym_case] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(2303), + [anon_sym_do] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_break] = ACTIONS(2303), + [anon_sym_continue] = ACTIONS(2303), + [anon_sym_goto] = ACTIONS(2303), + [anon_sym___try] = ACTIONS(2303), + [anon_sym___leave] = ACTIONS(2303), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2305), + [anon_sym_PLUS_PLUS] = ACTIONS(2305), + [anon_sym_sizeof] = ACTIONS(2303), + [anon_sym___alignof__] = ACTIONS(2303), + [anon_sym___alignof] = ACTIONS(2303), + [anon_sym__alignof] = ACTIONS(2303), + [anon_sym_alignof] = ACTIONS(2303), + [anon_sym__Alignof] = ACTIONS(2303), + [anon_sym_offsetof] = ACTIONS(2303), + [anon_sym__Generic] = ACTIONS(2303), + [anon_sym_asm] = ACTIONS(2303), + [anon_sym___asm__] = ACTIONS(2303), + [anon_sym___asm] = ACTIONS(2303), + [sym_number_literal] = ACTIONS(2305), + [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(2305), + [anon_sym_u_DQUOTE] = ACTIONS(2305), + [anon_sym_U_DQUOTE] = ACTIONS(2305), + [anon_sym_u8_DQUOTE] = ACTIONS(2305), + [anon_sym_DQUOTE] = ACTIONS(2305), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [anon_sym_NULL] = ACTIONS(2303), + [anon_sym_nullptr] = ACTIONS(2303), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2303), + [anon_sym_decltype] = ACTIONS(2303), + [anon_sym_explicit] = ACTIONS(2303), + [anon_sym_typename] = ACTIONS(2303), + [anon_sym_template] = ACTIONS(2303), + [anon_sym_operator] = ACTIONS(2303), + [anon_sym_try] = ACTIONS(2303), + [anon_sym_delete] = ACTIONS(2303), + [anon_sym_throw] = ACTIONS(2303), + [anon_sym_namespace] = ACTIONS(2303), [anon_sym_using] = ACTIONS(2303), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [694] = { - [sym_function_definition] = STATE(195), - [sym_declaration] = STATE(195), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3059), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1137), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3639), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1370), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym__empty_declaration] = STATE(195), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(838), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(195), - [sym_operator_cast] = STATE(4142), - [sym__constructor_specifiers] = STATE(838), - [sym_operator_cast_definition] = STATE(195), - [sym_operator_cast_declaration] = STATE(195), - [sym_constructor_or_destructor_definition] = STATE(195), - [sym_constructor_or_destructor_declaration] = STATE(195), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_alias_declaration] = STATE(195), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3457), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1357), - [sym_qualified_operator_cast_identifier] = STATE(4142), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(838), - [sym_identifier] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(2305), - [anon_sym_operator] = ACTIONS(117), + [anon_sym_static_assert] = ACTIONS(2303), + [anon_sym_concept] = ACTIONS(2303), + [anon_sym_co_return] = ACTIONS(2303), + [anon_sym_co_yield] = ACTIONS(2303), + [anon_sym_R_DQUOTE] = ACTIONS(2305), + [anon_sym_LR_DQUOTE] = ACTIONS(2305), + [anon_sym_uR_DQUOTE] = ACTIONS(2305), + [anon_sym_UR_DQUOTE] = ACTIONS(2305), + [anon_sym_u8R_DQUOTE] = ACTIONS(2305), + [anon_sym_co_await] = ACTIONS(2303), + [anon_sym_new] = ACTIONS(2303), + [anon_sym_requires] = ACTIONS(2303), + [sym_this] = ACTIONS(2303), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2303), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_FORWARD] = ACTIONS(2303), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2303), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2303), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2303), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2303), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_PS_GET] = ACTIONS(2303), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2303), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2303), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2303), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2303), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2303), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2303), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2303), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2303), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2303), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2303), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2303), + [anon_sym_MOZ_COLD] = ACTIONS(2303), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2303), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2303), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2303), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2303), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2303), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2303), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2303), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2303), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2303), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2303), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2303), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2303), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2303), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2303), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2303), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2303), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2303), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2303), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2303), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2303), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_NONNULL] = ACTIONS(2303), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2303), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2303), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2303), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2303), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2303), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_NORETURN] = ACTIONS(2303), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2303), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2303), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2303), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2303), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2303), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2303), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2303), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2303), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2303), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2303), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2303), + [anon_sym_MOZ_RAII] = ACTIONS(2303), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2303), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2303), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2303), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2303), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2303), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2303), + }, + [STATE(225)] = { + [sym_identifier] = ACTIONS(2307), + [aux_sym_preproc_include_token1] = ACTIONS(2307), + [aux_sym_preproc_def_token1] = ACTIONS(2307), + [aux_sym_preproc_if_token1] = ACTIONS(2307), + [aux_sym_preproc_if_token2] = ACTIONS(2307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2307), + [aux_sym_preproc_else_token1] = ACTIONS(2307), + [aux_sym_preproc_elif_token1] = ACTIONS(2307), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2307), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2307), + [sym_preproc_directive] = ACTIONS(2307), + [anon_sym_LPAREN2] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2309), + [anon_sym_TILDE] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_typedef] = ACTIONS(2307), + [anon_sym_virtual] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym___attribute__] = ACTIONS(2307), + [anon_sym___attribute] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2309), + [anon_sym___declspec] = ACTIONS(2307), + [anon_sym___based] = ACTIONS(2307), + [anon_sym___cdecl] = ACTIONS(2307), + [anon_sym___clrcall] = ACTIONS(2307), + [anon_sym___stdcall] = ACTIONS(2307), + [anon_sym___fastcall] = ACTIONS(2307), + [anon_sym___thiscall] = ACTIONS(2307), + [anon_sym___vectorcall] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_signed] = ACTIONS(2307), + [anon_sym_unsigned] = ACTIONS(2307), + [anon_sym_long] = ACTIONS(2307), + [anon_sym_short] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_register] = ACTIONS(2307), + [anon_sym_inline] = ACTIONS(2307), + [anon_sym___inline] = ACTIONS(2307), + [anon_sym___inline__] = ACTIONS(2307), + [anon_sym___forceinline] = ACTIONS(2307), + [anon_sym_thread_local] = ACTIONS(2307), + [anon_sym___thread] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_constexpr] = ACTIONS(2307), + [anon_sym_volatile] = ACTIONS(2307), + [anon_sym_restrict] = ACTIONS(2307), + [anon_sym___restrict__] = ACTIONS(2307), + [anon_sym__Atomic] = ACTIONS(2307), + [anon_sym__Noreturn] = ACTIONS(2307), + [anon_sym_noreturn] = ACTIONS(2307), + [anon_sym__Nonnull] = ACTIONS(2307), + [anon_sym_mutable] = ACTIONS(2307), + [anon_sym_constinit] = ACTIONS(2307), + [anon_sym_consteval] = ACTIONS(2307), + [anon_sym_alignas] = ACTIONS(2307), + [anon_sym__Alignas] = ACTIONS(2307), + [sym_primitive_type] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_class] = ACTIONS(2307), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_switch] = ACTIONS(2307), + [anon_sym_case] = ACTIONS(2307), + [anon_sym_default] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_goto] = ACTIONS(2307), + [anon_sym___try] = ACTIONS(2307), + [anon_sym___leave] = ACTIONS(2307), + [anon_sym_not] = ACTIONS(2307), + [anon_sym_compl] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2307), + [anon_sym___alignof__] = ACTIONS(2307), + [anon_sym___alignof] = ACTIONS(2307), + [anon_sym__alignof] = ACTIONS(2307), + [anon_sym_alignof] = ACTIONS(2307), + [anon_sym__Alignof] = ACTIONS(2307), + [anon_sym_offsetof] = ACTIONS(2307), + [anon_sym__Generic] = ACTIONS(2307), + [anon_sym_asm] = ACTIONS(2307), + [anon_sym___asm__] = ACTIONS(2307), + [anon_sym___asm] = ACTIONS(2307), + [sym_number_literal] = ACTIONS(2309), + [anon_sym_L_SQUOTE] = ACTIONS(2309), + [anon_sym_u_SQUOTE] = ACTIONS(2309), + [anon_sym_U_SQUOTE] = ACTIONS(2309), + [anon_sym_u8_SQUOTE] = ACTIONS(2309), + [anon_sym_SQUOTE] = ACTIONS(2309), + [anon_sym_L_DQUOTE] = ACTIONS(2309), + [anon_sym_u_DQUOTE] = ACTIONS(2309), + [anon_sym_U_DQUOTE] = ACTIONS(2309), + [anon_sym_u8_DQUOTE] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2309), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [anon_sym_NULL] = ACTIONS(2307), + [anon_sym_nullptr] = ACTIONS(2307), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2307), + [anon_sym_decltype] = ACTIONS(2307), + [anon_sym_explicit] = ACTIONS(2307), + [anon_sym_typename] = ACTIONS(2307), + [anon_sym_template] = ACTIONS(2307), + [anon_sym_operator] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2307), + [anon_sym_delete] = ACTIONS(2307), + [anon_sym_throw] = ACTIONS(2307), + [anon_sym_namespace] = ACTIONS(2307), [anon_sym_using] = ACTIONS(2307), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [695] = { - [sym_function_definition] = STATE(514), - [sym_declaration] = STATE(514), - [sym__declaration_modifiers] = STATE(1285), - [sym__declaration_specifiers] = STATE(3003), - [sym_attribute_specifier] = STATE(1285), - [sym_attribute_declaration] = STATE(1285), - [sym_ms_declspec_modifier] = STATE(1285), - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_call_modifier] = STATE(1101), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3645), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1285), - [sym_type_qualifier] = STATE(1285), - [sym__type_specifier] = STATE(1381), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym__empty_declaration] = STATE(514), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1285), - [sym_explicit_function_specifier] = STATE(848), - [sym_dependent_type] = STATE(1358), - [sym_template_declaration] = STATE(514), - [sym_operator_cast] = STATE(4149), - [sym__constructor_specifiers] = STATE(848), - [sym_operator_cast_definition] = STATE(514), - [sym_operator_cast_declaration] = STATE(514), - [sym_constructor_or_destructor_definition] = STATE(514), - [sym_constructor_or_destructor_declaration] = STATE(514), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_alias_declaration] = STATE(514), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3457), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1357), - [sym_qualified_operator_cast_identifier] = STATE(4149), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [aux_sym_operator_cast_definition_repeat1] = STATE(848), - [sym_identifier] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [anon_sym_explicit] = ACTIONS(109), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(2309), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(2311), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [696] = { - [sym_identifier] = ACTIONS(1514), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym___attribute__] = ACTIONS(1514), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1516), - [anon_sym___declspec] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_register] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym_thread_local] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_volatile] = ACTIONS(1514), - [anon_sym_restrict] = ACTIONS(1514), - [anon_sym__Atomic] = ACTIONS(1514), - [anon_sym_mutable] = ACTIONS(1514), - [anon_sym_constexpr] = ACTIONS(1514), - [anon_sym_signed] = ACTIONS(1514), - [anon_sym_unsigned] = ACTIONS(1514), - [anon_sym_long] = ACTIONS(1514), - [anon_sym_short] = ACTIONS(1514), - [sym_primitive_type] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_class] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_else] = ACTIONS(1514), - [anon_sym_switch] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_do] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_goto] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1514), - [sym_number_literal] = ACTIONS(1516), - [anon_sym_L_SQUOTE] = ACTIONS(1516), - [anon_sym_u_SQUOTE] = ACTIONS(1516), - [anon_sym_U_SQUOTE] = ACTIONS(1516), - [anon_sym_u8_SQUOTE] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1516), - [anon_sym_L_DQUOTE] = ACTIONS(1516), - [anon_sym_u_DQUOTE] = ACTIONS(1516), - [anon_sym_U_DQUOTE] = ACTIONS(1516), - [anon_sym_u8_DQUOTE] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [sym_null] = ACTIONS(1514), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1514), - [anon_sym_virtual] = ACTIONS(1514), - [sym_auto] = ACTIONS(1514), - [anon_sym_typename] = ACTIONS(1514), - [anon_sym_template] = ACTIONS(1514), - [anon_sym_delete] = ACTIONS(1514), - [anon_sym_throw] = ACTIONS(1514), - [anon_sym_co_return] = ACTIONS(1514), - [anon_sym_co_yield] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [anon_sym_catch] = ACTIONS(1514), - [anon_sym_co_await] = ACTIONS(1514), - [anon_sym_new] = ACTIONS(1514), - [sym_this] = ACTIONS(1514), - [sym_nullptr] = ACTIONS(1514), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_FORWARD] = ACTIONS(1514), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1514), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_PS_GET] = ACTIONS(1514), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1514), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1514), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1514), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1514), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1514), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1514), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1514), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1514), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1514), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1514), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1514), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1514), - [anon_sym_MOZ_COLD] = ACTIONS(1514), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1514), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1514), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1514), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1514), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1514), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1514), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1514), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1514), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1514), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1514), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1514), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1514), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1514), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1514), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1514), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1514), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1514), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1514), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1514), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1514), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1514), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_NONNULL] = ACTIONS(1514), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1514), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1514), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1514), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1514), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1514), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_NORETURN] = ACTIONS(1514), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1514), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1514), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1514), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1514), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1514), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1514), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1514), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1514), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1514), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1514), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1514), - [anon_sym_MOZ_RAII] = ACTIONS(1514), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1514), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1514), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1514), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1514), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1514), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1514), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1514), - [sym_raw_string_literal] = ACTIONS(1516), - }, - [697] = { - [sym_identifier] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1531), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym___attribute__] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1531), - [anon_sym___declspec] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [anon_sym_thread_local] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym__Atomic] = ACTIONS(1529), - [anon_sym_mutable] = ACTIONS(1529), - [anon_sym_constexpr] = ACTIONS(1529), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_class] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_else] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_goto] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_sizeof] = ACTIONS(1529), - [sym_number_literal] = ACTIONS(1531), - [anon_sym_L_SQUOTE] = ACTIONS(1531), - [anon_sym_u_SQUOTE] = ACTIONS(1531), - [anon_sym_U_SQUOTE] = ACTIONS(1531), - [anon_sym_u8_SQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1529), - [sym_false] = ACTIONS(1529), - [sym_null] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1529), - [anon_sym_virtual] = ACTIONS(1529), - [sym_auto] = ACTIONS(1529), - [anon_sym_typename] = ACTIONS(1529), - [anon_sym_template] = ACTIONS(1529), - [anon_sym_delete] = ACTIONS(1529), - [anon_sym_throw] = ACTIONS(1529), - [anon_sym_co_return] = ACTIONS(1529), - [anon_sym_co_yield] = ACTIONS(1529), - [anon_sym_try] = ACTIONS(1529), - [anon_sym_catch] = ACTIONS(1529), - [anon_sym_co_await] = ACTIONS(1529), - [anon_sym_new] = ACTIONS(1529), - [sym_this] = ACTIONS(1529), - [sym_nullptr] = ACTIONS(1529), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_FORWARD] = ACTIONS(1529), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1529), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_PS_GET] = ACTIONS(1529), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1529), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1529), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1529), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1529), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1529), - [anon_sym_MOZ_COLD] = ACTIONS(1529), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1529), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1529), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1529), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1529), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1529), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1529), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1529), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1529), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1529), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1529), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1529), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1529), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_RAII] = ACTIONS(1529), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1529), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1529), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1529), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1529), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1529), - [sym_raw_string_literal] = ACTIONS(1531), - }, - [698] = { - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_typedef] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym___attribute__] = ACTIONS(1518), - [anon_sym_COLON_COLON] = ACTIONS(1520), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), - [anon_sym___declspec] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_inline] = ACTIONS(1518), - [anon_sym_thread_local] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_volatile] = ACTIONS(1518), - [anon_sym_restrict] = ACTIONS(1518), - [anon_sym__Atomic] = ACTIONS(1518), - [anon_sym_mutable] = ACTIONS(1518), - [anon_sym_constexpr] = ACTIONS(1518), - [anon_sym_signed] = ACTIONS(1518), - [anon_sym_unsigned] = ACTIONS(1518), - [anon_sym_long] = ACTIONS(1518), - [anon_sym_short] = ACTIONS(1518), - [sym_primitive_type] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_goto] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_PLUS_PLUS] = ACTIONS(1520), - [anon_sym_sizeof] = ACTIONS(1518), - [sym_number_literal] = ACTIONS(1520), - [anon_sym_L_SQUOTE] = ACTIONS(1520), - [anon_sym_u_SQUOTE] = ACTIONS(1520), - [anon_sym_U_SQUOTE] = ACTIONS(1520), - [anon_sym_u8_SQUOTE] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1520), - [anon_sym_L_DQUOTE] = ACTIONS(1520), - [anon_sym_u_DQUOTE] = ACTIONS(1520), - [anon_sym_U_DQUOTE] = ACTIONS(1520), - [anon_sym_u8_DQUOTE] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), - [sym_null] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1518), - [anon_sym_virtual] = ACTIONS(1518), - [sym_auto] = ACTIONS(1518), - [anon_sym_typename] = ACTIONS(1518), - [anon_sym_template] = ACTIONS(1518), - [anon_sym_delete] = ACTIONS(1518), - [anon_sym_throw] = ACTIONS(1518), - [anon_sym_co_return] = ACTIONS(1518), - [anon_sym_co_yield] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_co_await] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [sym_this] = ACTIONS(1518), - [sym_nullptr] = ACTIONS(1518), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_FORWARD] = ACTIONS(1518), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1518), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_PS_GET] = ACTIONS(1518), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1518), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1518), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1518), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1518), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1518), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1518), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1518), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1518), - [anon_sym_MOZ_COLD] = ACTIONS(1518), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1518), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1518), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1518), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1518), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1518), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1518), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1518), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1518), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1518), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1518), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1518), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1518), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1518), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_NONNULL] = ACTIONS(1518), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1518), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1518), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1518), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1518), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1518), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1518), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1518), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1518), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1518), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1518), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1518), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1518), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1518), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1518), - [anon_sym_MOZ_RAII] = ACTIONS(1518), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1518), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1518), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1518), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1518), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1518), - [sym_raw_string_literal] = ACTIONS(1520), - }, - [699] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [700] = { - [sym_identifier] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_typedef] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym___attribute__] = ACTIONS(1585), - [anon_sym_COLON_COLON] = ACTIONS(1587), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1587), - [anon_sym___declspec] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_register] = ACTIONS(1585), - [anon_sym_inline] = ACTIONS(1585), - [anon_sym_thread_local] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_volatile] = ACTIONS(1585), - [anon_sym_restrict] = ACTIONS(1585), - [anon_sym__Atomic] = ACTIONS(1585), - [anon_sym_mutable] = ACTIONS(1585), - [anon_sym_constexpr] = ACTIONS(1585), - [anon_sym_signed] = ACTIONS(1585), - [anon_sym_unsigned] = ACTIONS(1585), - [anon_sym_long] = ACTIONS(1585), - [anon_sym_short] = ACTIONS(1585), - [sym_primitive_type] = ACTIONS(1585), - [anon_sym_enum] = ACTIONS(1585), - [anon_sym_class] = ACTIONS(1585), - [anon_sym_struct] = ACTIONS(1585), - [anon_sym_union] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_else] = ACTIONS(1585), - [anon_sym_switch] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_goto] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1587), - [anon_sym_u_SQUOTE] = ACTIONS(1587), - [anon_sym_U_SQUOTE] = ACTIONS(1587), - [anon_sym_u8_SQUOTE] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1587), - [anon_sym_L_DQUOTE] = ACTIONS(1587), - [anon_sym_u_DQUOTE] = ACTIONS(1587), - [anon_sym_U_DQUOTE] = ACTIONS(1587), - [anon_sym_u8_DQUOTE] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym_true] = ACTIONS(1585), - [sym_false] = ACTIONS(1585), - [sym_null] = ACTIONS(1585), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1585), - [anon_sym_virtual] = ACTIONS(1585), - [sym_auto] = ACTIONS(1585), - [anon_sym_typename] = ACTIONS(1585), - [anon_sym_template] = ACTIONS(1585), - [anon_sym_delete] = ACTIONS(1585), - [anon_sym_throw] = ACTIONS(1585), - [anon_sym_co_return] = ACTIONS(1585), - [anon_sym_co_yield] = ACTIONS(1585), - [anon_sym_try] = ACTIONS(1585), - [anon_sym_co_await] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1585), - [sym_this] = ACTIONS(1585), - [sym_nullptr] = ACTIONS(1585), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_FORWARD] = ACTIONS(1585), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1585), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_PS_GET] = ACTIONS(1585), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1585), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1585), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1585), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1585), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1585), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1585), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1585), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1585), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1585), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1585), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1585), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1585), - [anon_sym_MOZ_COLD] = ACTIONS(1585), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1585), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1585), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1585), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1585), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1585), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1585), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1585), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1585), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1585), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1585), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1585), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1585), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1585), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1585), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1585), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1585), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1585), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1585), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1585), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1585), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1585), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_NONNULL] = ACTIONS(1585), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1585), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1585), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1585), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1585), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1585), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_NORETURN] = ACTIONS(1585), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1585), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1585), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1585), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1585), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1585), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1585), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1585), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1585), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1585), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1585), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1585), - [anon_sym_MOZ_RAII] = ACTIONS(1585), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1585), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1585), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1585), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1585), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1585), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1585), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1585), - [sym_raw_string_literal] = ACTIONS(1587), - }, - [701] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [702] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [703] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [704] = { - [sym_identifier] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_BANG] = ACTIONS(1575), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1573), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_STAR] = ACTIONS(1575), - [anon_sym_AMP] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_typedef] = ACTIONS(1573), - [anon_sym_extern] = ACTIONS(1573), - [anon_sym___attribute__] = ACTIONS(1573), - [anon_sym_COLON_COLON] = ACTIONS(1575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1575), - [anon_sym___declspec] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1573), - [anon_sym_static] = ACTIONS(1573), - [anon_sym_register] = ACTIONS(1573), - [anon_sym_inline] = ACTIONS(1573), - [anon_sym_thread_local] = ACTIONS(1573), - [anon_sym_const] = ACTIONS(1573), - [anon_sym_volatile] = ACTIONS(1573), - [anon_sym_restrict] = ACTIONS(1573), - [anon_sym__Atomic] = ACTIONS(1573), - [anon_sym_mutable] = ACTIONS(1573), - [anon_sym_constexpr] = ACTIONS(1573), - [anon_sym_signed] = ACTIONS(1573), - [anon_sym_unsigned] = ACTIONS(1573), - [anon_sym_long] = ACTIONS(1573), - [anon_sym_short] = ACTIONS(1573), - [sym_primitive_type] = ACTIONS(1573), - [anon_sym_enum] = ACTIONS(1573), - [anon_sym_class] = ACTIONS(1573), - [anon_sym_struct] = ACTIONS(1573), - [anon_sym_union] = ACTIONS(1573), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_else] = ACTIONS(1573), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1573), - [anon_sym_do] = ACTIONS(1573), - [anon_sym_for] = ACTIONS(1573), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1573), - [anon_sym_continue] = ACTIONS(1573), - [anon_sym_goto] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_sizeof] = ACTIONS(1573), - [sym_number_literal] = ACTIONS(1575), - [anon_sym_L_SQUOTE] = ACTIONS(1575), - [anon_sym_u_SQUOTE] = ACTIONS(1575), - [anon_sym_U_SQUOTE] = ACTIONS(1575), - [anon_sym_u8_SQUOTE] = ACTIONS(1575), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_L_DQUOTE] = ACTIONS(1575), - [anon_sym_u_DQUOTE] = ACTIONS(1575), - [anon_sym_U_DQUOTE] = ACTIONS(1575), - [anon_sym_u8_DQUOTE] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym_true] = ACTIONS(1573), - [sym_false] = ACTIONS(1573), - [sym_null] = ACTIONS(1573), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1573), - [anon_sym_virtual] = ACTIONS(1573), - [sym_auto] = ACTIONS(1573), - [anon_sym_typename] = ACTIONS(1573), - [anon_sym_template] = ACTIONS(1573), - [anon_sym_delete] = ACTIONS(1573), - [anon_sym_throw] = ACTIONS(1573), - [anon_sym_co_return] = ACTIONS(1573), - [anon_sym_co_yield] = ACTIONS(1573), - [anon_sym_try] = ACTIONS(1573), - [anon_sym_co_await] = ACTIONS(1573), - [anon_sym_new] = ACTIONS(1573), - [sym_this] = ACTIONS(1573), - [sym_nullptr] = ACTIONS(1573), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_FORWARD] = ACTIONS(1573), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1573), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_PS_GET] = ACTIONS(1573), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1573), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1573), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1573), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1573), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1573), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1573), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1573), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1573), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1573), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1573), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1573), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1573), - [anon_sym_MOZ_COLD] = ACTIONS(1573), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1573), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1573), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1573), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1573), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1573), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1573), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1573), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1573), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1573), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1573), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1573), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1573), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1573), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1573), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1573), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1573), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1573), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1573), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1573), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1573), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1573), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_NONNULL] = ACTIONS(1573), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1573), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1573), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1573), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1573), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1573), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_NORETURN] = ACTIONS(1573), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1573), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1573), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1573), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1573), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1573), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1573), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1573), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1573), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1573), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1573), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1573), - [anon_sym_MOZ_RAII] = ACTIONS(1573), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1573), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1573), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1573), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1573), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1573), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1573), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1573), - [sym_raw_string_literal] = ACTIONS(1575), - }, - [705] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [706] = { - [sym_identifier] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1555), - [anon_sym_TILDE] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1555), - [anon_sym_SEMI] = ACTIONS(1555), - [anon_sym_typedef] = ACTIONS(1553), - [anon_sym_extern] = ACTIONS(1553), - [anon_sym___attribute__] = ACTIONS(1553), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1555), - [anon_sym___declspec] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_static] = ACTIONS(1553), - [anon_sym_register] = ACTIONS(1553), - [anon_sym_inline] = ACTIONS(1553), - [anon_sym_thread_local] = ACTIONS(1553), - [anon_sym_const] = ACTIONS(1553), - [anon_sym_volatile] = ACTIONS(1553), - [anon_sym_restrict] = ACTIONS(1553), - [anon_sym__Atomic] = ACTIONS(1553), - [anon_sym_mutable] = ACTIONS(1553), - [anon_sym_constexpr] = ACTIONS(1553), - [anon_sym_signed] = ACTIONS(1553), - [anon_sym_unsigned] = ACTIONS(1553), - [anon_sym_long] = ACTIONS(1553), - [anon_sym_short] = ACTIONS(1553), - [sym_primitive_type] = ACTIONS(1553), - [anon_sym_enum] = ACTIONS(1553), - [anon_sym_class] = ACTIONS(1553), - [anon_sym_struct] = ACTIONS(1553), - [anon_sym_union] = ACTIONS(1553), - [anon_sym_if] = ACTIONS(1553), - [anon_sym_else] = ACTIONS(1553), - [anon_sym_switch] = ACTIONS(1553), - [anon_sym_while] = ACTIONS(1553), - [anon_sym_do] = ACTIONS(1553), - [anon_sym_for] = ACTIONS(1553), - [anon_sym_return] = ACTIONS(1553), - [anon_sym_break] = ACTIONS(1553), - [anon_sym_continue] = ACTIONS(1553), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_DASH_DASH] = ACTIONS(1555), - [anon_sym_PLUS_PLUS] = ACTIONS(1555), - [anon_sym_sizeof] = ACTIONS(1553), - [sym_number_literal] = ACTIONS(1555), - [anon_sym_L_SQUOTE] = ACTIONS(1555), - [anon_sym_u_SQUOTE] = ACTIONS(1555), - [anon_sym_U_SQUOTE] = ACTIONS(1555), - [anon_sym_u8_SQUOTE] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1555), - [anon_sym_L_DQUOTE] = ACTIONS(1555), - [anon_sym_u_DQUOTE] = ACTIONS(1555), - [anon_sym_U_DQUOTE] = ACTIONS(1555), - [anon_sym_u8_DQUOTE] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(1555), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1553), - [anon_sym_virtual] = ACTIONS(1553), - [sym_auto] = ACTIONS(1553), - [anon_sym_typename] = ACTIONS(1553), - [anon_sym_template] = ACTIONS(1553), - [anon_sym_delete] = ACTIONS(1553), - [anon_sym_throw] = ACTIONS(1553), - [anon_sym_co_return] = ACTIONS(1553), - [anon_sym_co_yield] = ACTIONS(1553), - [anon_sym_try] = ACTIONS(1553), - [anon_sym_co_await] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1553), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_FORWARD] = ACTIONS(1553), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1553), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_PS_GET] = ACTIONS(1553), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1553), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1553), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1553), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1553), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1553), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1553), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1553), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1553), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1553), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1553), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1553), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1553), - [anon_sym_MOZ_COLD] = ACTIONS(1553), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1553), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1553), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1553), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1553), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1553), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1553), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1553), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1553), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1553), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1553), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1553), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1553), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1553), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1553), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1553), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1553), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1553), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1553), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1553), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1553), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1553), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_NONNULL] = ACTIONS(1553), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1553), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1553), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1553), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1553), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1553), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_NORETURN] = ACTIONS(1553), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1553), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1553), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1553), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1553), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1553), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1553), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1553), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1553), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1553), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1553), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1553), - [anon_sym_MOZ_RAII] = ACTIONS(1553), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1553), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1553), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1553), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1553), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1553), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1553), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1553), - [sym_raw_string_literal] = ACTIONS(1555), - }, - [707] = { - [sym_identifier] = ACTIONS(1549), - [anon_sym_LPAREN2] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_typedef] = ACTIONS(1549), - [anon_sym_extern] = ACTIONS(1549), - [anon_sym___attribute__] = ACTIONS(1549), - [anon_sym_COLON_COLON] = ACTIONS(1551), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1551), - [anon_sym___declspec] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_static] = ACTIONS(1549), - [anon_sym_register] = ACTIONS(1549), - [anon_sym_inline] = ACTIONS(1549), - [anon_sym_thread_local] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [anon_sym_volatile] = ACTIONS(1549), - [anon_sym_restrict] = ACTIONS(1549), - [anon_sym__Atomic] = ACTIONS(1549), - [anon_sym_mutable] = ACTIONS(1549), - [anon_sym_constexpr] = ACTIONS(1549), - [anon_sym_signed] = ACTIONS(1549), - [anon_sym_unsigned] = ACTIONS(1549), - [anon_sym_long] = ACTIONS(1549), - [anon_sym_short] = ACTIONS(1549), - [sym_primitive_type] = ACTIONS(1549), - [anon_sym_enum] = ACTIONS(1549), - [anon_sym_class] = ACTIONS(1549), - [anon_sym_struct] = ACTIONS(1549), - [anon_sym_union] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_else] = ACTIONS(1549), - [anon_sym_switch] = ACTIONS(1549), - [anon_sym_while] = ACTIONS(1549), - [anon_sym_do] = ACTIONS(1549), - [anon_sym_for] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1549), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1549), - [anon_sym_goto] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_PLUS_PLUS] = ACTIONS(1551), - [anon_sym_sizeof] = ACTIONS(1549), - [sym_number_literal] = ACTIONS(1551), - [anon_sym_L_SQUOTE] = ACTIONS(1551), - [anon_sym_u_SQUOTE] = ACTIONS(1551), - [anon_sym_U_SQUOTE] = ACTIONS(1551), - [anon_sym_u8_SQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1549), - [sym_false] = ACTIONS(1549), - [sym_null] = ACTIONS(1549), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1549), - [anon_sym_virtual] = ACTIONS(1549), - [sym_auto] = ACTIONS(1549), - [anon_sym_typename] = ACTIONS(1549), - [anon_sym_template] = ACTIONS(1549), - [anon_sym_delete] = ACTIONS(1549), - [anon_sym_throw] = ACTIONS(1549), - [anon_sym_co_return] = ACTIONS(1549), - [anon_sym_co_yield] = ACTIONS(1549), - [anon_sym_try] = ACTIONS(1549), - [anon_sym_co_await] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1549), - [sym_this] = ACTIONS(1549), - [sym_nullptr] = ACTIONS(1549), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_FORWARD] = ACTIONS(1549), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1549), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_PS_GET] = ACTIONS(1549), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1549), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1549), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1549), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1549), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1549), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1549), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1549), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1549), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1549), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1549), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1549), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1549), - [anon_sym_MOZ_COLD] = ACTIONS(1549), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1549), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1549), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1549), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1549), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1549), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1549), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1549), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1549), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1549), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1549), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1549), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1549), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1549), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1549), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1549), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1549), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1549), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1549), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1549), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1549), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1549), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_NONNULL] = ACTIONS(1549), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1549), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1549), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1549), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1549), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1549), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_NORETURN] = ACTIONS(1549), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1549), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1549), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1549), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1549), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1549), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1549), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1549), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1549), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1549), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1549), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1549), - [anon_sym_MOZ_RAII] = ACTIONS(1549), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1549), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1549), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1549), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1549), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1549), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1549), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1549), - [sym_raw_string_literal] = ACTIONS(1551), - }, - [708] = { - [sym_identifier] = ACTIONS(1625), - [anon_sym_LPAREN2] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1627), - [anon_sym_TILDE] = ACTIONS(1627), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_STAR] = ACTIONS(1627), - [anon_sym_AMP] = ACTIONS(1627), - [anon_sym_SEMI] = ACTIONS(1627), - [anon_sym_typedef] = ACTIONS(1625), - [anon_sym_extern] = ACTIONS(1625), - [anon_sym___attribute__] = ACTIONS(1625), - [anon_sym_COLON_COLON] = ACTIONS(1627), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1627), - [anon_sym___declspec] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_LBRACK] = ACTIONS(1625), - [anon_sym_static] = ACTIONS(1625), - [anon_sym_register] = ACTIONS(1625), - [anon_sym_inline] = ACTIONS(1625), - [anon_sym_thread_local] = ACTIONS(1625), - [anon_sym_const] = ACTIONS(1625), - [anon_sym_volatile] = ACTIONS(1625), - [anon_sym_restrict] = ACTIONS(1625), - [anon_sym__Atomic] = ACTIONS(1625), - [anon_sym_mutable] = ACTIONS(1625), - [anon_sym_constexpr] = ACTIONS(1625), - [anon_sym_signed] = ACTIONS(1625), - [anon_sym_unsigned] = ACTIONS(1625), - [anon_sym_long] = ACTIONS(1625), - [anon_sym_short] = ACTIONS(1625), - [sym_primitive_type] = ACTIONS(1625), - [anon_sym_enum] = ACTIONS(1625), - [anon_sym_class] = ACTIONS(1625), - [anon_sym_struct] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1625), - [anon_sym_else] = ACTIONS(1625), - [anon_sym_switch] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1625), - [anon_sym_do] = ACTIONS(1625), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1625), - [anon_sym_break] = ACTIONS(1625), - [anon_sym_continue] = ACTIONS(1625), - [anon_sym_goto] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1625), - [sym_number_literal] = ACTIONS(1627), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1627), - [anon_sym_u_DQUOTE] = ACTIONS(1627), - [anon_sym_U_DQUOTE] = ACTIONS(1627), - [anon_sym_u8_DQUOTE] = ACTIONS(1627), - [anon_sym_DQUOTE] = ACTIONS(1627), - [sym_true] = ACTIONS(1625), - [sym_false] = ACTIONS(1625), - [sym_null] = ACTIONS(1625), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1625), - [anon_sym_virtual] = ACTIONS(1625), - [sym_auto] = ACTIONS(1625), - [anon_sym_typename] = ACTIONS(1625), - [anon_sym_template] = ACTIONS(1625), - [anon_sym_delete] = ACTIONS(1625), - [anon_sym_throw] = ACTIONS(1625), - [anon_sym_co_return] = ACTIONS(1625), - [anon_sym_co_yield] = ACTIONS(1625), - [anon_sym_try] = ACTIONS(1625), - [anon_sym_co_await] = ACTIONS(1625), - [anon_sym_new] = ACTIONS(1625), - [sym_this] = ACTIONS(1625), - [sym_nullptr] = ACTIONS(1625), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_FORWARD] = ACTIONS(1625), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1625), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_PS_GET] = ACTIONS(1625), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1625), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1625), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1625), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1625), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1625), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1625), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1625), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1625), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1625), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1625), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1625), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1625), - [anon_sym_MOZ_COLD] = ACTIONS(1625), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1625), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1625), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1625), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1625), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1625), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1625), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1625), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1625), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1625), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1625), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1625), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1625), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1625), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1625), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1625), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1625), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1625), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1625), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1625), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1625), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1625), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_NONNULL] = ACTIONS(1625), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1625), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1625), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1625), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1625), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1625), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_NORETURN] = ACTIONS(1625), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1625), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1625), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1625), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1625), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1625), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1625), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1625), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1625), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1625), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1625), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1625), - [anon_sym_MOZ_RAII] = ACTIONS(1625), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1625), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1625), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1625), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1625), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1625), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1625), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1625), - [sym_raw_string_literal] = ACTIONS(1627), - }, - [709] = { - [sym_identifier] = ACTIONS(1545), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1547), - [anon_sym_TILDE] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1547), - [anon_sym_AMP] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(1547), - [anon_sym_typedef] = ACTIONS(1545), - [anon_sym_extern] = ACTIONS(1545), - [anon_sym___attribute__] = ACTIONS(1545), - [anon_sym_COLON_COLON] = ACTIONS(1547), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1547), - [anon_sym___declspec] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_static] = ACTIONS(1545), - [anon_sym_register] = ACTIONS(1545), - [anon_sym_inline] = ACTIONS(1545), - [anon_sym_thread_local] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_volatile] = ACTIONS(1545), - [anon_sym_restrict] = ACTIONS(1545), - [anon_sym__Atomic] = ACTIONS(1545), - [anon_sym_mutable] = ACTIONS(1545), - [anon_sym_constexpr] = ACTIONS(1545), - [anon_sym_signed] = ACTIONS(1545), - [anon_sym_unsigned] = ACTIONS(1545), - [anon_sym_long] = ACTIONS(1545), - [anon_sym_short] = ACTIONS(1545), - [sym_primitive_type] = ACTIONS(1545), - [anon_sym_enum] = ACTIONS(1545), - [anon_sym_class] = ACTIONS(1545), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_union] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_else] = ACTIONS(1545), - [anon_sym_switch] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_do] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_goto] = ACTIONS(1545), - [anon_sym_DASH_DASH] = ACTIONS(1547), - [anon_sym_PLUS_PLUS] = ACTIONS(1547), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1547), - [anon_sym_u_SQUOTE] = ACTIONS(1547), - [anon_sym_U_SQUOTE] = ACTIONS(1547), - [anon_sym_u8_SQUOTE] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_L_DQUOTE] = ACTIONS(1547), - [anon_sym_u_DQUOTE] = ACTIONS(1547), - [anon_sym_U_DQUOTE] = ACTIONS(1547), - [anon_sym_u8_DQUOTE] = ACTIONS(1547), - [anon_sym_DQUOTE] = ACTIONS(1547), - [sym_true] = ACTIONS(1545), - [sym_false] = ACTIONS(1545), - [sym_null] = ACTIONS(1545), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1545), - [anon_sym_virtual] = ACTIONS(1545), - [sym_auto] = ACTIONS(1545), - [anon_sym_typename] = ACTIONS(1545), - [anon_sym_template] = ACTIONS(1545), - [anon_sym_delete] = ACTIONS(1545), - [anon_sym_throw] = ACTIONS(1545), - [anon_sym_co_return] = ACTIONS(1545), - [anon_sym_co_yield] = ACTIONS(1545), - [anon_sym_try] = ACTIONS(1545), - [anon_sym_co_await] = ACTIONS(1545), - [anon_sym_new] = ACTIONS(1545), - [sym_this] = ACTIONS(1545), - [sym_nullptr] = ACTIONS(1545), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_FORWARD] = ACTIONS(1545), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1545), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_PS_GET] = ACTIONS(1545), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1545), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1545), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1545), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1545), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1545), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1545), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1545), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1545), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1545), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1545), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1545), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1545), - [anon_sym_MOZ_COLD] = ACTIONS(1545), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1545), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1545), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1545), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1545), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1545), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1545), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1545), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1545), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1545), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1545), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1545), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1545), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1545), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1545), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1545), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1545), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1545), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1545), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1545), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1545), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1545), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_NONNULL] = ACTIONS(1545), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1545), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1545), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1545), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1545), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1545), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_NORETURN] = ACTIONS(1545), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1545), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1545), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1545), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1545), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1545), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1545), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1545), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1545), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1545), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1545), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1545), - [anon_sym_MOZ_RAII] = ACTIONS(1545), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1545), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1545), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1545), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1545), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1545), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1545), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1545), - [sym_raw_string_literal] = ACTIONS(1547), - }, - [710] = { - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_AMP] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_typedef] = ACTIONS(1645), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym___attribute__] = ACTIONS(1645), - [anon_sym_COLON_COLON] = ACTIONS(1647), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1647), - [anon_sym___declspec] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_register] = ACTIONS(1645), - [anon_sym_inline] = ACTIONS(1645), - [anon_sym_thread_local] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_volatile] = ACTIONS(1645), - [anon_sym_restrict] = ACTIONS(1645), - [anon_sym__Atomic] = ACTIONS(1645), - [anon_sym_mutable] = ACTIONS(1645), - [anon_sym_constexpr] = ACTIONS(1645), - [anon_sym_signed] = ACTIONS(1645), - [anon_sym_unsigned] = ACTIONS(1645), - [anon_sym_long] = ACTIONS(1645), - [anon_sym_short] = ACTIONS(1645), - [sym_primitive_type] = ACTIONS(1645), - [anon_sym_enum] = ACTIONS(1645), - [anon_sym_class] = ACTIONS(1645), - [anon_sym_struct] = ACTIONS(1645), - [anon_sym_union] = ACTIONS(1645), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_switch] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_goto] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1645), - [sym_number_literal] = ACTIONS(1647), - [anon_sym_L_SQUOTE] = ACTIONS(1647), - [anon_sym_u_SQUOTE] = ACTIONS(1647), - [anon_sym_U_SQUOTE] = ACTIONS(1647), - [anon_sym_u8_SQUOTE] = ACTIONS(1647), - [anon_sym_SQUOTE] = ACTIONS(1647), - [anon_sym_L_DQUOTE] = ACTIONS(1647), - [anon_sym_u_DQUOTE] = ACTIONS(1647), - [anon_sym_U_DQUOTE] = ACTIONS(1647), - [anon_sym_u8_DQUOTE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym_true] = ACTIONS(1645), - [sym_false] = ACTIONS(1645), - [sym_null] = ACTIONS(1645), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1645), - [anon_sym_virtual] = ACTIONS(1645), - [sym_auto] = ACTIONS(1645), - [anon_sym_typename] = ACTIONS(1645), - [anon_sym_template] = ACTIONS(1645), - [anon_sym_delete] = ACTIONS(1645), - [anon_sym_throw] = ACTIONS(1645), - [anon_sym_co_return] = ACTIONS(1645), - [anon_sym_co_yield] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1645), - [anon_sym_co_await] = ACTIONS(1645), - [anon_sym_new] = ACTIONS(1645), - [sym_this] = ACTIONS(1645), - [sym_nullptr] = ACTIONS(1645), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_FORWARD] = ACTIONS(1645), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1645), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_PS_GET] = ACTIONS(1645), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1645), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1645), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1645), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1645), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1645), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1645), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1645), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1645), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1645), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1645), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1645), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1645), - [anon_sym_MOZ_COLD] = ACTIONS(1645), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1645), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1645), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1645), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1645), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1645), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1645), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1645), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1645), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1645), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1645), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1645), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1645), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1645), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1645), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1645), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1645), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1645), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1645), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1645), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1645), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1645), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_NONNULL] = ACTIONS(1645), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1645), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1645), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1645), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1645), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1645), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_NORETURN] = ACTIONS(1645), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1645), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1645), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1645), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1645), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1645), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1645), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1645), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1645), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1645), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1645), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1645), - [anon_sym_MOZ_RAII] = ACTIONS(1645), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1645), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1645), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1645), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1645), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1645), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1645), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1645), - [sym_raw_string_literal] = ACTIONS(1647), - }, - [711] = { - [sym_identifier] = ACTIONS(1541), - [anon_sym_LPAREN2] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_typedef] = ACTIONS(1541), - [anon_sym_extern] = ACTIONS(1541), - [anon_sym___attribute__] = ACTIONS(1541), - [anon_sym_COLON_COLON] = ACTIONS(1543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1543), - [anon_sym___declspec] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1541), - [anon_sym_static] = ACTIONS(1541), - [anon_sym_register] = ACTIONS(1541), - [anon_sym_inline] = ACTIONS(1541), - [anon_sym_thread_local] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_volatile] = ACTIONS(1541), - [anon_sym_restrict] = ACTIONS(1541), - [anon_sym__Atomic] = ACTIONS(1541), - [anon_sym_mutable] = ACTIONS(1541), - [anon_sym_constexpr] = ACTIONS(1541), - [anon_sym_signed] = ACTIONS(1541), - [anon_sym_unsigned] = ACTIONS(1541), - [anon_sym_long] = ACTIONS(1541), - [anon_sym_short] = ACTIONS(1541), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_enum] = ACTIONS(1541), - [anon_sym_class] = ACTIONS(1541), - [anon_sym_struct] = ACTIONS(1541), - [anon_sym_union] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1541), - [anon_sym_else] = ACTIONS(1541), - [anon_sym_switch] = ACTIONS(1541), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1541), - [anon_sym_for] = ACTIONS(1541), - [anon_sym_return] = ACTIONS(1541), - [anon_sym_break] = ACTIONS(1541), - [anon_sym_continue] = ACTIONS(1541), - [anon_sym_goto] = ACTIONS(1541), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1541), - [sym_number_literal] = ACTIONS(1543), - [anon_sym_L_SQUOTE] = ACTIONS(1543), - [anon_sym_u_SQUOTE] = ACTIONS(1543), - [anon_sym_U_SQUOTE] = ACTIONS(1543), - [anon_sym_u8_SQUOTE] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_L_DQUOTE] = ACTIONS(1543), - [anon_sym_u_DQUOTE] = ACTIONS(1543), - [anon_sym_U_DQUOTE] = ACTIONS(1543), - [anon_sym_u8_DQUOTE] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1543), - [sym_true] = ACTIONS(1541), - [sym_false] = ACTIONS(1541), - [sym_null] = ACTIONS(1541), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1541), - [anon_sym_virtual] = ACTIONS(1541), - [sym_auto] = ACTIONS(1541), - [anon_sym_typename] = ACTIONS(1541), - [anon_sym_template] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_throw] = ACTIONS(1541), - [anon_sym_co_return] = ACTIONS(1541), - [anon_sym_co_yield] = ACTIONS(1541), - [anon_sym_try] = ACTIONS(1541), - [anon_sym_co_await] = ACTIONS(1541), - [anon_sym_new] = ACTIONS(1541), - [sym_this] = ACTIONS(1541), - [sym_nullptr] = ACTIONS(1541), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_FORWARD] = ACTIONS(1541), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1541), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_PS_GET] = ACTIONS(1541), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1541), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1541), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1541), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1541), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1541), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1541), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1541), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1541), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1541), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1541), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1541), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1541), - [anon_sym_MOZ_COLD] = ACTIONS(1541), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1541), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1541), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1541), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1541), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1541), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1541), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1541), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1541), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1541), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1541), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1541), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1541), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1541), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1541), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1541), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1541), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1541), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1541), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1541), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1541), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1541), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_NONNULL] = ACTIONS(1541), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1541), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1541), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1541), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1541), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1541), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_NORETURN] = ACTIONS(1541), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1541), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1541), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1541), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1541), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1541), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1541), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1541), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1541), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1541), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1541), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1541), - [anon_sym_MOZ_RAII] = ACTIONS(1541), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1541), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1541), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1541), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1541), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1541), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1541), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1541), - [sym_raw_string_literal] = ACTIONS(1543), - }, - [712] = { - [sym_identifier] = ACTIONS(1537), - [anon_sym_LPAREN2] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_TILDE] = ACTIONS(1539), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1539), - [anon_sym_AMP] = ACTIONS(1539), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_typedef] = ACTIONS(1537), - [anon_sym_extern] = ACTIONS(1537), - [anon_sym___attribute__] = ACTIONS(1537), - [anon_sym_COLON_COLON] = ACTIONS(1539), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_register] = ACTIONS(1537), - [anon_sym_inline] = ACTIONS(1537), - [anon_sym_thread_local] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_volatile] = ACTIONS(1537), - [anon_sym_restrict] = ACTIONS(1537), - [anon_sym__Atomic] = ACTIONS(1537), - [anon_sym_mutable] = ACTIONS(1537), - [anon_sym_constexpr] = ACTIONS(1537), - [anon_sym_signed] = ACTIONS(1537), - [anon_sym_unsigned] = ACTIONS(1537), - [anon_sym_long] = ACTIONS(1537), - [anon_sym_short] = ACTIONS(1537), - [sym_primitive_type] = ACTIONS(1537), - [anon_sym_enum] = ACTIONS(1537), - [anon_sym_class] = ACTIONS(1537), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_else] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_do] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_goto] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1539), - [anon_sym_PLUS_PLUS] = ACTIONS(1539), - [anon_sym_sizeof] = ACTIONS(1537), - [sym_number_literal] = ACTIONS(1539), - [anon_sym_L_SQUOTE] = ACTIONS(1539), - [anon_sym_u_SQUOTE] = ACTIONS(1539), - [anon_sym_U_SQUOTE] = ACTIONS(1539), - [anon_sym_u8_SQUOTE] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [anon_sym_L_DQUOTE] = ACTIONS(1539), - [anon_sym_u_DQUOTE] = ACTIONS(1539), - [anon_sym_U_DQUOTE] = ACTIONS(1539), - [anon_sym_u8_DQUOTE] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1539), - [sym_true] = ACTIONS(1537), - [sym_false] = ACTIONS(1537), - [sym_null] = ACTIONS(1537), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1537), - [anon_sym_virtual] = ACTIONS(1537), - [sym_auto] = ACTIONS(1537), - [anon_sym_typename] = ACTIONS(1537), - [anon_sym_template] = ACTIONS(1537), - [anon_sym_delete] = ACTIONS(1537), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_co_return] = ACTIONS(1537), - [anon_sym_co_yield] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1537), - [anon_sym_co_await] = ACTIONS(1537), - [anon_sym_new] = ACTIONS(1537), - [sym_this] = ACTIONS(1537), - [sym_nullptr] = ACTIONS(1537), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_FORWARD] = ACTIONS(1537), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1537), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_PS_GET] = ACTIONS(1537), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1537), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1537), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1537), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1537), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1537), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1537), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1537), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1537), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1537), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1537), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1537), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1537), - [anon_sym_MOZ_COLD] = ACTIONS(1537), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1537), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1537), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1537), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1537), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1537), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1537), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1537), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1537), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1537), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1537), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1537), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1537), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1537), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1537), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1537), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1537), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1537), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1537), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1537), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1537), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1537), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_NONNULL] = ACTIONS(1537), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1537), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1537), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1537), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1537), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1537), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_NORETURN] = ACTIONS(1537), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1537), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1537), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1537), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1537), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1537), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1537), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1537), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1537), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1537), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1537), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1537), - [anon_sym_MOZ_RAII] = ACTIONS(1537), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1537), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1537), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1537), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1537), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1537), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1537), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1537), - [sym_raw_string_literal] = ACTIONS(1539), - }, - [713] = { - [sym_identifier] = ACTIONS(1601), - [anon_sym_LPAREN2] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_AMP] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_typedef] = ACTIONS(1601), - [anon_sym_extern] = ACTIONS(1601), - [anon_sym___attribute__] = ACTIONS(1601), - [anon_sym_COLON_COLON] = ACTIONS(1603), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1603), - [anon_sym___declspec] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_static] = ACTIONS(1601), - [anon_sym_register] = ACTIONS(1601), - [anon_sym_inline] = ACTIONS(1601), - [anon_sym_thread_local] = ACTIONS(1601), - [anon_sym_const] = ACTIONS(1601), - [anon_sym_volatile] = ACTIONS(1601), - [anon_sym_restrict] = ACTIONS(1601), - [anon_sym__Atomic] = ACTIONS(1601), - [anon_sym_mutable] = ACTIONS(1601), - [anon_sym_constexpr] = ACTIONS(1601), - [anon_sym_signed] = ACTIONS(1601), - [anon_sym_unsigned] = ACTIONS(1601), - [anon_sym_long] = ACTIONS(1601), - [anon_sym_short] = ACTIONS(1601), - [sym_primitive_type] = ACTIONS(1601), - [anon_sym_enum] = ACTIONS(1601), - [anon_sym_class] = ACTIONS(1601), - [anon_sym_struct] = ACTIONS(1601), - [anon_sym_union] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1601), - [anon_sym_else] = ACTIONS(1601), - [anon_sym_switch] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1601), - [anon_sym_do] = ACTIONS(1601), - [anon_sym_for] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_break] = ACTIONS(1601), - [anon_sym_continue] = ACTIONS(1601), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1603), - [anon_sym_sizeof] = ACTIONS(1601), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_L_SQUOTE] = ACTIONS(1603), - [anon_sym_u_SQUOTE] = ACTIONS(1603), - [anon_sym_U_SQUOTE] = ACTIONS(1603), - [anon_sym_u8_SQUOTE] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(1603), - [anon_sym_L_DQUOTE] = ACTIONS(1603), - [anon_sym_u_DQUOTE] = ACTIONS(1603), - [anon_sym_U_DQUOTE] = ACTIONS(1603), - [anon_sym_u8_DQUOTE] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1601), - [anon_sym_virtual] = ACTIONS(1601), - [sym_auto] = ACTIONS(1601), - [anon_sym_typename] = ACTIONS(1601), - [anon_sym_template] = ACTIONS(1601), - [anon_sym_delete] = ACTIONS(1601), - [anon_sym_throw] = ACTIONS(1601), - [anon_sym_co_return] = ACTIONS(1601), - [anon_sym_co_yield] = ACTIONS(1601), - [anon_sym_try] = ACTIONS(1601), - [anon_sym_co_await] = ACTIONS(1601), - [anon_sym_new] = ACTIONS(1601), - [sym_this] = ACTIONS(1601), - [sym_nullptr] = ACTIONS(1601), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_FORWARD] = ACTIONS(1601), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1601), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_PS_GET] = ACTIONS(1601), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1601), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1601), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1601), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1601), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1601), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1601), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1601), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1601), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1601), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1601), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1601), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1601), - [anon_sym_MOZ_COLD] = ACTIONS(1601), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1601), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1601), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1601), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1601), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1601), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1601), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1601), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1601), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1601), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1601), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1601), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1601), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1601), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1601), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1601), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1601), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1601), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1601), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1601), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1601), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1601), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_NONNULL] = ACTIONS(1601), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1601), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1601), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1601), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1601), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1601), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_NORETURN] = ACTIONS(1601), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1601), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1601), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1601), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1601), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1601), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1601), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1601), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1601), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1601), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1601), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1601), - [anon_sym_MOZ_RAII] = ACTIONS(1601), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1601), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1601), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1601), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1601), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1601), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1601), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1601), - [sym_raw_string_literal] = ACTIONS(1603), - }, - [714] = { - [sym_identifier] = ACTIONS(2278), - [anon_sym_LPAREN2] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2278), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_extern] = ACTIONS(2278), - [anon_sym___attribute__] = ACTIONS(2278), - [anon_sym_COLON_COLON] = ACTIONS(2280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2280), - [anon_sym___declspec] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_static] = ACTIONS(2278), - [anon_sym_register] = ACTIONS(2278), - [anon_sym_inline] = ACTIONS(2278), - [anon_sym_thread_local] = ACTIONS(2278), - [anon_sym_const] = ACTIONS(2278), - [anon_sym_volatile] = ACTIONS(2278), - [anon_sym_restrict] = ACTIONS(2278), - [anon_sym__Atomic] = ACTIONS(2278), - [anon_sym_mutable] = ACTIONS(2278), - [anon_sym_constexpr] = ACTIONS(2278), - [anon_sym_signed] = ACTIONS(2278), - [anon_sym_unsigned] = ACTIONS(2278), - [anon_sym_long] = ACTIONS(2278), - [anon_sym_short] = ACTIONS(2278), - [sym_primitive_type] = ACTIONS(2278), - [anon_sym_enum] = ACTIONS(2278), - [anon_sym_class] = ACTIONS(2278), - [anon_sym_struct] = ACTIONS(2278), - [anon_sym_union] = ACTIONS(2278), - [anon_sym_if] = ACTIONS(2278), - [anon_sym_switch] = ACTIONS(2278), - [anon_sym_case] = ACTIONS(2278), - [anon_sym_default] = ACTIONS(2278), - [anon_sym_while] = ACTIONS(2278), - [anon_sym_do] = ACTIONS(2278), - [anon_sym_for] = ACTIONS(2278), - [anon_sym_return] = ACTIONS(2278), - [anon_sym_break] = ACTIONS(2278), - [anon_sym_continue] = ACTIONS(2278), - [anon_sym_goto] = ACTIONS(2278), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_sizeof] = ACTIONS(2278), - [sym_number_literal] = ACTIONS(2280), - [anon_sym_L_SQUOTE] = ACTIONS(2280), - [anon_sym_u_SQUOTE] = ACTIONS(2280), - [anon_sym_U_SQUOTE] = ACTIONS(2280), - [anon_sym_u8_SQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_L_DQUOTE] = ACTIONS(2280), - [anon_sym_u_DQUOTE] = ACTIONS(2280), - [anon_sym_U_DQUOTE] = ACTIONS(2280), - [anon_sym_u8_DQUOTE] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [sym_true] = ACTIONS(2278), - [sym_false] = ACTIONS(2278), - [sym_null] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2278), - [anon_sym_virtual] = ACTIONS(2278), - [sym_auto] = ACTIONS(2278), - [anon_sym_typename] = ACTIONS(2278), - [anon_sym_template] = ACTIONS(2278), - [anon_sym_delete] = ACTIONS(2278), - [anon_sym_throw] = ACTIONS(2278), - [anon_sym_co_return] = ACTIONS(2278), - [anon_sym_co_yield] = ACTIONS(2278), - [anon_sym_try] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2278), - [anon_sym_new] = ACTIONS(2278), - [sym_this] = ACTIONS(2278), - [sym_nullptr] = ACTIONS(2278), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2278), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2278), - [anon_sym_FORWARD] = ACTIONS(2278), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2278), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2278), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2278), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(2278), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2278), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2278), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2278), - [anon_sym_PS_GET] = ACTIONS(2278), - [anon_sym_PS_GET_AND_SET] = ACTIONS(2278), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2278), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(2278), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2278), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2278), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2278), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2278), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2278), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2278), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2278), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2278), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2278), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2278), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2278), - [anon_sym_MOZ_COLD] = ACTIONS(2278), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2278), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2278), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2278), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2278), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2278), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2278), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2278), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2278), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2278), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2278), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2278), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2278), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2278), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2278), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2278), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2278), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2278), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2278), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2278), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2278), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_NONNULL] = ACTIONS(2278), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2278), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2278), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2278), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2278), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2278), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_NORETURN] = ACTIONS(2278), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2278), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2278), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2278), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2278), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2278), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2278), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2278), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2278), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2278), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2278), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2278), - [anon_sym_MOZ_RAII] = ACTIONS(2278), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2278), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2278), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2278), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2278), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2278), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2278), - [sym_raw_string_literal] = ACTIONS(2280), - }, - [715] = { - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1607), - [anon_sym_TILDE] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_typedef] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym___attribute__] = ACTIONS(1605), - [anon_sym_COLON_COLON] = ACTIONS(1607), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1607), - [anon_sym___declspec] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_static] = ACTIONS(1605), - [anon_sym_register] = ACTIONS(1605), - [anon_sym_inline] = ACTIONS(1605), - [anon_sym_thread_local] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [anon_sym_volatile] = ACTIONS(1605), - [anon_sym_restrict] = ACTIONS(1605), - [anon_sym__Atomic] = ACTIONS(1605), - [anon_sym_mutable] = ACTIONS(1605), - [anon_sym_constexpr] = ACTIONS(1605), - [anon_sym_signed] = ACTIONS(1605), - [anon_sym_unsigned] = ACTIONS(1605), - [anon_sym_long] = ACTIONS(1605), - [anon_sym_short] = ACTIONS(1605), - [sym_primitive_type] = ACTIONS(1605), - [anon_sym_enum] = ACTIONS(1605), - [anon_sym_class] = ACTIONS(1605), - [anon_sym_struct] = ACTIONS(1605), - [anon_sym_union] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_else] = ACTIONS(1605), - [anon_sym_switch] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_goto] = ACTIONS(1605), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1605), - [sym_number_literal] = ACTIONS(1607), - [anon_sym_L_SQUOTE] = ACTIONS(1607), - [anon_sym_u_SQUOTE] = ACTIONS(1607), - [anon_sym_U_SQUOTE] = ACTIONS(1607), - [anon_sym_u8_SQUOTE] = ACTIONS(1607), - [anon_sym_SQUOTE] = ACTIONS(1607), - [anon_sym_L_DQUOTE] = ACTIONS(1607), - [anon_sym_u_DQUOTE] = ACTIONS(1607), - [anon_sym_U_DQUOTE] = ACTIONS(1607), - [anon_sym_u8_DQUOTE] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1605), - [anon_sym_virtual] = ACTIONS(1605), - [sym_auto] = ACTIONS(1605), - [anon_sym_typename] = ACTIONS(1605), - [anon_sym_template] = ACTIONS(1605), - [anon_sym_delete] = ACTIONS(1605), - [anon_sym_throw] = ACTIONS(1605), - [anon_sym_co_return] = ACTIONS(1605), - [anon_sym_co_yield] = ACTIONS(1605), - [anon_sym_try] = ACTIONS(1605), - [anon_sym_co_await] = ACTIONS(1605), - [anon_sym_new] = ACTIONS(1605), - [sym_this] = ACTIONS(1605), - [sym_nullptr] = ACTIONS(1605), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_FORWARD] = ACTIONS(1605), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1605), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_PS_GET] = ACTIONS(1605), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1605), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1605), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1605), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1605), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1605), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1605), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1605), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1605), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1605), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1605), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1605), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1605), - [anon_sym_MOZ_COLD] = ACTIONS(1605), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1605), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1605), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1605), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1605), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1605), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1605), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1605), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1605), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1605), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1605), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1605), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1605), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1605), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1605), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1605), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1605), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1605), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1605), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1605), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1605), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1605), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_NONNULL] = ACTIONS(1605), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1605), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1605), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1605), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1605), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1605), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_NORETURN] = ACTIONS(1605), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1605), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1605), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1605), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1605), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1605), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1605), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1605), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1605), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1605), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1605), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1605), - [anon_sym_MOZ_RAII] = ACTIONS(1605), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1605), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1605), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1605), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1605), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1605), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1605), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1605), - [sym_raw_string_literal] = ACTIONS(1607), - }, - [716] = { - [sym_identifier] = ACTIONS(1649), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1651), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_typedef] = ACTIONS(1649), - [anon_sym_extern] = ACTIONS(1649), - [anon_sym___attribute__] = ACTIONS(1649), - [anon_sym_COLON_COLON] = ACTIONS(1651), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1651), - [anon_sym___declspec] = ACTIONS(1649), - [anon_sym_LBRACE] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1649), - [anon_sym_register] = ACTIONS(1649), - [anon_sym_inline] = ACTIONS(1649), - [anon_sym_thread_local] = ACTIONS(1649), - [anon_sym_const] = ACTIONS(1649), - [anon_sym_volatile] = ACTIONS(1649), - [anon_sym_restrict] = ACTIONS(1649), - [anon_sym__Atomic] = ACTIONS(1649), - [anon_sym_mutable] = ACTIONS(1649), - [anon_sym_constexpr] = ACTIONS(1649), - [anon_sym_signed] = ACTIONS(1649), - [anon_sym_unsigned] = ACTIONS(1649), - [anon_sym_long] = ACTIONS(1649), - [anon_sym_short] = ACTIONS(1649), - [sym_primitive_type] = ACTIONS(1649), - [anon_sym_enum] = ACTIONS(1649), - [anon_sym_class] = ACTIONS(1649), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_union] = ACTIONS(1649), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_else] = ACTIONS(1649), - [anon_sym_switch] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_do] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_goto] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1651), - [anon_sym_sizeof] = ACTIONS(1649), - [sym_number_literal] = ACTIONS(1651), - [anon_sym_L_SQUOTE] = ACTIONS(1651), - [anon_sym_u_SQUOTE] = ACTIONS(1651), - [anon_sym_U_SQUOTE] = ACTIONS(1651), - [anon_sym_u8_SQUOTE] = ACTIONS(1651), - [anon_sym_SQUOTE] = ACTIONS(1651), - [anon_sym_L_DQUOTE] = ACTIONS(1651), - [anon_sym_u_DQUOTE] = ACTIONS(1651), - [anon_sym_U_DQUOTE] = ACTIONS(1651), - [anon_sym_u8_DQUOTE] = ACTIONS(1651), - [anon_sym_DQUOTE] = ACTIONS(1651), - [sym_true] = ACTIONS(1649), - [sym_false] = ACTIONS(1649), - [sym_null] = ACTIONS(1649), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1649), - [anon_sym_virtual] = ACTIONS(1649), - [sym_auto] = ACTIONS(1649), - [anon_sym_typename] = ACTIONS(1649), - [anon_sym_template] = ACTIONS(1649), - [anon_sym_delete] = ACTIONS(1649), - [anon_sym_throw] = ACTIONS(1649), - [anon_sym_co_return] = ACTIONS(1649), - [anon_sym_co_yield] = ACTIONS(1649), - [anon_sym_try] = ACTIONS(1649), - [anon_sym_co_await] = ACTIONS(1649), - [anon_sym_new] = ACTIONS(1649), - [sym_this] = ACTIONS(1649), - [sym_nullptr] = ACTIONS(1649), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_FORWARD] = ACTIONS(1649), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1649), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_PS_GET] = ACTIONS(1649), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1649), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1649), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1649), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1649), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1649), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1649), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1649), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1649), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1649), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1649), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1649), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1649), - [anon_sym_MOZ_COLD] = ACTIONS(1649), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1649), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1649), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1649), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1649), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1649), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1649), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1649), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1649), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1649), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1649), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1649), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1649), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1649), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1649), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1649), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1649), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1649), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1649), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1649), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1649), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1649), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_NONNULL] = ACTIONS(1649), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1649), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1649), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1649), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1649), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1649), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_NORETURN] = ACTIONS(1649), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1649), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1649), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1649), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1649), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1649), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1649), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1649), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1649), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1649), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1649), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1649), - [anon_sym_MOZ_RAII] = ACTIONS(1649), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1649), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1649), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1649), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1649), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1649), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1649), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1649), - [sym_raw_string_literal] = ACTIONS(1651), - }, - [717] = { - [sym_identifier] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(1635), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1633), - [anon_sym_STAR] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(1635), - [anon_sym_typedef] = ACTIONS(1633), - [anon_sym_extern] = ACTIONS(1633), - [anon_sym___attribute__] = ACTIONS(1633), - [anon_sym_COLON_COLON] = ACTIONS(1635), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1635), - [anon_sym___declspec] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_static] = ACTIONS(1633), - [anon_sym_register] = ACTIONS(1633), - [anon_sym_inline] = ACTIONS(1633), - [anon_sym_thread_local] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [anon_sym_volatile] = ACTIONS(1633), - [anon_sym_restrict] = ACTIONS(1633), - [anon_sym__Atomic] = ACTIONS(1633), - [anon_sym_mutable] = ACTIONS(1633), - [anon_sym_constexpr] = ACTIONS(1633), - [anon_sym_signed] = ACTIONS(1633), - [anon_sym_unsigned] = ACTIONS(1633), - [anon_sym_long] = ACTIONS(1633), - [anon_sym_short] = ACTIONS(1633), - [sym_primitive_type] = ACTIONS(1633), - [anon_sym_enum] = ACTIONS(1633), - [anon_sym_class] = ACTIONS(1633), - [anon_sym_struct] = ACTIONS(1633), - [anon_sym_union] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_else] = ACTIONS(1633), - [anon_sym_switch] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_do] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_goto] = ACTIONS(1633), - [anon_sym_DASH_DASH] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1635), - [anon_sym_sizeof] = ACTIONS(1633), - [sym_number_literal] = ACTIONS(1635), - [anon_sym_L_SQUOTE] = ACTIONS(1635), - [anon_sym_u_SQUOTE] = ACTIONS(1635), - [anon_sym_U_SQUOTE] = ACTIONS(1635), - [anon_sym_u8_SQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1635), - [anon_sym_L_DQUOTE] = ACTIONS(1635), - [anon_sym_u_DQUOTE] = ACTIONS(1635), - [anon_sym_U_DQUOTE] = ACTIONS(1635), - [anon_sym_u8_DQUOTE] = ACTIONS(1635), - [anon_sym_DQUOTE] = ACTIONS(1635), - [sym_true] = ACTIONS(1633), - [sym_false] = ACTIONS(1633), - [sym_null] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1633), - [anon_sym_virtual] = ACTIONS(1633), - [sym_auto] = ACTIONS(1633), - [anon_sym_typename] = ACTIONS(1633), - [anon_sym_template] = ACTIONS(1633), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_throw] = ACTIONS(1633), - [anon_sym_co_return] = ACTIONS(1633), - [anon_sym_co_yield] = ACTIONS(1633), - [anon_sym_try] = ACTIONS(1633), - [anon_sym_co_await] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1633), - [sym_this] = ACTIONS(1633), - [sym_nullptr] = ACTIONS(1633), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_FORWARD] = ACTIONS(1633), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1633), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_PS_GET] = ACTIONS(1633), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1633), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1633), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1633), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1633), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1633), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1633), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1633), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1633), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1633), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1633), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1633), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1633), - [anon_sym_MOZ_COLD] = ACTIONS(1633), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1633), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1633), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1633), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1633), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1633), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1633), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1633), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1633), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1633), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1633), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1633), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1633), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1633), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1633), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1633), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1633), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1633), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1633), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1633), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1633), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1633), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_NONNULL] = ACTIONS(1633), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1633), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1633), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1633), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1633), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1633), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_NORETURN] = ACTIONS(1633), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1633), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1633), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1633), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1633), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1633), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1633), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1633), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1633), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1633), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1633), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1633), - [anon_sym_MOZ_RAII] = ACTIONS(1633), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1633), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1633), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1633), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1633), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1633), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1633), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1633), - [sym_raw_string_literal] = ACTIONS(1635), - }, - [718] = { - [sym_identifier] = ACTIONS(1577), - [anon_sym_LPAREN2] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1579), - [anon_sym_TILDE] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_typedef] = ACTIONS(1577), - [anon_sym_extern] = ACTIONS(1577), - [anon_sym___attribute__] = ACTIONS(1577), - [anon_sym_COLON_COLON] = ACTIONS(1579), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1579), - [anon_sym___declspec] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_register] = ACTIONS(1577), - [anon_sym_inline] = ACTIONS(1577), - [anon_sym_thread_local] = ACTIONS(1577), - [anon_sym_const] = ACTIONS(1577), - [anon_sym_volatile] = ACTIONS(1577), - [anon_sym_restrict] = ACTIONS(1577), - [anon_sym__Atomic] = ACTIONS(1577), - [anon_sym_mutable] = ACTIONS(1577), - [anon_sym_constexpr] = ACTIONS(1577), - [anon_sym_signed] = ACTIONS(1577), - [anon_sym_unsigned] = ACTIONS(1577), - [anon_sym_long] = ACTIONS(1577), - [anon_sym_short] = ACTIONS(1577), - [sym_primitive_type] = ACTIONS(1577), - [anon_sym_enum] = ACTIONS(1577), - [anon_sym_class] = ACTIONS(1577), - [anon_sym_struct] = ACTIONS(1577), - [anon_sym_union] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_else] = ACTIONS(1577), - [anon_sym_switch] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1577), - [anon_sym_do] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_return] = ACTIONS(1577), - [anon_sym_break] = ACTIONS(1577), - [anon_sym_continue] = ACTIONS(1577), - [anon_sym_goto] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1577), - [sym_number_literal] = ACTIONS(1579), - [anon_sym_L_SQUOTE] = ACTIONS(1579), - [anon_sym_u_SQUOTE] = ACTIONS(1579), - [anon_sym_U_SQUOTE] = ACTIONS(1579), - [anon_sym_u8_SQUOTE] = ACTIONS(1579), - [anon_sym_SQUOTE] = ACTIONS(1579), - [anon_sym_L_DQUOTE] = ACTIONS(1579), - [anon_sym_u_DQUOTE] = ACTIONS(1579), - [anon_sym_U_DQUOTE] = ACTIONS(1579), - [anon_sym_u8_DQUOTE] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1577), - [anon_sym_virtual] = ACTIONS(1577), - [sym_auto] = ACTIONS(1577), - [anon_sym_typename] = ACTIONS(1577), - [anon_sym_template] = ACTIONS(1577), - [anon_sym_delete] = ACTIONS(1577), - [anon_sym_throw] = ACTIONS(1577), - [anon_sym_co_return] = ACTIONS(1577), - [anon_sym_co_yield] = ACTIONS(1577), - [anon_sym_try] = ACTIONS(1577), - [anon_sym_co_await] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1577), - [sym_this] = ACTIONS(1577), - [sym_nullptr] = ACTIONS(1577), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_FORWARD] = ACTIONS(1577), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1577), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_PS_GET] = ACTIONS(1577), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1577), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1577), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1577), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1577), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1577), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1577), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1577), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1577), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1577), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1577), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1577), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1577), - [anon_sym_MOZ_COLD] = ACTIONS(1577), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1577), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1577), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1577), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1577), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1577), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1577), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1577), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1577), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1577), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1577), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1577), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1577), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1577), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1577), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1577), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1577), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1577), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1577), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1577), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1577), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1577), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_NONNULL] = ACTIONS(1577), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1577), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1577), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1577), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1577), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1577), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_NORETURN] = ACTIONS(1577), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1577), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1577), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1577), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1577), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1577), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1577), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1577), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1577), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1577), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1577), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1577), - [anon_sym_MOZ_RAII] = ACTIONS(1577), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1577), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1577), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1577), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1577), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1577), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1577), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1577), - [sym_raw_string_literal] = ACTIONS(1579), - }, - [719] = { - [sym_identifier] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_TILDE] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_AMP] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_typedef] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym___attribute__] = ACTIONS(1659), - [anon_sym_COLON_COLON] = ACTIONS(1661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1661), - [anon_sym___declspec] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_inline] = ACTIONS(1659), - [anon_sym_thread_local] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [anon_sym_volatile] = ACTIONS(1659), - [anon_sym_restrict] = ACTIONS(1659), - [anon_sym__Atomic] = ACTIONS(1659), - [anon_sym_mutable] = ACTIONS(1659), - [anon_sym_constexpr] = ACTIONS(1659), - [anon_sym_signed] = ACTIONS(1659), - [anon_sym_unsigned] = ACTIONS(1659), - [anon_sym_long] = ACTIONS(1659), - [anon_sym_short] = ACTIONS(1659), - [sym_primitive_type] = ACTIONS(1659), - [anon_sym_enum] = ACTIONS(1659), - [anon_sym_class] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_switch] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_goto] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1661), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1661), - [anon_sym_L_SQUOTE] = ACTIONS(1661), - [anon_sym_u_SQUOTE] = ACTIONS(1661), - [anon_sym_U_SQUOTE] = ACTIONS(1661), - [anon_sym_u8_SQUOTE] = ACTIONS(1661), - [anon_sym_SQUOTE] = ACTIONS(1661), - [anon_sym_L_DQUOTE] = ACTIONS(1661), - [anon_sym_u_DQUOTE] = ACTIONS(1661), - [anon_sym_U_DQUOTE] = ACTIONS(1661), - [anon_sym_u8_DQUOTE] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym_true] = ACTIONS(1659), - [sym_false] = ACTIONS(1659), - [sym_null] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1659), - [anon_sym_virtual] = ACTIONS(1659), - [sym_auto] = ACTIONS(1659), - [anon_sym_typename] = ACTIONS(1659), - [anon_sym_template] = ACTIONS(1659), - [anon_sym_delete] = ACTIONS(1659), - [anon_sym_throw] = ACTIONS(1659), - [anon_sym_co_return] = ACTIONS(1659), - [anon_sym_co_yield] = ACTIONS(1659), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_co_await] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [sym_this] = ACTIONS(1659), - [sym_nullptr] = ACTIONS(1659), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_FORWARD] = ACTIONS(1659), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1659), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_PS_GET] = ACTIONS(1659), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1659), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1659), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1659), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1659), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1659), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1659), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1659), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1659), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1659), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1659), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1659), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1659), - [anon_sym_MOZ_COLD] = ACTIONS(1659), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1659), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1659), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1659), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1659), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1659), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1659), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1659), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1659), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1659), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1659), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1659), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1659), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1659), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1659), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1659), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1659), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1659), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1659), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1659), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1659), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1659), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_NONNULL] = ACTIONS(1659), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1659), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1659), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1659), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1659), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1659), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_NORETURN] = ACTIONS(1659), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1659), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1659), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1659), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1659), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1659), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1659), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1659), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1659), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1659), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1659), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1659), - [anon_sym_MOZ_RAII] = ACTIONS(1659), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1659), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1659), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1659), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1659), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1659), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1659), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1659), - [sym_raw_string_literal] = ACTIONS(1661), - }, - [720] = { - [sym_identifier] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_typedef] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym___attribute__] = ACTIONS(1569), - [anon_sym_COLON_COLON] = ACTIONS(1571), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1571), - [anon_sym___declspec] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1569), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_inline] = ACTIONS(1569), - [anon_sym_thread_local] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [anon_sym_volatile] = ACTIONS(1569), - [anon_sym_restrict] = ACTIONS(1569), - [anon_sym__Atomic] = ACTIONS(1569), - [anon_sym_mutable] = ACTIONS(1569), - [anon_sym_constexpr] = ACTIONS(1569), - [anon_sym_signed] = ACTIONS(1569), - [anon_sym_unsigned] = ACTIONS(1569), - [anon_sym_long] = ACTIONS(1569), - [anon_sym_short] = ACTIONS(1569), - [sym_primitive_type] = ACTIONS(1569), - [anon_sym_enum] = ACTIONS(1569), - [anon_sym_class] = ACTIONS(1569), - [anon_sym_struct] = ACTIONS(1569), - [anon_sym_union] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_switch] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_goto] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_sizeof] = ACTIONS(1569), - [sym_number_literal] = ACTIONS(1571), - [anon_sym_L_SQUOTE] = ACTIONS(1571), - [anon_sym_u_SQUOTE] = ACTIONS(1571), - [anon_sym_U_SQUOTE] = ACTIONS(1571), - [anon_sym_u8_SQUOTE] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1571), - [anon_sym_L_DQUOTE] = ACTIONS(1571), - [anon_sym_u_DQUOTE] = ACTIONS(1571), - [anon_sym_U_DQUOTE] = ACTIONS(1571), - [anon_sym_u8_DQUOTE] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym_true] = ACTIONS(1569), - [sym_false] = ACTIONS(1569), - [sym_null] = ACTIONS(1569), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1569), - [anon_sym_virtual] = ACTIONS(1569), - [sym_auto] = ACTIONS(1569), - [anon_sym_typename] = ACTIONS(1569), - [anon_sym_template] = ACTIONS(1569), - [anon_sym_delete] = ACTIONS(1569), - [anon_sym_throw] = ACTIONS(1569), - [anon_sym_co_return] = ACTIONS(1569), - [anon_sym_co_yield] = ACTIONS(1569), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_co_await] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [sym_this] = ACTIONS(1569), - [sym_nullptr] = ACTIONS(1569), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_FORWARD] = ACTIONS(1569), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1569), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_PS_GET] = ACTIONS(1569), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1569), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1569), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1569), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1569), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1569), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1569), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1569), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1569), - [anon_sym_MOZ_COLD] = ACTIONS(1569), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1569), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1569), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1569), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1569), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1569), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1569), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1569), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1569), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1569), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1569), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1569), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1569), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1569), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_NONNULL] = ACTIONS(1569), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1569), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1569), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1569), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1569), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1569), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1569), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1569), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1569), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1569), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1569), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1569), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1569), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1569), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1569), - [anon_sym_MOZ_RAII] = ACTIONS(1569), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1569), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1569), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1569), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1569), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1569), - [sym_raw_string_literal] = ACTIONS(1571), - }, - [721] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [722] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [723] = { - [sym__declaration_modifiers] = STATE(1223), - [sym__declaration_specifiers] = STATE(3594), - [sym_attribute_specifier] = STATE(1223), - [sym_attribute_declaration] = STATE(1223), - [sym_ms_declspec_modifier] = STATE(1223), - [sym_storage_class_specifier] = STATE(1223), - [sym_type_qualifier] = STATE(1223), - [sym__type_specifier] = STATE(1483), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1223), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1223), - [aux_sym_sized_type_specifier_repeat1] = STATE(1338), + [anon_sym_static_assert] = ACTIONS(2307), + [anon_sym_concept] = ACTIONS(2307), + [anon_sym_co_return] = ACTIONS(2307), + [anon_sym_co_yield] = ACTIONS(2307), + [anon_sym_R_DQUOTE] = ACTIONS(2309), + [anon_sym_LR_DQUOTE] = ACTIONS(2309), + [anon_sym_uR_DQUOTE] = ACTIONS(2309), + [anon_sym_UR_DQUOTE] = ACTIONS(2309), + [anon_sym_u8R_DQUOTE] = ACTIONS(2309), + [anon_sym_co_await] = ACTIONS(2307), + [anon_sym_new] = ACTIONS(2307), + [anon_sym_requires] = ACTIONS(2307), + [sym_this] = ACTIONS(2307), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2307), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_FORWARD] = ACTIONS(2307), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2307), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2307), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2307), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2307), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_PS_GET] = ACTIONS(2307), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2307), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2307), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2307), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2307), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2307), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2307), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2307), + [anon_sym_MOZ_COLD] = ACTIONS(2307), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2307), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2307), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2307), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2307), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2307), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2307), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2307), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2307), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2307), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2307), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2307), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2307), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2307), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_NONNULL] = ACTIONS(2307), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2307), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2307), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2307), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2307), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2307), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2307), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2307), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2307), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2307), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2307), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2307), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2307), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2307), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2307), + [anon_sym_MOZ_RAII] = ACTIONS(2307), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2307), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2307), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2307), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2307), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2307), + }, + [STATE(226)] = { + [sym_catch_clause] = STATE(249), + [aux_sym_constructor_try_statement_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(1931), + [aux_sym_preproc_include_token1] = ACTIONS(1931), + [aux_sym_preproc_def_token1] = ACTIONS(1931), + [aux_sym_preproc_if_token1] = ACTIONS(1931), + [aux_sym_preproc_if_token2] = ACTIONS(1931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1931), + [sym_preproc_directive] = ACTIONS(1931), + [anon_sym_LPAREN2] = ACTIONS(1933), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_AMP_AMP] = ACTIONS(1933), + [anon_sym_AMP] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym___extension__] = ACTIONS(1931), + [anon_sym_typedef] = ACTIONS(1931), + [anon_sym_virtual] = ACTIONS(1931), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym___attribute__] = ACTIONS(1931), + [anon_sym___attribute] = ACTIONS(1931), + [anon_sym_COLON_COLON] = ACTIONS(1933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1933), + [anon_sym___declspec] = ACTIONS(1931), + [anon_sym___based] = ACTIONS(1931), + [anon_sym___cdecl] = ACTIONS(1931), + [anon_sym___clrcall] = ACTIONS(1931), + [anon_sym___stdcall] = ACTIONS(1931), + [anon_sym___fastcall] = ACTIONS(1931), + [anon_sym___thiscall] = ACTIONS(1931), + [anon_sym___vectorcall] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_static] = ACTIONS(1931), + [anon_sym_register] = ACTIONS(1931), + [anon_sym_inline] = ACTIONS(1931), + [anon_sym___inline] = ACTIONS(1931), + [anon_sym___inline__] = ACTIONS(1931), + [anon_sym___forceinline] = ACTIONS(1931), + [anon_sym_thread_local] = ACTIONS(1931), + [anon_sym___thread] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_constexpr] = ACTIONS(1931), + [anon_sym_volatile] = ACTIONS(1931), + [anon_sym_restrict] = ACTIONS(1931), + [anon_sym___restrict__] = ACTIONS(1931), + [anon_sym__Atomic] = ACTIONS(1931), + [anon_sym__Noreturn] = ACTIONS(1931), + [anon_sym_noreturn] = ACTIONS(1931), + [anon_sym__Nonnull] = ACTIONS(1931), + [anon_sym_mutable] = ACTIONS(1931), + [anon_sym_constinit] = ACTIONS(1931), + [anon_sym_consteval] = ACTIONS(1931), + [anon_sym_alignas] = ACTIONS(1931), + [anon_sym__Alignas] = ACTIONS(1931), + [sym_primitive_type] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [anon_sym_class] = ACTIONS(1931), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_union] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_else] = ACTIONS(1931), + [anon_sym_switch] = ACTIONS(1931), + [anon_sym_case] = ACTIONS(1931), + [anon_sym_default] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_goto] = ACTIONS(1931), + [anon_sym___try] = ACTIONS(1931), + [anon_sym___leave] = ACTIONS(1931), + [anon_sym_not] = ACTIONS(1931), + [anon_sym_compl] = ACTIONS(1931), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [anon_sym_PLUS_PLUS] = ACTIONS(1933), + [anon_sym_sizeof] = ACTIONS(1931), + [anon_sym___alignof__] = ACTIONS(1931), + [anon_sym___alignof] = ACTIONS(1931), + [anon_sym__alignof] = ACTIONS(1931), + [anon_sym_alignof] = ACTIONS(1931), + [anon_sym__Alignof] = ACTIONS(1931), + [anon_sym_offsetof] = ACTIONS(1931), + [anon_sym__Generic] = ACTIONS(1931), + [anon_sym_asm] = ACTIONS(1931), + [anon_sym___asm__] = ACTIONS(1931), + [anon_sym___asm] = ACTIONS(1931), + [sym_number_literal] = ACTIONS(1933), + [anon_sym_L_SQUOTE] = ACTIONS(1933), + [anon_sym_u_SQUOTE] = ACTIONS(1933), + [anon_sym_U_SQUOTE] = ACTIONS(1933), + [anon_sym_u8_SQUOTE] = ACTIONS(1933), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_L_DQUOTE] = ACTIONS(1933), + [anon_sym_u_DQUOTE] = ACTIONS(1933), + [anon_sym_U_DQUOTE] = ACTIONS(1933), + [anon_sym_u8_DQUOTE] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(1933), + [sym_true] = ACTIONS(1931), + [sym_false] = ACTIONS(1931), + [anon_sym_NULL] = ACTIONS(1931), + [anon_sym_nullptr] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1931), + [anon_sym_decltype] = ACTIONS(1931), + [anon_sym_explicit] = ACTIONS(1931), + [anon_sym_typename] = ACTIONS(1931), + [anon_sym_template] = ACTIONS(1931), + [anon_sym_operator] = ACTIONS(1931), + [anon_sym_try] = ACTIONS(1931), + [anon_sym_delete] = ACTIONS(1931), + [anon_sym_throw] = ACTIONS(1931), + [anon_sym_namespace] = ACTIONS(1931), + [anon_sym_using] = ACTIONS(1931), + [anon_sym_static_assert] = ACTIONS(1931), + [anon_sym_concept] = ACTIONS(1931), + [anon_sym_co_return] = ACTIONS(1931), + [anon_sym_co_yield] = ACTIONS(1931), + [anon_sym_catch] = ACTIONS(2311), + [anon_sym_R_DQUOTE] = ACTIONS(1933), + [anon_sym_LR_DQUOTE] = ACTIONS(1933), + [anon_sym_uR_DQUOTE] = ACTIONS(1933), + [anon_sym_UR_DQUOTE] = ACTIONS(1933), + [anon_sym_u8R_DQUOTE] = ACTIONS(1933), + [anon_sym_co_await] = ACTIONS(1931), + [anon_sym_new] = ACTIONS(1931), + [anon_sym_requires] = ACTIONS(1931), + [sym_this] = ACTIONS(1931), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_FORWARD] = ACTIONS(1931), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1931), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_PS_GET] = ACTIONS(1931), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1931), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1931), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1931), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1931), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1931), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1931), + [anon_sym_MOZ_COLD] = ACTIONS(1931), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1931), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1931), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1931), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1931), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1931), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1931), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1931), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1931), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1931), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1931), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1931), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1931), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1931), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_NONNULL] = ACTIONS(1931), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1931), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1931), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1931), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1931), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1931), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1931), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1931), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1931), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1931), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1931), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1931), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1931), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1931), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1931), + [anon_sym_MOZ_RAII] = ACTIONS(1931), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1931), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1931), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1931), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1931), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1931), + }, + [STATE(227)] = { [sym_identifier] = ACTIONS(2313), - [anon_sym_COMMA] = ACTIONS(2315), - [anon_sym_BANG] = ACTIONS(2317), + [aux_sym_preproc_include_token1] = ACTIONS(2313), + [aux_sym_preproc_def_token1] = ACTIONS(2313), + [aux_sym_preproc_if_token1] = ACTIONS(2313), + [aux_sym_preproc_if_token2] = ACTIONS(2313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2313), + [aux_sym_preproc_else_token1] = ACTIONS(2313), + [aux_sym_preproc_elif_token1] = ACTIONS(2313), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2313), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2313), + [sym_preproc_directive] = ACTIONS(2313), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2315), [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(2315), + [anon_sym_AMP_AMP] = ACTIONS(2315), + [anon_sym_AMP] = ACTIONS(2313), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym___extension__] = ACTIONS(2313), + [anon_sym_typedef] = ACTIONS(2313), + [anon_sym_virtual] = ACTIONS(2313), + [anon_sym_extern] = ACTIONS(2313), + [anon_sym___attribute__] = ACTIONS(2313), + [anon_sym___attribute] = ACTIONS(2313), + [anon_sym_COLON_COLON] = ACTIONS(2315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2315), + [anon_sym___declspec] = ACTIONS(2313), + [anon_sym___based] = ACTIONS(2313), + [anon_sym___cdecl] = ACTIONS(2313), + [anon_sym___clrcall] = ACTIONS(2313), + [anon_sym___stdcall] = ACTIONS(2313), + [anon_sym___fastcall] = ACTIONS(2313), + [anon_sym___thiscall] = ACTIONS(2313), + [anon_sym___vectorcall] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_signed] = ACTIONS(2313), + [anon_sym_unsigned] = ACTIONS(2313), + [anon_sym_long] = ACTIONS(2313), + [anon_sym_short] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_static] = ACTIONS(2313), + [anon_sym_register] = ACTIONS(2313), + [anon_sym_inline] = ACTIONS(2313), + [anon_sym___inline] = ACTIONS(2313), + [anon_sym___inline__] = ACTIONS(2313), + [anon_sym___forceinline] = ACTIONS(2313), + [anon_sym_thread_local] = ACTIONS(2313), + [anon_sym___thread] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_constexpr] = ACTIONS(2313), + [anon_sym_volatile] = ACTIONS(2313), + [anon_sym_restrict] = ACTIONS(2313), + [anon_sym___restrict__] = ACTIONS(2313), + [anon_sym__Atomic] = ACTIONS(2313), + [anon_sym__Noreturn] = ACTIONS(2313), + [anon_sym_noreturn] = ACTIONS(2313), + [anon_sym__Nonnull] = ACTIONS(2313), + [anon_sym_mutable] = ACTIONS(2313), + [anon_sym_constinit] = ACTIONS(2313), + [anon_sym_consteval] = ACTIONS(2313), + [anon_sym_alignas] = ACTIONS(2313), + [anon_sym__Alignas] = ACTIONS(2313), + [sym_primitive_type] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), + [anon_sym_class] = ACTIONS(2313), + [anon_sym_struct] = ACTIONS(2313), + [anon_sym_union] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_switch] = ACTIONS(2313), + [anon_sym_case] = ACTIONS(2313), + [anon_sym_default] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_do] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_goto] = ACTIONS(2313), + [anon_sym___try] = ACTIONS(2313), + [anon_sym___leave] = ACTIONS(2313), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2315), + [anon_sym_PLUS_PLUS] = ACTIONS(2315), + [anon_sym_sizeof] = ACTIONS(2313), + [anon_sym___alignof__] = ACTIONS(2313), + [anon_sym___alignof] = ACTIONS(2313), + [anon_sym__alignof] = ACTIONS(2313), + [anon_sym_alignof] = ACTIONS(2313), + [anon_sym__Alignof] = ACTIONS(2313), + [anon_sym_offsetof] = ACTIONS(2313), + [anon_sym__Generic] = ACTIONS(2313), + [anon_sym_asm] = ACTIONS(2313), + [anon_sym___asm__] = ACTIONS(2313), + [anon_sym___asm] = ACTIONS(2313), + [sym_number_literal] = ACTIONS(2315), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2315), + [anon_sym_u_DQUOTE] = ACTIONS(2315), + [anon_sym_U_DQUOTE] = ACTIONS(2315), + [anon_sym_u8_DQUOTE] = ACTIONS(2315), + [anon_sym_DQUOTE] = ACTIONS(2315), + [sym_true] = ACTIONS(2313), + [sym_false] = ACTIONS(2313), + [anon_sym_NULL] = ACTIONS(2313), + [anon_sym_nullptr] = ACTIONS(2313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2313), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_explicit] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(2313), + [anon_sym_operator] = ACTIONS(2313), + [anon_sym_try] = ACTIONS(2313), + [anon_sym_delete] = ACTIONS(2313), + [anon_sym_throw] = ACTIONS(2313), + [anon_sym_namespace] = ACTIONS(2313), + [anon_sym_using] = ACTIONS(2313), + [anon_sym_static_assert] = ACTIONS(2313), + [anon_sym_concept] = ACTIONS(2313), + [anon_sym_co_return] = ACTIONS(2313), + [anon_sym_co_yield] = ACTIONS(2313), + [anon_sym_R_DQUOTE] = ACTIONS(2315), + [anon_sym_LR_DQUOTE] = ACTIONS(2315), + [anon_sym_uR_DQUOTE] = ACTIONS(2315), + [anon_sym_UR_DQUOTE] = ACTIONS(2315), + [anon_sym_u8R_DQUOTE] = ACTIONS(2315), + [anon_sym_co_await] = ACTIONS(2313), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_requires] = ACTIONS(2313), + [sym_this] = ACTIONS(2313), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2313), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_FORWARD] = ACTIONS(2313), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2313), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2313), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2313), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2313), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_PS_GET] = ACTIONS(2313), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2313), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2313), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2313), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2313), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2313), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2313), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2313), + [anon_sym_MOZ_COLD] = ACTIONS(2313), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2313), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2313), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2313), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2313), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2313), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2313), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2313), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2313), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2313), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2313), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2313), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2313), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2313), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_NONNULL] = ACTIONS(2313), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2313), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2313), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2313), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2313), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2313), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2313), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2313), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2313), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2313), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2313), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2313), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2313), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2313), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2313), + [anon_sym_MOZ_RAII] = ACTIONS(2313), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2313), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2313), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2313), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2313), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2313), + }, + [STATE(228)] = { + [sym_identifier] = ACTIONS(2317), + [aux_sym_preproc_include_token1] = ACTIONS(2317), + [aux_sym_preproc_def_token1] = ACTIONS(2317), + [aux_sym_preproc_if_token1] = ACTIONS(2317), + [aux_sym_preproc_if_token2] = ACTIONS(2317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2317), + [aux_sym_preproc_else_token1] = ACTIONS(2317), + [aux_sym_preproc_elif_token1] = ACTIONS(2317), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2317), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2317), + [sym_preproc_directive] = ACTIONS(2317), + [anon_sym_LPAREN2] = ACTIONS(2319), + [anon_sym_BANG] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2319), [anon_sym_DASH] = ACTIONS(2317), [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_STAR] = ACTIONS(2317), - [anon_sym_SLASH] = ACTIONS(2317), - [anon_sym_PERCENT] = ACTIONS(2317), - [anon_sym_PIPE_PIPE] = ACTIONS(2315), - [anon_sym_AMP_AMP] = ACTIONS(2315), - [anon_sym_PIPE] = ACTIONS(2317), - [anon_sym_CARET] = ACTIONS(2317), + [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), [anon_sym_AMP] = ACTIONS(2317), - [anon_sym_EQ_EQ] = ACTIONS(2315), - [anon_sym_BANG_EQ] = ACTIONS(2315), - [anon_sym_GT] = ACTIONS(2317), - [anon_sym_GT_EQ] = ACTIONS(2315), - [anon_sym_LT_EQ] = ACTIONS(2315), - [anon_sym_LT] = ACTIONS(2317), - [anon_sym_LT_LT] = ACTIONS(2317), - [anon_sym_GT_GT] = ACTIONS(2317), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_typedef] = ACTIONS(2317), + [anon_sym_virtual] = ACTIONS(2317), + [anon_sym_extern] = ACTIONS(2317), + [anon_sym___attribute__] = ACTIONS(2317), + [anon_sym___attribute] = ACTIONS(2317), [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_EQ] = ACTIONS(2317), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2319), + [anon_sym___declspec] = ACTIONS(2317), + [anon_sym___based] = ACTIONS(2317), + [anon_sym___cdecl] = ACTIONS(2317), + [anon_sym___clrcall] = ACTIONS(2317), + [anon_sym___stdcall] = ACTIONS(2317), + [anon_sym___fastcall] = ACTIONS(2317), + [anon_sym___thiscall] = ACTIONS(2317), + [anon_sym___vectorcall] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_signed] = ACTIONS(2317), + [anon_sym_unsigned] = ACTIONS(2317), + [anon_sym_long] = ACTIONS(2317), + [anon_sym_short] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_register] = ACTIONS(2317), + [anon_sym_inline] = ACTIONS(2317), + [anon_sym___inline] = ACTIONS(2317), + [anon_sym___inline__] = ACTIONS(2317), + [anon_sym___forceinline] = ACTIONS(2317), + [anon_sym_thread_local] = ACTIONS(2317), + [anon_sym___thread] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_constexpr] = ACTIONS(2317), + [anon_sym_volatile] = ACTIONS(2317), + [anon_sym_restrict] = ACTIONS(2317), + [anon_sym___restrict__] = ACTIONS(2317), + [anon_sym__Atomic] = ACTIONS(2317), + [anon_sym__Noreturn] = ACTIONS(2317), + [anon_sym_noreturn] = ACTIONS(2317), + [anon_sym__Nonnull] = ACTIONS(2317), + [anon_sym_mutable] = ACTIONS(2317), + [anon_sym_constinit] = ACTIONS(2317), + [anon_sym_consteval] = ACTIONS(2317), + [anon_sym_alignas] = ACTIONS(2317), + [anon_sym__Alignas] = ACTIONS(2317), + [sym_primitive_type] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_struct] = ACTIONS(2317), + [anon_sym_union] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_case] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_goto] = ACTIONS(2317), + [anon_sym___try] = ACTIONS(2317), + [anon_sym___leave] = ACTIONS(2317), + [anon_sym_not] = ACTIONS(2317), + [anon_sym_compl] = ACTIONS(2317), + [anon_sym_DASH_DASH] = ACTIONS(2319), + [anon_sym_PLUS_PLUS] = ACTIONS(2319), + [anon_sym_sizeof] = ACTIONS(2317), + [anon_sym___alignof__] = ACTIONS(2317), + [anon_sym___alignof] = ACTIONS(2317), + [anon_sym__alignof] = ACTIONS(2317), + [anon_sym_alignof] = ACTIONS(2317), + [anon_sym__Alignof] = ACTIONS(2317), + [anon_sym_offsetof] = ACTIONS(2317), + [anon_sym__Generic] = ACTIONS(2317), + [anon_sym_asm] = ACTIONS(2317), + [anon_sym___asm__] = ACTIONS(2317), + [anon_sym___asm] = ACTIONS(2317), + [sym_number_literal] = ACTIONS(2319), + [anon_sym_L_SQUOTE] = ACTIONS(2319), + [anon_sym_u_SQUOTE] = ACTIONS(2319), + [anon_sym_U_SQUOTE] = ACTIONS(2319), + [anon_sym_u8_SQUOTE] = ACTIONS(2319), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_L_DQUOTE] = ACTIONS(2319), + [anon_sym_u_DQUOTE] = ACTIONS(2319), + [anon_sym_U_DQUOTE] = ACTIONS(2319), + [anon_sym_u8_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [sym_true] = ACTIONS(2317), + [sym_false] = ACTIONS(2317), + [anon_sym_NULL] = ACTIONS(2317), + [anon_sym_nullptr] = ACTIONS(2317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2317), + [anon_sym_decltype] = ACTIONS(2317), + [anon_sym_explicit] = ACTIONS(2317), + [anon_sym_typename] = ACTIONS(2317), + [anon_sym_template] = ACTIONS(2317), + [anon_sym_operator] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_delete] = ACTIONS(2317), + [anon_sym_throw] = ACTIONS(2317), + [anon_sym_namespace] = ACTIONS(2317), + [anon_sym_using] = ACTIONS(2317), + [anon_sym_static_assert] = ACTIONS(2317), + [anon_sym_concept] = ACTIONS(2317), + [anon_sym_co_return] = ACTIONS(2317), + [anon_sym_co_yield] = ACTIONS(2317), + [anon_sym_R_DQUOTE] = ACTIONS(2319), + [anon_sym_LR_DQUOTE] = ACTIONS(2319), + [anon_sym_uR_DQUOTE] = ACTIONS(2319), + [anon_sym_UR_DQUOTE] = ACTIONS(2319), + [anon_sym_u8R_DQUOTE] = ACTIONS(2319), + [anon_sym_co_await] = ACTIONS(2317), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_requires] = ACTIONS(2317), + [sym_this] = ACTIONS(2317), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2317), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_FORWARD] = ACTIONS(2317), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2317), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2317), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2317), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2317), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_PS_GET] = ACTIONS(2317), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2317), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2317), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2317), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2317), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2317), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2317), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2317), + [anon_sym_MOZ_COLD] = ACTIONS(2317), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2317), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2317), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2317), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2317), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2317), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2317), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2317), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2317), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2317), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2317), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2317), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2317), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2317), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_NONNULL] = ACTIONS(2317), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2317), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2317), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2317), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2317), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2317), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2317), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2317), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2317), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2317), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2317), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2317), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2317), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2317), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2317), + [anon_sym_MOZ_RAII] = ACTIONS(2317), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2317), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2317), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2317), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2317), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2317), + }, + [STATE(229)] = { + [sym_identifier] = ACTIONS(2321), + [aux_sym_preproc_include_token1] = ACTIONS(2321), + [aux_sym_preproc_def_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token2] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2321), + [aux_sym_preproc_else_token1] = ACTIONS(2321), + [aux_sym_preproc_elif_token1] = ACTIONS(2321), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2321), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2321), + [sym_preproc_directive] = ACTIONS(2321), + [anon_sym_LPAREN2] = ACTIONS(2323), + [anon_sym_BANG] = ACTIONS(2323), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_AMP_AMP] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_typedef] = ACTIONS(2321), + [anon_sym_virtual] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym___attribute__] = ACTIONS(2321), + [anon_sym___attribute] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2323), + [anon_sym___declspec] = ACTIONS(2321), + [anon_sym___based] = ACTIONS(2321), + [anon_sym___cdecl] = ACTIONS(2321), + [anon_sym___clrcall] = ACTIONS(2321), + [anon_sym___stdcall] = ACTIONS(2321), + [anon_sym___fastcall] = ACTIONS(2321), + [anon_sym___thiscall] = ACTIONS(2321), + [anon_sym___vectorcall] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_signed] = ACTIONS(2321), + [anon_sym_unsigned] = ACTIONS(2321), + [anon_sym_long] = ACTIONS(2321), + [anon_sym_short] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_register] = ACTIONS(2321), + [anon_sym_inline] = ACTIONS(2321), + [anon_sym___inline] = ACTIONS(2321), + [anon_sym___inline__] = ACTIONS(2321), + [anon_sym___forceinline] = ACTIONS(2321), + [anon_sym_thread_local] = ACTIONS(2321), + [anon_sym___thread] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym__Nonnull] = ACTIONS(2321), + [anon_sym_mutable] = ACTIONS(2321), + [anon_sym_constinit] = ACTIONS(2321), + [anon_sym_consteval] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2321), + [anon_sym__Alignas] = ACTIONS(2321), + [sym_primitive_type] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_switch] = ACTIONS(2321), + [anon_sym_case] = ACTIONS(2321), + [anon_sym_default] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_do] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_goto] = ACTIONS(2321), + [anon_sym___try] = ACTIONS(2321), + [anon_sym___leave] = ACTIONS(2321), + [anon_sym_not] = ACTIONS(2321), + [anon_sym_compl] = ACTIONS(2321), + [anon_sym_DASH_DASH] = ACTIONS(2323), + [anon_sym_PLUS_PLUS] = ACTIONS(2323), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2321), + [anon_sym___alignof] = ACTIONS(2321), + [anon_sym__alignof] = ACTIONS(2321), + [anon_sym_alignof] = ACTIONS(2321), + [anon_sym__Alignof] = ACTIONS(2321), + [anon_sym_offsetof] = ACTIONS(2321), + [anon_sym__Generic] = ACTIONS(2321), + [anon_sym_asm] = ACTIONS(2321), + [anon_sym___asm__] = ACTIONS(2321), + [anon_sym___asm] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2323), + [anon_sym_u_SQUOTE] = ACTIONS(2323), + [anon_sym_U_SQUOTE] = ACTIONS(2323), + [anon_sym_u8_SQUOTE] = ACTIONS(2323), + [anon_sym_SQUOTE] = ACTIONS(2323), + [anon_sym_L_DQUOTE] = ACTIONS(2323), + [anon_sym_u_DQUOTE] = ACTIONS(2323), + [anon_sym_U_DQUOTE] = ACTIONS(2323), + [anon_sym_u8_DQUOTE] = ACTIONS(2323), + [anon_sym_DQUOTE] = ACTIONS(2323), + [sym_true] = ACTIONS(2321), + [sym_false] = ACTIONS(2321), + [anon_sym_NULL] = ACTIONS(2321), + [anon_sym_nullptr] = ACTIONS(2321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2321), + [anon_sym_decltype] = ACTIONS(2321), + [anon_sym_explicit] = ACTIONS(2321), + [anon_sym_typename] = ACTIONS(2321), + [anon_sym_template] = ACTIONS(2321), + [anon_sym_operator] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [anon_sym_delete] = ACTIONS(2321), + [anon_sym_throw] = ACTIONS(2321), + [anon_sym_namespace] = ACTIONS(2321), + [anon_sym_using] = ACTIONS(2321), + [anon_sym_static_assert] = ACTIONS(2321), + [anon_sym_concept] = ACTIONS(2321), + [anon_sym_co_return] = ACTIONS(2321), + [anon_sym_co_yield] = ACTIONS(2321), + [anon_sym_R_DQUOTE] = ACTIONS(2323), + [anon_sym_LR_DQUOTE] = ACTIONS(2323), + [anon_sym_uR_DQUOTE] = ACTIONS(2323), + [anon_sym_UR_DQUOTE] = ACTIONS(2323), + [anon_sym_u8R_DQUOTE] = ACTIONS(2323), + [anon_sym_co_await] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2321), + [sym_this] = ACTIONS(2321), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_FORWARD] = ACTIONS(2321), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2321), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_PS_GET] = ACTIONS(2321), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2321), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2321), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2321), + [anon_sym_MOZ_COLD] = ACTIONS(2321), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2321), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2321), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2321), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2321), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2321), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2321), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2321), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2321), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2321), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2321), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2321), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2321), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_RAII] = ACTIONS(2321), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2321), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2321), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2321), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2321), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2321), + }, + [STATE(230)] = { + [sym_identifier] = ACTIONS(2321), + [aux_sym_preproc_include_token1] = ACTIONS(2321), + [aux_sym_preproc_def_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token2] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2321), + [aux_sym_preproc_else_token1] = ACTIONS(2321), + [aux_sym_preproc_elif_token1] = ACTIONS(2321), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2321), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2321), + [sym_preproc_directive] = ACTIONS(2321), + [anon_sym_LPAREN2] = ACTIONS(2323), + [anon_sym_BANG] = ACTIONS(2323), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_AMP_AMP] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_typedef] = ACTIONS(2321), + [anon_sym_virtual] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym___attribute__] = ACTIONS(2321), + [anon_sym___attribute] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2323), + [anon_sym___declspec] = ACTIONS(2321), + [anon_sym___based] = ACTIONS(2321), + [anon_sym___cdecl] = ACTIONS(2321), + [anon_sym___clrcall] = ACTIONS(2321), + [anon_sym___stdcall] = ACTIONS(2321), + [anon_sym___fastcall] = ACTIONS(2321), + [anon_sym___thiscall] = ACTIONS(2321), + [anon_sym___vectorcall] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2323), [anon_sym_signed] = ACTIONS(2321), [anon_sym_unsigned] = ACTIONS(2321), [anon_sym_long] = ACTIONS(2321), [anon_sym_short] = ACTIONS(2321), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_register] = ACTIONS(2321), + [anon_sym_inline] = ACTIONS(2321), + [anon_sym___inline] = ACTIONS(2321), + [anon_sym___inline__] = ACTIONS(2321), + [anon_sym___forceinline] = ACTIONS(2321), + [anon_sym_thread_local] = ACTIONS(2321), + [anon_sym___thread] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym__Nonnull] = ACTIONS(2321), + [anon_sym_mutable] = ACTIONS(2321), + [anon_sym_constinit] = ACTIONS(2321), + [anon_sym_consteval] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2321), + [anon_sym__Alignas] = ACTIONS(2321), + [sym_primitive_type] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_switch] = ACTIONS(2321), + [anon_sym_case] = ACTIONS(2321), + [anon_sym_default] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_do] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_goto] = ACTIONS(2321), + [anon_sym___try] = ACTIONS(2321), + [anon_sym___leave] = ACTIONS(2321), + [anon_sym_not] = ACTIONS(2321), + [anon_sym_compl] = ACTIONS(2321), + [anon_sym_DASH_DASH] = ACTIONS(2323), + [anon_sym_PLUS_PLUS] = ACTIONS(2323), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2321), + [anon_sym___alignof] = ACTIONS(2321), + [anon_sym__alignof] = ACTIONS(2321), + [anon_sym_alignof] = ACTIONS(2321), + [anon_sym__Alignof] = ACTIONS(2321), + [anon_sym_offsetof] = ACTIONS(2321), + [anon_sym__Generic] = ACTIONS(2321), + [anon_sym_asm] = ACTIONS(2321), + [anon_sym___asm__] = ACTIONS(2321), + [anon_sym___asm] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2323), + [anon_sym_u_SQUOTE] = ACTIONS(2323), + [anon_sym_U_SQUOTE] = ACTIONS(2323), + [anon_sym_u8_SQUOTE] = ACTIONS(2323), + [anon_sym_SQUOTE] = ACTIONS(2323), + [anon_sym_L_DQUOTE] = ACTIONS(2323), + [anon_sym_u_DQUOTE] = ACTIONS(2323), + [anon_sym_U_DQUOTE] = ACTIONS(2323), + [anon_sym_u8_DQUOTE] = ACTIONS(2323), + [anon_sym_DQUOTE] = ACTIONS(2323), + [sym_true] = ACTIONS(2321), + [sym_false] = ACTIONS(2321), + [anon_sym_NULL] = ACTIONS(2321), + [anon_sym_nullptr] = ACTIONS(2321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2321), + [anon_sym_decltype] = ACTIONS(2321), + [anon_sym_explicit] = ACTIONS(2321), + [anon_sym_typename] = ACTIONS(2321), + [anon_sym_template] = ACTIONS(2321), + [anon_sym_operator] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [anon_sym_delete] = ACTIONS(2321), + [anon_sym_throw] = ACTIONS(2321), + [anon_sym_namespace] = ACTIONS(2321), + [anon_sym_using] = ACTIONS(2321), + [anon_sym_static_assert] = ACTIONS(2321), + [anon_sym_concept] = ACTIONS(2321), + [anon_sym_co_return] = ACTIONS(2321), + [anon_sym_co_yield] = ACTIONS(2321), + [anon_sym_R_DQUOTE] = ACTIONS(2323), + [anon_sym_LR_DQUOTE] = ACTIONS(2323), + [anon_sym_uR_DQUOTE] = ACTIONS(2323), + [anon_sym_UR_DQUOTE] = ACTIONS(2323), + [anon_sym_u8R_DQUOTE] = ACTIONS(2323), + [anon_sym_co_await] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2321), + [sym_this] = ACTIONS(2321), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_FORWARD] = ACTIONS(2321), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2321), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_PS_GET] = ACTIONS(2321), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2321), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2321), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2321), + [anon_sym_MOZ_COLD] = ACTIONS(2321), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2321), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2321), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2321), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2321), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2321), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2321), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2321), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2321), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2321), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2321), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2321), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2321), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_RAII] = ACTIONS(2321), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2321), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2321), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2321), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2321), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2321), + }, + [STATE(231)] = { + [sym_identifier] = ACTIONS(2325), + [aux_sym_preproc_include_token1] = ACTIONS(2325), + [aux_sym_preproc_def_token1] = ACTIONS(2325), + [aux_sym_preproc_if_token1] = ACTIONS(2325), + [aux_sym_preproc_if_token2] = ACTIONS(2325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2325), + [aux_sym_preproc_else_token1] = ACTIONS(2325), + [aux_sym_preproc_elif_token1] = ACTIONS(2325), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2325), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2325), + [sym_preproc_directive] = ACTIONS(2325), + [anon_sym_LPAREN2] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_PLUS] = ACTIONS(2325), + [anon_sym_STAR] = ACTIONS(2327), + [anon_sym_AMP_AMP] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym___extension__] = ACTIONS(2325), + [anon_sym_typedef] = ACTIONS(2325), + [anon_sym_virtual] = ACTIONS(2325), + [anon_sym_extern] = ACTIONS(2325), + [anon_sym___attribute__] = ACTIONS(2325), + [anon_sym___attribute] = ACTIONS(2325), + [anon_sym_COLON_COLON] = ACTIONS(2327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), + [anon_sym___declspec] = ACTIONS(2325), + [anon_sym___based] = ACTIONS(2325), + [anon_sym___cdecl] = ACTIONS(2325), + [anon_sym___clrcall] = ACTIONS(2325), + [anon_sym___stdcall] = ACTIONS(2325), + [anon_sym___fastcall] = ACTIONS(2325), + [anon_sym___thiscall] = ACTIONS(2325), + [anon_sym___vectorcall] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_signed] = ACTIONS(2325), + [anon_sym_unsigned] = ACTIONS(2325), + [anon_sym_long] = ACTIONS(2325), + [anon_sym_short] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_static] = ACTIONS(2325), + [anon_sym_register] = ACTIONS(2325), + [anon_sym_inline] = ACTIONS(2325), + [anon_sym___inline] = ACTIONS(2325), + [anon_sym___inline__] = ACTIONS(2325), + [anon_sym___forceinline] = ACTIONS(2325), + [anon_sym_thread_local] = ACTIONS(2325), + [anon_sym___thread] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_constexpr] = ACTIONS(2325), + [anon_sym_volatile] = ACTIONS(2325), + [anon_sym_restrict] = ACTIONS(2325), + [anon_sym___restrict__] = ACTIONS(2325), + [anon_sym__Atomic] = ACTIONS(2325), + [anon_sym__Noreturn] = ACTIONS(2325), + [anon_sym_noreturn] = ACTIONS(2325), + [anon_sym__Nonnull] = ACTIONS(2325), + [anon_sym_mutable] = ACTIONS(2325), + [anon_sym_constinit] = ACTIONS(2325), + [anon_sym_consteval] = ACTIONS(2325), + [anon_sym_alignas] = ACTIONS(2325), + [anon_sym__Alignas] = ACTIONS(2325), + [sym_primitive_type] = ACTIONS(2325), + [anon_sym_enum] = ACTIONS(2325), [anon_sym_class] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(2327), + [anon_sym_struct] = ACTIONS(2325), + [anon_sym_union] = ACTIONS(2325), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2325), + [anon_sym_case] = ACTIONS(2325), + [anon_sym_default] = ACTIONS(2325), + [anon_sym_while] = ACTIONS(2325), + [anon_sym_do] = ACTIONS(2325), + [anon_sym_for] = ACTIONS(2325), + [anon_sym_return] = ACTIONS(2325), + [anon_sym_break] = ACTIONS(2325), + [anon_sym_continue] = ACTIONS(2325), + [anon_sym_goto] = ACTIONS(2325), + [anon_sym___try] = ACTIONS(2325), + [anon_sym___leave] = ACTIONS(2325), + [anon_sym_not] = ACTIONS(2325), + [anon_sym_compl] = ACTIONS(2325), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_sizeof] = ACTIONS(2325), + [anon_sym___alignof__] = ACTIONS(2325), + [anon_sym___alignof] = ACTIONS(2325), + [anon_sym__alignof] = ACTIONS(2325), + [anon_sym_alignof] = ACTIONS(2325), + [anon_sym__Alignof] = ACTIONS(2325), + [anon_sym_offsetof] = ACTIONS(2325), + [anon_sym__Generic] = ACTIONS(2325), + [anon_sym_asm] = ACTIONS(2325), + [anon_sym___asm__] = ACTIONS(2325), + [anon_sym___asm] = ACTIONS(2325), + [sym_number_literal] = ACTIONS(2327), + [anon_sym_L_SQUOTE] = ACTIONS(2327), + [anon_sym_u_SQUOTE] = ACTIONS(2327), + [anon_sym_U_SQUOTE] = ACTIONS(2327), + [anon_sym_u8_SQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2325), + [sym_false] = ACTIONS(2325), + [anon_sym_NULL] = ACTIONS(2325), + [anon_sym_nullptr] = ACTIONS(2325), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2325), + [anon_sym_decltype] = ACTIONS(2325), + [anon_sym_explicit] = ACTIONS(2325), + [anon_sym_typename] = ACTIONS(2325), + [anon_sym_template] = ACTIONS(2325), + [anon_sym_operator] = ACTIONS(2325), + [anon_sym_try] = ACTIONS(2325), + [anon_sym_delete] = ACTIONS(2325), + [anon_sym_throw] = ACTIONS(2325), + [anon_sym_namespace] = ACTIONS(2325), + [anon_sym_using] = ACTIONS(2325), + [anon_sym_static_assert] = ACTIONS(2325), + [anon_sym_concept] = ACTIONS(2325), + [anon_sym_co_return] = ACTIONS(2325), + [anon_sym_co_yield] = ACTIONS(2325), + [anon_sym_R_DQUOTE] = ACTIONS(2327), + [anon_sym_LR_DQUOTE] = ACTIONS(2327), + [anon_sym_uR_DQUOTE] = ACTIONS(2327), + [anon_sym_UR_DQUOTE] = ACTIONS(2327), + [anon_sym_u8R_DQUOTE] = ACTIONS(2327), + [anon_sym_co_await] = ACTIONS(2325), + [anon_sym_new] = ACTIONS(2325), + [anon_sym_requires] = ACTIONS(2325), + [sym_this] = ACTIONS(2325), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2325), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_FORWARD] = ACTIONS(2325), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2325), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2325), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2325), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2325), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_PS_GET] = ACTIONS(2325), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2325), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2325), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2325), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2325), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2325), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2325), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2325), + [anon_sym_MOZ_COLD] = ACTIONS(2325), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2325), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2325), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2325), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2325), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2325), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2325), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2325), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2325), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2325), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2325), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2325), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2325), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2325), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_NONNULL] = ACTIONS(2325), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2325), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2325), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2325), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2325), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2325), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2325), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2325), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2325), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2325), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2325), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2325), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2325), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2325), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2325), + [anon_sym_MOZ_RAII] = ACTIONS(2325), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2325), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2325), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2325), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2325), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2325), + }, + [STATE(232)] = { + [sym_identifier] = ACTIONS(2329), + [aux_sym_preproc_include_token1] = ACTIONS(2329), + [aux_sym_preproc_def_token1] = ACTIONS(2329), + [aux_sym_preproc_if_token1] = ACTIONS(2329), + [aux_sym_preproc_if_token2] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2329), + [aux_sym_preproc_else_token1] = ACTIONS(2329), + [aux_sym_preproc_elif_token1] = ACTIONS(2329), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2329), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2329), + [sym_preproc_directive] = ACTIONS(2329), + [anon_sym_LPAREN2] = ACTIONS(2331), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(2331), + [anon_sym_AMP_AMP] = ACTIONS(2331), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_SEMI] = ACTIONS(2331), + [anon_sym___extension__] = ACTIONS(2329), + [anon_sym_typedef] = ACTIONS(2329), + [anon_sym_virtual] = ACTIONS(2329), + [anon_sym_extern] = ACTIONS(2329), + [anon_sym___attribute__] = ACTIONS(2329), + [anon_sym___attribute] = ACTIONS(2329), + [anon_sym_COLON_COLON] = ACTIONS(2331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2331), + [anon_sym___declspec] = ACTIONS(2329), + [anon_sym___based] = ACTIONS(2329), + [anon_sym___cdecl] = ACTIONS(2329), + [anon_sym___clrcall] = ACTIONS(2329), + [anon_sym___stdcall] = ACTIONS(2329), + [anon_sym___fastcall] = ACTIONS(2329), + [anon_sym___thiscall] = ACTIONS(2329), + [anon_sym___vectorcall] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_signed] = ACTIONS(2329), + [anon_sym_unsigned] = ACTIONS(2329), + [anon_sym_long] = ACTIONS(2329), + [anon_sym_short] = ACTIONS(2329), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_register] = ACTIONS(2329), + [anon_sym_inline] = ACTIONS(2329), + [anon_sym___inline] = ACTIONS(2329), + [anon_sym___inline__] = ACTIONS(2329), + [anon_sym___forceinline] = ACTIONS(2329), + [anon_sym_thread_local] = ACTIONS(2329), + [anon_sym___thread] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_constexpr] = ACTIONS(2329), + [anon_sym_volatile] = ACTIONS(2329), + [anon_sym_restrict] = ACTIONS(2329), + [anon_sym___restrict__] = ACTIONS(2329), + [anon_sym__Atomic] = ACTIONS(2329), + [anon_sym__Noreturn] = ACTIONS(2329), + [anon_sym_noreturn] = ACTIONS(2329), + [anon_sym__Nonnull] = ACTIONS(2329), + [anon_sym_mutable] = ACTIONS(2329), + [anon_sym_constinit] = ACTIONS(2329), + [anon_sym_consteval] = ACTIONS(2329), + [anon_sym_alignas] = ACTIONS(2329), + [anon_sym__Alignas] = ACTIONS(2329), + [sym_primitive_type] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_class] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2329), [anon_sym_union] = ACTIONS(2329), - [anon_sym_STAR_EQ] = ACTIONS(2315), - [anon_sym_SLASH_EQ] = ACTIONS(2315), - [anon_sym_PERCENT_EQ] = ACTIONS(2315), - [anon_sym_PLUS_EQ] = ACTIONS(2315), - [anon_sym_DASH_EQ] = ACTIONS(2315), - [anon_sym_LT_LT_EQ] = ACTIONS(2315), - [anon_sym_GT_GT_EQ] = ACTIONS(2315), - [anon_sym_AMP_EQ] = ACTIONS(2315), - [anon_sym_CARET_EQ] = ACTIONS(2315), - [anon_sym_PIPE_EQ] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_GT] = ACTIONS(2317), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(2331), - [anon_sym_template] = ACTIONS(1035), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_switch] = ACTIONS(2329), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_do] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_goto] = ACTIONS(2329), + [anon_sym___try] = ACTIONS(2329), + [anon_sym___leave] = ACTIONS(2329), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(2331), + [anon_sym_PLUS_PLUS] = ACTIONS(2331), + [anon_sym_sizeof] = ACTIONS(2329), + [anon_sym___alignof__] = ACTIONS(2329), + [anon_sym___alignof] = ACTIONS(2329), + [anon_sym__alignof] = ACTIONS(2329), + [anon_sym_alignof] = ACTIONS(2329), + [anon_sym__Alignof] = ACTIONS(2329), + [anon_sym_offsetof] = ACTIONS(2329), + [anon_sym__Generic] = ACTIONS(2329), + [anon_sym_asm] = ACTIONS(2329), + [anon_sym___asm__] = ACTIONS(2329), + [anon_sym___asm] = ACTIONS(2329), + [sym_number_literal] = ACTIONS(2331), + [anon_sym_L_SQUOTE] = ACTIONS(2331), + [anon_sym_u_SQUOTE] = ACTIONS(2331), + [anon_sym_U_SQUOTE] = ACTIONS(2331), + [anon_sym_u8_SQUOTE] = ACTIONS(2331), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_L_DQUOTE] = ACTIONS(2331), + [anon_sym_u_DQUOTE] = ACTIONS(2331), + [anon_sym_U_DQUOTE] = ACTIONS(2331), + [anon_sym_u8_DQUOTE] = ACTIONS(2331), + [anon_sym_DQUOTE] = ACTIONS(2331), + [sym_true] = ACTIONS(2329), + [sym_false] = ACTIONS(2329), + [anon_sym_NULL] = ACTIONS(2329), + [anon_sym_nullptr] = ACTIONS(2329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2329), + [anon_sym_decltype] = ACTIONS(2329), + [anon_sym_explicit] = ACTIONS(2329), + [anon_sym_typename] = ACTIONS(2329), + [anon_sym_template] = ACTIONS(2329), + [anon_sym_operator] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2329), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_throw] = ACTIONS(2329), + [anon_sym_namespace] = ACTIONS(2329), + [anon_sym_using] = ACTIONS(2329), + [anon_sym_static_assert] = ACTIONS(2329), + [anon_sym_concept] = ACTIONS(2329), + [anon_sym_co_return] = ACTIONS(2329), + [anon_sym_co_yield] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2329), + [anon_sym_requires] = ACTIONS(2329), + [sym_this] = ACTIONS(2329), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2329), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_FORWARD] = ACTIONS(2329), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2329), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2329), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2329), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2329), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_PS_GET] = ACTIONS(2329), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2329), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2329), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2329), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2329), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2329), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2329), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2329), + [anon_sym_MOZ_COLD] = ACTIONS(2329), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2329), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2329), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2329), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2329), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2329), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2329), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2329), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2329), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2329), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2329), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2329), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2329), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2329), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_NONNULL] = ACTIONS(2329), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2329), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2329), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2329), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2329), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2329), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2329), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2329), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2329), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2329), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2329), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2329), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2329), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2329), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2329), + [anon_sym_MOZ_RAII] = ACTIONS(2329), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2329), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2329), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2329), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2329), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2329), + }, + [STATE(233)] = { + [sym_identifier] = ACTIONS(2333), + [aux_sym_preproc_include_token1] = ACTIONS(2333), + [aux_sym_preproc_def_token1] = ACTIONS(2333), + [aux_sym_preproc_if_token1] = ACTIONS(2333), + [aux_sym_preproc_if_token2] = ACTIONS(2333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2333), + [aux_sym_preproc_else_token1] = ACTIONS(2333), + [aux_sym_preproc_elif_token1] = ACTIONS(2333), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2333), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2333), + [sym_preproc_directive] = ACTIONS(2333), + [anon_sym_LPAREN2] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2333), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym___extension__] = ACTIONS(2333), + [anon_sym_typedef] = ACTIONS(2333), + [anon_sym_virtual] = ACTIONS(2333), + [anon_sym_extern] = ACTIONS(2333), + [anon_sym___attribute__] = ACTIONS(2333), + [anon_sym___attribute] = ACTIONS(2333), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), + [anon_sym___declspec] = ACTIONS(2333), + [anon_sym___based] = ACTIONS(2333), + [anon_sym___cdecl] = ACTIONS(2333), + [anon_sym___clrcall] = ACTIONS(2333), + [anon_sym___stdcall] = ACTIONS(2333), + [anon_sym___fastcall] = ACTIONS(2333), + [anon_sym___thiscall] = ACTIONS(2333), + [anon_sym___vectorcall] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_signed] = ACTIONS(2333), + [anon_sym_unsigned] = ACTIONS(2333), + [anon_sym_long] = ACTIONS(2333), + [anon_sym_short] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_register] = ACTIONS(2333), + [anon_sym_inline] = ACTIONS(2333), + [anon_sym___inline] = ACTIONS(2333), + [anon_sym___inline__] = ACTIONS(2333), + [anon_sym___forceinline] = ACTIONS(2333), + [anon_sym_thread_local] = ACTIONS(2333), + [anon_sym___thread] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [anon_sym_constexpr] = ACTIONS(2333), + [anon_sym_volatile] = ACTIONS(2333), + [anon_sym_restrict] = ACTIONS(2333), + [anon_sym___restrict__] = ACTIONS(2333), + [anon_sym__Atomic] = ACTIONS(2333), + [anon_sym__Noreturn] = ACTIONS(2333), + [anon_sym_noreturn] = ACTIONS(2333), + [anon_sym__Nonnull] = ACTIONS(2333), + [anon_sym_mutable] = ACTIONS(2333), + [anon_sym_constinit] = ACTIONS(2333), + [anon_sym_consteval] = ACTIONS(2333), + [anon_sym_alignas] = ACTIONS(2333), + [anon_sym__Alignas] = ACTIONS(2333), + [sym_primitive_type] = ACTIONS(2333), + [anon_sym_enum] = ACTIONS(2333), + [anon_sym_class] = ACTIONS(2333), + [anon_sym_struct] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_switch] = ACTIONS(2333), + [anon_sym_case] = ACTIONS(2333), + [anon_sym_default] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_break] = ACTIONS(2333), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_goto] = ACTIONS(2333), + [anon_sym___try] = ACTIONS(2333), + [anon_sym___leave] = ACTIONS(2333), + [anon_sym_not] = ACTIONS(2333), + [anon_sym_compl] = ACTIONS(2333), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_sizeof] = ACTIONS(2333), + [anon_sym___alignof__] = ACTIONS(2333), + [anon_sym___alignof] = ACTIONS(2333), + [anon_sym__alignof] = ACTIONS(2333), + [anon_sym_alignof] = ACTIONS(2333), + [anon_sym__Alignof] = ACTIONS(2333), + [anon_sym_offsetof] = ACTIONS(2333), + [anon_sym__Generic] = ACTIONS(2333), + [anon_sym_asm] = ACTIONS(2333), + [anon_sym___asm__] = ACTIONS(2333), + [anon_sym___asm] = ACTIONS(2333), + [sym_number_literal] = ACTIONS(2335), + [anon_sym_L_SQUOTE] = ACTIONS(2335), + [anon_sym_u_SQUOTE] = ACTIONS(2335), + [anon_sym_U_SQUOTE] = ACTIONS(2335), + [anon_sym_u8_SQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_L_DQUOTE] = ACTIONS(2335), + [anon_sym_u_DQUOTE] = ACTIONS(2335), + [anon_sym_U_DQUOTE] = ACTIONS(2335), + [anon_sym_u8_DQUOTE] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym_true] = ACTIONS(2333), + [sym_false] = ACTIONS(2333), + [anon_sym_NULL] = ACTIONS(2333), + [anon_sym_nullptr] = ACTIONS(2333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2333), + [anon_sym_decltype] = ACTIONS(2333), + [anon_sym_explicit] = ACTIONS(2333), + [anon_sym_typename] = ACTIONS(2333), + [anon_sym_template] = ACTIONS(2333), + [anon_sym_operator] = ACTIONS(2333), + [anon_sym_try] = ACTIONS(2333), [anon_sym_delete] = ACTIONS(2333), - [anon_sym_co_await] = ACTIONS(2317), + [anon_sym_throw] = ACTIONS(2333), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_using] = ACTIONS(2333), + [anon_sym_static_assert] = ACTIONS(2333), + [anon_sym_concept] = ACTIONS(2333), + [anon_sym_co_return] = ACTIONS(2333), + [anon_sym_co_yield] = ACTIONS(2333), + [anon_sym_R_DQUOTE] = ACTIONS(2335), + [anon_sym_LR_DQUOTE] = ACTIONS(2335), + [anon_sym_uR_DQUOTE] = ACTIONS(2335), + [anon_sym_UR_DQUOTE] = ACTIONS(2335), + [anon_sym_u8R_DQUOTE] = ACTIONS(2335), + [anon_sym_co_await] = ACTIONS(2333), [anon_sym_new] = ACTIONS(2333), - [anon_sym_DASH_GT_STAR] = ACTIONS(2315), - [anon_sym_LPAREN_RPAREN] = ACTIONS(2315), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2315), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(2335), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [724] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [725] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [726] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [727] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [728] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [729] = { - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1673), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_typedef] = ACTIONS(1671), - [anon_sym_extern] = ACTIONS(1671), - [anon_sym___attribute__] = ACTIONS(1671), - [anon_sym_COLON_COLON] = ACTIONS(1673), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1673), - [anon_sym___declspec] = ACTIONS(1671), - [anon_sym_LBRACE] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_register] = ACTIONS(1671), - [anon_sym_inline] = ACTIONS(1671), - [anon_sym_thread_local] = ACTIONS(1671), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_volatile] = ACTIONS(1671), - [anon_sym_restrict] = ACTIONS(1671), - [anon_sym__Atomic] = ACTIONS(1671), - [anon_sym_mutable] = ACTIONS(1671), - [anon_sym_constexpr] = ACTIONS(1671), - [anon_sym_signed] = ACTIONS(1671), - [anon_sym_unsigned] = ACTIONS(1671), - [anon_sym_long] = ACTIONS(1671), - [anon_sym_short] = ACTIONS(1671), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_enum] = ACTIONS(1671), - [anon_sym_class] = ACTIONS(1671), - [anon_sym_struct] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_if] = ACTIONS(1671), - [anon_sym_else] = ACTIONS(1671), - [anon_sym_switch] = ACTIONS(1671), - [anon_sym_while] = ACTIONS(1671), - [anon_sym_do] = ACTIONS(1671), - [anon_sym_for] = ACTIONS(1671), - [anon_sym_return] = ACTIONS(1671), - [anon_sym_break] = ACTIONS(1671), - [anon_sym_continue] = ACTIONS(1671), - [anon_sym_goto] = ACTIONS(1671), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1671), - [sym_number_literal] = ACTIONS(1673), - [anon_sym_L_SQUOTE] = ACTIONS(1673), - [anon_sym_u_SQUOTE] = ACTIONS(1673), - [anon_sym_U_SQUOTE] = ACTIONS(1673), - [anon_sym_u8_SQUOTE] = ACTIONS(1673), - [anon_sym_SQUOTE] = ACTIONS(1673), - [anon_sym_L_DQUOTE] = ACTIONS(1673), - [anon_sym_u_DQUOTE] = ACTIONS(1673), - [anon_sym_U_DQUOTE] = ACTIONS(1673), - [anon_sym_u8_DQUOTE] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1673), - [sym_true] = ACTIONS(1671), - [sym_false] = ACTIONS(1671), - [sym_null] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1671), - [anon_sym_virtual] = ACTIONS(1671), - [sym_auto] = ACTIONS(1671), - [anon_sym_typename] = ACTIONS(1671), - [anon_sym_template] = ACTIONS(1671), - [anon_sym_delete] = ACTIONS(1671), - [anon_sym_throw] = ACTIONS(1671), - [anon_sym_co_return] = ACTIONS(1671), - [anon_sym_co_yield] = ACTIONS(1671), - [anon_sym_try] = ACTIONS(1671), - [anon_sym_co_await] = ACTIONS(1671), - [anon_sym_new] = ACTIONS(1671), - [sym_this] = ACTIONS(1671), - [sym_nullptr] = ACTIONS(1671), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_FORWARD] = ACTIONS(1671), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1671), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_PS_GET] = ACTIONS(1671), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1671), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1671), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1671), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1671), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1671), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1671), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1671), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1671), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1671), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1671), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1671), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1671), - [anon_sym_MOZ_COLD] = ACTIONS(1671), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1671), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1671), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1671), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1671), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1671), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1671), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1671), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1671), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1671), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1671), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1671), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1671), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1671), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1671), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1671), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1671), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1671), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1671), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1671), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1671), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1671), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_NONNULL] = ACTIONS(1671), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1671), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1671), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1671), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1671), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1671), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_NORETURN] = ACTIONS(1671), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1671), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1671), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1671), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1671), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1671), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1671), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1671), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1671), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1671), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1671), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1671), - [anon_sym_MOZ_RAII] = ACTIONS(1671), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1671), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1671), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1671), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1671), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1671), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1671), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1671), - [sym_raw_string_literal] = ACTIONS(1673), - }, - [730] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [731] = { - [sym_identifier] = ACTIONS(1561), - [anon_sym_LPAREN2] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_typedef] = ACTIONS(1561), - [anon_sym_extern] = ACTIONS(1561), - [anon_sym___attribute__] = ACTIONS(1561), - [anon_sym_COLON_COLON] = ACTIONS(1563), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1563), - [anon_sym___declspec] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_static] = ACTIONS(1561), - [anon_sym_register] = ACTIONS(1561), - [anon_sym_inline] = ACTIONS(1561), - [anon_sym_thread_local] = ACTIONS(1561), - [anon_sym_const] = ACTIONS(1561), - [anon_sym_volatile] = ACTIONS(1561), - [anon_sym_restrict] = ACTIONS(1561), - [anon_sym__Atomic] = ACTIONS(1561), - [anon_sym_mutable] = ACTIONS(1561), - [anon_sym_constexpr] = ACTIONS(1561), - [anon_sym_signed] = ACTIONS(1561), - [anon_sym_unsigned] = ACTIONS(1561), - [anon_sym_long] = ACTIONS(1561), - [anon_sym_short] = ACTIONS(1561), - [sym_primitive_type] = ACTIONS(1561), - [anon_sym_enum] = ACTIONS(1561), - [anon_sym_class] = ACTIONS(1561), - [anon_sym_struct] = ACTIONS(1561), - [anon_sym_union] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1561), - [anon_sym_else] = ACTIONS(1561), - [anon_sym_switch] = ACTIONS(1561), - [anon_sym_while] = ACTIONS(1561), - [anon_sym_do] = ACTIONS(1561), - [anon_sym_for] = ACTIONS(1561), - [anon_sym_return] = ACTIONS(1561), - [anon_sym_break] = ACTIONS(1561), - [anon_sym_continue] = ACTIONS(1561), - [anon_sym_goto] = ACTIONS(1561), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_sizeof] = ACTIONS(1561), - [sym_number_literal] = ACTIONS(1563), - [anon_sym_L_SQUOTE] = ACTIONS(1563), - [anon_sym_u_SQUOTE] = ACTIONS(1563), - [anon_sym_U_SQUOTE] = ACTIONS(1563), - [anon_sym_u8_SQUOTE] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_L_DQUOTE] = ACTIONS(1563), - [anon_sym_u_DQUOTE] = ACTIONS(1563), - [anon_sym_U_DQUOTE] = ACTIONS(1563), - [anon_sym_u8_DQUOTE] = ACTIONS(1563), - [anon_sym_DQUOTE] = ACTIONS(1563), - [sym_true] = ACTIONS(1561), - [sym_false] = ACTIONS(1561), - [sym_null] = ACTIONS(1561), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1561), - [anon_sym_virtual] = ACTIONS(1561), - [sym_auto] = ACTIONS(1561), - [anon_sym_typename] = ACTIONS(1561), - [anon_sym_template] = ACTIONS(1561), - [anon_sym_delete] = ACTIONS(1561), - [anon_sym_throw] = ACTIONS(1561), - [anon_sym_co_return] = ACTIONS(1561), - [anon_sym_co_yield] = ACTIONS(1561), - [anon_sym_try] = ACTIONS(1561), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1561), - [sym_this] = ACTIONS(1561), - [sym_nullptr] = ACTIONS(1561), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_FORWARD] = ACTIONS(1561), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1561), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_PS_GET] = ACTIONS(1561), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1561), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1561), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1561), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1561), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1561), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1561), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1561), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1561), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1561), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1561), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1561), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1561), - [anon_sym_MOZ_COLD] = ACTIONS(1561), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1561), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1561), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1561), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1561), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1561), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1561), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1561), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1561), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1561), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1561), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1561), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1561), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1561), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1561), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1561), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1561), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1561), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1561), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1561), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1561), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1561), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_NONNULL] = ACTIONS(1561), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1561), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1561), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1561), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1561), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1561), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_NORETURN] = ACTIONS(1561), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1561), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1561), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1561), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1561), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1561), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1561), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1561), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1561), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1561), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1561), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1561), - [anon_sym_MOZ_RAII] = ACTIONS(1561), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1561), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1561), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1561), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1561), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1561), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1561), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1561), - [sym_raw_string_literal] = ACTIONS(1563), - }, - [732] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [733] = { - [sym_identifier] = ACTIONS(1637), - [anon_sym_LPAREN2] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_typedef] = ACTIONS(1637), - [anon_sym_extern] = ACTIONS(1637), - [anon_sym___attribute__] = ACTIONS(1637), - [anon_sym_COLON_COLON] = ACTIONS(1639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1639), - [anon_sym___declspec] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1637), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_register] = ACTIONS(1637), - [anon_sym_inline] = ACTIONS(1637), - [anon_sym_thread_local] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [anon_sym_volatile] = ACTIONS(1637), - [anon_sym_restrict] = ACTIONS(1637), - [anon_sym__Atomic] = ACTIONS(1637), - [anon_sym_mutable] = ACTIONS(1637), - [anon_sym_constexpr] = ACTIONS(1637), - [anon_sym_signed] = ACTIONS(1637), - [anon_sym_unsigned] = ACTIONS(1637), - [anon_sym_long] = ACTIONS(1637), - [anon_sym_short] = ACTIONS(1637), - [sym_primitive_type] = ACTIONS(1637), - [anon_sym_enum] = ACTIONS(1637), - [anon_sym_class] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(1637), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_else] = ACTIONS(1637), - [anon_sym_switch] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_do] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_goto] = ACTIONS(1637), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_sizeof] = ACTIONS(1637), - [sym_number_literal] = ACTIONS(1639), - [anon_sym_L_SQUOTE] = ACTIONS(1639), - [anon_sym_u_SQUOTE] = ACTIONS(1639), - [anon_sym_U_SQUOTE] = ACTIONS(1639), - [anon_sym_u8_SQUOTE] = ACTIONS(1639), - [anon_sym_SQUOTE] = ACTIONS(1639), - [anon_sym_L_DQUOTE] = ACTIONS(1639), - [anon_sym_u_DQUOTE] = ACTIONS(1639), - [anon_sym_U_DQUOTE] = ACTIONS(1639), - [anon_sym_u8_DQUOTE] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym_true] = ACTIONS(1637), - [sym_false] = ACTIONS(1637), - [sym_null] = ACTIONS(1637), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1637), - [anon_sym_virtual] = ACTIONS(1637), - [sym_auto] = ACTIONS(1637), - [anon_sym_typename] = ACTIONS(1637), - [anon_sym_template] = ACTIONS(1637), - [anon_sym_delete] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1637), - [anon_sym_co_return] = ACTIONS(1637), - [anon_sym_co_yield] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1637), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1637), - [sym_this] = ACTIONS(1637), - [sym_nullptr] = ACTIONS(1637), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_FORWARD] = ACTIONS(1637), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1637), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_PS_GET] = ACTIONS(1637), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1637), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1637), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1637), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1637), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1637), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1637), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1637), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1637), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1637), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1637), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1637), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1637), - [anon_sym_MOZ_COLD] = ACTIONS(1637), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1637), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1637), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1637), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1637), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1637), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1637), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1637), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1637), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1637), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1637), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1637), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1637), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1637), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1637), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1637), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1637), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1637), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1637), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1637), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1637), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1637), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_NONNULL] = ACTIONS(1637), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1637), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1637), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1637), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1637), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1637), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_NORETURN] = ACTIONS(1637), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1637), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1637), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1637), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1637), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1637), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1637), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1637), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1637), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1637), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1637), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1637), - [anon_sym_MOZ_RAII] = ACTIONS(1637), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1637), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1637), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1637), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1637), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1637), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1637), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1637), - [sym_raw_string_literal] = ACTIONS(1639), - }, - [734] = { - [sym_identifier] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1567), - [anon_sym_TILDE] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_typedef] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym___attribute__] = ACTIONS(1565), - [anon_sym_COLON_COLON] = ACTIONS(1567), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1567), - [anon_sym___declspec] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1565), - [anon_sym_register] = ACTIONS(1565), - [anon_sym_inline] = ACTIONS(1565), - [anon_sym_thread_local] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [anon_sym_volatile] = ACTIONS(1565), - [anon_sym_restrict] = ACTIONS(1565), - [anon_sym__Atomic] = ACTIONS(1565), - [anon_sym_mutable] = ACTIONS(1565), - [anon_sym_constexpr] = ACTIONS(1565), - [anon_sym_signed] = ACTIONS(1565), - [anon_sym_unsigned] = ACTIONS(1565), - [anon_sym_long] = ACTIONS(1565), - [anon_sym_short] = ACTIONS(1565), - [sym_primitive_type] = ACTIONS(1565), - [anon_sym_enum] = ACTIONS(1565), - [anon_sym_class] = ACTIONS(1565), - [anon_sym_struct] = ACTIONS(1565), - [anon_sym_union] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_switch] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_goto] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_PLUS_PLUS] = ACTIONS(1567), - [anon_sym_sizeof] = ACTIONS(1565), - [sym_number_literal] = ACTIONS(1567), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1567), - [anon_sym_u_DQUOTE] = ACTIONS(1567), - [anon_sym_U_DQUOTE] = ACTIONS(1567), - [anon_sym_u8_DQUOTE] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym_true] = ACTIONS(1565), - [sym_false] = ACTIONS(1565), - [sym_null] = ACTIONS(1565), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1565), - [anon_sym_virtual] = ACTIONS(1565), - [sym_auto] = ACTIONS(1565), - [anon_sym_typename] = ACTIONS(1565), - [anon_sym_template] = ACTIONS(1565), - [anon_sym_delete] = ACTIONS(1565), - [anon_sym_throw] = ACTIONS(1565), - [anon_sym_co_return] = ACTIONS(1565), - [anon_sym_co_yield] = ACTIONS(1565), - [anon_sym_try] = ACTIONS(1565), - [anon_sym_co_await] = ACTIONS(1565), - [anon_sym_new] = ACTIONS(1565), - [sym_this] = ACTIONS(1565), - [sym_nullptr] = ACTIONS(1565), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_FORWARD] = ACTIONS(1565), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1565), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_PS_GET] = ACTIONS(1565), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1565), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1565), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1565), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1565), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1565), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1565), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1565), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1565), - [anon_sym_MOZ_COLD] = ACTIONS(1565), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1565), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1565), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1565), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1565), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1565), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1565), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1565), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1565), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1565), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1565), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1565), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1565), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1565), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_NONNULL] = ACTIONS(1565), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1565), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1565), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1565), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1565), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1565), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1565), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1565), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1565), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1565), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1565), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1565), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1565), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1565), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1565), - [anon_sym_MOZ_RAII] = ACTIONS(1565), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1565), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1565), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1565), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1565), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1565), - [sym_raw_string_literal] = ACTIONS(1567), - }, - [735] = { - [sym_identifier] = ACTIONS(1557), - [anon_sym_LPAREN2] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_typedef] = ACTIONS(1557), - [anon_sym_extern] = ACTIONS(1557), - [anon_sym___attribute__] = ACTIONS(1557), - [anon_sym_COLON_COLON] = ACTIONS(1559), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1559), - [anon_sym___declspec] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_register] = ACTIONS(1557), - [anon_sym_inline] = ACTIONS(1557), - [anon_sym_thread_local] = ACTIONS(1557), - [anon_sym_const] = ACTIONS(1557), - [anon_sym_volatile] = ACTIONS(1557), - [anon_sym_restrict] = ACTIONS(1557), - [anon_sym__Atomic] = ACTIONS(1557), - [anon_sym_mutable] = ACTIONS(1557), - [anon_sym_constexpr] = ACTIONS(1557), - [anon_sym_signed] = ACTIONS(1557), - [anon_sym_unsigned] = ACTIONS(1557), - [anon_sym_long] = ACTIONS(1557), - [anon_sym_short] = ACTIONS(1557), - [sym_primitive_type] = ACTIONS(1557), - [anon_sym_enum] = ACTIONS(1557), - [anon_sym_class] = ACTIONS(1557), - [anon_sym_struct] = ACTIONS(1557), - [anon_sym_union] = ACTIONS(1557), - [anon_sym_if] = ACTIONS(1557), - [anon_sym_else] = ACTIONS(1557), - [anon_sym_switch] = ACTIONS(1557), - [anon_sym_while] = ACTIONS(1557), - [anon_sym_do] = ACTIONS(1557), - [anon_sym_for] = ACTIONS(1557), - [anon_sym_return] = ACTIONS(1557), - [anon_sym_break] = ACTIONS(1557), - [anon_sym_continue] = ACTIONS(1557), - [anon_sym_goto] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_sizeof] = ACTIONS(1557), - [sym_number_literal] = ACTIONS(1559), - [anon_sym_L_SQUOTE] = ACTIONS(1559), - [anon_sym_u_SQUOTE] = ACTIONS(1559), - [anon_sym_U_SQUOTE] = ACTIONS(1559), - [anon_sym_u8_SQUOTE] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1559), - [anon_sym_L_DQUOTE] = ACTIONS(1559), - [anon_sym_u_DQUOTE] = ACTIONS(1559), - [anon_sym_U_DQUOTE] = ACTIONS(1559), - [anon_sym_u8_DQUOTE] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1557), - [anon_sym_virtual] = ACTIONS(1557), - [sym_auto] = ACTIONS(1557), - [anon_sym_typename] = ACTIONS(1557), - [anon_sym_template] = ACTIONS(1557), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_throw] = ACTIONS(1557), - [anon_sym_co_return] = ACTIONS(1557), - [anon_sym_co_yield] = ACTIONS(1557), - [anon_sym_try] = ACTIONS(1557), - [anon_sym_co_await] = ACTIONS(1557), - [anon_sym_new] = ACTIONS(1557), - [sym_this] = ACTIONS(1557), - [sym_nullptr] = ACTIONS(1557), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_FORWARD] = ACTIONS(1557), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1557), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_PS_GET] = ACTIONS(1557), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1557), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1557), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1557), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1557), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1557), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1557), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1557), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1557), - [anon_sym_MOZ_COLD] = ACTIONS(1557), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1557), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1557), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1557), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1557), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1557), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1557), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1557), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1557), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1557), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1557), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1557), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1557), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1557), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_NONNULL] = ACTIONS(1557), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1557), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1557), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1557), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1557), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1557), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1557), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1557), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1557), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1557), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1557), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1557), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1557), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1557), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1557), - [anon_sym_MOZ_RAII] = ACTIONS(1557), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1557), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1557), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1557), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1557), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1557), - [sym_raw_string_literal] = ACTIONS(1559), - }, - [736] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [737] = { - [sym_identifier] = ACTIONS(1653), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_typedef] = ACTIONS(1653), - [anon_sym_extern] = ACTIONS(1653), - [anon_sym___attribute__] = ACTIONS(1653), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1655), - [anon_sym___declspec] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1653), - [anon_sym_register] = ACTIONS(1653), - [anon_sym_inline] = ACTIONS(1653), - [anon_sym_thread_local] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_volatile] = ACTIONS(1653), - [anon_sym_restrict] = ACTIONS(1653), - [anon_sym__Atomic] = ACTIONS(1653), - [anon_sym_mutable] = ACTIONS(1653), - [anon_sym_constexpr] = ACTIONS(1653), - [anon_sym_signed] = ACTIONS(1653), - [anon_sym_unsigned] = ACTIONS(1653), - [anon_sym_long] = ACTIONS(1653), - [anon_sym_short] = ACTIONS(1653), - [sym_primitive_type] = ACTIONS(1653), - [anon_sym_enum] = ACTIONS(1653), - [anon_sym_class] = ACTIONS(1653), - [anon_sym_struct] = ACTIONS(1653), - [anon_sym_union] = ACTIONS(1653), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_else] = ACTIONS(2337), - [anon_sym_switch] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_do] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_goto] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_sizeof] = ACTIONS(1653), - [sym_number_literal] = ACTIONS(1655), - [anon_sym_L_SQUOTE] = ACTIONS(1655), - [anon_sym_u_SQUOTE] = ACTIONS(1655), - [anon_sym_U_SQUOTE] = ACTIONS(1655), - [anon_sym_u8_SQUOTE] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [anon_sym_L_DQUOTE] = ACTIONS(1655), - [anon_sym_u_DQUOTE] = ACTIONS(1655), - [anon_sym_U_DQUOTE] = ACTIONS(1655), - [anon_sym_u8_DQUOTE] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1653), - [anon_sym_virtual] = ACTIONS(1653), - [sym_auto] = ACTIONS(1653), - [anon_sym_typename] = ACTIONS(1653), - [anon_sym_template] = ACTIONS(1653), - [anon_sym_delete] = ACTIONS(1653), - [anon_sym_throw] = ACTIONS(1653), - [anon_sym_co_return] = ACTIONS(1653), - [anon_sym_co_yield] = ACTIONS(1653), - [anon_sym_try] = ACTIONS(1653), - [anon_sym_co_await] = ACTIONS(1653), - [anon_sym_new] = ACTIONS(1653), - [sym_this] = ACTIONS(1653), - [sym_nullptr] = ACTIONS(1653), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_FORWARD] = ACTIONS(1653), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1653), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_PS_GET] = ACTIONS(1653), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1653), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1653), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1653), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1653), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1653), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1653), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1653), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1653), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1653), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1653), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1653), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1653), - [anon_sym_MOZ_COLD] = ACTIONS(1653), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1653), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1653), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1653), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1653), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1653), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1653), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1653), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1653), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1653), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1653), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1653), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1653), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1653), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1653), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1653), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1653), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1653), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1653), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1653), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1653), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1653), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_NONNULL] = ACTIONS(1653), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1653), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1653), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1653), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1653), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1653), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_NORETURN] = ACTIONS(1653), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1653), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1653), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1653), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1653), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1653), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1653), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1653), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1653), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1653), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1653), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1653), - [anon_sym_MOZ_RAII] = ACTIONS(1653), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1653), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1653), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1653), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1653), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1653), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1653), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1653), - [sym_raw_string_literal] = ACTIONS(1655), - }, - [738] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [739] = { - [sym_identifier] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1665), - [anon_sym_TILDE] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_typedef] = ACTIONS(1663), - [anon_sym_extern] = ACTIONS(1663), - [anon_sym___attribute__] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1665), - [anon_sym___declspec] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_static] = ACTIONS(1663), - [anon_sym_register] = ACTIONS(1663), - [anon_sym_inline] = ACTIONS(1663), - [anon_sym_thread_local] = ACTIONS(1663), - [anon_sym_const] = ACTIONS(1663), - [anon_sym_volatile] = ACTIONS(1663), - [anon_sym_restrict] = ACTIONS(1663), - [anon_sym__Atomic] = ACTIONS(1663), - [anon_sym_mutable] = ACTIONS(1663), - [anon_sym_constexpr] = ACTIONS(1663), - [anon_sym_signed] = ACTIONS(1663), - [anon_sym_unsigned] = ACTIONS(1663), - [anon_sym_long] = ACTIONS(1663), - [anon_sym_short] = ACTIONS(1663), - [sym_primitive_type] = ACTIONS(1663), - [anon_sym_enum] = ACTIONS(1663), - [anon_sym_class] = ACTIONS(1663), - [anon_sym_struct] = ACTIONS(1663), - [anon_sym_union] = ACTIONS(1663), - [anon_sym_if] = ACTIONS(1663), - [anon_sym_else] = ACTIONS(1663), - [anon_sym_switch] = ACTIONS(1663), - [anon_sym_while] = ACTIONS(1663), - [anon_sym_do] = ACTIONS(1663), - [anon_sym_for] = ACTIONS(1663), - [anon_sym_return] = ACTIONS(1663), - [anon_sym_break] = ACTIONS(1663), - [anon_sym_continue] = ACTIONS(1663), - [anon_sym_goto] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1665), - [anon_sym_PLUS_PLUS] = ACTIONS(1665), - [anon_sym_sizeof] = ACTIONS(1663), - [sym_number_literal] = ACTIONS(1665), - [anon_sym_L_SQUOTE] = ACTIONS(1665), - [anon_sym_u_SQUOTE] = ACTIONS(1665), - [anon_sym_U_SQUOTE] = ACTIONS(1665), - [anon_sym_u8_SQUOTE] = ACTIONS(1665), - [anon_sym_SQUOTE] = ACTIONS(1665), - [anon_sym_L_DQUOTE] = ACTIONS(1665), - [anon_sym_u_DQUOTE] = ACTIONS(1665), - [anon_sym_U_DQUOTE] = ACTIONS(1665), - [anon_sym_u8_DQUOTE] = ACTIONS(1665), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym_true] = ACTIONS(1663), - [sym_false] = ACTIONS(1663), - [sym_null] = ACTIONS(1663), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1663), - [anon_sym_virtual] = ACTIONS(1663), - [sym_auto] = ACTIONS(1663), - [anon_sym_typename] = ACTIONS(1663), - [anon_sym_template] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_throw] = ACTIONS(1663), - [anon_sym_co_return] = ACTIONS(1663), - [anon_sym_co_yield] = ACTIONS(1663), - [anon_sym_try] = ACTIONS(1663), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1663), - [sym_this] = ACTIONS(1663), - [sym_nullptr] = ACTIONS(1663), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_FORWARD] = ACTIONS(1663), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1663), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_PS_GET] = ACTIONS(1663), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1663), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1663), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1663), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1663), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1663), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1663), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1663), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1663), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1663), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1663), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1663), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1663), - [anon_sym_MOZ_COLD] = ACTIONS(1663), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1663), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1663), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1663), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1663), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1663), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1663), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1663), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1663), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1663), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1663), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1663), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1663), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1663), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1663), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1663), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1663), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1663), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1663), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1663), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1663), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1663), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_NONNULL] = ACTIONS(1663), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1663), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1663), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1663), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1663), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1663), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_NORETURN] = ACTIONS(1663), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1663), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1663), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1663), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1663), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1663), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1663), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1663), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1663), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1663), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1663), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1663), - [anon_sym_MOZ_RAII] = ACTIONS(1663), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1663), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1663), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1663), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1663), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1663), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1663), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1663), - [sym_raw_string_literal] = ACTIONS(1665), - }, - [740] = { - [sym_identifier] = ACTIONS(2264), - [anon_sym_LPAREN2] = ACTIONS(2270), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_DASH] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_extern] = ACTIONS(2276), - [anon_sym___attribute__] = ACTIONS(2276), - [anon_sym_COLON_COLON] = ACTIONS(2267), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2267), - [anon_sym___declspec] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2270), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_register] = ACTIONS(2276), - [anon_sym_inline] = ACTIONS(2276), - [anon_sym_thread_local] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [anon_sym_volatile] = ACTIONS(2276), - [anon_sym_restrict] = ACTIONS(2276), - [anon_sym__Atomic] = ACTIONS(2276), - [anon_sym_mutable] = ACTIONS(2276), - [anon_sym_constexpr] = ACTIONS(2276), - [anon_sym_signed] = ACTIONS(2276), - [anon_sym_unsigned] = ACTIONS(2276), - [anon_sym_long] = ACTIONS(2276), - [anon_sym_short] = ACTIONS(2276), - [sym_primitive_type] = ACTIONS(2264), - [anon_sym_enum] = ACTIONS(2276), - [anon_sym_class] = ACTIONS(2276), - [anon_sym_struct] = ACTIONS(2276), - [anon_sym_union] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_switch] = ACTIONS(2272), - [anon_sym_case] = ACTIONS(2272), - [anon_sym_default] = ACTIONS(2272), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_do] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_goto] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2270), - [anon_sym_PLUS_PLUS] = ACTIONS(2270), - [anon_sym_sizeof] = ACTIONS(2272), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2270), - [anon_sym_u_SQUOTE] = ACTIONS(2270), - [anon_sym_U_SQUOTE] = ACTIONS(2270), - [anon_sym_u8_SQUOTE] = ACTIONS(2270), - [anon_sym_SQUOTE] = ACTIONS(2270), - [anon_sym_L_DQUOTE] = ACTIONS(2270), - [anon_sym_u_DQUOTE] = ACTIONS(2270), - [anon_sym_U_DQUOTE] = ACTIONS(2270), - [anon_sym_u8_DQUOTE] = ACTIONS(2270), - [anon_sym_DQUOTE] = ACTIONS(2270), - [sym_true] = ACTIONS(2272), - [sym_false] = ACTIONS(2272), - [sym_null] = ACTIONS(2272), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2276), - [anon_sym_virtual] = ACTIONS(2276), - [sym_auto] = ACTIONS(2276), - [anon_sym_typename] = ACTIONS(2276), - [anon_sym_template] = ACTIONS(2264), - [anon_sym_delete] = ACTIONS(2272), - [anon_sym_throw] = ACTIONS(2272), - [anon_sym_co_return] = ACTIONS(2272), - [anon_sym_co_yield] = ACTIONS(2272), - [anon_sym_try] = ACTIONS(2272), - [anon_sym_co_await] = ACTIONS(2272), - [anon_sym_new] = ACTIONS(2272), - [sym_this] = ACTIONS(2272), - [sym_nullptr] = ACTIONS(2272), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2272), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2272), - [anon_sym_FORWARD] = ACTIONS(2272), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2272), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2272), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2272), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(2272), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2272), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2272), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2272), - [anon_sym_PS_GET] = ACTIONS(2272), - [anon_sym_PS_GET_AND_SET] = ACTIONS(2272), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2272), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(2272), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2272), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2272), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2272), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2276), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2276), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2276), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2276), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2276), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2276), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2276), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2276), - [anon_sym_MOZ_COLD] = ACTIONS(2276), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2276), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2276), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2276), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2276), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2276), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2276), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2276), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2276), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2276), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2276), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2276), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2276), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2276), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2276), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2276), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2276), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2276), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2276), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2276), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2276), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2276), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2276), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2276), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2276), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2276), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2276), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2276), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2276), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2276), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2276), - [anon_sym_MOZ_NONNULL] = ACTIONS(2276), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2276), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2276), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2276), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2276), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2276), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2276), - [anon_sym_MOZ_NORETURN] = ACTIONS(2276), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2276), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2276), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2276), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2276), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2276), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2276), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2276), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2276), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2276), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2276), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2276), - [anon_sym_MOZ_RAII] = ACTIONS(2276), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2276), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2276), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2276), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2276), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2276), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2276), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2276), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2276), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2276), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2276), - [sym_raw_string_literal] = ACTIONS(2270), - }, - [741] = { - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_TILDE] = ACTIONS(2262), - [anon_sym_DASH] = ACTIONS(2260), - [anon_sym_PLUS] = ACTIONS(2260), - [anon_sym_STAR] = ACTIONS(2262), - [anon_sym_AMP] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_extern] = ACTIONS(2260), - [anon_sym___attribute__] = ACTIONS(2260), - [anon_sym_COLON_COLON] = ACTIONS(2262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2262), - [anon_sym___declspec] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2260), - [anon_sym_static] = ACTIONS(2260), - [anon_sym_register] = ACTIONS(2260), - [anon_sym_inline] = ACTIONS(2260), - [anon_sym_thread_local] = ACTIONS(2260), - [anon_sym_const] = ACTIONS(2260), - [anon_sym_volatile] = ACTIONS(2260), - [anon_sym_restrict] = ACTIONS(2260), - [anon_sym__Atomic] = ACTIONS(2260), - [anon_sym_mutable] = ACTIONS(2260), - [anon_sym_constexpr] = ACTIONS(2260), - [anon_sym_signed] = ACTIONS(2260), - [anon_sym_unsigned] = ACTIONS(2260), - [anon_sym_long] = ACTIONS(2260), - [anon_sym_short] = ACTIONS(2260), - [sym_primitive_type] = ACTIONS(2260), - [anon_sym_enum] = ACTIONS(2260), - [anon_sym_class] = ACTIONS(2260), - [anon_sym_struct] = ACTIONS(2260), - [anon_sym_union] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_switch] = ACTIONS(2260), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_do] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2260), - [anon_sym_continue] = ACTIONS(2260), - [anon_sym_goto] = ACTIONS(2260), - [anon_sym_DASH_DASH] = ACTIONS(2262), - [anon_sym_PLUS_PLUS] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2260), - [sym_number_literal] = ACTIONS(2262), - [anon_sym_L_SQUOTE] = ACTIONS(2262), - [anon_sym_u_SQUOTE] = ACTIONS(2262), - [anon_sym_U_SQUOTE] = ACTIONS(2262), - [anon_sym_u8_SQUOTE] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(2262), - [anon_sym_L_DQUOTE] = ACTIONS(2262), - [anon_sym_u_DQUOTE] = ACTIONS(2262), - [anon_sym_U_DQUOTE] = ACTIONS(2262), - [anon_sym_u8_DQUOTE] = ACTIONS(2262), - [anon_sym_DQUOTE] = ACTIONS(2262), - [sym_true] = ACTIONS(2260), - [sym_false] = ACTIONS(2260), - [sym_null] = ACTIONS(2260), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2260), - [anon_sym_virtual] = ACTIONS(2260), - [sym_auto] = ACTIONS(2260), - [anon_sym_typename] = ACTIONS(2260), - [anon_sym_template] = ACTIONS(2260), - [anon_sym_delete] = ACTIONS(2260), - [anon_sym_throw] = ACTIONS(2260), - [anon_sym_co_return] = ACTIONS(2260), - [anon_sym_co_yield] = ACTIONS(2260), - [anon_sym_try] = ACTIONS(2260), - [anon_sym_co_await] = ACTIONS(2260), - [anon_sym_new] = ACTIONS(2260), - [sym_this] = ACTIONS(2260), - [sym_nullptr] = ACTIONS(2260), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2260), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2260), - [anon_sym_FORWARD] = ACTIONS(2260), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2260), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2260), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2260), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(2260), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2260), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2260), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2260), - [anon_sym_PS_GET] = ACTIONS(2260), - [anon_sym_PS_GET_AND_SET] = ACTIONS(2260), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2260), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(2260), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2260), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2260), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2260), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2260), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2260), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2260), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2260), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2260), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2260), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2260), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2260), - [anon_sym_MOZ_COLD] = ACTIONS(2260), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2260), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2260), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2260), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2260), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2260), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2260), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2260), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2260), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2260), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2260), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2260), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2260), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2260), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2260), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2260), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2260), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2260), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2260), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2260), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2260), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_NONNULL] = ACTIONS(2260), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2260), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2260), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2260), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2260), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2260), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_NORETURN] = ACTIONS(2260), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2260), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2260), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2260), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2260), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2260), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2260), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2260), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2260), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2260), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2260), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2260), - [anon_sym_MOZ_RAII] = ACTIONS(2260), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2260), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2260), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2260), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2260), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2260), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2260), - [sym_raw_string_literal] = ACTIONS(2262), - }, - [742] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [743] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [744] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [745] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [746] = { - [sym_identifier] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_typedef] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym___attribute__] = ACTIONS(1593), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_inline] = ACTIONS(1593), - [anon_sym_thread_local] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_volatile] = ACTIONS(1593), - [anon_sym_restrict] = ACTIONS(1593), - [anon_sym__Atomic] = ACTIONS(1593), - [anon_sym_mutable] = ACTIONS(1593), - [anon_sym_constexpr] = ACTIONS(1593), - [anon_sym_signed] = ACTIONS(1593), - [anon_sym_unsigned] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [sym_primitive_type] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_class] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_else] = ACTIONS(1593), - [anon_sym_switch] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_goto] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_PLUS_PLUS] = ACTIONS(1595), - [anon_sym_sizeof] = ACTIONS(1593), - [sym_number_literal] = ACTIONS(1595), - [anon_sym_L_SQUOTE] = ACTIONS(1595), - [anon_sym_u_SQUOTE] = ACTIONS(1595), - [anon_sym_U_SQUOTE] = ACTIONS(1595), - [anon_sym_u8_SQUOTE] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1595), - [anon_sym_L_DQUOTE] = ACTIONS(1595), - [anon_sym_u_DQUOTE] = ACTIONS(1595), - [anon_sym_U_DQUOTE] = ACTIONS(1595), - [anon_sym_u8_DQUOTE] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1593), - [anon_sym_virtual] = ACTIONS(1593), - [sym_auto] = ACTIONS(1593), - [anon_sym_typename] = ACTIONS(1593), - [anon_sym_template] = ACTIONS(1593), - [anon_sym_delete] = ACTIONS(1593), - [anon_sym_throw] = ACTIONS(1593), - [anon_sym_co_return] = ACTIONS(1593), - [anon_sym_co_yield] = ACTIONS(1593), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_co_await] = ACTIONS(1593), - [anon_sym_new] = ACTIONS(1593), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_FORWARD] = ACTIONS(1593), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1593), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_PS_GET] = ACTIONS(1593), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1593), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1593), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1593), - [anon_sym_MOZ_COLD] = ACTIONS(1593), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1593), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1593), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1593), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1593), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1593), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1593), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1593), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1593), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1593), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1593), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1593), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1593), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_RAII] = ACTIONS(1593), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1593), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1593), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1593), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1593), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1593), - [sym_raw_string_literal] = ACTIONS(1595), - }, - [747] = { - [sym_identifier] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_typedef] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym___attribute__] = ACTIONS(1593), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_inline] = ACTIONS(1593), - [anon_sym_thread_local] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_volatile] = ACTIONS(1593), - [anon_sym_restrict] = ACTIONS(1593), - [anon_sym__Atomic] = ACTIONS(1593), - [anon_sym_mutable] = ACTIONS(1593), - [anon_sym_constexpr] = ACTIONS(1593), - [anon_sym_signed] = ACTIONS(1593), - [anon_sym_unsigned] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [sym_primitive_type] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_class] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_else] = ACTIONS(1593), - [anon_sym_switch] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_goto] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_PLUS_PLUS] = ACTIONS(1595), - [anon_sym_sizeof] = ACTIONS(1593), - [sym_number_literal] = ACTIONS(1595), - [anon_sym_L_SQUOTE] = ACTIONS(1595), - [anon_sym_u_SQUOTE] = ACTIONS(1595), - [anon_sym_U_SQUOTE] = ACTIONS(1595), - [anon_sym_u8_SQUOTE] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1595), - [anon_sym_L_DQUOTE] = ACTIONS(1595), - [anon_sym_u_DQUOTE] = ACTIONS(1595), - [anon_sym_U_DQUOTE] = ACTIONS(1595), - [anon_sym_u8_DQUOTE] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1593), - [anon_sym_virtual] = ACTIONS(1593), - [sym_auto] = ACTIONS(1593), - [anon_sym_typename] = ACTIONS(1593), - [anon_sym_template] = ACTIONS(1593), - [anon_sym_delete] = ACTIONS(1593), - [anon_sym_throw] = ACTIONS(1593), - [anon_sym_co_return] = ACTIONS(1593), - [anon_sym_co_yield] = ACTIONS(1593), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_co_await] = ACTIONS(1593), - [anon_sym_new] = ACTIONS(1593), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_FORWARD] = ACTIONS(1593), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1593), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_PS_GET] = ACTIONS(1593), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1593), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1593), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1593), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1593), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1593), - [anon_sym_MOZ_COLD] = ACTIONS(1593), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1593), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1593), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1593), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1593), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1593), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1593), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1593), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1593), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1593), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1593), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1593), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1593), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_RAII] = ACTIONS(1593), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1593), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1593), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1593), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1593), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1593), - [sym_raw_string_literal] = ACTIONS(1595), - }, - [748] = { - [sym_identifier] = ACTIONS(1609), - [anon_sym_LPAREN2] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_SEMI] = ACTIONS(1611), - [anon_sym_typedef] = ACTIONS(1609), - [anon_sym_extern] = ACTIONS(1609), - [anon_sym___attribute__] = ACTIONS(1609), - [anon_sym_COLON_COLON] = ACTIONS(1611), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1611), - [anon_sym___declspec] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_static] = ACTIONS(1609), - [anon_sym_register] = ACTIONS(1609), - [anon_sym_inline] = ACTIONS(1609), - [anon_sym_thread_local] = ACTIONS(1609), - [anon_sym_const] = ACTIONS(1609), - [anon_sym_volatile] = ACTIONS(1609), - [anon_sym_restrict] = ACTIONS(1609), - [anon_sym__Atomic] = ACTIONS(1609), - [anon_sym_mutable] = ACTIONS(1609), - [anon_sym_constexpr] = ACTIONS(1609), - [anon_sym_signed] = ACTIONS(1609), - [anon_sym_unsigned] = ACTIONS(1609), - [anon_sym_long] = ACTIONS(1609), - [anon_sym_short] = ACTIONS(1609), - [sym_primitive_type] = ACTIONS(1609), - [anon_sym_enum] = ACTIONS(1609), - [anon_sym_class] = ACTIONS(1609), - [anon_sym_struct] = ACTIONS(1609), - [anon_sym_union] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1609), - [anon_sym_else] = ACTIONS(1609), - [anon_sym_switch] = ACTIONS(1609), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_do] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_break] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [anon_sym_goto] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_sizeof] = ACTIONS(1609), - [sym_number_literal] = ACTIONS(1611), - [anon_sym_L_SQUOTE] = ACTIONS(1611), - [anon_sym_u_SQUOTE] = ACTIONS(1611), - [anon_sym_U_SQUOTE] = ACTIONS(1611), - [anon_sym_u8_SQUOTE] = ACTIONS(1611), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_L_DQUOTE] = ACTIONS(1611), - [anon_sym_u_DQUOTE] = ACTIONS(1611), - [anon_sym_U_DQUOTE] = ACTIONS(1611), - [anon_sym_u8_DQUOTE] = ACTIONS(1611), - [anon_sym_DQUOTE] = ACTIONS(1611), - [sym_true] = ACTIONS(1609), - [sym_false] = ACTIONS(1609), - [sym_null] = ACTIONS(1609), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1609), - [anon_sym_virtual] = ACTIONS(1609), - [sym_auto] = ACTIONS(1609), - [anon_sym_typename] = ACTIONS(1609), - [anon_sym_template] = ACTIONS(1609), - [anon_sym_delete] = ACTIONS(1609), - [anon_sym_throw] = ACTIONS(1609), - [anon_sym_co_return] = ACTIONS(1609), - [anon_sym_co_yield] = ACTIONS(1609), - [anon_sym_try] = ACTIONS(1609), - [anon_sym_co_await] = ACTIONS(1609), - [anon_sym_new] = ACTIONS(1609), - [sym_this] = ACTIONS(1609), - [sym_nullptr] = ACTIONS(1609), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_FORWARD] = ACTIONS(1609), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1609), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_PS_GET] = ACTIONS(1609), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1609), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1609), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1609), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1609), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1609), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1609), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1609), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1609), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1609), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1609), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1609), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1609), - [anon_sym_MOZ_COLD] = ACTIONS(1609), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1609), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1609), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1609), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1609), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1609), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1609), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1609), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1609), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1609), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1609), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1609), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1609), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1609), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1609), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1609), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1609), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1609), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1609), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1609), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1609), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1609), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_NONNULL] = ACTIONS(1609), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1609), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1609), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1609), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1609), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1609), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_NORETURN] = ACTIONS(1609), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1609), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1609), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1609), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1609), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1609), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1609), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1609), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1609), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1609), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1609), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1609), - [anon_sym_MOZ_RAII] = ACTIONS(1609), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1609), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1609), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1609), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1609), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1609), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1609), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1609), - [sym_raw_string_literal] = ACTIONS(1611), - }, - [749] = { - [sym_identifier] = ACTIONS(1641), - [anon_sym_LPAREN2] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_typedef] = ACTIONS(1641), - [anon_sym_extern] = ACTIONS(1641), - [anon_sym___attribute__] = ACTIONS(1641), - [anon_sym_COLON_COLON] = ACTIONS(1643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1643), - [anon_sym___declspec] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_register] = ACTIONS(1641), - [anon_sym_inline] = ACTIONS(1641), - [anon_sym_thread_local] = ACTIONS(1641), - [anon_sym_const] = ACTIONS(1641), - [anon_sym_volatile] = ACTIONS(1641), - [anon_sym_restrict] = ACTIONS(1641), - [anon_sym__Atomic] = ACTIONS(1641), - [anon_sym_mutable] = ACTIONS(1641), - [anon_sym_constexpr] = ACTIONS(1641), - [anon_sym_signed] = ACTIONS(1641), - [anon_sym_unsigned] = ACTIONS(1641), - [anon_sym_long] = ACTIONS(1641), - [anon_sym_short] = ACTIONS(1641), - [sym_primitive_type] = ACTIONS(1641), - [anon_sym_enum] = ACTIONS(1641), - [anon_sym_class] = ACTIONS(1641), - [anon_sym_struct] = ACTIONS(1641), - [anon_sym_union] = ACTIONS(1641), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_else] = ACTIONS(1641), - [anon_sym_switch] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_do] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_return] = ACTIONS(1641), - [anon_sym_break] = ACTIONS(1641), - [anon_sym_continue] = ACTIONS(1641), - [anon_sym_goto] = ACTIONS(1641), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_sizeof] = ACTIONS(1641), - [sym_number_literal] = ACTIONS(1643), - [anon_sym_L_SQUOTE] = ACTIONS(1643), - [anon_sym_u_SQUOTE] = ACTIONS(1643), - [anon_sym_U_SQUOTE] = ACTIONS(1643), - [anon_sym_u8_SQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1643), - [anon_sym_L_DQUOTE] = ACTIONS(1643), - [anon_sym_u_DQUOTE] = ACTIONS(1643), - [anon_sym_U_DQUOTE] = ACTIONS(1643), - [anon_sym_u8_DQUOTE] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym_true] = ACTIONS(1641), - [sym_false] = ACTIONS(1641), - [sym_null] = ACTIONS(1641), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1641), - [anon_sym_virtual] = ACTIONS(1641), - [sym_auto] = ACTIONS(1641), - [anon_sym_typename] = ACTIONS(1641), - [anon_sym_template] = ACTIONS(1641), - [anon_sym_delete] = ACTIONS(1641), - [anon_sym_throw] = ACTIONS(1641), - [anon_sym_co_return] = ACTIONS(1641), - [anon_sym_co_yield] = ACTIONS(1641), - [anon_sym_try] = ACTIONS(1641), - [anon_sym_co_await] = ACTIONS(1641), - [anon_sym_new] = ACTIONS(1641), - [sym_this] = ACTIONS(1641), - [sym_nullptr] = ACTIONS(1641), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_FORWARD] = ACTIONS(1641), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1641), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_PS_GET] = ACTIONS(1641), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1641), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1641), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1641), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1641), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1641), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1641), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1641), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1641), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1641), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1641), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1641), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1641), - [anon_sym_MOZ_COLD] = ACTIONS(1641), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1641), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1641), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1641), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1641), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1641), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1641), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1641), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1641), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1641), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1641), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1641), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1641), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1641), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1641), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1641), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1641), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1641), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1641), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1641), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1641), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1641), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_NONNULL] = ACTIONS(1641), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1641), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1641), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1641), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1641), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1641), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_NORETURN] = ACTIONS(1641), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1641), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1641), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1641), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1641), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1641), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1641), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1641), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1641), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1641), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1641), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1641), - [anon_sym_MOZ_RAII] = ACTIONS(1641), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1641), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1641), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1641), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1641), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1641), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1641), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1641), - [sym_raw_string_literal] = ACTIONS(1643), - }, - [750] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [751] = { - [sym_identifier] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_typedef] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym___attribute__] = ACTIONS(1589), - [anon_sym_COLON_COLON] = ACTIONS(1591), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1591), - [anon_sym___declspec] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_inline] = ACTIONS(1589), - [anon_sym_thread_local] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [anon_sym_volatile] = ACTIONS(1589), - [anon_sym_restrict] = ACTIONS(1589), - [anon_sym__Atomic] = ACTIONS(1589), - [anon_sym_mutable] = ACTIONS(1589), - [anon_sym_constexpr] = ACTIONS(1589), - [anon_sym_signed] = ACTIONS(1589), - [anon_sym_unsigned] = ACTIONS(1589), - [anon_sym_long] = ACTIONS(1589), - [anon_sym_short] = ACTIONS(1589), - [sym_primitive_type] = ACTIONS(1589), - [anon_sym_enum] = ACTIONS(1589), - [anon_sym_class] = ACTIONS(1589), - [anon_sym_struct] = ACTIONS(1589), - [anon_sym_union] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_switch] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_goto] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_sizeof] = ACTIONS(1589), - [sym_number_literal] = ACTIONS(1591), - [anon_sym_L_SQUOTE] = ACTIONS(1591), - [anon_sym_u_SQUOTE] = ACTIONS(1591), - [anon_sym_U_SQUOTE] = ACTIONS(1591), - [anon_sym_u8_SQUOTE] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1591), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_null] = ACTIONS(1589), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1589), - [anon_sym_virtual] = ACTIONS(1589), - [sym_auto] = ACTIONS(1589), - [anon_sym_typename] = ACTIONS(1589), - [anon_sym_template] = ACTIONS(1589), - [anon_sym_delete] = ACTIONS(1589), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_co_return] = ACTIONS(1589), - [anon_sym_co_yield] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_co_await] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [sym_this] = ACTIONS(1589), - [sym_nullptr] = ACTIONS(1589), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_FORWARD] = ACTIONS(1589), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1589), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_PS_GET] = ACTIONS(1589), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1589), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1589), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1589), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1589), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1589), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1589), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1589), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1589), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1589), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1589), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1589), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1589), - [anon_sym_MOZ_COLD] = ACTIONS(1589), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1589), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1589), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1589), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1589), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1589), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1589), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1589), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1589), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1589), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1589), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1589), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1589), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1589), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1589), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1589), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1589), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1589), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1589), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1589), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1589), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1589), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_NONNULL] = ACTIONS(1589), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1589), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1589), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1589), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1589), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1589), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_NORETURN] = ACTIONS(1589), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1589), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1589), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1589), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1589), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1589), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1589), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1589), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1589), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1589), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1589), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1589), - [anon_sym_MOZ_RAII] = ACTIONS(1589), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1589), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1589), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1589), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1589), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1589), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1589), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1589), - [sym_raw_string_literal] = ACTIONS(1591), - }, - [752] = { - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_typedef] = ACTIONS(1597), - [anon_sym_extern] = ACTIONS(1597), - [anon_sym___attribute__] = ACTIONS(1597), - [anon_sym_COLON_COLON] = ACTIONS(1599), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), - [anon_sym___declspec] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1597), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_register] = ACTIONS(1597), - [anon_sym_inline] = ACTIONS(1597), - [anon_sym_thread_local] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(1597), - [anon_sym_volatile] = ACTIONS(1597), - [anon_sym_restrict] = ACTIONS(1597), - [anon_sym__Atomic] = ACTIONS(1597), - [anon_sym_mutable] = ACTIONS(1597), - [anon_sym_constexpr] = ACTIONS(1597), - [anon_sym_signed] = ACTIONS(1597), - [anon_sym_unsigned] = ACTIONS(1597), - [anon_sym_long] = ACTIONS(1597), - [anon_sym_short] = ACTIONS(1597), - [sym_primitive_type] = ACTIONS(1597), - [anon_sym_enum] = ACTIONS(1597), - [anon_sym_class] = ACTIONS(1597), - [anon_sym_struct] = ACTIONS(1597), - [anon_sym_union] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_else] = ACTIONS(1597), - [anon_sym_switch] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_do] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_goto] = ACTIONS(1597), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_sizeof] = ACTIONS(1597), - [sym_number_literal] = ACTIONS(1599), - [anon_sym_L_SQUOTE] = ACTIONS(1599), - [anon_sym_u_SQUOTE] = ACTIONS(1599), - [anon_sym_U_SQUOTE] = ACTIONS(1599), - [anon_sym_u8_SQUOTE] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_L_DQUOTE] = ACTIONS(1599), - [anon_sym_u_DQUOTE] = ACTIONS(1599), - [anon_sym_U_DQUOTE] = ACTIONS(1599), - [anon_sym_u8_DQUOTE] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym_true] = ACTIONS(1597), - [sym_false] = ACTIONS(1597), - [sym_null] = ACTIONS(1597), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1597), - [anon_sym_virtual] = ACTIONS(1597), - [sym_auto] = ACTIONS(1597), - [anon_sym_typename] = ACTIONS(1597), - [anon_sym_template] = ACTIONS(1597), - [anon_sym_delete] = ACTIONS(1597), - [anon_sym_throw] = ACTIONS(1597), - [anon_sym_co_return] = ACTIONS(1597), - [anon_sym_co_yield] = ACTIONS(1597), - [anon_sym_try] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1597), - [anon_sym_new] = ACTIONS(1597), - [sym_this] = ACTIONS(1597), - [sym_nullptr] = ACTIONS(1597), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_FORWARD] = ACTIONS(1597), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1597), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_PS_GET] = ACTIONS(1597), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1597), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1597), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1597), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1597), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1597), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1597), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1597), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1597), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1597), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1597), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1597), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1597), - [anon_sym_MOZ_COLD] = ACTIONS(1597), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1597), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1597), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1597), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1597), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1597), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1597), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1597), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1597), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1597), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1597), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1597), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1597), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1597), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1597), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1597), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1597), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1597), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1597), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1597), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1597), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1597), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_NONNULL] = ACTIONS(1597), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1597), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1597), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1597), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1597), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1597), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_NORETURN] = ACTIONS(1597), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1597), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1597), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1597), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1597), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1597), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1597), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1597), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1597), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1597), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1597), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1597), - [anon_sym_MOZ_RAII] = ACTIONS(1597), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1597), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1597), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1597), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1597), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1597), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1597), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1597), - [sym_raw_string_literal] = ACTIONS(1599), - }, - [753] = { - [sym_identifier] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1677), - [anon_sym_BANG] = ACTIONS(1677), - [anon_sym_TILDE] = ACTIONS(1677), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1677), - [anon_sym_AMP] = ACTIONS(1677), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_typedef] = ACTIONS(1675), - [anon_sym_extern] = ACTIONS(1675), - [anon_sym___attribute__] = ACTIONS(1675), - [anon_sym_COLON_COLON] = ACTIONS(1677), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1677), - [anon_sym___declspec] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_register] = ACTIONS(1675), - [anon_sym_inline] = ACTIONS(1675), - [anon_sym_thread_local] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(1675), - [anon_sym_volatile] = ACTIONS(1675), - [anon_sym_restrict] = ACTIONS(1675), - [anon_sym__Atomic] = ACTIONS(1675), - [anon_sym_mutable] = ACTIONS(1675), - [anon_sym_constexpr] = ACTIONS(1675), - [anon_sym_signed] = ACTIONS(1675), - [anon_sym_unsigned] = ACTIONS(1675), - [anon_sym_long] = ACTIONS(1675), - [anon_sym_short] = ACTIONS(1675), - [sym_primitive_type] = ACTIONS(1675), - [anon_sym_enum] = ACTIONS(1675), - [anon_sym_class] = ACTIONS(1675), - [anon_sym_struct] = ACTIONS(1675), - [anon_sym_union] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1675), - [anon_sym_else] = ACTIONS(1675), - [anon_sym_switch] = ACTIONS(1675), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_do] = ACTIONS(1675), - [anon_sym_for] = ACTIONS(1675), - [anon_sym_return] = ACTIONS(1675), - [anon_sym_break] = ACTIONS(1675), - [anon_sym_continue] = ACTIONS(1675), - [anon_sym_goto] = ACTIONS(1675), - [anon_sym_DASH_DASH] = ACTIONS(1677), - [anon_sym_PLUS_PLUS] = ACTIONS(1677), - [anon_sym_sizeof] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1677), - [anon_sym_u_SQUOTE] = ACTIONS(1677), - [anon_sym_U_SQUOTE] = ACTIONS(1677), - [anon_sym_u8_SQUOTE] = ACTIONS(1677), - [anon_sym_SQUOTE] = ACTIONS(1677), - [anon_sym_L_DQUOTE] = ACTIONS(1677), - [anon_sym_u_DQUOTE] = ACTIONS(1677), - [anon_sym_U_DQUOTE] = ACTIONS(1677), - [anon_sym_u8_DQUOTE] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1677), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_null] = ACTIONS(1675), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1675), - [anon_sym_virtual] = ACTIONS(1675), - [sym_auto] = ACTIONS(1675), - [anon_sym_typename] = ACTIONS(1675), - [anon_sym_template] = ACTIONS(1675), - [anon_sym_delete] = ACTIONS(1675), - [anon_sym_throw] = ACTIONS(1675), - [anon_sym_co_return] = ACTIONS(1675), - [anon_sym_co_yield] = ACTIONS(1675), - [anon_sym_try] = ACTIONS(1675), - [anon_sym_co_await] = ACTIONS(1675), - [anon_sym_new] = ACTIONS(1675), - [sym_this] = ACTIONS(1675), - [sym_nullptr] = ACTIONS(1675), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_FORWARD] = ACTIONS(1675), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1675), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_PS_GET] = ACTIONS(1675), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1675), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1675), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1675), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1675), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1675), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1675), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1675), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1675), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1675), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1675), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1675), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1675), - [anon_sym_MOZ_COLD] = ACTIONS(1675), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1675), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1675), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1675), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1675), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1675), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1675), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1675), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1675), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1675), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1675), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1675), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1675), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1675), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1675), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1675), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1675), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1675), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1675), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1675), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1675), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1675), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_NONNULL] = ACTIONS(1675), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1675), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1675), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1675), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1675), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1675), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_NORETURN] = ACTIONS(1675), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1675), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1675), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1675), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1675), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1675), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1675), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1675), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1675), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1675), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1675), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1675), - [anon_sym_MOZ_RAII] = ACTIONS(1675), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1675), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1675), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1675), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1675), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1675), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1675), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1675), - [sym_raw_string_literal] = ACTIONS(1677), - }, - [754] = { - [sym_identifier] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_typedef] = ACTIONS(1621), - [anon_sym_extern] = ACTIONS(1621), - [anon_sym___attribute__] = ACTIONS(1621), - [anon_sym_COLON_COLON] = ACTIONS(1623), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1623), - [anon_sym___declspec] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1621), - [anon_sym_static] = ACTIONS(1621), - [anon_sym_register] = ACTIONS(1621), - [anon_sym_inline] = ACTIONS(1621), - [anon_sym_thread_local] = ACTIONS(1621), - [anon_sym_const] = ACTIONS(1621), - [anon_sym_volatile] = ACTIONS(1621), - [anon_sym_restrict] = ACTIONS(1621), - [anon_sym__Atomic] = ACTIONS(1621), - [anon_sym_mutable] = ACTIONS(1621), - [anon_sym_constexpr] = ACTIONS(1621), - [anon_sym_signed] = ACTIONS(1621), - [anon_sym_unsigned] = ACTIONS(1621), - [anon_sym_long] = ACTIONS(1621), - [anon_sym_short] = ACTIONS(1621), - [sym_primitive_type] = ACTIONS(1621), - [anon_sym_enum] = ACTIONS(1621), - [anon_sym_class] = ACTIONS(1621), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1621), - [anon_sym_else] = ACTIONS(1621), - [anon_sym_switch] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1621), - [anon_sym_do] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1621), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1621), - [anon_sym_continue] = ACTIONS(1621), - [anon_sym_goto] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_sizeof] = ACTIONS(1621), - [sym_number_literal] = ACTIONS(1623), - [anon_sym_L_SQUOTE] = ACTIONS(1623), - [anon_sym_u_SQUOTE] = ACTIONS(1623), - [anon_sym_U_SQUOTE] = ACTIONS(1623), - [anon_sym_u8_SQUOTE] = ACTIONS(1623), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_L_DQUOTE] = ACTIONS(1623), - [anon_sym_u_DQUOTE] = ACTIONS(1623), - [anon_sym_U_DQUOTE] = ACTIONS(1623), - [anon_sym_u8_DQUOTE] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym_true] = ACTIONS(1621), - [sym_false] = ACTIONS(1621), - [sym_null] = ACTIONS(1621), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1621), - [anon_sym_virtual] = ACTIONS(1621), - [sym_auto] = ACTIONS(1621), - [anon_sym_typename] = ACTIONS(1621), - [anon_sym_template] = ACTIONS(1621), - [anon_sym_delete] = ACTIONS(1621), - [anon_sym_throw] = ACTIONS(1621), - [anon_sym_co_return] = ACTIONS(1621), - [anon_sym_co_yield] = ACTIONS(1621), - [anon_sym_try] = ACTIONS(1621), - [anon_sym_co_await] = ACTIONS(1621), - [anon_sym_new] = ACTIONS(1621), - [sym_this] = ACTIONS(1621), - [sym_nullptr] = ACTIONS(1621), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_FORWARD] = ACTIONS(1621), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1621), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_PS_GET] = ACTIONS(1621), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1621), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1621), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1621), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1621), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1621), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1621), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1621), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1621), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1621), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1621), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1621), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1621), - [anon_sym_MOZ_COLD] = ACTIONS(1621), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1621), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1621), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1621), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1621), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1621), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1621), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1621), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1621), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1621), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1621), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1621), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1621), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1621), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1621), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1621), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1621), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1621), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1621), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1621), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1621), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1621), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_NONNULL] = ACTIONS(1621), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1621), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1621), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1621), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1621), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1621), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_NORETURN] = ACTIONS(1621), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1621), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1621), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1621), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1621), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1621), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1621), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1621), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1621), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1621), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1621), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1621), - [anon_sym_MOZ_RAII] = ACTIONS(1621), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1621), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1621), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1621), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1621), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1621), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1621), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1621), - [sym_raw_string_literal] = ACTIONS(1623), - }, - [755] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [756] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [757] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [758] = { - [sym_identifier] = ACTIONS(1615), - [anon_sym_LPAREN2] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_typedef] = ACTIONS(1615), - [anon_sym_extern] = ACTIONS(1615), - [anon_sym___attribute__] = ACTIONS(1615), - [anon_sym_COLON_COLON] = ACTIONS(1617), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1617), - [anon_sym___declspec] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_register] = ACTIONS(1615), - [anon_sym_inline] = ACTIONS(1615), - [anon_sym_thread_local] = ACTIONS(1615), - [anon_sym_const] = ACTIONS(1615), - [anon_sym_volatile] = ACTIONS(1615), - [anon_sym_restrict] = ACTIONS(1615), - [anon_sym__Atomic] = ACTIONS(1615), - [anon_sym_mutable] = ACTIONS(1615), - [anon_sym_constexpr] = ACTIONS(1615), - [anon_sym_signed] = ACTIONS(1615), - [anon_sym_unsigned] = ACTIONS(1615), - [anon_sym_long] = ACTIONS(1615), - [anon_sym_short] = ACTIONS(1615), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1615), - [anon_sym_class] = ACTIONS(1615), - [anon_sym_struct] = ACTIONS(1615), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_if] = ACTIONS(1615), - [anon_sym_else] = ACTIONS(2339), - [anon_sym_switch] = ACTIONS(1615), - [anon_sym_while] = ACTIONS(1615), - [anon_sym_do] = ACTIONS(1615), - [anon_sym_for] = ACTIONS(1615), - [anon_sym_return] = ACTIONS(1615), - [anon_sym_break] = ACTIONS(1615), - [anon_sym_continue] = ACTIONS(1615), - [anon_sym_goto] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_sizeof] = ACTIONS(1615), - [sym_number_literal] = ACTIONS(1617), - [anon_sym_L_SQUOTE] = ACTIONS(1617), - [anon_sym_u_SQUOTE] = ACTIONS(1617), - [anon_sym_U_SQUOTE] = ACTIONS(1617), - [anon_sym_u8_SQUOTE] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_L_DQUOTE] = ACTIONS(1617), - [anon_sym_u_DQUOTE] = ACTIONS(1617), - [anon_sym_U_DQUOTE] = ACTIONS(1617), - [anon_sym_u8_DQUOTE] = ACTIONS(1617), - [anon_sym_DQUOTE] = ACTIONS(1617), - [sym_true] = ACTIONS(1615), - [sym_false] = ACTIONS(1615), - [sym_null] = ACTIONS(1615), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1615), - [anon_sym_virtual] = ACTIONS(1615), - [sym_auto] = ACTIONS(1615), - [anon_sym_typename] = ACTIONS(1615), - [anon_sym_template] = ACTIONS(1615), - [anon_sym_delete] = ACTIONS(1615), - [anon_sym_throw] = ACTIONS(1615), - [anon_sym_co_return] = ACTIONS(1615), - [anon_sym_co_yield] = ACTIONS(1615), - [anon_sym_try] = ACTIONS(1615), - [anon_sym_co_await] = ACTIONS(1615), - [anon_sym_new] = ACTIONS(1615), - [sym_this] = ACTIONS(1615), - [sym_nullptr] = ACTIONS(1615), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_FORWARD] = ACTIONS(1615), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1615), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_PS_GET] = ACTIONS(1615), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1615), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1615), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1615), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1615), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1615), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1615), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1615), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1615), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1615), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1615), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1615), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1615), - [anon_sym_MOZ_COLD] = ACTIONS(1615), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1615), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1615), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1615), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1615), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1615), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1615), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1615), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1615), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1615), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1615), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1615), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1615), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1615), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1615), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1615), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1615), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1615), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1615), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1615), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1615), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1615), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_NONNULL] = ACTIONS(1615), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1615), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1615), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1615), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1615), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1615), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_NORETURN] = ACTIONS(1615), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1615), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1615), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1615), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1615), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1615), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1615), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1615), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1615), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1615), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1615), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1615), - [anon_sym_MOZ_RAII] = ACTIONS(1615), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1615), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1615), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1615), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1615), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1615), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1615), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1615), - [sym_raw_string_literal] = ACTIONS(1617), - }, - [759] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [760] = { - [sym_identifier] = ACTIONS(1629), - [anon_sym_LPAREN2] = ACTIONS(1631), - [anon_sym_BANG] = ACTIONS(1631), - [anon_sym_TILDE] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_typedef] = ACTIONS(1629), - [anon_sym_extern] = ACTIONS(1629), - [anon_sym___attribute__] = ACTIONS(1629), - [anon_sym_COLON_COLON] = ACTIONS(1631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1631), - [anon_sym___declspec] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_static] = ACTIONS(1629), - [anon_sym_register] = ACTIONS(1629), - [anon_sym_inline] = ACTIONS(1629), - [anon_sym_thread_local] = ACTIONS(1629), - [anon_sym_const] = ACTIONS(1629), - [anon_sym_volatile] = ACTIONS(1629), - [anon_sym_restrict] = ACTIONS(1629), - [anon_sym__Atomic] = ACTIONS(1629), - [anon_sym_mutable] = ACTIONS(1629), - [anon_sym_constexpr] = ACTIONS(1629), - [anon_sym_signed] = ACTIONS(1629), - [anon_sym_unsigned] = ACTIONS(1629), - [anon_sym_long] = ACTIONS(1629), - [anon_sym_short] = ACTIONS(1629), - [sym_primitive_type] = ACTIONS(1629), - [anon_sym_enum] = ACTIONS(1629), - [anon_sym_class] = ACTIONS(1629), - [anon_sym_struct] = ACTIONS(1629), - [anon_sym_union] = ACTIONS(1629), - [anon_sym_if] = ACTIONS(1629), - [anon_sym_else] = ACTIONS(1629), - [anon_sym_switch] = ACTIONS(1629), - [anon_sym_while] = ACTIONS(1629), - [anon_sym_do] = ACTIONS(1629), - [anon_sym_for] = ACTIONS(1629), - [anon_sym_return] = ACTIONS(1629), - [anon_sym_break] = ACTIONS(1629), - [anon_sym_continue] = ACTIONS(1629), - [anon_sym_goto] = ACTIONS(1629), - [anon_sym_DASH_DASH] = ACTIONS(1631), - [anon_sym_PLUS_PLUS] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(1631), - [anon_sym_L_SQUOTE] = ACTIONS(1631), - [anon_sym_u_SQUOTE] = ACTIONS(1631), - [anon_sym_U_SQUOTE] = ACTIONS(1631), - [anon_sym_u8_SQUOTE] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_L_DQUOTE] = ACTIONS(1631), - [anon_sym_u_DQUOTE] = ACTIONS(1631), - [anon_sym_U_DQUOTE] = ACTIONS(1631), - [anon_sym_u8_DQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_true] = ACTIONS(1629), - [sym_false] = ACTIONS(1629), - [sym_null] = ACTIONS(1629), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1629), - [anon_sym_virtual] = ACTIONS(1629), - [sym_auto] = ACTIONS(1629), - [anon_sym_typename] = ACTIONS(1629), - [anon_sym_template] = ACTIONS(1629), - [anon_sym_delete] = ACTIONS(1629), - [anon_sym_throw] = ACTIONS(1629), - [anon_sym_co_return] = ACTIONS(1629), - [anon_sym_co_yield] = ACTIONS(1629), - [anon_sym_try] = ACTIONS(1629), - [anon_sym_co_await] = ACTIONS(1629), - [anon_sym_new] = ACTIONS(1629), - [sym_this] = ACTIONS(1629), - [sym_nullptr] = ACTIONS(1629), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_FORWARD] = ACTIONS(1629), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1629), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_PS_GET] = ACTIONS(1629), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1629), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1629), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1629), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1629), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1629), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1629), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1629), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1629), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1629), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1629), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1629), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1629), - [anon_sym_MOZ_COLD] = ACTIONS(1629), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1629), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1629), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1629), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1629), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1629), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1629), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1629), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1629), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1629), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1629), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1629), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1629), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1629), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1629), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1629), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1629), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1629), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1629), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1629), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1629), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1629), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_NONNULL] = ACTIONS(1629), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1629), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1629), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1629), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1629), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1629), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_NORETURN] = ACTIONS(1629), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1629), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1629), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1629), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1629), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1629), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1629), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1629), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1629), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1629), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1629), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1629), - [anon_sym_MOZ_RAII] = ACTIONS(1629), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1629), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1629), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1629), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1629), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1629), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1629), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1629), - [sym_raw_string_literal] = ACTIONS(1631), - }, - [761] = { - [sym_identifier] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_BANG] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1679), - [anon_sym_PLUS] = ACTIONS(1679), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_typedef] = ACTIONS(1679), - [anon_sym_extern] = ACTIONS(1679), - [anon_sym___attribute__] = ACTIONS(1679), - [anon_sym_COLON_COLON] = ACTIONS(1681), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1681), - [anon_sym___declspec] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1681), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_static] = ACTIONS(1679), - [anon_sym_register] = ACTIONS(1679), - [anon_sym_inline] = ACTIONS(1679), - [anon_sym_thread_local] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1679), - [anon_sym_volatile] = ACTIONS(1679), - [anon_sym_restrict] = ACTIONS(1679), - [anon_sym__Atomic] = ACTIONS(1679), - [anon_sym_mutable] = ACTIONS(1679), - [anon_sym_constexpr] = ACTIONS(1679), - [anon_sym_signed] = ACTIONS(1679), - [anon_sym_unsigned] = ACTIONS(1679), - [anon_sym_long] = ACTIONS(1679), - [anon_sym_short] = ACTIONS(1679), - [sym_primitive_type] = ACTIONS(1679), - [anon_sym_enum] = ACTIONS(1679), - [anon_sym_class] = ACTIONS(1679), - [anon_sym_struct] = ACTIONS(1679), - [anon_sym_union] = ACTIONS(1679), - [anon_sym_if] = ACTIONS(1679), - [anon_sym_else] = ACTIONS(1679), - [anon_sym_switch] = ACTIONS(1679), - [anon_sym_while] = ACTIONS(1679), - [anon_sym_do] = ACTIONS(1679), - [anon_sym_for] = ACTIONS(1679), - [anon_sym_return] = ACTIONS(1679), - [anon_sym_break] = ACTIONS(1679), - [anon_sym_continue] = ACTIONS(1679), - [anon_sym_goto] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1681), - [anon_sym_PLUS_PLUS] = ACTIONS(1681), - [anon_sym_sizeof] = ACTIONS(1679), - [sym_number_literal] = ACTIONS(1681), - [anon_sym_L_SQUOTE] = ACTIONS(1681), - [anon_sym_u_SQUOTE] = ACTIONS(1681), - [anon_sym_U_SQUOTE] = ACTIONS(1681), - [anon_sym_u8_SQUOTE] = ACTIONS(1681), - [anon_sym_SQUOTE] = ACTIONS(1681), - [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(1679), - [sym_false] = ACTIONS(1679), - [sym_null] = ACTIONS(1679), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1679), - [anon_sym_virtual] = ACTIONS(1679), - [sym_auto] = ACTIONS(1679), - [anon_sym_typename] = ACTIONS(1679), - [anon_sym_template] = ACTIONS(1679), - [anon_sym_delete] = ACTIONS(1679), - [anon_sym_throw] = ACTIONS(1679), - [anon_sym_co_return] = ACTIONS(1679), - [anon_sym_co_yield] = ACTIONS(1679), - [anon_sym_try] = ACTIONS(1679), - [anon_sym_co_await] = ACTIONS(1679), - [anon_sym_new] = ACTIONS(1679), - [sym_this] = ACTIONS(1679), - [sym_nullptr] = ACTIONS(1679), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_FORWARD] = ACTIONS(1679), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1679), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_PS_GET] = ACTIONS(1679), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1679), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1679), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1679), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1679), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1679), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1679), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1679), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1679), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1679), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1679), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1679), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1679), - [anon_sym_MOZ_COLD] = ACTIONS(1679), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1679), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1679), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1679), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1679), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1679), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1679), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1679), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1679), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1679), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1679), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1679), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1679), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1679), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1679), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1679), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1679), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1679), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1679), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1679), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1679), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1679), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_NONNULL] = ACTIONS(1679), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1679), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1679), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1679), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1679), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1679), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_NORETURN] = ACTIONS(1679), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1679), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1679), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1679), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1679), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1679), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1679), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1679), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1679), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1679), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1679), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1679), - [anon_sym_MOZ_RAII] = ACTIONS(1679), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1679), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1679), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1679), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1679), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1679), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1679), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1679), - [sym_raw_string_literal] = ACTIONS(1681), - }, - [762] = { - [sym_identifier] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_TILDE] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_typedef] = ACTIONS(1581), - [anon_sym_extern] = ACTIONS(1581), - [anon_sym___attribute__] = ACTIONS(1581), - [anon_sym_COLON_COLON] = ACTIONS(1583), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1583), - [anon_sym___declspec] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1581), - [anon_sym_register] = ACTIONS(1581), - [anon_sym_inline] = ACTIONS(1581), - [anon_sym_thread_local] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1581), - [anon_sym_volatile] = ACTIONS(1581), - [anon_sym_restrict] = ACTIONS(1581), - [anon_sym__Atomic] = ACTIONS(1581), - [anon_sym_mutable] = ACTIONS(1581), - [anon_sym_constexpr] = ACTIONS(1581), - [anon_sym_signed] = ACTIONS(1581), - [anon_sym_unsigned] = ACTIONS(1581), - [anon_sym_long] = ACTIONS(1581), - [anon_sym_short] = ACTIONS(1581), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_enum] = ACTIONS(1581), - [anon_sym_class] = ACTIONS(1581), - [anon_sym_struct] = ACTIONS(1581), - [anon_sym_union] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_else] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1581), - [anon_sym_while] = ACTIONS(1581), - [anon_sym_do] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1581), - [anon_sym_break] = ACTIONS(1581), - [anon_sym_continue] = ACTIONS(1581), - [anon_sym_goto] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(1583), - [anon_sym_L_SQUOTE] = ACTIONS(1583), - [anon_sym_u_SQUOTE] = ACTIONS(1583), - [anon_sym_U_SQUOTE] = ACTIONS(1583), - [anon_sym_u8_SQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1583), - [anon_sym_L_DQUOTE] = ACTIONS(1583), - [anon_sym_u_DQUOTE] = ACTIONS(1583), - [anon_sym_U_DQUOTE] = ACTIONS(1583), - [anon_sym_u8_DQUOTE] = ACTIONS(1583), - [anon_sym_DQUOTE] = ACTIONS(1583), - [sym_true] = ACTIONS(1581), - [sym_false] = ACTIONS(1581), - [sym_null] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1581), - [anon_sym_virtual] = ACTIONS(1581), - [sym_auto] = ACTIONS(1581), - [anon_sym_typename] = ACTIONS(1581), - [anon_sym_template] = ACTIONS(1581), - [anon_sym_delete] = ACTIONS(1581), - [anon_sym_throw] = ACTIONS(1581), - [anon_sym_co_return] = ACTIONS(1581), - [anon_sym_co_yield] = ACTIONS(1581), - [anon_sym_try] = ACTIONS(1581), - [anon_sym_co_await] = ACTIONS(1581), - [anon_sym_new] = ACTIONS(1581), - [sym_this] = ACTIONS(1581), - [sym_nullptr] = ACTIONS(1581), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_FORWARD] = ACTIONS(1581), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1581), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_PS_GET] = ACTIONS(1581), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1581), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1581), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1581), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1581), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1581), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1581), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1581), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1581), - [anon_sym_MOZ_COLD] = ACTIONS(1581), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1581), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1581), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1581), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1581), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1581), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1581), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1581), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1581), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1581), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1581), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1581), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1581), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1581), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_NONNULL] = ACTIONS(1581), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1581), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1581), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1581), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1581), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1581), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1581), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1581), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1581), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1581), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1581), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1581), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1581), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1581), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1581), - [anon_sym_MOZ_RAII] = ACTIONS(1581), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1581), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1581), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1581), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1581), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1581), - [sym_raw_string_literal] = ACTIONS(1583), - }, - [763] = { - [sym_identifier] = ACTIONS(1683), - [anon_sym_LPAREN2] = ACTIONS(1685), - [anon_sym_BANG] = ACTIONS(1685), - [anon_sym_TILDE] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_typedef] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1683), - [anon_sym___attribute__] = ACTIONS(1683), - [anon_sym_COLON_COLON] = ACTIONS(1685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1685), - [anon_sym___declspec] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1685), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_static] = ACTIONS(1683), - [anon_sym_register] = ACTIONS(1683), - [anon_sym_inline] = ACTIONS(1683), - [anon_sym_thread_local] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_volatile] = ACTIONS(1683), - [anon_sym_restrict] = ACTIONS(1683), - [anon_sym__Atomic] = ACTIONS(1683), - [anon_sym_mutable] = ACTIONS(1683), - [anon_sym_constexpr] = ACTIONS(1683), - [anon_sym_signed] = ACTIONS(1683), - [anon_sym_unsigned] = ACTIONS(1683), - [anon_sym_long] = ACTIONS(1683), - [anon_sym_short] = ACTIONS(1683), - [sym_primitive_type] = ACTIONS(1683), - [anon_sym_enum] = ACTIONS(1683), - [anon_sym_class] = ACTIONS(1683), - [anon_sym_struct] = ACTIONS(1683), - [anon_sym_union] = ACTIONS(1683), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_else] = ACTIONS(1683), - [anon_sym_switch] = ACTIONS(1683), - [anon_sym_while] = ACTIONS(1683), - [anon_sym_do] = ACTIONS(1683), - [anon_sym_for] = ACTIONS(1683), - [anon_sym_return] = ACTIONS(1683), - [anon_sym_break] = ACTIONS(1683), - [anon_sym_continue] = ACTIONS(1683), - [anon_sym_goto] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1685), - [anon_sym_PLUS_PLUS] = ACTIONS(1685), - [anon_sym_sizeof] = ACTIONS(1683), - [sym_number_literal] = ACTIONS(1685), - [anon_sym_L_SQUOTE] = ACTIONS(1685), - [anon_sym_u_SQUOTE] = ACTIONS(1685), - [anon_sym_U_SQUOTE] = ACTIONS(1685), - [anon_sym_u8_SQUOTE] = ACTIONS(1685), - [anon_sym_SQUOTE] = ACTIONS(1685), - [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(1683), - [sym_false] = ACTIONS(1683), - [sym_null] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1683), - [anon_sym_virtual] = ACTIONS(1683), - [sym_auto] = ACTIONS(1683), - [anon_sym_typename] = ACTIONS(1683), - [anon_sym_template] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_throw] = ACTIONS(1683), - [anon_sym_co_return] = ACTIONS(1683), - [anon_sym_co_yield] = ACTIONS(1683), - [anon_sym_try] = ACTIONS(1683), - [anon_sym_co_await] = ACTIONS(1683), - [anon_sym_new] = ACTIONS(1683), - [sym_this] = ACTIONS(1683), - [sym_nullptr] = ACTIONS(1683), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_FORWARD] = ACTIONS(1683), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1683), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_PS_GET] = ACTIONS(1683), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1683), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1683), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1683), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1683), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1683), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1683), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1683), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1683), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1683), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1683), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1683), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1683), - [anon_sym_MOZ_COLD] = ACTIONS(1683), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1683), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1683), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1683), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1683), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1683), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1683), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1683), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1683), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1683), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1683), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1683), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1683), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1683), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1683), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1683), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1683), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1683), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1683), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1683), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1683), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1683), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_NONNULL] = ACTIONS(1683), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1683), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1683), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1683), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1683), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1683), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_NORETURN] = ACTIONS(1683), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1683), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1683), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1683), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1683), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1683), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1683), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1683), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1683), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1683), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1683), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1683), - [anon_sym_MOZ_RAII] = ACTIONS(1683), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1683), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1683), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1683), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1683), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1683), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1683), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1683), - [sym_raw_string_literal] = ACTIONS(1685), - }, - [764] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [765] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [766] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [767] = { - [sym__declaration_modifiers] = STATE(1223), - [sym__declaration_specifiers] = STATE(3594), - [sym_attribute_specifier] = STATE(1223), - [sym_attribute_declaration] = STATE(1223), - [sym_ms_declspec_modifier] = STATE(1223), - [sym_storage_class_specifier] = STATE(1223), - [sym_type_qualifier] = STATE(1223), - [sym__type_specifier] = STATE(1483), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1223), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1223), - [aux_sym_sized_type_specifier_repeat1] = STATE(1338), - [sym_identifier] = ACTIONS(2313), - [anon_sym_COMMA] = ACTIONS(2341), + [anon_sym_requires] = ACTIONS(2333), + [sym_this] = ACTIONS(2333), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2333), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_FORWARD] = ACTIONS(2333), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2333), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2333), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2333), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2333), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_PS_GET] = ACTIONS(2333), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2333), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2333), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2333), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2333), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2333), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2333), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2333), + [anon_sym_MOZ_COLD] = ACTIONS(2333), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2333), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2333), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2333), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2333), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2333), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2333), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2333), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2333), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2333), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2333), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2333), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2333), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2333), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_NONNULL] = ACTIONS(2333), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2333), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2333), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2333), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2333), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2333), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2333), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2333), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2333), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2333), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2333), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2333), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2333), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2333), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2333), + [anon_sym_MOZ_RAII] = ACTIONS(2333), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2333), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2333), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2333), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2333), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2333), + }, + [STATE(234)] = { + [sym_identifier] = ACTIONS(2337), + [aux_sym_preproc_include_token1] = ACTIONS(2337), + [aux_sym_preproc_def_token1] = ACTIONS(2337), + [aux_sym_preproc_if_token1] = ACTIONS(2337), + [aux_sym_preproc_if_token2] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), + [aux_sym_preproc_else_token1] = ACTIONS(2337), + [aux_sym_preproc_elif_token1] = ACTIONS(2337), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2337), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2337), + [sym_preproc_directive] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2339), + [anon_sym_BANG] = ACTIONS(2339), + [anon_sym_TILDE] = ACTIONS(2339), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2339), + [anon_sym_AMP_AMP] = ACTIONS(2339), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym___extension__] = ACTIONS(2337), + [anon_sym_typedef] = ACTIONS(2337), + [anon_sym_virtual] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym___attribute__] = ACTIONS(2337), + [anon_sym___attribute] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2339), + [anon_sym___declspec] = ACTIONS(2337), + [anon_sym___based] = ACTIONS(2337), + [anon_sym___cdecl] = ACTIONS(2337), + [anon_sym___clrcall] = ACTIONS(2337), + [anon_sym___stdcall] = ACTIONS(2337), + [anon_sym___fastcall] = ACTIONS(2337), + [anon_sym___thiscall] = ACTIONS(2337), + [anon_sym___vectorcall] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2339), + [anon_sym_signed] = ACTIONS(2337), + [anon_sym_unsigned] = ACTIONS(2337), + [anon_sym_long] = ACTIONS(2337), + [anon_sym_short] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_inline] = ACTIONS(2337), + [anon_sym___inline] = ACTIONS(2337), + [anon_sym___inline__] = ACTIONS(2337), + [anon_sym___forceinline] = ACTIONS(2337), + [anon_sym_thread_local] = ACTIONS(2337), + [anon_sym___thread] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_constexpr] = ACTIONS(2337), + [anon_sym_volatile] = ACTIONS(2337), + [anon_sym_restrict] = ACTIONS(2337), + [anon_sym___restrict__] = ACTIONS(2337), + [anon_sym__Atomic] = ACTIONS(2337), + [anon_sym__Noreturn] = ACTIONS(2337), + [anon_sym_noreturn] = ACTIONS(2337), + [anon_sym__Nonnull] = ACTIONS(2337), + [anon_sym_mutable] = ACTIONS(2337), + [anon_sym_constinit] = ACTIONS(2337), + [anon_sym_consteval] = ACTIONS(2337), + [anon_sym_alignas] = ACTIONS(2337), + [anon_sym__Alignas] = ACTIONS(2337), + [sym_primitive_type] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_case] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_goto] = ACTIONS(2337), + [anon_sym___try] = ACTIONS(2337), + [anon_sym___leave] = ACTIONS(2337), + [anon_sym_not] = ACTIONS(2337), + [anon_sym_compl] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2339), + [anon_sym_PLUS_PLUS] = ACTIONS(2339), + [anon_sym_sizeof] = ACTIONS(2337), + [anon_sym___alignof__] = ACTIONS(2337), + [anon_sym___alignof] = ACTIONS(2337), + [anon_sym__alignof] = ACTIONS(2337), + [anon_sym_alignof] = ACTIONS(2337), + [anon_sym__Alignof] = ACTIONS(2337), + [anon_sym_offsetof] = ACTIONS(2337), + [anon_sym__Generic] = ACTIONS(2337), + [anon_sym_asm] = ACTIONS(2337), + [anon_sym___asm__] = ACTIONS(2337), + [anon_sym___asm] = ACTIONS(2337), + [sym_number_literal] = ACTIONS(2339), + [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(2339), + [anon_sym_u_DQUOTE] = ACTIONS(2339), + [anon_sym_U_DQUOTE] = ACTIONS(2339), + [anon_sym_u8_DQUOTE] = ACTIONS(2339), + [anon_sym_DQUOTE] = ACTIONS(2339), + [sym_true] = ACTIONS(2337), + [sym_false] = ACTIONS(2337), + [anon_sym_NULL] = ACTIONS(2337), + [anon_sym_nullptr] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2337), + [anon_sym_decltype] = ACTIONS(2337), + [anon_sym_explicit] = ACTIONS(2337), + [anon_sym_typename] = ACTIONS(2337), + [anon_sym_template] = ACTIONS(2337), + [anon_sym_operator] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_delete] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [anon_sym_static_assert] = ACTIONS(2337), + [anon_sym_concept] = ACTIONS(2337), + [anon_sym_co_return] = ACTIONS(2337), + [anon_sym_co_yield] = ACTIONS(2337), + [anon_sym_R_DQUOTE] = ACTIONS(2339), + [anon_sym_LR_DQUOTE] = ACTIONS(2339), + [anon_sym_uR_DQUOTE] = ACTIONS(2339), + [anon_sym_UR_DQUOTE] = ACTIONS(2339), + [anon_sym_u8R_DQUOTE] = ACTIONS(2339), + [anon_sym_co_await] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_requires] = ACTIONS(2337), + [sym_this] = ACTIONS(2337), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2337), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_FORWARD] = ACTIONS(2337), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2337), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2337), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2337), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2337), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_PS_GET] = ACTIONS(2337), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2337), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2337), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2337), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2337), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2337), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2337), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2337), + [anon_sym_MOZ_COLD] = ACTIONS(2337), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2337), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2337), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2337), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2337), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2337), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2337), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2337), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2337), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2337), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2337), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2337), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2337), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2337), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_NONNULL] = ACTIONS(2337), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2337), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2337), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2337), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2337), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2337), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2337), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2337), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2337), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2337), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2337), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2337), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2337), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2337), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2337), + [anon_sym_MOZ_RAII] = ACTIONS(2337), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2337), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2337), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2337), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2337), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2337), + }, + [STATE(235)] = { + [sym_identifier] = ACTIONS(2341), + [aux_sym_preproc_include_token1] = ACTIONS(2341), + [aux_sym_preproc_def_token1] = ACTIONS(2341), + [aux_sym_preproc_if_token1] = ACTIONS(2341), + [aux_sym_preproc_if_token2] = ACTIONS(2341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2341), + [aux_sym_preproc_else_token1] = ACTIONS(2341), + [aux_sym_preproc_elif_token1] = ACTIONS(2341), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2341), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2341), + [sym_preproc_directive] = ACTIONS(2341), + [anon_sym_LPAREN2] = ACTIONS(2343), [anon_sym_BANG] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), + [anon_sym_TILDE] = ACTIONS(2343), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_PLUS] = ACTIONS(2341), [anon_sym_STAR] = ACTIONS(2343), - [anon_sym_SLASH] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_PIPE_PIPE] = ACTIONS(2341), - [anon_sym_AMP_AMP] = ACTIONS(2341), - [anon_sym_PIPE] = ACTIONS(2343), - [anon_sym_CARET] = ACTIONS(2343), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_EQ_EQ] = ACTIONS(2341), - [anon_sym_BANG_EQ] = ACTIONS(2341), - [anon_sym_GT] = ACTIONS(2343), - [anon_sym_GT_EQ] = ACTIONS(2341), - [anon_sym_LT_EQ] = ACTIONS(2341), - [anon_sym_LT] = ACTIONS(2343), - [anon_sym_LT_LT] = ACTIONS(2343), - [anon_sym_GT_GT] = ACTIONS(2343), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_EQ] = ACTIONS(2343), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2321), - [anon_sym_unsigned] = ACTIONS(2321), - [anon_sym_long] = ACTIONS(2321), - [anon_sym_short] = ACTIONS(2321), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(2323), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(2327), - [anon_sym_union] = ACTIONS(2329), - [anon_sym_STAR_EQ] = ACTIONS(2341), - [anon_sym_SLASH_EQ] = ACTIONS(2341), - [anon_sym_PERCENT_EQ] = ACTIONS(2341), - [anon_sym_PLUS_EQ] = ACTIONS(2341), - [anon_sym_DASH_EQ] = ACTIONS(2341), - [anon_sym_LT_LT_EQ] = ACTIONS(2341), - [anon_sym_GT_GT_EQ] = ACTIONS(2341), - [anon_sym_AMP_EQ] = ACTIONS(2341), - [anon_sym_CARET_EQ] = ACTIONS(2341), - [anon_sym_PIPE_EQ] = ACTIONS(2341), - [anon_sym_DASH_DASH] = ACTIONS(2341), - [anon_sym_PLUS_PLUS] = ACTIONS(2341), - [anon_sym_DASH_GT] = ACTIONS(2343), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(2331), - [anon_sym_template] = ACTIONS(1035), + [anon_sym_AMP_AMP] = ACTIONS(2343), + [anon_sym_AMP] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2343), + [anon_sym___extension__] = ACTIONS(2341), + [anon_sym_typedef] = ACTIONS(2341), + [anon_sym_virtual] = ACTIONS(2341), + [anon_sym_extern] = ACTIONS(2341), + [anon_sym___attribute__] = ACTIONS(2341), + [anon_sym___attribute] = ACTIONS(2341), + [anon_sym_COLON_COLON] = ACTIONS(2343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2343), + [anon_sym___declspec] = ACTIONS(2341), + [anon_sym___based] = ACTIONS(2341), + [anon_sym___cdecl] = ACTIONS(2341), + [anon_sym___clrcall] = ACTIONS(2341), + [anon_sym___stdcall] = ACTIONS(2341), + [anon_sym___fastcall] = ACTIONS(2341), + [anon_sym___thiscall] = ACTIONS(2341), + [anon_sym___vectorcall] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_signed] = ACTIONS(2341), + [anon_sym_unsigned] = ACTIONS(2341), + [anon_sym_long] = ACTIONS(2341), + [anon_sym_short] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2341), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_register] = ACTIONS(2341), + [anon_sym_inline] = ACTIONS(2341), + [anon_sym___inline] = ACTIONS(2341), + [anon_sym___inline__] = ACTIONS(2341), + [anon_sym___forceinline] = ACTIONS(2341), + [anon_sym_thread_local] = ACTIONS(2341), + [anon_sym___thread] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_constexpr] = ACTIONS(2341), + [anon_sym_volatile] = ACTIONS(2341), + [anon_sym_restrict] = ACTIONS(2341), + [anon_sym___restrict__] = ACTIONS(2341), + [anon_sym__Atomic] = ACTIONS(2341), + [anon_sym__Noreturn] = ACTIONS(2341), + [anon_sym_noreturn] = ACTIONS(2341), + [anon_sym__Nonnull] = ACTIONS(2341), + [anon_sym_mutable] = ACTIONS(2341), + [anon_sym_constinit] = ACTIONS(2341), + [anon_sym_consteval] = ACTIONS(2341), + [anon_sym_alignas] = ACTIONS(2341), + [anon_sym__Alignas] = ACTIONS(2341), + [sym_primitive_type] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_class] = ACTIONS(2341), + [anon_sym_struct] = ACTIONS(2341), + [anon_sym_union] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_switch] = ACTIONS(2341), + [anon_sym_case] = ACTIONS(2341), + [anon_sym_default] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [anon_sym_do] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_goto] = ACTIONS(2341), + [anon_sym___try] = ACTIONS(2341), + [anon_sym___leave] = ACTIONS(2341), + [anon_sym_not] = ACTIONS(2341), + [anon_sym_compl] = ACTIONS(2341), + [anon_sym_DASH_DASH] = ACTIONS(2343), + [anon_sym_PLUS_PLUS] = ACTIONS(2343), + [anon_sym_sizeof] = ACTIONS(2341), + [anon_sym___alignof__] = ACTIONS(2341), + [anon_sym___alignof] = ACTIONS(2341), + [anon_sym__alignof] = ACTIONS(2341), + [anon_sym_alignof] = ACTIONS(2341), + [anon_sym__Alignof] = ACTIONS(2341), + [anon_sym_offsetof] = ACTIONS(2341), + [anon_sym__Generic] = ACTIONS(2341), + [anon_sym_asm] = ACTIONS(2341), + [anon_sym___asm__] = ACTIONS(2341), + [anon_sym___asm] = ACTIONS(2341), + [sym_number_literal] = ACTIONS(2343), + [anon_sym_L_SQUOTE] = ACTIONS(2343), + [anon_sym_u_SQUOTE] = ACTIONS(2343), + [anon_sym_U_SQUOTE] = ACTIONS(2343), + [anon_sym_u8_SQUOTE] = ACTIONS(2343), + [anon_sym_SQUOTE] = ACTIONS(2343), + [anon_sym_L_DQUOTE] = ACTIONS(2343), + [anon_sym_u_DQUOTE] = ACTIONS(2343), + [anon_sym_U_DQUOTE] = ACTIONS(2343), + [anon_sym_u8_DQUOTE] = ACTIONS(2343), + [anon_sym_DQUOTE] = ACTIONS(2343), + [sym_true] = ACTIONS(2341), + [sym_false] = ACTIONS(2341), + [anon_sym_NULL] = ACTIONS(2341), + [anon_sym_nullptr] = ACTIONS(2341), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2341), + [anon_sym_decltype] = ACTIONS(2341), + [anon_sym_explicit] = ACTIONS(2341), + [anon_sym_typename] = ACTIONS(2341), + [anon_sym_template] = ACTIONS(2341), + [anon_sym_operator] = ACTIONS(2341), + [anon_sym_try] = ACTIONS(2341), + [anon_sym_delete] = ACTIONS(2341), + [anon_sym_throw] = ACTIONS(2341), + [anon_sym_namespace] = ACTIONS(2341), + [anon_sym_using] = ACTIONS(2341), + [anon_sym_static_assert] = ACTIONS(2341), + [anon_sym_concept] = ACTIONS(2341), + [anon_sym_co_return] = ACTIONS(2341), + [anon_sym_co_yield] = ACTIONS(2341), + [anon_sym_R_DQUOTE] = ACTIONS(2343), + [anon_sym_LR_DQUOTE] = ACTIONS(2343), + [anon_sym_uR_DQUOTE] = ACTIONS(2343), + [anon_sym_UR_DQUOTE] = ACTIONS(2343), + [anon_sym_u8R_DQUOTE] = ACTIONS(2343), + [anon_sym_co_await] = ACTIONS(2341), + [anon_sym_new] = ACTIONS(2341), + [anon_sym_requires] = ACTIONS(2341), + [sym_this] = ACTIONS(2341), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2341), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_FORWARD] = ACTIONS(2341), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2341), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2341), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2341), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2341), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_PS_GET] = ACTIONS(2341), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2341), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2341), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2341), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2341), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2341), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2341), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2341), + [anon_sym_MOZ_COLD] = ACTIONS(2341), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2341), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2341), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2341), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2341), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2341), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2341), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2341), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2341), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2341), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2341), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2341), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2341), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2341), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_NONNULL] = ACTIONS(2341), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2341), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2341), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2341), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2341), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2341), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2341), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2341), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2341), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2341), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2341), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2341), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2341), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2341), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2341), + [anon_sym_MOZ_RAII] = ACTIONS(2341), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2341), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2341), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2341), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2341), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2341), + }, + [STATE(236)] = { + [sym_identifier] = ACTIONS(2345), + [aux_sym_preproc_include_token1] = ACTIONS(2345), + [aux_sym_preproc_def_token1] = ACTIONS(2345), + [aux_sym_preproc_if_token1] = ACTIONS(2345), + [aux_sym_preproc_if_token2] = ACTIONS(2345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2345), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2345), + [aux_sym_preproc_else_token1] = ACTIONS(2345), + [aux_sym_preproc_elif_token1] = ACTIONS(2345), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2345), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2345), + [sym_preproc_directive] = ACTIONS(2345), + [anon_sym_LPAREN2] = ACTIONS(2347), + [anon_sym_BANG] = ACTIONS(2347), + [anon_sym_TILDE] = ACTIONS(2347), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2345), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_AMP_AMP] = ACTIONS(2347), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2347), + [anon_sym___extension__] = ACTIONS(2345), + [anon_sym_typedef] = ACTIONS(2345), + [anon_sym_virtual] = ACTIONS(2345), + [anon_sym_extern] = ACTIONS(2345), + [anon_sym___attribute__] = ACTIONS(2345), + [anon_sym___attribute] = ACTIONS(2345), + [anon_sym_COLON_COLON] = ACTIONS(2347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2347), + [anon_sym___declspec] = ACTIONS(2345), + [anon_sym___based] = ACTIONS(2345), + [anon_sym___cdecl] = ACTIONS(2345), + [anon_sym___clrcall] = ACTIONS(2345), + [anon_sym___stdcall] = ACTIONS(2345), + [anon_sym___fastcall] = ACTIONS(2345), + [anon_sym___thiscall] = ACTIONS(2345), + [anon_sym___vectorcall] = ACTIONS(2345), + [anon_sym_LBRACE] = ACTIONS(2347), + [anon_sym_signed] = ACTIONS(2345), + [anon_sym_unsigned] = ACTIONS(2345), + [anon_sym_long] = ACTIONS(2345), + [anon_sym_short] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(2345), + [anon_sym_static] = ACTIONS(2345), + [anon_sym_register] = ACTIONS(2345), + [anon_sym_inline] = ACTIONS(2345), + [anon_sym___inline] = ACTIONS(2345), + [anon_sym___inline__] = ACTIONS(2345), + [anon_sym___forceinline] = ACTIONS(2345), + [anon_sym_thread_local] = ACTIONS(2345), + [anon_sym___thread] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_constexpr] = ACTIONS(2345), + [anon_sym_volatile] = ACTIONS(2345), + [anon_sym_restrict] = ACTIONS(2345), + [anon_sym___restrict__] = ACTIONS(2345), + [anon_sym__Atomic] = ACTIONS(2345), + [anon_sym__Noreturn] = ACTIONS(2345), + [anon_sym_noreturn] = ACTIONS(2345), + [anon_sym__Nonnull] = ACTIONS(2345), + [anon_sym_mutable] = ACTIONS(2345), + [anon_sym_constinit] = ACTIONS(2345), + [anon_sym_consteval] = ACTIONS(2345), + [anon_sym_alignas] = ACTIONS(2345), + [anon_sym__Alignas] = ACTIONS(2345), + [sym_primitive_type] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_class] = ACTIONS(2345), + [anon_sym_struct] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_switch] = ACTIONS(2345), + [anon_sym_case] = ACTIONS(2345), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [anon_sym_do] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym___try] = ACTIONS(2345), + [anon_sym___leave] = ACTIONS(2345), + [anon_sym_not] = ACTIONS(2345), + [anon_sym_compl] = ACTIONS(2345), + [anon_sym_DASH_DASH] = ACTIONS(2347), + [anon_sym_PLUS_PLUS] = ACTIONS(2347), + [anon_sym_sizeof] = ACTIONS(2345), + [anon_sym___alignof__] = ACTIONS(2345), + [anon_sym___alignof] = ACTIONS(2345), + [anon_sym__alignof] = ACTIONS(2345), + [anon_sym_alignof] = ACTIONS(2345), + [anon_sym__Alignof] = ACTIONS(2345), + [anon_sym_offsetof] = ACTIONS(2345), + [anon_sym__Generic] = ACTIONS(2345), + [anon_sym_asm] = ACTIONS(2345), + [anon_sym___asm__] = ACTIONS(2345), + [anon_sym___asm] = ACTIONS(2345), + [sym_number_literal] = ACTIONS(2347), + [anon_sym_L_SQUOTE] = ACTIONS(2347), + [anon_sym_u_SQUOTE] = ACTIONS(2347), + [anon_sym_U_SQUOTE] = ACTIONS(2347), + [anon_sym_u8_SQUOTE] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2347), + [anon_sym_L_DQUOTE] = ACTIONS(2347), + [anon_sym_u_DQUOTE] = ACTIONS(2347), + [anon_sym_U_DQUOTE] = ACTIONS(2347), + [anon_sym_u8_DQUOTE] = ACTIONS(2347), + [anon_sym_DQUOTE] = ACTIONS(2347), + [sym_true] = ACTIONS(2345), + [sym_false] = ACTIONS(2345), + [anon_sym_NULL] = ACTIONS(2345), + [anon_sym_nullptr] = ACTIONS(2345), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2345), + [anon_sym_decltype] = ACTIONS(2345), + [anon_sym_explicit] = ACTIONS(2345), + [anon_sym_typename] = ACTIONS(2345), + [anon_sym_template] = ACTIONS(2345), + [anon_sym_operator] = ACTIONS(2345), + [anon_sym_try] = ACTIONS(2345), [anon_sym_delete] = ACTIONS(2345), - [anon_sym_co_await] = ACTIONS(2343), + [anon_sym_throw] = ACTIONS(2345), + [anon_sym_namespace] = ACTIONS(2345), + [anon_sym_using] = ACTIONS(2345), + [anon_sym_static_assert] = ACTIONS(2345), + [anon_sym_concept] = ACTIONS(2345), + [anon_sym_co_return] = ACTIONS(2345), + [anon_sym_co_yield] = ACTIONS(2345), + [anon_sym_R_DQUOTE] = ACTIONS(2347), + [anon_sym_LR_DQUOTE] = ACTIONS(2347), + [anon_sym_uR_DQUOTE] = ACTIONS(2347), + [anon_sym_UR_DQUOTE] = ACTIONS(2347), + [anon_sym_u8R_DQUOTE] = ACTIONS(2347), + [anon_sym_co_await] = ACTIONS(2345), [anon_sym_new] = ACTIONS(2345), - [anon_sym_DASH_GT_STAR] = ACTIONS(2341), - [anon_sym_LPAREN_RPAREN] = ACTIONS(2341), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2341), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(2347), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [768] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [769] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [770] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [771] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [772] = { - [sym_identifier] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_BANG] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_typedef] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym___attribute__] = ACTIONS(1667), - [anon_sym_COLON_COLON] = ACTIONS(1669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1669), - [anon_sym___declspec] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_inline] = ACTIONS(1667), - [anon_sym_thread_local] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [anon_sym_volatile] = ACTIONS(1667), - [anon_sym_restrict] = ACTIONS(1667), - [anon_sym__Atomic] = ACTIONS(1667), - [anon_sym_mutable] = ACTIONS(1667), - [anon_sym_constexpr] = ACTIONS(1667), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [sym_primitive_type] = ACTIONS(1667), - [anon_sym_enum] = ACTIONS(1667), - [anon_sym_class] = ACTIONS(1667), - [anon_sym_struct] = ACTIONS(1667), - [anon_sym_union] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_switch] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_goto] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_sizeof] = ACTIONS(1667), - [sym_number_literal] = ACTIONS(1669), - [anon_sym_L_SQUOTE] = ACTIONS(1669), - [anon_sym_u_SQUOTE] = ACTIONS(1669), - [anon_sym_U_SQUOTE] = ACTIONS(1669), - [anon_sym_u8_SQUOTE] = ACTIONS(1669), - [anon_sym_SQUOTE] = ACTIONS(1669), - [anon_sym_L_DQUOTE] = ACTIONS(1669), - [anon_sym_u_DQUOTE] = ACTIONS(1669), - [anon_sym_U_DQUOTE] = ACTIONS(1669), - [anon_sym_u8_DQUOTE] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym_true] = ACTIONS(1667), - [sym_false] = ACTIONS(1667), - [sym_null] = ACTIONS(1667), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1667), - [anon_sym_virtual] = ACTIONS(1667), - [sym_auto] = ACTIONS(1667), - [anon_sym_typename] = ACTIONS(1667), - [anon_sym_template] = ACTIONS(1667), - [anon_sym_delete] = ACTIONS(1667), - [anon_sym_throw] = ACTIONS(1667), - [anon_sym_co_return] = ACTIONS(1667), - [anon_sym_co_yield] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_co_await] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [sym_this] = ACTIONS(1667), - [sym_nullptr] = ACTIONS(1667), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_FORWARD] = ACTIONS(1667), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1667), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_PS_GET] = ACTIONS(1667), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1667), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1667), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1667), - [anon_sym_MOZ_COLD] = ACTIONS(1667), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1667), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1667), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1667), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1667), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1667), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1667), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1667), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1667), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1667), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1667), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1667), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1667), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_RAII] = ACTIONS(1667), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1667), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1667), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1667), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1667), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1667), - [sym_raw_string_literal] = ACTIONS(1669), - }, - [773] = { - [sym_identifier] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_BANG] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_typedef] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym___attribute__] = ACTIONS(1667), - [anon_sym_COLON_COLON] = ACTIONS(1669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1669), - [anon_sym___declspec] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_inline] = ACTIONS(1667), - [anon_sym_thread_local] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [anon_sym_volatile] = ACTIONS(1667), - [anon_sym_restrict] = ACTIONS(1667), - [anon_sym__Atomic] = ACTIONS(1667), - [anon_sym_mutable] = ACTIONS(1667), - [anon_sym_constexpr] = ACTIONS(1667), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [sym_primitive_type] = ACTIONS(1667), - [anon_sym_enum] = ACTIONS(1667), - [anon_sym_class] = ACTIONS(1667), - [anon_sym_struct] = ACTIONS(1667), - [anon_sym_union] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_switch] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_goto] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_sizeof] = ACTIONS(1667), - [sym_number_literal] = ACTIONS(1669), - [anon_sym_L_SQUOTE] = ACTIONS(1669), - [anon_sym_u_SQUOTE] = ACTIONS(1669), - [anon_sym_U_SQUOTE] = ACTIONS(1669), - [anon_sym_u8_SQUOTE] = ACTIONS(1669), - [anon_sym_SQUOTE] = ACTIONS(1669), - [anon_sym_L_DQUOTE] = ACTIONS(1669), - [anon_sym_u_DQUOTE] = ACTIONS(1669), - [anon_sym_U_DQUOTE] = ACTIONS(1669), - [anon_sym_u8_DQUOTE] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym_true] = ACTIONS(1667), - [sym_false] = ACTIONS(1667), - [sym_null] = ACTIONS(1667), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1667), - [anon_sym_virtual] = ACTIONS(1667), - [sym_auto] = ACTIONS(1667), - [anon_sym_typename] = ACTIONS(1667), - [anon_sym_template] = ACTIONS(1667), - [anon_sym_delete] = ACTIONS(1667), - [anon_sym_throw] = ACTIONS(1667), - [anon_sym_co_return] = ACTIONS(1667), - [anon_sym_co_yield] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_co_await] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [sym_this] = ACTIONS(1667), - [sym_nullptr] = ACTIONS(1667), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_FORWARD] = ACTIONS(1667), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1667), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_PS_GET] = ACTIONS(1667), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1667), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1667), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1667), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1667), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1667), - [anon_sym_MOZ_COLD] = ACTIONS(1667), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1667), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1667), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1667), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1667), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1667), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1667), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1667), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1667), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1667), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1667), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1667), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1667), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_RAII] = ACTIONS(1667), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1667), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1667), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1667), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1667), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1667), - [sym_raw_string_literal] = ACTIONS(1669), - }, - [774] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [775] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [776] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [777] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [778] = { - [sym_identifier] = ACTIONS(1695), - [anon_sym_LPAREN2] = ACTIONS(1697), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1697), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_SEMI] = ACTIONS(1697), - [anon_sym_typedef] = ACTIONS(1695), - [anon_sym_extern] = ACTIONS(1695), - [anon_sym___attribute__] = ACTIONS(1695), - [anon_sym_COLON_COLON] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1697), - [anon_sym___declspec] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_static] = ACTIONS(1695), - [anon_sym_register] = ACTIONS(1695), - [anon_sym_inline] = ACTIONS(1695), - [anon_sym_thread_local] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1695), - [anon_sym_volatile] = ACTIONS(1695), - [anon_sym_restrict] = ACTIONS(1695), - [anon_sym__Atomic] = ACTIONS(1695), - [anon_sym_mutable] = ACTIONS(1695), - [anon_sym_constexpr] = ACTIONS(1695), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1695), - [anon_sym_enum] = ACTIONS(1695), - [anon_sym_class] = ACTIONS(1695), - [anon_sym_struct] = ACTIONS(1695), - [anon_sym_union] = ACTIONS(1695), - [anon_sym_if] = ACTIONS(1695), - [anon_sym_else] = ACTIONS(1695), - [anon_sym_switch] = ACTIONS(1695), - [anon_sym_while] = ACTIONS(1695), - [anon_sym_do] = ACTIONS(1695), - [anon_sym_for] = ACTIONS(1695), - [anon_sym_return] = ACTIONS(1695), - [anon_sym_break] = ACTIONS(1695), - [anon_sym_continue] = ACTIONS(1695), - [anon_sym_goto] = ACTIONS(1695), - [anon_sym_DASH_DASH] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1697), - [anon_sym_sizeof] = ACTIONS(1695), - [sym_number_literal] = ACTIONS(1697), - [anon_sym_L_SQUOTE] = ACTIONS(1697), - [anon_sym_u_SQUOTE] = ACTIONS(1697), - [anon_sym_U_SQUOTE] = ACTIONS(1697), - [anon_sym_u8_SQUOTE] = ACTIONS(1697), - [anon_sym_SQUOTE] = ACTIONS(1697), - [anon_sym_L_DQUOTE] = ACTIONS(1697), - [anon_sym_u_DQUOTE] = ACTIONS(1697), - [anon_sym_U_DQUOTE] = ACTIONS(1697), - [anon_sym_u8_DQUOTE] = ACTIONS(1697), - [anon_sym_DQUOTE] = ACTIONS(1697), - [sym_true] = ACTIONS(1695), - [sym_false] = ACTIONS(1695), - [sym_null] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1695), - [anon_sym_virtual] = ACTIONS(1695), - [sym_auto] = ACTIONS(1695), - [anon_sym_typename] = ACTIONS(1695), - [anon_sym_template] = ACTIONS(1695), - [anon_sym_delete] = ACTIONS(1695), - [anon_sym_throw] = ACTIONS(1695), - [anon_sym_co_return] = ACTIONS(1695), - [anon_sym_co_yield] = ACTIONS(1695), - [anon_sym_try] = ACTIONS(1695), - [anon_sym_co_await] = ACTIONS(1695), - [anon_sym_new] = ACTIONS(1695), - [sym_this] = ACTIONS(1695), - [sym_nullptr] = ACTIONS(1695), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_FORWARD] = ACTIONS(1695), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1695), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_PS_GET] = ACTIONS(1695), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1695), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1695), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1695), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1695), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1695), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1695), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1695), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1695), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1695), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1695), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1695), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1695), - [anon_sym_MOZ_COLD] = ACTIONS(1695), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1695), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1695), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1695), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1695), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1695), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1695), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1695), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1695), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1695), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1695), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1695), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1695), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1695), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1695), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1695), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1695), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1695), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1695), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1695), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1695), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1695), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_NONNULL] = ACTIONS(1695), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1695), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1695), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1695), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1695), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1695), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_NORETURN] = ACTIONS(1695), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1695), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1695), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1695), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1695), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1695), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1695), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1695), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1695), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1695), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1695), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1695), - [anon_sym_MOZ_RAII] = ACTIONS(1695), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1695), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1695), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1695), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1695), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1695), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1695), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1695), - [sym_raw_string_literal] = ACTIONS(1697), - }, - [779] = { - [sym_identifier] = ACTIONS(1691), - [anon_sym_LPAREN2] = ACTIONS(1693), - [anon_sym_BANG] = ACTIONS(1693), - [anon_sym_TILDE] = ACTIONS(1693), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_PLUS] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(1693), - [anon_sym_AMP] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_typedef] = ACTIONS(1691), - [anon_sym_extern] = ACTIONS(1691), - [anon_sym___attribute__] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1693), - [anon_sym___declspec] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_LBRACK] = ACTIONS(1691), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_register] = ACTIONS(1691), - [anon_sym_inline] = ACTIONS(1691), - [anon_sym_thread_local] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(1691), - [anon_sym_volatile] = ACTIONS(1691), - [anon_sym_restrict] = ACTIONS(1691), - [anon_sym__Atomic] = ACTIONS(1691), - [anon_sym_mutable] = ACTIONS(1691), - [anon_sym_constexpr] = ACTIONS(1691), - [anon_sym_signed] = ACTIONS(1691), - [anon_sym_unsigned] = ACTIONS(1691), - [anon_sym_long] = ACTIONS(1691), - [anon_sym_short] = ACTIONS(1691), - [sym_primitive_type] = ACTIONS(1691), - [anon_sym_enum] = ACTIONS(1691), - [anon_sym_class] = ACTIONS(1691), - [anon_sym_struct] = ACTIONS(1691), - [anon_sym_union] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1691), - [anon_sym_else] = ACTIONS(1691), - [anon_sym_switch] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1691), - [anon_sym_do] = ACTIONS(1691), - [anon_sym_for] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_goto] = ACTIONS(1691), - [anon_sym_DASH_DASH] = ACTIONS(1693), - [anon_sym_PLUS_PLUS] = ACTIONS(1693), - [anon_sym_sizeof] = ACTIONS(1691), - [sym_number_literal] = ACTIONS(1693), - [anon_sym_L_SQUOTE] = ACTIONS(1693), - [anon_sym_u_SQUOTE] = ACTIONS(1693), - [anon_sym_U_SQUOTE] = ACTIONS(1693), - [anon_sym_u8_SQUOTE] = ACTIONS(1693), - [anon_sym_SQUOTE] = ACTIONS(1693), - [anon_sym_L_DQUOTE] = ACTIONS(1693), - [anon_sym_u_DQUOTE] = ACTIONS(1693), - [anon_sym_U_DQUOTE] = ACTIONS(1693), - [anon_sym_u8_DQUOTE] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1693), - [sym_true] = ACTIONS(1691), - [sym_false] = ACTIONS(1691), - [sym_null] = ACTIONS(1691), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1691), - [anon_sym_virtual] = ACTIONS(1691), - [sym_auto] = ACTIONS(1691), - [anon_sym_typename] = ACTIONS(1691), - [anon_sym_template] = ACTIONS(1691), - [anon_sym_delete] = ACTIONS(1691), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_co_return] = ACTIONS(1691), - [anon_sym_co_yield] = ACTIONS(1691), - [anon_sym_try] = ACTIONS(1691), - [anon_sym_co_await] = ACTIONS(1691), - [anon_sym_new] = ACTIONS(1691), - [sym_this] = ACTIONS(1691), - [sym_nullptr] = ACTIONS(1691), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_FORWARD] = ACTIONS(1691), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1691), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_PS_GET] = ACTIONS(1691), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1691), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1691), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1691), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1691), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1691), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1691), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1691), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1691), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1691), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1691), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1691), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1691), - [anon_sym_MOZ_COLD] = ACTIONS(1691), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1691), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1691), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1691), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1691), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1691), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1691), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1691), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1691), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1691), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1691), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1691), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1691), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1691), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1691), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1691), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1691), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1691), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1691), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1691), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1691), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1691), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_NONNULL] = ACTIONS(1691), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1691), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1691), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1691), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1691), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1691), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_NORETURN] = ACTIONS(1691), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1691), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1691), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1691), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1691), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1691), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1691), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1691), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1691), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1691), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1691), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1691), - [anon_sym_MOZ_RAII] = ACTIONS(1691), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1691), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1691), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1691), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1691), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1691), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1691), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1691), - [sym_raw_string_literal] = ACTIONS(1693), - }, - [780] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [781] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1535), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_thread_local] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_mutable] = ACTIONS(1533), - [anon_sym_constexpr] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1533), - [anon_sym_virtual] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_typename] = ACTIONS(1533), - [anon_sym_template] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_co_return] = ACTIONS(1533), - [anon_sym_co_yield] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_co_await] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [sym_this] = ACTIONS(1533), - [sym_nullptr] = ACTIONS(1533), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_FORWARD] = ACTIONS(1533), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_PS_GET] = ACTIONS(1533), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1533), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1533), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1533), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1533), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1533), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1533), - [anon_sym_MOZ_COLD] = ACTIONS(1533), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1533), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1533), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1533), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1533), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1533), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1533), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1533), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1533), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1533), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1533), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1533), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1533), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL] = ACTIONS(1533), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1533), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1533), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN] = ACTIONS(1533), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1533), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1533), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1533), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1533), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1533), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1533), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1533), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1533), - [anon_sym_MOZ_RAII] = ACTIONS(1533), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1533), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1533), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1533), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1533), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1533), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1533), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1535), - }, - [782] = { - [sym_identifier] = ACTIONS(1687), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_typedef] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(1687), - [anon_sym___attribute__] = ACTIONS(1687), - [anon_sym_COLON_COLON] = ACTIONS(1689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1689), - [anon_sym___declspec] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1689), - [anon_sym_LBRACK] = ACTIONS(1687), - [anon_sym_static] = ACTIONS(1687), - [anon_sym_register] = ACTIONS(1687), - [anon_sym_inline] = ACTIONS(1687), - [anon_sym_thread_local] = ACTIONS(1687), - [anon_sym_const] = ACTIONS(1687), - [anon_sym_volatile] = ACTIONS(1687), - [anon_sym_restrict] = ACTIONS(1687), - [anon_sym__Atomic] = ACTIONS(1687), - [anon_sym_mutable] = ACTIONS(1687), - [anon_sym_constexpr] = ACTIONS(1687), - [anon_sym_signed] = ACTIONS(1687), - [anon_sym_unsigned] = ACTIONS(1687), - [anon_sym_long] = ACTIONS(1687), - [anon_sym_short] = ACTIONS(1687), - [sym_primitive_type] = ACTIONS(1687), - [anon_sym_enum] = ACTIONS(1687), - [anon_sym_class] = ACTIONS(1687), - [anon_sym_struct] = ACTIONS(1687), - [anon_sym_union] = ACTIONS(1687), - [anon_sym_if] = ACTIONS(1687), - [anon_sym_else] = ACTIONS(1687), - [anon_sym_switch] = ACTIONS(1687), - [anon_sym_while] = ACTIONS(1687), - [anon_sym_do] = ACTIONS(1687), - [anon_sym_for] = ACTIONS(1687), - [anon_sym_return] = ACTIONS(1687), - [anon_sym_break] = ACTIONS(1687), - [anon_sym_continue] = ACTIONS(1687), - [anon_sym_goto] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_sizeof] = ACTIONS(1687), - [sym_number_literal] = ACTIONS(1689), - [anon_sym_L_SQUOTE] = ACTIONS(1689), - [anon_sym_u_SQUOTE] = ACTIONS(1689), - [anon_sym_U_SQUOTE] = ACTIONS(1689), - [anon_sym_u8_SQUOTE] = ACTIONS(1689), - [anon_sym_SQUOTE] = ACTIONS(1689), - [anon_sym_L_DQUOTE] = ACTIONS(1689), - [anon_sym_u_DQUOTE] = ACTIONS(1689), - [anon_sym_U_DQUOTE] = ACTIONS(1689), - [anon_sym_u8_DQUOTE] = ACTIONS(1689), - [anon_sym_DQUOTE] = ACTIONS(1689), - [sym_true] = ACTIONS(1687), - [sym_false] = ACTIONS(1687), - [sym_null] = ACTIONS(1687), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1687), - [anon_sym_virtual] = ACTIONS(1687), - [sym_auto] = ACTIONS(1687), - [anon_sym_typename] = ACTIONS(1687), - [anon_sym_template] = ACTIONS(1687), - [anon_sym_delete] = ACTIONS(1687), - [anon_sym_throw] = ACTIONS(1687), - [anon_sym_co_return] = ACTIONS(1687), - [anon_sym_co_yield] = ACTIONS(1687), - [anon_sym_try] = ACTIONS(1687), - [anon_sym_co_await] = ACTIONS(1687), - [anon_sym_new] = ACTIONS(1687), - [sym_this] = ACTIONS(1687), - [sym_nullptr] = ACTIONS(1687), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_FORWARD] = ACTIONS(1687), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1687), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_PS_GET] = ACTIONS(1687), - [anon_sym_PS_GET_AND_SET] = ACTIONS(1687), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1687), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(1687), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1687), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1687), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1687), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1687), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1687), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1687), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1687), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1687), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1687), - [anon_sym_MOZ_COLD] = ACTIONS(1687), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1687), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1687), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1687), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1687), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1687), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1687), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1687), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1687), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1687), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1687), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1687), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1687), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1687), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1687), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1687), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1687), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1687), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1687), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1687), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1687), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1687), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_NONNULL] = ACTIONS(1687), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1687), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1687), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1687), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1687), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1687), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_NORETURN] = ACTIONS(1687), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1687), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1687), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1687), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1687), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1687), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1687), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1687), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1687), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1687), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1687), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1687), - [anon_sym_MOZ_RAII] = ACTIONS(1687), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1687), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1687), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1687), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1687), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1687), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1687), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1687), - [sym_raw_string_literal] = ACTIONS(1689), - }, - [783] = { - [sym__declaration_modifiers] = STATE(1221), - [sym__declaration_specifiers] = STATE(2306), - [sym_attribute_specifier] = STATE(1221), - [sym_attribute_declaration] = STATE(1221), - [sym_ms_declspec_modifier] = STATE(1221), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3880), - [sym__abstract_declarator] = STATE(4163), - [sym_parenthesized_declarator] = STATE(3720), - [sym_abstract_parenthesized_declarator] = STATE(3728), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_abstract_pointer_declarator] = STATE(3728), - [sym_function_declarator] = STATE(3720), - [sym_abstract_function_declarator] = STATE(3728), - [sym_array_declarator] = STATE(3720), - [sym_abstract_array_declarator] = STATE(3728), - [sym_storage_class_specifier] = STATE(1221), - [sym_type_qualifier] = STATE(1221), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_parameter_list] = STATE(3266), - [sym_parameter_declaration] = STATE(4310), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1221), - [sym_dependent_type] = STATE(1358), - [sym_optional_parameter_declaration] = STATE(4310), - [sym_variadic_parameter_declaration] = STATE(4310), - [sym_reference_declarator] = STATE(3720), - [sym_abstract_reference_declarator] = STATE(3728), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1298), - [sym_template_function] = STATE(3720), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3536), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1357), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1221), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), + [anon_sym_requires] = ACTIONS(2345), + [sym_this] = ACTIONS(2345), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2345), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_FORWARD] = ACTIONS(2345), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2345), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2345), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2345), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2345), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_PS_GET] = ACTIONS(2345), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2345), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2345), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2345), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2345), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2345), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2345), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2345), + [anon_sym_MOZ_COLD] = ACTIONS(2345), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2345), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2345), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2345), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2345), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2345), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2345), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2345), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2345), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2345), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2345), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2345), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2345), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2345), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_NONNULL] = ACTIONS(2345), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2345), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2345), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2345), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2345), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2345), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2345), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2345), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2345), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2345), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2345), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2345), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2345), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2345), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2345), + [anon_sym_MOZ_RAII] = ACTIONS(2345), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2345), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2345), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2345), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2345), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2345), + }, + [STATE(237)] = { [sym_identifier] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2351), - [anon_sym_RPAREN] = ACTIONS(2353), + [aux_sym_preproc_include_token1] = ACTIONS(2349), + [aux_sym_preproc_def_token1] = ACTIONS(2349), + [aux_sym_preproc_if_token1] = ACTIONS(2349), + [aux_sym_preproc_if_token2] = ACTIONS(2349), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2349), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2349), + [aux_sym_preproc_else_token1] = ACTIONS(2349), + [aux_sym_preproc_elif_token1] = ACTIONS(2349), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2349), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2349), + [sym_preproc_directive] = ACTIONS(2349), + [anon_sym_LPAREN2] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(2351), + [anon_sym_TILDE] = ACTIONS(2351), + [anon_sym_DASH] = ACTIONS(2349), + [anon_sym_PLUS] = ACTIONS(2349), + [anon_sym_STAR] = ACTIONS(2351), + [anon_sym_AMP_AMP] = ACTIONS(2351), + [anon_sym_AMP] = ACTIONS(2349), + [anon_sym_SEMI] = ACTIONS(2351), + [anon_sym___extension__] = ACTIONS(2349), + [anon_sym_typedef] = ACTIONS(2349), + [anon_sym_virtual] = ACTIONS(2349), + [anon_sym_extern] = ACTIONS(2349), + [anon_sym___attribute__] = ACTIONS(2349), + [anon_sym___attribute] = ACTIONS(2349), + [anon_sym_COLON_COLON] = ACTIONS(2351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2351), + [anon_sym___declspec] = ACTIONS(2349), + [anon_sym___based] = ACTIONS(2349), + [anon_sym___cdecl] = ACTIONS(2349), + [anon_sym___clrcall] = ACTIONS(2349), + [anon_sym___stdcall] = ACTIONS(2349), + [anon_sym___fastcall] = ACTIONS(2349), + [anon_sym___thiscall] = ACTIONS(2349), + [anon_sym___vectorcall] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2351), + [anon_sym_signed] = ACTIONS(2349), + [anon_sym_unsigned] = ACTIONS(2349), + [anon_sym_long] = ACTIONS(2349), + [anon_sym_short] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_static] = ACTIONS(2349), + [anon_sym_register] = ACTIONS(2349), + [anon_sym_inline] = ACTIONS(2349), + [anon_sym___inline] = ACTIONS(2349), + [anon_sym___inline__] = ACTIONS(2349), + [anon_sym___forceinline] = ACTIONS(2349), + [anon_sym_thread_local] = ACTIONS(2349), + [anon_sym___thread] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [anon_sym_constexpr] = ACTIONS(2349), + [anon_sym_volatile] = ACTIONS(2349), + [anon_sym_restrict] = ACTIONS(2349), + [anon_sym___restrict__] = ACTIONS(2349), + [anon_sym__Atomic] = ACTIONS(2349), + [anon_sym__Noreturn] = ACTIONS(2349), + [anon_sym_noreturn] = ACTIONS(2349), + [anon_sym__Nonnull] = ACTIONS(2349), + [anon_sym_mutable] = ACTIONS(2349), + [anon_sym_constinit] = ACTIONS(2349), + [anon_sym_consteval] = ACTIONS(2349), + [anon_sym_alignas] = ACTIONS(2349), + [anon_sym__Alignas] = ACTIONS(2349), + [sym_primitive_type] = ACTIONS(2349), + [anon_sym_enum] = ACTIONS(2349), + [anon_sym_class] = ACTIONS(2349), + [anon_sym_struct] = ACTIONS(2349), + [anon_sym_union] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2349), + [anon_sym_switch] = ACTIONS(2349), + [anon_sym_case] = ACTIONS(2349), + [anon_sym_default] = ACTIONS(2349), + [anon_sym_while] = ACTIONS(2349), + [anon_sym_do] = ACTIONS(2349), + [anon_sym_for] = ACTIONS(2349), + [anon_sym_return] = ACTIONS(2349), + [anon_sym_break] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2349), + [anon_sym_goto] = ACTIONS(2349), + [anon_sym___try] = ACTIONS(2349), + [anon_sym___leave] = ACTIONS(2349), + [anon_sym_not] = ACTIONS(2349), + [anon_sym_compl] = ACTIONS(2349), + [anon_sym_DASH_DASH] = ACTIONS(2351), + [anon_sym_PLUS_PLUS] = ACTIONS(2351), + [anon_sym_sizeof] = ACTIONS(2349), + [anon_sym___alignof__] = ACTIONS(2349), + [anon_sym___alignof] = ACTIONS(2349), + [anon_sym__alignof] = ACTIONS(2349), + [anon_sym_alignof] = ACTIONS(2349), + [anon_sym__Alignof] = ACTIONS(2349), + [anon_sym_offsetof] = ACTIONS(2349), + [anon_sym__Generic] = ACTIONS(2349), + [anon_sym_asm] = ACTIONS(2349), + [anon_sym___asm__] = ACTIONS(2349), + [anon_sym___asm] = ACTIONS(2349), + [sym_number_literal] = ACTIONS(2351), + [anon_sym_L_SQUOTE] = ACTIONS(2351), + [anon_sym_u_SQUOTE] = ACTIONS(2351), + [anon_sym_U_SQUOTE] = ACTIONS(2351), + [anon_sym_u8_SQUOTE] = ACTIONS(2351), + [anon_sym_SQUOTE] = ACTIONS(2351), + [anon_sym_L_DQUOTE] = ACTIONS(2351), + [anon_sym_u_DQUOTE] = ACTIONS(2351), + [anon_sym_U_DQUOTE] = ACTIONS(2351), + [anon_sym_u8_DQUOTE] = ACTIONS(2351), + [anon_sym_DQUOTE] = ACTIONS(2351), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [anon_sym_NULL] = ACTIONS(2349), + [anon_sym_nullptr] = ACTIONS(2349), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2349), + [anon_sym_decltype] = ACTIONS(2349), + [anon_sym_explicit] = ACTIONS(2349), + [anon_sym_typename] = ACTIONS(2349), + [anon_sym_template] = ACTIONS(2349), + [anon_sym_operator] = ACTIONS(2349), + [anon_sym_try] = ACTIONS(2349), + [anon_sym_delete] = ACTIONS(2349), + [anon_sym_throw] = ACTIONS(2349), + [anon_sym_namespace] = ACTIONS(2349), + [anon_sym_using] = ACTIONS(2349), + [anon_sym_static_assert] = ACTIONS(2349), + [anon_sym_concept] = ACTIONS(2349), + [anon_sym_co_return] = ACTIONS(2349), + [anon_sym_co_yield] = ACTIONS(2349), + [anon_sym_R_DQUOTE] = ACTIONS(2351), + [anon_sym_LR_DQUOTE] = ACTIONS(2351), + [anon_sym_uR_DQUOTE] = ACTIONS(2351), + [anon_sym_UR_DQUOTE] = ACTIONS(2351), + [anon_sym_u8R_DQUOTE] = ACTIONS(2351), + [anon_sym_co_await] = ACTIONS(2349), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2349), + [sym_this] = ACTIONS(2349), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2349), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_FORWARD] = ACTIONS(2349), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2349), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2349), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2349), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2349), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_PS_GET] = ACTIONS(2349), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2349), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2349), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2349), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2349), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2349), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2349), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2349), + [anon_sym_MOZ_COLD] = ACTIONS(2349), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2349), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2349), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2349), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2349), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2349), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2349), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2349), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2349), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2349), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2349), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2349), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2349), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2349), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_NONNULL] = ACTIONS(2349), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2349), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2349), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2349), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2349), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2349), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2349), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2349), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2349), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2349), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2349), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2349), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2349), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2349), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2349), + [anon_sym_MOZ_RAII] = ACTIONS(2349), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2349), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2349), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2349), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2349), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2349), + }, + [STATE(238)] = { + [sym_identifier] = ACTIONS(2353), + [aux_sym_preproc_include_token1] = ACTIONS(2353), + [aux_sym_preproc_def_token1] = ACTIONS(2353), + [aux_sym_preproc_if_token1] = ACTIONS(2353), + [aux_sym_preproc_if_token2] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2353), + [aux_sym_preproc_else_token1] = ACTIONS(2353), + [aux_sym_preproc_elif_token1] = ACTIONS(2353), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2353), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2353), + [sym_preproc_directive] = ACTIONS(2353), [anon_sym_LPAREN2] = ACTIONS(2355), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_PLUS] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym___extension__] = ACTIONS(2353), + [anon_sym_typedef] = ACTIONS(2353), + [anon_sym_virtual] = ACTIONS(2353), + [anon_sym_extern] = ACTIONS(2353), + [anon_sym___attribute__] = ACTIONS(2353), + [anon_sym___attribute] = ACTIONS(2353), + [anon_sym_COLON_COLON] = ACTIONS(2355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2355), + [anon_sym___declspec] = ACTIONS(2353), + [anon_sym___based] = ACTIONS(2353), + [anon_sym___cdecl] = ACTIONS(2353), + [anon_sym___clrcall] = ACTIONS(2353), + [anon_sym___stdcall] = ACTIONS(2353), + [anon_sym___fastcall] = ACTIONS(2353), + [anon_sym___thiscall] = ACTIONS(2353), + [anon_sym___vectorcall] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2353), + [anon_sym_unsigned] = ACTIONS(2353), + [anon_sym_long] = ACTIONS(2353), + [anon_sym_short] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_register] = ACTIONS(2353), + [anon_sym_inline] = ACTIONS(2353), + [anon_sym___inline] = ACTIONS(2353), + [anon_sym___inline__] = ACTIONS(2353), + [anon_sym___forceinline] = ACTIONS(2353), + [anon_sym_thread_local] = ACTIONS(2353), + [anon_sym___thread] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_constexpr] = ACTIONS(2353), + [anon_sym_volatile] = ACTIONS(2353), + [anon_sym_restrict] = ACTIONS(2353), + [anon_sym___restrict__] = ACTIONS(2353), + [anon_sym__Atomic] = ACTIONS(2353), + [anon_sym__Noreturn] = ACTIONS(2353), + [anon_sym_noreturn] = ACTIONS(2353), + [anon_sym__Nonnull] = ACTIONS(2353), + [anon_sym_mutable] = ACTIONS(2353), + [anon_sym_constinit] = ACTIONS(2353), + [anon_sym_consteval] = ACTIONS(2353), + [anon_sym_alignas] = ACTIONS(2353), + [anon_sym__Alignas] = ACTIONS(2353), + [sym_primitive_type] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_class] = ACTIONS(2353), + [anon_sym_struct] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_switch] = ACTIONS(2353), + [anon_sym_case] = ACTIONS(2353), + [anon_sym_default] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_do] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_goto] = ACTIONS(2353), + [anon_sym___try] = ACTIONS(2353), + [anon_sym___leave] = ACTIONS(2353), + [anon_sym_not] = ACTIONS(2353), + [anon_sym_compl] = ACTIONS(2353), + [anon_sym_DASH_DASH] = ACTIONS(2355), + [anon_sym_PLUS_PLUS] = ACTIONS(2355), + [anon_sym_sizeof] = ACTIONS(2353), + [anon_sym___alignof__] = ACTIONS(2353), + [anon_sym___alignof] = ACTIONS(2353), + [anon_sym__alignof] = ACTIONS(2353), + [anon_sym_alignof] = ACTIONS(2353), + [anon_sym__Alignof] = ACTIONS(2353), + [anon_sym_offsetof] = ACTIONS(2353), + [anon_sym__Generic] = ACTIONS(2353), + [anon_sym_asm] = ACTIONS(2353), + [anon_sym___asm__] = ACTIONS(2353), + [anon_sym___asm] = ACTIONS(2353), + [sym_number_literal] = ACTIONS(2355), + [anon_sym_L_SQUOTE] = ACTIONS(2355), + [anon_sym_u_SQUOTE] = ACTIONS(2355), + [anon_sym_U_SQUOTE] = ACTIONS(2355), + [anon_sym_u8_SQUOTE] = ACTIONS(2355), + [anon_sym_SQUOTE] = ACTIONS(2355), + [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(2353), + [sym_false] = ACTIONS(2353), + [anon_sym_NULL] = ACTIONS(2353), + [anon_sym_nullptr] = ACTIONS(2353), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2353), + [anon_sym_decltype] = ACTIONS(2353), + [anon_sym_explicit] = ACTIONS(2353), + [anon_sym_typename] = ACTIONS(2353), + [anon_sym_template] = ACTIONS(2353), + [anon_sym_operator] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2353), + [anon_sym_delete] = ACTIONS(2353), + [anon_sym_throw] = ACTIONS(2353), + [anon_sym_namespace] = ACTIONS(2353), + [anon_sym_using] = ACTIONS(2353), + [anon_sym_static_assert] = ACTIONS(2353), + [anon_sym_concept] = ACTIONS(2353), + [anon_sym_co_return] = ACTIONS(2353), + [anon_sym_co_yield] = ACTIONS(2353), + [anon_sym_R_DQUOTE] = ACTIONS(2355), + [anon_sym_LR_DQUOTE] = ACTIONS(2355), + [anon_sym_uR_DQUOTE] = ACTIONS(2355), + [anon_sym_UR_DQUOTE] = ACTIONS(2355), + [anon_sym_u8R_DQUOTE] = ACTIONS(2355), + [anon_sym_co_await] = ACTIONS(2353), + [anon_sym_new] = ACTIONS(2353), + [anon_sym_requires] = ACTIONS(2353), + [sym_this] = ACTIONS(2353), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2353), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_FORWARD] = ACTIONS(2353), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2353), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2353), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2353), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2353), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_PS_GET] = ACTIONS(2353), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2353), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2353), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2353), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2353), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2353), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2353), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2353), + [anon_sym_MOZ_COLD] = ACTIONS(2353), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2353), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2353), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2353), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2353), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2353), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2353), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2353), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2353), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2353), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2353), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2353), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2353), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2353), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_NONNULL] = ACTIONS(2353), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2353), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2353), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2353), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2353), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2353), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2353), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2353), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2353), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2353), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2353), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2353), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2353), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2353), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2353), + [anon_sym_MOZ_RAII] = ACTIONS(2353), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2353), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2353), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2353), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2353), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2353), + }, + [STATE(239)] = { + [sym_identifier] = ACTIONS(2357), + [aux_sym_preproc_include_token1] = ACTIONS(2357), + [aux_sym_preproc_def_token1] = ACTIONS(2357), + [aux_sym_preproc_if_token1] = ACTIONS(2357), + [aux_sym_preproc_if_token2] = ACTIONS(2357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2357), + [aux_sym_preproc_else_token1] = ACTIONS(2357), + [aux_sym_preproc_elif_token1] = ACTIONS(2357), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2357), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2357), + [sym_preproc_directive] = ACTIONS(2357), + [anon_sym_LPAREN2] = ACTIONS(2359), + [anon_sym_BANG] = ACTIONS(2359), + [anon_sym_TILDE] = ACTIONS(2359), + [anon_sym_DASH] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2359), [anon_sym_AMP_AMP] = ACTIONS(2359), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2359), + [anon_sym___extension__] = ACTIONS(2357), + [anon_sym_typedef] = ACTIONS(2357), + [anon_sym_virtual] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2357), + [anon_sym___attribute__] = ACTIONS(2357), + [anon_sym___attribute] = ACTIONS(2357), + [anon_sym_COLON_COLON] = ACTIONS(2359), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2359), + [anon_sym___declspec] = ACTIONS(2357), + [anon_sym___based] = ACTIONS(2357), + [anon_sym___cdecl] = ACTIONS(2357), + [anon_sym___clrcall] = ACTIONS(2357), + [anon_sym___stdcall] = ACTIONS(2357), + [anon_sym___fastcall] = ACTIONS(2357), + [anon_sym___thiscall] = ACTIONS(2357), + [anon_sym___vectorcall] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_signed] = ACTIONS(2357), + [anon_sym_unsigned] = ACTIONS(2357), + [anon_sym_long] = ACTIONS(2357), + [anon_sym_short] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_register] = ACTIONS(2357), + [anon_sym_inline] = ACTIONS(2357), + [anon_sym___inline] = ACTIONS(2357), + [anon_sym___inline__] = ACTIONS(2357), + [anon_sym___forceinline] = ACTIONS(2357), + [anon_sym_thread_local] = ACTIONS(2357), + [anon_sym___thread] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_constexpr] = ACTIONS(2357), + [anon_sym_volatile] = ACTIONS(2357), + [anon_sym_restrict] = ACTIONS(2357), + [anon_sym___restrict__] = ACTIONS(2357), + [anon_sym__Atomic] = ACTIONS(2357), + [anon_sym__Noreturn] = ACTIONS(2357), + [anon_sym_noreturn] = ACTIONS(2357), + [anon_sym__Nonnull] = ACTIONS(2357), + [anon_sym_mutable] = ACTIONS(2357), + [anon_sym_constinit] = ACTIONS(2357), + [anon_sym_consteval] = ACTIONS(2357), + [anon_sym_alignas] = ACTIONS(2357), + [anon_sym__Alignas] = ACTIONS(2357), + [sym_primitive_type] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_class] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_switch] = ACTIONS(2357), + [anon_sym_case] = ACTIONS(2357), + [anon_sym_default] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [anon_sym_do] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_goto] = ACTIONS(2357), + [anon_sym___try] = ACTIONS(2357), + [anon_sym___leave] = ACTIONS(2357), + [anon_sym_not] = ACTIONS(2357), + [anon_sym_compl] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2359), + [anon_sym_PLUS_PLUS] = ACTIONS(2359), + [anon_sym_sizeof] = ACTIONS(2357), + [anon_sym___alignof__] = ACTIONS(2357), + [anon_sym___alignof] = ACTIONS(2357), + [anon_sym__alignof] = ACTIONS(2357), + [anon_sym_alignof] = ACTIONS(2357), + [anon_sym__Alignof] = ACTIONS(2357), + [anon_sym_offsetof] = ACTIONS(2357), + [anon_sym__Generic] = ACTIONS(2357), + [anon_sym_asm] = ACTIONS(2357), + [anon_sym___asm__] = ACTIONS(2357), + [anon_sym___asm] = ACTIONS(2357), + [sym_number_literal] = ACTIONS(2359), + [anon_sym_L_SQUOTE] = ACTIONS(2359), + [anon_sym_u_SQUOTE] = ACTIONS(2359), + [anon_sym_U_SQUOTE] = ACTIONS(2359), + [anon_sym_u8_SQUOTE] = ACTIONS(2359), + [anon_sym_SQUOTE] = ACTIONS(2359), + [anon_sym_L_DQUOTE] = ACTIONS(2359), + [anon_sym_u_DQUOTE] = ACTIONS(2359), + [anon_sym_U_DQUOTE] = ACTIONS(2359), + [anon_sym_u8_DQUOTE] = ACTIONS(2359), + [anon_sym_DQUOTE] = ACTIONS(2359), + [sym_true] = ACTIONS(2357), + [sym_false] = ACTIONS(2357), + [anon_sym_NULL] = ACTIONS(2357), + [anon_sym_nullptr] = ACTIONS(2357), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2357), + [anon_sym_decltype] = ACTIONS(2357), + [anon_sym_explicit] = ACTIONS(2357), + [anon_sym_typename] = ACTIONS(2357), + [anon_sym_template] = ACTIONS(2357), + [anon_sym_operator] = ACTIONS(2357), + [anon_sym_try] = ACTIONS(2357), + [anon_sym_delete] = ACTIONS(2357), + [anon_sym_throw] = ACTIONS(2357), + [anon_sym_namespace] = ACTIONS(2357), + [anon_sym_using] = ACTIONS(2357), + [anon_sym_static_assert] = ACTIONS(2357), + [anon_sym_concept] = ACTIONS(2357), + [anon_sym_co_return] = ACTIONS(2357), + [anon_sym_co_yield] = ACTIONS(2357), + [anon_sym_R_DQUOTE] = ACTIONS(2359), + [anon_sym_LR_DQUOTE] = ACTIONS(2359), + [anon_sym_uR_DQUOTE] = ACTIONS(2359), + [anon_sym_UR_DQUOTE] = ACTIONS(2359), + [anon_sym_u8R_DQUOTE] = ACTIONS(2359), + [anon_sym_co_await] = ACTIONS(2357), + [anon_sym_new] = ACTIONS(2357), + [anon_sym_requires] = ACTIONS(2357), + [sym_this] = ACTIONS(2357), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2357), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_FORWARD] = ACTIONS(2357), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2357), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2357), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2357), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2357), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_PS_GET] = ACTIONS(2357), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2357), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2357), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2357), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2357), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2357), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2357), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2357), + [anon_sym_MOZ_COLD] = ACTIONS(2357), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2357), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2357), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2357), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2357), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2357), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2357), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2357), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2357), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2357), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2357), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2357), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2357), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2357), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_NONNULL] = ACTIONS(2357), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2357), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2357), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2357), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2357), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2357), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2357), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2357), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2357), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2357), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2357), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2357), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2357), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2357), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2357), + [anon_sym_MOZ_RAII] = ACTIONS(2357), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2357), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2357), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2357), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2357), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2357), + }, + [STATE(240)] = { + [sym_identifier] = ACTIONS(2361), + [aux_sym_preproc_include_token1] = ACTIONS(2361), + [aux_sym_preproc_def_token1] = ACTIONS(2361), + [aux_sym_preproc_if_token1] = ACTIONS(2361), + [aux_sym_preproc_if_token2] = ACTIONS(2361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2361), + [aux_sym_preproc_else_token1] = ACTIONS(2361), + [aux_sym_preproc_elif_token1] = ACTIONS(2361), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2361), + [sym_preproc_directive] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(2363), + [anon_sym_AMP_AMP] = ACTIONS(2363), [anon_sym_AMP] = ACTIONS(2361), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym___extension__] = ACTIONS(2361), + [anon_sym_typedef] = ACTIONS(2361), + [anon_sym_virtual] = ACTIONS(2361), + [anon_sym_extern] = ACTIONS(2361), + [anon_sym___attribute__] = ACTIONS(2361), + [anon_sym___attribute] = ACTIONS(2361), [anon_sym_COLON_COLON] = ACTIONS(2363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2363), + [anon_sym___declspec] = ACTIONS(2361), + [anon_sym___based] = ACTIONS(2361), + [anon_sym___cdecl] = ACTIONS(2361), + [anon_sym___clrcall] = ACTIONS(2361), + [anon_sym___stdcall] = ACTIONS(2361), + [anon_sym___fastcall] = ACTIONS(2361), + [anon_sym___thiscall] = ACTIONS(2361), + [anon_sym___vectorcall] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_signed] = ACTIONS(2361), + [anon_sym_unsigned] = ACTIONS(2361), + [anon_sym_long] = ACTIONS(2361), + [anon_sym_short] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_register] = ACTIONS(2361), + [anon_sym_inline] = ACTIONS(2361), + [anon_sym___inline] = ACTIONS(2361), + [anon_sym___inline__] = ACTIONS(2361), + [anon_sym___forceinline] = ACTIONS(2361), + [anon_sym_thread_local] = ACTIONS(2361), + [anon_sym___thread] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_constexpr] = ACTIONS(2361), + [anon_sym_volatile] = ACTIONS(2361), + [anon_sym_restrict] = ACTIONS(2361), + [anon_sym___restrict__] = ACTIONS(2361), + [anon_sym__Atomic] = ACTIONS(2361), + [anon_sym__Noreturn] = ACTIONS(2361), + [anon_sym_noreturn] = ACTIONS(2361), + [anon_sym__Nonnull] = ACTIONS(2361), + [anon_sym_mutable] = ACTIONS(2361), + [anon_sym_constinit] = ACTIONS(2361), + [anon_sym_consteval] = ACTIONS(2361), + [anon_sym_alignas] = ACTIONS(2361), + [anon_sym__Alignas] = ACTIONS(2361), + [sym_primitive_type] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_class] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2361), + [anon_sym_union] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_switch] = ACTIONS(2361), + [anon_sym_case] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_do] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_goto] = ACTIONS(2361), + [anon_sym___try] = ACTIONS(2361), + [anon_sym___leave] = ACTIONS(2361), + [anon_sym_not] = ACTIONS(2361), + [anon_sym_compl] = ACTIONS(2361), + [anon_sym_DASH_DASH] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_sizeof] = ACTIONS(2361), + [anon_sym___alignof__] = ACTIONS(2361), + [anon_sym___alignof] = ACTIONS(2361), + [anon_sym__alignof] = ACTIONS(2361), + [anon_sym_alignof] = ACTIONS(2361), + [anon_sym__Alignof] = ACTIONS(2361), + [anon_sym_offsetof] = ACTIONS(2361), + [anon_sym__Generic] = ACTIONS(2361), + [anon_sym_asm] = ACTIONS(2361), + [anon_sym___asm__] = ACTIONS(2361), + [anon_sym___asm] = ACTIONS(2361), + [sym_number_literal] = ACTIONS(2363), + [anon_sym_L_SQUOTE] = ACTIONS(2363), + [anon_sym_u_SQUOTE] = ACTIONS(2363), + [anon_sym_U_SQUOTE] = ACTIONS(2363), + [anon_sym_u8_SQUOTE] = ACTIONS(2363), + [anon_sym_SQUOTE] = ACTIONS(2363), + [anon_sym_L_DQUOTE] = ACTIONS(2363), + [anon_sym_u_DQUOTE] = ACTIONS(2363), + [anon_sym_U_DQUOTE] = ACTIONS(2363), + [anon_sym_u8_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [sym_true] = ACTIONS(2361), + [sym_false] = ACTIONS(2361), + [anon_sym_NULL] = ACTIONS(2361), + [anon_sym_nullptr] = ACTIONS(2361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2361), + [anon_sym_decltype] = ACTIONS(2361), + [anon_sym_explicit] = ACTIONS(2361), + [anon_sym_typename] = ACTIONS(2361), + [anon_sym_template] = ACTIONS(2361), + [anon_sym_operator] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2361), + [anon_sym_delete] = ACTIONS(2361), + [anon_sym_throw] = ACTIONS(2361), + [anon_sym_namespace] = ACTIONS(2361), + [anon_sym_using] = ACTIONS(2361), + [anon_sym_static_assert] = ACTIONS(2361), + [anon_sym_concept] = ACTIONS(2361), + [anon_sym_co_return] = ACTIONS(2361), + [anon_sym_co_yield] = 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(2361), + [anon_sym_new] = ACTIONS(2361), + [anon_sym_requires] = ACTIONS(2361), + [sym_this] = ACTIONS(2361), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2361), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_FORWARD] = ACTIONS(2361), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2361), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2361), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2361), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2361), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_PS_GET] = ACTIONS(2361), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2361), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2361), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2361), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2361), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2361), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2361), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2361), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2361), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2361), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2361), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2361), + [anon_sym_MOZ_COLD] = ACTIONS(2361), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2361), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2361), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2361), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2361), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2361), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2361), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2361), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2361), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2361), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2361), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2361), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2361), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2361), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2361), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2361), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2361), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2361), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2361), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2361), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2361), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_NONNULL] = ACTIONS(2361), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2361), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2361), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2361), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2361), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2361), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_NORETURN] = ACTIONS(2361), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2361), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2361), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2361), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2361), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2361), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2361), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2361), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2361), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2361), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2361), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2361), + [anon_sym_MOZ_RAII] = ACTIONS(2361), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2361), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2361), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2361), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2361), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2361), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2361), + }, + [STATE(241)] = { + [sym_identifier] = ACTIONS(2365), + [aux_sym_preproc_include_token1] = ACTIONS(2365), + [aux_sym_preproc_def_token1] = ACTIONS(2365), + [aux_sym_preproc_if_token1] = ACTIONS(2365), + [aux_sym_preproc_if_token2] = ACTIONS(2365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2365), + [aux_sym_preproc_else_token1] = ACTIONS(2365), + [aux_sym_preproc_elif_token1] = ACTIONS(2365), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2365), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2365), + [sym_preproc_directive] = ACTIONS(2365), + [anon_sym_LPAREN2] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_AMP_AMP] = ACTIONS(2367), + [anon_sym_AMP] = ACTIONS(2365), + [anon_sym_SEMI] = ACTIONS(2367), + [anon_sym___extension__] = ACTIONS(2365), + [anon_sym_typedef] = ACTIONS(2365), + [anon_sym_virtual] = ACTIONS(2365), + [anon_sym_extern] = ACTIONS(2365), + [anon_sym___attribute__] = ACTIONS(2365), + [anon_sym___attribute] = ACTIONS(2365), + [anon_sym_COLON_COLON] = ACTIONS(2367), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2367), + [anon_sym___declspec] = ACTIONS(2365), + [anon_sym___based] = ACTIONS(2365), + [anon_sym___cdecl] = ACTIONS(2365), + [anon_sym___clrcall] = ACTIONS(2365), + [anon_sym___stdcall] = ACTIONS(2365), + [anon_sym___fastcall] = ACTIONS(2365), + [anon_sym___thiscall] = ACTIONS(2365), + [anon_sym___vectorcall] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_signed] = ACTIONS(2365), + [anon_sym_unsigned] = ACTIONS(2365), + [anon_sym_long] = ACTIONS(2365), + [anon_sym_short] = ACTIONS(2365), [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(1463), - [anon_sym_class] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_union] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(2367), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [784] = { - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3163), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3896), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3720), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_parameter_list] = STATE(689), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1504), - [sym_template_function] = STATE(3720), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3503), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1357), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2369), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2373), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(2367), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [785] = { - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3165), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3916), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3720), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_parameter_list] = STATE(694), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1504), - [sym_template_function] = STATE(3720), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3503), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1357), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2369), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2373), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(2367), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [786] = { - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3148), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3905), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3720), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_parameter_list] = STATE(692), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1504), - [sym_template_function] = STATE(3720), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3503), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1357), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2369), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2373), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(2367), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [787] = { - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3151), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3917), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3720), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_parameter_list] = STATE(695), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1504), - [sym_template_function] = STATE(3720), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3503), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_type_identifier] = STATE(1357), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), + [anon_sym_static] = ACTIONS(2365), + [anon_sym_register] = ACTIONS(2365), + [anon_sym_inline] = ACTIONS(2365), + [anon_sym___inline] = ACTIONS(2365), + [anon_sym___inline__] = ACTIONS(2365), + [anon_sym___forceinline] = ACTIONS(2365), + [anon_sym_thread_local] = ACTIONS(2365), + [anon_sym___thread] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_constexpr] = ACTIONS(2365), + [anon_sym_volatile] = ACTIONS(2365), + [anon_sym_restrict] = ACTIONS(2365), + [anon_sym___restrict__] = ACTIONS(2365), + [anon_sym__Atomic] = ACTIONS(2365), + [anon_sym__Noreturn] = ACTIONS(2365), + [anon_sym_noreturn] = ACTIONS(2365), + [anon_sym__Nonnull] = ACTIONS(2365), + [anon_sym_mutable] = ACTIONS(2365), + [anon_sym_constinit] = ACTIONS(2365), + [anon_sym_consteval] = ACTIONS(2365), + [anon_sym_alignas] = ACTIONS(2365), + [anon_sym__Alignas] = ACTIONS(2365), + [sym_primitive_type] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), + [anon_sym_class] = ACTIONS(2365), + [anon_sym_struct] = ACTIONS(2365), + [anon_sym_union] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_switch] = ACTIONS(2365), + [anon_sym_case] = ACTIONS(2365), + [anon_sym_default] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), + [anon_sym_do] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_goto] = ACTIONS(2365), + [anon_sym___try] = ACTIONS(2365), + [anon_sym___leave] = ACTIONS(2365), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(2367), + [anon_sym_PLUS_PLUS] = ACTIONS(2367), + [anon_sym_sizeof] = ACTIONS(2365), + [anon_sym___alignof__] = ACTIONS(2365), + [anon_sym___alignof] = ACTIONS(2365), + [anon_sym__alignof] = ACTIONS(2365), + [anon_sym_alignof] = ACTIONS(2365), + [anon_sym__Alignof] = ACTIONS(2365), + [anon_sym_offsetof] = ACTIONS(2365), + [anon_sym__Generic] = ACTIONS(2365), + [anon_sym_asm] = ACTIONS(2365), + [anon_sym___asm__] = ACTIONS(2365), + [anon_sym___asm] = ACTIONS(2365), + [sym_number_literal] = ACTIONS(2367), + [anon_sym_L_SQUOTE] = ACTIONS(2367), + [anon_sym_u_SQUOTE] = ACTIONS(2367), + [anon_sym_U_SQUOTE] = ACTIONS(2367), + [anon_sym_u8_SQUOTE] = ACTIONS(2367), + [anon_sym_SQUOTE] = ACTIONS(2367), + [anon_sym_L_DQUOTE] = ACTIONS(2367), + [anon_sym_u_DQUOTE] = ACTIONS(2367), + [anon_sym_U_DQUOTE] = ACTIONS(2367), + [anon_sym_u8_DQUOTE] = ACTIONS(2367), + [anon_sym_DQUOTE] = ACTIONS(2367), + [sym_true] = ACTIONS(2365), + [sym_false] = ACTIONS(2365), + [anon_sym_NULL] = ACTIONS(2365), + [anon_sym_nullptr] = ACTIONS(2365), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2365), + [anon_sym_decltype] = ACTIONS(2365), + [anon_sym_explicit] = ACTIONS(2365), + [anon_sym_typename] = ACTIONS(2365), + [anon_sym_template] = ACTIONS(2365), + [anon_sym_operator] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2365), + [anon_sym_delete] = ACTIONS(2365), + [anon_sym_throw] = ACTIONS(2365), + [anon_sym_namespace] = ACTIONS(2365), + [anon_sym_using] = ACTIONS(2365), + [anon_sym_static_assert] = ACTIONS(2365), + [anon_sym_concept] = ACTIONS(2365), + [anon_sym_co_return] = ACTIONS(2365), + [anon_sym_co_yield] = ACTIONS(2365), + [anon_sym_R_DQUOTE] = ACTIONS(2367), + [anon_sym_LR_DQUOTE] = ACTIONS(2367), + [anon_sym_uR_DQUOTE] = ACTIONS(2367), + [anon_sym_UR_DQUOTE] = ACTIONS(2367), + [anon_sym_u8R_DQUOTE] = ACTIONS(2367), + [anon_sym_co_await] = ACTIONS(2365), + [anon_sym_new] = ACTIONS(2365), + [anon_sym_requires] = ACTIONS(2365), + [sym_this] = ACTIONS(2365), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2365), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_FORWARD] = ACTIONS(2365), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2365), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2365), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2365), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2365), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_PS_GET] = ACTIONS(2365), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2365), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2365), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2365), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2365), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2365), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2365), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2365), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2365), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2365), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2365), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2365), + [anon_sym_MOZ_COLD] = ACTIONS(2365), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2365), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2365), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2365), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2365), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2365), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2365), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2365), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2365), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2365), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2365), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2365), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2365), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2365), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2365), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2365), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2365), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2365), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2365), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2365), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2365), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_NONNULL] = ACTIONS(2365), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2365), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2365), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2365), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2365), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2365), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_NORETURN] = ACTIONS(2365), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2365), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2365), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2365), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2365), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2365), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2365), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2365), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2365), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2365), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2365), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2365), + [anon_sym_MOZ_RAII] = ACTIONS(2365), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2365), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2365), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2365), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2365), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2365), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2365), + }, + [STATE(242)] = { [sym_identifier] = ACTIONS(2369), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2373), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(2367), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [788] = { - [sym__declaration_modifiers] = STATE(1221), - [sym__declaration_specifiers] = STATE(2306), - [sym_attribute_specifier] = STATE(1221), - [sym_attribute_declaration] = STATE(1221), - [sym_ms_declspec_modifier] = STATE(1221), - [sym__abstract_declarator] = STATE(4163), - [sym_abstract_parenthesized_declarator] = STATE(3728), - [sym_abstract_pointer_declarator] = STATE(3728), - [sym_abstract_function_declarator] = STATE(3728), - [sym_abstract_array_declarator] = STATE(3728), - [sym_storage_class_specifier] = STATE(1221), - [sym_type_qualifier] = STATE(1221), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_parameter_list] = STATE(3266), - [sym_parameter_declaration] = STATE(4310), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1221), - [sym_dependent_type] = STATE(1358), - [sym_optional_parameter_declaration] = STATE(4310), - [sym_variadic_parameter_declaration] = STATE(4310), - [sym_abstract_reference_declarator] = STATE(3728), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3908), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1221), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2351), - [anon_sym_RPAREN] = ACTIONS(2353), - [anon_sym_LPAREN2] = ACTIONS(2377), + [aux_sym_preproc_include_token1] = ACTIONS(2369), + [aux_sym_preproc_def_token1] = ACTIONS(2369), + [aux_sym_preproc_if_token1] = ACTIONS(2369), + [aux_sym_preproc_if_token2] = ACTIONS(2369), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2369), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2369), + [aux_sym_preproc_else_token1] = ACTIONS(2369), + [aux_sym_preproc_elif_token1] = ACTIONS(2369), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2369), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2369), + [sym_preproc_directive] = ACTIONS(2369), + [anon_sym_LPAREN2] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(2371), + [anon_sym_TILDE] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2369), + [anon_sym_PLUS] = ACTIONS(2369), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_AMP_AMP] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2369), + [anon_sym_SEMI] = ACTIONS(2371), + [anon_sym___extension__] = ACTIONS(2369), + [anon_sym_typedef] = ACTIONS(2369), + [anon_sym_virtual] = ACTIONS(2369), + [anon_sym_extern] = ACTIONS(2369), + [anon_sym___attribute__] = ACTIONS(2369), + [anon_sym___attribute] = ACTIONS(2369), + [anon_sym_COLON_COLON] = ACTIONS(2371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2371), + [anon_sym___declspec] = ACTIONS(2369), + [anon_sym___based] = ACTIONS(2369), + [anon_sym___cdecl] = ACTIONS(2369), + [anon_sym___clrcall] = ACTIONS(2369), + [anon_sym___stdcall] = ACTIONS(2369), + [anon_sym___fastcall] = ACTIONS(2369), + [anon_sym___thiscall] = ACTIONS(2369), + [anon_sym___vectorcall] = ACTIONS(2369), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_signed] = ACTIONS(2369), + [anon_sym_unsigned] = ACTIONS(2369), + [anon_sym_long] = ACTIONS(2369), + [anon_sym_short] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2369), + [anon_sym_static] = ACTIONS(2369), + [anon_sym_register] = ACTIONS(2369), + [anon_sym_inline] = ACTIONS(2369), + [anon_sym___inline] = ACTIONS(2369), + [anon_sym___inline__] = ACTIONS(2369), + [anon_sym___forceinline] = ACTIONS(2369), + [anon_sym_thread_local] = ACTIONS(2369), + [anon_sym___thread] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [anon_sym_constexpr] = ACTIONS(2369), + [anon_sym_volatile] = ACTIONS(2369), + [anon_sym_restrict] = ACTIONS(2369), + [anon_sym___restrict__] = ACTIONS(2369), + [anon_sym__Atomic] = ACTIONS(2369), + [anon_sym__Noreturn] = ACTIONS(2369), + [anon_sym_noreturn] = ACTIONS(2369), + [anon_sym__Nonnull] = ACTIONS(2369), + [anon_sym_mutable] = ACTIONS(2369), + [anon_sym_constinit] = ACTIONS(2369), + [anon_sym_consteval] = ACTIONS(2369), + [anon_sym_alignas] = ACTIONS(2369), + [anon_sym__Alignas] = ACTIONS(2369), + [sym_primitive_type] = ACTIONS(2369), + [anon_sym_enum] = ACTIONS(2369), + [anon_sym_class] = ACTIONS(2369), + [anon_sym_struct] = ACTIONS(2369), + [anon_sym_union] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_switch] = ACTIONS(2369), + [anon_sym_case] = ACTIONS(2369), + [anon_sym_default] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [anon_sym_do] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_goto] = ACTIONS(2369), + [anon_sym___try] = ACTIONS(2369), + [anon_sym___leave] = ACTIONS(2369), + [anon_sym_not] = ACTIONS(2369), + [anon_sym_compl] = ACTIONS(2369), + [anon_sym_DASH_DASH] = ACTIONS(2371), + [anon_sym_PLUS_PLUS] = ACTIONS(2371), + [anon_sym_sizeof] = ACTIONS(2369), + [anon_sym___alignof__] = ACTIONS(2369), + [anon_sym___alignof] = ACTIONS(2369), + [anon_sym__alignof] = ACTIONS(2369), + [anon_sym_alignof] = ACTIONS(2369), + [anon_sym__Alignof] = ACTIONS(2369), + [anon_sym_offsetof] = ACTIONS(2369), + [anon_sym__Generic] = ACTIONS(2369), + [anon_sym_asm] = ACTIONS(2369), + [anon_sym___asm__] = ACTIONS(2369), + [anon_sym___asm] = ACTIONS(2369), + [sym_number_literal] = ACTIONS(2371), + [anon_sym_L_SQUOTE] = ACTIONS(2371), + [anon_sym_u_SQUOTE] = ACTIONS(2371), + [anon_sym_U_SQUOTE] = ACTIONS(2371), + [anon_sym_u8_SQUOTE] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2371), + [anon_sym_L_DQUOTE] = ACTIONS(2371), + [anon_sym_u_DQUOTE] = ACTIONS(2371), + [anon_sym_U_DQUOTE] = ACTIONS(2371), + [anon_sym_u8_DQUOTE] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(2371), + [sym_true] = ACTIONS(2369), + [sym_false] = ACTIONS(2369), + [anon_sym_NULL] = ACTIONS(2369), + [anon_sym_nullptr] = ACTIONS(2369), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2369), + [anon_sym_decltype] = ACTIONS(2369), + [anon_sym_explicit] = ACTIONS(2369), + [anon_sym_typename] = ACTIONS(2369), + [anon_sym_template] = ACTIONS(2369), + [anon_sym_operator] = ACTIONS(2369), + [anon_sym_try] = ACTIONS(2369), + [anon_sym_delete] = ACTIONS(2369), + [anon_sym_throw] = ACTIONS(2369), + [anon_sym_namespace] = ACTIONS(2369), + [anon_sym_using] = ACTIONS(2369), + [anon_sym_static_assert] = ACTIONS(2369), + [anon_sym_concept] = ACTIONS(2369), + [anon_sym_co_return] = ACTIONS(2369), + [anon_sym_co_yield] = ACTIONS(2369), + [anon_sym_R_DQUOTE] = ACTIONS(2371), + [anon_sym_LR_DQUOTE] = ACTIONS(2371), + [anon_sym_uR_DQUOTE] = ACTIONS(2371), + [anon_sym_UR_DQUOTE] = ACTIONS(2371), + [anon_sym_u8R_DQUOTE] = ACTIONS(2371), + [anon_sym_co_await] = ACTIONS(2369), + [anon_sym_new] = ACTIONS(2369), + [anon_sym_requires] = ACTIONS(2369), + [sym_this] = ACTIONS(2369), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2369), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_FORWARD] = ACTIONS(2369), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2369), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2369), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2369), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2369), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_PS_GET] = ACTIONS(2369), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2369), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2369), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2369), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2369), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2369), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2369), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2369), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2369), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2369), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2369), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2369), + [anon_sym_MOZ_COLD] = ACTIONS(2369), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2369), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2369), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2369), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2369), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2369), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2369), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2369), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2369), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2369), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2369), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2369), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2369), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2369), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2369), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2369), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2369), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2369), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2369), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2369), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2369), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_NONNULL] = ACTIONS(2369), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2369), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2369), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2369), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2369), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2369), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_NORETURN] = ACTIONS(2369), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2369), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2369), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2369), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2369), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2369), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2369), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2369), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2369), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2369), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2369), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2369), + [anon_sym_MOZ_RAII] = ACTIONS(2369), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2369), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2369), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2369), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2369), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2369), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2369), + }, + [STATE(243)] = { + [sym_identifier] = ACTIONS(2373), + [aux_sym_preproc_include_token1] = ACTIONS(2373), + [aux_sym_preproc_def_token1] = ACTIONS(2373), + [aux_sym_preproc_if_token1] = ACTIONS(2373), + [aux_sym_preproc_if_token2] = ACTIONS(2373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2373), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2373), + [aux_sym_preproc_else_token1] = ACTIONS(2373), + [aux_sym_preproc_elif_token1] = ACTIONS(2373), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2373), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2373), + [sym_preproc_directive] = ACTIONS(2373), + [anon_sym_LPAREN2] = ACTIONS(2375), + [anon_sym_BANG] = ACTIONS(2375), + [anon_sym_TILDE] = ACTIONS(2375), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2375), + [anon_sym_AMP_AMP] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym___extension__] = ACTIONS(2373), + [anon_sym_typedef] = ACTIONS(2373), + [anon_sym_virtual] = ACTIONS(2373), + [anon_sym_extern] = ACTIONS(2373), + [anon_sym___attribute__] = ACTIONS(2373), + [anon_sym___attribute] = ACTIONS(2373), + [anon_sym_COLON_COLON] = ACTIONS(2375), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2375), + [anon_sym___declspec] = ACTIONS(2373), + [anon_sym___based] = ACTIONS(2373), + [anon_sym___cdecl] = ACTIONS(2373), + [anon_sym___clrcall] = ACTIONS(2373), + [anon_sym___stdcall] = ACTIONS(2373), + [anon_sym___fastcall] = ACTIONS(2373), + [anon_sym___thiscall] = ACTIONS(2373), + [anon_sym___vectorcall] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_signed] = ACTIONS(2373), + [anon_sym_unsigned] = ACTIONS(2373), + [anon_sym_long] = ACTIONS(2373), + [anon_sym_short] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_register] = ACTIONS(2373), + [anon_sym_inline] = ACTIONS(2373), + [anon_sym___inline] = ACTIONS(2373), + [anon_sym___inline__] = ACTIONS(2373), + [anon_sym___forceinline] = ACTIONS(2373), + [anon_sym_thread_local] = ACTIONS(2373), + [anon_sym___thread] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_constexpr] = ACTIONS(2373), + [anon_sym_volatile] = ACTIONS(2373), + [anon_sym_restrict] = ACTIONS(2373), + [anon_sym___restrict__] = ACTIONS(2373), + [anon_sym__Atomic] = ACTIONS(2373), + [anon_sym__Noreturn] = ACTIONS(2373), + [anon_sym_noreturn] = ACTIONS(2373), + [anon_sym__Nonnull] = ACTIONS(2373), + [anon_sym_mutable] = ACTIONS(2373), + [anon_sym_constinit] = ACTIONS(2373), + [anon_sym_consteval] = ACTIONS(2373), + [anon_sym_alignas] = ACTIONS(2373), + [anon_sym__Alignas] = ACTIONS(2373), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_class] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_switch] = ACTIONS(2373), + [anon_sym_case] = ACTIONS(2373), + [anon_sym_default] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_goto] = ACTIONS(2373), + [anon_sym___try] = ACTIONS(2373), + [anon_sym___leave] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2373), + [anon_sym_compl] = ACTIONS(2373), + [anon_sym_DASH_DASH] = ACTIONS(2375), + [anon_sym_PLUS_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2373), + [anon_sym___alignof__] = ACTIONS(2373), + [anon_sym___alignof] = ACTIONS(2373), + [anon_sym__alignof] = ACTIONS(2373), + [anon_sym_alignof] = ACTIONS(2373), + [anon_sym__Alignof] = ACTIONS(2373), + [anon_sym_offsetof] = ACTIONS(2373), + [anon_sym__Generic] = ACTIONS(2373), + [anon_sym_asm] = ACTIONS(2373), + [anon_sym___asm__] = ACTIONS(2373), + [anon_sym___asm] = ACTIONS(2373), + [sym_number_literal] = ACTIONS(2375), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2375), + [anon_sym_u_DQUOTE] = ACTIONS(2375), + [anon_sym_U_DQUOTE] = ACTIONS(2375), + [anon_sym_u8_DQUOTE] = ACTIONS(2375), + [anon_sym_DQUOTE] = ACTIONS(2375), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [anon_sym_NULL] = ACTIONS(2373), + [anon_sym_nullptr] = ACTIONS(2373), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2373), + [anon_sym_decltype] = ACTIONS(2373), + [anon_sym_explicit] = ACTIONS(2373), + [anon_sym_typename] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(2373), + [anon_sym_operator] = ACTIONS(2373), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_delete] = ACTIONS(2373), + [anon_sym_throw] = ACTIONS(2373), + [anon_sym_namespace] = ACTIONS(2373), + [anon_sym_using] = ACTIONS(2373), + [anon_sym_static_assert] = ACTIONS(2373), + [anon_sym_concept] = ACTIONS(2373), + [anon_sym_co_return] = ACTIONS(2373), + [anon_sym_co_yield] = ACTIONS(2373), + [anon_sym_R_DQUOTE] = ACTIONS(2375), + [anon_sym_LR_DQUOTE] = ACTIONS(2375), + [anon_sym_uR_DQUOTE] = ACTIONS(2375), + [anon_sym_UR_DQUOTE] = ACTIONS(2375), + [anon_sym_u8R_DQUOTE] = ACTIONS(2375), + [anon_sym_co_await] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_requires] = ACTIONS(2373), + [sym_this] = ACTIONS(2373), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2373), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_FORWARD] = ACTIONS(2373), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2373), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2373), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2373), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2373), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_PS_GET] = ACTIONS(2373), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2373), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2373), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2373), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2373), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2373), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2373), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2373), + [anon_sym_MOZ_COLD] = ACTIONS(2373), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2373), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2373), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2373), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2373), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2373), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2373), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2373), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2373), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2373), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2373), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2373), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2373), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2373), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_NONNULL] = ACTIONS(2373), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2373), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2373), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2373), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2373), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2373), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2373), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2373), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2373), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2373), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2373), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2373), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2373), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2373), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2373), + [anon_sym_MOZ_RAII] = ACTIONS(2373), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2373), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2373), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2373), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2373), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2373), + }, + [STATE(244)] = { + [sym_else_clause] = STATE(298), + [ts_builtin_sym_end] = ACTIONS(1959), + [sym_identifier] = ACTIONS(1957), + [aux_sym_preproc_include_token1] = ACTIONS(1957), + [aux_sym_preproc_def_token1] = ACTIONS(1957), + [aux_sym_preproc_if_token1] = ACTIONS(1957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1957), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1957), + [sym_preproc_directive] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1959), + [anon_sym_BANG] = ACTIONS(1959), + [anon_sym_TILDE] = ACTIONS(1959), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym___extension__] = ACTIONS(1957), + [anon_sym_typedef] = ACTIONS(1957), + [anon_sym_virtual] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym___attribute__] = ACTIONS(1957), + [anon_sym___attribute] = ACTIONS(1957), + [anon_sym_COLON_COLON] = ACTIONS(1959), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1959), + [anon_sym___declspec] = ACTIONS(1957), + [anon_sym___based] = ACTIONS(1957), + [anon_sym___cdecl] = ACTIONS(1957), + [anon_sym___clrcall] = ACTIONS(1957), + [anon_sym___stdcall] = ACTIONS(1957), + [anon_sym___fastcall] = ACTIONS(1957), + [anon_sym___thiscall] = ACTIONS(1957), + [anon_sym___vectorcall] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_signed] = ACTIONS(1957), + [anon_sym_unsigned] = ACTIONS(1957), + [anon_sym_long] = ACTIONS(1957), + [anon_sym_short] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1957), + [anon_sym_static] = ACTIONS(1957), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_inline] = ACTIONS(1957), + [anon_sym___inline] = ACTIONS(1957), + [anon_sym___inline__] = ACTIONS(1957), + [anon_sym___forceinline] = ACTIONS(1957), + [anon_sym_thread_local] = ACTIONS(1957), + [anon_sym___thread] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [anon_sym_constexpr] = ACTIONS(1957), + [anon_sym_volatile] = ACTIONS(1957), + [anon_sym_restrict] = ACTIONS(1957), + [anon_sym___restrict__] = ACTIONS(1957), + [anon_sym__Atomic] = ACTIONS(1957), + [anon_sym__Noreturn] = ACTIONS(1957), + [anon_sym_noreturn] = ACTIONS(1957), + [anon_sym__Nonnull] = ACTIONS(1957), + [anon_sym_mutable] = ACTIONS(1957), + [anon_sym_constinit] = ACTIONS(1957), + [anon_sym_consteval] = ACTIONS(1957), + [anon_sym_alignas] = ACTIONS(1957), + [anon_sym__Alignas] = ACTIONS(1957), + [sym_primitive_type] = ACTIONS(1957), + [anon_sym_enum] = ACTIONS(1957), + [anon_sym_class] = ACTIONS(1957), + [anon_sym_struct] = ACTIONS(1957), + [anon_sym_union] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(2254), + [anon_sym_switch] = ACTIONS(1957), + [anon_sym_case] = ACTIONS(1957), + [anon_sym_default] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_goto] = ACTIONS(1957), + [anon_sym___try] = ACTIONS(1957), + [anon_sym___leave] = ACTIONS(1957), + [anon_sym_not] = ACTIONS(1957), + [anon_sym_compl] = ACTIONS(1957), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_sizeof] = ACTIONS(1957), + [anon_sym___alignof__] = ACTIONS(1957), + [anon_sym___alignof] = ACTIONS(1957), + [anon_sym__alignof] = ACTIONS(1957), + [anon_sym_alignof] = ACTIONS(1957), + [anon_sym__Alignof] = ACTIONS(1957), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1957), + [anon_sym_asm] = ACTIONS(1957), + [anon_sym___asm__] = ACTIONS(1957), + [anon_sym___asm] = ACTIONS(1957), + [sym_number_literal] = ACTIONS(1959), + [anon_sym_L_SQUOTE] = ACTIONS(1959), + [anon_sym_u_SQUOTE] = ACTIONS(1959), + [anon_sym_U_SQUOTE] = ACTIONS(1959), + [anon_sym_u8_SQUOTE] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(1959), + [anon_sym_L_DQUOTE] = ACTIONS(1959), + [anon_sym_u_DQUOTE] = ACTIONS(1959), + [anon_sym_U_DQUOTE] = ACTIONS(1959), + [anon_sym_u8_DQUOTE] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [sym_true] = ACTIONS(1957), + [sym_false] = ACTIONS(1957), + [anon_sym_NULL] = ACTIONS(1957), + [anon_sym_nullptr] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1957), + [anon_sym_decltype] = ACTIONS(1957), + [anon_sym_explicit] = ACTIONS(1957), + [anon_sym_typename] = ACTIONS(1957), + [anon_sym_template] = ACTIONS(1957), + [anon_sym_operator] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_delete] = ACTIONS(1957), + [anon_sym_throw] = ACTIONS(1957), + [anon_sym_namespace] = ACTIONS(1957), + [anon_sym_using] = ACTIONS(1957), + [anon_sym_static_assert] = ACTIONS(1957), + [anon_sym_concept] = ACTIONS(1957), + [anon_sym_co_return] = ACTIONS(1957), + [anon_sym_co_yield] = ACTIONS(1957), + [anon_sym_R_DQUOTE] = ACTIONS(1959), + [anon_sym_LR_DQUOTE] = ACTIONS(1959), + [anon_sym_uR_DQUOTE] = ACTIONS(1959), + [anon_sym_UR_DQUOTE] = ACTIONS(1959), + [anon_sym_u8R_DQUOTE] = ACTIONS(1959), + [anon_sym_co_await] = ACTIONS(1957), + [anon_sym_new] = ACTIONS(1957), + [anon_sym_requires] = ACTIONS(1957), + [sym_this] = ACTIONS(1957), + [sym_alone_macro] = ACTIONS(1959), + [aux_sym_alone_macro_call_token1] = ACTIONS(1957), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_FORWARD] = ACTIONS(1957), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1957), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_PS_GET] = ACTIONS(1957), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1957), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1957), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1957), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1957), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1957), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1957), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1957), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1957), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1957), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1957), + [anon_sym_MOZ_COLD] = ACTIONS(1957), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1957), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1957), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1957), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1957), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1957), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1957), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1957), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1957), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1957), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1957), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1957), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1957), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1957), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1957), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1957), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1957), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1957), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1957), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1957), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1957), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_NONNULL] = ACTIONS(1957), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1957), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1957), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1957), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1957), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1957), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_NORETURN] = ACTIONS(1957), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1957), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1957), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1957), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1957), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1957), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1957), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1957), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1957), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1957), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1957), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1957), + [anon_sym_MOZ_RAII] = ACTIONS(1957), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1957), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1957), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1957), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1957), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1957), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1957), + }, + [STATE(245)] = { + [sym_identifier] = ACTIONS(2377), + [aux_sym_preproc_include_token1] = ACTIONS(2377), + [aux_sym_preproc_def_token1] = ACTIONS(2377), + [aux_sym_preproc_if_token1] = ACTIONS(2377), + [aux_sym_preproc_if_token2] = ACTIONS(2377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2377), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2377), + [aux_sym_preproc_else_token1] = ACTIONS(2377), + [aux_sym_preproc_elif_token1] = ACTIONS(2377), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2377), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2377), + [sym_preproc_directive] = ACTIONS(2377), + [anon_sym_LPAREN2] = ACTIONS(2379), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2377), [anon_sym_STAR] = ACTIONS(2379), - [anon_sym_AMP_AMP] = ACTIONS(2381), - [anon_sym_AMP] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(1463), - [anon_sym_class] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_union] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [789] = { - [sym__declaration_modifiers] = STATE(1221), - [sym__declaration_specifiers] = STATE(2306), - [sym_attribute_specifier] = STATE(1221), - [sym_attribute_declaration] = STATE(1221), - [sym_ms_declspec_modifier] = STATE(1221), - [sym__abstract_declarator] = STATE(4050), - [sym_abstract_parenthesized_declarator] = STATE(3728), - [sym_abstract_pointer_declarator] = STATE(3728), - [sym_abstract_function_declarator] = STATE(3728), - [sym_abstract_array_declarator] = STATE(3728), - [sym_storage_class_specifier] = STATE(1221), - [sym_type_qualifier] = STATE(1221), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_parameter_list] = STATE(3266), - [sym_parameter_declaration] = STATE(4367), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1221), - [sym_dependent_type] = STATE(1358), - [sym_optional_parameter_declaration] = STATE(4367), - [sym_variadic_parameter_declaration] = STATE(4367), - [sym_abstract_reference_declarator] = STATE(3728), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3908), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1221), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), - [anon_sym_RPAREN] = ACTIONS(2389), - [anon_sym_LPAREN2] = ACTIONS(2377), - [anon_sym_STAR] = ACTIONS(2379), - [anon_sym_AMP_AMP] = ACTIONS(2381), - [anon_sym_AMP] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(1463), - [anon_sym_class] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_union] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [790] = { - [sym__declaration_modifiers] = STATE(1221), - [sym__declaration_specifiers] = STATE(2306), - [sym_attribute_specifier] = STATE(1221), - [sym_attribute_declaration] = STATE(1221), - [sym_ms_declspec_modifier] = STATE(1221), - [sym__abstract_declarator] = STATE(4050), - [sym_abstract_parenthesized_declarator] = STATE(3728), - [sym_abstract_pointer_declarator] = STATE(3728), - [sym_abstract_function_declarator] = STATE(3728), - [sym_abstract_array_declarator] = STATE(3728), - [sym_storage_class_specifier] = STATE(1221), - [sym_type_qualifier] = STATE(1221), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_parameter_list] = STATE(3266), - [sym_parameter_declaration] = STATE(4277), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1221), - [sym_dependent_type] = STATE(1358), - [sym_optional_parameter_declaration] = STATE(4277), - [sym_variadic_parameter_declaration] = STATE(4277), - [sym_abstract_reference_declarator] = STATE(3728), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3908), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1221), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1473), - [anon_sym_RPAREN] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(2377), - [anon_sym_STAR] = ACTIONS(2379), - [anon_sym_AMP_AMP] = ACTIONS(2381), - [anon_sym_AMP] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(1463), - [anon_sym_class] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_union] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [791] = { - [sym_function_definition] = STATE(208), - [sym_declaration] = STATE(208), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3059), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_ms_call_modifier] = STATE(1137), - [sym_declaration_list] = STATE(208), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(2393), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [792] = { - [sym_function_definition] = STATE(653), - [sym_declaration] = STATE(653), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3013), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_ms_call_modifier] = STATE(1170), - [sym_declaration_list] = STATE(653), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [793] = { - [sym_template_argument_list] = STATE(1227), - [sym_identifier] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(2399), - [anon_sym_LPAREN2] = ACTIONS(2401), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2407), - [anon_sym_PLUS] = ACTIONS(2407), - [anon_sym_STAR] = ACTIONS(2409), - [anon_sym_SLASH] = ACTIONS(2407), - [anon_sym_PERCENT] = ACTIONS(2407), - [anon_sym_PIPE_PIPE] = ACTIONS(2399), - [anon_sym_AMP_AMP] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2407), - [anon_sym_CARET] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_EQ_EQ] = ACTIONS(2399), - [anon_sym_BANG_EQ] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2407), - [anon_sym_GT_EQ] = ACTIONS(2399), - [anon_sym_LT_EQ] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2415), - [anon_sym_LT_LT] = ACTIONS(2407), - [anon_sym_GT_GT] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2412), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2420), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(2399), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_EQ] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [anon_sym_COLON] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(2399), - [anon_sym_STAR_EQ] = ACTIONS(2433), - [anon_sym_SLASH_EQ] = ACTIONS(2433), - [anon_sym_PERCENT_EQ] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(2433), - [anon_sym_DASH_EQ] = ACTIONS(2433), - [anon_sym_LT_LT_EQ] = ACTIONS(2433), - [anon_sym_GT_GT_EQ] = ACTIONS(2433), - [anon_sym_AMP_EQ] = ACTIONS(2433), - [anon_sym_CARET_EQ] = ACTIONS(2433), - [anon_sym_PIPE_EQ] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DOT] = ACTIONS(2407), - [anon_sym_DASH_GT] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2397), - [anon_sym_MOZ_COLD] = ACTIONS(2397), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2397), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2397), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2397), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2397), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2397), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2397), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2397), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2397), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2397), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2397), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2397), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2397), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_RAII] = ACTIONS(2397), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2397), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2397), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2397), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2397), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2397), - }, - [794] = { - [sym_function_definition] = STATE(531), - [sym_declaration] = STATE(531), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3058), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_ms_call_modifier] = STATE(1169), - [sym_declaration_list] = STATE(531), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [795] = { - [sym_function_definition] = STATE(533), - [sym_declaration] = STATE(533), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3003), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_ms_call_modifier] = STATE(1101), - [sym_declaration_list] = STATE(533), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [796] = { - [sym_function_definition] = STATE(1074), - [sym_declaration] = STATE(1074), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3082), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_ms_call_modifier] = STATE(1168), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(5142), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1498), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1496), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2439), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(2441), - [anon_sym_struct] = ACTIONS(2443), - [anon_sym_union] = ACTIONS(2445), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [797] = { - [sym_identifier] = ACTIONS(2447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2449), - [anon_sym_COMMA] = ACTIONS(2449), - [anon_sym_RPAREN] = ACTIONS(2449), - [anon_sym_LPAREN2] = ACTIONS(2449), - [anon_sym_TILDE] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2447), - [anon_sym_SLASH] = ACTIONS(2447), - [anon_sym_PERCENT] = ACTIONS(2447), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE] = ACTIONS(2447), - [anon_sym_CARET] = ACTIONS(2447), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_LT_LT] = ACTIONS(2447), - [anon_sym_GT_GT] = ACTIONS(2447), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_extern] = ACTIONS(2447), - [anon_sym___attribute__] = ACTIONS(2447), - [anon_sym_COLON_COLON] = ACTIONS(2449), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2449), - [anon_sym___declspec] = ACTIONS(2447), - [anon_sym___based] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_EQ] = ACTIONS(2447), - [anon_sym_static] = ACTIONS(2447), - [anon_sym_register] = ACTIONS(2447), - [anon_sym_inline] = ACTIONS(2447), - [anon_sym_thread_local] = ACTIONS(2447), - [anon_sym_const] = ACTIONS(2447), - [anon_sym_volatile] = ACTIONS(2447), - [anon_sym_restrict] = ACTIONS(2447), - [anon_sym__Atomic] = ACTIONS(2447), - [anon_sym_mutable] = ACTIONS(2447), - [anon_sym_constexpr] = ACTIONS(2447), - [anon_sym_QMARK] = ACTIONS(2449), - [anon_sym_STAR_EQ] = ACTIONS(2449), - [anon_sym_SLASH_EQ] = ACTIONS(2449), - [anon_sym_PERCENT_EQ] = ACTIONS(2449), - [anon_sym_PLUS_EQ] = ACTIONS(2449), - [anon_sym_DASH_EQ] = ACTIONS(2449), - [anon_sym_LT_LT_EQ] = ACTIONS(2449), - [anon_sym_GT_GT_EQ] = ACTIONS(2449), - [anon_sym_AMP_EQ] = ACTIONS(2449), - [anon_sym_CARET_EQ] = ACTIONS(2449), - [anon_sym_PIPE_EQ] = ACTIONS(2449), - [anon_sym_DASH_DASH] = ACTIONS(2449), - [anon_sym_PLUS_PLUS] = ACTIONS(2449), - [anon_sym_DOT] = ACTIONS(2447), - [anon_sym_DASH_GT] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2447), - [anon_sym_template] = ACTIONS(2447), - [anon_sym_operator] = ACTIONS(2447), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2447), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2447), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2447), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2447), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2447), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2447), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2447), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2447), - [anon_sym_MOZ_COLD] = ACTIONS(2447), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2447), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2447), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2447), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2447), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2447), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2447), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2447), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2447), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2447), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2447), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2447), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2447), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2447), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2447), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2447), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2447), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2447), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2447), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2447), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2447), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_NONNULL] = ACTIONS(2447), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2447), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2447), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2447), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2447), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2447), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_NORETURN] = ACTIONS(2447), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2447), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2447), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2447), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2447), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2447), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2447), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2447), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2447), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2447), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2447), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2447), - [anon_sym_MOZ_RAII] = ACTIONS(2447), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2447), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2447), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2447), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2447), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2447), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2447), - }, - [798] = { - [sym_identifier] = ACTIONS(2451), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_COMMA] = ACTIONS(2453), - [anon_sym_RPAREN] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2453), - [anon_sym_TILDE] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2451), - [anon_sym_SLASH] = ACTIONS(2451), - [anon_sym_PERCENT] = ACTIONS(2451), - [anon_sym_PIPE_PIPE] = ACTIONS(2453), - [anon_sym_AMP_AMP] = ACTIONS(2453), - [anon_sym_PIPE] = ACTIONS(2451), - [anon_sym_CARET] = ACTIONS(2451), - [anon_sym_AMP] = ACTIONS(2451), - [anon_sym_EQ_EQ] = ACTIONS(2453), - [anon_sym_BANG_EQ] = ACTIONS(2453), - [anon_sym_GT] = ACTIONS(2451), - [anon_sym_GT_EQ] = ACTIONS(2453), - [anon_sym_LT_EQ] = ACTIONS(2453), - [anon_sym_LT] = ACTIONS(2451), - [anon_sym_LT_LT] = ACTIONS(2451), - [anon_sym_GT_GT] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2453), - [anon_sym_extern] = ACTIONS(2451), - [anon_sym___attribute__] = ACTIONS(2451), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2453), - [anon_sym___declspec] = ACTIONS(2451), - [anon_sym___based] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(2451), - [anon_sym_EQ] = ACTIONS(2451), - [anon_sym_static] = ACTIONS(2451), - [anon_sym_register] = ACTIONS(2451), - [anon_sym_inline] = ACTIONS(2451), - [anon_sym_thread_local] = ACTIONS(2451), - [anon_sym_const] = ACTIONS(2451), - [anon_sym_volatile] = ACTIONS(2451), - [anon_sym_restrict] = ACTIONS(2451), - [anon_sym__Atomic] = ACTIONS(2451), - [anon_sym_mutable] = ACTIONS(2451), - [anon_sym_constexpr] = ACTIONS(2451), - [anon_sym_QMARK] = ACTIONS(2453), - [anon_sym_STAR_EQ] = ACTIONS(2453), - [anon_sym_SLASH_EQ] = ACTIONS(2453), - [anon_sym_PERCENT_EQ] = ACTIONS(2453), - [anon_sym_PLUS_EQ] = ACTIONS(2453), - [anon_sym_DASH_EQ] = ACTIONS(2453), - [anon_sym_LT_LT_EQ] = ACTIONS(2453), - [anon_sym_GT_GT_EQ] = ACTIONS(2453), - [anon_sym_AMP_EQ] = ACTIONS(2453), - [anon_sym_CARET_EQ] = ACTIONS(2453), - [anon_sym_PIPE_EQ] = ACTIONS(2453), - [anon_sym_DASH_DASH] = ACTIONS(2453), - [anon_sym_PLUS_PLUS] = ACTIONS(2453), - [anon_sym_DOT] = ACTIONS(2451), - [anon_sym_DASH_GT] = ACTIONS(2453), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2451), - [anon_sym_template] = ACTIONS(2451), - [anon_sym_operator] = ACTIONS(2451), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2451), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2451), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2451), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2451), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2451), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2451), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2451), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2451), - [anon_sym_MOZ_COLD] = ACTIONS(2451), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2451), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2451), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2451), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2451), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2451), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2451), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2451), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2451), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2451), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2451), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2451), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2451), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2451), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2451), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2451), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2451), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2451), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2451), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2451), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2451), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_NONNULL] = ACTIONS(2451), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2451), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2451), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2451), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2451), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2451), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_NORETURN] = ACTIONS(2451), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2451), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2451), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2451), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2451), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2451), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2451), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2451), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2451), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2451), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2451), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2451), - [anon_sym_MOZ_RAII] = ACTIONS(2451), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2451), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2451), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2451), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2451), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2451), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2451), - }, - [799] = { - [sym_template_argument_list] = STATE(1227), - [sym_identifier] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(2399), - [anon_sym_LPAREN2] = ACTIONS(2401), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2407), - [anon_sym_PLUS] = ACTIONS(2407), - [anon_sym_STAR] = ACTIONS(2409), - [anon_sym_SLASH] = ACTIONS(2407), - [anon_sym_PERCENT] = ACTIONS(2407), - [anon_sym_PIPE_PIPE] = ACTIONS(2399), - [anon_sym_AMP_AMP] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2407), - [anon_sym_CARET] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_EQ_EQ] = ACTIONS(2399), - [anon_sym_BANG_EQ] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2407), - [anon_sym_GT_EQ] = ACTIONS(2399), - [anon_sym_LT_EQ] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2415), - [anon_sym_LT_LT] = ACTIONS(2407), - [anon_sym_GT_GT] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2412), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2420), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_EQ] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [anon_sym_COLON] = ACTIONS(2455), - [anon_sym_QMARK] = ACTIONS(2399), - [anon_sym_STAR_EQ] = ACTIONS(2433), - [anon_sym_SLASH_EQ] = ACTIONS(2433), - [anon_sym_PERCENT_EQ] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(2433), - [anon_sym_DASH_EQ] = ACTIONS(2433), - [anon_sym_LT_LT_EQ] = ACTIONS(2433), - [anon_sym_GT_GT_EQ] = ACTIONS(2433), - [anon_sym_AMP_EQ] = ACTIONS(2433), - [anon_sym_CARET_EQ] = ACTIONS(2433), - [anon_sym_PIPE_EQ] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DOT] = ACTIONS(2407), - [anon_sym_DASH_GT] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2397), - [anon_sym_MOZ_COLD] = ACTIONS(2397), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2397), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2397), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2397), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2397), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2397), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2397), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2397), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2397), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2397), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2397), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2397), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2397), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_RAII] = ACTIONS(2397), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2397), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2397), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2397), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2397), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2397), - }, - [800] = { - [sym_template_argument_list] = STATE(1227), - [sym_identifier] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(2399), - [anon_sym_LPAREN2] = ACTIONS(2401), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2407), - [anon_sym_PLUS] = ACTIONS(2407), - [anon_sym_STAR] = ACTIONS(2409), - [anon_sym_SLASH] = ACTIONS(2407), - [anon_sym_PERCENT] = ACTIONS(2407), - [anon_sym_PIPE_PIPE] = ACTIONS(2399), - [anon_sym_AMP_AMP] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2407), - [anon_sym_CARET] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_EQ_EQ] = ACTIONS(2399), - [anon_sym_BANG_EQ] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2407), - [anon_sym_GT_EQ] = ACTIONS(2399), - [anon_sym_LT_EQ] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2415), - [anon_sym_LT_LT] = ACTIONS(2407), - [anon_sym_GT_GT] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2412), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2420), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_EQ] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [anon_sym_COLON] = ACTIONS(2457), - [anon_sym_QMARK] = ACTIONS(2399), - [anon_sym_STAR_EQ] = ACTIONS(2433), - [anon_sym_SLASH_EQ] = ACTIONS(2433), - [anon_sym_PERCENT_EQ] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(2433), - [anon_sym_DASH_EQ] = ACTIONS(2433), - [anon_sym_LT_LT_EQ] = ACTIONS(2433), - [anon_sym_GT_GT_EQ] = ACTIONS(2433), - [anon_sym_AMP_EQ] = ACTIONS(2433), - [anon_sym_CARET_EQ] = ACTIONS(2433), - [anon_sym_PIPE_EQ] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DOT] = ACTIONS(2407), - [anon_sym_DASH_GT] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2397), - [anon_sym_MOZ_COLD] = ACTIONS(2397), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2397), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2397), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2397), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2397), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2397), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2397), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2397), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2397), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2397), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2397), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2397), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2397), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_RAII] = ACTIONS(2397), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2397), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2397), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2397), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2397), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2397), - }, - [801] = { - [sym_template_argument_list] = STATE(1225), - [sym_identifier] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(2399), - [anon_sym_LPAREN2] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2407), - [anon_sym_PLUS] = ACTIONS(2407), - [anon_sym_STAR] = ACTIONS(2409), - [anon_sym_SLASH] = ACTIONS(2407), - [anon_sym_PERCENT] = ACTIONS(2407), - [anon_sym_PIPE_PIPE] = ACTIONS(2399), - [anon_sym_AMP_AMP] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2407), - [anon_sym_CARET] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_EQ_EQ] = ACTIONS(2399), - [anon_sym_BANG_EQ] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2407), - [anon_sym_GT_EQ] = ACTIONS(2399), - [anon_sym_LT_EQ] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2415), - [anon_sym_LT_LT] = ACTIONS(2407), - [anon_sym_GT_GT] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2405), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_EQ] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [anon_sym_COLON] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(2399), - [anon_sym_STAR_EQ] = ACTIONS(2433), - [anon_sym_SLASH_EQ] = ACTIONS(2433), - [anon_sym_PERCENT_EQ] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(2433), - [anon_sym_DASH_EQ] = ACTIONS(2433), - [anon_sym_LT_LT_EQ] = ACTIONS(2433), - [anon_sym_GT_GT_EQ] = ACTIONS(2433), - [anon_sym_AMP_EQ] = ACTIONS(2433), - [anon_sym_CARET_EQ] = ACTIONS(2433), - [anon_sym_PIPE_EQ] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DOT] = ACTIONS(2407), - [anon_sym_DASH_GT] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2397), - [anon_sym_MOZ_COLD] = ACTIONS(2397), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2397), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2397), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2397), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2397), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2397), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2397), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2397), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2397), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2397), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2397), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2397), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2397), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_RAII] = ACTIONS(2397), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2397), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2397), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2397), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2397), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2397), - }, - [802] = { - [sym_template_argument_list] = STATE(1225), - [sym_identifier] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(2399), - [anon_sym_LPAREN2] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2407), - [anon_sym_PLUS] = ACTIONS(2407), - [anon_sym_STAR] = ACTIONS(2409), - [anon_sym_SLASH] = ACTIONS(2407), - [anon_sym_PERCENT] = ACTIONS(2407), - [anon_sym_PIPE_PIPE] = ACTIONS(2399), - [anon_sym_AMP_AMP] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2407), - [anon_sym_CARET] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_EQ_EQ] = ACTIONS(2399), - [anon_sym_BANG_EQ] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2407), - [anon_sym_GT_EQ] = ACTIONS(2399), - [anon_sym_LT_EQ] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2415), - [anon_sym_LT_LT] = ACTIONS(2407), - [anon_sym_GT_GT] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2405), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_EQ] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [anon_sym_COLON] = ACTIONS(2455), - [anon_sym_QMARK] = ACTIONS(2399), - [anon_sym_STAR_EQ] = ACTIONS(2433), - [anon_sym_SLASH_EQ] = ACTIONS(2433), - [anon_sym_PERCENT_EQ] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(2433), - [anon_sym_DASH_EQ] = ACTIONS(2433), - [anon_sym_LT_LT_EQ] = ACTIONS(2433), - [anon_sym_GT_GT_EQ] = ACTIONS(2433), - [anon_sym_AMP_EQ] = ACTIONS(2433), - [anon_sym_CARET_EQ] = ACTIONS(2433), - [anon_sym_PIPE_EQ] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DOT] = ACTIONS(2407), - [anon_sym_DASH_GT] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2397), - [anon_sym_MOZ_COLD] = ACTIONS(2397), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2397), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2397), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2397), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2397), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2397), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2397), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2397), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2397), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2397), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2397), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2397), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2397), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_RAII] = ACTIONS(2397), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2397), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2397), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2397), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2397), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2397), - }, - [803] = { - [sym_template_argument_list] = STATE(819), - [sym_identifier] = ACTIONS(2459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), - [anon_sym_COMMA] = ACTIONS(2461), - [anon_sym_RPAREN] = ACTIONS(2461), - [anon_sym_LPAREN2] = ACTIONS(2463), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2468), - [anon_sym_PLUS] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2468), - [anon_sym_PERCENT] = ACTIONS(2468), - [anon_sym_PIPE_PIPE] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2463), - [anon_sym_PIPE] = ACTIONS(2468), - [anon_sym_CARET] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2470), - [anon_sym_EQ_EQ] = ACTIONS(2461), - [anon_sym_BANG_EQ] = ACTIONS(2461), - [anon_sym_GT] = ACTIONS(2468), - [anon_sym_GT_EQ] = ACTIONS(2461), - [anon_sym_LT_EQ] = ACTIONS(2461), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_LT_LT] = ACTIONS(2468), - [anon_sym_GT_GT] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), + [anon_sym_AMP_AMP] = ACTIONS(2379), + [anon_sym_AMP] = ACTIONS(2377), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym___extension__] = ACTIONS(2377), + [anon_sym_typedef] = ACTIONS(2377), + [anon_sym_virtual] = ACTIONS(2377), + [anon_sym_extern] = ACTIONS(2377), + [anon_sym___attribute__] = ACTIONS(2377), + [anon_sym___attribute] = ACTIONS(2377), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2379), + [anon_sym___declspec] = ACTIONS(2377), + [anon_sym___based] = ACTIONS(2377), + [anon_sym___cdecl] = ACTIONS(2377), + [anon_sym___clrcall] = ACTIONS(2377), + [anon_sym___stdcall] = ACTIONS(2377), + [anon_sym___fastcall] = ACTIONS(2377), + [anon_sym___thiscall] = ACTIONS(2377), + [anon_sym___vectorcall] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_signed] = ACTIONS(2377), + [anon_sym_unsigned] = ACTIONS(2377), + [anon_sym_long] = ACTIONS(2377), + [anon_sym_short] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_static] = ACTIONS(2377), + [anon_sym_register] = ACTIONS(2377), + [anon_sym_inline] = ACTIONS(2377), + [anon_sym___inline] = ACTIONS(2377), + [anon_sym___inline__] = ACTIONS(2377), + [anon_sym___forceinline] = ACTIONS(2377), + [anon_sym_thread_local] = ACTIONS(2377), + [anon_sym___thread] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [anon_sym_constexpr] = ACTIONS(2377), + [anon_sym_volatile] = ACTIONS(2377), + [anon_sym_restrict] = ACTIONS(2377), + [anon_sym___restrict__] = ACTIONS(2377), + [anon_sym__Atomic] = ACTIONS(2377), + [anon_sym__Noreturn] = ACTIONS(2377), + [anon_sym_noreturn] = ACTIONS(2377), + [anon_sym__Nonnull] = ACTIONS(2377), + [anon_sym_mutable] = ACTIONS(2377), + [anon_sym_constinit] = ACTIONS(2377), + [anon_sym_consteval] = ACTIONS(2377), + [anon_sym_alignas] = ACTIONS(2377), + [anon_sym__Alignas] = ACTIONS(2377), + [sym_primitive_type] = ACTIONS(2377), + [anon_sym_enum] = ACTIONS(2377), + [anon_sym_class] = ACTIONS(2377), + [anon_sym_struct] = ACTIONS(2377), + [anon_sym_union] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_switch] = ACTIONS(2377), + [anon_sym_case] = ACTIONS(2377), + [anon_sym_default] = ACTIONS(2377), + [anon_sym_while] = ACTIONS(2377), + [anon_sym_do] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_goto] = ACTIONS(2377), + [anon_sym___try] = ACTIONS(2377), + [anon_sym___leave] = ACTIONS(2377), + [anon_sym_not] = ACTIONS(2377), + [anon_sym_compl] = ACTIONS(2377), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_sizeof] = ACTIONS(2377), + [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(2377), + [anon_sym__Generic] = ACTIONS(2377), + [anon_sym_asm] = ACTIONS(2377), + [anon_sym___asm__] = ACTIONS(2377), + [anon_sym___asm] = ACTIONS(2377), + [sym_number_literal] = ACTIONS(2379), + [anon_sym_L_SQUOTE] = ACTIONS(2379), + [anon_sym_u_SQUOTE] = ACTIONS(2379), + [anon_sym_U_SQUOTE] = ACTIONS(2379), + [anon_sym_u8_SQUOTE] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_L_DQUOTE] = ACTIONS(2379), + [anon_sym_u_DQUOTE] = ACTIONS(2379), + [anon_sym_U_DQUOTE] = ACTIONS(2379), + [anon_sym_u8_DQUOTE] = ACTIONS(2379), + [anon_sym_DQUOTE] = ACTIONS(2379), + [sym_true] = ACTIONS(2377), + [sym_false] = ACTIONS(2377), + [anon_sym_NULL] = ACTIONS(2377), + [anon_sym_nullptr] = ACTIONS(2377), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2377), + [anon_sym_decltype] = ACTIONS(2377), + [anon_sym_explicit] = ACTIONS(2377), + [anon_sym_typename] = ACTIONS(2377), + [anon_sym_template] = ACTIONS(2377), + [anon_sym_operator] = ACTIONS(2377), + [anon_sym_try] = ACTIONS(2377), + [anon_sym_delete] = ACTIONS(2377), + [anon_sym_throw] = ACTIONS(2377), + [anon_sym_namespace] = ACTIONS(2377), + [anon_sym_using] = ACTIONS(2377), + [anon_sym_static_assert] = ACTIONS(2377), + [anon_sym_concept] = ACTIONS(2377), + [anon_sym_co_return] = ACTIONS(2377), + [anon_sym_co_yield] = ACTIONS(2377), + [anon_sym_R_DQUOTE] = ACTIONS(2379), + [anon_sym_LR_DQUOTE] = ACTIONS(2379), + [anon_sym_uR_DQUOTE] = ACTIONS(2379), + [anon_sym_UR_DQUOTE] = ACTIONS(2379), + [anon_sym_u8R_DQUOTE] = ACTIONS(2379), + [anon_sym_co_await] = ACTIONS(2377), + [anon_sym_new] = ACTIONS(2377), + [anon_sym_requires] = ACTIONS(2377), + [sym_this] = ACTIONS(2377), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2377), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_FORWARD] = ACTIONS(2377), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2377), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2377), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2377), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2377), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_PS_GET] = ACTIONS(2377), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2377), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2377), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2377), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2377), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2377), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2377), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2377), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2377), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2377), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2377), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2377), + [anon_sym_MOZ_COLD] = ACTIONS(2377), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2377), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2377), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2377), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2377), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2377), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2377), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2377), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2377), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2377), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2377), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2377), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2377), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2377), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2377), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2377), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2377), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2377), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2377), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2377), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2377), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_NONNULL] = ACTIONS(2377), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2377), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2377), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2377), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2377), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2377), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_NORETURN] = ACTIONS(2377), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2377), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2377), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2377), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2377), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2377), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2377), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2377), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2377), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2377), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2377), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2377), + [anon_sym_MOZ_RAII] = ACTIONS(2377), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2377), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2377), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2377), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2377), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2377), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2377), + }, + [STATE(246)] = { + [sym_identifier] = ACTIONS(2381), + [aux_sym_preproc_include_token1] = ACTIONS(2381), + [aux_sym_preproc_def_token1] = ACTIONS(2381), + [aux_sym_preproc_if_token1] = ACTIONS(2381), + [aux_sym_preproc_if_token2] = ACTIONS(2381), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2381), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2381), + [aux_sym_preproc_else_token1] = ACTIONS(2381), + [aux_sym_preproc_elif_token1] = ACTIONS(2381), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2381), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2381), + [sym_preproc_directive] = ACTIONS(2381), + [anon_sym_LPAREN2] = ACTIONS(2383), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_TILDE] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_PLUS] = ACTIONS(2381), + [anon_sym_STAR] = ACTIONS(2383), + [anon_sym_AMP_AMP] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2383), + [anon_sym___extension__] = ACTIONS(2381), + [anon_sym_typedef] = ACTIONS(2381), + [anon_sym_virtual] = ACTIONS(2381), + [anon_sym_extern] = ACTIONS(2381), + [anon_sym___attribute__] = ACTIONS(2381), + [anon_sym___attribute] = ACTIONS(2381), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2383), + [anon_sym___declspec] = ACTIONS(2381), + [anon_sym___based] = ACTIONS(2381), + [anon_sym___cdecl] = ACTIONS(2381), + [anon_sym___clrcall] = ACTIONS(2381), + [anon_sym___stdcall] = ACTIONS(2381), + [anon_sym___fastcall] = ACTIONS(2381), + [anon_sym___thiscall] = ACTIONS(2381), + [anon_sym___vectorcall] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_signed] = ACTIONS(2381), + [anon_sym_unsigned] = ACTIONS(2381), + [anon_sym_long] = ACTIONS(2381), + [anon_sym_short] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_register] = ACTIONS(2381), + [anon_sym_inline] = ACTIONS(2381), + [anon_sym___inline] = ACTIONS(2381), + [anon_sym___inline__] = ACTIONS(2381), + [anon_sym___forceinline] = ACTIONS(2381), + [anon_sym_thread_local] = ACTIONS(2381), + [anon_sym___thread] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_constexpr] = ACTIONS(2381), + [anon_sym_volatile] = ACTIONS(2381), + [anon_sym_restrict] = ACTIONS(2381), + [anon_sym___restrict__] = ACTIONS(2381), + [anon_sym__Atomic] = ACTIONS(2381), + [anon_sym__Noreturn] = ACTIONS(2381), + [anon_sym_noreturn] = ACTIONS(2381), + [anon_sym__Nonnull] = ACTIONS(2381), + [anon_sym_mutable] = ACTIONS(2381), + [anon_sym_constinit] = ACTIONS(2381), + [anon_sym_consteval] = ACTIONS(2381), + [anon_sym_alignas] = ACTIONS(2381), + [anon_sym__Alignas] = ACTIONS(2381), + [sym_primitive_type] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), + [anon_sym_class] = ACTIONS(2381), + [anon_sym_struct] = ACTIONS(2381), + [anon_sym_union] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_switch] = ACTIONS(2381), + [anon_sym_case] = ACTIONS(2381), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_goto] = ACTIONS(2381), + [anon_sym___try] = ACTIONS(2381), + [anon_sym___leave] = ACTIONS(2381), + [anon_sym_not] = ACTIONS(2381), + [anon_sym_compl] = ACTIONS(2381), + [anon_sym_DASH_DASH] = ACTIONS(2383), + [anon_sym_PLUS_PLUS] = ACTIONS(2383), + [anon_sym_sizeof] = ACTIONS(2381), + [anon_sym___alignof__] = ACTIONS(2381), + [anon_sym___alignof] = ACTIONS(2381), + [anon_sym__alignof] = ACTIONS(2381), + [anon_sym_alignof] = ACTIONS(2381), + [anon_sym__Alignof] = ACTIONS(2381), + [anon_sym_offsetof] = ACTIONS(2381), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2381), + [anon_sym___asm__] = ACTIONS(2381), + [anon_sym___asm] = ACTIONS(2381), + [sym_number_literal] = ACTIONS(2383), + [anon_sym_L_SQUOTE] = ACTIONS(2383), + [anon_sym_u_SQUOTE] = ACTIONS(2383), + [anon_sym_U_SQUOTE] = ACTIONS(2383), + [anon_sym_u8_SQUOTE] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(2383), + [anon_sym_L_DQUOTE] = ACTIONS(2383), + [anon_sym_u_DQUOTE] = ACTIONS(2383), + [anon_sym_U_DQUOTE] = ACTIONS(2383), + [anon_sym_u8_DQUOTE] = ACTIONS(2383), + [anon_sym_DQUOTE] = ACTIONS(2383), + [sym_true] = ACTIONS(2381), + [sym_false] = ACTIONS(2381), + [anon_sym_NULL] = ACTIONS(2381), + [anon_sym_nullptr] = ACTIONS(2381), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2381), + [anon_sym_decltype] = ACTIONS(2381), + [anon_sym_explicit] = ACTIONS(2381), + [anon_sym_typename] = ACTIONS(2381), + [anon_sym_template] = ACTIONS(2381), + [anon_sym_operator] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2381), + [anon_sym_delete] = ACTIONS(2381), + [anon_sym_throw] = ACTIONS(2381), + [anon_sym_namespace] = ACTIONS(2381), + [anon_sym_using] = ACTIONS(2381), + [anon_sym_static_assert] = ACTIONS(2381), + [anon_sym_concept] = ACTIONS(2381), + [anon_sym_co_return] = ACTIONS(2381), + [anon_sym_co_yield] = ACTIONS(2381), + [anon_sym_R_DQUOTE] = ACTIONS(2383), + [anon_sym_LR_DQUOTE] = ACTIONS(2383), + [anon_sym_uR_DQUOTE] = ACTIONS(2383), + [anon_sym_UR_DQUOTE] = ACTIONS(2383), + [anon_sym_u8R_DQUOTE] = ACTIONS(2383), + [anon_sym_co_await] = ACTIONS(2381), + [anon_sym_new] = ACTIONS(2381), + [anon_sym_requires] = ACTIONS(2381), + [sym_this] = ACTIONS(2381), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2381), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_FORWARD] = ACTIONS(2381), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2381), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2381), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2381), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2381), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_PS_GET] = ACTIONS(2381), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2381), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2381), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2381), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2381), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2381), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2381), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2381), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2381), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2381), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2381), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2381), + [anon_sym_MOZ_COLD] = ACTIONS(2381), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2381), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2381), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2381), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2381), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2381), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2381), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2381), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2381), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2381), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2381), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2381), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2381), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2381), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2381), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2381), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2381), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2381), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2381), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2381), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2381), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_NONNULL] = ACTIONS(2381), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2381), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2381), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2381), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2381), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2381), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_NORETURN] = ACTIONS(2381), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2381), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2381), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2381), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2381), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2381), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2381), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2381), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2381), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2381), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2381), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2381), + [anon_sym_MOZ_RAII] = ACTIONS(2381), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2381), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2381), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2381), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2381), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2381), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2381), + }, + [STATE(247)] = { + [sym_identifier] = ACTIONS(2385), + [aux_sym_preproc_include_token1] = ACTIONS(2385), + [aux_sym_preproc_def_token1] = ACTIONS(2385), + [aux_sym_preproc_if_token1] = ACTIONS(2385), + [aux_sym_preproc_if_token2] = ACTIONS(2385), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2385), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2385), + [aux_sym_preproc_else_token1] = ACTIONS(2385), + [aux_sym_preproc_elif_token1] = ACTIONS(2385), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2385), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2385), + [sym_preproc_directive] = ACTIONS(2385), + [anon_sym_LPAREN2] = ACTIONS(2387), + [anon_sym_BANG] = ACTIONS(2387), + [anon_sym_TILDE] = ACTIONS(2387), + [anon_sym_DASH] = ACTIONS(2385), + [anon_sym_PLUS] = ACTIONS(2385), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_AMP_AMP] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(2387), + [anon_sym___extension__] = ACTIONS(2385), + [anon_sym_typedef] = ACTIONS(2385), + [anon_sym_virtual] = ACTIONS(2385), + [anon_sym_extern] = ACTIONS(2385), + [anon_sym___attribute__] = ACTIONS(2385), + [anon_sym___attribute] = ACTIONS(2385), + [anon_sym_COLON_COLON] = ACTIONS(2387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2387), + [anon_sym___declspec] = ACTIONS(2385), + [anon_sym___based] = ACTIONS(2385), + [anon_sym___cdecl] = ACTIONS(2385), + [anon_sym___clrcall] = ACTIONS(2385), + [anon_sym___stdcall] = ACTIONS(2385), + [anon_sym___fastcall] = ACTIONS(2385), + [anon_sym___thiscall] = ACTIONS(2385), + [anon_sym___vectorcall] = ACTIONS(2385), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_signed] = ACTIONS(2385), + [anon_sym_unsigned] = ACTIONS(2385), + [anon_sym_long] = ACTIONS(2385), + [anon_sym_short] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2385), + [anon_sym_static] = ACTIONS(2385), + [anon_sym_register] = ACTIONS(2385), + [anon_sym_inline] = ACTIONS(2385), + [anon_sym___inline] = ACTIONS(2385), + [anon_sym___inline__] = ACTIONS(2385), + [anon_sym___forceinline] = ACTIONS(2385), + [anon_sym_thread_local] = ACTIONS(2385), + [anon_sym___thread] = ACTIONS(2385), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_constexpr] = ACTIONS(2385), + [anon_sym_volatile] = ACTIONS(2385), + [anon_sym_restrict] = ACTIONS(2385), + [anon_sym___restrict__] = ACTIONS(2385), + [anon_sym__Atomic] = ACTIONS(2385), + [anon_sym__Noreturn] = ACTIONS(2385), + [anon_sym_noreturn] = ACTIONS(2385), + [anon_sym__Nonnull] = ACTIONS(2385), + [anon_sym_mutable] = ACTIONS(2385), + [anon_sym_constinit] = ACTIONS(2385), + [anon_sym_consteval] = ACTIONS(2385), + [anon_sym_alignas] = ACTIONS(2385), + [anon_sym__Alignas] = ACTIONS(2385), + [sym_primitive_type] = ACTIONS(2385), + [anon_sym_enum] = ACTIONS(2385), + [anon_sym_class] = ACTIONS(2385), + [anon_sym_struct] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_switch] = ACTIONS(2385), + [anon_sym_case] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_while] = ACTIONS(2385), + [anon_sym_do] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2385), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_break] = ACTIONS(2385), + [anon_sym_continue] = ACTIONS(2385), + [anon_sym_goto] = ACTIONS(2385), + [anon_sym___try] = ACTIONS(2385), + [anon_sym___leave] = ACTIONS(2385), + [anon_sym_not] = ACTIONS(2385), + [anon_sym_compl] = ACTIONS(2385), + [anon_sym_DASH_DASH] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2387), + [anon_sym_sizeof] = ACTIONS(2385), + [anon_sym___alignof__] = ACTIONS(2385), + [anon_sym___alignof] = ACTIONS(2385), + [anon_sym__alignof] = ACTIONS(2385), + [anon_sym_alignof] = ACTIONS(2385), + [anon_sym__Alignof] = ACTIONS(2385), + [anon_sym_offsetof] = ACTIONS(2385), + [anon_sym__Generic] = ACTIONS(2385), + [anon_sym_asm] = ACTIONS(2385), + [anon_sym___asm__] = ACTIONS(2385), + [anon_sym___asm] = ACTIONS(2385), + [sym_number_literal] = ACTIONS(2387), + [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(2387), + [anon_sym_u_DQUOTE] = ACTIONS(2387), + [anon_sym_U_DQUOTE] = ACTIONS(2387), + [anon_sym_u8_DQUOTE] = ACTIONS(2387), + [anon_sym_DQUOTE] = ACTIONS(2387), + [sym_true] = ACTIONS(2385), + [sym_false] = ACTIONS(2385), + [anon_sym_NULL] = ACTIONS(2385), + [anon_sym_nullptr] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2385), + [anon_sym_decltype] = ACTIONS(2385), + [anon_sym_explicit] = ACTIONS(2385), + [anon_sym_typename] = ACTIONS(2385), + [anon_sym_template] = ACTIONS(2385), + [anon_sym_operator] = ACTIONS(2385), + [anon_sym_try] = ACTIONS(2385), + [anon_sym_delete] = ACTIONS(2385), + [anon_sym_throw] = ACTIONS(2385), + [anon_sym_namespace] = ACTIONS(2385), + [anon_sym_using] = ACTIONS(2385), + [anon_sym_static_assert] = ACTIONS(2385), + [anon_sym_concept] = ACTIONS(2385), + [anon_sym_co_return] = ACTIONS(2385), + [anon_sym_co_yield] = ACTIONS(2385), + [anon_sym_R_DQUOTE] = ACTIONS(2387), + [anon_sym_LR_DQUOTE] = ACTIONS(2387), + [anon_sym_uR_DQUOTE] = ACTIONS(2387), + [anon_sym_UR_DQUOTE] = ACTIONS(2387), + [anon_sym_u8R_DQUOTE] = ACTIONS(2387), + [anon_sym_co_await] = ACTIONS(2385), + [anon_sym_new] = ACTIONS(2385), + [anon_sym_requires] = ACTIONS(2385), + [sym_this] = ACTIONS(2385), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2385), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_FORWARD] = ACTIONS(2385), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2385), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2385), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2385), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2385), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_PS_GET] = ACTIONS(2385), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2385), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2385), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2385), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2385), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2385), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2385), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2385), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2385), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2385), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2385), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2385), + [anon_sym_MOZ_COLD] = ACTIONS(2385), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2385), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2385), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2385), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2385), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2385), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2385), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2385), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2385), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2385), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2385), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2385), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2385), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2385), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2385), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2385), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2385), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2385), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2385), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2385), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2385), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_NONNULL] = ACTIONS(2385), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2385), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2385), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2385), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2385), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2385), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_NORETURN] = ACTIONS(2385), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2385), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2385), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2385), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2385), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2385), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2385), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2385), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2385), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2385), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2385), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2385), + [anon_sym_MOZ_RAII] = ACTIONS(2385), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2385), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2385), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2385), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2385), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2385), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2385), + }, + [STATE(248)] = { + [sym_identifier] = ACTIONS(2389), + [aux_sym_preproc_include_token1] = ACTIONS(2389), + [aux_sym_preproc_def_token1] = ACTIONS(2389), + [aux_sym_preproc_if_token1] = ACTIONS(2389), + [aux_sym_preproc_if_token2] = ACTIONS(2389), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2389), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2389), + [aux_sym_preproc_else_token1] = ACTIONS(2389), + [aux_sym_preproc_elif_token1] = ACTIONS(2389), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2389), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2389), + [sym_preproc_directive] = ACTIONS(2389), + [anon_sym_LPAREN2] = ACTIONS(2391), + [anon_sym_BANG] = ACTIONS(2391), + [anon_sym_TILDE] = ACTIONS(2391), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_STAR] = ACTIONS(2391), + [anon_sym_AMP_AMP] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2389), + [anon_sym_SEMI] = ACTIONS(2391), + [anon_sym___extension__] = ACTIONS(2389), + [anon_sym_typedef] = ACTIONS(2389), + [anon_sym_virtual] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(2389), + [anon_sym___attribute__] = ACTIONS(2389), + [anon_sym___attribute] = ACTIONS(2389), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2391), + [anon_sym___declspec] = ACTIONS(2389), + [anon_sym___based] = ACTIONS(2389), + [anon_sym___cdecl] = ACTIONS(2389), + [anon_sym___clrcall] = ACTIONS(2389), + [anon_sym___stdcall] = ACTIONS(2389), + [anon_sym___fastcall] = ACTIONS(2389), + [anon_sym___thiscall] = ACTIONS(2389), + [anon_sym___vectorcall] = ACTIONS(2389), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_signed] = ACTIONS(2389), + [anon_sym_unsigned] = ACTIONS(2389), + [anon_sym_long] = ACTIONS(2389), + [anon_sym_short] = ACTIONS(2389), + [anon_sym_LBRACK] = ACTIONS(2389), + [anon_sym_static] = ACTIONS(2389), + [anon_sym_register] = ACTIONS(2389), + [anon_sym_inline] = ACTIONS(2389), + [anon_sym___inline] = ACTIONS(2389), + [anon_sym___inline__] = ACTIONS(2389), + [anon_sym___forceinline] = ACTIONS(2389), + [anon_sym_thread_local] = ACTIONS(2389), + [anon_sym___thread] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [anon_sym_constexpr] = ACTIONS(2389), + [anon_sym_volatile] = ACTIONS(2389), + [anon_sym_restrict] = ACTIONS(2389), + [anon_sym___restrict__] = ACTIONS(2389), + [anon_sym__Atomic] = ACTIONS(2389), + [anon_sym__Noreturn] = ACTIONS(2389), + [anon_sym_noreturn] = ACTIONS(2389), + [anon_sym__Nonnull] = ACTIONS(2389), + [anon_sym_mutable] = ACTIONS(2389), + [anon_sym_constinit] = ACTIONS(2389), + [anon_sym_consteval] = ACTIONS(2389), + [anon_sym_alignas] = ACTIONS(2389), + [anon_sym__Alignas] = ACTIONS(2389), + [sym_primitive_type] = ACTIONS(2389), + [anon_sym_enum] = ACTIONS(2389), + [anon_sym_class] = ACTIONS(2389), + [anon_sym_struct] = ACTIONS(2389), + [anon_sym_union] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_switch] = ACTIONS(2389), + [anon_sym_case] = ACTIONS(2389), + [anon_sym_default] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [anon_sym_do] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_goto] = ACTIONS(2389), + [anon_sym___try] = ACTIONS(2389), + [anon_sym___leave] = ACTIONS(2389), + [anon_sym_not] = ACTIONS(2389), + [anon_sym_compl] = ACTIONS(2389), + [anon_sym_DASH_DASH] = ACTIONS(2391), + [anon_sym_PLUS_PLUS] = ACTIONS(2391), + [anon_sym_sizeof] = ACTIONS(2389), + [anon_sym___alignof__] = ACTIONS(2389), + [anon_sym___alignof] = ACTIONS(2389), + [anon_sym__alignof] = ACTIONS(2389), + [anon_sym_alignof] = ACTIONS(2389), + [anon_sym__Alignof] = ACTIONS(2389), + [anon_sym_offsetof] = ACTIONS(2389), + [anon_sym__Generic] = ACTIONS(2389), + [anon_sym_asm] = ACTIONS(2389), + [anon_sym___asm__] = ACTIONS(2389), + [anon_sym___asm] = ACTIONS(2389), + [sym_number_literal] = ACTIONS(2391), + [anon_sym_L_SQUOTE] = ACTIONS(2391), + [anon_sym_u_SQUOTE] = ACTIONS(2391), + [anon_sym_U_SQUOTE] = ACTIONS(2391), + [anon_sym_u8_SQUOTE] = ACTIONS(2391), + [anon_sym_SQUOTE] = ACTIONS(2391), + [anon_sym_L_DQUOTE] = ACTIONS(2391), + [anon_sym_u_DQUOTE] = ACTIONS(2391), + [anon_sym_U_DQUOTE] = ACTIONS(2391), + [anon_sym_u8_DQUOTE] = ACTIONS(2391), + [anon_sym_DQUOTE] = ACTIONS(2391), + [sym_true] = ACTIONS(2389), + [sym_false] = ACTIONS(2389), + [anon_sym_NULL] = ACTIONS(2389), + [anon_sym_nullptr] = ACTIONS(2389), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2389), + [anon_sym_decltype] = ACTIONS(2389), + [anon_sym_explicit] = ACTIONS(2389), + [anon_sym_typename] = ACTIONS(2389), + [anon_sym_template] = ACTIONS(2389), + [anon_sym_operator] = ACTIONS(2389), + [anon_sym_try] = ACTIONS(2389), + [anon_sym_delete] = ACTIONS(2389), + [anon_sym_throw] = ACTIONS(2389), + [anon_sym_namespace] = ACTIONS(2389), + [anon_sym_using] = ACTIONS(2389), + [anon_sym_static_assert] = ACTIONS(2389), + [anon_sym_concept] = ACTIONS(2389), + [anon_sym_co_return] = ACTIONS(2389), + [anon_sym_co_yield] = ACTIONS(2389), + [anon_sym_R_DQUOTE] = ACTIONS(2391), + [anon_sym_LR_DQUOTE] = ACTIONS(2391), + [anon_sym_uR_DQUOTE] = ACTIONS(2391), + [anon_sym_UR_DQUOTE] = ACTIONS(2391), + [anon_sym_u8R_DQUOTE] = ACTIONS(2391), + [anon_sym_co_await] = ACTIONS(2389), + [anon_sym_new] = ACTIONS(2389), + [anon_sym_requires] = ACTIONS(2389), + [sym_this] = ACTIONS(2389), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2389), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_FORWARD] = ACTIONS(2389), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2389), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2389), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2389), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2389), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_PS_GET] = ACTIONS(2389), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2389), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2389), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2389), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2389), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2389), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2389), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2389), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2389), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2389), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2389), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2389), + [anon_sym_MOZ_COLD] = ACTIONS(2389), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2389), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2389), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2389), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2389), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2389), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2389), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2389), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2389), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2389), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2389), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2389), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2389), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2389), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2389), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2389), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2389), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2389), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2389), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2389), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2389), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_NONNULL] = ACTIONS(2389), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2389), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2389), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2389), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2389), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2389), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_NORETURN] = ACTIONS(2389), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2389), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2389), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2389), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2389), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2389), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2389), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2389), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2389), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2389), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2389), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2389), + [anon_sym_MOZ_RAII] = ACTIONS(2389), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2389), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2389), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2389), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2389), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2389), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2389), + }, + [STATE(249)] = { + [sym_catch_clause] = STATE(249), + [aux_sym_constructor_try_statement_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(1924), + [aux_sym_preproc_include_token1] = ACTIONS(1924), + [aux_sym_preproc_def_token1] = ACTIONS(1924), + [aux_sym_preproc_if_token1] = ACTIONS(1924), + [aux_sym_preproc_if_token2] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1924), + [sym_preproc_directive] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_AMP_AMP] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym___extension__] = ACTIONS(1924), + [anon_sym_typedef] = ACTIONS(1924), + [anon_sym_virtual] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym___attribute__] = ACTIONS(1924), + [anon_sym___attribute] = ACTIONS(1924), + [anon_sym_COLON_COLON] = ACTIONS(1926), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1926), + [anon_sym___declspec] = ACTIONS(1924), + [anon_sym___based] = ACTIONS(1924), + [anon_sym___cdecl] = ACTIONS(1924), + [anon_sym___clrcall] = ACTIONS(1924), + [anon_sym___stdcall] = ACTIONS(1924), + [anon_sym___fastcall] = ACTIONS(1924), + [anon_sym___thiscall] = ACTIONS(1924), + [anon_sym___vectorcall] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_signed] = ACTIONS(1924), + [anon_sym_unsigned] = ACTIONS(1924), + [anon_sym_long] = ACTIONS(1924), + [anon_sym_short] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_register] = ACTIONS(1924), + [anon_sym_inline] = ACTIONS(1924), + [anon_sym___inline] = ACTIONS(1924), + [anon_sym___inline__] = ACTIONS(1924), + [anon_sym___forceinline] = ACTIONS(1924), + [anon_sym_thread_local] = ACTIONS(1924), + [anon_sym___thread] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_constexpr] = ACTIONS(1924), + [anon_sym_volatile] = ACTIONS(1924), + [anon_sym_restrict] = ACTIONS(1924), + [anon_sym___restrict__] = ACTIONS(1924), + [anon_sym__Atomic] = ACTIONS(1924), + [anon_sym__Noreturn] = ACTIONS(1924), + [anon_sym_noreturn] = ACTIONS(1924), + [anon_sym__Nonnull] = ACTIONS(1924), + [anon_sym_mutable] = ACTIONS(1924), + [anon_sym_constinit] = ACTIONS(1924), + [anon_sym_consteval] = ACTIONS(1924), + [anon_sym_alignas] = ACTIONS(1924), + [anon_sym__Alignas] = ACTIONS(1924), + [sym_primitive_type] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_class] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_else] = ACTIONS(1924), + [anon_sym_switch] = ACTIONS(1924), + [anon_sym_case] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_do] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_goto] = ACTIONS(1924), + [anon_sym___try] = ACTIONS(1924), + [anon_sym___leave] = ACTIONS(1924), + [anon_sym_not] = ACTIONS(1924), + [anon_sym_compl] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1924), + [anon_sym___alignof__] = ACTIONS(1924), + [anon_sym___alignof] = ACTIONS(1924), + [anon_sym__alignof] = ACTIONS(1924), + [anon_sym_alignof] = ACTIONS(1924), + [anon_sym__Alignof] = ACTIONS(1924), + [anon_sym_offsetof] = ACTIONS(1924), + [anon_sym__Generic] = ACTIONS(1924), + [anon_sym_asm] = ACTIONS(1924), + [anon_sym___asm__] = ACTIONS(1924), + [anon_sym___asm] = ACTIONS(1924), + [sym_number_literal] = ACTIONS(1926), + [anon_sym_L_SQUOTE] = ACTIONS(1926), + [anon_sym_u_SQUOTE] = ACTIONS(1926), + [anon_sym_U_SQUOTE] = ACTIONS(1926), + [anon_sym_u8_SQUOTE] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_L_DQUOTE] = ACTIONS(1926), + [anon_sym_u_DQUOTE] = ACTIONS(1926), + [anon_sym_U_DQUOTE] = ACTIONS(1926), + [anon_sym_u8_DQUOTE] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [sym_true] = ACTIONS(1924), + [sym_false] = ACTIONS(1924), + [anon_sym_NULL] = ACTIONS(1924), + [anon_sym_nullptr] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1924), + [anon_sym_decltype] = ACTIONS(1924), + [anon_sym_explicit] = ACTIONS(1924), + [anon_sym_typename] = ACTIONS(1924), + [anon_sym_template] = ACTIONS(1924), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_try] = ACTIONS(1924), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_throw] = ACTIONS(1924), + [anon_sym_namespace] = ACTIONS(1924), + [anon_sym_using] = ACTIONS(1924), + [anon_sym_static_assert] = ACTIONS(1924), + [anon_sym_concept] = ACTIONS(1924), + [anon_sym_co_return] = ACTIONS(1924), + [anon_sym_co_yield] = ACTIONS(1924), + [anon_sym_catch] = ACTIONS(2393), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1924), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_requires] = ACTIONS(1924), + [sym_this] = ACTIONS(1924), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_FORWARD] = ACTIONS(1924), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_PS_GET] = ACTIONS(1924), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1924), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1924), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1924), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1924), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1924), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1924), + [anon_sym_MOZ_COLD] = ACTIONS(1924), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1924), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1924), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1924), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1924), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1924), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1924), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1924), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1924), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1924), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1924), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1924), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1924), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1924), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_NONNULL] = ACTIONS(1924), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1924), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1924), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1924), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1924), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1924), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1924), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1924), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1924), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1924), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1924), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1924), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1924), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1924), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1924), + [anon_sym_MOZ_RAII] = ACTIONS(1924), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1924), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1924), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1924), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1924), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1924), + }, + [STATE(250)] = { + [sym_identifier] = ACTIONS(2396), + [aux_sym_preproc_include_token1] = ACTIONS(2396), + [aux_sym_preproc_def_token1] = ACTIONS(2396), + [aux_sym_preproc_if_token1] = ACTIONS(2396), + [aux_sym_preproc_if_token2] = ACTIONS(2396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2396), + [aux_sym_preproc_else_token1] = ACTIONS(2396), + [aux_sym_preproc_elif_token1] = ACTIONS(2396), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2396), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2396), + [sym_preproc_directive] = ACTIONS(2396), + [anon_sym_LPAREN2] = ACTIONS(2398), + [anon_sym_BANG] = ACTIONS(2398), + [anon_sym_TILDE] = ACTIONS(2398), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym___extension__] = ACTIONS(2396), + [anon_sym_typedef] = ACTIONS(2396), + [anon_sym_virtual] = ACTIONS(2396), + [anon_sym_extern] = ACTIONS(2396), + [anon_sym___attribute__] = ACTIONS(2396), + [anon_sym___attribute] = ACTIONS(2396), + [anon_sym_COLON_COLON] = ACTIONS(2398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2398), + [anon_sym___declspec] = ACTIONS(2396), + [anon_sym___based] = ACTIONS(2396), + [anon_sym___cdecl] = ACTIONS(2396), + [anon_sym___clrcall] = ACTIONS(2396), + [anon_sym___stdcall] = ACTIONS(2396), + [anon_sym___fastcall] = ACTIONS(2396), + [anon_sym___thiscall] = ACTIONS(2396), + [anon_sym___vectorcall] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_signed] = ACTIONS(2396), + [anon_sym_unsigned] = ACTIONS(2396), + [anon_sym_long] = ACTIONS(2396), + [anon_sym_short] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_register] = ACTIONS(2396), + [anon_sym_inline] = ACTIONS(2396), + [anon_sym___inline] = ACTIONS(2396), + [anon_sym___inline__] = ACTIONS(2396), + [anon_sym___forceinline] = ACTIONS(2396), + [anon_sym_thread_local] = ACTIONS(2396), + [anon_sym___thread] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_constexpr] = ACTIONS(2396), + [anon_sym_volatile] = ACTIONS(2396), + [anon_sym_restrict] = ACTIONS(2396), + [anon_sym___restrict__] = ACTIONS(2396), + [anon_sym__Atomic] = ACTIONS(2396), + [anon_sym__Noreturn] = ACTIONS(2396), + [anon_sym_noreturn] = ACTIONS(2396), + [anon_sym__Nonnull] = ACTIONS(2396), + [anon_sym_mutable] = ACTIONS(2396), + [anon_sym_constinit] = ACTIONS(2396), + [anon_sym_consteval] = ACTIONS(2396), + [anon_sym_alignas] = ACTIONS(2396), + [anon_sym__Alignas] = ACTIONS(2396), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_struct] = ACTIONS(2396), + [anon_sym_union] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_case] = ACTIONS(2396), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_goto] = ACTIONS(2396), + [anon_sym___try] = ACTIONS(2396), + [anon_sym___leave] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2396), + [anon_sym_compl] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2398), + [anon_sym_PLUS_PLUS] = ACTIONS(2398), + [anon_sym_sizeof] = ACTIONS(2396), + [anon_sym___alignof__] = ACTIONS(2396), + [anon_sym___alignof] = ACTIONS(2396), + [anon_sym__alignof] = ACTIONS(2396), + [anon_sym_alignof] = ACTIONS(2396), + [anon_sym__Alignof] = ACTIONS(2396), + [anon_sym_offsetof] = ACTIONS(2396), + [anon_sym__Generic] = ACTIONS(2396), + [anon_sym_asm] = ACTIONS(2396), + [anon_sym___asm__] = ACTIONS(2396), + [anon_sym___asm] = ACTIONS(2396), + [sym_number_literal] = ACTIONS(2398), + [anon_sym_L_SQUOTE] = ACTIONS(2398), + [anon_sym_u_SQUOTE] = ACTIONS(2398), + [anon_sym_U_SQUOTE] = ACTIONS(2398), + [anon_sym_u8_SQUOTE] = ACTIONS(2398), + [anon_sym_SQUOTE] = ACTIONS(2398), + [anon_sym_L_DQUOTE] = ACTIONS(2398), + [anon_sym_u_DQUOTE] = ACTIONS(2398), + [anon_sym_U_DQUOTE] = ACTIONS(2398), + [anon_sym_u8_DQUOTE] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [anon_sym_NULL] = ACTIONS(2396), + [anon_sym_nullptr] = ACTIONS(2396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2396), + [anon_sym_decltype] = ACTIONS(2396), + [anon_sym_explicit] = ACTIONS(2396), + [anon_sym_typename] = ACTIONS(2396), + [anon_sym_template] = ACTIONS(2396), + [anon_sym_operator] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_static_assert] = ACTIONS(2396), + [anon_sym_concept] = ACTIONS(2396), + [anon_sym_co_return] = ACTIONS(2396), + [anon_sym_co_yield] = ACTIONS(2396), + [anon_sym_R_DQUOTE] = ACTIONS(2398), + [anon_sym_LR_DQUOTE] = ACTIONS(2398), + [anon_sym_uR_DQUOTE] = ACTIONS(2398), + [anon_sym_UR_DQUOTE] = ACTIONS(2398), + [anon_sym_u8R_DQUOTE] = ACTIONS(2398), + [anon_sym_co_await] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_requires] = ACTIONS(2396), + [sym_this] = ACTIONS(2396), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2396), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_FORWARD] = ACTIONS(2396), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2396), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2396), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2396), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2396), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_PS_GET] = ACTIONS(2396), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2396), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2396), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2396), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2396), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2396), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2396), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2396), + [anon_sym_MOZ_COLD] = ACTIONS(2396), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2396), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2396), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2396), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2396), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2396), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2396), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2396), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2396), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2396), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2396), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2396), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2396), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2396), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_NONNULL] = ACTIONS(2396), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2396), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2396), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2396), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2396), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2396), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2396), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2396), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2396), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2396), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2396), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2396), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2396), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2396), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2396), + [anon_sym_MOZ_RAII] = ACTIONS(2396), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2396), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2396), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2396), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2396), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2396), + }, + [STATE(251)] = { + [sym_identifier] = ACTIONS(2400), + [aux_sym_preproc_include_token1] = ACTIONS(2400), + [aux_sym_preproc_def_token1] = ACTIONS(2400), + [aux_sym_preproc_if_token1] = ACTIONS(2400), + [aux_sym_preproc_if_token2] = ACTIONS(2400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2400), + [aux_sym_preproc_else_token1] = ACTIONS(2400), + [aux_sym_preproc_elif_token1] = ACTIONS(2400), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2400), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2400), + [sym_preproc_directive] = ACTIONS(2400), + [anon_sym_LPAREN2] = ACTIONS(2402), + [anon_sym_BANG] = ACTIONS(2402), + [anon_sym_TILDE] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_AMP] = ACTIONS(2400), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym___extension__] = ACTIONS(2400), + [anon_sym_typedef] = ACTIONS(2400), + [anon_sym_virtual] = ACTIONS(2400), + [anon_sym_extern] = ACTIONS(2400), + [anon_sym___attribute__] = ACTIONS(2400), + [anon_sym___attribute] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2402), + [anon_sym___declspec] = ACTIONS(2400), + [anon_sym___based] = ACTIONS(2400), + [anon_sym___cdecl] = ACTIONS(2400), + [anon_sym___clrcall] = ACTIONS(2400), + [anon_sym___stdcall] = ACTIONS(2400), + [anon_sym___fastcall] = ACTIONS(2400), + [anon_sym___thiscall] = ACTIONS(2400), + [anon_sym___vectorcall] = ACTIONS(2400), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_signed] = ACTIONS(2400), + [anon_sym_unsigned] = ACTIONS(2400), + [anon_sym_long] = ACTIONS(2400), + [anon_sym_short] = ACTIONS(2400), + [anon_sym_LBRACK] = ACTIONS(2400), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_register] = ACTIONS(2400), + [anon_sym_inline] = ACTIONS(2400), + [anon_sym___inline] = ACTIONS(2400), + [anon_sym___inline__] = ACTIONS(2400), + [anon_sym___forceinline] = ACTIONS(2400), + [anon_sym_thread_local] = ACTIONS(2400), + [anon_sym___thread] = ACTIONS(2400), + [anon_sym_const] = ACTIONS(2400), + [anon_sym_constexpr] = ACTIONS(2400), + [anon_sym_volatile] = ACTIONS(2400), + [anon_sym_restrict] = ACTIONS(2400), + [anon_sym___restrict__] = ACTIONS(2400), + [anon_sym__Atomic] = ACTIONS(2400), + [anon_sym__Noreturn] = ACTIONS(2400), + [anon_sym_noreturn] = ACTIONS(2400), + [anon_sym__Nonnull] = ACTIONS(2400), + [anon_sym_mutable] = ACTIONS(2400), + [anon_sym_constinit] = ACTIONS(2400), + [anon_sym_consteval] = ACTIONS(2400), + [anon_sym_alignas] = ACTIONS(2400), + [anon_sym__Alignas] = ACTIONS(2400), + [sym_primitive_type] = ACTIONS(2400), + [anon_sym_enum] = ACTIONS(2400), + [anon_sym_class] = ACTIONS(2400), + [anon_sym_struct] = ACTIONS(2400), + [anon_sym_union] = ACTIONS(2400), + [anon_sym_if] = ACTIONS(2400), + [anon_sym_switch] = ACTIONS(2400), + [anon_sym_case] = ACTIONS(2400), + [anon_sym_default] = ACTIONS(2400), + [anon_sym_while] = ACTIONS(2400), + [anon_sym_do] = ACTIONS(2400), + [anon_sym_for] = ACTIONS(2400), + [anon_sym_return] = ACTIONS(2400), + [anon_sym_break] = ACTIONS(2400), + [anon_sym_continue] = ACTIONS(2400), + [anon_sym_goto] = ACTIONS(2400), + [anon_sym___try] = ACTIONS(2400), + [anon_sym___leave] = ACTIONS(2400), + [anon_sym_not] = ACTIONS(2400), + [anon_sym_compl] = ACTIONS(2400), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_PLUS_PLUS] = ACTIONS(2402), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2400), + [anon_sym__Generic] = ACTIONS(2400), + [anon_sym_asm] = ACTIONS(2400), + [anon_sym___asm__] = ACTIONS(2400), + [anon_sym___asm] = ACTIONS(2400), + [sym_number_literal] = ACTIONS(2402), + [anon_sym_L_SQUOTE] = ACTIONS(2402), + [anon_sym_u_SQUOTE] = ACTIONS(2402), + [anon_sym_U_SQUOTE] = ACTIONS(2402), + [anon_sym_u8_SQUOTE] = ACTIONS(2402), + [anon_sym_SQUOTE] = ACTIONS(2402), + [anon_sym_L_DQUOTE] = ACTIONS(2402), + [anon_sym_u_DQUOTE] = ACTIONS(2402), + [anon_sym_U_DQUOTE] = ACTIONS(2402), + [anon_sym_u8_DQUOTE] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [sym_true] = ACTIONS(2400), + [sym_false] = ACTIONS(2400), + [anon_sym_NULL] = ACTIONS(2400), + [anon_sym_nullptr] = ACTIONS(2400), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2400), + [anon_sym_decltype] = ACTIONS(2400), + [anon_sym_explicit] = ACTIONS(2400), + [anon_sym_typename] = ACTIONS(2400), + [anon_sym_template] = ACTIONS(2400), + [anon_sym_operator] = ACTIONS(2400), + [anon_sym_try] = ACTIONS(2400), + [anon_sym_delete] = ACTIONS(2400), + [anon_sym_throw] = ACTIONS(2400), + [anon_sym_namespace] = ACTIONS(2400), + [anon_sym_using] = ACTIONS(2400), + [anon_sym_static_assert] = ACTIONS(2400), + [anon_sym_concept] = ACTIONS(2400), + [anon_sym_co_return] = ACTIONS(2400), + [anon_sym_co_yield] = ACTIONS(2400), + [anon_sym_R_DQUOTE] = ACTIONS(2402), + [anon_sym_LR_DQUOTE] = ACTIONS(2402), + [anon_sym_uR_DQUOTE] = ACTIONS(2402), + [anon_sym_UR_DQUOTE] = ACTIONS(2402), + [anon_sym_u8R_DQUOTE] = ACTIONS(2402), + [anon_sym_co_await] = ACTIONS(2400), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_requires] = ACTIONS(2400), + [sym_this] = ACTIONS(2400), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2400), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_FORWARD] = ACTIONS(2400), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2400), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2400), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2400), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2400), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_PS_GET] = ACTIONS(2400), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2400), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2400), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2400), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2400), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2400), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2400), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2400), + [anon_sym_MOZ_COLD] = ACTIONS(2400), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2400), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2400), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2400), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2400), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2400), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2400), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2400), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2400), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2400), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2400), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2400), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2400), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2400), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_NONNULL] = ACTIONS(2400), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2400), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2400), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2400), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2400), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2400), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2400), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2400), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2400), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2400), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2400), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2400), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2400), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2400), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2400), + [anon_sym_MOZ_RAII] = ACTIONS(2400), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2400), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2400), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2400), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2400), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2400), + }, + [STATE(252)] = { + [ts_builtin_sym_end] = ACTIONS(1955), + [sym_identifier] = ACTIONS(1953), + [aux_sym_preproc_include_token1] = ACTIONS(1953), + [aux_sym_preproc_def_token1] = ACTIONS(1953), + [aux_sym_preproc_if_token1] = ACTIONS(1953), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1953), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1953), + [sym_preproc_directive] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym___extension__] = ACTIONS(1953), + [anon_sym_typedef] = ACTIONS(1953), + [anon_sym_virtual] = ACTIONS(1953), + [anon_sym_extern] = ACTIONS(1953), + [anon_sym___attribute__] = ACTIONS(1953), + [anon_sym___attribute] = ACTIONS(1953), + [anon_sym_COLON_COLON] = ACTIONS(1955), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1955), + [anon_sym___declspec] = ACTIONS(1953), + [anon_sym___based] = ACTIONS(1953), + [anon_sym___cdecl] = ACTIONS(1953), + [anon_sym___clrcall] = ACTIONS(1953), + [anon_sym___stdcall] = ACTIONS(1953), + [anon_sym___fastcall] = ACTIONS(1953), + [anon_sym___thiscall] = ACTIONS(1953), + [anon_sym___vectorcall] = ACTIONS(1953), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_signed] = ACTIONS(1953), + [anon_sym_unsigned] = ACTIONS(1953), + [anon_sym_long] = ACTIONS(1953), + [anon_sym_short] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(1953), + [anon_sym_static] = ACTIONS(1953), + [anon_sym_register] = ACTIONS(1953), + [anon_sym_inline] = ACTIONS(1953), + [anon_sym___inline] = ACTIONS(1953), + [anon_sym___inline__] = ACTIONS(1953), + [anon_sym___forceinline] = ACTIONS(1953), + [anon_sym_thread_local] = ACTIONS(1953), + [anon_sym___thread] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [anon_sym_constexpr] = ACTIONS(1953), + [anon_sym_volatile] = ACTIONS(1953), + [anon_sym_restrict] = ACTIONS(1953), + [anon_sym___restrict__] = ACTIONS(1953), + [anon_sym__Atomic] = ACTIONS(1953), + [anon_sym__Noreturn] = ACTIONS(1953), + [anon_sym_noreturn] = ACTIONS(1953), + [anon_sym__Nonnull] = ACTIONS(1953), + [anon_sym_mutable] = ACTIONS(1953), + [anon_sym_constinit] = ACTIONS(1953), + [anon_sym_consteval] = ACTIONS(1953), + [anon_sym_alignas] = ACTIONS(1953), + [anon_sym__Alignas] = ACTIONS(1953), + [sym_primitive_type] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1953), + [anon_sym_class] = ACTIONS(1953), + [anon_sym_struct] = ACTIONS(1953), + [anon_sym_union] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_else] = ACTIONS(1953), + [anon_sym_switch] = ACTIONS(1953), + [anon_sym_case] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_do] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_break] = ACTIONS(1953), + [anon_sym_continue] = ACTIONS(1953), + [anon_sym_goto] = ACTIONS(1953), + [anon_sym___try] = ACTIONS(1953), + [anon_sym___leave] = ACTIONS(1953), + [anon_sym_not] = ACTIONS(1953), + [anon_sym_compl] = ACTIONS(1953), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_sizeof] = ACTIONS(1953), + [anon_sym___alignof__] = ACTIONS(1953), + [anon_sym___alignof] = ACTIONS(1953), + [anon_sym__alignof] = ACTIONS(1953), + [anon_sym_alignof] = ACTIONS(1953), + [anon_sym__Alignof] = ACTIONS(1953), + [anon_sym_offsetof] = ACTIONS(1953), + [anon_sym__Generic] = ACTIONS(1953), + [anon_sym_asm] = ACTIONS(1953), + [anon_sym___asm__] = ACTIONS(1953), + [anon_sym___asm] = ACTIONS(1953), + [sym_number_literal] = ACTIONS(1955), + [anon_sym_L_SQUOTE] = ACTIONS(1955), + [anon_sym_u_SQUOTE] = ACTIONS(1955), + [anon_sym_U_SQUOTE] = ACTIONS(1955), + [anon_sym_u8_SQUOTE] = ACTIONS(1955), + [anon_sym_SQUOTE] = ACTIONS(1955), + [anon_sym_L_DQUOTE] = ACTIONS(1955), + [anon_sym_u_DQUOTE] = ACTIONS(1955), + [anon_sym_U_DQUOTE] = ACTIONS(1955), + [anon_sym_u8_DQUOTE] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(1955), + [sym_true] = ACTIONS(1953), + [sym_false] = ACTIONS(1953), + [anon_sym_NULL] = ACTIONS(1953), + [anon_sym_nullptr] = ACTIONS(1953), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1953), + [anon_sym_decltype] = ACTIONS(1953), + [anon_sym_explicit] = ACTIONS(1953), + [anon_sym_typename] = ACTIONS(1953), + [anon_sym_template] = ACTIONS(1953), + [anon_sym_operator] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(1953), + [anon_sym_delete] = ACTIONS(1953), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_namespace] = ACTIONS(1953), + [anon_sym_using] = ACTIONS(1953), + [anon_sym_static_assert] = ACTIONS(1953), + [anon_sym_concept] = ACTIONS(1953), + [anon_sym_co_return] = ACTIONS(1953), + [anon_sym_co_yield] = ACTIONS(1953), + [anon_sym_catch] = ACTIONS(1953), + [anon_sym_R_DQUOTE] = ACTIONS(1955), + [anon_sym_LR_DQUOTE] = ACTIONS(1955), + [anon_sym_uR_DQUOTE] = ACTIONS(1955), + [anon_sym_UR_DQUOTE] = ACTIONS(1955), + [anon_sym_u8R_DQUOTE] = ACTIONS(1955), + [anon_sym_co_await] = ACTIONS(1953), + [anon_sym_new] = ACTIONS(1953), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1953), + [sym_alone_macro] = ACTIONS(1955), + [aux_sym_alone_macro_call_token1] = ACTIONS(1953), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_FORWARD] = ACTIONS(1953), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1953), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_PS_GET] = ACTIONS(1953), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1953), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1953), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1953), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1953), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1953), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1953), + [anon_sym_MOZ_COLD] = ACTIONS(1953), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1953), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1953), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1953), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1953), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1953), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1953), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1953), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1953), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1953), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1953), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1953), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1953), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1953), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_NONNULL] = ACTIONS(1953), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1953), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1953), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1953), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1953), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1953), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1953), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1953), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1953), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1953), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1953), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1953), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1953), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1953), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1953), + [anon_sym_MOZ_RAII] = ACTIONS(1953), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1953), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1953), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1953), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1953), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1953), + }, + [STATE(253)] = { + [sym_identifier] = ACTIONS(2404), + [aux_sym_preproc_include_token1] = ACTIONS(2404), + [aux_sym_preproc_def_token1] = ACTIONS(2404), + [aux_sym_preproc_if_token1] = ACTIONS(2404), + [aux_sym_preproc_if_token2] = ACTIONS(2404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2404), + [aux_sym_preproc_else_token1] = ACTIONS(2404), + [aux_sym_preproc_elif_token1] = ACTIONS(2404), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2404), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2404), + [sym_preproc_directive] = ACTIONS(2404), + [anon_sym_LPAREN2] = ACTIONS(2406), + [anon_sym_BANG] = ACTIONS(2406), + [anon_sym_TILDE] = ACTIONS(2406), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_STAR] = ACTIONS(2406), + [anon_sym_AMP_AMP] = ACTIONS(2406), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2406), + [anon_sym___extension__] = ACTIONS(2404), + [anon_sym_typedef] = ACTIONS(2404), + [anon_sym_virtual] = ACTIONS(2404), + [anon_sym_extern] = ACTIONS(2404), + [anon_sym___attribute__] = ACTIONS(2404), + [anon_sym___attribute] = ACTIONS(2404), + [anon_sym_COLON_COLON] = ACTIONS(2406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2406), + [anon_sym___declspec] = ACTIONS(2404), + [anon_sym___based] = ACTIONS(2404), + [anon_sym___cdecl] = ACTIONS(2404), + [anon_sym___clrcall] = ACTIONS(2404), + [anon_sym___stdcall] = ACTIONS(2404), + [anon_sym___fastcall] = ACTIONS(2404), + [anon_sym___thiscall] = ACTIONS(2404), + [anon_sym___vectorcall] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2406), + [anon_sym_signed] = ACTIONS(2404), + [anon_sym_unsigned] = ACTIONS(2404), + [anon_sym_long] = ACTIONS(2404), + [anon_sym_short] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_register] = ACTIONS(2404), + [anon_sym_inline] = ACTIONS(2404), + [anon_sym___inline] = ACTIONS(2404), + [anon_sym___inline__] = ACTIONS(2404), + [anon_sym___forceinline] = ACTIONS(2404), + [anon_sym_thread_local] = ACTIONS(2404), + [anon_sym___thread] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_constexpr] = ACTIONS(2404), + [anon_sym_volatile] = ACTIONS(2404), + [anon_sym_restrict] = ACTIONS(2404), + [anon_sym___restrict__] = ACTIONS(2404), + [anon_sym__Atomic] = ACTIONS(2404), + [anon_sym__Noreturn] = ACTIONS(2404), + [anon_sym_noreturn] = ACTIONS(2404), + [anon_sym__Nonnull] = ACTIONS(2404), + [anon_sym_mutable] = ACTIONS(2404), + [anon_sym_constinit] = ACTIONS(2404), + [anon_sym_consteval] = ACTIONS(2404), + [anon_sym_alignas] = ACTIONS(2404), + [anon_sym__Alignas] = ACTIONS(2404), + [sym_primitive_type] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_struct] = ACTIONS(2404), + [anon_sym_union] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_case] = ACTIONS(2404), + [anon_sym_default] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_goto] = ACTIONS(2404), + [anon_sym___try] = ACTIONS(2404), + [anon_sym___leave] = ACTIONS(2404), + [anon_sym_not] = ACTIONS(2404), + [anon_sym_compl] = ACTIONS(2404), + [anon_sym_DASH_DASH] = ACTIONS(2406), + [anon_sym_PLUS_PLUS] = ACTIONS(2406), + [anon_sym_sizeof] = ACTIONS(2404), + [anon_sym___alignof__] = ACTIONS(2404), + [anon_sym___alignof] = ACTIONS(2404), + [anon_sym__alignof] = ACTIONS(2404), + [anon_sym_alignof] = ACTIONS(2404), + [anon_sym__Alignof] = ACTIONS(2404), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_asm] = ACTIONS(2404), + [anon_sym___asm__] = ACTIONS(2404), + [anon_sym___asm] = ACTIONS(2404), + [sym_number_literal] = ACTIONS(2406), + [anon_sym_L_SQUOTE] = ACTIONS(2406), + [anon_sym_u_SQUOTE] = ACTIONS(2406), + [anon_sym_U_SQUOTE] = ACTIONS(2406), + [anon_sym_u8_SQUOTE] = ACTIONS(2406), + [anon_sym_SQUOTE] = ACTIONS(2406), + [anon_sym_L_DQUOTE] = ACTIONS(2406), + [anon_sym_u_DQUOTE] = ACTIONS(2406), + [anon_sym_U_DQUOTE] = ACTIONS(2406), + [anon_sym_u8_DQUOTE] = ACTIONS(2406), + [anon_sym_DQUOTE] = ACTIONS(2406), + [sym_true] = ACTIONS(2404), + [sym_false] = ACTIONS(2404), + [anon_sym_NULL] = ACTIONS(2404), + [anon_sym_nullptr] = ACTIONS(2404), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2404), + [anon_sym_decltype] = ACTIONS(2404), + [anon_sym_explicit] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2404), + [anon_sym_template] = ACTIONS(2404), + [anon_sym_operator] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_delete] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_using] = ACTIONS(2404), + [anon_sym_static_assert] = ACTIONS(2404), + [anon_sym_concept] = ACTIONS(2404), + [anon_sym_co_return] = ACTIONS(2404), + [anon_sym_co_yield] = ACTIONS(2404), + [anon_sym_R_DQUOTE] = ACTIONS(2406), + [anon_sym_LR_DQUOTE] = ACTIONS(2406), + [anon_sym_uR_DQUOTE] = ACTIONS(2406), + [anon_sym_UR_DQUOTE] = ACTIONS(2406), + [anon_sym_u8R_DQUOTE] = ACTIONS(2406), + [anon_sym_co_await] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_requires] = ACTIONS(2404), + [sym_this] = ACTIONS(2404), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2404), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_FORWARD] = ACTIONS(2404), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2404), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2404), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2404), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2404), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_PS_GET] = ACTIONS(2404), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2404), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2404), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2404), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2404), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2404), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2404), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2404), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2404), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2404), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2404), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2404), + [anon_sym_MOZ_COLD] = ACTIONS(2404), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2404), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2404), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2404), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2404), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2404), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2404), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2404), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2404), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2404), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2404), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2404), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2404), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2404), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2404), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2404), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2404), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2404), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2404), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2404), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2404), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_NONNULL] = ACTIONS(2404), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2404), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2404), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2404), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2404), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2404), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_NORETURN] = ACTIONS(2404), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2404), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2404), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2404), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2404), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2404), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2404), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2404), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2404), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2404), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2404), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2404), + [anon_sym_MOZ_RAII] = ACTIONS(2404), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2404), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2404), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2404), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2404), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2404), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2404), + }, + [STATE(254)] = { + [sym_identifier] = ACTIONS(2408), + [aux_sym_preproc_include_token1] = ACTIONS(2408), + [aux_sym_preproc_def_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token2] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2408), + [aux_sym_preproc_else_token1] = ACTIONS(2408), + [aux_sym_preproc_elif_token1] = ACTIONS(2408), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2408), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_LPAREN2] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_AMP_AMP] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2408), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym___extension__] = ACTIONS(2408), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_virtual] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym___attribute__] = ACTIONS(2408), + [anon_sym___attribute] = ACTIONS(2408), + [anon_sym_COLON_COLON] = ACTIONS(2410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2410), + [anon_sym___declspec] = ACTIONS(2408), + [anon_sym___based] = ACTIONS(2408), + [anon_sym___cdecl] = ACTIONS(2408), + [anon_sym___clrcall] = ACTIONS(2408), + [anon_sym___stdcall] = ACTIONS(2408), + [anon_sym___fastcall] = ACTIONS(2408), + [anon_sym___thiscall] = ACTIONS(2408), + [anon_sym___vectorcall] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_signed] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym___inline] = ACTIONS(2408), + [anon_sym___inline__] = ACTIONS(2408), + [anon_sym___forceinline] = ACTIONS(2408), + [anon_sym_thread_local] = ACTIONS(2408), + [anon_sym___thread] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_constexpr] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym___restrict__] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym__Noreturn] = ACTIONS(2408), + [anon_sym_noreturn] = ACTIONS(2408), + [anon_sym__Nonnull] = ACTIONS(2408), + [anon_sym_mutable] = ACTIONS(2408), + [anon_sym_constinit] = ACTIONS(2408), + [anon_sym_consteval] = ACTIONS(2408), + [anon_sym_alignas] = ACTIONS(2408), + [anon_sym__Alignas] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_class] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_goto] = ACTIONS(2408), + [anon_sym___try] = ACTIONS(2408), + [anon_sym___leave] = ACTIONS(2408), + [anon_sym_not] = ACTIONS(2408), + [anon_sym_compl] = ACTIONS(2408), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_sizeof] = ACTIONS(2408), + [anon_sym___alignof__] = ACTIONS(2408), + [anon_sym___alignof] = ACTIONS(2408), + [anon_sym__alignof] = ACTIONS(2408), + [anon_sym_alignof] = ACTIONS(2408), + [anon_sym__Alignof] = ACTIONS(2408), + [anon_sym_offsetof] = ACTIONS(2408), + [anon_sym__Generic] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2410), + [anon_sym_u_SQUOTE] = ACTIONS(2410), + [anon_sym_U_SQUOTE] = ACTIONS(2410), + [anon_sym_u8_SQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_L_DQUOTE] = ACTIONS(2410), + [anon_sym_u_DQUOTE] = ACTIONS(2410), + [anon_sym_U_DQUOTE] = ACTIONS(2410), + [anon_sym_u8_DQUOTE] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [sym_true] = ACTIONS(2408), + [sym_false] = ACTIONS(2408), + [anon_sym_NULL] = ACTIONS(2408), + [anon_sym_nullptr] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2408), + [anon_sym_decltype] = ACTIONS(2408), + [anon_sym_explicit] = ACTIONS(2408), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_template] = ACTIONS(2408), + [anon_sym_operator] = ACTIONS(2408), + [anon_sym_try] = ACTIONS(2408), + [anon_sym_delete] = ACTIONS(2408), + [anon_sym_throw] = ACTIONS(2408), + [anon_sym_namespace] = ACTIONS(2408), + [anon_sym_using] = ACTIONS(2408), + [anon_sym_static_assert] = ACTIONS(2408), + [anon_sym_concept] = ACTIONS(2408), + [anon_sym_co_return] = ACTIONS(2408), + [anon_sym_co_yield] = ACTIONS(2408), + [anon_sym_R_DQUOTE] = ACTIONS(2410), + [anon_sym_LR_DQUOTE] = ACTIONS(2410), + [anon_sym_uR_DQUOTE] = ACTIONS(2410), + [anon_sym_UR_DQUOTE] = ACTIONS(2410), + [anon_sym_u8R_DQUOTE] = ACTIONS(2410), + [anon_sym_co_await] = ACTIONS(2408), + [anon_sym_new] = ACTIONS(2408), + [anon_sym_requires] = ACTIONS(2408), + [sym_this] = ACTIONS(2408), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2408), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_FORWARD] = ACTIONS(2408), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2408), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2408), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2408), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2408), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_PS_GET] = ACTIONS(2408), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2408), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2408), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2408), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2408), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2408), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2408), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2408), + [anon_sym_MOZ_COLD] = ACTIONS(2408), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2408), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2408), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2408), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2408), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2408), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2408), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2408), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2408), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2408), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2408), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2408), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2408), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2408), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_NONNULL] = ACTIONS(2408), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2408), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2408), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2408), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2408), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2408), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2408), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2408), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2408), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2408), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2408), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2408), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2408), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2408), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2408), + [anon_sym_MOZ_RAII] = ACTIONS(2408), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2408), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2408), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2408), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2408), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2408), + }, + [STATE(255)] = { + [sym_identifier] = ACTIONS(2412), + [aux_sym_preproc_include_token1] = ACTIONS(2412), + [aux_sym_preproc_def_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token2] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2412), + [aux_sym_preproc_else_token1] = ACTIONS(2412), + [aux_sym_preproc_elif_token1] = ACTIONS(2412), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2412), + [sym_preproc_directive] = ACTIONS(2412), + [anon_sym_LPAREN2] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym___extension__] = ACTIONS(2412), + [anon_sym_typedef] = ACTIONS(2412), + [anon_sym_virtual] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym___attribute__] = ACTIONS(2412), + [anon_sym___attribute] = ACTIONS(2412), + [anon_sym_COLON_COLON] = ACTIONS(2414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2414), + [anon_sym___declspec] = ACTIONS(2412), + [anon_sym___based] = ACTIONS(2412), + [anon_sym___cdecl] = ACTIONS(2412), + [anon_sym___clrcall] = ACTIONS(2412), + [anon_sym___stdcall] = ACTIONS(2412), + [anon_sym___fastcall] = ACTIONS(2412), + [anon_sym___thiscall] = ACTIONS(2412), + [anon_sym___vectorcall] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_signed] = ACTIONS(2412), + [anon_sym_unsigned] = ACTIONS(2412), + [anon_sym_long] = ACTIONS(2412), + [anon_sym_short] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym___inline] = ACTIONS(2412), + [anon_sym___inline__] = ACTIONS(2412), + [anon_sym___forceinline] = ACTIONS(2412), + [anon_sym_thread_local] = ACTIONS(2412), + [anon_sym___thread] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_constexpr] = ACTIONS(2412), + [anon_sym_volatile] = ACTIONS(2412), + [anon_sym_restrict] = ACTIONS(2412), + [anon_sym___restrict__] = ACTIONS(2412), + [anon_sym__Atomic] = ACTIONS(2412), + [anon_sym__Noreturn] = ACTIONS(2412), + [anon_sym_noreturn] = ACTIONS(2412), + [anon_sym__Nonnull] = ACTIONS(2412), + [anon_sym_mutable] = ACTIONS(2412), + [anon_sym_constinit] = ACTIONS(2412), + [anon_sym_consteval] = ACTIONS(2412), + [anon_sym_alignas] = ACTIONS(2412), + [anon_sym__Alignas] = ACTIONS(2412), + [sym_primitive_type] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_class] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_switch] = ACTIONS(2412), + [anon_sym_case] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_do] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_goto] = ACTIONS(2412), + [anon_sym___try] = ACTIONS(2412), + [anon_sym___leave] = ACTIONS(2412), + [anon_sym_not] = ACTIONS(2412), + [anon_sym_compl] = ACTIONS(2412), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_sizeof] = ACTIONS(2412), + [anon_sym___alignof__] = ACTIONS(2412), + [anon_sym___alignof] = ACTIONS(2412), + [anon_sym__alignof] = ACTIONS(2412), + [anon_sym_alignof] = ACTIONS(2412), + [anon_sym__Alignof] = ACTIONS(2412), + [anon_sym_offsetof] = ACTIONS(2412), + [anon_sym__Generic] = ACTIONS(2412), + [anon_sym_asm] = ACTIONS(2412), + [anon_sym___asm__] = ACTIONS(2412), + [anon_sym___asm] = ACTIONS(2412), + [sym_number_literal] = ACTIONS(2414), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2412), + [sym_false] = ACTIONS(2412), + [anon_sym_NULL] = ACTIONS(2412), + [anon_sym_nullptr] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2412), + [anon_sym_decltype] = ACTIONS(2412), + [anon_sym_explicit] = ACTIONS(2412), + [anon_sym_typename] = ACTIONS(2412), + [anon_sym_template] = ACTIONS(2412), + [anon_sym_operator] = ACTIONS(2412), + [anon_sym_try] = ACTIONS(2412), + [anon_sym_delete] = ACTIONS(2412), + [anon_sym_throw] = ACTIONS(2412), + [anon_sym_namespace] = ACTIONS(2412), + [anon_sym_using] = ACTIONS(2412), + [anon_sym_static_assert] = ACTIONS(2412), + [anon_sym_concept] = ACTIONS(2412), + [anon_sym_co_return] = ACTIONS(2412), + [anon_sym_co_yield] = ACTIONS(2412), + [anon_sym_R_DQUOTE] = ACTIONS(2414), + [anon_sym_LR_DQUOTE] = ACTIONS(2414), + [anon_sym_uR_DQUOTE] = ACTIONS(2414), + [anon_sym_UR_DQUOTE] = ACTIONS(2414), + [anon_sym_u8R_DQUOTE] = ACTIONS(2414), + [anon_sym_co_await] = ACTIONS(2412), + [anon_sym_new] = ACTIONS(2412), + [anon_sym_requires] = ACTIONS(2412), + [sym_this] = ACTIONS(2412), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2412), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_FORWARD] = ACTIONS(2412), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2412), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2412), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2412), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_PS_GET] = ACTIONS(2412), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2412), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2412), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2412), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2412), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2412), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2412), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2412), + [anon_sym_MOZ_COLD] = ACTIONS(2412), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2412), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2412), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2412), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2412), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2412), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2412), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2412), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2412), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2412), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2412), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2412), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2412), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2412), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_NONNULL] = ACTIONS(2412), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2412), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2412), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2412), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2412), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2412), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2412), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2412), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2412), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2412), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2412), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2412), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2412), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2412), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2412), + [anon_sym_MOZ_RAII] = ACTIONS(2412), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2412), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2412), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2412), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2412), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2412), + }, + [STATE(256)] = { + [sym_identifier] = ACTIONS(2416), + [aux_sym_preproc_include_token1] = ACTIONS(2416), + [aux_sym_preproc_def_token1] = ACTIONS(2416), + [aux_sym_preproc_if_token1] = ACTIONS(2416), + [aux_sym_preproc_if_token2] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2416), + [aux_sym_preproc_else_token1] = ACTIONS(2416), + [aux_sym_preproc_elif_token1] = ACTIONS(2416), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2416), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2416), + [sym_preproc_directive] = ACTIONS(2416), + [anon_sym_LPAREN2] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2416), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym___extension__] = ACTIONS(2416), + [anon_sym_typedef] = ACTIONS(2416), + [anon_sym_virtual] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym___attribute__] = ACTIONS(2416), + [anon_sym___attribute] = ACTIONS(2416), [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2466), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2470), - [anon_sym_EQ] = ACTIONS(2468), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_QMARK] = ACTIONS(2461), - [anon_sym_STAR_EQ] = ACTIONS(2461), - [anon_sym_SLASH_EQ] = ACTIONS(2461), - [anon_sym_PERCENT_EQ] = ACTIONS(2461), - [anon_sym_PLUS_EQ] = ACTIONS(2461), - [anon_sym_DASH_EQ] = ACTIONS(2461), - [anon_sym_LT_LT_EQ] = ACTIONS(2461), - [anon_sym_GT_GT_EQ] = ACTIONS(2461), - [anon_sym_AMP_EQ] = ACTIONS(2461), - [anon_sym_CARET_EQ] = ACTIONS(2461), - [anon_sym_PIPE_EQ] = ACTIONS(2461), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_DOT] = ACTIONS(2468), - [anon_sym_DASH_GT] = ACTIONS(2461), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2459), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2459), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2459), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2459), - [anon_sym_MOZ_COLD] = ACTIONS(2459), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2459), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2459), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2459), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2459), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2459), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2459), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2459), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2459), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2459), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2459), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2459), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2459), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2459), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_NONNULL] = ACTIONS(2459), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2459), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2459), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2459), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2459), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2459), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2459), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2459), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2459), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2459), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2459), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2459), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2459), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2459), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2459), - [anon_sym_MOZ_RAII] = ACTIONS(2459), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2459), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2459), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2459), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2459), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2459), - }, - [804] = { - [sym_identifier] = ACTIONS(2476), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [anon_sym_COMMA] = ACTIONS(2478), - [anon_sym_RPAREN] = ACTIONS(2478), - [anon_sym_LPAREN2] = ACTIONS(2478), - [anon_sym_TILDE] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2476), - [anon_sym_PERCENT] = ACTIONS(2476), - [anon_sym_PIPE_PIPE] = ACTIONS(2478), - [anon_sym_AMP_AMP] = ACTIONS(2478), - [anon_sym_PIPE] = ACTIONS(2476), - [anon_sym_CARET] = ACTIONS(2476), - [anon_sym_AMP] = ACTIONS(2476), - [anon_sym_EQ_EQ] = ACTIONS(2478), - [anon_sym_BANG_EQ] = ACTIONS(2478), - [anon_sym_GT] = ACTIONS(2476), - [anon_sym_GT_EQ] = ACTIONS(2478), - [anon_sym_LT_EQ] = ACTIONS(2478), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_LT_LT] = ACTIONS(2476), - [anon_sym_GT_GT] = ACTIONS(2476), - [anon_sym_SEMI] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2476), - [anon_sym___attribute__] = ACTIONS(2476), - [anon_sym_COLON_COLON] = ACTIONS(2478), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), - [anon_sym___declspec] = ACTIONS(2476), - [anon_sym___based] = ACTIONS(2476), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2476), - [anon_sym_EQ] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2476), - [anon_sym_register] = ACTIONS(2476), - [anon_sym_inline] = ACTIONS(2476), - [anon_sym_thread_local] = ACTIONS(2476), - [anon_sym_const] = ACTIONS(2476), - [anon_sym_volatile] = ACTIONS(2476), - [anon_sym_restrict] = ACTIONS(2476), - [anon_sym__Atomic] = ACTIONS(2476), - [anon_sym_mutable] = ACTIONS(2476), - [anon_sym_constexpr] = ACTIONS(2476), - [anon_sym_QMARK] = ACTIONS(2478), - [anon_sym_STAR_EQ] = ACTIONS(2478), - [anon_sym_SLASH_EQ] = ACTIONS(2478), - [anon_sym_PERCENT_EQ] = ACTIONS(2478), - [anon_sym_PLUS_EQ] = ACTIONS(2478), - [anon_sym_DASH_EQ] = ACTIONS(2478), - [anon_sym_LT_LT_EQ] = ACTIONS(2478), - [anon_sym_GT_GT_EQ] = ACTIONS(2478), - [anon_sym_AMP_EQ] = ACTIONS(2478), - [anon_sym_CARET_EQ] = ACTIONS(2478), - [anon_sym_PIPE_EQ] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2478), - [anon_sym_PLUS_PLUS] = ACTIONS(2478), - [anon_sym_DOT] = ACTIONS(2476), - [anon_sym_DASH_GT] = ACTIONS(2478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2418), + [anon_sym___declspec] = ACTIONS(2416), + [anon_sym___based] = ACTIONS(2416), + [anon_sym___cdecl] = ACTIONS(2416), + [anon_sym___clrcall] = ACTIONS(2416), + [anon_sym___stdcall] = ACTIONS(2416), + [anon_sym___fastcall] = ACTIONS(2416), + [anon_sym___thiscall] = ACTIONS(2416), + [anon_sym___vectorcall] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_signed] = ACTIONS(2416), + [anon_sym_unsigned] = ACTIONS(2416), + [anon_sym_long] = ACTIONS(2416), + [anon_sym_short] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_register] = ACTIONS(2416), + [anon_sym_inline] = ACTIONS(2416), + [anon_sym___inline] = ACTIONS(2416), + [anon_sym___inline__] = ACTIONS(2416), + [anon_sym___forceinline] = ACTIONS(2416), + [anon_sym_thread_local] = ACTIONS(2416), + [anon_sym___thread] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_constexpr] = ACTIONS(2416), + [anon_sym_volatile] = ACTIONS(2416), + [anon_sym_restrict] = ACTIONS(2416), + [anon_sym___restrict__] = ACTIONS(2416), + [anon_sym__Atomic] = ACTIONS(2416), + [anon_sym__Noreturn] = ACTIONS(2416), + [anon_sym_noreturn] = ACTIONS(2416), + [anon_sym__Nonnull] = ACTIONS(2416), + [anon_sym_mutable] = ACTIONS(2416), + [anon_sym_constinit] = ACTIONS(2416), + [anon_sym_consteval] = ACTIONS(2416), + [anon_sym_alignas] = ACTIONS(2416), + [anon_sym__Alignas] = ACTIONS(2416), + [sym_primitive_type] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [anon_sym_class] = ACTIONS(2416), + [anon_sym_struct] = ACTIONS(2416), + [anon_sym_union] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_switch] = ACTIONS(2416), + [anon_sym_case] = ACTIONS(2416), + [anon_sym_default] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_goto] = ACTIONS(2416), + [anon_sym___try] = ACTIONS(2416), + [anon_sym___leave] = ACTIONS(2416), + [anon_sym_not] = ACTIONS(2416), + [anon_sym_compl] = ACTIONS(2416), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_sizeof] = ACTIONS(2416), + [anon_sym___alignof__] = ACTIONS(2416), + [anon_sym___alignof] = ACTIONS(2416), + [anon_sym__alignof] = ACTIONS(2416), + [anon_sym_alignof] = ACTIONS(2416), + [anon_sym__Alignof] = ACTIONS(2416), + [anon_sym_offsetof] = ACTIONS(2416), + [anon_sym__Generic] = ACTIONS(2416), + [anon_sym_asm] = ACTIONS(2416), + [anon_sym___asm__] = ACTIONS(2416), + [anon_sym___asm] = ACTIONS(2416), + [sym_number_literal] = ACTIONS(2418), + [anon_sym_L_SQUOTE] = ACTIONS(2418), + [anon_sym_u_SQUOTE] = ACTIONS(2418), + [anon_sym_U_SQUOTE] = ACTIONS(2418), + [anon_sym_u8_SQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_L_DQUOTE] = ACTIONS(2418), + [anon_sym_u_DQUOTE] = ACTIONS(2418), + [anon_sym_U_DQUOTE] = ACTIONS(2418), + [anon_sym_u8_DQUOTE] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2416), + [anon_sym_nullptr] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2416), + [anon_sym_decltype] = ACTIONS(2416), + [anon_sym_explicit] = ACTIONS(2416), + [anon_sym_typename] = ACTIONS(2416), + [anon_sym_template] = ACTIONS(2416), + [anon_sym_operator] = ACTIONS(2416), + [anon_sym_try] = ACTIONS(2416), + [anon_sym_delete] = ACTIONS(2416), + [anon_sym_throw] = ACTIONS(2416), + [anon_sym_namespace] = ACTIONS(2416), + [anon_sym_using] = ACTIONS(2416), + [anon_sym_static_assert] = ACTIONS(2416), + [anon_sym_concept] = ACTIONS(2416), + [anon_sym_co_return] = ACTIONS(2416), + [anon_sym_co_yield] = ACTIONS(2416), + [anon_sym_R_DQUOTE] = ACTIONS(2418), + [anon_sym_LR_DQUOTE] = ACTIONS(2418), + [anon_sym_uR_DQUOTE] = ACTIONS(2418), + [anon_sym_UR_DQUOTE] = ACTIONS(2418), + [anon_sym_u8R_DQUOTE] = ACTIONS(2418), + [anon_sym_co_await] = ACTIONS(2416), + [anon_sym_new] = ACTIONS(2416), + [anon_sym_requires] = ACTIONS(2416), + [sym_this] = ACTIONS(2416), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2416), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_FORWARD] = ACTIONS(2416), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2416), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2416), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2416), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2416), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_PS_GET] = ACTIONS(2416), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2416), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2416), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2416), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2416), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2416), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2416), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2416), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2416), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2416), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2416), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2416), + [anon_sym_MOZ_COLD] = ACTIONS(2416), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2416), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2416), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2416), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2416), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2416), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2416), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2416), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2416), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2416), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2416), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2416), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2416), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2416), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2416), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2416), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2416), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2416), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2416), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2416), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2416), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_NONNULL] = ACTIONS(2416), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2416), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2416), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2416), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2416), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2416), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_NORETURN] = ACTIONS(2416), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2416), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2416), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2416), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2416), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2416), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2416), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2416), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2416), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2416), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2416), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2416), + [anon_sym_MOZ_RAII] = ACTIONS(2416), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2416), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2416), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2416), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2416), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2416), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2416), + }, + [STATE(257)] = { + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_include_token1] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token2] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2420), + [aux_sym_preproc_else_token1] = ACTIONS(2420), + [aux_sym_preproc_elif_token1] = ACTIONS(2420), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2420), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2420), + [sym_preproc_directive] = ACTIONS(2420), + [anon_sym_LPAREN2] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym___extension__] = ACTIONS(2420), + [anon_sym_typedef] = ACTIONS(2420), + [anon_sym_virtual] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym___attribute__] = ACTIONS(2420), + [anon_sym___attribute] = ACTIONS(2420), + [anon_sym_COLON_COLON] = ACTIONS(2422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2422), + [anon_sym___declspec] = ACTIONS(2420), + [anon_sym___based] = ACTIONS(2420), + [anon_sym___cdecl] = ACTIONS(2420), + [anon_sym___clrcall] = ACTIONS(2420), + [anon_sym___stdcall] = ACTIONS(2420), + [anon_sym___fastcall] = ACTIONS(2420), + [anon_sym___thiscall] = ACTIONS(2420), + [anon_sym___vectorcall] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_signed] = ACTIONS(2420), + [anon_sym_unsigned] = ACTIONS(2420), + [anon_sym_long] = ACTIONS(2420), + [anon_sym_short] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_inline] = ACTIONS(2420), + [anon_sym___inline] = ACTIONS(2420), + [anon_sym___inline__] = ACTIONS(2420), + [anon_sym___forceinline] = ACTIONS(2420), + [anon_sym_thread_local] = ACTIONS(2420), + [anon_sym___thread] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_constexpr] = ACTIONS(2420), + [anon_sym_volatile] = ACTIONS(2420), + [anon_sym_restrict] = ACTIONS(2420), + [anon_sym___restrict__] = ACTIONS(2420), + [anon_sym__Atomic] = ACTIONS(2420), + [anon_sym__Noreturn] = ACTIONS(2420), + [anon_sym_noreturn] = ACTIONS(2420), + [anon_sym__Nonnull] = ACTIONS(2420), + [anon_sym_mutable] = ACTIONS(2420), + [anon_sym_constinit] = ACTIONS(2420), + [anon_sym_consteval] = ACTIONS(2420), + [anon_sym_alignas] = ACTIONS(2420), + [anon_sym__Alignas] = ACTIONS(2420), + [sym_primitive_type] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_class] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_case] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_goto] = ACTIONS(2420), + [anon_sym___try] = ACTIONS(2420), + [anon_sym___leave] = ACTIONS(2420), + [anon_sym_not] = ACTIONS(2420), + [anon_sym_compl] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_sizeof] = ACTIONS(2420), + [anon_sym___alignof__] = ACTIONS(2420), + [anon_sym___alignof] = ACTIONS(2420), + [anon_sym__alignof] = ACTIONS(2420), + [anon_sym_alignof] = ACTIONS(2420), + [anon_sym__Alignof] = ACTIONS(2420), + [anon_sym_offsetof] = ACTIONS(2420), + [anon_sym__Generic] = ACTIONS(2420), + [anon_sym_asm] = ACTIONS(2420), + [anon_sym___asm__] = ACTIONS(2420), + [anon_sym___asm] = ACTIONS(2420), + [sym_number_literal] = ACTIONS(2422), + [anon_sym_L_SQUOTE] = ACTIONS(2422), + [anon_sym_u_SQUOTE] = ACTIONS(2422), + [anon_sym_U_SQUOTE] = ACTIONS(2422), + [anon_sym_u8_SQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_L_DQUOTE] = ACTIONS(2422), + [anon_sym_u_DQUOTE] = ACTIONS(2422), + [anon_sym_U_DQUOTE] = ACTIONS(2422), + [anon_sym_u8_DQUOTE] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2420), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_explicit] = ACTIONS(2420), + [anon_sym_typename] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2420), + [anon_sym_operator] = ACTIONS(2420), + [anon_sym_try] = ACTIONS(2420), + [anon_sym_delete] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2420), + [anon_sym_using] = ACTIONS(2420), + [anon_sym_static_assert] = ACTIONS(2420), + [anon_sym_concept] = ACTIONS(2420), + [anon_sym_co_return] = ACTIONS(2420), + [anon_sym_co_yield] = ACTIONS(2420), + [anon_sym_R_DQUOTE] = ACTIONS(2422), + [anon_sym_LR_DQUOTE] = ACTIONS(2422), + [anon_sym_uR_DQUOTE] = ACTIONS(2422), + [anon_sym_UR_DQUOTE] = ACTIONS(2422), + [anon_sym_u8R_DQUOTE] = ACTIONS(2422), + [anon_sym_co_await] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_requires] = ACTIONS(2420), + [sym_this] = ACTIONS(2420), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2420), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_FORWARD] = ACTIONS(2420), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2420), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2420), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2420), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2420), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_PS_GET] = ACTIONS(2420), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2420), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2420), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2420), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2420), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2420), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2420), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2420), + [anon_sym_MOZ_COLD] = ACTIONS(2420), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2420), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2420), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2420), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2420), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2420), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2420), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2420), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2420), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2420), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2420), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2420), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2420), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2420), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_NONNULL] = ACTIONS(2420), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2420), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2420), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2420), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2420), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2420), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2420), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2420), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2420), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2420), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2420), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2420), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2420), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2420), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2420), + [anon_sym_MOZ_RAII] = ACTIONS(2420), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2420), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2420), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2420), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2420), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2420), + }, + [STATE(258)] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token2] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [aux_sym_preproc_else_token1] = ACTIONS(2424), + [aux_sym_preproc_elif_token1] = ACTIONS(2424), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_virtual] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_COLON_COLON] = ACTIONS(2426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___based] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_mutable] = ACTIONS(2424), + [anon_sym_constinit] = ACTIONS(2424), + [anon_sym_consteval] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym___try] = ACTIONS(2424), + [anon_sym___leave] = ACTIONS(2424), + [anon_sym_not] = ACTIONS(2424), + [anon_sym_compl] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2424), + [anon_sym_decltype] = ACTIONS(2424), + [anon_sym_explicit] = ACTIONS(2424), + [anon_sym_typename] = ACTIONS(2424), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_operator] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_throw] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2424), + [anon_sym_using] = ACTIONS(2424), + [anon_sym_static_assert] = ACTIONS(2424), + [anon_sym_concept] = ACTIONS(2424), + [anon_sym_co_return] = ACTIONS(2424), + [anon_sym_co_yield] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_requires] = ACTIONS(2424), + [sym_this] = ACTIONS(2424), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_FORWARD] = ACTIONS(2424), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_PS_GET] = ACTIONS(2424), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2424), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2424), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2424), + [anon_sym_MOZ_COLD] = ACTIONS(2424), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2424), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2424), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2424), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2424), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2424), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2424), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2424), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2424), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2424), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2424), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2424), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2424), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_RAII] = ACTIONS(2424), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2424), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2424), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2424), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2424), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2424), + }, + [STATE(259)] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token2] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [aux_sym_preproc_else_token1] = ACTIONS(2424), + [aux_sym_preproc_elif_token1] = ACTIONS(2424), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_virtual] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_COLON_COLON] = ACTIONS(2426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___based] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_mutable] = ACTIONS(2424), + [anon_sym_constinit] = ACTIONS(2424), + [anon_sym_consteval] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym___try] = ACTIONS(2424), + [anon_sym___leave] = ACTIONS(2424), + [anon_sym_not] = ACTIONS(2424), + [anon_sym_compl] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2424), + [anon_sym_decltype] = ACTIONS(2424), + [anon_sym_explicit] = ACTIONS(2424), + [anon_sym_typename] = ACTIONS(2424), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_operator] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_throw] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2424), + [anon_sym_using] = ACTIONS(2424), + [anon_sym_static_assert] = ACTIONS(2424), + [anon_sym_concept] = ACTIONS(2424), + [anon_sym_co_return] = ACTIONS(2424), + [anon_sym_co_yield] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_requires] = ACTIONS(2424), + [sym_this] = ACTIONS(2424), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_FORWARD] = ACTIONS(2424), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_PS_GET] = ACTIONS(2424), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2424), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2424), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2424), + [anon_sym_MOZ_COLD] = ACTIONS(2424), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2424), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2424), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2424), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2424), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2424), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2424), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2424), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2424), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2424), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2424), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2424), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2424), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_RAII] = ACTIONS(2424), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2424), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2424), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2424), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2424), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2424), + }, + [STATE(260)] = { + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_include_token1] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token2] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [aux_sym_preproc_else_token1] = ACTIONS(2428), + [aux_sym_preproc_elif_token1] = ACTIONS(2428), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2428), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_virtual] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_COLON_COLON] = ACTIONS(2430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___based] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_mutable] = ACTIONS(2428), + [anon_sym_constinit] = ACTIONS(2428), + [anon_sym_consteval] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_class] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_case] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_goto] = ACTIONS(2428), + [anon_sym___try] = ACTIONS(2428), + [anon_sym___leave] = ACTIONS(2428), + [anon_sym_not] = ACTIONS(2428), + [anon_sym_compl] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_sizeof] = ACTIONS(2428), + [anon_sym___alignof__] = ACTIONS(2428), + [anon_sym___alignof] = ACTIONS(2428), + [anon_sym__alignof] = ACTIONS(2428), + [anon_sym_alignof] = ACTIONS(2428), + [anon_sym__Alignof] = ACTIONS(2428), + [anon_sym_offsetof] = ACTIONS(2428), + [anon_sym__Generic] = ACTIONS(2428), + [anon_sym_asm] = ACTIONS(2428), + [anon_sym___asm__] = ACTIONS(2428), + [anon_sym___asm] = ACTIONS(2428), + [sym_number_literal] = ACTIONS(2430), + [anon_sym_L_SQUOTE] = ACTIONS(2430), + [anon_sym_u_SQUOTE] = ACTIONS(2430), + [anon_sym_U_SQUOTE] = ACTIONS(2430), + [anon_sym_u8_SQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_L_DQUOTE] = ACTIONS(2430), + [anon_sym_u_DQUOTE] = ACTIONS(2430), + [anon_sym_U_DQUOTE] = ACTIONS(2430), + [anon_sym_u8_DQUOTE] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2430), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [anon_sym_NULL] = ACTIONS(2428), + [anon_sym_nullptr] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2428), + [anon_sym_decltype] = ACTIONS(2428), + [anon_sym_explicit] = ACTIONS(2428), + [anon_sym_typename] = ACTIONS(2428), + [anon_sym_template] = ACTIONS(2428), + [anon_sym_operator] = ACTIONS(2428), + [anon_sym_try] = ACTIONS(2428), + [anon_sym_delete] = ACTIONS(2428), + [anon_sym_throw] = ACTIONS(2428), + [anon_sym_namespace] = ACTIONS(2428), + [anon_sym_using] = ACTIONS(2428), + [anon_sym_static_assert] = ACTIONS(2428), + [anon_sym_concept] = ACTIONS(2428), + [anon_sym_co_return] = ACTIONS(2428), + [anon_sym_co_yield] = ACTIONS(2428), + [anon_sym_R_DQUOTE] = ACTIONS(2430), + [anon_sym_LR_DQUOTE] = ACTIONS(2430), + [anon_sym_uR_DQUOTE] = ACTIONS(2430), + [anon_sym_UR_DQUOTE] = ACTIONS(2430), + [anon_sym_u8R_DQUOTE] = ACTIONS(2430), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2428), + [anon_sym_requires] = ACTIONS(2428), + [sym_this] = ACTIONS(2428), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2428), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_FORWARD] = ACTIONS(2428), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2428), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2428), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2428), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_PS_GET] = ACTIONS(2428), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2428), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2428), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2428), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2428), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2428), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2428), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2428), + [anon_sym_MOZ_COLD] = ACTIONS(2428), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2428), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2428), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2428), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2428), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2428), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2428), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2428), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2428), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2428), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2428), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2428), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2428), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2428), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_NONNULL] = ACTIONS(2428), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2428), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2428), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2428), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2428), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2428), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2428), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2428), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2428), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2428), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2428), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2428), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2428), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2428), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2428), + [anon_sym_MOZ_RAII] = ACTIONS(2428), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2428), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2428), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2428), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2428), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2428), + }, + [STATE(261)] = { + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_include_token1] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token2] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [aux_sym_preproc_else_token1] = ACTIONS(2432), + [aux_sym_preproc_elif_token1] = ACTIONS(2432), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_LPAREN2] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_AMP_AMP] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2432), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_virtual] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_COLON_COLON] = ACTIONS(2434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___based] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_mutable] = ACTIONS(2432), + [anon_sym_constinit] = ACTIONS(2432), + [anon_sym_consteval] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_class] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_goto] = ACTIONS(2432), + [anon_sym___try] = ACTIONS(2432), + [anon_sym___leave] = ACTIONS(2432), + [anon_sym_not] = ACTIONS(2432), + [anon_sym_compl] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_sizeof] = ACTIONS(2432), + [anon_sym___alignof__] = ACTIONS(2432), + [anon_sym___alignof] = ACTIONS(2432), + [anon_sym__alignof] = ACTIONS(2432), + [anon_sym_alignof] = ACTIONS(2432), + [anon_sym__Alignof] = ACTIONS(2432), + [anon_sym_offsetof] = ACTIONS(2432), + [anon_sym__Generic] = ACTIONS(2432), + [anon_sym_asm] = ACTIONS(2432), + [anon_sym___asm__] = ACTIONS(2432), + [anon_sym___asm] = ACTIONS(2432), + [sym_number_literal] = ACTIONS(2434), + [anon_sym_L_SQUOTE] = ACTIONS(2434), + [anon_sym_u_SQUOTE] = ACTIONS(2434), + [anon_sym_U_SQUOTE] = ACTIONS(2434), + [anon_sym_u8_SQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_L_DQUOTE] = ACTIONS(2434), + [anon_sym_u_DQUOTE] = ACTIONS(2434), + [anon_sym_U_DQUOTE] = ACTIONS(2434), + [anon_sym_u8_DQUOTE] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2434), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [anon_sym_NULL] = ACTIONS(2432), + [anon_sym_nullptr] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2432), + [anon_sym_decltype] = ACTIONS(2432), + [anon_sym_explicit] = ACTIONS(2432), + [anon_sym_typename] = ACTIONS(2432), + [anon_sym_template] = ACTIONS(2432), + [anon_sym_operator] = ACTIONS(2432), + [anon_sym_try] = ACTIONS(2432), + [anon_sym_delete] = ACTIONS(2432), + [anon_sym_throw] = ACTIONS(2432), + [anon_sym_namespace] = ACTIONS(2432), + [anon_sym_using] = ACTIONS(2432), + [anon_sym_static_assert] = ACTIONS(2432), + [anon_sym_concept] = ACTIONS(2432), + [anon_sym_co_return] = ACTIONS(2432), + [anon_sym_co_yield] = ACTIONS(2432), + [anon_sym_R_DQUOTE] = ACTIONS(2434), + [anon_sym_LR_DQUOTE] = ACTIONS(2434), + [anon_sym_uR_DQUOTE] = ACTIONS(2434), + [anon_sym_UR_DQUOTE] = ACTIONS(2434), + [anon_sym_u8R_DQUOTE] = ACTIONS(2434), + [anon_sym_co_await] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2432), + [sym_this] = ACTIONS(2432), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2432), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_FORWARD] = ACTIONS(2432), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2432), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2432), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2432), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_PS_GET] = ACTIONS(2432), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2432), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2432), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2432), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2432), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2432), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2432), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2432), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2432), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2432), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2432), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2432), + [anon_sym_MOZ_COLD] = ACTIONS(2432), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2432), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2432), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2432), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2432), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2432), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2432), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2432), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2432), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2432), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2432), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2432), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2432), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2432), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2432), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2432), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2432), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2432), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2432), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2432), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2432), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_NONNULL] = ACTIONS(2432), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2432), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2432), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2432), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2432), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2432), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_NORETURN] = ACTIONS(2432), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2432), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2432), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2432), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2432), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2432), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2432), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2432), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2432), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2432), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2432), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2432), + [anon_sym_MOZ_RAII] = ACTIONS(2432), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2432), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2432), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2432), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2432), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2432), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2432), + }, + [STATE(262)] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token2] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [aux_sym_preproc_else_token1] = ACTIONS(2436), + [aux_sym_preproc_elif_token1] = ACTIONS(2436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_virtual] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_COLON_COLON] = ACTIONS(2438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___based] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_mutable] = ACTIONS(2436), + [anon_sym_constinit] = ACTIONS(2436), + [anon_sym_consteval] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_class] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym___try] = ACTIONS(2436), + [anon_sym___leave] = ACTIONS(2436), + [anon_sym_not] = ACTIONS(2436), + [anon_sym_compl] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2436), + [anon_sym_decltype] = ACTIONS(2436), + [anon_sym_explicit] = ACTIONS(2436), + [anon_sym_typename] = ACTIONS(2436), + [anon_sym_template] = ACTIONS(2436), + [anon_sym_operator] = ACTIONS(2436), + [anon_sym_try] = ACTIONS(2436), + [anon_sym_delete] = ACTIONS(2436), + [anon_sym_throw] = ACTIONS(2436), + [anon_sym_namespace] = ACTIONS(2436), + [anon_sym_using] = ACTIONS(2436), + [anon_sym_static_assert] = ACTIONS(2436), + [anon_sym_concept] = ACTIONS(2436), + [anon_sym_co_return] = ACTIONS(2436), + [anon_sym_co_yield] = ACTIONS(2436), + [anon_sym_R_DQUOTE] = ACTIONS(2438), + [anon_sym_LR_DQUOTE] = ACTIONS(2438), + [anon_sym_uR_DQUOTE] = ACTIONS(2438), + [anon_sym_UR_DQUOTE] = ACTIONS(2438), + [anon_sym_u8R_DQUOTE] = ACTIONS(2438), + [anon_sym_co_await] = ACTIONS(2436), + [anon_sym_new] = ACTIONS(2436), + [anon_sym_requires] = ACTIONS(2436), + [sym_this] = ACTIONS(2436), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_FORWARD] = ACTIONS(2436), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_PS_GET] = ACTIONS(2436), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2436), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2436), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2436), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2436), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2436), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2436), + [anon_sym_MOZ_COLD] = ACTIONS(2436), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2436), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2436), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2436), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2436), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2436), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2436), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2436), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2436), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2436), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2436), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2436), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2436), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2436), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_NONNULL] = ACTIONS(2436), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2436), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2436), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2436), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2436), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2436), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2436), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2436), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2436), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2436), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2436), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2436), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2436), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2436), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2436), + [anon_sym_MOZ_RAII] = ACTIONS(2436), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2436), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2436), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2436), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2436), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2436), + }, + [STATE(263)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1898), + [anon_sym_typedef] = ACTIONS(1901), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1905), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2476), - [anon_sym_template] = ACTIONS(2476), - [anon_sym_operator] = ACTIONS(2476), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2476), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2476), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2476), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2476), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2476), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2476), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2476), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2476), - [anon_sym_MOZ_COLD] = ACTIONS(2476), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2476), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2476), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2476), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2476), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2476), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2476), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2476), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2476), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2476), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2476), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2476), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2476), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2476), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2476), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2476), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2476), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2476), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2476), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2476), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2476), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_NONNULL] = ACTIONS(2476), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2476), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2476), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2476), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2476), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2476), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_NORETURN] = ACTIONS(2476), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2476), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2476), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2476), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2476), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2476), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2476), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2476), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2476), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2476), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2476), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2476), - [anon_sym_MOZ_RAII] = ACTIONS(2476), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2476), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2476), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2476), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2476), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2476), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2476), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1914), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1917), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), }, - [805] = { - [sym_function_definition] = STATE(1134), - [sym_declaration] = STATE(1134), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3062), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_ms_call_modifier] = STATE(1174), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4990), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1498), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1496), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2439), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(2480), - [anon_sym_struct] = ACTIONS(2482), - [anon_sym_union] = ACTIONS(2484), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [806] = { - [sym_template_argument_list] = STATE(1225), - [sym_identifier] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(2399), - [anon_sym_LPAREN2] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2407), - [anon_sym_PLUS] = ACTIONS(2407), - [anon_sym_STAR] = ACTIONS(2409), - [anon_sym_SLASH] = ACTIONS(2407), - [anon_sym_PERCENT] = ACTIONS(2407), - [anon_sym_PIPE_PIPE] = ACTIONS(2399), - [anon_sym_AMP_AMP] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2407), - [anon_sym_CARET] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_EQ_EQ] = ACTIONS(2399), - [anon_sym_BANG_EQ] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2407), - [anon_sym_GT_EQ] = ACTIONS(2399), - [anon_sym_LT_EQ] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2415), - [anon_sym_LT_LT] = ACTIONS(2407), - [anon_sym_GT_GT] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2405), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_EQ] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [anon_sym_COLON] = ACTIONS(2486), - [anon_sym_QMARK] = ACTIONS(2399), - [anon_sym_STAR_EQ] = ACTIONS(2433), - [anon_sym_SLASH_EQ] = ACTIONS(2433), - [anon_sym_PERCENT_EQ] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(2433), - [anon_sym_DASH_EQ] = ACTIONS(2433), - [anon_sym_LT_LT_EQ] = ACTIONS(2433), - [anon_sym_GT_GT_EQ] = ACTIONS(2433), - [anon_sym_AMP_EQ] = ACTIONS(2433), - [anon_sym_CARET_EQ] = ACTIONS(2433), - [anon_sym_PIPE_EQ] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DOT] = ACTIONS(2407), - [anon_sym_DASH_GT] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2397), - [anon_sym_MOZ_COLD] = ACTIONS(2397), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2397), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2397), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2397), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2397), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2397), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2397), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2397), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2397), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2397), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2397), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2397), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2397), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_RAII] = ACTIONS(2397), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2397), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2397), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2397), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2397), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2397), - }, - [807] = { - [sym_identifier] = ACTIONS(2488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2490), - [anon_sym_COMMA] = ACTIONS(2490), - [anon_sym_RPAREN] = ACTIONS(2490), - [anon_sym_LPAREN2] = ACTIONS(2490), - [anon_sym_TILDE] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2488), - [anon_sym_PLUS] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2488), - [anon_sym_SLASH] = ACTIONS(2488), - [anon_sym_PERCENT] = ACTIONS(2488), - [anon_sym_PIPE_PIPE] = ACTIONS(2490), - [anon_sym_AMP_AMP] = ACTIONS(2490), - [anon_sym_PIPE] = ACTIONS(2488), - [anon_sym_CARET] = ACTIONS(2488), - [anon_sym_AMP] = ACTIONS(2488), - [anon_sym_EQ_EQ] = ACTIONS(2490), - [anon_sym_BANG_EQ] = ACTIONS(2490), - [anon_sym_GT] = ACTIONS(2488), - [anon_sym_GT_EQ] = ACTIONS(2490), - [anon_sym_LT_EQ] = ACTIONS(2490), - [anon_sym_LT] = ACTIONS(2488), - [anon_sym_LT_LT] = ACTIONS(2488), - [anon_sym_GT_GT] = ACTIONS(2488), - [anon_sym_SEMI] = ACTIONS(2490), - [anon_sym_extern] = ACTIONS(2488), - [anon_sym___attribute__] = ACTIONS(2488), - [anon_sym_COLON_COLON] = ACTIONS(2490), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2490), - [anon_sym___declspec] = ACTIONS(2488), - [anon_sym___based] = ACTIONS(2488), - [anon_sym_LBRACE] = ACTIONS(2490), - [anon_sym_RBRACE] = ACTIONS(2490), - [anon_sym_LBRACK] = ACTIONS(2488), - [anon_sym_EQ] = ACTIONS(2488), - [anon_sym_static] = ACTIONS(2488), - [anon_sym_register] = ACTIONS(2488), - [anon_sym_inline] = ACTIONS(2488), - [anon_sym_thread_local] = ACTIONS(2488), - [anon_sym_const] = ACTIONS(2488), - [anon_sym_volatile] = ACTIONS(2488), - [anon_sym_restrict] = ACTIONS(2488), - [anon_sym__Atomic] = ACTIONS(2488), - [anon_sym_mutable] = ACTIONS(2488), - [anon_sym_constexpr] = ACTIONS(2488), - [anon_sym_QMARK] = ACTIONS(2490), - [anon_sym_STAR_EQ] = ACTIONS(2490), - [anon_sym_SLASH_EQ] = ACTIONS(2490), - [anon_sym_PERCENT_EQ] = ACTIONS(2490), - [anon_sym_PLUS_EQ] = ACTIONS(2490), - [anon_sym_DASH_EQ] = ACTIONS(2490), - [anon_sym_LT_LT_EQ] = ACTIONS(2490), - [anon_sym_GT_GT_EQ] = ACTIONS(2490), - [anon_sym_AMP_EQ] = ACTIONS(2490), - [anon_sym_CARET_EQ] = ACTIONS(2490), - [anon_sym_PIPE_EQ] = ACTIONS(2490), - [anon_sym_DASH_DASH] = ACTIONS(2490), - [anon_sym_PLUS_PLUS] = ACTIONS(2490), - [anon_sym_DOT] = ACTIONS(2488), - [anon_sym_DASH_GT] = ACTIONS(2490), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2488), - [anon_sym_template] = ACTIONS(2488), - [anon_sym_operator] = ACTIONS(2488), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2488), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2488), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2488), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2488), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2488), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2488), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2488), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2488), - [anon_sym_MOZ_COLD] = ACTIONS(2488), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2488), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2488), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2488), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2488), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2488), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2488), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2488), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2488), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2488), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2488), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2488), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2488), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2488), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2488), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2488), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2488), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2488), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2488), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2488), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2488), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2488), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2488), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2488), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2488), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2488), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2488), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2488), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2488), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2488), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2488), - [anon_sym_MOZ_NONNULL] = ACTIONS(2488), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2488), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2488), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2488), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2488), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2488), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2488), - [anon_sym_MOZ_NORETURN] = ACTIONS(2488), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2488), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2488), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2488), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2488), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2488), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2488), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2488), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2488), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2488), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2488), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2488), - [anon_sym_MOZ_RAII] = ACTIONS(2488), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2488), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2488), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2488), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2488), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2488), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2488), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2488), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2488), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2488), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2488), - }, - [808] = { - [sym_template_argument_list] = STATE(1225), - [sym_identifier] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(2399), - [anon_sym_LPAREN2] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2407), - [anon_sym_PLUS] = ACTIONS(2407), - [anon_sym_STAR] = ACTIONS(2409), - [anon_sym_SLASH] = ACTIONS(2407), - [anon_sym_PERCENT] = ACTIONS(2407), - [anon_sym_PIPE_PIPE] = ACTIONS(2399), - [anon_sym_AMP_AMP] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2407), - [anon_sym_CARET] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_EQ_EQ] = ACTIONS(2399), - [anon_sym_BANG_EQ] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2407), - [anon_sym_GT_EQ] = ACTIONS(2399), - [anon_sym_LT_EQ] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2415), - [anon_sym_LT_LT] = ACTIONS(2407), - [anon_sym_GT_GT] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2405), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_EQ] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [anon_sym_COLON] = ACTIONS(2457), - [anon_sym_QMARK] = ACTIONS(2399), - [anon_sym_STAR_EQ] = ACTIONS(2433), - [anon_sym_SLASH_EQ] = ACTIONS(2433), - [anon_sym_PERCENT_EQ] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(2433), - [anon_sym_DASH_EQ] = ACTIONS(2433), - [anon_sym_LT_LT_EQ] = ACTIONS(2433), - [anon_sym_GT_GT_EQ] = ACTIONS(2433), - [anon_sym_AMP_EQ] = ACTIONS(2433), - [anon_sym_CARET_EQ] = ACTIONS(2433), - [anon_sym_PIPE_EQ] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DOT] = ACTIONS(2407), - [anon_sym_DASH_GT] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2397), - [anon_sym_MOZ_COLD] = ACTIONS(2397), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2397), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2397), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2397), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2397), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2397), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2397), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2397), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2397), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2397), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2397), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2397), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2397), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_RAII] = ACTIONS(2397), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2397), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2397), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2397), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2397), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2397), - }, - [809] = { - [sym_template_argument_list] = STATE(1227), - [sym_identifier] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(2399), - [anon_sym_LPAREN2] = ACTIONS(2401), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2407), - [anon_sym_PLUS] = ACTIONS(2407), - [anon_sym_STAR] = ACTIONS(2409), - [anon_sym_SLASH] = ACTIONS(2407), - [anon_sym_PERCENT] = ACTIONS(2407), - [anon_sym_PIPE_PIPE] = ACTIONS(2399), - [anon_sym_AMP_AMP] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2407), - [anon_sym_CARET] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_EQ_EQ] = ACTIONS(2399), - [anon_sym_BANG_EQ] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2407), - [anon_sym_GT_EQ] = ACTIONS(2399), - [anon_sym_LT_EQ] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2415), - [anon_sym_LT_LT] = ACTIONS(2407), - [anon_sym_GT_GT] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2412), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2420), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_EQ] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [anon_sym_COLON] = ACTIONS(2486), - [anon_sym_QMARK] = ACTIONS(2399), - [anon_sym_STAR_EQ] = ACTIONS(2433), - [anon_sym_SLASH_EQ] = ACTIONS(2433), - [anon_sym_PERCENT_EQ] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(2433), - [anon_sym_DASH_EQ] = ACTIONS(2433), - [anon_sym_LT_LT_EQ] = ACTIONS(2433), - [anon_sym_GT_GT_EQ] = ACTIONS(2433), - [anon_sym_AMP_EQ] = ACTIONS(2433), - [anon_sym_CARET_EQ] = ACTIONS(2433), - [anon_sym_PIPE_EQ] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DOT] = ACTIONS(2407), - [anon_sym_DASH_GT] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2397), - [anon_sym_MOZ_COLD] = ACTIONS(2397), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2397), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2397), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2397), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2397), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2397), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2397), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2397), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2397), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2397), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2397), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2397), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2397), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_RAII] = ACTIONS(2397), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2397), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2397), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2397), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2397), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2397), - }, - [810] = { - [sym_template_argument_list] = STATE(1225), - [sym_identifier] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(2399), - [anon_sym_LPAREN2] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2407), - [anon_sym_PLUS] = ACTIONS(2407), - [anon_sym_STAR] = ACTIONS(2409), - [anon_sym_SLASH] = ACTIONS(2407), - [anon_sym_PERCENT] = ACTIONS(2407), - [anon_sym_PIPE_PIPE] = ACTIONS(2399), - [anon_sym_AMP_AMP] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2407), - [anon_sym_CARET] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_EQ_EQ] = ACTIONS(2399), - [anon_sym_BANG_EQ] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2407), - [anon_sym_GT_EQ] = ACTIONS(2399), - [anon_sym_LT_EQ] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2415), - [anon_sym_LT_LT] = ACTIONS(2407), - [anon_sym_GT_GT] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2405), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_EQ] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2399), - [anon_sym_STAR_EQ] = ACTIONS(2433), - [anon_sym_SLASH_EQ] = ACTIONS(2433), - [anon_sym_PERCENT_EQ] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(2433), - [anon_sym_DASH_EQ] = ACTIONS(2433), - [anon_sym_LT_LT_EQ] = ACTIONS(2433), - [anon_sym_GT_GT_EQ] = ACTIONS(2433), - [anon_sym_AMP_EQ] = ACTIONS(2433), - [anon_sym_CARET_EQ] = ACTIONS(2433), - [anon_sym_PIPE_EQ] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DOT] = ACTIONS(2407), - [anon_sym_DASH_GT] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2397), - [anon_sym_MOZ_COLD] = ACTIONS(2397), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2397), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2397), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2397), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2397), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2397), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2397), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2397), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2397), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2397), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2397), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2397), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2397), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_RAII] = ACTIONS(2397), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2397), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2397), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2397), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2397), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2397), - }, - [811] = { - [sym_identifier] = ACTIONS(2494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2496), - [anon_sym_COMMA] = ACTIONS(2496), - [anon_sym_RPAREN] = ACTIONS(2496), - [anon_sym_LPAREN2] = ACTIONS(2496), - [anon_sym_TILDE] = ACTIONS(2496), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_PLUS] = ACTIONS(2494), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_SLASH] = ACTIONS(2494), - [anon_sym_PERCENT] = ACTIONS(2494), - [anon_sym_PIPE_PIPE] = ACTIONS(2496), - [anon_sym_AMP_AMP] = ACTIONS(2496), - [anon_sym_PIPE] = ACTIONS(2494), - [anon_sym_CARET] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2494), - [anon_sym_EQ_EQ] = ACTIONS(2496), - [anon_sym_BANG_EQ] = ACTIONS(2496), - [anon_sym_GT] = ACTIONS(2494), - [anon_sym_GT_EQ] = ACTIONS(2496), - [anon_sym_LT_EQ] = ACTIONS(2496), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_LT_LT] = ACTIONS(2494), - [anon_sym_GT_GT] = ACTIONS(2494), - [anon_sym_SEMI] = ACTIONS(2496), - [anon_sym_extern] = ACTIONS(2494), - [anon_sym___attribute__] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2496), - [anon_sym___declspec] = ACTIONS(2494), - [anon_sym___based] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2496), - [anon_sym_RBRACE] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_static] = ACTIONS(2494), - [anon_sym_register] = ACTIONS(2494), - [anon_sym_inline] = ACTIONS(2494), - [anon_sym_thread_local] = ACTIONS(2494), - [anon_sym_const] = ACTIONS(2494), - [anon_sym_volatile] = ACTIONS(2494), - [anon_sym_restrict] = ACTIONS(2494), - [anon_sym__Atomic] = ACTIONS(2494), - [anon_sym_mutable] = ACTIONS(2494), - [anon_sym_constexpr] = ACTIONS(2494), - [anon_sym_QMARK] = ACTIONS(2496), - [anon_sym_STAR_EQ] = ACTIONS(2496), - [anon_sym_SLASH_EQ] = ACTIONS(2496), - [anon_sym_PERCENT_EQ] = ACTIONS(2496), - [anon_sym_PLUS_EQ] = ACTIONS(2496), - [anon_sym_DASH_EQ] = ACTIONS(2496), - [anon_sym_LT_LT_EQ] = ACTIONS(2496), - [anon_sym_GT_GT_EQ] = ACTIONS(2496), - [anon_sym_AMP_EQ] = ACTIONS(2496), - [anon_sym_CARET_EQ] = ACTIONS(2496), - [anon_sym_PIPE_EQ] = ACTIONS(2496), - [anon_sym_DASH_DASH] = ACTIONS(2496), - [anon_sym_PLUS_PLUS] = ACTIONS(2496), - [anon_sym_DOT] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2496), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2494), - [anon_sym_template] = ACTIONS(2494), - [anon_sym_operator] = ACTIONS(2494), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2494), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2494), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2494), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2494), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2494), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2494), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2494), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2494), - [anon_sym_MOZ_COLD] = ACTIONS(2494), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2494), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2494), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2494), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2494), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2494), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2494), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2494), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2494), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2494), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2494), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2494), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2494), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2494), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2494), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2494), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2494), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2494), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2494), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2494), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2494), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_NONNULL] = ACTIONS(2494), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2494), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2494), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2494), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2494), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2494), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_NORETURN] = ACTIONS(2494), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2494), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2494), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2494), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2494), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2494), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2494), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2494), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2494), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2494), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2494), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2494), - [anon_sym_MOZ_RAII] = ACTIONS(2494), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2494), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2494), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2494), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2494), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2494), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2494), - }, - [812] = { - [sym_function_definition] = STATE(955), - [sym_declaration] = STATE(955), - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(2944), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_ms_call_modifier] = STATE(1119), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym__class_name] = STATE(4852), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1498), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1496), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2439), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(2498), - [anon_sym_struct] = ACTIONS(2500), - [anon_sym_union] = ACTIONS(2502), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [813] = { - [sym_identifier] = ACTIONS(2504), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2506), - [anon_sym_COMMA] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_LPAREN2] = ACTIONS(2506), - [anon_sym_TILDE] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2504), - [anon_sym_SLASH] = ACTIONS(2504), - [anon_sym_PERCENT] = ACTIONS(2504), - [anon_sym_PIPE_PIPE] = ACTIONS(2506), - [anon_sym_AMP_AMP] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2504), - [anon_sym_CARET] = ACTIONS(2504), - [anon_sym_AMP] = ACTIONS(2504), - [anon_sym_EQ_EQ] = ACTIONS(2506), - [anon_sym_BANG_EQ] = ACTIONS(2506), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2506), - [anon_sym_LT_EQ] = ACTIONS(2506), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_LT_LT] = ACTIONS(2504), - [anon_sym_GT_GT] = ACTIONS(2504), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_extern] = ACTIONS(2504), - [anon_sym___attribute__] = ACTIONS(2504), - [anon_sym_COLON_COLON] = ACTIONS(2506), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2506), - [anon_sym___declspec] = ACTIONS(2504), - [anon_sym___based] = ACTIONS(2504), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_RBRACE] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2504), - [anon_sym_EQ] = ACTIONS(2504), - [anon_sym_static] = ACTIONS(2504), - [anon_sym_register] = ACTIONS(2504), - [anon_sym_inline] = ACTIONS(2504), - [anon_sym_thread_local] = ACTIONS(2504), - [anon_sym_const] = ACTIONS(2504), - [anon_sym_volatile] = ACTIONS(2504), - [anon_sym_restrict] = ACTIONS(2504), - [anon_sym__Atomic] = ACTIONS(2504), - [anon_sym_mutable] = ACTIONS(2504), - [anon_sym_constexpr] = ACTIONS(2504), - [anon_sym_QMARK] = ACTIONS(2506), - [anon_sym_STAR_EQ] = ACTIONS(2506), - [anon_sym_SLASH_EQ] = ACTIONS(2506), - [anon_sym_PERCENT_EQ] = ACTIONS(2506), - [anon_sym_PLUS_EQ] = ACTIONS(2506), - [anon_sym_DASH_EQ] = ACTIONS(2506), - [anon_sym_LT_LT_EQ] = ACTIONS(2506), - [anon_sym_GT_GT_EQ] = ACTIONS(2506), - [anon_sym_AMP_EQ] = ACTIONS(2506), - [anon_sym_CARET_EQ] = ACTIONS(2506), - [anon_sym_PIPE_EQ] = ACTIONS(2506), - [anon_sym_DASH_DASH] = ACTIONS(2506), - [anon_sym_PLUS_PLUS] = ACTIONS(2506), - [anon_sym_DOT] = ACTIONS(2504), - [anon_sym_DASH_GT] = ACTIONS(2506), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2504), - [anon_sym_template] = ACTIONS(2504), - [anon_sym_operator] = ACTIONS(2504), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2504), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2504), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2504), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2504), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2504), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2504), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2504), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2504), - [anon_sym_MOZ_COLD] = ACTIONS(2504), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2504), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2504), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2504), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2504), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2504), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2504), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2504), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2504), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2504), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2504), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2504), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2504), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2504), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2504), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2504), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2504), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2504), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2504), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2504), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2504), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_NONNULL] = ACTIONS(2504), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2504), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2504), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2504), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2504), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2504), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_NORETURN] = ACTIONS(2504), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2504), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2504), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2504), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2504), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2504), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2504), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2504), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2504), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2504), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2504), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2504), - [anon_sym_MOZ_RAII] = ACTIONS(2504), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2504), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2504), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2504), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2504), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2504), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2504), - }, - [814] = { - [sym_identifier] = ACTIONS(2508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2510), - [anon_sym_COMMA] = ACTIONS(2510), - [anon_sym_RPAREN] = ACTIONS(2510), - [anon_sym_LPAREN2] = ACTIONS(2510), - [anon_sym_TILDE] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2508), - [anon_sym_PLUS] = ACTIONS(2508), - [anon_sym_STAR] = ACTIONS(2508), - [anon_sym_SLASH] = ACTIONS(2508), - [anon_sym_PERCENT] = ACTIONS(2508), - [anon_sym_PIPE_PIPE] = ACTIONS(2510), - [anon_sym_AMP_AMP] = ACTIONS(2510), - [anon_sym_PIPE] = ACTIONS(2508), - [anon_sym_CARET] = ACTIONS(2508), - [anon_sym_AMP] = ACTIONS(2508), - [anon_sym_EQ_EQ] = ACTIONS(2510), - [anon_sym_BANG_EQ] = ACTIONS(2510), - [anon_sym_GT] = ACTIONS(2508), - [anon_sym_GT_EQ] = ACTIONS(2510), - [anon_sym_LT_EQ] = ACTIONS(2510), - [anon_sym_LT] = ACTIONS(2508), - [anon_sym_LT_LT] = ACTIONS(2508), - [anon_sym_GT_GT] = ACTIONS(2508), - [anon_sym_SEMI] = ACTIONS(2510), - [anon_sym_extern] = ACTIONS(2508), - [anon_sym___attribute__] = ACTIONS(2508), - [anon_sym_COLON_COLON] = ACTIONS(2510), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2510), - [anon_sym___declspec] = ACTIONS(2508), - [anon_sym___based] = ACTIONS(2508), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_RBRACE] = ACTIONS(2510), - [anon_sym_LBRACK] = ACTIONS(2508), - [anon_sym_EQ] = ACTIONS(2508), - [anon_sym_static] = ACTIONS(2508), - [anon_sym_register] = ACTIONS(2508), - [anon_sym_inline] = ACTIONS(2508), - [anon_sym_thread_local] = ACTIONS(2508), - [anon_sym_const] = ACTIONS(2508), - [anon_sym_volatile] = ACTIONS(2508), - [anon_sym_restrict] = ACTIONS(2508), - [anon_sym__Atomic] = ACTIONS(2508), - [anon_sym_mutable] = ACTIONS(2508), - [anon_sym_constexpr] = ACTIONS(2508), - [anon_sym_QMARK] = ACTIONS(2510), - [anon_sym_STAR_EQ] = ACTIONS(2510), - [anon_sym_SLASH_EQ] = ACTIONS(2510), - [anon_sym_PERCENT_EQ] = ACTIONS(2510), - [anon_sym_PLUS_EQ] = ACTIONS(2510), - [anon_sym_DASH_EQ] = ACTIONS(2510), - [anon_sym_LT_LT_EQ] = ACTIONS(2510), - [anon_sym_GT_GT_EQ] = ACTIONS(2510), - [anon_sym_AMP_EQ] = ACTIONS(2510), - [anon_sym_CARET_EQ] = ACTIONS(2510), - [anon_sym_PIPE_EQ] = ACTIONS(2510), - [anon_sym_DASH_DASH] = ACTIONS(2510), - [anon_sym_PLUS_PLUS] = ACTIONS(2510), - [anon_sym_DOT] = ACTIONS(2508), - [anon_sym_DASH_GT] = ACTIONS(2510), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2508), - [anon_sym_template] = ACTIONS(2508), - [anon_sym_operator] = ACTIONS(2508), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2508), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2508), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2508), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2508), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2508), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2508), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2508), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2508), - [anon_sym_MOZ_COLD] = ACTIONS(2508), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2508), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2508), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2508), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2508), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2508), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2508), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2508), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2508), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2508), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2508), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2508), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2508), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2508), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2508), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2508), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2508), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2508), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2508), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2508), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2508), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_NONNULL] = ACTIONS(2508), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2508), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2508), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2508), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2508), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2508), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_NORETURN] = ACTIONS(2508), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2508), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2508), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2508), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2508), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2508), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2508), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2508), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2508), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2508), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2508), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2508), - [anon_sym_MOZ_RAII] = ACTIONS(2508), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2508), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2508), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2508), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2508), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2508), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2508), - }, - [815] = { - [sym_template_argument_list] = STATE(1225), - [sym_identifier] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(2399), - [anon_sym_RPAREN] = ACTIONS(2399), - [anon_sym_LPAREN2] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2407), - [anon_sym_PLUS] = ACTIONS(2407), - [anon_sym_STAR] = ACTIONS(2409), - [anon_sym_SLASH] = ACTIONS(2407), - [anon_sym_PERCENT] = ACTIONS(2407), - [anon_sym_PIPE_PIPE] = ACTIONS(2399), - [anon_sym_AMP_AMP] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2407), - [anon_sym_CARET] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_EQ_EQ] = ACTIONS(2399), - [anon_sym_BANG_EQ] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2407), - [anon_sym_GT_EQ] = ACTIONS(2399), - [anon_sym_LT_EQ] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2415), - [anon_sym_LT_LT] = ACTIONS(2407), - [anon_sym_GT_GT] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2405), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_EQ] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [anon_sym_QMARK] = ACTIONS(2399), - [anon_sym_STAR_EQ] = ACTIONS(2433), - [anon_sym_SLASH_EQ] = ACTIONS(2433), - [anon_sym_PERCENT_EQ] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(2433), - [anon_sym_DASH_EQ] = ACTIONS(2433), - [anon_sym_LT_LT_EQ] = ACTIONS(2433), - [anon_sym_GT_GT_EQ] = ACTIONS(2433), - [anon_sym_AMP_EQ] = ACTIONS(2433), - [anon_sym_CARET_EQ] = ACTIONS(2433), - [anon_sym_PIPE_EQ] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DOT] = ACTIONS(2407), - [anon_sym_DASH_GT] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2397), - [anon_sym_MOZ_COLD] = ACTIONS(2397), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2397), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2397), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2397), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2397), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2397), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2397), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2397), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2397), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2397), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2397), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2397), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2397), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_RAII] = ACTIONS(2397), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2397), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2397), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2397), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2397), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2397), - }, - [816] = { - [sym_template_argument_list] = STATE(817), - [sym_identifier] = ACTIONS(2459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2461), - [anon_sym_COMMA] = ACTIONS(2461), - [anon_sym_LPAREN2] = ACTIONS(2463), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2468), - [anon_sym_PLUS] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2468), - [anon_sym_PERCENT] = ACTIONS(2468), - [anon_sym_PIPE_PIPE] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2463), - [anon_sym_PIPE] = ACTIONS(2468), - [anon_sym_CARET] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2470), - [anon_sym_EQ_EQ] = ACTIONS(2461), - [anon_sym_BANG_EQ] = ACTIONS(2461), - [anon_sym_GT] = ACTIONS(2468), - [anon_sym_GT_EQ] = ACTIONS(2461), - [anon_sym_LT_EQ] = ACTIONS(2461), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_LT_LT] = ACTIONS(2468), - [anon_sym_GT_GT] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2463), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2463), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2470), - [anon_sym_EQ] = ACTIONS(2468), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_QMARK] = ACTIONS(2461), - [anon_sym_STAR_EQ] = ACTIONS(2461), - [anon_sym_SLASH_EQ] = ACTIONS(2461), - [anon_sym_PERCENT_EQ] = ACTIONS(2461), - [anon_sym_PLUS_EQ] = ACTIONS(2461), - [anon_sym_DASH_EQ] = ACTIONS(2461), - [anon_sym_LT_LT_EQ] = ACTIONS(2461), - [anon_sym_GT_GT_EQ] = ACTIONS(2461), - [anon_sym_AMP_EQ] = ACTIONS(2461), - [anon_sym_CARET_EQ] = ACTIONS(2461), - [anon_sym_PIPE_EQ] = ACTIONS(2461), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_DOT] = ACTIONS(2468), - [anon_sym_DASH_GT] = ACTIONS(2461), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2459), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2459), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2459), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2459), - [anon_sym_MOZ_COLD] = ACTIONS(2459), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2459), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2459), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2459), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2459), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2459), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2459), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2459), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2459), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2459), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2459), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2459), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2459), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2459), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_NONNULL] = ACTIONS(2459), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2459), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2459), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2459), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2459), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2459), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2459), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2459), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2459), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2459), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2459), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2459), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2459), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2459), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2459), - [anon_sym_MOZ_RAII] = ACTIONS(2459), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2459), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2459), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2459), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2459), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2459), - }, - [817] = { - [sym_identifier] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2514), - [anon_sym_COMMA] = ACTIONS(2514), - [anon_sym_LPAREN2] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2521), - [anon_sym_STAR] = ACTIONS(2523), - [anon_sym_SLASH] = ACTIONS(2521), - [anon_sym_PERCENT] = ACTIONS(2521), - [anon_sym_PIPE_PIPE] = ACTIONS(2514), - [anon_sym_AMP_AMP] = ACTIONS(2516), - [anon_sym_PIPE] = ACTIONS(2521), - [anon_sym_CARET] = ACTIONS(2521), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_EQ_EQ] = ACTIONS(2514), - [anon_sym_BANG_EQ] = ACTIONS(2514), - [anon_sym_GT] = ACTIONS(2521), - [anon_sym_GT_EQ] = ACTIONS(2514), - [anon_sym_LT_EQ] = ACTIONS(2514), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_LT_LT] = ACTIONS(2521), - [anon_sym_GT_GT] = ACTIONS(2521), - [anon_sym_SEMI] = ACTIONS(2516), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym___attribute__] = ACTIONS(2512), - [anon_sym_COLON_COLON] = ACTIONS(2519), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2516), - [anon_sym___declspec] = ACTIONS(2512), - [anon_sym___based] = ACTIONS(2512), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_RBRACE] = ACTIONS(2514), - [anon_sym_LBRACK] = ACTIONS(2523), - [anon_sym_EQ] = ACTIONS(2521), - [anon_sym_static] = ACTIONS(2512), - [anon_sym_register] = ACTIONS(2512), - [anon_sym_inline] = ACTIONS(2512), - [anon_sym_thread_local] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [anon_sym_volatile] = ACTIONS(2512), - [anon_sym_restrict] = ACTIONS(2512), - [anon_sym__Atomic] = ACTIONS(2512), - [anon_sym_mutable] = ACTIONS(2512), - [anon_sym_constexpr] = ACTIONS(2512), - [anon_sym_QMARK] = ACTIONS(2514), - [anon_sym_STAR_EQ] = ACTIONS(2514), - [anon_sym_SLASH_EQ] = ACTIONS(2514), - [anon_sym_PERCENT_EQ] = ACTIONS(2514), - [anon_sym_PLUS_EQ] = ACTIONS(2514), - [anon_sym_DASH_EQ] = ACTIONS(2514), - [anon_sym_LT_LT_EQ] = ACTIONS(2514), - [anon_sym_GT_GT_EQ] = ACTIONS(2514), - [anon_sym_AMP_EQ] = ACTIONS(2514), - [anon_sym_CARET_EQ] = ACTIONS(2514), - [anon_sym_PIPE_EQ] = ACTIONS(2514), - [anon_sym_DASH_DASH] = ACTIONS(2514), - [anon_sym_PLUS_PLUS] = ACTIONS(2514), - [anon_sym_DOT] = ACTIONS(2521), - [anon_sym_DASH_GT] = ACTIONS(2514), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2512), - [anon_sym_template] = ACTIONS(2512), - [anon_sym_operator] = ACTIONS(2512), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2512), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2512), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2512), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2512), - [anon_sym_MOZ_COLD] = ACTIONS(2512), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2512), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2512), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2512), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2512), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2512), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2512), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2512), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2512), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2512), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2512), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2512), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2512), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2512), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_NONNULL] = ACTIONS(2512), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2512), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2512), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2512), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2512), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2512), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2512), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2512), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2512), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2512), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2512), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2512), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2512), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2512), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2512), - [anon_sym_MOZ_RAII] = ACTIONS(2512), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2512), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2512), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2512), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2512), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2512), - }, - [818] = { - [sym_template_argument_list] = STATE(1226), - [sym_identifier] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2412), - [anon_sym_COMMA] = ACTIONS(2412), - [anon_sym_RPAREN] = ACTIONS(2412), - [anon_sym_LPAREN2] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2407), - [anon_sym_PLUS] = ACTIONS(2407), - [anon_sym_STAR] = ACTIONS(2409), - [anon_sym_SLASH] = ACTIONS(2407), - [anon_sym_PERCENT] = ACTIONS(2407), - [anon_sym_PIPE_PIPE] = ACTIONS(2399), - [anon_sym_AMP_AMP] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2407), - [anon_sym_CARET] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_EQ_EQ] = ACTIONS(2399), - [anon_sym_BANG_EQ] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2407), - [anon_sym_GT_EQ] = ACTIONS(2399), - [anon_sym_LT_EQ] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2415), - [anon_sym_LT_LT] = ACTIONS(2407), - [anon_sym_GT_GT] = ACTIONS(2407), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2405), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_EQ] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [anon_sym_QMARK] = ACTIONS(2399), - [anon_sym_STAR_EQ] = ACTIONS(2433), - [anon_sym_SLASH_EQ] = ACTIONS(2433), - [anon_sym_PERCENT_EQ] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(2433), - [anon_sym_DASH_EQ] = ACTIONS(2433), - [anon_sym_LT_LT_EQ] = ACTIONS(2433), - [anon_sym_GT_GT_EQ] = ACTIONS(2433), - [anon_sym_AMP_EQ] = ACTIONS(2433), - [anon_sym_CARET_EQ] = ACTIONS(2433), - [anon_sym_PIPE_EQ] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DOT] = ACTIONS(2407), - [anon_sym_DASH_GT] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2397), - [anon_sym_MOZ_COLD] = ACTIONS(2397), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2397), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2397), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2397), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2397), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2397), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2397), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2397), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2397), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2397), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2397), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2397), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2397), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_RAII] = ACTIONS(2397), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2397), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2397), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2397), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2397), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2397), - }, - [819] = { - [sym_identifier] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2514), - [anon_sym_COMMA] = ACTIONS(2514), - [anon_sym_RPAREN] = ACTIONS(2514), - [anon_sym_LPAREN2] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2521), - [anon_sym_STAR] = ACTIONS(2523), - [anon_sym_SLASH] = ACTIONS(2521), - [anon_sym_PERCENT] = ACTIONS(2521), - [anon_sym_PIPE_PIPE] = ACTIONS(2514), - [anon_sym_AMP_AMP] = ACTIONS(2516), - [anon_sym_PIPE] = ACTIONS(2521), - [anon_sym_CARET] = ACTIONS(2521), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_EQ_EQ] = ACTIONS(2514), - [anon_sym_BANG_EQ] = ACTIONS(2514), - [anon_sym_GT] = ACTIONS(2521), - [anon_sym_GT_EQ] = ACTIONS(2514), - [anon_sym_LT_EQ] = ACTIONS(2514), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_LT_LT] = ACTIONS(2521), - [anon_sym_GT_GT] = ACTIONS(2521), - [anon_sym_SEMI] = ACTIONS(2514), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym___attribute__] = ACTIONS(2512), - [anon_sym_COLON_COLON] = ACTIONS(2519), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2519), - [anon_sym___declspec] = ACTIONS(2512), - [anon_sym___based] = ACTIONS(2512), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_LBRACK] = ACTIONS(2523), - [anon_sym_EQ] = ACTIONS(2521), - [anon_sym_static] = ACTIONS(2512), - [anon_sym_register] = ACTIONS(2512), - [anon_sym_inline] = ACTIONS(2512), - [anon_sym_thread_local] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [anon_sym_volatile] = ACTIONS(2512), - [anon_sym_restrict] = ACTIONS(2512), - [anon_sym__Atomic] = ACTIONS(2512), - [anon_sym_mutable] = ACTIONS(2512), - [anon_sym_constexpr] = ACTIONS(2512), - [anon_sym_QMARK] = ACTIONS(2514), - [anon_sym_STAR_EQ] = ACTIONS(2514), - [anon_sym_SLASH_EQ] = ACTIONS(2514), - [anon_sym_PERCENT_EQ] = ACTIONS(2514), - [anon_sym_PLUS_EQ] = ACTIONS(2514), - [anon_sym_DASH_EQ] = ACTIONS(2514), - [anon_sym_LT_LT_EQ] = ACTIONS(2514), - [anon_sym_GT_GT_EQ] = ACTIONS(2514), - [anon_sym_AMP_EQ] = ACTIONS(2514), - [anon_sym_CARET_EQ] = ACTIONS(2514), - [anon_sym_PIPE_EQ] = ACTIONS(2514), - [anon_sym_DASH_DASH] = ACTIONS(2514), - [anon_sym_PLUS_PLUS] = ACTIONS(2514), - [anon_sym_DOT] = ACTIONS(2521), - [anon_sym_DASH_GT] = ACTIONS(2514), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2512), - [anon_sym_template] = ACTIONS(2512), - [anon_sym_operator] = ACTIONS(2512), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2512), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2512), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2512), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2512), - [anon_sym_MOZ_COLD] = ACTIONS(2512), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2512), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2512), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2512), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2512), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2512), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2512), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2512), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2512), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2512), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2512), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2512), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2512), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2512), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_NONNULL] = ACTIONS(2512), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2512), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2512), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2512), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2512), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2512), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2512), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2512), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2512), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2512), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2512), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2512), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2512), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2512), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2512), - [anon_sym_MOZ_RAII] = ACTIONS(2512), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2512), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2512), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2512), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2512), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2512), - }, - [820] = { - [sym_template_argument_list] = STATE(822), - [sym_identifier] = ACTIONS(2459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2463), - [anon_sym_COMMA] = ACTIONS(2463), - [anon_sym_RPAREN] = ACTIONS(2463), - [anon_sym_LPAREN2] = ACTIONS(2463), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2468), - [anon_sym_PLUS] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2468), - [anon_sym_PERCENT] = ACTIONS(2468), - [anon_sym_PIPE_PIPE] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2463), - [anon_sym_PIPE] = ACTIONS(2468), - [anon_sym_CARET] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2470), - [anon_sym_EQ_EQ] = ACTIONS(2461), - [anon_sym_BANG_EQ] = ACTIONS(2461), - [anon_sym_GT] = ACTIONS(2468), - [anon_sym_GT_EQ] = ACTIONS(2461), - [anon_sym_LT_EQ] = ACTIONS(2461), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_LT_LT] = ACTIONS(2468), - [anon_sym_GT_GT] = ACTIONS(2468), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2466), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2470), - [anon_sym_EQ] = ACTIONS(2470), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_QMARK] = ACTIONS(2461), - [anon_sym_STAR_EQ] = ACTIONS(2461), - [anon_sym_SLASH_EQ] = ACTIONS(2461), - [anon_sym_PERCENT_EQ] = ACTIONS(2461), - [anon_sym_PLUS_EQ] = ACTIONS(2461), - [anon_sym_DASH_EQ] = ACTIONS(2461), - [anon_sym_LT_LT_EQ] = ACTIONS(2461), - [anon_sym_GT_GT_EQ] = ACTIONS(2461), - [anon_sym_AMP_EQ] = ACTIONS(2461), - [anon_sym_CARET_EQ] = ACTIONS(2461), - [anon_sym_PIPE_EQ] = ACTIONS(2461), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_DOT] = ACTIONS(2468), - [anon_sym_DASH_GT] = ACTIONS(2461), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2459), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2459), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2459), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2459), - [anon_sym_MOZ_COLD] = ACTIONS(2459), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2459), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2459), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2459), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2459), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2459), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2459), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2459), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2459), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2459), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2459), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2459), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2459), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2459), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_NONNULL] = ACTIONS(2459), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2459), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2459), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2459), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2459), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2459), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2459), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2459), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2459), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2459), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2459), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2459), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2459), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2459), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2459), - [anon_sym_MOZ_RAII] = ACTIONS(2459), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2459), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2459), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2459), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2459), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2459), - }, - [821] = { - [sym__declaration_modifiers] = STATE(1221), - [sym__declaration_specifiers] = STATE(2293), - [sym_attribute_specifier] = STATE(1221), - [sym_attribute_declaration] = STATE(1221), - [sym_ms_declspec_modifier] = STATE(1221), - [sym_storage_class_specifier] = STATE(1221), - [sym_type_qualifier] = STATE(1221), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_parameter_declaration] = STATE(4300), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1221), - [sym_dependent_type] = STATE(1358), - [sym_type_parameter_declaration] = STATE(4300), - [sym_variadic_type_parameter_declaration] = STATE(4300), - [sym_optional_type_parameter_declaration] = STATE(4300), - [sym_template_template_parameter_declaration] = STATE(4300), - [sym_optional_parameter_declaration] = STATE(4300), - [sym_variadic_parameter_declaration] = STATE(4300), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3908), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1221), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2375), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(1463), - [anon_sym_class] = ACTIONS(2526), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_union] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(2528), - [anon_sym_template] = ACTIONS(2530), - [anon_sym_GT2] = ACTIONS(2532), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [822] = { - [sym_identifier] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2516), - [anon_sym_COMMA] = ACTIONS(2516), - [anon_sym_RPAREN] = ACTIONS(2516), - [anon_sym_LPAREN2] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2521), - [anon_sym_STAR] = ACTIONS(2523), - [anon_sym_SLASH] = ACTIONS(2521), - [anon_sym_PERCENT] = ACTIONS(2521), - [anon_sym_PIPE_PIPE] = ACTIONS(2514), - [anon_sym_AMP_AMP] = ACTIONS(2516), - [anon_sym_PIPE] = ACTIONS(2521), - [anon_sym_CARET] = ACTIONS(2521), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_EQ_EQ] = ACTIONS(2514), - [anon_sym_BANG_EQ] = ACTIONS(2514), - [anon_sym_GT] = ACTIONS(2521), - [anon_sym_GT_EQ] = ACTIONS(2514), - [anon_sym_LT_EQ] = ACTIONS(2514), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_LT_LT] = ACTIONS(2521), - [anon_sym_GT_GT] = ACTIONS(2521), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym___attribute__] = ACTIONS(2512), - [anon_sym_COLON_COLON] = ACTIONS(2519), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2519), - [anon_sym___declspec] = ACTIONS(2512), - [anon_sym___based] = ACTIONS(2512), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_LBRACK] = ACTIONS(2523), - [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_static] = ACTIONS(2512), - [anon_sym_register] = ACTIONS(2512), - [anon_sym_inline] = ACTIONS(2512), - [anon_sym_thread_local] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [anon_sym_volatile] = ACTIONS(2512), - [anon_sym_restrict] = ACTIONS(2512), - [anon_sym__Atomic] = ACTIONS(2512), - [anon_sym_mutable] = ACTIONS(2512), - [anon_sym_constexpr] = ACTIONS(2512), - [anon_sym_QMARK] = ACTIONS(2514), - [anon_sym_STAR_EQ] = ACTIONS(2514), - [anon_sym_SLASH_EQ] = ACTIONS(2514), - [anon_sym_PERCENT_EQ] = ACTIONS(2514), - [anon_sym_PLUS_EQ] = ACTIONS(2514), - [anon_sym_DASH_EQ] = ACTIONS(2514), - [anon_sym_LT_LT_EQ] = ACTIONS(2514), - [anon_sym_GT_GT_EQ] = ACTIONS(2514), - [anon_sym_AMP_EQ] = ACTIONS(2514), - [anon_sym_CARET_EQ] = ACTIONS(2514), - [anon_sym_PIPE_EQ] = ACTIONS(2514), - [anon_sym_DASH_DASH] = ACTIONS(2514), - [anon_sym_PLUS_PLUS] = ACTIONS(2514), - [anon_sym_DOT] = ACTIONS(2521), - [anon_sym_DASH_GT] = ACTIONS(2514), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2512), - [anon_sym_template] = ACTIONS(2512), - [anon_sym_operator] = ACTIONS(2512), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2512), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2512), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2512), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2512), - [anon_sym_MOZ_COLD] = ACTIONS(2512), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2512), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2512), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2512), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2512), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2512), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2512), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2512), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2512), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2512), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2512), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2512), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2512), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2512), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_NONNULL] = ACTIONS(2512), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2512), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2512), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2512), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2512), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2512), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2512), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2512), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2512), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2512), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2512), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2512), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2512), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2512), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2512), - [anon_sym_MOZ_RAII] = ACTIONS(2512), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2512), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2512), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2512), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2512), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2512), - }, - [823] = { - [sym__declaration_modifiers] = STATE(1221), - [sym__declaration_specifiers] = STATE(2293), - [sym_attribute_specifier] = STATE(1221), - [sym_attribute_declaration] = STATE(1221), - [sym_ms_declspec_modifier] = STATE(1221), - [sym_storage_class_specifier] = STATE(1221), - [sym_type_qualifier] = STATE(1221), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_parameter_declaration] = STATE(4635), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1221), - [sym_dependent_type] = STATE(1358), - [sym_type_parameter_declaration] = STATE(4635), - [sym_variadic_type_parameter_declaration] = STATE(4635), - [sym_optional_type_parameter_declaration] = STATE(4635), - [sym_template_template_parameter_declaration] = STATE(4635), - [sym_optional_parameter_declaration] = STATE(4635), - [sym_variadic_parameter_declaration] = STATE(4635), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3908), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1221), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2375), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(1463), - [anon_sym_class] = ACTIONS(2526), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_union] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(2528), - [anon_sym_template] = ACTIONS(2530), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [824] = { - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3880), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3720), - [sym_array_declarator] = STATE(3720), - [sym_type_qualifier] = STATE(2532), - [sym__type_specifier] = STATE(3254), - [sym_sized_type_specifier] = STATE(2408), - [sym_enum_specifier] = STATE(2408), - [sym_struct_specifier] = STATE(2408), - [sym_union_specifier] = STATE(2408), - [sym__expression] = STATE(2923), - [sym_comma_expression] = STATE(5009), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_type_descriptor] = STATE(5011), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(2408), - [sym_class_specifier] = STATE(2408), - [sym__class_name] = STATE(4792), - [sym_dependent_type] = STATE(2408), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2703), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3524), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(3462), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(2532), - [aux_sym_sized_type_specifier_repeat1] = STATE(2027), - [sym_identifier] = ACTIONS(2534), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2536), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2538), - [anon_sym_unsigned] = ACTIONS(2538), - [anon_sym_long] = ACTIONS(2538), - [anon_sym_short] = ACTIONS(2538), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2542), - [anon_sym_class] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2546), - [anon_sym_union] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2550), - [sym_auto] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2554), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(2367), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [825] = { - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3880), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3720), - [sym_array_declarator] = STATE(3720), - [sym_type_qualifier] = STATE(2532), - [sym__type_specifier] = STATE(3254), - [sym_sized_type_specifier] = STATE(2408), - [sym_enum_specifier] = STATE(2408), - [sym_struct_specifier] = STATE(2408), - [sym_union_specifier] = STATE(2408), - [sym__expression] = STATE(2923), - [sym_comma_expression] = STATE(5009), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_type_descriptor] = STATE(4921), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(2408), - [sym_class_specifier] = STATE(2408), - [sym__class_name] = STATE(4792), - [sym_dependent_type] = STATE(2408), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2703), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3524), - [sym_qualified_identifier] = STATE(2230), - [sym_qualified_type_identifier] = STATE(3462), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(2532), - [aux_sym_sized_type_specifier_repeat1] = STATE(2027), - [sym_identifier] = ACTIONS(2534), - [anon_sym_LPAREN2] = ACTIONS(19), + [STATE(264)] = { + [sym_identifier] = ACTIONS(2440), + [aux_sym_preproc_include_token1] = ACTIONS(2440), + [aux_sym_preproc_def_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2440), + [aux_sym_preproc_else_token1] = ACTIONS(2440), + [aux_sym_preproc_elif_token1] = ACTIONS(2440), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2440), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2440), + [sym_preproc_directive] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_typedef] = ACTIONS(2440), + [anon_sym_virtual] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym___attribute__] = ACTIONS(2440), + [anon_sym___attribute] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(2442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2442), + [anon_sym___declspec] = ACTIONS(2440), + [anon_sym___based] = ACTIONS(2440), + [anon_sym___cdecl] = ACTIONS(2440), + [anon_sym___clrcall] = ACTIONS(2440), + [anon_sym___stdcall] = ACTIONS(2440), + [anon_sym___fastcall] = ACTIONS(2440), + [anon_sym___thiscall] = ACTIONS(2440), + [anon_sym___vectorcall] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_signed] = ACTIONS(2440), + [anon_sym_unsigned] = ACTIONS(2440), + [anon_sym_long] = ACTIONS(2440), + [anon_sym_short] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_register] = ACTIONS(2440), + [anon_sym_inline] = ACTIONS(2440), + [anon_sym___inline] = ACTIONS(2440), + [anon_sym___inline__] = ACTIONS(2440), + [anon_sym___forceinline] = ACTIONS(2440), + [anon_sym_thread_local] = ACTIONS(2440), + [anon_sym___thread] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_constexpr] = ACTIONS(2440), + [anon_sym_volatile] = ACTIONS(2440), + [anon_sym_restrict] = ACTIONS(2440), + [anon_sym___restrict__] = ACTIONS(2440), + [anon_sym__Atomic] = ACTIONS(2440), + [anon_sym__Noreturn] = ACTIONS(2440), + [anon_sym_noreturn] = ACTIONS(2440), + [anon_sym__Nonnull] = ACTIONS(2440), + [anon_sym_mutable] = ACTIONS(2440), + [anon_sym_constinit] = ACTIONS(2440), + [anon_sym_consteval] = ACTIONS(2440), + [anon_sym_alignas] = ACTIONS(2440), + [anon_sym__Alignas] = ACTIONS(2440), + [sym_primitive_type] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_struct] = ACTIONS(2440), + [anon_sym_union] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_case] = ACTIONS(2440), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_goto] = ACTIONS(2440), + [anon_sym___try] = ACTIONS(2440), + [anon_sym___leave] = ACTIONS(2440), + [anon_sym_not] = ACTIONS(2440), + [anon_sym_compl] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2442), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_sizeof] = ACTIONS(2440), + [anon_sym___alignof__] = ACTIONS(2440), + [anon_sym___alignof] = ACTIONS(2440), + [anon_sym__alignof] = ACTIONS(2440), + [anon_sym_alignof] = ACTIONS(2440), + [anon_sym__Alignof] = ACTIONS(2440), + [anon_sym_offsetof] = ACTIONS(2440), + [anon_sym__Generic] = ACTIONS(2440), + [anon_sym_asm] = ACTIONS(2440), + [anon_sym___asm__] = ACTIONS(2440), + [anon_sym___asm] = ACTIONS(2440), + [sym_number_literal] = ACTIONS(2442), + [anon_sym_L_SQUOTE] = ACTIONS(2442), + [anon_sym_u_SQUOTE] = ACTIONS(2442), + [anon_sym_U_SQUOTE] = ACTIONS(2442), + [anon_sym_u8_SQUOTE] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2442), + [anon_sym_L_DQUOTE] = ACTIONS(2442), + [anon_sym_u_DQUOTE] = ACTIONS(2442), + [anon_sym_U_DQUOTE] = ACTIONS(2442), + [anon_sym_u8_DQUOTE] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2442), + [sym_true] = ACTIONS(2440), + [sym_false] = ACTIONS(2440), + [anon_sym_NULL] = ACTIONS(2440), + [anon_sym_nullptr] = ACTIONS(2440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2440), + [anon_sym_decltype] = ACTIONS(2440), + [anon_sym_explicit] = ACTIONS(2440), + [anon_sym_typename] = ACTIONS(2440), + [anon_sym_template] = ACTIONS(2440), + [anon_sym_operator] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_delete] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_static_assert] = ACTIONS(2440), + [anon_sym_concept] = ACTIONS(2440), + [anon_sym_co_return] = ACTIONS(2440), + [anon_sym_co_yield] = ACTIONS(2440), + [anon_sym_R_DQUOTE] = ACTIONS(2442), + [anon_sym_LR_DQUOTE] = ACTIONS(2442), + [anon_sym_uR_DQUOTE] = ACTIONS(2442), + [anon_sym_UR_DQUOTE] = ACTIONS(2442), + [anon_sym_u8R_DQUOTE] = ACTIONS(2442), + [anon_sym_co_await] = ACTIONS(2440), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_requires] = ACTIONS(2440), + [sym_this] = ACTIONS(2440), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_FORWARD] = ACTIONS(2440), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2440), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_PS_GET] = ACTIONS(2440), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2440), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2440), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2440), + [anon_sym_MOZ_COLD] = ACTIONS(2440), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2440), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2440), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2440), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2440), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2440), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2440), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2440), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2440), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2440), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2440), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2440), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2440), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_RAII] = ACTIONS(2440), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2440), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2440), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2440), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2440), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2440), + }, + [STATE(265)] = { + [sym_identifier] = ACTIONS(2440), + [aux_sym_preproc_include_token1] = ACTIONS(2440), + [aux_sym_preproc_def_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2440), + [aux_sym_preproc_else_token1] = ACTIONS(2440), + [aux_sym_preproc_elif_token1] = ACTIONS(2440), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2440), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2440), + [sym_preproc_directive] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_typedef] = ACTIONS(2440), + [anon_sym_virtual] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym___attribute__] = ACTIONS(2440), + [anon_sym___attribute] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(2442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2442), + [anon_sym___declspec] = ACTIONS(2440), + [anon_sym___based] = ACTIONS(2440), + [anon_sym___cdecl] = ACTIONS(2440), + [anon_sym___clrcall] = ACTIONS(2440), + [anon_sym___stdcall] = ACTIONS(2440), + [anon_sym___fastcall] = ACTIONS(2440), + [anon_sym___thiscall] = ACTIONS(2440), + [anon_sym___vectorcall] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_signed] = ACTIONS(2440), + [anon_sym_unsigned] = ACTIONS(2440), + [anon_sym_long] = ACTIONS(2440), + [anon_sym_short] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_register] = ACTIONS(2440), + [anon_sym_inline] = ACTIONS(2440), + [anon_sym___inline] = ACTIONS(2440), + [anon_sym___inline__] = ACTIONS(2440), + [anon_sym___forceinline] = ACTIONS(2440), + [anon_sym_thread_local] = ACTIONS(2440), + [anon_sym___thread] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_constexpr] = ACTIONS(2440), + [anon_sym_volatile] = ACTIONS(2440), + [anon_sym_restrict] = ACTIONS(2440), + [anon_sym___restrict__] = ACTIONS(2440), + [anon_sym__Atomic] = ACTIONS(2440), + [anon_sym__Noreturn] = ACTIONS(2440), + [anon_sym_noreturn] = ACTIONS(2440), + [anon_sym__Nonnull] = ACTIONS(2440), + [anon_sym_mutable] = ACTIONS(2440), + [anon_sym_constinit] = ACTIONS(2440), + [anon_sym_consteval] = ACTIONS(2440), + [anon_sym_alignas] = ACTIONS(2440), + [anon_sym__Alignas] = ACTIONS(2440), + [sym_primitive_type] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_struct] = ACTIONS(2440), + [anon_sym_union] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_case] = ACTIONS(2440), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_goto] = ACTIONS(2440), + [anon_sym___try] = ACTIONS(2440), + [anon_sym___leave] = ACTIONS(2440), + [anon_sym_not] = ACTIONS(2440), + [anon_sym_compl] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2442), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_sizeof] = ACTIONS(2440), + [anon_sym___alignof__] = ACTIONS(2440), + [anon_sym___alignof] = ACTIONS(2440), + [anon_sym__alignof] = ACTIONS(2440), + [anon_sym_alignof] = ACTIONS(2440), + [anon_sym__Alignof] = ACTIONS(2440), + [anon_sym_offsetof] = ACTIONS(2440), + [anon_sym__Generic] = ACTIONS(2440), + [anon_sym_asm] = ACTIONS(2440), + [anon_sym___asm__] = ACTIONS(2440), + [anon_sym___asm] = ACTIONS(2440), + [sym_number_literal] = ACTIONS(2442), + [anon_sym_L_SQUOTE] = ACTIONS(2442), + [anon_sym_u_SQUOTE] = ACTIONS(2442), + [anon_sym_U_SQUOTE] = ACTIONS(2442), + [anon_sym_u8_SQUOTE] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2442), + [anon_sym_L_DQUOTE] = ACTIONS(2442), + [anon_sym_u_DQUOTE] = ACTIONS(2442), + [anon_sym_U_DQUOTE] = ACTIONS(2442), + [anon_sym_u8_DQUOTE] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2442), + [sym_true] = ACTIONS(2440), + [sym_false] = ACTIONS(2440), + [anon_sym_NULL] = ACTIONS(2440), + [anon_sym_nullptr] = ACTIONS(2440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2440), + [anon_sym_decltype] = ACTIONS(2440), + [anon_sym_explicit] = ACTIONS(2440), + [anon_sym_typename] = ACTIONS(2440), + [anon_sym_template] = ACTIONS(2440), + [anon_sym_operator] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_delete] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_static_assert] = ACTIONS(2440), + [anon_sym_concept] = ACTIONS(2440), + [anon_sym_co_return] = ACTIONS(2440), + [anon_sym_co_yield] = ACTIONS(2440), + [anon_sym_R_DQUOTE] = ACTIONS(2442), + [anon_sym_LR_DQUOTE] = ACTIONS(2442), + [anon_sym_uR_DQUOTE] = ACTIONS(2442), + [anon_sym_UR_DQUOTE] = ACTIONS(2442), + [anon_sym_u8R_DQUOTE] = ACTIONS(2442), + [anon_sym_co_await] = ACTIONS(2440), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_requires] = ACTIONS(2440), + [sym_this] = ACTIONS(2440), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_FORWARD] = ACTIONS(2440), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2440), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_PS_GET] = ACTIONS(2440), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2440), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2440), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2440), + [anon_sym_MOZ_COLD] = ACTIONS(2440), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2440), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2440), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2440), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2440), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2440), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2440), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2440), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2440), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2440), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2440), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2440), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2440), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_RAII] = ACTIONS(2440), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2440), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2440), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2440), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2440), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2440), + }, + [STATE(266)] = { + [sym_identifier] = ACTIONS(2444), + [aux_sym_preproc_include_token1] = ACTIONS(2444), + [aux_sym_preproc_def_token1] = ACTIONS(2444), + [aux_sym_preproc_if_token1] = ACTIONS(2444), + [aux_sym_preproc_if_token2] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [aux_sym_preproc_else_token1] = ACTIONS(2444), + [aux_sym_preproc_elif_token1] = ACTIONS(2444), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2444), + [sym_preproc_directive] = ACTIONS(2444), + [anon_sym_LPAREN2] = ACTIONS(2446), + [anon_sym_BANG] = ACTIONS(2446), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2444), + [anon_sym_PLUS] = ACTIONS(2444), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_AMP_AMP] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_SEMI] = ACTIONS(2446), + [anon_sym___extension__] = ACTIONS(2444), + [anon_sym_typedef] = ACTIONS(2444), + [anon_sym_virtual] = ACTIONS(2444), + [anon_sym_extern] = ACTIONS(2444), + [anon_sym___attribute__] = ACTIONS(2444), + [anon_sym___attribute] = ACTIONS(2444), + [anon_sym_COLON_COLON] = ACTIONS(2446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2446), + [anon_sym___declspec] = ACTIONS(2444), + [anon_sym___based] = ACTIONS(2444), + [anon_sym___cdecl] = ACTIONS(2444), + [anon_sym___clrcall] = ACTIONS(2444), + [anon_sym___stdcall] = ACTIONS(2444), + [anon_sym___fastcall] = ACTIONS(2444), + [anon_sym___thiscall] = ACTIONS(2444), + [anon_sym___vectorcall] = ACTIONS(2444), + [anon_sym_LBRACE] = ACTIONS(2446), + [anon_sym_signed] = ACTIONS(2444), + [anon_sym_unsigned] = ACTIONS(2444), + [anon_sym_long] = ACTIONS(2444), + [anon_sym_short] = ACTIONS(2444), + [anon_sym_LBRACK] = ACTIONS(2444), + [anon_sym_static] = ACTIONS(2444), + [anon_sym_register] = ACTIONS(2444), + [anon_sym_inline] = ACTIONS(2444), + [anon_sym___inline] = ACTIONS(2444), + [anon_sym___inline__] = ACTIONS(2444), + [anon_sym___forceinline] = ACTIONS(2444), + [anon_sym_thread_local] = ACTIONS(2444), + [anon_sym___thread] = ACTIONS(2444), + [anon_sym_const] = ACTIONS(2444), + [anon_sym_constexpr] = ACTIONS(2444), + [anon_sym_volatile] = ACTIONS(2444), + [anon_sym_restrict] = ACTIONS(2444), + [anon_sym___restrict__] = ACTIONS(2444), + [anon_sym__Atomic] = ACTIONS(2444), + [anon_sym__Noreturn] = ACTIONS(2444), + [anon_sym_noreturn] = ACTIONS(2444), + [anon_sym__Nonnull] = ACTIONS(2444), + [anon_sym_mutable] = ACTIONS(2444), + [anon_sym_constinit] = ACTIONS(2444), + [anon_sym_consteval] = ACTIONS(2444), + [anon_sym_alignas] = ACTIONS(2444), + [anon_sym__Alignas] = ACTIONS(2444), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_enum] = ACTIONS(2444), + [anon_sym_class] = ACTIONS(2444), + [anon_sym_struct] = ACTIONS(2444), + [anon_sym_union] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2444), + [anon_sym_switch] = ACTIONS(2444), + [anon_sym_case] = ACTIONS(2444), + [anon_sym_default] = ACTIONS(2444), + [anon_sym_while] = ACTIONS(2444), + [anon_sym_do] = ACTIONS(2444), + [anon_sym_for] = ACTIONS(2444), + [anon_sym_return] = ACTIONS(2444), + [anon_sym_break] = ACTIONS(2444), + [anon_sym_continue] = ACTIONS(2444), + [anon_sym_goto] = ACTIONS(2444), + [anon_sym___try] = ACTIONS(2444), + [anon_sym___leave] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(2444), + [anon_sym_compl] = ACTIONS(2444), + [anon_sym_DASH_DASH] = ACTIONS(2446), + [anon_sym_PLUS_PLUS] = ACTIONS(2446), + [anon_sym_sizeof] = ACTIONS(2444), + [anon_sym___alignof__] = ACTIONS(2444), + [anon_sym___alignof] = ACTIONS(2444), + [anon_sym__alignof] = ACTIONS(2444), + [anon_sym_alignof] = ACTIONS(2444), + [anon_sym__Alignof] = ACTIONS(2444), + [anon_sym_offsetof] = ACTIONS(2444), + [anon_sym__Generic] = ACTIONS(2444), + [anon_sym_asm] = ACTIONS(2444), + [anon_sym___asm__] = ACTIONS(2444), + [anon_sym___asm] = ACTIONS(2444), + [sym_number_literal] = ACTIONS(2446), + [anon_sym_L_SQUOTE] = ACTIONS(2446), + [anon_sym_u_SQUOTE] = ACTIONS(2446), + [anon_sym_U_SQUOTE] = ACTIONS(2446), + [anon_sym_u8_SQUOTE] = ACTIONS(2446), + [anon_sym_SQUOTE] = ACTIONS(2446), + [anon_sym_L_DQUOTE] = ACTIONS(2446), + [anon_sym_u_DQUOTE] = ACTIONS(2446), + [anon_sym_U_DQUOTE] = ACTIONS(2446), + [anon_sym_u8_DQUOTE] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [sym_true] = ACTIONS(2444), + [sym_false] = ACTIONS(2444), + [anon_sym_NULL] = ACTIONS(2444), + [anon_sym_nullptr] = ACTIONS(2444), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2444), + [anon_sym_decltype] = ACTIONS(2444), + [anon_sym_explicit] = ACTIONS(2444), + [anon_sym_typename] = ACTIONS(2444), + [anon_sym_template] = ACTIONS(2444), + [anon_sym_operator] = ACTIONS(2444), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_delete] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2444), + [anon_sym_namespace] = ACTIONS(2444), + [anon_sym_using] = ACTIONS(2444), + [anon_sym_static_assert] = ACTIONS(2444), + [anon_sym_concept] = ACTIONS(2444), + [anon_sym_co_return] = ACTIONS(2444), + [anon_sym_co_yield] = ACTIONS(2444), + [anon_sym_R_DQUOTE] = ACTIONS(2446), + [anon_sym_LR_DQUOTE] = ACTIONS(2446), + [anon_sym_uR_DQUOTE] = ACTIONS(2446), + [anon_sym_UR_DQUOTE] = ACTIONS(2446), + [anon_sym_u8R_DQUOTE] = ACTIONS(2446), + [anon_sym_co_await] = ACTIONS(2444), + [anon_sym_new] = ACTIONS(2444), + [anon_sym_requires] = ACTIONS(2444), + [sym_this] = ACTIONS(2444), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2444), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_FORWARD] = ACTIONS(2444), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2444), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2444), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2444), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2444), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_PS_GET] = ACTIONS(2444), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2444), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2444), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2444), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2444), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2444), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2444), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2444), + [anon_sym_MOZ_COLD] = ACTIONS(2444), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2444), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2444), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2444), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2444), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2444), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2444), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2444), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2444), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2444), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2444), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2444), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2444), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2444), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_NONNULL] = ACTIONS(2444), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2444), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2444), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2444), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2444), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2444), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2444), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2444), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2444), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2444), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2444), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2444), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2444), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2444), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2444), + [anon_sym_MOZ_RAII] = ACTIONS(2444), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2444), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2444), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2444), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2444), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2444), + }, + [STATE(267)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2536), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2538), - [anon_sym_unsigned] = ACTIONS(2538), - [anon_sym_long] = ACTIONS(2538), - [anon_sym_short] = ACTIONS(2538), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2542), - [anon_sym_class] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2546), - [anon_sym_union] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2550), - [sym_auto] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2554), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(2367), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [826] = { - [sym__declaration_modifiers] = STATE(1221), - [sym__declaration_specifiers] = STATE(2306), - [sym_attribute_specifier] = STATE(1221), - [sym_attribute_declaration] = STATE(1221), - [sym_ms_declspec_modifier] = STATE(1221), - [sym_storage_class_specifier] = STATE(1221), - [sym_type_qualifier] = STATE(1221), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_parameter_declaration] = STATE(4310), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1221), - [sym_dependent_type] = STATE(1358), - [sym_optional_parameter_declaration] = STATE(4310), - [sym_variadic_parameter_declaration] = STATE(4310), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3908), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1221), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2351), - [anon_sym_RPAREN] = ACTIONS(2353), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(1463), - [anon_sym_class] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_union] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [827] = { - [sym_identifier] = ACTIONS(2504), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2506), - [anon_sym_COMMA] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_LPAREN2] = ACTIONS(2506), - [anon_sym_TILDE] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_SLASH] = ACTIONS(2504), - [anon_sym_PERCENT] = ACTIONS(2506), - [anon_sym_PIPE_PIPE] = ACTIONS(2506), - [anon_sym_AMP_AMP] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2504), - [anon_sym_CARET] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2504), - [anon_sym_EQ_EQ] = ACTIONS(2506), - [anon_sym_BANG_EQ] = ACTIONS(2506), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2506), - [anon_sym_LT_EQ] = ACTIONS(2506), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_LT_LT] = ACTIONS(2506), - [anon_sym_GT_GT] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_extern] = ACTIONS(2504), - [anon_sym___attribute__] = ACTIONS(2504), - [anon_sym_COLON_COLON] = ACTIONS(2506), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2506), - [anon_sym___declspec] = ACTIONS(2504), - [anon_sym___based] = ACTIONS(2504), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_RBRACE] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2504), - [anon_sym_EQ] = ACTIONS(2504), - [anon_sym_static] = ACTIONS(2504), - [anon_sym_register] = ACTIONS(2504), - [anon_sym_inline] = ACTIONS(2504), - [anon_sym_thread_local] = ACTIONS(2504), - [anon_sym_const] = ACTIONS(2504), - [anon_sym_volatile] = ACTIONS(2504), - [anon_sym_restrict] = ACTIONS(2504), - [anon_sym__Atomic] = ACTIONS(2504), - [anon_sym_mutable] = ACTIONS(2504), - [anon_sym_constexpr] = ACTIONS(2504), - [anon_sym_COLON] = ACTIONS(2504), - [anon_sym_QMARK] = ACTIONS(2506), - [anon_sym_DASH_DASH] = ACTIONS(2506), - [anon_sym_PLUS_PLUS] = ACTIONS(2506), - [anon_sym_DOT] = ACTIONS(2504), - [anon_sym_DASH_GT] = ACTIONS(2506), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2504), - [anon_sym_override] = ACTIONS(2504), - [anon_sym_virtual] = ACTIONS(2504), - [anon_sym_template] = ACTIONS(2504), - [anon_sym_operator] = ACTIONS(2504), - [anon_sym_noexcept] = ACTIONS(2504), - [anon_sym_throw] = ACTIONS(2504), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2504), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2504), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2504), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2504), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2504), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2504), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2504), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2504), - [anon_sym_MOZ_COLD] = ACTIONS(2504), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2504), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2504), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2504), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2504), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2504), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2504), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2504), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2504), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2504), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2504), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2504), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2504), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2504), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2504), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2504), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2504), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2504), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2504), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2504), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2504), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_NONNULL] = ACTIONS(2504), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2504), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2504), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2504), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2504), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2504), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_NORETURN] = ACTIONS(2504), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2504), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2504), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2504), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2504), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2504), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2504), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2504), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2504), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2504), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2504), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2504), - [anon_sym_MOZ_RAII] = ACTIONS(2504), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2504), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2504), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2504), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2504), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2504), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2504), - }, - [828] = { - [sym__declaration_modifiers] = STATE(1221), - [sym__declaration_specifiers] = STATE(2306), - [sym_attribute_specifier] = STATE(1221), - [sym_attribute_declaration] = STATE(1221), - [sym_ms_declspec_modifier] = STATE(1221), - [sym_storage_class_specifier] = STATE(1221), - [sym_type_qualifier] = STATE(1221), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_parameter_declaration] = STATE(4277), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1221), - [sym_dependent_type] = STATE(1358), - [sym_optional_parameter_declaration] = STATE(4277), - [sym_variadic_parameter_declaration] = STATE(4277), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3908), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1221), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1473), - [anon_sym_RPAREN] = ACTIONS(2391), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(1463), - [anon_sym_class] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_union] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [829] = { - [sym__declaration_modifiers] = STATE(1221), - [sym__declaration_specifiers] = STATE(2306), - [sym_attribute_specifier] = STATE(1221), - [sym_attribute_declaration] = STATE(1221), - [sym_ms_declspec_modifier] = STATE(1221), - [sym_storage_class_specifier] = STATE(1221), - [sym_type_qualifier] = STATE(1221), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_parameter_declaration] = STATE(4367), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1221), - [sym_dependent_type] = STATE(1358), - [sym_optional_parameter_declaration] = STATE(4367), - [sym_variadic_parameter_declaration] = STATE(4367), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3908), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1221), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), - [anon_sym_RPAREN] = ACTIONS(2389), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(1463), - [anon_sym_class] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_union] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [830] = { - [sym_identifier] = ACTIONS(2508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2510), - [anon_sym_COMMA] = ACTIONS(2510), - [anon_sym_RPAREN] = ACTIONS(2510), - [anon_sym_LPAREN2] = ACTIONS(2510), - [anon_sym_TILDE] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2508), - [anon_sym_PLUS] = ACTIONS(2508), - [anon_sym_STAR] = ACTIONS(2510), - [anon_sym_SLASH] = ACTIONS(2508), - [anon_sym_PERCENT] = ACTIONS(2510), - [anon_sym_PIPE_PIPE] = ACTIONS(2510), - [anon_sym_AMP_AMP] = ACTIONS(2510), - [anon_sym_PIPE] = ACTIONS(2508), - [anon_sym_CARET] = ACTIONS(2510), - [anon_sym_AMP] = ACTIONS(2508), - [anon_sym_EQ_EQ] = ACTIONS(2510), - [anon_sym_BANG_EQ] = ACTIONS(2510), - [anon_sym_GT] = ACTIONS(2508), - [anon_sym_GT_EQ] = ACTIONS(2510), - [anon_sym_LT_EQ] = ACTIONS(2510), - [anon_sym_LT] = ACTIONS(2508), - [anon_sym_LT_LT] = ACTIONS(2510), - [anon_sym_GT_GT] = ACTIONS(2510), - [anon_sym_SEMI] = ACTIONS(2510), - [anon_sym_extern] = ACTIONS(2508), - [anon_sym___attribute__] = ACTIONS(2508), - [anon_sym_COLON_COLON] = ACTIONS(2510), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2510), - [anon_sym___declspec] = ACTIONS(2508), - [anon_sym___based] = ACTIONS(2508), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_RBRACE] = ACTIONS(2510), - [anon_sym_LBRACK] = ACTIONS(2508), - [anon_sym_EQ] = ACTIONS(2508), - [anon_sym_static] = ACTIONS(2508), - [anon_sym_register] = ACTIONS(2508), - [anon_sym_inline] = ACTIONS(2508), - [anon_sym_thread_local] = ACTIONS(2508), - [anon_sym_const] = ACTIONS(2508), - [anon_sym_volatile] = ACTIONS(2508), - [anon_sym_restrict] = ACTIONS(2508), - [anon_sym__Atomic] = ACTIONS(2508), - [anon_sym_mutable] = ACTIONS(2508), - [anon_sym_constexpr] = ACTIONS(2508), - [anon_sym_COLON] = ACTIONS(2508), - [anon_sym_QMARK] = ACTIONS(2510), - [anon_sym_DASH_DASH] = ACTIONS(2510), - [anon_sym_PLUS_PLUS] = ACTIONS(2510), - [anon_sym_DOT] = ACTIONS(2508), - [anon_sym_DASH_GT] = ACTIONS(2510), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2508), - [anon_sym_override] = ACTIONS(2508), - [anon_sym_virtual] = ACTIONS(2508), - [anon_sym_template] = ACTIONS(2508), - [anon_sym_operator] = ACTIONS(2508), - [anon_sym_noexcept] = ACTIONS(2508), - [anon_sym_throw] = ACTIONS(2508), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2508), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2508), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2508), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2508), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2508), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2508), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2508), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2508), - [anon_sym_MOZ_COLD] = ACTIONS(2508), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2508), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2508), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2508), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2508), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2508), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2508), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2508), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2508), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2508), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2508), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2508), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2508), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2508), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2508), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2508), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2508), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2508), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2508), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2508), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2508), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_NONNULL] = ACTIONS(2508), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2508), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2508), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2508), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2508), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2508), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_NORETURN] = ACTIONS(2508), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2508), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2508), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2508), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2508), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2508), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2508), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2508), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2508), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2508), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2508), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2508), - [anon_sym_MOZ_RAII] = ACTIONS(2508), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2508), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2508), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2508), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2508), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2508), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2508), - }, - [831] = { - [sym_identifier] = ACTIONS(2476), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [anon_sym_COMMA] = ACTIONS(2478), - [anon_sym_RPAREN] = ACTIONS(2478), - [anon_sym_LPAREN2] = ACTIONS(2478), - [anon_sym_TILDE] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(2478), - [anon_sym_SLASH] = ACTIONS(2476), - [anon_sym_PERCENT] = ACTIONS(2478), - [anon_sym_PIPE_PIPE] = ACTIONS(2478), - [anon_sym_AMP_AMP] = ACTIONS(2478), - [anon_sym_PIPE] = ACTIONS(2476), - [anon_sym_CARET] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2476), - [anon_sym_EQ_EQ] = ACTIONS(2478), - [anon_sym_BANG_EQ] = ACTIONS(2478), - [anon_sym_GT] = ACTIONS(2476), - [anon_sym_GT_EQ] = ACTIONS(2478), - [anon_sym_LT_EQ] = ACTIONS(2478), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_LT_LT] = ACTIONS(2478), - [anon_sym_GT_GT] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2476), - [anon_sym___attribute__] = ACTIONS(2476), - [anon_sym_COLON_COLON] = ACTIONS(2478), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), - [anon_sym___declspec] = ACTIONS(2476), - [anon_sym___based] = ACTIONS(2476), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2476), - [anon_sym_EQ] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2476), - [anon_sym_register] = ACTIONS(2476), - [anon_sym_inline] = ACTIONS(2476), - [anon_sym_thread_local] = ACTIONS(2476), - [anon_sym_const] = ACTIONS(2476), - [anon_sym_volatile] = ACTIONS(2476), - [anon_sym_restrict] = ACTIONS(2476), - [anon_sym__Atomic] = ACTIONS(2476), - [anon_sym_mutable] = ACTIONS(2476), - [anon_sym_constexpr] = ACTIONS(2476), - [anon_sym_COLON] = ACTIONS(2476), - [anon_sym_QMARK] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2478), - [anon_sym_PLUS_PLUS] = ACTIONS(2478), - [anon_sym_DOT] = ACTIONS(2476), - [anon_sym_DASH_GT] = ACTIONS(2478), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2476), - [anon_sym_override] = ACTIONS(2476), - [anon_sym_virtual] = ACTIONS(2476), - [anon_sym_template] = ACTIONS(2476), - [anon_sym_operator] = ACTIONS(2476), - [anon_sym_noexcept] = ACTIONS(2476), - [anon_sym_throw] = ACTIONS(2476), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2476), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2476), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2476), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2476), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2476), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2476), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2476), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2476), - [anon_sym_MOZ_COLD] = ACTIONS(2476), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2476), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2476), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2476), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2476), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2476), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2476), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2476), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2476), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2476), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2476), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2476), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2476), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2476), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2476), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2476), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2476), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2476), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2476), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2476), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2476), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_NONNULL] = ACTIONS(2476), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2476), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2476), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2476), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2476), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2476), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_NORETURN] = ACTIONS(2476), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2476), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2476), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2476), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2476), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2476), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2476), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2476), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2476), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2476), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2476), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2476), - [anon_sym_MOZ_RAII] = ACTIONS(2476), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2476), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2476), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2476), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2476), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2476), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2476), - }, - [832] = { - [sym_identifier] = ACTIONS(2494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2496), - [anon_sym_COMMA] = ACTIONS(2496), - [anon_sym_RPAREN] = ACTIONS(2496), - [anon_sym_LPAREN2] = ACTIONS(2496), - [anon_sym_TILDE] = ACTIONS(2496), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_PLUS] = ACTIONS(2494), - [anon_sym_STAR] = ACTIONS(2496), - [anon_sym_SLASH] = ACTIONS(2494), - [anon_sym_PERCENT] = ACTIONS(2496), - [anon_sym_PIPE_PIPE] = ACTIONS(2496), - [anon_sym_AMP_AMP] = ACTIONS(2496), - [anon_sym_PIPE] = ACTIONS(2494), - [anon_sym_CARET] = ACTIONS(2496), - [anon_sym_AMP] = ACTIONS(2494), - [anon_sym_EQ_EQ] = ACTIONS(2496), - [anon_sym_BANG_EQ] = ACTIONS(2496), - [anon_sym_GT] = ACTIONS(2494), - [anon_sym_GT_EQ] = ACTIONS(2496), - [anon_sym_LT_EQ] = ACTIONS(2496), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_LT_LT] = ACTIONS(2496), - [anon_sym_GT_GT] = ACTIONS(2496), - [anon_sym_SEMI] = ACTIONS(2496), - [anon_sym_extern] = ACTIONS(2494), - [anon_sym___attribute__] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2496), - [anon_sym___declspec] = ACTIONS(2494), - [anon_sym___based] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2496), - [anon_sym_RBRACE] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_static] = ACTIONS(2494), - [anon_sym_register] = ACTIONS(2494), - [anon_sym_inline] = ACTIONS(2494), - [anon_sym_thread_local] = ACTIONS(2494), - [anon_sym_const] = ACTIONS(2494), - [anon_sym_volatile] = ACTIONS(2494), - [anon_sym_restrict] = ACTIONS(2494), - [anon_sym__Atomic] = ACTIONS(2494), - [anon_sym_mutable] = ACTIONS(2494), - [anon_sym_constexpr] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2494), - [anon_sym_QMARK] = ACTIONS(2496), - [anon_sym_DASH_DASH] = ACTIONS(2496), - [anon_sym_PLUS_PLUS] = ACTIONS(2496), - [anon_sym_DOT] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2496), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2494), - [anon_sym_override] = ACTIONS(2494), - [anon_sym_virtual] = ACTIONS(2494), - [anon_sym_template] = ACTIONS(2494), - [anon_sym_operator] = ACTIONS(2494), - [anon_sym_noexcept] = ACTIONS(2494), - [anon_sym_throw] = ACTIONS(2494), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2494), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2494), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2494), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2494), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2494), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2494), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2494), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2494), - [anon_sym_MOZ_COLD] = ACTIONS(2494), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2494), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2494), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2494), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2494), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2494), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2494), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2494), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2494), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2494), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2494), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2494), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2494), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2494), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2494), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2494), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2494), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2494), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2494), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2494), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2494), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_NONNULL] = ACTIONS(2494), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2494), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2494), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2494), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2494), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2494), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_NORETURN] = ACTIONS(2494), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2494), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2494), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2494), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2494), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2494), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2494), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2494), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2494), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2494), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2494), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2494), - [anon_sym_MOZ_RAII] = ACTIONS(2494), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2494), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2494), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2494), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2494), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2494), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2494), - }, - [833] = { - [sym_identifier] = ACTIONS(2447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2449), - [anon_sym_COMMA] = ACTIONS(2449), - [anon_sym_RPAREN] = ACTIONS(2449), - [anon_sym_LPAREN2] = ACTIONS(2449), - [anon_sym_TILDE] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2447), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE] = ACTIONS(2447), - [anon_sym_CARET] = ACTIONS(2449), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_LT_LT] = ACTIONS(2449), - [anon_sym_GT_GT] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_extern] = ACTIONS(2447), - [anon_sym___attribute__] = ACTIONS(2447), - [anon_sym_COLON_COLON] = ACTIONS(2449), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2449), - [anon_sym___declspec] = ACTIONS(2447), - [anon_sym___based] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_EQ] = ACTIONS(2447), - [anon_sym_static] = ACTIONS(2447), - [anon_sym_register] = ACTIONS(2447), - [anon_sym_inline] = ACTIONS(2447), - [anon_sym_thread_local] = ACTIONS(2447), - [anon_sym_const] = ACTIONS(2447), - [anon_sym_volatile] = ACTIONS(2447), - [anon_sym_restrict] = ACTIONS(2447), - [anon_sym__Atomic] = ACTIONS(2447), - [anon_sym_mutable] = ACTIONS(2447), - [anon_sym_constexpr] = ACTIONS(2447), - [anon_sym_COLON] = ACTIONS(2447), - [anon_sym_QMARK] = ACTIONS(2449), - [anon_sym_DASH_DASH] = ACTIONS(2449), - [anon_sym_PLUS_PLUS] = ACTIONS(2449), - [anon_sym_DOT] = ACTIONS(2447), - [anon_sym_DASH_GT] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2447), - [anon_sym_override] = ACTIONS(2447), - [anon_sym_virtual] = ACTIONS(2447), - [anon_sym_template] = ACTIONS(2447), - [anon_sym_operator] = ACTIONS(2447), - [anon_sym_noexcept] = ACTIONS(2447), - [anon_sym_throw] = ACTIONS(2447), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2447), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2447), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2447), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2447), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2447), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2447), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2447), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2447), - [anon_sym_MOZ_COLD] = ACTIONS(2447), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2447), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2447), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2447), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2447), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2447), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2447), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2447), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2447), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2447), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2447), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2447), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2447), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2447), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2447), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2447), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2447), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2447), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2447), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2447), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2447), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_NONNULL] = ACTIONS(2447), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2447), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2447), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2447), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2447), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2447), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_NORETURN] = ACTIONS(2447), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2447), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2447), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2447), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2447), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2447), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2447), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2447), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2447), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2447), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2447), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2447), - [anon_sym_MOZ_RAII] = ACTIONS(2447), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2447), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2447), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2447), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2447), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2447), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2447), - }, - [834] = { - [sym_identifier] = ACTIONS(2451), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_COMMA] = ACTIONS(2453), - [anon_sym_RPAREN] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2453), - [anon_sym_TILDE] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_SLASH] = ACTIONS(2451), - [anon_sym_PERCENT] = ACTIONS(2453), - [anon_sym_PIPE_PIPE] = ACTIONS(2453), - [anon_sym_AMP_AMP] = ACTIONS(2453), - [anon_sym_PIPE] = ACTIONS(2451), - [anon_sym_CARET] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(2451), - [anon_sym_EQ_EQ] = ACTIONS(2453), - [anon_sym_BANG_EQ] = ACTIONS(2453), - [anon_sym_GT] = ACTIONS(2451), - [anon_sym_GT_EQ] = ACTIONS(2453), - [anon_sym_LT_EQ] = ACTIONS(2453), - [anon_sym_LT] = ACTIONS(2451), - [anon_sym_LT_LT] = ACTIONS(2453), - [anon_sym_GT_GT] = ACTIONS(2453), - [anon_sym_SEMI] = ACTIONS(2453), - [anon_sym_extern] = ACTIONS(2451), - [anon_sym___attribute__] = ACTIONS(2451), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2453), - [anon_sym___declspec] = ACTIONS(2451), - [anon_sym___based] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(2451), - [anon_sym_EQ] = ACTIONS(2451), - [anon_sym_static] = ACTIONS(2451), - [anon_sym_register] = ACTIONS(2451), - [anon_sym_inline] = ACTIONS(2451), - [anon_sym_thread_local] = ACTIONS(2451), - [anon_sym_const] = ACTIONS(2451), - [anon_sym_volatile] = ACTIONS(2451), - [anon_sym_restrict] = ACTIONS(2451), - [anon_sym__Atomic] = ACTIONS(2451), - [anon_sym_mutable] = ACTIONS(2451), - [anon_sym_constexpr] = ACTIONS(2451), - [anon_sym_COLON] = ACTIONS(2451), - [anon_sym_QMARK] = ACTIONS(2453), - [anon_sym_DASH_DASH] = ACTIONS(2453), - [anon_sym_PLUS_PLUS] = ACTIONS(2453), - [anon_sym_DOT] = ACTIONS(2451), - [anon_sym_DASH_GT] = ACTIONS(2453), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2451), - [anon_sym_override] = ACTIONS(2451), - [anon_sym_virtual] = ACTIONS(2451), - [anon_sym_template] = ACTIONS(2451), - [anon_sym_operator] = ACTIONS(2451), - [anon_sym_noexcept] = ACTIONS(2451), - [anon_sym_throw] = ACTIONS(2451), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2451), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2451), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2451), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2451), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2451), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2451), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2451), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2451), - [anon_sym_MOZ_COLD] = ACTIONS(2451), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2451), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2451), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2451), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2451), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2451), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2451), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2451), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2451), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2451), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2451), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2451), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2451), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2451), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2451), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2451), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2451), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2451), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2451), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2451), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2451), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_NONNULL] = ACTIONS(2451), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2451), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2451), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2451), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2451), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2451), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_NORETURN] = ACTIONS(2451), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2451), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2451), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2451), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2451), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2451), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2451), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2451), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2451), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2451), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2451), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2451), - [anon_sym_MOZ_RAII] = ACTIONS(2451), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2451), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2451), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2451), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2451), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2451), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2451), - }, - [835] = { - [sym_identifier] = ACTIONS(2488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2490), - [anon_sym_COMMA] = ACTIONS(2490), - [anon_sym_RPAREN] = ACTIONS(2490), - [anon_sym_LPAREN2] = ACTIONS(2490), - [anon_sym_TILDE] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2488), - [anon_sym_PLUS] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_SLASH] = ACTIONS(2488), - [anon_sym_PERCENT] = ACTIONS(2490), - [anon_sym_PIPE_PIPE] = ACTIONS(2490), - [anon_sym_AMP_AMP] = ACTIONS(2490), - [anon_sym_PIPE] = ACTIONS(2488), - [anon_sym_CARET] = ACTIONS(2490), - [anon_sym_AMP] = ACTIONS(2488), - [anon_sym_EQ_EQ] = ACTIONS(2490), - [anon_sym_BANG_EQ] = ACTIONS(2490), - [anon_sym_GT] = ACTIONS(2488), - [anon_sym_GT_EQ] = ACTIONS(2490), - [anon_sym_LT_EQ] = ACTIONS(2490), - [anon_sym_LT] = ACTIONS(2488), - [anon_sym_LT_LT] = ACTIONS(2490), - [anon_sym_GT_GT] = ACTIONS(2490), - [anon_sym_SEMI] = ACTIONS(2490), - [anon_sym_extern] = ACTIONS(2488), - [anon_sym___attribute__] = ACTIONS(2488), - [anon_sym_COLON_COLON] = ACTIONS(2490), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2490), - [anon_sym___declspec] = ACTIONS(2488), - [anon_sym___based] = ACTIONS(2488), - [anon_sym_LBRACE] = ACTIONS(2490), - [anon_sym_RBRACE] = ACTIONS(2490), - [anon_sym_LBRACK] = ACTIONS(2488), - [anon_sym_EQ] = ACTIONS(2488), - [anon_sym_static] = ACTIONS(2488), - [anon_sym_register] = ACTIONS(2488), - [anon_sym_inline] = ACTIONS(2488), - [anon_sym_thread_local] = ACTIONS(2488), - [anon_sym_const] = ACTIONS(2488), - [anon_sym_volatile] = ACTIONS(2488), - [anon_sym_restrict] = ACTIONS(2488), - [anon_sym__Atomic] = ACTIONS(2488), - [anon_sym_mutable] = ACTIONS(2488), - [anon_sym_constexpr] = ACTIONS(2488), - [anon_sym_COLON] = ACTIONS(2488), - [anon_sym_QMARK] = ACTIONS(2490), - [anon_sym_DASH_DASH] = ACTIONS(2490), - [anon_sym_PLUS_PLUS] = ACTIONS(2490), - [anon_sym_DOT] = ACTIONS(2488), - [anon_sym_DASH_GT] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1898), + [anon_sym_typedef] = ACTIONS(2448), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1905), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2488), - [anon_sym_override] = ACTIONS(2488), - [anon_sym_virtual] = ACTIONS(2488), - [anon_sym_template] = ACTIONS(2488), - [anon_sym_operator] = ACTIONS(2488), - [anon_sym_noexcept] = ACTIONS(2488), - [anon_sym_throw] = ACTIONS(2488), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2488), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2488), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2488), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2488), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2488), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2488), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2488), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2488), - [anon_sym_MOZ_COLD] = ACTIONS(2488), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2488), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2488), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2488), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2488), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2488), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2488), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2488), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2488), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2488), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2488), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2488), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2488), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2488), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2488), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2488), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2488), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2488), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2488), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2488), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2488), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2488), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2488), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2488), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2488), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2488), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2488), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2488), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2488), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2488), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2488), - [anon_sym_MOZ_NONNULL] = ACTIONS(2488), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2488), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2488), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2488), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2488), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2488), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2488), - [anon_sym_MOZ_NORETURN] = ACTIONS(2488), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2488), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2488), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2488), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2488), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2488), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2488), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2488), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2488), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2488), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2488), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2488), - [anon_sym_MOZ_RAII] = ACTIONS(2488), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2488), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2488), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2488), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2488), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2488), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2488), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2488), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2488), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2488), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2488), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1914), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1917), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), }, - [836] = { - [sym__declaration_modifiers] = STATE(1221), - [sym__declaration_specifiers] = STATE(2306), - [sym_attribute_specifier] = STATE(1221), - [sym_attribute_declaration] = STATE(1221), - [sym_ms_declspec_modifier] = STATE(1221), - [sym_storage_class_specifier] = STATE(1221), - [sym_type_qualifier] = STATE(1221), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_parameter_declaration] = STATE(4630), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1221), - [sym_dependent_type] = STATE(1358), - [sym_optional_parameter_declaration] = STATE(4630), - [sym_variadic_parameter_declaration] = STATE(4630), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3908), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1221), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2556), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(1463), - [anon_sym_class] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_union] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [837] = { - [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_def_token1] = ACTIONS(1529), - [anon_sym_COMMA] = ACTIONS(1613), - [aux_sym_preproc_if_token1] = ACTIONS(1529), - [aux_sym_preproc_if_token2] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), - [aux_sym_preproc_else_token1] = ACTIONS(1529), - [aux_sym_preproc_elif_token1] = ACTIONS(1529), - [sym_preproc_directive] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym___attribute__] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1531), - [anon_sym___declspec] = ACTIONS(1529), - [anon_sym___based] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [anon_sym_thread_local] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym__Atomic] = ACTIONS(1529), - [anon_sym_mutable] = ACTIONS(1529), - [anon_sym_constexpr] = ACTIONS(1529), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_class] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1529), - [anon_sym_virtual] = ACTIONS(1529), - [anon_sym_explicit] = ACTIONS(1529), - [anon_sym_public] = ACTIONS(1529), - [anon_sym_private] = ACTIONS(1529), - [anon_sym_protected] = ACTIONS(1529), - [sym_auto] = ACTIONS(1529), - [anon_sym_typename] = ACTIONS(1529), - [anon_sym_template] = ACTIONS(1529), - [anon_sym_operator] = ACTIONS(1529), - [anon_sym_friend] = ACTIONS(1529), - [anon_sym_using] = ACTIONS(1529), - [anon_sym_static_assert] = ACTIONS(1529), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1529), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1529), - [anon_sym_MOZ_COLD] = ACTIONS(1529), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1529), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1529), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1529), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1529), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1529), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1529), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1529), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1529), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1529), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1529), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1529), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1529), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_RAII] = ACTIONS(1529), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1529), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1529), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1529), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1529), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1529), - }, - [838] = { - [sym__declaration_modifiers] = STATE(1318), - [sym_attribute_specifier] = STATE(1318), - [sym_attribute_declaration] = STATE(1318), - [sym_ms_declspec_modifier] = STATE(1318), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3652), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1318), - [sym_type_qualifier] = STATE(1318), - [sym_virtual_function_specifier] = STATE(1318), - [sym_explicit_function_specifier] = STATE(1318), - [sym_operator_cast] = STATE(4003), - [sym__constructor_specifiers] = STATE(1318), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(3720), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3466), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_operator_cast_identifier] = STATE(4003), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1466), - [aux_sym_operator_cast_definition_repeat1] = STATE(1318), - [sym_identifier] = ACTIONS(2558), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2564), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [839] = { - [sym__declaration_modifiers] = STATE(1318), - [sym_attribute_specifier] = STATE(1318), - [sym_attribute_declaration] = STATE(1318), - [sym_ms_declspec_modifier] = STATE(1318), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3698), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1318), - [sym_type_qualifier] = STATE(1318), - [sym_virtual_function_specifier] = STATE(1318), - [sym_explicit_function_specifier] = STATE(1318), - [sym_operator_cast] = STATE(4178), - [sym__constructor_specifiers] = STATE(1318), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(3720), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3466), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_operator_cast_identifier] = STATE(4178), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1466), - [aux_sym_operator_cast_definition_repeat1] = STATE(1318), - [sym_identifier] = ACTIONS(2558), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2564), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [840] = { - [sym__declaration_modifiers] = STATE(1318), - [sym_attribute_specifier] = STATE(1318), - [sym_attribute_declaration] = STATE(1318), - [sym_ms_declspec_modifier] = STATE(1318), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3626), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1318), - [sym_type_qualifier] = STATE(1318), - [sym_virtual_function_specifier] = STATE(1318), - [sym_explicit_function_specifier] = STATE(1318), - [sym_operator_cast] = STATE(4103), - [sym__constructor_specifiers] = STATE(1318), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(3720), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3466), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_operator_cast_identifier] = STATE(4103), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1466), - [aux_sym_operator_cast_definition_repeat1] = STATE(1318), - [sym_identifier] = ACTIONS(2558), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2564), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [841] = { - [sym__declaration_modifiers] = STATE(1318), - [sym_attribute_specifier] = STATE(1318), - [sym_attribute_declaration] = STATE(1318), - [sym_ms_declspec_modifier] = STATE(1318), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3642), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1318), - [sym_type_qualifier] = STATE(1318), - [sym_virtual_function_specifier] = STATE(1318), - [sym_explicit_function_specifier] = STATE(1318), - [sym_operator_cast] = STATE(4125), - [sym__constructor_specifiers] = STATE(1318), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(3720), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3466), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_operator_cast_identifier] = STATE(4125), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1466), - [aux_sym_operator_cast_definition_repeat1] = STATE(1318), - [sym_identifier] = ACTIONS(2558), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2564), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [842] = { - [sym__declaration_modifiers] = STATE(1318), - [sym_attribute_specifier] = STATE(1318), - [sym_attribute_declaration] = STATE(1318), - [sym_ms_declspec_modifier] = STATE(1318), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3629), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1318), - [sym_type_qualifier] = STATE(1318), - [sym_virtual_function_specifier] = STATE(1318), - [sym_explicit_function_specifier] = STATE(1318), - [sym_operator_cast] = STATE(4107), - [sym__constructor_specifiers] = STATE(1318), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(3720), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3466), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_operator_cast_identifier] = STATE(4107), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1466), - [aux_sym_operator_cast_definition_repeat1] = STATE(1318), - [sym_identifier] = ACTIONS(2558), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2564), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [843] = { - [sym__declaration_modifiers] = STATE(1318), - [sym_attribute_specifier] = STATE(1318), - [sym_attribute_declaration] = STATE(1318), - [sym_ms_declspec_modifier] = STATE(1318), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3710), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1318), - [sym_type_qualifier] = STATE(1318), - [sym_virtual_function_specifier] = STATE(1318), - [sym_explicit_function_specifier] = STATE(1318), - [sym_operator_cast] = STATE(4107), - [sym__constructor_specifiers] = STATE(1318), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(3720), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3466), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_operator_cast_identifier] = STATE(4107), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1466), - [aux_sym_operator_cast_definition_repeat1] = STATE(1318), - [sym_identifier] = ACTIONS(2558), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2564), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [844] = { - [sym__declaration_modifiers] = STATE(1318), - [sym_attribute_specifier] = STATE(1318), - [sym_attribute_declaration] = STATE(1318), - [sym_ms_declspec_modifier] = STATE(1318), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3674), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1318), - [sym_type_qualifier] = STATE(1318), - [sym_virtual_function_specifier] = STATE(1318), - [sym_explicit_function_specifier] = STATE(1318), - [sym_operator_cast] = STATE(4003), - [sym__constructor_specifiers] = STATE(1318), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(3720), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3466), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_operator_cast_identifier] = STATE(4003), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1466), - [aux_sym_operator_cast_definition_repeat1] = STATE(1318), - [sym_identifier] = ACTIONS(2558), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2564), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [845] = { - [sym__declaration_modifiers] = STATE(1318), - [sym_attribute_specifier] = STATE(1318), - [sym_attribute_declaration] = STATE(1318), - [sym_ms_declspec_modifier] = STATE(1318), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3687), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1318), - [sym_type_qualifier] = STATE(1318), - [sym_virtual_function_specifier] = STATE(1318), - [sym_explicit_function_specifier] = STATE(1318), - [sym_operator_cast] = STATE(4034), - [sym__constructor_specifiers] = STATE(1318), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(3720), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3466), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_operator_cast_identifier] = STATE(4034), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1466), - [aux_sym_operator_cast_definition_repeat1] = STATE(1318), - [sym_identifier] = ACTIONS(2558), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2564), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [846] = { - [sym__declaration_modifiers] = STATE(1318), - [sym_attribute_specifier] = STATE(1318), - [sym_attribute_declaration] = STATE(1318), - [sym_ms_declspec_modifier] = STATE(1318), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3655), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1318), - [sym_type_qualifier] = STATE(1318), - [sym_virtual_function_specifier] = STATE(1318), - [sym_explicit_function_specifier] = STATE(1318), - [sym_operator_cast] = STATE(4006), - [sym__constructor_specifiers] = STATE(1318), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(3720), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3466), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_operator_cast_identifier] = STATE(4006), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1466), - [aux_sym_operator_cast_definition_repeat1] = STATE(1318), - [sym_identifier] = ACTIONS(2558), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2564), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [847] = { - [sym__declaration_modifiers] = STATE(1318), - [sym_attribute_specifier] = STATE(1318), - [sym_attribute_declaration] = STATE(1318), - [sym_ms_declspec_modifier] = STATE(1318), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3638), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1318), - [sym_type_qualifier] = STATE(1318), - [sym_virtual_function_specifier] = STATE(1318), - [sym_explicit_function_specifier] = STATE(1318), - [sym_operator_cast] = STATE(4178), - [sym__constructor_specifiers] = STATE(1318), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(3720), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3466), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_operator_cast_identifier] = STATE(4178), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1466), - [aux_sym_operator_cast_definition_repeat1] = STATE(1318), - [sym_identifier] = ACTIONS(2558), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2564), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [848] = { - [sym__declaration_modifiers] = STATE(1318), - [sym_attribute_specifier] = STATE(1318), - [sym_attribute_declaration] = STATE(1318), - [sym_ms_declspec_modifier] = STATE(1318), - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3967), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3616), - [sym_array_declarator] = STATE(3720), - [sym_storage_class_specifier] = STATE(1318), - [sym_type_qualifier] = STATE(1318), - [sym_virtual_function_specifier] = STATE(1318), - [sym_explicit_function_specifier] = STATE(1318), - [sym_operator_cast] = STATE(4034), - [sym__constructor_specifiers] = STATE(1318), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(3720), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3466), - [sym_qualified_identifier] = STATE(3720), - [sym_qualified_operator_cast_identifier] = STATE(4034), - [sym_operator_name] = STATE(3720), - [sym_macro_annotation] = STATE(1466), - [aux_sym_operator_cast_definition_repeat1] = STATE(1318), - [sym_identifier] = ACTIONS(2558), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2564), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_explicit] = ACTIONS(109), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [849] = { - [sym_attribute_declaration] = STATE(1041), - [sym_compound_statement] = STATE(316), - [sym_attributed_statement] = STATE(316), - [sym_labeled_statement] = STATE(316), - [sym_expression_statement] = STATE(316), - [sym_if_statement] = STATE(316), - [sym_switch_statement] = STATE(316), - [sym_case_statement] = STATE(316), - [sym_while_statement] = STATE(316), - [sym_do_statement] = STATE(316), - [sym_for_statement] = STATE(316), - [sym_return_statement] = STATE(316), - [sym_break_statement] = STATE(316), - [sym_continue_statement] = STATE(316), - [sym_goto_statement] = STATE(316), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(316), - [sym_co_return_statement] = STATE(316), - [sym_co_yield_statement] = STATE(316), - [sym_throw_statement] = STATE(316), - [sym_try_statement] = STATE(316), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [850] = { - [sym_attribute_declaration] = STATE(882), - [sym_compound_statement] = STATE(114), - [sym_attributed_statement] = STATE(155), - [sym_labeled_statement] = STATE(158), - [sym_expression_statement] = STATE(162), - [sym_if_statement] = STATE(164), - [sym_switch_statement] = STATE(166), - [sym_case_statement] = STATE(167), - [sym_while_statement] = STATE(168), - [sym_do_statement] = STATE(172), - [sym_for_statement] = STATE(173), - [sym_return_statement] = STATE(175), - [sym_break_statement] = STATE(128), - [sym_continue_statement] = STATE(192), - [sym_goto_statement] = STATE(191), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(190), - [sym_co_return_statement] = STATE(185), - [sym_co_yield_statement] = STATE(170), - [sym_throw_statement] = STATE(169), - [sym_try_statement] = STATE(165), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [851] = { - [sym_identifier] = ACTIONS(2582), - [aux_sym_preproc_def_token1] = ACTIONS(2582), - [aux_sym_preproc_if_token1] = ACTIONS(2582), - [aux_sym_preproc_if_token2] = ACTIONS(2582), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2582), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2582), - [aux_sym_preproc_else_token1] = ACTIONS(2582), - [aux_sym_preproc_elif_token1] = ACTIONS(2582), - [sym_preproc_directive] = ACTIONS(2582), - [anon_sym_LPAREN2] = ACTIONS(2584), - [anon_sym_TILDE] = ACTIONS(2584), - [anon_sym_STAR] = ACTIONS(2584), - [anon_sym_AMP_AMP] = ACTIONS(2584), - [anon_sym_AMP] = ACTIONS(2582), - [anon_sym_typedef] = ACTIONS(2582), - [anon_sym_extern] = ACTIONS(2582), - [anon_sym___attribute__] = ACTIONS(2582), - [anon_sym_COLON_COLON] = ACTIONS(2584), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2584), - [anon_sym___declspec] = ACTIONS(2582), - [anon_sym___based] = ACTIONS(2582), - [anon_sym_LBRACK] = ACTIONS(2582), - [anon_sym_static] = ACTIONS(2582), - [anon_sym_register] = ACTIONS(2582), - [anon_sym_inline] = ACTIONS(2582), - [anon_sym_thread_local] = ACTIONS(2582), - [anon_sym_const] = ACTIONS(2582), - [anon_sym_volatile] = ACTIONS(2582), - [anon_sym_restrict] = ACTIONS(2582), - [anon_sym__Atomic] = ACTIONS(2582), - [anon_sym_mutable] = ACTIONS(2582), - [anon_sym_constexpr] = ACTIONS(2582), - [anon_sym_signed] = ACTIONS(2582), - [anon_sym_unsigned] = ACTIONS(2582), - [anon_sym_long] = ACTIONS(2582), - [anon_sym_short] = ACTIONS(2582), - [sym_primitive_type] = ACTIONS(2582), - [anon_sym_enum] = ACTIONS(2582), - [anon_sym_class] = ACTIONS(2582), - [anon_sym_struct] = ACTIONS(2582), - [anon_sym_union] = ACTIONS(2582), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_virtual] = ACTIONS(2582), - [anon_sym_explicit] = ACTIONS(2582), - [anon_sym_public] = ACTIONS(2582), - [anon_sym_private] = ACTIONS(2582), - [anon_sym_protected] = ACTIONS(2582), - [sym_auto] = ACTIONS(2582), - [anon_sym_typename] = ACTIONS(2582), - [anon_sym_template] = ACTIONS(2582), - [anon_sym_operator] = ACTIONS(2582), - [anon_sym_friend] = ACTIONS(2582), - [anon_sym_using] = ACTIONS(2582), - [anon_sym_static_assert] = ACTIONS(2582), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2582), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2582), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2582), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2582), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2582), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2582), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2582), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2582), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2582), - [anon_sym_MOZ_COLD] = ACTIONS(2582), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2582), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2582), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2582), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2582), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2582), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2582), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2582), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2582), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2582), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2582), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2582), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2582), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2582), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2582), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2582), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2582), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2582), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2582), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2582), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2582), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_NONNULL] = ACTIONS(2582), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2582), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2582), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2582), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2582), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2582), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_NORETURN] = ACTIONS(2582), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2582), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2582), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2582), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2582), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2582), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2582), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2582), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2582), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2582), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2582), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2582), - [anon_sym_MOZ_RAII] = ACTIONS(2582), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2582), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2582), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2582), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2582), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2582), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2582), - }, - [852] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(4470), - [sym_attributed_statement] = STATE(4470), - [sym_labeled_statement] = STATE(4470), - [sym_expression_statement] = STATE(4470), - [sym_if_statement] = STATE(4470), - [sym_switch_statement] = STATE(4470), - [sym_case_statement] = STATE(4470), - [sym_while_statement] = STATE(4470), - [sym_do_statement] = STATE(4470), - [sym_for_statement] = STATE(4470), - [sym_return_statement] = STATE(4470), - [sym_break_statement] = STATE(4470), - [sym_continue_statement] = STATE(4470), - [sym_goto_statement] = STATE(4470), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4470), - [sym_co_return_statement] = STATE(4470), - [sym_co_yield_statement] = STATE(4470), - [sym_throw_statement] = STATE(4470), - [sym_try_statement] = STATE(4470), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [853] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(4481), - [sym_attributed_statement] = STATE(4481), - [sym_labeled_statement] = STATE(4481), - [sym_expression_statement] = STATE(4481), - [sym_if_statement] = STATE(4481), - [sym_switch_statement] = STATE(4481), - [sym_case_statement] = STATE(4481), - [sym_while_statement] = STATE(4481), - [sym_do_statement] = STATE(4481), - [sym_for_statement] = STATE(4481), - [sym_return_statement] = STATE(4481), - [sym_break_statement] = STATE(4481), - [sym_continue_statement] = STATE(4481), - [sym_goto_statement] = STATE(4481), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4481), - [sym_co_return_statement] = STATE(4481), - [sym_co_yield_statement] = STATE(4481), - [sym_throw_statement] = STATE(4481), - [sym_try_statement] = STATE(4481), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [854] = { - [sym_attribute_declaration] = STATE(945), - [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__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), + [STATE(268)] = { + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_include_token1] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token2] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [aux_sym_preproc_else_token1] = ACTIONS(2450), + [aux_sym_preproc_elif_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_AMP_AMP] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_virtual] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_COLON_COLON] = ACTIONS(2452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___based] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_mutable] = ACTIONS(2450), + [anon_sym_constinit] = ACTIONS(2450), + [anon_sym_consteval] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_class] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_goto] = ACTIONS(2450), + [anon_sym___try] = ACTIONS(2450), + [anon_sym___leave] = ACTIONS(2450), + [anon_sym_not] = ACTIONS(2450), + [anon_sym_compl] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2452), + [anon_sym_sizeof] = ACTIONS(2450), + [anon_sym___alignof__] = ACTIONS(2450), + [anon_sym___alignof] = ACTIONS(2450), + [anon_sym__alignof] = ACTIONS(2450), + [anon_sym_alignof] = ACTIONS(2450), + [anon_sym__Alignof] = ACTIONS(2450), + [anon_sym_offsetof] = ACTIONS(2450), + [anon_sym__Generic] = ACTIONS(2450), + [anon_sym_asm] = ACTIONS(2450), + [anon_sym___asm__] = ACTIONS(2450), + [anon_sym___asm] = ACTIONS(2450), + [sym_number_literal] = ACTIONS(2452), + [anon_sym_L_SQUOTE] = ACTIONS(2452), + [anon_sym_u_SQUOTE] = ACTIONS(2452), + [anon_sym_U_SQUOTE] = ACTIONS(2452), + [anon_sym_u8_SQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_L_DQUOTE] = ACTIONS(2452), + [anon_sym_u_DQUOTE] = ACTIONS(2452), + [anon_sym_U_DQUOTE] = ACTIONS(2452), + [anon_sym_u8_DQUOTE] = ACTIONS(2452), + [anon_sym_DQUOTE] = ACTIONS(2452), + [sym_true] = ACTIONS(2450), + [sym_false] = ACTIONS(2450), + [anon_sym_NULL] = ACTIONS(2450), + [anon_sym_nullptr] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2450), + [anon_sym_decltype] = ACTIONS(2450), + [anon_sym_explicit] = ACTIONS(2450), + [anon_sym_typename] = ACTIONS(2450), + [anon_sym_template] = ACTIONS(2450), + [anon_sym_operator] = ACTIONS(2450), + [anon_sym_try] = ACTIONS(2450), + [anon_sym_delete] = ACTIONS(2450), + [anon_sym_throw] = ACTIONS(2450), + [anon_sym_namespace] = ACTIONS(2450), + [anon_sym_using] = ACTIONS(2450), + [anon_sym_static_assert] = ACTIONS(2450), + [anon_sym_concept] = ACTIONS(2450), + [anon_sym_co_return] = ACTIONS(2450), + [anon_sym_co_yield] = ACTIONS(2450), + [anon_sym_R_DQUOTE] = ACTIONS(2452), + [anon_sym_LR_DQUOTE] = ACTIONS(2452), + [anon_sym_uR_DQUOTE] = ACTIONS(2452), + [anon_sym_UR_DQUOTE] = ACTIONS(2452), + [anon_sym_u8R_DQUOTE] = ACTIONS(2452), + [anon_sym_co_await] = ACTIONS(2450), + [anon_sym_new] = ACTIONS(2450), + [anon_sym_requires] = ACTIONS(2450), + [sym_this] = ACTIONS(2450), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2450), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_FORWARD] = ACTIONS(2450), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2450), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2450), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2450), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_PS_GET] = ACTIONS(2450), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2450), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2450), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2450), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2450), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2450), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2450), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2450), + [anon_sym_MOZ_COLD] = ACTIONS(2450), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2450), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2450), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2450), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2450), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2450), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2450), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2450), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2450), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2450), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2450), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2450), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2450), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2450), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_NONNULL] = ACTIONS(2450), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2450), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2450), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2450), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2450), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2450), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2450), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2450), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2450), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2450), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2450), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2450), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2450), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2450), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2450), + [anon_sym_MOZ_RAII] = ACTIONS(2450), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2450), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2450), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2450), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2450), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2450), + }, + [STATE(269)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [855] = { - [sym_identifier] = ACTIONS(2624), - [aux_sym_preproc_def_token1] = ACTIONS(2624), - [aux_sym_preproc_if_token1] = ACTIONS(2624), - [aux_sym_preproc_if_token2] = ACTIONS(2624), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2624), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2624), - [aux_sym_preproc_else_token1] = ACTIONS(2624), - [aux_sym_preproc_elif_token1] = ACTIONS(2624), - [sym_preproc_directive] = ACTIONS(2624), - [anon_sym_LPAREN2] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_typedef] = ACTIONS(2624), - [anon_sym_extern] = ACTIONS(2624), - [anon_sym___attribute__] = ACTIONS(2624), - [anon_sym_COLON_COLON] = ACTIONS(2626), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2626), - [anon_sym___declspec] = ACTIONS(2624), - [anon_sym___based] = ACTIONS(2624), - [anon_sym_LBRACK] = ACTIONS(2624), - [anon_sym_static] = ACTIONS(2624), - [anon_sym_register] = ACTIONS(2624), - [anon_sym_inline] = ACTIONS(2624), - [anon_sym_thread_local] = ACTIONS(2624), - [anon_sym_const] = ACTIONS(2624), - [anon_sym_volatile] = ACTIONS(2624), - [anon_sym_restrict] = ACTIONS(2624), - [anon_sym__Atomic] = ACTIONS(2624), - [anon_sym_mutable] = ACTIONS(2624), - [anon_sym_constexpr] = ACTIONS(2624), - [anon_sym_signed] = ACTIONS(2624), - [anon_sym_unsigned] = ACTIONS(2624), - [anon_sym_long] = ACTIONS(2624), - [anon_sym_short] = ACTIONS(2624), - [sym_primitive_type] = ACTIONS(2624), - [anon_sym_enum] = ACTIONS(2624), - [anon_sym_class] = ACTIONS(2624), - [anon_sym_struct] = ACTIONS(2624), - [anon_sym_union] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1898), + [anon_sym_typedef] = ACTIONS(1920), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1905), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2624), - [anon_sym_virtual] = ACTIONS(2624), - [anon_sym_explicit] = ACTIONS(2624), - [anon_sym_public] = ACTIONS(2624), - [anon_sym_private] = ACTIONS(2624), - [anon_sym_protected] = ACTIONS(2624), - [sym_auto] = ACTIONS(2624), - [anon_sym_typename] = ACTIONS(2624), - [anon_sym_template] = ACTIONS(2624), - [anon_sym_operator] = ACTIONS(2624), - [anon_sym_friend] = ACTIONS(2624), - [anon_sym_using] = ACTIONS(2624), - [anon_sym_static_assert] = ACTIONS(2624), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2624), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2624), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2624), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2624), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2624), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2624), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2624), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2624), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2624), - [anon_sym_MOZ_COLD] = ACTIONS(2624), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2624), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2624), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2624), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2624), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2624), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2624), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2624), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2624), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2624), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2624), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2624), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2624), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2624), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2624), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2624), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2624), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2624), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2624), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2624), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2624), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_NONNULL] = ACTIONS(2624), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2624), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2624), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2624), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2624), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2624), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_NORETURN] = ACTIONS(2624), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2624), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2624), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2624), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2624), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2624), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2624), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2624), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2624), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2624), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2624), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2624), - [anon_sym_MOZ_RAII] = ACTIONS(2624), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2624), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2624), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2624), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2624), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2624), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2624), - }, - [856] = { - [sym_identifier] = ACTIONS(2628), - [aux_sym_preproc_def_token1] = ACTIONS(2628), - [aux_sym_preproc_if_token1] = ACTIONS(2628), - [aux_sym_preproc_if_token2] = ACTIONS(2628), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2628), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2628), - [aux_sym_preproc_else_token1] = ACTIONS(2628), - [aux_sym_preproc_elif_token1] = ACTIONS(2628), - [sym_preproc_directive] = ACTIONS(2628), - [anon_sym_LPAREN2] = ACTIONS(2630), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2630), - [anon_sym_AMP_AMP] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_typedef] = ACTIONS(2628), - [anon_sym_extern] = ACTIONS(2628), - [anon_sym___attribute__] = ACTIONS(2628), - [anon_sym_COLON_COLON] = ACTIONS(2630), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2630), - [anon_sym___declspec] = ACTIONS(2628), - [anon_sym___based] = ACTIONS(2628), - [anon_sym_LBRACK] = ACTIONS(2628), - [anon_sym_static] = ACTIONS(2628), - [anon_sym_register] = ACTIONS(2628), - [anon_sym_inline] = ACTIONS(2628), - [anon_sym_thread_local] = ACTIONS(2628), - [anon_sym_const] = ACTIONS(2628), - [anon_sym_volatile] = ACTIONS(2628), - [anon_sym_restrict] = ACTIONS(2628), - [anon_sym__Atomic] = ACTIONS(2628), - [anon_sym_mutable] = ACTIONS(2628), - [anon_sym_constexpr] = ACTIONS(2628), - [anon_sym_signed] = ACTIONS(2628), - [anon_sym_unsigned] = ACTIONS(2628), - [anon_sym_long] = ACTIONS(2628), - [anon_sym_short] = ACTIONS(2628), - [sym_primitive_type] = ACTIONS(2628), - [anon_sym_enum] = ACTIONS(2628), - [anon_sym_class] = ACTIONS(2628), - [anon_sym_struct] = ACTIONS(2628), - [anon_sym_union] = ACTIONS(2628), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2628), - [anon_sym_virtual] = ACTIONS(2628), - [anon_sym_explicit] = ACTIONS(2628), - [anon_sym_public] = ACTIONS(2628), - [anon_sym_private] = ACTIONS(2628), - [anon_sym_protected] = ACTIONS(2628), - [sym_auto] = ACTIONS(2628), - [anon_sym_typename] = ACTIONS(2628), - [anon_sym_template] = ACTIONS(2628), - [anon_sym_operator] = ACTIONS(2628), - [anon_sym_friend] = ACTIONS(2628), - [anon_sym_using] = ACTIONS(2628), - [anon_sym_static_assert] = ACTIONS(2628), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2628), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2628), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2628), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2628), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2628), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2628), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2628), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2628), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2628), - [anon_sym_MOZ_COLD] = ACTIONS(2628), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2628), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2628), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2628), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2628), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2628), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2628), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2628), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2628), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2628), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2628), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2628), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2628), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2628), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2628), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2628), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2628), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2628), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2628), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2628), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2628), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_NONNULL] = ACTIONS(2628), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2628), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2628), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2628), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2628), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2628), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_NORETURN] = ACTIONS(2628), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2628), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2628), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2628), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2628), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2628), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2628), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2628), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2628), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2628), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2628), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2628), - [anon_sym_MOZ_RAII] = ACTIONS(2628), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2628), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2628), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2628), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2628), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2628), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2628), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1914), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1917), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), }, - [857] = { - [sym_identifier] = ACTIONS(2632), - [aux_sym_preproc_def_token1] = ACTIONS(2632), - [aux_sym_preproc_if_token1] = ACTIONS(2632), - [aux_sym_preproc_if_token2] = ACTIONS(2632), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2632), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2632), - [aux_sym_preproc_else_token1] = ACTIONS(2632), - [aux_sym_preproc_elif_token1] = ACTIONS(2632), - [sym_preproc_directive] = ACTIONS(2632), - [anon_sym_LPAREN2] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2634), - [anon_sym_STAR] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2632), - [anon_sym_typedef] = ACTIONS(2632), - [anon_sym_extern] = ACTIONS(2632), - [anon_sym___attribute__] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2634), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2634), - [anon_sym___declspec] = ACTIONS(2632), - [anon_sym___based] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2632), - [anon_sym_static] = ACTIONS(2632), - [anon_sym_register] = ACTIONS(2632), - [anon_sym_inline] = ACTIONS(2632), - [anon_sym_thread_local] = ACTIONS(2632), - [anon_sym_const] = ACTIONS(2632), - [anon_sym_volatile] = ACTIONS(2632), - [anon_sym_restrict] = ACTIONS(2632), - [anon_sym__Atomic] = ACTIONS(2632), - [anon_sym_mutable] = ACTIONS(2632), - [anon_sym_constexpr] = ACTIONS(2632), - [anon_sym_signed] = ACTIONS(2632), - [anon_sym_unsigned] = ACTIONS(2632), - [anon_sym_long] = ACTIONS(2632), - [anon_sym_short] = ACTIONS(2632), - [sym_primitive_type] = ACTIONS(2632), - [anon_sym_enum] = ACTIONS(2632), - [anon_sym_class] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2632), - [anon_sym_union] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2632), - [anon_sym_virtual] = ACTIONS(2632), - [anon_sym_explicit] = ACTIONS(2632), - [anon_sym_public] = ACTIONS(2632), - [anon_sym_private] = ACTIONS(2632), - [anon_sym_protected] = ACTIONS(2632), - [sym_auto] = ACTIONS(2632), - [anon_sym_typename] = ACTIONS(2632), - [anon_sym_template] = ACTIONS(2632), - [anon_sym_operator] = ACTIONS(2632), - [anon_sym_friend] = ACTIONS(2632), - [anon_sym_using] = ACTIONS(2632), - [anon_sym_static_assert] = ACTIONS(2632), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2632), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2632), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2632), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2632), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2632), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2632), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2632), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2632), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2632), - [anon_sym_MOZ_COLD] = ACTIONS(2632), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2632), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2632), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2632), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2632), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2632), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2632), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2632), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2632), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2632), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2632), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2632), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2632), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2632), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2632), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2632), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2632), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2632), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2632), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2632), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2632), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_NONNULL] = ACTIONS(2632), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2632), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2632), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2632), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2632), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2632), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_NORETURN] = ACTIONS(2632), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2632), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2632), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2632), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2632), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2632), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2632), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2632), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2632), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2632), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2632), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2632), - [anon_sym_MOZ_RAII] = ACTIONS(2632), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2632), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2632), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2632), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2632), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2632), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2632), - }, - [858] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(5183), - [sym_attributed_statement] = STATE(5183), - [sym_labeled_statement] = STATE(5183), - [sym_expression_statement] = STATE(5183), - [sym_if_statement] = STATE(5183), - [sym_switch_statement] = STATE(5183), - [sym_case_statement] = STATE(5183), - [sym_while_statement] = STATE(5183), - [sym_do_statement] = STATE(5183), - [sym_for_statement] = STATE(5183), - [sym_return_statement] = STATE(5183), - [sym_break_statement] = STATE(5183), - [sym_continue_statement] = STATE(5183), - [sym_goto_statement] = STATE(5183), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(5183), - [sym_co_return_statement] = STATE(5183), - [sym_co_yield_statement] = STATE(5183), - [sym_throw_statement] = STATE(5183), - [sym_try_statement] = STATE(5183), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [859] = { - [sym_attribute_declaration] = STATE(1041), - [sym_compound_statement] = STATE(490), - [sym_attributed_statement] = STATE(490), - [sym_labeled_statement] = STATE(490), - [sym_expression_statement] = STATE(490), - [sym_if_statement] = STATE(490), - [sym_switch_statement] = STATE(490), - [sym_case_statement] = STATE(490), - [sym_while_statement] = STATE(490), - [sym_do_statement] = STATE(490), - [sym_for_statement] = STATE(490), - [sym_return_statement] = STATE(490), - [sym_break_statement] = STATE(490), - [sym_continue_statement] = STATE(490), - [sym_goto_statement] = STATE(490), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(490), - [sym_co_return_statement] = STATE(490), - [sym_co_yield_statement] = STATE(490), - [sym_throw_statement] = STATE(490), - [sym_try_statement] = STATE(490), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [860] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(4474), - [sym_attributed_statement] = STATE(4474), - [sym_labeled_statement] = STATE(4474), - [sym_expression_statement] = STATE(4474), - [sym_if_statement] = STATE(4474), - [sym_switch_statement] = STATE(4474), - [sym_case_statement] = STATE(4474), - [sym_while_statement] = STATE(4474), - [sym_do_statement] = STATE(4474), - [sym_for_statement] = STATE(4474), - [sym_return_statement] = STATE(4474), - [sym_break_statement] = STATE(4474), - [sym_continue_statement] = STATE(4474), - [sym_goto_statement] = STATE(4474), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4474), - [sym_co_return_statement] = STATE(4474), - [sym_co_yield_statement] = STATE(4474), - [sym_throw_statement] = STATE(4474), - [sym_try_statement] = STATE(4474), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [861] = { - [sym_attribute_declaration] = STATE(861), - [sym_compound_statement] = STATE(174), - [sym_attributed_statement] = STATE(174), - [sym_labeled_statement] = STATE(174), - [sym_expression_statement] = STATE(174), - [sym_if_statement] = STATE(174), - [sym_switch_statement] = STATE(174), - [sym_case_statement] = STATE(174), - [sym_while_statement] = STATE(174), - [sym_do_statement] = STATE(174), - [sym_for_statement] = STATE(174), - [sym_return_statement] = STATE(174), - [sym_break_statement] = STATE(174), - [sym_continue_statement] = STATE(174), - [sym_goto_statement] = STATE(174), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(174), - [sym_co_return_statement] = STATE(174), - [sym_co_yield_statement] = STATE(174), - [sym_throw_statement] = STATE(174), - [sym_try_statement] = STATE(174), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(861), - [sym_identifier] = ACTIONS(2636), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_BANG] = ACTIONS(2642), - [anon_sym_TILDE] = ACTIONS(2642), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_PLUS] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_AMP] = ACTIONS(2648), - [anon_sym_SEMI] = ACTIONS(2651), - [anon_sym_COLON_COLON] = ACTIONS(2654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2660), - [anon_sym_LBRACK] = ACTIONS(2663), - [sym_primitive_type] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_switch] = ACTIONS(2672), - [anon_sym_case] = ACTIONS(2675), - [anon_sym_default] = ACTIONS(2678), - [anon_sym_while] = ACTIONS(2681), - [anon_sym_do] = ACTIONS(2684), - [anon_sym_for] = ACTIONS(2687), - [anon_sym_return] = ACTIONS(2690), - [anon_sym_break] = ACTIONS(2693), - [anon_sym_continue] = ACTIONS(2696), - [anon_sym_goto] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2702), - [anon_sym_PLUS_PLUS] = ACTIONS(2702), - [anon_sym_sizeof] = ACTIONS(2705), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2711), - [anon_sym_u_SQUOTE] = ACTIONS(2711), - [anon_sym_U_SQUOTE] = ACTIONS(2711), - [anon_sym_u8_SQUOTE] = ACTIONS(2711), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_L_DQUOTE] = ACTIONS(2714), - [anon_sym_u_DQUOTE] = ACTIONS(2714), - [anon_sym_U_DQUOTE] = ACTIONS(2714), - [anon_sym_u8_DQUOTE] = ACTIONS(2714), - [anon_sym_DQUOTE] = ACTIONS(2714), - [sym_true] = ACTIONS(2717), - [sym_false] = ACTIONS(2717), - [sym_null] = ACTIONS(2717), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(2720), - [anon_sym_delete] = ACTIONS(2723), - [anon_sym_throw] = ACTIONS(2726), - [anon_sym_co_return] = ACTIONS(2729), - [anon_sym_co_yield] = ACTIONS(2732), - [anon_sym_try] = ACTIONS(2735), - [anon_sym_co_await] = ACTIONS(2738), - [anon_sym_new] = ACTIONS(2741), - [sym_this] = ACTIONS(2717), - [sym_nullptr] = ACTIONS(2717), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_FORWARD] = ACTIONS(2744), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2744), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_PS_GET] = ACTIONS(2744), - [anon_sym_PS_GET_AND_SET] = ACTIONS(2744), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2744), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2744), - [sym_raw_string_literal] = ACTIONS(2747), - }, - [862] = { - [sym_identifier] = ACTIONS(2750), - [aux_sym_preproc_def_token1] = ACTIONS(2750), - [aux_sym_preproc_if_token1] = ACTIONS(2750), - [aux_sym_preproc_if_token2] = ACTIONS(2750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2750), - [aux_sym_preproc_else_token1] = ACTIONS(2750), - [aux_sym_preproc_elif_token1] = ACTIONS(2750), - [sym_preproc_directive] = ACTIONS(2750), - [anon_sym_LPAREN2] = ACTIONS(2752), - [anon_sym_TILDE] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2752), - [anon_sym_AMP_AMP] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2750), - [anon_sym_typedef] = ACTIONS(2750), - [anon_sym_extern] = ACTIONS(2750), - [anon_sym___attribute__] = ACTIONS(2750), - [anon_sym_COLON_COLON] = ACTIONS(2752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2752), - [anon_sym___declspec] = ACTIONS(2750), - [anon_sym___based] = ACTIONS(2750), - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_static] = ACTIONS(2750), - [anon_sym_register] = ACTIONS(2750), - [anon_sym_inline] = ACTIONS(2750), - [anon_sym_thread_local] = ACTIONS(2750), - [anon_sym_const] = ACTIONS(2750), - [anon_sym_volatile] = ACTIONS(2750), - [anon_sym_restrict] = ACTIONS(2750), - [anon_sym__Atomic] = ACTIONS(2750), - [anon_sym_mutable] = ACTIONS(2750), - [anon_sym_constexpr] = ACTIONS(2750), - [anon_sym_signed] = ACTIONS(2750), - [anon_sym_unsigned] = ACTIONS(2750), - [anon_sym_long] = ACTIONS(2750), - [anon_sym_short] = ACTIONS(2750), - [sym_primitive_type] = ACTIONS(2750), - [anon_sym_enum] = ACTIONS(2750), - [anon_sym_class] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(2750), - [anon_sym_union] = ACTIONS(2750), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2750), - [anon_sym_virtual] = ACTIONS(2750), - [anon_sym_explicit] = ACTIONS(2750), - [anon_sym_public] = ACTIONS(2750), - [anon_sym_private] = ACTIONS(2750), - [anon_sym_protected] = ACTIONS(2750), - [sym_auto] = ACTIONS(2750), - [anon_sym_typename] = ACTIONS(2750), - [anon_sym_template] = ACTIONS(2750), - [anon_sym_operator] = ACTIONS(2750), - [anon_sym_friend] = ACTIONS(2750), - [anon_sym_using] = ACTIONS(2750), - [anon_sym_static_assert] = ACTIONS(2750), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2750), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2750), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2750), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2750), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2750), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2750), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2750), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2750), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2750), - [anon_sym_MOZ_COLD] = ACTIONS(2750), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2750), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2750), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2750), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2750), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2750), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2750), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2750), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2750), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2750), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2750), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2750), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2750), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2750), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2750), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2750), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2750), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2750), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2750), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2750), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2750), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_NONNULL] = ACTIONS(2750), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2750), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2750), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2750), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2750), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2750), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_NORETURN] = ACTIONS(2750), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2750), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2750), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2750), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2750), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2750), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2750), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2750), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2750), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2750), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2750), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2750), - [anon_sym_MOZ_RAII] = ACTIONS(2750), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2750), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2750), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2750), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2750), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2750), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2750), - }, - [863] = { - [sym_attribute_declaration] = STATE(945), - [sym_compound_statement] = STATE(482), - [sym_attributed_statement] = STATE(482), - [sym_labeled_statement] = STATE(482), - [sym_expression_statement] = STATE(482), - [sym_if_statement] = STATE(482), - [sym_switch_statement] = STATE(482), - [sym_case_statement] = STATE(482), - [sym_while_statement] = STATE(482), - [sym_do_statement] = STATE(482), - [sym_for_statement] = STATE(482), - [sym_return_statement] = STATE(482), - [sym_break_statement] = STATE(482), - [sym_continue_statement] = STATE(482), - [sym_goto_statement] = STATE(482), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(482), - [sym_co_return_statement] = STATE(482), - [sym_co_yield_statement] = STATE(482), - [sym_throw_statement] = STATE(482), - [sym_try_statement] = STATE(482), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [864] = { - [sym_attribute_declaration] = STATE(945), - [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__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [865] = { - [sym_attribute_declaration] = STATE(945), - [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__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [866] = { - [sym_attribute_declaration] = STATE(982), - [sym_compound_statement] = STATE(4456), - [sym_attributed_statement] = STATE(4456), - [sym_labeled_statement] = STATE(4456), - [sym_expression_statement] = STATE(4456), - [sym_if_statement] = STATE(4456), - [sym_switch_statement] = STATE(4456), - [sym_case_statement] = STATE(4456), - [sym_while_statement] = STATE(4456), - [sym_do_statement] = STATE(4456), - [sym_for_statement] = STATE(4456), - [sym_return_statement] = STATE(4456), - [sym_break_statement] = STATE(4456), - [sym_continue_statement] = STATE(4456), - [sym_goto_statement] = STATE(4456), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4456), - [sym_co_return_statement] = STATE(4456), - [sym_co_yield_statement] = STATE(4456), - [sym_throw_statement] = STATE(4456), - [sym_try_statement] = STATE(4456), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(982), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [867] = { - [sym_attribute_declaration] = STATE(945), - [sym_compound_statement] = STATE(322), - [sym_attributed_statement] = STATE(322), - [sym_labeled_statement] = STATE(322), - [sym_expression_statement] = STATE(322), - [sym_if_statement] = STATE(322), - [sym_switch_statement] = STATE(322), - [sym_case_statement] = STATE(322), - [sym_while_statement] = STATE(322), - [sym_do_statement] = STATE(322), - [sym_for_statement] = STATE(322), - [sym_return_statement] = STATE(322), - [sym_break_statement] = STATE(322), - [sym_continue_statement] = STATE(322), - [sym_goto_statement] = STATE(322), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(322), - [sym_co_return_statement] = STATE(322), - [sym_co_yield_statement] = STATE(322), - [sym_throw_statement] = STATE(322), - [sym_try_statement] = STATE(322), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [868] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(5159), - [sym_attributed_statement] = STATE(5159), - [sym_labeled_statement] = STATE(5159), - [sym_expression_statement] = STATE(5159), - [sym_if_statement] = STATE(5159), - [sym_switch_statement] = STATE(5159), - [sym_case_statement] = STATE(5159), - [sym_while_statement] = STATE(5159), - [sym_do_statement] = STATE(5159), - [sym_for_statement] = STATE(5159), - [sym_return_statement] = STATE(5159), - [sym_break_statement] = STATE(5159), - [sym_continue_statement] = STATE(5159), - [sym_goto_statement] = STATE(5159), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(5159), - [sym_co_return_statement] = STATE(5159), - [sym_co_yield_statement] = STATE(5159), - [sym_throw_statement] = STATE(5159), - [sym_try_statement] = STATE(5159), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [869] = { - [sym_attribute_declaration] = STATE(945), - [sym_compound_statement] = STATE(329), - [sym_attributed_statement] = STATE(329), - [sym_labeled_statement] = STATE(329), - [sym_expression_statement] = STATE(329), - [sym_if_statement] = STATE(329), - [sym_switch_statement] = STATE(329), - [sym_case_statement] = STATE(329), - [sym_while_statement] = STATE(329), - [sym_do_statement] = STATE(329), - [sym_for_statement] = STATE(329), - [sym_return_statement] = STATE(329), - [sym_break_statement] = STATE(329), - [sym_continue_statement] = STATE(329), - [sym_goto_statement] = STATE(329), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(329), - [sym_co_return_statement] = STATE(329), - [sym_co_yield_statement] = STATE(329), - [sym_throw_statement] = STATE(329), - [sym_try_statement] = STATE(329), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [870] = { - [sym_attribute_declaration] = STATE(882), - [sym_compound_statement] = STATE(184), - [sym_attributed_statement] = STATE(184), - [sym_labeled_statement] = STATE(184), - [sym_expression_statement] = STATE(184), - [sym_if_statement] = STATE(184), - [sym_switch_statement] = STATE(184), - [sym_case_statement] = STATE(184), - [sym_while_statement] = STATE(184), - [sym_do_statement] = STATE(184), - [sym_for_statement] = STATE(184), - [sym_return_statement] = STATE(184), - [sym_break_statement] = STATE(184), - [sym_continue_statement] = STATE(184), - [sym_goto_statement] = STATE(184), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(184), - [sym_co_return_statement] = STATE(184), - [sym_co_yield_statement] = STATE(184), - [sym_throw_statement] = STATE(184), - [sym_try_statement] = STATE(184), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [871] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(5126), - [sym_attributed_statement] = STATE(5126), - [sym_labeled_statement] = STATE(5126), - [sym_expression_statement] = STATE(5126), - [sym_if_statement] = STATE(5126), - [sym_switch_statement] = STATE(5126), - [sym_case_statement] = STATE(5126), - [sym_while_statement] = STATE(5126), - [sym_do_statement] = STATE(5126), - [sym_for_statement] = STATE(5126), - [sym_return_statement] = STATE(5126), - [sym_break_statement] = STATE(5126), - [sym_continue_statement] = STATE(5126), - [sym_goto_statement] = STATE(5126), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(5126), - [sym_co_return_statement] = STATE(5126), - [sym_co_yield_statement] = STATE(5126), - [sym_throw_statement] = STATE(5126), - [sym_try_statement] = STATE(5126), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [872] = { - [sym_attribute_declaration] = STATE(885), - [sym_compound_statement] = STATE(733), - [sym_attributed_statement] = STATE(733), - [sym_labeled_statement] = STATE(733), - [sym_expression_statement] = STATE(733), - [sym_if_statement] = STATE(733), - [sym_switch_statement] = STATE(733), - [sym_case_statement] = STATE(733), - [sym_while_statement] = STATE(733), - [sym_do_statement] = STATE(733), - [sym_for_statement] = STATE(733), - [sym_return_statement] = STATE(733), - [sym_break_statement] = STATE(733), - [sym_continue_statement] = STATE(733), - [sym_goto_statement] = STATE(733), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(733), - [sym_co_return_statement] = STATE(733), - [sym_co_yield_statement] = STATE(733), - [sym_throw_statement] = STATE(733), - [sym_try_statement] = STATE(733), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [873] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(5008), - [sym_attributed_statement] = STATE(5008), - [sym_labeled_statement] = STATE(5008), - [sym_expression_statement] = STATE(5008), - [sym_if_statement] = STATE(5008), - [sym_switch_statement] = STATE(5008), - [sym_case_statement] = STATE(5008), - [sym_while_statement] = STATE(5008), - [sym_do_statement] = STATE(5008), - [sym_for_statement] = STATE(5008), - [sym_return_statement] = STATE(5008), - [sym_break_statement] = STATE(5008), - [sym_continue_statement] = STATE(5008), - [sym_goto_statement] = STATE(5008), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(5008), - [sym_co_return_statement] = STATE(5008), - [sym_co_yield_statement] = STATE(5008), - [sym_throw_statement] = STATE(5008), - [sym_try_statement] = STATE(5008), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [874] = { - [sym_attribute_declaration] = STATE(882), - [sym_compound_statement] = STATE(151), - [sym_attributed_statement] = STATE(151), - [sym_labeled_statement] = STATE(151), - [sym_expression_statement] = STATE(151), - [sym_if_statement] = STATE(151), - [sym_switch_statement] = STATE(151), - [sym_case_statement] = STATE(151), - [sym_while_statement] = STATE(151), - [sym_do_statement] = STATE(151), - [sym_for_statement] = STATE(151), - [sym_return_statement] = STATE(151), - [sym_break_statement] = STATE(151), - [sym_continue_statement] = STATE(151), - [sym_goto_statement] = STATE(151), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(151), - [sym_co_return_statement] = STATE(151), - [sym_co_yield_statement] = STATE(151), - [sym_throw_statement] = STATE(151), - [sym_try_statement] = STATE(151), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [875] = { - [sym_attribute_declaration] = STATE(882), - [sym_compound_statement] = STATE(156), - [sym_attributed_statement] = STATE(156), - [sym_labeled_statement] = STATE(156), - [sym_expression_statement] = STATE(156), - [sym_if_statement] = STATE(156), - [sym_switch_statement] = STATE(156), - [sym_case_statement] = STATE(156), - [sym_while_statement] = STATE(156), - [sym_do_statement] = STATE(156), - [sym_for_statement] = STATE(156), - [sym_return_statement] = STATE(156), - [sym_break_statement] = STATE(156), - [sym_continue_statement] = STATE(156), - [sym_goto_statement] = STATE(156), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(156), - [sym_co_return_statement] = STATE(156), - [sym_co_yield_statement] = STATE(156), - [sym_throw_statement] = STATE(156), - [sym_try_statement] = STATE(156), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [876] = { - [sym_attribute_declaration] = STATE(882), - [sym_compound_statement] = STATE(177), - [sym_attributed_statement] = STATE(177), - [sym_labeled_statement] = STATE(177), - [sym_expression_statement] = STATE(177), - [sym_if_statement] = STATE(177), - [sym_switch_statement] = STATE(177), - [sym_case_statement] = STATE(177), - [sym_while_statement] = STATE(177), - [sym_do_statement] = STATE(177), - [sym_for_statement] = STATE(177), - [sym_return_statement] = STATE(177), - [sym_break_statement] = STATE(177), - [sym_continue_statement] = STATE(177), - [sym_goto_statement] = STATE(177), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(177), - [sym_co_return_statement] = STATE(177), - [sym_co_yield_statement] = STATE(177), - [sym_throw_statement] = STATE(177), - [sym_try_statement] = STATE(177), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [877] = { - [sym_identifier] = ACTIONS(1518), - [aux_sym_preproc_def_token1] = ACTIONS(1518), - [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(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_typedef] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym___attribute__] = ACTIONS(1518), - [anon_sym_COLON_COLON] = ACTIONS(1520), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), - [anon_sym___declspec] = ACTIONS(1518), - [anon_sym___based] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_inline] = ACTIONS(1518), - [anon_sym_thread_local] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_volatile] = ACTIONS(1518), - [anon_sym_restrict] = ACTIONS(1518), - [anon_sym__Atomic] = ACTIONS(1518), - [anon_sym_mutable] = ACTIONS(1518), - [anon_sym_constexpr] = ACTIONS(1518), - [anon_sym_signed] = ACTIONS(1518), - [anon_sym_unsigned] = ACTIONS(1518), - [anon_sym_long] = ACTIONS(1518), - [anon_sym_short] = ACTIONS(1518), - [sym_primitive_type] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1518), - [anon_sym_virtual] = ACTIONS(1518), - [anon_sym_explicit] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [sym_auto] = ACTIONS(1518), - [anon_sym_typename] = ACTIONS(1518), - [anon_sym_template] = ACTIONS(1518), - [anon_sym_operator] = ACTIONS(1518), - [anon_sym_friend] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1518), - [anon_sym_static_assert] = ACTIONS(1518), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1518), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1518), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1518), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1518), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1518), - [anon_sym_MOZ_COLD] = ACTIONS(1518), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1518), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1518), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1518), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1518), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1518), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1518), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1518), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1518), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1518), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1518), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1518), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1518), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1518), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_NONNULL] = ACTIONS(1518), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1518), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1518), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1518), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1518), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1518), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1518), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1518), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1518), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1518), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1518), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1518), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1518), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1518), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1518), - [anon_sym_MOZ_RAII] = ACTIONS(1518), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1518), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1518), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1518), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1518), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1518), - }, - [878] = { - [sym_attribute_declaration] = STATE(878), - [sym_compound_statement] = STATE(354), - [sym_attributed_statement] = STATE(354), - [sym_labeled_statement] = STATE(354), - [sym_expression_statement] = STATE(354), - [sym_if_statement] = STATE(354), - [sym_switch_statement] = STATE(354), - [sym_case_statement] = STATE(354), - [sym_while_statement] = STATE(354), - [sym_do_statement] = STATE(354), - [sym_for_statement] = STATE(354), - [sym_return_statement] = STATE(354), - [sym_break_statement] = STATE(354), - [sym_continue_statement] = STATE(354), - [sym_goto_statement] = STATE(354), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(354), - [sym_co_return_statement] = STATE(354), - [sym_co_yield_statement] = STATE(354), - [sym_throw_statement] = STATE(354), - [sym_try_statement] = STATE(354), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(878), - [sym_identifier] = ACTIONS(2756), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_BANG] = ACTIONS(2642), - [anon_sym_TILDE] = ACTIONS(2642), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_PLUS] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_AMP] = ACTIONS(2648), - [anon_sym_SEMI] = ACTIONS(2759), - [anon_sym_COLON_COLON] = ACTIONS(2654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2762), - [anon_sym_LBRACK] = ACTIONS(2663), - [sym_primitive_type] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2765), - [anon_sym_switch] = ACTIONS(2768), - [anon_sym_case] = ACTIONS(2771), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_do] = ACTIONS(2780), - [anon_sym_for] = ACTIONS(2783), - [anon_sym_return] = ACTIONS(2786), - [anon_sym_break] = ACTIONS(2789), - [anon_sym_continue] = ACTIONS(2792), - [anon_sym_goto] = ACTIONS(2795), - [anon_sym_DASH_DASH] = ACTIONS(2702), - [anon_sym_PLUS_PLUS] = ACTIONS(2702), - [anon_sym_sizeof] = ACTIONS(2705), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2711), - [anon_sym_u_SQUOTE] = ACTIONS(2711), - [anon_sym_U_SQUOTE] = ACTIONS(2711), - [anon_sym_u8_SQUOTE] = ACTIONS(2711), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_L_DQUOTE] = ACTIONS(2714), - [anon_sym_u_DQUOTE] = ACTIONS(2714), - [anon_sym_U_DQUOTE] = ACTIONS(2714), - [anon_sym_u8_DQUOTE] = ACTIONS(2714), - [anon_sym_DQUOTE] = ACTIONS(2714), - [sym_true] = ACTIONS(2717), - [sym_false] = ACTIONS(2717), - [sym_null] = ACTIONS(2717), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(2720), - [anon_sym_delete] = ACTIONS(2723), - [anon_sym_throw] = ACTIONS(2798), - [anon_sym_co_return] = ACTIONS(2801), - [anon_sym_co_yield] = ACTIONS(2804), - [anon_sym_try] = ACTIONS(2807), - [anon_sym_co_await] = ACTIONS(2738), - [anon_sym_new] = ACTIONS(2741), - [sym_this] = ACTIONS(2717), - [sym_nullptr] = ACTIONS(2717), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_FORWARD] = ACTIONS(2744), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2744), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_PS_GET] = ACTIONS(2744), - [anon_sym_PS_GET_AND_SET] = ACTIONS(2744), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2744), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2744), - [sym_raw_string_literal] = ACTIONS(2747), - }, - [879] = { - [sym_attribute_declaration] = STATE(1041), - [sym_compound_statement] = STATE(451), - [sym_attributed_statement] = STATE(451), - [sym_labeled_statement] = STATE(451), - [sym_expression_statement] = STATE(451), - [sym_if_statement] = STATE(451), - [sym_switch_statement] = STATE(451), - [sym_case_statement] = STATE(451), - [sym_while_statement] = STATE(451), - [sym_do_statement] = STATE(451), - [sym_for_statement] = STATE(451), - [sym_return_statement] = STATE(451), - [sym_break_statement] = STATE(451), - [sym_continue_statement] = STATE(451), - [sym_goto_statement] = STATE(451), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(451), - [sym_co_return_statement] = STATE(451), - [sym_co_yield_statement] = STATE(451), - [sym_throw_statement] = STATE(451), - [sym_try_statement] = STATE(451), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [880] = { - [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_def_token1] = ACTIONS(1529), - [aux_sym_preproc_if_token1] = ACTIONS(1529), - [aux_sym_preproc_if_token2] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), - [aux_sym_preproc_else_token1] = ACTIONS(1529), - [aux_sym_preproc_elif_token1] = ACTIONS(1529), - [sym_preproc_directive] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym___attribute__] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1531), - [anon_sym___declspec] = ACTIONS(1529), - [anon_sym___based] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [anon_sym_thread_local] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym__Atomic] = ACTIONS(1529), - [anon_sym_mutable] = ACTIONS(1529), - [anon_sym_constexpr] = ACTIONS(1529), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_class] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1529), - [anon_sym_virtual] = ACTIONS(1529), - [anon_sym_explicit] = ACTIONS(1529), - [anon_sym_public] = ACTIONS(1529), - [anon_sym_private] = ACTIONS(1529), - [anon_sym_protected] = ACTIONS(1529), - [sym_auto] = ACTIONS(1529), - [anon_sym_typename] = ACTIONS(1529), - [anon_sym_template] = ACTIONS(1529), - [anon_sym_operator] = ACTIONS(1529), - [anon_sym_friend] = ACTIONS(1529), - [anon_sym_using] = ACTIONS(1529), - [anon_sym_static_assert] = ACTIONS(1529), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1529), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1529), - [anon_sym_MOZ_COLD] = ACTIONS(1529), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1529), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1529), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1529), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1529), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1529), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1529), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1529), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1529), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1529), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1529), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1529), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1529), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_RAII] = ACTIONS(1529), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1529), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1529), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1529), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1529), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1529), - }, - [881] = { - [sym_attribute_declaration] = STATE(1041), - [sym_compound_statement] = STATE(457), - [sym_attributed_statement] = STATE(457), - [sym_labeled_statement] = STATE(457), - [sym_expression_statement] = STATE(457), - [sym_if_statement] = STATE(457), - [sym_switch_statement] = STATE(457), - [sym_case_statement] = STATE(457), - [sym_while_statement] = STATE(457), - [sym_do_statement] = STATE(457), - [sym_for_statement] = STATE(457), - [sym_return_statement] = STATE(457), - [sym_break_statement] = STATE(457), - [sym_continue_statement] = STATE(457), - [sym_goto_statement] = STATE(457), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(457), - [sym_co_return_statement] = STATE(457), - [sym_co_yield_statement] = STATE(457), - [sym_throw_statement] = STATE(457), - [sym_try_statement] = STATE(457), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [882] = { - [sym_attribute_declaration] = STATE(861), - [sym_compound_statement] = STATE(174), - [sym_attributed_statement] = STATE(174), - [sym_labeled_statement] = STATE(174), - [sym_expression_statement] = STATE(174), - [sym_if_statement] = STATE(174), - [sym_switch_statement] = STATE(174), - [sym_case_statement] = STATE(174), - [sym_while_statement] = STATE(174), - [sym_do_statement] = STATE(174), - [sym_for_statement] = STATE(174), - [sym_return_statement] = STATE(174), - [sym_break_statement] = STATE(174), - [sym_continue_statement] = STATE(174), - [sym_goto_statement] = STATE(174), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(174), - [sym_co_return_statement] = STATE(174), - [sym_co_yield_statement] = STATE(174), - [sym_throw_statement] = STATE(174), - [sym_try_statement] = STATE(174), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(861), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [883] = { - [sym_identifier] = ACTIONS(1593), - [aux_sym_preproc_def_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token2] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1593), - [aux_sym_preproc_else_token1] = ACTIONS(1593), - [aux_sym_preproc_elif_token1] = ACTIONS(1593), - [sym_preproc_directive] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_typedef] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym___attribute__] = ACTIONS(1593), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1593), - [anon_sym___based] = ACTIONS(1593), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_inline] = ACTIONS(1593), - [anon_sym_thread_local] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_volatile] = ACTIONS(1593), - [anon_sym_restrict] = ACTIONS(1593), - [anon_sym__Atomic] = ACTIONS(1593), - [anon_sym_mutable] = ACTIONS(1593), - [anon_sym_constexpr] = ACTIONS(1593), - [anon_sym_signed] = ACTIONS(1593), - [anon_sym_unsigned] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [sym_primitive_type] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_class] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1593), - [anon_sym_virtual] = ACTIONS(1593), - [anon_sym_explicit] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [sym_auto] = ACTIONS(1593), - [anon_sym_typename] = ACTIONS(1593), - [anon_sym_template] = ACTIONS(1593), - [anon_sym_operator] = ACTIONS(1593), - [anon_sym_friend] = ACTIONS(1593), - [anon_sym_using] = ACTIONS(1593), - [anon_sym_static_assert] = ACTIONS(1593), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1593), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1593), - [anon_sym_MOZ_COLD] = ACTIONS(1593), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1593), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1593), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1593), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1593), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1593), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1593), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1593), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1593), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1593), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1593), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1593), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1593), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_RAII] = ACTIONS(1593), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1593), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1593), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1593), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1593), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1593), - }, - [884] = { - [sym_identifier] = ACTIONS(1593), - [aux_sym_preproc_def_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token2] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1593), - [aux_sym_preproc_else_token1] = ACTIONS(1593), - [aux_sym_preproc_elif_token1] = ACTIONS(1593), - [sym_preproc_directive] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_typedef] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym___attribute__] = ACTIONS(1593), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1593), - [anon_sym___based] = ACTIONS(1593), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_inline] = ACTIONS(1593), - [anon_sym_thread_local] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_volatile] = ACTIONS(1593), - [anon_sym_restrict] = ACTIONS(1593), - [anon_sym__Atomic] = ACTIONS(1593), - [anon_sym_mutable] = ACTIONS(1593), - [anon_sym_constexpr] = ACTIONS(1593), - [anon_sym_signed] = ACTIONS(1593), - [anon_sym_unsigned] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [sym_primitive_type] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_class] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1593), - [anon_sym_virtual] = ACTIONS(1593), - [anon_sym_explicit] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [sym_auto] = ACTIONS(1593), - [anon_sym_typename] = ACTIONS(1593), - [anon_sym_template] = ACTIONS(1593), - [anon_sym_operator] = ACTIONS(1593), - [anon_sym_friend] = ACTIONS(1593), - [anon_sym_using] = ACTIONS(1593), - [anon_sym_static_assert] = ACTIONS(1593), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1593), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1593), - [anon_sym_MOZ_COLD] = ACTIONS(1593), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1593), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1593), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1593), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1593), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1593), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1593), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1593), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1593), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1593), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1593), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1593), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1593), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_RAII] = ACTIONS(1593), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1593), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1593), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1593), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1593), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1593), - }, - [885] = { - [sym_attribute_declaration] = STATE(904), - [sym_compound_statement] = STATE(710), - [sym_attributed_statement] = STATE(710), - [sym_labeled_statement] = STATE(710), - [sym_expression_statement] = STATE(710), - [sym_if_statement] = STATE(710), - [sym_switch_statement] = STATE(710), - [sym_case_statement] = STATE(710), - [sym_while_statement] = STATE(710), - [sym_do_statement] = STATE(710), - [sym_for_statement] = STATE(710), - [sym_return_statement] = STATE(710), - [sym_break_statement] = STATE(710), - [sym_continue_statement] = STATE(710), - [sym_goto_statement] = STATE(710), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(710), - [sym_co_return_statement] = STATE(710), - [sym_co_yield_statement] = STATE(710), - [sym_throw_statement] = STATE(710), - [sym_try_statement] = STATE(710), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(904), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [886] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(4596), - [sym_attributed_statement] = STATE(4596), - [sym_labeled_statement] = STATE(4596), - [sym_expression_statement] = STATE(4596), - [sym_if_statement] = STATE(4596), - [sym_switch_statement] = STATE(4596), - [sym_case_statement] = STATE(4596), - [sym_while_statement] = STATE(4596), - [sym_do_statement] = STATE(4596), - [sym_for_statement] = STATE(4596), - [sym_return_statement] = STATE(4596), - [sym_break_statement] = STATE(4596), - [sym_continue_statement] = STATE(4596), - [sym_goto_statement] = STATE(4596), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4596), - [sym_co_return_statement] = STATE(4596), - [sym_co_yield_statement] = STATE(4596), - [sym_throw_statement] = STATE(4596), - [sym_try_statement] = STATE(4596), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [887] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(4488), - [sym_attributed_statement] = STATE(4488), - [sym_labeled_statement] = STATE(4488), - [sym_expression_statement] = STATE(4488), - [sym_if_statement] = STATE(4488), - [sym_switch_statement] = STATE(4488), - [sym_case_statement] = STATE(4488), - [sym_while_statement] = STATE(4488), - [sym_do_statement] = STATE(4488), - [sym_for_statement] = STATE(4488), - [sym_return_statement] = STATE(4488), - [sym_break_statement] = STATE(4488), - [sym_continue_statement] = STATE(4488), - [sym_goto_statement] = STATE(4488), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4488), - [sym_co_return_statement] = STATE(4488), - [sym_co_yield_statement] = STATE(4488), - [sym_throw_statement] = STATE(4488), - [sym_try_statement] = STATE(4488), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [888] = { - [sym_attribute_declaration] = STATE(885), - [sym_compound_statement] = STATE(737), - [sym_attributed_statement] = STATE(737), - [sym_labeled_statement] = STATE(737), - [sym_expression_statement] = STATE(737), - [sym_if_statement] = STATE(737), - [sym_switch_statement] = STATE(737), - [sym_case_statement] = STATE(737), - [sym_while_statement] = STATE(737), - [sym_do_statement] = STATE(737), - [sym_for_statement] = STATE(737), - [sym_return_statement] = STATE(737), - [sym_break_statement] = STATE(737), - [sym_continue_statement] = STATE(737), - [sym_goto_statement] = STATE(737), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(737), - [sym_co_return_statement] = STATE(737), - [sym_co_yield_statement] = STATE(737), - [sym_throw_statement] = STATE(737), - [sym_try_statement] = STATE(737), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [889] = { - [sym_attribute_declaration] = STATE(885), - [sym_compound_statement] = STATE(748), - [sym_attributed_statement] = STATE(748), - [sym_labeled_statement] = STATE(748), - [sym_expression_statement] = STATE(748), - [sym_if_statement] = STATE(748), - [sym_switch_statement] = STATE(748), - [sym_case_statement] = STATE(748), - [sym_while_statement] = STATE(748), - [sym_do_statement] = STATE(748), - [sym_for_statement] = STATE(748), - [sym_return_statement] = STATE(748), - [sym_break_statement] = STATE(748), - [sym_continue_statement] = STATE(748), - [sym_goto_statement] = STATE(748), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(748), - [sym_co_return_statement] = STATE(748), - [sym_co_yield_statement] = STATE(748), - [sym_throw_statement] = STATE(748), - [sym_try_statement] = STATE(748), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [890] = { - [sym_attribute_declaration] = STATE(1046), - [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__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [891] = { - [sym_attribute_declaration] = STATE(1046), - [sym_compound_statement] = STATE(470), - [sym_attributed_statement] = STATE(470), - [sym_labeled_statement] = STATE(470), - [sym_expression_statement] = STATE(470), - [sym_if_statement] = STATE(470), - [sym_switch_statement] = STATE(470), - [sym_case_statement] = STATE(470), - [sym_while_statement] = STATE(470), - [sym_do_statement] = STATE(470), - [sym_for_statement] = STATE(470), - [sym_return_statement] = STATE(470), - [sym_break_statement] = STATE(470), - [sym_continue_statement] = STATE(470), - [sym_goto_statement] = STATE(470), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(470), - [sym_co_return_statement] = STATE(470), - [sym_co_yield_statement] = STATE(470), - [sym_throw_statement] = STATE(470), - [sym_try_statement] = STATE(470), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), + [STATE(270)] = { + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_include_token1] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token2] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [aux_sym_preproc_else_token1] = ACTIONS(2454), + [aux_sym_preproc_elif_token1] = ACTIONS(2454), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_AMP_AMP] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2454), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_virtual] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___based] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_mutable] = ACTIONS(2454), + [anon_sym_constinit] = ACTIONS(2454), + [anon_sym_consteval] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_class] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_switch] = ACTIONS(2454), + [anon_sym_case] = ACTIONS(2454), + [anon_sym_default] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_goto] = ACTIONS(2454), + [anon_sym___try] = ACTIONS(2454), + [anon_sym___leave] = ACTIONS(2454), + [anon_sym_not] = ACTIONS(2454), + [anon_sym_compl] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_sizeof] = ACTIONS(2454), + [anon_sym___alignof__] = ACTIONS(2454), + [anon_sym___alignof] = ACTIONS(2454), + [anon_sym__alignof] = ACTIONS(2454), + [anon_sym_alignof] = ACTIONS(2454), + [anon_sym__Alignof] = ACTIONS(2454), + [anon_sym_offsetof] = ACTIONS(2454), + [anon_sym__Generic] = ACTIONS(2454), + [anon_sym_asm] = ACTIONS(2454), + [anon_sym___asm__] = ACTIONS(2454), + [anon_sym___asm] = ACTIONS(2454), + [sym_number_literal] = ACTIONS(2456), + [anon_sym_L_SQUOTE] = ACTIONS(2456), + [anon_sym_u_SQUOTE] = ACTIONS(2456), + [anon_sym_U_SQUOTE] = ACTIONS(2456), + [anon_sym_u8_SQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_L_DQUOTE] = ACTIONS(2456), + [anon_sym_u_DQUOTE] = ACTIONS(2456), + [anon_sym_U_DQUOTE] = ACTIONS(2456), + [anon_sym_u8_DQUOTE] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [anon_sym_NULL] = ACTIONS(2454), + [anon_sym_nullptr] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2454), + [anon_sym_decltype] = ACTIONS(2454), + [anon_sym_explicit] = ACTIONS(2454), + [anon_sym_typename] = ACTIONS(2454), + [anon_sym_template] = ACTIONS(2454), + [anon_sym_operator] = ACTIONS(2454), + [anon_sym_try] = ACTIONS(2454), + [anon_sym_delete] = ACTIONS(2454), + [anon_sym_throw] = ACTIONS(2454), + [anon_sym_namespace] = ACTIONS(2454), + [anon_sym_using] = ACTIONS(2454), + [anon_sym_static_assert] = ACTIONS(2454), + [anon_sym_concept] = ACTIONS(2454), + [anon_sym_co_return] = ACTIONS(2454), + [anon_sym_co_yield] = ACTIONS(2454), + [anon_sym_R_DQUOTE] = ACTIONS(2456), + [anon_sym_LR_DQUOTE] = ACTIONS(2456), + [anon_sym_uR_DQUOTE] = ACTIONS(2456), + [anon_sym_UR_DQUOTE] = ACTIONS(2456), + [anon_sym_u8R_DQUOTE] = ACTIONS(2456), + [anon_sym_co_await] = ACTIONS(2454), + [anon_sym_new] = ACTIONS(2454), + [anon_sym_requires] = ACTIONS(2454), + [sym_this] = ACTIONS(2454), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2454), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_FORWARD] = ACTIONS(2454), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2454), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2454), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2454), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_PS_GET] = ACTIONS(2454), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2454), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2454), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2454), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2454), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2454), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2454), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2454), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2454), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2454), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2454), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2454), + [anon_sym_MOZ_COLD] = ACTIONS(2454), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2454), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2454), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2454), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2454), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2454), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2454), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2454), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2454), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2454), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2454), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2454), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2454), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2454), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2454), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2454), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2454), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2454), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2454), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2454), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2454), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_NONNULL] = ACTIONS(2454), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2454), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2454), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2454), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2454), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2454), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_NORETURN] = ACTIONS(2454), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2454), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2454), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2454), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2454), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2454), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2454), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2454), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2454), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2454), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2454), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2454), + [anon_sym_MOZ_RAII] = ACTIONS(2454), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2454), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2454), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2454), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2454), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2454), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2454), + }, + [STATE(271)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [892] = { - [sym_attribute_declaration] = STATE(1046), - [sym_compound_statement] = STATE(443), - [sym_attributed_statement] = STATE(444), - [sym_labeled_statement] = STATE(445), - [sym_expression_statement] = STATE(447), - [sym_if_statement] = STATE(448), - [sym_switch_statement] = STATE(449), - [sym_case_statement] = STATE(450), - [sym_while_statement] = STATE(454), - [sym_do_statement] = STATE(455), - [sym_for_statement] = STATE(458), - [sym_return_statement] = STATE(459), - [sym_break_statement] = STATE(460), - [sym_continue_statement] = STATE(461), - [sym_goto_statement] = STATE(462), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(463), - [sym_co_return_statement] = STATE(466), - [sym_co_yield_statement] = STATE(467), - [sym_throw_statement] = STATE(468), - [sym_try_statement] = STATE(469), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [893] = { - [sym_attribute_declaration] = STATE(1046), - [sym_compound_statement] = STATE(423), - [sym_attributed_statement] = STATE(424), - [sym_labeled_statement] = STATE(425), - [sym_expression_statement] = STATE(426), - [sym_if_statement] = STATE(427), - [sym_switch_statement] = STATE(428), - [sym_case_statement] = STATE(429), - [sym_while_statement] = STATE(431), - [sym_do_statement] = STATE(432), - [sym_for_statement] = STATE(433), - [sym_return_statement] = STATE(434), - [sym_break_statement] = STATE(435), - [sym_continue_statement] = STATE(436), - [sym_goto_statement] = STATE(437), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(438), - [sym_co_return_statement] = STATE(439), - [sym_co_yield_statement] = STATE(440), - [sym_throw_statement] = STATE(441), - [sym_try_statement] = STATE(442), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [894] = { - [sym_attribute_declaration] = STATE(1046), - [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__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [895] = { - [sym_attribute_declaration] = STATE(885), - [sym_compound_statement] = STATE(763), - [sym_attributed_statement] = STATE(763), - [sym_labeled_statement] = STATE(763), - [sym_expression_statement] = STATE(763), - [sym_if_statement] = STATE(763), - [sym_switch_statement] = STATE(763), - [sym_case_statement] = STATE(763), - [sym_while_statement] = STATE(763), - [sym_do_statement] = STATE(763), - [sym_for_statement] = STATE(763), - [sym_return_statement] = STATE(763), - [sym_break_statement] = STATE(763), - [sym_continue_statement] = STATE(763), - [sym_goto_statement] = STATE(763), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(763), - [sym_co_return_statement] = STATE(763), - [sym_co_yield_statement] = STATE(763), - [sym_throw_statement] = STATE(763), - [sym_try_statement] = STATE(763), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1898), + [anon_sym_typedef] = ACTIONS(1922), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1905), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1914), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1917), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), + }, + [STATE(272)] = { + [ts_builtin_sym_end] = ACTIONS(1968), + [sym_identifier] = ACTIONS(1966), + [aux_sym_preproc_include_token1] = ACTIONS(1966), + [aux_sym_preproc_def_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1966), + [sym_preproc_directive] = ACTIONS(1966), + [anon_sym_LPAREN2] = ACTIONS(1968), + [anon_sym_BANG] = ACTIONS(1968), + [anon_sym_TILDE] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym___extension__] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1966), + [anon_sym_virtual] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym___attribute__] = ACTIONS(1966), + [anon_sym___attribute] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1966), + [anon_sym___based] = ACTIONS(1966), + [anon_sym___cdecl] = ACTIONS(1966), + [anon_sym___clrcall] = ACTIONS(1966), + [anon_sym___stdcall] = ACTIONS(1966), + [anon_sym___fastcall] = ACTIONS(1966), + [anon_sym___thiscall] = ACTIONS(1966), + [anon_sym___vectorcall] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_register] = ACTIONS(1966), + [anon_sym_inline] = ACTIONS(1966), + [anon_sym___inline] = ACTIONS(1966), + [anon_sym___inline__] = ACTIONS(1966), + [anon_sym___forceinline] = ACTIONS(1966), + [anon_sym_thread_local] = ACTIONS(1966), + [anon_sym___thread] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_constexpr] = ACTIONS(1966), + [anon_sym_volatile] = ACTIONS(1966), + [anon_sym_restrict] = ACTIONS(1966), + [anon_sym___restrict__] = ACTIONS(1966), + [anon_sym__Atomic] = ACTIONS(1966), + [anon_sym__Noreturn] = ACTIONS(1966), + [anon_sym_noreturn] = ACTIONS(1966), + [anon_sym__Nonnull] = ACTIONS(1966), + [anon_sym_mutable] = ACTIONS(1966), + [anon_sym_constinit] = ACTIONS(1966), + [anon_sym_consteval] = ACTIONS(1966), + [anon_sym_alignas] = ACTIONS(1966), + [anon_sym__Alignas] = ACTIONS(1966), + [sym_primitive_type] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_class] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_else] = ACTIONS(1966), + [anon_sym_switch] = ACTIONS(1966), + [anon_sym_case] = ACTIONS(1966), + [anon_sym_default] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1966), + [anon_sym_do] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1966), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1966), + [anon_sym_continue] = ACTIONS(1966), + [anon_sym_goto] = ACTIONS(1966), + [anon_sym___try] = ACTIONS(1966), + [anon_sym___leave] = ACTIONS(1966), + [anon_sym_not] = ACTIONS(1966), + [anon_sym_compl] = ACTIONS(1966), + [anon_sym_DASH_DASH] = ACTIONS(1968), + [anon_sym_PLUS_PLUS] = ACTIONS(1968), + [anon_sym_sizeof] = ACTIONS(1966), + [anon_sym___alignof__] = ACTIONS(1966), + [anon_sym___alignof] = ACTIONS(1966), + [anon_sym__alignof] = ACTIONS(1966), + [anon_sym_alignof] = ACTIONS(1966), + [anon_sym__Alignof] = ACTIONS(1966), + [anon_sym_offsetof] = ACTIONS(1966), + [anon_sym__Generic] = ACTIONS(1966), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(1968), + [anon_sym_L_SQUOTE] = ACTIONS(1968), + [anon_sym_u_SQUOTE] = ACTIONS(1968), + [anon_sym_U_SQUOTE] = ACTIONS(1968), + [anon_sym_u8_SQUOTE] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(1968), + [anon_sym_L_DQUOTE] = ACTIONS(1968), + [anon_sym_u_DQUOTE] = ACTIONS(1968), + [anon_sym_U_DQUOTE] = ACTIONS(1968), + [anon_sym_u8_DQUOTE] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [sym_true] = ACTIONS(1966), + [sym_false] = ACTIONS(1966), + [anon_sym_NULL] = ACTIONS(1966), + [anon_sym_nullptr] = ACTIONS(1966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1966), + [anon_sym_decltype] = ACTIONS(1966), + [anon_sym_explicit] = ACTIONS(1966), + [anon_sym_typename] = ACTIONS(1966), + [anon_sym_template] = ACTIONS(1966), + [anon_sym_operator] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1966), + [anon_sym_delete] = ACTIONS(1966), + [anon_sym_throw] = ACTIONS(1966), + [anon_sym_namespace] = ACTIONS(1966), + [anon_sym_using] = ACTIONS(1966), + [anon_sym_static_assert] = ACTIONS(1966), + [anon_sym_concept] = ACTIONS(1966), + [anon_sym_co_return] = ACTIONS(1966), + [anon_sym_co_yield] = ACTIONS(1966), + [anon_sym_R_DQUOTE] = ACTIONS(1968), + [anon_sym_LR_DQUOTE] = ACTIONS(1968), + [anon_sym_uR_DQUOTE] = ACTIONS(1968), + [anon_sym_UR_DQUOTE] = ACTIONS(1968), + [anon_sym_u8R_DQUOTE] = ACTIONS(1968), + [anon_sym_co_await] = ACTIONS(1966), + [anon_sym_new] = ACTIONS(1966), + [anon_sym_requires] = ACTIONS(1966), + [sym_this] = ACTIONS(1966), + [sym_alone_macro] = ACTIONS(1968), + [aux_sym_alone_macro_call_token1] = ACTIONS(1966), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_FORWARD] = ACTIONS(1966), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1966), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_PS_GET] = ACTIONS(1966), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1966), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1966), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1966), + [anon_sym_MOZ_COLD] = ACTIONS(1966), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1966), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1966), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1966), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1966), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1966), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1966), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1966), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1966), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1966), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1966), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1966), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1966), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_RAII] = ACTIONS(1966), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1966), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1966), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1966), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1966), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1966), + }, + [STATE(273)] = { + [ts_builtin_sym_end] = ACTIONS(2046), + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2044), + [aux_sym_preproc_def_token1] = ACTIONS(2044), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [sym_preproc_directive] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_AMP_AMP] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2044), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym___extension__] = ACTIONS(2044), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym_COLON_COLON] = ACTIONS(2046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2046), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___based] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [anon_sym_LBRACK] = ACTIONS(2044), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [anon_sym___inline] = ACTIONS(2044), + [anon_sym___inline__] = ACTIONS(2044), + [anon_sym___forceinline] = ACTIONS(2044), + [anon_sym_thread_local] = ACTIONS(2044), + [anon_sym___thread] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_constexpr] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym___restrict__] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym__Noreturn] = ACTIONS(2044), + [anon_sym_noreturn] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym_mutable] = ACTIONS(2044), + [anon_sym_constinit] = ACTIONS(2044), + [anon_sym_consteval] = ACTIONS(2044), + [anon_sym_alignas] = ACTIONS(2044), + [anon_sym__Alignas] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_class] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_else] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym___try] = ACTIONS(2044), + [anon_sym___leave] = ACTIONS(2044), + [anon_sym_not] = ACTIONS(2044), + [anon_sym_compl] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [anon_sym___alignof__] = ACTIONS(2044), + [anon_sym___alignof] = ACTIONS(2044), + [anon_sym__alignof] = ACTIONS(2044), + [anon_sym_alignof] = ACTIONS(2044), + [anon_sym__Alignof] = ACTIONS(2044), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2044), + [anon_sym_asm] = ACTIONS(2044), + [anon_sym___asm__] = ACTIONS(2044), + [anon_sym___asm] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [anon_sym_NULL] = ACTIONS(2044), + [anon_sym_nullptr] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2044), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_explicit] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(2044), + [anon_sym_operator] = ACTIONS(2044), + [anon_sym_try] = ACTIONS(2044), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_throw] = ACTIONS(2044), + [anon_sym_namespace] = ACTIONS(2044), + [anon_sym_using] = ACTIONS(2044), + [anon_sym_static_assert] = ACTIONS(2044), + [anon_sym_concept] = ACTIONS(2044), + [anon_sym_co_return] = ACTIONS(2044), + [anon_sym_co_yield] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2044), + [anon_sym_new] = ACTIONS(2044), + [anon_sym_requires] = ACTIONS(2044), + [sym_this] = ACTIONS(2044), + [sym_alone_macro] = ACTIONS(2046), + [aux_sym_alone_macro_call_token1] = ACTIONS(2044), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_FORWARD] = ACTIONS(2044), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_PS_GET] = ACTIONS(2044), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2044), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2044), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2044), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2044), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2044), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2044), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2044), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2044), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2044), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2044), + [anon_sym_MOZ_COLD] = ACTIONS(2044), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2044), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2044), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2044), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2044), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2044), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2044), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2044), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2044), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2044), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2044), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2044), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2044), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2044), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2044), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2044), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2044), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2044), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2044), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2044), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2044), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_NONNULL] = ACTIONS(2044), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2044), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2044), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2044), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2044), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2044), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_NORETURN] = ACTIONS(2044), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2044), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2044), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2044), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2044), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2044), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2044), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2044), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2044), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2044), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2044), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2044), + [anon_sym_MOZ_RAII] = ACTIONS(2044), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2044), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2044), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2044), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2044), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2044), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2044), + }, + [STATE(274)] = { + [sym_catch_clause] = STATE(218), + [aux_sym_constructor_try_statement_repeat1] = STATE(218), + [sym_identifier] = ACTIONS(1939), + [aux_sym_preproc_include_token1] = ACTIONS(1939), + [aux_sym_preproc_def_token1] = ACTIONS(1939), + [aux_sym_preproc_if_token1] = ACTIONS(1939), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1939), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1939), + [sym_preproc_directive] = ACTIONS(1939), + [anon_sym_LPAREN2] = ACTIONS(1941), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym___extension__] = ACTIONS(1939), + [anon_sym_typedef] = ACTIONS(1939), + [anon_sym_virtual] = ACTIONS(1939), + [anon_sym_extern] = ACTIONS(1939), + [anon_sym___attribute__] = ACTIONS(1939), + [anon_sym___attribute] = ACTIONS(1939), + [anon_sym_COLON_COLON] = ACTIONS(1941), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1941), + [anon_sym___declspec] = ACTIONS(1939), + [anon_sym___based] = ACTIONS(1939), + [anon_sym___cdecl] = ACTIONS(1939), + [anon_sym___clrcall] = ACTIONS(1939), + [anon_sym___stdcall] = ACTIONS(1939), + [anon_sym___fastcall] = ACTIONS(1939), + [anon_sym___thiscall] = ACTIONS(1939), + [anon_sym___vectorcall] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_RBRACE] = ACTIONS(1941), + [anon_sym_signed] = ACTIONS(1939), + [anon_sym_unsigned] = ACTIONS(1939), + [anon_sym_long] = ACTIONS(1939), + [anon_sym_short] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1939), + [anon_sym_static] = ACTIONS(1939), + [anon_sym_register] = ACTIONS(1939), + [anon_sym_inline] = ACTIONS(1939), + [anon_sym___inline] = ACTIONS(1939), + [anon_sym___inline__] = ACTIONS(1939), + [anon_sym___forceinline] = ACTIONS(1939), + [anon_sym_thread_local] = ACTIONS(1939), + [anon_sym___thread] = ACTIONS(1939), + [anon_sym_const] = ACTIONS(1939), + [anon_sym_constexpr] = ACTIONS(1939), + [anon_sym_volatile] = ACTIONS(1939), + [anon_sym_restrict] = ACTIONS(1939), + [anon_sym___restrict__] = ACTIONS(1939), + [anon_sym__Atomic] = ACTIONS(1939), + [anon_sym__Noreturn] = ACTIONS(1939), + [anon_sym_noreturn] = ACTIONS(1939), + [anon_sym__Nonnull] = ACTIONS(1939), + [anon_sym_mutable] = ACTIONS(1939), + [anon_sym_constinit] = ACTIONS(1939), + [anon_sym_consteval] = ACTIONS(1939), + [anon_sym_alignas] = ACTIONS(1939), + [anon_sym__Alignas] = ACTIONS(1939), + [sym_primitive_type] = ACTIONS(1939), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_class] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(1939), + [anon_sym_union] = ACTIONS(1939), + [anon_sym_if] = ACTIONS(1939), + [anon_sym_switch] = ACTIONS(1939), + [anon_sym_case] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(1939), + [anon_sym_while] = ACTIONS(1939), + [anon_sym_do] = ACTIONS(1939), + [anon_sym_for] = ACTIONS(1939), + [anon_sym_return] = ACTIONS(1939), + [anon_sym_break] = ACTIONS(1939), + [anon_sym_continue] = ACTIONS(1939), + [anon_sym_goto] = ACTIONS(1939), + [anon_sym___try] = ACTIONS(1939), + [anon_sym___leave] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1941), + [anon_sym_PLUS_PLUS] = ACTIONS(1941), + [anon_sym_sizeof] = ACTIONS(1939), + [anon_sym___alignof__] = ACTIONS(1939), + [anon_sym___alignof] = ACTIONS(1939), + [anon_sym__alignof] = ACTIONS(1939), + [anon_sym_alignof] = ACTIONS(1939), + [anon_sym__Alignof] = ACTIONS(1939), + [anon_sym_offsetof] = ACTIONS(1939), + [anon_sym__Generic] = ACTIONS(1939), + [anon_sym_asm] = ACTIONS(1939), + [anon_sym___asm__] = ACTIONS(1939), + [anon_sym___asm] = ACTIONS(1939), + [sym_number_literal] = ACTIONS(1941), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1941), + [anon_sym_u_DQUOTE] = ACTIONS(1941), + [anon_sym_U_DQUOTE] = ACTIONS(1941), + [anon_sym_u8_DQUOTE] = ACTIONS(1941), + [anon_sym_DQUOTE] = ACTIONS(1941), + [sym_true] = ACTIONS(1939), + [sym_false] = ACTIONS(1939), + [anon_sym_NULL] = ACTIONS(1939), + [anon_sym_nullptr] = ACTIONS(1939), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1939), + [anon_sym_decltype] = ACTIONS(1939), + [anon_sym_explicit] = ACTIONS(1939), + [anon_sym_typename] = ACTIONS(1939), + [anon_sym_template] = ACTIONS(1939), + [anon_sym_operator] = ACTIONS(1939), + [anon_sym_try] = ACTIONS(1939), + [anon_sym_delete] = ACTIONS(1939), + [anon_sym_throw] = ACTIONS(1939), + [anon_sym_namespace] = ACTIONS(1939), + [anon_sym_using] = ACTIONS(1939), + [anon_sym_static_assert] = ACTIONS(1939), + [anon_sym_concept] = ACTIONS(1939), + [anon_sym_co_return] = ACTIONS(1939), + [anon_sym_co_yield] = ACTIONS(1939), + [anon_sym_catch] = ACTIONS(2248), + [anon_sym_R_DQUOTE] = ACTIONS(1941), + [anon_sym_LR_DQUOTE] = ACTIONS(1941), + [anon_sym_uR_DQUOTE] = ACTIONS(1941), + [anon_sym_UR_DQUOTE] = ACTIONS(1941), + [anon_sym_u8R_DQUOTE] = ACTIONS(1941), + [anon_sym_co_await] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1939), + [anon_sym_requires] = ACTIONS(1939), + [sym_this] = ACTIONS(1939), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1939), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_FORWARD] = ACTIONS(1939), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1939), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1939), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1939), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1939), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_PS_GET] = ACTIONS(1939), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1939), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1939), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1939), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1939), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1939), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1939), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1939), + [anon_sym_MOZ_COLD] = ACTIONS(1939), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1939), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1939), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1939), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1939), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1939), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1939), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1939), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1939), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1939), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1939), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1939), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1939), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1939), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_NONNULL] = ACTIONS(1939), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1939), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1939), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1939), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1939), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1939), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1939), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1939), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1939), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1939), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1939), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1939), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1939), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1939), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1939), + [anon_sym_MOZ_RAII] = ACTIONS(1939), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1939), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1939), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1939), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1939), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1939), + }, + [STATE(275)] = { + [ts_builtin_sym_end] = ACTIONS(2166), + [sym_identifier] = ACTIONS(2164), + [aux_sym_preproc_include_token1] = ACTIONS(2164), + [aux_sym_preproc_def_token1] = ACTIONS(2164), + [aux_sym_preproc_if_token1] = ACTIONS(2164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2164), + [sym_preproc_directive] = ACTIONS(2164), + [anon_sym_LPAREN2] = ACTIONS(2166), + [anon_sym_BANG] = ACTIONS(2166), + [anon_sym_TILDE] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_PLUS] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2166), + [anon_sym_AMP_AMP] = ACTIONS(2166), + [anon_sym_AMP] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym___extension__] = ACTIONS(2164), + [anon_sym_typedef] = ACTIONS(2164), + [anon_sym_virtual] = ACTIONS(2164), + [anon_sym_extern] = ACTIONS(2164), + [anon_sym___attribute__] = ACTIONS(2164), + [anon_sym___attribute] = ACTIONS(2164), + [anon_sym_COLON_COLON] = ACTIONS(2166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2166), + [anon_sym___declspec] = ACTIONS(2164), + [anon_sym___based] = ACTIONS(2164), + [anon_sym___cdecl] = ACTIONS(2164), + [anon_sym___clrcall] = ACTIONS(2164), + [anon_sym___stdcall] = ACTIONS(2164), + [anon_sym___fastcall] = ACTIONS(2164), + [anon_sym___thiscall] = ACTIONS(2164), + [anon_sym___vectorcall] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_signed] = ACTIONS(2164), + [anon_sym_unsigned] = ACTIONS(2164), + [anon_sym_long] = ACTIONS(2164), + [anon_sym_short] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_static] = ACTIONS(2164), + [anon_sym_register] = ACTIONS(2164), + [anon_sym_inline] = ACTIONS(2164), + [anon_sym___inline] = ACTIONS(2164), + [anon_sym___inline__] = ACTIONS(2164), + [anon_sym___forceinline] = ACTIONS(2164), + [anon_sym_thread_local] = ACTIONS(2164), + [anon_sym___thread] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [anon_sym_constexpr] = ACTIONS(2164), + [anon_sym_volatile] = ACTIONS(2164), + [anon_sym_restrict] = ACTIONS(2164), + [anon_sym___restrict__] = ACTIONS(2164), + [anon_sym__Atomic] = ACTIONS(2164), + [anon_sym__Noreturn] = ACTIONS(2164), + [anon_sym_noreturn] = ACTIONS(2164), + [anon_sym__Nonnull] = ACTIONS(2164), + [anon_sym_mutable] = ACTIONS(2164), + [anon_sym_constinit] = ACTIONS(2164), + [anon_sym_consteval] = ACTIONS(2164), + [anon_sym_alignas] = ACTIONS(2164), + [anon_sym__Alignas] = ACTIONS(2164), + [sym_primitive_type] = ACTIONS(2164), + [anon_sym_enum] = ACTIONS(2164), + [anon_sym_class] = ACTIONS(2164), + [anon_sym_struct] = ACTIONS(2164), + [anon_sym_union] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_else] = ACTIONS(2164), + [anon_sym_switch] = ACTIONS(2164), + [anon_sym_case] = ACTIONS(2164), + [anon_sym_default] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_goto] = ACTIONS(2164), + [anon_sym___try] = ACTIONS(2164), + [anon_sym___leave] = ACTIONS(2164), + [anon_sym_not] = ACTIONS(2164), + [anon_sym_compl] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2166), + [anon_sym_sizeof] = ACTIONS(2164), + [anon_sym___alignof__] = ACTIONS(2164), + [anon_sym___alignof] = ACTIONS(2164), + [anon_sym__alignof] = ACTIONS(2164), + [anon_sym_alignof] = ACTIONS(2164), + [anon_sym__Alignof] = ACTIONS(2164), + [anon_sym_offsetof] = ACTIONS(2164), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2164), + [anon_sym___asm__] = ACTIONS(2164), + [anon_sym___asm] = ACTIONS(2164), + [sym_number_literal] = ACTIONS(2166), + [anon_sym_L_SQUOTE] = ACTIONS(2166), + [anon_sym_u_SQUOTE] = ACTIONS(2166), + [anon_sym_U_SQUOTE] = ACTIONS(2166), + [anon_sym_u8_SQUOTE] = ACTIONS(2166), + [anon_sym_SQUOTE] = ACTIONS(2166), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2164), + [sym_false] = ACTIONS(2164), + [anon_sym_NULL] = ACTIONS(2164), + [anon_sym_nullptr] = ACTIONS(2164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2164), + [anon_sym_decltype] = ACTIONS(2164), + [anon_sym_explicit] = ACTIONS(2164), + [anon_sym_typename] = ACTIONS(2164), + [anon_sym_template] = ACTIONS(2164), + [anon_sym_operator] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_delete] = ACTIONS(2164), + [anon_sym_throw] = ACTIONS(2164), + [anon_sym_namespace] = ACTIONS(2164), + [anon_sym_using] = ACTIONS(2164), + [anon_sym_static_assert] = ACTIONS(2164), + [anon_sym_concept] = ACTIONS(2164), + [anon_sym_co_return] = ACTIONS(2164), + [anon_sym_co_yield] = ACTIONS(2164), + [anon_sym_R_DQUOTE] = ACTIONS(2166), + [anon_sym_LR_DQUOTE] = ACTIONS(2166), + [anon_sym_uR_DQUOTE] = ACTIONS(2166), + [anon_sym_UR_DQUOTE] = ACTIONS(2166), + [anon_sym_u8R_DQUOTE] = ACTIONS(2166), + [anon_sym_co_await] = ACTIONS(2164), + [anon_sym_new] = ACTIONS(2164), + [anon_sym_requires] = ACTIONS(2164), + [sym_this] = ACTIONS(2164), + [sym_alone_macro] = ACTIONS(2166), + [aux_sym_alone_macro_call_token1] = ACTIONS(2164), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_FORWARD] = ACTIONS(2164), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2164), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_PS_GET] = ACTIONS(2164), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2164), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2164), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2164), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2164), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2164), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2164), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2164), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2164), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2164), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2164), + [anon_sym_MOZ_COLD] = ACTIONS(2164), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2164), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2164), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2164), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2164), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2164), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2164), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2164), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2164), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2164), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2164), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2164), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2164), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2164), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2164), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2164), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2164), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2164), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2164), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2164), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2164), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_NONNULL] = ACTIONS(2164), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2164), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2164), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2164), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2164), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2164), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_NORETURN] = ACTIONS(2164), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2164), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2164), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2164), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2164), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2164), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2164), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2164), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2164), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2164), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2164), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2164), + [anon_sym_MOZ_RAII] = ACTIONS(2164), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2164), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2164), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2164), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2164), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2164), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2164), + }, + [STATE(276)] = { + [ts_builtin_sym_end] = ACTIONS(2026), + [sym_identifier] = ACTIONS(2024), + [aux_sym_preproc_include_token1] = ACTIONS(2024), + [aux_sym_preproc_def_token1] = ACTIONS(2024), + [aux_sym_preproc_if_token1] = ACTIONS(2024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2024), + [sym_preproc_directive] = ACTIONS(2024), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2026), + [anon_sym_TILDE] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_typedef] = ACTIONS(2024), + [anon_sym_virtual] = ACTIONS(2024), + [anon_sym_extern] = ACTIONS(2024), + [anon_sym___attribute__] = ACTIONS(2024), + [anon_sym___attribute] = ACTIONS(2024), + [anon_sym_COLON_COLON] = ACTIONS(2026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2026), + [anon_sym___declspec] = ACTIONS(2024), + [anon_sym___based] = ACTIONS(2024), + [anon_sym___cdecl] = ACTIONS(2024), + [anon_sym___clrcall] = ACTIONS(2024), + [anon_sym___stdcall] = ACTIONS(2024), + [anon_sym___fastcall] = ACTIONS(2024), + [anon_sym___thiscall] = ACTIONS(2024), + [anon_sym___vectorcall] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_signed] = ACTIONS(2024), + [anon_sym_unsigned] = ACTIONS(2024), + [anon_sym_long] = ACTIONS(2024), + [anon_sym_short] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_static] = ACTIONS(2024), + [anon_sym_register] = ACTIONS(2024), + [anon_sym_inline] = ACTIONS(2024), + [anon_sym___inline] = ACTIONS(2024), + [anon_sym___inline__] = ACTIONS(2024), + [anon_sym___forceinline] = ACTIONS(2024), + [anon_sym_thread_local] = ACTIONS(2024), + [anon_sym___thread] = ACTIONS(2024), + [anon_sym_const] = ACTIONS(2024), + [anon_sym_constexpr] = ACTIONS(2024), + [anon_sym_volatile] = ACTIONS(2024), + [anon_sym_restrict] = ACTIONS(2024), + [anon_sym___restrict__] = ACTIONS(2024), + [anon_sym__Atomic] = ACTIONS(2024), + [anon_sym__Noreturn] = ACTIONS(2024), + [anon_sym_noreturn] = ACTIONS(2024), + [anon_sym__Nonnull] = ACTIONS(2024), + [anon_sym_mutable] = ACTIONS(2024), + [anon_sym_constinit] = ACTIONS(2024), + [anon_sym_consteval] = ACTIONS(2024), + [anon_sym_alignas] = ACTIONS(2024), + [anon_sym__Alignas] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2024), + [anon_sym_enum] = ACTIONS(2024), + [anon_sym_class] = ACTIONS(2024), + [anon_sym_struct] = ACTIONS(2024), + [anon_sym_union] = ACTIONS(2024), + [anon_sym_if] = ACTIONS(2024), + [anon_sym_else] = ACTIONS(2024), + [anon_sym_switch] = ACTIONS(2024), + [anon_sym_case] = ACTIONS(2024), + [anon_sym_default] = ACTIONS(2024), + [anon_sym_while] = ACTIONS(2024), + [anon_sym_do] = ACTIONS(2024), + [anon_sym_for] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2024), + [anon_sym_break] = ACTIONS(2024), + [anon_sym_continue] = ACTIONS(2024), + [anon_sym_goto] = ACTIONS(2024), + [anon_sym___try] = ACTIONS(2024), + [anon_sym___leave] = ACTIONS(2024), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_compl] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2024), + [anon_sym__Generic] = ACTIONS(2024), + [anon_sym_asm] = ACTIONS(2024), + [anon_sym___asm__] = ACTIONS(2024), + [anon_sym___asm] = ACTIONS(2024), + [sym_number_literal] = ACTIONS(2026), + [anon_sym_L_SQUOTE] = ACTIONS(2026), + [anon_sym_u_SQUOTE] = ACTIONS(2026), + [anon_sym_U_SQUOTE] = ACTIONS(2026), + [anon_sym_u8_SQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2026), + [anon_sym_L_DQUOTE] = ACTIONS(2026), + [anon_sym_u_DQUOTE] = ACTIONS(2026), + [anon_sym_U_DQUOTE] = ACTIONS(2026), + [anon_sym_u8_DQUOTE] = ACTIONS(2026), + [anon_sym_DQUOTE] = ACTIONS(2026), + [sym_true] = ACTIONS(2024), + [sym_false] = ACTIONS(2024), + [anon_sym_NULL] = ACTIONS(2024), + [anon_sym_nullptr] = ACTIONS(2024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2024), + [anon_sym_decltype] = ACTIONS(2024), + [anon_sym_explicit] = ACTIONS(2024), + [anon_sym_typename] = ACTIONS(2024), + [anon_sym_template] = ACTIONS(2024), + [anon_sym_operator] = ACTIONS(2024), + [anon_sym_try] = ACTIONS(2024), + [anon_sym_delete] = ACTIONS(2024), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_namespace] = ACTIONS(2024), + [anon_sym_using] = ACTIONS(2024), + [anon_sym_static_assert] = ACTIONS(2024), + [anon_sym_concept] = ACTIONS(2024), + [anon_sym_co_return] = ACTIONS(2024), + [anon_sym_co_yield] = ACTIONS(2024), + [anon_sym_R_DQUOTE] = ACTIONS(2026), + [anon_sym_LR_DQUOTE] = ACTIONS(2026), + [anon_sym_uR_DQUOTE] = ACTIONS(2026), + [anon_sym_UR_DQUOTE] = ACTIONS(2026), + [anon_sym_u8R_DQUOTE] = ACTIONS(2026), + [anon_sym_co_await] = ACTIONS(2024), + [anon_sym_new] = ACTIONS(2024), + [anon_sym_requires] = ACTIONS(2024), + [sym_this] = ACTIONS(2024), + [sym_alone_macro] = ACTIONS(2026), + [aux_sym_alone_macro_call_token1] = ACTIONS(2024), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_FORWARD] = ACTIONS(2024), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2024), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_PS_GET] = ACTIONS(2024), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2024), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2024), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2024), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2024), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2024), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2024), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2024), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2024), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2024), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2024), + [anon_sym_MOZ_COLD] = ACTIONS(2024), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2024), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2024), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2024), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2024), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2024), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2024), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2024), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2024), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2024), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2024), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2024), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2024), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2024), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2024), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2024), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2024), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2024), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2024), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2024), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2024), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_NONNULL] = ACTIONS(2024), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2024), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2024), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2024), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2024), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2024), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_NORETURN] = ACTIONS(2024), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2024), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2024), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2024), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2024), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2024), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2024), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2024), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2024), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2024), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2024), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2024), + [anon_sym_MOZ_RAII] = ACTIONS(2024), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2024), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2024), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2024), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2024), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2024), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2024), + }, + [STATE(277)] = { + [ts_builtin_sym_end] = ACTIONS(1990), + [sym_identifier] = ACTIONS(1988), + [aux_sym_preproc_include_token1] = ACTIONS(1988), + [aux_sym_preproc_def_token1] = ACTIONS(1988), + [aux_sym_preproc_if_token1] = ACTIONS(1988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1988), + [sym_preproc_directive] = ACTIONS(1988), + [anon_sym_LPAREN2] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_TILDE] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1988), + [anon_sym_PLUS] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1990), + [anon_sym_AMP_AMP] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1988), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym___extension__] = ACTIONS(1988), + [anon_sym_typedef] = ACTIONS(1988), + [anon_sym_virtual] = ACTIONS(1988), + [anon_sym_extern] = ACTIONS(1988), + [anon_sym___attribute__] = ACTIONS(1988), + [anon_sym___attribute] = ACTIONS(1988), + [anon_sym_COLON_COLON] = ACTIONS(1990), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1990), + [anon_sym___declspec] = ACTIONS(1988), + [anon_sym___based] = ACTIONS(1988), + [anon_sym___cdecl] = ACTIONS(1988), + [anon_sym___clrcall] = ACTIONS(1988), + [anon_sym___stdcall] = ACTIONS(1988), + [anon_sym___fastcall] = ACTIONS(1988), + [anon_sym___thiscall] = ACTIONS(1988), + [anon_sym___vectorcall] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1990), + [anon_sym_signed] = ACTIONS(1988), + [anon_sym_unsigned] = ACTIONS(1988), + [anon_sym_long] = ACTIONS(1988), + [anon_sym_short] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1988), + [anon_sym_register] = ACTIONS(1988), + [anon_sym_inline] = ACTIONS(1988), + [anon_sym___inline] = ACTIONS(1988), + [anon_sym___inline__] = ACTIONS(1988), + [anon_sym___forceinline] = ACTIONS(1988), + [anon_sym_thread_local] = ACTIONS(1988), + [anon_sym___thread] = ACTIONS(1988), + [anon_sym_const] = ACTIONS(1988), + [anon_sym_constexpr] = ACTIONS(1988), + [anon_sym_volatile] = ACTIONS(1988), + [anon_sym_restrict] = ACTIONS(1988), + [anon_sym___restrict__] = ACTIONS(1988), + [anon_sym__Atomic] = ACTIONS(1988), + [anon_sym__Noreturn] = ACTIONS(1988), + [anon_sym_noreturn] = ACTIONS(1988), + [anon_sym__Nonnull] = ACTIONS(1988), + [anon_sym_mutable] = ACTIONS(1988), + [anon_sym_constinit] = ACTIONS(1988), + [anon_sym_consteval] = ACTIONS(1988), + [anon_sym_alignas] = ACTIONS(1988), + [anon_sym__Alignas] = ACTIONS(1988), + [sym_primitive_type] = ACTIONS(1988), + [anon_sym_enum] = ACTIONS(1988), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1988), + [anon_sym_union] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_else] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_do] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_return] = ACTIONS(1988), + [anon_sym_break] = ACTIONS(1988), + [anon_sym_continue] = ACTIONS(1988), + [anon_sym_goto] = ACTIONS(1988), + [anon_sym___try] = ACTIONS(1988), + [anon_sym___leave] = ACTIONS(1988), + [anon_sym_not] = ACTIONS(1988), + [anon_sym_compl] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1990), + [anon_sym_PLUS_PLUS] = ACTIONS(1990), + [anon_sym_sizeof] = ACTIONS(1988), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1988), + [anon_sym__Generic] = ACTIONS(1988), + [anon_sym_asm] = ACTIONS(1988), + [anon_sym___asm__] = ACTIONS(1988), + [anon_sym___asm] = ACTIONS(1988), + [sym_number_literal] = ACTIONS(1990), + [anon_sym_L_SQUOTE] = ACTIONS(1990), + [anon_sym_u_SQUOTE] = ACTIONS(1990), + [anon_sym_U_SQUOTE] = ACTIONS(1990), + [anon_sym_u8_SQUOTE] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_L_DQUOTE] = ACTIONS(1990), + [anon_sym_u_DQUOTE] = ACTIONS(1990), + [anon_sym_U_DQUOTE] = ACTIONS(1990), + [anon_sym_u8_DQUOTE] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1990), + [sym_true] = ACTIONS(1988), + [sym_false] = ACTIONS(1988), + [anon_sym_NULL] = ACTIONS(1988), + [anon_sym_nullptr] = ACTIONS(1988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1988), + [anon_sym_decltype] = ACTIONS(1988), + [anon_sym_explicit] = ACTIONS(1988), + [anon_sym_typename] = ACTIONS(1988), + [anon_sym_template] = ACTIONS(1988), + [anon_sym_operator] = ACTIONS(1988), + [anon_sym_try] = ACTIONS(1988), + [anon_sym_delete] = ACTIONS(1988), + [anon_sym_throw] = ACTIONS(1988), + [anon_sym_namespace] = ACTIONS(1988), + [anon_sym_using] = ACTIONS(1988), + [anon_sym_static_assert] = ACTIONS(1988), + [anon_sym_concept] = ACTIONS(1988), + [anon_sym_co_return] = ACTIONS(1988), + [anon_sym_co_yield] = ACTIONS(1988), + [anon_sym_R_DQUOTE] = ACTIONS(1990), + [anon_sym_LR_DQUOTE] = ACTIONS(1990), + [anon_sym_uR_DQUOTE] = ACTIONS(1990), + [anon_sym_UR_DQUOTE] = ACTIONS(1990), + [anon_sym_u8R_DQUOTE] = ACTIONS(1990), + [anon_sym_co_await] = ACTIONS(1988), + [anon_sym_new] = ACTIONS(1988), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1988), + [sym_alone_macro] = ACTIONS(1990), + [aux_sym_alone_macro_call_token1] = ACTIONS(1988), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_FORWARD] = ACTIONS(1988), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1988), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_PS_GET] = ACTIONS(1988), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1988), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1988), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1988), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1988), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1988), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1988), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1988), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1988), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1988), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1988), + [anon_sym_MOZ_COLD] = ACTIONS(1988), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1988), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1988), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1988), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1988), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1988), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1988), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1988), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1988), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1988), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1988), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1988), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1988), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1988), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1988), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1988), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1988), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1988), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1988), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1988), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1988), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_NONNULL] = ACTIONS(1988), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1988), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1988), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1988), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1988), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1988), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_NORETURN] = ACTIONS(1988), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1988), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1988), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1988), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1988), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1988), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1988), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1988), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1988), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1988), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1988), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1988), + [anon_sym_MOZ_RAII] = ACTIONS(1988), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1988), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1988), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1988), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1988), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1988), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1988), + }, + [STATE(278)] = { + [ts_builtin_sym_end] = ACTIONS(2030), + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2028), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [sym_preproc_directive] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym___extension__] = ACTIONS(2028), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_virtual] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym_COLON_COLON] = ACTIONS(2030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2030), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___based] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [anon_sym___inline] = ACTIONS(2028), + [anon_sym___inline__] = ACTIONS(2028), + [anon_sym___forceinline] = ACTIONS(2028), + [anon_sym_thread_local] = ACTIONS(2028), + [anon_sym___thread] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_constexpr] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym___restrict__] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym__Noreturn] = ACTIONS(2028), + [anon_sym_noreturn] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym_mutable] = ACTIONS(2028), + [anon_sym_constinit] = ACTIONS(2028), + [anon_sym_consteval] = ACTIONS(2028), + [anon_sym_alignas] = ACTIONS(2028), + [anon_sym__Alignas] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_class] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_else] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym___try] = ACTIONS(2028), + [anon_sym___leave] = ACTIONS(2028), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [anon_sym___alignof__] = ACTIONS(2028), + [anon_sym___alignof] = ACTIONS(2028), + [anon_sym__alignof] = ACTIONS(2028), + [anon_sym_alignof] = ACTIONS(2028), + [anon_sym__Alignof] = ACTIONS(2028), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2028), + [anon_sym___asm__] = ACTIONS(2028), + [anon_sym___asm] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [anon_sym_NULL] = ACTIONS(2028), + [anon_sym_nullptr] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2028), + [anon_sym_decltype] = ACTIONS(2028), + [anon_sym_explicit] = ACTIONS(2028), + [anon_sym_typename] = ACTIONS(2028), + [anon_sym_template] = ACTIONS(2028), + [anon_sym_operator] = ACTIONS(2028), + [anon_sym_try] = ACTIONS(2028), + [anon_sym_delete] = ACTIONS(2028), + [anon_sym_throw] = ACTIONS(2028), + [anon_sym_namespace] = ACTIONS(2028), + [anon_sym_using] = ACTIONS(2028), + [anon_sym_static_assert] = ACTIONS(2028), + [anon_sym_concept] = ACTIONS(2028), + [anon_sym_co_return] = ACTIONS(2028), + [anon_sym_co_yield] = ACTIONS(2028), + [anon_sym_R_DQUOTE] = ACTIONS(2030), + [anon_sym_LR_DQUOTE] = ACTIONS(2030), + [anon_sym_uR_DQUOTE] = ACTIONS(2030), + [anon_sym_UR_DQUOTE] = ACTIONS(2030), + [anon_sym_u8R_DQUOTE] = ACTIONS(2030), + [anon_sym_co_await] = ACTIONS(2028), + [anon_sym_new] = ACTIONS(2028), + [anon_sym_requires] = ACTIONS(2028), + [sym_this] = ACTIONS(2028), + [sym_alone_macro] = ACTIONS(2030), + [aux_sym_alone_macro_call_token1] = ACTIONS(2028), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_FORWARD] = ACTIONS(2028), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_PS_GET] = ACTIONS(2028), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2028), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2028), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2028), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2028), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2028), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2028), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2028), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2028), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2028), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2028), + [anon_sym_MOZ_COLD] = ACTIONS(2028), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2028), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2028), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2028), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2028), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2028), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2028), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2028), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2028), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2028), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2028), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2028), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2028), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2028), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2028), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2028), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2028), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2028), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2028), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2028), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2028), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_NONNULL] = ACTIONS(2028), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2028), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2028), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2028), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2028), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2028), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_NORETURN] = ACTIONS(2028), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2028), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2028), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2028), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2028), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2028), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2028), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2028), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2028), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2028), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2028), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2028), + [anon_sym_MOZ_RAII] = ACTIONS(2028), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2028), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2028), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2028), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2028), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2028), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2028), + }, + [STATE(279)] = { + [ts_builtin_sym_end] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1992), + [aux_sym_preproc_include_token1] = ACTIONS(1992), + [aux_sym_preproc_def_token1] = ACTIONS(1992), + [aux_sym_preproc_if_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1992), + [sym_preproc_directive] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_AMP_AMP] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1992), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym___extension__] = ACTIONS(1992), + [anon_sym_typedef] = ACTIONS(1992), + [anon_sym_virtual] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1992), + [anon_sym___attribute] = ACTIONS(1992), + [anon_sym_COLON_COLON] = ACTIONS(1994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1994), + [anon_sym___declspec] = ACTIONS(1992), + [anon_sym___based] = ACTIONS(1992), + [anon_sym___cdecl] = ACTIONS(1992), + [anon_sym___clrcall] = ACTIONS(1992), + [anon_sym___stdcall] = ACTIONS(1992), + [anon_sym___fastcall] = ACTIONS(1992), + [anon_sym___thiscall] = ACTIONS(1992), + [anon_sym___vectorcall] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_signed] = ACTIONS(1992), + [anon_sym_unsigned] = ACTIONS(1992), + [anon_sym_long] = ACTIONS(1992), + [anon_sym_short] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1992), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_inline] = ACTIONS(1992), + [anon_sym___inline] = ACTIONS(1992), + [anon_sym___inline__] = ACTIONS(1992), + [anon_sym___forceinline] = ACTIONS(1992), + [anon_sym_thread_local] = ACTIONS(1992), + [anon_sym___thread] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_constexpr] = ACTIONS(1992), + [anon_sym_volatile] = ACTIONS(1992), + [anon_sym_restrict] = ACTIONS(1992), + [anon_sym___restrict__] = ACTIONS(1992), + [anon_sym__Atomic] = ACTIONS(1992), + [anon_sym__Noreturn] = ACTIONS(1992), + [anon_sym_noreturn] = ACTIONS(1992), + [anon_sym__Nonnull] = ACTIONS(1992), + [anon_sym_mutable] = ACTIONS(1992), + [anon_sym_constinit] = ACTIONS(1992), + [anon_sym_consteval] = ACTIONS(1992), + [anon_sym_alignas] = ACTIONS(1992), + [anon_sym__Alignas] = ACTIONS(1992), + [sym_primitive_type] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_class] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1992), + [anon_sym_switch] = ACTIONS(1992), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(1992), + [anon_sym___try] = ACTIONS(1992), + [anon_sym___leave] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1992), + [anon_sym___alignof__] = ACTIONS(1992), + [anon_sym___alignof] = ACTIONS(1992), + [anon_sym__alignof] = ACTIONS(1992), + [anon_sym_alignof] = ACTIONS(1992), + [anon_sym__Alignof] = ACTIONS(1992), + [anon_sym_offsetof] = ACTIONS(1992), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_asm] = ACTIONS(1992), + [anon_sym___asm__] = ACTIONS(1992), + [anon_sym___asm] = ACTIONS(1992), + [sym_number_literal] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1994), + [anon_sym_u_SQUOTE] = ACTIONS(1994), + [anon_sym_U_SQUOTE] = ACTIONS(1994), + [anon_sym_u8_SQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_L_DQUOTE] = ACTIONS(1994), + [anon_sym_u_DQUOTE] = ACTIONS(1994), + [anon_sym_U_DQUOTE] = ACTIONS(1994), + [anon_sym_u8_DQUOTE] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym_true] = ACTIONS(1992), + [sym_false] = ACTIONS(1992), + [anon_sym_NULL] = ACTIONS(1992), + [anon_sym_nullptr] = ACTIONS(1992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1992), + [anon_sym_decltype] = ACTIONS(1992), + [anon_sym_explicit] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(1992), + [anon_sym_template] = ACTIONS(1992), + [anon_sym_operator] = ACTIONS(1992), + [anon_sym_try] = ACTIONS(1992), + [anon_sym_delete] = ACTIONS(1992), + [anon_sym_throw] = ACTIONS(1992), + [anon_sym_namespace] = ACTIONS(1992), + [anon_sym_using] = ACTIONS(1992), + [anon_sym_static_assert] = ACTIONS(1992), + [anon_sym_concept] = ACTIONS(1992), + [anon_sym_co_return] = ACTIONS(1992), + [anon_sym_co_yield] = ACTIONS(1992), + [anon_sym_R_DQUOTE] = ACTIONS(1994), + [anon_sym_LR_DQUOTE] = ACTIONS(1994), + [anon_sym_uR_DQUOTE] = ACTIONS(1994), + [anon_sym_UR_DQUOTE] = ACTIONS(1994), + [anon_sym_u8R_DQUOTE] = ACTIONS(1994), + [anon_sym_co_await] = ACTIONS(1992), + [anon_sym_new] = ACTIONS(1992), + [anon_sym_requires] = ACTIONS(1992), + [sym_this] = ACTIONS(1992), + [sym_alone_macro] = ACTIONS(1994), + [aux_sym_alone_macro_call_token1] = ACTIONS(1992), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_FORWARD] = ACTIONS(1992), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_PS_GET] = ACTIONS(1992), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1992), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1992), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1992), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1992), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1992), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1992), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1992), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1992), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1992), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1992), + [anon_sym_MOZ_COLD] = ACTIONS(1992), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1992), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1992), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1992), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1992), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1992), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1992), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1992), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1992), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1992), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1992), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1992), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1992), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1992), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1992), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1992), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1992), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1992), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1992), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1992), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1992), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_NONNULL] = ACTIONS(1992), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1992), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1992), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1992), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1992), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1992), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_NORETURN] = ACTIONS(1992), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1992), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1992), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1992), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1992), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1992), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1992), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1992), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1992), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1992), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1992), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1992), + [anon_sym_MOZ_RAII] = ACTIONS(1992), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1992), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1992), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1992), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1992), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1992), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1992), + }, + [STATE(280)] = { + [ts_builtin_sym_end] = ACTIONS(1998), + [sym_identifier] = ACTIONS(1996), + [aux_sym_preproc_include_token1] = ACTIONS(1996), + [aux_sym_preproc_def_token1] = ACTIONS(1996), + [aux_sym_preproc_if_token1] = ACTIONS(1996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1996), + [sym_preproc_directive] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(1998), + [anon_sym_BANG] = ACTIONS(1998), + [anon_sym_TILDE] = ACTIONS(1998), + [anon_sym_DASH] = ACTIONS(1996), + [anon_sym_PLUS] = ACTIONS(1996), + [anon_sym_STAR] = ACTIONS(1998), + [anon_sym_AMP_AMP] = ACTIONS(1998), + [anon_sym_AMP] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_typedef] = ACTIONS(1996), + [anon_sym_virtual] = ACTIONS(1996), + [anon_sym_extern] = ACTIONS(1996), + [anon_sym___attribute__] = ACTIONS(1996), + [anon_sym___attribute] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1998), + [anon_sym___declspec] = ACTIONS(1996), + [anon_sym___based] = ACTIONS(1996), + [anon_sym___cdecl] = ACTIONS(1996), + [anon_sym___clrcall] = ACTIONS(1996), + [anon_sym___stdcall] = ACTIONS(1996), + [anon_sym___fastcall] = ACTIONS(1996), + [anon_sym___thiscall] = ACTIONS(1996), + [anon_sym___vectorcall] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1998), + [anon_sym_signed] = ACTIONS(1996), + [anon_sym_unsigned] = ACTIONS(1996), + [anon_sym_long] = ACTIONS(1996), + [anon_sym_short] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_static] = ACTIONS(1996), + [anon_sym_register] = ACTIONS(1996), + [anon_sym_inline] = ACTIONS(1996), + [anon_sym___inline] = ACTIONS(1996), + [anon_sym___inline__] = ACTIONS(1996), + [anon_sym___forceinline] = ACTIONS(1996), + [anon_sym_thread_local] = ACTIONS(1996), + [anon_sym___thread] = ACTIONS(1996), + [anon_sym_const] = ACTIONS(1996), + [anon_sym_constexpr] = ACTIONS(1996), + [anon_sym_volatile] = ACTIONS(1996), + [anon_sym_restrict] = ACTIONS(1996), + [anon_sym___restrict__] = ACTIONS(1996), + [anon_sym__Atomic] = ACTIONS(1996), + [anon_sym__Noreturn] = ACTIONS(1996), + [anon_sym_noreturn] = ACTIONS(1996), + [anon_sym__Nonnull] = ACTIONS(1996), + [anon_sym_mutable] = ACTIONS(1996), + [anon_sym_constinit] = ACTIONS(1996), + [anon_sym_consteval] = ACTIONS(1996), + [anon_sym_alignas] = ACTIONS(1996), + [anon_sym__Alignas] = ACTIONS(1996), + [sym_primitive_type] = ACTIONS(1996), + [anon_sym_enum] = ACTIONS(1996), + [anon_sym_class] = ACTIONS(1996), + [anon_sym_struct] = ACTIONS(1996), + [anon_sym_union] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1996), + [anon_sym_else] = ACTIONS(1996), + [anon_sym_switch] = ACTIONS(1996), + [anon_sym_case] = ACTIONS(1996), + [anon_sym_default] = ACTIONS(1996), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(1996), + [anon_sym_for] = ACTIONS(1996), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_break] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(1996), + [anon_sym_goto] = ACTIONS(1996), + [anon_sym___try] = ACTIONS(1996), + [anon_sym___leave] = ACTIONS(1996), + [anon_sym_not] = ACTIONS(1996), + [anon_sym_compl] = ACTIONS(1996), + [anon_sym_DASH_DASH] = ACTIONS(1998), + [anon_sym_PLUS_PLUS] = ACTIONS(1998), + [anon_sym_sizeof] = ACTIONS(1996), + [anon_sym___alignof__] = ACTIONS(1996), + [anon_sym___alignof] = ACTIONS(1996), + [anon_sym__alignof] = ACTIONS(1996), + [anon_sym_alignof] = ACTIONS(1996), + [anon_sym__Alignof] = ACTIONS(1996), + [anon_sym_offsetof] = ACTIONS(1996), + [anon_sym__Generic] = ACTIONS(1996), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(1998), + [anon_sym_u_SQUOTE] = ACTIONS(1998), + [anon_sym_U_SQUOTE] = ACTIONS(1998), + [anon_sym_u8_SQUOTE] = ACTIONS(1998), + [anon_sym_SQUOTE] = ACTIONS(1998), + [anon_sym_L_DQUOTE] = ACTIONS(1998), + [anon_sym_u_DQUOTE] = ACTIONS(1998), + [anon_sym_U_DQUOTE] = ACTIONS(1998), + [anon_sym_u8_DQUOTE] = ACTIONS(1998), + [anon_sym_DQUOTE] = ACTIONS(1998), + [sym_true] = ACTIONS(1996), + [sym_false] = ACTIONS(1996), + [anon_sym_NULL] = ACTIONS(1996), + [anon_sym_nullptr] = ACTIONS(1996), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1996), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_explicit] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1996), + [anon_sym_template] = ACTIONS(1996), + [anon_sym_operator] = ACTIONS(1996), + [anon_sym_try] = ACTIONS(1996), + [anon_sym_delete] = ACTIONS(1996), + [anon_sym_throw] = ACTIONS(1996), + [anon_sym_namespace] = ACTIONS(1996), + [anon_sym_using] = ACTIONS(1996), + [anon_sym_static_assert] = ACTIONS(1996), + [anon_sym_concept] = ACTIONS(1996), + [anon_sym_co_return] = ACTIONS(1996), + [anon_sym_co_yield] = ACTIONS(1996), + [anon_sym_R_DQUOTE] = ACTIONS(1998), + [anon_sym_LR_DQUOTE] = ACTIONS(1998), + [anon_sym_uR_DQUOTE] = ACTIONS(1998), + [anon_sym_UR_DQUOTE] = ACTIONS(1998), + [anon_sym_u8R_DQUOTE] = ACTIONS(1998), + [anon_sym_co_await] = ACTIONS(1996), + [anon_sym_new] = ACTIONS(1996), + [anon_sym_requires] = ACTIONS(1996), + [sym_this] = ACTIONS(1996), + [sym_alone_macro] = ACTIONS(1998), + [aux_sym_alone_macro_call_token1] = ACTIONS(1996), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_FORWARD] = ACTIONS(1996), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1996), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_PS_GET] = ACTIONS(1996), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1996), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1996), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1996), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1996), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1996), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1996), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1996), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1996), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1996), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1996), + [anon_sym_MOZ_COLD] = ACTIONS(1996), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1996), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1996), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1996), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1996), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1996), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1996), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1996), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1996), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1996), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1996), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1996), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1996), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1996), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1996), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1996), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1996), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1996), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1996), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1996), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1996), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_NONNULL] = ACTIONS(1996), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1996), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1996), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1996), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1996), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1996), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_NORETURN] = ACTIONS(1996), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1996), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1996), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1996), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1996), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1996), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1996), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1996), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1996), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1996), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1996), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1996), + [anon_sym_MOZ_RAII] = ACTIONS(1996), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1996), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1996), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1996), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1996), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1996), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1996), + }, + [STATE(281)] = { + [ts_builtin_sym_end] = ACTIONS(2034), + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2032), + [aux_sym_preproc_def_token1] = ACTIONS(2032), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_AMP_AMP] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_virtual] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2034), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___based] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_LBRACK] = ACTIONS(2032), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [anon_sym___inline] = ACTIONS(2032), + [anon_sym___inline__] = ACTIONS(2032), + [anon_sym___forceinline] = ACTIONS(2032), + [anon_sym_thread_local] = ACTIONS(2032), + [anon_sym___thread] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_constexpr] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym___restrict__] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym__Noreturn] = ACTIONS(2032), + [anon_sym_noreturn] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym_mutable] = ACTIONS(2032), + [anon_sym_constinit] = ACTIONS(2032), + [anon_sym_consteval] = ACTIONS(2032), + [anon_sym_alignas] = ACTIONS(2032), + [anon_sym__Alignas] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_class] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_else] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym___try] = ACTIONS(2032), + [anon_sym___leave] = ACTIONS(2032), + [anon_sym_not] = ACTIONS(2032), + [anon_sym_compl] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [anon_sym___alignof__] = ACTIONS(2032), + [anon_sym___alignof] = ACTIONS(2032), + [anon_sym__alignof] = ACTIONS(2032), + [anon_sym_alignof] = ACTIONS(2032), + [anon_sym__Alignof] = ACTIONS(2032), + [anon_sym_offsetof] = ACTIONS(2032), + [anon_sym__Generic] = ACTIONS(2032), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [anon_sym___asm] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [anon_sym_NULL] = ACTIONS(2032), + [anon_sym_nullptr] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2032), + [anon_sym_decltype] = ACTIONS(2032), + [anon_sym_explicit] = ACTIONS(2032), + [anon_sym_typename] = ACTIONS(2032), + [anon_sym_template] = ACTIONS(2032), + [anon_sym_operator] = ACTIONS(2032), + [anon_sym_try] = ACTIONS(2032), + [anon_sym_delete] = ACTIONS(2032), + [anon_sym_throw] = ACTIONS(2032), + [anon_sym_namespace] = ACTIONS(2032), + [anon_sym_using] = ACTIONS(2032), + [anon_sym_static_assert] = ACTIONS(2032), + [anon_sym_concept] = ACTIONS(2032), + [anon_sym_co_return] = ACTIONS(2032), + [anon_sym_co_yield] = ACTIONS(2032), + [anon_sym_R_DQUOTE] = ACTIONS(2034), + [anon_sym_LR_DQUOTE] = ACTIONS(2034), + [anon_sym_uR_DQUOTE] = ACTIONS(2034), + [anon_sym_UR_DQUOTE] = ACTIONS(2034), + [anon_sym_u8R_DQUOTE] = ACTIONS(2034), + [anon_sym_co_await] = ACTIONS(2032), + [anon_sym_new] = ACTIONS(2032), + [anon_sym_requires] = ACTIONS(2032), + [sym_this] = ACTIONS(2032), + [sym_alone_macro] = ACTIONS(2034), + [aux_sym_alone_macro_call_token1] = ACTIONS(2032), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_FORWARD] = ACTIONS(2032), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_PS_GET] = ACTIONS(2032), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2032), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2032), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2032), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2032), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2032), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2032), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2032), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2032), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2032), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2032), + [anon_sym_MOZ_COLD] = ACTIONS(2032), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2032), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2032), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2032), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2032), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2032), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2032), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2032), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2032), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2032), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2032), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2032), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2032), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2032), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2032), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2032), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2032), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2032), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2032), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2032), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2032), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_NONNULL] = ACTIONS(2032), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2032), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2032), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2032), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2032), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2032), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_NORETURN] = ACTIONS(2032), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2032), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2032), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2032), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2032), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2032), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2032), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2032), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2032), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2032), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2032), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2032), + [anon_sym_MOZ_RAII] = ACTIONS(2032), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2032), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2032), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2032), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2032), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2032), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2032), + }, + [STATE(282)] = { + [ts_builtin_sym_end] = ACTIONS(2038), + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2036), + [aux_sym_preproc_def_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [sym_preproc_directive] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_AMP_AMP] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym___extension__] = ACTIONS(2036), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_virtual] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym_COLON_COLON] = ACTIONS(2038), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2038), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___based] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [anon_sym___inline] = ACTIONS(2036), + [anon_sym___inline__] = ACTIONS(2036), + [anon_sym___forceinline] = ACTIONS(2036), + [anon_sym_thread_local] = ACTIONS(2036), + [anon_sym___thread] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_constexpr] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym___restrict__] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym__Noreturn] = ACTIONS(2036), + [anon_sym_noreturn] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym_mutable] = ACTIONS(2036), + [anon_sym_constinit] = ACTIONS(2036), + [anon_sym_consteval] = ACTIONS(2036), + [anon_sym_alignas] = ACTIONS(2036), + [anon_sym__Alignas] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_class] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_else] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym___try] = ACTIONS(2036), + [anon_sym___leave] = ACTIONS(2036), + [anon_sym_not] = ACTIONS(2036), + [anon_sym_compl] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [anon_sym___alignof__] = ACTIONS(2036), + [anon_sym___alignof] = ACTIONS(2036), + [anon_sym__alignof] = ACTIONS(2036), + [anon_sym_alignof] = ACTIONS(2036), + [anon_sym__Alignof] = ACTIONS(2036), + [anon_sym_offsetof] = ACTIONS(2036), + [anon_sym__Generic] = ACTIONS(2036), + [anon_sym_asm] = ACTIONS(2036), + [anon_sym___asm__] = ACTIONS(2036), + [anon_sym___asm] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [anon_sym_NULL] = ACTIONS(2036), + [anon_sym_nullptr] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2036), + [anon_sym_decltype] = ACTIONS(2036), + [anon_sym_explicit] = ACTIONS(2036), + [anon_sym_typename] = ACTIONS(2036), + [anon_sym_template] = ACTIONS(2036), + [anon_sym_operator] = ACTIONS(2036), + [anon_sym_try] = ACTIONS(2036), + [anon_sym_delete] = ACTIONS(2036), + [anon_sym_throw] = ACTIONS(2036), + [anon_sym_namespace] = ACTIONS(2036), + [anon_sym_using] = ACTIONS(2036), + [anon_sym_static_assert] = ACTIONS(2036), + [anon_sym_concept] = ACTIONS(2036), + [anon_sym_co_return] = ACTIONS(2036), + [anon_sym_co_yield] = ACTIONS(2036), + [anon_sym_R_DQUOTE] = ACTIONS(2038), + [anon_sym_LR_DQUOTE] = ACTIONS(2038), + [anon_sym_uR_DQUOTE] = ACTIONS(2038), + [anon_sym_UR_DQUOTE] = ACTIONS(2038), + [anon_sym_u8R_DQUOTE] = ACTIONS(2038), + [anon_sym_co_await] = ACTIONS(2036), + [anon_sym_new] = ACTIONS(2036), + [anon_sym_requires] = ACTIONS(2036), + [sym_this] = ACTIONS(2036), + [sym_alone_macro] = ACTIONS(2038), + [aux_sym_alone_macro_call_token1] = ACTIONS(2036), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_FORWARD] = ACTIONS(2036), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_PS_GET] = ACTIONS(2036), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2036), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2036), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2036), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2036), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2036), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2036), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2036), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2036), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2036), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2036), + [anon_sym_MOZ_COLD] = ACTIONS(2036), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2036), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2036), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2036), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2036), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2036), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2036), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2036), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2036), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2036), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2036), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2036), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2036), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2036), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2036), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2036), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2036), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2036), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2036), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2036), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2036), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_NONNULL] = ACTIONS(2036), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2036), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2036), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2036), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2036), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2036), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_NORETURN] = ACTIONS(2036), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2036), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2036), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2036), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2036), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2036), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2036), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2036), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2036), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2036), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2036), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2036), + [anon_sym_MOZ_RAII] = ACTIONS(2036), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2036), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2036), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2036), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2036), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2036), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2036), + }, + [STATE(283)] = { + [ts_builtin_sym_end] = ACTIONS(2042), + [sym_identifier] = ACTIONS(2040), + [aux_sym_preproc_include_token1] = ACTIONS(2040), + [aux_sym_preproc_def_token1] = ACTIONS(2040), + [aux_sym_preproc_if_token1] = ACTIONS(2040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2040), + [sym_preproc_directive] = ACTIONS(2040), + [anon_sym_LPAREN2] = ACTIONS(2042), + [anon_sym_BANG] = ACTIONS(2042), + [anon_sym_TILDE] = ACTIONS(2042), + [anon_sym_DASH] = ACTIONS(2040), + [anon_sym_PLUS] = ACTIONS(2040), + [anon_sym_STAR] = ACTIONS(2042), + [anon_sym_AMP_AMP] = ACTIONS(2042), + [anon_sym_AMP] = ACTIONS(2040), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym___extension__] = ACTIONS(2040), + [anon_sym_typedef] = ACTIONS(2040), + [anon_sym_virtual] = ACTIONS(2040), + [anon_sym_extern] = ACTIONS(2040), + [anon_sym___attribute__] = ACTIONS(2040), + [anon_sym___attribute] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(2042), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2042), + [anon_sym___declspec] = ACTIONS(2040), + [anon_sym___based] = ACTIONS(2040), + [anon_sym___cdecl] = ACTIONS(2040), + [anon_sym___clrcall] = ACTIONS(2040), + [anon_sym___stdcall] = ACTIONS(2040), + [anon_sym___fastcall] = ACTIONS(2040), + [anon_sym___thiscall] = ACTIONS(2040), + [anon_sym___vectorcall] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2042), + [anon_sym_signed] = ACTIONS(2040), + [anon_sym_unsigned] = ACTIONS(2040), + [anon_sym_long] = ACTIONS(2040), + [anon_sym_short] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(2040), + [anon_sym_static] = ACTIONS(2040), + [anon_sym_register] = ACTIONS(2040), + [anon_sym_inline] = ACTIONS(2040), + [anon_sym___inline] = ACTIONS(2040), + [anon_sym___inline__] = ACTIONS(2040), + [anon_sym___forceinline] = ACTIONS(2040), + [anon_sym_thread_local] = ACTIONS(2040), + [anon_sym___thread] = ACTIONS(2040), + [anon_sym_const] = ACTIONS(2040), + [anon_sym_constexpr] = ACTIONS(2040), + [anon_sym_volatile] = ACTIONS(2040), + [anon_sym_restrict] = ACTIONS(2040), + [anon_sym___restrict__] = ACTIONS(2040), + [anon_sym__Atomic] = ACTIONS(2040), + [anon_sym__Noreturn] = ACTIONS(2040), + [anon_sym_noreturn] = ACTIONS(2040), + [anon_sym__Nonnull] = ACTIONS(2040), + [anon_sym_mutable] = ACTIONS(2040), + [anon_sym_constinit] = ACTIONS(2040), + [anon_sym_consteval] = ACTIONS(2040), + [anon_sym_alignas] = ACTIONS(2040), + [anon_sym__Alignas] = ACTIONS(2040), + [sym_primitive_type] = ACTIONS(2040), + [anon_sym_enum] = ACTIONS(2040), + [anon_sym_class] = ACTIONS(2040), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2040), + [anon_sym_if] = ACTIONS(2040), + [anon_sym_else] = ACTIONS(2040), + [anon_sym_switch] = ACTIONS(2040), + [anon_sym_case] = ACTIONS(2040), + [anon_sym_default] = ACTIONS(2040), + [anon_sym_while] = ACTIONS(2040), + [anon_sym_do] = ACTIONS(2040), + [anon_sym_for] = ACTIONS(2040), + [anon_sym_return] = ACTIONS(2040), + [anon_sym_break] = ACTIONS(2040), + [anon_sym_continue] = ACTIONS(2040), + [anon_sym_goto] = ACTIONS(2040), + [anon_sym___try] = ACTIONS(2040), + [anon_sym___leave] = ACTIONS(2040), + [anon_sym_not] = ACTIONS(2040), + [anon_sym_compl] = ACTIONS(2040), + [anon_sym_DASH_DASH] = ACTIONS(2042), + [anon_sym_PLUS_PLUS] = ACTIONS(2042), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2040), + [anon_sym___alignof] = ACTIONS(2040), + [anon_sym__alignof] = ACTIONS(2040), + [anon_sym_alignof] = ACTIONS(2040), + [anon_sym__Alignof] = ACTIONS(2040), + [anon_sym_offsetof] = ACTIONS(2040), + [anon_sym__Generic] = ACTIONS(2040), + [anon_sym_asm] = ACTIONS(2040), + [anon_sym___asm__] = ACTIONS(2040), + [anon_sym___asm] = ACTIONS(2040), + [sym_number_literal] = ACTIONS(2042), + [anon_sym_L_SQUOTE] = ACTIONS(2042), + [anon_sym_u_SQUOTE] = ACTIONS(2042), + [anon_sym_U_SQUOTE] = ACTIONS(2042), + [anon_sym_u8_SQUOTE] = ACTIONS(2042), + [anon_sym_SQUOTE] = ACTIONS(2042), + [anon_sym_L_DQUOTE] = ACTIONS(2042), + [anon_sym_u_DQUOTE] = ACTIONS(2042), + [anon_sym_U_DQUOTE] = ACTIONS(2042), + [anon_sym_u8_DQUOTE] = ACTIONS(2042), + [anon_sym_DQUOTE] = ACTIONS(2042), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2040), + [anon_sym_decltype] = ACTIONS(2040), + [anon_sym_explicit] = ACTIONS(2040), + [anon_sym_typename] = ACTIONS(2040), + [anon_sym_template] = ACTIONS(2040), + [anon_sym_operator] = ACTIONS(2040), + [anon_sym_try] = ACTIONS(2040), + [anon_sym_delete] = ACTIONS(2040), + [anon_sym_throw] = ACTIONS(2040), + [anon_sym_namespace] = ACTIONS(2040), + [anon_sym_using] = ACTIONS(2040), + [anon_sym_static_assert] = ACTIONS(2040), + [anon_sym_concept] = ACTIONS(2040), + [anon_sym_co_return] = ACTIONS(2040), + [anon_sym_co_yield] = ACTIONS(2040), + [anon_sym_R_DQUOTE] = ACTIONS(2042), + [anon_sym_LR_DQUOTE] = ACTIONS(2042), + [anon_sym_uR_DQUOTE] = ACTIONS(2042), + [anon_sym_UR_DQUOTE] = ACTIONS(2042), + [anon_sym_u8R_DQUOTE] = ACTIONS(2042), + [anon_sym_co_await] = ACTIONS(2040), + [anon_sym_new] = ACTIONS(2040), + [anon_sym_requires] = ACTIONS(2040), + [sym_this] = ACTIONS(2040), + [sym_alone_macro] = ACTIONS(2042), + [aux_sym_alone_macro_call_token1] = ACTIONS(2040), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_FORWARD] = ACTIONS(2040), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2040), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_PS_GET] = ACTIONS(2040), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2040), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2040), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2040), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2040), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2040), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2040), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2040), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2040), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2040), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2040), + [anon_sym_MOZ_COLD] = ACTIONS(2040), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2040), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2040), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2040), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2040), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2040), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2040), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2040), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2040), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2040), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2040), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2040), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2040), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2040), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2040), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2040), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2040), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2040), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2040), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2040), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2040), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_NONNULL] = ACTIONS(2040), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2040), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2040), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2040), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2040), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2040), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_NORETURN] = ACTIONS(2040), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2040), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2040), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2040), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2040), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2040), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2040), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2040), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2040), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2040), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2040), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2040), + [anon_sym_MOZ_RAII] = ACTIONS(2040), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2040), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2040), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2040), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2040), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2040), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2040), + }, + [STATE(284)] = { + [ts_builtin_sym_end] = ACTIONS(2050), + [sym_identifier] = ACTIONS(2048), + [aux_sym_preproc_include_token1] = ACTIONS(2048), + [aux_sym_preproc_def_token1] = ACTIONS(2048), + [aux_sym_preproc_if_token1] = ACTIONS(2048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2048), + [sym_preproc_directive] = ACTIONS(2048), + [anon_sym_LPAREN2] = ACTIONS(2050), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_TILDE] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2048), + [anon_sym_PLUS] = ACTIONS(2048), + [anon_sym_STAR] = ACTIONS(2050), + [anon_sym_AMP_AMP] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym___extension__] = ACTIONS(2048), + [anon_sym_typedef] = ACTIONS(2048), + [anon_sym_virtual] = ACTIONS(2048), + [anon_sym_extern] = ACTIONS(2048), + [anon_sym___attribute__] = ACTIONS(2048), + [anon_sym___attribute] = ACTIONS(2048), + [anon_sym_COLON_COLON] = ACTIONS(2050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2050), + [anon_sym___declspec] = ACTIONS(2048), + [anon_sym___based] = ACTIONS(2048), + [anon_sym___cdecl] = ACTIONS(2048), + [anon_sym___clrcall] = ACTIONS(2048), + [anon_sym___stdcall] = ACTIONS(2048), + [anon_sym___fastcall] = ACTIONS(2048), + [anon_sym___thiscall] = ACTIONS(2048), + [anon_sym___vectorcall] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2050), + [anon_sym_signed] = ACTIONS(2048), + [anon_sym_unsigned] = ACTIONS(2048), + [anon_sym_long] = ACTIONS(2048), + [anon_sym_short] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(2048), + [anon_sym_static] = ACTIONS(2048), + [anon_sym_register] = ACTIONS(2048), + [anon_sym_inline] = ACTIONS(2048), + [anon_sym___inline] = ACTIONS(2048), + [anon_sym___inline__] = ACTIONS(2048), + [anon_sym___forceinline] = ACTIONS(2048), + [anon_sym_thread_local] = ACTIONS(2048), + [anon_sym___thread] = ACTIONS(2048), + [anon_sym_const] = ACTIONS(2048), + [anon_sym_constexpr] = ACTIONS(2048), + [anon_sym_volatile] = ACTIONS(2048), + [anon_sym_restrict] = ACTIONS(2048), + [anon_sym___restrict__] = ACTIONS(2048), + [anon_sym__Atomic] = ACTIONS(2048), + [anon_sym__Noreturn] = ACTIONS(2048), + [anon_sym_noreturn] = ACTIONS(2048), + [anon_sym__Nonnull] = ACTIONS(2048), + [anon_sym_mutable] = ACTIONS(2048), + [anon_sym_constinit] = ACTIONS(2048), + [anon_sym_consteval] = ACTIONS(2048), + [anon_sym_alignas] = ACTIONS(2048), + [anon_sym__Alignas] = ACTIONS(2048), + [sym_primitive_type] = ACTIONS(2048), + [anon_sym_enum] = ACTIONS(2048), + [anon_sym_class] = ACTIONS(2048), + [anon_sym_struct] = ACTIONS(2048), + [anon_sym_union] = ACTIONS(2048), + [anon_sym_if] = ACTIONS(2048), + [anon_sym_else] = ACTIONS(2048), + [anon_sym_switch] = ACTIONS(2048), + [anon_sym_case] = ACTIONS(2048), + [anon_sym_default] = ACTIONS(2048), + [anon_sym_while] = ACTIONS(2048), + [anon_sym_do] = ACTIONS(2048), + [anon_sym_for] = ACTIONS(2048), + [anon_sym_return] = ACTIONS(2048), + [anon_sym_break] = ACTIONS(2048), + [anon_sym_continue] = ACTIONS(2048), + [anon_sym_goto] = ACTIONS(2048), + [anon_sym___try] = ACTIONS(2048), + [anon_sym___leave] = ACTIONS(2048), + [anon_sym_not] = ACTIONS(2048), + [anon_sym_compl] = ACTIONS(2048), + [anon_sym_DASH_DASH] = ACTIONS(2050), + [anon_sym_PLUS_PLUS] = ACTIONS(2050), + [anon_sym_sizeof] = ACTIONS(2048), + [anon_sym___alignof__] = ACTIONS(2048), + [anon_sym___alignof] = ACTIONS(2048), + [anon_sym__alignof] = ACTIONS(2048), + [anon_sym_alignof] = ACTIONS(2048), + [anon_sym__Alignof] = ACTIONS(2048), + [anon_sym_offsetof] = ACTIONS(2048), + [anon_sym__Generic] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2048), + [anon_sym___asm__] = ACTIONS(2048), + [anon_sym___asm] = ACTIONS(2048), + [sym_number_literal] = ACTIONS(2050), + [anon_sym_L_SQUOTE] = ACTIONS(2050), + [anon_sym_u_SQUOTE] = ACTIONS(2050), + [anon_sym_U_SQUOTE] = ACTIONS(2050), + [anon_sym_u8_SQUOTE] = ACTIONS(2050), + [anon_sym_SQUOTE] = ACTIONS(2050), + [anon_sym_L_DQUOTE] = ACTIONS(2050), + [anon_sym_u_DQUOTE] = ACTIONS(2050), + [anon_sym_U_DQUOTE] = ACTIONS(2050), + [anon_sym_u8_DQUOTE] = ACTIONS(2050), + [anon_sym_DQUOTE] = ACTIONS(2050), + [sym_true] = ACTIONS(2048), + [sym_false] = ACTIONS(2048), + [anon_sym_NULL] = ACTIONS(2048), + [anon_sym_nullptr] = ACTIONS(2048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2048), + [anon_sym_decltype] = ACTIONS(2048), + [anon_sym_explicit] = ACTIONS(2048), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_template] = ACTIONS(2048), + [anon_sym_operator] = ACTIONS(2048), + [anon_sym_try] = ACTIONS(2048), + [anon_sym_delete] = ACTIONS(2048), + [anon_sym_throw] = ACTIONS(2048), + [anon_sym_namespace] = ACTIONS(2048), + [anon_sym_using] = ACTIONS(2048), + [anon_sym_static_assert] = ACTIONS(2048), + [anon_sym_concept] = ACTIONS(2048), + [anon_sym_co_return] = ACTIONS(2048), + [anon_sym_co_yield] = ACTIONS(2048), + [anon_sym_R_DQUOTE] = ACTIONS(2050), + [anon_sym_LR_DQUOTE] = ACTIONS(2050), + [anon_sym_uR_DQUOTE] = ACTIONS(2050), + [anon_sym_UR_DQUOTE] = ACTIONS(2050), + [anon_sym_u8R_DQUOTE] = ACTIONS(2050), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2048), + [anon_sym_requires] = ACTIONS(2048), + [sym_this] = ACTIONS(2048), + [sym_alone_macro] = ACTIONS(2050), + [aux_sym_alone_macro_call_token1] = ACTIONS(2048), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_FORWARD] = ACTIONS(2048), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2048), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_PS_GET] = ACTIONS(2048), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2048), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2048), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2048), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2048), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2048), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2048), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2048), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2048), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2048), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2048), + [anon_sym_MOZ_COLD] = ACTIONS(2048), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2048), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2048), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2048), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2048), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2048), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2048), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2048), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2048), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2048), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2048), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2048), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2048), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2048), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2048), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2048), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2048), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2048), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2048), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2048), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2048), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_NONNULL] = ACTIONS(2048), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2048), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2048), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2048), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2048), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2048), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_NORETURN] = ACTIONS(2048), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2048), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2048), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2048), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2048), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2048), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2048), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2048), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2048), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2048), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2048), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2048), + [anon_sym_MOZ_RAII] = ACTIONS(2048), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2048), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2048), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2048), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2048), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2048), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2048), + }, + [STATE(285)] = { + [ts_builtin_sym_end] = ACTIONS(2102), + [sym_identifier] = ACTIONS(2100), + [aux_sym_preproc_include_token1] = ACTIONS(2100), + [aux_sym_preproc_def_token1] = ACTIONS(2100), + [aux_sym_preproc_if_token1] = ACTIONS(2100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2100), + [sym_preproc_directive] = ACTIONS(2100), + [anon_sym_LPAREN2] = ACTIONS(2102), + [anon_sym_BANG] = ACTIONS(2102), + [anon_sym_TILDE] = ACTIONS(2102), + [anon_sym_DASH] = ACTIONS(2100), + [anon_sym_PLUS] = ACTIONS(2100), + [anon_sym_STAR] = ACTIONS(2102), + [anon_sym_AMP_AMP] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym___extension__] = ACTIONS(2100), + [anon_sym_typedef] = ACTIONS(2100), + [anon_sym_virtual] = ACTIONS(2100), + [anon_sym_extern] = ACTIONS(2100), + [anon_sym___attribute__] = ACTIONS(2100), + [anon_sym___attribute] = ACTIONS(2100), + [anon_sym_COLON_COLON] = ACTIONS(2102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2102), + [anon_sym___declspec] = ACTIONS(2100), + [anon_sym___based] = ACTIONS(2100), + [anon_sym___cdecl] = ACTIONS(2100), + [anon_sym___clrcall] = ACTIONS(2100), + [anon_sym___stdcall] = ACTIONS(2100), + [anon_sym___fastcall] = ACTIONS(2100), + [anon_sym___thiscall] = ACTIONS(2100), + [anon_sym___vectorcall] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_signed] = ACTIONS(2100), + [anon_sym_unsigned] = ACTIONS(2100), + [anon_sym_long] = ACTIONS(2100), + [anon_sym_short] = ACTIONS(2100), + [anon_sym_LBRACK] = ACTIONS(2100), + [anon_sym_static] = ACTIONS(2100), + [anon_sym_register] = ACTIONS(2100), + [anon_sym_inline] = ACTIONS(2100), + [anon_sym___inline] = ACTIONS(2100), + [anon_sym___inline__] = ACTIONS(2100), + [anon_sym___forceinline] = ACTIONS(2100), + [anon_sym_thread_local] = ACTIONS(2100), + [anon_sym___thread] = ACTIONS(2100), + [anon_sym_const] = ACTIONS(2100), + [anon_sym_constexpr] = ACTIONS(2100), + [anon_sym_volatile] = ACTIONS(2100), + [anon_sym_restrict] = ACTIONS(2100), + [anon_sym___restrict__] = ACTIONS(2100), + [anon_sym__Atomic] = ACTIONS(2100), + [anon_sym__Noreturn] = ACTIONS(2100), + [anon_sym_noreturn] = ACTIONS(2100), + [anon_sym__Nonnull] = ACTIONS(2100), + [anon_sym_mutable] = ACTIONS(2100), + [anon_sym_constinit] = ACTIONS(2100), + [anon_sym_consteval] = ACTIONS(2100), + [anon_sym_alignas] = ACTIONS(2100), + [anon_sym__Alignas] = ACTIONS(2100), + [sym_primitive_type] = ACTIONS(2100), + [anon_sym_enum] = ACTIONS(2100), + [anon_sym_class] = ACTIONS(2100), + [anon_sym_struct] = ACTIONS(2100), + [anon_sym_union] = ACTIONS(2100), + [anon_sym_if] = ACTIONS(2100), + [anon_sym_else] = ACTIONS(2100), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_case] = ACTIONS(2100), + [anon_sym_default] = ACTIONS(2100), + [anon_sym_while] = ACTIONS(2100), + [anon_sym_do] = ACTIONS(2100), + [anon_sym_for] = ACTIONS(2100), + [anon_sym_return] = ACTIONS(2100), + [anon_sym_break] = ACTIONS(2100), + [anon_sym_continue] = ACTIONS(2100), + [anon_sym_goto] = ACTIONS(2100), + [anon_sym___try] = ACTIONS(2100), + [anon_sym___leave] = ACTIONS(2100), + [anon_sym_not] = ACTIONS(2100), + [anon_sym_compl] = ACTIONS(2100), + [anon_sym_DASH_DASH] = ACTIONS(2102), + [anon_sym_PLUS_PLUS] = ACTIONS(2102), + [anon_sym_sizeof] = ACTIONS(2100), + [anon_sym___alignof__] = ACTIONS(2100), + [anon_sym___alignof] = ACTIONS(2100), + [anon_sym__alignof] = ACTIONS(2100), + [anon_sym_alignof] = ACTIONS(2100), + [anon_sym__Alignof] = ACTIONS(2100), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2100), + [anon_sym_asm] = ACTIONS(2100), + [anon_sym___asm__] = ACTIONS(2100), + [anon_sym___asm] = ACTIONS(2100), + [sym_number_literal] = ACTIONS(2102), + [anon_sym_L_SQUOTE] = ACTIONS(2102), + [anon_sym_u_SQUOTE] = ACTIONS(2102), + [anon_sym_U_SQUOTE] = ACTIONS(2102), + [anon_sym_u8_SQUOTE] = ACTIONS(2102), + [anon_sym_SQUOTE] = ACTIONS(2102), + [anon_sym_L_DQUOTE] = ACTIONS(2102), + [anon_sym_u_DQUOTE] = ACTIONS(2102), + [anon_sym_U_DQUOTE] = ACTIONS(2102), + [anon_sym_u8_DQUOTE] = ACTIONS(2102), + [anon_sym_DQUOTE] = ACTIONS(2102), + [sym_true] = ACTIONS(2100), + [sym_false] = ACTIONS(2100), + [anon_sym_NULL] = ACTIONS(2100), + [anon_sym_nullptr] = ACTIONS(2100), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2100), + [anon_sym_decltype] = ACTIONS(2100), + [anon_sym_explicit] = ACTIONS(2100), + [anon_sym_typename] = ACTIONS(2100), + [anon_sym_template] = ACTIONS(2100), + [anon_sym_operator] = ACTIONS(2100), + [anon_sym_try] = ACTIONS(2100), + [anon_sym_delete] = ACTIONS(2100), + [anon_sym_throw] = ACTIONS(2100), + [anon_sym_namespace] = ACTIONS(2100), + [anon_sym_using] = ACTIONS(2100), + [anon_sym_static_assert] = ACTIONS(2100), + [anon_sym_concept] = ACTIONS(2100), + [anon_sym_co_return] = ACTIONS(2100), + [anon_sym_co_yield] = ACTIONS(2100), + [anon_sym_R_DQUOTE] = ACTIONS(2102), + [anon_sym_LR_DQUOTE] = ACTIONS(2102), + [anon_sym_uR_DQUOTE] = ACTIONS(2102), + [anon_sym_UR_DQUOTE] = ACTIONS(2102), + [anon_sym_u8R_DQUOTE] = ACTIONS(2102), + [anon_sym_co_await] = ACTIONS(2100), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2100), + [sym_this] = ACTIONS(2100), + [sym_alone_macro] = ACTIONS(2102), + [aux_sym_alone_macro_call_token1] = ACTIONS(2100), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_FORWARD] = ACTIONS(2100), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2100), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_PS_GET] = ACTIONS(2100), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2100), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2100), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2100), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2100), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2100), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2100), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2100), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2100), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2100), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2100), + [anon_sym_MOZ_COLD] = ACTIONS(2100), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2100), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2100), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2100), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2100), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2100), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2100), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2100), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2100), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2100), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2100), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2100), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2100), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2100), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2100), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2100), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2100), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2100), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2100), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2100), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2100), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_NONNULL] = ACTIONS(2100), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2100), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2100), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2100), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2100), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2100), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_NORETURN] = ACTIONS(2100), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2100), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2100), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2100), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2100), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2100), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2100), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2100), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2100), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2100), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2100), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2100), + [anon_sym_MOZ_RAII] = ACTIONS(2100), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2100), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2100), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2100), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2100), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2100), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2100), + }, + [STATE(286)] = { + [ts_builtin_sym_end] = ACTIONS(2106), + [sym_identifier] = ACTIONS(2104), + [aux_sym_preproc_include_token1] = ACTIONS(2104), + [aux_sym_preproc_def_token1] = ACTIONS(2104), + [aux_sym_preproc_if_token1] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2104), + [sym_preproc_directive] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_TILDE] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_AMP_AMP] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym___extension__] = ACTIONS(2104), + [anon_sym_typedef] = ACTIONS(2104), + [anon_sym_virtual] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2104), + [anon_sym___attribute__] = ACTIONS(2104), + [anon_sym___attribute] = ACTIONS(2104), + [anon_sym_COLON_COLON] = ACTIONS(2106), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2106), + [anon_sym___declspec] = ACTIONS(2104), + [anon_sym___based] = ACTIONS(2104), + [anon_sym___cdecl] = ACTIONS(2104), + [anon_sym___clrcall] = ACTIONS(2104), + [anon_sym___stdcall] = ACTIONS(2104), + [anon_sym___fastcall] = ACTIONS(2104), + [anon_sym___thiscall] = ACTIONS(2104), + [anon_sym___vectorcall] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_signed] = ACTIONS(2104), + [anon_sym_unsigned] = ACTIONS(2104), + [anon_sym_long] = ACTIONS(2104), + [anon_sym_short] = ACTIONS(2104), + [anon_sym_LBRACK] = ACTIONS(2104), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_register] = ACTIONS(2104), + [anon_sym_inline] = ACTIONS(2104), + [anon_sym___inline] = ACTIONS(2104), + [anon_sym___inline__] = ACTIONS(2104), + [anon_sym___forceinline] = ACTIONS(2104), + [anon_sym_thread_local] = ACTIONS(2104), + [anon_sym___thread] = ACTIONS(2104), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_constexpr] = ACTIONS(2104), + [anon_sym_volatile] = ACTIONS(2104), + [anon_sym_restrict] = ACTIONS(2104), + [anon_sym___restrict__] = ACTIONS(2104), + [anon_sym__Atomic] = ACTIONS(2104), + [anon_sym__Noreturn] = ACTIONS(2104), + [anon_sym_noreturn] = ACTIONS(2104), + [anon_sym__Nonnull] = ACTIONS(2104), + [anon_sym_mutable] = ACTIONS(2104), + [anon_sym_constinit] = ACTIONS(2104), + [anon_sym_consteval] = ACTIONS(2104), + [anon_sym_alignas] = ACTIONS(2104), + [anon_sym__Alignas] = ACTIONS(2104), + [sym_primitive_type] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2104), + [anon_sym_class] = ACTIONS(2104), + [anon_sym_struct] = ACTIONS(2104), + [anon_sym_union] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_else] = ACTIONS(2104), + [anon_sym_switch] = ACTIONS(2104), + [anon_sym_case] = ACTIONS(2104), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_while] = ACTIONS(2104), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_break] = ACTIONS(2104), + [anon_sym_continue] = ACTIONS(2104), + [anon_sym_goto] = ACTIONS(2104), + [anon_sym___try] = ACTIONS(2104), + [anon_sym___leave] = ACTIONS(2104), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_compl] = ACTIONS(2104), + [anon_sym_DASH_DASH] = ACTIONS(2106), + [anon_sym_PLUS_PLUS] = ACTIONS(2106), + [anon_sym_sizeof] = ACTIONS(2104), + [anon_sym___alignof__] = ACTIONS(2104), + [anon_sym___alignof] = ACTIONS(2104), + [anon_sym__alignof] = ACTIONS(2104), + [anon_sym_alignof] = ACTIONS(2104), + [anon_sym__Alignof] = ACTIONS(2104), + [anon_sym_offsetof] = ACTIONS(2104), + [anon_sym__Generic] = ACTIONS(2104), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [anon_sym___asm] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2106), + [anon_sym_u_SQUOTE] = ACTIONS(2106), + [anon_sym_U_SQUOTE] = ACTIONS(2106), + [anon_sym_u8_SQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_L_DQUOTE] = ACTIONS(2106), + [anon_sym_u_DQUOTE] = ACTIONS(2106), + [anon_sym_U_DQUOTE] = ACTIONS(2106), + [anon_sym_u8_DQUOTE] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2106), + [sym_true] = ACTIONS(2104), + [sym_false] = ACTIONS(2104), + [anon_sym_NULL] = ACTIONS(2104), + [anon_sym_nullptr] = ACTIONS(2104), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2104), + [anon_sym_decltype] = ACTIONS(2104), + [anon_sym_explicit] = ACTIONS(2104), + [anon_sym_typename] = ACTIONS(2104), + [anon_sym_template] = ACTIONS(2104), + [anon_sym_operator] = ACTIONS(2104), + [anon_sym_try] = ACTIONS(2104), + [anon_sym_delete] = ACTIONS(2104), + [anon_sym_throw] = ACTIONS(2104), + [anon_sym_namespace] = ACTIONS(2104), + [anon_sym_using] = ACTIONS(2104), + [anon_sym_static_assert] = ACTIONS(2104), + [anon_sym_concept] = ACTIONS(2104), + [anon_sym_co_return] = ACTIONS(2104), + [anon_sym_co_yield] = ACTIONS(2104), + [anon_sym_R_DQUOTE] = ACTIONS(2106), + [anon_sym_LR_DQUOTE] = ACTIONS(2106), + [anon_sym_uR_DQUOTE] = ACTIONS(2106), + [anon_sym_UR_DQUOTE] = ACTIONS(2106), + [anon_sym_u8R_DQUOTE] = ACTIONS(2106), + [anon_sym_co_await] = ACTIONS(2104), + [anon_sym_new] = ACTIONS(2104), + [anon_sym_requires] = ACTIONS(2104), + [sym_this] = ACTIONS(2104), + [sym_alone_macro] = ACTIONS(2106), + [aux_sym_alone_macro_call_token1] = ACTIONS(2104), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_FORWARD] = ACTIONS(2104), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_PS_GET] = ACTIONS(2104), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2104), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2104), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2104), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2104), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2104), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2104), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2104), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2104), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2104), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2104), + [anon_sym_MOZ_COLD] = ACTIONS(2104), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2104), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2104), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2104), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2104), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2104), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2104), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2104), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2104), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2104), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2104), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2104), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2104), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2104), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2104), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2104), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2104), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2104), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2104), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2104), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2104), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_NONNULL] = ACTIONS(2104), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2104), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2104), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2104), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2104), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2104), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_NORETURN] = ACTIONS(2104), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2104), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2104), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2104), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2104), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2104), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2104), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2104), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2104), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2104), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2104), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2104), + [anon_sym_MOZ_RAII] = ACTIONS(2104), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2104), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2104), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2104), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2104), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2104), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2104), + }, + [STATE(287)] = { + [ts_builtin_sym_end] = ACTIONS(1968), + [sym_identifier] = ACTIONS(1966), + [aux_sym_preproc_include_token1] = ACTIONS(1966), + [aux_sym_preproc_def_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1966), + [sym_preproc_directive] = ACTIONS(1966), + [anon_sym_LPAREN2] = ACTIONS(1968), + [anon_sym_BANG] = ACTIONS(1968), + [anon_sym_TILDE] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym___extension__] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1966), + [anon_sym_virtual] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym___attribute__] = ACTIONS(1966), + [anon_sym___attribute] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1966), + [anon_sym___based] = ACTIONS(1966), + [anon_sym___cdecl] = ACTIONS(1966), + [anon_sym___clrcall] = ACTIONS(1966), + [anon_sym___stdcall] = ACTIONS(1966), + [anon_sym___fastcall] = ACTIONS(1966), + [anon_sym___thiscall] = ACTIONS(1966), + [anon_sym___vectorcall] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_register] = ACTIONS(1966), + [anon_sym_inline] = ACTIONS(1966), + [anon_sym___inline] = ACTIONS(1966), + [anon_sym___inline__] = ACTIONS(1966), + [anon_sym___forceinline] = ACTIONS(1966), + [anon_sym_thread_local] = ACTIONS(1966), + [anon_sym___thread] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_constexpr] = ACTIONS(1966), + [anon_sym_volatile] = ACTIONS(1966), + [anon_sym_restrict] = ACTIONS(1966), + [anon_sym___restrict__] = ACTIONS(1966), + [anon_sym__Atomic] = ACTIONS(1966), + [anon_sym__Noreturn] = ACTIONS(1966), + [anon_sym_noreturn] = ACTIONS(1966), + [anon_sym__Nonnull] = ACTIONS(1966), + [anon_sym_mutable] = ACTIONS(1966), + [anon_sym_constinit] = ACTIONS(1966), + [anon_sym_consteval] = ACTIONS(1966), + [anon_sym_alignas] = ACTIONS(1966), + [anon_sym__Alignas] = ACTIONS(1966), + [sym_primitive_type] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_class] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_else] = ACTIONS(1966), + [anon_sym_switch] = ACTIONS(1966), + [anon_sym_case] = ACTIONS(1966), + [anon_sym_default] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1966), + [anon_sym_do] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1966), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1966), + [anon_sym_continue] = ACTIONS(1966), + [anon_sym_goto] = ACTIONS(1966), + [anon_sym___try] = ACTIONS(1966), + [anon_sym___leave] = ACTIONS(1966), + [anon_sym_not] = ACTIONS(1966), + [anon_sym_compl] = ACTIONS(1966), + [anon_sym_DASH_DASH] = ACTIONS(1968), + [anon_sym_PLUS_PLUS] = ACTIONS(1968), + [anon_sym_sizeof] = ACTIONS(1966), + [anon_sym___alignof__] = ACTIONS(1966), + [anon_sym___alignof] = ACTIONS(1966), + [anon_sym__alignof] = ACTIONS(1966), + [anon_sym_alignof] = ACTIONS(1966), + [anon_sym__Alignof] = ACTIONS(1966), + [anon_sym_offsetof] = ACTIONS(1966), + [anon_sym__Generic] = ACTIONS(1966), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(1968), + [anon_sym_L_SQUOTE] = ACTIONS(1968), + [anon_sym_u_SQUOTE] = ACTIONS(1968), + [anon_sym_U_SQUOTE] = ACTIONS(1968), + [anon_sym_u8_SQUOTE] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(1968), + [anon_sym_L_DQUOTE] = ACTIONS(1968), + [anon_sym_u_DQUOTE] = ACTIONS(1968), + [anon_sym_U_DQUOTE] = ACTIONS(1968), + [anon_sym_u8_DQUOTE] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [sym_true] = ACTIONS(1966), + [sym_false] = ACTIONS(1966), + [anon_sym_NULL] = ACTIONS(1966), + [anon_sym_nullptr] = ACTIONS(1966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1966), + [anon_sym_decltype] = ACTIONS(1966), + [anon_sym_explicit] = ACTIONS(1966), + [anon_sym_typename] = ACTIONS(1966), + [anon_sym_template] = ACTIONS(1966), + [anon_sym_operator] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1966), + [anon_sym_delete] = ACTIONS(1966), + [anon_sym_throw] = ACTIONS(1966), + [anon_sym_namespace] = ACTIONS(1966), + [anon_sym_using] = ACTIONS(1966), + [anon_sym_static_assert] = ACTIONS(1966), + [anon_sym_concept] = ACTIONS(1966), + [anon_sym_co_return] = ACTIONS(1966), + [anon_sym_co_yield] = ACTIONS(1966), + [anon_sym_R_DQUOTE] = ACTIONS(1968), + [anon_sym_LR_DQUOTE] = ACTIONS(1968), + [anon_sym_uR_DQUOTE] = ACTIONS(1968), + [anon_sym_UR_DQUOTE] = ACTIONS(1968), + [anon_sym_u8R_DQUOTE] = ACTIONS(1968), + [anon_sym_co_await] = ACTIONS(1966), + [anon_sym_new] = ACTIONS(1966), + [anon_sym_requires] = ACTIONS(1966), + [sym_this] = ACTIONS(1966), + [sym_alone_macro] = ACTIONS(1968), + [aux_sym_alone_macro_call_token1] = ACTIONS(1966), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_FORWARD] = ACTIONS(1966), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1966), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_PS_GET] = ACTIONS(1966), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1966), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1966), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1966), + [anon_sym_MOZ_COLD] = ACTIONS(1966), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1966), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1966), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1966), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1966), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1966), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1966), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1966), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1966), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1966), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1966), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1966), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1966), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_RAII] = ACTIONS(1966), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1966), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1966), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1966), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1966), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1966), + }, + [STATE(288)] = { + [ts_builtin_sym_end] = ACTIONS(2002), + [sym_identifier] = ACTIONS(2000), + [aux_sym_preproc_include_token1] = ACTIONS(2000), + [aux_sym_preproc_def_token1] = ACTIONS(2000), + [aux_sym_preproc_if_token1] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2000), + [sym_preproc_directive] = ACTIONS(2000), + [anon_sym_LPAREN2] = ACTIONS(2002), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2000), + [anon_sym_PLUS] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym___extension__] = ACTIONS(2000), + [anon_sym_typedef] = ACTIONS(2000), + [anon_sym_virtual] = ACTIONS(2000), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym___attribute__] = ACTIONS(2000), + [anon_sym___attribute] = ACTIONS(2000), + [anon_sym_COLON_COLON] = ACTIONS(2002), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2002), + [anon_sym___declspec] = ACTIONS(2000), + [anon_sym___based] = ACTIONS(2000), + [anon_sym___cdecl] = ACTIONS(2000), + [anon_sym___clrcall] = ACTIONS(2000), + [anon_sym___stdcall] = ACTIONS(2000), + [anon_sym___fastcall] = ACTIONS(2000), + [anon_sym___thiscall] = ACTIONS(2000), + [anon_sym___vectorcall] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_signed] = ACTIONS(2000), + [anon_sym_unsigned] = ACTIONS(2000), + [anon_sym_long] = ACTIONS(2000), + [anon_sym_short] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_static] = ACTIONS(2000), + [anon_sym_register] = ACTIONS(2000), + [anon_sym_inline] = ACTIONS(2000), + [anon_sym___inline] = ACTIONS(2000), + [anon_sym___inline__] = ACTIONS(2000), + [anon_sym___forceinline] = ACTIONS(2000), + [anon_sym_thread_local] = ACTIONS(2000), + [anon_sym___thread] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [anon_sym_constexpr] = ACTIONS(2000), + [anon_sym_volatile] = ACTIONS(2000), + [anon_sym_restrict] = ACTIONS(2000), + [anon_sym___restrict__] = ACTIONS(2000), + [anon_sym__Atomic] = ACTIONS(2000), + [anon_sym__Noreturn] = ACTIONS(2000), + [anon_sym_noreturn] = ACTIONS(2000), + [anon_sym__Nonnull] = ACTIONS(2000), + [anon_sym_mutable] = ACTIONS(2000), + [anon_sym_constinit] = ACTIONS(2000), + [anon_sym_consteval] = ACTIONS(2000), + [anon_sym_alignas] = ACTIONS(2000), + [anon_sym__Alignas] = ACTIONS(2000), + [sym_primitive_type] = ACTIONS(2000), + [anon_sym_enum] = ACTIONS(2000), + [anon_sym_class] = ACTIONS(2000), + [anon_sym_struct] = ACTIONS(2000), + [anon_sym_union] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2000), + [anon_sym_switch] = ACTIONS(2000), + [anon_sym_case] = ACTIONS(2000), + [anon_sym_default] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_goto] = ACTIONS(2000), + [anon_sym___try] = ACTIONS(2000), + [anon_sym___leave] = ACTIONS(2000), + [anon_sym_not] = ACTIONS(2000), + [anon_sym_compl] = ACTIONS(2000), + [anon_sym_DASH_DASH] = ACTIONS(2002), + [anon_sym_PLUS_PLUS] = ACTIONS(2002), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(2000), + [anon_sym___alignof] = ACTIONS(2000), + [anon_sym__alignof] = ACTIONS(2000), + [anon_sym_alignof] = ACTIONS(2000), + [anon_sym__Alignof] = ACTIONS(2000), + [anon_sym_offsetof] = ACTIONS(2000), + [anon_sym__Generic] = ACTIONS(2000), + [anon_sym_asm] = ACTIONS(2000), + [anon_sym___asm__] = ACTIONS(2000), + [anon_sym___asm] = ACTIONS(2000), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2002), + [anon_sym_u_SQUOTE] = ACTIONS(2002), + [anon_sym_U_SQUOTE] = ACTIONS(2002), + [anon_sym_u8_SQUOTE] = ACTIONS(2002), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2000), + [sym_false] = ACTIONS(2000), + [anon_sym_NULL] = ACTIONS(2000), + [anon_sym_nullptr] = ACTIONS(2000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2000), + [anon_sym_decltype] = ACTIONS(2000), + [anon_sym_explicit] = ACTIONS(2000), + [anon_sym_typename] = ACTIONS(2000), + [anon_sym_template] = ACTIONS(2000), + [anon_sym_operator] = ACTIONS(2000), + [anon_sym_try] = ACTIONS(2000), + [anon_sym_delete] = ACTIONS(2000), + [anon_sym_throw] = ACTIONS(2000), + [anon_sym_namespace] = ACTIONS(2000), + [anon_sym_using] = ACTIONS(2000), + [anon_sym_static_assert] = ACTIONS(2000), + [anon_sym_concept] = ACTIONS(2000), + [anon_sym_co_return] = ACTIONS(2000), + [anon_sym_co_yield] = ACTIONS(2000), + [anon_sym_R_DQUOTE] = ACTIONS(2002), + [anon_sym_LR_DQUOTE] = ACTIONS(2002), + [anon_sym_uR_DQUOTE] = ACTIONS(2002), + [anon_sym_UR_DQUOTE] = ACTIONS(2002), + [anon_sym_u8R_DQUOTE] = ACTIONS(2002), + [anon_sym_co_await] = ACTIONS(2000), + [anon_sym_new] = ACTIONS(2000), + [anon_sym_requires] = ACTIONS(2000), + [sym_this] = ACTIONS(2000), + [sym_alone_macro] = ACTIONS(2002), + [aux_sym_alone_macro_call_token1] = ACTIONS(2000), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_FORWARD] = ACTIONS(2000), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2000), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_PS_GET] = ACTIONS(2000), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2000), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2000), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2000), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2000), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2000), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2000), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2000), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2000), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2000), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2000), + [anon_sym_MOZ_COLD] = ACTIONS(2000), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2000), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2000), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2000), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2000), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2000), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2000), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2000), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2000), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2000), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2000), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2000), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2000), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2000), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2000), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2000), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2000), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2000), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2000), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2000), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2000), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_NONNULL] = ACTIONS(2000), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2000), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2000), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2000), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2000), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2000), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_NORETURN] = ACTIONS(2000), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2000), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2000), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2000), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2000), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2000), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2000), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2000), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2000), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2000), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2000), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2000), + [anon_sym_MOZ_RAII] = ACTIONS(2000), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2000), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2000), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2000), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2000), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2000), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2000), + }, + [STATE(289)] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2112), + [aux_sym_preproc_include_token1] = ACTIONS(2112), + [aux_sym_preproc_def_token1] = ACTIONS(2112), + [aux_sym_preproc_if_token1] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2112), + [sym_preproc_directive] = ACTIONS(2112), + [anon_sym_LPAREN2] = ACTIONS(2114), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(2112), + [anon_sym_PLUS] = ACTIONS(2112), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_AMP_AMP] = ACTIONS(2114), + [anon_sym_AMP] = ACTIONS(2112), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym___extension__] = ACTIONS(2112), + [anon_sym_typedef] = ACTIONS(2112), + [anon_sym_virtual] = ACTIONS(2112), + [anon_sym_extern] = ACTIONS(2112), + [anon_sym___attribute__] = ACTIONS(2112), + [anon_sym___attribute] = ACTIONS(2112), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2114), + [anon_sym___declspec] = ACTIONS(2112), + [anon_sym___based] = ACTIONS(2112), + [anon_sym___cdecl] = ACTIONS(2112), + [anon_sym___clrcall] = ACTIONS(2112), + [anon_sym___stdcall] = ACTIONS(2112), + [anon_sym___fastcall] = ACTIONS(2112), + [anon_sym___thiscall] = ACTIONS(2112), + [anon_sym___vectorcall] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_signed] = ACTIONS(2112), + [anon_sym_unsigned] = ACTIONS(2112), + [anon_sym_long] = ACTIONS(2112), + [anon_sym_short] = ACTIONS(2112), + [anon_sym_LBRACK] = ACTIONS(2112), + [anon_sym_static] = ACTIONS(2112), + [anon_sym_register] = ACTIONS(2112), + [anon_sym_inline] = ACTIONS(2112), + [anon_sym___inline] = ACTIONS(2112), + [anon_sym___inline__] = ACTIONS(2112), + [anon_sym___forceinline] = ACTIONS(2112), + [anon_sym_thread_local] = ACTIONS(2112), + [anon_sym___thread] = ACTIONS(2112), + [anon_sym_const] = ACTIONS(2112), + [anon_sym_constexpr] = ACTIONS(2112), + [anon_sym_volatile] = ACTIONS(2112), + [anon_sym_restrict] = ACTIONS(2112), + [anon_sym___restrict__] = ACTIONS(2112), + [anon_sym__Atomic] = ACTIONS(2112), + [anon_sym__Noreturn] = ACTIONS(2112), + [anon_sym_noreturn] = ACTIONS(2112), + [anon_sym__Nonnull] = ACTIONS(2112), + [anon_sym_mutable] = ACTIONS(2112), + [anon_sym_constinit] = ACTIONS(2112), + [anon_sym_consteval] = ACTIONS(2112), + [anon_sym_alignas] = ACTIONS(2112), + [anon_sym__Alignas] = ACTIONS(2112), + [sym_primitive_type] = ACTIONS(2112), + [anon_sym_enum] = ACTIONS(2112), + [anon_sym_class] = ACTIONS(2112), + [anon_sym_struct] = ACTIONS(2112), + [anon_sym_union] = ACTIONS(2112), + [anon_sym_if] = ACTIONS(2112), + [anon_sym_else] = ACTIONS(2112), + [anon_sym_switch] = ACTIONS(2112), + [anon_sym_case] = ACTIONS(2112), + [anon_sym_default] = ACTIONS(2112), + [anon_sym_while] = ACTIONS(2112), + [anon_sym_do] = ACTIONS(2112), + [anon_sym_for] = ACTIONS(2112), + [anon_sym_return] = ACTIONS(2112), + [anon_sym_break] = ACTIONS(2112), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_goto] = ACTIONS(2112), + [anon_sym___try] = ACTIONS(2112), + [anon_sym___leave] = ACTIONS(2112), + [anon_sym_not] = ACTIONS(2112), + [anon_sym_compl] = ACTIONS(2112), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_sizeof] = ACTIONS(2112), + [anon_sym___alignof__] = ACTIONS(2112), + [anon_sym___alignof] = ACTIONS(2112), + [anon_sym__alignof] = ACTIONS(2112), + [anon_sym_alignof] = ACTIONS(2112), + [anon_sym__Alignof] = ACTIONS(2112), + [anon_sym_offsetof] = ACTIONS(2112), + [anon_sym__Generic] = ACTIONS(2112), + [anon_sym_asm] = ACTIONS(2112), + [anon_sym___asm__] = ACTIONS(2112), + [anon_sym___asm] = ACTIONS(2112), + [sym_number_literal] = ACTIONS(2114), + [anon_sym_L_SQUOTE] = ACTIONS(2114), + [anon_sym_u_SQUOTE] = ACTIONS(2114), + [anon_sym_U_SQUOTE] = ACTIONS(2114), + [anon_sym_u8_SQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), + [anon_sym_L_DQUOTE] = ACTIONS(2114), + [anon_sym_u_DQUOTE] = ACTIONS(2114), + [anon_sym_U_DQUOTE] = ACTIONS(2114), + [anon_sym_u8_DQUOTE] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2112), + [anon_sym_nullptr] = ACTIONS(2112), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2112), + [anon_sym_decltype] = ACTIONS(2112), + [anon_sym_explicit] = ACTIONS(2112), + [anon_sym_typename] = ACTIONS(2112), + [anon_sym_template] = ACTIONS(2112), + [anon_sym_operator] = ACTIONS(2112), + [anon_sym_try] = ACTIONS(2112), + [anon_sym_delete] = ACTIONS(2112), + [anon_sym_throw] = ACTIONS(2112), + [anon_sym_namespace] = ACTIONS(2112), + [anon_sym_using] = ACTIONS(2112), + [anon_sym_static_assert] = ACTIONS(2112), + [anon_sym_concept] = ACTIONS(2112), + [anon_sym_co_return] = ACTIONS(2112), + [anon_sym_co_yield] = ACTIONS(2112), + [anon_sym_R_DQUOTE] = ACTIONS(2114), + [anon_sym_LR_DQUOTE] = ACTIONS(2114), + [anon_sym_uR_DQUOTE] = ACTIONS(2114), + [anon_sym_UR_DQUOTE] = ACTIONS(2114), + [anon_sym_u8R_DQUOTE] = ACTIONS(2114), + [anon_sym_co_await] = ACTIONS(2112), + [anon_sym_new] = ACTIONS(2112), + [anon_sym_requires] = ACTIONS(2112), + [sym_this] = ACTIONS(2112), + [sym_alone_macro] = ACTIONS(2114), + [aux_sym_alone_macro_call_token1] = ACTIONS(2112), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_FORWARD] = ACTIONS(2112), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2112), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_PS_GET] = ACTIONS(2112), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2112), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2112), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2112), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2112), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2112), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2112), + [anon_sym_MOZ_COLD] = ACTIONS(2112), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2112), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2112), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2112), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2112), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2112), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2112), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2112), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2112), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2112), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2112), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2112), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2112), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2112), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_NONNULL] = ACTIONS(2112), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2112), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2112), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2112), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2112), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2112), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2112), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2112), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2112), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2112), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2112), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2112), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2112), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2112), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2112), + [anon_sym_MOZ_RAII] = ACTIONS(2112), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2112), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2112), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2112), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2112), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2112), + }, + [STATE(290)] = { + [ts_builtin_sym_end] = ACTIONS(2006), + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2004), + [aux_sym_preproc_def_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [sym_preproc_directive] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP_AMP] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(2004), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_virtual] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym_COLON_COLON] = ACTIONS(2006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2006), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___based] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [anon_sym_LBRACK] = ACTIONS(2004), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [anon_sym___inline] = ACTIONS(2004), + [anon_sym___inline__] = ACTIONS(2004), + [anon_sym___forceinline] = ACTIONS(2004), + [anon_sym_thread_local] = ACTIONS(2004), + [anon_sym___thread] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_constexpr] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym___restrict__] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym__Noreturn] = ACTIONS(2004), + [anon_sym_noreturn] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym_mutable] = ACTIONS(2004), + [anon_sym_constinit] = ACTIONS(2004), + [anon_sym_consteval] = ACTIONS(2004), + [anon_sym_alignas] = ACTIONS(2004), + [anon_sym__Alignas] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_class] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_else] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym___try] = ACTIONS(2004), + [anon_sym___leave] = ACTIONS(2004), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [anon_sym___alignof__] = ACTIONS(2004), + [anon_sym___alignof] = ACTIONS(2004), + [anon_sym__alignof] = ACTIONS(2004), + [anon_sym_alignof] = ACTIONS(2004), + [anon_sym__Alignof] = ACTIONS(2004), + [anon_sym_offsetof] = ACTIONS(2004), + [anon_sym__Generic] = ACTIONS(2004), + [anon_sym_asm] = ACTIONS(2004), + [anon_sym___asm__] = ACTIONS(2004), + [anon_sym___asm] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2004), + [anon_sym_nullptr] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2004), + [anon_sym_decltype] = ACTIONS(2004), + [anon_sym_explicit] = ACTIONS(2004), + [anon_sym_typename] = ACTIONS(2004), + [anon_sym_template] = ACTIONS(2004), + [anon_sym_operator] = ACTIONS(2004), + [anon_sym_try] = ACTIONS(2004), + [anon_sym_delete] = ACTIONS(2004), + [anon_sym_throw] = ACTIONS(2004), + [anon_sym_namespace] = ACTIONS(2004), + [anon_sym_using] = ACTIONS(2004), + [anon_sym_static_assert] = ACTIONS(2004), + [anon_sym_concept] = ACTIONS(2004), + [anon_sym_co_return] = ACTIONS(2004), + [anon_sym_co_yield] = ACTIONS(2004), + [anon_sym_R_DQUOTE] = ACTIONS(2006), + [anon_sym_LR_DQUOTE] = ACTIONS(2006), + [anon_sym_uR_DQUOTE] = ACTIONS(2006), + [anon_sym_UR_DQUOTE] = ACTIONS(2006), + [anon_sym_u8R_DQUOTE] = ACTIONS(2006), + [anon_sym_co_await] = ACTIONS(2004), + [anon_sym_new] = ACTIONS(2004), + [anon_sym_requires] = ACTIONS(2004), + [sym_this] = ACTIONS(2004), + [sym_alone_macro] = ACTIONS(2006), + [aux_sym_alone_macro_call_token1] = ACTIONS(2004), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_FORWARD] = ACTIONS(2004), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_PS_GET] = ACTIONS(2004), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2004), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2004), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2004), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2004), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2004), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2004), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2004), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2004), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2004), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2004), + [anon_sym_MOZ_COLD] = ACTIONS(2004), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2004), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2004), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2004), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2004), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2004), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2004), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2004), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2004), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2004), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2004), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2004), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2004), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2004), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2004), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2004), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2004), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2004), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2004), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2004), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2004), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_NONNULL] = ACTIONS(2004), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2004), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2004), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2004), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2004), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2004), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_NORETURN] = ACTIONS(2004), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2004), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2004), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2004), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2004), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2004), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2004), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2004), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2004), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2004), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2004), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2004), + [anon_sym_MOZ_RAII] = ACTIONS(2004), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2004), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2004), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2004), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2004), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2004), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2004), + }, + [STATE(291)] = { + [ts_builtin_sym_end] = ACTIONS(2126), + [sym_identifier] = ACTIONS(2124), + [aux_sym_preproc_include_token1] = ACTIONS(2124), + [aux_sym_preproc_def_token1] = ACTIONS(2124), + [aux_sym_preproc_if_token1] = ACTIONS(2124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2124), + [sym_preproc_directive] = ACTIONS(2124), + [anon_sym_LPAREN2] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_AMP_AMP] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym___extension__] = ACTIONS(2124), + [anon_sym_typedef] = ACTIONS(2124), + [anon_sym_virtual] = ACTIONS(2124), + [anon_sym_extern] = ACTIONS(2124), + [anon_sym___attribute__] = ACTIONS(2124), + [anon_sym___attribute] = ACTIONS(2124), + [anon_sym_COLON_COLON] = ACTIONS(2126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2126), + [anon_sym___declspec] = ACTIONS(2124), + [anon_sym___based] = ACTIONS(2124), + [anon_sym___cdecl] = ACTIONS(2124), + [anon_sym___clrcall] = ACTIONS(2124), + [anon_sym___stdcall] = ACTIONS(2124), + [anon_sym___fastcall] = ACTIONS(2124), + [anon_sym___thiscall] = ACTIONS(2124), + [anon_sym___vectorcall] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2126), + [anon_sym_signed] = ACTIONS(2124), + [anon_sym_unsigned] = ACTIONS(2124), + [anon_sym_long] = ACTIONS(2124), + [anon_sym_short] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_register] = ACTIONS(2124), + [anon_sym_inline] = ACTIONS(2124), + [anon_sym___inline] = ACTIONS(2124), + [anon_sym___inline__] = ACTIONS(2124), + [anon_sym___forceinline] = ACTIONS(2124), + [anon_sym_thread_local] = ACTIONS(2124), + [anon_sym___thread] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_constexpr] = ACTIONS(2124), + [anon_sym_volatile] = ACTIONS(2124), + [anon_sym_restrict] = ACTIONS(2124), + [anon_sym___restrict__] = ACTIONS(2124), + [anon_sym__Atomic] = ACTIONS(2124), + [anon_sym__Noreturn] = ACTIONS(2124), + [anon_sym_noreturn] = ACTIONS(2124), + [anon_sym__Nonnull] = ACTIONS(2124), + [anon_sym_mutable] = ACTIONS(2124), + [anon_sym_constinit] = ACTIONS(2124), + [anon_sym_consteval] = ACTIONS(2124), + [anon_sym_alignas] = ACTIONS(2124), + [anon_sym__Alignas] = ACTIONS(2124), + [sym_primitive_type] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), + [anon_sym_class] = ACTIONS(2124), + [anon_sym_struct] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_else] = ACTIONS(2124), + [anon_sym_switch] = ACTIONS(2124), + [anon_sym_case] = ACTIONS(2124), + [anon_sym_default] = ACTIONS(2124), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_goto] = ACTIONS(2124), + [anon_sym___try] = ACTIONS(2124), + [anon_sym___leave] = ACTIONS(2124), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_compl] = ACTIONS(2124), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_sizeof] = ACTIONS(2124), + [anon_sym___alignof__] = ACTIONS(2124), + [anon_sym___alignof] = ACTIONS(2124), + [anon_sym__alignof] = ACTIONS(2124), + [anon_sym_alignof] = ACTIONS(2124), + [anon_sym__Alignof] = ACTIONS(2124), + [anon_sym_offsetof] = ACTIONS(2124), + [anon_sym__Generic] = ACTIONS(2124), + [anon_sym_asm] = ACTIONS(2124), + [anon_sym___asm__] = ACTIONS(2124), + [anon_sym___asm] = ACTIONS(2124), + [sym_number_literal] = ACTIONS(2126), + [anon_sym_L_SQUOTE] = ACTIONS(2126), + [anon_sym_u_SQUOTE] = ACTIONS(2126), + [anon_sym_U_SQUOTE] = ACTIONS(2126), + [anon_sym_u8_SQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_L_DQUOTE] = ACTIONS(2126), + [anon_sym_u_DQUOTE] = ACTIONS(2126), + [anon_sym_U_DQUOTE] = ACTIONS(2126), + [anon_sym_u8_DQUOTE] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2126), + [sym_true] = ACTIONS(2124), + [sym_false] = ACTIONS(2124), + [anon_sym_NULL] = ACTIONS(2124), + [anon_sym_nullptr] = ACTIONS(2124), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2124), + [anon_sym_decltype] = ACTIONS(2124), + [anon_sym_explicit] = ACTIONS(2124), + [anon_sym_typename] = ACTIONS(2124), + [anon_sym_template] = ACTIONS(2124), + [anon_sym_operator] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2124), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_throw] = ACTIONS(2124), + [anon_sym_namespace] = ACTIONS(2124), + [anon_sym_using] = ACTIONS(2124), + [anon_sym_static_assert] = ACTIONS(2124), + [anon_sym_concept] = ACTIONS(2124), + [anon_sym_co_return] = ACTIONS(2124), + [anon_sym_co_yield] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2124), + [anon_sym_new] = ACTIONS(2124), + [anon_sym_requires] = ACTIONS(2124), + [sym_this] = ACTIONS(2124), + [sym_alone_macro] = ACTIONS(2126), + [aux_sym_alone_macro_call_token1] = ACTIONS(2124), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_FORWARD] = ACTIONS(2124), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2124), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_PS_GET] = ACTIONS(2124), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2124), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2124), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2124), + [anon_sym_MOZ_COLD] = ACTIONS(2124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_NONNULL] = ACTIONS(2124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_NORETURN] = ACTIONS(2124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2124), + [anon_sym_MOZ_RAII] = ACTIONS(2124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2124), + }, + [STATE(292)] = { + [ts_builtin_sym_end] = ACTIONS(2154), + [sym_identifier] = ACTIONS(2152), + [aux_sym_preproc_include_token1] = ACTIONS(2152), + [aux_sym_preproc_def_token1] = ACTIONS(2152), + [aux_sym_preproc_if_token1] = ACTIONS(2152), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2152), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2152), + [sym_preproc_directive] = ACTIONS(2152), + [anon_sym_LPAREN2] = ACTIONS(2154), + [anon_sym_BANG] = ACTIONS(2154), + [anon_sym_TILDE] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_STAR] = ACTIONS(2154), + [anon_sym_AMP_AMP] = ACTIONS(2154), + [anon_sym_AMP] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym___extension__] = ACTIONS(2152), + [anon_sym_typedef] = ACTIONS(2152), + [anon_sym_virtual] = ACTIONS(2152), + [anon_sym_extern] = ACTIONS(2152), + [anon_sym___attribute__] = ACTIONS(2152), + [anon_sym___attribute] = ACTIONS(2152), + [anon_sym_COLON_COLON] = ACTIONS(2154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2154), + [anon_sym___declspec] = ACTIONS(2152), + [anon_sym___based] = ACTIONS(2152), + [anon_sym___cdecl] = ACTIONS(2152), + [anon_sym___clrcall] = ACTIONS(2152), + [anon_sym___stdcall] = ACTIONS(2152), + [anon_sym___fastcall] = ACTIONS(2152), + [anon_sym___thiscall] = ACTIONS(2152), + [anon_sym___vectorcall] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_signed] = ACTIONS(2152), + [anon_sym_unsigned] = ACTIONS(2152), + [anon_sym_long] = ACTIONS(2152), + [anon_sym_short] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_register] = ACTIONS(2152), + [anon_sym_inline] = ACTIONS(2152), + [anon_sym___inline] = ACTIONS(2152), + [anon_sym___inline__] = ACTIONS(2152), + [anon_sym___forceinline] = ACTIONS(2152), + [anon_sym_thread_local] = ACTIONS(2152), + [anon_sym___thread] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_constexpr] = ACTIONS(2152), + [anon_sym_volatile] = ACTIONS(2152), + [anon_sym_restrict] = ACTIONS(2152), + [anon_sym___restrict__] = ACTIONS(2152), + [anon_sym__Atomic] = ACTIONS(2152), + [anon_sym__Noreturn] = ACTIONS(2152), + [anon_sym_noreturn] = ACTIONS(2152), + [anon_sym__Nonnull] = ACTIONS(2152), + [anon_sym_mutable] = ACTIONS(2152), + [anon_sym_constinit] = ACTIONS(2152), + [anon_sym_consteval] = ACTIONS(2152), + [anon_sym_alignas] = ACTIONS(2152), + [anon_sym__Alignas] = ACTIONS(2152), + [sym_primitive_type] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_struct] = ACTIONS(2152), + [anon_sym_union] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_else] = ACTIONS(2152), + [anon_sym_switch] = ACTIONS(2152), + [anon_sym_case] = ACTIONS(2152), + [anon_sym_default] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_goto] = ACTIONS(2152), + [anon_sym___try] = ACTIONS(2152), + [anon_sym___leave] = ACTIONS(2152), + [anon_sym_not] = ACTIONS(2152), + [anon_sym_compl] = ACTIONS(2152), + [anon_sym_DASH_DASH] = ACTIONS(2154), + [anon_sym_PLUS_PLUS] = ACTIONS(2154), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2152), + [anon_sym___alignof] = ACTIONS(2152), + [anon_sym__alignof] = ACTIONS(2152), + [anon_sym_alignof] = ACTIONS(2152), + [anon_sym__Alignof] = ACTIONS(2152), + [anon_sym_offsetof] = ACTIONS(2152), + [anon_sym__Generic] = ACTIONS(2152), + [anon_sym_asm] = ACTIONS(2152), + [anon_sym___asm__] = ACTIONS(2152), + [anon_sym___asm] = ACTIONS(2152), + [sym_number_literal] = ACTIONS(2154), + [anon_sym_L_SQUOTE] = ACTIONS(2154), + [anon_sym_u_SQUOTE] = ACTIONS(2154), + [anon_sym_U_SQUOTE] = ACTIONS(2154), + [anon_sym_u8_SQUOTE] = ACTIONS(2154), + [anon_sym_SQUOTE] = ACTIONS(2154), + [anon_sym_L_DQUOTE] = ACTIONS(2154), + [anon_sym_u_DQUOTE] = ACTIONS(2154), + [anon_sym_U_DQUOTE] = ACTIONS(2154), + [anon_sym_u8_DQUOTE] = ACTIONS(2154), + [anon_sym_DQUOTE] = ACTIONS(2154), + [sym_true] = ACTIONS(2152), + [sym_false] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_nullptr] = ACTIONS(2152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2152), + [anon_sym_decltype] = ACTIONS(2152), + [anon_sym_explicit] = ACTIONS(2152), + [anon_sym_typename] = ACTIONS(2152), + [anon_sym_template] = ACTIONS(2152), + [anon_sym_operator] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2152), + [anon_sym_delete] = ACTIONS(2152), + [anon_sym_throw] = ACTIONS(2152), + [anon_sym_namespace] = ACTIONS(2152), + [anon_sym_using] = ACTIONS(2152), + [anon_sym_static_assert] = ACTIONS(2152), + [anon_sym_concept] = ACTIONS(2152), + [anon_sym_co_return] = ACTIONS(2152), + [anon_sym_co_yield] = ACTIONS(2152), + [anon_sym_R_DQUOTE] = ACTIONS(2154), + [anon_sym_LR_DQUOTE] = ACTIONS(2154), + [anon_sym_uR_DQUOTE] = ACTIONS(2154), + [anon_sym_UR_DQUOTE] = ACTIONS(2154), + [anon_sym_u8R_DQUOTE] = ACTIONS(2154), + [anon_sym_co_await] = ACTIONS(2152), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_requires] = ACTIONS(2152), + [sym_this] = ACTIONS(2152), + [sym_alone_macro] = ACTIONS(2154), + [aux_sym_alone_macro_call_token1] = ACTIONS(2152), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_FORWARD] = ACTIONS(2152), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2152), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_PS_GET] = ACTIONS(2152), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2152), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2152), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2152), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2152), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2152), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2152), + [anon_sym_MOZ_COLD] = ACTIONS(2152), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2152), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2152), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2152), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2152), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2152), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2152), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2152), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2152), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2152), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2152), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2152), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2152), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2152), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_NONNULL] = ACTIONS(2152), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2152), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2152), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2152), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2152), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2152), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2152), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2152), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2152), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2152), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2152), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2152), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2152), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2152), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2152), + [anon_sym_MOZ_RAII] = ACTIONS(2152), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2152), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2152), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2152), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2152), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2152), + }, + [STATE(293)] = { + [ts_builtin_sym_end] = ACTIONS(2158), + [sym_identifier] = ACTIONS(2156), + [aux_sym_preproc_include_token1] = ACTIONS(2156), + [aux_sym_preproc_def_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2156), + [sym_preproc_directive] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(2158), + [anon_sym_BANG] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2158), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym___extension__] = ACTIONS(2156), + [anon_sym_typedef] = ACTIONS(2156), + [anon_sym_virtual] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym___attribute__] = ACTIONS(2156), + [anon_sym___attribute] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2158), + [anon_sym___declspec] = ACTIONS(2156), + [anon_sym___based] = ACTIONS(2156), + [anon_sym___cdecl] = ACTIONS(2156), + [anon_sym___clrcall] = ACTIONS(2156), + [anon_sym___stdcall] = ACTIONS(2156), + [anon_sym___fastcall] = ACTIONS(2156), + [anon_sym___thiscall] = ACTIONS(2156), + [anon_sym___vectorcall] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2158), + [anon_sym_signed] = ACTIONS(2156), + [anon_sym_unsigned] = ACTIONS(2156), + [anon_sym_long] = ACTIONS(2156), + [anon_sym_short] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_inline] = ACTIONS(2156), + [anon_sym___inline] = ACTIONS(2156), + [anon_sym___inline__] = ACTIONS(2156), + [anon_sym___forceinline] = ACTIONS(2156), + [anon_sym_thread_local] = ACTIONS(2156), + [anon_sym___thread] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_constexpr] = ACTIONS(2156), + [anon_sym_volatile] = ACTIONS(2156), + [anon_sym_restrict] = ACTIONS(2156), + [anon_sym___restrict__] = ACTIONS(2156), + [anon_sym__Atomic] = ACTIONS(2156), + [anon_sym__Noreturn] = ACTIONS(2156), + [anon_sym_noreturn] = ACTIONS(2156), + [anon_sym__Nonnull] = ACTIONS(2156), + [anon_sym_mutable] = ACTIONS(2156), + [anon_sym_constinit] = ACTIONS(2156), + [anon_sym_consteval] = ACTIONS(2156), + [anon_sym_alignas] = ACTIONS(2156), + [anon_sym__Alignas] = ACTIONS(2156), + [sym_primitive_type] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_case] = ACTIONS(2156), + [anon_sym_default] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_goto] = ACTIONS(2156), + [anon_sym___try] = ACTIONS(2156), + [anon_sym___leave] = ACTIONS(2156), + [anon_sym_not] = ACTIONS(2156), + [anon_sym_compl] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2158), + [anon_sym_PLUS_PLUS] = ACTIONS(2158), + [anon_sym_sizeof] = ACTIONS(2156), + [anon_sym___alignof__] = ACTIONS(2156), + [anon_sym___alignof] = ACTIONS(2156), + [anon_sym__alignof] = ACTIONS(2156), + [anon_sym_alignof] = ACTIONS(2156), + [anon_sym__Alignof] = ACTIONS(2156), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2156), + [anon_sym_asm] = ACTIONS(2156), + [anon_sym___asm__] = ACTIONS(2156), + [anon_sym___asm] = ACTIONS(2156), + [sym_number_literal] = ACTIONS(2158), + [anon_sym_L_SQUOTE] = ACTIONS(2158), + [anon_sym_u_SQUOTE] = ACTIONS(2158), + [anon_sym_U_SQUOTE] = ACTIONS(2158), + [anon_sym_u8_SQUOTE] = ACTIONS(2158), + [anon_sym_SQUOTE] = ACTIONS(2158), + [anon_sym_L_DQUOTE] = ACTIONS(2158), + [anon_sym_u_DQUOTE] = ACTIONS(2158), + [anon_sym_U_DQUOTE] = ACTIONS(2158), + [anon_sym_u8_DQUOTE] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [anon_sym_NULL] = ACTIONS(2156), + [anon_sym_nullptr] = ACTIONS(2156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2156), + [anon_sym_decltype] = ACTIONS(2156), + [anon_sym_explicit] = ACTIONS(2156), + [anon_sym_typename] = ACTIONS(2156), + [anon_sym_template] = ACTIONS(2156), + [anon_sym_operator] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_static_assert] = ACTIONS(2156), + [anon_sym_concept] = ACTIONS(2156), + [anon_sym_co_return] = ACTIONS(2156), + [anon_sym_co_yield] = ACTIONS(2156), + [anon_sym_R_DQUOTE] = ACTIONS(2158), + [anon_sym_LR_DQUOTE] = ACTIONS(2158), + [anon_sym_uR_DQUOTE] = ACTIONS(2158), + [anon_sym_UR_DQUOTE] = ACTIONS(2158), + [anon_sym_u8R_DQUOTE] = ACTIONS(2158), + [anon_sym_co_await] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_requires] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [sym_alone_macro] = ACTIONS(2158), + [aux_sym_alone_macro_call_token1] = ACTIONS(2156), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_FORWARD] = ACTIONS(2156), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2156), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_PS_GET] = ACTIONS(2156), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2156), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2156), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2156), + [anon_sym_MOZ_COLD] = ACTIONS(2156), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2156), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2156), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2156), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2156), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2156), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2156), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2156), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2156), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2156), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2156), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2156), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2156), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_RAII] = ACTIONS(2156), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2156), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2156), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2156), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2156), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2156), + }, + [STATE(294)] = { + [ts_builtin_sym_end] = ACTIONS(2158), + [sym_identifier] = ACTIONS(2156), + [aux_sym_preproc_include_token1] = ACTIONS(2156), + [aux_sym_preproc_def_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2156), + [sym_preproc_directive] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(2158), + [anon_sym_BANG] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2158), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym___extension__] = ACTIONS(2156), + [anon_sym_typedef] = ACTIONS(2156), + [anon_sym_virtual] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym___attribute__] = ACTIONS(2156), + [anon_sym___attribute] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2158), + [anon_sym___declspec] = ACTIONS(2156), + [anon_sym___based] = ACTIONS(2156), + [anon_sym___cdecl] = ACTIONS(2156), + [anon_sym___clrcall] = ACTIONS(2156), + [anon_sym___stdcall] = ACTIONS(2156), + [anon_sym___fastcall] = ACTIONS(2156), + [anon_sym___thiscall] = ACTIONS(2156), + [anon_sym___vectorcall] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2158), + [anon_sym_signed] = ACTIONS(2156), + [anon_sym_unsigned] = ACTIONS(2156), + [anon_sym_long] = ACTIONS(2156), + [anon_sym_short] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_inline] = ACTIONS(2156), + [anon_sym___inline] = ACTIONS(2156), + [anon_sym___inline__] = ACTIONS(2156), + [anon_sym___forceinline] = ACTIONS(2156), + [anon_sym_thread_local] = ACTIONS(2156), + [anon_sym___thread] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_constexpr] = ACTIONS(2156), + [anon_sym_volatile] = ACTIONS(2156), + [anon_sym_restrict] = ACTIONS(2156), + [anon_sym___restrict__] = ACTIONS(2156), + [anon_sym__Atomic] = ACTIONS(2156), + [anon_sym__Noreturn] = ACTIONS(2156), + [anon_sym_noreturn] = ACTIONS(2156), + [anon_sym__Nonnull] = ACTIONS(2156), + [anon_sym_mutable] = ACTIONS(2156), + [anon_sym_constinit] = ACTIONS(2156), + [anon_sym_consteval] = ACTIONS(2156), + [anon_sym_alignas] = ACTIONS(2156), + [anon_sym__Alignas] = ACTIONS(2156), + [sym_primitive_type] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_case] = ACTIONS(2156), + [anon_sym_default] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_goto] = ACTIONS(2156), + [anon_sym___try] = ACTIONS(2156), + [anon_sym___leave] = ACTIONS(2156), + [anon_sym_not] = ACTIONS(2156), + [anon_sym_compl] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2158), + [anon_sym_PLUS_PLUS] = ACTIONS(2158), + [anon_sym_sizeof] = ACTIONS(2156), + [anon_sym___alignof__] = ACTIONS(2156), + [anon_sym___alignof] = ACTIONS(2156), + [anon_sym__alignof] = ACTIONS(2156), + [anon_sym_alignof] = ACTIONS(2156), + [anon_sym__Alignof] = ACTIONS(2156), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2156), + [anon_sym_asm] = ACTIONS(2156), + [anon_sym___asm__] = ACTIONS(2156), + [anon_sym___asm] = ACTIONS(2156), + [sym_number_literal] = ACTIONS(2158), + [anon_sym_L_SQUOTE] = ACTIONS(2158), + [anon_sym_u_SQUOTE] = ACTIONS(2158), + [anon_sym_U_SQUOTE] = ACTIONS(2158), + [anon_sym_u8_SQUOTE] = ACTIONS(2158), + [anon_sym_SQUOTE] = ACTIONS(2158), + [anon_sym_L_DQUOTE] = ACTIONS(2158), + [anon_sym_u_DQUOTE] = ACTIONS(2158), + [anon_sym_U_DQUOTE] = ACTIONS(2158), + [anon_sym_u8_DQUOTE] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [anon_sym_NULL] = ACTIONS(2156), + [anon_sym_nullptr] = ACTIONS(2156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2156), + [anon_sym_decltype] = ACTIONS(2156), + [anon_sym_explicit] = ACTIONS(2156), + [anon_sym_typename] = ACTIONS(2156), + [anon_sym_template] = ACTIONS(2156), + [anon_sym_operator] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_static_assert] = ACTIONS(2156), + [anon_sym_concept] = ACTIONS(2156), + [anon_sym_co_return] = ACTIONS(2156), + [anon_sym_co_yield] = ACTIONS(2156), + [anon_sym_R_DQUOTE] = ACTIONS(2158), + [anon_sym_LR_DQUOTE] = ACTIONS(2158), + [anon_sym_uR_DQUOTE] = ACTIONS(2158), + [anon_sym_UR_DQUOTE] = ACTIONS(2158), + [anon_sym_u8R_DQUOTE] = ACTIONS(2158), + [anon_sym_co_await] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_requires] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [sym_alone_macro] = ACTIONS(2158), + [aux_sym_alone_macro_call_token1] = ACTIONS(2156), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_FORWARD] = ACTIONS(2156), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2156), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_PS_GET] = ACTIONS(2156), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2156), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2156), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2156), + [anon_sym_MOZ_COLD] = ACTIONS(2156), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2156), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2156), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2156), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2156), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2156), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2156), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2156), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2156), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2156), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2156), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2156), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2156), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_RAII] = ACTIONS(2156), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2156), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2156), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2156), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2156), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2156), + }, + [STATE(295)] = { + [sym_catch_clause] = STATE(146), + [aux_sym_constructor_try_statement_repeat1] = STATE(146), + [ts_builtin_sym_end] = ACTIONS(1945), + [sym_identifier] = ACTIONS(1943), + [aux_sym_preproc_include_token1] = ACTIONS(1943), + [aux_sym_preproc_def_token1] = ACTIONS(1943), + [aux_sym_preproc_if_token1] = ACTIONS(1943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1943), + [sym_preproc_directive] = ACTIONS(1943), + [anon_sym_LPAREN2] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_AMP_AMP] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_SEMI] = ACTIONS(1945), + [anon_sym___extension__] = ACTIONS(1943), + [anon_sym_typedef] = ACTIONS(1943), + [anon_sym_virtual] = ACTIONS(1943), + [anon_sym_extern] = ACTIONS(1943), + [anon_sym___attribute__] = ACTIONS(1943), + [anon_sym___attribute] = ACTIONS(1943), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1945), + [anon_sym___declspec] = ACTIONS(1943), + [anon_sym___based] = ACTIONS(1943), + [anon_sym___cdecl] = ACTIONS(1943), + [anon_sym___clrcall] = ACTIONS(1943), + [anon_sym___stdcall] = ACTIONS(1943), + [anon_sym___fastcall] = ACTIONS(1943), + [anon_sym___thiscall] = ACTIONS(1943), + [anon_sym___vectorcall] = ACTIONS(1943), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_signed] = ACTIONS(1943), + [anon_sym_unsigned] = ACTIONS(1943), + [anon_sym_long] = ACTIONS(1943), + [anon_sym_short] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_static] = ACTIONS(1943), + [anon_sym_register] = ACTIONS(1943), + [anon_sym_inline] = ACTIONS(1943), + [anon_sym___inline] = ACTIONS(1943), + [anon_sym___inline__] = ACTIONS(1943), + [anon_sym___forceinline] = ACTIONS(1943), + [anon_sym_thread_local] = ACTIONS(1943), + [anon_sym___thread] = ACTIONS(1943), + [anon_sym_const] = ACTIONS(1943), + [anon_sym_constexpr] = ACTIONS(1943), + [anon_sym_volatile] = ACTIONS(1943), + [anon_sym_restrict] = ACTIONS(1943), + [anon_sym___restrict__] = ACTIONS(1943), + [anon_sym__Atomic] = ACTIONS(1943), + [anon_sym__Noreturn] = ACTIONS(1943), + [anon_sym_noreturn] = ACTIONS(1943), + [anon_sym__Nonnull] = ACTIONS(1943), + [anon_sym_mutable] = ACTIONS(1943), + [anon_sym_constinit] = ACTIONS(1943), + [anon_sym_consteval] = ACTIONS(1943), + [anon_sym_alignas] = ACTIONS(1943), + [anon_sym__Alignas] = ACTIONS(1943), + [sym_primitive_type] = ACTIONS(1943), + [anon_sym_enum] = ACTIONS(1943), + [anon_sym_class] = ACTIONS(1943), + [anon_sym_struct] = ACTIONS(1943), + [anon_sym_union] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(1943), + [anon_sym_switch] = ACTIONS(1943), + [anon_sym_case] = ACTIONS(1943), + [anon_sym_default] = ACTIONS(1943), + [anon_sym_while] = ACTIONS(1943), + [anon_sym_do] = ACTIONS(1943), + [anon_sym_for] = ACTIONS(1943), + [anon_sym_return] = ACTIONS(1943), + [anon_sym_break] = ACTIONS(1943), + [anon_sym_continue] = ACTIONS(1943), + [anon_sym_goto] = ACTIONS(1943), + [anon_sym_not] = ACTIONS(1943), + [anon_sym_compl] = ACTIONS(1943), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_sizeof] = ACTIONS(1943), + [anon_sym___alignof__] = ACTIONS(1943), + [anon_sym___alignof] = ACTIONS(1943), + [anon_sym__alignof] = ACTIONS(1943), + [anon_sym_alignof] = ACTIONS(1943), + [anon_sym__Alignof] = ACTIONS(1943), + [anon_sym_offsetof] = ACTIONS(1943), + [anon_sym__Generic] = ACTIONS(1943), + [anon_sym_asm] = ACTIONS(1943), + [anon_sym___asm__] = ACTIONS(1943), + [anon_sym___asm] = ACTIONS(1943), + [sym_number_literal] = ACTIONS(1945), + [anon_sym_L_SQUOTE] = ACTIONS(1945), + [anon_sym_u_SQUOTE] = ACTIONS(1945), + [anon_sym_U_SQUOTE] = ACTIONS(1945), + [anon_sym_u8_SQUOTE] = ACTIONS(1945), + [anon_sym_SQUOTE] = ACTIONS(1945), + [anon_sym_L_DQUOTE] = ACTIONS(1945), + [anon_sym_u_DQUOTE] = ACTIONS(1945), + [anon_sym_U_DQUOTE] = ACTIONS(1945), + [anon_sym_u8_DQUOTE] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [sym_true] = ACTIONS(1943), + [sym_false] = ACTIONS(1943), + [anon_sym_NULL] = ACTIONS(1943), + [anon_sym_nullptr] = ACTIONS(1943), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1943), + [anon_sym_decltype] = ACTIONS(1943), + [anon_sym_explicit] = ACTIONS(1943), + [anon_sym_typename] = ACTIONS(1943), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_operator] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1943), + [anon_sym_delete] = ACTIONS(1943), + [anon_sym_throw] = ACTIONS(1943), + [anon_sym_namespace] = ACTIONS(1943), + [anon_sym_using] = ACTIONS(1943), + [anon_sym_static_assert] = ACTIONS(1943), + [anon_sym_concept] = ACTIONS(1943), + [anon_sym_co_return] = ACTIONS(1943), + [anon_sym_co_yield] = ACTIONS(1943), + [anon_sym_catch] = ACTIONS(1961), + [anon_sym_R_DQUOTE] = ACTIONS(1945), + [anon_sym_LR_DQUOTE] = ACTIONS(1945), + [anon_sym_uR_DQUOTE] = ACTIONS(1945), + [anon_sym_UR_DQUOTE] = ACTIONS(1945), + [anon_sym_u8R_DQUOTE] = ACTIONS(1945), + [anon_sym_co_await] = ACTIONS(1943), + [anon_sym_new] = ACTIONS(1943), + [anon_sym_requires] = ACTIONS(1943), + [sym_this] = ACTIONS(1943), + [sym_alone_macro] = ACTIONS(1945), + [aux_sym_alone_macro_call_token1] = ACTIONS(1943), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1943), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_FORWARD] = ACTIONS(1943), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1943), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1943), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1943), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1943), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_PS_GET] = ACTIONS(1943), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1943), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1943), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1943), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1943), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1943), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1943), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1943), + [anon_sym_MOZ_COLD] = ACTIONS(1943), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1943), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1943), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1943), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1943), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1943), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1943), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1943), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1943), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1943), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1943), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1943), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1943), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1943), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_NONNULL] = ACTIONS(1943), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1943), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1943), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1943), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1943), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1943), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1943), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1943), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1943), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1943), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1943), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1943), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1943), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1943), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1943), + [anon_sym_MOZ_RAII] = ACTIONS(1943), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1943), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1943), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1943), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1943), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1943), + }, + [STATE(296)] = { + [ts_builtin_sym_end] = ACTIONS(2110), + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_include_token1] = ACTIONS(2108), + [aux_sym_preproc_def_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [sym_preproc_directive] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_AMP_AMP] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym___extension__] = ACTIONS(2108), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_virtual] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym_COLON_COLON] = ACTIONS(2110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2110), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___based] = ACTIONS(2108), + [anon_sym___cdecl] = ACTIONS(2108), + [anon_sym___clrcall] = ACTIONS(2108), + [anon_sym___stdcall] = ACTIONS(2108), + [anon_sym___fastcall] = ACTIONS(2108), + [anon_sym___thiscall] = ACTIONS(2108), + [anon_sym___vectorcall] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [anon_sym_LBRACK] = ACTIONS(2108), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [anon_sym___inline] = ACTIONS(2108), + [anon_sym___inline__] = ACTIONS(2108), + [anon_sym___forceinline] = ACTIONS(2108), + [anon_sym_thread_local] = ACTIONS(2108), + [anon_sym___thread] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_constexpr] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym___restrict__] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym__Noreturn] = ACTIONS(2108), + [anon_sym_noreturn] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym_mutable] = ACTIONS(2108), + [anon_sym_constinit] = ACTIONS(2108), + [anon_sym_consteval] = ACTIONS(2108), + [anon_sym_alignas] = ACTIONS(2108), + [anon_sym__Alignas] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_class] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_else] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_case] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_goto] = ACTIONS(2108), + [anon_sym___try] = ACTIONS(2108), + [anon_sym___leave] = ACTIONS(2108), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_sizeof] = ACTIONS(2108), + [anon_sym___alignof__] = ACTIONS(2108), + [anon_sym___alignof] = ACTIONS(2108), + [anon_sym__alignof] = ACTIONS(2108), + [anon_sym_alignof] = ACTIONS(2108), + [anon_sym__Alignof] = ACTIONS(2108), + [anon_sym_offsetof] = ACTIONS(2108), + [anon_sym__Generic] = ACTIONS(2108), + [anon_sym_asm] = ACTIONS(2108), + [anon_sym___asm__] = ACTIONS(2108), + [anon_sym___asm] = ACTIONS(2108), + [sym_number_literal] = ACTIONS(2110), + [anon_sym_L_SQUOTE] = ACTIONS(2110), + [anon_sym_u_SQUOTE] = ACTIONS(2110), + [anon_sym_U_SQUOTE] = ACTIONS(2110), + [anon_sym_u8_SQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [anon_sym_NULL] = ACTIONS(2108), + [anon_sym_nullptr] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2108), + [anon_sym_decltype] = ACTIONS(2108), + [anon_sym_explicit] = ACTIONS(2108), + [anon_sym_typename] = ACTIONS(2108), + [anon_sym_template] = ACTIONS(2108), + [anon_sym_operator] = ACTIONS(2108), + [anon_sym_try] = ACTIONS(2108), + [anon_sym_delete] = ACTIONS(2108), + [anon_sym_throw] = ACTIONS(2108), + [anon_sym_namespace] = ACTIONS(2108), + [anon_sym_using] = ACTIONS(2108), + [anon_sym_static_assert] = ACTIONS(2108), + [anon_sym_concept] = ACTIONS(2108), + [anon_sym_co_return] = ACTIONS(2108), + [anon_sym_co_yield] = ACTIONS(2108), + [anon_sym_R_DQUOTE] = ACTIONS(2110), + [anon_sym_LR_DQUOTE] = ACTIONS(2110), + [anon_sym_uR_DQUOTE] = ACTIONS(2110), + [anon_sym_UR_DQUOTE] = ACTIONS(2110), + [anon_sym_u8R_DQUOTE] = ACTIONS(2110), + [anon_sym_co_await] = ACTIONS(2108), + [anon_sym_new] = ACTIONS(2108), + [anon_sym_requires] = ACTIONS(2108), + [sym_this] = ACTIONS(2108), + [sym_alone_macro] = ACTIONS(2110), + [aux_sym_alone_macro_call_token1] = ACTIONS(2108), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_FORWARD] = ACTIONS(2108), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_PS_GET] = ACTIONS(2108), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2108), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2108), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2108), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2108), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2108), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2108), + [anon_sym_MOZ_COLD] = ACTIONS(2108), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2108), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2108), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2108), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2108), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2108), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2108), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2108), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2108), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2108), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2108), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2108), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2108), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2108), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_NONNULL] = ACTIONS(2108), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2108), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2108), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2108), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2108), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2108), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2108), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2108), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2108), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2108), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2108), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2108), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2108), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2108), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2108), + [anon_sym_MOZ_RAII] = ACTIONS(2108), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2108), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2108), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2108), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2108), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2108), + }, + [STATE(297)] = { + [ts_builtin_sym_end] = ACTIONS(2150), + [sym_identifier] = ACTIONS(2148), + [aux_sym_preproc_include_token1] = ACTIONS(2148), + [aux_sym_preproc_def_token1] = ACTIONS(2148), + [aux_sym_preproc_if_token1] = ACTIONS(2148), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2148), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2148), + [sym_preproc_directive] = ACTIONS(2148), + [anon_sym_LPAREN2] = ACTIONS(2150), + [anon_sym_BANG] = ACTIONS(2150), + [anon_sym_TILDE] = ACTIONS(2150), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_PLUS] = ACTIONS(2148), + [anon_sym_STAR] = ACTIONS(2150), + [anon_sym_AMP_AMP] = ACTIONS(2150), + [anon_sym_AMP] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym___extension__] = ACTIONS(2148), + [anon_sym_typedef] = ACTIONS(2148), + [anon_sym_virtual] = ACTIONS(2148), + [anon_sym_extern] = ACTIONS(2148), + [anon_sym___attribute__] = ACTIONS(2148), + [anon_sym___attribute] = ACTIONS(2148), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2150), + [anon_sym___declspec] = ACTIONS(2148), + [anon_sym___based] = ACTIONS(2148), + [anon_sym___cdecl] = ACTIONS(2148), + [anon_sym___clrcall] = ACTIONS(2148), + [anon_sym___stdcall] = ACTIONS(2148), + [anon_sym___fastcall] = ACTIONS(2148), + [anon_sym___thiscall] = ACTIONS(2148), + [anon_sym___vectorcall] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_signed] = ACTIONS(2148), + [anon_sym_unsigned] = ACTIONS(2148), + [anon_sym_long] = ACTIONS(2148), + [anon_sym_short] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_register] = ACTIONS(2148), + [anon_sym_inline] = ACTIONS(2148), + [anon_sym___inline] = ACTIONS(2148), + [anon_sym___inline__] = ACTIONS(2148), + [anon_sym___forceinline] = ACTIONS(2148), + [anon_sym_thread_local] = ACTIONS(2148), + [anon_sym___thread] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_constexpr] = ACTIONS(2148), + [anon_sym_volatile] = ACTIONS(2148), + [anon_sym_restrict] = ACTIONS(2148), + [anon_sym___restrict__] = ACTIONS(2148), + [anon_sym__Atomic] = ACTIONS(2148), + [anon_sym__Noreturn] = ACTIONS(2148), + [anon_sym_noreturn] = ACTIONS(2148), + [anon_sym__Nonnull] = ACTIONS(2148), + [anon_sym_mutable] = ACTIONS(2148), + [anon_sym_constinit] = ACTIONS(2148), + [anon_sym_consteval] = ACTIONS(2148), + [anon_sym_alignas] = ACTIONS(2148), + [anon_sym__Alignas] = ACTIONS(2148), + [sym_primitive_type] = ACTIONS(2148), + [anon_sym_enum] = ACTIONS(2148), + [anon_sym_class] = ACTIONS(2148), + [anon_sym_struct] = ACTIONS(2148), + [anon_sym_union] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2148), + [anon_sym_else] = ACTIONS(2148), + [anon_sym_switch] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2148), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2148), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_for] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2148), + [anon_sym_break] = ACTIONS(2148), + [anon_sym_continue] = ACTIONS(2148), + [anon_sym_goto] = ACTIONS(2148), + [anon_sym___try] = ACTIONS(2148), + [anon_sym___leave] = ACTIONS(2148), + [anon_sym_not] = ACTIONS(2148), + [anon_sym_compl] = ACTIONS(2148), + [anon_sym_DASH_DASH] = ACTIONS(2150), + [anon_sym_PLUS_PLUS] = ACTIONS(2150), + [anon_sym_sizeof] = ACTIONS(2148), + [anon_sym___alignof__] = ACTIONS(2148), + [anon_sym___alignof] = ACTIONS(2148), + [anon_sym__alignof] = ACTIONS(2148), + [anon_sym_alignof] = ACTIONS(2148), + [anon_sym__Alignof] = ACTIONS(2148), + [anon_sym_offsetof] = ACTIONS(2148), + [anon_sym__Generic] = ACTIONS(2148), + [anon_sym_asm] = ACTIONS(2148), + [anon_sym___asm__] = ACTIONS(2148), + [anon_sym___asm] = ACTIONS(2148), + [sym_number_literal] = ACTIONS(2150), + [anon_sym_L_SQUOTE] = ACTIONS(2150), + [anon_sym_u_SQUOTE] = ACTIONS(2150), + [anon_sym_U_SQUOTE] = ACTIONS(2150), + [anon_sym_u8_SQUOTE] = ACTIONS(2150), + [anon_sym_SQUOTE] = ACTIONS(2150), + [anon_sym_L_DQUOTE] = ACTIONS(2150), + [anon_sym_u_DQUOTE] = ACTIONS(2150), + [anon_sym_U_DQUOTE] = ACTIONS(2150), + [anon_sym_u8_DQUOTE] = ACTIONS(2150), + [anon_sym_DQUOTE] = ACTIONS(2150), + [sym_true] = ACTIONS(2148), + [sym_false] = ACTIONS(2148), + [anon_sym_NULL] = ACTIONS(2148), + [anon_sym_nullptr] = ACTIONS(2148), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2148), + [anon_sym_decltype] = ACTIONS(2148), + [anon_sym_explicit] = ACTIONS(2148), + [anon_sym_typename] = ACTIONS(2148), + [anon_sym_template] = ACTIONS(2148), + [anon_sym_operator] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2148), + [anon_sym_delete] = ACTIONS(2148), + [anon_sym_throw] = ACTIONS(2148), + [anon_sym_namespace] = ACTIONS(2148), + [anon_sym_using] = ACTIONS(2148), + [anon_sym_static_assert] = ACTIONS(2148), + [anon_sym_concept] = ACTIONS(2148), + [anon_sym_co_return] = ACTIONS(2148), + [anon_sym_co_yield] = ACTIONS(2148), + [anon_sym_R_DQUOTE] = ACTIONS(2150), + [anon_sym_LR_DQUOTE] = ACTIONS(2150), + [anon_sym_uR_DQUOTE] = ACTIONS(2150), + [anon_sym_UR_DQUOTE] = ACTIONS(2150), + [anon_sym_u8R_DQUOTE] = ACTIONS(2150), + [anon_sym_co_await] = ACTIONS(2148), + [anon_sym_new] = ACTIONS(2148), + [anon_sym_requires] = ACTIONS(2148), + [sym_this] = ACTIONS(2148), + [sym_alone_macro] = ACTIONS(2150), + [aux_sym_alone_macro_call_token1] = ACTIONS(2148), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_FORWARD] = ACTIONS(2148), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2148), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_PS_GET] = ACTIONS(2148), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2148), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2148), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2148), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2148), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2148), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2148), + [anon_sym_MOZ_COLD] = ACTIONS(2148), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2148), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2148), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2148), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2148), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2148), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2148), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2148), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2148), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2148), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2148), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2148), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2148), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2148), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_NONNULL] = ACTIONS(2148), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2148), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2148), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2148), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2148), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2148), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2148), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2148), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2148), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2148), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2148), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2148), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2148), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2148), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2148), + [anon_sym_MOZ_RAII] = ACTIONS(2148), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2148), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2148), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2148), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2148), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2148), + }, + [STATE(298)] = { + [ts_builtin_sym_end] = ACTIONS(1972), + [sym_identifier] = ACTIONS(1970), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1970), + [sym_preproc_directive] = ACTIONS(1970), + [anon_sym_LPAREN2] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1970), + [anon_sym_PLUS] = ACTIONS(1970), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym___extension__] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1970), + [anon_sym_virtual] = ACTIONS(1970), + [anon_sym_extern] = ACTIONS(1970), + [anon_sym___attribute__] = ACTIONS(1970), + [anon_sym___attribute] = ACTIONS(1970), + [anon_sym_COLON_COLON] = ACTIONS(1972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1970), + [anon_sym___based] = ACTIONS(1970), + [anon_sym___cdecl] = ACTIONS(1970), + [anon_sym___clrcall] = ACTIONS(1970), + [anon_sym___stdcall] = ACTIONS(1970), + [anon_sym___fastcall] = ACTIONS(1970), + [anon_sym___thiscall] = ACTIONS(1970), + [anon_sym___vectorcall] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1970), + [anon_sym_unsigned] = ACTIONS(1970), + [anon_sym_long] = ACTIONS(1970), + [anon_sym_short] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1970), + [anon_sym_register] = ACTIONS(1970), + [anon_sym_inline] = ACTIONS(1970), + [anon_sym___inline] = ACTIONS(1970), + [anon_sym___inline__] = ACTIONS(1970), + [anon_sym___forceinline] = ACTIONS(1970), + [anon_sym_thread_local] = ACTIONS(1970), + [anon_sym___thread] = ACTIONS(1970), + [anon_sym_const] = ACTIONS(1970), + [anon_sym_constexpr] = ACTIONS(1970), + [anon_sym_volatile] = ACTIONS(1970), + [anon_sym_restrict] = ACTIONS(1970), + [anon_sym___restrict__] = ACTIONS(1970), + [anon_sym__Atomic] = ACTIONS(1970), + [anon_sym__Noreturn] = ACTIONS(1970), + [anon_sym_noreturn] = ACTIONS(1970), + [anon_sym__Nonnull] = ACTIONS(1970), + [anon_sym_mutable] = ACTIONS(1970), + [anon_sym_constinit] = ACTIONS(1970), + [anon_sym_consteval] = ACTIONS(1970), + [anon_sym_alignas] = ACTIONS(1970), + [anon_sym__Alignas] = ACTIONS(1970), + [sym_primitive_type] = ACTIONS(1970), + [anon_sym_enum] = ACTIONS(1970), + [anon_sym_class] = ACTIONS(1970), + [anon_sym_struct] = ACTIONS(1970), + [anon_sym_union] = ACTIONS(1970), + [anon_sym_if] = ACTIONS(1970), + [anon_sym_else] = ACTIONS(1970), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1970), + [anon_sym_default] = ACTIONS(1970), + [anon_sym_while] = ACTIONS(1970), + [anon_sym_do] = ACTIONS(1970), + [anon_sym_for] = ACTIONS(1970), + [anon_sym_return] = ACTIONS(1970), + [anon_sym_break] = ACTIONS(1970), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1970), + [anon_sym___try] = ACTIONS(1970), + [anon_sym___leave] = ACTIONS(1970), + [anon_sym_not] = ACTIONS(1970), + [anon_sym_compl] = ACTIONS(1970), + [anon_sym_DASH_DASH] = ACTIONS(1972), + [anon_sym_PLUS_PLUS] = ACTIONS(1972), + [anon_sym_sizeof] = ACTIONS(1970), + [anon_sym___alignof__] = ACTIONS(1970), + [anon_sym___alignof] = ACTIONS(1970), + [anon_sym__alignof] = ACTIONS(1970), + [anon_sym_alignof] = ACTIONS(1970), + [anon_sym__Alignof] = ACTIONS(1970), + [anon_sym_offsetof] = ACTIONS(1970), + [anon_sym__Generic] = ACTIONS(1970), + [anon_sym_asm] = ACTIONS(1970), + [anon_sym___asm__] = ACTIONS(1970), + [anon_sym___asm] = ACTIONS(1970), + [sym_number_literal] = ACTIONS(1972), + [anon_sym_L_SQUOTE] = ACTIONS(1972), + [anon_sym_u_SQUOTE] = ACTIONS(1972), + [anon_sym_U_SQUOTE] = ACTIONS(1972), + [anon_sym_u8_SQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_L_DQUOTE] = ACTIONS(1972), + [anon_sym_u_DQUOTE] = ACTIONS(1972), + [anon_sym_U_DQUOTE] = ACTIONS(1972), + [anon_sym_u8_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), + [sym_true] = ACTIONS(1970), + [sym_false] = ACTIONS(1970), + [anon_sym_NULL] = ACTIONS(1970), + [anon_sym_nullptr] = ACTIONS(1970), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1970), + [anon_sym_decltype] = ACTIONS(1970), + [anon_sym_explicit] = ACTIONS(1970), + [anon_sym_typename] = ACTIONS(1970), + [anon_sym_template] = ACTIONS(1970), + [anon_sym_operator] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1970), + [anon_sym_delete] = ACTIONS(1970), + [anon_sym_throw] = ACTIONS(1970), + [anon_sym_namespace] = ACTIONS(1970), + [anon_sym_using] = ACTIONS(1970), + [anon_sym_static_assert] = ACTIONS(1970), + [anon_sym_concept] = ACTIONS(1970), + [anon_sym_co_return] = ACTIONS(1970), + [anon_sym_co_yield] = ACTIONS(1970), + [anon_sym_R_DQUOTE] = ACTIONS(1972), + [anon_sym_LR_DQUOTE] = ACTIONS(1972), + [anon_sym_uR_DQUOTE] = ACTIONS(1972), + [anon_sym_UR_DQUOTE] = ACTIONS(1972), + [anon_sym_u8R_DQUOTE] = ACTIONS(1972), + [anon_sym_co_await] = ACTIONS(1970), + [anon_sym_new] = ACTIONS(1970), + [anon_sym_requires] = ACTIONS(1970), + [sym_this] = ACTIONS(1970), + [sym_alone_macro] = ACTIONS(1972), + [aux_sym_alone_macro_call_token1] = ACTIONS(1970), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_FORWARD] = ACTIONS(1970), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1970), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_PS_GET] = ACTIONS(1970), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1970), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1970), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1970), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1970), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1970), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1970), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1970), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1970), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1970), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1970), + [anon_sym_MOZ_COLD] = ACTIONS(1970), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1970), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1970), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1970), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1970), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1970), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1970), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1970), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1970), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1970), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1970), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1970), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1970), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1970), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1970), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1970), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1970), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1970), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1970), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1970), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1970), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_NONNULL] = ACTIONS(1970), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1970), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1970), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1970), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1970), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1970), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_NORETURN] = ACTIONS(1970), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1970), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1970), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1970), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1970), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1970), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1970), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1970), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1970), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1970), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1970), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1970), + [anon_sym_MOZ_RAII] = ACTIONS(1970), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1970), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1970), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1970), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1970), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1970), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1970), + }, + [STATE(299)] = { + [ts_builtin_sym_end] = ACTIONS(1986), + [sym_identifier] = ACTIONS(1984), + [aux_sym_preproc_include_token1] = ACTIONS(1984), + [aux_sym_preproc_def_token1] = ACTIONS(1984), + [aux_sym_preproc_if_token1] = ACTIONS(1984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1984), + [sym_preproc_directive] = ACTIONS(1984), + [anon_sym_LPAREN2] = ACTIONS(1986), + [anon_sym_BANG] = ACTIONS(1986), + [anon_sym_TILDE] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(1986), + [anon_sym_AMP_AMP] = ACTIONS(1986), + [anon_sym_AMP] = ACTIONS(1984), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym___extension__] = ACTIONS(1984), + [anon_sym_typedef] = ACTIONS(1984), + [anon_sym_virtual] = ACTIONS(1984), + [anon_sym_extern] = ACTIONS(1984), + [anon_sym___attribute__] = ACTIONS(1984), + [anon_sym___attribute] = ACTIONS(1984), + [anon_sym_COLON_COLON] = ACTIONS(1986), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1986), + [anon_sym___declspec] = ACTIONS(1984), + [anon_sym___based] = ACTIONS(1984), + [anon_sym___cdecl] = ACTIONS(1984), + [anon_sym___clrcall] = ACTIONS(1984), + [anon_sym___stdcall] = ACTIONS(1984), + [anon_sym___fastcall] = ACTIONS(1984), + [anon_sym___thiscall] = ACTIONS(1984), + [anon_sym___vectorcall] = ACTIONS(1984), + [anon_sym_LBRACE] = ACTIONS(1986), + [anon_sym_signed] = ACTIONS(1984), + [anon_sym_unsigned] = ACTIONS(1984), + [anon_sym_long] = ACTIONS(1984), + [anon_sym_short] = ACTIONS(1984), + [anon_sym_LBRACK] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1984), + [anon_sym_register] = ACTIONS(1984), + [anon_sym_inline] = ACTIONS(1984), + [anon_sym___inline] = ACTIONS(1984), + [anon_sym___inline__] = ACTIONS(1984), + [anon_sym___forceinline] = ACTIONS(1984), + [anon_sym_thread_local] = ACTIONS(1984), + [anon_sym___thread] = ACTIONS(1984), + [anon_sym_const] = ACTIONS(1984), + [anon_sym_constexpr] = ACTIONS(1984), + [anon_sym_volatile] = ACTIONS(1984), + [anon_sym_restrict] = ACTIONS(1984), + [anon_sym___restrict__] = ACTIONS(1984), + [anon_sym__Atomic] = ACTIONS(1984), + [anon_sym__Noreturn] = ACTIONS(1984), + [anon_sym_noreturn] = ACTIONS(1984), + [anon_sym__Nonnull] = ACTIONS(1984), + [anon_sym_mutable] = ACTIONS(1984), + [anon_sym_constinit] = ACTIONS(1984), + [anon_sym_consteval] = ACTIONS(1984), + [anon_sym_alignas] = ACTIONS(1984), + [anon_sym__Alignas] = ACTIONS(1984), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1984), + [anon_sym_class] = ACTIONS(1984), + [anon_sym_struct] = ACTIONS(1984), + [anon_sym_union] = ACTIONS(1984), + [anon_sym_if] = ACTIONS(1984), + [anon_sym_else] = ACTIONS(1984), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_case] = ACTIONS(1984), + [anon_sym_default] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1984), + [anon_sym_do] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1984), + [anon_sym_return] = ACTIONS(1984), + [anon_sym_break] = ACTIONS(1984), + [anon_sym_continue] = ACTIONS(1984), + [anon_sym_goto] = ACTIONS(1984), + [anon_sym___try] = ACTIONS(1984), + [anon_sym___leave] = ACTIONS(1984), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_compl] = ACTIONS(1984), + [anon_sym_DASH_DASH] = ACTIONS(1986), + [anon_sym_PLUS_PLUS] = ACTIONS(1986), + [anon_sym_sizeof] = ACTIONS(1984), + [anon_sym___alignof__] = ACTIONS(1984), + [anon_sym___alignof] = ACTIONS(1984), + [anon_sym__alignof] = ACTIONS(1984), + [anon_sym_alignof] = ACTIONS(1984), + [anon_sym__Alignof] = ACTIONS(1984), + [anon_sym_offsetof] = ACTIONS(1984), + [anon_sym__Generic] = ACTIONS(1984), + [anon_sym_asm] = ACTIONS(1984), + [anon_sym___asm__] = ACTIONS(1984), + [anon_sym___asm] = ACTIONS(1984), + [sym_number_literal] = ACTIONS(1986), + [anon_sym_L_SQUOTE] = ACTIONS(1986), + [anon_sym_u_SQUOTE] = ACTIONS(1986), + [anon_sym_U_SQUOTE] = ACTIONS(1986), + [anon_sym_u8_SQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1986), + [anon_sym_L_DQUOTE] = ACTIONS(1986), + [anon_sym_u_DQUOTE] = ACTIONS(1986), + [anon_sym_U_DQUOTE] = ACTIONS(1986), + [anon_sym_u8_DQUOTE] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [anon_sym_NULL] = ACTIONS(1984), + [anon_sym_nullptr] = ACTIONS(1984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1984), + [anon_sym_decltype] = ACTIONS(1984), + [anon_sym_explicit] = ACTIONS(1984), + [anon_sym_typename] = ACTIONS(1984), + [anon_sym_template] = ACTIONS(1984), + [anon_sym_operator] = ACTIONS(1984), + [anon_sym_try] = ACTIONS(1984), + [anon_sym_delete] = ACTIONS(1984), + [anon_sym_throw] = ACTIONS(1984), + [anon_sym_namespace] = ACTIONS(1984), + [anon_sym_using] = ACTIONS(1984), + [anon_sym_static_assert] = ACTIONS(1984), + [anon_sym_concept] = ACTIONS(1984), + [anon_sym_co_return] = ACTIONS(1984), + [anon_sym_co_yield] = ACTIONS(1984), + [anon_sym_R_DQUOTE] = ACTIONS(1986), + [anon_sym_LR_DQUOTE] = ACTIONS(1986), + [anon_sym_uR_DQUOTE] = ACTIONS(1986), + [anon_sym_UR_DQUOTE] = ACTIONS(1986), + [anon_sym_u8R_DQUOTE] = ACTIONS(1986), + [anon_sym_co_await] = ACTIONS(1984), + [anon_sym_new] = ACTIONS(1984), + [anon_sym_requires] = ACTIONS(1984), + [sym_this] = ACTIONS(1984), + [sym_alone_macro] = ACTIONS(1986), + [aux_sym_alone_macro_call_token1] = ACTIONS(1984), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_FORWARD] = ACTIONS(1984), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1984), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_PS_GET] = ACTIONS(1984), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1984), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1984), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1984), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1984), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1984), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1984), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1984), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1984), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1984), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1984), + [anon_sym_MOZ_COLD] = ACTIONS(1984), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1984), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1984), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1984), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1984), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1984), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1984), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1984), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1984), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1984), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1984), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1984), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1984), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1984), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1984), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1984), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1984), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1984), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1984), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1984), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1984), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_NONNULL] = ACTIONS(1984), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1984), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1984), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1984), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1984), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1984), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_NORETURN] = ACTIONS(1984), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1984), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1984), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1984), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1984), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1984), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1984), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1984), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1984), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1984), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1984), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1984), + [anon_sym_MOZ_RAII] = ACTIONS(1984), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1984), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1984), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1984), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1984), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1984), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1984), + }, + [STATE(300)] = { + [ts_builtin_sym_end] = ACTIONS(2022), + [sym_identifier] = ACTIONS(2020), + [aux_sym_preproc_include_token1] = ACTIONS(2020), + [aux_sym_preproc_def_token1] = ACTIONS(2020), + [aux_sym_preproc_if_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2020), + [anon_sym_LPAREN2] = ACTIONS(2022), + [anon_sym_BANG] = ACTIONS(2022), + [anon_sym_TILDE] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2020), + [anon_sym_PLUS] = ACTIONS(2020), + [anon_sym_STAR] = ACTIONS(2022), + [anon_sym_AMP_AMP] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_SEMI] = ACTIONS(2022), + [anon_sym___extension__] = ACTIONS(2020), + [anon_sym_typedef] = ACTIONS(2020), + [anon_sym_virtual] = ACTIONS(2020), + [anon_sym_extern] = ACTIONS(2020), + [anon_sym___attribute__] = ACTIONS(2020), + [anon_sym___attribute] = ACTIONS(2020), + [anon_sym_COLON_COLON] = ACTIONS(2022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2022), + [anon_sym___declspec] = ACTIONS(2020), + [anon_sym___based] = ACTIONS(2020), + [anon_sym___cdecl] = ACTIONS(2020), + [anon_sym___clrcall] = ACTIONS(2020), + [anon_sym___stdcall] = ACTIONS(2020), + [anon_sym___fastcall] = ACTIONS(2020), + [anon_sym___thiscall] = ACTIONS(2020), + [anon_sym___vectorcall] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_signed] = ACTIONS(2020), + [anon_sym_unsigned] = ACTIONS(2020), + [anon_sym_long] = ACTIONS(2020), + [anon_sym_short] = ACTIONS(2020), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2020), + [anon_sym_register] = ACTIONS(2020), + [anon_sym_inline] = ACTIONS(2020), + [anon_sym___inline] = ACTIONS(2020), + [anon_sym___inline__] = ACTIONS(2020), + [anon_sym___forceinline] = ACTIONS(2020), + [anon_sym_thread_local] = ACTIONS(2020), + [anon_sym___thread] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_constexpr] = ACTIONS(2020), + [anon_sym_volatile] = ACTIONS(2020), + [anon_sym_restrict] = ACTIONS(2020), + [anon_sym___restrict__] = ACTIONS(2020), + [anon_sym__Atomic] = ACTIONS(2020), + [anon_sym__Noreturn] = ACTIONS(2020), + [anon_sym_noreturn] = ACTIONS(2020), + [anon_sym__Nonnull] = ACTIONS(2020), + [anon_sym_mutable] = ACTIONS(2020), + [anon_sym_constinit] = ACTIONS(2020), + [anon_sym_consteval] = ACTIONS(2020), + [anon_sym_alignas] = ACTIONS(2020), + [anon_sym__Alignas] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_enum] = ACTIONS(2020), + [anon_sym_class] = ACTIONS(2020), + [anon_sym_struct] = ACTIONS(2020), + [anon_sym_union] = ACTIONS(2020), + [anon_sym_if] = ACTIONS(2020), + [anon_sym_else] = ACTIONS(2020), + [anon_sym_switch] = ACTIONS(2020), + [anon_sym_case] = ACTIONS(2020), + [anon_sym_default] = ACTIONS(2020), + [anon_sym_while] = ACTIONS(2020), + [anon_sym_do] = ACTIONS(2020), + [anon_sym_for] = ACTIONS(2020), + [anon_sym_return] = ACTIONS(2020), + [anon_sym_break] = ACTIONS(2020), + [anon_sym_continue] = ACTIONS(2020), + [anon_sym_goto] = ACTIONS(2020), + [anon_sym___try] = ACTIONS(2020), + [anon_sym___leave] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2020), + [anon_sym_compl] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2020), + [anon_sym___alignof__] = ACTIONS(2020), + [anon_sym___alignof] = ACTIONS(2020), + [anon_sym__alignof] = ACTIONS(2020), + [anon_sym_alignof] = ACTIONS(2020), + [anon_sym__Alignof] = ACTIONS(2020), + [anon_sym_offsetof] = ACTIONS(2020), + [anon_sym__Generic] = ACTIONS(2020), + [anon_sym_asm] = ACTIONS(2020), + [anon_sym___asm__] = ACTIONS(2020), + [anon_sym___asm] = ACTIONS(2020), + [sym_number_literal] = ACTIONS(2022), + [anon_sym_L_SQUOTE] = ACTIONS(2022), + [anon_sym_u_SQUOTE] = ACTIONS(2022), + [anon_sym_U_SQUOTE] = ACTIONS(2022), + [anon_sym_u8_SQUOTE] = ACTIONS(2022), + [anon_sym_SQUOTE] = ACTIONS(2022), + [anon_sym_L_DQUOTE] = ACTIONS(2022), + [anon_sym_u_DQUOTE] = ACTIONS(2022), + [anon_sym_U_DQUOTE] = ACTIONS(2022), + [anon_sym_u8_DQUOTE] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2022), + [sym_true] = ACTIONS(2020), + [sym_false] = ACTIONS(2020), + [anon_sym_NULL] = ACTIONS(2020), + [anon_sym_nullptr] = ACTIONS(2020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2020), + [anon_sym_decltype] = ACTIONS(2020), + [anon_sym_explicit] = ACTIONS(2020), + [anon_sym_typename] = ACTIONS(2020), + [anon_sym_template] = ACTIONS(2020), + [anon_sym_operator] = ACTIONS(2020), + [anon_sym_try] = ACTIONS(2020), + [anon_sym_delete] = ACTIONS(2020), + [anon_sym_throw] = ACTIONS(2020), + [anon_sym_namespace] = ACTIONS(2020), + [anon_sym_using] = ACTIONS(2020), + [anon_sym_static_assert] = ACTIONS(2020), + [anon_sym_concept] = ACTIONS(2020), + [anon_sym_co_return] = ACTIONS(2020), + [anon_sym_co_yield] = ACTIONS(2020), + [anon_sym_R_DQUOTE] = ACTIONS(2022), + [anon_sym_LR_DQUOTE] = ACTIONS(2022), + [anon_sym_uR_DQUOTE] = ACTIONS(2022), + [anon_sym_UR_DQUOTE] = ACTIONS(2022), + [anon_sym_u8R_DQUOTE] = ACTIONS(2022), + [anon_sym_co_await] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2020), + [anon_sym_requires] = ACTIONS(2020), + [sym_this] = ACTIONS(2020), + [sym_alone_macro] = ACTIONS(2022), + [aux_sym_alone_macro_call_token1] = ACTIONS(2020), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_FORWARD] = ACTIONS(2020), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2020), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_PS_GET] = ACTIONS(2020), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2020), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2020), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2020), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2020), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2020), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2020), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2020), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2020), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2020), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2020), + [anon_sym_MOZ_COLD] = ACTIONS(2020), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2020), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2020), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2020), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2020), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2020), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2020), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2020), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2020), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2020), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2020), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2020), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2020), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2020), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2020), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2020), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2020), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2020), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2020), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2020), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2020), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_NONNULL] = ACTIONS(2020), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2020), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2020), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2020), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2020), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2020), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_NORETURN] = ACTIONS(2020), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2020), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2020), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2020), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2020), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2020), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2020), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2020), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2020), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2020), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2020), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2020), + [anon_sym_MOZ_RAII] = ACTIONS(2020), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2020), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2020), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2020), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2020), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2020), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2020), + }, + [STATE(301)] = { + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2168), + [aux_sym_preproc_include_token1] = ACTIONS(2168), + [aux_sym_preproc_def_token1] = ACTIONS(2168), + [aux_sym_preproc_if_token1] = ACTIONS(2168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2168), + [sym_preproc_directive] = ACTIONS(2168), + [anon_sym_LPAREN2] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2168), + [anon_sym_PLUS] = ACTIONS(2168), + [anon_sym_STAR] = ACTIONS(2170), + [anon_sym_AMP_AMP] = ACTIONS(2170), + [anon_sym_AMP] = ACTIONS(2168), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym___extension__] = ACTIONS(2168), + [anon_sym_typedef] = ACTIONS(2168), + [anon_sym_virtual] = ACTIONS(2168), + [anon_sym_extern] = ACTIONS(2168), + [anon_sym___attribute__] = ACTIONS(2168), + [anon_sym___attribute] = ACTIONS(2168), + [anon_sym_COLON_COLON] = ACTIONS(2170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2170), + [anon_sym___declspec] = ACTIONS(2168), + [anon_sym___based] = ACTIONS(2168), + [anon_sym___cdecl] = ACTIONS(2168), + [anon_sym___clrcall] = ACTIONS(2168), + [anon_sym___stdcall] = ACTIONS(2168), + [anon_sym___fastcall] = ACTIONS(2168), + [anon_sym___thiscall] = ACTIONS(2168), + [anon_sym___vectorcall] = ACTIONS(2168), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_signed] = ACTIONS(2168), + [anon_sym_unsigned] = ACTIONS(2168), + [anon_sym_long] = ACTIONS(2168), + [anon_sym_short] = ACTIONS(2168), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_static] = ACTIONS(2168), + [anon_sym_register] = ACTIONS(2168), + [anon_sym_inline] = ACTIONS(2168), + [anon_sym___inline] = ACTIONS(2168), + [anon_sym___inline__] = ACTIONS(2168), + [anon_sym___forceinline] = ACTIONS(2168), + [anon_sym_thread_local] = ACTIONS(2168), + [anon_sym___thread] = ACTIONS(2168), + [anon_sym_const] = ACTIONS(2168), + [anon_sym_constexpr] = ACTIONS(2168), + [anon_sym_volatile] = ACTIONS(2168), + [anon_sym_restrict] = ACTIONS(2168), + [anon_sym___restrict__] = ACTIONS(2168), + [anon_sym__Atomic] = ACTIONS(2168), + [anon_sym__Noreturn] = ACTIONS(2168), + [anon_sym_noreturn] = ACTIONS(2168), + [anon_sym__Nonnull] = ACTIONS(2168), + [anon_sym_mutable] = ACTIONS(2168), + [anon_sym_constinit] = ACTIONS(2168), + [anon_sym_consteval] = ACTIONS(2168), + [anon_sym_alignas] = ACTIONS(2168), + [anon_sym__Alignas] = ACTIONS(2168), + [sym_primitive_type] = ACTIONS(2168), + [anon_sym_enum] = ACTIONS(2168), + [anon_sym_class] = ACTIONS(2168), + [anon_sym_struct] = ACTIONS(2168), + [anon_sym_union] = ACTIONS(2168), + [anon_sym_if] = ACTIONS(2168), + [anon_sym_else] = ACTIONS(2168), + [anon_sym_switch] = ACTIONS(2168), + [anon_sym_case] = ACTIONS(2168), + [anon_sym_default] = ACTIONS(2168), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_do] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2168), + [anon_sym_return] = ACTIONS(2168), + [anon_sym_break] = ACTIONS(2168), + [anon_sym_continue] = ACTIONS(2168), + [anon_sym_goto] = ACTIONS(2168), + [anon_sym___try] = ACTIONS(2168), + [anon_sym___leave] = ACTIONS(2168), + [anon_sym_not] = ACTIONS(2168), + [anon_sym_compl] = ACTIONS(2168), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_sizeof] = ACTIONS(2168), + [anon_sym___alignof__] = ACTIONS(2168), + [anon_sym___alignof] = ACTIONS(2168), + [anon_sym__alignof] = ACTIONS(2168), + [anon_sym_alignof] = ACTIONS(2168), + [anon_sym__Alignof] = ACTIONS(2168), + [anon_sym_offsetof] = ACTIONS(2168), + [anon_sym__Generic] = ACTIONS(2168), + [anon_sym_asm] = ACTIONS(2168), + [anon_sym___asm__] = ACTIONS(2168), + [anon_sym___asm] = ACTIONS(2168), + [sym_number_literal] = ACTIONS(2170), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2170), + [anon_sym_u_DQUOTE] = ACTIONS(2170), + [anon_sym_U_DQUOTE] = ACTIONS(2170), + [anon_sym_u8_DQUOTE] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2168), + [anon_sym_nullptr] = ACTIONS(2168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2168), + [anon_sym_decltype] = ACTIONS(2168), + [anon_sym_explicit] = ACTIONS(2168), + [anon_sym_typename] = ACTIONS(2168), + [anon_sym_template] = ACTIONS(2168), + [anon_sym_operator] = ACTIONS(2168), + [anon_sym_try] = ACTIONS(2168), + [anon_sym_delete] = ACTIONS(2168), + [anon_sym_throw] = ACTIONS(2168), + [anon_sym_namespace] = ACTIONS(2168), + [anon_sym_using] = ACTIONS(2168), + [anon_sym_static_assert] = ACTIONS(2168), + [anon_sym_concept] = ACTIONS(2168), + [anon_sym_co_return] = ACTIONS(2168), + [anon_sym_co_yield] = ACTIONS(2168), + [anon_sym_R_DQUOTE] = ACTIONS(2170), + [anon_sym_LR_DQUOTE] = ACTIONS(2170), + [anon_sym_uR_DQUOTE] = ACTIONS(2170), + [anon_sym_UR_DQUOTE] = ACTIONS(2170), + [anon_sym_u8R_DQUOTE] = ACTIONS(2170), + [anon_sym_co_await] = ACTIONS(2168), + [anon_sym_new] = ACTIONS(2168), + [anon_sym_requires] = ACTIONS(2168), + [sym_this] = ACTIONS(2168), + [sym_alone_macro] = ACTIONS(2170), + [aux_sym_alone_macro_call_token1] = ACTIONS(2168), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_FORWARD] = ACTIONS(2168), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2168), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_PS_GET] = ACTIONS(2168), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2168), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2168), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2168), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2168), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2168), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2168), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2168), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2168), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2168), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2168), + [anon_sym_MOZ_COLD] = ACTIONS(2168), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2168), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2168), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2168), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2168), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2168), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2168), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2168), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2168), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2168), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2168), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2168), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2168), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2168), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2168), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2168), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2168), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2168), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2168), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2168), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2168), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_NONNULL] = ACTIONS(2168), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2168), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2168), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2168), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2168), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2168), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_NORETURN] = ACTIONS(2168), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2168), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2168), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2168), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2168), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2168), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2168), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2168), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2168), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2168), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2168), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2168), + [anon_sym_MOZ_RAII] = ACTIONS(2168), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2168), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2168), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2168), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2168), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2168), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2168), + }, + [STATE(302)] = { + [ts_builtin_sym_end] = ACTIONS(2098), + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2096), + [aux_sym_preproc_def_token1] = ACTIONS(2096), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [sym_preproc_directive] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_AMP_AMP] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2096), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym___extension__] = ACTIONS(2096), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_virtual] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym_COLON_COLON] = ACTIONS(2098), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2098), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___based] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [anon_sym_LBRACK] = ACTIONS(2096), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [anon_sym___inline] = ACTIONS(2096), + [anon_sym___inline__] = ACTIONS(2096), + [anon_sym___forceinline] = ACTIONS(2096), + [anon_sym_thread_local] = ACTIONS(2096), + [anon_sym___thread] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_constexpr] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym___restrict__] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym__Noreturn] = ACTIONS(2096), + [anon_sym_noreturn] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym_mutable] = ACTIONS(2096), + [anon_sym_constinit] = ACTIONS(2096), + [anon_sym_consteval] = ACTIONS(2096), + [anon_sym_alignas] = ACTIONS(2096), + [anon_sym__Alignas] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_class] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_else] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym___try] = ACTIONS(2096), + [anon_sym___leave] = ACTIONS(2096), + [anon_sym_not] = ACTIONS(2096), + [anon_sym_compl] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2096), + [anon_sym___alignof] = ACTIONS(2096), + [anon_sym__alignof] = ACTIONS(2096), + [anon_sym_alignof] = ACTIONS(2096), + [anon_sym__Alignof] = ACTIONS(2096), + [anon_sym_offsetof] = ACTIONS(2096), + [anon_sym__Generic] = ACTIONS(2096), + [anon_sym_asm] = ACTIONS(2096), + [anon_sym___asm__] = ACTIONS(2096), + [anon_sym___asm] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [anon_sym_NULL] = ACTIONS(2096), + [anon_sym_nullptr] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2096), + [anon_sym_decltype] = ACTIONS(2096), + [anon_sym_explicit] = ACTIONS(2096), + [anon_sym_typename] = ACTIONS(2096), + [anon_sym_template] = ACTIONS(2096), + [anon_sym_operator] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2096), + [anon_sym_delete] = ACTIONS(2096), + [anon_sym_throw] = ACTIONS(2096), + [anon_sym_namespace] = ACTIONS(2096), + [anon_sym_using] = ACTIONS(2096), + [anon_sym_static_assert] = ACTIONS(2096), + [anon_sym_concept] = ACTIONS(2096), + [anon_sym_co_return] = ACTIONS(2096), + [anon_sym_co_yield] = ACTIONS(2096), + [anon_sym_R_DQUOTE] = ACTIONS(2098), + [anon_sym_LR_DQUOTE] = ACTIONS(2098), + [anon_sym_uR_DQUOTE] = ACTIONS(2098), + [anon_sym_UR_DQUOTE] = ACTIONS(2098), + [anon_sym_u8R_DQUOTE] = ACTIONS(2098), + [anon_sym_co_await] = ACTIONS(2096), + [anon_sym_new] = ACTIONS(2096), + [anon_sym_requires] = ACTIONS(2096), + [sym_this] = ACTIONS(2096), + [sym_alone_macro] = ACTIONS(2098), + [aux_sym_alone_macro_call_token1] = ACTIONS(2096), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_FORWARD] = ACTIONS(2096), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_PS_GET] = ACTIONS(2096), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2096), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2096), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2096), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2096), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2096), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2096), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2096), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2096), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2096), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2096), + [anon_sym_MOZ_COLD] = ACTIONS(2096), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2096), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2096), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2096), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2096), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2096), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2096), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2096), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2096), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2096), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2096), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2096), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2096), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2096), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2096), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2096), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2096), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2096), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2096), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2096), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2096), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_NONNULL] = ACTIONS(2096), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2096), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2096), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2096), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2096), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2096), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_NORETURN] = ACTIONS(2096), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2096), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2096), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2096), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2096), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2096), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2096), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2096), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2096), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2096), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2096), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2096), + [anon_sym_MOZ_RAII] = ACTIONS(2096), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2096), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2096), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2096), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2096), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2096), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2096), + }, + [STATE(303)] = { + [ts_builtin_sym_end] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2120), + [aux_sym_preproc_include_token1] = ACTIONS(2120), + [aux_sym_preproc_def_token1] = ACTIONS(2120), + [aux_sym_preproc_if_token1] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), + [sym_preproc_directive] = ACTIONS(2120), + [anon_sym_LPAREN2] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_PLUS] = ACTIONS(2120), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym___extension__] = ACTIONS(2120), + [anon_sym_typedef] = ACTIONS(2120), + [anon_sym_virtual] = ACTIONS(2120), + [anon_sym_extern] = ACTIONS(2120), + [anon_sym___attribute__] = ACTIONS(2120), + [anon_sym___attribute] = ACTIONS(2120), + [anon_sym_COLON_COLON] = ACTIONS(2122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2122), + [anon_sym___declspec] = ACTIONS(2120), + [anon_sym___based] = ACTIONS(2120), + [anon_sym___cdecl] = ACTIONS(2120), + [anon_sym___clrcall] = ACTIONS(2120), + [anon_sym___stdcall] = ACTIONS(2120), + [anon_sym___fastcall] = ACTIONS(2120), + [anon_sym___thiscall] = ACTIONS(2120), + [anon_sym___vectorcall] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2122), + [anon_sym_signed] = ACTIONS(2120), + [anon_sym_unsigned] = ACTIONS(2120), + [anon_sym_long] = ACTIONS(2120), + [anon_sym_short] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_register] = ACTIONS(2120), + [anon_sym_inline] = ACTIONS(2120), + [anon_sym___inline] = ACTIONS(2120), + [anon_sym___inline__] = ACTIONS(2120), + [anon_sym___forceinline] = ACTIONS(2120), + [anon_sym_thread_local] = ACTIONS(2120), + [anon_sym___thread] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_constexpr] = ACTIONS(2120), + [anon_sym_volatile] = ACTIONS(2120), + [anon_sym_restrict] = ACTIONS(2120), + [anon_sym___restrict__] = ACTIONS(2120), + [anon_sym__Atomic] = ACTIONS(2120), + [anon_sym__Noreturn] = ACTIONS(2120), + [anon_sym_noreturn] = ACTIONS(2120), + [anon_sym__Nonnull] = ACTIONS(2120), + [anon_sym_mutable] = ACTIONS(2120), + [anon_sym_constinit] = ACTIONS(2120), + [anon_sym_consteval] = ACTIONS(2120), + [anon_sym_alignas] = ACTIONS(2120), + [anon_sym__Alignas] = ACTIONS(2120), + [sym_primitive_type] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_union] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_else] = ACTIONS(2120), + [anon_sym_switch] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_default] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_do] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_goto] = ACTIONS(2120), + [anon_sym___try] = ACTIONS(2120), + [anon_sym___leave] = ACTIONS(2120), + [anon_sym_not] = ACTIONS(2120), + [anon_sym_compl] = ACTIONS(2120), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_sizeof] = ACTIONS(2120), + [anon_sym___alignof__] = ACTIONS(2120), + [anon_sym___alignof] = ACTIONS(2120), + [anon_sym__alignof] = ACTIONS(2120), + [anon_sym_alignof] = ACTIONS(2120), + [anon_sym__Alignof] = ACTIONS(2120), + [anon_sym_offsetof] = ACTIONS(2120), + [anon_sym__Generic] = ACTIONS(2120), + [anon_sym_asm] = ACTIONS(2120), + [anon_sym___asm__] = ACTIONS(2120), + [anon_sym___asm] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2122), + [anon_sym_u_DQUOTE] = ACTIONS(2122), + [anon_sym_U_DQUOTE] = ACTIONS(2122), + [anon_sym_u8_DQUOTE] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [sym_true] = ACTIONS(2120), + [sym_false] = ACTIONS(2120), + [anon_sym_NULL] = ACTIONS(2120), + [anon_sym_nullptr] = ACTIONS(2120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2120), + [anon_sym_decltype] = ACTIONS(2120), + [anon_sym_explicit] = ACTIONS(2120), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(2120), + [anon_sym_operator] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2120), + [anon_sym_delete] = ACTIONS(2120), + [anon_sym_throw] = ACTIONS(2120), + [anon_sym_namespace] = ACTIONS(2120), + [anon_sym_using] = ACTIONS(2120), + [anon_sym_static_assert] = ACTIONS(2120), + [anon_sym_concept] = ACTIONS(2120), + [anon_sym_co_return] = ACTIONS(2120), + [anon_sym_co_yield] = ACTIONS(2120), + [anon_sym_R_DQUOTE] = ACTIONS(2122), + [anon_sym_LR_DQUOTE] = ACTIONS(2122), + [anon_sym_uR_DQUOTE] = ACTIONS(2122), + [anon_sym_UR_DQUOTE] = ACTIONS(2122), + [anon_sym_u8R_DQUOTE] = ACTIONS(2122), + [anon_sym_co_await] = ACTIONS(2120), + [anon_sym_new] = ACTIONS(2120), + [anon_sym_requires] = ACTIONS(2120), + [sym_this] = ACTIONS(2120), + [sym_alone_macro] = ACTIONS(2122), + [aux_sym_alone_macro_call_token1] = ACTIONS(2120), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_FORWARD] = ACTIONS(2120), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2120), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_PS_GET] = ACTIONS(2120), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2120), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2120), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2120), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2120), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2120), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2120), + [anon_sym_MOZ_COLD] = ACTIONS(2120), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2120), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2120), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2120), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2120), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2120), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2120), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2120), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2120), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2120), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2120), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2120), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2120), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2120), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_NONNULL] = ACTIONS(2120), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2120), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2120), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2120), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2120), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2120), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2120), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2120), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2120), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2120), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2120), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2120), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2120), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2120), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2120), + [anon_sym_MOZ_RAII] = ACTIONS(2120), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2120), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2120), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2120), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2120), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2120), + }, + [STATE(304)] = { + [sym_catch_clause] = STATE(146), + [aux_sym_constructor_try_statement_repeat1] = STATE(146), + [ts_builtin_sym_end] = ACTIONS(1941), + [sym_identifier] = ACTIONS(1939), + [aux_sym_preproc_include_token1] = ACTIONS(1939), + [aux_sym_preproc_def_token1] = ACTIONS(1939), + [aux_sym_preproc_if_token1] = ACTIONS(1939), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1939), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1939), + [sym_preproc_directive] = ACTIONS(1939), + [anon_sym_LPAREN2] = ACTIONS(1941), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym___extension__] = ACTIONS(1939), + [anon_sym_typedef] = ACTIONS(1939), + [anon_sym_virtual] = ACTIONS(1939), + [anon_sym_extern] = ACTIONS(1939), + [anon_sym___attribute__] = ACTIONS(1939), + [anon_sym___attribute] = ACTIONS(1939), + [anon_sym_COLON_COLON] = ACTIONS(1941), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1941), + [anon_sym___declspec] = ACTIONS(1939), + [anon_sym___based] = ACTIONS(1939), + [anon_sym___cdecl] = ACTIONS(1939), + [anon_sym___clrcall] = ACTIONS(1939), + [anon_sym___stdcall] = ACTIONS(1939), + [anon_sym___fastcall] = ACTIONS(1939), + [anon_sym___thiscall] = ACTIONS(1939), + [anon_sym___vectorcall] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_signed] = ACTIONS(1939), + [anon_sym_unsigned] = ACTIONS(1939), + [anon_sym_long] = ACTIONS(1939), + [anon_sym_short] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1939), + [anon_sym_static] = ACTIONS(1939), + [anon_sym_register] = ACTIONS(1939), + [anon_sym_inline] = ACTIONS(1939), + [anon_sym___inline] = ACTIONS(1939), + [anon_sym___inline__] = ACTIONS(1939), + [anon_sym___forceinline] = ACTIONS(1939), + [anon_sym_thread_local] = ACTIONS(1939), + [anon_sym___thread] = ACTIONS(1939), + [anon_sym_const] = ACTIONS(1939), + [anon_sym_constexpr] = ACTIONS(1939), + [anon_sym_volatile] = ACTIONS(1939), + [anon_sym_restrict] = ACTIONS(1939), + [anon_sym___restrict__] = ACTIONS(1939), + [anon_sym__Atomic] = ACTIONS(1939), + [anon_sym__Noreturn] = ACTIONS(1939), + [anon_sym_noreturn] = ACTIONS(1939), + [anon_sym__Nonnull] = ACTIONS(1939), + [anon_sym_mutable] = ACTIONS(1939), + [anon_sym_constinit] = ACTIONS(1939), + [anon_sym_consteval] = ACTIONS(1939), + [anon_sym_alignas] = ACTIONS(1939), + [anon_sym__Alignas] = ACTIONS(1939), + [sym_primitive_type] = ACTIONS(1939), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_class] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(1939), + [anon_sym_union] = ACTIONS(1939), + [anon_sym_if] = ACTIONS(1939), + [anon_sym_switch] = ACTIONS(1939), + [anon_sym_case] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(1939), + [anon_sym_while] = ACTIONS(1939), + [anon_sym_do] = ACTIONS(1939), + [anon_sym_for] = ACTIONS(1939), + [anon_sym_return] = ACTIONS(1939), + [anon_sym_break] = ACTIONS(1939), + [anon_sym_continue] = ACTIONS(1939), + [anon_sym_goto] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1941), + [anon_sym_PLUS_PLUS] = ACTIONS(1941), + [anon_sym_sizeof] = ACTIONS(1939), + [anon_sym___alignof__] = ACTIONS(1939), + [anon_sym___alignof] = ACTIONS(1939), + [anon_sym__alignof] = ACTIONS(1939), + [anon_sym_alignof] = ACTIONS(1939), + [anon_sym__Alignof] = ACTIONS(1939), + [anon_sym_offsetof] = ACTIONS(1939), + [anon_sym__Generic] = ACTIONS(1939), + [anon_sym_asm] = ACTIONS(1939), + [anon_sym___asm__] = ACTIONS(1939), + [anon_sym___asm] = ACTIONS(1939), + [sym_number_literal] = ACTIONS(1941), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1941), + [anon_sym_u_DQUOTE] = ACTIONS(1941), + [anon_sym_U_DQUOTE] = ACTIONS(1941), + [anon_sym_u8_DQUOTE] = ACTIONS(1941), + [anon_sym_DQUOTE] = ACTIONS(1941), + [sym_true] = ACTIONS(1939), + [sym_false] = ACTIONS(1939), + [anon_sym_NULL] = ACTIONS(1939), + [anon_sym_nullptr] = ACTIONS(1939), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1939), + [anon_sym_decltype] = ACTIONS(1939), + [anon_sym_explicit] = ACTIONS(1939), + [anon_sym_typename] = ACTIONS(1939), + [anon_sym_template] = ACTIONS(1939), + [anon_sym_operator] = ACTIONS(1939), + [anon_sym_try] = ACTIONS(1939), + [anon_sym_delete] = ACTIONS(1939), + [anon_sym_throw] = ACTIONS(1939), + [anon_sym_namespace] = ACTIONS(1939), + [anon_sym_using] = ACTIONS(1939), + [anon_sym_static_assert] = ACTIONS(1939), + [anon_sym_concept] = ACTIONS(1939), + [anon_sym_co_return] = ACTIONS(1939), + [anon_sym_co_yield] = ACTIONS(1939), + [anon_sym_catch] = ACTIONS(1961), + [anon_sym_R_DQUOTE] = ACTIONS(1941), + [anon_sym_LR_DQUOTE] = ACTIONS(1941), + [anon_sym_uR_DQUOTE] = ACTIONS(1941), + [anon_sym_UR_DQUOTE] = ACTIONS(1941), + [anon_sym_u8R_DQUOTE] = ACTIONS(1941), + [anon_sym_co_await] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1939), + [anon_sym_requires] = ACTIONS(1939), + [sym_this] = ACTIONS(1939), + [sym_alone_macro] = ACTIONS(1941), + [aux_sym_alone_macro_call_token1] = ACTIONS(1939), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1939), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_FORWARD] = ACTIONS(1939), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1939), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1939), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1939), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1939), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_PS_GET] = ACTIONS(1939), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1939), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1939), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1939), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1939), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1939), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1939), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1939), + [anon_sym_MOZ_COLD] = ACTIONS(1939), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1939), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1939), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1939), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1939), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1939), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1939), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1939), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1939), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1939), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1939), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1939), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1939), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1939), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_NONNULL] = ACTIONS(1939), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1939), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1939), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1939), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1939), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1939), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1939), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1939), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1939), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1939), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1939), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1939), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1939), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1939), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1939), + [anon_sym_MOZ_RAII] = ACTIONS(1939), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1939), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1939), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1939), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1939), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1939), + }, + [STATE(305)] = { + [ts_builtin_sym_end] = ACTIONS(2162), + [sym_identifier] = ACTIONS(2160), + [aux_sym_preproc_include_token1] = ACTIONS(2160), + [aux_sym_preproc_def_token1] = ACTIONS(2160), + [aux_sym_preproc_if_token1] = ACTIONS(2160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2160), + [sym_preproc_directive] = ACTIONS(2160), + [anon_sym_LPAREN2] = ACTIONS(2162), + [anon_sym_BANG] = ACTIONS(2162), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym___extension__] = ACTIONS(2160), + [anon_sym_typedef] = ACTIONS(2160), + [anon_sym_virtual] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2160), + [anon_sym___attribute__] = ACTIONS(2160), + [anon_sym___attribute] = ACTIONS(2160), + [anon_sym_COLON_COLON] = ACTIONS(2162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2162), + [anon_sym___declspec] = ACTIONS(2160), + [anon_sym___based] = ACTIONS(2160), + [anon_sym___cdecl] = ACTIONS(2160), + [anon_sym___clrcall] = ACTIONS(2160), + [anon_sym___stdcall] = ACTIONS(2160), + [anon_sym___fastcall] = ACTIONS(2160), + [anon_sym___thiscall] = ACTIONS(2160), + [anon_sym___vectorcall] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_signed] = ACTIONS(2160), + [anon_sym_unsigned] = ACTIONS(2160), + [anon_sym_long] = ACTIONS(2160), + [anon_sym_short] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_register] = ACTIONS(2160), + [anon_sym_inline] = ACTIONS(2160), + [anon_sym___inline] = ACTIONS(2160), + [anon_sym___inline__] = ACTIONS(2160), + [anon_sym___forceinline] = ACTIONS(2160), + [anon_sym_thread_local] = ACTIONS(2160), + [anon_sym___thread] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_constexpr] = ACTIONS(2160), + [anon_sym_volatile] = ACTIONS(2160), + [anon_sym_restrict] = ACTIONS(2160), + [anon_sym___restrict__] = ACTIONS(2160), + [anon_sym__Atomic] = ACTIONS(2160), + [anon_sym__Noreturn] = ACTIONS(2160), + [anon_sym_noreturn] = ACTIONS(2160), + [anon_sym__Nonnull] = ACTIONS(2160), + [anon_sym_mutable] = ACTIONS(2160), + [anon_sym_constinit] = ACTIONS(2160), + [anon_sym_consteval] = ACTIONS(2160), + [anon_sym_alignas] = ACTIONS(2160), + [anon_sym__Alignas] = ACTIONS(2160), + [sym_primitive_type] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_struct] = ACTIONS(2160), + [anon_sym_union] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_goto] = ACTIONS(2160), + [anon_sym___try] = ACTIONS(2160), + [anon_sym___leave] = ACTIONS(2160), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_compl] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_sizeof] = ACTIONS(2160), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2160), + [anon_sym__Generic] = ACTIONS(2160), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [anon_sym___asm] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2162), + [anon_sym_u_DQUOTE] = ACTIONS(2162), + [anon_sym_U_DQUOTE] = ACTIONS(2162), + [anon_sym_u8_DQUOTE] = ACTIONS(2162), + [anon_sym_DQUOTE] = ACTIONS(2162), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [anon_sym_NULL] = ACTIONS(2160), + [anon_sym_nullptr] = ACTIONS(2160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2160), + [anon_sym_decltype] = ACTIONS(2160), + [anon_sym_explicit] = ACTIONS(2160), + [anon_sym_typename] = ACTIONS(2160), + [anon_sym_template] = ACTIONS(2160), + [anon_sym_operator] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_static_assert] = ACTIONS(2160), + [anon_sym_concept] = ACTIONS(2160), + [anon_sym_co_return] = ACTIONS(2160), + [anon_sym_co_yield] = ACTIONS(2160), + [anon_sym_R_DQUOTE] = ACTIONS(2162), + [anon_sym_LR_DQUOTE] = ACTIONS(2162), + [anon_sym_uR_DQUOTE] = ACTIONS(2162), + [anon_sym_UR_DQUOTE] = ACTIONS(2162), + [anon_sym_u8R_DQUOTE] = ACTIONS(2162), + [anon_sym_co_await] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_requires] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_alone_macro] = ACTIONS(2162), + [aux_sym_alone_macro_call_token1] = ACTIONS(2160), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_FORWARD] = ACTIONS(2160), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2160), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_PS_GET] = ACTIONS(2160), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2160), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2160), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2160), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2160), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2160), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2160), + [anon_sym_MOZ_COLD] = ACTIONS(2160), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2160), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2160), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2160), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2160), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2160), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2160), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2160), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2160), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2160), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2160), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2160), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2160), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2160), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_NONNULL] = ACTIONS(2160), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2160), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2160), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2160), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2160), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2160), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2160), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2160), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2160), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2160), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2160), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2160), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2160), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2160), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2160), + [anon_sym_MOZ_RAII] = ACTIONS(2160), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2160), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2160), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2160), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2160), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2160), + }, + [STATE(306)] = { + [ts_builtin_sym_end] = ACTIONS(2010), + [sym_identifier] = ACTIONS(2008), + [aux_sym_preproc_include_token1] = ACTIONS(2008), + [aux_sym_preproc_def_token1] = ACTIONS(2008), + [aux_sym_preproc_if_token1] = ACTIONS(2008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2008), + [sym_preproc_directive] = ACTIONS(2008), + [anon_sym_LPAREN2] = ACTIONS(2010), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(2010), + [anon_sym_AMP_AMP] = ACTIONS(2010), + [anon_sym_AMP] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym___extension__] = ACTIONS(2008), + [anon_sym_typedef] = ACTIONS(2008), + [anon_sym_virtual] = ACTIONS(2008), + [anon_sym_extern] = ACTIONS(2008), + [anon_sym___attribute__] = ACTIONS(2008), + [anon_sym___attribute] = ACTIONS(2008), + [anon_sym_COLON_COLON] = ACTIONS(2010), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2010), + [anon_sym___declspec] = ACTIONS(2008), + [anon_sym___based] = ACTIONS(2008), + [anon_sym___cdecl] = ACTIONS(2008), + [anon_sym___clrcall] = ACTIONS(2008), + [anon_sym___stdcall] = ACTIONS(2008), + [anon_sym___fastcall] = ACTIONS(2008), + [anon_sym___thiscall] = ACTIONS(2008), + [anon_sym___vectorcall] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2010), + [anon_sym_signed] = ACTIONS(2008), + [anon_sym_unsigned] = ACTIONS(2008), + [anon_sym_long] = ACTIONS(2008), + [anon_sym_short] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_static] = ACTIONS(2008), + [anon_sym_register] = ACTIONS(2008), + [anon_sym_inline] = ACTIONS(2008), + [anon_sym___inline] = ACTIONS(2008), + [anon_sym___inline__] = ACTIONS(2008), + [anon_sym___forceinline] = ACTIONS(2008), + [anon_sym_thread_local] = ACTIONS(2008), + [anon_sym___thread] = ACTIONS(2008), + [anon_sym_const] = ACTIONS(2008), + [anon_sym_constexpr] = ACTIONS(2008), + [anon_sym_volatile] = ACTIONS(2008), + [anon_sym_restrict] = ACTIONS(2008), + [anon_sym___restrict__] = ACTIONS(2008), + [anon_sym__Atomic] = ACTIONS(2008), + [anon_sym__Noreturn] = ACTIONS(2008), + [anon_sym_noreturn] = ACTIONS(2008), + [anon_sym__Nonnull] = ACTIONS(2008), + [anon_sym_mutable] = ACTIONS(2008), + [anon_sym_constinit] = ACTIONS(2008), + [anon_sym_consteval] = ACTIONS(2008), + [anon_sym_alignas] = ACTIONS(2008), + [anon_sym__Alignas] = ACTIONS(2008), + [sym_primitive_type] = ACTIONS(2008), + [anon_sym_enum] = ACTIONS(2008), + [anon_sym_class] = ACTIONS(2008), + [anon_sym_struct] = ACTIONS(2008), + [anon_sym_union] = ACTIONS(2008), + [anon_sym_if] = ACTIONS(2008), + [anon_sym_else] = ACTIONS(2008), + [anon_sym_switch] = ACTIONS(2008), + [anon_sym_case] = ACTIONS(2008), + [anon_sym_default] = ACTIONS(2008), + [anon_sym_while] = ACTIONS(2008), + [anon_sym_do] = ACTIONS(2008), + [anon_sym_for] = ACTIONS(2008), + [anon_sym_return] = ACTIONS(2008), + [anon_sym_break] = ACTIONS(2008), + [anon_sym_continue] = ACTIONS(2008), + [anon_sym_goto] = ACTIONS(2008), + [anon_sym___try] = ACTIONS(2008), + [anon_sym___leave] = ACTIONS(2008), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2010), + [anon_sym_PLUS_PLUS] = ACTIONS(2010), + [anon_sym_sizeof] = ACTIONS(2008), + [anon_sym___alignof__] = ACTIONS(2008), + [anon_sym___alignof] = ACTIONS(2008), + [anon_sym__alignof] = ACTIONS(2008), + [anon_sym_alignof] = ACTIONS(2008), + [anon_sym__Alignof] = ACTIONS(2008), + [anon_sym_offsetof] = ACTIONS(2008), + [anon_sym__Generic] = ACTIONS(2008), + [anon_sym_asm] = ACTIONS(2008), + [anon_sym___asm__] = ACTIONS(2008), + [anon_sym___asm] = ACTIONS(2008), + [sym_number_literal] = ACTIONS(2010), + [anon_sym_L_SQUOTE] = ACTIONS(2010), + [anon_sym_u_SQUOTE] = ACTIONS(2010), + [anon_sym_U_SQUOTE] = ACTIONS(2010), + [anon_sym_u8_SQUOTE] = ACTIONS(2010), + [anon_sym_SQUOTE] = ACTIONS(2010), + [anon_sym_L_DQUOTE] = ACTIONS(2010), + [anon_sym_u_DQUOTE] = ACTIONS(2010), + [anon_sym_U_DQUOTE] = ACTIONS(2010), + [anon_sym_u8_DQUOTE] = ACTIONS(2010), + [anon_sym_DQUOTE] = ACTIONS(2010), + [sym_true] = ACTIONS(2008), + [sym_false] = ACTIONS(2008), + [anon_sym_NULL] = ACTIONS(2008), + [anon_sym_nullptr] = ACTIONS(2008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2008), + [anon_sym_decltype] = ACTIONS(2008), + [anon_sym_explicit] = ACTIONS(2008), + [anon_sym_typename] = ACTIONS(2008), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_operator] = ACTIONS(2008), + [anon_sym_try] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_throw] = ACTIONS(2008), + [anon_sym_namespace] = ACTIONS(2008), + [anon_sym_using] = ACTIONS(2008), + [anon_sym_static_assert] = ACTIONS(2008), + [anon_sym_concept] = ACTIONS(2008), + [anon_sym_co_return] = ACTIONS(2008), + [anon_sym_co_yield] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2008), + [anon_sym_new] = ACTIONS(2008), + [anon_sym_requires] = ACTIONS(2008), + [sym_this] = ACTIONS(2008), + [sym_alone_macro] = ACTIONS(2010), + [aux_sym_alone_macro_call_token1] = ACTIONS(2008), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_FORWARD] = ACTIONS(2008), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2008), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_PS_GET] = ACTIONS(2008), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2008), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2008), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2008), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2008), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2008), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2008), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2008), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2008), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2008), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2008), + [anon_sym_MOZ_COLD] = ACTIONS(2008), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2008), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2008), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2008), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2008), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2008), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2008), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2008), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2008), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2008), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2008), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2008), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2008), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2008), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2008), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2008), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2008), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2008), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2008), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2008), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2008), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_NONNULL] = ACTIONS(2008), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2008), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2008), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2008), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2008), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2008), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_NORETURN] = ACTIONS(2008), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2008), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2008), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2008), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2008), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2008), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2008), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2008), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2008), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2008), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2008), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2008), + [anon_sym_MOZ_RAII] = ACTIONS(2008), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2008), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2008), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2008), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2008), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2008), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2008), + }, + [STATE(307)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [896] = { - [sym_identifier] = ACTIONS(2812), - [aux_sym_preproc_def_token1] = ACTIONS(2812), - [aux_sym_preproc_if_token1] = ACTIONS(2812), - [aux_sym_preproc_if_token2] = ACTIONS(2812), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2812), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2812), - [aux_sym_preproc_else_token1] = ACTIONS(2812), - [aux_sym_preproc_elif_token1] = ACTIONS(2812), - [sym_preproc_directive] = ACTIONS(2812), - [anon_sym_LPAREN2] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_typedef] = ACTIONS(2812), - [anon_sym_extern] = ACTIONS(2812), - [anon_sym___attribute__] = ACTIONS(2812), - [anon_sym_COLON_COLON] = ACTIONS(2814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2814), - [anon_sym___declspec] = ACTIONS(2812), - [anon_sym___based] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2812), - [anon_sym_static] = ACTIONS(2812), - [anon_sym_register] = ACTIONS(2812), - [anon_sym_inline] = ACTIONS(2812), - [anon_sym_thread_local] = ACTIONS(2812), - [anon_sym_const] = ACTIONS(2812), - [anon_sym_volatile] = ACTIONS(2812), - [anon_sym_restrict] = ACTIONS(2812), - [anon_sym__Atomic] = ACTIONS(2812), - [anon_sym_mutable] = ACTIONS(2812), - [anon_sym_constexpr] = ACTIONS(2812), - [anon_sym_signed] = ACTIONS(2812), - [anon_sym_unsigned] = ACTIONS(2812), - [anon_sym_long] = ACTIONS(2812), - [anon_sym_short] = ACTIONS(2812), - [sym_primitive_type] = ACTIONS(2812), - [anon_sym_enum] = ACTIONS(2812), - [anon_sym_class] = ACTIONS(2812), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_union] = ACTIONS(2812), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2812), - [anon_sym_virtual] = ACTIONS(2812), - [anon_sym_explicit] = ACTIONS(2812), - [anon_sym_public] = ACTIONS(2812), - [anon_sym_private] = ACTIONS(2812), - [anon_sym_protected] = ACTIONS(2812), - [sym_auto] = ACTIONS(2812), - [anon_sym_typename] = ACTIONS(2812), - [anon_sym_template] = ACTIONS(2812), - [anon_sym_operator] = ACTIONS(2812), - [anon_sym_friend] = ACTIONS(2812), - [anon_sym_using] = ACTIONS(2812), - [anon_sym_static_assert] = ACTIONS(2812), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2812), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2812), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2812), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2812), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2812), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2812), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2812), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2812), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2812), - [anon_sym_MOZ_COLD] = ACTIONS(2812), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2812), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2812), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2812), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2812), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2812), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2812), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2812), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2812), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2812), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2812), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2812), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2812), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2812), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2812), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2812), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2812), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2812), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2812), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2812), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2812), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_NONNULL] = ACTIONS(2812), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2812), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2812), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2812), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2812), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2812), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_NORETURN] = ACTIONS(2812), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2812), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2812), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2812), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2812), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2812), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2812), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2812), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2812), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2812), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2812), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2812), - [anon_sym_MOZ_RAII] = ACTIONS(2812), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2812), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2812), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2812), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2812), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2812), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2812), - }, - [897] = { - [sym_attribute_declaration] = STATE(1046), - [sym_compound_statement] = STATE(420), - [sym_attributed_statement] = STATE(420), - [sym_labeled_statement] = STATE(420), - [sym_expression_statement] = STATE(420), - [sym_if_statement] = STATE(420), - [sym_switch_statement] = STATE(420), - [sym_case_statement] = STATE(420), - [sym_while_statement] = STATE(420), - [sym_do_statement] = STATE(420), - [sym_for_statement] = STATE(420), - [sym_return_statement] = STATE(420), - [sym_break_statement] = STATE(420), - [sym_continue_statement] = STATE(420), - [sym_goto_statement] = STATE(420), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(420), - [sym_co_return_statement] = STATE(420), - [sym_co_yield_statement] = STATE(420), - [sym_throw_statement] = STATE(420), - [sym_try_statement] = STATE(420), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [898] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(4595), - [sym_attributed_statement] = STATE(4595), - [sym_labeled_statement] = STATE(4595), - [sym_expression_statement] = STATE(4595), - [sym_if_statement] = STATE(4595), - [sym_switch_statement] = STATE(4595), - [sym_case_statement] = STATE(4595), - [sym_while_statement] = STATE(4595), - [sym_do_statement] = STATE(4595), - [sym_for_statement] = STATE(4595), - [sym_return_statement] = STATE(4595), - [sym_break_statement] = STATE(4595), - [sym_continue_statement] = STATE(4595), - [sym_goto_statement] = STATE(4595), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4595), - [sym_co_return_statement] = STATE(4595), - [sym_co_yield_statement] = STATE(4595), - [sym_throw_statement] = STATE(4595), - [sym_try_statement] = STATE(4595), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [899] = { - [sym_identifier] = ACTIONS(1747), - [aux_sym_preproc_def_token1] = ACTIONS(1747), - [aux_sym_preproc_if_token1] = ACTIONS(1747), - [aux_sym_preproc_if_token2] = ACTIONS(1747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1747), - [aux_sym_preproc_else_token1] = ACTIONS(1747), - [aux_sym_preproc_elif_token1] = ACTIONS(1747), - [sym_preproc_directive] = ACTIONS(1747), - [anon_sym_LPAREN2] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1749), - [anon_sym_AMP_AMP] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_typedef] = ACTIONS(1747), - [anon_sym_extern] = ACTIONS(1747), - [anon_sym___attribute__] = ACTIONS(1747), - [anon_sym_COLON_COLON] = ACTIONS(1749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1749), - [anon_sym___declspec] = ACTIONS(1747), - [anon_sym___based] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_static] = ACTIONS(1747), - [anon_sym_register] = ACTIONS(1747), - [anon_sym_inline] = ACTIONS(1747), - [anon_sym_thread_local] = ACTIONS(1747), - [anon_sym_const] = ACTIONS(1747), - [anon_sym_volatile] = ACTIONS(1747), - [anon_sym_restrict] = ACTIONS(1747), - [anon_sym__Atomic] = ACTIONS(1747), - [anon_sym_mutable] = ACTIONS(1747), - [anon_sym_constexpr] = ACTIONS(1747), - [anon_sym_signed] = ACTIONS(1747), - [anon_sym_unsigned] = ACTIONS(1747), - [anon_sym_long] = ACTIONS(1747), - [anon_sym_short] = ACTIONS(1747), - [sym_primitive_type] = ACTIONS(1747), - [anon_sym_enum] = ACTIONS(1747), - [anon_sym_class] = ACTIONS(1747), - [anon_sym_struct] = ACTIONS(1747), - [anon_sym_union] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1747), - [anon_sym_virtual] = ACTIONS(1747), - [anon_sym_explicit] = ACTIONS(1747), - [anon_sym_public] = ACTIONS(1747), - [anon_sym_private] = ACTIONS(1747), - [anon_sym_protected] = ACTIONS(1747), - [sym_auto] = ACTIONS(1747), - [anon_sym_typename] = ACTIONS(1747), - [anon_sym_template] = ACTIONS(1747), - [anon_sym_operator] = ACTIONS(1747), - [anon_sym_friend] = ACTIONS(1747), - [anon_sym_using] = ACTIONS(1747), - [anon_sym_static_assert] = ACTIONS(1747), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1747), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1747), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1747), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1747), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1747), - [anon_sym_MOZ_COLD] = ACTIONS(1747), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1747), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1747), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1747), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1747), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1747), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1747), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1747), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1747), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1747), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1747), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1747), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1747), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1747), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_NONNULL] = ACTIONS(1747), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1747), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1747), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1747), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1747), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1747), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1747), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1747), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1747), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1747), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1747), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1747), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1747), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1747), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1747), - [anon_sym_MOZ_RAII] = ACTIONS(1747), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1747), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1747), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1747), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1747), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1747), - }, - [900] = { - [sym_attribute_declaration] = STATE(1046), - [sym_compound_statement] = STATE(418), - [sym_attributed_statement] = STATE(418), - [sym_labeled_statement] = STATE(418), - [sym_expression_statement] = STATE(418), - [sym_if_statement] = STATE(418), - [sym_switch_statement] = STATE(418), - [sym_case_statement] = STATE(418), - [sym_while_statement] = STATE(418), - [sym_do_statement] = STATE(418), - [sym_for_statement] = STATE(418), - [sym_return_statement] = STATE(418), - [sym_break_statement] = STATE(418), - [sym_continue_statement] = STATE(418), - [sym_goto_statement] = STATE(418), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(418), - [sym_co_return_statement] = STATE(418), - [sym_co_yield_statement] = STATE(418), - [sym_throw_statement] = STATE(418), - [sym_try_statement] = STATE(418), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [901] = { - [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_def_token1] = ACTIONS(1529), - [anon_sym_COMMA] = ACTIONS(1613), - [aux_sym_preproc_if_token1] = ACTIONS(1529), - [aux_sym_preproc_if_token2] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), - [sym_preproc_directive] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym___attribute__] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1531), - [anon_sym___declspec] = ACTIONS(1529), - [anon_sym___based] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [anon_sym_thread_local] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym__Atomic] = ACTIONS(1529), - [anon_sym_mutable] = ACTIONS(1529), - [anon_sym_constexpr] = ACTIONS(1529), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_class] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1529), - [anon_sym_virtual] = ACTIONS(1529), - [anon_sym_explicit] = ACTIONS(1529), - [anon_sym_public] = ACTIONS(1529), - [anon_sym_private] = ACTIONS(1529), - [anon_sym_protected] = ACTIONS(1529), - [sym_auto] = ACTIONS(1529), - [anon_sym_typename] = ACTIONS(1529), - [anon_sym_template] = ACTIONS(1529), - [anon_sym_operator] = ACTIONS(1529), - [anon_sym_friend] = ACTIONS(1529), - [anon_sym_using] = ACTIONS(1529), - [anon_sym_static_assert] = ACTIONS(1529), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1529), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1529), - [anon_sym_MOZ_COLD] = ACTIONS(1529), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1529), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1529), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1529), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1529), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1529), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1529), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1529), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1529), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1529), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1529), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1529), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1529), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_RAII] = ACTIONS(1529), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1529), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1529), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1529), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1529), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1529), - }, - [902] = { - [sym_attribute_declaration] = STATE(1046), - [sym_compound_statement] = STATE(417), - [sym_attributed_statement] = STATE(417), - [sym_labeled_statement] = STATE(417), - [sym_expression_statement] = STATE(417), - [sym_if_statement] = STATE(417), - [sym_switch_statement] = STATE(417), - [sym_case_statement] = STATE(417), - [sym_while_statement] = STATE(417), - [sym_do_statement] = STATE(417), - [sym_for_statement] = STATE(417), - [sym_return_statement] = STATE(417), - [sym_break_statement] = STATE(417), - [sym_continue_statement] = STATE(417), - [sym_goto_statement] = STATE(417), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(417), - [sym_co_return_statement] = STATE(417), - [sym_co_yield_statement] = STATE(417), - [sym_throw_statement] = STATE(417), - [sym_try_statement] = STATE(417), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [903] = { - [sym_attribute_declaration] = STATE(1046), - [sym_compound_statement] = STATE(416), - [sym_attributed_statement] = STATE(416), - [sym_labeled_statement] = STATE(416), - [sym_expression_statement] = STATE(416), - [sym_if_statement] = STATE(416), - [sym_switch_statement] = STATE(416), - [sym_case_statement] = STATE(416), - [sym_while_statement] = STATE(416), - [sym_do_statement] = STATE(416), - [sym_for_statement] = STATE(416), - [sym_return_statement] = STATE(416), - [sym_break_statement] = STATE(416), - [sym_continue_statement] = STATE(416), - [sym_goto_statement] = STATE(416), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(416), - [sym_co_return_statement] = STATE(416), - [sym_co_yield_statement] = STATE(416), - [sym_throw_statement] = STATE(416), - [sym_try_statement] = STATE(416), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [904] = { - [sym_attribute_declaration] = STATE(904), - [sym_compound_statement] = STATE(710), - [sym_attributed_statement] = STATE(710), - [sym_labeled_statement] = STATE(710), - [sym_expression_statement] = STATE(710), - [sym_if_statement] = STATE(710), - [sym_switch_statement] = STATE(710), - [sym_case_statement] = STATE(710), - [sym_while_statement] = STATE(710), - [sym_do_statement] = STATE(710), - [sym_for_statement] = STATE(710), - [sym_return_statement] = STATE(710), - [sym_break_statement] = STATE(710), - [sym_continue_statement] = STATE(710), - [sym_goto_statement] = STATE(710), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(710), - [sym_co_return_statement] = STATE(710), - [sym_co_yield_statement] = STATE(710), - [sym_throw_statement] = STATE(710), - [sym_try_statement] = STATE(710), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(904), - [sym_identifier] = ACTIONS(2816), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_BANG] = ACTIONS(2642), - [anon_sym_TILDE] = ACTIONS(2642), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_PLUS] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_AMP] = ACTIONS(2648), - [anon_sym_SEMI] = ACTIONS(2819), - [anon_sym_COLON_COLON] = ACTIONS(2654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2663), - [sym_primitive_type] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2825), - [anon_sym_switch] = ACTIONS(2828), - [anon_sym_case] = ACTIONS(2831), - [anon_sym_default] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2837), - [anon_sym_do] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_break] = ACTIONS(2849), - [anon_sym_continue] = ACTIONS(2852), - [anon_sym_goto] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2702), - [anon_sym_PLUS_PLUS] = ACTIONS(2702), - [anon_sym_sizeof] = ACTIONS(2705), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2711), - [anon_sym_u_SQUOTE] = ACTIONS(2711), - [anon_sym_U_SQUOTE] = ACTIONS(2711), - [anon_sym_u8_SQUOTE] = ACTIONS(2711), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_L_DQUOTE] = ACTIONS(2714), - [anon_sym_u_DQUOTE] = ACTIONS(2714), - [anon_sym_U_DQUOTE] = ACTIONS(2714), - [anon_sym_u8_DQUOTE] = ACTIONS(2714), - [anon_sym_DQUOTE] = ACTIONS(2714), - [sym_true] = ACTIONS(2717), - [sym_false] = ACTIONS(2717), - [sym_null] = ACTIONS(2717), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(2720), - [anon_sym_delete] = ACTIONS(2723), - [anon_sym_throw] = ACTIONS(2858), - [anon_sym_co_return] = ACTIONS(2861), - [anon_sym_co_yield] = ACTIONS(2864), - [anon_sym_try] = ACTIONS(2867), - [anon_sym_co_await] = ACTIONS(2738), - [anon_sym_new] = ACTIONS(2741), - [sym_this] = ACTIONS(2717), - [sym_nullptr] = ACTIONS(2717), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_FORWARD] = ACTIONS(2744), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2744), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_PS_GET] = ACTIONS(2744), - [anon_sym_PS_GET_AND_SET] = ACTIONS(2744), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2744), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2744), - [sym_raw_string_literal] = ACTIONS(2747), - }, - [905] = { - [sym_identifier] = ACTIONS(1667), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token2] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1667), - [aux_sym_preproc_else_token1] = ACTIONS(1667), - [aux_sym_preproc_elif_token1] = ACTIONS(1667), - [sym_preproc_directive] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_typedef] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym___attribute__] = ACTIONS(1667), - [anon_sym_COLON_COLON] = ACTIONS(1669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1669), - [anon_sym___declspec] = ACTIONS(1667), - [anon_sym___based] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_inline] = ACTIONS(1667), - [anon_sym_thread_local] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [anon_sym_volatile] = ACTIONS(1667), - [anon_sym_restrict] = ACTIONS(1667), - [anon_sym__Atomic] = ACTIONS(1667), - [anon_sym_mutable] = ACTIONS(1667), - [anon_sym_constexpr] = ACTIONS(1667), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [sym_primitive_type] = ACTIONS(1667), - [anon_sym_enum] = ACTIONS(1667), - [anon_sym_class] = ACTIONS(1667), - [anon_sym_struct] = ACTIONS(1667), - [anon_sym_union] = ACTIONS(1667), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1667), - [anon_sym_virtual] = ACTIONS(1667), - [anon_sym_explicit] = ACTIONS(1667), - [anon_sym_public] = ACTIONS(1667), - [anon_sym_private] = ACTIONS(1667), - [anon_sym_protected] = ACTIONS(1667), - [sym_auto] = ACTIONS(1667), - [anon_sym_typename] = ACTIONS(1667), - [anon_sym_template] = ACTIONS(1667), - [anon_sym_operator] = ACTIONS(1667), - [anon_sym_friend] = ACTIONS(1667), - [anon_sym_using] = ACTIONS(1667), - [anon_sym_static_assert] = ACTIONS(1667), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1667), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1667), - [anon_sym_MOZ_COLD] = ACTIONS(1667), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1667), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1667), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1667), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1667), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1667), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1667), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1667), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1667), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1667), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1667), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1667), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1667), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_RAII] = ACTIONS(1667), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1667), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1667), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1667), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1667), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1667), - }, - [906] = { - [sym_attribute_declaration] = STATE(885), - [sym_compound_statement] = STATE(758), - [sym_attributed_statement] = STATE(758), - [sym_labeled_statement] = STATE(758), - [sym_expression_statement] = STATE(758), - [sym_if_statement] = STATE(758), - [sym_switch_statement] = STATE(758), - [sym_case_statement] = STATE(758), - [sym_while_statement] = STATE(758), - [sym_do_statement] = STATE(758), - [sym_for_statement] = STATE(758), - [sym_return_statement] = STATE(758), - [sym_break_statement] = STATE(758), - [sym_continue_statement] = STATE(758), - [sym_goto_statement] = STATE(758), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(758), - [sym_co_return_statement] = STATE(758), - [sym_co_yield_statement] = STATE(758), - [sym_throw_statement] = STATE(758), - [sym_try_statement] = STATE(758), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [907] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(4594), - [sym_attributed_statement] = STATE(4594), - [sym_labeled_statement] = STATE(4594), - [sym_expression_statement] = STATE(4594), - [sym_if_statement] = STATE(4594), - [sym_switch_statement] = STATE(4594), - [sym_case_statement] = STATE(4594), - [sym_while_statement] = STATE(4594), - [sym_do_statement] = STATE(4594), - [sym_for_statement] = STATE(4594), - [sym_return_statement] = STATE(4594), - [sym_break_statement] = STATE(4594), - [sym_continue_statement] = STATE(4594), - [sym_goto_statement] = STATE(4594), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4594), - [sym_co_return_statement] = STATE(4594), - [sym_co_yield_statement] = STATE(4594), - [sym_throw_statement] = STATE(4594), - [sym_try_statement] = STATE(4594), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [908] = { - [sym_identifier] = ACTIONS(2870), - [aux_sym_preproc_def_token1] = ACTIONS(2870), - [aux_sym_preproc_if_token1] = ACTIONS(2870), - [aux_sym_preproc_if_token2] = ACTIONS(2870), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2870), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2870), - [aux_sym_preproc_else_token1] = ACTIONS(2870), - [aux_sym_preproc_elif_token1] = ACTIONS(2870), - [sym_preproc_directive] = ACTIONS(2870), - [anon_sym_LPAREN2] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2872), - [anon_sym_STAR] = ACTIONS(2872), - [anon_sym_AMP_AMP] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_typedef] = ACTIONS(2870), - [anon_sym_extern] = ACTIONS(2870), - [anon_sym___attribute__] = ACTIONS(2870), - [anon_sym_COLON_COLON] = ACTIONS(2872), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2872), - [anon_sym___declspec] = ACTIONS(2870), - [anon_sym___based] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_static] = ACTIONS(2870), - [anon_sym_register] = ACTIONS(2870), - [anon_sym_inline] = ACTIONS(2870), - [anon_sym_thread_local] = ACTIONS(2870), - [anon_sym_const] = ACTIONS(2870), - [anon_sym_volatile] = ACTIONS(2870), - [anon_sym_restrict] = ACTIONS(2870), - [anon_sym__Atomic] = ACTIONS(2870), - [anon_sym_mutable] = ACTIONS(2870), - [anon_sym_constexpr] = ACTIONS(2870), - [anon_sym_signed] = ACTIONS(2870), - [anon_sym_unsigned] = ACTIONS(2870), - [anon_sym_long] = ACTIONS(2870), - [anon_sym_short] = ACTIONS(2870), - [sym_primitive_type] = ACTIONS(2870), - [anon_sym_enum] = ACTIONS(2870), - [anon_sym_class] = ACTIONS(2870), - [anon_sym_struct] = ACTIONS(2870), - [anon_sym_union] = ACTIONS(2870), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2870), - [anon_sym_virtual] = ACTIONS(2870), - [anon_sym_explicit] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2870), - [anon_sym_private] = ACTIONS(2870), - [anon_sym_protected] = ACTIONS(2870), - [sym_auto] = ACTIONS(2870), - [anon_sym_typename] = ACTIONS(2870), - [anon_sym_template] = ACTIONS(2870), - [anon_sym_operator] = ACTIONS(2870), - [anon_sym_friend] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2870), - [anon_sym_static_assert] = ACTIONS(2870), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2870), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2870), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2870), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2870), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2870), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2870), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2870), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2870), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2870), - [anon_sym_MOZ_COLD] = ACTIONS(2870), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2870), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2870), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2870), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2870), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2870), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2870), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2870), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2870), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2870), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2870), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2870), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2870), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2870), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2870), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2870), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2870), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2870), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2870), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2870), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2870), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_NONNULL] = ACTIONS(2870), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2870), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2870), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2870), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2870), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2870), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_NORETURN] = ACTIONS(2870), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2870), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2870), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2870), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2870), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2870), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2870), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2870), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2870), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2870), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2870), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2870), - [anon_sym_MOZ_RAII] = ACTIONS(2870), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2870), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2870), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2870), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2870), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2870), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2870), - }, - [909] = { - [sym_attribute_declaration] = STATE(1046), - [sym_compound_statement] = STATE(415), - [sym_attributed_statement] = STATE(415), - [sym_labeled_statement] = STATE(415), - [sym_expression_statement] = STATE(415), - [sym_if_statement] = STATE(415), - [sym_switch_statement] = STATE(415), - [sym_case_statement] = STATE(415), - [sym_while_statement] = STATE(415), - [sym_do_statement] = STATE(415), - [sym_for_statement] = STATE(415), - [sym_return_statement] = STATE(415), - [sym_break_statement] = STATE(415), - [sym_continue_statement] = STATE(415), - [sym_goto_statement] = STATE(415), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(415), - [sym_co_return_statement] = STATE(415), - [sym_co_yield_statement] = STATE(415), - [sym_throw_statement] = STATE(415), - [sym_try_statement] = STATE(415), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [910] = { - [sym_attribute_declaration] = STATE(1046), - [sym_compound_statement] = STATE(414), - [sym_attributed_statement] = STATE(414), - [sym_labeled_statement] = STATE(414), - [sym_expression_statement] = STATE(414), - [sym_if_statement] = STATE(414), - [sym_switch_statement] = STATE(414), - [sym_case_statement] = STATE(414), - [sym_while_statement] = STATE(414), - [sym_do_statement] = STATE(414), - [sym_for_statement] = STATE(414), - [sym_return_statement] = STATE(414), - [sym_break_statement] = STATE(414), - [sym_continue_statement] = STATE(414), - [sym_goto_statement] = STATE(414), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(414), - [sym_co_return_statement] = STATE(414), - [sym_co_yield_statement] = STATE(414), - [sym_throw_statement] = STATE(414), - [sym_try_statement] = STATE(414), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [911] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(4565), - [sym_attributed_statement] = STATE(4566), - [sym_labeled_statement] = STATE(4567), - [sym_expression_statement] = STATE(4569), - [sym_if_statement] = STATE(4570), - [sym_switch_statement] = STATE(4571), - [sym_case_statement] = STATE(4572), - [sym_while_statement] = STATE(4576), - [sym_do_statement] = STATE(4577), - [sym_for_statement] = STATE(4578), - [sym_return_statement] = STATE(4579), - [sym_break_statement] = STATE(4581), - [sym_continue_statement] = STATE(4582), - [sym_goto_statement] = STATE(4585), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4588), - [sym_co_return_statement] = STATE(4589), - [sym_co_yield_statement] = STATE(4591), - [sym_throw_statement] = STATE(4592), - [sym_try_statement] = STATE(4593), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [912] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(4534), - [sym_attributed_statement] = STATE(4538), - [sym_labeled_statement] = STATE(4539), - [sym_expression_statement] = STATE(4540), - [sym_if_statement] = STATE(4543), - [sym_switch_statement] = STATE(4547), - [sym_case_statement] = STATE(4549), - [sym_while_statement] = STATE(4550), - [sym_do_statement] = STATE(4551), - [sym_for_statement] = STATE(4553), - [sym_return_statement] = STATE(4554), - [sym_break_statement] = STATE(4555), - [sym_continue_statement] = STATE(4557), - [sym_goto_statement] = STATE(4558), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4560), - [sym_co_return_statement] = STATE(4561), - [sym_co_yield_statement] = STATE(4562), - [sym_throw_statement] = STATE(4563), - [sym_try_statement] = STATE(4564), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [913] = { - [sym_identifier] = ACTIONS(1667), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token2] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1667), - [aux_sym_preproc_else_token1] = ACTIONS(1667), - [aux_sym_preproc_elif_token1] = ACTIONS(1667), - [sym_preproc_directive] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_typedef] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym___attribute__] = ACTIONS(1667), - [anon_sym_COLON_COLON] = ACTIONS(1669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1669), - [anon_sym___declspec] = ACTIONS(1667), - [anon_sym___based] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_inline] = ACTIONS(1667), - [anon_sym_thread_local] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [anon_sym_volatile] = ACTIONS(1667), - [anon_sym_restrict] = ACTIONS(1667), - [anon_sym__Atomic] = ACTIONS(1667), - [anon_sym_mutable] = ACTIONS(1667), - [anon_sym_constexpr] = ACTIONS(1667), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [sym_primitive_type] = ACTIONS(1667), - [anon_sym_enum] = ACTIONS(1667), - [anon_sym_class] = ACTIONS(1667), - [anon_sym_struct] = ACTIONS(1667), - [anon_sym_union] = ACTIONS(1667), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1667), - [anon_sym_virtual] = ACTIONS(1667), - [anon_sym_explicit] = ACTIONS(1667), - [anon_sym_public] = ACTIONS(1667), - [anon_sym_private] = ACTIONS(1667), - [anon_sym_protected] = ACTIONS(1667), - [sym_auto] = ACTIONS(1667), - [anon_sym_typename] = ACTIONS(1667), - [anon_sym_template] = ACTIONS(1667), - [anon_sym_operator] = ACTIONS(1667), - [anon_sym_friend] = ACTIONS(1667), - [anon_sym_using] = ACTIONS(1667), - [anon_sym_static_assert] = ACTIONS(1667), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1667), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1667), - [anon_sym_MOZ_COLD] = ACTIONS(1667), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1667), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1667), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1667), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1667), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1667), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1667), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1667), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1667), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1667), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1667), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1667), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1667), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_RAII] = ACTIONS(1667), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1667), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1667), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1667), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1667), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1667), - }, - [914] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(4532), - [sym_attributed_statement] = STATE(4532), - [sym_labeled_statement] = STATE(4532), - [sym_expression_statement] = STATE(4532), - [sym_if_statement] = STATE(4532), - [sym_switch_statement] = STATE(4532), - [sym_case_statement] = STATE(4532), - [sym_while_statement] = STATE(4532), - [sym_do_statement] = STATE(4532), - [sym_for_statement] = STATE(4532), - [sym_return_statement] = STATE(4532), - [sym_break_statement] = STATE(4532), - [sym_continue_statement] = STATE(4532), - [sym_goto_statement] = STATE(4532), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4532), - [sym_co_return_statement] = STATE(4532), - [sym_co_yield_statement] = STATE(4532), - [sym_throw_statement] = STATE(4532), - [sym_try_statement] = STATE(4532), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [915] = { - [sym_identifier] = ACTIONS(1569), - [aux_sym_preproc_def_token1] = ACTIONS(1569), - [aux_sym_preproc_if_token1] = ACTIONS(1569), - [aux_sym_preproc_if_token2] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1569), - [aux_sym_preproc_else_token1] = ACTIONS(1569), - [aux_sym_preproc_elif_token1] = ACTIONS(1569), - [sym_preproc_directive] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP_AMP] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_typedef] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym___attribute__] = ACTIONS(1569), - [anon_sym_COLON_COLON] = ACTIONS(1571), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1571), - [anon_sym___declspec] = ACTIONS(1569), - [anon_sym___based] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1569), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_inline] = ACTIONS(1569), - [anon_sym_thread_local] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [anon_sym_volatile] = ACTIONS(1569), - [anon_sym_restrict] = ACTIONS(1569), - [anon_sym__Atomic] = ACTIONS(1569), - [anon_sym_mutable] = ACTIONS(1569), - [anon_sym_constexpr] = ACTIONS(1569), - [anon_sym_signed] = ACTIONS(1569), - [anon_sym_unsigned] = ACTIONS(1569), - [anon_sym_long] = ACTIONS(1569), - [anon_sym_short] = ACTIONS(1569), - [sym_primitive_type] = ACTIONS(1569), - [anon_sym_enum] = ACTIONS(1569), - [anon_sym_class] = ACTIONS(1569), - [anon_sym_struct] = ACTIONS(1569), - [anon_sym_union] = ACTIONS(1569), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1569), - [anon_sym_virtual] = ACTIONS(1569), - [anon_sym_explicit] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [sym_auto] = ACTIONS(1569), - [anon_sym_typename] = ACTIONS(1569), - [anon_sym_template] = ACTIONS(1569), - [anon_sym_operator] = ACTIONS(1569), - [anon_sym_friend] = ACTIONS(1569), - [anon_sym_using] = ACTIONS(1569), - [anon_sym_static_assert] = ACTIONS(1569), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1569), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1569), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1569), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1569), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1569), - [anon_sym_MOZ_COLD] = ACTIONS(1569), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1569), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1569), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1569), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1569), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1569), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1569), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1569), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1569), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1569), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1569), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1569), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1569), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1569), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_NONNULL] = ACTIONS(1569), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1569), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1569), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1569), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1569), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1569), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1569), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1569), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1569), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1569), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1569), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1569), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1569), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1569), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1569), - [anon_sym_MOZ_RAII] = ACTIONS(1569), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1569), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1569), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1569), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1569), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1569), - }, - [916] = { - [sym_attribute_declaration] = STATE(885), - [sym_compound_statement] = STATE(731), - [sym_attributed_statement] = STATE(731), - [sym_labeled_statement] = STATE(731), - [sym_expression_statement] = STATE(731), - [sym_if_statement] = STATE(731), - [sym_switch_statement] = STATE(731), - [sym_case_statement] = STATE(731), - [sym_while_statement] = STATE(731), - [sym_do_statement] = STATE(731), - [sym_for_statement] = STATE(731), - [sym_return_statement] = STATE(731), - [sym_break_statement] = STATE(731), - [sym_continue_statement] = STATE(731), - [sym_goto_statement] = STATE(731), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(731), - [sym_co_return_statement] = STATE(731), - [sym_co_yield_statement] = STATE(731), - [sym_throw_statement] = STATE(731), - [sym_try_statement] = STATE(731), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [917] = { - [sym_attribute_declaration] = STATE(885), - [sym_compound_statement] = STATE(719), - [sym_attributed_statement] = STATE(719), - [sym_labeled_statement] = STATE(719), - [sym_expression_statement] = STATE(719), - [sym_if_statement] = STATE(719), - [sym_switch_statement] = STATE(719), - [sym_case_statement] = STATE(719), - [sym_while_statement] = STATE(719), - [sym_do_statement] = STATE(719), - [sym_for_statement] = STATE(719), - [sym_return_statement] = STATE(719), - [sym_break_statement] = STATE(719), - [sym_continue_statement] = STATE(719), - [sym_goto_statement] = STATE(719), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(719), - [sym_co_return_statement] = STATE(719), - [sym_co_yield_statement] = STATE(719), - [sym_throw_statement] = STATE(719), - [sym_try_statement] = STATE(719), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [918] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(4531), - [sym_attributed_statement] = STATE(4531), - [sym_labeled_statement] = STATE(4531), - [sym_expression_statement] = STATE(4531), - [sym_if_statement] = STATE(4531), - [sym_switch_statement] = STATE(4531), - [sym_case_statement] = STATE(4531), - [sym_while_statement] = STATE(4531), - [sym_do_statement] = STATE(4531), - [sym_for_statement] = STATE(4531), - [sym_return_statement] = STATE(4531), - [sym_break_statement] = STATE(4531), - [sym_continue_statement] = STATE(4531), - [sym_goto_statement] = STATE(4531), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4531), - [sym_co_return_statement] = STATE(4531), - [sym_co_yield_statement] = STATE(4531), - [sym_throw_statement] = STATE(4531), - [sym_try_statement] = STATE(4531), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [919] = { - [sym_identifier] = ACTIONS(2874), - [aux_sym_preproc_def_token1] = ACTIONS(2874), - [aux_sym_preproc_if_token1] = ACTIONS(2874), - [aux_sym_preproc_if_token2] = ACTIONS(2874), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2874), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2874), - [aux_sym_preproc_else_token1] = ACTIONS(2874), - [aux_sym_preproc_elif_token1] = ACTIONS(2874), - [sym_preproc_directive] = ACTIONS(2874), - [anon_sym_LPAREN2] = ACTIONS(2876), - [anon_sym_TILDE] = ACTIONS(2876), - [anon_sym_STAR] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_typedef] = ACTIONS(2874), - [anon_sym_extern] = ACTIONS(2874), - [anon_sym___attribute__] = ACTIONS(2874), - [anon_sym_COLON_COLON] = ACTIONS(2876), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2876), - [anon_sym___declspec] = ACTIONS(2874), - [anon_sym___based] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_static] = ACTIONS(2874), - [anon_sym_register] = ACTIONS(2874), - [anon_sym_inline] = ACTIONS(2874), - [anon_sym_thread_local] = ACTIONS(2874), - [anon_sym_const] = ACTIONS(2874), - [anon_sym_volatile] = ACTIONS(2874), - [anon_sym_restrict] = ACTIONS(2874), - [anon_sym__Atomic] = ACTIONS(2874), - [anon_sym_mutable] = ACTIONS(2874), - [anon_sym_constexpr] = ACTIONS(2874), - [anon_sym_signed] = ACTIONS(2874), - [anon_sym_unsigned] = ACTIONS(2874), - [anon_sym_long] = ACTIONS(2874), - [anon_sym_short] = ACTIONS(2874), - [sym_primitive_type] = ACTIONS(2874), - [anon_sym_enum] = ACTIONS(2874), - [anon_sym_class] = ACTIONS(2874), - [anon_sym_struct] = ACTIONS(2874), - [anon_sym_union] = ACTIONS(2874), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2874), - [anon_sym_virtual] = ACTIONS(2874), - [anon_sym_explicit] = ACTIONS(2874), - [anon_sym_public] = ACTIONS(2874), - [anon_sym_private] = ACTIONS(2874), - [anon_sym_protected] = ACTIONS(2874), - [sym_auto] = ACTIONS(2874), - [anon_sym_typename] = ACTIONS(2874), - [anon_sym_template] = ACTIONS(2874), - [anon_sym_operator] = ACTIONS(2874), - [anon_sym_friend] = ACTIONS(2874), - [anon_sym_using] = ACTIONS(2874), - [anon_sym_static_assert] = ACTIONS(2874), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2874), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2874), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2874), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2874), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2874), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2874), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2874), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2874), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2874), - [anon_sym_MOZ_COLD] = ACTIONS(2874), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2874), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2874), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2874), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2874), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2874), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2874), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2874), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2874), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2874), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2874), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2874), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2874), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2874), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2874), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2874), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2874), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2874), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2874), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2874), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2874), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_NONNULL] = ACTIONS(2874), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2874), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2874), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2874), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2874), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2874), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_NORETURN] = ACTIONS(2874), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2874), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2874), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2874), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2874), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2874), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2874), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2874), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2874), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2874), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2874), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2874), - [anon_sym_MOZ_RAII] = ACTIONS(2874), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2874), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2874), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2874), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2874), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2874), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2874), - }, - [920] = { - [sym_attribute_declaration] = STATE(945), - [sym_compound_statement] = STATE(375), - [sym_attributed_statement] = STATE(375), - [sym_labeled_statement] = STATE(375), - [sym_expression_statement] = STATE(375), - [sym_if_statement] = STATE(375), - [sym_switch_statement] = STATE(375), - [sym_case_statement] = STATE(375), - [sym_while_statement] = STATE(375), - [sym_do_statement] = STATE(375), - [sym_for_statement] = STATE(375), - [sym_return_statement] = STATE(375), - [sym_break_statement] = STATE(375), - [sym_continue_statement] = STATE(375), - [sym_goto_statement] = STATE(375), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(375), - [sym_co_return_statement] = STATE(375), - [sym_co_yield_statement] = STATE(375), - [sym_throw_statement] = STATE(375), - [sym_try_statement] = STATE(375), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [921] = { - [sym_attribute_declaration] = STATE(945), - [sym_compound_statement] = STATE(261), - [sym_attributed_statement] = STATE(261), - [sym_labeled_statement] = STATE(261), - [sym_expression_statement] = STATE(261), - [sym_if_statement] = STATE(261), - [sym_switch_statement] = STATE(261), - [sym_case_statement] = STATE(261), - [sym_while_statement] = STATE(261), - [sym_do_statement] = STATE(261), - [sym_for_statement] = STATE(261), - [sym_return_statement] = STATE(261), - [sym_break_statement] = STATE(261), - [sym_continue_statement] = STATE(261), - [sym_goto_statement] = STATE(261), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(261), - [sym_co_return_statement] = STATE(261), - [sym_co_yield_statement] = STATE(261), - [sym_throw_statement] = STATE(261), - [sym_try_statement] = STATE(261), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [922] = { - [sym_attribute_declaration] = STATE(945), - [sym_compound_statement] = STATE(360), - [sym_attributed_statement] = STATE(360), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [923] = { - [sym_attribute_declaration] = STATE(1046), - [sym_compound_statement] = STATE(413), - [sym_attributed_statement] = STATE(413), - [sym_labeled_statement] = STATE(413), - [sym_expression_statement] = STATE(413), - [sym_if_statement] = STATE(413), - [sym_switch_statement] = STATE(413), - [sym_case_statement] = STATE(413), - [sym_while_statement] = STATE(413), - [sym_do_statement] = STATE(413), - [sym_for_statement] = STATE(413), - [sym_return_statement] = STATE(413), - [sym_break_statement] = STATE(413), - [sym_continue_statement] = STATE(413), - [sym_goto_statement] = STATE(413), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(413), - [sym_co_return_statement] = STATE(413), - [sym_co_yield_statement] = STATE(413), - [sym_throw_statement] = STATE(413), - [sym_try_statement] = STATE(413), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [924] = { - [sym_attribute_declaration] = STATE(1046), - [sym_compound_statement] = STATE(410), - [sym_attributed_statement] = STATE(410), - [sym_labeled_statement] = STATE(410), - [sym_expression_statement] = STATE(410), - [sym_if_statement] = STATE(410), - [sym_switch_statement] = STATE(410), - [sym_case_statement] = STATE(410), - [sym_while_statement] = STATE(410), - [sym_do_statement] = STATE(410), - [sym_for_statement] = STATE(410), - [sym_return_statement] = STATE(410), - [sym_break_statement] = STATE(410), - [sym_continue_statement] = STATE(410), - [sym_goto_statement] = STATE(410), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(410), - [sym_co_return_statement] = STATE(410), - [sym_co_yield_statement] = STATE(410), - [sym_throw_statement] = STATE(410), - [sym_try_statement] = STATE(410), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [925] = { - [sym_attribute_declaration] = STATE(885), - [sym_compound_statement] = STATE(718), - [sym_attributed_statement] = STATE(718), - [sym_labeled_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_if_statement] = STATE(718), - [sym_switch_statement] = STATE(718), - [sym_case_statement] = STATE(718), - [sym_while_statement] = STATE(718), - [sym_do_statement] = STATE(718), - [sym_for_statement] = STATE(718), - [sym_return_statement] = STATE(718), - [sym_break_statement] = STATE(718), - [sym_continue_statement] = STATE(718), - [sym_goto_statement] = STATE(718), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(718), - [sym_co_return_statement] = STATE(718), - [sym_co_yield_statement] = STATE(718), - [sym_throw_statement] = STATE(718), - [sym_try_statement] = STATE(718), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [926] = { - [sym_attribute_declaration] = STATE(945), - [sym_compound_statement] = STATE(357), - [sym_attributed_statement] = STATE(357), - [sym_labeled_statement] = STATE(357), - [sym_expression_statement] = STATE(357), - [sym_if_statement] = STATE(357), - [sym_switch_statement] = STATE(357), - [sym_case_statement] = STATE(357), - [sym_while_statement] = STATE(357), - [sym_do_statement] = STATE(357), - [sym_for_statement] = STATE(357), - [sym_return_statement] = STATE(357), - [sym_break_statement] = STATE(357), - [sym_continue_statement] = STATE(357), - [sym_goto_statement] = STATE(357), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(357), - [sym_co_return_statement] = STATE(357), - [sym_co_yield_statement] = STATE(357), - [sym_throw_statement] = STATE(357), - [sym_try_statement] = STATE(357), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [927] = { - [sym_identifier] = ACTIONS(2878), - [aux_sym_preproc_def_token1] = ACTIONS(2878), - [aux_sym_preproc_if_token1] = ACTIONS(2878), - [aux_sym_preproc_if_token2] = ACTIONS(2878), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2878), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2878), - [aux_sym_preproc_else_token1] = ACTIONS(2878), - [aux_sym_preproc_elif_token1] = ACTIONS(2878), - [sym_preproc_directive] = ACTIONS(2878), - [anon_sym_LPAREN2] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2880), - [anon_sym_AMP_AMP] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_typedef] = ACTIONS(2878), - [anon_sym_extern] = ACTIONS(2878), - [anon_sym___attribute__] = ACTIONS(2878), - [anon_sym_COLON_COLON] = ACTIONS(2880), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2880), - [anon_sym___declspec] = ACTIONS(2878), - [anon_sym___based] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_static] = ACTIONS(2878), - [anon_sym_register] = ACTIONS(2878), - [anon_sym_inline] = ACTIONS(2878), - [anon_sym_thread_local] = ACTIONS(2878), - [anon_sym_const] = ACTIONS(2878), - [anon_sym_volatile] = ACTIONS(2878), - [anon_sym_restrict] = ACTIONS(2878), - [anon_sym__Atomic] = ACTIONS(2878), - [anon_sym_mutable] = ACTIONS(2878), - [anon_sym_constexpr] = ACTIONS(2878), - [anon_sym_signed] = ACTIONS(2878), - [anon_sym_unsigned] = ACTIONS(2878), - [anon_sym_long] = ACTIONS(2878), - [anon_sym_short] = ACTIONS(2878), - [sym_primitive_type] = ACTIONS(2878), - [anon_sym_enum] = ACTIONS(2878), - [anon_sym_class] = ACTIONS(2878), - [anon_sym_struct] = ACTIONS(2878), - [anon_sym_union] = ACTIONS(2878), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2878), - [anon_sym_virtual] = ACTIONS(2878), - [anon_sym_explicit] = ACTIONS(2878), - [anon_sym_public] = ACTIONS(2878), - [anon_sym_private] = ACTIONS(2878), - [anon_sym_protected] = ACTIONS(2878), - [sym_auto] = ACTIONS(2878), - [anon_sym_typename] = ACTIONS(2878), - [anon_sym_template] = ACTIONS(2878), - [anon_sym_operator] = ACTIONS(2878), - [anon_sym_friend] = ACTIONS(2878), - [anon_sym_using] = ACTIONS(2878), - [anon_sym_static_assert] = ACTIONS(2878), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2878), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2878), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2878), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2878), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2878), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2878), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2878), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2878), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2878), - [anon_sym_MOZ_COLD] = ACTIONS(2878), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2878), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2878), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2878), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2878), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2878), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2878), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2878), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2878), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2878), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2878), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2878), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2878), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2878), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2878), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2878), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2878), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2878), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2878), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2878), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2878), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_NONNULL] = ACTIONS(2878), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2878), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2878), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2878), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2878), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2878), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_NORETURN] = ACTIONS(2878), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2878), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2878), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2878), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2878), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2878), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2878), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2878), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2878), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2878), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2878), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2878), - [anon_sym_MOZ_RAII] = ACTIONS(2878), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2878), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2878), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2878), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2878), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2878), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2878), - }, - [928] = { - [sym_attribute_declaration] = STATE(945), - [sym_compound_statement] = STATE(274), - [sym_attributed_statement] = STATE(274), - [sym_labeled_statement] = STATE(274), - [sym_expression_statement] = STATE(274), - [sym_if_statement] = STATE(274), - [sym_switch_statement] = STATE(274), - [sym_case_statement] = STATE(274), - [sym_while_statement] = STATE(274), - [sym_do_statement] = STATE(274), - [sym_for_statement] = STATE(274), - [sym_return_statement] = STATE(274), - [sym_break_statement] = STATE(274), - [sym_continue_statement] = STATE(274), - [sym_goto_statement] = STATE(274), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(274), - [sym_co_return_statement] = STATE(274), - [sym_co_yield_statement] = STATE(274), - [sym_throw_statement] = STATE(274), - [sym_try_statement] = STATE(274), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [929] = { - [sym_attribute_declaration] = STATE(882), - [sym_compound_statement] = STATE(127), - [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_case_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__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [930] = { - [sym_identifier] = ACTIONS(2882), - [aux_sym_preproc_def_token1] = ACTIONS(2882), - [aux_sym_preproc_if_token1] = ACTIONS(2882), - [aux_sym_preproc_if_token2] = ACTIONS(2882), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2882), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2882), - [aux_sym_preproc_else_token1] = ACTIONS(2882), - [aux_sym_preproc_elif_token1] = ACTIONS(2882), - [sym_preproc_directive] = ACTIONS(2882), - [anon_sym_LPAREN2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_typedef] = ACTIONS(2882), - [anon_sym_extern] = ACTIONS(2882), - [anon_sym___attribute__] = ACTIONS(2882), - [anon_sym_COLON_COLON] = ACTIONS(2884), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2884), - [anon_sym___declspec] = ACTIONS(2882), - [anon_sym___based] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_static] = ACTIONS(2882), - [anon_sym_register] = ACTIONS(2882), - [anon_sym_inline] = ACTIONS(2882), - [anon_sym_thread_local] = ACTIONS(2882), - [anon_sym_const] = ACTIONS(2882), - [anon_sym_volatile] = ACTIONS(2882), - [anon_sym_restrict] = ACTIONS(2882), - [anon_sym__Atomic] = ACTIONS(2882), - [anon_sym_mutable] = ACTIONS(2882), - [anon_sym_constexpr] = ACTIONS(2882), - [anon_sym_signed] = ACTIONS(2882), - [anon_sym_unsigned] = ACTIONS(2882), - [anon_sym_long] = ACTIONS(2882), - [anon_sym_short] = ACTIONS(2882), - [sym_primitive_type] = ACTIONS(2882), - [anon_sym_enum] = ACTIONS(2882), - [anon_sym_class] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2882), - [anon_sym_union] = ACTIONS(2882), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2882), - [anon_sym_virtual] = ACTIONS(2882), - [anon_sym_explicit] = ACTIONS(2882), - [anon_sym_public] = ACTIONS(2882), - [anon_sym_private] = ACTIONS(2882), - [anon_sym_protected] = ACTIONS(2882), - [sym_auto] = ACTIONS(2882), - [anon_sym_typename] = ACTIONS(2882), - [anon_sym_template] = ACTIONS(2882), - [anon_sym_operator] = ACTIONS(2882), - [anon_sym_friend] = ACTIONS(2882), - [anon_sym_using] = ACTIONS(2882), - [anon_sym_static_assert] = ACTIONS(2882), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2882), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2882), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2882), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2882), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2882), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2882), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2882), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2882), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2882), - [anon_sym_MOZ_COLD] = ACTIONS(2882), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2882), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2882), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2882), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2882), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2882), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2882), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2882), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2882), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2882), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2882), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2882), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2882), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2882), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2882), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2882), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2882), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2882), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2882), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2882), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2882), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_NONNULL] = ACTIONS(2882), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2882), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2882), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2882), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2882), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2882), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_NORETURN] = ACTIONS(2882), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2882), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2882), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2882), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2882), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2882), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2882), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2882), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2882), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2882), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2882), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2882), - [anon_sym_MOZ_RAII] = ACTIONS(2882), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2882), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2882), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2882), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2882), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2882), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2882), - }, - [931] = { - [sym_attribute_declaration] = STATE(1046), - [sym_compound_statement] = STATE(409), - [sym_attributed_statement] = STATE(409), - [sym_labeled_statement] = STATE(409), - [sym_expression_statement] = STATE(409), - [sym_if_statement] = STATE(409), - [sym_switch_statement] = STATE(409), - [sym_case_statement] = STATE(409), - [sym_while_statement] = STATE(409), - [sym_do_statement] = STATE(409), - [sym_for_statement] = STATE(409), - [sym_return_statement] = STATE(409), - [sym_break_statement] = STATE(409), - [sym_continue_statement] = STATE(409), - [sym_goto_statement] = STATE(409), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(409), - [sym_co_return_statement] = STATE(409), - [sym_co_yield_statement] = STATE(409), - [sym_throw_statement] = STATE(409), - [sym_try_statement] = STATE(409), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [932] = { - [sym_identifier] = ACTIONS(1787), - [aux_sym_preproc_def_token1] = ACTIONS(1787), - [aux_sym_preproc_if_token1] = ACTIONS(1787), - [aux_sym_preproc_if_token2] = ACTIONS(1787), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1787), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1787), - [aux_sym_preproc_else_token1] = ACTIONS(1787), - [aux_sym_preproc_elif_token1] = ACTIONS(1787), - [sym_preproc_directive] = ACTIONS(1787), - [anon_sym_LPAREN2] = ACTIONS(1789), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_AMP_AMP] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_typedef] = ACTIONS(1787), - [anon_sym_extern] = ACTIONS(1787), - [anon_sym___attribute__] = ACTIONS(1787), - [anon_sym_COLON_COLON] = ACTIONS(1789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), - [anon_sym___declspec] = ACTIONS(1787), - [anon_sym___based] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_static] = ACTIONS(1787), - [anon_sym_register] = ACTIONS(1787), - [anon_sym_inline] = ACTIONS(1787), - [anon_sym_thread_local] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_volatile] = ACTIONS(1787), - [anon_sym_restrict] = ACTIONS(1787), - [anon_sym__Atomic] = ACTIONS(1787), - [anon_sym_mutable] = ACTIONS(1787), - [anon_sym_constexpr] = ACTIONS(1787), - [anon_sym_signed] = ACTIONS(1787), - [anon_sym_unsigned] = ACTIONS(1787), - [anon_sym_long] = ACTIONS(1787), - [anon_sym_short] = ACTIONS(1787), - [sym_primitive_type] = ACTIONS(1787), - [anon_sym_enum] = ACTIONS(1787), - [anon_sym_class] = ACTIONS(1787), - [anon_sym_struct] = ACTIONS(1787), - [anon_sym_union] = ACTIONS(1787), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1787), - [anon_sym_virtual] = ACTIONS(1787), - [anon_sym_explicit] = ACTIONS(1787), - [anon_sym_public] = ACTIONS(1787), - [anon_sym_private] = ACTIONS(1787), - [anon_sym_protected] = ACTIONS(1787), - [sym_auto] = ACTIONS(1787), - [anon_sym_typename] = ACTIONS(1787), - [anon_sym_template] = ACTIONS(1787), - [anon_sym_operator] = ACTIONS(1787), - [anon_sym_friend] = ACTIONS(1787), - [anon_sym_using] = ACTIONS(1787), - [anon_sym_static_assert] = ACTIONS(1787), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1787), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1787), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1787), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1787), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1787), - [anon_sym_MOZ_COLD] = ACTIONS(1787), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1787), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1787), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1787), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1787), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1787), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1787), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1787), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1787), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1787), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1787), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1787), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1787), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1787), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_NONNULL] = ACTIONS(1787), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1787), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1787), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1787), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1787), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1787), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1787), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1787), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1787), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1787), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1787), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1787), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1787), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1787), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1787), - [anon_sym_MOZ_RAII] = ACTIONS(1787), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1787), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1787), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1787), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1787), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1787), - }, - [933] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(4528), - [sym_attributed_statement] = STATE(4528), - [sym_labeled_statement] = STATE(4528), - [sym_expression_statement] = STATE(4528), - [sym_if_statement] = STATE(4528), - [sym_switch_statement] = STATE(4528), - [sym_case_statement] = STATE(4528), - [sym_while_statement] = STATE(4528), - [sym_do_statement] = STATE(4528), - [sym_for_statement] = STATE(4528), - [sym_return_statement] = STATE(4528), - [sym_break_statement] = STATE(4528), - [sym_continue_statement] = STATE(4528), - [sym_goto_statement] = STATE(4528), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4528), - [sym_co_return_statement] = STATE(4528), - [sym_co_yield_statement] = STATE(4528), - [sym_throw_statement] = STATE(4528), - [sym_try_statement] = STATE(4528), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [934] = { - [sym_attribute_declaration] = STATE(1041), - [sym_compound_statement] = STATE(483), - [sym_attributed_statement] = STATE(483), - [sym_labeled_statement] = STATE(483), - [sym_expression_statement] = STATE(483), - [sym_if_statement] = STATE(483), - [sym_switch_statement] = STATE(483), - [sym_case_statement] = STATE(483), - [sym_while_statement] = STATE(483), - [sym_do_statement] = STATE(483), - [sym_for_statement] = STATE(483), - [sym_return_statement] = STATE(483), - [sym_break_statement] = STATE(483), - [sym_continue_statement] = STATE(483), - [sym_goto_statement] = STATE(483), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(483), - [sym_co_return_statement] = STATE(483), - [sym_co_yield_statement] = STATE(483), - [sym_throw_statement] = STATE(483), - [sym_try_statement] = STATE(483), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [935] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(4525), - [sym_attributed_statement] = STATE(4525), - [sym_labeled_statement] = STATE(4525), - [sym_expression_statement] = STATE(4525), - [sym_if_statement] = STATE(4525), - [sym_switch_statement] = STATE(4525), - [sym_case_statement] = STATE(4525), - [sym_while_statement] = STATE(4525), - [sym_do_statement] = STATE(4525), - [sym_for_statement] = STATE(4525), - [sym_return_statement] = STATE(4525), - [sym_break_statement] = STATE(4525), - [sym_continue_statement] = STATE(4525), - [sym_goto_statement] = STATE(4525), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4525), - [sym_co_return_statement] = STATE(4525), - [sym_co_yield_statement] = STATE(4525), - [sym_throw_statement] = STATE(4525), - [sym_try_statement] = STATE(4525), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [936] = { - [sym_attribute_declaration] = STATE(885), - [sym_compound_statement] = STATE(716), - [sym_attributed_statement] = STATE(716), - [sym_labeled_statement] = STATE(716), - [sym_expression_statement] = STATE(716), - [sym_if_statement] = STATE(716), - [sym_switch_statement] = STATE(716), - [sym_case_statement] = STATE(716), - [sym_while_statement] = STATE(716), - [sym_do_statement] = STATE(716), - [sym_for_statement] = STATE(716), - [sym_return_statement] = STATE(716), - [sym_break_statement] = STATE(716), - [sym_continue_statement] = STATE(716), - [sym_goto_statement] = STATE(716), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(716), - [sym_co_return_statement] = STATE(716), - [sym_co_yield_statement] = STATE(716), - [sym_throw_statement] = STATE(716), - [sym_try_statement] = STATE(716), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [937] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(4521), - [sym_attributed_statement] = STATE(4521), - [sym_labeled_statement] = STATE(4521), - [sym_expression_statement] = STATE(4521), - [sym_if_statement] = STATE(4521), - [sym_switch_statement] = STATE(4521), - [sym_case_statement] = STATE(4521), - [sym_while_statement] = STATE(4521), - [sym_do_statement] = STATE(4521), - [sym_for_statement] = STATE(4521), - [sym_return_statement] = STATE(4521), - [sym_break_statement] = STATE(4521), - [sym_continue_statement] = STATE(4521), - [sym_goto_statement] = STATE(4521), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4521), - [sym_co_return_statement] = STATE(4521), - [sym_co_yield_statement] = STATE(4521), - [sym_throw_statement] = STATE(4521), - [sym_try_statement] = STATE(4521), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [938] = { - [sym_attribute_declaration] = STATE(945), - [sym_compound_statement] = STATE(497), - [sym_attributed_statement] = STATE(497), - [sym_labeled_statement] = STATE(497), - [sym_expression_statement] = STATE(497), - [sym_if_statement] = STATE(497), - [sym_switch_statement] = STATE(497), - [sym_case_statement] = STATE(497), - [sym_while_statement] = STATE(497), - [sym_do_statement] = STATE(497), - [sym_for_statement] = STATE(497), - [sym_return_statement] = STATE(497), - [sym_break_statement] = STATE(497), - [sym_continue_statement] = STATE(497), - [sym_goto_statement] = STATE(497), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(497), - [sym_co_return_statement] = STATE(497), - [sym_co_yield_statement] = STATE(497), - [sym_throw_statement] = STATE(497), - [sym_try_statement] = STATE(497), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [939] = { - [sym_identifier] = ACTIONS(1565), - [aux_sym_preproc_def_token1] = ACTIONS(1565), - [aux_sym_preproc_if_token1] = ACTIONS(1565), - [aux_sym_preproc_if_token2] = ACTIONS(1565), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1565), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1565), - [aux_sym_preproc_else_token1] = ACTIONS(1565), - [aux_sym_preproc_elif_token1] = ACTIONS(1565), - [sym_preproc_directive] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1567), - [anon_sym_TILDE] = ACTIONS(1567), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_AMP_AMP] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_typedef] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym___attribute__] = ACTIONS(1565), - [anon_sym_COLON_COLON] = ACTIONS(1567), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1567), - [anon_sym___declspec] = ACTIONS(1565), - [anon_sym___based] = ACTIONS(1565), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1565), - [anon_sym_register] = ACTIONS(1565), - [anon_sym_inline] = ACTIONS(1565), - [anon_sym_thread_local] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [anon_sym_volatile] = ACTIONS(1565), - [anon_sym_restrict] = ACTIONS(1565), - [anon_sym__Atomic] = ACTIONS(1565), - [anon_sym_mutable] = ACTIONS(1565), - [anon_sym_constexpr] = ACTIONS(1565), - [anon_sym_signed] = ACTIONS(1565), - [anon_sym_unsigned] = ACTIONS(1565), - [anon_sym_long] = ACTIONS(1565), - [anon_sym_short] = ACTIONS(1565), - [sym_primitive_type] = ACTIONS(1565), - [anon_sym_enum] = ACTIONS(1565), - [anon_sym_class] = ACTIONS(1565), - [anon_sym_struct] = ACTIONS(1565), - [anon_sym_union] = ACTIONS(1565), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1565), - [anon_sym_virtual] = ACTIONS(1565), - [anon_sym_explicit] = ACTIONS(1565), - [anon_sym_public] = ACTIONS(1565), - [anon_sym_private] = ACTIONS(1565), - [anon_sym_protected] = ACTIONS(1565), - [sym_auto] = ACTIONS(1565), - [anon_sym_typename] = ACTIONS(1565), - [anon_sym_template] = ACTIONS(1565), - [anon_sym_operator] = ACTIONS(1565), - [anon_sym_friend] = ACTIONS(1565), - [anon_sym_using] = ACTIONS(1565), - [anon_sym_static_assert] = ACTIONS(1565), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1565), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1565), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1565), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1565), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1565), - [anon_sym_MOZ_COLD] = ACTIONS(1565), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1565), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1565), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1565), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1565), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1565), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1565), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1565), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1565), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1565), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1565), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1565), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1565), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1565), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_NONNULL] = ACTIONS(1565), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1565), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1565), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1565), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1565), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1565), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1565), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1565), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1565), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1565), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1565), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1565), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1565), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1565), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1565), - [anon_sym_MOZ_RAII] = ACTIONS(1565), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1565), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1565), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1565), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1565), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1565), - }, - [940] = { - [sym_attribute_declaration] = STATE(1046), - [sym_compound_statement] = STATE(474), - [sym_attributed_statement] = STATE(474), - [sym_labeled_statement] = STATE(474), - [sym_expression_statement] = STATE(474), - [sym_if_statement] = STATE(474), - [sym_switch_statement] = STATE(474), - [sym_case_statement] = STATE(474), - [sym_while_statement] = STATE(474), - [sym_do_statement] = STATE(474), - [sym_for_statement] = STATE(474), - [sym_return_statement] = STATE(474), - [sym_break_statement] = STATE(474), - [sym_continue_statement] = STATE(474), - [sym_goto_statement] = STATE(474), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(474), - [sym_co_return_statement] = STATE(474), - [sym_co_yield_statement] = STATE(474), - [sym_throw_statement] = STATE(474), - [sym_try_statement] = STATE(474), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [941] = { - [sym_attribute_declaration] = STATE(945), - [sym_compound_statement] = STATE(285), - [sym_attributed_statement] = STATE(286), - [sym_labeled_statement] = STATE(288), - [sym_expression_statement] = STATE(293), - [sym_if_statement] = STATE(295), - [sym_switch_statement] = STATE(296), - [sym_case_statement] = STATE(305), - [sym_while_statement] = STATE(311), - [sym_do_statement] = STATE(312), - [sym_for_statement] = STATE(330), - [sym_return_statement] = STATE(336), - [sym_break_statement] = STATE(348), - [sym_continue_statement] = STATE(351), - [sym_goto_statement] = STATE(353), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(355), - [sym_co_return_statement] = STATE(356), - [sym_co_yield_statement] = STATE(358), - [sym_throw_statement] = STATE(361), - [sym_try_statement] = STATE(362), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [942] = { - [sym_attribute_declaration] = STATE(945), - [sym_compound_statement] = STATE(365), - [sym_attributed_statement] = STATE(367), - [sym_labeled_statement] = STATE(373), - [sym_expression_statement] = STATE(379), - [sym_if_statement] = STATE(277), - [sym_switch_statement] = STATE(255), - [sym_case_statement] = STATE(389), - [sym_while_statement] = STATE(396), - [sym_do_statement] = STATE(397), - [sym_for_statement] = STATE(430), - [sym_return_statement] = STATE(453), - [sym_break_statement] = STATE(456), - [sym_continue_statement] = STATE(479), - [sym_goto_statement] = STATE(484), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(485), - [sym_co_return_statement] = STATE(487), - [sym_co_yield_statement] = STATE(488), - [sym_throw_statement] = STATE(489), - [sym_try_statement] = STATE(493), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [943] = { - [sym_identifier] = ACTIONS(1799), - [aux_sym_preproc_def_token1] = ACTIONS(1799), - [aux_sym_preproc_if_token1] = ACTIONS(1799), - [aux_sym_preproc_if_token2] = ACTIONS(1799), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1799), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1799), - [aux_sym_preproc_else_token1] = ACTIONS(1799), - [aux_sym_preproc_elif_token1] = ACTIONS(1799), - [sym_preproc_directive] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_typedef] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym___attribute__] = ACTIONS(1799), - [anon_sym_COLON_COLON] = ACTIONS(1801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1801), - [anon_sym___declspec] = ACTIONS(1799), - [anon_sym___based] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_inline] = ACTIONS(1799), - [anon_sym_thread_local] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_volatile] = ACTIONS(1799), - [anon_sym_restrict] = ACTIONS(1799), - [anon_sym__Atomic] = ACTIONS(1799), - [anon_sym_mutable] = ACTIONS(1799), - [anon_sym_constexpr] = ACTIONS(1799), - [anon_sym_signed] = ACTIONS(1799), - [anon_sym_unsigned] = ACTIONS(1799), - [anon_sym_long] = ACTIONS(1799), - [anon_sym_short] = ACTIONS(1799), - [sym_primitive_type] = ACTIONS(1799), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_class] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1799), - [anon_sym_union] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1799), - [anon_sym_virtual] = ACTIONS(1799), - [anon_sym_explicit] = ACTIONS(1799), - [anon_sym_public] = ACTIONS(1799), - [anon_sym_private] = ACTIONS(1799), - [anon_sym_protected] = ACTIONS(1799), - [sym_auto] = ACTIONS(1799), - [anon_sym_typename] = ACTIONS(1799), - [anon_sym_template] = ACTIONS(1799), - [anon_sym_operator] = ACTIONS(1799), - [anon_sym_friend] = ACTIONS(1799), - [anon_sym_using] = ACTIONS(1799), - [anon_sym_static_assert] = ACTIONS(1799), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1799), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1799), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1799), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1799), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1799), - [anon_sym_MOZ_COLD] = ACTIONS(1799), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1799), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1799), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1799), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1799), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1799), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1799), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1799), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1799), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1799), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1799), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1799), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1799), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1799), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_NONNULL] = ACTIONS(1799), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1799), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1799), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1799), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1799), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1799), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1799), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1799), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1799), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1799), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1799), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1799), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1799), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1799), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1799), - [anon_sym_MOZ_RAII] = ACTIONS(1799), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1799), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1799), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1799), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1799), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1799), - }, - [944] = { - [sym_identifier] = ACTIONS(1557), - [aux_sym_preproc_def_token1] = ACTIONS(1557), - [aux_sym_preproc_if_token1] = ACTIONS(1557), - [aux_sym_preproc_if_token2] = ACTIONS(1557), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1557), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1557), - [aux_sym_preproc_else_token1] = ACTIONS(1557), - [aux_sym_preproc_elif_token1] = ACTIONS(1557), - [sym_preproc_directive] = ACTIONS(1557), - [anon_sym_LPAREN2] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_STAR] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1557), - [anon_sym_typedef] = ACTIONS(1557), - [anon_sym_extern] = ACTIONS(1557), - [anon_sym___attribute__] = ACTIONS(1557), - [anon_sym_COLON_COLON] = ACTIONS(1559), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1559), - [anon_sym___declspec] = ACTIONS(1557), - [anon_sym___based] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_register] = ACTIONS(1557), - [anon_sym_inline] = ACTIONS(1557), - [anon_sym_thread_local] = ACTIONS(1557), - [anon_sym_const] = ACTIONS(1557), - [anon_sym_volatile] = ACTIONS(1557), - [anon_sym_restrict] = ACTIONS(1557), - [anon_sym__Atomic] = ACTIONS(1557), - [anon_sym_mutable] = ACTIONS(1557), - [anon_sym_constexpr] = ACTIONS(1557), - [anon_sym_signed] = ACTIONS(1557), - [anon_sym_unsigned] = ACTIONS(1557), - [anon_sym_long] = ACTIONS(1557), - [anon_sym_short] = ACTIONS(1557), - [sym_primitive_type] = ACTIONS(1557), - [anon_sym_enum] = ACTIONS(1557), - [anon_sym_class] = ACTIONS(1557), - [anon_sym_struct] = ACTIONS(1557), - [anon_sym_union] = ACTIONS(1557), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1557), - [anon_sym_virtual] = ACTIONS(1557), - [anon_sym_explicit] = ACTIONS(1557), - [anon_sym_public] = ACTIONS(1557), - [anon_sym_private] = ACTIONS(1557), - [anon_sym_protected] = ACTIONS(1557), - [sym_auto] = ACTIONS(1557), - [anon_sym_typename] = ACTIONS(1557), - [anon_sym_template] = ACTIONS(1557), - [anon_sym_operator] = ACTIONS(1557), - [anon_sym_friend] = ACTIONS(1557), - [anon_sym_using] = ACTIONS(1557), - [anon_sym_static_assert] = ACTIONS(1557), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1557), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1557), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1557), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1557), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1557), - [anon_sym_MOZ_COLD] = ACTIONS(1557), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1557), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1557), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1557), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1557), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1557), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1557), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1557), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1557), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1557), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1557), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1557), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1557), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1557), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_NONNULL] = ACTIONS(1557), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1557), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1557), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1557), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1557), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1557), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1557), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1557), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1557), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1557), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1557), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1557), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1557), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1557), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1557), - [anon_sym_MOZ_RAII] = ACTIONS(1557), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1557), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1557), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1557), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1557), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1557), - }, - [945] = { - [sym_attribute_declaration] = STATE(878), - [sym_compound_statement] = STATE(354), - [sym_attributed_statement] = STATE(354), - [sym_labeled_statement] = STATE(354), - [sym_expression_statement] = STATE(354), - [sym_if_statement] = STATE(354), - [sym_switch_statement] = STATE(354), - [sym_case_statement] = STATE(354), - [sym_while_statement] = STATE(354), - [sym_do_statement] = STATE(354), - [sym_for_statement] = STATE(354), - [sym_return_statement] = STATE(354), - [sym_break_statement] = STATE(354), - [sym_continue_statement] = STATE(354), - [sym_goto_statement] = STATE(354), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(354), - [sym_co_return_statement] = STATE(354), - [sym_co_yield_statement] = STATE(354), - [sym_throw_statement] = STATE(354), - [sym_try_statement] = STATE(354), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(878), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [946] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(4520), - [sym_attributed_statement] = STATE(4520), - [sym_labeled_statement] = STATE(4520), - [sym_expression_statement] = STATE(4520), - [sym_if_statement] = STATE(4520), - [sym_switch_statement] = STATE(4520), - [sym_case_statement] = STATE(4520), - [sym_while_statement] = STATE(4520), - [sym_do_statement] = STATE(4520), - [sym_for_statement] = STATE(4520), - [sym_return_statement] = STATE(4520), - [sym_break_statement] = STATE(4520), - [sym_continue_statement] = STATE(4520), - [sym_goto_statement] = STATE(4520), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4520), - [sym_co_return_statement] = STATE(4520), - [sym_co_yield_statement] = STATE(4520), - [sym_throw_statement] = STATE(4520), - [sym_try_statement] = STATE(4520), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [947] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(4518), - [sym_attributed_statement] = STATE(4518), - [sym_labeled_statement] = STATE(4518), - [sym_expression_statement] = STATE(4518), - [sym_if_statement] = STATE(4518), - [sym_switch_statement] = STATE(4518), - [sym_case_statement] = STATE(4518), - [sym_while_statement] = STATE(4518), - [sym_do_statement] = STATE(4518), - [sym_for_statement] = STATE(4518), - [sym_return_statement] = STATE(4518), - [sym_break_statement] = STATE(4518), - [sym_continue_statement] = STATE(4518), - [sym_goto_statement] = STATE(4518), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4518), - [sym_co_return_statement] = STATE(4518), - [sym_co_yield_statement] = STATE(4518), - [sym_throw_statement] = STATE(4518), - [sym_try_statement] = STATE(4518), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [948] = { - [sym_attribute_declaration] = STATE(882), - [sym_compound_statement] = STATE(178), - [sym_attributed_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_switch_statement] = STATE(178), - [sym_case_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_goto_statement] = STATE(178), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(178), - [sym_co_return_statement] = STATE(178), - [sym_co_yield_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [949] = { - [sym_attribute_declaration] = STATE(882), - [sym_compound_statement] = STATE(142), - [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_case_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__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [950] = { - [sym_attribute_declaration] = STATE(882), - [sym_compound_statement] = STATE(176), - [sym_attributed_statement] = STATE(176), - [sym_labeled_statement] = STATE(176), - [sym_expression_statement] = STATE(176), - [sym_if_statement] = STATE(176), - [sym_switch_statement] = STATE(176), - [sym_case_statement] = STATE(176), - [sym_while_statement] = STATE(176), - [sym_do_statement] = STATE(176), - [sym_for_statement] = STATE(176), - [sym_return_statement] = STATE(176), - [sym_break_statement] = STATE(176), - [sym_continue_statement] = STATE(176), - [sym_goto_statement] = STATE(176), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(176), - [sym_co_return_statement] = STATE(176), - [sym_co_yield_statement] = STATE(176), - [sym_throw_statement] = STATE(176), - [sym_try_statement] = STATE(176), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [951] = { - [sym_attribute_declaration] = STATE(1041), - [sym_compound_statement] = STATE(327), - [sym_attributed_statement] = STATE(327), - [sym_labeled_statement] = STATE(327), - [sym_expression_statement] = STATE(327), - [sym_if_statement] = STATE(327), - [sym_switch_statement] = STATE(327), - [sym_case_statement] = STATE(327), - [sym_while_statement] = STATE(327), - [sym_do_statement] = STATE(327), - [sym_for_statement] = STATE(327), - [sym_return_statement] = STATE(327), - [sym_break_statement] = STATE(327), - [sym_continue_statement] = STATE(327), - [sym_goto_statement] = STATE(327), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(327), - [sym_co_return_statement] = STATE(327), - [sym_co_yield_statement] = STATE(327), - [sym_throw_statement] = STATE(327), - [sym_try_statement] = STATE(327), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [952] = { - [sym_identifier] = ACTIONS(2886), - [aux_sym_preproc_def_token1] = ACTIONS(2886), - [aux_sym_preproc_if_token1] = ACTIONS(2886), - [aux_sym_preproc_if_token2] = ACTIONS(2886), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2886), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2886), - [aux_sym_preproc_else_token1] = ACTIONS(2886), - [aux_sym_preproc_elif_token1] = ACTIONS(2886), - [sym_preproc_directive] = ACTIONS(2886), - [anon_sym_LPAREN2] = ACTIONS(2888), - [anon_sym_TILDE] = ACTIONS(2888), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_AMP_AMP] = ACTIONS(2888), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_typedef] = ACTIONS(2886), - [anon_sym_extern] = ACTIONS(2886), - [anon_sym___attribute__] = ACTIONS(2886), - [anon_sym_COLON_COLON] = ACTIONS(2888), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2888), - [anon_sym___declspec] = ACTIONS(2886), - [anon_sym___based] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_static] = ACTIONS(2886), - [anon_sym_register] = ACTIONS(2886), - [anon_sym_inline] = ACTIONS(2886), - [anon_sym_thread_local] = ACTIONS(2886), - [anon_sym_const] = ACTIONS(2886), - [anon_sym_volatile] = ACTIONS(2886), - [anon_sym_restrict] = ACTIONS(2886), - [anon_sym__Atomic] = ACTIONS(2886), - [anon_sym_mutable] = ACTIONS(2886), - [anon_sym_constexpr] = ACTIONS(2886), - [anon_sym_signed] = ACTIONS(2886), - [anon_sym_unsigned] = ACTIONS(2886), - [anon_sym_long] = ACTIONS(2886), - [anon_sym_short] = ACTIONS(2886), - [sym_primitive_type] = ACTIONS(2886), - [anon_sym_enum] = ACTIONS(2886), - [anon_sym_class] = ACTIONS(2886), - [anon_sym_struct] = ACTIONS(2886), - [anon_sym_union] = ACTIONS(2886), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2886), - [anon_sym_virtual] = ACTIONS(2886), - [anon_sym_explicit] = ACTIONS(2886), - [anon_sym_public] = ACTIONS(2886), - [anon_sym_private] = ACTIONS(2886), - [anon_sym_protected] = ACTIONS(2886), - [sym_auto] = ACTIONS(2886), - [anon_sym_typename] = ACTIONS(2886), - [anon_sym_template] = ACTIONS(2886), - [anon_sym_operator] = ACTIONS(2886), - [anon_sym_friend] = ACTIONS(2886), - [anon_sym_using] = ACTIONS(2886), - [anon_sym_static_assert] = ACTIONS(2886), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2886), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2886), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2886), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2886), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2886), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2886), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2886), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2886), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2886), - [anon_sym_MOZ_COLD] = ACTIONS(2886), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2886), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2886), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2886), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2886), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2886), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2886), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2886), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2886), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2886), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2886), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2886), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2886), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2886), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2886), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2886), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2886), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2886), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2886), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2886), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2886), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_NONNULL] = ACTIONS(2886), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2886), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2886), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2886), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2886), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2886), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_NORETURN] = ACTIONS(2886), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2886), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2886), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2886), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2886), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2886), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2886), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2886), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2886), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2886), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2886), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2886), - [anon_sym_MOZ_RAII] = ACTIONS(2886), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2886), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2886), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2886), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2886), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2886), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2886), - }, - [953] = { - [sym_identifier] = ACTIONS(1581), - [aux_sym_preproc_def_token1] = ACTIONS(1581), - [aux_sym_preproc_if_token1] = ACTIONS(1581), - [aux_sym_preproc_if_token2] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1581), - [aux_sym_preproc_else_token1] = ACTIONS(1581), - [aux_sym_preproc_elif_token1] = ACTIONS(1581), - [sym_preproc_directive] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(1583), - [anon_sym_TILDE] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1581), - [anon_sym_typedef] = ACTIONS(1581), - [anon_sym_extern] = ACTIONS(1581), - [anon_sym___attribute__] = ACTIONS(1581), - [anon_sym_COLON_COLON] = ACTIONS(1583), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1583), - [anon_sym___declspec] = ACTIONS(1581), - [anon_sym___based] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1581), - [anon_sym_register] = ACTIONS(1581), - [anon_sym_inline] = ACTIONS(1581), - [anon_sym_thread_local] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1581), - [anon_sym_volatile] = ACTIONS(1581), - [anon_sym_restrict] = ACTIONS(1581), - [anon_sym__Atomic] = ACTIONS(1581), - [anon_sym_mutable] = ACTIONS(1581), - [anon_sym_constexpr] = ACTIONS(1581), - [anon_sym_signed] = ACTIONS(1581), - [anon_sym_unsigned] = ACTIONS(1581), - [anon_sym_long] = ACTIONS(1581), - [anon_sym_short] = ACTIONS(1581), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_enum] = ACTIONS(1581), - [anon_sym_class] = ACTIONS(1581), - [anon_sym_struct] = ACTIONS(1581), - [anon_sym_union] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1581), - [anon_sym_virtual] = ACTIONS(1581), - [anon_sym_explicit] = ACTIONS(1581), - [anon_sym_public] = ACTIONS(1581), - [anon_sym_private] = ACTIONS(1581), - [anon_sym_protected] = ACTIONS(1581), - [sym_auto] = ACTIONS(1581), - [anon_sym_typename] = ACTIONS(1581), - [anon_sym_template] = ACTIONS(1581), - [anon_sym_operator] = ACTIONS(1581), - [anon_sym_friend] = ACTIONS(1581), - [anon_sym_using] = ACTIONS(1581), - [anon_sym_static_assert] = ACTIONS(1581), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1581), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1581), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1581), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1581), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1581), - [anon_sym_MOZ_COLD] = ACTIONS(1581), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1581), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1581), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1581), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1581), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1581), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1581), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1581), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1581), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1581), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1581), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1581), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1581), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1581), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_NONNULL] = ACTIONS(1581), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1581), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1581), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1581), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1581), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1581), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1581), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1581), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1581), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1581), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1581), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1581), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1581), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1581), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1581), - [anon_sym_MOZ_RAII] = ACTIONS(1581), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1581), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1581), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1581), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1581), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1581), - }, - [954] = { - [sym_attribute_declaration] = STATE(885), - [sym_compound_statement] = STATE(715), - [sym_attributed_statement] = STATE(715), - [sym_labeled_statement] = STATE(715), - [sym_expression_statement] = STATE(715), - [sym_if_statement] = STATE(715), - [sym_switch_statement] = STATE(715), - [sym_case_statement] = STATE(715), - [sym_while_statement] = STATE(715), - [sym_do_statement] = STATE(715), - [sym_for_statement] = STATE(715), - [sym_return_statement] = STATE(715), - [sym_break_statement] = STATE(715), - [sym_continue_statement] = STATE(715), - [sym_goto_statement] = STATE(715), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(715), - [sym_co_return_statement] = STATE(715), - [sym_co_yield_statement] = STATE(715), - [sym_throw_statement] = STATE(715), - [sym_try_statement] = STATE(715), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [955] = { - [sym_identifier] = ACTIONS(2890), - [aux_sym_preproc_def_token1] = ACTIONS(2890), - [aux_sym_preproc_if_token1] = ACTIONS(2890), - [aux_sym_preproc_if_token2] = ACTIONS(2890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2890), - [aux_sym_preproc_else_token1] = ACTIONS(2890), - [aux_sym_preproc_elif_token1] = ACTIONS(2890), - [sym_preproc_directive] = ACTIONS(2890), - [anon_sym_LPAREN2] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2892), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_typedef] = ACTIONS(2890), - [anon_sym_extern] = ACTIONS(2890), - [anon_sym___attribute__] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2892), - [anon_sym___declspec] = ACTIONS(2890), - [anon_sym___based] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_register] = ACTIONS(2890), - [anon_sym_inline] = ACTIONS(2890), - [anon_sym_thread_local] = ACTIONS(2890), - [anon_sym_const] = ACTIONS(2890), - [anon_sym_volatile] = ACTIONS(2890), - [anon_sym_restrict] = ACTIONS(2890), - [anon_sym__Atomic] = ACTIONS(2890), - [anon_sym_mutable] = ACTIONS(2890), - [anon_sym_constexpr] = ACTIONS(2890), - [anon_sym_signed] = ACTIONS(2890), - [anon_sym_unsigned] = ACTIONS(2890), - [anon_sym_long] = ACTIONS(2890), - [anon_sym_short] = ACTIONS(2890), - [sym_primitive_type] = ACTIONS(2890), - [anon_sym_enum] = ACTIONS(2890), - [anon_sym_class] = ACTIONS(2890), - [anon_sym_struct] = ACTIONS(2890), - [anon_sym_union] = ACTIONS(2890), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2890), - [anon_sym_virtual] = ACTIONS(2890), - [anon_sym_explicit] = ACTIONS(2890), - [anon_sym_public] = ACTIONS(2890), - [anon_sym_private] = ACTIONS(2890), - [anon_sym_protected] = ACTIONS(2890), - [sym_auto] = ACTIONS(2890), - [anon_sym_typename] = ACTIONS(2890), - [anon_sym_template] = ACTIONS(2890), - [anon_sym_operator] = ACTIONS(2890), - [anon_sym_friend] = ACTIONS(2890), - [anon_sym_using] = ACTIONS(2890), - [anon_sym_static_assert] = ACTIONS(2890), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2890), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2890), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2890), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2890), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2890), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2890), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2890), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2890), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2890), - [anon_sym_MOZ_COLD] = ACTIONS(2890), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2890), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2890), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2890), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2890), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2890), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2890), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2890), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2890), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2890), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2890), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2890), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2890), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2890), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2890), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2890), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2890), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2890), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2890), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2890), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2890), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_NONNULL] = ACTIONS(2890), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2890), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2890), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2890), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2890), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2890), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_NORETURN] = ACTIONS(2890), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2890), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2890), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2890), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2890), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2890), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2890), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2890), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2890), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2890), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2890), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2890), - [anon_sym_MOZ_RAII] = ACTIONS(2890), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2890), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2890), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2890), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2890), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2890), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2890), - }, - [956] = { - [sym_identifier] = ACTIONS(2894), - [aux_sym_preproc_def_token1] = ACTIONS(2894), - [aux_sym_preproc_if_token1] = ACTIONS(2894), - [aux_sym_preproc_if_token2] = ACTIONS(2894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2894), - [aux_sym_preproc_else_token1] = ACTIONS(2894), - [aux_sym_preproc_elif_token1] = ACTIONS(2894), - [sym_preproc_directive] = ACTIONS(2894), - [anon_sym_LPAREN2] = ACTIONS(2896), - [anon_sym_TILDE] = ACTIONS(2896), - [anon_sym_STAR] = ACTIONS(2896), - [anon_sym_AMP_AMP] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_typedef] = ACTIONS(2894), - [anon_sym_extern] = ACTIONS(2894), - [anon_sym___attribute__] = ACTIONS(2894), - [anon_sym_COLON_COLON] = ACTIONS(2896), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2896), - [anon_sym___declspec] = ACTIONS(2894), - [anon_sym___based] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_static] = ACTIONS(2894), - [anon_sym_register] = ACTIONS(2894), - [anon_sym_inline] = ACTIONS(2894), - [anon_sym_thread_local] = ACTIONS(2894), - [anon_sym_const] = ACTIONS(2894), - [anon_sym_volatile] = ACTIONS(2894), - [anon_sym_restrict] = ACTIONS(2894), - [anon_sym__Atomic] = ACTIONS(2894), - [anon_sym_mutable] = ACTIONS(2894), - [anon_sym_constexpr] = ACTIONS(2894), - [anon_sym_signed] = ACTIONS(2894), - [anon_sym_unsigned] = ACTIONS(2894), - [anon_sym_long] = ACTIONS(2894), - [anon_sym_short] = ACTIONS(2894), - [sym_primitive_type] = ACTIONS(2894), - [anon_sym_enum] = ACTIONS(2894), - [anon_sym_class] = ACTIONS(2894), - [anon_sym_struct] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2894), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2894), - [anon_sym_virtual] = ACTIONS(2894), - [anon_sym_explicit] = ACTIONS(2894), - [anon_sym_public] = ACTIONS(2894), - [anon_sym_private] = ACTIONS(2894), - [anon_sym_protected] = ACTIONS(2894), - [sym_auto] = ACTIONS(2894), - [anon_sym_typename] = ACTIONS(2894), - [anon_sym_template] = ACTIONS(2894), - [anon_sym_operator] = ACTIONS(2894), - [anon_sym_friend] = ACTIONS(2894), - [anon_sym_using] = ACTIONS(2894), - [anon_sym_static_assert] = ACTIONS(2894), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2894), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2894), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2894), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2894), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2894), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2894), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2894), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2894), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2894), - [anon_sym_MOZ_COLD] = ACTIONS(2894), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2894), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2894), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2894), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2894), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2894), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2894), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2894), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2894), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2894), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2894), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2894), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2894), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2894), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2894), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2894), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2894), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2894), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2894), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2894), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2894), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_NONNULL] = ACTIONS(2894), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2894), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2894), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2894), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2894), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2894), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_NORETURN] = ACTIONS(2894), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2894), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2894), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2894), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2894), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2894), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2894), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2894), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2894), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2894), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2894), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2894), - [anon_sym_MOZ_RAII] = ACTIONS(2894), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2894), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2894), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2894), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2894), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2894), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2894), - }, - [957] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(4500), - [sym_attributed_statement] = STATE(4500), - [sym_labeled_statement] = STATE(4500), - [sym_expression_statement] = STATE(4500), - [sym_if_statement] = STATE(4500), - [sym_switch_statement] = STATE(4500), - [sym_case_statement] = STATE(4500), - [sym_while_statement] = STATE(4500), - [sym_do_statement] = STATE(4500), - [sym_for_statement] = STATE(4500), - [sym_return_statement] = STATE(4500), - [sym_break_statement] = STATE(4500), - [sym_continue_statement] = STATE(4500), - [sym_goto_statement] = STATE(4500), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4500), - [sym_co_return_statement] = STATE(4500), - [sym_co_yield_statement] = STATE(4500), - [sym_throw_statement] = STATE(4500), - [sym_try_statement] = STATE(4500), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [958] = { - [sym_identifier] = ACTIONS(2898), - [aux_sym_preproc_def_token1] = ACTIONS(2898), - [aux_sym_preproc_if_token1] = ACTIONS(2898), - [aux_sym_preproc_if_token2] = ACTIONS(2898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2898), - [aux_sym_preproc_else_token1] = ACTIONS(2898), - [aux_sym_preproc_elif_token1] = ACTIONS(2898), - [sym_preproc_directive] = ACTIONS(2898), - [anon_sym_LPAREN2] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_typedef] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(2898), - [anon_sym___attribute__] = ACTIONS(2898), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2900), - [anon_sym___declspec] = ACTIONS(2898), - [anon_sym___based] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(2898), - [anon_sym_register] = ACTIONS(2898), - [anon_sym_inline] = ACTIONS(2898), - [anon_sym_thread_local] = ACTIONS(2898), - [anon_sym_const] = ACTIONS(2898), - [anon_sym_volatile] = ACTIONS(2898), - [anon_sym_restrict] = ACTIONS(2898), - [anon_sym__Atomic] = ACTIONS(2898), - [anon_sym_mutable] = ACTIONS(2898), - [anon_sym_constexpr] = ACTIONS(2898), - [anon_sym_signed] = ACTIONS(2898), - [anon_sym_unsigned] = ACTIONS(2898), - [anon_sym_long] = ACTIONS(2898), - [anon_sym_short] = ACTIONS(2898), - [sym_primitive_type] = ACTIONS(2898), - [anon_sym_enum] = ACTIONS(2898), - [anon_sym_class] = ACTIONS(2898), - [anon_sym_struct] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2898), - [anon_sym_virtual] = ACTIONS(2898), - [anon_sym_explicit] = ACTIONS(2898), - [anon_sym_public] = ACTIONS(2898), - [anon_sym_private] = ACTIONS(2898), - [anon_sym_protected] = ACTIONS(2898), - [sym_auto] = ACTIONS(2898), - [anon_sym_typename] = ACTIONS(2898), - [anon_sym_template] = ACTIONS(2898), - [anon_sym_operator] = ACTIONS(2898), - [anon_sym_friend] = ACTIONS(2898), - [anon_sym_using] = ACTIONS(2898), - [anon_sym_static_assert] = ACTIONS(2898), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2898), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2898), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2898), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2898), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2898), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2898), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2898), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2898), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2898), - [anon_sym_MOZ_COLD] = ACTIONS(2898), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2898), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2898), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2898), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2898), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2898), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2898), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2898), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2898), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2898), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2898), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2898), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2898), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2898), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2898), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2898), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2898), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2898), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2898), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2898), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2898), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_NONNULL] = ACTIONS(2898), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2898), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2898), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2898), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2898), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2898), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_NORETURN] = ACTIONS(2898), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2898), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2898), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2898), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2898), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2898), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2898), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2898), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2898), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2898), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2898), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2898), - [anon_sym_MOZ_RAII] = ACTIONS(2898), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2898), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2898), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2898), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2898), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2898), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2898), - }, - [959] = { - [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_def_token1] = ACTIONS(1529), - [anon_sym_COMMA] = ACTIONS(1613), - [aux_sym_preproc_if_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), - [sym_preproc_directive] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym___attribute__] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1531), - [anon_sym___declspec] = ACTIONS(1529), - [anon_sym___based] = ACTIONS(1529), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [anon_sym_thread_local] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym__Atomic] = ACTIONS(1529), - [anon_sym_mutable] = ACTIONS(1529), - [anon_sym_constexpr] = ACTIONS(1529), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_class] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1529), - [anon_sym_virtual] = ACTIONS(1529), - [anon_sym_explicit] = ACTIONS(1529), - [anon_sym_public] = ACTIONS(1529), - [anon_sym_private] = ACTIONS(1529), - [anon_sym_protected] = ACTIONS(1529), - [sym_auto] = ACTIONS(1529), - [anon_sym_typename] = ACTIONS(1529), - [anon_sym_template] = ACTIONS(1529), - [anon_sym_operator] = ACTIONS(1529), - [anon_sym_friend] = ACTIONS(1529), - [anon_sym_using] = ACTIONS(1529), - [anon_sym_static_assert] = ACTIONS(1529), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1529), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1529), - [anon_sym_MOZ_COLD] = ACTIONS(1529), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1529), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1529), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1529), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1529), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1529), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1529), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1529), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1529), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1529), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1529), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1529), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1529), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_RAII] = ACTIONS(1529), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1529), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1529), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1529), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1529), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1529), - }, - [960] = { - [sym_attribute_declaration] = STATE(945), - [sym_compound_statement] = STATE(495), - [sym_attributed_statement] = STATE(495), - [sym_labeled_statement] = STATE(495), - [sym_expression_statement] = STATE(495), - [sym_if_statement] = STATE(495), - [sym_switch_statement] = STATE(495), - [sym_case_statement] = STATE(495), - [sym_while_statement] = STATE(495), - [sym_do_statement] = STATE(495), - [sym_for_statement] = STATE(495), - [sym_return_statement] = STATE(495), - [sym_break_statement] = STATE(495), - [sym_continue_statement] = STATE(495), - [sym_goto_statement] = STATE(495), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(495), - [sym_co_return_statement] = STATE(495), - [sym_co_yield_statement] = STATE(495), - [sym_throw_statement] = STATE(495), - [sym_try_statement] = STATE(495), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [961] = { - [sym_attribute_declaration] = STATE(885), - [sym_compound_statement] = STATE(713), - [sym_attributed_statement] = STATE(713), - [sym_labeled_statement] = STATE(713), - [sym_expression_statement] = STATE(713), - [sym_if_statement] = STATE(713), - [sym_switch_statement] = STATE(713), - [sym_case_statement] = STATE(713), - [sym_while_statement] = STATE(713), - [sym_do_statement] = STATE(713), - [sym_for_statement] = STATE(713), - [sym_return_statement] = STATE(713), - [sym_break_statement] = STATE(713), - [sym_continue_statement] = STATE(713), - [sym_goto_statement] = STATE(713), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(713), - [sym_co_return_statement] = STATE(713), - [sym_co_yield_statement] = STATE(713), - [sym_throw_statement] = STATE(713), - [sym_try_statement] = STATE(713), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [962] = { - [sym_attribute_declaration] = STATE(885), - [sym_compound_statement] = STATE(712), - [sym_attributed_statement] = STATE(712), - [sym_labeled_statement] = STATE(712), - [sym_expression_statement] = STATE(712), - [sym_if_statement] = STATE(712), - [sym_switch_statement] = STATE(712), - [sym_case_statement] = STATE(712), - [sym_while_statement] = STATE(712), - [sym_do_statement] = STATE(712), - [sym_for_statement] = STATE(712), - [sym_return_statement] = STATE(712), - [sym_break_statement] = STATE(712), - [sym_continue_statement] = STATE(712), - [sym_goto_statement] = STATE(712), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(712), - [sym_co_return_statement] = STATE(712), - [sym_co_yield_statement] = STATE(712), - [sym_throw_statement] = STATE(712), - [sym_try_statement] = STATE(712), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [963] = { - [sym_attribute_declaration] = STATE(1041), - [sym_compound_statement] = STATE(314), - [sym_attributed_statement] = STATE(314), - [sym_labeled_statement] = STATE(314), - [sym_expression_statement] = STATE(314), - [sym_if_statement] = STATE(314), - [sym_switch_statement] = STATE(314), - [sym_case_statement] = STATE(314), - [sym_while_statement] = STATE(314), - [sym_do_statement] = STATE(314), - [sym_for_statement] = STATE(314), - [sym_return_statement] = STATE(314), - [sym_break_statement] = STATE(314), - [sym_continue_statement] = STATE(314), - [sym_goto_statement] = STATE(314), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(314), - [sym_co_return_statement] = STATE(314), - [sym_co_yield_statement] = STATE(314), - [sym_throw_statement] = STATE(314), - [sym_try_statement] = STATE(314), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [964] = { - [sym_attribute_declaration] = STATE(885), - [sym_compound_statement] = STATE(711), - [sym_attributed_statement] = STATE(711), - [sym_labeled_statement] = STATE(711), - [sym_expression_statement] = STATE(711), - [sym_if_statement] = STATE(711), - [sym_switch_statement] = STATE(711), - [sym_case_statement] = STATE(711), - [sym_while_statement] = STATE(711), - [sym_do_statement] = STATE(711), - [sym_for_statement] = STATE(711), - [sym_return_statement] = STATE(711), - [sym_break_statement] = STATE(711), - [sym_continue_statement] = STATE(711), - [sym_goto_statement] = STATE(711), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(711), - [sym_co_return_statement] = STATE(711), - [sym_co_yield_statement] = STATE(711), - [sym_throw_statement] = STATE(711), - [sym_try_statement] = STATE(711), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [965] = { - [sym_attribute_declaration] = STATE(945), - [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__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [966] = { - [sym_identifier] = ACTIONS(2898), - [aux_sym_preproc_def_token1] = ACTIONS(2898), - [aux_sym_preproc_if_token1] = ACTIONS(2898), - [aux_sym_preproc_if_token2] = ACTIONS(2898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2898), - [aux_sym_preproc_else_token1] = ACTIONS(2898), - [aux_sym_preproc_elif_token1] = ACTIONS(2898), - [sym_preproc_directive] = ACTIONS(2898), - [anon_sym_LPAREN2] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_typedef] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(2898), - [anon_sym___attribute__] = ACTIONS(2898), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2900), - [anon_sym___declspec] = ACTIONS(2898), - [anon_sym___based] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(2898), - [anon_sym_register] = ACTIONS(2898), - [anon_sym_inline] = ACTIONS(2898), - [anon_sym_thread_local] = ACTIONS(2898), - [anon_sym_const] = ACTIONS(2898), - [anon_sym_volatile] = ACTIONS(2898), - [anon_sym_restrict] = ACTIONS(2898), - [anon_sym__Atomic] = ACTIONS(2898), - [anon_sym_mutable] = ACTIONS(2898), - [anon_sym_constexpr] = ACTIONS(2898), - [anon_sym_signed] = ACTIONS(2898), - [anon_sym_unsigned] = ACTIONS(2898), - [anon_sym_long] = ACTIONS(2898), - [anon_sym_short] = ACTIONS(2898), - [sym_primitive_type] = ACTIONS(2898), - [anon_sym_enum] = ACTIONS(2898), - [anon_sym_class] = ACTIONS(2898), - [anon_sym_struct] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2898), - [anon_sym_virtual] = ACTIONS(2898), - [anon_sym_explicit] = ACTIONS(2898), - [anon_sym_public] = ACTIONS(2898), - [anon_sym_private] = ACTIONS(2898), - [anon_sym_protected] = ACTIONS(2898), - [sym_auto] = ACTIONS(2898), - [anon_sym_typename] = ACTIONS(2898), - [anon_sym_template] = ACTIONS(2898), - [anon_sym_operator] = ACTIONS(2898), - [anon_sym_friend] = ACTIONS(2898), - [anon_sym_using] = ACTIONS(2898), - [anon_sym_static_assert] = ACTIONS(2898), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2898), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2898), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2898), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2898), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2898), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2898), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2898), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2898), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2898), - [anon_sym_MOZ_COLD] = ACTIONS(2898), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2898), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2898), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2898), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2898), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2898), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2898), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2898), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2898), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2898), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2898), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2898), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2898), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2898), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2898), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2898), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2898), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2898), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2898), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2898), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2898), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_NONNULL] = ACTIONS(2898), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2898), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2898), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2898), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2898), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2898), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_NORETURN] = ACTIONS(2898), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2898), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2898), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2898), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2898), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2898), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2898), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2898), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2898), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2898), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2898), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2898), - [anon_sym_MOZ_RAII] = ACTIONS(2898), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2898), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2898), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2898), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2898), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2898), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2898), - }, - [967] = { - [sym_attribute_declaration] = STATE(1041), - [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__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [968] = { - [sym_attribute_declaration] = STATE(885), - [sym_compound_statement] = STATE(709), - [sym_attributed_statement] = STATE(709), - [sym_labeled_statement] = STATE(709), - [sym_expression_statement] = STATE(709), - [sym_if_statement] = STATE(709), - [sym_switch_statement] = STATE(709), - [sym_case_statement] = STATE(709), - [sym_while_statement] = STATE(709), - [sym_do_statement] = STATE(709), - [sym_for_statement] = STATE(709), - [sym_return_statement] = STATE(709), - [sym_break_statement] = STATE(709), - [sym_continue_statement] = STATE(709), - [sym_goto_statement] = STATE(709), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(709), - [sym_co_return_statement] = STATE(709), - [sym_co_yield_statement] = STATE(709), - [sym_throw_statement] = STATE(709), - [sym_try_statement] = STATE(709), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [969] = { - [sym_attribute_declaration] = STATE(885), - [sym_compound_statement] = STATE(707), - [sym_attributed_statement] = STATE(707), - [sym_labeled_statement] = STATE(707), - [sym_expression_statement] = STATE(707), - [sym_if_statement] = STATE(707), - [sym_switch_statement] = STATE(707), - [sym_case_statement] = STATE(707), - [sym_while_statement] = STATE(707), - [sym_do_statement] = STATE(707), - [sym_for_statement] = STATE(707), - [sym_return_statement] = STATE(707), - [sym_break_statement] = STATE(707), - [sym_continue_statement] = STATE(707), - [sym_goto_statement] = STATE(707), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(707), - [sym_co_return_statement] = STATE(707), - [sym_co_yield_statement] = STATE(707), - [sym_throw_statement] = STATE(707), - [sym_try_statement] = STATE(707), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [970] = { - [sym_identifier] = ACTIONS(2902), - [aux_sym_preproc_def_token1] = ACTIONS(2902), - [aux_sym_preproc_if_token1] = ACTIONS(2902), - [aux_sym_preproc_if_token2] = ACTIONS(2902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2902), - [aux_sym_preproc_else_token1] = ACTIONS(2902), - [aux_sym_preproc_elif_token1] = ACTIONS(2902), - [sym_preproc_directive] = ACTIONS(2902), - [anon_sym_LPAREN2] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_STAR] = ACTIONS(2904), - [anon_sym_AMP_AMP] = ACTIONS(2904), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_typedef] = ACTIONS(2902), - [anon_sym_extern] = ACTIONS(2902), - [anon_sym___attribute__] = ACTIONS(2902), - [anon_sym_COLON_COLON] = ACTIONS(2904), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2904), - [anon_sym___declspec] = ACTIONS(2902), - [anon_sym___based] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2902), - [anon_sym_static] = ACTIONS(2902), - [anon_sym_register] = ACTIONS(2902), - [anon_sym_inline] = ACTIONS(2902), - [anon_sym_thread_local] = ACTIONS(2902), - [anon_sym_const] = ACTIONS(2902), - [anon_sym_volatile] = ACTIONS(2902), - [anon_sym_restrict] = ACTIONS(2902), - [anon_sym__Atomic] = ACTIONS(2902), - [anon_sym_mutable] = ACTIONS(2902), - [anon_sym_constexpr] = ACTIONS(2902), - [anon_sym_signed] = ACTIONS(2902), - [anon_sym_unsigned] = ACTIONS(2902), - [anon_sym_long] = ACTIONS(2902), - [anon_sym_short] = ACTIONS(2902), - [sym_primitive_type] = ACTIONS(2902), - [anon_sym_enum] = ACTIONS(2902), - [anon_sym_class] = ACTIONS(2902), - [anon_sym_struct] = ACTIONS(2902), - [anon_sym_union] = ACTIONS(2902), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2902), - [anon_sym_virtual] = ACTIONS(2902), - [anon_sym_explicit] = ACTIONS(2902), - [anon_sym_public] = ACTIONS(2902), - [anon_sym_private] = ACTIONS(2902), - [anon_sym_protected] = ACTIONS(2902), - [sym_auto] = ACTIONS(2902), - [anon_sym_typename] = ACTIONS(2902), - [anon_sym_template] = ACTIONS(2902), - [anon_sym_operator] = ACTIONS(2902), - [anon_sym_friend] = ACTIONS(2902), - [anon_sym_using] = ACTIONS(2902), - [anon_sym_static_assert] = ACTIONS(2902), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2902), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2902), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2902), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2902), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2902), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2902), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2902), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2902), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2902), - [anon_sym_MOZ_COLD] = ACTIONS(2902), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2902), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2902), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2902), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2902), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2902), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2902), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2902), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2902), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2902), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2902), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2902), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2902), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2902), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2902), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2902), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2902), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2902), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2902), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2902), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2902), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_NONNULL] = ACTIONS(2902), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2902), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2902), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2902), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2902), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2902), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_NORETURN] = ACTIONS(2902), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2902), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2902), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2902), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2902), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2902), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2902), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2902), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2902), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2902), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2902), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2902), - [anon_sym_MOZ_RAII] = ACTIONS(2902), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2902), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2902), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2902), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2902), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2902), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2902), - }, - [971] = { - [sym_identifier] = ACTIONS(2906), - [aux_sym_preproc_def_token1] = ACTIONS(2906), - [aux_sym_preproc_if_token1] = ACTIONS(2906), - [aux_sym_preproc_if_token2] = ACTIONS(2906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2906), - [aux_sym_preproc_else_token1] = ACTIONS(2906), - [aux_sym_preproc_elif_token1] = ACTIONS(2906), - [sym_preproc_directive] = ACTIONS(2906), - [anon_sym_LPAREN2] = ACTIONS(2908), - [anon_sym_TILDE] = ACTIONS(2908), - [anon_sym_STAR] = ACTIONS(2908), - [anon_sym_AMP_AMP] = ACTIONS(2908), - [anon_sym_AMP] = ACTIONS(2906), - [anon_sym_typedef] = ACTIONS(2906), - [anon_sym_extern] = ACTIONS(2906), - [anon_sym___attribute__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2908), - [anon_sym___declspec] = ACTIONS(2906), - [anon_sym___based] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_static] = ACTIONS(2906), - [anon_sym_register] = ACTIONS(2906), - [anon_sym_inline] = ACTIONS(2906), - [anon_sym_thread_local] = ACTIONS(2906), - [anon_sym_const] = ACTIONS(2906), - [anon_sym_volatile] = ACTIONS(2906), - [anon_sym_restrict] = ACTIONS(2906), - [anon_sym__Atomic] = ACTIONS(2906), - [anon_sym_mutable] = ACTIONS(2906), - [anon_sym_constexpr] = ACTIONS(2906), - [anon_sym_signed] = ACTIONS(2906), - [anon_sym_unsigned] = ACTIONS(2906), - [anon_sym_long] = ACTIONS(2906), - [anon_sym_short] = ACTIONS(2906), - [sym_primitive_type] = ACTIONS(2906), - [anon_sym_enum] = ACTIONS(2906), - [anon_sym_class] = ACTIONS(2906), - [anon_sym_struct] = ACTIONS(2906), - [anon_sym_union] = ACTIONS(2906), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2906), - [anon_sym_virtual] = ACTIONS(2906), - [anon_sym_explicit] = ACTIONS(2906), - [anon_sym_public] = ACTIONS(2906), - [anon_sym_private] = ACTIONS(2906), - [anon_sym_protected] = ACTIONS(2906), - [sym_auto] = ACTIONS(2906), - [anon_sym_typename] = ACTIONS(2906), - [anon_sym_template] = ACTIONS(2906), - [anon_sym_operator] = ACTIONS(2906), - [anon_sym_friend] = ACTIONS(2906), - [anon_sym_using] = ACTIONS(2906), - [anon_sym_static_assert] = ACTIONS(2906), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2906), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2906), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2906), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2906), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2906), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2906), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2906), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2906), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2906), - [anon_sym_MOZ_COLD] = ACTIONS(2906), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2906), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2906), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2906), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2906), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2906), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2906), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2906), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2906), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2906), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2906), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2906), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2906), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2906), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2906), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2906), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2906), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2906), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2906), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2906), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2906), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_NONNULL] = ACTIONS(2906), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2906), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2906), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2906), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2906), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2906), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_NORETURN] = ACTIONS(2906), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2906), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2906), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2906), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2906), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2906), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2906), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2906), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2906), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2906), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2906), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2906), - [anon_sym_MOZ_RAII] = ACTIONS(2906), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2906), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2906), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2906), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2906), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2906), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2906), - }, - [972] = { - [sym_identifier] = ACTIONS(2910), - [aux_sym_preproc_def_token1] = ACTIONS(2910), - [aux_sym_preproc_if_token1] = ACTIONS(2910), - [aux_sym_preproc_if_token2] = ACTIONS(2910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2910), - [aux_sym_preproc_else_token1] = ACTIONS(2910), - [aux_sym_preproc_elif_token1] = ACTIONS(2910), - [sym_preproc_directive] = ACTIONS(2910), - [anon_sym_LPAREN2] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_typedef] = ACTIONS(2910), - [anon_sym_extern] = ACTIONS(2910), - [anon_sym___attribute__] = ACTIONS(2910), - [anon_sym_COLON_COLON] = ACTIONS(2912), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2912), - [anon_sym___declspec] = ACTIONS(2910), - [anon_sym___based] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_static] = ACTIONS(2910), - [anon_sym_register] = ACTIONS(2910), - [anon_sym_inline] = ACTIONS(2910), - [anon_sym_thread_local] = ACTIONS(2910), - [anon_sym_const] = ACTIONS(2910), - [anon_sym_volatile] = ACTIONS(2910), - [anon_sym_restrict] = ACTIONS(2910), - [anon_sym__Atomic] = ACTIONS(2910), - [anon_sym_mutable] = ACTIONS(2910), - [anon_sym_constexpr] = ACTIONS(2910), - [anon_sym_signed] = ACTIONS(2910), - [anon_sym_unsigned] = ACTIONS(2910), - [anon_sym_long] = ACTIONS(2910), - [anon_sym_short] = ACTIONS(2910), - [sym_primitive_type] = ACTIONS(2910), - [anon_sym_enum] = ACTIONS(2910), - [anon_sym_class] = ACTIONS(2910), - [anon_sym_struct] = ACTIONS(2910), - [anon_sym_union] = ACTIONS(2910), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2910), - [anon_sym_virtual] = ACTIONS(2910), - [anon_sym_explicit] = ACTIONS(2910), - [anon_sym_public] = ACTIONS(2910), - [anon_sym_private] = ACTIONS(2910), - [anon_sym_protected] = ACTIONS(2910), - [sym_auto] = ACTIONS(2910), - [anon_sym_typename] = ACTIONS(2910), - [anon_sym_template] = ACTIONS(2910), - [anon_sym_operator] = ACTIONS(2910), - [anon_sym_friend] = ACTIONS(2910), - [anon_sym_using] = ACTIONS(2910), - [anon_sym_static_assert] = ACTIONS(2910), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2910), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2910), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2910), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2910), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2910), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2910), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2910), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2910), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2910), - [anon_sym_MOZ_COLD] = ACTIONS(2910), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2910), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2910), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2910), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2910), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2910), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2910), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2910), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2910), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2910), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2910), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2910), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2910), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2910), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2910), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2910), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2910), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2910), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2910), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2910), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2910), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_NONNULL] = ACTIONS(2910), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2910), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2910), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2910), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2910), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2910), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_NORETURN] = ACTIONS(2910), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2910), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2910), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2910), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2910), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2910), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2910), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2910), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2910), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2910), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2910), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2910), - [anon_sym_MOZ_RAII] = ACTIONS(2910), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2910), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2910), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2910), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2910), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2910), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2910), - }, - [973] = { - [sym_attribute_declaration] = STATE(1046), - [sym_compound_statement] = STATE(405), - [sym_attributed_statement] = STATE(405), - [sym_labeled_statement] = STATE(405), - [sym_expression_statement] = STATE(405), - [sym_if_statement] = STATE(405), - [sym_switch_statement] = STATE(405), - [sym_case_statement] = STATE(405), - [sym_while_statement] = STATE(405), - [sym_do_statement] = STATE(405), - [sym_for_statement] = STATE(405), - [sym_return_statement] = STATE(405), - [sym_break_statement] = STATE(405), - [sym_continue_statement] = STATE(405), - [sym_goto_statement] = STATE(405), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(405), - [sym_co_return_statement] = STATE(405), - [sym_co_yield_statement] = STATE(405), - [sym_throw_statement] = STATE(405), - [sym_try_statement] = STATE(405), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [974] = { - [sym_attribute_declaration] = STATE(885), - [sym_compound_statement] = STATE(706), - [sym_attributed_statement] = STATE(706), - [sym_labeled_statement] = STATE(706), - [sym_expression_statement] = STATE(706), - [sym_if_statement] = STATE(706), - [sym_switch_statement] = STATE(706), - [sym_case_statement] = STATE(706), - [sym_while_statement] = STATE(706), - [sym_do_statement] = STATE(706), - [sym_for_statement] = STATE(706), - [sym_return_statement] = STATE(706), - [sym_break_statement] = STATE(706), - [sym_continue_statement] = STATE(706), - [sym_goto_statement] = STATE(706), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(706), - [sym_co_return_statement] = STATE(706), - [sym_co_yield_statement] = STATE(706), - [sym_throw_statement] = STATE(706), - [sym_try_statement] = STATE(706), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [975] = { - [sym_identifier] = ACTIONS(1743), - [aux_sym_preproc_def_token1] = ACTIONS(1743), - [aux_sym_preproc_if_token1] = ACTIONS(1743), - [aux_sym_preproc_if_token2] = ACTIONS(1743), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1743), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1743), - [aux_sym_preproc_else_token1] = ACTIONS(1743), - [aux_sym_preproc_elif_token1] = ACTIONS(1743), - [sym_preproc_directive] = ACTIONS(1743), - [anon_sym_LPAREN2] = ACTIONS(1745), - [anon_sym_TILDE] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_AMP_AMP] = ACTIONS(1745), - [anon_sym_AMP] = ACTIONS(1743), - [anon_sym_typedef] = ACTIONS(1743), - [anon_sym_extern] = ACTIONS(1743), - [anon_sym___attribute__] = ACTIONS(1743), - [anon_sym_COLON_COLON] = ACTIONS(1745), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1745), - [anon_sym___declspec] = ACTIONS(1743), - [anon_sym___based] = ACTIONS(1743), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_static] = ACTIONS(1743), - [anon_sym_register] = ACTIONS(1743), - [anon_sym_inline] = ACTIONS(1743), - [anon_sym_thread_local] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_volatile] = ACTIONS(1743), - [anon_sym_restrict] = ACTIONS(1743), - [anon_sym__Atomic] = ACTIONS(1743), - [anon_sym_mutable] = ACTIONS(1743), - [anon_sym_constexpr] = ACTIONS(1743), - [anon_sym_signed] = ACTIONS(1743), - [anon_sym_unsigned] = ACTIONS(1743), - [anon_sym_long] = ACTIONS(1743), - [anon_sym_short] = ACTIONS(1743), - [sym_primitive_type] = ACTIONS(1743), - [anon_sym_enum] = ACTIONS(1743), - [anon_sym_class] = ACTIONS(1743), - [anon_sym_struct] = ACTIONS(1743), - [anon_sym_union] = ACTIONS(1743), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1743), - [anon_sym_virtual] = ACTIONS(1743), - [anon_sym_explicit] = ACTIONS(1743), - [anon_sym_public] = ACTIONS(1743), - [anon_sym_private] = ACTIONS(1743), - [anon_sym_protected] = ACTIONS(1743), - [sym_auto] = ACTIONS(1743), - [anon_sym_typename] = ACTIONS(1743), - [anon_sym_template] = ACTIONS(1743), - [anon_sym_operator] = ACTIONS(1743), - [anon_sym_friend] = ACTIONS(1743), - [anon_sym_using] = ACTIONS(1743), - [anon_sym_static_assert] = ACTIONS(1743), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1743), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1743), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1743), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1743), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1743), - [anon_sym_MOZ_COLD] = ACTIONS(1743), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1743), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1743), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1743), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1743), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1743), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1743), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1743), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1743), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1743), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1743), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1743), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1743), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1743), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_NONNULL] = ACTIONS(1743), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1743), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1743), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1743), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1743), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1743), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1743), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1743), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1743), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1743), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1743), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1743), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1743), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1743), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1743), - [anon_sym_MOZ_RAII] = ACTIONS(1743), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1743), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1743), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1743), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1743), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1743), - }, - [976] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(4499), - [sym_attributed_statement] = STATE(4499), - [sym_labeled_statement] = STATE(4499), - [sym_expression_statement] = STATE(4499), - [sym_if_statement] = STATE(4499), - [sym_switch_statement] = STATE(4499), - [sym_case_statement] = STATE(4499), - [sym_while_statement] = STATE(4499), - [sym_do_statement] = STATE(4499), - [sym_for_statement] = STATE(4499), - [sym_return_statement] = STATE(4499), - [sym_break_statement] = STATE(4499), - [sym_continue_statement] = STATE(4499), - [sym_goto_statement] = STATE(4499), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4499), - [sym_co_return_statement] = STATE(4499), - [sym_co_yield_statement] = STATE(4499), - [sym_throw_statement] = STATE(4499), - [sym_try_statement] = STATE(4499), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [977] = { - [sym_identifier] = ACTIONS(2914), - [aux_sym_preproc_def_token1] = ACTIONS(2914), - [aux_sym_preproc_if_token1] = ACTIONS(2914), - [aux_sym_preproc_if_token2] = ACTIONS(2914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2914), - [aux_sym_preproc_else_token1] = ACTIONS(2914), - [aux_sym_preproc_elif_token1] = ACTIONS(2914), - [sym_preproc_directive] = ACTIONS(2914), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_typedef] = ACTIONS(2914), - [anon_sym_extern] = ACTIONS(2914), - [anon_sym___attribute__] = ACTIONS(2914), - [anon_sym_COLON_COLON] = ACTIONS(2916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2916), - [anon_sym___declspec] = ACTIONS(2914), - [anon_sym___based] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2914), - [anon_sym_static] = ACTIONS(2914), - [anon_sym_register] = ACTIONS(2914), - [anon_sym_inline] = ACTIONS(2914), - [anon_sym_thread_local] = ACTIONS(2914), - [anon_sym_const] = ACTIONS(2914), - [anon_sym_volatile] = ACTIONS(2914), - [anon_sym_restrict] = ACTIONS(2914), - [anon_sym__Atomic] = ACTIONS(2914), - [anon_sym_mutable] = ACTIONS(2914), - [anon_sym_constexpr] = ACTIONS(2914), - [anon_sym_signed] = ACTIONS(2914), - [anon_sym_unsigned] = ACTIONS(2914), - [anon_sym_long] = ACTIONS(2914), - [anon_sym_short] = ACTIONS(2914), - [sym_primitive_type] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), - [anon_sym_class] = ACTIONS(2914), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_union] = ACTIONS(2914), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2914), - [anon_sym_virtual] = ACTIONS(2914), - [anon_sym_explicit] = ACTIONS(2914), - [anon_sym_public] = ACTIONS(2914), - [anon_sym_private] = ACTIONS(2914), - [anon_sym_protected] = ACTIONS(2914), - [sym_auto] = ACTIONS(2914), - [anon_sym_typename] = ACTIONS(2914), - [anon_sym_template] = ACTIONS(2914), - [anon_sym_operator] = ACTIONS(2914), - [anon_sym_friend] = ACTIONS(2914), - [anon_sym_using] = ACTIONS(2914), - [anon_sym_static_assert] = ACTIONS(2914), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2914), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2914), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2914), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2914), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2914), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2914), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2914), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2914), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2914), - [anon_sym_MOZ_COLD] = ACTIONS(2914), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2914), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2914), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2914), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2914), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2914), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2914), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2914), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2914), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2914), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2914), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2914), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2914), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2914), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2914), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2914), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2914), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2914), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2914), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2914), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2914), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_NONNULL] = ACTIONS(2914), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2914), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2914), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2914), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2914), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2914), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_NORETURN] = ACTIONS(2914), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2914), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2914), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2914), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2914), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2914), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2914), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2914), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2914), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2914), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2914), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2914), - [anon_sym_MOZ_RAII] = ACTIONS(2914), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2914), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2914), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2914), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2914), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2914), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2914), - }, - [978] = { - [sym_attribute_declaration] = STATE(885), - [sym_compound_statement] = STATE(705), - [sym_attributed_statement] = STATE(703), - [sym_labeled_statement] = STATE(702), - [sym_expression_statement] = STATE(701), - [sym_if_statement] = STATE(736), - [sym_switch_statement] = STATE(722), - [sym_case_statement] = STATE(724), - [sym_while_statement] = STATE(725), - [sym_do_statement] = STATE(726), - [sym_for_statement] = STATE(727), - [sym_return_statement] = STATE(728), - [sym_break_statement] = STATE(730), - [sym_continue_statement] = STATE(732), - [sym_goto_statement] = STATE(738), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(742), - [sym_co_return_statement] = STATE(699), - [sym_co_yield_statement] = STATE(743), - [sym_throw_statement] = STATE(744), - [sym_try_statement] = STATE(750), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [979] = { - [sym_identifier] = ACTIONS(1847), - [aux_sym_preproc_def_token1] = ACTIONS(1847), - [aux_sym_preproc_if_token1] = ACTIONS(1847), - [aux_sym_preproc_if_token2] = ACTIONS(1847), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), - [aux_sym_preproc_else_token1] = ACTIONS(1847), - [aux_sym_preproc_elif_token1] = ACTIONS(1847), - [sym_preproc_directive] = ACTIONS(1847), - [anon_sym_LPAREN2] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_AMP_AMP] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_typedef] = ACTIONS(1847), - [anon_sym_extern] = ACTIONS(1847), - [anon_sym___attribute__] = ACTIONS(1847), - [anon_sym_COLON_COLON] = ACTIONS(1849), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1849), - [anon_sym___declspec] = ACTIONS(1847), - [anon_sym___based] = ACTIONS(1847), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_register] = ACTIONS(1847), - [anon_sym_inline] = ACTIONS(1847), - [anon_sym_thread_local] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym_constexpr] = ACTIONS(1847), - [anon_sym_signed] = ACTIONS(1847), - [anon_sym_unsigned] = ACTIONS(1847), - [anon_sym_long] = ACTIONS(1847), - [anon_sym_short] = ACTIONS(1847), - [sym_primitive_type] = ACTIONS(1847), - [anon_sym_enum] = ACTIONS(1847), - [anon_sym_class] = ACTIONS(1847), - [anon_sym_struct] = ACTIONS(1847), - [anon_sym_union] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1847), - [anon_sym_virtual] = ACTIONS(1847), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_public] = ACTIONS(1847), - [anon_sym_private] = ACTIONS(1847), - [anon_sym_protected] = ACTIONS(1847), - [sym_auto] = ACTIONS(1847), - [anon_sym_typename] = ACTIONS(1847), - [anon_sym_template] = ACTIONS(1847), - [anon_sym_operator] = ACTIONS(1847), - [anon_sym_friend] = ACTIONS(1847), - [anon_sym_using] = ACTIONS(1847), - [anon_sym_static_assert] = ACTIONS(1847), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1847), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1847), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1847), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1847), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1847), - [anon_sym_MOZ_COLD] = ACTIONS(1847), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1847), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1847), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1847), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1847), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1847), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1847), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1847), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1847), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1847), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1847), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1847), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1847), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1847), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_NONNULL] = ACTIONS(1847), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1847), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1847), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1847), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1847), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1847), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1847), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1847), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1847), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1847), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1847), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1847), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1847), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1847), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1847), - [anon_sym_MOZ_RAII] = ACTIONS(1847), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1847), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1847), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1847), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1847), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1847), - }, - [980] = { - [sym_identifier] = ACTIONS(1843), - [aux_sym_preproc_def_token1] = ACTIONS(1843), - [aux_sym_preproc_if_token1] = ACTIONS(1843), - [aux_sym_preproc_if_token2] = ACTIONS(1843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1843), - [aux_sym_preproc_else_token1] = ACTIONS(1843), - [aux_sym_preproc_elif_token1] = ACTIONS(1843), - [sym_preproc_directive] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_typedef] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym___attribute__] = ACTIONS(1843), - [anon_sym_COLON_COLON] = ACTIONS(1845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1845), - [anon_sym___declspec] = ACTIONS(1843), - [anon_sym___based] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_static] = ACTIONS(1843), - [anon_sym_register] = ACTIONS(1843), - [anon_sym_inline] = ACTIONS(1843), - [anon_sym_thread_local] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym_mutable] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_signed] = ACTIONS(1843), - [anon_sym_unsigned] = ACTIONS(1843), - [anon_sym_long] = ACTIONS(1843), - [anon_sym_short] = ACTIONS(1843), - [sym_primitive_type] = ACTIONS(1843), - [anon_sym_enum] = ACTIONS(1843), - [anon_sym_class] = ACTIONS(1843), - [anon_sym_struct] = ACTIONS(1843), - [anon_sym_union] = ACTIONS(1843), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1843), - [anon_sym_virtual] = ACTIONS(1843), - [anon_sym_explicit] = ACTIONS(1843), - [anon_sym_public] = ACTIONS(1843), - [anon_sym_private] = ACTIONS(1843), - [anon_sym_protected] = ACTIONS(1843), - [sym_auto] = ACTIONS(1843), - [anon_sym_typename] = ACTIONS(1843), - [anon_sym_template] = ACTIONS(1843), - [anon_sym_operator] = ACTIONS(1843), - [anon_sym_friend] = ACTIONS(1843), - [anon_sym_using] = ACTIONS(1843), - [anon_sym_static_assert] = ACTIONS(1843), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1843), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1843), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1843), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1843), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1843), - [anon_sym_MOZ_COLD] = ACTIONS(1843), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1843), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1843), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1843), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1843), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1843), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1843), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1843), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1843), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1843), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1843), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1843), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1843), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1843), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_NONNULL] = ACTIONS(1843), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1843), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1843), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1843), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1843), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1843), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1843), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1843), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1843), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1843), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1843), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1843), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1843), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1843), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1843), - [anon_sym_MOZ_RAII] = ACTIONS(1843), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1843), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1843), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1843), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1843), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1843), - }, - [981] = { - [sym_identifier] = ACTIONS(1839), - [aux_sym_preproc_def_token1] = ACTIONS(1839), - [aux_sym_preproc_if_token1] = ACTIONS(1839), - [aux_sym_preproc_if_token2] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [aux_sym_preproc_else_token1] = ACTIONS(1839), - [aux_sym_preproc_elif_token1] = ACTIONS(1839), - [sym_preproc_directive] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(1841), - [anon_sym_TILDE] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_AMP_AMP] = ACTIONS(1841), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_typedef] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym___attribute__] = ACTIONS(1839), - [anon_sym_COLON_COLON] = ACTIONS(1841), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1841), - [anon_sym___declspec] = ACTIONS(1839), - [anon_sym___based] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_static] = ACTIONS(1839), - [anon_sym_register] = ACTIONS(1839), - [anon_sym_inline] = ACTIONS(1839), - [anon_sym_thread_local] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [anon_sym_volatile] = ACTIONS(1839), - [anon_sym_restrict] = ACTIONS(1839), - [anon_sym__Atomic] = ACTIONS(1839), - [anon_sym_mutable] = ACTIONS(1839), - [anon_sym_constexpr] = ACTIONS(1839), - [anon_sym_signed] = ACTIONS(1839), - [anon_sym_unsigned] = ACTIONS(1839), - [anon_sym_long] = ACTIONS(1839), - [anon_sym_short] = ACTIONS(1839), - [sym_primitive_type] = ACTIONS(1839), - [anon_sym_enum] = ACTIONS(1839), - [anon_sym_class] = ACTIONS(1839), - [anon_sym_struct] = ACTIONS(1839), - [anon_sym_union] = ACTIONS(1839), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1839), - [anon_sym_virtual] = ACTIONS(1839), - [anon_sym_explicit] = ACTIONS(1839), - [anon_sym_public] = ACTIONS(1839), - [anon_sym_private] = ACTIONS(1839), - [anon_sym_protected] = ACTIONS(1839), - [sym_auto] = ACTIONS(1839), - [anon_sym_typename] = ACTIONS(1839), - [anon_sym_template] = ACTIONS(1839), - [anon_sym_operator] = ACTIONS(1839), - [anon_sym_friend] = ACTIONS(1839), - [anon_sym_using] = ACTIONS(1839), - [anon_sym_static_assert] = ACTIONS(1839), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1839), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1839), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1839), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1839), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1839), - [anon_sym_MOZ_COLD] = ACTIONS(1839), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1839), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1839), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1839), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1839), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1839), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1839), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1839), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1839), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1839), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1839), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1839), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1839), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1839), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_NONNULL] = ACTIONS(1839), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1839), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1839), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1839), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1839), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1839), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1839), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1839), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1839), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1839), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1839), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1839), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1839), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1839), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1839), - [anon_sym_MOZ_RAII] = ACTIONS(1839), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1839), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1839), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1839), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1839), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1839), - }, - [982] = { - [sym_attribute_declaration] = STATE(982), - [sym_compound_statement] = STATE(4456), - [sym_attributed_statement] = STATE(4456), - [sym_labeled_statement] = STATE(4456), - [sym_expression_statement] = STATE(4456), - [sym_if_statement] = STATE(4456), - [sym_switch_statement] = STATE(4456), - [sym_case_statement] = STATE(4456), - [sym_while_statement] = STATE(4456), - [sym_do_statement] = STATE(4456), - [sym_for_statement] = STATE(4456), - [sym_return_statement] = STATE(4456), - [sym_break_statement] = STATE(4456), - [sym_continue_statement] = STATE(4456), - [sym_goto_statement] = STATE(4456), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4456), - [sym_co_return_statement] = STATE(4456), - [sym_co_yield_statement] = STATE(4456), - [sym_throw_statement] = STATE(4456), - [sym_try_statement] = STATE(4456), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(982), - [sym_identifier] = ACTIONS(2918), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_BANG] = ACTIONS(2642), - [anon_sym_TILDE] = ACTIONS(2642), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_PLUS] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_AMP] = ACTIONS(2648), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym_COLON_COLON] = ACTIONS(2654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2663), - [sym_primitive_type] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2927), - [anon_sym_switch] = ACTIONS(2930), - [anon_sym_case] = ACTIONS(2831), - [anon_sym_default] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2933), - [anon_sym_do] = ACTIONS(2936), - [anon_sym_for] = ACTIONS(2939), - [anon_sym_return] = ACTIONS(2942), - [anon_sym_break] = ACTIONS(2945), - [anon_sym_continue] = ACTIONS(2948), - [anon_sym_goto] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2702), - [anon_sym_PLUS_PLUS] = ACTIONS(2702), - [anon_sym_sizeof] = ACTIONS(2705), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2711), - [anon_sym_u_SQUOTE] = ACTIONS(2711), - [anon_sym_U_SQUOTE] = ACTIONS(2711), - [anon_sym_u8_SQUOTE] = ACTIONS(2711), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_L_DQUOTE] = ACTIONS(2714), - [anon_sym_u_DQUOTE] = ACTIONS(2714), - [anon_sym_U_DQUOTE] = ACTIONS(2714), - [anon_sym_u8_DQUOTE] = ACTIONS(2714), - [anon_sym_DQUOTE] = ACTIONS(2714), - [sym_true] = ACTIONS(2717), - [sym_false] = ACTIONS(2717), - [sym_null] = ACTIONS(2717), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(2720), - [anon_sym_delete] = ACTIONS(2723), - [anon_sym_throw] = ACTIONS(2954), - [anon_sym_co_return] = ACTIONS(2957), - [anon_sym_co_yield] = ACTIONS(2960), - [anon_sym_try] = ACTIONS(2963), - [anon_sym_co_await] = ACTIONS(2738), - [anon_sym_new] = ACTIONS(2741), - [sym_this] = ACTIONS(2717), - [sym_nullptr] = ACTIONS(2717), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_FORWARD] = ACTIONS(2744), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2744), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_PS_GET] = ACTIONS(2744), - [anon_sym_PS_GET_AND_SET] = ACTIONS(2744), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2744), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2744), - [sym_raw_string_literal] = ACTIONS(2747), - }, - [983] = { - [sym_attribute_declaration] = STATE(945), - [sym_compound_statement] = STATE(377), - [sym_attributed_statement] = STATE(377), - [sym_labeled_statement] = STATE(377), - [sym_expression_statement] = STATE(377), - [sym_if_statement] = STATE(377), - [sym_switch_statement] = STATE(377), - [sym_case_statement] = STATE(377), - [sym_while_statement] = STATE(377), - [sym_do_statement] = STATE(377), - [sym_for_statement] = STATE(377), - [sym_return_statement] = STATE(377), - [sym_break_statement] = STATE(377), - [sym_continue_statement] = STATE(377), - [sym_goto_statement] = STATE(377), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(377), - [sym_co_return_statement] = STATE(377), - [sym_co_yield_statement] = STATE(377), - [sym_throw_statement] = STATE(377), - [sym_try_statement] = STATE(377), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [984] = { - [sym_identifier] = ACTIONS(1835), - [aux_sym_preproc_def_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token2] = ACTIONS(1835), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1835), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1835), - [aux_sym_preproc_else_token1] = ACTIONS(1835), - [aux_sym_preproc_elif_token1] = ACTIONS(1835), - [sym_preproc_directive] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_TILDE] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1837), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_typedef] = ACTIONS(1835), - [anon_sym_extern] = ACTIONS(1835), - [anon_sym___attribute__] = ACTIONS(1835), - [anon_sym_COLON_COLON] = ACTIONS(1837), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1837), - [anon_sym___declspec] = ACTIONS(1835), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_static] = ACTIONS(1835), - [anon_sym_register] = ACTIONS(1835), - [anon_sym_inline] = ACTIONS(1835), - [anon_sym_thread_local] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym_mutable] = ACTIONS(1835), - [anon_sym_constexpr] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(1835), - [anon_sym_unsigned] = ACTIONS(1835), - [anon_sym_long] = ACTIONS(1835), - [anon_sym_short] = ACTIONS(1835), - [sym_primitive_type] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_struct] = ACTIONS(1835), - [anon_sym_union] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1835), - [anon_sym_virtual] = ACTIONS(1835), - [anon_sym_explicit] = ACTIONS(1835), - [anon_sym_public] = ACTIONS(1835), - [anon_sym_private] = ACTIONS(1835), - [anon_sym_protected] = ACTIONS(1835), - [sym_auto] = ACTIONS(1835), - [anon_sym_typename] = ACTIONS(1835), - [anon_sym_template] = ACTIONS(1835), - [anon_sym_operator] = ACTIONS(1835), - [anon_sym_friend] = ACTIONS(1835), - [anon_sym_using] = ACTIONS(1835), - [anon_sym_static_assert] = ACTIONS(1835), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1835), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1835), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1835), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1835), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1835), - [anon_sym_MOZ_COLD] = ACTIONS(1835), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1835), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1835), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1835), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1835), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1835), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1835), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1835), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1835), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1835), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1835), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1835), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1835), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1835), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_NONNULL] = ACTIONS(1835), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1835), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1835), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1835), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1835), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1835), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1835), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1835), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1835), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1835), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1835), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1835), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1835), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1835), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1835), - [anon_sym_MOZ_RAII] = ACTIONS(1835), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1835), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1835), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1835), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1835), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1835), - }, - [985] = { - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1831), - [aux_sym_preproc_if_token1] = ACTIONS(1831), - [aux_sym_preproc_if_token2] = ACTIONS(1831), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1831), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1831), - [aux_sym_preproc_else_token1] = ACTIONS(1831), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [sym_preproc_directive] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_AMP_AMP] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_typedef] = ACTIONS(1831), - [anon_sym_extern] = ACTIONS(1831), - [anon_sym___attribute__] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1833), - [anon_sym___declspec] = ACTIONS(1831), - [anon_sym___based] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_static] = ACTIONS(1831), - [anon_sym_register] = ACTIONS(1831), - [anon_sym_inline] = ACTIONS(1831), - [anon_sym_thread_local] = ACTIONS(1831), - [anon_sym_const] = ACTIONS(1831), - [anon_sym_volatile] = ACTIONS(1831), - [anon_sym_restrict] = ACTIONS(1831), - [anon_sym__Atomic] = ACTIONS(1831), - [anon_sym_mutable] = ACTIONS(1831), - [anon_sym_constexpr] = ACTIONS(1831), - [anon_sym_signed] = ACTIONS(1831), - [anon_sym_unsigned] = ACTIONS(1831), - [anon_sym_long] = ACTIONS(1831), - [anon_sym_short] = ACTIONS(1831), - [sym_primitive_type] = ACTIONS(1831), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_class] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(1831), - [anon_sym_union] = ACTIONS(1831), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1831), - [anon_sym_virtual] = ACTIONS(1831), - [anon_sym_explicit] = ACTIONS(1831), - [anon_sym_public] = ACTIONS(1831), - [anon_sym_private] = ACTIONS(1831), - [anon_sym_protected] = ACTIONS(1831), - [sym_auto] = ACTIONS(1831), - [anon_sym_typename] = ACTIONS(1831), - [anon_sym_template] = ACTIONS(1831), - [anon_sym_operator] = ACTIONS(1831), - [anon_sym_friend] = ACTIONS(1831), - [anon_sym_using] = ACTIONS(1831), - [anon_sym_static_assert] = ACTIONS(1831), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1831), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1831), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1831), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1831), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1831), - [anon_sym_MOZ_COLD] = ACTIONS(1831), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1831), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1831), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1831), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1831), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1831), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1831), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1831), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1831), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1831), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1831), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1831), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1831), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1831), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_NONNULL] = ACTIONS(1831), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1831), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1831), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1831), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1831), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1831), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1831), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1831), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1831), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1831), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1831), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1831), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1831), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1831), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1831), - [anon_sym_MOZ_RAII] = ACTIONS(1831), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1831), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1831), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1831), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1831), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1831), - }, - [986] = { - [sym_identifier] = ACTIONS(2966), - [aux_sym_preproc_def_token1] = ACTIONS(2966), - [aux_sym_preproc_if_token1] = ACTIONS(2966), - [aux_sym_preproc_if_token2] = ACTIONS(2966), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2966), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2966), - [aux_sym_preproc_else_token1] = ACTIONS(2966), - [aux_sym_preproc_elif_token1] = ACTIONS(2966), - [sym_preproc_directive] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_typedef] = ACTIONS(2966), - [anon_sym_extern] = ACTIONS(2966), - [anon_sym___attribute__] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2968), - [anon_sym___declspec] = ACTIONS(2966), - [anon_sym___based] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_static] = ACTIONS(2966), - [anon_sym_register] = ACTIONS(2966), - [anon_sym_inline] = ACTIONS(2966), - [anon_sym_thread_local] = ACTIONS(2966), - [anon_sym_const] = ACTIONS(2966), - [anon_sym_volatile] = ACTIONS(2966), - [anon_sym_restrict] = ACTIONS(2966), - [anon_sym__Atomic] = ACTIONS(2966), - [anon_sym_mutable] = ACTIONS(2966), - [anon_sym_constexpr] = ACTIONS(2966), - [anon_sym_signed] = ACTIONS(2966), - [anon_sym_unsigned] = ACTIONS(2966), - [anon_sym_long] = ACTIONS(2966), - [anon_sym_short] = ACTIONS(2966), - [sym_primitive_type] = ACTIONS(2966), - [anon_sym_enum] = ACTIONS(2966), - [anon_sym_class] = ACTIONS(2966), - [anon_sym_struct] = ACTIONS(2966), - [anon_sym_union] = ACTIONS(2966), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2966), - [anon_sym_virtual] = ACTIONS(2966), - [anon_sym_explicit] = ACTIONS(2966), - [anon_sym_public] = ACTIONS(2966), - [anon_sym_private] = ACTIONS(2966), - [anon_sym_protected] = ACTIONS(2966), - [sym_auto] = ACTIONS(2966), - [anon_sym_typename] = ACTIONS(2966), - [anon_sym_template] = ACTIONS(2966), - [anon_sym_operator] = ACTIONS(2966), - [anon_sym_friend] = ACTIONS(2966), - [anon_sym_using] = ACTIONS(2966), - [anon_sym_static_assert] = ACTIONS(2966), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2966), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2966), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2966), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2966), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2966), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2966), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2966), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2966), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2966), - [anon_sym_MOZ_COLD] = ACTIONS(2966), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2966), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2966), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2966), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2966), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2966), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2966), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2966), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2966), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2966), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2966), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2966), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2966), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2966), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2966), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2966), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2966), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2966), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2966), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2966), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2966), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_NONNULL] = ACTIONS(2966), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2966), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2966), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2966), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2966), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2966), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_NORETURN] = ACTIONS(2966), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2966), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2966), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2966), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2966), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2966), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2966), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2966), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2966), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2966), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2966), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2966), - [anon_sym_MOZ_RAII] = ACTIONS(2966), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2966), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2966), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2966), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2966), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2966), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2966), - }, - [987] = { - [sym_identifier] = ACTIONS(2970), - [aux_sym_preproc_def_token1] = ACTIONS(2970), - [aux_sym_preproc_if_token1] = ACTIONS(2970), - [aux_sym_preproc_if_token2] = ACTIONS(2970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2970), - [aux_sym_preproc_else_token1] = ACTIONS(2970), - [aux_sym_preproc_elif_token1] = ACTIONS(2970), - [sym_preproc_directive] = ACTIONS(2970), - [anon_sym_LPAREN2] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2972), - [anon_sym_STAR] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_typedef] = ACTIONS(2970), - [anon_sym_extern] = ACTIONS(2970), - [anon_sym___attribute__] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2972), - [anon_sym___declspec] = ACTIONS(2970), - [anon_sym___based] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_static] = ACTIONS(2970), - [anon_sym_register] = ACTIONS(2970), - [anon_sym_inline] = ACTIONS(2970), - [anon_sym_thread_local] = ACTIONS(2970), - [anon_sym_const] = ACTIONS(2970), - [anon_sym_volatile] = ACTIONS(2970), - [anon_sym_restrict] = ACTIONS(2970), - [anon_sym__Atomic] = ACTIONS(2970), - [anon_sym_mutable] = ACTIONS(2970), - [anon_sym_constexpr] = ACTIONS(2970), - [anon_sym_signed] = ACTIONS(2970), - [anon_sym_unsigned] = ACTIONS(2970), - [anon_sym_long] = ACTIONS(2970), - [anon_sym_short] = ACTIONS(2970), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_enum] = ACTIONS(2970), - [anon_sym_class] = ACTIONS(2970), - [anon_sym_struct] = ACTIONS(2970), - [anon_sym_union] = ACTIONS(2970), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2970), - [anon_sym_virtual] = ACTIONS(2970), - [anon_sym_explicit] = ACTIONS(2970), - [anon_sym_public] = ACTIONS(2970), - [anon_sym_private] = ACTIONS(2970), - [anon_sym_protected] = ACTIONS(2970), - [sym_auto] = ACTIONS(2970), - [anon_sym_typename] = ACTIONS(2970), - [anon_sym_template] = ACTIONS(2970), - [anon_sym_operator] = ACTIONS(2970), - [anon_sym_friend] = ACTIONS(2970), - [anon_sym_using] = ACTIONS(2970), - [anon_sym_static_assert] = ACTIONS(2970), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2970), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2970), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2970), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2970), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2970), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2970), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2970), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2970), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2970), - [anon_sym_MOZ_COLD] = ACTIONS(2970), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2970), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2970), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2970), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2970), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2970), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2970), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2970), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2970), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2970), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2970), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2970), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2970), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2970), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2970), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2970), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2970), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2970), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2970), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2970), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2970), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_NONNULL] = ACTIONS(2970), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2970), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2970), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2970), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2970), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2970), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_NORETURN] = ACTIONS(2970), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2970), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2970), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2970), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2970), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2970), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2970), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2970), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2970), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2970), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2970), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2970), - [anon_sym_MOZ_RAII] = ACTIONS(2970), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2970), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2970), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2970), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2970), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2970), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2970), - }, - [988] = { - [sym_identifier] = ACTIONS(2970), - [aux_sym_preproc_def_token1] = ACTIONS(2970), - [aux_sym_preproc_if_token1] = ACTIONS(2970), - [aux_sym_preproc_if_token2] = ACTIONS(2970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2970), - [aux_sym_preproc_else_token1] = ACTIONS(2970), - [aux_sym_preproc_elif_token1] = ACTIONS(2970), - [sym_preproc_directive] = ACTIONS(2970), - [anon_sym_LPAREN2] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2972), - [anon_sym_STAR] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_typedef] = ACTIONS(2970), - [anon_sym_extern] = ACTIONS(2970), - [anon_sym___attribute__] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2972), - [anon_sym___declspec] = ACTIONS(2970), - [anon_sym___based] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_static] = ACTIONS(2970), - [anon_sym_register] = ACTIONS(2970), - [anon_sym_inline] = ACTIONS(2970), - [anon_sym_thread_local] = ACTIONS(2970), - [anon_sym_const] = ACTIONS(2970), - [anon_sym_volatile] = ACTIONS(2970), - [anon_sym_restrict] = ACTIONS(2970), - [anon_sym__Atomic] = ACTIONS(2970), - [anon_sym_mutable] = ACTIONS(2970), - [anon_sym_constexpr] = ACTIONS(2970), - [anon_sym_signed] = ACTIONS(2970), - [anon_sym_unsigned] = ACTIONS(2970), - [anon_sym_long] = ACTIONS(2970), - [anon_sym_short] = ACTIONS(2970), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_enum] = ACTIONS(2970), - [anon_sym_class] = ACTIONS(2970), - [anon_sym_struct] = ACTIONS(2970), - [anon_sym_union] = ACTIONS(2970), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2970), - [anon_sym_virtual] = ACTIONS(2970), - [anon_sym_explicit] = ACTIONS(2970), - [anon_sym_public] = ACTIONS(2970), - [anon_sym_private] = ACTIONS(2970), - [anon_sym_protected] = ACTIONS(2970), - [sym_auto] = ACTIONS(2970), - [anon_sym_typename] = ACTIONS(2970), - [anon_sym_template] = ACTIONS(2970), - [anon_sym_operator] = ACTIONS(2970), - [anon_sym_friend] = ACTIONS(2970), - [anon_sym_using] = ACTIONS(2970), - [anon_sym_static_assert] = ACTIONS(2970), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2970), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2970), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2970), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2970), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2970), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2970), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2970), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2970), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2970), - [anon_sym_MOZ_COLD] = ACTIONS(2970), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2970), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2970), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2970), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2970), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2970), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2970), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2970), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2970), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2970), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2970), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2970), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2970), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2970), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2970), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2970), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2970), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2970), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2970), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2970), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2970), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_NONNULL] = ACTIONS(2970), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2970), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2970), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2970), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2970), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2970), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_NORETURN] = ACTIONS(2970), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2970), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2970), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2970), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2970), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2970), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2970), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2970), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2970), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2970), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2970), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2970), - [anon_sym_MOZ_RAII] = ACTIONS(2970), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2970), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2970), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2970), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2970), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2970), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2970), - }, - [989] = { - [sym_attribute_declaration] = STATE(885), - [sym_compound_statement] = STATE(755), - [sym_attributed_statement] = STATE(756), - [sym_labeled_statement] = STATE(757), - [sym_expression_statement] = STATE(759), - [sym_if_statement] = STATE(765), - [sym_switch_statement] = STATE(766), - [sym_case_statement] = STATE(768), - [sym_while_statement] = STATE(769), - [sym_do_statement] = STATE(770), - [sym_for_statement] = STATE(771), - [sym_return_statement] = STATE(774), - [sym_break_statement] = STATE(775), - [sym_continue_statement] = STATE(776), - [sym_goto_statement] = STATE(777), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(721), - [sym_co_return_statement] = STATE(780), - [sym_co_yield_statement] = STATE(781), - [sym_throw_statement] = STATE(764), - [sym_try_statement] = STATE(745), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [990] = { - [sym_identifier] = ACTIONS(1779), - [aux_sym_preproc_def_token1] = ACTIONS(1779), - [aux_sym_preproc_if_token1] = ACTIONS(1779), - [aux_sym_preproc_if_token2] = ACTIONS(1779), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1779), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1779), - [aux_sym_preproc_else_token1] = ACTIONS(1779), - [aux_sym_preproc_elif_token1] = ACTIONS(1779), - [sym_preproc_directive] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP_AMP] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1779), - [anon_sym_typedef] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym___attribute__] = ACTIONS(1779), - [anon_sym_COLON_COLON] = ACTIONS(1781), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1781), - [anon_sym___declspec] = ACTIONS(1779), - [anon_sym___based] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_inline] = ACTIONS(1779), - [anon_sym_thread_local] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [anon_sym_volatile] = ACTIONS(1779), - [anon_sym_restrict] = ACTIONS(1779), - [anon_sym__Atomic] = ACTIONS(1779), - [anon_sym_mutable] = ACTIONS(1779), - [anon_sym_constexpr] = ACTIONS(1779), - [anon_sym_signed] = ACTIONS(1779), - [anon_sym_unsigned] = ACTIONS(1779), - [anon_sym_long] = ACTIONS(1779), - [anon_sym_short] = ACTIONS(1779), - [sym_primitive_type] = ACTIONS(1779), - [anon_sym_enum] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(1779), - [anon_sym_struct] = ACTIONS(1779), - [anon_sym_union] = ACTIONS(1779), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1779), - [anon_sym_virtual] = ACTIONS(1779), - [anon_sym_explicit] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [sym_auto] = ACTIONS(1779), - [anon_sym_typename] = ACTIONS(1779), - [anon_sym_template] = ACTIONS(1779), - [anon_sym_operator] = ACTIONS(1779), - [anon_sym_friend] = ACTIONS(1779), - [anon_sym_using] = ACTIONS(1779), - [anon_sym_static_assert] = ACTIONS(1779), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1779), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1779), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1779), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1779), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1779), - [anon_sym_MOZ_COLD] = ACTIONS(1779), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1779), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1779), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1779), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1779), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1779), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1779), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1779), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1779), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1779), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1779), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1779), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1779), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1779), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_NONNULL] = ACTIONS(1779), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1779), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1779), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1779), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1779), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1779), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1779), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1779), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1779), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1779), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1779), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1779), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1779), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1779), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1779), - [anon_sym_MOZ_RAII] = ACTIONS(1779), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1779), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1779), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1779), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1779), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1779), - }, - [991] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(4497), - [sym_attributed_statement] = STATE(4497), - [sym_labeled_statement] = STATE(4497), - [sym_expression_statement] = STATE(4497), - [sym_if_statement] = STATE(4497), - [sym_switch_statement] = STATE(4497), - [sym_case_statement] = STATE(4497), - [sym_while_statement] = STATE(4497), - [sym_do_statement] = STATE(4497), - [sym_for_statement] = STATE(4497), - [sym_return_statement] = STATE(4497), - [sym_break_statement] = STATE(4497), - [sym_continue_statement] = STATE(4497), - [sym_goto_statement] = STATE(4497), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4497), - [sym_co_return_statement] = STATE(4497), - [sym_co_yield_statement] = STATE(4497), - [sym_throw_statement] = STATE(4497), - [sym_try_statement] = STATE(4497), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [992] = { - [sym_attribute_declaration] = STATE(1041), - [sym_compound_statement] = STATE(326), - [sym_attributed_statement] = STATE(326), - [sym_labeled_statement] = STATE(326), - [sym_expression_statement] = STATE(326), - [sym_if_statement] = STATE(326), - [sym_switch_statement] = STATE(326), - [sym_case_statement] = STATE(326), - [sym_while_statement] = STATE(326), - [sym_do_statement] = STATE(326), - [sym_for_statement] = STATE(326), - [sym_return_statement] = STATE(326), - [sym_break_statement] = STATE(326), - [sym_continue_statement] = STATE(326), - [sym_goto_statement] = STATE(326), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(326), - [sym_co_return_statement] = STATE(326), - [sym_co_yield_statement] = STATE(326), - [sym_throw_statement] = STATE(326), - [sym_try_statement] = STATE(326), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [993] = { - [sym_attribute_declaration] = STATE(1041), - [sym_compound_statement] = STATE(325), - [sym_attributed_statement] = STATE(325), - [sym_labeled_statement] = STATE(325), - [sym_expression_statement] = STATE(325), - [sym_if_statement] = STATE(325), - [sym_switch_statement] = STATE(325), - [sym_case_statement] = STATE(325), - [sym_while_statement] = STATE(325), - [sym_do_statement] = STATE(325), - [sym_for_statement] = STATE(325), - [sym_return_statement] = STATE(325), - [sym_break_statement] = STATE(325), - [sym_continue_statement] = STATE(325), - [sym_goto_statement] = STATE(325), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(325), - [sym_co_return_statement] = STATE(325), - [sym_co_yield_statement] = STATE(325), - [sym_throw_statement] = STATE(325), - [sym_try_statement] = STATE(325), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [994] = { - [sym_attribute_declaration] = STATE(885), - [sym_compound_statement] = STATE(717), - [sym_attributed_statement] = STATE(717), - [sym_labeled_statement] = STATE(717), - [sym_expression_statement] = STATE(717), - [sym_if_statement] = STATE(717), - [sym_switch_statement] = STATE(717), - [sym_case_statement] = STATE(717), - [sym_while_statement] = STATE(717), - [sym_do_statement] = STATE(717), - [sym_for_statement] = STATE(717), - [sym_return_statement] = STATE(717), - [sym_break_statement] = STATE(717), - [sym_continue_statement] = STATE(717), - [sym_goto_statement] = STATE(717), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(717), - [sym_co_return_statement] = STATE(717), - [sym_co_yield_statement] = STATE(717), - [sym_throw_statement] = STATE(717), - [sym_try_statement] = STATE(717), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [995] = { - [sym_attribute_declaration] = STATE(885), - [sym_compound_statement] = STATE(708), - [sym_attributed_statement] = STATE(708), - [sym_labeled_statement] = STATE(708), - [sym_expression_statement] = STATE(708), - [sym_if_statement] = STATE(708), - [sym_switch_statement] = STATE(708), - [sym_case_statement] = STATE(708), - [sym_while_statement] = STATE(708), - [sym_do_statement] = STATE(708), - [sym_for_statement] = STATE(708), - [sym_return_statement] = STATE(708), - [sym_break_statement] = STATE(708), - [sym_continue_statement] = STATE(708), - [sym_goto_statement] = STATE(708), - [sym__expression] = STATE(2851), - [sym_comma_expression] = STATE(5072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(708), - [sym_co_return_statement] = STATE(708), - [sym_co_yield_statement] = STATE(708), - [sym_throw_statement] = STATE(708), - [sym_try_statement] = STATE(708), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_co_return] = ACTIONS(1396), - [anon_sym_co_yield] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [996] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(5195), - [sym_attributed_statement] = STATE(5195), - [sym_labeled_statement] = STATE(5195), - [sym_expression_statement] = STATE(5195), - [sym_if_statement] = STATE(5195), - [sym_switch_statement] = STATE(5195), - [sym_case_statement] = STATE(5195), - [sym_while_statement] = STATE(5195), - [sym_do_statement] = STATE(5195), - [sym_for_statement] = STATE(5195), - [sym_return_statement] = STATE(5195), - [sym_break_statement] = STATE(5195), - [sym_continue_statement] = STATE(5195), - [sym_goto_statement] = STATE(5195), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(5195), - [sym_co_return_statement] = STATE(5195), - [sym_co_yield_statement] = STATE(5195), - [sym_throw_statement] = STATE(5195), - [sym_try_statement] = STATE(5195), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [997] = { - [sym_identifier] = ACTIONS(1771), - [aux_sym_preproc_def_token1] = ACTIONS(1771), - [aux_sym_preproc_if_token1] = ACTIONS(1771), - [aux_sym_preproc_if_token2] = ACTIONS(1771), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1771), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1771), - [aux_sym_preproc_else_token1] = ACTIONS(1771), - [aux_sym_preproc_elif_token1] = ACTIONS(1771), - [sym_preproc_directive] = ACTIONS(1771), - [anon_sym_LPAREN2] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1773), - [anon_sym_AMP_AMP] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1771), - [anon_sym_typedef] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1771), - [anon_sym___attribute__] = ACTIONS(1771), - [anon_sym_COLON_COLON] = ACTIONS(1773), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1773), - [anon_sym___declspec] = ACTIONS(1771), - [anon_sym___based] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_register] = ACTIONS(1771), - [anon_sym_inline] = ACTIONS(1771), - [anon_sym_thread_local] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [anon_sym_volatile] = ACTIONS(1771), - [anon_sym_restrict] = ACTIONS(1771), - [anon_sym__Atomic] = ACTIONS(1771), - [anon_sym_mutable] = ACTIONS(1771), - [anon_sym_constexpr] = ACTIONS(1771), - [anon_sym_signed] = ACTIONS(1771), - [anon_sym_unsigned] = ACTIONS(1771), - [anon_sym_long] = ACTIONS(1771), - [anon_sym_short] = ACTIONS(1771), - [sym_primitive_type] = ACTIONS(1771), - [anon_sym_enum] = ACTIONS(1771), - [anon_sym_class] = ACTIONS(1771), - [anon_sym_struct] = ACTIONS(1771), - [anon_sym_union] = ACTIONS(1771), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1771), - [anon_sym_virtual] = ACTIONS(1771), - [anon_sym_explicit] = ACTIONS(1771), - [anon_sym_public] = ACTIONS(1771), - [anon_sym_private] = ACTIONS(1771), - [anon_sym_protected] = ACTIONS(1771), - [sym_auto] = ACTIONS(1771), - [anon_sym_typename] = ACTIONS(1771), - [anon_sym_template] = ACTIONS(1771), - [anon_sym_operator] = ACTIONS(1771), - [anon_sym_friend] = ACTIONS(1771), - [anon_sym_using] = ACTIONS(1771), - [anon_sym_static_assert] = ACTIONS(1771), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1771), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1771), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1771), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1771), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1771), - [anon_sym_MOZ_COLD] = ACTIONS(1771), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1771), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1771), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1771), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1771), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1771), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1771), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1771), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1771), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1771), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1771), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1771), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1771), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1771), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_NONNULL] = ACTIONS(1771), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1771), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1771), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1771), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1771), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1771), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1771), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1771), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1771), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1771), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1771), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1771), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1771), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1771), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1771), - [anon_sym_MOZ_RAII] = ACTIONS(1771), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1771), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1771), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1771), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1771), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1771), - }, - [998] = { - [sym_attribute_declaration] = STATE(1041), - [sym_compound_statement] = STATE(291), - [sym_attributed_statement] = STATE(292), - [sym_labeled_statement] = STATE(294), - [sym_expression_statement] = STATE(297), - [sym_if_statement] = STATE(298), - [sym_switch_statement] = STATE(299), - [sym_case_statement] = STATE(300), - [sym_while_statement] = STATE(302), - [sym_do_statement] = STATE(304), - [sym_for_statement] = STATE(306), - [sym_return_statement] = STATE(307), - [sym_break_statement] = STATE(308), - [sym_continue_statement] = STATE(313), - [sym_goto_statement] = STATE(287), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(319), - [sym_co_return_statement] = STATE(320), - [sym_co_yield_statement] = STATE(321), - [sym_throw_statement] = STATE(323), - [sym_try_statement] = STATE(324), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [999] = { - [sym_attribute_declaration] = STATE(1041), - [sym_compound_statement] = STATE(272), - [sym_attributed_statement] = STATE(271), - [sym_labeled_statement] = STATE(270), - [sym_expression_statement] = STATE(269), - [sym_if_statement] = STATE(268), - [sym_switch_statement] = STATE(267), - [sym_case_statement] = STATE(266), - [sym_while_statement] = STATE(265), - [sym_do_statement] = STATE(264), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(262), - [sym_break_statement] = STATE(260), - [sym_continue_statement] = STATE(259), - [sym_goto_statement] = STATE(258), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(257), - [sym_co_return_statement] = STATE(256), - [sym_co_yield_statement] = STATE(381), - [sym_throw_statement] = STATE(284), - [sym_try_statement] = STATE(290), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1000] = { - [sym_identifier] = ACTIONS(1703), - [aux_sym_preproc_def_token1] = ACTIONS(1703), - [aux_sym_preproc_if_token1] = ACTIONS(1703), - [aux_sym_preproc_if_token2] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1703), - [aux_sym_preproc_else_token1] = ACTIONS(1703), - [aux_sym_preproc_elif_token1] = ACTIONS(1703), - [sym_preproc_directive] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_typedef] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym___attribute__] = ACTIONS(1703), - [anon_sym_COLON_COLON] = ACTIONS(1705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1705), - [anon_sym___declspec] = ACTIONS(1703), - [anon_sym___based] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_inline] = ACTIONS(1703), - [anon_sym_thread_local] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [anon_sym_volatile] = ACTIONS(1703), - [anon_sym_restrict] = ACTIONS(1703), - [anon_sym__Atomic] = ACTIONS(1703), - [anon_sym_mutable] = ACTIONS(1703), - [anon_sym_constexpr] = ACTIONS(1703), - [anon_sym_signed] = ACTIONS(1703), - [anon_sym_unsigned] = ACTIONS(1703), - [anon_sym_long] = ACTIONS(1703), - [anon_sym_short] = ACTIONS(1703), - [sym_primitive_type] = ACTIONS(1703), - [anon_sym_enum] = ACTIONS(1703), - [anon_sym_class] = ACTIONS(1703), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1703), - [anon_sym_virtual] = ACTIONS(1703), - [anon_sym_explicit] = ACTIONS(1703), - [anon_sym_public] = ACTIONS(1703), - [anon_sym_private] = ACTIONS(1703), - [anon_sym_protected] = ACTIONS(1703), - [sym_auto] = ACTIONS(1703), - [anon_sym_typename] = ACTIONS(1703), - [anon_sym_template] = ACTIONS(1703), - [anon_sym_operator] = ACTIONS(1703), - [anon_sym_friend] = ACTIONS(1703), - [anon_sym_using] = ACTIONS(1703), - [anon_sym_static_assert] = ACTIONS(1703), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1703), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1703), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1703), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1703), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1703), - [anon_sym_MOZ_COLD] = ACTIONS(1703), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1703), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1703), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1703), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1703), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1703), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1703), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1703), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1703), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1703), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1703), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1703), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1703), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1703), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_NONNULL] = ACTIONS(1703), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1703), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1703), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1703), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1703), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1703), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1703), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1703), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1703), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1703), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1703), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1703), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1703), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1703), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1703), - [anon_sym_MOZ_RAII] = ACTIONS(1703), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1703), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1703), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1703), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1703), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1703), - }, - [1001] = { - [sym_identifier] = ACTIONS(1715), - [aux_sym_preproc_def_token1] = ACTIONS(1715), - [aux_sym_preproc_if_token1] = ACTIONS(1715), - [aux_sym_preproc_if_token2] = ACTIONS(1715), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1715), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1715), - [aux_sym_preproc_else_token1] = ACTIONS(1715), - [aux_sym_preproc_elif_token1] = ACTIONS(1715), - [sym_preproc_directive] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_typedef] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym___attribute__] = ACTIONS(1715), - [anon_sym_COLON_COLON] = ACTIONS(1717), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1717), - [anon_sym___declspec] = ACTIONS(1715), - [anon_sym___based] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_inline] = ACTIONS(1715), - [anon_sym_thread_local] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [anon_sym_volatile] = ACTIONS(1715), - [anon_sym_restrict] = ACTIONS(1715), - [anon_sym__Atomic] = ACTIONS(1715), - [anon_sym_mutable] = ACTIONS(1715), - [anon_sym_constexpr] = ACTIONS(1715), - [anon_sym_signed] = ACTIONS(1715), - [anon_sym_unsigned] = ACTIONS(1715), - [anon_sym_long] = ACTIONS(1715), - [anon_sym_short] = ACTIONS(1715), - [sym_primitive_type] = ACTIONS(1715), - [anon_sym_enum] = ACTIONS(1715), - [anon_sym_class] = ACTIONS(1715), - [anon_sym_struct] = ACTIONS(1715), - [anon_sym_union] = ACTIONS(1715), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1715), - [anon_sym_virtual] = ACTIONS(1715), - [anon_sym_explicit] = ACTIONS(1715), - [anon_sym_public] = ACTIONS(1715), - [anon_sym_private] = ACTIONS(1715), - [anon_sym_protected] = ACTIONS(1715), - [sym_auto] = ACTIONS(1715), - [anon_sym_typename] = ACTIONS(1715), - [anon_sym_template] = ACTIONS(1715), - [anon_sym_operator] = ACTIONS(1715), - [anon_sym_friend] = ACTIONS(1715), - [anon_sym_using] = ACTIONS(1715), - [anon_sym_static_assert] = ACTIONS(1715), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1715), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1715), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1715), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1715), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1715), - [anon_sym_MOZ_COLD] = ACTIONS(1715), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1715), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1715), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1715), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1715), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1715), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1715), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1715), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1715), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1715), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1715), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1715), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1715), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1715), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_NONNULL] = ACTIONS(1715), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1715), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1715), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1715), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1715), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1715), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1715), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1715), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1715), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1715), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1715), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1715), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1715), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1715), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1715), - [anon_sym_MOZ_RAII] = ACTIONS(1715), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1715), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1715), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1715), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1715), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1715), - }, - [1002] = { - [sym_attribute_declaration] = STATE(1041), - [sym_compound_statement] = STATE(273), - [sym_attributed_statement] = STATE(273), - [sym_labeled_statement] = STATE(273), - [sym_expression_statement] = STATE(273), - [sym_if_statement] = STATE(273), - [sym_switch_statement] = STATE(273), - [sym_case_statement] = STATE(273), - [sym_while_statement] = STATE(273), - [sym_do_statement] = STATE(273), - [sym_for_statement] = STATE(273), - [sym_return_statement] = STATE(273), - [sym_break_statement] = STATE(273), - [sym_continue_statement] = STATE(273), - [sym_goto_statement] = STATE(273), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(273), - [sym_co_return_statement] = STATE(273), - [sym_co_yield_statement] = STATE(273), - [sym_throw_statement] = STATE(273), - [sym_try_statement] = STATE(273), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1003] = { - [sym_attribute_declaration] = STATE(1041), - [sym_compound_statement] = STATE(275), - [sym_attributed_statement] = STATE(275), - [sym_labeled_statement] = STATE(275), - [sym_expression_statement] = STATE(275), - [sym_if_statement] = STATE(275), - [sym_switch_statement] = STATE(275), - [sym_case_statement] = STATE(275), - [sym_while_statement] = STATE(275), - [sym_do_statement] = STATE(275), - [sym_for_statement] = STATE(275), - [sym_return_statement] = STATE(275), - [sym_break_statement] = STATE(275), - [sym_continue_statement] = STATE(275), - [sym_goto_statement] = STATE(275), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(275), - [sym_co_return_statement] = STATE(275), - [sym_co_yield_statement] = STATE(275), - [sym_throw_statement] = STATE(275), - [sym_try_statement] = STATE(275), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1004] = { - [sym_identifier] = ACTIONS(1727), - [aux_sym_preproc_def_token1] = ACTIONS(1727), - [aux_sym_preproc_if_token1] = ACTIONS(1727), - [aux_sym_preproc_if_token2] = ACTIONS(1727), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1727), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1727), - [aux_sym_preproc_else_token1] = ACTIONS(1727), - [aux_sym_preproc_elif_token1] = ACTIONS(1727), - [sym_preproc_directive] = ACTIONS(1727), - [anon_sym_LPAREN2] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1729), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_typedef] = ACTIONS(1727), - [anon_sym_extern] = ACTIONS(1727), - [anon_sym___attribute__] = ACTIONS(1727), - [anon_sym_COLON_COLON] = ACTIONS(1729), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), - [anon_sym___declspec] = ACTIONS(1727), - [anon_sym___based] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_static] = ACTIONS(1727), - [anon_sym_register] = ACTIONS(1727), - [anon_sym_inline] = ACTIONS(1727), - [anon_sym_thread_local] = ACTIONS(1727), - [anon_sym_const] = ACTIONS(1727), - [anon_sym_volatile] = ACTIONS(1727), - [anon_sym_restrict] = ACTIONS(1727), - [anon_sym__Atomic] = ACTIONS(1727), - [anon_sym_mutable] = ACTIONS(1727), - [anon_sym_constexpr] = ACTIONS(1727), - [anon_sym_signed] = ACTIONS(1727), - [anon_sym_unsigned] = ACTIONS(1727), - [anon_sym_long] = ACTIONS(1727), - [anon_sym_short] = ACTIONS(1727), - [sym_primitive_type] = ACTIONS(1727), - [anon_sym_enum] = ACTIONS(1727), - [anon_sym_class] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(1727), - [anon_sym_union] = ACTIONS(1727), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1727), - [anon_sym_virtual] = ACTIONS(1727), - [anon_sym_explicit] = ACTIONS(1727), - [anon_sym_public] = ACTIONS(1727), - [anon_sym_private] = ACTIONS(1727), - [anon_sym_protected] = ACTIONS(1727), - [sym_auto] = ACTIONS(1727), - [anon_sym_typename] = ACTIONS(1727), - [anon_sym_template] = ACTIONS(1727), - [anon_sym_operator] = ACTIONS(1727), - [anon_sym_friend] = ACTIONS(1727), - [anon_sym_using] = ACTIONS(1727), - [anon_sym_static_assert] = ACTIONS(1727), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1727), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1727), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1727), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1727), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1727), - [anon_sym_MOZ_COLD] = ACTIONS(1727), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1727), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1727), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1727), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1727), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1727), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1727), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1727), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1727), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1727), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1727), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1727), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1727), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1727), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_NONNULL] = ACTIONS(1727), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1727), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1727), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1727), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1727), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1727), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1727), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1727), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1727), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1727), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1727), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1727), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1727), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1727), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1727), - [anon_sym_MOZ_RAII] = ACTIONS(1727), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1727), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1727), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1727), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1727), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1727), - }, - [1005] = { - [sym_attribute_declaration] = STATE(882), - [sym_compound_statement] = STATE(150), - [sym_attributed_statement] = STATE(150), - [sym_labeled_statement] = STATE(150), - [sym_expression_statement] = STATE(150), - [sym_if_statement] = STATE(150), - [sym_switch_statement] = STATE(150), - [sym_case_statement] = STATE(150), - [sym_while_statement] = STATE(150), - [sym_do_statement] = STATE(150), - [sym_for_statement] = STATE(150), - [sym_return_statement] = STATE(150), - [sym_break_statement] = STATE(150), - [sym_continue_statement] = STATE(150), - [sym_goto_statement] = STATE(150), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(150), - [sym_co_return_statement] = STATE(150), - [sym_co_yield_statement] = STATE(150), - [sym_throw_statement] = STATE(150), - [sym_try_statement] = STATE(150), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1006] = { - [sym_attribute_declaration] = STATE(882), - [sym_compound_statement] = STATE(149), - [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_case_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__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1007] = { - [sym_attribute_declaration] = STATE(882), - [sym_compound_statement] = STATE(115), - [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__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1008] = { - [sym_attribute_declaration] = STATE(882), - [sym_compound_statement] = STATE(116), - [sym_attributed_statement] = STATE(116), - [sym_labeled_statement] = STATE(116), - [sym_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(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1009] = { - [sym_identifier] = ACTIONS(1707), - [aux_sym_preproc_def_token1] = ACTIONS(1707), - [aux_sym_preproc_if_token1] = ACTIONS(1707), - [aux_sym_preproc_if_token2] = ACTIONS(1707), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1707), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1707), - [aux_sym_preproc_else_token1] = ACTIONS(1707), - [aux_sym_preproc_elif_token1] = ACTIONS(1707), - [sym_preproc_directive] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1709), - [anon_sym_AMP_AMP] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_typedef] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym___attribute__] = ACTIONS(1707), - [anon_sym_COLON_COLON] = ACTIONS(1709), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1709), - [anon_sym___declspec] = ACTIONS(1707), - [anon_sym___based] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_inline] = ACTIONS(1707), - [anon_sym_thread_local] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_volatile] = ACTIONS(1707), - [anon_sym_restrict] = ACTIONS(1707), - [anon_sym__Atomic] = ACTIONS(1707), - [anon_sym_mutable] = ACTIONS(1707), - [anon_sym_constexpr] = ACTIONS(1707), - [anon_sym_signed] = ACTIONS(1707), - [anon_sym_unsigned] = ACTIONS(1707), - [anon_sym_long] = ACTIONS(1707), - [anon_sym_short] = ACTIONS(1707), - [sym_primitive_type] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_class] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1707), - [anon_sym_virtual] = ACTIONS(1707), - [anon_sym_explicit] = ACTIONS(1707), - [anon_sym_public] = ACTIONS(1707), - [anon_sym_private] = ACTIONS(1707), - [anon_sym_protected] = ACTIONS(1707), - [sym_auto] = ACTIONS(1707), - [anon_sym_typename] = ACTIONS(1707), - [anon_sym_template] = ACTIONS(1707), - [anon_sym_operator] = ACTIONS(1707), - [anon_sym_friend] = ACTIONS(1707), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_static_assert] = ACTIONS(1707), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1707), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1707), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1707), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1707), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1707), - [anon_sym_MOZ_COLD] = ACTIONS(1707), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1707), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1707), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1707), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1707), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1707), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1707), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1707), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1707), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1707), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1707), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1707), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1707), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1707), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_NONNULL] = ACTIONS(1707), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1707), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1707), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1707), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1707), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1707), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1707), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1707), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1707), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1707), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1707), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1707), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1707), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1707), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1707), - [anon_sym_MOZ_RAII] = ACTIONS(1707), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1707), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1707), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1707), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1707), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1707), - }, - [1010] = { - [sym_identifier] = ACTIONS(1699), - [aux_sym_preproc_def_token1] = ACTIONS(1699), - [aux_sym_preproc_if_token1] = ACTIONS(1699), - [aux_sym_preproc_if_token2] = ACTIONS(1699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1699), - [aux_sym_preproc_else_token1] = ACTIONS(1699), - [aux_sym_preproc_elif_token1] = ACTIONS(1699), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_typedef] = ACTIONS(1699), - [anon_sym_extern] = ACTIONS(1699), - [anon_sym___attribute__] = ACTIONS(1699), - [anon_sym_COLON_COLON] = ACTIONS(1701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1701), - [anon_sym___declspec] = ACTIONS(1699), - [anon_sym___based] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_static] = ACTIONS(1699), - [anon_sym_register] = ACTIONS(1699), - [anon_sym_inline] = ACTIONS(1699), - [anon_sym_thread_local] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_volatile] = ACTIONS(1699), - [anon_sym_restrict] = ACTIONS(1699), - [anon_sym__Atomic] = ACTIONS(1699), - [anon_sym_mutable] = ACTIONS(1699), - [anon_sym_constexpr] = ACTIONS(1699), - [anon_sym_signed] = ACTIONS(1699), - [anon_sym_unsigned] = ACTIONS(1699), - [anon_sym_long] = ACTIONS(1699), - [anon_sym_short] = ACTIONS(1699), - [sym_primitive_type] = ACTIONS(1699), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1699), - [anon_sym_struct] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1699), - [anon_sym_virtual] = ACTIONS(1699), - [anon_sym_explicit] = ACTIONS(1699), - [anon_sym_public] = ACTIONS(1699), - [anon_sym_private] = ACTIONS(1699), - [anon_sym_protected] = ACTIONS(1699), - [sym_auto] = ACTIONS(1699), - [anon_sym_typename] = ACTIONS(1699), - [anon_sym_template] = ACTIONS(1699), - [anon_sym_operator] = ACTIONS(1699), - [anon_sym_friend] = ACTIONS(1699), - [anon_sym_using] = ACTIONS(1699), - [anon_sym_static_assert] = ACTIONS(1699), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1699), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1699), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1699), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1699), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1699), - [anon_sym_MOZ_COLD] = ACTIONS(1699), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1699), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1699), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1699), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1699), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1699), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1699), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1699), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1699), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1699), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1699), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1699), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1699), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1699), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_NONNULL] = ACTIONS(1699), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1699), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1699), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1699), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1699), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1699), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1699), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1699), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1699), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1699), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1699), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1699), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1699), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1699), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1699), - [anon_sym_MOZ_RAII] = ACTIONS(1699), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1699), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1699), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1699), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1699), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1699), - }, - [1011] = { - [sym_attribute_declaration] = STATE(882), - [sym_compound_statement] = STATE(117), - [sym_attributed_statement] = STATE(117), - [sym_labeled_statement] = STATE(117), - [sym_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(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1012] = { - [sym_attribute_declaration] = STATE(1046), - [sym_compound_statement] = STATE(395), - [sym_attributed_statement] = STATE(395), - [sym_labeled_statement] = STATE(395), - [sym_expression_statement] = STATE(395), - [sym_if_statement] = STATE(395), - [sym_switch_statement] = STATE(395), - [sym_case_statement] = STATE(395), - [sym_while_statement] = STATE(395), - [sym_do_statement] = STATE(395), - [sym_for_statement] = STATE(395), - [sym_return_statement] = STATE(395), - [sym_break_statement] = STATE(395), - [sym_continue_statement] = STATE(395), - [sym_goto_statement] = STATE(395), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(395), - [sym_co_return_statement] = STATE(395), - [sym_co_yield_statement] = STATE(395), - [sym_throw_statement] = STATE(395), - [sym_try_statement] = STATE(395), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1013] = { - [sym_attribute_declaration] = STATE(882), - [sym_compound_statement] = STATE(118), - [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_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(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1014] = { - [sym_identifier] = ACTIONS(1735), - [aux_sym_preproc_def_token1] = ACTIONS(1735), - [aux_sym_preproc_if_token1] = ACTIONS(1735), - [aux_sym_preproc_if_token2] = ACTIONS(1735), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1735), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1735), - [aux_sym_preproc_else_token1] = ACTIONS(1735), - [aux_sym_preproc_elif_token1] = ACTIONS(1735), - [sym_preproc_directive] = ACTIONS(1735), - [anon_sym_LPAREN2] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_typedef] = ACTIONS(1735), - [anon_sym_extern] = ACTIONS(1735), - [anon_sym___attribute__] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1737), - [anon_sym___declspec] = ACTIONS(1735), - [anon_sym___based] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_register] = ACTIONS(1735), - [anon_sym_inline] = ACTIONS(1735), - [anon_sym_thread_local] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_volatile] = ACTIONS(1735), - [anon_sym_restrict] = ACTIONS(1735), - [anon_sym__Atomic] = ACTIONS(1735), - [anon_sym_mutable] = ACTIONS(1735), - [anon_sym_constexpr] = ACTIONS(1735), - [anon_sym_signed] = ACTIONS(1735), - [anon_sym_unsigned] = ACTIONS(1735), - [anon_sym_long] = ACTIONS(1735), - [anon_sym_short] = ACTIONS(1735), - [sym_primitive_type] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [anon_sym_class] = ACTIONS(1735), - [anon_sym_struct] = ACTIONS(1735), - [anon_sym_union] = ACTIONS(1735), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1735), - [anon_sym_virtual] = ACTIONS(1735), - [anon_sym_explicit] = ACTIONS(1735), - [anon_sym_public] = ACTIONS(1735), - [anon_sym_private] = ACTIONS(1735), - [anon_sym_protected] = ACTIONS(1735), - [sym_auto] = ACTIONS(1735), - [anon_sym_typename] = ACTIONS(1735), - [anon_sym_template] = ACTIONS(1735), - [anon_sym_operator] = ACTIONS(1735), - [anon_sym_friend] = ACTIONS(1735), - [anon_sym_using] = ACTIONS(1735), - [anon_sym_static_assert] = ACTIONS(1735), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1735), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1735), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1735), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1735), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1735), - [anon_sym_MOZ_COLD] = ACTIONS(1735), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1735), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1735), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1735), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1735), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1735), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1735), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1735), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1735), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1735), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1735), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1735), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1735), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1735), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_NONNULL] = ACTIONS(1735), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1735), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1735), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1735), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1735), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1735), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1735), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1735), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1735), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1735), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1735), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1735), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1735), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1735), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1735), - [anon_sym_MOZ_RAII] = ACTIONS(1735), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1735), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1735), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1735), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1735), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1735), - }, - [1015] = { - [sym_attribute_declaration] = STATE(882), - [sym_compound_statement] = STATE(119), - [sym_attributed_statement] = STATE(119), - [sym_labeled_statement] = STATE(119), - [sym_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(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1016] = { - [sym_identifier] = ACTIONS(1739), - [aux_sym_preproc_def_token1] = ACTIONS(1739), - [aux_sym_preproc_if_token1] = ACTIONS(1739), - [aux_sym_preproc_if_token2] = ACTIONS(1739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1739), - [aux_sym_preproc_else_token1] = ACTIONS(1739), - [aux_sym_preproc_elif_token1] = ACTIONS(1739), - [sym_preproc_directive] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_STAR] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_typedef] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym___attribute__] = ACTIONS(1739), - [anon_sym_COLON_COLON] = ACTIONS(1741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1741), - [anon_sym___declspec] = ACTIONS(1739), - [anon_sym___based] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_static] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_inline] = ACTIONS(1739), - [anon_sym_thread_local] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [anon_sym_volatile] = ACTIONS(1739), - [anon_sym_restrict] = ACTIONS(1739), - [anon_sym__Atomic] = ACTIONS(1739), - [anon_sym_mutable] = ACTIONS(1739), - [anon_sym_constexpr] = ACTIONS(1739), - [anon_sym_signed] = ACTIONS(1739), - [anon_sym_unsigned] = ACTIONS(1739), - [anon_sym_long] = ACTIONS(1739), - [anon_sym_short] = ACTIONS(1739), - [sym_primitive_type] = ACTIONS(1739), - [anon_sym_enum] = ACTIONS(1739), - [anon_sym_class] = ACTIONS(1739), - [anon_sym_struct] = ACTIONS(1739), - [anon_sym_union] = ACTIONS(1739), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1739), - [anon_sym_virtual] = ACTIONS(1739), - [anon_sym_explicit] = ACTIONS(1739), - [anon_sym_public] = ACTIONS(1739), - [anon_sym_private] = ACTIONS(1739), - [anon_sym_protected] = ACTIONS(1739), - [sym_auto] = ACTIONS(1739), - [anon_sym_typename] = ACTIONS(1739), - [anon_sym_template] = ACTIONS(1739), - [anon_sym_operator] = ACTIONS(1739), - [anon_sym_friend] = ACTIONS(1739), - [anon_sym_using] = ACTIONS(1739), - [anon_sym_static_assert] = ACTIONS(1739), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1739), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1739), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1739), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1739), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1739), - [anon_sym_MOZ_COLD] = ACTIONS(1739), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1739), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1739), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1739), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1739), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1739), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1739), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1739), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1739), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1739), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1739), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1739), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1739), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1739), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_NONNULL] = ACTIONS(1739), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1739), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1739), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1739), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1739), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1739), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1739), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1739), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1739), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1739), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1739), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1739), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1739), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1739), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1739), - [anon_sym_MOZ_RAII] = ACTIONS(1739), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1739), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1739), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1739), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1739), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1739), - }, - [1017] = { - [sym_identifier] = ACTIONS(1899), - [aux_sym_preproc_def_token1] = ACTIONS(1899), - [aux_sym_preproc_if_token1] = ACTIONS(1899), - [aux_sym_preproc_if_token2] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1899), - [aux_sym_preproc_else_token1] = ACTIONS(1899), - [aux_sym_preproc_elif_token1] = ACTIONS(1899), - [sym_preproc_directive] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1901), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_AMP_AMP] = ACTIONS(1901), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_typedef] = ACTIONS(1899), - [anon_sym_extern] = ACTIONS(1899), - [anon_sym___attribute__] = ACTIONS(1899), - [anon_sym_COLON_COLON] = ACTIONS(1901), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1901), - [anon_sym___declspec] = ACTIONS(1899), - [anon_sym___based] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_register] = ACTIONS(1899), - [anon_sym_inline] = ACTIONS(1899), - [anon_sym_thread_local] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_volatile] = ACTIONS(1899), - [anon_sym_restrict] = ACTIONS(1899), - [anon_sym__Atomic] = ACTIONS(1899), - [anon_sym_mutable] = ACTIONS(1899), - [anon_sym_constexpr] = ACTIONS(1899), - [anon_sym_signed] = ACTIONS(1899), - [anon_sym_unsigned] = ACTIONS(1899), - [anon_sym_long] = ACTIONS(1899), - [anon_sym_short] = ACTIONS(1899), - [sym_primitive_type] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_class] = ACTIONS(1899), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1899), - [anon_sym_virtual] = ACTIONS(1899), - [anon_sym_explicit] = ACTIONS(1899), - [anon_sym_public] = ACTIONS(1899), - [anon_sym_private] = ACTIONS(1899), - [anon_sym_protected] = ACTIONS(1899), - [sym_auto] = ACTIONS(1899), - [anon_sym_typename] = ACTIONS(1899), - [anon_sym_template] = ACTIONS(1899), - [anon_sym_operator] = ACTIONS(1899), - [anon_sym_friend] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(1899), - [anon_sym_static_assert] = ACTIONS(1899), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1899), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1899), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1899), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1899), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1899), - [anon_sym_MOZ_COLD] = ACTIONS(1899), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1899), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1899), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1899), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1899), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1899), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1899), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1899), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1899), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1899), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1899), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1899), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1899), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1899), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_NONNULL] = ACTIONS(1899), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1899), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1899), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1899), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1899), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1899), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1899), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1899), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1899), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1899), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1899), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1899), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1899), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1899), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1899), - [anon_sym_MOZ_RAII] = ACTIONS(1899), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1899), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1899), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1899), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1899), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1899), - }, - [1018] = { - [sym_identifier] = ACTIONS(1755), - [aux_sym_preproc_def_token1] = ACTIONS(1755), - [aux_sym_preproc_if_token1] = ACTIONS(1755), - [aux_sym_preproc_if_token2] = ACTIONS(1755), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1755), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1755), - [aux_sym_preproc_else_token1] = ACTIONS(1755), - [aux_sym_preproc_elif_token1] = ACTIONS(1755), - [sym_preproc_directive] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_STAR] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_typedef] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym___attribute__] = ACTIONS(1755), - [anon_sym_COLON_COLON] = ACTIONS(1757), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1757), - [anon_sym___declspec] = ACTIONS(1755), - [anon_sym___based] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1755), - [anon_sym_static] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_inline] = ACTIONS(1755), - [anon_sym_thread_local] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [anon_sym_volatile] = ACTIONS(1755), - [anon_sym_restrict] = ACTIONS(1755), - [anon_sym__Atomic] = ACTIONS(1755), - [anon_sym_mutable] = ACTIONS(1755), - [anon_sym_constexpr] = ACTIONS(1755), - [anon_sym_signed] = ACTIONS(1755), - [anon_sym_unsigned] = ACTIONS(1755), - [anon_sym_long] = ACTIONS(1755), - [anon_sym_short] = ACTIONS(1755), - [sym_primitive_type] = ACTIONS(1755), - [anon_sym_enum] = ACTIONS(1755), - [anon_sym_class] = ACTIONS(1755), - [anon_sym_struct] = ACTIONS(1755), - [anon_sym_union] = ACTIONS(1755), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1755), - [anon_sym_virtual] = ACTIONS(1755), - [anon_sym_explicit] = ACTIONS(1755), - [anon_sym_public] = ACTIONS(1755), - [anon_sym_private] = ACTIONS(1755), - [anon_sym_protected] = ACTIONS(1755), - [sym_auto] = ACTIONS(1755), - [anon_sym_typename] = ACTIONS(1755), - [anon_sym_template] = ACTIONS(1755), - [anon_sym_operator] = ACTIONS(1755), - [anon_sym_friend] = ACTIONS(1755), - [anon_sym_using] = ACTIONS(1755), - [anon_sym_static_assert] = ACTIONS(1755), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1755), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1755), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1755), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1755), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1755), - [anon_sym_MOZ_COLD] = ACTIONS(1755), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1755), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1755), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1755), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1755), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1755), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1755), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1755), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1755), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1755), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1755), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1755), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1755), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1755), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_NONNULL] = ACTIONS(1755), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1755), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1755), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1755), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1755), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1755), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1755), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1755), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1755), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1755), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1755), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1755), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1755), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1755), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1755), - [anon_sym_MOZ_RAII] = ACTIONS(1755), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1755), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1755), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1755), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1755), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1755), - }, - [1019] = { - [sym_attribute_declaration] = STATE(1019), - [sym_compound_statement] = STATE(374), - [sym_attributed_statement] = STATE(374), - [sym_labeled_statement] = STATE(374), - [sym_expression_statement] = STATE(374), - [sym_if_statement] = STATE(374), - [sym_switch_statement] = STATE(374), - [sym_case_statement] = STATE(374), - [sym_while_statement] = STATE(374), - [sym_do_statement] = STATE(374), - [sym_for_statement] = STATE(374), - [sym_return_statement] = STATE(374), - [sym_break_statement] = STATE(374), - [sym_continue_statement] = STATE(374), - [sym_goto_statement] = STATE(374), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(374), - [sym_co_return_statement] = STATE(374), - [sym_co_yield_statement] = STATE(374), - [sym_throw_statement] = STATE(374), - [sym_try_statement] = STATE(374), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1019), - [sym_identifier] = ACTIONS(2974), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_BANG] = ACTIONS(2642), - [anon_sym_TILDE] = ACTIONS(2642), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_PLUS] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_AMP] = ACTIONS(2648), - [anon_sym_SEMI] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2980), - [anon_sym_LBRACK] = ACTIONS(2663), - [sym_primitive_type] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2983), - [anon_sym_switch] = ACTIONS(2986), - [anon_sym_case] = ACTIONS(2989), - [anon_sym_default] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2995), - [anon_sym_do] = ACTIONS(2998), - [anon_sym_for] = ACTIONS(3001), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_break] = ACTIONS(3007), - [anon_sym_continue] = ACTIONS(3010), - [anon_sym_goto] = ACTIONS(3013), - [anon_sym_DASH_DASH] = ACTIONS(2702), - [anon_sym_PLUS_PLUS] = ACTIONS(2702), - [anon_sym_sizeof] = ACTIONS(2705), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2711), - [anon_sym_u_SQUOTE] = ACTIONS(2711), - [anon_sym_U_SQUOTE] = ACTIONS(2711), - [anon_sym_u8_SQUOTE] = ACTIONS(2711), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_L_DQUOTE] = ACTIONS(2714), - [anon_sym_u_DQUOTE] = ACTIONS(2714), - [anon_sym_U_DQUOTE] = ACTIONS(2714), - [anon_sym_u8_DQUOTE] = ACTIONS(2714), - [anon_sym_DQUOTE] = ACTIONS(2714), - [sym_true] = ACTIONS(2717), - [sym_false] = ACTIONS(2717), - [sym_null] = ACTIONS(2717), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(2720), - [anon_sym_delete] = ACTIONS(2723), - [anon_sym_throw] = ACTIONS(3016), - [anon_sym_co_return] = ACTIONS(3019), - [anon_sym_co_yield] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3025), - [anon_sym_co_await] = ACTIONS(2738), - [anon_sym_new] = ACTIONS(2741), - [sym_this] = ACTIONS(2717), - [sym_nullptr] = ACTIONS(2717), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_FORWARD] = ACTIONS(2744), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2744), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_PS_GET] = ACTIONS(2744), - [anon_sym_PS_GET_AND_SET] = ACTIONS(2744), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2744), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2744), - [sym_raw_string_literal] = ACTIONS(2747), - }, - [1020] = { - [sym_attribute_declaration] = STATE(882), - [sym_compound_statement] = STATE(120), - [sym_attributed_statement] = STATE(121), - [sym_labeled_statement] = STATE(122), - [sym_expression_statement] = STATE(123), - [sym_if_statement] = STATE(124), - [sym_switch_statement] = STATE(126), - [sym_case_statement] = STATE(153), - [sym_while_statement] = STATE(113), - [sym_do_statement] = STATE(130), - [sym_for_statement] = STATE(131), - [sym_return_statement] = STATE(132), - [sym_break_statement] = STATE(133), - [sym_continue_statement] = STATE(134), - [sym_goto_statement] = STATE(135), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(136), - [sym_co_return_statement] = STATE(138), - [sym_co_yield_statement] = STATE(139), - [sym_throw_statement] = STATE(141), - [sym_try_statement] = STATE(147), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1021] = { - [sym_identifier] = ACTIONS(1759), - [aux_sym_preproc_def_token1] = ACTIONS(1759), - [aux_sym_preproc_if_token1] = ACTIONS(1759), - [aux_sym_preproc_if_token2] = ACTIONS(1759), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1759), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1759), - [aux_sym_preproc_else_token1] = ACTIONS(1759), - [aux_sym_preproc_elif_token1] = ACTIONS(1759), - [sym_preproc_directive] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(1761), - [anon_sym_TILDE] = ACTIONS(1761), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_AMP_AMP] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1759), - [anon_sym_typedef] = ACTIONS(1759), - [anon_sym_extern] = ACTIONS(1759), - [anon_sym___attribute__] = ACTIONS(1759), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), - [anon_sym___declspec] = ACTIONS(1759), - [anon_sym___based] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_static] = ACTIONS(1759), - [anon_sym_register] = ACTIONS(1759), - [anon_sym_inline] = ACTIONS(1759), - [anon_sym_thread_local] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_volatile] = ACTIONS(1759), - [anon_sym_restrict] = ACTIONS(1759), - [anon_sym__Atomic] = ACTIONS(1759), - [anon_sym_mutable] = ACTIONS(1759), - [anon_sym_constexpr] = ACTIONS(1759), - [anon_sym_signed] = ACTIONS(1759), - [anon_sym_unsigned] = ACTIONS(1759), - [anon_sym_long] = ACTIONS(1759), - [anon_sym_short] = ACTIONS(1759), - [sym_primitive_type] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_class] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(1759), - [anon_sym_union] = ACTIONS(1759), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1759), - [anon_sym_virtual] = ACTIONS(1759), - [anon_sym_explicit] = ACTIONS(1759), - [anon_sym_public] = ACTIONS(1759), - [anon_sym_private] = ACTIONS(1759), - [anon_sym_protected] = ACTIONS(1759), - [sym_auto] = ACTIONS(1759), - [anon_sym_typename] = ACTIONS(1759), - [anon_sym_template] = ACTIONS(1759), - [anon_sym_operator] = ACTIONS(1759), - [anon_sym_friend] = ACTIONS(1759), - [anon_sym_using] = ACTIONS(1759), - [anon_sym_static_assert] = ACTIONS(1759), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1759), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1759), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1759), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1759), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1759), - [anon_sym_MOZ_COLD] = ACTIONS(1759), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1759), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1759), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1759), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1759), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1759), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1759), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1759), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1759), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1759), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1759), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1759), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1759), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1759), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_NONNULL] = ACTIONS(1759), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1759), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1759), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1759), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1759), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1759), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1759), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1759), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1759), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1759), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1759), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1759), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1759), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1759), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1759), - [anon_sym_MOZ_RAII] = ACTIONS(1759), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1759), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1759), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1759), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1759), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1759), - }, - [1022] = { - [sym_identifier] = ACTIONS(1763), - [aux_sym_preproc_def_token1] = ACTIONS(1763), - [aux_sym_preproc_if_token1] = ACTIONS(1763), - [aux_sym_preproc_if_token2] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), - [aux_sym_preproc_else_token1] = ACTIONS(1763), - [aux_sym_preproc_elif_token1] = ACTIONS(1763), - [sym_preproc_directive] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1763), - [anon_sym_typedef] = ACTIONS(1763), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym___attribute__] = ACTIONS(1763), - [anon_sym_COLON_COLON] = ACTIONS(1765), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1765), - [anon_sym___declspec] = ACTIONS(1763), - [anon_sym___based] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_inline] = ACTIONS(1763), - [anon_sym_thread_local] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym_mutable] = ACTIONS(1763), - [anon_sym_constexpr] = ACTIONS(1763), - [anon_sym_signed] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [sym_primitive_type] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [anon_sym_class] = ACTIONS(1763), - [anon_sym_struct] = ACTIONS(1763), - [anon_sym_union] = ACTIONS(1763), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1763), - [anon_sym_virtual] = ACTIONS(1763), - [anon_sym_explicit] = ACTIONS(1763), - [anon_sym_public] = ACTIONS(1763), - [anon_sym_private] = ACTIONS(1763), - [anon_sym_protected] = ACTIONS(1763), - [sym_auto] = ACTIONS(1763), - [anon_sym_typename] = ACTIONS(1763), - [anon_sym_template] = ACTIONS(1763), - [anon_sym_operator] = ACTIONS(1763), - [anon_sym_friend] = ACTIONS(1763), - [anon_sym_using] = ACTIONS(1763), - [anon_sym_static_assert] = ACTIONS(1763), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1763), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1763), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1763), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1763), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1763), - [anon_sym_MOZ_COLD] = ACTIONS(1763), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1763), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1763), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1763), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1763), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1763), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1763), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1763), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1763), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1763), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1763), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1763), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1763), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1763), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_NONNULL] = ACTIONS(1763), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1763), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1763), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1763), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1763), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1763), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1763), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1763), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1763), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1763), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1763), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1763), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1763), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1763), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1763), - [anon_sym_MOZ_RAII] = ACTIONS(1763), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1763), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1763), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1763), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1763), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1763), - }, - [1023] = { - [sym_identifier] = ACTIONS(2582), - [aux_sym_preproc_def_token1] = ACTIONS(2582), - [aux_sym_preproc_if_token1] = ACTIONS(2582), - [aux_sym_preproc_if_token2] = ACTIONS(2582), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2582), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2582), - [aux_sym_preproc_else_token1] = ACTIONS(2582), - [aux_sym_preproc_elif_token1] = ACTIONS(2582), - [sym_preproc_directive] = ACTIONS(2582), - [anon_sym_LPAREN2] = ACTIONS(2584), - [anon_sym_TILDE] = ACTIONS(2584), - [anon_sym_STAR] = ACTIONS(2584), - [anon_sym_AMP_AMP] = ACTIONS(2584), - [anon_sym_AMP] = ACTIONS(2582), - [anon_sym_typedef] = ACTIONS(2582), - [anon_sym_extern] = ACTIONS(2582), - [anon_sym___attribute__] = ACTIONS(2582), - [anon_sym_COLON_COLON] = ACTIONS(2584), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2584), - [anon_sym___declspec] = ACTIONS(2582), - [anon_sym___based] = ACTIONS(2582), - [anon_sym_LBRACK] = ACTIONS(2582), - [anon_sym_static] = ACTIONS(2582), - [anon_sym_register] = ACTIONS(2582), - [anon_sym_inline] = ACTIONS(2582), - [anon_sym_thread_local] = ACTIONS(2582), - [anon_sym_const] = ACTIONS(2582), - [anon_sym_volatile] = ACTIONS(2582), - [anon_sym_restrict] = ACTIONS(2582), - [anon_sym__Atomic] = ACTIONS(2582), - [anon_sym_mutable] = ACTIONS(2582), - [anon_sym_constexpr] = ACTIONS(2582), - [anon_sym_signed] = ACTIONS(2582), - [anon_sym_unsigned] = ACTIONS(2582), - [anon_sym_long] = ACTIONS(2582), - [anon_sym_short] = ACTIONS(2582), - [sym_primitive_type] = ACTIONS(2582), - [anon_sym_enum] = ACTIONS(2582), - [anon_sym_class] = ACTIONS(2582), - [anon_sym_struct] = ACTIONS(2582), - [anon_sym_union] = ACTIONS(2582), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_virtual] = ACTIONS(2582), - [anon_sym_explicit] = ACTIONS(2582), - [anon_sym_public] = ACTIONS(2582), - [anon_sym_private] = ACTIONS(2582), - [anon_sym_protected] = ACTIONS(2582), - [sym_auto] = ACTIONS(2582), - [anon_sym_typename] = ACTIONS(2582), - [anon_sym_template] = ACTIONS(2582), - [anon_sym_operator] = ACTIONS(2582), - [anon_sym_friend] = ACTIONS(2582), - [anon_sym_using] = ACTIONS(2582), - [anon_sym_static_assert] = ACTIONS(2582), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2582), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2582), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2582), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2582), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2582), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2582), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2582), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2582), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2582), - [anon_sym_MOZ_COLD] = ACTIONS(2582), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2582), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2582), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2582), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2582), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2582), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2582), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2582), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2582), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2582), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2582), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2582), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2582), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2582), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2582), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2582), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2582), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2582), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2582), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2582), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2582), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_NONNULL] = ACTIONS(2582), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2582), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2582), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2582), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2582), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2582), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_NORETURN] = ACTIONS(2582), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2582), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2582), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2582), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2582), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2582), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2582), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2582), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2582), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2582), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2582), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2582), - [anon_sym_MOZ_RAII] = ACTIONS(2582), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2582), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2582), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2582), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2582), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2582), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2582), - }, - [1024] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(5259), - [sym_attributed_statement] = STATE(5259), - [sym_labeled_statement] = STATE(5259), - [sym_expression_statement] = STATE(5259), - [sym_if_statement] = STATE(5259), - [sym_switch_statement] = STATE(5259), - [sym_case_statement] = STATE(5259), - [sym_while_statement] = STATE(5259), - [sym_do_statement] = STATE(5259), - [sym_for_statement] = STATE(5259), - [sym_return_statement] = STATE(5259), - [sym_break_statement] = STATE(5259), - [sym_continue_statement] = STATE(5259), - [sym_goto_statement] = STATE(5259), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(5259), - [sym_co_return_statement] = STATE(5259), - [sym_co_yield_statement] = STATE(5259), - [sym_throw_statement] = STATE(5259), - [sym_try_statement] = STATE(5259), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1025] = { - [sym_attribute_declaration] = STATE(882), - [sym_compound_statement] = STATE(163), - [sym_attributed_statement] = STATE(163), - [sym_labeled_statement] = STATE(163), - [sym_expression_statement] = STATE(163), - [sym_if_statement] = STATE(163), - [sym_switch_statement] = STATE(163), - [sym_case_statement] = STATE(163), - [sym_while_statement] = STATE(163), - [sym_do_statement] = STATE(163), - [sym_for_statement] = STATE(163), - [sym_return_statement] = STATE(163), - [sym_break_statement] = STATE(163), - [sym_continue_statement] = STATE(163), - [sym_goto_statement] = STATE(163), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(163), - [sym_co_return_statement] = STATE(163), - [sym_co_yield_statement] = STATE(163), - [sym_throw_statement] = STATE(163), - [sym_try_statement] = STATE(163), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1026] = { - [sym_attribute_declaration] = STATE(882), - [sym_compound_statement] = STATE(161), - [sym_attributed_statement] = STATE(161), - [sym_labeled_statement] = STATE(161), - [sym_expression_statement] = STATE(161), - [sym_if_statement] = STATE(161), - [sym_switch_statement] = STATE(161), - [sym_case_statement] = STATE(161), - [sym_while_statement] = STATE(161), - [sym_do_statement] = STATE(161), - [sym_for_statement] = STATE(161), - [sym_return_statement] = STATE(161), - [sym_break_statement] = STATE(161), - [sym_continue_statement] = STATE(161), - [sym_goto_statement] = STATE(161), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(161), - [sym_co_return_statement] = STATE(161), - [sym_co_yield_statement] = STATE(161), - [sym_throw_statement] = STATE(161), - [sym_try_statement] = STATE(161), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1027] = { - [sym_identifier] = ACTIONS(1803), - [aux_sym_preproc_def_token1] = ACTIONS(1803), - [aux_sym_preproc_if_token1] = ACTIONS(1803), - [aux_sym_preproc_if_token2] = ACTIONS(1803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1803), - [aux_sym_preproc_else_token1] = ACTIONS(1803), - [aux_sym_preproc_elif_token1] = ACTIONS(1803), - [sym_preproc_directive] = ACTIONS(1803), - [anon_sym_LPAREN2] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_AMP_AMP] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1803), - [anon_sym_typedef] = ACTIONS(1803), - [anon_sym_extern] = ACTIONS(1803), - [anon_sym___attribute__] = ACTIONS(1803), - [anon_sym_COLON_COLON] = ACTIONS(1805), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1805), - [anon_sym___declspec] = ACTIONS(1803), - [anon_sym___based] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_register] = ACTIONS(1803), - [anon_sym_inline] = ACTIONS(1803), - [anon_sym_thread_local] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_volatile] = ACTIONS(1803), - [anon_sym_restrict] = ACTIONS(1803), - [anon_sym__Atomic] = ACTIONS(1803), - [anon_sym_mutable] = ACTIONS(1803), - [anon_sym_constexpr] = ACTIONS(1803), - [anon_sym_signed] = ACTIONS(1803), - [anon_sym_unsigned] = ACTIONS(1803), - [anon_sym_long] = ACTIONS(1803), - [anon_sym_short] = ACTIONS(1803), - [sym_primitive_type] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_struct] = ACTIONS(1803), - [anon_sym_union] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1803), - [anon_sym_virtual] = ACTIONS(1803), - [anon_sym_explicit] = ACTIONS(1803), - [anon_sym_public] = ACTIONS(1803), - [anon_sym_private] = ACTIONS(1803), - [anon_sym_protected] = ACTIONS(1803), - [sym_auto] = ACTIONS(1803), - [anon_sym_typename] = ACTIONS(1803), - [anon_sym_template] = ACTIONS(1803), - [anon_sym_operator] = ACTIONS(1803), - [anon_sym_friend] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1803), - [anon_sym_static_assert] = ACTIONS(1803), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1803), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1803), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1803), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1803), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1803), - [anon_sym_MOZ_COLD] = ACTIONS(1803), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1803), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1803), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1803), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1803), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1803), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1803), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1803), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1803), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1803), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1803), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1803), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1803), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1803), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_NONNULL] = ACTIONS(1803), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1803), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1803), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1803), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1803), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1803), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1803), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1803), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1803), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1803), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1803), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1803), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1803), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1803), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1803), - [anon_sym_MOZ_RAII] = ACTIONS(1803), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1803), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1803), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1803), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1803), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1803), - }, - [1028] = { - [sym_attribute_declaration] = STATE(1041), - [sym_compound_statement] = STATE(278), - [sym_attributed_statement] = STATE(278), - [sym_labeled_statement] = STATE(278), - [sym_expression_statement] = STATE(278), - [sym_if_statement] = STATE(278), - [sym_switch_statement] = STATE(278), - [sym_case_statement] = STATE(278), - [sym_while_statement] = STATE(278), - [sym_do_statement] = STATE(278), - [sym_for_statement] = STATE(278), - [sym_return_statement] = STATE(278), - [sym_break_statement] = STATE(278), - [sym_continue_statement] = STATE(278), - [sym_goto_statement] = STATE(278), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(278), - [sym_co_return_statement] = STATE(278), - [sym_co_yield_statement] = STATE(278), - [sym_throw_statement] = STATE(278), - [sym_try_statement] = STATE(278), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1029] = { - [sym_attribute_declaration] = STATE(1041), - [sym_compound_statement] = STATE(279), - [sym_attributed_statement] = STATE(279), - [sym_labeled_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(279), - [sym_co_return_statement] = STATE(279), - [sym_co_yield_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1030] = { - [sym_attribute_declaration] = STATE(1041), - [sym_compound_statement] = STATE(281), - [sym_attributed_statement] = STATE(281), - [sym_labeled_statement] = STATE(281), - [sym_expression_statement] = STATE(281), - [sym_if_statement] = STATE(281), - [sym_switch_statement] = STATE(281), - [sym_case_statement] = STATE(281), - [sym_while_statement] = STATE(281), - [sym_do_statement] = STATE(281), - [sym_for_statement] = STATE(281), - [sym_return_statement] = STATE(281), - [sym_break_statement] = STATE(281), - [sym_continue_statement] = STATE(281), - [sym_goto_statement] = STATE(281), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(281), - [sym_co_return_statement] = STATE(281), - [sym_co_yield_statement] = STATE(281), - [sym_throw_statement] = STATE(281), - [sym_try_statement] = STATE(281), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1031] = { - [sym_attribute_declaration] = STATE(1041), - [sym_compound_statement] = STATE(282), - [sym_attributed_statement] = STATE(282), - [sym_labeled_statement] = STATE(282), - [sym_expression_statement] = STATE(282), - [sym_if_statement] = STATE(282), - [sym_switch_statement] = STATE(282), - [sym_case_statement] = STATE(282), - [sym_while_statement] = STATE(282), - [sym_do_statement] = STATE(282), - [sym_for_statement] = STATE(282), - [sym_return_statement] = STATE(282), - [sym_break_statement] = STATE(282), - [sym_continue_statement] = STATE(282), - [sym_goto_statement] = STATE(282), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(282), - [sym_co_return_statement] = STATE(282), - [sym_co_yield_statement] = STATE(282), - [sym_throw_statement] = STATE(282), - [sym_try_statement] = STATE(282), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1032] = { - [sym_attribute_declaration] = STATE(1046), - [sym_compound_statement] = STATE(385), - [sym_attributed_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_expression_statement] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_case_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_goto_statement] = STATE(385), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(385), - [sym_co_return_statement] = STATE(385), - [sym_co_yield_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1033] = { - [sym_attribute_declaration] = STATE(1041), - [sym_compound_statement] = STATE(283), - [sym_attributed_statement] = STATE(283), - [sym_labeled_statement] = STATE(283), - [sym_expression_statement] = STATE(283), - [sym_if_statement] = STATE(283), - [sym_switch_statement] = STATE(283), - [sym_case_statement] = STATE(283), - [sym_while_statement] = STATE(283), - [sym_do_statement] = STATE(283), - [sym_for_statement] = STATE(283), - [sym_return_statement] = STATE(283), - [sym_break_statement] = STATE(283), - [sym_continue_statement] = STATE(283), - [sym_goto_statement] = STATE(283), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(283), - [sym_co_return_statement] = STATE(283), - [sym_co_yield_statement] = STATE(283), - [sym_throw_statement] = STATE(283), - [sym_try_statement] = STATE(283), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1034] = { - [sym_attribute_declaration] = STATE(1034), - [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__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1034), - [sym_identifier] = ACTIONS(3028), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_BANG] = ACTIONS(2642), - [anon_sym_TILDE] = ACTIONS(2642), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_PLUS] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_AMP] = ACTIONS(2648), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(2654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(3034), - [anon_sym_LBRACK] = ACTIONS(2663), - [sym_primitive_type] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_switch] = ACTIONS(3040), - [anon_sym_case] = ACTIONS(3043), - [anon_sym_default] = ACTIONS(3046), - [anon_sym_while] = ACTIONS(3049), - [anon_sym_do] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3055), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_break] = ACTIONS(3061), - [anon_sym_continue] = ACTIONS(3064), - [anon_sym_goto] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(2702), - [anon_sym_PLUS_PLUS] = ACTIONS(2702), - [anon_sym_sizeof] = ACTIONS(2705), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2711), - [anon_sym_u_SQUOTE] = ACTIONS(2711), - [anon_sym_U_SQUOTE] = ACTIONS(2711), - [anon_sym_u8_SQUOTE] = ACTIONS(2711), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_L_DQUOTE] = ACTIONS(2714), - [anon_sym_u_DQUOTE] = ACTIONS(2714), - [anon_sym_U_DQUOTE] = ACTIONS(2714), - [anon_sym_u8_DQUOTE] = ACTIONS(2714), - [anon_sym_DQUOTE] = ACTIONS(2714), - [sym_true] = ACTIONS(2717), - [sym_false] = ACTIONS(2717), - [sym_null] = ACTIONS(2717), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(2720), - [anon_sym_delete] = ACTIONS(2723), - [anon_sym_throw] = ACTIONS(3070), - [anon_sym_co_return] = ACTIONS(3073), - [anon_sym_co_yield] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3079), - [anon_sym_co_await] = ACTIONS(2738), - [anon_sym_new] = ACTIONS(2741), - [sym_this] = ACTIONS(2717), - [sym_nullptr] = ACTIONS(2717), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_FORWARD] = ACTIONS(2744), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2744), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_PS_GET] = ACTIONS(2744), - [anon_sym_PS_GET_AND_SET] = ACTIONS(2744), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2744), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(2744), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2744), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2744), - [sym_raw_string_literal] = ACTIONS(2747), - }, - [1035] = { - [sym_identifier] = ACTIONS(1815), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token2] = ACTIONS(1815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1815), - [aux_sym_preproc_else_token1] = ACTIONS(1815), - [aux_sym_preproc_elif_token1] = ACTIONS(1815), - [sym_preproc_directive] = ACTIONS(1815), - [anon_sym_LPAREN2] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_typedef] = ACTIONS(1815), - [anon_sym_extern] = ACTIONS(1815), - [anon_sym___attribute__] = ACTIONS(1815), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1817), - [anon_sym___declspec] = ACTIONS(1815), - [anon_sym___based] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_static] = ACTIONS(1815), - [anon_sym_register] = ACTIONS(1815), - [anon_sym_inline] = ACTIONS(1815), - [anon_sym_thread_local] = ACTIONS(1815), - [anon_sym_const] = ACTIONS(1815), - [anon_sym_volatile] = ACTIONS(1815), - [anon_sym_restrict] = ACTIONS(1815), - [anon_sym__Atomic] = ACTIONS(1815), - [anon_sym_mutable] = ACTIONS(1815), - [anon_sym_constexpr] = ACTIONS(1815), - [anon_sym_signed] = ACTIONS(1815), - [anon_sym_unsigned] = ACTIONS(1815), - [anon_sym_long] = ACTIONS(1815), - [anon_sym_short] = ACTIONS(1815), - [sym_primitive_type] = ACTIONS(1815), - [anon_sym_enum] = ACTIONS(1815), - [anon_sym_class] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1815), - [anon_sym_union] = ACTIONS(1815), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1815), - [anon_sym_virtual] = ACTIONS(1815), - [anon_sym_explicit] = ACTIONS(1815), - [anon_sym_public] = ACTIONS(1815), - [anon_sym_private] = ACTIONS(1815), - [anon_sym_protected] = ACTIONS(1815), - [sym_auto] = ACTIONS(1815), - [anon_sym_typename] = ACTIONS(1815), - [anon_sym_template] = ACTIONS(1815), - [anon_sym_operator] = ACTIONS(1815), - [anon_sym_friend] = ACTIONS(1815), - [anon_sym_using] = ACTIONS(1815), - [anon_sym_static_assert] = ACTIONS(1815), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1815), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1815), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1815), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1815), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1815), - [anon_sym_MOZ_COLD] = ACTIONS(1815), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1815), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1815), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1815), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1815), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1815), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1815), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1815), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1815), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1815), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1815), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1815), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1815), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1815), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_NONNULL] = ACTIONS(1815), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1815), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1815), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1815), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1815), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1815), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1815), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1815), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1815), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1815), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1815), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1815), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1815), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1815), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1815), - [anon_sym_MOZ_RAII] = ACTIONS(1815), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1815), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1815), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1815), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1815), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1815), - }, - [1036] = { - [sym_attribute_declaration] = STATE(1046), - [sym_compound_statement] = STATE(382), - [sym_attributed_statement] = STATE(382), - [sym_labeled_statement] = STATE(382), - [sym_expression_statement] = STATE(382), - [sym_if_statement] = STATE(382), - [sym_switch_statement] = STATE(382), - [sym_case_statement] = STATE(382), - [sym_while_statement] = STATE(382), - [sym_do_statement] = STATE(382), - [sym_for_statement] = STATE(382), - [sym_return_statement] = STATE(382), - [sym_break_statement] = STATE(382), - [sym_continue_statement] = STATE(382), - [sym_goto_statement] = STATE(382), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(382), - [sym_co_return_statement] = STATE(382), - [sym_co_yield_statement] = STATE(382), - [sym_throw_statement] = STATE(382), - [sym_try_statement] = STATE(382), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1037] = { - [sym_attribute_declaration] = STATE(866), - [sym_compound_statement] = STATE(4489), - [sym_attributed_statement] = STATE(4489), - [sym_labeled_statement] = STATE(4489), - [sym_expression_statement] = STATE(4489), - [sym_if_statement] = STATE(4489), - [sym_switch_statement] = STATE(4489), - [sym_case_statement] = STATE(4489), - [sym_while_statement] = STATE(4489), - [sym_do_statement] = STATE(4489), - [sym_for_statement] = STATE(4489), - [sym_return_statement] = STATE(4489), - [sym_break_statement] = STATE(4489), - [sym_continue_statement] = STATE(4489), - [sym_goto_statement] = STATE(4489), - [sym__expression] = STATE(2914), - [sym_comma_expression] = STATE(5037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(4489), - [sym_co_return_statement] = STATE(4489), - [sym_co_yield_statement] = STATE(4489), - [sym_throw_statement] = STATE(4489), - [sym_try_statement] = STATE(4489), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(2586), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2616), - [anon_sym_co_yield] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1038] = { - [sym_attribute_declaration] = STATE(1046), - [sym_compound_statement] = STATE(376), - [sym_attributed_statement] = STATE(376), - [sym_labeled_statement] = STATE(376), - [sym_expression_statement] = STATE(376), - [sym_if_statement] = STATE(376), - [sym_switch_statement] = STATE(376), - [sym_case_statement] = STATE(376), - [sym_while_statement] = STATE(376), - [sym_do_statement] = STATE(376), - [sym_for_statement] = STATE(376), - [sym_return_statement] = STATE(376), - [sym_break_statement] = STATE(376), - [sym_continue_statement] = STATE(376), - [sym_goto_statement] = STATE(376), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(376), - [sym_co_return_statement] = STATE(376), - [sym_co_yield_statement] = STATE(376), - [sym_throw_statement] = STATE(376), - [sym_try_statement] = STATE(376), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1039] = { - [sym_identifier] = ACTIONS(1823), - [aux_sym_preproc_def_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1823), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1823), - [aux_sym_preproc_else_token1] = ACTIONS(1823), - [aux_sym_preproc_elif_token1] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1825), - [anon_sym_TILDE] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1825), - [anon_sym_AMP_AMP] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_typedef] = ACTIONS(1823), - [anon_sym_extern] = ACTIONS(1823), - [anon_sym___attribute__] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1825), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1825), - [anon_sym___declspec] = ACTIONS(1823), - [anon_sym___based] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_register] = ACTIONS(1823), - [anon_sym_inline] = ACTIONS(1823), - [anon_sym_thread_local] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_volatile] = ACTIONS(1823), - [anon_sym_restrict] = ACTIONS(1823), - [anon_sym__Atomic] = ACTIONS(1823), - [anon_sym_mutable] = ACTIONS(1823), - [anon_sym_constexpr] = ACTIONS(1823), - [anon_sym_signed] = ACTIONS(1823), - [anon_sym_unsigned] = ACTIONS(1823), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_short] = ACTIONS(1823), - [sym_primitive_type] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [anon_sym_class] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(1823), - [anon_sym_union] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1823), - [anon_sym_virtual] = ACTIONS(1823), - [anon_sym_explicit] = ACTIONS(1823), - [anon_sym_public] = ACTIONS(1823), - [anon_sym_private] = ACTIONS(1823), - [anon_sym_protected] = ACTIONS(1823), - [sym_auto] = ACTIONS(1823), - [anon_sym_typename] = ACTIONS(1823), - [anon_sym_template] = ACTIONS(1823), - [anon_sym_operator] = ACTIONS(1823), - [anon_sym_friend] = ACTIONS(1823), - [anon_sym_using] = ACTIONS(1823), - [anon_sym_static_assert] = ACTIONS(1823), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1823), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1823), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1823), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1823), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1823), - [anon_sym_MOZ_COLD] = ACTIONS(1823), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1823), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1823), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1823), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1823), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1823), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1823), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1823), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1823), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1823), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1823), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1823), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1823), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1823), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_NONNULL] = ACTIONS(1823), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1823), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1823), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1823), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1823), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1823), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1823), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1823), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1823), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1823), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1823), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1823), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1823), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1823), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1823), - [anon_sym_MOZ_RAII] = ACTIONS(1823), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1823), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1823), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1823), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1823), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1823), - }, - [1040] = { - [sym_identifier] = ACTIONS(1887), - [aux_sym_preproc_def_token1] = ACTIONS(1887), - [aux_sym_preproc_if_token1] = ACTIONS(1887), - [aux_sym_preproc_if_token2] = ACTIONS(1887), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1887), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1887), - [aux_sym_preproc_else_token1] = ACTIONS(1887), - [aux_sym_preproc_elif_token1] = ACTIONS(1887), - [sym_preproc_directive] = ACTIONS(1887), - [anon_sym_LPAREN2] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1887), - [anon_sym_typedef] = ACTIONS(1887), - [anon_sym_extern] = ACTIONS(1887), - [anon_sym___attribute__] = ACTIONS(1887), - [anon_sym_COLON_COLON] = ACTIONS(1889), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1889), - [anon_sym___declspec] = ACTIONS(1887), - [anon_sym___based] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_register] = ACTIONS(1887), - [anon_sym_inline] = ACTIONS(1887), - [anon_sym_thread_local] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [anon_sym_volatile] = ACTIONS(1887), - [anon_sym_restrict] = ACTIONS(1887), - [anon_sym__Atomic] = ACTIONS(1887), - [anon_sym_mutable] = ACTIONS(1887), - [anon_sym_constexpr] = ACTIONS(1887), - [anon_sym_signed] = ACTIONS(1887), - [anon_sym_unsigned] = ACTIONS(1887), - [anon_sym_long] = ACTIONS(1887), - [anon_sym_short] = ACTIONS(1887), - [sym_primitive_type] = ACTIONS(1887), - [anon_sym_enum] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1887), - [anon_sym_union] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1887), - [anon_sym_virtual] = ACTIONS(1887), - [anon_sym_explicit] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [sym_auto] = ACTIONS(1887), - [anon_sym_typename] = ACTIONS(1887), - [anon_sym_template] = ACTIONS(1887), - [anon_sym_operator] = ACTIONS(1887), - [anon_sym_friend] = ACTIONS(1887), - [anon_sym_using] = ACTIONS(1887), - [anon_sym_static_assert] = ACTIONS(1887), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1887), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1887), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1887), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1887), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1887), - [anon_sym_MOZ_COLD] = ACTIONS(1887), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1887), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1887), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1887), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1887), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1887), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1887), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1887), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1887), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1887), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1887), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1887), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1887), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1887), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_NONNULL] = ACTIONS(1887), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1887), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1887), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1887), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1887), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1887), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1887), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1887), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1887), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1887), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1887), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1887), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1887), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1887), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1887), - [anon_sym_MOZ_RAII] = ACTIONS(1887), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1887), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1887), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1887), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1887), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1887), - }, - [1041] = { - [sym_attribute_declaration] = STATE(1034), - [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__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [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_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1034), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1042] = { - [sym_attribute_declaration] = STATE(945), - [sym_compound_statement] = STATE(341), - [sym_attributed_statement] = STATE(341), - [sym_labeled_statement] = STATE(341), - [sym_expression_statement] = STATE(341), - [sym_if_statement] = STATE(341), - [sym_switch_statement] = STATE(341), - [sym_case_statement] = STATE(341), - [sym_while_statement] = STATE(341), - [sym_do_statement] = STATE(341), - [sym_for_statement] = STATE(341), - [sym_return_statement] = STATE(341), - [sym_break_statement] = STATE(341), - [sym_continue_statement] = STATE(341), - [sym_goto_statement] = STATE(341), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(341), - [sym_co_return_statement] = STATE(341), - [sym_co_yield_statement] = STATE(341), - [sym_throw_statement] = STATE(341), - [sym_try_statement] = STATE(341), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1043] = { - [sym_identifier] = ACTIONS(3082), - [aux_sym_preproc_def_token1] = ACTIONS(3082), - [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_TILDE] = ACTIONS(3084), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_AMP] = 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_LBRACK] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_register] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym_thread_local] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_volatile] = ACTIONS(3082), - [anon_sym_restrict] = ACTIONS(3082), - [anon_sym__Atomic] = ACTIONS(3082), - [anon_sym_mutable] = ACTIONS(3082), - [anon_sym_constexpr] = ACTIONS(3082), - [anon_sym_signed] = ACTIONS(3082), - [anon_sym_unsigned] = ACTIONS(3082), - [anon_sym_long] = ACTIONS(3082), - [anon_sym_short] = 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), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3082), - [anon_sym_virtual] = ACTIONS(3082), - [anon_sym_explicit] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_protected] = ACTIONS(3082), - [sym_auto] = ACTIONS(3082), - [anon_sym_typename] = ACTIONS(3082), - [anon_sym_template] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_friend] = ACTIONS(3082), - [anon_sym_using] = ACTIONS(3082), - [anon_sym_static_assert] = ACTIONS(3082), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3082), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3082), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3082), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3082), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3082), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3082), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3082), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3082), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3082), - [anon_sym_MOZ_COLD] = ACTIONS(3082), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3082), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3082), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3082), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3082), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3082), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3082), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3082), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3082), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3082), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3082), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3082), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3082), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3082), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3082), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3082), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3082), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3082), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3082), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3082), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3082), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_NONNULL] = ACTIONS(3082), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3082), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3082), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3082), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3082), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3082), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_NORETURN] = ACTIONS(3082), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3082), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3082), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3082), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3082), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3082), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3082), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3082), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3082), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3082), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3082), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3082), - [anon_sym_MOZ_RAII] = ACTIONS(3082), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3082), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3082), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3082), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3082), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3082), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3082), - }, - [1044] = { - [sym_attribute_declaration] = STATE(945), - [sym_compound_statement] = STATE(342), - [sym_attributed_statement] = STATE(342), - [sym_labeled_statement] = STATE(342), - [sym_expression_statement] = STATE(342), - [sym_if_statement] = STATE(342), - [sym_switch_statement] = STATE(342), - [sym_case_statement] = STATE(342), - [sym_while_statement] = STATE(342), - [sym_do_statement] = STATE(342), - [sym_for_statement] = STATE(342), - [sym_return_statement] = STATE(342), - [sym_break_statement] = STATE(342), - [sym_continue_statement] = STATE(342), - [sym_goto_statement] = STATE(342), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(342), - [sym_co_return_statement] = STATE(342), - [sym_co_yield_statement] = STATE(342), - [sym_throw_statement] = STATE(342), - [sym_try_statement] = STATE(342), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1045] = { - [sym_identifier] = ACTIONS(1883), - [aux_sym_preproc_def_token1] = ACTIONS(1883), - [aux_sym_preproc_if_token1] = ACTIONS(1883), - [aux_sym_preproc_if_token2] = ACTIONS(1883), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1883), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1883), - [aux_sym_preproc_else_token1] = ACTIONS(1883), - [aux_sym_preproc_elif_token1] = ACTIONS(1883), - [sym_preproc_directive] = ACTIONS(1883), - [anon_sym_LPAREN2] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1883), - [anon_sym_typedef] = ACTIONS(1883), - [anon_sym_extern] = ACTIONS(1883), - [anon_sym___attribute__] = ACTIONS(1883), - [anon_sym_COLON_COLON] = ACTIONS(1885), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1885), - [anon_sym___declspec] = ACTIONS(1883), - [anon_sym___based] = ACTIONS(1883), - [anon_sym_LBRACK] = ACTIONS(1883), - [anon_sym_static] = ACTIONS(1883), - [anon_sym_register] = ACTIONS(1883), - [anon_sym_inline] = ACTIONS(1883), - [anon_sym_thread_local] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(1883), - [anon_sym_volatile] = ACTIONS(1883), - [anon_sym_restrict] = ACTIONS(1883), - [anon_sym__Atomic] = ACTIONS(1883), - [anon_sym_mutable] = ACTIONS(1883), - [anon_sym_constexpr] = ACTIONS(1883), - [anon_sym_signed] = ACTIONS(1883), - [anon_sym_unsigned] = ACTIONS(1883), - [anon_sym_long] = ACTIONS(1883), - [anon_sym_short] = ACTIONS(1883), - [sym_primitive_type] = ACTIONS(1883), - [anon_sym_enum] = ACTIONS(1883), - [anon_sym_class] = ACTIONS(1883), - [anon_sym_struct] = ACTIONS(1883), - [anon_sym_union] = ACTIONS(1883), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1883), - [anon_sym_virtual] = ACTIONS(1883), - [anon_sym_explicit] = ACTIONS(1883), - [anon_sym_public] = ACTIONS(1883), - [anon_sym_private] = ACTIONS(1883), - [anon_sym_protected] = ACTIONS(1883), - [sym_auto] = ACTIONS(1883), - [anon_sym_typename] = ACTIONS(1883), - [anon_sym_template] = ACTIONS(1883), - [anon_sym_operator] = ACTIONS(1883), - [anon_sym_friend] = ACTIONS(1883), - [anon_sym_using] = ACTIONS(1883), - [anon_sym_static_assert] = ACTIONS(1883), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1883), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1883), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1883), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1883), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1883), - [anon_sym_MOZ_COLD] = ACTIONS(1883), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1883), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1883), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1883), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1883), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1883), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1883), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1883), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1883), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1883), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1883), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1883), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1883), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1883), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_NONNULL] = ACTIONS(1883), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1883), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1883), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1883), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1883), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1883), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1883), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1883), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1883), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1883), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1883), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1883), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1883), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1883), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1883), - [anon_sym_MOZ_RAII] = ACTIONS(1883), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1883), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1883), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1883), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1883), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1883), - }, - [1046] = { - [sym_attribute_declaration] = STATE(1019), - [sym_compound_statement] = STATE(374), - [sym_attributed_statement] = STATE(374), - [sym_labeled_statement] = STATE(374), - [sym_expression_statement] = STATE(374), - [sym_if_statement] = STATE(374), - [sym_switch_statement] = STATE(374), - [sym_case_statement] = STATE(374), - [sym_while_statement] = STATE(374), - [sym_do_statement] = STATE(374), - [sym_for_statement] = STATE(374), - [sym_return_statement] = STATE(374), - [sym_break_statement] = STATE(374), - [sym_continue_statement] = STATE(374), - [sym_goto_statement] = STATE(374), - [sym__expression] = STATE(2840), - [sym_comma_expression] = STATE(4904), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(374), - [sym_co_return_statement] = STATE(374), - [sym_co_yield_statement] = STATE(374), - [sym_throw_statement] = STATE(374), - [sym_try_statement] = STATE(374), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1019), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_case] = ACTIONS(838), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(842), - [anon_sym_do] = ACTIONS(844), - [anon_sym_for] = ACTIONS(846), - [anon_sym_return] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_goto] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(858), - [anon_sym_co_return] = ACTIONS(866), - [anon_sym_co_yield] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1047] = { - [sym_attribute_declaration] = STATE(1041), - [sym_compound_statement] = STATE(400), - [sym_attributed_statement] = STATE(400), - [sym_labeled_statement] = STATE(400), - [sym_expression_statement] = STATE(400), - [sym_if_statement] = STATE(400), - [sym_switch_statement] = STATE(400), - [sym_case_statement] = STATE(400), - [sym_while_statement] = STATE(400), - [sym_do_statement] = STATE(400), - [sym_for_statement] = STATE(400), - [sym_return_statement] = STATE(400), - [sym_break_statement] = STATE(400), - [sym_continue_statement] = STATE(400), - [sym_goto_statement] = STATE(400), - [sym__expression] = STATE(2805), - [sym_comma_expression] = STATE(4908), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(400), - [sym_co_return_statement] = STATE(400), - [sym_co_yield_statement] = STATE(400), - [sym_throw_statement] = STATE(400), - [sym_try_statement] = STATE(400), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(121), - [anon_sym_co_return] = ACTIONS(129), - [anon_sym_co_yield] = ACTIONS(131), - [anon_sym_try] = ACTIONS(133), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1048] = { - [sym_identifier] = ACTIONS(1879), - [aux_sym_preproc_def_token1] = ACTIONS(1879), - [aux_sym_preproc_if_token1] = ACTIONS(1879), - [aux_sym_preproc_if_token2] = ACTIONS(1879), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1879), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1879), - [aux_sym_preproc_else_token1] = ACTIONS(1879), - [aux_sym_preproc_elif_token1] = ACTIONS(1879), - [sym_preproc_directive] = ACTIONS(1879), - [anon_sym_LPAREN2] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_typedef] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym___attribute__] = ACTIONS(1879), - [anon_sym_COLON_COLON] = ACTIONS(1881), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1881), - [anon_sym___declspec] = ACTIONS(1879), - [anon_sym___based] = ACTIONS(1879), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_static] = ACTIONS(1879), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_inline] = ACTIONS(1879), - [anon_sym_thread_local] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [anon_sym_volatile] = ACTIONS(1879), - [anon_sym_restrict] = ACTIONS(1879), - [anon_sym__Atomic] = ACTIONS(1879), - [anon_sym_mutable] = ACTIONS(1879), - [anon_sym_constexpr] = ACTIONS(1879), - [anon_sym_signed] = ACTIONS(1879), - [anon_sym_unsigned] = ACTIONS(1879), - [anon_sym_long] = ACTIONS(1879), - [anon_sym_short] = ACTIONS(1879), - [sym_primitive_type] = ACTIONS(1879), - [anon_sym_enum] = ACTIONS(1879), - [anon_sym_class] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1879), - [anon_sym_union] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1898), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1905), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1879), - [anon_sym_virtual] = ACTIONS(1879), - [anon_sym_explicit] = ACTIONS(1879), - [anon_sym_public] = ACTIONS(1879), - [anon_sym_private] = ACTIONS(1879), - [anon_sym_protected] = ACTIONS(1879), - [sym_auto] = ACTIONS(1879), - [anon_sym_typename] = ACTIONS(1879), - [anon_sym_template] = ACTIONS(1879), - [anon_sym_operator] = ACTIONS(1879), - [anon_sym_friend] = ACTIONS(1879), - [anon_sym_using] = ACTIONS(1879), - [anon_sym_static_assert] = ACTIONS(1879), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1879), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1879), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1879), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1879), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1879), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1879), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1879), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1879), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1879), - [anon_sym_MOZ_COLD] = ACTIONS(1879), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1879), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1879), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1879), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1879), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1879), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1879), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1879), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1879), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1879), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1879), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1879), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1879), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1879), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1879), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1879), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1879), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1879), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1879), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1879), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_NONNULL] = ACTIONS(1879), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1879), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1879), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1879), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1879), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1879), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_NORETURN] = ACTIONS(1879), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1879), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1879), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1879), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1879), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1879), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1879), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1879), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1879), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1879), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), - [anon_sym_MOZ_RAII] = ACTIONS(1879), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1879), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1879), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1879), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1879), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1879), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1879), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1914), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1917), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), }, - [1049] = { - [sym_attribute_declaration] = STATE(882), - [sym_compound_statement] = STATE(159), - [sym_attributed_statement] = STATE(159), - [sym_labeled_statement] = STATE(159), - [sym_expression_statement] = STATE(159), - [sym_if_statement] = STATE(159), - [sym_switch_statement] = STATE(159), - [sym_case_statement] = STATE(159), - [sym_while_statement] = STATE(159), - [sym_do_statement] = STATE(159), - [sym_for_statement] = STATE(159), - [sym_return_statement] = STATE(159), - [sym_break_statement] = STATE(159), - [sym_continue_statement] = STATE(159), - [sym_goto_statement] = STATE(159), - [sym__expression] = STATE(2881), - [sym_comma_expression] = STATE(5226), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(159), - [sym_co_return_statement] = STATE(159), - [sym_co_yield_statement] = STATE(159), - [sym_throw_statement] = STATE(159), - [sym_try_statement] = STATE(159), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(273), - [anon_sym_case] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_return] = ACTIONS(285), - [anon_sym_break] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(289), - [anon_sym_goto] = ACTIONS(291), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(295), - [anon_sym_co_return] = ACTIONS(303), - [anon_sym_co_yield] = ACTIONS(305), - [anon_sym_try] = ACTIONS(307), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1050] = { - [sym_identifier] = ACTIONS(3086), - [aux_sym_preproc_def_token1] = ACTIONS(3086), - [aux_sym_preproc_if_token1] = ACTIONS(3086), - [aux_sym_preproc_if_token2] = ACTIONS(3086), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3086), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3086), - [aux_sym_preproc_else_token1] = ACTIONS(3086), - [aux_sym_preproc_elif_token1] = ACTIONS(3086), - [sym_preproc_directive] = ACTIONS(3086), - [anon_sym_LPAREN2] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(3088), - [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_typedef] = ACTIONS(3086), - [anon_sym_extern] = ACTIONS(3086), - [anon_sym___attribute__] = ACTIONS(3086), - [anon_sym_COLON_COLON] = ACTIONS(3088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3088), - [anon_sym___declspec] = ACTIONS(3086), - [anon_sym___based] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3086), - [anon_sym_static] = ACTIONS(3086), - [anon_sym_register] = ACTIONS(3086), - [anon_sym_inline] = ACTIONS(3086), - [anon_sym_thread_local] = ACTIONS(3086), - [anon_sym_const] = ACTIONS(3086), - [anon_sym_volatile] = ACTIONS(3086), - [anon_sym_restrict] = ACTIONS(3086), - [anon_sym__Atomic] = ACTIONS(3086), - [anon_sym_mutable] = ACTIONS(3086), - [anon_sym_constexpr] = ACTIONS(3086), - [anon_sym_signed] = ACTIONS(3086), - [anon_sym_unsigned] = ACTIONS(3086), - [anon_sym_long] = ACTIONS(3086), - [anon_sym_short] = ACTIONS(3086), - [sym_primitive_type] = ACTIONS(3086), - [anon_sym_enum] = ACTIONS(3086), - [anon_sym_class] = ACTIONS(3086), - [anon_sym_struct] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(3086), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3086), - [anon_sym_virtual] = ACTIONS(3086), - [anon_sym_explicit] = ACTIONS(3086), - [anon_sym_public] = ACTIONS(3086), - [anon_sym_private] = ACTIONS(3086), - [anon_sym_protected] = ACTIONS(3086), - [sym_auto] = ACTIONS(3086), - [anon_sym_typename] = ACTIONS(3086), - [anon_sym_template] = ACTIONS(3086), - [anon_sym_operator] = ACTIONS(3086), - [anon_sym_friend] = ACTIONS(3086), - [anon_sym_using] = ACTIONS(3086), - [anon_sym_static_assert] = ACTIONS(3086), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3086), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3086), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3086), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3086), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3086), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3086), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3086), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3086), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3086), - [anon_sym_MOZ_COLD] = ACTIONS(3086), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3086), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3086), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3086), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3086), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3086), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3086), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3086), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3086), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3086), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3086), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3086), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3086), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3086), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3086), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3086), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3086), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3086), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3086), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3086), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3086), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_NONNULL] = ACTIONS(3086), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3086), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3086), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3086), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3086), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3086), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_NORETURN] = ACTIONS(3086), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3086), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3086), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3086), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3086), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3086), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3086), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3086), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3086), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3086), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3086), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3086), - [anon_sym_MOZ_RAII] = ACTIONS(3086), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3086), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3086), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3086), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3086), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3086), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3086), - }, - [1051] = { + [STATE(308)] = { + [ts_builtin_sym_end] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1974), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1974), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1974), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1974), + [sym_preproc_directive] = ACTIONS(1974), + [anon_sym_LPAREN2] = ACTIONS(1976), + [anon_sym_BANG] = ACTIONS(1976), + [anon_sym_TILDE] = ACTIONS(1976), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP_AMP] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1974), + [anon_sym_virtual] = ACTIONS(1974), + [anon_sym_extern] = ACTIONS(1974), + [anon_sym___attribute__] = ACTIONS(1974), + [anon_sym___attribute] = ACTIONS(1974), + [anon_sym_COLON_COLON] = ACTIONS(1976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1974), + [anon_sym___based] = ACTIONS(1974), + [anon_sym___cdecl] = ACTIONS(1974), + [anon_sym___clrcall] = ACTIONS(1974), + [anon_sym___stdcall] = ACTIONS(1974), + [anon_sym___fastcall] = ACTIONS(1974), + [anon_sym___thiscall] = ACTIONS(1974), + [anon_sym___vectorcall] = ACTIONS(1974), + [anon_sym_LBRACE] = ACTIONS(1976), + [anon_sym_signed] = ACTIONS(1974), + [anon_sym_unsigned] = ACTIONS(1974), + [anon_sym_long] = ACTIONS(1974), + [anon_sym_short] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_register] = ACTIONS(1974), + [anon_sym_inline] = ACTIONS(1974), + [anon_sym___inline] = ACTIONS(1974), + [anon_sym___inline__] = ACTIONS(1974), + [anon_sym___forceinline] = ACTIONS(1974), + [anon_sym_thread_local] = ACTIONS(1974), + [anon_sym___thread] = ACTIONS(1974), + [anon_sym_const] = ACTIONS(1974), + [anon_sym_constexpr] = ACTIONS(1974), + [anon_sym_volatile] = ACTIONS(1974), + [anon_sym_restrict] = ACTIONS(1974), + [anon_sym___restrict__] = ACTIONS(1974), + [anon_sym__Atomic] = ACTIONS(1974), + [anon_sym__Noreturn] = ACTIONS(1974), + [anon_sym_noreturn] = ACTIONS(1974), + [anon_sym__Nonnull] = ACTIONS(1974), + [anon_sym_mutable] = ACTIONS(1974), + [anon_sym_constinit] = ACTIONS(1974), + [anon_sym_consteval] = ACTIONS(1974), + [anon_sym_alignas] = ACTIONS(1974), + [anon_sym__Alignas] = ACTIONS(1974), + [sym_primitive_type] = ACTIONS(1974), + [anon_sym_enum] = ACTIONS(1974), + [anon_sym_class] = ACTIONS(1974), + [anon_sym_struct] = ACTIONS(1974), + [anon_sym_union] = ACTIONS(1974), + [anon_sym_if] = ACTIONS(1974), + [anon_sym_else] = ACTIONS(1974), + [anon_sym_switch] = ACTIONS(1974), + [anon_sym_case] = ACTIONS(1974), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1974), + [anon_sym_do] = ACTIONS(1974), + [anon_sym_for] = ACTIONS(1974), + [anon_sym_return] = ACTIONS(1974), + [anon_sym_break] = ACTIONS(1974), + [anon_sym_continue] = ACTIONS(1974), + [anon_sym_goto] = ACTIONS(1974), + [anon_sym___try] = ACTIONS(1974), + [anon_sym___leave] = ACTIONS(1974), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1976), + [anon_sym_PLUS_PLUS] = ACTIONS(1976), + [anon_sym_sizeof] = ACTIONS(1974), + [anon_sym___alignof__] = ACTIONS(1974), + [anon_sym___alignof] = ACTIONS(1974), + [anon_sym__alignof] = ACTIONS(1974), + [anon_sym_alignof] = ACTIONS(1974), + [anon_sym__Alignof] = ACTIONS(1974), + [anon_sym_offsetof] = ACTIONS(1974), + [anon_sym__Generic] = ACTIONS(1974), + [anon_sym_asm] = ACTIONS(1974), + [anon_sym___asm__] = ACTIONS(1974), + [anon_sym___asm] = ACTIONS(1974), + [sym_number_literal] = ACTIONS(1976), + [anon_sym_L_SQUOTE] = ACTIONS(1976), + [anon_sym_u_SQUOTE] = ACTIONS(1976), + [anon_sym_U_SQUOTE] = ACTIONS(1976), + [anon_sym_u8_SQUOTE] = ACTIONS(1976), + [anon_sym_SQUOTE] = ACTIONS(1976), + [anon_sym_L_DQUOTE] = ACTIONS(1976), + [anon_sym_u_DQUOTE] = ACTIONS(1976), + [anon_sym_U_DQUOTE] = ACTIONS(1976), + [anon_sym_u8_DQUOTE] = ACTIONS(1976), + [anon_sym_DQUOTE] = ACTIONS(1976), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1974), + [anon_sym_nullptr] = ACTIONS(1974), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1974), + [anon_sym_decltype] = ACTIONS(1974), + [anon_sym_explicit] = ACTIONS(1974), + [anon_sym_typename] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1974), + [anon_sym_operator] = ACTIONS(1974), + [anon_sym_try] = ACTIONS(1974), + [anon_sym_delete] = ACTIONS(1974), + [anon_sym_throw] = ACTIONS(1974), + [anon_sym_namespace] = ACTIONS(1974), + [anon_sym_using] = ACTIONS(1974), + [anon_sym_static_assert] = ACTIONS(1974), + [anon_sym_concept] = ACTIONS(1974), + [anon_sym_co_return] = ACTIONS(1974), + [anon_sym_co_yield] = ACTIONS(1974), + [anon_sym_R_DQUOTE] = ACTIONS(1976), + [anon_sym_LR_DQUOTE] = ACTIONS(1976), + [anon_sym_uR_DQUOTE] = ACTIONS(1976), + [anon_sym_UR_DQUOTE] = ACTIONS(1976), + [anon_sym_u8R_DQUOTE] = ACTIONS(1976), + [anon_sym_co_await] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1974), + [anon_sym_requires] = ACTIONS(1974), + [sym_this] = ACTIONS(1974), + [sym_alone_macro] = ACTIONS(1976), + [aux_sym_alone_macro_call_token1] = ACTIONS(1974), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_FORWARD] = ACTIONS(1974), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1974), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_PS_GET] = ACTIONS(1974), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1974), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1974), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1974), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1974), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1974), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1974), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1974), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1974), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1974), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1974), + [anon_sym_MOZ_COLD] = ACTIONS(1974), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1974), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1974), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1974), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1974), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1974), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1974), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1974), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1974), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1974), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1974), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1974), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1974), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1974), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1974), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1974), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1974), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1974), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1974), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1974), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1974), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_NONNULL] = ACTIONS(1974), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1974), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1974), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1974), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1974), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1974), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_NORETURN] = ACTIONS(1974), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1974), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1974), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1974), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1974), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1974), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1974), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1974), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1974), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1974), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1974), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1974), + [anon_sym_MOZ_RAII] = ACTIONS(1974), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1974), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1974), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1974), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1974), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1974), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1974), + }, + [STATE(309)] = { + [ts_builtin_sym_end] = ACTIONS(1982), + [sym_identifier] = ACTIONS(1980), + [aux_sym_preproc_include_token1] = ACTIONS(1980), + [aux_sym_preproc_def_token1] = ACTIONS(1980), + [aux_sym_preproc_if_token1] = ACTIONS(1980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1980), + [sym_preproc_directive] = ACTIONS(1980), + [anon_sym_LPAREN2] = ACTIONS(1982), + [anon_sym_BANG] = ACTIONS(1982), + [anon_sym_TILDE] = ACTIONS(1982), + [anon_sym_DASH] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(1980), + [anon_sym_STAR] = ACTIONS(1982), + [anon_sym_AMP_AMP] = ACTIONS(1982), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym___extension__] = ACTIONS(1980), + [anon_sym_typedef] = ACTIONS(1980), + [anon_sym_virtual] = ACTIONS(1980), + [anon_sym_extern] = ACTIONS(1980), + [anon_sym___attribute__] = ACTIONS(1980), + [anon_sym___attribute] = ACTIONS(1980), + [anon_sym_COLON_COLON] = ACTIONS(1982), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1982), + [anon_sym___declspec] = ACTIONS(1980), + [anon_sym___based] = ACTIONS(1980), + [anon_sym___cdecl] = ACTIONS(1980), + [anon_sym___clrcall] = ACTIONS(1980), + [anon_sym___stdcall] = ACTIONS(1980), + [anon_sym___fastcall] = ACTIONS(1980), + [anon_sym___thiscall] = ACTIONS(1980), + [anon_sym___vectorcall] = ACTIONS(1980), + [anon_sym_LBRACE] = ACTIONS(1982), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_static] = ACTIONS(1980), + [anon_sym_register] = ACTIONS(1980), + [anon_sym_inline] = ACTIONS(1980), + [anon_sym___inline] = ACTIONS(1980), + [anon_sym___inline__] = ACTIONS(1980), + [anon_sym___forceinline] = ACTIONS(1980), + [anon_sym_thread_local] = ACTIONS(1980), + [anon_sym___thread] = ACTIONS(1980), + [anon_sym_const] = ACTIONS(1980), + [anon_sym_constexpr] = ACTIONS(1980), + [anon_sym_volatile] = ACTIONS(1980), + [anon_sym_restrict] = ACTIONS(1980), + [anon_sym___restrict__] = ACTIONS(1980), + [anon_sym__Atomic] = ACTIONS(1980), + [anon_sym__Noreturn] = ACTIONS(1980), + [anon_sym_noreturn] = ACTIONS(1980), + [anon_sym__Nonnull] = ACTIONS(1980), + [anon_sym_mutable] = ACTIONS(1980), + [anon_sym_constinit] = ACTIONS(1980), + [anon_sym_consteval] = ACTIONS(1980), + [anon_sym_alignas] = ACTIONS(1980), + [anon_sym__Alignas] = ACTIONS(1980), + [sym_primitive_type] = ACTIONS(1980), + [anon_sym_enum] = ACTIONS(1980), + [anon_sym_class] = ACTIONS(1980), + [anon_sym_struct] = ACTIONS(1980), + [anon_sym_union] = ACTIONS(1980), + [anon_sym_if] = ACTIONS(1980), + [anon_sym_else] = ACTIONS(1980), + [anon_sym_switch] = ACTIONS(1980), + [anon_sym_case] = ACTIONS(1980), + [anon_sym_default] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [anon_sym_do] = ACTIONS(1980), + [anon_sym_for] = ACTIONS(1980), + [anon_sym_return] = ACTIONS(1980), + [anon_sym_break] = ACTIONS(1980), + [anon_sym_continue] = ACTIONS(1980), + [anon_sym_goto] = ACTIONS(1980), + [anon_sym___try] = ACTIONS(1980), + [anon_sym___leave] = ACTIONS(1980), + [anon_sym_not] = ACTIONS(1980), + [anon_sym_compl] = ACTIONS(1980), + [anon_sym_DASH_DASH] = ACTIONS(1982), + [anon_sym_PLUS_PLUS] = ACTIONS(1982), + [anon_sym_sizeof] = ACTIONS(1980), + [anon_sym___alignof__] = ACTIONS(1980), + [anon_sym___alignof] = ACTIONS(1980), + [anon_sym__alignof] = ACTIONS(1980), + [anon_sym_alignof] = ACTIONS(1980), + [anon_sym__Alignof] = ACTIONS(1980), + [anon_sym_offsetof] = ACTIONS(1980), + [anon_sym__Generic] = ACTIONS(1980), + [anon_sym_asm] = ACTIONS(1980), + [anon_sym___asm__] = ACTIONS(1980), + [anon_sym___asm] = ACTIONS(1980), + [sym_number_literal] = ACTIONS(1982), + [anon_sym_L_SQUOTE] = ACTIONS(1982), + [anon_sym_u_SQUOTE] = ACTIONS(1982), + [anon_sym_U_SQUOTE] = ACTIONS(1982), + [anon_sym_u8_SQUOTE] = ACTIONS(1982), + [anon_sym_SQUOTE] = ACTIONS(1982), + [anon_sym_L_DQUOTE] = ACTIONS(1982), + [anon_sym_u_DQUOTE] = ACTIONS(1982), + [anon_sym_U_DQUOTE] = ACTIONS(1982), + [anon_sym_u8_DQUOTE] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(1982), + [sym_true] = ACTIONS(1980), + [sym_false] = ACTIONS(1980), + [anon_sym_NULL] = ACTIONS(1980), + [anon_sym_nullptr] = ACTIONS(1980), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1980), + [anon_sym_decltype] = ACTIONS(1980), + [anon_sym_explicit] = ACTIONS(1980), + [anon_sym_typename] = ACTIONS(1980), + [anon_sym_template] = ACTIONS(1980), + [anon_sym_operator] = ACTIONS(1980), + [anon_sym_try] = ACTIONS(1980), + [anon_sym_delete] = ACTIONS(1980), + [anon_sym_throw] = ACTIONS(1980), + [anon_sym_namespace] = ACTIONS(1980), + [anon_sym_using] = ACTIONS(1980), + [anon_sym_static_assert] = ACTIONS(1980), + [anon_sym_concept] = ACTIONS(1980), + [anon_sym_co_return] = ACTIONS(1980), + [anon_sym_co_yield] = ACTIONS(1980), + [anon_sym_R_DQUOTE] = ACTIONS(1982), + [anon_sym_LR_DQUOTE] = ACTIONS(1982), + [anon_sym_uR_DQUOTE] = ACTIONS(1982), + [anon_sym_UR_DQUOTE] = ACTIONS(1982), + [anon_sym_u8R_DQUOTE] = ACTIONS(1982), + [anon_sym_co_await] = ACTIONS(1980), + [anon_sym_new] = ACTIONS(1980), + [anon_sym_requires] = ACTIONS(1980), + [sym_this] = ACTIONS(1980), + [sym_alone_macro] = ACTIONS(1982), + [aux_sym_alone_macro_call_token1] = ACTIONS(1980), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_FORWARD] = ACTIONS(1980), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1980), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_PS_GET] = ACTIONS(1980), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1980), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1980), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1980), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1980), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1980), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1980), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1980), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1980), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1980), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1980), + [anon_sym_MOZ_COLD] = ACTIONS(1980), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1980), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1980), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1980), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1980), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1980), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1980), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1980), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1980), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1980), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1980), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1980), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1980), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1980), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1980), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1980), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1980), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1980), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1980), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1980), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1980), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_NONNULL] = ACTIONS(1980), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1980), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1980), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1980), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1980), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1980), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_NORETURN] = ACTIONS(1980), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1980), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1980), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1980), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1980), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1980), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1980), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1980), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1980), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1980), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1980), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1980), + [anon_sym_MOZ_RAII] = ACTIONS(1980), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1980), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1980), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1980), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1980), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1980), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1980), + }, + [STATE(310)] = { + [sym_catch_clause] = STATE(249), + [aux_sym_constructor_try_statement_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(1943), + [aux_sym_preproc_include_token1] = ACTIONS(1943), + [aux_sym_preproc_def_token1] = ACTIONS(1943), + [aux_sym_preproc_if_token1] = ACTIONS(1943), + [aux_sym_preproc_if_token2] = ACTIONS(1943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1943), + [sym_preproc_directive] = ACTIONS(1943), + [anon_sym_LPAREN2] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_AMP_AMP] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_SEMI] = ACTIONS(1945), + [anon_sym___extension__] = ACTIONS(1943), + [anon_sym_typedef] = ACTIONS(1943), + [anon_sym_virtual] = ACTIONS(1943), + [anon_sym_extern] = ACTIONS(1943), + [anon_sym___attribute__] = ACTIONS(1943), + [anon_sym___attribute] = ACTIONS(1943), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1945), + [anon_sym___declspec] = ACTIONS(1943), + [anon_sym___based] = ACTIONS(1943), + [anon_sym___cdecl] = ACTIONS(1943), + [anon_sym___clrcall] = ACTIONS(1943), + [anon_sym___stdcall] = ACTIONS(1943), + [anon_sym___fastcall] = ACTIONS(1943), + [anon_sym___thiscall] = ACTIONS(1943), + [anon_sym___vectorcall] = ACTIONS(1943), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_signed] = ACTIONS(1943), + [anon_sym_unsigned] = ACTIONS(1943), + [anon_sym_long] = ACTIONS(1943), + [anon_sym_short] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_static] = ACTIONS(1943), + [anon_sym_register] = ACTIONS(1943), + [anon_sym_inline] = ACTIONS(1943), + [anon_sym___inline] = ACTIONS(1943), + [anon_sym___inline__] = ACTIONS(1943), + [anon_sym___forceinline] = ACTIONS(1943), + [anon_sym_thread_local] = ACTIONS(1943), + [anon_sym___thread] = ACTIONS(1943), + [anon_sym_const] = ACTIONS(1943), + [anon_sym_constexpr] = ACTIONS(1943), + [anon_sym_volatile] = ACTIONS(1943), + [anon_sym_restrict] = ACTIONS(1943), + [anon_sym___restrict__] = ACTIONS(1943), + [anon_sym__Atomic] = ACTIONS(1943), + [anon_sym__Noreturn] = ACTIONS(1943), + [anon_sym_noreturn] = ACTIONS(1943), + [anon_sym__Nonnull] = ACTIONS(1943), + [anon_sym_mutable] = ACTIONS(1943), + [anon_sym_constinit] = ACTIONS(1943), + [anon_sym_consteval] = ACTIONS(1943), + [anon_sym_alignas] = ACTIONS(1943), + [anon_sym__Alignas] = ACTIONS(1943), + [sym_primitive_type] = ACTIONS(1943), + [anon_sym_enum] = ACTIONS(1943), + [anon_sym_class] = ACTIONS(1943), + [anon_sym_struct] = ACTIONS(1943), + [anon_sym_union] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(1943), + [anon_sym_switch] = ACTIONS(1943), + [anon_sym_case] = ACTIONS(1943), + [anon_sym_default] = ACTIONS(1943), + [anon_sym_while] = ACTIONS(1943), + [anon_sym_do] = ACTIONS(1943), + [anon_sym_for] = ACTIONS(1943), + [anon_sym_return] = ACTIONS(1943), + [anon_sym_break] = ACTIONS(1943), + [anon_sym_continue] = ACTIONS(1943), + [anon_sym_goto] = ACTIONS(1943), + [anon_sym___try] = ACTIONS(1943), + [anon_sym___leave] = ACTIONS(1943), + [anon_sym_not] = ACTIONS(1943), + [anon_sym_compl] = ACTIONS(1943), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_sizeof] = ACTIONS(1943), + [anon_sym___alignof__] = ACTIONS(1943), + [anon_sym___alignof] = ACTIONS(1943), + [anon_sym__alignof] = ACTIONS(1943), + [anon_sym_alignof] = ACTIONS(1943), + [anon_sym__Alignof] = ACTIONS(1943), + [anon_sym_offsetof] = ACTIONS(1943), + [anon_sym__Generic] = ACTIONS(1943), + [anon_sym_asm] = ACTIONS(1943), + [anon_sym___asm__] = ACTIONS(1943), + [anon_sym___asm] = ACTIONS(1943), + [sym_number_literal] = ACTIONS(1945), + [anon_sym_L_SQUOTE] = ACTIONS(1945), + [anon_sym_u_SQUOTE] = ACTIONS(1945), + [anon_sym_U_SQUOTE] = ACTIONS(1945), + [anon_sym_u8_SQUOTE] = ACTIONS(1945), + [anon_sym_SQUOTE] = ACTIONS(1945), + [anon_sym_L_DQUOTE] = ACTIONS(1945), + [anon_sym_u_DQUOTE] = ACTIONS(1945), + [anon_sym_U_DQUOTE] = ACTIONS(1945), + [anon_sym_u8_DQUOTE] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [sym_true] = ACTIONS(1943), + [sym_false] = ACTIONS(1943), + [anon_sym_NULL] = ACTIONS(1943), + [anon_sym_nullptr] = ACTIONS(1943), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1943), + [anon_sym_decltype] = ACTIONS(1943), + [anon_sym_explicit] = ACTIONS(1943), + [anon_sym_typename] = ACTIONS(1943), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_operator] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1943), + [anon_sym_delete] = ACTIONS(1943), + [anon_sym_throw] = ACTIONS(1943), + [anon_sym_namespace] = ACTIONS(1943), + [anon_sym_using] = ACTIONS(1943), + [anon_sym_static_assert] = ACTIONS(1943), + [anon_sym_concept] = ACTIONS(1943), + [anon_sym_co_return] = ACTIONS(1943), + [anon_sym_co_yield] = ACTIONS(1943), + [anon_sym_catch] = ACTIONS(2311), + [anon_sym_R_DQUOTE] = ACTIONS(1945), + [anon_sym_LR_DQUOTE] = ACTIONS(1945), + [anon_sym_uR_DQUOTE] = ACTIONS(1945), + [anon_sym_UR_DQUOTE] = ACTIONS(1945), + [anon_sym_u8R_DQUOTE] = ACTIONS(1945), + [anon_sym_co_await] = ACTIONS(1943), + [anon_sym_new] = ACTIONS(1943), + [anon_sym_requires] = ACTIONS(1943), + [sym_this] = ACTIONS(1943), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1943), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_FORWARD] = ACTIONS(1943), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1943), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1943), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1943), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1943), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_PS_GET] = ACTIONS(1943), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1943), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1943), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1943), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1943), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1943), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1943), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1943), + [anon_sym_MOZ_COLD] = ACTIONS(1943), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1943), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1943), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1943), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1943), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1943), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1943), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1943), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1943), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1943), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1943), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1943), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1943), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1943), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_NONNULL] = ACTIONS(1943), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1943), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1943), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1943), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1943), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1943), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1943), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1943), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1943), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1943), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1943), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1943), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1943), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1943), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1943), + [anon_sym_MOZ_RAII] = ACTIONS(1943), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1943), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1943), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1943), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1943), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1943), + }, + [STATE(311)] = { + [sym_catch_clause] = STATE(249), + [aux_sym_constructor_try_statement_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(1939), + [aux_sym_preproc_include_token1] = ACTIONS(1939), + [aux_sym_preproc_def_token1] = ACTIONS(1939), + [aux_sym_preproc_if_token1] = ACTIONS(1939), + [aux_sym_preproc_if_token2] = ACTIONS(1939), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1939), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1939), + [sym_preproc_directive] = ACTIONS(1939), + [anon_sym_LPAREN2] = ACTIONS(1941), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym___extension__] = ACTIONS(1939), + [anon_sym_typedef] = ACTIONS(1939), + [anon_sym_virtual] = ACTIONS(1939), + [anon_sym_extern] = ACTIONS(1939), + [anon_sym___attribute__] = ACTIONS(1939), + [anon_sym___attribute] = ACTIONS(1939), + [anon_sym_COLON_COLON] = ACTIONS(1941), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1941), + [anon_sym___declspec] = ACTIONS(1939), + [anon_sym___based] = ACTIONS(1939), + [anon_sym___cdecl] = ACTIONS(1939), + [anon_sym___clrcall] = ACTIONS(1939), + [anon_sym___stdcall] = ACTIONS(1939), + [anon_sym___fastcall] = ACTIONS(1939), + [anon_sym___thiscall] = ACTIONS(1939), + [anon_sym___vectorcall] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_signed] = ACTIONS(1939), + [anon_sym_unsigned] = ACTIONS(1939), + [anon_sym_long] = ACTIONS(1939), + [anon_sym_short] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1939), + [anon_sym_static] = ACTIONS(1939), + [anon_sym_register] = ACTIONS(1939), + [anon_sym_inline] = ACTIONS(1939), + [anon_sym___inline] = ACTIONS(1939), + [anon_sym___inline__] = ACTIONS(1939), + [anon_sym___forceinline] = ACTIONS(1939), + [anon_sym_thread_local] = ACTIONS(1939), + [anon_sym___thread] = ACTIONS(1939), + [anon_sym_const] = ACTIONS(1939), + [anon_sym_constexpr] = ACTIONS(1939), + [anon_sym_volatile] = ACTIONS(1939), + [anon_sym_restrict] = ACTIONS(1939), + [anon_sym___restrict__] = ACTIONS(1939), + [anon_sym__Atomic] = ACTIONS(1939), + [anon_sym__Noreturn] = ACTIONS(1939), + [anon_sym_noreturn] = ACTIONS(1939), + [anon_sym__Nonnull] = ACTIONS(1939), + [anon_sym_mutable] = ACTIONS(1939), + [anon_sym_constinit] = ACTIONS(1939), + [anon_sym_consteval] = ACTIONS(1939), + [anon_sym_alignas] = ACTIONS(1939), + [anon_sym__Alignas] = ACTIONS(1939), + [sym_primitive_type] = ACTIONS(1939), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_class] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(1939), + [anon_sym_union] = ACTIONS(1939), + [anon_sym_if] = ACTIONS(1939), + [anon_sym_switch] = ACTIONS(1939), + [anon_sym_case] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(1939), + [anon_sym_while] = ACTIONS(1939), + [anon_sym_do] = ACTIONS(1939), + [anon_sym_for] = ACTIONS(1939), + [anon_sym_return] = ACTIONS(1939), + [anon_sym_break] = ACTIONS(1939), + [anon_sym_continue] = ACTIONS(1939), + [anon_sym_goto] = ACTIONS(1939), + [anon_sym___try] = ACTIONS(1939), + [anon_sym___leave] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1941), + [anon_sym_PLUS_PLUS] = ACTIONS(1941), + [anon_sym_sizeof] = ACTIONS(1939), + [anon_sym___alignof__] = ACTIONS(1939), + [anon_sym___alignof] = ACTIONS(1939), + [anon_sym__alignof] = ACTIONS(1939), + [anon_sym_alignof] = ACTIONS(1939), + [anon_sym__Alignof] = ACTIONS(1939), + [anon_sym_offsetof] = ACTIONS(1939), + [anon_sym__Generic] = ACTIONS(1939), + [anon_sym_asm] = ACTIONS(1939), + [anon_sym___asm__] = ACTIONS(1939), + [anon_sym___asm] = ACTIONS(1939), + [sym_number_literal] = ACTIONS(1941), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1941), + [anon_sym_u_DQUOTE] = ACTIONS(1941), + [anon_sym_U_DQUOTE] = ACTIONS(1941), + [anon_sym_u8_DQUOTE] = ACTIONS(1941), + [anon_sym_DQUOTE] = ACTIONS(1941), + [sym_true] = ACTIONS(1939), + [sym_false] = ACTIONS(1939), + [anon_sym_NULL] = ACTIONS(1939), + [anon_sym_nullptr] = ACTIONS(1939), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1939), + [anon_sym_decltype] = ACTIONS(1939), + [anon_sym_explicit] = ACTIONS(1939), + [anon_sym_typename] = ACTIONS(1939), + [anon_sym_template] = ACTIONS(1939), + [anon_sym_operator] = ACTIONS(1939), + [anon_sym_try] = ACTIONS(1939), + [anon_sym_delete] = ACTIONS(1939), + [anon_sym_throw] = ACTIONS(1939), + [anon_sym_namespace] = ACTIONS(1939), + [anon_sym_using] = ACTIONS(1939), + [anon_sym_static_assert] = ACTIONS(1939), + [anon_sym_concept] = ACTIONS(1939), + [anon_sym_co_return] = ACTIONS(1939), + [anon_sym_co_yield] = ACTIONS(1939), + [anon_sym_catch] = ACTIONS(2311), + [anon_sym_R_DQUOTE] = ACTIONS(1941), + [anon_sym_LR_DQUOTE] = ACTIONS(1941), + [anon_sym_uR_DQUOTE] = ACTIONS(1941), + [anon_sym_UR_DQUOTE] = ACTIONS(1941), + [anon_sym_u8R_DQUOTE] = ACTIONS(1941), + [anon_sym_co_await] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1939), + [anon_sym_requires] = ACTIONS(1939), + [sym_this] = ACTIONS(1939), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1939), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_FORWARD] = ACTIONS(1939), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1939), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1939), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1939), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1939), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_PS_GET] = ACTIONS(1939), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1939), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1939), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1939), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1939), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1939), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1939), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1939), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1939), + [anon_sym_MOZ_COLD] = ACTIONS(1939), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1939), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1939), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1939), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1939), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1939), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1939), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1939), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1939), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1939), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1939), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1939), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1939), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1939), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_NONNULL] = ACTIONS(1939), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1939), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1939), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1939), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1939), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1939), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1939), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1939), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1939), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1939), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1939), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1939), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1939), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1939), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1939), + [anon_sym_MOZ_RAII] = ACTIONS(1939), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1939), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1939), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1939), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1939), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1939), + }, + [STATE(312)] = { + [sym_expression] = STATE(3920), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(2461), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(2464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(2467), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1914), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1917), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), + }, + [STATE(313)] = { + [ts_builtin_sym_end] = ACTIONS(2014), + [sym_identifier] = ACTIONS(2012), + [aux_sym_preproc_include_token1] = ACTIONS(2012), + [aux_sym_preproc_def_token1] = ACTIONS(2012), + [aux_sym_preproc_if_token1] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2012), + [sym_preproc_directive] = ACTIONS(2012), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_TILDE] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_PLUS] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym___extension__] = ACTIONS(2012), + [anon_sym_typedef] = ACTIONS(2012), + [anon_sym_virtual] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym___attribute__] = ACTIONS(2012), + [anon_sym___attribute] = ACTIONS(2012), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2014), + [anon_sym___declspec] = ACTIONS(2012), + [anon_sym___based] = ACTIONS(2012), + [anon_sym___cdecl] = ACTIONS(2012), + [anon_sym___clrcall] = ACTIONS(2012), + [anon_sym___stdcall] = ACTIONS(2012), + [anon_sym___fastcall] = ACTIONS(2012), + [anon_sym___thiscall] = ACTIONS(2012), + [anon_sym___vectorcall] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_signed] = ACTIONS(2012), + [anon_sym_unsigned] = ACTIONS(2012), + [anon_sym_long] = ACTIONS(2012), + [anon_sym_short] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2012), + [anon_sym_inline] = ACTIONS(2012), + [anon_sym___inline] = ACTIONS(2012), + [anon_sym___inline__] = ACTIONS(2012), + [anon_sym___forceinline] = ACTIONS(2012), + [anon_sym_thread_local] = ACTIONS(2012), + [anon_sym___thread] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_constexpr] = ACTIONS(2012), + [anon_sym_volatile] = ACTIONS(2012), + [anon_sym_restrict] = ACTIONS(2012), + [anon_sym___restrict__] = ACTIONS(2012), + [anon_sym__Atomic] = ACTIONS(2012), + [anon_sym__Noreturn] = ACTIONS(2012), + [anon_sym_noreturn] = ACTIONS(2012), + [anon_sym__Nonnull] = ACTIONS(2012), + [anon_sym_mutable] = ACTIONS(2012), + [anon_sym_constinit] = ACTIONS(2012), + [anon_sym_consteval] = ACTIONS(2012), + [anon_sym_alignas] = ACTIONS(2012), + [anon_sym__Alignas] = ACTIONS(2012), + [sym_primitive_type] = ACTIONS(2012), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(2012), + [anon_sym_struct] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_else] = ACTIONS(2012), + [anon_sym_switch] = ACTIONS(2012), + [anon_sym_case] = ACTIONS(2012), + [anon_sym_default] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_do] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_goto] = ACTIONS(2012), + [anon_sym___try] = ACTIONS(2012), + [anon_sym___leave] = ACTIONS(2012), + [anon_sym_not] = ACTIONS(2012), + [anon_sym_compl] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2014), + [anon_sym_PLUS_PLUS] = ACTIONS(2014), + [anon_sym_sizeof] = ACTIONS(2012), + [anon_sym___alignof__] = ACTIONS(2012), + [anon_sym___alignof] = ACTIONS(2012), + [anon_sym__alignof] = ACTIONS(2012), + [anon_sym_alignof] = ACTIONS(2012), + [anon_sym__Alignof] = ACTIONS(2012), + [anon_sym_offsetof] = ACTIONS(2012), + [anon_sym__Generic] = ACTIONS(2012), + [anon_sym_asm] = ACTIONS(2012), + [anon_sym___asm__] = ACTIONS(2012), + [anon_sym___asm] = ACTIONS(2012), + [sym_number_literal] = ACTIONS(2014), + [anon_sym_L_SQUOTE] = ACTIONS(2014), + [anon_sym_u_SQUOTE] = ACTIONS(2014), + [anon_sym_U_SQUOTE] = ACTIONS(2014), + [anon_sym_u8_SQUOTE] = ACTIONS(2014), + [anon_sym_SQUOTE] = ACTIONS(2014), + [anon_sym_L_DQUOTE] = ACTIONS(2014), + [anon_sym_u_DQUOTE] = ACTIONS(2014), + [anon_sym_U_DQUOTE] = ACTIONS(2014), + [anon_sym_u8_DQUOTE] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym_true] = ACTIONS(2012), + [sym_false] = ACTIONS(2012), + [anon_sym_NULL] = ACTIONS(2012), + [anon_sym_nullptr] = ACTIONS(2012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2012), + [anon_sym_decltype] = ACTIONS(2012), + [anon_sym_explicit] = ACTIONS(2012), + [anon_sym_typename] = ACTIONS(2012), + [anon_sym_template] = ACTIONS(2012), + [anon_sym_operator] = ACTIONS(2012), + [anon_sym_try] = ACTIONS(2012), + [anon_sym_delete] = ACTIONS(2012), + [anon_sym_throw] = ACTIONS(2012), + [anon_sym_namespace] = ACTIONS(2012), + [anon_sym_using] = ACTIONS(2012), + [anon_sym_static_assert] = ACTIONS(2012), + [anon_sym_concept] = ACTIONS(2012), + [anon_sym_co_return] = ACTIONS(2012), + [anon_sym_co_yield] = ACTIONS(2012), + [anon_sym_R_DQUOTE] = ACTIONS(2014), + [anon_sym_LR_DQUOTE] = ACTIONS(2014), + [anon_sym_uR_DQUOTE] = ACTIONS(2014), + [anon_sym_UR_DQUOTE] = ACTIONS(2014), + [anon_sym_u8R_DQUOTE] = ACTIONS(2014), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2012), + [anon_sym_requires] = ACTIONS(2012), + [sym_this] = ACTIONS(2012), + [sym_alone_macro] = ACTIONS(2014), + [aux_sym_alone_macro_call_token1] = ACTIONS(2012), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_FORWARD] = ACTIONS(2012), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_PS_GET] = ACTIONS(2012), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2012), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2012), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2012), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2012), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2012), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2012), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2012), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2012), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2012), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2012), + [anon_sym_MOZ_COLD] = ACTIONS(2012), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2012), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2012), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2012), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2012), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2012), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2012), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2012), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2012), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2012), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2012), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2012), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2012), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2012), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2012), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2012), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2012), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2012), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2012), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2012), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2012), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_NONNULL] = ACTIONS(2012), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2012), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2012), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2012), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2012), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2012), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_NORETURN] = ACTIONS(2012), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2012), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2012), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2012), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2012), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2012), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2012), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2012), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2012), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2012), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2012), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2012), + [anon_sym_MOZ_RAII] = ACTIONS(2012), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2012), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2012), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2012), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2012), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2012), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2012), + }, + [STATE(314)] = { + [ts_builtin_sym_end] = ACTIONS(2018), + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2016), + [aux_sym_preproc_def_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [sym_preproc_directive] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_AMP_AMP] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2016), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym___extension__] = ACTIONS(2016), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_virtual] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym_COLON_COLON] = ACTIONS(2018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2018), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___based] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [anon_sym___inline] = ACTIONS(2016), + [anon_sym___inline__] = ACTIONS(2016), + [anon_sym___forceinline] = ACTIONS(2016), + [anon_sym_thread_local] = ACTIONS(2016), + [anon_sym___thread] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_constexpr] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym___restrict__] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym__Noreturn] = ACTIONS(2016), + [anon_sym_noreturn] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym_mutable] = ACTIONS(2016), + [anon_sym_constinit] = ACTIONS(2016), + [anon_sym_consteval] = ACTIONS(2016), + [anon_sym_alignas] = ACTIONS(2016), + [anon_sym__Alignas] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_class] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_else] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym___try] = ACTIONS(2016), + [anon_sym___leave] = ACTIONS(2016), + [anon_sym_not] = ACTIONS(2016), + [anon_sym_compl] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [anon_sym___alignof__] = ACTIONS(2016), + [anon_sym___alignof] = ACTIONS(2016), + [anon_sym__alignof] = ACTIONS(2016), + [anon_sym_alignof] = ACTIONS(2016), + [anon_sym__Alignof] = ACTIONS(2016), + [anon_sym_offsetof] = ACTIONS(2016), + [anon_sym__Generic] = ACTIONS(2016), + [anon_sym_asm] = ACTIONS(2016), + [anon_sym___asm__] = ACTIONS(2016), + [anon_sym___asm] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [anon_sym_NULL] = ACTIONS(2016), + [anon_sym_nullptr] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2016), + [anon_sym_decltype] = ACTIONS(2016), + [anon_sym_explicit] = ACTIONS(2016), + [anon_sym_typename] = ACTIONS(2016), + [anon_sym_template] = ACTIONS(2016), + [anon_sym_operator] = ACTIONS(2016), + [anon_sym_try] = ACTIONS(2016), + [anon_sym_delete] = ACTIONS(2016), + [anon_sym_throw] = ACTIONS(2016), + [anon_sym_namespace] = ACTIONS(2016), + [anon_sym_using] = ACTIONS(2016), + [anon_sym_static_assert] = ACTIONS(2016), + [anon_sym_concept] = ACTIONS(2016), + [anon_sym_co_return] = ACTIONS(2016), + [anon_sym_co_yield] = ACTIONS(2016), + [anon_sym_R_DQUOTE] = ACTIONS(2018), + [anon_sym_LR_DQUOTE] = ACTIONS(2018), + [anon_sym_uR_DQUOTE] = ACTIONS(2018), + [anon_sym_UR_DQUOTE] = ACTIONS(2018), + [anon_sym_u8R_DQUOTE] = ACTIONS(2018), + [anon_sym_co_await] = ACTIONS(2016), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2016), + [sym_this] = ACTIONS(2016), + [sym_alone_macro] = ACTIONS(2018), + [aux_sym_alone_macro_call_token1] = ACTIONS(2016), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_FORWARD] = ACTIONS(2016), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_PS_GET] = ACTIONS(2016), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2016), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2016), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2016), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2016), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2016), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2016), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2016), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2016), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2016), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2016), + [anon_sym_MOZ_COLD] = ACTIONS(2016), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2016), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2016), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2016), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2016), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2016), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2016), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2016), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2016), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2016), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2016), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2016), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2016), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2016), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2016), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2016), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2016), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2016), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2016), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2016), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2016), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_NONNULL] = ACTIONS(2016), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2016), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2016), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2016), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2016), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2016), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_NORETURN] = ACTIONS(2016), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2016), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2016), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2016), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2016), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2016), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2016), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2016), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2016), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2016), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2016), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2016), + [anon_sym_MOZ_RAII] = ACTIONS(2016), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2016), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2016), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2016), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2016), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2016), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2016), + }, + [STATE(315)] = { + [ts_builtin_sym_end] = ACTIONS(2118), + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2116), + [aux_sym_preproc_def_token1] = ACTIONS(2116), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [sym_preproc_directive] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_AMP_AMP] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym___extension__] = ACTIONS(2116), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_virtual] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym_COLON_COLON] = ACTIONS(2118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2118), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___based] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2116), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [anon_sym___inline] = ACTIONS(2116), + [anon_sym___inline__] = ACTIONS(2116), + [anon_sym___forceinline] = ACTIONS(2116), + [anon_sym_thread_local] = ACTIONS(2116), + [anon_sym___thread] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_constexpr] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym___restrict__] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym__Noreturn] = ACTIONS(2116), + [anon_sym_noreturn] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym_mutable] = ACTIONS(2116), + [anon_sym_constinit] = ACTIONS(2116), + [anon_sym_consteval] = ACTIONS(2116), + [anon_sym_alignas] = ACTIONS(2116), + [anon_sym__Alignas] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym___try] = ACTIONS(2116), + [anon_sym___leave] = ACTIONS(2116), + [anon_sym_not] = ACTIONS(2116), + [anon_sym_compl] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [anon_sym___alignof__] = ACTIONS(2116), + [anon_sym___alignof] = ACTIONS(2116), + [anon_sym__alignof] = ACTIONS(2116), + [anon_sym_alignof] = ACTIONS(2116), + [anon_sym__Alignof] = ACTIONS(2116), + [anon_sym_offsetof] = ACTIONS(2116), + [anon_sym__Generic] = ACTIONS(2116), + [anon_sym_asm] = ACTIONS(2116), + [anon_sym___asm__] = ACTIONS(2116), + [anon_sym___asm] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [anon_sym_NULL] = ACTIONS(2116), + [anon_sym_nullptr] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2116), + [anon_sym_explicit] = ACTIONS(2116), + [anon_sym_typename] = ACTIONS(2116), + [anon_sym_template] = ACTIONS(2116), + [anon_sym_operator] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_using] = ACTIONS(2116), + [anon_sym_static_assert] = ACTIONS(2116), + [anon_sym_concept] = ACTIONS(2116), + [anon_sym_co_return] = ACTIONS(2116), + [anon_sym_co_yield] = ACTIONS(2116), + [anon_sym_R_DQUOTE] = ACTIONS(2118), + [anon_sym_LR_DQUOTE] = ACTIONS(2118), + [anon_sym_uR_DQUOTE] = ACTIONS(2118), + [anon_sym_UR_DQUOTE] = ACTIONS(2118), + [anon_sym_u8R_DQUOTE] = ACTIONS(2118), + [anon_sym_co_await] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_requires] = ACTIONS(2116), + [sym_this] = ACTIONS(2116), + [sym_alone_macro] = ACTIONS(2118), + [aux_sym_alone_macro_call_token1] = ACTIONS(2116), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_FORWARD] = ACTIONS(2116), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_PS_GET] = ACTIONS(2116), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2116), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2116), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2116), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2116), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2116), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2116), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2116), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2116), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2116), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2116), + [anon_sym_MOZ_COLD] = ACTIONS(2116), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2116), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2116), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2116), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2116), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2116), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2116), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2116), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2116), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2116), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2116), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2116), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2116), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2116), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2116), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2116), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2116), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2116), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2116), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2116), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2116), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_NONNULL] = ACTIONS(2116), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2116), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2116), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2116), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2116), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2116), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_NORETURN] = ACTIONS(2116), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2116), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2116), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2116), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2116), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2116), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2116), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2116), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2116), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2116), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2116), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2116), + [anon_sym_MOZ_RAII] = ACTIONS(2116), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2116), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2116), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2116), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2116), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2116), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2116), + }, + [STATE(316)] = { + [sym_catch_clause] = STATE(218), + [aux_sym_constructor_try_statement_repeat1] = STATE(218), + [sym_identifier] = ACTIONS(1943), + [aux_sym_preproc_include_token1] = ACTIONS(1943), + [aux_sym_preproc_def_token1] = ACTIONS(1943), + [aux_sym_preproc_if_token1] = ACTIONS(1943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1943), + [sym_preproc_directive] = ACTIONS(1943), + [anon_sym_LPAREN2] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_AMP_AMP] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_SEMI] = ACTIONS(1945), + [anon_sym___extension__] = ACTIONS(1943), + [anon_sym_typedef] = ACTIONS(1943), + [anon_sym_virtual] = ACTIONS(1943), + [anon_sym_extern] = ACTIONS(1943), + [anon_sym___attribute__] = ACTIONS(1943), + [anon_sym___attribute] = ACTIONS(1943), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1945), + [anon_sym___declspec] = ACTIONS(1943), + [anon_sym___based] = ACTIONS(1943), + [anon_sym___cdecl] = ACTIONS(1943), + [anon_sym___clrcall] = ACTIONS(1943), + [anon_sym___stdcall] = ACTIONS(1943), + [anon_sym___fastcall] = ACTIONS(1943), + [anon_sym___thiscall] = ACTIONS(1943), + [anon_sym___vectorcall] = ACTIONS(1943), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_RBRACE] = ACTIONS(1945), + [anon_sym_signed] = ACTIONS(1943), + [anon_sym_unsigned] = ACTIONS(1943), + [anon_sym_long] = ACTIONS(1943), + [anon_sym_short] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_static] = ACTIONS(1943), + [anon_sym_register] = ACTIONS(1943), + [anon_sym_inline] = ACTIONS(1943), + [anon_sym___inline] = ACTIONS(1943), + [anon_sym___inline__] = ACTIONS(1943), + [anon_sym___forceinline] = ACTIONS(1943), + [anon_sym_thread_local] = ACTIONS(1943), + [anon_sym___thread] = ACTIONS(1943), + [anon_sym_const] = ACTIONS(1943), + [anon_sym_constexpr] = ACTIONS(1943), + [anon_sym_volatile] = ACTIONS(1943), + [anon_sym_restrict] = ACTIONS(1943), + [anon_sym___restrict__] = ACTIONS(1943), + [anon_sym__Atomic] = ACTIONS(1943), + [anon_sym__Noreturn] = ACTIONS(1943), + [anon_sym_noreturn] = ACTIONS(1943), + [anon_sym__Nonnull] = ACTIONS(1943), + [anon_sym_mutable] = ACTIONS(1943), + [anon_sym_constinit] = ACTIONS(1943), + [anon_sym_consteval] = ACTIONS(1943), + [anon_sym_alignas] = ACTIONS(1943), + [anon_sym__Alignas] = ACTIONS(1943), + [sym_primitive_type] = ACTIONS(1943), + [anon_sym_enum] = ACTIONS(1943), + [anon_sym_class] = ACTIONS(1943), + [anon_sym_struct] = ACTIONS(1943), + [anon_sym_union] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(1943), + [anon_sym_switch] = ACTIONS(1943), + [anon_sym_case] = ACTIONS(1943), + [anon_sym_default] = ACTIONS(1943), + [anon_sym_while] = ACTIONS(1943), + [anon_sym_do] = ACTIONS(1943), + [anon_sym_for] = ACTIONS(1943), + [anon_sym_return] = ACTIONS(1943), + [anon_sym_break] = ACTIONS(1943), + [anon_sym_continue] = ACTIONS(1943), + [anon_sym_goto] = ACTIONS(1943), + [anon_sym___try] = ACTIONS(1943), + [anon_sym___leave] = ACTIONS(1943), + [anon_sym_not] = ACTIONS(1943), + [anon_sym_compl] = ACTIONS(1943), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_sizeof] = ACTIONS(1943), + [anon_sym___alignof__] = ACTIONS(1943), + [anon_sym___alignof] = ACTIONS(1943), + [anon_sym__alignof] = ACTIONS(1943), + [anon_sym_alignof] = ACTIONS(1943), + [anon_sym__Alignof] = ACTIONS(1943), + [anon_sym_offsetof] = ACTIONS(1943), + [anon_sym__Generic] = ACTIONS(1943), + [anon_sym_asm] = ACTIONS(1943), + [anon_sym___asm__] = ACTIONS(1943), + [anon_sym___asm] = ACTIONS(1943), + [sym_number_literal] = ACTIONS(1945), + [anon_sym_L_SQUOTE] = ACTIONS(1945), + [anon_sym_u_SQUOTE] = ACTIONS(1945), + [anon_sym_U_SQUOTE] = ACTIONS(1945), + [anon_sym_u8_SQUOTE] = ACTIONS(1945), + [anon_sym_SQUOTE] = ACTIONS(1945), + [anon_sym_L_DQUOTE] = ACTIONS(1945), + [anon_sym_u_DQUOTE] = ACTIONS(1945), + [anon_sym_U_DQUOTE] = ACTIONS(1945), + [anon_sym_u8_DQUOTE] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [sym_true] = ACTIONS(1943), + [sym_false] = ACTIONS(1943), + [anon_sym_NULL] = ACTIONS(1943), + [anon_sym_nullptr] = ACTIONS(1943), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1943), + [anon_sym_decltype] = ACTIONS(1943), + [anon_sym_explicit] = ACTIONS(1943), + [anon_sym_typename] = ACTIONS(1943), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_operator] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1943), + [anon_sym_delete] = ACTIONS(1943), + [anon_sym_throw] = ACTIONS(1943), + [anon_sym_namespace] = ACTIONS(1943), + [anon_sym_using] = ACTIONS(1943), + [anon_sym_static_assert] = ACTIONS(1943), + [anon_sym_concept] = ACTIONS(1943), + [anon_sym_co_return] = ACTIONS(1943), + [anon_sym_co_yield] = ACTIONS(1943), + [anon_sym_catch] = ACTIONS(2248), + [anon_sym_R_DQUOTE] = ACTIONS(1945), + [anon_sym_LR_DQUOTE] = ACTIONS(1945), + [anon_sym_uR_DQUOTE] = ACTIONS(1945), + [anon_sym_UR_DQUOTE] = ACTIONS(1945), + [anon_sym_u8R_DQUOTE] = ACTIONS(1945), + [anon_sym_co_await] = ACTIONS(1943), + [anon_sym_new] = ACTIONS(1943), + [anon_sym_requires] = ACTIONS(1943), + [sym_this] = ACTIONS(1943), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1943), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_FORWARD] = ACTIONS(1943), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1943), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1943), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1943), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1943), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_PS_GET] = ACTIONS(1943), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1943), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1943), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1943), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1943), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1943), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1943), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1943), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1943), + [anon_sym_MOZ_COLD] = ACTIONS(1943), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1943), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1943), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1943), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1943), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1943), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1943), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1943), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1943), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1943), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1943), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1943), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1943), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1943), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_NONNULL] = ACTIONS(1943), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1943), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1943), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1943), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1943), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1943), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1943), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1943), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1943), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1943), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1943), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1943), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1943), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1943), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1943), + [anon_sym_MOZ_RAII] = ACTIONS(1943), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1943), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1943), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1943), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1943), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1943), + }, + [STATE(317)] = { + [ts_builtin_sym_end] = ACTIONS(2293), + [sym_identifier] = ACTIONS(2291), + [aux_sym_preproc_include_token1] = ACTIONS(2291), + [aux_sym_preproc_def_token1] = ACTIONS(2291), + [anon_sym_COMMA] = ACTIONS(2293), + [aux_sym_preproc_if_token1] = ACTIONS(2291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2291), + [sym_preproc_directive] = ACTIONS(2291), + [anon_sym_LPAREN2] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(2293), + [anon_sym_TILDE] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2291), + [anon_sym_PLUS] = ACTIONS(2291), + [anon_sym_STAR] = ACTIONS(2293), + [anon_sym_AMP_AMP] = ACTIONS(2293), + [anon_sym_AMP] = ACTIONS(2291), + [anon_sym_SEMI] = ACTIONS(2293), + [anon_sym___extension__] = ACTIONS(2291), + [anon_sym_typedef] = ACTIONS(2291), + [anon_sym_virtual] = ACTIONS(2291), + [anon_sym_extern] = ACTIONS(2291), + [anon_sym___attribute__] = ACTIONS(2291), + [anon_sym___attribute] = ACTIONS(2291), + [anon_sym_COLON_COLON] = ACTIONS(2293), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2293), + [anon_sym___declspec] = ACTIONS(2291), + [anon_sym___based] = ACTIONS(2291), + [anon_sym___cdecl] = ACTIONS(2291), + [anon_sym___clrcall] = ACTIONS(2291), + [anon_sym___stdcall] = ACTIONS(2291), + [anon_sym___fastcall] = ACTIONS(2291), + [anon_sym___thiscall] = ACTIONS(2291), + [anon_sym___vectorcall] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2293), + [anon_sym_RBRACE] = ACTIONS(2293), + [anon_sym_signed] = ACTIONS(2291), + [anon_sym_unsigned] = ACTIONS(2291), + [anon_sym_long] = ACTIONS(2291), + [anon_sym_short] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_static] = ACTIONS(2291), + [anon_sym_register] = ACTIONS(2291), + [anon_sym_inline] = ACTIONS(2291), + [anon_sym___inline] = ACTIONS(2291), + [anon_sym___inline__] = ACTIONS(2291), + [anon_sym___forceinline] = ACTIONS(2291), + [anon_sym_thread_local] = ACTIONS(2291), + [anon_sym___thread] = ACTIONS(2291), + [anon_sym_const] = ACTIONS(2291), + [anon_sym_constexpr] = ACTIONS(2291), + [anon_sym_volatile] = ACTIONS(2291), + [anon_sym_restrict] = ACTIONS(2291), + [anon_sym___restrict__] = ACTIONS(2291), + [anon_sym__Atomic] = ACTIONS(2291), + [anon_sym__Noreturn] = ACTIONS(2291), + [anon_sym_noreturn] = ACTIONS(2291), + [anon_sym__Nonnull] = ACTIONS(2291), + [anon_sym_mutable] = ACTIONS(2291), + [anon_sym_constinit] = ACTIONS(2291), + [anon_sym_consteval] = ACTIONS(2291), + [anon_sym_alignas] = ACTIONS(2291), + [anon_sym__Alignas] = ACTIONS(2291), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_enum] = ACTIONS(2291), + [anon_sym_class] = ACTIONS(2291), + [anon_sym_struct] = ACTIONS(2291), + [anon_sym_union] = ACTIONS(2291), + [anon_sym_if] = ACTIONS(2291), + [anon_sym_switch] = ACTIONS(2291), + [anon_sym_case] = ACTIONS(2291), + [anon_sym_default] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2291), + [anon_sym_do] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2291), + [anon_sym_break] = ACTIONS(2291), + [anon_sym_continue] = ACTIONS(2291), + [anon_sym_goto] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2291), + [anon_sym_compl] = ACTIONS(2291), + [anon_sym_DASH_DASH] = ACTIONS(2293), + [anon_sym_PLUS_PLUS] = ACTIONS(2293), + [anon_sym_sizeof] = ACTIONS(2291), + [anon_sym___alignof__] = ACTIONS(2291), + [anon_sym___alignof] = ACTIONS(2291), + [anon_sym__alignof] = ACTIONS(2291), + [anon_sym_alignof] = ACTIONS(2291), + [anon_sym__Alignof] = ACTIONS(2291), + [anon_sym_offsetof] = ACTIONS(2291), + [anon_sym__Generic] = ACTIONS(2291), + [anon_sym_asm] = ACTIONS(2291), + [anon_sym___asm__] = ACTIONS(2291), + [anon_sym___asm] = ACTIONS(2291), + [sym_number_literal] = ACTIONS(2293), + [anon_sym_L_SQUOTE] = ACTIONS(2293), + [anon_sym_u_SQUOTE] = ACTIONS(2293), + [anon_sym_U_SQUOTE] = ACTIONS(2293), + [anon_sym_u8_SQUOTE] = ACTIONS(2293), + [anon_sym_SQUOTE] = ACTIONS(2293), + [anon_sym_L_DQUOTE] = ACTIONS(2293), + [anon_sym_u_DQUOTE] = ACTIONS(2293), + [anon_sym_U_DQUOTE] = ACTIONS(2293), + [anon_sym_u8_DQUOTE] = ACTIONS(2293), + [anon_sym_DQUOTE] = ACTIONS(2293), + [sym_true] = ACTIONS(2291), + [sym_false] = ACTIONS(2291), + [anon_sym_NULL] = ACTIONS(2291), + [anon_sym_nullptr] = ACTIONS(2291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2291), + [anon_sym_decltype] = ACTIONS(2291), + [anon_sym_explicit] = ACTIONS(2291), + [anon_sym_typename] = ACTIONS(2291), + [anon_sym_template] = ACTIONS(2291), + [anon_sym_operator] = ACTIONS(2291), + [anon_sym_try] = ACTIONS(2291), + [anon_sym_delete] = ACTIONS(2291), + [anon_sym_throw] = ACTIONS(2291), + [anon_sym_namespace] = ACTIONS(2291), + [anon_sym_using] = ACTIONS(2291), + [anon_sym_static_assert] = ACTIONS(2291), + [anon_sym_concept] = ACTIONS(2291), + [anon_sym_co_return] = ACTIONS(2291), + [anon_sym_co_yield] = ACTIONS(2291), + [anon_sym_R_DQUOTE] = ACTIONS(2293), + [anon_sym_LR_DQUOTE] = ACTIONS(2293), + [anon_sym_uR_DQUOTE] = ACTIONS(2293), + [anon_sym_UR_DQUOTE] = ACTIONS(2293), + [anon_sym_u8R_DQUOTE] = ACTIONS(2293), + [anon_sym_co_await] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(2291), + [anon_sym_requires] = ACTIONS(2291), + [sym_this] = ACTIONS(2291), + [sym_alone_macro] = ACTIONS(2293), + [aux_sym_alone_macro_call_token1] = ACTIONS(2291), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2291), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_FORWARD] = ACTIONS(2291), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2291), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2291), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2291), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2291), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_PS_GET] = ACTIONS(2291), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2291), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2291), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2291), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2291), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2291), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2291), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2291), + [anon_sym_MOZ_COLD] = ACTIONS(2291), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2291), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2291), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2291), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2291), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2291), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2291), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2291), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2291), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2291), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2291), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2291), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2291), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2291), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_NONNULL] = ACTIONS(2291), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2291), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2291), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2291), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2291), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2291), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2291), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2291), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2291), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2291), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2291), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2291), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2291), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2291), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2291), + [anon_sym_MOZ_RAII] = ACTIONS(2291), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2291), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2291), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2291), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2291), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2291), + }, + [STATE(318)] = { + [sym_else_clause] = STATE(347), + [sym_identifier] = ACTIONS(1957), + [aux_sym_preproc_include_token1] = ACTIONS(1957), + [aux_sym_preproc_def_token1] = ACTIONS(1957), + [aux_sym_preproc_if_token1] = ACTIONS(1957), + [aux_sym_preproc_if_token2] = ACTIONS(1957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1957), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1957), + [sym_preproc_directive] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1959), + [anon_sym_BANG] = ACTIONS(1959), + [anon_sym_TILDE] = ACTIONS(1959), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym___extension__] = ACTIONS(1957), + [anon_sym_typedef] = ACTIONS(1957), + [anon_sym_virtual] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym___attribute__] = ACTIONS(1957), + [anon_sym___attribute] = ACTIONS(1957), + [anon_sym_COLON_COLON] = ACTIONS(1959), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1959), + [anon_sym___declspec] = ACTIONS(1957), + [anon_sym___based] = ACTIONS(1957), + [anon_sym___cdecl] = ACTIONS(1957), + [anon_sym___clrcall] = ACTIONS(1957), + [anon_sym___stdcall] = ACTIONS(1957), + [anon_sym___fastcall] = ACTIONS(1957), + [anon_sym___thiscall] = ACTIONS(1957), + [anon_sym___vectorcall] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_signed] = ACTIONS(1957), + [anon_sym_unsigned] = ACTIONS(1957), + [anon_sym_long] = ACTIONS(1957), + [anon_sym_short] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1957), + [anon_sym_static] = ACTIONS(1957), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_inline] = ACTIONS(1957), + [anon_sym___inline] = ACTIONS(1957), + [anon_sym___inline__] = ACTIONS(1957), + [anon_sym___forceinline] = ACTIONS(1957), + [anon_sym_thread_local] = ACTIONS(1957), + [anon_sym___thread] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [anon_sym_constexpr] = ACTIONS(1957), + [anon_sym_volatile] = ACTIONS(1957), + [anon_sym_restrict] = ACTIONS(1957), + [anon_sym___restrict__] = ACTIONS(1957), + [anon_sym__Atomic] = ACTIONS(1957), + [anon_sym__Noreturn] = ACTIONS(1957), + [anon_sym_noreturn] = ACTIONS(1957), + [anon_sym__Nonnull] = ACTIONS(1957), + [anon_sym_mutable] = ACTIONS(1957), + [anon_sym_constinit] = ACTIONS(1957), + [anon_sym_consteval] = ACTIONS(1957), + [anon_sym_alignas] = ACTIONS(1957), + [anon_sym__Alignas] = ACTIONS(1957), + [sym_primitive_type] = ACTIONS(1957), + [anon_sym_enum] = ACTIONS(1957), + [anon_sym_class] = ACTIONS(1957), + [anon_sym_struct] = ACTIONS(1957), + [anon_sym_union] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(1957), + [anon_sym_case] = ACTIONS(1957), + [anon_sym_default] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_goto] = ACTIONS(1957), + [anon_sym___try] = ACTIONS(1957), + [anon_sym___leave] = ACTIONS(1957), + [anon_sym_not] = ACTIONS(1957), + [anon_sym_compl] = ACTIONS(1957), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_sizeof] = ACTIONS(1957), + [anon_sym___alignof__] = ACTIONS(1957), + [anon_sym___alignof] = ACTIONS(1957), + [anon_sym__alignof] = ACTIONS(1957), + [anon_sym_alignof] = ACTIONS(1957), + [anon_sym__Alignof] = ACTIONS(1957), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1957), + [anon_sym_asm] = ACTIONS(1957), + [anon_sym___asm__] = ACTIONS(1957), + [anon_sym___asm] = ACTIONS(1957), + [sym_number_literal] = ACTIONS(1959), + [anon_sym_L_SQUOTE] = ACTIONS(1959), + [anon_sym_u_SQUOTE] = ACTIONS(1959), + [anon_sym_U_SQUOTE] = ACTIONS(1959), + [anon_sym_u8_SQUOTE] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(1959), + [anon_sym_L_DQUOTE] = ACTIONS(1959), + [anon_sym_u_DQUOTE] = ACTIONS(1959), + [anon_sym_U_DQUOTE] = ACTIONS(1959), + [anon_sym_u8_DQUOTE] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [sym_true] = ACTIONS(1957), + [sym_false] = ACTIONS(1957), + [anon_sym_NULL] = ACTIONS(1957), + [anon_sym_nullptr] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1957), + [anon_sym_decltype] = ACTIONS(1957), + [anon_sym_explicit] = ACTIONS(1957), + [anon_sym_typename] = ACTIONS(1957), + [anon_sym_template] = ACTIONS(1957), + [anon_sym_operator] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_delete] = ACTIONS(1957), + [anon_sym_throw] = ACTIONS(1957), + [anon_sym_namespace] = ACTIONS(1957), + [anon_sym_using] = ACTIONS(1957), + [anon_sym_static_assert] = ACTIONS(1957), + [anon_sym_concept] = ACTIONS(1957), + [anon_sym_co_return] = ACTIONS(1957), + [anon_sym_co_yield] = ACTIONS(1957), + [anon_sym_R_DQUOTE] = ACTIONS(1959), + [anon_sym_LR_DQUOTE] = ACTIONS(1959), + [anon_sym_uR_DQUOTE] = ACTIONS(1959), + [anon_sym_UR_DQUOTE] = ACTIONS(1959), + [anon_sym_u8R_DQUOTE] = ACTIONS(1959), + [anon_sym_co_await] = ACTIONS(1957), + [anon_sym_new] = ACTIONS(1957), + [anon_sym_requires] = ACTIONS(1957), + [sym_this] = ACTIONS(1957), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_FORWARD] = ACTIONS(1957), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1957), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_PS_GET] = ACTIONS(1957), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1957), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1957), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1957), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1957), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1957), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1957), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1957), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1957), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1957), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1957), + [anon_sym_MOZ_COLD] = ACTIONS(1957), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1957), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1957), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1957), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1957), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1957), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1957), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1957), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1957), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1957), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1957), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1957), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1957), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1957), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1957), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1957), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1957), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1957), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1957), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1957), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1957), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_NONNULL] = ACTIONS(1957), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1957), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1957), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1957), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1957), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1957), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_NORETURN] = ACTIONS(1957), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1957), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1957), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1957), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1957), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1957), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1957), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1957), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1957), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1957), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1957), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1957), + [anon_sym_MOZ_RAII] = ACTIONS(1957), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1957), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1957), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1957), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1957), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1957), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1957), + }, + [STATE(319)] = { + [sym_identifier] = ACTIONS(1953), + [aux_sym_preproc_include_token1] = ACTIONS(1953), + [aux_sym_preproc_def_token1] = ACTIONS(1953), + [aux_sym_preproc_if_token1] = ACTIONS(1953), + [aux_sym_preproc_if_token2] = ACTIONS(1953), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1953), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1953), + [sym_preproc_directive] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym___extension__] = ACTIONS(1953), + [anon_sym_typedef] = ACTIONS(1953), + [anon_sym_virtual] = ACTIONS(1953), + [anon_sym_extern] = ACTIONS(1953), + [anon_sym___attribute__] = ACTIONS(1953), + [anon_sym___attribute] = ACTIONS(1953), + [anon_sym_COLON_COLON] = ACTIONS(1955), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1955), + [anon_sym___declspec] = ACTIONS(1953), + [anon_sym___based] = ACTIONS(1953), + [anon_sym___cdecl] = ACTIONS(1953), + [anon_sym___clrcall] = ACTIONS(1953), + [anon_sym___stdcall] = ACTIONS(1953), + [anon_sym___fastcall] = ACTIONS(1953), + [anon_sym___thiscall] = ACTIONS(1953), + [anon_sym___vectorcall] = ACTIONS(1953), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_signed] = ACTIONS(1953), + [anon_sym_unsigned] = ACTIONS(1953), + [anon_sym_long] = ACTIONS(1953), + [anon_sym_short] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(1953), + [anon_sym_static] = ACTIONS(1953), + [anon_sym_register] = ACTIONS(1953), + [anon_sym_inline] = ACTIONS(1953), + [anon_sym___inline] = ACTIONS(1953), + [anon_sym___inline__] = ACTIONS(1953), + [anon_sym___forceinline] = ACTIONS(1953), + [anon_sym_thread_local] = ACTIONS(1953), + [anon_sym___thread] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [anon_sym_constexpr] = ACTIONS(1953), + [anon_sym_volatile] = ACTIONS(1953), + [anon_sym_restrict] = ACTIONS(1953), + [anon_sym___restrict__] = ACTIONS(1953), + [anon_sym__Atomic] = ACTIONS(1953), + [anon_sym__Noreturn] = ACTIONS(1953), + [anon_sym_noreturn] = ACTIONS(1953), + [anon_sym__Nonnull] = ACTIONS(1953), + [anon_sym_mutable] = ACTIONS(1953), + [anon_sym_constinit] = ACTIONS(1953), + [anon_sym_consteval] = ACTIONS(1953), + [anon_sym_alignas] = ACTIONS(1953), + [anon_sym__Alignas] = ACTIONS(1953), + [sym_primitive_type] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1953), + [anon_sym_class] = ACTIONS(1953), + [anon_sym_struct] = ACTIONS(1953), + [anon_sym_union] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_else] = ACTIONS(1953), + [anon_sym_switch] = ACTIONS(1953), + [anon_sym_case] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_do] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_break] = ACTIONS(1953), + [anon_sym_continue] = ACTIONS(1953), + [anon_sym_goto] = ACTIONS(1953), + [anon_sym___try] = ACTIONS(1953), + [anon_sym___leave] = ACTIONS(1953), + [anon_sym_not] = ACTIONS(1953), + [anon_sym_compl] = ACTIONS(1953), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_sizeof] = ACTIONS(1953), + [anon_sym___alignof__] = ACTIONS(1953), + [anon_sym___alignof] = ACTIONS(1953), + [anon_sym__alignof] = ACTIONS(1953), + [anon_sym_alignof] = ACTIONS(1953), + [anon_sym__Alignof] = ACTIONS(1953), + [anon_sym_offsetof] = ACTIONS(1953), + [anon_sym__Generic] = ACTIONS(1953), + [anon_sym_asm] = ACTIONS(1953), + [anon_sym___asm__] = ACTIONS(1953), + [anon_sym___asm] = ACTIONS(1953), + [sym_number_literal] = ACTIONS(1955), + [anon_sym_L_SQUOTE] = ACTIONS(1955), + [anon_sym_u_SQUOTE] = ACTIONS(1955), + [anon_sym_U_SQUOTE] = ACTIONS(1955), + [anon_sym_u8_SQUOTE] = ACTIONS(1955), + [anon_sym_SQUOTE] = ACTIONS(1955), + [anon_sym_L_DQUOTE] = ACTIONS(1955), + [anon_sym_u_DQUOTE] = ACTIONS(1955), + [anon_sym_U_DQUOTE] = ACTIONS(1955), + [anon_sym_u8_DQUOTE] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(1955), + [sym_true] = ACTIONS(1953), + [sym_false] = ACTIONS(1953), + [anon_sym_NULL] = ACTIONS(1953), + [anon_sym_nullptr] = ACTIONS(1953), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1953), + [anon_sym_decltype] = ACTIONS(1953), + [anon_sym_explicit] = ACTIONS(1953), + [anon_sym_typename] = ACTIONS(1953), + [anon_sym_template] = ACTIONS(1953), + [anon_sym_operator] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(1953), + [anon_sym_delete] = ACTIONS(1953), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_namespace] = ACTIONS(1953), + [anon_sym_using] = ACTIONS(1953), + [anon_sym_static_assert] = ACTIONS(1953), + [anon_sym_concept] = ACTIONS(1953), + [anon_sym_co_return] = ACTIONS(1953), + [anon_sym_co_yield] = ACTIONS(1953), + [anon_sym_catch] = ACTIONS(1953), + [anon_sym_R_DQUOTE] = ACTIONS(1955), + [anon_sym_LR_DQUOTE] = ACTIONS(1955), + [anon_sym_uR_DQUOTE] = ACTIONS(1955), + [anon_sym_UR_DQUOTE] = ACTIONS(1955), + [anon_sym_u8R_DQUOTE] = ACTIONS(1955), + [anon_sym_co_await] = ACTIONS(1953), + [anon_sym_new] = ACTIONS(1953), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1953), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_FORWARD] = ACTIONS(1953), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1953), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_PS_GET] = ACTIONS(1953), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1953), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1953), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1953), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1953), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1953), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1953), + [anon_sym_MOZ_COLD] = ACTIONS(1953), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1953), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1953), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1953), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1953), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1953), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1953), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1953), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1953), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1953), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1953), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1953), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1953), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1953), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_NONNULL] = ACTIONS(1953), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1953), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1953), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1953), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1953), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1953), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1953), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1953), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1953), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1953), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1953), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1953), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1953), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1953), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1953), + [anon_sym_MOZ_RAII] = ACTIONS(1953), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1953), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1953), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1953), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1953), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1953), + }, + [STATE(320)] = { + [sym_identifier] = ACTIONS(1953), + [aux_sym_preproc_include_token1] = ACTIONS(1953), + [aux_sym_preproc_def_token1] = ACTIONS(1953), + [aux_sym_preproc_if_token1] = ACTIONS(1953), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1953), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1953), + [sym_preproc_directive] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym___extension__] = ACTIONS(1953), + [anon_sym_typedef] = ACTIONS(1953), + [anon_sym_virtual] = ACTIONS(1953), + [anon_sym_extern] = ACTIONS(1953), + [anon_sym___attribute__] = ACTIONS(1953), + [anon_sym___attribute] = ACTIONS(1953), + [anon_sym_COLON_COLON] = ACTIONS(1955), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1955), + [anon_sym___declspec] = ACTIONS(1953), + [anon_sym___based] = ACTIONS(1953), + [anon_sym___cdecl] = ACTIONS(1953), + [anon_sym___clrcall] = ACTIONS(1953), + [anon_sym___stdcall] = ACTIONS(1953), + [anon_sym___fastcall] = ACTIONS(1953), + [anon_sym___thiscall] = ACTIONS(1953), + [anon_sym___vectorcall] = ACTIONS(1953), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_signed] = ACTIONS(1953), + [anon_sym_unsigned] = ACTIONS(1953), + [anon_sym_long] = ACTIONS(1953), + [anon_sym_short] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(1953), + [anon_sym_static] = ACTIONS(1953), + [anon_sym_register] = ACTIONS(1953), + [anon_sym_inline] = ACTIONS(1953), + [anon_sym___inline] = ACTIONS(1953), + [anon_sym___inline__] = ACTIONS(1953), + [anon_sym___forceinline] = ACTIONS(1953), + [anon_sym_thread_local] = ACTIONS(1953), + [anon_sym___thread] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [anon_sym_constexpr] = ACTIONS(1953), + [anon_sym_volatile] = ACTIONS(1953), + [anon_sym_restrict] = ACTIONS(1953), + [anon_sym___restrict__] = ACTIONS(1953), + [anon_sym__Atomic] = ACTIONS(1953), + [anon_sym__Noreturn] = ACTIONS(1953), + [anon_sym_noreturn] = ACTIONS(1953), + [anon_sym__Nonnull] = ACTIONS(1953), + [anon_sym_mutable] = ACTIONS(1953), + [anon_sym_constinit] = ACTIONS(1953), + [anon_sym_consteval] = ACTIONS(1953), + [anon_sym_alignas] = ACTIONS(1953), + [anon_sym__Alignas] = ACTIONS(1953), + [sym_primitive_type] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1953), + [anon_sym_class] = ACTIONS(1953), + [anon_sym_struct] = ACTIONS(1953), + [anon_sym_union] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_else] = ACTIONS(1953), + [anon_sym_switch] = ACTIONS(1953), + [anon_sym_case] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_do] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_break] = ACTIONS(1953), + [anon_sym_continue] = ACTIONS(1953), + [anon_sym_goto] = ACTIONS(1953), + [anon_sym___try] = ACTIONS(1953), + [anon_sym___leave] = ACTIONS(1953), + [anon_sym_not] = ACTIONS(1953), + [anon_sym_compl] = ACTIONS(1953), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_sizeof] = ACTIONS(1953), + [anon_sym___alignof__] = ACTIONS(1953), + [anon_sym___alignof] = ACTIONS(1953), + [anon_sym__alignof] = ACTIONS(1953), + [anon_sym_alignof] = ACTIONS(1953), + [anon_sym__Alignof] = ACTIONS(1953), + [anon_sym_offsetof] = ACTIONS(1953), + [anon_sym__Generic] = ACTIONS(1953), + [anon_sym_asm] = ACTIONS(1953), + [anon_sym___asm__] = ACTIONS(1953), + [anon_sym___asm] = ACTIONS(1953), + [sym_number_literal] = ACTIONS(1955), + [anon_sym_L_SQUOTE] = ACTIONS(1955), + [anon_sym_u_SQUOTE] = ACTIONS(1955), + [anon_sym_U_SQUOTE] = ACTIONS(1955), + [anon_sym_u8_SQUOTE] = ACTIONS(1955), + [anon_sym_SQUOTE] = ACTIONS(1955), + [anon_sym_L_DQUOTE] = ACTIONS(1955), + [anon_sym_u_DQUOTE] = ACTIONS(1955), + [anon_sym_U_DQUOTE] = ACTIONS(1955), + [anon_sym_u8_DQUOTE] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(1955), + [sym_true] = ACTIONS(1953), + [sym_false] = ACTIONS(1953), + [anon_sym_NULL] = ACTIONS(1953), + [anon_sym_nullptr] = ACTIONS(1953), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1953), + [anon_sym_decltype] = ACTIONS(1953), + [anon_sym_explicit] = ACTIONS(1953), + [anon_sym_typename] = ACTIONS(1953), + [anon_sym_template] = ACTIONS(1953), + [anon_sym_operator] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(1953), + [anon_sym_delete] = ACTIONS(1953), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_namespace] = ACTIONS(1953), + [anon_sym_using] = ACTIONS(1953), + [anon_sym_static_assert] = ACTIONS(1953), + [anon_sym_concept] = ACTIONS(1953), + [anon_sym_co_return] = ACTIONS(1953), + [anon_sym_co_yield] = ACTIONS(1953), + [anon_sym_catch] = ACTIONS(1953), + [anon_sym_R_DQUOTE] = ACTIONS(1955), + [anon_sym_LR_DQUOTE] = ACTIONS(1955), + [anon_sym_uR_DQUOTE] = ACTIONS(1955), + [anon_sym_UR_DQUOTE] = ACTIONS(1955), + [anon_sym_u8R_DQUOTE] = ACTIONS(1955), + [anon_sym_co_await] = ACTIONS(1953), + [anon_sym_new] = ACTIONS(1953), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1953), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_FORWARD] = ACTIONS(1953), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1953), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_PS_GET] = ACTIONS(1953), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1953), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1953), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1953), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1953), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1953), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1953), + [anon_sym_MOZ_COLD] = ACTIONS(1953), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1953), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1953), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1953), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1953), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1953), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1953), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1953), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1953), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1953), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1953), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1953), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1953), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1953), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_NONNULL] = ACTIONS(1953), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1953), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1953), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1953), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1953), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1953), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1953), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1953), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1953), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1953), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1953), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1953), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1953), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1953), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1953), + [anon_sym_MOZ_RAII] = ACTIONS(1953), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1953), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1953), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1953), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1953), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1953), + }, + [STATE(321)] = { [sym_identifier] = ACTIONS(1875), + [aux_sym_preproc_include_token1] = ACTIONS(1875), [aux_sym_preproc_def_token1] = ACTIONS(1875), [aux_sym_preproc_if_token1] = ACTIONS(1875), [aux_sym_preproc_if_token2] = ACTIONS(1875), [aux_sym_preproc_ifdef_token1] = ACTIONS(1875), [aux_sym_preproc_ifdef_token2] = ACTIONS(1875), - [aux_sym_preproc_else_token1] = ACTIONS(1875), - [aux_sym_preproc_elif_token1] = ACTIONS(1875), [sym_preproc_directive] = ACTIONS(1875), - [anon_sym_LPAREN2] = ACTIONS(1877), - [anon_sym_TILDE] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1877), - [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym___extension__] = ACTIONS(1875), [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_virtual] = ACTIONS(1875), [anon_sym_extern] = ACTIONS(1875), [anon_sym___attribute__] = ACTIONS(1875), - [anon_sym_COLON_COLON] = ACTIONS(1877), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1877), + [anon_sym___attribute] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), [anon_sym___declspec] = ACTIONS(1875), [anon_sym___based] = ACTIONS(1875), + [anon_sym___cdecl] = ACTIONS(1875), + [anon_sym___clrcall] = ACTIONS(1875), + [anon_sym___stdcall] = ACTIONS(1875), + [anon_sym___fastcall] = ACTIONS(1875), + [anon_sym___thiscall] = ACTIONS(1875), + [anon_sym___vectorcall] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), [anon_sym_LBRACK] = ACTIONS(1875), [anon_sym_static] = ACTIONS(1875), [anon_sym_register] = ACTIONS(1875), [anon_sym_inline] = ACTIONS(1875), + [anon_sym___inline] = ACTIONS(1875), + [anon_sym___inline__] = ACTIONS(1875), + [anon_sym___forceinline] = ACTIONS(1875), [anon_sym_thread_local] = ACTIONS(1875), + [anon_sym___thread] = ACTIONS(1875), [anon_sym_const] = ACTIONS(1875), + [anon_sym_constexpr] = ACTIONS(1875), [anon_sym_volatile] = ACTIONS(1875), [anon_sym_restrict] = ACTIONS(1875), + [anon_sym___restrict__] = ACTIONS(1875), [anon_sym__Atomic] = ACTIONS(1875), + [anon_sym__Noreturn] = ACTIONS(1875), + [anon_sym_noreturn] = ACTIONS(1875), + [anon_sym__Nonnull] = ACTIONS(1875), [anon_sym_mutable] = ACTIONS(1875), - [anon_sym_constexpr] = ACTIONS(1875), - [anon_sym_signed] = ACTIONS(1875), - [anon_sym_unsigned] = ACTIONS(1875), - [anon_sym_long] = ACTIONS(1875), - [anon_sym_short] = ACTIONS(1875), + [anon_sym_constinit] = ACTIONS(1875), + [anon_sym_consteval] = ACTIONS(1875), + [anon_sym_alignas] = ACTIONS(1875), + [anon_sym__Alignas] = ACTIONS(1875), [sym_primitive_type] = ACTIONS(1875), [anon_sym_enum] = ACTIONS(1875), [anon_sym_class] = ACTIONS(1875), [anon_sym_struct] = ACTIONS(1875), [anon_sym_union] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_else] = ACTIONS(1875), + [anon_sym_switch] = ACTIONS(1875), + [anon_sym_case] = ACTIONS(1875), + [anon_sym_default] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_goto] = ACTIONS(1875), + [anon_sym___try] = ACTIONS(1875), + [anon_sym___leave] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(1875), + [anon_sym_compl] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1873), + [anon_sym_sizeof] = ACTIONS(1875), + [anon_sym___alignof__] = ACTIONS(1875), + [anon_sym___alignof] = ACTIONS(1875), + [anon_sym__alignof] = ACTIONS(1875), + [anon_sym_alignof] = ACTIONS(1875), + [anon_sym__Alignof] = ACTIONS(1875), + [anon_sym_offsetof] = ACTIONS(1875), + [anon_sym__Generic] = ACTIONS(1875), + [anon_sym_asm] = ACTIONS(1875), + [anon_sym___asm__] = ACTIONS(1875), + [anon_sym___asm] = ACTIONS(1875), + [sym_number_literal] = ACTIONS(1873), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1873), + [anon_sym_u_DQUOTE] = ACTIONS(1873), + [anon_sym_U_DQUOTE] = ACTIONS(1873), + [anon_sym_u8_DQUOTE] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym_true] = ACTIONS(1875), + [sym_false] = ACTIONS(1875), + [anon_sym_NULL] = ACTIONS(1875), + [anon_sym_nullptr] = ACTIONS(1875), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1875), [anon_sym_decltype] = ACTIONS(1875), - [anon_sym_virtual] = ACTIONS(1875), [anon_sym_explicit] = ACTIONS(1875), - [anon_sym_public] = ACTIONS(1875), - [anon_sym_private] = ACTIONS(1875), - [anon_sym_protected] = ACTIONS(1875), - [sym_auto] = ACTIONS(1875), [anon_sym_typename] = ACTIONS(1875), [anon_sym_template] = ACTIONS(1875), [anon_sym_operator] = ACTIONS(1875), - [anon_sym_friend] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_delete] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1875), + [anon_sym_namespace] = ACTIONS(1875), [anon_sym_using] = ACTIONS(1875), [anon_sym_static_assert] = ACTIONS(1875), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1875), + [anon_sym_concept] = ACTIONS(1875), + [anon_sym_co_return] = ACTIONS(1875), + [anon_sym_co_yield] = ACTIONS(1875), + [anon_sym_catch] = ACTIONS(1875), + [anon_sym_R_DQUOTE] = ACTIONS(1873), + [anon_sym_LR_DQUOTE] = ACTIONS(1873), + [anon_sym_uR_DQUOTE] = ACTIONS(1873), + [anon_sym_UR_DQUOTE] = ACTIONS(1873), + [anon_sym_u8R_DQUOTE] = ACTIONS(1873), + [anon_sym_co_await] = ACTIONS(1875), + [anon_sym_new] = ACTIONS(1875), + [anon_sym_requires] = ACTIONS(1875), + [sym_this] = ACTIONS(1875), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_FORWARD] = ACTIONS(1875), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1875), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_PS_GET] = ACTIONS(1875), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1875), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1875), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1875), [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1875), [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1875), [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1875), @@ -221152,8960 +127633,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), }, - [1052] = { - [sym_identifier] = ACTIONS(1871), - [aux_sym_preproc_def_token1] = ACTIONS(1871), - [aux_sym_preproc_if_token1] = ACTIONS(1871), - [aux_sym_preproc_if_token2] = ACTIONS(1871), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1871), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1871), - [aux_sym_preproc_else_token1] = ACTIONS(1871), - [aux_sym_preproc_elif_token1] = ACTIONS(1871), - [sym_preproc_directive] = ACTIONS(1871), - [anon_sym_LPAREN2] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1873), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_AMP_AMP] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_typedef] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym___attribute__] = ACTIONS(1871), - [anon_sym_COLON_COLON] = ACTIONS(1873), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), - [anon_sym___declspec] = ACTIONS(1871), - [anon_sym___based] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(1871), - [anon_sym_static] = ACTIONS(1871), - [anon_sym_register] = ACTIONS(1871), - [anon_sym_inline] = ACTIONS(1871), - [anon_sym_thread_local] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [anon_sym_volatile] = ACTIONS(1871), - [anon_sym_restrict] = ACTIONS(1871), - [anon_sym__Atomic] = ACTIONS(1871), - [anon_sym_mutable] = ACTIONS(1871), - [anon_sym_constexpr] = ACTIONS(1871), - [anon_sym_signed] = ACTIONS(1871), - [anon_sym_unsigned] = ACTIONS(1871), - [anon_sym_long] = ACTIONS(1871), - [anon_sym_short] = ACTIONS(1871), - [sym_primitive_type] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), - [anon_sym_class] = ACTIONS(1871), - [anon_sym_struct] = ACTIONS(1871), - [anon_sym_union] = ACTIONS(1871), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1871), - [anon_sym_virtual] = ACTIONS(1871), - [anon_sym_explicit] = ACTIONS(1871), - [anon_sym_public] = ACTIONS(1871), - [anon_sym_private] = ACTIONS(1871), - [anon_sym_protected] = ACTIONS(1871), - [sym_auto] = ACTIONS(1871), - [anon_sym_typename] = ACTIONS(1871), - [anon_sym_template] = ACTIONS(1871), - [anon_sym_operator] = ACTIONS(1871), - [anon_sym_friend] = ACTIONS(1871), - [anon_sym_using] = ACTIONS(1871), - [anon_sym_static_assert] = ACTIONS(1871), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1871), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1871), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1871), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1871), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1871), - [anon_sym_MOZ_COLD] = ACTIONS(1871), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1871), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1871), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1871), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1871), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1871), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1871), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1871), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1871), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1871), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1871), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1871), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1871), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1871), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_NONNULL] = ACTIONS(1871), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1871), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1871), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1871), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1871), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1871), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1871), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1871), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1871), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1871), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1871), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1871), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1871), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1871), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1871), - [anon_sym_MOZ_RAII] = ACTIONS(1871), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1871), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1871), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1871), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1871), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1871), - }, - [1053] = { - [sym_attribute_declaration] = STATE(945), - [sym_compound_statement] = STATE(345), - [sym_attributed_statement] = STATE(345), - [sym_labeled_statement] = STATE(345), - [sym_expression_statement] = STATE(345), - [sym_if_statement] = STATE(345), - [sym_switch_statement] = STATE(345), - [sym_case_statement] = STATE(345), - [sym_while_statement] = STATE(345), - [sym_do_statement] = STATE(345), - [sym_for_statement] = STATE(345), - [sym_return_statement] = STATE(345), - [sym_break_statement] = STATE(345), - [sym_continue_statement] = STATE(345), - [sym_goto_statement] = STATE(345), - [sym__expression] = STATE(2864), - [sym_comma_expression] = STATE(4938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_for_range_loop] = STATE(345), - [sym_co_return_statement] = STATE(345), - [sym_co_yield_statement] = STATE(345), - [sym_throw_statement] = STATE(345), - [sym_try_statement] = STATE(345), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_attributed_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_throw] = ACTIONS(201), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_try] = ACTIONS(213), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1054] = { - [sym_identifier] = ACTIONS(3090), - [aux_sym_preproc_def_token1] = ACTIONS(3090), - [aux_sym_preproc_if_token1] = ACTIONS(3090), - [aux_sym_preproc_if_token2] = ACTIONS(3090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3090), - [aux_sym_preproc_else_token1] = ACTIONS(3090), - [aux_sym_preproc_elif_token1] = ACTIONS(3090), - [sym_preproc_directive] = ACTIONS(3090), - [anon_sym_LPAREN2] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_typedef] = ACTIONS(3090), - [anon_sym_extern] = ACTIONS(3090), - [anon_sym___attribute__] = ACTIONS(3090), - [anon_sym_COLON_COLON] = ACTIONS(3092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3092), - [anon_sym___declspec] = ACTIONS(3090), - [anon_sym___based] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(3090), - [anon_sym_static] = ACTIONS(3090), - [anon_sym_register] = ACTIONS(3090), - [anon_sym_inline] = ACTIONS(3090), - [anon_sym_thread_local] = ACTIONS(3090), - [anon_sym_const] = ACTIONS(3090), - [anon_sym_volatile] = ACTIONS(3090), - [anon_sym_restrict] = ACTIONS(3090), - [anon_sym__Atomic] = ACTIONS(3090), - [anon_sym_mutable] = ACTIONS(3090), - [anon_sym_constexpr] = ACTIONS(3090), - [anon_sym_signed] = ACTIONS(3090), - [anon_sym_unsigned] = ACTIONS(3090), - [anon_sym_long] = ACTIONS(3090), - [anon_sym_short] = ACTIONS(3090), - [sym_primitive_type] = ACTIONS(3090), - [anon_sym_enum] = ACTIONS(3090), - [anon_sym_class] = ACTIONS(3090), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_union] = ACTIONS(3090), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3090), - [anon_sym_virtual] = ACTIONS(3090), - [anon_sym_explicit] = ACTIONS(3090), - [anon_sym_public] = ACTIONS(3090), - [anon_sym_private] = ACTIONS(3090), - [anon_sym_protected] = ACTIONS(3090), - [sym_auto] = ACTIONS(3090), - [anon_sym_typename] = ACTIONS(3090), - [anon_sym_template] = ACTIONS(3090), - [anon_sym_operator] = ACTIONS(3090), - [anon_sym_friend] = ACTIONS(3090), - [anon_sym_using] = ACTIONS(3090), - [anon_sym_static_assert] = ACTIONS(3090), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3090), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3090), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3090), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3090), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3090), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3090), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3090), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3090), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3090), - [anon_sym_MOZ_COLD] = ACTIONS(3090), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3090), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3090), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3090), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3090), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3090), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3090), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3090), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3090), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3090), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3090), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3090), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3090), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3090), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3090), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3090), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3090), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3090), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3090), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3090), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3090), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_NONNULL] = ACTIONS(3090), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3090), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3090), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3090), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3090), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3090), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_NORETURN] = ACTIONS(3090), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3090), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3090), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3090), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3090), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3090), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3090), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3090), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3090), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3090), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3090), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3090), - [anon_sym_MOZ_RAII] = ACTIONS(3090), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3090), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3090), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3090), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3090), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3090), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3090), - }, - [1055] = { - [sym_identifier] = ACTIONS(1867), - [aux_sym_preproc_def_token1] = ACTIONS(1867), - [aux_sym_preproc_if_token1] = ACTIONS(1867), - [aux_sym_preproc_if_token2] = ACTIONS(1867), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1867), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1867), - [aux_sym_preproc_else_token1] = ACTIONS(1867), - [aux_sym_preproc_elif_token1] = ACTIONS(1867), - [sym_preproc_directive] = ACTIONS(1867), - [anon_sym_LPAREN2] = ACTIONS(1869), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_AMP_AMP] = ACTIONS(1869), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_typedef] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1867), - [anon_sym___attribute__] = ACTIONS(1867), - [anon_sym_COLON_COLON] = ACTIONS(1869), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1869), - [anon_sym___declspec] = ACTIONS(1867), - [anon_sym___based] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1867), - [anon_sym_register] = ACTIONS(1867), - [anon_sym_inline] = ACTIONS(1867), - [anon_sym_thread_local] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_restrict] = ACTIONS(1867), - [anon_sym__Atomic] = ACTIONS(1867), - [anon_sym_mutable] = ACTIONS(1867), - [anon_sym_constexpr] = ACTIONS(1867), - [anon_sym_signed] = ACTIONS(1867), - [anon_sym_unsigned] = ACTIONS(1867), - [anon_sym_long] = ACTIONS(1867), - [anon_sym_short] = ACTIONS(1867), - [sym_primitive_type] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1867), - [anon_sym_class] = ACTIONS(1867), - [anon_sym_struct] = ACTIONS(1867), - [anon_sym_union] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1867), - [anon_sym_virtual] = ACTIONS(1867), - [anon_sym_explicit] = ACTIONS(1867), - [anon_sym_public] = ACTIONS(1867), - [anon_sym_private] = ACTIONS(1867), - [anon_sym_protected] = ACTIONS(1867), - [sym_auto] = ACTIONS(1867), - [anon_sym_typename] = ACTIONS(1867), - [anon_sym_template] = ACTIONS(1867), - [anon_sym_operator] = ACTIONS(1867), - [anon_sym_friend] = ACTIONS(1867), - [anon_sym_using] = ACTIONS(1867), - [anon_sym_static_assert] = ACTIONS(1867), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1867), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1867), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1867), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1867), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1867), - [anon_sym_MOZ_COLD] = ACTIONS(1867), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1867), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1867), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1867), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1867), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1867), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1867), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1867), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1867), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1867), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1867), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1867), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1867), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1867), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_NONNULL] = ACTIONS(1867), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1867), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1867), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1867), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1867), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1867), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1867), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1867), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1867), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1867), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1867), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1867), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1867), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1867), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1867), - [anon_sym_MOZ_RAII] = ACTIONS(1867), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1867), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1867), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1867), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1867), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1867), - }, - [1056] = { - [sym_identifier] = ACTIONS(1863), - [aux_sym_preproc_def_token1] = ACTIONS(1863), - [aux_sym_preproc_if_token1] = ACTIONS(1863), - [aux_sym_preproc_if_token2] = ACTIONS(1863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1863), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1863), - [aux_sym_preproc_else_token1] = ACTIONS(1863), - [aux_sym_preproc_elif_token1] = ACTIONS(1863), - [sym_preproc_directive] = ACTIONS(1863), - [anon_sym_LPAREN2] = ACTIONS(1865), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_AMP_AMP] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_typedef] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1863), - [anon_sym___attribute__] = ACTIONS(1863), - [anon_sym_COLON_COLON] = ACTIONS(1865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1865), - [anon_sym___declspec] = ACTIONS(1863), - [anon_sym___based] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_static] = ACTIONS(1863), - [anon_sym_register] = ACTIONS(1863), - [anon_sym_inline] = ACTIONS(1863), - [anon_sym_thread_local] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [anon_sym_volatile] = ACTIONS(1863), - [anon_sym_restrict] = ACTIONS(1863), - [anon_sym__Atomic] = ACTIONS(1863), - [anon_sym_mutable] = ACTIONS(1863), - [anon_sym_constexpr] = ACTIONS(1863), - [anon_sym_signed] = ACTIONS(1863), - [anon_sym_unsigned] = ACTIONS(1863), - [anon_sym_long] = ACTIONS(1863), - [anon_sym_short] = ACTIONS(1863), - [sym_primitive_type] = ACTIONS(1863), - [anon_sym_enum] = ACTIONS(1863), - [anon_sym_class] = ACTIONS(1863), - [anon_sym_struct] = ACTIONS(1863), - [anon_sym_union] = ACTIONS(1863), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1863), - [anon_sym_virtual] = ACTIONS(1863), - [anon_sym_explicit] = ACTIONS(1863), - [anon_sym_public] = ACTIONS(1863), - [anon_sym_private] = ACTIONS(1863), - [anon_sym_protected] = ACTIONS(1863), - [sym_auto] = ACTIONS(1863), - [anon_sym_typename] = ACTIONS(1863), - [anon_sym_template] = ACTIONS(1863), - [anon_sym_operator] = ACTIONS(1863), - [anon_sym_friend] = ACTIONS(1863), - [anon_sym_using] = ACTIONS(1863), - [anon_sym_static_assert] = ACTIONS(1863), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1863), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1863), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1863), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1863), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1863), - [anon_sym_MOZ_COLD] = ACTIONS(1863), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1863), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1863), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1863), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1863), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1863), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1863), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1863), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1863), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1863), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1863), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1863), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1863), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1863), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_NONNULL] = ACTIONS(1863), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1863), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1863), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1863), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1863), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1863), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1863), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1863), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1863), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1863), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1863), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1863), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1863), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1863), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1863), - [anon_sym_MOZ_RAII] = ACTIONS(1863), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1863), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1863), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1863), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1863), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1863), - }, - [1057] = { - [sym_identifier] = ACTIONS(3094), - [aux_sym_preproc_def_token1] = ACTIONS(3094), - [aux_sym_preproc_if_token1] = ACTIONS(3094), - [aux_sym_preproc_if_token2] = ACTIONS(3094), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3094), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3094), - [aux_sym_preproc_else_token1] = ACTIONS(3094), - [aux_sym_preproc_elif_token1] = ACTIONS(3094), - [sym_preproc_directive] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(3096), - [anon_sym_TILDE] = ACTIONS(3096), - [anon_sym_STAR] = ACTIONS(3096), - [anon_sym_AMP_AMP] = ACTIONS(3096), - [anon_sym_AMP] = ACTIONS(3094), - [anon_sym_typedef] = ACTIONS(3094), - [anon_sym_extern] = ACTIONS(3094), - [anon_sym___attribute__] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(3096), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3096), - [anon_sym___declspec] = ACTIONS(3094), - [anon_sym___based] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(3094), - [anon_sym_static] = ACTIONS(3094), - [anon_sym_register] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym_thread_local] = ACTIONS(3094), - [anon_sym_const] = ACTIONS(3094), - [anon_sym_volatile] = ACTIONS(3094), - [anon_sym_restrict] = ACTIONS(3094), - [anon_sym__Atomic] = ACTIONS(3094), - [anon_sym_mutable] = ACTIONS(3094), - [anon_sym_constexpr] = ACTIONS(3094), - [anon_sym_signed] = ACTIONS(3094), - [anon_sym_unsigned] = ACTIONS(3094), - [anon_sym_long] = ACTIONS(3094), - [anon_sym_short] = ACTIONS(3094), - [sym_primitive_type] = ACTIONS(3094), - [anon_sym_enum] = ACTIONS(3094), - [anon_sym_class] = ACTIONS(3094), - [anon_sym_struct] = ACTIONS(3094), - [anon_sym_union] = ACTIONS(3094), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3094), - [anon_sym_virtual] = ACTIONS(3094), - [anon_sym_explicit] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [sym_auto] = ACTIONS(3094), - [anon_sym_typename] = ACTIONS(3094), - [anon_sym_template] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_friend] = ACTIONS(3094), - [anon_sym_using] = ACTIONS(3094), - [anon_sym_static_assert] = ACTIONS(3094), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3094), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3094), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3094), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3094), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3094), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3094), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3094), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3094), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3094), - [anon_sym_MOZ_COLD] = ACTIONS(3094), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3094), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3094), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3094), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3094), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3094), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3094), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3094), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3094), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3094), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3094), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3094), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3094), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3094), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3094), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3094), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3094), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3094), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3094), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3094), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3094), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_NONNULL] = ACTIONS(3094), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3094), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3094), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3094), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3094), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3094), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_NORETURN] = ACTIONS(3094), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3094), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3094), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3094), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3094), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3094), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3094), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3094), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3094), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3094), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3094), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3094), - [anon_sym_MOZ_RAII] = ACTIONS(3094), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3094), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3094), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3094), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3094), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3094), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3094), - }, - [1058] = { - [sym_identifier] = ACTIONS(1827), - [aux_sym_preproc_def_token1] = ACTIONS(1827), - [aux_sym_preproc_if_token1] = ACTIONS(1827), - [aux_sym_preproc_if_token2] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1827), - [aux_sym_preproc_elif_token1] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1827), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_TILDE] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_AMP_AMP] = ACTIONS(1829), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_typedef] = ACTIONS(1827), - [anon_sym_extern] = ACTIONS(1827), - [anon_sym___attribute__] = ACTIONS(1827), - [anon_sym_COLON_COLON] = ACTIONS(1829), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1829), - [anon_sym___declspec] = ACTIONS(1827), - [anon_sym___based] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_static] = ACTIONS(1827), - [anon_sym_register] = ACTIONS(1827), - [anon_sym_inline] = ACTIONS(1827), - [anon_sym_thread_local] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_volatile] = ACTIONS(1827), - [anon_sym_restrict] = ACTIONS(1827), - [anon_sym__Atomic] = ACTIONS(1827), - [anon_sym_mutable] = ACTIONS(1827), - [anon_sym_constexpr] = ACTIONS(1827), - [anon_sym_signed] = ACTIONS(1827), - [anon_sym_unsigned] = ACTIONS(1827), - [anon_sym_long] = ACTIONS(1827), - [anon_sym_short] = ACTIONS(1827), - [sym_primitive_type] = ACTIONS(1827), - [anon_sym_enum] = ACTIONS(1827), - [anon_sym_class] = ACTIONS(1827), - [anon_sym_struct] = ACTIONS(1827), - [anon_sym_union] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1827), - [anon_sym_virtual] = ACTIONS(1827), - [anon_sym_explicit] = ACTIONS(1827), - [anon_sym_public] = ACTIONS(1827), - [anon_sym_private] = ACTIONS(1827), - [anon_sym_protected] = ACTIONS(1827), - [sym_auto] = ACTIONS(1827), - [anon_sym_typename] = ACTIONS(1827), - [anon_sym_template] = ACTIONS(1827), - [anon_sym_operator] = ACTIONS(1827), - [anon_sym_friend] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(1827), - [anon_sym_static_assert] = ACTIONS(1827), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1827), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1827), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1827), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1827), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1827), - [anon_sym_MOZ_COLD] = ACTIONS(1827), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1827), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1827), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1827), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1827), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1827), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1827), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1827), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1827), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1827), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1827), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1827), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1827), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1827), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_NONNULL] = ACTIONS(1827), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1827), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1827), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1827), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1827), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1827), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1827), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1827), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1827), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1827), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1827), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1827), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1827), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1827), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1827), - [anon_sym_MOZ_RAII] = ACTIONS(1827), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1827), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1827), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1827), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1827), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1827), - }, - [1059] = { - [sym_identifier] = ACTIONS(3098), - [aux_sym_preproc_def_token1] = ACTIONS(3098), - [aux_sym_preproc_if_token1] = ACTIONS(3098), - [aux_sym_preproc_if_token2] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3098), - [aux_sym_preproc_else_token1] = ACTIONS(3098), - [aux_sym_preproc_elif_token1] = ACTIONS(3098), - [sym_preproc_directive] = ACTIONS(3098), - [anon_sym_LPAREN2] = ACTIONS(3100), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_AMP_AMP] = ACTIONS(3100), - [anon_sym_AMP] = ACTIONS(3098), - [anon_sym_typedef] = ACTIONS(3098), - [anon_sym_extern] = ACTIONS(3098), - [anon_sym___attribute__] = ACTIONS(3098), - [anon_sym_COLON_COLON] = ACTIONS(3100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3100), - [anon_sym___declspec] = ACTIONS(3098), - [anon_sym___based] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(3098), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_register] = ACTIONS(3098), - [anon_sym_inline] = ACTIONS(3098), - [anon_sym_thread_local] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_volatile] = ACTIONS(3098), - [anon_sym_restrict] = ACTIONS(3098), - [anon_sym__Atomic] = ACTIONS(3098), - [anon_sym_mutable] = ACTIONS(3098), - [anon_sym_constexpr] = ACTIONS(3098), - [anon_sym_signed] = ACTIONS(3098), - [anon_sym_unsigned] = ACTIONS(3098), - [anon_sym_long] = ACTIONS(3098), - [anon_sym_short] = ACTIONS(3098), - [sym_primitive_type] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_class] = ACTIONS(3098), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_union] = ACTIONS(3098), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3098), - [anon_sym_virtual] = ACTIONS(3098), - [anon_sym_explicit] = ACTIONS(3098), - [anon_sym_public] = ACTIONS(3098), - [anon_sym_private] = ACTIONS(3098), - [anon_sym_protected] = ACTIONS(3098), - [sym_auto] = ACTIONS(3098), - [anon_sym_typename] = ACTIONS(3098), - [anon_sym_template] = ACTIONS(3098), - [anon_sym_operator] = ACTIONS(3098), - [anon_sym_friend] = ACTIONS(3098), - [anon_sym_using] = ACTIONS(3098), - [anon_sym_static_assert] = ACTIONS(3098), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3098), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3098), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3098), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3098), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3098), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3098), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3098), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3098), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3098), - [anon_sym_MOZ_COLD] = ACTIONS(3098), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3098), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3098), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3098), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3098), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3098), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3098), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3098), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3098), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3098), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3098), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3098), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3098), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3098), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3098), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3098), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3098), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3098), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3098), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3098), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3098), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_NONNULL] = ACTIONS(3098), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3098), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3098), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3098), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3098), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3098), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_NORETURN] = ACTIONS(3098), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3098), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3098), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3098), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3098), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3098), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3098), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3098), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3098), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3098), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3098), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3098), - [anon_sym_MOZ_RAII] = ACTIONS(3098), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3098), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3098), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3098), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3098), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3098), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3098), - }, - [1060] = { - [sym_identifier] = ACTIONS(3098), - [aux_sym_preproc_def_token1] = ACTIONS(3098), - [aux_sym_preproc_if_token1] = ACTIONS(3098), - [aux_sym_preproc_if_token2] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3098), - [aux_sym_preproc_else_token1] = ACTIONS(3098), - [aux_sym_preproc_elif_token1] = ACTIONS(3098), - [sym_preproc_directive] = ACTIONS(3098), - [anon_sym_LPAREN2] = ACTIONS(3100), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_AMP_AMP] = ACTIONS(3100), - [anon_sym_AMP] = ACTIONS(3098), - [anon_sym_typedef] = ACTIONS(3098), - [anon_sym_extern] = ACTIONS(3098), - [anon_sym___attribute__] = ACTIONS(3098), - [anon_sym_COLON_COLON] = ACTIONS(3100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3100), - [anon_sym___declspec] = ACTIONS(3098), - [anon_sym___based] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(3098), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_register] = ACTIONS(3098), - [anon_sym_inline] = ACTIONS(3098), - [anon_sym_thread_local] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_volatile] = ACTIONS(3098), - [anon_sym_restrict] = ACTIONS(3098), - [anon_sym__Atomic] = ACTIONS(3098), - [anon_sym_mutable] = ACTIONS(3098), - [anon_sym_constexpr] = ACTIONS(3098), - [anon_sym_signed] = ACTIONS(3098), - [anon_sym_unsigned] = ACTIONS(3098), - [anon_sym_long] = ACTIONS(3098), - [anon_sym_short] = ACTIONS(3098), - [sym_primitive_type] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_class] = ACTIONS(3098), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_union] = ACTIONS(3098), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3098), - [anon_sym_virtual] = ACTIONS(3098), - [anon_sym_explicit] = ACTIONS(3098), - [anon_sym_public] = ACTIONS(3098), - [anon_sym_private] = ACTIONS(3098), - [anon_sym_protected] = ACTIONS(3098), - [sym_auto] = ACTIONS(3098), - [anon_sym_typename] = ACTIONS(3098), - [anon_sym_template] = ACTIONS(3098), - [anon_sym_operator] = ACTIONS(3098), - [anon_sym_friend] = ACTIONS(3098), - [anon_sym_using] = ACTIONS(3098), - [anon_sym_static_assert] = ACTIONS(3098), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3098), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3098), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3098), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3098), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3098), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3098), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3098), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3098), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3098), - [anon_sym_MOZ_COLD] = ACTIONS(3098), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3098), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3098), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3098), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3098), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3098), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3098), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3098), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3098), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3098), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3098), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3098), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3098), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3098), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3098), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3098), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3098), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3098), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3098), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3098), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3098), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_NONNULL] = ACTIONS(3098), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3098), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3098), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3098), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3098), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3098), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_NORETURN] = ACTIONS(3098), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3098), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3098), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3098), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3098), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3098), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3098), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3098), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3098), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3098), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3098), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3098), - [anon_sym_MOZ_RAII] = ACTIONS(3098), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3098), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3098), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3098), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3098), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3098), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3098), - }, - [1061] = { - [sym_identifier] = ACTIONS(3102), - [aux_sym_preproc_def_token1] = ACTIONS(3102), - [aux_sym_preproc_if_token1] = ACTIONS(3102), - [aux_sym_preproc_if_token2] = ACTIONS(3102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3102), - [aux_sym_preproc_else_token1] = ACTIONS(3102), - [aux_sym_preproc_elif_token1] = ACTIONS(3102), - [sym_preproc_directive] = ACTIONS(3102), - [anon_sym_LPAREN2] = ACTIONS(3104), - [anon_sym_TILDE] = ACTIONS(3104), - [anon_sym_STAR] = ACTIONS(3104), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_AMP] = ACTIONS(3102), - [anon_sym_typedef] = ACTIONS(3102), - [anon_sym_extern] = ACTIONS(3102), - [anon_sym___attribute__] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3104), - [anon_sym___declspec] = ACTIONS(3102), - [anon_sym___based] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3102), - [anon_sym_static] = ACTIONS(3102), - [anon_sym_register] = ACTIONS(3102), - [anon_sym_inline] = ACTIONS(3102), - [anon_sym_thread_local] = ACTIONS(3102), - [anon_sym_const] = ACTIONS(3102), - [anon_sym_volatile] = ACTIONS(3102), - [anon_sym_restrict] = ACTIONS(3102), - [anon_sym__Atomic] = ACTIONS(3102), - [anon_sym_mutable] = ACTIONS(3102), - [anon_sym_constexpr] = ACTIONS(3102), - [anon_sym_signed] = ACTIONS(3102), - [anon_sym_unsigned] = ACTIONS(3102), - [anon_sym_long] = ACTIONS(3102), - [anon_sym_short] = ACTIONS(3102), - [sym_primitive_type] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), - [anon_sym_class] = ACTIONS(3102), - [anon_sym_struct] = ACTIONS(3102), - [anon_sym_union] = ACTIONS(3102), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3102), - [anon_sym_virtual] = ACTIONS(3102), - [anon_sym_explicit] = ACTIONS(3102), - [anon_sym_public] = ACTIONS(3102), - [anon_sym_private] = ACTIONS(3102), - [anon_sym_protected] = ACTIONS(3102), - [sym_auto] = ACTIONS(3102), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_template] = ACTIONS(3102), - [anon_sym_operator] = ACTIONS(3102), - [anon_sym_friend] = ACTIONS(3102), - [anon_sym_using] = ACTIONS(3102), - [anon_sym_static_assert] = ACTIONS(3102), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3102), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3102), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3102), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3102), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3102), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3102), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3102), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3102), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3102), - [anon_sym_MOZ_COLD] = ACTIONS(3102), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3102), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3102), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3102), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3102), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3102), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3102), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3102), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3102), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3102), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3102), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3102), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3102), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3102), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3102), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3102), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3102), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3102), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3102), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3102), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3102), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_NONNULL] = ACTIONS(3102), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3102), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3102), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3102), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3102), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3102), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_NORETURN] = ACTIONS(3102), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3102), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3102), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3102), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3102), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3102), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3102), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3102), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3102), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3102), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3102), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3102), - [anon_sym_MOZ_RAII] = ACTIONS(3102), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3102), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3102), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3102), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3102), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3102), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3102), - }, - [1062] = { - [sym_identifier] = ACTIONS(3106), - [aux_sym_preproc_def_token1] = ACTIONS(3106), - [aux_sym_preproc_if_token1] = ACTIONS(3106), - [aux_sym_preproc_if_token2] = ACTIONS(3106), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3106), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3106), - [aux_sym_preproc_else_token1] = ACTIONS(3106), - [aux_sym_preproc_elif_token1] = ACTIONS(3106), - [sym_preproc_directive] = ACTIONS(3106), - [anon_sym_LPAREN2] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_AMP] = ACTIONS(3106), - [anon_sym_typedef] = ACTIONS(3106), - [anon_sym_extern] = ACTIONS(3106), - [anon_sym___attribute__] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(3108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), - [anon_sym___declspec] = ACTIONS(3106), - [anon_sym___based] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(3106), - [anon_sym_static] = ACTIONS(3106), - [anon_sym_register] = ACTIONS(3106), - [anon_sym_inline] = ACTIONS(3106), - [anon_sym_thread_local] = ACTIONS(3106), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_volatile] = ACTIONS(3106), - [anon_sym_restrict] = ACTIONS(3106), - [anon_sym__Atomic] = ACTIONS(3106), - [anon_sym_mutable] = ACTIONS(3106), - [anon_sym_constexpr] = ACTIONS(3106), - [anon_sym_signed] = ACTIONS(3106), - [anon_sym_unsigned] = ACTIONS(3106), - [anon_sym_long] = ACTIONS(3106), - [anon_sym_short] = ACTIONS(3106), - [sym_primitive_type] = ACTIONS(3106), - [anon_sym_enum] = ACTIONS(3106), - [anon_sym_class] = ACTIONS(3106), - [anon_sym_struct] = ACTIONS(3106), - [anon_sym_union] = ACTIONS(3106), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3106), - [anon_sym_virtual] = ACTIONS(3106), - [anon_sym_explicit] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [sym_auto] = ACTIONS(3106), - [anon_sym_typename] = ACTIONS(3106), - [anon_sym_template] = ACTIONS(3106), - [anon_sym_operator] = ACTIONS(3106), - [anon_sym_friend] = ACTIONS(3106), - [anon_sym_using] = ACTIONS(3106), - [anon_sym_static_assert] = ACTIONS(3106), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3106), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3106), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3106), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3106), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3106), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3106), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3106), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3106), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3106), - [anon_sym_MOZ_COLD] = ACTIONS(3106), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3106), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3106), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3106), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3106), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3106), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3106), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3106), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3106), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3106), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3106), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3106), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3106), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3106), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3106), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3106), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3106), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3106), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3106), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3106), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3106), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_NONNULL] = ACTIONS(3106), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3106), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3106), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3106), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3106), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3106), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_NORETURN] = ACTIONS(3106), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3106), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3106), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3106), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3106), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3106), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3106), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3106), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3106), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3106), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3106), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3106), - [anon_sym_MOZ_RAII] = ACTIONS(3106), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3106), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3106), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3106), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3106), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3106), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3106), - }, - [1063] = { - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(2593), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_parameter_declaration] = STATE(5118), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [1064] = { - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(2593), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_parameter_declaration] = STATE(4913), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [1065] = { - [sym_identifier] = ACTIONS(2970), - [aux_sym_preproc_def_token1] = ACTIONS(2970), - [aux_sym_preproc_if_token1] = ACTIONS(2970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2970), - [sym_preproc_directive] = ACTIONS(2970), - [anon_sym_LPAREN2] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2972), - [anon_sym_STAR] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_typedef] = ACTIONS(2970), - [anon_sym_extern] = ACTIONS(2970), - [anon_sym___attribute__] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2972), - [anon_sym___declspec] = ACTIONS(2970), - [anon_sym___based] = ACTIONS(2970), - [anon_sym_RBRACE] = ACTIONS(2972), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_static] = ACTIONS(2970), - [anon_sym_register] = ACTIONS(2970), - [anon_sym_inline] = ACTIONS(2970), - [anon_sym_thread_local] = ACTIONS(2970), - [anon_sym_const] = ACTIONS(2970), - [anon_sym_volatile] = ACTIONS(2970), - [anon_sym_restrict] = ACTIONS(2970), - [anon_sym__Atomic] = ACTIONS(2970), - [anon_sym_mutable] = ACTIONS(2970), - [anon_sym_constexpr] = ACTIONS(2970), - [anon_sym_signed] = ACTIONS(2970), - [anon_sym_unsigned] = ACTIONS(2970), - [anon_sym_long] = ACTIONS(2970), - [anon_sym_short] = ACTIONS(2970), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_enum] = ACTIONS(2970), - [anon_sym_class] = ACTIONS(2970), - [anon_sym_struct] = ACTIONS(2970), - [anon_sym_union] = ACTIONS(2970), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2970), - [anon_sym_virtual] = ACTIONS(2970), - [anon_sym_explicit] = ACTIONS(2970), - [anon_sym_public] = ACTIONS(2970), - [anon_sym_private] = ACTIONS(2970), - [anon_sym_protected] = ACTIONS(2970), - [sym_auto] = ACTIONS(2970), - [anon_sym_typename] = ACTIONS(2970), - [anon_sym_template] = ACTIONS(2970), - [anon_sym_operator] = ACTIONS(2970), - [anon_sym_friend] = ACTIONS(2970), - [anon_sym_using] = ACTIONS(2970), - [anon_sym_static_assert] = ACTIONS(2970), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2970), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2970), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2970), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2970), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2970), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2970), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2970), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2970), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2970), - [anon_sym_MOZ_COLD] = ACTIONS(2970), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2970), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2970), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2970), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2970), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2970), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2970), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2970), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2970), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2970), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2970), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2970), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2970), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2970), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2970), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2970), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2970), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2970), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2970), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2970), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2970), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_NONNULL] = ACTIONS(2970), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2970), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2970), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2970), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2970), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2970), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_NORETURN] = ACTIONS(2970), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2970), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2970), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2970), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2970), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2970), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2970), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2970), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2970), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2970), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2970), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2970), - [anon_sym_MOZ_RAII] = ACTIONS(2970), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2970), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2970), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2970), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2970), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2970), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2970), - }, - [1066] = { - [sym_identifier] = ACTIONS(1565), - [aux_sym_preproc_def_token1] = ACTIONS(1565), - [aux_sym_preproc_if_token1] = ACTIONS(1565), - [aux_sym_preproc_if_token2] = ACTIONS(1565), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1565), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1565), - [sym_preproc_directive] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1567), - [anon_sym_TILDE] = ACTIONS(1567), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_AMP_AMP] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_typedef] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym___attribute__] = ACTIONS(1565), - [anon_sym_COLON_COLON] = ACTIONS(1567), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1567), - [anon_sym___declspec] = ACTIONS(1565), - [anon_sym___based] = ACTIONS(1565), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1565), - [anon_sym_register] = ACTIONS(1565), - [anon_sym_inline] = ACTIONS(1565), - [anon_sym_thread_local] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [anon_sym_volatile] = ACTIONS(1565), - [anon_sym_restrict] = ACTIONS(1565), - [anon_sym__Atomic] = ACTIONS(1565), - [anon_sym_mutable] = ACTIONS(1565), - [anon_sym_constexpr] = ACTIONS(1565), - [anon_sym_signed] = ACTIONS(1565), - [anon_sym_unsigned] = ACTIONS(1565), - [anon_sym_long] = ACTIONS(1565), - [anon_sym_short] = ACTIONS(1565), - [sym_primitive_type] = ACTIONS(1565), - [anon_sym_enum] = ACTIONS(1565), - [anon_sym_class] = ACTIONS(1565), - [anon_sym_struct] = ACTIONS(1565), - [anon_sym_union] = ACTIONS(1565), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1565), - [anon_sym_virtual] = ACTIONS(1565), - [anon_sym_explicit] = ACTIONS(1565), - [anon_sym_public] = ACTIONS(1565), - [anon_sym_private] = ACTIONS(1565), - [anon_sym_protected] = ACTIONS(1565), - [sym_auto] = ACTIONS(1565), - [anon_sym_typename] = ACTIONS(1565), - [anon_sym_template] = ACTIONS(1565), - [anon_sym_operator] = ACTIONS(1565), - [anon_sym_friend] = ACTIONS(1565), - [anon_sym_using] = ACTIONS(1565), - [anon_sym_static_assert] = ACTIONS(1565), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1565), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1565), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1565), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1565), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1565), - [anon_sym_MOZ_COLD] = ACTIONS(1565), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1565), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1565), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1565), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1565), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1565), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1565), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1565), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1565), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1565), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1565), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1565), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1565), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1565), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_NONNULL] = ACTIONS(1565), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1565), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1565), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1565), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1565), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1565), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1565), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1565), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1565), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1565), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1565), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1565), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1565), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1565), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1565), - [anon_sym_MOZ_RAII] = ACTIONS(1565), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1565), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1565), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1565), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1565), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1565), - }, - [1067] = { - [sym_identifier] = ACTIONS(2914), - [aux_sym_preproc_def_token1] = ACTIONS(2914), - [aux_sym_preproc_if_token1] = ACTIONS(2914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2914), - [sym_preproc_directive] = ACTIONS(2914), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_typedef] = ACTIONS(2914), - [anon_sym_extern] = ACTIONS(2914), - [anon_sym___attribute__] = ACTIONS(2914), - [anon_sym_COLON_COLON] = ACTIONS(2916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2916), - [anon_sym___declspec] = ACTIONS(2914), - [anon_sym___based] = ACTIONS(2914), - [anon_sym_RBRACE] = ACTIONS(2916), - [anon_sym_LBRACK] = ACTIONS(2914), - [anon_sym_static] = ACTIONS(2914), - [anon_sym_register] = ACTIONS(2914), - [anon_sym_inline] = ACTIONS(2914), - [anon_sym_thread_local] = ACTIONS(2914), - [anon_sym_const] = ACTIONS(2914), - [anon_sym_volatile] = ACTIONS(2914), - [anon_sym_restrict] = ACTIONS(2914), - [anon_sym__Atomic] = ACTIONS(2914), - [anon_sym_mutable] = ACTIONS(2914), - [anon_sym_constexpr] = ACTIONS(2914), - [anon_sym_signed] = ACTIONS(2914), - [anon_sym_unsigned] = ACTIONS(2914), - [anon_sym_long] = ACTIONS(2914), - [anon_sym_short] = ACTIONS(2914), - [sym_primitive_type] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), - [anon_sym_class] = ACTIONS(2914), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_union] = ACTIONS(2914), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2914), - [anon_sym_virtual] = ACTIONS(2914), - [anon_sym_explicit] = ACTIONS(2914), - [anon_sym_public] = ACTIONS(2914), - [anon_sym_private] = ACTIONS(2914), - [anon_sym_protected] = ACTIONS(2914), - [sym_auto] = ACTIONS(2914), - [anon_sym_typename] = ACTIONS(2914), - [anon_sym_template] = ACTIONS(2914), - [anon_sym_operator] = ACTIONS(2914), - [anon_sym_friend] = ACTIONS(2914), - [anon_sym_using] = ACTIONS(2914), - [anon_sym_static_assert] = ACTIONS(2914), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2914), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2914), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2914), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2914), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2914), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2914), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2914), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2914), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2914), - [anon_sym_MOZ_COLD] = ACTIONS(2914), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2914), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2914), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2914), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2914), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2914), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2914), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2914), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2914), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2914), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2914), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2914), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2914), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2914), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2914), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2914), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2914), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2914), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2914), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2914), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2914), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_NONNULL] = ACTIONS(2914), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2914), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2914), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2914), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2914), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2914), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_NORETURN] = ACTIONS(2914), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2914), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2914), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2914), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2914), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2914), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2914), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2914), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2914), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2914), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2914), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2914), - [anon_sym_MOZ_RAII] = ACTIONS(2914), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2914), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2914), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2914), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2914), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2914), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2914), - }, - [1068] = { - [sym_identifier] = ACTIONS(1847), - [aux_sym_preproc_def_token1] = ACTIONS(1847), - [aux_sym_preproc_if_token1] = ACTIONS(1847), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), - [sym_preproc_directive] = ACTIONS(1847), - [anon_sym_LPAREN2] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_AMP_AMP] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_typedef] = ACTIONS(1847), - [anon_sym_extern] = ACTIONS(1847), - [anon_sym___attribute__] = ACTIONS(1847), - [anon_sym_COLON_COLON] = ACTIONS(1849), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1849), - [anon_sym___declspec] = ACTIONS(1847), - [anon_sym___based] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_register] = ACTIONS(1847), - [anon_sym_inline] = ACTIONS(1847), - [anon_sym_thread_local] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym_constexpr] = ACTIONS(1847), - [anon_sym_signed] = ACTIONS(1847), - [anon_sym_unsigned] = ACTIONS(1847), - [anon_sym_long] = ACTIONS(1847), - [anon_sym_short] = ACTIONS(1847), - [sym_primitive_type] = ACTIONS(1847), - [anon_sym_enum] = ACTIONS(1847), - [anon_sym_class] = ACTIONS(1847), - [anon_sym_struct] = ACTIONS(1847), - [anon_sym_union] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1847), - [anon_sym_virtual] = ACTIONS(1847), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_public] = ACTIONS(1847), - [anon_sym_private] = ACTIONS(1847), - [anon_sym_protected] = ACTIONS(1847), - [sym_auto] = ACTIONS(1847), - [anon_sym_typename] = ACTIONS(1847), - [anon_sym_template] = ACTIONS(1847), - [anon_sym_operator] = ACTIONS(1847), - [anon_sym_friend] = ACTIONS(1847), - [anon_sym_using] = ACTIONS(1847), - [anon_sym_static_assert] = ACTIONS(1847), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1847), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1847), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1847), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1847), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1847), - [anon_sym_MOZ_COLD] = ACTIONS(1847), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1847), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1847), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1847), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1847), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1847), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1847), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1847), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1847), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1847), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1847), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1847), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1847), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1847), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_NONNULL] = ACTIONS(1847), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1847), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1847), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1847), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1847), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1847), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1847), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1847), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1847), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1847), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1847), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1847), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1847), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1847), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1847), - [anon_sym_MOZ_RAII] = ACTIONS(1847), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1847), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1847), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1847), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1847), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1847), - }, - [1069] = { - [sym_identifier] = ACTIONS(1581), - [aux_sym_preproc_def_token1] = ACTIONS(1581), - [aux_sym_preproc_if_token1] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1581), - [sym_preproc_directive] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(1583), - [anon_sym_TILDE] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1581), - [anon_sym_typedef] = ACTIONS(1581), - [anon_sym_extern] = ACTIONS(1581), - [anon_sym___attribute__] = ACTIONS(1581), - [anon_sym_COLON_COLON] = ACTIONS(1583), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1583), - [anon_sym___declspec] = ACTIONS(1581), - [anon_sym___based] = ACTIONS(1581), - [anon_sym_RBRACE] = ACTIONS(1583), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1581), - [anon_sym_register] = ACTIONS(1581), - [anon_sym_inline] = ACTIONS(1581), - [anon_sym_thread_local] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1581), - [anon_sym_volatile] = ACTIONS(1581), - [anon_sym_restrict] = ACTIONS(1581), - [anon_sym__Atomic] = ACTIONS(1581), - [anon_sym_mutable] = ACTIONS(1581), - [anon_sym_constexpr] = ACTIONS(1581), - [anon_sym_signed] = ACTIONS(1581), - [anon_sym_unsigned] = ACTIONS(1581), - [anon_sym_long] = ACTIONS(1581), - [anon_sym_short] = ACTIONS(1581), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_enum] = ACTIONS(1581), - [anon_sym_class] = ACTIONS(1581), - [anon_sym_struct] = ACTIONS(1581), - [anon_sym_union] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1581), - [anon_sym_virtual] = ACTIONS(1581), - [anon_sym_explicit] = ACTIONS(1581), - [anon_sym_public] = ACTIONS(1581), - [anon_sym_private] = ACTIONS(1581), - [anon_sym_protected] = ACTIONS(1581), - [sym_auto] = ACTIONS(1581), - [anon_sym_typename] = ACTIONS(1581), - [anon_sym_template] = ACTIONS(1581), - [anon_sym_operator] = ACTIONS(1581), - [anon_sym_friend] = ACTIONS(1581), - [anon_sym_using] = ACTIONS(1581), - [anon_sym_static_assert] = ACTIONS(1581), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1581), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1581), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1581), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1581), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1581), - [anon_sym_MOZ_COLD] = ACTIONS(1581), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1581), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1581), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1581), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1581), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1581), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1581), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1581), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1581), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1581), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1581), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1581), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1581), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1581), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_NONNULL] = ACTIONS(1581), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1581), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1581), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1581), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1581), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1581), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1581), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1581), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1581), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1581), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1581), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1581), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1581), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1581), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1581), - [anon_sym_MOZ_RAII] = ACTIONS(1581), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1581), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1581), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1581), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1581), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1581), - }, - [1070] = { - [sym_identifier] = ACTIONS(2970), - [aux_sym_preproc_def_token1] = ACTIONS(2970), - [aux_sym_preproc_if_token1] = ACTIONS(2970), - [aux_sym_preproc_if_token2] = ACTIONS(2970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2970), - [sym_preproc_directive] = ACTIONS(2970), - [anon_sym_LPAREN2] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2972), - [anon_sym_STAR] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_typedef] = ACTIONS(2970), - [anon_sym_extern] = ACTIONS(2970), - [anon_sym___attribute__] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2972), - [anon_sym___declspec] = ACTIONS(2970), - [anon_sym___based] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_static] = ACTIONS(2970), - [anon_sym_register] = ACTIONS(2970), - [anon_sym_inline] = ACTIONS(2970), - [anon_sym_thread_local] = ACTIONS(2970), - [anon_sym_const] = ACTIONS(2970), - [anon_sym_volatile] = ACTIONS(2970), - [anon_sym_restrict] = ACTIONS(2970), - [anon_sym__Atomic] = ACTIONS(2970), - [anon_sym_mutable] = ACTIONS(2970), - [anon_sym_constexpr] = ACTIONS(2970), - [anon_sym_signed] = ACTIONS(2970), - [anon_sym_unsigned] = ACTIONS(2970), - [anon_sym_long] = ACTIONS(2970), - [anon_sym_short] = ACTIONS(2970), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_enum] = ACTIONS(2970), - [anon_sym_class] = ACTIONS(2970), - [anon_sym_struct] = ACTIONS(2970), - [anon_sym_union] = ACTIONS(2970), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2970), - [anon_sym_virtual] = ACTIONS(2970), - [anon_sym_explicit] = ACTIONS(2970), - [anon_sym_public] = ACTIONS(2970), - [anon_sym_private] = ACTIONS(2970), - [anon_sym_protected] = ACTIONS(2970), - [sym_auto] = ACTIONS(2970), - [anon_sym_typename] = ACTIONS(2970), - [anon_sym_template] = ACTIONS(2970), - [anon_sym_operator] = ACTIONS(2970), - [anon_sym_friend] = ACTIONS(2970), - [anon_sym_using] = ACTIONS(2970), - [anon_sym_static_assert] = ACTIONS(2970), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2970), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2970), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2970), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2970), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2970), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2970), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2970), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2970), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2970), - [anon_sym_MOZ_COLD] = ACTIONS(2970), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2970), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2970), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2970), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2970), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2970), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2970), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2970), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2970), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2970), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2970), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2970), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2970), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2970), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2970), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2970), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2970), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2970), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2970), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2970), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2970), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_NONNULL] = ACTIONS(2970), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2970), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2970), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2970), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2970), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2970), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_NORETURN] = ACTIONS(2970), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2970), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2970), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2970), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2970), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2970), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2970), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2970), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2970), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2970), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2970), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2970), - [anon_sym_MOZ_RAII] = ACTIONS(2970), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2970), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2970), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2970), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2970), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2970), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2970), - }, - [1071] = { - [sym_identifier] = ACTIONS(2970), - [aux_sym_preproc_def_token1] = ACTIONS(2970), - [aux_sym_preproc_if_token1] = ACTIONS(2970), - [aux_sym_preproc_if_token2] = ACTIONS(2970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2970), - [sym_preproc_directive] = ACTIONS(2970), - [anon_sym_LPAREN2] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2972), - [anon_sym_STAR] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_typedef] = ACTIONS(2970), - [anon_sym_extern] = ACTIONS(2970), - [anon_sym___attribute__] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2972), - [anon_sym___declspec] = ACTIONS(2970), - [anon_sym___based] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_static] = ACTIONS(2970), - [anon_sym_register] = ACTIONS(2970), - [anon_sym_inline] = ACTIONS(2970), - [anon_sym_thread_local] = ACTIONS(2970), - [anon_sym_const] = ACTIONS(2970), - [anon_sym_volatile] = ACTIONS(2970), - [anon_sym_restrict] = ACTIONS(2970), - [anon_sym__Atomic] = ACTIONS(2970), - [anon_sym_mutable] = ACTIONS(2970), - [anon_sym_constexpr] = ACTIONS(2970), - [anon_sym_signed] = ACTIONS(2970), - [anon_sym_unsigned] = ACTIONS(2970), - [anon_sym_long] = ACTIONS(2970), - [anon_sym_short] = ACTIONS(2970), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_enum] = ACTIONS(2970), - [anon_sym_class] = ACTIONS(2970), - [anon_sym_struct] = ACTIONS(2970), - [anon_sym_union] = ACTIONS(2970), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2970), - [anon_sym_virtual] = ACTIONS(2970), - [anon_sym_explicit] = ACTIONS(2970), - [anon_sym_public] = ACTIONS(2970), - [anon_sym_private] = ACTIONS(2970), - [anon_sym_protected] = ACTIONS(2970), - [sym_auto] = ACTIONS(2970), - [anon_sym_typename] = ACTIONS(2970), - [anon_sym_template] = ACTIONS(2970), - [anon_sym_operator] = ACTIONS(2970), - [anon_sym_friend] = ACTIONS(2970), - [anon_sym_using] = ACTIONS(2970), - [anon_sym_static_assert] = ACTIONS(2970), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2970), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2970), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2970), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2970), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2970), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2970), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2970), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2970), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2970), - [anon_sym_MOZ_COLD] = ACTIONS(2970), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2970), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2970), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2970), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2970), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2970), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2970), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2970), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2970), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2970), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2970), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2970), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2970), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2970), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2970), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2970), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2970), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2970), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2970), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2970), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2970), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_NONNULL] = ACTIONS(2970), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2970), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2970), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2970), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2970), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2970), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_NORETURN] = ACTIONS(2970), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2970), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2970), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2970), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2970), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2970), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2970), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2970), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2970), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2970), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2970), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2970), - [anon_sym_MOZ_RAII] = ACTIONS(2970), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2970), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2970), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2970), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2970), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2970), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2970), - }, - [1072] = { - [sym_identifier] = ACTIONS(2910), - [aux_sym_preproc_def_token1] = ACTIONS(2910), - [aux_sym_preproc_if_token1] = ACTIONS(2910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2910), - [sym_preproc_directive] = ACTIONS(2910), - [anon_sym_LPAREN2] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_typedef] = ACTIONS(2910), - [anon_sym_extern] = ACTIONS(2910), - [anon_sym___attribute__] = ACTIONS(2910), - [anon_sym_COLON_COLON] = ACTIONS(2912), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2912), - [anon_sym___declspec] = ACTIONS(2910), - [anon_sym___based] = ACTIONS(2910), - [anon_sym_RBRACE] = ACTIONS(2912), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_static] = ACTIONS(2910), - [anon_sym_register] = ACTIONS(2910), - [anon_sym_inline] = ACTIONS(2910), - [anon_sym_thread_local] = ACTIONS(2910), - [anon_sym_const] = ACTIONS(2910), - [anon_sym_volatile] = ACTIONS(2910), - [anon_sym_restrict] = ACTIONS(2910), - [anon_sym__Atomic] = ACTIONS(2910), - [anon_sym_mutable] = ACTIONS(2910), - [anon_sym_constexpr] = ACTIONS(2910), - [anon_sym_signed] = ACTIONS(2910), - [anon_sym_unsigned] = ACTIONS(2910), - [anon_sym_long] = ACTIONS(2910), - [anon_sym_short] = ACTIONS(2910), - [sym_primitive_type] = ACTIONS(2910), - [anon_sym_enum] = ACTIONS(2910), - [anon_sym_class] = ACTIONS(2910), - [anon_sym_struct] = ACTIONS(2910), - [anon_sym_union] = ACTIONS(2910), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2910), - [anon_sym_virtual] = ACTIONS(2910), - [anon_sym_explicit] = ACTIONS(2910), - [anon_sym_public] = ACTIONS(2910), - [anon_sym_private] = ACTIONS(2910), - [anon_sym_protected] = ACTIONS(2910), - [sym_auto] = ACTIONS(2910), - [anon_sym_typename] = ACTIONS(2910), - [anon_sym_template] = ACTIONS(2910), - [anon_sym_operator] = ACTIONS(2910), - [anon_sym_friend] = ACTIONS(2910), - [anon_sym_using] = ACTIONS(2910), - [anon_sym_static_assert] = ACTIONS(2910), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2910), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2910), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2910), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2910), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2910), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2910), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2910), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2910), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2910), - [anon_sym_MOZ_COLD] = ACTIONS(2910), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2910), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2910), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2910), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2910), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2910), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2910), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2910), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2910), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2910), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2910), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2910), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2910), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2910), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2910), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2910), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2910), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2910), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2910), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2910), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2910), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_NONNULL] = ACTIONS(2910), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2910), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2910), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2910), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2910), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2910), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_NORETURN] = ACTIONS(2910), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2910), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2910), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2910), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2910), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2910), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2910), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2910), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2910), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2910), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2910), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2910), - [anon_sym_MOZ_RAII] = ACTIONS(2910), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2910), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2910), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2910), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2910), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2910), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2910), - }, - [1073] = { - [sym_identifier] = ACTIONS(2906), - [aux_sym_preproc_def_token1] = ACTIONS(2906), - [aux_sym_preproc_if_token1] = ACTIONS(2906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2906), - [sym_preproc_directive] = ACTIONS(2906), - [anon_sym_LPAREN2] = ACTIONS(2908), - [anon_sym_TILDE] = ACTIONS(2908), - [anon_sym_STAR] = ACTIONS(2908), - [anon_sym_AMP_AMP] = ACTIONS(2908), - [anon_sym_AMP] = ACTIONS(2906), - [anon_sym_typedef] = ACTIONS(2906), - [anon_sym_extern] = ACTIONS(2906), - [anon_sym___attribute__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2908), - [anon_sym___declspec] = ACTIONS(2906), - [anon_sym___based] = ACTIONS(2906), - [anon_sym_RBRACE] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_static] = ACTIONS(2906), - [anon_sym_register] = ACTIONS(2906), - [anon_sym_inline] = ACTIONS(2906), - [anon_sym_thread_local] = ACTIONS(2906), - [anon_sym_const] = ACTIONS(2906), - [anon_sym_volatile] = ACTIONS(2906), - [anon_sym_restrict] = ACTIONS(2906), - [anon_sym__Atomic] = ACTIONS(2906), - [anon_sym_mutable] = ACTIONS(2906), - [anon_sym_constexpr] = ACTIONS(2906), - [anon_sym_signed] = ACTIONS(2906), - [anon_sym_unsigned] = ACTIONS(2906), - [anon_sym_long] = ACTIONS(2906), - [anon_sym_short] = ACTIONS(2906), - [sym_primitive_type] = ACTIONS(2906), - [anon_sym_enum] = ACTIONS(2906), - [anon_sym_class] = ACTIONS(2906), - [anon_sym_struct] = ACTIONS(2906), - [anon_sym_union] = ACTIONS(2906), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2906), - [anon_sym_virtual] = ACTIONS(2906), - [anon_sym_explicit] = ACTIONS(2906), - [anon_sym_public] = ACTIONS(2906), - [anon_sym_private] = ACTIONS(2906), - [anon_sym_protected] = ACTIONS(2906), - [sym_auto] = ACTIONS(2906), - [anon_sym_typename] = ACTIONS(2906), - [anon_sym_template] = ACTIONS(2906), - [anon_sym_operator] = ACTIONS(2906), - [anon_sym_friend] = ACTIONS(2906), - [anon_sym_using] = ACTIONS(2906), - [anon_sym_static_assert] = ACTIONS(2906), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2906), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2906), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2906), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2906), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2906), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2906), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2906), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2906), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2906), - [anon_sym_MOZ_COLD] = ACTIONS(2906), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2906), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2906), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2906), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2906), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2906), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2906), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2906), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2906), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2906), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2906), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2906), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2906), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2906), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2906), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2906), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2906), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2906), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2906), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2906), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2906), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_NONNULL] = ACTIONS(2906), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2906), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2906), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2906), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2906), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2906), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_NORETURN] = ACTIONS(2906), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2906), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2906), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2906), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2906), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2906), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2906), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2906), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2906), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2906), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2906), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2906), - [anon_sym_MOZ_RAII] = ACTIONS(2906), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2906), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2906), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2906), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2906), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2906), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2906), - }, - [1074] = { - [sym_identifier] = ACTIONS(2890), - [aux_sym_preproc_def_token1] = ACTIONS(2890), - [aux_sym_preproc_if_token1] = ACTIONS(2890), - [aux_sym_preproc_if_token2] = ACTIONS(2890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2890), - [sym_preproc_directive] = ACTIONS(2890), - [anon_sym_LPAREN2] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2892), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_typedef] = ACTIONS(2890), - [anon_sym_extern] = ACTIONS(2890), - [anon_sym___attribute__] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2892), - [anon_sym___declspec] = ACTIONS(2890), - [anon_sym___based] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_register] = ACTIONS(2890), - [anon_sym_inline] = ACTIONS(2890), - [anon_sym_thread_local] = ACTIONS(2890), - [anon_sym_const] = ACTIONS(2890), - [anon_sym_volatile] = ACTIONS(2890), - [anon_sym_restrict] = ACTIONS(2890), - [anon_sym__Atomic] = ACTIONS(2890), - [anon_sym_mutable] = ACTIONS(2890), - [anon_sym_constexpr] = ACTIONS(2890), - [anon_sym_signed] = ACTIONS(2890), - [anon_sym_unsigned] = ACTIONS(2890), - [anon_sym_long] = ACTIONS(2890), - [anon_sym_short] = ACTIONS(2890), - [sym_primitive_type] = ACTIONS(2890), - [anon_sym_enum] = ACTIONS(2890), - [anon_sym_class] = ACTIONS(2890), - [anon_sym_struct] = ACTIONS(2890), - [anon_sym_union] = ACTIONS(2890), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2890), - [anon_sym_virtual] = ACTIONS(2890), - [anon_sym_explicit] = ACTIONS(2890), - [anon_sym_public] = ACTIONS(2890), - [anon_sym_private] = ACTIONS(2890), - [anon_sym_protected] = ACTIONS(2890), - [sym_auto] = ACTIONS(2890), - [anon_sym_typename] = ACTIONS(2890), - [anon_sym_template] = ACTIONS(2890), - [anon_sym_operator] = ACTIONS(2890), - [anon_sym_friend] = ACTIONS(2890), - [anon_sym_using] = ACTIONS(2890), - [anon_sym_static_assert] = ACTIONS(2890), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2890), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2890), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2890), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2890), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2890), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2890), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2890), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2890), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2890), - [anon_sym_MOZ_COLD] = ACTIONS(2890), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2890), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2890), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2890), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2890), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2890), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2890), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2890), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2890), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2890), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2890), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2890), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2890), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2890), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2890), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2890), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2890), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2890), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2890), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2890), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2890), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_NONNULL] = ACTIONS(2890), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2890), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2890), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2890), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2890), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2890), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_NORETURN] = ACTIONS(2890), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2890), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2890), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2890), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2890), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2890), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2890), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2890), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2890), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2890), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2890), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2890), - [anon_sym_MOZ_RAII] = ACTIONS(2890), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2890), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2890), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2890), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2890), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2890), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2890), - }, - [1075] = { - [sym_identifier] = ACTIONS(2902), - [aux_sym_preproc_def_token1] = ACTIONS(2902), - [aux_sym_preproc_if_token1] = ACTIONS(2902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2902), - [sym_preproc_directive] = ACTIONS(2902), - [anon_sym_LPAREN2] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_STAR] = ACTIONS(2904), - [anon_sym_AMP_AMP] = ACTIONS(2904), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_typedef] = ACTIONS(2902), - [anon_sym_extern] = ACTIONS(2902), - [anon_sym___attribute__] = ACTIONS(2902), - [anon_sym_COLON_COLON] = ACTIONS(2904), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2904), - [anon_sym___declspec] = ACTIONS(2902), - [anon_sym___based] = ACTIONS(2902), - [anon_sym_RBRACE] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2902), - [anon_sym_static] = ACTIONS(2902), - [anon_sym_register] = ACTIONS(2902), - [anon_sym_inline] = ACTIONS(2902), - [anon_sym_thread_local] = ACTIONS(2902), - [anon_sym_const] = ACTIONS(2902), - [anon_sym_volatile] = ACTIONS(2902), - [anon_sym_restrict] = ACTIONS(2902), - [anon_sym__Atomic] = ACTIONS(2902), - [anon_sym_mutable] = ACTIONS(2902), - [anon_sym_constexpr] = ACTIONS(2902), - [anon_sym_signed] = ACTIONS(2902), - [anon_sym_unsigned] = ACTIONS(2902), - [anon_sym_long] = ACTIONS(2902), - [anon_sym_short] = ACTIONS(2902), - [sym_primitive_type] = ACTIONS(2902), - [anon_sym_enum] = ACTIONS(2902), - [anon_sym_class] = ACTIONS(2902), - [anon_sym_struct] = ACTIONS(2902), - [anon_sym_union] = ACTIONS(2902), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2902), - [anon_sym_virtual] = ACTIONS(2902), - [anon_sym_explicit] = ACTIONS(2902), - [anon_sym_public] = ACTIONS(2902), - [anon_sym_private] = ACTIONS(2902), - [anon_sym_protected] = ACTIONS(2902), - [sym_auto] = ACTIONS(2902), - [anon_sym_typename] = ACTIONS(2902), - [anon_sym_template] = ACTIONS(2902), - [anon_sym_operator] = ACTIONS(2902), - [anon_sym_friend] = ACTIONS(2902), - [anon_sym_using] = ACTIONS(2902), - [anon_sym_static_assert] = ACTIONS(2902), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2902), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2902), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2902), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2902), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2902), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2902), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2902), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2902), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2902), - [anon_sym_MOZ_COLD] = ACTIONS(2902), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2902), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2902), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2902), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2902), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2902), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2902), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2902), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2902), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2902), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2902), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2902), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2902), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2902), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2902), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2902), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2902), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2902), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2902), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2902), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2902), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_NONNULL] = ACTIONS(2902), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2902), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2902), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2902), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2902), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2902), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_NORETURN] = ACTIONS(2902), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2902), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2902), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2902), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2902), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2902), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2902), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2902), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2902), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2902), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2902), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2902), - [anon_sym_MOZ_RAII] = ACTIONS(2902), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2902), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2902), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2902), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2902), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2902), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2902), - }, - [1076] = { - [sym_identifier] = ACTIONS(2966), - [aux_sym_preproc_def_token1] = ACTIONS(2966), - [aux_sym_preproc_if_token1] = ACTIONS(2966), - [aux_sym_preproc_if_token2] = ACTIONS(2966), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2966), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2966), - [sym_preproc_directive] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_typedef] = ACTIONS(2966), - [anon_sym_extern] = ACTIONS(2966), - [anon_sym___attribute__] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2968), - [anon_sym___declspec] = ACTIONS(2966), - [anon_sym___based] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_static] = ACTIONS(2966), - [anon_sym_register] = ACTIONS(2966), - [anon_sym_inline] = ACTIONS(2966), - [anon_sym_thread_local] = ACTIONS(2966), - [anon_sym_const] = ACTIONS(2966), - [anon_sym_volatile] = ACTIONS(2966), - [anon_sym_restrict] = ACTIONS(2966), - [anon_sym__Atomic] = ACTIONS(2966), - [anon_sym_mutable] = ACTIONS(2966), - [anon_sym_constexpr] = ACTIONS(2966), - [anon_sym_signed] = ACTIONS(2966), - [anon_sym_unsigned] = ACTIONS(2966), - [anon_sym_long] = ACTIONS(2966), - [anon_sym_short] = ACTIONS(2966), - [sym_primitive_type] = ACTIONS(2966), - [anon_sym_enum] = ACTIONS(2966), - [anon_sym_class] = ACTIONS(2966), - [anon_sym_struct] = ACTIONS(2966), - [anon_sym_union] = ACTIONS(2966), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2966), - [anon_sym_virtual] = ACTIONS(2966), - [anon_sym_explicit] = ACTIONS(2966), - [anon_sym_public] = ACTIONS(2966), - [anon_sym_private] = ACTIONS(2966), - [anon_sym_protected] = ACTIONS(2966), - [sym_auto] = ACTIONS(2966), - [anon_sym_typename] = ACTIONS(2966), - [anon_sym_template] = ACTIONS(2966), - [anon_sym_operator] = ACTIONS(2966), - [anon_sym_friend] = ACTIONS(2966), - [anon_sym_using] = ACTIONS(2966), - [anon_sym_static_assert] = ACTIONS(2966), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2966), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2966), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2966), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2966), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2966), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2966), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2966), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2966), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2966), - [anon_sym_MOZ_COLD] = ACTIONS(2966), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2966), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2966), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2966), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2966), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2966), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2966), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2966), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2966), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2966), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2966), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2966), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2966), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2966), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2966), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2966), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2966), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2966), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2966), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2966), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2966), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_NONNULL] = ACTIONS(2966), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2966), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2966), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2966), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2966), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2966), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_NORETURN] = ACTIONS(2966), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2966), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2966), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2966), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2966), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2966), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2966), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2966), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2966), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2966), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2966), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2966), - [anon_sym_MOZ_RAII] = ACTIONS(2966), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2966), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2966), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2966), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2966), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2966), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2966), - }, - [1077] = { - [sym_identifier] = ACTIONS(2886), - [aux_sym_preproc_def_token1] = ACTIONS(2886), - [aux_sym_preproc_if_token1] = ACTIONS(2886), - [aux_sym_preproc_if_token2] = ACTIONS(2886), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2886), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2886), - [sym_preproc_directive] = ACTIONS(2886), - [anon_sym_LPAREN2] = ACTIONS(2888), - [anon_sym_TILDE] = ACTIONS(2888), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_AMP_AMP] = ACTIONS(2888), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_typedef] = ACTIONS(2886), - [anon_sym_extern] = ACTIONS(2886), - [anon_sym___attribute__] = ACTIONS(2886), - [anon_sym_COLON_COLON] = ACTIONS(2888), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2888), - [anon_sym___declspec] = ACTIONS(2886), - [anon_sym___based] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_static] = ACTIONS(2886), - [anon_sym_register] = ACTIONS(2886), - [anon_sym_inline] = ACTIONS(2886), - [anon_sym_thread_local] = ACTIONS(2886), - [anon_sym_const] = ACTIONS(2886), - [anon_sym_volatile] = ACTIONS(2886), - [anon_sym_restrict] = ACTIONS(2886), - [anon_sym__Atomic] = ACTIONS(2886), - [anon_sym_mutable] = ACTIONS(2886), - [anon_sym_constexpr] = ACTIONS(2886), - [anon_sym_signed] = ACTIONS(2886), - [anon_sym_unsigned] = ACTIONS(2886), - [anon_sym_long] = ACTIONS(2886), - [anon_sym_short] = ACTIONS(2886), - [sym_primitive_type] = ACTIONS(2886), - [anon_sym_enum] = ACTIONS(2886), - [anon_sym_class] = ACTIONS(2886), - [anon_sym_struct] = ACTIONS(2886), - [anon_sym_union] = ACTIONS(2886), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2886), - [anon_sym_virtual] = ACTIONS(2886), - [anon_sym_explicit] = ACTIONS(2886), - [anon_sym_public] = ACTIONS(2886), - [anon_sym_private] = ACTIONS(2886), - [anon_sym_protected] = ACTIONS(2886), - [sym_auto] = ACTIONS(2886), - [anon_sym_typename] = ACTIONS(2886), - [anon_sym_template] = ACTIONS(2886), - [anon_sym_operator] = ACTIONS(2886), - [anon_sym_friend] = ACTIONS(2886), - [anon_sym_using] = ACTIONS(2886), - [anon_sym_static_assert] = ACTIONS(2886), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2886), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2886), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2886), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2886), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2886), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2886), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2886), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2886), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2886), - [anon_sym_MOZ_COLD] = ACTIONS(2886), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2886), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2886), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2886), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2886), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2886), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2886), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2886), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2886), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2886), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2886), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2886), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2886), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2886), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2886), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2886), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2886), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2886), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2886), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2886), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2886), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_NONNULL] = ACTIONS(2886), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2886), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2886), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2886), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2886), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2886), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_NORETURN] = ACTIONS(2886), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2886), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2886), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2886), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2886), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2886), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2886), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2886), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2886), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2886), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2886), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2886), - [anon_sym_MOZ_RAII] = ACTIONS(2886), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2886), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2886), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2886), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2886), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2886), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2886), - }, - [1078] = { - [sym_identifier] = ACTIONS(1843), - [aux_sym_preproc_def_token1] = ACTIONS(1843), - [aux_sym_preproc_if_token1] = ACTIONS(1843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1843), - [sym_preproc_directive] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_typedef] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym___attribute__] = ACTIONS(1843), - [anon_sym_COLON_COLON] = ACTIONS(1845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1845), - [anon_sym___declspec] = ACTIONS(1843), - [anon_sym___based] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_static] = ACTIONS(1843), - [anon_sym_register] = ACTIONS(1843), - [anon_sym_inline] = ACTIONS(1843), - [anon_sym_thread_local] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym_mutable] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_signed] = ACTIONS(1843), - [anon_sym_unsigned] = ACTIONS(1843), - [anon_sym_long] = ACTIONS(1843), - [anon_sym_short] = ACTIONS(1843), - [sym_primitive_type] = ACTIONS(1843), - [anon_sym_enum] = ACTIONS(1843), - [anon_sym_class] = ACTIONS(1843), - [anon_sym_struct] = ACTIONS(1843), - [anon_sym_union] = ACTIONS(1843), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1843), - [anon_sym_virtual] = ACTIONS(1843), - [anon_sym_explicit] = ACTIONS(1843), - [anon_sym_public] = ACTIONS(1843), - [anon_sym_private] = ACTIONS(1843), - [anon_sym_protected] = ACTIONS(1843), - [sym_auto] = ACTIONS(1843), - [anon_sym_typename] = ACTIONS(1843), - [anon_sym_template] = ACTIONS(1843), - [anon_sym_operator] = ACTIONS(1843), - [anon_sym_friend] = ACTIONS(1843), - [anon_sym_using] = ACTIONS(1843), - [anon_sym_static_assert] = ACTIONS(1843), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1843), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1843), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1843), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1843), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1843), - [anon_sym_MOZ_COLD] = ACTIONS(1843), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1843), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1843), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1843), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1843), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1843), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1843), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1843), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1843), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1843), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1843), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1843), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1843), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1843), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_NONNULL] = ACTIONS(1843), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1843), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1843), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1843), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1843), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1843), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1843), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1843), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1843), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1843), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1843), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1843), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1843), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1843), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1843), - [anon_sym_MOZ_RAII] = ACTIONS(1843), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1843), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1843), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1843), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1843), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1843), - }, - [1079] = { - [sym_identifier] = ACTIONS(2898), - [aux_sym_preproc_def_token1] = ACTIONS(2898), - [aux_sym_preproc_if_token1] = ACTIONS(2898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2898), - [sym_preproc_directive] = ACTIONS(2898), - [anon_sym_LPAREN2] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_typedef] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(2898), - [anon_sym___attribute__] = ACTIONS(2898), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2900), - [anon_sym___declspec] = ACTIONS(2898), - [anon_sym___based] = ACTIONS(2898), - [anon_sym_RBRACE] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(2898), - [anon_sym_register] = ACTIONS(2898), - [anon_sym_inline] = ACTIONS(2898), - [anon_sym_thread_local] = ACTIONS(2898), - [anon_sym_const] = ACTIONS(2898), - [anon_sym_volatile] = ACTIONS(2898), - [anon_sym_restrict] = ACTIONS(2898), - [anon_sym__Atomic] = ACTIONS(2898), - [anon_sym_mutable] = ACTIONS(2898), - [anon_sym_constexpr] = ACTIONS(2898), - [anon_sym_signed] = ACTIONS(2898), - [anon_sym_unsigned] = ACTIONS(2898), - [anon_sym_long] = ACTIONS(2898), - [anon_sym_short] = ACTIONS(2898), - [sym_primitive_type] = ACTIONS(2898), - [anon_sym_enum] = ACTIONS(2898), - [anon_sym_class] = ACTIONS(2898), - [anon_sym_struct] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2898), - [anon_sym_virtual] = ACTIONS(2898), - [anon_sym_explicit] = ACTIONS(2898), - [anon_sym_public] = ACTIONS(2898), - [anon_sym_private] = ACTIONS(2898), - [anon_sym_protected] = ACTIONS(2898), - [sym_auto] = ACTIONS(2898), - [anon_sym_typename] = ACTIONS(2898), - [anon_sym_template] = ACTIONS(2898), - [anon_sym_operator] = ACTIONS(2898), - [anon_sym_friend] = ACTIONS(2898), - [anon_sym_using] = ACTIONS(2898), - [anon_sym_static_assert] = ACTIONS(2898), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2898), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2898), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2898), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2898), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2898), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2898), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2898), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2898), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2898), - [anon_sym_MOZ_COLD] = ACTIONS(2898), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2898), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2898), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2898), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2898), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2898), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2898), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2898), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2898), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2898), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2898), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2898), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2898), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2898), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2898), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2898), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2898), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2898), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2898), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2898), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2898), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_NONNULL] = ACTIONS(2898), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2898), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2898), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2898), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2898), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2898), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_NORETURN] = ACTIONS(2898), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2898), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2898), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2898), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2898), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2898), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2898), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2898), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2898), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2898), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2898), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2898), - [anon_sym_MOZ_RAII] = ACTIONS(2898), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2898), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2898), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2898), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2898), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2898), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2898), - }, - [1080] = { - [sym_identifier] = ACTIONS(2898), - [aux_sym_preproc_def_token1] = ACTIONS(2898), - [aux_sym_preproc_if_token1] = ACTIONS(2898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2898), - [sym_preproc_directive] = ACTIONS(2898), - [anon_sym_LPAREN2] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_typedef] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(2898), - [anon_sym___attribute__] = ACTIONS(2898), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2900), - [anon_sym___declspec] = ACTIONS(2898), - [anon_sym___based] = ACTIONS(2898), - [anon_sym_RBRACE] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(2898), - [anon_sym_register] = ACTIONS(2898), - [anon_sym_inline] = ACTIONS(2898), - [anon_sym_thread_local] = ACTIONS(2898), - [anon_sym_const] = ACTIONS(2898), - [anon_sym_volatile] = ACTIONS(2898), - [anon_sym_restrict] = ACTIONS(2898), - [anon_sym__Atomic] = ACTIONS(2898), - [anon_sym_mutable] = ACTIONS(2898), - [anon_sym_constexpr] = ACTIONS(2898), - [anon_sym_signed] = ACTIONS(2898), - [anon_sym_unsigned] = ACTIONS(2898), - [anon_sym_long] = ACTIONS(2898), - [anon_sym_short] = ACTIONS(2898), - [sym_primitive_type] = ACTIONS(2898), - [anon_sym_enum] = ACTIONS(2898), - [anon_sym_class] = ACTIONS(2898), - [anon_sym_struct] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2898), - [anon_sym_virtual] = ACTIONS(2898), - [anon_sym_explicit] = ACTIONS(2898), - [anon_sym_public] = ACTIONS(2898), - [anon_sym_private] = ACTIONS(2898), - [anon_sym_protected] = ACTIONS(2898), - [sym_auto] = ACTIONS(2898), - [anon_sym_typename] = ACTIONS(2898), - [anon_sym_template] = ACTIONS(2898), - [anon_sym_operator] = ACTIONS(2898), - [anon_sym_friend] = ACTIONS(2898), - [anon_sym_using] = ACTIONS(2898), - [anon_sym_static_assert] = ACTIONS(2898), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2898), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2898), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2898), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2898), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2898), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2898), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2898), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2898), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2898), - [anon_sym_MOZ_COLD] = ACTIONS(2898), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2898), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2898), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2898), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2898), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2898), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2898), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2898), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2898), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2898), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2898), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2898), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2898), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2898), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2898), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2898), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2898), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2898), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2898), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2898), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2898), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_NONNULL] = ACTIONS(2898), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2898), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2898), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2898), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2898), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2898), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_NORETURN] = ACTIONS(2898), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2898), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2898), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2898), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2898), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2898), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2898), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2898), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2898), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2898), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2898), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2898), - [anon_sym_MOZ_RAII] = ACTIONS(2898), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2898), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2898), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2898), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2898), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2898), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2898), - }, - [1081] = { - [sym_identifier] = ACTIONS(2750), - [aux_sym_preproc_def_token1] = ACTIONS(2750), - [aux_sym_preproc_if_token1] = ACTIONS(2750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2750), - [sym_preproc_directive] = ACTIONS(2750), - [anon_sym_LPAREN2] = ACTIONS(2752), - [anon_sym_TILDE] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2752), - [anon_sym_AMP_AMP] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2750), - [anon_sym_typedef] = ACTIONS(2750), - [anon_sym_extern] = ACTIONS(2750), - [anon_sym___attribute__] = ACTIONS(2750), - [anon_sym_COLON_COLON] = ACTIONS(2752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2752), - [anon_sym___declspec] = ACTIONS(2750), - [anon_sym___based] = ACTIONS(2750), - [anon_sym_RBRACE] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_static] = ACTIONS(2750), - [anon_sym_register] = ACTIONS(2750), - [anon_sym_inline] = ACTIONS(2750), - [anon_sym_thread_local] = ACTIONS(2750), - [anon_sym_const] = ACTIONS(2750), - [anon_sym_volatile] = ACTIONS(2750), - [anon_sym_restrict] = ACTIONS(2750), - [anon_sym__Atomic] = ACTIONS(2750), - [anon_sym_mutable] = ACTIONS(2750), - [anon_sym_constexpr] = ACTIONS(2750), - [anon_sym_signed] = ACTIONS(2750), - [anon_sym_unsigned] = ACTIONS(2750), - [anon_sym_long] = ACTIONS(2750), - [anon_sym_short] = ACTIONS(2750), - [sym_primitive_type] = ACTIONS(2750), - [anon_sym_enum] = ACTIONS(2750), - [anon_sym_class] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(2750), - [anon_sym_union] = ACTIONS(2750), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2750), - [anon_sym_virtual] = ACTIONS(2750), - [anon_sym_explicit] = ACTIONS(2750), - [anon_sym_public] = ACTIONS(2750), - [anon_sym_private] = ACTIONS(2750), - [anon_sym_protected] = ACTIONS(2750), - [sym_auto] = ACTIONS(2750), - [anon_sym_typename] = ACTIONS(2750), - [anon_sym_template] = ACTIONS(2750), - [anon_sym_operator] = ACTIONS(2750), - [anon_sym_friend] = ACTIONS(2750), - [anon_sym_using] = ACTIONS(2750), - [anon_sym_static_assert] = ACTIONS(2750), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2750), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2750), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2750), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2750), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2750), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2750), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2750), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2750), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2750), - [anon_sym_MOZ_COLD] = ACTIONS(2750), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2750), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2750), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2750), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2750), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2750), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2750), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2750), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2750), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2750), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2750), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2750), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2750), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2750), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2750), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2750), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2750), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2750), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2750), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2750), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2750), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_NONNULL] = ACTIONS(2750), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2750), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2750), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2750), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2750), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2750), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_NORETURN] = ACTIONS(2750), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2750), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2750), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2750), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2750), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2750), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2750), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2750), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2750), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2750), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2750), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2750), - [anon_sym_MOZ_RAII] = ACTIONS(2750), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2750), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2750), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2750), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2750), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2750), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2750), - }, - [1082] = { - [sym_identifier] = ACTIONS(1581), - [aux_sym_preproc_def_token1] = ACTIONS(1581), - [aux_sym_preproc_if_token1] = ACTIONS(1581), - [aux_sym_preproc_if_token2] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1581), - [sym_preproc_directive] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(1583), - [anon_sym_TILDE] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1581), - [anon_sym_typedef] = ACTIONS(1581), - [anon_sym_extern] = ACTIONS(1581), - [anon_sym___attribute__] = ACTIONS(1581), - [anon_sym_COLON_COLON] = ACTIONS(1583), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1583), - [anon_sym___declspec] = ACTIONS(1581), - [anon_sym___based] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1581), - [anon_sym_register] = ACTIONS(1581), - [anon_sym_inline] = ACTIONS(1581), - [anon_sym_thread_local] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1581), - [anon_sym_volatile] = ACTIONS(1581), - [anon_sym_restrict] = ACTIONS(1581), - [anon_sym__Atomic] = ACTIONS(1581), - [anon_sym_mutable] = ACTIONS(1581), - [anon_sym_constexpr] = ACTIONS(1581), - [anon_sym_signed] = ACTIONS(1581), - [anon_sym_unsigned] = ACTIONS(1581), - [anon_sym_long] = ACTIONS(1581), - [anon_sym_short] = ACTIONS(1581), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_enum] = ACTIONS(1581), - [anon_sym_class] = ACTIONS(1581), - [anon_sym_struct] = ACTIONS(1581), - [anon_sym_union] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1581), - [anon_sym_virtual] = ACTIONS(1581), - [anon_sym_explicit] = ACTIONS(1581), - [anon_sym_public] = ACTIONS(1581), - [anon_sym_private] = ACTIONS(1581), - [anon_sym_protected] = ACTIONS(1581), - [sym_auto] = ACTIONS(1581), - [anon_sym_typename] = ACTIONS(1581), - [anon_sym_template] = ACTIONS(1581), - [anon_sym_operator] = ACTIONS(1581), - [anon_sym_friend] = ACTIONS(1581), - [anon_sym_using] = ACTIONS(1581), - [anon_sym_static_assert] = ACTIONS(1581), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1581), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1581), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1581), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1581), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1581), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1581), - [anon_sym_MOZ_COLD] = ACTIONS(1581), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1581), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1581), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1581), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1581), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1581), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1581), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1581), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1581), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1581), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1581), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1581), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1581), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1581), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1581), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1581), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1581), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_NONNULL] = ACTIONS(1581), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1581), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1581), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1581), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1581), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_NORETURN] = ACTIONS(1581), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1581), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1581), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1581), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1581), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1581), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1581), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1581), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1581), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1581), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1581), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1581), - [anon_sym_MOZ_RAII] = ACTIONS(1581), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1581), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1581), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1581), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1581), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1581), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1581), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1581), - }, - [1083] = { - [sym_identifier] = ACTIONS(3082), - [aux_sym_preproc_def_token1] = ACTIONS(3082), - [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_TILDE] = ACTIONS(3084), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_AMP] = 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_RBRACE] = ACTIONS(3084), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_register] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym_thread_local] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_volatile] = ACTIONS(3082), - [anon_sym_restrict] = ACTIONS(3082), - [anon_sym__Atomic] = ACTIONS(3082), - [anon_sym_mutable] = ACTIONS(3082), - [anon_sym_constexpr] = ACTIONS(3082), - [anon_sym_signed] = ACTIONS(3082), - [anon_sym_unsigned] = ACTIONS(3082), - [anon_sym_long] = ACTIONS(3082), - [anon_sym_short] = 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), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3082), - [anon_sym_virtual] = ACTIONS(3082), - [anon_sym_explicit] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_protected] = ACTIONS(3082), - [sym_auto] = ACTIONS(3082), - [anon_sym_typename] = ACTIONS(3082), - [anon_sym_template] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_friend] = ACTIONS(3082), - [anon_sym_using] = ACTIONS(3082), - [anon_sym_static_assert] = ACTIONS(3082), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3082), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3082), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3082), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3082), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3082), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3082), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3082), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3082), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3082), - [anon_sym_MOZ_COLD] = ACTIONS(3082), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3082), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3082), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3082), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3082), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3082), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3082), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3082), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3082), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3082), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3082), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3082), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3082), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3082), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3082), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3082), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3082), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3082), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3082), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3082), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3082), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_NONNULL] = ACTIONS(3082), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3082), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3082), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3082), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3082), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3082), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_NORETURN] = ACTIONS(3082), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3082), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3082), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3082), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3082), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3082), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3082), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3082), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3082), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3082), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3082), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3082), - [anon_sym_MOZ_RAII] = ACTIONS(3082), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3082), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3082), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3082), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3082), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3082), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3082), - }, - [1084] = { - [sym_identifier] = ACTIONS(1518), - [aux_sym_preproc_def_token1] = ACTIONS(1518), - [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(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_typedef] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym___attribute__] = ACTIONS(1518), - [anon_sym_COLON_COLON] = ACTIONS(1520), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), - [anon_sym___declspec] = ACTIONS(1518), - [anon_sym___based] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_inline] = ACTIONS(1518), - [anon_sym_thread_local] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_volatile] = ACTIONS(1518), - [anon_sym_restrict] = ACTIONS(1518), - [anon_sym__Atomic] = ACTIONS(1518), - [anon_sym_mutable] = ACTIONS(1518), - [anon_sym_constexpr] = ACTIONS(1518), - [anon_sym_signed] = ACTIONS(1518), - [anon_sym_unsigned] = ACTIONS(1518), - [anon_sym_long] = ACTIONS(1518), - [anon_sym_short] = ACTIONS(1518), - [sym_primitive_type] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1518), - [anon_sym_virtual] = ACTIONS(1518), - [anon_sym_explicit] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [sym_auto] = ACTIONS(1518), - [anon_sym_typename] = ACTIONS(1518), - [anon_sym_template] = ACTIONS(1518), - [anon_sym_operator] = ACTIONS(1518), - [anon_sym_friend] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1518), - [anon_sym_static_assert] = ACTIONS(1518), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1518), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1518), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1518), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1518), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1518), - [anon_sym_MOZ_COLD] = ACTIONS(1518), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1518), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1518), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1518), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1518), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1518), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1518), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1518), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1518), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1518), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1518), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1518), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1518), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1518), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_NONNULL] = ACTIONS(1518), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1518), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1518), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1518), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1518), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1518), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1518), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1518), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1518), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1518), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1518), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1518), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1518), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1518), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1518), - [anon_sym_MOZ_RAII] = ACTIONS(1518), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1518), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1518), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1518), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1518), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1518), - }, - [1085] = { - [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_def_token1] = ACTIONS(1529), - [aux_sym_preproc_if_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), - [sym_preproc_directive] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym___attribute__] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1531), - [anon_sym___declspec] = ACTIONS(1529), - [anon_sym___based] = ACTIONS(1529), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [anon_sym_thread_local] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym__Atomic] = ACTIONS(1529), - [anon_sym_mutable] = ACTIONS(1529), - [anon_sym_constexpr] = ACTIONS(1529), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_class] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1529), - [anon_sym_virtual] = ACTIONS(1529), - [anon_sym_explicit] = ACTIONS(1529), - [anon_sym_public] = ACTIONS(1529), - [anon_sym_private] = ACTIONS(1529), - [anon_sym_protected] = ACTIONS(1529), - [sym_auto] = ACTIONS(1529), - [anon_sym_typename] = ACTIONS(1529), - [anon_sym_template] = ACTIONS(1529), - [anon_sym_operator] = ACTIONS(1529), - [anon_sym_friend] = ACTIONS(1529), - [anon_sym_using] = ACTIONS(1529), - [anon_sym_static_assert] = ACTIONS(1529), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1529), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1529), - [anon_sym_MOZ_COLD] = ACTIONS(1529), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1529), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1529), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1529), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1529), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1529), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1529), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1529), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1529), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1529), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1529), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1529), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1529), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_RAII] = ACTIONS(1529), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1529), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1529), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1529), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1529), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1529), - }, - [1086] = { - [sym_identifier] = ACTIONS(1803), - [aux_sym_preproc_def_token1] = ACTIONS(1803), - [aux_sym_preproc_if_token1] = ACTIONS(1803), - [aux_sym_preproc_if_token2] = ACTIONS(1803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1803), - [sym_preproc_directive] = ACTIONS(1803), - [anon_sym_LPAREN2] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_AMP_AMP] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1803), - [anon_sym_typedef] = ACTIONS(1803), - [anon_sym_extern] = ACTIONS(1803), - [anon_sym___attribute__] = ACTIONS(1803), - [anon_sym_COLON_COLON] = ACTIONS(1805), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1805), - [anon_sym___declspec] = ACTIONS(1803), - [anon_sym___based] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_register] = ACTIONS(1803), - [anon_sym_inline] = ACTIONS(1803), - [anon_sym_thread_local] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_volatile] = ACTIONS(1803), - [anon_sym_restrict] = ACTIONS(1803), - [anon_sym__Atomic] = ACTIONS(1803), - [anon_sym_mutable] = ACTIONS(1803), - [anon_sym_constexpr] = ACTIONS(1803), - [anon_sym_signed] = ACTIONS(1803), - [anon_sym_unsigned] = ACTIONS(1803), - [anon_sym_long] = ACTIONS(1803), - [anon_sym_short] = ACTIONS(1803), - [sym_primitive_type] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_struct] = ACTIONS(1803), - [anon_sym_union] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1803), - [anon_sym_virtual] = ACTIONS(1803), - [anon_sym_explicit] = ACTIONS(1803), - [anon_sym_public] = ACTIONS(1803), - [anon_sym_private] = ACTIONS(1803), - [anon_sym_protected] = ACTIONS(1803), - [sym_auto] = ACTIONS(1803), - [anon_sym_typename] = ACTIONS(1803), - [anon_sym_template] = ACTIONS(1803), - [anon_sym_operator] = ACTIONS(1803), - [anon_sym_friend] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1803), - [anon_sym_static_assert] = ACTIONS(1803), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1803), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1803), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1803), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1803), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1803), - [anon_sym_MOZ_COLD] = ACTIONS(1803), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1803), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1803), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1803), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1803), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1803), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1803), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1803), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1803), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1803), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1803), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1803), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1803), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1803), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_NONNULL] = ACTIONS(1803), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1803), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1803), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1803), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1803), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1803), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1803), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1803), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1803), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1803), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1803), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1803), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1803), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1803), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1803), - [anon_sym_MOZ_RAII] = ACTIONS(1803), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1803), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1803), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1803), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1803), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1803), - }, - [1087] = { - [sym_identifier] = ACTIONS(3086), - [aux_sym_preproc_def_token1] = ACTIONS(3086), - [aux_sym_preproc_if_token1] = ACTIONS(3086), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3086), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3086), - [sym_preproc_directive] = ACTIONS(3086), - [anon_sym_LPAREN2] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(3088), - [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_typedef] = ACTIONS(3086), - [anon_sym_extern] = ACTIONS(3086), - [anon_sym___attribute__] = ACTIONS(3086), - [anon_sym_COLON_COLON] = ACTIONS(3088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3088), - [anon_sym___declspec] = ACTIONS(3086), - [anon_sym___based] = ACTIONS(3086), - [anon_sym_RBRACE] = ACTIONS(3088), - [anon_sym_LBRACK] = ACTIONS(3086), - [anon_sym_static] = ACTIONS(3086), - [anon_sym_register] = ACTIONS(3086), - [anon_sym_inline] = ACTIONS(3086), - [anon_sym_thread_local] = ACTIONS(3086), - [anon_sym_const] = ACTIONS(3086), - [anon_sym_volatile] = ACTIONS(3086), - [anon_sym_restrict] = ACTIONS(3086), - [anon_sym__Atomic] = ACTIONS(3086), - [anon_sym_mutable] = ACTIONS(3086), - [anon_sym_constexpr] = ACTIONS(3086), - [anon_sym_signed] = ACTIONS(3086), - [anon_sym_unsigned] = ACTIONS(3086), - [anon_sym_long] = ACTIONS(3086), - [anon_sym_short] = ACTIONS(3086), - [sym_primitive_type] = ACTIONS(3086), - [anon_sym_enum] = ACTIONS(3086), - [anon_sym_class] = ACTIONS(3086), - [anon_sym_struct] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(3086), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3086), - [anon_sym_virtual] = ACTIONS(3086), - [anon_sym_explicit] = ACTIONS(3086), - [anon_sym_public] = ACTIONS(3086), - [anon_sym_private] = ACTIONS(3086), - [anon_sym_protected] = ACTIONS(3086), - [sym_auto] = ACTIONS(3086), - [anon_sym_typename] = ACTIONS(3086), - [anon_sym_template] = ACTIONS(3086), - [anon_sym_operator] = ACTIONS(3086), - [anon_sym_friend] = ACTIONS(3086), - [anon_sym_using] = ACTIONS(3086), - [anon_sym_static_assert] = ACTIONS(3086), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3086), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3086), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3086), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3086), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3086), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3086), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3086), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3086), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3086), - [anon_sym_MOZ_COLD] = ACTIONS(3086), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3086), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3086), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3086), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3086), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3086), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3086), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3086), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3086), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3086), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3086), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3086), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3086), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3086), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3086), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3086), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3086), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3086), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3086), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3086), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3086), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_NONNULL] = ACTIONS(3086), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3086), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3086), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3086), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3086), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3086), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_NORETURN] = ACTIONS(3086), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3086), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3086), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3086), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3086), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3086), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3086), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3086), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3086), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3086), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3086), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3086), - [anon_sym_MOZ_RAII] = ACTIONS(3086), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3086), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3086), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3086), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3086), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3086), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3086), - }, - [1088] = { - [sym_identifier] = ACTIONS(1815), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token2] = ACTIONS(1815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1815), - [sym_preproc_directive] = ACTIONS(1815), - [anon_sym_LPAREN2] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_typedef] = ACTIONS(1815), - [anon_sym_extern] = ACTIONS(1815), - [anon_sym___attribute__] = ACTIONS(1815), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1817), - [anon_sym___declspec] = ACTIONS(1815), - [anon_sym___based] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_static] = ACTIONS(1815), - [anon_sym_register] = ACTIONS(1815), - [anon_sym_inline] = ACTIONS(1815), - [anon_sym_thread_local] = ACTIONS(1815), - [anon_sym_const] = ACTIONS(1815), - [anon_sym_volatile] = ACTIONS(1815), - [anon_sym_restrict] = ACTIONS(1815), - [anon_sym__Atomic] = ACTIONS(1815), - [anon_sym_mutable] = ACTIONS(1815), - [anon_sym_constexpr] = ACTIONS(1815), - [anon_sym_signed] = ACTIONS(1815), - [anon_sym_unsigned] = ACTIONS(1815), - [anon_sym_long] = ACTIONS(1815), - [anon_sym_short] = ACTIONS(1815), - [sym_primitive_type] = ACTIONS(1815), - [anon_sym_enum] = ACTIONS(1815), - [anon_sym_class] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1815), - [anon_sym_union] = ACTIONS(1815), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1815), - [anon_sym_virtual] = ACTIONS(1815), - [anon_sym_explicit] = ACTIONS(1815), - [anon_sym_public] = ACTIONS(1815), - [anon_sym_private] = ACTIONS(1815), - [anon_sym_protected] = ACTIONS(1815), - [sym_auto] = ACTIONS(1815), - [anon_sym_typename] = ACTIONS(1815), - [anon_sym_template] = ACTIONS(1815), - [anon_sym_operator] = ACTIONS(1815), - [anon_sym_friend] = ACTIONS(1815), - [anon_sym_using] = ACTIONS(1815), - [anon_sym_static_assert] = ACTIONS(1815), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1815), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1815), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1815), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1815), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1815), - [anon_sym_MOZ_COLD] = ACTIONS(1815), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1815), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1815), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1815), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1815), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1815), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1815), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1815), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1815), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1815), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1815), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1815), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1815), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1815), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_NONNULL] = ACTIONS(1815), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1815), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1815), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1815), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1815), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1815), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1815), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1815), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1815), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1815), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1815), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1815), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1815), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1815), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1815), - [anon_sym_MOZ_RAII] = ACTIONS(1815), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1815), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1815), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1815), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1815), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1815), - }, - [1089] = { - [sym_identifier] = ACTIONS(2882), - [aux_sym_preproc_def_token1] = ACTIONS(2882), - [aux_sym_preproc_if_token1] = ACTIONS(2882), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2882), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2882), - [sym_preproc_directive] = ACTIONS(2882), - [anon_sym_LPAREN2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_typedef] = ACTIONS(2882), - [anon_sym_extern] = ACTIONS(2882), - [anon_sym___attribute__] = ACTIONS(2882), - [anon_sym_COLON_COLON] = ACTIONS(2884), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2884), - [anon_sym___declspec] = ACTIONS(2882), - [anon_sym___based] = ACTIONS(2882), - [anon_sym_RBRACE] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_static] = ACTIONS(2882), - [anon_sym_register] = ACTIONS(2882), - [anon_sym_inline] = ACTIONS(2882), - [anon_sym_thread_local] = ACTIONS(2882), - [anon_sym_const] = ACTIONS(2882), - [anon_sym_volatile] = ACTIONS(2882), - [anon_sym_restrict] = ACTIONS(2882), - [anon_sym__Atomic] = ACTIONS(2882), - [anon_sym_mutable] = ACTIONS(2882), - [anon_sym_constexpr] = ACTIONS(2882), - [anon_sym_signed] = ACTIONS(2882), - [anon_sym_unsigned] = ACTIONS(2882), - [anon_sym_long] = ACTIONS(2882), - [anon_sym_short] = ACTIONS(2882), - [sym_primitive_type] = ACTIONS(2882), - [anon_sym_enum] = ACTIONS(2882), - [anon_sym_class] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2882), - [anon_sym_union] = ACTIONS(2882), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2882), - [anon_sym_virtual] = ACTIONS(2882), - [anon_sym_explicit] = ACTIONS(2882), - [anon_sym_public] = ACTIONS(2882), - [anon_sym_private] = ACTIONS(2882), - [anon_sym_protected] = ACTIONS(2882), - [sym_auto] = ACTIONS(2882), - [anon_sym_typename] = ACTIONS(2882), - [anon_sym_template] = ACTIONS(2882), - [anon_sym_operator] = ACTIONS(2882), - [anon_sym_friend] = ACTIONS(2882), - [anon_sym_using] = ACTIONS(2882), - [anon_sym_static_assert] = ACTIONS(2882), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2882), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2882), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2882), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2882), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2882), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2882), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2882), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2882), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2882), - [anon_sym_MOZ_COLD] = ACTIONS(2882), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2882), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2882), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2882), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2882), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2882), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2882), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2882), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2882), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2882), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2882), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2882), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2882), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2882), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2882), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2882), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2882), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2882), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2882), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2882), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2882), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_NONNULL] = ACTIONS(2882), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2882), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2882), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2882), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2882), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2882), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_NORETURN] = ACTIONS(2882), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2882), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2882), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2882), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2882), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2882), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2882), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2882), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2882), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2882), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2882), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2882), - [anon_sym_MOZ_RAII] = ACTIONS(2882), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2882), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2882), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2882), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2882), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2882), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2882), - }, - [1090] = { - [sym_identifier] = ACTIONS(1823), - [aux_sym_preproc_def_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1823), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1825), - [anon_sym_TILDE] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1825), - [anon_sym_AMP_AMP] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_typedef] = ACTIONS(1823), - [anon_sym_extern] = ACTIONS(1823), - [anon_sym___attribute__] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1825), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1825), - [anon_sym___declspec] = ACTIONS(1823), - [anon_sym___based] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_register] = ACTIONS(1823), - [anon_sym_inline] = ACTIONS(1823), - [anon_sym_thread_local] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_volatile] = ACTIONS(1823), - [anon_sym_restrict] = ACTIONS(1823), - [anon_sym__Atomic] = ACTIONS(1823), - [anon_sym_mutable] = ACTIONS(1823), - [anon_sym_constexpr] = ACTIONS(1823), - [anon_sym_signed] = ACTIONS(1823), - [anon_sym_unsigned] = ACTIONS(1823), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_short] = ACTIONS(1823), - [sym_primitive_type] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [anon_sym_class] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(1823), - [anon_sym_union] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1823), - [anon_sym_virtual] = ACTIONS(1823), - [anon_sym_explicit] = ACTIONS(1823), - [anon_sym_public] = ACTIONS(1823), - [anon_sym_private] = ACTIONS(1823), - [anon_sym_protected] = ACTIONS(1823), - [sym_auto] = ACTIONS(1823), - [anon_sym_typename] = ACTIONS(1823), - [anon_sym_template] = ACTIONS(1823), - [anon_sym_operator] = ACTIONS(1823), - [anon_sym_friend] = ACTIONS(1823), - [anon_sym_using] = ACTIONS(1823), - [anon_sym_static_assert] = ACTIONS(1823), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1823), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1823), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1823), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1823), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1823), - [anon_sym_MOZ_COLD] = ACTIONS(1823), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1823), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1823), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1823), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1823), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1823), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1823), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1823), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1823), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1823), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1823), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1823), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1823), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1823), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_NONNULL] = ACTIONS(1823), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1823), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1823), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1823), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1823), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1823), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1823), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1823), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1823), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1823), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1823), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1823), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1823), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1823), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1823), - [anon_sym_MOZ_RAII] = ACTIONS(1823), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1823), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1823), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1823), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1823), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1823), - }, - [1091] = { - [sym_identifier] = ACTIONS(2878), - [aux_sym_preproc_def_token1] = ACTIONS(2878), - [aux_sym_preproc_if_token1] = ACTIONS(2878), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2878), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2878), - [sym_preproc_directive] = ACTIONS(2878), - [anon_sym_LPAREN2] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2880), - [anon_sym_AMP_AMP] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_typedef] = ACTIONS(2878), - [anon_sym_extern] = ACTIONS(2878), - [anon_sym___attribute__] = ACTIONS(2878), - [anon_sym_COLON_COLON] = ACTIONS(2880), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2880), - [anon_sym___declspec] = ACTIONS(2878), - [anon_sym___based] = ACTIONS(2878), - [anon_sym_RBRACE] = ACTIONS(2880), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_static] = ACTIONS(2878), - [anon_sym_register] = ACTIONS(2878), - [anon_sym_inline] = ACTIONS(2878), - [anon_sym_thread_local] = ACTIONS(2878), - [anon_sym_const] = ACTIONS(2878), - [anon_sym_volatile] = ACTIONS(2878), - [anon_sym_restrict] = ACTIONS(2878), - [anon_sym__Atomic] = ACTIONS(2878), - [anon_sym_mutable] = ACTIONS(2878), - [anon_sym_constexpr] = ACTIONS(2878), - [anon_sym_signed] = ACTIONS(2878), - [anon_sym_unsigned] = ACTIONS(2878), - [anon_sym_long] = ACTIONS(2878), - [anon_sym_short] = ACTIONS(2878), - [sym_primitive_type] = ACTIONS(2878), - [anon_sym_enum] = ACTIONS(2878), - [anon_sym_class] = ACTIONS(2878), - [anon_sym_struct] = ACTIONS(2878), - [anon_sym_union] = ACTIONS(2878), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2878), - [anon_sym_virtual] = ACTIONS(2878), - [anon_sym_explicit] = ACTIONS(2878), - [anon_sym_public] = ACTIONS(2878), - [anon_sym_private] = ACTIONS(2878), - [anon_sym_protected] = ACTIONS(2878), - [sym_auto] = ACTIONS(2878), - [anon_sym_typename] = ACTIONS(2878), - [anon_sym_template] = ACTIONS(2878), - [anon_sym_operator] = ACTIONS(2878), - [anon_sym_friend] = ACTIONS(2878), - [anon_sym_using] = ACTIONS(2878), - [anon_sym_static_assert] = ACTIONS(2878), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2878), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2878), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2878), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2878), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2878), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2878), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2878), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2878), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2878), - [anon_sym_MOZ_COLD] = ACTIONS(2878), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2878), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2878), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2878), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2878), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2878), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2878), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2878), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2878), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2878), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2878), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2878), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2878), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2878), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2878), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2878), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2878), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2878), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2878), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2878), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2878), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_NONNULL] = ACTIONS(2878), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2878), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2878), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2878), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2878), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2878), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_NORETURN] = ACTIONS(2878), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2878), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2878), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2878), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2878), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2878), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2878), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2878), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2878), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2878), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2878), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2878), - [anon_sym_MOZ_RAII] = ACTIONS(2878), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2878), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2878), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2878), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2878), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2878), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2878), - }, - [1092] = { - [sym_identifier] = ACTIONS(2812), - [aux_sym_preproc_def_token1] = ACTIONS(2812), - [aux_sym_preproc_if_token1] = ACTIONS(2812), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2812), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2812), - [sym_preproc_directive] = ACTIONS(2812), - [anon_sym_LPAREN2] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_typedef] = ACTIONS(2812), - [anon_sym_extern] = ACTIONS(2812), - [anon_sym___attribute__] = ACTIONS(2812), - [anon_sym_COLON_COLON] = ACTIONS(2814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2814), - [anon_sym___declspec] = ACTIONS(2812), - [anon_sym___based] = ACTIONS(2812), - [anon_sym_RBRACE] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2812), - [anon_sym_static] = ACTIONS(2812), - [anon_sym_register] = ACTIONS(2812), - [anon_sym_inline] = ACTIONS(2812), - [anon_sym_thread_local] = ACTIONS(2812), - [anon_sym_const] = ACTIONS(2812), - [anon_sym_volatile] = ACTIONS(2812), - [anon_sym_restrict] = ACTIONS(2812), - [anon_sym__Atomic] = ACTIONS(2812), - [anon_sym_mutable] = ACTIONS(2812), - [anon_sym_constexpr] = ACTIONS(2812), - [anon_sym_signed] = ACTIONS(2812), - [anon_sym_unsigned] = ACTIONS(2812), - [anon_sym_long] = ACTIONS(2812), - [anon_sym_short] = ACTIONS(2812), - [sym_primitive_type] = ACTIONS(2812), - [anon_sym_enum] = ACTIONS(2812), - [anon_sym_class] = ACTIONS(2812), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_union] = ACTIONS(2812), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2812), - [anon_sym_virtual] = ACTIONS(2812), - [anon_sym_explicit] = ACTIONS(2812), - [anon_sym_public] = ACTIONS(2812), - [anon_sym_private] = ACTIONS(2812), - [anon_sym_protected] = ACTIONS(2812), - [sym_auto] = ACTIONS(2812), - [anon_sym_typename] = ACTIONS(2812), - [anon_sym_template] = ACTIONS(2812), - [anon_sym_operator] = ACTIONS(2812), - [anon_sym_friend] = ACTIONS(2812), - [anon_sym_using] = ACTIONS(2812), - [anon_sym_static_assert] = ACTIONS(2812), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2812), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2812), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2812), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2812), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2812), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2812), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2812), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2812), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2812), - [anon_sym_MOZ_COLD] = ACTIONS(2812), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2812), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2812), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2812), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2812), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2812), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2812), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2812), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2812), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2812), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2812), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2812), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2812), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2812), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2812), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2812), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2812), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2812), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2812), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2812), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2812), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_NONNULL] = ACTIONS(2812), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2812), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2812), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2812), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2812), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2812), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_NORETURN] = ACTIONS(2812), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2812), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2812), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2812), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2812), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2812), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2812), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2812), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2812), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2812), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2812), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2812), - [anon_sym_MOZ_RAII] = ACTIONS(2812), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2812), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2812), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2812), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2812), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2812), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2812), - }, - [1093] = { - [sym_identifier] = ACTIONS(2874), - [aux_sym_preproc_def_token1] = ACTIONS(2874), - [aux_sym_preproc_if_token1] = ACTIONS(2874), - [aux_sym_preproc_if_token2] = ACTIONS(2874), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2874), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2874), - [sym_preproc_directive] = ACTIONS(2874), - [anon_sym_LPAREN2] = ACTIONS(2876), - [anon_sym_TILDE] = ACTIONS(2876), - [anon_sym_STAR] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_typedef] = ACTIONS(2874), - [anon_sym_extern] = ACTIONS(2874), - [anon_sym___attribute__] = ACTIONS(2874), - [anon_sym_COLON_COLON] = ACTIONS(2876), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2876), - [anon_sym___declspec] = ACTIONS(2874), - [anon_sym___based] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_static] = ACTIONS(2874), - [anon_sym_register] = ACTIONS(2874), - [anon_sym_inline] = ACTIONS(2874), - [anon_sym_thread_local] = ACTIONS(2874), - [anon_sym_const] = ACTIONS(2874), - [anon_sym_volatile] = ACTIONS(2874), - [anon_sym_restrict] = ACTIONS(2874), - [anon_sym__Atomic] = ACTIONS(2874), - [anon_sym_mutable] = ACTIONS(2874), - [anon_sym_constexpr] = ACTIONS(2874), - [anon_sym_signed] = ACTIONS(2874), - [anon_sym_unsigned] = ACTIONS(2874), - [anon_sym_long] = ACTIONS(2874), - [anon_sym_short] = ACTIONS(2874), - [sym_primitive_type] = ACTIONS(2874), - [anon_sym_enum] = ACTIONS(2874), - [anon_sym_class] = ACTIONS(2874), - [anon_sym_struct] = ACTIONS(2874), - [anon_sym_union] = ACTIONS(2874), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2874), - [anon_sym_virtual] = ACTIONS(2874), - [anon_sym_explicit] = ACTIONS(2874), - [anon_sym_public] = ACTIONS(2874), - [anon_sym_private] = ACTIONS(2874), - [anon_sym_protected] = ACTIONS(2874), - [sym_auto] = ACTIONS(2874), - [anon_sym_typename] = ACTIONS(2874), - [anon_sym_template] = ACTIONS(2874), - [anon_sym_operator] = ACTIONS(2874), - [anon_sym_friend] = ACTIONS(2874), - [anon_sym_using] = ACTIONS(2874), - [anon_sym_static_assert] = ACTIONS(2874), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2874), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2874), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2874), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2874), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2874), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2874), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2874), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2874), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2874), - [anon_sym_MOZ_COLD] = ACTIONS(2874), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2874), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2874), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2874), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2874), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2874), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2874), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2874), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2874), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2874), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2874), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2874), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2874), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2874), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2874), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2874), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2874), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2874), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2874), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2874), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2874), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_NONNULL] = ACTIONS(2874), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2874), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2874), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2874), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2874), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2874), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_NORETURN] = ACTIONS(2874), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2874), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2874), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2874), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2874), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2874), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2874), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2874), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2874), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2874), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2874), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2874), - [anon_sym_MOZ_RAII] = ACTIONS(2874), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2874), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2874), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2874), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2874), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2874), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2874), - }, - [1094] = { - [sym_identifier] = ACTIONS(2870), - [aux_sym_preproc_def_token1] = ACTIONS(2870), - [aux_sym_preproc_if_token1] = ACTIONS(2870), - [aux_sym_preproc_if_token2] = ACTIONS(2870), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2870), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2870), - [sym_preproc_directive] = ACTIONS(2870), - [anon_sym_LPAREN2] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2872), - [anon_sym_STAR] = ACTIONS(2872), - [anon_sym_AMP_AMP] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_typedef] = ACTIONS(2870), - [anon_sym_extern] = ACTIONS(2870), - [anon_sym___attribute__] = ACTIONS(2870), - [anon_sym_COLON_COLON] = ACTIONS(2872), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2872), - [anon_sym___declspec] = ACTIONS(2870), - [anon_sym___based] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_static] = ACTIONS(2870), - [anon_sym_register] = ACTIONS(2870), - [anon_sym_inline] = ACTIONS(2870), - [anon_sym_thread_local] = ACTIONS(2870), - [anon_sym_const] = ACTIONS(2870), - [anon_sym_volatile] = ACTIONS(2870), - [anon_sym_restrict] = ACTIONS(2870), - [anon_sym__Atomic] = ACTIONS(2870), - [anon_sym_mutable] = ACTIONS(2870), - [anon_sym_constexpr] = ACTIONS(2870), - [anon_sym_signed] = ACTIONS(2870), - [anon_sym_unsigned] = ACTIONS(2870), - [anon_sym_long] = ACTIONS(2870), - [anon_sym_short] = ACTIONS(2870), - [sym_primitive_type] = ACTIONS(2870), - [anon_sym_enum] = ACTIONS(2870), - [anon_sym_class] = ACTIONS(2870), - [anon_sym_struct] = ACTIONS(2870), - [anon_sym_union] = ACTIONS(2870), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2870), - [anon_sym_virtual] = ACTIONS(2870), - [anon_sym_explicit] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2870), - [anon_sym_private] = ACTIONS(2870), - [anon_sym_protected] = ACTIONS(2870), - [sym_auto] = ACTIONS(2870), - [anon_sym_typename] = ACTIONS(2870), - [anon_sym_template] = ACTIONS(2870), - [anon_sym_operator] = ACTIONS(2870), - [anon_sym_friend] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2870), - [anon_sym_static_assert] = ACTIONS(2870), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2870), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2870), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2870), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2870), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2870), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2870), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2870), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2870), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2870), - [anon_sym_MOZ_COLD] = ACTIONS(2870), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2870), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2870), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2870), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2870), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2870), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2870), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2870), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2870), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2870), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2870), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2870), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2870), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2870), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2870), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2870), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2870), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2870), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2870), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2870), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2870), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_NONNULL] = ACTIONS(2870), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2870), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2870), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2870), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2870), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2870), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_NORETURN] = ACTIONS(2870), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2870), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2870), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2870), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2870), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2870), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2870), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2870), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2870), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2870), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2870), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2870), - [anon_sym_MOZ_RAII] = ACTIONS(2870), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2870), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2870), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2870), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2870), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2870), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2870), - }, - [1095] = { - [sym_identifier] = ACTIONS(2582), - [aux_sym_preproc_def_token1] = ACTIONS(2582), - [aux_sym_preproc_if_token1] = ACTIONS(2582), - [aux_sym_preproc_if_token2] = ACTIONS(2582), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2582), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2582), - [sym_preproc_directive] = ACTIONS(2582), - [anon_sym_LPAREN2] = ACTIONS(2584), - [anon_sym_TILDE] = ACTIONS(2584), - [anon_sym_STAR] = ACTIONS(2584), - [anon_sym_AMP_AMP] = ACTIONS(2584), - [anon_sym_AMP] = ACTIONS(2582), - [anon_sym_typedef] = ACTIONS(2582), - [anon_sym_extern] = ACTIONS(2582), - [anon_sym___attribute__] = ACTIONS(2582), - [anon_sym_COLON_COLON] = ACTIONS(2584), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2584), - [anon_sym___declspec] = ACTIONS(2582), - [anon_sym___based] = ACTIONS(2582), - [anon_sym_LBRACK] = ACTIONS(2582), - [anon_sym_static] = ACTIONS(2582), - [anon_sym_register] = ACTIONS(2582), - [anon_sym_inline] = ACTIONS(2582), - [anon_sym_thread_local] = ACTIONS(2582), - [anon_sym_const] = ACTIONS(2582), - [anon_sym_volatile] = ACTIONS(2582), - [anon_sym_restrict] = ACTIONS(2582), - [anon_sym__Atomic] = ACTIONS(2582), - [anon_sym_mutable] = ACTIONS(2582), - [anon_sym_constexpr] = ACTIONS(2582), - [anon_sym_signed] = ACTIONS(2582), - [anon_sym_unsigned] = ACTIONS(2582), - [anon_sym_long] = ACTIONS(2582), - [anon_sym_short] = ACTIONS(2582), - [sym_primitive_type] = ACTIONS(2582), - [anon_sym_enum] = ACTIONS(2582), - [anon_sym_class] = ACTIONS(2582), - [anon_sym_struct] = ACTIONS(2582), - [anon_sym_union] = ACTIONS(2582), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_virtual] = ACTIONS(2582), - [anon_sym_explicit] = ACTIONS(2582), - [anon_sym_public] = ACTIONS(2582), - [anon_sym_private] = ACTIONS(2582), - [anon_sym_protected] = ACTIONS(2582), - [sym_auto] = ACTIONS(2582), - [anon_sym_typename] = ACTIONS(2582), - [anon_sym_template] = ACTIONS(2582), - [anon_sym_operator] = ACTIONS(2582), - [anon_sym_friend] = ACTIONS(2582), - [anon_sym_using] = ACTIONS(2582), - [anon_sym_static_assert] = ACTIONS(2582), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2582), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2582), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2582), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2582), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2582), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2582), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2582), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2582), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2582), - [anon_sym_MOZ_COLD] = ACTIONS(2582), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2582), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2582), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2582), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2582), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2582), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2582), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2582), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2582), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2582), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2582), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2582), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2582), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2582), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2582), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2582), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2582), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2582), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2582), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2582), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2582), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_NONNULL] = ACTIONS(2582), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2582), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2582), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2582), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2582), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2582), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_NORETURN] = ACTIONS(2582), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2582), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2582), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2582), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2582), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2582), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2582), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2582), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2582), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2582), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2582), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2582), - [anon_sym_MOZ_RAII] = ACTIONS(2582), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2582), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2582), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2582), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2582), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2582), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2582), - }, - [1096] = { - [sym_identifier] = ACTIONS(1835), - [aux_sym_preproc_def_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1835), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1835), - [sym_preproc_directive] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_TILDE] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1837), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_typedef] = ACTIONS(1835), - [anon_sym_extern] = ACTIONS(1835), - [anon_sym___attribute__] = ACTIONS(1835), - [anon_sym_COLON_COLON] = ACTIONS(1837), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1837), - [anon_sym___declspec] = ACTIONS(1835), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_static] = ACTIONS(1835), - [anon_sym_register] = ACTIONS(1835), - [anon_sym_inline] = ACTIONS(1835), - [anon_sym_thread_local] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym_mutable] = ACTIONS(1835), - [anon_sym_constexpr] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(1835), - [anon_sym_unsigned] = ACTIONS(1835), - [anon_sym_long] = ACTIONS(1835), - [anon_sym_short] = ACTIONS(1835), - [sym_primitive_type] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_struct] = ACTIONS(1835), - [anon_sym_union] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1835), - [anon_sym_virtual] = ACTIONS(1835), - [anon_sym_explicit] = ACTIONS(1835), - [anon_sym_public] = ACTIONS(1835), - [anon_sym_private] = ACTIONS(1835), - [anon_sym_protected] = ACTIONS(1835), - [sym_auto] = ACTIONS(1835), - [anon_sym_typename] = ACTIONS(1835), - [anon_sym_template] = ACTIONS(1835), - [anon_sym_operator] = ACTIONS(1835), - [anon_sym_friend] = ACTIONS(1835), - [anon_sym_using] = ACTIONS(1835), - [anon_sym_static_assert] = ACTIONS(1835), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1835), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1835), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1835), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1835), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1835), - [anon_sym_MOZ_COLD] = ACTIONS(1835), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1835), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1835), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1835), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1835), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1835), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1835), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1835), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1835), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1835), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1835), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1835), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1835), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1835), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_NONNULL] = ACTIONS(1835), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1835), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1835), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1835), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1835), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1835), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1835), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1835), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1835), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1835), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1835), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1835), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1835), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1835), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1835), - [anon_sym_MOZ_RAII] = ACTIONS(1835), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1835), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1835), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1835), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1835), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1835), - }, - [1097] = { - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1831), - [aux_sym_preproc_if_token1] = ACTIONS(1831), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1831), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1831), - [sym_preproc_directive] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_AMP_AMP] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_typedef] = ACTIONS(1831), - [anon_sym_extern] = ACTIONS(1831), - [anon_sym___attribute__] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1833), - [anon_sym___declspec] = ACTIONS(1831), - [anon_sym___based] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_static] = ACTIONS(1831), - [anon_sym_register] = ACTIONS(1831), - [anon_sym_inline] = ACTIONS(1831), - [anon_sym_thread_local] = ACTIONS(1831), - [anon_sym_const] = ACTIONS(1831), - [anon_sym_volatile] = ACTIONS(1831), - [anon_sym_restrict] = ACTIONS(1831), - [anon_sym__Atomic] = ACTIONS(1831), - [anon_sym_mutable] = ACTIONS(1831), - [anon_sym_constexpr] = ACTIONS(1831), - [anon_sym_signed] = ACTIONS(1831), - [anon_sym_unsigned] = ACTIONS(1831), - [anon_sym_long] = ACTIONS(1831), - [anon_sym_short] = ACTIONS(1831), - [sym_primitive_type] = ACTIONS(1831), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_class] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(1831), - [anon_sym_union] = ACTIONS(1831), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1831), - [anon_sym_virtual] = ACTIONS(1831), - [anon_sym_explicit] = ACTIONS(1831), - [anon_sym_public] = ACTIONS(1831), - [anon_sym_private] = ACTIONS(1831), - [anon_sym_protected] = ACTIONS(1831), - [sym_auto] = ACTIONS(1831), - [anon_sym_typename] = ACTIONS(1831), - [anon_sym_template] = ACTIONS(1831), - [anon_sym_operator] = ACTIONS(1831), - [anon_sym_friend] = ACTIONS(1831), - [anon_sym_using] = ACTIONS(1831), - [anon_sym_static_assert] = ACTIONS(1831), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1831), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1831), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1831), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1831), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1831), - [anon_sym_MOZ_COLD] = ACTIONS(1831), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1831), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1831), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1831), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1831), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1831), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1831), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1831), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1831), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1831), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1831), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1831), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1831), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1831), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_NONNULL] = ACTIONS(1831), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1831), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1831), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1831), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1831), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1831), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1831), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1831), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1831), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1831), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1831), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1831), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1831), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1831), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1831), - [anon_sym_MOZ_RAII] = ACTIONS(1831), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1831), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1831), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1831), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1831), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1831), - }, - [1098] = { - [sym_identifier] = ACTIONS(2750), - [aux_sym_preproc_def_token1] = ACTIONS(2750), - [aux_sym_preproc_if_token1] = ACTIONS(2750), - [aux_sym_preproc_if_token2] = ACTIONS(2750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2750), - [sym_preproc_directive] = ACTIONS(2750), - [anon_sym_LPAREN2] = ACTIONS(2752), - [anon_sym_TILDE] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2752), - [anon_sym_AMP_AMP] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2750), - [anon_sym_typedef] = ACTIONS(2750), - [anon_sym_extern] = ACTIONS(2750), - [anon_sym___attribute__] = ACTIONS(2750), - [anon_sym_COLON_COLON] = ACTIONS(2752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2752), - [anon_sym___declspec] = ACTIONS(2750), - [anon_sym___based] = ACTIONS(2750), - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_static] = ACTIONS(2750), - [anon_sym_register] = ACTIONS(2750), - [anon_sym_inline] = ACTIONS(2750), - [anon_sym_thread_local] = ACTIONS(2750), - [anon_sym_const] = ACTIONS(2750), - [anon_sym_volatile] = ACTIONS(2750), - [anon_sym_restrict] = ACTIONS(2750), - [anon_sym__Atomic] = ACTIONS(2750), - [anon_sym_mutable] = ACTIONS(2750), - [anon_sym_constexpr] = ACTIONS(2750), - [anon_sym_signed] = ACTIONS(2750), - [anon_sym_unsigned] = ACTIONS(2750), - [anon_sym_long] = ACTIONS(2750), - [anon_sym_short] = ACTIONS(2750), - [sym_primitive_type] = ACTIONS(2750), - [anon_sym_enum] = ACTIONS(2750), - [anon_sym_class] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(2750), - [anon_sym_union] = ACTIONS(2750), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2750), - [anon_sym_virtual] = ACTIONS(2750), - [anon_sym_explicit] = ACTIONS(2750), - [anon_sym_public] = ACTIONS(2750), - [anon_sym_private] = ACTIONS(2750), - [anon_sym_protected] = ACTIONS(2750), - [sym_auto] = ACTIONS(2750), - [anon_sym_typename] = ACTIONS(2750), - [anon_sym_template] = ACTIONS(2750), - [anon_sym_operator] = ACTIONS(2750), - [anon_sym_friend] = ACTIONS(2750), - [anon_sym_using] = ACTIONS(2750), - [anon_sym_static_assert] = ACTIONS(2750), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2750), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2750), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2750), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2750), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2750), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2750), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2750), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2750), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2750), - [anon_sym_MOZ_COLD] = ACTIONS(2750), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2750), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2750), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2750), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2750), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2750), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2750), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2750), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2750), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2750), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2750), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2750), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2750), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2750), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2750), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2750), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2750), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2750), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2750), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2750), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2750), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2750), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_NONNULL] = ACTIONS(2750), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2750), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2750), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2750), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2750), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2750), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_NORETURN] = ACTIONS(2750), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2750), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2750), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2750), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2750), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2750), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2750), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2750), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2750), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2750), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2750), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2750), - [anon_sym_MOZ_RAII] = ACTIONS(2750), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2750), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2750), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2750), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2750), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2750), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2750), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2750), - }, - [1099] = { - [sym_identifier] = ACTIONS(2582), - [aux_sym_preproc_def_token1] = ACTIONS(2582), - [aux_sym_preproc_if_token1] = ACTIONS(2582), - [aux_sym_preproc_if_token2] = ACTIONS(2582), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2582), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2582), - [sym_preproc_directive] = ACTIONS(2582), - [anon_sym_LPAREN2] = ACTIONS(2584), - [anon_sym_TILDE] = ACTIONS(2584), - [anon_sym_STAR] = ACTIONS(2584), - [anon_sym_AMP_AMP] = ACTIONS(2584), - [anon_sym_AMP] = ACTIONS(2582), - [anon_sym_typedef] = ACTIONS(2582), - [anon_sym_extern] = ACTIONS(2582), - [anon_sym___attribute__] = ACTIONS(2582), - [anon_sym_COLON_COLON] = ACTIONS(2584), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2584), - [anon_sym___declspec] = ACTIONS(2582), - [anon_sym___based] = ACTIONS(2582), - [anon_sym_LBRACK] = ACTIONS(2582), - [anon_sym_static] = ACTIONS(2582), - [anon_sym_register] = ACTIONS(2582), - [anon_sym_inline] = ACTIONS(2582), - [anon_sym_thread_local] = ACTIONS(2582), - [anon_sym_const] = ACTIONS(2582), - [anon_sym_volatile] = ACTIONS(2582), - [anon_sym_restrict] = ACTIONS(2582), - [anon_sym__Atomic] = ACTIONS(2582), - [anon_sym_mutable] = ACTIONS(2582), - [anon_sym_constexpr] = ACTIONS(2582), - [anon_sym_signed] = ACTIONS(2582), - [anon_sym_unsigned] = ACTIONS(2582), - [anon_sym_long] = ACTIONS(2582), - [anon_sym_short] = ACTIONS(2582), - [sym_primitive_type] = ACTIONS(2582), - [anon_sym_enum] = ACTIONS(2582), - [anon_sym_class] = ACTIONS(2582), - [anon_sym_struct] = ACTIONS(2582), - [anon_sym_union] = ACTIONS(2582), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_virtual] = ACTIONS(2582), - [anon_sym_explicit] = ACTIONS(2582), - [anon_sym_public] = ACTIONS(2582), - [anon_sym_private] = ACTIONS(2582), - [anon_sym_protected] = ACTIONS(2582), - [sym_auto] = ACTIONS(2582), - [anon_sym_typename] = ACTIONS(2582), - [anon_sym_template] = ACTIONS(2582), - [anon_sym_operator] = ACTIONS(2582), - [anon_sym_friend] = ACTIONS(2582), - [anon_sym_using] = ACTIONS(2582), - [anon_sym_static_assert] = ACTIONS(2582), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2582), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2582), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2582), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2582), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2582), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2582), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2582), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2582), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2582), - [anon_sym_MOZ_COLD] = ACTIONS(2582), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2582), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2582), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2582), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2582), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2582), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2582), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2582), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2582), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2582), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2582), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2582), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2582), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2582), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2582), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2582), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2582), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2582), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2582), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2582), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2582), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_NONNULL] = ACTIONS(2582), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2582), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2582), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2582), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2582), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2582), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_NORETURN] = ACTIONS(2582), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2582), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2582), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2582), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2582), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2582), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2582), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2582), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2582), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2582), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2582), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2582), - [anon_sym_MOZ_RAII] = ACTIONS(2582), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2582), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2582), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2582), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2582), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2582), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2582), - }, - [1100] = { - [sym_identifier] = ACTIONS(2624), - [aux_sym_preproc_def_token1] = ACTIONS(2624), - [aux_sym_preproc_if_token1] = ACTIONS(2624), - [aux_sym_preproc_if_token2] = ACTIONS(2624), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2624), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2624), - [sym_preproc_directive] = ACTIONS(2624), - [anon_sym_LPAREN2] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_typedef] = ACTIONS(2624), - [anon_sym_extern] = ACTIONS(2624), - [anon_sym___attribute__] = ACTIONS(2624), - [anon_sym_COLON_COLON] = ACTIONS(2626), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2626), - [anon_sym___declspec] = ACTIONS(2624), - [anon_sym___based] = ACTIONS(2624), - [anon_sym_LBRACK] = ACTIONS(2624), - [anon_sym_static] = ACTIONS(2624), - [anon_sym_register] = ACTIONS(2624), - [anon_sym_inline] = ACTIONS(2624), - [anon_sym_thread_local] = ACTIONS(2624), - [anon_sym_const] = ACTIONS(2624), - [anon_sym_volatile] = ACTIONS(2624), - [anon_sym_restrict] = ACTIONS(2624), - [anon_sym__Atomic] = ACTIONS(2624), - [anon_sym_mutable] = ACTIONS(2624), - [anon_sym_constexpr] = ACTIONS(2624), - [anon_sym_signed] = ACTIONS(2624), - [anon_sym_unsigned] = ACTIONS(2624), - [anon_sym_long] = ACTIONS(2624), - [anon_sym_short] = ACTIONS(2624), - [sym_primitive_type] = ACTIONS(2624), - [anon_sym_enum] = ACTIONS(2624), - [anon_sym_class] = ACTIONS(2624), - [anon_sym_struct] = ACTIONS(2624), - [anon_sym_union] = ACTIONS(2624), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2624), - [anon_sym_virtual] = ACTIONS(2624), - [anon_sym_explicit] = ACTIONS(2624), - [anon_sym_public] = ACTIONS(2624), - [anon_sym_private] = ACTIONS(2624), - [anon_sym_protected] = ACTIONS(2624), - [sym_auto] = ACTIONS(2624), - [anon_sym_typename] = ACTIONS(2624), - [anon_sym_template] = ACTIONS(2624), - [anon_sym_operator] = ACTIONS(2624), - [anon_sym_friend] = ACTIONS(2624), - [anon_sym_using] = ACTIONS(2624), - [anon_sym_static_assert] = ACTIONS(2624), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2624), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2624), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2624), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2624), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2624), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2624), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2624), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2624), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2624), - [anon_sym_MOZ_COLD] = ACTIONS(2624), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2624), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2624), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2624), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2624), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2624), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2624), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2624), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2624), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2624), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2624), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2624), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2624), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2624), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2624), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2624), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2624), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2624), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2624), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2624), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2624), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_NONNULL] = ACTIONS(2624), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2624), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2624), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2624), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2624), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2624), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_NORETURN] = ACTIONS(2624), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2624), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2624), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2624), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2624), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2624), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2624), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2624), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2624), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2624), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2624), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2624), - [anon_sym_MOZ_RAII] = ACTIONS(2624), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2624), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2624), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2624), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2624), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2624), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2624), - }, - [1101] = { - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3150), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [1102] = { - [sym_identifier] = ACTIONS(1779), - [aux_sym_preproc_def_token1] = ACTIONS(1779), - [aux_sym_preproc_if_token1] = ACTIONS(1779), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1779), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1779), - [sym_preproc_directive] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP_AMP] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1779), - [anon_sym_typedef] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym___attribute__] = ACTIONS(1779), - [anon_sym_COLON_COLON] = ACTIONS(1781), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1781), - [anon_sym___declspec] = ACTIONS(1779), - [anon_sym___based] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_inline] = ACTIONS(1779), - [anon_sym_thread_local] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [anon_sym_volatile] = ACTIONS(1779), - [anon_sym_restrict] = ACTIONS(1779), - [anon_sym__Atomic] = ACTIONS(1779), - [anon_sym_mutable] = ACTIONS(1779), - [anon_sym_constexpr] = ACTIONS(1779), - [anon_sym_signed] = ACTIONS(1779), - [anon_sym_unsigned] = ACTIONS(1779), - [anon_sym_long] = ACTIONS(1779), - [anon_sym_short] = ACTIONS(1779), - [sym_primitive_type] = ACTIONS(1779), - [anon_sym_enum] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(1779), - [anon_sym_struct] = ACTIONS(1779), - [anon_sym_union] = ACTIONS(1779), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1779), - [anon_sym_virtual] = ACTIONS(1779), - [anon_sym_explicit] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [sym_auto] = ACTIONS(1779), - [anon_sym_typename] = ACTIONS(1779), - [anon_sym_template] = ACTIONS(1779), - [anon_sym_operator] = ACTIONS(1779), - [anon_sym_friend] = ACTIONS(1779), - [anon_sym_using] = ACTIONS(1779), - [anon_sym_static_assert] = ACTIONS(1779), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1779), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1779), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1779), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1779), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1779), - [anon_sym_MOZ_COLD] = ACTIONS(1779), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1779), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1779), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1779), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1779), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1779), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1779), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1779), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1779), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1779), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1779), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1779), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1779), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1779), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_NONNULL] = ACTIONS(1779), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1779), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1779), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1779), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1779), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1779), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1779), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1779), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1779), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1779), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1779), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1779), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1779), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1779), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1779), - [anon_sym_MOZ_RAII] = ACTIONS(1779), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1779), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1779), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1779), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1779), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1779), - }, - [1103] = { - [sym_identifier] = ACTIONS(3082), - [aux_sym_preproc_def_token1] = ACTIONS(3082), - [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_TILDE] = ACTIONS(3084), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_AMP] = 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_LBRACK] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_register] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym_thread_local] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_volatile] = ACTIONS(3082), - [anon_sym_restrict] = ACTIONS(3082), - [anon_sym__Atomic] = ACTIONS(3082), - [anon_sym_mutable] = ACTIONS(3082), - [anon_sym_constexpr] = ACTIONS(3082), - [anon_sym_signed] = ACTIONS(3082), - [anon_sym_unsigned] = ACTIONS(3082), - [anon_sym_long] = ACTIONS(3082), - [anon_sym_short] = 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), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3082), - [anon_sym_virtual] = ACTIONS(3082), - [anon_sym_explicit] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_protected] = ACTIONS(3082), - [sym_auto] = ACTIONS(3082), - [anon_sym_typename] = ACTIONS(3082), - [anon_sym_template] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_friend] = ACTIONS(3082), - [anon_sym_using] = ACTIONS(3082), - [anon_sym_static_assert] = ACTIONS(3082), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3082), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3082), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3082), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3082), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3082), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3082), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3082), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3082), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3082), - [anon_sym_MOZ_COLD] = ACTIONS(3082), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3082), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3082), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3082), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3082), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3082), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3082), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3082), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3082), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3082), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3082), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3082), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3082), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3082), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3082), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3082), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3082), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3082), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3082), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3082), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3082), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3082), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_NONNULL] = ACTIONS(3082), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3082), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3082), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3082), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3082), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3082), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_NORETURN] = ACTIONS(3082), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3082), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3082), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3082), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3082), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3082), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3082), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3082), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3082), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3082), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3082), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3082), - [anon_sym_MOZ_RAII] = ACTIONS(3082), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3082), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3082), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3082), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3082), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3082), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3082), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3082), - }, - [1104] = { - [sym_identifier] = ACTIONS(3090), - [aux_sym_preproc_def_token1] = ACTIONS(3090), - [aux_sym_preproc_if_token1] = ACTIONS(3090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3090), - [sym_preproc_directive] = ACTIONS(3090), - [anon_sym_LPAREN2] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_typedef] = ACTIONS(3090), - [anon_sym_extern] = ACTIONS(3090), - [anon_sym___attribute__] = ACTIONS(3090), - [anon_sym_COLON_COLON] = ACTIONS(3092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3092), - [anon_sym___declspec] = ACTIONS(3090), - [anon_sym___based] = ACTIONS(3090), - [anon_sym_RBRACE] = ACTIONS(3092), - [anon_sym_LBRACK] = ACTIONS(3090), - [anon_sym_static] = ACTIONS(3090), - [anon_sym_register] = ACTIONS(3090), - [anon_sym_inline] = ACTIONS(3090), - [anon_sym_thread_local] = ACTIONS(3090), - [anon_sym_const] = ACTIONS(3090), - [anon_sym_volatile] = ACTIONS(3090), - [anon_sym_restrict] = ACTIONS(3090), - [anon_sym__Atomic] = ACTIONS(3090), - [anon_sym_mutable] = ACTIONS(3090), - [anon_sym_constexpr] = ACTIONS(3090), - [anon_sym_signed] = ACTIONS(3090), - [anon_sym_unsigned] = ACTIONS(3090), - [anon_sym_long] = ACTIONS(3090), - [anon_sym_short] = ACTIONS(3090), - [sym_primitive_type] = ACTIONS(3090), - [anon_sym_enum] = ACTIONS(3090), - [anon_sym_class] = ACTIONS(3090), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_union] = ACTIONS(3090), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3090), - [anon_sym_virtual] = ACTIONS(3090), - [anon_sym_explicit] = ACTIONS(3090), - [anon_sym_public] = ACTIONS(3090), - [anon_sym_private] = ACTIONS(3090), - [anon_sym_protected] = ACTIONS(3090), - [sym_auto] = ACTIONS(3090), - [anon_sym_typename] = ACTIONS(3090), - [anon_sym_template] = ACTIONS(3090), - [anon_sym_operator] = ACTIONS(3090), - [anon_sym_friend] = ACTIONS(3090), - [anon_sym_using] = ACTIONS(3090), - [anon_sym_static_assert] = ACTIONS(3090), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3090), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3090), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3090), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3090), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3090), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3090), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3090), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3090), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3090), - [anon_sym_MOZ_COLD] = ACTIONS(3090), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3090), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3090), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3090), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3090), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3090), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3090), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3090), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3090), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3090), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3090), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3090), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3090), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3090), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3090), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3090), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3090), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3090), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3090), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3090), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3090), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_NONNULL] = ACTIONS(3090), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3090), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3090), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3090), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3090), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3090), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_NORETURN] = ACTIONS(3090), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3090), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3090), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3090), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3090), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3090), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3090), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3090), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3090), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3090), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3090), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3090), - [anon_sym_MOZ_RAII] = ACTIONS(3090), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3090), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3090), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3090), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3090), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3090), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3090), - }, - [1105] = { - [sym_identifier] = ACTIONS(2628), - [aux_sym_preproc_def_token1] = ACTIONS(2628), - [aux_sym_preproc_if_token1] = ACTIONS(2628), - [aux_sym_preproc_if_token2] = ACTIONS(2628), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2628), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2628), - [sym_preproc_directive] = ACTIONS(2628), - [anon_sym_LPAREN2] = ACTIONS(2630), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2630), - [anon_sym_AMP_AMP] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_typedef] = ACTIONS(2628), - [anon_sym_extern] = ACTIONS(2628), - [anon_sym___attribute__] = ACTIONS(2628), - [anon_sym_COLON_COLON] = ACTIONS(2630), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2630), - [anon_sym___declspec] = ACTIONS(2628), - [anon_sym___based] = ACTIONS(2628), - [anon_sym_LBRACK] = ACTIONS(2628), - [anon_sym_static] = ACTIONS(2628), - [anon_sym_register] = ACTIONS(2628), - [anon_sym_inline] = ACTIONS(2628), - [anon_sym_thread_local] = ACTIONS(2628), - [anon_sym_const] = ACTIONS(2628), - [anon_sym_volatile] = ACTIONS(2628), - [anon_sym_restrict] = ACTIONS(2628), - [anon_sym__Atomic] = ACTIONS(2628), - [anon_sym_mutable] = ACTIONS(2628), - [anon_sym_constexpr] = ACTIONS(2628), - [anon_sym_signed] = ACTIONS(2628), - [anon_sym_unsigned] = ACTIONS(2628), - [anon_sym_long] = ACTIONS(2628), - [anon_sym_short] = ACTIONS(2628), - [sym_primitive_type] = ACTIONS(2628), - [anon_sym_enum] = ACTIONS(2628), - [anon_sym_class] = ACTIONS(2628), - [anon_sym_struct] = ACTIONS(2628), - [anon_sym_union] = ACTIONS(2628), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2628), - [anon_sym_virtual] = ACTIONS(2628), - [anon_sym_explicit] = ACTIONS(2628), - [anon_sym_public] = ACTIONS(2628), - [anon_sym_private] = ACTIONS(2628), - [anon_sym_protected] = ACTIONS(2628), - [sym_auto] = ACTIONS(2628), - [anon_sym_typename] = ACTIONS(2628), - [anon_sym_template] = ACTIONS(2628), - [anon_sym_operator] = ACTIONS(2628), - [anon_sym_friend] = ACTIONS(2628), - [anon_sym_using] = ACTIONS(2628), - [anon_sym_static_assert] = ACTIONS(2628), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2628), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2628), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2628), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2628), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2628), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2628), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2628), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2628), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2628), - [anon_sym_MOZ_COLD] = ACTIONS(2628), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2628), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2628), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2628), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2628), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2628), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2628), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2628), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2628), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2628), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2628), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2628), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2628), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2628), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2628), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2628), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2628), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2628), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2628), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2628), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2628), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_NONNULL] = ACTIONS(2628), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2628), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2628), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2628), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2628), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2628), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_NORETURN] = ACTIONS(2628), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2628), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2628), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2628), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2628), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2628), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2628), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2628), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2628), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2628), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2628), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2628), - [anon_sym_MOZ_RAII] = ACTIONS(2628), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2628), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2628), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2628), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2628), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2628), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2628), - }, - [1106] = { - [sym_identifier] = ACTIONS(1593), - [aux_sym_preproc_def_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1593), - [sym_preproc_directive] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_typedef] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym___attribute__] = ACTIONS(1593), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1593), - [anon_sym___based] = ACTIONS(1593), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_inline] = ACTIONS(1593), - [anon_sym_thread_local] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_volatile] = ACTIONS(1593), - [anon_sym_restrict] = ACTIONS(1593), - [anon_sym__Atomic] = ACTIONS(1593), - [anon_sym_mutable] = ACTIONS(1593), - [anon_sym_constexpr] = ACTIONS(1593), - [anon_sym_signed] = ACTIONS(1593), - [anon_sym_unsigned] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [sym_primitive_type] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_class] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1593), - [anon_sym_virtual] = ACTIONS(1593), - [anon_sym_explicit] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [sym_auto] = ACTIONS(1593), - [anon_sym_typename] = ACTIONS(1593), - [anon_sym_template] = ACTIONS(1593), - [anon_sym_operator] = ACTIONS(1593), - [anon_sym_friend] = ACTIONS(1593), - [anon_sym_using] = ACTIONS(1593), - [anon_sym_static_assert] = ACTIONS(1593), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1593), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1593), - [anon_sym_MOZ_COLD] = ACTIONS(1593), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1593), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1593), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1593), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1593), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1593), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1593), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1593), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1593), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1593), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1593), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1593), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1593), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_RAII] = ACTIONS(1593), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1593), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1593), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1593), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1593), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1593), - }, - [1107] = { - [sym_identifier] = ACTIONS(2632), - [aux_sym_preproc_def_token1] = ACTIONS(2632), - [aux_sym_preproc_if_token1] = ACTIONS(2632), - [aux_sym_preproc_if_token2] = ACTIONS(2632), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2632), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2632), - [sym_preproc_directive] = ACTIONS(2632), - [anon_sym_LPAREN2] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2634), - [anon_sym_STAR] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2632), - [anon_sym_typedef] = ACTIONS(2632), - [anon_sym_extern] = ACTIONS(2632), - [anon_sym___attribute__] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2634), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2634), - [anon_sym___declspec] = ACTIONS(2632), - [anon_sym___based] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2632), - [anon_sym_static] = ACTIONS(2632), - [anon_sym_register] = ACTIONS(2632), - [anon_sym_inline] = ACTIONS(2632), - [anon_sym_thread_local] = ACTIONS(2632), - [anon_sym_const] = ACTIONS(2632), - [anon_sym_volatile] = ACTIONS(2632), - [anon_sym_restrict] = ACTIONS(2632), - [anon_sym__Atomic] = ACTIONS(2632), - [anon_sym_mutable] = ACTIONS(2632), - [anon_sym_constexpr] = ACTIONS(2632), - [anon_sym_signed] = ACTIONS(2632), - [anon_sym_unsigned] = ACTIONS(2632), - [anon_sym_long] = ACTIONS(2632), - [anon_sym_short] = ACTIONS(2632), - [sym_primitive_type] = ACTIONS(2632), - [anon_sym_enum] = ACTIONS(2632), - [anon_sym_class] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2632), - [anon_sym_union] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2632), - [anon_sym_virtual] = ACTIONS(2632), - [anon_sym_explicit] = ACTIONS(2632), - [anon_sym_public] = ACTIONS(2632), - [anon_sym_private] = ACTIONS(2632), - [anon_sym_protected] = ACTIONS(2632), - [sym_auto] = ACTIONS(2632), - [anon_sym_typename] = ACTIONS(2632), - [anon_sym_template] = ACTIONS(2632), - [anon_sym_operator] = ACTIONS(2632), - [anon_sym_friend] = ACTIONS(2632), - [anon_sym_using] = ACTIONS(2632), - [anon_sym_static_assert] = ACTIONS(2632), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2632), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2632), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2632), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2632), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2632), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2632), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2632), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2632), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2632), - [anon_sym_MOZ_COLD] = ACTIONS(2632), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2632), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2632), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2632), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2632), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2632), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2632), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2632), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2632), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2632), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2632), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2632), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2632), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2632), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2632), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2632), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2632), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2632), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2632), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2632), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2632), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_NONNULL] = ACTIONS(2632), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2632), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2632), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2632), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2632), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2632), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_NORETURN] = ACTIONS(2632), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2632), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2632), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2632), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2632), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2632), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2632), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2632), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2632), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2632), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2632), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2632), - [anon_sym_MOZ_RAII] = ACTIONS(2632), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2632), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2632), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2632), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2632), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2632), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2632), - }, - [1108] = { - [sym_identifier] = ACTIONS(3094), - [aux_sym_preproc_def_token1] = ACTIONS(3094), - [aux_sym_preproc_if_token1] = ACTIONS(3094), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3094), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3094), - [sym_preproc_directive] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(3096), - [anon_sym_TILDE] = ACTIONS(3096), - [anon_sym_STAR] = ACTIONS(3096), - [anon_sym_AMP_AMP] = ACTIONS(3096), - [anon_sym_AMP] = ACTIONS(3094), - [anon_sym_typedef] = ACTIONS(3094), - [anon_sym_extern] = ACTIONS(3094), - [anon_sym___attribute__] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(3096), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3096), - [anon_sym___declspec] = ACTIONS(3094), - [anon_sym___based] = ACTIONS(3094), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(3094), - [anon_sym_static] = ACTIONS(3094), - [anon_sym_register] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym_thread_local] = ACTIONS(3094), - [anon_sym_const] = ACTIONS(3094), - [anon_sym_volatile] = ACTIONS(3094), - [anon_sym_restrict] = ACTIONS(3094), - [anon_sym__Atomic] = ACTIONS(3094), - [anon_sym_mutable] = ACTIONS(3094), - [anon_sym_constexpr] = ACTIONS(3094), - [anon_sym_signed] = ACTIONS(3094), - [anon_sym_unsigned] = ACTIONS(3094), - [anon_sym_long] = ACTIONS(3094), - [anon_sym_short] = ACTIONS(3094), - [sym_primitive_type] = ACTIONS(3094), - [anon_sym_enum] = ACTIONS(3094), - [anon_sym_class] = ACTIONS(3094), - [anon_sym_struct] = ACTIONS(3094), - [anon_sym_union] = ACTIONS(3094), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3094), - [anon_sym_virtual] = ACTIONS(3094), - [anon_sym_explicit] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [sym_auto] = ACTIONS(3094), - [anon_sym_typename] = ACTIONS(3094), - [anon_sym_template] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_friend] = ACTIONS(3094), - [anon_sym_using] = ACTIONS(3094), - [anon_sym_static_assert] = ACTIONS(3094), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3094), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3094), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3094), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3094), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3094), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3094), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3094), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3094), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3094), - [anon_sym_MOZ_COLD] = ACTIONS(3094), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3094), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3094), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3094), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3094), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3094), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3094), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3094), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3094), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3094), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3094), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3094), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3094), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3094), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3094), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3094), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3094), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3094), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3094), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3094), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3094), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_NONNULL] = ACTIONS(3094), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3094), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3094), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3094), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3094), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3094), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_NORETURN] = ACTIONS(3094), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3094), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3094), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3094), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3094), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3094), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3094), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3094), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3094), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3094), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3094), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3094), - [anon_sym_MOZ_RAII] = ACTIONS(3094), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3094), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3094), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3094), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3094), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3094), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3094), - }, - [1109] = { - [sym_identifier] = ACTIONS(3098), - [aux_sym_preproc_def_token1] = ACTIONS(3098), - [aux_sym_preproc_if_token1] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3098), - [sym_preproc_directive] = ACTIONS(3098), - [anon_sym_LPAREN2] = ACTIONS(3100), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_AMP_AMP] = ACTIONS(3100), - [anon_sym_AMP] = ACTIONS(3098), - [anon_sym_typedef] = ACTIONS(3098), - [anon_sym_extern] = ACTIONS(3098), - [anon_sym___attribute__] = ACTIONS(3098), - [anon_sym_COLON_COLON] = ACTIONS(3100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3100), - [anon_sym___declspec] = ACTIONS(3098), - [anon_sym___based] = ACTIONS(3098), - [anon_sym_RBRACE] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(3098), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_register] = ACTIONS(3098), - [anon_sym_inline] = ACTIONS(3098), - [anon_sym_thread_local] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_volatile] = ACTIONS(3098), - [anon_sym_restrict] = ACTIONS(3098), - [anon_sym__Atomic] = ACTIONS(3098), - [anon_sym_mutable] = ACTIONS(3098), - [anon_sym_constexpr] = ACTIONS(3098), - [anon_sym_signed] = ACTIONS(3098), - [anon_sym_unsigned] = ACTIONS(3098), - [anon_sym_long] = ACTIONS(3098), - [anon_sym_short] = ACTIONS(3098), - [sym_primitive_type] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_class] = ACTIONS(3098), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_union] = ACTIONS(3098), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3098), - [anon_sym_virtual] = ACTIONS(3098), - [anon_sym_explicit] = ACTIONS(3098), - [anon_sym_public] = ACTIONS(3098), - [anon_sym_private] = ACTIONS(3098), - [anon_sym_protected] = ACTIONS(3098), - [sym_auto] = ACTIONS(3098), - [anon_sym_typename] = ACTIONS(3098), - [anon_sym_template] = ACTIONS(3098), - [anon_sym_operator] = ACTIONS(3098), - [anon_sym_friend] = ACTIONS(3098), - [anon_sym_using] = ACTIONS(3098), - [anon_sym_static_assert] = ACTIONS(3098), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3098), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3098), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3098), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3098), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3098), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3098), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3098), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3098), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3098), - [anon_sym_MOZ_COLD] = ACTIONS(3098), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3098), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3098), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3098), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3098), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3098), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3098), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3098), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3098), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3098), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3098), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3098), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3098), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3098), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3098), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3098), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3098), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3098), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3098), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3098), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3098), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_NONNULL] = ACTIONS(3098), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3098), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3098), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3098), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3098), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3098), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_NORETURN] = ACTIONS(3098), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3098), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3098), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3098), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3098), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3098), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3098), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3098), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3098), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3098), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3098), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3098), - [anon_sym_MOZ_RAII] = ACTIONS(3098), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3098), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3098), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3098), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3098), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3098), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3098), - }, - [1110] = { - [sym_identifier] = ACTIONS(3098), - [aux_sym_preproc_def_token1] = ACTIONS(3098), - [aux_sym_preproc_if_token1] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3098), - [sym_preproc_directive] = ACTIONS(3098), - [anon_sym_LPAREN2] = ACTIONS(3100), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_AMP_AMP] = ACTIONS(3100), - [anon_sym_AMP] = ACTIONS(3098), - [anon_sym_typedef] = ACTIONS(3098), - [anon_sym_extern] = ACTIONS(3098), - [anon_sym___attribute__] = ACTIONS(3098), - [anon_sym_COLON_COLON] = ACTIONS(3100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3100), - [anon_sym___declspec] = ACTIONS(3098), - [anon_sym___based] = ACTIONS(3098), - [anon_sym_RBRACE] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(3098), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_register] = ACTIONS(3098), - [anon_sym_inline] = ACTIONS(3098), - [anon_sym_thread_local] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_volatile] = ACTIONS(3098), - [anon_sym_restrict] = ACTIONS(3098), - [anon_sym__Atomic] = ACTIONS(3098), - [anon_sym_mutable] = ACTIONS(3098), - [anon_sym_constexpr] = ACTIONS(3098), - [anon_sym_signed] = ACTIONS(3098), - [anon_sym_unsigned] = ACTIONS(3098), - [anon_sym_long] = ACTIONS(3098), - [anon_sym_short] = ACTIONS(3098), - [sym_primitive_type] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_class] = ACTIONS(3098), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_union] = ACTIONS(3098), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3098), - [anon_sym_virtual] = ACTIONS(3098), - [anon_sym_explicit] = ACTIONS(3098), - [anon_sym_public] = ACTIONS(3098), - [anon_sym_private] = ACTIONS(3098), - [anon_sym_protected] = ACTIONS(3098), - [sym_auto] = ACTIONS(3098), - [anon_sym_typename] = ACTIONS(3098), - [anon_sym_template] = ACTIONS(3098), - [anon_sym_operator] = ACTIONS(3098), - [anon_sym_friend] = ACTIONS(3098), - [anon_sym_using] = ACTIONS(3098), - [anon_sym_static_assert] = ACTIONS(3098), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3098), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3098), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3098), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3098), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3098), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3098), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3098), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3098), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3098), - [anon_sym_MOZ_COLD] = ACTIONS(3098), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3098), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3098), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3098), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3098), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3098), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3098), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3098), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3098), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3098), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3098), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3098), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3098), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3098), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3098), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3098), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3098), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3098), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3098), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3098), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3098), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_NONNULL] = ACTIONS(3098), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3098), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3098), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3098), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3098), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3098), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_NORETURN] = ACTIONS(3098), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3098), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3098), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3098), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3098), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3098), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3098), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3098), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3098), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3098), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3098), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3098), - [anon_sym_MOZ_RAII] = ACTIONS(3098), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3098), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3098), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3098), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3098), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3098), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3098), - }, - [1111] = { - [sym_identifier] = ACTIONS(1763), - [aux_sym_preproc_def_token1] = ACTIONS(1763), - [aux_sym_preproc_if_token1] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), - [sym_preproc_directive] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1763), - [anon_sym_typedef] = ACTIONS(1763), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym___attribute__] = ACTIONS(1763), - [anon_sym_COLON_COLON] = ACTIONS(1765), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1765), - [anon_sym___declspec] = ACTIONS(1763), - [anon_sym___based] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_inline] = ACTIONS(1763), - [anon_sym_thread_local] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym_mutable] = ACTIONS(1763), - [anon_sym_constexpr] = ACTIONS(1763), - [anon_sym_signed] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [sym_primitive_type] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [anon_sym_class] = ACTIONS(1763), - [anon_sym_struct] = ACTIONS(1763), - [anon_sym_union] = ACTIONS(1763), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1763), - [anon_sym_virtual] = ACTIONS(1763), - [anon_sym_explicit] = ACTIONS(1763), - [anon_sym_public] = ACTIONS(1763), - [anon_sym_private] = ACTIONS(1763), - [anon_sym_protected] = ACTIONS(1763), - [sym_auto] = ACTIONS(1763), - [anon_sym_typename] = ACTIONS(1763), - [anon_sym_template] = ACTIONS(1763), - [anon_sym_operator] = ACTIONS(1763), - [anon_sym_friend] = ACTIONS(1763), - [anon_sym_using] = ACTIONS(1763), - [anon_sym_static_assert] = ACTIONS(1763), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1763), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1763), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1763), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1763), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1763), - [anon_sym_MOZ_COLD] = ACTIONS(1763), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1763), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1763), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1763), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1763), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1763), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1763), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1763), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1763), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1763), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1763), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1763), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1763), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1763), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_NONNULL] = ACTIONS(1763), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1763), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1763), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1763), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1763), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1763), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1763), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1763), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1763), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1763), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1763), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1763), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1763), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1763), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1763), - [anon_sym_MOZ_RAII] = ACTIONS(1763), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1763), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1763), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1763), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1763), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1763), - }, - [1112] = { - [sym_identifier] = ACTIONS(1593), - [aux_sym_preproc_def_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1593), - [sym_preproc_directive] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_typedef] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym___attribute__] = ACTIONS(1593), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1593), - [anon_sym___based] = ACTIONS(1593), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_inline] = ACTIONS(1593), - [anon_sym_thread_local] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_volatile] = ACTIONS(1593), - [anon_sym_restrict] = ACTIONS(1593), - [anon_sym__Atomic] = ACTIONS(1593), - [anon_sym_mutable] = ACTIONS(1593), - [anon_sym_constexpr] = ACTIONS(1593), - [anon_sym_signed] = ACTIONS(1593), - [anon_sym_unsigned] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [sym_primitive_type] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_class] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1593), - [anon_sym_virtual] = ACTIONS(1593), - [anon_sym_explicit] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [sym_auto] = ACTIONS(1593), - [anon_sym_typename] = ACTIONS(1593), - [anon_sym_template] = ACTIONS(1593), - [anon_sym_operator] = ACTIONS(1593), - [anon_sym_friend] = ACTIONS(1593), - [anon_sym_using] = ACTIONS(1593), - [anon_sym_static_assert] = ACTIONS(1593), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1593), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1593), - [anon_sym_MOZ_COLD] = ACTIONS(1593), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1593), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1593), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1593), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1593), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1593), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1593), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1593), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1593), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1593), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1593), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1593), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1593), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_RAII] = ACTIONS(1593), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1593), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1593), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1593), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1593), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1593), - }, - [1113] = { - [sym_identifier] = ACTIONS(3102), - [aux_sym_preproc_def_token1] = ACTIONS(3102), - [aux_sym_preproc_if_token1] = ACTIONS(3102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3102), - [sym_preproc_directive] = ACTIONS(3102), - [anon_sym_LPAREN2] = ACTIONS(3104), - [anon_sym_TILDE] = ACTIONS(3104), - [anon_sym_STAR] = ACTIONS(3104), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_AMP] = ACTIONS(3102), - [anon_sym_typedef] = ACTIONS(3102), - [anon_sym_extern] = ACTIONS(3102), - [anon_sym___attribute__] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3104), - [anon_sym___declspec] = ACTIONS(3102), - [anon_sym___based] = ACTIONS(3102), - [anon_sym_RBRACE] = ACTIONS(3104), - [anon_sym_LBRACK] = ACTIONS(3102), - [anon_sym_static] = ACTIONS(3102), - [anon_sym_register] = ACTIONS(3102), - [anon_sym_inline] = ACTIONS(3102), - [anon_sym_thread_local] = ACTIONS(3102), - [anon_sym_const] = ACTIONS(3102), - [anon_sym_volatile] = ACTIONS(3102), - [anon_sym_restrict] = ACTIONS(3102), - [anon_sym__Atomic] = ACTIONS(3102), - [anon_sym_mutable] = ACTIONS(3102), - [anon_sym_constexpr] = ACTIONS(3102), - [anon_sym_signed] = ACTIONS(3102), - [anon_sym_unsigned] = ACTIONS(3102), - [anon_sym_long] = ACTIONS(3102), - [anon_sym_short] = ACTIONS(3102), - [sym_primitive_type] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), - [anon_sym_class] = ACTIONS(3102), - [anon_sym_struct] = ACTIONS(3102), - [anon_sym_union] = ACTIONS(3102), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3102), - [anon_sym_virtual] = ACTIONS(3102), - [anon_sym_explicit] = ACTIONS(3102), - [anon_sym_public] = ACTIONS(3102), - [anon_sym_private] = ACTIONS(3102), - [anon_sym_protected] = ACTIONS(3102), - [sym_auto] = ACTIONS(3102), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_template] = ACTIONS(3102), - [anon_sym_operator] = ACTIONS(3102), - [anon_sym_friend] = ACTIONS(3102), - [anon_sym_using] = ACTIONS(3102), - [anon_sym_static_assert] = ACTIONS(3102), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3102), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3102), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3102), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3102), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3102), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3102), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3102), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3102), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3102), - [anon_sym_MOZ_COLD] = ACTIONS(3102), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3102), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3102), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3102), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3102), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3102), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3102), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3102), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3102), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3102), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3102), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3102), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3102), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3102), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3102), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3102), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3102), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3102), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3102), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3102), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3102), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_NONNULL] = ACTIONS(3102), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3102), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3102), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3102), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3102), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3102), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_NORETURN] = ACTIONS(3102), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3102), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3102), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3102), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3102), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3102), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3102), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3102), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3102), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3102), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3102), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3102), - [anon_sym_MOZ_RAII] = ACTIONS(3102), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3102), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3102), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3102), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3102), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3102), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3102), - }, - [1114] = { - [sym_identifier] = ACTIONS(1827), - [aux_sym_preproc_def_token1] = ACTIONS(1827), - [aux_sym_preproc_if_token1] = ACTIONS(1827), - [aux_sym_preproc_if_token2] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1827), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_TILDE] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_AMP_AMP] = ACTIONS(1829), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_typedef] = ACTIONS(1827), - [anon_sym_extern] = ACTIONS(1827), - [anon_sym___attribute__] = ACTIONS(1827), - [anon_sym_COLON_COLON] = ACTIONS(1829), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1829), - [anon_sym___declspec] = ACTIONS(1827), - [anon_sym___based] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_static] = ACTIONS(1827), - [anon_sym_register] = ACTIONS(1827), - [anon_sym_inline] = ACTIONS(1827), - [anon_sym_thread_local] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_volatile] = ACTIONS(1827), - [anon_sym_restrict] = ACTIONS(1827), - [anon_sym__Atomic] = ACTIONS(1827), - [anon_sym_mutable] = ACTIONS(1827), - [anon_sym_constexpr] = ACTIONS(1827), - [anon_sym_signed] = ACTIONS(1827), - [anon_sym_unsigned] = ACTIONS(1827), - [anon_sym_long] = ACTIONS(1827), - [anon_sym_short] = ACTIONS(1827), - [sym_primitive_type] = ACTIONS(1827), - [anon_sym_enum] = ACTIONS(1827), - [anon_sym_class] = ACTIONS(1827), - [anon_sym_struct] = ACTIONS(1827), - [anon_sym_union] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1827), - [anon_sym_virtual] = ACTIONS(1827), - [anon_sym_explicit] = ACTIONS(1827), - [anon_sym_public] = ACTIONS(1827), - [anon_sym_private] = ACTIONS(1827), - [anon_sym_protected] = ACTIONS(1827), - [sym_auto] = ACTIONS(1827), - [anon_sym_typename] = ACTIONS(1827), - [anon_sym_template] = ACTIONS(1827), - [anon_sym_operator] = ACTIONS(1827), - [anon_sym_friend] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(1827), - [anon_sym_static_assert] = ACTIONS(1827), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1827), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1827), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1827), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1827), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1827), - [anon_sym_MOZ_COLD] = ACTIONS(1827), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1827), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1827), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1827), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1827), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1827), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1827), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1827), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1827), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1827), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1827), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1827), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1827), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1827), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_NONNULL] = ACTIONS(1827), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1827), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1827), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1827), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1827), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1827), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1827), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1827), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1827), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1827), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1827), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1827), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1827), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1827), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1827), - [anon_sym_MOZ_RAII] = ACTIONS(1827), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1827), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1827), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1827), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1827), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1827), - }, - [1115] = { - [sym_identifier] = ACTIONS(3086), - [aux_sym_preproc_def_token1] = ACTIONS(3086), - [aux_sym_preproc_if_token1] = ACTIONS(3086), - [aux_sym_preproc_if_token2] = ACTIONS(3086), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3086), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3086), - [sym_preproc_directive] = ACTIONS(3086), - [anon_sym_LPAREN2] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(3088), - [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_typedef] = ACTIONS(3086), - [anon_sym_extern] = ACTIONS(3086), - [anon_sym___attribute__] = ACTIONS(3086), - [anon_sym_COLON_COLON] = ACTIONS(3088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3088), - [anon_sym___declspec] = ACTIONS(3086), - [anon_sym___based] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3086), - [anon_sym_static] = ACTIONS(3086), - [anon_sym_register] = ACTIONS(3086), - [anon_sym_inline] = ACTIONS(3086), - [anon_sym_thread_local] = ACTIONS(3086), - [anon_sym_const] = ACTIONS(3086), - [anon_sym_volatile] = ACTIONS(3086), - [anon_sym_restrict] = ACTIONS(3086), - [anon_sym__Atomic] = ACTIONS(3086), - [anon_sym_mutable] = ACTIONS(3086), - [anon_sym_constexpr] = ACTIONS(3086), - [anon_sym_signed] = ACTIONS(3086), - [anon_sym_unsigned] = ACTIONS(3086), - [anon_sym_long] = ACTIONS(3086), - [anon_sym_short] = ACTIONS(3086), - [sym_primitive_type] = ACTIONS(3086), - [anon_sym_enum] = ACTIONS(3086), - [anon_sym_class] = ACTIONS(3086), - [anon_sym_struct] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(3086), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3086), - [anon_sym_virtual] = ACTIONS(3086), - [anon_sym_explicit] = ACTIONS(3086), - [anon_sym_public] = ACTIONS(3086), - [anon_sym_private] = ACTIONS(3086), - [anon_sym_protected] = ACTIONS(3086), - [sym_auto] = ACTIONS(3086), - [anon_sym_typename] = ACTIONS(3086), - [anon_sym_template] = ACTIONS(3086), - [anon_sym_operator] = ACTIONS(3086), - [anon_sym_friend] = ACTIONS(3086), - [anon_sym_using] = ACTIONS(3086), - [anon_sym_static_assert] = ACTIONS(3086), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3086), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3086), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3086), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3086), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3086), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3086), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3086), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3086), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3086), - [anon_sym_MOZ_COLD] = ACTIONS(3086), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3086), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3086), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3086), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3086), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3086), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3086), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3086), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3086), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3086), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3086), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3086), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3086), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3086), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3086), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3086), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3086), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3086), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3086), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3086), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3086), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3086), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_NONNULL] = ACTIONS(3086), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3086), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3086), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3086), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3086), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3086), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_NORETURN] = ACTIONS(3086), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3086), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3086), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3086), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3086), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3086), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3086), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3086), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3086), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3086), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3086), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3086), - [anon_sym_MOZ_RAII] = ACTIONS(3086), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3086), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3086), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3086), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3086), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3086), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3086), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3086), - }, - [1116] = { - [sym_identifier] = ACTIONS(1787), - [aux_sym_preproc_def_token1] = ACTIONS(1787), - [aux_sym_preproc_if_token1] = ACTIONS(1787), - [aux_sym_preproc_if_token2] = ACTIONS(1787), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1787), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1787), - [sym_preproc_directive] = ACTIONS(1787), - [anon_sym_LPAREN2] = ACTIONS(1789), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_AMP_AMP] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_typedef] = ACTIONS(1787), - [anon_sym_extern] = ACTIONS(1787), - [anon_sym___attribute__] = ACTIONS(1787), - [anon_sym_COLON_COLON] = ACTIONS(1789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), - [anon_sym___declspec] = ACTIONS(1787), - [anon_sym___based] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_static] = ACTIONS(1787), - [anon_sym_register] = ACTIONS(1787), - [anon_sym_inline] = ACTIONS(1787), - [anon_sym_thread_local] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_volatile] = ACTIONS(1787), - [anon_sym_restrict] = ACTIONS(1787), - [anon_sym__Atomic] = ACTIONS(1787), - [anon_sym_mutable] = ACTIONS(1787), - [anon_sym_constexpr] = ACTIONS(1787), - [anon_sym_signed] = ACTIONS(1787), - [anon_sym_unsigned] = ACTIONS(1787), - [anon_sym_long] = ACTIONS(1787), - [anon_sym_short] = ACTIONS(1787), - [sym_primitive_type] = ACTIONS(1787), - [anon_sym_enum] = ACTIONS(1787), - [anon_sym_class] = ACTIONS(1787), - [anon_sym_struct] = ACTIONS(1787), - [anon_sym_union] = ACTIONS(1787), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1787), - [anon_sym_virtual] = ACTIONS(1787), - [anon_sym_explicit] = ACTIONS(1787), - [anon_sym_public] = ACTIONS(1787), - [anon_sym_private] = ACTIONS(1787), - [anon_sym_protected] = ACTIONS(1787), - [sym_auto] = ACTIONS(1787), - [anon_sym_typename] = ACTIONS(1787), - [anon_sym_template] = ACTIONS(1787), - [anon_sym_operator] = ACTIONS(1787), - [anon_sym_friend] = ACTIONS(1787), - [anon_sym_using] = ACTIONS(1787), - [anon_sym_static_assert] = ACTIONS(1787), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1787), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1787), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1787), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1787), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1787), - [anon_sym_MOZ_COLD] = ACTIONS(1787), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1787), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1787), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1787), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1787), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1787), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1787), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1787), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1787), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1787), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1787), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1787), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1787), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1787), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_NONNULL] = ACTIONS(1787), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1787), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1787), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1787), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1787), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1787), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1787), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1787), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1787), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1787), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1787), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1787), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1787), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1787), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1787), - [anon_sym_MOZ_RAII] = ACTIONS(1787), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1787), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1787), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1787), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1787), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1787), - }, - [1117] = { - [sym_identifier] = ACTIONS(1899), - [aux_sym_preproc_def_token1] = ACTIONS(1899), - [aux_sym_preproc_if_token1] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1899), - [sym_preproc_directive] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1901), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_AMP_AMP] = ACTIONS(1901), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_typedef] = ACTIONS(1899), - [anon_sym_extern] = ACTIONS(1899), - [anon_sym___attribute__] = ACTIONS(1899), - [anon_sym_COLON_COLON] = ACTIONS(1901), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1901), - [anon_sym___declspec] = ACTIONS(1899), - [anon_sym___based] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_register] = ACTIONS(1899), - [anon_sym_inline] = ACTIONS(1899), - [anon_sym_thread_local] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_volatile] = ACTIONS(1899), - [anon_sym_restrict] = ACTIONS(1899), - [anon_sym__Atomic] = ACTIONS(1899), - [anon_sym_mutable] = ACTIONS(1899), - [anon_sym_constexpr] = ACTIONS(1899), - [anon_sym_signed] = ACTIONS(1899), - [anon_sym_unsigned] = ACTIONS(1899), - [anon_sym_long] = ACTIONS(1899), - [anon_sym_short] = ACTIONS(1899), - [sym_primitive_type] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_class] = ACTIONS(1899), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1899), - [anon_sym_virtual] = ACTIONS(1899), - [anon_sym_explicit] = ACTIONS(1899), - [anon_sym_public] = ACTIONS(1899), - [anon_sym_private] = ACTIONS(1899), - [anon_sym_protected] = ACTIONS(1899), - [sym_auto] = ACTIONS(1899), - [anon_sym_typename] = ACTIONS(1899), - [anon_sym_template] = ACTIONS(1899), - [anon_sym_operator] = ACTIONS(1899), - [anon_sym_friend] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(1899), - [anon_sym_static_assert] = ACTIONS(1899), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1899), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1899), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1899), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1899), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1899), - [anon_sym_MOZ_COLD] = ACTIONS(1899), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1899), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1899), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1899), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1899), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1899), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1899), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1899), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1899), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1899), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1899), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1899), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1899), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1899), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_NONNULL] = ACTIONS(1899), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1899), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1899), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1899), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1899), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1899), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1899), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1899), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1899), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1899), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1899), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1899), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1899), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1899), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1899), - [anon_sym_MOZ_RAII] = ACTIONS(1899), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1899), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1899), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1899), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1899), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1899), - }, - [1118] = { - [sym_identifier] = ACTIONS(3106), - [aux_sym_preproc_def_token1] = ACTIONS(3106), - [aux_sym_preproc_if_token1] = ACTIONS(3106), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3106), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3106), - [sym_preproc_directive] = ACTIONS(3106), - [anon_sym_LPAREN2] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_AMP] = ACTIONS(3106), - [anon_sym_typedef] = ACTIONS(3106), - [anon_sym_extern] = ACTIONS(3106), - [anon_sym___attribute__] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(3108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), - [anon_sym___declspec] = ACTIONS(3106), - [anon_sym___based] = ACTIONS(3106), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3106), - [anon_sym_static] = ACTIONS(3106), - [anon_sym_register] = ACTIONS(3106), - [anon_sym_inline] = ACTIONS(3106), - [anon_sym_thread_local] = ACTIONS(3106), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_volatile] = ACTIONS(3106), - [anon_sym_restrict] = ACTIONS(3106), - [anon_sym__Atomic] = ACTIONS(3106), - [anon_sym_mutable] = ACTIONS(3106), - [anon_sym_constexpr] = ACTIONS(3106), - [anon_sym_signed] = ACTIONS(3106), - [anon_sym_unsigned] = ACTIONS(3106), - [anon_sym_long] = ACTIONS(3106), - [anon_sym_short] = ACTIONS(3106), - [sym_primitive_type] = ACTIONS(3106), - [anon_sym_enum] = ACTIONS(3106), - [anon_sym_class] = ACTIONS(3106), - [anon_sym_struct] = ACTIONS(3106), - [anon_sym_union] = ACTIONS(3106), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3106), - [anon_sym_virtual] = ACTIONS(3106), - [anon_sym_explicit] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [sym_auto] = ACTIONS(3106), - [anon_sym_typename] = ACTIONS(3106), - [anon_sym_template] = ACTIONS(3106), - [anon_sym_operator] = ACTIONS(3106), - [anon_sym_friend] = ACTIONS(3106), - [anon_sym_using] = ACTIONS(3106), - [anon_sym_static_assert] = ACTIONS(3106), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3106), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3106), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3106), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3106), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3106), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3106), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3106), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3106), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3106), - [anon_sym_MOZ_COLD] = ACTIONS(3106), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3106), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3106), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3106), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3106), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3106), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3106), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3106), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3106), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3106), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3106), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3106), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3106), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3106), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3106), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3106), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3106), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3106), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3106), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3106), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3106), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_NONNULL] = ACTIONS(3106), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3106), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3106), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3106), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3106), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3106), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_NORETURN] = ACTIONS(3106), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3106), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3106), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3106), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3106), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3106), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3106), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3106), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3106), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3106), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3106), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3106), - [anon_sym_MOZ_RAII] = ACTIONS(3106), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3106), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3106), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3106), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3106), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3106), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3106), - }, - [1119] = { - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3170), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [1120] = { - [sym_identifier] = ACTIONS(1759), - [aux_sym_preproc_def_token1] = ACTIONS(1759), - [aux_sym_preproc_if_token1] = ACTIONS(1759), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1759), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1759), - [sym_preproc_directive] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(1761), - [anon_sym_TILDE] = ACTIONS(1761), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_AMP_AMP] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1759), - [anon_sym_typedef] = ACTIONS(1759), - [anon_sym_extern] = ACTIONS(1759), - [anon_sym___attribute__] = ACTIONS(1759), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), - [anon_sym___declspec] = ACTIONS(1759), - [anon_sym___based] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_static] = ACTIONS(1759), - [anon_sym_register] = ACTIONS(1759), - [anon_sym_inline] = ACTIONS(1759), - [anon_sym_thread_local] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_volatile] = ACTIONS(1759), - [anon_sym_restrict] = ACTIONS(1759), - [anon_sym__Atomic] = ACTIONS(1759), - [anon_sym_mutable] = ACTIONS(1759), - [anon_sym_constexpr] = ACTIONS(1759), - [anon_sym_signed] = ACTIONS(1759), - [anon_sym_unsigned] = ACTIONS(1759), - [anon_sym_long] = ACTIONS(1759), - [anon_sym_short] = ACTIONS(1759), - [sym_primitive_type] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_class] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(1759), - [anon_sym_union] = ACTIONS(1759), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1759), - [anon_sym_virtual] = ACTIONS(1759), - [anon_sym_explicit] = ACTIONS(1759), - [anon_sym_public] = ACTIONS(1759), - [anon_sym_private] = ACTIONS(1759), - [anon_sym_protected] = ACTIONS(1759), - [sym_auto] = ACTIONS(1759), - [anon_sym_typename] = ACTIONS(1759), - [anon_sym_template] = ACTIONS(1759), - [anon_sym_operator] = ACTIONS(1759), - [anon_sym_friend] = ACTIONS(1759), - [anon_sym_using] = ACTIONS(1759), - [anon_sym_static_assert] = ACTIONS(1759), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1759), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1759), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1759), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1759), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1759), - [anon_sym_MOZ_COLD] = ACTIONS(1759), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1759), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1759), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1759), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1759), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1759), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1759), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1759), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1759), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1759), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1759), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1759), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1759), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1759), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_NONNULL] = ACTIONS(1759), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1759), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1759), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1759), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1759), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1759), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1759), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1759), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1759), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1759), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1759), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1759), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1759), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1759), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1759), - [anon_sym_MOZ_RAII] = ACTIONS(1759), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1759), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1759), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1759), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1759), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1759), - }, - [1121] = { - [sym_identifier] = ACTIONS(1787), - [aux_sym_preproc_def_token1] = ACTIONS(1787), - [aux_sym_preproc_if_token1] = ACTIONS(1787), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1787), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1787), - [sym_preproc_directive] = ACTIONS(1787), - [anon_sym_LPAREN2] = ACTIONS(1789), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_AMP_AMP] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_typedef] = ACTIONS(1787), - [anon_sym_extern] = ACTIONS(1787), - [anon_sym___attribute__] = ACTIONS(1787), - [anon_sym_COLON_COLON] = ACTIONS(1789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), - [anon_sym___declspec] = ACTIONS(1787), - [anon_sym___based] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_static] = ACTIONS(1787), - [anon_sym_register] = ACTIONS(1787), - [anon_sym_inline] = ACTIONS(1787), - [anon_sym_thread_local] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_volatile] = ACTIONS(1787), - [anon_sym_restrict] = ACTIONS(1787), - [anon_sym__Atomic] = ACTIONS(1787), - [anon_sym_mutable] = ACTIONS(1787), - [anon_sym_constexpr] = ACTIONS(1787), - [anon_sym_signed] = ACTIONS(1787), - [anon_sym_unsigned] = ACTIONS(1787), - [anon_sym_long] = ACTIONS(1787), - [anon_sym_short] = ACTIONS(1787), - [sym_primitive_type] = ACTIONS(1787), - [anon_sym_enum] = ACTIONS(1787), - [anon_sym_class] = ACTIONS(1787), - [anon_sym_struct] = ACTIONS(1787), - [anon_sym_union] = ACTIONS(1787), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1787), - [anon_sym_virtual] = ACTIONS(1787), - [anon_sym_explicit] = ACTIONS(1787), - [anon_sym_public] = ACTIONS(1787), - [anon_sym_private] = ACTIONS(1787), - [anon_sym_protected] = ACTIONS(1787), - [sym_auto] = ACTIONS(1787), - [anon_sym_typename] = ACTIONS(1787), - [anon_sym_template] = ACTIONS(1787), - [anon_sym_operator] = ACTIONS(1787), - [anon_sym_friend] = ACTIONS(1787), - [anon_sym_using] = ACTIONS(1787), - [anon_sym_static_assert] = ACTIONS(1787), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1787), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1787), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1787), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1787), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1787), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1787), - [anon_sym_MOZ_COLD] = ACTIONS(1787), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1787), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1787), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1787), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1787), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1787), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1787), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1787), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1787), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1787), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1787), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1787), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1787), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1787), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1787), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1787), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1787), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_NONNULL] = ACTIONS(1787), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1787), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1787), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1787), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1787), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_NORETURN] = ACTIONS(1787), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1787), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1787), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1787), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1787), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1787), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1787), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1787), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1787), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1787), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1787), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1787), - [anon_sym_MOZ_RAII] = ACTIONS(1787), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1787), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1787), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1787), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1787), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1787), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1787), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1787), - }, - [1122] = { - [sym_identifier] = ACTIONS(1883), - [aux_sym_preproc_def_token1] = ACTIONS(1883), - [aux_sym_preproc_if_token1] = ACTIONS(1883), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1883), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1883), - [sym_preproc_directive] = ACTIONS(1883), - [anon_sym_LPAREN2] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1883), - [anon_sym_typedef] = ACTIONS(1883), - [anon_sym_extern] = ACTIONS(1883), - [anon_sym___attribute__] = ACTIONS(1883), - [anon_sym_COLON_COLON] = ACTIONS(1885), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1885), - [anon_sym___declspec] = ACTIONS(1883), - [anon_sym___based] = ACTIONS(1883), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1883), - [anon_sym_static] = ACTIONS(1883), - [anon_sym_register] = ACTIONS(1883), - [anon_sym_inline] = ACTIONS(1883), - [anon_sym_thread_local] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(1883), - [anon_sym_volatile] = ACTIONS(1883), - [anon_sym_restrict] = ACTIONS(1883), - [anon_sym__Atomic] = ACTIONS(1883), - [anon_sym_mutable] = ACTIONS(1883), - [anon_sym_constexpr] = ACTIONS(1883), - [anon_sym_signed] = ACTIONS(1883), - [anon_sym_unsigned] = ACTIONS(1883), - [anon_sym_long] = ACTIONS(1883), - [anon_sym_short] = ACTIONS(1883), - [sym_primitive_type] = ACTIONS(1883), - [anon_sym_enum] = ACTIONS(1883), - [anon_sym_class] = ACTIONS(1883), - [anon_sym_struct] = ACTIONS(1883), - [anon_sym_union] = ACTIONS(1883), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1883), - [anon_sym_virtual] = ACTIONS(1883), - [anon_sym_explicit] = ACTIONS(1883), - [anon_sym_public] = ACTIONS(1883), - [anon_sym_private] = ACTIONS(1883), - [anon_sym_protected] = ACTIONS(1883), - [sym_auto] = ACTIONS(1883), - [anon_sym_typename] = ACTIONS(1883), - [anon_sym_template] = ACTIONS(1883), - [anon_sym_operator] = ACTIONS(1883), - [anon_sym_friend] = ACTIONS(1883), - [anon_sym_using] = ACTIONS(1883), - [anon_sym_static_assert] = ACTIONS(1883), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1883), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1883), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1883), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1883), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1883), - [anon_sym_MOZ_COLD] = ACTIONS(1883), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1883), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1883), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1883), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1883), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1883), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1883), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1883), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1883), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1883), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1883), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1883), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1883), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1883), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_NONNULL] = ACTIONS(1883), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1883), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1883), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1883), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1883), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1883), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1883), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1883), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1883), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1883), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1883), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1883), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1883), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1883), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1883), - [anon_sym_MOZ_RAII] = ACTIONS(1883), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1883), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1883), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1883), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1883), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1883), - }, - [1123] = { - [sym_identifier] = ACTIONS(1879), - [aux_sym_preproc_def_token1] = ACTIONS(1879), - [aux_sym_preproc_if_token1] = ACTIONS(1879), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1879), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1879), - [sym_preproc_directive] = ACTIONS(1879), - [anon_sym_LPAREN2] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_typedef] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym___attribute__] = ACTIONS(1879), - [anon_sym_COLON_COLON] = ACTIONS(1881), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1881), - [anon_sym___declspec] = ACTIONS(1879), - [anon_sym___based] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_static] = ACTIONS(1879), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_inline] = ACTIONS(1879), - [anon_sym_thread_local] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [anon_sym_volatile] = ACTIONS(1879), - [anon_sym_restrict] = ACTIONS(1879), - [anon_sym__Atomic] = ACTIONS(1879), - [anon_sym_mutable] = ACTIONS(1879), - [anon_sym_constexpr] = ACTIONS(1879), - [anon_sym_signed] = ACTIONS(1879), - [anon_sym_unsigned] = ACTIONS(1879), - [anon_sym_long] = ACTIONS(1879), - [anon_sym_short] = ACTIONS(1879), - [sym_primitive_type] = ACTIONS(1879), - [anon_sym_enum] = ACTIONS(1879), - [anon_sym_class] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1879), - [anon_sym_union] = ACTIONS(1879), + [STATE(322)] = { + [sym_identifier] = ACTIONS(1879), + [aux_sym_preproc_include_token1] = ACTIONS(1879), + [aux_sym_preproc_def_token1] = ACTIONS(1879), + [aux_sym_preproc_if_token1] = ACTIONS(1879), + [aux_sym_preproc_if_token2] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1879), + [sym_preproc_directive] = ACTIONS(1879), + [anon_sym_LPAREN2] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym___extension__] = ACTIONS(1879), + [anon_sym_typedef] = ACTIONS(1879), + [anon_sym_virtual] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym___attribute__] = ACTIONS(1879), + [anon_sym___attribute] = ACTIONS(1879), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1877), + [anon_sym___declspec] = ACTIONS(1879), + [anon_sym___based] = ACTIONS(1879), + [anon_sym___cdecl] = ACTIONS(1879), + [anon_sym___clrcall] = ACTIONS(1879), + [anon_sym___stdcall] = ACTIONS(1879), + [anon_sym___fastcall] = ACTIONS(1879), + [anon_sym___thiscall] = ACTIONS(1879), + [anon_sym___vectorcall] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_signed] = ACTIONS(1879), + [anon_sym_unsigned] = ACTIONS(1879), + [anon_sym_long] = ACTIONS(1879), + [anon_sym_short] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_static] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_inline] = ACTIONS(1879), + [anon_sym___inline] = ACTIONS(1879), + [anon_sym___inline__] = ACTIONS(1879), + [anon_sym___forceinline] = ACTIONS(1879), + [anon_sym_thread_local] = ACTIONS(1879), + [anon_sym___thread] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_constexpr] = ACTIONS(1879), + [anon_sym_volatile] = ACTIONS(1879), + [anon_sym_restrict] = ACTIONS(1879), + [anon_sym___restrict__] = ACTIONS(1879), + [anon_sym__Atomic] = ACTIONS(1879), + [anon_sym__Noreturn] = ACTIONS(1879), + [anon_sym_noreturn] = ACTIONS(1879), + [anon_sym__Nonnull] = ACTIONS(1879), + [anon_sym_mutable] = ACTIONS(1879), + [anon_sym_constinit] = ACTIONS(1879), + [anon_sym_consteval] = ACTIONS(1879), + [anon_sym_alignas] = ACTIONS(1879), + [anon_sym__Alignas] = ACTIONS(1879), + [sym_primitive_type] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_class] = ACTIONS(1879), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_switch] = ACTIONS(1879), + [anon_sym_case] = ACTIONS(1879), + [anon_sym_default] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym___try] = ACTIONS(1879), + [anon_sym___leave] = ACTIONS(1879), + [anon_sym_not] = ACTIONS(1879), + [anon_sym_compl] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_sizeof] = ACTIONS(1879), + [anon_sym___alignof__] = ACTIONS(1879), + [anon_sym___alignof] = ACTIONS(1879), + [anon_sym__alignof] = ACTIONS(1879), + [anon_sym_alignof] = ACTIONS(1879), + [anon_sym__Alignof] = ACTIONS(1879), + [anon_sym_offsetof] = ACTIONS(1879), + [anon_sym__Generic] = ACTIONS(1879), + [anon_sym_asm] = ACTIONS(1879), + [anon_sym___asm__] = ACTIONS(1879), + [anon_sym___asm] = ACTIONS(1879), + [sym_number_literal] = ACTIONS(1877), + [anon_sym_L_SQUOTE] = ACTIONS(1877), + [anon_sym_u_SQUOTE] = ACTIONS(1877), + [anon_sym_U_SQUOTE] = ACTIONS(1877), + [anon_sym_u8_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_L_DQUOTE] = ACTIONS(1877), + [anon_sym_u_DQUOTE] = ACTIONS(1877), + [anon_sym_U_DQUOTE] = ACTIONS(1877), + [anon_sym_u8_DQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1879), [anon_sym_decltype] = ACTIONS(1879), - [anon_sym_virtual] = ACTIONS(1879), [anon_sym_explicit] = ACTIONS(1879), - [anon_sym_public] = ACTIONS(1879), - [anon_sym_private] = ACTIONS(1879), - [anon_sym_protected] = ACTIONS(1879), - [sym_auto] = ACTIONS(1879), [anon_sym_typename] = ACTIONS(1879), [anon_sym_template] = ACTIONS(1879), [anon_sym_operator] = ACTIONS(1879), - [anon_sym_friend] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_delete] = ACTIONS(1879), + [anon_sym_throw] = ACTIONS(1879), + [anon_sym_namespace] = ACTIONS(1879), [anon_sym_using] = ACTIONS(1879), [anon_sym_static_assert] = ACTIONS(1879), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1879), + [anon_sym_concept] = ACTIONS(1879), + [anon_sym_co_return] = ACTIONS(1879), + [anon_sym_co_yield] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [anon_sym_R_DQUOTE] = ACTIONS(1877), + [anon_sym_LR_DQUOTE] = ACTIONS(1877), + [anon_sym_uR_DQUOTE] = ACTIONS(1877), + [anon_sym_UR_DQUOTE] = ACTIONS(1877), + [anon_sym_u8R_DQUOTE] = ACTIONS(1877), + [anon_sym_co_await] = ACTIONS(1879), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_requires] = ACTIONS(1879), + [sym_this] = ACTIONS(1879), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1879), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_FORWARD] = ACTIONS(1879), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1879), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1879), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1879), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1879), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_PS_GET] = ACTIONS(1879), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1879), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1879), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1879), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1879), [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1879), [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1879), [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1879), @@ -230176,436 +127857,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1879), [anon_sym_JS_PUBLIC_API] = ACTIONS(1879), }, - [1124] = { - [sym_identifier] = ACTIONS(1743), - [aux_sym_preproc_def_token1] = ACTIONS(1743), - [aux_sym_preproc_if_token1] = ACTIONS(1743), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1743), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1743), - [sym_preproc_directive] = ACTIONS(1743), - [anon_sym_LPAREN2] = ACTIONS(1745), - [anon_sym_TILDE] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_AMP_AMP] = ACTIONS(1745), - [anon_sym_AMP] = ACTIONS(1743), - [anon_sym_typedef] = ACTIONS(1743), - [anon_sym_extern] = ACTIONS(1743), - [anon_sym___attribute__] = ACTIONS(1743), - [anon_sym_COLON_COLON] = ACTIONS(1745), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1745), - [anon_sym___declspec] = ACTIONS(1743), - [anon_sym___based] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_static] = ACTIONS(1743), - [anon_sym_register] = ACTIONS(1743), - [anon_sym_inline] = ACTIONS(1743), - [anon_sym_thread_local] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_volatile] = ACTIONS(1743), - [anon_sym_restrict] = ACTIONS(1743), - [anon_sym__Atomic] = ACTIONS(1743), - [anon_sym_mutable] = ACTIONS(1743), - [anon_sym_constexpr] = ACTIONS(1743), - [anon_sym_signed] = ACTIONS(1743), - [anon_sym_unsigned] = ACTIONS(1743), - [anon_sym_long] = ACTIONS(1743), - [anon_sym_short] = ACTIONS(1743), - [sym_primitive_type] = ACTIONS(1743), - [anon_sym_enum] = ACTIONS(1743), - [anon_sym_class] = ACTIONS(1743), - [anon_sym_struct] = ACTIONS(1743), - [anon_sym_union] = ACTIONS(1743), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1743), - [anon_sym_virtual] = ACTIONS(1743), - [anon_sym_explicit] = ACTIONS(1743), - [anon_sym_public] = ACTIONS(1743), - [anon_sym_private] = ACTIONS(1743), - [anon_sym_protected] = ACTIONS(1743), - [sym_auto] = ACTIONS(1743), - [anon_sym_typename] = ACTIONS(1743), - [anon_sym_template] = ACTIONS(1743), - [anon_sym_operator] = ACTIONS(1743), - [anon_sym_friend] = ACTIONS(1743), - [anon_sym_using] = ACTIONS(1743), - [anon_sym_static_assert] = ACTIONS(1743), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1743), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1743), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1743), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1743), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1743), - [anon_sym_MOZ_COLD] = ACTIONS(1743), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1743), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1743), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1743), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1743), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1743), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1743), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1743), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1743), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1743), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1743), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1743), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1743), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1743), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_NONNULL] = ACTIONS(1743), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1743), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1743), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1743), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1743), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1743), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1743), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1743), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1743), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1743), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1743), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1743), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1743), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1743), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1743), - [anon_sym_MOZ_RAII] = ACTIONS(1743), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1743), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1743), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1743), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1743), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1743), - }, - [1125] = { - [sym_identifier] = ACTIONS(1803), - [aux_sym_preproc_def_token1] = ACTIONS(1803), - [aux_sym_preproc_if_token1] = ACTIONS(1803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1803), - [sym_preproc_directive] = ACTIONS(1803), - [anon_sym_LPAREN2] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_AMP_AMP] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1803), - [anon_sym_typedef] = ACTIONS(1803), - [anon_sym_extern] = ACTIONS(1803), - [anon_sym___attribute__] = ACTIONS(1803), - [anon_sym_COLON_COLON] = ACTIONS(1805), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1805), - [anon_sym___declspec] = ACTIONS(1803), - [anon_sym___based] = ACTIONS(1803), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_register] = ACTIONS(1803), - [anon_sym_inline] = ACTIONS(1803), - [anon_sym_thread_local] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_volatile] = ACTIONS(1803), - [anon_sym_restrict] = ACTIONS(1803), - [anon_sym__Atomic] = ACTIONS(1803), - [anon_sym_mutable] = ACTIONS(1803), - [anon_sym_constexpr] = ACTIONS(1803), - [anon_sym_signed] = ACTIONS(1803), - [anon_sym_unsigned] = ACTIONS(1803), - [anon_sym_long] = ACTIONS(1803), - [anon_sym_short] = ACTIONS(1803), - [sym_primitive_type] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_struct] = ACTIONS(1803), - [anon_sym_union] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1803), - [anon_sym_virtual] = ACTIONS(1803), - [anon_sym_explicit] = ACTIONS(1803), - [anon_sym_public] = ACTIONS(1803), - [anon_sym_private] = ACTIONS(1803), - [anon_sym_protected] = ACTIONS(1803), - [sym_auto] = ACTIONS(1803), - [anon_sym_typename] = ACTIONS(1803), - [anon_sym_template] = ACTIONS(1803), - [anon_sym_operator] = ACTIONS(1803), - [anon_sym_friend] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1803), - [anon_sym_static_assert] = ACTIONS(1803), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1803), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1803), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1803), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1803), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1803), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1803), - [anon_sym_MOZ_COLD] = ACTIONS(1803), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1803), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1803), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1803), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1803), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1803), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1803), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1803), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1803), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1803), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1803), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1803), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1803), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1803), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1803), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1803), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1803), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_NONNULL] = ACTIONS(1803), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1803), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1803), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1803), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1803), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_NORETURN] = ACTIONS(1803), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1803), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1803), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1803), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1803), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1803), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1803), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1803), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1803), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1803), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1803), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1803), - [anon_sym_MOZ_RAII] = ACTIONS(1803), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1803), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1803), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1803), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1803), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1803), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1803), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1803), - }, - [1126] = { - [sym_identifier] = ACTIONS(1839), - [aux_sym_preproc_def_token1] = ACTIONS(1839), - [aux_sym_preproc_if_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [sym_preproc_directive] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(1841), - [anon_sym_TILDE] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_AMP_AMP] = ACTIONS(1841), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_typedef] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym___attribute__] = ACTIONS(1839), - [anon_sym_COLON_COLON] = ACTIONS(1841), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1841), - [anon_sym___declspec] = ACTIONS(1839), - [anon_sym___based] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_static] = ACTIONS(1839), - [anon_sym_register] = ACTIONS(1839), - [anon_sym_inline] = ACTIONS(1839), - [anon_sym_thread_local] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [anon_sym_volatile] = ACTIONS(1839), - [anon_sym_restrict] = ACTIONS(1839), - [anon_sym__Atomic] = ACTIONS(1839), - [anon_sym_mutable] = ACTIONS(1839), - [anon_sym_constexpr] = ACTIONS(1839), - [anon_sym_signed] = ACTIONS(1839), - [anon_sym_unsigned] = ACTIONS(1839), - [anon_sym_long] = ACTIONS(1839), - [anon_sym_short] = ACTIONS(1839), - [sym_primitive_type] = ACTIONS(1839), - [anon_sym_enum] = ACTIONS(1839), - [anon_sym_class] = ACTIONS(1839), - [anon_sym_struct] = ACTIONS(1839), - [anon_sym_union] = ACTIONS(1839), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1839), - [anon_sym_virtual] = ACTIONS(1839), - [anon_sym_explicit] = ACTIONS(1839), - [anon_sym_public] = ACTIONS(1839), - [anon_sym_private] = ACTIONS(1839), - [anon_sym_protected] = ACTIONS(1839), - [sym_auto] = ACTIONS(1839), - [anon_sym_typename] = ACTIONS(1839), - [anon_sym_template] = ACTIONS(1839), - [anon_sym_operator] = ACTIONS(1839), - [anon_sym_friend] = ACTIONS(1839), - [anon_sym_using] = ACTIONS(1839), - [anon_sym_static_assert] = ACTIONS(1839), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1839), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1839), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1839), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1839), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1839), - [anon_sym_MOZ_COLD] = ACTIONS(1839), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1839), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1839), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1839), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1839), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1839), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1839), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1839), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1839), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1839), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1839), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1839), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1839), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1839), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_NONNULL] = ACTIONS(1839), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1839), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1839), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1839), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1839), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1839), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1839), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1839), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1839), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1839), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1839), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1839), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1839), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1839), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1839), - [anon_sym_MOZ_RAII] = ACTIONS(1839), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1839), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1839), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1839), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1839), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1839), - }, - [1127] = { + [STATE(323)] = { + [ts_builtin_sym_end] = ACTIONS(1873), [sym_identifier] = ACTIONS(1875), + [aux_sym_preproc_include_token1] = ACTIONS(1875), [aux_sym_preproc_def_token1] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1978), + [anon_sym_RPAREN] = ACTIONS(1978), [aux_sym_preproc_if_token1] = ACTIONS(1875), [aux_sym_preproc_ifdef_token1] = ACTIONS(1875), [aux_sym_preproc_ifdef_token2] = ACTIONS(1875), [sym_preproc_directive] = ACTIONS(1875), - [anon_sym_LPAREN2] = ACTIONS(1877), - [anon_sym_TILDE] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1877), - [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym___extension__] = ACTIONS(1875), [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_virtual] = ACTIONS(1875), [anon_sym_extern] = ACTIONS(1875), [anon_sym___attribute__] = ACTIONS(1875), - [anon_sym_COLON_COLON] = ACTIONS(1877), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1877), + [anon_sym___attribute] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), [anon_sym___declspec] = ACTIONS(1875), [anon_sym___based] = ACTIONS(1875), - [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym___cdecl] = ACTIONS(1875), + [anon_sym___clrcall] = ACTIONS(1875), + [anon_sym___stdcall] = ACTIONS(1875), + [anon_sym___fastcall] = ACTIONS(1875), + [anon_sym___thiscall] = ACTIONS(1875), + [anon_sym___vectorcall] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), [anon_sym_LBRACK] = ACTIONS(1875), [anon_sym_static] = ACTIONS(1875), [anon_sym_register] = ACTIONS(1875), [anon_sym_inline] = ACTIONS(1875), + [anon_sym___inline] = ACTIONS(1875), + [anon_sym___inline__] = ACTIONS(1875), + [anon_sym___forceinline] = ACTIONS(1875), [anon_sym_thread_local] = ACTIONS(1875), + [anon_sym___thread] = ACTIONS(1875), [anon_sym_const] = ACTIONS(1875), + [anon_sym_constexpr] = ACTIONS(1875), [anon_sym_volatile] = ACTIONS(1875), [anon_sym_restrict] = ACTIONS(1875), + [anon_sym___restrict__] = ACTIONS(1875), [anon_sym__Atomic] = ACTIONS(1875), + [anon_sym__Noreturn] = ACTIONS(1875), + [anon_sym_noreturn] = ACTIONS(1875), + [anon_sym__Nonnull] = ACTIONS(1875), [anon_sym_mutable] = ACTIONS(1875), - [anon_sym_constexpr] = ACTIONS(1875), - [anon_sym_signed] = ACTIONS(1875), - [anon_sym_unsigned] = ACTIONS(1875), - [anon_sym_long] = ACTIONS(1875), - [anon_sym_short] = ACTIONS(1875), + [anon_sym_constinit] = ACTIONS(1875), + [anon_sym_consteval] = ACTIONS(1875), + [anon_sym_alignas] = ACTIONS(1875), + [anon_sym__Alignas] = ACTIONS(1875), [sym_primitive_type] = ACTIONS(1875), [anon_sym_enum] = ACTIONS(1875), [anon_sym_class] = ACTIONS(1875), [anon_sym_struct] = ACTIONS(1875), [anon_sym_union] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_switch] = ACTIONS(1875), + [anon_sym_case] = ACTIONS(1875), + [anon_sym_default] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_goto] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(1875), + [anon_sym_compl] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1873), + [anon_sym_sizeof] = ACTIONS(1875), + [anon_sym___alignof__] = ACTIONS(1875), + [anon_sym___alignof] = ACTIONS(1875), + [anon_sym__alignof] = ACTIONS(1875), + [anon_sym_alignof] = ACTIONS(1875), + [anon_sym__Alignof] = ACTIONS(1875), + [anon_sym_offsetof] = ACTIONS(1875), + [anon_sym__Generic] = ACTIONS(1875), + [anon_sym_asm] = ACTIONS(1875), + [anon_sym___asm__] = ACTIONS(1875), + [anon_sym___asm] = ACTIONS(1875), + [sym_number_literal] = ACTIONS(1873), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1873), + [anon_sym_u_DQUOTE] = ACTIONS(1873), + [anon_sym_U_DQUOTE] = ACTIONS(1873), + [anon_sym_u8_DQUOTE] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym_true] = ACTIONS(1875), + [sym_false] = ACTIONS(1875), + [anon_sym_NULL] = ACTIONS(1875), + [anon_sym_nullptr] = ACTIONS(1875), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1875), [anon_sym_decltype] = ACTIONS(1875), - [anon_sym_virtual] = ACTIONS(1875), [anon_sym_explicit] = ACTIONS(1875), - [anon_sym_public] = ACTIONS(1875), - [anon_sym_private] = ACTIONS(1875), - [anon_sym_protected] = ACTIONS(1875), - [sym_auto] = ACTIONS(1875), [anon_sym_typename] = ACTIONS(1875), [anon_sym_template] = ACTIONS(1875), [anon_sym_operator] = ACTIONS(1875), - [anon_sym_friend] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_delete] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1875), + [anon_sym_namespace] = ACTIONS(1875), [anon_sym_using] = ACTIONS(1875), [anon_sym_static_assert] = ACTIONS(1875), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1875), + [anon_sym_concept] = ACTIONS(1875), + [anon_sym_co_return] = ACTIONS(1875), + [anon_sym_co_yield] = ACTIONS(1875), + [anon_sym_R_DQUOTE] = ACTIONS(1873), + [anon_sym_LR_DQUOTE] = ACTIONS(1873), + [anon_sym_uR_DQUOTE] = ACTIONS(1873), + [anon_sym_UR_DQUOTE] = ACTIONS(1873), + [anon_sym_u8R_DQUOTE] = ACTIONS(1873), + [anon_sym_co_await] = ACTIONS(1875), + [anon_sym_new] = ACTIONS(1875), + [anon_sym_requires] = ACTIONS(1875), + [sym_this] = ACTIONS(1875), + [sym_alone_macro] = ACTIONS(1873), + [aux_sym_alone_macro_call_token1] = ACTIONS(1875), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_FORWARD] = ACTIONS(1875), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1875), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_PS_GET] = ACTIONS(1875), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1875), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1875), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1875), [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1875), [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1875), [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1875), @@ -230676,2311 +128081,9754 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), }, - [1128] = { - [sym_identifier] = ACTIONS(1871), - [aux_sym_preproc_def_token1] = ACTIONS(1871), - [aux_sym_preproc_if_token1] = ACTIONS(1871), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1871), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1871), - [sym_preproc_directive] = ACTIONS(1871), - [anon_sym_LPAREN2] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1873), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_AMP_AMP] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_typedef] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym___attribute__] = ACTIONS(1871), - [anon_sym_COLON_COLON] = ACTIONS(1873), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), - [anon_sym___declspec] = ACTIONS(1871), - [anon_sym___based] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1871), - [anon_sym_static] = ACTIONS(1871), - [anon_sym_register] = ACTIONS(1871), - [anon_sym_inline] = ACTIONS(1871), - [anon_sym_thread_local] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [anon_sym_volatile] = ACTIONS(1871), - [anon_sym_restrict] = ACTIONS(1871), - [anon_sym__Atomic] = ACTIONS(1871), - [anon_sym_mutable] = ACTIONS(1871), - [anon_sym_constexpr] = ACTIONS(1871), - [anon_sym_signed] = ACTIONS(1871), - [anon_sym_unsigned] = ACTIONS(1871), - [anon_sym_long] = ACTIONS(1871), - [anon_sym_short] = ACTIONS(1871), - [sym_primitive_type] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), - [anon_sym_class] = ACTIONS(1871), - [anon_sym_struct] = ACTIONS(1871), - [anon_sym_union] = ACTIONS(1871), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1871), - [anon_sym_virtual] = ACTIONS(1871), - [anon_sym_explicit] = ACTIONS(1871), - [anon_sym_public] = ACTIONS(1871), - [anon_sym_private] = ACTIONS(1871), - [anon_sym_protected] = ACTIONS(1871), - [sym_auto] = ACTIONS(1871), - [anon_sym_typename] = ACTIONS(1871), - [anon_sym_template] = ACTIONS(1871), - [anon_sym_operator] = ACTIONS(1871), - [anon_sym_friend] = ACTIONS(1871), - [anon_sym_using] = ACTIONS(1871), - [anon_sym_static_assert] = ACTIONS(1871), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1871), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1871), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1871), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1871), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1871), - [anon_sym_MOZ_COLD] = ACTIONS(1871), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1871), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1871), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1871), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1871), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1871), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1871), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1871), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1871), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1871), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1871), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1871), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1871), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1871), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_NONNULL] = ACTIONS(1871), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1871), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1871), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1871), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1871), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1871), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1871), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1871), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1871), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1871), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1871), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1871), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1871), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1871), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1871), - [anon_sym_MOZ_RAII] = ACTIONS(1871), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1871), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1871), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1871), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1871), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1871), - }, - [1129] = { - [sym_identifier] = ACTIONS(1867), - [aux_sym_preproc_def_token1] = ACTIONS(1867), - [aux_sym_preproc_if_token1] = ACTIONS(1867), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1867), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1867), - [sym_preproc_directive] = ACTIONS(1867), - [anon_sym_LPAREN2] = ACTIONS(1869), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_AMP_AMP] = ACTIONS(1869), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_typedef] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1867), - [anon_sym___attribute__] = ACTIONS(1867), - [anon_sym_COLON_COLON] = ACTIONS(1869), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1869), - [anon_sym___declspec] = ACTIONS(1867), - [anon_sym___based] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1867), - [anon_sym_register] = ACTIONS(1867), - [anon_sym_inline] = ACTIONS(1867), - [anon_sym_thread_local] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_restrict] = ACTIONS(1867), - [anon_sym__Atomic] = ACTIONS(1867), - [anon_sym_mutable] = ACTIONS(1867), - [anon_sym_constexpr] = ACTIONS(1867), - [anon_sym_signed] = ACTIONS(1867), - [anon_sym_unsigned] = ACTIONS(1867), - [anon_sym_long] = ACTIONS(1867), - [anon_sym_short] = ACTIONS(1867), - [sym_primitive_type] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1867), - [anon_sym_class] = ACTIONS(1867), - [anon_sym_struct] = ACTIONS(1867), - [anon_sym_union] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1867), - [anon_sym_virtual] = ACTIONS(1867), - [anon_sym_explicit] = ACTIONS(1867), - [anon_sym_public] = ACTIONS(1867), - [anon_sym_private] = ACTIONS(1867), - [anon_sym_protected] = ACTIONS(1867), - [sym_auto] = ACTIONS(1867), - [anon_sym_typename] = ACTIONS(1867), - [anon_sym_template] = ACTIONS(1867), - [anon_sym_operator] = ACTIONS(1867), - [anon_sym_friend] = ACTIONS(1867), - [anon_sym_using] = ACTIONS(1867), - [anon_sym_static_assert] = ACTIONS(1867), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1867), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1867), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1867), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1867), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1867), - [anon_sym_MOZ_COLD] = ACTIONS(1867), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1867), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1867), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1867), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1867), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1867), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1867), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1867), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1867), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1867), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1867), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1867), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1867), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1867), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_NONNULL] = ACTIONS(1867), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1867), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1867), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1867), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1867), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1867), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1867), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1867), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1867), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1867), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1867), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1867), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1867), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1867), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1867), - [anon_sym_MOZ_RAII] = ACTIONS(1867), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1867), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1867), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1867), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1867), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1867), - }, - [1130] = { - [sym_identifier] = ACTIONS(1755), - [aux_sym_preproc_def_token1] = ACTIONS(1755), - [aux_sym_preproc_if_token1] = ACTIONS(1755), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1755), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1755), - [sym_preproc_directive] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_STAR] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_typedef] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym___attribute__] = ACTIONS(1755), - [anon_sym_COLON_COLON] = ACTIONS(1757), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1757), - [anon_sym___declspec] = ACTIONS(1755), - [anon_sym___based] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1755), - [anon_sym_static] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_inline] = ACTIONS(1755), - [anon_sym_thread_local] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [anon_sym_volatile] = ACTIONS(1755), - [anon_sym_restrict] = ACTIONS(1755), - [anon_sym__Atomic] = ACTIONS(1755), - [anon_sym_mutable] = ACTIONS(1755), - [anon_sym_constexpr] = ACTIONS(1755), - [anon_sym_signed] = ACTIONS(1755), - [anon_sym_unsigned] = ACTIONS(1755), - [anon_sym_long] = ACTIONS(1755), - [anon_sym_short] = ACTIONS(1755), - [sym_primitive_type] = ACTIONS(1755), - [anon_sym_enum] = ACTIONS(1755), - [anon_sym_class] = ACTIONS(1755), - [anon_sym_struct] = ACTIONS(1755), - [anon_sym_union] = ACTIONS(1755), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1755), - [anon_sym_virtual] = ACTIONS(1755), - [anon_sym_explicit] = ACTIONS(1755), - [anon_sym_public] = ACTIONS(1755), - [anon_sym_private] = ACTIONS(1755), - [anon_sym_protected] = ACTIONS(1755), - [sym_auto] = ACTIONS(1755), - [anon_sym_typename] = ACTIONS(1755), - [anon_sym_template] = ACTIONS(1755), - [anon_sym_operator] = ACTIONS(1755), - [anon_sym_friend] = ACTIONS(1755), - [anon_sym_using] = ACTIONS(1755), - [anon_sym_static_assert] = ACTIONS(1755), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1755), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1755), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1755), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1755), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1755), - [anon_sym_MOZ_COLD] = ACTIONS(1755), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1755), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1755), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1755), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1755), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1755), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1755), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1755), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1755), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1755), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1755), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1755), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1755), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1755), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_NONNULL] = ACTIONS(1755), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1755), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1755), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1755), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1755), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1755), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1755), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1755), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1755), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1755), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1755), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1755), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1755), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1755), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1755), - [anon_sym_MOZ_RAII] = ACTIONS(1755), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1755), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1755), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1755), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1755), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1755), - }, - [1131] = { - [sym_identifier] = ACTIONS(1863), - [aux_sym_preproc_def_token1] = ACTIONS(1863), - [aux_sym_preproc_if_token1] = ACTIONS(1863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1863), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1863), - [sym_preproc_directive] = ACTIONS(1863), - [anon_sym_LPAREN2] = ACTIONS(1865), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_AMP_AMP] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_typedef] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1863), - [anon_sym___attribute__] = ACTIONS(1863), - [anon_sym_COLON_COLON] = ACTIONS(1865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1865), - [anon_sym___declspec] = ACTIONS(1863), - [anon_sym___based] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_static] = ACTIONS(1863), - [anon_sym_register] = ACTIONS(1863), - [anon_sym_inline] = ACTIONS(1863), - [anon_sym_thread_local] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [anon_sym_volatile] = ACTIONS(1863), - [anon_sym_restrict] = ACTIONS(1863), - [anon_sym__Atomic] = ACTIONS(1863), - [anon_sym_mutable] = ACTIONS(1863), - [anon_sym_constexpr] = ACTIONS(1863), - [anon_sym_signed] = ACTIONS(1863), - [anon_sym_unsigned] = ACTIONS(1863), - [anon_sym_long] = ACTIONS(1863), - [anon_sym_short] = ACTIONS(1863), - [sym_primitive_type] = ACTIONS(1863), - [anon_sym_enum] = ACTIONS(1863), - [anon_sym_class] = ACTIONS(1863), - [anon_sym_struct] = ACTIONS(1863), - [anon_sym_union] = ACTIONS(1863), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1863), - [anon_sym_virtual] = ACTIONS(1863), - [anon_sym_explicit] = ACTIONS(1863), - [anon_sym_public] = ACTIONS(1863), - [anon_sym_private] = ACTIONS(1863), - [anon_sym_protected] = ACTIONS(1863), - [sym_auto] = ACTIONS(1863), - [anon_sym_typename] = ACTIONS(1863), - [anon_sym_template] = ACTIONS(1863), - [anon_sym_operator] = ACTIONS(1863), - [anon_sym_friend] = ACTIONS(1863), - [anon_sym_using] = ACTIONS(1863), - [anon_sym_static_assert] = ACTIONS(1863), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1863), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1863), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1863), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1863), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1863), - [anon_sym_MOZ_COLD] = ACTIONS(1863), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1863), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1863), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1863), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1863), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1863), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1863), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1863), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1863), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1863), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1863), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1863), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1863), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1863), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_NONNULL] = ACTIONS(1863), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1863), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1863), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1863), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1863), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1863), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1863), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1863), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1863), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1863), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1863), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1863), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1863), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1863), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1863), - [anon_sym_MOZ_RAII] = ACTIONS(1863), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1863), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1863), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1863), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1863), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1863), - }, - [1132] = { - [sym_identifier] = ACTIONS(1863), - [aux_sym_preproc_def_token1] = ACTIONS(1863), - [aux_sym_preproc_if_token1] = ACTIONS(1863), - [aux_sym_preproc_if_token2] = ACTIONS(1863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1863), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1863), - [sym_preproc_directive] = ACTIONS(1863), - [anon_sym_LPAREN2] = ACTIONS(1865), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_AMP_AMP] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_typedef] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1863), - [anon_sym___attribute__] = ACTIONS(1863), - [anon_sym_COLON_COLON] = ACTIONS(1865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1865), - [anon_sym___declspec] = ACTIONS(1863), - [anon_sym___based] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_static] = ACTIONS(1863), - [anon_sym_register] = ACTIONS(1863), - [anon_sym_inline] = ACTIONS(1863), - [anon_sym_thread_local] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [anon_sym_volatile] = ACTIONS(1863), - [anon_sym_restrict] = ACTIONS(1863), - [anon_sym__Atomic] = ACTIONS(1863), - [anon_sym_mutable] = ACTIONS(1863), - [anon_sym_constexpr] = ACTIONS(1863), - [anon_sym_signed] = ACTIONS(1863), - [anon_sym_unsigned] = ACTIONS(1863), - [anon_sym_long] = ACTIONS(1863), - [anon_sym_short] = ACTIONS(1863), - [sym_primitive_type] = ACTIONS(1863), - [anon_sym_enum] = ACTIONS(1863), - [anon_sym_class] = ACTIONS(1863), - [anon_sym_struct] = ACTIONS(1863), - [anon_sym_union] = ACTIONS(1863), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1863), - [anon_sym_virtual] = ACTIONS(1863), - [anon_sym_explicit] = ACTIONS(1863), - [anon_sym_public] = ACTIONS(1863), - [anon_sym_private] = ACTIONS(1863), - [anon_sym_protected] = ACTIONS(1863), - [sym_auto] = ACTIONS(1863), - [anon_sym_typename] = ACTIONS(1863), - [anon_sym_template] = ACTIONS(1863), - [anon_sym_operator] = ACTIONS(1863), - [anon_sym_friend] = ACTIONS(1863), - [anon_sym_using] = ACTIONS(1863), - [anon_sym_static_assert] = ACTIONS(1863), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1863), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1863), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1863), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1863), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1863), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1863), - [anon_sym_MOZ_COLD] = ACTIONS(1863), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1863), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1863), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1863), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1863), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1863), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1863), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1863), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1863), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1863), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1863), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1863), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1863), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1863), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1863), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1863), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1863), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_NONNULL] = ACTIONS(1863), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1863), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1863), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1863), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1863), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_NORETURN] = ACTIONS(1863), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1863), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1863), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1863), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1863), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1863), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1863), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1863), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1863), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1863), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1863), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1863), - [anon_sym_MOZ_RAII] = ACTIONS(1863), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1863), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1863), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1863), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1863), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1863), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1863), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1863), - }, - [1133] = { - [sym_identifier] = ACTIONS(2894), - [aux_sym_preproc_def_token1] = ACTIONS(2894), - [aux_sym_preproc_if_token1] = ACTIONS(2894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2894), - [sym_preproc_directive] = ACTIONS(2894), - [anon_sym_LPAREN2] = ACTIONS(2896), - [anon_sym_TILDE] = ACTIONS(2896), - [anon_sym_STAR] = ACTIONS(2896), - [anon_sym_AMP_AMP] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_typedef] = ACTIONS(2894), - [anon_sym_extern] = ACTIONS(2894), - [anon_sym___attribute__] = ACTIONS(2894), - [anon_sym_COLON_COLON] = ACTIONS(2896), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2896), - [anon_sym___declspec] = ACTIONS(2894), - [anon_sym___based] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(2896), - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_static] = ACTIONS(2894), - [anon_sym_register] = ACTIONS(2894), - [anon_sym_inline] = ACTIONS(2894), - [anon_sym_thread_local] = ACTIONS(2894), - [anon_sym_const] = ACTIONS(2894), - [anon_sym_volatile] = ACTIONS(2894), - [anon_sym_restrict] = ACTIONS(2894), - [anon_sym__Atomic] = ACTIONS(2894), - [anon_sym_mutable] = ACTIONS(2894), - [anon_sym_constexpr] = ACTIONS(2894), - [anon_sym_signed] = ACTIONS(2894), - [anon_sym_unsigned] = ACTIONS(2894), - [anon_sym_long] = ACTIONS(2894), - [anon_sym_short] = ACTIONS(2894), - [sym_primitive_type] = ACTIONS(2894), - [anon_sym_enum] = ACTIONS(2894), - [anon_sym_class] = ACTIONS(2894), - [anon_sym_struct] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2894), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2894), - [anon_sym_virtual] = ACTIONS(2894), - [anon_sym_explicit] = ACTIONS(2894), - [anon_sym_public] = ACTIONS(2894), - [anon_sym_private] = ACTIONS(2894), - [anon_sym_protected] = ACTIONS(2894), - [sym_auto] = ACTIONS(2894), - [anon_sym_typename] = ACTIONS(2894), - [anon_sym_template] = ACTIONS(2894), - [anon_sym_operator] = ACTIONS(2894), - [anon_sym_friend] = ACTIONS(2894), - [anon_sym_using] = ACTIONS(2894), - [anon_sym_static_assert] = ACTIONS(2894), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2894), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2894), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2894), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2894), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2894), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2894), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2894), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2894), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2894), - [anon_sym_MOZ_COLD] = ACTIONS(2894), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2894), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2894), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2894), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2894), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2894), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2894), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2894), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2894), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2894), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2894), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2894), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2894), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2894), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2894), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2894), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2894), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2894), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2894), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2894), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2894), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_NONNULL] = ACTIONS(2894), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2894), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2894), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2894), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2894), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2894), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_NORETURN] = ACTIONS(2894), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2894), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2894), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2894), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2894), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2894), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2894), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2894), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2894), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2894), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2894), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2894), - [anon_sym_MOZ_RAII] = ACTIONS(2894), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2894), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2894), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2894), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2894), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2894), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2894), - }, - [1134] = { - [sym_identifier] = ACTIONS(2890), - [aux_sym_preproc_def_token1] = ACTIONS(2890), - [aux_sym_preproc_if_token1] = ACTIONS(2890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2890), - [sym_preproc_directive] = ACTIONS(2890), - [anon_sym_LPAREN2] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2892), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_typedef] = ACTIONS(2890), - [anon_sym_extern] = ACTIONS(2890), - [anon_sym___attribute__] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2892), - [anon_sym___declspec] = ACTIONS(2890), - [anon_sym___based] = ACTIONS(2890), - [anon_sym_RBRACE] = ACTIONS(2892), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_register] = ACTIONS(2890), - [anon_sym_inline] = ACTIONS(2890), - [anon_sym_thread_local] = ACTIONS(2890), - [anon_sym_const] = ACTIONS(2890), - [anon_sym_volatile] = ACTIONS(2890), - [anon_sym_restrict] = ACTIONS(2890), - [anon_sym__Atomic] = ACTIONS(2890), - [anon_sym_mutable] = ACTIONS(2890), - [anon_sym_constexpr] = ACTIONS(2890), - [anon_sym_signed] = ACTIONS(2890), - [anon_sym_unsigned] = ACTIONS(2890), - [anon_sym_long] = ACTIONS(2890), - [anon_sym_short] = ACTIONS(2890), - [sym_primitive_type] = ACTIONS(2890), - [anon_sym_enum] = ACTIONS(2890), - [anon_sym_class] = ACTIONS(2890), - [anon_sym_struct] = ACTIONS(2890), - [anon_sym_union] = ACTIONS(2890), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2890), - [anon_sym_virtual] = ACTIONS(2890), - [anon_sym_explicit] = ACTIONS(2890), - [anon_sym_public] = ACTIONS(2890), - [anon_sym_private] = ACTIONS(2890), - [anon_sym_protected] = ACTIONS(2890), - [sym_auto] = ACTIONS(2890), - [anon_sym_typename] = ACTIONS(2890), - [anon_sym_template] = ACTIONS(2890), - [anon_sym_operator] = ACTIONS(2890), - [anon_sym_friend] = ACTIONS(2890), - [anon_sym_using] = ACTIONS(2890), - [anon_sym_static_assert] = ACTIONS(2890), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2890), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2890), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2890), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2890), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2890), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2890), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2890), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2890), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2890), - [anon_sym_MOZ_COLD] = ACTIONS(2890), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2890), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2890), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2890), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2890), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2890), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2890), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2890), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2890), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2890), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2890), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2890), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2890), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2890), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2890), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2890), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2890), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2890), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2890), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2890), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2890), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2890), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_NONNULL] = ACTIONS(2890), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2890), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2890), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2890), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2890), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2890), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_NORETURN] = ACTIONS(2890), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2890), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2890), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2890), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2890), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2890), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2890), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2890), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2890), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2890), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2890), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2890), - [anon_sym_MOZ_RAII] = ACTIONS(2890), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2890), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2890), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2890), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2890), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2890), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2890), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2890), - }, - [1135] = { - [sym_identifier] = ACTIONS(1867), - [aux_sym_preproc_def_token1] = ACTIONS(1867), - [aux_sym_preproc_if_token1] = ACTIONS(1867), - [aux_sym_preproc_if_token2] = ACTIONS(1867), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1867), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1867), - [sym_preproc_directive] = ACTIONS(1867), - [anon_sym_LPAREN2] = ACTIONS(1869), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_AMP_AMP] = ACTIONS(1869), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_typedef] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1867), - [anon_sym___attribute__] = ACTIONS(1867), - [anon_sym_COLON_COLON] = ACTIONS(1869), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1869), - [anon_sym___declspec] = ACTIONS(1867), - [anon_sym___based] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1867), - [anon_sym_register] = ACTIONS(1867), - [anon_sym_inline] = ACTIONS(1867), - [anon_sym_thread_local] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_restrict] = ACTIONS(1867), - [anon_sym__Atomic] = ACTIONS(1867), - [anon_sym_mutable] = ACTIONS(1867), - [anon_sym_constexpr] = ACTIONS(1867), - [anon_sym_signed] = ACTIONS(1867), - [anon_sym_unsigned] = ACTIONS(1867), - [anon_sym_long] = ACTIONS(1867), - [anon_sym_short] = ACTIONS(1867), - [sym_primitive_type] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1867), - [anon_sym_class] = ACTIONS(1867), - [anon_sym_struct] = ACTIONS(1867), - [anon_sym_union] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1867), - [anon_sym_virtual] = ACTIONS(1867), - [anon_sym_explicit] = ACTIONS(1867), - [anon_sym_public] = ACTIONS(1867), - [anon_sym_private] = ACTIONS(1867), - [anon_sym_protected] = ACTIONS(1867), - [sym_auto] = ACTIONS(1867), - [anon_sym_typename] = ACTIONS(1867), - [anon_sym_template] = ACTIONS(1867), - [anon_sym_operator] = ACTIONS(1867), - [anon_sym_friend] = ACTIONS(1867), - [anon_sym_using] = ACTIONS(1867), - [anon_sym_static_assert] = ACTIONS(1867), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1867), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1867), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1867), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1867), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1867), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1867), - [anon_sym_MOZ_COLD] = ACTIONS(1867), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1867), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1867), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1867), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1867), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1867), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1867), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1867), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1867), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1867), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1867), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1867), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1867), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1867), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1867), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1867), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1867), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_NONNULL] = ACTIONS(1867), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1867), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1867), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1867), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1867), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_NORETURN] = ACTIONS(1867), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1867), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1867), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1867), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1867), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1867), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1867), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1867), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1867), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1867), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1867), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1867), - [anon_sym_MOZ_RAII] = ACTIONS(1867), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1867), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1867), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1867), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1867), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1867), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1867), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1867), - }, - [1136] = { - [sym_identifier] = ACTIONS(1871), - [aux_sym_preproc_def_token1] = ACTIONS(1871), - [aux_sym_preproc_if_token1] = ACTIONS(1871), - [aux_sym_preproc_if_token2] = ACTIONS(1871), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1871), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1871), - [sym_preproc_directive] = ACTIONS(1871), - [anon_sym_LPAREN2] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1873), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_AMP_AMP] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_typedef] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym___attribute__] = ACTIONS(1871), - [anon_sym_COLON_COLON] = ACTIONS(1873), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), - [anon_sym___declspec] = ACTIONS(1871), - [anon_sym___based] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(1871), - [anon_sym_static] = ACTIONS(1871), - [anon_sym_register] = ACTIONS(1871), - [anon_sym_inline] = ACTIONS(1871), - [anon_sym_thread_local] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [anon_sym_volatile] = ACTIONS(1871), - [anon_sym_restrict] = ACTIONS(1871), - [anon_sym__Atomic] = ACTIONS(1871), - [anon_sym_mutable] = ACTIONS(1871), - [anon_sym_constexpr] = ACTIONS(1871), - [anon_sym_signed] = ACTIONS(1871), - [anon_sym_unsigned] = ACTIONS(1871), - [anon_sym_long] = ACTIONS(1871), - [anon_sym_short] = ACTIONS(1871), - [sym_primitive_type] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), - [anon_sym_class] = ACTIONS(1871), - [anon_sym_struct] = ACTIONS(1871), - [anon_sym_union] = ACTIONS(1871), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1871), - [anon_sym_virtual] = ACTIONS(1871), - [anon_sym_explicit] = ACTIONS(1871), - [anon_sym_public] = ACTIONS(1871), - [anon_sym_private] = ACTIONS(1871), - [anon_sym_protected] = ACTIONS(1871), - [sym_auto] = ACTIONS(1871), - [anon_sym_typename] = ACTIONS(1871), - [anon_sym_template] = ACTIONS(1871), - [anon_sym_operator] = ACTIONS(1871), - [anon_sym_friend] = ACTIONS(1871), - [anon_sym_using] = ACTIONS(1871), - [anon_sym_static_assert] = ACTIONS(1871), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1871), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1871), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1871), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1871), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1871), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1871), - [anon_sym_MOZ_COLD] = ACTIONS(1871), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1871), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1871), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1871), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1871), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1871), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1871), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1871), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1871), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1871), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1871), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1871), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1871), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1871), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1871), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1871), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1871), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_NONNULL] = ACTIONS(1871), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1871), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1871), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1871), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1871), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_NORETURN] = ACTIONS(1871), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1871), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1871), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1871), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1871), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1871), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1871), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1871), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1871), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1871), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1871), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1871), - [anon_sym_MOZ_RAII] = ACTIONS(1871), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1871), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1871), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1871), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1871), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1871), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1871), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1871), - }, - [1137] = { - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3164), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [1138] = { - [sym_identifier] = ACTIONS(1747), - [aux_sym_preproc_def_token1] = ACTIONS(1747), - [aux_sym_preproc_if_token1] = ACTIONS(1747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1747), - [sym_preproc_directive] = ACTIONS(1747), - [anon_sym_LPAREN2] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1749), - [anon_sym_AMP_AMP] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_typedef] = ACTIONS(1747), - [anon_sym_extern] = ACTIONS(1747), - [anon_sym___attribute__] = ACTIONS(1747), - [anon_sym_COLON_COLON] = ACTIONS(1749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1749), - [anon_sym___declspec] = ACTIONS(1747), - [anon_sym___based] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_static] = ACTIONS(1747), - [anon_sym_register] = ACTIONS(1747), - [anon_sym_inline] = ACTIONS(1747), - [anon_sym_thread_local] = ACTIONS(1747), - [anon_sym_const] = ACTIONS(1747), - [anon_sym_volatile] = ACTIONS(1747), - [anon_sym_restrict] = ACTIONS(1747), - [anon_sym__Atomic] = ACTIONS(1747), - [anon_sym_mutable] = ACTIONS(1747), - [anon_sym_constexpr] = ACTIONS(1747), - [anon_sym_signed] = ACTIONS(1747), - [anon_sym_unsigned] = ACTIONS(1747), - [anon_sym_long] = ACTIONS(1747), - [anon_sym_short] = ACTIONS(1747), - [sym_primitive_type] = ACTIONS(1747), - [anon_sym_enum] = ACTIONS(1747), - [anon_sym_class] = ACTIONS(1747), - [anon_sym_struct] = ACTIONS(1747), - [anon_sym_union] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1747), - [anon_sym_virtual] = ACTIONS(1747), - [anon_sym_explicit] = ACTIONS(1747), - [anon_sym_public] = ACTIONS(1747), - [anon_sym_private] = ACTIONS(1747), - [anon_sym_protected] = ACTIONS(1747), - [sym_auto] = ACTIONS(1747), - [anon_sym_typename] = ACTIONS(1747), - [anon_sym_template] = ACTIONS(1747), - [anon_sym_operator] = ACTIONS(1747), - [anon_sym_friend] = ACTIONS(1747), - [anon_sym_using] = ACTIONS(1747), - [anon_sym_static_assert] = ACTIONS(1747), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1747), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1747), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1747), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1747), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1747), - [anon_sym_MOZ_COLD] = ACTIONS(1747), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1747), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1747), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1747), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1747), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1747), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1747), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1747), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1747), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1747), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1747), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1747), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1747), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1747), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_NONNULL] = ACTIONS(1747), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1747), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1747), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1747), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1747), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1747), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1747), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1747), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1747), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1747), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1747), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1747), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1747), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1747), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1747), - [anon_sym_MOZ_RAII] = ACTIONS(1747), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1747), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1747), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1747), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1747), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1747), - }, - [1139] = { - [sym_identifier] = ACTIONS(1557), - [aux_sym_preproc_def_token1] = ACTIONS(1557), - [aux_sym_preproc_if_token1] = ACTIONS(1557), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1557), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1557), - [sym_preproc_directive] = ACTIONS(1557), - [anon_sym_LPAREN2] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_STAR] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1557), - [anon_sym_typedef] = ACTIONS(1557), - [anon_sym_extern] = ACTIONS(1557), - [anon_sym___attribute__] = ACTIONS(1557), - [anon_sym_COLON_COLON] = ACTIONS(1559), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1559), - [anon_sym___declspec] = ACTIONS(1557), - [anon_sym___based] = ACTIONS(1557), - [anon_sym_RBRACE] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_register] = ACTIONS(1557), - [anon_sym_inline] = ACTIONS(1557), - [anon_sym_thread_local] = ACTIONS(1557), - [anon_sym_const] = ACTIONS(1557), - [anon_sym_volatile] = ACTIONS(1557), - [anon_sym_restrict] = ACTIONS(1557), - [anon_sym__Atomic] = ACTIONS(1557), - [anon_sym_mutable] = ACTIONS(1557), - [anon_sym_constexpr] = ACTIONS(1557), - [anon_sym_signed] = ACTIONS(1557), - [anon_sym_unsigned] = ACTIONS(1557), - [anon_sym_long] = ACTIONS(1557), - [anon_sym_short] = ACTIONS(1557), - [sym_primitive_type] = ACTIONS(1557), - [anon_sym_enum] = ACTIONS(1557), - [anon_sym_class] = ACTIONS(1557), - [anon_sym_struct] = ACTIONS(1557), - [anon_sym_union] = ACTIONS(1557), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1557), - [anon_sym_virtual] = ACTIONS(1557), - [anon_sym_explicit] = ACTIONS(1557), - [anon_sym_public] = ACTIONS(1557), - [anon_sym_private] = ACTIONS(1557), - [anon_sym_protected] = ACTIONS(1557), - [sym_auto] = ACTIONS(1557), - [anon_sym_typename] = ACTIONS(1557), - [anon_sym_template] = ACTIONS(1557), - [anon_sym_operator] = ACTIONS(1557), - [anon_sym_friend] = ACTIONS(1557), - [anon_sym_using] = ACTIONS(1557), - [anon_sym_static_assert] = ACTIONS(1557), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1557), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1557), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1557), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1557), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1557), - [anon_sym_MOZ_COLD] = ACTIONS(1557), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1557), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1557), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1557), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1557), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1557), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1557), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1557), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1557), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1557), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1557), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1557), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1557), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1557), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_NONNULL] = ACTIONS(1557), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1557), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1557), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1557), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1557), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1557), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1557), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1557), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1557), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1557), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1557), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1557), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1557), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1557), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1557), - [anon_sym_MOZ_RAII] = ACTIONS(1557), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1557), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1557), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1557), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1557), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1557), - }, - [1140] = { - [sym_identifier] = ACTIONS(1565), - [aux_sym_preproc_def_token1] = ACTIONS(1565), - [aux_sym_preproc_if_token1] = ACTIONS(1565), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1565), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1565), - [sym_preproc_directive] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1567), - [anon_sym_TILDE] = ACTIONS(1567), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_AMP_AMP] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_typedef] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym___attribute__] = ACTIONS(1565), - [anon_sym_COLON_COLON] = ACTIONS(1567), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1567), - [anon_sym___declspec] = ACTIONS(1565), - [anon_sym___based] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1565), - [anon_sym_register] = ACTIONS(1565), - [anon_sym_inline] = ACTIONS(1565), - [anon_sym_thread_local] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [anon_sym_volatile] = ACTIONS(1565), - [anon_sym_restrict] = ACTIONS(1565), - [anon_sym__Atomic] = ACTIONS(1565), - [anon_sym_mutable] = ACTIONS(1565), - [anon_sym_constexpr] = ACTIONS(1565), - [anon_sym_signed] = ACTIONS(1565), - [anon_sym_unsigned] = ACTIONS(1565), - [anon_sym_long] = ACTIONS(1565), - [anon_sym_short] = ACTIONS(1565), - [sym_primitive_type] = ACTIONS(1565), - [anon_sym_enum] = ACTIONS(1565), - [anon_sym_class] = ACTIONS(1565), - [anon_sym_struct] = ACTIONS(1565), - [anon_sym_union] = ACTIONS(1565), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1565), - [anon_sym_virtual] = ACTIONS(1565), - [anon_sym_explicit] = ACTIONS(1565), - [anon_sym_public] = ACTIONS(1565), - [anon_sym_private] = ACTIONS(1565), - [anon_sym_protected] = ACTIONS(1565), - [sym_auto] = ACTIONS(1565), - [anon_sym_typename] = ACTIONS(1565), - [anon_sym_template] = ACTIONS(1565), - [anon_sym_operator] = ACTIONS(1565), - [anon_sym_friend] = ACTIONS(1565), - [anon_sym_using] = ACTIONS(1565), - [anon_sym_static_assert] = ACTIONS(1565), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1565), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1565), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1565), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1565), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1565), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1565), - [anon_sym_MOZ_COLD] = ACTIONS(1565), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1565), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1565), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1565), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1565), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1565), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1565), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1565), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1565), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1565), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1565), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1565), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1565), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1565), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1565), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1565), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1565), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_NONNULL] = ACTIONS(1565), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1565), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1565), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1565), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1565), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_NORETURN] = ACTIONS(1565), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1565), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1565), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1565), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1565), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1565), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1565), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1565), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1565), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1565), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1565), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1565), - [anon_sym_MOZ_RAII] = ACTIONS(1565), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1565), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1565), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1565), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1565), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1565), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1565), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1565), - }, - [1141] = { - [sym_identifier] = ACTIONS(1518), - [aux_sym_preproc_def_token1] = ACTIONS(1518), - [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(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_typedef] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym___attribute__] = ACTIONS(1518), - [anon_sym_COLON_COLON] = ACTIONS(1520), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), - [anon_sym___declspec] = ACTIONS(1518), - [anon_sym___based] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_inline] = ACTIONS(1518), - [anon_sym_thread_local] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_volatile] = ACTIONS(1518), - [anon_sym_restrict] = ACTIONS(1518), - [anon_sym__Atomic] = ACTIONS(1518), - [anon_sym_mutable] = ACTIONS(1518), - [anon_sym_constexpr] = ACTIONS(1518), - [anon_sym_signed] = ACTIONS(1518), - [anon_sym_unsigned] = ACTIONS(1518), - [anon_sym_long] = ACTIONS(1518), - [anon_sym_short] = ACTIONS(1518), - [sym_primitive_type] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1518), - [anon_sym_virtual] = ACTIONS(1518), - [anon_sym_explicit] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [sym_auto] = ACTIONS(1518), - [anon_sym_typename] = ACTIONS(1518), - [anon_sym_template] = ACTIONS(1518), - [anon_sym_operator] = ACTIONS(1518), - [anon_sym_friend] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1518), - [anon_sym_static_assert] = ACTIONS(1518), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1518), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1518), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1518), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1518), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1518), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1518), - [anon_sym_MOZ_COLD] = ACTIONS(1518), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1518), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1518), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1518), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1518), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1518), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1518), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1518), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1518), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1518), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1518), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1518), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1518), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1518), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1518), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1518), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1518), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_NONNULL] = ACTIONS(1518), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1518), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1518), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1518), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1518), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_NORETURN] = ACTIONS(1518), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1518), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1518), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1518), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1518), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1518), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1518), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1518), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1518), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1518), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1518), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1518), - [anon_sym_MOZ_RAII] = ACTIONS(1518), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1518), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1518), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1518), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1518), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1518), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1518), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1518), - }, - [1142] = { - [sym_identifier] = ACTIONS(2886), - [aux_sym_preproc_def_token1] = ACTIONS(2886), - [aux_sym_preproc_if_token1] = ACTIONS(2886), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2886), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2886), - [sym_preproc_directive] = ACTIONS(2886), - [anon_sym_LPAREN2] = ACTIONS(2888), - [anon_sym_TILDE] = ACTIONS(2888), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_AMP_AMP] = ACTIONS(2888), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_typedef] = ACTIONS(2886), - [anon_sym_extern] = ACTIONS(2886), - [anon_sym___attribute__] = ACTIONS(2886), - [anon_sym_COLON_COLON] = ACTIONS(2888), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2888), - [anon_sym___declspec] = ACTIONS(2886), - [anon_sym___based] = ACTIONS(2886), - [anon_sym_RBRACE] = ACTIONS(2888), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_static] = ACTIONS(2886), - [anon_sym_register] = ACTIONS(2886), - [anon_sym_inline] = ACTIONS(2886), - [anon_sym_thread_local] = ACTIONS(2886), - [anon_sym_const] = ACTIONS(2886), - [anon_sym_volatile] = ACTIONS(2886), - [anon_sym_restrict] = ACTIONS(2886), - [anon_sym__Atomic] = ACTIONS(2886), - [anon_sym_mutable] = ACTIONS(2886), - [anon_sym_constexpr] = ACTIONS(2886), - [anon_sym_signed] = ACTIONS(2886), - [anon_sym_unsigned] = ACTIONS(2886), - [anon_sym_long] = ACTIONS(2886), - [anon_sym_short] = ACTIONS(2886), - [sym_primitive_type] = ACTIONS(2886), - [anon_sym_enum] = ACTIONS(2886), - [anon_sym_class] = ACTIONS(2886), - [anon_sym_struct] = ACTIONS(2886), - [anon_sym_union] = ACTIONS(2886), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2886), - [anon_sym_virtual] = ACTIONS(2886), - [anon_sym_explicit] = ACTIONS(2886), - [anon_sym_public] = ACTIONS(2886), - [anon_sym_private] = ACTIONS(2886), - [anon_sym_protected] = ACTIONS(2886), - [sym_auto] = ACTIONS(2886), - [anon_sym_typename] = ACTIONS(2886), - [anon_sym_template] = ACTIONS(2886), - [anon_sym_operator] = ACTIONS(2886), - [anon_sym_friend] = ACTIONS(2886), - [anon_sym_using] = ACTIONS(2886), - [anon_sym_static_assert] = ACTIONS(2886), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2886), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2886), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2886), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2886), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2886), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2886), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2886), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2886), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2886), - [anon_sym_MOZ_COLD] = ACTIONS(2886), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2886), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2886), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2886), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2886), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2886), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2886), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2886), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2886), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2886), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2886), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2886), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2886), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2886), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2886), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2886), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2886), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2886), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2886), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2886), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2886), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2886), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_NONNULL] = ACTIONS(2886), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2886), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2886), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2886), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2886), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2886), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_NORETURN] = ACTIONS(2886), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2886), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2886), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2886), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2886), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2886), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2886), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2886), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2886), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2886), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2886), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2886), - [anon_sym_MOZ_RAII] = ACTIONS(2886), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2886), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2886), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2886), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2886), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2886), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2886), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2886), - }, - [1143] = { - [sym_identifier] = ACTIONS(2632), - [aux_sym_preproc_def_token1] = ACTIONS(2632), - [aux_sym_preproc_if_token1] = ACTIONS(2632), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2632), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2632), - [sym_preproc_directive] = ACTIONS(2632), - [anon_sym_LPAREN2] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2634), - [anon_sym_STAR] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2632), - [anon_sym_typedef] = ACTIONS(2632), - [anon_sym_extern] = ACTIONS(2632), - [anon_sym___attribute__] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2634), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2634), - [anon_sym___declspec] = ACTIONS(2632), - [anon_sym___based] = ACTIONS(2632), - [anon_sym_RBRACE] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2632), - [anon_sym_static] = ACTIONS(2632), - [anon_sym_register] = ACTIONS(2632), - [anon_sym_inline] = ACTIONS(2632), - [anon_sym_thread_local] = ACTIONS(2632), - [anon_sym_const] = ACTIONS(2632), - [anon_sym_volatile] = ACTIONS(2632), - [anon_sym_restrict] = ACTIONS(2632), - [anon_sym__Atomic] = ACTIONS(2632), - [anon_sym_mutable] = ACTIONS(2632), - [anon_sym_constexpr] = ACTIONS(2632), - [anon_sym_signed] = ACTIONS(2632), - [anon_sym_unsigned] = ACTIONS(2632), - [anon_sym_long] = ACTIONS(2632), - [anon_sym_short] = ACTIONS(2632), - [sym_primitive_type] = ACTIONS(2632), - [anon_sym_enum] = ACTIONS(2632), - [anon_sym_class] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2632), - [anon_sym_union] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2632), - [anon_sym_virtual] = ACTIONS(2632), - [anon_sym_explicit] = ACTIONS(2632), - [anon_sym_public] = ACTIONS(2632), - [anon_sym_private] = ACTIONS(2632), - [anon_sym_protected] = ACTIONS(2632), - [sym_auto] = ACTIONS(2632), - [anon_sym_typename] = ACTIONS(2632), - [anon_sym_template] = ACTIONS(2632), - [anon_sym_operator] = ACTIONS(2632), - [anon_sym_friend] = ACTIONS(2632), - [anon_sym_using] = ACTIONS(2632), - [anon_sym_static_assert] = ACTIONS(2632), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2632), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2632), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2632), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2632), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2632), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2632), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2632), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2632), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2632), - [anon_sym_MOZ_COLD] = ACTIONS(2632), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2632), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2632), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2632), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2632), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2632), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2632), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2632), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2632), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2632), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2632), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2632), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2632), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2632), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2632), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2632), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2632), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2632), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2632), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2632), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2632), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2632), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_NONNULL] = ACTIONS(2632), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2632), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2632), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2632), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2632), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2632), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_NORETURN] = ACTIONS(2632), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2632), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2632), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2632), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2632), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2632), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2632), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2632), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2632), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2632), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2632), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2632), - [anon_sym_MOZ_RAII] = ACTIONS(2632), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2632), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2632), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2632), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2632), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2632), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2632), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2632), - }, - [1144] = { - [sym_identifier] = ACTIONS(2628), - [aux_sym_preproc_def_token1] = ACTIONS(2628), - [aux_sym_preproc_if_token1] = ACTIONS(2628), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2628), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2628), - [sym_preproc_directive] = ACTIONS(2628), - [anon_sym_LPAREN2] = ACTIONS(2630), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2630), - [anon_sym_AMP_AMP] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_typedef] = ACTIONS(2628), - [anon_sym_extern] = ACTIONS(2628), - [anon_sym___attribute__] = ACTIONS(2628), - [anon_sym_COLON_COLON] = ACTIONS(2630), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2630), - [anon_sym___declspec] = ACTIONS(2628), - [anon_sym___based] = ACTIONS(2628), - [anon_sym_RBRACE] = ACTIONS(2630), - [anon_sym_LBRACK] = ACTIONS(2628), - [anon_sym_static] = ACTIONS(2628), - [anon_sym_register] = ACTIONS(2628), - [anon_sym_inline] = ACTIONS(2628), - [anon_sym_thread_local] = ACTIONS(2628), - [anon_sym_const] = ACTIONS(2628), - [anon_sym_volatile] = ACTIONS(2628), - [anon_sym_restrict] = ACTIONS(2628), - [anon_sym__Atomic] = ACTIONS(2628), - [anon_sym_mutable] = ACTIONS(2628), - [anon_sym_constexpr] = ACTIONS(2628), - [anon_sym_signed] = ACTIONS(2628), - [anon_sym_unsigned] = ACTIONS(2628), - [anon_sym_long] = ACTIONS(2628), - [anon_sym_short] = ACTIONS(2628), - [sym_primitive_type] = ACTIONS(2628), - [anon_sym_enum] = ACTIONS(2628), - [anon_sym_class] = ACTIONS(2628), - [anon_sym_struct] = ACTIONS(2628), - [anon_sym_union] = ACTIONS(2628), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2628), - [anon_sym_virtual] = ACTIONS(2628), - [anon_sym_explicit] = ACTIONS(2628), - [anon_sym_public] = ACTIONS(2628), - [anon_sym_private] = ACTIONS(2628), - [anon_sym_protected] = ACTIONS(2628), - [sym_auto] = ACTIONS(2628), - [anon_sym_typename] = ACTIONS(2628), - [anon_sym_template] = ACTIONS(2628), - [anon_sym_operator] = ACTIONS(2628), - [anon_sym_friend] = ACTIONS(2628), - [anon_sym_using] = ACTIONS(2628), - [anon_sym_static_assert] = ACTIONS(2628), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2628), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2628), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2628), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2628), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2628), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2628), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2628), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2628), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2628), - [anon_sym_MOZ_COLD] = ACTIONS(2628), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2628), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2628), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2628), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2628), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2628), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2628), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2628), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2628), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2628), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2628), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2628), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2628), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2628), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2628), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2628), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2628), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2628), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2628), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2628), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2628), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2628), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_NONNULL] = ACTIONS(2628), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2628), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2628), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2628), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2628), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2628), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_NORETURN] = ACTIONS(2628), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2628), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2628), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2628), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2628), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2628), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2628), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2628), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2628), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2628), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2628), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2628), - [anon_sym_MOZ_RAII] = ACTIONS(2628), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2628), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2628), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2628), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2628), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2628), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2628), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2628), - }, - [1145] = { - [sym_identifier] = ACTIONS(1667), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1667), - [sym_preproc_directive] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_typedef] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym___attribute__] = ACTIONS(1667), - [anon_sym_COLON_COLON] = ACTIONS(1669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1669), - [anon_sym___declspec] = ACTIONS(1667), - [anon_sym___based] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_inline] = ACTIONS(1667), - [anon_sym_thread_local] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [anon_sym_volatile] = ACTIONS(1667), - [anon_sym_restrict] = ACTIONS(1667), - [anon_sym__Atomic] = ACTIONS(1667), - [anon_sym_mutable] = ACTIONS(1667), - [anon_sym_constexpr] = ACTIONS(1667), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [sym_primitive_type] = ACTIONS(1667), - [anon_sym_enum] = ACTIONS(1667), - [anon_sym_class] = ACTIONS(1667), - [anon_sym_struct] = ACTIONS(1667), - [anon_sym_union] = ACTIONS(1667), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1667), - [anon_sym_virtual] = ACTIONS(1667), - [anon_sym_explicit] = ACTIONS(1667), - [anon_sym_public] = ACTIONS(1667), - [anon_sym_private] = ACTIONS(1667), - [anon_sym_protected] = ACTIONS(1667), - [sym_auto] = ACTIONS(1667), - [anon_sym_typename] = ACTIONS(1667), - [anon_sym_template] = ACTIONS(1667), - [anon_sym_operator] = ACTIONS(1667), - [anon_sym_friend] = ACTIONS(1667), - [anon_sym_using] = ACTIONS(1667), - [anon_sym_static_assert] = ACTIONS(1667), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1667), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1667), - [anon_sym_MOZ_COLD] = ACTIONS(1667), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1667), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1667), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1667), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1667), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1667), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1667), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1667), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1667), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1667), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1667), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1667), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1667), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_RAII] = ACTIONS(1667), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1667), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1667), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1667), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1667), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1667), - }, - [1146] = { - [sym_identifier] = ACTIONS(1875), - [aux_sym_preproc_def_token1] = ACTIONS(1875), - [aux_sym_preproc_if_token1] = ACTIONS(1875), - [aux_sym_preproc_if_token2] = ACTIONS(1875), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1875), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1875), - [sym_preproc_directive] = ACTIONS(1875), + [STATE(324)] = { + [sym_else_clause] = STATE(345), + [sym_identifier] = ACTIONS(1947), + [aux_sym_preproc_include_token1] = ACTIONS(1947), + [aux_sym_preproc_def_token1] = ACTIONS(1947), + [aux_sym_preproc_if_token1] = ACTIONS(1947), + [aux_sym_preproc_if_token2] = ACTIONS(1947), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1947), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1947), + [sym_preproc_directive] = ACTIONS(1947), + [anon_sym_LPAREN2] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1949), + [anon_sym_TILDE] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1949), + [anon_sym_AMP_AMP] = ACTIONS(1949), + [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_SEMI] = ACTIONS(1949), + [anon_sym___extension__] = ACTIONS(1947), + [anon_sym_typedef] = ACTIONS(1947), + [anon_sym_virtual] = ACTIONS(1947), + [anon_sym_extern] = ACTIONS(1947), + [anon_sym___attribute__] = ACTIONS(1947), + [anon_sym___attribute] = ACTIONS(1947), + [anon_sym_COLON_COLON] = ACTIONS(1949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1949), + [anon_sym___declspec] = ACTIONS(1947), + [anon_sym___based] = ACTIONS(1947), + [anon_sym___cdecl] = ACTIONS(1947), + [anon_sym___clrcall] = ACTIONS(1947), + [anon_sym___stdcall] = ACTIONS(1947), + [anon_sym___fastcall] = ACTIONS(1947), + [anon_sym___thiscall] = ACTIONS(1947), + [anon_sym___vectorcall] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1949), + [anon_sym_signed] = ACTIONS(1947), + [anon_sym_unsigned] = ACTIONS(1947), + [anon_sym_long] = ACTIONS(1947), + [anon_sym_short] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_static] = ACTIONS(1947), + [anon_sym_register] = ACTIONS(1947), + [anon_sym_inline] = ACTIONS(1947), + [anon_sym___inline] = ACTIONS(1947), + [anon_sym___inline__] = ACTIONS(1947), + [anon_sym___forceinline] = ACTIONS(1947), + [anon_sym_thread_local] = ACTIONS(1947), + [anon_sym___thread] = ACTIONS(1947), + [anon_sym_const] = ACTIONS(1947), + [anon_sym_constexpr] = ACTIONS(1947), + [anon_sym_volatile] = ACTIONS(1947), + [anon_sym_restrict] = ACTIONS(1947), + [anon_sym___restrict__] = ACTIONS(1947), + [anon_sym__Atomic] = ACTIONS(1947), + [anon_sym__Noreturn] = ACTIONS(1947), + [anon_sym_noreturn] = ACTIONS(1947), + [anon_sym__Nonnull] = ACTIONS(1947), + [anon_sym_mutable] = ACTIONS(1947), + [anon_sym_constinit] = ACTIONS(1947), + [anon_sym_consteval] = ACTIONS(1947), + [anon_sym_alignas] = ACTIONS(1947), + [anon_sym__Alignas] = ACTIONS(1947), + [sym_primitive_type] = ACTIONS(1947), + [anon_sym_enum] = ACTIONS(1947), + [anon_sym_class] = ACTIONS(1947), + [anon_sym_struct] = ACTIONS(1947), + [anon_sym_union] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_else] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(1947), + [anon_sym_case] = ACTIONS(1947), + [anon_sym_default] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_do] = ACTIONS(1947), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_break] = ACTIONS(1947), + [anon_sym_continue] = ACTIONS(1947), + [anon_sym_goto] = ACTIONS(1947), + [anon_sym___try] = ACTIONS(1947), + [anon_sym___leave] = ACTIONS(1947), + [anon_sym_not] = ACTIONS(1947), + [anon_sym_compl] = ACTIONS(1947), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_sizeof] = ACTIONS(1947), + [anon_sym___alignof__] = ACTIONS(1947), + [anon_sym___alignof] = ACTIONS(1947), + [anon_sym__alignof] = ACTIONS(1947), + [anon_sym_alignof] = ACTIONS(1947), + [anon_sym__Alignof] = ACTIONS(1947), + [anon_sym_offsetof] = ACTIONS(1947), + [anon_sym__Generic] = ACTIONS(1947), + [anon_sym_asm] = ACTIONS(1947), + [anon_sym___asm__] = ACTIONS(1947), + [anon_sym___asm] = ACTIONS(1947), + [sym_number_literal] = ACTIONS(1949), + [anon_sym_L_SQUOTE] = ACTIONS(1949), + [anon_sym_u_SQUOTE] = ACTIONS(1949), + [anon_sym_U_SQUOTE] = ACTIONS(1949), + [anon_sym_u8_SQUOTE] = ACTIONS(1949), + [anon_sym_SQUOTE] = ACTIONS(1949), + [anon_sym_L_DQUOTE] = ACTIONS(1949), + [anon_sym_u_DQUOTE] = ACTIONS(1949), + [anon_sym_U_DQUOTE] = ACTIONS(1949), + [anon_sym_u8_DQUOTE] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1949), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [anon_sym_NULL] = ACTIONS(1947), + [anon_sym_nullptr] = ACTIONS(1947), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1947), + [anon_sym_decltype] = ACTIONS(1947), + [anon_sym_explicit] = ACTIONS(1947), + [anon_sym_typename] = ACTIONS(1947), + [anon_sym_template] = ACTIONS(1947), + [anon_sym_operator] = ACTIONS(1947), + [anon_sym_try] = ACTIONS(1947), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1947), + [anon_sym_namespace] = ACTIONS(1947), + [anon_sym_using] = ACTIONS(1947), + [anon_sym_static_assert] = ACTIONS(1947), + [anon_sym_concept] = ACTIONS(1947), + [anon_sym_co_return] = ACTIONS(1947), + [anon_sym_co_yield] = ACTIONS(1947), + [anon_sym_R_DQUOTE] = ACTIONS(1949), + [anon_sym_LR_DQUOTE] = ACTIONS(1949), + [anon_sym_uR_DQUOTE] = ACTIONS(1949), + [anon_sym_UR_DQUOTE] = ACTIONS(1949), + [anon_sym_u8R_DQUOTE] = ACTIONS(1949), + [anon_sym_co_await] = ACTIONS(1947), + [anon_sym_new] = ACTIONS(1947), + [anon_sym_requires] = ACTIONS(1947), + [sym_this] = ACTIONS(1947), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_FORWARD] = ACTIONS(1947), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1947), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_PS_GET] = ACTIONS(1947), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1947), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1947), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1947), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1947), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1947), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1947), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1947), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1947), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1947), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1947), + [anon_sym_MOZ_COLD] = ACTIONS(1947), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1947), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1947), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1947), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1947), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1947), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1947), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1947), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1947), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1947), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1947), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1947), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1947), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1947), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1947), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1947), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1947), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1947), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1947), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1947), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1947), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_NONNULL] = ACTIONS(1947), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1947), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1947), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1947), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1947), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1947), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_NORETURN] = ACTIONS(1947), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1947), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1947), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1947), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1947), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1947), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1947), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1947), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1947), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1947), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1947), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1947), + [anon_sym_MOZ_RAII] = ACTIONS(1947), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1947), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1947), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1947), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1947), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1947), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1947), + }, + [STATE(325)] = { + [sym_identifier] = ACTIONS(1879), + [aux_sym_preproc_include_token1] = ACTIONS(1879), + [aux_sym_preproc_def_token1] = ACTIONS(1879), + [aux_sym_preproc_if_token1] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1879), + [sym_preproc_directive] = ACTIONS(1879), [anon_sym_LPAREN2] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), [anon_sym_STAR] = ACTIONS(1877), [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym___extension__] = ACTIONS(1879), + [anon_sym_typedef] = ACTIONS(1879), + [anon_sym_virtual] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym___attribute__] = ACTIONS(1879), + [anon_sym___attribute] = ACTIONS(1879), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1877), + [anon_sym___declspec] = ACTIONS(1879), + [anon_sym___based] = ACTIONS(1879), + [anon_sym___cdecl] = ACTIONS(1879), + [anon_sym___clrcall] = ACTIONS(1879), + [anon_sym___stdcall] = ACTIONS(1879), + [anon_sym___fastcall] = ACTIONS(1879), + [anon_sym___thiscall] = ACTIONS(1879), + [anon_sym___vectorcall] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_signed] = ACTIONS(1879), + [anon_sym_unsigned] = ACTIONS(1879), + [anon_sym_long] = ACTIONS(1879), + [anon_sym_short] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_static] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_inline] = ACTIONS(1879), + [anon_sym___inline] = ACTIONS(1879), + [anon_sym___inline__] = ACTIONS(1879), + [anon_sym___forceinline] = ACTIONS(1879), + [anon_sym_thread_local] = ACTIONS(1879), + [anon_sym___thread] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_constexpr] = ACTIONS(1879), + [anon_sym_volatile] = ACTIONS(1879), + [anon_sym_restrict] = ACTIONS(1879), + [anon_sym___restrict__] = ACTIONS(1879), + [anon_sym__Atomic] = ACTIONS(1879), + [anon_sym__Noreturn] = ACTIONS(1879), + [anon_sym_noreturn] = ACTIONS(1879), + [anon_sym__Nonnull] = ACTIONS(1879), + [anon_sym_mutable] = ACTIONS(1879), + [anon_sym_constinit] = ACTIONS(1879), + [anon_sym_consteval] = ACTIONS(1879), + [anon_sym_alignas] = ACTIONS(1879), + [anon_sym__Alignas] = ACTIONS(1879), + [sym_primitive_type] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_class] = ACTIONS(1879), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_switch] = ACTIONS(1879), + [anon_sym_case] = ACTIONS(1879), + [anon_sym_default] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym___try] = ACTIONS(1879), + [anon_sym___leave] = ACTIONS(1879), + [anon_sym_not] = ACTIONS(1879), + [anon_sym_compl] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_sizeof] = ACTIONS(1879), + [anon_sym___alignof__] = ACTIONS(1879), + [anon_sym___alignof] = ACTIONS(1879), + [anon_sym__alignof] = ACTIONS(1879), + [anon_sym_alignof] = ACTIONS(1879), + [anon_sym__Alignof] = ACTIONS(1879), + [anon_sym_offsetof] = ACTIONS(1879), + [anon_sym__Generic] = ACTIONS(1879), + [anon_sym_asm] = ACTIONS(1879), + [anon_sym___asm__] = ACTIONS(1879), + [anon_sym___asm] = ACTIONS(1879), + [sym_number_literal] = ACTIONS(1877), + [anon_sym_L_SQUOTE] = ACTIONS(1877), + [anon_sym_u_SQUOTE] = ACTIONS(1877), + [anon_sym_U_SQUOTE] = ACTIONS(1877), + [anon_sym_u8_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_L_DQUOTE] = ACTIONS(1877), + [anon_sym_u_DQUOTE] = ACTIONS(1877), + [anon_sym_U_DQUOTE] = ACTIONS(1877), + [anon_sym_u8_DQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1879), + [anon_sym_decltype] = ACTIONS(1879), + [anon_sym_explicit] = ACTIONS(1879), + [anon_sym_typename] = ACTIONS(1879), + [anon_sym_template] = ACTIONS(1879), + [anon_sym_operator] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_delete] = ACTIONS(1879), + [anon_sym_throw] = ACTIONS(1879), + [anon_sym_namespace] = ACTIONS(1879), + [anon_sym_using] = ACTIONS(1879), + [anon_sym_static_assert] = ACTIONS(1879), + [anon_sym_concept] = ACTIONS(1879), + [anon_sym_co_return] = ACTIONS(1879), + [anon_sym_co_yield] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [anon_sym_R_DQUOTE] = ACTIONS(1877), + [anon_sym_LR_DQUOTE] = ACTIONS(1877), + [anon_sym_uR_DQUOTE] = ACTIONS(1877), + [anon_sym_UR_DQUOTE] = ACTIONS(1877), + [anon_sym_u8R_DQUOTE] = ACTIONS(1877), + [anon_sym_co_await] = ACTIONS(1879), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_requires] = ACTIONS(1879), + [sym_this] = ACTIONS(1879), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1879), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_FORWARD] = ACTIONS(1879), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1879), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1879), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1879), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1879), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_PS_GET] = ACTIONS(1879), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1879), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1879), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1879), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1879), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1879), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1879), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1879), + [anon_sym_MOZ_COLD] = ACTIONS(1879), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1879), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1879), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1879), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1879), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1879), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1879), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1879), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1879), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1879), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1879), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1879), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1879), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1879), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_NONNULL] = ACTIONS(1879), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1879), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1879), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1879), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1879), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1879), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1879), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1879), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1879), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1879), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1879), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1879), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1879), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), + [anon_sym_MOZ_RAII] = ACTIONS(1879), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1879), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1879), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1879), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1879), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1879), + }, + [STATE(326)] = { + [sym_else_clause] = STATE(403), + [sym_identifier] = ACTIONS(1947), + [aux_sym_preproc_include_token1] = ACTIONS(1947), + [aux_sym_preproc_def_token1] = ACTIONS(1947), + [aux_sym_preproc_if_token1] = ACTIONS(1947), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1947), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1947), + [sym_preproc_directive] = ACTIONS(1947), + [anon_sym_LPAREN2] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1949), + [anon_sym_TILDE] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1949), + [anon_sym_AMP_AMP] = ACTIONS(1949), + [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_SEMI] = ACTIONS(1949), + [anon_sym___extension__] = ACTIONS(1947), + [anon_sym_typedef] = ACTIONS(1947), + [anon_sym_virtual] = ACTIONS(1947), + [anon_sym_extern] = ACTIONS(1947), + [anon_sym___attribute__] = ACTIONS(1947), + [anon_sym___attribute] = ACTIONS(1947), + [anon_sym_COLON_COLON] = ACTIONS(1949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1949), + [anon_sym___declspec] = ACTIONS(1947), + [anon_sym___based] = ACTIONS(1947), + [anon_sym___cdecl] = ACTIONS(1947), + [anon_sym___clrcall] = ACTIONS(1947), + [anon_sym___stdcall] = ACTIONS(1947), + [anon_sym___fastcall] = ACTIONS(1947), + [anon_sym___thiscall] = ACTIONS(1947), + [anon_sym___vectorcall] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1949), + [anon_sym_RBRACE] = ACTIONS(1949), + [anon_sym_signed] = ACTIONS(1947), + [anon_sym_unsigned] = ACTIONS(1947), + [anon_sym_long] = ACTIONS(1947), + [anon_sym_short] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_static] = ACTIONS(1947), + [anon_sym_register] = ACTIONS(1947), + [anon_sym_inline] = ACTIONS(1947), + [anon_sym___inline] = ACTIONS(1947), + [anon_sym___inline__] = ACTIONS(1947), + [anon_sym___forceinline] = ACTIONS(1947), + [anon_sym_thread_local] = ACTIONS(1947), + [anon_sym___thread] = ACTIONS(1947), + [anon_sym_const] = ACTIONS(1947), + [anon_sym_constexpr] = ACTIONS(1947), + [anon_sym_volatile] = ACTIONS(1947), + [anon_sym_restrict] = ACTIONS(1947), + [anon_sym___restrict__] = ACTIONS(1947), + [anon_sym__Atomic] = ACTIONS(1947), + [anon_sym__Noreturn] = ACTIONS(1947), + [anon_sym_noreturn] = ACTIONS(1947), + [anon_sym__Nonnull] = ACTIONS(1947), + [anon_sym_mutable] = ACTIONS(1947), + [anon_sym_constinit] = ACTIONS(1947), + [anon_sym_consteval] = ACTIONS(1947), + [anon_sym_alignas] = ACTIONS(1947), + [anon_sym__Alignas] = ACTIONS(1947), + [sym_primitive_type] = ACTIONS(1947), + [anon_sym_enum] = ACTIONS(1947), + [anon_sym_class] = ACTIONS(1947), + [anon_sym_struct] = ACTIONS(1947), + [anon_sym_union] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_else] = ACTIONS(2472), + [anon_sym_switch] = ACTIONS(1947), + [anon_sym_case] = ACTIONS(1947), + [anon_sym_default] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_do] = ACTIONS(1947), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_break] = ACTIONS(1947), + [anon_sym_continue] = ACTIONS(1947), + [anon_sym_goto] = ACTIONS(1947), + [anon_sym___try] = ACTIONS(1947), + [anon_sym___leave] = ACTIONS(1947), + [anon_sym_not] = ACTIONS(1947), + [anon_sym_compl] = ACTIONS(1947), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_sizeof] = ACTIONS(1947), + [anon_sym___alignof__] = ACTIONS(1947), + [anon_sym___alignof] = ACTIONS(1947), + [anon_sym__alignof] = ACTIONS(1947), + [anon_sym_alignof] = ACTIONS(1947), + [anon_sym__Alignof] = ACTIONS(1947), + [anon_sym_offsetof] = ACTIONS(1947), + [anon_sym__Generic] = ACTIONS(1947), + [anon_sym_asm] = ACTIONS(1947), + [anon_sym___asm__] = ACTIONS(1947), + [anon_sym___asm] = ACTIONS(1947), + [sym_number_literal] = ACTIONS(1949), + [anon_sym_L_SQUOTE] = ACTIONS(1949), + [anon_sym_u_SQUOTE] = ACTIONS(1949), + [anon_sym_U_SQUOTE] = ACTIONS(1949), + [anon_sym_u8_SQUOTE] = ACTIONS(1949), + [anon_sym_SQUOTE] = ACTIONS(1949), + [anon_sym_L_DQUOTE] = ACTIONS(1949), + [anon_sym_u_DQUOTE] = ACTIONS(1949), + [anon_sym_U_DQUOTE] = ACTIONS(1949), + [anon_sym_u8_DQUOTE] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1949), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [anon_sym_NULL] = ACTIONS(1947), + [anon_sym_nullptr] = ACTIONS(1947), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1947), + [anon_sym_decltype] = ACTIONS(1947), + [anon_sym_explicit] = ACTIONS(1947), + [anon_sym_typename] = ACTIONS(1947), + [anon_sym_template] = ACTIONS(1947), + [anon_sym_operator] = ACTIONS(1947), + [anon_sym_try] = ACTIONS(1947), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1947), + [anon_sym_namespace] = ACTIONS(1947), + [anon_sym_using] = ACTIONS(1947), + [anon_sym_static_assert] = ACTIONS(1947), + [anon_sym_concept] = ACTIONS(1947), + [anon_sym_co_return] = ACTIONS(1947), + [anon_sym_co_yield] = ACTIONS(1947), + [anon_sym_R_DQUOTE] = ACTIONS(1949), + [anon_sym_LR_DQUOTE] = ACTIONS(1949), + [anon_sym_uR_DQUOTE] = ACTIONS(1949), + [anon_sym_UR_DQUOTE] = ACTIONS(1949), + [anon_sym_u8R_DQUOTE] = ACTIONS(1949), + [anon_sym_co_await] = ACTIONS(1947), + [anon_sym_new] = ACTIONS(1947), + [anon_sym_requires] = ACTIONS(1947), + [sym_this] = ACTIONS(1947), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_FORWARD] = ACTIONS(1947), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1947), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_PS_GET] = ACTIONS(1947), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1947), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1947), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1947), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1947), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1947), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1947), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1947), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1947), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1947), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1947), + [anon_sym_MOZ_COLD] = ACTIONS(1947), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1947), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1947), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1947), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1947), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1947), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1947), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1947), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1947), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1947), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1947), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1947), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1947), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1947), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1947), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1947), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1947), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1947), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1947), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1947), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1947), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_NONNULL] = ACTIONS(1947), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1947), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1947), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1947), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1947), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1947), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_NORETURN] = ACTIONS(1947), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1947), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1947), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1947), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1947), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1947), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1947), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1947), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1947), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1947), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1947), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1947), + [anon_sym_MOZ_RAII] = ACTIONS(1947), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1947), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1947), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1947), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1947), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1947), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1947), + }, + [STATE(327)] = { + [ts_builtin_sym_end] = ACTIONS(2220), + [sym_identifier] = ACTIONS(2218), + [aux_sym_preproc_include_token1] = ACTIONS(2218), + [aux_sym_preproc_def_token1] = ACTIONS(2218), + [anon_sym_COMMA] = ACTIONS(2220), + [aux_sym_preproc_if_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2218), + [sym_preproc_directive] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_PLUS] = ACTIONS(2218), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP_AMP] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2218), + [anon_sym_typedef] = ACTIONS(2218), + [anon_sym_virtual] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym___attribute__] = ACTIONS(2218), + [anon_sym___attribute] = ACTIONS(2218), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2220), + [anon_sym___declspec] = ACTIONS(2218), + [anon_sym___based] = ACTIONS(2218), + [anon_sym___cdecl] = ACTIONS(2218), + [anon_sym___clrcall] = ACTIONS(2218), + [anon_sym___stdcall] = ACTIONS(2218), + [anon_sym___fastcall] = ACTIONS(2218), + [anon_sym___thiscall] = ACTIONS(2218), + [anon_sym___vectorcall] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_RBRACE] = ACTIONS(2220), + [anon_sym_signed] = ACTIONS(2218), + [anon_sym_unsigned] = ACTIONS(2218), + [anon_sym_long] = ACTIONS(2218), + [anon_sym_short] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_inline] = ACTIONS(2218), + [anon_sym___inline] = ACTIONS(2218), + [anon_sym___inline__] = ACTIONS(2218), + [anon_sym___forceinline] = ACTIONS(2218), + [anon_sym_thread_local] = ACTIONS(2218), + [anon_sym___thread] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_constexpr] = ACTIONS(2218), + [anon_sym_volatile] = ACTIONS(2218), + [anon_sym_restrict] = ACTIONS(2218), + [anon_sym___restrict__] = ACTIONS(2218), + [anon_sym__Atomic] = ACTIONS(2218), + [anon_sym__Noreturn] = ACTIONS(2218), + [anon_sym_noreturn] = ACTIONS(2218), + [anon_sym__Nonnull] = ACTIONS(2218), + [anon_sym_mutable] = ACTIONS(2218), + [anon_sym_constinit] = ACTIONS(2218), + [anon_sym_consteval] = ACTIONS(2218), + [anon_sym_alignas] = ACTIONS(2218), + [anon_sym__Alignas] = ACTIONS(2218), + [sym_primitive_type] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_class] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_switch] = ACTIONS(2218), + [anon_sym_case] = ACTIONS(2218), + [anon_sym_default] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_do] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_goto] = ACTIONS(2218), + [anon_sym_not] = ACTIONS(2218), + [anon_sym_compl] = ACTIONS(2218), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(2218), + [anon_sym___alignof__] = ACTIONS(2218), + [anon_sym___alignof] = ACTIONS(2218), + [anon_sym__alignof] = ACTIONS(2218), + [anon_sym_alignof] = ACTIONS(2218), + [anon_sym__Alignof] = ACTIONS(2218), + [anon_sym_offsetof] = ACTIONS(2218), + [anon_sym__Generic] = ACTIONS(2218), + [anon_sym_asm] = ACTIONS(2218), + [anon_sym___asm__] = ACTIONS(2218), + [anon_sym___asm] = ACTIONS(2218), + [sym_number_literal] = ACTIONS(2220), + [anon_sym_L_SQUOTE] = ACTIONS(2220), + [anon_sym_u_SQUOTE] = ACTIONS(2220), + [anon_sym_U_SQUOTE] = ACTIONS(2220), + [anon_sym_u8_SQUOTE] = ACTIONS(2220), + [anon_sym_SQUOTE] = ACTIONS(2220), + [anon_sym_L_DQUOTE] = ACTIONS(2220), + [anon_sym_u_DQUOTE] = ACTIONS(2220), + [anon_sym_U_DQUOTE] = ACTIONS(2220), + [anon_sym_u8_DQUOTE] = ACTIONS(2220), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_true] = ACTIONS(2218), + [sym_false] = ACTIONS(2218), + [anon_sym_NULL] = ACTIONS(2218), + [anon_sym_nullptr] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2218), + [anon_sym_explicit] = ACTIONS(2218), + [anon_sym_typename] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_operator] = ACTIONS(2218), + [anon_sym_try] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(2218), + [anon_sym_throw] = ACTIONS(2218), + [anon_sym_namespace] = ACTIONS(2218), + [anon_sym_using] = ACTIONS(2218), + [anon_sym_static_assert] = ACTIONS(2218), + [anon_sym_concept] = ACTIONS(2218), + [anon_sym_co_return] = ACTIONS(2218), + [anon_sym_co_yield] = ACTIONS(2218), + [anon_sym_R_DQUOTE] = ACTIONS(2220), + [anon_sym_LR_DQUOTE] = ACTIONS(2220), + [anon_sym_uR_DQUOTE] = ACTIONS(2220), + [anon_sym_UR_DQUOTE] = ACTIONS(2220), + [anon_sym_u8R_DQUOTE] = ACTIONS(2220), + [anon_sym_co_await] = ACTIONS(2218), + [anon_sym_new] = ACTIONS(2218), + [anon_sym_requires] = ACTIONS(2218), + [sym_this] = ACTIONS(2218), + [sym_alone_macro] = ACTIONS(2220), + [aux_sym_alone_macro_call_token1] = ACTIONS(2218), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2218), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_FORWARD] = ACTIONS(2218), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2218), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2218), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2218), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2218), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_PS_GET] = ACTIONS(2218), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2218), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2218), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2218), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2218), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2218), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2218), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2218), + [anon_sym_MOZ_COLD] = ACTIONS(2218), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2218), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2218), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2218), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2218), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2218), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2218), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2218), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2218), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2218), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2218), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2218), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2218), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2218), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_NONNULL] = ACTIONS(2218), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2218), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2218), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2218), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2218), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2218), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2218), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2218), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2218), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2218), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2218), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2218), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2218), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2218), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2218), + [anon_sym_MOZ_RAII] = ACTIONS(2218), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2218), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2218), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2218), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2218), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2218), + }, + [STATE(328)] = { + [sym_identifier] = ACTIONS(1875), + [aux_sym_preproc_include_token1] = ACTIONS(1875), + [aux_sym_preproc_def_token1] = ACTIONS(1875), + [aux_sym_preproc_if_token1] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1875), + [sym_preproc_directive] = ACTIONS(1875), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym___extension__] = ACTIONS(1875), [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_virtual] = ACTIONS(1875), [anon_sym_extern] = ACTIONS(1875), [anon_sym___attribute__] = ACTIONS(1875), - [anon_sym_COLON_COLON] = ACTIONS(1877), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1877), + [anon_sym___attribute] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), [anon_sym___declspec] = ACTIONS(1875), [anon_sym___based] = ACTIONS(1875), + [anon_sym___cdecl] = ACTIONS(1875), + [anon_sym___clrcall] = ACTIONS(1875), + [anon_sym___stdcall] = ACTIONS(1875), + [anon_sym___fastcall] = ACTIONS(1875), + [anon_sym___thiscall] = ACTIONS(1875), + [anon_sym___vectorcall] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), [anon_sym_LBRACK] = ACTIONS(1875), [anon_sym_static] = ACTIONS(1875), [anon_sym_register] = ACTIONS(1875), [anon_sym_inline] = ACTIONS(1875), + [anon_sym___inline] = ACTIONS(1875), + [anon_sym___inline__] = ACTIONS(1875), + [anon_sym___forceinline] = ACTIONS(1875), [anon_sym_thread_local] = ACTIONS(1875), + [anon_sym___thread] = ACTIONS(1875), [anon_sym_const] = ACTIONS(1875), + [anon_sym_constexpr] = ACTIONS(1875), [anon_sym_volatile] = ACTIONS(1875), [anon_sym_restrict] = ACTIONS(1875), + [anon_sym___restrict__] = ACTIONS(1875), [anon_sym__Atomic] = ACTIONS(1875), + [anon_sym__Noreturn] = ACTIONS(1875), + [anon_sym_noreturn] = ACTIONS(1875), + [anon_sym__Nonnull] = ACTIONS(1875), [anon_sym_mutable] = ACTIONS(1875), - [anon_sym_constexpr] = ACTIONS(1875), + [anon_sym_constinit] = ACTIONS(1875), + [anon_sym_consteval] = ACTIONS(1875), + [anon_sym_alignas] = ACTIONS(1875), + [anon_sym__Alignas] = ACTIONS(1875), + [sym_primitive_type] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_else] = ACTIONS(1875), + [anon_sym_switch] = ACTIONS(1875), + [anon_sym_case] = ACTIONS(1875), + [anon_sym_default] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_goto] = ACTIONS(1875), + [anon_sym___try] = ACTIONS(1875), + [anon_sym___leave] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(1875), + [anon_sym_compl] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1873), + [anon_sym_sizeof] = ACTIONS(1875), + [anon_sym___alignof__] = ACTIONS(1875), + [anon_sym___alignof] = ACTIONS(1875), + [anon_sym__alignof] = ACTIONS(1875), + [anon_sym_alignof] = ACTIONS(1875), + [anon_sym__Alignof] = ACTIONS(1875), + [anon_sym_offsetof] = ACTIONS(1875), + [anon_sym__Generic] = ACTIONS(1875), + [anon_sym_asm] = ACTIONS(1875), + [anon_sym___asm__] = ACTIONS(1875), + [anon_sym___asm] = ACTIONS(1875), + [sym_number_literal] = ACTIONS(1873), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1873), + [anon_sym_u_DQUOTE] = ACTIONS(1873), + [anon_sym_U_DQUOTE] = ACTIONS(1873), + [anon_sym_u8_DQUOTE] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym_true] = ACTIONS(1875), + [sym_false] = ACTIONS(1875), + [anon_sym_NULL] = ACTIONS(1875), + [anon_sym_nullptr] = ACTIONS(1875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1875), + [anon_sym_decltype] = ACTIONS(1875), + [anon_sym_explicit] = ACTIONS(1875), + [anon_sym_typename] = ACTIONS(1875), + [anon_sym_template] = ACTIONS(1875), + [anon_sym_operator] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_delete] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1875), + [anon_sym_namespace] = ACTIONS(1875), + [anon_sym_using] = ACTIONS(1875), + [anon_sym_static_assert] = ACTIONS(1875), + [anon_sym_concept] = ACTIONS(1875), + [anon_sym_co_return] = ACTIONS(1875), + [anon_sym_co_yield] = ACTIONS(1875), + [anon_sym_catch] = ACTIONS(1875), + [anon_sym_R_DQUOTE] = ACTIONS(1873), + [anon_sym_LR_DQUOTE] = ACTIONS(1873), + [anon_sym_uR_DQUOTE] = ACTIONS(1873), + [anon_sym_UR_DQUOTE] = ACTIONS(1873), + [anon_sym_u8R_DQUOTE] = ACTIONS(1873), + [anon_sym_co_await] = ACTIONS(1875), + [anon_sym_new] = ACTIONS(1875), + [anon_sym_requires] = ACTIONS(1875), + [sym_this] = ACTIONS(1875), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_FORWARD] = ACTIONS(1875), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1875), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_PS_GET] = ACTIONS(1875), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1875), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1875), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1875), + [anon_sym_MOZ_COLD] = ACTIONS(1875), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1875), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1875), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1875), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1875), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1875), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1875), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1875), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1875), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1875), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1875), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1875), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1875), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_RAII] = ACTIONS(1875), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1875), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1875), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1875), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), + }, + [STATE(329)] = { + [sym_else_clause] = STATE(334), + [sym_identifier] = ACTIONS(1957), + [aux_sym_preproc_include_token1] = ACTIONS(1957), + [aux_sym_preproc_def_token1] = ACTIONS(1957), + [aux_sym_preproc_if_token1] = ACTIONS(1957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1957), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1957), + [sym_preproc_directive] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1959), + [anon_sym_BANG] = ACTIONS(1959), + [anon_sym_TILDE] = ACTIONS(1959), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym___extension__] = ACTIONS(1957), + [anon_sym_typedef] = ACTIONS(1957), + [anon_sym_virtual] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym___attribute__] = ACTIONS(1957), + [anon_sym___attribute] = ACTIONS(1957), + [anon_sym_COLON_COLON] = ACTIONS(1959), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1959), + [anon_sym___declspec] = ACTIONS(1957), + [anon_sym___based] = ACTIONS(1957), + [anon_sym___cdecl] = ACTIONS(1957), + [anon_sym___clrcall] = ACTIONS(1957), + [anon_sym___stdcall] = ACTIONS(1957), + [anon_sym___fastcall] = ACTIONS(1957), + [anon_sym___thiscall] = ACTIONS(1957), + [anon_sym___vectorcall] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_signed] = ACTIONS(1957), + [anon_sym_unsigned] = ACTIONS(1957), + [anon_sym_long] = ACTIONS(1957), + [anon_sym_short] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1957), + [anon_sym_static] = ACTIONS(1957), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_inline] = ACTIONS(1957), + [anon_sym___inline] = ACTIONS(1957), + [anon_sym___inline__] = ACTIONS(1957), + [anon_sym___forceinline] = ACTIONS(1957), + [anon_sym_thread_local] = ACTIONS(1957), + [anon_sym___thread] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [anon_sym_constexpr] = ACTIONS(1957), + [anon_sym_volatile] = ACTIONS(1957), + [anon_sym_restrict] = ACTIONS(1957), + [anon_sym___restrict__] = ACTIONS(1957), + [anon_sym__Atomic] = ACTIONS(1957), + [anon_sym__Noreturn] = ACTIONS(1957), + [anon_sym_noreturn] = ACTIONS(1957), + [anon_sym__Nonnull] = ACTIONS(1957), + [anon_sym_mutable] = ACTIONS(1957), + [anon_sym_constinit] = ACTIONS(1957), + [anon_sym_consteval] = ACTIONS(1957), + [anon_sym_alignas] = ACTIONS(1957), + [anon_sym__Alignas] = ACTIONS(1957), + [sym_primitive_type] = ACTIONS(1957), + [anon_sym_enum] = ACTIONS(1957), + [anon_sym_class] = ACTIONS(1957), + [anon_sym_struct] = ACTIONS(1957), + [anon_sym_union] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(2472), + [anon_sym_switch] = ACTIONS(1957), + [anon_sym_case] = ACTIONS(1957), + [anon_sym_default] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_goto] = ACTIONS(1957), + [anon_sym___try] = ACTIONS(1957), + [anon_sym___leave] = ACTIONS(1957), + [anon_sym_not] = ACTIONS(1957), + [anon_sym_compl] = ACTIONS(1957), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_sizeof] = ACTIONS(1957), + [anon_sym___alignof__] = ACTIONS(1957), + [anon_sym___alignof] = ACTIONS(1957), + [anon_sym__alignof] = ACTIONS(1957), + [anon_sym_alignof] = ACTIONS(1957), + [anon_sym__Alignof] = ACTIONS(1957), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1957), + [anon_sym_asm] = ACTIONS(1957), + [anon_sym___asm__] = ACTIONS(1957), + [anon_sym___asm] = ACTIONS(1957), + [sym_number_literal] = ACTIONS(1959), + [anon_sym_L_SQUOTE] = ACTIONS(1959), + [anon_sym_u_SQUOTE] = ACTIONS(1959), + [anon_sym_U_SQUOTE] = ACTIONS(1959), + [anon_sym_u8_SQUOTE] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(1959), + [anon_sym_L_DQUOTE] = ACTIONS(1959), + [anon_sym_u_DQUOTE] = ACTIONS(1959), + [anon_sym_U_DQUOTE] = ACTIONS(1959), + [anon_sym_u8_DQUOTE] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [sym_true] = ACTIONS(1957), + [sym_false] = ACTIONS(1957), + [anon_sym_NULL] = ACTIONS(1957), + [anon_sym_nullptr] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1957), + [anon_sym_decltype] = ACTIONS(1957), + [anon_sym_explicit] = ACTIONS(1957), + [anon_sym_typename] = ACTIONS(1957), + [anon_sym_template] = ACTIONS(1957), + [anon_sym_operator] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_delete] = ACTIONS(1957), + [anon_sym_throw] = ACTIONS(1957), + [anon_sym_namespace] = ACTIONS(1957), + [anon_sym_using] = ACTIONS(1957), + [anon_sym_static_assert] = ACTIONS(1957), + [anon_sym_concept] = ACTIONS(1957), + [anon_sym_co_return] = ACTIONS(1957), + [anon_sym_co_yield] = ACTIONS(1957), + [anon_sym_R_DQUOTE] = ACTIONS(1959), + [anon_sym_LR_DQUOTE] = ACTIONS(1959), + [anon_sym_uR_DQUOTE] = ACTIONS(1959), + [anon_sym_UR_DQUOTE] = ACTIONS(1959), + [anon_sym_u8R_DQUOTE] = ACTIONS(1959), + [anon_sym_co_await] = ACTIONS(1957), + [anon_sym_new] = ACTIONS(1957), + [anon_sym_requires] = ACTIONS(1957), + [sym_this] = ACTIONS(1957), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_FORWARD] = ACTIONS(1957), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1957), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_PS_GET] = ACTIONS(1957), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1957), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1957), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1957), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1957), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1957), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1957), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1957), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1957), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1957), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1957), + [anon_sym_MOZ_COLD] = ACTIONS(1957), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1957), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1957), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1957), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1957), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1957), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1957), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1957), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1957), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1957), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1957), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1957), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1957), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1957), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1957), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1957), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1957), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1957), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1957), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1957), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1957), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_NONNULL] = ACTIONS(1957), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1957), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1957), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1957), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1957), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1957), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_NORETURN] = ACTIONS(1957), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1957), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1957), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1957), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1957), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1957), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1957), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1957), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1957), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1957), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1957), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1957), + [anon_sym_MOZ_RAII] = ACTIONS(1957), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1957), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1957), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1957), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1957), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1957), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1957), + }, + [STATE(330)] = { + [sym_identifier] = ACTIONS(2168), + [aux_sym_preproc_include_token1] = ACTIONS(2168), + [aux_sym_preproc_def_token1] = ACTIONS(2168), + [aux_sym_preproc_if_token1] = ACTIONS(2168), + [aux_sym_preproc_if_token2] = ACTIONS(2168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2168), + [sym_preproc_directive] = ACTIONS(2168), + [anon_sym_LPAREN2] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2168), + [anon_sym_PLUS] = ACTIONS(2168), + [anon_sym_STAR] = ACTIONS(2170), + [anon_sym_AMP_AMP] = ACTIONS(2170), + [anon_sym_AMP] = ACTIONS(2168), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym___extension__] = ACTIONS(2168), + [anon_sym_typedef] = ACTIONS(2168), + [anon_sym_virtual] = ACTIONS(2168), + [anon_sym_extern] = ACTIONS(2168), + [anon_sym___attribute__] = ACTIONS(2168), + [anon_sym___attribute] = ACTIONS(2168), + [anon_sym_COLON_COLON] = ACTIONS(2170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2170), + [anon_sym___declspec] = ACTIONS(2168), + [anon_sym___based] = ACTIONS(2168), + [anon_sym___cdecl] = ACTIONS(2168), + [anon_sym___clrcall] = ACTIONS(2168), + [anon_sym___stdcall] = ACTIONS(2168), + [anon_sym___fastcall] = ACTIONS(2168), + [anon_sym___thiscall] = ACTIONS(2168), + [anon_sym___vectorcall] = ACTIONS(2168), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_signed] = ACTIONS(2168), + [anon_sym_unsigned] = ACTIONS(2168), + [anon_sym_long] = ACTIONS(2168), + [anon_sym_short] = ACTIONS(2168), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_static] = ACTIONS(2168), + [anon_sym_register] = ACTIONS(2168), + [anon_sym_inline] = ACTIONS(2168), + [anon_sym___inline] = ACTIONS(2168), + [anon_sym___inline__] = ACTIONS(2168), + [anon_sym___forceinline] = ACTIONS(2168), + [anon_sym_thread_local] = ACTIONS(2168), + [anon_sym___thread] = ACTIONS(2168), + [anon_sym_const] = ACTIONS(2168), + [anon_sym_constexpr] = ACTIONS(2168), + [anon_sym_volatile] = ACTIONS(2168), + [anon_sym_restrict] = ACTIONS(2168), + [anon_sym___restrict__] = ACTIONS(2168), + [anon_sym__Atomic] = ACTIONS(2168), + [anon_sym__Noreturn] = ACTIONS(2168), + [anon_sym_noreturn] = ACTIONS(2168), + [anon_sym__Nonnull] = ACTIONS(2168), + [anon_sym_mutable] = ACTIONS(2168), + [anon_sym_constinit] = ACTIONS(2168), + [anon_sym_consteval] = ACTIONS(2168), + [anon_sym_alignas] = ACTIONS(2168), + [anon_sym__Alignas] = ACTIONS(2168), + [sym_primitive_type] = ACTIONS(2168), + [anon_sym_enum] = ACTIONS(2168), + [anon_sym_class] = ACTIONS(2168), + [anon_sym_struct] = ACTIONS(2168), + [anon_sym_union] = ACTIONS(2168), + [anon_sym_if] = ACTIONS(2168), + [anon_sym_else] = ACTIONS(2168), + [anon_sym_switch] = ACTIONS(2168), + [anon_sym_case] = ACTIONS(2168), + [anon_sym_default] = ACTIONS(2168), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_do] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2168), + [anon_sym_return] = ACTIONS(2168), + [anon_sym_break] = ACTIONS(2168), + [anon_sym_continue] = ACTIONS(2168), + [anon_sym_goto] = ACTIONS(2168), + [anon_sym___try] = ACTIONS(2168), + [anon_sym___leave] = ACTIONS(2168), + [anon_sym_not] = ACTIONS(2168), + [anon_sym_compl] = ACTIONS(2168), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_sizeof] = ACTIONS(2168), + [anon_sym___alignof__] = ACTIONS(2168), + [anon_sym___alignof] = ACTIONS(2168), + [anon_sym__alignof] = ACTIONS(2168), + [anon_sym_alignof] = ACTIONS(2168), + [anon_sym__Alignof] = ACTIONS(2168), + [anon_sym_offsetof] = ACTIONS(2168), + [anon_sym__Generic] = ACTIONS(2168), + [anon_sym_asm] = ACTIONS(2168), + [anon_sym___asm__] = ACTIONS(2168), + [anon_sym___asm] = ACTIONS(2168), + [sym_number_literal] = ACTIONS(2170), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2170), + [anon_sym_u_DQUOTE] = ACTIONS(2170), + [anon_sym_U_DQUOTE] = ACTIONS(2170), + [anon_sym_u8_DQUOTE] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2168), + [anon_sym_nullptr] = ACTIONS(2168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2168), + [anon_sym_decltype] = ACTIONS(2168), + [anon_sym_explicit] = ACTIONS(2168), + [anon_sym_typename] = ACTIONS(2168), + [anon_sym_template] = ACTIONS(2168), + [anon_sym_operator] = ACTIONS(2168), + [anon_sym_try] = ACTIONS(2168), + [anon_sym_delete] = ACTIONS(2168), + [anon_sym_throw] = ACTIONS(2168), + [anon_sym_namespace] = ACTIONS(2168), + [anon_sym_using] = ACTIONS(2168), + [anon_sym_static_assert] = ACTIONS(2168), + [anon_sym_concept] = ACTIONS(2168), + [anon_sym_co_return] = ACTIONS(2168), + [anon_sym_co_yield] = ACTIONS(2168), + [anon_sym_R_DQUOTE] = ACTIONS(2170), + [anon_sym_LR_DQUOTE] = ACTIONS(2170), + [anon_sym_uR_DQUOTE] = ACTIONS(2170), + [anon_sym_UR_DQUOTE] = ACTIONS(2170), + [anon_sym_u8R_DQUOTE] = ACTIONS(2170), + [anon_sym_co_await] = ACTIONS(2168), + [anon_sym_new] = ACTIONS(2168), + [anon_sym_requires] = ACTIONS(2168), + [sym_this] = ACTIONS(2168), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_FORWARD] = ACTIONS(2168), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2168), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_PS_GET] = ACTIONS(2168), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2168), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2168), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2168), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2168), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2168), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2168), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2168), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2168), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2168), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2168), + [anon_sym_MOZ_COLD] = ACTIONS(2168), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2168), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2168), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2168), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2168), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2168), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2168), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2168), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2168), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2168), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2168), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2168), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2168), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2168), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2168), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2168), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2168), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2168), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2168), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2168), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2168), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_NONNULL] = ACTIONS(2168), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2168), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2168), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2168), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2168), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2168), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_NORETURN] = ACTIONS(2168), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2168), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2168), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2168), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2168), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2168), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2168), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2168), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2168), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2168), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2168), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2168), + [anon_sym_MOZ_RAII] = ACTIONS(2168), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2168), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2168), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2168), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2168), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2168), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2168), + }, + [STATE(331)] = { + [sym_identifier] = ACTIONS(2160), + [aux_sym_preproc_include_token1] = ACTIONS(2160), + [aux_sym_preproc_def_token1] = ACTIONS(2160), + [aux_sym_preproc_if_token1] = ACTIONS(2160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2160), + [sym_preproc_directive] = ACTIONS(2160), + [anon_sym_LPAREN2] = ACTIONS(2162), + [anon_sym_BANG] = ACTIONS(2162), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym___extension__] = ACTIONS(2160), + [anon_sym_typedef] = ACTIONS(2160), + [anon_sym_virtual] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2160), + [anon_sym___attribute__] = ACTIONS(2160), + [anon_sym___attribute] = ACTIONS(2160), + [anon_sym_COLON_COLON] = ACTIONS(2162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2162), + [anon_sym___declspec] = ACTIONS(2160), + [anon_sym___based] = ACTIONS(2160), + [anon_sym___cdecl] = ACTIONS(2160), + [anon_sym___clrcall] = ACTIONS(2160), + [anon_sym___stdcall] = ACTIONS(2160), + [anon_sym___fastcall] = ACTIONS(2160), + [anon_sym___thiscall] = ACTIONS(2160), + [anon_sym___vectorcall] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_signed] = ACTIONS(2160), + [anon_sym_unsigned] = ACTIONS(2160), + [anon_sym_long] = ACTIONS(2160), + [anon_sym_short] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_register] = ACTIONS(2160), + [anon_sym_inline] = ACTIONS(2160), + [anon_sym___inline] = ACTIONS(2160), + [anon_sym___inline__] = ACTIONS(2160), + [anon_sym___forceinline] = ACTIONS(2160), + [anon_sym_thread_local] = ACTIONS(2160), + [anon_sym___thread] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_constexpr] = ACTIONS(2160), + [anon_sym_volatile] = ACTIONS(2160), + [anon_sym_restrict] = ACTIONS(2160), + [anon_sym___restrict__] = ACTIONS(2160), + [anon_sym__Atomic] = ACTIONS(2160), + [anon_sym__Noreturn] = ACTIONS(2160), + [anon_sym_noreturn] = ACTIONS(2160), + [anon_sym__Nonnull] = ACTIONS(2160), + [anon_sym_mutable] = ACTIONS(2160), + [anon_sym_constinit] = ACTIONS(2160), + [anon_sym_consteval] = ACTIONS(2160), + [anon_sym_alignas] = ACTIONS(2160), + [anon_sym__Alignas] = ACTIONS(2160), + [sym_primitive_type] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_struct] = ACTIONS(2160), + [anon_sym_union] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_goto] = ACTIONS(2160), + [anon_sym___try] = ACTIONS(2160), + [anon_sym___leave] = ACTIONS(2160), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_compl] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_sizeof] = ACTIONS(2160), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2160), + [anon_sym__Generic] = ACTIONS(2160), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [anon_sym___asm] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2162), + [anon_sym_u_DQUOTE] = ACTIONS(2162), + [anon_sym_U_DQUOTE] = ACTIONS(2162), + [anon_sym_u8_DQUOTE] = ACTIONS(2162), + [anon_sym_DQUOTE] = ACTIONS(2162), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [anon_sym_NULL] = ACTIONS(2160), + [anon_sym_nullptr] = ACTIONS(2160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2160), + [anon_sym_decltype] = ACTIONS(2160), + [anon_sym_explicit] = ACTIONS(2160), + [anon_sym_typename] = ACTIONS(2160), + [anon_sym_template] = ACTIONS(2160), + [anon_sym_operator] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_static_assert] = ACTIONS(2160), + [anon_sym_concept] = ACTIONS(2160), + [anon_sym_co_return] = ACTIONS(2160), + [anon_sym_co_yield] = ACTIONS(2160), + [anon_sym_R_DQUOTE] = ACTIONS(2162), + [anon_sym_LR_DQUOTE] = ACTIONS(2162), + [anon_sym_uR_DQUOTE] = ACTIONS(2162), + [anon_sym_UR_DQUOTE] = ACTIONS(2162), + [anon_sym_u8R_DQUOTE] = ACTIONS(2162), + [anon_sym_co_await] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_requires] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_FORWARD] = ACTIONS(2160), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2160), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_PS_GET] = ACTIONS(2160), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2160), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2160), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2160), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2160), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2160), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2160), + [anon_sym_MOZ_COLD] = ACTIONS(2160), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2160), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2160), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2160), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2160), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2160), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2160), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2160), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2160), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2160), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2160), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2160), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2160), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2160), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_NONNULL] = ACTIONS(2160), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2160), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2160), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2160), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2160), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2160), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2160), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2160), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2160), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2160), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2160), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2160), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2160), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2160), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2160), + [anon_sym_MOZ_RAII] = ACTIONS(2160), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2160), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2160), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2160), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2160), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2160), + }, + [STATE(332)] = { + [sym_identifier] = ACTIONS(2024), + [aux_sym_preproc_include_token1] = ACTIONS(2024), + [aux_sym_preproc_def_token1] = ACTIONS(2024), + [aux_sym_preproc_if_token1] = ACTIONS(2024), + [aux_sym_preproc_if_token2] = ACTIONS(2024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2024), + [sym_preproc_directive] = ACTIONS(2024), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2026), + [anon_sym_TILDE] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_typedef] = ACTIONS(2024), + [anon_sym_virtual] = ACTIONS(2024), + [anon_sym_extern] = ACTIONS(2024), + [anon_sym___attribute__] = ACTIONS(2024), + [anon_sym___attribute] = ACTIONS(2024), + [anon_sym_COLON_COLON] = ACTIONS(2026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2026), + [anon_sym___declspec] = ACTIONS(2024), + [anon_sym___based] = ACTIONS(2024), + [anon_sym___cdecl] = ACTIONS(2024), + [anon_sym___clrcall] = ACTIONS(2024), + [anon_sym___stdcall] = ACTIONS(2024), + [anon_sym___fastcall] = ACTIONS(2024), + [anon_sym___thiscall] = ACTIONS(2024), + [anon_sym___vectorcall] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_signed] = ACTIONS(2024), + [anon_sym_unsigned] = ACTIONS(2024), + [anon_sym_long] = ACTIONS(2024), + [anon_sym_short] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_static] = ACTIONS(2024), + [anon_sym_register] = ACTIONS(2024), + [anon_sym_inline] = ACTIONS(2024), + [anon_sym___inline] = ACTIONS(2024), + [anon_sym___inline__] = ACTIONS(2024), + [anon_sym___forceinline] = ACTIONS(2024), + [anon_sym_thread_local] = ACTIONS(2024), + [anon_sym___thread] = ACTIONS(2024), + [anon_sym_const] = ACTIONS(2024), + [anon_sym_constexpr] = ACTIONS(2024), + [anon_sym_volatile] = ACTIONS(2024), + [anon_sym_restrict] = ACTIONS(2024), + [anon_sym___restrict__] = ACTIONS(2024), + [anon_sym__Atomic] = ACTIONS(2024), + [anon_sym__Noreturn] = ACTIONS(2024), + [anon_sym_noreturn] = ACTIONS(2024), + [anon_sym__Nonnull] = ACTIONS(2024), + [anon_sym_mutable] = ACTIONS(2024), + [anon_sym_constinit] = ACTIONS(2024), + [anon_sym_consteval] = ACTIONS(2024), + [anon_sym_alignas] = ACTIONS(2024), + [anon_sym__Alignas] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2024), + [anon_sym_enum] = ACTIONS(2024), + [anon_sym_class] = ACTIONS(2024), + [anon_sym_struct] = ACTIONS(2024), + [anon_sym_union] = ACTIONS(2024), + [anon_sym_if] = ACTIONS(2024), + [anon_sym_else] = ACTIONS(2024), + [anon_sym_switch] = ACTIONS(2024), + [anon_sym_case] = ACTIONS(2024), + [anon_sym_default] = ACTIONS(2024), + [anon_sym_while] = ACTIONS(2024), + [anon_sym_do] = ACTIONS(2024), + [anon_sym_for] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2024), + [anon_sym_break] = ACTIONS(2024), + [anon_sym_continue] = ACTIONS(2024), + [anon_sym_goto] = ACTIONS(2024), + [anon_sym___try] = ACTIONS(2024), + [anon_sym___leave] = ACTIONS(2024), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_compl] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2024), + [anon_sym__Generic] = ACTIONS(2024), + [anon_sym_asm] = ACTIONS(2024), + [anon_sym___asm__] = ACTIONS(2024), + [anon_sym___asm] = ACTIONS(2024), + [sym_number_literal] = ACTIONS(2026), + [anon_sym_L_SQUOTE] = ACTIONS(2026), + [anon_sym_u_SQUOTE] = ACTIONS(2026), + [anon_sym_U_SQUOTE] = ACTIONS(2026), + [anon_sym_u8_SQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2026), + [anon_sym_L_DQUOTE] = ACTIONS(2026), + [anon_sym_u_DQUOTE] = ACTIONS(2026), + [anon_sym_U_DQUOTE] = ACTIONS(2026), + [anon_sym_u8_DQUOTE] = ACTIONS(2026), + [anon_sym_DQUOTE] = ACTIONS(2026), + [sym_true] = ACTIONS(2024), + [sym_false] = ACTIONS(2024), + [anon_sym_NULL] = ACTIONS(2024), + [anon_sym_nullptr] = ACTIONS(2024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2024), + [anon_sym_decltype] = ACTIONS(2024), + [anon_sym_explicit] = ACTIONS(2024), + [anon_sym_typename] = ACTIONS(2024), + [anon_sym_template] = ACTIONS(2024), + [anon_sym_operator] = ACTIONS(2024), + [anon_sym_try] = ACTIONS(2024), + [anon_sym_delete] = ACTIONS(2024), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_namespace] = ACTIONS(2024), + [anon_sym_using] = ACTIONS(2024), + [anon_sym_static_assert] = ACTIONS(2024), + [anon_sym_concept] = ACTIONS(2024), + [anon_sym_co_return] = ACTIONS(2024), + [anon_sym_co_yield] = ACTIONS(2024), + [anon_sym_R_DQUOTE] = ACTIONS(2026), + [anon_sym_LR_DQUOTE] = ACTIONS(2026), + [anon_sym_uR_DQUOTE] = ACTIONS(2026), + [anon_sym_UR_DQUOTE] = ACTIONS(2026), + [anon_sym_u8R_DQUOTE] = ACTIONS(2026), + [anon_sym_co_await] = ACTIONS(2024), + [anon_sym_new] = ACTIONS(2024), + [anon_sym_requires] = ACTIONS(2024), + [sym_this] = ACTIONS(2024), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_FORWARD] = ACTIONS(2024), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2024), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_PS_GET] = ACTIONS(2024), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2024), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2024), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2024), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2024), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2024), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2024), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2024), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2024), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2024), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2024), + [anon_sym_MOZ_COLD] = ACTIONS(2024), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2024), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2024), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2024), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2024), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2024), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2024), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2024), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2024), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2024), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2024), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2024), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2024), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2024), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2024), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2024), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2024), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2024), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2024), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2024), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2024), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_NONNULL] = ACTIONS(2024), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2024), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2024), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2024), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2024), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2024), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_NORETURN] = ACTIONS(2024), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2024), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2024), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2024), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2024), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2024), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2024), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2024), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2024), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2024), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2024), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2024), + [anon_sym_MOZ_RAII] = ACTIONS(2024), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2024), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2024), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2024), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2024), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2024), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2024), + }, + [STATE(333)] = { + [sym_identifier] = ACTIONS(1974), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1974), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1974), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1974), + [sym_preproc_directive] = ACTIONS(1974), + [anon_sym_LPAREN2] = ACTIONS(1976), + [anon_sym_BANG] = ACTIONS(1976), + [anon_sym_TILDE] = ACTIONS(1976), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP_AMP] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1974), + [anon_sym_virtual] = ACTIONS(1974), + [anon_sym_extern] = ACTIONS(1974), + [anon_sym___attribute__] = ACTIONS(1974), + [anon_sym___attribute] = ACTIONS(1974), + [anon_sym_COLON_COLON] = ACTIONS(1976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1974), + [anon_sym___based] = ACTIONS(1974), + [anon_sym___cdecl] = ACTIONS(1974), + [anon_sym___clrcall] = ACTIONS(1974), + [anon_sym___stdcall] = ACTIONS(1974), + [anon_sym___fastcall] = ACTIONS(1974), + [anon_sym___thiscall] = ACTIONS(1974), + [anon_sym___vectorcall] = ACTIONS(1974), + [anon_sym_LBRACE] = ACTIONS(1976), + [anon_sym_RBRACE] = ACTIONS(1976), + [anon_sym_signed] = ACTIONS(1974), + [anon_sym_unsigned] = ACTIONS(1974), + [anon_sym_long] = ACTIONS(1974), + [anon_sym_short] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_register] = ACTIONS(1974), + [anon_sym_inline] = ACTIONS(1974), + [anon_sym___inline] = ACTIONS(1974), + [anon_sym___inline__] = ACTIONS(1974), + [anon_sym___forceinline] = ACTIONS(1974), + [anon_sym_thread_local] = ACTIONS(1974), + [anon_sym___thread] = ACTIONS(1974), + [anon_sym_const] = ACTIONS(1974), + [anon_sym_constexpr] = ACTIONS(1974), + [anon_sym_volatile] = ACTIONS(1974), + [anon_sym_restrict] = ACTIONS(1974), + [anon_sym___restrict__] = ACTIONS(1974), + [anon_sym__Atomic] = ACTIONS(1974), + [anon_sym__Noreturn] = ACTIONS(1974), + [anon_sym_noreturn] = ACTIONS(1974), + [anon_sym__Nonnull] = ACTIONS(1974), + [anon_sym_mutable] = ACTIONS(1974), + [anon_sym_constinit] = ACTIONS(1974), + [anon_sym_consteval] = ACTIONS(1974), + [anon_sym_alignas] = ACTIONS(1974), + [anon_sym__Alignas] = ACTIONS(1974), + [sym_primitive_type] = ACTIONS(1974), + [anon_sym_enum] = ACTIONS(1974), + [anon_sym_class] = ACTIONS(1974), + [anon_sym_struct] = ACTIONS(1974), + [anon_sym_union] = ACTIONS(1974), + [anon_sym_if] = ACTIONS(1974), + [anon_sym_else] = ACTIONS(1974), + [anon_sym_switch] = ACTIONS(1974), + [anon_sym_case] = ACTIONS(1974), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1974), + [anon_sym_do] = ACTIONS(1974), + [anon_sym_for] = ACTIONS(1974), + [anon_sym_return] = ACTIONS(1974), + [anon_sym_break] = ACTIONS(1974), + [anon_sym_continue] = ACTIONS(1974), + [anon_sym_goto] = ACTIONS(1974), + [anon_sym___try] = ACTIONS(1974), + [anon_sym___leave] = ACTIONS(1974), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1976), + [anon_sym_PLUS_PLUS] = ACTIONS(1976), + [anon_sym_sizeof] = ACTIONS(1974), + [anon_sym___alignof__] = ACTIONS(1974), + [anon_sym___alignof] = ACTIONS(1974), + [anon_sym__alignof] = ACTIONS(1974), + [anon_sym_alignof] = ACTIONS(1974), + [anon_sym__Alignof] = ACTIONS(1974), + [anon_sym_offsetof] = ACTIONS(1974), + [anon_sym__Generic] = ACTIONS(1974), + [anon_sym_asm] = ACTIONS(1974), + [anon_sym___asm__] = ACTIONS(1974), + [anon_sym___asm] = ACTIONS(1974), + [sym_number_literal] = ACTIONS(1976), + [anon_sym_L_SQUOTE] = ACTIONS(1976), + [anon_sym_u_SQUOTE] = ACTIONS(1976), + [anon_sym_U_SQUOTE] = ACTIONS(1976), + [anon_sym_u8_SQUOTE] = ACTIONS(1976), + [anon_sym_SQUOTE] = ACTIONS(1976), + [anon_sym_L_DQUOTE] = ACTIONS(1976), + [anon_sym_u_DQUOTE] = ACTIONS(1976), + [anon_sym_U_DQUOTE] = ACTIONS(1976), + [anon_sym_u8_DQUOTE] = ACTIONS(1976), + [anon_sym_DQUOTE] = ACTIONS(1976), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1974), + [anon_sym_nullptr] = ACTIONS(1974), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1974), + [anon_sym_decltype] = ACTIONS(1974), + [anon_sym_explicit] = ACTIONS(1974), + [anon_sym_typename] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1974), + [anon_sym_operator] = ACTIONS(1974), + [anon_sym_try] = ACTIONS(1974), + [anon_sym_delete] = ACTIONS(1974), + [anon_sym_throw] = ACTIONS(1974), + [anon_sym_namespace] = ACTIONS(1974), + [anon_sym_using] = ACTIONS(1974), + [anon_sym_static_assert] = ACTIONS(1974), + [anon_sym_concept] = ACTIONS(1974), + [anon_sym_co_return] = ACTIONS(1974), + [anon_sym_co_yield] = ACTIONS(1974), + [anon_sym_R_DQUOTE] = ACTIONS(1976), + [anon_sym_LR_DQUOTE] = ACTIONS(1976), + [anon_sym_uR_DQUOTE] = ACTIONS(1976), + [anon_sym_UR_DQUOTE] = ACTIONS(1976), + [anon_sym_u8R_DQUOTE] = ACTIONS(1976), + [anon_sym_co_await] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1974), + [anon_sym_requires] = ACTIONS(1974), + [sym_this] = ACTIONS(1974), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_FORWARD] = ACTIONS(1974), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1974), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_PS_GET] = ACTIONS(1974), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1974), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1974), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1974), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1974), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1974), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1974), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1974), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1974), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1974), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1974), + [anon_sym_MOZ_COLD] = ACTIONS(1974), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1974), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1974), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1974), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1974), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1974), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1974), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1974), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1974), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1974), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1974), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1974), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1974), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1974), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1974), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1974), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1974), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1974), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1974), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1974), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1974), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_NONNULL] = ACTIONS(1974), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1974), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1974), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1974), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1974), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1974), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_NORETURN] = ACTIONS(1974), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1974), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1974), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1974), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1974), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1974), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1974), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1974), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1974), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1974), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1974), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1974), + [anon_sym_MOZ_RAII] = ACTIONS(1974), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1974), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1974), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1974), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1974), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1974), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1974), + }, + [STATE(334)] = { + [sym_identifier] = ACTIONS(1970), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1970), + [sym_preproc_directive] = ACTIONS(1970), + [anon_sym_LPAREN2] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1970), + [anon_sym_PLUS] = ACTIONS(1970), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym___extension__] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1970), + [anon_sym_virtual] = ACTIONS(1970), + [anon_sym_extern] = ACTIONS(1970), + [anon_sym___attribute__] = ACTIONS(1970), + [anon_sym___attribute] = ACTIONS(1970), + [anon_sym_COLON_COLON] = ACTIONS(1972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1970), + [anon_sym___based] = ACTIONS(1970), + [anon_sym___cdecl] = ACTIONS(1970), + [anon_sym___clrcall] = ACTIONS(1970), + [anon_sym___stdcall] = ACTIONS(1970), + [anon_sym___fastcall] = ACTIONS(1970), + [anon_sym___thiscall] = ACTIONS(1970), + [anon_sym___vectorcall] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1970), + [anon_sym_unsigned] = ACTIONS(1970), + [anon_sym_long] = ACTIONS(1970), + [anon_sym_short] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1970), + [anon_sym_register] = ACTIONS(1970), + [anon_sym_inline] = ACTIONS(1970), + [anon_sym___inline] = ACTIONS(1970), + [anon_sym___inline__] = ACTIONS(1970), + [anon_sym___forceinline] = ACTIONS(1970), + [anon_sym_thread_local] = ACTIONS(1970), + [anon_sym___thread] = ACTIONS(1970), + [anon_sym_const] = ACTIONS(1970), + [anon_sym_constexpr] = ACTIONS(1970), + [anon_sym_volatile] = ACTIONS(1970), + [anon_sym_restrict] = ACTIONS(1970), + [anon_sym___restrict__] = ACTIONS(1970), + [anon_sym__Atomic] = ACTIONS(1970), + [anon_sym__Noreturn] = ACTIONS(1970), + [anon_sym_noreturn] = ACTIONS(1970), + [anon_sym__Nonnull] = ACTIONS(1970), + [anon_sym_mutable] = ACTIONS(1970), + [anon_sym_constinit] = ACTIONS(1970), + [anon_sym_consteval] = ACTIONS(1970), + [anon_sym_alignas] = ACTIONS(1970), + [anon_sym__Alignas] = ACTIONS(1970), + [sym_primitive_type] = ACTIONS(1970), + [anon_sym_enum] = ACTIONS(1970), + [anon_sym_class] = ACTIONS(1970), + [anon_sym_struct] = ACTIONS(1970), + [anon_sym_union] = ACTIONS(1970), + [anon_sym_if] = ACTIONS(1970), + [anon_sym_else] = ACTIONS(1970), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1970), + [anon_sym_default] = ACTIONS(1970), + [anon_sym_while] = ACTIONS(1970), + [anon_sym_do] = ACTIONS(1970), + [anon_sym_for] = ACTIONS(1970), + [anon_sym_return] = ACTIONS(1970), + [anon_sym_break] = ACTIONS(1970), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1970), + [anon_sym___try] = ACTIONS(1970), + [anon_sym___leave] = ACTIONS(1970), + [anon_sym_not] = ACTIONS(1970), + [anon_sym_compl] = ACTIONS(1970), + [anon_sym_DASH_DASH] = ACTIONS(1972), + [anon_sym_PLUS_PLUS] = ACTIONS(1972), + [anon_sym_sizeof] = ACTIONS(1970), + [anon_sym___alignof__] = ACTIONS(1970), + [anon_sym___alignof] = ACTIONS(1970), + [anon_sym__alignof] = ACTIONS(1970), + [anon_sym_alignof] = ACTIONS(1970), + [anon_sym__Alignof] = ACTIONS(1970), + [anon_sym_offsetof] = ACTIONS(1970), + [anon_sym__Generic] = ACTIONS(1970), + [anon_sym_asm] = ACTIONS(1970), + [anon_sym___asm__] = ACTIONS(1970), + [anon_sym___asm] = ACTIONS(1970), + [sym_number_literal] = ACTIONS(1972), + [anon_sym_L_SQUOTE] = ACTIONS(1972), + [anon_sym_u_SQUOTE] = ACTIONS(1972), + [anon_sym_U_SQUOTE] = ACTIONS(1972), + [anon_sym_u8_SQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_L_DQUOTE] = ACTIONS(1972), + [anon_sym_u_DQUOTE] = ACTIONS(1972), + [anon_sym_U_DQUOTE] = ACTIONS(1972), + [anon_sym_u8_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), + [sym_true] = ACTIONS(1970), + [sym_false] = ACTIONS(1970), + [anon_sym_NULL] = ACTIONS(1970), + [anon_sym_nullptr] = ACTIONS(1970), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1970), + [anon_sym_decltype] = ACTIONS(1970), + [anon_sym_explicit] = ACTIONS(1970), + [anon_sym_typename] = ACTIONS(1970), + [anon_sym_template] = ACTIONS(1970), + [anon_sym_operator] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1970), + [anon_sym_delete] = ACTIONS(1970), + [anon_sym_throw] = ACTIONS(1970), + [anon_sym_namespace] = ACTIONS(1970), + [anon_sym_using] = ACTIONS(1970), + [anon_sym_static_assert] = ACTIONS(1970), + [anon_sym_concept] = ACTIONS(1970), + [anon_sym_co_return] = ACTIONS(1970), + [anon_sym_co_yield] = ACTIONS(1970), + [anon_sym_R_DQUOTE] = ACTIONS(1972), + [anon_sym_LR_DQUOTE] = ACTIONS(1972), + [anon_sym_uR_DQUOTE] = ACTIONS(1972), + [anon_sym_UR_DQUOTE] = ACTIONS(1972), + [anon_sym_u8R_DQUOTE] = ACTIONS(1972), + [anon_sym_co_await] = ACTIONS(1970), + [anon_sym_new] = ACTIONS(1970), + [anon_sym_requires] = ACTIONS(1970), + [sym_this] = ACTIONS(1970), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_FORWARD] = ACTIONS(1970), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1970), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_PS_GET] = ACTIONS(1970), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1970), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1970), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1970), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1970), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1970), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1970), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1970), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1970), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1970), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1970), + [anon_sym_MOZ_COLD] = ACTIONS(1970), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1970), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1970), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1970), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1970), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1970), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1970), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1970), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1970), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1970), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1970), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1970), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1970), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1970), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1970), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1970), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1970), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1970), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1970), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1970), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1970), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_NONNULL] = ACTIONS(1970), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1970), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1970), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1970), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1970), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1970), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_NORETURN] = ACTIONS(1970), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1970), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1970), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1970), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1970), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1970), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1970), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1970), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1970), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1970), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1970), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1970), + [anon_sym_MOZ_RAII] = ACTIONS(1970), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1970), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1970), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1970), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1970), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1970), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1970), + }, + [STATE(335)] = { + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2028), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token2] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [sym_preproc_directive] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym___extension__] = ACTIONS(2028), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_virtual] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym_COLON_COLON] = ACTIONS(2030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2030), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___based] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [anon_sym___inline] = ACTIONS(2028), + [anon_sym___inline__] = ACTIONS(2028), + [anon_sym___forceinline] = ACTIONS(2028), + [anon_sym_thread_local] = ACTIONS(2028), + [anon_sym___thread] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_constexpr] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym___restrict__] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym__Noreturn] = ACTIONS(2028), + [anon_sym_noreturn] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym_mutable] = ACTIONS(2028), + [anon_sym_constinit] = ACTIONS(2028), + [anon_sym_consteval] = ACTIONS(2028), + [anon_sym_alignas] = ACTIONS(2028), + [anon_sym__Alignas] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_class] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_else] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym___try] = ACTIONS(2028), + [anon_sym___leave] = ACTIONS(2028), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [anon_sym___alignof__] = ACTIONS(2028), + [anon_sym___alignof] = ACTIONS(2028), + [anon_sym__alignof] = ACTIONS(2028), + [anon_sym_alignof] = ACTIONS(2028), + [anon_sym__Alignof] = ACTIONS(2028), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2028), + [anon_sym___asm__] = ACTIONS(2028), + [anon_sym___asm] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [anon_sym_NULL] = ACTIONS(2028), + [anon_sym_nullptr] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2028), + [anon_sym_decltype] = ACTIONS(2028), + [anon_sym_explicit] = ACTIONS(2028), + [anon_sym_typename] = ACTIONS(2028), + [anon_sym_template] = ACTIONS(2028), + [anon_sym_operator] = ACTIONS(2028), + [anon_sym_try] = ACTIONS(2028), + [anon_sym_delete] = ACTIONS(2028), + [anon_sym_throw] = ACTIONS(2028), + [anon_sym_namespace] = ACTIONS(2028), + [anon_sym_using] = ACTIONS(2028), + [anon_sym_static_assert] = ACTIONS(2028), + [anon_sym_concept] = ACTIONS(2028), + [anon_sym_co_return] = ACTIONS(2028), + [anon_sym_co_yield] = ACTIONS(2028), + [anon_sym_R_DQUOTE] = ACTIONS(2030), + [anon_sym_LR_DQUOTE] = ACTIONS(2030), + [anon_sym_uR_DQUOTE] = ACTIONS(2030), + [anon_sym_UR_DQUOTE] = ACTIONS(2030), + [anon_sym_u8R_DQUOTE] = ACTIONS(2030), + [anon_sym_co_await] = ACTIONS(2028), + [anon_sym_new] = ACTIONS(2028), + [anon_sym_requires] = ACTIONS(2028), + [sym_this] = ACTIONS(2028), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_FORWARD] = ACTIONS(2028), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_PS_GET] = ACTIONS(2028), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2028), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2028), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2028), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2028), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2028), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2028), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2028), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2028), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2028), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2028), + [anon_sym_MOZ_COLD] = ACTIONS(2028), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2028), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2028), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2028), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2028), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2028), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2028), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2028), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2028), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2028), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2028), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2028), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2028), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2028), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2028), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2028), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2028), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2028), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2028), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2028), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2028), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_NONNULL] = ACTIONS(2028), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2028), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2028), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2028), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2028), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2028), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_NORETURN] = ACTIONS(2028), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2028), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2028), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2028), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2028), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2028), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2028), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2028), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2028), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2028), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2028), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2028), + [anon_sym_MOZ_RAII] = ACTIONS(2028), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2028), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2028), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2028), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2028), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2028), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2028), + }, + [STATE(336)] = { + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2032), + [aux_sym_preproc_def_token1] = ACTIONS(2032), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_if_token2] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_AMP_AMP] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_virtual] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2034), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___based] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_LBRACK] = ACTIONS(2032), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [anon_sym___inline] = ACTIONS(2032), + [anon_sym___inline__] = ACTIONS(2032), + [anon_sym___forceinline] = ACTIONS(2032), + [anon_sym_thread_local] = ACTIONS(2032), + [anon_sym___thread] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_constexpr] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym___restrict__] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym__Noreturn] = ACTIONS(2032), + [anon_sym_noreturn] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym_mutable] = ACTIONS(2032), + [anon_sym_constinit] = ACTIONS(2032), + [anon_sym_consteval] = ACTIONS(2032), + [anon_sym_alignas] = ACTIONS(2032), + [anon_sym__Alignas] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_class] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_else] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym___try] = ACTIONS(2032), + [anon_sym___leave] = ACTIONS(2032), + [anon_sym_not] = ACTIONS(2032), + [anon_sym_compl] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [anon_sym___alignof__] = ACTIONS(2032), + [anon_sym___alignof] = ACTIONS(2032), + [anon_sym__alignof] = ACTIONS(2032), + [anon_sym_alignof] = ACTIONS(2032), + [anon_sym__Alignof] = ACTIONS(2032), + [anon_sym_offsetof] = ACTIONS(2032), + [anon_sym__Generic] = ACTIONS(2032), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [anon_sym___asm] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [anon_sym_NULL] = ACTIONS(2032), + [anon_sym_nullptr] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2032), + [anon_sym_decltype] = ACTIONS(2032), + [anon_sym_explicit] = ACTIONS(2032), + [anon_sym_typename] = ACTIONS(2032), + [anon_sym_template] = ACTIONS(2032), + [anon_sym_operator] = ACTIONS(2032), + [anon_sym_try] = ACTIONS(2032), + [anon_sym_delete] = ACTIONS(2032), + [anon_sym_throw] = ACTIONS(2032), + [anon_sym_namespace] = ACTIONS(2032), + [anon_sym_using] = ACTIONS(2032), + [anon_sym_static_assert] = ACTIONS(2032), + [anon_sym_concept] = ACTIONS(2032), + [anon_sym_co_return] = ACTIONS(2032), + [anon_sym_co_yield] = ACTIONS(2032), + [anon_sym_R_DQUOTE] = ACTIONS(2034), + [anon_sym_LR_DQUOTE] = ACTIONS(2034), + [anon_sym_uR_DQUOTE] = ACTIONS(2034), + [anon_sym_UR_DQUOTE] = ACTIONS(2034), + [anon_sym_u8R_DQUOTE] = ACTIONS(2034), + [anon_sym_co_await] = ACTIONS(2032), + [anon_sym_new] = ACTIONS(2032), + [anon_sym_requires] = ACTIONS(2032), + [sym_this] = ACTIONS(2032), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_FORWARD] = ACTIONS(2032), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_PS_GET] = ACTIONS(2032), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2032), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2032), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2032), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2032), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2032), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2032), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2032), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2032), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2032), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2032), + [anon_sym_MOZ_COLD] = ACTIONS(2032), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2032), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2032), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2032), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2032), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2032), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2032), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2032), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2032), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2032), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2032), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2032), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2032), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2032), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2032), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2032), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2032), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2032), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2032), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2032), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2032), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_NONNULL] = ACTIONS(2032), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2032), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2032), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2032), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2032), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2032), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_NORETURN] = ACTIONS(2032), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2032), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2032), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2032), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2032), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2032), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2032), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2032), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2032), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2032), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2032), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2032), + [anon_sym_MOZ_RAII] = ACTIONS(2032), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2032), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2032), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2032), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2032), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2032), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2032), + }, + [STATE(337)] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2036), + [aux_sym_preproc_def_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [sym_preproc_directive] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_AMP_AMP] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym___extension__] = ACTIONS(2036), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_virtual] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym_COLON_COLON] = ACTIONS(2038), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2038), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___based] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [anon_sym___inline] = ACTIONS(2036), + [anon_sym___inline__] = ACTIONS(2036), + [anon_sym___forceinline] = ACTIONS(2036), + [anon_sym_thread_local] = ACTIONS(2036), + [anon_sym___thread] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_constexpr] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym___restrict__] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym__Noreturn] = ACTIONS(2036), + [anon_sym_noreturn] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym_mutable] = ACTIONS(2036), + [anon_sym_constinit] = ACTIONS(2036), + [anon_sym_consteval] = ACTIONS(2036), + [anon_sym_alignas] = ACTIONS(2036), + [anon_sym__Alignas] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_class] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_else] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym___try] = ACTIONS(2036), + [anon_sym___leave] = ACTIONS(2036), + [anon_sym_not] = ACTIONS(2036), + [anon_sym_compl] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [anon_sym___alignof__] = ACTIONS(2036), + [anon_sym___alignof] = ACTIONS(2036), + [anon_sym__alignof] = ACTIONS(2036), + [anon_sym_alignof] = ACTIONS(2036), + [anon_sym__Alignof] = ACTIONS(2036), + [anon_sym_offsetof] = ACTIONS(2036), + [anon_sym__Generic] = ACTIONS(2036), + [anon_sym_asm] = ACTIONS(2036), + [anon_sym___asm__] = ACTIONS(2036), + [anon_sym___asm] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [anon_sym_NULL] = ACTIONS(2036), + [anon_sym_nullptr] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2036), + [anon_sym_decltype] = ACTIONS(2036), + [anon_sym_explicit] = ACTIONS(2036), + [anon_sym_typename] = ACTIONS(2036), + [anon_sym_template] = ACTIONS(2036), + [anon_sym_operator] = ACTIONS(2036), + [anon_sym_try] = ACTIONS(2036), + [anon_sym_delete] = ACTIONS(2036), + [anon_sym_throw] = ACTIONS(2036), + [anon_sym_namespace] = ACTIONS(2036), + [anon_sym_using] = ACTIONS(2036), + [anon_sym_static_assert] = ACTIONS(2036), + [anon_sym_concept] = ACTIONS(2036), + [anon_sym_co_return] = ACTIONS(2036), + [anon_sym_co_yield] = ACTIONS(2036), + [anon_sym_R_DQUOTE] = ACTIONS(2038), + [anon_sym_LR_DQUOTE] = ACTIONS(2038), + [anon_sym_uR_DQUOTE] = ACTIONS(2038), + [anon_sym_UR_DQUOTE] = ACTIONS(2038), + [anon_sym_u8R_DQUOTE] = ACTIONS(2038), + [anon_sym_co_await] = ACTIONS(2036), + [anon_sym_new] = ACTIONS(2036), + [anon_sym_requires] = ACTIONS(2036), + [sym_this] = ACTIONS(2036), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_FORWARD] = ACTIONS(2036), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_PS_GET] = ACTIONS(2036), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2036), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2036), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2036), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2036), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2036), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2036), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2036), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2036), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2036), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2036), + [anon_sym_MOZ_COLD] = ACTIONS(2036), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2036), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2036), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2036), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2036), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2036), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2036), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2036), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2036), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2036), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2036), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2036), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2036), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2036), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2036), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2036), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2036), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2036), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2036), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2036), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2036), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_NONNULL] = ACTIONS(2036), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2036), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2036), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2036), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2036), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2036), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_NORETURN] = ACTIONS(2036), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2036), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2036), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2036), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2036), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2036), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2036), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2036), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2036), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2036), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2036), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2036), + [anon_sym_MOZ_RAII] = ACTIONS(2036), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2036), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2036), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2036), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2036), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2036), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2036), + }, + [STATE(338)] = { + [sym_identifier] = ACTIONS(2040), + [aux_sym_preproc_include_token1] = ACTIONS(2040), + [aux_sym_preproc_def_token1] = ACTIONS(2040), + [aux_sym_preproc_if_token1] = ACTIONS(2040), + [aux_sym_preproc_if_token2] = ACTIONS(2040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2040), + [sym_preproc_directive] = ACTIONS(2040), + [anon_sym_LPAREN2] = ACTIONS(2042), + [anon_sym_BANG] = ACTIONS(2042), + [anon_sym_TILDE] = ACTIONS(2042), + [anon_sym_DASH] = ACTIONS(2040), + [anon_sym_PLUS] = ACTIONS(2040), + [anon_sym_STAR] = ACTIONS(2042), + [anon_sym_AMP_AMP] = ACTIONS(2042), + [anon_sym_AMP] = ACTIONS(2040), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym___extension__] = ACTIONS(2040), + [anon_sym_typedef] = ACTIONS(2040), + [anon_sym_virtual] = ACTIONS(2040), + [anon_sym_extern] = ACTIONS(2040), + [anon_sym___attribute__] = ACTIONS(2040), + [anon_sym___attribute] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(2042), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2042), + [anon_sym___declspec] = ACTIONS(2040), + [anon_sym___based] = ACTIONS(2040), + [anon_sym___cdecl] = ACTIONS(2040), + [anon_sym___clrcall] = ACTIONS(2040), + [anon_sym___stdcall] = ACTIONS(2040), + [anon_sym___fastcall] = ACTIONS(2040), + [anon_sym___thiscall] = ACTIONS(2040), + [anon_sym___vectorcall] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2042), + [anon_sym_signed] = ACTIONS(2040), + [anon_sym_unsigned] = ACTIONS(2040), + [anon_sym_long] = ACTIONS(2040), + [anon_sym_short] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(2040), + [anon_sym_static] = ACTIONS(2040), + [anon_sym_register] = ACTIONS(2040), + [anon_sym_inline] = ACTIONS(2040), + [anon_sym___inline] = ACTIONS(2040), + [anon_sym___inline__] = ACTIONS(2040), + [anon_sym___forceinline] = ACTIONS(2040), + [anon_sym_thread_local] = ACTIONS(2040), + [anon_sym___thread] = ACTIONS(2040), + [anon_sym_const] = ACTIONS(2040), + [anon_sym_constexpr] = ACTIONS(2040), + [anon_sym_volatile] = ACTIONS(2040), + [anon_sym_restrict] = ACTIONS(2040), + [anon_sym___restrict__] = ACTIONS(2040), + [anon_sym__Atomic] = ACTIONS(2040), + [anon_sym__Noreturn] = ACTIONS(2040), + [anon_sym_noreturn] = ACTIONS(2040), + [anon_sym__Nonnull] = ACTIONS(2040), + [anon_sym_mutable] = ACTIONS(2040), + [anon_sym_constinit] = ACTIONS(2040), + [anon_sym_consteval] = ACTIONS(2040), + [anon_sym_alignas] = ACTIONS(2040), + [anon_sym__Alignas] = ACTIONS(2040), + [sym_primitive_type] = ACTIONS(2040), + [anon_sym_enum] = ACTIONS(2040), + [anon_sym_class] = ACTIONS(2040), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2040), + [anon_sym_if] = ACTIONS(2040), + [anon_sym_else] = ACTIONS(2040), + [anon_sym_switch] = ACTIONS(2040), + [anon_sym_case] = ACTIONS(2040), + [anon_sym_default] = ACTIONS(2040), + [anon_sym_while] = ACTIONS(2040), + [anon_sym_do] = ACTIONS(2040), + [anon_sym_for] = ACTIONS(2040), + [anon_sym_return] = ACTIONS(2040), + [anon_sym_break] = ACTIONS(2040), + [anon_sym_continue] = ACTIONS(2040), + [anon_sym_goto] = ACTIONS(2040), + [anon_sym___try] = ACTIONS(2040), + [anon_sym___leave] = ACTIONS(2040), + [anon_sym_not] = ACTIONS(2040), + [anon_sym_compl] = ACTIONS(2040), + [anon_sym_DASH_DASH] = ACTIONS(2042), + [anon_sym_PLUS_PLUS] = ACTIONS(2042), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2040), + [anon_sym___alignof] = ACTIONS(2040), + [anon_sym__alignof] = ACTIONS(2040), + [anon_sym_alignof] = ACTIONS(2040), + [anon_sym__Alignof] = ACTIONS(2040), + [anon_sym_offsetof] = ACTIONS(2040), + [anon_sym__Generic] = ACTIONS(2040), + [anon_sym_asm] = ACTIONS(2040), + [anon_sym___asm__] = ACTIONS(2040), + [anon_sym___asm] = ACTIONS(2040), + [sym_number_literal] = ACTIONS(2042), + [anon_sym_L_SQUOTE] = ACTIONS(2042), + [anon_sym_u_SQUOTE] = ACTIONS(2042), + [anon_sym_U_SQUOTE] = ACTIONS(2042), + [anon_sym_u8_SQUOTE] = ACTIONS(2042), + [anon_sym_SQUOTE] = ACTIONS(2042), + [anon_sym_L_DQUOTE] = ACTIONS(2042), + [anon_sym_u_DQUOTE] = ACTIONS(2042), + [anon_sym_U_DQUOTE] = ACTIONS(2042), + [anon_sym_u8_DQUOTE] = ACTIONS(2042), + [anon_sym_DQUOTE] = ACTIONS(2042), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2040), + [anon_sym_decltype] = ACTIONS(2040), + [anon_sym_explicit] = ACTIONS(2040), + [anon_sym_typename] = ACTIONS(2040), + [anon_sym_template] = ACTIONS(2040), + [anon_sym_operator] = ACTIONS(2040), + [anon_sym_try] = ACTIONS(2040), + [anon_sym_delete] = ACTIONS(2040), + [anon_sym_throw] = ACTIONS(2040), + [anon_sym_namespace] = ACTIONS(2040), + [anon_sym_using] = ACTIONS(2040), + [anon_sym_static_assert] = ACTIONS(2040), + [anon_sym_concept] = ACTIONS(2040), + [anon_sym_co_return] = ACTIONS(2040), + [anon_sym_co_yield] = ACTIONS(2040), + [anon_sym_R_DQUOTE] = ACTIONS(2042), + [anon_sym_LR_DQUOTE] = ACTIONS(2042), + [anon_sym_uR_DQUOTE] = ACTIONS(2042), + [anon_sym_UR_DQUOTE] = ACTIONS(2042), + [anon_sym_u8R_DQUOTE] = ACTIONS(2042), + [anon_sym_co_await] = ACTIONS(2040), + [anon_sym_new] = ACTIONS(2040), + [anon_sym_requires] = ACTIONS(2040), + [sym_this] = ACTIONS(2040), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_FORWARD] = ACTIONS(2040), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2040), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_PS_GET] = ACTIONS(2040), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2040), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2040), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2040), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2040), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2040), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2040), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2040), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2040), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2040), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2040), + [anon_sym_MOZ_COLD] = ACTIONS(2040), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2040), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2040), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2040), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2040), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2040), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2040), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2040), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2040), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2040), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2040), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2040), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2040), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2040), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2040), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2040), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2040), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2040), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2040), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2040), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2040), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_NONNULL] = ACTIONS(2040), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2040), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2040), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2040), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2040), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2040), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_NORETURN] = ACTIONS(2040), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2040), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2040), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2040), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2040), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2040), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2040), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2040), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2040), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2040), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2040), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2040), + [anon_sym_MOZ_RAII] = ACTIONS(2040), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2040), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2040), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2040), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2040), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2040), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2040), + }, + [STATE(339)] = { + [sym_identifier] = ACTIONS(2164), + [aux_sym_preproc_include_token1] = ACTIONS(2164), + [aux_sym_preproc_def_token1] = ACTIONS(2164), + [aux_sym_preproc_if_token1] = ACTIONS(2164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2164), + [sym_preproc_directive] = ACTIONS(2164), + [anon_sym_LPAREN2] = ACTIONS(2166), + [anon_sym_BANG] = ACTIONS(2166), + [anon_sym_TILDE] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_PLUS] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2166), + [anon_sym_AMP_AMP] = ACTIONS(2166), + [anon_sym_AMP] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym___extension__] = ACTIONS(2164), + [anon_sym_typedef] = ACTIONS(2164), + [anon_sym_virtual] = ACTIONS(2164), + [anon_sym_extern] = ACTIONS(2164), + [anon_sym___attribute__] = ACTIONS(2164), + [anon_sym___attribute] = ACTIONS(2164), + [anon_sym_COLON_COLON] = ACTIONS(2166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2166), + [anon_sym___declspec] = ACTIONS(2164), + [anon_sym___based] = ACTIONS(2164), + [anon_sym___cdecl] = ACTIONS(2164), + [anon_sym___clrcall] = ACTIONS(2164), + [anon_sym___stdcall] = ACTIONS(2164), + [anon_sym___fastcall] = ACTIONS(2164), + [anon_sym___thiscall] = ACTIONS(2164), + [anon_sym___vectorcall] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_signed] = ACTIONS(2164), + [anon_sym_unsigned] = ACTIONS(2164), + [anon_sym_long] = ACTIONS(2164), + [anon_sym_short] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_static] = ACTIONS(2164), + [anon_sym_register] = ACTIONS(2164), + [anon_sym_inline] = ACTIONS(2164), + [anon_sym___inline] = ACTIONS(2164), + [anon_sym___inline__] = ACTIONS(2164), + [anon_sym___forceinline] = ACTIONS(2164), + [anon_sym_thread_local] = ACTIONS(2164), + [anon_sym___thread] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [anon_sym_constexpr] = ACTIONS(2164), + [anon_sym_volatile] = ACTIONS(2164), + [anon_sym_restrict] = ACTIONS(2164), + [anon_sym___restrict__] = ACTIONS(2164), + [anon_sym__Atomic] = ACTIONS(2164), + [anon_sym__Noreturn] = ACTIONS(2164), + [anon_sym_noreturn] = ACTIONS(2164), + [anon_sym__Nonnull] = ACTIONS(2164), + [anon_sym_mutable] = ACTIONS(2164), + [anon_sym_constinit] = ACTIONS(2164), + [anon_sym_consteval] = ACTIONS(2164), + [anon_sym_alignas] = ACTIONS(2164), + [anon_sym__Alignas] = ACTIONS(2164), + [sym_primitive_type] = ACTIONS(2164), + [anon_sym_enum] = ACTIONS(2164), + [anon_sym_class] = ACTIONS(2164), + [anon_sym_struct] = ACTIONS(2164), + [anon_sym_union] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_else] = ACTIONS(2164), + [anon_sym_switch] = ACTIONS(2164), + [anon_sym_case] = ACTIONS(2164), + [anon_sym_default] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_goto] = ACTIONS(2164), + [anon_sym___try] = ACTIONS(2164), + [anon_sym___leave] = ACTIONS(2164), + [anon_sym_not] = ACTIONS(2164), + [anon_sym_compl] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2166), + [anon_sym_sizeof] = ACTIONS(2164), + [anon_sym___alignof__] = ACTIONS(2164), + [anon_sym___alignof] = ACTIONS(2164), + [anon_sym__alignof] = ACTIONS(2164), + [anon_sym_alignof] = ACTIONS(2164), + [anon_sym__Alignof] = ACTIONS(2164), + [anon_sym_offsetof] = ACTIONS(2164), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2164), + [anon_sym___asm__] = ACTIONS(2164), + [anon_sym___asm] = ACTIONS(2164), + [sym_number_literal] = ACTIONS(2166), + [anon_sym_L_SQUOTE] = ACTIONS(2166), + [anon_sym_u_SQUOTE] = ACTIONS(2166), + [anon_sym_U_SQUOTE] = ACTIONS(2166), + [anon_sym_u8_SQUOTE] = ACTIONS(2166), + [anon_sym_SQUOTE] = ACTIONS(2166), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2164), + [sym_false] = ACTIONS(2164), + [anon_sym_NULL] = ACTIONS(2164), + [anon_sym_nullptr] = ACTIONS(2164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2164), + [anon_sym_decltype] = ACTIONS(2164), + [anon_sym_explicit] = ACTIONS(2164), + [anon_sym_typename] = ACTIONS(2164), + [anon_sym_template] = ACTIONS(2164), + [anon_sym_operator] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_delete] = ACTIONS(2164), + [anon_sym_throw] = ACTIONS(2164), + [anon_sym_namespace] = ACTIONS(2164), + [anon_sym_using] = ACTIONS(2164), + [anon_sym_static_assert] = ACTIONS(2164), + [anon_sym_concept] = ACTIONS(2164), + [anon_sym_co_return] = ACTIONS(2164), + [anon_sym_co_yield] = ACTIONS(2164), + [anon_sym_R_DQUOTE] = ACTIONS(2166), + [anon_sym_LR_DQUOTE] = ACTIONS(2166), + [anon_sym_uR_DQUOTE] = ACTIONS(2166), + [anon_sym_UR_DQUOTE] = ACTIONS(2166), + [anon_sym_u8R_DQUOTE] = ACTIONS(2166), + [anon_sym_co_await] = ACTIONS(2164), + [anon_sym_new] = ACTIONS(2164), + [anon_sym_requires] = ACTIONS(2164), + [sym_this] = ACTIONS(2164), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_FORWARD] = ACTIONS(2164), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2164), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_PS_GET] = ACTIONS(2164), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2164), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2164), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2164), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2164), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2164), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2164), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2164), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2164), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2164), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2164), + [anon_sym_MOZ_COLD] = ACTIONS(2164), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2164), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2164), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2164), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2164), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2164), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2164), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2164), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2164), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2164), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2164), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2164), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2164), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2164), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2164), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2164), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2164), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2164), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2164), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2164), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2164), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_NONNULL] = ACTIONS(2164), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2164), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2164), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2164), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2164), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2164), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_NORETURN] = ACTIONS(2164), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2164), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2164), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2164), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2164), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2164), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2164), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2164), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2164), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2164), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2164), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2164), + [anon_sym_MOZ_RAII] = ACTIONS(2164), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2164), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2164), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2164), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2164), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2164), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2164), + }, + [STATE(340)] = { + [sym_identifier] = ACTIONS(2048), + [aux_sym_preproc_include_token1] = ACTIONS(2048), + [aux_sym_preproc_def_token1] = ACTIONS(2048), + [aux_sym_preproc_if_token1] = ACTIONS(2048), + [aux_sym_preproc_if_token2] = ACTIONS(2048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2048), + [sym_preproc_directive] = ACTIONS(2048), + [anon_sym_LPAREN2] = ACTIONS(2050), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_TILDE] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2048), + [anon_sym_PLUS] = ACTIONS(2048), + [anon_sym_STAR] = ACTIONS(2050), + [anon_sym_AMP_AMP] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym___extension__] = ACTIONS(2048), + [anon_sym_typedef] = ACTIONS(2048), + [anon_sym_virtual] = ACTIONS(2048), + [anon_sym_extern] = ACTIONS(2048), + [anon_sym___attribute__] = ACTIONS(2048), + [anon_sym___attribute] = ACTIONS(2048), + [anon_sym_COLON_COLON] = ACTIONS(2050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2050), + [anon_sym___declspec] = ACTIONS(2048), + [anon_sym___based] = ACTIONS(2048), + [anon_sym___cdecl] = ACTIONS(2048), + [anon_sym___clrcall] = ACTIONS(2048), + [anon_sym___stdcall] = ACTIONS(2048), + [anon_sym___fastcall] = ACTIONS(2048), + [anon_sym___thiscall] = ACTIONS(2048), + [anon_sym___vectorcall] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2050), + [anon_sym_signed] = ACTIONS(2048), + [anon_sym_unsigned] = ACTIONS(2048), + [anon_sym_long] = ACTIONS(2048), + [anon_sym_short] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(2048), + [anon_sym_static] = ACTIONS(2048), + [anon_sym_register] = ACTIONS(2048), + [anon_sym_inline] = ACTIONS(2048), + [anon_sym___inline] = ACTIONS(2048), + [anon_sym___inline__] = ACTIONS(2048), + [anon_sym___forceinline] = ACTIONS(2048), + [anon_sym_thread_local] = ACTIONS(2048), + [anon_sym___thread] = ACTIONS(2048), + [anon_sym_const] = ACTIONS(2048), + [anon_sym_constexpr] = ACTIONS(2048), + [anon_sym_volatile] = ACTIONS(2048), + [anon_sym_restrict] = ACTIONS(2048), + [anon_sym___restrict__] = ACTIONS(2048), + [anon_sym__Atomic] = ACTIONS(2048), + [anon_sym__Noreturn] = ACTIONS(2048), + [anon_sym_noreturn] = ACTIONS(2048), + [anon_sym__Nonnull] = ACTIONS(2048), + [anon_sym_mutable] = ACTIONS(2048), + [anon_sym_constinit] = ACTIONS(2048), + [anon_sym_consteval] = ACTIONS(2048), + [anon_sym_alignas] = ACTIONS(2048), + [anon_sym__Alignas] = ACTIONS(2048), + [sym_primitive_type] = ACTIONS(2048), + [anon_sym_enum] = ACTIONS(2048), + [anon_sym_class] = ACTIONS(2048), + [anon_sym_struct] = ACTIONS(2048), + [anon_sym_union] = ACTIONS(2048), + [anon_sym_if] = ACTIONS(2048), + [anon_sym_else] = ACTIONS(2048), + [anon_sym_switch] = ACTIONS(2048), + [anon_sym_case] = ACTIONS(2048), + [anon_sym_default] = ACTIONS(2048), + [anon_sym_while] = ACTIONS(2048), + [anon_sym_do] = ACTIONS(2048), + [anon_sym_for] = ACTIONS(2048), + [anon_sym_return] = ACTIONS(2048), + [anon_sym_break] = ACTIONS(2048), + [anon_sym_continue] = ACTIONS(2048), + [anon_sym_goto] = ACTIONS(2048), + [anon_sym___try] = ACTIONS(2048), + [anon_sym___leave] = ACTIONS(2048), + [anon_sym_not] = ACTIONS(2048), + [anon_sym_compl] = ACTIONS(2048), + [anon_sym_DASH_DASH] = ACTIONS(2050), + [anon_sym_PLUS_PLUS] = ACTIONS(2050), + [anon_sym_sizeof] = ACTIONS(2048), + [anon_sym___alignof__] = ACTIONS(2048), + [anon_sym___alignof] = ACTIONS(2048), + [anon_sym__alignof] = ACTIONS(2048), + [anon_sym_alignof] = ACTIONS(2048), + [anon_sym__Alignof] = ACTIONS(2048), + [anon_sym_offsetof] = ACTIONS(2048), + [anon_sym__Generic] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2048), + [anon_sym___asm__] = ACTIONS(2048), + [anon_sym___asm] = ACTIONS(2048), + [sym_number_literal] = ACTIONS(2050), + [anon_sym_L_SQUOTE] = ACTIONS(2050), + [anon_sym_u_SQUOTE] = ACTIONS(2050), + [anon_sym_U_SQUOTE] = ACTIONS(2050), + [anon_sym_u8_SQUOTE] = ACTIONS(2050), + [anon_sym_SQUOTE] = ACTIONS(2050), + [anon_sym_L_DQUOTE] = ACTIONS(2050), + [anon_sym_u_DQUOTE] = ACTIONS(2050), + [anon_sym_U_DQUOTE] = ACTIONS(2050), + [anon_sym_u8_DQUOTE] = ACTIONS(2050), + [anon_sym_DQUOTE] = ACTIONS(2050), + [sym_true] = ACTIONS(2048), + [sym_false] = ACTIONS(2048), + [anon_sym_NULL] = ACTIONS(2048), + [anon_sym_nullptr] = ACTIONS(2048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2048), + [anon_sym_decltype] = ACTIONS(2048), + [anon_sym_explicit] = ACTIONS(2048), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_template] = ACTIONS(2048), + [anon_sym_operator] = ACTIONS(2048), + [anon_sym_try] = ACTIONS(2048), + [anon_sym_delete] = ACTIONS(2048), + [anon_sym_throw] = ACTIONS(2048), + [anon_sym_namespace] = ACTIONS(2048), + [anon_sym_using] = ACTIONS(2048), + [anon_sym_static_assert] = ACTIONS(2048), + [anon_sym_concept] = ACTIONS(2048), + [anon_sym_co_return] = ACTIONS(2048), + [anon_sym_co_yield] = ACTIONS(2048), + [anon_sym_R_DQUOTE] = ACTIONS(2050), + [anon_sym_LR_DQUOTE] = ACTIONS(2050), + [anon_sym_uR_DQUOTE] = ACTIONS(2050), + [anon_sym_UR_DQUOTE] = ACTIONS(2050), + [anon_sym_u8R_DQUOTE] = ACTIONS(2050), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2048), + [anon_sym_requires] = ACTIONS(2048), + [sym_this] = ACTIONS(2048), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_FORWARD] = ACTIONS(2048), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2048), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_PS_GET] = ACTIONS(2048), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2048), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2048), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2048), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2048), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2048), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2048), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2048), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2048), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2048), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2048), + [anon_sym_MOZ_COLD] = ACTIONS(2048), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2048), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2048), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2048), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2048), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2048), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2048), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2048), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2048), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2048), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2048), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2048), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2048), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2048), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2048), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2048), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2048), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2048), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2048), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2048), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2048), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_NONNULL] = ACTIONS(2048), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2048), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2048), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2048), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2048), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2048), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_NORETURN] = ACTIONS(2048), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2048), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2048), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2048), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2048), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2048), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2048), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2048), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2048), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2048), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2048), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2048), + [anon_sym_MOZ_RAII] = ACTIONS(2048), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2048), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2048), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2048), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2048), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2048), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2048), + }, + [STATE(341)] = { + [sym_identifier] = ACTIONS(2100), + [aux_sym_preproc_include_token1] = ACTIONS(2100), + [aux_sym_preproc_def_token1] = ACTIONS(2100), + [aux_sym_preproc_if_token1] = ACTIONS(2100), + [aux_sym_preproc_if_token2] = ACTIONS(2100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2100), + [sym_preproc_directive] = ACTIONS(2100), + [anon_sym_LPAREN2] = ACTIONS(2102), + [anon_sym_BANG] = ACTIONS(2102), + [anon_sym_TILDE] = ACTIONS(2102), + [anon_sym_DASH] = ACTIONS(2100), + [anon_sym_PLUS] = ACTIONS(2100), + [anon_sym_STAR] = ACTIONS(2102), + [anon_sym_AMP_AMP] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym___extension__] = ACTIONS(2100), + [anon_sym_typedef] = ACTIONS(2100), + [anon_sym_virtual] = ACTIONS(2100), + [anon_sym_extern] = ACTIONS(2100), + [anon_sym___attribute__] = ACTIONS(2100), + [anon_sym___attribute] = ACTIONS(2100), + [anon_sym_COLON_COLON] = ACTIONS(2102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2102), + [anon_sym___declspec] = ACTIONS(2100), + [anon_sym___based] = ACTIONS(2100), + [anon_sym___cdecl] = ACTIONS(2100), + [anon_sym___clrcall] = ACTIONS(2100), + [anon_sym___stdcall] = ACTIONS(2100), + [anon_sym___fastcall] = ACTIONS(2100), + [anon_sym___thiscall] = ACTIONS(2100), + [anon_sym___vectorcall] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_signed] = ACTIONS(2100), + [anon_sym_unsigned] = ACTIONS(2100), + [anon_sym_long] = ACTIONS(2100), + [anon_sym_short] = ACTIONS(2100), + [anon_sym_LBRACK] = ACTIONS(2100), + [anon_sym_static] = ACTIONS(2100), + [anon_sym_register] = ACTIONS(2100), + [anon_sym_inline] = ACTIONS(2100), + [anon_sym___inline] = ACTIONS(2100), + [anon_sym___inline__] = ACTIONS(2100), + [anon_sym___forceinline] = ACTIONS(2100), + [anon_sym_thread_local] = ACTIONS(2100), + [anon_sym___thread] = ACTIONS(2100), + [anon_sym_const] = ACTIONS(2100), + [anon_sym_constexpr] = ACTIONS(2100), + [anon_sym_volatile] = ACTIONS(2100), + [anon_sym_restrict] = ACTIONS(2100), + [anon_sym___restrict__] = ACTIONS(2100), + [anon_sym__Atomic] = ACTIONS(2100), + [anon_sym__Noreturn] = ACTIONS(2100), + [anon_sym_noreturn] = ACTIONS(2100), + [anon_sym__Nonnull] = ACTIONS(2100), + [anon_sym_mutable] = ACTIONS(2100), + [anon_sym_constinit] = ACTIONS(2100), + [anon_sym_consteval] = ACTIONS(2100), + [anon_sym_alignas] = ACTIONS(2100), + [anon_sym__Alignas] = ACTIONS(2100), + [sym_primitive_type] = ACTIONS(2100), + [anon_sym_enum] = ACTIONS(2100), + [anon_sym_class] = ACTIONS(2100), + [anon_sym_struct] = ACTIONS(2100), + [anon_sym_union] = ACTIONS(2100), + [anon_sym_if] = ACTIONS(2100), + [anon_sym_else] = ACTIONS(2100), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_case] = ACTIONS(2100), + [anon_sym_default] = ACTIONS(2100), + [anon_sym_while] = ACTIONS(2100), + [anon_sym_do] = ACTIONS(2100), + [anon_sym_for] = ACTIONS(2100), + [anon_sym_return] = ACTIONS(2100), + [anon_sym_break] = ACTIONS(2100), + [anon_sym_continue] = ACTIONS(2100), + [anon_sym_goto] = ACTIONS(2100), + [anon_sym___try] = ACTIONS(2100), + [anon_sym___leave] = ACTIONS(2100), + [anon_sym_not] = ACTIONS(2100), + [anon_sym_compl] = ACTIONS(2100), + [anon_sym_DASH_DASH] = ACTIONS(2102), + [anon_sym_PLUS_PLUS] = ACTIONS(2102), + [anon_sym_sizeof] = ACTIONS(2100), + [anon_sym___alignof__] = ACTIONS(2100), + [anon_sym___alignof] = ACTIONS(2100), + [anon_sym__alignof] = ACTIONS(2100), + [anon_sym_alignof] = ACTIONS(2100), + [anon_sym__Alignof] = ACTIONS(2100), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2100), + [anon_sym_asm] = ACTIONS(2100), + [anon_sym___asm__] = ACTIONS(2100), + [anon_sym___asm] = ACTIONS(2100), + [sym_number_literal] = ACTIONS(2102), + [anon_sym_L_SQUOTE] = ACTIONS(2102), + [anon_sym_u_SQUOTE] = ACTIONS(2102), + [anon_sym_U_SQUOTE] = ACTIONS(2102), + [anon_sym_u8_SQUOTE] = ACTIONS(2102), + [anon_sym_SQUOTE] = ACTIONS(2102), + [anon_sym_L_DQUOTE] = ACTIONS(2102), + [anon_sym_u_DQUOTE] = ACTIONS(2102), + [anon_sym_U_DQUOTE] = ACTIONS(2102), + [anon_sym_u8_DQUOTE] = ACTIONS(2102), + [anon_sym_DQUOTE] = ACTIONS(2102), + [sym_true] = ACTIONS(2100), + [sym_false] = ACTIONS(2100), + [anon_sym_NULL] = ACTIONS(2100), + [anon_sym_nullptr] = ACTIONS(2100), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2100), + [anon_sym_decltype] = ACTIONS(2100), + [anon_sym_explicit] = ACTIONS(2100), + [anon_sym_typename] = ACTIONS(2100), + [anon_sym_template] = ACTIONS(2100), + [anon_sym_operator] = ACTIONS(2100), + [anon_sym_try] = ACTIONS(2100), + [anon_sym_delete] = ACTIONS(2100), + [anon_sym_throw] = ACTIONS(2100), + [anon_sym_namespace] = ACTIONS(2100), + [anon_sym_using] = ACTIONS(2100), + [anon_sym_static_assert] = ACTIONS(2100), + [anon_sym_concept] = ACTIONS(2100), + [anon_sym_co_return] = ACTIONS(2100), + [anon_sym_co_yield] = ACTIONS(2100), + [anon_sym_R_DQUOTE] = ACTIONS(2102), + [anon_sym_LR_DQUOTE] = ACTIONS(2102), + [anon_sym_uR_DQUOTE] = ACTIONS(2102), + [anon_sym_UR_DQUOTE] = ACTIONS(2102), + [anon_sym_u8R_DQUOTE] = ACTIONS(2102), + [anon_sym_co_await] = ACTIONS(2100), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2100), + [sym_this] = ACTIONS(2100), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_FORWARD] = ACTIONS(2100), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2100), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_PS_GET] = ACTIONS(2100), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2100), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2100), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2100), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2100), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2100), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2100), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2100), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2100), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2100), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2100), + [anon_sym_MOZ_COLD] = ACTIONS(2100), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2100), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2100), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2100), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2100), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2100), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2100), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2100), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2100), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2100), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2100), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2100), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2100), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2100), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2100), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2100), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2100), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2100), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2100), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2100), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2100), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_NONNULL] = ACTIONS(2100), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2100), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2100), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2100), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2100), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2100), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_NORETURN] = ACTIONS(2100), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2100), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2100), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2100), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2100), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2100), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2100), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2100), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2100), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2100), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2100), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2100), + [anon_sym_MOZ_RAII] = ACTIONS(2100), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2100), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2100), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2100), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2100), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2100), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2100), + }, + [STATE(342)] = { + [sym_identifier] = ACTIONS(2104), + [aux_sym_preproc_include_token1] = ACTIONS(2104), + [aux_sym_preproc_def_token1] = ACTIONS(2104), + [aux_sym_preproc_if_token1] = ACTIONS(2104), + [aux_sym_preproc_if_token2] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2104), + [sym_preproc_directive] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_TILDE] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_AMP_AMP] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym___extension__] = ACTIONS(2104), + [anon_sym_typedef] = ACTIONS(2104), + [anon_sym_virtual] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2104), + [anon_sym___attribute__] = ACTIONS(2104), + [anon_sym___attribute] = ACTIONS(2104), + [anon_sym_COLON_COLON] = ACTIONS(2106), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2106), + [anon_sym___declspec] = ACTIONS(2104), + [anon_sym___based] = ACTIONS(2104), + [anon_sym___cdecl] = ACTIONS(2104), + [anon_sym___clrcall] = ACTIONS(2104), + [anon_sym___stdcall] = ACTIONS(2104), + [anon_sym___fastcall] = ACTIONS(2104), + [anon_sym___thiscall] = ACTIONS(2104), + [anon_sym___vectorcall] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_signed] = ACTIONS(2104), + [anon_sym_unsigned] = ACTIONS(2104), + [anon_sym_long] = ACTIONS(2104), + [anon_sym_short] = ACTIONS(2104), + [anon_sym_LBRACK] = ACTIONS(2104), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_register] = ACTIONS(2104), + [anon_sym_inline] = ACTIONS(2104), + [anon_sym___inline] = ACTIONS(2104), + [anon_sym___inline__] = ACTIONS(2104), + [anon_sym___forceinline] = ACTIONS(2104), + [anon_sym_thread_local] = ACTIONS(2104), + [anon_sym___thread] = ACTIONS(2104), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_constexpr] = ACTIONS(2104), + [anon_sym_volatile] = ACTIONS(2104), + [anon_sym_restrict] = ACTIONS(2104), + [anon_sym___restrict__] = ACTIONS(2104), + [anon_sym__Atomic] = ACTIONS(2104), + [anon_sym__Noreturn] = ACTIONS(2104), + [anon_sym_noreturn] = ACTIONS(2104), + [anon_sym__Nonnull] = ACTIONS(2104), + [anon_sym_mutable] = ACTIONS(2104), + [anon_sym_constinit] = ACTIONS(2104), + [anon_sym_consteval] = ACTIONS(2104), + [anon_sym_alignas] = ACTIONS(2104), + [anon_sym__Alignas] = ACTIONS(2104), + [sym_primitive_type] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2104), + [anon_sym_class] = ACTIONS(2104), + [anon_sym_struct] = ACTIONS(2104), + [anon_sym_union] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_else] = ACTIONS(2104), + [anon_sym_switch] = ACTIONS(2104), + [anon_sym_case] = ACTIONS(2104), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_while] = ACTIONS(2104), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_break] = ACTIONS(2104), + [anon_sym_continue] = ACTIONS(2104), + [anon_sym_goto] = ACTIONS(2104), + [anon_sym___try] = ACTIONS(2104), + [anon_sym___leave] = ACTIONS(2104), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_compl] = ACTIONS(2104), + [anon_sym_DASH_DASH] = ACTIONS(2106), + [anon_sym_PLUS_PLUS] = ACTIONS(2106), + [anon_sym_sizeof] = ACTIONS(2104), + [anon_sym___alignof__] = ACTIONS(2104), + [anon_sym___alignof] = ACTIONS(2104), + [anon_sym__alignof] = ACTIONS(2104), + [anon_sym_alignof] = ACTIONS(2104), + [anon_sym__Alignof] = ACTIONS(2104), + [anon_sym_offsetof] = ACTIONS(2104), + [anon_sym__Generic] = ACTIONS(2104), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [anon_sym___asm] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2106), + [anon_sym_u_SQUOTE] = ACTIONS(2106), + [anon_sym_U_SQUOTE] = ACTIONS(2106), + [anon_sym_u8_SQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_L_DQUOTE] = ACTIONS(2106), + [anon_sym_u_DQUOTE] = ACTIONS(2106), + [anon_sym_U_DQUOTE] = ACTIONS(2106), + [anon_sym_u8_DQUOTE] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2106), + [sym_true] = ACTIONS(2104), + [sym_false] = ACTIONS(2104), + [anon_sym_NULL] = ACTIONS(2104), + [anon_sym_nullptr] = ACTIONS(2104), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2104), + [anon_sym_decltype] = ACTIONS(2104), + [anon_sym_explicit] = ACTIONS(2104), + [anon_sym_typename] = ACTIONS(2104), + [anon_sym_template] = ACTIONS(2104), + [anon_sym_operator] = ACTIONS(2104), + [anon_sym_try] = ACTIONS(2104), + [anon_sym_delete] = ACTIONS(2104), + [anon_sym_throw] = ACTIONS(2104), + [anon_sym_namespace] = ACTIONS(2104), + [anon_sym_using] = ACTIONS(2104), + [anon_sym_static_assert] = ACTIONS(2104), + [anon_sym_concept] = ACTIONS(2104), + [anon_sym_co_return] = ACTIONS(2104), + [anon_sym_co_yield] = ACTIONS(2104), + [anon_sym_R_DQUOTE] = ACTIONS(2106), + [anon_sym_LR_DQUOTE] = ACTIONS(2106), + [anon_sym_uR_DQUOTE] = ACTIONS(2106), + [anon_sym_UR_DQUOTE] = ACTIONS(2106), + [anon_sym_u8R_DQUOTE] = ACTIONS(2106), + [anon_sym_co_await] = ACTIONS(2104), + [anon_sym_new] = ACTIONS(2104), + [anon_sym_requires] = ACTIONS(2104), + [sym_this] = ACTIONS(2104), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_FORWARD] = ACTIONS(2104), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_PS_GET] = ACTIONS(2104), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2104), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2104), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2104), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2104), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2104), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2104), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2104), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2104), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2104), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2104), + [anon_sym_MOZ_COLD] = ACTIONS(2104), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2104), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2104), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2104), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2104), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2104), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2104), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2104), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2104), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2104), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2104), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2104), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2104), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2104), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2104), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2104), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2104), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2104), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2104), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2104), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2104), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_NONNULL] = ACTIONS(2104), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2104), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2104), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2104), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2104), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2104), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_NORETURN] = ACTIONS(2104), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2104), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2104), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2104), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2104), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2104), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2104), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2104), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2104), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2104), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2104), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2104), + [anon_sym_MOZ_RAII] = ACTIONS(2104), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2104), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2104), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2104), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2104), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2104), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2104), + }, + [STATE(343)] = { + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2116), + [aux_sym_preproc_def_token1] = ACTIONS(2116), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_if_token2] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [sym_preproc_directive] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_AMP_AMP] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym___extension__] = ACTIONS(2116), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_virtual] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym_COLON_COLON] = ACTIONS(2118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2118), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___based] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2116), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [anon_sym___inline] = ACTIONS(2116), + [anon_sym___inline__] = ACTIONS(2116), + [anon_sym___forceinline] = ACTIONS(2116), + [anon_sym_thread_local] = ACTIONS(2116), + [anon_sym___thread] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_constexpr] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym___restrict__] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym__Noreturn] = ACTIONS(2116), + [anon_sym_noreturn] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym_mutable] = ACTIONS(2116), + [anon_sym_constinit] = ACTIONS(2116), + [anon_sym_consteval] = ACTIONS(2116), + [anon_sym_alignas] = ACTIONS(2116), + [anon_sym__Alignas] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym___try] = ACTIONS(2116), + [anon_sym___leave] = ACTIONS(2116), + [anon_sym_not] = ACTIONS(2116), + [anon_sym_compl] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [anon_sym___alignof__] = ACTIONS(2116), + [anon_sym___alignof] = ACTIONS(2116), + [anon_sym__alignof] = ACTIONS(2116), + [anon_sym_alignof] = ACTIONS(2116), + [anon_sym__Alignof] = ACTIONS(2116), + [anon_sym_offsetof] = ACTIONS(2116), + [anon_sym__Generic] = ACTIONS(2116), + [anon_sym_asm] = ACTIONS(2116), + [anon_sym___asm__] = ACTIONS(2116), + [anon_sym___asm] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [anon_sym_NULL] = ACTIONS(2116), + [anon_sym_nullptr] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2116), + [anon_sym_explicit] = ACTIONS(2116), + [anon_sym_typename] = ACTIONS(2116), + [anon_sym_template] = ACTIONS(2116), + [anon_sym_operator] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_using] = ACTIONS(2116), + [anon_sym_static_assert] = ACTIONS(2116), + [anon_sym_concept] = ACTIONS(2116), + [anon_sym_co_return] = ACTIONS(2116), + [anon_sym_co_yield] = ACTIONS(2116), + [anon_sym_R_DQUOTE] = ACTIONS(2118), + [anon_sym_LR_DQUOTE] = ACTIONS(2118), + [anon_sym_uR_DQUOTE] = ACTIONS(2118), + [anon_sym_UR_DQUOTE] = ACTIONS(2118), + [anon_sym_u8R_DQUOTE] = ACTIONS(2118), + [anon_sym_co_await] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_requires] = ACTIONS(2116), + [sym_this] = ACTIONS(2116), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_FORWARD] = ACTIONS(2116), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_PS_GET] = ACTIONS(2116), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2116), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2116), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2116), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2116), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2116), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2116), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2116), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2116), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2116), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2116), + [anon_sym_MOZ_COLD] = ACTIONS(2116), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2116), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2116), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2116), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2116), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2116), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2116), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2116), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2116), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2116), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2116), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2116), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2116), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2116), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2116), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2116), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2116), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2116), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2116), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2116), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2116), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_NONNULL] = ACTIONS(2116), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2116), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2116), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2116), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2116), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2116), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_NORETURN] = ACTIONS(2116), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2116), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2116), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2116), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2116), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2116), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2116), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2116), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2116), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2116), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2116), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2116), + [anon_sym_MOZ_RAII] = ACTIONS(2116), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2116), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2116), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2116), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2116), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2116), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2116), + }, + [STATE(344)] = { + [sym_identifier] = ACTIONS(2012), + [aux_sym_preproc_include_token1] = ACTIONS(2012), + [aux_sym_preproc_def_token1] = ACTIONS(2012), + [aux_sym_preproc_if_token1] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2012), + [sym_preproc_directive] = ACTIONS(2012), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_TILDE] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_PLUS] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym___extension__] = ACTIONS(2012), + [anon_sym_typedef] = ACTIONS(2012), + [anon_sym_virtual] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym___attribute__] = ACTIONS(2012), + [anon_sym___attribute] = ACTIONS(2012), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2014), + [anon_sym___declspec] = ACTIONS(2012), + [anon_sym___based] = ACTIONS(2012), + [anon_sym___cdecl] = ACTIONS(2012), + [anon_sym___clrcall] = ACTIONS(2012), + [anon_sym___stdcall] = ACTIONS(2012), + [anon_sym___fastcall] = ACTIONS(2012), + [anon_sym___thiscall] = ACTIONS(2012), + [anon_sym___vectorcall] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2014), + [anon_sym_signed] = ACTIONS(2012), + [anon_sym_unsigned] = ACTIONS(2012), + [anon_sym_long] = ACTIONS(2012), + [anon_sym_short] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2012), + [anon_sym_inline] = ACTIONS(2012), + [anon_sym___inline] = ACTIONS(2012), + [anon_sym___inline__] = ACTIONS(2012), + [anon_sym___forceinline] = ACTIONS(2012), + [anon_sym_thread_local] = ACTIONS(2012), + [anon_sym___thread] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_constexpr] = ACTIONS(2012), + [anon_sym_volatile] = ACTIONS(2012), + [anon_sym_restrict] = ACTIONS(2012), + [anon_sym___restrict__] = ACTIONS(2012), + [anon_sym__Atomic] = ACTIONS(2012), + [anon_sym__Noreturn] = ACTIONS(2012), + [anon_sym_noreturn] = ACTIONS(2012), + [anon_sym__Nonnull] = ACTIONS(2012), + [anon_sym_mutable] = ACTIONS(2012), + [anon_sym_constinit] = ACTIONS(2012), + [anon_sym_consteval] = ACTIONS(2012), + [anon_sym_alignas] = ACTIONS(2012), + [anon_sym__Alignas] = ACTIONS(2012), + [sym_primitive_type] = ACTIONS(2012), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(2012), + [anon_sym_struct] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_else] = ACTIONS(2012), + [anon_sym_switch] = ACTIONS(2012), + [anon_sym_case] = ACTIONS(2012), + [anon_sym_default] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_do] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_goto] = ACTIONS(2012), + [anon_sym___try] = ACTIONS(2012), + [anon_sym___leave] = ACTIONS(2012), + [anon_sym_not] = ACTIONS(2012), + [anon_sym_compl] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2014), + [anon_sym_PLUS_PLUS] = ACTIONS(2014), + [anon_sym_sizeof] = ACTIONS(2012), + [anon_sym___alignof__] = ACTIONS(2012), + [anon_sym___alignof] = ACTIONS(2012), + [anon_sym__alignof] = ACTIONS(2012), + [anon_sym_alignof] = ACTIONS(2012), + [anon_sym__Alignof] = ACTIONS(2012), + [anon_sym_offsetof] = ACTIONS(2012), + [anon_sym__Generic] = ACTIONS(2012), + [anon_sym_asm] = ACTIONS(2012), + [anon_sym___asm__] = ACTIONS(2012), + [anon_sym___asm] = ACTIONS(2012), + [sym_number_literal] = ACTIONS(2014), + [anon_sym_L_SQUOTE] = ACTIONS(2014), + [anon_sym_u_SQUOTE] = ACTIONS(2014), + [anon_sym_U_SQUOTE] = ACTIONS(2014), + [anon_sym_u8_SQUOTE] = ACTIONS(2014), + [anon_sym_SQUOTE] = ACTIONS(2014), + [anon_sym_L_DQUOTE] = ACTIONS(2014), + [anon_sym_u_DQUOTE] = ACTIONS(2014), + [anon_sym_U_DQUOTE] = ACTIONS(2014), + [anon_sym_u8_DQUOTE] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym_true] = ACTIONS(2012), + [sym_false] = ACTIONS(2012), + [anon_sym_NULL] = ACTIONS(2012), + [anon_sym_nullptr] = ACTIONS(2012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2012), + [anon_sym_decltype] = ACTIONS(2012), + [anon_sym_explicit] = ACTIONS(2012), + [anon_sym_typename] = ACTIONS(2012), + [anon_sym_template] = ACTIONS(2012), + [anon_sym_operator] = ACTIONS(2012), + [anon_sym_try] = ACTIONS(2012), + [anon_sym_delete] = ACTIONS(2012), + [anon_sym_throw] = ACTIONS(2012), + [anon_sym_namespace] = ACTIONS(2012), + [anon_sym_using] = ACTIONS(2012), + [anon_sym_static_assert] = ACTIONS(2012), + [anon_sym_concept] = ACTIONS(2012), + [anon_sym_co_return] = ACTIONS(2012), + [anon_sym_co_yield] = ACTIONS(2012), + [anon_sym_R_DQUOTE] = ACTIONS(2014), + [anon_sym_LR_DQUOTE] = ACTIONS(2014), + [anon_sym_uR_DQUOTE] = ACTIONS(2014), + [anon_sym_UR_DQUOTE] = ACTIONS(2014), + [anon_sym_u8R_DQUOTE] = ACTIONS(2014), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2012), + [anon_sym_requires] = ACTIONS(2012), + [sym_this] = ACTIONS(2012), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_FORWARD] = ACTIONS(2012), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_PS_GET] = ACTIONS(2012), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2012), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2012), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2012), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2012), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2012), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2012), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2012), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2012), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2012), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2012), + [anon_sym_MOZ_COLD] = ACTIONS(2012), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2012), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2012), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2012), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2012), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2012), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2012), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2012), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2012), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2012), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2012), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2012), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2012), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2012), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2012), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2012), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2012), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2012), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2012), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2012), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2012), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_NONNULL] = ACTIONS(2012), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2012), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2012), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2012), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2012), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2012), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_NORETURN] = ACTIONS(2012), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2012), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2012), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2012), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2012), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2012), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2012), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2012), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2012), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2012), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2012), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2012), + [anon_sym_MOZ_RAII] = ACTIONS(2012), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2012), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2012), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2012), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2012), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2012), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2012), + }, + [STATE(345)] = { + [sym_identifier] = ACTIONS(2124), + [aux_sym_preproc_include_token1] = ACTIONS(2124), + [aux_sym_preproc_def_token1] = ACTIONS(2124), + [aux_sym_preproc_if_token1] = ACTIONS(2124), + [aux_sym_preproc_if_token2] = ACTIONS(2124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2124), + [sym_preproc_directive] = ACTIONS(2124), + [anon_sym_LPAREN2] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_AMP_AMP] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym___extension__] = ACTIONS(2124), + [anon_sym_typedef] = ACTIONS(2124), + [anon_sym_virtual] = ACTIONS(2124), + [anon_sym_extern] = ACTIONS(2124), + [anon_sym___attribute__] = ACTIONS(2124), + [anon_sym___attribute] = ACTIONS(2124), + [anon_sym_COLON_COLON] = ACTIONS(2126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2126), + [anon_sym___declspec] = ACTIONS(2124), + [anon_sym___based] = ACTIONS(2124), + [anon_sym___cdecl] = ACTIONS(2124), + [anon_sym___clrcall] = ACTIONS(2124), + [anon_sym___stdcall] = ACTIONS(2124), + [anon_sym___fastcall] = ACTIONS(2124), + [anon_sym___thiscall] = ACTIONS(2124), + [anon_sym___vectorcall] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2126), + [anon_sym_signed] = ACTIONS(2124), + [anon_sym_unsigned] = ACTIONS(2124), + [anon_sym_long] = ACTIONS(2124), + [anon_sym_short] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_register] = ACTIONS(2124), + [anon_sym_inline] = ACTIONS(2124), + [anon_sym___inline] = ACTIONS(2124), + [anon_sym___inline__] = ACTIONS(2124), + [anon_sym___forceinline] = ACTIONS(2124), + [anon_sym_thread_local] = ACTIONS(2124), + [anon_sym___thread] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_constexpr] = ACTIONS(2124), + [anon_sym_volatile] = ACTIONS(2124), + [anon_sym_restrict] = ACTIONS(2124), + [anon_sym___restrict__] = ACTIONS(2124), + [anon_sym__Atomic] = ACTIONS(2124), + [anon_sym__Noreturn] = ACTIONS(2124), + [anon_sym_noreturn] = ACTIONS(2124), + [anon_sym__Nonnull] = ACTIONS(2124), + [anon_sym_mutable] = ACTIONS(2124), + [anon_sym_constinit] = ACTIONS(2124), + [anon_sym_consteval] = ACTIONS(2124), + [anon_sym_alignas] = ACTIONS(2124), + [anon_sym__Alignas] = ACTIONS(2124), + [sym_primitive_type] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), + [anon_sym_class] = ACTIONS(2124), + [anon_sym_struct] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_else] = ACTIONS(2124), + [anon_sym_switch] = ACTIONS(2124), + [anon_sym_case] = ACTIONS(2124), + [anon_sym_default] = ACTIONS(2124), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_goto] = ACTIONS(2124), + [anon_sym___try] = ACTIONS(2124), + [anon_sym___leave] = ACTIONS(2124), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_compl] = ACTIONS(2124), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_sizeof] = ACTIONS(2124), + [anon_sym___alignof__] = ACTIONS(2124), + [anon_sym___alignof] = ACTIONS(2124), + [anon_sym__alignof] = ACTIONS(2124), + [anon_sym_alignof] = ACTIONS(2124), + [anon_sym__Alignof] = ACTIONS(2124), + [anon_sym_offsetof] = ACTIONS(2124), + [anon_sym__Generic] = ACTIONS(2124), + [anon_sym_asm] = ACTIONS(2124), + [anon_sym___asm__] = ACTIONS(2124), + [anon_sym___asm] = ACTIONS(2124), + [sym_number_literal] = ACTIONS(2126), + [anon_sym_L_SQUOTE] = ACTIONS(2126), + [anon_sym_u_SQUOTE] = ACTIONS(2126), + [anon_sym_U_SQUOTE] = ACTIONS(2126), + [anon_sym_u8_SQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_L_DQUOTE] = ACTIONS(2126), + [anon_sym_u_DQUOTE] = ACTIONS(2126), + [anon_sym_U_DQUOTE] = ACTIONS(2126), + [anon_sym_u8_DQUOTE] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2126), + [sym_true] = ACTIONS(2124), + [sym_false] = ACTIONS(2124), + [anon_sym_NULL] = ACTIONS(2124), + [anon_sym_nullptr] = ACTIONS(2124), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2124), + [anon_sym_decltype] = ACTIONS(2124), + [anon_sym_explicit] = ACTIONS(2124), + [anon_sym_typename] = ACTIONS(2124), + [anon_sym_template] = ACTIONS(2124), + [anon_sym_operator] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2124), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_throw] = ACTIONS(2124), + [anon_sym_namespace] = ACTIONS(2124), + [anon_sym_using] = ACTIONS(2124), + [anon_sym_static_assert] = ACTIONS(2124), + [anon_sym_concept] = ACTIONS(2124), + [anon_sym_co_return] = ACTIONS(2124), + [anon_sym_co_yield] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2124), + [anon_sym_new] = ACTIONS(2124), + [anon_sym_requires] = ACTIONS(2124), + [sym_this] = ACTIONS(2124), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_FORWARD] = ACTIONS(2124), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2124), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_PS_GET] = ACTIONS(2124), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2124), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2124), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2124), + [anon_sym_MOZ_COLD] = ACTIONS(2124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_NONNULL] = ACTIONS(2124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_NORETURN] = ACTIONS(2124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2124), + [anon_sym_MOZ_RAII] = ACTIONS(2124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2124), + }, + [STATE(346)] = { + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2044), + [aux_sym_preproc_def_token1] = ACTIONS(2044), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_if_token2] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [sym_preproc_directive] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_AMP_AMP] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2044), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym___extension__] = ACTIONS(2044), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym_COLON_COLON] = ACTIONS(2046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2046), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___based] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [anon_sym_LBRACK] = ACTIONS(2044), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [anon_sym___inline] = ACTIONS(2044), + [anon_sym___inline__] = ACTIONS(2044), + [anon_sym___forceinline] = ACTIONS(2044), + [anon_sym_thread_local] = ACTIONS(2044), + [anon_sym___thread] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_constexpr] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym___restrict__] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym__Noreturn] = ACTIONS(2044), + [anon_sym_noreturn] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym_mutable] = ACTIONS(2044), + [anon_sym_constinit] = ACTIONS(2044), + [anon_sym_consteval] = ACTIONS(2044), + [anon_sym_alignas] = ACTIONS(2044), + [anon_sym__Alignas] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_class] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_else] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym___try] = ACTIONS(2044), + [anon_sym___leave] = ACTIONS(2044), + [anon_sym_not] = ACTIONS(2044), + [anon_sym_compl] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [anon_sym___alignof__] = ACTIONS(2044), + [anon_sym___alignof] = ACTIONS(2044), + [anon_sym__alignof] = ACTIONS(2044), + [anon_sym_alignof] = ACTIONS(2044), + [anon_sym__Alignof] = ACTIONS(2044), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2044), + [anon_sym_asm] = ACTIONS(2044), + [anon_sym___asm__] = ACTIONS(2044), + [anon_sym___asm] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [anon_sym_NULL] = ACTIONS(2044), + [anon_sym_nullptr] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2044), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_explicit] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(2044), + [anon_sym_operator] = ACTIONS(2044), + [anon_sym_try] = ACTIONS(2044), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_throw] = ACTIONS(2044), + [anon_sym_namespace] = ACTIONS(2044), + [anon_sym_using] = ACTIONS(2044), + [anon_sym_static_assert] = ACTIONS(2044), + [anon_sym_concept] = ACTIONS(2044), + [anon_sym_co_return] = ACTIONS(2044), + [anon_sym_co_yield] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2044), + [anon_sym_new] = ACTIONS(2044), + [anon_sym_requires] = ACTIONS(2044), + [sym_this] = ACTIONS(2044), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_FORWARD] = ACTIONS(2044), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_PS_GET] = ACTIONS(2044), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2044), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2044), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2044), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2044), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2044), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2044), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2044), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2044), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2044), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2044), + [anon_sym_MOZ_COLD] = ACTIONS(2044), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2044), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2044), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2044), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2044), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2044), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2044), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2044), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2044), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2044), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2044), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2044), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2044), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2044), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2044), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2044), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2044), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2044), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2044), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2044), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2044), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_NONNULL] = ACTIONS(2044), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2044), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2044), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2044), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2044), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2044), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_NORETURN] = ACTIONS(2044), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2044), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2044), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2044), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2044), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2044), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2044), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2044), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2044), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2044), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2044), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2044), + [anon_sym_MOZ_RAII] = ACTIONS(2044), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2044), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2044), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2044), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2044), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2044), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2044), + }, + [STATE(347)] = { + [sym_identifier] = ACTIONS(1970), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token2] = ACTIONS(1970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1970), + [sym_preproc_directive] = ACTIONS(1970), + [anon_sym_LPAREN2] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1970), + [anon_sym_PLUS] = ACTIONS(1970), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym___extension__] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1970), + [anon_sym_virtual] = ACTIONS(1970), + [anon_sym_extern] = ACTIONS(1970), + [anon_sym___attribute__] = ACTIONS(1970), + [anon_sym___attribute] = ACTIONS(1970), + [anon_sym_COLON_COLON] = ACTIONS(1972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1970), + [anon_sym___based] = ACTIONS(1970), + [anon_sym___cdecl] = ACTIONS(1970), + [anon_sym___clrcall] = ACTIONS(1970), + [anon_sym___stdcall] = ACTIONS(1970), + [anon_sym___fastcall] = ACTIONS(1970), + [anon_sym___thiscall] = ACTIONS(1970), + [anon_sym___vectorcall] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1970), + [anon_sym_unsigned] = ACTIONS(1970), + [anon_sym_long] = ACTIONS(1970), + [anon_sym_short] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1970), + [anon_sym_register] = ACTIONS(1970), + [anon_sym_inline] = ACTIONS(1970), + [anon_sym___inline] = ACTIONS(1970), + [anon_sym___inline__] = ACTIONS(1970), + [anon_sym___forceinline] = ACTIONS(1970), + [anon_sym_thread_local] = ACTIONS(1970), + [anon_sym___thread] = ACTIONS(1970), + [anon_sym_const] = ACTIONS(1970), + [anon_sym_constexpr] = ACTIONS(1970), + [anon_sym_volatile] = ACTIONS(1970), + [anon_sym_restrict] = ACTIONS(1970), + [anon_sym___restrict__] = ACTIONS(1970), + [anon_sym__Atomic] = ACTIONS(1970), + [anon_sym__Noreturn] = ACTIONS(1970), + [anon_sym_noreturn] = ACTIONS(1970), + [anon_sym__Nonnull] = ACTIONS(1970), + [anon_sym_mutable] = ACTIONS(1970), + [anon_sym_constinit] = ACTIONS(1970), + [anon_sym_consteval] = ACTIONS(1970), + [anon_sym_alignas] = ACTIONS(1970), + [anon_sym__Alignas] = ACTIONS(1970), + [sym_primitive_type] = ACTIONS(1970), + [anon_sym_enum] = ACTIONS(1970), + [anon_sym_class] = ACTIONS(1970), + [anon_sym_struct] = ACTIONS(1970), + [anon_sym_union] = ACTIONS(1970), + [anon_sym_if] = ACTIONS(1970), + [anon_sym_else] = ACTIONS(1970), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1970), + [anon_sym_default] = ACTIONS(1970), + [anon_sym_while] = ACTIONS(1970), + [anon_sym_do] = ACTIONS(1970), + [anon_sym_for] = ACTIONS(1970), + [anon_sym_return] = ACTIONS(1970), + [anon_sym_break] = ACTIONS(1970), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1970), + [anon_sym___try] = ACTIONS(1970), + [anon_sym___leave] = ACTIONS(1970), + [anon_sym_not] = ACTIONS(1970), + [anon_sym_compl] = ACTIONS(1970), + [anon_sym_DASH_DASH] = ACTIONS(1972), + [anon_sym_PLUS_PLUS] = ACTIONS(1972), + [anon_sym_sizeof] = ACTIONS(1970), + [anon_sym___alignof__] = ACTIONS(1970), + [anon_sym___alignof] = ACTIONS(1970), + [anon_sym__alignof] = ACTIONS(1970), + [anon_sym_alignof] = ACTIONS(1970), + [anon_sym__Alignof] = ACTIONS(1970), + [anon_sym_offsetof] = ACTIONS(1970), + [anon_sym__Generic] = ACTIONS(1970), + [anon_sym_asm] = ACTIONS(1970), + [anon_sym___asm__] = ACTIONS(1970), + [anon_sym___asm] = ACTIONS(1970), + [sym_number_literal] = ACTIONS(1972), + [anon_sym_L_SQUOTE] = ACTIONS(1972), + [anon_sym_u_SQUOTE] = ACTIONS(1972), + [anon_sym_U_SQUOTE] = ACTIONS(1972), + [anon_sym_u8_SQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_L_DQUOTE] = ACTIONS(1972), + [anon_sym_u_DQUOTE] = ACTIONS(1972), + [anon_sym_U_DQUOTE] = ACTIONS(1972), + [anon_sym_u8_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), + [sym_true] = ACTIONS(1970), + [sym_false] = ACTIONS(1970), + [anon_sym_NULL] = ACTIONS(1970), + [anon_sym_nullptr] = ACTIONS(1970), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1970), + [anon_sym_decltype] = ACTIONS(1970), + [anon_sym_explicit] = ACTIONS(1970), + [anon_sym_typename] = ACTIONS(1970), + [anon_sym_template] = ACTIONS(1970), + [anon_sym_operator] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1970), + [anon_sym_delete] = ACTIONS(1970), + [anon_sym_throw] = ACTIONS(1970), + [anon_sym_namespace] = ACTIONS(1970), + [anon_sym_using] = ACTIONS(1970), + [anon_sym_static_assert] = ACTIONS(1970), + [anon_sym_concept] = ACTIONS(1970), + [anon_sym_co_return] = ACTIONS(1970), + [anon_sym_co_yield] = ACTIONS(1970), + [anon_sym_R_DQUOTE] = ACTIONS(1972), + [anon_sym_LR_DQUOTE] = ACTIONS(1972), + [anon_sym_uR_DQUOTE] = ACTIONS(1972), + [anon_sym_UR_DQUOTE] = ACTIONS(1972), + [anon_sym_u8R_DQUOTE] = ACTIONS(1972), + [anon_sym_co_await] = ACTIONS(1970), + [anon_sym_new] = ACTIONS(1970), + [anon_sym_requires] = ACTIONS(1970), + [sym_this] = ACTIONS(1970), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_FORWARD] = ACTIONS(1970), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1970), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_PS_GET] = ACTIONS(1970), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1970), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1970), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1970), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1970), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1970), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1970), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1970), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1970), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1970), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1970), + [anon_sym_MOZ_COLD] = ACTIONS(1970), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1970), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1970), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1970), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1970), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1970), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1970), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1970), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1970), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1970), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1970), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1970), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1970), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1970), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1970), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1970), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1970), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1970), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1970), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1970), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1970), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_NONNULL] = ACTIONS(1970), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1970), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1970), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1970), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1970), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1970), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_NORETURN] = ACTIONS(1970), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1970), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1970), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1970), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1970), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1970), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1970), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1970), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1970), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1970), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1970), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1970), + [anon_sym_MOZ_RAII] = ACTIONS(1970), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1970), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1970), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1970), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1970), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1970), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1970), + }, + [STATE(348)] = { + [sym_identifier] = ACTIONS(1984), + [aux_sym_preproc_include_token1] = ACTIONS(1984), + [aux_sym_preproc_def_token1] = ACTIONS(1984), + [aux_sym_preproc_if_token1] = ACTIONS(1984), + [aux_sym_preproc_if_token2] = ACTIONS(1984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1984), + [sym_preproc_directive] = ACTIONS(1984), + [anon_sym_LPAREN2] = ACTIONS(1986), + [anon_sym_BANG] = ACTIONS(1986), + [anon_sym_TILDE] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(1986), + [anon_sym_AMP_AMP] = ACTIONS(1986), + [anon_sym_AMP] = ACTIONS(1984), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym___extension__] = ACTIONS(1984), + [anon_sym_typedef] = ACTIONS(1984), + [anon_sym_virtual] = ACTIONS(1984), + [anon_sym_extern] = ACTIONS(1984), + [anon_sym___attribute__] = ACTIONS(1984), + [anon_sym___attribute] = ACTIONS(1984), + [anon_sym_COLON_COLON] = ACTIONS(1986), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1986), + [anon_sym___declspec] = ACTIONS(1984), + [anon_sym___based] = ACTIONS(1984), + [anon_sym___cdecl] = ACTIONS(1984), + [anon_sym___clrcall] = ACTIONS(1984), + [anon_sym___stdcall] = ACTIONS(1984), + [anon_sym___fastcall] = ACTIONS(1984), + [anon_sym___thiscall] = ACTIONS(1984), + [anon_sym___vectorcall] = ACTIONS(1984), + [anon_sym_LBRACE] = ACTIONS(1986), + [anon_sym_signed] = ACTIONS(1984), + [anon_sym_unsigned] = ACTIONS(1984), + [anon_sym_long] = ACTIONS(1984), + [anon_sym_short] = ACTIONS(1984), + [anon_sym_LBRACK] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1984), + [anon_sym_register] = ACTIONS(1984), + [anon_sym_inline] = ACTIONS(1984), + [anon_sym___inline] = ACTIONS(1984), + [anon_sym___inline__] = ACTIONS(1984), + [anon_sym___forceinline] = ACTIONS(1984), + [anon_sym_thread_local] = ACTIONS(1984), + [anon_sym___thread] = ACTIONS(1984), + [anon_sym_const] = ACTIONS(1984), + [anon_sym_constexpr] = ACTIONS(1984), + [anon_sym_volatile] = ACTIONS(1984), + [anon_sym_restrict] = ACTIONS(1984), + [anon_sym___restrict__] = ACTIONS(1984), + [anon_sym__Atomic] = ACTIONS(1984), + [anon_sym__Noreturn] = ACTIONS(1984), + [anon_sym_noreturn] = ACTIONS(1984), + [anon_sym__Nonnull] = ACTIONS(1984), + [anon_sym_mutable] = ACTIONS(1984), + [anon_sym_constinit] = ACTIONS(1984), + [anon_sym_consteval] = ACTIONS(1984), + [anon_sym_alignas] = ACTIONS(1984), + [anon_sym__Alignas] = ACTIONS(1984), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1984), + [anon_sym_class] = ACTIONS(1984), + [anon_sym_struct] = ACTIONS(1984), + [anon_sym_union] = ACTIONS(1984), + [anon_sym_if] = ACTIONS(1984), + [anon_sym_else] = ACTIONS(1984), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_case] = ACTIONS(1984), + [anon_sym_default] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1984), + [anon_sym_do] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1984), + [anon_sym_return] = ACTIONS(1984), + [anon_sym_break] = ACTIONS(1984), + [anon_sym_continue] = ACTIONS(1984), + [anon_sym_goto] = ACTIONS(1984), + [anon_sym___try] = ACTIONS(1984), + [anon_sym___leave] = ACTIONS(1984), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_compl] = ACTIONS(1984), + [anon_sym_DASH_DASH] = ACTIONS(1986), + [anon_sym_PLUS_PLUS] = ACTIONS(1986), + [anon_sym_sizeof] = ACTIONS(1984), + [anon_sym___alignof__] = ACTIONS(1984), + [anon_sym___alignof] = ACTIONS(1984), + [anon_sym__alignof] = ACTIONS(1984), + [anon_sym_alignof] = ACTIONS(1984), + [anon_sym__Alignof] = ACTIONS(1984), + [anon_sym_offsetof] = ACTIONS(1984), + [anon_sym__Generic] = ACTIONS(1984), + [anon_sym_asm] = ACTIONS(1984), + [anon_sym___asm__] = ACTIONS(1984), + [anon_sym___asm] = ACTIONS(1984), + [sym_number_literal] = ACTIONS(1986), + [anon_sym_L_SQUOTE] = ACTIONS(1986), + [anon_sym_u_SQUOTE] = ACTIONS(1986), + [anon_sym_U_SQUOTE] = ACTIONS(1986), + [anon_sym_u8_SQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1986), + [anon_sym_L_DQUOTE] = ACTIONS(1986), + [anon_sym_u_DQUOTE] = ACTIONS(1986), + [anon_sym_U_DQUOTE] = ACTIONS(1986), + [anon_sym_u8_DQUOTE] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [anon_sym_NULL] = ACTIONS(1984), + [anon_sym_nullptr] = ACTIONS(1984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1984), + [anon_sym_decltype] = ACTIONS(1984), + [anon_sym_explicit] = ACTIONS(1984), + [anon_sym_typename] = ACTIONS(1984), + [anon_sym_template] = ACTIONS(1984), + [anon_sym_operator] = ACTIONS(1984), + [anon_sym_try] = ACTIONS(1984), + [anon_sym_delete] = ACTIONS(1984), + [anon_sym_throw] = ACTIONS(1984), + [anon_sym_namespace] = ACTIONS(1984), + [anon_sym_using] = ACTIONS(1984), + [anon_sym_static_assert] = ACTIONS(1984), + [anon_sym_concept] = ACTIONS(1984), + [anon_sym_co_return] = ACTIONS(1984), + [anon_sym_co_yield] = ACTIONS(1984), + [anon_sym_R_DQUOTE] = ACTIONS(1986), + [anon_sym_LR_DQUOTE] = ACTIONS(1986), + [anon_sym_uR_DQUOTE] = ACTIONS(1986), + [anon_sym_UR_DQUOTE] = ACTIONS(1986), + [anon_sym_u8R_DQUOTE] = ACTIONS(1986), + [anon_sym_co_await] = ACTIONS(1984), + [anon_sym_new] = ACTIONS(1984), + [anon_sym_requires] = ACTIONS(1984), + [sym_this] = ACTIONS(1984), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_FORWARD] = ACTIONS(1984), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1984), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_PS_GET] = ACTIONS(1984), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1984), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1984), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1984), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1984), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1984), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1984), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1984), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1984), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1984), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1984), + [anon_sym_MOZ_COLD] = ACTIONS(1984), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1984), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1984), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1984), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1984), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1984), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1984), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1984), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1984), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1984), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1984), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1984), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1984), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1984), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1984), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1984), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1984), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1984), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1984), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1984), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1984), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_NONNULL] = ACTIONS(1984), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1984), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1984), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1984), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1984), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1984), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_NORETURN] = ACTIONS(1984), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1984), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1984), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1984), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1984), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1984), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1984), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1984), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1984), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1984), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1984), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1984), + [anon_sym_MOZ_RAII] = ACTIONS(1984), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1984), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1984), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1984), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1984), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1984), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1984), + }, + [STATE(349)] = { + [sym_identifier] = ACTIONS(2020), + [aux_sym_preproc_include_token1] = ACTIONS(2020), + [aux_sym_preproc_def_token1] = ACTIONS(2020), + [aux_sym_preproc_if_token1] = ACTIONS(2020), + [aux_sym_preproc_if_token2] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2020), + [anon_sym_LPAREN2] = ACTIONS(2022), + [anon_sym_BANG] = ACTIONS(2022), + [anon_sym_TILDE] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2020), + [anon_sym_PLUS] = ACTIONS(2020), + [anon_sym_STAR] = ACTIONS(2022), + [anon_sym_AMP_AMP] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_SEMI] = ACTIONS(2022), + [anon_sym___extension__] = ACTIONS(2020), + [anon_sym_typedef] = ACTIONS(2020), + [anon_sym_virtual] = ACTIONS(2020), + [anon_sym_extern] = ACTIONS(2020), + [anon_sym___attribute__] = ACTIONS(2020), + [anon_sym___attribute] = ACTIONS(2020), + [anon_sym_COLON_COLON] = ACTIONS(2022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2022), + [anon_sym___declspec] = ACTIONS(2020), + [anon_sym___based] = ACTIONS(2020), + [anon_sym___cdecl] = ACTIONS(2020), + [anon_sym___clrcall] = ACTIONS(2020), + [anon_sym___stdcall] = ACTIONS(2020), + [anon_sym___fastcall] = ACTIONS(2020), + [anon_sym___thiscall] = ACTIONS(2020), + [anon_sym___vectorcall] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_signed] = ACTIONS(2020), + [anon_sym_unsigned] = ACTIONS(2020), + [anon_sym_long] = ACTIONS(2020), + [anon_sym_short] = ACTIONS(2020), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2020), + [anon_sym_register] = ACTIONS(2020), + [anon_sym_inline] = ACTIONS(2020), + [anon_sym___inline] = ACTIONS(2020), + [anon_sym___inline__] = ACTIONS(2020), + [anon_sym___forceinline] = ACTIONS(2020), + [anon_sym_thread_local] = ACTIONS(2020), + [anon_sym___thread] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_constexpr] = ACTIONS(2020), + [anon_sym_volatile] = ACTIONS(2020), + [anon_sym_restrict] = ACTIONS(2020), + [anon_sym___restrict__] = ACTIONS(2020), + [anon_sym__Atomic] = ACTIONS(2020), + [anon_sym__Noreturn] = ACTIONS(2020), + [anon_sym_noreturn] = ACTIONS(2020), + [anon_sym__Nonnull] = ACTIONS(2020), + [anon_sym_mutable] = ACTIONS(2020), + [anon_sym_constinit] = ACTIONS(2020), + [anon_sym_consteval] = ACTIONS(2020), + [anon_sym_alignas] = ACTIONS(2020), + [anon_sym__Alignas] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_enum] = ACTIONS(2020), + [anon_sym_class] = ACTIONS(2020), + [anon_sym_struct] = ACTIONS(2020), + [anon_sym_union] = ACTIONS(2020), + [anon_sym_if] = ACTIONS(2020), + [anon_sym_else] = ACTIONS(2020), + [anon_sym_switch] = ACTIONS(2020), + [anon_sym_case] = ACTIONS(2020), + [anon_sym_default] = ACTIONS(2020), + [anon_sym_while] = ACTIONS(2020), + [anon_sym_do] = ACTIONS(2020), + [anon_sym_for] = ACTIONS(2020), + [anon_sym_return] = ACTIONS(2020), + [anon_sym_break] = ACTIONS(2020), + [anon_sym_continue] = ACTIONS(2020), + [anon_sym_goto] = ACTIONS(2020), + [anon_sym___try] = ACTIONS(2020), + [anon_sym___leave] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2020), + [anon_sym_compl] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2020), + [anon_sym___alignof__] = ACTIONS(2020), + [anon_sym___alignof] = ACTIONS(2020), + [anon_sym__alignof] = ACTIONS(2020), + [anon_sym_alignof] = ACTIONS(2020), + [anon_sym__Alignof] = ACTIONS(2020), + [anon_sym_offsetof] = ACTIONS(2020), + [anon_sym__Generic] = ACTIONS(2020), + [anon_sym_asm] = ACTIONS(2020), + [anon_sym___asm__] = ACTIONS(2020), + [anon_sym___asm] = ACTIONS(2020), + [sym_number_literal] = ACTIONS(2022), + [anon_sym_L_SQUOTE] = ACTIONS(2022), + [anon_sym_u_SQUOTE] = ACTIONS(2022), + [anon_sym_U_SQUOTE] = ACTIONS(2022), + [anon_sym_u8_SQUOTE] = ACTIONS(2022), + [anon_sym_SQUOTE] = ACTIONS(2022), + [anon_sym_L_DQUOTE] = ACTIONS(2022), + [anon_sym_u_DQUOTE] = ACTIONS(2022), + [anon_sym_U_DQUOTE] = ACTIONS(2022), + [anon_sym_u8_DQUOTE] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2022), + [sym_true] = ACTIONS(2020), + [sym_false] = ACTIONS(2020), + [anon_sym_NULL] = ACTIONS(2020), + [anon_sym_nullptr] = ACTIONS(2020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2020), + [anon_sym_decltype] = ACTIONS(2020), + [anon_sym_explicit] = ACTIONS(2020), + [anon_sym_typename] = ACTIONS(2020), + [anon_sym_template] = ACTIONS(2020), + [anon_sym_operator] = ACTIONS(2020), + [anon_sym_try] = ACTIONS(2020), + [anon_sym_delete] = ACTIONS(2020), + [anon_sym_throw] = ACTIONS(2020), + [anon_sym_namespace] = ACTIONS(2020), + [anon_sym_using] = ACTIONS(2020), + [anon_sym_static_assert] = ACTIONS(2020), + [anon_sym_concept] = ACTIONS(2020), + [anon_sym_co_return] = ACTIONS(2020), + [anon_sym_co_yield] = ACTIONS(2020), + [anon_sym_R_DQUOTE] = ACTIONS(2022), + [anon_sym_LR_DQUOTE] = ACTIONS(2022), + [anon_sym_uR_DQUOTE] = ACTIONS(2022), + [anon_sym_UR_DQUOTE] = ACTIONS(2022), + [anon_sym_u8R_DQUOTE] = ACTIONS(2022), + [anon_sym_co_await] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2020), + [anon_sym_requires] = ACTIONS(2020), + [sym_this] = ACTIONS(2020), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_FORWARD] = ACTIONS(2020), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2020), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_PS_GET] = ACTIONS(2020), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2020), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2020), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2020), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2020), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2020), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2020), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2020), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2020), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2020), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2020), + [anon_sym_MOZ_COLD] = ACTIONS(2020), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2020), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2020), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2020), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2020), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2020), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2020), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2020), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2020), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2020), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2020), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2020), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2020), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2020), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2020), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2020), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2020), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2020), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2020), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2020), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2020), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_NONNULL] = ACTIONS(2020), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2020), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2020), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2020), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2020), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2020), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_NORETURN] = ACTIONS(2020), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2020), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2020), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2020), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2020), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2020), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2020), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2020), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2020), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2020), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2020), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2020), + [anon_sym_MOZ_RAII] = ACTIONS(2020), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2020), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2020), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2020), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2020), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2020), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2020), + }, + [STATE(350)] = { + [sym_identifier] = ACTIONS(2156), + [aux_sym_preproc_include_token1] = ACTIONS(2156), + [aux_sym_preproc_def_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2156), + [sym_preproc_directive] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(2158), + [anon_sym_BANG] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2158), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym___extension__] = ACTIONS(2156), + [anon_sym_typedef] = ACTIONS(2156), + [anon_sym_virtual] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym___attribute__] = ACTIONS(2156), + [anon_sym___attribute] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2158), + [anon_sym___declspec] = ACTIONS(2156), + [anon_sym___based] = ACTIONS(2156), + [anon_sym___cdecl] = ACTIONS(2156), + [anon_sym___clrcall] = ACTIONS(2156), + [anon_sym___stdcall] = ACTIONS(2156), + [anon_sym___fastcall] = ACTIONS(2156), + [anon_sym___thiscall] = ACTIONS(2156), + [anon_sym___vectorcall] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2158), + [anon_sym_RBRACE] = ACTIONS(2158), + [anon_sym_signed] = ACTIONS(2156), + [anon_sym_unsigned] = ACTIONS(2156), + [anon_sym_long] = ACTIONS(2156), + [anon_sym_short] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_inline] = ACTIONS(2156), + [anon_sym___inline] = ACTIONS(2156), + [anon_sym___inline__] = ACTIONS(2156), + [anon_sym___forceinline] = ACTIONS(2156), + [anon_sym_thread_local] = ACTIONS(2156), + [anon_sym___thread] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_constexpr] = ACTIONS(2156), + [anon_sym_volatile] = ACTIONS(2156), + [anon_sym_restrict] = ACTIONS(2156), + [anon_sym___restrict__] = ACTIONS(2156), + [anon_sym__Atomic] = ACTIONS(2156), + [anon_sym__Noreturn] = ACTIONS(2156), + [anon_sym_noreturn] = ACTIONS(2156), + [anon_sym__Nonnull] = ACTIONS(2156), + [anon_sym_mutable] = ACTIONS(2156), + [anon_sym_constinit] = ACTIONS(2156), + [anon_sym_consteval] = ACTIONS(2156), + [anon_sym_alignas] = ACTIONS(2156), + [anon_sym__Alignas] = ACTIONS(2156), + [sym_primitive_type] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_case] = ACTIONS(2156), + [anon_sym_default] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_goto] = ACTIONS(2156), + [anon_sym___try] = ACTIONS(2156), + [anon_sym___leave] = ACTIONS(2156), + [anon_sym_not] = ACTIONS(2156), + [anon_sym_compl] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2158), + [anon_sym_PLUS_PLUS] = ACTIONS(2158), + [anon_sym_sizeof] = ACTIONS(2156), + [anon_sym___alignof__] = ACTIONS(2156), + [anon_sym___alignof] = ACTIONS(2156), + [anon_sym__alignof] = ACTIONS(2156), + [anon_sym_alignof] = ACTIONS(2156), + [anon_sym__Alignof] = ACTIONS(2156), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2156), + [anon_sym_asm] = ACTIONS(2156), + [anon_sym___asm__] = ACTIONS(2156), + [anon_sym___asm] = ACTIONS(2156), + [sym_number_literal] = ACTIONS(2158), + [anon_sym_L_SQUOTE] = ACTIONS(2158), + [anon_sym_u_SQUOTE] = ACTIONS(2158), + [anon_sym_U_SQUOTE] = ACTIONS(2158), + [anon_sym_u8_SQUOTE] = ACTIONS(2158), + [anon_sym_SQUOTE] = ACTIONS(2158), + [anon_sym_L_DQUOTE] = ACTIONS(2158), + [anon_sym_u_DQUOTE] = ACTIONS(2158), + [anon_sym_U_DQUOTE] = ACTIONS(2158), + [anon_sym_u8_DQUOTE] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [anon_sym_NULL] = ACTIONS(2156), + [anon_sym_nullptr] = ACTIONS(2156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2156), + [anon_sym_decltype] = ACTIONS(2156), + [anon_sym_explicit] = ACTIONS(2156), + [anon_sym_typename] = ACTIONS(2156), + [anon_sym_template] = ACTIONS(2156), + [anon_sym_operator] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_static_assert] = ACTIONS(2156), + [anon_sym_concept] = ACTIONS(2156), + [anon_sym_co_return] = ACTIONS(2156), + [anon_sym_co_yield] = ACTIONS(2156), + [anon_sym_R_DQUOTE] = ACTIONS(2158), + [anon_sym_LR_DQUOTE] = ACTIONS(2158), + [anon_sym_uR_DQUOTE] = ACTIONS(2158), + [anon_sym_UR_DQUOTE] = ACTIONS(2158), + [anon_sym_u8R_DQUOTE] = ACTIONS(2158), + [anon_sym_co_await] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_requires] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_FORWARD] = ACTIONS(2156), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2156), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_PS_GET] = ACTIONS(2156), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2156), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2156), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2156), + [anon_sym_MOZ_COLD] = ACTIONS(2156), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2156), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2156), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2156), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2156), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2156), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2156), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2156), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2156), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2156), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2156), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2156), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2156), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_RAII] = ACTIONS(2156), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2156), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2156), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2156), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2156), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2156), + }, + [STATE(351)] = { + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2096), + [aux_sym_preproc_def_token1] = ACTIONS(2096), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_if_token2] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [sym_preproc_directive] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_AMP_AMP] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2096), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym___extension__] = ACTIONS(2096), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_virtual] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym_COLON_COLON] = ACTIONS(2098), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2098), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___based] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [anon_sym_LBRACK] = ACTIONS(2096), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [anon_sym___inline] = ACTIONS(2096), + [anon_sym___inline__] = ACTIONS(2096), + [anon_sym___forceinline] = ACTIONS(2096), + [anon_sym_thread_local] = ACTIONS(2096), + [anon_sym___thread] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_constexpr] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym___restrict__] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym__Noreturn] = ACTIONS(2096), + [anon_sym_noreturn] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym_mutable] = ACTIONS(2096), + [anon_sym_constinit] = ACTIONS(2096), + [anon_sym_consteval] = ACTIONS(2096), + [anon_sym_alignas] = ACTIONS(2096), + [anon_sym__Alignas] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_class] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_else] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym___try] = ACTIONS(2096), + [anon_sym___leave] = ACTIONS(2096), + [anon_sym_not] = ACTIONS(2096), + [anon_sym_compl] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2096), + [anon_sym___alignof] = ACTIONS(2096), + [anon_sym__alignof] = ACTIONS(2096), + [anon_sym_alignof] = ACTIONS(2096), + [anon_sym__Alignof] = ACTIONS(2096), + [anon_sym_offsetof] = ACTIONS(2096), + [anon_sym__Generic] = ACTIONS(2096), + [anon_sym_asm] = ACTIONS(2096), + [anon_sym___asm__] = ACTIONS(2096), + [anon_sym___asm] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [anon_sym_NULL] = ACTIONS(2096), + [anon_sym_nullptr] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2096), + [anon_sym_decltype] = ACTIONS(2096), + [anon_sym_explicit] = ACTIONS(2096), + [anon_sym_typename] = ACTIONS(2096), + [anon_sym_template] = ACTIONS(2096), + [anon_sym_operator] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2096), + [anon_sym_delete] = ACTIONS(2096), + [anon_sym_throw] = ACTIONS(2096), + [anon_sym_namespace] = ACTIONS(2096), + [anon_sym_using] = ACTIONS(2096), + [anon_sym_static_assert] = ACTIONS(2096), + [anon_sym_concept] = ACTIONS(2096), + [anon_sym_co_return] = ACTIONS(2096), + [anon_sym_co_yield] = ACTIONS(2096), + [anon_sym_R_DQUOTE] = ACTIONS(2098), + [anon_sym_LR_DQUOTE] = ACTIONS(2098), + [anon_sym_uR_DQUOTE] = ACTIONS(2098), + [anon_sym_UR_DQUOTE] = ACTIONS(2098), + [anon_sym_u8R_DQUOTE] = ACTIONS(2098), + [anon_sym_co_await] = ACTIONS(2096), + [anon_sym_new] = ACTIONS(2096), + [anon_sym_requires] = ACTIONS(2096), + [sym_this] = ACTIONS(2096), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_FORWARD] = ACTIONS(2096), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_PS_GET] = ACTIONS(2096), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2096), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2096), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2096), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2096), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2096), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2096), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2096), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2096), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2096), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2096), + [anon_sym_MOZ_COLD] = ACTIONS(2096), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2096), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2096), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2096), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2096), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2096), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2096), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2096), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2096), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2096), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2096), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2096), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2096), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2096), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2096), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2096), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2096), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2096), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2096), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2096), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2096), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_NONNULL] = ACTIONS(2096), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2096), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2096), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2096), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2096), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2096), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_NORETURN] = ACTIONS(2096), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2096), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2096), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2096), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2096), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2096), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2096), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2096), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2096), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2096), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2096), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2096), + [anon_sym_MOZ_RAII] = ACTIONS(2096), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2096), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2096), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2096), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2096), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2096), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2096), + }, + [STATE(352)] = { + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2016), + [aux_sym_preproc_def_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [sym_preproc_directive] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_AMP_AMP] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2016), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym___extension__] = ACTIONS(2016), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_virtual] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym_COLON_COLON] = ACTIONS(2018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2018), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___based] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [anon_sym___inline] = ACTIONS(2016), + [anon_sym___inline__] = ACTIONS(2016), + [anon_sym___forceinline] = ACTIONS(2016), + [anon_sym_thread_local] = ACTIONS(2016), + [anon_sym___thread] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_constexpr] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym___restrict__] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym__Noreturn] = ACTIONS(2016), + [anon_sym_noreturn] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym_mutable] = ACTIONS(2016), + [anon_sym_constinit] = ACTIONS(2016), + [anon_sym_consteval] = ACTIONS(2016), + [anon_sym_alignas] = ACTIONS(2016), + [anon_sym__Alignas] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_class] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_else] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym___try] = ACTIONS(2016), + [anon_sym___leave] = ACTIONS(2016), + [anon_sym_not] = ACTIONS(2016), + [anon_sym_compl] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [anon_sym___alignof__] = ACTIONS(2016), + [anon_sym___alignof] = ACTIONS(2016), + [anon_sym__alignof] = ACTIONS(2016), + [anon_sym_alignof] = ACTIONS(2016), + [anon_sym__Alignof] = ACTIONS(2016), + [anon_sym_offsetof] = ACTIONS(2016), + [anon_sym__Generic] = ACTIONS(2016), + [anon_sym_asm] = ACTIONS(2016), + [anon_sym___asm__] = ACTIONS(2016), + [anon_sym___asm] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [anon_sym_NULL] = ACTIONS(2016), + [anon_sym_nullptr] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2016), + [anon_sym_decltype] = ACTIONS(2016), + [anon_sym_explicit] = ACTIONS(2016), + [anon_sym_typename] = ACTIONS(2016), + [anon_sym_template] = ACTIONS(2016), + [anon_sym_operator] = ACTIONS(2016), + [anon_sym_try] = ACTIONS(2016), + [anon_sym_delete] = ACTIONS(2016), + [anon_sym_throw] = ACTIONS(2016), + [anon_sym_namespace] = ACTIONS(2016), + [anon_sym_using] = ACTIONS(2016), + [anon_sym_static_assert] = ACTIONS(2016), + [anon_sym_concept] = ACTIONS(2016), + [anon_sym_co_return] = ACTIONS(2016), + [anon_sym_co_yield] = ACTIONS(2016), + [anon_sym_R_DQUOTE] = ACTIONS(2018), + [anon_sym_LR_DQUOTE] = ACTIONS(2018), + [anon_sym_uR_DQUOTE] = ACTIONS(2018), + [anon_sym_UR_DQUOTE] = ACTIONS(2018), + [anon_sym_u8R_DQUOTE] = ACTIONS(2018), + [anon_sym_co_await] = ACTIONS(2016), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2016), + [sym_this] = ACTIONS(2016), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_FORWARD] = ACTIONS(2016), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_PS_GET] = ACTIONS(2016), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2016), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2016), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2016), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2016), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2016), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2016), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2016), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2016), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2016), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2016), + [anon_sym_MOZ_COLD] = ACTIONS(2016), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2016), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2016), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2016), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2016), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2016), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2016), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2016), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2016), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2016), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2016), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2016), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2016), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2016), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2016), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2016), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2016), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2016), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2016), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2016), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2016), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_NONNULL] = ACTIONS(2016), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2016), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2016), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2016), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2016), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2016), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_NORETURN] = ACTIONS(2016), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2016), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2016), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2016), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2016), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2016), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2016), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2016), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2016), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2016), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2016), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2016), + [anon_sym_MOZ_RAII] = ACTIONS(2016), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2016), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2016), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2016), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2016), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2016), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2016), + }, + [STATE(353)] = { + [sym_identifier] = ACTIONS(2164), + [aux_sym_preproc_include_token1] = ACTIONS(2164), + [aux_sym_preproc_def_token1] = ACTIONS(2164), + [aux_sym_preproc_if_token1] = ACTIONS(2164), + [aux_sym_preproc_if_token2] = ACTIONS(2164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2164), + [sym_preproc_directive] = ACTIONS(2164), + [anon_sym_LPAREN2] = ACTIONS(2166), + [anon_sym_BANG] = ACTIONS(2166), + [anon_sym_TILDE] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_PLUS] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2166), + [anon_sym_AMP_AMP] = ACTIONS(2166), + [anon_sym_AMP] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym___extension__] = ACTIONS(2164), + [anon_sym_typedef] = ACTIONS(2164), + [anon_sym_virtual] = ACTIONS(2164), + [anon_sym_extern] = ACTIONS(2164), + [anon_sym___attribute__] = ACTIONS(2164), + [anon_sym___attribute] = ACTIONS(2164), + [anon_sym_COLON_COLON] = ACTIONS(2166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2166), + [anon_sym___declspec] = ACTIONS(2164), + [anon_sym___based] = ACTIONS(2164), + [anon_sym___cdecl] = ACTIONS(2164), + [anon_sym___clrcall] = ACTIONS(2164), + [anon_sym___stdcall] = ACTIONS(2164), + [anon_sym___fastcall] = ACTIONS(2164), + [anon_sym___thiscall] = ACTIONS(2164), + [anon_sym___vectorcall] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_signed] = ACTIONS(2164), + [anon_sym_unsigned] = ACTIONS(2164), + [anon_sym_long] = ACTIONS(2164), + [anon_sym_short] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_static] = ACTIONS(2164), + [anon_sym_register] = ACTIONS(2164), + [anon_sym_inline] = ACTIONS(2164), + [anon_sym___inline] = ACTIONS(2164), + [anon_sym___inline__] = ACTIONS(2164), + [anon_sym___forceinline] = ACTIONS(2164), + [anon_sym_thread_local] = ACTIONS(2164), + [anon_sym___thread] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [anon_sym_constexpr] = ACTIONS(2164), + [anon_sym_volatile] = ACTIONS(2164), + [anon_sym_restrict] = ACTIONS(2164), + [anon_sym___restrict__] = ACTIONS(2164), + [anon_sym__Atomic] = ACTIONS(2164), + [anon_sym__Noreturn] = ACTIONS(2164), + [anon_sym_noreturn] = ACTIONS(2164), + [anon_sym__Nonnull] = ACTIONS(2164), + [anon_sym_mutable] = ACTIONS(2164), + [anon_sym_constinit] = ACTIONS(2164), + [anon_sym_consteval] = ACTIONS(2164), + [anon_sym_alignas] = ACTIONS(2164), + [anon_sym__Alignas] = ACTIONS(2164), + [sym_primitive_type] = ACTIONS(2164), + [anon_sym_enum] = ACTIONS(2164), + [anon_sym_class] = ACTIONS(2164), + [anon_sym_struct] = ACTIONS(2164), + [anon_sym_union] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_else] = ACTIONS(2164), + [anon_sym_switch] = ACTIONS(2164), + [anon_sym_case] = ACTIONS(2164), + [anon_sym_default] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_goto] = ACTIONS(2164), + [anon_sym___try] = ACTIONS(2164), + [anon_sym___leave] = ACTIONS(2164), + [anon_sym_not] = ACTIONS(2164), + [anon_sym_compl] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2166), + [anon_sym_sizeof] = ACTIONS(2164), + [anon_sym___alignof__] = ACTIONS(2164), + [anon_sym___alignof] = ACTIONS(2164), + [anon_sym__alignof] = ACTIONS(2164), + [anon_sym_alignof] = ACTIONS(2164), + [anon_sym__Alignof] = ACTIONS(2164), + [anon_sym_offsetof] = ACTIONS(2164), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2164), + [anon_sym___asm__] = ACTIONS(2164), + [anon_sym___asm] = ACTIONS(2164), + [sym_number_literal] = ACTIONS(2166), + [anon_sym_L_SQUOTE] = ACTIONS(2166), + [anon_sym_u_SQUOTE] = ACTIONS(2166), + [anon_sym_U_SQUOTE] = ACTIONS(2166), + [anon_sym_u8_SQUOTE] = ACTIONS(2166), + [anon_sym_SQUOTE] = ACTIONS(2166), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2164), + [sym_false] = ACTIONS(2164), + [anon_sym_NULL] = ACTIONS(2164), + [anon_sym_nullptr] = ACTIONS(2164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2164), + [anon_sym_decltype] = ACTIONS(2164), + [anon_sym_explicit] = ACTIONS(2164), + [anon_sym_typename] = ACTIONS(2164), + [anon_sym_template] = ACTIONS(2164), + [anon_sym_operator] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_delete] = ACTIONS(2164), + [anon_sym_throw] = ACTIONS(2164), + [anon_sym_namespace] = ACTIONS(2164), + [anon_sym_using] = ACTIONS(2164), + [anon_sym_static_assert] = ACTIONS(2164), + [anon_sym_concept] = ACTIONS(2164), + [anon_sym_co_return] = ACTIONS(2164), + [anon_sym_co_yield] = ACTIONS(2164), + [anon_sym_R_DQUOTE] = ACTIONS(2166), + [anon_sym_LR_DQUOTE] = ACTIONS(2166), + [anon_sym_uR_DQUOTE] = ACTIONS(2166), + [anon_sym_UR_DQUOTE] = ACTIONS(2166), + [anon_sym_u8R_DQUOTE] = ACTIONS(2166), + [anon_sym_co_await] = ACTIONS(2164), + [anon_sym_new] = ACTIONS(2164), + [anon_sym_requires] = ACTIONS(2164), + [sym_this] = ACTIONS(2164), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_FORWARD] = ACTIONS(2164), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2164), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_PS_GET] = ACTIONS(2164), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2164), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2164), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2164), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2164), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2164), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2164), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2164), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2164), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2164), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2164), + [anon_sym_MOZ_COLD] = ACTIONS(2164), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2164), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2164), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2164), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2164), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2164), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2164), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2164), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2164), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2164), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2164), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2164), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2164), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2164), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2164), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2164), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2164), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2164), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2164), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2164), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2164), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_NONNULL] = ACTIONS(2164), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2164), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2164), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2164), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2164), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2164), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_NORETURN] = ACTIONS(2164), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2164), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2164), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2164), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2164), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2164), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2164), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2164), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2164), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2164), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2164), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2164), + [anon_sym_MOZ_RAII] = ACTIONS(2164), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2164), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2164), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2164), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2164), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2164), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2164), + }, + [STATE(354)] = { + [sym_identifier] = ACTIONS(1984), + [aux_sym_preproc_include_token1] = ACTIONS(1984), + [aux_sym_preproc_def_token1] = ACTIONS(1984), + [aux_sym_preproc_if_token1] = ACTIONS(1984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1984), + [sym_preproc_directive] = ACTIONS(1984), + [anon_sym_LPAREN2] = ACTIONS(1986), + [anon_sym_BANG] = ACTIONS(1986), + [anon_sym_TILDE] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(1986), + [anon_sym_AMP_AMP] = ACTIONS(1986), + [anon_sym_AMP] = ACTIONS(1984), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym___extension__] = ACTIONS(1984), + [anon_sym_typedef] = ACTIONS(1984), + [anon_sym_virtual] = ACTIONS(1984), + [anon_sym_extern] = ACTIONS(1984), + [anon_sym___attribute__] = ACTIONS(1984), + [anon_sym___attribute] = ACTIONS(1984), + [anon_sym_COLON_COLON] = ACTIONS(1986), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1986), + [anon_sym___declspec] = ACTIONS(1984), + [anon_sym___based] = ACTIONS(1984), + [anon_sym___cdecl] = ACTIONS(1984), + [anon_sym___clrcall] = ACTIONS(1984), + [anon_sym___stdcall] = ACTIONS(1984), + [anon_sym___fastcall] = ACTIONS(1984), + [anon_sym___thiscall] = ACTIONS(1984), + [anon_sym___vectorcall] = ACTIONS(1984), + [anon_sym_LBRACE] = ACTIONS(1986), + [anon_sym_RBRACE] = ACTIONS(1986), + [anon_sym_signed] = ACTIONS(1984), + [anon_sym_unsigned] = ACTIONS(1984), + [anon_sym_long] = ACTIONS(1984), + [anon_sym_short] = ACTIONS(1984), + [anon_sym_LBRACK] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1984), + [anon_sym_register] = ACTIONS(1984), + [anon_sym_inline] = ACTIONS(1984), + [anon_sym___inline] = ACTIONS(1984), + [anon_sym___inline__] = ACTIONS(1984), + [anon_sym___forceinline] = ACTIONS(1984), + [anon_sym_thread_local] = ACTIONS(1984), + [anon_sym___thread] = ACTIONS(1984), + [anon_sym_const] = ACTIONS(1984), + [anon_sym_constexpr] = ACTIONS(1984), + [anon_sym_volatile] = ACTIONS(1984), + [anon_sym_restrict] = ACTIONS(1984), + [anon_sym___restrict__] = ACTIONS(1984), + [anon_sym__Atomic] = ACTIONS(1984), + [anon_sym__Noreturn] = ACTIONS(1984), + [anon_sym_noreturn] = ACTIONS(1984), + [anon_sym__Nonnull] = ACTIONS(1984), + [anon_sym_mutable] = ACTIONS(1984), + [anon_sym_constinit] = ACTIONS(1984), + [anon_sym_consteval] = ACTIONS(1984), + [anon_sym_alignas] = ACTIONS(1984), + [anon_sym__Alignas] = ACTIONS(1984), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1984), + [anon_sym_class] = ACTIONS(1984), + [anon_sym_struct] = ACTIONS(1984), + [anon_sym_union] = ACTIONS(1984), + [anon_sym_if] = ACTIONS(1984), + [anon_sym_else] = ACTIONS(1984), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_case] = ACTIONS(1984), + [anon_sym_default] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1984), + [anon_sym_do] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1984), + [anon_sym_return] = ACTIONS(1984), + [anon_sym_break] = ACTIONS(1984), + [anon_sym_continue] = ACTIONS(1984), + [anon_sym_goto] = ACTIONS(1984), + [anon_sym___try] = ACTIONS(1984), + [anon_sym___leave] = ACTIONS(1984), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_compl] = ACTIONS(1984), + [anon_sym_DASH_DASH] = ACTIONS(1986), + [anon_sym_PLUS_PLUS] = ACTIONS(1986), + [anon_sym_sizeof] = ACTIONS(1984), + [anon_sym___alignof__] = ACTIONS(1984), + [anon_sym___alignof] = ACTIONS(1984), + [anon_sym__alignof] = ACTIONS(1984), + [anon_sym_alignof] = ACTIONS(1984), + [anon_sym__Alignof] = ACTIONS(1984), + [anon_sym_offsetof] = ACTIONS(1984), + [anon_sym__Generic] = ACTIONS(1984), + [anon_sym_asm] = ACTIONS(1984), + [anon_sym___asm__] = ACTIONS(1984), + [anon_sym___asm] = ACTIONS(1984), + [sym_number_literal] = ACTIONS(1986), + [anon_sym_L_SQUOTE] = ACTIONS(1986), + [anon_sym_u_SQUOTE] = ACTIONS(1986), + [anon_sym_U_SQUOTE] = ACTIONS(1986), + [anon_sym_u8_SQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1986), + [anon_sym_L_DQUOTE] = ACTIONS(1986), + [anon_sym_u_DQUOTE] = ACTIONS(1986), + [anon_sym_U_DQUOTE] = ACTIONS(1986), + [anon_sym_u8_DQUOTE] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [anon_sym_NULL] = ACTIONS(1984), + [anon_sym_nullptr] = ACTIONS(1984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1984), + [anon_sym_decltype] = ACTIONS(1984), + [anon_sym_explicit] = ACTIONS(1984), + [anon_sym_typename] = ACTIONS(1984), + [anon_sym_template] = ACTIONS(1984), + [anon_sym_operator] = ACTIONS(1984), + [anon_sym_try] = ACTIONS(1984), + [anon_sym_delete] = ACTIONS(1984), + [anon_sym_throw] = ACTIONS(1984), + [anon_sym_namespace] = ACTIONS(1984), + [anon_sym_using] = ACTIONS(1984), + [anon_sym_static_assert] = ACTIONS(1984), + [anon_sym_concept] = ACTIONS(1984), + [anon_sym_co_return] = ACTIONS(1984), + [anon_sym_co_yield] = ACTIONS(1984), + [anon_sym_R_DQUOTE] = ACTIONS(1986), + [anon_sym_LR_DQUOTE] = ACTIONS(1986), + [anon_sym_uR_DQUOTE] = ACTIONS(1986), + [anon_sym_UR_DQUOTE] = ACTIONS(1986), + [anon_sym_u8R_DQUOTE] = ACTIONS(1986), + [anon_sym_co_await] = ACTIONS(1984), + [anon_sym_new] = ACTIONS(1984), + [anon_sym_requires] = ACTIONS(1984), + [sym_this] = ACTIONS(1984), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_FORWARD] = ACTIONS(1984), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1984), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_PS_GET] = ACTIONS(1984), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1984), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1984), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1984), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1984), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1984), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1984), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1984), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1984), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1984), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1984), + [anon_sym_MOZ_COLD] = ACTIONS(1984), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1984), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1984), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1984), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1984), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1984), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1984), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1984), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1984), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1984), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1984), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1984), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1984), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1984), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1984), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1984), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1984), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1984), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1984), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1984), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1984), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_NONNULL] = ACTIONS(1984), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1984), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1984), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1984), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1984), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1984), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_NORETURN] = ACTIONS(1984), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1984), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1984), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1984), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1984), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1984), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1984), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1984), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1984), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1984), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1984), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1984), + [anon_sym_MOZ_RAII] = ACTIONS(1984), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1984), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1984), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1984), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1984), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1984), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1984), + }, + [STATE(355)] = { + [sym_identifier] = ACTIONS(2020), + [aux_sym_preproc_include_token1] = ACTIONS(2020), + [aux_sym_preproc_def_token1] = ACTIONS(2020), + [aux_sym_preproc_if_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2020), + [anon_sym_LPAREN2] = ACTIONS(2022), + [anon_sym_BANG] = ACTIONS(2022), + [anon_sym_TILDE] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2020), + [anon_sym_PLUS] = ACTIONS(2020), + [anon_sym_STAR] = ACTIONS(2022), + [anon_sym_AMP_AMP] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_SEMI] = ACTIONS(2022), + [anon_sym___extension__] = ACTIONS(2020), + [anon_sym_typedef] = ACTIONS(2020), + [anon_sym_virtual] = ACTIONS(2020), + [anon_sym_extern] = ACTIONS(2020), + [anon_sym___attribute__] = ACTIONS(2020), + [anon_sym___attribute] = ACTIONS(2020), + [anon_sym_COLON_COLON] = ACTIONS(2022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2022), + [anon_sym___declspec] = ACTIONS(2020), + [anon_sym___based] = ACTIONS(2020), + [anon_sym___cdecl] = ACTIONS(2020), + [anon_sym___clrcall] = ACTIONS(2020), + [anon_sym___stdcall] = ACTIONS(2020), + [anon_sym___fastcall] = ACTIONS(2020), + [anon_sym___thiscall] = ACTIONS(2020), + [anon_sym___vectorcall] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_RBRACE] = ACTIONS(2022), + [anon_sym_signed] = ACTIONS(2020), + [anon_sym_unsigned] = ACTIONS(2020), + [anon_sym_long] = ACTIONS(2020), + [anon_sym_short] = ACTIONS(2020), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2020), + [anon_sym_register] = ACTIONS(2020), + [anon_sym_inline] = ACTIONS(2020), + [anon_sym___inline] = ACTIONS(2020), + [anon_sym___inline__] = ACTIONS(2020), + [anon_sym___forceinline] = ACTIONS(2020), + [anon_sym_thread_local] = ACTIONS(2020), + [anon_sym___thread] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_constexpr] = ACTIONS(2020), + [anon_sym_volatile] = ACTIONS(2020), + [anon_sym_restrict] = ACTIONS(2020), + [anon_sym___restrict__] = ACTIONS(2020), + [anon_sym__Atomic] = ACTIONS(2020), + [anon_sym__Noreturn] = ACTIONS(2020), + [anon_sym_noreturn] = ACTIONS(2020), + [anon_sym__Nonnull] = ACTIONS(2020), + [anon_sym_mutable] = ACTIONS(2020), + [anon_sym_constinit] = ACTIONS(2020), + [anon_sym_consteval] = ACTIONS(2020), + [anon_sym_alignas] = ACTIONS(2020), + [anon_sym__Alignas] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_enum] = ACTIONS(2020), + [anon_sym_class] = ACTIONS(2020), + [anon_sym_struct] = ACTIONS(2020), + [anon_sym_union] = ACTIONS(2020), + [anon_sym_if] = ACTIONS(2020), + [anon_sym_else] = ACTIONS(2020), + [anon_sym_switch] = ACTIONS(2020), + [anon_sym_case] = ACTIONS(2020), + [anon_sym_default] = ACTIONS(2020), + [anon_sym_while] = ACTIONS(2020), + [anon_sym_do] = ACTIONS(2020), + [anon_sym_for] = ACTIONS(2020), + [anon_sym_return] = ACTIONS(2020), + [anon_sym_break] = ACTIONS(2020), + [anon_sym_continue] = ACTIONS(2020), + [anon_sym_goto] = ACTIONS(2020), + [anon_sym___try] = ACTIONS(2020), + [anon_sym___leave] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2020), + [anon_sym_compl] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2020), + [anon_sym___alignof__] = ACTIONS(2020), + [anon_sym___alignof] = ACTIONS(2020), + [anon_sym__alignof] = ACTIONS(2020), + [anon_sym_alignof] = ACTIONS(2020), + [anon_sym__Alignof] = ACTIONS(2020), + [anon_sym_offsetof] = ACTIONS(2020), + [anon_sym__Generic] = ACTIONS(2020), + [anon_sym_asm] = ACTIONS(2020), + [anon_sym___asm__] = ACTIONS(2020), + [anon_sym___asm] = ACTIONS(2020), + [sym_number_literal] = ACTIONS(2022), + [anon_sym_L_SQUOTE] = ACTIONS(2022), + [anon_sym_u_SQUOTE] = ACTIONS(2022), + [anon_sym_U_SQUOTE] = ACTIONS(2022), + [anon_sym_u8_SQUOTE] = ACTIONS(2022), + [anon_sym_SQUOTE] = ACTIONS(2022), + [anon_sym_L_DQUOTE] = ACTIONS(2022), + [anon_sym_u_DQUOTE] = ACTIONS(2022), + [anon_sym_U_DQUOTE] = ACTIONS(2022), + [anon_sym_u8_DQUOTE] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2022), + [sym_true] = ACTIONS(2020), + [sym_false] = ACTIONS(2020), + [anon_sym_NULL] = ACTIONS(2020), + [anon_sym_nullptr] = ACTIONS(2020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2020), + [anon_sym_decltype] = ACTIONS(2020), + [anon_sym_explicit] = ACTIONS(2020), + [anon_sym_typename] = ACTIONS(2020), + [anon_sym_template] = ACTIONS(2020), + [anon_sym_operator] = ACTIONS(2020), + [anon_sym_try] = ACTIONS(2020), + [anon_sym_delete] = ACTIONS(2020), + [anon_sym_throw] = ACTIONS(2020), + [anon_sym_namespace] = ACTIONS(2020), + [anon_sym_using] = ACTIONS(2020), + [anon_sym_static_assert] = ACTIONS(2020), + [anon_sym_concept] = ACTIONS(2020), + [anon_sym_co_return] = ACTIONS(2020), + [anon_sym_co_yield] = ACTIONS(2020), + [anon_sym_R_DQUOTE] = ACTIONS(2022), + [anon_sym_LR_DQUOTE] = ACTIONS(2022), + [anon_sym_uR_DQUOTE] = ACTIONS(2022), + [anon_sym_UR_DQUOTE] = ACTIONS(2022), + [anon_sym_u8R_DQUOTE] = ACTIONS(2022), + [anon_sym_co_await] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2020), + [anon_sym_requires] = ACTIONS(2020), + [sym_this] = ACTIONS(2020), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_FORWARD] = ACTIONS(2020), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2020), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_PS_GET] = ACTIONS(2020), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2020), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2020), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2020), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2020), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2020), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2020), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2020), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2020), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2020), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2020), + [anon_sym_MOZ_COLD] = ACTIONS(2020), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2020), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2020), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2020), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2020), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2020), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2020), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2020), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2020), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2020), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2020), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2020), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2020), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2020), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2020), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2020), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2020), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2020), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2020), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2020), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2020), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_NONNULL] = ACTIONS(2020), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2020), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2020), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2020), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2020), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2020), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_NORETURN] = ACTIONS(2020), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2020), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2020), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2020), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2020), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2020), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2020), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2020), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2020), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2020), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2020), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2020), + [anon_sym_MOZ_RAII] = ACTIONS(2020), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2020), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2020), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2020), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2020), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2020), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2020), + }, + [STATE(356)] = { + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2044), + [aux_sym_preproc_def_token1] = ACTIONS(2044), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [sym_preproc_directive] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_AMP_AMP] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2044), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym___extension__] = ACTIONS(2044), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym_COLON_COLON] = ACTIONS(2046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2046), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___based] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_RBRACE] = ACTIONS(2046), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [anon_sym_LBRACK] = ACTIONS(2044), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [anon_sym___inline] = ACTIONS(2044), + [anon_sym___inline__] = ACTIONS(2044), + [anon_sym___forceinline] = ACTIONS(2044), + [anon_sym_thread_local] = ACTIONS(2044), + [anon_sym___thread] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_constexpr] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym___restrict__] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym__Noreturn] = ACTIONS(2044), + [anon_sym_noreturn] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym_mutable] = ACTIONS(2044), + [anon_sym_constinit] = ACTIONS(2044), + [anon_sym_consteval] = ACTIONS(2044), + [anon_sym_alignas] = ACTIONS(2044), + [anon_sym__Alignas] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_class] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_else] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym___try] = ACTIONS(2044), + [anon_sym___leave] = ACTIONS(2044), + [anon_sym_not] = ACTIONS(2044), + [anon_sym_compl] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [anon_sym___alignof__] = ACTIONS(2044), + [anon_sym___alignof] = ACTIONS(2044), + [anon_sym__alignof] = ACTIONS(2044), + [anon_sym_alignof] = ACTIONS(2044), + [anon_sym__Alignof] = ACTIONS(2044), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2044), + [anon_sym_asm] = ACTIONS(2044), + [anon_sym___asm__] = ACTIONS(2044), + [anon_sym___asm] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [anon_sym_NULL] = ACTIONS(2044), + [anon_sym_nullptr] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2044), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_explicit] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(2044), + [anon_sym_operator] = ACTIONS(2044), + [anon_sym_try] = ACTIONS(2044), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_throw] = ACTIONS(2044), + [anon_sym_namespace] = ACTIONS(2044), + [anon_sym_using] = ACTIONS(2044), + [anon_sym_static_assert] = ACTIONS(2044), + [anon_sym_concept] = ACTIONS(2044), + [anon_sym_co_return] = ACTIONS(2044), + [anon_sym_co_yield] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2044), + [anon_sym_new] = ACTIONS(2044), + [anon_sym_requires] = ACTIONS(2044), + [sym_this] = ACTIONS(2044), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_FORWARD] = ACTIONS(2044), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_PS_GET] = ACTIONS(2044), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2044), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2044), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2044), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2044), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2044), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2044), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2044), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2044), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2044), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2044), + [anon_sym_MOZ_COLD] = ACTIONS(2044), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2044), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2044), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2044), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2044), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2044), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2044), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2044), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2044), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2044), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2044), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2044), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2044), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2044), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2044), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2044), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2044), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2044), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2044), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2044), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2044), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_NONNULL] = ACTIONS(2044), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2044), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2044), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2044), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2044), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2044), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_NORETURN] = ACTIONS(2044), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2044), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2044), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2044), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2044), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2044), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2044), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2044), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2044), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2044), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2044), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2044), + [anon_sym_MOZ_RAII] = ACTIONS(2044), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2044), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2044), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2044), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2044), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2044), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2044), + }, + [STATE(357)] = { + [sym_identifier] = ACTIONS(1966), + [aux_sym_preproc_include_token1] = ACTIONS(1966), + [aux_sym_preproc_def_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token2] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1966), + [sym_preproc_directive] = ACTIONS(1966), + [anon_sym_LPAREN2] = ACTIONS(1968), + [anon_sym_BANG] = ACTIONS(1968), + [anon_sym_TILDE] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym___extension__] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1966), + [anon_sym_virtual] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym___attribute__] = ACTIONS(1966), + [anon_sym___attribute] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1966), + [anon_sym___based] = ACTIONS(1966), + [anon_sym___cdecl] = ACTIONS(1966), + [anon_sym___clrcall] = ACTIONS(1966), + [anon_sym___stdcall] = ACTIONS(1966), + [anon_sym___fastcall] = ACTIONS(1966), + [anon_sym___thiscall] = ACTIONS(1966), + [anon_sym___vectorcall] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_register] = ACTIONS(1966), + [anon_sym_inline] = ACTIONS(1966), + [anon_sym___inline] = ACTIONS(1966), + [anon_sym___inline__] = ACTIONS(1966), + [anon_sym___forceinline] = ACTIONS(1966), + [anon_sym_thread_local] = ACTIONS(1966), + [anon_sym___thread] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_constexpr] = ACTIONS(1966), + [anon_sym_volatile] = ACTIONS(1966), + [anon_sym_restrict] = ACTIONS(1966), + [anon_sym___restrict__] = ACTIONS(1966), + [anon_sym__Atomic] = ACTIONS(1966), + [anon_sym__Noreturn] = ACTIONS(1966), + [anon_sym_noreturn] = ACTIONS(1966), + [anon_sym__Nonnull] = ACTIONS(1966), + [anon_sym_mutable] = ACTIONS(1966), + [anon_sym_constinit] = ACTIONS(1966), + [anon_sym_consteval] = ACTIONS(1966), + [anon_sym_alignas] = ACTIONS(1966), + [anon_sym__Alignas] = ACTIONS(1966), + [sym_primitive_type] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_class] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_else] = ACTIONS(1966), + [anon_sym_switch] = ACTIONS(1966), + [anon_sym_case] = ACTIONS(1966), + [anon_sym_default] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1966), + [anon_sym_do] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1966), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1966), + [anon_sym_continue] = ACTIONS(1966), + [anon_sym_goto] = ACTIONS(1966), + [anon_sym___try] = ACTIONS(1966), + [anon_sym___leave] = ACTIONS(1966), + [anon_sym_not] = ACTIONS(1966), + [anon_sym_compl] = ACTIONS(1966), + [anon_sym_DASH_DASH] = ACTIONS(1968), + [anon_sym_PLUS_PLUS] = ACTIONS(1968), + [anon_sym_sizeof] = ACTIONS(1966), + [anon_sym___alignof__] = ACTIONS(1966), + [anon_sym___alignof] = ACTIONS(1966), + [anon_sym__alignof] = ACTIONS(1966), + [anon_sym_alignof] = ACTIONS(1966), + [anon_sym__Alignof] = ACTIONS(1966), + [anon_sym_offsetof] = ACTIONS(1966), + [anon_sym__Generic] = ACTIONS(1966), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(1968), + [anon_sym_L_SQUOTE] = ACTIONS(1968), + [anon_sym_u_SQUOTE] = ACTIONS(1968), + [anon_sym_U_SQUOTE] = ACTIONS(1968), + [anon_sym_u8_SQUOTE] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(1968), + [anon_sym_L_DQUOTE] = ACTIONS(1968), + [anon_sym_u_DQUOTE] = ACTIONS(1968), + [anon_sym_U_DQUOTE] = ACTIONS(1968), + [anon_sym_u8_DQUOTE] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [sym_true] = ACTIONS(1966), + [sym_false] = ACTIONS(1966), + [anon_sym_NULL] = ACTIONS(1966), + [anon_sym_nullptr] = ACTIONS(1966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1966), + [anon_sym_decltype] = ACTIONS(1966), + [anon_sym_explicit] = ACTIONS(1966), + [anon_sym_typename] = ACTIONS(1966), + [anon_sym_template] = ACTIONS(1966), + [anon_sym_operator] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1966), + [anon_sym_delete] = ACTIONS(1966), + [anon_sym_throw] = ACTIONS(1966), + [anon_sym_namespace] = ACTIONS(1966), + [anon_sym_using] = ACTIONS(1966), + [anon_sym_static_assert] = ACTIONS(1966), + [anon_sym_concept] = ACTIONS(1966), + [anon_sym_co_return] = ACTIONS(1966), + [anon_sym_co_yield] = ACTIONS(1966), + [anon_sym_R_DQUOTE] = ACTIONS(1968), + [anon_sym_LR_DQUOTE] = ACTIONS(1968), + [anon_sym_uR_DQUOTE] = ACTIONS(1968), + [anon_sym_UR_DQUOTE] = ACTIONS(1968), + [anon_sym_u8R_DQUOTE] = ACTIONS(1968), + [anon_sym_co_await] = ACTIONS(1966), + [anon_sym_new] = ACTIONS(1966), + [anon_sym_requires] = ACTIONS(1966), + [sym_this] = ACTIONS(1966), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_FORWARD] = ACTIONS(1966), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1966), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_PS_GET] = ACTIONS(1966), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1966), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1966), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1966), + [anon_sym_MOZ_COLD] = ACTIONS(1966), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1966), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1966), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1966), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1966), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1966), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1966), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1966), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1966), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1966), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1966), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1966), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1966), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_RAII] = ACTIONS(1966), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1966), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1966), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1966), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1966), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1966), + }, + [STATE(358)] = { + [sym_identifier] = ACTIONS(1966), + [aux_sym_preproc_include_token1] = ACTIONS(1966), + [aux_sym_preproc_def_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token2] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1966), + [sym_preproc_directive] = ACTIONS(1966), + [anon_sym_LPAREN2] = ACTIONS(1968), + [anon_sym_BANG] = ACTIONS(1968), + [anon_sym_TILDE] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym___extension__] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1966), + [anon_sym_virtual] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym___attribute__] = ACTIONS(1966), + [anon_sym___attribute] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1966), + [anon_sym___based] = ACTIONS(1966), + [anon_sym___cdecl] = ACTIONS(1966), + [anon_sym___clrcall] = ACTIONS(1966), + [anon_sym___stdcall] = ACTIONS(1966), + [anon_sym___fastcall] = ACTIONS(1966), + [anon_sym___thiscall] = ACTIONS(1966), + [anon_sym___vectorcall] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_register] = ACTIONS(1966), + [anon_sym_inline] = ACTIONS(1966), + [anon_sym___inline] = ACTIONS(1966), + [anon_sym___inline__] = ACTIONS(1966), + [anon_sym___forceinline] = ACTIONS(1966), + [anon_sym_thread_local] = ACTIONS(1966), + [anon_sym___thread] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_constexpr] = ACTIONS(1966), + [anon_sym_volatile] = ACTIONS(1966), + [anon_sym_restrict] = ACTIONS(1966), + [anon_sym___restrict__] = ACTIONS(1966), + [anon_sym__Atomic] = ACTIONS(1966), + [anon_sym__Noreturn] = ACTIONS(1966), + [anon_sym_noreturn] = ACTIONS(1966), + [anon_sym__Nonnull] = ACTIONS(1966), + [anon_sym_mutable] = ACTIONS(1966), + [anon_sym_constinit] = ACTIONS(1966), + [anon_sym_consteval] = ACTIONS(1966), + [anon_sym_alignas] = ACTIONS(1966), + [anon_sym__Alignas] = ACTIONS(1966), + [sym_primitive_type] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_class] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_else] = ACTIONS(1966), + [anon_sym_switch] = ACTIONS(1966), + [anon_sym_case] = ACTIONS(1966), + [anon_sym_default] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1966), + [anon_sym_do] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1966), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1966), + [anon_sym_continue] = ACTIONS(1966), + [anon_sym_goto] = ACTIONS(1966), + [anon_sym___try] = ACTIONS(1966), + [anon_sym___leave] = ACTIONS(1966), + [anon_sym_not] = ACTIONS(1966), + [anon_sym_compl] = ACTIONS(1966), + [anon_sym_DASH_DASH] = ACTIONS(1968), + [anon_sym_PLUS_PLUS] = ACTIONS(1968), + [anon_sym_sizeof] = ACTIONS(1966), + [anon_sym___alignof__] = ACTIONS(1966), + [anon_sym___alignof] = ACTIONS(1966), + [anon_sym__alignof] = ACTIONS(1966), + [anon_sym_alignof] = ACTIONS(1966), + [anon_sym__Alignof] = ACTIONS(1966), + [anon_sym_offsetof] = ACTIONS(1966), + [anon_sym__Generic] = ACTIONS(1966), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(1968), + [anon_sym_L_SQUOTE] = ACTIONS(1968), + [anon_sym_u_SQUOTE] = ACTIONS(1968), + [anon_sym_U_SQUOTE] = ACTIONS(1968), + [anon_sym_u8_SQUOTE] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(1968), + [anon_sym_L_DQUOTE] = ACTIONS(1968), + [anon_sym_u_DQUOTE] = ACTIONS(1968), + [anon_sym_U_DQUOTE] = ACTIONS(1968), + [anon_sym_u8_DQUOTE] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [sym_true] = ACTIONS(1966), + [sym_false] = ACTIONS(1966), + [anon_sym_NULL] = ACTIONS(1966), + [anon_sym_nullptr] = ACTIONS(1966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1966), + [anon_sym_decltype] = ACTIONS(1966), + [anon_sym_explicit] = ACTIONS(1966), + [anon_sym_typename] = ACTIONS(1966), + [anon_sym_template] = ACTIONS(1966), + [anon_sym_operator] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1966), + [anon_sym_delete] = ACTIONS(1966), + [anon_sym_throw] = ACTIONS(1966), + [anon_sym_namespace] = ACTIONS(1966), + [anon_sym_using] = ACTIONS(1966), + [anon_sym_static_assert] = ACTIONS(1966), + [anon_sym_concept] = ACTIONS(1966), + [anon_sym_co_return] = ACTIONS(1966), + [anon_sym_co_yield] = ACTIONS(1966), + [anon_sym_R_DQUOTE] = ACTIONS(1968), + [anon_sym_LR_DQUOTE] = ACTIONS(1968), + [anon_sym_uR_DQUOTE] = ACTIONS(1968), + [anon_sym_UR_DQUOTE] = ACTIONS(1968), + [anon_sym_u8R_DQUOTE] = ACTIONS(1968), + [anon_sym_co_await] = ACTIONS(1966), + [anon_sym_new] = ACTIONS(1966), + [anon_sym_requires] = ACTIONS(1966), + [sym_this] = ACTIONS(1966), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_FORWARD] = ACTIONS(1966), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1966), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_PS_GET] = ACTIONS(1966), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1966), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1966), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1966), + [anon_sym_MOZ_COLD] = ACTIONS(1966), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1966), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1966), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1966), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1966), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1966), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1966), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1966), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1966), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1966), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1966), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1966), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1966), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_RAII] = ACTIONS(1966), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1966), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1966), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1966), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1966), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1966), + }, + [STATE(359)] = { + [sym_identifier] = ACTIONS(2168), + [aux_sym_preproc_include_token1] = ACTIONS(2168), + [aux_sym_preproc_def_token1] = ACTIONS(2168), + [aux_sym_preproc_if_token1] = ACTIONS(2168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2168), + [sym_preproc_directive] = ACTIONS(2168), + [anon_sym_LPAREN2] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2168), + [anon_sym_PLUS] = ACTIONS(2168), + [anon_sym_STAR] = ACTIONS(2170), + [anon_sym_AMP_AMP] = ACTIONS(2170), + [anon_sym_AMP] = ACTIONS(2168), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym___extension__] = ACTIONS(2168), + [anon_sym_typedef] = ACTIONS(2168), + [anon_sym_virtual] = ACTIONS(2168), + [anon_sym_extern] = ACTIONS(2168), + [anon_sym___attribute__] = ACTIONS(2168), + [anon_sym___attribute] = ACTIONS(2168), + [anon_sym_COLON_COLON] = ACTIONS(2170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2170), + [anon_sym___declspec] = ACTIONS(2168), + [anon_sym___based] = ACTIONS(2168), + [anon_sym___cdecl] = ACTIONS(2168), + [anon_sym___clrcall] = ACTIONS(2168), + [anon_sym___stdcall] = ACTIONS(2168), + [anon_sym___fastcall] = ACTIONS(2168), + [anon_sym___thiscall] = ACTIONS(2168), + [anon_sym___vectorcall] = ACTIONS(2168), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_signed] = ACTIONS(2168), + [anon_sym_unsigned] = ACTIONS(2168), + [anon_sym_long] = ACTIONS(2168), + [anon_sym_short] = ACTIONS(2168), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_static] = ACTIONS(2168), + [anon_sym_register] = ACTIONS(2168), + [anon_sym_inline] = ACTIONS(2168), + [anon_sym___inline] = ACTIONS(2168), + [anon_sym___inline__] = ACTIONS(2168), + [anon_sym___forceinline] = ACTIONS(2168), + [anon_sym_thread_local] = ACTIONS(2168), + [anon_sym___thread] = ACTIONS(2168), + [anon_sym_const] = ACTIONS(2168), + [anon_sym_constexpr] = ACTIONS(2168), + [anon_sym_volatile] = ACTIONS(2168), + [anon_sym_restrict] = ACTIONS(2168), + [anon_sym___restrict__] = ACTIONS(2168), + [anon_sym__Atomic] = ACTIONS(2168), + [anon_sym__Noreturn] = ACTIONS(2168), + [anon_sym_noreturn] = ACTIONS(2168), + [anon_sym__Nonnull] = ACTIONS(2168), + [anon_sym_mutable] = ACTIONS(2168), + [anon_sym_constinit] = ACTIONS(2168), + [anon_sym_consteval] = ACTIONS(2168), + [anon_sym_alignas] = ACTIONS(2168), + [anon_sym__Alignas] = ACTIONS(2168), + [sym_primitive_type] = ACTIONS(2168), + [anon_sym_enum] = ACTIONS(2168), + [anon_sym_class] = ACTIONS(2168), + [anon_sym_struct] = ACTIONS(2168), + [anon_sym_union] = ACTIONS(2168), + [anon_sym_if] = ACTIONS(2168), + [anon_sym_else] = ACTIONS(2168), + [anon_sym_switch] = ACTIONS(2168), + [anon_sym_case] = ACTIONS(2168), + [anon_sym_default] = ACTIONS(2168), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_do] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2168), + [anon_sym_return] = ACTIONS(2168), + [anon_sym_break] = ACTIONS(2168), + [anon_sym_continue] = ACTIONS(2168), + [anon_sym_goto] = ACTIONS(2168), + [anon_sym___try] = ACTIONS(2168), + [anon_sym___leave] = ACTIONS(2168), + [anon_sym_not] = ACTIONS(2168), + [anon_sym_compl] = ACTIONS(2168), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_sizeof] = ACTIONS(2168), + [anon_sym___alignof__] = ACTIONS(2168), + [anon_sym___alignof] = ACTIONS(2168), + [anon_sym__alignof] = ACTIONS(2168), + [anon_sym_alignof] = ACTIONS(2168), + [anon_sym__Alignof] = ACTIONS(2168), + [anon_sym_offsetof] = ACTIONS(2168), + [anon_sym__Generic] = ACTIONS(2168), + [anon_sym_asm] = ACTIONS(2168), + [anon_sym___asm__] = ACTIONS(2168), + [anon_sym___asm] = ACTIONS(2168), + [sym_number_literal] = ACTIONS(2170), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2170), + [anon_sym_u_DQUOTE] = ACTIONS(2170), + [anon_sym_U_DQUOTE] = ACTIONS(2170), + [anon_sym_u8_DQUOTE] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2168), + [anon_sym_nullptr] = ACTIONS(2168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2168), + [anon_sym_decltype] = ACTIONS(2168), + [anon_sym_explicit] = ACTIONS(2168), + [anon_sym_typename] = ACTIONS(2168), + [anon_sym_template] = ACTIONS(2168), + [anon_sym_operator] = ACTIONS(2168), + [anon_sym_try] = ACTIONS(2168), + [anon_sym_delete] = ACTIONS(2168), + [anon_sym_throw] = ACTIONS(2168), + [anon_sym_namespace] = ACTIONS(2168), + [anon_sym_using] = ACTIONS(2168), + [anon_sym_static_assert] = ACTIONS(2168), + [anon_sym_concept] = ACTIONS(2168), + [anon_sym_co_return] = ACTIONS(2168), + [anon_sym_co_yield] = ACTIONS(2168), + [anon_sym_R_DQUOTE] = ACTIONS(2170), + [anon_sym_LR_DQUOTE] = ACTIONS(2170), + [anon_sym_uR_DQUOTE] = ACTIONS(2170), + [anon_sym_UR_DQUOTE] = ACTIONS(2170), + [anon_sym_u8R_DQUOTE] = ACTIONS(2170), + [anon_sym_co_await] = ACTIONS(2168), + [anon_sym_new] = ACTIONS(2168), + [anon_sym_requires] = ACTIONS(2168), + [sym_this] = ACTIONS(2168), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_FORWARD] = ACTIONS(2168), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2168), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_PS_GET] = ACTIONS(2168), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2168), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2168), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2168), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2168), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2168), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2168), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2168), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2168), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2168), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2168), + [anon_sym_MOZ_COLD] = ACTIONS(2168), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2168), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2168), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2168), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2168), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2168), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2168), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2168), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2168), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2168), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2168), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2168), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2168), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2168), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2168), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2168), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2168), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2168), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2168), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2168), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2168), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_NONNULL] = ACTIONS(2168), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2168), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2168), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2168), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2168), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2168), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_NORETURN] = ACTIONS(2168), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2168), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2168), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2168), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2168), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2168), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2168), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2168), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2168), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2168), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2168), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2168), + [anon_sym_MOZ_RAII] = ACTIONS(2168), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2168), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2168), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2168), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2168), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2168), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2168), + }, + [STATE(360)] = { + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2096), + [aux_sym_preproc_def_token1] = ACTIONS(2096), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [sym_preproc_directive] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_AMP_AMP] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2096), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym___extension__] = ACTIONS(2096), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_virtual] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym_COLON_COLON] = ACTIONS(2098), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2098), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___based] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [anon_sym_LBRACK] = ACTIONS(2096), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [anon_sym___inline] = ACTIONS(2096), + [anon_sym___inline__] = ACTIONS(2096), + [anon_sym___forceinline] = ACTIONS(2096), + [anon_sym_thread_local] = ACTIONS(2096), + [anon_sym___thread] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_constexpr] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym___restrict__] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym__Noreturn] = ACTIONS(2096), + [anon_sym_noreturn] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym_mutable] = ACTIONS(2096), + [anon_sym_constinit] = ACTIONS(2096), + [anon_sym_consteval] = ACTIONS(2096), + [anon_sym_alignas] = ACTIONS(2096), + [anon_sym__Alignas] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_class] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_else] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym___try] = ACTIONS(2096), + [anon_sym___leave] = ACTIONS(2096), + [anon_sym_not] = ACTIONS(2096), + [anon_sym_compl] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2096), + [anon_sym___alignof] = ACTIONS(2096), + [anon_sym__alignof] = ACTIONS(2096), + [anon_sym_alignof] = ACTIONS(2096), + [anon_sym__Alignof] = ACTIONS(2096), + [anon_sym_offsetof] = ACTIONS(2096), + [anon_sym__Generic] = ACTIONS(2096), + [anon_sym_asm] = ACTIONS(2096), + [anon_sym___asm__] = ACTIONS(2096), + [anon_sym___asm] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [anon_sym_NULL] = ACTIONS(2096), + [anon_sym_nullptr] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2096), + [anon_sym_decltype] = ACTIONS(2096), + [anon_sym_explicit] = ACTIONS(2096), + [anon_sym_typename] = ACTIONS(2096), + [anon_sym_template] = ACTIONS(2096), + [anon_sym_operator] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2096), + [anon_sym_delete] = ACTIONS(2096), + [anon_sym_throw] = ACTIONS(2096), + [anon_sym_namespace] = ACTIONS(2096), + [anon_sym_using] = ACTIONS(2096), + [anon_sym_static_assert] = ACTIONS(2096), + [anon_sym_concept] = ACTIONS(2096), + [anon_sym_co_return] = ACTIONS(2096), + [anon_sym_co_yield] = ACTIONS(2096), + [anon_sym_R_DQUOTE] = ACTIONS(2098), + [anon_sym_LR_DQUOTE] = ACTIONS(2098), + [anon_sym_uR_DQUOTE] = ACTIONS(2098), + [anon_sym_UR_DQUOTE] = ACTIONS(2098), + [anon_sym_u8R_DQUOTE] = ACTIONS(2098), + [anon_sym_co_await] = ACTIONS(2096), + [anon_sym_new] = ACTIONS(2096), + [anon_sym_requires] = ACTIONS(2096), + [sym_this] = ACTIONS(2096), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_FORWARD] = ACTIONS(2096), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_PS_GET] = ACTIONS(2096), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2096), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2096), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2096), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2096), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2096), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2096), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2096), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2096), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2096), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2096), + [anon_sym_MOZ_COLD] = ACTIONS(2096), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2096), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2096), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2096), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2096), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2096), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2096), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2096), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2096), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2096), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2096), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2096), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2096), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2096), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2096), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2096), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2096), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2096), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2096), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2096), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2096), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_NONNULL] = ACTIONS(2096), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2096), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2096), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2096), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2096), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2096), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_NORETURN] = ACTIONS(2096), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2096), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2096), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2096), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2096), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2096), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2096), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2096), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2096), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2096), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2096), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2096), + [anon_sym_MOZ_RAII] = ACTIONS(2096), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2096), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2096), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2096), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2096), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2096), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2096), + }, + [STATE(361)] = { + [sym_identifier] = ACTIONS(2152), + [aux_sym_preproc_include_token1] = ACTIONS(2152), + [aux_sym_preproc_def_token1] = ACTIONS(2152), + [aux_sym_preproc_if_token1] = ACTIONS(2152), + [aux_sym_preproc_if_token2] = ACTIONS(2152), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2152), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2152), + [sym_preproc_directive] = ACTIONS(2152), + [anon_sym_LPAREN2] = ACTIONS(2154), + [anon_sym_BANG] = ACTIONS(2154), + [anon_sym_TILDE] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_STAR] = ACTIONS(2154), + [anon_sym_AMP_AMP] = ACTIONS(2154), + [anon_sym_AMP] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym___extension__] = ACTIONS(2152), + [anon_sym_typedef] = ACTIONS(2152), + [anon_sym_virtual] = ACTIONS(2152), + [anon_sym_extern] = ACTIONS(2152), + [anon_sym___attribute__] = ACTIONS(2152), + [anon_sym___attribute] = ACTIONS(2152), + [anon_sym_COLON_COLON] = ACTIONS(2154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2154), + [anon_sym___declspec] = ACTIONS(2152), + [anon_sym___based] = ACTIONS(2152), + [anon_sym___cdecl] = ACTIONS(2152), + [anon_sym___clrcall] = ACTIONS(2152), + [anon_sym___stdcall] = ACTIONS(2152), + [anon_sym___fastcall] = ACTIONS(2152), + [anon_sym___thiscall] = ACTIONS(2152), + [anon_sym___vectorcall] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_signed] = ACTIONS(2152), + [anon_sym_unsigned] = ACTIONS(2152), + [anon_sym_long] = ACTIONS(2152), + [anon_sym_short] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_register] = ACTIONS(2152), + [anon_sym_inline] = ACTIONS(2152), + [anon_sym___inline] = ACTIONS(2152), + [anon_sym___inline__] = ACTIONS(2152), + [anon_sym___forceinline] = ACTIONS(2152), + [anon_sym_thread_local] = ACTIONS(2152), + [anon_sym___thread] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_constexpr] = ACTIONS(2152), + [anon_sym_volatile] = ACTIONS(2152), + [anon_sym_restrict] = ACTIONS(2152), + [anon_sym___restrict__] = ACTIONS(2152), + [anon_sym__Atomic] = ACTIONS(2152), + [anon_sym__Noreturn] = ACTIONS(2152), + [anon_sym_noreturn] = ACTIONS(2152), + [anon_sym__Nonnull] = ACTIONS(2152), + [anon_sym_mutable] = ACTIONS(2152), + [anon_sym_constinit] = ACTIONS(2152), + [anon_sym_consteval] = ACTIONS(2152), + [anon_sym_alignas] = ACTIONS(2152), + [anon_sym__Alignas] = ACTIONS(2152), + [sym_primitive_type] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_struct] = ACTIONS(2152), + [anon_sym_union] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_else] = ACTIONS(2152), + [anon_sym_switch] = ACTIONS(2152), + [anon_sym_case] = ACTIONS(2152), + [anon_sym_default] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_goto] = ACTIONS(2152), + [anon_sym___try] = ACTIONS(2152), + [anon_sym___leave] = ACTIONS(2152), + [anon_sym_not] = ACTIONS(2152), + [anon_sym_compl] = ACTIONS(2152), + [anon_sym_DASH_DASH] = ACTIONS(2154), + [anon_sym_PLUS_PLUS] = ACTIONS(2154), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2152), + [anon_sym___alignof] = ACTIONS(2152), + [anon_sym__alignof] = ACTIONS(2152), + [anon_sym_alignof] = ACTIONS(2152), + [anon_sym__Alignof] = ACTIONS(2152), + [anon_sym_offsetof] = ACTIONS(2152), + [anon_sym__Generic] = ACTIONS(2152), + [anon_sym_asm] = ACTIONS(2152), + [anon_sym___asm__] = ACTIONS(2152), + [anon_sym___asm] = ACTIONS(2152), + [sym_number_literal] = ACTIONS(2154), + [anon_sym_L_SQUOTE] = ACTIONS(2154), + [anon_sym_u_SQUOTE] = ACTIONS(2154), + [anon_sym_U_SQUOTE] = ACTIONS(2154), + [anon_sym_u8_SQUOTE] = ACTIONS(2154), + [anon_sym_SQUOTE] = ACTIONS(2154), + [anon_sym_L_DQUOTE] = ACTIONS(2154), + [anon_sym_u_DQUOTE] = ACTIONS(2154), + [anon_sym_U_DQUOTE] = ACTIONS(2154), + [anon_sym_u8_DQUOTE] = ACTIONS(2154), + [anon_sym_DQUOTE] = ACTIONS(2154), + [sym_true] = ACTIONS(2152), + [sym_false] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_nullptr] = ACTIONS(2152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2152), + [anon_sym_decltype] = ACTIONS(2152), + [anon_sym_explicit] = ACTIONS(2152), + [anon_sym_typename] = ACTIONS(2152), + [anon_sym_template] = ACTIONS(2152), + [anon_sym_operator] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2152), + [anon_sym_delete] = ACTIONS(2152), + [anon_sym_throw] = ACTIONS(2152), + [anon_sym_namespace] = ACTIONS(2152), + [anon_sym_using] = ACTIONS(2152), + [anon_sym_static_assert] = ACTIONS(2152), + [anon_sym_concept] = ACTIONS(2152), + [anon_sym_co_return] = ACTIONS(2152), + [anon_sym_co_yield] = ACTIONS(2152), + [anon_sym_R_DQUOTE] = ACTIONS(2154), + [anon_sym_LR_DQUOTE] = ACTIONS(2154), + [anon_sym_uR_DQUOTE] = ACTIONS(2154), + [anon_sym_UR_DQUOTE] = ACTIONS(2154), + [anon_sym_u8R_DQUOTE] = ACTIONS(2154), + [anon_sym_co_await] = ACTIONS(2152), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_requires] = ACTIONS(2152), + [sym_this] = ACTIONS(2152), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_FORWARD] = ACTIONS(2152), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2152), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_PS_GET] = ACTIONS(2152), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2152), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2152), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2152), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2152), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2152), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2152), + [anon_sym_MOZ_COLD] = ACTIONS(2152), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2152), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2152), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2152), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2152), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2152), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2152), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2152), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2152), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2152), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2152), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2152), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2152), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2152), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_NONNULL] = ACTIONS(2152), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2152), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2152), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2152), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2152), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2152), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2152), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2152), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2152), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2152), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2152), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2152), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2152), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2152), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2152), + [anon_sym_MOZ_RAII] = ACTIONS(2152), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2152), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2152), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2152), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2152), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2152), + }, + [STATE(362)] = { + [sym_identifier] = ACTIONS(2156), + [aux_sym_preproc_include_token1] = ACTIONS(2156), + [aux_sym_preproc_def_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token2] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2156), + [sym_preproc_directive] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(2158), + [anon_sym_BANG] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2158), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym___extension__] = ACTIONS(2156), + [anon_sym_typedef] = ACTIONS(2156), + [anon_sym_virtual] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym___attribute__] = ACTIONS(2156), + [anon_sym___attribute] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2158), + [anon_sym___declspec] = ACTIONS(2156), + [anon_sym___based] = ACTIONS(2156), + [anon_sym___cdecl] = ACTIONS(2156), + [anon_sym___clrcall] = ACTIONS(2156), + [anon_sym___stdcall] = ACTIONS(2156), + [anon_sym___fastcall] = ACTIONS(2156), + [anon_sym___thiscall] = ACTIONS(2156), + [anon_sym___vectorcall] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2158), + [anon_sym_signed] = ACTIONS(2156), + [anon_sym_unsigned] = ACTIONS(2156), + [anon_sym_long] = ACTIONS(2156), + [anon_sym_short] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_inline] = ACTIONS(2156), + [anon_sym___inline] = ACTIONS(2156), + [anon_sym___inline__] = ACTIONS(2156), + [anon_sym___forceinline] = ACTIONS(2156), + [anon_sym_thread_local] = ACTIONS(2156), + [anon_sym___thread] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_constexpr] = ACTIONS(2156), + [anon_sym_volatile] = ACTIONS(2156), + [anon_sym_restrict] = ACTIONS(2156), + [anon_sym___restrict__] = ACTIONS(2156), + [anon_sym__Atomic] = ACTIONS(2156), + [anon_sym__Noreturn] = ACTIONS(2156), + [anon_sym_noreturn] = ACTIONS(2156), + [anon_sym__Nonnull] = ACTIONS(2156), + [anon_sym_mutable] = ACTIONS(2156), + [anon_sym_constinit] = ACTIONS(2156), + [anon_sym_consteval] = ACTIONS(2156), + [anon_sym_alignas] = ACTIONS(2156), + [anon_sym__Alignas] = ACTIONS(2156), + [sym_primitive_type] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_case] = ACTIONS(2156), + [anon_sym_default] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_goto] = ACTIONS(2156), + [anon_sym___try] = ACTIONS(2156), + [anon_sym___leave] = ACTIONS(2156), + [anon_sym_not] = ACTIONS(2156), + [anon_sym_compl] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2158), + [anon_sym_PLUS_PLUS] = ACTIONS(2158), + [anon_sym_sizeof] = ACTIONS(2156), + [anon_sym___alignof__] = ACTIONS(2156), + [anon_sym___alignof] = ACTIONS(2156), + [anon_sym__alignof] = ACTIONS(2156), + [anon_sym_alignof] = ACTIONS(2156), + [anon_sym__Alignof] = ACTIONS(2156), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2156), + [anon_sym_asm] = ACTIONS(2156), + [anon_sym___asm__] = ACTIONS(2156), + [anon_sym___asm] = ACTIONS(2156), + [sym_number_literal] = ACTIONS(2158), + [anon_sym_L_SQUOTE] = ACTIONS(2158), + [anon_sym_u_SQUOTE] = ACTIONS(2158), + [anon_sym_U_SQUOTE] = ACTIONS(2158), + [anon_sym_u8_SQUOTE] = ACTIONS(2158), + [anon_sym_SQUOTE] = ACTIONS(2158), + [anon_sym_L_DQUOTE] = ACTIONS(2158), + [anon_sym_u_DQUOTE] = ACTIONS(2158), + [anon_sym_U_DQUOTE] = ACTIONS(2158), + [anon_sym_u8_DQUOTE] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [anon_sym_NULL] = ACTIONS(2156), + [anon_sym_nullptr] = ACTIONS(2156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2156), + [anon_sym_decltype] = ACTIONS(2156), + [anon_sym_explicit] = ACTIONS(2156), + [anon_sym_typename] = ACTIONS(2156), + [anon_sym_template] = ACTIONS(2156), + [anon_sym_operator] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_static_assert] = ACTIONS(2156), + [anon_sym_concept] = ACTIONS(2156), + [anon_sym_co_return] = ACTIONS(2156), + [anon_sym_co_yield] = ACTIONS(2156), + [anon_sym_R_DQUOTE] = ACTIONS(2158), + [anon_sym_LR_DQUOTE] = ACTIONS(2158), + [anon_sym_uR_DQUOTE] = ACTIONS(2158), + [anon_sym_UR_DQUOTE] = ACTIONS(2158), + [anon_sym_u8R_DQUOTE] = ACTIONS(2158), + [anon_sym_co_await] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_requires] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_FORWARD] = ACTIONS(2156), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2156), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_PS_GET] = ACTIONS(2156), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2156), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2156), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2156), + [anon_sym_MOZ_COLD] = ACTIONS(2156), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2156), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2156), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2156), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2156), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2156), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2156), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2156), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2156), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2156), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2156), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2156), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2156), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_RAII] = ACTIONS(2156), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2156), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2156), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2156), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2156), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2156), + }, + [STATE(363)] = { + [sym_identifier] = ACTIONS(2156), + [aux_sym_preproc_include_token1] = ACTIONS(2156), + [aux_sym_preproc_def_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token2] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2156), + [sym_preproc_directive] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(2158), + [anon_sym_BANG] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2158), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym___extension__] = ACTIONS(2156), + [anon_sym_typedef] = ACTIONS(2156), + [anon_sym_virtual] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym___attribute__] = ACTIONS(2156), + [anon_sym___attribute] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2158), + [anon_sym___declspec] = ACTIONS(2156), + [anon_sym___based] = ACTIONS(2156), + [anon_sym___cdecl] = ACTIONS(2156), + [anon_sym___clrcall] = ACTIONS(2156), + [anon_sym___stdcall] = ACTIONS(2156), + [anon_sym___fastcall] = ACTIONS(2156), + [anon_sym___thiscall] = ACTIONS(2156), + [anon_sym___vectorcall] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2158), + [anon_sym_signed] = ACTIONS(2156), + [anon_sym_unsigned] = ACTIONS(2156), + [anon_sym_long] = ACTIONS(2156), + [anon_sym_short] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_inline] = ACTIONS(2156), + [anon_sym___inline] = ACTIONS(2156), + [anon_sym___inline__] = ACTIONS(2156), + [anon_sym___forceinline] = ACTIONS(2156), + [anon_sym_thread_local] = ACTIONS(2156), + [anon_sym___thread] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_constexpr] = ACTIONS(2156), + [anon_sym_volatile] = ACTIONS(2156), + [anon_sym_restrict] = ACTIONS(2156), + [anon_sym___restrict__] = ACTIONS(2156), + [anon_sym__Atomic] = ACTIONS(2156), + [anon_sym__Noreturn] = ACTIONS(2156), + [anon_sym_noreturn] = ACTIONS(2156), + [anon_sym__Nonnull] = ACTIONS(2156), + [anon_sym_mutable] = ACTIONS(2156), + [anon_sym_constinit] = ACTIONS(2156), + [anon_sym_consteval] = ACTIONS(2156), + [anon_sym_alignas] = ACTIONS(2156), + [anon_sym__Alignas] = ACTIONS(2156), + [sym_primitive_type] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_case] = ACTIONS(2156), + [anon_sym_default] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_goto] = ACTIONS(2156), + [anon_sym___try] = ACTIONS(2156), + [anon_sym___leave] = ACTIONS(2156), + [anon_sym_not] = ACTIONS(2156), + [anon_sym_compl] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2158), + [anon_sym_PLUS_PLUS] = ACTIONS(2158), + [anon_sym_sizeof] = ACTIONS(2156), + [anon_sym___alignof__] = ACTIONS(2156), + [anon_sym___alignof] = ACTIONS(2156), + [anon_sym__alignof] = ACTIONS(2156), + [anon_sym_alignof] = ACTIONS(2156), + [anon_sym__Alignof] = ACTIONS(2156), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2156), + [anon_sym_asm] = ACTIONS(2156), + [anon_sym___asm__] = ACTIONS(2156), + [anon_sym___asm] = ACTIONS(2156), + [sym_number_literal] = ACTIONS(2158), + [anon_sym_L_SQUOTE] = ACTIONS(2158), + [anon_sym_u_SQUOTE] = ACTIONS(2158), + [anon_sym_U_SQUOTE] = ACTIONS(2158), + [anon_sym_u8_SQUOTE] = ACTIONS(2158), + [anon_sym_SQUOTE] = ACTIONS(2158), + [anon_sym_L_DQUOTE] = ACTIONS(2158), + [anon_sym_u_DQUOTE] = ACTIONS(2158), + [anon_sym_U_DQUOTE] = ACTIONS(2158), + [anon_sym_u8_DQUOTE] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [anon_sym_NULL] = ACTIONS(2156), + [anon_sym_nullptr] = ACTIONS(2156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2156), + [anon_sym_decltype] = ACTIONS(2156), + [anon_sym_explicit] = ACTIONS(2156), + [anon_sym_typename] = ACTIONS(2156), + [anon_sym_template] = ACTIONS(2156), + [anon_sym_operator] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_static_assert] = ACTIONS(2156), + [anon_sym_concept] = ACTIONS(2156), + [anon_sym_co_return] = ACTIONS(2156), + [anon_sym_co_yield] = ACTIONS(2156), + [anon_sym_R_DQUOTE] = ACTIONS(2158), + [anon_sym_LR_DQUOTE] = ACTIONS(2158), + [anon_sym_uR_DQUOTE] = ACTIONS(2158), + [anon_sym_UR_DQUOTE] = ACTIONS(2158), + [anon_sym_u8R_DQUOTE] = ACTIONS(2158), + [anon_sym_co_await] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_requires] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_FORWARD] = ACTIONS(2156), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2156), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_PS_GET] = ACTIONS(2156), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2156), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2156), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2156), + [anon_sym_MOZ_COLD] = ACTIONS(2156), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2156), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2156), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2156), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2156), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2156), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2156), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2156), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2156), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2156), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2156), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2156), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2156), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_RAII] = ACTIONS(2156), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2156), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2156), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2156), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2156), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2156), + }, + [STATE(364)] = { + [sym_identifier] = ACTIONS(2148), + [aux_sym_preproc_include_token1] = ACTIONS(2148), + [aux_sym_preproc_def_token1] = ACTIONS(2148), + [aux_sym_preproc_if_token1] = ACTIONS(2148), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2148), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2148), + [sym_preproc_directive] = ACTIONS(2148), + [anon_sym_LPAREN2] = ACTIONS(2150), + [anon_sym_BANG] = ACTIONS(2150), + [anon_sym_TILDE] = ACTIONS(2150), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_PLUS] = ACTIONS(2148), + [anon_sym_STAR] = ACTIONS(2150), + [anon_sym_AMP_AMP] = ACTIONS(2150), + [anon_sym_AMP] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym___extension__] = ACTIONS(2148), + [anon_sym_typedef] = ACTIONS(2148), + [anon_sym_virtual] = ACTIONS(2148), + [anon_sym_extern] = ACTIONS(2148), + [anon_sym___attribute__] = ACTIONS(2148), + [anon_sym___attribute] = ACTIONS(2148), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2150), + [anon_sym___declspec] = ACTIONS(2148), + [anon_sym___based] = ACTIONS(2148), + [anon_sym___cdecl] = ACTIONS(2148), + [anon_sym___clrcall] = ACTIONS(2148), + [anon_sym___stdcall] = ACTIONS(2148), + [anon_sym___fastcall] = ACTIONS(2148), + [anon_sym___thiscall] = ACTIONS(2148), + [anon_sym___vectorcall] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_signed] = ACTIONS(2148), + [anon_sym_unsigned] = ACTIONS(2148), + [anon_sym_long] = ACTIONS(2148), + [anon_sym_short] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_register] = ACTIONS(2148), + [anon_sym_inline] = ACTIONS(2148), + [anon_sym___inline] = ACTIONS(2148), + [anon_sym___inline__] = ACTIONS(2148), + [anon_sym___forceinline] = ACTIONS(2148), + [anon_sym_thread_local] = ACTIONS(2148), + [anon_sym___thread] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_constexpr] = ACTIONS(2148), + [anon_sym_volatile] = ACTIONS(2148), + [anon_sym_restrict] = ACTIONS(2148), + [anon_sym___restrict__] = ACTIONS(2148), + [anon_sym__Atomic] = ACTIONS(2148), + [anon_sym__Noreturn] = ACTIONS(2148), + [anon_sym_noreturn] = ACTIONS(2148), + [anon_sym__Nonnull] = ACTIONS(2148), + [anon_sym_mutable] = ACTIONS(2148), + [anon_sym_constinit] = ACTIONS(2148), + [anon_sym_consteval] = ACTIONS(2148), + [anon_sym_alignas] = ACTIONS(2148), + [anon_sym__Alignas] = ACTIONS(2148), + [sym_primitive_type] = ACTIONS(2148), + [anon_sym_enum] = ACTIONS(2148), + [anon_sym_class] = ACTIONS(2148), + [anon_sym_struct] = ACTIONS(2148), + [anon_sym_union] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2148), + [anon_sym_else] = ACTIONS(2148), + [anon_sym_switch] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2148), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2148), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_for] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2148), + [anon_sym_break] = ACTIONS(2148), + [anon_sym_continue] = ACTIONS(2148), + [anon_sym_goto] = ACTIONS(2148), + [anon_sym___try] = ACTIONS(2148), + [anon_sym___leave] = ACTIONS(2148), + [anon_sym_not] = ACTIONS(2148), + [anon_sym_compl] = ACTIONS(2148), + [anon_sym_DASH_DASH] = ACTIONS(2150), + [anon_sym_PLUS_PLUS] = ACTIONS(2150), + [anon_sym_sizeof] = ACTIONS(2148), + [anon_sym___alignof__] = ACTIONS(2148), + [anon_sym___alignof] = ACTIONS(2148), + [anon_sym__alignof] = ACTIONS(2148), + [anon_sym_alignof] = ACTIONS(2148), + [anon_sym__Alignof] = ACTIONS(2148), + [anon_sym_offsetof] = ACTIONS(2148), + [anon_sym__Generic] = ACTIONS(2148), + [anon_sym_asm] = ACTIONS(2148), + [anon_sym___asm__] = ACTIONS(2148), + [anon_sym___asm] = ACTIONS(2148), + [sym_number_literal] = ACTIONS(2150), + [anon_sym_L_SQUOTE] = ACTIONS(2150), + [anon_sym_u_SQUOTE] = ACTIONS(2150), + [anon_sym_U_SQUOTE] = ACTIONS(2150), + [anon_sym_u8_SQUOTE] = ACTIONS(2150), + [anon_sym_SQUOTE] = ACTIONS(2150), + [anon_sym_L_DQUOTE] = ACTIONS(2150), + [anon_sym_u_DQUOTE] = ACTIONS(2150), + [anon_sym_U_DQUOTE] = ACTIONS(2150), + [anon_sym_u8_DQUOTE] = ACTIONS(2150), + [anon_sym_DQUOTE] = ACTIONS(2150), + [sym_true] = ACTIONS(2148), + [sym_false] = ACTIONS(2148), + [anon_sym_NULL] = ACTIONS(2148), + [anon_sym_nullptr] = ACTIONS(2148), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2148), + [anon_sym_decltype] = ACTIONS(2148), + [anon_sym_explicit] = ACTIONS(2148), + [anon_sym_typename] = ACTIONS(2148), + [anon_sym_template] = ACTIONS(2148), + [anon_sym_operator] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2148), + [anon_sym_delete] = ACTIONS(2148), + [anon_sym_throw] = ACTIONS(2148), + [anon_sym_namespace] = ACTIONS(2148), + [anon_sym_using] = ACTIONS(2148), + [anon_sym_static_assert] = ACTIONS(2148), + [anon_sym_concept] = ACTIONS(2148), + [anon_sym_co_return] = ACTIONS(2148), + [anon_sym_co_yield] = ACTIONS(2148), + [anon_sym_R_DQUOTE] = ACTIONS(2150), + [anon_sym_LR_DQUOTE] = ACTIONS(2150), + [anon_sym_uR_DQUOTE] = ACTIONS(2150), + [anon_sym_UR_DQUOTE] = ACTIONS(2150), + [anon_sym_u8R_DQUOTE] = ACTIONS(2150), + [anon_sym_co_await] = ACTIONS(2148), + [anon_sym_new] = ACTIONS(2148), + [anon_sym_requires] = ACTIONS(2148), + [sym_this] = ACTIONS(2148), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_FORWARD] = ACTIONS(2148), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2148), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_PS_GET] = ACTIONS(2148), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2148), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2148), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2148), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2148), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2148), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2148), + [anon_sym_MOZ_COLD] = ACTIONS(2148), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2148), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2148), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2148), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2148), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2148), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2148), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2148), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2148), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2148), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2148), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2148), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2148), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2148), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_NONNULL] = ACTIONS(2148), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2148), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2148), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2148), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2148), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2148), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2148), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2148), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2148), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2148), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2148), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2148), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2148), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2148), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2148), + [anon_sym_MOZ_RAII] = ACTIONS(2148), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2148), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2148), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2148), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2148), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2148), + }, + [STATE(365)] = { + [sym_identifier] = ACTIONS(2120), + [aux_sym_preproc_include_token1] = ACTIONS(2120), + [aux_sym_preproc_def_token1] = ACTIONS(2120), + [aux_sym_preproc_if_token1] = ACTIONS(2120), + [aux_sym_preproc_if_token2] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), + [sym_preproc_directive] = ACTIONS(2120), + [anon_sym_LPAREN2] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_PLUS] = ACTIONS(2120), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym___extension__] = ACTIONS(2120), + [anon_sym_typedef] = ACTIONS(2120), + [anon_sym_virtual] = ACTIONS(2120), + [anon_sym_extern] = ACTIONS(2120), + [anon_sym___attribute__] = ACTIONS(2120), + [anon_sym___attribute] = ACTIONS(2120), + [anon_sym_COLON_COLON] = ACTIONS(2122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2122), + [anon_sym___declspec] = ACTIONS(2120), + [anon_sym___based] = ACTIONS(2120), + [anon_sym___cdecl] = ACTIONS(2120), + [anon_sym___clrcall] = ACTIONS(2120), + [anon_sym___stdcall] = ACTIONS(2120), + [anon_sym___fastcall] = ACTIONS(2120), + [anon_sym___thiscall] = ACTIONS(2120), + [anon_sym___vectorcall] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2122), + [anon_sym_signed] = ACTIONS(2120), + [anon_sym_unsigned] = ACTIONS(2120), + [anon_sym_long] = ACTIONS(2120), + [anon_sym_short] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_register] = ACTIONS(2120), + [anon_sym_inline] = ACTIONS(2120), + [anon_sym___inline] = ACTIONS(2120), + [anon_sym___inline__] = ACTIONS(2120), + [anon_sym___forceinline] = ACTIONS(2120), + [anon_sym_thread_local] = ACTIONS(2120), + [anon_sym___thread] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_constexpr] = ACTIONS(2120), + [anon_sym_volatile] = ACTIONS(2120), + [anon_sym_restrict] = ACTIONS(2120), + [anon_sym___restrict__] = ACTIONS(2120), + [anon_sym__Atomic] = ACTIONS(2120), + [anon_sym__Noreturn] = ACTIONS(2120), + [anon_sym_noreturn] = ACTIONS(2120), + [anon_sym__Nonnull] = ACTIONS(2120), + [anon_sym_mutable] = ACTIONS(2120), + [anon_sym_constinit] = ACTIONS(2120), + [anon_sym_consteval] = ACTIONS(2120), + [anon_sym_alignas] = ACTIONS(2120), + [anon_sym__Alignas] = ACTIONS(2120), + [sym_primitive_type] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_union] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_else] = ACTIONS(2120), + [anon_sym_switch] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_default] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_do] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_goto] = ACTIONS(2120), + [anon_sym___try] = ACTIONS(2120), + [anon_sym___leave] = ACTIONS(2120), + [anon_sym_not] = ACTIONS(2120), + [anon_sym_compl] = ACTIONS(2120), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_sizeof] = ACTIONS(2120), + [anon_sym___alignof__] = ACTIONS(2120), + [anon_sym___alignof] = ACTIONS(2120), + [anon_sym__alignof] = ACTIONS(2120), + [anon_sym_alignof] = ACTIONS(2120), + [anon_sym__Alignof] = ACTIONS(2120), + [anon_sym_offsetof] = ACTIONS(2120), + [anon_sym__Generic] = ACTIONS(2120), + [anon_sym_asm] = ACTIONS(2120), + [anon_sym___asm__] = ACTIONS(2120), + [anon_sym___asm] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2122), + [anon_sym_u_DQUOTE] = ACTIONS(2122), + [anon_sym_U_DQUOTE] = ACTIONS(2122), + [anon_sym_u8_DQUOTE] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [sym_true] = ACTIONS(2120), + [sym_false] = ACTIONS(2120), + [anon_sym_NULL] = ACTIONS(2120), + [anon_sym_nullptr] = ACTIONS(2120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2120), + [anon_sym_decltype] = ACTIONS(2120), + [anon_sym_explicit] = ACTIONS(2120), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(2120), + [anon_sym_operator] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2120), + [anon_sym_delete] = ACTIONS(2120), + [anon_sym_throw] = ACTIONS(2120), + [anon_sym_namespace] = ACTIONS(2120), + [anon_sym_using] = ACTIONS(2120), + [anon_sym_static_assert] = ACTIONS(2120), + [anon_sym_concept] = ACTIONS(2120), + [anon_sym_co_return] = ACTIONS(2120), + [anon_sym_co_yield] = ACTIONS(2120), + [anon_sym_R_DQUOTE] = ACTIONS(2122), + [anon_sym_LR_DQUOTE] = ACTIONS(2122), + [anon_sym_uR_DQUOTE] = ACTIONS(2122), + [anon_sym_UR_DQUOTE] = ACTIONS(2122), + [anon_sym_u8R_DQUOTE] = ACTIONS(2122), + [anon_sym_co_await] = ACTIONS(2120), + [anon_sym_new] = ACTIONS(2120), + [anon_sym_requires] = ACTIONS(2120), + [sym_this] = ACTIONS(2120), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_FORWARD] = ACTIONS(2120), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2120), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_PS_GET] = ACTIONS(2120), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2120), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2120), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2120), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2120), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2120), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2120), + [anon_sym_MOZ_COLD] = ACTIONS(2120), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2120), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2120), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2120), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2120), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2120), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2120), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2120), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2120), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2120), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2120), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2120), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2120), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2120), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_NONNULL] = ACTIONS(2120), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2120), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2120), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2120), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2120), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2120), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2120), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2120), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2120), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2120), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2120), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2120), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2120), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2120), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2120), + [anon_sym_MOZ_RAII] = ACTIONS(2120), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2120), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2120), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2120), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2120), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2120), + }, + [STATE(366)] = { + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2116), + [aux_sym_preproc_def_token1] = ACTIONS(2116), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [sym_preproc_directive] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_AMP_AMP] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym___extension__] = ACTIONS(2116), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_virtual] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym_COLON_COLON] = ACTIONS(2118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2118), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___based] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2116), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [anon_sym___inline] = ACTIONS(2116), + [anon_sym___inline__] = ACTIONS(2116), + [anon_sym___forceinline] = ACTIONS(2116), + [anon_sym_thread_local] = ACTIONS(2116), + [anon_sym___thread] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_constexpr] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym___restrict__] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym__Noreturn] = ACTIONS(2116), + [anon_sym_noreturn] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym_mutable] = ACTIONS(2116), + [anon_sym_constinit] = ACTIONS(2116), + [anon_sym_consteval] = ACTIONS(2116), + [anon_sym_alignas] = ACTIONS(2116), + [anon_sym__Alignas] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym___try] = ACTIONS(2116), + [anon_sym___leave] = ACTIONS(2116), + [anon_sym_not] = ACTIONS(2116), + [anon_sym_compl] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [anon_sym___alignof__] = ACTIONS(2116), + [anon_sym___alignof] = ACTIONS(2116), + [anon_sym__alignof] = ACTIONS(2116), + [anon_sym_alignof] = ACTIONS(2116), + [anon_sym__Alignof] = ACTIONS(2116), + [anon_sym_offsetof] = ACTIONS(2116), + [anon_sym__Generic] = ACTIONS(2116), + [anon_sym_asm] = ACTIONS(2116), + [anon_sym___asm__] = ACTIONS(2116), + [anon_sym___asm] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [anon_sym_NULL] = ACTIONS(2116), + [anon_sym_nullptr] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2116), + [anon_sym_explicit] = ACTIONS(2116), + [anon_sym_typename] = ACTIONS(2116), + [anon_sym_template] = ACTIONS(2116), + [anon_sym_operator] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_using] = ACTIONS(2116), + [anon_sym_static_assert] = ACTIONS(2116), + [anon_sym_concept] = ACTIONS(2116), + [anon_sym_co_return] = ACTIONS(2116), + [anon_sym_co_yield] = ACTIONS(2116), + [anon_sym_R_DQUOTE] = ACTIONS(2118), + [anon_sym_LR_DQUOTE] = ACTIONS(2118), + [anon_sym_uR_DQUOTE] = ACTIONS(2118), + [anon_sym_UR_DQUOTE] = ACTIONS(2118), + [anon_sym_u8R_DQUOTE] = ACTIONS(2118), + [anon_sym_co_await] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_requires] = ACTIONS(2116), + [sym_this] = ACTIONS(2116), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_FORWARD] = ACTIONS(2116), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_PS_GET] = ACTIONS(2116), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2116), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2116), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2116), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2116), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2116), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2116), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2116), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2116), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2116), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2116), + [anon_sym_MOZ_COLD] = ACTIONS(2116), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2116), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2116), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2116), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2116), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2116), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2116), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2116), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2116), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2116), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2116), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2116), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2116), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2116), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2116), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2116), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2116), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2116), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2116), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2116), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2116), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_NONNULL] = ACTIONS(2116), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2116), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2116), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2116), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2116), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2116), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_NORETURN] = ACTIONS(2116), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2116), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2116), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2116), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2116), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2116), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2116), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2116), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2116), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2116), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2116), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2116), + [anon_sym_MOZ_RAII] = ACTIONS(2116), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2116), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2116), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2116), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2116), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2116), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2116), + }, + [STATE(367)] = { + [sym_identifier] = ACTIONS(1875), + [aux_sym_preproc_include_token1] = ACTIONS(1875), + [aux_sym_preproc_def_token1] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1875), + [sym_preproc_directive] = ACTIONS(1875), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym___extension__] = ACTIONS(1875), + [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_virtual] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym___attribute__] = ACTIONS(1875), + [anon_sym___attribute] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), + [anon_sym___declspec] = ACTIONS(1875), + [anon_sym___based] = ACTIONS(1875), + [anon_sym___cdecl] = ACTIONS(1875), + [anon_sym___clrcall] = ACTIONS(1875), + [anon_sym___stdcall] = ACTIONS(1875), + [anon_sym___fastcall] = ACTIONS(1875), + [anon_sym___thiscall] = ACTIONS(1875), + [anon_sym___vectorcall] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(1873), [anon_sym_signed] = ACTIONS(1875), [anon_sym_unsigned] = ACTIONS(1875), [anon_sym_long] = ACTIONS(1875), [anon_sym_short] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_inline] = ACTIONS(1875), + [anon_sym___inline] = ACTIONS(1875), + [anon_sym___inline__] = ACTIONS(1875), + [anon_sym___forceinline] = ACTIONS(1875), + [anon_sym_thread_local] = ACTIONS(1875), + [anon_sym___thread] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_constexpr] = ACTIONS(1875), + [anon_sym_volatile] = ACTIONS(1875), + [anon_sym_restrict] = ACTIONS(1875), + [anon_sym___restrict__] = ACTIONS(1875), + [anon_sym__Atomic] = ACTIONS(1875), + [anon_sym__Noreturn] = ACTIONS(1875), + [anon_sym_noreturn] = ACTIONS(1875), + [anon_sym__Nonnull] = ACTIONS(1875), + [anon_sym_mutable] = ACTIONS(1875), + [anon_sym_constinit] = ACTIONS(1875), + [anon_sym_consteval] = ACTIONS(1875), + [anon_sym_alignas] = ACTIONS(1875), + [anon_sym__Alignas] = ACTIONS(1875), [sym_primitive_type] = ACTIONS(1875), [anon_sym_enum] = ACTIONS(1875), [anon_sym_class] = ACTIONS(1875), [anon_sym_struct] = ACTIONS(1875), [anon_sym_union] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_switch] = ACTIONS(1875), + [anon_sym_case] = ACTIONS(1875), + [anon_sym_default] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_goto] = ACTIONS(1875), + [anon_sym___try] = ACTIONS(1875), + [anon_sym___leave] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(1875), + [anon_sym_compl] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1873), + [anon_sym_sizeof] = ACTIONS(1875), + [anon_sym___alignof__] = ACTIONS(1875), + [anon_sym___alignof] = ACTIONS(1875), + [anon_sym__alignof] = ACTIONS(1875), + [anon_sym_alignof] = ACTIONS(1875), + [anon_sym__Alignof] = ACTIONS(1875), + [anon_sym_offsetof] = ACTIONS(1875), + [anon_sym__Generic] = ACTIONS(1875), + [anon_sym_asm] = ACTIONS(1875), + [anon_sym___asm__] = ACTIONS(1875), + [anon_sym___asm] = ACTIONS(1875), + [sym_number_literal] = ACTIONS(1873), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1873), + [anon_sym_u_DQUOTE] = ACTIONS(1873), + [anon_sym_U_DQUOTE] = ACTIONS(1873), + [anon_sym_u8_DQUOTE] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym_true] = ACTIONS(1875), + [sym_false] = ACTIONS(1875), + [anon_sym_NULL] = ACTIONS(1875), + [anon_sym_nullptr] = ACTIONS(1875), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1875), [anon_sym_decltype] = ACTIONS(1875), - [anon_sym_virtual] = ACTIONS(1875), [anon_sym_explicit] = ACTIONS(1875), - [anon_sym_public] = ACTIONS(1875), - [anon_sym_private] = ACTIONS(1875), - [anon_sym_protected] = ACTIONS(1875), - [sym_auto] = ACTIONS(1875), [anon_sym_typename] = ACTIONS(1875), [anon_sym_template] = ACTIONS(1875), [anon_sym_operator] = ACTIONS(1875), - [anon_sym_friend] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_delete] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1875), + [anon_sym_namespace] = ACTIONS(1875), [anon_sym_using] = ACTIONS(1875), [anon_sym_static_assert] = ACTIONS(1875), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1875), + [anon_sym_concept] = ACTIONS(1875), + [anon_sym_co_return] = ACTIONS(1875), + [anon_sym_co_yield] = ACTIONS(1875), + [anon_sym_R_DQUOTE] = ACTIONS(1873), + [anon_sym_LR_DQUOTE] = ACTIONS(1873), + [anon_sym_uR_DQUOTE] = ACTIONS(1873), + [anon_sym_UR_DQUOTE] = ACTIONS(1873), + [anon_sym_u8R_DQUOTE] = ACTIONS(1873), + [anon_sym_co_await] = ACTIONS(1875), + [anon_sym_new] = ACTIONS(1875), + [anon_sym_requires] = ACTIONS(1875), + [sym_this] = ACTIONS(1875), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_FORWARD] = ACTIONS(1875), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1875), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_PS_GET] = ACTIONS(1875), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1875), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1875), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1875), [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1875), [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1875), [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1875), @@ -233051,13241 +137899,20843 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), }, - [1147] = { - [sym_identifier] = ACTIONS(2624), - [aux_sym_preproc_def_token1] = ACTIONS(2624), - [aux_sym_preproc_if_token1] = ACTIONS(2624), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2624), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2624), - [sym_preproc_directive] = ACTIONS(2624), - [anon_sym_LPAREN2] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_typedef] = ACTIONS(2624), - [anon_sym_extern] = ACTIONS(2624), - [anon_sym___attribute__] = ACTIONS(2624), - [anon_sym_COLON_COLON] = ACTIONS(2626), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2626), - [anon_sym___declspec] = ACTIONS(2624), - [anon_sym___based] = ACTIONS(2624), - [anon_sym_RBRACE] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2624), - [anon_sym_static] = ACTIONS(2624), - [anon_sym_register] = ACTIONS(2624), - [anon_sym_inline] = ACTIONS(2624), - [anon_sym_thread_local] = ACTIONS(2624), - [anon_sym_const] = ACTIONS(2624), - [anon_sym_volatile] = ACTIONS(2624), - [anon_sym_restrict] = ACTIONS(2624), - [anon_sym__Atomic] = ACTIONS(2624), - [anon_sym_mutable] = ACTIONS(2624), - [anon_sym_constexpr] = ACTIONS(2624), - [anon_sym_signed] = ACTIONS(2624), - [anon_sym_unsigned] = ACTIONS(2624), - [anon_sym_long] = ACTIONS(2624), - [anon_sym_short] = ACTIONS(2624), - [sym_primitive_type] = ACTIONS(2624), - [anon_sym_enum] = ACTIONS(2624), - [anon_sym_class] = ACTIONS(2624), - [anon_sym_struct] = ACTIONS(2624), - [anon_sym_union] = ACTIONS(2624), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2624), - [anon_sym_virtual] = ACTIONS(2624), - [anon_sym_explicit] = ACTIONS(2624), - [anon_sym_public] = ACTIONS(2624), - [anon_sym_private] = ACTIONS(2624), - [anon_sym_protected] = ACTIONS(2624), - [sym_auto] = ACTIONS(2624), - [anon_sym_typename] = ACTIONS(2624), - [anon_sym_template] = ACTIONS(2624), - [anon_sym_operator] = ACTIONS(2624), - [anon_sym_friend] = ACTIONS(2624), - [anon_sym_using] = ACTIONS(2624), - [anon_sym_static_assert] = ACTIONS(2624), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2624), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2624), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2624), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2624), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2624), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2624), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2624), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2624), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2624), - [anon_sym_MOZ_COLD] = ACTIONS(2624), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2624), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2624), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2624), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2624), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2624), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2624), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2624), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2624), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2624), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2624), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2624), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2624), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2624), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2624), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2624), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2624), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2624), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2624), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2624), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2624), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2624), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_NONNULL] = ACTIONS(2624), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2624), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2624), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2624), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2624), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2624), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_NORETURN] = ACTIONS(2624), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2624), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2624), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2624), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2624), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2624), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2624), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2624), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2624), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2624), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2624), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2624), - [anon_sym_MOZ_RAII] = ACTIONS(2624), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2624), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2624), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2624), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2624), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2624), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2624), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2624), - }, - [1148] = { - [sym_identifier] = ACTIONS(1879), - [aux_sym_preproc_def_token1] = ACTIONS(1879), - [aux_sym_preproc_if_token1] = ACTIONS(1879), - [aux_sym_preproc_if_token2] = ACTIONS(1879), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1879), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1879), - [sym_preproc_directive] = ACTIONS(1879), - [anon_sym_LPAREN2] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_typedef] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym___attribute__] = ACTIONS(1879), - [anon_sym_COLON_COLON] = ACTIONS(1881), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1881), - [anon_sym___declspec] = ACTIONS(1879), - [anon_sym___based] = ACTIONS(1879), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_static] = ACTIONS(1879), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_inline] = ACTIONS(1879), - [anon_sym_thread_local] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [anon_sym_volatile] = ACTIONS(1879), - [anon_sym_restrict] = ACTIONS(1879), - [anon_sym__Atomic] = ACTIONS(1879), - [anon_sym_mutable] = ACTIONS(1879), - [anon_sym_constexpr] = ACTIONS(1879), - [anon_sym_signed] = ACTIONS(1879), - [anon_sym_unsigned] = ACTIONS(1879), - [anon_sym_long] = ACTIONS(1879), - [anon_sym_short] = ACTIONS(1879), - [sym_primitive_type] = ACTIONS(1879), - [anon_sym_enum] = ACTIONS(1879), - [anon_sym_class] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1879), - [anon_sym_union] = ACTIONS(1879), + [STATE(368)] = { + [sym_identifier] = ACTIONS(1974), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token2] = ACTIONS(1974), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1974), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1974), + [sym_preproc_directive] = ACTIONS(1974), + [anon_sym_LPAREN2] = ACTIONS(1976), + [anon_sym_BANG] = ACTIONS(1976), + [anon_sym_TILDE] = ACTIONS(1976), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP_AMP] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1974), + [anon_sym_virtual] = ACTIONS(1974), + [anon_sym_extern] = ACTIONS(1974), + [anon_sym___attribute__] = ACTIONS(1974), + [anon_sym___attribute] = ACTIONS(1974), + [anon_sym_COLON_COLON] = ACTIONS(1976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1974), + [anon_sym___based] = ACTIONS(1974), + [anon_sym___cdecl] = ACTIONS(1974), + [anon_sym___clrcall] = ACTIONS(1974), + [anon_sym___stdcall] = ACTIONS(1974), + [anon_sym___fastcall] = ACTIONS(1974), + [anon_sym___thiscall] = ACTIONS(1974), + [anon_sym___vectorcall] = ACTIONS(1974), + [anon_sym_LBRACE] = ACTIONS(1976), + [anon_sym_signed] = ACTIONS(1974), + [anon_sym_unsigned] = ACTIONS(1974), + [anon_sym_long] = ACTIONS(1974), + [anon_sym_short] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_register] = ACTIONS(1974), + [anon_sym_inline] = ACTIONS(1974), + [anon_sym___inline] = ACTIONS(1974), + [anon_sym___inline__] = ACTIONS(1974), + [anon_sym___forceinline] = ACTIONS(1974), + [anon_sym_thread_local] = ACTIONS(1974), + [anon_sym___thread] = ACTIONS(1974), + [anon_sym_const] = ACTIONS(1974), + [anon_sym_constexpr] = ACTIONS(1974), + [anon_sym_volatile] = ACTIONS(1974), + [anon_sym_restrict] = ACTIONS(1974), + [anon_sym___restrict__] = ACTIONS(1974), + [anon_sym__Atomic] = ACTIONS(1974), + [anon_sym__Noreturn] = ACTIONS(1974), + [anon_sym_noreturn] = ACTIONS(1974), + [anon_sym__Nonnull] = ACTIONS(1974), + [anon_sym_mutable] = ACTIONS(1974), + [anon_sym_constinit] = ACTIONS(1974), + [anon_sym_consteval] = ACTIONS(1974), + [anon_sym_alignas] = ACTIONS(1974), + [anon_sym__Alignas] = ACTIONS(1974), + [sym_primitive_type] = ACTIONS(1974), + [anon_sym_enum] = ACTIONS(1974), + [anon_sym_class] = ACTIONS(1974), + [anon_sym_struct] = ACTIONS(1974), + [anon_sym_union] = ACTIONS(1974), + [anon_sym_if] = ACTIONS(1974), + [anon_sym_else] = ACTIONS(1974), + [anon_sym_switch] = ACTIONS(1974), + [anon_sym_case] = ACTIONS(1974), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1974), + [anon_sym_do] = ACTIONS(1974), + [anon_sym_for] = ACTIONS(1974), + [anon_sym_return] = ACTIONS(1974), + [anon_sym_break] = ACTIONS(1974), + [anon_sym_continue] = ACTIONS(1974), + [anon_sym_goto] = ACTIONS(1974), + [anon_sym___try] = ACTIONS(1974), + [anon_sym___leave] = ACTIONS(1974), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1976), + [anon_sym_PLUS_PLUS] = ACTIONS(1976), + [anon_sym_sizeof] = ACTIONS(1974), + [anon_sym___alignof__] = ACTIONS(1974), + [anon_sym___alignof] = ACTIONS(1974), + [anon_sym__alignof] = ACTIONS(1974), + [anon_sym_alignof] = ACTIONS(1974), + [anon_sym__Alignof] = ACTIONS(1974), + [anon_sym_offsetof] = ACTIONS(1974), + [anon_sym__Generic] = ACTIONS(1974), + [anon_sym_asm] = ACTIONS(1974), + [anon_sym___asm__] = ACTIONS(1974), + [anon_sym___asm] = ACTIONS(1974), + [sym_number_literal] = ACTIONS(1976), + [anon_sym_L_SQUOTE] = ACTIONS(1976), + [anon_sym_u_SQUOTE] = ACTIONS(1976), + [anon_sym_U_SQUOTE] = ACTIONS(1976), + [anon_sym_u8_SQUOTE] = ACTIONS(1976), + [anon_sym_SQUOTE] = ACTIONS(1976), + [anon_sym_L_DQUOTE] = ACTIONS(1976), + [anon_sym_u_DQUOTE] = ACTIONS(1976), + [anon_sym_U_DQUOTE] = ACTIONS(1976), + [anon_sym_u8_DQUOTE] = ACTIONS(1976), + [anon_sym_DQUOTE] = ACTIONS(1976), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1974), + [anon_sym_nullptr] = ACTIONS(1974), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1974), + [anon_sym_decltype] = ACTIONS(1974), + [anon_sym_explicit] = ACTIONS(1974), + [anon_sym_typename] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1974), + [anon_sym_operator] = ACTIONS(1974), + [anon_sym_try] = ACTIONS(1974), + [anon_sym_delete] = ACTIONS(1974), + [anon_sym_throw] = ACTIONS(1974), + [anon_sym_namespace] = ACTIONS(1974), + [anon_sym_using] = ACTIONS(1974), + [anon_sym_static_assert] = ACTIONS(1974), + [anon_sym_concept] = ACTIONS(1974), + [anon_sym_co_return] = ACTIONS(1974), + [anon_sym_co_yield] = ACTIONS(1974), + [anon_sym_R_DQUOTE] = ACTIONS(1976), + [anon_sym_LR_DQUOTE] = ACTIONS(1976), + [anon_sym_uR_DQUOTE] = ACTIONS(1976), + [anon_sym_UR_DQUOTE] = ACTIONS(1976), + [anon_sym_u8R_DQUOTE] = ACTIONS(1976), + [anon_sym_co_await] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1974), + [anon_sym_requires] = ACTIONS(1974), + [sym_this] = ACTIONS(1974), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_FORWARD] = ACTIONS(1974), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1974), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_PS_GET] = ACTIONS(1974), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1974), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1974), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1974), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1974), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1974), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1974), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1974), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1974), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1974), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1974), + [anon_sym_MOZ_COLD] = ACTIONS(1974), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1974), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1974), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1974), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1974), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1974), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1974), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1974), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1974), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1974), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1974), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1974), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1974), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1974), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1974), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1974), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1974), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1974), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1974), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1974), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1974), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_NONNULL] = ACTIONS(1974), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1974), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1974), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1974), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1974), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1974), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_NORETURN] = ACTIONS(1974), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1974), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1974), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1974), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1974), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1974), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1974), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1974), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1974), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1974), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1974), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1974), + [anon_sym_MOZ_RAII] = ACTIONS(1974), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1974), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1974), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1974), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1974), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1974), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1974), + }, + [STATE(369)] = { + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2016), + [aux_sym_preproc_def_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token2] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [sym_preproc_directive] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_AMP_AMP] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2016), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym___extension__] = ACTIONS(2016), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_virtual] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym_COLON_COLON] = ACTIONS(2018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2018), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___based] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [anon_sym___inline] = ACTIONS(2016), + [anon_sym___inline__] = ACTIONS(2016), + [anon_sym___forceinline] = ACTIONS(2016), + [anon_sym_thread_local] = ACTIONS(2016), + [anon_sym___thread] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_constexpr] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym___restrict__] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym__Noreturn] = ACTIONS(2016), + [anon_sym_noreturn] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym_mutable] = ACTIONS(2016), + [anon_sym_constinit] = ACTIONS(2016), + [anon_sym_consteval] = ACTIONS(2016), + [anon_sym_alignas] = ACTIONS(2016), + [anon_sym__Alignas] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_class] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_else] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym___try] = ACTIONS(2016), + [anon_sym___leave] = ACTIONS(2016), + [anon_sym_not] = ACTIONS(2016), + [anon_sym_compl] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [anon_sym___alignof__] = ACTIONS(2016), + [anon_sym___alignof] = ACTIONS(2016), + [anon_sym__alignof] = ACTIONS(2016), + [anon_sym_alignof] = ACTIONS(2016), + [anon_sym__Alignof] = ACTIONS(2016), + [anon_sym_offsetof] = ACTIONS(2016), + [anon_sym__Generic] = ACTIONS(2016), + [anon_sym_asm] = ACTIONS(2016), + [anon_sym___asm__] = ACTIONS(2016), + [anon_sym___asm] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [anon_sym_NULL] = ACTIONS(2016), + [anon_sym_nullptr] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2016), + [anon_sym_decltype] = ACTIONS(2016), + [anon_sym_explicit] = ACTIONS(2016), + [anon_sym_typename] = ACTIONS(2016), + [anon_sym_template] = ACTIONS(2016), + [anon_sym_operator] = ACTIONS(2016), + [anon_sym_try] = ACTIONS(2016), + [anon_sym_delete] = ACTIONS(2016), + [anon_sym_throw] = ACTIONS(2016), + [anon_sym_namespace] = ACTIONS(2016), + [anon_sym_using] = ACTIONS(2016), + [anon_sym_static_assert] = ACTIONS(2016), + [anon_sym_concept] = ACTIONS(2016), + [anon_sym_co_return] = ACTIONS(2016), + [anon_sym_co_yield] = ACTIONS(2016), + [anon_sym_R_DQUOTE] = ACTIONS(2018), + [anon_sym_LR_DQUOTE] = ACTIONS(2018), + [anon_sym_uR_DQUOTE] = ACTIONS(2018), + [anon_sym_UR_DQUOTE] = ACTIONS(2018), + [anon_sym_u8R_DQUOTE] = ACTIONS(2018), + [anon_sym_co_await] = ACTIONS(2016), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2016), + [sym_this] = ACTIONS(2016), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_FORWARD] = ACTIONS(2016), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_PS_GET] = ACTIONS(2016), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2016), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2016), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2016), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2016), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2016), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2016), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2016), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2016), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2016), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2016), + [anon_sym_MOZ_COLD] = ACTIONS(2016), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2016), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2016), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2016), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2016), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2016), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2016), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2016), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2016), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2016), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2016), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2016), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2016), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2016), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2016), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2016), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2016), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2016), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2016), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2016), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2016), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_NONNULL] = ACTIONS(2016), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2016), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2016), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2016), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2016), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2016), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_NORETURN] = ACTIONS(2016), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2016), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2016), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2016), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2016), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2016), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2016), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2016), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2016), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2016), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2016), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2016), + [anon_sym_MOZ_RAII] = ACTIONS(2016), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2016), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2016), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2016), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2016), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2016), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2016), + }, + [STATE(370)] = { + [sym_identifier] = ACTIONS(2012), + [aux_sym_preproc_include_token1] = ACTIONS(2012), + [aux_sym_preproc_def_token1] = ACTIONS(2012), + [aux_sym_preproc_if_token1] = ACTIONS(2012), + [aux_sym_preproc_if_token2] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2012), + [sym_preproc_directive] = ACTIONS(2012), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_TILDE] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_PLUS] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym___extension__] = ACTIONS(2012), + [anon_sym_typedef] = ACTIONS(2012), + [anon_sym_virtual] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym___attribute__] = ACTIONS(2012), + [anon_sym___attribute] = ACTIONS(2012), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2014), + [anon_sym___declspec] = ACTIONS(2012), + [anon_sym___based] = ACTIONS(2012), + [anon_sym___cdecl] = ACTIONS(2012), + [anon_sym___clrcall] = ACTIONS(2012), + [anon_sym___stdcall] = ACTIONS(2012), + [anon_sym___fastcall] = ACTIONS(2012), + [anon_sym___thiscall] = ACTIONS(2012), + [anon_sym___vectorcall] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_signed] = ACTIONS(2012), + [anon_sym_unsigned] = ACTIONS(2012), + [anon_sym_long] = ACTIONS(2012), + [anon_sym_short] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2012), + [anon_sym_inline] = ACTIONS(2012), + [anon_sym___inline] = ACTIONS(2012), + [anon_sym___inline__] = ACTIONS(2012), + [anon_sym___forceinline] = ACTIONS(2012), + [anon_sym_thread_local] = ACTIONS(2012), + [anon_sym___thread] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_constexpr] = ACTIONS(2012), + [anon_sym_volatile] = ACTIONS(2012), + [anon_sym_restrict] = ACTIONS(2012), + [anon_sym___restrict__] = ACTIONS(2012), + [anon_sym__Atomic] = ACTIONS(2012), + [anon_sym__Noreturn] = ACTIONS(2012), + [anon_sym_noreturn] = ACTIONS(2012), + [anon_sym__Nonnull] = ACTIONS(2012), + [anon_sym_mutable] = ACTIONS(2012), + [anon_sym_constinit] = ACTIONS(2012), + [anon_sym_consteval] = ACTIONS(2012), + [anon_sym_alignas] = ACTIONS(2012), + [anon_sym__Alignas] = ACTIONS(2012), + [sym_primitive_type] = ACTIONS(2012), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(2012), + [anon_sym_struct] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_else] = ACTIONS(2012), + [anon_sym_switch] = ACTIONS(2012), + [anon_sym_case] = ACTIONS(2012), + [anon_sym_default] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_do] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_goto] = ACTIONS(2012), + [anon_sym___try] = ACTIONS(2012), + [anon_sym___leave] = ACTIONS(2012), + [anon_sym_not] = ACTIONS(2012), + [anon_sym_compl] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2014), + [anon_sym_PLUS_PLUS] = ACTIONS(2014), + [anon_sym_sizeof] = ACTIONS(2012), + [anon_sym___alignof__] = ACTIONS(2012), + [anon_sym___alignof] = ACTIONS(2012), + [anon_sym__alignof] = ACTIONS(2012), + [anon_sym_alignof] = ACTIONS(2012), + [anon_sym__Alignof] = ACTIONS(2012), + [anon_sym_offsetof] = ACTIONS(2012), + [anon_sym__Generic] = ACTIONS(2012), + [anon_sym_asm] = ACTIONS(2012), + [anon_sym___asm__] = ACTIONS(2012), + [anon_sym___asm] = ACTIONS(2012), + [sym_number_literal] = ACTIONS(2014), + [anon_sym_L_SQUOTE] = ACTIONS(2014), + [anon_sym_u_SQUOTE] = ACTIONS(2014), + [anon_sym_U_SQUOTE] = ACTIONS(2014), + [anon_sym_u8_SQUOTE] = ACTIONS(2014), + [anon_sym_SQUOTE] = ACTIONS(2014), + [anon_sym_L_DQUOTE] = ACTIONS(2014), + [anon_sym_u_DQUOTE] = ACTIONS(2014), + [anon_sym_U_DQUOTE] = ACTIONS(2014), + [anon_sym_u8_DQUOTE] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym_true] = ACTIONS(2012), + [sym_false] = ACTIONS(2012), + [anon_sym_NULL] = ACTIONS(2012), + [anon_sym_nullptr] = ACTIONS(2012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2012), + [anon_sym_decltype] = ACTIONS(2012), + [anon_sym_explicit] = ACTIONS(2012), + [anon_sym_typename] = ACTIONS(2012), + [anon_sym_template] = ACTIONS(2012), + [anon_sym_operator] = ACTIONS(2012), + [anon_sym_try] = ACTIONS(2012), + [anon_sym_delete] = ACTIONS(2012), + [anon_sym_throw] = ACTIONS(2012), + [anon_sym_namespace] = ACTIONS(2012), + [anon_sym_using] = ACTIONS(2012), + [anon_sym_static_assert] = ACTIONS(2012), + [anon_sym_concept] = ACTIONS(2012), + [anon_sym_co_return] = ACTIONS(2012), + [anon_sym_co_yield] = ACTIONS(2012), + [anon_sym_R_DQUOTE] = ACTIONS(2014), + [anon_sym_LR_DQUOTE] = ACTIONS(2014), + [anon_sym_uR_DQUOTE] = ACTIONS(2014), + [anon_sym_UR_DQUOTE] = ACTIONS(2014), + [anon_sym_u8R_DQUOTE] = ACTIONS(2014), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2012), + [anon_sym_requires] = ACTIONS(2012), + [sym_this] = ACTIONS(2012), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_FORWARD] = ACTIONS(2012), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_PS_GET] = ACTIONS(2012), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2012), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2012), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2012), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2012), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2012), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2012), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2012), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2012), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2012), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2012), + [anon_sym_MOZ_COLD] = ACTIONS(2012), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2012), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2012), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2012), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2012), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2012), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2012), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2012), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2012), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2012), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2012), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2012), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2012), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2012), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2012), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2012), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2012), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2012), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2012), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2012), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2012), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_NONNULL] = ACTIONS(2012), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2012), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2012), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2012), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2012), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2012), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_NORETURN] = ACTIONS(2012), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2012), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2012), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2012), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2012), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2012), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2012), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2012), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2012), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2012), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2012), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2012), + [anon_sym_MOZ_RAII] = ACTIONS(2012), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2012), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2012), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2012), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2012), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2012), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2012), + }, + [STATE(371)] = { + [sym_identifier] = ACTIONS(2120), + [aux_sym_preproc_include_token1] = ACTIONS(2120), + [aux_sym_preproc_def_token1] = ACTIONS(2120), + [aux_sym_preproc_if_token1] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), + [sym_preproc_directive] = ACTIONS(2120), + [anon_sym_LPAREN2] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_PLUS] = ACTIONS(2120), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym___extension__] = ACTIONS(2120), + [anon_sym_typedef] = ACTIONS(2120), + [anon_sym_virtual] = ACTIONS(2120), + [anon_sym_extern] = ACTIONS(2120), + [anon_sym___attribute__] = ACTIONS(2120), + [anon_sym___attribute] = ACTIONS(2120), + [anon_sym_COLON_COLON] = ACTIONS(2122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2122), + [anon_sym___declspec] = ACTIONS(2120), + [anon_sym___based] = ACTIONS(2120), + [anon_sym___cdecl] = ACTIONS(2120), + [anon_sym___clrcall] = ACTIONS(2120), + [anon_sym___stdcall] = ACTIONS(2120), + [anon_sym___fastcall] = ACTIONS(2120), + [anon_sym___thiscall] = ACTIONS(2120), + [anon_sym___vectorcall] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_signed] = ACTIONS(2120), + [anon_sym_unsigned] = ACTIONS(2120), + [anon_sym_long] = ACTIONS(2120), + [anon_sym_short] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_register] = ACTIONS(2120), + [anon_sym_inline] = ACTIONS(2120), + [anon_sym___inline] = ACTIONS(2120), + [anon_sym___inline__] = ACTIONS(2120), + [anon_sym___forceinline] = ACTIONS(2120), + [anon_sym_thread_local] = ACTIONS(2120), + [anon_sym___thread] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_constexpr] = ACTIONS(2120), + [anon_sym_volatile] = ACTIONS(2120), + [anon_sym_restrict] = ACTIONS(2120), + [anon_sym___restrict__] = ACTIONS(2120), + [anon_sym__Atomic] = ACTIONS(2120), + [anon_sym__Noreturn] = ACTIONS(2120), + [anon_sym_noreturn] = ACTIONS(2120), + [anon_sym__Nonnull] = ACTIONS(2120), + [anon_sym_mutable] = ACTIONS(2120), + [anon_sym_constinit] = ACTIONS(2120), + [anon_sym_consteval] = ACTIONS(2120), + [anon_sym_alignas] = ACTIONS(2120), + [anon_sym__Alignas] = ACTIONS(2120), + [sym_primitive_type] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_union] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_else] = ACTIONS(2120), + [anon_sym_switch] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_default] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_do] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_goto] = ACTIONS(2120), + [anon_sym___try] = ACTIONS(2120), + [anon_sym___leave] = ACTIONS(2120), + [anon_sym_not] = ACTIONS(2120), + [anon_sym_compl] = ACTIONS(2120), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_sizeof] = ACTIONS(2120), + [anon_sym___alignof__] = ACTIONS(2120), + [anon_sym___alignof] = ACTIONS(2120), + [anon_sym__alignof] = ACTIONS(2120), + [anon_sym_alignof] = ACTIONS(2120), + [anon_sym__Alignof] = ACTIONS(2120), + [anon_sym_offsetof] = ACTIONS(2120), + [anon_sym__Generic] = ACTIONS(2120), + [anon_sym_asm] = ACTIONS(2120), + [anon_sym___asm__] = ACTIONS(2120), + [anon_sym___asm] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2122), + [anon_sym_u_DQUOTE] = ACTIONS(2122), + [anon_sym_U_DQUOTE] = ACTIONS(2122), + [anon_sym_u8_DQUOTE] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [sym_true] = ACTIONS(2120), + [sym_false] = ACTIONS(2120), + [anon_sym_NULL] = ACTIONS(2120), + [anon_sym_nullptr] = ACTIONS(2120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2120), + [anon_sym_decltype] = ACTIONS(2120), + [anon_sym_explicit] = ACTIONS(2120), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(2120), + [anon_sym_operator] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2120), + [anon_sym_delete] = ACTIONS(2120), + [anon_sym_throw] = ACTIONS(2120), + [anon_sym_namespace] = ACTIONS(2120), + [anon_sym_using] = ACTIONS(2120), + [anon_sym_static_assert] = ACTIONS(2120), + [anon_sym_concept] = ACTIONS(2120), + [anon_sym_co_return] = ACTIONS(2120), + [anon_sym_co_yield] = ACTIONS(2120), + [anon_sym_R_DQUOTE] = ACTIONS(2122), + [anon_sym_LR_DQUOTE] = ACTIONS(2122), + [anon_sym_uR_DQUOTE] = ACTIONS(2122), + [anon_sym_UR_DQUOTE] = ACTIONS(2122), + [anon_sym_u8R_DQUOTE] = ACTIONS(2122), + [anon_sym_co_await] = ACTIONS(2120), + [anon_sym_new] = ACTIONS(2120), + [anon_sym_requires] = ACTIONS(2120), + [sym_this] = ACTIONS(2120), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_FORWARD] = ACTIONS(2120), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2120), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_PS_GET] = ACTIONS(2120), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2120), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2120), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2120), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2120), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2120), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2120), + [anon_sym_MOZ_COLD] = ACTIONS(2120), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2120), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2120), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2120), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2120), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2120), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2120), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2120), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2120), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2120), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2120), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2120), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2120), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2120), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_NONNULL] = ACTIONS(2120), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2120), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2120), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2120), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2120), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2120), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2120), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2120), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2120), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2120), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2120), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2120), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2120), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2120), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2120), + [anon_sym_MOZ_RAII] = ACTIONS(2120), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2120), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2120), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2120), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2120), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2120), + }, + [STATE(372)] = { + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_include_token1] = ACTIONS(2108), + [aux_sym_preproc_def_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [sym_preproc_directive] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_AMP_AMP] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym___extension__] = ACTIONS(2108), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_virtual] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym_COLON_COLON] = ACTIONS(2110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2110), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___based] = ACTIONS(2108), + [anon_sym___cdecl] = ACTIONS(2108), + [anon_sym___clrcall] = ACTIONS(2108), + [anon_sym___stdcall] = ACTIONS(2108), + [anon_sym___fastcall] = ACTIONS(2108), + [anon_sym___thiscall] = ACTIONS(2108), + [anon_sym___vectorcall] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [anon_sym_LBRACK] = ACTIONS(2108), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [anon_sym___inline] = ACTIONS(2108), + [anon_sym___inline__] = ACTIONS(2108), + [anon_sym___forceinline] = ACTIONS(2108), + [anon_sym_thread_local] = ACTIONS(2108), + [anon_sym___thread] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_constexpr] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym___restrict__] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym__Noreturn] = ACTIONS(2108), + [anon_sym_noreturn] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym_mutable] = ACTIONS(2108), + [anon_sym_constinit] = ACTIONS(2108), + [anon_sym_consteval] = ACTIONS(2108), + [anon_sym_alignas] = ACTIONS(2108), + [anon_sym__Alignas] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_class] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_else] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_case] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_goto] = ACTIONS(2108), + [anon_sym___try] = ACTIONS(2108), + [anon_sym___leave] = ACTIONS(2108), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_sizeof] = ACTIONS(2108), + [anon_sym___alignof__] = ACTIONS(2108), + [anon_sym___alignof] = ACTIONS(2108), + [anon_sym__alignof] = ACTIONS(2108), + [anon_sym_alignof] = ACTIONS(2108), + [anon_sym__Alignof] = ACTIONS(2108), + [anon_sym_offsetof] = ACTIONS(2108), + [anon_sym__Generic] = ACTIONS(2108), + [anon_sym_asm] = ACTIONS(2108), + [anon_sym___asm__] = ACTIONS(2108), + [anon_sym___asm] = ACTIONS(2108), + [sym_number_literal] = ACTIONS(2110), + [anon_sym_L_SQUOTE] = ACTIONS(2110), + [anon_sym_u_SQUOTE] = ACTIONS(2110), + [anon_sym_U_SQUOTE] = ACTIONS(2110), + [anon_sym_u8_SQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [anon_sym_NULL] = ACTIONS(2108), + [anon_sym_nullptr] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2108), + [anon_sym_decltype] = ACTIONS(2108), + [anon_sym_explicit] = ACTIONS(2108), + [anon_sym_typename] = ACTIONS(2108), + [anon_sym_template] = ACTIONS(2108), + [anon_sym_operator] = ACTIONS(2108), + [anon_sym_try] = ACTIONS(2108), + [anon_sym_delete] = ACTIONS(2108), + [anon_sym_throw] = ACTIONS(2108), + [anon_sym_namespace] = ACTIONS(2108), + [anon_sym_using] = ACTIONS(2108), + [anon_sym_static_assert] = ACTIONS(2108), + [anon_sym_concept] = ACTIONS(2108), + [anon_sym_co_return] = ACTIONS(2108), + [anon_sym_co_yield] = ACTIONS(2108), + [anon_sym_R_DQUOTE] = ACTIONS(2110), + [anon_sym_LR_DQUOTE] = ACTIONS(2110), + [anon_sym_uR_DQUOTE] = ACTIONS(2110), + [anon_sym_UR_DQUOTE] = ACTIONS(2110), + [anon_sym_u8R_DQUOTE] = ACTIONS(2110), + [anon_sym_co_await] = ACTIONS(2108), + [anon_sym_new] = ACTIONS(2108), + [anon_sym_requires] = ACTIONS(2108), + [sym_this] = ACTIONS(2108), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_FORWARD] = ACTIONS(2108), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_PS_GET] = ACTIONS(2108), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2108), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2108), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2108), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2108), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2108), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2108), + [anon_sym_MOZ_COLD] = ACTIONS(2108), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2108), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2108), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2108), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2108), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2108), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2108), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2108), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2108), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2108), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2108), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2108), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2108), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2108), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_NONNULL] = ACTIONS(2108), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2108), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2108), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2108), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2108), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2108), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2108), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2108), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2108), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2108), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2108), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2108), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2108), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2108), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2108), + [anon_sym_MOZ_RAII] = ACTIONS(2108), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2108), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2108), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2108), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2108), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2108), + }, + [STATE(373)] = { + [sym_identifier] = ACTIONS(2112), + [aux_sym_preproc_include_token1] = ACTIONS(2112), + [aux_sym_preproc_def_token1] = ACTIONS(2112), + [aux_sym_preproc_if_token1] = ACTIONS(2112), + [aux_sym_preproc_if_token2] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2112), + [sym_preproc_directive] = ACTIONS(2112), + [anon_sym_LPAREN2] = ACTIONS(2114), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(2112), + [anon_sym_PLUS] = ACTIONS(2112), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_AMP_AMP] = ACTIONS(2114), + [anon_sym_AMP] = ACTIONS(2112), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym___extension__] = ACTIONS(2112), + [anon_sym_typedef] = ACTIONS(2112), + [anon_sym_virtual] = ACTIONS(2112), + [anon_sym_extern] = ACTIONS(2112), + [anon_sym___attribute__] = ACTIONS(2112), + [anon_sym___attribute] = ACTIONS(2112), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2114), + [anon_sym___declspec] = ACTIONS(2112), + [anon_sym___based] = ACTIONS(2112), + [anon_sym___cdecl] = ACTIONS(2112), + [anon_sym___clrcall] = ACTIONS(2112), + [anon_sym___stdcall] = ACTIONS(2112), + [anon_sym___fastcall] = ACTIONS(2112), + [anon_sym___thiscall] = ACTIONS(2112), + [anon_sym___vectorcall] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_signed] = ACTIONS(2112), + [anon_sym_unsigned] = ACTIONS(2112), + [anon_sym_long] = ACTIONS(2112), + [anon_sym_short] = ACTIONS(2112), + [anon_sym_LBRACK] = ACTIONS(2112), + [anon_sym_static] = ACTIONS(2112), + [anon_sym_register] = ACTIONS(2112), + [anon_sym_inline] = ACTIONS(2112), + [anon_sym___inline] = ACTIONS(2112), + [anon_sym___inline__] = ACTIONS(2112), + [anon_sym___forceinline] = ACTIONS(2112), + [anon_sym_thread_local] = ACTIONS(2112), + [anon_sym___thread] = ACTIONS(2112), + [anon_sym_const] = ACTIONS(2112), + [anon_sym_constexpr] = ACTIONS(2112), + [anon_sym_volatile] = ACTIONS(2112), + [anon_sym_restrict] = ACTIONS(2112), + [anon_sym___restrict__] = ACTIONS(2112), + [anon_sym__Atomic] = ACTIONS(2112), + [anon_sym__Noreturn] = ACTIONS(2112), + [anon_sym_noreturn] = ACTIONS(2112), + [anon_sym__Nonnull] = ACTIONS(2112), + [anon_sym_mutable] = ACTIONS(2112), + [anon_sym_constinit] = ACTIONS(2112), + [anon_sym_consteval] = ACTIONS(2112), + [anon_sym_alignas] = ACTIONS(2112), + [anon_sym__Alignas] = ACTIONS(2112), + [sym_primitive_type] = ACTIONS(2112), + [anon_sym_enum] = ACTIONS(2112), + [anon_sym_class] = ACTIONS(2112), + [anon_sym_struct] = ACTIONS(2112), + [anon_sym_union] = ACTIONS(2112), + [anon_sym_if] = ACTIONS(2112), + [anon_sym_else] = ACTIONS(2112), + [anon_sym_switch] = ACTIONS(2112), + [anon_sym_case] = ACTIONS(2112), + [anon_sym_default] = ACTIONS(2112), + [anon_sym_while] = ACTIONS(2112), + [anon_sym_do] = ACTIONS(2112), + [anon_sym_for] = ACTIONS(2112), + [anon_sym_return] = ACTIONS(2112), + [anon_sym_break] = ACTIONS(2112), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_goto] = ACTIONS(2112), + [anon_sym___try] = ACTIONS(2112), + [anon_sym___leave] = ACTIONS(2112), + [anon_sym_not] = ACTIONS(2112), + [anon_sym_compl] = ACTIONS(2112), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_sizeof] = ACTIONS(2112), + [anon_sym___alignof__] = ACTIONS(2112), + [anon_sym___alignof] = ACTIONS(2112), + [anon_sym__alignof] = ACTIONS(2112), + [anon_sym_alignof] = ACTIONS(2112), + [anon_sym__Alignof] = ACTIONS(2112), + [anon_sym_offsetof] = ACTIONS(2112), + [anon_sym__Generic] = ACTIONS(2112), + [anon_sym_asm] = ACTIONS(2112), + [anon_sym___asm__] = ACTIONS(2112), + [anon_sym___asm] = ACTIONS(2112), + [sym_number_literal] = ACTIONS(2114), + [anon_sym_L_SQUOTE] = ACTIONS(2114), + [anon_sym_u_SQUOTE] = ACTIONS(2114), + [anon_sym_U_SQUOTE] = ACTIONS(2114), + [anon_sym_u8_SQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), + [anon_sym_L_DQUOTE] = ACTIONS(2114), + [anon_sym_u_DQUOTE] = ACTIONS(2114), + [anon_sym_U_DQUOTE] = ACTIONS(2114), + [anon_sym_u8_DQUOTE] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2112), + [anon_sym_nullptr] = ACTIONS(2112), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2112), + [anon_sym_decltype] = ACTIONS(2112), + [anon_sym_explicit] = ACTIONS(2112), + [anon_sym_typename] = ACTIONS(2112), + [anon_sym_template] = ACTIONS(2112), + [anon_sym_operator] = ACTIONS(2112), + [anon_sym_try] = ACTIONS(2112), + [anon_sym_delete] = ACTIONS(2112), + [anon_sym_throw] = ACTIONS(2112), + [anon_sym_namespace] = ACTIONS(2112), + [anon_sym_using] = ACTIONS(2112), + [anon_sym_static_assert] = ACTIONS(2112), + [anon_sym_concept] = ACTIONS(2112), + [anon_sym_co_return] = ACTIONS(2112), + [anon_sym_co_yield] = ACTIONS(2112), + [anon_sym_R_DQUOTE] = ACTIONS(2114), + [anon_sym_LR_DQUOTE] = ACTIONS(2114), + [anon_sym_uR_DQUOTE] = ACTIONS(2114), + [anon_sym_UR_DQUOTE] = ACTIONS(2114), + [anon_sym_u8R_DQUOTE] = ACTIONS(2114), + [anon_sym_co_await] = ACTIONS(2112), + [anon_sym_new] = ACTIONS(2112), + [anon_sym_requires] = ACTIONS(2112), + [sym_this] = ACTIONS(2112), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_FORWARD] = ACTIONS(2112), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2112), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_PS_GET] = ACTIONS(2112), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2112), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2112), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2112), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2112), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2112), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2112), + [anon_sym_MOZ_COLD] = ACTIONS(2112), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2112), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2112), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2112), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2112), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2112), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2112), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2112), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2112), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2112), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2112), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2112), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2112), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2112), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_NONNULL] = ACTIONS(2112), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2112), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2112), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2112), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2112), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2112), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2112), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2112), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2112), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2112), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2112), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2112), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2112), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2112), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2112), + [anon_sym_MOZ_RAII] = ACTIONS(2112), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2112), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2112), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2112), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2112), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2112), + }, + [STATE(374)] = { + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_include_token1] = ACTIONS(2108), + [aux_sym_preproc_def_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token2] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [sym_preproc_directive] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_AMP_AMP] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym___extension__] = ACTIONS(2108), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_virtual] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym_COLON_COLON] = ACTIONS(2110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2110), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___based] = ACTIONS(2108), + [anon_sym___cdecl] = ACTIONS(2108), + [anon_sym___clrcall] = ACTIONS(2108), + [anon_sym___stdcall] = ACTIONS(2108), + [anon_sym___fastcall] = ACTIONS(2108), + [anon_sym___thiscall] = ACTIONS(2108), + [anon_sym___vectorcall] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [anon_sym_LBRACK] = ACTIONS(2108), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [anon_sym___inline] = ACTIONS(2108), + [anon_sym___inline__] = ACTIONS(2108), + [anon_sym___forceinline] = ACTIONS(2108), + [anon_sym_thread_local] = ACTIONS(2108), + [anon_sym___thread] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_constexpr] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym___restrict__] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym__Noreturn] = ACTIONS(2108), + [anon_sym_noreturn] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym_mutable] = ACTIONS(2108), + [anon_sym_constinit] = ACTIONS(2108), + [anon_sym_consteval] = ACTIONS(2108), + [anon_sym_alignas] = ACTIONS(2108), + [anon_sym__Alignas] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_class] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_else] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_case] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_goto] = ACTIONS(2108), + [anon_sym___try] = ACTIONS(2108), + [anon_sym___leave] = ACTIONS(2108), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_sizeof] = ACTIONS(2108), + [anon_sym___alignof__] = ACTIONS(2108), + [anon_sym___alignof] = ACTIONS(2108), + [anon_sym__alignof] = ACTIONS(2108), + [anon_sym_alignof] = ACTIONS(2108), + [anon_sym__Alignof] = ACTIONS(2108), + [anon_sym_offsetof] = ACTIONS(2108), + [anon_sym__Generic] = ACTIONS(2108), + [anon_sym_asm] = ACTIONS(2108), + [anon_sym___asm__] = ACTIONS(2108), + [anon_sym___asm] = ACTIONS(2108), + [sym_number_literal] = ACTIONS(2110), + [anon_sym_L_SQUOTE] = ACTIONS(2110), + [anon_sym_u_SQUOTE] = ACTIONS(2110), + [anon_sym_U_SQUOTE] = ACTIONS(2110), + [anon_sym_u8_SQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [anon_sym_NULL] = ACTIONS(2108), + [anon_sym_nullptr] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2108), + [anon_sym_decltype] = ACTIONS(2108), + [anon_sym_explicit] = ACTIONS(2108), + [anon_sym_typename] = ACTIONS(2108), + [anon_sym_template] = ACTIONS(2108), + [anon_sym_operator] = ACTIONS(2108), + [anon_sym_try] = ACTIONS(2108), + [anon_sym_delete] = ACTIONS(2108), + [anon_sym_throw] = ACTIONS(2108), + [anon_sym_namespace] = ACTIONS(2108), + [anon_sym_using] = ACTIONS(2108), + [anon_sym_static_assert] = ACTIONS(2108), + [anon_sym_concept] = ACTIONS(2108), + [anon_sym_co_return] = ACTIONS(2108), + [anon_sym_co_yield] = ACTIONS(2108), + [anon_sym_R_DQUOTE] = ACTIONS(2110), + [anon_sym_LR_DQUOTE] = ACTIONS(2110), + [anon_sym_uR_DQUOTE] = ACTIONS(2110), + [anon_sym_UR_DQUOTE] = ACTIONS(2110), + [anon_sym_u8R_DQUOTE] = ACTIONS(2110), + [anon_sym_co_await] = ACTIONS(2108), + [anon_sym_new] = ACTIONS(2108), + [anon_sym_requires] = ACTIONS(2108), + [sym_this] = ACTIONS(2108), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_FORWARD] = ACTIONS(2108), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_PS_GET] = ACTIONS(2108), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2108), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2108), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2108), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2108), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2108), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2108), + [anon_sym_MOZ_COLD] = ACTIONS(2108), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2108), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2108), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2108), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2108), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2108), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2108), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2108), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2108), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2108), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2108), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2108), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2108), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2108), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_NONNULL] = ACTIONS(2108), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2108), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2108), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2108), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2108), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2108), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2108), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2108), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2108), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2108), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2108), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2108), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2108), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2108), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2108), + [anon_sym_MOZ_RAII] = ACTIONS(2108), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2108), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2108), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2108), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2108), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2108), + }, + [STATE(375)] = { + [sym_identifier] = ACTIONS(2148), + [aux_sym_preproc_include_token1] = ACTIONS(2148), + [aux_sym_preproc_def_token1] = ACTIONS(2148), + [aux_sym_preproc_if_token1] = ACTIONS(2148), + [aux_sym_preproc_if_token2] = ACTIONS(2148), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2148), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2148), + [sym_preproc_directive] = ACTIONS(2148), + [anon_sym_LPAREN2] = ACTIONS(2150), + [anon_sym_BANG] = ACTIONS(2150), + [anon_sym_TILDE] = ACTIONS(2150), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_PLUS] = ACTIONS(2148), + [anon_sym_STAR] = ACTIONS(2150), + [anon_sym_AMP_AMP] = ACTIONS(2150), + [anon_sym_AMP] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym___extension__] = ACTIONS(2148), + [anon_sym_typedef] = ACTIONS(2148), + [anon_sym_virtual] = ACTIONS(2148), + [anon_sym_extern] = ACTIONS(2148), + [anon_sym___attribute__] = ACTIONS(2148), + [anon_sym___attribute] = ACTIONS(2148), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2150), + [anon_sym___declspec] = ACTIONS(2148), + [anon_sym___based] = ACTIONS(2148), + [anon_sym___cdecl] = ACTIONS(2148), + [anon_sym___clrcall] = ACTIONS(2148), + [anon_sym___stdcall] = ACTIONS(2148), + [anon_sym___fastcall] = ACTIONS(2148), + [anon_sym___thiscall] = ACTIONS(2148), + [anon_sym___vectorcall] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_signed] = ACTIONS(2148), + [anon_sym_unsigned] = ACTIONS(2148), + [anon_sym_long] = ACTIONS(2148), + [anon_sym_short] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_register] = ACTIONS(2148), + [anon_sym_inline] = ACTIONS(2148), + [anon_sym___inline] = ACTIONS(2148), + [anon_sym___inline__] = ACTIONS(2148), + [anon_sym___forceinline] = ACTIONS(2148), + [anon_sym_thread_local] = ACTIONS(2148), + [anon_sym___thread] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_constexpr] = ACTIONS(2148), + [anon_sym_volatile] = ACTIONS(2148), + [anon_sym_restrict] = ACTIONS(2148), + [anon_sym___restrict__] = ACTIONS(2148), + [anon_sym__Atomic] = ACTIONS(2148), + [anon_sym__Noreturn] = ACTIONS(2148), + [anon_sym_noreturn] = ACTIONS(2148), + [anon_sym__Nonnull] = ACTIONS(2148), + [anon_sym_mutable] = ACTIONS(2148), + [anon_sym_constinit] = ACTIONS(2148), + [anon_sym_consteval] = ACTIONS(2148), + [anon_sym_alignas] = ACTIONS(2148), + [anon_sym__Alignas] = ACTIONS(2148), + [sym_primitive_type] = ACTIONS(2148), + [anon_sym_enum] = ACTIONS(2148), + [anon_sym_class] = ACTIONS(2148), + [anon_sym_struct] = ACTIONS(2148), + [anon_sym_union] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2148), + [anon_sym_else] = ACTIONS(2148), + [anon_sym_switch] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2148), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2148), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_for] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2148), + [anon_sym_break] = ACTIONS(2148), + [anon_sym_continue] = ACTIONS(2148), + [anon_sym_goto] = ACTIONS(2148), + [anon_sym___try] = ACTIONS(2148), + [anon_sym___leave] = ACTIONS(2148), + [anon_sym_not] = ACTIONS(2148), + [anon_sym_compl] = ACTIONS(2148), + [anon_sym_DASH_DASH] = ACTIONS(2150), + [anon_sym_PLUS_PLUS] = ACTIONS(2150), + [anon_sym_sizeof] = ACTIONS(2148), + [anon_sym___alignof__] = ACTIONS(2148), + [anon_sym___alignof] = ACTIONS(2148), + [anon_sym__alignof] = ACTIONS(2148), + [anon_sym_alignof] = ACTIONS(2148), + [anon_sym__Alignof] = ACTIONS(2148), + [anon_sym_offsetof] = ACTIONS(2148), + [anon_sym__Generic] = ACTIONS(2148), + [anon_sym_asm] = ACTIONS(2148), + [anon_sym___asm__] = ACTIONS(2148), + [anon_sym___asm] = ACTIONS(2148), + [sym_number_literal] = ACTIONS(2150), + [anon_sym_L_SQUOTE] = ACTIONS(2150), + [anon_sym_u_SQUOTE] = ACTIONS(2150), + [anon_sym_U_SQUOTE] = ACTIONS(2150), + [anon_sym_u8_SQUOTE] = ACTIONS(2150), + [anon_sym_SQUOTE] = ACTIONS(2150), + [anon_sym_L_DQUOTE] = ACTIONS(2150), + [anon_sym_u_DQUOTE] = ACTIONS(2150), + [anon_sym_U_DQUOTE] = ACTIONS(2150), + [anon_sym_u8_DQUOTE] = ACTIONS(2150), + [anon_sym_DQUOTE] = ACTIONS(2150), + [sym_true] = ACTIONS(2148), + [sym_false] = ACTIONS(2148), + [anon_sym_NULL] = ACTIONS(2148), + [anon_sym_nullptr] = ACTIONS(2148), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2148), + [anon_sym_decltype] = ACTIONS(2148), + [anon_sym_explicit] = ACTIONS(2148), + [anon_sym_typename] = ACTIONS(2148), + [anon_sym_template] = ACTIONS(2148), + [anon_sym_operator] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2148), + [anon_sym_delete] = ACTIONS(2148), + [anon_sym_throw] = ACTIONS(2148), + [anon_sym_namespace] = ACTIONS(2148), + [anon_sym_using] = ACTIONS(2148), + [anon_sym_static_assert] = ACTIONS(2148), + [anon_sym_concept] = ACTIONS(2148), + [anon_sym_co_return] = ACTIONS(2148), + [anon_sym_co_yield] = ACTIONS(2148), + [anon_sym_R_DQUOTE] = ACTIONS(2150), + [anon_sym_LR_DQUOTE] = ACTIONS(2150), + [anon_sym_uR_DQUOTE] = ACTIONS(2150), + [anon_sym_UR_DQUOTE] = ACTIONS(2150), + [anon_sym_u8R_DQUOTE] = ACTIONS(2150), + [anon_sym_co_await] = ACTIONS(2148), + [anon_sym_new] = ACTIONS(2148), + [anon_sym_requires] = ACTIONS(2148), + [sym_this] = ACTIONS(2148), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_FORWARD] = ACTIONS(2148), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2148), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_PS_GET] = ACTIONS(2148), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2148), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2148), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2148), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2148), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2148), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2148), + [anon_sym_MOZ_COLD] = ACTIONS(2148), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2148), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2148), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2148), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2148), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2148), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2148), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2148), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2148), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2148), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2148), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2148), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2148), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2148), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_NONNULL] = ACTIONS(2148), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2148), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2148), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2148), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2148), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2148), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2148), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2148), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2148), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2148), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2148), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2148), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2148), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2148), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2148), + [anon_sym_MOZ_RAII] = ACTIONS(2148), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2148), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2148), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2148), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2148), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2148), + }, + [STATE(376)] = { + [sym_identifier] = ACTIONS(2160), + [aux_sym_preproc_include_token1] = ACTIONS(2160), + [aux_sym_preproc_def_token1] = ACTIONS(2160), + [aux_sym_preproc_if_token1] = ACTIONS(2160), + [aux_sym_preproc_if_token2] = ACTIONS(2160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2160), + [sym_preproc_directive] = ACTIONS(2160), + [anon_sym_LPAREN2] = ACTIONS(2162), + [anon_sym_BANG] = ACTIONS(2162), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym___extension__] = ACTIONS(2160), + [anon_sym_typedef] = ACTIONS(2160), + [anon_sym_virtual] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2160), + [anon_sym___attribute__] = ACTIONS(2160), + [anon_sym___attribute] = ACTIONS(2160), + [anon_sym_COLON_COLON] = ACTIONS(2162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2162), + [anon_sym___declspec] = ACTIONS(2160), + [anon_sym___based] = ACTIONS(2160), + [anon_sym___cdecl] = ACTIONS(2160), + [anon_sym___clrcall] = ACTIONS(2160), + [anon_sym___stdcall] = ACTIONS(2160), + [anon_sym___fastcall] = ACTIONS(2160), + [anon_sym___thiscall] = ACTIONS(2160), + [anon_sym___vectorcall] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_signed] = ACTIONS(2160), + [anon_sym_unsigned] = ACTIONS(2160), + [anon_sym_long] = ACTIONS(2160), + [anon_sym_short] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_register] = ACTIONS(2160), + [anon_sym_inline] = ACTIONS(2160), + [anon_sym___inline] = ACTIONS(2160), + [anon_sym___inline__] = ACTIONS(2160), + [anon_sym___forceinline] = ACTIONS(2160), + [anon_sym_thread_local] = ACTIONS(2160), + [anon_sym___thread] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_constexpr] = ACTIONS(2160), + [anon_sym_volatile] = ACTIONS(2160), + [anon_sym_restrict] = ACTIONS(2160), + [anon_sym___restrict__] = ACTIONS(2160), + [anon_sym__Atomic] = ACTIONS(2160), + [anon_sym__Noreturn] = ACTIONS(2160), + [anon_sym_noreturn] = ACTIONS(2160), + [anon_sym__Nonnull] = ACTIONS(2160), + [anon_sym_mutable] = ACTIONS(2160), + [anon_sym_constinit] = ACTIONS(2160), + [anon_sym_consteval] = ACTIONS(2160), + [anon_sym_alignas] = ACTIONS(2160), + [anon_sym__Alignas] = ACTIONS(2160), + [sym_primitive_type] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_struct] = ACTIONS(2160), + [anon_sym_union] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_goto] = ACTIONS(2160), + [anon_sym___try] = ACTIONS(2160), + [anon_sym___leave] = ACTIONS(2160), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_compl] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_sizeof] = ACTIONS(2160), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2160), + [anon_sym__Generic] = ACTIONS(2160), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [anon_sym___asm] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2162), + [anon_sym_u_DQUOTE] = ACTIONS(2162), + [anon_sym_U_DQUOTE] = ACTIONS(2162), + [anon_sym_u8_DQUOTE] = ACTIONS(2162), + [anon_sym_DQUOTE] = ACTIONS(2162), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [anon_sym_NULL] = ACTIONS(2160), + [anon_sym_nullptr] = ACTIONS(2160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2160), + [anon_sym_decltype] = ACTIONS(2160), + [anon_sym_explicit] = ACTIONS(2160), + [anon_sym_typename] = ACTIONS(2160), + [anon_sym_template] = ACTIONS(2160), + [anon_sym_operator] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_static_assert] = ACTIONS(2160), + [anon_sym_concept] = ACTIONS(2160), + [anon_sym_co_return] = ACTIONS(2160), + [anon_sym_co_yield] = ACTIONS(2160), + [anon_sym_R_DQUOTE] = ACTIONS(2162), + [anon_sym_LR_DQUOTE] = ACTIONS(2162), + [anon_sym_uR_DQUOTE] = ACTIONS(2162), + [anon_sym_UR_DQUOTE] = ACTIONS(2162), + [anon_sym_u8R_DQUOTE] = ACTIONS(2162), + [anon_sym_co_await] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_requires] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_FORWARD] = ACTIONS(2160), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2160), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_PS_GET] = ACTIONS(2160), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2160), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2160), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2160), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2160), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2160), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2160), + [anon_sym_MOZ_COLD] = ACTIONS(2160), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2160), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2160), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2160), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2160), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2160), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2160), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2160), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2160), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2160), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2160), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2160), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2160), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2160), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_NONNULL] = ACTIONS(2160), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2160), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2160), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2160), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2160), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2160), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2160), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2160), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2160), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2160), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2160), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2160), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2160), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2160), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2160), + [anon_sym_MOZ_RAII] = ACTIONS(2160), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2160), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2160), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2160), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2160), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2160), + }, + [STATE(377)] = { + [sym_identifier] = ACTIONS(1988), + [aux_sym_preproc_include_token1] = ACTIONS(1988), + [aux_sym_preproc_def_token1] = ACTIONS(1988), + [aux_sym_preproc_if_token1] = ACTIONS(1988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1988), + [sym_preproc_directive] = ACTIONS(1988), + [anon_sym_LPAREN2] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_TILDE] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1988), + [anon_sym_PLUS] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1990), + [anon_sym_AMP_AMP] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1988), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym___extension__] = ACTIONS(1988), + [anon_sym_typedef] = ACTIONS(1988), + [anon_sym_virtual] = ACTIONS(1988), + [anon_sym_extern] = ACTIONS(1988), + [anon_sym___attribute__] = ACTIONS(1988), + [anon_sym___attribute] = ACTIONS(1988), + [anon_sym_COLON_COLON] = ACTIONS(1990), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1990), + [anon_sym___declspec] = ACTIONS(1988), + [anon_sym___based] = ACTIONS(1988), + [anon_sym___cdecl] = ACTIONS(1988), + [anon_sym___clrcall] = ACTIONS(1988), + [anon_sym___stdcall] = ACTIONS(1988), + [anon_sym___fastcall] = ACTIONS(1988), + [anon_sym___thiscall] = ACTIONS(1988), + [anon_sym___vectorcall] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1990), + [anon_sym_RBRACE] = ACTIONS(1990), + [anon_sym_signed] = ACTIONS(1988), + [anon_sym_unsigned] = ACTIONS(1988), + [anon_sym_long] = ACTIONS(1988), + [anon_sym_short] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1988), + [anon_sym_register] = ACTIONS(1988), + [anon_sym_inline] = ACTIONS(1988), + [anon_sym___inline] = ACTIONS(1988), + [anon_sym___inline__] = ACTIONS(1988), + [anon_sym___forceinline] = ACTIONS(1988), + [anon_sym_thread_local] = ACTIONS(1988), + [anon_sym___thread] = ACTIONS(1988), + [anon_sym_const] = ACTIONS(1988), + [anon_sym_constexpr] = ACTIONS(1988), + [anon_sym_volatile] = ACTIONS(1988), + [anon_sym_restrict] = ACTIONS(1988), + [anon_sym___restrict__] = ACTIONS(1988), + [anon_sym__Atomic] = ACTIONS(1988), + [anon_sym__Noreturn] = ACTIONS(1988), + [anon_sym_noreturn] = ACTIONS(1988), + [anon_sym__Nonnull] = ACTIONS(1988), + [anon_sym_mutable] = ACTIONS(1988), + [anon_sym_constinit] = ACTIONS(1988), + [anon_sym_consteval] = ACTIONS(1988), + [anon_sym_alignas] = ACTIONS(1988), + [anon_sym__Alignas] = ACTIONS(1988), + [sym_primitive_type] = ACTIONS(1988), + [anon_sym_enum] = ACTIONS(1988), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1988), + [anon_sym_union] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_else] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_do] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_return] = ACTIONS(1988), + [anon_sym_break] = ACTIONS(1988), + [anon_sym_continue] = ACTIONS(1988), + [anon_sym_goto] = ACTIONS(1988), + [anon_sym___try] = ACTIONS(1988), + [anon_sym___leave] = ACTIONS(1988), + [anon_sym_not] = ACTIONS(1988), + [anon_sym_compl] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1990), + [anon_sym_PLUS_PLUS] = ACTIONS(1990), + [anon_sym_sizeof] = ACTIONS(1988), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1988), + [anon_sym__Generic] = ACTIONS(1988), + [anon_sym_asm] = ACTIONS(1988), + [anon_sym___asm__] = ACTIONS(1988), + [anon_sym___asm] = ACTIONS(1988), + [sym_number_literal] = ACTIONS(1990), + [anon_sym_L_SQUOTE] = ACTIONS(1990), + [anon_sym_u_SQUOTE] = ACTIONS(1990), + [anon_sym_U_SQUOTE] = ACTIONS(1990), + [anon_sym_u8_SQUOTE] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_L_DQUOTE] = ACTIONS(1990), + [anon_sym_u_DQUOTE] = ACTIONS(1990), + [anon_sym_U_DQUOTE] = ACTIONS(1990), + [anon_sym_u8_DQUOTE] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1990), + [sym_true] = ACTIONS(1988), + [sym_false] = ACTIONS(1988), + [anon_sym_NULL] = ACTIONS(1988), + [anon_sym_nullptr] = ACTIONS(1988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1988), + [anon_sym_decltype] = ACTIONS(1988), + [anon_sym_explicit] = ACTIONS(1988), + [anon_sym_typename] = ACTIONS(1988), + [anon_sym_template] = ACTIONS(1988), + [anon_sym_operator] = ACTIONS(1988), + [anon_sym_try] = ACTIONS(1988), + [anon_sym_delete] = ACTIONS(1988), + [anon_sym_throw] = ACTIONS(1988), + [anon_sym_namespace] = ACTIONS(1988), + [anon_sym_using] = ACTIONS(1988), + [anon_sym_static_assert] = ACTIONS(1988), + [anon_sym_concept] = ACTIONS(1988), + [anon_sym_co_return] = ACTIONS(1988), + [anon_sym_co_yield] = ACTIONS(1988), + [anon_sym_R_DQUOTE] = ACTIONS(1990), + [anon_sym_LR_DQUOTE] = ACTIONS(1990), + [anon_sym_uR_DQUOTE] = ACTIONS(1990), + [anon_sym_UR_DQUOTE] = ACTIONS(1990), + [anon_sym_u8R_DQUOTE] = ACTIONS(1990), + [anon_sym_co_await] = ACTIONS(1988), + [anon_sym_new] = ACTIONS(1988), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1988), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_FORWARD] = ACTIONS(1988), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1988), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_PS_GET] = ACTIONS(1988), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1988), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1988), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1988), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1988), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1988), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1988), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1988), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1988), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1988), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1988), + [anon_sym_MOZ_COLD] = ACTIONS(1988), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1988), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1988), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1988), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1988), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1988), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1988), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1988), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1988), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1988), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1988), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1988), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1988), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1988), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1988), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1988), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1988), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1988), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1988), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1988), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1988), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_NONNULL] = ACTIONS(1988), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1988), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1988), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1988), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1988), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1988), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_NORETURN] = ACTIONS(1988), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1988), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1988), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1988), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1988), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1988), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1988), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1988), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1988), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1988), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1988), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1988), + [anon_sym_MOZ_RAII] = ACTIONS(1988), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1988), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1988), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1988), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1988), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1988), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1988), + }, + [STATE(378)] = { + [sym_identifier] = ACTIONS(1992), + [aux_sym_preproc_include_token1] = ACTIONS(1992), + [aux_sym_preproc_def_token1] = ACTIONS(1992), + [aux_sym_preproc_if_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1992), + [sym_preproc_directive] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_AMP_AMP] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1992), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym___extension__] = ACTIONS(1992), + [anon_sym_typedef] = ACTIONS(1992), + [anon_sym_virtual] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1992), + [anon_sym___attribute] = ACTIONS(1992), + [anon_sym_COLON_COLON] = ACTIONS(1994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1994), + [anon_sym___declspec] = ACTIONS(1992), + [anon_sym___based] = ACTIONS(1992), + [anon_sym___cdecl] = ACTIONS(1992), + [anon_sym___clrcall] = ACTIONS(1992), + [anon_sym___stdcall] = ACTIONS(1992), + [anon_sym___fastcall] = ACTIONS(1992), + [anon_sym___thiscall] = ACTIONS(1992), + [anon_sym___vectorcall] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_signed] = ACTIONS(1992), + [anon_sym_unsigned] = ACTIONS(1992), + [anon_sym_long] = ACTIONS(1992), + [anon_sym_short] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1992), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_inline] = ACTIONS(1992), + [anon_sym___inline] = ACTIONS(1992), + [anon_sym___inline__] = ACTIONS(1992), + [anon_sym___forceinline] = ACTIONS(1992), + [anon_sym_thread_local] = ACTIONS(1992), + [anon_sym___thread] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_constexpr] = ACTIONS(1992), + [anon_sym_volatile] = ACTIONS(1992), + [anon_sym_restrict] = ACTIONS(1992), + [anon_sym___restrict__] = ACTIONS(1992), + [anon_sym__Atomic] = ACTIONS(1992), + [anon_sym__Noreturn] = ACTIONS(1992), + [anon_sym_noreturn] = ACTIONS(1992), + [anon_sym__Nonnull] = ACTIONS(1992), + [anon_sym_mutable] = ACTIONS(1992), + [anon_sym_constinit] = ACTIONS(1992), + [anon_sym_consteval] = ACTIONS(1992), + [anon_sym_alignas] = ACTIONS(1992), + [anon_sym__Alignas] = ACTIONS(1992), + [sym_primitive_type] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_class] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1992), + [anon_sym_switch] = ACTIONS(1992), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(1992), + [anon_sym___try] = ACTIONS(1992), + [anon_sym___leave] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1992), + [anon_sym___alignof__] = ACTIONS(1992), + [anon_sym___alignof] = ACTIONS(1992), + [anon_sym__alignof] = ACTIONS(1992), + [anon_sym_alignof] = ACTIONS(1992), + [anon_sym__Alignof] = ACTIONS(1992), + [anon_sym_offsetof] = ACTIONS(1992), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_asm] = ACTIONS(1992), + [anon_sym___asm__] = ACTIONS(1992), + [anon_sym___asm] = ACTIONS(1992), + [sym_number_literal] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1994), + [anon_sym_u_SQUOTE] = ACTIONS(1994), + [anon_sym_U_SQUOTE] = ACTIONS(1994), + [anon_sym_u8_SQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_L_DQUOTE] = ACTIONS(1994), + [anon_sym_u_DQUOTE] = ACTIONS(1994), + [anon_sym_U_DQUOTE] = ACTIONS(1994), + [anon_sym_u8_DQUOTE] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym_true] = ACTIONS(1992), + [sym_false] = ACTIONS(1992), + [anon_sym_NULL] = ACTIONS(1992), + [anon_sym_nullptr] = ACTIONS(1992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1992), + [anon_sym_decltype] = ACTIONS(1992), + [anon_sym_explicit] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(1992), + [anon_sym_template] = ACTIONS(1992), + [anon_sym_operator] = ACTIONS(1992), + [anon_sym_try] = ACTIONS(1992), + [anon_sym_delete] = ACTIONS(1992), + [anon_sym_throw] = ACTIONS(1992), + [anon_sym_namespace] = ACTIONS(1992), + [anon_sym_using] = ACTIONS(1992), + [anon_sym_static_assert] = ACTIONS(1992), + [anon_sym_concept] = ACTIONS(1992), + [anon_sym_co_return] = ACTIONS(1992), + [anon_sym_co_yield] = ACTIONS(1992), + [anon_sym_R_DQUOTE] = ACTIONS(1994), + [anon_sym_LR_DQUOTE] = ACTIONS(1994), + [anon_sym_uR_DQUOTE] = ACTIONS(1994), + [anon_sym_UR_DQUOTE] = ACTIONS(1994), + [anon_sym_u8R_DQUOTE] = ACTIONS(1994), + [anon_sym_co_await] = ACTIONS(1992), + [anon_sym_new] = ACTIONS(1992), + [anon_sym_requires] = ACTIONS(1992), + [sym_this] = ACTIONS(1992), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_FORWARD] = ACTIONS(1992), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_PS_GET] = ACTIONS(1992), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1992), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1992), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1992), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1992), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1992), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1992), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1992), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1992), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1992), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1992), + [anon_sym_MOZ_COLD] = ACTIONS(1992), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1992), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1992), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1992), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1992), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1992), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1992), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1992), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1992), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1992), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1992), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1992), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1992), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1992), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1992), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1992), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1992), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1992), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1992), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1992), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1992), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_NONNULL] = ACTIONS(1992), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1992), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1992), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1992), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1992), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1992), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_NORETURN] = ACTIONS(1992), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1992), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1992), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1992), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1992), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1992), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1992), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1992), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1992), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1992), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1992), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1992), + [anon_sym_MOZ_RAII] = ACTIONS(1992), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1992), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1992), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1992), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1992), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1992), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1992), + }, + [STATE(379)] = { + [sym_identifier] = ACTIONS(1996), + [aux_sym_preproc_include_token1] = ACTIONS(1996), + [aux_sym_preproc_def_token1] = ACTIONS(1996), + [aux_sym_preproc_if_token1] = ACTIONS(1996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1996), + [sym_preproc_directive] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(1998), + [anon_sym_BANG] = ACTIONS(1998), + [anon_sym_TILDE] = ACTIONS(1998), + [anon_sym_DASH] = ACTIONS(1996), + [anon_sym_PLUS] = ACTIONS(1996), + [anon_sym_STAR] = ACTIONS(1998), + [anon_sym_AMP_AMP] = ACTIONS(1998), + [anon_sym_AMP] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_typedef] = ACTIONS(1996), + [anon_sym_virtual] = ACTIONS(1996), + [anon_sym_extern] = ACTIONS(1996), + [anon_sym___attribute__] = ACTIONS(1996), + [anon_sym___attribute] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1998), + [anon_sym___declspec] = ACTIONS(1996), + [anon_sym___based] = ACTIONS(1996), + [anon_sym___cdecl] = ACTIONS(1996), + [anon_sym___clrcall] = ACTIONS(1996), + [anon_sym___stdcall] = ACTIONS(1996), + [anon_sym___fastcall] = ACTIONS(1996), + [anon_sym___thiscall] = ACTIONS(1996), + [anon_sym___vectorcall] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1998), + [anon_sym_RBRACE] = ACTIONS(1998), + [anon_sym_signed] = ACTIONS(1996), + [anon_sym_unsigned] = ACTIONS(1996), + [anon_sym_long] = ACTIONS(1996), + [anon_sym_short] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_static] = ACTIONS(1996), + [anon_sym_register] = ACTIONS(1996), + [anon_sym_inline] = ACTIONS(1996), + [anon_sym___inline] = ACTIONS(1996), + [anon_sym___inline__] = ACTIONS(1996), + [anon_sym___forceinline] = ACTIONS(1996), + [anon_sym_thread_local] = ACTIONS(1996), + [anon_sym___thread] = ACTIONS(1996), + [anon_sym_const] = ACTIONS(1996), + [anon_sym_constexpr] = ACTIONS(1996), + [anon_sym_volatile] = ACTIONS(1996), + [anon_sym_restrict] = ACTIONS(1996), + [anon_sym___restrict__] = ACTIONS(1996), + [anon_sym__Atomic] = ACTIONS(1996), + [anon_sym__Noreturn] = ACTIONS(1996), + [anon_sym_noreturn] = ACTIONS(1996), + [anon_sym__Nonnull] = ACTIONS(1996), + [anon_sym_mutable] = ACTIONS(1996), + [anon_sym_constinit] = ACTIONS(1996), + [anon_sym_consteval] = ACTIONS(1996), + [anon_sym_alignas] = ACTIONS(1996), + [anon_sym__Alignas] = ACTIONS(1996), + [sym_primitive_type] = ACTIONS(1996), + [anon_sym_enum] = ACTIONS(1996), + [anon_sym_class] = ACTIONS(1996), + [anon_sym_struct] = ACTIONS(1996), + [anon_sym_union] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1996), + [anon_sym_else] = ACTIONS(1996), + [anon_sym_switch] = ACTIONS(1996), + [anon_sym_case] = ACTIONS(1996), + [anon_sym_default] = ACTIONS(1996), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(1996), + [anon_sym_for] = ACTIONS(1996), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_break] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(1996), + [anon_sym_goto] = ACTIONS(1996), + [anon_sym___try] = ACTIONS(1996), + [anon_sym___leave] = ACTIONS(1996), + [anon_sym_not] = ACTIONS(1996), + [anon_sym_compl] = ACTIONS(1996), + [anon_sym_DASH_DASH] = ACTIONS(1998), + [anon_sym_PLUS_PLUS] = ACTIONS(1998), + [anon_sym_sizeof] = ACTIONS(1996), + [anon_sym___alignof__] = ACTIONS(1996), + [anon_sym___alignof] = ACTIONS(1996), + [anon_sym__alignof] = ACTIONS(1996), + [anon_sym_alignof] = ACTIONS(1996), + [anon_sym__Alignof] = ACTIONS(1996), + [anon_sym_offsetof] = ACTIONS(1996), + [anon_sym__Generic] = ACTIONS(1996), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(1998), + [anon_sym_u_SQUOTE] = ACTIONS(1998), + [anon_sym_U_SQUOTE] = ACTIONS(1998), + [anon_sym_u8_SQUOTE] = ACTIONS(1998), + [anon_sym_SQUOTE] = ACTIONS(1998), + [anon_sym_L_DQUOTE] = ACTIONS(1998), + [anon_sym_u_DQUOTE] = ACTIONS(1998), + [anon_sym_U_DQUOTE] = ACTIONS(1998), + [anon_sym_u8_DQUOTE] = ACTIONS(1998), + [anon_sym_DQUOTE] = ACTIONS(1998), + [sym_true] = ACTIONS(1996), + [sym_false] = ACTIONS(1996), + [anon_sym_NULL] = ACTIONS(1996), + [anon_sym_nullptr] = ACTIONS(1996), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1996), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_explicit] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1996), + [anon_sym_template] = ACTIONS(1996), + [anon_sym_operator] = ACTIONS(1996), + [anon_sym_try] = ACTIONS(1996), + [anon_sym_delete] = ACTIONS(1996), + [anon_sym_throw] = ACTIONS(1996), + [anon_sym_namespace] = ACTIONS(1996), + [anon_sym_using] = ACTIONS(1996), + [anon_sym_static_assert] = ACTIONS(1996), + [anon_sym_concept] = ACTIONS(1996), + [anon_sym_co_return] = ACTIONS(1996), + [anon_sym_co_yield] = ACTIONS(1996), + [anon_sym_R_DQUOTE] = ACTIONS(1998), + [anon_sym_LR_DQUOTE] = ACTIONS(1998), + [anon_sym_uR_DQUOTE] = ACTIONS(1998), + [anon_sym_UR_DQUOTE] = ACTIONS(1998), + [anon_sym_u8R_DQUOTE] = ACTIONS(1998), + [anon_sym_co_await] = ACTIONS(1996), + [anon_sym_new] = ACTIONS(1996), + [anon_sym_requires] = ACTIONS(1996), + [sym_this] = ACTIONS(1996), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_FORWARD] = ACTIONS(1996), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1996), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_PS_GET] = ACTIONS(1996), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1996), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1996), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1996), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1996), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1996), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1996), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1996), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1996), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1996), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1996), + [anon_sym_MOZ_COLD] = ACTIONS(1996), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1996), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1996), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1996), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1996), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1996), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1996), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1996), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1996), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1996), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1996), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1996), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1996), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1996), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1996), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1996), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1996), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1996), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1996), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1996), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1996), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_NONNULL] = ACTIONS(1996), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1996), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1996), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1996), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1996), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1996), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_NORETURN] = ACTIONS(1996), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1996), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1996), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1996), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1996), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1996), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1996), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1996), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1996), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1996), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1996), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1996), + [anon_sym_MOZ_RAII] = ACTIONS(1996), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1996), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1996), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1996), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1996), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1996), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1996), + }, + [STATE(380)] = { + [sym_identifier] = ACTIONS(2000), + [aux_sym_preproc_include_token1] = ACTIONS(2000), + [aux_sym_preproc_def_token1] = ACTIONS(2000), + [aux_sym_preproc_if_token1] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2000), + [sym_preproc_directive] = ACTIONS(2000), + [anon_sym_LPAREN2] = ACTIONS(2002), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2000), + [anon_sym_PLUS] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym___extension__] = ACTIONS(2000), + [anon_sym_typedef] = ACTIONS(2000), + [anon_sym_virtual] = ACTIONS(2000), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym___attribute__] = ACTIONS(2000), + [anon_sym___attribute] = ACTIONS(2000), + [anon_sym_COLON_COLON] = ACTIONS(2002), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2002), + [anon_sym___declspec] = ACTIONS(2000), + [anon_sym___based] = ACTIONS(2000), + [anon_sym___cdecl] = ACTIONS(2000), + [anon_sym___clrcall] = ACTIONS(2000), + [anon_sym___stdcall] = ACTIONS(2000), + [anon_sym___fastcall] = ACTIONS(2000), + [anon_sym___thiscall] = ACTIONS(2000), + [anon_sym___vectorcall] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_RBRACE] = ACTIONS(2002), + [anon_sym_signed] = ACTIONS(2000), + [anon_sym_unsigned] = ACTIONS(2000), + [anon_sym_long] = ACTIONS(2000), + [anon_sym_short] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_static] = ACTIONS(2000), + [anon_sym_register] = ACTIONS(2000), + [anon_sym_inline] = ACTIONS(2000), + [anon_sym___inline] = ACTIONS(2000), + [anon_sym___inline__] = ACTIONS(2000), + [anon_sym___forceinline] = ACTIONS(2000), + [anon_sym_thread_local] = ACTIONS(2000), + [anon_sym___thread] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [anon_sym_constexpr] = ACTIONS(2000), + [anon_sym_volatile] = ACTIONS(2000), + [anon_sym_restrict] = ACTIONS(2000), + [anon_sym___restrict__] = ACTIONS(2000), + [anon_sym__Atomic] = ACTIONS(2000), + [anon_sym__Noreturn] = ACTIONS(2000), + [anon_sym_noreturn] = ACTIONS(2000), + [anon_sym__Nonnull] = ACTIONS(2000), + [anon_sym_mutable] = ACTIONS(2000), + [anon_sym_constinit] = ACTIONS(2000), + [anon_sym_consteval] = ACTIONS(2000), + [anon_sym_alignas] = ACTIONS(2000), + [anon_sym__Alignas] = ACTIONS(2000), + [sym_primitive_type] = ACTIONS(2000), + [anon_sym_enum] = ACTIONS(2000), + [anon_sym_class] = ACTIONS(2000), + [anon_sym_struct] = ACTIONS(2000), + [anon_sym_union] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2000), + [anon_sym_switch] = ACTIONS(2000), + [anon_sym_case] = ACTIONS(2000), + [anon_sym_default] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_goto] = ACTIONS(2000), + [anon_sym___try] = ACTIONS(2000), + [anon_sym___leave] = ACTIONS(2000), + [anon_sym_not] = ACTIONS(2000), + [anon_sym_compl] = ACTIONS(2000), + [anon_sym_DASH_DASH] = ACTIONS(2002), + [anon_sym_PLUS_PLUS] = ACTIONS(2002), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(2000), + [anon_sym___alignof] = ACTIONS(2000), + [anon_sym__alignof] = ACTIONS(2000), + [anon_sym_alignof] = ACTIONS(2000), + [anon_sym__Alignof] = ACTIONS(2000), + [anon_sym_offsetof] = ACTIONS(2000), + [anon_sym__Generic] = ACTIONS(2000), + [anon_sym_asm] = ACTIONS(2000), + [anon_sym___asm__] = ACTIONS(2000), + [anon_sym___asm] = ACTIONS(2000), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2002), + [anon_sym_u_SQUOTE] = ACTIONS(2002), + [anon_sym_U_SQUOTE] = ACTIONS(2002), + [anon_sym_u8_SQUOTE] = ACTIONS(2002), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2000), + [sym_false] = ACTIONS(2000), + [anon_sym_NULL] = ACTIONS(2000), + [anon_sym_nullptr] = ACTIONS(2000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2000), + [anon_sym_decltype] = ACTIONS(2000), + [anon_sym_explicit] = ACTIONS(2000), + [anon_sym_typename] = ACTIONS(2000), + [anon_sym_template] = ACTIONS(2000), + [anon_sym_operator] = ACTIONS(2000), + [anon_sym_try] = ACTIONS(2000), + [anon_sym_delete] = ACTIONS(2000), + [anon_sym_throw] = ACTIONS(2000), + [anon_sym_namespace] = ACTIONS(2000), + [anon_sym_using] = ACTIONS(2000), + [anon_sym_static_assert] = ACTIONS(2000), + [anon_sym_concept] = ACTIONS(2000), + [anon_sym_co_return] = ACTIONS(2000), + [anon_sym_co_yield] = ACTIONS(2000), + [anon_sym_R_DQUOTE] = ACTIONS(2002), + [anon_sym_LR_DQUOTE] = ACTIONS(2002), + [anon_sym_uR_DQUOTE] = ACTIONS(2002), + [anon_sym_UR_DQUOTE] = ACTIONS(2002), + [anon_sym_u8R_DQUOTE] = ACTIONS(2002), + [anon_sym_co_await] = ACTIONS(2000), + [anon_sym_new] = ACTIONS(2000), + [anon_sym_requires] = ACTIONS(2000), + [sym_this] = ACTIONS(2000), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_FORWARD] = ACTIONS(2000), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2000), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_PS_GET] = ACTIONS(2000), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2000), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2000), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2000), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2000), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2000), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2000), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2000), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2000), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2000), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2000), + [anon_sym_MOZ_COLD] = ACTIONS(2000), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2000), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2000), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2000), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2000), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2000), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2000), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2000), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2000), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2000), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2000), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2000), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2000), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2000), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2000), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2000), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2000), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2000), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2000), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2000), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2000), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_NONNULL] = ACTIONS(2000), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2000), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2000), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2000), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2000), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2000), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_NORETURN] = ACTIONS(2000), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2000), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2000), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2000), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2000), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2000), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2000), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2000), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2000), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2000), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2000), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2000), + [anon_sym_MOZ_RAII] = ACTIONS(2000), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2000), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2000), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2000), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2000), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2000), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2000), + }, + [STATE(381)] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2004), + [aux_sym_preproc_def_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [sym_preproc_directive] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP_AMP] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(2004), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_virtual] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym_COLON_COLON] = ACTIONS(2006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2006), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___based] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [anon_sym_LBRACK] = ACTIONS(2004), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [anon_sym___inline] = ACTIONS(2004), + [anon_sym___inline__] = ACTIONS(2004), + [anon_sym___forceinline] = ACTIONS(2004), + [anon_sym_thread_local] = ACTIONS(2004), + [anon_sym___thread] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_constexpr] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym___restrict__] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym__Noreturn] = ACTIONS(2004), + [anon_sym_noreturn] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym_mutable] = ACTIONS(2004), + [anon_sym_constinit] = ACTIONS(2004), + [anon_sym_consteval] = ACTIONS(2004), + [anon_sym_alignas] = ACTIONS(2004), + [anon_sym__Alignas] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_class] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_else] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym___try] = ACTIONS(2004), + [anon_sym___leave] = ACTIONS(2004), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [anon_sym___alignof__] = ACTIONS(2004), + [anon_sym___alignof] = ACTIONS(2004), + [anon_sym__alignof] = ACTIONS(2004), + [anon_sym_alignof] = ACTIONS(2004), + [anon_sym__Alignof] = ACTIONS(2004), + [anon_sym_offsetof] = ACTIONS(2004), + [anon_sym__Generic] = ACTIONS(2004), + [anon_sym_asm] = ACTIONS(2004), + [anon_sym___asm__] = ACTIONS(2004), + [anon_sym___asm] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2004), + [anon_sym_nullptr] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2004), + [anon_sym_decltype] = ACTIONS(2004), + [anon_sym_explicit] = ACTIONS(2004), + [anon_sym_typename] = ACTIONS(2004), + [anon_sym_template] = ACTIONS(2004), + [anon_sym_operator] = ACTIONS(2004), + [anon_sym_try] = ACTIONS(2004), + [anon_sym_delete] = ACTIONS(2004), + [anon_sym_throw] = ACTIONS(2004), + [anon_sym_namespace] = ACTIONS(2004), + [anon_sym_using] = ACTIONS(2004), + [anon_sym_static_assert] = ACTIONS(2004), + [anon_sym_concept] = ACTIONS(2004), + [anon_sym_co_return] = ACTIONS(2004), + [anon_sym_co_yield] = ACTIONS(2004), + [anon_sym_R_DQUOTE] = ACTIONS(2006), + [anon_sym_LR_DQUOTE] = ACTIONS(2006), + [anon_sym_uR_DQUOTE] = ACTIONS(2006), + [anon_sym_UR_DQUOTE] = ACTIONS(2006), + [anon_sym_u8R_DQUOTE] = ACTIONS(2006), + [anon_sym_co_await] = ACTIONS(2004), + [anon_sym_new] = ACTIONS(2004), + [anon_sym_requires] = ACTIONS(2004), + [sym_this] = ACTIONS(2004), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_FORWARD] = ACTIONS(2004), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_PS_GET] = ACTIONS(2004), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2004), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2004), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2004), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2004), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2004), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2004), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2004), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2004), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2004), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2004), + [anon_sym_MOZ_COLD] = ACTIONS(2004), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2004), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2004), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2004), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2004), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2004), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2004), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2004), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2004), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2004), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2004), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2004), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2004), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2004), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2004), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2004), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2004), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2004), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2004), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2004), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2004), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_NONNULL] = ACTIONS(2004), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2004), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2004), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2004), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2004), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2004), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_NORETURN] = ACTIONS(2004), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2004), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2004), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2004), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2004), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2004), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2004), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2004), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2004), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2004), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2004), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2004), + [anon_sym_MOZ_RAII] = ACTIONS(2004), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2004), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2004), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2004), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2004), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2004), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2004), + }, + [STATE(382)] = { + [sym_identifier] = ACTIONS(2008), + [aux_sym_preproc_include_token1] = ACTIONS(2008), + [aux_sym_preproc_def_token1] = ACTIONS(2008), + [aux_sym_preproc_if_token1] = ACTIONS(2008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2008), + [sym_preproc_directive] = ACTIONS(2008), + [anon_sym_LPAREN2] = ACTIONS(2010), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(2010), + [anon_sym_AMP_AMP] = ACTIONS(2010), + [anon_sym_AMP] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym___extension__] = ACTIONS(2008), + [anon_sym_typedef] = ACTIONS(2008), + [anon_sym_virtual] = ACTIONS(2008), + [anon_sym_extern] = ACTIONS(2008), + [anon_sym___attribute__] = ACTIONS(2008), + [anon_sym___attribute] = ACTIONS(2008), + [anon_sym_COLON_COLON] = ACTIONS(2010), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2010), + [anon_sym___declspec] = ACTIONS(2008), + [anon_sym___based] = ACTIONS(2008), + [anon_sym___cdecl] = ACTIONS(2008), + [anon_sym___clrcall] = ACTIONS(2008), + [anon_sym___stdcall] = ACTIONS(2008), + [anon_sym___fastcall] = ACTIONS(2008), + [anon_sym___thiscall] = ACTIONS(2008), + [anon_sym___vectorcall] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2010), + [anon_sym_RBRACE] = ACTIONS(2010), + [anon_sym_signed] = ACTIONS(2008), + [anon_sym_unsigned] = ACTIONS(2008), + [anon_sym_long] = ACTIONS(2008), + [anon_sym_short] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_static] = ACTIONS(2008), + [anon_sym_register] = ACTIONS(2008), + [anon_sym_inline] = ACTIONS(2008), + [anon_sym___inline] = ACTIONS(2008), + [anon_sym___inline__] = ACTIONS(2008), + [anon_sym___forceinline] = ACTIONS(2008), + [anon_sym_thread_local] = ACTIONS(2008), + [anon_sym___thread] = ACTIONS(2008), + [anon_sym_const] = ACTIONS(2008), + [anon_sym_constexpr] = ACTIONS(2008), + [anon_sym_volatile] = ACTIONS(2008), + [anon_sym_restrict] = ACTIONS(2008), + [anon_sym___restrict__] = ACTIONS(2008), + [anon_sym__Atomic] = ACTIONS(2008), + [anon_sym__Noreturn] = ACTIONS(2008), + [anon_sym_noreturn] = ACTIONS(2008), + [anon_sym__Nonnull] = ACTIONS(2008), + [anon_sym_mutable] = ACTIONS(2008), + [anon_sym_constinit] = ACTIONS(2008), + [anon_sym_consteval] = ACTIONS(2008), + [anon_sym_alignas] = ACTIONS(2008), + [anon_sym__Alignas] = ACTIONS(2008), + [sym_primitive_type] = ACTIONS(2008), + [anon_sym_enum] = ACTIONS(2008), + [anon_sym_class] = ACTIONS(2008), + [anon_sym_struct] = ACTIONS(2008), + [anon_sym_union] = ACTIONS(2008), + [anon_sym_if] = ACTIONS(2008), + [anon_sym_else] = ACTIONS(2008), + [anon_sym_switch] = ACTIONS(2008), + [anon_sym_case] = ACTIONS(2008), + [anon_sym_default] = ACTIONS(2008), + [anon_sym_while] = ACTIONS(2008), + [anon_sym_do] = ACTIONS(2008), + [anon_sym_for] = ACTIONS(2008), + [anon_sym_return] = ACTIONS(2008), + [anon_sym_break] = ACTIONS(2008), + [anon_sym_continue] = ACTIONS(2008), + [anon_sym_goto] = ACTIONS(2008), + [anon_sym___try] = ACTIONS(2008), + [anon_sym___leave] = ACTIONS(2008), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2010), + [anon_sym_PLUS_PLUS] = ACTIONS(2010), + [anon_sym_sizeof] = ACTIONS(2008), + [anon_sym___alignof__] = ACTIONS(2008), + [anon_sym___alignof] = ACTIONS(2008), + [anon_sym__alignof] = ACTIONS(2008), + [anon_sym_alignof] = ACTIONS(2008), + [anon_sym__Alignof] = ACTIONS(2008), + [anon_sym_offsetof] = ACTIONS(2008), + [anon_sym__Generic] = ACTIONS(2008), + [anon_sym_asm] = ACTIONS(2008), + [anon_sym___asm__] = ACTIONS(2008), + [anon_sym___asm] = ACTIONS(2008), + [sym_number_literal] = ACTIONS(2010), + [anon_sym_L_SQUOTE] = ACTIONS(2010), + [anon_sym_u_SQUOTE] = ACTIONS(2010), + [anon_sym_U_SQUOTE] = ACTIONS(2010), + [anon_sym_u8_SQUOTE] = ACTIONS(2010), + [anon_sym_SQUOTE] = ACTIONS(2010), + [anon_sym_L_DQUOTE] = ACTIONS(2010), + [anon_sym_u_DQUOTE] = ACTIONS(2010), + [anon_sym_U_DQUOTE] = ACTIONS(2010), + [anon_sym_u8_DQUOTE] = ACTIONS(2010), + [anon_sym_DQUOTE] = ACTIONS(2010), + [sym_true] = ACTIONS(2008), + [sym_false] = ACTIONS(2008), + [anon_sym_NULL] = ACTIONS(2008), + [anon_sym_nullptr] = ACTIONS(2008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2008), + [anon_sym_decltype] = ACTIONS(2008), + [anon_sym_explicit] = ACTIONS(2008), + [anon_sym_typename] = ACTIONS(2008), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_operator] = ACTIONS(2008), + [anon_sym_try] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_throw] = ACTIONS(2008), + [anon_sym_namespace] = ACTIONS(2008), + [anon_sym_using] = ACTIONS(2008), + [anon_sym_static_assert] = ACTIONS(2008), + [anon_sym_concept] = ACTIONS(2008), + [anon_sym_co_return] = ACTIONS(2008), + [anon_sym_co_yield] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2008), + [anon_sym_new] = ACTIONS(2008), + [anon_sym_requires] = ACTIONS(2008), + [sym_this] = ACTIONS(2008), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_FORWARD] = ACTIONS(2008), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2008), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_PS_GET] = ACTIONS(2008), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2008), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2008), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2008), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2008), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2008), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2008), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2008), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2008), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2008), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2008), + [anon_sym_MOZ_COLD] = ACTIONS(2008), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2008), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2008), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2008), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2008), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2008), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2008), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2008), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2008), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2008), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2008), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2008), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2008), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2008), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2008), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2008), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2008), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2008), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2008), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2008), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2008), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_NONNULL] = ACTIONS(2008), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2008), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2008), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2008), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2008), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2008), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_NORETURN] = ACTIONS(2008), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2008), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2008), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2008), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2008), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2008), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2008), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2008), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2008), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2008), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2008), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2008), + [anon_sym_MOZ_RAII] = ACTIONS(2008), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2008), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2008), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2008), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2008), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2008), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2008), + }, + [STATE(383)] = { + [sym_identifier] = ACTIONS(1980), + [aux_sym_preproc_include_token1] = ACTIONS(1980), + [aux_sym_preproc_def_token1] = ACTIONS(1980), + [aux_sym_preproc_if_token1] = ACTIONS(1980), + [aux_sym_preproc_if_token2] = ACTIONS(1980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1980), + [sym_preproc_directive] = ACTIONS(1980), + [anon_sym_LPAREN2] = ACTIONS(1982), + [anon_sym_BANG] = ACTIONS(1982), + [anon_sym_TILDE] = ACTIONS(1982), + [anon_sym_DASH] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(1980), + [anon_sym_STAR] = ACTIONS(1982), + [anon_sym_AMP_AMP] = ACTIONS(1982), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym___extension__] = ACTIONS(1980), + [anon_sym_typedef] = ACTIONS(1980), + [anon_sym_virtual] = ACTIONS(1980), + [anon_sym_extern] = ACTIONS(1980), + [anon_sym___attribute__] = ACTIONS(1980), + [anon_sym___attribute] = ACTIONS(1980), + [anon_sym_COLON_COLON] = ACTIONS(1982), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1982), + [anon_sym___declspec] = ACTIONS(1980), + [anon_sym___based] = ACTIONS(1980), + [anon_sym___cdecl] = ACTIONS(1980), + [anon_sym___clrcall] = ACTIONS(1980), + [anon_sym___stdcall] = ACTIONS(1980), + [anon_sym___fastcall] = ACTIONS(1980), + [anon_sym___thiscall] = ACTIONS(1980), + [anon_sym___vectorcall] = ACTIONS(1980), + [anon_sym_LBRACE] = ACTIONS(1982), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_static] = ACTIONS(1980), + [anon_sym_register] = ACTIONS(1980), + [anon_sym_inline] = ACTIONS(1980), + [anon_sym___inline] = ACTIONS(1980), + [anon_sym___inline__] = ACTIONS(1980), + [anon_sym___forceinline] = ACTIONS(1980), + [anon_sym_thread_local] = ACTIONS(1980), + [anon_sym___thread] = ACTIONS(1980), + [anon_sym_const] = ACTIONS(1980), + [anon_sym_constexpr] = ACTIONS(1980), + [anon_sym_volatile] = ACTIONS(1980), + [anon_sym_restrict] = ACTIONS(1980), + [anon_sym___restrict__] = ACTIONS(1980), + [anon_sym__Atomic] = ACTIONS(1980), + [anon_sym__Noreturn] = ACTIONS(1980), + [anon_sym_noreturn] = ACTIONS(1980), + [anon_sym__Nonnull] = ACTIONS(1980), + [anon_sym_mutable] = ACTIONS(1980), + [anon_sym_constinit] = ACTIONS(1980), + [anon_sym_consteval] = ACTIONS(1980), + [anon_sym_alignas] = ACTIONS(1980), + [anon_sym__Alignas] = ACTIONS(1980), + [sym_primitive_type] = ACTIONS(1980), + [anon_sym_enum] = ACTIONS(1980), + [anon_sym_class] = ACTIONS(1980), + [anon_sym_struct] = ACTIONS(1980), + [anon_sym_union] = ACTIONS(1980), + [anon_sym_if] = ACTIONS(1980), + [anon_sym_else] = ACTIONS(1980), + [anon_sym_switch] = ACTIONS(1980), + [anon_sym_case] = ACTIONS(1980), + [anon_sym_default] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [anon_sym_do] = ACTIONS(1980), + [anon_sym_for] = ACTIONS(1980), + [anon_sym_return] = ACTIONS(1980), + [anon_sym_break] = ACTIONS(1980), + [anon_sym_continue] = ACTIONS(1980), + [anon_sym_goto] = ACTIONS(1980), + [anon_sym___try] = ACTIONS(1980), + [anon_sym___leave] = ACTIONS(1980), + [anon_sym_not] = ACTIONS(1980), + [anon_sym_compl] = ACTIONS(1980), + [anon_sym_DASH_DASH] = ACTIONS(1982), + [anon_sym_PLUS_PLUS] = ACTIONS(1982), + [anon_sym_sizeof] = ACTIONS(1980), + [anon_sym___alignof__] = ACTIONS(1980), + [anon_sym___alignof] = ACTIONS(1980), + [anon_sym__alignof] = ACTIONS(1980), + [anon_sym_alignof] = ACTIONS(1980), + [anon_sym__Alignof] = ACTIONS(1980), + [anon_sym_offsetof] = ACTIONS(1980), + [anon_sym__Generic] = ACTIONS(1980), + [anon_sym_asm] = ACTIONS(1980), + [anon_sym___asm__] = ACTIONS(1980), + [anon_sym___asm] = ACTIONS(1980), + [sym_number_literal] = ACTIONS(1982), + [anon_sym_L_SQUOTE] = ACTIONS(1982), + [anon_sym_u_SQUOTE] = ACTIONS(1982), + [anon_sym_U_SQUOTE] = ACTIONS(1982), + [anon_sym_u8_SQUOTE] = ACTIONS(1982), + [anon_sym_SQUOTE] = ACTIONS(1982), + [anon_sym_L_DQUOTE] = ACTIONS(1982), + [anon_sym_u_DQUOTE] = ACTIONS(1982), + [anon_sym_U_DQUOTE] = ACTIONS(1982), + [anon_sym_u8_DQUOTE] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(1982), + [sym_true] = ACTIONS(1980), + [sym_false] = ACTIONS(1980), + [anon_sym_NULL] = ACTIONS(1980), + [anon_sym_nullptr] = ACTIONS(1980), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1980), + [anon_sym_decltype] = ACTIONS(1980), + [anon_sym_explicit] = ACTIONS(1980), + [anon_sym_typename] = ACTIONS(1980), + [anon_sym_template] = ACTIONS(1980), + [anon_sym_operator] = ACTIONS(1980), + [anon_sym_try] = ACTIONS(1980), + [anon_sym_delete] = ACTIONS(1980), + [anon_sym_throw] = ACTIONS(1980), + [anon_sym_namespace] = ACTIONS(1980), + [anon_sym_using] = ACTIONS(1980), + [anon_sym_static_assert] = ACTIONS(1980), + [anon_sym_concept] = ACTIONS(1980), + [anon_sym_co_return] = ACTIONS(1980), + [anon_sym_co_yield] = ACTIONS(1980), + [anon_sym_R_DQUOTE] = ACTIONS(1982), + [anon_sym_LR_DQUOTE] = ACTIONS(1982), + [anon_sym_uR_DQUOTE] = ACTIONS(1982), + [anon_sym_UR_DQUOTE] = ACTIONS(1982), + [anon_sym_u8R_DQUOTE] = ACTIONS(1982), + [anon_sym_co_await] = ACTIONS(1980), + [anon_sym_new] = ACTIONS(1980), + [anon_sym_requires] = ACTIONS(1980), + [sym_this] = ACTIONS(1980), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_FORWARD] = ACTIONS(1980), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1980), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_PS_GET] = ACTIONS(1980), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1980), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1980), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1980), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1980), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1980), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1980), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1980), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1980), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1980), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1980), + [anon_sym_MOZ_COLD] = ACTIONS(1980), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1980), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1980), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1980), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1980), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1980), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1980), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1980), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1980), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1980), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1980), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1980), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1980), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1980), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1980), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1980), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1980), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1980), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1980), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1980), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1980), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_NONNULL] = ACTIONS(1980), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1980), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1980), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1980), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1980), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1980), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_NORETURN] = ACTIONS(1980), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1980), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1980), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1980), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1980), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1980), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1980), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1980), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1980), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1980), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1980), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1980), + [anon_sym_MOZ_RAII] = ACTIONS(1980), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1980), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1980), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1980), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1980), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1980), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1980), + }, + [STATE(384)] = { + [sym_identifier] = ACTIONS(1988), + [aux_sym_preproc_include_token1] = ACTIONS(1988), + [aux_sym_preproc_def_token1] = ACTIONS(1988), + [aux_sym_preproc_if_token1] = ACTIONS(1988), + [aux_sym_preproc_if_token2] = ACTIONS(1988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1988), + [sym_preproc_directive] = ACTIONS(1988), + [anon_sym_LPAREN2] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_TILDE] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1988), + [anon_sym_PLUS] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1990), + [anon_sym_AMP_AMP] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1988), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym___extension__] = ACTIONS(1988), + [anon_sym_typedef] = ACTIONS(1988), + [anon_sym_virtual] = ACTIONS(1988), + [anon_sym_extern] = ACTIONS(1988), + [anon_sym___attribute__] = ACTIONS(1988), + [anon_sym___attribute] = ACTIONS(1988), + [anon_sym_COLON_COLON] = ACTIONS(1990), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1990), + [anon_sym___declspec] = ACTIONS(1988), + [anon_sym___based] = ACTIONS(1988), + [anon_sym___cdecl] = ACTIONS(1988), + [anon_sym___clrcall] = ACTIONS(1988), + [anon_sym___stdcall] = ACTIONS(1988), + [anon_sym___fastcall] = ACTIONS(1988), + [anon_sym___thiscall] = ACTIONS(1988), + [anon_sym___vectorcall] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1990), + [anon_sym_signed] = ACTIONS(1988), + [anon_sym_unsigned] = ACTIONS(1988), + [anon_sym_long] = ACTIONS(1988), + [anon_sym_short] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1988), + [anon_sym_register] = ACTIONS(1988), + [anon_sym_inline] = ACTIONS(1988), + [anon_sym___inline] = ACTIONS(1988), + [anon_sym___inline__] = ACTIONS(1988), + [anon_sym___forceinline] = ACTIONS(1988), + [anon_sym_thread_local] = ACTIONS(1988), + [anon_sym___thread] = ACTIONS(1988), + [anon_sym_const] = ACTIONS(1988), + [anon_sym_constexpr] = ACTIONS(1988), + [anon_sym_volatile] = ACTIONS(1988), + [anon_sym_restrict] = ACTIONS(1988), + [anon_sym___restrict__] = ACTIONS(1988), + [anon_sym__Atomic] = ACTIONS(1988), + [anon_sym__Noreturn] = ACTIONS(1988), + [anon_sym_noreturn] = ACTIONS(1988), + [anon_sym__Nonnull] = ACTIONS(1988), + [anon_sym_mutable] = ACTIONS(1988), + [anon_sym_constinit] = ACTIONS(1988), + [anon_sym_consteval] = ACTIONS(1988), + [anon_sym_alignas] = ACTIONS(1988), + [anon_sym__Alignas] = ACTIONS(1988), + [sym_primitive_type] = ACTIONS(1988), + [anon_sym_enum] = ACTIONS(1988), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1988), + [anon_sym_union] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_else] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_do] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_return] = ACTIONS(1988), + [anon_sym_break] = ACTIONS(1988), + [anon_sym_continue] = ACTIONS(1988), + [anon_sym_goto] = ACTIONS(1988), + [anon_sym___try] = ACTIONS(1988), + [anon_sym___leave] = ACTIONS(1988), + [anon_sym_not] = ACTIONS(1988), + [anon_sym_compl] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1990), + [anon_sym_PLUS_PLUS] = ACTIONS(1990), + [anon_sym_sizeof] = ACTIONS(1988), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1988), + [anon_sym__Generic] = ACTIONS(1988), + [anon_sym_asm] = ACTIONS(1988), + [anon_sym___asm__] = ACTIONS(1988), + [anon_sym___asm] = ACTIONS(1988), + [sym_number_literal] = ACTIONS(1990), + [anon_sym_L_SQUOTE] = ACTIONS(1990), + [anon_sym_u_SQUOTE] = ACTIONS(1990), + [anon_sym_U_SQUOTE] = ACTIONS(1990), + [anon_sym_u8_SQUOTE] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_L_DQUOTE] = ACTIONS(1990), + [anon_sym_u_DQUOTE] = ACTIONS(1990), + [anon_sym_U_DQUOTE] = ACTIONS(1990), + [anon_sym_u8_DQUOTE] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1990), + [sym_true] = ACTIONS(1988), + [sym_false] = ACTIONS(1988), + [anon_sym_NULL] = ACTIONS(1988), + [anon_sym_nullptr] = ACTIONS(1988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1988), + [anon_sym_decltype] = ACTIONS(1988), + [anon_sym_explicit] = ACTIONS(1988), + [anon_sym_typename] = ACTIONS(1988), + [anon_sym_template] = ACTIONS(1988), + [anon_sym_operator] = ACTIONS(1988), + [anon_sym_try] = ACTIONS(1988), + [anon_sym_delete] = ACTIONS(1988), + [anon_sym_throw] = ACTIONS(1988), + [anon_sym_namespace] = ACTIONS(1988), + [anon_sym_using] = ACTIONS(1988), + [anon_sym_static_assert] = ACTIONS(1988), + [anon_sym_concept] = ACTIONS(1988), + [anon_sym_co_return] = ACTIONS(1988), + [anon_sym_co_yield] = ACTIONS(1988), + [anon_sym_R_DQUOTE] = ACTIONS(1990), + [anon_sym_LR_DQUOTE] = ACTIONS(1990), + [anon_sym_uR_DQUOTE] = ACTIONS(1990), + [anon_sym_UR_DQUOTE] = ACTIONS(1990), + [anon_sym_u8R_DQUOTE] = ACTIONS(1990), + [anon_sym_co_await] = ACTIONS(1988), + [anon_sym_new] = ACTIONS(1988), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1988), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_FORWARD] = ACTIONS(1988), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1988), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_PS_GET] = ACTIONS(1988), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1988), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1988), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1988), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1988), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1988), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1988), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1988), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1988), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1988), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1988), + [anon_sym_MOZ_COLD] = ACTIONS(1988), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1988), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1988), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1988), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1988), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1988), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1988), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1988), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1988), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1988), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1988), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1988), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1988), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1988), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1988), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1988), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1988), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1988), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1988), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1988), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1988), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_NONNULL] = ACTIONS(1988), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1988), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1988), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1988), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1988), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1988), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_NORETURN] = ACTIONS(1988), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1988), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1988), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1988), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1988), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1988), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1988), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1988), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1988), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1988), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1988), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1988), + [anon_sym_MOZ_RAII] = ACTIONS(1988), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1988), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1988), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1988), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1988), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1988), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1988), + }, + [STATE(385)] = { + [sym_identifier] = ACTIONS(1992), + [aux_sym_preproc_include_token1] = ACTIONS(1992), + [aux_sym_preproc_def_token1] = ACTIONS(1992), + [aux_sym_preproc_if_token1] = ACTIONS(1992), + [aux_sym_preproc_if_token2] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1992), + [sym_preproc_directive] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_AMP_AMP] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1992), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym___extension__] = ACTIONS(1992), + [anon_sym_typedef] = ACTIONS(1992), + [anon_sym_virtual] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1992), + [anon_sym___attribute] = ACTIONS(1992), + [anon_sym_COLON_COLON] = ACTIONS(1994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1994), + [anon_sym___declspec] = ACTIONS(1992), + [anon_sym___based] = ACTIONS(1992), + [anon_sym___cdecl] = ACTIONS(1992), + [anon_sym___clrcall] = ACTIONS(1992), + [anon_sym___stdcall] = ACTIONS(1992), + [anon_sym___fastcall] = ACTIONS(1992), + [anon_sym___thiscall] = ACTIONS(1992), + [anon_sym___vectorcall] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_signed] = ACTIONS(1992), + [anon_sym_unsigned] = ACTIONS(1992), + [anon_sym_long] = ACTIONS(1992), + [anon_sym_short] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1992), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_inline] = ACTIONS(1992), + [anon_sym___inline] = ACTIONS(1992), + [anon_sym___inline__] = ACTIONS(1992), + [anon_sym___forceinline] = ACTIONS(1992), + [anon_sym_thread_local] = ACTIONS(1992), + [anon_sym___thread] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_constexpr] = ACTIONS(1992), + [anon_sym_volatile] = ACTIONS(1992), + [anon_sym_restrict] = ACTIONS(1992), + [anon_sym___restrict__] = ACTIONS(1992), + [anon_sym__Atomic] = ACTIONS(1992), + [anon_sym__Noreturn] = ACTIONS(1992), + [anon_sym_noreturn] = ACTIONS(1992), + [anon_sym__Nonnull] = ACTIONS(1992), + [anon_sym_mutable] = ACTIONS(1992), + [anon_sym_constinit] = ACTIONS(1992), + [anon_sym_consteval] = ACTIONS(1992), + [anon_sym_alignas] = ACTIONS(1992), + [anon_sym__Alignas] = ACTIONS(1992), + [sym_primitive_type] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_class] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1992), + [anon_sym_switch] = ACTIONS(1992), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(1992), + [anon_sym___try] = ACTIONS(1992), + [anon_sym___leave] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1992), + [anon_sym___alignof__] = ACTIONS(1992), + [anon_sym___alignof] = ACTIONS(1992), + [anon_sym__alignof] = ACTIONS(1992), + [anon_sym_alignof] = ACTIONS(1992), + [anon_sym__Alignof] = ACTIONS(1992), + [anon_sym_offsetof] = ACTIONS(1992), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_asm] = ACTIONS(1992), + [anon_sym___asm__] = ACTIONS(1992), + [anon_sym___asm] = ACTIONS(1992), + [sym_number_literal] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1994), + [anon_sym_u_SQUOTE] = ACTIONS(1994), + [anon_sym_U_SQUOTE] = ACTIONS(1994), + [anon_sym_u8_SQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_L_DQUOTE] = ACTIONS(1994), + [anon_sym_u_DQUOTE] = ACTIONS(1994), + [anon_sym_U_DQUOTE] = ACTIONS(1994), + [anon_sym_u8_DQUOTE] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym_true] = ACTIONS(1992), + [sym_false] = ACTIONS(1992), + [anon_sym_NULL] = ACTIONS(1992), + [anon_sym_nullptr] = ACTIONS(1992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1992), + [anon_sym_decltype] = ACTIONS(1992), + [anon_sym_explicit] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(1992), + [anon_sym_template] = ACTIONS(1992), + [anon_sym_operator] = ACTIONS(1992), + [anon_sym_try] = ACTIONS(1992), + [anon_sym_delete] = ACTIONS(1992), + [anon_sym_throw] = ACTIONS(1992), + [anon_sym_namespace] = ACTIONS(1992), + [anon_sym_using] = ACTIONS(1992), + [anon_sym_static_assert] = ACTIONS(1992), + [anon_sym_concept] = ACTIONS(1992), + [anon_sym_co_return] = ACTIONS(1992), + [anon_sym_co_yield] = ACTIONS(1992), + [anon_sym_R_DQUOTE] = ACTIONS(1994), + [anon_sym_LR_DQUOTE] = ACTIONS(1994), + [anon_sym_uR_DQUOTE] = ACTIONS(1994), + [anon_sym_UR_DQUOTE] = ACTIONS(1994), + [anon_sym_u8R_DQUOTE] = ACTIONS(1994), + [anon_sym_co_await] = ACTIONS(1992), + [anon_sym_new] = ACTIONS(1992), + [anon_sym_requires] = ACTIONS(1992), + [sym_this] = ACTIONS(1992), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_FORWARD] = ACTIONS(1992), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_PS_GET] = ACTIONS(1992), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1992), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1992), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1992), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1992), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1992), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1992), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1992), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1992), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1992), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1992), + [anon_sym_MOZ_COLD] = ACTIONS(1992), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1992), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1992), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1992), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1992), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1992), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1992), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1992), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1992), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1992), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1992), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1992), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1992), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1992), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1992), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1992), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1992), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1992), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1992), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1992), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1992), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_NONNULL] = ACTIONS(1992), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1992), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1992), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1992), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1992), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1992), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_NORETURN] = ACTIONS(1992), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1992), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1992), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1992), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1992), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1992), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1992), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1992), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1992), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1992), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1992), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1992), + [anon_sym_MOZ_RAII] = ACTIONS(1992), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1992), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1992), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1992), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1992), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1992), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1992), + }, + [STATE(386)] = { + [sym_identifier] = ACTIONS(1996), + [aux_sym_preproc_include_token1] = ACTIONS(1996), + [aux_sym_preproc_def_token1] = ACTIONS(1996), + [aux_sym_preproc_if_token1] = ACTIONS(1996), + [aux_sym_preproc_if_token2] = ACTIONS(1996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1996), + [sym_preproc_directive] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(1998), + [anon_sym_BANG] = ACTIONS(1998), + [anon_sym_TILDE] = ACTIONS(1998), + [anon_sym_DASH] = ACTIONS(1996), + [anon_sym_PLUS] = ACTIONS(1996), + [anon_sym_STAR] = ACTIONS(1998), + [anon_sym_AMP_AMP] = ACTIONS(1998), + [anon_sym_AMP] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_typedef] = ACTIONS(1996), + [anon_sym_virtual] = ACTIONS(1996), + [anon_sym_extern] = ACTIONS(1996), + [anon_sym___attribute__] = ACTIONS(1996), + [anon_sym___attribute] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1998), + [anon_sym___declspec] = ACTIONS(1996), + [anon_sym___based] = ACTIONS(1996), + [anon_sym___cdecl] = ACTIONS(1996), + [anon_sym___clrcall] = ACTIONS(1996), + [anon_sym___stdcall] = ACTIONS(1996), + [anon_sym___fastcall] = ACTIONS(1996), + [anon_sym___thiscall] = ACTIONS(1996), + [anon_sym___vectorcall] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1998), + [anon_sym_signed] = ACTIONS(1996), + [anon_sym_unsigned] = ACTIONS(1996), + [anon_sym_long] = ACTIONS(1996), + [anon_sym_short] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_static] = ACTIONS(1996), + [anon_sym_register] = ACTIONS(1996), + [anon_sym_inline] = ACTIONS(1996), + [anon_sym___inline] = ACTIONS(1996), + [anon_sym___inline__] = ACTIONS(1996), + [anon_sym___forceinline] = ACTIONS(1996), + [anon_sym_thread_local] = ACTIONS(1996), + [anon_sym___thread] = ACTIONS(1996), + [anon_sym_const] = ACTIONS(1996), + [anon_sym_constexpr] = ACTIONS(1996), + [anon_sym_volatile] = ACTIONS(1996), + [anon_sym_restrict] = ACTIONS(1996), + [anon_sym___restrict__] = ACTIONS(1996), + [anon_sym__Atomic] = ACTIONS(1996), + [anon_sym__Noreturn] = ACTIONS(1996), + [anon_sym_noreturn] = ACTIONS(1996), + [anon_sym__Nonnull] = ACTIONS(1996), + [anon_sym_mutable] = ACTIONS(1996), + [anon_sym_constinit] = ACTIONS(1996), + [anon_sym_consteval] = ACTIONS(1996), + [anon_sym_alignas] = ACTIONS(1996), + [anon_sym__Alignas] = ACTIONS(1996), + [sym_primitive_type] = ACTIONS(1996), + [anon_sym_enum] = ACTIONS(1996), + [anon_sym_class] = ACTIONS(1996), + [anon_sym_struct] = ACTIONS(1996), + [anon_sym_union] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1996), + [anon_sym_else] = ACTIONS(1996), + [anon_sym_switch] = ACTIONS(1996), + [anon_sym_case] = ACTIONS(1996), + [anon_sym_default] = ACTIONS(1996), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(1996), + [anon_sym_for] = ACTIONS(1996), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_break] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(1996), + [anon_sym_goto] = ACTIONS(1996), + [anon_sym___try] = ACTIONS(1996), + [anon_sym___leave] = ACTIONS(1996), + [anon_sym_not] = ACTIONS(1996), + [anon_sym_compl] = ACTIONS(1996), + [anon_sym_DASH_DASH] = ACTIONS(1998), + [anon_sym_PLUS_PLUS] = ACTIONS(1998), + [anon_sym_sizeof] = ACTIONS(1996), + [anon_sym___alignof__] = ACTIONS(1996), + [anon_sym___alignof] = ACTIONS(1996), + [anon_sym__alignof] = ACTIONS(1996), + [anon_sym_alignof] = ACTIONS(1996), + [anon_sym__Alignof] = ACTIONS(1996), + [anon_sym_offsetof] = ACTIONS(1996), + [anon_sym__Generic] = ACTIONS(1996), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(1998), + [anon_sym_u_SQUOTE] = ACTIONS(1998), + [anon_sym_U_SQUOTE] = ACTIONS(1998), + [anon_sym_u8_SQUOTE] = ACTIONS(1998), + [anon_sym_SQUOTE] = ACTIONS(1998), + [anon_sym_L_DQUOTE] = ACTIONS(1998), + [anon_sym_u_DQUOTE] = ACTIONS(1998), + [anon_sym_U_DQUOTE] = ACTIONS(1998), + [anon_sym_u8_DQUOTE] = ACTIONS(1998), + [anon_sym_DQUOTE] = ACTIONS(1998), + [sym_true] = ACTIONS(1996), + [sym_false] = ACTIONS(1996), + [anon_sym_NULL] = ACTIONS(1996), + [anon_sym_nullptr] = ACTIONS(1996), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1996), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_explicit] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1996), + [anon_sym_template] = ACTIONS(1996), + [anon_sym_operator] = ACTIONS(1996), + [anon_sym_try] = ACTIONS(1996), + [anon_sym_delete] = ACTIONS(1996), + [anon_sym_throw] = ACTIONS(1996), + [anon_sym_namespace] = ACTIONS(1996), + [anon_sym_using] = ACTIONS(1996), + [anon_sym_static_assert] = ACTIONS(1996), + [anon_sym_concept] = ACTIONS(1996), + [anon_sym_co_return] = ACTIONS(1996), + [anon_sym_co_yield] = ACTIONS(1996), + [anon_sym_R_DQUOTE] = ACTIONS(1998), + [anon_sym_LR_DQUOTE] = ACTIONS(1998), + [anon_sym_uR_DQUOTE] = ACTIONS(1998), + [anon_sym_UR_DQUOTE] = ACTIONS(1998), + [anon_sym_u8R_DQUOTE] = ACTIONS(1998), + [anon_sym_co_await] = ACTIONS(1996), + [anon_sym_new] = ACTIONS(1996), + [anon_sym_requires] = ACTIONS(1996), + [sym_this] = ACTIONS(1996), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_FORWARD] = ACTIONS(1996), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1996), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_PS_GET] = ACTIONS(1996), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1996), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1996), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1996), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1996), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1996), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1996), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1996), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1996), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1996), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1996), + [anon_sym_MOZ_COLD] = ACTIONS(1996), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1996), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1996), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1996), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1996), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1996), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1996), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1996), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1996), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1996), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1996), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1996), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1996), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1996), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1996), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1996), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1996), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1996), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1996), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1996), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1996), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_NONNULL] = ACTIONS(1996), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1996), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1996), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1996), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1996), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1996), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_NORETURN] = ACTIONS(1996), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1996), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1996), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1996), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1996), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1996), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1996), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1996), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1996), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1996), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1996), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1996), + [anon_sym_MOZ_RAII] = ACTIONS(1996), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1996), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1996), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1996), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1996), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1996), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1996), + }, + [STATE(387)] = { + [sym_identifier] = ACTIONS(2024), + [aux_sym_preproc_include_token1] = ACTIONS(2024), + [aux_sym_preproc_def_token1] = ACTIONS(2024), + [aux_sym_preproc_if_token1] = ACTIONS(2024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2024), + [sym_preproc_directive] = ACTIONS(2024), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2026), + [anon_sym_TILDE] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_typedef] = ACTIONS(2024), + [anon_sym_virtual] = ACTIONS(2024), + [anon_sym_extern] = ACTIONS(2024), + [anon_sym___attribute__] = ACTIONS(2024), + [anon_sym___attribute] = ACTIONS(2024), + [anon_sym_COLON_COLON] = ACTIONS(2026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2026), + [anon_sym___declspec] = ACTIONS(2024), + [anon_sym___based] = ACTIONS(2024), + [anon_sym___cdecl] = ACTIONS(2024), + [anon_sym___clrcall] = ACTIONS(2024), + [anon_sym___stdcall] = ACTIONS(2024), + [anon_sym___fastcall] = ACTIONS(2024), + [anon_sym___thiscall] = ACTIONS(2024), + [anon_sym___vectorcall] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_signed] = ACTIONS(2024), + [anon_sym_unsigned] = ACTIONS(2024), + [anon_sym_long] = ACTIONS(2024), + [anon_sym_short] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_static] = ACTIONS(2024), + [anon_sym_register] = ACTIONS(2024), + [anon_sym_inline] = ACTIONS(2024), + [anon_sym___inline] = ACTIONS(2024), + [anon_sym___inline__] = ACTIONS(2024), + [anon_sym___forceinline] = ACTIONS(2024), + [anon_sym_thread_local] = ACTIONS(2024), + [anon_sym___thread] = ACTIONS(2024), + [anon_sym_const] = ACTIONS(2024), + [anon_sym_constexpr] = ACTIONS(2024), + [anon_sym_volatile] = ACTIONS(2024), + [anon_sym_restrict] = ACTIONS(2024), + [anon_sym___restrict__] = ACTIONS(2024), + [anon_sym__Atomic] = ACTIONS(2024), + [anon_sym__Noreturn] = ACTIONS(2024), + [anon_sym_noreturn] = ACTIONS(2024), + [anon_sym__Nonnull] = ACTIONS(2024), + [anon_sym_mutable] = ACTIONS(2024), + [anon_sym_constinit] = ACTIONS(2024), + [anon_sym_consteval] = ACTIONS(2024), + [anon_sym_alignas] = ACTIONS(2024), + [anon_sym__Alignas] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2024), + [anon_sym_enum] = ACTIONS(2024), + [anon_sym_class] = ACTIONS(2024), + [anon_sym_struct] = ACTIONS(2024), + [anon_sym_union] = ACTIONS(2024), + [anon_sym_if] = ACTIONS(2024), + [anon_sym_else] = ACTIONS(2024), + [anon_sym_switch] = ACTIONS(2024), + [anon_sym_case] = ACTIONS(2024), + [anon_sym_default] = ACTIONS(2024), + [anon_sym_while] = ACTIONS(2024), + [anon_sym_do] = ACTIONS(2024), + [anon_sym_for] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2024), + [anon_sym_break] = ACTIONS(2024), + [anon_sym_continue] = ACTIONS(2024), + [anon_sym_goto] = ACTIONS(2024), + [anon_sym___try] = ACTIONS(2024), + [anon_sym___leave] = ACTIONS(2024), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_compl] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2024), + [anon_sym__Generic] = ACTIONS(2024), + [anon_sym_asm] = ACTIONS(2024), + [anon_sym___asm__] = ACTIONS(2024), + [anon_sym___asm] = ACTIONS(2024), + [sym_number_literal] = ACTIONS(2026), + [anon_sym_L_SQUOTE] = ACTIONS(2026), + [anon_sym_u_SQUOTE] = ACTIONS(2026), + [anon_sym_U_SQUOTE] = ACTIONS(2026), + [anon_sym_u8_SQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2026), + [anon_sym_L_DQUOTE] = ACTIONS(2026), + [anon_sym_u_DQUOTE] = ACTIONS(2026), + [anon_sym_U_DQUOTE] = ACTIONS(2026), + [anon_sym_u8_DQUOTE] = ACTIONS(2026), + [anon_sym_DQUOTE] = ACTIONS(2026), + [sym_true] = ACTIONS(2024), + [sym_false] = ACTIONS(2024), + [anon_sym_NULL] = ACTIONS(2024), + [anon_sym_nullptr] = ACTIONS(2024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2024), + [anon_sym_decltype] = ACTIONS(2024), + [anon_sym_explicit] = ACTIONS(2024), + [anon_sym_typename] = ACTIONS(2024), + [anon_sym_template] = ACTIONS(2024), + [anon_sym_operator] = ACTIONS(2024), + [anon_sym_try] = ACTIONS(2024), + [anon_sym_delete] = ACTIONS(2024), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_namespace] = ACTIONS(2024), + [anon_sym_using] = ACTIONS(2024), + [anon_sym_static_assert] = ACTIONS(2024), + [anon_sym_concept] = ACTIONS(2024), + [anon_sym_co_return] = ACTIONS(2024), + [anon_sym_co_yield] = ACTIONS(2024), + [anon_sym_R_DQUOTE] = ACTIONS(2026), + [anon_sym_LR_DQUOTE] = ACTIONS(2026), + [anon_sym_uR_DQUOTE] = ACTIONS(2026), + [anon_sym_UR_DQUOTE] = ACTIONS(2026), + [anon_sym_u8R_DQUOTE] = ACTIONS(2026), + [anon_sym_co_await] = ACTIONS(2024), + [anon_sym_new] = ACTIONS(2024), + [anon_sym_requires] = ACTIONS(2024), + [sym_this] = ACTIONS(2024), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_FORWARD] = ACTIONS(2024), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2024), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_PS_GET] = ACTIONS(2024), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2024), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2024), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2024), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2024), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2024), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2024), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2024), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2024), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2024), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2024), + [anon_sym_MOZ_COLD] = ACTIONS(2024), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2024), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2024), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2024), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2024), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2024), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2024), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2024), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2024), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2024), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2024), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2024), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2024), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2024), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2024), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2024), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2024), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2024), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2024), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2024), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2024), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_NONNULL] = ACTIONS(2024), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2024), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2024), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2024), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2024), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2024), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_NORETURN] = ACTIONS(2024), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2024), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2024), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2024), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2024), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2024), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2024), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2024), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2024), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2024), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2024), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2024), + [anon_sym_MOZ_RAII] = ACTIONS(2024), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2024), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2024), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2024), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2024), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2024), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2024), + }, + [STATE(388)] = { + [sym_identifier] = ACTIONS(1980), + [aux_sym_preproc_include_token1] = ACTIONS(1980), + [aux_sym_preproc_def_token1] = ACTIONS(1980), + [aux_sym_preproc_if_token1] = ACTIONS(1980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1980), + [sym_preproc_directive] = ACTIONS(1980), + [anon_sym_LPAREN2] = ACTIONS(1982), + [anon_sym_BANG] = ACTIONS(1982), + [anon_sym_TILDE] = ACTIONS(1982), + [anon_sym_DASH] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(1980), + [anon_sym_STAR] = ACTIONS(1982), + [anon_sym_AMP_AMP] = ACTIONS(1982), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym___extension__] = ACTIONS(1980), + [anon_sym_typedef] = ACTIONS(1980), + [anon_sym_virtual] = ACTIONS(1980), + [anon_sym_extern] = ACTIONS(1980), + [anon_sym___attribute__] = ACTIONS(1980), + [anon_sym___attribute] = ACTIONS(1980), + [anon_sym_COLON_COLON] = ACTIONS(1982), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1982), + [anon_sym___declspec] = ACTIONS(1980), + [anon_sym___based] = ACTIONS(1980), + [anon_sym___cdecl] = ACTIONS(1980), + [anon_sym___clrcall] = ACTIONS(1980), + [anon_sym___stdcall] = ACTIONS(1980), + [anon_sym___fastcall] = ACTIONS(1980), + [anon_sym___thiscall] = ACTIONS(1980), + [anon_sym___vectorcall] = ACTIONS(1980), + [anon_sym_LBRACE] = ACTIONS(1982), + [anon_sym_RBRACE] = ACTIONS(1982), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_static] = ACTIONS(1980), + [anon_sym_register] = ACTIONS(1980), + [anon_sym_inline] = ACTIONS(1980), + [anon_sym___inline] = ACTIONS(1980), + [anon_sym___inline__] = ACTIONS(1980), + [anon_sym___forceinline] = ACTIONS(1980), + [anon_sym_thread_local] = ACTIONS(1980), + [anon_sym___thread] = ACTIONS(1980), + [anon_sym_const] = ACTIONS(1980), + [anon_sym_constexpr] = ACTIONS(1980), + [anon_sym_volatile] = ACTIONS(1980), + [anon_sym_restrict] = ACTIONS(1980), + [anon_sym___restrict__] = ACTIONS(1980), + [anon_sym__Atomic] = ACTIONS(1980), + [anon_sym__Noreturn] = ACTIONS(1980), + [anon_sym_noreturn] = ACTIONS(1980), + [anon_sym__Nonnull] = ACTIONS(1980), + [anon_sym_mutable] = ACTIONS(1980), + [anon_sym_constinit] = ACTIONS(1980), + [anon_sym_consteval] = ACTIONS(1980), + [anon_sym_alignas] = ACTIONS(1980), + [anon_sym__Alignas] = ACTIONS(1980), + [sym_primitive_type] = ACTIONS(1980), + [anon_sym_enum] = ACTIONS(1980), + [anon_sym_class] = ACTIONS(1980), + [anon_sym_struct] = ACTIONS(1980), + [anon_sym_union] = ACTIONS(1980), + [anon_sym_if] = ACTIONS(1980), + [anon_sym_else] = ACTIONS(1980), + [anon_sym_switch] = ACTIONS(1980), + [anon_sym_case] = ACTIONS(1980), + [anon_sym_default] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [anon_sym_do] = ACTIONS(1980), + [anon_sym_for] = ACTIONS(1980), + [anon_sym_return] = ACTIONS(1980), + [anon_sym_break] = ACTIONS(1980), + [anon_sym_continue] = ACTIONS(1980), + [anon_sym_goto] = ACTIONS(1980), + [anon_sym___try] = ACTIONS(1980), + [anon_sym___leave] = ACTIONS(1980), + [anon_sym_not] = ACTIONS(1980), + [anon_sym_compl] = ACTIONS(1980), + [anon_sym_DASH_DASH] = ACTIONS(1982), + [anon_sym_PLUS_PLUS] = ACTIONS(1982), + [anon_sym_sizeof] = ACTIONS(1980), + [anon_sym___alignof__] = ACTIONS(1980), + [anon_sym___alignof] = ACTIONS(1980), + [anon_sym__alignof] = ACTIONS(1980), + [anon_sym_alignof] = ACTIONS(1980), + [anon_sym__Alignof] = ACTIONS(1980), + [anon_sym_offsetof] = ACTIONS(1980), + [anon_sym__Generic] = ACTIONS(1980), + [anon_sym_asm] = ACTIONS(1980), + [anon_sym___asm__] = ACTIONS(1980), + [anon_sym___asm] = ACTIONS(1980), + [sym_number_literal] = ACTIONS(1982), + [anon_sym_L_SQUOTE] = ACTIONS(1982), + [anon_sym_u_SQUOTE] = ACTIONS(1982), + [anon_sym_U_SQUOTE] = ACTIONS(1982), + [anon_sym_u8_SQUOTE] = ACTIONS(1982), + [anon_sym_SQUOTE] = ACTIONS(1982), + [anon_sym_L_DQUOTE] = ACTIONS(1982), + [anon_sym_u_DQUOTE] = ACTIONS(1982), + [anon_sym_U_DQUOTE] = ACTIONS(1982), + [anon_sym_u8_DQUOTE] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(1982), + [sym_true] = ACTIONS(1980), + [sym_false] = ACTIONS(1980), + [anon_sym_NULL] = ACTIONS(1980), + [anon_sym_nullptr] = ACTIONS(1980), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1980), + [anon_sym_decltype] = ACTIONS(1980), + [anon_sym_explicit] = ACTIONS(1980), + [anon_sym_typename] = ACTIONS(1980), + [anon_sym_template] = ACTIONS(1980), + [anon_sym_operator] = ACTIONS(1980), + [anon_sym_try] = ACTIONS(1980), + [anon_sym_delete] = ACTIONS(1980), + [anon_sym_throw] = ACTIONS(1980), + [anon_sym_namespace] = ACTIONS(1980), + [anon_sym_using] = ACTIONS(1980), + [anon_sym_static_assert] = ACTIONS(1980), + [anon_sym_concept] = ACTIONS(1980), + [anon_sym_co_return] = ACTIONS(1980), + [anon_sym_co_yield] = ACTIONS(1980), + [anon_sym_R_DQUOTE] = ACTIONS(1982), + [anon_sym_LR_DQUOTE] = ACTIONS(1982), + [anon_sym_uR_DQUOTE] = ACTIONS(1982), + [anon_sym_UR_DQUOTE] = ACTIONS(1982), + [anon_sym_u8R_DQUOTE] = ACTIONS(1982), + [anon_sym_co_await] = ACTIONS(1980), + [anon_sym_new] = ACTIONS(1980), + [anon_sym_requires] = ACTIONS(1980), + [sym_this] = ACTIONS(1980), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_FORWARD] = ACTIONS(1980), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1980), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_PS_GET] = ACTIONS(1980), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1980), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1980), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1980), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1980), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1980), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1980), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1980), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1980), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1980), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1980), + [anon_sym_MOZ_COLD] = ACTIONS(1980), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1980), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1980), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1980), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1980), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1980), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1980), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1980), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1980), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1980), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1980), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1980), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1980), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1980), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1980), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1980), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1980), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1980), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1980), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1980), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1980), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_NONNULL] = ACTIONS(1980), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1980), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1980), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1980), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1980), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1980), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_NORETURN] = ACTIONS(1980), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1980), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1980), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1980), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1980), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1980), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1980), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1980), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1980), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1980), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1980), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1980), + [anon_sym_MOZ_RAII] = ACTIONS(1980), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1980), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1980), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1980), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1980), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1980), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1980), + }, + [STATE(389)] = { + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2028), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [sym_preproc_directive] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym___extension__] = ACTIONS(2028), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_virtual] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym_COLON_COLON] = ACTIONS(2030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2030), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___based] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [anon_sym___inline] = ACTIONS(2028), + [anon_sym___inline__] = ACTIONS(2028), + [anon_sym___forceinline] = ACTIONS(2028), + [anon_sym_thread_local] = ACTIONS(2028), + [anon_sym___thread] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_constexpr] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym___restrict__] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym__Noreturn] = ACTIONS(2028), + [anon_sym_noreturn] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym_mutable] = ACTIONS(2028), + [anon_sym_constinit] = ACTIONS(2028), + [anon_sym_consteval] = ACTIONS(2028), + [anon_sym_alignas] = ACTIONS(2028), + [anon_sym__Alignas] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_class] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_else] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym___try] = ACTIONS(2028), + [anon_sym___leave] = ACTIONS(2028), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [anon_sym___alignof__] = ACTIONS(2028), + [anon_sym___alignof] = ACTIONS(2028), + [anon_sym__alignof] = ACTIONS(2028), + [anon_sym_alignof] = ACTIONS(2028), + [anon_sym__Alignof] = ACTIONS(2028), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2028), + [anon_sym___asm__] = ACTIONS(2028), + [anon_sym___asm] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [anon_sym_NULL] = ACTIONS(2028), + [anon_sym_nullptr] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2028), + [anon_sym_decltype] = ACTIONS(2028), + [anon_sym_explicit] = ACTIONS(2028), + [anon_sym_typename] = ACTIONS(2028), + [anon_sym_template] = ACTIONS(2028), + [anon_sym_operator] = ACTIONS(2028), + [anon_sym_try] = ACTIONS(2028), + [anon_sym_delete] = ACTIONS(2028), + [anon_sym_throw] = ACTIONS(2028), + [anon_sym_namespace] = ACTIONS(2028), + [anon_sym_using] = ACTIONS(2028), + [anon_sym_static_assert] = ACTIONS(2028), + [anon_sym_concept] = ACTIONS(2028), + [anon_sym_co_return] = ACTIONS(2028), + [anon_sym_co_yield] = ACTIONS(2028), + [anon_sym_R_DQUOTE] = ACTIONS(2030), + [anon_sym_LR_DQUOTE] = ACTIONS(2030), + [anon_sym_uR_DQUOTE] = ACTIONS(2030), + [anon_sym_UR_DQUOTE] = ACTIONS(2030), + [anon_sym_u8R_DQUOTE] = ACTIONS(2030), + [anon_sym_co_await] = ACTIONS(2028), + [anon_sym_new] = ACTIONS(2028), + [anon_sym_requires] = ACTIONS(2028), + [sym_this] = ACTIONS(2028), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_FORWARD] = ACTIONS(2028), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_PS_GET] = ACTIONS(2028), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2028), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2028), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2028), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2028), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2028), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2028), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2028), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2028), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2028), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2028), + [anon_sym_MOZ_COLD] = ACTIONS(2028), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2028), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2028), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2028), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2028), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2028), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2028), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2028), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2028), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2028), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2028), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2028), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2028), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2028), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2028), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2028), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2028), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2028), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2028), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2028), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2028), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_NONNULL] = ACTIONS(2028), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2028), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2028), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2028), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2028), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2028), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_NORETURN] = ACTIONS(2028), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2028), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2028), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2028), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2028), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2028), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2028), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2028), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2028), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2028), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2028), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2028), + [anon_sym_MOZ_RAII] = ACTIONS(2028), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2028), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2028), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2028), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2028), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2028), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2028), + }, + [STATE(390)] = { + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2032), + [aux_sym_preproc_def_token1] = ACTIONS(2032), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_AMP_AMP] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_virtual] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2034), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___based] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_LBRACK] = ACTIONS(2032), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [anon_sym___inline] = ACTIONS(2032), + [anon_sym___inline__] = ACTIONS(2032), + [anon_sym___forceinline] = ACTIONS(2032), + [anon_sym_thread_local] = ACTIONS(2032), + [anon_sym___thread] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_constexpr] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym___restrict__] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym__Noreturn] = ACTIONS(2032), + [anon_sym_noreturn] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym_mutable] = ACTIONS(2032), + [anon_sym_constinit] = ACTIONS(2032), + [anon_sym_consteval] = ACTIONS(2032), + [anon_sym_alignas] = ACTIONS(2032), + [anon_sym__Alignas] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_class] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_else] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym___try] = ACTIONS(2032), + [anon_sym___leave] = ACTIONS(2032), + [anon_sym_not] = ACTIONS(2032), + [anon_sym_compl] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [anon_sym___alignof__] = ACTIONS(2032), + [anon_sym___alignof] = ACTIONS(2032), + [anon_sym__alignof] = ACTIONS(2032), + [anon_sym_alignof] = ACTIONS(2032), + [anon_sym__Alignof] = ACTIONS(2032), + [anon_sym_offsetof] = ACTIONS(2032), + [anon_sym__Generic] = ACTIONS(2032), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [anon_sym___asm] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [anon_sym_NULL] = ACTIONS(2032), + [anon_sym_nullptr] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2032), + [anon_sym_decltype] = ACTIONS(2032), + [anon_sym_explicit] = ACTIONS(2032), + [anon_sym_typename] = ACTIONS(2032), + [anon_sym_template] = ACTIONS(2032), + [anon_sym_operator] = ACTIONS(2032), + [anon_sym_try] = ACTIONS(2032), + [anon_sym_delete] = ACTIONS(2032), + [anon_sym_throw] = ACTIONS(2032), + [anon_sym_namespace] = ACTIONS(2032), + [anon_sym_using] = ACTIONS(2032), + [anon_sym_static_assert] = ACTIONS(2032), + [anon_sym_concept] = ACTIONS(2032), + [anon_sym_co_return] = ACTIONS(2032), + [anon_sym_co_yield] = ACTIONS(2032), + [anon_sym_R_DQUOTE] = ACTIONS(2034), + [anon_sym_LR_DQUOTE] = ACTIONS(2034), + [anon_sym_uR_DQUOTE] = ACTIONS(2034), + [anon_sym_UR_DQUOTE] = ACTIONS(2034), + [anon_sym_u8R_DQUOTE] = ACTIONS(2034), + [anon_sym_co_await] = ACTIONS(2032), + [anon_sym_new] = ACTIONS(2032), + [anon_sym_requires] = ACTIONS(2032), + [sym_this] = ACTIONS(2032), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_FORWARD] = ACTIONS(2032), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_PS_GET] = ACTIONS(2032), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2032), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2032), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2032), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2032), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2032), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2032), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2032), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2032), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2032), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2032), + [anon_sym_MOZ_COLD] = ACTIONS(2032), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2032), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2032), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2032), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2032), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2032), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2032), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2032), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2032), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2032), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2032), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2032), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2032), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2032), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2032), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2032), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2032), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2032), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2032), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2032), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2032), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_NONNULL] = ACTIONS(2032), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2032), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2032), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2032), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2032), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2032), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_NORETURN] = ACTIONS(2032), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2032), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2032), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2032), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2032), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2032), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2032), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2032), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2032), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2032), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2032), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2032), + [anon_sym_MOZ_RAII] = ACTIONS(2032), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2032), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2032), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2032), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2032), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2032), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2032), + }, + [STATE(391)] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2036), + [aux_sym_preproc_def_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [sym_preproc_directive] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_AMP_AMP] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym___extension__] = ACTIONS(2036), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_virtual] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym_COLON_COLON] = ACTIONS(2038), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2038), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___based] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [anon_sym___inline] = ACTIONS(2036), + [anon_sym___inline__] = ACTIONS(2036), + [anon_sym___forceinline] = ACTIONS(2036), + [anon_sym_thread_local] = ACTIONS(2036), + [anon_sym___thread] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_constexpr] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym___restrict__] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym__Noreturn] = ACTIONS(2036), + [anon_sym_noreturn] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym_mutable] = ACTIONS(2036), + [anon_sym_constinit] = ACTIONS(2036), + [anon_sym_consteval] = ACTIONS(2036), + [anon_sym_alignas] = ACTIONS(2036), + [anon_sym__Alignas] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_class] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_else] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym___try] = ACTIONS(2036), + [anon_sym___leave] = ACTIONS(2036), + [anon_sym_not] = ACTIONS(2036), + [anon_sym_compl] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [anon_sym___alignof__] = ACTIONS(2036), + [anon_sym___alignof] = ACTIONS(2036), + [anon_sym__alignof] = ACTIONS(2036), + [anon_sym_alignof] = ACTIONS(2036), + [anon_sym__Alignof] = ACTIONS(2036), + [anon_sym_offsetof] = ACTIONS(2036), + [anon_sym__Generic] = ACTIONS(2036), + [anon_sym_asm] = ACTIONS(2036), + [anon_sym___asm__] = ACTIONS(2036), + [anon_sym___asm] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [anon_sym_NULL] = ACTIONS(2036), + [anon_sym_nullptr] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2036), + [anon_sym_decltype] = ACTIONS(2036), + [anon_sym_explicit] = ACTIONS(2036), + [anon_sym_typename] = ACTIONS(2036), + [anon_sym_template] = ACTIONS(2036), + [anon_sym_operator] = ACTIONS(2036), + [anon_sym_try] = ACTIONS(2036), + [anon_sym_delete] = ACTIONS(2036), + [anon_sym_throw] = ACTIONS(2036), + [anon_sym_namespace] = ACTIONS(2036), + [anon_sym_using] = ACTIONS(2036), + [anon_sym_static_assert] = ACTIONS(2036), + [anon_sym_concept] = ACTIONS(2036), + [anon_sym_co_return] = ACTIONS(2036), + [anon_sym_co_yield] = ACTIONS(2036), + [anon_sym_R_DQUOTE] = ACTIONS(2038), + [anon_sym_LR_DQUOTE] = ACTIONS(2038), + [anon_sym_uR_DQUOTE] = ACTIONS(2038), + [anon_sym_UR_DQUOTE] = ACTIONS(2038), + [anon_sym_u8R_DQUOTE] = ACTIONS(2038), + [anon_sym_co_await] = ACTIONS(2036), + [anon_sym_new] = ACTIONS(2036), + [anon_sym_requires] = ACTIONS(2036), + [sym_this] = ACTIONS(2036), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_FORWARD] = ACTIONS(2036), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_PS_GET] = ACTIONS(2036), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2036), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2036), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2036), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2036), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2036), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2036), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2036), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2036), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2036), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2036), + [anon_sym_MOZ_COLD] = ACTIONS(2036), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2036), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2036), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2036), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2036), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2036), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2036), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2036), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2036), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2036), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2036), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2036), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2036), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2036), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2036), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2036), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2036), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2036), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2036), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2036), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2036), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_NONNULL] = ACTIONS(2036), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2036), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2036), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2036), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2036), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2036), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_NORETURN] = ACTIONS(2036), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2036), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2036), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2036), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2036), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2036), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2036), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2036), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2036), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2036), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2036), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2036), + [anon_sym_MOZ_RAII] = ACTIONS(2036), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2036), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2036), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2036), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2036), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2036), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2036), + }, + [STATE(392)] = { + [sym_identifier] = ACTIONS(2040), + [aux_sym_preproc_include_token1] = ACTIONS(2040), + [aux_sym_preproc_def_token1] = ACTIONS(2040), + [aux_sym_preproc_if_token1] = ACTIONS(2040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2040), + [sym_preproc_directive] = ACTIONS(2040), + [anon_sym_LPAREN2] = ACTIONS(2042), + [anon_sym_BANG] = ACTIONS(2042), + [anon_sym_TILDE] = ACTIONS(2042), + [anon_sym_DASH] = ACTIONS(2040), + [anon_sym_PLUS] = ACTIONS(2040), + [anon_sym_STAR] = ACTIONS(2042), + [anon_sym_AMP_AMP] = ACTIONS(2042), + [anon_sym_AMP] = ACTIONS(2040), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym___extension__] = ACTIONS(2040), + [anon_sym_typedef] = ACTIONS(2040), + [anon_sym_virtual] = ACTIONS(2040), + [anon_sym_extern] = ACTIONS(2040), + [anon_sym___attribute__] = ACTIONS(2040), + [anon_sym___attribute] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(2042), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2042), + [anon_sym___declspec] = ACTIONS(2040), + [anon_sym___based] = ACTIONS(2040), + [anon_sym___cdecl] = ACTIONS(2040), + [anon_sym___clrcall] = ACTIONS(2040), + [anon_sym___stdcall] = ACTIONS(2040), + [anon_sym___fastcall] = ACTIONS(2040), + [anon_sym___thiscall] = ACTIONS(2040), + [anon_sym___vectorcall] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2042), + [anon_sym_RBRACE] = ACTIONS(2042), + [anon_sym_signed] = ACTIONS(2040), + [anon_sym_unsigned] = ACTIONS(2040), + [anon_sym_long] = ACTIONS(2040), + [anon_sym_short] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(2040), + [anon_sym_static] = ACTIONS(2040), + [anon_sym_register] = ACTIONS(2040), + [anon_sym_inline] = ACTIONS(2040), + [anon_sym___inline] = ACTIONS(2040), + [anon_sym___inline__] = ACTIONS(2040), + [anon_sym___forceinline] = ACTIONS(2040), + [anon_sym_thread_local] = ACTIONS(2040), + [anon_sym___thread] = ACTIONS(2040), + [anon_sym_const] = ACTIONS(2040), + [anon_sym_constexpr] = ACTIONS(2040), + [anon_sym_volatile] = ACTIONS(2040), + [anon_sym_restrict] = ACTIONS(2040), + [anon_sym___restrict__] = ACTIONS(2040), + [anon_sym__Atomic] = ACTIONS(2040), + [anon_sym__Noreturn] = ACTIONS(2040), + [anon_sym_noreturn] = ACTIONS(2040), + [anon_sym__Nonnull] = ACTIONS(2040), + [anon_sym_mutable] = ACTIONS(2040), + [anon_sym_constinit] = ACTIONS(2040), + [anon_sym_consteval] = ACTIONS(2040), + [anon_sym_alignas] = ACTIONS(2040), + [anon_sym__Alignas] = ACTIONS(2040), + [sym_primitive_type] = ACTIONS(2040), + [anon_sym_enum] = ACTIONS(2040), + [anon_sym_class] = ACTIONS(2040), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2040), + [anon_sym_if] = ACTIONS(2040), + [anon_sym_else] = ACTIONS(2040), + [anon_sym_switch] = ACTIONS(2040), + [anon_sym_case] = ACTIONS(2040), + [anon_sym_default] = ACTIONS(2040), + [anon_sym_while] = ACTIONS(2040), + [anon_sym_do] = ACTIONS(2040), + [anon_sym_for] = ACTIONS(2040), + [anon_sym_return] = ACTIONS(2040), + [anon_sym_break] = ACTIONS(2040), + [anon_sym_continue] = ACTIONS(2040), + [anon_sym_goto] = ACTIONS(2040), + [anon_sym___try] = ACTIONS(2040), + [anon_sym___leave] = ACTIONS(2040), + [anon_sym_not] = ACTIONS(2040), + [anon_sym_compl] = ACTIONS(2040), + [anon_sym_DASH_DASH] = ACTIONS(2042), + [anon_sym_PLUS_PLUS] = ACTIONS(2042), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2040), + [anon_sym___alignof] = ACTIONS(2040), + [anon_sym__alignof] = ACTIONS(2040), + [anon_sym_alignof] = ACTIONS(2040), + [anon_sym__Alignof] = ACTIONS(2040), + [anon_sym_offsetof] = ACTIONS(2040), + [anon_sym__Generic] = ACTIONS(2040), + [anon_sym_asm] = ACTIONS(2040), + [anon_sym___asm__] = ACTIONS(2040), + [anon_sym___asm] = ACTIONS(2040), + [sym_number_literal] = ACTIONS(2042), + [anon_sym_L_SQUOTE] = ACTIONS(2042), + [anon_sym_u_SQUOTE] = ACTIONS(2042), + [anon_sym_U_SQUOTE] = ACTIONS(2042), + [anon_sym_u8_SQUOTE] = ACTIONS(2042), + [anon_sym_SQUOTE] = ACTIONS(2042), + [anon_sym_L_DQUOTE] = ACTIONS(2042), + [anon_sym_u_DQUOTE] = ACTIONS(2042), + [anon_sym_U_DQUOTE] = ACTIONS(2042), + [anon_sym_u8_DQUOTE] = ACTIONS(2042), + [anon_sym_DQUOTE] = ACTIONS(2042), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2040), + [anon_sym_decltype] = ACTIONS(2040), + [anon_sym_explicit] = ACTIONS(2040), + [anon_sym_typename] = ACTIONS(2040), + [anon_sym_template] = ACTIONS(2040), + [anon_sym_operator] = ACTIONS(2040), + [anon_sym_try] = ACTIONS(2040), + [anon_sym_delete] = ACTIONS(2040), + [anon_sym_throw] = ACTIONS(2040), + [anon_sym_namespace] = ACTIONS(2040), + [anon_sym_using] = ACTIONS(2040), + [anon_sym_static_assert] = ACTIONS(2040), + [anon_sym_concept] = ACTIONS(2040), + [anon_sym_co_return] = ACTIONS(2040), + [anon_sym_co_yield] = ACTIONS(2040), + [anon_sym_R_DQUOTE] = ACTIONS(2042), + [anon_sym_LR_DQUOTE] = ACTIONS(2042), + [anon_sym_uR_DQUOTE] = ACTIONS(2042), + [anon_sym_UR_DQUOTE] = ACTIONS(2042), + [anon_sym_u8R_DQUOTE] = ACTIONS(2042), + [anon_sym_co_await] = ACTIONS(2040), + [anon_sym_new] = ACTIONS(2040), + [anon_sym_requires] = ACTIONS(2040), + [sym_this] = ACTIONS(2040), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_FORWARD] = ACTIONS(2040), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2040), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_PS_GET] = ACTIONS(2040), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2040), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2040), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2040), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2040), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2040), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2040), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2040), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2040), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2040), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2040), + [anon_sym_MOZ_COLD] = ACTIONS(2040), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2040), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2040), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2040), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2040), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2040), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2040), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2040), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2040), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2040), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2040), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2040), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2040), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2040), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2040), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2040), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2040), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2040), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2040), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2040), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2040), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_NONNULL] = ACTIONS(2040), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2040), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2040), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2040), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2040), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2040), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_NORETURN] = ACTIONS(2040), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2040), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2040), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2040), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2040), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2040), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2040), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2040), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2040), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2040), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2040), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2040), + [anon_sym_MOZ_RAII] = ACTIONS(2040), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2040), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2040), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2040), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2040), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2040), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2040), + }, + [STATE(393)] = { + [sym_identifier] = ACTIONS(2000), + [aux_sym_preproc_include_token1] = ACTIONS(2000), + [aux_sym_preproc_def_token1] = ACTIONS(2000), + [aux_sym_preproc_if_token1] = ACTIONS(2000), + [aux_sym_preproc_if_token2] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2000), + [sym_preproc_directive] = ACTIONS(2000), + [anon_sym_LPAREN2] = ACTIONS(2002), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2000), + [anon_sym_PLUS] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym___extension__] = ACTIONS(2000), + [anon_sym_typedef] = ACTIONS(2000), + [anon_sym_virtual] = ACTIONS(2000), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym___attribute__] = ACTIONS(2000), + [anon_sym___attribute] = ACTIONS(2000), + [anon_sym_COLON_COLON] = ACTIONS(2002), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2002), + [anon_sym___declspec] = ACTIONS(2000), + [anon_sym___based] = ACTIONS(2000), + [anon_sym___cdecl] = ACTIONS(2000), + [anon_sym___clrcall] = ACTIONS(2000), + [anon_sym___stdcall] = ACTIONS(2000), + [anon_sym___fastcall] = ACTIONS(2000), + [anon_sym___thiscall] = ACTIONS(2000), + [anon_sym___vectorcall] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_signed] = ACTIONS(2000), + [anon_sym_unsigned] = ACTIONS(2000), + [anon_sym_long] = ACTIONS(2000), + [anon_sym_short] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_static] = ACTIONS(2000), + [anon_sym_register] = ACTIONS(2000), + [anon_sym_inline] = ACTIONS(2000), + [anon_sym___inline] = ACTIONS(2000), + [anon_sym___inline__] = ACTIONS(2000), + [anon_sym___forceinline] = ACTIONS(2000), + [anon_sym_thread_local] = ACTIONS(2000), + [anon_sym___thread] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [anon_sym_constexpr] = ACTIONS(2000), + [anon_sym_volatile] = ACTIONS(2000), + [anon_sym_restrict] = ACTIONS(2000), + [anon_sym___restrict__] = ACTIONS(2000), + [anon_sym__Atomic] = ACTIONS(2000), + [anon_sym__Noreturn] = ACTIONS(2000), + [anon_sym_noreturn] = ACTIONS(2000), + [anon_sym__Nonnull] = ACTIONS(2000), + [anon_sym_mutable] = ACTIONS(2000), + [anon_sym_constinit] = ACTIONS(2000), + [anon_sym_consteval] = ACTIONS(2000), + [anon_sym_alignas] = ACTIONS(2000), + [anon_sym__Alignas] = ACTIONS(2000), + [sym_primitive_type] = ACTIONS(2000), + [anon_sym_enum] = ACTIONS(2000), + [anon_sym_class] = ACTIONS(2000), + [anon_sym_struct] = ACTIONS(2000), + [anon_sym_union] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2000), + [anon_sym_switch] = ACTIONS(2000), + [anon_sym_case] = ACTIONS(2000), + [anon_sym_default] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_goto] = ACTIONS(2000), + [anon_sym___try] = ACTIONS(2000), + [anon_sym___leave] = ACTIONS(2000), + [anon_sym_not] = ACTIONS(2000), + [anon_sym_compl] = ACTIONS(2000), + [anon_sym_DASH_DASH] = ACTIONS(2002), + [anon_sym_PLUS_PLUS] = ACTIONS(2002), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(2000), + [anon_sym___alignof] = ACTIONS(2000), + [anon_sym__alignof] = ACTIONS(2000), + [anon_sym_alignof] = ACTIONS(2000), + [anon_sym__Alignof] = ACTIONS(2000), + [anon_sym_offsetof] = ACTIONS(2000), + [anon_sym__Generic] = ACTIONS(2000), + [anon_sym_asm] = ACTIONS(2000), + [anon_sym___asm__] = ACTIONS(2000), + [anon_sym___asm] = ACTIONS(2000), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2002), + [anon_sym_u_SQUOTE] = ACTIONS(2002), + [anon_sym_U_SQUOTE] = ACTIONS(2002), + [anon_sym_u8_SQUOTE] = ACTIONS(2002), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2000), + [sym_false] = ACTIONS(2000), + [anon_sym_NULL] = ACTIONS(2000), + [anon_sym_nullptr] = ACTIONS(2000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2000), + [anon_sym_decltype] = ACTIONS(2000), + [anon_sym_explicit] = ACTIONS(2000), + [anon_sym_typename] = ACTIONS(2000), + [anon_sym_template] = ACTIONS(2000), + [anon_sym_operator] = ACTIONS(2000), + [anon_sym_try] = ACTIONS(2000), + [anon_sym_delete] = ACTIONS(2000), + [anon_sym_throw] = ACTIONS(2000), + [anon_sym_namespace] = ACTIONS(2000), + [anon_sym_using] = ACTIONS(2000), + [anon_sym_static_assert] = ACTIONS(2000), + [anon_sym_concept] = ACTIONS(2000), + [anon_sym_co_return] = ACTIONS(2000), + [anon_sym_co_yield] = ACTIONS(2000), + [anon_sym_R_DQUOTE] = ACTIONS(2002), + [anon_sym_LR_DQUOTE] = ACTIONS(2002), + [anon_sym_uR_DQUOTE] = ACTIONS(2002), + [anon_sym_UR_DQUOTE] = ACTIONS(2002), + [anon_sym_u8R_DQUOTE] = ACTIONS(2002), + [anon_sym_co_await] = ACTIONS(2000), + [anon_sym_new] = ACTIONS(2000), + [anon_sym_requires] = ACTIONS(2000), + [sym_this] = ACTIONS(2000), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_FORWARD] = ACTIONS(2000), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2000), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_PS_GET] = ACTIONS(2000), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2000), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2000), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2000), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2000), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2000), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2000), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2000), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2000), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2000), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2000), + [anon_sym_MOZ_COLD] = ACTIONS(2000), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2000), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2000), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2000), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2000), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2000), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2000), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2000), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2000), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2000), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2000), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2000), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2000), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2000), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2000), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2000), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2000), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2000), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2000), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2000), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2000), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_NONNULL] = ACTIONS(2000), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2000), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2000), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2000), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2000), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2000), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_NORETURN] = ACTIONS(2000), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2000), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2000), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2000), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2000), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2000), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2000), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2000), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2000), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2000), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2000), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2000), + [anon_sym_MOZ_RAII] = ACTIONS(2000), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2000), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2000), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2000), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2000), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2000), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2000), + }, + [STATE(394)] = { + [sym_identifier] = ACTIONS(2048), + [aux_sym_preproc_include_token1] = ACTIONS(2048), + [aux_sym_preproc_def_token1] = ACTIONS(2048), + [aux_sym_preproc_if_token1] = ACTIONS(2048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2048), + [sym_preproc_directive] = ACTIONS(2048), + [anon_sym_LPAREN2] = ACTIONS(2050), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_TILDE] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2048), + [anon_sym_PLUS] = ACTIONS(2048), + [anon_sym_STAR] = ACTIONS(2050), + [anon_sym_AMP_AMP] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym___extension__] = ACTIONS(2048), + [anon_sym_typedef] = ACTIONS(2048), + [anon_sym_virtual] = ACTIONS(2048), + [anon_sym_extern] = ACTIONS(2048), + [anon_sym___attribute__] = ACTIONS(2048), + [anon_sym___attribute] = ACTIONS(2048), + [anon_sym_COLON_COLON] = ACTIONS(2050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2050), + [anon_sym___declspec] = ACTIONS(2048), + [anon_sym___based] = ACTIONS(2048), + [anon_sym___cdecl] = ACTIONS(2048), + [anon_sym___clrcall] = ACTIONS(2048), + [anon_sym___stdcall] = ACTIONS(2048), + [anon_sym___fastcall] = ACTIONS(2048), + [anon_sym___thiscall] = ACTIONS(2048), + [anon_sym___vectorcall] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2050), + [anon_sym_RBRACE] = ACTIONS(2050), + [anon_sym_signed] = ACTIONS(2048), + [anon_sym_unsigned] = ACTIONS(2048), + [anon_sym_long] = ACTIONS(2048), + [anon_sym_short] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(2048), + [anon_sym_static] = ACTIONS(2048), + [anon_sym_register] = ACTIONS(2048), + [anon_sym_inline] = ACTIONS(2048), + [anon_sym___inline] = ACTIONS(2048), + [anon_sym___inline__] = ACTIONS(2048), + [anon_sym___forceinline] = ACTIONS(2048), + [anon_sym_thread_local] = ACTIONS(2048), + [anon_sym___thread] = ACTIONS(2048), + [anon_sym_const] = ACTIONS(2048), + [anon_sym_constexpr] = ACTIONS(2048), + [anon_sym_volatile] = ACTIONS(2048), + [anon_sym_restrict] = ACTIONS(2048), + [anon_sym___restrict__] = ACTIONS(2048), + [anon_sym__Atomic] = ACTIONS(2048), + [anon_sym__Noreturn] = ACTIONS(2048), + [anon_sym_noreturn] = ACTIONS(2048), + [anon_sym__Nonnull] = ACTIONS(2048), + [anon_sym_mutable] = ACTIONS(2048), + [anon_sym_constinit] = ACTIONS(2048), + [anon_sym_consteval] = ACTIONS(2048), + [anon_sym_alignas] = ACTIONS(2048), + [anon_sym__Alignas] = ACTIONS(2048), + [sym_primitive_type] = ACTIONS(2048), + [anon_sym_enum] = ACTIONS(2048), + [anon_sym_class] = ACTIONS(2048), + [anon_sym_struct] = ACTIONS(2048), + [anon_sym_union] = ACTIONS(2048), + [anon_sym_if] = ACTIONS(2048), + [anon_sym_else] = ACTIONS(2048), + [anon_sym_switch] = ACTIONS(2048), + [anon_sym_case] = ACTIONS(2048), + [anon_sym_default] = ACTIONS(2048), + [anon_sym_while] = ACTIONS(2048), + [anon_sym_do] = ACTIONS(2048), + [anon_sym_for] = ACTIONS(2048), + [anon_sym_return] = ACTIONS(2048), + [anon_sym_break] = ACTIONS(2048), + [anon_sym_continue] = ACTIONS(2048), + [anon_sym_goto] = ACTIONS(2048), + [anon_sym___try] = ACTIONS(2048), + [anon_sym___leave] = ACTIONS(2048), + [anon_sym_not] = ACTIONS(2048), + [anon_sym_compl] = ACTIONS(2048), + [anon_sym_DASH_DASH] = ACTIONS(2050), + [anon_sym_PLUS_PLUS] = ACTIONS(2050), + [anon_sym_sizeof] = ACTIONS(2048), + [anon_sym___alignof__] = ACTIONS(2048), + [anon_sym___alignof] = ACTIONS(2048), + [anon_sym__alignof] = ACTIONS(2048), + [anon_sym_alignof] = ACTIONS(2048), + [anon_sym__Alignof] = ACTIONS(2048), + [anon_sym_offsetof] = ACTIONS(2048), + [anon_sym__Generic] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2048), + [anon_sym___asm__] = ACTIONS(2048), + [anon_sym___asm] = ACTIONS(2048), + [sym_number_literal] = ACTIONS(2050), + [anon_sym_L_SQUOTE] = ACTIONS(2050), + [anon_sym_u_SQUOTE] = ACTIONS(2050), + [anon_sym_U_SQUOTE] = ACTIONS(2050), + [anon_sym_u8_SQUOTE] = ACTIONS(2050), + [anon_sym_SQUOTE] = ACTIONS(2050), + [anon_sym_L_DQUOTE] = ACTIONS(2050), + [anon_sym_u_DQUOTE] = ACTIONS(2050), + [anon_sym_U_DQUOTE] = ACTIONS(2050), + [anon_sym_u8_DQUOTE] = ACTIONS(2050), + [anon_sym_DQUOTE] = ACTIONS(2050), + [sym_true] = ACTIONS(2048), + [sym_false] = ACTIONS(2048), + [anon_sym_NULL] = ACTIONS(2048), + [anon_sym_nullptr] = ACTIONS(2048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2048), + [anon_sym_decltype] = ACTIONS(2048), + [anon_sym_explicit] = ACTIONS(2048), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_template] = ACTIONS(2048), + [anon_sym_operator] = ACTIONS(2048), + [anon_sym_try] = ACTIONS(2048), + [anon_sym_delete] = ACTIONS(2048), + [anon_sym_throw] = ACTIONS(2048), + [anon_sym_namespace] = ACTIONS(2048), + [anon_sym_using] = ACTIONS(2048), + [anon_sym_static_assert] = ACTIONS(2048), + [anon_sym_concept] = ACTIONS(2048), + [anon_sym_co_return] = ACTIONS(2048), + [anon_sym_co_yield] = ACTIONS(2048), + [anon_sym_R_DQUOTE] = ACTIONS(2050), + [anon_sym_LR_DQUOTE] = ACTIONS(2050), + [anon_sym_uR_DQUOTE] = ACTIONS(2050), + [anon_sym_UR_DQUOTE] = ACTIONS(2050), + [anon_sym_u8R_DQUOTE] = ACTIONS(2050), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2048), + [anon_sym_requires] = ACTIONS(2048), + [sym_this] = ACTIONS(2048), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_FORWARD] = ACTIONS(2048), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2048), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_PS_GET] = ACTIONS(2048), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2048), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2048), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2048), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2048), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2048), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2048), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2048), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2048), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2048), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2048), + [anon_sym_MOZ_COLD] = ACTIONS(2048), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2048), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2048), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2048), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2048), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2048), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2048), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2048), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2048), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2048), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2048), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2048), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2048), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2048), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2048), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2048), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2048), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2048), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2048), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2048), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2048), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_NONNULL] = ACTIONS(2048), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2048), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2048), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2048), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2048), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2048), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_NORETURN] = ACTIONS(2048), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2048), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2048), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2048), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2048), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2048), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2048), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2048), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2048), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2048), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2048), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2048), + [anon_sym_MOZ_RAII] = ACTIONS(2048), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2048), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2048), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2048), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2048), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2048), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2048), + }, + [STATE(395)] = { + [sym_identifier] = ACTIONS(2100), + [aux_sym_preproc_include_token1] = ACTIONS(2100), + [aux_sym_preproc_def_token1] = ACTIONS(2100), + [aux_sym_preproc_if_token1] = ACTIONS(2100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2100), + [sym_preproc_directive] = ACTIONS(2100), + [anon_sym_LPAREN2] = ACTIONS(2102), + [anon_sym_BANG] = ACTIONS(2102), + [anon_sym_TILDE] = ACTIONS(2102), + [anon_sym_DASH] = ACTIONS(2100), + [anon_sym_PLUS] = ACTIONS(2100), + [anon_sym_STAR] = ACTIONS(2102), + [anon_sym_AMP_AMP] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym___extension__] = ACTIONS(2100), + [anon_sym_typedef] = ACTIONS(2100), + [anon_sym_virtual] = ACTIONS(2100), + [anon_sym_extern] = ACTIONS(2100), + [anon_sym___attribute__] = ACTIONS(2100), + [anon_sym___attribute] = ACTIONS(2100), + [anon_sym_COLON_COLON] = ACTIONS(2102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2102), + [anon_sym___declspec] = ACTIONS(2100), + [anon_sym___based] = ACTIONS(2100), + [anon_sym___cdecl] = ACTIONS(2100), + [anon_sym___clrcall] = ACTIONS(2100), + [anon_sym___stdcall] = ACTIONS(2100), + [anon_sym___fastcall] = ACTIONS(2100), + [anon_sym___thiscall] = ACTIONS(2100), + [anon_sym___vectorcall] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_RBRACE] = ACTIONS(2102), + [anon_sym_signed] = ACTIONS(2100), + [anon_sym_unsigned] = ACTIONS(2100), + [anon_sym_long] = ACTIONS(2100), + [anon_sym_short] = ACTIONS(2100), + [anon_sym_LBRACK] = ACTIONS(2100), + [anon_sym_static] = ACTIONS(2100), + [anon_sym_register] = ACTIONS(2100), + [anon_sym_inline] = ACTIONS(2100), + [anon_sym___inline] = ACTIONS(2100), + [anon_sym___inline__] = ACTIONS(2100), + [anon_sym___forceinline] = ACTIONS(2100), + [anon_sym_thread_local] = ACTIONS(2100), + [anon_sym___thread] = ACTIONS(2100), + [anon_sym_const] = ACTIONS(2100), + [anon_sym_constexpr] = ACTIONS(2100), + [anon_sym_volatile] = ACTIONS(2100), + [anon_sym_restrict] = ACTIONS(2100), + [anon_sym___restrict__] = ACTIONS(2100), + [anon_sym__Atomic] = ACTIONS(2100), + [anon_sym__Noreturn] = ACTIONS(2100), + [anon_sym_noreturn] = ACTIONS(2100), + [anon_sym__Nonnull] = ACTIONS(2100), + [anon_sym_mutable] = ACTIONS(2100), + [anon_sym_constinit] = ACTIONS(2100), + [anon_sym_consteval] = ACTIONS(2100), + [anon_sym_alignas] = ACTIONS(2100), + [anon_sym__Alignas] = ACTIONS(2100), + [sym_primitive_type] = ACTIONS(2100), + [anon_sym_enum] = ACTIONS(2100), + [anon_sym_class] = ACTIONS(2100), + [anon_sym_struct] = ACTIONS(2100), + [anon_sym_union] = ACTIONS(2100), + [anon_sym_if] = ACTIONS(2100), + [anon_sym_else] = ACTIONS(2100), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_case] = ACTIONS(2100), + [anon_sym_default] = ACTIONS(2100), + [anon_sym_while] = ACTIONS(2100), + [anon_sym_do] = ACTIONS(2100), + [anon_sym_for] = ACTIONS(2100), + [anon_sym_return] = ACTIONS(2100), + [anon_sym_break] = ACTIONS(2100), + [anon_sym_continue] = ACTIONS(2100), + [anon_sym_goto] = ACTIONS(2100), + [anon_sym___try] = ACTIONS(2100), + [anon_sym___leave] = ACTIONS(2100), + [anon_sym_not] = ACTIONS(2100), + [anon_sym_compl] = ACTIONS(2100), + [anon_sym_DASH_DASH] = ACTIONS(2102), + [anon_sym_PLUS_PLUS] = ACTIONS(2102), + [anon_sym_sizeof] = ACTIONS(2100), + [anon_sym___alignof__] = ACTIONS(2100), + [anon_sym___alignof] = ACTIONS(2100), + [anon_sym__alignof] = ACTIONS(2100), + [anon_sym_alignof] = ACTIONS(2100), + [anon_sym__Alignof] = ACTIONS(2100), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2100), + [anon_sym_asm] = ACTIONS(2100), + [anon_sym___asm__] = ACTIONS(2100), + [anon_sym___asm] = ACTIONS(2100), + [sym_number_literal] = ACTIONS(2102), + [anon_sym_L_SQUOTE] = ACTIONS(2102), + [anon_sym_u_SQUOTE] = ACTIONS(2102), + [anon_sym_U_SQUOTE] = ACTIONS(2102), + [anon_sym_u8_SQUOTE] = ACTIONS(2102), + [anon_sym_SQUOTE] = ACTIONS(2102), + [anon_sym_L_DQUOTE] = ACTIONS(2102), + [anon_sym_u_DQUOTE] = ACTIONS(2102), + [anon_sym_U_DQUOTE] = ACTIONS(2102), + [anon_sym_u8_DQUOTE] = ACTIONS(2102), + [anon_sym_DQUOTE] = ACTIONS(2102), + [sym_true] = ACTIONS(2100), + [sym_false] = ACTIONS(2100), + [anon_sym_NULL] = ACTIONS(2100), + [anon_sym_nullptr] = ACTIONS(2100), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2100), + [anon_sym_decltype] = ACTIONS(2100), + [anon_sym_explicit] = ACTIONS(2100), + [anon_sym_typename] = ACTIONS(2100), + [anon_sym_template] = ACTIONS(2100), + [anon_sym_operator] = ACTIONS(2100), + [anon_sym_try] = ACTIONS(2100), + [anon_sym_delete] = ACTIONS(2100), + [anon_sym_throw] = ACTIONS(2100), + [anon_sym_namespace] = ACTIONS(2100), + [anon_sym_using] = ACTIONS(2100), + [anon_sym_static_assert] = ACTIONS(2100), + [anon_sym_concept] = ACTIONS(2100), + [anon_sym_co_return] = ACTIONS(2100), + [anon_sym_co_yield] = ACTIONS(2100), + [anon_sym_R_DQUOTE] = ACTIONS(2102), + [anon_sym_LR_DQUOTE] = ACTIONS(2102), + [anon_sym_uR_DQUOTE] = ACTIONS(2102), + [anon_sym_UR_DQUOTE] = ACTIONS(2102), + [anon_sym_u8R_DQUOTE] = ACTIONS(2102), + [anon_sym_co_await] = ACTIONS(2100), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2100), + [sym_this] = ACTIONS(2100), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_FORWARD] = ACTIONS(2100), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2100), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_PS_GET] = ACTIONS(2100), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2100), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2100), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2100), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2100), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2100), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2100), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2100), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2100), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2100), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2100), + [anon_sym_MOZ_COLD] = ACTIONS(2100), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2100), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2100), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2100), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2100), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2100), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2100), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2100), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2100), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2100), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2100), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2100), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2100), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2100), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2100), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2100), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2100), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2100), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2100), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2100), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2100), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_NONNULL] = ACTIONS(2100), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2100), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2100), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2100), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2100), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2100), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_NORETURN] = ACTIONS(2100), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2100), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2100), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2100), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2100), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2100), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2100), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2100), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2100), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2100), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2100), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2100), + [anon_sym_MOZ_RAII] = ACTIONS(2100), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2100), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2100), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2100), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2100), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2100), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2100), + }, + [STATE(396)] = { + [sym_identifier] = ACTIONS(2104), + [aux_sym_preproc_include_token1] = ACTIONS(2104), + [aux_sym_preproc_def_token1] = ACTIONS(2104), + [aux_sym_preproc_if_token1] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2104), + [sym_preproc_directive] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_TILDE] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_AMP_AMP] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym___extension__] = ACTIONS(2104), + [anon_sym_typedef] = ACTIONS(2104), + [anon_sym_virtual] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2104), + [anon_sym___attribute__] = ACTIONS(2104), + [anon_sym___attribute] = ACTIONS(2104), + [anon_sym_COLON_COLON] = ACTIONS(2106), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2106), + [anon_sym___declspec] = ACTIONS(2104), + [anon_sym___based] = ACTIONS(2104), + [anon_sym___cdecl] = ACTIONS(2104), + [anon_sym___clrcall] = ACTIONS(2104), + [anon_sym___stdcall] = ACTIONS(2104), + [anon_sym___fastcall] = ACTIONS(2104), + [anon_sym___thiscall] = ACTIONS(2104), + [anon_sym___vectorcall] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_RBRACE] = ACTIONS(2106), + [anon_sym_signed] = ACTIONS(2104), + [anon_sym_unsigned] = ACTIONS(2104), + [anon_sym_long] = ACTIONS(2104), + [anon_sym_short] = ACTIONS(2104), + [anon_sym_LBRACK] = ACTIONS(2104), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_register] = ACTIONS(2104), + [anon_sym_inline] = ACTIONS(2104), + [anon_sym___inline] = ACTIONS(2104), + [anon_sym___inline__] = ACTIONS(2104), + [anon_sym___forceinline] = ACTIONS(2104), + [anon_sym_thread_local] = ACTIONS(2104), + [anon_sym___thread] = ACTIONS(2104), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_constexpr] = ACTIONS(2104), + [anon_sym_volatile] = ACTIONS(2104), + [anon_sym_restrict] = ACTIONS(2104), + [anon_sym___restrict__] = ACTIONS(2104), + [anon_sym__Atomic] = ACTIONS(2104), + [anon_sym__Noreturn] = ACTIONS(2104), + [anon_sym_noreturn] = ACTIONS(2104), + [anon_sym__Nonnull] = ACTIONS(2104), + [anon_sym_mutable] = ACTIONS(2104), + [anon_sym_constinit] = ACTIONS(2104), + [anon_sym_consteval] = ACTIONS(2104), + [anon_sym_alignas] = ACTIONS(2104), + [anon_sym__Alignas] = ACTIONS(2104), + [sym_primitive_type] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2104), + [anon_sym_class] = ACTIONS(2104), + [anon_sym_struct] = ACTIONS(2104), + [anon_sym_union] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_else] = ACTIONS(2104), + [anon_sym_switch] = ACTIONS(2104), + [anon_sym_case] = ACTIONS(2104), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_while] = ACTIONS(2104), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_break] = ACTIONS(2104), + [anon_sym_continue] = ACTIONS(2104), + [anon_sym_goto] = ACTIONS(2104), + [anon_sym___try] = ACTIONS(2104), + [anon_sym___leave] = ACTIONS(2104), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_compl] = ACTIONS(2104), + [anon_sym_DASH_DASH] = ACTIONS(2106), + [anon_sym_PLUS_PLUS] = ACTIONS(2106), + [anon_sym_sizeof] = ACTIONS(2104), + [anon_sym___alignof__] = ACTIONS(2104), + [anon_sym___alignof] = ACTIONS(2104), + [anon_sym__alignof] = ACTIONS(2104), + [anon_sym_alignof] = ACTIONS(2104), + [anon_sym__Alignof] = ACTIONS(2104), + [anon_sym_offsetof] = ACTIONS(2104), + [anon_sym__Generic] = ACTIONS(2104), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [anon_sym___asm] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2106), + [anon_sym_u_SQUOTE] = ACTIONS(2106), + [anon_sym_U_SQUOTE] = ACTIONS(2106), + [anon_sym_u8_SQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_L_DQUOTE] = ACTIONS(2106), + [anon_sym_u_DQUOTE] = ACTIONS(2106), + [anon_sym_U_DQUOTE] = ACTIONS(2106), + [anon_sym_u8_DQUOTE] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2106), + [sym_true] = ACTIONS(2104), + [sym_false] = ACTIONS(2104), + [anon_sym_NULL] = ACTIONS(2104), + [anon_sym_nullptr] = ACTIONS(2104), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2104), + [anon_sym_decltype] = ACTIONS(2104), + [anon_sym_explicit] = ACTIONS(2104), + [anon_sym_typename] = ACTIONS(2104), + [anon_sym_template] = ACTIONS(2104), + [anon_sym_operator] = ACTIONS(2104), + [anon_sym_try] = ACTIONS(2104), + [anon_sym_delete] = ACTIONS(2104), + [anon_sym_throw] = ACTIONS(2104), + [anon_sym_namespace] = ACTIONS(2104), + [anon_sym_using] = ACTIONS(2104), + [anon_sym_static_assert] = ACTIONS(2104), + [anon_sym_concept] = ACTIONS(2104), + [anon_sym_co_return] = ACTIONS(2104), + [anon_sym_co_yield] = ACTIONS(2104), + [anon_sym_R_DQUOTE] = ACTIONS(2106), + [anon_sym_LR_DQUOTE] = ACTIONS(2106), + [anon_sym_uR_DQUOTE] = ACTIONS(2106), + [anon_sym_UR_DQUOTE] = ACTIONS(2106), + [anon_sym_u8R_DQUOTE] = ACTIONS(2106), + [anon_sym_co_await] = ACTIONS(2104), + [anon_sym_new] = ACTIONS(2104), + [anon_sym_requires] = ACTIONS(2104), + [sym_this] = ACTIONS(2104), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_FORWARD] = ACTIONS(2104), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_PS_GET] = ACTIONS(2104), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2104), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2104), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2104), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2104), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2104), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2104), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2104), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2104), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2104), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2104), + [anon_sym_MOZ_COLD] = ACTIONS(2104), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2104), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2104), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2104), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2104), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2104), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2104), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2104), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2104), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2104), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2104), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2104), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2104), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2104), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2104), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2104), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2104), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2104), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2104), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2104), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2104), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_NONNULL] = ACTIONS(2104), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2104), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2104), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2104), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2104), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2104), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_NORETURN] = ACTIONS(2104), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2104), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2104), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2104), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2104), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2104), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2104), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2104), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2104), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2104), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2104), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2104), + [anon_sym_MOZ_RAII] = ACTIONS(2104), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2104), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2104), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2104), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2104), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2104), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2104), + }, + [STATE(397)] = { + [sym_identifier] = ACTIONS(1966), + [aux_sym_preproc_include_token1] = ACTIONS(1966), + [aux_sym_preproc_def_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1966), + [sym_preproc_directive] = ACTIONS(1966), + [anon_sym_LPAREN2] = ACTIONS(1968), + [anon_sym_BANG] = ACTIONS(1968), + [anon_sym_TILDE] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym___extension__] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1966), + [anon_sym_virtual] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym___attribute__] = ACTIONS(1966), + [anon_sym___attribute] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1966), + [anon_sym___based] = ACTIONS(1966), + [anon_sym___cdecl] = ACTIONS(1966), + [anon_sym___clrcall] = ACTIONS(1966), + [anon_sym___stdcall] = ACTIONS(1966), + [anon_sym___fastcall] = ACTIONS(1966), + [anon_sym___thiscall] = ACTIONS(1966), + [anon_sym___vectorcall] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_register] = ACTIONS(1966), + [anon_sym_inline] = ACTIONS(1966), + [anon_sym___inline] = ACTIONS(1966), + [anon_sym___inline__] = ACTIONS(1966), + [anon_sym___forceinline] = ACTIONS(1966), + [anon_sym_thread_local] = ACTIONS(1966), + [anon_sym___thread] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_constexpr] = ACTIONS(1966), + [anon_sym_volatile] = ACTIONS(1966), + [anon_sym_restrict] = ACTIONS(1966), + [anon_sym___restrict__] = ACTIONS(1966), + [anon_sym__Atomic] = ACTIONS(1966), + [anon_sym__Noreturn] = ACTIONS(1966), + [anon_sym_noreturn] = ACTIONS(1966), + [anon_sym__Nonnull] = ACTIONS(1966), + [anon_sym_mutable] = ACTIONS(1966), + [anon_sym_constinit] = ACTIONS(1966), + [anon_sym_consteval] = ACTIONS(1966), + [anon_sym_alignas] = ACTIONS(1966), + [anon_sym__Alignas] = ACTIONS(1966), + [sym_primitive_type] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_class] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_else] = ACTIONS(1966), + [anon_sym_switch] = ACTIONS(1966), + [anon_sym_case] = ACTIONS(1966), + [anon_sym_default] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1966), + [anon_sym_do] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1966), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1966), + [anon_sym_continue] = ACTIONS(1966), + [anon_sym_goto] = ACTIONS(1966), + [anon_sym___try] = ACTIONS(1966), + [anon_sym___leave] = ACTIONS(1966), + [anon_sym_not] = ACTIONS(1966), + [anon_sym_compl] = ACTIONS(1966), + [anon_sym_DASH_DASH] = ACTIONS(1968), + [anon_sym_PLUS_PLUS] = ACTIONS(1968), + [anon_sym_sizeof] = ACTIONS(1966), + [anon_sym___alignof__] = ACTIONS(1966), + [anon_sym___alignof] = ACTIONS(1966), + [anon_sym__alignof] = ACTIONS(1966), + [anon_sym_alignof] = ACTIONS(1966), + [anon_sym__Alignof] = ACTIONS(1966), + [anon_sym_offsetof] = ACTIONS(1966), + [anon_sym__Generic] = ACTIONS(1966), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(1968), + [anon_sym_L_SQUOTE] = ACTIONS(1968), + [anon_sym_u_SQUOTE] = ACTIONS(1968), + [anon_sym_U_SQUOTE] = ACTIONS(1968), + [anon_sym_u8_SQUOTE] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(1968), + [anon_sym_L_DQUOTE] = ACTIONS(1968), + [anon_sym_u_DQUOTE] = ACTIONS(1968), + [anon_sym_U_DQUOTE] = ACTIONS(1968), + [anon_sym_u8_DQUOTE] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [sym_true] = ACTIONS(1966), + [sym_false] = ACTIONS(1966), + [anon_sym_NULL] = ACTIONS(1966), + [anon_sym_nullptr] = ACTIONS(1966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1966), + [anon_sym_decltype] = ACTIONS(1966), + [anon_sym_explicit] = ACTIONS(1966), + [anon_sym_typename] = ACTIONS(1966), + [anon_sym_template] = ACTIONS(1966), + [anon_sym_operator] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1966), + [anon_sym_delete] = ACTIONS(1966), + [anon_sym_throw] = ACTIONS(1966), + [anon_sym_namespace] = ACTIONS(1966), + [anon_sym_using] = ACTIONS(1966), + [anon_sym_static_assert] = ACTIONS(1966), + [anon_sym_concept] = ACTIONS(1966), + [anon_sym_co_return] = ACTIONS(1966), + [anon_sym_co_yield] = ACTIONS(1966), + [anon_sym_R_DQUOTE] = ACTIONS(1968), + [anon_sym_LR_DQUOTE] = ACTIONS(1968), + [anon_sym_uR_DQUOTE] = ACTIONS(1968), + [anon_sym_UR_DQUOTE] = ACTIONS(1968), + [anon_sym_u8R_DQUOTE] = ACTIONS(1968), + [anon_sym_co_await] = ACTIONS(1966), + [anon_sym_new] = ACTIONS(1966), + [anon_sym_requires] = ACTIONS(1966), + [sym_this] = ACTIONS(1966), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_FORWARD] = ACTIONS(1966), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1966), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_PS_GET] = ACTIONS(1966), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1966), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1966), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1966), + [anon_sym_MOZ_COLD] = ACTIONS(1966), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1966), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1966), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1966), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1966), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1966), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1966), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1966), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1966), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1966), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1966), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1966), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1966), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_RAII] = ACTIONS(1966), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1966), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1966), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1966), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1966), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1966), + }, + [STATE(398)] = { + [sym_identifier] = ACTIONS(1966), + [aux_sym_preproc_include_token1] = ACTIONS(1966), + [aux_sym_preproc_def_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1966), + [sym_preproc_directive] = ACTIONS(1966), + [anon_sym_LPAREN2] = ACTIONS(1968), + [anon_sym_BANG] = ACTIONS(1968), + [anon_sym_TILDE] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym___extension__] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1966), + [anon_sym_virtual] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym___attribute__] = ACTIONS(1966), + [anon_sym___attribute] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1966), + [anon_sym___based] = ACTIONS(1966), + [anon_sym___cdecl] = ACTIONS(1966), + [anon_sym___clrcall] = ACTIONS(1966), + [anon_sym___stdcall] = ACTIONS(1966), + [anon_sym___fastcall] = ACTIONS(1966), + [anon_sym___thiscall] = ACTIONS(1966), + [anon_sym___vectorcall] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_register] = ACTIONS(1966), + [anon_sym_inline] = ACTIONS(1966), + [anon_sym___inline] = ACTIONS(1966), + [anon_sym___inline__] = ACTIONS(1966), + [anon_sym___forceinline] = ACTIONS(1966), + [anon_sym_thread_local] = ACTIONS(1966), + [anon_sym___thread] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_constexpr] = ACTIONS(1966), + [anon_sym_volatile] = ACTIONS(1966), + [anon_sym_restrict] = ACTIONS(1966), + [anon_sym___restrict__] = ACTIONS(1966), + [anon_sym__Atomic] = ACTIONS(1966), + [anon_sym__Noreturn] = ACTIONS(1966), + [anon_sym_noreturn] = ACTIONS(1966), + [anon_sym__Nonnull] = ACTIONS(1966), + [anon_sym_mutable] = ACTIONS(1966), + [anon_sym_constinit] = ACTIONS(1966), + [anon_sym_consteval] = ACTIONS(1966), + [anon_sym_alignas] = ACTIONS(1966), + [anon_sym__Alignas] = ACTIONS(1966), + [sym_primitive_type] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_class] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_else] = ACTIONS(1966), + [anon_sym_switch] = ACTIONS(1966), + [anon_sym_case] = ACTIONS(1966), + [anon_sym_default] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1966), + [anon_sym_do] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1966), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1966), + [anon_sym_continue] = ACTIONS(1966), + [anon_sym_goto] = ACTIONS(1966), + [anon_sym___try] = ACTIONS(1966), + [anon_sym___leave] = ACTIONS(1966), + [anon_sym_not] = ACTIONS(1966), + [anon_sym_compl] = ACTIONS(1966), + [anon_sym_DASH_DASH] = ACTIONS(1968), + [anon_sym_PLUS_PLUS] = ACTIONS(1968), + [anon_sym_sizeof] = ACTIONS(1966), + [anon_sym___alignof__] = ACTIONS(1966), + [anon_sym___alignof] = ACTIONS(1966), + [anon_sym__alignof] = ACTIONS(1966), + [anon_sym_alignof] = ACTIONS(1966), + [anon_sym__Alignof] = ACTIONS(1966), + [anon_sym_offsetof] = ACTIONS(1966), + [anon_sym__Generic] = ACTIONS(1966), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(1968), + [anon_sym_L_SQUOTE] = ACTIONS(1968), + [anon_sym_u_SQUOTE] = ACTIONS(1968), + [anon_sym_U_SQUOTE] = ACTIONS(1968), + [anon_sym_u8_SQUOTE] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(1968), + [anon_sym_L_DQUOTE] = ACTIONS(1968), + [anon_sym_u_DQUOTE] = ACTIONS(1968), + [anon_sym_U_DQUOTE] = ACTIONS(1968), + [anon_sym_u8_DQUOTE] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [sym_true] = ACTIONS(1966), + [sym_false] = ACTIONS(1966), + [anon_sym_NULL] = ACTIONS(1966), + [anon_sym_nullptr] = ACTIONS(1966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1966), + [anon_sym_decltype] = ACTIONS(1966), + [anon_sym_explicit] = ACTIONS(1966), + [anon_sym_typename] = ACTIONS(1966), + [anon_sym_template] = ACTIONS(1966), + [anon_sym_operator] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1966), + [anon_sym_delete] = ACTIONS(1966), + [anon_sym_throw] = ACTIONS(1966), + [anon_sym_namespace] = ACTIONS(1966), + [anon_sym_using] = ACTIONS(1966), + [anon_sym_static_assert] = ACTIONS(1966), + [anon_sym_concept] = ACTIONS(1966), + [anon_sym_co_return] = ACTIONS(1966), + [anon_sym_co_yield] = ACTIONS(1966), + [anon_sym_R_DQUOTE] = ACTIONS(1968), + [anon_sym_LR_DQUOTE] = ACTIONS(1968), + [anon_sym_uR_DQUOTE] = ACTIONS(1968), + [anon_sym_UR_DQUOTE] = ACTIONS(1968), + [anon_sym_u8R_DQUOTE] = ACTIONS(1968), + [anon_sym_co_await] = ACTIONS(1966), + [anon_sym_new] = ACTIONS(1966), + [anon_sym_requires] = ACTIONS(1966), + [sym_this] = ACTIONS(1966), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_FORWARD] = ACTIONS(1966), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1966), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_PS_GET] = ACTIONS(1966), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1966), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1966), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1966), + [anon_sym_MOZ_COLD] = ACTIONS(1966), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1966), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1966), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1966), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1966), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1966), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1966), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1966), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1966), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1966), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1966), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1966), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1966), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_RAII] = ACTIONS(1966), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1966), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1966), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1966), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1966), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1966), + }, + [STATE(399)] = { + [sym_identifier] = ACTIONS(2112), + [aux_sym_preproc_include_token1] = ACTIONS(2112), + [aux_sym_preproc_def_token1] = ACTIONS(2112), + [aux_sym_preproc_if_token1] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2112), + [sym_preproc_directive] = ACTIONS(2112), + [anon_sym_LPAREN2] = ACTIONS(2114), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(2112), + [anon_sym_PLUS] = ACTIONS(2112), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_AMP_AMP] = ACTIONS(2114), + [anon_sym_AMP] = ACTIONS(2112), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym___extension__] = ACTIONS(2112), + [anon_sym_typedef] = ACTIONS(2112), + [anon_sym_virtual] = ACTIONS(2112), + [anon_sym_extern] = ACTIONS(2112), + [anon_sym___attribute__] = ACTIONS(2112), + [anon_sym___attribute] = ACTIONS(2112), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2114), + [anon_sym___declspec] = ACTIONS(2112), + [anon_sym___based] = ACTIONS(2112), + [anon_sym___cdecl] = ACTIONS(2112), + [anon_sym___clrcall] = ACTIONS(2112), + [anon_sym___stdcall] = ACTIONS(2112), + [anon_sym___fastcall] = ACTIONS(2112), + [anon_sym___thiscall] = ACTIONS(2112), + [anon_sym___vectorcall] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_signed] = ACTIONS(2112), + [anon_sym_unsigned] = ACTIONS(2112), + [anon_sym_long] = ACTIONS(2112), + [anon_sym_short] = ACTIONS(2112), + [anon_sym_LBRACK] = ACTIONS(2112), + [anon_sym_static] = ACTIONS(2112), + [anon_sym_register] = ACTIONS(2112), + [anon_sym_inline] = ACTIONS(2112), + [anon_sym___inline] = ACTIONS(2112), + [anon_sym___inline__] = ACTIONS(2112), + [anon_sym___forceinline] = ACTIONS(2112), + [anon_sym_thread_local] = ACTIONS(2112), + [anon_sym___thread] = ACTIONS(2112), + [anon_sym_const] = ACTIONS(2112), + [anon_sym_constexpr] = ACTIONS(2112), + [anon_sym_volatile] = ACTIONS(2112), + [anon_sym_restrict] = ACTIONS(2112), + [anon_sym___restrict__] = ACTIONS(2112), + [anon_sym__Atomic] = ACTIONS(2112), + [anon_sym__Noreturn] = ACTIONS(2112), + [anon_sym_noreturn] = ACTIONS(2112), + [anon_sym__Nonnull] = ACTIONS(2112), + [anon_sym_mutable] = ACTIONS(2112), + [anon_sym_constinit] = ACTIONS(2112), + [anon_sym_consteval] = ACTIONS(2112), + [anon_sym_alignas] = ACTIONS(2112), + [anon_sym__Alignas] = ACTIONS(2112), + [sym_primitive_type] = ACTIONS(2112), + [anon_sym_enum] = ACTIONS(2112), + [anon_sym_class] = ACTIONS(2112), + [anon_sym_struct] = ACTIONS(2112), + [anon_sym_union] = ACTIONS(2112), + [anon_sym_if] = ACTIONS(2112), + [anon_sym_else] = ACTIONS(2112), + [anon_sym_switch] = ACTIONS(2112), + [anon_sym_case] = ACTIONS(2112), + [anon_sym_default] = ACTIONS(2112), + [anon_sym_while] = ACTIONS(2112), + [anon_sym_do] = ACTIONS(2112), + [anon_sym_for] = ACTIONS(2112), + [anon_sym_return] = ACTIONS(2112), + [anon_sym_break] = ACTIONS(2112), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_goto] = ACTIONS(2112), + [anon_sym___try] = ACTIONS(2112), + [anon_sym___leave] = ACTIONS(2112), + [anon_sym_not] = ACTIONS(2112), + [anon_sym_compl] = ACTIONS(2112), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_sizeof] = ACTIONS(2112), + [anon_sym___alignof__] = ACTIONS(2112), + [anon_sym___alignof] = ACTIONS(2112), + [anon_sym__alignof] = ACTIONS(2112), + [anon_sym_alignof] = ACTIONS(2112), + [anon_sym__Alignof] = ACTIONS(2112), + [anon_sym_offsetof] = ACTIONS(2112), + [anon_sym__Generic] = ACTIONS(2112), + [anon_sym_asm] = ACTIONS(2112), + [anon_sym___asm__] = ACTIONS(2112), + [anon_sym___asm] = ACTIONS(2112), + [sym_number_literal] = ACTIONS(2114), + [anon_sym_L_SQUOTE] = ACTIONS(2114), + [anon_sym_u_SQUOTE] = ACTIONS(2114), + [anon_sym_U_SQUOTE] = ACTIONS(2114), + [anon_sym_u8_SQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), + [anon_sym_L_DQUOTE] = ACTIONS(2114), + [anon_sym_u_DQUOTE] = ACTIONS(2114), + [anon_sym_U_DQUOTE] = ACTIONS(2114), + [anon_sym_u8_DQUOTE] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2112), + [anon_sym_nullptr] = ACTIONS(2112), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2112), + [anon_sym_decltype] = ACTIONS(2112), + [anon_sym_explicit] = ACTIONS(2112), + [anon_sym_typename] = ACTIONS(2112), + [anon_sym_template] = ACTIONS(2112), + [anon_sym_operator] = ACTIONS(2112), + [anon_sym_try] = ACTIONS(2112), + [anon_sym_delete] = ACTIONS(2112), + [anon_sym_throw] = ACTIONS(2112), + [anon_sym_namespace] = ACTIONS(2112), + [anon_sym_using] = ACTIONS(2112), + [anon_sym_static_assert] = ACTIONS(2112), + [anon_sym_concept] = ACTIONS(2112), + [anon_sym_co_return] = ACTIONS(2112), + [anon_sym_co_yield] = ACTIONS(2112), + [anon_sym_R_DQUOTE] = ACTIONS(2114), + [anon_sym_LR_DQUOTE] = ACTIONS(2114), + [anon_sym_uR_DQUOTE] = ACTIONS(2114), + [anon_sym_UR_DQUOTE] = ACTIONS(2114), + [anon_sym_u8R_DQUOTE] = ACTIONS(2114), + [anon_sym_co_await] = ACTIONS(2112), + [anon_sym_new] = ACTIONS(2112), + [anon_sym_requires] = ACTIONS(2112), + [sym_this] = ACTIONS(2112), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_FORWARD] = ACTIONS(2112), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2112), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_PS_GET] = ACTIONS(2112), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2112), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2112), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2112), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2112), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2112), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2112), + [anon_sym_MOZ_COLD] = ACTIONS(2112), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2112), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2112), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2112), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2112), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2112), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2112), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2112), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2112), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2112), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2112), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2112), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2112), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2112), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_NONNULL] = ACTIONS(2112), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2112), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2112), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2112), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2112), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2112), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2112), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2112), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2112), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2112), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2112), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2112), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2112), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2112), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2112), + [anon_sym_MOZ_RAII] = ACTIONS(2112), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2112), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2112), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2112), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2112), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2112), + }, + [STATE(400)] = { + [sym_identifier] = ACTIONS(1875), + [aux_sym_preproc_include_token1] = ACTIONS(1875), + [aux_sym_preproc_def_token1] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1875), + [sym_preproc_directive] = ACTIONS(1875), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym___extension__] = ACTIONS(1875), + [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_virtual] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym___attribute__] = ACTIONS(1875), + [anon_sym___attribute] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), + [anon_sym___declspec] = ACTIONS(1875), + [anon_sym___based] = ACTIONS(1875), + [anon_sym___cdecl] = ACTIONS(1875), + [anon_sym___clrcall] = ACTIONS(1875), + [anon_sym___stdcall] = ACTIONS(1875), + [anon_sym___fastcall] = ACTIONS(1875), + [anon_sym___thiscall] = ACTIONS(1875), + [anon_sym___vectorcall] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_inline] = ACTIONS(1875), + [anon_sym___inline] = ACTIONS(1875), + [anon_sym___inline__] = ACTIONS(1875), + [anon_sym___forceinline] = ACTIONS(1875), + [anon_sym_thread_local] = ACTIONS(1875), + [anon_sym___thread] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_constexpr] = ACTIONS(1875), + [anon_sym_volatile] = ACTIONS(1875), + [anon_sym_restrict] = ACTIONS(1875), + [anon_sym___restrict__] = ACTIONS(1875), + [anon_sym__Atomic] = ACTIONS(1875), + [anon_sym__Noreturn] = ACTIONS(1875), + [anon_sym_noreturn] = ACTIONS(1875), + [anon_sym__Nonnull] = ACTIONS(1875), + [anon_sym_mutable] = ACTIONS(1875), + [anon_sym_constinit] = ACTIONS(1875), + [anon_sym_consteval] = ACTIONS(1875), + [anon_sym_alignas] = ACTIONS(1875), + [anon_sym__Alignas] = ACTIONS(1875), + [sym_primitive_type] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_switch] = ACTIONS(1875), + [anon_sym_case] = ACTIONS(1875), + [anon_sym_default] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_goto] = ACTIONS(1875), + [anon_sym___try] = ACTIONS(1875), + [anon_sym___leave] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(1875), + [anon_sym_compl] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1873), + [anon_sym_sizeof] = ACTIONS(1875), + [anon_sym___alignof__] = ACTIONS(1875), + [anon_sym___alignof] = ACTIONS(1875), + [anon_sym__alignof] = ACTIONS(1875), + [anon_sym_alignof] = ACTIONS(1875), + [anon_sym__Alignof] = ACTIONS(1875), + [anon_sym_offsetof] = ACTIONS(1875), + [anon_sym__Generic] = ACTIONS(1875), + [anon_sym_asm] = ACTIONS(1875), + [anon_sym___asm__] = ACTIONS(1875), + [anon_sym___asm] = ACTIONS(1875), + [sym_number_literal] = ACTIONS(1873), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1873), + [anon_sym_u_DQUOTE] = ACTIONS(1873), + [anon_sym_U_DQUOTE] = ACTIONS(1873), + [anon_sym_u8_DQUOTE] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym_true] = ACTIONS(1875), + [sym_false] = ACTIONS(1875), + [anon_sym_NULL] = ACTIONS(1875), + [anon_sym_nullptr] = ACTIONS(1875), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1879), - [anon_sym_virtual] = ACTIONS(1879), - [anon_sym_explicit] = ACTIONS(1879), - [anon_sym_public] = ACTIONS(1879), - [anon_sym_private] = ACTIONS(1879), - [anon_sym_protected] = ACTIONS(1879), - [sym_auto] = ACTIONS(1879), - [anon_sym_typename] = ACTIONS(1879), - [anon_sym_template] = ACTIONS(1879), - [anon_sym_operator] = ACTIONS(1879), - [anon_sym_friend] = ACTIONS(1879), - [anon_sym_using] = ACTIONS(1879), - [anon_sym_static_assert] = ACTIONS(1879), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1879), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1879), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1879), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1879), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1879), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1879), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1879), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1879), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1879), - [anon_sym_MOZ_COLD] = ACTIONS(1879), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1879), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1879), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1879), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1879), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1879), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1879), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1879), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1879), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1879), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1879), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1879), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1879), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1879), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1879), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1879), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1879), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1879), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1879), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1879), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_NONNULL] = ACTIONS(1879), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1879), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1879), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1879), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1879), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1879), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_NORETURN] = ACTIONS(1879), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1879), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1879), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1879), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1879), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1879), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1879), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1879), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1879), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1879), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), - [anon_sym_MOZ_RAII] = ACTIONS(1879), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1879), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1879), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1879), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1879), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1879), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1879), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1879), + [sym_auto] = ACTIONS(1875), + [anon_sym_decltype] = ACTIONS(1875), + [anon_sym_explicit] = ACTIONS(1875), + [anon_sym_typename] = ACTIONS(1875), + [anon_sym_template] = ACTIONS(1875), + [anon_sym_operator] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_delete] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1875), + [anon_sym_namespace] = ACTIONS(1875), + [anon_sym_using] = ACTIONS(1875), + [anon_sym_static_assert] = ACTIONS(1875), + [anon_sym_concept] = ACTIONS(1875), + [anon_sym_co_return] = ACTIONS(1875), + [anon_sym_co_yield] = ACTIONS(1875), + [anon_sym_R_DQUOTE] = ACTIONS(1873), + [anon_sym_LR_DQUOTE] = ACTIONS(1873), + [anon_sym_uR_DQUOTE] = ACTIONS(1873), + [anon_sym_UR_DQUOTE] = ACTIONS(1873), + [anon_sym_u8R_DQUOTE] = ACTIONS(1873), + [anon_sym_co_await] = ACTIONS(1875), + [anon_sym_new] = ACTIONS(1875), + [anon_sym_requires] = ACTIONS(1875), + [sym_this] = ACTIONS(1875), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_FORWARD] = ACTIONS(1875), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1875), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_PS_GET] = ACTIONS(1875), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1875), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1875), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1875), + [anon_sym_MOZ_COLD] = ACTIONS(1875), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1875), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1875), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1875), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1875), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1875), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1875), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1875), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1875), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1875), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1875), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1875), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1875), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_RAII] = ACTIONS(1875), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1875), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1875), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1875), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), }, - [1149] = { - [sym_identifier] = ACTIONS(1569), - [aux_sym_preproc_def_token1] = ACTIONS(1569), - [aux_sym_preproc_if_token1] = ACTIONS(1569), - [aux_sym_preproc_if_token2] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1569), - [sym_preproc_directive] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP_AMP] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_typedef] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym___attribute__] = ACTIONS(1569), - [anon_sym_COLON_COLON] = ACTIONS(1571), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1571), - [anon_sym___declspec] = ACTIONS(1569), - [anon_sym___based] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1569), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_inline] = ACTIONS(1569), - [anon_sym_thread_local] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [anon_sym_volatile] = ACTIONS(1569), - [anon_sym_restrict] = ACTIONS(1569), - [anon_sym__Atomic] = ACTIONS(1569), - [anon_sym_mutable] = ACTIONS(1569), - [anon_sym_constexpr] = ACTIONS(1569), - [anon_sym_signed] = ACTIONS(1569), - [anon_sym_unsigned] = ACTIONS(1569), - [anon_sym_long] = ACTIONS(1569), - [anon_sym_short] = ACTIONS(1569), - [sym_primitive_type] = ACTIONS(1569), - [anon_sym_enum] = ACTIONS(1569), - [anon_sym_class] = ACTIONS(1569), - [anon_sym_struct] = ACTIONS(1569), - [anon_sym_union] = ACTIONS(1569), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1569), - [anon_sym_virtual] = ACTIONS(1569), - [anon_sym_explicit] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [sym_auto] = ACTIONS(1569), - [anon_sym_typename] = ACTIONS(1569), - [anon_sym_template] = ACTIONS(1569), - [anon_sym_operator] = ACTIONS(1569), - [anon_sym_friend] = ACTIONS(1569), - [anon_sym_using] = ACTIONS(1569), - [anon_sym_static_assert] = ACTIONS(1569), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1569), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1569), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1569), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1569), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1569), - [anon_sym_MOZ_COLD] = ACTIONS(1569), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1569), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1569), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1569), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1569), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1569), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1569), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1569), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1569), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1569), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1569), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1569), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1569), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1569), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_NONNULL] = ACTIONS(1569), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1569), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1569), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1569), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1569), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1569), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1569), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1569), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1569), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1569), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1569), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1569), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1569), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1569), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1569), - [anon_sym_MOZ_RAII] = ACTIONS(1569), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1569), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1569), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1569), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1569), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1569), - }, - [1150] = { - [sym_identifier] = ACTIONS(2894), - [aux_sym_preproc_def_token1] = ACTIONS(2894), - [aux_sym_preproc_if_token1] = ACTIONS(2894), - [aux_sym_preproc_if_token2] = ACTIONS(2894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2894), - [sym_preproc_directive] = ACTIONS(2894), - [anon_sym_LPAREN2] = ACTIONS(2896), - [anon_sym_TILDE] = ACTIONS(2896), - [anon_sym_STAR] = ACTIONS(2896), - [anon_sym_AMP_AMP] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_typedef] = ACTIONS(2894), - [anon_sym_extern] = ACTIONS(2894), - [anon_sym___attribute__] = ACTIONS(2894), - [anon_sym_COLON_COLON] = ACTIONS(2896), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2896), - [anon_sym___declspec] = ACTIONS(2894), - [anon_sym___based] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_static] = ACTIONS(2894), - [anon_sym_register] = ACTIONS(2894), - [anon_sym_inline] = ACTIONS(2894), - [anon_sym_thread_local] = ACTIONS(2894), - [anon_sym_const] = ACTIONS(2894), - [anon_sym_volatile] = ACTIONS(2894), - [anon_sym_restrict] = ACTIONS(2894), - [anon_sym__Atomic] = ACTIONS(2894), - [anon_sym_mutable] = ACTIONS(2894), - [anon_sym_constexpr] = ACTIONS(2894), - [anon_sym_signed] = ACTIONS(2894), - [anon_sym_unsigned] = ACTIONS(2894), - [anon_sym_long] = ACTIONS(2894), - [anon_sym_short] = ACTIONS(2894), - [sym_primitive_type] = ACTIONS(2894), - [anon_sym_enum] = ACTIONS(2894), - [anon_sym_class] = ACTIONS(2894), - [anon_sym_struct] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2894), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2894), - [anon_sym_virtual] = ACTIONS(2894), - [anon_sym_explicit] = ACTIONS(2894), - [anon_sym_public] = ACTIONS(2894), - [anon_sym_private] = ACTIONS(2894), - [anon_sym_protected] = ACTIONS(2894), - [sym_auto] = ACTIONS(2894), - [anon_sym_typename] = ACTIONS(2894), - [anon_sym_template] = ACTIONS(2894), - [anon_sym_operator] = ACTIONS(2894), - [anon_sym_friend] = ACTIONS(2894), - [anon_sym_using] = ACTIONS(2894), - [anon_sym_static_assert] = ACTIONS(2894), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2894), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2894), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2894), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2894), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2894), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2894), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2894), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2894), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2894), - [anon_sym_MOZ_COLD] = ACTIONS(2894), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2894), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2894), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2894), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2894), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2894), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2894), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2894), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2894), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2894), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2894), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2894), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2894), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2894), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2894), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2894), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2894), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2894), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2894), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2894), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2894), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2894), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_NONNULL] = ACTIONS(2894), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2894), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2894), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2894), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2894), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2894), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_NORETURN] = ACTIONS(2894), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2894), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2894), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2894), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2894), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2894), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2894), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2894), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2894), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2894), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2894), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2894), - [anon_sym_MOZ_RAII] = ACTIONS(2894), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2894), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2894), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2894), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2894), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2894), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2894), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2894), - }, - [1151] = { - [sym_identifier] = ACTIONS(2812), - [aux_sym_preproc_def_token1] = ACTIONS(2812), - [aux_sym_preproc_if_token1] = ACTIONS(2812), - [aux_sym_preproc_if_token2] = ACTIONS(2812), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2812), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2812), - [sym_preproc_directive] = ACTIONS(2812), - [anon_sym_LPAREN2] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_typedef] = ACTIONS(2812), - [anon_sym_extern] = ACTIONS(2812), - [anon_sym___attribute__] = ACTIONS(2812), - [anon_sym_COLON_COLON] = ACTIONS(2814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2814), - [anon_sym___declspec] = ACTIONS(2812), - [anon_sym___based] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2812), - [anon_sym_static] = ACTIONS(2812), - [anon_sym_register] = ACTIONS(2812), - [anon_sym_inline] = ACTIONS(2812), - [anon_sym_thread_local] = ACTIONS(2812), - [anon_sym_const] = ACTIONS(2812), - [anon_sym_volatile] = ACTIONS(2812), - [anon_sym_restrict] = ACTIONS(2812), - [anon_sym__Atomic] = ACTIONS(2812), - [anon_sym_mutable] = ACTIONS(2812), - [anon_sym_constexpr] = ACTIONS(2812), - [anon_sym_signed] = ACTIONS(2812), - [anon_sym_unsigned] = ACTIONS(2812), - [anon_sym_long] = ACTIONS(2812), - [anon_sym_short] = ACTIONS(2812), - [sym_primitive_type] = ACTIONS(2812), - [anon_sym_enum] = ACTIONS(2812), - [anon_sym_class] = ACTIONS(2812), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_union] = ACTIONS(2812), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2812), - [anon_sym_virtual] = ACTIONS(2812), - [anon_sym_explicit] = ACTIONS(2812), - [anon_sym_public] = ACTIONS(2812), - [anon_sym_private] = ACTIONS(2812), - [anon_sym_protected] = ACTIONS(2812), - [sym_auto] = ACTIONS(2812), - [anon_sym_typename] = ACTIONS(2812), - [anon_sym_template] = ACTIONS(2812), - [anon_sym_operator] = ACTIONS(2812), - [anon_sym_friend] = ACTIONS(2812), - [anon_sym_using] = ACTIONS(2812), - [anon_sym_static_assert] = ACTIONS(2812), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2812), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2812), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2812), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2812), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2812), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2812), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2812), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2812), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2812), - [anon_sym_MOZ_COLD] = ACTIONS(2812), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2812), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2812), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2812), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2812), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2812), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2812), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2812), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2812), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2812), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2812), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2812), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2812), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2812), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2812), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2812), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2812), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2812), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2812), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2812), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2812), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2812), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_NONNULL] = ACTIONS(2812), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2812), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2812), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2812), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2812), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2812), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_NORETURN] = ACTIONS(2812), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2812), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2812), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2812), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2812), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2812), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2812), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2812), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2812), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2812), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2812), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2812), - [anon_sym_MOZ_RAII] = ACTIONS(2812), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2812), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2812), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2812), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2812), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2812), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2812), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2812), - }, - [1152] = { - [sym_identifier] = ACTIONS(2878), - [aux_sym_preproc_def_token1] = ACTIONS(2878), - [aux_sym_preproc_if_token1] = ACTIONS(2878), - [aux_sym_preproc_if_token2] = ACTIONS(2878), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2878), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2878), - [sym_preproc_directive] = ACTIONS(2878), - [anon_sym_LPAREN2] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2880), - [anon_sym_AMP_AMP] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_typedef] = ACTIONS(2878), - [anon_sym_extern] = ACTIONS(2878), - [anon_sym___attribute__] = ACTIONS(2878), - [anon_sym_COLON_COLON] = ACTIONS(2880), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2880), - [anon_sym___declspec] = ACTIONS(2878), - [anon_sym___based] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_static] = ACTIONS(2878), - [anon_sym_register] = ACTIONS(2878), - [anon_sym_inline] = ACTIONS(2878), - [anon_sym_thread_local] = ACTIONS(2878), - [anon_sym_const] = ACTIONS(2878), - [anon_sym_volatile] = ACTIONS(2878), - [anon_sym_restrict] = ACTIONS(2878), - [anon_sym__Atomic] = ACTIONS(2878), - [anon_sym_mutable] = ACTIONS(2878), - [anon_sym_constexpr] = ACTIONS(2878), - [anon_sym_signed] = ACTIONS(2878), - [anon_sym_unsigned] = ACTIONS(2878), - [anon_sym_long] = ACTIONS(2878), - [anon_sym_short] = ACTIONS(2878), - [sym_primitive_type] = ACTIONS(2878), - [anon_sym_enum] = ACTIONS(2878), - [anon_sym_class] = ACTIONS(2878), - [anon_sym_struct] = ACTIONS(2878), - [anon_sym_union] = ACTIONS(2878), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2878), - [anon_sym_virtual] = ACTIONS(2878), - [anon_sym_explicit] = ACTIONS(2878), - [anon_sym_public] = ACTIONS(2878), - [anon_sym_private] = ACTIONS(2878), - [anon_sym_protected] = ACTIONS(2878), - [sym_auto] = ACTIONS(2878), - [anon_sym_typename] = ACTIONS(2878), - [anon_sym_template] = ACTIONS(2878), - [anon_sym_operator] = ACTIONS(2878), - [anon_sym_friend] = ACTIONS(2878), - [anon_sym_using] = ACTIONS(2878), - [anon_sym_static_assert] = ACTIONS(2878), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2878), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2878), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2878), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2878), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2878), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2878), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2878), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2878), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2878), - [anon_sym_MOZ_COLD] = ACTIONS(2878), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2878), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2878), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2878), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2878), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2878), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2878), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2878), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2878), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2878), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2878), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2878), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2878), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2878), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2878), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2878), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2878), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2878), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2878), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2878), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2878), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2878), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_NONNULL] = ACTIONS(2878), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2878), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2878), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2878), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2878), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2878), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_NORETURN] = ACTIONS(2878), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2878), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2878), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2878), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2878), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2878), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2878), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2878), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2878), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2878), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2878), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2878), - [anon_sym_MOZ_RAII] = ACTIONS(2878), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2878), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2878), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2878), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2878), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2878), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2878), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2878), - }, - [1153] = { - [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_def_token1] = ACTIONS(1529), - [aux_sym_preproc_if_token1] = ACTIONS(1529), - [aux_sym_preproc_if_token2] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), - [sym_preproc_directive] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym___attribute__] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1531), - [anon_sym___declspec] = ACTIONS(1529), - [anon_sym___based] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [anon_sym_thread_local] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym__Atomic] = ACTIONS(1529), - [anon_sym_mutable] = ACTIONS(1529), - [anon_sym_constexpr] = ACTIONS(1529), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_class] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1529), - [anon_sym_virtual] = ACTIONS(1529), - [anon_sym_explicit] = ACTIONS(1529), - [anon_sym_public] = ACTIONS(1529), - [anon_sym_private] = ACTIONS(1529), - [anon_sym_protected] = ACTIONS(1529), - [sym_auto] = ACTIONS(1529), - [anon_sym_typename] = ACTIONS(1529), - [anon_sym_template] = ACTIONS(1529), - [anon_sym_operator] = ACTIONS(1529), - [anon_sym_friend] = ACTIONS(1529), - [anon_sym_using] = ACTIONS(1529), - [anon_sym_static_assert] = ACTIONS(1529), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1529), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1529), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1529), - [anon_sym_MOZ_COLD] = ACTIONS(1529), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1529), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1529), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1529), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1529), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1529), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1529), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1529), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1529), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1529), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1529), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1529), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1529), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL] = ACTIONS(1529), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1529), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1529), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN] = ACTIONS(1529), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1529), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1529), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1529), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1529), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1529), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1529), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1529), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1529), - [anon_sym_MOZ_RAII] = ACTIONS(1529), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1529), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1529), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1529), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1529), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1529), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1529), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1529), - }, - [1154] = { - [sym_identifier] = ACTIONS(2582), - [aux_sym_preproc_def_token1] = ACTIONS(2582), - [aux_sym_preproc_if_token1] = ACTIONS(2582), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2582), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2582), - [sym_preproc_directive] = ACTIONS(2582), - [anon_sym_LPAREN2] = ACTIONS(2584), - [anon_sym_TILDE] = ACTIONS(2584), - [anon_sym_STAR] = ACTIONS(2584), - [anon_sym_AMP_AMP] = ACTIONS(2584), - [anon_sym_AMP] = ACTIONS(2582), - [anon_sym_typedef] = ACTIONS(2582), - [anon_sym_extern] = ACTIONS(2582), - [anon_sym___attribute__] = ACTIONS(2582), - [anon_sym_COLON_COLON] = ACTIONS(2584), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2584), - [anon_sym___declspec] = ACTIONS(2582), - [anon_sym___based] = ACTIONS(2582), - [anon_sym_RBRACE] = ACTIONS(2584), - [anon_sym_LBRACK] = ACTIONS(2582), - [anon_sym_static] = ACTIONS(2582), - [anon_sym_register] = ACTIONS(2582), - [anon_sym_inline] = ACTIONS(2582), - [anon_sym_thread_local] = ACTIONS(2582), - [anon_sym_const] = ACTIONS(2582), - [anon_sym_volatile] = ACTIONS(2582), - [anon_sym_restrict] = ACTIONS(2582), - [anon_sym__Atomic] = ACTIONS(2582), - [anon_sym_mutable] = ACTIONS(2582), - [anon_sym_constexpr] = ACTIONS(2582), - [anon_sym_signed] = ACTIONS(2582), - [anon_sym_unsigned] = ACTIONS(2582), - [anon_sym_long] = ACTIONS(2582), - [anon_sym_short] = ACTIONS(2582), - [sym_primitive_type] = ACTIONS(2582), - [anon_sym_enum] = ACTIONS(2582), - [anon_sym_class] = ACTIONS(2582), - [anon_sym_struct] = ACTIONS(2582), - [anon_sym_union] = ACTIONS(2582), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_virtual] = ACTIONS(2582), - [anon_sym_explicit] = ACTIONS(2582), - [anon_sym_public] = ACTIONS(2582), - [anon_sym_private] = ACTIONS(2582), - [anon_sym_protected] = ACTIONS(2582), - [sym_auto] = ACTIONS(2582), - [anon_sym_typename] = ACTIONS(2582), - [anon_sym_template] = ACTIONS(2582), - [anon_sym_operator] = ACTIONS(2582), - [anon_sym_friend] = ACTIONS(2582), - [anon_sym_using] = ACTIONS(2582), - [anon_sym_static_assert] = ACTIONS(2582), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2582), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2582), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2582), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2582), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2582), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2582), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2582), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2582), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2582), - [anon_sym_MOZ_COLD] = ACTIONS(2582), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2582), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2582), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2582), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2582), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2582), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2582), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2582), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2582), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2582), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2582), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2582), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2582), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2582), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2582), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2582), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2582), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2582), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2582), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2582), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2582), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_NONNULL] = ACTIONS(2582), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2582), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2582), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2582), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2582), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2582), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_NORETURN] = ACTIONS(2582), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2582), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2582), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2582), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2582), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2582), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2582), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2582), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2582), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2582), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2582), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2582), - [anon_sym_MOZ_RAII] = ACTIONS(2582), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2582), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2582), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2582), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2582), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2582), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2582), - }, - [1155] = { - [sym_identifier] = ACTIONS(2582), - [aux_sym_preproc_def_token1] = ACTIONS(2582), - [aux_sym_preproc_if_token1] = ACTIONS(2582), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2582), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2582), - [sym_preproc_directive] = ACTIONS(2582), - [anon_sym_LPAREN2] = ACTIONS(2584), - [anon_sym_TILDE] = ACTIONS(2584), - [anon_sym_STAR] = ACTIONS(2584), - [anon_sym_AMP_AMP] = ACTIONS(2584), - [anon_sym_AMP] = ACTIONS(2582), - [anon_sym_typedef] = ACTIONS(2582), - [anon_sym_extern] = ACTIONS(2582), - [anon_sym___attribute__] = ACTIONS(2582), - [anon_sym_COLON_COLON] = ACTIONS(2584), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2584), - [anon_sym___declspec] = ACTIONS(2582), - [anon_sym___based] = ACTIONS(2582), - [anon_sym_RBRACE] = ACTIONS(2584), - [anon_sym_LBRACK] = ACTIONS(2582), - [anon_sym_static] = ACTIONS(2582), - [anon_sym_register] = ACTIONS(2582), - [anon_sym_inline] = ACTIONS(2582), - [anon_sym_thread_local] = ACTIONS(2582), - [anon_sym_const] = ACTIONS(2582), - [anon_sym_volatile] = ACTIONS(2582), - [anon_sym_restrict] = ACTIONS(2582), - [anon_sym__Atomic] = ACTIONS(2582), - [anon_sym_mutable] = ACTIONS(2582), - [anon_sym_constexpr] = ACTIONS(2582), - [anon_sym_signed] = ACTIONS(2582), - [anon_sym_unsigned] = ACTIONS(2582), - [anon_sym_long] = ACTIONS(2582), - [anon_sym_short] = ACTIONS(2582), - [sym_primitive_type] = ACTIONS(2582), - [anon_sym_enum] = ACTIONS(2582), - [anon_sym_class] = ACTIONS(2582), - [anon_sym_struct] = ACTIONS(2582), - [anon_sym_union] = ACTIONS(2582), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_virtual] = ACTIONS(2582), - [anon_sym_explicit] = ACTIONS(2582), - [anon_sym_public] = ACTIONS(2582), - [anon_sym_private] = ACTIONS(2582), - [anon_sym_protected] = ACTIONS(2582), - [sym_auto] = ACTIONS(2582), - [anon_sym_typename] = ACTIONS(2582), - [anon_sym_template] = ACTIONS(2582), - [anon_sym_operator] = ACTIONS(2582), - [anon_sym_friend] = ACTIONS(2582), - [anon_sym_using] = ACTIONS(2582), - [anon_sym_static_assert] = ACTIONS(2582), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2582), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2582), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2582), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2582), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2582), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2582), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2582), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2582), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2582), - [anon_sym_MOZ_COLD] = ACTIONS(2582), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2582), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2582), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2582), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2582), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2582), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2582), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2582), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2582), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2582), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2582), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2582), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2582), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2582), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2582), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2582), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2582), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2582), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2582), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2582), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2582), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2582), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_NONNULL] = ACTIONS(2582), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2582), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2582), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2582), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2582), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2582), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_NORETURN] = ACTIONS(2582), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2582), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2582), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2582), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2582), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2582), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2582), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2582), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2582), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2582), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2582), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2582), - [anon_sym_MOZ_RAII] = ACTIONS(2582), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2582), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2582), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2582), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2582), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2582), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2582), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2582), - }, - [1156] = { - [sym_identifier] = ACTIONS(2882), - [aux_sym_preproc_def_token1] = ACTIONS(2882), - [aux_sym_preproc_if_token1] = ACTIONS(2882), - [aux_sym_preproc_if_token2] = ACTIONS(2882), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2882), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2882), - [sym_preproc_directive] = ACTIONS(2882), - [anon_sym_LPAREN2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_typedef] = ACTIONS(2882), - [anon_sym_extern] = ACTIONS(2882), - [anon_sym___attribute__] = ACTIONS(2882), - [anon_sym_COLON_COLON] = ACTIONS(2884), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2884), - [anon_sym___declspec] = ACTIONS(2882), - [anon_sym___based] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_static] = ACTIONS(2882), - [anon_sym_register] = ACTIONS(2882), - [anon_sym_inline] = ACTIONS(2882), - [anon_sym_thread_local] = ACTIONS(2882), - [anon_sym_const] = ACTIONS(2882), - [anon_sym_volatile] = ACTIONS(2882), - [anon_sym_restrict] = ACTIONS(2882), - [anon_sym__Atomic] = ACTIONS(2882), - [anon_sym_mutable] = ACTIONS(2882), - [anon_sym_constexpr] = ACTIONS(2882), - [anon_sym_signed] = ACTIONS(2882), - [anon_sym_unsigned] = ACTIONS(2882), - [anon_sym_long] = ACTIONS(2882), - [anon_sym_short] = ACTIONS(2882), - [sym_primitive_type] = ACTIONS(2882), - [anon_sym_enum] = ACTIONS(2882), - [anon_sym_class] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2882), - [anon_sym_union] = ACTIONS(2882), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2882), - [anon_sym_virtual] = ACTIONS(2882), - [anon_sym_explicit] = ACTIONS(2882), - [anon_sym_public] = ACTIONS(2882), - [anon_sym_private] = ACTIONS(2882), - [anon_sym_protected] = ACTIONS(2882), - [sym_auto] = ACTIONS(2882), - [anon_sym_typename] = ACTIONS(2882), - [anon_sym_template] = ACTIONS(2882), - [anon_sym_operator] = ACTIONS(2882), - [anon_sym_friend] = ACTIONS(2882), - [anon_sym_using] = ACTIONS(2882), - [anon_sym_static_assert] = ACTIONS(2882), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2882), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2882), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2882), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2882), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2882), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2882), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2882), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2882), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2882), - [anon_sym_MOZ_COLD] = ACTIONS(2882), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2882), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2882), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2882), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2882), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2882), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2882), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2882), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2882), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2882), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2882), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2882), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2882), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2882), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2882), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2882), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2882), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2882), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2882), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2882), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2882), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2882), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_NONNULL] = ACTIONS(2882), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2882), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2882), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2882), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2882), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2882), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_NORETURN] = ACTIONS(2882), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2882), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2882), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2882), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2882), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2882), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2882), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2882), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2882), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2882), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2882), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2882), - [anon_sym_MOZ_RAII] = ACTIONS(2882), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2882), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2882), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2882), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2882), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2882), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2882), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2882), - }, - [1157] = { - [sym_identifier] = ACTIONS(1883), - [aux_sym_preproc_def_token1] = ACTIONS(1883), - [aux_sym_preproc_if_token1] = ACTIONS(1883), - [aux_sym_preproc_if_token2] = ACTIONS(1883), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1883), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1883), - [sym_preproc_directive] = ACTIONS(1883), - [anon_sym_LPAREN2] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1883), - [anon_sym_typedef] = ACTIONS(1883), - [anon_sym_extern] = ACTIONS(1883), - [anon_sym___attribute__] = ACTIONS(1883), - [anon_sym_COLON_COLON] = ACTIONS(1885), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1885), - [anon_sym___declspec] = ACTIONS(1883), - [anon_sym___based] = ACTIONS(1883), - [anon_sym_LBRACK] = ACTIONS(1883), - [anon_sym_static] = ACTIONS(1883), - [anon_sym_register] = ACTIONS(1883), - [anon_sym_inline] = ACTIONS(1883), - [anon_sym_thread_local] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(1883), - [anon_sym_volatile] = ACTIONS(1883), - [anon_sym_restrict] = ACTIONS(1883), - [anon_sym__Atomic] = ACTIONS(1883), - [anon_sym_mutable] = ACTIONS(1883), - [anon_sym_constexpr] = ACTIONS(1883), - [anon_sym_signed] = ACTIONS(1883), - [anon_sym_unsigned] = ACTIONS(1883), - [anon_sym_long] = ACTIONS(1883), - [anon_sym_short] = ACTIONS(1883), - [sym_primitive_type] = ACTIONS(1883), - [anon_sym_enum] = ACTIONS(1883), - [anon_sym_class] = ACTIONS(1883), - [anon_sym_struct] = ACTIONS(1883), - [anon_sym_union] = ACTIONS(1883), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1883), - [anon_sym_virtual] = ACTIONS(1883), - [anon_sym_explicit] = ACTIONS(1883), - [anon_sym_public] = ACTIONS(1883), - [anon_sym_private] = ACTIONS(1883), - [anon_sym_protected] = ACTIONS(1883), - [sym_auto] = ACTIONS(1883), - [anon_sym_typename] = ACTIONS(1883), - [anon_sym_template] = ACTIONS(1883), - [anon_sym_operator] = ACTIONS(1883), - [anon_sym_friend] = ACTIONS(1883), - [anon_sym_using] = ACTIONS(1883), - [anon_sym_static_assert] = ACTIONS(1883), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1883), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1883), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1883), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1883), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1883), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1883), - [anon_sym_MOZ_COLD] = ACTIONS(1883), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1883), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1883), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1883), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1883), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1883), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1883), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1883), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1883), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1883), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1883), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1883), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1883), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1883), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1883), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1883), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1883), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_NONNULL] = ACTIONS(1883), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1883), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1883), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1883), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1883), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_NORETURN] = ACTIONS(1883), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1883), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1883), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1883), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1883), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1883), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1883), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1883), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1883), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1883), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1883), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1883), - [anon_sym_MOZ_RAII] = ACTIONS(1883), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1883), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1883), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1883), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1883), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1883), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1883), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1883), - }, - [1158] = { - [sym_identifier] = ACTIONS(2870), - [aux_sym_preproc_def_token1] = ACTIONS(2870), - [aux_sym_preproc_if_token1] = ACTIONS(2870), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2870), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2870), - [sym_preproc_directive] = ACTIONS(2870), - [anon_sym_LPAREN2] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2872), - [anon_sym_STAR] = ACTIONS(2872), - [anon_sym_AMP_AMP] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_typedef] = ACTIONS(2870), - [anon_sym_extern] = ACTIONS(2870), - [anon_sym___attribute__] = ACTIONS(2870), - [anon_sym_COLON_COLON] = ACTIONS(2872), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2872), - [anon_sym___declspec] = ACTIONS(2870), - [anon_sym___based] = ACTIONS(2870), - [anon_sym_RBRACE] = ACTIONS(2872), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_static] = ACTIONS(2870), - [anon_sym_register] = ACTIONS(2870), - [anon_sym_inline] = ACTIONS(2870), - [anon_sym_thread_local] = ACTIONS(2870), - [anon_sym_const] = ACTIONS(2870), - [anon_sym_volatile] = ACTIONS(2870), - [anon_sym_restrict] = ACTIONS(2870), - [anon_sym__Atomic] = ACTIONS(2870), - [anon_sym_mutable] = ACTIONS(2870), - [anon_sym_constexpr] = ACTIONS(2870), - [anon_sym_signed] = ACTIONS(2870), - [anon_sym_unsigned] = ACTIONS(2870), - [anon_sym_long] = ACTIONS(2870), - [anon_sym_short] = ACTIONS(2870), - [sym_primitive_type] = ACTIONS(2870), - [anon_sym_enum] = ACTIONS(2870), - [anon_sym_class] = ACTIONS(2870), - [anon_sym_struct] = ACTIONS(2870), - [anon_sym_union] = ACTIONS(2870), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2870), - [anon_sym_virtual] = ACTIONS(2870), - [anon_sym_explicit] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2870), - [anon_sym_private] = ACTIONS(2870), - [anon_sym_protected] = ACTIONS(2870), - [sym_auto] = ACTIONS(2870), - [anon_sym_typename] = ACTIONS(2870), - [anon_sym_template] = ACTIONS(2870), - [anon_sym_operator] = ACTIONS(2870), - [anon_sym_friend] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2870), - [anon_sym_static_assert] = ACTIONS(2870), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2870), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2870), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2870), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2870), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2870), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2870), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2870), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2870), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2870), - [anon_sym_MOZ_COLD] = ACTIONS(2870), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2870), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2870), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2870), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2870), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2870), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2870), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2870), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2870), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2870), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2870), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2870), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2870), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2870), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2870), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2870), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2870), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2870), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2870), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2870), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2870), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2870), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_NONNULL] = ACTIONS(2870), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2870), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2870), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2870), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2870), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2870), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_NORETURN] = ACTIONS(2870), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2870), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2870), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2870), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2870), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2870), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2870), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2870), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2870), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2870), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2870), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2870), - [anon_sym_MOZ_RAII] = ACTIONS(2870), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2870), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2870), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2870), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2870), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2870), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2870), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2870), - }, - [1159] = { - [sym_identifier] = ACTIONS(2874), - [aux_sym_preproc_def_token1] = ACTIONS(2874), - [aux_sym_preproc_if_token1] = ACTIONS(2874), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2874), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2874), - [sym_preproc_directive] = ACTIONS(2874), - [anon_sym_LPAREN2] = ACTIONS(2876), - [anon_sym_TILDE] = ACTIONS(2876), - [anon_sym_STAR] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_typedef] = ACTIONS(2874), - [anon_sym_extern] = ACTIONS(2874), - [anon_sym___attribute__] = ACTIONS(2874), - [anon_sym_COLON_COLON] = ACTIONS(2876), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2876), - [anon_sym___declspec] = ACTIONS(2874), - [anon_sym___based] = ACTIONS(2874), - [anon_sym_RBRACE] = ACTIONS(2876), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_static] = ACTIONS(2874), - [anon_sym_register] = ACTIONS(2874), - [anon_sym_inline] = ACTIONS(2874), - [anon_sym_thread_local] = ACTIONS(2874), - [anon_sym_const] = ACTIONS(2874), - [anon_sym_volatile] = ACTIONS(2874), - [anon_sym_restrict] = ACTIONS(2874), - [anon_sym__Atomic] = ACTIONS(2874), - [anon_sym_mutable] = ACTIONS(2874), - [anon_sym_constexpr] = ACTIONS(2874), - [anon_sym_signed] = ACTIONS(2874), - [anon_sym_unsigned] = ACTIONS(2874), - [anon_sym_long] = ACTIONS(2874), - [anon_sym_short] = ACTIONS(2874), - [sym_primitive_type] = ACTIONS(2874), - [anon_sym_enum] = ACTIONS(2874), - [anon_sym_class] = ACTIONS(2874), - [anon_sym_struct] = ACTIONS(2874), - [anon_sym_union] = ACTIONS(2874), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2874), - [anon_sym_virtual] = ACTIONS(2874), - [anon_sym_explicit] = ACTIONS(2874), - [anon_sym_public] = ACTIONS(2874), - [anon_sym_private] = ACTIONS(2874), - [anon_sym_protected] = ACTIONS(2874), - [sym_auto] = ACTIONS(2874), - [anon_sym_typename] = ACTIONS(2874), - [anon_sym_template] = ACTIONS(2874), - [anon_sym_operator] = ACTIONS(2874), - [anon_sym_friend] = ACTIONS(2874), - [anon_sym_using] = ACTIONS(2874), - [anon_sym_static_assert] = ACTIONS(2874), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2874), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2874), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2874), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2874), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2874), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2874), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2874), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2874), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2874), - [anon_sym_MOZ_COLD] = ACTIONS(2874), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2874), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2874), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2874), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2874), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2874), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2874), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2874), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2874), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2874), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2874), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2874), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2874), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2874), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2874), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2874), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2874), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2874), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2874), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2874), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2874), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2874), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_NONNULL] = ACTIONS(2874), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2874), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2874), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2874), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2874), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2874), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_NORETURN] = ACTIONS(2874), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2874), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2874), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2874), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2874), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2874), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2874), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2874), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2874), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2874), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2874), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2874), - [anon_sym_MOZ_RAII] = ACTIONS(2874), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2874), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2874), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2874), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2874), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2874), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2874), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2874), - }, - [1160] = { - [sym_identifier] = ACTIONS(1569), - [aux_sym_preproc_def_token1] = ACTIONS(1569), - [aux_sym_preproc_if_token1] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1569), - [sym_preproc_directive] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP_AMP] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_typedef] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym___attribute__] = ACTIONS(1569), - [anon_sym_COLON_COLON] = ACTIONS(1571), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1571), - [anon_sym___declspec] = ACTIONS(1569), - [anon_sym___based] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1569), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_inline] = ACTIONS(1569), - [anon_sym_thread_local] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [anon_sym_volatile] = ACTIONS(1569), - [anon_sym_restrict] = ACTIONS(1569), - [anon_sym__Atomic] = ACTIONS(1569), - [anon_sym_mutable] = ACTIONS(1569), - [anon_sym_constexpr] = ACTIONS(1569), - [anon_sym_signed] = ACTIONS(1569), - [anon_sym_unsigned] = ACTIONS(1569), - [anon_sym_long] = ACTIONS(1569), - [anon_sym_short] = ACTIONS(1569), - [sym_primitive_type] = ACTIONS(1569), - [anon_sym_enum] = ACTIONS(1569), - [anon_sym_class] = ACTIONS(1569), - [anon_sym_struct] = ACTIONS(1569), - [anon_sym_union] = ACTIONS(1569), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1569), - [anon_sym_virtual] = ACTIONS(1569), - [anon_sym_explicit] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [sym_auto] = ACTIONS(1569), - [anon_sym_typename] = ACTIONS(1569), - [anon_sym_template] = ACTIONS(1569), - [anon_sym_operator] = ACTIONS(1569), - [anon_sym_friend] = ACTIONS(1569), - [anon_sym_using] = ACTIONS(1569), - [anon_sym_static_assert] = ACTIONS(1569), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1569), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1569), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1569), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1569), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1569), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1569), - [anon_sym_MOZ_COLD] = ACTIONS(1569), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1569), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1569), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1569), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1569), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1569), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1569), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1569), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1569), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1569), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1569), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1569), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1569), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1569), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1569), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1569), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1569), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_NONNULL] = ACTIONS(1569), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1569), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1569), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1569), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1569), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_NORETURN] = ACTIONS(1569), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1569), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1569), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1569), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1569), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1569), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1569), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1569), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1569), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1569), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1569), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1569), - [anon_sym_MOZ_RAII] = ACTIONS(1569), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1569), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1569), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1569), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1569), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1569), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1569), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1569), - }, - [1161] = { - [sym_identifier] = ACTIONS(1739), - [aux_sym_preproc_def_token1] = ACTIONS(1739), - [aux_sym_preproc_if_token1] = ACTIONS(1739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1739), - [sym_preproc_directive] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_STAR] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_typedef] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym___attribute__] = ACTIONS(1739), - [anon_sym_COLON_COLON] = ACTIONS(1741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1741), - [anon_sym___declspec] = ACTIONS(1739), - [anon_sym___based] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_static] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_inline] = ACTIONS(1739), - [anon_sym_thread_local] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [anon_sym_volatile] = ACTIONS(1739), - [anon_sym_restrict] = ACTIONS(1739), - [anon_sym__Atomic] = ACTIONS(1739), - [anon_sym_mutable] = ACTIONS(1739), - [anon_sym_constexpr] = ACTIONS(1739), - [anon_sym_signed] = ACTIONS(1739), - [anon_sym_unsigned] = ACTIONS(1739), - [anon_sym_long] = ACTIONS(1739), - [anon_sym_short] = ACTIONS(1739), - [sym_primitive_type] = ACTIONS(1739), - [anon_sym_enum] = ACTIONS(1739), - [anon_sym_class] = ACTIONS(1739), - [anon_sym_struct] = ACTIONS(1739), - [anon_sym_union] = ACTIONS(1739), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1739), - [anon_sym_virtual] = ACTIONS(1739), - [anon_sym_explicit] = ACTIONS(1739), - [anon_sym_public] = ACTIONS(1739), - [anon_sym_private] = ACTIONS(1739), - [anon_sym_protected] = ACTIONS(1739), - [sym_auto] = ACTIONS(1739), - [anon_sym_typename] = ACTIONS(1739), - [anon_sym_template] = ACTIONS(1739), - [anon_sym_operator] = ACTIONS(1739), - [anon_sym_friend] = ACTIONS(1739), - [anon_sym_using] = ACTIONS(1739), - [anon_sym_static_assert] = ACTIONS(1739), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1739), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1739), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1739), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1739), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1739), - [anon_sym_MOZ_COLD] = ACTIONS(1739), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1739), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1739), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1739), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1739), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1739), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1739), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1739), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1739), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1739), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1739), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1739), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1739), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1739), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_NONNULL] = ACTIONS(1739), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1739), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1739), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1739), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1739), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1739), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1739), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1739), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1739), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1739), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1739), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1739), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1739), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1739), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1739), - [anon_sym_MOZ_RAII] = ACTIONS(1739), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1739), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1739), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1739), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1739), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1739), - }, - [1162] = { - [sym_identifier] = ACTIONS(2898), - [aux_sym_preproc_def_token1] = ACTIONS(2898), - [aux_sym_preproc_if_token1] = ACTIONS(2898), - [aux_sym_preproc_if_token2] = ACTIONS(2898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2898), - [sym_preproc_directive] = ACTIONS(2898), - [anon_sym_LPAREN2] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_typedef] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(2898), - [anon_sym___attribute__] = ACTIONS(2898), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2900), - [anon_sym___declspec] = ACTIONS(2898), - [anon_sym___based] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(2898), - [anon_sym_register] = ACTIONS(2898), - [anon_sym_inline] = ACTIONS(2898), - [anon_sym_thread_local] = ACTIONS(2898), - [anon_sym_const] = ACTIONS(2898), - [anon_sym_volatile] = ACTIONS(2898), - [anon_sym_restrict] = ACTIONS(2898), - [anon_sym__Atomic] = ACTIONS(2898), - [anon_sym_mutable] = ACTIONS(2898), - [anon_sym_constexpr] = ACTIONS(2898), - [anon_sym_signed] = ACTIONS(2898), - [anon_sym_unsigned] = ACTIONS(2898), - [anon_sym_long] = ACTIONS(2898), - [anon_sym_short] = ACTIONS(2898), - [sym_primitive_type] = ACTIONS(2898), - [anon_sym_enum] = ACTIONS(2898), - [anon_sym_class] = ACTIONS(2898), - [anon_sym_struct] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2898), - [anon_sym_virtual] = ACTIONS(2898), - [anon_sym_explicit] = ACTIONS(2898), - [anon_sym_public] = ACTIONS(2898), - [anon_sym_private] = ACTIONS(2898), - [anon_sym_protected] = ACTIONS(2898), - [sym_auto] = ACTIONS(2898), - [anon_sym_typename] = ACTIONS(2898), - [anon_sym_template] = ACTIONS(2898), - [anon_sym_operator] = ACTIONS(2898), - [anon_sym_friend] = ACTIONS(2898), - [anon_sym_using] = ACTIONS(2898), - [anon_sym_static_assert] = ACTIONS(2898), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2898), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2898), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2898), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2898), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2898), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2898), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2898), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2898), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2898), - [anon_sym_MOZ_COLD] = ACTIONS(2898), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2898), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2898), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2898), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2898), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2898), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2898), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2898), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2898), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2898), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2898), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2898), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2898), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2898), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2898), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2898), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2898), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2898), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2898), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2898), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2898), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_NONNULL] = ACTIONS(2898), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2898), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2898), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2898), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2898), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2898), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_NORETURN] = ACTIONS(2898), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2898), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2898), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2898), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2898), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2898), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2898), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2898), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2898), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2898), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2898), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2898), - [anon_sym_MOZ_RAII] = ACTIONS(2898), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2898), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2898), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2898), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2898), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2898), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2898), - }, - [1163] = { - [sym_identifier] = ACTIONS(2898), - [aux_sym_preproc_def_token1] = ACTIONS(2898), - [aux_sym_preproc_if_token1] = ACTIONS(2898), - [aux_sym_preproc_if_token2] = ACTIONS(2898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2898), - [sym_preproc_directive] = ACTIONS(2898), - [anon_sym_LPAREN2] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_typedef] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(2898), - [anon_sym___attribute__] = ACTIONS(2898), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2900), - [anon_sym___declspec] = ACTIONS(2898), - [anon_sym___based] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(2898), - [anon_sym_register] = ACTIONS(2898), - [anon_sym_inline] = ACTIONS(2898), - [anon_sym_thread_local] = ACTIONS(2898), - [anon_sym_const] = ACTIONS(2898), - [anon_sym_volatile] = ACTIONS(2898), - [anon_sym_restrict] = ACTIONS(2898), - [anon_sym__Atomic] = ACTIONS(2898), - [anon_sym_mutable] = ACTIONS(2898), - [anon_sym_constexpr] = ACTIONS(2898), - [anon_sym_signed] = ACTIONS(2898), - [anon_sym_unsigned] = ACTIONS(2898), - [anon_sym_long] = ACTIONS(2898), - [anon_sym_short] = ACTIONS(2898), - [sym_primitive_type] = ACTIONS(2898), - [anon_sym_enum] = ACTIONS(2898), - [anon_sym_class] = ACTIONS(2898), - [anon_sym_struct] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2898), - [anon_sym_virtual] = ACTIONS(2898), - [anon_sym_explicit] = ACTIONS(2898), - [anon_sym_public] = ACTIONS(2898), - [anon_sym_private] = ACTIONS(2898), - [anon_sym_protected] = ACTIONS(2898), - [sym_auto] = ACTIONS(2898), - [anon_sym_typename] = ACTIONS(2898), - [anon_sym_template] = ACTIONS(2898), - [anon_sym_operator] = ACTIONS(2898), - [anon_sym_friend] = ACTIONS(2898), - [anon_sym_using] = ACTIONS(2898), - [anon_sym_static_assert] = ACTIONS(2898), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2898), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2898), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2898), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2898), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2898), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2898), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2898), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2898), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2898), - [anon_sym_MOZ_COLD] = ACTIONS(2898), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2898), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2898), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2898), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2898), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2898), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2898), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2898), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2898), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2898), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2898), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2898), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2898), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2898), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2898), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2898), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2898), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2898), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2898), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2898), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2898), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2898), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_NONNULL] = ACTIONS(2898), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2898), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2898), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2898), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2898), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2898), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_NORETURN] = ACTIONS(2898), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2898), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2898), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2898), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2898), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2898), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2898), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2898), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2898), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2898), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2898), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2898), - [anon_sym_MOZ_RAII] = ACTIONS(2898), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2898), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2898), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2898), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2898), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2898), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2898), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2898), - }, - [1164] = { - [sym_identifier] = ACTIONS(2902), - [aux_sym_preproc_def_token1] = ACTIONS(2902), - [aux_sym_preproc_if_token1] = ACTIONS(2902), - [aux_sym_preproc_if_token2] = ACTIONS(2902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2902), - [sym_preproc_directive] = ACTIONS(2902), - [anon_sym_LPAREN2] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_STAR] = ACTIONS(2904), - [anon_sym_AMP_AMP] = ACTIONS(2904), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_typedef] = ACTIONS(2902), - [anon_sym_extern] = ACTIONS(2902), - [anon_sym___attribute__] = ACTIONS(2902), - [anon_sym_COLON_COLON] = ACTIONS(2904), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2904), - [anon_sym___declspec] = ACTIONS(2902), - [anon_sym___based] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2902), - [anon_sym_static] = ACTIONS(2902), - [anon_sym_register] = ACTIONS(2902), - [anon_sym_inline] = ACTIONS(2902), - [anon_sym_thread_local] = ACTIONS(2902), - [anon_sym_const] = ACTIONS(2902), - [anon_sym_volatile] = ACTIONS(2902), - [anon_sym_restrict] = ACTIONS(2902), - [anon_sym__Atomic] = ACTIONS(2902), - [anon_sym_mutable] = ACTIONS(2902), - [anon_sym_constexpr] = ACTIONS(2902), - [anon_sym_signed] = ACTIONS(2902), - [anon_sym_unsigned] = ACTIONS(2902), - [anon_sym_long] = ACTIONS(2902), - [anon_sym_short] = ACTIONS(2902), - [sym_primitive_type] = ACTIONS(2902), - [anon_sym_enum] = ACTIONS(2902), - [anon_sym_class] = ACTIONS(2902), - [anon_sym_struct] = ACTIONS(2902), - [anon_sym_union] = ACTIONS(2902), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2902), - [anon_sym_virtual] = ACTIONS(2902), - [anon_sym_explicit] = ACTIONS(2902), - [anon_sym_public] = ACTIONS(2902), - [anon_sym_private] = ACTIONS(2902), - [anon_sym_protected] = ACTIONS(2902), - [sym_auto] = ACTIONS(2902), - [anon_sym_typename] = ACTIONS(2902), - [anon_sym_template] = ACTIONS(2902), - [anon_sym_operator] = ACTIONS(2902), - [anon_sym_friend] = ACTIONS(2902), - [anon_sym_using] = ACTIONS(2902), - [anon_sym_static_assert] = ACTIONS(2902), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2902), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2902), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2902), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2902), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2902), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2902), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2902), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2902), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2902), - [anon_sym_MOZ_COLD] = ACTIONS(2902), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2902), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2902), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2902), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2902), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2902), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2902), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2902), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2902), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2902), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2902), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2902), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2902), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2902), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2902), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2902), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2902), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2902), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2902), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2902), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2902), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2902), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_NONNULL] = ACTIONS(2902), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2902), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2902), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2902), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2902), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2902), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_NORETURN] = ACTIONS(2902), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2902), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2902), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2902), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2902), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2902), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2902), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2902), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2902), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2902), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2902), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2902), - [anon_sym_MOZ_RAII] = ACTIONS(2902), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2902), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2902), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2902), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2902), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2902), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2902), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2902), - }, - [1165] = { - [sym_identifier] = ACTIONS(2906), - [aux_sym_preproc_def_token1] = ACTIONS(2906), - [aux_sym_preproc_if_token1] = ACTIONS(2906), - [aux_sym_preproc_if_token2] = ACTIONS(2906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2906), - [sym_preproc_directive] = ACTIONS(2906), - [anon_sym_LPAREN2] = ACTIONS(2908), - [anon_sym_TILDE] = ACTIONS(2908), - [anon_sym_STAR] = ACTIONS(2908), - [anon_sym_AMP_AMP] = ACTIONS(2908), - [anon_sym_AMP] = ACTIONS(2906), - [anon_sym_typedef] = ACTIONS(2906), - [anon_sym_extern] = ACTIONS(2906), - [anon_sym___attribute__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2908), - [anon_sym___declspec] = ACTIONS(2906), - [anon_sym___based] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_static] = ACTIONS(2906), - [anon_sym_register] = ACTIONS(2906), - [anon_sym_inline] = ACTIONS(2906), - [anon_sym_thread_local] = ACTIONS(2906), - [anon_sym_const] = ACTIONS(2906), - [anon_sym_volatile] = ACTIONS(2906), - [anon_sym_restrict] = ACTIONS(2906), - [anon_sym__Atomic] = ACTIONS(2906), - [anon_sym_mutable] = ACTIONS(2906), - [anon_sym_constexpr] = ACTIONS(2906), - [anon_sym_signed] = ACTIONS(2906), - [anon_sym_unsigned] = ACTIONS(2906), - [anon_sym_long] = ACTIONS(2906), - [anon_sym_short] = ACTIONS(2906), - [sym_primitive_type] = ACTIONS(2906), - [anon_sym_enum] = ACTIONS(2906), - [anon_sym_class] = ACTIONS(2906), - [anon_sym_struct] = ACTIONS(2906), - [anon_sym_union] = ACTIONS(2906), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2906), - [anon_sym_virtual] = ACTIONS(2906), - [anon_sym_explicit] = ACTIONS(2906), - [anon_sym_public] = ACTIONS(2906), - [anon_sym_private] = ACTIONS(2906), - [anon_sym_protected] = ACTIONS(2906), - [sym_auto] = ACTIONS(2906), - [anon_sym_typename] = ACTIONS(2906), - [anon_sym_template] = ACTIONS(2906), - [anon_sym_operator] = ACTIONS(2906), - [anon_sym_friend] = ACTIONS(2906), - [anon_sym_using] = ACTIONS(2906), - [anon_sym_static_assert] = ACTIONS(2906), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2906), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2906), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2906), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2906), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2906), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2906), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2906), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2906), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2906), - [anon_sym_MOZ_COLD] = ACTIONS(2906), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2906), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2906), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2906), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2906), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2906), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2906), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2906), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2906), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2906), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2906), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2906), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2906), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2906), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2906), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2906), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2906), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2906), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2906), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2906), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2906), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2906), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_NONNULL] = ACTIONS(2906), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2906), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2906), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2906), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2906), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2906), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_NORETURN] = ACTIONS(2906), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2906), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2906), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2906), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2906), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2906), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2906), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2906), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2906), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2906), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2906), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2906), - [anon_sym_MOZ_RAII] = ACTIONS(2906), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2906), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2906), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2906), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2906), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2906), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2906), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2906), - }, - [1166] = { - [sym_identifier] = ACTIONS(1667), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1667), - [sym_preproc_directive] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_typedef] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym___attribute__] = ACTIONS(1667), - [anon_sym_COLON_COLON] = ACTIONS(1669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1669), - [anon_sym___declspec] = ACTIONS(1667), - [anon_sym___based] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_inline] = ACTIONS(1667), - [anon_sym_thread_local] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [anon_sym_volatile] = ACTIONS(1667), - [anon_sym_restrict] = ACTIONS(1667), - [anon_sym__Atomic] = ACTIONS(1667), - [anon_sym_mutable] = ACTIONS(1667), - [anon_sym_constexpr] = ACTIONS(1667), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [sym_primitive_type] = ACTIONS(1667), - [anon_sym_enum] = ACTIONS(1667), - [anon_sym_class] = ACTIONS(1667), - [anon_sym_struct] = ACTIONS(1667), - [anon_sym_union] = ACTIONS(1667), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1667), - [anon_sym_virtual] = ACTIONS(1667), - [anon_sym_explicit] = ACTIONS(1667), - [anon_sym_public] = ACTIONS(1667), - [anon_sym_private] = ACTIONS(1667), - [anon_sym_protected] = ACTIONS(1667), - [sym_auto] = ACTIONS(1667), - [anon_sym_typename] = ACTIONS(1667), - [anon_sym_template] = ACTIONS(1667), - [anon_sym_operator] = ACTIONS(1667), - [anon_sym_friend] = ACTIONS(1667), - [anon_sym_using] = ACTIONS(1667), - [anon_sym_static_assert] = ACTIONS(1667), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1667), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1667), - [anon_sym_MOZ_COLD] = ACTIONS(1667), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1667), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1667), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1667), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1667), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1667), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1667), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1667), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1667), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1667), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1667), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1667), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1667), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_RAII] = ACTIONS(1667), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1667), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1667), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1667), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1667), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1667), - }, - [1167] = { - [sym_identifier] = ACTIONS(2910), - [aux_sym_preproc_def_token1] = ACTIONS(2910), - [aux_sym_preproc_if_token1] = ACTIONS(2910), - [aux_sym_preproc_if_token2] = ACTIONS(2910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2910), - [sym_preproc_directive] = ACTIONS(2910), - [anon_sym_LPAREN2] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_typedef] = ACTIONS(2910), - [anon_sym_extern] = ACTIONS(2910), - [anon_sym___attribute__] = ACTIONS(2910), - [anon_sym_COLON_COLON] = ACTIONS(2912), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2912), - [anon_sym___declspec] = ACTIONS(2910), - [anon_sym___based] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_static] = ACTIONS(2910), - [anon_sym_register] = ACTIONS(2910), - [anon_sym_inline] = ACTIONS(2910), - [anon_sym_thread_local] = ACTIONS(2910), - [anon_sym_const] = ACTIONS(2910), - [anon_sym_volatile] = ACTIONS(2910), - [anon_sym_restrict] = ACTIONS(2910), - [anon_sym__Atomic] = ACTIONS(2910), - [anon_sym_mutable] = ACTIONS(2910), - [anon_sym_constexpr] = ACTIONS(2910), - [anon_sym_signed] = ACTIONS(2910), - [anon_sym_unsigned] = ACTIONS(2910), - [anon_sym_long] = ACTIONS(2910), - [anon_sym_short] = ACTIONS(2910), - [sym_primitive_type] = ACTIONS(2910), - [anon_sym_enum] = ACTIONS(2910), - [anon_sym_class] = ACTIONS(2910), - [anon_sym_struct] = ACTIONS(2910), - [anon_sym_union] = ACTIONS(2910), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2910), - [anon_sym_virtual] = ACTIONS(2910), - [anon_sym_explicit] = ACTIONS(2910), - [anon_sym_public] = ACTIONS(2910), - [anon_sym_private] = ACTIONS(2910), - [anon_sym_protected] = ACTIONS(2910), - [sym_auto] = ACTIONS(2910), - [anon_sym_typename] = ACTIONS(2910), - [anon_sym_template] = ACTIONS(2910), - [anon_sym_operator] = ACTIONS(2910), - [anon_sym_friend] = ACTIONS(2910), - [anon_sym_using] = ACTIONS(2910), - [anon_sym_static_assert] = ACTIONS(2910), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2910), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2910), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2910), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2910), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2910), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2910), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2910), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2910), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2910), - [anon_sym_MOZ_COLD] = ACTIONS(2910), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2910), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2910), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2910), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2910), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2910), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2910), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2910), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2910), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2910), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2910), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2910), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2910), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2910), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2910), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2910), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2910), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2910), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2910), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2910), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2910), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2910), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_NONNULL] = ACTIONS(2910), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2910), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2910), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2910), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2910), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2910), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_NORETURN] = ACTIONS(2910), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2910), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2910), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2910), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2910), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2910), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2910), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2910), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2910), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2910), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2910), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2910), - [anon_sym_MOZ_RAII] = ACTIONS(2910), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2910), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2910), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2910), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2910), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2910), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2910), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2910), - }, - [1168] = { - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3156), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [1169] = { - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3146), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [1170] = { - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3167), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [1171] = { - [sym_identifier] = ACTIONS(1727), - [aux_sym_preproc_def_token1] = ACTIONS(1727), - [aux_sym_preproc_if_token1] = ACTIONS(1727), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1727), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1727), - [sym_preproc_directive] = ACTIONS(1727), - [anon_sym_LPAREN2] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1729), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_typedef] = ACTIONS(1727), - [anon_sym_extern] = ACTIONS(1727), - [anon_sym___attribute__] = ACTIONS(1727), - [anon_sym_COLON_COLON] = ACTIONS(1729), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), - [anon_sym___declspec] = ACTIONS(1727), - [anon_sym___based] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_static] = ACTIONS(1727), - [anon_sym_register] = ACTIONS(1727), - [anon_sym_inline] = ACTIONS(1727), - [anon_sym_thread_local] = ACTIONS(1727), - [anon_sym_const] = ACTIONS(1727), - [anon_sym_volatile] = ACTIONS(1727), - [anon_sym_restrict] = ACTIONS(1727), - [anon_sym__Atomic] = ACTIONS(1727), - [anon_sym_mutable] = ACTIONS(1727), - [anon_sym_constexpr] = ACTIONS(1727), - [anon_sym_signed] = ACTIONS(1727), - [anon_sym_unsigned] = ACTIONS(1727), - [anon_sym_long] = ACTIONS(1727), - [anon_sym_short] = ACTIONS(1727), - [sym_primitive_type] = ACTIONS(1727), - [anon_sym_enum] = ACTIONS(1727), - [anon_sym_class] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(1727), - [anon_sym_union] = ACTIONS(1727), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1727), - [anon_sym_virtual] = ACTIONS(1727), - [anon_sym_explicit] = ACTIONS(1727), - [anon_sym_public] = ACTIONS(1727), - [anon_sym_private] = ACTIONS(1727), - [anon_sym_protected] = ACTIONS(1727), - [sym_auto] = ACTIONS(1727), - [anon_sym_typename] = ACTIONS(1727), - [anon_sym_template] = ACTIONS(1727), - [anon_sym_operator] = ACTIONS(1727), - [anon_sym_friend] = ACTIONS(1727), - [anon_sym_using] = ACTIONS(1727), - [anon_sym_static_assert] = ACTIONS(1727), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1727), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1727), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1727), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1727), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1727), - [anon_sym_MOZ_COLD] = ACTIONS(1727), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1727), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1727), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1727), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1727), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1727), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1727), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1727), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1727), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1727), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1727), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1727), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1727), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1727), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_NONNULL] = ACTIONS(1727), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1727), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1727), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1727), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1727), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1727), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1727), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1727), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1727), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1727), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1727), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1727), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1727), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1727), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1727), - [anon_sym_MOZ_RAII] = ACTIONS(1727), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1727), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1727), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1727), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1727), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1727), - }, - [1172] = { - [sym_identifier] = ACTIONS(1735), - [aux_sym_preproc_def_token1] = ACTIONS(1735), - [aux_sym_preproc_if_token1] = ACTIONS(1735), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1735), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1735), - [sym_preproc_directive] = ACTIONS(1735), - [anon_sym_LPAREN2] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_typedef] = ACTIONS(1735), - [anon_sym_extern] = ACTIONS(1735), - [anon_sym___attribute__] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1737), - [anon_sym___declspec] = ACTIONS(1735), - [anon_sym___based] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_register] = ACTIONS(1735), - [anon_sym_inline] = ACTIONS(1735), - [anon_sym_thread_local] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_volatile] = ACTIONS(1735), - [anon_sym_restrict] = ACTIONS(1735), - [anon_sym__Atomic] = ACTIONS(1735), - [anon_sym_mutable] = ACTIONS(1735), - [anon_sym_constexpr] = ACTIONS(1735), - [anon_sym_signed] = ACTIONS(1735), - [anon_sym_unsigned] = ACTIONS(1735), - [anon_sym_long] = ACTIONS(1735), - [anon_sym_short] = ACTIONS(1735), - [sym_primitive_type] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [anon_sym_class] = ACTIONS(1735), - [anon_sym_struct] = ACTIONS(1735), - [anon_sym_union] = ACTIONS(1735), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1735), - [anon_sym_virtual] = ACTIONS(1735), - [anon_sym_explicit] = ACTIONS(1735), - [anon_sym_public] = ACTIONS(1735), - [anon_sym_private] = ACTIONS(1735), - [anon_sym_protected] = ACTIONS(1735), - [sym_auto] = ACTIONS(1735), - [anon_sym_typename] = ACTIONS(1735), - [anon_sym_template] = ACTIONS(1735), - [anon_sym_operator] = ACTIONS(1735), - [anon_sym_friend] = ACTIONS(1735), - [anon_sym_using] = ACTIONS(1735), - [anon_sym_static_assert] = ACTIONS(1735), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1735), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1735), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1735), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1735), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1735), - [anon_sym_MOZ_COLD] = ACTIONS(1735), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1735), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1735), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1735), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1735), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1735), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1735), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1735), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1735), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1735), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1735), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1735), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1735), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1735), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_NONNULL] = ACTIONS(1735), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1735), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1735), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1735), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1735), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1735), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1735), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1735), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1735), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1735), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1735), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1735), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1735), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1735), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1735), - [anon_sym_MOZ_RAII] = ACTIONS(1735), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1735), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1735), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1735), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1735), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1735), - }, - [1173] = { - [sym_identifier] = ACTIONS(1815), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1815), - [sym_preproc_directive] = ACTIONS(1815), - [anon_sym_LPAREN2] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_typedef] = ACTIONS(1815), - [anon_sym_extern] = ACTIONS(1815), - [anon_sym___attribute__] = ACTIONS(1815), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1817), - [anon_sym___declspec] = ACTIONS(1815), - [anon_sym___based] = ACTIONS(1815), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_static] = ACTIONS(1815), - [anon_sym_register] = ACTIONS(1815), - [anon_sym_inline] = ACTIONS(1815), - [anon_sym_thread_local] = ACTIONS(1815), - [anon_sym_const] = ACTIONS(1815), - [anon_sym_volatile] = ACTIONS(1815), - [anon_sym_restrict] = ACTIONS(1815), - [anon_sym__Atomic] = ACTIONS(1815), - [anon_sym_mutable] = ACTIONS(1815), - [anon_sym_constexpr] = ACTIONS(1815), - [anon_sym_signed] = ACTIONS(1815), - [anon_sym_unsigned] = ACTIONS(1815), - [anon_sym_long] = ACTIONS(1815), - [anon_sym_short] = ACTIONS(1815), - [sym_primitive_type] = ACTIONS(1815), - [anon_sym_enum] = ACTIONS(1815), - [anon_sym_class] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1815), - [anon_sym_union] = ACTIONS(1815), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1815), - [anon_sym_virtual] = ACTIONS(1815), - [anon_sym_explicit] = ACTIONS(1815), - [anon_sym_public] = ACTIONS(1815), - [anon_sym_private] = ACTIONS(1815), - [anon_sym_protected] = ACTIONS(1815), - [sym_auto] = ACTIONS(1815), - [anon_sym_typename] = ACTIONS(1815), - [anon_sym_template] = ACTIONS(1815), - [anon_sym_operator] = ACTIONS(1815), - [anon_sym_friend] = ACTIONS(1815), - [anon_sym_using] = ACTIONS(1815), - [anon_sym_static_assert] = ACTIONS(1815), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1815), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1815), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1815), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1815), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1815), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1815), - [anon_sym_MOZ_COLD] = ACTIONS(1815), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1815), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1815), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1815), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1815), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1815), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1815), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1815), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1815), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1815), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1815), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1815), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1815), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1815), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1815), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1815), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1815), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_NONNULL] = ACTIONS(1815), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1815), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1815), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1815), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1815), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_NORETURN] = ACTIONS(1815), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1815), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1815), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1815), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1815), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1815), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1815), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1815), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1815), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1815), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1815), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1815), - [anon_sym_MOZ_RAII] = ACTIONS(1815), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1815), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1815), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1815), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1815), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1815), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1815), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1815), - }, - [1174] = { - [sym__declaration_modifiers] = STATE(1222), - [sym__declaration_specifiers] = STATE(3161), - [sym_attribute_specifier] = STATE(1222), - [sym_attribute_declaration] = STATE(1222), - [sym_ms_declspec_modifier] = STATE(1222), - [sym_storage_class_specifier] = STATE(1222), - [sym_type_qualifier] = STATE(1222), - [sym__type_specifier] = STATE(1274), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1222), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1222), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [1175] = { - [sym_identifier] = ACTIONS(1799), - [aux_sym_preproc_def_token1] = ACTIONS(1799), - [aux_sym_preproc_if_token1] = ACTIONS(1799), - [aux_sym_preproc_if_token2] = ACTIONS(1799), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1799), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1799), - [sym_preproc_directive] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_typedef] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym___attribute__] = ACTIONS(1799), - [anon_sym_COLON_COLON] = ACTIONS(1801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1801), - [anon_sym___declspec] = ACTIONS(1799), - [anon_sym___based] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_inline] = ACTIONS(1799), - [anon_sym_thread_local] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_volatile] = ACTIONS(1799), - [anon_sym_restrict] = ACTIONS(1799), - [anon_sym__Atomic] = ACTIONS(1799), - [anon_sym_mutable] = ACTIONS(1799), - [anon_sym_constexpr] = ACTIONS(1799), - [anon_sym_signed] = ACTIONS(1799), - [anon_sym_unsigned] = ACTIONS(1799), - [anon_sym_long] = ACTIONS(1799), - [anon_sym_short] = ACTIONS(1799), - [sym_primitive_type] = ACTIONS(1799), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_class] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1799), - [anon_sym_union] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1799), - [anon_sym_virtual] = ACTIONS(1799), - [anon_sym_explicit] = ACTIONS(1799), - [anon_sym_public] = ACTIONS(1799), - [anon_sym_private] = ACTIONS(1799), - [anon_sym_protected] = ACTIONS(1799), - [sym_auto] = ACTIONS(1799), - [anon_sym_typename] = ACTIONS(1799), - [anon_sym_template] = ACTIONS(1799), - [anon_sym_operator] = ACTIONS(1799), - [anon_sym_friend] = ACTIONS(1799), - [anon_sym_using] = ACTIONS(1799), - [anon_sym_static_assert] = ACTIONS(1799), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1799), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1799), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1799), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1799), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1799), - [anon_sym_MOZ_COLD] = ACTIONS(1799), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1799), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1799), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1799), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1799), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1799), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1799), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1799), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1799), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1799), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1799), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1799), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1799), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1799), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_NONNULL] = ACTIONS(1799), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1799), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1799), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1799), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1799), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1799), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1799), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1799), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1799), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1799), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1799), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1799), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1799), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1799), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1799), - [anon_sym_MOZ_RAII] = ACTIONS(1799), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1799), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1799), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1799), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1799), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1799), - }, - [1176] = { - [sym_identifier] = ACTIONS(2914), - [aux_sym_preproc_def_token1] = ACTIONS(2914), - [aux_sym_preproc_if_token1] = ACTIONS(2914), - [aux_sym_preproc_if_token2] = ACTIONS(2914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2914), - [sym_preproc_directive] = ACTIONS(2914), - [anon_sym_LPAREN2] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_typedef] = ACTIONS(2914), - [anon_sym_extern] = ACTIONS(2914), - [anon_sym___attribute__] = ACTIONS(2914), - [anon_sym_COLON_COLON] = ACTIONS(2916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2916), - [anon_sym___declspec] = ACTIONS(2914), - [anon_sym___based] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2914), - [anon_sym_static] = ACTIONS(2914), - [anon_sym_register] = ACTIONS(2914), - [anon_sym_inline] = ACTIONS(2914), - [anon_sym_thread_local] = ACTIONS(2914), - [anon_sym_const] = ACTIONS(2914), - [anon_sym_volatile] = ACTIONS(2914), - [anon_sym_restrict] = ACTIONS(2914), - [anon_sym__Atomic] = ACTIONS(2914), - [anon_sym_mutable] = ACTIONS(2914), - [anon_sym_constexpr] = ACTIONS(2914), - [anon_sym_signed] = ACTIONS(2914), - [anon_sym_unsigned] = ACTIONS(2914), - [anon_sym_long] = ACTIONS(2914), - [anon_sym_short] = ACTIONS(2914), - [sym_primitive_type] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), - [anon_sym_class] = ACTIONS(2914), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_union] = ACTIONS(2914), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2914), - [anon_sym_virtual] = ACTIONS(2914), - [anon_sym_explicit] = ACTIONS(2914), - [anon_sym_public] = ACTIONS(2914), - [anon_sym_private] = ACTIONS(2914), - [anon_sym_protected] = ACTIONS(2914), - [sym_auto] = ACTIONS(2914), - [anon_sym_typename] = ACTIONS(2914), - [anon_sym_template] = ACTIONS(2914), - [anon_sym_operator] = ACTIONS(2914), - [anon_sym_friend] = ACTIONS(2914), - [anon_sym_using] = ACTIONS(2914), - [anon_sym_static_assert] = ACTIONS(2914), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2914), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2914), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2914), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2914), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2914), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2914), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2914), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2914), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2914), - [anon_sym_MOZ_COLD] = ACTIONS(2914), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2914), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2914), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2914), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2914), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2914), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2914), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2914), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2914), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2914), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2914), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2914), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2914), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2914), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2914), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2914), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2914), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2914), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2914), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2914), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2914), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2914), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_NONNULL] = ACTIONS(2914), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2914), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2914), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2914), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2914), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2914), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_NORETURN] = ACTIONS(2914), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2914), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2914), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2914), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2914), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2914), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2914), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2914), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2914), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2914), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2914), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2914), - [anon_sym_MOZ_RAII] = ACTIONS(2914), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2914), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2914), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2914), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2914), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2914), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2914), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2914), - }, - [1177] = { - [sym_identifier] = ACTIONS(1823), - [aux_sym_preproc_def_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1825), - [anon_sym_TILDE] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1825), - [anon_sym_AMP_AMP] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_typedef] = ACTIONS(1823), - [anon_sym_extern] = ACTIONS(1823), - [anon_sym___attribute__] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1825), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1825), - [anon_sym___declspec] = ACTIONS(1823), - [anon_sym___based] = ACTIONS(1823), - [anon_sym_RBRACE] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_register] = ACTIONS(1823), - [anon_sym_inline] = ACTIONS(1823), - [anon_sym_thread_local] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_volatile] = ACTIONS(1823), - [anon_sym_restrict] = ACTIONS(1823), - [anon_sym__Atomic] = ACTIONS(1823), - [anon_sym_mutable] = ACTIONS(1823), - [anon_sym_constexpr] = ACTIONS(1823), - [anon_sym_signed] = ACTIONS(1823), - [anon_sym_unsigned] = ACTIONS(1823), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_short] = ACTIONS(1823), - [sym_primitive_type] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [anon_sym_class] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(1823), - [anon_sym_union] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1823), - [anon_sym_virtual] = ACTIONS(1823), - [anon_sym_explicit] = ACTIONS(1823), - [anon_sym_public] = ACTIONS(1823), - [anon_sym_private] = ACTIONS(1823), - [anon_sym_protected] = ACTIONS(1823), - [sym_auto] = ACTIONS(1823), - [anon_sym_typename] = ACTIONS(1823), - [anon_sym_template] = ACTIONS(1823), - [anon_sym_operator] = ACTIONS(1823), - [anon_sym_friend] = ACTIONS(1823), - [anon_sym_using] = ACTIONS(1823), - [anon_sym_static_assert] = ACTIONS(1823), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1823), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1823), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1823), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1823), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1823), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1823), - [anon_sym_MOZ_COLD] = ACTIONS(1823), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1823), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1823), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1823), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1823), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1823), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1823), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1823), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1823), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1823), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1823), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1823), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1823), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1823), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1823), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1823), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1823), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_NONNULL] = ACTIONS(1823), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1823), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1823), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1823), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1823), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_NORETURN] = ACTIONS(1823), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1823), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1823), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1823), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1823), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1823), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1823), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1823), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1823), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1823), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1823), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1823), - [anon_sym_MOZ_RAII] = ACTIONS(1823), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1823), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1823), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1823), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1823), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1823), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1823), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1823), - }, - [1178] = { - [sym_identifier] = ACTIONS(1827), - [aux_sym_preproc_def_token1] = ACTIONS(1827), - [aux_sym_preproc_if_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1827), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_TILDE] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_AMP_AMP] = ACTIONS(1829), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_typedef] = ACTIONS(1827), - [anon_sym_extern] = ACTIONS(1827), - [anon_sym___attribute__] = ACTIONS(1827), - [anon_sym_COLON_COLON] = ACTIONS(1829), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1829), - [anon_sym___declspec] = ACTIONS(1827), - [anon_sym___based] = ACTIONS(1827), - [anon_sym_RBRACE] = ACTIONS(1829), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_static] = ACTIONS(1827), - [anon_sym_register] = ACTIONS(1827), - [anon_sym_inline] = ACTIONS(1827), - [anon_sym_thread_local] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_volatile] = ACTIONS(1827), - [anon_sym_restrict] = ACTIONS(1827), - [anon_sym__Atomic] = ACTIONS(1827), - [anon_sym_mutable] = ACTIONS(1827), - [anon_sym_constexpr] = ACTIONS(1827), - [anon_sym_signed] = ACTIONS(1827), - [anon_sym_unsigned] = ACTIONS(1827), - [anon_sym_long] = ACTIONS(1827), - [anon_sym_short] = ACTIONS(1827), - [sym_primitive_type] = ACTIONS(1827), - [anon_sym_enum] = ACTIONS(1827), - [anon_sym_class] = ACTIONS(1827), - [anon_sym_struct] = ACTIONS(1827), - [anon_sym_union] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1827), - [anon_sym_virtual] = ACTIONS(1827), - [anon_sym_explicit] = ACTIONS(1827), - [anon_sym_public] = ACTIONS(1827), - [anon_sym_private] = ACTIONS(1827), - [anon_sym_protected] = ACTIONS(1827), - [sym_auto] = ACTIONS(1827), - [anon_sym_typename] = ACTIONS(1827), - [anon_sym_template] = ACTIONS(1827), - [anon_sym_operator] = ACTIONS(1827), - [anon_sym_friend] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(1827), - [anon_sym_static_assert] = ACTIONS(1827), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1827), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1827), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1827), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1827), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1827), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1827), - [anon_sym_MOZ_COLD] = ACTIONS(1827), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1827), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1827), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1827), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1827), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1827), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1827), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1827), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1827), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1827), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1827), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1827), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1827), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1827), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1827), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1827), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1827), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_NONNULL] = ACTIONS(1827), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1827), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1827), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1827), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1827), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_NORETURN] = ACTIONS(1827), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1827), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1827), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1827), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1827), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1827), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1827), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1827), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1827), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1827), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1827), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1827), - [anon_sym_MOZ_RAII] = ACTIONS(1827), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1827), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1827), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1827), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1827), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1827), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1827), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1827), - }, - [1179] = { - [sym_identifier] = ACTIONS(2966), - [aux_sym_preproc_def_token1] = ACTIONS(2966), - [aux_sym_preproc_if_token1] = ACTIONS(2966), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2966), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2966), - [sym_preproc_directive] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_typedef] = ACTIONS(2966), - [anon_sym_extern] = ACTIONS(2966), - [anon_sym___attribute__] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2968), - [anon_sym___declspec] = ACTIONS(2966), - [anon_sym___based] = ACTIONS(2966), - [anon_sym_RBRACE] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_static] = ACTIONS(2966), - [anon_sym_register] = ACTIONS(2966), - [anon_sym_inline] = ACTIONS(2966), - [anon_sym_thread_local] = ACTIONS(2966), - [anon_sym_const] = ACTIONS(2966), - [anon_sym_volatile] = ACTIONS(2966), - [anon_sym_restrict] = ACTIONS(2966), - [anon_sym__Atomic] = ACTIONS(2966), - [anon_sym_mutable] = ACTIONS(2966), - [anon_sym_constexpr] = ACTIONS(2966), - [anon_sym_signed] = ACTIONS(2966), - [anon_sym_unsigned] = ACTIONS(2966), - [anon_sym_long] = ACTIONS(2966), - [anon_sym_short] = ACTIONS(2966), - [sym_primitive_type] = ACTIONS(2966), - [anon_sym_enum] = ACTIONS(2966), - [anon_sym_class] = ACTIONS(2966), - [anon_sym_struct] = ACTIONS(2966), - [anon_sym_union] = ACTIONS(2966), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2966), - [anon_sym_virtual] = ACTIONS(2966), - [anon_sym_explicit] = ACTIONS(2966), - [anon_sym_public] = ACTIONS(2966), - [anon_sym_private] = ACTIONS(2966), - [anon_sym_protected] = ACTIONS(2966), - [sym_auto] = ACTIONS(2966), - [anon_sym_typename] = ACTIONS(2966), - [anon_sym_template] = ACTIONS(2966), - [anon_sym_operator] = ACTIONS(2966), - [anon_sym_friend] = ACTIONS(2966), - [anon_sym_using] = ACTIONS(2966), - [anon_sym_static_assert] = ACTIONS(2966), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2966), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2966), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2966), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2966), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2966), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2966), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2966), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2966), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2966), - [anon_sym_MOZ_COLD] = ACTIONS(2966), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2966), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2966), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2966), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2966), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2966), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2966), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2966), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2966), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2966), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2966), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2966), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2966), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2966), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2966), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2966), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2966), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2966), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2966), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2966), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2966), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2966), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_NONNULL] = ACTIONS(2966), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2966), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2966), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2966), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2966), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2966), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_NORETURN] = ACTIONS(2966), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2966), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2966), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2966), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2966), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2966), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2966), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2966), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2966), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2966), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2966), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2966), - [anon_sym_MOZ_RAII] = ACTIONS(2966), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2966), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2966), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2966), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2966), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2966), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2966), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2966), - }, - [1180] = { - [sym_identifier] = ACTIONS(1887), - [aux_sym_preproc_def_token1] = ACTIONS(1887), - [aux_sym_preproc_if_token1] = ACTIONS(1887), - [aux_sym_preproc_if_token2] = ACTIONS(1887), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1887), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1887), - [sym_preproc_directive] = ACTIONS(1887), - [anon_sym_LPAREN2] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1887), - [anon_sym_typedef] = ACTIONS(1887), - [anon_sym_extern] = ACTIONS(1887), - [anon_sym___attribute__] = ACTIONS(1887), - [anon_sym_COLON_COLON] = ACTIONS(1889), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1889), - [anon_sym___declspec] = ACTIONS(1887), - [anon_sym___based] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_register] = ACTIONS(1887), - [anon_sym_inline] = ACTIONS(1887), - [anon_sym_thread_local] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [anon_sym_volatile] = ACTIONS(1887), - [anon_sym_restrict] = ACTIONS(1887), - [anon_sym__Atomic] = ACTIONS(1887), - [anon_sym_mutable] = ACTIONS(1887), - [anon_sym_constexpr] = ACTIONS(1887), - [anon_sym_signed] = ACTIONS(1887), - [anon_sym_unsigned] = ACTIONS(1887), - [anon_sym_long] = ACTIONS(1887), - [anon_sym_short] = ACTIONS(1887), - [sym_primitive_type] = ACTIONS(1887), - [anon_sym_enum] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1887), - [anon_sym_union] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1887), - [anon_sym_virtual] = ACTIONS(1887), - [anon_sym_explicit] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [sym_auto] = ACTIONS(1887), - [anon_sym_typename] = ACTIONS(1887), - [anon_sym_template] = ACTIONS(1887), - [anon_sym_operator] = ACTIONS(1887), - [anon_sym_friend] = ACTIONS(1887), - [anon_sym_using] = ACTIONS(1887), - [anon_sym_static_assert] = ACTIONS(1887), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1887), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1887), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1887), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1887), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1887), - [anon_sym_MOZ_COLD] = ACTIONS(1887), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1887), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1887), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1887), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1887), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1887), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1887), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1887), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1887), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1887), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1887), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1887), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1887), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1887), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_NONNULL] = ACTIONS(1887), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1887), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1887), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1887), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1887), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1887), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1887), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1887), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1887), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1887), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1887), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1887), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1887), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1887), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1887), - [anon_sym_MOZ_RAII] = ACTIONS(1887), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1887), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1887), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1887), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1887), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1887), - }, - [1181] = { - [sym_identifier] = ACTIONS(1847), - [aux_sym_preproc_def_token1] = ACTIONS(1847), - [aux_sym_preproc_if_token1] = ACTIONS(1847), - [aux_sym_preproc_if_token2] = ACTIONS(1847), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1847), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1847), - [sym_preproc_directive] = ACTIONS(1847), - [anon_sym_LPAREN2] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_AMP_AMP] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_typedef] = ACTIONS(1847), - [anon_sym_extern] = ACTIONS(1847), - [anon_sym___attribute__] = ACTIONS(1847), - [anon_sym_COLON_COLON] = ACTIONS(1849), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1849), - [anon_sym___declspec] = ACTIONS(1847), - [anon_sym___based] = ACTIONS(1847), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_register] = ACTIONS(1847), - [anon_sym_inline] = ACTIONS(1847), - [anon_sym_thread_local] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_restrict] = ACTIONS(1847), - [anon_sym__Atomic] = ACTIONS(1847), - [anon_sym_mutable] = ACTIONS(1847), - [anon_sym_constexpr] = ACTIONS(1847), - [anon_sym_signed] = ACTIONS(1847), - [anon_sym_unsigned] = ACTIONS(1847), - [anon_sym_long] = ACTIONS(1847), - [anon_sym_short] = ACTIONS(1847), - [sym_primitive_type] = ACTIONS(1847), - [anon_sym_enum] = ACTIONS(1847), - [anon_sym_class] = ACTIONS(1847), - [anon_sym_struct] = ACTIONS(1847), - [anon_sym_union] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1847), - [anon_sym_virtual] = ACTIONS(1847), - [anon_sym_explicit] = ACTIONS(1847), - [anon_sym_public] = ACTIONS(1847), - [anon_sym_private] = ACTIONS(1847), - [anon_sym_protected] = ACTIONS(1847), - [sym_auto] = ACTIONS(1847), - [anon_sym_typename] = ACTIONS(1847), - [anon_sym_template] = ACTIONS(1847), - [anon_sym_operator] = ACTIONS(1847), - [anon_sym_friend] = ACTIONS(1847), - [anon_sym_using] = ACTIONS(1847), - [anon_sym_static_assert] = ACTIONS(1847), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1847), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1847), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1847), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1847), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1847), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1847), - [anon_sym_MOZ_COLD] = ACTIONS(1847), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1847), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1847), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1847), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1847), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1847), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1847), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1847), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1847), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1847), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1847), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1847), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1847), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1847), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1847), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1847), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1847), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_NONNULL] = ACTIONS(1847), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1847), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1847), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1847), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1847), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_NORETURN] = ACTIONS(1847), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1847), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1847), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1847), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1847), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1847), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1847), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1847), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1847), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1847), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1847), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1847), - [anon_sym_MOZ_RAII] = ACTIONS(1847), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1847), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1847), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1847), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1847), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1847), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1847), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1847), - }, - [1182] = { - [sym_identifier] = ACTIONS(1899), - [aux_sym_preproc_def_token1] = ACTIONS(1899), - [aux_sym_preproc_if_token1] = ACTIONS(1899), - [aux_sym_preproc_if_token2] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1899), - [sym_preproc_directive] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1901), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_AMP_AMP] = ACTIONS(1901), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_typedef] = ACTIONS(1899), - [anon_sym_extern] = ACTIONS(1899), - [anon_sym___attribute__] = ACTIONS(1899), - [anon_sym_COLON_COLON] = ACTIONS(1901), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1901), - [anon_sym___declspec] = ACTIONS(1899), - [anon_sym___based] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_register] = ACTIONS(1899), - [anon_sym_inline] = ACTIONS(1899), - [anon_sym_thread_local] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_volatile] = ACTIONS(1899), - [anon_sym_restrict] = ACTIONS(1899), - [anon_sym__Atomic] = ACTIONS(1899), - [anon_sym_mutable] = ACTIONS(1899), - [anon_sym_constexpr] = ACTIONS(1899), - [anon_sym_signed] = ACTIONS(1899), - [anon_sym_unsigned] = ACTIONS(1899), - [anon_sym_long] = ACTIONS(1899), - [anon_sym_short] = ACTIONS(1899), - [sym_primitive_type] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_class] = ACTIONS(1899), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1899), - [anon_sym_virtual] = ACTIONS(1899), - [anon_sym_explicit] = ACTIONS(1899), - [anon_sym_public] = ACTIONS(1899), - [anon_sym_private] = ACTIONS(1899), - [anon_sym_protected] = ACTIONS(1899), - [sym_auto] = ACTIONS(1899), - [anon_sym_typename] = ACTIONS(1899), - [anon_sym_template] = ACTIONS(1899), - [anon_sym_operator] = ACTIONS(1899), - [anon_sym_friend] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(1899), - [anon_sym_static_assert] = ACTIONS(1899), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1899), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1899), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1899), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1899), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1899), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1899), - [anon_sym_MOZ_COLD] = ACTIONS(1899), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1899), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1899), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1899), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1899), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1899), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1899), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1899), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1899), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1899), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1899), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1899), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1899), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1899), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1899), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1899), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1899), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_NONNULL] = ACTIONS(1899), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1899), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1899), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1899), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1899), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_NORETURN] = ACTIONS(1899), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1899), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1899), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1899), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1899), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1899), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1899), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1899), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1899), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1899), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1899), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1899), - [anon_sym_MOZ_RAII] = ACTIONS(1899), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1899), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1899), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1899), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1899), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1899), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1899), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1899), - }, - [1183] = { - [sym_identifier] = ACTIONS(1699), - [aux_sym_preproc_def_token1] = ACTIONS(1699), - [aux_sym_preproc_if_token1] = ACTIONS(1699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1699), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_typedef] = ACTIONS(1699), - [anon_sym_extern] = ACTIONS(1699), - [anon_sym___attribute__] = ACTIONS(1699), - [anon_sym_COLON_COLON] = ACTIONS(1701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1701), - [anon_sym___declspec] = ACTIONS(1699), - [anon_sym___based] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_static] = ACTIONS(1699), - [anon_sym_register] = ACTIONS(1699), - [anon_sym_inline] = ACTIONS(1699), - [anon_sym_thread_local] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_volatile] = ACTIONS(1699), - [anon_sym_restrict] = ACTIONS(1699), - [anon_sym__Atomic] = ACTIONS(1699), - [anon_sym_mutable] = ACTIONS(1699), - [anon_sym_constexpr] = ACTIONS(1699), - [anon_sym_signed] = ACTIONS(1699), - [anon_sym_unsigned] = ACTIONS(1699), - [anon_sym_long] = ACTIONS(1699), - [anon_sym_short] = ACTIONS(1699), - [sym_primitive_type] = ACTIONS(1699), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1699), - [anon_sym_struct] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1699), - [anon_sym_virtual] = ACTIONS(1699), - [anon_sym_explicit] = ACTIONS(1699), - [anon_sym_public] = ACTIONS(1699), - [anon_sym_private] = ACTIONS(1699), - [anon_sym_protected] = ACTIONS(1699), - [sym_auto] = ACTIONS(1699), - [anon_sym_typename] = ACTIONS(1699), - [anon_sym_template] = ACTIONS(1699), - [anon_sym_operator] = ACTIONS(1699), - [anon_sym_friend] = ACTIONS(1699), - [anon_sym_using] = ACTIONS(1699), - [anon_sym_static_assert] = ACTIONS(1699), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1699), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1699), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1699), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1699), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1699), - [anon_sym_MOZ_COLD] = ACTIONS(1699), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1699), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1699), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1699), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1699), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1699), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1699), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1699), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1699), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1699), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1699), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1699), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1699), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1699), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_NONNULL] = ACTIONS(1699), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1699), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1699), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1699), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1699), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1699), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1699), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1699), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1699), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1699), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1699), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1699), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1699), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1699), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1699), - [anon_sym_MOZ_RAII] = ACTIONS(1699), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1699), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1699), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1699), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1699), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1699), - }, - [1184] = { - [sym_identifier] = ACTIONS(2970), - [aux_sym_preproc_def_token1] = ACTIONS(2970), - [aux_sym_preproc_if_token1] = ACTIONS(2970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2970), - [sym_preproc_directive] = ACTIONS(2970), - [anon_sym_LPAREN2] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2972), - [anon_sym_STAR] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_typedef] = ACTIONS(2970), - [anon_sym_extern] = ACTIONS(2970), - [anon_sym___attribute__] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2972), - [anon_sym___declspec] = ACTIONS(2970), - [anon_sym___based] = ACTIONS(2970), - [anon_sym_RBRACE] = ACTIONS(2972), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_static] = ACTIONS(2970), - [anon_sym_register] = ACTIONS(2970), - [anon_sym_inline] = ACTIONS(2970), - [anon_sym_thread_local] = ACTIONS(2970), - [anon_sym_const] = ACTIONS(2970), - [anon_sym_volatile] = ACTIONS(2970), - [anon_sym_restrict] = ACTIONS(2970), - [anon_sym__Atomic] = ACTIONS(2970), - [anon_sym_mutable] = ACTIONS(2970), - [anon_sym_constexpr] = ACTIONS(2970), - [anon_sym_signed] = ACTIONS(2970), - [anon_sym_unsigned] = ACTIONS(2970), - [anon_sym_long] = ACTIONS(2970), - [anon_sym_short] = ACTIONS(2970), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_enum] = ACTIONS(2970), - [anon_sym_class] = ACTIONS(2970), - [anon_sym_struct] = ACTIONS(2970), - [anon_sym_union] = ACTIONS(2970), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2970), - [anon_sym_virtual] = ACTIONS(2970), - [anon_sym_explicit] = ACTIONS(2970), - [anon_sym_public] = ACTIONS(2970), - [anon_sym_private] = ACTIONS(2970), - [anon_sym_protected] = ACTIONS(2970), - [sym_auto] = ACTIONS(2970), - [anon_sym_typename] = ACTIONS(2970), - [anon_sym_template] = ACTIONS(2970), - [anon_sym_operator] = ACTIONS(2970), - [anon_sym_friend] = ACTIONS(2970), - [anon_sym_using] = ACTIONS(2970), - [anon_sym_static_assert] = ACTIONS(2970), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(2970), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2970), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2970), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2970), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2970), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2970), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2970), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2970), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2970), - [anon_sym_MOZ_COLD] = ACTIONS(2970), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2970), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2970), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2970), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2970), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2970), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2970), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2970), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2970), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2970), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2970), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2970), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2970), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2970), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2970), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2970), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2970), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2970), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2970), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2970), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2970), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2970), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_NONNULL] = ACTIONS(2970), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2970), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2970), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2970), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2970), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2970), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_NORETURN] = ACTIONS(2970), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2970), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2970), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2970), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2970), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2970), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2970), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2970), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2970), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2970), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2970), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2970), - [anon_sym_MOZ_RAII] = ACTIONS(2970), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2970), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2970), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2970), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2970), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2970), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2970), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2970), - }, - [1185] = { - [sym_identifier] = ACTIONS(1557), - [aux_sym_preproc_def_token1] = ACTIONS(1557), - [aux_sym_preproc_if_token1] = ACTIONS(1557), - [aux_sym_preproc_if_token2] = ACTIONS(1557), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1557), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1557), - [sym_preproc_directive] = ACTIONS(1557), - [anon_sym_LPAREN2] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_STAR] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1557), - [anon_sym_typedef] = ACTIONS(1557), - [anon_sym_extern] = ACTIONS(1557), - [anon_sym___attribute__] = ACTIONS(1557), - [anon_sym_COLON_COLON] = ACTIONS(1559), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1559), - [anon_sym___declspec] = ACTIONS(1557), - [anon_sym___based] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_register] = ACTIONS(1557), - [anon_sym_inline] = ACTIONS(1557), - [anon_sym_thread_local] = ACTIONS(1557), - [anon_sym_const] = ACTIONS(1557), - [anon_sym_volatile] = ACTIONS(1557), - [anon_sym_restrict] = ACTIONS(1557), - [anon_sym__Atomic] = ACTIONS(1557), - [anon_sym_mutable] = ACTIONS(1557), - [anon_sym_constexpr] = ACTIONS(1557), - [anon_sym_signed] = ACTIONS(1557), - [anon_sym_unsigned] = ACTIONS(1557), - [anon_sym_long] = ACTIONS(1557), - [anon_sym_short] = ACTIONS(1557), - [sym_primitive_type] = ACTIONS(1557), - [anon_sym_enum] = ACTIONS(1557), - [anon_sym_class] = ACTIONS(1557), - [anon_sym_struct] = ACTIONS(1557), - [anon_sym_union] = ACTIONS(1557), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1557), - [anon_sym_virtual] = ACTIONS(1557), - [anon_sym_explicit] = ACTIONS(1557), - [anon_sym_public] = ACTIONS(1557), - [anon_sym_private] = ACTIONS(1557), - [anon_sym_protected] = ACTIONS(1557), - [sym_auto] = ACTIONS(1557), - [anon_sym_typename] = ACTIONS(1557), - [anon_sym_template] = ACTIONS(1557), - [anon_sym_operator] = ACTIONS(1557), - [anon_sym_friend] = ACTIONS(1557), - [anon_sym_using] = ACTIONS(1557), - [anon_sym_static_assert] = ACTIONS(1557), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1557), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1557), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1557), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1557), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1557), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1557), - [anon_sym_MOZ_COLD] = ACTIONS(1557), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1557), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1557), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1557), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1557), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1557), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1557), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1557), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1557), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1557), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1557), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1557), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1557), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1557), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1557), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1557), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1557), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_NONNULL] = ACTIONS(1557), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1557), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1557), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1557), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1557), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_NORETURN] = ACTIONS(1557), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1557), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1557), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1557), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1557), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1557), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1557), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1557), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1557), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1557), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1557), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1557), - [anon_sym_MOZ_RAII] = ACTIONS(1557), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1557), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1557), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1557), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1557), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1557), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1557), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1557), - }, - [1186] = { - [sym_identifier] = ACTIONS(1707), - [aux_sym_preproc_def_token1] = ACTIONS(1707), - [aux_sym_preproc_if_token1] = ACTIONS(1707), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1707), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1707), - [sym_preproc_directive] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1709), - [anon_sym_AMP_AMP] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_typedef] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym___attribute__] = ACTIONS(1707), - [anon_sym_COLON_COLON] = ACTIONS(1709), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1709), - [anon_sym___declspec] = ACTIONS(1707), - [anon_sym___based] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_inline] = ACTIONS(1707), - [anon_sym_thread_local] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_volatile] = ACTIONS(1707), - [anon_sym_restrict] = ACTIONS(1707), - [anon_sym__Atomic] = ACTIONS(1707), - [anon_sym_mutable] = ACTIONS(1707), - [anon_sym_constexpr] = ACTIONS(1707), - [anon_sym_signed] = ACTIONS(1707), - [anon_sym_unsigned] = ACTIONS(1707), - [anon_sym_long] = ACTIONS(1707), - [anon_sym_short] = ACTIONS(1707), - [sym_primitive_type] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_class] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1707), - [anon_sym_virtual] = ACTIONS(1707), - [anon_sym_explicit] = ACTIONS(1707), - [anon_sym_public] = ACTIONS(1707), - [anon_sym_private] = ACTIONS(1707), - [anon_sym_protected] = ACTIONS(1707), - [sym_auto] = ACTIONS(1707), - [anon_sym_typename] = ACTIONS(1707), - [anon_sym_template] = ACTIONS(1707), - [anon_sym_operator] = ACTIONS(1707), - [anon_sym_friend] = ACTIONS(1707), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_static_assert] = ACTIONS(1707), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1707), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1707), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1707), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1707), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1707), - [anon_sym_MOZ_COLD] = ACTIONS(1707), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1707), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1707), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1707), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1707), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1707), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1707), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1707), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1707), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1707), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1707), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1707), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1707), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1707), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_NONNULL] = ACTIONS(1707), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1707), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1707), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1707), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1707), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1707), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1707), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1707), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1707), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1707), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1707), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1707), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1707), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1707), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1707), - [anon_sym_MOZ_RAII] = ACTIONS(1707), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1707), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1707), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1707), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1707), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1707), - }, - [1187] = { - [sym_identifier] = ACTIONS(1771), - [aux_sym_preproc_def_token1] = ACTIONS(1771), - [aux_sym_preproc_if_token1] = ACTIONS(1771), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1771), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1771), - [sym_preproc_directive] = ACTIONS(1771), - [anon_sym_LPAREN2] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1773), - [anon_sym_AMP_AMP] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1771), - [anon_sym_typedef] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1771), - [anon_sym___attribute__] = ACTIONS(1771), - [anon_sym_COLON_COLON] = ACTIONS(1773), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1773), - [anon_sym___declspec] = ACTIONS(1771), - [anon_sym___based] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_register] = ACTIONS(1771), - [anon_sym_inline] = ACTIONS(1771), - [anon_sym_thread_local] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [anon_sym_volatile] = ACTIONS(1771), - [anon_sym_restrict] = ACTIONS(1771), - [anon_sym__Atomic] = ACTIONS(1771), - [anon_sym_mutable] = ACTIONS(1771), - [anon_sym_constexpr] = ACTIONS(1771), - [anon_sym_signed] = ACTIONS(1771), - [anon_sym_unsigned] = ACTIONS(1771), - [anon_sym_long] = ACTIONS(1771), - [anon_sym_short] = ACTIONS(1771), - [sym_primitive_type] = ACTIONS(1771), - [anon_sym_enum] = ACTIONS(1771), - [anon_sym_class] = ACTIONS(1771), - [anon_sym_struct] = ACTIONS(1771), - [anon_sym_union] = ACTIONS(1771), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1771), - [anon_sym_virtual] = ACTIONS(1771), - [anon_sym_explicit] = ACTIONS(1771), - [anon_sym_public] = ACTIONS(1771), - [anon_sym_private] = ACTIONS(1771), - [anon_sym_protected] = ACTIONS(1771), - [sym_auto] = ACTIONS(1771), - [anon_sym_typename] = ACTIONS(1771), - [anon_sym_template] = ACTIONS(1771), - [anon_sym_operator] = ACTIONS(1771), - [anon_sym_friend] = ACTIONS(1771), - [anon_sym_using] = ACTIONS(1771), - [anon_sym_static_assert] = ACTIONS(1771), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1771), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1771), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1771), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1771), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1771), - [anon_sym_MOZ_COLD] = ACTIONS(1771), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1771), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1771), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1771), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1771), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1771), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1771), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1771), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1771), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1771), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1771), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1771), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1771), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1771), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_NONNULL] = ACTIONS(1771), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1771), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1771), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1771), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1771), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1771), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1771), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1771), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1771), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1771), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1771), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1771), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1771), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1771), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1771), - [anon_sym_MOZ_RAII] = ACTIONS(1771), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1771), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1771), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1771), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1771), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1771), - }, - [1188] = { - [sym_identifier] = ACTIONS(1887), - [aux_sym_preproc_def_token1] = ACTIONS(1887), - [aux_sym_preproc_if_token1] = ACTIONS(1887), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1887), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1887), - [sym_preproc_directive] = ACTIONS(1887), - [anon_sym_LPAREN2] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1887), - [anon_sym_typedef] = ACTIONS(1887), - [anon_sym_extern] = ACTIONS(1887), - [anon_sym___attribute__] = ACTIONS(1887), - [anon_sym_COLON_COLON] = ACTIONS(1889), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1889), - [anon_sym___declspec] = ACTIONS(1887), - [anon_sym___based] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_register] = ACTIONS(1887), - [anon_sym_inline] = ACTIONS(1887), - [anon_sym_thread_local] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [anon_sym_volatile] = ACTIONS(1887), - [anon_sym_restrict] = ACTIONS(1887), - [anon_sym__Atomic] = ACTIONS(1887), - [anon_sym_mutable] = ACTIONS(1887), - [anon_sym_constexpr] = ACTIONS(1887), - [anon_sym_signed] = ACTIONS(1887), - [anon_sym_unsigned] = ACTIONS(1887), - [anon_sym_long] = ACTIONS(1887), - [anon_sym_short] = ACTIONS(1887), - [sym_primitive_type] = ACTIONS(1887), - [anon_sym_enum] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1887), - [anon_sym_union] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1887), - [anon_sym_virtual] = ACTIONS(1887), - [anon_sym_explicit] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [sym_auto] = ACTIONS(1887), - [anon_sym_typename] = ACTIONS(1887), - [anon_sym_template] = ACTIONS(1887), - [anon_sym_operator] = ACTIONS(1887), - [anon_sym_friend] = ACTIONS(1887), - [anon_sym_using] = ACTIONS(1887), - [anon_sym_static_assert] = ACTIONS(1887), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1887), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1887), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1887), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1887), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1887), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1887), - [anon_sym_MOZ_COLD] = ACTIONS(1887), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1887), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1887), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1887), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1887), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1887), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1887), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1887), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1887), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1887), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1887), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1887), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1887), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1887), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1887), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1887), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1887), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_NONNULL] = ACTIONS(1887), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1887), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1887), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1887), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1887), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_NORETURN] = ACTIONS(1887), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1887), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1887), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1887), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1887), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1887), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1887), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1887), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1887), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1887), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1887), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1887), - [anon_sym_MOZ_RAII] = ACTIONS(1887), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1887), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1887), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1887), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1887), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1887), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1887), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1887), - }, - [1189] = { - [sym_identifier] = ACTIONS(1667), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token2] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1667), - [sym_preproc_directive] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_typedef] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym___attribute__] = ACTIONS(1667), - [anon_sym_COLON_COLON] = ACTIONS(1669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1669), - [anon_sym___declspec] = ACTIONS(1667), - [anon_sym___based] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_inline] = ACTIONS(1667), - [anon_sym_thread_local] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [anon_sym_volatile] = ACTIONS(1667), - [anon_sym_restrict] = ACTIONS(1667), - [anon_sym__Atomic] = ACTIONS(1667), - [anon_sym_mutable] = ACTIONS(1667), - [anon_sym_constexpr] = ACTIONS(1667), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [sym_primitive_type] = ACTIONS(1667), - [anon_sym_enum] = ACTIONS(1667), - [anon_sym_class] = ACTIONS(1667), - [anon_sym_struct] = ACTIONS(1667), - [anon_sym_union] = ACTIONS(1667), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1667), - [anon_sym_virtual] = ACTIONS(1667), - [anon_sym_explicit] = ACTIONS(1667), - [anon_sym_public] = ACTIONS(1667), - [anon_sym_private] = ACTIONS(1667), - [anon_sym_protected] = ACTIONS(1667), - [sym_auto] = ACTIONS(1667), - [anon_sym_typename] = ACTIONS(1667), - [anon_sym_template] = ACTIONS(1667), - [anon_sym_operator] = ACTIONS(1667), - [anon_sym_friend] = ACTIONS(1667), - [anon_sym_using] = ACTIONS(1667), - [anon_sym_static_assert] = ACTIONS(1667), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1667), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1667), - [anon_sym_MOZ_COLD] = ACTIONS(1667), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1667), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1667), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1667), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1667), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1667), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1667), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1667), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1667), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1667), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1667), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1667), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1667), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_RAII] = ACTIONS(1667), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1667), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1667), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1667), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1667), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1667), - }, - [1190] = { - [sym_identifier] = ACTIONS(1839), - [aux_sym_preproc_def_token1] = ACTIONS(1839), - [aux_sym_preproc_if_token1] = ACTIONS(1839), - [aux_sym_preproc_if_token2] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [sym_preproc_directive] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(1841), - [anon_sym_TILDE] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_AMP_AMP] = ACTIONS(1841), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_typedef] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym___attribute__] = ACTIONS(1839), - [anon_sym_COLON_COLON] = ACTIONS(1841), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1841), - [anon_sym___declspec] = ACTIONS(1839), - [anon_sym___based] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_static] = ACTIONS(1839), - [anon_sym_register] = ACTIONS(1839), - [anon_sym_inline] = ACTIONS(1839), - [anon_sym_thread_local] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [anon_sym_volatile] = ACTIONS(1839), - [anon_sym_restrict] = ACTIONS(1839), - [anon_sym__Atomic] = ACTIONS(1839), - [anon_sym_mutable] = ACTIONS(1839), - [anon_sym_constexpr] = ACTIONS(1839), - [anon_sym_signed] = ACTIONS(1839), - [anon_sym_unsigned] = ACTIONS(1839), - [anon_sym_long] = ACTIONS(1839), - [anon_sym_short] = ACTIONS(1839), - [sym_primitive_type] = ACTIONS(1839), - [anon_sym_enum] = ACTIONS(1839), - [anon_sym_class] = ACTIONS(1839), - [anon_sym_struct] = ACTIONS(1839), - [anon_sym_union] = ACTIONS(1839), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1839), - [anon_sym_virtual] = ACTIONS(1839), - [anon_sym_explicit] = ACTIONS(1839), - [anon_sym_public] = ACTIONS(1839), - [anon_sym_private] = ACTIONS(1839), - [anon_sym_protected] = ACTIONS(1839), - [sym_auto] = ACTIONS(1839), - [anon_sym_typename] = ACTIONS(1839), - [anon_sym_template] = ACTIONS(1839), - [anon_sym_operator] = ACTIONS(1839), - [anon_sym_friend] = ACTIONS(1839), - [anon_sym_using] = ACTIONS(1839), - [anon_sym_static_assert] = ACTIONS(1839), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1839), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1839), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1839), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1839), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1839), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1839), - [anon_sym_MOZ_COLD] = ACTIONS(1839), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1839), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1839), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1839), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1839), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1839), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1839), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1839), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1839), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1839), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1839), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1839), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1839), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1839), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1839), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1839), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1839), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_NONNULL] = ACTIONS(1839), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1839), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1839), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1839), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1839), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_NORETURN] = ACTIONS(1839), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1839), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1839), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1839), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1839), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1839), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1839), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1839), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1839), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1839), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1839), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1839), - [anon_sym_MOZ_RAII] = ACTIONS(1839), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1839), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1839), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1839), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1839), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1839), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1839), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1839), - }, - [1191] = { - [sym_identifier] = ACTIONS(3090), - [aux_sym_preproc_def_token1] = ACTIONS(3090), - [aux_sym_preproc_if_token1] = ACTIONS(3090), - [aux_sym_preproc_if_token2] = ACTIONS(3090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3090), - [sym_preproc_directive] = ACTIONS(3090), - [anon_sym_LPAREN2] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_typedef] = ACTIONS(3090), - [anon_sym_extern] = ACTIONS(3090), - [anon_sym___attribute__] = ACTIONS(3090), - [anon_sym_COLON_COLON] = ACTIONS(3092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3092), - [anon_sym___declspec] = ACTIONS(3090), - [anon_sym___based] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(3090), - [anon_sym_static] = ACTIONS(3090), - [anon_sym_register] = ACTIONS(3090), - [anon_sym_inline] = ACTIONS(3090), - [anon_sym_thread_local] = ACTIONS(3090), - [anon_sym_const] = ACTIONS(3090), - [anon_sym_volatile] = ACTIONS(3090), - [anon_sym_restrict] = ACTIONS(3090), - [anon_sym__Atomic] = ACTIONS(3090), - [anon_sym_mutable] = ACTIONS(3090), - [anon_sym_constexpr] = ACTIONS(3090), - [anon_sym_signed] = ACTIONS(3090), - [anon_sym_unsigned] = ACTIONS(3090), - [anon_sym_long] = ACTIONS(3090), - [anon_sym_short] = ACTIONS(3090), - [sym_primitive_type] = ACTIONS(3090), - [anon_sym_enum] = ACTIONS(3090), - [anon_sym_class] = ACTIONS(3090), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_union] = ACTIONS(3090), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3090), - [anon_sym_virtual] = ACTIONS(3090), - [anon_sym_explicit] = ACTIONS(3090), - [anon_sym_public] = ACTIONS(3090), - [anon_sym_private] = ACTIONS(3090), - [anon_sym_protected] = ACTIONS(3090), - [sym_auto] = ACTIONS(3090), - [anon_sym_typename] = ACTIONS(3090), - [anon_sym_template] = ACTIONS(3090), - [anon_sym_operator] = ACTIONS(3090), - [anon_sym_friend] = ACTIONS(3090), - [anon_sym_using] = ACTIONS(3090), - [anon_sym_static_assert] = ACTIONS(3090), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3090), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3090), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3090), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3090), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3090), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3090), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3090), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3090), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3090), - [anon_sym_MOZ_COLD] = ACTIONS(3090), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3090), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3090), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3090), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3090), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3090), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3090), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3090), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3090), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3090), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3090), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3090), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3090), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3090), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3090), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3090), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3090), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3090), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3090), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3090), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3090), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3090), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_NONNULL] = ACTIONS(3090), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3090), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3090), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3090), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3090), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3090), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_NORETURN] = ACTIONS(3090), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3090), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3090), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3090), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3090), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3090), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3090), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3090), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3090), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3090), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3090), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3090), - [anon_sym_MOZ_RAII] = ACTIONS(3090), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3090), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3090), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3090), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3090), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3090), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3090), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3090), - }, - [1192] = { - [sym_identifier] = ACTIONS(1835), - [aux_sym_preproc_def_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token2] = ACTIONS(1835), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1835), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1835), - [sym_preproc_directive] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_TILDE] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1837), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_typedef] = ACTIONS(1835), - [anon_sym_extern] = ACTIONS(1835), - [anon_sym___attribute__] = ACTIONS(1835), - [anon_sym_COLON_COLON] = ACTIONS(1837), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1837), - [anon_sym___declspec] = ACTIONS(1835), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_static] = ACTIONS(1835), - [anon_sym_register] = ACTIONS(1835), - [anon_sym_inline] = ACTIONS(1835), - [anon_sym_thread_local] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym_mutable] = ACTIONS(1835), - [anon_sym_constexpr] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(1835), - [anon_sym_unsigned] = ACTIONS(1835), - [anon_sym_long] = ACTIONS(1835), - [anon_sym_short] = ACTIONS(1835), - [sym_primitive_type] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_struct] = ACTIONS(1835), - [anon_sym_union] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1835), - [anon_sym_virtual] = ACTIONS(1835), - [anon_sym_explicit] = ACTIONS(1835), - [anon_sym_public] = ACTIONS(1835), - [anon_sym_private] = ACTIONS(1835), - [anon_sym_protected] = ACTIONS(1835), - [sym_auto] = ACTIONS(1835), - [anon_sym_typename] = ACTIONS(1835), - [anon_sym_template] = ACTIONS(1835), - [anon_sym_operator] = ACTIONS(1835), - [anon_sym_friend] = ACTIONS(1835), - [anon_sym_using] = ACTIONS(1835), - [anon_sym_static_assert] = ACTIONS(1835), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1835), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1835), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1835), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1835), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1835), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1835), - [anon_sym_MOZ_COLD] = ACTIONS(1835), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1835), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1835), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1835), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1835), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1835), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1835), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1835), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1835), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1835), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1835), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1835), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1835), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1835), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1835), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1835), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1835), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_NONNULL] = ACTIONS(1835), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1835), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1835), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1835), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1835), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_NORETURN] = ACTIONS(1835), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1835), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1835), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1835), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1835), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1835), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1835), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1835), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1835), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1835), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1835), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1835), - [anon_sym_MOZ_RAII] = ACTIONS(1835), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1835), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1835), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1835), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1835), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1835), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1835), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1835), - }, - [1193] = { - [sym_identifier] = ACTIONS(3094), - [aux_sym_preproc_def_token1] = ACTIONS(3094), - [aux_sym_preproc_if_token1] = ACTIONS(3094), - [aux_sym_preproc_if_token2] = ACTIONS(3094), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3094), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3094), - [sym_preproc_directive] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(3096), - [anon_sym_TILDE] = ACTIONS(3096), - [anon_sym_STAR] = ACTIONS(3096), - [anon_sym_AMP_AMP] = ACTIONS(3096), - [anon_sym_AMP] = ACTIONS(3094), - [anon_sym_typedef] = ACTIONS(3094), - [anon_sym_extern] = ACTIONS(3094), - [anon_sym___attribute__] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(3096), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3096), - [anon_sym___declspec] = ACTIONS(3094), - [anon_sym___based] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(3094), - [anon_sym_static] = ACTIONS(3094), - [anon_sym_register] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym_thread_local] = ACTIONS(3094), - [anon_sym_const] = ACTIONS(3094), - [anon_sym_volatile] = ACTIONS(3094), - [anon_sym_restrict] = ACTIONS(3094), - [anon_sym__Atomic] = ACTIONS(3094), - [anon_sym_mutable] = ACTIONS(3094), - [anon_sym_constexpr] = ACTIONS(3094), - [anon_sym_signed] = ACTIONS(3094), - [anon_sym_unsigned] = ACTIONS(3094), - [anon_sym_long] = ACTIONS(3094), - [anon_sym_short] = ACTIONS(3094), - [sym_primitive_type] = ACTIONS(3094), - [anon_sym_enum] = ACTIONS(3094), - [anon_sym_class] = ACTIONS(3094), - [anon_sym_struct] = ACTIONS(3094), - [anon_sym_union] = ACTIONS(3094), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3094), - [anon_sym_virtual] = ACTIONS(3094), - [anon_sym_explicit] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [sym_auto] = ACTIONS(3094), - [anon_sym_typename] = ACTIONS(3094), - [anon_sym_template] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_friend] = ACTIONS(3094), - [anon_sym_using] = ACTIONS(3094), - [anon_sym_static_assert] = ACTIONS(3094), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3094), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3094), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3094), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3094), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3094), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3094), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3094), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3094), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3094), - [anon_sym_MOZ_COLD] = ACTIONS(3094), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3094), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3094), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3094), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3094), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3094), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3094), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3094), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3094), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3094), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3094), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3094), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3094), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3094), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3094), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3094), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3094), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3094), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3094), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3094), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3094), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3094), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_NONNULL] = ACTIONS(3094), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3094), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3094), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3094), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3094), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3094), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_NORETURN] = ACTIONS(3094), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3094), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3094), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3094), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3094), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3094), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3094), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3094), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3094), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3094), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3094), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3094), - [anon_sym_MOZ_RAII] = ACTIONS(3094), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3094), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3094), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3094), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3094), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3094), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3094), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3094), - }, - [1194] = { - [sym_identifier] = ACTIONS(1743), - [aux_sym_preproc_def_token1] = ACTIONS(1743), - [aux_sym_preproc_if_token1] = ACTIONS(1743), - [aux_sym_preproc_if_token2] = ACTIONS(1743), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1743), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1743), - [sym_preproc_directive] = ACTIONS(1743), - [anon_sym_LPAREN2] = ACTIONS(1745), - [anon_sym_TILDE] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_AMP_AMP] = ACTIONS(1745), - [anon_sym_AMP] = ACTIONS(1743), - [anon_sym_typedef] = ACTIONS(1743), - [anon_sym_extern] = ACTIONS(1743), - [anon_sym___attribute__] = ACTIONS(1743), - [anon_sym_COLON_COLON] = ACTIONS(1745), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1745), - [anon_sym___declspec] = ACTIONS(1743), - [anon_sym___based] = ACTIONS(1743), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_static] = ACTIONS(1743), - [anon_sym_register] = ACTIONS(1743), - [anon_sym_inline] = ACTIONS(1743), - [anon_sym_thread_local] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_volatile] = ACTIONS(1743), - [anon_sym_restrict] = ACTIONS(1743), - [anon_sym__Atomic] = ACTIONS(1743), - [anon_sym_mutable] = ACTIONS(1743), - [anon_sym_constexpr] = ACTIONS(1743), - [anon_sym_signed] = ACTIONS(1743), - [anon_sym_unsigned] = ACTIONS(1743), - [anon_sym_long] = ACTIONS(1743), - [anon_sym_short] = ACTIONS(1743), - [sym_primitive_type] = ACTIONS(1743), - [anon_sym_enum] = ACTIONS(1743), - [anon_sym_class] = ACTIONS(1743), - [anon_sym_struct] = ACTIONS(1743), - [anon_sym_union] = ACTIONS(1743), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1743), - [anon_sym_virtual] = ACTIONS(1743), - [anon_sym_explicit] = ACTIONS(1743), - [anon_sym_public] = ACTIONS(1743), - [anon_sym_private] = ACTIONS(1743), - [anon_sym_protected] = ACTIONS(1743), - [sym_auto] = ACTIONS(1743), - [anon_sym_typename] = ACTIONS(1743), - [anon_sym_template] = ACTIONS(1743), - [anon_sym_operator] = ACTIONS(1743), - [anon_sym_friend] = ACTIONS(1743), - [anon_sym_using] = ACTIONS(1743), - [anon_sym_static_assert] = ACTIONS(1743), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1743), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1743), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1743), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1743), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1743), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1743), - [anon_sym_MOZ_COLD] = ACTIONS(1743), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1743), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1743), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1743), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1743), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1743), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1743), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1743), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1743), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1743), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1743), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1743), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1743), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1743), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1743), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1743), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1743), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_NONNULL] = ACTIONS(1743), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1743), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1743), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1743), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1743), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_NORETURN] = ACTIONS(1743), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1743), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1743), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1743), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1743), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1743), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1743), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1743), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1743), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1743), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1743), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1743), - [anon_sym_MOZ_RAII] = ACTIONS(1743), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1743), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1743), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1743), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1743), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1743), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1743), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1743), - }, - [1195] = { - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1831), - [aux_sym_preproc_if_token1] = ACTIONS(1831), - [aux_sym_preproc_if_token2] = ACTIONS(1831), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1831), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1831), - [sym_preproc_directive] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_AMP_AMP] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_typedef] = ACTIONS(1831), - [anon_sym_extern] = ACTIONS(1831), - [anon_sym___attribute__] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1833), - [anon_sym___declspec] = ACTIONS(1831), - [anon_sym___based] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_static] = ACTIONS(1831), - [anon_sym_register] = ACTIONS(1831), - [anon_sym_inline] = ACTIONS(1831), - [anon_sym_thread_local] = ACTIONS(1831), - [anon_sym_const] = ACTIONS(1831), - [anon_sym_volatile] = ACTIONS(1831), - [anon_sym_restrict] = ACTIONS(1831), - [anon_sym__Atomic] = ACTIONS(1831), - [anon_sym_mutable] = ACTIONS(1831), - [anon_sym_constexpr] = ACTIONS(1831), - [anon_sym_signed] = ACTIONS(1831), - [anon_sym_unsigned] = ACTIONS(1831), - [anon_sym_long] = ACTIONS(1831), - [anon_sym_short] = ACTIONS(1831), - [sym_primitive_type] = ACTIONS(1831), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_class] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(1831), - [anon_sym_union] = ACTIONS(1831), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1831), - [anon_sym_virtual] = ACTIONS(1831), - [anon_sym_explicit] = ACTIONS(1831), - [anon_sym_public] = ACTIONS(1831), - [anon_sym_private] = ACTIONS(1831), - [anon_sym_protected] = ACTIONS(1831), - [sym_auto] = ACTIONS(1831), - [anon_sym_typename] = ACTIONS(1831), - [anon_sym_template] = ACTIONS(1831), - [anon_sym_operator] = ACTIONS(1831), - [anon_sym_friend] = ACTIONS(1831), - [anon_sym_using] = ACTIONS(1831), - [anon_sym_static_assert] = ACTIONS(1831), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1831), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1831), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1831), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1831), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1831), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1831), - [anon_sym_MOZ_COLD] = ACTIONS(1831), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1831), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1831), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1831), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1831), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1831), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1831), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1831), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1831), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1831), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1831), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1831), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1831), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1831), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1831), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1831), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1831), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_NONNULL] = ACTIONS(1831), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1831), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1831), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1831), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1831), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_NORETURN] = ACTIONS(1831), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1831), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1831), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1831), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1831), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1831), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1831), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1831), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1831), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1831), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1831), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1831), - [anon_sym_MOZ_RAII] = ACTIONS(1831), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1831), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1831), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1831), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1831), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1831), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1831), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1831), - }, - [1196] = { - [sym_identifier] = ACTIONS(1667), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token2] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1667), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1667), - [sym_preproc_directive] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_typedef] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym___attribute__] = ACTIONS(1667), - [anon_sym_COLON_COLON] = ACTIONS(1669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1669), - [anon_sym___declspec] = ACTIONS(1667), - [anon_sym___based] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_inline] = ACTIONS(1667), - [anon_sym_thread_local] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [anon_sym_volatile] = ACTIONS(1667), - [anon_sym_restrict] = ACTIONS(1667), - [anon_sym__Atomic] = ACTIONS(1667), - [anon_sym_mutable] = ACTIONS(1667), - [anon_sym_constexpr] = ACTIONS(1667), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [sym_primitive_type] = ACTIONS(1667), - [anon_sym_enum] = ACTIONS(1667), - [anon_sym_class] = ACTIONS(1667), - [anon_sym_struct] = ACTIONS(1667), - [anon_sym_union] = ACTIONS(1667), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1667), - [anon_sym_virtual] = ACTIONS(1667), - [anon_sym_explicit] = ACTIONS(1667), - [anon_sym_public] = ACTIONS(1667), - [anon_sym_private] = ACTIONS(1667), - [anon_sym_protected] = ACTIONS(1667), - [sym_auto] = ACTIONS(1667), - [anon_sym_typename] = ACTIONS(1667), - [anon_sym_template] = ACTIONS(1667), - [anon_sym_operator] = ACTIONS(1667), - [anon_sym_friend] = ACTIONS(1667), - [anon_sym_using] = ACTIONS(1667), - [anon_sym_static_assert] = ACTIONS(1667), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1667), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1667), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1667), - [anon_sym_MOZ_COLD] = ACTIONS(1667), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1667), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1667), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1667), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1667), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1667), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1667), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1667), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1667), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1667), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1667), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1667), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1667), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL] = ACTIONS(1667), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1667), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1667), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN] = ACTIONS(1667), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1667), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1667), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1667), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1667), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1667), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1667), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1667), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1667), - [anon_sym_MOZ_RAII] = ACTIONS(1667), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1667), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1667), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1667), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1667), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1667), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1667), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1667), - }, - [1197] = { - [sym_identifier] = ACTIONS(1703), - [aux_sym_preproc_def_token1] = ACTIONS(1703), - [aux_sym_preproc_if_token1] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1703), - [sym_preproc_directive] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_typedef] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym___attribute__] = ACTIONS(1703), - [anon_sym_COLON_COLON] = ACTIONS(1705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1705), - [anon_sym___declspec] = ACTIONS(1703), - [anon_sym___based] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_inline] = ACTIONS(1703), - [anon_sym_thread_local] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [anon_sym_volatile] = ACTIONS(1703), - [anon_sym_restrict] = ACTIONS(1703), - [anon_sym__Atomic] = ACTIONS(1703), - [anon_sym_mutable] = ACTIONS(1703), - [anon_sym_constexpr] = ACTIONS(1703), - [anon_sym_signed] = ACTIONS(1703), - [anon_sym_unsigned] = ACTIONS(1703), - [anon_sym_long] = ACTIONS(1703), - [anon_sym_short] = ACTIONS(1703), - [sym_primitive_type] = ACTIONS(1703), - [anon_sym_enum] = ACTIONS(1703), - [anon_sym_class] = ACTIONS(1703), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1703), - [anon_sym_virtual] = ACTIONS(1703), - [anon_sym_explicit] = ACTIONS(1703), - [anon_sym_public] = ACTIONS(1703), - [anon_sym_private] = ACTIONS(1703), - [anon_sym_protected] = ACTIONS(1703), - [sym_auto] = ACTIONS(1703), - [anon_sym_typename] = ACTIONS(1703), - [anon_sym_template] = ACTIONS(1703), - [anon_sym_operator] = ACTIONS(1703), - [anon_sym_friend] = ACTIONS(1703), - [anon_sym_using] = ACTIONS(1703), - [anon_sym_static_assert] = ACTIONS(1703), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1703), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1703), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1703), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1703), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1703), - [anon_sym_MOZ_COLD] = ACTIONS(1703), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1703), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1703), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1703), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1703), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1703), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1703), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1703), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1703), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1703), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1703), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1703), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1703), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1703), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_NONNULL] = ACTIONS(1703), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1703), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1703), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1703), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1703), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1703), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1703), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1703), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1703), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1703), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1703), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1703), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1703), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1703), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1703), - [anon_sym_MOZ_RAII] = ACTIONS(1703), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1703), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1703), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1703), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1703), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1703), - }, - [1198] = { - [sym_identifier] = ACTIONS(1779), - [aux_sym_preproc_def_token1] = ACTIONS(1779), - [aux_sym_preproc_if_token1] = ACTIONS(1779), - [aux_sym_preproc_if_token2] = ACTIONS(1779), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1779), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1779), - [sym_preproc_directive] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP_AMP] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1779), - [anon_sym_typedef] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym___attribute__] = ACTIONS(1779), - [anon_sym_COLON_COLON] = ACTIONS(1781), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1781), - [anon_sym___declspec] = ACTIONS(1779), - [anon_sym___based] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_inline] = ACTIONS(1779), - [anon_sym_thread_local] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [anon_sym_volatile] = ACTIONS(1779), - [anon_sym_restrict] = ACTIONS(1779), - [anon_sym__Atomic] = ACTIONS(1779), - [anon_sym_mutable] = ACTIONS(1779), - [anon_sym_constexpr] = ACTIONS(1779), - [anon_sym_signed] = ACTIONS(1779), - [anon_sym_unsigned] = ACTIONS(1779), - [anon_sym_long] = ACTIONS(1779), - [anon_sym_short] = ACTIONS(1779), - [sym_primitive_type] = ACTIONS(1779), - [anon_sym_enum] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(1779), - [anon_sym_struct] = ACTIONS(1779), - [anon_sym_union] = ACTIONS(1779), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1779), - [anon_sym_virtual] = ACTIONS(1779), - [anon_sym_explicit] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [sym_auto] = ACTIONS(1779), - [anon_sym_typename] = ACTIONS(1779), - [anon_sym_template] = ACTIONS(1779), - [anon_sym_operator] = ACTIONS(1779), - [anon_sym_friend] = ACTIONS(1779), - [anon_sym_using] = ACTIONS(1779), - [anon_sym_static_assert] = ACTIONS(1779), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1779), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1779), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1779), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1779), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1779), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1779), - [anon_sym_MOZ_COLD] = ACTIONS(1779), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1779), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1779), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1779), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1779), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1779), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1779), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1779), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1779), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1779), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1779), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1779), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1779), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1779), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1779), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1779), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1779), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_NONNULL] = ACTIONS(1779), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1779), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1779), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1779), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1779), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_NORETURN] = ACTIONS(1779), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1779), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1779), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1779), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1779), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1779), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1779), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1779), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1779), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1779), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1779), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1779), - [anon_sym_MOZ_RAII] = ACTIONS(1779), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1779), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1779), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1779), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1779), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1779), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1779), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1779), - }, - [1199] = { - [sym_identifier] = ACTIONS(3098), - [aux_sym_preproc_def_token1] = ACTIONS(3098), - [aux_sym_preproc_if_token1] = ACTIONS(3098), - [aux_sym_preproc_if_token2] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3098), - [sym_preproc_directive] = ACTIONS(3098), - [anon_sym_LPAREN2] = ACTIONS(3100), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_AMP_AMP] = ACTIONS(3100), - [anon_sym_AMP] = ACTIONS(3098), - [anon_sym_typedef] = ACTIONS(3098), - [anon_sym_extern] = ACTIONS(3098), - [anon_sym___attribute__] = ACTIONS(3098), - [anon_sym_COLON_COLON] = ACTIONS(3100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3100), - [anon_sym___declspec] = ACTIONS(3098), - [anon_sym___based] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(3098), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_register] = ACTIONS(3098), - [anon_sym_inline] = ACTIONS(3098), - [anon_sym_thread_local] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_volatile] = ACTIONS(3098), - [anon_sym_restrict] = ACTIONS(3098), - [anon_sym__Atomic] = ACTIONS(3098), - [anon_sym_mutable] = ACTIONS(3098), - [anon_sym_constexpr] = ACTIONS(3098), - [anon_sym_signed] = ACTIONS(3098), - [anon_sym_unsigned] = ACTIONS(3098), - [anon_sym_long] = ACTIONS(3098), - [anon_sym_short] = ACTIONS(3098), - [sym_primitive_type] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_class] = ACTIONS(3098), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_union] = ACTIONS(3098), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3098), - [anon_sym_virtual] = ACTIONS(3098), - [anon_sym_explicit] = ACTIONS(3098), - [anon_sym_public] = ACTIONS(3098), - [anon_sym_private] = ACTIONS(3098), - [anon_sym_protected] = ACTIONS(3098), - [sym_auto] = ACTIONS(3098), - [anon_sym_typename] = ACTIONS(3098), - [anon_sym_template] = ACTIONS(3098), - [anon_sym_operator] = ACTIONS(3098), - [anon_sym_friend] = ACTIONS(3098), - [anon_sym_using] = ACTIONS(3098), - [anon_sym_static_assert] = ACTIONS(3098), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3098), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3098), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3098), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3098), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3098), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3098), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3098), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3098), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3098), - [anon_sym_MOZ_COLD] = ACTIONS(3098), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3098), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3098), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3098), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3098), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3098), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3098), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3098), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3098), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3098), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3098), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3098), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3098), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3098), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3098), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3098), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3098), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3098), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3098), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3098), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3098), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_NONNULL] = ACTIONS(3098), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3098), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3098), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3098), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3098), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3098), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_NORETURN] = ACTIONS(3098), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3098), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3098), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3098), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3098), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3098), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3098), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3098), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3098), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3098), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3098), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3098), - [anon_sym_MOZ_RAII] = ACTIONS(3098), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3098), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3098), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3098), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3098), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3098), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3098), - }, - [1200] = { - [sym_identifier] = ACTIONS(1771), - [aux_sym_preproc_def_token1] = ACTIONS(1771), - [aux_sym_preproc_if_token1] = ACTIONS(1771), - [aux_sym_preproc_if_token2] = ACTIONS(1771), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1771), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1771), - [sym_preproc_directive] = ACTIONS(1771), - [anon_sym_LPAREN2] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1773), - [anon_sym_AMP_AMP] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1771), - [anon_sym_typedef] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1771), - [anon_sym___attribute__] = ACTIONS(1771), - [anon_sym_COLON_COLON] = ACTIONS(1773), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1773), - [anon_sym___declspec] = ACTIONS(1771), - [anon_sym___based] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_register] = ACTIONS(1771), - [anon_sym_inline] = ACTIONS(1771), - [anon_sym_thread_local] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [anon_sym_volatile] = ACTIONS(1771), - [anon_sym_restrict] = ACTIONS(1771), - [anon_sym__Atomic] = ACTIONS(1771), - [anon_sym_mutable] = ACTIONS(1771), - [anon_sym_constexpr] = ACTIONS(1771), - [anon_sym_signed] = ACTIONS(1771), - [anon_sym_unsigned] = ACTIONS(1771), - [anon_sym_long] = ACTIONS(1771), - [anon_sym_short] = ACTIONS(1771), - [sym_primitive_type] = ACTIONS(1771), - [anon_sym_enum] = ACTIONS(1771), - [anon_sym_class] = ACTIONS(1771), - [anon_sym_struct] = ACTIONS(1771), - [anon_sym_union] = ACTIONS(1771), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1771), - [anon_sym_virtual] = ACTIONS(1771), - [anon_sym_explicit] = ACTIONS(1771), - [anon_sym_public] = ACTIONS(1771), - [anon_sym_private] = ACTIONS(1771), - [anon_sym_protected] = ACTIONS(1771), - [sym_auto] = ACTIONS(1771), - [anon_sym_typename] = ACTIONS(1771), - [anon_sym_template] = ACTIONS(1771), - [anon_sym_operator] = ACTIONS(1771), - [anon_sym_friend] = ACTIONS(1771), - [anon_sym_using] = ACTIONS(1771), - [anon_sym_static_assert] = ACTIONS(1771), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1771), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1771), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1771), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1771), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1771), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1771), - [anon_sym_MOZ_COLD] = ACTIONS(1771), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1771), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1771), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1771), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1771), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1771), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1771), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1771), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1771), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1771), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1771), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1771), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1771), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1771), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1771), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1771), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1771), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_NONNULL] = ACTIONS(1771), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1771), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1771), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1771), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1771), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_NORETURN] = ACTIONS(1771), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1771), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1771), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1771), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1771), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1771), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1771), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1771), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1771), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1771), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1771), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1771), - [anon_sym_MOZ_RAII] = ACTIONS(1771), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1771), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1771), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1771), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1771), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1771), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1771), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1771), - }, - [1201] = { - [sym_identifier] = ACTIONS(3098), - [aux_sym_preproc_def_token1] = ACTIONS(3098), - [aux_sym_preproc_if_token1] = ACTIONS(3098), - [aux_sym_preproc_if_token2] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3098), - [sym_preproc_directive] = ACTIONS(3098), - [anon_sym_LPAREN2] = ACTIONS(3100), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_AMP_AMP] = ACTIONS(3100), - [anon_sym_AMP] = ACTIONS(3098), - [anon_sym_typedef] = ACTIONS(3098), - [anon_sym_extern] = ACTIONS(3098), - [anon_sym___attribute__] = ACTIONS(3098), - [anon_sym_COLON_COLON] = ACTIONS(3100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3100), - [anon_sym___declspec] = ACTIONS(3098), - [anon_sym___based] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(3098), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_register] = ACTIONS(3098), - [anon_sym_inline] = ACTIONS(3098), - [anon_sym_thread_local] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_volatile] = ACTIONS(3098), - [anon_sym_restrict] = ACTIONS(3098), - [anon_sym__Atomic] = ACTIONS(3098), - [anon_sym_mutable] = ACTIONS(3098), - [anon_sym_constexpr] = ACTIONS(3098), - [anon_sym_signed] = ACTIONS(3098), - [anon_sym_unsigned] = ACTIONS(3098), - [anon_sym_long] = ACTIONS(3098), - [anon_sym_short] = ACTIONS(3098), - [sym_primitive_type] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_class] = ACTIONS(3098), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_union] = ACTIONS(3098), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3098), - [anon_sym_virtual] = ACTIONS(3098), - [anon_sym_explicit] = ACTIONS(3098), - [anon_sym_public] = ACTIONS(3098), - [anon_sym_private] = ACTIONS(3098), - [anon_sym_protected] = ACTIONS(3098), - [sym_auto] = ACTIONS(3098), - [anon_sym_typename] = ACTIONS(3098), - [anon_sym_template] = ACTIONS(3098), - [anon_sym_operator] = ACTIONS(3098), - [anon_sym_friend] = ACTIONS(3098), - [anon_sym_using] = ACTIONS(3098), - [anon_sym_static_assert] = ACTIONS(3098), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3098), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3098), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3098), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3098), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3098), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3098), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3098), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3098), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3098), - [anon_sym_MOZ_COLD] = ACTIONS(3098), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3098), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3098), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3098), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3098), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3098), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3098), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3098), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3098), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3098), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3098), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3098), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3098), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3098), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3098), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3098), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3098), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3098), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3098), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3098), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3098), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3098), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_NONNULL] = ACTIONS(3098), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3098), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3098), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3098), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3098), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3098), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_NORETURN] = ACTIONS(3098), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3098), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3098), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3098), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3098), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3098), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3098), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3098), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3098), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3098), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3098), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3098), - [anon_sym_MOZ_RAII] = ACTIONS(3098), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3098), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3098), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3098), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3098), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3098), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3098), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3098), - }, - [1202] = { - [sym_identifier] = ACTIONS(1703), - [aux_sym_preproc_def_token1] = ACTIONS(1703), - [aux_sym_preproc_if_token1] = ACTIONS(1703), - [aux_sym_preproc_if_token2] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1703), - [sym_preproc_directive] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_typedef] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym___attribute__] = ACTIONS(1703), - [anon_sym_COLON_COLON] = ACTIONS(1705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1705), - [anon_sym___declspec] = ACTIONS(1703), - [anon_sym___based] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_inline] = ACTIONS(1703), - [anon_sym_thread_local] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [anon_sym_volatile] = ACTIONS(1703), - [anon_sym_restrict] = ACTIONS(1703), - [anon_sym__Atomic] = ACTIONS(1703), - [anon_sym_mutable] = ACTIONS(1703), - [anon_sym_constexpr] = ACTIONS(1703), - [anon_sym_signed] = ACTIONS(1703), - [anon_sym_unsigned] = ACTIONS(1703), - [anon_sym_long] = ACTIONS(1703), - [anon_sym_short] = ACTIONS(1703), - [sym_primitive_type] = ACTIONS(1703), - [anon_sym_enum] = ACTIONS(1703), - [anon_sym_class] = ACTIONS(1703), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1703), - [anon_sym_virtual] = ACTIONS(1703), - [anon_sym_explicit] = ACTIONS(1703), - [anon_sym_public] = ACTIONS(1703), - [anon_sym_private] = ACTIONS(1703), - [anon_sym_protected] = ACTIONS(1703), - [sym_auto] = ACTIONS(1703), - [anon_sym_typename] = ACTIONS(1703), - [anon_sym_template] = ACTIONS(1703), - [anon_sym_operator] = ACTIONS(1703), - [anon_sym_friend] = ACTIONS(1703), - [anon_sym_using] = ACTIONS(1703), - [anon_sym_static_assert] = ACTIONS(1703), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1703), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1703), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1703), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1703), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1703), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1703), - [anon_sym_MOZ_COLD] = ACTIONS(1703), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1703), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1703), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1703), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1703), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1703), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1703), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1703), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1703), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1703), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1703), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1703), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1703), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1703), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1703), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1703), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1703), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_NONNULL] = ACTIONS(1703), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1703), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1703), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1703), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1703), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_NORETURN] = ACTIONS(1703), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1703), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1703), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1703), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1703), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1703), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1703), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1703), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1703), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1703), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1703), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1703), - [anon_sym_MOZ_RAII] = ACTIONS(1703), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1703), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1703), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1703), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1703), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1703), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1703), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1703), - }, - [1203] = { - [sym_identifier] = ACTIONS(1715), - [aux_sym_preproc_def_token1] = ACTIONS(1715), - [aux_sym_preproc_if_token1] = ACTIONS(1715), - [aux_sym_preproc_if_token2] = ACTIONS(1715), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1715), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1715), - [sym_preproc_directive] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_typedef] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym___attribute__] = ACTIONS(1715), - [anon_sym_COLON_COLON] = ACTIONS(1717), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1717), - [anon_sym___declspec] = ACTIONS(1715), - [anon_sym___based] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_inline] = ACTIONS(1715), - [anon_sym_thread_local] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [anon_sym_volatile] = ACTIONS(1715), - [anon_sym_restrict] = ACTIONS(1715), - [anon_sym__Atomic] = ACTIONS(1715), - [anon_sym_mutable] = ACTIONS(1715), - [anon_sym_constexpr] = ACTIONS(1715), - [anon_sym_signed] = ACTIONS(1715), - [anon_sym_unsigned] = ACTIONS(1715), - [anon_sym_long] = ACTIONS(1715), - [anon_sym_short] = ACTIONS(1715), - [sym_primitive_type] = ACTIONS(1715), - [anon_sym_enum] = ACTIONS(1715), - [anon_sym_class] = ACTIONS(1715), - [anon_sym_struct] = ACTIONS(1715), - [anon_sym_union] = ACTIONS(1715), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1715), - [anon_sym_virtual] = ACTIONS(1715), - [anon_sym_explicit] = ACTIONS(1715), - [anon_sym_public] = ACTIONS(1715), - [anon_sym_private] = ACTIONS(1715), - [anon_sym_protected] = ACTIONS(1715), - [sym_auto] = ACTIONS(1715), - [anon_sym_typename] = ACTIONS(1715), - [anon_sym_template] = ACTIONS(1715), - [anon_sym_operator] = ACTIONS(1715), - [anon_sym_friend] = ACTIONS(1715), - [anon_sym_using] = ACTIONS(1715), - [anon_sym_static_assert] = ACTIONS(1715), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1715), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1715), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1715), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1715), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1715), - [anon_sym_MOZ_COLD] = ACTIONS(1715), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1715), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1715), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1715), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1715), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1715), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1715), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1715), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1715), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1715), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1715), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1715), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1715), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1715), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_NONNULL] = ACTIONS(1715), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1715), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1715), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1715), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1715), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1715), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1715), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1715), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1715), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1715), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1715), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1715), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1715), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1715), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1715), - [anon_sym_MOZ_RAII] = ACTIONS(1715), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1715), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1715), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1715), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1715), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1715), - }, - [1204] = { - [sym_identifier] = ACTIONS(1843), - [aux_sym_preproc_def_token1] = ACTIONS(1843), - [aux_sym_preproc_if_token1] = ACTIONS(1843), - [aux_sym_preproc_if_token2] = ACTIONS(1843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1843), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1843), - [sym_preproc_directive] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_typedef] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym___attribute__] = ACTIONS(1843), - [anon_sym_COLON_COLON] = ACTIONS(1845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1845), - [anon_sym___declspec] = ACTIONS(1843), - [anon_sym___based] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_static] = ACTIONS(1843), - [anon_sym_register] = ACTIONS(1843), - [anon_sym_inline] = ACTIONS(1843), - [anon_sym_thread_local] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_restrict] = ACTIONS(1843), - [anon_sym__Atomic] = ACTIONS(1843), - [anon_sym_mutable] = ACTIONS(1843), - [anon_sym_constexpr] = ACTIONS(1843), - [anon_sym_signed] = ACTIONS(1843), - [anon_sym_unsigned] = ACTIONS(1843), - [anon_sym_long] = ACTIONS(1843), - [anon_sym_short] = ACTIONS(1843), - [sym_primitive_type] = ACTIONS(1843), - [anon_sym_enum] = ACTIONS(1843), - [anon_sym_class] = ACTIONS(1843), - [anon_sym_struct] = ACTIONS(1843), - [anon_sym_union] = ACTIONS(1843), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1843), - [anon_sym_virtual] = ACTIONS(1843), - [anon_sym_explicit] = ACTIONS(1843), - [anon_sym_public] = ACTIONS(1843), - [anon_sym_private] = ACTIONS(1843), - [anon_sym_protected] = ACTIONS(1843), - [sym_auto] = ACTIONS(1843), - [anon_sym_typename] = ACTIONS(1843), - [anon_sym_template] = ACTIONS(1843), - [anon_sym_operator] = ACTIONS(1843), - [anon_sym_friend] = ACTIONS(1843), - [anon_sym_using] = ACTIONS(1843), - [anon_sym_static_assert] = ACTIONS(1843), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1843), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1843), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1843), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1843), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1843), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1843), - [anon_sym_MOZ_COLD] = ACTIONS(1843), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1843), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1843), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1843), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1843), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1843), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1843), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1843), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1843), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1843), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1843), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1843), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1843), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1843), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1843), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1843), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1843), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_NONNULL] = ACTIONS(1843), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1843), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1843), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1843), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1843), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_NORETURN] = ACTIONS(1843), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1843), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1843), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1843), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1843), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1843), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1843), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1843), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1843), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1843), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1843), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1843), - [anon_sym_MOZ_RAII] = ACTIONS(1843), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1843), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1843), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1843), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1843), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1843), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1843), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1843), - }, - [1205] = { - [sym_identifier] = ACTIONS(1727), - [aux_sym_preproc_def_token1] = ACTIONS(1727), - [aux_sym_preproc_if_token1] = ACTIONS(1727), - [aux_sym_preproc_if_token2] = ACTIONS(1727), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1727), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1727), - [sym_preproc_directive] = ACTIONS(1727), - [anon_sym_LPAREN2] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1729), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_typedef] = ACTIONS(1727), - [anon_sym_extern] = ACTIONS(1727), - [anon_sym___attribute__] = ACTIONS(1727), - [anon_sym_COLON_COLON] = ACTIONS(1729), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), - [anon_sym___declspec] = ACTIONS(1727), - [anon_sym___based] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_static] = ACTIONS(1727), - [anon_sym_register] = ACTIONS(1727), - [anon_sym_inline] = ACTIONS(1727), - [anon_sym_thread_local] = ACTIONS(1727), - [anon_sym_const] = ACTIONS(1727), - [anon_sym_volatile] = ACTIONS(1727), - [anon_sym_restrict] = ACTIONS(1727), - [anon_sym__Atomic] = ACTIONS(1727), - [anon_sym_mutable] = ACTIONS(1727), - [anon_sym_constexpr] = ACTIONS(1727), - [anon_sym_signed] = ACTIONS(1727), - [anon_sym_unsigned] = ACTIONS(1727), - [anon_sym_long] = ACTIONS(1727), - [anon_sym_short] = ACTIONS(1727), - [sym_primitive_type] = ACTIONS(1727), - [anon_sym_enum] = ACTIONS(1727), - [anon_sym_class] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(1727), - [anon_sym_union] = ACTIONS(1727), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1727), - [anon_sym_virtual] = ACTIONS(1727), - [anon_sym_explicit] = ACTIONS(1727), - [anon_sym_public] = ACTIONS(1727), - [anon_sym_private] = ACTIONS(1727), - [anon_sym_protected] = ACTIONS(1727), - [sym_auto] = ACTIONS(1727), - [anon_sym_typename] = ACTIONS(1727), - [anon_sym_template] = ACTIONS(1727), - [anon_sym_operator] = ACTIONS(1727), - [anon_sym_friend] = ACTIONS(1727), - [anon_sym_using] = ACTIONS(1727), - [anon_sym_static_assert] = ACTIONS(1727), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1727), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1727), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1727), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1727), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1727), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1727), - [anon_sym_MOZ_COLD] = ACTIONS(1727), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1727), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1727), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1727), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1727), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1727), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1727), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1727), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1727), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1727), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1727), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1727), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1727), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1727), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1727), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1727), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1727), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_NONNULL] = ACTIONS(1727), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1727), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1727), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1727), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1727), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_NORETURN] = ACTIONS(1727), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1727), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1727), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1727), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1727), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1727), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1727), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1727), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1727), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1727), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1727), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1727), - [anon_sym_MOZ_RAII] = ACTIONS(1727), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1727), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1727), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1727), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1727), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1727), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1727), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1727), - }, - [1206] = { - [sym_identifier] = ACTIONS(1707), - [aux_sym_preproc_def_token1] = ACTIONS(1707), - [aux_sym_preproc_if_token1] = ACTIONS(1707), - [aux_sym_preproc_if_token2] = ACTIONS(1707), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1707), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1707), - [sym_preproc_directive] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1709), - [anon_sym_AMP_AMP] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_typedef] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym___attribute__] = ACTIONS(1707), - [anon_sym_COLON_COLON] = ACTIONS(1709), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1709), - [anon_sym___declspec] = ACTIONS(1707), - [anon_sym___based] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_inline] = ACTIONS(1707), - [anon_sym_thread_local] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_volatile] = ACTIONS(1707), - [anon_sym_restrict] = ACTIONS(1707), - [anon_sym__Atomic] = ACTIONS(1707), - [anon_sym_mutable] = ACTIONS(1707), - [anon_sym_constexpr] = ACTIONS(1707), - [anon_sym_signed] = ACTIONS(1707), - [anon_sym_unsigned] = ACTIONS(1707), - [anon_sym_long] = ACTIONS(1707), - [anon_sym_short] = ACTIONS(1707), - [sym_primitive_type] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_class] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1707), - [anon_sym_virtual] = ACTIONS(1707), - [anon_sym_explicit] = ACTIONS(1707), - [anon_sym_public] = ACTIONS(1707), - [anon_sym_private] = ACTIONS(1707), - [anon_sym_protected] = ACTIONS(1707), - [sym_auto] = ACTIONS(1707), - [anon_sym_typename] = ACTIONS(1707), - [anon_sym_template] = ACTIONS(1707), - [anon_sym_operator] = ACTIONS(1707), - [anon_sym_friend] = ACTIONS(1707), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_static_assert] = ACTIONS(1707), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1707), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1707), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1707), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1707), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1707), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1707), - [anon_sym_MOZ_COLD] = ACTIONS(1707), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1707), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1707), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1707), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1707), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1707), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1707), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1707), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1707), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1707), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1707), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1707), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1707), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1707), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1707), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1707), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1707), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_NONNULL] = ACTIONS(1707), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1707), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1707), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1707), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1707), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_NORETURN] = ACTIONS(1707), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1707), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1707), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1707), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1707), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1707), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1707), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1707), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1707), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1707), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1707), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1707), - [anon_sym_MOZ_RAII] = ACTIONS(1707), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1707), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1707), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1707), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1707), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1707), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1707), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1707), - }, - [1207] = { - [sym_identifier] = ACTIONS(1715), - [aux_sym_preproc_def_token1] = ACTIONS(1715), - [aux_sym_preproc_if_token1] = ACTIONS(1715), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1715), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1715), - [sym_preproc_directive] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_typedef] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym___attribute__] = ACTIONS(1715), - [anon_sym_COLON_COLON] = ACTIONS(1717), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1717), - [anon_sym___declspec] = ACTIONS(1715), - [anon_sym___based] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_inline] = ACTIONS(1715), - [anon_sym_thread_local] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [anon_sym_volatile] = ACTIONS(1715), - [anon_sym_restrict] = ACTIONS(1715), - [anon_sym__Atomic] = ACTIONS(1715), - [anon_sym_mutable] = ACTIONS(1715), - [anon_sym_constexpr] = ACTIONS(1715), - [anon_sym_signed] = ACTIONS(1715), - [anon_sym_unsigned] = ACTIONS(1715), - [anon_sym_long] = ACTIONS(1715), - [anon_sym_short] = ACTIONS(1715), - [sym_primitive_type] = ACTIONS(1715), - [anon_sym_enum] = ACTIONS(1715), - [anon_sym_class] = ACTIONS(1715), - [anon_sym_struct] = ACTIONS(1715), - [anon_sym_union] = ACTIONS(1715), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1715), - [anon_sym_virtual] = ACTIONS(1715), - [anon_sym_explicit] = ACTIONS(1715), - [anon_sym_public] = ACTIONS(1715), - [anon_sym_private] = ACTIONS(1715), - [anon_sym_protected] = ACTIONS(1715), - [sym_auto] = ACTIONS(1715), - [anon_sym_typename] = ACTIONS(1715), - [anon_sym_template] = ACTIONS(1715), - [anon_sym_operator] = ACTIONS(1715), - [anon_sym_friend] = ACTIONS(1715), - [anon_sym_using] = ACTIONS(1715), - [anon_sym_static_assert] = ACTIONS(1715), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1715), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1715), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1715), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1715), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1715), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1715), - [anon_sym_MOZ_COLD] = ACTIONS(1715), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1715), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1715), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1715), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1715), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1715), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1715), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1715), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1715), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1715), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1715), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1715), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1715), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1715), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1715), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1715), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1715), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_NONNULL] = ACTIONS(1715), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1715), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1715), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1715), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1715), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_NORETURN] = ACTIONS(1715), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1715), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1715), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1715), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1715), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1715), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1715), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1715), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1715), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1715), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1715), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1715), - [anon_sym_MOZ_RAII] = ACTIONS(1715), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1715), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1715), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1715), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1715), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1715), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1715), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1715), - }, - [1208] = { - [sym_identifier] = ACTIONS(3102), - [aux_sym_preproc_def_token1] = ACTIONS(3102), - [aux_sym_preproc_if_token1] = ACTIONS(3102), - [aux_sym_preproc_if_token2] = ACTIONS(3102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3102), - [sym_preproc_directive] = ACTIONS(3102), - [anon_sym_LPAREN2] = ACTIONS(3104), - [anon_sym_TILDE] = ACTIONS(3104), - [anon_sym_STAR] = ACTIONS(3104), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_AMP] = ACTIONS(3102), - [anon_sym_typedef] = ACTIONS(3102), - [anon_sym_extern] = ACTIONS(3102), - [anon_sym___attribute__] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3104), - [anon_sym___declspec] = ACTIONS(3102), - [anon_sym___based] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3102), - [anon_sym_static] = ACTIONS(3102), - [anon_sym_register] = ACTIONS(3102), - [anon_sym_inline] = ACTIONS(3102), - [anon_sym_thread_local] = ACTIONS(3102), - [anon_sym_const] = ACTIONS(3102), - [anon_sym_volatile] = ACTIONS(3102), - [anon_sym_restrict] = ACTIONS(3102), - [anon_sym__Atomic] = ACTIONS(3102), - [anon_sym_mutable] = ACTIONS(3102), - [anon_sym_constexpr] = ACTIONS(3102), - [anon_sym_signed] = ACTIONS(3102), - [anon_sym_unsigned] = ACTIONS(3102), - [anon_sym_long] = ACTIONS(3102), - [anon_sym_short] = ACTIONS(3102), - [sym_primitive_type] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), - [anon_sym_class] = ACTIONS(3102), - [anon_sym_struct] = ACTIONS(3102), - [anon_sym_union] = ACTIONS(3102), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3102), - [anon_sym_virtual] = ACTIONS(3102), - [anon_sym_explicit] = ACTIONS(3102), - [anon_sym_public] = ACTIONS(3102), - [anon_sym_private] = ACTIONS(3102), - [anon_sym_protected] = ACTIONS(3102), - [sym_auto] = ACTIONS(3102), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_template] = ACTIONS(3102), - [anon_sym_operator] = ACTIONS(3102), - [anon_sym_friend] = ACTIONS(3102), - [anon_sym_using] = ACTIONS(3102), - [anon_sym_static_assert] = ACTIONS(3102), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3102), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3102), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3102), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3102), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3102), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3102), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3102), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3102), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3102), - [anon_sym_MOZ_COLD] = ACTIONS(3102), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3102), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3102), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3102), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3102), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3102), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3102), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3102), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3102), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3102), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3102), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3102), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3102), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3102), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3102), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3102), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3102), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3102), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3102), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3102), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3102), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3102), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_NONNULL] = ACTIONS(3102), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3102), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3102), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3102), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3102), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3102), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_NORETURN] = ACTIONS(3102), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3102), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3102), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3102), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3102), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3102), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3102), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3102), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3102), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3102), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3102), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3102), - [anon_sym_MOZ_RAII] = ACTIONS(3102), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3102), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3102), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3102), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3102), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3102), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3102), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3102), - }, - [1209] = { - [sym_identifier] = ACTIONS(3106), - [aux_sym_preproc_def_token1] = ACTIONS(3106), - [aux_sym_preproc_if_token1] = ACTIONS(3106), - [aux_sym_preproc_if_token2] = ACTIONS(3106), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3106), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3106), - [sym_preproc_directive] = ACTIONS(3106), - [anon_sym_LPAREN2] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_AMP] = ACTIONS(3106), - [anon_sym_typedef] = ACTIONS(3106), - [anon_sym_extern] = ACTIONS(3106), - [anon_sym___attribute__] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(3108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), - [anon_sym___declspec] = ACTIONS(3106), - [anon_sym___based] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(3106), - [anon_sym_static] = ACTIONS(3106), - [anon_sym_register] = ACTIONS(3106), - [anon_sym_inline] = ACTIONS(3106), - [anon_sym_thread_local] = ACTIONS(3106), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_volatile] = ACTIONS(3106), - [anon_sym_restrict] = ACTIONS(3106), - [anon_sym__Atomic] = ACTIONS(3106), - [anon_sym_mutable] = ACTIONS(3106), - [anon_sym_constexpr] = ACTIONS(3106), - [anon_sym_signed] = ACTIONS(3106), - [anon_sym_unsigned] = ACTIONS(3106), - [anon_sym_long] = ACTIONS(3106), - [anon_sym_short] = ACTIONS(3106), - [sym_primitive_type] = ACTIONS(3106), - [anon_sym_enum] = ACTIONS(3106), - [anon_sym_class] = ACTIONS(3106), - [anon_sym_struct] = ACTIONS(3106), - [anon_sym_union] = ACTIONS(3106), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3106), - [anon_sym_virtual] = ACTIONS(3106), - [anon_sym_explicit] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [sym_auto] = ACTIONS(3106), - [anon_sym_typename] = ACTIONS(3106), - [anon_sym_template] = ACTIONS(3106), - [anon_sym_operator] = ACTIONS(3106), - [anon_sym_friend] = ACTIONS(3106), - [anon_sym_using] = ACTIONS(3106), - [anon_sym_static_assert] = ACTIONS(3106), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(3106), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3106), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3106), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3106), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3106), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3106), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3106), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3106), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3106), - [anon_sym_MOZ_COLD] = ACTIONS(3106), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3106), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3106), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3106), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3106), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3106), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3106), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3106), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3106), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3106), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3106), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3106), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3106), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3106), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3106), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3106), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3106), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3106), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3106), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3106), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3106), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3106), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_NONNULL] = ACTIONS(3106), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3106), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3106), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3106), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3106), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3106), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_NORETURN] = ACTIONS(3106), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3106), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3106), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3106), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3106), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3106), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3106), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3106), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3106), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3106), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3106), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3106), - [anon_sym_MOZ_RAII] = ACTIONS(3106), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3106), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3106), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3106), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3106), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3106), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3106), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3106), - }, - [1210] = { - [sym_identifier] = ACTIONS(1763), - [aux_sym_preproc_def_token1] = ACTIONS(1763), - [aux_sym_preproc_if_token1] = ACTIONS(1763), - [aux_sym_preproc_if_token2] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), - [sym_preproc_directive] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1763), - [anon_sym_typedef] = ACTIONS(1763), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym___attribute__] = ACTIONS(1763), - [anon_sym_COLON_COLON] = ACTIONS(1765), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1765), - [anon_sym___declspec] = ACTIONS(1763), - [anon_sym___based] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_inline] = ACTIONS(1763), - [anon_sym_thread_local] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym_mutable] = ACTIONS(1763), - [anon_sym_constexpr] = ACTIONS(1763), - [anon_sym_signed] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [sym_primitive_type] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [anon_sym_class] = ACTIONS(1763), - [anon_sym_struct] = ACTIONS(1763), - [anon_sym_union] = ACTIONS(1763), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1763), - [anon_sym_virtual] = ACTIONS(1763), - [anon_sym_explicit] = ACTIONS(1763), - [anon_sym_public] = ACTIONS(1763), - [anon_sym_private] = ACTIONS(1763), - [anon_sym_protected] = ACTIONS(1763), - [sym_auto] = ACTIONS(1763), - [anon_sym_typename] = ACTIONS(1763), - [anon_sym_template] = ACTIONS(1763), - [anon_sym_operator] = ACTIONS(1763), - [anon_sym_friend] = ACTIONS(1763), - [anon_sym_using] = ACTIONS(1763), - [anon_sym_static_assert] = ACTIONS(1763), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1763), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1763), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1763), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1763), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1763), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1763), - [anon_sym_MOZ_COLD] = ACTIONS(1763), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1763), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1763), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1763), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1763), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1763), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1763), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1763), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1763), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1763), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1763), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1763), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1763), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1763), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1763), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1763), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1763), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_NONNULL] = ACTIONS(1763), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1763), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1763), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1763), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1763), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_NORETURN] = ACTIONS(1763), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1763), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1763), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1763), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1763), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1763), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1763), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1763), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1763), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1763), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1763), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1763), - [anon_sym_MOZ_RAII] = ACTIONS(1763), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1763), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1763), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1763), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1763), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1763), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1763), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1763), - }, - [1211] = { - [sym_identifier] = ACTIONS(1699), - [aux_sym_preproc_def_token1] = ACTIONS(1699), - [aux_sym_preproc_if_token1] = ACTIONS(1699), - [aux_sym_preproc_if_token2] = ACTIONS(1699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1699), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_typedef] = ACTIONS(1699), - [anon_sym_extern] = ACTIONS(1699), - [anon_sym___attribute__] = ACTIONS(1699), - [anon_sym_COLON_COLON] = ACTIONS(1701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1701), - [anon_sym___declspec] = ACTIONS(1699), - [anon_sym___based] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_static] = ACTIONS(1699), - [anon_sym_register] = ACTIONS(1699), - [anon_sym_inline] = ACTIONS(1699), - [anon_sym_thread_local] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_volatile] = ACTIONS(1699), - [anon_sym_restrict] = ACTIONS(1699), - [anon_sym__Atomic] = ACTIONS(1699), - [anon_sym_mutable] = ACTIONS(1699), - [anon_sym_constexpr] = ACTIONS(1699), - [anon_sym_signed] = ACTIONS(1699), - [anon_sym_unsigned] = ACTIONS(1699), - [anon_sym_long] = ACTIONS(1699), - [anon_sym_short] = ACTIONS(1699), - [sym_primitive_type] = ACTIONS(1699), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1699), - [anon_sym_struct] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1699), - [anon_sym_virtual] = ACTIONS(1699), - [anon_sym_explicit] = ACTIONS(1699), - [anon_sym_public] = ACTIONS(1699), - [anon_sym_private] = ACTIONS(1699), - [anon_sym_protected] = ACTIONS(1699), - [sym_auto] = ACTIONS(1699), - [anon_sym_typename] = ACTIONS(1699), - [anon_sym_template] = ACTIONS(1699), - [anon_sym_operator] = ACTIONS(1699), - [anon_sym_friend] = ACTIONS(1699), - [anon_sym_using] = ACTIONS(1699), - [anon_sym_static_assert] = ACTIONS(1699), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1699), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1699), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1699), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1699), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1699), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1699), - [anon_sym_MOZ_COLD] = ACTIONS(1699), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1699), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1699), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1699), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1699), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1699), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1699), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1699), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1699), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1699), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1699), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1699), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1699), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1699), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1699), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1699), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1699), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_NONNULL] = ACTIONS(1699), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1699), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1699), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1699), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1699), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_NORETURN] = ACTIONS(1699), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1699), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1699), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1699), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1699), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1699), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1699), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1699), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1699), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1699), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1699), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1699), - [anon_sym_MOZ_RAII] = ACTIONS(1699), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1699), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1699), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1699), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1699), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1699), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1699), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1699), - }, - [1212] = { - [sym_identifier] = ACTIONS(1759), - [aux_sym_preproc_def_token1] = ACTIONS(1759), - [aux_sym_preproc_if_token1] = ACTIONS(1759), - [aux_sym_preproc_if_token2] = ACTIONS(1759), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1759), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1759), - [sym_preproc_directive] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(1761), - [anon_sym_TILDE] = ACTIONS(1761), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_AMP_AMP] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1759), - [anon_sym_typedef] = ACTIONS(1759), - [anon_sym_extern] = ACTIONS(1759), - [anon_sym___attribute__] = ACTIONS(1759), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), - [anon_sym___declspec] = ACTIONS(1759), - [anon_sym___based] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_static] = ACTIONS(1759), - [anon_sym_register] = ACTIONS(1759), - [anon_sym_inline] = ACTIONS(1759), - [anon_sym_thread_local] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_volatile] = ACTIONS(1759), - [anon_sym_restrict] = ACTIONS(1759), - [anon_sym__Atomic] = ACTIONS(1759), - [anon_sym_mutable] = ACTIONS(1759), - [anon_sym_constexpr] = ACTIONS(1759), - [anon_sym_signed] = ACTIONS(1759), - [anon_sym_unsigned] = ACTIONS(1759), - [anon_sym_long] = ACTIONS(1759), - [anon_sym_short] = ACTIONS(1759), - [sym_primitive_type] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_class] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(1759), - [anon_sym_union] = ACTIONS(1759), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1759), - [anon_sym_virtual] = ACTIONS(1759), - [anon_sym_explicit] = ACTIONS(1759), - [anon_sym_public] = ACTIONS(1759), - [anon_sym_private] = ACTIONS(1759), - [anon_sym_protected] = ACTIONS(1759), - [sym_auto] = ACTIONS(1759), - [anon_sym_typename] = ACTIONS(1759), - [anon_sym_template] = ACTIONS(1759), - [anon_sym_operator] = ACTIONS(1759), - [anon_sym_friend] = ACTIONS(1759), - [anon_sym_using] = ACTIONS(1759), - [anon_sym_static_assert] = ACTIONS(1759), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1759), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1759), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1759), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1759), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1759), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1759), - [anon_sym_MOZ_COLD] = ACTIONS(1759), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1759), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1759), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1759), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1759), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1759), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1759), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1759), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1759), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1759), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1759), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1759), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1759), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1759), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1759), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1759), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1759), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_NONNULL] = ACTIONS(1759), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1759), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1759), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1759), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1759), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_NORETURN] = ACTIONS(1759), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1759), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1759), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1759), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1759), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1759), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1759), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1759), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1759), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1759), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1759), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1759), - [anon_sym_MOZ_RAII] = ACTIONS(1759), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1759), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1759), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1759), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1759), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1759), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1759), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1759), - }, - [1213] = { - [sym_identifier] = ACTIONS(1799), - [aux_sym_preproc_def_token1] = ACTIONS(1799), - [aux_sym_preproc_if_token1] = ACTIONS(1799), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1799), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1799), - [sym_preproc_directive] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_typedef] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym___attribute__] = ACTIONS(1799), - [anon_sym_COLON_COLON] = ACTIONS(1801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1801), - [anon_sym___declspec] = ACTIONS(1799), - [anon_sym___based] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_inline] = ACTIONS(1799), - [anon_sym_thread_local] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_volatile] = ACTIONS(1799), - [anon_sym_restrict] = ACTIONS(1799), - [anon_sym__Atomic] = ACTIONS(1799), - [anon_sym_mutable] = ACTIONS(1799), - [anon_sym_constexpr] = ACTIONS(1799), - [anon_sym_signed] = ACTIONS(1799), - [anon_sym_unsigned] = ACTIONS(1799), - [anon_sym_long] = ACTIONS(1799), - [anon_sym_short] = ACTIONS(1799), - [sym_primitive_type] = ACTIONS(1799), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_class] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1799), - [anon_sym_union] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1799), - [anon_sym_virtual] = ACTIONS(1799), - [anon_sym_explicit] = ACTIONS(1799), - [anon_sym_public] = ACTIONS(1799), - [anon_sym_private] = ACTIONS(1799), - [anon_sym_protected] = ACTIONS(1799), - [sym_auto] = ACTIONS(1799), - [anon_sym_typename] = ACTIONS(1799), - [anon_sym_template] = ACTIONS(1799), - [anon_sym_operator] = ACTIONS(1799), - [anon_sym_friend] = ACTIONS(1799), - [anon_sym_using] = ACTIONS(1799), - [anon_sym_static_assert] = ACTIONS(1799), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1799), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1799), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1799), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1799), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1799), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1799), - [anon_sym_MOZ_COLD] = ACTIONS(1799), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1799), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1799), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1799), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1799), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1799), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1799), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1799), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1799), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1799), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1799), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1799), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1799), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1799), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1799), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1799), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1799), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_NONNULL] = ACTIONS(1799), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1799), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1799), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1799), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1799), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_NORETURN] = ACTIONS(1799), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1799), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1799), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1799), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1799), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1799), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1799), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1799), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1799), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1799), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1799), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1799), - [anon_sym_MOZ_RAII] = ACTIONS(1799), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1799), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1799), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1799), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1799), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1799), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1799), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1799), - }, - [1214] = { - [sym_identifier] = ACTIONS(1593), - [aux_sym_preproc_def_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token2] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1593), - [sym_preproc_directive] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_typedef] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym___attribute__] = ACTIONS(1593), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1593), - [anon_sym___based] = ACTIONS(1593), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_inline] = ACTIONS(1593), - [anon_sym_thread_local] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_volatile] = ACTIONS(1593), - [anon_sym_restrict] = ACTIONS(1593), - [anon_sym__Atomic] = ACTIONS(1593), - [anon_sym_mutable] = ACTIONS(1593), - [anon_sym_constexpr] = ACTIONS(1593), - [anon_sym_signed] = ACTIONS(1593), - [anon_sym_unsigned] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [sym_primitive_type] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_class] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1593), - [anon_sym_virtual] = ACTIONS(1593), - [anon_sym_explicit] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [sym_auto] = ACTIONS(1593), - [anon_sym_typename] = ACTIONS(1593), - [anon_sym_template] = ACTIONS(1593), - [anon_sym_operator] = ACTIONS(1593), - [anon_sym_friend] = ACTIONS(1593), - [anon_sym_using] = ACTIONS(1593), - [anon_sym_static_assert] = ACTIONS(1593), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1593), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1593), - [anon_sym_MOZ_COLD] = ACTIONS(1593), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1593), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1593), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1593), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1593), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1593), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1593), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1593), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1593), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1593), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1593), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1593), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1593), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_RAII] = ACTIONS(1593), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1593), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1593), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1593), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1593), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1593), - }, - [1215] = { - [sym_identifier] = ACTIONS(1593), - [aux_sym_preproc_def_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token2] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1593), - [sym_preproc_directive] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_typedef] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym___attribute__] = ACTIONS(1593), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1593), - [anon_sym___based] = ACTIONS(1593), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_inline] = ACTIONS(1593), - [anon_sym_thread_local] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_volatile] = ACTIONS(1593), - [anon_sym_restrict] = ACTIONS(1593), - [anon_sym__Atomic] = ACTIONS(1593), - [anon_sym_mutable] = ACTIONS(1593), - [anon_sym_constexpr] = ACTIONS(1593), - [anon_sym_signed] = ACTIONS(1593), - [anon_sym_unsigned] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [sym_primitive_type] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_class] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1593), - [anon_sym_virtual] = ACTIONS(1593), - [anon_sym_explicit] = ACTIONS(1593), - [anon_sym_public] = ACTIONS(1593), - [anon_sym_private] = ACTIONS(1593), - [anon_sym_protected] = ACTIONS(1593), - [sym_auto] = ACTIONS(1593), - [anon_sym_typename] = ACTIONS(1593), - [anon_sym_template] = ACTIONS(1593), - [anon_sym_operator] = ACTIONS(1593), - [anon_sym_friend] = ACTIONS(1593), - [anon_sym_using] = ACTIONS(1593), - [anon_sym_static_assert] = ACTIONS(1593), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1593), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1593), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1593), - [anon_sym_MOZ_COLD] = ACTIONS(1593), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1593), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1593), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1593), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1593), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1593), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1593), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1593), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1593), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1593), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1593), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1593), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1593), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL] = ACTIONS(1593), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1593), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1593), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN] = ACTIONS(1593), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1593), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1593), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1593), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1593), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1593), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1593), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1593), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1593), - [anon_sym_MOZ_RAII] = ACTIONS(1593), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1593), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1593), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1593), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1593), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1593), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1593), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1593), - }, - [1216] = { - [sym_identifier] = ACTIONS(1735), - [aux_sym_preproc_def_token1] = ACTIONS(1735), - [aux_sym_preproc_if_token1] = ACTIONS(1735), - [aux_sym_preproc_if_token2] = ACTIONS(1735), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1735), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1735), - [sym_preproc_directive] = ACTIONS(1735), - [anon_sym_LPAREN2] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_typedef] = ACTIONS(1735), - [anon_sym_extern] = ACTIONS(1735), - [anon_sym___attribute__] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1737), - [anon_sym___declspec] = ACTIONS(1735), - [anon_sym___based] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_register] = ACTIONS(1735), - [anon_sym_inline] = ACTIONS(1735), - [anon_sym_thread_local] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_volatile] = ACTIONS(1735), - [anon_sym_restrict] = ACTIONS(1735), - [anon_sym__Atomic] = ACTIONS(1735), - [anon_sym_mutable] = ACTIONS(1735), - [anon_sym_constexpr] = ACTIONS(1735), - [anon_sym_signed] = ACTIONS(1735), - [anon_sym_unsigned] = ACTIONS(1735), - [anon_sym_long] = ACTIONS(1735), - [anon_sym_short] = ACTIONS(1735), - [sym_primitive_type] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [anon_sym_class] = ACTIONS(1735), - [anon_sym_struct] = ACTIONS(1735), - [anon_sym_union] = ACTIONS(1735), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1735), - [anon_sym_virtual] = ACTIONS(1735), - [anon_sym_explicit] = ACTIONS(1735), - [anon_sym_public] = ACTIONS(1735), - [anon_sym_private] = ACTIONS(1735), - [anon_sym_protected] = ACTIONS(1735), - [sym_auto] = ACTIONS(1735), - [anon_sym_typename] = ACTIONS(1735), - [anon_sym_template] = ACTIONS(1735), - [anon_sym_operator] = ACTIONS(1735), - [anon_sym_friend] = ACTIONS(1735), - [anon_sym_using] = ACTIONS(1735), - [anon_sym_static_assert] = ACTIONS(1735), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1735), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1735), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1735), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1735), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1735), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1735), - [anon_sym_MOZ_COLD] = ACTIONS(1735), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1735), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1735), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1735), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1735), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1735), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1735), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1735), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1735), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1735), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1735), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1735), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1735), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1735), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1735), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1735), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1735), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_NONNULL] = ACTIONS(1735), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1735), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1735), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1735), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1735), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_NORETURN] = ACTIONS(1735), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1735), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1735), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1735), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1735), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1735), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1735), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1735), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1735), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1735), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1735), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1735), - [anon_sym_MOZ_RAII] = ACTIONS(1735), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1735), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1735), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1735), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1735), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1735), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1735), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1735), - }, - [1217] = { - [sym_identifier] = ACTIONS(1739), - [aux_sym_preproc_def_token1] = ACTIONS(1739), - [aux_sym_preproc_if_token1] = ACTIONS(1739), - [aux_sym_preproc_if_token2] = ACTIONS(1739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1739), - [sym_preproc_directive] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_STAR] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_typedef] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym___attribute__] = ACTIONS(1739), - [anon_sym_COLON_COLON] = ACTIONS(1741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1741), - [anon_sym___declspec] = ACTIONS(1739), - [anon_sym___based] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_static] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_inline] = ACTIONS(1739), - [anon_sym_thread_local] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [anon_sym_volatile] = ACTIONS(1739), - [anon_sym_restrict] = ACTIONS(1739), - [anon_sym__Atomic] = ACTIONS(1739), - [anon_sym_mutable] = ACTIONS(1739), - [anon_sym_constexpr] = ACTIONS(1739), - [anon_sym_signed] = ACTIONS(1739), - [anon_sym_unsigned] = ACTIONS(1739), - [anon_sym_long] = ACTIONS(1739), - [anon_sym_short] = ACTIONS(1739), - [sym_primitive_type] = ACTIONS(1739), - [anon_sym_enum] = ACTIONS(1739), - [anon_sym_class] = ACTIONS(1739), - [anon_sym_struct] = ACTIONS(1739), - [anon_sym_union] = ACTIONS(1739), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1739), - [anon_sym_virtual] = ACTIONS(1739), - [anon_sym_explicit] = ACTIONS(1739), - [anon_sym_public] = ACTIONS(1739), - [anon_sym_private] = ACTIONS(1739), - [anon_sym_protected] = ACTIONS(1739), - [sym_auto] = ACTIONS(1739), - [anon_sym_typename] = ACTIONS(1739), - [anon_sym_template] = ACTIONS(1739), - [anon_sym_operator] = ACTIONS(1739), - [anon_sym_friend] = ACTIONS(1739), - [anon_sym_using] = ACTIONS(1739), - [anon_sym_static_assert] = ACTIONS(1739), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1739), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1739), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1739), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1739), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1739), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1739), - [anon_sym_MOZ_COLD] = ACTIONS(1739), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1739), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1739), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1739), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1739), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1739), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1739), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1739), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1739), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1739), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1739), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1739), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1739), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1739), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1739), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1739), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1739), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_NONNULL] = ACTIONS(1739), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1739), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1739), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1739), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1739), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_NORETURN] = ACTIONS(1739), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1739), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1739), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1739), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1739), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1739), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1739), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1739), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1739), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1739), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1739), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1739), - [anon_sym_MOZ_RAII] = ACTIONS(1739), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1739), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1739), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1739), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1739), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1739), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1739), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1739), - }, - [1218] = { - [sym_identifier] = ACTIONS(1747), - [aux_sym_preproc_def_token1] = ACTIONS(1747), - [aux_sym_preproc_if_token1] = ACTIONS(1747), - [aux_sym_preproc_if_token2] = ACTIONS(1747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1747), - [sym_preproc_directive] = ACTIONS(1747), - [anon_sym_LPAREN2] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1749), - [anon_sym_AMP_AMP] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_typedef] = ACTIONS(1747), - [anon_sym_extern] = ACTIONS(1747), - [anon_sym___attribute__] = ACTIONS(1747), - [anon_sym_COLON_COLON] = ACTIONS(1749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1749), - [anon_sym___declspec] = ACTIONS(1747), - [anon_sym___based] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_static] = ACTIONS(1747), - [anon_sym_register] = ACTIONS(1747), - [anon_sym_inline] = ACTIONS(1747), - [anon_sym_thread_local] = ACTIONS(1747), - [anon_sym_const] = ACTIONS(1747), - [anon_sym_volatile] = ACTIONS(1747), - [anon_sym_restrict] = ACTIONS(1747), - [anon_sym__Atomic] = ACTIONS(1747), - [anon_sym_mutable] = ACTIONS(1747), - [anon_sym_constexpr] = ACTIONS(1747), - [anon_sym_signed] = ACTIONS(1747), - [anon_sym_unsigned] = ACTIONS(1747), - [anon_sym_long] = ACTIONS(1747), - [anon_sym_short] = ACTIONS(1747), - [sym_primitive_type] = ACTIONS(1747), - [anon_sym_enum] = ACTIONS(1747), - [anon_sym_class] = ACTIONS(1747), - [anon_sym_struct] = ACTIONS(1747), - [anon_sym_union] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1747), - [anon_sym_virtual] = ACTIONS(1747), - [anon_sym_explicit] = ACTIONS(1747), - [anon_sym_public] = ACTIONS(1747), - [anon_sym_private] = ACTIONS(1747), - [anon_sym_protected] = ACTIONS(1747), - [sym_auto] = ACTIONS(1747), - [anon_sym_typename] = ACTIONS(1747), - [anon_sym_template] = ACTIONS(1747), - [anon_sym_operator] = ACTIONS(1747), - [anon_sym_friend] = ACTIONS(1747), - [anon_sym_using] = ACTIONS(1747), - [anon_sym_static_assert] = ACTIONS(1747), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1747), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1747), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1747), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1747), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1747), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1747), - [anon_sym_MOZ_COLD] = ACTIONS(1747), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1747), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1747), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1747), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1747), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1747), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1747), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1747), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1747), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1747), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1747), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1747), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1747), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1747), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1747), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1747), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1747), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_NONNULL] = ACTIONS(1747), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1747), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1747), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1747), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1747), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_NORETURN] = ACTIONS(1747), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1747), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1747), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1747), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1747), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1747), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1747), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1747), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1747), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1747), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1747), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1747), - [anon_sym_MOZ_RAII] = ACTIONS(1747), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1747), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1747), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1747), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1747), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1747), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1747), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1747), - }, - [1219] = { - [sym_identifier] = ACTIONS(1755), - [aux_sym_preproc_def_token1] = ACTIONS(1755), - [aux_sym_preproc_if_token1] = ACTIONS(1755), - [aux_sym_preproc_if_token2] = ACTIONS(1755), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1755), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1755), - [sym_preproc_directive] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_STAR] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_typedef] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym___attribute__] = ACTIONS(1755), - [anon_sym_COLON_COLON] = ACTIONS(1757), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1757), - [anon_sym___declspec] = ACTIONS(1755), - [anon_sym___based] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1755), - [anon_sym_static] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_inline] = ACTIONS(1755), - [anon_sym_thread_local] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [anon_sym_volatile] = ACTIONS(1755), - [anon_sym_restrict] = ACTIONS(1755), - [anon_sym__Atomic] = ACTIONS(1755), - [anon_sym_mutable] = ACTIONS(1755), - [anon_sym_constexpr] = ACTIONS(1755), - [anon_sym_signed] = ACTIONS(1755), - [anon_sym_unsigned] = ACTIONS(1755), - [anon_sym_long] = ACTIONS(1755), - [anon_sym_short] = ACTIONS(1755), - [sym_primitive_type] = ACTIONS(1755), - [anon_sym_enum] = ACTIONS(1755), - [anon_sym_class] = ACTIONS(1755), - [anon_sym_struct] = ACTIONS(1755), - [anon_sym_union] = ACTIONS(1755), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1755), - [anon_sym_virtual] = ACTIONS(1755), - [anon_sym_explicit] = ACTIONS(1755), - [anon_sym_public] = ACTIONS(1755), - [anon_sym_private] = ACTIONS(1755), - [anon_sym_protected] = ACTIONS(1755), - [sym_auto] = ACTIONS(1755), - [anon_sym_typename] = ACTIONS(1755), - [anon_sym_template] = ACTIONS(1755), - [anon_sym_operator] = ACTIONS(1755), - [anon_sym_friend] = ACTIONS(1755), - [anon_sym_using] = ACTIONS(1755), - [anon_sym_static_assert] = ACTIONS(1755), - [anon_sym_MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER] = ACTIONS(1755), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1755), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1755), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1755), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1755), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1755), - [anon_sym_MOZ_COLD] = ACTIONS(1755), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1755), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1755), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1755), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(1755), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1755), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1755), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1755), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1755), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1755), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1755), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1755), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1755), - [anon_sym_MOZ_MUST_USE] = ACTIONS(1755), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1755), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1755), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1755), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_NONNULL] = ACTIONS(1755), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1755), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1755), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1755), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(1755), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_NORETURN] = ACTIONS(1755), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1755), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1755), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1755), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1755), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1755), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1755), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1755), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(1755), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1755), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1755), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1755), - [anon_sym_MOZ_RAII] = ACTIONS(1755), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1755), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1755), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1755), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1755), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1755), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1755), - [anon_sym_JS_PUBLIC_API] = ACTIONS(1755), - }, - [1220] = { - [sym__declaration_modifiers] = STATE(1269), - [sym_attribute_specifier] = STATE(1269), - [sym_attribute_declaration] = STATE(1269), - [sym_ms_declspec_modifier] = STATE(1269), - [sym_storage_class_specifier] = STATE(1269), - [sym_type_qualifier] = STATE(1269), - [sym__type_specifier] = STATE(1386), - [sym_sized_type_specifier] = STATE(1410), - [sym_enum_specifier] = STATE(1410), - [sym_struct_specifier] = STATE(1410), - [sym_union_specifier] = STATE(1410), - [sym_decltype] = STATE(1410), - [sym_class_specifier] = STATE(1410), - [sym_virtual_function_specifier] = STATE(1269), - [sym_dependent_type] = STATE(1410), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3895), - [sym_qualified_type_identifier] = STATE(1454), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1269), - [aux_sym_sized_type_specifier_repeat1] = STATE(1465), - [sym_identifier] = ACTIONS(2375), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [sym_primitive_type] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1949), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(1939), - [anon_sym_typename] = ACTIONS(1953), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [1221] = { - [sym__declaration_modifiers] = STATE(1269), - [sym_attribute_specifier] = STATE(1269), - [sym_attribute_declaration] = STATE(1269), - [sym_ms_declspec_modifier] = STATE(1269), - [sym_storage_class_specifier] = STATE(1269), - [sym_type_qualifier] = STATE(1269), - [sym__type_specifier] = STATE(1276), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1269), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3908), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1269), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2375), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(1463), - [anon_sym_class] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_union] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [1222] = { - [sym__declaration_modifiers] = STATE(1269), - [sym_attribute_specifier] = STATE(1269), - [sym_attribute_declaration] = STATE(1269), - [sym_ms_declspec_modifier] = STATE(1269), - [sym_storage_class_specifier] = STATE(1269), - [sym_type_qualifier] = STATE(1269), - [sym__type_specifier] = STATE(1276), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1269), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1269), - [aux_sym_sized_type_specifier_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [1223] = { - [sym__declaration_modifiers] = STATE(1269), - [sym_attribute_specifier] = STATE(1269), - [sym_attribute_declaration] = STATE(1269), - [sym_ms_declspec_modifier] = STATE(1269), - [sym_storage_class_specifier] = STATE(1269), - [sym_type_qualifier] = STATE(1269), - [sym__type_specifier] = STATE(1490), - [sym_sized_type_specifier] = STATE(1358), - [sym_enum_specifier] = STATE(1358), - [sym_struct_specifier] = STATE(1358), - [sym_union_specifier] = STATE(1358), - [sym_decltype] = STATE(1358), - [sym_class_specifier] = STATE(1358), - [sym_virtual_function_specifier] = STATE(1269), - [sym_dependent_type] = STATE(1358), - [sym_template_type] = STATE(1298), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1357), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1269), - [aux_sym_sized_type_specifier_repeat1] = STATE(1338), - [sym_identifier] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2321), - [anon_sym_unsigned] = ACTIONS(2321), - [anon_sym_long] = ACTIONS(2321), - [anon_sym_short] = ACTIONS(2321), - [sym_primitive_type] = ACTIONS(111), - [anon_sym_enum] = ACTIONS(2323), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(2327), - [anon_sym_union] = ACTIONS(2329), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(105), - [anon_sym_virtual] = ACTIONS(107), - [sym_auto] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(2331), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(145), - [anon_sym_MOZ_COLD] = ACTIONS(145), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(145), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(145), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(145), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(145), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(145), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(145), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(145), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(145), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(145), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(145), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(145), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(145), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(145), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(145), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(145), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(145), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(145), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(145), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(145), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(145), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(145), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(145), - [anon_sym_MOZ_RAII] = ACTIONS(145), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(145), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(145), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(145), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(145), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(145), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(145), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(145), - [anon_sym_JS_PUBLIC_API] = ACTIONS(145), - }, - [1224] = { - [sym__expression] = STATE(2123), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_initializer_list] = STATE(2119), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3114), - [anon_sym_RPAREN] = ACTIONS(3114), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1029), - [anon_sym_SLASH] = ACTIONS(3122), - [anon_sym_PERCENT] = ACTIONS(3122), - [anon_sym_PIPE_PIPE] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_CARET] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_GT_EQ] = ACTIONS(3114), - [anon_sym_LT_EQ] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_LT_LT] = ACTIONS(3122), - [anon_sym_GT_GT] = ACTIONS(3122), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3114), - [anon_sym_EQ] = ACTIONS(3122), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_QMARK] = ACTIONS(3114), - [anon_sym_STAR_EQ] = ACTIONS(3114), - [anon_sym_SLASH_EQ] = ACTIONS(3114), - [anon_sym_PERCENT_EQ] = ACTIONS(3114), - [anon_sym_PLUS_EQ] = ACTIONS(3114), - [anon_sym_DASH_EQ] = ACTIONS(3114), - [anon_sym_LT_LT_EQ] = ACTIONS(3114), - [anon_sym_GT_GT_EQ] = ACTIONS(3114), - [anon_sym_AMP_EQ] = ACTIONS(3114), - [anon_sym_CARET_EQ] = ACTIONS(3114), - [anon_sym_PIPE_EQ] = ACTIONS(3114), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [anon_sym_DOT] = ACTIONS(3122), - [anon_sym_DASH_GT] = ACTIONS(3114), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1225] = { - [sym_identifier] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2514), - [anon_sym_COMMA] = ACTIONS(2514), - [anon_sym_RPAREN] = ACTIONS(2514), - [anon_sym_LPAREN2] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2521), - [anon_sym_STAR] = ACTIONS(2516), - [anon_sym_SLASH] = ACTIONS(2521), - [anon_sym_PERCENT] = ACTIONS(2514), - [anon_sym_PIPE_PIPE] = ACTIONS(2514), - [anon_sym_AMP_AMP] = ACTIONS(2516), - [anon_sym_PIPE] = ACTIONS(2521), - [anon_sym_CARET] = ACTIONS(2514), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_EQ_EQ] = ACTIONS(2514), - [anon_sym_BANG_EQ] = ACTIONS(2514), - [anon_sym_GT] = ACTIONS(2521), - [anon_sym_GT_EQ] = ACTIONS(2514), - [anon_sym_LT_EQ] = ACTIONS(2514), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_LT_LT] = ACTIONS(2514), - [anon_sym_GT_GT] = ACTIONS(2514), - [anon_sym_SEMI] = ACTIONS(2514), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym___attribute__] = ACTIONS(2512), - [anon_sym_COLON_COLON] = ACTIONS(2519), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2519), - [anon_sym___declspec] = ACTIONS(2512), - [anon_sym___based] = ACTIONS(2512), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_LBRACK] = ACTIONS(2523), - [anon_sym_static] = ACTIONS(2512), - [anon_sym_register] = ACTIONS(2512), - [anon_sym_inline] = ACTIONS(2512), - [anon_sym_thread_local] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [anon_sym_volatile] = ACTIONS(2512), - [anon_sym_restrict] = ACTIONS(2512), - [anon_sym__Atomic] = ACTIONS(2512), - [anon_sym_mutable] = ACTIONS(2512), - [anon_sym_constexpr] = ACTIONS(2512), - [anon_sym_QMARK] = ACTIONS(2514), - [anon_sym_DASH_DASH] = ACTIONS(2514), - [anon_sym_PLUS_PLUS] = ACTIONS(2514), - [anon_sym_DOT] = ACTIONS(2521), - [anon_sym_DASH_GT] = ACTIONS(2514), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2512), - [anon_sym_template] = ACTIONS(2512), - [anon_sym_operator] = ACTIONS(2512), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2512), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2512), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2512), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2512), - [anon_sym_MOZ_COLD] = ACTIONS(2512), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2512), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2512), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2512), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2512), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2512), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2512), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2512), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2512), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2512), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2512), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2512), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2512), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2512), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_NONNULL] = ACTIONS(2512), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2512), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2512), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2512), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2512), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2512), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2512), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2512), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2512), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2512), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2512), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2512), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2512), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2512), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2512), - [anon_sym_MOZ_RAII] = ACTIONS(2512), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2512), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2512), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2512), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2512), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2512), - }, - [1226] = { - [sym_identifier] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2516), - [anon_sym_COMMA] = ACTIONS(2516), - [anon_sym_RPAREN] = ACTIONS(2516), - [anon_sym_LPAREN2] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2521), - [anon_sym_STAR] = ACTIONS(2516), - [anon_sym_SLASH] = ACTIONS(2521), - [anon_sym_PERCENT] = ACTIONS(2514), - [anon_sym_PIPE_PIPE] = ACTIONS(2514), - [anon_sym_AMP_AMP] = ACTIONS(2516), - [anon_sym_PIPE] = ACTIONS(2521), - [anon_sym_CARET] = ACTIONS(2514), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_EQ_EQ] = ACTIONS(2514), - [anon_sym_BANG_EQ] = ACTIONS(2514), - [anon_sym_GT] = ACTIONS(2521), - [anon_sym_GT_EQ] = ACTIONS(2514), - [anon_sym_LT_EQ] = ACTIONS(2514), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_LT_LT] = ACTIONS(2514), - [anon_sym_GT_GT] = ACTIONS(2514), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym___attribute__] = ACTIONS(2512), - [anon_sym_COLON_COLON] = ACTIONS(2519), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2519), - [anon_sym___declspec] = ACTIONS(2512), - [anon_sym___based] = ACTIONS(2512), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_LBRACK] = ACTIONS(2523), - [anon_sym_EQ] = ACTIONS(2512), - [anon_sym_static] = ACTIONS(2512), - [anon_sym_register] = ACTIONS(2512), - [anon_sym_inline] = ACTIONS(2512), - [anon_sym_thread_local] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [anon_sym_volatile] = ACTIONS(2512), - [anon_sym_restrict] = ACTIONS(2512), - [anon_sym__Atomic] = ACTIONS(2512), - [anon_sym_mutable] = ACTIONS(2512), - [anon_sym_constexpr] = ACTIONS(2512), - [anon_sym_QMARK] = ACTIONS(2514), - [anon_sym_DASH_DASH] = ACTIONS(2514), - [anon_sym_PLUS_PLUS] = ACTIONS(2514), - [anon_sym_DOT] = ACTIONS(2521), - [anon_sym_DASH_GT] = ACTIONS(2514), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2512), - [anon_sym_template] = ACTIONS(2512), - [anon_sym_operator] = ACTIONS(2512), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2512), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2512), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2512), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2512), - [anon_sym_MOZ_COLD] = ACTIONS(2512), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2512), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2512), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2512), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2512), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2512), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2512), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2512), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2512), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2512), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2512), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2512), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2512), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2512), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_NONNULL] = ACTIONS(2512), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2512), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2512), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2512), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2512), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2512), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2512), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2512), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2512), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2512), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2512), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2512), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2512), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2512), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2512), - [anon_sym_MOZ_RAII] = ACTIONS(2512), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2512), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2512), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2512), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2512), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2512), - }, - [1227] = { - [sym_identifier] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2514), - [anon_sym_COMMA] = ACTIONS(2514), - [anon_sym_LPAREN2] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2521), - [anon_sym_STAR] = ACTIONS(2516), - [anon_sym_SLASH] = ACTIONS(2521), - [anon_sym_PERCENT] = ACTIONS(2514), - [anon_sym_PIPE_PIPE] = ACTIONS(2514), - [anon_sym_AMP_AMP] = ACTIONS(2516), - [anon_sym_PIPE] = ACTIONS(2521), - [anon_sym_CARET] = ACTIONS(2514), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_EQ_EQ] = ACTIONS(2514), - [anon_sym_BANG_EQ] = ACTIONS(2514), - [anon_sym_GT] = ACTIONS(2521), - [anon_sym_GT_EQ] = ACTIONS(2514), - [anon_sym_LT_EQ] = ACTIONS(2514), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_LT_LT] = ACTIONS(2514), - [anon_sym_GT_GT] = ACTIONS(2514), - [anon_sym_SEMI] = ACTIONS(2516), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym___attribute__] = ACTIONS(2512), - [anon_sym_COLON_COLON] = ACTIONS(2519), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2516), - [anon_sym___declspec] = ACTIONS(2512), - [anon_sym___based] = ACTIONS(2512), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_RBRACE] = ACTIONS(2514), - [anon_sym_LBRACK] = ACTIONS(2523), - [anon_sym_static] = ACTIONS(2512), - [anon_sym_register] = ACTIONS(2512), - [anon_sym_inline] = ACTIONS(2512), - [anon_sym_thread_local] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [anon_sym_volatile] = ACTIONS(2512), - [anon_sym_restrict] = ACTIONS(2512), - [anon_sym__Atomic] = ACTIONS(2512), - [anon_sym_mutable] = ACTIONS(2512), - [anon_sym_constexpr] = ACTIONS(2512), - [anon_sym_QMARK] = ACTIONS(2514), - [anon_sym_DASH_DASH] = ACTIONS(2514), - [anon_sym_PLUS_PLUS] = ACTIONS(2514), - [anon_sym_DOT] = ACTIONS(2521), - [anon_sym_DASH_GT] = ACTIONS(2514), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2512), - [anon_sym_template] = ACTIONS(2512), - [anon_sym_operator] = ACTIONS(2512), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2512), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2512), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2512), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2512), - [anon_sym_MOZ_COLD] = ACTIONS(2512), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2512), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2512), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2512), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2512), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2512), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2512), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2512), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2512), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2512), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2512), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2512), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2512), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2512), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_NONNULL] = ACTIONS(2512), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2512), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2512), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2512), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2512), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2512), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2512), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2512), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2512), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2512), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2512), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2512), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2512), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2512), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2512), - [anon_sym_MOZ_RAII] = ACTIONS(2512), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2512), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2512), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2512), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2512), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2512), - }, - [1228] = { - [sym_identifier] = ACTIONS(3150), - [anon_sym_COMMA] = ACTIONS(3152), - [anon_sym_RPAREN] = ACTIONS(3152), - [anon_sym_LPAREN2] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_AMP_AMP] = ACTIONS(3152), - [anon_sym_AMP] = ACTIONS(3150), - [anon_sym_SEMI] = ACTIONS(3152), - [anon_sym_extern] = ACTIONS(3150), - [anon_sym___attribute__] = ACTIONS(3150), - [anon_sym_COLON_COLON] = ACTIONS(3152), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3152), - [anon_sym___declspec] = ACTIONS(3150), - [anon_sym___based] = ACTIONS(3150), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_EQ] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3150), - [anon_sym_register] = ACTIONS(3150), - [anon_sym_inline] = ACTIONS(3150), - [anon_sym_thread_local] = ACTIONS(3150), - [anon_sym_const] = ACTIONS(3150), - [anon_sym_volatile] = ACTIONS(3150), - [anon_sym_restrict] = ACTIONS(3150), - [anon_sym__Atomic] = ACTIONS(3150), - [anon_sym_mutable] = ACTIONS(3150), - [anon_sym_constexpr] = ACTIONS(3150), - [anon_sym_signed] = ACTIONS(3150), - [anon_sym_unsigned] = ACTIONS(3150), - [anon_sym_long] = ACTIONS(3150), - [anon_sym_short] = ACTIONS(3150), - [sym_primitive_type] = ACTIONS(3150), - [anon_sym_enum] = ACTIONS(3150), - [anon_sym_class] = ACTIONS(3150), - [anon_sym_struct] = ACTIONS(3150), - [anon_sym_union] = ACTIONS(3150), - [anon_sym_DASH_GT] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3150), - [anon_sym_final] = ACTIONS(3150), - [anon_sym_override] = ACTIONS(3150), - [anon_sym_virtual] = ACTIONS(3150), - [anon_sym_explicit] = ACTIONS(3150), - [sym_auto] = ACTIONS(3150), - [anon_sym_typename] = ACTIONS(3150), - [anon_sym_template] = ACTIONS(3150), - [anon_sym_GT2] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3150), - [anon_sym_noexcept] = ACTIONS(3150), - [anon_sym_throw] = ACTIONS(3150), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3150), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3150), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3150), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3150), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3150), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3150), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3150), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3150), - [anon_sym_MOZ_COLD] = ACTIONS(3150), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3150), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3150), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3150), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3150), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3150), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3150), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3150), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3150), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3150), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3150), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3150), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3150), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3150), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3150), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3150), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3150), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3150), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3150), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3150), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3150), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_NONNULL] = ACTIONS(3150), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3150), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3150), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3150), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3150), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3150), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_NORETURN] = ACTIONS(3150), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3150), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3150), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3150), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3150), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3150), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3150), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3150), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3150), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3150), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3150), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3150), - [anon_sym_MOZ_RAII] = ACTIONS(3150), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3150), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3150), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3150), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3150), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3150), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3150), - }, - [1229] = { - [sym_identifier] = ACTIONS(3154), - [anon_sym_COMMA] = ACTIONS(3156), - [anon_sym_RPAREN] = ACTIONS(3156), - [anon_sym_LPAREN2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(3156), - [anon_sym_AMP_AMP] = ACTIONS(3156), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3156), - [anon_sym_extern] = ACTIONS(3154), - [anon_sym___attribute__] = ACTIONS(3154), - [anon_sym_COLON_COLON] = ACTIONS(3156), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3156), - [anon_sym___declspec] = ACTIONS(3154), - [anon_sym___based] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_EQ] = ACTIONS(3156), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_register] = ACTIONS(3154), - [anon_sym_inline] = ACTIONS(3154), - [anon_sym_thread_local] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_volatile] = ACTIONS(3154), - [anon_sym_restrict] = ACTIONS(3154), - [anon_sym__Atomic] = ACTIONS(3154), - [anon_sym_mutable] = ACTIONS(3154), - [anon_sym_constexpr] = ACTIONS(3154), - [anon_sym_signed] = ACTIONS(3154), - [anon_sym_unsigned] = ACTIONS(3154), - [anon_sym_long] = ACTIONS(3154), - [anon_sym_short] = ACTIONS(3154), - [sym_primitive_type] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_struct] = ACTIONS(3154), - [anon_sym_union] = ACTIONS(3154), - [anon_sym_DASH_GT] = ACTIONS(3156), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3154), - [anon_sym_final] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_virtual] = ACTIONS(3154), - [anon_sym_explicit] = ACTIONS(3154), - [sym_auto] = ACTIONS(3154), - [anon_sym_typename] = ACTIONS(3154), - [anon_sym_template] = ACTIONS(3154), - [anon_sym_GT2] = ACTIONS(3156), - [anon_sym_operator] = ACTIONS(3154), - [anon_sym_noexcept] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3154), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3154), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3154), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3154), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3154), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3154), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3154), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3154), - [anon_sym_MOZ_COLD] = ACTIONS(3154), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3154), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3154), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3154), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3154), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3154), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3154), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3154), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3154), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3154), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3154), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3154), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3154), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3154), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3154), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3154), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3154), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3154), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3154), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3154), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3154), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_NONNULL] = ACTIONS(3154), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3154), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3154), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3154), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3154), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3154), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_NORETURN] = ACTIONS(3154), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3154), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3154), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3154), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3154), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3154), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3154), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3154), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3154), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3154), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3154), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3154), - [anon_sym_MOZ_RAII] = ACTIONS(3154), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3154), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3154), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3154), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3154), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3154), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3154), - }, - [1230] = { - [sym_identifier] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3160), - [anon_sym_RPAREN] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3160), - [anon_sym_AMP_AMP] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_extern] = ACTIONS(3158), - [anon_sym___attribute__] = ACTIONS(3158), - [anon_sym_COLON_COLON] = ACTIONS(3160), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3160), - [anon_sym___declspec] = ACTIONS(3158), - [anon_sym___based] = ACTIONS(3158), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_EQ] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3158), - [anon_sym_register] = ACTIONS(3158), - [anon_sym_inline] = ACTIONS(3158), - [anon_sym_thread_local] = ACTIONS(3158), - [anon_sym_const] = ACTIONS(3158), - [anon_sym_volatile] = ACTIONS(3158), - [anon_sym_restrict] = ACTIONS(3158), - [anon_sym__Atomic] = ACTIONS(3158), - [anon_sym_mutable] = ACTIONS(3158), - [anon_sym_constexpr] = ACTIONS(3158), - [anon_sym_signed] = ACTIONS(3158), - [anon_sym_unsigned] = ACTIONS(3158), - [anon_sym_long] = ACTIONS(3158), - [anon_sym_short] = ACTIONS(3158), - [sym_primitive_type] = ACTIONS(3158), - [anon_sym_enum] = ACTIONS(3158), - [anon_sym_class] = ACTIONS(3158), - [anon_sym_struct] = ACTIONS(3158), - [anon_sym_union] = ACTIONS(3158), - [anon_sym_DASH_GT] = ACTIONS(3160), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3158), - [anon_sym_final] = ACTIONS(3158), - [anon_sym_override] = ACTIONS(3158), - [anon_sym_virtual] = ACTIONS(3158), - [anon_sym_explicit] = ACTIONS(3158), - [sym_auto] = ACTIONS(3158), - [anon_sym_typename] = ACTIONS(3158), - [anon_sym_template] = ACTIONS(3158), - [anon_sym_GT2] = ACTIONS(3160), - [anon_sym_operator] = ACTIONS(3158), - [anon_sym_noexcept] = ACTIONS(3158), - [anon_sym_throw] = ACTIONS(3158), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3158), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3158), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3158), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3158), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3158), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3158), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3158), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3158), - [anon_sym_MOZ_COLD] = ACTIONS(3158), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3158), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3158), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3158), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3158), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3158), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3158), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3158), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3158), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3158), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3158), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3158), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3158), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3158), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3158), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3158), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3158), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3158), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3158), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3158), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3158), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_NONNULL] = ACTIONS(3158), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3158), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3158), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3158), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3158), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3158), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_NORETURN] = ACTIONS(3158), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3158), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3158), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3158), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3158), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3158), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3158), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3158), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3158), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3158), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3158), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3158), - [anon_sym_MOZ_RAII] = ACTIONS(3158), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3158), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3158), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3158), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3158), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3158), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3158), - }, - [1231] = { - [sym__expression] = STATE(2332), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_initializer_list] = STATE(2440), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3114), - [anon_sym_LPAREN2] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3170), - [anon_sym_SLASH] = ACTIONS(3122), - [anon_sym_PERCENT] = ACTIONS(3122), - [anon_sym_PIPE_PIPE] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_CARET] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3170), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_GT_EQ] = ACTIONS(3122), - [anon_sym_LT_EQ] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_LT_LT] = ACTIONS(3122), - [anon_sym_GT_GT] = ACTIONS(3122), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_EQ] = ACTIONS(3122), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_QMARK] = ACTIONS(3114), - [anon_sym_STAR_EQ] = ACTIONS(3114), - [anon_sym_SLASH_EQ] = ACTIONS(3114), - [anon_sym_PERCENT_EQ] = ACTIONS(3114), - [anon_sym_PLUS_EQ] = ACTIONS(3114), - [anon_sym_DASH_EQ] = ACTIONS(3114), - [anon_sym_LT_LT_EQ] = ACTIONS(3114), - [anon_sym_GT_GT_EQ] = ACTIONS(3122), - [anon_sym_AMP_EQ] = ACTIONS(3114), - [anon_sym_CARET_EQ] = ACTIONS(3114), - [anon_sym_PIPE_EQ] = ACTIONS(3114), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [anon_sym_DOT] = ACTIONS(3122), - [anon_sym_DASH_GT] = ACTIONS(3114), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_GT2] = ACTIONS(3114), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1232] = { - [sym__expression] = STATE(2431), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_initializer_list] = STATE(2119), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3114), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3206), - [anon_sym_SLASH] = ACTIONS(3122), - [anon_sym_PERCENT] = ACTIONS(3122), - [anon_sym_PIPE_PIPE] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_CARET] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_GT_EQ] = ACTIONS(3114), - [anon_sym_LT_EQ] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_LT_LT] = ACTIONS(3122), - [anon_sym_GT_GT] = ACTIONS(3122), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_EQ] = ACTIONS(3122), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_COLON] = ACTIONS(3122), - [anon_sym_QMARK] = ACTIONS(3114), - [anon_sym_STAR_EQ] = ACTIONS(3114), - [anon_sym_SLASH_EQ] = ACTIONS(3114), - [anon_sym_PERCENT_EQ] = ACTIONS(3114), - [anon_sym_PLUS_EQ] = ACTIONS(3114), - [anon_sym_DASH_EQ] = ACTIONS(3114), - [anon_sym_LT_LT_EQ] = ACTIONS(3114), - [anon_sym_GT_GT_EQ] = ACTIONS(3114), - [anon_sym_AMP_EQ] = ACTIONS(3114), - [anon_sym_CARET_EQ] = ACTIONS(3114), - [anon_sym_PIPE_EQ] = ACTIONS(3114), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [anon_sym_DOT] = ACTIONS(3122), - [anon_sym_DASH_GT] = ACTIONS(3114), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1233] = { - [sym_type_qualifier] = STATE(2544), - [sym__type_specifier] = STATE(3251), - [sym_sized_type_specifier] = STATE(2558), - [sym_enum_specifier] = STATE(2558), - [sym_struct_specifier] = STATE(2558), - [sym_union_specifier] = STATE(2558), - [sym__expression] = STATE(2766), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_type_descriptor] = STATE(4104), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym_decltype] = STATE(2558), - [sym_class_specifier] = STATE(2558), - [sym__class_name] = STATE(4690), - [sym_dependent_type] = STATE(2558), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_type_parameter_pack_expansion] = STATE(4285), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3533), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [aux_sym_type_definition_repeat1] = STATE(2544), - [aux_sym_sized_type_specifier_repeat1] = STATE(2255), - [sym_identifier] = ACTIONS(3220), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(3232), - [anon_sym_unsigned] = ACTIONS(3232), - [anon_sym_long] = ACTIONS(3232), - [anon_sym_short] = ACTIONS(3232), - [sym_primitive_type] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3236), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_struct] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3256), - [sym_auto] = ACTIONS(3258), - [anon_sym_typename] = ACTIONS(3260), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_GT2] = ACTIONS(3262), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1234] = { - [sym_type_qualifier] = STATE(2544), - [sym__type_specifier] = STATE(3251), - [sym_sized_type_specifier] = STATE(2558), - [sym_enum_specifier] = STATE(2558), - [sym_struct_specifier] = STATE(2558), - [sym_union_specifier] = STATE(2558), - [sym__expression] = STATE(2759), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_type_descriptor] = STATE(4026), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym_decltype] = STATE(2558), - [sym_class_specifier] = STATE(2558), - [sym__class_name] = STATE(4690), - [sym_dependent_type] = STATE(2558), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_type_parameter_pack_expansion] = STATE(4307), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3533), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [aux_sym_type_definition_repeat1] = STATE(2544), - [aux_sym_sized_type_specifier_repeat1] = STATE(2255), - [sym_identifier] = ACTIONS(3220), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(3232), - [anon_sym_unsigned] = ACTIONS(3232), - [anon_sym_long] = ACTIONS(3232), - [anon_sym_short] = ACTIONS(3232), - [sym_primitive_type] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3236), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_struct] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), + [STATE(401)] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2004), + [aux_sym_preproc_def_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [sym_preproc_directive] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP_AMP] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(2004), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_virtual] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym_COLON_COLON] = ACTIONS(2006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2006), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___based] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [anon_sym_LBRACK] = ACTIONS(2004), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [anon_sym___inline] = ACTIONS(2004), + [anon_sym___inline__] = ACTIONS(2004), + [anon_sym___forceinline] = ACTIONS(2004), + [anon_sym_thread_local] = ACTIONS(2004), + [anon_sym___thread] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_constexpr] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym___restrict__] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym__Noreturn] = ACTIONS(2004), + [anon_sym_noreturn] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym_mutable] = ACTIONS(2004), + [anon_sym_constinit] = ACTIONS(2004), + [anon_sym_consteval] = ACTIONS(2004), + [anon_sym_alignas] = ACTIONS(2004), + [anon_sym__Alignas] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_class] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_else] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym___try] = ACTIONS(2004), + [anon_sym___leave] = ACTIONS(2004), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [anon_sym___alignof__] = ACTIONS(2004), + [anon_sym___alignof] = ACTIONS(2004), + [anon_sym__alignof] = ACTIONS(2004), + [anon_sym_alignof] = ACTIONS(2004), + [anon_sym__Alignof] = ACTIONS(2004), + [anon_sym_offsetof] = ACTIONS(2004), + [anon_sym__Generic] = ACTIONS(2004), + [anon_sym_asm] = ACTIONS(2004), + [anon_sym___asm__] = ACTIONS(2004), + [anon_sym___asm] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2004), + [anon_sym_nullptr] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2004), + [anon_sym_decltype] = ACTIONS(2004), + [anon_sym_explicit] = ACTIONS(2004), + [anon_sym_typename] = ACTIONS(2004), + [anon_sym_template] = ACTIONS(2004), + [anon_sym_operator] = ACTIONS(2004), + [anon_sym_try] = ACTIONS(2004), + [anon_sym_delete] = ACTIONS(2004), + [anon_sym_throw] = ACTIONS(2004), + [anon_sym_namespace] = ACTIONS(2004), + [anon_sym_using] = ACTIONS(2004), + [anon_sym_static_assert] = ACTIONS(2004), + [anon_sym_concept] = ACTIONS(2004), + [anon_sym_co_return] = ACTIONS(2004), + [anon_sym_co_yield] = ACTIONS(2004), + [anon_sym_R_DQUOTE] = ACTIONS(2006), + [anon_sym_LR_DQUOTE] = ACTIONS(2006), + [anon_sym_uR_DQUOTE] = ACTIONS(2006), + [anon_sym_UR_DQUOTE] = ACTIONS(2006), + [anon_sym_u8R_DQUOTE] = ACTIONS(2006), + [anon_sym_co_await] = ACTIONS(2004), + [anon_sym_new] = ACTIONS(2004), + [anon_sym_requires] = ACTIONS(2004), + [sym_this] = ACTIONS(2004), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_FORWARD] = ACTIONS(2004), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_PS_GET] = ACTIONS(2004), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2004), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2004), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2004), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2004), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2004), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2004), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2004), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2004), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2004), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2004), + [anon_sym_MOZ_COLD] = ACTIONS(2004), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2004), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2004), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2004), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2004), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2004), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2004), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2004), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2004), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2004), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2004), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2004), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2004), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2004), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2004), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2004), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2004), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2004), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2004), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2004), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2004), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_NONNULL] = ACTIONS(2004), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2004), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2004), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2004), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2004), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2004), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_NORETURN] = ACTIONS(2004), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2004), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2004), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2004), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2004), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2004), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2004), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2004), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2004), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2004), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2004), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2004), + [anon_sym_MOZ_RAII] = ACTIONS(2004), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2004), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2004), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2004), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2004), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2004), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2004), + }, + [STATE(402)] = { + [sym_identifier] = ACTIONS(2008), + [aux_sym_preproc_include_token1] = ACTIONS(2008), + [aux_sym_preproc_def_token1] = ACTIONS(2008), + [aux_sym_preproc_if_token1] = ACTIONS(2008), + [aux_sym_preproc_if_token2] = ACTIONS(2008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2008), + [sym_preproc_directive] = ACTIONS(2008), + [anon_sym_LPAREN2] = ACTIONS(2010), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(2010), + [anon_sym_AMP_AMP] = ACTIONS(2010), + [anon_sym_AMP] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym___extension__] = ACTIONS(2008), + [anon_sym_typedef] = ACTIONS(2008), + [anon_sym_virtual] = ACTIONS(2008), + [anon_sym_extern] = ACTIONS(2008), + [anon_sym___attribute__] = ACTIONS(2008), + [anon_sym___attribute] = ACTIONS(2008), + [anon_sym_COLON_COLON] = ACTIONS(2010), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2010), + [anon_sym___declspec] = ACTIONS(2008), + [anon_sym___based] = ACTIONS(2008), + [anon_sym___cdecl] = ACTIONS(2008), + [anon_sym___clrcall] = ACTIONS(2008), + [anon_sym___stdcall] = ACTIONS(2008), + [anon_sym___fastcall] = ACTIONS(2008), + [anon_sym___thiscall] = ACTIONS(2008), + [anon_sym___vectorcall] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2010), + [anon_sym_signed] = ACTIONS(2008), + [anon_sym_unsigned] = ACTIONS(2008), + [anon_sym_long] = ACTIONS(2008), + [anon_sym_short] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_static] = ACTIONS(2008), + [anon_sym_register] = ACTIONS(2008), + [anon_sym_inline] = ACTIONS(2008), + [anon_sym___inline] = ACTIONS(2008), + [anon_sym___inline__] = ACTIONS(2008), + [anon_sym___forceinline] = ACTIONS(2008), + [anon_sym_thread_local] = ACTIONS(2008), + [anon_sym___thread] = ACTIONS(2008), + [anon_sym_const] = ACTIONS(2008), + [anon_sym_constexpr] = ACTIONS(2008), + [anon_sym_volatile] = ACTIONS(2008), + [anon_sym_restrict] = ACTIONS(2008), + [anon_sym___restrict__] = ACTIONS(2008), + [anon_sym__Atomic] = ACTIONS(2008), + [anon_sym__Noreturn] = ACTIONS(2008), + [anon_sym_noreturn] = ACTIONS(2008), + [anon_sym__Nonnull] = ACTIONS(2008), + [anon_sym_mutable] = ACTIONS(2008), + [anon_sym_constinit] = ACTIONS(2008), + [anon_sym_consteval] = ACTIONS(2008), + [anon_sym_alignas] = ACTIONS(2008), + [anon_sym__Alignas] = ACTIONS(2008), + [sym_primitive_type] = ACTIONS(2008), + [anon_sym_enum] = ACTIONS(2008), + [anon_sym_class] = ACTIONS(2008), + [anon_sym_struct] = ACTIONS(2008), + [anon_sym_union] = ACTIONS(2008), + [anon_sym_if] = ACTIONS(2008), + [anon_sym_else] = ACTIONS(2008), + [anon_sym_switch] = ACTIONS(2008), + [anon_sym_case] = ACTIONS(2008), + [anon_sym_default] = ACTIONS(2008), + [anon_sym_while] = ACTIONS(2008), + [anon_sym_do] = ACTIONS(2008), + [anon_sym_for] = ACTIONS(2008), + [anon_sym_return] = ACTIONS(2008), + [anon_sym_break] = ACTIONS(2008), + [anon_sym_continue] = ACTIONS(2008), + [anon_sym_goto] = ACTIONS(2008), + [anon_sym___try] = ACTIONS(2008), + [anon_sym___leave] = ACTIONS(2008), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2010), + [anon_sym_PLUS_PLUS] = ACTIONS(2010), + [anon_sym_sizeof] = ACTIONS(2008), + [anon_sym___alignof__] = ACTIONS(2008), + [anon_sym___alignof] = ACTIONS(2008), + [anon_sym__alignof] = ACTIONS(2008), + [anon_sym_alignof] = ACTIONS(2008), + [anon_sym__Alignof] = ACTIONS(2008), + [anon_sym_offsetof] = ACTIONS(2008), + [anon_sym__Generic] = ACTIONS(2008), + [anon_sym_asm] = ACTIONS(2008), + [anon_sym___asm__] = ACTIONS(2008), + [anon_sym___asm] = ACTIONS(2008), + [sym_number_literal] = ACTIONS(2010), + [anon_sym_L_SQUOTE] = ACTIONS(2010), + [anon_sym_u_SQUOTE] = ACTIONS(2010), + [anon_sym_U_SQUOTE] = ACTIONS(2010), + [anon_sym_u8_SQUOTE] = ACTIONS(2010), + [anon_sym_SQUOTE] = ACTIONS(2010), + [anon_sym_L_DQUOTE] = ACTIONS(2010), + [anon_sym_u_DQUOTE] = ACTIONS(2010), + [anon_sym_U_DQUOTE] = ACTIONS(2010), + [anon_sym_u8_DQUOTE] = ACTIONS(2010), + [anon_sym_DQUOTE] = ACTIONS(2010), + [sym_true] = ACTIONS(2008), + [sym_false] = ACTIONS(2008), + [anon_sym_NULL] = ACTIONS(2008), + [anon_sym_nullptr] = ACTIONS(2008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2008), + [anon_sym_decltype] = ACTIONS(2008), + [anon_sym_explicit] = ACTIONS(2008), + [anon_sym_typename] = ACTIONS(2008), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_operator] = ACTIONS(2008), + [anon_sym_try] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_throw] = ACTIONS(2008), + [anon_sym_namespace] = ACTIONS(2008), + [anon_sym_using] = ACTIONS(2008), + [anon_sym_static_assert] = ACTIONS(2008), + [anon_sym_concept] = ACTIONS(2008), + [anon_sym_co_return] = ACTIONS(2008), + [anon_sym_co_yield] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2008), + [anon_sym_new] = ACTIONS(2008), + [anon_sym_requires] = ACTIONS(2008), + [sym_this] = ACTIONS(2008), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_FORWARD] = ACTIONS(2008), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2008), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_PS_GET] = ACTIONS(2008), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2008), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2008), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2008), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2008), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2008), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2008), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2008), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2008), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2008), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2008), + [anon_sym_MOZ_COLD] = ACTIONS(2008), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2008), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2008), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2008), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2008), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2008), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2008), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2008), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2008), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2008), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2008), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2008), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2008), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2008), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2008), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2008), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2008), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2008), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2008), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2008), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2008), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_NONNULL] = ACTIONS(2008), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2008), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2008), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2008), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2008), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2008), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_NORETURN] = ACTIONS(2008), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2008), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2008), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2008), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2008), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2008), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2008), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2008), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2008), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2008), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2008), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2008), + [anon_sym_MOZ_RAII] = ACTIONS(2008), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2008), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2008), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2008), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2008), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2008), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2008), + }, + [STATE(403)] = { + [sym_identifier] = ACTIONS(2124), + [aux_sym_preproc_include_token1] = ACTIONS(2124), + [aux_sym_preproc_def_token1] = ACTIONS(2124), + [aux_sym_preproc_if_token1] = ACTIONS(2124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2124), + [sym_preproc_directive] = ACTIONS(2124), + [anon_sym_LPAREN2] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_AMP_AMP] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym___extension__] = ACTIONS(2124), + [anon_sym_typedef] = ACTIONS(2124), + [anon_sym_virtual] = ACTIONS(2124), + [anon_sym_extern] = ACTIONS(2124), + [anon_sym___attribute__] = ACTIONS(2124), + [anon_sym___attribute] = ACTIONS(2124), + [anon_sym_COLON_COLON] = ACTIONS(2126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2126), + [anon_sym___declspec] = ACTIONS(2124), + [anon_sym___based] = ACTIONS(2124), + [anon_sym___cdecl] = ACTIONS(2124), + [anon_sym___clrcall] = ACTIONS(2124), + [anon_sym___stdcall] = ACTIONS(2124), + [anon_sym___fastcall] = ACTIONS(2124), + [anon_sym___thiscall] = ACTIONS(2124), + [anon_sym___vectorcall] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_signed] = ACTIONS(2124), + [anon_sym_unsigned] = ACTIONS(2124), + [anon_sym_long] = ACTIONS(2124), + [anon_sym_short] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_register] = ACTIONS(2124), + [anon_sym_inline] = ACTIONS(2124), + [anon_sym___inline] = ACTIONS(2124), + [anon_sym___inline__] = ACTIONS(2124), + [anon_sym___forceinline] = ACTIONS(2124), + [anon_sym_thread_local] = ACTIONS(2124), + [anon_sym___thread] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_constexpr] = ACTIONS(2124), + [anon_sym_volatile] = ACTIONS(2124), + [anon_sym_restrict] = ACTIONS(2124), + [anon_sym___restrict__] = ACTIONS(2124), + [anon_sym__Atomic] = ACTIONS(2124), + [anon_sym__Noreturn] = ACTIONS(2124), + [anon_sym_noreturn] = ACTIONS(2124), + [anon_sym__Nonnull] = ACTIONS(2124), + [anon_sym_mutable] = ACTIONS(2124), + [anon_sym_constinit] = ACTIONS(2124), + [anon_sym_consteval] = ACTIONS(2124), + [anon_sym_alignas] = ACTIONS(2124), + [anon_sym__Alignas] = ACTIONS(2124), + [sym_primitive_type] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), + [anon_sym_class] = ACTIONS(2124), + [anon_sym_struct] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_else] = ACTIONS(2124), + [anon_sym_switch] = ACTIONS(2124), + [anon_sym_case] = ACTIONS(2124), + [anon_sym_default] = ACTIONS(2124), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_goto] = ACTIONS(2124), + [anon_sym___try] = ACTIONS(2124), + [anon_sym___leave] = ACTIONS(2124), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_compl] = ACTIONS(2124), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_sizeof] = ACTIONS(2124), + [anon_sym___alignof__] = ACTIONS(2124), + [anon_sym___alignof] = ACTIONS(2124), + [anon_sym__alignof] = ACTIONS(2124), + [anon_sym_alignof] = ACTIONS(2124), + [anon_sym__Alignof] = ACTIONS(2124), + [anon_sym_offsetof] = ACTIONS(2124), + [anon_sym__Generic] = ACTIONS(2124), + [anon_sym_asm] = ACTIONS(2124), + [anon_sym___asm__] = ACTIONS(2124), + [anon_sym___asm] = ACTIONS(2124), + [sym_number_literal] = ACTIONS(2126), + [anon_sym_L_SQUOTE] = ACTIONS(2126), + [anon_sym_u_SQUOTE] = ACTIONS(2126), + [anon_sym_U_SQUOTE] = ACTIONS(2126), + [anon_sym_u8_SQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_L_DQUOTE] = ACTIONS(2126), + [anon_sym_u_DQUOTE] = ACTIONS(2126), + [anon_sym_U_DQUOTE] = ACTIONS(2126), + [anon_sym_u8_DQUOTE] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2126), + [sym_true] = ACTIONS(2124), + [sym_false] = ACTIONS(2124), + [anon_sym_NULL] = ACTIONS(2124), + [anon_sym_nullptr] = ACTIONS(2124), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2124), + [anon_sym_decltype] = ACTIONS(2124), + [anon_sym_explicit] = ACTIONS(2124), + [anon_sym_typename] = ACTIONS(2124), + [anon_sym_template] = ACTIONS(2124), + [anon_sym_operator] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2124), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_throw] = ACTIONS(2124), + [anon_sym_namespace] = ACTIONS(2124), + [anon_sym_using] = ACTIONS(2124), + [anon_sym_static_assert] = ACTIONS(2124), + [anon_sym_concept] = ACTIONS(2124), + [anon_sym_co_return] = ACTIONS(2124), + [anon_sym_co_yield] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2124), + [anon_sym_new] = ACTIONS(2124), + [anon_sym_requires] = ACTIONS(2124), + [sym_this] = ACTIONS(2124), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_FORWARD] = ACTIONS(2124), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2124), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_PS_GET] = ACTIONS(2124), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2124), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2124), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2124), + [anon_sym_MOZ_COLD] = ACTIONS(2124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_NONNULL] = ACTIONS(2124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_NORETURN] = ACTIONS(2124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2124), + [anon_sym_MOZ_RAII] = ACTIONS(2124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2124), + }, + [STATE(404)] = { + [sym_identifier] = ACTIONS(2152), + [aux_sym_preproc_include_token1] = ACTIONS(2152), + [aux_sym_preproc_def_token1] = ACTIONS(2152), + [aux_sym_preproc_if_token1] = ACTIONS(2152), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2152), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2152), + [sym_preproc_directive] = ACTIONS(2152), + [anon_sym_LPAREN2] = ACTIONS(2154), + [anon_sym_BANG] = ACTIONS(2154), + [anon_sym_TILDE] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_STAR] = ACTIONS(2154), + [anon_sym_AMP_AMP] = ACTIONS(2154), + [anon_sym_AMP] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym___extension__] = ACTIONS(2152), + [anon_sym_typedef] = ACTIONS(2152), + [anon_sym_virtual] = ACTIONS(2152), + [anon_sym_extern] = ACTIONS(2152), + [anon_sym___attribute__] = ACTIONS(2152), + [anon_sym___attribute] = ACTIONS(2152), + [anon_sym_COLON_COLON] = ACTIONS(2154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2154), + [anon_sym___declspec] = ACTIONS(2152), + [anon_sym___based] = ACTIONS(2152), + [anon_sym___cdecl] = ACTIONS(2152), + [anon_sym___clrcall] = ACTIONS(2152), + [anon_sym___stdcall] = ACTIONS(2152), + [anon_sym___fastcall] = ACTIONS(2152), + [anon_sym___thiscall] = ACTIONS(2152), + [anon_sym___vectorcall] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_signed] = ACTIONS(2152), + [anon_sym_unsigned] = ACTIONS(2152), + [anon_sym_long] = ACTIONS(2152), + [anon_sym_short] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_register] = ACTIONS(2152), + [anon_sym_inline] = ACTIONS(2152), + [anon_sym___inline] = ACTIONS(2152), + [anon_sym___inline__] = ACTIONS(2152), + [anon_sym___forceinline] = ACTIONS(2152), + [anon_sym_thread_local] = ACTIONS(2152), + [anon_sym___thread] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_constexpr] = ACTIONS(2152), + [anon_sym_volatile] = ACTIONS(2152), + [anon_sym_restrict] = ACTIONS(2152), + [anon_sym___restrict__] = ACTIONS(2152), + [anon_sym__Atomic] = ACTIONS(2152), + [anon_sym__Noreturn] = ACTIONS(2152), + [anon_sym_noreturn] = ACTIONS(2152), + [anon_sym__Nonnull] = ACTIONS(2152), + [anon_sym_mutable] = ACTIONS(2152), + [anon_sym_constinit] = ACTIONS(2152), + [anon_sym_consteval] = ACTIONS(2152), + [anon_sym_alignas] = ACTIONS(2152), + [anon_sym__Alignas] = ACTIONS(2152), + [sym_primitive_type] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_struct] = ACTIONS(2152), + [anon_sym_union] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_else] = ACTIONS(2152), + [anon_sym_switch] = ACTIONS(2152), + [anon_sym_case] = ACTIONS(2152), + [anon_sym_default] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_goto] = ACTIONS(2152), + [anon_sym___try] = ACTIONS(2152), + [anon_sym___leave] = ACTIONS(2152), + [anon_sym_not] = ACTIONS(2152), + [anon_sym_compl] = ACTIONS(2152), + [anon_sym_DASH_DASH] = ACTIONS(2154), + [anon_sym_PLUS_PLUS] = ACTIONS(2154), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2152), + [anon_sym___alignof] = ACTIONS(2152), + [anon_sym__alignof] = ACTIONS(2152), + [anon_sym_alignof] = ACTIONS(2152), + [anon_sym__Alignof] = ACTIONS(2152), + [anon_sym_offsetof] = ACTIONS(2152), + [anon_sym__Generic] = ACTIONS(2152), + [anon_sym_asm] = ACTIONS(2152), + [anon_sym___asm__] = ACTIONS(2152), + [anon_sym___asm] = ACTIONS(2152), + [sym_number_literal] = ACTIONS(2154), + [anon_sym_L_SQUOTE] = ACTIONS(2154), + [anon_sym_u_SQUOTE] = ACTIONS(2154), + [anon_sym_U_SQUOTE] = ACTIONS(2154), + [anon_sym_u8_SQUOTE] = ACTIONS(2154), + [anon_sym_SQUOTE] = ACTIONS(2154), + [anon_sym_L_DQUOTE] = ACTIONS(2154), + [anon_sym_u_DQUOTE] = ACTIONS(2154), + [anon_sym_U_DQUOTE] = ACTIONS(2154), + [anon_sym_u8_DQUOTE] = ACTIONS(2154), + [anon_sym_DQUOTE] = ACTIONS(2154), + [sym_true] = ACTIONS(2152), + [sym_false] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_nullptr] = ACTIONS(2152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2152), + [anon_sym_decltype] = ACTIONS(2152), + [anon_sym_explicit] = ACTIONS(2152), + [anon_sym_typename] = ACTIONS(2152), + [anon_sym_template] = ACTIONS(2152), + [anon_sym_operator] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2152), + [anon_sym_delete] = ACTIONS(2152), + [anon_sym_throw] = ACTIONS(2152), + [anon_sym_namespace] = ACTIONS(2152), + [anon_sym_using] = ACTIONS(2152), + [anon_sym_static_assert] = ACTIONS(2152), + [anon_sym_concept] = ACTIONS(2152), + [anon_sym_co_return] = ACTIONS(2152), + [anon_sym_co_yield] = ACTIONS(2152), + [anon_sym_R_DQUOTE] = ACTIONS(2154), + [anon_sym_LR_DQUOTE] = ACTIONS(2154), + [anon_sym_uR_DQUOTE] = ACTIONS(2154), + [anon_sym_UR_DQUOTE] = ACTIONS(2154), + [anon_sym_u8R_DQUOTE] = ACTIONS(2154), + [anon_sym_co_await] = ACTIONS(2152), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_requires] = ACTIONS(2152), + [sym_this] = ACTIONS(2152), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_FORWARD] = ACTIONS(2152), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2152), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_PS_GET] = ACTIONS(2152), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2152), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2152), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2152), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2152), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2152), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2152), + [anon_sym_MOZ_COLD] = ACTIONS(2152), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2152), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2152), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2152), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2152), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2152), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2152), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2152), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2152), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2152), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2152), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2152), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2152), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2152), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_NONNULL] = ACTIONS(2152), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2152), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2152), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2152), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2152), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2152), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2152), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2152), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2152), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2152), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2152), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2152), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2152), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2152), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2152), + [anon_sym_MOZ_RAII] = ACTIONS(2152), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2152), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2152), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2152), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2152), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2152), + }, + [STATE(405)] = { + [sym_identifier] = ACTIONS(2156), + [aux_sym_preproc_include_token1] = ACTIONS(2156), + [aux_sym_preproc_def_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2156), + [sym_preproc_directive] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(2158), + [anon_sym_BANG] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2158), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym___extension__] = ACTIONS(2156), + [anon_sym_typedef] = ACTIONS(2156), + [anon_sym_virtual] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym___attribute__] = ACTIONS(2156), + [anon_sym___attribute] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2158), + [anon_sym___declspec] = ACTIONS(2156), + [anon_sym___based] = ACTIONS(2156), + [anon_sym___cdecl] = ACTIONS(2156), + [anon_sym___clrcall] = ACTIONS(2156), + [anon_sym___stdcall] = ACTIONS(2156), + [anon_sym___fastcall] = ACTIONS(2156), + [anon_sym___thiscall] = ACTIONS(2156), + [anon_sym___vectorcall] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2158), + [anon_sym_RBRACE] = ACTIONS(2158), + [anon_sym_signed] = ACTIONS(2156), + [anon_sym_unsigned] = ACTIONS(2156), + [anon_sym_long] = ACTIONS(2156), + [anon_sym_short] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_inline] = ACTIONS(2156), + [anon_sym___inline] = ACTIONS(2156), + [anon_sym___inline__] = ACTIONS(2156), + [anon_sym___forceinline] = ACTIONS(2156), + [anon_sym_thread_local] = ACTIONS(2156), + [anon_sym___thread] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_constexpr] = ACTIONS(2156), + [anon_sym_volatile] = ACTIONS(2156), + [anon_sym_restrict] = ACTIONS(2156), + [anon_sym___restrict__] = ACTIONS(2156), + [anon_sym__Atomic] = ACTIONS(2156), + [anon_sym__Noreturn] = ACTIONS(2156), + [anon_sym_noreturn] = ACTIONS(2156), + [anon_sym__Nonnull] = ACTIONS(2156), + [anon_sym_mutable] = ACTIONS(2156), + [anon_sym_constinit] = ACTIONS(2156), + [anon_sym_consteval] = ACTIONS(2156), + [anon_sym_alignas] = ACTIONS(2156), + [anon_sym__Alignas] = ACTIONS(2156), + [sym_primitive_type] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_case] = ACTIONS(2156), + [anon_sym_default] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_goto] = ACTIONS(2156), + [anon_sym___try] = ACTIONS(2156), + [anon_sym___leave] = ACTIONS(2156), + [anon_sym_not] = ACTIONS(2156), + [anon_sym_compl] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2158), + [anon_sym_PLUS_PLUS] = ACTIONS(2158), + [anon_sym_sizeof] = ACTIONS(2156), + [anon_sym___alignof__] = ACTIONS(2156), + [anon_sym___alignof] = ACTIONS(2156), + [anon_sym__alignof] = ACTIONS(2156), + [anon_sym_alignof] = ACTIONS(2156), + [anon_sym__Alignof] = ACTIONS(2156), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2156), + [anon_sym_asm] = ACTIONS(2156), + [anon_sym___asm__] = ACTIONS(2156), + [anon_sym___asm] = ACTIONS(2156), + [sym_number_literal] = ACTIONS(2158), + [anon_sym_L_SQUOTE] = ACTIONS(2158), + [anon_sym_u_SQUOTE] = ACTIONS(2158), + [anon_sym_U_SQUOTE] = ACTIONS(2158), + [anon_sym_u8_SQUOTE] = ACTIONS(2158), + [anon_sym_SQUOTE] = ACTIONS(2158), + [anon_sym_L_DQUOTE] = ACTIONS(2158), + [anon_sym_u_DQUOTE] = ACTIONS(2158), + [anon_sym_U_DQUOTE] = ACTIONS(2158), + [anon_sym_u8_DQUOTE] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [anon_sym_NULL] = ACTIONS(2156), + [anon_sym_nullptr] = ACTIONS(2156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2156), + [anon_sym_decltype] = ACTIONS(2156), + [anon_sym_explicit] = ACTIONS(2156), + [anon_sym_typename] = ACTIONS(2156), + [anon_sym_template] = ACTIONS(2156), + [anon_sym_operator] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_namespace] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_static_assert] = ACTIONS(2156), + [anon_sym_concept] = ACTIONS(2156), + [anon_sym_co_return] = ACTIONS(2156), + [anon_sym_co_yield] = ACTIONS(2156), + [anon_sym_R_DQUOTE] = ACTIONS(2158), + [anon_sym_LR_DQUOTE] = ACTIONS(2158), + [anon_sym_uR_DQUOTE] = ACTIONS(2158), + [anon_sym_UR_DQUOTE] = ACTIONS(2158), + [anon_sym_u8R_DQUOTE] = ACTIONS(2158), + [anon_sym_co_await] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_requires] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_FORWARD] = ACTIONS(2156), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2156), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_PS_GET] = ACTIONS(2156), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2156), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2156), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2156), + [anon_sym_MOZ_COLD] = ACTIONS(2156), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2156), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2156), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2156), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2156), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2156), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2156), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2156), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2156), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2156), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2156), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2156), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2156), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_RAII] = ACTIONS(2156), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2156), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2156), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2156), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2156), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2156), + }, + [STATE(406)] = { + [sym_identifier] = ACTIONS(1875), + [aux_sym_preproc_include_token1] = ACTIONS(1875), + [aux_sym_preproc_def_token1] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1875), + [aux_sym_preproc_if_token2] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1875), + [sym_preproc_directive] = ACTIONS(1875), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym___extension__] = ACTIONS(1875), + [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_virtual] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym___attribute__] = ACTIONS(1875), + [anon_sym___attribute] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), + [anon_sym___declspec] = ACTIONS(1875), + [anon_sym___based] = ACTIONS(1875), + [anon_sym___cdecl] = ACTIONS(1875), + [anon_sym___clrcall] = ACTIONS(1875), + [anon_sym___stdcall] = ACTIONS(1875), + [anon_sym___fastcall] = ACTIONS(1875), + [anon_sym___thiscall] = ACTIONS(1875), + [anon_sym___vectorcall] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_inline] = ACTIONS(1875), + [anon_sym___inline] = ACTIONS(1875), + [anon_sym___inline__] = ACTIONS(1875), + [anon_sym___forceinline] = ACTIONS(1875), + [anon_sym_thread_local] = ACTIONS(1875), + [anon_sym___thread] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_constexpr] = ACTIONS(1875), + [anon_sym_volatile] = ACTIONS(1875), + [anon_sym_restrict] = ACTIONS(1875), + [anon_sym___restrict__] = ACTIONS(1875), + [anon_sym__Atomic] = ACTIONS(1875), + [anon_sym__Noreturn] = ACTIONS(1875), + [anon_sym_noreturn] = ACTIONS(1875), + [anon_sym__Nonnull] = ACTIONS(1875), + [anon_sym_mutable] = ACTIONS(1875), + [anon_sym_constinit] = ACTIONS(1875), + [anon_sym_consteval] = ACTIONS(1875), + [anon_sym_alignas] = ACTIONS(1875), + [anon_sym__Alignas] = ACTIONS(1875), + [sym_primitive_type] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_switch] = ACTIONS(1875), + [anon_sym_case] = ACTIONS(1875), + [anon_sym_default] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_goto] = ACTIONS(1875), + [anon_sym___try] = ACTIONS(1875), + [anon_sym___leave] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(1875), + [anon_sym_compl] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1873), + [anon_sym_sizeof] = ACTIONS(1875), + [anon_sym___alignof__] = ACTIONS(1875), + [anon_sym___alignof] = ACTIONS(1875), + [anon_sym__alignof] = ACTIONS(1875), + [anon_sym_alignof] = ACTIONS(1875), + [anon_sym__Alignof] = ACTIONS(1875), + [anon_sym_offsetof] = ACTIONS(1875), + [anon_sym__Generic] = ACTIONS(1875), + [anon_sym_asm] = ACTIONS(1875), + [anon_sym___asm__] = ACTIONS(1875), + [anon_sym___asm] = ACTIONS(1875), + [sym_number_literal] = ACTIONS(1873), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1873), + [anon_sym_u_DQUOTE] = ACTIONS(1873), + [anon_sym_U_DQUOTE] = ACTIONS(1873), + [anon_sym_u8_DQUOTE] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym_true] = ACTIONS(1875), + [sym_false] = ACTIONS(1875), + [anon_sym_NULL] = ACTIONS(1875), + [anon_sym_nullptr] = ACTIONS(1875), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3256), - [sym_auto] = ACTIONS(3258), - [anon_sym_typename] = ACTIONS(3260), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_GT2] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1235] = { - [sym_type_qualifier] = STATE(2544), - [sym__type_specifier] = STATE(3251), - [sym_sized_type_specifier] = STATE(2558), - [sym_enum_specifier] = STATE(2558), - [sym_struct_specifier] = STATE(2558), - [sym_union_specifier] = STATE(2558), - [sym__expression] = STATE(2757), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_type_descriptor] = STATE(4054), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym_decltype] = STATE(2558), - [sym_class_specifier] = STATE(2558), - [sym__class_name] = STATE(4690), - [sym_dependent_type] = STATE(2558), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_type_parameter_pack_expansion] = STATE(4311), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3533), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [aux_sym_type_definition_repeat1] = STATE(2544), - [aux_sym_sized_type_specifier_repeat1] = STATE(2255), - [sym_identifier] = ACTIONS(3220), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(3232), - [anon_sym_unsigned] = ACTIONS(3232), - [anon_sym_long] = ACTIONS(3232), - [anon_sym_short] = ACTIONS(3232), - [sym_primitive_type] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3236), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_struct] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3256), - [sym_auto] = ACTIONS(3258), - [anon_sym_typename] = ACTIONS(3260), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_GT2] = ACTIONS(3274), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1236] = { - [sym_identifier] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_AMP_AMP] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_extern] = ACTIONS(3276), - [anon_sym___attribute__] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3278), - [anon_sym___declspec] = ACTIONS(3276), - [anon_sym___based] = ACTIONS(3276), - [anon_sym___cdecl] = ACTIONS(3276), - [anon_sym___clrcall] = ACTIONS(3276), - [anon_sym___stdcall] = ACTIONS(3276), - [anon_sym___fastcall] = ACTIONS(3276), - [anon_sym___thiscall] = ACTIONS(3276), - [anon_sym___vectorcall] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3276), - [anon_sym_register] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_thread_local] = ACTIONS(3276), - [anon_sym_const] = ACTIONS(3276), - [anon_sym_volatile] = ACTIONS(3276), - [anon_sym_restrict] = ACTIONS(3276), - [anon_sym__Atomic] = ACTIONS(3276), - [anon_sym_mutable] = ACTIONS(3276), - [anon_sym_constexpr] = ACTIONS(3276), - [anon_sym_signed] = ACTIONS(3276), - [anon_sym_unsigned] = ACTIONS(3276), - [anon_sym_long] = ACTIONS(3276), - [anon_sym_short] = ACTIONS(3276), - [sym_primitive_type] = ACTIONS(3276), - [anon_sym_enum] = ACTIONS(3276), - [anon_sym_class] = ACTIONS(3276), - [anon_sym_struct] = ACTIONS(3276), - [anon_sym_union] = ACTIONS(3276), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3276), - [anon_sym_virtual] = ACTIONS(3276), - [anon_sym_explicit] = ACTIONS(3276), - [sym_auto] = ACTIONS(3276), - [anon_sym_typename] = ACTIONS(3276), - [anon_sym_template] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_using] = ACTIONS(3276), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3276), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3276), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3276), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3276), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3276), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3276), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3276), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3276), - [anon_sym_MOZ_COLD] = ACTIONS(3276), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3276), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3276), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3276), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3276), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3276), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3276), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3276), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3276), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3276), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3276), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3276), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3276), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3276), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3276), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3276), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3276), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3276), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3276), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3276), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3276), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3276), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3276), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3276), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3276), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3276), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3276), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3276), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3276), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3276), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3276), - [anon_sym_MOZ_NONNULL] = ACTIONS(3276), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3276), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3276), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3276), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3276), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3276), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3276), - [anon_sym_MOZ_NORETURN] = ACTIONS(3276), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3276), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3276), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3276), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3276), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3276), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3276), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3276), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3276), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3276), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3276), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3276), - [anon_sym_MOZ_RAII] = ACTIONS(3276), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3276), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3276), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3276), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3276), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3276), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3276), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3276), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3276), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3276), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3276), - }, - [1237] = { - [sym_type_qualifier] = STATE(2544), - [sym__type_specifier] = STATE(3251), - [sym_sized_type_specifier] = STATE(2558), - [sym_enum_specifier] = STATE(2558), - [sym_struct_specifier] = STATE(2558), - [sym_union_specifier] = STATE(2558), - [sym__expression] = STATE(2770), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_type_descriptor] = STATE(4105), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym_decltype] = STATE(2558), - [sym_class_specifier] = STATE(2558), - [sym__class_name] = STATE(4690), - [sym_dependent_type] = STATE(2558), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_type_parameter_pack_expansion] = STATE(4362), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3533), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [aux_sym_type_definition_repeat1] = STATE(2544), - [aux_sym_sized_type_specifier_repeat1] = STATE(2255), - [sym_identifier] = ACTIONS(3220), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(3232), - [anon_sym_unsigned] = ACTIONS(3232), - [anon_sym_long] = ACTIONS(3232), - [anon_sym_short] = ACTIONS(3232), - [sym_primitive_type] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3236), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_struct] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3256), - [sym_auto] = ACTIONS(3258), - [anon_sym_typename] = ACTIONS(3260), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_GT2] = ACTIONS(3280), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1238] = { - [sym_type_qualifier] = STATE(2544), - [sym__type_specifier] = STATE(3251), - [sym_sized_type_specifier] = STATE(2558), - [sym_enum_specifier] = STATE(2558), - [sym_struct_specifier] = STATE(2558), - [sym_union_specifier] = STATE(2558), - [sym__expression] = STATE(2755), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_type_descriptor] = STATE(4013), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym_decltype] = STATE(2558), - [sym_class_specifier] = STATE(2558), - [sym__class_name] = STATE(4690), - [sym_dependent_type] = STATE(2558), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_type_parameter_pack_expansion] = STATE(4436), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3533), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [aux_sym_type_definition_repeat1] = STATE(2544), - [aux_sym_sized_type_specifier_repeat1] = STATE(2255), - [sym_identifier] = ACTIONS(3220), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(3232), - [anon_sym_unsigned] = ACTIONS(3232), - [anon_sym_long] = ACTIONS(3232), - [anon_sym_short] = ACTIONS(3232), - [sym_primitive_type] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3236), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_struct] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3256), - [sym_auto] = ACTIONS(3258), - [anon_sym_typename] = ACTIONS(3260), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_GT2] = ACTIONS(3282), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1239] = { - [sym_type_qualifier] = STATE(2544), - [sym__type_specifier] = STATE(3251), - [sym_sized_type_specifier] = STATE(2558), - [sym_enum_specifier] = STATE(2558), - [sym_struct_specifier] = STATE(2558), - [sym_union_specifier] = STATE(2558), - [sym__expression] = STATE(2764), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_type_descriptor] = STATE(4117), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym_decltype] = STATE(2558), - [sym_class_specifier] = STATE(2558), - [sym__class_name] = STATE(4690), - [sym_dependent_type] = STATE(2558), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_type_parameter_pack_expansion] = STATE(4415), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3533), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [aux_sym_type_definition_repeat1] = STATE(2544), - [aux_sym_sized_type_specifier_repeat1] = STATE(2255), - [sym_identifier] = ACTIONS(3220), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(3232), - [anon_sym_unsigned] = ACTIONS(3232), - [anon_sym_long] = ACTIONS(3232), - [anon_sym_short] = ACTIONS(3232), - [sym_primitive_type] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3236), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_struct] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3256), - [sym_auto] = ACTIONS(3258), - [anon_sym_typename] = ACTIONS(3260), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_GT2] = ACTIONS(3284), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1240] = { - [sym_identifier] = ACTIONS(3286), - [anon_sym_LPAREN2] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_AMP] = ACTIONS(3286), - [anon_sym_extern] = ACTIONS(3286), - [anon_sym___attribute__] = ACTIONS(3286), - [anon_sym_COLON_COLON] = ACTIONS(3288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), - [anon_sym___declspec] = ACTIONS(3286), - [anon_sym___based] = ACTIONS(3286), - [anon_sym___cdecl] = ACTIONS(3286), - [anon_sym___clrcall] = ACTIONS(3286), - [anon_sym___stdcall] = ACTIONS(3286), - [anon_sym___fastcall] = ACTIONS(3286), - [anon_sym___thiscall] = ACTIONS(3286), - [anon_sym___vectorcall] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3286), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_register] = ACTIONS(3286), - [anon_sym_inline] = ACTIONS(3286), - [anon_sym_thread_local] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_volatile] = ACTIONS(3286), - [anon_sym_restrict] = ACTIONS(3286), - [anon_sym__Atomic] = ACTIONS(3286), - [anon_sym_mutable] = ACTIONS(3286), - [anon_sym_constexpr] = ACTIONS(3286), - [anon_sym_signed] = ACTIONS(3286), - [anon_sym_unsigned] = ACTIONS(3286), - [anon_sym_long] = ACTIONS(3286), - [anon_sym_short] = ACTIONS(3286), - [sym_primitive_type] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), - [anon_sym_class] = ACTIONS(3286), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_union] = ACTIONS(3286), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3286), - [anon_sym_virtual] = ACTIONS(3286), - [anon_sym_explicit] = ACTIONS(3286), - [sym_auto] = ACTIONS(3286), - [anon_sym_typename] = ACTIONS(3286), - [anon_sym_template] = ACTIONS(3286), - [anon_sym_operator] = ACTIONS(3286), - [anon_sym_using] = ACTIONS(3286), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3286), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3286), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3286), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3286), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3286), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3286), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3286), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3286), - [anon_sym_MOZ_COLD] = ACTIONS(3286), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3286), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3286), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3286), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3286), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3286), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3286), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3286), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3286), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3286), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3286), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3286), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3286), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3286), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3286), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3286), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3286), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3286), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3286), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3286), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3286), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3286), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3286), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3286), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3286), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3286), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3286), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3286), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3286), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3286), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3286), - [anon_sym_MOZ_NONNULL] = ACTIONS(3286), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3286), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3286), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3286), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3286), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3286), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3286), - [anon_sym_MOZ_NORETURN] = ACTIONS(3286), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3286), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3286), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3286), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3286), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3286), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3286), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3286), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3286), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3286), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3286), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3286), - [anon_sym_MOZ_RAII] = ACTIONS(3286), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3286), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3286), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3286), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3286), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3286), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3286), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3286), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3286), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3286), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3286), - }, - [1241] = { - [sym_identifier] = ACTIONS(3290), - [anon_sym_LPAREN2] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_AMP] = ACTIONS(3290), - [anon_sym_extern] = ACTIONS(3290), - [anon_sym___attribute__] = ACTIONS(3290), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3292), - [anon_sym___declspec] = ACTIONS(3290), - [anon_sym___based] = ACTIONS(3290), - [anon_sym___cdecl] = ACTIONS(3290), - [anon_sym___clrcall] = ACTIONS(3290), - [anon_sym___stdcall] = ACTIONS(3290), - [anon_sym___fastcall] = ACTIONS(3290), - [anon_sym___thiscall] = ACTIONS(3290), - [anon_sym___vectorcall] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_static] = ACTIONS(3290), - [anon_sym_register] = ACTIONS(3290), - [anon_sym_inline] = ACTIONS(3290), - [anon_sym_thread_local] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_volatile] = ACTIONS(3290), - [anon_sym_restrict] = ACTIONS(3290), - [anon_sym__Atomic] = ACTIONS(3290), - [anon_sym_mutable] = ACTIONS(3290), - [anon_sym_constexpr] = ACTIONS(3290), - [anon_sym_signed] = ACTIONS(3290), - [anon_sym_unsigned] = ACTIONS(3290), - [anon_sym_long] = ACTIONS(3290), - [anon_sym_short] = ACTIONS(3290), - [sym_primitive_type] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), - [anon_sym_class] = ACTIONS(3290), - [anon_sym_struct] = ACTIONS(3290), - [anon_sym_union] = ACTIONS(3290), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3290), - [anon_sym_virtual] = ACTIONS(3290), - [anon_sym_explicit] = ACTIONS(3290), - [sym_auto] = ACTIONS(3290), - [anon_sym_typename] = ACTIONS(3290), - [anon_sym_template] = ACTIONS(3290), - [anon_sym_operator] = ACTIONS(3290), - [anon_sym_using] = ACTIONS(3290), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3290), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3290), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3290), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3290), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3290), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3290), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3290), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3290), - [anon_sym_MOZ_COLD] = ACTIONS(3290), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3290), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3290), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3290), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3290), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3290), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3290), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3290), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3290), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3290), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3290), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3290), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3290), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3290), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3290), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3290), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3290), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3290), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3290), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3290), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3290), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3290), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3290), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3290), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3290), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3290), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3290), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3290), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3290), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3290), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3290), - [anon_sym_MOZ_NONNULL] = ACTIONS(3290), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3290), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3290), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3290), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3290), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3290), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3290), - [anon_sym_MOZ_NORETURN] = ACTIONS(3290), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3290), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3290), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3290), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3290), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3290), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3290), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3290), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3290), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3290), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3290), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3290), - [anon_sym_MOZ_RAII] = ACTIONS(3290), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3290), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3290), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3290), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3290), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3290), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3290), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3290), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3290), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3290), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3290), - }, - [1242] = { - [sym_type_qualifier] = STATE(2544), - [sym__type_specifier] = STATE(3251), - [sym_sized_type_specifier] = STATE(2558), - [sym_enum_specifier] = STATE(2558), - [sym_struct_specifier] = STATE(2558), - [sym_union_specifier] = STATE(2558), - [sym__expression] = STATE(2746), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_type_descriptor] = STATE(4136), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym_decltype] = STATE(2558), - [sym_class_specifier] = STATE(2558), - [sym__class_name] = STATE(4690), - [sym_dependent_type] = STATE(2558), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_type_parameter_pack_expansion] = STATE(4253), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3533), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [aux_sym_type_definition_repeat1] = STATE(2544), - [aux_sym_sized_type_specifier_repeat1] = STATE(2255), - [sym_identifier] = ACTIONS(3220), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(3232), - [anon_sym_unsigned] = ACTIONS(3232), - [anon_sym_long] = ACTIONS(3232), - [anon_sym_short] = ACTIONS(3232), - [sym_primitive_type] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3236), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_struct] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3256), - [sym_auto] = ACTIONS(3258), - [anon_sym_typename] = ACTIONS(3260), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_GT2] = ACTIONS(3294), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1243] = { - [sym_type_qualifier] = STATE(2544), - [sym__type_specifier] = STATE(3251), - [sym_sized_type_specifier] = STATE(2558), - [sym_enum_specifier] = STATE(2558), - [sym_struct_specifier] = STATE(2558), - [sym_union_specifier] = STATE(2558), - [sym__expression] = STATE(2730), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_type_descriptor] = STATE(4039), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym_decltype] = STATE(2558), - [sym_class_specifier] = STATE(2558), - [sym__class_name] = STATE(4690), - [sym_dependent_type] = STATE(2558), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_type_parameter_pack_expansion] = STATE(4406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3533), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [aux_sym_type_definition_repeat1] = STATE(2544), - [aux_sym_sized_type_specifier_repeat1] = STATE(2255), - [sym_identifier] = ACTIONS(3220), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(3232), - [anon_sym_unsigned] = ACTIONS(3232), - [anon_sym_long] = ACTIONS(3232), - [anon_sym_short] = ACTIONS(3232), - [sym_primitive_type] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3236), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_struct] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3256), - [sym_auto] = ACTIONS(3258), - [anon_sym_typename] = ACTIONS(3260), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_GT2] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1244] = { - [sym_type_qualifier] = STATE(2544), - [sym__type_specifier] = STATE(3251), - [sym_sized_type_specifier] = STATE(2558), - [sym_enum_specifier] = STATE(2558), - [sym_struct_specifier] = STATE(2558), - [sym_union_specifier] = STATE(2558), - [sym__expression] = STATE(2775), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_type_descriptor] = STATE(4088), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym_decltype] = STATE(2558), - [sym_class_specifier] = STATE(2558), - [sym__class_name] = STATE(4690), - [sym_dependent_type] = STATE(2558), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_type_parameter_pack_expansion] = STATE(4434), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3533), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [aux_sym_type_definition_repeat1] = STATE(2544), - [aux_sym_sized_type_specifier_repeat1] = STATE(2255), - [sym_identifier] = ACTIONS(3220), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(3232), - [anon_sym_unsigned] = ACTIONS(3232), - [anon_sym_long] = ACTIONS(3232), - [anon_sym_short] = ACTIONS(3232), - [sym_primitive_type] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3236), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_struct] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3256), - [sym_auto] = ACTIONS(3258), - [anon_sym_typename] = ACTIONS(3260), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_GT2] = ACTIONS(3298), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1245] = { - [sym_type_qualifier] = STATE(2544), - [sym__type_specifier] = STATE(3251), - [sym_sized_type_specifier] = STATE(2558), - [sym_enum_specifier] = STATE(2558), - [sym_struct_specifier] = STATE(2558), - [sym_union_specifier] = STATE(2558), - [sym__expression] = STATE(2753), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_type_descriptor] = STATE(4144), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym_decltype] = STATE(2558), - [sym_class_specifier] = STATE(2558), - [sym__class_name] = STATE(4690), - [sym_dependent_type] = STATE(2558), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_type_parameter_pack_expansion] = STATE(4398), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3533), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [aux_sym_type_definition_repeat1] = STATE(2544), - [aux_sym_sized_type_specifier_repeat1] = STATE(2255), - [sym_identifier] = ACTIONS(3220), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(3232), - [anon_sym_unsigned] = ACTIONS(3232), - [anon_sym_long] = ACTIONS(3232), - [anon_sym_short] = ACTIONS(3232), - [sym_primitive_type] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3236), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_struct] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3256), - [sym_auto] = ACTIONS(3258), - [anon_sym_typename] = ACTIONS(3260), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_GT2] = ACTIONS(3300), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1246] = { - [sym_string_literal] = STATE(794), - [sym_identifier] = 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_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_LBRACK] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_register] = ACTIONS(3302), - [anon_sym_inline] = ACTIONS(3302), - [anon_sym_thread_local] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_volatile] = ACTIONS(3302), - [anon_sym_restrict] = ACTIONS(3302), - [anon_sym__Atomic] = ACTIONS(3302), - [anon_sym_mutable] = ACTIONS(3302), - [anon_sym_constexpr] = ACTIONS(3302), - [anon_sym_signed] = ACTIONS(3302), - [anon_sym_unsigned] = ACTIONS(3302), - [anon_sym_long] = ACTIONS(3302), - [anon_sym_short] = 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_L_DQUOTE] = ACTIONS(3306), - [anon_sym_u_DQUOTE] = ACTIONS(3306), - [anon_sym_U_DQUOTE] = ACTIONS(3306), - [anon_sym_u8_DQUOTE] = ACTIONS(3306), - [anon_sym_DQUOTE] = ACTIONS(3306), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3302), - [anon_sym_virtual] = ACTIONS(3302), - [anon_sym_explicit] = ACTIONS(3302), - [sym_auto] = ACTIONS(3302), - [anon_sym_typename] = ACTIONS(3302), - [anon_sym_template] = ACTIONS(3302), - [anon_sym_operator] = ACTIONS(3302), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3302), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3302), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3302), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3302), - [anon_sym_MOZ_COLD] = ACTIONS(3302), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3302), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3302), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3302), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3302), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3302), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3302), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3302), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3302), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3302), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3302), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3302), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3302), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3302), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_NONNULL] = ACTIONS(3302), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3302), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3302), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3302), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3302), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3302), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3302), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3302), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3302), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3302), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3302), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3302), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3302), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3302), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3302), - [anon_sym_MOZ_RAII] = ACTIONS(3302), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3302), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3302), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3302), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3302), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3302), - }, - [1247] = { - [sym_type_qualifier] = STATE(2532), - [sym__type_specifier] = STATE(3254), - [sym_sized_type_specifier] = STATE(2408), - [sym_enum_specifier] = STATE(2408), - [sym_struct_specifier] = STATE(2408), - [sym_union_specifier] = STATE(2408), - [sym__expression] = STATE(2923), - [sym_comma_expression] = STATE(5009), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_type_descriptor] = STATE(5002), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(2408), - [sym_class_specifier] = STATE(2408), - [sym__class_name] = STATE(4792), - [sym_dependent_type] = STATE(2408), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3534), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(2532), - [aux_sym_sized_type_specifier_repeat1] = STATE(2027), - [sym_identifier] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2538), - [anon_sym_unsigned] = ACTIONS(2538), - [anon_sym_long] = ACTIONS(2538), - [anon_sym_short] = ACTIONS(2538), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2542), - [anon_sym_class] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2546), - [anon_sym_union] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2550), - [sym_auto] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2554), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1248] = { - [sym_string_literal] = STATE(792), - [sym_identifier] = 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_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_LBRACK] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_register] = ACTIONS(3302), - [anon_sym_inline] = ACTIONS(3302), - [anon_sym_thread_local] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_volatile] = ACTIONS(3302), - [anon_sym_restrict] = ACTIONS(3302), - [anon_sym__Atomic] = ACTIONS(3302), - [anon_sym_mutable] = ACTIONS(3302), - [anon_sym_constexpr] = ACTIONS(3302), - [anon_sym_signed] = ACTIONS(3302), - [anon_sym_unsigned] = ACTIONS(3302), - [anon_sym_long] = ACTIONS(3302), - [anon_sym_short] = 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_L_DQUOTE] = ACTIONS(3306), - [anon_sym_u_DQUOTE] = ACTIONS(3306), - [anon_sym_U_DQUOTE] = ACTIONS(3306), - [anon_sym_u8_DQUOTE] = ACTIONS(3306), - [anon_sym_DQUOTE] = ACTIONS(3306), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3302), - [anon_sym_virtual] = ACTIONS(3302), - [anon_sym_explicit] = ACTIONS(3302), - [sym_auto] = ACTIONS(3302), - [anon_sym_typename] = ACTIONS(3302), - [anon_sym_template] = ACTIONS(3302), - [anon_sym_operator] = ACTIONS(3302), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3302), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3302), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3302), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3302), - [anon_sym_MOZ_COLD] = ACTIONS(3302), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3302), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3302), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3302), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3302), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3302), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3302), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3302), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3302), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3302), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3302), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3302), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3302), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3302), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_NONNULL] = ACTIONS(3302), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3302), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3302), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3302), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3302), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3302), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3302), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3302), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3302), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3302), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3302), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3302), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3302), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3302), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3302), - [anon_sym_MOZ_RAII] = ACTIONS(3302), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3302), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3302), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3302), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3302), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3302), - }, - [1249] = { - [sym_type_qualifier] = STATE(2532), - [sym__type_specifier] = STATE(3254), - [sym_sized_type_specifier] = STATE(2408), - [sym_enum_specifier] = STATE(2408), - [sym_struct_specifier] = STATE(2408), - [sym_union_specifier] = STATE(2408), - [sym__expression] = STATE(2923), - [sym_comma_expression] = STATE(5009), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_type_descriptor] = STATE(5098), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(2408), - [sym_class_specifier] = STATE(2408), - [sym__class_name] = STATE(4792), - [sym_dependent_type] = STATE(2408), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3534), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(2532), - [aux_sym_sized_type_specifier_repeat1] = STATE(2027), - [sym_identifier] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2538), - [anon_sym_unsigned] = ACTIONS(2538), - [anon_sym_long] = ACTIONS(2538), - [anon_sym_short] = ACTIONS(2538), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2542), - [anon_sym_class] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2546), - [anon_sym_union] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2550), - [sym_auto] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2554), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1250] = { - [sym_type_qualifier] = STATE(2532), - [sym__type_specifier] = STATE(3254), - [sym_sized_type_specifier] = STATE(2408), - [sym_enum_specifier] = STATE(2408), - [sym_struct_specifier] = STATE(2408), - [sym_union_specifier] = STATE(2408), - [sym__expression] = STATE(2923), - [sym_comma_expression] = STATE(5009), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_type_descriptor] = STATE(5011), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(2408), - [sym_class_specifier] = STATE(2408), - [sym__class_name] = STATE(4792), - [sym_dependent_type] = STATE(2408), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3534), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(2532), - [aux_sym_sized_type_specifier_repeat1] = STATE(2027), - [sym_identifier] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2538), - [anon_sym_unsigned] = ACTIONS(2538), - [anon_sym_long] = ACTIONS(2538), - [anon_sym_short] = ACTIONS(2538), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2542), - [anon_sym_class] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2546), - [anon_sym_union] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2550), - [sym_auto] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2554), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1251] = { - [sym_string_literal] = STATE(791), - [sym_identifier] = 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_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_LBRACK] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_register] = ACTIONS(3302), - [anon_sym_inline] = ACTIONS(3302), - [anon_sym_thread_local] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_volatile] = ACTIONS(3302), - [anon_sym_restrict] = ACTIONS(3302), - [anon_sym__Atomic] = ACTIONS(3302), - [anon_sym_mutable] = ACTIONS(3302), - [anon_sym_constexpr] = ACTIONS(3302), - [anon_sym_signed] = ACTIONS(3302), - [anon_sym_unsigned] = ACTIONS(3302), - [anon_sym_long] = ACTIONS(3302), - [anon_sym_short] = 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_L_DQUOTE] = ACTIONS(3306), - [anon_sym_u_DQUOTE] = ACTIONS(3306), - [anon_sym_U_DQUOTE] = ACTIONS(3306), - [anon_sym_u8_DQUOTE] = ACTIONS(3306), - [anon_sym_DQUOTE] = ACTIONS(3306), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3302), - [anon_sym_virtual] = ACTIONS(3302), - [anon_sym_explicit] = ACTIONS(3302), - [sym_auto] = ACTIONS(3302), - [anon_sym_typename] = ACTIONS(3302), - [anon_sym_template] = ACTIONS(3302), - [anon_sym_operator] = ACTIONS(3302), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3302), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3302), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3302), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3302), - [anon_sym_MOZ_COLD] = ACTIONS(3302), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3302), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3302), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3302), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3302), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3302), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3302), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3302), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3302), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3302), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3302), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3302), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3302), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3302), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_NONNULL] = ACTIONS(3302), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3302), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3302), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3302), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3302), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3302), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3302), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3302), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3302), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3302), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3302), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3302), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3302), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3302), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3302), - [anon_sym_MOZ_RAII] = ACTIONS(3302), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3302), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3302), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3302), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3302), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3302), - }, - [1252] = { - [sym_type_qualifier] = STATE(2532), - [sym__type_specifier] = STATE(3254), - [sym_sized_type_specifier] = STATE(2408), - [sym_enum_specifier] = STATE(2408), - [sym_struct_specifier] = STATE(2408), - [sym_union_specifier] = STATE(2408), - [sym__expression] = STATE(2923), - [sym_comma_expression] = STATE(5009), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_type_descriptor] = STATE(4844), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(2408), - [sym_class_specifier] = STATE(2408), - [sym__class_name] = STATE(4792), - [sym_dependent_type] = STATE(2408), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3534), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(2532), - [aux_sym_sized_type_specifier_repeat1] = STATE(2027), - [sym_identifier] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2538), - [anon_sym_unsigned] = ACTIONS(2538), - [anon_sym_long] = ACTIONS(2538), - [anon_sym_short] = ACTIONS(2538), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2542), - [anon_sym_class] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2546), - [anon_sym_union] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2550), - [sym_auto] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2554), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1253] = { - [sym_type_qualifier] = STATE(2532), - [sym__type_specifier] = STATE(3254), - [sym_sized_type_specifier] = STATE(2408), - [sym_enum_specifier] = STATE(2408), - [sym_struct_specifier] = STATE(2408), - [sym_union_specifier] = STATE(2408), - [sym__expression] = STATE(2838), - [sym_comma_expression] = STATE(4923), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_type_descriptor] = STATE(5229), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(2408), - [sym_class_specifier] = STATE(2408), - [sym__class_name] = STATE(4792), - [sym_dependent_type] = STATE(2408), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3534), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(2532), - [aux_sym_sized_type_specifier_repeat1] = STATE(2027), - [sym_identifier] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2538), - [anon_sym_unsigned] = ACTIONS(2538), - [anon_sym_long] = ACTIONS(2538), - [anon_sym_short] = ACTIONS(2538), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2542), - [anon_sym_class] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2546), - [anon_sym_union] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2550), - [sym_auto] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2554), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1254] = { + [sym_auto] = ACTIONS(1875), + [anon_sym_decltype] = ACTIONS(1875), + [anon_sym_explicit] = ACTIONS(1875), + [anon_sym_typename] = ACTIONS(1875), + [anon_sym_template] = ACTIONS(1875), + [anon_sym_operator] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_delete] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1875), + [anon_sym_namespace] = ACTIONS(1875), + [anon_sym_using] = ACTIONS(1875), + [anon_sym_static_assert] = ACTIONS(1875), + [anon_sym_concept] = ACTIONS(1875), + [anon_sym_co_return] = ACTIONS(1875), + [anon_sym_co_yield] = ACTIONS(1875), + [anon_sym_R_DQUOTE] = ACTIONS(1873), + [anon_sym_LR_DQUOTE] = ACTIONS(1873), + [anon_sym_uR_DQUOTE] = ACTIONS(1873), + [anon_sym_UR_DQUOTE] = ACTIONS(1873), + [anon_sym_u8R_DQUOTE] = ACTIONS(1873), + [anon_sym_co_await] = ACTIONS(1875), + [anon_sym_new] = ACTIONS(1875), + [anon_sym_requires] = ACTIONS(1875), + [sym_this] = ACTIONS(1875), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_FORWARD] = ACTIONS(1875), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1875), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_PS_GET] = ACTIONS(1875), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1875), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1875), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1875), + [anon_sym_MOZ_COLD] = ACTIONS(1875), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1875), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1875), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1875), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1875), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1875), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1875), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1875), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1875), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1875), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1875), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1875), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1875), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_RAII] = ACTIONS(1875), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1875), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1875), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1875), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), + }, + [STATE(407)] = { + [sym_identifier] = ACTIONS(2361), + [aux_sym_preproc_include_token1] = ACTIONS(2361), + [aux_sym_preproc_def_token1] = ACTIONS(2361), + [aux_sym_preproc_if_token1] = ACTIONS(2361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2361), + [sym_preproc_directive] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(2363), + [anon_sym_AMP_AMP] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym___extension__] = ACTIONS(2361), + [anon_sym_typedef] = ACTIONS(2361), + [anon_sym_virtual] = ACTIONS(2361), + [anon_sym_extern] = ACTIONS(2361), + [anon_sym___attribute__] = ACTIONS(2361), + [anon_sym___attribute] = ACTIONS(2361), + [anon_sym_COLON_COLON] = ACTIONS(2363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2363), + [anon_sym___declspec] = ACTIONS(2361), + [anon_sym___based] = ACTIONS(2361), + [anon_sym___cdecl] = ACTIONS(2361), + [anon_sym___clrcall] = ACTIONS(2361), + [anon_sym___stdcall] = ACTIONS(2361), + [anon_sym___fastcall] = ACTIONS(2361), + [anon_sym___thiscall] = ACTIONS(2361), + [anon_sym___vectorcall] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_signed] = ACTIONS(2361), + [anon_sym_unsigned] = ACTIONS(2361), + [anon_sym_long] = ACTIONS(2361), + [anon_sym_short] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_register] = ACTIONS(2361), + [anon_sym_inline] = ACTIONS(2361), + [anon_sym___inline] = ACTIONS(2361), + [anon_sym___inline__] = ACTIONS(2361), + [anon_sym___forceinline] = ACTIONS(2361), + [anon_sym_thread_local] = ACTIONS(2361), + [anon_sym___thread] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_constexpr] = ACTIONS(2361), + [anon_sym_volatile] = ACTIONS(2361), + [anon_sym_restrict] = ACTIONS(2361), + [anon_sym___restrict__] = ACTIONS(2361), + [anon_sym__Atomic] = ACTIONS(2361), + [anon_sym__Noreturn] = ACTIONS(2361), + [anon_sym_noreturn] = ACTIONS(2361), + [anon_sym__Nonnull] = ACTIONS(2361), + [anon_sym_mutable] = ACTIONS(2361), + [anon_sym_constinit] = ACTIONS(2361), + [anon_sym_consteval] = ACTIONS(2361), + [anon_sym_alignas] = ACTIONS(2361), + [anon_sym__Alignas] = ACTIONS(2361), + [sym_primitive_type] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_class] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2361), + [anon_sym_union] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_switch] = ACTIONS(2361), + [anon_sym_case] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_do] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_goto] = ACTIONS(2361), + [anon_sym___try] = ACTIONS(2361), + [anon_sym___leave] = ACTIONS(2361), + [anon_sym_not] = ACTIONS(2361), + [anon_sym_compl] = ACTIONS(2361), + [anon_sym_DASH_DASH] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_sizeof] = ACTIONS(2361), + [anon_sym___alignof__] = ACTIONS(2361), + [anon_sym___alignof] = ACTIONS(2361), + [anon_sym__alignof] = ACTIONS(2361), + [anon_sym_alignof] = ACTIONS(2361), + [anon_sym__Alignof] = ACTIONS(2361), + [anon_sym_offsetof] = ACTIONS(2361), + [anon_sym__Generic] = ACTIONS(2361), + [anon_sym_asm] = ACTIONS(2361), + [anon_sym___asm__] = ACTIONS(2361), + [anon_sym___asm] = ACTIONS(2361), + [sym_number_literal] = ACTIONS(2363), + [anon_sym_L_SQUOTE] = ACTIONS(2363), + [anon_sym_u_SQUOTE] = ACTIONS(2363), + [anon_sym_U_SQUOTE] = ACTIONS(2363), + [anon_sym_u8_SQUOTE] = ACTIONS(2363), + [anon_sym_SQUOTE] = ACTIONS(2363), + [anon_sym_L_DQUOTE] = ACTIONS(2363), + [anon_sym_u_DQUOTE] = ACTIONS(2363), + [anon_sym_U_DQUOTE] = ACTIONS(2363), + [anon_sym_u8_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [sym_true] = ACTIONS(2361), + [sym_false] = ACTIONS(2361), + [anon_sym_NULL] = ACTIONS(2361), + [anon_sym_nullptr] = ACTIONS(2361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2361), + [anon_sym_decltype] = ACTIONS(2361), + [anon_sym_explicit] = ACTIONS(2361), + [anon_sym_typename] = ACTIONS(2361), + [anon_sym_template] = ACTIONS(2361), + [anon_sym_operator] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2361), + [anon_sym_delete] = ACTIONS(2361), + [anon_sym_throw] = ACTIONS(2361), + [anon_sym_namespace] = ACTIONS(2361), + [anon_sym_using] = ACTIONS(2361), + [anon_sym_static_assert] = ACTIONS(2361), + [anon_sym_concept] = ACTIONS(2361), + [anon_sym_co_return] = ACTIONS(2361), + [anon_sym_co_yield] = 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(2361), + [anon_sym_new] = ACTIONS(2361), + [anon_sym_requires] = ACTIONS(2361), + [sym_this] = ACTIONS(2361), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2361), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_FORWARD] = ACTIONS(2361), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2361), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2361), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2361), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2361), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_PS_GET] = ACTIONS(2361), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2361), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2361), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2361), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2361), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2361), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2361), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2361), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2361), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2361), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2361), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2361), + [anon_sym_MOZ_COLD] = ACTIONS(2361), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2361), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2361), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2361), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2361), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2361), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2361), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2361), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2361), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2361), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2361), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2361), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2361), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2361), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2361), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2361), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2361), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2361), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2361), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2361), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2361), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_NONNULL] = ACTIONS(2361), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2361), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2361), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2361), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2361), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2361), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_NORETURN] = ACTIONS(2361), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2361), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2361), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2361), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2361), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2361), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2361), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2361), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2361), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2361), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2361), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2361), + [anon_sym_MOZ_RAII] = ACTIONS(2361), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2361), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2361), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2361), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2361), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2361), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2361), + }, + [STATE(408)] = { + [ts_builtin_sym_end] = ACTIONS(2438), + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_virtual] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_COLON_COLON] = ACTIONS(2438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___based] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_mutable] = ACTIONS(2436), + [anon_sym_constinit] = ACTIONS(2436), + [anon_sym_consteval] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_class] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym_not] = ACTIONS(2436), + [anon_sym_compl] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2436), + [anon_sym_decltype] = ACTIONS(2436), + [anon_sym_explicit] = ACTIONS(2436), + [anon_sym_typename] = ACTIONS(2436), + [anon_sym_template] = ACTIONS(2436), + [anon_sym_operator] = ACTIONS(2436), + [anon_sym_try] = ACTIONS(2436), + [anon_sym_delete] = ACTIONS(2436), + [anon_sym_throw] = ACTIONS(2436), + [anon_sym_namespace] = ACTIONS(2436), + [anon_sym_using] = ACTIONS(2436), + [anon_sym_static_assert] = ACTIONS(2436), + [anon_sym_concept] = ACTIONS(2436), + [anon_sym_co_return] = ACTIONS(2436), + [anon_sym_co_yield] = ACTIONS(2436), + [anon_sym_R_DQUOTE] = ACTIONS(2438), + [anon_sym_LR_DQUOTE] = ACTIONS(2438), + [anon_sym_uR_DQUOTE] = ACTIONS(2438), + [anon_sym_UR_DQUOTE] = ACTIONS(2438), + [anon_sym_u8R_DQUOTE] = ACTIONS(2438), + [anon_sym_co_await] = ACTIONS(2436), + [anon_sym_new] = ACTIONS(2436), + [anon_sym_requires] = ACTIONS(2436), + [sym_this] = ACTIONS(2436), + [sym_alone_macro] = ACTIONS(2438), + [aux_sym_alone_macro_call_token1] = ACTIONS(2436), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_FORWARD] = ACTIONS(2436), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_PS_GET] = ACTIONS(2436), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2436), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2436), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2436), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2436), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2436), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2436), + [anon_sym_MOZ_COLD] = ACTIONS(2436), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2436), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2436), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2436), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2436), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2436), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2436), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2436), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2436), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2436), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2436), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2436), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2436), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2436), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_NONNULL] = ACTIONS(2436), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2436), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2436), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2436), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2436), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2436), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2436), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2436), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2436), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2436), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2436), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2436), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2436), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2436), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2436), + [anon_sym_MOZ_RAII] = ACTIONS(2436), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2436), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2436), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2436), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2436), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2436), + }, + [STATE(409)] = { + [ts_builtin_sym_end] = ACTIONS(2446), + [sym_identifier] = ACTIONS(2444), + [aux_sym_preproc_include_token1] = ACTIONS(2444), + [aux_sym_preproc_def_token1] = ACTIONS(2444), + [aux_sym_preproc_if_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [sym_preproc_directive] = ACTIONS(2444), + [anon_sym_LPAREN2] = ACTIONS(2446), + [anon_sym_BANG] = ACTIONS(2446), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2444), + [anon_sym_PLUS] = ACTIONS(2444), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_AMP_AMP] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_SEMI] = ACTIONS(2446), + [anon_sym___extension__] = ACTIONS(2444), + [anon_sym_typedef] = ACTIONS(2444), + [anon_sym_virtual] = ACTIONS(2444), + [anon_sym_extern] = ACTIONS(2444), + [anon_sym___attribute__] = ACTIONS(2444), + [anon_sym___attribute] = ACTIONS(2444), + [anon_sym_COLON_COLON] = ACTIONS(2446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2446), + [anon_sym___declspec] = ACTIONS(2444), + [anon_sym___based] = ACTIONS(2444), + [anon_sym___cdecl] = ACTIONS(2444), + [anon_sym___clrcall] = ACTIONS(2444), + [anon_sym___stdcall] = ACTIONS(2444), + [anon_sym___fastcall] = ACTIONS(2444), + [anon_sym___thiscall] = ACTIONS(2444), + [anon_sym___vectorcall] = ACTIONS(2444), + [anon_sym_LBRACE] = ACTIONS(2446), + [anon_sym_signed] = ACTIONS(2444), + [anon_sym_unsigned] = ACTIONS(2444), + [anon_sym_long] = ACTIONS(2444), + [anon_sym_short] = ACTIONS(2444), + [anon_sym_LBRACK] = ACTIONS(2444), + [anon_sym_static] = ACTIONS(2444), + [anon_sym_register] = ACTIONS(2444), + [anon_sym_inline] = ACTIONS(2444), + [anon_sym___inline] = ACTIONS(2444), + [anon_sym___inline__] = ACTIONS(2444), + [anon_sym___forceinline] = ACTIONS(2444), + [anon_sym_thread_local] = ACTIONS(2444), + [anon_sym___thread] = ACTIONS(2444), + [anon_sym_const] = ACTIONS(2444), + [anon_sym_constexpr] = ACTIONS(2444), + [anon_sym_volatile] = ACTIONS(2444), + [anon_sym_restrict] = ACTIONS(2444), + [anon_sym___restrict__] = ACTIONS(2444), + [anon_sym__Atomic] = ACTIONS(2444), + [anon_sym__Noreturn] = ACTIONS(2444), + [anon_sym_noreturn] = ACTIONS(2444), + [anon_sym__Nonnull] = ACTIONS(2444), + [anon_sym_mutable] = ACTIONS(2444), + [anon_sym_constinit] = ACTIONS(2444), + [anon_sym_consteval] = ACTIONS(2444), + [anon_sym_alignas] = ACTIONS(2444), + [anon_sym__Alignas] = ACTIONS(2444), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_enum] = ACTIONS(2444), + [anon_sym_class] = ACTIONS(2444), + [anon_sym_struct] = ACTIONS(2444), + [anon_sym_union] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2444), + [anon_sym_switch] = ACTIONS(2444), + [anon_sym_case] = ACTIONS(2444), + [anon_sym_default] = ACTIONS(2444), + [anon_sym_while] = ACTIONS(2444), + [anon_sym_do] = ACTIONS(2444), + [anon_sym_for] = ACTIONS(2444), + [anon_sym_return] = ACTIONS(2444), + [anon_sym_break] = ACTIONS(2444), + [anon_sym_continue] = ACTIONS(2444), + [anon_sym_goto] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(2444), + [anon_sym_compl] = ACTIONS(2444), + [anon_sym_DASH_DASH] = ACTIONS(2446), + [anon_sym_PLUS_PLUS] = ACTIONS(2446), + [anon_sym_sizeof] = ACTIONS(2444), + [anon_sym___alignof__] = ACTIONS(2444), + [anon_sym___alignof] = ACTIONS(2444), + [anon_sym__alignof] = ACTIONS(2444), + [anon_sym_alignof] = ACTIONS(2444), + [anon_sym__Alignof] = ACTIONS(2444), + [anon_sym_offsetof] = ACTIONS(2444), + [anon_sym__Generic] = ACTIONS(2444), + [anon_sym_asm] = ACTIONS(2444), + [anon_sym___asm__] = ACTIONS(2444), + [anon_sym___asm] = ACTIONS(2444), + [sym_number_literal] = ACTIONS(2446), + [anon_sym_L_SQUOTE] = ACTIONS(2446), + [anon_sym_u_SQUOTE] = ACTIONS(2446), + [anon_sym_U_SQUOTE] = ACTIONS(2446), + [anon_sym_u8_SQUOTE] = ACTIONS(2446), + [anon_sym_SQUOTE] = ACTIONS(2446), + [anon_sym_L_DQUOTE] = ACTIONS(2446), + [anon_sym_u_DQUOTE] = ACTIONS(2446), + [anon_sym_U_DQUOTE] = ACTIONS(2446), + [anon_sym_u8_DQUOTE] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [sym_true] = ACTIONS(2444), + [sym_false] = ACTIONS(2444), + [anon_sym_NULL] = ACTIONS(2444), + [anon_sym_nullptr] = ACTIONS(2444), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2444), + [anon_sym_decltype] = ACTIONS(2444), + [anon_sym_explicit] = ACTIONS(2444), + [anon_sym_typename] = ACTIONS(2444), + [anon_sym_template] = ACTIONS(2444), + [anon_sym_operator] = ACTIONS(2444), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_delete] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2444), + [anon_sym_namespace] = ACTIONS(2444), + [anon_sym_using] = ACTIONS(2444), + [anon_sym_static_assert] = ACTIONS(2444), + [anon_sym_concept] = ACTIONS(2444), + [anon_sym_co_return] = ACTIONS(2444), + [anon_sym_co_yield] = ACTIONS(2444), + [anon_sym_R_DQUOTE] = ACTIONS(2446), + [anon_sym_LR_DQUOTE] = ACTIONS(2446), + [anon_sym_uR_DQUOTE] = ACTIONS(2446), + [anon_sym_UR_DQUOTE] = ACTIONS(2446), + [anon_sym_u8R_DQUOTE] = ACTIONS(2446), + [anon_sym_co_await] = ACTIONS(2444), + [anon_sym_new] = ACTIONS(2444), + [anon_sym_requires] = ACTIONS(2444), + [sym_this] = ACTIONS(2444), + [sym_alone_macro] = ACTIONS(2446), + [aux_sym_alone_macro_call_token1] = ACTIONS(2444), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2444), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_FORWARD] = ACTIONS(2444), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2444), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2444), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2444), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2444), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_PS_GET] = ACTIONS(2444), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2444), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2444), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2444), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2444), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2444), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2444), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2444), + [anon_sym_MOZ_COLD] = ACTIONS(2444), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2444), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2444), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2444), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2444), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2444), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2444), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2444), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2444), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2444), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2444), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2444), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2444), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2444), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_NONNULL] = ACTIONS(2444), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2444), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2444), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2444), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2444), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2444), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2444), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2444), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2444), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2444), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2444), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2444), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2444), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2444), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2444), + [anon_sym_MOZ_RAII] = ACTIONS(2444), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2444), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2444), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2444), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2444), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2444), + }, + [STATE(410)] = { + [ts_builtin_sym_end] = ACTIONS(2452), + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_include_token1] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_AMP_AMP] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_virtual] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_COLON_COLON] = ACTIONS(2452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___based] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_mutable] = ACTIONS(2450), + [anon_sym_constinit] = ACTIONS(2450), + [anon_sym_consteval] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_class] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_goto] = ACTIONS(2450), + [anon_sym_not] = ACTIONS(2450), + [anon_sym_compl] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2452), + [anon_sym_sizeof] = ACTIONS(2450), + [anon_sym___alignof__] = ACTIONS(2450), + [anon_sym___alignof] = ACTIONS(2450), + [anon_sym__alignof] = ACTIONS(2450), + [anon_sym_alignof] = ACTIONS(2450), + [anon_sym__Alignof] = ACTIONS(2450), + [anon_sym_offsetof] = ACTIONS(2450), + [anon_sym__Generic] = ACTIONS(2450), + [anon_sym_asm] = ACTIONS(2450), + [anon_sym___asm__] = ACTIONS(2450), + [anon_sym___asm] = ACTIONS(2450), + [sym_number_literal] = ACTIONS(2452), + [anon_sym_L_SQUOTE] = ACTIONS(2452), + [anon_sym_u_SQUOTE] = ACTIONS(2452), + [anon_sym_U_SQUOTE] = ACTIONS(2452), + [anon_sym_u8_SQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_L_DQUOTE] = ACTIONS(2452), + [anon_sym_u_DQUOTE] = ACTIONS(2452), + [anon_sym_U_DQUOTE] = ACTIONS(2452), + [anon_sym_u8_DQUOTE] = ACTIONS(2452), + [anon_sym_DQUOTE] = ACTIONS(2452), + [sym_true] = ACTIONS(2450), + [sym_false] = ACTIONS(2450), + [anon_sym_NULL] = ACTIONS(2450), + [anon_sym_nullptr] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2450), + [anon_sym_decltype] = ACTIONS(2450), + [anon_sym_explicit] = ACTIONS(2450), + [anon_sym_typename] = ACTIONS(2450), + [anon_sym_template] = ACTIONS(2450), + [anon_sym_operator] = ACTIONS(2450), + [anon_sym_try] = ACTIONS(2450), + [anon_sym_delete] = ACTIONS(2450), + [anon_sym_throw] = ACTIONS(2450), + [anon_sym_namespace] = ACTIONS(2450), + [anon_sym_using] = ACTIONS(2450), + [anon_sym_static_assert] = ACTIONS(2450), + [anon_sym_concept] = ACTIONS(2450), + [anon_sym_co_return] = ACTIONS(2450), + [anon_sym_co_yield] = ACTIONS(2450), + [anon_sym_R_DQUOTE] = ACTIONS(2452), + [anon_sym_LR_DQUOTE] = ACTIONS(2452), + [anon_sym_uR_DQUOTE] = ACTIONS(2452), + [anon_sym_UR_DQUOTE] = ACTIONS(2452), + [anon_sym_u8R_DQUOTE] = ACTIONS(2452), + [anon_sym_co_await] = ACTIONS(2450), + [anon_sym_new] = ACTIONS(2450), + [anon_sym_requires] = ACTIONS(2450), + [sym_this] = ACTIONS(2450), + [sym_alone_macro] = ACTIONS(2452), + [aux_sym_alone_macro_call_token1] = ACTIONS(2450), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2450), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_FORWARD] = ACTIONS(2450), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2450), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2450), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2450), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_PS_GET] = ACTIONS(2450), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2450), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2450), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2450), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2450), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2450), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2450), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2450), + [anon_sym_MOZ_COLD] = ACTIONS(2450), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2450), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2450), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2450), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2450), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2450), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2450), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2450), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2450), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2450), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2450), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2450), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2450), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2450), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_NONNULL] = ACTIONS(2450), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2450), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2450), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2450), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2450), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2450), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2450), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2450), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2450), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2450), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2450), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2450), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2450), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2450), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2450), + [anon_sym_MOZ_RAII] = ACTIONS(2450), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2450), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2450), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2450), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2450), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2450), + }, + [STATE(411)] = { + [ts_builtin_sym_end] = ACTIONS(2474), + [sym_identifier] = ACTIONS(2476), + [aux_sym_preproc_include_token1] = ACTIONS(2476), + [aux_sym_preproc_def_token1] = ACTIONS(2476), + [aux_sym_preproc_if_token1] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2476), + [sym_preproc_directive] = ACTIONS(2476), + [anon_sym_LPAREN2] = ACTIONS(2474), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_TILDE] = ACTIONS(2474), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym___extension__] = ACTIONS(2476), + [anon_sym_typedef] = ACTIONS(2476), + [anon_sym_virtual] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym___attribute__] = ACTIONS(2476), + [anon_sym___attribute] = ACTIONS(2476), + [anon_sym_COLON_COLON] = ACTIONS(2474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2474), + [anon_sym___declspec] = ACTIONS(2476), + [anon_sym___based] = ACTIONS(2476), + [anon_sym___cdecl] = ACTIONS(2476), + [anon_sym___clrcall] = ACTIONS(2476), + [anon_sym___stdcall] = ACTIONS(2476), + [anon_sym___fastcall] = ACTIONS(2476), + [anon_sym___thiscall] = ACTIONS(2476), + [anon_sym___vectorcall] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2474), + [anon_sym_signed] = ACTIONS(2476), + [anon_sym_unsigned] = ACTIONS(2476), + [anon_sym_long] = ACTIONS(2476), + [anon_sym_short] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_register] = ACTIONS(2476), + [anon_sym_inline] = ACTIONS(2476), + [anon_sym___inline] = ACTIONS(2476), + [anon_sym___inline__] = ACTIONS(2476), + [anon_sym___forceinline] = ACTIONS(2476), + [anon_sym_thread_local] = ACTIONS(2476), + [anon_sym___thread] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [anon_sym_constexpr] = ACTIONS(2476), + [anon_sym_volatile] = ACTIONS(2476), + [anon_sym_restrict] = ACTIONS(2476), + [anon_sym___restrict__] = ACTIONS(2476), + [anon_sym__Atomic] = ACTIONS(2476), + [anon_sym__Noreturn] = ACTIONS(2476), + [anon_sym_noreturn] = ACTIONS(2476), + [anon_sym__Nonnull] = ACTIONS(2476), + [anon_sym_mutable] = ACTIONS(2476), + [anon_sym_constinit] = ACTIONS(2476), + [anon_sym_consteval] = ACTIONS(2476), + [anon_sym_alignas] = ACTIONS(2476), + [anon_sym__Alignas] = ACTIONS(2476), + [sym_primitive_type] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [anon_sym_class] = ACTIONS(2476), + [anon_sym_struct] = ACTIONS(2476), + [anon_sym_union] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_switch] = ACTIONS(2476), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_do] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_goto] = ACTIONS(2476), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(2474), + [anon_sym_PLUS_PLUS] = ACTIONS(2474), + [anon_sym_sizeof] = ACTIONS(2476), + [anon_sym___alignof__] = ACTIONS(2476), + [anon_sym___alignof] = ACTIONS(2476), + [anon_sym__alignof] = ACTIONS(2476), + [anon_sym_alignof] = ACTIONS(2476), + [anon_sym__Alignof] = ACTIONS(2476), + [anon_sym_offsetof] = ACTIONS(2476), + [anon_sym__Generic] = ACTIONS(2476), + [anon_sym_asm] = ACTIONS(2476), + [anon_sym___asm__] = ACTIONS(2476), + [anon_sym___asm] = ACTIONS(2476), + [sym_number_literal] = ACTIONS(2474), + [anon_sym_L_SQUOTE] = ACTIONS(2474), + [anon_sym_u_SQUOTE] = ACTIONS(2474), + [anon_sym_U_SQUOTE] = ACTIONS(2474), + [anon_sym_u8_SQUOTE] = ACTIONS(2474), + [anon_sym_SQUOTE] = ACTIONS(2474), + [anon_sym_L_DQUOTE] = ACTIONS(2474), + [anon_sym_u_DQUOTE] = ACTIONS(2474), + [anon_sym_U_DQUOTE] = ACTIONS(2474), + [anon_sym_u8_DQUOTE] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2474), + [sym_true] = ACTIONS(2476), + [sym_false] = ACTIONS(2476), + [anon_sym_NULL] = ACTIONS(2476), + [anon_sym_nullptr] = ACTIONS(2476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2476), + [anon_sym_decltype] = ACTIONS(2476), + [anon_sym_explicit] = ACTIONS(2476), + [anon_sym_typename] = ACTIONS(2476), + [anon_sym_template] = ACTIONS(2476), + [anon_sym_operator] = ACTIONS(2476), + [anon_sym_try] = ACTIONS(2476), + [anon_sym_delete] = ACTIONS(2476), + [anon_sym_throw] = ACTIONS(2476), + [anon_sym_namespace] = ACTIONS(2476), + [anon_sym_using] = ACTIONS(2476), + [anon_sym_static_assert] = ACTIONS(2476), + [anon_sym_concept] = ACTIONS(2476), + [anon_sym_co_return] = ACTIONS(2476), + [anon_sym_co_yield] = ACTIONS(2476), + [anon_sym_R_DQUOTE] = ACTIONS(2474), + [anon_sym_LR_DQUOTE] = ACTIONS(2474), + [anon_sym_uR_DQUOTE] = ACTIONS(2474), + [anon_sym_UR_DQUOTE] = ACTIONS(2474), + [anon_sym_u8R_DQUOTE] = ACTIONS(2474), + [anon_sym_co_await] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2476), + [anon_sym_requires] = ACTIONS(2476), + [sym_this] = ACTIONS(2476), + [sym_alone_macro] = ACTIONS(2474), + [aux_sym_alone_macro_call_token1] = ACTIONS(2476), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2476), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2476), + [anon_sym_FORWARD] = ACTIONS(2476), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2476), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2476), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2476), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2476), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2476), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2476), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2476), + [anon_sym_PS_GET] = ACTIONS(2476), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2476), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2476), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2476), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2476), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2476), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2476), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2476), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2476), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2476), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2476), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2476), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2476), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2476), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2476), + [anon_sym_MOZ_COLD] = ACTIONS(2476), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2476), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2476), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2476), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2476), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2476), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2476), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2476), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2476), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2476), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2476), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2476), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2476), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2476), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2476), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2476), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2476), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2476), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2476), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2476), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2476), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2476), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2476), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2476), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2476), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2476), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2476), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2476), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2476), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2476), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2476), + [anon_sym_MOZ_NONNULL] = ACTIONS(2476), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2476), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2476), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2476), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2476), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2476), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2476), + [anon_sym_MOZ_NORETURN] = ACTIONS(2476), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2476), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2476), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2476), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2476), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2476), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2476), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2476), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2476), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2476), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2476), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2476), + [anon_sym_MOZ_RAII] = ACTIONS(2476), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2476), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2476), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2476), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2476), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2476), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2476), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2476), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2476), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2476), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2476), + }, + [STATE(412)] = { + [sym_identifier] = ACTIONS(2373), + [aux_sym_preproc_include_token1] = ACTIONS(2373), + [aux_sym_preproc_def_token1] = ACTIONS(2373), + [aux_sym_preproc_if_token1] = ACTIONS(2373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2373), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2373), + [sym_preproc_directive] = ACTIONS(2373), + [anon_sym_LPAREN2] = ACTIONS(2375), + [anon_sym_BANG] = ACTIONS(2375), + [anon_sym_TILDE] = ACTIONS(2375), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2375), + [anon_sym_AMP_AMP] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym___extension__] = ACTIONS(2373), + [anon_sym_typedef] = ACTIONS(2373), + [anon_sym_virtual] = ACTIONS(2373), + [anon_sym_extern] = ACTIONS(2373), + [anon_sym___attribute__] = ACTIONS(2373), + [anon_sym___attribute] = ACTIONS(2373), + [anon_sym_COLON_COLON] = ACTIONS(2375), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2375), + [anon_sym___declspec] = ACTIONS(2373), + [anon_sym___based] = ACTIONS(2373), + [anon_sym___cdecl] = ACTIONS(2373), + [anon_sym___clrcall] = ACTIONS(2373), + [anon_sym___stdcall] = ACTIONS(2373), + [anon_sym___fastcall] = ACTIONS(2373), + [anon_sym___thiscall] = ACTIONS(2373), + [anon_sym___vectorcall] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_signed] = ACTIONS(2373), + [anon_sym_unsigned] = ACTIONS(2373), + [anon_sym_long] = ACTIONS(2373), + [anon_sym_short] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_register] = ACTIONS(2373), + [anon_sym_inline] = ACTIONS(2373), + [anon_sym___inline] = ACTIONS(2373), + [anon_sym___inline__] = ACTIONS(2373), + [anon_sym___forceinline] = ACTIONS(2373), + [anon_sym_thread_local] = ACTIONS(2373), + [anon_sym___thread] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_constexpr] = ACTIONS(2373), + [anon_sym_volatile] = ACTIONS(2373), + [anon_sym_restrict] = ACTIONS(2373), + [anon_sym___restrict__] = ACTIONS(2373), + [anon_sym__Atomic] = ACTIONS(2373), + [anon_sym__Noreturn] = ACTIONS(2373), + [anon_sym_noreturn] = ACTIONS(2373), + [anon_sym__Nonnull] = ACTIONS(2373), + [anon_sym_mutable] = ACTIONS(2373), + [anon_sym_constinit] = ACTIONS(2373), + [anon_sym_consteval] = ACTIONS(2373), + [anon_sym_alignas] = ACTIONS(2373), + [anon_sym__Alignas] = ACTIONS(2373), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_class] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_switch] = ACTIONS(2373), + [anon_sym_case] = ACTIONS(2373), + [anon_sym_default] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_goto] = ACTIONS(2373), + [anon_sym___try] = ACTIONS(2373), + [anon_sym___leave] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2373), + [anon_sym_compl] = ACTIONS(2373), + [anon_sym_DASH_DASH] = ACTIONS(2375), + [anon_sym_PLUS_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2373), + [anon_sym___alignof__] = ACTIONS(2373), + [anon_sym___alignof] = ACTIONS(2373), + [anon_sym__alignof] = ACTIONS(2373), + [anon_sym_alignof] = ACTIONS(2373), + [anon_sym__Alignof] = ACTIONS(2373), + [anon_sym_offsetof] = ACTIONS(2373), + [anon_sym__Generic] = ACTIONS(2373), + [anon_sym_asm] = ACTIONS(2373), + [anon_sym___asm__] = ACTIONS(2373), + [anon_sym___asm] = ACTIONS(2373), + [sym_number_literal] = ACTIONS(2375), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2375), + [anon_sym_u_DQUOTE] = ACTIONS(2375), + [anon_sym_U_DQUOTE] = ACTIONS(2375), + [anon_sym_u8_DQUOTE] = ACTIONS(2375), + [anon_sym_DQUOTE] = ACTIONS(2375), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [anon_sym_NULL] = ACTIONS(2373), + [anon_sym_nullptr] = ACTIONS(2373), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2373), + [anon_sym_decltype] = ACTIONS(2373), + [anon_sym_explicit] = ACTIONS(2373), + [anon_sym_typename] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(2373), + [anon_sym_operator] = ACTIONS(2373), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_delete] = ACTIONS(2373), + [anon_sym_throw] = ACTIONS(2373), + [anon_sym_namespace] = ACTIONS(2373), + [anon_sym_using] = ACTIONS(2373), + [anon_sym_static_assert] = ACTIONS(2373), + [anon_sym_concept] = ACTIONS(2373), + [anon_sym_co_return] = ACTIONS(2373), + [anon_sym_co_yield] = ACTIONS(2373), + [anon_sym_R_DQUOTE] = ACTIONS(2375), + [anon_sym_LR_DQUOTE] = ACTIONS(2375), + [anon_sym_uR_DQUOTE] = ACTIONS(2375), + [anon_sym_UR_DQUOTE] = ACTIONS(2375), + [anon_sym_u8R_DQUOTE] = ACTIONS(2375), + [anon_sym_co_await] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_requires] = ACTIONS(2373), + [sym_this] = ACTIONS(2373), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2373), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_FORWARD] = ACTIONS(2373), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2373), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2373), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2373), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2373), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_PS_GET] = ACTIONS(2373), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2373), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2373), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2373), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2373), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2373), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2373), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2373), + [anon_sym_MOZ_COLD] = ACTIONS(2373), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2373), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2373), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2373), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2373), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2373), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2373), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2373), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2373), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2373), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2373), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2373), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2373), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2373), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_NONNULL] = ACTIONS(2373), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2373), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2373), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2373), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2373), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2373), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2373), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2373), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2373), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2373), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2373), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2373), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2373), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2373), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2373), + [anon_sym_MOZ_RAII] = ACTIONS(2373), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2373), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2373), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2373), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2373), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2373), + }, + [STATE(413)] = { + [sym_identifier] = ACTIONS(2412), + [aux_sym_preproc_include_token1] = ACTIONS(2412), + [aux_sym_preproc_def_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2412), + [sym_preproc_directive] = ACTIONS(2412), + [anon_sym_LPAREN2] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym___extension__] = ACTIONS(2412), + [anon_sym_typedef] = ACTIONS(2412), + [anon_sym_virtual] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym___attribute__] = ACTIONS(2412), + [anon_sym___attribute] = ACTIONS(2412), + [anon_sym_COLON_COLON] = ACTIONS(2414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2414), + [anon_sym___declspec] = ACTIONS(2412), + [anon_sym___based] = ACTIONS(2412), + [anon_sym___cdecl] = ACTIONS(2412), + [anon_sym___clrcall] = ACTIONS(2412), + [anon_sym___stdcall] = ACTIONS(2412), + [anon_sym___fastcall] = ACTIONS(2412), + [anon_sym___thiscall] = ACTIONS(2412), + [anon_sym___vectorcall] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_signed] = ACTIONS(2412), + [anon_sym_unsigned] = ACTIONS(2412), + [anon_sym_long] = ACTIONS(2412), + [anon_sym_short] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym___inline] = ACTIONS(2412), + [anon_sym___inline__] = ACTIONS(2412), + [anon_sym___forceinline] = ACTIONS(2412), + [anon_sym_thread_local] = ACTIONS(2412), + [anon_sym___thread] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_constexpr] = ACTIONS(2412), + [anon_sym_volatile] = ACTIONS(2412), + [anon_sym_restrict] = ACTIONS(2412), + [anon_sym___restrict__] = ACTIONS(2412), + [anon_sym__Atomic] = ACTIONS(2412), + [anon_sym__Noreturn] = ACTIONS(2412), + [anon_sym_noreturn] = ACTIONS(2412), + [anon_sym__Nonnull] = ACTIONS(2412), + [anon_sym_mutable] = ACTIONS(2412), + [anon_sym_constinit] = ACTIONS(2412), + [anon_sym_consteval] = ACTIONS(2412), + [anon_sym_alignas] = ACTIONS(2412), + [anon_sym__Alignas] = ACTIONS(2412), + [sym_primitive_type] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_class] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_switch] = ACTIONS(2412), + [anon_sym_case] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_do] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_goto] = ACTIONS(2412), + [anon_sym___try] = ACTIONS(2412), + [anon_sym___leave] = ACTIONS(2412), + [anon_sym_not] = ACTIONS(2412), + [anon_sym_compl] = ACTIONS(2412), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_sizeof] = ACTIONS(2412), + [anon_sym___alignof__] = ACTIONS(2412), + [anon_sym___alignof] = ACTIONS(2412), + [anon_sym__alignof] = ACTIONS(2412), + [anon_sym_alignof] = ACTIONS(2412), + [anon_sym__Alignof] = ACTIONS(2412), + [anon_sym_offsetof] = ACTIONS(2412), + [anon_sym__Generic] = ACTIONS(2412), + [anon_sym_asm] = ACTIONS(2412), + [anon_sym___asm__] = ACTIONS(2412), + [anon_sym___asm] = ACTIONS(2412), + [sym_number_literal] = ACTIONS(2414), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2412), + [sym_false] = ACTIONS(2412), + [anon_sym_NULL] = ACTIONS(2412), + [anon_sym_nullptr] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2412), + [anon_sym_decltype] = ACTIONS(2412), + [anon_sym_explicit] = ACTIONS(2412), + [anon_sym_typename] = ACTIONS(2412), + [anon_sym_template] = ACTIONS(2412), + [anon_sym_operator] = ACTIONS(2412), + [anon_sym_try] = ACTIONS(2412), + [anon_sym_delete] = ACTIONS(2412), + [anon_sym_throw] = ACTIONS(2412), + [anon_sym_namespace] = ACTIONS(2412), + [anon_sym_using] = ACTIONS(2412), + [anon_sym_static_assert] = ACTIONS(2412), + [anon_sym_concept] = ACTIONS(2412), + [anon_sym_co_return] = ACTIONS(2412), + [anon_sym_co_yield] = ACTIONS(2412), + [anon_sym_R_DQUOTE] = ACTIONS(2414), + [anon_sym_LR_DQUOTE] = ACTIONS(2414), + [anon_sym_uR_DQUOTE] = ACTIONS(2414), + [anon_sym_UR_DQUOTE] = ACTIONS(2414), + [anon_sym_u8R_DQUOTE] = ACTIONS(2414), + [anon_sym_co_await] = ACTIONS(2412), + [anon_sym_new] = ACTIONS(2412), + [anon_sym_requires] = ACTIONS(2412), + [sym_this] = ACTIONS(2412), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2412), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_FORWARD] = ACTIONS(2412), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2412), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2412), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2412), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_PS_GET] = ACTIONS(2412), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2412), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2412), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2412), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2412), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2412), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2412), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2412), + [anon_sym_MOZ_COLD] = ACTIONS(2412), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2412), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2412), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2412), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2412), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2412), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2412), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2412), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2412), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2412), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2412), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2412), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2412), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2412), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_NONNULL] = ACTIONS(2412), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2412), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2412), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2412), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2412), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2412), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2412), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2412), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2412), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2412), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2412), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2412), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2412), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2412), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2412), + [anon_sym_MOZ_RAII] = ACTIONS(2412), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2412), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2412), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2412), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2412), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2412), + }, + [STATE(414)] = { + [ts_builtin_sym_end] = ACTIONS(2204), + [sym_identifier] = ACTIONS(2202), + [aux_sym_preproc_include_token1] = ACTIONS(2202), + [aux_sym_preproc_def_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token1] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2202), + [sym_preproc_directive] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym___extension__] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2202), + [anon_sym_virtual] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym___attribute__] = ACTIONS(2202), + [anon_sym___attribute] = ACTIONS(2202), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2204), + [anon_sym___declspec] = ACTIONS(2202), + [anon_sym___based] = ACTIONS(2202), + [anon_sym___cdecl] = ACTIONS(2202), + [anon_sym___clrcall] = ACTIONS(2202), + [anon_sym___stdcall] = ACTIONS(2202), + [anon_sym___fastcall] = ACTIONS(2202), + [anon_sym___thiscall] = ACTIONS(2202), + [anon_sym___vectorcall] = ACTIONS(2202), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_signed] = ACTIONS(2202), + [anon_sym_unsigned] = ACTIONS(2202), + [anon_sym_long] = ACTIONS(2202), + [anon_sym_short] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_register] = ACTIONS(2202), + [anon_sym_inline] = ACTIONS(2202), + [anon_sym___inline] = ACTIONS(2202), + [anon_sym___inline__] = ACTIONS(2202), + [anon_sym___forceinline] = ACTIONS(2202), + [anon_sym_thread_local] = ACTIONS(2202), + [anon_sym___thread] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_constexpr] = ACTIONS(2202), + [anon_sym_volatile] = ACTIONS(2202), + [anon_sym_restrict] = ACTIONS(2202), + [anon_sym___restrict__] = ACTIONS(2202), + [anon_sym__Atomic] = ACTIONS(2202), + [anon_sym__Noreturn] = ACTIONS(2202), + [anon_sym_noreturn] = ACTIONS(2202), + [anon_sym__Nonnull] = ACTIONS(2202), + [anon_sym_mutable] = ACTIONS(2202), + [anon_sym_constinit] = ACTIONS(2202), + [anon_sym_consteval] = ACTIONS(2202), + [anon_sym_alignas] = ACTIONS(2202), + [anon_sym__Alignas] = ACTIONS(2202), + [sym_primitive_type] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_class] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [anon_sym_if] = ACTIONS(2202), + [anon_sym_switch] = ACTIONS(2202), + [anon_sym_case] = ACTIONS(2202), + [anon_sym_default] = ACTIONS(2202), + [anon_sym_while] = ACTIONS(2202), + [anon_sym_do] = ACTIONS(2202), + [anon_sym_for] = ACTIONS(2202), + [anon_sym_return] = ACTIONS(2202), + [anon_sym_break] = ACTIONS(2202), + [anon_sym_continue] = ACTIONS(2202), + [anon_sym_goto] = ACTIONS(2202), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_compl] = ACTIONS(2202), + [anon_sym_DASH_DASH] = ACTIONS(2204), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_sizeof] = ACTIONS(2202), + [anon_sym___alignof__] = ACTIONS(2202), + [anon_sym___alignof] = ACTIONS(2202), + [anon_sym__alignof] = ACTIONS(2202), + [anon_sym_alignof] = ACTIONS(2202), + [anon_sym__Alignof] = ACTIONS(2202), + [anon_sym_offsetof] = ACTIONS(2202), + [anon_sym__Generic] = ACTIONS(2202), + [anon_sym_asm] = ACTIONS(2202), + [anon_sym___asm__] = ACTIONS(2202), + [anon_sym___asm] = ACTIONS(2202), + [sym_number_literal] = ACTIONS(2204), + [anon_sym_L_SQUOTE] = ACTIONS(2204), + [anon_sym_u_SQUOTE] = ACTIONS(2204), + [anon_sym_U_SQUOTE] = ACTIONS(2204), + [anon_sym_u8_SQUOTE] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_L_DQUOTE] = ACTIONS(2204), + [anon_sym_u_DQUOTE] = ACTIONS(2204), + [anon_sym_U_DQUOTE] = ACTIONS(2204), + [anon_sym_u8_DQUOTE] = ACTIONS(2204), + [anon_sym_DQUOTE] = ACTIONS(2204), + [sym_true] = ACTIONS(2202), + [sym_false] = ACTIONS(2202), + [anon_sym_NULL] = ACTIONS(2202), + [anon_sym_nullptr] = ACTIONS(2202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2202), + [anon_sym_decltype] = ACTIONS(2202), + [anon_sym_explicit] = ACTIONS(2202), + [anon_sym_typename] = ACTIONS(2202), + [anon_sym_template] = ACTIONS(2202), + [anon_sym_operator] = ACTIONS(2202), + [anon_sym_try] = ACTIONS(2202), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_throw] = ACTIONS(2202), + [anon_sym_namespace] = ACTIONS(2202), + [anon_sym_using] = ACTIONS(2202), + [anon_sym_static_assert] = ACTIONS(2202), + [anon_sym_concept] = ACTIONS(2202), + [anon_sym_co_return] = ACTIONS(2202), + [anon_sym_co_yield] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2204), + [anon_sym_LR_DQUOTE] = ACTIONS(2204), + [anon_sym_uR_DQUOTE] = ACTIONS(2204), + [anon_sym_UR_DQUOTE] = ACTIONS(2204), + [anon_sym_u8R_DQUOTE] = ACTIONS(2204), + [anon_sym_co_await] = ACTIONS(2202), + [anon_sym_new] = ACTIONS(2202), + [anon_sym_requires] = ACTIONS(2202), + [sym_this] = ACTIONS(2202), + [sym_alone_macro] = ACTIONS(2204), + [aux_sym_alone_macro_call_token1] = ACTIONS(2202), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_FORWARD] = ACTIONS(2202), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2202), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_PS_GET] = ACTIONS(2202), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2202), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2202), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2202), + [anon_sym_MOZ_COLD] = ACTIONS(2202), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2202), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2202), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2202), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2202), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2202), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2202), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2202), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2202), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2202), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2202), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2202), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2202), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_RAII] = ACTIONS(2202), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2202), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2202), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2202), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2202), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2202), + }, + [STATE(415)] = { + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_include_token1] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2428), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_virtual] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_COLON_COLON] = ACTIONS(2430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___based] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_mutable] = ACTIONS(2428), + [anon_sym_constinit] = ACTIONS(2428), + [anon_sym_consteval] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_class] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_case] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_goto] = ACTIONS(2428), + [anon_sym___try] = ACTIONS(2428), + [anon_sym___leave] = ACTIONS(2428), + [anon_sym_not] = ACTIONS(2428), + [anon_sym_compl] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_sizeof] = ACTIONS(2428), + [anon_sym___alignof__] = ACTIONS(2428), + [anon_sym___alignof] = ACTIONS(2428), + [anon_sym__alignof] = ACTIONS(2428), + [anon_sym_alignof] = ACTIONS(2428), + [anon_sym__Alignof] = ACTIONS(2428), + [anon_sym_offsetof] = ACTIONS(2428), + [anon_sym__Generic] = ACTIONS(2428), + [anon_sym_asm] = ACTIONS(2428), + [anon_sym___asm__] = ACTIONS(2428), + [anon_sym___asm] = ACTIONS(2428), + [sym_number_literal] = ACTIONS(2430), + [anon_sym_L_SQUOTE] = ACTIONS(2430), + [anon_sym_u_SQUOTE] = ACTIONS(2430), + [anon_sym_U_SQUOTE] = ACTIONS(2430), + [anon_sym_u8_SQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_L_DQUOTE] = ACTIONS(2430), + [anon_sym_u_DQUOTE] = ACTIONS(2430), + [anon_sym_U_DQUOTE] = ACTIONS(2430), + [anon_sym_u8_DQUOTE] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2430), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [anon_sym_NULL] = ACTIONS(2428), + [anon_sym_nullptr] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2428), + [anon_sym_decltype] = ACTIONS(2428), + [anon_sym_explicit] = ACTIONS(2428), + [anon_sym_typename] = ACTIONS(2428), + [anon_sym_template] = ACTIONS(2428), + [anon_sym_operator] = ACTIONS(2428), + [anon_sym_try] = ACTIONS(2428), + [anon_sym_delete] = ACTIONS(2428), + [anon_sym_throw] = ACTIONS(2428), + [anon_sym_namespace] = ACTIONS(2428), + [anon_sym_using] = ACTIONS(2428), + [anon_sym_static_assert] = ACTIONS(2428), + [anon_sym_concept] = ACTIONS(2428), + [anon_sym_co_return] = ACTIONS(2428), + [anon_sym_co_yield] = ACTIONS(2428), + [anon_sym_R_DQUOTE] = ACTIONS(2430), + [anon_sym_LR_DQUOTE] = ACTIONS(2430), + [anon_sym_uR_DQUOTE] = ACTIONS(2430), + [anon_sym_UR_DQUOTE] = ACTIONS(2430), + [anon_sym_u8R_DQUOTE] = ACTIONS(2430), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2428), + [anon_sym_requires] = ACTIONS(2428), + [sym_this] = ACTIONS(2428), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2428), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_FORWARD] = ACTIONS(2428), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2428), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2428), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2428), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_PS_GET] = ACTIONS(2428), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2428), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2428), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2428), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2428), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2428), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2428), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2428), + [anon_sym_MOZ_COLD] = ACTIONS(2428), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2428), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2428), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2428), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2428), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2428), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2428), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2428), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2428), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2428), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2428), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2428), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2428), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2428), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_NONNULL] = ACTIONS(2428), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2428), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2428), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2428), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2428), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2428), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2428), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2428), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2428), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2428), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2428), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2428), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2428), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2428), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2428), + [anon_sym_MOZ_RAII] = ACTIONS(2428), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2428), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2428), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2428), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2428), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2428), + }, + [STATE(416)] = { + [ts_builtin_sym_end] = ACTIONS(2204), + [sym_identifier] = ACTIONS(2202), + [aux_sym_preproc_include_token1] = ACTIONS(2202), + [aux_sym_preproc_def_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token1] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2202), + [sym_preproc_directive] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym___extension__] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2202), + [anon_sym_virtual] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym___attribute__] = ACTIONS(2202), + [anon_sym___attribute] = ACTIONS(2202), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2204), + [anon_sym___declspec] = ACTIONS(2202), + [anon_sym___based] = ACTIONS(2202), + [anon_sym___cdecl] = ACTIONS(2202), + [anon_sym___clrcall] = ACTIONS(2202), + [anon_sym___stdcall] = ACTIONS(2202), + [anon_sym___fastcall] = ACTIONS(2202), + [anon_sym___thiscall] = ACTIONS(2202), + [anon_sym___vectorcall] = ACTIONS(2202), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_signed] = ACTIONS(2202), + [anon_sym_unsigned] = ACTIONS(2202), + [anon_sym_long] = ACTIONS(2202), + [anon_sym_short] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_register] = ACTIONS(2202), + [anon_sym_inline] = ACTIONS(2202), + [anon_sym___inline] = ACTIONS(2202), + [anon_sym___inline__] = ACTIONS(2202), + [anon_sym___forceinline] = ACTIONS(2202), + [anon_sym_thread_local] = ACTIONS(2202), + [anon_sym___thread] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_constexpr] = ACTIONS(2202), + [anon_sym_volatile] = ACTIONS(2202), + [anon_sym_restrict] = ACTIONS(2202), + [anon_sym___restrict__] = ACTIONS(2202), + [anon_sym__Atomic] = ACTIONS(2202), + [anon_sym__Noreturn] = ACTIONS(2202), + [anon_sym_noreturn] = ACTIONS(2202), + [anon_sym__Nonnull] = ACTIONS(2202), + [anon_sym_mutable] = ACTIONS(2202), + [anon_sym_constinit] = ACTIONS(2202), + [anon_sym_consteval] = ACTIONS(2202), + [anon_sym_alignas] = ACTIONS(2202), + [anon_sym__Alignas] = ACTIONS(2202), + [sym_primitive_type] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_class] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [anon_sym_if] = ACTIONS(2202), + [anon_sym_switch] = ACTIONS(2202), + [anon_sym_case] = ACTIONS(2202), + [anon_sym_default] = ACTIONS(2202), + [anon_sym_while] = ACTIONS(2202), + [anon_sym_do] = ACTIONS(2202), + [anon_sym_for] = ACTIONS(2202), + [anon_sym_return] = ACTIONS(2202), + [anon_sym_break] = ACTIONS(2202), + [anon_sym_continue] = ACTIONS(2202), + [anon_sym_goto] = ACTIONS(2202), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_compl] = ACTIONS(2202), + [anon_sym_DASH_DASH] = ACTIONS(2204), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_sizeof] = ACTIONS(2202), + [anon_sym___alignof__] = ACTIONS(2202), + [anon_sym___alignof] = ACTIONS(2202), + [anon_sym__alignof] = ACTIONS(2202), + [anon_sym_alignof] = ACTIONS(2202), + [anon_sym__Alignof] = ACTIONS(2202), + [anon_sym_offsetof] = ACTIONS(2202), + [anon_sym__Generic] = ACTIONS(2202), + [anon_sym_asm] = ACTIONS(2202), + [anon_sym___asm__] = ACTIONS(2202), + [anon_sym___asm] = ACTIONS(2202), + [sym_number_literal] = ACTIONS(2204), + [anon_sym_L_SQUOTE] = ACTIONS(2204), + [anon_sym_u_SQUOTE] = ACTIONS(2204), + [anon_sym_U_SQUOTE] = ACTIONS(2204), + [anon_sym_u8_SQUOTE] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_L_DQUOTE] = ACTIONS(2204), + [anon_sym_u_DQUOTE] = ACTIONS(2204), + [anon_sym_U_DQUOTE] = ACTIONS(2204), + [anon_sym_u8_DQUOTE] = ACTIONS(2204), + [anon_sym_DQUOTE] = ACTIONS(2204), + [sym_true] = ACTIONS(2202), + [sym_false] = ACTIONS(2202), + [anon_sym_NULL] = ACTIONS(2202), + [anon_sym_nullptr] = ACTIONS(2202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2202), + [anon_sym_decltype] = ACTIONS(2202), + [anon_sym_explicit] = ACTIONS(2202), + [anon_sym_typename] = ACTIONS(2202), + [anon_sym_template] = ACTIONS(2202), + [anon_sym_operator] = ACTIONS(2202), + [anon_sym_try] = ACTIONS(2202), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_throw] = ACTIONS(2202), + [anon_sym_namespace] = ACTIONS(2202), + [anon_sym_using] = ACTIONS(2202), + [anon_sym_static_assert] = ACTIONS(2202), + [anon_sym_concept] = ACTIONS(2202), + [anon_sym_co_return] = ACTIONS(2202), + [anon_sym_co_yield] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2204), + [anon_sym_LR_DQUOTE] = ACTIONS(2204), + [anon_sym_uR_DQUOTE] = ACTIONS(2204), + [anon_sym_UR_DQUOTE] = ACTIONS(2204), + [anon_sym_u8R_DQUOTE] = ACTIONS(2204), + [anon_sym_co_await] = ACTIONS(2202), + [anon_sym_new] = ACTIONS(2202), + [anon_sym_requires] = ACTIONS(2202), + [sym_this] = ACTIONS(2202), + [sym_alone_macro] = ACTIONS(2204), + [aux_sym_alone_macro_call_token1] = ACTIONS(2202), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_FORWARD] = ACTIONS(2202), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2202), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_PS_GET] = ACTIONS(2202), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2202), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2202), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2202), + [anon_sym_MOZ_COLD] = ACTIONS(2202), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2202), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2202), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2202), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2202), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2202), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2202), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2202), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2202), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2202), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2202), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2202), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2202), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_RAII] = ACTIONS(2202), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2202), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2202), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2202), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2202), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2202), + }, + [STATE(417)] = { + [sym_identifier] = ACTIONS(2377), + [aux_sym_preproc_include_token1] = ACTIONS(2377), + [aux_sym_preproc_def_token1] = ACTIONS(2377), + [aux_sym_preproc_if_token1] = ACTIONS(2377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2377), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2377), + [sym_preproc_directive] = ACTIONS(2377), + [anon_sym_LPAREN2] = ACTIONS(2379), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2377), + [anon_sym_STAR] = ACTIONS(2379), + [anon_sym_AMP_AMP] = ACTIONS(2379), + [anon_sym_AMP] = ACTIONS(2377), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym___extension__] = ACTIONS(2377), + [anon_sym_typedef] = ACTIONS(2377), + [anon_sym_virtual] = ACTIONS(2377), + [anon_sym_extern] = ACTIONS(2377), + [anon_sym___attribute__] = ACTIONS(2377), + [anon_sym___attribute] = ACTIONS(2377), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2379), + [anon_sym___declspec] = ACTIONS(2377), + [anon_sym___based] = ACTIONS(2377), + [anon_sym___cdecl] = ACTIONS(2377), + [anon_sym___clrcall] = ACTIONS(2377), + [anon_sym___stdcall] = ACTIONS(2377), + [anon_sym___fastcall] = ACTIONS(2377), + [anon_sym___thiscall] = ACTIONS(2377), + [anon_sym___vectorcall] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_signed] = ACTIONS(2377), + [anon_sym_unsigned] = ACTIONS(2377), + [anon_sym_long] = ACTIONS(2377), + [anon_sym_short] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_static] = ACTIONS(2377), + [anon_sym_register] = ACTIONS(2377), + [anon_sym_inline] = ACTIONS(2377), + [anon_sym___inline] = ACTIONS(2377), + [anon_sym___inline__] = ACTIONS(2377), + [anon_sym___forceinline] = ACTIONS(2377), + [anon_sym_thread_local] = ACTIONS(2377), + [anon_sym___thread] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [anon_sym_constexpr] = ACTIONS(2377), + [anon_sym_volatile] = ACTIONS(2377), + [anon_sym_restrict] = ACTIONS(2377), + [anon_sym___restrict__] = ACTIONS(2377), + [anon_sym__Atomic] = ACTIONS(2377), + [anon_sym__Noreturn] = ACTIONS(2377), + [anon_sym_noreturn] = ACTIONS(2377), + [anon_sym__Nonnull] = ACTIONS(2377), + [anon_sym_mutable] = ACTIONS(2377), + [anon_sym_constinit] = ACTIONS(2377), + [anon_sym_consteval] = ACTIONS(2377), + [anon_sym_alignas] = ACTIONS(2377), + [anon_sym__Alignas] = ACTIONS(2377), + [sym_primitive_type] = ACTIONS(2377), + [anon_sym_enum] = ACTIONS(2377), + [anon_sym_class] = ACTIONS(2377), + [anon_sym_struct] = ACTIONS(2377), + [anon_sym_union] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_switch] = ACTIONS(2377), + [anon_sym_case] = ACTIONS(2377), + [anon_sym_default] = ACTIONS(2377), + [anon_sym_while] = ACTIONS(2377), + [anon_sym_do] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_goto] = ACTIONS(2377), + [anon_sym___try] = ACTIONS(2377), + [anon_sym___leave] = ACTIONS(2377), + [anon_sym_not] = ACTIONS(2377), + [anon_sym_compl] = ACTIONS(2377), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_sizeof] = ACTIONS(2377), + [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(2377), + [anon_sym__Generic] = ACTIONS(2377), + [anon_sym_asm] = ACTIONS(2377), + [anon_sym___asm__] = ACTIONS(2377), + [anon_sym___asm] = ACTIONS(2377), + [sym_number_literal] = ACTIONS(2379), + [anon_sym_L_SQUOTE] = ACTIONS(2379), + [anon_sym_u_SQUOTE] = ACTIONS(2379), + [anon_sym_U_SQUOTE] = ACTIONS(2379), + [anon_sym_u8_SQUOTE] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_L_DQUOTE] = ACTIONS(2379), + [anon_sym_u_DQUOTE] = ACTIONS(2379), + [anon_sym_U_DQUOTE] = ACTIONS(2379), + [anon_sym_u8_DQUOTE] = ACTIONS(2379), + [anon_sym_DQUOTE] = ACTIONS(2379), + [sym_true] = ACTIONS(2377), + [sym_false] = ACTIONS(2377), + [anon_sym_NULL] = ACTIONS(2377), + [anon_sym_nullptr] = ACTIONS(2377), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2377), + [anon_sym_decltype] = ACTIONS(2377), + [anon_sym_explicit] = ACTIONS(2377), + [anon_sym_typename] = ACTIONS(2377), + [anon_sym_template] = ACTIONS(2377), + [anon_sym_operator] = ACTIONS(2377), + [anon_sym_try] = ACTIONS(2377), + [anon_sym_delete] = ACTIONS(2377), + [anon_sym_throw] = ACTIONS(2377), + [anon_sym_namespace] = ACTIONS(2377), + [anon_sym_using] = ACTIONS(2377), + [anon_sym_static_assert] = ACTIONS(2377), + [anon_sym_concept] = ACTIONS(2377), + [anon_sym_co_return] = ACTIONS(2377), + [anon_sym_co_yield] = ACTIONS(2377), + [anon_sym_R_DQUOTE] = ACTIONS(2379), + [anon_sym_LR_DQUOTE] = ACTIONS(2379), + [anon_sym_uR_DQUOTE] = ACTIONS(2379), + [anon_sym_UR_DQUOTE] = ACTIONS(2379), + [anon_sym_u8R_DQUOTE] = ACTIONS(2379), + [anon_sym_co_await] = ACTIONS(2377), + [anon_sym_new] = ACTIONS(2377), + [anon_sym_requires] = ACTIONS(2377), + [sym_this] = ACTIONS(2377), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2377), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_FORWARD] = ACTIONS(2377), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2377), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2377), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2377), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2377), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_PS_GET] = ACTIONS(2377), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2377), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2377), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2377), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2377), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2377), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2377), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2377), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2377), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2377), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2377), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2377), + [anon_sym_MOZ_COLD] = ACTIONS(2377), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2377), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2377), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2377), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2377), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2377), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2377), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2377), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2377), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2377), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2377), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2377), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2377), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2377), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2377), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2377), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2377), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2377), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2377), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2377), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2377), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_NONNULL] = ACTIONS(2377), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2377), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2377), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2377), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2377), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2377), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_NORETURN] = ACTIONS(2377), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2377), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2377), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2377), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2377), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2377), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2377), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2377), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2377), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2377), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2377), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2377), + [anon_sym_MOZ_RAII] = ACTIONS(2377), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2377), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2377), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2377), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2377), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2377), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2377), + }, + [STATE(418)] = { + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_include_token1] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_LPAREN2] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_AMP_AMP] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2432), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_virtual] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_COLON_COLON] = ACTIONS(2434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___based] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_mutable] = ACTIONS(2432), + [anon_sym_constinit] = ACTIONS(2432), + [anon_sym_consteval] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_class] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_goto] = ACTIONS(2432), + [anon_sym___try] = ACTIONS(2432), + [anon_sym___leave] = ACTIONS(2432), + [anon_sym_not] = ACTIONS(2432), + [anon_sym_compl] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_sizeof] = ACTIONS(2432), + [anon_sym___alignof__] = ACTIONS(2432), + [anon_sym___alignof] = ACTIONS(2432), + [anon_sym__alignof] = ACTIONS(2432), + [anon_sym_alignof] = ACTIONS(2432), + [anon_sym__Alignof] = ACTIONS(2432), + [anon_sym_offsetof] = ACTIONS(2432), + [anon_sym__Generic] = ACTIONS(2432), + [anon_sym_asm] = ACTIONS(2432), + [anon_sym___asm__] = ACTIONS(2432), + [anon_sym___asm] = ACTIONS(2432), + [sym_number_literal] = ACTIONS(2434), + [anon_sym_L_SQUOTE] = ACTIONS(2434), + [anon_sym_u_SQUOTE] = ACTIONS(2434), + [anon_sym_U_SQUOTE] = ACTIONS(2434), + [anon_sym_u8_SQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_L_DQUOTE] = ACTIONS(2434), + [anon_sym_u_DQUOTE] = ACTIONS(2434), + [anon_sym_U_DQUOTE] = ACTIONS(2434), + [anon_sym_u8_DQUOTE] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2434), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [anon_sym_NULL] = ACTIONS(2432), + [anon_sym_nullptr] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2432), + [anon_sym_decltype] = ACTIONS(2432), + [anon_sym_explicit] = ACTIONS(2432), + [anon_sym_typename] = ACTIONS(2432), + [anon_sym_template] = ACTIONS(2432), + [anon_sym_operator] = ACTIONS(2432), + [anon_sym_try] = ACTIONS(2432), + [anon_sym_delete] = ACTIONS(2432), + [anon_sym_throw] = ACTIONS(2432), + [anon_sym_namespace] = ACTIONS(2432), + [anon_sym_using] = ACTIONS(2432), + [anon_sym_static_assert] = ACTIONS(2432), + [anon_sym_concept] = ACTIONS(2432), + [anon_sym_co_return] = ACTIONS(2432), + [anon_sym_co_yield] = ACTIONS(2432), + [anon_sym_R_DQUOTE] = ACTIONS(2434), + [anon_sym_LR_DQUOTE] = ACTIONS(2434), + [anon_sym_uR_DQUOTE] = ACTIONS(2434), + [anon_sym_UR_DQUOTE] = ACTIONS(2434), + [anon_sym_u8R_DQUOTE] = ACTIONS(2434), + [anon_sym_co_await] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2432), + [sym_this] = ACTIONS(2432), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2432), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_FORWARD] = ACTIONS(2432), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2432), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2432), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2432), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_PS_GET] = ACTIONS(2432), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2432), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2432), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2432), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2432), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2432), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2432), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2432), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2432), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2432), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2432), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2432), + [anon_sym_MOZ_COLD] = ACTIONS(2432), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2432), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2432), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2432), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2432), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2432), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2432), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2432), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2432), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2432), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2432), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2432), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2432), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2432), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2432), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2432), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2432), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2432), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2432), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2432), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2432), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_NONNULL] = ACTIONS(2432), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2432), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2432), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2432), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2432), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2432), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_NORETURN] = ACTIONS(2432), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2432), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2432), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2432), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2432), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2432), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2432), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2432), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2432), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2432), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2432), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2432), + [anon_sym_MOZ_RAII] = ACTIONS(2432), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2432), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2432), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2432), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2432), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2432), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2432), + }, + [STATE(419)] = { + [ts_builtin_sym_end] = ACTIONS(2238), + [sym_identifier] = ACTIONS(2236), + [aux_sym_preproc_include_token1] = ACTIONS(2236), + [aux_sym_preproc_def_token1] = ACTIONS(2236), + [aux_sym_preproc_if_token1] = ACTIONS(2236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2236), + [sym_preproc_directive] = ACTIONS(2236), + [anon_sym_LPAREN2] = ACTIONS(2238), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_TILDE] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_STAR] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_typedef] = ACTIONS(2236), + [anon_sym_virtual] = ACTIONS(2236), + [anon_sym_extern] = ACTIONS(2236), + [anon_sym___attribute__] = ACTIONS(2236), + [anon_sym___attribute] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2238), + [anon_sym___declspec] = ACTIONS(2236), + [anon_sym___based] = ACTIONS(2236), + [anon_sym___cdecl] = ACTIONS(2236), + [anon_sym___clrcall] = ACTIONS(2236), + [anon_sym___stdcall] = ACTIONS(2236), + [anon_sym___fastcall] = ACTIONS(2236), + [anon_sym___thiscall] = ACTIONS(2236), + [anon_sym___vectorcall] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_signed] = ACTIONS(2236), + [anon_sym_unsigned] = ACTIONS(2236), + [anon_sym_long] = ACTIONS(2236), + [anon_sym_short] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_register] = ACTIONS(2236), + [anon_sym_inline] = ACTIONS(2236), + [anon_sym___inline] = ACTIONS(2236), + [anon_sym___inline__] = ACTIONS(2236), + [anon_sym___forceinline] = ACTIONS(2236), + [anon_sym_thread_local] = ACTIONS(2236), + [anon_sym___thread] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(2236), + [anon_sym_constexpr] = ACTIONS(2236), + [anon_sym_volatile] = ACTIONS(2236), + [anon_sym_restrict] = ACTIONS(2236), + [anon_sym___restrict__] = ACTIONS(2236), + [anon_sym__Atomic] = ACTIONS(2236), + [anon_sym__Noreturn] = ACTIONS(2236), + [anon_sym_noreturn] = ACTIONS(2236), + [anon_sym__Nonnull] = ACTIONS(2236), + [anon_sym_mutable] = ACTIONS(2236), + [anon_sym_constinit] = ACTIONS(2236), + [anon_sym_consteval] = ACTIONS(2236), + [anon_sym_alignas] = ACTIONS(2236), + [anon_sym__Alignas] = ACTIONS(2236), + [sym_primitive_type] = ACTIONS(2236), + [anon_sym_enum] = ACTIONS(2236), + [anon_sym_class] = ACTIONS(2236), + [anon_sym_struct] = ACTIONS(2236), + [anon_sym_union] = ACTIONS(2236), + [anon_sym_if] = ACTIONS(2236), + [anon_sym_switch] = ACTIONS(2236), + [anon_sym_case] = ACTIONS(2236), + [anon_sym_default] = ACTIONS(2236), + [anon_sym_while] = ACTIONS(2236), + [anon_sym_do] = ACTIONS(2236), + [anon_sym_for] = ACTIONS(2236), + [anon_sym_return] = ACTIONS(2236), + [anon_sym_break] = ACTIONS(2236), + [anon_sym_continue] = ACTIONS(2236), + [anon_sym_goto] = ACTIONS(2236), + [anon_sym_not] = ACTIONS(2236), + [anon_sym_compl] = ACTIONS(2236), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_sizeof] = ACTIONS(2236), + [anon_sym___alignof__] = ACTIONS(2236), + [anon_sym___alignof] = ACTIONS(2236), + [anon_sym__alignof] = ACTIONS(2236), + [anon_sym_alignof] = ACTIONS(2236), + [anon_sym__Alignof] = ACTIONS(2236), + [anon_sym_offsetof] = ACTIONS(2236), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2236), + [anon_sym___asm__] = ACTIONS(2236), + [anon_sym___asm] = ACTIONS(2236), + [sym_number_literal] = ACTIONS(2238), + [anon_sym_L_SQUOTE] = ACTIONS(2238), + [anon_sym_u_SQUOTE] = ACTIONS(2238), + [anon_sym_U_SQUOTE] = ACTIONS(2238), + [anon_sym_u8_SQUOTE] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2238), + [anon_sym_L_DQUOTE] = ACTIONS(2238), + [anon_sym_u_DQUOTE] = ACTIONS(2238), + [anon_sym_U_DQUOTE] = ACTIONS(2238), + [anon_sym_u8_DQUOTE] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2238), + [sym_true] = ACTIONS(2236), + [sym_false] = ACTIONS(2236), + [anon_sym_NULL] = ACTIONS(2236), + [anon_sym_nullptr] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2236), + [anon_sym_decltype] = ACTIONS(2236), + [anon_sym_explicit] = ACTIONS(2236), + [anon_sym_typename] = ACTIONS(2236), + [anon_sym_template] = ACTIONS(2236), + [anon_sym_operator] = ACTIONS(2236), + [anon_sym_try] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2236), + [anon_sym_throw] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2236), + [anon_sym_using] = ACTIONS(2236), + [anon_sym_static_assert] = ACTIONS(2236), + [anon_sym_concept] = ACTIONS(2236), + [anon_sym_co_return] = ACTIONS(2236), + [anon_sym_co_yield] = ACTIONS(2236), + [anon_sym_R_DQUOTE] = ACTIONS(2238), + [anon_sym_LR_DQUOTE] = ACTIONS(2238), + [anon_sym_uR_DQUOTE] = ACTIONS(2238), + [anon_sym_UR_DQUOTE] = ACTIONS(2238), + [anon_sym_u8R_DQUOTE] = ACTIONS(2238), + [anon_sym_co_await] = ACTIONS(2236), + [anon_sym_new] = ACTIONS(2236), + [anon_sym_requires] = ACTIONS(2236), + [sym_this] = ACTIONS(2236), + [sym_alone_macro] = ACTIONS(2238), + [aux_sym_alone_macro_call_token1] = ACTIONS(2236), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2236), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_FORWARD] = ACTIONS(2236), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2236), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2236), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2236), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2236), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_PS_GET] = ACTIONS(2236), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2236), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2236), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2236), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2236), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2236), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2236), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2236), + [anon_sym_MOZ_COLD] = ACTIONS(2236), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2236), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2236), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2236), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2236), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2236), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2236), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2236), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2236), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2236), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2236), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2236), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2236), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2236), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_NONNULL] = ACTIONS(2236), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2236), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2236), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2236), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2236), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2236), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2236), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2236), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2236), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2236), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2236), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2236), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2236), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2236), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2236), + [anon_sym_MOZ_RAII] = ACTIONS(2236), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2236), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2236), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2236), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2236), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2236), + }, + [STATE(420)] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_virtual] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_COLON_COLON] = ACTIONS(2438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___based] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_mutable] = ACTIONS(2436), + [anon_sym_constinit] = ACTIONS(2436), + [anon_sym_consteval] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_class] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym___try] = ACTIONS(2436), + [anon_sym___leave] = ACTIONS(2436), + [anon_sym_not] = ACTIONS(2436), + [anon_sym_compl] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2436), + [anon_sym_decltype] = ACTIONS(2436), + [anon_sym_explicit] = ACTIONS(2436), + [anon_sym_typename] = ACTIONS(2436), + [anon_sym_template] = ACTIONS(2436), + [anon_sym_operator] = ACTIONS(2436), + [anon_sym_try] = ACTIONS(2436), + [anon_sym_delete] = ACTIONS(2436), + [anon_sym_throw] = ACTIONS(2436), + [anon_sym_namespace] = ACTIONS(2436), + [anon_sym_using] = ACTIONS(2436), + [anon_sym_static_assert] = ACTIONS(2436), + [anon_sym_concept] = ACTIONS(2436), + [anon_sym_co_return] = ACTIONS(2436), + [anon_sym_co_yield] = ACTIONS(2436), + [anon_sym_R_DQUOTE] = ACTIONS(2438), + [anon_sym_LR_DQUOTE] = ACTIONS(2438), + [anon_sym_uR_DQUOTE] = ACTIONS(2438), + [anon_sym_UR_DQUOTE] = ACTIONS(2438), + [anon_sym_u8R_DQUOTE] = ACTIONS(2438), + [anon_sym_co_await] = ACTIONS(2436), + [anon_sym_new] = ACTIONS(2436), + [anon_sym_requires] = ACTIONS(2436), + [sym_this] = ACTIONS(2436), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_FORWARD] = ACTIONS(2436), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_PS_GET] = ACTIONS(2436), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2436), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2436), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2436), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2436), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2436), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2436), + [anon_sym_MOZ_COLD] = ACTIONS(2436), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2436), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2436), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2436), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2436), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2436), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2436), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2436), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2436), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2436), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2436), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2436), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2436), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2436), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_NONNULL] = ACTIONS(2436), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2436), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2436), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2436), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2436), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2436), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2436), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2436), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2436), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2436), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2436), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2436), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2436), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2436), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2436), + [anon_sym_MOZ_RAII] = ACTIONS(2436), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2436), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2436), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2436), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2436), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2436), + }, + [STATE(421)] = { + [ts_builtin_sym_end] = ACTIONS(2270), + [sym_identifier] = ACTIONS(2268), + [aux_sym_preproc_include_token1] = ACTIONS(2268), + [aux_sym_preproc_def_token1] = ACTIONS(2268), + [aux_sym_preproc_if_token1] = ACTIONS(2268), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2268), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2268), + [sym_preproc_directive] = ACTIONS(2268), + [anon_sym_LPAREN2] = ACTIONS(2270), + [anon_sym_BANG] = ACTIONS(2270), + [anon_sym_TILDE] = ACTIONS(2270), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_AMP_AMP] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym___extension__] = ACTIONS(2268), + [anon_sym_typedef] = ACTIONS(2268), + [anon_sym_virtual] = ACTIONS(2268), + [anon_sym_extern] = ACTIONS(2268), + [anon_sym___attribute__] = ACTIONS(2268), + [anon_sym___attribute] = ACTIONS(2268), + [anon_sym_COLON_COLON] = ACTIONS(2270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2270), + [anon_sym___declspec] = ACTIONS(2268), + [anon_sym___based] = ACTIONS(2268), + [anon_sym___cdecl] = ACTIONS(2268), + [anon_sym___clrcall] = ACTIONS(2268), + [anon_sym___stdcall] = ACTIONS(2268), + [anon_sym___fastcall] = ACTIONS(2268), + [anon_sym___thiscall] = ACTIONS(2268), + [anon_sym___vectorcall] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_signed] = ACTIONS(2268), + [anon_sym_unsigned] = ACTIONS(2268), + [anon_sym_long] = ACTIONS(2268), + [anon_sym_short] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_register] = ACTIONS(2268), + [anon_sym_inline] = ACTIONS(2268), + [anon_sym___inline] = ACTIONS(2268), + [anon_sym___inline__] = ACTIONS(2268), + [anon_sym___forceinline] = ACTIONS(2268), + [anon_sym_thread_local] = ACTIONS(2268), + [anon_sym___thread] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_constexpr] = ACTIONS(2268), + [anon_sym_volatile] = ACTIONS(2268), + [anon_sym_restrict] = ACTIONS(2268), + [anon_sym___restrict__] = ACTIONS(2268), + [anon_sym__Atomic] = ACTIONS(2268), + [anon_sym__Noreturn] = ACTIONS(2268), + [anon_sym_noreturn] = ACTIONS(2268), + [anon_sym__Nonnull] = ACTIONS(2268), + [anon_sym_mutable] = ACTIONS(2268), + [anon_sym_constinit] = ACTIONS(2268), + [anon_sym_consteval] = ACTIONS(2268), + [anon_sym_alignas] = ACTIONS(2268), + [anon_sym__Alignas] = ACTIONS(2268), + [sym_primitive_type] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(2268), + [anon_sym_union] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_case] = ACTIONS(2268), + [anon_sym_default] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_goto] = ACTIONS(2268), + [anon_sym_not] = ACTIONS(2268), + [anon_sym_compl] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2270), + [anon_sym_PLUS_PLUS] = ACTIONS(2270), + [anon_sym_sizeof] = ACTIONS(2268), + [anon_sym___alignof__] = ACTIONS(2268), + [anon_sym___alignof] = ACTIONS(2268), + [anon_sym__alignof] = ACTIONS(2268), + [anon_sym_alignof] = ACTIONS(2268), + [anon_sym__Alignof] = ACTIONS(2268), + [anon_sym_offsetof] = ACTIONS(2268), + [anon_sym__Generic] = ACTIONS(2268), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2270), + [anon_sym_u_DQUOTE] = ACTIONS(2270), + [anon_sym_U_DQUOTE] = ACTIONS(2270), + [anon_sym_u8_DQUOTE] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2270), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [anon_sym_NULL] = ACTIONS(2268), + [anon_sym_nullptr] = ACTIONS(2268), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2268), + [anon_sym_decltype] = ACTIONS(2268), + [anon_sym_explicit] = ACTIONS(2268), + [anon_sym_typename] = ACTIONS(2268), + [anon_sym_template] = ACTIONS(2268), + [anon_sym_operator] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_using] = ACTIONS(2268), + [anon_sym_static_assert] = ACTIONS(2268), + [anon_sym_concept] = ACTIONS(2268), + [anon_sym_co_return] = ACTIONS(2268), + [anon_sym_co_yield] = ACTIONS(2268), + [anon_sym_R_DQUOTE] = ACTIONS(2270), + [anon_sym_LR_DQUOTE] = ACTIONS(2270), + [anon_sym_uR_DQUOTE] = ACTIONS(2270), + [anon_sym_UR_DQUOTE] = ACTIONS(2270), + [anon_sym_u8R_DQUOTE] = ACTIONS(2270), + [anon_sym_co_await] = ACTIONS(2268), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_requires] = ACTIONS(2268), + [sym_this] = ACTIONS(2268), + [sym_alone_macro] = ACTIONS(2270), + [aux_sym_alone_macro_call_token1] = ACTIONS(2268), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2268), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_FORWARD] = ACTIONS(2268), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2268), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2268), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2268), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2268), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_PS_GET] = ACTIONS(2268), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2268), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2268), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2268), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2268), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2268), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2268), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2268), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2268), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2268), + [anon_sym_MOZ_COLD] = ACTIONS(2268), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2268), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2268), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2268), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2268), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2268), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2268), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2268), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2268), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2268), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2268), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2268), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2268), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2268), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2268), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2268), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2268), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2268), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2268), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_NONNULL] = ACTIONS(2268), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2268), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2268), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2268), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2268), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2268), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_NORETURN] = ACTIONS(2268), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2268), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2268), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2268), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2268), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2268), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2268), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2268), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2268), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2268), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2268), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2268), + [anon_sym_MOZ_RAII] = ACTIONS(2268), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2268), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2268), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2268), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2268), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2268), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2268), + }, + [STATE(422)] = { + [ts_builtin_sym_end] = ACTIONS(2274), + [sym_identifier] = ACTIONS(2272), + [aux_sym_preproc_include_token1] = ACTIONS(2272), + [aux_sym_preproc_def_token1] = ACTIONS(2272), + [aux_sym_preproc_if_token1] = ACTIONS(2272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2272), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2272), + [sym_preproc_directive] = ACTIONS(2272), + [anon_sym_LPAREN2] = ACTIONS(2274), + [anon_sym_BANG] = ACTIONS(2274), + [anon_sym_TILDE] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2272), + [anon_sym_PLUS] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2274), + [anon_sym_AMP_AMP] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym___extension__] = ACTIONS(2272), + [anon_sym_typedef] = ACTIONS(2272), + [anon_sym_virtual] = ACTIONS(2272), + [anon_sym_extern] = ACTIONS(2272), + [anon_sym___attribute__] = ACTIONS(2272), + [anon_sym___attribute] = ACTIONS(2272), + [anon_sym_COLON_COLON] = ACTIONS(2274), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2274), + [anon_sym___declspec] = ACTIONS(2272), + [anon_sym___based] = ACTIONS(2272), + [anon_sym___cdecl] = ACTIONS(2272), + [anon_sym___clrcall] = ACTIONS(2272), + [anon_sym___stdcall] = ACTIONS(2272), + [anon_sym___fastcall] = ACTIONS(2272), + [anon_sym___thiscall] = ACTIONS(2272), + [anon_sym___vectorcall] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2274), + [anon_sym_signed] = ACTIONS(2272), + [anon_sym_unsigned] = ACTIONS(2272), + [anon_sym_long] = ACTIONS(2272), + [anon_sym_short] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_static] = ACTIONS(2272), + [anon_sym_register] = ACTIONS(2272), + [anon_sym_inline] = ACTIONS(2272), + [anon_sym___inline] = ACTIONS(2272), + [anon_sym___inline__] = ACTIONS(2272), + [anon_sym___forceinline] = ACTIONS(2272), + [anon_sym_thread_local] = ACTIONS(2272), + [anon_sym___thread] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [anon_sym_constexpr] = ACTIONS(2272), + [anon_sym_volatile] = ACTIONS(2272), + [anon_sym_restrict] = ACTIONS(2272), + [anon_sym___restrict__] = ACTIONS(2272), + [anon_sym__Atomic] = ACTIONS(2272), + [anon_sym__Noreturn] = ACTIONS(2272), + [anon_sym_noreturn] = ACTIONS(2272), + [anon_sym__Nonnull] = ACTIONS(2272), + [anon_sym_mutable] = ACTIONS(2272), + [anon_sym_constinit] = ACTIONS(2272), + [anon_sym_consteval] = ACTIONS(2272), + [anon_sym_alignas] = ACTIONS(2272), + [anon_sym__Alignas] = ACTIONS(2272), + [sym_primitive_type] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), + [anon_sym_class] = ACTIONS(2272), + [anon_sym_struct] = ACTIONS(2272), + [anon_sym_union] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_switch] = ACTIONS(2272), + [anon_sym_case] = ACTIONS(2272), + [anon_sym_default] = ACTIONS(2272), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_goto] = ACTIONS(2272), + [anon_sym_not] = ACTIONS(2272), + [anon_sym_compl] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2274), + [anon_sym_PLUS_PLUS] = ACTIONS(2274), + [anon_sym_sizeof] = ACTIONS(2272), + [anon_sym___alignof__] = ACTIONS(2272), + [anon_sym___alignof] = ACTIONS(2272), + [anon_sym__alignof] = ACTIONS(2272), + [anon_sym_alignof] = ACTIONS(2272), + [anon_sym__Alignof] = ACTIONS(2272), + [anon_sym_offsetof] = ACTIONS(2272), + [anon_sym__Generic] = ACTIONS(2272), + [anon_sym_asm] = ACTIONS(2272), + [anon_sym___asm__] = ACTIONS(2272), + [anon_sym___asm] = ACTIONS(2272), + [sym_number_literal] = ACTIONS(2274), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2272), + [sym_false] = ACTIONS(2272), + [anon_sym_NULL] = ACTIONS(2272), + [anon_sym_nullptr] = ACTIONS(2272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2272), + [anon_sym_decltype] = ACTIONS(2272), + [anon_sym_explicit] = ACTIONS(2272), + [anon_sym_typename] = ACTIONS(2272), + [anon_sym_template] = ACTIONS(2272), + [anon_sym_operator] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2272), + [anon_sym_delete] = ACTIONS(2272), + [anon_sym_throw] = ACTIONS(2272), + [anon_sym_namespace] = ACTIONS(2272), + [anon_sym_using] = ACTIONS(2272), + [anon_sym_static_assert] = ACTIONS(2272), + [anon_sym_concept] = ACTIONS(2272), + [anon_sym_co_return] = ACTIONS(2272), + [anon_sym_co_yield] = ACTIONS(2272), + [anon_sym_R_DQUOTE] = ACTIONS(2274), + [anon_sym_LR_DQUOTE] = ACTIONS(2274), + [anon_sym_uR_DQUOTE] = ACTIONS(2274), + [anon_sym_UR_DQUOTE] = ACTIONS(2274), + [anon_sym_u8R_DQUOTE] = ACTIONS(2274), + [anon_sym_co_await] = ACTIONS(2272), + [anon_sym_new] = ACTIONS(2272), + [anon_sym_requires] = ACTIONS(2272), + [sym_this] = ACTIONS(2272), + [sym_alone_macro] = ACTIONS(2274), + [aux_sym_alone_macro_call_token1] = ACTIONS(2272), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2272), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_FORWARD] = ACTIONS(2272), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2272), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2272), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2272), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2272), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_PS_GET] = ACTIONS(2272), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2272), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2272), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2272), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2272), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2272), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2272), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2272), + [anon_sym_MOZ_COLD] = ACTIONS(2272), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2272), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2272), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2272), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2272), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2272), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2272), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2272), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2272), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2272), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2272), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2272), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2272), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2272), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_NONNULL] = ACTIONS(2272), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2272), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2272), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2272), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2272), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2272), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2272), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2272), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2272), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2272), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2272), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2272), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2272), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2272), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2272), + [anon_sym_MOZ_RAII] = ACTIONS(2272), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2272), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2272), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2272), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2272), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2272), + }, + [STATE(423)] = { + [sym_identifier] = ACTIONS(2444), + [aux_sym_preproc_include_token1] = ACTIONS(2444), + [aux_sym_preproc_def_token1] = ACTIONS(2444), + [aux_sym_preproc_if_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [sym_preproc_directive] = ACTIONS(2444), + [anon_sym_LPAREN2] = ACTIONS(2446), + [anon_sym_BANG] = ACTIONS(2446), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2444), + [anon_sym_PLUS] = ACTIONS(2444), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_AMP_AMP] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_SEMI] = ACTIONS(2446), + [anon_sym___extension__] = ACTIONS(2444), + [anon_sym_typedef] = ACTIONS(2444), + [anon_sym_virtual] = ACTIONS(2444), + [anon_sym_extern] = ACTIONS(2444), + [anon_sym___attribute__] = ACTIONS(2444), + [anon_sym___attribute] = ACTIONS(2444), + [anon_sym_COLON_COLON] = ACTIONS(2446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2446), + [anon_sym___declspec] = ACTIONS(2444), + [anon_sym___based] = ACTIONS(2444), + [anon_sym___cdecl] = ACTIONS(2444), + [anon_sym___clrcall] = ACTIONS(2444), + [anon_sym___stdcall] = ACTIONS(2444), + [anon_sym___fastcall] = ACTIONS(2444), + [anon_sym___thiscall] = ACTIONS(2444), + [anon_sym___vectorcall] = ACTIONS(2444), + [anon_sym_LBRACE] = ACTIONS(2446), + [anon_sym_RBRACE] = ACTIONS(2446), + [anon_sym_signed] = ACTIONS(2444), + [anon_sym_unsigned] = ACTIONS(2444), + [anon_sym_long] = ACTIONS(2444), + [anon_sym_short] = ACTIONS(2444), + [anon_sym_LBRACK] = ACTIONS(2444), + [anon_sym_static] = ACTIONS(2444), + [anon_sym_register] = ACTIONS(2444), + [anon_sym_inline] = ACTIONS(2444), + [anon_sym___inline] = ACTIONS(2444), + [anon_sym___inline__] = ACTIONS(2444), + [anon_sym___forceinline] = ACTIONS(2444), + [anon_sym_thread_local] = ACTIONS(2444), + [anon_sym___thread] = ACTIONS(2444), + [anon_sym_const] = ACTIONS(2444), + [anon_sym_constexpr] = ACTIONS(2444), + [anon_sym_volatile] = ACTIONS(2444), + [anon_sym_restrict] = ACTIONS(2444), + [anon_sym___restrict__] = ACTIONS(2444), + [anon_sym__Atomic] = ACTIONS(2444), + [anon_sym__Noreturn] = ACTIONS(2444), + [anon_sym_noreturn] = ACTIONS(2444), + [anon_sym__Nonnull] = ACTIONS(2444), + [anon_sym_mutable] = ACTIONS(2444), + [anon_sym_constinit] = ACTIONS(2444), + [anon_sym_consteval] = ACTIONS(2444), + [anon_sym_alignas] = ACTIONS(2444), + [anon_sym__Alignas] = ACTIONS(2444), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_enum] = ACTIONS(2444), + [anon_sym_class] = ACTIONS(2444), + [anon_sym_struct] = ACTIONS(2444), + [anon_sym_union] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2444), + [anon_sym_switch] = ACTIONS(2444), + [anon_sym_case] = ACTIONS(2444), + [anon_sym_default] = ACTIONS(2444), + [anon_sym_while] = ACTIONS(2444), + [anon_sym_do] = ACTIONS(2444), + [anon_sym_for] = ACTIONS(2444), + [anon_sym_return] = ACTIONS(2444), + [anon_sym_break] = ACTIONS(2444), + [anon_sym_continue] = ACTIONS(2444), + [anon_sym_goto] = ACTIONS(2444), + [anon_sym___try] = ACTIONS(2444), + [anon_sym___leave] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(2444), + [anon_sym_compl] = ACTIONS(2444), + [anon_sym_DASH_DASH] = ACTIONS(2446), + [anon_sym_PLUS_PLUS] = ACTIONS(2446), + [anon_sym_sizeof] = ACTIONS(2444), + [anon_sym___alignof__] = ACTIONS(2444), + [anon_sym___alignof] = ACTIONS(2444), + [anon_sym__alignof] = ACTIONS(2444), + [anon_sym_alignof] = ACTIONS(2444), + [anon_sym__Alignof] = ACTIONS(2444), + [anon_sym_offsetof] = ACTIONS(2444), + [anon_sym__Generic] = ACTIONS(2444), + [anon_sym_asm] = ACTIONS(2444), + [anon_sym___asm__] = ACTIONS(2444), + [anon_sym___asm] = ACTIONS(2444), + [sym_number_literal] = ACTIONS(2446), + [anon_sym_L_SQUOTE] = ACTIONS(2446), + [anon_sym_u_SQUOTE] = ACTIONS(2446), + [anon_sym_U_SQUOTE] = ACTIONS(2446), + [anon_sym_u8_SQUOTE] = ACTIONS(2446), + [anon_sym_SQUOTE] = ACTIONS(2446), + [anon_sym_L_DQUOTE] = ACTIONS(2446), + [anon_sym_u_DQUOTE] = ACTIONS(2446), + [anon_sym_U_DQUOTE] = ACTIONS(2446), + [anon_sym_u8_DQUOTE] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [sym_true] = ACTIONS(2444), + [sym_false] = ACTIONS(2444), + [anon_sym_NULL] = ACTIONS(2444), + [anon_sym_nullptr] = ACTIONS(2444), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2444), + [anon_sym_decltype] = ACTIONS(2444), + [anon_sym_explicit] = ACTIONS(2444), + [anon_sym_typename] = ACTIONS(2444), + [anon_sym_template] = ACTIONS(2444), + [anon_sym_operator] = ACTIONS(2444), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_delete] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2444), + [anon_sym_namespace] = ACTIONS(2444), + [anon_sym_using] = ACTIONS(2444), + [anon_sym_static_assert] = ACTIONS(2444), + [anon_sym_concept] = ACTIONS(2444), + [anon_sym_co_return] = ACTIONS(2444), + [anon_sym_co_yield] = ACTIONS(2444), + [anon_sym_R_DQUOTE] = ACTIONS(2446), + [anon_sym_LR_DQUOTE] = ACTIONS(2446), + [anon_sym_uR_DQUOTE] = ACTIONS(2446), + [anon_sym_UR_DQUOTE] = ACTIONS(2446), + [anon_sym_u8R_DQUOTE] = ACTIONS(2446), + [anon_sym_co_await] = ACTIONS(2444), + [anon_sym_new] = ACTIONS(2444), + [anon_sym_requires] = ACTIONS(2444), + [sym_this] = ACTIONS(2444), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2444), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_FORWARD] = ACTIONS(2444), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2444), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2444), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2444), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2444), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_PS_GET] = ACTIONS(2444), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2444), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2444), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2444), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2444), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2444), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2444), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2444), + [anon_sym_MOZ_COLD] = ACTIONS(2444), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2444), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2444), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2444), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2444), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2444), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2444), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2444), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2444), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2444), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2444), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2444), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2444), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2444), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_NONNULL] = ACTIONS(2444), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2444), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2444), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2444), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2444), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2444), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2444), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2444), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2444), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2444), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2444), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2444), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2444), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2444), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2444), + [anon_sym_MOZ_RAII] = ACTIONS(2444), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2444), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2444), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2444), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2444), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2444), + }, + [STATE(424)] = { + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_include_token1] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token2] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_AMP_AMP] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2454), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_virtual] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___based] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_mutable] = ACTIONS(2454), + [anon_sym_constinit] = ACTIONS(2454), + [anon_sym_consteval] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_class] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_switch] = ACTIONS(2454), + [anon_sym_case] = ACTIONS(2454), + [anon_sym_default] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_goto] = ACTIONS(2454), + [anon_sym___try] = ACTIONS(2454), + [anon_sym___leave] = ACTIONS(2454), + [anon_sym_not] = ACTIONS(2454), + [anon_sym_compl] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_sizeof] = ACTIONS(2454), + [anon_sym___alignof__] = ACTIONS(2454), + [anon_sym___alignof] = ACTIONS(2454), + [anon_sym__alignof] = ACTIONS(2454), + [anon_sym_alignof] = ACTIONS(2454), + [anon_sym__Alignof] = ACTIONS(2454), + [anon_sym_offsetof] = ACTIONS(2454), + [anon_sym__Generic] = ACTIONS(2454), + [anon_sym_asm] = ACTIONS(2454), + [anon_sym___asm__] = ACTIONS(2454), + [anon_sym___asm] = ACTIONS(2454), + [sym_number_literal] = ACTIONS(2456), + [anon_sym_L_SQUOTE] = ACTIONS(2456), + [anon_sym_u_SQUOTE] = ACTIONS(2456), + [anon_sym_U_SQUOTE] = ACTIONS(2456), + [anon_sym_u8_SQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_L_DQUOTE] = ACTIONS(2456), + [anon_sym_u_DQUOTE] = ACTIONS(2456), + [anon_sym_U_DQUOTE] = ACTIONS(2456), + [anon_sym_u8_DQUOTE] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [anon_sym_NULL] = ACTIONS(2454), + [anon_sym_nullptr] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2454), + [anon_sym_decltype] = ACTIONS(2454), + [anon_sym_explicit] = ACTIONS(2454), + [anon_sym_typename] = ACTIONS(2454), + [anon_sym_template] = ACTIONS(2454), + [anon_sym_operator] = ACTIONS(2454), + [anon_sym_try] = ACTIONS(2454), + [anon_sym_delete] = ACTIONS(2454), + [anon_sym_throw] = ACTIONS(2454), + [anon_sym_namespace] = ACTIONS(2454), + [anon_sym_using] = ACTIONS(2454), + [anon_sym_static_assert] = ACTIONS(2454), + [anon_sym_concept] = ACTIONS(2454), + [anon_sym_co_return] = ACTIONS(2454), + [anon_sym_co_yield] = ACTIONS(2454), + [anon_sym_R_DQUOTE] = ACTIONS(2456), + [anon_sym_LR_DQUOTE] = ACTIONS(2456), + [anon_sym_uR_DQUOTE] = ACTIONS(2456), + [anon_sym_UR_DQUOTE] = ACTIONS(2456), + [anon_sym_u8R_DQUOTE] = ACTIONS(2456), + [anon_sym_co_await] = ACTIONS(2454), + [anon_sym_new] = ACTIONS(2454), + [anon_sym_requires] = ACTIONS(2454), + [sym_this] = ACTIONS(2454), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2454), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_FORWARD] = ACTIONS(2454), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2454), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2454), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2454), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_PS_GET] = ACTIONS(2454), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2454), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2454), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2454), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2454), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2454), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2454), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2454), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2454), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2454), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2454), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2454), + [anon_sym_MOZ_COLD] = ACTIONS(2454), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2454), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2454), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2454), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2454), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2454), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2454), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2454), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2454), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2454), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2454), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2454), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2454), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2454), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2454), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2454), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2454), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2454), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2454), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2454), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2454), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_NONNULL] = ACTIONS(2454), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2454), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2454), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2454), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2454), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2454), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_NORETURN] = ACTIONS(2454), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2454), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2454), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2454), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2454), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2454), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2454), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2454), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2454), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2454), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2454), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2454), + [anon_sym_MOZ_RAII] = ACTIONS(2454), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2454), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2454), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2454), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2454), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2454), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2454), + }, + [STATE(425)] = { + [ts_builtin_sym_end] = ACTIONS(2285), + [sym_identifier] = ACTIONS(2283), + [aux_sym_preproc_include_token1] = ACTIONS(2283), + [aux_sym_preproc_def_token1] = ACTIONS(2283), + [aux_sym_preproc_if_token1] = ACTIONS(2283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2283), + [sym_preproc_directive] = ACTIONS(2283), + [anon_sym_LPAREN2] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(2283), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_AMP_AMP] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2283), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym___extension__] = ACTIONS(2283), + [anon_sym_typedef] = ACTIONS(2283), + [anon_sym_virtual] = ACTIONS(2283), + [anon_sym_extern] = ACTIONS(2283), + [anon_sym___attribute__] = ACTIONS(2283), + [anon_sym___attribute] = ACTIONS(2283), + [anon_sym_COLON_COLON] = ACTIONS(2285), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2285), + [anon_sym___declspec] = ACTIONS(2283), + [anon_sym___based] = ACTIONS(2283), + [anon_sym___cdecl] = ACTIONS(2283), + [anon_sym___clrcall] = ACTIONS(2283), + [anon_sym___stdcall] = ACTIONS(2283), + [anon_sym___fastcall] = ACTIONS(2283), + [anon_sym___thiscall] = ACTIONS(2283), + [anon_sym___vectorcall] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_signed] = ACTIONS(2283), + [anon_sym_unsigned] = ACTIONS(2283), + [anon_sym_long] = ACTIONS(2283), + [anon_sym_short] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_static] = ACTIONS(2283), + [anon_sym_register] = ACTIONS(2283), + [anon_sym_inline] = ACTIONS(2283), + [anon_sym___inline] = ACTIONS(2283), + [anon_sym___inline__] = ACTIONS(2283), + [anon_sym___forceinline] = ACTIONS(2283), + [anon_sym_thread_local] = ACTIONS(2283), + [anon_sym___thread] = ACTIONS(2283), + [anon_sym_const] = ACTIONS(2283), + [anon_sym_constexpr] = ACTIONS(2283), + [anon_sym_volatile] = ACTIONS(2283), + [anon_sym_restrict] = ACTIONS(2283), + [anon_sym___restrict__] = ACTIONS(2283), + [anon_sym__Atomic] = ACTIONS(2283), + [anon_sym__Noreturn] = ACTIONS(2283), + [anon_sym_noreturn] = ACTIONS(2283), + [anon_sym__Nonnull] = ACTIONS(2283), + [anon_sym_mutable] = ACTIONS(2283), + [anon_sym_constinit] = ACTIONS(2283), + [anon_sym_consteval] = ACTIONS(2283), + [anon_sym_alignas] = ACTIONS(2283), + [anon_sym__Alignas] = ACTIONS(2283), + [sym_primitive_type] = ACTIONS(2283), + [anon_sym_enum] = ACTIONS(2283), + [anon_sym_class] = ACTIONS(2283), + [anon_sym_struct] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_if] = ACTIONS(2283), + [anon_sym_switch] = ACTIONS(2283), + [anon_sym_case] = ACTIONS(2283), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_while] = ACTIONS(2283), + [anon_sym_do] = ACTIONS(2283), + [anon_sym_for] = ACTIONS(2283), + [anon_sym_return] = ACTIONS(2283), + [anon_sym_break] = ACTIONS(2283), + [anon_sym_continue] = ACTIONS(2283), + [anon_sym_goto] = ACTIONS(2283), + [anon_sym_not] = ACTIONS(2283), + [anon_sym_compl] = ACTIONS(2283), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_sizeof] = ACTIONS(2283), + [anon_sym___alignof__] = ACTIONS(2283), + [anon_sym___alignof] = ACTIONS(2283), + [anon_sym__alignof] = ACTIONS(2283), + [anon_sym_alignof] = ACTIONS(2283), + [anon_sym__Alignof] = ACTIONS(2283), + [anon_sym_offsetof] = ACTIONS(2283), + [anon_sym__Generic] = ACTIONS(2283), + [anon_sym_asm] = ACTIONS(2283), + [anon_sym___asm__] = ACTIONS(2283), + [anon_sym___asm] = ACTIONS(2283), + [sym_number_literal] = ACTIONS(2285), + [anon_sym_L_SQUOTE] = ACTIONS(2285), + [anon_sym_u_SQUOTE] = ACTIONS(2285), + [anon_sym_U_SQUOTE] = ACTIONS(2285), + [anon_sym_u8_SQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_L_DQUOTE] = ACTIONS(2285), + [anon_sym_u_DQUOTE] = ACTIONS(2285), + [anon_sym_U_DQUOTE] = ACTIONS(2285), + [anon_sym_u8_DQUOTE] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [sym_true] = ACTIONS(2283), + [sym_false] = ACTIONS(2283), + [anon_sym_NULL] = ACTIONS(2283), + [anon_sym_nullptr] = ACTIONS(2283), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2283), + [anon_sym_decltype] = ACTIONS(2283), + [anon_sym_explicit] = ACTIONS(2283), + [anon_sym_typename] = ACTIONS(2283), + [anon_sym_template] = ACTIONS(2283), + [anon_sym_operator] = ACTIONS(2283), + [anon_sym_try] = ACTIONS(2283), + [anon_sym_delete] = ACTIONS(2283), + [anon_sym_throw] = ACTIONS(2283), + [anon_sym_namespace] = ACTIONS(2283), + [anon_sym_using] = ACTIONS(2283), + [anon_sym_static_assert] = ACTIONS(2283), + [anon_sym_concept] = ACTIONS(2283), + [anon_sym_co_return] = ACTIONS(2283), + [anon_sym_co_yield] = ACTIONS(2283), + [anon_sym_R_DQUOTE] = ACTIONS(2285), + [anon_sym_LR_DQUOTE] = ACTIONS(2285), + [anon_sym_uR_DQUOTE] = ACTIONS(2285), + [anon_sym_UR_DQUOTE] = ACTIONS(2285), + [anon_sym_u8R_DQUOTE] = ACTIONS(2285), + [anon_sym_co_await] = ACTIONS(2283), + [anon_sym_new] = ACTIONS(2283), + [anon_sym_requires] = ACTIONS(2283), + [sym_this] = ACTIONS(2283), + [sym_alone_macro] = ACTIONS(2285), + [aux_sym_alone_macro_call_token1] = ACTIONS(2283), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2283), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_FORWARD] = ACTIONS(2283), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2283), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2283), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2283), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2283), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_PS_GET] = ACTIONS(2283), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2283), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2283), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2283), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2283), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2283), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2283), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2283), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2283), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2283), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2283), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2283), + [anon_sym_MOZ_COLD] = ACTIONS(2283), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2283), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2283), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2283), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2283), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2283), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2283), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2283), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2283), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2283), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2283), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2283), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2283), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2283), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2283), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2283), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2283), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2283), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2283), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2283), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2283), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_NONNULL] = ACTIONS(2283), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2283), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2283), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2283), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2283), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2283), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_NORETURN] = ACTIONS(2283), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2283), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2283), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2283), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2283), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2283), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2283), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2283), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2283), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2283), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2283), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2283), + [anon_sym_MOZ_RAII] = ACTIONS(2283), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2283), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2283), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2283), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2283), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2283), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2283), + }, + [STATE(426)] = { + [sym_identifier] = ACTIONS(2190), + [aux_sym_preproc_include_token1] = ACTIONS(2190), + [aux_sym_preproc_def_token1] = ACTIONS(2190), + [aux_sym_preproc_if_token1] = ACTIONS(2190), + [aux_sym_preproc_if_token2] = ACTIONS(2190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2190), + [sym_preproc_directive] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym___extension__] = ACTIONS(2190), + [anon_sym_typedef] = ACTIONS(2190), + [anon_sym_virtual] = ACTIONS(2190), + [anon_sym_extern] = ACTIONS(2190), + [anon_sym___attribute__] = ACTIONS(2190), + [anon_sym___attribute] = ACTIONS(2190), + [anon_sym_COLON_COLON] = ACTIONS(2192), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), + [anon_sym___declspec] = ACTIONS(2190), + [anon_sym___based] = ACTIONS(2190), + [anon_sym___cdecl] = ACTIONS(2190), + [anon_sym___clrcall] = ACTIONS(2190), + [anon_sym___stdcall] = ACTIONS(2190), + [anon_sym___fastcall] = ACTIONS(2190), + [anon_sym___thiscall] = ACTIONS(2190), + [anon_sym___vectorcall] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_signed] = ACTIONS(2190), + [anon_sym_unsigned] = ACTIONS(2190), + [anon_sym_long] = ACTIONS(2190), + [anon_sym_short] = ACTIONS(2190), + [anon_sym_LBRACK] = ACTIONS(2190), + [anon_sym_static] = ACTIONS(2190), + [anon_sym_register] = ACTIONS(2190), + [anon_sym_inline] = ACTIONS(2190), + [anon_sym___inline] = ACTIONS(2190), + [anon_sym___inline__] = ACTIONS(2190), + [anon_sym___forceinline] = ACTIONS(2190), + [anon_sym_thread_local] = ACTIONS(2190), + [anon_sym___thread] = ACTIONS(2190), + [anon_sym_const] = ACTIONS(2190), + [anon_sym_constexpr] = ACTIONS(2190), + [anon_sym_volatile] = ACTIONS(2190), + [anon_sym_restrict] = ACTIONS(2190), + [anon_sym___restrict__] = ACTIONS(2190), + [anon_sym__Atomic] = ACTIONS(2190), + [anon_sym__Noreturn] = ACTIONS(2190), + [anon_sym_noreturn] = ACTIONS(2190), + [anon_sym__Nonnull] = ACTIONS(2190), + [anon_sym_mutable] = ACTIONS(2190), + [anon_sym_constinit] = ACTIONS(2190), + [anon_sym_consteval] = ACTIONS(2190), + [anon_sym_alignas] = ACTIONS(2190), + [anon_sym__Alignas] = ACTIONS(2190), + [sym_primitive_type] = ACTIONS(2190), + [anon_sym_enum] = ACTIONS(2190), + [anon_sym_class] = ACTIONS(2190), + [anon_sym_struct] = ACTIONS(2190), + [anon_sym_union] = ACTIONS(2190), + [anon_sym_if] = ACTIONS(2190), + [anon_sym_switch] = ACTIONS(2190), + [anon_sym_case] = ACTIONS(2190), + [anon_sym_default] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2190), + [anon_sym_do] = ACTIONS(2190), + [anon_sym_for] = ACTIONS(2190), + [anon_sym_return] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_goto] = ACTIONS(2190), + [anon_sym___try] = ACTIONS(2190), + [anon_sym___leave] = ACTIONS(2190), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2192), + [anon_sym_PLUS_PLUS] = ACTIONS(2192), + [anon_sym_sizeof] = ACTIONS(2190), + [anon_sym___alignof__] = ACTIONS(2190), + [anon_sym___alignof] = ACTIONS(2190), + [anon_sym__alignof] = ACTIONS(2190), + [anon_sym_alignof] = ACTIONS(2190), + [anon_sym__Alignof] = ACTIONS(2190), + [anon_sym_offsetof] = ACTIONS(2190), + [anon_sym__Generic] = ACTIONS(2190), + [anon_sym_asm] = ACTIONS(2190), + [anon_sym___asm__] = ACTIONS(2190), + [anon_sym___asm] = ACTIONS(2190), + [sym_number_literal] = ACTIONS(2192), + [anon_sym_L_SQUOTE] = ACTIONS(2192), + [anon_sym_u_SQUOTE] = ACTIONS(2192), + [anon_sym_U_SQUOTE] = ACTIONS(2192), + [anon_sym_u8_SQUOTE] = ACTIONS(2192), + [anon_sym_SQUOTE] = ACTIONS(2192), + [anon_sym_L_DQUOTE] = ACTIONS(2192), + [anon_sym_u_DQUOTE] = ACTIONS(2192), + [anon_sym_U_DQUOTE] = ACTIONS(2192), + [anon_sym_u8_DQUOTE] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [sym_true] = ACTIONS(2190), + [sym_false] = ACTIONS(2190), + [anon_sym_NULL] = ACTIONS(2190), + [anon_sym_nullptr] = ACTIONS(2190), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2190), + [anon_sym_decltype] = ACTIONS(2190), + [anon_sym_explicit] = ACTIONS(2190), + [anon_sym_typename] = ACTIONS(2190), + [anon_sym_template] = ACTIONS(2190), + [anon_sym_operator] = ACTIONS(2190), + [anon_sym_try] = ACTIONS(2190), + [anon_sym_delete] = ACTIONS(2190), + [anon_sym_throw] = ACTIONS(2190), + [anon_sym_namespace] = ACTIONS(2190), + [anon_sym_using] = ACTIONS(2190), + [anon_sym_static_assert] = ACTIONS(2190), + [anon_sym_concept] = ACTIONS(2190), + [anon_sym_co_return] = ACTIONS(2190), + [anon_sym_co_yield] = ACTIONS(2190), + [anon_sym_R_DQUOTE] = ACTIONS(2192), + [anon_sym_LR_DQUOTE] = ACTIONS(2192), + [anon_sym_uR_DQUOTE] = ACTIONS(2192), + [anon_sym_UR_DQUOTE] = ACTIONS(2192), + [anon_sym_u8R_DQUOTE] = ACTIONS(2192), + [anon_sym_co_await] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(2190), + [anon_sym_requires] = ACTIONS(2190), + [sym_this] = ACTIONS(2190), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2190), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_FORWARD] = ACTIONS(2190), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2190), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2190), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2190), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2190), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_PS_GET] = ACTIONS(2190), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2190), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2190), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2190), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2190), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2190), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2190), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2190), + [anon_sym_MOZ_COLD] = ACTIONS(2190), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2190), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2190), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2190), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2190), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2190), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2190), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2190), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2190), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2190), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2190), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2190), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2190), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2190), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_NONNULL] = ACTIONS(2190), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2190), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2190), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2190), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2190), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2190), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2190), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2190), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2190), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2190), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2190), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2190), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2190), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2190), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2190), + [anon_sym_MOZ_RAII] = ACTIONS(2190), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2190), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2190), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2190), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2190), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2190), + }, + [STATE(427)] = { + [ts_builtin_sym_end] = ACTIONS(2478), + [sym_identifier] = ACTIONS(2480), + [aux_sym_preproc_include_token1] = ACTIONS(2480), + [aux_sym_preproc_def_token1] = ACTIONS(2480), + [aux_sym_preproc_if_token1] = ACTIONS(2480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2480), + [sym_preproc_directive] = ACTIONS(2480), + [anon_sym_LPAREN2] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_typedef] = ACTIONS(2480), + [anon_sym_virtual] = ACTIONS(2480), + [anon_sym_extern] = ACTIONS(2480), + [anon_sym___attribute__] = ACTIONS(2480), + [anon_sym___attribute] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), + [anon_sym___declspec] = ACTIONS(2480), + [anon_sym___based] = ACTIONS(2480), + [anon_sym___cdecl] = ACTIONS(2480), + [anon_sym___clrcall] = ACTIONS(2480), + [anon_sym___stdcall] = ACTIONS(2480), + [anon_sym___fastcall] = ACTIONS(2480), + [anon_sym___thiscall] = ACTIONS(2480), + [anon_sym___vectorcall] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_signed] = ACTIONS(2480), + [anon_sym_unsigned] = ACTIONS(2480), + [anon_sym_long] = ACTIONS(2480), + [anon_sym_short] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(2480), + [anon_sym_static] = ACTIONS(2480), + [anon_sym_register] = ACTIONS(2480), + [anon_sym_inline] = ACTIONS(2480), + [anon_sym___inline] = ACTIONS(2480), + [anon_sym___inline__] = ACTIONS(2480), + [anon_sym___forceinline] = ACTIONS(2480), + [anon_sym_thread_local] = ACTIONS(2480), + [anon_sym___thread] = ACTIONS(2480), + [anon_sym_const] = ACTIONS(2480), + [anon_sym_constexpr] = ACTIONS(2480), + [anon_sym_volatile] = ACTIONS(2480), + [anon_sym_restrict] = ACTIONS(2480), + [anon_sym___restrict__] = ACTIONS(2480), + [anon_sym__Atomic] = ACTIONS(2480), + [anon_sym__Noreturn] = ACTIONS(2480), + [anon_sym_noreturn] = ACTIONS(2480), + [anon_sym__Nonnull] = ACTIONS(2480), + [anon_sym_mutable] = ACTIONS(2480), + [anon_sym_constinit] = ACTIONS(2480), + [anon_sym_consteval] = ACTIONS(2480), + [anon_sym_alignas] = ACTIONS(2480), + [anon_sym__Alignas] = ACTIONS(2480), + [sym_primitive_type] = ACTIONS(2480), + [anon_sym_enum] = ACTIONS(2480), + [anon_sym_class] = ACTIONS(2480), + [anon_sym_struct] = ACTIONS(2480), + [anon_sym_union] = ACTIONS(2480), + [anon_sym_if] = ACTIONS(2480), + [anon_sym_switch] = ACTIONS(2480), + [anon_sym_case] = ACTIONS(2480), + [anon_sym_default] = ACTIONS(2480), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(2480), + [anon_sym_for] = ACTIONS(2480), + [anon_sym_return] = ACTIONS(2480), + [anon_sym_break] = ACTIONS(2480), + [anon_sym_continue] = ACTIONS(2480), + [anon_sym_goto] = ACTIONS(2480), + [anon_sym_not] = ACTIONS(2480), + [anon_sym_compl] = ACTIONS(2480), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_sizeof] = ACTIONS(2480), + [anon_sym___alignof__] = ACTIONS(2480), + [anon_sym___alignof] = ACTIONS(2480), + [anon_sym__alignof] = ACTIONS(2480), + [anon_sym_alignof] = ACTIONS(2480), + [anon_sym__Alignof] = ACTIONS(2480), + [anon_sym_offsetof] = ACTIONS(2480), + [anon_sym__Generic] = ACTIONS(2480), + [anon_sym_asm] = ACTIONS(2480), + [anon_sym___asm__] = ACTIONS(2480), + [anon_sym___asm] = ACTIONS(2480), + [sym_number_literal] = ACTIONS(2478), + [anon_sym_L_SQUOTE] = ACTIONS(2478), + [anon_sym_u_SQUOTE] = ACTIONS(2478), + [anon_sym_U_SQUOTE] = ACTIONS(2478), + [anon_sym_u8_SQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_L_DQUOTE] = ACTIONS(2478), + [anon_sym_u_DQUOTE] = ACTIONS(2478), + [anon_sym_U_DQUOTE] = ACTIONS(2478), + [anon_sym_u8_DQUOTE] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2478), + [sym_true] = ACTIONS(2480), + [sym_false] = ACTIONS(2480), + [anon_sym_NULL] = ACTIONS(2480), + [anon_sym_nullptr] = ACTIONS(2480), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2480), + [anon_sym_decltype] = ACTIONS(2480), + [anon_sym_explicit] = ACTIONS(2480), + [anon_sym_typename] = ACTIONS(2480), + [anon_sym_template] = ACTIONS(2480), + [anon_sym_operator] = ACTIONS(2480), + [anon_sym_try] = ACTIONS(2480), + [anon_sym_delete] = ACTIONS(2480), + [anon_sym_throw] = ACTIONS(2480), + [anon_sym_namespace] = ACTIONS(2480), + [anon_sym_using] = ACTIONS(2480), + [anon_sym_static_assert] = ACTIONS(2480), + [anon_sym_concept] = ACTIONS(2480), + [anon_sym_co_return] = ACTIONS(2480), + [anon_sym_co_yield] = ACTIONS(2480), + [anon_sym_R_DQUOTE] = ACTIONS(2478), + [anon_sym_LR_DQUOTE] = ACTIONS(2478), + [anon_sym_uR_DQUOTE] = ACTIONS(2478), + [anon_sym_UR_DQUOTE] = ACTIONS(2478), + [anon_sym_u8R_DQUOTE] = ACTIONS(2478), + [anon_sym_co_await] = ACTIONS(2480), + [anon_sym_new] = ACTIONS(2480), + [anon_sym_requires] = ACTIONS(2480), + [sym_this] = ACTIONS(2480), + [sym_alone_macro] = ACTIONS(2478), + [aux_sym_alone_macro_call_token1] = ACTIONS(2480), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2480), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2480), + [anon_sym_FORWARD] = ACTIONS(2480), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2480), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2480), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2480), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2480), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2480), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2480), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2480), + [anon_sym_PS_GET] = ACTIONS(2480), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2480), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2480), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2480), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2480), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2480), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2480), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2480), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2480), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2480), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2480), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2480), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2480), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2480), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2480), + [anon_sym_MOZ_COLD] = ACTIONS(2480), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2480), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2480), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2480), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2480), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2480), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2480), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2480), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2480), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2480), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2480), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2480), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2480), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2480), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2480), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2480), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2480), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2480), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2480), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2480), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2480), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2480), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2480), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2480), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2480), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2480), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2480), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2480), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2480), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2480), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2480), + [anon_sym_MOZ_NONNULL] = ACTIONS(2480), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2480), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2480), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2480), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2480), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2480), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2480), + [anon_sym_MOZ_NORETURN] = ACTIONS(2480), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2480), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2480), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2480), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2480), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2480), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2480), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2480), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2480), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2480), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2480), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2480), + [anon_sym_MOZ_RAII] = ACTIONS(2480), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2480), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2480), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2480), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2480), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2480), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2480), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2480), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2480), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2480), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2480), + }, + [STATE(428)] = { + [sym_identifier] = ACTIONS(2206), + [aux_sym_preproc_include_token1] = ACTIONS(2206), + [aux_sym_preproc_def_token1] = ACTIONS(2206), + [aux_sym_preproc_if_token1] = ACTIONS(2206), + [aux_sym_preproc_if_token2] = ACTIONS(2206), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2206), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2206), + [sym_preproc_directive] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_PLUS] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym___extension__] = ACTIONS(2206), + [anon_sym_typedef] = ACTIONS(2206), + [anon_sym_virtual] = ACTIONS(2206), + [anon_sym_extern] = ACTIONS(2206), + [anon_sym___attribute__] = ACTIONS(2206), + [anon_sym___attribute] = ACTIONS(2206), + [anon_sym_COLON_COLON] = ACTIONS(2208), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2208), + [anon_sym___declspec] = ACTIONS(2206), + [anon_sym___based] = ACTIONS(2206), + [anon_sym___cdecl] = ACTIONS(2206), + [anon_sym___clrcall] = ACTIONS(2206), + [anon_sym___stdcall] = ACTIONS(2206), + [anon_sym___fastcall] = ACTIONS(2206), + [anon_sym___thiscall] = ACTIONS(2206), + [anon_sym___vectorcall] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_signed] = ACTIONS(2206), + [anon_sym_unsigned] = ACTIONS(2206), + [anon_sym_long] = ACTIONS(2206), + [anon_sym_short] = ACTIONS(2206), + [anon_sym_LBRACK] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_register] = ACTIONS(2206), + [anon_sym_inline] = ACTIONS(2206), + [anon_sym___inline] = ACTIONS(2206), + [anon_sym___inline__] = ACTIONS(2206), + [anon_sym___forceinline] = ACTIONS(2206), + [anon_sym_thread_local] = ACTIONS(2206), + [anon_sym___thread] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_constexpr] = ACTIONS(2206), + [anon_sym_volatile] = ACTIONS(2206), + [anon_sym_restrict] = ACTIONS(2206), + [anon_sym___restrict__] = ACTIONS(2206), + [anon_sym__Atomic] = ACTIONS(2206), + [anon_sym__Noreturn] = ACTIONS(2206), + [anon_sym_noreturn] = ACTIONS(2206), + [anon_sym__Nonnull] = ACTIONS(2206), + [anon_sym_mutable] = ACTIONS(2206), + [anon_sym_constinit] = ACTIONS(2206), + [anon_sym_consteval] = ACTIONS(2206), + [anon_sym_alignas] = ACTIONS(2206), + [anon_sym__Alignas] = ACTIONS(2206), + [sym_primitive_type] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_class] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_switch] = ACTIONS(2206), + [anon_sym_case] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [anon_sym_do] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_goto] = ACTIONS(2206), + [anon_sym___try] = ACTIONS(2206), + [anon_sym___leave] = ACTIONS(2206), + [anon_sym_not] = ACTIONS(2206), + [anon_sym_compl] = ACTIONS(2206), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_sizeof] = ACTIONS(2206), + [anon_sym___alignof__] = ACTIONS(2206), + [anon_sym___alignof] = ACTIONS(2206), + [anon_sym__alignof] = ACTIONS(2206), + [anon_sym_alignof] = ACTIONS(2206), + [anon_sym__Alignof] = ACTIONS(2206), + [anon_sym_offsetof] = ACTIONS(2206), + [anon_sym__Generic] = ACTIONS(2206), + [anon_sym_asm] = ACTIONS(2206), + [anon_sym___asm__] = ACTIONS(2206), + [anon_sym___asm] = ACTIONS(2206), + [sym_number_literal] = ACTIONS(2208), + [anon_sym_L_SQUOTE] = ACTIONS(2208), + [anon_sym_u_SQUOTE] = ACTIONS(2208), + [anon_sym_U_SQUOTE] = ACTIONS(2208), + [anon_sym_u8_SQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_L_DQUOTE] = ACTIONS(2208), + [anon_sym_u_DQUOTE] = ACTIONS(2208), + [anon_sym_U_DQUOTE] = ACTIONS(2208), + [anon_sym_u8_DQUOTE] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [sym_true] = ACTIONS(2206), + [sym_false] = ACTIONS(2206), + [anon_sym_NULL] = ACTIONS(2206), + [anon_sym_nullptr] = ACTIONS(2206), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2206), + [anon_sym_decltype] = ACTIONS(2206), + [anon_sym_explicit] = ACTIONS(2206), + [anon_sym_typename] = ACTIONS(2206), + [anon_sym_template] = ACTIONS(2206), + [anon_sym_operator] = ACTIONS(2206), + [anon_sym_try] = ACTIONS(2206), + [anon_sym_delete] = ACTIONS(2206), + [anon_sym_throw] = ACTIONS(2206), + [anon_sym_namespace] = ACTIONS(2206), + [anon_sym_using] = ACTIONS(2206), + [anon_sym_static_assert] = ACTIONS(2206), + [anon_sym_concept] = ACTIONS(2206), + [anon_sym_co_return] = ACTIONS(2206), + [anon_sym_co_yield] = ACTIONS(2206), + [anon_sym_R_DQUOTE] = ACTIONS(2208), + [anon_sym_LR_DQUOTE] = ACTIONS(2208), + [anon_sym_uR_DQUOTE] = ACTIONS(2208), + [anon_sym_UR_DQUOTE] = ACTIONS(2208), + [anon_sym_u8R_DQUOTE] = ACTIONS(2208), + [anon_sym_co_await] = ACTIONS(2206), + [anon_sym_new] = ACTIONS(2206), + [anon_sym_requires] = ACTIONS(2206), + [sym_this] = ACTIONS(2206), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2206), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_FORWARD] = ACTIONS(2206), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2206), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2206), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2206), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2206), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_PS_GET] = ACTIONS(2206), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2206), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2206), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2206), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2206), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2206), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2206), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2206), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2206), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2206), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2206), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2206), + [anon_sym_MOZ_COLD] = ACTIONS(2206), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2206), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2206), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2206), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2206), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2206), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2206), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2206), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2206), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2206), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2206), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2206), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2206), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2206), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2206), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2206), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2206), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2206), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2206), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2206), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2206), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_NONNULL] = ACTIONS(2206), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2206), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2206), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2206), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2206), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2206), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_NORETURN] = ACTIONS(2206), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2206), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2206), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2206), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2206), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2206), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2206), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2206), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2206), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2206), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2206), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2206), + [anon_sym_MOZ_RAII] = ACTIONS(2206), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2206), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2206), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2206), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2206), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2206), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2206), + }, + [STATE(429)] = { + [sym_identifier] = ACTIONS(2214), + [aux_sym_preproc_include_token1] = ACTIONS(2214), + [aux_sym_preproc_def_token1] = ACTIONS(2214), + [aux_sym_preproc_if_token1] = ACTIONS(2214), + [aux_sym_preproc_if_token2] = ACTIONS(2214), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2214), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2214), + [sym_preproc_directive] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [anon_sym_BANG] = ACTIONS(2216), + [anon_sym_TILDE] = ACTIONS(2216), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_STAR] = ACTIONS(2216), + [anon_sym_AMP_AMP] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym___extension__] = ACTIONS(2214), + [anon_sym_typedef] = ACTIONS(2214), + [anon_sym_virtual] = ACTIONS(2214), + [anon_sym_extern] = ACTIONS(2214), + [anon_sym___attribute__] = ACTIONS(2214), + [anon_sym___attribute] = ACTIONS(2214), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(2214), + [anon_sym___based] = ACTIONS(2214), + [anon_sym___cdecl] = ACTIONS(2214), + [anon_sym___clrcall] = ACTIONS(2214), + [anon_sym___stdcall] = ACTIONS(2214), + [anon_sym___fastcall] = ACTIONS(2214), + [anon_sym___thiscall] = ACTIONS(2214), + [anon_sym___vectorcall] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2216), + [anon_sym_signed] = ACTIONS(2214), + [anon_sym_unsigned] = ACTIONS(2214), + [anon_sym_long] = ACTIONS(2214), + [anon_sym_short] = ACTIONS(2214), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2214), + [anon_sym_register] = ACTIONS(2214), + [anon_sym_inline] = ACTIONS(2214), + [anon_sym___inline] = ACTIONS(2214), + [anon_sym___inline__] = ACTIONS(2214), + [anon_sym___forceinline] = ACTIONS(2214), + [anon_sym_thread_local] = ACTIONS(2214), + [anon_sym___thread] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [anon_sym_constexpr] = ACTIONS(2214), + [anon_sym_volatile] = ACTIONS(2214), + [anon_sym_restrict] = ACTIONS(2214), + [anon_sym___restrict__] = ACTIONS(2214), + [anon_sym__Atomic] = ACTIONS(2214), + [anon_sym__Noreturn] = ACTIONS(2214), + [anon_sym_noreturn] = ACTIONS(2214), + [anon_sym__Nonnull] = ACTIONS(2214), + [anon_sym_mutable] = ACTIONS(2214), + [anon_sym_constinit] = ACTIONS(2214), + [anon_sym_consteval] = ACTIONS(2214), + [anon_sym_alignas] = ACTIONS(2214), + [anon_sym__Alignas] = ACTIONS(2214), + [sym_primitive_type] = ACTIONS(2214), + [anon_sym_enum] = ACTIONS(2214), + [anon_sym_class] = ACTIONS(2214), + [anon_sym_struct] = ACTIONS(2214), + [anon_sym_union] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_switch] = ACTIONS(2214), + [anon_sym_case] = ACTIONS(2214), + [anon_sym_default] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_do] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_goto] = ACTIONS(2214), + [anon_sym___try] = ACTIONS(2214), + [anon_sym___leave] = ACTIONS(2214), + [anon_sym_not] = ACTIONS(2214), + [anon_sym_compl] = ACTIONS(2214), + [anon_sym_DASH_DASH] = ACTIONS(2216), + [anon_sym_PLUS_PLUS] = ACTIONS(2216), + [anon_sym_sizeof] = ACTIONS(2214), + [anon_sym___alignof__] = ACTIONS(2214), + [anon_sym___alignof] = ACTIONS(2214), + [anon_sym__alignof] = ACTIONS(2214), + [anon_sym_alignof] = ACTIONS(2214), + [anon_sym__Alignof] = ACTIONS(2214), + [anon_sym_offsetof] = ACTIONS(2214), + [anon_sym__Generic] = ACTIONS(2214), + [anon_sym_asm] = ACTIONS(2214), + [anon_sym___asm__] = ACTIONS(2214), + [anon_sym___asm] = ACTIONS(2214), + [sym_number_literal] = ACTIONS(2216), + [anon_sym_L_SQUOTE] = ACTIONS(2216), + [anon_sym_u_SQUOTE] = ACTIONS(2216), + [anon_sym_U_SQUOTE] = ACTIONS(2216), + [anon_sym_u8_SQUOTE] = ACTIONS(2216), + [anon_sym_SQUOTE] = ACTIONS(2216), + [anon_sym_L_DQUOTE] = ACTIONS(2216), + [anon_sym_u_DQUOTE] = ACTIONS(2216), + [anon_sym_U_DQUOTE] = ACTIONS(2216), + [anon_sym_u8_DQUOTE] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2216), + [sym_true] = ACTIONS(2214), + [sym_false] = ACTIONS(2214), + [anon_sym_NULL] = ACTIONS(2214), + [anon_sym_nullptr] = ACTIONS(2214), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2214), + [anon_sym_decltype] = ACTIONS(2214), + [anon_sym_explicit] = ACTIONS(2214), + [anon_sym_typename] = ACTIONS(2214), + [anon_sym_template] = ACTIONS(2214), + [anon_sym_operator] = ACTIONS(2214), + [anon_sym_try] = ACTIONS(2214), + [anon_sym_delete] = ACTIONS(2214), + [anon_sym_throw] = ACTIONS(2214), + [anon_sym_namespace] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2214), + [anon_sym_static_assert] = ACTIONS(2214), + [anon_sym_concept] = ACTIONS(2214), + [anon_sym_co_return] = ACTIONS(2214), + [anon_sym_co_yield] = ACTIONS(2214), + [anon_sym_R_DQUOTE] = ACTIONS(2216), + [anon_sym_LR_DQUOTE] = ACTIONS(2216), + [anon_sym_uR_DQUOTE] = ACTIONS(2216), + [anon_sym_UR_DQUOTE] = ACTIONS(2216), + [anon_sym_u8R_DQUOTE] = ACTIONS(2216), + [anon_sym_co_await] = ACTIONS(2214), + [anon_sym_new] = ACTIONS(2214), + [anon_sym_requires] = ACTIONS(2214), + [sym_this] = ACTIONS(2214), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2214), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_FORWARD] = ACTIONS(2214), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2214), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2214), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2214), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2214), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_PS_GET] = ACTIONS(2214), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2214), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2214), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2214), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2214), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2214), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2214), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2214), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2214), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2214), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2214), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2214), + [anon_sym_MOZ_COLD] = ACTIONS(2214), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2214), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2214), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2214), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2214), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2214), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2214), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2214), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2214), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2214), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2214), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2214), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2214), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2214), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2214), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2214), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2214), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2214), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2214), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2214), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2214), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_NONNULL] = ACTIONS(2214), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2214), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2214), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2214), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2214), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2214), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_NORETURN] = ACTIONS(2214), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2214), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2214), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2214), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2214), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2214), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2214), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2214), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2214), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2214), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2214), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2214), + [anon_sym_MOZ_RAII] = ACTIONS(2214), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2214), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2214), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2214), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2214), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2214), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2214), + }, + [STATE(430)] = { + [sym_identifier] = ACTIONS(2222), + [aux_sym_preproc_include_token1] = ACTIONS(2222), + [aux_sym_preproc_def_token1] = ACTIONS(2222), + [aux_sym_preproc_if_token1] = ACTIONS(2222), + [aux_sym_preproc_if_token2] = ACTIONS(2222), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2222), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2222), + [sym_preproc_directive] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2224), + [anon_sym_BANG] = ACTIONS(2224), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_AMP_AMP] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym___extension__] = ACTIONS(2222), + [anon_sym_typedef] = ACTIONS(2222), + [anon_sym_virtual] = ACTIONS(2222), + [anon_sym_extern] = ACTIONS(2222), + [anon_sym___attribute__] = ACTIONS(2222), + [anon_sym___attribute] = ACTIONS(2222), + [anon_sym_COLON_COLON] = ACTIONS(2224), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2224), + [anon_sym___declspec] = ACTIONS(2222), + [anon_sym___based] = ACTIONS(2222), + [anon_sym___cdecl] = ACTIONS(2222), + [anon_sym___clrcall] = ACTIONS(2222), + [anon_sym___stdcall] = ACTIONS(2222), + [anon_sym___fastcall] = ACTIONS(2222), + [anon_sym___thiscall] = ACTIONS(2222), + [anon_sym___vectorcall] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2224), + [anon_sym_signed] = ACTIONS(2222), + [anon_sym_unsigned] = ACTIONS(2222), + [anon_sym_long] = ACTIONS(2222), + [anon_sym_short] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_register] = ACTIONS(2222), + [anon_sym_inline] = ACTIONS(2222), + [anon_sym___inline] = ACTIONS(2222), + [anon_sym___inline__] = ACTIONS(2222), + [anon_sym___forceinline] = ACTIONS(2222), + [anon_sym_thread_local] = ACTIONS(2222), + [anon_sym___thread] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_constexpr] = ACTIONS(2222), + [anon_sym_volatile] = ACTIONS(2222), + [anon_sym_restrict] = ACTIONS(2222), + [anon_sym___restrict__] = ACTIONS(2222), + [anon_sym__Atomic] = ACTIONS(2222), + [anon_sym__Noreturn] = ACTIONS(2222), + [anon_sym_noreturn] = ACTIONS(2222), + [anon_sym__Nonnull] = ACTIONS(2222), + [anon_sym_mutable] = ACTIONS(2222), + [anon_sym_constinit] = ACTIONS(2222), + [anon_sym_consteval] = ACTIONS(2222), + [anon_sym_alignas] = ACTIONS(2222), + [anon_sym__Alignas] = ACTIONS(2222), + [sym_primitive_type] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(2222), + [anon_sym_union] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2222), + [anon_sym_default] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_goto] = ACTIONS(2222), + [anon_sym___try] = ACTIONS(2222), + [anon_sym___leave] = ACTIONS(2222), + [anon_sym_not] = ACTIONS(2222), + [anon_sym_compl] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2224), + [anon_sym_PLUS_PLUS] = ACTIONS(2224), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2222), + [anon_sym___alignof] = ACTIONS(2222), + [anon_sym__alignof] = ACTIONS(2222), + [anon_sym_alignof] = ACTIONS(2222), + [anon_sym__Alignof] = ACTIONS(2222), + [anon_sym_offsetof] = ACTIONS(2222), + [anon_sym__Generic] = ACTIONS(2222), + [anon_sym_asm] = ACTIONS(2222), + [anon_sym___asm__] = ACTIONS(2222), + [anon_sym___asm] = ACTIONS(2222), + [sym_number_literal] = ACTIONS(2224), + [anon_sym_L_SQUOTE] = ACTIONS(2224), + [anon_sym_u_SQUOTE] = ACTIONS(2224), + [anon_sym_U_SQUOTE] = ACTIONS(2224), + [anon_sym_u8_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_L_DQUOTE] = ACTIONS(2224), + [anon_sym_u_DQUOTE] = ACTIONS(2224), + [anon_sym_U_DQUOTE] = ACTIONS(2224), + [anon_sym_u8_DQUOTE] = ACTIONS(2224), + [anon_sym_DQUOTE] = ACTIONS(2224), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [anon_sym_NULL] = ACTIONS(2222), + [anon_sym_nullptr] = ACTIONS(2222), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2222), + [anon_sym_decltype] = ACTIONS(2222), + [anon_sym_explicit] = ACTIONS(2222), + [anon_sym_typename] = ACTIONS(2222), + [anon_sym_template] = ACTIONS(2222), + [anon_sym_operator] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_delete] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_namespace] = ACTIONS(2222), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_static_assert] = ACTIONS(2222), + [anon_sym_concept] = ACTIONS(2222), + [anon_sym_co_return] = ACTIONS(2222), + [anon_sym_co_yield] = ACTIONS(2222), + [anon_sym_R_DQUOTE] = ACTIONS(2224), + [anon_sym_LR_DQUOTE] = ACTIONS(2224), + [anon_sym_uR_DQUOTE] = ACTIONS(2224), + [anon_sym_UR_DQUOTE] = ACTIONS(2224), + [anon_sym_u8R_DQUOTE] = ACTIONS(2224), + [anon_sym_co_await] = ACTIONS(2222), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_requires] = ACTIONS(2222), + [sym_this] = ACTIONS(2222), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2222), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_FORWARD] = ACTIONS(2222), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2222), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2222), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2222), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2222), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_PS_GET] = ACTIONS(2222), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2222), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2222), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2222), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2222), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2222), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2222), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2222), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2222), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2222), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2222), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2222), + [anon_sym_MOZ_COLD] = ACTIONS(2222), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2222), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2222), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2222), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2222), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2222), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2222), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2222), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2222), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2222), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2222), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2222), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2222), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2222), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2222), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2222), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2222), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2222), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2222), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2222), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2222), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_NONNULL] = ACTIONS(2222), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2222), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2222), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2222), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2222), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2222), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_NORETURN] = ACTIONS(2222), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2222), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2222), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2222), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2222), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2222), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2222), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2222), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2222), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2222), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2222), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2222), + [anon_sym_MOZ_RAII] = ACTIONS(2222), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2222), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2222), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2222), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2222), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2222), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2222), + }, + [STATE(431)] = { + [ts_builtin_sym_end] = ACTIONS(2301), + [sym_identifier] = ACTIONS(2299), + [aux_sym_preproc_include_token1] = ACTIONS(2299), + [aux_sym_preproc_def_token1] = ACTIONS(2299), + [aux_sym_preproc_if_token1] = ACTIONS(2299), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2299), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2299), + [sym_preproc_directive] = ACTIONS(2299), + [anon_sym_LPAREN2] = ACTIONS(2301), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2301), + [anon_sym_AMP_AMP] = ACTIONS(2301), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym___extension__] = ACTIONS(2299), + [anon_sym_typedef] = ACTIONS(2299), + [anon_sym_virtual] = ACTIONS(2299), + [anon_sym_extern] = ACTIONS(2299), + [anon_sym___attribute__] = ACTIONS(2299), + [anon_sym___attribute] = ACTIONS(2299), + [anon_sym_COLON_COLON] = ACTIONS(2301), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2301), + [anon_sym___declspec] = ACTIONS(2299), + [anon_sym___based] = ACTIONS(2299), + [anon_sym___cdecl] = ACTIONS(2299), + [anon_sym___clrcall] = ACTIONS(2299), + [anon_sym___stdcall] = ACTIONS(2299), + [anon_sym___fastcall] = ACTIONS(2299), + [anon_sym___thiscall] = ACTIONS(2299), + [anon_sym___vectorcall] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2301), + [anon_sym_signed] = ACTIONS(2299), + [anon_sym_unsigned] = ACTIONS(2299), + [anon_sym_long] = ACTIONS(2299), + [anon_sym_short] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2299), + [anon_sym_register] = ACTIONS(2299), + [anon_sym_inline] = ACTIONS(2299), + [anon_sym___inline] = ACTIONS(2299), + [anon_sym___inline__] = ACTIONS(2299), + [anon_sym___forceinline] = ACTIONS(2299), + [anon_sym_thread_local] = ACTIONS(2299), + [anon_sym___thread] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [anon_sym_constexpr] = ACTIONS(2299), + [anon_sym_volatile] = ACTIONS(2299), + [anon_sym_restrict] = ACTIONS(2299), + [anon_sym___restrict__] = ACTIONS(2299), + [anon_sym__Atomic] = ACTIONS(2299), + [anon_sym__Noreturn] = ACTIONS(2299), + [anon_sym_noreturn] = ACTIONS(2299), + [anon_sym__Nonnull] = ACTIONS(2299), + [anon_sym_mutable] = ACTIONS(2299), + [anon_sym_constinit] = ACTIONS(2299), + [anon_sym_consteval] = ACTIONS(2299), + [anon_sym_alignas] = ACTIONS(2299), + [anon_sym__Alignas] = ACTIONS(2299), + [sym_primitive_type] = ACTIONS(2299), + [anon_sym_enum] = ACTIONS(2299), + [anon_sym_class] = ACTIONS(2299), + [anon_sym_struct] = ACTIONS(2299), + [anon_sym_union] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_switch] = ACTIONS(2299), + [anon_sym_case] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(2299), + [anon_sym_while] = ACTIONS(2299), + [anon_sym_do] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_goto] = ACTIONS(2299), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_compl] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2301), + [anon_sym_PLUS_PLUS] = ACTIONS(2301), + [anon_sym_sizeof] = ACTIONS(2299), + [anon_sym___alignof__] = ACTIONS(2299), + [anon_sym___alignof] = ACTIONS(2299), + [anon_sym__alignof] = ACTIONS(2299), + [anon_sym_alignof] = ACTIONS(2299), + [anon_sym__Alignof] = ACTIONS(2299), + [anon_sym_offsetof] = ACTIONS(2299), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2299), + [anon_sym___asm__] = ACTIONS(2299), + [anon_sym___asm] = ACTIONS(2299), + [sym_number_literal] = ACTIONS(2301), + [anon_sym_L_SQUOTE] = ACTIONS(2301), + [anon_sym_u_SQUOTE] = ACTIONS(2301), + [anon_sym_U_SQUOTE] = ACTIONS(2301), + [anon_sym_u8_SQUOTE] = ACTIONS(2301), + [anon_sym_SQUOTE] = ACTIONS(2301), + [anon_sym_L_DQUOTE] = ACTIONS(2301), + [anon_sym_u_DQUOTE] = ACTIONS(2301), + [anon_sym_U_DQUOTE] = ACTIONS(2301), + [anon_sym_u8_DQUOTE] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(2301), + [sym_true] = ACTIONS(2299), + [sym_false] = ACTIONS(2299), + [anon_sym_NULL] = ACTIONS(2299), + [anon_sym_nullptr] = ACTIONS(2299), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2299), + [anon_sym_decltype] = ACTIONS(2299), + [anon_sym_explicit] = ACTIONS(2299), + [anon_sym_typename] = ACTIONS(2299), + [anon_sym_template] = ACTIONS(2299), + [anon_sym_operator] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(2299), + [anon_sym_delete] = ACTIONS(2299), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_namespace] = ACTIONS(2299), + [anon_sym_using] = ACTIONS(2299), + [anon_sym_static_assert] = ACTIONS(2299), + [anon_sym_concept] = ACTIONS(2299), + [anon_sym_co_return] = ACTIONS(2299), + [anon_sym_co_yield] = ACTIONS(2299), + [anon_sym_R_DQUOTE] = ACTIONS(2301), + [anon_sym_LR_DQUOTE] = ACTIONS(2301), + [anon_sym_uR_DQUOTE] = ACTIONS(2301), + [anon_sym_UR_DQUOTE] = ACTIONS(2301), + [anon_sym_u8R_DQUOTE] = ACTIONS(2301), + [anon_sym_co_await] = ACTIONS(2299), + [anon_sym_new] = ACTIONS(2299), + [anon_sym_requires] = ACTIONS(2299), + [sym_this] = ACTIONS(2299), + [sym_alone_macro] = ACTIONS(2301), + [aux_sym_alone_macro_call_token1] = ACTIONS(2299), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2299), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_FORWARD] = ACTIONS(2299), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2299), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2299), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2299), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2299), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_PS_GET] = ACTIONS(2299), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2299), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2299), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2299), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2299), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2299), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2299), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2299), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2299), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2299), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2299), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2299), + [anon_sym_MOZ_COLD] = ACTIONS(2299), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2299), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2299), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2299), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2299), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2299), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2299), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2299), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2299), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2299), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2299), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2299), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2299), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2299), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2299), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2299), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2299), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2299), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2299), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2299), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2299), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_NONNULL] = ACTIONS(2299), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2299), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2299), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2299), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2299), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2299), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_NORETURN] = ACTIONS(2299), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2299), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2299), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2299), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2299), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2299), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2299), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2299), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2299), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2299), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2299), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2299), + [anon_sym_MOZ_RAII] = ACTIONS(2299), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2299), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2299), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2299), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2299), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2299), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2299), + }, + [STATE(432)] = { + [ts_builtin_sym_end] = ACTIONS(2242), + [sym_identifier] = ACTIONS(2240), + [aux_sym_preproc_include_token1] = ACTIONS(2240), + [aux_sym_preproc_def_token1] = ACTIONS(2240), + [aux_sym_preproc_if_token1] = ACTIONS(2240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2240), + [sym_preproc_directive] = ACTIONS(2240), + [anon_sym_LPAREN2] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_TILDE] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym___extension__] = ACTIONS(2240), + [anon_sym_typedef] = ACTIONS(2240), + [anon_sym_virtual] = ACTIONS(2240), + [anon_sym_extern] = ACTIONS(2240), + [anon_sym___attribute__] = ACTIONS(2240), + [anon_sym___attribute] = ACTIONS(2240), + [anon_sym_COLON_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2242), + [anon_sym___declspec] = ACTIONS(2240), + [anon_sym___based] = ACTIONS(2240), + [anon_sym___cdecl] = ACTIONS(2240), + [anon_sym___clrcall] = ACTIONS(2240), + [anon_sym___stdcall] = ACTIONS(2240), + [anon_sym___fastcall] = ACTIONS(2240), + [anon_sym___thiscall] = ACTIONS(2240), + [anon_sym___vectorcall] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_signed] = ACTIONS(2240), + [anon_sym_unsigned] = ACTIONS(2240), + [anon_sym_long] = ACTIONS(2240), + [anon_sym_short] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2240), + [anon_sym_static] = ACTIONS(2240), + [anon_sym_register] = ACTIONS(2240), + [anon_sym_inline] = ACTIONS(2240), + [anon_sym___inline] = ACTIONS(2240), + [anon_sym___inline__] = ACTIONS(2240), + [anon_sym___forceinline] = ACTIONS(2240), + [anon_sym_thread_local] = ACTIONS(2240), + [anon_sym___thread] = ACTIONS(2240), + [anon_sym_const] = ACTIONS(2240), + [anon_sym_constexpr] = ACTIONS(2240), + [anon_sym_volatile] = ACTIONS(2240), + [anon_sym_restrict] = ACTIONS(2240), + [anon_sym___restrict__] = ACTIONS(2240), + [anon_sym__Atomic] = ACTIONS(2240), + [anon_sym__Noreturn] = ACTIONS(2240), + [anon_sym_noreturn] = ACTIONS(2240), + [anon_sym__Nonnull] = ACTIONS(2240), + [anon_sym_mutable] = ACTIONS(2240), + [anon_sym_constinit] = ACTIONS(2240), + [anon_sym_consteval] = ACTIONS(2240), + [anon_sym_alignas] = ACTIONS(2240), + [anon_sym__Alignas] = ACTIONS(2240), + [sym_primitive_type] = ACTIONS(2240), + [anon_sym_enum] = ACTIONS(2240), + [anon_sym_class] = ACTIONS(2240), + [anon_sym_struct] = ACTIONS(2240), + [anon_sym_union] = ACTIONS(2240), + [anon_sym_if] = ACTIONS(2240), + [anon_sym_switch] = ACTIONS(2240), + [anon_sym_case] = ACTIONS(2240), + [anon_sym_default] = ACTIONS(2240), + [anon_sym_while] = ACTIONS(2240), + [anon_sym_do] = ACTIONS(2240), + [anon_sym_for] = ACTIONS(2240), + [anon_sym_return] = ACTIONS(2240), + [anon_sym_break] = ACTIONS(2240), + [anon_sym_continue] = ACTIONS(2240), + [anon_sym_goto] = ACTIONS(2240), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_compl] = ACTIONS(2240), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_sizeof] = ACTIONS(2240), + [anon_sym___alignof__] = ACTIONS(2240), + [anon_sym___alignof] = ACTIONS(2240), + [anon_sym__alignof] = ACTIONS(2240), + [anon_sym_alignof] = ACTIONS(2240), + [anon_sym__Alignof] = ACTIONS(2240), + [anon_sym_offsetof] = ACTIONS(2240), + [anon_sym__Generic] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(2240), + [anon_sym___asm__] = ACTIONS(2240), + [anon_sym___asm] = ACTIONS(2240), + [sym_number_literal] = ACTIONS(2242), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_L_DQUOTE] = ACTIONS(2242), + [anon_sym_u_DQUOTE] = ACTIONS(2242), + [anon_sym_U_DQUOTE] = ACTIONS(2242), + [anon_sym_u8_DQUOTE] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym_true] = ACTIONS(2240), + [sym_false] = ACTIONS(2240), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2240), + [anon_sym_decltype] = ACTIONS(2240), + [anon_sym_explicit] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_template] = ACTIONS(2240), + [anon_sym_operator] = ACTIONS(2240), + [anon_sym_try] = ACTIONS(2240), + [anon_sym_delete] = ACTIONS(2240), + [anon_sym_throw] = ACTIONS(2240), + [anon_sym_namespace] = ACTIONS(2240), + [anon_sym_using] = ACTIONS(2240), + [anon_sym_static_assert] = ACTIONS(2240), + [anon_sym_concept] = ACTIONS(2240), + [anon_sym_co_return] = ACTIONS(2240), + [anon_sym_co_yield] = ACTIONS(2240), + [anon_sym_R_DQUOTE] = ACTIONS(2242), + [anon_sym_LR_DQUOTE] = ACTIONS(2242), + [anon_sym_uR_DQUOTE] = ACTIONS(2242), + [anon_sym_UR_DQUOTE] = ACTIONS(2242), + [anon_sym_u8R_DQUOTE] = ACTIONS(2242), + [anon_sym_co_await] = ACTIONS(2240), + [anon_sym_new] = ACTIONS(2240), + [anon_sym_requires] = ACTIONS(2240), + [sym_this] = ACTIONS(2240), + [sym_alone_macro] = ACTIONS(2242), + [aux_sym_alone_macro_call_token1] = ACTIONS(2240), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2240), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_FORWARD] = ACTIONS(2240), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2240), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2240), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2240), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2240), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_PS_GET] = ACTIONS(2240), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2240), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2240), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2240), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2240), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2240), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2240), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2240), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2240), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2240), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2240), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2240), + [anon_sym_MOZ_COLD] = ACTIONS(2240), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2240), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2240), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2240), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2240), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2240), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2240), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2240), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2240), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2240), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2240), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2240), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2240), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2240), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2240), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2240), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2240), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2240), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2240), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2240), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2240), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_NONNULL] = ACTIONS(2240), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2240), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2240), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2240), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2240), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2240), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_NORETURN] = ACTIONS(2240), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2240), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2240), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2240), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2240), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2240), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2240), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2240), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2240), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2240), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2240), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2240), + [anon_sym_MOZ_RAII] = ACTIONS(2240), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2240), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2240), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2240), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2240), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2240), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2240), + }, + [STATE(433)] = { + [sym_identifier] = ACTIONS(2232), + [aux_sym_preproc_include_token1] = ACTIONS(2232), + [aux_sym_preproc_def_token1] = ACTIONS(2232), + [aux_sym_preproc_if_token1] = ACTIONS(2232), + [aux_sym_preproc_if_token2] = ACTIONS(2232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2232), + [sym_preproc_directive] = ACTIONS(2232), + [anon_sym_LPAREN2] = ACTIONS(2234), + [anon_sym_BANG] = ACTIONS(2234), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym___extension__] = ACTIONS(2232), + [anon_sym_typedef] = ACTIONS(2232), + [anon_sym_virtual] = ACTIONS(2232), + [anon_sym_extern] = ACTIONS(2232), + [anon_sym___attribute__] = ACTIONS(2232), + [anon_sym___attribute] = ACTIONS(2232), + [anon_sym_COLON_COLON] = ACTIONS(2234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2234), + [anon_sym___declspec] = ACTIONS(2232), + [anon_sym___based] = ACTIONS(2232), + [anon_sym___cdecl] = ACTIONS(2232), + [anon_sym___clrcall] = ACTIONS(2232), + [anon_sym___stdcall] = ACTIONS(2232), + [anon_sym___fastcall] = ACTIONS(2232), + [anon_sym___thiscall] = ACTIONS(2232), + [anon_sym___vectorcall] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_signed] = ACTIONS(2232), + [anon_sym_unsigned] = ACTIONS(2232), + [anon_sym_long] = ACTIONS(2232), + [anon_sym_short] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2232), + [anon_sym_static] = ACTIONS(2232), + [anon_sym_register] = ACTIONS(2232), + [anon_sym_inline] = ACTIONS(2232), + [anon_sym___inline] = ACTIONS(2232), + [anon_sym___inline__] = ACTIONS(2232), + [anon_sym___forceinline] = ACTIONS(2232), + [anon_sym_thread_local] = ACTIONS(2232), + [anon_sym___thread] = ACTIONS(2232), + [anon_sym_const] = ACTIONS(2232), + [anon_sym_constexpr] = ACTIONS(2232), + [anon_sym_volatile] = ACTIONS(2232), + [anon_sym_restrict] = ACTIONS(2232), + [anon_sym___restrict__] = ACTIONS(2232), + [anon_sym__Atomic] = ACTIONS(2232), + [anon_sym__Noreturn] = ACTIONS(2232), + [anon_sym_noreturn] = ACTIONS(2232), + [anon_sym__Nonnull] = ACTIONS(2232), + [anon_sym_mutable] = ACTIONS(2232), + [anon_sym_constinit] = ACTIONS(2232), + [anon_sym_consteval] = ACTIONS(2232), + [anon_sym_alignas] = ACTIONS(2232), + [anon_sym__Alignas] = ACTIONS(2232), + [sym_primitive_type] = ACTIONS(2232), + [anon_sym_enum] = ACTIONS(2232), + [anon_sym_class] = ACTIONS(2232), + [anon_sym_struct] = ACTIONS(2232), + [anon_sym_union] = ACTIONS(2232), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_switch] = ACTIONS(2232), + [anon_sym_case] = ACTIONS(2232), + [anon_sym_default] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2232), + [anon_sym_do] = ACTIONS(2232), + [anon_sym_for] = ACTIONS(2232), + [anon_sym_return] = ACTIONS(2232), + [anon_sym_break] = ACTIONS(2232), + [anon_sym_continue] = ACTIONS(2232), + [anon_sym_goto] = ACTIONS(2232), + [anon_sym___try] = ACTIONS(2232), + [anon_sym___leave] = ACTIONS(2232), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_sizeof] = ACTIONS(2232), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2232), + [anon_sym__Generic] = ACTIONS(2232), + [anon_sym_asm] = ACTIONS(2232), + [anon_sym___asm__] = ACTIONS(2232), + [anon_sym___asm] = ACTIONS(2232), + [sym_number_literal] = ACTIONS(2234), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2234), + [anon_sym_u_DQUOTE] = ACTIONS(2234), + [anon_sym_U_DQUOTE] = ACTIONS(2234), + [anon_sym_u8_DQUOTE] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2234), + [sym_true] = ACTIONS(2232), + [sym_false] = ACTIONS(2232), + [anon_sym_NULL] = ACTIONS(2232), + [anon_sym_nullptr] = ACTIONS(2232), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2232), + [anon_sym_decltype] = ACTIONS(2232), + [anon_sym_explicit] = ACTIONS(2232), + [anon_sym_typename] = ACTIONS(2232), + [anon_sym_template] = ACTIONS(2232), + [anon_sym_operator] = ACTIONS(2232), + [anon_sym_try] = ACTIONS(2232), + [anon_sym_delete] = ACTIONS(2232), + [anon_sym_throw] = ACTIONS(2232), + [anon_sym_namespace] = ACTIONS(2232), + [anon_sym_using] = ACTIONS(2232), + [anon_sym_static_assert] = ACTIONS(2232), + [anon_sym_concept] = ACTIONS(2232), + [anon_sym_co_return] = ACTIONS(2232), + [anon_sym_co_yield] = ACTIONS(2232), + [anon_sym_R_DQUOTE] = ACTIONS(2234), + [anon_sym_LR_DQUOTE] = ACTIONS(2234), + [anon_sym_uR_DQUOTE] = ACTIONS(2234), + [anon_sym_UR_DQUOTE] = ACTIONS(2234), + [anon_sym_u8R_DQUOTE] = ACTIONS(2234), + [anon_sym_co_await] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_requires] = ACTIONS(2232), + [sym_this] = ACTIONS(2232), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2232), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_FORWARD] = ACTIONS(2232), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2232), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2232), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2232), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2232), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_PS_GET] = ACTIONS(2232), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2232), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2232), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2232), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2232), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2232), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2232), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2232), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2232), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2232), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2232), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2232), + [anon_sym_MOZ_COLD] = ACTIONS(2232), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2232), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2232), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2232), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2232), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2232), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2232), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2232), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2232), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2232), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2232), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2232), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2232), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2232), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2232), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2232), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2232), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2232), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2232), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2232), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2232), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_NONNULL] = ACTIONS(2232), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2232), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2232), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2232), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2232), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2232), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_NORETURN] = ACTIONS(2232), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2232), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2232), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2232), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2232), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2232), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2232), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2232), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2232), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2232), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2232), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2232), + [anon_sym_MOZ_RAII] = ACTIONS(2232), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2232), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2232), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2232), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2232), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2232), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2232), + }, + [STATE(434)] = { + [ts_builtin_sym_end] = ACTIONS(2305), + [sym_identifier] = ACTIONS(2303), + [aux_sym_preproc_include_token1] = ACTIONS(2303), + [aux_sym_preproc_def_token1] = ACTIONS(2303), + [aux_sym_preproc_if_token1] = ACTIONS(2303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2303), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2303), + [sym_preproc_directive] = ACTIONS(2303), + [anon_sym_LPAREN2] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2305), + [anon_sym_AMP_AMP] = ACTIONS(2305), + [anon_sym_AMP] = ACTIONS(2303), + [anon_sym_SEMI] = ACTIONS(2305), + [anon_sym___extension__] = ACTIONS(2303), + [anon_sym_typedef] = ACTIONS(2303), + [anon_sym_virtual] = ACTIONS(2303), + [anon_sym_extern] = ACTIONS(2303), + [anon_sym___attribute__] = ACTIONS(2303), + [anon_sym___attribute] = ACTIONS(2303), + [anon_sym_COLON_COLON] = ACTIONS(2305), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2305), + [anon_sym___declspec] = ACTIONS(2303), + [anon_sym___based] = ACTIONS(2303), + [anon_sym___cdecl] = ACTIONS(2303), + [anon_sym___clrcall] = ACTIONS(2303), + [anon_sym___stdcall] = ACTIONS(2303), + [anon_sym___fastcall] = ACTIONS(2303), + [anon_sym___thiscall] = ACTIONS(2303), + [anon_sym___vectorcall] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_signed] = ACTIONS(2303), + [anon_sym_unsigned] = ACTIONS(2303), + [anon_sym_long] = ACTIONS(2303), + [anon_sym_short] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_static] = ACTIONS(2303), + [anon_sym_register] = ACTIONS(2303), + [anon_sym_inline] = ACTIONS(2303), + [anon_sym___inline] = ACTIONS(2303), + [anon_sym___inline__] = ACTIONS(2303), + [anon_sym___forceinline] = ACTIONS(2303), + [anon_sym_thread_local] = ACTIONS(2303), + [anon_sym___thread] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [anon_sym_constexpr] = ACTIONS(2303), + [anon_sym_volatile] = ACTIONS(2303), + [anon_sym_restrict] = ACTIONS(2303), + [anon_sym___restrict__] = ACTIONS(2303), + [anon_sym__Atomic] = ACTIONS(2303), + [anon_sym__Noreturn] = ACTIONS(2303), + [anon_sym_noreturn] = ACTIONS(2303), + [anon_sym__Nonnull] = ACTIONS(2303), + [anon_sym_mutable] = ACTIONS(2303), + [anon_sym_constinit] = ACTIONS(2303), + [anon_sym_consteval] = ACTIONS(2303), + [anon_sym_alignas] = ACTIONS(2303), + [anon_sym__Alignas] = ACTIONS(2303), + [sym_primitive_type] = ACTIONS(2303), + [anon_sym_enum] = ACTIONS(2303), + [anon_sym_class] = ACTIONS(2303), + [anon_sym_struct] = ACTIONS(2303), + [anon_sym_union] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_switch] = ACTIONS(2303), + [anon_sym_case] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(2303), + [anon_sym_do] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_break] = ACTIONS(2303), + [anon_sym_continue] = ACTIONS(2303), + [anon_sym_goto] = ACTIONS(2303), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2305), + [anon_sym_PLUS_PLUS] = ACTIONS(2305), + [anon_sym_sizeof] = ACTIONS(2303), + [anon_sym___alignof__] = ACTIONS(2303), + [anon_sym___alignof] = ACTIONS(2303), + [anon_sym__alignof] = ACTIONS(2303), + [anon_sym_alignof] = ACTIONS(2303), + [anon_sym__Alignof] = ACTIONS(2303), + [anon_sym_offsetof] = ACTIONS(2303), + [anon_sym__Generic] = ACTIONS(2303), + [anon_sym_asm] = ACTIONS(2303), + [anon_sym___asm__] = ACTIONS(2303), + [anon_sym___asm] = ACTIONS(2303), + [sym_number_literal] = ACTIONS(2305), + [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(2305), + [anon_sym_u_DQUOTE] = ACTIONS(2305), + [anon_sym_U_DQUOTE] = ACTIONS(2305), + [anon_sym_u8_DQUOTE] = ACTIONS(2305), + [anon_sym_DQUOTE] = ACTIONS(2305), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [anon_sym_NULL] = ACTIONS(2303), + [anon_sym_nullptr] = ACTIONS(2303), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2303), + [anon_sym_decltype] = ACTIONS(2303), + [anon_sym_explicit] = ACTIONS(2303), + [anon_sym_typename] = ACTIONS(2303), + [anon_sym_template] = ACTIONS(2303), + [anon_sym_operator] = ACTIONS(2303), + [anon_sym_try] = ACTIONS(2303), + [anon_sym_delete] = ACTIONS(2303), + [anon_sym_throw] = ACTIONS(2303), + [anon_sym_namespace] = ACTIONS(2303), + [anon_sym_using] = ACTIONS(2303), + [anon_sym_static_assert] = ACTIONS(2303), + [anon_sym_concept] = ACTIONS(2303), + [anon_sym_co_return] = ACTIONS(2303), + [anon_sym_co_yield] = ACTIONS(2303), + [anon_sym_R_DQUOTE] = ACTIONS(2305), + [anon_sym_LR_DQUOTE] = ACTIONS(2305), + [anon_sym_uR_DQUOTE] = ACTIONS(2305), + [anon_sym_UR_DQUOTE] = ACTIONS(2305), + [anon_sym_u8R_DQUOTE] = ACTIONS(2305), + [anon_sym_co_await] = ACTIONS(2303), + [anon_sym_new] = ACTIONS(2303), + [anon_sym_requires] = ACTIONS(2303), + [sym_this] = ACTIONS(2303), + [sym_alone_macro] = ACTIONS(2305), + [aux_sym_alone_macro_call_token1] = ACTIONS(2303), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2303), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_FORWARD] = ACTIONS(2303), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2303), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2303), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2303), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2303), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_PS_GET] = ACTIONS(2303), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2303), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2303), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2303), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2303), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2303), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2303), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2303), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2303), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2303), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2303), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2303), + [anon_sym_MOZ_COLD] = ACTIONS(2303), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2303), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2303), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2303), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2303), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2303), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2303), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2303), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2303), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2303), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2303), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2303), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2303), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2303), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2303), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2303), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2303), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2303), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2303), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2303), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2303), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_NONNULL] = ACTIONS(2303), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2303), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2303), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2303), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2303), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2303), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_NORETURN] = ACTIONS(2303), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2303), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2303), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2303), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2303), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2303), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2303), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2303), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2303), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2303), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2303), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2303), + [anon_sym_MOZ_RAII] = ACTIONS(2303), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2303), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2303), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2303), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2303), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2303), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2303), + }, + [STATE(435)] = { + [ts_builtin_sym_end] = ACTIONS(2309), + [sym_identifier] = ACTIONS(2307), + [aux_sym_preproc_include_token1] = ACTIONS(2307), + [aux_sym_preproc_def_token1] = ACTIONS(2307), + [aux_sym_preproc_if_token1] = ACTIONS(2307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2307), + [sym_preproc_directive] = ACTIONS(2307), + [anon_sym_LPAREN2] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2309), + [anon_sym_TILDE] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_typedef] = ACTIONS(2307), + [anon_sym_virtual] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym___attribute__] = ACTIONS(2307), + [anon_sym___attribute] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2309), + [anon_sym___declspec] = ACTIONS(2307), + [anon_sym___based] = ACTIONS(2307), + [anon_sym___cdecl] = ACTIONS(2307), + [anon_sym___clrcall] = ACTIONS(2307), + [anon_sym___stdcall] = ACTIONS(2307), + [anon_sym___fastcall] = ACTIONS(2307), + [anon_sym___thiscall] = ACTIONS(2307), + [anon_sym___vectorcall] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_signed] = ACTIONS(2307), + [anon_sym_unsigned] = ACTIONS(2307), + [anon_sym_long] = ACTIONS(2307), + [anon_sym_short] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_register] = ACTIONS(2307), + [anon_sym_inline] = ACTIONS(2307), + [anon_sym___inline] = ACTIONS(2307), + [anon_sym___inline__] = ACTIONS(2307), + [anon_sym___forceinline] = ACTIONS(2307), + [anon_sym_thread_local] = ACTIONS(2307), + [anon_sym___thread] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_constexpr] = ACTIONS(2307), + [anon_sym_volatile] = ACTIONS(2307), + [anon_sym_restrict] = ACTIONS(2307), + [anon_sym___restrict__] = ACTIONS(2307), + [anon_sym__Atomic] = ACTIONS(2307), + [anon_sym__Noreturn] = ACTIONS(2307), + [anon_sym_noreturn] = ACTIONS(2307), + [anon_sym__Nonnull] = ACTIONS(2307), + [anon_sym_mutable] = ACTIONS(2307), + [anon_sym_constinit] = ACTIONS(2307), + [anon_sym_consteval] = ACTIONS(2307), + [anon_sym_alignas] = ACTIONS(2307), + [anon_sym__Alignas] = ACTIONS(2307), + [sym_primitive_type] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_class] = ACTIONS(2307), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_switch] = ACTIONS(2307), + [anon_sym_case] = ACTIONS(2307), + [anon_sym_default] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_goto] = ACTIONS(2307), + [anon_sym_not] = ACTIONS(2307), + [anon_sym_compl] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2307), + [anon_sym___alignof__] = ACTIONS(2307), + [anon_sym___alignof] = ACTIONS(2307), + [anon_sym__alignof] = ACTIONS(2307), + [anon_sym_alignof] = ACTIONS(2307), + [anon_sym__Alignof] = ACTIONS(2307), + [anon_sym_offsetof] = ACTIONS(2307), + [anon_sym__Generic] = ACTIONS(2307), + [anon_sym_asm] = ACTIONS(2307), + [anon_sym___asm__] = ACTIONS(2307), + [anon_sym___asm] = ACTIONS(2307), + [sym_number_literal] = ACTIONS(2309), + [anon_sym_L_SQUOTE] = ACTIONS(2309), + [anon_sym_u_SQUOTE] = ACTIONS(2309), + [anon_sym_U_SQUOTE] = ACTIONS(2309), + [anon_sym_u8_SQUOTE] = ACTIONS(2309), + [anon_sym_SQUOTE] = ACTIONS(2309), + [anon_sym_L_DQUOTE] = ACTIONS(2309), + [anon_sym_u_DQUOTE] = ACTIONS(2309), + [anon_sym_U_DQUOTE] = ACTIONS(2309), + [anon_sym_u8_DQUOTE] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2309), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [anon_sym_NULL] = ACTIONS(2307), + [anon_sym_nullptr] = ACTIONS(2307), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2307), + [anon_sym_decltype] = ACTIONS(2307), + [anon_sym_explicit] = ACTIONS(2307), + [anon_sym_typename] = ACTIONS(2307), + [anon_sym_template] = ACTIONS(2307), + [anon_sym_operator] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2307), + [anon_sym_delete] = ACTIONS(2307), + [anon_sym_throw] = ACTIONS(2307), + [anon_sym_namespace] = ACTIONS(2307), + [anon_sym_using] = ACTIONS(2307), + [anon_sym_static_assert] = ACTIONS(2307), + [anon_sym_concept] = ACTIONS(2307), + [anon_sym_co_return] = ACTIONS(2307), + [anon_sym_co_yield] = ACTIONS(2307), + [anon_sym_R_DQUOTE] = ACTIONS(2309), + [anon_sym_LR_DQUOTE] = ACTIONS(2309), + [anon_sym_uR_DQUOTE] = ACTIONS(2309), + [anon_sym_UR_DQUOTE] = ACTIONS(2309), + [anon_sym_u8R_DQUOTE] = ACTIONS(2309), + [anon_sym_co_await] = ACTIONS(2307), + [anon_sym_new] = ACTIONS(2307), + [anon_sym_requires] = ACTIONS(2307), + [sym_this] = ACTIONS(2307), + [sym_alone_macro] = ACTIONS(2309), + [aux_sym_alone_macro_call_token1] = ACTIONS(2307), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2307), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_FORWARD] = ACTIONS(2307), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2307), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2307), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2307), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2307), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_PS_GET] = ACTIONS(2307), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2307), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2307), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2307), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2307), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2307), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2307), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2307), + [anon_sym_MOZ_COLD] = ACTIONS(2307), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2307), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2307), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2307), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2307), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2307), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2307), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2307), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2307), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2307), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2307), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2307), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2307), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2307), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_NONNULL] = ACTIONS(2307), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2307), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2307), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2307), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2307), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2307), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2307), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2307), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2307), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2307), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2307), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2307), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2307), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2307), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2307), + [anon_sym_MOZ_RAII] = ACTIONS(2307), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2307), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2307), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2307), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2307), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2307), + }, + [STATE(436)] = { + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_include_token1] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_AMP_AMP] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_virtual] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_COLON_COLON] = ACTIONS(2452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___based] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_RBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_mutable] = ACTIONS(2450), + [anon_sym_constinit] = ACTIONS(2450), + [anon_sym_consteval] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_class] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_goto] = ACTIONS(2450), + [anon_sym___try] = ACTIONS(2450), + [anon_sym___leave] = ACTIONS(2450), + [anon_sym_not] = ACTIONS(2450), + [anon_sym_compl] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2452), + [anon_sym_sizeof] = ACTIONS(2450), + [anon_sym___alignof__] = ACTIONS(2450), + [anon_sym___alignof] = ACTIONS(2450), + [anon_sym__alignof] = ACTIONS(2450), + [anon_sym_alignof] = ACTIONS(2450), + [anon_sym__Alignof] = ACTIONS(2450), + [anon_sym_offsetof] = ACTIONS(2450), + [anon_sym__Generic] = ACTIONS(2450), + [anon_sym_asm] = ACTIONS(2450), + [anon_sym___asm__] = ACTIONS(2450), + [anon_sym___asm] = ACTIONS(2450), + [sym_number_literal] = ACTIONS(2452), + [anon_sym_L_SQUOTE] = ACTIONS(2452), + [anon_sym_u_SQUOTE] = ACTIONS(2452), + [anon_sym_U_SQUOTE] = ACTIONS(2452), + [anon_sym_u8_SQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_L_DQUOTE] = ACTIONS(2452), + [anon_sym_u_DQUOTE] = ACTIONS(2452), + [anon_sym_U_DQUOTE] = ACTIONS(2452), + [anon_sym_u8_DQUOTE] = ACTIONS(2452), + [anon_sym_DQUOTE] = ACTIONS(2452), + [sym_true] = ACTIONS(2450), + [sym_false] = ACTIONS(2450), + [anon_sym_NULL] = ACTIONS(2450), + [anon_sym_nullptr] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2450), + [anon_sym_decltype] = ACTIONS(2450), + [anon_sym_explicit] = ACTIONS(2450), + [anon_sym_typename] = ACTIONS(2450), + [anon_sym_template] = ACTIONS(2450), + [anon_sym_operator] = ACTIONS(2450), + [anon_sym_try] = ACTIONS(2450), + [anon_sym_delete] = ACTIONS(2450), + [anon_sym_throw] = ACTIONS(2450), + [anon_sym_namespace] = ACTIONS(2450), + [anon_sym_using] = ACTIONS(2450), + [anon_sym_static_assert] = ACTIONS(2450), + [anon_sym_concept] = ACTIONS(2450), + [anon_sym_co_return] = ACTIONS(2450), + [anon_sym_co_yield] = ACTIONS(2450), + [anon_sym_R_DQUOTE] = ACTIONS(2452), + [anon_sym_LR_DQUOTE] = ACTIONS(2452), + [anon_sym_uR_DQUOTE] = ACTIONS(2452), + [anon_sym_UR_DQUOTE] = ACTIONS(2452), + [anon_sym_u8R_DQUOTE] = ACTIONS(2452), + [anon_sym_co_await] = ACTIONS(2450), + [anon_sym_new] = ACTIONS(2450), + [anon_sym_requires] = ACTIONS(2450), + [sym_this] = ACTIONS(2450), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2450), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_FORWARD] = ACTIONS(2450), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2450), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2450), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2450), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_PS_GET] = ACTIONS(2450), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2450), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2450), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2450), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2450), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2450), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2450), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2450), + [anon_sym_MOZ_COLD] = ACTIONS(2450), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2450), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2450), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2450), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2450), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2450), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2450), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2450), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2450), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2450), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2450), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2450), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2450), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2450), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_NONNULL] = ACTIONS(2450), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2450), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2450), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2450), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2450), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2450), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2450), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2450), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2450), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2450), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2450), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2450), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2450), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2450), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2450), + [anon_sym_MOZ_RAII] = ACTIONS(2450), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2450), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2450), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2450), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2450), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2450), + }, + [STATE(437)] = { + [sym_identifier] = ACTIONS(2178), + [aux_sym_preproc_include_token1] = ACTIONS(2178), + [aux_sym_preproc_def_token1] = ACTIONS(2178), + [aux_sym_preproc_if_token1] = ACTIONS(2178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), + [sym_preproc_directive] = ACTIONS(2178), + [anon_sym_LPAREN2] = ACTIONS(2180), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_TILDE] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(2180), + [anon_sym_AMP_AMP] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2180), + [anon_sym___extension__] = ACTIONS(2178), + [anon_sym_typedef] = ACTIONS(2178), + [anon_sym_virtual] = ACTIONS(2178), + [anon_sym_extern] = ACTIONS(2178), + [anon_sym___attribute__] = ACTIONS(2178), + [anon_sym___attribute] = ACTIONS(2178), + [anon_sym_COLON_COLON] = ACTIONS(2180), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2180), + [anon_sym___declspec] = ACTIONS(2178), + [anon_sym___based] = ACTIONS(2178), + [anon_sym___cdecl] = ACTIONS(2178), + [anon_sym___clrcall] = ACTIONS(2178), + [anon_sym___stdcall] = ACTIONS(2178), + [anon_sym___fastcall] = ACTIONS(2178), + [anon_sym___thiscall] = ACTIONS(2178), + [anon_sym___vectorcall] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2180), + [anon_sym_signed] = ACTIONS(2178), + [anon_sym_unsigned] = ACTIONS(2178), + [anon_sym_long] = ACTIONS(2178), + [anon_sym_short] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_register] = ACTIONS(2178), + [anon_sym_inline] = ACTIONS(2178), + [anon_sym___inline] = ACTIONS(2178), + [anon_sym___inline__] = ACTIONS(2178), + [anon_sym___forceinline] = ACTIONS(2178), + [anon_sym_thread_local] = ACTIONS(2178), + [anon_sym___thread] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_constexpr] = ACTIONS(2178), + [anon_sym_volatile] = ACTIONS(2178), + [anon_sym_restrict] = ACTIONS(2178), + [anon_sym___restrict__] = ACTIONS(2178), + [anon_sym__Atomic] = ACTIONS(2178), + [anon_sym__Noreturn] = ACTIONS(2178), + [anon_sym_noreturn] = ACTIONS(2178), + [anon_sym__Nonnull] = ACTIONS(2178), + [anon_sym_mutable] = ACTIONS(2178), + [anon_sym_constinit] = ACTIONS(2178), + [anon_sym_consteval] = ACTIONS(2178), + [anon_sym_alignas] = ACTIONS(2178), + [anon_sym__Alignas] = ACTIONS(2178), + [sym_primitive_type] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_struct] = ACTIONS(2178), + [anon_sym_union] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_case] = ACTIONS(2178), + [anon_sym_default] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_goto] = ACTIONS(2178), + [anon_sym___try] = ACTIONS(2178), + [anon_sym___leave] = ACTIONS(2178), + [anon_sym_not] = ACTIONS(2178), + [anon_sym_compl] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(2178), + [anon_sym___alignof__] = ACTIONS(2178), + [anon_sym___alignof] = ACTIONS(2178), + [anon_sym__alignof] = ACTIONS(2178), + [anon_sym_alignof] = ACTIONS(2178), + [anon_sym__Alignof] = ACTIONS(2178), + [anon_sym_offsetof] = ACTIONS(2178), + [anon_sym__Generic] = ACTIONS(2178), + [anon_sym_asm] = ACTIONS(2178), + [anon_sym___asm__] = ACTIONS(2178), + [anon_sym___asm] = ACTIONS(2178), + [sym_number_literal] = ACTIONS(2180), + [anon_sym_L_SQUOTE] = ACTIONS(2180), + [anon_sym_u_SQUOTE] = ACTIONS(2180), + [anon_sym_U_SQUOTE] = ACTIONS(2180), + [anon_sym_u8_SQUOTE] = ACTIONS(2180), + [anon_sym_SQUOTE] = ACTIONS(2180), + [anon_sym_L_DQUOTE] = ACTIONS(2180), + [anon_sym_u_DQUOTE] = ACTIONS(2180), + [anon_sym_U_DQUOTE] = ACTIONS(2180), + [anon_sym_u8_DQUOTE] = ACTIONS(2180), + [anon_sym_DQUOTE] = ACTIONS(2180), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [anon_sym_NULL] = ACTIONS(2178), + [anon_sym_nullptr] = ACTIONS(2178), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2178), + [anon_sym_decltype] = ACTIONS(2178), + [anon_sym_explicit] = ACTIONS(2178), + [anon_sym_typename] = ACTIONS(2178), + [anon_sym_template] = ACTIONS(2178), + [anon_sym_operator] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_static_assert] = ACTIONS(2178), + [anon_sym_concept] = ACTIONS(2178), + [anon_sym_co_return] = ACTIONS(2178), + [anon_sym_co_yield] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_requires] = ACTIONS(2178), + [sym_this] = ACTIONS(2178), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2178), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_FORWARD] = ACTIONS(2178), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2178), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2178), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2178), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2178), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_PS_GET] = ACTIONS(2178), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2178), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2178), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2178), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2178), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2178), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2178), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2178), + [anon_sym_MOZ_COLD] = ACTIONS(2178), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2178), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2178), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2178), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2178), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2178), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2178), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2178), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2178), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2178), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2178), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2178), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2178), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2178), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_NONNULL] = ACTIONS(2178), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2178), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2178), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2178), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2178), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2178), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2178), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2178), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2178), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2178), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2178), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2178), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2178), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2178), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2178), + [anon_sym_MOZ_RAII] = ACTIONS(2178), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2178), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2178), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2178), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2178), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2178), + }, + [STATE(438)] = { + [ts_builtin_sym_end] = ACTIONS(2323), + [sym_identifier] = ACTIONS(2321), + [aux_sym_preproc_include_token1] = ACTIONS(2321), + [aux_sym_preproc_def_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token1] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2321), + [sym_preproc_directive] = ACTIONS(2321), + [anon_sym_LPAREN2] = ACTIONS(2323), + [anon_sym_BANG] = ACTIONS(2323), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_AMP_AMP] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_typedef] = ACTIONS(2321), + [anon_sym_virtual] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym___attribute__] = ACTIONS(2321), + [anon_sym___attribute] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2323), + [anon_sym___declspec] = ACTIONS(2321), + [anon_sym___based] = ACTIONS(2321), + [anon_sym___cdecl] = ACTIONS(2321), + [anon_sym___clrcall] = ACTIONS(2321), + [anon_sym___stdcall] = ACTIONS(2321), + [anon_sym___fastcall] = ACTIONS(2321), + [anon_sym___thiscall] = ACTIONS(2321), + [anon_sym___vectorcall] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_signed] = ACTIONS(2321), + [anon_sym_unsigned] = ACTIONS(2321), + [anon_sym_long] = ACTIONS(2321), + [anon_sym_short] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_register] = ACTIONS(2321), + [anon_sym_inline] = ACTIONS(2321), + [anon_sym___inline] = ACTIONS(2321), + [anon_sym___inline__] = ACTIONS(2321), + [anon_sym___forceinline] = ACTIONS(2321), + [anon_sym_thread_local] = ACTIONS(2321), + [anon_sym___thread] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym__Nonnull] = ACTIONS(2321), + [anon_sym_mutable] = ACTIONS(2321), + [anon_sym_constinit] = ACTIONS(2321), + [anon_sym_consteval] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2321), + [anon_sym__Alignas] = ACTIONS(2321), + [sym_primitive_type] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_switch] = ACTIONS(2321), + [anon_sym_case] = ACTIONS(2321), + [anon_sym_default] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_do] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_goto] = ACTIONS(2321), + [anon_sym_not] = ACTIONS(2321), + [anon_sym_compl] = ACTIONS(2321), + [anon_sym_DASH_DASH] = ACTIONS(2323), + [anon_sym_PLUS_PLUS] = ACTIONS(2323), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2321), + [anon_sym___alignof] = ACTIONS(2321), + [anon_sym__alignof] = ACTIONS(2321), + [anon_sym_alignof] = ACTIONS(2321), + [anon_sym__Alignof] = ACTIONS(2321), + [anon_sym_offsetof] = ACTIONS(2321), + [anon_sym__Generic] = ACTIONS(2321), + [anon_sym_asm] = ACTIONS(2321), + [anon_sym___asm__] = ACTIONS(2321), + [anon_sym___asm] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2323), + [anon_sym_u_SQUOTE] = ACTIONS(2323), + [anon_sym_U_SQUOTE] = ACTIONS(2323), + [anon_sym_u8_SQUOTE] = ACTIONS(2323), + [anon_sym_SQUOTE] = ACTIONS(2323), + [anon_sym_L_DQUOTE] = ACTIONS(2323), + [anon_sym_u_DQUOTE] = ACTIONS(2323), + [anon_sym_U_DQUOTE] = ACTIONS(2323), + [anon_sym_u8_DQUOTE] = ACTIONS(2323), + [anon_sym_DQUOTE] = ACTIONS(2323), + [sym_true] = ACTIONS(2321), + [sym_false] = ACTIONS(2321), + [anon_sym_NULL] = ACTIONS(2321), + [anon_sym_nullptr] = ACTIONS(2321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2321), + [anon_sym_decltype] = ACTIONS(2321), + [anon_sym_explicit] = ACTIONS(2321), + [anon_sym_typename] = ACTIONS(2321), + [anon_sym_template] = ACTIONS(2321), + [anon_sym_operator] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [anon_sym_delete] = ACTIONS(2321), + [anon_sym_throw] = ACTIONS(2321), + [anon_sym_namespace] = ACTIONS(2321), + [anon_sym_using] = ACTIONS(2321), + [anon_sym_static_assert] = ACTIONS(2321), + [anon_sym_concept] = ACTIONS(2321), + [anon_sym_co_return] = ACTIONS(2321), + [anon_sym_co_yield] = ACTIONS(2321), + [anon_sym_R_DQUOTE] = ACTIONS(2323), + [anon_sym_LR_DQUOTE] = ACTIONS(2323), + [anon_sym_uR_DQUOTE] = ACTIONS(2323), + [anon_sym_UR_DQUOTE] = ACTIONS(2323), + [anon_sym_u8R_DQUOTE] = ACTIONS(2323), + [anon_sym_co_await] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2321), + [sym_this] = ACTIONS(2321), + [sym_alone_macro] = ACTIONS(2323), + [aux_sym_alone_macro_call_token1] = ACTIONS(2321), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_FORWARD] = ACTIONS(2321), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2321), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_PS_GET] = ACTIONS(2321), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2321), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2321), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2321), + [anon_sym_MOZ_COLD] = ACTIONS(2321), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2321), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2321), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2321), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2321), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2321), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2321), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2321), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2321), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2321), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2321), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2321), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2321), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_RAII] = ACTIONS(2321), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2321), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2321), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2321), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2321), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2321), + }, + [STATE(439)] = { + [ts_builtin_sym_end] = ACTIONS(2323), + [sym_identifier] = ACTIONS(2321), + [aux_sym_preproc_include_token1] = ACTIONS(2321), + [aux_sym_preproc_def_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token1] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2321), + [sym_preproc_directive] = ACTIONS(2321), + [anon_sym_LPAREN2] = ACTIONS(2323), + [anon_sym_BANG] = ACTIONS(2323), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_AMP_AMP] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_typedef] = ACTIONS(2321), + [anon_sym_virtual] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym___attribute__] = ACTIONS(2321), + [anon_sym___attribute] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2323), + [anon_sym___declspec] = ACTIONS(2321), + [anon_sym___based] = ACTIONS(2321), + [anon_sym___cdecl] = ACTIONS(2321), + [anon_sym___clrcall] = ACTIONS(2321), + [anon_sym___stdcall] = ACTIONS(2321), + [anon_sym___fastcall] = ACTIONS(2321), + [anon_sym___thiscall] = ACTIONS(2321), + [anon_sym___vectorcall] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_signed] = ACTIONS(2321), + [anon_sym_unsigned] = ACTIONS(2321), + [anon_sym_long] = ACTIONS(2321), + [anon_sym_short] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_register] = ACTIONS(2321), + [anon_sym_inline] = ACTIONS(2321), + [anon_sym___inline] = ACTIONS(2321), + [anon_sym___inline__] = ACTIONS(2321), + [anon_sym___forceinline] = ACTIONS(2321), + [anon_sym_thread_local] = ACTIONS(2321), + [anon_sym___thread] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym__Nonnull] = ACTIONS(2321), + [anon_sym_mutable] = ACTIONS(2321), + [anon_sym_constinit] = ACTIONS(2321), + [anon_sym_consteval] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2321), + [anon_sym__Alignas] = ACTIONS(2321), + [sym_primitive_type] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_switch] = ACTIONS(2321), + [anon_sym_case] = ACTIONS(2321), + [anon_sym_default] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_do] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_goto] = ACTIONS(2321), + [anon_sym_not] = ACTIONS(2321), + [anon_sym_compl] = ACTIONS(2321), + [anon_sym_DASH_DASH] = ACTIONS(2323), + [anon_sym_PLUS_PLUS] = ACTIONS(2323), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2321), + [anon_sym___alignof] = ACTIONS(2321), + [anon_sym__alignof] = ACTIONS(2321), + [anon_sym_alignof] = ACTIONS(2321), + [anon_sym__Alignof] = ACTIONS(2321), + [anon_sym_offsetof] = ACTIONS(2321), + [anon_sym__Generic] = ACTIONS(2321), + [anon_sym_asm] = ACTIONS(2321), + [anon_sym___asm__] = ACTIONS(2321), + [anon_sym___asm] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2323), + [anon_sym_u_SQUOTE] = ACTIONS(2323), + [anon_sym_U_SQUOTE] = ACTIONS(2323), + [anon_sym_u8_SQUOTE] = ACTIONS(2323), + [anon_sym_SQUOTE] = ACTIONS(2323), + [anon_sym_L_DQUOTE] = ACTIONS(2323), + [anon_sym_u_DQUOTE] = ACTIONS(2323), + [anon_sym_U_DQUOTE] = ACTIONS(2323), + [anon_sym_u8_DQUOTE] = ACTIONS(2323), + [anon_sym_DQUOTE] = ACTIONS(2323), + [sym_true] = ACTIONS(2321), + [sym_false] = ACTIONS(2321), + [anon_sym_NULL] = ACTIONS(2321), + [anon_sym_nullptr] = ACTIONS(2321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2321), + [anon_sym_decltype] = ACTIONS(2321), + [anon_sym_explicit] = ACTIONS(2321), + [anon_sym_typename] = ACTIONS(2321), + [anon_sym_template] = ACTIONS(2321), + [anon_sym_operator] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [anon_sym_delete] = ACTIONS(2321), + [anon_sym_throw] = ACTIONS(2321), + [anon_sym_namespace] = ACTIONS(2321), + [anon_sym_using] = ACTIONS(2321), + [anon_sym_static_assert] = ACTIONS(2321), + [anon_sym_concept] = ACTIONS(2321), + [anon_sym_co_return] = ACTIONS(2321), + [anon_sym_co_yield] = ACTIONS(2321), + [anon_sym_R_DQUOTE] = ACTIONS(2323), + [anon_sym_LR_DQUOTE] = ACTIONS(2323), + [anon_sym_uR_DQUOTE] = ACTIONS(2323), + [anon_sym_UR_DQUOTE] = ACTIONS(2323), + [anon_sym_u8R_DQUOTE] = ACTIONS(2323), + [anon_sym_co_await] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2321), + [sym_this] = ACTIONS(2321), + [sym_alone_macro] = ACTIONS(2323), + [aux_sym_alone_macro_call_token1] = ACTIONS(2321), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_FORWARD] = ACTIONS(2321), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2321), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_PS_GET] = ACTIONS(2321), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2321), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2321), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2321), + [anon_sym_MOZ_COLD] = ACTIONS(2321), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2321), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2321), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2321), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2321), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2321), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2321), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2321), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2321), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2321), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2321), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2321), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2321), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_RAII] = ACTIONS(2321), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2321), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2321), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2321), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2321), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2321), + }, + [STATE(440)] = { + [sym_identifier] = ACTIONS(2202), + [aux_sym_preproc_include_token1] = ACTIONS(2202), + [aux_sym_preproc_def_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token1] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2202), + [sym_preproc_directive] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym___extension__] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2202), + [anon_sym_virtual] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym___attribute__] = ACTIONS(2202), + [anon_sym___attribute] = ACTIONS(2202), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2204), + [anon_sym___declspec] = ACTIONS(2202), + [anon_sym___based] = ACTIONS(2202), + [anon_sym___cdecl] = ACTIONS(2202), + [anon_sym___clrcall] = ACTIONS(2202), + [anon_sym___stdcall] = ACTIONS(2202), + [anon_sym___fastcall] = ACTIONS(2202), + [anon_sym___thiscall] = ACTIONS(2202), + [anon_sym___vectorcall] = ACTIONS(2202), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_RBRACE] = ACTIONS(2204), + [anon_sym_signed] = ACTIONS(2202), + [anon_sym_unsigned] = ACTIONS(2202), + [anon_sym_long] = ACTIONS(2202), + [anon_sym_short] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_register] = ACTIONS(2202), + [anon_sym_inline] = ACTIONS(2202), + [anon_sym___inline] = ACTIONS(2202), + [anon_sym___inline__] = ACTIONS(2202), + [anon_sym___forceinline] = ACTIONS(2202), + [anon_sym_thread_local] = ACTIONS(2202), + [anon_sym___thread] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_constexpr] = ACTIONS(2202), + [anon_sym_volatile] = ACTIONS(2202), + [anon_sym_restrict] = ACTIONS(2202), + [anon_sym___restrict__] = ACTIONS(2202), + [anon_sym__Atomic] = ACTIONS(2202), + [anon_sym__Noreturn] = ACTIONS(2202), + [anon_sym_noreturn] = ACTIONS(2202), + [anon_sym__Nonnull] = ACTIONS(2202), + [anon_sym_mutable] = ACTIONS(2202), + [anon_sym_constinit] = ACTIONS(2202), + [anon_sym_consteval] = ACTIONS(2202), + [anon_sym_alignas] = ACTIONS(2202), + [anon_sym__Alignas] = ACTIONS(2202), + [sym_primitive_type] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_class] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [anon_sym_if] = ACTIONS(2202), + [anon_sym_switch] = ACTIONS(2202), + [anon_sym_case] = ACTIONS(2202), + [anon_sym_default] = ACTIONS(2202), + [anon_sym_while] = ACTIONS(2202), + [anon_sym_do] = ACTIONS(2202), + [anon_sym_for] = ACTIONS(2202), + [anon_sym_return] = ACTIONS(2202), + [anon_sym_break] = ACTIONS(2202), + [anon_sym_continue] = ACTIONS(2202), + [anon_sym_goto] = ACTIONS(2202), + [anon_sym___try] = ACTIONS(2202), + [anon_sym___leave] = ACTIONS(2202), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_compl] = ACTIONS(2202), + [anon_sym_DASH_DASH] = ACTIONS(2204), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_sizeof] = ACTIONS(2202), + [anon_sym___alignof__] = ACTIONS(2202), + [anon_sym___alignof] = ACTIONS(2202), + [anon_sym__alignof] = ACTIONS(2202), + [anon_sym_alignof] = ACTIONS(2202), + [anon_sym__Alignof] = ACTIONS(2202), + [anon_sym_offsetof] = ACTIONS(2202), + [anon_sym__Generic] = ACTIONS(2202), + [anon_sym_asm] = ACTIONS(2202), + [anon_sym___asm__] = ACTIONS(2202), + [anon_sym___asm] = ACTIONS(2202), + [sym_number_literal] = ACTIONS(2204), + [anon_sym_L_SQUOTE] = ACTIONS(2204), + [anon_sym_u_SQUOTE] = ACTIONS(2204), + [anon_sym_U_SQUOTE] = ACTIONS(2204), + [anon_sym_u8_SQUOTE] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_L_DQUOTE] = ACTIONS(2204), + [anon_sym_u_DQUOTE] = ACTIONS(2204), + [anon_sym_U_DQUOTE] = ACTIONS(2204), + [anon_sym_u8_DQUOTE] = ACTIONS(2204), + [anon_sym_DQUOTE] = ACTIONS(2204), + [sym_true] = ACTIONS(2202), + [sym_false] = ACTIONS(2202), + [anon_sym_NULL] = ACTIONS(2202), + [anon_sym_nullptr] = ACTIONS(2202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2202), + [anon_sym_decltype] = ACTIONS(2202), + [anon_sym_explicit] = ACTIONS(2202), + [anon_sym_typename] = ACTIONS(2202), + [anon_sym_template] = ACTIONS(2202), + [anon_sym_operator] = ACTIONS(2202), + [anon_sym_try] = ACTIONS(2202), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_throw] = ACTIONS(2202), + [anon_sym_namespace] = ACTIONS(2202), + [anon_sym_using] = ACTIONS(2202), + [anon_sym_static_assert] = ACTIONS(2202), + [anon_sym_concept] = ACTIONS(2202), + [anon_sym_co_return] = ACTIONS(2202), + [anon_sym_co_yield] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2204), + [anon_sym_LR_DQUOTE] = ACTIONS(2204), + [anon_sym_uR_DQUOTE] = ACTIONS(2204), + [anon_sym_UR_DQUOTE] = ACTIONS(2204), + [anon_sym_u8R_DQUOTE] = ACTIONS(2204), + [anon_sym_co_await] = ACTIONS(2202), + [anon_sym_new] = ACTIONS(2202), + [anon_sym_requires] = ACTIONS(2202), + [sym_this] = ACTIONS(2202), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_FORWARD] = ACTIONS(2202), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2202), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_PS_GET] = ACTIONS(2202), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2202), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2202), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2202), + [anon_sym_MOZ_COLD] = ACTIONS(2202), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2202), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2202), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2202), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2202), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2202), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2202), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2202), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2202), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2202), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2202), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2202), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2202), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_RAII] = ACTIONS(2202), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2202), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2202), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2202), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2202), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2202), + }, + [STATE(441)] = { + [ts_builtin_sym_end] = ACTIONS(2335), + [sym_identifier] = ACTIONS(2333), + [aux_sym_preproc_include_token1] = ACTIONS(2333), + [aux_sym_preproc_def_token1] = ACTIONS(2333), + [aux_sym_preproc_if_token1] = ACTIONS(2333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2333), + [sym_preproc_directive] = ACTIONS(2333), + [anon_sym_LPAREN2] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2333), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym___extension__] = ACTIONS(2333), + [anon_sym_typedef] = ACTIONS(2333), + [anon_sym_virtual] = ACTIONS(2333), + [anon_sym_extern] = ACTIONS(2333), + [anon_sym___attribute__] = ACTIONS(2333), + [anon_sym___attribute] = ACTIONS(2333), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), + [anon_sym___declspec] = ACTIONS(2333), + [anon_sym___based] = ACTIONS(2333), + [anon_sym___cdecl] = ACTIONS(2333), + [anon_sym___clrcall] = ACTIONS(2333), + [anon_sym___stdcall] = ACTIONS(2333), + [anon_sym___fastcall] = ACTIONS(2333), + [anon_sym___thiscall] = ACTIONS(2333), + [anon_sym___vectorcall] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_signed] = ACTIONS(2333), + [anon_sym_unsigned] = ACTIONS(2333), + [anon_sym_long] = ACTIONS(2333), + [anon_sym_short] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_register] = ACTIONS(2333), + [anon_sym_inline] = ACTIONS(2333), + [anon_sym___inline] = ACTIONS(2333), + [anon_sym___inline__] = ACTIONS(2333), + [anon_sym___forceinline] = ACTIONS(2333), + [anon_sym_thread_local] = ACTIONS(2333), + [anon_sym___thread] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [anon_sym_constexpr] = ACTIONS(2333), + [anon_sym_volatile] = ACTIONS(2333), + [anon_sym_restrict] = ACTIONS(2333), + [anon_sym___restrict__] = ACTIONS(2333), + [anon_sym__Atomic] = ACTIONS(2333), + [anon_sym__Noreturn] = ACTIONS(2333), + [anon_sym_noreturn] = ACTIONS(2333), + [anon_sym__Nonnull] = ACTIONS(2333), + [anon_sym_mutable] = ACTIONS(2333), + [anon_sym_constinit] = ACTIONS(2333), + [anon_sym_consteval] = ACTIONS(2333), + [anon_sym_alignas] = ACTIONS(2333), + [anon_sym__Alignas] = ACTIONS(2333), + [sym_primitive_type] = ACTIONS(2333), + [anon_sym_enum] = ACTIONS(2333), + [anon_sym_class] = ACTIONS(2333), + [anon_sym_struct] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_switch] = ACTIONS(2333), + [anon_sym_case] = ACTIONS(2333), + [anon_sym_default] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_break] = ACTIONS(2333), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_goto] = ACTIONS(2333), + [anon_sym_not] = ACTIONS(2333), + [anon_sym_compl] = ACTIONS(2333), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_sizeof] = ACTIONS(2333), + [anon_sym___alignof__] = ACTIONS(2333), + [anon_sym___alignof] = ACTIONS(2333), + [anon_sym__alignof] = ACTIONS(2333), + [anon_sym_alignof] = ACTIONS(2333), + [anon_sym__Alignof] = ACTIONS(2333), + [anon_sym_offsetof] = ACTIONS(2333), + [anon_sym__Generic] = ACTIONS(2333), + [anon_sym_asm] = ACTIONS(2333), + [anon_sym___asm__] = ACTIONS(2333), + [anon_sym___asm] = ACTIONS(2333), + [sym_number_literal] = ACTIONS(2335), + [anon_sym_L_SQUOTE] = ACTIONS(2335), + [anon_sym_u_SQUOTE] = ACTIONS(2335), + [anon_sym_U_SQUOTE] = ACTIONS(2335), + [anon_sym_u8_SQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_L_DQUOTE] = ACTIONS(2335), + [anon_sym_u_DQUOTE] = ACTIONS(2335), + [anon_sym_U_DQUOTE] = ACTIONS(2335), + [anon_sym_u8_DQUOTE] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym_true] = ACTIONS(2333), + [sym_false] = ACTIONS(2333), + [anon_sym_NULL] = ACTIONS(2333), + [anon_sym_nullptr] = ACTIONS(2333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2333), + [anon_sym_decltype] = ACTIONS(2333), + [anon_sym_explicit] = ACTIONS(2333), + [anon_sym_typename] = ACTIONS(2333), + [anon_sym_template] = ACTIONS(2333), + [anon_sym_operator] = ACTIONS(2333), + [anon_sym_try] = ACTIONS(2333), + [anon_sym_delete] = ACTIONS(2333), + [anon_sym_throw] = ACTIONS(2333), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_using] = ACTIONS(2333), + [anon_sym_static_assert] = ACTIONS(2333), + [anon_sym_concept] = ACTIONS(2333), + [anon_sym_co_return] = ACTIONS(2333), + [anon_sym_co_yield] = ACTIONS(2333), + [anon_sym_R_DQUOTE] = ACTIONS(2335), + [anon_sym_LR_DQUOTE] = ACTIONS(2335), + [anon_sym_uR_DQUOTE] = ACTIONS(2335), + [anon_sym_UR_DQUOTE] = ACTIONS(2335), + [anon_sym_u8R_DQUOTE] = ACTIONS(2335), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2333), + [anon_sym_requires] = ACTIONS(2333), + [sym_this] = ACTIONS(2333), + [sym_alone_macro] = ACTIONS(2335), + [aux_sym_alone_macro_call_token1] = ACTIONS(2333), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2333), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_FORWARD] = ACTIONS(2333), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2333), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2333), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2333), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2333), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_PS_GET] = ACTIONS(2333), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2333), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2333), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2333), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2333), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2333), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2333), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2333), + [anon_sym_MOZ_COLD] = ACTIONS(2333), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2333), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2333), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2333), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2333), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2333), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2333), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2333), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2333), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2333), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2333), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2333), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2333), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2333), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_NONNULL] = ACTIONS(2333), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2333), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2333), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2333), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2333), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2333), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2333), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2333), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2333), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2333), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2333), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2333), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2333), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2333), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2333), + [anon_sym_MOZ_RAII] = ACTIONS(2333), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2333), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2333), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2333), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2333), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2333), + }, + [STATE(442)] = { + [sym_identifier] = ACTIONS(2268), + [aux_sym_preproc_include_token1] = ACTIONS(2268), + [aux_sym_preproc_def_token1] = ACTIONS(2268), + [aux_sym_preproc_if_token1] = ACTIONS(2268), + [aux_sym_preproc_if_token2] = ACTIONS(2268), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2268), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2268), + [sym_preproc_directive] = ACTIONS(2268), + [anon_sym_LPAREN2] = ACTIONS(2270), + [anon_sym_BANG] = ACTIONS(2270), + [anon_sym_TILDE] = ACTIONS(2270), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_AMP_AMP] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym___extension__] = ACTIONS(2268), + [anon_sym_typedef] = ACTIONS(2268), + [anon_sym_virtual] = ACTIONS(2268), + [anon_sym_extern] = ACTIONS(2268), + [anon_sym___attribute__] = ACTIONS(2268), + [anon_sym___attribute] = ACTIONS(2268), + [anon_sym_COLON_COLON] = ACTIONS(2270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2270), + [anon_sym___declspec] = ACTIONS(2268), + [anon_sym___based] = ACTIONS(2268), + [anon_sym___cdecl] = ACTIONS(2268), + [anon_sym___clrcall] = ACTIONS(2268), + [anon_sym___stdcall] = ACTIONS(2268), + [anon_sym___fastcall] = ACTIONS(2268), + [anon_sym___thiscall] = ACTIONS(2268), + [anon_sym___vectorcall] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_signed] = ACTIONS(2268), + [anon_sym_unsigned] = ACTIONS(2268), + [anon_sym_long] = ACTIONS(2268), + [anon_sym_short] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_register] = ACTIONS(2268), + [anon_sym_inline] = ACTIONS(2268), + [anon_sym___inline] = ACTIONS(2268), + [anon_sym___inline__] = ACTIONS(2268), + [anon_sym___forceinline] = ACTIONS(2268), + [anon_sym_thread_local] = ACTIONS(2268), + [anon_sym___thread] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_constexpr] = ACTIONS(2268), + [anon_sym_volatile] = ACTIONS(2268), + [anon_sym_restrict] = ACTIONS(2268), + [anon_sym___restrict__] = ACTIONS(2268), + [anon_sym__Atomic] = ACTIONS(2268), + [anon_sym__Noreturn] = ACTIONS(2268), + [anon_sym_noreturn] = ACTIONS(2268), + [anon_sym__Nonnull] = ACTIONS(2268), + [anon_sym_mutable] = ACTIONS(2268), + [anon_sym_constinit] = ACTIONS(2268), + [anon_sym_consteval] = ACTIONS(2268), + [anon_sym_alignas] = ACTIONS(2268), + [anon_sym__Alignas] = ACTIONS(2268), + [sym_primitive_type] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(2268), + [anon_sym_union] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_case] = ACTIONS(2268), + [anon_sym_default] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_goto] = ACTIONS(2268), + [anon_sym___try] = ACTIONS(2268), + [anon_sym___leave] = ACTIONS(2268), + [anon_sym_not] = ACTIONS(2268), + [anon_sym_compl] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2270), + [anon_sym_PLUS_PLUS] = ACTIONS(2270), + [anon_sym_sizeof] = ACTIONS(2268), + [anon_sym___alignof__] = ACTIONS(2268), + [anon_sym___alignof] = ACTIONS(2268), + [anon_sym__alignof] = ACTIONS(2268), + [anon_sym_alignof] = ACTIONS(2268), + [anon_sym__Alignof] = ACTIONS(2268), + [anon_sym_offsetof] = ACTIONS(2268), + [anon_sym__Generic] = ACTIONS(2268), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2270), + [anon_sym_u_DQUOTE] = ACTIONS(2270), + [anon_sym_U_DQUOTE] = ACTIONS(2270), + [anon_sym_u8_DQUOTE] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2270), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [anon_sym_NULL] = ACTIONS(2268), + [anon_sym_nullptr] = ACTIONS(2268), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2268), + [anon_sym_decltype] = ACTIONS(2268), + [anon_sym_explicit] = ACTIONS(2268), + [anon_sym_typename] = ACTIONS(2268), + [anon_sym_template] = ACTIONS(2268), + [anon_sym_operator] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_using] = ACTIONS(2268), + [anon_sym_static_assert] = ACTIONS(2268), + [anon_sym_concept] = ACTIONS(2268), + [anon_sym_co_return] = ACTIONS(2268), + [anon_sym_co_yield] = ACTIONS(2268), + [anon_sym_R_DQUOTE] = ACTIONS(2270), + [anon_sym_LR_DQUOTE] = ACTIONS(2270), + [anon_sym_uR_DQUOTE] = ACTIONS(2270), + [anon_sym_UR_DQUOTE] = ACTIONS(2270), + [anon_sym_u8R_DQUOTE] = ACTIONS(2270), + [anon_sym_co_await] = ACTIONS(2268), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_requires] = ACTIONS(2268), + [sym_this] = ACTIONS(2268), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2268), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_FORWARD] = ACTIONS(2268), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2268), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2268), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2268), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2268), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_PS_GET] = ACTIONS(2268), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2268), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2268), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2268), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2268), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2268), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2268), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2268), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2268), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2268), + [anon_sym_MOZ_COLD] = ACTIONS(2268), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2268), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2268), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2268), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2268), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2268), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2268), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2268), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2268), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2268), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2268), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2268), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2268), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2268), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2268), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2268), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2268), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2268), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2268), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_NONNULL] = ACTIONS(2268), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2268), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2268), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2268), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2268), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2268), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_NORETURN] = ACTIONS(2268), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2268), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2268), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2268), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2268), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2268), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2268), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2268), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2268), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2268), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2268), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2268), + [anon_sym_MOZ_RAII] = ACTIONS(2268), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2268), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2268), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2268), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2268), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2268), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2268), + }, + [STATE(443)] = { + [ts_builtin_sym_end] = ACTIONS(2339), + [sym_identifier] = ACTIONS(2337), + [aux_sym_preproc_include_token1] = ACTIONS(2337), + [aux_sym_preproc_def_token1] = ACTIONS(2337), + [aux_sym_preproc_if_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), + [sym_preproc_directive] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2339), + [anon_sym_BANG] = ACTIONS(2339), + [anon_sym_TILDE] = ACTIONS(2339), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2339), + [anon_sym_AMP_AMP] = ACTIONS(2339), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym___extension__] = ACTIONS(2337), + [anon_sym_typedef] = ACTIONS(2337), + [anon_sym_virtual] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym___attribute__] = ACTIONS(2337), + [anon_sym___attribute] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2339), + [anon_sym___declspec] = ACTIONS(2337), + [anon_sym___based] = ACTIONS(2337), + [anon_sym___cdecl] = ACTIONS(2337), + [anon_sym___clrcall] = ACTIONS(2337), + [anon_sym___stdcall] = ACTIONS(2337), + [anon_sym___fastcall] = ACTIONS(2337), + [anon_sym___thiscall] = ACTIONS(2337), + [anon_sym___vectorcall] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2339), + [anon_sym_signed] = ACTIONS(2337), + [anon_sym_unsigned] = ACTIONS(2337), + [anon_sym_long] = ACTIONS(2337), + [anon_sym_short] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_inline] = ACTIONS(2337), + [anon_sym___inline] = ACTIONS(2337), + [anon_sym___inline__] = ACTIONS(2337), + [anon_sym___forceinline] = ACTIONS(2337), + [anon_sym_thread_local] = ACTIONS(2337), + [anon_sym___thread] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_constexpr] = ACTIONS(2337), + [anon_sym_volatile] = ACTIONS(2337), + [anon_sym_restrict] = ACTIONS(2337), + [anon_sym___restrict__] = ACTIONS(2337), + [anon_sym__Atomic] = ACTIONS(2337), + [anon_sym__Noreturn] = ACTIONS(2337), + [anon_sym_noreturn] = ACTIONS(2337), + [anon_sym__Nonnull] = ACTIONS(2337), + [anon_sym_mutable] = ACTIONS(2337), + [anon_sym_constinit] = ACTIONS(2337), + [anon_sym_consteval] = ACTIONS(2337), + [anon_sym_alignas] = ACTIONS(2337), + [anon_sym__Alignas] = ACTIONS(2337), + [sym_primitive_type] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_case] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_goto] = ACTIONS(2337), + [anon_sym_not] = ACTIONS(2337), + [anon_sym_compl] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2339), + [anon_sym_PLUS_PLUS] = ACTIONS(2339), + [anon_sym_sizeof] = ACTIONS(2337), + [anon_sym___alignof__] = ACTIONS(2337), + [anon_sym___alignof] = ACTIONS(2337), + [anon_sym__alignof] = ACTIONS(2337), + [anon_sym_alignof] = ACTIONS(2337), + [anon_sym__Alignof] = ACTIONS(2337), + [anon_sym_offsetof] = ACTIONS(2337), + [anon_sym__Generic] = ACTIONS(2337), + [anon_sym_asm] = ACTIONS(2337), + [anon_sym___asm__] = ACTIONS(2337), + [anon_sym___asm] = ACTIONS(2337), + [sym_number_literal] = ACTIONS(2339), + [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(2339), + [anon_sym_u_DQUOTE] = ACTIONS(2339), + [anon_sym_U_DQUOTE] = ACTIONS(2339), + [anon_sym_u8_DQUOTE] = ACTIONS(2339), + [anon_sym_DQUOTE] = ACTIONS(2339), + [sym_true] = ACTIONS(2337), + [sym_false] = ACTIONS(2337), + [anon_sym_NULL] = ACTIONS(2337), + [anon_sym_nullptr] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2337), + [anon_sym_decltype] = ACTIONS(2337), + [anon_sym_explicit] = ACTIONS(2337), + [anon_sym_typename] = ACTIONS(2337), + [anon_sym_template] = ACTIONS(2337), + [anon_sym_operator] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_delete] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [anon_sym_static_assert] = ACTIONS(2337), + [anon_sym_concept] = ACTIONS(2337), + [anon_sym_co_return] = ACTIONS(2337), + [anon_sym_co_yield] = ACTIONS(2337), + [anon_sym_R_DQUOTE] = ACTIONS(2339), + [anon_sym_LR_DQUOTE] = ACTIONS(2339), + [anon_sym_uR_DQUOTE] = ACTIONS(2339), + [anon_sym_UR_DQUOTE] = ACTIONS(2339), + [anon_sym_u8R_DQUOTE] = ACTIONS(2339), + [anon_sym_co_await] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_requires] = ACTIONS(2337), + [sym_this] = ACTIONS(2337), + [sym_alone_macro] = ACTIONS(2339), + [aux_sym_alone_macro_call_token1] = ACTIONS(2337), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2337), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_FORWARD] = ACTIONS(2337), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2337), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2337), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2337), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2337), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_PS_GET] = ACTIONS(2337), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2337), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2337), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2337), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2337), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2337), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2337), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2337), + [anon_sym_MOZ_COLD] = ACTIONS(2337), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2337), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2337), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2337), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2337), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2337), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2337), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2337), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2337), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2337), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2337), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2337), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2337), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2337), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_NONNULL] = ACTIONS(2337), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2337), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2337), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2337), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2337), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2337), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2337), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2337), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2337), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2337), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2337), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2337), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2337), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2337), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2337), + [anon_sym_MOZ_RAII] = ACTIONS(2337), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2337), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2337), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2337), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2337), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2337), + }, + [STATE(444)] = { + [ts_builtin_sym_end] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2341), + [aux_sym_preproc_include_token1] = ACTIONS(2341), + [aux_sym_preproc_def_token1] = ACTIONS(2341), + [aux_sym_preproc_if_token1] = ACTIONS(2341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2341), + [sym_preproc_directive] = ACTIONS(2341), + [anon_sym_LPAREN2] = ACTIONS(2343), + [anon_sym_BANG] = ACTIONS(2343), + [anon_sym_TILDE] = ACTIONS(2343), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_PLUS] = ACTIONS(2341), + [anon_sym_STAR] = ACTIONS(2343), + [anon_sym_AMP_AMP] = ACTIONS(2343), + [anon_sym_AMP] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2343), + [anon_sym___extension__] = ACTIONS(2341), + [anon_sym_typedef] = ACTIONS(2341), + [anon_sym_virtual] = ACTIONS(2341), + [anon_sym_extern] = ACTIONS(2341), + [anon_sym___attribute__] = ACTIONS(2341), + [anon_sym___attribute] = ACTIONS(2341), + [anon_sym_COLON_COLON] = ACTIONS(2343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2343), + [anon_sym___declspec] = ACTIONS(2341), + [anon_sym___based] = ACTIONS(2341), + [anon_sym___cdecl] = ACTIONS(2341), + [anon_sym___clrcall] = ACTIONS(2341), + [anon_sym___stdcall] = ACTIONS(2341), + [anon_sym___fastcall] = ACTIONS(2341), + [anon_sym___thiscall] = ACTIONS(2341), + [anon_sym___vectorcall] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_signed] = ACTIONS(2341), + [anon_sym_unsigned] = ACTIONS(2341), + [anon_sym_long] = ACTIONS(2341), + [anon_sym_short] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2341), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_register] = ACTIONS(2341), + [anon_sym_inline] = ACTIONS(2341), + [anon_sym___inline] = ACTIONS(2341), + [anon_sym___inline__] = ACTIONS(2341), + [anon_sym___forceinline] = ACTIONS(2341), + [anon_sym_thread_local] = ACTIONS(2341), + [anon_sym___thread] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_constexpr] = ACTIONS(2341), + [anon_sym_volatile] = ACTIONS(2341), + [anon_sym_restrict] = ACTIONS(2341), + [anon_sym___restrict__] = ACTIONS(2341), + [anon_sym__Atomic] = ACTIONS(2341), + [anon_sym__Noreturn] = ACTIONS(2341), + [anon_sym_noreturn] = ACTIONS(2341), + [anon_sym__Nonnull] = ACTIONS(2341), + [anon_sym_mutable] = ACTIONS(2341), + [anon_sym_constinit] = ACTIONS(2341), + [anon_sym_consteval] = ACTIONS(2341), + [anon_sym_alignas] = ACTIONS(2341), + [anon_sym__Alignas] = ACTIONS(2341), + [sym_primitive_type] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_class] = ACTIONS(2341), + [anon_sym_struct] = ACTIONS(2341), + [anon_sym_union] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_switch] = ACTIONS(2341), + [anon_sym_case] = ACTIONS(2341), + [anon_sym_default] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [anon_sym_do] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_goto] = ACTIONS(2341), + [anon_sym_not] = ACTIONS(2341), + [anon_sym_compl] = ACTIONS(2341), + [anon_sym_DASH_DASH] = ACTIONS(2343), + [anon_sym_PLUS_PLUS] = ACTIONS(2343), + [anon_sym_sizeof] = ACTIONS(2341), + [anon_sym___alignof__] = ACTIONS(2341), + [anon_sym___alignof] = ACTIONS(2341), + [anon_sym__alignof] = ACTIONS(2341), + [anon_sym_alignof] = ACTIONS(2341), + [anon_sym__Alignof] = ACTIONS(2341), + [anon_sym_offsetof] = ACTIONS(2341), + [anon_sym__Generic] = ACTIONS(2341), + [anon_sym_asm] = ACTIONS(2341), + [anon_sym___asm__] = ACTIONS(2341), + [anon_sym___asm] = ACTIONS(2341), + [sym_number_literal] = ACTIONS(2343), + [anon_sym_L_SQUOTE] = ACTIONS(2343), + [anon_sym_u_SQUOTE] = ACTIONS(2343), + [anon_sym_U_SQUOTE] = ACTIONS(2343), + [anon_sym_u8_SQUOTE] = ACTIONS(2343), + [anon_sym_SQUOTE] = ACTIONS(2343), + [anon_sym_L_DQUOTE] = ACTIONS(2343), + [anon_sym_u_DQUOTE] = ACTIONS(2343), + [anon_sym_U_DQUOTE] = ACTIONS(2343), + [anon_sym_u8_DQUOTE] = ACTIONS(2343), + [anon_sym_DQUOTE] = ACTIONS(2343), + [sym_true] = ACTIONS(2341), + [sym_false] = ACTIONS(2341), + [anon_sym_NULL] = ACTIONS(2341), + [anon_sym_nullptr] = ACTIONS(2341), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2341), + [anon_sym_decltype] = ACTIONS(2341), + [anon_sym_explicit] = ACTIONS(2341), + [anon_sym_typename] = ACTIONS(2341), + [anon_sym_template] = ACTIONS(2341), + [anon_sym_operator] = ACTIONS(2341), + [anon_sym_try] = ACTIONS(2341), + [anon_sym_delete] = ACTIONS(2341), + [anon_sym_throw] = ACTIONS(2341), + [anon_sym_namespace] = ACTIONS(2341), + [anon_sym_using] = ACTIONS(2341), + [anon_sym_static_assert] = ACTIONS(2341), + [anon_sym_concept] = ACTIONS(2341), + [anon_sym_co_return] = ACTIONS(2341), + [anon_sym_co_yield] = ACTIONS(2341), + [anon_sym_R_DQUOTE] = ACTIONS(2343), + [anon_sym_LR_DQUOTE] = ACTIONS(2343), + [anon_sym_uR_DQUOTE] = ACTIONS(2343), + [anon_sym_UR_DQUOTE] = ACTIONS(2343), + [anon_sym_u8R_DQUOTE] = ACTIONS(2343), + [anon_sym_co_await] = ACTIONS(2341), + [anon_sym_new] = ACTIONS(2341), + [anon_sym_requires] = ACTIONS(2341), + [sym_this] = ACTIONS(2341), + [sym_alone_macro] = ACTIONS(2343), + [aux_sym_alone_macro_call_token1] = ACTIONS(2341), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2341), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_FORWARD] = ACTIONS(2341), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2341), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2341), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2341), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2341), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_PS_GET] = ACTIONS(2341), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2341), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2341), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2341), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2341), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2341), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2341), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2341), + [anon_sym_MOZ_COLD] = ACTIONS(2341), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2341), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2341), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2341), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2341), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2341), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2341), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2341), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2341), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2341), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2341), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2341), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2341), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2341), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_NONNULL] = ACTIONS(2341), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2341), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2341), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2341), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2341), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2341), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2341), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2341), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2341), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2341), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2341), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2341), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2341), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2341), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2341), + [anon_sym_MOZ_RAII] = ACTIONS(2341), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2341), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2341), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2341), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2341), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2341), + }, + [STATE(445)] = { + [sym_identifier] = ACTIONS(2283), + [aux_sym_preproc_include_token1] = ACTIONS(2283), + [aux_sym_preproc_def_token1] = ACTIONS(2283), + [aux_sym_preproc_if_token1] = ACTIONS(2283), + [aux_sym_preproc_if_token2] = ACTIONS(2283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2283), + [sym_preproc_directive] = ACTIONS(2283), + [anon_sym_LPAREN2] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(2283), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_AMP_AMP] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2283), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym___extension__] = ACTIONS(2283), + [anon_sym_typedef] = ACTIONS(2283), + [anon_sym_virtual] = ACTIONS(2283), + [anon_sym_extern] = ACTIONS(2283), + [anon_sym___attribute__] = ACTIONS(2283), + [anon_sym___attribute] = ACTIONS(2283), + [anon_sym_COLON_COLON] = ACTIONS(2285), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2285), + [anon_sym___declspec] = ACTIONS(2283), + [anon_sym___based] = ACTIONS(2283), + [anon_sym___cdecl] = ACTIONS(2283), + [anon_sym___clrcall] = ACTIONS(2283), + [anon_sym___stdcall] = ACTIONS(2283), + [anon_sym___fastcall] = ACTIONS(2283), + [anon_sym___thiscall] = ACTIONS(2283), + [anon_sym___vectorcall] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_signed] = ACTIONS(2283), + [anon_sym_unsigned] = ACTIONS(2283), + [anon_sym_long] = ACTIONS(2283), + [anon_sym_short] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_static] = ACTIONS(2283), + [anon_sym_register] = ACTIONS(2283), + [anon_sym_inline] = ACTIONS(2283), + [anon_sym___inline] = ACTIONS(2283), + [anon_sym___inline__] = ACTIONS(2283), + [anon_sym___forceinline] = ACTIONS(2283), + [anon_sym_thread_local] = ACTIONS(2283), + [anon_sym___thread] = ACTIONS(2283), + [anon_sym_const] = ACTIONS(2283), + [anon_sym_constexpr] = ACTIONS(2283), + [anon_sym_volatile] = ACTIONS(2283), + [anon_sym_restrict] = ACTIONS(2283), + [anon_sym___restrict__] = ACTIONS(2283), + [anon_sym__Atomic] = ACTIONS(2283), + [anon_sym__Noreturn] = ACTIONS(2283), + [anon_sym_noreturn] = ACTIONS(2283), + [anon_sym__Nonnull] = ACTIONS(2283), + [anon_sym_mutable] = ACTIONS(2283), + [anon_sym_constinit] = ACTIONS(2283), + [anon_sym_consteval] = ACTIONS(2283), + [anon_sym_alignas] = ACTIONS(2283), + [anon_sym__Alignas] = ACTIONS(2283), + [sym_primitive_type] = ACTIONS(2283), + [anon_sym_enum] = ACTIONS(2283), + [anon_sym_class] = ACTIONS(2283), + [anon_sym_struct] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_if] = ACTIONS(2283), + [anon_sym_switch] = ACTIONS(2283), + [anon_sym_case] = ACTIONS(2283), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_while] = ACTIONS(2283), + [anon_sym_do] = ACTIONS(2283), + [anon_sym_for] = ACTIONS(2283), + [anon_sym_return] = ACTIONS(2283), + [anon_sym_break] = ACTIONS(2283), + [anon_sym_continue] = ACTIONS(2283), + [anon_sym_goto] = ACTIONS(2283), + [anon_sym___try] = ACTIONS(2283), + [anon_sym___leave] = ACTIONS(2283), + [anon_sym_not] = ACTIONS(2283), + [anon_sym_compl] = ACTIONS(2283), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_sizeof] = ACTIONS(2283), + [anon_sym___alignof__] = ACTIONS(2283), + [anon_sym___alignof] = ACTIONS(2283), + [anon_sym__alignof] = ACTIONS(2283), + [anon_sym_alignof] = ACTIONS(2283), + [anon_sym__Alignof] = ACTIONS(2283), + [anon_sym_offsetof] = ACTIONS(2283), + [anon_sym__Generic] = ACTIONS(2283), + [anon_sym_asm] = ACTIONS(2283), + [anon_sym___asm__] = ACTIONS(2283), + [anon_sym___asm] = ACTIONS(2283), + [sym_number_literal] = ACTIONS(2285), + [anon_sym_L_SQUOTE] = ACTIONS(2285), + [anon_sym_u_SQUOTE] = ACTIONS(2285), + [anon_sym_U_SQUOTE] = ACTIONS(2285), + [anon_sym_u8_SQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_L_DQUOTE] = ACTIONS(2285), + [anon_sym_u_DQUOTE] = ACTIONS(2285), + [anon_sym_U_DQUOTE] = ACTIONS(2285), + [anon_sym_u8_DQUOTE] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [sym_true] = ACTIONS(2283), + [sym_false] = ACTIONS(2283), + [anon_sym_NULL] = ACTIONS(2283), + [anon_sym_nullptr] = ACTIONS(2283), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2283), + [anon_sym_decltype] = ACTIONS(2283), + [anon_sym_explicit] = ACTIONS(2283), + [anon_sym_typename] = ACTIONS(2283), + [anon_sym_template] = ACTIONS(2283), + [anon_sym_operator] = ACTIONS(2283), + [anon_sym_try] = ACTIONS(2283), + [anon_sym_delete] = ACTIONS(2283), + [anon_sym_throw] = ACTIONS(2283), + [anon_sym_namespace] = ACTIONS(2283), + [anon_sym_using] = ACTIONS(2283), + [anon_sym_static_assert] = ACTIONS(2283), + [anon_sym_concept] = ACTIONS(2283), + [anon_sym_co_return] = ACTIONS(2283), + [anon_sym_co_yield] = ACTIONS(2283), + [anon_sym_R_DQUOTE] = ACTIONS(2285), + [anon_sym_LR_DQUOTE] = ACTIONS(2285), + [anon_sym_uR_DQUOTE] = ACTIONS(2285), + [anon_sym_UR_DQUOTE] = ACTIONS(2285), + [anon_sym_u8R_DQUOTE] = ACTIONS(2285), + [anon_sym_co_await] = ACTIONS(2283), + [anon_sym_new] = ACTIONS(2283), + [anon_sym_requires] = ACTIONS(2283), + [sym_this] = ACTIONS(2283), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2283), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_FORWARD] = ACTIONS(2283), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2283), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2283), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2283), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2283), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_PS_GET] = ACTIONS(2283), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2283), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2283), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2283), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2283), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2283), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2283), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2283), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2283), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2283), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2283), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2283), + [anon_sym_MOZ_COLD] = ACTIONS(2283), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2283), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2283), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2283), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2283), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2283), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2283), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2283), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2283), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2283), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2283), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2283), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2283), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2283), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2283), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2283), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2283), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2283), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2283), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2283), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2283), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_NONNULL] = ACTIONS(2283), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2283), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2283), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2283), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2283), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2283), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_NORETURN] = ACTIONS(2283), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2283), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2283), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2283), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2283), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2283), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2283), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2283), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2283), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2283), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2283), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2283), + [anon_sym_MOZ_RAII] = ACTIONS(2283), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2283), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2283), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2283), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2283), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2283), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2283), + }, + [STATE(446)] = { + [sym_identifier] = ACTIONS(2299), + [aux_sym_preproc_include_token1] = ACTIONS(2299), + [aux_sym_preproc_def_token1] = ACTIONS(2299), + [aux_sym_preproc_if_token1] = ACTIONS(2299), + [aux_sym_preproc_if_token2] = ACTIONS(2299), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2299), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2299), + [sym_preproc_directive] = ACTIONS(2299), + [anon_sym_LPAREN2] = ACTIONS(2301), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2301), + [anon_sym_AMP_AMP] = ACTIONS(2301), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym___extension__] = ACTIONS(2299), + [anon_sym_typedef] = ACTIONS(2299), + [anon_sym_virtual] = ACTIONS(2299), + [anon_sym_extern] = ACTIONS(2299), + [anon_sym___attribute__] = ACTIONS(2299), + [anon_sym___attribute] = ACTIONS(2299), + [anon_sym_COLON_COLON] = ACTIONS(2301), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2301), + [anon_sym___declspec] = ACTIONS(2299), + [anon_sym___based] = ACTIONS(2299), + [anon_sym___cdecl] = ACTIONS(2299), + [anon_sym___clrcall] = ACTIONS(2299), + [anon_sym___stdcall] = ACTIONS(2299), + [anon_sym___fastcall] = ACTIONS(2299), + [anon_sym___thiscall] = ACTIONS(2299), + [anon_sym___vectorcall] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2301), + [anon_sym_signed] = ACTIONS(2299), + [anon_sym_unsigned] = ACTIONS(2299), + [anon_sym_long] = ACTIONS(2299), + [anon_sym_short] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2299), + [anon_sym_register] = ACTIONS(2299), + [anon_sym_inline] = ACTIONS(2299), + [anon_sym___inline] = ACTIONS(2299), + [anon_sym___inline__] = ACTIONS(2299), + [anon_sym___forceinline] = ACTIONS(2299), + [anon_sym_thread_local] = ACTIONS(2299), + [anon_sym___thread] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [anon_sym_constexpr] = ACTIONS(2299), + [anon_sym_volatile] = ACTIONS(2299), + [anon_sym_restrict] = ACTIONS(2299), + [anon_sym___restrict__] = ACTIONS(2299), + [anon_sym__Atomic] = ACTIONS(2299), + [anon_sym__Noreturn] = ACTIONS(2299), + [anon_sym_noreturn] = ACTIONS(2299), + [anon_sym__Nonnull] = ACTIONS(2299), + [anon_sym_mutable] = ACTIONS(2299), + [anon_sym_constinit] = ACTIONS(2299), + [anon_sym_consteval] = ACTIONS(2299), + [anon_sym_alignas] = ACTIONS(2299), + [anon_sym__Alignas] = ACTIONS(2299), + [sym_primitive_type] = ACTIONS(2299), + [anon_sym_enum] = ACTIONS(2299), + [anon_sym_class] = ACTIONS(2299), + [anon_sym_struct] = ACTIONS(2299), + [anon_sym_union] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_switch] = ACTIONS(2299), + [anon_sym_case] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(2299), + [anon_sym_while] = ACTIONS(2299), + [anon_sym_do] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_goto] = ACTIONS(2299), + [anon_sym___try] = ACTIONS(2299), + [anon_sym___leave] = ACTIONS(2299), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_compl] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2301), + [anon_sym_PLUS_PLUS] = ACTIONS(2301), + [anon_sym_sizeof] = ACTIONS(2299), + [anon_sym___alignof__] = ACTIONS(2299), + [anon_sym___alignof] = ACTIONS(2299), + [anon_sym__alignof] = ACTIONS(2299), + [anon_sym_alignof] = ACTIONS(2299), + [anon_sym__Alignof] = ACTIONS(2299), + [anon_sym_offsetof] = ACTIONS(2299), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2299), + [anon_sym___asm__] = ACTIONS(2299), + [anon_sym___asm] = ACTIONS(2299), + [sym_number_literal] = ACTIONS(2301), + [anon_sym_L_SQUOTE] = ACTIONS(2301), + [anon_sym_u_SQUOTE] = ACTIONS(2301), + [anon_sym_U_SQUOTE] = ACTIONS(2301), + [anon_sym_u8_SQUOTE] = ACTIONS(2301), + [anon_sym_SQUOTE] = ACTIONS(2301), + [anon_sym_L_DQUOTE] = ACTIONS(2301), + [anon_sym_u_DQUOTE] = ACTIONS(2301), + [anon_sym_U_DQUOTE] = ACTIONS(2301), + [anon_sym_u8_DQUOTE] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(2301), + [sym_true] = ACTIONS(2299), + [sym_false] = ACTIONS(2299), + [anon_sym_NULL] = ACTIONS(2299), + [anon_sym_nullptr] = ACTIONS(2299), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2299), + [anon_sym_decltype] = ACTIONS(2299), + [anon_sym_explicit] = ACTIONS(2299), + [anon_sym_typename] = ACTIONS(2299), + [anon_sym_template] = ACTIONS(2299), + [anon_sym_operator] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(2299), + [anon_sym_delete] = ACTIONS(2299), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_namespace] = ACTIONS(2299), + [anon_sym_using] = ACTIONS(2299), + [anon_sym_static_assert] = ACTIONS(2299), + [anon_sym_concept] = ACTIONS(2299), + [anon_sym_co_return] = ACTIONS(2299), + [anon_sym_co_yield] = ACTIONS(2299), + [anon_sym_R_DQUOTE] = ACTIONS(2301), + [anon_sym_LR_DQUOTE] = ACTIONS(2301), + [anon_sym_uR_DQUOTE] = ACTIONS(2301), + [anon_sym_UR_DQUOTE] = ACTIONS(2301), + [anon_sym_u8R_DQUOTE] = ACTIONS(2301), + [anon_sym_co_await] = ACTIONS(2299), + [anon_sym_new] = ACTIONS(2299), + [anon_sym_requires] = ACTIONS(2299), + [sym_this] = ACTIONS(2299), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2299), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_FORWARD] = ACTIONS(2299), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2299), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2299), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2299), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2299), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_PS_GET] = ACTIONS(2299), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2299), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2299), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2299), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2299), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2299), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2299), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2299), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2299), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2299), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2299), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2299), + [anon_sym_MOZ_COLD] = ACTIONS(2299), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2299), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2299), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2299), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2299), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2299), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2299), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2299), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2299), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2299), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2299), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2299), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2299), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2299), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2299), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2299), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2299), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2299), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2299), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2299), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2299), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_NONNULL] = ACTIONS(2299), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2299), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2299), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2299), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2299), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2299), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_NORETURN] = ACTIONS(2299), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2299), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2299), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2299), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2299), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2299), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2299), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2299), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2299), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2299), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2299), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2299), + [anon_sym_MOZ_RAII] = ACTIONS(2299), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2299), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2299), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2299), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2299), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2299), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2299), + }, + [STATE(447)] = { + [sym_identifier] = ACTIONS(2303), + [aux_sym_preproc_include_token1] = ACTIONS(2303), + [aux_sym_preproc_def_token1] = ACTIONS(2303), + [aux_sym_preproc_if_token1] = ACTIONS(2303), + [aux_sym_preproc_if_token2] = ACTIONS(2303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2303), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2303), + [sym_preproc_directive] = ACTIONS(2303), + [anon_sym_LPAREN2] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2305), + [anon_sym_AMP_AMP] = ACTIONS(2305), + [anon_sym_AMP] = ACTIONS(2303), + [anon_sym_SEMI] = ACTIONS(2305), + [anon_sym___extension__] = ACTIONS(2303), + [anon_sym_typedef] = ACTIONS(2303), + [anon_sym_virtual] = ACTIONS(2303), + [anon_sym_extern] = ACTIONS(2303), + [anon_sym___attribute__] = ACTIONS(2303), + [anon_sym___attribute] = ACTIONS(2303), + [anon_sym_COLON_COLON] = ACTIONS(2305), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2305), + [anon_sym___declspec] = ACTIONS(2303), + [anon_sym___based] = ACTIONS(2303), + [anon_sym___cdecl] = ACTIONS(2303), + [anon_sym___clrcall] = ACTIONS(2303), + [anon_sym___stdcall] = ACTIONS(2303), + [anon_sym___fastcall] = ACTIONS(2303), + [anon_sym___thiscall] = ACTIONS(2303), + [anon_sym___vectorcall] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_signed] = ACTIONS(2303), + [anon_sym_unsigned] = ACTIONS(2303), + [anon_sym_long] = ACTIONS(2303), + [anon_sym_short] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_static] = ACTIONS(2303), + [anon_sym_register] = ACTIONS(2303), + [anon_sym_inline] = ACTIONS(2303), + [anon_sym___inline] = ACTIONS(2303), + [anon_sym___inline__] = ACTIONS(2303), + [anon_sym___forceinline] = ACTIONS(2303), + [anon_sym_thread_local] = ACTIONS(2303), + [anon_sym___thread] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [anon_sym_constexpr] = ACTIONS(2303), + [anon_sym_volatile] = ACTIONS(2303), + [anon_sym_restrict] = ACTIONS(2303), + [anon_sym___restrict__] = ACTIONS(2303), + [anon_sym__Atomic] = ACTIONS(2303), + [anon_sym__Noreturn] = ACTIONS(2303), + [anon_sym_noreturn] = ACTIONS(2303), + [anon_sym__Nonnull] = ACTIONS(2303), + [anon_sym_mutable] = ACTIONS(2303), + [anon_sym_constinit] = ACTIONS(2303), + [anon_sym_consteval] = ACTIONS(2303), + [anon_sym_alignas] = ACTIONS(2303), + [anon_sym__Alignas] = ACTIONS(2303), + [sym_primitive_type] = ACTIONS(2303), + [anon_sym_enum] = ACTIONS(2303), + [anon_sym_class] = ACTIONS(2303), + [anon_sym_struct] = ACTIONS(2303), + [anon_sym_union] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_switch] = ACTIONS(2303), + [anon_sym_case] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(2303), + [anon_sym_do] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_break] = ACTIONS(2303), + [anon_sym_continue] = ACTIONS(2303), + [anon_sym_goto] = ACTIONS(2303), + [anon_sym___try] = ACTIONS(2303), + [anon_sym___leave] = ACTIONS(2303), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2305), + [anon_sym_PLUS_PLUS] = ACTIONS(2305), + [anon_sym_sizeof] = ACTIONS(2303), + [anon_sym___alignof__] = ACTIONS(2303), + [anon_sym___alignof] = ACTIONS(2303), + [anon_sym__alignof] = ACTIONS(2303), + [anon_sym_alignof] = ACTIONS(2303), + [anon_sym__Alignof] = ACTIONS(2303), + [anon_sym_offsetof] = ACTIONS(2303), + [anon_sym__Generic] = ACTIONS(2303), + [anon_sym_asm] = ACTIONS(2303), + [anon_sym___asm__] = ACTIONS(2303), + [anon_sym___asm] = ACTIONS(2303), + [sym_number_literal] = ACTIONS(2305), + [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(2305), + [anon_sym_u_DQUOTE] = ACTIONS(2305), + [anon_sym_U_DQUOTE] = ACTIONS(2305), + [anon_sym_u8_DQUOTE] = ACTIONS(2305), + [anon_sym_DQUOTE] = ACTIONS(2305), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [anon_sym_NULL] = ACTIONS(2303), + [anon_sym_nullptr] = ACTIONS(2303), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2303), + [anon_sym_decltype] = ACTIONS(2303), + [anon_sym_explicit] = ACTIONS(2303), + [anon_sym_typename] = ACTIONS(2303), + [anon_sym_template] = ACTIONS(2303), + [anon_sym_operator] = ACTIONS(2303), + [anon_sym_try] = ACTIONS(2303), + [anon_sym_delete] = ACTIONS(2303), + [anon_sym_throw] = ACTIONS(2303), + [anon_sym_namespace] = ACTIONS(2303), + [anon_sym_using] = ACTIONS(2303), + [anon_sym_static_assert] = ACTIONS(2303), + [anon_sym_concept] = ACTIONS(2303), + [anon_sym_co_return] = ACTIONS(2303), + [anon_sym_co_yield] = ACTIONS(2303), + [anon_sym_R_DQUOTE] = ACTIONS(2305), + [anon_sym_LR_DQUOTE] = ACTIONS(2305), + [anon_sym_uR_DQUOTE] = ACTIONS(2305), + [anon_sym_UR_DQUOTE] = ACTIONS(2305), + [anon_sym_u8R_DQUOTE] = ACTIONS(2305), + [anon_sym_co_await] = ACTIONS(2303), + [anon_sym_new] = ACTIONS(2303), + [anon_sym_requires] = ACTIONS(2303), + [sym_this] = ACTIONS(2303), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2303), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_FORWARD] = ACTIONS(2303), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2303), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2303), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2303), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2303), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_PS_GET] = ACTIONS(2303), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2303), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2303), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2303), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2303), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2303), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2303), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2303), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2303), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2303), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2303), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2303), + [anon_sym_MOZ_COLD] = ACTIONS(2303), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2303), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2303), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2303), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2303), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2303), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2303), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2303), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2303), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2303), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2303), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2303), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2303), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2303), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2303), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2303), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2303), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2303), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2303), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2303), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2303), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_NONNULL] = ACTIONS(2303), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2303), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2303), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2303), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2303), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2303), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_NORETURN] = ACTIONS(2303), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2303), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2303), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2303), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2303), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2303), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2303), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2303), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2303), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2303), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2303), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2303), + [anon_sym_MOZ_RAII] = ACTIONS(2303), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2303), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2303), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2303), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2303), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2303), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2303), + }, + [STATE(448)] = { + [ts_builtin_sym_end] = ACTIONS(2347), + [sym_identifier] = ACTIONS(2345), + [aux_sym_preproc_include_token1] = ACTIONS(2345), + [aux_sym_preproc_def_token1] = ACTIONS(2345), + [aux_sym_preproc_if_token1] = ACTIONS(2345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2345), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2345), + [sym_preproc_directive] = ACTIONS(2345), + [anon_sym_LPAREN2] = ACTIONS(2347), + [anon_sym_BANG] = ACTIONS(2347), + [anon_sym_TILDE] = ACTIONS(2347), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2345), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_AMP_AMP] = ACTIONS(2347), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2347), + [anon_sym___extension__] = ACTIONS(2345), + [anon_sym_typedef] = ACTIONS(2345), + [anon_sym_virtual] = ACTIONS(2345), + [anon_sym_extern] = ACTIONS(2345), + [anon_sym___attribute__] = ACTIONS(2345), + [anon_sym___attribute] = ACTIONS(2345), + [anon_sym_COLON_COLON] = ACTIONS(2347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2347), + [anon_sym___declspec] = ACTIONS(2345), + [anon_sym___based] = ACTIONS(2345), + [anon_sym___cdecl] = ACTIONS(2345), + [anon_sym___clrcall] = ACTIONS(2345), + [anon_sym___stdcall] = ACTIONS(2345), + [anon_sym___fastcall] = ACTIONS(2345), + [anon_sym___thiscall] = ACTIONS(2345), + [anon_sym___vectorcall] = ACTIONS(2345), + [anon_sym_LBRACE] = ACTIONS(2347), + [anon_sym_signed] = ACTIONS(2345), + [anon_sym_unsigned] = ACTIONS(2345), + [anon_sym_long] = ACTIONS(2345), + [anon_sym_short] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(2345), + [anon_sym_static] = ACTIONS(2345), + [anon_sym_register] = ACTIONS(2345), + [anon_sym_inline] = ACTIONS(2345), + [anon_sym___inline] = ACTIONS(2345), + [anon_sym___inline__] = ACTIONS(2345), + [anon_sym___forceinline] = ACTIONS(2345), + [anon_sym_thread_local] = ACTIONS(2345), + [anon_sym___thread] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_constexpr] = ACTIONS(2345), + [anon_sym_volatile] = ACTIONS(2345), + [anon_sym_restrict] = ACTIONS(2345), + [anon_sym___restrict__] = ACTIONS(2345), + [anon_sym__Atomic] = ACTIONS(2345), + [anon_sym__Noreturn] = ACTIONS(2345), + [anon_sym_noreturn] = ACTIONS(2345), + [anon_sym__Nonnull] = ACTIONS(2345), + [anon_sym_mutable] = ACTIONS(2345), + [anon_sym_constinit] = ACTIONS(2345), + [anon_sym_consteval] = ACTIONS(2345), + [anon_sym_alignas] = ACTIONS(2345), + [anon_sym__Alignas] = ACTIONS(2345), + [sym_primitive_type] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_class] = ACTIONS(2345), + [anon_sym_struct] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_switch] = ACTIONS(2345), + [anon_sym_case] = ACTIONS(2345), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [anon_sym_do] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_not] = ACTIONS(2345), + [anon_sym_compl] = ACTIONS(2345), + [anon_sym_DASH_DASH] = ACTIONS(2347), + [anon_sym_PLUS_PLUS] = ACTIONS(2347), + [anon_sym_sizeof] = ACTIONS(2345), + [anon_sym___alignof__] = ACTIONS(2345), + [anon_sym___alignof] = ACTIONS(2345), + [anon_sym__alignof] = ACTIONS(2345), + [anon_sym_alignof] = ACTIONS(2345), + [anon_sym__Alignof] = ACTIONS(2345), + [anon_sym_offsetof] = ACTIONS(2345), + [anon_sym__Generic] = ACTIONS(2345), + [anon_sym_asm] = ACTIONS(2345), + [anon_sym___asm__] = ACTIONS(2345), + [anon_sym___asm] = ACTIONS(2345), + [sym_number_literal] = ACTIONS(2347), + [anon_sym_L_SQUOTE] = ACTIONS(2347), + [anon_sym_u_SQUOTE] = ACTIONS(2347), + [anon_sym_U_SQUOTE] = ACTIONS(2347), + [anon_sym_u8_SQUOTE] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2347), + [anon_sym_L_DQUOTE] = ACTIONS(2347), + [anon_sym_u_DQUOTE] = ACTIONS(2347), + [anon_sym_U_DQUOTE] = ACTIONS(2347), + [anon_sym_u8_DQUOTE] = ACTIONS(2347), + [anon_sym_DQUOTE] = ACTIONS(2347), + [sym_true] = ACTIONS(2345), + [sym_false] = ACTIONS(2345), + [anon_sym_NULL] = ACTIONS(2345), + [anon_sym_nullptr] = ACTIONS(2345), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2345), + [anon_sym_decltype] = ACTIONS(2345), + [anon_sym_explicit] = ACTIONS(2345), + [anon_sym_typename] = ACTIONS(2345), + [anon_sym_template] = ACTIONS(2345), + [anon_sym_operator] = ACTIONS(2345), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_delete] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2345), + [anon_sym_namespace] = ACTIONS(2345), + [anon_sym_using] = ACTIONS(2345), + [anon_sym_static_assert] = ACTIONS(2345), + [anon_sym_concept] = ACTIONS(2345), + [anon_sym_co_return] = ACTIONS(2345), + [anon_sym_co_yield] = ACTIONS(2345), + [anon_sym_R_DQUOTE] = ACTIONS(2347), + [anon_sym_LR_DQUOTE] = ACTIONS(2347), + [anon_sym_uR_DQUOTE] = ACTIONS(2347), + [anon_sym_UR_DQUOTE] = ACTIONS(2347), + [anon_sym_u8R_DQUOTE] = ACTIONS(2347), + [anon_sym_co_await] = ACTIONS(2345), + [anon_sym_new] = ACTIONS(2345), + [anon_sym_requires] = ACTIONS(2345), + [sym_this] = ACTIONS(2345), + [sym_alone_macro] = ACTIONS(2347), + [aux_sym_alone_macro_call_token1] = ACTIONS(2345), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2345), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_FORWARD] = ACTIONS(2345), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2345), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2345), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2345), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2345), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_PS_GET] = ACTIONS(2345), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2345), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2345), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2345), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2345), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2345), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2345), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2345), + [anon_sym_MOZ_COLD] = ACTIONS(2345), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2345), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2345), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2345), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2345), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2345), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2345), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2345), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2345), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2345), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2345), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2345), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2345), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2345), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_NONNULL] = ACTIONS(2345), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2345), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2345), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2345), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2345), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2345), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2345), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2345), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2345), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2345), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2345), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2345), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2345), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2345), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2345), + [anon_sym_MOZ_RAII] = ACTIONS(2345), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2345), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2345), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2345), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2345), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2345), + }, + [STATE(449)] = { + [ts_builtin_sym_end] = ACTIONS(2351), + [sym_identifier] = ACTIONS(2349), + [aux_sym_preproc_include_token1] = ACTIONS(2349), + [aux_sym_preproc_def_token1] = ACTIONS(2349), + [aux_sym_preproc_if_token1] = ACTIONS(2349), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2349), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2349), + [sym_preproc_directive] = ACTIONS(2349), + [anon_sym_LPAREN2] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(2351), + [anon_sym_TILDE] = ACTIONS(2351), + [anon_sym_DASH] = ACTIONS(2349), + [anon_sym_PLUS] = ACTIONS(2349), + [anon_sym_STAR] = ACTIONS(2351), + [anon_sym_AMP_AMP] = ACTIONS(2351), + [anon_sym_AMP] = ACTIONS(2349), + [anon_sym_SEMI] = ACTIONS(2351), + [anon_sym___extension__] = ACTIONS(2349), + [anon_sym_typedef] = ACTIONS(2349), + [anon_sym_virtual] = ACTIONS(2349), + [anon_sym_extern] = ACTIONS(2349), + [anon_sym___attribute__] = ACTIONS(2349), + [anon_sym___attribute] = ACTIONS(2349), + [anon_sym_COLON_COLON] = ACTIONS(2351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2351), + [anon_sym___declspec] = ACTIONS(2349), + [anon_sym___based] = ACTIONS(2349), + [anon_sym___cdecl] = ACTIONS(2349), + [anon_sym___clrcall] = ACTIONS(2349), + [anon_sym___stdcall] = ACTIONS(2349), + [anon_sym___fastcall] = ACTIONS(2349), + [anon_sym___thiscall] = ACTIONS(2349), + [anon_sym___vectorcall] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2351), + [anon_sym_signed] = ACTIONS(2349), + [anon_sym_unsigned] = ACTIONS(2349), + [anon_sym_long] = ACTIONS(2349), + [anon_sym_short] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_static] = ACTIONS(2349), + [anon_sym_register] = ACTIONS(2349), + [anon_sym_inline] = ACTIONS(2349), + [anon_sym___inline] = ACTIONS(2349), + [anon_sym___inline__] = ACTIONS(2349), + [anon_sym___forceinline] = ACTIONS(2349), + [anon_sym_thread_local] = ACTIONS(2349), + [anon_sym___thread] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [anon_sym_constexpr] = ACTIONS(2349), + [anon_sym_volatile] = ACTIONS(2349), + [anon_sym_restrict] = ACTIONS(2349), + [anon_sym___restrict__] = ACTIONS(2349), + [anon_sym__Atomic] = ACTIONS(2349), + [anon_sym__Noreturn] = ACTIONS(2349), + [anon_sym_noreturn] = ACTIONS(2349), + [anon_sym__Nonnull] = ACTIONS(2349), + [anon_sym_mutable] = ACTIONS(2349), + [anon_sym_constinit] = ACTIONS(2349), + [anon_sym_consteval] = ACTIONS(2349), + [anon_sym_alignas] = ACTIONS(2349), + [anon_sym__Alignas] = ACTIONS(2349), + [sym_primitive_type] = ACTIONS(2349), + [anon_sym_enum] = ACTIONS(2349), + [anon_sym_class] = ACTIONS(2349), + [anon_sym_struct] = ACTIONS(2349), + [anon_sym_union] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2349), + [anon_sym_switch] = ACTIONS(2349), + [anon_sym_case] = ACTIONS(2349), + [anon_sym_default] = ACTIONS(2349), + [anon_sym_while] = ACTIONS(2349), + [anon_sym_do] = ACTIONS(2349), + [anon_sym_for] = ACTIONS(2349), + [anon_sym_return] = ACTIONS(2349), + [anon_sym_break] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2349), + [anon_sym_goto] = ACTIONS(2349), + [anon_sym_not] = ACTIONS(2349), + [anon_sym_compl] = ACTIONS(2349), + [anon_sym_DASH_DASH] = ACTIONS(2351), + [anon_sym_PLUS_PLUS] = ACTIONS(2351), + [anon_sym_sizeof] = ACTIONS(2349), + [anon_sym___alignof__] = ACTIONS(2349), + [anon_sym___alignof] = ACTIONS(2349), + [anon_sym__alignof] = ACTIONS(2349), + [anon_sym_alignof] = ACTIONS(2349), + [anon_sym__Alignof] = ACTIONS(2349), + [anon_sym_offsetof] = ACTIONS(2349), + [anon_sym__Generic] = ACTIONS(2349), + [anon_sym_asm] = ACTIONS(2349), + [anon_sym___asm__] = ACTIONS(2349), + [anon_sym___asm] = ACTIONS(2349), + [sym_number_literal] = ACTIONS(2351), + [anon_sym_L_SQUOTE] = ACTIONS(2351), + [anon_sym_u_SQUOTE] = ACTIONS(2351), + [anon_sym_U_SQUOTE] = ACTIONS(2351), + [anon_sym_u8_SQUOTE] = ACTIONS(2351), + [anon_sym_SQUOTE] = ACTIONS(2351), + [anon_sym_L_DQUOTE] = ACTIONS(2351), + [anon_sym_u_DQUOTE] = ACTIONS(2351), + [anon_sym_U_DQUOTE] = ACTIONS(2351), + [anon_sym_u8_DQUOTE] = ACTIONS(2351), + [anon_sym_DQUOTE] = ACTIONS(2351), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [anon_sym_NULL] = ACTIONS(2349), + [anon_sym_nullptr] = ACTIONS(2349), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2349), + [anon_sym_decltype] = ACTIONS(2349), + [anon_sym_explicit] = ACTIONS(2349), + [anon_sym_typename] = ACTIONS(2349), + [anon_sym_template] = ACTIONS(2349), + [anon_sym_operator] = ACTIONS(2349), + [anon_sym_try] = ACTIONS(2349), + [anon_sym_delete] = ACTIONS(2349), + [anon_sym_throw] = ACTIONS(2349), + [anon_sym_namespace] = ACTIONS(2349), + [anon_sym_using] = ACTIONS(2349), + [anon_sym_static_assert] = ACTIONS(2349), + [anon_sym_concept] = ACTIONS(2349), + [anon_sym_co_return] = ACTIONS(2349), + [anon_sym_co_yield] = ACTIONS(2349), + [anon_sym_R_DQUOTE] = ACTIONS(2351), + [anon_sym_LR_DQUOTE] = ACTIONS(2351), + [anon_sym_uR_DQUOTE] = ACTIONS(2351), + [anon_sym_UR_DQUOTE] = ACTIONS(2351), + [anon_sym_u8R_DQUOTE] = ACTIONS(2351), + [anon_sym_co_await] = ACTIONS(2349), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2349), + [sym_this] = ACTIONS(2349), + [sym_alone_macro] = ACTIONS(2351), + [aux_sym_alone_macro_call_token1] = ACTIONS(2349), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2349), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_FORWARD] = ACTIONS(2349), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2349), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2349), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2349), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2349), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_PS_GET] = ACTIONS(2349), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2349), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2349), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2349), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2349), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2349), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2349), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2349), + [anon_sym_MOZ_COLD] = ACTIONS(2349), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2349), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2349), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2349), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2349), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2349), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2349), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2349), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2349), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2349), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2349), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2349), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2349), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2349), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_NONNULL] = ACTIONS(2349), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2349), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2349), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2349), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2349), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2349), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2349), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2349), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2349), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2349), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2349), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2349), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2349), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2349), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2349), + [anon_sym_MOZ_RAII] = ACTIONS(2349), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2349), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2349), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2349), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2349), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2349), + }, + [STATE(450)] = { + [sym_identifier] = ACTIONS(2321), + [aux_sym_preproc_include_token1] = ACTIONS(2321), + [aux_sym_preproc_def_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token2] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2321), + [sym_preproc_directive] = ACTIONS(2321), + [anon_sym_LPAREN2] = ACTIONS(2323), + [anon_sym_BANG] = ACTIONS(2323), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_AMP_AMP] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_typedef] = ACTIONS(2321), + [anon_sym_virtual] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym___attribute__] = ACTIONS(2321), + [anon_sym___attribute] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2323), + [anon_sym___declspec] = ACTIONS(2321), + [anon_sym___based] = ACTIONS(2321), + [anon_sym___cdecl] = ACTIONS(2321), + [anon_sym___clrcall] = ACTIONS(2321), + [anon_sym___stdcall] = ACTIONS(2321), + [anon_sym___fastcall] = ACTIONS(2321), + [anon_sym___thiscall] = ACTIONS(2321), + [anon_sym___vectorcall] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_signed] = ACTIONS(2321), + [anon_sym_unsigned] = ACTIONS(2321), + [anon_sym_long] = ACTIONS(2321), + [anon_sym_short] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_register] = ACTIONS(2321), + [anon_sym_inline] = ACTIONS(2321), + [anon_sym___inline] = ACTIONS(2321), + [anon_sym___inline__] = ACTIONS(2321), + [anon_sym___forceinline] = ACTIONS(2321), + [anon_sym_thread_local] = ACTIONS(2321), + [anon_sym___thread] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym__Nonnull] = ACTIONS(2321), + [anon_sym_mutable] = ACTIONS(2321), + [anon_sym_constinit] = ACTIONS(2321), + [anon_sym_consteval] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2321), + [anon_sym__Alignas] = ACTIONS(2321), + [sym_primitive_type] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_switch] = ACTIONS(2321), + [anon_sym_case] = ACTIONS(2321), + [anon_sym_default] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_do] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_goto] = ACTIONS(2321), + [anon_sym___try] = ACTIONS(2321), + [anon_sym___leave] = ACTIONS(2321), + [anon_sym_not] = ACTIONS(2321), + [anon_sym_compl] = ACTIONS(2321), + [anon_sym_DASH_DASH] = ACTIONS(2323), + [anon_sym_PLUS_PLUS] = ACTIONS(2323), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2321), + [anon_sym___alignof] = ACTIONS(2321), + [anon_sym__alignof] = ACTIONS(2321), + [anon_sym_alignof] = ACTIONS(2321), + [anon_sym__Alignof] = ACTIONS(2321), + [anon_sym_offsetof] = ACTIONS(2321), + [anon_sym__Generic] = ACTIONS(2321), + [anon_sym_asm] = ACTIONS(2321), + [anon_sym___asm__] = ACTIONS(2321), + [anon_sym___asm] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2323), + [anon_sym_u_SQUOTE] = ACTIONS(2323), + [anon_sym_U_SQUOTE] = ACTIONS(2323), + [anon_sym_u8_SQUOTE] = ACTIONS(2323), + [anon_sym_SQUOTE] = ACTIONS(2323), + [anon_sym_L_DQUOTE] = ACTIONS(2323), + [anon_sym_u_DQUOTE] = ACTIONS(2323), + [anon_sym_U_DQUOTE] = ACTIONS(2323), + [anon_sym_u8_DQUOTE] = ACTIONS(2323), + [anon_sym_DQUOTE] = ACTIONS(2323), + [sym_true] = ACTIONS(2321), + [sym_false] = ACTIONS(2321), + [anon_sym_NULL] = ACTIONS(2321), + [anon_sym_nullptr] = ACTIONS(2321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2321), + [anon_sym_decltype] = ACTIONS(2321), + [anon_sym_explicit] = ACTIONS(2321), + [anon_sym_typename] = ACTIONS(2321), + [anon_sym_template] = ACTIONS(2321), + [anon_sym_operator] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [anon_sym_delete] = ACTIONS(2321), + [anon_sym_throw] = ACTIONS(2321), + [anon_sym_namespace] = ACTIONS(2321), + [anon_sym_using] = ACTIONS(2321), + [anon_sym_static_assert] = ACTIONS(2321), + [anon_sym_concept] = ACTIONS(2321), + [anon_sym_co_return] = ACTIONS(2321), + [anon_sym_co_yield] = ACTIONS(2321), + [anon_sym_R_DQUOTE] = ACTIONS(2323), + [anon_sym_LR_DQUOTE] = ACTIONS(2323), + [anon_sym_uR_DQUOTE] = ACTIONS(2323), + [anon_sym_UR_DQUOTE] = ACTIONS(2323), + [anon_sym_u8R_DQUOTE] = ACTIONS(2323), + [anon_sym_co_await] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2321), + [sym_this] = ACTIONS(2321), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_FORWARD] = ACTIONS(2321), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2321), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_PS_GET] = ACTIONS(2321), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2321), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2321), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2321), + [anon_sym_MOZ_COLD] = ACTIONS(2321), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2321), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2321), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2321), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2321), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2321), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2321), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2321), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2321), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2321), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2321), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2321), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2321), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_RAII] = ACTIONS(2321), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2321), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2321), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2321), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2321), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2321), + }, + [STATE(451)] = { + [sym_identifier] = ACTIONS(2321), + [aux_sym_preproc_include_token1] = ACTIONS(2321), + [aux_sym_preproc_def_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token2] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2321), + [sym_preproc_directive] = ACTIONS(2321), + [anon_sym_LPAREN2] = ACTIONS(2323), + [anon_sym_BANG] = ACTIONS(2323), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_AMP_AMP] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_typedef] = ACTIONS(2321), + [anon_sym_virtual] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym___attribute__] = ACTIONS(2321), + [anon_sym___attribute] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2323), + [anon_sym___declspec] = ACTIONS(2321), + [anon_sym___based] = ACTIONS(2321), + [anon_sym___cdecl] = ACTIONS(2321), + [anon_sym___clrcall] = ACTIONS(2321), + [anon_sym___stdcall] = ACTIONS(2321), + [anon_sym___fastcall] = ACTIONS(2321), + [anon_sym___thiscall] = ACTIONS(2321), + [anon_sym___vectorcall] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_signed] = ACTIONS(2321), + [anon_sym_unsigned] = ACTIONS(2321), + [anon_sym_long] = ACTIONS(2321), + [anon_sym_short] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_register] = ACTIONS(2321), + [anon_sym_inline] = ACTIONS(2321), + [anon_sym___inline] = ACTIONS(2321), + [anon_sym___inline__] = ACTIONS(2321), + [anon_sym___forceinline] = ACTIONS(2321), + [anon_sym_thread_local] = ACTIONS(2321), + [anon_sym___thread] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym__Nonnull] = ACTIONS(2321), + [anon_sym_mutable] = ACTIONS(2321), + [anon_sym_constinit] = ACTIONS(2321), + [anon_sym_consteval] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2321), + [anon_sym__Alignas] = ACTIONS(2321), + [sym_primitive_type] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_switch] = ACTIONS(2321), + [anon_sym_case] = ACTIONS(2321), + [anon_sym_default] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_do] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_goto] = ACTIONS(2321), + [anon_sym___try] = ACTIONS(2321), + [anon_sym___leave] = ACTIONS(2321), + [anon_sym_not] = ACTIONS(2321), + [anon_sym_compl] = ACTIONS(2321), + [anon_sym_DASH_DASH] = ACTIONS(2323), + [anon_sym_PLUS_PLUS] = ACTIONS(2323), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2321), + [anon_sym___alignof] = ACTIONS(2321), + [anon_sym__alignof] = ACTIONS(2321), + [anon_sym_alignof] = ACTIONS(2321), + [anon_sym__Alignof] = ACTIONS(2321), + [anon_sym_offsetof] = ACTIONS(2321), + [anon_sym__Generic] = ACTIONS(2321), + [anon_sym_asm] = ACTIONS(2321), + [anon_sym___asm__] = ACTIONS(2321), + [anon_sym___asm] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2323), + [anon_sym_u_SQUOTE] = ACTIONS(2323), + [anon_sym_U_SQUOTE] = ACTIONS(2323), + [anon_sym_u8_SQUOTE] = ACTIONS(2323), + [anon_sym_SQUOTE] = ACTIONS(2323), + [anon_sym_L_DQUOTE] = ACTIONS(2323), + [anon_sym_u_DQUOTE] = ACTIONS(2323), + [anon_sym_U_DQUOTE] = ACTIONS(2323), + [anon_sym_u8_DQUOTE] = ACTIONS(2323), + [anon_sym_DQUOTE] = ACTIONS(2323), + [sym_true] = ACTIONS(2321), + [sym_false] = ACTIONS(2321), + [anon_sym_NULL] = ACTIONS(2321), + [anon_sym_nullptr] = ACTIONS(2321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2321), + [anon_sym_decltype] = ACTIONS(2321), + [anon_sym_explicit] = ACTIONS(2321), + [anon_sym_typename] = ACTIONS(2321), + [anon_sym_template] = ACTIONS(2321), + [anon_sym_operator] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [anon_sym_delete] = ACTIONS(2321), + [anon_sym_throw] = ACTIONS(2321), + [anon_sym_namespace] = ACTIONS(2321), + [anon_sym_using] = ACTIONS(2321), + [anon_sym_static_assert] = ACTIONS(2321), + [anon_sym_concept] = ACTIONS(2321), + [anon_sym_co_return] = ACTIONS(2321), + [anon_sym_co_yield] = ACTIONS(2321), + [anon_sym_R_DQUOTE] = ACTIONS(2323), + [anon_sym_LR_DQUOTE] = ACTIONS(2323), + [anon_sym_uR_DQUOTE] = ACTIONS(2323), + [anon_sym_UR_DQUOTE] = ACTIONS(2323), + [anon_sym_u8R_DQUOTE] = ACTIONS(2323), + [anon_sym_co_await] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2321), + [sym_this] = ACTIONS(2321), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_FORWARD] = ACTIONS(2321), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2321), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_PS_GET] = ACTIONS(2321), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2321), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2321), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2321), + [anon_sym_MOZ_COLD] = ACTIONS(2321), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2321), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2321), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2321), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2321), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2321), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2321), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2321), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2321), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2321), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2321), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2321), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2321), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_RAII] = ACTIONS(2321), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2321), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2321), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2321), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2321), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2321), + }, + [STATE(452)] = { + [sym_identifier] = ACTIONS(2361), + [aux_sym_preproc_include_token1] = ACTIONS(2361), + [aux_sym_preproc_def_token1] = ACTIONS(2361), + [aux_sym_preproc_if_token1] = ACTIONS(2361), + [aux_sym_preproc_if_token2] = ACTIONS(2361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2361), + [sym_preproc_directive] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(2363), + [anon_sym_AMP_AMP] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym___extension__] = ACTIONS(2361), + [anon_sym_typedef] = ACTIONS(2361), + [anon_sym_virtual] = ACTIONS(2361), + [anon_sym_extern] = ACTIONS(2361), + [anon_sym___attribute__] = ACTIONS(2361), + [anon_sym___attribute] = ACTIONS(2361), + [anon_sym_COLON_COLON] = ACTIONS(2363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2363), + [anon_sym___declspec] = ACTIONS(2361), + [anon_sym___based] = ACTIONS(2361), + [anon_sym___cdecl] = ACTIONS(2361), + [anon_sym___clrcall] = ACTIONS(2361), + [anon_sym___stdcall] = ACTIONS(2361), + [anon_sym___fastcall] = ACTIONS(2361), + [anon_sym___thiscall] = ACTIONS(2361), + [anon_sym___vectorcall] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_signed] = ACTIONS(2361), + [anon_sym_unsigned] = ACTIONS(2361), + [anon_sym_long] = ACTIONS(2361), + [anon_sym_short] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_register] = ACTIONS(2361), + [anon_sym_inline] = ACTIONS(2361), + [anon_sym___inline] = ACTIONS(2361), + [anon_sym___inline__] = ACTIONS(2361), + [anon_sym___forceinline] = ACTIONS(2361), + [anon_sym_thread_local] = ACTIONS(2361), + [anon_sym___thread] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_constexpr] = ACTIONS(2361), + [anon_sym_volatile] = ACTIONS(2361), + [anon_sym_restrict] = ACTIONS(2361), + [anon_sym___restrict__] = ACTIONS(2361), + [anon_sym__Atomic] = ACTIONS(2361), + [anon_sym__Noreturn] = ACTIONS(2361), + [anon_sym_noreturn] = ACTIONS(2361), + [anon_sym__Nonnull] = ACTIONS(2361), + [anon_sym_mutable] = ACTIONS(2361), + [anon_sym_constinit] = ACTIONS(2361), + [anon_sym_consteval] = ACTIONS(2361), + [anon_sym_alignas] = ACTIONS(2361), + [anon_sym__Alignas] = ACTIONS(2361), + [sym_primitive_type] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_class] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2361), + [anon_sym_union] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_switch] = ACTIONS(2361), + [anon_sym_case] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_do] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_goto] = ACTIONS(2361), + [anon_sym___try] = ACTIONS(2361), + [anon_sym___leave] = ACTIONS(2361), + [anon_sym_not] = ACTIONS(2361), + [anon_sym_compl] = ACTIONS(2361), + [anon_sym_DASH_DASH] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_sizeof] = ACTIONS(2361), + [anon_sym___alignof__] = ACTIONS(2361), + [anon_sym___alignof] = ACTIONS(2361), + [anon_sym__alignof] = ACTIONS(2361), + [anon_sym_alignof] = ACTIONS(2361), + [anon_sym__Alignof] = ACTIONS(2361), + [anon_sym_offsetof] = ACTIONS(2361), + [anon_sym__Generic] = ACTIONS(2361), + [anon_sym_asm] = ACTIONS(2361), + [anon_sym___asm__] = ACTIONS(2361), + [anon_sym___asm] = ACTIONS(2361), + [sym_number_literal] = ACTIONS(2363), + [anon_sym_L_SQUOTE] = ACTIONS(2363), + [anon_sym_u_SQUOTE] = ACTIONS(2363), + [anon_sym_U_SQUOTE] = ACTIONS(2363), + [anon_sym_u8_SQUOTE] = ACTIONS(2363), + [anon_sym_SQUOTE] = ACTIONS(2363), + [anon_sym_L_DQUOTE] = ACTIONS(2363), + [anon_sym_u_DQUOTE] = ACTIONS(2363), + [anon_sym_U_DQUOTE] = ACTIONS(2363), + [anon_sym_u8_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [sym_true] = ACTIONS(2361), + [sym_false] = ACTIONS(2361), + [anon_sym_NULL] = ACTIONS(2361), + [anon_sym_nullptr] = ACTIONS(2361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2361), + [anon_sym_decltype] = ACTIONS(2361), + [anon_sym_explicit] = ACTIONS(2361), + [anon_sym_typename] = ACTIONS(2361), + [anon_sym_template] = ACTIONS(2361), + [anon_sym_operator] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2361), + [anon_sym_delete] = ACTIONS(2361), + [anon_sym_throw] = ACTIONS(2361), + [anon_sym_namespace] = ACTIONS(2361), + [anon_sym_using] = ACTIONS(2361), + [anon_sym_static_assert] = ACTIONS(2361), + [anon_sym_concept] = ACTIONS(2361), + [anon_sym_co_return] = ACTIONS(2361), + [anon_sym_co_yield] = 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(2361), + [anon_sym_new] = ACTIONS(2361), + [anon_sym_requires] = ACTIONS(2361), + [sym_this] = ACTIONS(2361), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2361), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_FORWARD] = ACTIONS(2361), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2361), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2361), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2361), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2361), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_PS_GET] = ACTIONS(2361), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2361), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2361), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2361), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2361), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2361), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2361), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2361), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2361), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2361), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2361), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2361), + [anon_sym_MOZ_COLD] = ACTIONS(2361), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2361), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2361), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2361), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2361), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2361), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2361), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2361), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2361), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2361), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2361), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2361), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2361), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2361), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2361), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2361), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2361), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2361), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2361), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2361), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2361), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_NONNULL] = ACTIONS(2361), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2361), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2361), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2361), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2361), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2361), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_NORETURN] = ACTIONS(2361), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2361), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2361), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2361), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2361), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2361), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2361), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2361), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2361), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2361), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2361), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2361), + [anon_sym_MOZ_RAII] = ACTIONS(2361), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2361), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2361), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2361), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2361), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2361), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2361), + }, + [STATE(453)] = { + [sym_identifier] = ACTIONS(2365), + [aux_sym_preproc_include_token1] = ACTIONS(2365), + [aux_sym_preproc_def_token1] = ACTIONS(2365), + [aux_sym_preproc_if_token1] = ACTIONS(2365), + [aux_sym_preproc_if_token2] = ACTIONS(2365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2365), + [sym_preproc_directive] = ACTIONS(2365), + [anon_sym_LPAREN2] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_AMP_AMP] = ACTIONS(2367), + [anon_sym_AMP] = ACTIONS(2365), + [anon_sym_SEMI] = ACTIONS(2367), + [anon_sym___extension__] = ACTIONS(2365), + [anon_sym_typedef] = ACTIONS(2365), + [anon_sym_virtual] = ACTIONS(2365), + [anon_sym_extern] = ACTIONS(2365), + [anon_sym___attribute__] = ACTIONS(2365), + [anon_sym___attribute] = ACTIONS(2365), + [anon_sym_COLON_COLON] = ACTIONS(2367), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2367), + [anon_sym___declspec] = ACTIONS(2365), + [anon_sym___based] = ACTIONS(2365), + [anon_sym___cdecl] = ACTIONS(2365), + [anon_sym___clrcall] = ACTIONS(2365), + [anon_sym___stdcall] = ACTIONS(2365), + [anon_sym___fastcall] = ACTIONS(2365), + [anon_sym___thiscall] = ACTIONS(2365), + [anon_sym___vectorcall] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_signed] = ACTIONS(2365), + [anon_sym_unsigned] = ACTIONS(2365), + [anon_sym_long] = ACTIONS(2365), + [anon_sym_short] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_static] = ACTIONS(2365), + [anon_sym_register] = ACTIONS(2365), + [anon_sym_inline] = ACTIONS(2365), + [anon_sym___inline] = ACTIONS(2365), + [anon_sym___inline__] = ACTIONS(2365), + [anon_sym___forceinline] = ACTIONS(2365), + [anon_sym_thread_local] = ACTIONS(2365), + [anon_sym___thread] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_constexpr] = ACTIONS(2365), + [anon_sym_volatile] = ACTIONS(2365), + [anon_sym_restrict] = ACTIONS(2365), + [anon_sym___restrict__] = ACTIONS(2365), + [anon_sym__Atomic] = ACTIONS(2365), + [anon_sym__Noreturn] = ACTIONS(2365), + [anon_sym_noreturn] = ACTIONS(2365), + [anon_sym__Nonnull] = ACTIONS(2365), + [anon_sym_mutable] = ACTIONS(2365), + [anon_sym_constinit] = ACTIONS(2365), + [anon_sym_consteval] = ACTIONS(2365), + [anon_sym_alignas] = ACTIONS(2365), + [anon_sym__Alignas] = ACTIONS(2365), + [sym_primitive_type] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), + [anon_sym_class] = ACTIONS(2365), + [anon_sym_struct] = ACTIONS(2365), + [anon_sym_union] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_switch] = ACTIONS(2365), + [anon_sym_case] = ACTIONS(2365), + [anon_sym_default] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), + [anon_sym_do] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_goto] = ACTIONS(2365), + [anon_sym___try] = ACTIONS(2365), + [anon_sym___leave] = ACTIONS(2365), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(2367), + [anon_sym_PLUS_PLUS] = ACTIONS(2367), + [anon_sym_sizeof] = ACTIONS(2365), + [anon_sym___alignof__] = ACTIONS(2365), + [anon_sym___alignof] = ACTIONS(2365), + [anon_sym__alignof] = ACTIONS(2365), + [anon_sym_alignof] = ACTIONS(2365), + [anon_sym__Alignof] = ACTIONS(2365), + [anon_sym_offsetof] = ACTIONS(2365), + [anon_sym__Generic] = ACTIONS(2365), + [anon_sym_asm] = ACTIONS(2365), + [anon_sym___asm__] = ACTIONS(2365), + [anon_sym___asm] = ACTIONS(2365), + [sym_number_literal] = ACTIONS(2367), + [anon_sym_L_SQUOTE] = ACTIONS(2367), + [anon_sym_u_SQUOTE] = ACTIONS(2367), + [anon_sym_U_SQUOTE] = ACTIONS(2367), + [anon_sym_u8_SQUOTE] = ACTIONS(2367), + [anon_sym_SQUOTE] = ACTIONS(2367), + [anon_sym_L_DQUOTE] = ACTIONS(2367), + [anon_sym_u_DQUOTE] = ACTIONS(2367), + [anon_sym_U_DQUOTE] = ACTIONS(2367), + [anon_sym_u8_DQUOTE] = ACTIONS(2367), + [anon_sym_DQUOTE] = ACTIONS(2367), + [sym_true] = ACTIONS(2365), + [sym_false] = ACTIONS(2365), + [anon_sym_NULL] = ACTIONS(2365), + [anon_sym_nullptr] = ACTIONS(2365), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2365), + [anon_sym_decltype] = ACTIONS(2365), + [anon_sym_explicit] = ACTIONS(2365), + [anon_sym_typename] = ACTIONS(2365), + [anon_sym_template] = ACTIONS(2365), + [anon_sym_operator] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2365), + [anon_sym_delete] = ACTIONS(2365), + [anon_sym_throw] = ACTIONS(2365), + [anon_sym_namespace] = ACTIONS(2365), + [anon_sym_using] = ACTIONS(2365), + [anon_sym_static_assert] = ACTIONS(2365), + [anon_sym_concept] = ACTIONS(2365), + [anon_sym_co_return] = ACTIONS(2365), + [anon_sym_co_yield] = ACTIONS(2365), + [anon_sym_R_DQUOTE] = ACTIONS(2367), + [anon_sym_LR_DQUOTE] = ACTIONS(2367), + [anon_sym_uR_DQUOTE] = ACTIONS(2367), + [anon_sym_UR_DQUOTE] = ACTIONS(2367), + [anon_sym_u8R_DQUOTE] = ACTIONS(2367), + [anon_sym_co_await] = ACTIONS(2365), + [anon_sym_new] = ACTIONS(2365), + [anon_sym_requires] = ACTIONS(2365), + [sym_this] = ACTIONS(2365), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2365), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_FORWARD] = ACTIONS(2365), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2365), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2365), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2365), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2365), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_PS_GET] = ACTIONS(2365), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2365), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2365), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2365), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2365), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2365), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2365), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2365), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2365), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2365), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2365), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2365), + [anon_sym_MOZ_COLD] = ACTIONS(2365), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2365), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2365), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2365), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2365), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2365), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2365), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2365), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2365), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2365), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2365), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2365), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2365), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2365), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2365), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2365), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2365), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2365), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2365), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2365), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2365), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_NONNULL] = ACTIONS(2365), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2365), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2365), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2365), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2365), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2365), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_NORETURN] = ACTIONS(2365), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2365), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2365), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2365), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2365), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2365), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2365), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2365), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2365), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2365), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2365), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2365), + [anon_sym_MOZ_RAII] = ACTIONS(2365), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2365), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2365), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2365), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2365), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2365), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2365), + }, + [STATE(454)] = { + [sym_identifier] = ACTIONS(2369), + [aux_sym_preproc_include_token1] = ACTIONS(2369), + [aux_sym_preproc_def_token1] = ACTIONS(2369), + [aux_sym_preproc_if_token1] = ACTIONS(2369), + [aux_sym_preproc_if_token2] = ACTIONS(2369), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2369), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2369), + [sym_preproc_directive] = ACTIONS(2369), + [anon_sym_LPAREN2] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(2371), + [anon_sym_TILDE] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2369), + [anon_sym_PLUS] = ACTIONS(2369), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_AMP_AMP] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2369), + [anon_sym_SEMI] = ACTIONS(2371), + [anon_sym___extension__] = ACTIONS(2369), + [anon_sym_typedef] = ACTIONS(2369), + [anon_sym_virtual] = ACTIONS(2369), + [anon_sym_extern] = ACTIONS(2369), + [anon_sym___attribute__] = ACTIONS(2369), + [anon_sym___attribute] = ACTIONS(2369), + [anon_sym_COLON_COLON] = ACTIONS(2371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2371), + [anon_sym___declspec] = ACTIONS(2369), + [anon_sym___based] = ACTIONS(2369), + [anon_sym___cdecl] = ACTIONS(2369), + [anon_sym___clrcall] = ACTIONS(2369), + [anon_sym___stdcall] = ACTIONS(2369), + [anon_sym___fastcall] = ACTIONS(2369), + [anon_sym___thiscall] = ACTIONS(2369), + [anon_sym___vectorcall] = ACTIONS(2369), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_signed] = ACTIONS(2369), + [anon_sym_unsigned] = ACTIONS(2369), + [anon_sym_long] = ACTIONS(2369), + [anon_sym_short] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2369), + [anon_sym_static] = ACTIONS(2369), + [anon_sym_register] = ACTIONS(2369), + [anon_sym_inline] = ACTIONS(2369), + [anon_sym___inline] = ACTIONS(2369), + [anon_sym___inline__] = ACTIONS(2369), + [anon_sym___forceinline] = ACTIONS(2369), + [anon_sym_thread_local] = ACTIONS(2369), + [anon_sym___thread] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [anon_sym_constexpr] = ACTIONS(2369), + [anon_sym_volatile] = ACTIONS(2369), + [anon_sym_restrict] = ACTIONS(2369), + [anon_sym___restrict__] = ACTIONS(2369), + [anon_sym__Atomic] = ACTIONS(2369), + [anon_sym__Noreturn] = ACTIONS(2369), + [anon_sym_noreturn] = ACTIONS(2369), + [anon_sym__Nonnull] = ACTIONS(2369), + [anon_sym_mutable] = ACTIONS(2369), + [anon_sym_constinit] = ACTIONS(2369), + [anon_sym_consteval] = ACTIONS(2369), + [anon_sym_alignas] = ACTIONS(2369), + [anon_sym__Alignas] = ACTIONS(2369), + [sym_primitive_type] = ACTIONS(2369), + [anon_sym_enum] = ACTIONS(2369), + [anon_sym_class] = ACTIONS(2369), + [anon_sym_struct] = ACTIONS(2369), + [anon_sym_union] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_switch] = ACTIONS(2369), + [anon_sym_case] = ACTIONS(2369), + [anon_sym_default] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [anon_sym_do] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_goto] = ACTIONS(2369), + [anon_sym___try] = ACTIONS(2369), + [anon_sym___leave] = ACTIONS(2369), + [anon_sym_not] = ACTIONS(2369), + [anon_sym_compl] = ACTIONS(2369), + [anon_sym_DASH_DASH] = ACTIONS(2371), + [anon_sym_PLUS_PLUS] = ACTIONS(2371), + [anon_sym_sizeof] = ACTIONS(2369), + [anon_sym___alignof__] = ACTIONS(2369), + [anon_sym___alignof] = ACTIONS(2369), + [anon_sym__alignof] = ACTIONS(2369), + [anon_sym_alignof] = ACTIONS(2369), + [anon_sym__Alignof] = ACTIONS(2369), + [anon_sym_offsetof] = ACTIONS(2369), + [anon_sym__Generic] = ACTIONS(2369), + [anon_sym_asm] = ACTIONS(2369), + [anon_sym___asm__] = ACTIONS(2369), + [anon_sym___asm] = ACTIONS(2369), + [sym_number_literal] = ACTIONS(2371), + [anon_sym_L_SQUOTE] = ACTIONS(2371), + [anon_sym_u_SQUOTE] = ACTIONS(2371), + [anon_sym_U_SQUOTE] = ACTIONS(2371), + [anon_sym_u8_SQUOTE] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2371), + [anon_sym_L_DQUOTE] = ACTIONS(2371), + [anon_sym_u_DQUOTE] = ACTIONS(2371), + [anon_sym_U_DQUOTE] = ACTIONS(2371), + [anon_sym_u8_DQUOTE] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(2371), + [sym_true] = ACTIONS(2369), + [sym_false] = ACTIONS(2369), + [anon_sym_NULL] = ACTIONS(2369), + [anon_sym_nullptr] = ACTIONS(2369), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2369), + [anon_sym_decltype] = ACTIONS(2369), + [anon_sym_explicit] = ACTIONS(2369), + [anon_sym_typename] = ACTIONS(2369), + [anon_sym_template] = ACTIONS(2369), + [anon_sym_operator] = ACTIONS(2369), + [anon_sym_try] = ACTIONS(2369), + [anon_sym_delete] = ACTIONS(2369), + [anon_sym_throw] = ACTIONS(2369), + [anon_sym_namespace] = ACTIONS(2369), + [anon_sym_using] = ACTIONS(2369), + [anon_sym_static_assert] = ACTIONS(2369), + [anon_sym_concept] = ACTIONS(2369), + [anon_sym_co_return] = ACTIONS(2369), + [anon_sym_co_yield] = ACTIONS(2369), + [anon_sym_R_DQUOTE] = ACTIONS(2371), + [anon_sym_LR_DQUOTE] = ACTIONS(2371), + [anon_sym_uR_DQUOTE] = ACTIONS(2371), + [anon_sym_UR_DQUOTE] = ACTIONS(2371), + [anon_sym_u8R_DQUOTE] = ACTIONS(2371), + [anon_sym_co_await] = ACTIONS(2369), + [anon_sym_new] = ACTIONS(2369), + [anon_sym_requires] = ACTIONS(2369), + [sym_this] = ACTIONS(2369), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2369), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_FORWARD] = ACTIONS(2369), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2369), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2369), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2369), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2369), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_PS_GET] = ACTIONS(2369), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2369), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2369), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2369), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2369), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2369), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2369), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2369), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2369), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2369), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2369), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2369), + [anon_sym_MOZ_COLD] = ACTIONS(2369), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2369), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2369), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2369), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2369), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2369), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2369), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2369), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2369), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2369), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2369), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2369), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2369), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2369), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2369), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2369), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2369), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2369), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2369), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2369), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2369), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_NONNULL] = ACTIONS(2369), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2369), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2369), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2369), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2369), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2369), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_NORETURN] = ACTIONS(2369), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2369), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2369), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2369), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2369), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2369), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2369), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2369), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2369), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2369), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2369), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2369), + [anon_sym_MOZ_RAII] = ACTIONS(2369), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2369), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2369), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2369), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2369), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2369), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2369), + }, + [STATE(455)] = { + [ts_builtin_sym_end] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2353), + [aux_sym_preproc_include_token1] = ACTIONS(2353), + [aux_sym_preproc_def_token1] = ACTIONS(2353), + [aux_sym_preproc_if_token1] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2353), + [sym_preproc_directive] = ACTIONS(2353), + [anon_sym_LPAREN2] = ACTIONS(2355), + [anon_sym_BANG] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_PLUS] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym___extension__] = ACTIONS(2353), + [anon_sym_typedef] = ACTIONS(2353), + [anon_sym_virtual] = ACTIONS(2353), + [anon_sym_extern] = ACTIONS(2353), + [anon_sym___attribute__] = ACTIONS(2353), + [anon_sym___attribute] = ACTIONS(2353), + [anon_sym_COLON_COLON] = ACTIONS(2355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2355), + [anon_sym___declspec] = ACTIONS(2353), + [anon_sym___based] = ACTIONS(2353), + [anon_sym___cdecl] = ACTIONS(2353), + [anon_sym___clrcall] = ACTIONS(2353), + [anon_sym___stdcall] = ACTIONS(2353), + [anon_sym___fastcall] = ACTIONS(2353), + [anon_sym___thiscall] = ACTIONS(2353), + [anon_sym___vectorcall] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2353), + [anon_sym_unsigned] = ACTIONS(2353), + [anon_sym_long] = ACTIONS(2353), + [anon_sym_short] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_register] = ACTIONS(2353), + [anon_sym_inline] = ACTIONS(2353), + [anon_sym___inline] = ACTIONS(2353), + [anon_sym___inline__] = ACTIONS(2353), + [anon_sym___forceinline] = ACTIONS(2353), + [anon_sym_thread_local] = ACTIONS(2353), + [anon_sym___thread] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_constexpr] = ACTIONS(2353), + [anon_sym_volatile] = ACTIONS(2353), + [anon_sym_restrict] = ACTIONS(2353), + [anon_sym___restrict__] = ACTIONS(2353), + [anon_sym__Atomic] = ACTIONS(2353), + [anon_sym__Noreturn] = ACTIONS(2353), + [anon_sym_noreturn] = ACTIONS(2353), + [anon_sym__Nonnull] = ACTIONS(2353), + [anon_sym_mutable] = ACTIONS(2353), + [anon_sym_constinit] = ACTIONS(2353), + [anon_sym_consteval] = ACTIONS(2353), + [anon_sym_alignas] = ACTIONS(2353), + [anon_sym__Alignas] = ACTIONS(2353), + [sym_primitive_type] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_class] = ACTIONS(2353), + [anon_sym_struct] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_switch] = ACTIONS(2353), + [anon_sym_case] = ACTIONS(2353), + [anon_sym_default] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_do] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_goto] = ACTIONS(2353), + [anon_sym_not] = ACTIONS(2353), + [anon_sym_compl] = ACTIONS(2353), + [anon_sym_DASH_DASH] = ACTIONS(2355), + [anon_sym_PLUS_PLUS] = ACTIONS(2355), + [anon_sym_sizeof] = ACTIONS(2353), + [anon_sym___alignof__] = ACTIONS(2353), + [anon_sym___alignof] = ACTIONS(2353), + [anon_sym__alignof] = ACTIONS(2353), + [anon_sym_alignof] = ACTIONS(2353), + [anon_sym__Alignof] = ACTIONS(2353), + [anon_sym_offsetof] = ACTIONS(2353), + [anon_sym__Generic] = ACTIONS(2353), + [anon_sym_asm] = ACTIONS(2353), + [anon_sym___asm__] = ACTIONS(2353), + [anon_sym___asm] = ACTIONS(2353), + [sym_number_literal] = ACTIONS(2355), + [anon_sym_L_SQUOTE] = ACTIONS(2355), + [anon_sym_u_SQUOTE] = ACTIONS(2355), + [anon_sym_U_SQUOTE] = ACTIONS(2355), + [anon_sym_u8_SQUOTE] = ACTIONS(2355), + [anon_sym_SQUOTE] = ACTIONS(2355), + [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(2353), + [sym_false] = ACTIONS(2353), + [anon_sym_NULL] = ACTIONS(2353), + [anon_sym_nullptr] = ACTIONS(2353), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2353), + [anon_sym_decltype] = ACTIONS(2353), + [anon_sym_explicit] = ACTIONS(2353), + [anon_sym_typename] = ACTIONS(2353), + [anon_sym_template] = ACTIONS(2353), + [anon_sym_operator] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2353), + [anon_sym_delete] = ACTIONS(2353), + [anon_sym_throw] = ACTIONS(2353), + [anon_sym_namespace] = ACTIONS(2353), + [anon_sym_using] = ACTIONS(2353), + [anon_sym_static_assert] = ACTIONS(2353), + [anon_sym_concept] = ACTIONS(2353), + [anon_sym_co_return] = ACTIONS(2353), + [anon_sym_co_yield] = ACTIONS(2353), + [anon_sym_R_DQUOTE] = ACTIONS(2355), + [anon_sym_LR_DQUOTE] = ACTIONS(2355), + [anon_sym_uR_DQUOTE] = ACTIONS(2355), + [anon_sym_UR_DQUOTE] = ACTIONS(2355), + [anon_sym_u8R_DQUOTE] = ACTIONS(2355), + [anon_sym_co_await] = ACTIONS(2353), + [anon_sym_new] = ACTIONS(2353), + [anon_sym_requires] = ACTIONS(2353), + [sym_this] = ACTIONS(2353), + [sym_alone_macro] = ACTIONS(2355), + [aux_sym_alone_macro_call_token1] = ACTIONS(2353), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2353), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_FORWARD] = ACTIONS(2353), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2353), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2353), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2353), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2353), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_PS_GET] = ACTIONS(2353), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2353), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2353), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2353), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2353), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2353), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2353), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2353), + [anon_sym_MOZ_COLD] = ACTIONS(2353), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2353), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2353), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2353), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2353), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2353), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2353), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2353), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2353), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2353), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2353), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2353), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2353), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2353), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_NONNULL] = ACTIONS(2353), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2353), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2353), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2353), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2353), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2353), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2353), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2353), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2353), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2353), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2353), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2353), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2353), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2353), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2353), + [anon_sym_MOZ_RAII] = ACTIONS(2353), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2353), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2353), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2353), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2353), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2353), + }, + [STATE(456)] = { + [sym_identifier] = ACTIONS(2381), + [aux_sym_preproc_include_token1] = ACTIONS(2381), + [aux_sym_preproc_def_token1] = ACTIONS(2381), + [aux_sym_preproc_if_token1] = ACTIONS(2381), + [aux_sym_preproc_if_token2] = ACTIONS(2381), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2381), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2381), + [sym_preproc_directive] = ACTIONS(2381), + [anon_sym_LPAREN2] = ACTIONS(2383), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_TILDE] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_PLUS] = ACTIONS(2381), + [anon_sym_STAR] = ACTIONS(2383), + [anon_sym_AMP_AMP] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2383), + [anon_sym___extension__] = ACTIONS(2381), + [anon_sym_typedef] = ACTIONS(2381), + [anon_sym_virtual] = ACTIONS(2381), + [anon_sym_extern] = ACTIONS(2381), + [anon_sym___attribute__] = ACTIONS(2381), + [anon_sym___attribute] = ACTIONS(2381), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2383), + [anon_sym___declspec] = ACTIONS(2381), + [anon_sym___based] = ACTIONS(2381), + [anon_sym___cdecl] = ACTIONS(2381), + [anon_sym___clrcall] = ACTIONS(2381), + [anon_sym___stdcall] = ACTIONS(2381), + [anon_sym___fastcall] = ACTIONS(2381), + [anon_sym___thiscall] = ACTIONS(2381), + [anon_sym___vectorcall] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_signed] = ACTIONS(2381), + [anon_sym_unsigned] = ACTIONS(2381), + [anon_sym_long] = ACTIONS(2381), + [anon_sym_short] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_register] = ACTIONS(2381), + [anon_sym_inline] = ACTIONS(2381), + [anon_sym___inline] = ACTIONS(2381), + [anon_sym___inline__] = ACTIONS(2381), + [anon_sym___forceinline] = ACTIONS(2381), + [anon_sym_thread_local] = ACTIONS(2381), + [anon_sym___thread] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_constexpr] = ACTIONS(2381), + [anon_sym_volatile] = ACTIONS(2381), + [anon_sym_restrict] = ACTIONS(2381), + [anon_sym___restrict__] = ACTIONS(2381), + [anon_sym__Atomic] = ACTIONS(2381), + [anon_sym__Noreturn] = ACTIONS(2381), + [anon_sym_noreturn] = ACTIONS(2381), + [anon_sym__Nonnull] = ACTIONS(2381), + [anon_sym_mutable] = ACTIONS(2381), + [anon_sym_constinit] = ACTIONS(2381), + [anon_sym_consteval] = ACTIONS(2381), + [anon_sym_alignas] = ACTIONS(2381), + [anon_sym__Alignas] = ACTIONS(2381), + [sym_primitive_type] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), + [anon_sym_class] = ACTIONS(2381), + [anon_sym_struct] = ACTIONS(2381), + [anon_sym_union] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_switch] = ACTIONS(2381), + [anon_sym_case] = ACTIONS(2381), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_goto] = ACTIONS(2381), + [anon_sym___try] = ACTIONS(2381), + [anon_sym___leave] = ACTIONS(2381), + [anon_sym_not] = ACTIONS(2381), + [anon_sym_compl] = ACTIONS(2381), + [anon_sym_DASH_DASH] = ACTIONS(2383), + [anon_sym_PLUS_PLUS] = ACTIONS(2383), + [anon_sym_sizeof] = ACTIONS(2381), + [anon_sym___alignof__] = ACTIONS(2381), + [anon_sym___alignof] = ACTIONS(2381), + [anon_sym__alignof] = ACTIONS(2381), + [anon_sym_alignof] = ACTIONS(2381), + [anon_sym__Alignof] = ACTIONS(2381), + [anon_sym_offsetof] = ACTIONS(2381), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2381), + [anon_sym___asm__] = ACTIONS(2381), + [anon_sym___asm] = ACTIONS(2381), + [sym_number_literal] = ACTIONS(2383), + [anon_sym_L_SQUOTE] = ACTIONS(2383), + [anon_sym_u_SQUOTE] = ACTIONS(2383), + [anon_sym_U_SQUOTE] = ACTIONS(2383), + [anon_sym_u8_SQUOTE] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(2383), + [anon_sym_L_DQUOTE] = ACTIONS(2383), + [anon_sym_u_DQUOTE] = ACTIONS(2383), + [anon_sym_U_DQUOTE] = ACTIONS(2383), + [anon_sym_u8_DQUOTE] = ACTIONS(2383), + [anon_sym_DQUOTE] = ACTIONS(2383), + [sym_true] = ACTIONS(2381), + [sym_false] = ACTIONS(2381), + [anon_sym_NULL] = ACTIONS(2381), + [anon_sym_nullptr] = ACTIONS(2381), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2381), + [anon_sym_decltype] = ACTIONS(2381), + [anon_sym_explicit] = ACTIONS(2381), + [anon_sym_typename] = ACTIONS(2381), + [anon_sym_template] = ACTIONS(2381), + [anon_sym_operator] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2381), + [anon_sym_delete] = ACTIONS(2381), + [anon_sym_throw] = ACTIONS(2381), + [anon_sym_namespace] = ACTIONS(2381), + [anon_sym_using] = ACTIONS(2381), + [anon_sym_static_assert] = ACTIONS(2381), + [anon_sym_concept] = ACTIONS(2381), + [anon_sym_co_return] = ACTIONS(2381), + [anon_sym_co_yield] = ACTIONS(2381), + [anon_sym_R_DQUOTE] = ACTIONS(2383), + [anon_sym_LR_DQUOTE] = ACTIONS(2383), + [anon_sym_uR_DQUOTE] = ACTIONS(2383), + [anon_sym_UR_DQUOTE] = ACTIONS(2383), + [anon_sym_u8R_DQUOTE] = ACTIONS(2383), + [anon_sym_co_await] = ACTIONS(2381), + [anon_sym_new] = ACTIONS(2381), + [anon_sym_requires] = ACTIONS(2381), + [sym_this] = ACTIONS(2381), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2381), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_FORWARD] = ACTIONS(2381), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2381), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2381), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2381), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2381), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_PS_GET] = ACTIONS(2381), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2381), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2381), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2381), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2381), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2381), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2381), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2381), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2381), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2381), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2381), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2381), + [anon_sym_MOZ_COLD] = ACTIONS(2381), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2381), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2381), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2381), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2381), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2381), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2381), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2381), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2381), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2381), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2381), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2381), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2381), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2381), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2381), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2381), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2381), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2381), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2381), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2381), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2381), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_NONNULL] = ACTIONS(2381), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2381), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2381), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2381), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2381), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2381), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_NORETURN] = ACTIONS(2381), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2381), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2381), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2381), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2381), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2381), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2381), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2381), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2381), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2381), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2381), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2381), + [anon_sym_MOZ_RAII] = ACTIONS(2381), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2381), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2381), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2381), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2381), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2381), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2381), + }, + [STATE(457)] = { + [sym_identifier] = ACTIONS(2385), + [aux_sym_preproc_include_token1] = ACTIONS(2385), + [aux_sym_preproc_def_token1] = ACTIONS(2385), + [aux_sym_preproc_if_token1] = ACTIONS(2385), + [aux_sym_preproc_if_token2] = ACTIONS(2385), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2385), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2385), + [sym_preproc_directive] = ACTIONS(2385), + [anon_sym_LPAREN2] = ACTIONS(2387), + [anon_sym_BANG] = ACTIONS(2387), + [anon_sym_TILDE] = ACTIONS(2387), + [anon_sym_DASH] = ACTIONS(2385), + [anon_sym_PLUS] = ACTIONS(2385), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_AMP_AMP] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(2387), + [anon_sym___extension__] = ACTIONS(2385), + [anon_sym_typedef] = ACTIONS(2385), + [anon_sym_virtual] = ACTIONS(2385), + [anon_sym_extern] = ACTIONS(2385), + [anon_sym___attribute__] = ACTIONS(2385), + [anon_sym___attribute] = ACTIONS(2385), + [anon_sym_COLON_COLON] = ACTIONS(2387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2387), + [anon_sym___declspec] = ACTIONS(2385), + [anon_sym___based] = ACTIONS(2385), + [anon_sym___cdecl] = ACTIONS(2385), + [anon_sym___clrcall] = ACTIONS(2385), + [anon_sym___stdcall] = ACTIONS(2385), + [anon_sym___fastcall] = ACTIONS(2385), + [anon_sym___thiscall] = ACTIONS(2385), + [anon_sym___vectorcall] = ACTIONS(2385), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_signed] = ACTIONS(2385), + [anon_sym_unsigned] = ACTIONS(2385), + [anon_sym_long] = ACTIONS(2385), + [anon_sym_short] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2385), + [anon_sym_static] = ACTIONS(2385), + [anon_sym_register] = ACTIONS(2385), + [anon_sym_inline] = ACTIONS(2385), + [anon_sym___inline] = ACTIONS(2385), + [anon_sym___inline__] = ACTIONS(2385), + [anon_sym___forceinline] = ACTIONS(2385), + [anon_sym_thread_local] = ACTIONS(2385), + [anon_sym___thread] = ACTIONS(2385), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_constexpr] = ACTIONS(2385), + [anon_sym_volatile] = ACTIONS(2385), + [anon_sym_restrict] = ACTIONS(2385), + [anon_sym___restrict__] = ACTIONS(2385), + [anon_sym__Atomic] = ACTIONS(2385), + [anon_sym__Noreturn] = ACTIONS(2385), + [anon_sym_noreturn] = ACTIONS(2385), + [anon_sym__Nonnull] = ACTIONS(2385), + [anon_sym_mutable] = ACTIONS(2385), + [anon_sym_constinit] = ACTIONS(2385), + [anon_sym_consteval] = ACTIONS(2385), + [anon_sym_alignas] = ACTIONS(2385), + [anon_sym__Alignas] = ACTIONS(2385), + [sym_primitive_type] = ACTIONS(2385), + [anon_sym_enum] = ACTIONS(2385), + [anon_sym_class] = ACTIONS(2385), + [anon_sym_struct] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_switch] = ACTIONS(2385), + [anon_sym_case] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_while] = ACTIONS(2385), + [anon_sym_do] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2385), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_break] = ACTIONS(2385), + [anon_sym_continue] = ACTIONS(2385), + [anon_sym_goto] = ACTIONS(2385), + [anon_sym___try] = ACTIONS(2385), + [anon_sym___leave] = ACTIONS(2385), + [anon_sym_not] = ACTIONS(2385), + [anon_sym_compl] = ACTIONS(2385), + [anon_sym_DASH_DASH] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2387), + [anon_sym_sizeof] = ACTIONS(2385), + [anon_sym___alignof__] = ACTIONS(2385), + [anon_sym___alignof] = ACTIONS(2385), + [anon_sym__alignof] = ACTIONS(2385), + [anon_sym_alignof] = ACTIONS(2385), + [anon_sym__Alignof] = ACTIONS(2385), + [anon_sym_offsetof] = ACTIONS(2385), + [anon_sym__Generic] = ACTIONS(2385), + [anon_sym_asm] = ACTIONS(2385), + [anon_sym___asm__] = ACTIONS(2385), + [anon_sym___asm] = ACTIONS(2385), + [sym_number_literal] = ACTIONS(2387), + [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(2387), + [anon_sym_u_DQUOTE] = ACTIONS(2387), + [anon_sym_U_DQUOTE] = ACTIONS(2387), + [anon_sym_u8_DQUOTE] = ACTIONS(2387), + [anon_sym_DQUOTE] = ACTIONS(2387), + [sym_true] = ACTIONS(2385), + [sym_false] = ACTIONS(2385), + [anon_sym_NULL] = ACTIONS(2385), + [anon_sym_nullptr] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2385), + [anon_sym_decltype] = ACTIONS(2385), + [anon_sym_explicit] = ACTIONS(2385), + [anon_sym_typename] = ACTIONS(2385), + [anon_sym_template] = ACTIONS(2385), + [anon_sym_operator] = ACTIONS(2385), + [anon_sym_try] = ACTIONS(2385), + [anon_sym_delete] = ACTIONS(2385), + [anon_sym_throw] = ACTIONS(2385), + [anon_sym_namespace] = ACTIONS(2385), + [anon_sym_using] = ACTIONS(2385), + [anon_sym_static_assert] = ACTIONS(2385), + [anon_sym_concept] = ACTIONS(2385), + [anon_sym_co_return] = ACTIONS(2385), + [anon_sym_co_yield] = ACTIONS(2385), + [anon_sym_R_DQUOTE] = ACTIONS(2387), + [anon_sym_LR_DQUOTE] = ACTIONS(2387), + [anon_sym_uR_DQUOTE] = ACTIONS(2387), + [anon_sym_UR_DQUOTE] = ACTIONS(2387), + [anon_sym_u8R_DQUOTE] = ACTIONS(2387), + [anon_sym_co_await] = ACTIONS(2385), + [anon_sym_new] = ACTIONS(2385), + [anon_sym_requires] = ACTIONS(2385), + [sym_this] = ACTIONS(2385), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2385), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_FORWARD] = ACTIONS(2385), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2385), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2385), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2385), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2385), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_PS_GET] = ACTIONS(2385), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2385), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2385), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2385), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2385), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2385), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2385), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2385), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2385), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2385), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2385), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2385), + [anon_sym_MOZ_COLD] = ACTIONS(2385), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2385), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2385), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2385), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2385), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2385), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2385), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2385), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2385), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2385), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2385), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2385), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2385), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2385), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2385), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2385), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2385), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2385), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2385), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2385), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2385), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_NONNULL] = ACTIONS(2385), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2385), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2385), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2385), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2385), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2385), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_NORETURN] = ACTIONS(2385), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2385), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2385), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2385), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2385), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2385), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2385), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2385), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2385), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2385), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2385), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2385), + [anon_sym_MOZ_RAII] = ACTIONS(2385), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2385), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2385), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2385), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2385), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2385), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2385), + }, + [STATE(458)] = { + [sym_identifier] = ACTIONS(2389), + [aux_sym_preproc_include_token1] = ACTIONS(2389), + [aux_sym_preproc_def_token1] = ACTIONS(2389), + [aux_sym_preproc_if_token1] = ACTIONS(2389), + [aux_sym_preproc_if_token2] = ACTIONS(2389), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2389), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2389), + [sym_preproc_directive] = ACTIONS(2389), + [anon_sym_LPAREN2] = ACTIONS(2391), + [anon_sym_BANG] = ACTIONS(2391), + [anon_sym_TILDE] = ACTIONS(2391), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_STAR] = ACTIONS(2391), + [anon_sym_AMP_AMP] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2389), + [anon_sym_SEMI] = ACTIONS(2391), + [anon_sym___extension__] = ACTIONS(2389), + [anon_sym_typedef] = ACTIONS(2389), + [anon_sym_virtual] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(2389), + [anon_sym___attribute__] = ACTIONS(2389), + [anon_sym___attribute] = ACTIONS(2389), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2391), + [anon_sym___declspec] = ACTIONS(2389), + [anon_sym___based] = ACTIONS(2389), + [anon_sym___cdecl] = ACTIONS(2389), + [anon_sym___clrcall] = ACTIONS(2389), + [anon_sym___stdcall] = ACTIONS(2389), + [anon_sym___fastcall] = ACTIONS(2389), + [anon_sym___thiscall] = ACTIONS(2389), + [anon_sym___vectorcall] = ACTIONS(2389), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_signed] = ACTIONS(2389), + [anon_sym_unsigned] = ACTIONS(2389), + [anon_sym_long] = ACTIONS(2389), + [anon_sym_short] = ACTIONS(2389), + [anon_sym_LBRACK] = ACTIONS(2389), + [anon_sym_static] = ACTIONS(2389), + [anon_sym_register] = ACTIONS(2389), + [anon_sym_inline] = ACTIONS(2389), + [anon_sym___inline] = ACTIONS(2389), + [anon_sym___inline__] = ACTIONS(2389), + [anon_sym___forceinline] = ACTIONS(2389), + [anon_sym_thread_local] = ACTIONS(2389), + [anon_sym___thread] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [anon_sym_constexpr] = ACTIONS(2389), + [anon_sym_volatile] = ACTIONS(2389), + [anon_sym_restrict] = ACTIONS(2389), + [anon_sym___restrict__] = ACTIONS(2389), + [anon_sym__Atomic] = ACTIONS(2389), + [anon_sym__Noreturn] = ACTIONS(2389), + [anon_sym_noreturn] = ACTIONS(2389), + [anon_sym__Nonnull] = ACTIONS(2389), + [anon_sym_mutable] = ACTIONS(2389), + [anon_sym_constinit] = ACTIONS(2389), + [anon_sym_consteval] = ACTIONS(2389), + [anon_sym_alignas] = ACTIONS(2389), + [anon_sym__Alignas] = ACTIONS(2389), + [sym_primitive_type] = ACTIONS(2389), + [anon_sym_enum] = ACTIONS(2389), + [anon_sym_class] = ACTIONS(2389), + [anon_sym_struct] = ACTIONS(2389), + [anon_sym_union] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_switch] = ACTIONS(2389), + [anon_sym_case] = ACTIONS(2389), + [anon_sym_default] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [anon_sym_do] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_goto] = ACTIONS(2389), + [anon_sym___try] = ACTIONS(2389), + [anon_sym___leave] = ACTIONS(2389), + [anon_sym_not] = ACTIONS(2389), + [anon_sym_compl] = ACTIONS(2389), + [anon_sym_DASH_DASH] = ACTIONS(2391), + [anon_sym_PLUS_PLUS] = ACTIONS(2391), + [anon_sym_sizeof] = ACTIONS(2389), + [anon_sym___alignof__] = ACTIONS(2389), + [anon_sym___alignof] = ACTIONS(2389), + [anon_sym__alignof] = ACTIONS(2389), + [anon_sym_alignof] = ACTIONS(2389), + [anon_sym__Alignof] = ACTIONS(2389), + [anon_sym_offsetof] = ACTIONS(2389), + [anon_sym__Generic] = ACTIONS(2389), + [anon_sym_asm] = ACTIONS(2389), + [anon_sym___asm__] = ACTIONS(2389), + [anon_sym___asm] = ACTIONS(2389), + [sym_number_literal] = ACTIONS(2391), + [anon_sym_L_SQUOTE] = ACTIONS(2391), + [anon_sym_u_SQUOTE] = ACTIONS(2391), + [anon_sym_U_SQUOTE] = ACTIONS(2391), + [anon_sym_u8_SQUOTE] = ACTIONS(2391), + [anon_sym_SQUOTE] = ACTIONS(2391), + [anon_sym_L_DQUOTE] = ACTIONS(2391), + [anon_sym_u_DQUOTE] = ACTIONS(2391), + [anon_sym_U_DQUOTE] = ACTIONS(2391), + [anon_sym_u8_DQUOTE] = ACTIONS(2391), + [anon_sym_DQUOTE] = ACTIONS(2391), + [sym_true] = ACTIONS(2389), + [sym_false] = ACTIONS(2389), + [anon_sym_NULL] = ACTIONS(2389), + [anon_sym_nullptr] = ACTIONS(2389), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2389), + [anon_sym_decltype] = ACTIONS(2389), + [anon_sym_explicit] = ACTIONS(2389), + [anon_sym_typename] = ACTIONS(2389), + [anon_sym_template] = ACTIONS(2389), + [anon_sym_operator] = ACTIONS(2389), + [anon_sym_try] = ACTIONS(2389), + [anon_sym_delete] = ACTIONS(2389), + [anon_sym_throw] = ACTIONS(2389), + [anon_sym_namespace] = ACTIONS(2389), + [anon_sym_using] = ACTIONS(2389), + [anon_sym_static_assert] = ACTIONS(2389), + [anon_sym_concept] = ACTIONS(2389), + [anon_sym_co_return] = ACTIONS(2389), + [anon_sym_co_yield] = ACTIONS(2389), + [anon_sym_R_DQUOTE] = ACTIONS(2391), + [anon_sym_LR_DQUOTE] = ACTIONS(2391), + [anon_sym_uR_DQUOTE] = ACTIONS(2391), + [anon_sym_UR_DQUOTE] = ACTIONS(2391), + [anon_sym_u8R_DQUOTE] = ACTIONS(2391), + [anon_sym_co_await] = ACTIONS(2389), + [anon_sym_new] = ACTIONS(2389), + [anon_sym_requires] = ACTIONS(2389), + [sym_this] = ACTIONS(2389), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2389), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_FORWARD] = ACTIONS(2389), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2389), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2389), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2389), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2389), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_PS_GET] = ACTIONS(2389), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2389), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2389), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2389), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2389), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2389), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2389), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2389), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2389), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2389), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2389), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2389), + [anon_sym_MOZ_COLD] = ACTIONS(2389), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2389), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2389), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2389), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2389), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2389), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2389), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2389), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2389), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2389), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2389), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2389), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2389), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2389), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2389), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2389), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2389), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2389), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2389), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2389), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2389), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_NONNULL] = ACTIONS(2389), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2389), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2389), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2389), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2389), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2389), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_NORETURN] = ACTIONS(2389), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2389), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2389), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2389), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2389), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2389), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2389), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2389), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2389), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2389), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2389), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2389), + [anon_sym_MOZ_RAII] = ACTIONS(2389), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2389), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2389), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2389), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2389), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2389), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2389), + }, + [STATE(459)] = { + [ts_builtin_sym_end] = ACTIONS(2359), + [sym_identifier] = ACTIONS(2357), + [aux_sym_preproc_include_token1] = ACTIONS(2357), + [aux_sym_preproc_def_token1] = ACTIONS(2357), + [aux_sym_preproc_if_token1] = ACTIONS(2357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2357), + [sym_preproc_directive] = ACTIONS(2357), + [anon_sym_LPAREN2] = ACTIONS(2359), + [anon_sym_BANG] = ACTIONS(2359), + [anon_sym_TILDE] = ACTIONS(2359), + [anon_sym_DASH] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2359), + [anon_sym_AMP_AMP] = ACTIONS(2359), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2359), + [anon_sym___extension__] = ACTIONS(2357), + [anon_sym_typedef] = ACTIONS(2357), + [anon_sym_virtual] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2357), + [anon_sym___attribute__] = ACTIONS(2357), + [anon_sym___attribute] = ACTIONS(2357), + [anon_sym_COLON_COLON] = ACTIONS(2359), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2359), + [anon_sym___declspec] = ACTIONS(2357), + [anon_sym___based] = ACTIONS(2357), + [anon_sym___cdecl] = ACTIONS(2357), + [anon_sym___clrcall] = ACTIONS(2357), + [anon_sym___stdcall] = ACTIONS(2357), + [anon_sym___fastcall] = ACTIONS(2357), + [anon_sym___thiscall] = ACTIONS(2357), + [anon_sym___vectorcall] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_signed] = ACTIONS(2357), + [anon_sym_unsigned] = ACTIONS(2357), + [anon_sym_long] = ACTIONS(2357), + [anon_sym_short] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_register] = ACTIONS(2357), + [anon_sym_inline] = ACTIONS(2357), + [anon_sym___inline] = ACTIONS(2357), + [anon_sym___inline__] = ACTIONS(2357), + [anon_sym___forceinline] = ACTIONS(2357), + [anon_sym_thread_local] = ACTIONS(2357), + [anon_sym___thread] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_constexpr] = ACTIONS(2357), + [anon_sym_volatile] = ACTIONS(2357), + [anon_sym_restrict] = ACTIONS(2357), + [anon_sym___restrict__] = ACTIONS(2357), + [anon_sym__Atomic] = ACTIONS(2357), + [anon_sym__Noreturn] = ACTIONS(2357), + [anon_sym_noreturn] = ACTIONS(2357), + [anon_sym__Nonnull] = ACTIONS(2357), + [anon_sym_mutable] = ACTIONS(2357), + [anon_sym_constinit] = ACTIONS(2357), + [anon_sym_consteval] = ACTIONS(2357), + [anon_sym_alignas] = ACTIONS(2357), + [anon_sym__Alignas] = ACTIONS(2357), + [sym_primitive_type] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_class] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_switch] = ACTIONS(2357), + [anon_sym_case] = ACTIONS(2357), + [anon_sym_default] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [anon_sym_do] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_goto] = ACTIONS(2357), + [anon_sym_not] = ACTIONS(2357), + [anon_sym_compl] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2359), + [anon_sym_PLUS_PLUS] = ACTIONS(2359), + [anon_sym_sizeof] = ACTIONS(2357), + [anon_sym___alignof__] = ACTIONS(2357), + [anon_sym___alignof] = ACTIONS(2357), + [anon_sym__alignof] = ACTIONS(2357), + [anon_sym_alignof] = ACTIONS(2357), + [anon_sym__Alignof] = ACTIONS(2357), + [anon_sym_offsetof] = ACTIONS(2357), + [anon_sym__Generic] = ACTIONS(2357), + [anon_sym_asm] = ACTIONS(2357), + [anon_sym___asm__] = ACTIONS(2357), + [anon_sym___asm] = ACTIONS(2357), + [sym_number_literal] = ACTIONS(2359), + [anon_sym_L_SQUOTE] = ACTIONS(2359), + [anon_sym_u_SQUOTE] = ACTIONS(2359), + [anon_sym_U_SQUOTE] = ACTIONS(2359), + [anon_sym_u8_SQUOTE] = ACTIONS(2359), + [anon_sym_SQUOTE] = ACTIONS(2359), + [anon_sym_L_DQUOTE] = ACTIONS(2359), + [anon_sym_u_DQUOTE] = ACTIONS(2359), + [anon_sym_U_DQUOTE] = ACTIONS(2359), + [anon_sym_u8_DQUOTE] = ACTIONS(2359), + [anon_sym_DQUOTE] = ACTIONS(2359), + [sym_true] = ACTIONS(2357), + [sym_false] = ACTIONS(2357), + [anon_sym_NULL] = ACTIONS(2357), + [anon_sym_nullptr] = ACTIONS(2357), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2357), + [anon_sym_decltype] = ACTIONS(2357), + [anon_sym_explicit] = ACTIONS(2357), + [anon_sym_typename] = ACTIONS(2357), + [anon_sym_template] = ACTIONS(2357), + [anon_sym_operator] = ACTIONS(2357), + [anon_sym_try] = ACTIONS(2357), + [anon_sym_delete] = ACTIONS(2357), + [anon_sym_throw] = ACTIONS(2357), + [anon_sym_namespace] = ACTIONS(2357), + [anon_sym_using] = ACTIONS(2357), + [anon_sym_static_assert] = ACTIONS(2357), + [anon_sym_concept] = ACTIONS(2357), + [anon_sym_co_return] = ACTIONS(2357), + [anon_sym_co_yield] = ACTIONS(2357), + [anon_sym_R_DQUOTE] = ACTIONS(2359), + [anon_sym_LR_DQUOTE] = ACTIONS(2359), + [anon_sym_uR_DQUOTE] = ACTIONS(2359), + [anon_sym_UR_DQUOTE] = ACTIONS(2359), + [anon_sym_u8R_DQUOTE] = ACTIONS(2359), + [anon_sym_co_await] = ACTIONS(2357), + [anon_sym_new] = ACTIONS(2357), + [anon_sym_requires] = ACTIONS(2357), + [sym_this] = ACTIONS(2357), + [sym_alone_macro] = ACTIONS(2359), + [aux_sym_alone_macro_call_token1] = ACTIONS(2357), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2357), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_FORWARD] = ACTIONS(2357), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2357), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2357), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2357), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2357), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_PS_GET] = ACTIONS(2357), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2357), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2357), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2357), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2357), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2357), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2357), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2357), + [anon_sym_MOZ_COLD] = ACTIONS(2357), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2357), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2357), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2357), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2357), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2357), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2357), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2357), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2357), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2357), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2357), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2357), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2357), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2357), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_NONNULL] = ACTIONS(2357), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2357), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2357), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2357), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2357), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2357), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2357), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2357), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2357), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2357), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2357), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2357), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2357), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2357), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2357), + [anon_sym_MOZ_RAII] = ACTIONS(2357), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2357), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2357), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2357), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2357), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2357), + }, + [STATE(460)] = { + [ts_builtin_sym_end] = ACTIONS(2363), + [sym_identifier] = ACTIONS(2361), + [aux_sym_preproc_include_token1] = ACTIONS(2361), + [aux_sym_preproc_def_token1] = ACTIONS(2361), + [aux_sym_preproc_if_token1] = ACTIONS(2361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2361), + [sym_preproc_directive] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(2363), + [anon_sym_AMP_AMP] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym___extension__] = ACTIONS(2361), + [anon_sym_typedef] = ACTIONS(2361), + [anon_sym_virtual] = ACTIONS(2361), + [anon_sym_extern] = ACTIONS(2361), + [anon_sym___attribute__] = ACTIONS(2361), + [anon_sym___attribute] = ACTIONS(2361), + [anon_sym_COLON_COLON] = ACTIONS(2363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2363), + [anon_sym___declspec] = ACTIONS(2361), + [anon_sym___based] = ACTIONS(2361), + [anon_sym___cdecl] = ACTIONS(2361), + [anon_sym___clrcall] = ACTIONS(2361), + [anon_sym___stdcall] = ACTIONS(2361), + [anon_sym___fastcall] = ACTIONS(2361), + [anon_sym___thiscall] = ACTIONS(2361), + [anon_sym___vectorcall] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_signed] = ACTIONS(2361), + [anon_sym_unsigned] = ACTIONS(2361), + [anon_sym_long] = ACTIONS(2361), + [anon_sym_short] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_register] = ACTIONS(2361), + [anon_sym_inline] = ACTIONS(2361), + [anon_sym___inline] = ACTIONS(2361), + [anon_sym___inline__] = ACTIONS(2361), + [anon_sym___forceinline] = ACTIONS(2361), + [anon_sym_thread_local] = ACTIONS(2361), + [anon_sym___thread] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_constexpr] = ACTIONS(2361), + [anon_sym_volatile] = ACTIONS(2361), + [anon_sym_restrict] = ACTIONS(2361), + [anon_sym___restrict__] = ACTIONS(2361), + [anon_sym__Atomic] = ACTIONS(2361), + [anon_sym__Noreturn] = ACTIONS(2361), + [anon_sym_noreturn] = ACTIONS(2361), + [anon_sym__Nonnull] = ACTIONS(2361), + [anon_sym_mutable] = ACTIONS(2361), + [anon_sym_constinit] = ACTIONS(2361), + [anon_sym_consteval] = ACTIONS(2361), + [anon_sym_alignas] = ACTIONS(2361), + [anon_sym__Alignas] = ACTIONS(2361), + [sym_primitive_type] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_class] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2361), + [anon_sym_union] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_switch] = ACTIONS(2361), + [anon_sym_case] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_do] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_goto] = ACTIONS(2361), + [anon_sym_not] = ACTIONS(2361), + [anon_sym_compl] = ACTIONS(2361), + [anon_sym_DASH_DASH] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_sizeof] = ACTIONS(2361), + [anon_sym___alignof__] = ACTIONS(2361), + [anon_sym___alignof] = ACTIONS(2361), + [anon_sym__alignof] = ACTIONS(2361), + [anon_sym_alignof] = ACTIONS(2361), + [anon_sym__Alignof] = ACTIONS(2361), + [anon_sym_offsetof] = ACTIONS(2361), + [anon_sym__Generic] = ACTIONS(2361), + [anon_sym_asm] = ACTIONS(2361), + [anon_sym___asm__] = ACTIONS(2361), + [anon_sym___asm] = ACTIONS(2361), + [sym_number_literal] = ACTIONS(2363), + [anon_sym_L_SQUOTE] = ACTIONS(2363), + [anon_sym_u_SQUOTE] = ACTIONS(2363), + [anon_sym_U_SQUOTE] = ACTIONS(2363), + [anon_sym_u8_SQUOTE] = ACTIONS(2363), + [anon_sym_SQUOTE] = ACTIONS(2363), + [anon_sym_L_DQUOTE] = ACTIONS(2363), + [anon_sym_u_DQUOTE] = ACTIONS(2363), + [anon_sym_U_DQUOTE] = ACTIONS(2363), + [anon_sym_u8_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [sym_true] = ACTIONS(2361), + [sym_false] = ACTIONS(2361), + [anon_sym_NULL] = ACTIONS(2361), + [anon_sym_nullptr] = ACTIONS(2361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2361), + [anon_sym_decltype] = ACTIONS(2361), + [anon_sym_explicit] = ACTIONS(2361), + [anon_sym_typename] = ACTIONS(2361), + [anon_sym_template] = ACTIONS(2361), + [anon_sym_operator] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2361), + [anon_sym_delete] = ACTIONS(2361), + [anon_sym_throw] = ACTIONS(2361), + [anon_sym_namespace] = ACTIONS(2361), + [anon_sym_using] = ACTIONS(2361), + [anon_sym_static_assert] = ACTIONS(2361), + [anon_sym_concept] = ACTIONS(2361), + [anon_sym_co_return] = ACTIONS(2361), + [anon_sym_co_yield] = 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(2361), + [anon_sym_new] = ACTIONS(2361), + [anon_sym_requires] = ACTIONS(2361), + [sym_this] = ACTIONS(2361), + [sym_alone_macro] = ACTIONS(2363), + [aux_sym_alone_macro_call_token1] = ACTIONS(2361), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2361), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_FORWARD] = ACTIONS(2361), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2361), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2361), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2361), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2361), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_PS_GET] = ACTIONS(2361), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2361), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2361), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2361), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2361), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2361), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2361), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2361), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2361), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2361), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2361), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2361), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2361), + [anon_sym_MOZ_COLD] = ACTIONS(2361), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2361), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2361), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2361), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2361), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2361), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2361), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2361), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2361), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2361), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2361), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2361), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2361), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2361), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2361), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2361), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2361), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2361), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2361), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2361), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2361), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2361), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_NONNULL] = ACTIONS(2361), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2361), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2361), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2361), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2361), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2361), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_NORETURN] = ACTIONS(2361), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2361), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2361), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2361), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2361), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2361), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2361), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2361), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2361), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2361), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2361), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2361), + [anon_sym_MOZ_RAII] = ACTIONS(2361), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2361), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2361), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2361), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2361), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2361), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2361), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2361), + }, + [STATE(461)] = { + [ts_builtin_sym_end] = ACTIONS(2262), [sym_identifier] = ACTIONS(2260), - [anon_sym_COMMA] = ACTIONS(2262), - [anon_sym_RPAREN] = ACTIONS(2262), + [aux_sym_preproc_include_token1] = ACTIONS(2260), + [aux_sym_preproc_def_token1] = ACTIONS(2260), + [aux_sym_preproc_if_token1] = ACTIONS(2260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2260), + [sym_preproc_directive] = ACTIONS(2260), [anon_sym_LPAREN2] = ACTIONS(2262), + [anon_sym_BANG] = ACTIONS(2262), [anon_sym_TILDE] = ACTIONS(2262), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_PLUS] = ACTIONS(2260), [anon_sym_STAR] = ACTIONS(2262), [anon_sym_AMP_AMP] = ACTIONS(2262), [anon_sym_AMP] = ACTIONS(2260), [anon_sym_SEMI] = ACTIONS(2262), + [anon_sym___extension__] = ACTIONS(2260), + [anon_sym_typedef] = ACTIONS(2260), + [anon_sym_virtual] = ACTIONS(2260), [anon_sym_extern] = ACTIONS(2260), [anon_sym___attribute__] = ACTIONS(2260), + [anon_sym___attribute] = ACTIONS(2260), [anon_sym_COLON_COLON] = ACTIONS(2262), [anon_sym_LBRACK_LBRACK] = ACTIONS(2262), [anon_sym___declspec] = ACTIONS(2260), [anon_sym___based] = ACTIONS(2260), + [anon_sym___cdecl] = ACTIONS(2260), + [anon_sym___clrcall] = ACTIONS(2260), + [anon_sym___stdcall] = ACTIONS(2260), + [anon_sym___fastcall] = ACTIONS(2260), + [anon_sym___thiscall] = ACTIONS(2260), + [anon_sym___vectorcall] = ACTIONS(2260), [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_signed] = ACTIONS(2260), + [anon_sym_unsigned] = ACTIONS(2260), + [anon_sym_long] = ACTIONS(2260), + [anon_sym_short] = ACTIONS(2260), [anon_sym_LBRACK] = ACTIONS(2260), - [anon_sym_EQ] = ACTIONS(2262), [anon_sym_static] = ACTIONS(2260), [anon_sym_register] = ACTIONS(2260), [anon_sym_inline] = ACTIONS(2260), + [anon_sym___inline] = ACTIONS(2260), + [anon_sym___inline__] = ACTIONS(2260), + [anon_sym___forceinline] = ACTIONS(2260), [anon_sym_thread_local] = ACTIONS(2260), + [anon_sym___thread] = ACTIONS(2260), [anon_sym_const] = ACTIONS(2260), + [anon_sym_constexpr] = ACTIONS(2260), [anon_sym_volatile] = ACTIONS(2260), [anon_sym_restrict] = ACTIONS(2260), + [anon_sym___restrict__] = ACTIONS(2260), [anon_sym__Atomic] = ACTIONS(2260), + [anon_sym__Noreturn] = ACTIONS(2260), + [anon_sym_noreturn] = ACTIONS(2260), + [anon_sym__Nonnull] = ACTIONS(2260), [anon_sym_mutable] = ACTIONS(2260), - [anon_sym_constexpr] = ACTIONS(2260), - [anon_sym_signed] = ACTIONS(2260), - [anon_sym_unsigned] = ACTIONS(2260), - [anon_sym_long] = ACTIONS(2260), - [anon_sym_short] = ACTIONS(2260), + [anon_sym_constinit] = ACTIONS(2260), + [anon_sym_consteval] = ACTIONS(2260), + [anon_sym_alignas] = ACTIONS(2260), + [anon_sym__Alignas] = ACTIONS(2260), [sym_primitive_type] = ACTIONS(2260), [anon_sym_enum] = ACTIONS(2260), [anon_sym_class] = ACTIONS(2260), [anon_sym_struct] = ACTIONS(2260), [anon_sym_union] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_switch] = ACTIONS(2260), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_break] = ACTIONS(2260), + [anon_sym_continue] = ACTIONS(2260), + [anon_sym_goto] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(2260), + [anon_sym_compl] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2260), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2260), + [anon_sym_asm] = ACTIONS(2260), + [anon_sym___asm__] = ACTIONS(2260), + [anon_sym___asm] = ACTIONS(2260), + [sym_number_literal] = ACTIONS(2262), + [anon_sym_L_SQUOTE] = ACTIONS(2262), + [anon_sym_u_SQUOTE] = ACTIONS(2262), + [anon_sym_U_SQUOTE] = ACTIONS(2262), + [anon_sym_u8_SQUOTE] = ACTIONS(2262), + [anon_sym_SQUOTE] = ACTIONS(2262), + [anon_sym_L_DQUOTE] = ACTIONS(2262), + [anon_sym_u_DQUOTE] = ACTIONS(2262), + [anon_sym_U_DQUOTE] = ACTIONS(2262), + [anon_sym_u8_DQUOTE] = ACTIONS(2262), + [anon_sym_DQUOTE] = ACTIONS(2262), + [sym_true] = ACTIONS(2260), + [sym_false] = ACTIONS(2260), + [anon_sym_NULL] = ACTIONS(2260), + [anon_sym_nullptr] = ACTIONS(2260), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2260), [anon_sym_decltype] = ACTIONS(2260), - [anon_sym_virtual] = ACTIONS(2260), [anon_sym_explicit] = ACTIONS(2260), - [sym_auto] = ACTIONS(2260), [anon_sym_typename] = ACTIONS(2260), [anon_sym_template] = ACTIONS(2260), - [anon_sym_GT2] = ACTIONS(2262), [anon_sym_operator] = ACTIONS(2260), + [anon_sym_try] = ACTIONS(2260), + [anon_sym_delete] = ACTIONS(2260), + [anon_sym_throw] = ACTIONS(2260), + [anon_sym_namespace] = ACTIONS(2260), + [anon_sym_using] = ACTIONS(2260), + [anon_sym_static_assert] = ACTIONS(2260), + [anon_sym_concept] = ACTIONS(2260), + [anon_sym_co_return] = ACTIONS(2260), + [anon_sym_co_yield] = ACTIONS(2260), + [anon_sym_R_DQUOTE] = ACTIONS(2262), + [anon_sym_LR_DQUOTE] = ACTIONS(2262), + [anon_sym_uR_DQUOTE] = ACTIONS(2262), + [anon_sym_UR_DQUOTE] = ACTIONS(2262), + [anon_sym_u8R_DQUOTE] = ACTIONS(2262), + [anon_sym_co_await] = ACTIONS(2260), + [anon_sym_new] = ACTIONS(2260), + [anon_sym_requires] = ACTIONS(2260), + [sym_this] = ACTIONS(2260), + [sym_alone_macro] = ACTIONS(2262), + [aux_sym_alone_macro_call_token1] = ACTIONS(2260), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_FORWARD] = ACTIONS(2260), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2260), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_PS_GET] = ACTIONS(2260), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2260), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2260), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2260), [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2260), [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2260), [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2260), @@ -246356,3145 +158806,17030 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2260), [anon_sym_JS_PUBLIC_API] = ACTIONS(2260), }, - [1255] = { - [sym_type_qualifier] = STATE(2532), - [sym__type_specifier] = STATE(3254), - [sym_sized_type_specifier] = STATE(2408), - [sym_enum_specifier] = STATE(2408), - [sym_struct_specifier] = STATE(2408), - [sym_union_specifier] = STATE(2408), - [sym__expression] = STATE(2838), - [sym_comma_expression] = STATE(4923), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_type_descriptor] = STATE(5089), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(2408), - [sym_class_specifier] = STATE(2408), - [sym__class_name] = STATE(4792), - [sym_dependent_type] = STATE(2408), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3534), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(2532), - [aux_sym_sized_type_specifier_repeat1] = STATE(2027), - [sym_identifier] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2538), - [anon_sym_unsigned] = ACTIONS(2538), - [anon_sym_long] = ACTIONS(2538), - [anon_sym_short] = ACTIONS(2538), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2542), - [anon_sym_class] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2546), - [anon_sym_union] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2550), - [sym_auto] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2554), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1256] = { - [sym_ms_based_modifier] = STATE(4944), - [sym_ms_unaligned_ptr_modifier] = STATE(3280), - [sym_ms_pointer_modifier] = STATE(2228), - [sym__declarator] = STATE(3743), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3720), - [sym_array_declarator] = STATE(3720), - [sym_type_qualifier] = STATE(2608), - [sym__expression] = STATE(2214), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2229), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3511), - [sym_qualified_identifier] = STATE(2252), - [sym_qualified_type_identifier] = STATE(4751), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(2608), - [aux_sym_pointer_declarator_repeat1] = STATE(2228), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(3312), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3314), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym___based] = ACTIONS(47), - [sym_ms_restrict_modifier] = ACTIONS(3316), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3316), - [sym_ms_signed_ptr_modifier] = ACTIONS(3316), - [anon_sym__unaligned] = ACTIONS(3318), - [anon_sym___unaligned] = ACTIONS(3318), - [anon_sym_LBRACK] = ACTIONS(2536), - [anon_sym_const] = ACTIONS(3320), - [anon_sym_volatile] = ACTIONS(3320), - [anon_sym_restrict] = ACTIONS(3320), - [anon_sym__Atomic] = ACTIONS(3320), - [anon_sym_mutable] = ACTIONS(3320), - [anon_sym_constexpr] = ACTIONS(3320), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(2367), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1257] = { - [sym_type_qualifier] = STATE(2532), - [sym__type_specifier] = STATE(3254), - [sym_sized_type_specifier] = STATE(2408), - [sym_enum_specifier] = STATE(2408), - [sym_struct_specifier] = STATE(2408), - [sym_union_specifier] = STATE(2408), - [sym__expression] = STATE(2838), - [sym_comma_expression] = STATE(4923), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_type_descriptor] = STATE(5043), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(2408), - [sym_class_specifier] = STATE(2408), - [sym__class_name] = STATE(4792), - [sym_dependent_type] = STATE(2408), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3534), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(2532), - [aux_sym_sized_type_specifier_repeat1] = STATE(2027), - [sym_identifier] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2538), - [anon_sym_unsigned] = ACTIONS(2538), - [anon_sym_long] = ACTIONS(2538), - [anon_sym_short] = ACTIONS(2538), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2542), - [anon_sym_class] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2546), - [anon_sym_union] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2550), - [sym_auto] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2554), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1258] = { - [sym_type_qualifier] = STATE(2532), - [sym__type_specifier] = STATE(3254), - [sym_sized_type_specifier] = STATE(2408), - [sym_enum_specifier] = STATE(2408), - [sym_struct_specifier] = STATE(2408), - [sym_union_specifier] = STATE(2408), - [sym__expression] = STATE(2923), - [sym_comma_expression] = STATE(5009), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_type_descriptor] = STATE(5122), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(2408), - [sym_class_specifier] = STATE(2408), - [sym__class_name] = STATE(4792), - [sym_dependent_type] = STATE(2408), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3534), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(2532), - [aux_sym_sized_type_specifier_repeat1] = STATE(2027), - [sym_identifier] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2538), - [anon_sym_unsigned] = ACTIONS(2538), - [anon_sym_long] = ACTIONS(2538), - [anon_sym_short] = ACTIONS(2538), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2542), - [anon_sym_class] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2546), - [anon_sym_union] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2550), - [sym_auto] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2554), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1259] = { - [sym_type_qualifier] = STATE(2532), - [sym__type_specifier] = STATE(3254), - [sym_sized_type_specifier] = STATE(2408), - [sym_enum_specifier] = STATE(2408), - [sym_struct_specifier] = STATE(2408), - [sym_union_specifier] = STATE(2408), - [sym__expression] = STATE(2923), - [sym_comma_expression] = STATE(5009), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_type_descriptor] = STATE(5102), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(2408), - [sym_class_specifier] = STATE(2408), - [sym__class_name] = STATE(4792), - [sym_dependent_type] = STATE(2408), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3534), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(2532), - [aux_sym_sized_type_specifier_repeat1] = STATE(2027), - [sym_identifier] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2538), - [anon_sym_unsigned] = ACTIONS(2538), - [anon_sym_long] = ACTIONS(2538), - [anon_sym_short] = ACTIONS(2538), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2542), - [anon_sym_class] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2546), - [anon_sym_union] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2550), - [sym_auto] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2554), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1260] = { - [sym_type_qualifier] = STATE(2532), - [sym__type_specifier] = STATE(3254), - [sym_sized_type_specifier] = STATE(2408), - [sym_enum_specifier] = STATE(2408), - [sym_struct_specifier] = STATE(2408), - [sym_union_specifier] = STATE(2408), - [sym__expression] = STATE(2923), - [sym_comma_expression] = STATE(5009), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_type_descriptor] = STATE(4889), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(2408), - [sym_class_specifier] = STATE(2408), - [sym__class_name] = STATE(4792), - [sym_dependent_type] = STATE(2408), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3534), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(2532), - [aux_sym_sized_type_specifier_repeat1] = STATE(2027), - [sym_identifier] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2538), - [anon_sym_unsigned] = ACTIONS(2538), - [anon_sym_long] = ACTIONS(2538), - [anon_sym_short] = ACTIONS(2538), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2542), - [anon_sym_class] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2546), - [anon_sym_union] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2550), - [sym_auto] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2554), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1261] = { - [sym_string_literal] = STATE(795), - [sym_identifier] = 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_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_LBRACK] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_register] = ACTIONS(3302), - [anon_sym_inline] = ACTIONS(3302), - [anon_sym_thread_local] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_volatile] = ACTIONS(3302), - [anon_sym_restrict] = ACTIONS(3302), - [anon_sym__Atomic] = ACTIONS(3302), - [anon_sym_mutable] = ACTIONS(3302), - [anon_sym_constexpr] = ACTIONS(3302), - [anon_sym_signed] = ACTIONS(3302), - [anon_sym_unsigned] = ACTIONS(3302), - [anon_sym_long] = ACTIONS(3302), - [anon_sym_short] = 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_L_DQUOTE] = ACTIONS(3306), - [anon_sym_u_DQUOTE] = ACTIONS(3306), - [anon_sym_U_DQUOTE] = ACTIONS(3306), - [anon_sym_u8_DQUOTE] = ACTIONS(3306), - [anon_sym_DQUOTE] = ACTIONS(3306), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3302), - [anon_sym_virtual] = ACTIONS(3302), - [anon_sym_explicit] = ACTIONS(3302), - [sym_auto] = ACTIONS(3302), - [anon_sym_typename] = ACTIONS(3302), - [anon_sym_template] = ACTIONS(3302), - [anon_sym_operator] = ACTIONS(3302), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3302), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3302), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3302), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3302), - [anon_sym_MOZ_COLD] = ACTIONS(3302), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3302), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3302), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3302), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3302), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3302), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3302), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3302), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3302), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3302), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3302), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3302), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3302), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3302), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_NONNULL] = ACTIONS(3302), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3302), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3302), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3302), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3302), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3302), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3302), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3302), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3302), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3302), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3302), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3302), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3302), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3302), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3302), - [anon_sym_MOZ_RAII] = ACTIONS(3302), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3302), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3302), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3302), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3302), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3302), - }, - [1262] = { - [sym_type_qualifier] = STATE(2544), - [sym__type_specifier] = STATE(3251), - [sym_sized_type_specifier] = STATE(2558), - [sym_enum_specifier] = STATE(2558), - [sym_struct_specifier] = STATE(2558), - [sym_union_specifier] = STATE(2558), - [sym__expression] = STATE(2788), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_type_descriptor] = STATE(4217), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym_decltype] = STATE(2558), - [sym_class_specifier] = STATE(2558), - [sym__class_name] = STATE(4690), - [sym_dependent_type] = STATE(2558), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_type_parameter_pack_expansion] = STATE(4648), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3533), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [aux_sym_type_definition_repeat1] = STATE(2544), - [aux_sym_sized_type_specifier_repeat1] = STATE(2255), - [sym_identifier] = ACTIONS(3220), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(3232), - [anon_sym_unsigned] = ACTIONS(3232), - [anon_sym_long] = ACTIONS(3232), - [anon_sym_short] = ACTIONS(3232), - [sym_primitive_type] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3236), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_struct] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3256), - [sym_auto] = ACTIONS(3258), - [anon_sym_typename] = ACTIONS(3260), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1263] = { - [sym_type_qualifier] = STATE(2532), - [sym__type_specifier] = STATE(3254), - [sym_sized_type_specifier] = STATE(2408), - [sym_enum_specifier] = STATE(2408), - [sym_struct_specifier] = STATE(2408), - [sym_union_specifier] = STATE(2408), - [sym__expression] = STATE(2923), - [sym_comma_expression] = STATE(5009), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_type_descriptor] = STATE(4921), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(2408), - [sym_class_specifier] = STATE(2408), - [sym__class_name] = STATE(4792), - [sym_dependent_type] = STATE(2408), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3534), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(2532), - [aux_sym_sized_type_specifier_repeat1] = STATE(2027), - [sym_identifier] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2538), - [anon_sym_unsigned] = ACTIONS(2538), - [anon_sym_long] = ACTIONS(2538), - [anon_sym_short] = ACTIONS(2538), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2542), - [anon_sym_class] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2546), - [anon_sym_union] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2550), - [sym_auto] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2554), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1264] = { - [sym_type_qualifier] = STATE(2532), - [sym__type_specifier] = STATE(3254), - [sym_sized_type_specifier] = STATE(2408), - [sym_enum_specifier] = STATE(2408), - [sym_struct_specifier] = STATE(2408), - [sym_union_specifier] = STATE(2408), - [sym__expression] = STATE(2838), - [sym_comma_expression] = STATE(4923), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_type_descriptor] = STATE(5264), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(2408), - [sym_class_specifier] = STATE(2408), - [sym__class_name] = STATE(4792), - [sym_dependent_type] = STATE(2408), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3534), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(2532), - [aux_sym_sized_type_specifier_repeat1] = STATE(2027), - [sym_identifier] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2538), - [anon_sym_unsigned] = ACTIONS(2538), - [anon_sym_long] = ACTIONS(2538), - [anon_sym_short] = ACTIONS(2538), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2542), - [anon_sym_class] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2546), - [anon_sym_union] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2550), - [sym_auto] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2554), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1265] = { - [sym_type_qualifier] = STATE(2532), - [sym__type_specifier] = STATE(3254), - [sym_sized_type_specifier] = STATE(2408), - [sym_enum_specifier] = STATE(2408), - [sym_struct_specifier] = STATE(2408), - [sym_union_specifier] = STATE(2408), - [sym__expression] = STATE(2923), - [sym_comma_expression] = STATE(5009), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_type_descriptor] = STATE(5137), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(2408), - [sym_class_specifier] = STATE(2408), - [sym__class_name] = STATE(4792), - [sym_dependent_type] = STATE(2408), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3534), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(2532), - [aux_sym_sized_type_specifier_repeat1] = STATE(2027), - [sym_identifier] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2538), - [anon_sym_unsigned] = ACTIONS(2538), - [anon_sym_long] = ACTIONS(2538), - [anon_sym_short] = ACTIONS(2538), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2542), - [anon_sym_class] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2546), - [anon_sym_union] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2550), - [sym_auto] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2554), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1266] = { - [sym_identifier] = ACTIONS(2278), - [anon_sym_COMMA] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_extern] = ACTIONS(2278), - [anon_sym___attribute__] = ACTIONS(2278), - [anon_sym_COLON_COLON] = ACTIONS(2280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2280), - [anon_sym___declspec] = ACTIONS(2278), - [anon_sym___based] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_EQ] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2278), - [anon_sym_register] = ACTIONS(2278), - [anon_sym_inline] = ACTIONS(2278), - [anon_sym_thread_local] = ACTIONS(2278), - [anon_sym_const] = ACTIONS(2278), - [anon_sym_volatile] = ACTIONS(2278), - [anon_sym_restrict] = ACTIONS(2278), - [anon_sym__Atomic] = ACTIONS(2278), - [anon_sym_mutable] = ACTIONS(2278), - [anon_sym_constexpr] = ACTIONS(2278), - [anon_sym_signed] = ACTIONS(2278), - [anon_sym_unsigned] = ACTIONS(2278), - [anon_sym_long] = ACTIONS(2278), - [anon_sym_short] = ACTIONS(2278), - [sym_primitive_type] = ACTIONS(2278), - [anon_sym_enum] = ACTIONS(2278), - [anon_sym_class] = ACTIONS(2278), - [anon_sym_struct] = ACTIONS(2278), - [anon_sym_union] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2278), - [anon_sym_virtual] = ACTIONS(2278), - [anon_sym_explicit] = ACTIONS(2278), - [sym_auto] = ACTIONS(2278), - [anon_sym_typename] = ACTIONS(2278), - [anon_sym_template] = ACTIONS(2278), - [anon_sym_GT2] = ACTIONS(2280), - [anon_sym_operator] = ACTIONS(2278), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2278), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2278), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2278), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2278), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2278), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2278), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2278), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2278), - [anon_sym_MOZ_COLD] = ACTIONS(2278), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2278), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2278), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2278), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2278), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2278), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2278), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2278), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2278), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2278), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2278), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2278), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2278), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2278), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2278), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2278), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2278), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2278), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2278), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2278), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2278), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_NONNULL] = ACTIONS(2278), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2278), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2278), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2278), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2278), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2278), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_NORETURN] = ACTIONS(2278), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2278), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2278), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2278), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2278), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2278), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2278), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2278), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2278), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2278), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2278), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2278), - [anon_sym_MOZ_RAII] = ACTIONS(2278), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2278), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2278), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2278), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2278), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2278), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2278), - }, - [1267] = { - [sym_type_qualifier] = STATE(2532), - [sym__type_specifier] = STATE(3254), - [sym_sized_type_specifier] = STATE(2408), - [sym_enum_specifier] = STATE(2408), - [sym_struct_specifier] = STATE(2408), - [sym_union_specifier] = STATE(2408), - [sym__expression] = STATE(2923), - [sym_comma_expression] = STATE(5009), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_type_descriptor] = STATE(5024), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym_decltype] = STATE(2408), - [sym_class_specifier] = STATE(2408), - [sym__class_name] = STATE(4792), - [sym_dependent_type] = STATE(2408), - [sym_template_type] = STATE(3444), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3534), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(3462), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(2532), - [aux_sym_sized_type_specifier_repeat1] = STATE(2027), - [sym_identifier] = ACTIONS(3308), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2538), - [anon_sym_unsigned] = ACTIONS(2538), - [anon_sym_long] = ACTIONS(2538), - [anon_sym_short] = ACTIONS(2538), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2542), - [anon_sym_class] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2546), - [anon_sym_union] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2550), - [sym_auto] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2554), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1268] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1268), - [sym_identifier] = ACTIONS(3322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3324), - [anon_sym_COMMA] = ACTIONS(3324), - [anon_sym_RPAREN] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_STAR] = ACTIONS(3324), - [anon_sym_AMP_AMP] = ACTIONS(3324), - [anon_sym_AMP] = ACTIONS(3322), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_extern] = ACTIONS(3322), - [anon_sym___attribute__] = ACTIONS(3322), - [anon_sym_COLON_COLON] = ACTIONS(3324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), - [anon_sym___declspec] = ACTIONS(3322), - [anon_sym___based] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_EQ] = ACTIONS(3324), - [anon_sym_static] = ACTIONS(3322), - [anon_sym_register] = ACTIONS(3322), - [anon_sym_inline] = ACTIONS(3322), - [anon_sym_thread_local] = ACTIONS(3322), - [anon_sym_const] = ACTIONS(3322), - [anon_sym_volatile] = ACTIONS(3322), - [anon_sym_restrict] = ACTIONS(3322), - [anon_sym__Atomic] = ACTIONS(3322), - [anon_sym_mutable] = ACTIONS(3322), - [anon_sym_constexpr] = ACTIONS(3322), - [anon_sym_signed] = ACTIONS(3326), - [anon_sym_unsigned] = ACTIONS(3326), - [anon_sym_long] = ACTIONS(3326), - [anon_sym_short] = ACTIONS(3326), - [sym_primitive_type] = ACTIONS(3322), - [anon_sym_DASH_GT] = ACTIONS(3324), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3322), - [anon_sym_override] = ACTIONS(3322), - [anon_sym_virtual] = ACTIONS(3322), - [anon_sym_template] = ACTIONS(3322), - [anon_sym_GT2] = ACTIONS(3324), - [anon_sym_operator] = ACTIONS(3322), - [anon_sym_noexcept] = ACTIONS(3322), - [anon_sym_throw] = ACTIONS(3322), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3322), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3322), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3322), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3322), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3322), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3322), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3322), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3322), - [anon_sym_MOZ_COLD] = ACTIONS(3322), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3322), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3322), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3322), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3322), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3322), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3322), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3322), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3322), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3322), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3322), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3322), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3322), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3322), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3322), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3322), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3322), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3322), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3322), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3322), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3322), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3322), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3322), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3322), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3322), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3322), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3322), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3322), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3322), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3322), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3322), - [anon_sym_MOZ_NONNULL] = ACTIONS(3322), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3322), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3322), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3322), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3322), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3322), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3322), - [anon_sym_MOZ_NORETURN] = ACTIONS(3322), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3322), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3322), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3322), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3322), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3322), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3322), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3322), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3322), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3322), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3322), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3322), - [anon_sym_MOZ_RAII] = ACTIONS(3322), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3322), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3322), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3322), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3322), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3322), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3322), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3322), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3322), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3322), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3322), - }, - [1269] = { - [sym__declaration_modifiers] = STATE(1269), - [sym_attribute_specifier] = STATE(1269), - [sym_attribute_declaration] = STATE(1269), - [sym_ms_declspec_modifier] = STATE(1269), - [sym_storage_class_specifier] = STATE(1269), - [sym_type_qualifier] = STATE(1269), - [sym_virtual_function_specifier] = STATE(1269), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1269), - [sym_identifier] = ACTIONS(3329), - [anon_sym_LPAREN2] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_AMP_AMP] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(3329), - [anon_sym_extern] = ACTIONS(3333), - [anon_sym___attribute__] = ACTIONS(3336), - [anon_sym_COLON_COLON] = ACTIONS(3331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3339), - [anon_sym___declspec] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_register] = ACTIONS(3333), - [anon_sym_inline] = ACTIONS(3333), - [anon_sym_thread_local] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3345), - [anon_sym_volatile] = ACTIONS(3345), - [anon_sym_restrict] = ACTIONS(3345), - [anon_sym__Atomic] = ACTIONS(3345), - [anon_sym_mutable] = ACTIONS(3345), - [anon_sym_constexpr] = ACTIONS(3345), - [anon_sym_signed] = ACTIONS(3329), - [anon_sym_unsigned] = ACTIONS(3329), - [anon_sym_long] = ACTIONS(3329), - [anon_sym_short] = ACTIONS(3329), - [sym_primitive_type] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3329), - [anon_sym_union] = ACTIONS(3329), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3329), - [anon_sym_virtual] = ACTIONS(3348), - [sym_auto] = ACTIONS(3329), - [anon_sym_typename] = ACTIONS(3329), - [anon_sym_template] = ACTIONS(3329), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3351), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3351), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3351), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3351), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3351), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3351), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3351), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3351), - [anon_sym_MOZ_COLD] = ACTIONS(3351), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3351), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3351), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3351), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3351), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3351), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3351), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3351), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3351), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3351), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3351), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3351), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3351), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3351), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3351), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3351), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3351), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3351), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3351), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3351), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3351), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3351), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3351), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3351), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3351), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3351), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3351), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3351), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3351), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3351), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3351), - [anon_sym_MOZ_NONNULL] = ACTIONS(3351), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3351), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3351), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3351), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3351), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3351), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3351), - [anon_sym_MOZ_NORETURN] = ACTIONS(3351), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3351), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3351), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3351), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3351), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3351), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3351), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3351), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3351), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3351), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3351), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3351), - [anon_sym_MOZ_RAII] = ACTIONS(3351), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3351), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3351), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3351), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3351), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3351), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3351), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3351), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3351), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3351), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3351), - }, - [1270] = { - [sym_template_argument_list] = STATE(1294), - [sym_identifier] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2405), - [anon_sym_COMMA] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2405), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_AMP_AMP] = ACTIONS(2405), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2405), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_EQ] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [anon_sym_COLON] = ACTIONS(2397), - [anon_sym_DASH_GT] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2397), - [anon_sym_override] = ACTIONS(2397), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_GT2] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_noexcept] = ACTIONS(2397), - [anon_sym_throw] = ACTIONS(2397), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2397), - [anon_sym_MOZ_COLD] = ACTIONS(2397), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2397), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2397), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2397), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2397), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2397), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2397), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2397), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2397), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2397), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2397), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2397), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2397), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_RAII] = ACTIONS(2397), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2397), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2397), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2397), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2397), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2397), - }, - [1271] = { - [sym_template_argument_list] = STATE(1294), - [sym_identifier] = ACTIONS(2459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), - [anon_sym_COMMA] = ACTIONS(2466), - [anon_sym_RPAREN] = ACTIONS(2466), - [anon_sym_LPAREN2] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(2466), - [anon_sym_AMP_AMP] = ACTIONS(2466), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2466), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_EQ] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_COLON] = ACTIONS(2459), - [anon_sym_DASH_GT] = ACTIONS(2466), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2459), - [anon_sym_override] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_GT2] = ACTIONS(2466), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_noexcept] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2459), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2459), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2459), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2459), - [anon_sym_MOZ_COLD] = ACTIONS(2459), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2459), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2459), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2459), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2459), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2459), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2459), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2459), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2459), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2459), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2459), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2459), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2459), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2459), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_NONNULL] = ACTIONS(2459), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2459), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2459), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2459), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2459), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2459), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2459), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2459), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2459), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2459), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2459), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2459), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2459), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2459), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2459), - [anon_sym_MOZ_RAII] = ACTIONS(2459), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2459), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2459), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2459), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2459), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2459), - }, - [1272] = { - [sym_template_argument_list] = STATE(1294), - [sym_identifier] = ACTIONS(3356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2423), - [anon_sym_COMMA] = ACTIONS(2423), - [anon_sym_RPAREN] = ACTIONS(2423), - [anon_sym_LPAREN2] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_AMP_AMP] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_extern] = ACTIONS(3356), - [anon_sym___attribute__] = ACTIONS(3356), + [STATE(462)] = { + [ts_builtin_sym_end] = ACTIONS(2482), + [sym_identifier] = ACTIONS(2484), + [aux_sym_preproc_include_token1] = ACTIONS(2484), + [aux_sym_preproc_def_token1] = ACTIONS(2484), + [aux_sym_preproc_if_token1] = ACTIONS(2484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2484), + [sym_preproc_directive] = ACTIONS(2484), + [anon_sym_LPAREN2] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2484), + [anon_sym_PLUS] = ACTIONS(2484), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_AMP_AMP] = ACTIONS(2482), + [anon_sym_AMP] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym___extension__] = ACTIONS(2484), + [anon_sym_typedef] = ACTIONS(2484), + [anon_sym_virtual] = ACTIONS(2484), + [anon_sym_extern] = ACTIONS(2484), + [anon_sym___attribute__] = ACTIONS(2484), + [anon_sym___attribute] = ACTIONS(2484), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2482), + [anon_sym___declspec] = ACTIONS(2484), + [anon_sym___based] = ACTIONS(2484), + [anon_sym___cdecl] = ACTIONS(2484), + [anon_sym___clrcall] = ACTIONS(2484), + [anon_sym___stdcall] = ACTIONS(2484), + [anon_sym___fastcall] = ACTIONS(2484), + [anon_sym___thiscall] = ACTIONS(2484), + [anon_sym___vectorcall] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_signed] = ACTIONS(2484), + [anon_sym_unsigned] = ACTIONS(2484), + [anon_sym_long] = ACTIONS(2484), + [anon_sym_short] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(2484), + [anon_sym_static] = ACTIONS(2484), + [anon_sym_register] = ACTIONS(2484), + [anon_sym_inline] = ACTIONS(2484), + [anon_sym___inline] = ACTIONS(2484), + [anon_sym___inline__] = ACTIONS(2484), + [anon_sym___forceinline] = ACTIONS(2484), + [anon_sym_thread_local] = ACTIONS(2484), + [anon_sym___thread] = ACTIONS(2484), + [anon_sym_const] = ACTIONS(2484), + [anon_sym_constexpr] = ACTIONS(2484), + [anon_sym_volatile] = ACTIONS(2484), + [anon_sym_restrict] = ACTIONS(2484), + [anon_sym___restrict__] = ACTIONS(2484), + [anon_sym__Atomic] = ACTIONS(2484), + [anon_sym__Noreturn] = ACTIONS(2484), + [anon_sym_noreturn] = ACTIONS(2484), + [anon_sym__Nonnull] = ACTIONS(2484), + [anon_sym_mutable] = ACTIONS(2484), + [anon_sym_constinit] = ACTIONS(2484), + [anon_sym_consteval] = ACTIONS(2484), + [anon_sym_alignas] = ACTIONS(2484), + [anon_sym__Alignas] = ACTIONS(2484), + [sym_primitive_type] = ACTIONS(2484), + [anon_sym_enum] = ACTIONS(2484), + [anon_sym_class] = ACTIONS(2484), + [anon_sym_struct] = ACTIONS(2484), + [anon_sym_union] = ACTIONS(2484), + [anon_sym_if] = ACTIONS(2484), + [anon_sym_switch] = ACTIONS(2484), + [anon_sym_case] = ACTIONS(2484), + [anon_sym_default] = ACTIONS(2484), + [anon_sym_while] = ACTIONS(2484), + [anon_sym_do] = ACTIONS(2484), + [anon_sym_for] = ACTIONS(2484), + [anon_sym_return] = ACTIONS(2484), + [anon_sym_break] = ACTIONS(2484), + [anon_sym_continue] = ACTIONS(2484), + [anon_sym_goto] = ACTIONS(2484), + [anon_sym_not] = ACTIONS(2484), + [anon_sym_compl] = ACTIONS(2484), + [anon_sym_DASH_DASH] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2482), + [anon_sym_sizeof] = ACTIONS(2484), + [anon_sym___alignof__] = ACTIONS(2484), + [anon_sym___alignof] = ACTIONS(2484), + [anon_sym__alignof] = ACTIONS(2484), + [anon_sym_alignof] = ACTIONS(2484), + [anon_sym__Alignof] = ACTIONS(2484), + [anon_sym_offsetof] = ACTIONS(2484), + [anon_sym__Generic] = ACTIONS(2484), + [anon_sym_asm] = ACTIONS(2484), + [anon_sym___asm__] = ACTIONS(2484), + [anon_sym___asm] = ACTIONS(2484), + [sym_number_literal] = ACTIONS(2482), + [anon_sym_L_SQUOTE] = ACTIONS(2482), + [anon_sym_u_SQUOTE] = ACTIONS(2482), + [anon_sym_U_SQUOTE] = ACTIONS(2482), + [anon_sym_u8_SQUOTE] = ACTIONS(2482), + [anon_sym_SQUOTE] = ACTIONS(2482), + [anon_sym_L_DQUOTE] = ACTIONS(2482), + [anon_sym_u_DQUOTE] = ACTIONS(2482), + [anon_sym_U_DQUOTE] = ACTIONS(2482), + [anon_sym_u8_DQUOTE] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2482), + [sym_true] = ACTIONS(2484), + [sym_false] = ACTIONS(2484), + [anon_sym_NULL] = ACTIONS(2484), + [anon_sym_nullptr] = ACTIONS(2484), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2484), + [anon_sym_decltype] = ACTIONS(2484), + [anon_sym_explicit] = ACTIONS(2484), + [anon_sym_typename] = ACTIONS(2484), + [anon_sym_template] = ACTIONS(2484), + [anon_sym_operator] = ACTIONS(2484), + [anon_sym_try] = ACTIONS(2484), + [anon_sym_delete] = ACTIONS(2484), + [anon_sym_throw] = ACTIONS(2484), + [anon_sym_namespace] = ACTIONS(2484), + [anon_sym_using] = ACTIONS(2484), + [anon_sym_static_assert] = ACTIONS(2484), + [anon_sym_concept] = ACTIONS(2484), + [anon_sym_co_return] = ACTIONS(2484), + [anon_sym_co_yield] = ACTIONS(2484), + [anon_sym_R_DQUOTE] = ACTIONS(2482), + [anon_sym_LR_DQUOTE] = ACTIONS(2482), + [anon_sym_uR_DQUOTE] = ACTIONS(2482), + [anon_sym_UR_DQUOTE] = ACTIONS(2482), + [anon_sym_u8R_DQUOTE] = ACTIONS(2482), + [anon_sym_co_await] = ACTIONS(2484), + [anon_sym_new] = ACTIONS(2484), + [anon_sym_requires] = ACTIONS(2484), + [sym_this] = ACTIONS(2484), + [sym_alone_macro] = ACTIONS(2482), + [aux_sym_alone_macro_call_token1] = ACTIONS(2484), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2484), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2484), + [anon_sym_FORWARD] = ACTIONS(2484), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2484), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2484), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2484), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2484), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2484), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2484), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2484), + [anon_sym_PS_GET] = ACTIONS(2484), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2484), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2484), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2484), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2484), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2484), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2484), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2484), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2484), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2484), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2484), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2484), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2484), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2484), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2484), + [anon_sym_MOZ_COLD] = ACTIONS(2484), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2484), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2484), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2484), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2484), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2484), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2484), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2484), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2484), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2484), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2484), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2484), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2484), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2484), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2484), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2484), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2484), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2484), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2484), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2484), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2484), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2484), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2484), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2484), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2484), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2484), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2484), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2484), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2484), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2484), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2484), + [anon_sym_MOZ_NONNULL] = ACTIONS(2484), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2484), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2484), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2484), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2484), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2484), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2484), + [anon_sym_MOZ_NORETURN] = ACTIONS(2484), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2484), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2484), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2484), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2484), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2484), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2484), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2484), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2484), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2484), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2484), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2484), + [anon_sym_MOZ_RAII] = ACTIONS(2484), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2484), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2484), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2484), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2484), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2484), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2484), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2484), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2484), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2484), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2484), + }, + [STATE(463)] = { + [sym_identifier] = ACTIONS(2404), + [aux_sym_preproc_include_token1] = ACTIONS(2404), + [aux_sym_preproc_def_token1] = ACTIONS(2404), + [aux_sym_preproc_if_token1] = ACTIONS(2404), + [aux_sym_preproc_if_token2] = ACTIONS(2404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2404), + [sym_preproc_directive] = ACTIONS(2404), + [anon_sym_LPAREN2] = ACTIONS(2406), + [anon_sym_BANG] = ACTIONS(2406), + [anon_sym_TILDE] = ACTIONS(2406), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_STAR] = ACTIONS(2406), + [anon_sym_AMP_AMP] = ACTIONS(2406), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2406), + [anon_sym___extension__] = ACTIONS(2404), + [anon_sym_typedef] = ACTIONS(2404), + [anon_sym_virtual] = ACTIONS(2404), + [anon_sym_extern] = ACTIONS(2404), + [anon_sym___attribute__] = ACTIONS(2404), + [anon_sym___attribute] = ACTIONS(2404), + [anon_sym_COLON_COLON] = ACTIONS(2406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2406), + [anon_sym___declspec] = ACTIONS(2404), + [anon_sym___based] = ACTIONS(2404), + [anon_sym___cdecl] = ACTIONS(2404), + [anon_sym___clrcall] = ACTIONS(2404), + [anon_sym___stdcall] = ACTIONS(2404), + [anon_sym___fastcall] = ACTIONS(2404), + [anon_sym___thiscall] = ACTIONS(2404), + [anon_sym___vectorcall] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2406), + [anon_sym_signed] = ACTIONS(2404), + [anon_sym_unsigned] = ACTIONS(2404), + [anon_sym_long] = ACTIONS(2404), + [anon_sym_short] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_register] = ACTIONS(2404), + [anon_sym_inline] = ACTIONS(2404), + [anon_sym___inline] = ACTIONS(2404), + [anon_sym___inline__] = ACTIONS(2404), + [anon_sym___forceinline] = ACTIONS(2404), + [anon_sym_thread_local] = ACTIONS(2404), + [anon_sym___thread] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_constexpr] = ACTIONS(2404), + [anon_sym_volatile] = ACTIONS(2404), + [anon_sym_restrict] = ACTIONS(2404), + [anon_sym___restrict__] = ACTIONS(2404), + [anon_sym__Atomic] = ACTIONS(2404), + [anon_sym__Noreturn] = ACTIONS(2404), + [anon_sym_noreturn] = ACTIONS(2404), + [anon_sym__Nonnull] = ACTIONS(2404), + [anon_sym_mutable] = ACTIONS(2404), + [anon_sym_constinit] = ACTIONS(2404), + [anon_sym_consteval] = ACTIONS(2404), + [anon_sym_alignas] = ACTIONS(2404), + [anon_sym__Alignas] = ACTIONS(2404), + [sym_primitive_type] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_struct] = ACTIONS(2404), + [anon_sym_union] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_case] = ACTIONS(2404), + [anon_sym_default] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_goto] = ACTIONS(2404), + [anon_sym___try] = ACTIONS(2404), + [anon_sym___leave] = ACTIONS(2404), + [anon_sym_not] = ACTIONS(2404), + [anon_sym_compl] = ACTIONS(2404), + [anon_sym_DASH_DASH] = ACTIONS(2406), + [anon_sym_PLUS_PLUS] = ACTIONS(2406), + [anon_sym_sizeof] = ACTIONS(2404), + [anon_sym___alignof__] = ACTIONS(2404), + [anon_sym___alignof] = ACTIONS(2404), + [anon_sym__alignof] = ACTIONS(2404), + [anon_sym_alignof] = ACTIONS(2404), + [anon_sym__Alignof] = ACTIONS(2404), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_asm] = ACTIONS(2404), + [anon_sym___asm__] = ACTIONS(2404), + [anon_sym___asm] = ACTIONS(2404), + [sym_number_literal] = ACTIONS(2406), + [anon_sym_L_SQUOTE] = ACTIONS(2406), + [anon_sym_u_SQUOTE] = ACTIONS(2406), + [anon_sym_U_SQUOTE] = ACTIONS(2406), + [anon_sym_u8_SQUOTE] = ACTIONS(2406), + [anon_sym_SQUOTE] = ACTIONS(2406), + [anon_sym_L_DQUOTE] = ACTIONS(2406), + [anon_sym_u_DQUOTE] = ACTIONS(2406), + [anon_sym_U_DQUOTE] = ACTIONS(2406), + [anon_sym_u8_DQUOTE] = ACTIONS(2406), + [anon_sym_DQUOTE] = ACTIONS(2406), + [sym_true] = ACTIONS(2404), + [sym_false] = ACTIONS(2404), + [anon_sym_NULL] = ACTIONS(2404), + [anon_sym_nullptr] = ACTIONS(2404), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2404), + [anon_sym_decltype] = ACTIONS(2404), + [anon_sym_explicit] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2404), + [anon_sym_template] = ACTIONS(2404), + [anon_sym_operator] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_delete] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_using] = ACTIONS(2404), + [anon_sym_static_assert] = ACTIONS(2404), + [anon_sym_concept] = ACTIONS(2404), + [anon_sym_co_return] = ACTIONS(2404), + [anon_sym_co_yield] = ACTIONS(2404), + [anon_sym_R_DQUOTE] = ACTIONS(2406), + [anon_sym_LR_DQUOTE] = ACTIONS(2406), + [anon_sym_uR_DQUOTE] = ACTIONS(2406), + [anon_sym_UR_DQUOTE] = ACTIONS(2406), + [anon_sym_u8R_DQUOTE] = ACTIONS(2406), + [anon_sym_co_await] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_requires] = ACTIONS(2404), + [sym_this] = ACTIONS(2404), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2404), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_FORWARD] = ACTIONS(2404), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2404), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2404), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2404), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2404), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_PS_GET] = ACTIONS(2404), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2404), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2404), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2404), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2404), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2404), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2404), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2404), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2404), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2404), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2404), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2404), + [anon_sym_MOZ_COLD] = ACTIONS(2404), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2404), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2404), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2404), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2404), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2404), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2404), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2404), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2404), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2404), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2404), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2404), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2404), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2404), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2404), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2404), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2404), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2404), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2404), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2404), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2404), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_NONNULL] = ACTIONS(2404), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2404), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2404), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2404), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2404), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2404), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_NORETURN] = ACTIONS(2404), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2404), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2404), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2404), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2404), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2404), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2404), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2404), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2404), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2404), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2404), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2404), + [anon_sym_MOZ_RAII] = ACTIONS(2404), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2404), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2404), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2404), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2404), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2404), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2404), + }, + [STATE(464)] = { + [sym_identifier] = ACTIONS(2416), + [aux_sym_preproc_include_token1] = ACTIONS(2416), + [aux_sym_preproc_def_token1] = ACTIONS(2416), + [aux_sym_preproc_if_token1] = ACTIONS(2416), + [aux_sym_preproc_if_token2] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2416), + [sym_preproc_directive] = ACTIONS(2416), + [anon_sym_LPAREN2] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2416), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym___extension__] = ACTIONS(2416), + [anon_sym_typedef] = ACTIONS(2416), + [anon_sym_virtual] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym___attribute__] = ACTIONS(2416), + [anon_sym___attribute] = ACTIONS(2416), [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2423), - [anon_sym___declspec] = ACTIONS(3356), - [anon_sym___based] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_EQ] = ACTIONS(2423), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_register] = ACTIONS(3356), - [anon_sym_inline] = ACTIONS(3356), - [anon_sym_thread_local] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_volatile] = ACTIONS(3356), - [anon_sym_restrict] = ACTIONS(3356), - [anon_sym__Atomic] = ACTIONS(3356), - [anon_sym_mutable] = ACTIONS(3356), - [anon_sym_constexpr] = ACTIONS(3356), - [anon_sym_COLON] = ACTIONS(3356), - [anon_sym_DASH_GT] = ACTIONS(2423), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3356), - [anon_sym_override] = ACTIONS(3356), - [anon_sym_virtual] = ACTIONS(3356), - [anon_sym_template] = ACTIONS(3356), - [anon_sym_GT2] = ACTIONS(2423), - [anon_sym_operator] = ACTIONS(3356), - [anon_sym_noexcept] = ACTIONS(3356), - [anon_sym_throw] = ACTIONS(3356), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3356), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3356), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3356), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3356), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3356), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3356), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3356), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3356), - [anon_sym_MOZ_COLD] = ACTIONS(3356), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3356), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3356), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3356), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3356), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3356), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3356), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3356), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3356), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3356), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3356), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3356), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3356), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3356), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3356), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3356), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3356), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3356), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3356), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3356), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3356), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_NONNULL] = ACTIONS(3356), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3356), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3356), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3356), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3356), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3356), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_NORETURN] = ACTIONS(3356), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3356), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3356), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3356), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3356), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3356), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3356), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3356), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3356), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3356), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3356), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3356), - [anon_sym_MOZ_RAII] = ACTIONS(3356), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3356), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3356), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3356), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3356), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3356), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3356), - }, - [1273] = { - [sym_template_argument_list] = STATE(1294), - [sym_identifier] = ACTIONS(3358), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3360), - [anon_sym_COMMA] = ACTIONS(3360), - [anon_sym_RPAREN] = ACTIONS(3360), - [anon_sym_LPAREN2] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3360), - [anon_sym_extern] = ACTIONS(3358), - [anon_sym___attribute__] = ACTIONS(3358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2418), + [anon_sym___declspec] = ACTIONS(2416), + [anon_sym___based] = ACTIONS(2416), + [anon_sym___cdecl] = ACTIONS(2416), + [anon_sym___clrcall] = ACTIONS(2416), + [anon_sym___stdcall] = ACTIONS(2416), + [anon_sym___fastcall] = ACTIONS(2416), + [anon_sym___thiscall] = ACTIONS(2416), + [anon_sym___vectorcall] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_signed] = ACTIONS(2416), + [anon_sym_unsigned] = ACTIONS(2416), + [anon_sym_long] = ACTIONS(2416), + [anon_sym_short] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_register] = ACTIONS(2416), + [anon_sym_inline] = ACTIONS(2416), + [anon_sym___inline] = ACTIONS(2416), + [anon_sym___inline__] = ACTIONS(2416), + [anon_sym___forceinline] = ACTIONS(2416), + [anon_sym_thread_local] = ACTIONS(2416), + [anon_sym___thread] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_constexpr] = ACTIONS(2416), + [anon_sym_volatile] = ACTIONS(2416), + [anon_sym_restrict] = ACTIONS(2416), + [anon_sym___restrict__] = ACTIONS(2416), + [anon_sym__Atomic] = ACTIONS(2416), + [anon_sym__Noreturn] = ACTIONS(2416), + [anon_sym_noreturn] = ACTIONS(2416), + [anon_sym__Nonnull] = ACTIONS(2416), + [anon_sym_mutable] = ACTIONS(2416), + [anon_sym_constinit] = ACTIONS(2416), + [anon_sym_consteval] = ACTIONS(2416), + [anon_sym_alignas] = ACTIONS(2416), + [anon_sym__Alignas] = ACTIONS(2416), + [sym_primitive_type] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [anon_sym_class] = ACTIONS(2416), + [anon_sym_struct] = ACTIONS(2416), + [anon_sym_union] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_switch] = ACTIONS(2416), + [anon_sym_case] = ACTIONS(2416), + [anon_sym_default] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_goto] = ACTIONS(2416), + [anon_sym___try] = ACTIONS(2416), + [anon_sym___leave] = ACTIONS(2416), + [anon_sym_not] = ACTIONS(2416), + [anon_sym_compl] = ACTIONS(2416), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_sizeof] = ACTIONS(2416), + [anon_sym___alignof__] = ACTIONS(2416), + [anon_sym___alignof] = ACTIONS(2416), + [anon_sym__alignof] = ACTIONS(2416), + [anon_sym_alignof] = ACTIONS(2416), + [anon_sym__Alignof] = ACTIONS(2416), + [anon_sym_offsetof] = ACTIONS(2416), + [anon_sym__Generic] = ACTIONS(2416), + [anon_sym_asm] = ACTIONS(2416), + [anon_sym___asm__] = ACTIONS(2416), + [anon_sym___asm] = ACTIONS(2416), + [sym_number_literal] = ACTIONS(2418), + [anon_sym_L_SQUOTE] = ACTIONS(2418), + [anon_sym_u_SQUOTE] = ACTIONS(2418), + [anon_sym_U_SQUOTE] = ACTIONS(2418), + [anon_sym_u8_SQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_L_DQUOTE] = ACTIONS(2418), + [anon_sym_u_DQUOTE] = ACTIONS(2418), + [anon_sym_U_DQUOTE] = ACTIONS(2418), + [anon_sym_u8_DQUOTE] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2416), + [anon_sym_nullptr] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2416), + [anon_sym_decltype] = ACTIONS(2416), + [anon_sym_explicit] = ACTIONS(2416), + [anon_sym_typename] = ACTIONS(2416), + [anon_sym_template] = ACTIONS(2416), + [anon_sym_operator] = ACTIONS(2416), + [anon_sym_try] = ACTIONS(2416), + [anon_sym_delete] = ACTIONS(2416), + [anon_sym_throw] = ACTIONS(2416), + [anon_sym_namespace] = ACTIONS(2416), + [anon_sym_using] = ACTIONS(2416), + [anon_sym_static_assert] = ACTIONS(2416), + [anon_sym_concept] = ACTIONS(2416), + [anon_sym_co_return] = ACTIONS(2416), + [anon_sym_co_yield] = ACTIONS(2416), + [anon_sym_R_DQUOTE] = ACTIONS(2418), + [anon_sym_LR_DQUOTE] = ACTIONS(2418), + [anon_sym_uR_DQUOTE] = ACTIONS(2418), + [anon_sym_UR_DQUOTE] = ACTIONS(2418), + [anon_sym_u8R_DQUOTE] = ACTIONS(2418), + [anon_sym_co_await] = ACTIONS(2416), + [anon_sym_new] = ACTIONS(2416), + [anon_sym_requires] = ACTIONS(2416), + [sym_this] = ACTIONS(2416), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2416), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_FORWARD] = ACTIONS(2416), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2416), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2416), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2416), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2416), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_PS_GET] = ACTIONS(2416), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2416), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2416), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2416), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2416), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2416), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2416), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2416), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2416), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2416), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2416), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2416), + [anon_sym_MOZ_COLD] = ACTIONS(2416), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2416), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2416), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2416), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2416), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2416), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2416), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2416), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2416), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2416), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2416), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2416), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2416), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2416), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2416), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2416), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2416), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2416), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2416), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2416), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2416), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_NONNULL] = ACTIONS(2416), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2416), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2416), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2416), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2416), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2416), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_NORETURN] = ACTIONS(2416), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2416), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2416), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2416), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2416), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2416), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2416), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2416), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2416), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2416), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2416), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2416), + [anon_sym_MOZ_RAII] = ACTIONS(2416), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2416), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2416), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2416), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2416), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2416), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2416), + }, + [STATE(465)] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token2] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_virtual] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_COLON_COLON] = ACTIONS(2426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___based] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_mutable] = ACTIONS(2424), + [anon_sym_constinit] = ACTIONS(2424), + [anon_sym_consteval] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym___try] = ACTIONS(2424), + [anon_sym___leave] = ACTIONS(2424), + [anon_sym_not] = ACTIONS(2424), + [anon_sym_compl] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2424), + [anon_sym_decltype] = ACTIONS(2424), + [anon_sym_explicit] = ACTIONS(2424), + [anon_sym_typename] = ACTIONS(2424), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_operator] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_throw] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2424), + [anon_sym_using] = ACTIONS(2424), + [anon_sym_static_assert] = ACTIONS(2424), + [anon_sym_concept] = ACTIONS(2424), + [anon_sym_co_return] = ACTIONS(2424), + [anon_sym_co_yield] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_requires] = ACTIONS(2424), + [sym_this] = ACTIONS(2424), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_FORWARD] = ACTIONS(2424), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_PS_GET] = ACTIONS(2424), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2424), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2424), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2424), + [anon_sym_MOZ_COLD] = ACTIONS(2424), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2424), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2424), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2424), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2424), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2424), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2424), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2424), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2424), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2424), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2424), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2424), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2424), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_RAII] = ACTIONS(2424), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2424), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2424), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2424), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2424), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2424), + }, + [STATE(466)] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token2] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_virtual] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_COLON_COLON] = ACTIONS(2426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___based] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_mutable] = ACTIONS(2424), + [anon_sym_constinit] = ACTIONS(2424), + [anon_sym_consteval] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym___try] = ACTIONS(2424), + [anon_sym___leave] = ACTIONS(2424), + [anon_sym_not] = ACTIONS(2424), + [anon_sym_compl] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2424), + [anon_sym_decltype] = ACTIONS(2424), + [anon_sym_explicit] = ACTIONS(2424), + [anon_sym_typename] = ACTIONS(2424), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_operator] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_throw] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2424), + [anon_sym_using] = ACTIONS(2424), + [anon_sym_static_assert] = ACTIONS(2424), + [anon_sym_concept] = ACTIONS(2424), + [anon_sym_co_return] = ACTIONS(2424), + [anon_sym_co_yield] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_requires] = ACTIONS(2424), + [sym_this] = ACTIONS(2424), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_FORWARD] = ACTIONS(2424), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_PS_GET] = ACTIONS(2424), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2424), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2424), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2424), + [anon_sym_MOZ_COLD] = ACTIONS(2424), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2424), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2424), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2424), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2424), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2424), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2424), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2424), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2424), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2424), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2424), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2424), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2424), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_RAII] = ACTIONS(2424), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2424), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2424), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2424), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2424), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2424), + }, + [STATE(467)] = { + [sym_identifier] = ACTIONS(2440), + [aux_sym_preproc_include_token1] = ACTIONS(2440), + [aux_sym_preproc_def_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2440), + [sym_preproc_directive] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_typedef] = ACTIONS(2440), + [anon_sym_virtual] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym___attribute__] = ACTIONS(2440), + [anon_sym___attribute] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(2442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2442), + [anon_sym___declspec] = ACTIONS(2440), + [anon_sym___based] = ACTIONS(2440), + [anon_sym___cdecl] = ACTIONS(2440), + [anon_sym___clrcall] = ACTIONS(2440), + [anon_sym___stdcall] = ACTIONS(2440), + [anon_sym___fastcall] = ACTIONS(2440), + [anon_sym___thiscall] = ACTIONS(2440), + [anon_sym___vectorcall] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_signed] = ACTIONS(2440), + [anon_sym_unsigned] = ACTIONS(2440), + [anon_sym_long] = ACTIONS(2440), + [anon_sym_short] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_register] = ACTIONS(2440), + [anon_sym_inline] = ACTIONS(2440), + [anon_sym___inline] = ACTIONS(2440), + [anon_sym___inline__] = ACTIONS(2440), + [anon_sym___forceinline] = ACTIONS(2440), + [anon_sym_thread_local] = ACTIONS(2440), + [anon_sym___thread] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_constexpr] = ACTIONS(2440), + [anon_sym_volatile] = ACTIONS(2440), + [anon_sym_restrict] = ACTIONS(2440), + [anon_sym___restrict__] = ACTIONS(2440), + [anon_sym__Atomic] = ACTIONS(2440), + [anon_sym__Noreturn] = ACTIONS(2440), + [anon_sym_noreturn] = ACTIONS(2440), + [anon_sym__Nonnull] = ACTIONS(2440), + [anon_sym_mutable] = ACTIONS(2440), + [anon_sym_constinit] = ACTIONS(2440), + [anon_sym_consteval] = ACTIONS(2440), + [anon_sym_alignas] = ACTIONS(2440), + [anon_sym__Alignas] = ACTIONS(2440), + [sym_primitive_type] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_struct] = ACTIONS(2440), + [anon_sym_union] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_case] = ACTIONS(2440), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_goto] = ACTIONS(2440), + [anon_sym___try] = ACTIONS(2440), + [anon_sym___leave] = ACTIONS(2440), + [anon_sym_not] = ACTIONS(2440), + [anon_sym_compl] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2442), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_sizeof] = ACTIONS(2440), + [anon_sym___alignof__] = ACTIONS(2440), + [anon_sym___alignof] = ACTIONS(2440), + [anon_sym__alignof] = ACTIONS(2440), + [anon_sym_alignof] = ACTIONS(2440), + [anon_sym__Alignof] = ACTIONS(2440), + [anon_sym_offsetof] = ACTIONS(2440), + [anon_sym__Generic] = ACTIONS(2440), + [anon_sym_asm] = ACTIONS(2440), + [anon_sym___asm__] = ACTIONS(2440), + [anon_sym___asm] = ACTIONS(2440), + [sym_number_literal] = ACTIONS(2442), + [anon_sym_L_SQUOTE] = ACTIONS(2442), + [anon_sym_u_SQUOTE] = ACTIONS(2442), + [anon_sym_U_SQUOTE] = ACTIONS(2442), + [anon_sym_u8_SQUOTE] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2442), + [anon_sym_L_DQUOTE] = ACTIONS(2442), + [anon_sym_u_DQUOTE] = ACTIONS(2442), + [anon_sym_U_DQUOTE] = ACTIONS(2442), + [anon_sym_u8_DQUOTE] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2442), + [sym_true] = ACTIONS(2440), + [sym_false] = ACTIONS(2440), + [anon_sym_NULL] = ACTIONS(2440), + [anon_sym_nullptr] = ACTIONS(2440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2440), + [anon_sym_decltype] = ACTIONS(2440), + [anon_sym_explicit] = ACTIONS(2440), + [anon_sym_typename] = ACTIONS(2440), + [anon_sym_template] = ACTIONS(2440), + [anon_sym_operator] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_delete] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_static_assert] = ACTIONS(2440), + [anon_sym_concept] = ACTIONS(2440), + [anon_sym_co_return] = ACTIONS(2440), + [anon_sym_co_yield] = ACTIONS(2440), + [anon_sym_R_DQUOTE] = ACTIONS(2442), + [anon_sym_LR_DQUOTE] = ACTIONS(2442), + [anon_sym_uR_DQUOTE] = ACTIONS(2442), + [anon_sym_UR_DQUOTE] = ACTIONS(2442), + [anon_sym_u8R_DQUOTE] = ACTIONS(2442), + [anon_sym_co_await] = ACTIONS(2440), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_requires] = ACTIONS(2440), + [sym_this] = ACTIONS(2440), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_FORWARD] = ACTIONS(2440), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2440), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_PS_GET] = ACTIONS(2440), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2440), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2440), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2440), + [anon_sym_MOZ_COLD] = ACTIONS(2440), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2440), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2440), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2440), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2440), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2440), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2440), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2440), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2440), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2440), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2440), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2440), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2440), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_RAII] = ACTIONS(2440), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2440), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2440), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2440), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2440), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2440), + }, + [STATE(468)] = { + [sym_identifier] = ACTIONS(2440), + [aux_sym_preproc_include_token1] = ACTIONS(2440), + [aux_sym_preproc_def_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2440), + [sym_preproc_directive] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_typedef] = ACTIONS(2440), + [anon_sym_virtual] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym___attribute__] = ACTIONS(2440), + [anon_sym___attribute] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(2442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2442), + [anon_sym___declspec] = ACTIONS(2440), + [anon_sym___based] = ACTIONS(2440), + [anon_sym___cdecl] = ACTIONS(2440), + [anon_sym___clrcall] = ACTIONS(2440), + [anon_sym___stdcall] = ACTIONS(2440), + [anon_sym___fastcall] = ACTIONS(2440), + [anon_sym___thiscall] = ACTIONS(2440), + [anon_sym___vectorcall] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_signed] = ACTIONS(2440), + [anon_sym_unsigned] = ACTIONS(2440), + [anon_sym_long] = ACTIONS(2440), + [anon_sym_short] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_register] = ACTIONS(2440), + [anon_sym_inline] = ACTIONS(2440), + [anon_sym___inline] = ACTIONS(2440), + [anon_sym___inline__] = ACTIONS(2440), + [anon_sym___forceinline] = ACTIONS(2440), + [anon_sym_thread_local] = ACTIONS(2440), + [anon_sym___thread] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_constexpr] = ACTIONS(2440), + [anon_sym_volatile] = ACTIONS(2440), + [anon_sym_restrict] = ACTIONS(2440), + [anon_sym___restrict__] = ACTIONS(2440), + [anon_sym__Atomic] = ACTIONS(2440), + [anon_sym__Noreturn] = ACTIONS(2440), + [anon_sym_noreturn] = ACTIONS(2440), + [anon_sym__Nonnull] = ACTIONS(2440), + [anon_sym_mutable] = ACTIONS(2440), + [anon_sym_constinit] = ACTIONS(2440), + [anon_sym_consteval] = ACTIONS(2440), + [anon_sym_alignas] = ACTIONS(2440), + [anon_sym__Alignas] = ACTIONS(2440), + [sym_primitive_type] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_struct] = ACTIONS(2440), + [anon_sym_union] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_case] = ACTIONS(2440), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_goto] = ACTIONS(2440), + [anon_sym___try] = ACTIONS(2440), + [anon_sym___leave] = ACTIONS(2440), + [anon_sym_not] = ACTIONS(2440), + [anon_sym_compl] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2442), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_sizeof] = ACTIONS(2440), + [anon_sym___alignof__] = ACTIONS(2440), + [anon_sym___alignof] = ACTIONS(2440), + [anon_sym__alignof] = ACTIONS(2440), + [anon_sym_alignof] = ACTIONS(2440), + [anon_sym__Alignof] = ACTIONS(2440), + [anon_sym_offsetof] = ACTIONS(2440), + [anon_sym__Generic] = ACTIONS(2440), + [anon_sym_asm] = ACTIONS(2440), + [anon_sym___asm__] = ACTIONS(2440), + [anon_sym___asm] = ACTIONS(2440), + [sym_number_literal] = ACTIONS(2442), + [anon_sym_L_SQUOTE] = ACTIONS(2442), + [anon_sym_u_SQUOTE] = ACTIONS(2442), + [anon_sym_U_SQUOTE] = ACTIONS(2442), + [anon_sym_u8_SQUOTE] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2442), + [anon_sym_L_DQUOTE] = ACTIONS(2442), + [anon_sym_u_DQUOTE] = ACTIONS(2442), + [anon_sym_U_DQUOTE] = ACTIONS(2442), + [anon_sym_u8_DQUOTE] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2442), + [sym_true] = ACTIONS(2440), + [sym_false] = ACTIONS(2440), + [anon_sym_NULL] = ACTIONS(2440), + [anon_sym_nullptr] = ACTIONS(2440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2440), + [anon_sym_decltype] = ACTIONS(2440), + [anon_sym_explicit] = ACTIONS(2440), + [anon_sym_typename] = ACTIONS(2440), + [anon_sym_template] = ACTIONS(2440), + [anon_sym_operator] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_delete] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_static_assert] = ACTIONS(2440), + [anon_sym_concept] = ACTIONS(2440), + [anon_sym_co_return] = ACTIONS(2440), + [anon_sym_co_yield] = ACTIONS(2440), + [anon_sym_R_DQUOTE] = ACTIONS(2442), + [anon_sym_LR_DQUOTE] = ACTIONS(2442), + [anon_sym_uR_DQUOTE] = ACTIONS(2442), + [anon_sym_UR_DQUOTE] = ACTIONS(2442), + [anon_sym_u8R_DQUOTE] = ACTIONS(2442), + [anon_sym_co_await] = ACTIONS(2440), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_requires] = ACTIONS(2440), + [sym_this] = ACTIONS(2440), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_FORWARD] = ACTIONS(2440), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2440), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_PS_GET] = ACTIONS(2440), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2440), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2440), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2440), + [anon_sym_MOZ_COLD] = ACTIONS(2440), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2440), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2440), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2440), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2440), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2440), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2440), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2440), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2440), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2440), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2440), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2440), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2440), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_RAII] = ACTIONS(2440), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2440), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2440), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2440), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2440), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2440), + }, + [STATE(469)] = { + [sym_identifier] = ACTIONS(2276), + [aux_sym_preproc_include_token1] = ACTIONS(2276), + [aux_sym_preproc_def_token1] = ACTIONS(2276), + [aux_sym_preproc_if_token1] = ACTIONS(2276), + [aux_sym_preproc_if_token2] = ACTIONS(2276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2276), + [sym_preproc_directive] = ACTIONS(2276), + [anon_sym_LPAREN2] = ACTIONS(2278), + [anon_sym_BANG] = ACTIONS(2278), + [anon_sym_TILDE] = ACTIONS(2278), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2278), + [anon_sym_AMP_AMP] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym___extension__] = ACTIONS(2276), + [anon_sym_typedef] = ACTIONS(2276), + [anon_sym_virtual] = ACTIONS(2276), + [anon_sym_extern] = ACTIONS(2276), + [anon_sym___attribute__] = ACTIONS(2276), + [anon_sym___attribute] = ACTIONS(2276), + [anon_sym_COLON_COLON] = ACTIONS(2278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2278), + [anon_sym___declspec] = ACTIONS(2276), + [anon_sym___based] = ACTIONS(2276), + [anon_sym___cdecl] = ACTIONS(2276), + [anon_sym___clrcall] = ACTIONS(2276), + [anon_sym___stdcall] = ACTIONS(2276), + [anon_sym___fastcall] = ACTIONS(2276), + [anon_sym___thiscall] = ACTIONS(2276), + [anon_sym___vectorcall] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_signed] = ACTIONS(2276), + [anon_sym_unsigned] = ACTIONS(2276), + [anon_sym_long] = ACTIONS(2276), + [anon_sym_short] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_register] = ACTIONS(2276), + [anon_sym_inline] = ACTIONS(2276), + [anon_sym___inline] = ACTIONS(2276), + [anon_sym___inline__] = ACTIONS(2276), + [anon_sym___forceinline] = ACTIONS(2276), + [anon_sym_thread_local] = ACTIONS(2276), + [anon_sym___thread] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_constexpr] = ACTIONS(2276), + [anon_sym_volatile] = ACTIONS(2276), + [anon_sym_restrict] = ACTIONS(2276), + [anon_sym___restrict__] = ACTIONS(2276), + [anon_sym__Atomic] = ACTIONS(2276), + [anon_sym__Noreturn] = ACTIONS(2276), + [anon_sym_noreturn] = ACTIONS(2276), + [anon_sym__Nonnull] = ACTIONS(2276), + [anon_sym_mutable] = ACTIONS(2276), + [anon_sym_constinit] = ACTIONS(2276), + [anon_sym_consteval] = ACTIONS(2276), + [anon_sym_alignas] = ACTIONS(2276), + [anon_sym__Alignas] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_struct] = ACTIONS(2276), + [anon_sym_union] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_case] = ACTIONS(2276), + [anon_sym_default] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym___try] = ACTIONS(2276), + [anon_sym___leave] = ACTIONS(2276), + [anon_sym_not] = ACTIONS(2276), + [anon_sym_compl] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2278), + [anon_sym_PLUS_PLUS] = ACTIONS(2278), + [anon_sym_sizeof] = ACTIONS(2276), + [anon_sym___alignof__] = ACTIONS(2276), + [anon_sym___alignof] = ACTIONS(2276), + [anon_sym__alignof] = ACTIONS(2276), + [anon_sym_alignof] = ACTIONS(2276), + [anon_sym__Alignof] = ACTIONS(2276), + [anon_sym_offsetof] = ACTIONS(2276), + [anon_sym__Generic] = ACTIONS(2276), + [anon_sym_asm] = ACTIONS(2276), + [anon_sym___asm__] = ACTIONS(2276), + [anon_sym___asm] = ACTIONS(2276), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_L_SQUOTE] = ACTIONS(2278), + [anon_sym_u_SQUOTE] = ACTIONS(2278), + [anon_sym_U_SQUOTE] = ACTIONS(2278), + [anon_sym_u8_SQUOTE] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(2278), + [anon_sym_L_DQUOTE] = ACTIONS(2278), + [anon_sym_u_DQUOTE] = ACTIONS(2278), + [anon_sym_U_DQUOTE] = ACTIONS(2278), + [anon_sym_u8_DQUOTE] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2278), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2276), + [anon_sym_decltype] = ACTIONS(2276), + [anon_sym_explicit] = ACTIONS(2276), + [anon_sym_typename] = ACTIONS(2276), + [anon_sym_template] = ACTIONS(2276), + [anon_sym_operator] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_using] = ACTIONS(2276), + [anon_sym_static_assert] = ACTIONS(2276), + [anon_sym_concept] = ACTIONS(2276), + [anon_sym_co_return] = ACTIONS(2276), + [anon_sym_co_yield] = ACTIONS(2276), + [anon_sym_R_DQUOTE] = ACTIONS(2278), + [anon_sym_LR_DQUOTE] = ACTIONS(2278), + [anon_sym_uR_DQUOTE] = ACTIONS(2278), + [anon_sym_UR_DQUOTE] = ACTIONS(2278), + [anon_sym_u8R_DQUOTE] = ACTIONS(2278), + [anon_sym_co_await] = ACTIONS(2276), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_requires] = ACTIONS(2276), + [sym_this] = ACTIONS(2276), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2276), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_FORWARD] = ACTIONS(2276), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2276), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2276), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2276), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2276), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_PS_GET] = ACTIONS(2276), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2276), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2276), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2276), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2276), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2276), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2276), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2276), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2276), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2276), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2276), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2276), + [anon_sym_MOZ_COLD] = ACTIONS(2276), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2276), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2276), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2276), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2276), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2276), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2276), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2276), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2276), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2276), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2276), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2276), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2276), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2276), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2276), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2276), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2276), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2276), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2276), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2276), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2276), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_NONNULL] = ACTIONS(2276), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2276), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2276), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2276), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2276), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2276), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_NORETURN] = ACTIONS(2276), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2276), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2276), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2276), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2276), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2276), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2276), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2276), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2276), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2276), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2276), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2276), + [anon_sym_MOZ_RAII] = ACTIONS(2276), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2276), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2276), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2276), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2276), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2276), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2276), + }, + [STATE(470)] = { + [sym_identifier] = ACTIONS(2287), + [aux_sym_preproc_include_token1] = ACTIONS(2287), + [aux_sym_preproc_def_token1] = ACTIONS(2287), + [aux_sym_preproc_if_token1] = ACTIONS(2287), + [aux_sym_preproc_if_token2] = ACTIONS(2287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2287), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2287), + [sym_preproc_directive] = ACTIONS(2287), + [anon_sym_LPAREN2] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_AMP_AMP] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym___extension__] = ACTIONS(2287), + [anon_sym_typedef] = ACTIONS(2287), + [anon_sym_virtual] = ACTIONS(2287), + [anon_sym_extern] = ACTIONS(2287), + [anon_sym___attribute__] = ACTIONS(2287), + [anon_sym___attribute] = ACTIONS(2287), + [anon_sym_COLON_COLON] = ACTIONS(2289), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2289), + [anon_sym___declspec] = ACTIONS(2287), + [anon_sym___based] = ACTIONS(2287), + [anon_sym___cdecl] = ACTIONS(2287), + [anon_sym___clrcall] = ACTIONS(2287), + [anon_sym___stdcall] = ACTIONS(2287), + [anon_sym___fastcall] = ACTIONS(2287), + [anon_sym___thiscall] = ACTIONS(2287), + [anon_sym___vectorcall] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_signed] = ACTIONS(2287), + [anon_sym_unsigned] = ACTIONS(2287), + [anon_sym_long] = ACTIONS(2287), + [anon_sym_short] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(2287), + [anon_sym_static] = ACTIONS(2287), + [anon_sym_register] = ACTIONS(2287), + [anon_sym_inline] = ACTIONS(2287), + [anon_sym___inline] = ACTIONS(2287), + [anon_sym___inline__] = ACTIONS(2287), + [anon_sym___forceinline] = ACTIONS(2287), + [anon_sym_thread_local] = ACTIONS(2287), + [anon_sym___thread] = ACTIONS(2287), + [anon_sym_const] = ACTIONS(2287), + [anon_sym_constexpr] = ACTIONS(2287), + [anon_sym_volatile] = ACTIONS(2287), + [anon_sym_restrict] = ACTIONS(2287), + [anon_sym___restrict__] = ACTIONS(2287), + [anon_sym__Atomic] = ACTIONS(2287), + [anon_sym__Noreturn] = ACTIONS(2287), + [anon_sym_noreturn] = ACTIONS(2287), + [anon_sym__Nonnull] = ACTIONS(2287), + [anon_sym_mutable] = ACTIONS(2287), + [anon_sym_constinit] = ACTIONS(2287), + [anon_sym_consteval] = ACTIONS(2287), + [anon_sym_alignas] = ACTIONS(2287), + [anon_sym__Alignas] = ACTIONS(2287), + [sym_primitive_type] = ACTIONS(2287), + [anon_sym_enum] = ACTIONS(2287), + [anon_sym_class] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(2287), + [anon_sym_union] = ACTIONS(2287), + [anon_sym_if] = ACTIONS(2287), + [anon_sym_switch] = ACTIONS(2287), + [anon_sym_case] = ACTIONS(2287), + [anon_sym_default] = ACTIONS(2287), + [anon_sym_while] = ACTIONS(2287), + [anon_sym_do] = ACTIONS(2287), + [anon_sym_for] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2287), + [anon_sym_break] = ACTIONS(2287), + [anon_sym_continue] = ACTIONS(2287), + [anon_sym_goto] = ACTIONS(2287), + [anon_sym___try] = ACTIONS(2287), + [anon_sym___leave] = ACTIONS(2287), + [anon_sym_not] = ACTIONS(2287), + [anon_sym_compl] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_sizeof] = ACTIONS(2287), + [anon_sym___alignof__] = ACTIONS(2287), + [anon_sym___alignof] = ACTIONS(2287), + [anon_sym__alignof] = ACTIONS(2287), + [anon_sym_alignof] = ACTIONS(2287), + [anon_sym__Alignof] = ACTIONS(2287), + [anon_sym_offsetof] = ACTIONS(2287), + [anon_sym__Generic] = ACTIONS(2287), + [anon_sym_asm] = ACTIONS(2287), + [anon_sym___asm__] = ACTIONS(2287), + [anon_sym___asm] = ACTIONS(2287), + [sym_number_literal] = ACTIONS(2289), + [anon_sym_L_SQUOTE] = ACTIONS(2289), + [anon_sym_u_SQUOTE] = ACTIONS(2289), + [anon_sym_U_SQUOTE] = ACTIONS(2289), + [anon_sym_u8_SQUOTE] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_L_DQUOTE] = ACTIONS(2289), + [anon_sym_u_DQUOTE] = ACTIONS(2289), + [anon_sym_U_DQUOTE] = ACTIONS(2289), + [anon_sym_u8_DQUOTE] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(2289), + [sym_true] = ACTIONS(2287), + [sym_false] = ACTIONS(2287), + [anon_sym_NULL] = ACTIONS(2287), + [anon_sym_nullptr] = ACTIONS(2287), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2287), + [anon_sym_decltype] = ACTIONS(2287), + [anon_sym_explicit] = ACTIONS(2287), + [anon_sym_typename] = ACTIONS(2287), + [anon_sym_template] = ACTIONS(2287), + [anon_sym_operator] = ACTIONS(2287), + [anon_sym_try] = ACTIONS(2287), + [anon_sym_delete] = ACTIONS(2287), + [anon_sym_throw] = ACTIONS(2287), + [anon_sym_namespace] = ACTIONS(2287), + [anon_sym_using] = ACTIONS(2287), + [anon_sym_static_assert] = ACTIONS(2287), + [anon_sym_concept] = ACTIONS(2287), + [anon_sym_co_return] = ACTIONS(2287), + [anon_sym_co_yield] = ACTIONS(2287), + [anon_sym_R_DQUOTE] = ACTIONS(2289), + [anon_sym_LR_DQUOTE] = ACTIONS(2289), + [anon_sym_uR_DQUOTE] = ACTIONS(2289), + [anon_sym_UR_DQUOTE] = ACTIONS(2289), + [anon_sym_u8R_DQUOTE] = ACTIONS(2289), + [anon_sym_co_await] = ACTIONS(2287), + [anon_sym_new] = ACTIONS(2287), + [anon_sym_requires] = ACTIONS(2287), + [sym_this] = ACTIONS(2287), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2287), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_FORWARD] = ACTIONS(2287), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2287), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2287), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2287), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2287), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_PS_GET] = ACTIONS(2287), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2287), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2287), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2287), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2287), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2287), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2287), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2287), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2287), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2287), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2287), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2287), + [anon_sym_MOZ_COLD] = ACTIONS(2287), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2287), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2287), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2287), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2287), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2287), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2287), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2287), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2287), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2287), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2287), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2287), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2287), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2287), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2287), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2287), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2287), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2287), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2287), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2287), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2287), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_NONNULL] = ACTIONS(2287), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2287), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2287), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2287), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2287), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2287), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_NORETURN] = ACTIONS(2287), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2287), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2287), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2287), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2287), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2287), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2287), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2287), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2287), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2287), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2287), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2287), + [anon_sym_MOZ_RAII] = ACTIONS(2287), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2287), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2287), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2287), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2287), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2287), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2287), + }, + [STATE(471)] = { + [sym_identifier] = ACTIONS(2295), + [aux_sym_preproc_include_token1] = ACTIONS(2295), + [aux_sym_preproc_def_token1] = ACTIONS(2295), + [aux_sym_preproc_if_token1] = ACTIONS(2295), + [aux_sym_preproc_if_token2] = ACTIONS(2295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2295), + [sym_preproc_directive] = ACTIONS(2295), + [anon_sym_LPAREN2] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2295), + [anon_sym_PLUS] = ACTIONS(2295), + [anon_sym_STAR] = ACTIONS(2297), + [anon_sym_AMP_AMP] = ACTIONS(2297), + [anon_sym_AMP] = ACTIONS(2295), + [anon_sym_SEMI] = ACTIONS(2297), + [anon_sym___extension__] = ACTIONS(2295), + [anon_sym_typedef] = ACTIONS(2295), + [anon_sym_virtual] = ACTIONS(2295), + [anon_sym_extern] = ACTIONS(2295), + [anon_sym___attribute__] = ACTIONS(2295), + [anon_sym___attribute] = ACTIONS(2295), + [anon_sym_COLON_COLON] = ACTIONS(2297), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2297), + [anon_sym___declspec] = ACTIONS(2295), + [anon_sym___based] = ACTIONS(2295), + [anon_sym___cdecl] = ACTIONS(2295), + [anon_sym___clrcall] = ACTIONS(2295), + [anon_sym___stdcall] = ACTIONS(2295), + [anon_sym___fastcall] = ACTIONS(2295), + [anon_sym___thiscall] = ACTIONS(2295), + [anon_sym___vectorcall] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2297), + [anon_sym_signed] = ACTIONS(2295), + [anon_sym_unsigned] = ACTIONS(2295), + [anon_sym_long] = ACTIONS(2295), + [anon_sym_short] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_static] = ACTIONS(2295), + [anon_sym_register] = ACTIONS(2295), + [anon_sym_inline] = ACTIONS(2295), + [anon_sym___inline] = ACTIONS(2295), + [anon_sym___inline__] = ACTIONS(2295), + [anon_sym___forceinline] = ACTIONS(2295), + [anon_sym_thread_local] = ACTIONS(2295), + [anon_sym___thread] = ACTIONS(2295), + [anon_sym_const] = ACTIONS(2295), + [anon_sym_constexpr] = ACTIONS(2295), + [anon_sym_volatile] = ACTIONS(2295), + [anon_sym_restrict] = ACTIONS(2295), + [anon_sym___restrict__] = ACTIONS(2295), + [anon_sym__Atomic] = ACTIONS(2295), + [anon_sym__Noreturn] = ACTIONS(2295), + [anon_sym_noreturn] = ACTIONS(2295), + [anon_sym__Nonnull] = ACTIONS(2295), + [anon_sym_mutable] = ACTIONS(2295), + [anon_sym_constinit] = ACTIONS(2295), + [anon_sym_consteval] = ACTIONS(2295), + [anon_sym_alignas] = ACTIONS(2295), + [anon_sym__Alignas] = ACTIONS(2295), + [sym_primitive_type] = ACTIONS(2295), + [anon_sym_enum] = ACTIONS(2295), + [anon_sym_class] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(2295), + [anon_sym_union] = ACTIONS(2295), + [anon_sym_if] = ACTIONS(2295), + [anon_sym_switch] = ACTIONS(2295), + [anon_sym_case] = ACTIONS(2295), + [anon_sym_default] = ACTIONS(2295), + [anon_sym_while] = ACTIONS(2295), + [anon_sym_do] = ACTIONS(2295), + [anon_sym_for] = ACTIONS(2295), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_break] = ACTIONS(2295), + [anon_sym_continue] = ACTIONS(2295), + [anon_sym_goto] = ACTIONS(2295), + [anon_sym___try] = ACTIONS(2295), + [anon_sym___leave] = ACTIONS(2295), + [anon_sym_not] = ACTIONS(2295), + [anon_sym_compl] = ACTIONS(2295), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_sizeof] = ACTIONS(2295), + [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(2295), + [anon_sym__Generic] = ACTIONS(2295), + [anon_sym_asm] = ACTIONS(2295), + [anon_sym___asm__] = ACTIONS(2295), + [anon_sym___asm] = ACTIONS(2295), + [sym_number_literal] = ACTIONS(2297), + [anon_sym_L_SQUOTE] = ACTIONS(2297), + [anon_sym_u_SQUOTE] = ACTIONS(2297), + [anon_sym_U_SQUOTE] = ACTIONS(2297), + [anon_sym_u8_SQUOTE] = ACTIONS(2297), + [anon_sym_SQUOTE] = ACTIONS(2297), + [anon_sym_L_DQUOTE] = ACTIONS(2297), + [anon_sym_u_DQUOTE] = ACTIONS(2297), + [anon_sym_U_DQUOTE] = ACTIONS(2297), + [anon_sym_u8_DQUOTE] = ACTIONS(2297), + [anon_sym_DQUOTE] = ACTIONS(2297), + [sym_true] = ACTIONS(2295), + [sym_false] = ACTIONS(2295), + [anon_sym_NULL] = ACTIONS(2295), + [anon_sym_nullptr] = ACTIONS(2295), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2295), + [anon_sym_decltype] = ACTIONS(2295), + [anon_sym_explicit] = ACTIONS(2295), + [anon_sym_typename] = ACTIONS(2295), + [anon_sym_template] = ACTIONS(2295), + [anon_sym_operator] = ACTIONS(2295), + [anon_sym_try] = ACTIONS(2295), + [anon_sym_delete] = ACTIONS(2295), + [anon_sym_throw] = ACTIONS(2295), + [anon_sym_namespace] = ACTIONS(2295), + [anon_sym_using] = ACTIONS(2295), + [anon_sym_static_assert] = ACTIONS(2295), + [anon_sym_concept] = ACTIONS(2295), + [anon_sym_co_return] = ACTIONS(2295), + [anon_sym_co_yield] = ACTIONS(2295), + [anon_sym_R_DQUOTE] = ACTIONS(2297), + [anon_sym_LR_DQUOTE] = ACTIONS(2297), + [anon_sym_uR_DQUOTE] = ACTIONS(2297), + [anon_sym_UR_DQUOTE] = ACTIONS(2297), + [anon_sym_u8R_DQUOTE] = ACTIONS(2297), + [anon_sym_co_await] = ACTIONS(2295), + [anon_sym_new] = ACTIONS(2295), + [anon_sym_requires] = ACTIONS(2295), + [sym_this] = ACTIONS(2295), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2295), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_FORWARD] = ACTIONS(2295), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2295), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2295), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2295), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2295), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_PS_GET] = ACTIONS(2295), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2295), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2295), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2295), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2295), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2295), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2295), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2295), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2295), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2295), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2295), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2295), + [anon_sym_MOZ_COLD] = ACTIONS(2295), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2295), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2295), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2295), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2295), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2295), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2295), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2295), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2295), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2295), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2295), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2295), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2295), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2295), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2295), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2295), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2295), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2295), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2295), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2295), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2295), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_NONNULL] = ACTIONS(2295), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2295), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2295), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2295), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2295), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2295), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_NORETURN] = ACTIONS(2295), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2295), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2295), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2295), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2295), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2295), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2295), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2295), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2295), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2295), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2295), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2295), + [anon_sym_MOZ_RAII] = ACTIONS(2295), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2295), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2295), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2295), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2295), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2295), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2295), + }, + [STATE(472)] = { + [sym_identifier] = ACTIONS(2202), + [aux_sym_preproc_include_token1] = ACTIONS(2202), + [aux_sym_preproc_def_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token1] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2202), + [sym_preproc_directive] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym___extension__] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2202), + [anon_sym_virtual] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym___attribute__] = ACTIONS(2202), + [anon_sym___attribute] = ACTIONS(2202), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2204), + [anon_sym___declspec] = ACTIONS(2202), + [anon_sym___based] = ACTIONS(2202), + [anon_sym___cdecl] = ACTIONS(2202), + [anon_sym___clrcall] = ACTIONS(2202), + [anon_sym___stdcall] = ACTIONS(2202), + [anon_sym___fastcall] = ACTIONS(2202), + [anon_sym___thiscall] = ACTIONS(2202), + [anon_sym___vectorcall] = ACTIONS(2202), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_RBRACE] = ACTIONS(2204), + [anon_sym_signed] = ACTIONS(2202), + [anon_sym_unsigned] = ACTIONS(2202), + [anon_sym_long] = ACTIONS(2202), + [anon_sym_short] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_register] = ACTIONS(2202), + [anon_sym_inline] = ACTIONS(2202), + [anon_sym___inline] = ACTIONS(2202), + [anon_sym___inline__] = ACTIONS(2202), + [anon_sym___forceinline] = ACTIONS(2202), + [anon_sym_thread_local] = ACTIONS(2202), + [anon_sym___thread] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_constexpr] = ACTIONS(2202), + [anon_sym_volatile] = ACTIONS(2202), + [anon_sym_restrict] = ACTIONS(2202), + [anon_sym___restrict__] = ACTIONS(2202), + [anon_sym__Atomic] = ACTIONS(2202), + [anon_sym__Noreturn] = ACTIONS(2202), + [anon_sym_noreturn] = ACTIONS(2202), + [anon_sym__Nonnull] = ACTIONS(2202), + [anon_sym_mutable] = ACTIONS(2202), + [anon_sym_constinit] = ACTIONS(2202), + [anon_sym_consteval] = ACTIONS(2202), + [anon_sym_alignas] = ACTIONS(2202), + [anon_sym__Alignas] = ACTIONS(2202), + [sym_primitive_type] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_class] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [anon_sym_if] = ACTIONS(2202), + [anon_sym_switch] = ACTIONS(2202), + [anon_sym_case] = ACTIONS(2202), + [anon_sym_default] = ACTIONS(2202), + [anon_sym_while] = ACTIONS(2202), + [anon_sym_do] = ACTIONS(2202), + [anon_sym_for] = ACTIONS(2202), + [anon_sym_return] = ACTIONS(2202), + [anon_sym_break] = ACTIONS(2202), + [anon_sym_continue] = ACTIONS(2202), + [anon_sym_goto] = ACTIONS(2202), + [anon_sym___try] = ACTIONS(2202), + [anon_sym___leave] = ACTIONS(2202), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_compl] = ACTIONS(2202), + [anon_sym_DASH_DASH] = ACTIONS(2204), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_sizeof] = ACTIONS(2202), + [anon_sym___alignof__] = ACTIONS(2202), + [anon_sym___alignof] = ACTIONS(2202), + [anon_sym__alignof] = ACTIONS(2202), + [anon_sym_alignof] = ACTIONS(2202), + [anon_sym__Alignof] = ACTIONS(2202), + [anon_sym_offsetof] = ACTIONS(2202), + [anon_sym__Generic] = ACTIONS(2202), + [anon_sym_asm] = ACTIONS(2202), + [anon_sym___asm__] = ACTIONS(2202), + [anon_sym___asm] = ACTIONS(2202), + [sym_number_literal] = ACTIONS(2204), + [anon_sym_L_SQUOTE] = ACTIONS(2204), + [anon_sym_u_SQUOTE] = ACTIONS(2204), + [anon_sym_U_SQUOTE] = ACTIONS(2204), + [anon_sym_u8_SQUOTE] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_L_DQUOTE] = ACTIONS(2204), + [anon_sym_u_DQUOTE] = ACTIONS(2204), + [anon_sym_U_DQUOTE] = ACTIONS(2204), + [anon_sym_u8_DQUOTE] = ACTIONS(2204), + [anon_sym_DQUOTE] = ACTIONS(2204), + [sym_true] = ACTIONS(2202), + [sym_false] = ACTIONS(2202), + [anon_sym_NULL] = ACTIONS(2202), + [anon_sym_nullptr] = ACTIONS(2202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2202), + [anon_sym_decltype] = ACTIONS(2202), + [anon_sym_explicit] = ACTIONS(2202), + [anon_sym_typename] = ACTIONS(2202), + [anon_sym_template] = ACTIONS(2202), + [anon_sym_operator] = ACTIONS(2202), + [anon_sym_try] = ACTIONS(2202), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_throw] = ACTIONS(2202), + [anon_sym_namespace] = ACTIONS(2202), + [anon_sym_using] = ACTIONS(2202), + [anon_sym_static_assert] = ACTIONS(2202), + [anon_sym_concept] = ACTIONS(2202), + [anon_sym_co_return] = ACTIONS(2202), + [anon_sym_co_yield] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2204), + [anon_sym_LR_DQUOTE] = ACTIONS(2204), + [anon_sym_uR_DQUOTE] = ACTIONS(2204), + [anon_sym_UR_DQUOTE] = ACTIONS(2204), + [anon_sym_u8R_DQUOTE] = ACTIONS(2204), + [anon_sym_co_await] = ACTIONS(2202), + [anon_sym_new] = ACTIONS(2202), + [anon_sym_requires] = ACTIONS(2202), + [sym_this] = ACTIONS(2202), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_FORWARD] = ACTIONS(2202), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2202), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_PS_GET] = ACTIONS(2202), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2202), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2202), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2202), + [anon_sym_MOZ_COLD] = ACTIONS(2202), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2202), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2202), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2202), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2202), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2202), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2202), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2202), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2202), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2202), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2202), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2202), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2202), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_RAII] = ACTIONS(2202), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2202), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2202), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2202), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2202), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2202), + }, + [STATE(473)] = { + [sym_identifier] = ACTIONS(2226), + [aux_sym_preproc_include_token1] = ACTIONS(2226), + [aux_sym_preproc_def_token1] = ACTIONS(2226), + [aux_sym_preproc_if_token1] = ACTIONS(2226), + [aux_sym_preproc_if_token2] = ACTIONS(2226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2226), + [sym_preproc_directive] = ACTIONS(2226), + [anon_sym_LPAREN2] = ACTIONS(2228), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_AMP_AMP] = ACTIONS(2228), + [anon_sym_AMP] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym___extension__] = ACTIONS(2226), + [anon_sym_typedef] = ACTIONS(2226), + [anon_sym_virtual] = ACTIONS(2226), + [anon_sym_extern] = ACTIONS(2226), + [anon_sym___attribute__] = ACTIONS(2226), + [anon_sym___attribute] = ACTIONS(2226), + [anon_sym_COLON_COLON] = ACTIONS(2228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2228), + [anon_sym___declspec] = ACTIONS(2226), + [anon_sym___based] = ACTIONS(2226), + [anon_sym___cdecl] = ACTIONS(2226), + [anon_sym___clrcall] = ACTIONS(2226), + [anon_sym___stdcall] = ACTIONS(2226), + [anon_sym___fastcall] = ACTIONS(2226), + [anon_sym___thiscall] = ACTIONS(2226), + [anon_sym___vectorcall] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_signed] = ACTIONS(2226), + [anon_sym_unsigned] = ACTIONS(2226), + [anon_sym_long] = ACTIONS(2226), + [anon_sym_short] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2226), + [anon_sym_register] = ACTIONS(2226), + [anon_sym_inline] = ACTIONS(2226), + [anon_sym___inline] = ACTIONS(2226), + [anon_sym___inline__] = ACTIONS(2226), + [anon_sym___forceinline] = ACTIONS(2226), + [anon_sym_thread_local] = ACTIONS(2226), + [anon_sym___thread] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [anon_sym_constexpr] = ACTIONS(2226), + [anon_sym_volatile] = ACTIONS(2226), + [anon_sym_restrict] = ACTIONS(2226), + [anon_sym___restrict__] = ACTIONS(2226), + [anon_sym__Atomic] = ACTIONS(2226), + [anon_sym__Noreturn] = ACTIONS(2226), + [anon_sym_noreturn] = ACTIONS(2226), + [anon_sym__Nonnull] = ACTIONS(2226), + [anon_sym_mutable] = ACTIONS(2226), + [anon_sym_constinit] = ACTIONS(2226), + [anon_sym_consteval] = ACTIONS(2226), + [anon_sym_alignas] = ACTIONS(2226), + [anon_sym__Alignas] = ACTIONS(2226), + [sym_primitive_type] = ACTIONS(2226), + [anon_sym_enum] = ACTIONS(2226), + [anon_sym_class] = ACTIONS(2226), + [anon_sym_struct] = ACTIONS(2226), + [anon_sym_union] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_switch] = ACTIONS(2226), + [anon_sym_case] = ACTIONS(2226), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_do] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_goto] = ACTIONS(2226), + [anon_sym___try] = ACTIONS(2226), + [anon_sym___leave] = ACTIONS(2226), + [anon_sym_not] = ACTIONS(2226), + [anon_sym_compl] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym___alignof__] = ACTIONS(2226), + [anon_sym___alignof] = ACTIONS(2226), + [anon_sym__alignof] = ACTIONS(2226), + [anon_sym_alignof] = ACTIONS(2226), + [anon_sym__Alignof] = ACTIONS(2226), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2226), + [anon_sym_asm] = ACTIONS(2226), + [anon_sym___asm__] = ACTIONS(2226), + [anon_sym___asm] = ACTIONS(2226), + [sym_number_literal] = ACTIONS(2228), + [anon_sym_L_SQUOTE] = ACTIONS(2228), + [anon_sym_u_SQUOTE] = ACTIONS(2228), + [anon_sym_U_SQUOTE] = ACTIONS(2228), + [anon_sym_u8_SQUOTE] = ACTIONS(2228), + [anon_sym_SQUOTE] = ACTIONS(2228), + [anon_sym_L_DQUOTE] = ACTIONS(2228), + [anon_sym_u_DQUOTE] = ACTIONS(2228), + [anon_sym_U_DQUOTE] = ACTIONS(2228), + [anon_sym_u8_DQUOTE] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym_true] = ACTIONS(2226), + [sym_false] = ACTIONS(2226), + [anon_sym_NULL] = ACTIONS(2226), + [anon_sym_nullptr] = ACTIONS(2226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2226), + [anon_sym_decltype] = ACTIONS(2226), + [anon_sym_explicit] = ACTIONS(2226), + [anon_sym_typename] = ACTIONS(2226), + [anon_sym_template] = ACTIONS(2226), + [anon_sym_operator] = ACTIONS(2226), + [anon_sym_try] = ACTIONS(2226), + [anon_sym_delete] = ACTIONS(2226), + [anon_sym_throw] = ACTIONS(2226), + [anon_sym_namespace] = ACTIONS(2226), + [anon_sym_using] = ACTIONS(2226), + [anon_sym_static_assert] = ACTIONS(2226), + [anon_sym_concept] = ACTIONS(2226), + [anon_sym_co_return] = ACTIONS(2226), + [anon_sym_co_yield] = ACTIONS(2226), + [anon_sym_R_DQUOTE] = ACTIONS(2228), + [anon_sym_LR_DQUOTE] = ACTIONS(2228), + [anon_sym_uR_DQUOTE] = ACTIONS(2228), + [anon_sym_UR_DQUOTE] = ACTIONS(2228), + [anon_sym_u8R_DQUOTE] = ACTIONS(2228), + [anon_sym_co_await] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(2226), + [anon_sym_requires] = ACTIONS(2226), + [sym_this] = ACTIONS(2226), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2226), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_FORWARD] = ACTIONS(2226), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2226), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2226), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2226), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2226), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_PS_GET] = ACTIONS(2226), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2226), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2226), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2226), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2226), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2226), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2226), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2226), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2226), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2226), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2226), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2226), + [anon_sym_MOZ_COLD] = ACTIONS(2226), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2226), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2226), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2226), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2226), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2226), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2226), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2226), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2226), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2226), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2226), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2226), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2226), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2226), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2226), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2226), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2226), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2226), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2226), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2226), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2226), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_NONNULL] = ACTIONS(2226), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2226), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2226), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2226), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2226), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2226), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_NORETURN] = ACTIONS(2226), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2226), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2226), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2226), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2226), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2226), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2226), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2226), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2226), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2226), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2226), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2226), + [anon_sym_MOZ_RAII] = ACTIONS(2226), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2226), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2226), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2226), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2226), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2226), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2226), + }, + [STATE(474)] = { + [sym_identifier] = ACTIONS(2250), + [aux_sym_preproc_include_token1] = ACTIONS(2250), + [aux_sym_preproc_def_token1] = ACTIONS(2250), + [aux_sym_preproc_if_token1] = ACTIONS(2250), + [aux_sym_preproc_if_token2] = ACTIONS(2250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2250), + [sym_preproc_directive] = ACTIONS(2250), + [anon_sym_LPAREN2] = ACTIONS(2252), + [anon_sym_BANG] = ACTIONS(2252), + [anon_sym_TILDE] = ACTIONS(2252), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2252), + [anon_sym_AMP_AMP] = ACTIONS(2252), + [anon_sym_AMP] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2252), + [anon_sym___extension__] = ACTIONS(2250), + [anon_sym_typedef] = ACTIONS(2250), + [anon_sym_virtual] = ACTIONS(2250), + [anon_sym_extern] = ACTIONS(2250), + [anon_sym___attribute__] = ACTIONS(2250), + [anon_sym___attribute] = ACTIONS(2250), + [anon_sym_COLON_COLON] = ACTIONS(2252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2252), + [anon_sym___declspec] = ACTIONS(2250), + [anon_sym___based] = ACTIONS(2250), + [anon_sym___cdecl] = ACTIONS(2250), + [anon_sym___clrcall] = ACTIONS(2250), + [anon_sym___stdcall] = ACTIONS(2250), + [anon_sym___fastcall] = ACTIONS(2250), + [anon_sym___thiscall] = ACTIONS(2250), + [anon_sym___vectorcall] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2252), + [anon_sym_signed] = ACTIONS(2250), + [anon_sym_unsigned] = ACTIONS(2250), + [anon_sym_long] = ACTIONS(2250), + [anon_sym_short] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_register] = ACTIONS(2250), + [anon_sym_inline] = ACTIONS(2250), + [anon_sym___inline] = ACTIONS(2250), + [anon_sym___inline__] = ACTIONS(2250), + [anon_sym___forceinline] = ACTIONS(2250), + [anon_sym_thread_local] = ACTIONS(2250), + [anon_sym___thread] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_constexpr] = ACTIONS(2250), + [anon_sym_volatile] = ACTIONS(2250), + [anon_sym_restrict] = ACTIONS(2250), + [anon_sym___restrict__] = ACTIONS(2250), + [anon_sym__Atomic] = ACTIONS(2250), + [anon_sym__Noreturn] = ACTIONS(2250), + [anon_sym_noreturn] = ACTIONS(2250), + [anon_sym__Nonnull] = ACTIONS(2250), + [anon_sym_mutable] = ACTIONS(2250), + [anon_sym_constinit] = ACTIONS(2250), + [anon_sym_consteval] = ACTIONS(2250), + [anon_sym_alignas] = ACTIONS(2250), + [anon_sym__Alignas] = ACTIONS(2250), + [sym_primitive_type] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_case] = ACTIONS(2250), + [anon_sym_default] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_goto] = ACTIONS(2250), + [anon_sym___try] = ACTIONS(2250), + [anon_sym___leave] = ACTIONS(2250), + [anon_sym_not] = ACTIONS(2250), + [anon_sym_compl] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2252), + [anon_sym_PLUS_PLUS] = ACTIONS(2252), + [anon_sym_sizeof] = ACTIONS(2250), + [anon_sym___alignof__] = ACTIONS(2250), + [anon_sym___alignof] = ACTIONS(2250), + [anon_sym__alignof] = ACTIONS(2250), + [anon_sym_alignof] = ACTIONS(2250), + [anon_sym__Alignof] = ACTIONS(2250), + [anon_sym_offsetof] = ACTIONS(2250), + [anon_sym__Generic] = ACTIONS(2250), + [anon_sym_asm] = ACTIONS(2250), + [anon_sym___asm__] = ACTIONS(2250), + [anon_sym___asm] = ACTIONS(2250), + [sym_number_literal] = ACTIONS(2252), + [anon_sym_L_SQUOTE] = ACTIONS(2252), + [anon_sym_u_SQUOTE] = ACTIONS(2252), + [anon_sym_U_SQUOTE] = ACTIONS(2252), + [anon_sym_u8_SQUOTE] = ACTIONS(2252), + [anon_sym_SQUOTE] = ACTIONS(2252), + [anon_sym_L_DQUOTE] = ACTIONS(2252), + [anon_sym_u_DQUOTE] = ACTIONS(2252), + [anon_sym_U_DQUOTE] = ACTIONS(2252), + [anon_sym_u8_DQUOTE] = ACTIONS(2252), + [anon_sym_DQUOTE] = ACTIONS(2252), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2250), + [anon_sym_decltype] = ACTIONS(2250), + [anon_sym_explicit] = ACTIONS(2250), + [anon_sym_typename] = ACTIONS(2250), + [anon_sym_template] = ACTIONS(2250), + [anon_sym_operator] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_static_assert] = ACTIONS(2250), + [anon_sym_concept] = ACTIONS(2250), + [anon_sym_co_return] = ACTIONS(2250), + [anon_sym_co_yield] = ACTIONS(2250), + [anon_sym_R_DQUOTE] = ACTIONS(2252), + [anon_sym_LR_DQUOTE] = ACTIONS(2252), + [anon_sym_uR_DQUOTE] = ACTIONS(2252), + [anon_sym_UR_DQUOTE] = ACTIONS(2252), + [anon_sym_u8R_DQUOTE] = ACTIONS(2252), + [anon_sym_co_await] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2250), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_FORWARD] = ACTIONS(2250), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2250), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2250), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2250), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2250), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_PS_GET] = ACTIONS(2250), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2250), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2250), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2250), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2250), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2250), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2250), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2250), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2250), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2250), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2250), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2250), + [anon_sym_MOZ_COLD] = ACTIONS(2250), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2250), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2250), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2250), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2250), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2250), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2250), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2250), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2250), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2250), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2250), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2250), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2250), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2250), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2250), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2250), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2250), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2250), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2250), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2250), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2250), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_NONNULL] = ACTIONS(2250), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2250), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2250), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2250), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2250), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2250), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_NORETURN] = ACTIONS(2250), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2250), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2250), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2250), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2250), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2250), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2250), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2250), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2250), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2250), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2250), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2250), + [anon_sym_MOZ_RAII] = ACTIONS(2250), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2250), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2250), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2250), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2250), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2250), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2250), + }, + [STATE(475)] = { + [ts_builtin_sym_end] = ACTIONS(2266), + [sym_identifier] = ACTIONS(2264), + [aux_sym_preproc_include_token1] = ACTIONS(2264), + [aux_sym_preproc_def_token1] = ACTIONS(2264), + [aux_sym_preproc_if_token1] = ACTIONS(2264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2264), + [sym_preproc_directive] = ACTIONS(2264), + [anon_sym_LPAREN2] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_AMP] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym___extension__] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2264), + [anon_sym_virtual] = ACTIONS(2264), + [anon_sym_extern] = ACTIONS(2264), + [anon_sym___attribute__] = ACTIONS(2264), + [anon_sym___attribute] = ACTIONS(2264), + [anon_sym_COLON_COLON] = ACTIONS(2266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2266), + [anon_sym___declspec] = ACTIONS(2264), + [anon_sym___based] = ACTIONS(2264), + [anon_sym___cdecl] = ACTIONS(2264), + [anon_sym___clrcall] = ACTIONS(2264), + [anon_sym___stdcall] = ACTIONS(2264), + [anon_sym___fastcall] = ACTIONS(2264), + [anon_sym___thiscall] = ACTIONS(2264), + [anon_sym___vectorcall] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2266), + [anon_sym_signed] = ACTIONS(2264), + [anon_sym_unsigned] = ACTIONS(2264), + [anon_sym_long] = ACTIONS(2264), + [anon_sym_short] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_register] = ACTIONS(2264), + [anon_sym_inline] = ACTIONS(2264), + [anon_sym___inline] = ACTIONS(2264), + [anon_sym___inline__] = ACTIONS(2264), + [anon_sym___forceinline] = ACTIONS(2264), + [anon_sym_thread_local] = ACTIONS(2264), + [anon_sym___thread] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_constexpr] = ACTIONS(2264), + [anon_sym_volatile] = ACTIONS(2264), + [anon_sym_restrict] = ACTIONS(2264), + [anon_sym___restrict__] = ACTIONS(2264), + [anon_sym__Atomic] = ACTIONS(2264), + [anon_sym__Noreturn] = ACTIONS(2264), + [anon_sym_noreturn] = ACTIONS(2264), + [anon_sym__Nonnull] = ACTIONS(2264), + [anon_sym_mutable] = ACTIONS(2264), + [anon_sym_constinit] = ACTIONS(2264), + [anon_sym_consteval] = ACTIONS(2264), + [anon_sym_alignas] = ACTIONS(2264), + [anon_sym__Alignas] = ACTIONS(2264), + [sym_primitive_type] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + [anon_sym_class] = ACTIONS(2264), + [anon_sym_struct] = ACTIONS(2264), + [anon_sym_union] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_switch] = ACTIONS(2264), + [anon_sym_case] = ACTIONS(2264), + [anon_sym_default] = ACTIONS(2264), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_goto] = ACTIONS(2264), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(2266), + [anon_sym_PLUS_PLUS] = ACTIONS(2266), + [anon_sym_sizeof] = ACTIONS(2264), + [anon_sym___alignof__] = ACTIONS(2264), + [anon_sym___alignof] = ACTIONS(2264), + [anon_sym__alignof] = ACTIONS(2264), + [anon_sym_alignof] = ACTIONS(2264), + [anon_sym__Alignof] = ACTIONS(2264), + [anon_sym_offsetof] = ACTIONS(2264), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2264), + [anon_sym___asm__] = ACTIONS(2264), + [anon_sym___asm] = ACTIONS(2264), + [sym_number_literal] = ACTIONS(2266), + [anon_sym_L_SQUOTE] = ACTIONS(2266), + [anon_sym_u_SQUOTE] = ACTIONS(2266), + [anon_sym_U_SQUOTE] = ACTIONS(2266), + [anon_sym_u8_SQUOTE] = ACTIONS(2266), + [anon_sym_SQUOTE] = ACTIONS(2266), + [anon_sym_L_DQUOTE] = ACTIONS(2266), + [anon_sym_u_DQUOTE] = ACTIONS(2266), + [anon_sym_U_DQUOTE] = ACTIONS(2266), + [anon_sym_u8_DQUOTE] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(2266), + [sym_true] = ACTIONS(2264), + [sym_false] = ACTIONS(2264), + [anon_sym_NULL] = ACTIONS(2264), + [anon_sym_nullptr] = ACTIONS(2264), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2264), + [anon_sym_decltype] = ACTIONS(2264), + [anon_sym_explicit] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_template] = ACTIONS(2264), + [anon_sym_operator] = ACTIONS(2264), + [anon_sym_try] = ACTIONS(2264), + [anon_sym_delete] = ACTIONS(2264), + [anon_sym_throw] = ACTIONS(2264), + [anon_sym_namespace] = ACTIONS(2264), + [anon_sym_using] = ACTIONS(2264), + [anon_sym_static_assert] = ACTIONS(2264), + [anon_sym_concept] = ACTIONS(2264), + [anon_sym_co_return] = ACTIONS(2264), + [anon_sym_co_yield] = ACTIONS(2264), + [anon_sym_R_DQUOTE] = ACTIONS(2266), + [anon_sym_LR_DQUOTE] = ACTIONS(2266), + [anon_sym_uR_DQUOTE] = ACTIONS(2266), + [anon_sym_UR_DQUOTE] = ACTIONS(2266), + [anon_sym_u8R_DQUOTE] = ACTIONS(2266), + [anon_sym_co_await] = ACTIONS(2264), + [anon_sym_new] = ACTIONS(2264), + [anon_sym_requires] = ACTIONS(2264), + [sym_this] = ACTIONS(2264), + [sym_alone_macro] = ACTIONS(2266), + [aux_sym_alone_macro_call_token1] = ACTIONS(2264), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2264), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_FORWARD] = ACTIONS(2264), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2264), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2264), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2264), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2264), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_PS_GET] = ACTIONS(2264), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2264), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2264), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2264), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2264), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2264), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2264), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2264), + [anon_sym_MOZ_COLD] = ACTIONS(2264), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2264), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2264), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2264), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2264), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2264), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2264), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2264), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2264), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2264), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2264), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2264), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2264), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2264), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_NONNULL] = ACTIONS(2264), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2264), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2264), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2264), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2264), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2264), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2264), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2264), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2264), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2264), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2264), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2264), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2264), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2264), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2264), + [anon_sym_MOZ_RAII] = ACTIONS(2264), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2264), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2264), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2264), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2264), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2264), + }, + [STATE(476)] = { + [sym_identifier] = ACTIONS(2226), + [aux_sym_preproc_include_token1] = ACTIONS(2226), + [aux_sym_preproc_def_token1] = ACTIONS(2226), + [aux_sym_preproc_if_token1] = ACTIONS(2226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2226), + [sym_preproc_directive] = ACTIONS(2226), + [anon_sym_LPAREN2] = ACTIONS(2228), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_AMP_AMP] = ACTIONS(2228), + [anon_sym_AMP] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym___extension__] = ACTIONS(2226), + [anon_sym_typedef] = ACTIONS(2226), + [anon_sym_virtual] = ACTIONS(2226), + [anon_sym_extern] = ACTIONS(2226), + [anon_sym___attribute__] = ACTIONS(2226), + [anon_sym___attribute] = ACTIONS(2226), + [anon_sym_COLON_COLON] = ACTIONS(2228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2228), + [anon_sym___declspec] = ACTIONS(2226), + [anon_sym___based] = ACTIONS(2226), + [anon_sym___cdecl] = ACTIONS(2226), + [anon_sym___clrcall] = ACTIONS(2226), + [anon_sym___stdcall] = ACTIONS(2226), + [anon_sym___fastcall] = ACTIONS(2226), + [anon_sym___thiscall] = ACTIONS(2226), + [anon_sym___vectorcall] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_signed] = ACTIONS(2226), + [anon_sym_unsigned] = ACTIONS(2226), + [anon_sym_long] = ACTIONS(2226), + [anon_sym_short] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2226), + [anon_sym_register] = ACTIONS(2226), + [anon_sym_inline] = ACTIONS(2226), + [anon_sym___inline] = ACTIONS(2226), + [anon_sym___inline__] = ACTIONS(2226), + [anon_sym___forceinline] = ACTIONS(2226), + [anon_sym_thread_local] = ACTIONS(2226), + [anon_sym___thread] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [anon_sym_constexpr] = ACTIONS(2226), + [anon_sym_volatile] = ACTIONS(2226), + [anon_sym_restrict] = ACTIONS(2226), + [anon_sym___restrict__] = ACTIONS(2226), + [anon_sym__Atomic] = ACTIONS(2226), + [anon_sym__Noreturn] = ACTIONS(2226), + [anon_sym_noreturn] = ACTIONS(2226), + [anon_sym__Nonnull] = ACTIONS(2226), + [anon_sym_mutable] = ACTIONS(2226), + [anon_sym_constinit] = ACTIONS(2226), + [anon_sym_consteval] = ACTIONS(2226), + [anon_sym_alignas] = ACTIONS(2226), + [anon_sym__Alignas] = ACTIONS(2226), + [sym_primitive_type] = ACTIONS(2226), + [anon_sym_enum] = ACTIONS(2226), + [anon_sym_class] = ACTIONS(2226), + [anon_sym_struct] = ACTIONS(2226), + [anon_sym_union] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_switch] = ACTIONS(2226), + [anon_sym_case] = ACTIONS(2226), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_do] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_goto] = ACTIONS(2226), + [anon_sym___try] = ACTIONS(2226), + [anon_sym___leave] = ACTIONS(2226), + [anon_sym_not] = ACTIONS(2226), + [anon_sym_compl] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym___alignof__] = ACTIONS(2226), + [anon_sym___alignof] = ACTIONS(2226), + [anon_sym__alignof] = ACTIONS(2226), + [anon_sym_alignof] = ACTIONS(2226), + [anon_sym__Alignof] = ACTIONS(2226), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2226), + [anon_sym_asm] = ACTIONS(2226), + [anon_sym___asm__] = ACTIONS(2226), + [anon_sym___asm] = ACTIONS(2226), + [sym_number_literal] = ACTIONS(2228), + [anon_sym_L_SQUOTE] = ACTIONS(2228), + [anon_sym_u_SQUOTE] = ACTIONS(2228), + [anon_sym_U_SQUOTE] = ACTIONS(2228), + [anon_sym_u8_SQUOTE] = ACTIONS(2228), + [anon_sym_SQUOTE] = ACTIONS(2228), + [anon_sym_L_DQUOTE] = ACTIONS(2228), + [anon_sym_u_DQUOTE] = ACTIONS(2228), + [anon_sym_U_DQUOTE] = ACTIONS(2228), + [anon_sym_u8_DQUOTE] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym_true] = ACTIONS(2226), + [sym_false] = ACTIONS(2226), + [anon_sym_NULL] = ACTIONS(2226), + [anon_sym_nullptr] = ACTIONS(2226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2226), + [anon_sym_decltype] = ACTIONS(2226), + [anon_sym_explicit] = ACTIONS(2226), + [anon_sym_typename] = ACTIONS(2226), + [anon_sym_template] = ACTIONS(2226), + [anon_sym_operator] = ACTIONS(2226), + [anon_sym_try] = ACTIONS(2226), + [anon_sym_delete] = ACTIONS(2226), + [anon_sym_throw] = ACTIONS(2226), + [anon_sym_namespace] = ACTIONS(2226), + [anon_sym_using] = ACTIONS(2226), + [anon_sym_static_assert] = ACTIONS(2226), + [anon_sym_concept] = ACTIONS(2226), + [anon_sym_co_return] = ACTIONS(2226), + [anon_sym_co_yield] = ACTIONS(2226), + [anon_sym_R_DQUOTE] = ACTIONS(2228), + [anon_sym_LR_DQUOTE] = ACTIONS(2228), + [anon_sym_uR_DQUOTE] = ACTIONS(2228), + [anon_sym_UR_DQUOTE] = ACTIONS(2228), + [anon_sym_u8R_DQUOTE] = ACTIONS(2228), + [anon_sym_co_await] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(2226), + [anon_sym_requires] = ACTIONS(2226), + [sym_this] = ACTIONS(2226), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2226), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_FORWARD] = ACTIONS(2226), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2226), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2226), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2226), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2226), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_PS_GET] = ACTIONS(2226), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2226), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2226), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2226), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2226), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2226), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2226), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2226), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2226), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2226), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2226), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2226), + [anon_sym_MOZ_COLD] = ACTIONS(2226), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2226), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2226), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2226), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2226), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2226), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2226), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2226), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2226), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2226), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2226), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2226), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2226), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2226), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2226), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2226), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2226), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2226), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2226), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2226), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2226), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_NONNULL] = ACTIONS(2226), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2226), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2226), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2226), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2226), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2226), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_NORETURN] = ACTIONS(2226), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2226), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2226), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2226), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2226), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2226), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2226), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2226), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2226), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2226), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2226), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2226), + [anon_sym_MOZ_RAII] = ACTIONS(2226), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2226), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2226), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2226), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2226), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2226), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2226), + }, + [STATE(477)] = { + [ts_builtin_sym_end] = ACTIONS(2456), + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_include_token1] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_AMP_AMP] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2454), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_virtual] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___based] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_mutable] = ACTIONS(2454), + [anon_sym_constinit] = ACTIONS(2454), + [anon_sym_consteval] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_class] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_switch] = ACTIONS(2454), + [anon_sym_case] = ACTIONS(2454), + [anon_sym_default] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_goto] = ACTIONS(2454), + [anon_sym_not] = ACTIONS(2454), + [anon_sym_compl] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_sizeof] = ACTIONS(2454), + [anon_sym___alignof__] = ACTIONS(2454), + [anon_sym___alignof] = ACTIONS(2454), + [anon_sym__alignof] = ACTIONS(2454), + [anon_sym_alignof] = ACTIONS(2454), + [anon_sym__Alignof] = ACTIONS(2454), + [anon_sym_offsetof] = ACTIONS(2454), + [anon_sym__Generic] = ACTIONS(2454), + [anon_sym_asm] = ACTIONS(2454), + [anon_sym___asm__] = ACTIONS(2454), + [anon_sym___asm] = ACTIONS(2454), + [sym_number_literal] = ACTIONS(2456), + [anon_sym_L_SQUOTE] = ACTIONS(2456), + [anon_sym_u_SQUOTE] = ACTIONS(2456), + [anon_sym_U_SQUOTE] = ACTIONS(2456), + [anon_sym_u8_SQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_L_DQUOTE] = ACTIONS(2456), + [anon_sym_u_DQUOTE] = ACTIONS(2456), + [anon_sym_U_DQUOTE] = ACTIONS(2456), + [anon_sym_u8_DQUOTE] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [anon_sym_NULL] = ACTIONS(2454), + [anon_sym_nullptr] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2454), + [anon_sym_decltype] = ACTIONS(2454), + [anon_sym_explicit] = ACTIONS(2454), + [anon_sym_typename] = ACTIONS(2454), + [anon_sym_template] = ACTIONS(2454), + [anon_sym_operator] = ACTIONS(2454), + [anon_sym_try] = ACTIONS(2454), + [anon_sym_delete] = ACTIONS(2454), + [anon_sym_throw] = ACTIONS(2454), + [anon_sym_namespace] = ACTIONS(2454), + [anon_sym_using] = ACTIONS(2454), + [anon_sym_static_assert] = ACTIONS(2454), + [anon_sym_concept] = ACTIONS(2454), + [anon_sym_co_return] = ACTIONS(2454), + [anon_sym_co_yield] = ACTIONS(2454), + [anon_sym_R_DQUOTE] = ACTIONS(2456), + [anon_sym_LR_DQUOTE] = ACTIONS(2456), + [anon_sym_uR_DQUOTE] = ACTIONS(2456), + [anon_sym_UR_DQUOTE] = ACTIONS(2456), + [anon_sym_u8R_DQUOTE] = ACTIONS(2456), + [anon_sym_co_await] = ACTIONS(2454), + [anon_sym_new] = ACTIONS(2454), + [anon_sym_requires] = ACTIONS(2454), + [sym_this] = ACTIONS(2454), + [sym_alone_macro] = ACTIONS(2456), + [aux_sym_alone_macro_call_token1] = ACTIONS(2454), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2454), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_FORWARD] = ACTIONS(2454), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2454), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2454), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2454), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_PS_GET] = ACTIONS(2454), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2454), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2454), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2454), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2454), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2454), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2454), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2454), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2454), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2454), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2454), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2454), + [anon_sym_MOZ_COLD] = ACTIONS(2454), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2454), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2454), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2454), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2454), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2454), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2454), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2454), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2454), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2454), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2454), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2454), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2454), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2454), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2454), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2454), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2454), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2454), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2454), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2454), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2454), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_NONNULL] = ACTIONS(2454), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2454), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2454), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2454), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2454), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2454), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_NORETURN] = ACTIONS(2454), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2454), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2454), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2454), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2454), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2454), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2454), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2454), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2454), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2454), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2454), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2454), + [anon_sym_MOZ_RAII] = ACTIONS(2454), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2454), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2454), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2454), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2454), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2454), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2454), + }, + [STATE(478)] = { + [ts_builtin_sym_end] = ACTIONS(2367), + [sym_identifier] = ACTIONS(2365), + [aux_sym_preproc_include_token1] = ACTIONS(2365), + [aux_sym_preproc_def_token1] = ACTIONS(2365), + [aux_sym_preproc_if_token1] = ACTIONS(2365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2365), + [sym_preproc_directive] = ACTIONS(2365), + [anon_sym_LPAREN2] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_AMP_AMP] = ACTIONS(2367), + [anon_sym_AMP] = ACTIONS(2365), + [anon_sym_SEMI] = ACTIONS(2367), + [anon_sym___extension__] = ACTIONS(2365), + [anon_sym_typedef] = ACTIONS(2365), + [anon_sym_virtual] = ACTIONS(2365), + [anon_sym_extern] = ACTIONS(2365), + [anon_sym___attribute__] = ACTIONS(2365), + [anon_sym___attribute] = ACTIONS(2365), + [anon_sym_COLON_COLON] = ACTIONS(2367), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2367), + [anon_sym___declspec] = ACTIONS(2365), + [anon_sym___based] = ACTIONS(2365), + [anon_sym___cdecl] = ACTIONS(2365), + [anon_sym___clrcall] = ACTIONS(2365), + [anon_sym___stdcall] = ACTIONS(2365), + [anon_sym___fastcall] = ACTIONS(2365), + [anon_sym___thiscall] = ACTIONS(2365), + [anon_sym___vectorcall] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_signed] = ACTIONS(2365), + [anon_sym_unsigned] = ACTIONS(2365), + [anon_sym_long] = ACTIONS(2365), + [anon_sym_short] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_static] = ACTIONS(2365), + [anon_sym_register] = ACTIONS(2365), + [anon_sym_inline] = ACTIONS(2365), + [anon_sym___inline] = ACTIONS(2365), + [anon_sym___inline__] = ACTIONS(2365), + [anon_sym___forceinline] = ACTIONS(2365), + [anon_sym_thread_local] = ACTIONS(2365), + [anon_sym___thread] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_constexpr] = ACTIONS(2365), + [anon_sym_volatile] = ACTIONS(2365), + [anon_sym_restrict] = ACTIONS(2365), + [anon_sym___restrict__] = ACTIONS(2365), + [anon_sym__Atomic] = ACTIONS(2365), + [anon_sym__Noreturn] = ACTIONS(2365), + [anon_sym_noreturn] = ACTIONS(2365), + [anon_sym__Nonnull] = ACTIONS(2365), + [anon_sym_mutable] = ACTIONS(2365), + [anon_sym_constinit] = ACTIONS(2365), + [anon_sym_consteval] = ACTIONS(2365), + [anon_sym_alignas] = ACTIONS(2365), + [anon_sym__Alignas] = ACTIONS(2365), + [sym_primitive_type] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), + [anon_sym_class] = ACTIONS(2365), + [anon_sym_struct] = ACTIONS(2365), + [anon_sym_union] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_switch] = ACTIONS(2365), + [anon_sym_case] = ACTIONS(2365), + [anon_sym_default] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), + [anon_sym_do] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_goto] = ACTIONS(2365), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(2367), + [anon_sym_PLUS_PLUS] = ACTIONS(2367), + [anon_sym_sizeof] = ACTIONS(2365), + [anon_sym___alignof__] = ACTIONS(2365), + [anon_sym___alignof] = ACTIONS(2365), + [anon_sym__alignof] = ACTIONS(2365), + [anon_sym_alignof] = ACTIONS(2365), + [anon_sym__Alignof] = ACTIONS(2365), + [anon_sym_offsetof] = ACTIONS(2365), + [anon_sym__Generic] = ACTIONS(2365), + [anon_sym_asm] = ACTIONS(2365), + [anon_sym___asm__] = ACTIONS(2365), + [anon_sym___asm] = ACTIONS(2365), + [sym_number_literal] = ACTIONS(2367), + [anon_sym_L_SQUOTE] = ACTIONS(2367), + [anon_sym_u_SQUOTE] = ACTIONS(2367), + [anon_sym_U_SQUOTE] = ACTIONS(2367), + [anon_sym_u8_SQUOTE] = ACTIONS(2367), + [anon_sym_SQUOTE] = ACTIONS(2367), + [anon_sym_L_DQUOTE] = ACTIONS(2367), + [anon_sym_u_DQUOTE] = ACTIONS(2367), + [anon_sym_U_DQUOTE] = ACTIONS(2367), + [anon_sym_u8_DQUOTE] = ACTIONS(2367), + [anon_sym_DQUOTE] = ACTIONS(2367), + [sym_true] = ACTIONS(2365), + [sym_false] = ACTIONS(2365), + [anon_sym_NULL] = ACTIONS(2365), + [anon_sym_nullptr] = ACTIONS(2365), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2365), + [anon_sym_decltype] = ACTIONS(2365), + [anon_sym_explicit] = ACTIONS(2365), + [anon_sym_typename] = ACTIONS(2365), + [anon_sym_template] = ACTIONS(2365), + [anon_sym_operator] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2365), + [anon_sym_delete] = ACTIONS(2365), + [anon_sym_throw] = ACTIONS(2365), + [anon_sym_namespace] = ACTIONS(2365), + [anon_sym_using] = ACTIONS(2365), + [anon_sym_static_assert] = ACTIONS(2365), + [anon_sym_concept] = ACTIONS(2365), + [anon_sym_co_return] = ACTIONS(2365), + [anon_sym_co_yield] = ACTIONS(2365), + [anon_sym_R_DQUOTE] = ACTIONS(2367), + [anon_sym_LR_DQUOTE] = ACTIONS(2367), + [anon_sym_uR_DQUOTE] = ACTIONS(2367), + [anon_sym_UR_DQUOTE] = ACTIONS(2367), + [anon_sym_u8R_DQUOTE] = ACTIONS(2367), + [anon_sym_co_await] = ACTIONS(2365), + [anon_sym_new] = ACTIONS(2365), + [anon_sym_requires] = ACTIONS(2365), + [sym_this] = ACTIONS(2365), + [sym_alone_macro] = ACTIONS(2367), + [aux_sym_alone_macro_call_token1] = ACTIONS(2365), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2365), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_FORWARD] = ACTIONS(2365), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2365), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2365), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2365), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2365), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_PS_GET] = ACTIONS(2365), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2365), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2365), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2365), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2365), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2365), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2365), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2365), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2365), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2365), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2365), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2365), + [anon_sym_MOZ_COLD] = ACTIONS(2365), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2365), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2365), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2365), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2365), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2365), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2365), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2365), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2365), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2365), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2365), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2365), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2365), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2365), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2365), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2365), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2365), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2365), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2365), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2365), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2365), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_NONNULL] = ACTIONS(2365), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2365), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2365), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2365), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2365), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2365), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_NORETURN] = ACTIONS(2365), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2365), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2365), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2365), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2365), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2365), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2365), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2365), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2365), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2365), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2365), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2365), + [anon_sym_MOZ_RAII] = ACTIONS(2365), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2365), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2365), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2365), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2365), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2365), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2365), + }, + [STATE(479)] = { + [ts_builtin_sym_end] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2369), + [aux_sym_preproc_include_token1] = ACTIONS(2369), + [aux_sym_preproc_def_token1] = ACTIONS(2369), + [aux_sym_preproc_if_token1] = ACTIONS(2369), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2369), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2369), + [sym_preproc_directive] = ACTIONS(2369), + [anon_sym_LPAREN2] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(2371), + [anon_sym_TILDE] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2369), + [anon_sym_PLUS] = ACTIONS(2369), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_AMP_AMP] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2369), + [anon_sym_SEMI] = ACTIONS(2371), + [anon_sym___extension__] = ACTIONS(2369), + [anon_sym_typedef] = ACTIONS(2369), + [anon_sym_virtual] = ACTIONS(2369), + [anon_sym_extern] = ACTIONS(2369), + [anon_sym___attribute__] = ACTIONS(2369), + [anon_sym___attribute] = ACTIONS(2369), + [anon_sym_COLON_COLON] = ACTIONS(2371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2371), + [anon_sym___declspec] = ACTIONS(2369), + [anon_sym___based] = ACTIONS(2369), + [anon_sym___cdecl] = ACTIONS(2369), + [anon_sym___clrcall] = ACTIONS(2369), + [anon_sym___stdcall] = ACTIONS(2369), + [anon_sym___fastcall] = ACTIONS(2369), + [anon_sym___thiscall] = ACTIONS(2369), + [anon_sym___vectorcall] = ACTIONS(2369), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_signed] = ACTIONS(2369), + [anon_sym_unsigned] = ACTIONS(2369), + [anon_sym_long] = ACTIONS(2369), + [anon_sym_short] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2369), + [anon_sym_static] = ACTIONS(2369), + [anon_sym_register] = ACTIONS(2369), + [anon_sym_inline] = ACTIONS(2369), + [anon_sym___inline] = ACTIONS(2369), + [anon_sym___inline__] = ACTIONS(2369), + [anon_sym___forceinline] = ACTIONS(2369), + [anon_sym_thread_local] = ACTIONS(2369), + [anon_sym___thread] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [anon_sym_constexpr] = ACTIONS(2369), + [anon_sym_volatile] = ACTIONS(2369), + [anon_sym_restrict] = ACTIONS(2369), + [anon_sym___restrict__] = ACTIONS(2369), + [anon_sym__Atomic] = ACTIONS(2369), + [anon_sym__Noreturn] = ACTIONS(2369), + [anon_sym_noreturn] = ACTIONS(2369), + [anon_sym__Nonnull] = ACTIONS(2369), + [anon_sym_mutable] = ACTIONS(2369), + [anon_sym_constinit] = ACTIONS(2369), + [anon_sym_consteval] = ACTIONS(2369), + [anon_sym_alignas] = ACTIONS(2369), + [anon_sym__Alignas] = ACTIONS(2369), + [sym_primitive_type] = ACTIONS(2369), + [anon_sym_enum] = ACTIONS(2369), + [anon_sym_class] = ACTIONS(2369), + [anon_sym_struct] = ACTIONS(2369), + [anon_sym_union] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_switch] = ACTIONS(2369), + [anon_sym_case] = ACTIONS(2369), + [anon_sym_default] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [anon_sym_do] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_goto] = ACTIONS(2369), + [anon_sym_not] = ACTIONS(2369), + [anon_sym_compl] = ACTIONS(2369), + [anon_sym_DASH_DASH] = ACTIONS(2371), + [anon_sym_PLUS_PLUS] = ACTIONS(2371), + [anon_sym_sizeof] = ACTIONS(2369), + [anon_sym___alignof__] = ACTIONS(2369), + [anon_sym___alignof] = ACTIONS(2369), + [anon_sym__alignof] = ACTIONS(2369), + [anon_sym_alignof] = ACTIONS(2369), + [anon_sym__Alignof] = ACTIONS(2369), + [anon_sym_offsetof] = ACTIONS(2369), + [anon_sym__Generic] = ACTIONS(2369), + [anon_sym_asm] = ACTIONS(2369), + [anon_sym___asm__] = ACTIONS(2369), + [anon_sym___asm] = ACTIONS(2369), + [sym_number_literal] = ACTIONS(2371), + [anon_sym_L_SQUOTE] = ACTIONS(2371), + [anon_sym_u_SQUOTE] = ACTIONS(2371), + [anon_sym_U_SQUOTE] = ACTIONS(2371), + [anon_sym_u8_SQUOTE] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2371), + [anon_sym_L_DQUOTE] = ACTIONS(2371), + [anon_sym_u_DQUOTE] = ACTIONS(2371), + [anon_sym_U_DQUOTE] = ACTIONS(2371), + [anon_sym_u8_DQUOTE] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(2371), + [sym_true] = ACTIONS(2369), + [sym_false] = ACTIONS(2369), + [anon_sym_NULL] = ACTIONS(2369), + [anon_sym_nullptr] = ACTIONS(2369), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2369), + [anon_sym_decltype] = ACTIONS(2369), + [anon_sym_explicit] = ACTIONS(2369), + [anon_sym_typename] = ACTIONS(2369), + [anon_sym_template] = ACTIONS(2369), + [anon_sym_operator] = ACTIONS(2369), + [anon_sym_try] = ACTIONS(2369), + [anon_sym_delete] = ACTIONS(2369), + [anon_sym_throw] = ACTIONS(2369), + [anon_sym_namespace] = ACTIONS(2369), + [anon_sym_using] = ACTIONS(2369), + [anon_sym_static_assert] = ACTIONS(2369), + [anon_sym_concept] = ACTIONS(2369), + [anon_sym_co_return] = ACTIONS(2369), + [anon_sym_co_yield] = ACTIONS(2369), + [anon_sym_R_DQUOTE] = ACTIONS(2371), + [anon_sym_LR_DQUOTE] = ACTIONS(2371), + [anon_sym_uR_DQUOTE] = ACTIONS(2371), + [anon_sym_UR_DQUOTE] = ACTIONS(2371), + [anon_sym_u8R_DQUOTE] = ACTIONS(2371), + [anon_sym_co_await] = ACTIONS(2369), + [anon_sym_new] = ACTIONS(2369), + [anon_sym_requires] = ACTIONS(2369), + [sym_this] = ACTIONS(2369), + [sym_alone_macro] = ACTIONS(2371), + [aux_sym_alone_macro_call_token1] = ACTIONS(2369), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2369), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_FORWARD] = ACTIONS(2369), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2369), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2369), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2369), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2369), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_PS_GET] = ACTIONS(2369), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2369), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2369), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2369), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2369), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2369), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2369), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2369), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2369), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2369), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2369), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2369), + [anon_sym_MOZ_COLD] = ACTIONS(2369), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2369), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2369), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2369), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2369), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2369), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2369), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2369), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2369), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2369), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2369), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2369), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2369), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2369), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2369), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2369), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2369), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2369), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2369), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2369), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2369), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_NONNULL] = ACTIONS(2369), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2369), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2369), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2369), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2369), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2369), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_NORETURN] = ACTIONS(2369), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2369), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2369), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2369), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2369), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2369), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2369), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2369), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2369), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2369), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2369), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2369), + [anon_sym_MOZ_RAII] = ACTIONS(2369), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2369), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2369), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2369), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2369), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2369), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2369), + }, + [STATE(480)] = { + [sym_identifier] = ACTIONS(2236), + [aux_sym_preproc_include_token1] = ACTIONS(2236), + [aux_sym_preproc_def_token1] = ACTIONS(2236), + [aux_sym_preproc_if_token1] = ACTIONS(2236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2236), + [sym_preproc_directive] = ACTIONS(2236), + [anon_sym_LPAREN2] = ACTIONS(2238), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_TILDE] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_STAR] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_typedef] = ACTIONS(2236), + [anon_sym_virtual] = ACTIONS(2236), + [anon_sym_extern] = ACTIONS(2236), + [anon_sym___attribute__] = ACTIONS(2236), + [anon_sym___attribute] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2238), + [anon_sym___declspec] = ACTIONS(2236), + [anon_sym___based] = ACTIONS(2236), + [anon_sym___cdecl] = ACTIONS(2236), + [anon_sym___clrcall] = ACTIONS(2236), + [anon_sym___stdcall] = ACTIONS(2236), + [anon_sym___fastcall] = ACTIONS(2236), + [anon_sym___thiscall] = ACTIONS(2236), + [anon_sym___vectorcall] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(2238), + [anon_sym_signed] = ACTIONS(2236), + [anon_sym_unsigned] = ACTIONS(2236), + [anon_sym_long] = ACTIONS(2236), + [anon_sym_short] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_register] = ACTIONS(2236), + [anon_sym_inline] = ACTIONS(2236), + [anon_sym___inline] = ACTIONS(2236), + [anon_sym___inline__] = ACTIONS(2236), + [anon_sym___forceinline] = ACTIONS(2236), + [anon_sym_thread_local] = ACTIONS(2236), + [anon_sym___thread] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(2236), + [anon_sym_constexpr] = ACTIONS(2236), + [anon_sym_volatile] = ACTIONS(2236), + [anon_sym_restrict] = ACTIONS(2236), + [anon_sym___restrict__] = ACTIONS(2236), + [anon_sym__Atomic] = ACTIONS(2236), + [anon_sym__Noreturn] = ACTIONS(2236), + [anon_sym_noreturn] = ACTIONS(2236), + [anon_sym__Nonnull] = ACTIONS(2236), + [anon_sym_mutable] = ACTIONS(2236), + [anon_sym_constinit] = ACTIONS(2236), + [anon_sym_consteval] = ACTIONS(2236), + [anon_sym_alignas] = ACTIONS(2236), + [anon_sym__Alignas] = ACTIONS(2236), + [sym_primitive_type] = ACTIONS(2236), + [anon_sym_enum] = ACTIONS(2236), + [anon_sym_class] = ACTIONS(2236), + [anon_sym_struct] = ACTIONS(2236), + [anon_sym_union] = ACTIONS(2236), + [anon_sym_if] = ACTIONS(2236), + [anon_sym_switch] = ACTIONS(2236), + [anon_sym_case] = ACTIONS(2236), + [anon_sym_default] = ACTIONS(2236), + [anon_sym_while] = ACTIONS(2236), + [anon_sym_do] = ACTIONS(2236), + [anon_sym_for] = ACTIONS(2236), + [anon_sym_return] = ACTIONS(2236), + [anon_sym_break] = ACTIONS(2236), + [anon_sym_continue] = ACTIONS(2236), + [anon_sym_goto] = ACTIONS(2236), + [anon_sym___try] = ACTIONS(2236), + [anon_sym___leave] = ACTIONS(2236), + [anon_sym_not] = ACTIONS(2236), + [anon_sym_compl] = ACTIONS(2236), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_sizeof] = ACTIONS(2236), + [anon_sym___alignof__] = ACTIONS(2236), + [anon_sym___alignof] = ACTIONS(2236), + [anon_sym__alignof] = ACTIONS(2236), + [anon_sym_alignof] = ACTIONS(2236), + [anon_sym__Alignof] = ACTIONS(2236), + [anon_sym_offsetof] = ACTIONS(2236), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2236), + [anon_sym___asm__] = ACTIONS(2236), + [anon_sym___asm] = ACTIONS(2236), + [sym_number_literal] = ACTIONS(2238), + [anon_sym_L_SQUOTE] = ACTIONS(2238), + [anon_sym_u_SQUOTE] = ACTIONS(2238), + [anon_sym_U_SQUOTE] = ACTIONS(2238), + [anon_sym_u8_SQUOTE] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2238), + [anon_sym_L_DQUOTE] = ACTIONS(2238), + [anon_sym_u_DQUOTE] = ACTIONS(2238), + [anon_sym_U_DQUOTE] = ACTIONS(2238), + [anon_sym_u8_DQUOTE] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2238), + [sym_true] = ACTIONS(2236), + [sym_false] = ACTIONS(2236), + [anon_sym_NULL] = ACTIONS(2236), + [anon_sym_nullptr] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2236), + [anon_sym_decltype] = ACTIONS(2236), + [anon_sym_explicit] = ACTIONS(2236), + [anon_sym_typename] = ACTIONS(2236), + [anon_sym_template] = ACTIONS(2236), + [anon_sym_operator] = ACTIONS(2236), + [anon_sym_try] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2236), + [anon_sym_throw] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2236), + [anon_sym_using] = ACTIONS(2236), + [anon_sym_static_assert] = ACTIONS(2236), + [anon_sym_concept] = ACTIONS(2236), + [anon_sym_co_return] = ACTIONS(2236), + [anon_sym_co_yield] = ACTIONS(2236), + [anon_sym_R_DQUOTE] = ACTIONS(2238), + [anon_sym_LR_DQUOTE] = ACTIONS(2238), + [anon_sym_uR_DQUOTE] = ACTIONS(2238), + [anon_sym_UR_DQUOTE] = ACTIONS(2238), + [anon_sym_u8R_DQUOTE] = ACTIONS(2238), + [anon_sym_co_await] = ACTIONS(2236), + [anon_sym_new] = ACTIONS(2236), + [anon_sym_requires] = ACTIONS(2236), + [sym_this] = ACTIONS(2236), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2236), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_FORWARD] = ACTIONS(2236), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2236), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2236), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2236), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2236), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_PS_GET] = ACTIONS(2236), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2236), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2236), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2236), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2236), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2236), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2236), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2236), + [anon_sym_MOZ_COLD] = ACTIONS(2236), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2236), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2236), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2236), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2236), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2236), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2236), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2236), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2236), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2236), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2236), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2236), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2236), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2236), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_NONNULL] = ACTIONS(2236), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2236), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2236), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2236), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2236), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2236), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2236), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2236), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2236), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2236), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2236), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2236), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2236), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2236), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2236), + [anon_sym_MOZ_RAII] = ACTIONS(2236), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2236), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2236), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2236), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2236), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2236), + }, + [STATE(481)] = { + [sym_identifier] = ACTIONS(2377), + [aux_sym_preproc_include_token1] = ACTIONS(2377), + [aux_sym_preproc_def_token1] = ACTIONS(2377), + [aux_sym_preproc_if_token1] = ACTIONS(2377), + [aux_sym_preproc_if_token2] = ACTIONS(2377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2377), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2377), + [sym_preproc_directive] = ACTIONS(2377), + [anon_sym_LPAREN2] = ACTIONS(2379), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2377), + [anon_sym_STAR] = ACTIONS(2379), + [anon_sym_AMP_AMP] = ACTIONS(2379), + [anon_sym_AMP] = ACTIONS(2377), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym___extension__] = ACTIONS(2377), + [anon_sym_typedef] = ACTIONS(2377), + [anon_sym_virtual] = ACTIONS(2377), + [anon_sym_extern] = ACTIONS(2377), + [anon_sym___attribute__] = ACTIONS(2377), + [anon_sym___attribute] = ACTIONS(2377), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2379), + [anon_sym___declspec] = ACTIONS(2377), + [anon_sym___based] = ACTIONS(2377), + [anon_sym___cdecl] = ACTIONS(2377), + [anon_sym___clrcall] = ACTIONS(2377), + [anon_sym___stdcall] = ACTIONS(2377), + [anon_sym___fastcall] = ACTIONS(2377), + [anon_sym___thiscall] = ACTIONS(2377), + [anon_sym___vectorcall] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_signed] = ACTIONS(2377), + [anon_sym_unsigned] = ACTIONS(2377), + [anon_sym_long] = ACTIONS(2377), + [anon_sym_short] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_static] = ACTIONS(2377), + [anon_sym_register] = ACTIONS(2377), + [anon_sym_inline] = ACTIONS(2377), + [anon_sym___inline] = ACTIONS(2377), + [anon_sym___inline__] = ACTIONS(2377), + [anon_sym___forceinline] = ACTIONS(2377), + [anon_sym_thread_local] = ACTIONS(2377), + [anon_sym___thread] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [anon_sym_constexpr] = ACTIONS(2377), + [anon_sym_volatile] = ACTIONS(2377), + [anon_sym_restrict] = ACTIONS(2377), + [anon_sym___restrict__] = ACTIONS(2377), + [anon_sym__Atomic] = ACTIONS(2377), + [anon_sym__Noreturn] = ACTIONS(2377), + [anon_sym_noreturn] = ACTIONS(2377), + [anon_sym__Nonnull] = ACTIONS(2377), + [anon_sym_mutable] = ACTIONS(2377), + [anon_sym_constinit] = ACTIONS(2377), + [anon_sym_consteval] = ACTIONS(2377), + [anon_sym_alignas] = ACTIONS(2377), + [anon_sym__Alignas] = ACTIONS(2377), + [sym_primitive_type] = ACTIONS(2377), + [anon_sym_enum] = ACTIONS(2377), + [anon_sym_class] = ACTIONS(2377), + [anon_sym_struct] = ACTIONS(2377), + [anon_sym_union] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_switch] = ACTIONS(2377), + [anon_sym_case] = ACTIONS(2377), + [anon_sym_default] = ACTIONS(2377), + [anon_sym_while] = ACTIONS(2377), + [anon_sym_do] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_goto] = ACTIONS(2377), + [anon_sym___try] = ACTIONS(2377), + [anon_sym___leave] = ACTIONS(2377), + [anon_sym_not] = ACTIONS(2377), + [anon_sym_compl] = ACTIONS(2377), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_sizeof] = ACTIONS(2377), + [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(2377), + [anon_sym__Generic] = ACTIONS(2377), + [anon_sym_asm] = ACTIONS(2377), + [anon_sym___asm__] = ACTIONS(2377), + [anon_sym___asm] = ACTIONS(2377), + [sym_number_literal] = ACTIONS(2379), + [anon_sym_L_SQUOTE] = ACTIONS(2379), + [anon_sym_u_SQUOTE] = ACTIONS(2379), + [anon_sym_U_SQUOTE] = ACTIONS(2379), + [anon_sym_u8_SQUOTE] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_L_DQUOTE] = ACTIONS(2379), + [anon_sym_u_DQUOTE] = ACTIONS(2379), + [anon_sym_U_DQUOTE] = ACTIONS(2379), + [anon_sym_u8_DQUOTE] = ACTIONS(2379), + [anon_sym_DQUOTE] = ACTIONS(2379), + [sym_true] = ACTIONS(2377), + [sym_false] = ACTIONS(2377), + [anon_sym_NULL] = ACTIONS(2377), + [anon_sym_nullptr] = ACTIONS(2377), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2377), + [anon_sym_decltype] = ACTIONS(2377), + [anon_sym_explicit] = ACTIONS(2377), + [anon_sym_typename] = ACTIONS(2377), + [anon_sym_template] = ACTIONS(2377), + [anon_sym_operator] = ACTIONS(2377), + [anon_sym_try] = ACTIONS(2377), + [anon_sym_delete] = ACTIONS(2377), + [anon_sym_throw] = ACTIONS(2377), + [anon_sym_namespace] = ACTIONS(2377), + [anon_sym_using] = ACTIONS(2377), + [anon_sym_static_assert] = ACTIONS(2377), + [anon_sym_concept] = ACTIONS(2377), + [anon_sym_co_return] = ACTIONS(2377), + [anon_sym_co_yield] = ACTIONS(2377), + [anon_sym_R_DQUOTE] = ACTIONS(2379), + [anon_sym_LR_DQUOTE] = ACTIONS(2379), + [anon_sym_uR_DQUOTE] = ACTIONS(2379), + [anon_sym_UR_DQUOTE] = ACTIONS(2379), + [anon_sym_u8R_DQUOTE] = ACTIONS(2379), + [anon_sym_co_await] = ACTIONS(2377), + [anon_sym_new] = ACTIONS(2377), + [anon_sym_requires] = ACTIONS(2377), + [sym_this] = ACTIONS(2377), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2377), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_FORWARD] = ACTIONS(2377), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2377), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2377), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2377), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2377), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_PS_GET] = ACTIONS(2377), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2377), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2377), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2377), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2377), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2377), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2377), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2377), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2377), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2377), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2377), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2377), + [anon_sym_MOZ_COLD] = ACTIONS(2377), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2377), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2377), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2377), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2377), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2377), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2377), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2377), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2377), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2377), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2377), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2377), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2377), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2377), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2377), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2377), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2377), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2377), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2377), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2377), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2377), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_NONNULL] = ACTIONS(2377), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2377), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2377), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2377), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2377), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2377), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_NORETURN] = ACTIONS(2377), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2377), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2377), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2377), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2377), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2377), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2377), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2377), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2377), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2377), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2377), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2377), + [anon_sym_MOZ_RAII] = ACTIONS(2377), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2377), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2377), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2377), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2377), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2377), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2377), + }, + [STATE(482)] = { + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_include_token1] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token2] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_LPAREN2] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_AMP_AMP] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2432), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_virtual] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_COLON_COLON] = ACTIONS(2434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___based] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_mutable] = ACTIONS(2432), + [anon_sym_constinit] = ACTIONS(2432), + [anon_sym_consteval] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_class] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_goto] = ACTIONS(2432), + [anon_sym___try] = ACTIONS(2432), + [anon_sym___leave] = ACTIONS(2432), + [anon_sym_not] = ACTIONS(2432), + [anon_sym_compl] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_sizeof] = ACTIONS(2432), + [anon_sym___alignof__] = ACTIONS(2432), + [anon_sym___alignof] = ACTIONS(2432), + [anon_sym__alignof] = ACTIONS(2432), + [anon_sym_alignof] = ACTIONS(2432), + [anon_sym__Alignof] = ACTIONS(2432), + [anon_sym_offsetof] = ACTIONS(2432), + [anon_sym__Generic] = ACTIONS(2432), + [anon_sym_asm] = ACTIONS(2432), + [anon_sym___asm__] = ACTIONS(2432), + [anon_sym___asm] = ACTIONS(2432), + [sym_number_literal] = ACTIONS(2434), + [anon_sym_L_SQUOTE] = ACTIONS(2434), + [anon_sym_u_SQUOTE] = ACTIONS(2434), + [anon_sym_U_SQUOTE] = ACTIONS(2434), + [anon_sym_u8_SQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_L_DQUOTE] = ACTIONS(2434), + [anon_sym_u_DQUOTE] = ACTIONS(2434), + [anon_sym_U_DQUOTE] = ACTIONS(2434), + [anon_sym_u8_DQUOTE] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2434), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [anon_sym_NULL] = ACTIONS(2432), + [anon_sym_nullptr] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2432), + [anon_sym_decltype] = ACTIONS(2432), + [anon_sym_explicit] = ACTIONS(2432), + [anon_sym_typename] = ACTIONS(2432), + [anon_sym_template] = ACTIONS(2432), + [anon_sym_operator] = ACTIONS(2432), + [anon_sym_try] = ACTIONS(2432), + [anon_sym_delete] = ACTIONS(2432), + [anon_sym_throw] = ACTIONS(2432), + [anon_sym_namespace] = ACTIONS(2432), + [anon_sym_using] = ACTIONS(2432), + [anon_sym_static_assert] = ACTIONS(2432), + [anon_sym_concept] = ACTIONS(2432), + [anon_sym_co_return] = ACTIONS(2432), + [anon_sym_co_yield] = ACTIONS(2432), + [anon_sym_R_DQUOTE] = ACTIONS(2434), + [anon_sym_LR_DQUOTE] = ACTIONS(2434), + [anon_sym_uR_DQUOTE] = ACTIONS(2434), + [anon_sym_UR_DQUOTE] = ACTIONS(2434), + [anon_sym_u8R_DQUOTE] = ACTIONS(2434), + [anon_sym_co_await] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2432), + [sym_this] = ACTIONS(2432), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2432), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_FORWARD] = ACTIONS(2432), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2432), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2432), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2432), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_PS_GET] = ACTIONS(2432), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2432), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2432), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2432), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2432), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2432), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2432), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2432), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2432), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2432), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2432), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2432), + [anon_sym_MOZ_COLD] = ACTIONS(2432), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2432), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2432), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2432), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2432), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2432), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2432), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2432), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2432), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2432), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2432), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2432), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2432), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2432), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2432), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2432), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2432), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2432), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2432), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2432), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2432), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_NONNULL] = ACTIONS(2432), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2432), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2432), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2432), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2432), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2432), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_NORETURN] = ACTIONS(2432), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2432), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2432), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2432), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2432), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2432), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2432), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2432), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2432), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2432), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2432), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2432), + [anon_sym_MOZ_RAII] = ACTIONS(2432), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2432), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2432), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2432), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2432), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2432), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2432), + }, + [STATE(483)] = { + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_include_token1] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token2] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_AMP_AMP] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_virtual] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_COLON_COLON] = ACTIONS(2452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___based] = ACTIONS(2450), + [anon_sym___cdecl] = ACTIONS(2450), + [anon_sym___clrcall] = ACTIONS(2450), + [anon_sym___stdcall] = ACTIONS(2450), + [anon_sym___fastcall] = ACTIONS(2450), + [anon_sym___thiscall] = ACTIONS(2450), + [anon_sym___vectorcall] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_mutable] = ACTIONS(2450), + [anon_sym_constinit] = ACTIONS(2450), + [anon_sym_consteval] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_class] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_goto] = ACTIONS(2450), + [anon_sym___try] = ACTIONS(2450), + [anon_sym___leave] = ACTIONS(2450), + [anon_sym_not] = ACTIONS(2450), + [anon_sym_compl] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2452), + [anon_sym_sizeof] = ACTIONS(2450), + [anon_sym___alignof__] = ACTIONS(2450), + [anon_sym___alignof] = ACTIONS(2450), + [anon_sym__alignof] = ACTIONS(2450), + [anon_sym_alignof] = ACTIONS(2450), + [anon_sym__Alignof] = ACTIONS(2450), + [anon_sym_offsetof] = ACTIONS(2450), + [anon_sym__Generic] = ACTIONS(2450), + [anon_sym_asm] = ACTIONS(2450), + [anon_sym___asm__] = ACTIONS(2450), + [anon_sym___asm] = ACTIONS(2450), + [sym_number_literal] = ACTIONS(2452), + [anon_sym_L_SQUOTE] = ACTIONS(2452), + [anon_sym_u_SQUOTE] = ACTIONS(2452), + [anon_sym_U_SQUOTE] = ACTIONS(2452), + [anon_sym_u8_SQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_L_DQUOTE] = ACTIONS(2452), + [anon_sym_u_DQUOTE] = ACTIONS(2452), + [anon_sym_U_DQUOTE] = ACTIONS(2452), + [anon_sym_u8_DQUOTE] = ACTIONS(2452), + [anon_sym_DQUOTE] = ACTIONS(2452), + [sym_true] = ACTIONS(2450), + [sym_false] = ACTIONS(2450), + [anon_sym_NULL] = ACTIONS(2450), + [anon_sym_nullptr] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2450), + [anon_sym_decltype] = ACTIONS(2450), + [anon_sym_explicit] = ACTIONS(2450), + [anon_sym_typename] = ACTIONS(2450), + [anon_sym_template] = ACTIONS(2450), + [anon_sym_operator] = ACTIONS(2450), + [anon_sym_try] = ACTIONS(2450), + [anon_sym_delete] = ACTIONS(2450), + [anon_sym_throw] = ACTIONS(2450), + [anon_sym_namespace] = ACTIONS(2450), + [anon_sym_using] = ACTIONS(2450), + [anon_sym_static_assert] = ACTIONS(2450), + [anon_sym_concept] = ACTIONS(2450), + [anon_sym_co_return] = ACTIONS(2450), + [anon_sym_co_yield] = ACTIONS(2450), + [anon_sym_R_DQUOTE] = ACTIONS(2452), + [anon_sym_LR_DQUOTE] = ACTIONS(2452), + [anon_sym_uR_DQUOTE] = ACTIONS(2452), + [anon_sym_UR_DQUOTE] = ACTIONS(2452), + [anon_sym_u8R_DQUOTE] = ACTIONS(2452), + [anon_sym_co_await] = ACTIONS(2450), + [anon_sym_new] = ACTIONS(2450), + [anon_sym_requires] = ACTIONS(2450), + [sym_this] = ACTIONS(2450), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2450), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_FORWARD] = ACTIONS(2450), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2450), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2450), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2450), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2450), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_PS_GET] = ACTIONS(2450), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2450), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2450), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2450), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2450), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2450), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2450), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2450), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2450), + [anon_sym_MOZ_COLD] = ACTIONS(2450), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2450), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2450), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2450), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2450), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2450), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2450), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2450), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2450), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2450), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2450), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2450), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2450), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2450), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_NONNULL] = ACTIONS(2450), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2450), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2450), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2450), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2450), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2450), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2450), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2450), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2450), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2450), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2450), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2450), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2450), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2450), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2450), + [anon_sym_MOZ_RAII] = ACTIONS(2450), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2450), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2450), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2450), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2450), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2450), + }, + [STATE(484)] = { + [sym_identifier] = ACTIONS(2202), + [aux_sym_preproc_include_token1] = ACTIONS(2202), + [aux_sym_preproc_def_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token2] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2202), + [sym_preproc_directive] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym___extension__] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2202), + [anon_sym_virtual] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym___attribute__] = ACTIONS(2202), + [anon_sym___attribute] = ACTIONS(2202), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2204), + [anon_sym___declspec] = ACTIONS(2202), + [anon_sym___based] = ACTIONS(2202), + [anon_sym___cdecl] = ACTIONS(2202), + [anon_sym___clrcall] = ACTIONS(2202), + [anon_sym___stdcall] = ACTIONS(2202), + [anon_sym___fastcall] = ACTIONS(2202), + [anon_sym___thiscall] = ACTIONS(2202), + [anon_sym___vectorcall] = ACTIONS(2202), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_signed] = ACTIONS(2202), + [anon_sym_unsigned] = ACTIONS(2202), + [anon_sym_long] = ACTIONS(2202), + [anon_sym_short] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_register] = ACTIONS(2202), + [anon_sym_inline] = ACTIONS(2202), + [anon_sym___inline] = ACTIONS(2202), + [anon_sym___inline__] = ACTIONS(2202), + [anon_sym___forceinline] = ACTIONS(2202), + [anon_sym_thread_local] = ACTIONS(2202), + [anon_sym___thread] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_constexpr] = ACTIONS(2202), + [anon_sym_volatile] = ACTIONS(2202), + [anon_sym_restrict] = ACTIONS(2202), + [anon_sym___restrict__] = ACTIONS(2202), + [anon_sym__Atomic] = ACTIONS(2202), + [anon_sym__Noreturn] = ACTIONS(2202), + [anon_sym_noreturn] = ACTIONS(2202), + [anon_sym__Nonnull] = ACTIONS(2202), + [anon_sym_mutable] = ACTIONS(2202), + [anon_sym_constinit] = ACTIONS(2202), + [anon_sym_consteval] = ACTIONS(2202), + [anon_sym_alignas] = ACTIONS(2202), + [anon_sym__Alignas] = ACTIONS(2202), + [sym_primitive_type] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_class] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [anon_sym_if] = ACTIONS(2202), + [anon_sym_switch] = ACTIONS(2202), + [anon_sym_case] = ACTIONS(2202), + [anon_sym_default] = ACTIONS(2202), + [anon_sym_while] = ACTIONS(2202), + [anon_sym_do] = ACTIONS(2202), + [anon_sym_for] = ACTIONS(2202), + [anon_sym_return] = ACTIONS(2202), + [anon_sym_break] = ACTIONS(2202), + [anon_sym_continue] = ACTIONS(2202), + [anon_sym_goto] = ACTIONS(2202), + [anon_sym___try] = ACTIONS(2202), + [anon_sym___leave] = ACTIONS(2202), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_compl] = ACTIONS(2202), + [anon_sym_DASH_DASH] = ACTIONS(2204), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_sizeof] = ACTIONS(2202), + [anon_sym___alignof__] = ACTIONS(2202), + [anon_sym___alignof] = ACTIONS(2202), + [anon_sym__alignof] = ACTIONS(2202), + [anon_sym_alignof] = ACTIONS(2202), + [anon_sym__Alignof] = ACTIONS(2202), + [anon_sym_offsetof] = ACTIONS(2202), + [anon_sym__Generic] = ACTIONS(2202), + [anon_sym_asm] = ACTIONS(2202), + [anon_sym___asm__] = ACTIONS(2202), + [anon_sym___asm] = ACTIONS(2202), + [sym_number_literal] = ACTIONS(2204), + [anon_sym_L_SQUOTE] = ACTIONS(2204), + [anon_sym_u_SQUOTE] = ACTIONS(2204), + [anon_sym_U_SQUOTE] = ACTIONS(2204), + [anon_sym_u8_SQUOTE] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_L_DQUOTE] = ACTIONS(2204), + [anon_sym_u_DQUOTE] = ACTIONS(2204), + [anon_sym_U_DQUOTE] = ACTIONS(2204), + [anon_sym_u8_DQUOTE] = ACTIONS(2204), + [anon_sym_DQUOTE] = ACTIONS(2204), + [sym_true] = ACTIONS(2202), + [sym_false] = ACTIONS(2202), + [anon_sym_NULL] = ACTIONS(2202), + [anon_sym_nullptr] = ACTIONS(2202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2202), + [anon_sym_decltype] = ACTIONS(2202), + [anon_sym_explicit] = ACTIONS(2202), + [anon_sym_typename] = ACTIONS(2202), + [anon_sym_template] = ACTIONS(2202), + [anon_sym_operator] = ACTIONS(2202), + [anon_sym_try] = ACTIONS(2202), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_throw] = ACTIONS(2202), + [anon_sym_namespace] = ACTIONS(2202), + [anon_sym_using] = ACTIONS(2202), + [anon_sym_static_assert] = ACTIONS(2202), + [anon_sym_concept] = ACTIONS(2202), + [anon_sym_co_return] = ACTIONS(2202), + [anon_sym_co_yield] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2204), + [anon_sym_LR_DQUOTE] = ACTIONS(2204), + [anon_sym_uR_DQUOTE] = ACTIONS(2204), + [anon_sym_UR_DQUOTE] = ACTIONS(2204), + [anon_sym_u8R_DQUOTE] = ACTIONS(2204), + [anon_sym_co_await] = ACTIONS(2202), + [anon_sym_new] = ACTIONS(2202), + [anon_sym_requires] = ACTIONS(2202), + [sym_this] = ACTIONS(2202), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_FORWARD] = ACTIONS(2202), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2202), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_PS_GET] = ACTIONS(2202), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2202), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2202), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2202), + [anon_sym_MOZ_COLD] = ACTIONS(2202), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2202), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2202), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2202), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2202), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2202), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2202), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2202), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2202), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2202), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2202), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2202), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2202), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_RAII] = ACTIONS(2202), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2202), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2202), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2202), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2202), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2202), + }, + [STATE(485)] = { + [sym_identifier] = ACTIONS(2202), + [aux_sym_preproc_include_token1] = ACTIONS(2202), + [aux_sym_preproc_def_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token2] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2202), + [sym_preproc_directive] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym___extension__] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2202), + [anon_sym_virtual] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym___attribute__] = ACTIONS(2202), + [anon_sym___attribute] = ACTIONS(2202), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2204), + [anon_sym___declspec] = ACTIONS(2202), + [anon_sym___based] = ACTIONS(2202), + [anon_sym___cdecl] = ACTIONS(2202), + [anon_sym___clrcall] = ACTIONS(2202), + [anon_sym___stdcall] = ACTIONS(2202), + [anon_sym___fastcall] = ACTIONS(2202), + [anon_sym___thiscall] = ACTIONS(2202), + [anon_sym___vectorcall] = ACTIONS(2202), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_signed] = ACTIONS(2202), + [anon_sym_unsigned] = ACTIONS(2202), + [anon_sym_long] = ACTIONS(2202), + [anon_sym_short] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_register] = ACTIONS(2202), + [anon_sym_inline] = ACTIONS(2202), + [anon_sym___inline] = ACTIONS(2202), + [anon_sym___inline__] = ACTIONS(2202), + [anon_sym___forceinline] = ACTIONS(2202), + [anon_sym_thread_local] = ACTIONS(2202), + [anon_sym___thread] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_constexpr] = ACTIONS(2202), + [anon_sym_volatile] = ACTIONS(2202), + [anon_sym_restrict] = ACTIONS(2202), + [anon_sym___restrict__] = ACTIONS(2202), + [anon_sym__Atomic] = ACTIONS(2202), + [anon_sym__Noreturn] = ACTIONS(2202), + [anon_sym_noreturn] = ACTIONS(2202), + [anon_sym__Nonnull] = ACTIONS(2202), + [anon_sym_mutable] = ACTIONS(2202), + [anon_sym_constinit] = ACTIONS(2202), + [anon_sym_consteval] = ACTIONS(2202), + [anon_sym_alignas] = ACTIONS(2202), + [anon_sym__Alignas] = ACTIONS(2202), + [sym_primitive_type] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_class] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [anon_sym_if] = ACTIONS(2202), + [anon_sym_switch] = ACTIONS(2202), + [anon_sym_case] = ACTIONS(2202), + [anon_sym_default] = ACTIONS(2202), + [anon_sym_while] = ACTIONS(2202), + [anon_sym_do] = ACTIONS(2202), + [anon_sym_for] = ACTIONS(2202), + [anon_sym_return] = ACTIONS(2202), + [anon_sym_break] = ACTIONS(2202), + [anon_sym_continue] = ACTIONS(2202), + [anon_sym_goto] = ACTIONS(2202), + [anon_sym___try] = ACTIONS(2202), + [anon_sym___leave] = ACTIONS(2202), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_compl] = ACTIONS(2202), + [anon_sym_DASH_DASH] = ACTIONS(2204), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_sizeof] = ACTIONS(2202), + [anon_sym___alignof__] = ACTIONS(2202), + [anon_sym___alignof] = ACTIONS(2202), + [anon_sym__alignof] = ACTIONS(2202), + [anon_sym_alignof] = ACTIONS(2202), + [anon_sym__Alignof] = ACTIONS(2202), + [anon_sym_offsetof] = ACTIONS(2202), + [anon_sym__Generic] = ACTIONS(2202), + [anon_sym_asm] = ACTIONS(2202), + [anon_sym___asm__] = ACTIONS(2202), + [anon_sym___asm] = ACTIONS(2202), + [sym_number_literal] = ACTIONS(2204), + [anon_sym_L_SQUOTE] = ACTIONS(2204), + [anon_sym_u_SQUOTE] = ACTIONS(2204), + [anon_sym_U_SQUOTE] = ACTIONS(2204), + [anon_sym_u8_SQUOTE] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_L_DQUOTE] = ACTIONS(2204), + [anon_sym_u_DQUOTE] = ACTIONS(2204), + [anon_sym_U_DQUOTE] = ACTIONS(2204), + [anon_sym_u8_DQUOTE] = ACTIONS(2204), + [anon_sym_DQUOTE] = ACTIONS(2204), + [sym_true] = ACTIONS(2202), + [sym_false] = ACTIONS(2202), + [anon_sym_NULL] = ACTIONS(2202), + [anon_sym_nullptr] = ACTIONS(2202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2202), + [anon_sym_decltype] = ACTIONS(2202), + [anon_sym_explicit] = ACTIONS(2202), + [anon_sym_typename] = ACTIONS(2202), + [anon_sym_template] = ACTIONS(2202), + [anon_sym_operator] = ACTIONS(2202), + [anon_sym_try] = ACTIONS(2202), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_throw] = ACTIONS(2202), + [anon_sym_namespace] = ACTIONS(2202), + [anon_sym_using] = ACTIONS(2202), + [anon_sym_static_assert] = ACTIONS(2202), + [anon_sym_concept] = ACTIONS(2202), + [anon_sym_co_return] = ACTIONS(2202), + [anon_sym_co_yield] = ACTIONS(2202), + [anon_sym_R_DQUOTE] = ACTIONS(2204), + [anon_sym_LR_DQUOTE] = ACTIONS(2204), + [anon_sym_uR_DQUOTE] = ACTIONS(2204), + [anon_sym_UR_DQUOTE] = ACTIONS(2204), + [anon_sym_u8R_DQUOTE] = ACTIONS(2204), + [anon_sym_co_await] = ACTIONS(2202), + [anon_sym_new] = ACTIONS(2202), + [anon_sym_requires] = ACTIONS(2202), + [sym_this] = ACTIONS(2202), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_FORWARD] = ACTIONS(2202), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2202), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_PS_GET] = ACTIONS(2202), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2202), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2202), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2202), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2202), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2202), + [anon_sym_MOZ_COLD] = ACTIONS(2202), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2202), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2202), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2202), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2202), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2202), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2202), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2202), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2202), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2202), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2202), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2202), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2202), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_RAII] = ACTIONS(2202), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2202), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2202), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2202), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2202), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2202), + }, + [STATE(486)] = { + [sym_identifier] = ACTIONS(2240), + [aux_sym_preproc_include_token1] = ACTIONS(2240), + [aux_sym_preproc_def_token1] = ACTIONS(2240), + [aux_sym_preproc_if_token1] = ACTIONS(2240), + [aux_sym_preproc_if_token2] = ACTIONS(2240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2240), + [sym_preproc_directive] = ACTIONS(2240), + [anon_sym_LPAREN2] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_TILDE] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym___extension__] = ACTIONS(2240), + [anon_sym_typedef] = ACTIONS(2240), + [anon_sym_virtual] = ACTIONS(2240), + [anon_sym_extern] = ACTIONS(2240), + [anon_sym___attribute__] = ACTIONS(2240), + [anon_sym___attribute] = ACTIONS(2240), + [anon_sym_COLON_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2242), + [anon_sym___declspec] = ACTIONS(2240), + [anon_sym___based] = ACTIONS(2240), + [anon_sym___cdecl] = ACTIONS(2240), + [anon_sym___clrcall] = ACTIONS(2240), + [anon_sym___stdcall] = ACTIONS(2240), + [anon_sym___fastcall] = ACTIONS(2240), + [anon_sym___thiscall] = ACTIONS(2240), + [anon_sym___vectorcall] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_signed] = ACTIONS(2240), + [anon_sym_unsigned] = ACTIONS(2240), + [anon_sym_long] = ACTIONS(2240), + [anon_sym_short] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2240), + [anon_sym_static] = ACTIONS(2240), + [anon_sym_register] = ACTIONS(2240), + [anon_sym_inline] = ACTIONS(2240), + [anon_sym___inline] = ACTIONS(2240), + [anon_sym___inline__] = ACTIONS(2240), + [anon_sym___forceinline] = ACTIONS(2240), + [anon_sym_thread_local] = ACTIONS(2240), + [anon_sym___thread] = ACTIONS(2240), + [anon_sym_const] = ACTIONS(2240), + [anon_sym_constexpr] = ACTIONS(2240), + [anon_sym_volatile] = ACTIONS(2240), + [anon_sym_restrict] = ACTIONS(2240), + [anon_sym___restrict__] = ACTIONS(2240), + [anon_sym__Atomic] = ACTIONS(2240), + [anon_sym__Noreturn] = ACTIONS(2240), + [anon_sym_noreturn] = ACTIONS(2240), + [anon_sym__Nonnull] = ACTIONS(2240), + [anon_sym_mutable] = ACTIONS(2240), + [anon_sym_constinit] = ACTIONS(2240), + [anon_sym_consteval] = ACTIONS(2240), + [anon_sym_alignas] = ACTIONS(2240), + [anon_sym__Alignas] = ACTIONS(2240), + [sym_primitive_type] = ACTIONS(2240), + [anon_sym_enum] = ACTIONS(2240), + [anon_sym_class] = ACTIONS(2240), + [anon_sym_struct] = ACTIONS(2240), + [anon_sym_union] = ACTIONS(2240), + [anon_sym_if] = ACTIONS(2240), + [anon_sym_switch] = ACTIONS(2240), + [anon_sym_case] = ACTIONS(2240), + [anon_sym_default] = ACTIONS(2240), + [anon_sym_while] = ACTIONS(2240), + [anon_sym_do] = ACTIONS(2240), + [anon_sym_for] = ACTIONS(2240), + [anon_sym_return] = ACTIONS(2240), + [anon_sym_break] = ACTIONS(2240), + [anon_sym_continue] = ACTIONS(2240), + [anon_sym_goto] = ACTIONS(2240), + [anon_sym___try] = ACTIONS(2240), + [anon_sym___leave] = ACTIONS(2240), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_compl] = ACTIONS(2240), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_sizeof] = ACTIONS(2240), + [anon_sym___alignof__] = ACTIONS(2240), + [anon_sym___alignof] = ACTIONS(2240), + [anon_sym__alignof] = ACTIONS(2240), + [anon_sym_alignof] = ACTIONS(2240), + [anon_sym__Alignof] = ACTIONS(2240), + [anon_sym_offsetof] = ACTIONS(2240), + [anon_sym__Generic] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(2240), + [anon_sym___asm__] = ACTIONS(2240), + [anon_sym___asm] = ACTIONS(2240), + [sym_number_literal] = ACTIONS(2242), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_L_DQUOTE] = ACTIONS(2242), + [anon_sym_u_DQUOTE] = ACTIONS(2242), + [anon_sym_U_DQUOTE] = ACTIONS(2242), + [anon_sym_u8_DQUOTE] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym_true] = ACTIONS(2240), + [sym_false] = ACTIONS(2240), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2240), + [anon_sym_decltype] = ACTIONS(2240), + [anon_sym_explicit] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_template] = ACTIONS(2240), + [anon_sym_operator] = ACTIONS(2240), + [anon_sym_try] = ACTIONS(2240), + [anon_sym_delete] = ACTIONS(2240), + [anon_sym_throw] = ACTIONS(2240), + [anon_sym_namespace] = ACTIONS(2240), + [anon_sym_using] = ACTIONS(2240), + [anon_sym_static_assert] = ACTIONS(2240), + [anon_sym_concept] = ACTIONS(2240), + [anon_sym_co_return] = ACTIONS(2240), + [anon_sym_co_yield] = ACTIONS(2240), + [anon_sym_R_DQUOTE] = ACTIONS(2242), + [anon_sym_LR_DQUOTE] = ACTIONS(2242), + [anon_sym_uR_DQUOTE] = ACTIONS(2242), + [anon_sym_UR_DQUOTE] = ACTIONS(2242), + [anon_sym_u8R_DQUOTE] = ACTIONS(2242), + [anon_sym_co_await] = ACTIONS(2240), + [anon_sym_new] = ACTIONS(2240), + [anon_sym_requires] = ACTIONS(2240), + [sym_this] = ACTIONS(2240), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2240), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_FORWARD] = ACTIONS(2240), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2240), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2240), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2240), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2240), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_PS_GET] = ACTIONS(2240), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2240), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2240), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2240), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2240), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2240), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2240), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2240), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2240), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2240), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2240), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2240), + [anon_sym_MOZ_COLD] = ACTIONS(2240), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2240), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2240), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2240), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2240), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2240), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2240), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2240), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2240), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2240), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2240), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2240), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2240), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2240), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2240), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2240), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2240), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2240), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2240), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2240), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2240), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_NONNULL] = ACTIONS(2240), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2240), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2240), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2240), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2240), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2240), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_NORETURN] = ACTIONS(2240), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2240), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2240), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2240), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2240), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2240), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2240), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2240), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2240), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2240), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2240), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2240), + [anon_sym_MOZ_RAII] = ACTIONS(2240), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2240), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2240), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2240), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2240), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2240), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2240), + }, + [STATE(487)] = { + [sym_identifier] = ACTIONS(2240), + [aux_sym_preproc_include_token1] = ACTIONS(2240), + [aux_sym_preproc_def_token1] = ACTIONS(2240), + [aux_sym_preproc_if_token1] = ACTIONS(2240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2240), + [sym_preproc_directive] = ACTIONS(2240), + [anon_sym_LPAREN2] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_TILDE] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym___extension__] = ACTIONS(2240), + [anon_sym_typedef] = ACTIONS(2240), + [anon_sym_virtual] = ACTIONS(2240), + [anon_sym_extern] = ACTIONS(2240), + [anon_sym___attribute__] = ACTIONS(2240), + [anon_sym___attribute] = ACTIONS(2240), + [anon_sym_COLON_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2242), + [anon_sym___declspec] = ACTIONS(2240), + [anon_sym___based] = ACTIONS(2240), + [anon_sym___cdecl] = ACTIONS(2240), + [anon_sym___clrcall] = ACTIONS(2240), + [anon_sym___stdcall] = ACTIONS(2240), + [anon_sym___fastcall] = ACTIONS(2240), + [anon_sym___thiscall] = ACTIONS(2240), + [anon_sym___vectorcall] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_signed] = ACTIONS(2240), + [anon_sym_unsigned] = ACTIONS(2240), + [anon_sym_long] = ACTIONS(2240), + [anon_sym_short] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2240), + [anon_sym_static] = ACTIONS(2240), + [anon_sym_register] = ACTIONS(2240), + [anon_sym_inline] = ACTIONS(2240), + [anon_sym___inline] = ACTIONS(2240), + [anon_sym___inline__] = ACTIONS(2240), + [anon_sym___forceinline] = ACTIONS(2240), + [anon_sym_thread_local] = ACTIONS(2240), + [anon_sym___thread] = ACTIONS(2240), + [anon_sym_const] = ACTIONS(2240), + [anon_sym_constexpr] = ACTIONS(2240), + [anon_sym_volatile] = ACTIONS(2240), + [anon_sym_restrict] = ACTIONS(2240), + [anon_sym___restrict__] = ACTIONS(2240), + [anon_sym__Atomic] = ACTIONS(2240), + [anon_sym__Noreturn] = ACTIONS(2240), + [anon_sym_noreturn] = ACTIONS(2240), + [anon_sym__Nonnull] = ACTIONS(2240), + [anon_sym_mutable] = ACTIONS(2240), + [anon_sym_constinit] = ACTIONS(2240), + [anon_sym_consteval] = ACTIONS(2240), + [anon_sym_alignas] = ACTIONS(2240), + [anon_sym__Alignas] = ACTIONS(2240), + [sym_primitive_type] = ACTIONS(2240), + [anon_sym_enum] = ACTIONS(2240), + [anon_sym_class] = ACTIONS(2240), + [anon_sym_struct] = ACTIONS(2240), + [anon_sym_union] = ACTIONS(2240), + [anon_sym_if] = ACTIONS(2240), + [anon_sym_switch] = ACTIONS(2240), + [anon_sym_case] = ACTIONS(2240), + [anon_sym_default] = ACTIONS(2240), + [anon_sym_while] = ACTIONS(2240), + [anon_sym_do] = ACTIONS(2240), + [anon_sym_for] = ACTIONS(2240), + [anon_sym_return] = ACTIONS(2240), + [anon_sym_break] = ACTIONS(2240), + [anon_sym_continue] = ACTIONS(2240), + [anon_sym_goto] = ACTIONS(2240), + [anon_sym___try] = ACTIONS(2240), + [anon_sym___leave] = ACTIONS(2240), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_compl] = ACTIONS(2240), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_sizeof] = ACTIONS(2240), + [anon_sym___alignof__] = ACTIONS(2240), + [anon_sym___alignof] = ACTIONS(2240), + [anon_sym__alignof] = ACTIONS(2240), + [anon_sym_alignof] = ACTIONS(2240), + [anon_sym__Alignof] = ACTIONS(2240), + [anon_sym_offsetof] = ACTIONS(2240), + [anon_sym__Generic] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(2240), + [anon_sym___asm__] = ACTIONS(2240), + [anon_sym___asm] = ACTIONS(2240), + [sym_number_literal] = ACTIONS(2242), + [anon_sym_L_SQUOTE] = ACTIONS(2242), + [anon_sym_u_SQUOTE] = ACTIONS(2242), + [anon_sym_U_SQUOTE] = ACTIONS(2242), + [anon_sym_u8_SQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_L_DQUOTE] = ACTIONS(2242), + [anon_sym_u_DQUOTE] = ACTIONS(2242), + [anon_sym_U_DQUOTE] = ACTIONS(2242), + [anon_sym_u8_DQUOTE] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym_true] = ACTIONS(2240), + [sym_false] = ACTIONS(2240), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2240), + [anon_sym_decltype] = ACTIONS(2240), + [anon_sym_explicit] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_template] = ACTIONS(2240), + [anon_sym_operator] = ACTIONS(2240), + [anon_sym_try] = ACTIONS(2240), + [anon_sym_delete] = ACTIONS(2240), + [anon_sym_throw] = ACTIONS(2240), + [anon_sym_namespace] = ACTIONS(2240), + [anon_sym_using] = ACTIONS(2240), + [anon_sym_static_assert] = ACTIONS(2240), + [anon_sym_concept] = ACTIONS(2240), + [anon_sym_co_return] = ACTIONS(2240), + [anon_sym_co_yield] = ACTIONS(2240), + [anon_sym_R_DQUOTE] = ACTIONS(2242), + [anon_sym_LR_DQUOTE] = ACTIONS(2242), + [anon_sym_uR_DQUOTE] = ACTIONS(2242), + [anon_sym_UR_DQUOTE] = ACTIONS(2242), + [anon_sym_u8R_DQUOTE] = ACTIONS(2242), + [anon_sym_co_await] = ACTIONS(2240), + [anon_sym_new] = ACTIONS(2240), + [anon_sym_requires] = ACTIONS(2240), + [sym_this] = ACTIONS(2240), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2240), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_FORWARD] = ACTIONS(2240), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2240), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2240), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2240), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2240), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_PS_GET] = ACTIONS(2240), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2240), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2240), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2240), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2240), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2240), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2240), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2240), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2240), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2240), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2240), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2240), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2240), + [anon_sym_MOZ_COLD] = ACTIONS(2240), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2240), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2240), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2240), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2240), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2240), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2240), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2240), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2240), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2240), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2240), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2240), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2240), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2240), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2240), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2240), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2240), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2240), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2240), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2240), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2240), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2240), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_NONNULL] = ACTIONS(2240), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2240), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2240), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2240), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2240), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2240), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_NORETURN] = ACTIONS(2240), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2240), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2240), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2240), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2240), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2240), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2240), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2240), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2240), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2240), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2240), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2240), + [anon_sym_MOZ_RAII] = ACTIONS(2240), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2240), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2240), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2240), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2240), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2240), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2240), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2240), + }, + [STATE(488)] = { + [sym_identifier] = ACTIONS(2250), + [aux_sym_preproc_include_token1] = ACTIONS(2250), + [aux_sym_preproc_def_token1] = ACTIONS(2250), + [aux_sym_preproc_if_token1] = ACTIONS(2250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2250), + [sym_preproc_directive] = ACTIONS(2250), + [anon_sym_LPAREN2] = ACTIONS(2252), + [anon_sym_BANG] = ACTIONS(2252), + [anon_sym_TILDE] = ACTIONS(2252), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2252), + [anon_sym_AMP_AMP] = ACTIONS(2252), + [anon_sym_AMP] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2252), + [anon_sym___extension__] = ACTIONS(2250), + [anon_sym_typedef] = ACTIONS(2250), + [anon_sym_virtual] = ACTIONS(2250), + [anon_sym_extern] = ACTIONS(2250), + [anon_sym___attribute__] = ACTIONS(2250), + [anon_sym___attribute] = ACTIONS(2250), + [anon_sym_COLON_COLON] = ACTIONS(2252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2252), + [anon_sym___declspec] = ACTIONS(2250), + [anon_sym___based] = ACTIONS(2250), + [anon_sym___cdecl] = ACTIONS(2250), + [anon_sym___clrcall] = ACTIONS(2250), + [anon_sym___stdcall] = ACTIONS(2250), + [anon_sym___fastcall] = ACTIONS(2250), + [anon_sym___thiscall] = ACTIONS(2250), + [anon_sym___vectorcall] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2252), + [anon_sym_RBRACE] = ACTIONS(2252), + [anon_sym_signed] = ACTIONS(2250), + [anon_sym_unsigned] = ACTIONS(2250), + [anon_sym_long] = ACTIONS(2250), + [anon_sym_short] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_register] = ACTIONS(2250), + [anon_sym_inline] = ACTIONS(2250), + [anon_sym___inline] = ACTIONS(2250), + [anon_sym___inline__] = ACTIONS(2250), + [anon_sym___forceinline] = ACTIONS(2250), + [anon_sym_thread_local] = ACTIONS(2250), + [anon_sym___thread] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_constexpr] = ACTIONS(2250), + [anon_sym_volatile] = ACTIONS(2250), + [anon_sym_restrict] = ACTIONS(2250), + [anon_sym___restrict__] = ACTIONS(2250), + [anon_sym__Atomic] = ACTIONS(2250), + [anon_sym__Noreturn] = ACTIONS(2250), + [anon_sym_noreturn] = ACTIONS(2250), + [anon_sym__Nonnull] = ACTIONS(2250), + [anon_sym_mutable] = ACTIONS(2250), + [anon_sym_constinit] = ACTIONS(2250), + [anon_sym_consteval] = ACTIONS(2250), + [anon_sym_alignas] = ACTIONS(2250), + [anon_sym__Alignas] = ACTIONS(2250), + [sym_primitive_type] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_case] = ACTIONS(2250), + [anon_sym_default] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_goto] = ACTIONS(2250), + [anon_sym___try] = ACTIONS(2250), + [anon_sym___leave] = ACTIONS(2250), + [anon_sym_not] = ACTIONS(2250), + [anon_sym_compl] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2252), + [anon_sym_PLUS_PLUS] = ACTIONS(2252), + [anon_sym_sizeof] = ACTIONS(2250), + [anon_sym___alignof__] = ACTIONS(2250), + [anon_sym___alignof] = ACTIONS(2250), + [anon_sym__alignof] = ACTIONS(2250), + [anon_sym_alignof] = ACTIONS(2250), + [anon_sym__Alignof] = ACTIONS(2250), + [anon_sym_offsetof] = ACTIONS(2250), + [anon_sym__Generic] = ACTIONS(2250), + [anon_sym_asm] = ACTIONS(2250), + [anon_sym___asm__] = ACTIONS(2250), + [anon_sym___asm] = ACTIONS(2250), + [sym_number_literal] = ACTIONS(2252), + [anon_sym_L_SQUOTE] = ACTIONS(2252), + [anon_sym_u_SQUOTE] = ACTIONS(2252), + [anon_sym_U_SQUOTE] = ACTIONS(2252), + [anon_sym_u8_SQUOTE] = ACTIONS(2252), + [anon_sym_SQUOTE] = ACTIONS(2252), + [anon_sym_L_DQUOTE] = ACTIONS(2252), + [anon_sym_u_DQUOTE] = ACTIONS(2252), + [anon_sym_U_DQUOTE] = ACTIONS(2252), + [anon_sym_u8_DQUOTE] = ACTIONS(2252), + [anon_sym_DQUOTE] = ACTIONS(2252), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2250), + [anon_sym_decltype] = ACTIONS(2250), + [anon_sym_explicit] = ACTIONS(2250), + [anon_sym_typename] = ACTIONS(2250), + [anon_sym_template] = ACTIONS(2250), + [anon_sym_operator] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_static_assert] = ACTIONS(2250), + [anon_sym_concept] = ACTIONS(2250), + [anon_sym_co_return] = ACTIONS(2250), + [anon_sym_co_yield] = ACTIONS(2250), + [anon_sym_R_DQUOTE] = ACTIONS(2252), + [anon_sym_LR_DQUOTE] = ACTIONS(2252), + [anon_sym_uR_DQUOTE] = ACTIONS(2252), + [anon_sym_UR_DQUOTE] = ACTIONS(2252), + [anon_sym_u8R_DQUOTE] = ACTIONS(2252), + [anon_sym_co_await] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2250), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_FORWARD] = ACTIONS(2250), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2250), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2250), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2250), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2250), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_PS_GET] = ACTIONS(2250), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2250), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2250), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2250), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2250), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2250), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2250), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2250), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2250), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2250), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2250), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2250), + [anon_sym_MOZ_COLD] = ACTIONS(2250), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2250), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2250), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2250), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2250), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2250), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2250), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2250), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2250), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2250), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2250), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2250), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2250), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2250), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2250), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2250), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2250), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2250), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2250), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2250), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2250), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_NONNULL] = ACTIONS(2250), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2250), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2250), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2250), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2250), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2250), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_NORETURN] = ACTIONS(2250), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2250), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2250), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2250), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2250), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2250), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2250), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2250), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2250), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2250), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2250), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2250), + [anon_sym_MOZ_RAII] = ACTIONS(2250), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2250), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2250), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2250), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2250), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2250), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2250), + }, + [STATE(489)] = { + [sym_identifier] = ACTIONS(2291), + [aux_sym_preproc_include_token1] = ACTIONS(2291), + [aux_sym_preproc_def_token1] = ACTIONS(2291), + [aux_sym_preproc_if_token1] = ACTIONS(2291), + [aux_sym_preproc_if_token2] = ACTIONS(2291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2291), + [sym_preproc_directive] = ACTIONS(2291), + [anon_sym_LPAREN2] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(2293), + [anon_sym_TILDE] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2291), + [anon_sym_PLUS] = ACTIONS(2291), + [anon_sym_STAR] = ACTIONS(2293), + [anon_sym_AMP_AMP] = ACTIONS(2293), + [anon_sym_AMP] = ACTIONS(2291), + [anon_sym_SEMI] = ACTIONS(2293), + [anon_sym___extension__] = ACTIONS(2291), + [anon_sym_typedef] = ACTIONS(2291), + [anon_sym_virtual] = ACTIONS(2291), + [anon_sym_extern] = ACTIONS(2291), + [anon_sym___attribute__] = ACTIONS(2291), + [anon_sym___attribute] = ACTIONS(2291), + [anon_sym_COLON_COLON] = ACTIONS(2293), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2293), + [anon_sym___declspec] = ACTIONS(2291), + [anon_sym___based] = ACTIONS(2291), + [anon_sym___cdecl] = ACTIONS(2291), + [anon_sym___clrcall] = ACTIONS(2291), + [anon_sym___stdcall] = ACTIONS(2291), + [anon_sym___fastcall] = ACTIONS(2291), + [anon_sym___thiscall] = ACTIONS(2291), + [anon_sym___vectorcall] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2293), + [anon_sym_signed] = ACTIONS(2291), + [anon_sym_unsigned] = ACTIONS(2291), + [anon_sym_long] = ACTIONS(2291), + [anon_sym_short] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_static] = ACTIONS(2291), + [anon_sym_register] = ACTIONS(2291), + [anon_sym_inline] = ACTIONS(2291), + [anon_sym___inline] = ACTIONS(2291), + [anon_sym___inline__] = ACTIONS(2291), + [anon_sym___forceinline] = ACTIONS(2291), + [anon_sym_thread_local] = ACTIONS(2291), + [anon_sym___thread] = ACTIONS(2291), + [anon_sym_const] = ACTIONS(2291), + [anon_sym_constexpr] = ACTIONS(2291), + [anon_sym_volatile] = ACTIONS(2291), + [anon_sym_restrict] = ACTIONS(2291), + [anon_sym___restrict__] = ACTIONS(2291), + [anon_sym__Atomic] = ACTIONS(2291), + [anon_sym__Noreturn] = ACTIONS(2291), + [anon_sym_noreturn] = ACTIONS(2291), + [anon_sym__Nonnull] = ACTIONS(2291), + [anon_sym_mutable] = ACTIONS(2291), + [anon_sym_constinit] = ACTIONS(2291), + [anon_sym_consteval] = ACTIONS(2291), + [anon_sym_alignas] = ACTIONS(2291), + [anon_sym__Alignas] = ACTIONS(2291), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_enum] = ACTIONS(2291), + [anon_sym_class] = ACTIONS(2291), + [anon_sym_struct] = ACTIONS(2291), + [anon_sym_union] = ACTIONS(2291), + [anon_sym_if] = ACTIONS(2291), + [anon_sym_switch] = ACTIONS(2291), + [anon_sym_case] = ACTIONS(2291), + [anon_sym_default] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2291), + [anon_sym_do] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2291), + [anon_sym_break] = ACTIONS(2291), + [anon_sym_continue] = ACTIONS(2291), + [anon_sym_goto] = ACTIONS(2291), + [anon_sym___try] = ACTIONS(2291), + [anon_sym___leave] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2291), + [anon_sym_compl] = ACTIONS(2291), + [anon_sym_DASH_DASH] = ACTIONS(2293), + [anon_sym_PLUS_PLUS] = ACTIONS(2293), + [anon_sym_sizeof] = ACTIONS(2291), + [anon_sym___alignof__] = ACTIONS(2291), + [anon_sym___alignof] = ACTIONS(2291), + [anon_sym__alignof] = ACTIONS(2291), + [anon_sym_alignof] = ACTIONS(2291), + [anon_sym__Alignof] = ACTIONS(2291), + [anon_sym_offsetof] = ACTIONS(2291), + [anon_sym__Generic] = ACTIONS(2291), + [anon_sym_asm] = ACTIONS(2291), + [anon_sym___asm__] = ACTIONS(2291), + [anon_sym___asm] = ACTIONS(2291), + [sym_number_literal] = ACTIONS(2293), + [anon_sym_L_SQUOTE] = ACTIONS(2293), + [anon_sym_u_SQUOTE] = ACTIONS(2293), + [anon_sym_U_SQUOTE] = ACTIONS(2293), + [anon_sym_u8_SQUOTE] = ACTIONS(2293), + [anon_sym_SQUOTE] = ACTIONS(2293), + [anon_sym_L_DQUOTE] = ACTIONS(2293), + [anon_sym_u_DQUOTE] = ACTIONS(2293), + [anon_sym_U_DQUOTE] = ACTIONS(2293), + [anon_sym_u8_DQUOTE] = ACTIONS(2293), + [anon_sym_DQUOTE] = ACTIONS(2293), + [sym_true] = ACTIONS(2291), + [sym_false] = ACTIONS(2291), + [anon_sym_NULL] = ACTIONS(2291), + [anon_sym_nullptr] = ACTIONS(2291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2291), + [anon_sym_decltype] = ACTIONS(2291), + [anon_sym_explicit] = ACTIONS(2291), + [anon_sym_typename] = ACTIONS(2291), + [anon_sym_template] = ACTIONS(2291), + [anon_sym_operator] = ACTIONS(2291), + [anon_sym_try] = ACTIONS(2291), + [anon_sym_delete] = ACTIONS(2291), + [anon_sym_throw] = ACTIONS(2291), + [anon_sym_namespace] = ACTIONS(2291), + [anon_sym_using] = ACTIONS(2291), + [anon_sym_static_assert] = ACTIONS(2291), + [anon_sym_concept] = ACTIONS(2291), + [anon_sym_co_return] = ACTIONS(2291), + [anon_sym_co_yield] = ACTIONS(2291), + [anon_sym_R_DQUOTE] = ACTIONS(2293), + [anon_sym_LR_DQUOTE] = ACTIONS(2293), + [anon_sym_uR_DQUOTE] = ACTIONS(2293), + [anon_sym_UR_DQUOTE] = ACTIONS(2293), + [anon_sym_u8R_DQUOTE] = ACTIONS(2293), + [anon_sym_co_await] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(2291), + [anon_sym_requires] = ACTIONS(2291), + [sym_this] = ACTIONS(2291), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2291), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_FORWARD] = ACTIONS(2291), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2291), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2291), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2291), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2291), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_PS_GET] = ACTIONS(2291), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2291), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2291), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2291), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2291), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2291), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2291), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2291), + [anon_sym_MOZ_COLD] = ACTIONS(2291), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2291), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2291), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2291), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2291), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2291), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2291), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2291), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2291), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2291), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2291), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2291), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2291), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2291), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_NONNULL] = ACTIONS(2291), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2291), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2291), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2291), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2291), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2291), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2291), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2291), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2291), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2291), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2291), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2291), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2291), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2291), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2291), + [anon_sym_MOZ_RAII] = ACTIONS(2291), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2291), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2291), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2291), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2291), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2291), + }, + [STATE(490)] = { + [ts_builtin_sym_end] = ACTIONS(2383), + [sym_identifier] = ACTIONS(2381), + [aux_sym_preproc_include_token1] = ACTIONS(2381), + [aux_sym_preproc_def_token1] = ACTIONS(2381), + [aux_sym_preproc_if_token1] = ACTIONS(2381), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2381), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2381), + [sym_preproc_directive] = ACTIONS(2381), + [anon_sym_LPAREN2] = ACTIONS(2383), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_TILDE] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_PLUS] = ACTIONS(2381), + [anon_sym_STAR] = ACTIONS(2383), + [anon_sym_AMP_AMP] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2383), + [anon_sym___extension__] = ACTIONS(2381), + [anon_sym_typedef] = ACTIONS(2381), + [anon_sym_virtual] = ACTIONS(2381), + [anon_sym_extern] = ACTIONS(2381), + [anon_sym___attribute__] = ACTIONS(2381), + [anon_sym___attribute] = ACTIONS(2381), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2383), + [anon_sym___declspec] = ACTIONS(2381), + [anon_sym___based] = ACTIONS(2381), + [anon_sym___cdecl] = ACTIONS(2381), + [anon_sym___clrcall] = ACTIONS(2381), + [anon_sym___stdcall] = ACTIONS(2381), + [anon_sym___fastcall] = ACTIONS(2381), + [anon_sym___thiscall] = ACTIONS(2381), + [anon_sym___vectorcall] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_signed] = ACTIONS(2381), + [anon_sym_unsigned] = ACTIONS(2381), + [anon_sym_long] = ACTIONS(2381), + [anon_sym_short] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_register] = ACTIONS(2381), + [anon_sym_inline] = ACTIONS(2381), + [anon_sym___inline] = ACTIONS(2381), + [anon_sym___inline__] = ACTIONS(2381), + [anon_sym___forceinline] = ACTIONS(2381), + [anon_sym_thread_local] = ACTIONS(2381), + [anon_sym___thread] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_constexpr] = ACTIONS(2381), + [anon_sym_volatile] = ACTIONS(2381), + [anon_sym_restrict] = ACTIONS(2381), + [anon_sym___restrict__] = ACTIONS(2381), + [anon_sym__Atomic] = ACTIONS(2381), + [anon_sym__Noreturn] = ACTIONS(2381), + [anon_sym_noreturn] = ACTIONS(2381), + [anon_sym__Nonnull] = ACTIONS(2381), + [anon_sym_mutable] = ACTIONS(2381), + [anon_sym_constinit] = ACTIONS(2381), + [anon_sym_consteval] = ACTIONS(2381), + [anon_sym_alignas] = ACTIONS(2381), + [anon_sym__Alignas] = ACTIONS(2381), + [sym_primitive_type] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), + [anon_sym_class] = ACTIONS(2381), + [anon_sym_struct] = ACTIONS(2381), + [anon_sym_union] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_switch] = ACTIONS(2381), + [anon_sym_case] = ACTIONS(2381), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_goto] = ACTIONS(2381), + [anon_sym_not] = ACTIONS(2381), + [anon_sym_compl] = ACTIONS(2381), + [anon_sym_DASH_DASH] = ACTIONS(2383), + [anon_sym_PLUS_PLUS] = ACTIONS(2383), + [anon_sym_sizeof] = ACTIONS(2381), + [anon_sym___alignof__] = ACTIONS(2381), + [anon_sym___alignof] = ACTIONS(2381), + [anon_sym__alignof] = ACTIONS(2381), + [anon_sym_alignof] = ACTIONS(2381), + [anon_sym__Alignof] = ACTIONS(2381), + [anon_sym_offsetof] = ACTIONS(2381), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2381), + [anon_sym___asm__] = ACTIONS(2381), + [anon_sym___asm] = ACTIONS(2381), + [sym_number_literal] = ACTIONS(2383), + [anon_sym_L_SQUOTE] = ACTIONS(2383), + [anon_sym_u_SQUOTE] = ACTIONS(2383), + [anon_sym_U_SQUOTE] = ACTIONS(2383), + [anon_sym_u8_SQUOTE] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(2383), + [anon_sym_L_DQUOTE] = ACTIONS(2383), + [anon_sym_u_DQUOTE] = ACTIONS(2383), + [anon_sym_U_DQUOTE] = ACTIONS(2383), + [anon_sym_u8_DQUOTE] = ACTIONS(2383), + [anon_sym_DQUOTE] = ACTIONS(2383), + [sym_true] = ACTIONS(2381), + [sym_false] = ACTIONS(2381), + [anon_sym_NULL] = ACTIONS(2381), + [anon_sym_nullptr] = ACTIONS(2381), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2381), + [anon_sym_decltype] = ACTIONS(2381), + [anon_sym_explicit] = ACTIONS(2381), + [anon_sym_typename] = ACTIONS(2381), + [anon_sym_template] = ACTIONS(2381), + [anon_sym_operator] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2381), + [anon_sym_delete] = ACTIONS(2381), + [anon_sym_throw] = ACTIONS(2381), + [anon_sym_namespace] = ACTIONS(2381), + [anon_sym_using] = ACTIONS(2381), + [anon_sym_static_assert] = ACTIONS(2381), + [anon_sym_concept] = ACTIONS(2381), + [anon_sym_co_return] = ACTIONS(2381), + [anon_sym_co_yield] = ACTIONS(2381), + [anon_sym_R_DQUOTE] = ACTIONS(2383), + [anon_sym_LR_DQUOTE] = ACTIONS(2383), + [anon_sym_uR_DQUOTE] = ACTIONS(2383), + [anon_sym_UR_DQUOTE] = ACTIONS(2383), + [anon_sym_u8R_DQUOTE] = ACTIONS(2383), + [anon_sym_co_await] = ACTIONS(2381), + [anon_sym_new] = ACTIONS(2381), + [anon_sym_requires] = ACTIONS(2381), + [sym_this] = ACTIONS(2381), + [sym_alone_macro] = ACTIONS(2383), + [aux_sym_alone_macro_call_token1] = ACTIONS(2381), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2381), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_FORWARD] = ACTIONS(2381), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2381), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2381), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2381), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2381), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_PS_GET] = ACTIONS(2381), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2381), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2381), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2381), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2381), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2381), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2381), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2381), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2381), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2381), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2381), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2381), + [anon_sym_MOZ_COLD] = ACTIONS(2381), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2381), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2381), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2381), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2381), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2381), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2381), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2381), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2381), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2381), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2381), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2381), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2381), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2381), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2381), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2381), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2381), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2381), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2381), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2381), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2381), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_NONNULL] = ACTIONS(2381), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2381), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2381), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2381), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2381), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2381), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_NORETURN] = ACTIONS(2381), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2381), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2381), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2381), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2381), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2381), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2381), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2381), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2381), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2381), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2381), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2381), + [anon_sym_MOZ_RAII] = ACTIONS(2381), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2381), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2381), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2381), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2381), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2381), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2381), + }, + [STATE(491)] = { + [sym_identifier] = ACTIONS(2182), + [aux_sym_preproc_include_token1] = ACTIONS(2182), + [aux_sym_preproc_def_token1] = ACTIONS(2182), + [aux_sym_preproc_if_token1] = ACTIONS(2182), + [aux_sym_preproc_if_token2] = ACTIONS(2182), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2182), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2182), + [sym_preproc_directive] = ACTIONS(2182), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2182), + [anon_sym_PLUS] = ACTIONS(2182), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym___extension__] = ACTIONS(2182), + [anon_sym_typedef] = ACTIONS(2182), + [anon_sym_virtual] = ACTIONS(2182), + [anon_sym_extern] = ACTIONS(2182), + [anon_sym___attribute__] = ACTIONS(2182), + [anon_sym___attribute] = ACTIONS(2182), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2182), + [anon_sym___based] = ACTIONS(2182), + [anon_sym___cdecl] = ACTIONS(2182), + [anon_sym___clrcall] = ACTIONS(2182), + [anon_sym___stdcall] = ACTIONS(2182), + [anon_sym___fastcall] = ACTIONS(2182), + [anon_sym___thiscall] = ACTIONS(2182), + [anon_sym___vectorcall] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2182), + [anon_sym_unsigned] = ACTIONS(2182), + [anon_sym_long] = ACTIONS(2182), + [anon_sym_short] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_register] = ACTIONS(2182), + [anon_sym_inline] = ACTIONS(2182), + [anon_sym___inline] = ACTIONS(2182), + [anon_sym___inline__] = ACTIONS(2182), + [anon_sym___forceinline] = ACTIONS(2182), + [anon_sym_thread_local] = ACTIONS(2182), + [anon_sym___thread] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_constexpr] = ACTIONS(2182), + [anon_sym_volatile] = ACTIONS(2182), + [anon_sym_restrict] = ACTIONS(2182), + [anon_sym___restrict__] = ACTIONS(2182), + [anon_sym__Atomic] = ACTIONS(2182), + [anon_sym__Noreturn] = ACTIONS(2182), + [anon_sym_noreturn] = ACTIONS(2182), + [anon_sym__Nonnull] = ACTIONS(2182), + [anon_sym_mutable] = ACTIONS(2182), + [anon_sym_constinit] = ACTIONS(2182), + [anon_sym_consteval] = ACTIONS(2182), + [anon_sym_alignas] = ACTIONS(2182), + [anon_sym__Alignas] = ACTIONS(2182), + [sym_primitive_type] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), + [anon_sym_class] = ACTIONS(2182), + [anon_sym_struct] = ACTIONS(2182), + [anon_sym_union] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_switch] = ACTIONS(2182), + [anon_sym_case] = ACTIONS(2182), + [anon_sym_default] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_do] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_goto] = ACTIONS(2182), + [anon_sym___try] = ACTIONS(2182), + [anon_sym___leave] = ACTIONS(2182), + [anon_sym_not] = ACTIONS(2182), + [anon_sym_compl] = ACTIONS(2182), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_sizeof] = ACTIONS(2182), + [anon_sym___alignof__] = ACTIONS(2182), + [anon_sym___alignof] = ACTIONS(2182), + [anon_sym__alignof] = ACTIONS(2182), + [anon_sym_alignof] = ACTIONS(2182), + [anon_sym__Alignof] = ACTIONS(2182), + [anon_sym_offsetof] = ACTIONS(2182), + [anon_sym__Generic] = ACTIONS(2182), + [anon_sym_asm] = ACTIONS(2182), + [anon_sym___asm__] = ACTIONS(2182), + [anon_sym___asm] = ACTIONS(2182), + [sym_number_literal] = ACTIONS(2184), + [anon_sym_L_SQUOTE] = ACTIONS(2184), + [anon_sym_u_SQUOTE] = ACTIONS(2184), + [anon_sym_U_SQUOTE] = ACTIONS(2184), + [anon_sym_u8_SQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_L_DQUOTE] = ACTIONS(2184), + [anon_sym_u_DQUOTE] = ACTIONS(2184), + [anon_sym_U_DQUOTE] = ACTIONS(2184), + [anon_sym_u8_DQUOTE] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym_true] = ACTIONS(2182), + [sym_false] = ACTIONS(2182), + [anon_sym_NULL] = ACTIONS(2182), + [anon_sym_nullptr] = ACTIONS(2182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2182), + [anon_sym_decltype] = ACTIONS(2182), + [anon_sym_explicit] = ACTIONS(2182), + [anon_sym_typename] = ACTIONS(2182), + [anon_sym_template] = ACTIONS(2182), + [anon_sym_operator] = ACTIONS(2182), + [anon_sym_try] = ACTIONS(2182), + [anon_sym_delete] = ACTIONS(2182), + [anon_sym_throw] = ACTIONS(2182), + [anon_sym_namespace] = ACTIONS(2182), + [anon_sym_using] = ACTIONS(2182), + [anon_sym_static_assert] = ACTIONS(2182), + [anon_sym_concept] = ACTIONS(2182), + [anon_sym_co_return] = ACTIONS(2182), + [anon_sym_co_yield] = ACTIONS(2182), + [anon_sym_R_DQUOTE] = ACTIONS(2184), + [anon_sym_LR_DQUOTE] = ACTIONS(2184), + [anon_sym_uR_DQUOTE] = ACTIONS(2184), + [anon_sym_UR_DQUOTE] = ACTIONS(2184), + [anon_sym_u8R_DQUOTE] = ACTIONS(2184), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2182), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2182), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2182), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_FORWARD] = ACTIONS(2182), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2182), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2182), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2182), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2182), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_PS_GET] = ACTIONS(2182), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2182), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2182), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2182), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2182), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2182), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2182), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2182), + [anon_sym_MOZ_COLD] = ACTIONS(2182), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2182), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2182), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2182), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2182), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2182), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2182), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2182), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2182), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2182), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2182), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2182), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2182), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2182), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_NONNULL] = ACTIONS(2182), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2182), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2182), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2182), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2182), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2182), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2182), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2182), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2182), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2182), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2182), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2182), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2182), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2182), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2182), + [anon_sym_MOZ_RAII] = ACTIONS(2182), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2182), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2182), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2182), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2182), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2182), + }, + [STATE(492)] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_include_token1] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token2] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym___attribute] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2188), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym___cdecl] = ACTIONS(2186), + [anon_sym___clrcall] = ACTIONS(2186), + [anon_sym___stdcall] = ACTIONS(2186), + [anon_sym___fastcall] = ACTIONS(2186), + [anon_sym___thiscall] = ACTIONS(2186), + [anon_sym___vectorcall] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym__Nonnull] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym__Alignas] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_switch] = ACTIONS(2186), + [anon_sym_case] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_goto] = ACTIONS(2186), + [anon_sym___try] = ACTIONS(2186), + [anon_sym___leave] = ACTIONS(2186), + [anon_sym_not] = ACTIONS(2186), + [anon_sym_compl] = ACTIONS(2186), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_sizeof] = ACTIONS(2186), + [anon_sym___alignof__] = ACTIONS(2186), + [anon_sym___alignof] = ACTIONS(2186), + [anon_sym__alignof] = ACTIONS(2186), + [anon_sym_alignof] = ACTIONS(2186), + [anon_sym__Alignof] = ACTIONS(2186), + [anon_sym_offsetof] = ACTIONS(2186), + [anon_sym__Generic] = ACTIONS(2186), + [anon_sym_asm] = ACTIONS(2186), + [anon_sym___asm__] = ACTIONS(2186), + [anon_sym___asm] = ACTIONS(2186), + [sym_number_literal] = ACTIONS(2188), + [anon_sym_L_SQUOTE] = ACTIONS(2188), + [anon_sym_u_SQUOTE] = ACTIONS(2188), + [anon_sym_U_SQUOTE] = ACTIONS(2188), + [anon_sym_u8_SQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_L_DQUOTE] = ACTIONS(2188), + [anon_sym_u_DQUOTE] = ACTIONS(2188), + [anon_sym_U_DQUOTE] = ACTIONS(2188), + [anon_sym_u8_DQUOTE] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(2188), + [sym_true] = ACTIONS(2186), + [sym_false] = ACTIONS(2186), + [anon_sym_NULL] = ACTIONS(2186), + [anon_sym_nullptr] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_delete] = ACTIONS(2186), + [anon_sym_throw] = ACTIONS(2186), + [anon_sym_namespace] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [anon_sym_concept] = ACTIONS(2186), + [anon_sym_co_return] = ACTIONS(2186), + [anon_sym_co_yield] = ACTIONS(2186), + [anon_sym_R_DQUOTE] = ACTIONS(2188), + [anon_sym_LR_DQUOTE] = ACTIONS(2188), + [anon_sym_uR_DQUOTE] = ACTIONS(2188), + [anon_sym_UR_DQUOTE] = ACTIONS(2188), + [anon_sym_u8R_DQUOTE] = ACTIONS(2188), + [anon_sym_co_await] = ACTIONS(2186), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2186), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2186), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_FORWARD] = ACTIONS(2186), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2186), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2186), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2186), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2186), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_PS_GET] = ACTIONS(2186), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2186), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2186), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2186), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2186), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2186), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2186), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2186), + [anon_sym_MOZ_COLD] = ACTIONS(2186), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2186), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2186), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2186), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2186), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2186), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2186), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2186), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2186), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2186), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2186), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2186), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2186), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2186), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_NONNULL] = ACTIONS(2186), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2186), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2186), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2186), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2186), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2186), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2186), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2186), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2186), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2186), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2186), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2186), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2186), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2186), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2186), + [anon_sym_MOZ_RAII] = ACTIONS(2186), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2186), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2186), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2186), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2186), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2186), + }, + [STATE(493)] = { + [sym_identifier] = ACTIONS(2194), + [aux_sym_preproc_include_token1] = ACTIONS(2194), + [aux_sym_preproc_def_token1] = ACTIONS(2194), + [aux_sym_preproc_if_token1] = ACTIONS(2194), + [aux_sym_preproc_if_token2] = ACTIONS(2194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), + [sym_preproc_directive] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2196), + [anon_sym_TILDE] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym___extension__] = ACTIONS(2194), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_virtual] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(2194), + [anon_sym___attribute__] = ACTIONS(2194), + [anon_sym___attribute] = ACTIONS(2194), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2196), + [anon_sym___declspec] = ACTIONS(2194), + [anon_sym___based] = ACTIONS(2194), + [anon_sym___cdecl] = ACTIONS(2194), + [anon_sym___clrcall] = ACTIONS(2194), + [anon_sym___stdcall] = ACTIONS(2194), + [anon_sym___fastcall] = ACTIONS(2194), + [anon_sym___thiscall] = ACTIONS(2194), + [anon_sym___vectorcall] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_signed] = ACTIONS(2194), + [anon_sym_unsigned] = ACTIONS(2194), + [anon_sym_long] = ACTIONS(2194), + [anon_sym_short] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2194), + [anon_sym_static] = ACTIONS(2194), + [anon_sym_register] = ACTIONS(2194), + [anon_sym_inline] = ACTIONS(2194), + [anon_sym___inline] = ACTIONS(2194), + [anon_sym___inline__] = ACTIONS(2194), + [anon_sym___forceinline] = ACTIONS(2194), + [anon_sym_thread_local] = ACTIONS(2194), + [anon_sym___thread] = ACTIONS(2194), + [anon_sym_const] = ACTIONS(2194), + [anon_sym_constexpr] = ACTIONS(2194), + [anon_sym_volatile] = ACTIONS(2194), + [anon_sym_restrict] = ACTIONS(2194), + [anon_sym___restrict__] = ACTIONS(2194), + [anon_sym__Atomic] = ACTIONS(2194), + [anon_sym__Noreturn] = ACTIONS(2194), + [anon_sym_noreturn] = ACTIONS(2194), + [anon_sym__Nonnull] = ACTIONS(2194), + [anon_sym_mutable] = ACTIONS(2194), + [anon_sym_constinit] = ACTIONS(2194), + [anon_sym_consteval] = ACTIONS(2194), + [anon_sym_alignas] = ACTIONS(2194), + [anon_sym__Alignas] = ACTIONS(2194), + [sym_primitive_type] = ACTIONS(2194), + [anon_sym_enum] = ACTIONS(2194), + [anon_sym_class] = ACTIONS(2194), + [anon_sym_struct] = ACTIONS(2194), + [anon_sym_union] = ACTIONS(2194), + [anon_sym_if] = ACTIONS(2194), + [anon_sym_switch] = ACTIONS(2194), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2194), + [anon_sym_while] = ACTIONS(2194), + [anon_sym_do] = ACTIONS(2194), + [anon_sym_for] = ACTIONS(2194), + [anon_sym_return] = ACTIONS(2194), + [anon_sym_break] = ACTIONS(2194), + [anon_sym_continue] = ACTIONS(2194), + [anon_sym_goto] = ACTIONS(2194), + [anon_sym___try] = ACTIONS(2194), + [anon_sym___leave] = ACTIONS(2194), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_compl] = ACTIONS(2194), + [anon_sym_DASH_DASH] = ACTIONS(2196), + [anon_sym_PLUS_PLUS] = ACTIONS(2196), + [anon_sym_sizeof] = ACTIONS(2194), + [anon_sym___alignof__] = ACTIONS(2194), + [anon_sym___alignof] = ACTIONS(2194), + [anon_sym__alignof] = ACTIONS(2194), + [anon_sym_alignof] = ACTIONS(2194), + [anon_sym__Alignof] = ACTIONS(2194), + [anon_sym_offsetof] = ACTIONS(2194), + [anon_sym__Generic] = ACTIONS(2194), + [anon_sym_asm] = ACTIONS(2194), + [anon_sym___asm__] = ACTIONS(2194), + [anon_sym___asm] = ACTIONS(2194), + [sym_number_literal] = ACTIONS(2196), + [anon_sym_L_SQUOTE] = ACTIONS(2196), + [anon_sym_u_SQUOTE] = ACTIONS(2196), + [anon_sym_U_SQUOTE] = ACTIONS(2196), + [anon_sym_u8_SQUOTE] = ACTIONS(2196), + [anon_sym_SQUOTE] = ACTIONS(2196), + [anon_sym_L_DQUOTE] = ACTIONS(2196), + [anon_sym_u_DQUOTE] = ACTIONS(2196), + [anon_sym_U_DQUOTE] = ACTIONS(2196), + [anon_sym_u8_DQUOTE] = ACTIONS(2196), + [anon_sym_DQUOTE] = ACTIONS(2196), + [sym_true] = ACTIONS(2194), + [sym_false] = ACTIONS(2194), + [anon_sym_NULL] = ACTIONS(2194), + [anon_sym_nullptr] = ACTIONS(2194), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2194), + [anon_sym_decltype] = ACTIONS(2194), + [anon_sym_explicit] = ACTIONS(2194), + [anon_sym_typename] = ACTIONS(2194), + [anon_sym_template] = ACTIONS(2194), + [anon_sym_operator] = ACTIONS(2194), + [anon_sym_try] = ACTIONS(2194), + [anon_sym_delete] = ACTIONS(2194), + [anon_sym_throw] = ACTIONS(2194), + [anon_sym_namespace] = ACTIONS(2194), + [anon_sym_using] = ACTIONS(2194), + [anon_sym_static_assert] = ACTIONS(2194), + [anon_sym_concept] = ACTIONS(2194), + [anon_sym_co_return] = ACTIONS(2194), + [anon_sym_co_yield] = ACTIONS(2194), + [anon_sym_R_DQUOTE] = ACTIONS(2196), + [anon_sym_LR_DQUOTE] = ACTIONS(2196), + [anon_sym_uR_DQUOTE] = ACTIONS(2196), + [anon_sym_UR_DQUOTE] = ACTIONS(2196), + [anon_sym_u8R_DQUOTE] = ACTIONS(2196), + [anon_sym_co_await] = ACTIONS(2194), + [anon_sym_new] = ACTIONS(2194), + [anon_sym_requires] = ACTIONS(2194), + [sym_this] = ACTIONS(2194), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2194), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_FORWARD] = ACTIONS(2194), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2194), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2194), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2194), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2194), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_PS_GET] = ACTIONS(2194), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2194), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2194), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2194), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2194), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2194), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2194), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2194), + [anon_sym_MOZ_COLD] = ACTIONS(2194), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2194), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2194), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2194), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2194), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2194), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2194), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2194), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2194), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2194), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2194), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2194), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2194), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2194), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_NONNULL] = ACTIONS(2194), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2194), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2194), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2194), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2194), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2194), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2194), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2194), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2194), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2194), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2194), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2194), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2194), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2194), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2194), + [anon_sym_MOZ_RAII] = ACTIONS(2194), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2194), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2194), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2194), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2194), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2194), + }, + [STATE(494)] = { + [sym_identifier] = ACTIONS(2198), + [aux_sym_preproc_include_token1] = ACTIONS(2198), + [aux_sym_preproc_def_token1] = ACTIONS(2198), + [aux_sym_preproc_if_token1] = ACTIONS(2198), + [aux_sym_preproc_if_token2] = ACTIONS(2198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2198), + [sym_preproc_directive] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2198), + [anon_sym_PLUS] = ACTIONS(2198), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_AMP_AMP] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym___extension__] = ACTIONS(2198), + [anon_sym_typedef] = ACTIONS(2198), + [anon_sym_virtual] = ACTIONS(2198), + [anon_sym_extern] = ACTIONS(2198), + [anon_sym___attribute__] = ACTIONS(2198), + [anon_sym___attribute] = ACTIONS(2198), + [anon_sym_COLON_COLON] = ACTIONS(2200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2200), + [anon_sym___declspec] = ACTIONS(2198), + [anon_sym___based] = ACTIONS(2198), + [anon_sym___cdecl] = ACTIONS(2198), + [anon_sym___clrcall] = ACTIONS(2198), + [anon_sym___stdcall] = ACTIONS(2198), + [anon_sym___fastcall] = ACTIONS(2198), + [anon_sym___thiscall] = ACTIONS(2198), + [anon_sym___vectorcall] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_signed] = ACTIONS(2198), + [anon_sym_unsigned] = ACTIONS(2198), + [anon_sym_long] = ACTIONS(2198), + [anon_sym_short] = ACTIONS(2198), + [anon_sym_LBRACK] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_register] = ACTIONS(2198), + [anon_sym_inline] = ACTIONS(2198), + [anon_sym___inline] = ACTIONS(2198), + [anon_sym___inline__] = ACTIONS(2198), + [anon_sym___forceinline] = ACTIONS(2198), + [anon_sym_thread_local] = ACTIONS(2198), + [anon_sym___thread] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_constexpr] = ACTIONS(2198), + [anon_sym_volatile] = ACTIONS(2198), + [anon_sym_restrict] = ACTIONS(2198), + [anon_sym___restrict__] = ACTIONS(2198), + [anon_sym__Atomic] = ACTIONS(2198), + [anon_sym__Noreturn] = ACTIONS(2198), + [anon_sym_noreturn] = ACTIONS(2198), + [anon_sym__Nonnull] = ACTIONS(2198), + [anon_sym_mutable] = ACTIONS(2198), + [anon_sym_constinit] = ACTIONS(2198), + [anon_sym_consteval] = ACTIONS(2198), + [anon_sym_alignas] = ACTIONS(2198), + [anon_sym__Alignas] = ACTIONS(2198), + [sym_primitive_type] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), + [anon_sym_class] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(2198), + [anon_sym_union] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2198), + [anon_sym_switch] = ACTIONS(2198), + [anon_sym_case] = ACTIONS(2198), + [anon_sym_default] = ACTIONS(2198), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(2198), + [anon_sym_for] = ACTIONS(2198), + [anon_sym_return] = ACTIONS(2198), + [anon_sym_break] = ACTIONS(2198), + [anon_sym_continue] = ACTIONS(2198), + [anon_sym_goto] = ACTIONS(2198), + [anon_sym___try] = ACTIONS(2198), + [anon_sym___leave] = ACTIONS(2198), + [anon_sym_not] = ACTIONS(2198), + [anon_sym_compl] = ACTIONS(2198), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [anon_sym_PLUS_PLUS] = ACTIONS(2200), + [anon_sym_sizeof] = ACTIONS(2198), + [anon_sym___alignof__] = ACTIONS(2198), + [anon_sym___alignof] = ACTIONS(2198), + [anon_sym__alignof] = ACTIONS(2198), + [anon_sym_alignof] = ACTIONS(2198), + [anon_sym__Alignof] = ACTIONS(2198), + [anon_sym_offsetof] = ACTIONS(2198), + [anon_sym__Generic] = ACTIONS(2198), + [anon_sym_asm] = ACTIONS(2198), + [anon_sym___asm__] = ACTIONS(2198), + [anon_sym___asm] = ACTIONS(2198), + [sym_number_literal] = ACTIONS(2200), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2200), + [anon_sym_u_DQUOTE] = ACTIONS(2200), + [anon_sym_U_DQUOTE] = ACTIONS(2200), + [anon_sym_u8_DQUOTE] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [sym_true] = ACTIONS(2198), + [sym_false] = ACTIONS(2198), + [anon_sym_NULL] = ACTIONS(2198), + [anon_sym_nullptr] = ACTIONS(2198), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2198), + [anon_sym_decltype] = ACTIONS(2198), + [anon_sym_explicit] = ACTIONS(2198), + [anon_sym_typename] = ACTIONS(2198), + [anon_sym_template] = ACTIONS(2198), + [anon_sym_operator] = ACTIONS(2198), + [anon_sym_try] = ACTIONS(2198), + [anon_sym_delete] = ACTIONS(2198), + [anon_sym_throw] = ACTIONS(2198), + [anon_sym_namespace] = ACTIONS(2198), + [anon_sym_using] = ACTIONS(2198), + [anon_sym_static_assert] = ACTIONS(2198), + [anon_sym_concept] = ACTIONS(2198), + [anon_sym_co_return] = ACTIONS(2198), + [anon_sym_co_yield] = ACTIONS(2198), + [anon_sym_R_DQUOTE] = ACTIONS(2200), + [anon_sym_LR_DQUOTE] = ACTIONS(2200), + [anon_sym_uR_DQUOTE] = ACTIONS(2200), + [anon_sym_UR_DQUOTE] = ACTIONS(2200), + [anon_sym_u8R_DQUOTE] = ACTIONS(2200), + [anon_sym_co_await] = ACTIONS(2198), + [anon_sym_new] = ACTIONS(2198), + [anon_sym_requires] = ACTIONS(2198), + [sym_this] = ACTIONS(2198), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2198), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_FORWARD] = ACTIONS(2198), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2198), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2198), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2198), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2198), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_PS_GET] = ACTIONS(2198), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2198), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2198), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2198), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2198), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2198), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2198), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2198), + [anon_sym_MOZ_COLD] = ACTIONS(2198), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2198), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2198), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2198), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2198), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2198), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2198), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2198), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2198), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2198), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2198), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2198), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2198), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2198), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_NONNULL] = ACTIONS(2198), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2198), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2198), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2198), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2198), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2198), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2198), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2198), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2198), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2198), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2198), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2198), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2198), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2198), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2198), + [anon_sym_MOZ_RAII] = ACTIONS(2198), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2198), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2198), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2198), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2198), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2198), + }, + [STATE(495)] = { + [sym_identifier] = ACTIONS(2210), + [aux_sym_preproc_include_token1] = ACTIONS(2210), + [aux_sym_preproc_def_token1] = ACTIONS(2210), + [aux_sym_preproc_if_token1] = ACTIONS(2210), + [aux_sym_preproc_if_token2] = ACTIONS(2210), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2210), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2210), + [sym_preproc_directive] = ACTIONS(2210), + [anon_sym_LPAREN2] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_PLUS] = ACTIONS(2210), + [anon_sym_STAR] = ACTIONS(2212), + [anon_sym_AMP_AMP] = ACTIONS(2212), + [anon_sym_AMP] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym___extension__] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_virtual] = ACTIONS(2210), + [anon_sym_extern] = ACTIONS(2210), + [anon_sym___attribute__] = ACTIONS(2210), + [anon_sym___attribute] = ACTIONS(2210), + [anon_sym_COLON_COLON] = ACTIONS(2212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2212), + [anon_sym___declspec] = ACTIONS(2210), + [anon_sym___based] = ACTIONS(2210), + [anon_sym___cdecl] = ACTIONS(2210), + [anon_sym___clrcall] = ACTIONS(2210), + [anon_sym___stdcall] = ACTIONS(2210), + [anon_sym___fastcall] = ACTIONS(2210), + [anon_sym___thiscall] = ACTIONS(2210), + [anon_sym___vectorcall] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_signed] = ACTIONS(2210), + [anon_sym_unsigned] = ACTIONS(2210), + [anon_sym_long] = ACTIONS(2210), + [anon_sym_short] = ACTIONS(2210), + [anon_sym_LBRACK] = ACTIONS(2210), + [anon_sym_static] = ACTIONS(2210), + [anon_sym_register] = ACTIONS(2210), + [anon_sym_inline] = ACTIONS(2210), + [anon_sym___inline] = ACTIONS(2210), + [anon_sym___inline__] = ACTIONS(2210), + [anon_sym___forceinline] = ACTIONS(2210), + [anon_sym_thread_local] = ACTIONS(2210), + [anon_sym___thread] = ACTIONS(2210), + [anon_sym_const] = ACTIONS(2210), + [anon_sym_constexpr] = ACTIONS(2210), + [anon_sym_volatile] = ACTIONS(2210), + [anon_sym_restrict] = ACTIONS(2210), + [anon_sym___restrict__] = ACTIONS(2210), + [anon_sym__Atomic] = ACTIONS(2210), + [anon_sym__Noreturn] = ACTIONS(2210), + [anon_sym_noreturn] = ACTIONS(2210), + [anon_sym__Nonnull] = ACTIONS(2210), + [anon_sym_mutable] = ACTIONS(2210), + [anon_sym_constinit] = ACTIONS(2210), + [anon_sym_consteval] = ACTIONS(2210), + [anon_sym_alignas] = ACTIONS(2210), + [anon_sym__Alignas] = ACTIONS(2210), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_enum] = ACTIONS(2210), + [anon_sym_class] = ACTIONS(2210), + [anon_sym_struct] = ACTIONS(2210), + [anon_sym_union] = ACTIONS(2210), + [anon_sym_if] = ACTIONS(2210), + [anon_sym_switch] = ACTIONS(2210), + [anon_sym_case] = ACTIONS(2210), + [anon_sym_default] = ACTIONS(2210), + [anon_sym_while] = ACTIONS(2210), + [anon_sym_do] = ACTIONS(2210), + [anon_sym_for] = ACTIONS(2210), + [anon_sym_return] = ACTIONS(2210), + [anon_sym_break] = ACTIONS(2210), + [anon_sym_continue] = ACTIONS(2210), + [anon_sym_goto] = ACTIONS(2210), + [anon_sym___try] = ACTIONS(2210), + [anon_sym___leave] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(2210), + [anon_sym_compl] = ACTIONS(2210), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_sizeof] = ACTIONS(2210), + [anon_sym___alignof__] = ACTIONS(2210), + [anon_sym___alignof] = ACTIONS(2210), + [anon_sym__alignof] = ACTIONS(2210), + [anon_sym_alignof] = ACTIONS(2210), + [anon_sym__Alignof] = ACTIONS(2210), + [anon_sym_offsetof] = ACTIONS(2210), + [anon_sym__Generic] = ACTIONS(2210), + [anon_sym_asm] = ACTIONS(2210), + [anon_sym___asm__] = ACTIONS(2210), + [anon_sym___asm] = ACTIONS(2210), + [sym_number_literal] = ACTIONS(2212), + [anon_sym_L_SQUOTE] = ACTIONS(2212), + [anon_sym_u_SQUOTE] = ACTIONS(2212), + [anon_sym_U_SQUOTE] = ACTIONS(2212), + [anon_sym_u8_SQUOTE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_L_DQUOTE] = ACTIONS(2212), + [anon_sym_u_DQUOTE] = ACTIONS(2212), + [anon_sym_U_DQUOTE] = ACTIONS(2212), + [anon_sym_u8_DQUOTE] = ACTIONS(2212), + [anon_sym_DQUOTE] = ACTIONS(2212), + [sym_true] = ACTIONS(2210), + [sym_false] = ACTIONS(2210), + [anon_sym_NULL] = ACTIONS(2210), + [anon_sym_nullptr] = ACTIONS(2210), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2210), + [anon_sym_decltype] = ACTIONS(2210), + [anon_sym_explicit] = ACTIONS(2210), + [anon_sym_typename] = ACTIONS(2210), + [anon_sym_template] = ACTIONS(2210), + [anon_sym_operator] = ACTIONS(2210), + [anon_sym_try] = ACTIONS(2210), + [anon_sym_delete] = ACTIONS(2210), + [anon_sym_throw] = ACTIONS(2210), + [anon_sym_namespace] = ACTIONS(2210), + [anon_sym_using] = ACTIONS(2210), + [anon_sym_static_assert] = ACTIONS(2210), + [anon_sym_concept] = ACTIONS(2210), + [anon_sym_co_return] = ACTIONS(2210), + [anon_sym_co_yield] = ACTIONS(2210), + [anon_sym_R_DQUOTE] = ACTIONS(2212), + [anon_sym_LR_DQUOTE] = ACTIONS(2212), + [anon_sym_uR_DQUOTE] = ACTIONS(2212), + [anon_sym_UR_DQUOTE] = ACTIONS(2212), + [anon_sym_u8R_DQUOTE] = ACTIONS(2212), + [anon_sym_co_await] = ACTIONS(2210), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2210), + [sym_this] = ACTIONS(2210), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2210), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_FORWARD] = ACTIONS(2210), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2210), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2210), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2210), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2210), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_PS_GET] = ACTIONS(2210), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2210), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2210), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2210), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2210), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2210), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2210), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2210), + [anon_sym_MOZ_COLD] = ACTIONS(2210), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2210), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2210), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2210), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2210), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2210), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2210), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2210), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2210), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2210), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2210), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2210), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2210), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2210), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_NONNULL] = ACTIONS(2210), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2210), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2210), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2210), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2210), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2210), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2210), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2210), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2210), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2210), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2210), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2210), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2210), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2210), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2210), + [anon_sym_MOZ_RAII] = ACTIONS(2210), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2210), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2210), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2210), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2210), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2210), + }, + [STATE(496)] = { + [sym_identifier] = ACTIONS(2218), + [aux_sym_preproc_include_token1] = ACTIONS(2218), + [aux_sym_preproc_def_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token2] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2218), + [sym_preproc_directive] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_PLUS] = ACTIONS(2218), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP_AMP] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2218), + [anon_sym_typedef] = ACTIONS(2218), + [anon_sym_virtual] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym___attribute__] = ACTIONS(2218), + [anon_sym___attribute] = ACTIONS(2218), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2220), + [anon_sym___declspec] = ACTIONS(2218), + [anon_sym___based] = ACTIONS(2218), + [anon_sym___cdecl] = ACTIONS(2218), + [anon_sym___clrcall] = ACTIONS(2218), + [anon_sym___stdcall] = ACTIONS(2218), + [anon_sym___fastcall] = ACTIONS(2218), + [anon_sym___thiscall] = ACTIONS(2218), + [anon_sym___vectorcall] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_signed] = ACTIONS(2218), + [anon_sym_unsigned] = ACTIONS(2218), + [anon_sym_long] = ACTIONS(2218), + [anon_sym_short] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_inline] = ACTIONS(2218), + [anon_sym___inline] = ACTIONS(2218), + [anon_sym___inline__] = ACTIONS(2218), + [anon_sym___forceinline] = ACTIONS(2218), + [anon_sym_thread_local] = ACTIONS(2218), + [anon_sym___thread] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_constexpr] = ACTIONS(2218), + [anon_sym_volatile] = ACTIONS(2218), + [anon_sym_restrict] = ACTIONS(2218), + [anon_sym___restrict__] = ACTIONS(2218), + [anon_sym__Atomic] = ACTIONS(2218), + [anon_sym__Noreturn] = ACTIONS(2218), + [anon_sym_noreturn] = ACTIONS(2218), + [anon_sym__Nonnull] = ACTIONS(2218), + [anon_sym_mutable] = ACTIONS(2218), + [anon_sym_constinit] = ACTIONS(2218), + [anon_sym_consteval] = ACTIONS(2218), + [anon_sym_alignas] = ACTIONS(2218), + [anon_sym__Alignas] = ACTIONS(2218), + [sym_primitive_type] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_class] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_switch] = ACTIONS(2218), + [anon_sym_case] = ACTIONS(2218), + [anon_sym_default] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_do] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_goto] = ACTIONS(2218), + [anon_sym___try] = ACTIONS(2218), + [anon_sym___leave] = ACTIONS(2218), + [anon_sym_not] = ACTIONS(2218), + [anon_sym_compl] = ACTIONS(2218), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(2218), + [anon_sym___alignof__] = ACTIONS(2218), + [anon_sym___alignof] = ACTIONS(2218), + [anon_sym__alignof] = ACTIONS(2218), + [anon_sym_alignof] = ACTIONS(2218), + [anon_sym__Alignof] = ACTIONS(2218), + [anon_sym_offsetof] = ACTIONS(2218), + [anon_sym__Generic] = ACTIONS(2218), + [anon_sym_asm] = ACTIONS(2218), + [anon_sym___asm__] = ACTIONS(2218), + [anon_sym___asm] = ACTIONS(2218), + [sym_number_literal] = ACTIONS(2220), + [anon_sym_L_SQUOTE] = ACTIONS(2220), + [anon_sym_u_SQUOTE] = ACTIONS(2220), + [anon_sym_U_SQUOTE] = ACTIONS(2220), + [anon_sym_u8_SQUOTE] = ACTIONS(2220), + [anon_sym_SQUOTE] = ACTIONS(2220), + [anon_sym_L_DQUOTE] = ACTIONS(2220), + [anon_sym_u_DQUOTE] = ACTIONS(2220), + [anon_sym_U_DQUOTE] = ACTIONS(2220), + [anon_sym_u8_DQUOTE] = ACTIONS(2220), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_true] = ACTIONS(2218), + [sym_false] = ACTIONS(2218), + [anon_sym_NULL] = ACTIONS(2218), + [anon_sym_nullptr] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2218), + [anon_sym_explicit] = ACTIONS(2218), + [anon_sym_typename] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_operator] = ACTIONS(2218), + [anon_sym_try] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(2218), + [anon_sym_throw] = ACTIONS(2218), + [anon_sym_namespace] = ACTIONS(2218), + [anon_sym_using] = ACTIONS(2218), + [anon_sym_static_assert] = ACTIONS(2218), + [anon_sym_concept] = ACTIONS(2218), + [anon_sym_co_return] = ACTIONS(2218), + [anon_sym_co_yield] = ACTIONS(2218), + [anon_sym_R_DQUOTE] = ACTIONS(2220), + [anon_sym_LR_DQUOTE] = ACTIONS(2220), + [anon_sym_uR_DQUOTE] = ACTIONS(2220), + [anon_sym_UR_DQUOTE] = ACTIONS(2220), + [anon_sym_u8R_DQUOTE] = ACTIONS(2220), + [anon_sym_co_await] = ACTIONS(2218), + [anon_sym_new] = ACTIONS(2218), + [anon_sym_requires] = ACTIONS(2218), + [sym_this] = ACTIONS(2218), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2218), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_FORWARD] = ACTIONS(2218), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2218), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2218), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2218), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2218), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_PS_GET] = ACTIONS(2218), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2218), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2218), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2218), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2218), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2218), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2218), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2218), + [anon_sym_MOZ_COLD] = ACTIONS(2218), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2218), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2218), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2218), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2218), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2218), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2218), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2218), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2218), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2218), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2218), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2218), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2218), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2218), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_NONNULL] = ACTIONS(2218), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2218), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2218), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2218), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2218), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2218), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2218), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2218), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2218), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2218), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2218), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2218), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2218), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2218), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2218), + [anon_sym_MOZ_RAII] = ACTIONS(2218), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2218), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2218), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2218), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2218), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2218), + }, + [STATE(497)] = { + [sym_identifier] = ACTIONS(2291), + [aux_sym_preproc_include_token1] = ACTIONS(2291), + [aux_sym_preproc_def_token1] = ACTIONS(2291), + [aux_sym_preproc_if_token1] = ACTIONS(2291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2291), + [sym_preproc_directive] = ACTIONS(2291), + [anon_sym_LPAREN2] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(2293), + [anon_sym_TILDE] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2291), + [anon_sym_PLUS] = ACTIONS(2291), + [anon_sym_STAR] = ACTIONS(2293), + [anon_sym_AMP_AMP] = ACTIONS(2293), + [anon_sym_AMP] = ACTIONS(2291), + [anon_sym_SEMI] = ACTIONS(2293), + [anon_sym___extension__] = ACTIONS(2291), + [anon_sym_typedef] = ACTIONS(2291), + [anon_sym_virtual] = ACTIONS(2291), + [anon_sym_extern] = ACTIONS(2291), + [anon_sym___attribute__] = ACTIONS(2291), + [anon_sym___attribute] = ACTIONS(2291), + [anon_sym_COLON_COLON] = ACTIONS(2293), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2293), + [anon_sym___declspec] = ACTIONS(2291), + [anon_sym___based] = ACTIONS(2291), + [anon_sym___cdecl] = ACTIONS(2291), + [anon_sym___clrcall] = ACTIONS(2291), + [anon_sym___stdcall] = ACTIONS(2291), + [anon_sym___fastcall] = ACTIONS(2291), + [anon_sym___thiscall] = ACTIONS(2291), + [anon_sym___vectorcall] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2293), + [anon_sym_RBRACE] = ACTIONS(2293), + [anon_sym_signed] = ACTIONS(2291), + [anon_sym_unsigned] = ACTIONS(2291), + [anon_sym_long] = ACTIONS(2291), + [anon_sym_short] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_static] = ACTIONS(2291), + [anon_sym_register] = ACTIONS(2291), + [anon_sym_inline] = ACTIONS(2291), + [anon_sym___inline] = ACTIONS(2291), + [anon_sym___inline__] = ACTIONS(2291), + [anon_sym___forceinline] = ACTIONS(2291), + [anon_sym_thread_local] = ACTIONS(2291), + [anon_sym___thread] = ACTIONS(2291), + [anon_sym_const] = ACTIONS(2291), + [anon_sym_constexpr] = ACTIONS(2291), + [anon_sym_volatile] = ACTIONS(2291), + [anon_sym_restrict] = ACTIONS(2291), + [anon_sym___restrict__] = ACTIONS(2291), + [anon_sym__Atomic] = ACTIONS(2291), + [anon_sym__Noreturn] = ACTIONS(2291), + [anon_sym_noreturn] = ACTIONS(2291), + [anon_sym__Nonnull] = ACTIONS(2291), + [anon_sym_mutable] = ACTIONS(2291), + [anon_sym_constinit] = ACTIONS(2291), + [anon_sym_consteval] = ACTIONS(2291), + [anon_sym_alignas] = ACTIONS(2291), + [anon_sym__Alignas] = ACTIONS(2291), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_enum] = ACTIONS(2291), + [anon_sym_class] = ACTIONS(2291), + [anon_sym_struct] = ACTIONS(2291), + [anon_sym_union] = ACTIONS(2291), + [anon_sym_if] = ACTIONS(2291), + [anon_sym_switch] = ACTIONS(2291), + [anon_sym_case] = ACTIONS(2291), + [anon_sym_default] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2291), + [anon_sym_do] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2291), + [anon_sym_break] = ACTIONS(2291), + [anon_sym_continue] = ACTIONS(2291), + [anon_sym_goto] = ACTIONS(2291), + [anon_sym___try] = ACTIONS(2291), + [anon_sym___leave] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2291), + [anon_sym_compl] = ACTIONS(2291), + [anon_sym_DASH_DASH] = ACTIONS(2293), + [anon_sym_PLUS_PLUS] = ACTIONS(2293), + [anon_sym_sizeof] = ACTIONS(2291), + [anon_sym___alignof__] = ACTIONS(2291), + [anon_sym___alignof] = ACTIONS(2291), + [anon_sym__alignof] = ACTIONS(2291), + [anon_sym_alignof] = ACTIONS(2291), + [anon_sym__Alignof] = ACTIONS(2291), + [anon_sym_offsetof] = ACTIONS(2291), + [anon_sym__Generic] = ACTIONS(2291), + [anon_sym_asm] = ACTIONS(2291), + [anon_sym___asm__] = ACTIONS(2291), + [anon_sym___asm] = ACTIONS(2291), + [sym_number_literal] = ACTIONS(2293), + [anon_sym_L_SQUOTE] = ACTIONS(2293), + [anon_sym_u_SQUOTE] = ACTIONS(2293), + [anon_sym_U_SQUOTE] = ACTIONS(2293), + [anon_sym_u8_SQUOTE] = ACTIONS(2293), + [anon_sym_SQUOTE] = ACTIONS(2293), + [anon_sym_L_DQUOTE] = ACTIONS(2293), + [anon_sym_u_DQUOTE] = ACTIONS(2293), + [anon_sym_U_DQUOTE] = ACTIONS(2293), + [anon_sym_u8_DQUOTE] = ACTIONS(2293), + [anon_sym_DQUOTE] = ACTIONS(2293), + [sym_true] = ACTIONS(2291), + [sym_false] = ACTIONS(2291), + [anon_sym_NULL] = ACTIONS(2291), + [anon_sym_nullptr] = ACTIONS(2291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2291), + [anon_sym_decltype] = ACTIONS(2291), + [anon_sym_explicit] = ACTIONS(2291), + [anon_sym_typename] = ACTIONS(2291), + [anon_sym_template] = ACTIONS(2291), + [anon_sym_operator] = ACTIONS(2291), + [anon_sym_try] = ACTIONS(2291), + [anon_sym_delete] = ACTIONS(2291), + [anon_sym_throw] = ACTIONS(2291), + [anon_sym_namespace] = ACTIONS(2291), + [anon_sym_using] = ACTIONS(2291), + [anon_sym_static_assert] = ACTIONS(2291), + [anon_sym_concept] = ACTIONS(2291), + [anon_sym_co_return] = ACTIONS(2291), + [anon_sym_co_yield] = ACTIONS(2291), + [anon_sym_R_DQUOTE] = ACTIONS(2293), + [anon_sym_LR_DQUOTE] = ACTIONS(2293), + [anon_sym_uR_DQUOTE] = ACTIONS(2293), + [anon_sym_UR_DQUOTE] = ACTIONS(2293), + [anon_sym_u8R_DQUOTE] = ACTIONS(2293), + [anon_sym_co_await] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(2291), + [anon_sym_requires] = ACTIONS(2291), + [sym_this] = ACTIONS(2291), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2291), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_FORWARD] = ACTIONS(2291), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2291), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2291), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2291), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2291), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_PS_GET] = ACTIONS(2291), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2291), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2291), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2291), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2291), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2291), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2291), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2291), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2291), + [anon_sym_MOZ_COLD] = ACTIONS(2291), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2291), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2291), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2291), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2291), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2291), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2291), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2291), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2291), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2291), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2291), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2291), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2291), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2291), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_NONNULL] = ACTIONS(2291), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2291), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2291), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2291), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2291), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2291), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2291), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2291), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2291), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2291), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2291), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2291), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2291), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2291), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2291), + [anon_sym_MOZ_RAII] = ACTIONS(2291), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2291), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2291), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2291), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2291), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2291), + }, + [STATE(498)] = { + [ts_builtin_sym_end] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2385), + [aux_sym_preproc_include_token1] = ACTIONS(2385), + [aux_sym_preproc_def_token1] = ACTIONS(2385), + [aux_sym_preproc_if_token1] = ACTIONS(2385), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2385), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2385), + [sym_preproc_directive] = ACTIONS(2385), + [anon_sym_LPAREN2] = ACTIONS(2387), + [anon_sym_BANG] = ACTIONS(2387), + [anon_sym_TILDE] = ACTIONS(2387), + [anon_sym_DASH] = ACTIONS(2385), + [anon_sym_PLUS] = ACTIONS(2385), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_AMP_AMP] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(2387), + [anon_sym___extension__] = ACTIONS(2385), + [anon_sym_typedef] = ACTIONS(2385), + [anon_sym_virtual] = ACTIONS(2385), + [anon_sym_extern] = ACTIONS(2385), + [anon_sym___attribute__] = ACTIONS(2385), + [anon_sym___attribute] = ACTIONS(2385), + [anon_sym_COLON_COLON] = ACTIONS(2387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2387), + [anon_sym___declspec] = ACTIONS(2385), + [anon_sym___based] = ACTIONS(2385), + [anon_sym___cdecl] = ACTIONS(2385), + [anon_sym___clrcall] = ACTIONS(2385), + [anon_sym___stdcall] = ACTIONS(2385), + [anon_sym___fastcall] = ACTIONS(2385), + [anon_sym___thiscall] = ACTIONS(2385), + [anon_sym___vectorcall] = ACTIONS(2385), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_signed] = ACTIONS(2385), + [anon_sym_unsigned] = ACTIONS(2385), + [anon_sym_long] = ACTIONS(2385), + [anon_sym_short] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2385), + [anon_sym_static] = ACTIONS(2385), + [anon_sym_register] = ACTIONS(2385), + [anon_sym_inline] = ACTIONS(2385), + [anon_sym___inline] = ACTIONS(2385), + [anon_sym___inline__] = ACTIONS(2385), + [anon_sym___forceinline] = ACTIONS(2385), + [anon_sym_thread_local] = ACTIONS(2385), + [anon_sym___thread] = ACTIONS(2385), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_constexpr] = ACTIONS(2385), + [anon_sym_volatile] = ACTIONS(2385), + [anon_sym_restrict] = ACTIONS(2385), + [anon_sym___restrict__] = ACTIONS(2385), + [anon_sym__Atomic] = ACTIONS(2385), + [anon_sym__Noreturn] = ACTIONS(2385), + [anon_sym_noreturn] = ACTIONS(2385), + [anon_sym__Nonnull] = ACTIONS(2385), + [anon_sym_mutable] = ACTIONS(2385), + [anon_sym_constinit] = ACTIONS(2385), + [anon_sym_consteval] = ACTIONS(2385), + [anon_sym_alignas] = ACTIONS(2385), + [anon_sym__Alignas] = ACTIONS(2385), + [sym_primitive_type] = ACTIONS(2385), + [anon_sym_enum] = ACTIONS(2385), + [anon_sym_class] = ACTIONS(2385), + [anon_sym_struct] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_switch] = ACTIONS(2385), + [anon_sym_case] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_while] = ACTIONS(2385), + [anon_sym_do] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2385), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_break] = ACTIONS(2385), + [anon_sym_continue] = ACTIONS(2385), + [anon_sym_goto] = ACTIONS(2385), + [anon_sym_not] = ACTIONS(2385), + [anon_sym_compl] = ACTIONS(2385), + [anon_sym_DASH_DASH] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2387), + [anon_sym_sizeof] = ACTIONS(2385), + [anon_sym___alignof__] = ACTIONS(2385), + [anon_sym___alignof] = ACTIONS(2385), + [anon_sym__alignof] = ACTIONS(2385), + [anon_sym_alignof] = ACTIONS(2385), + [anon_sym__Alignof] = ACTIONS(2385), + [anon_sym_offsetof] = ACTIONS(2385), + [anon_sym__Generic] = ACTIONS(2385), + [anon_sym_asm] = ACTIONS(2385), + [anon_sym___asm__] = ACTIONS(2385), + [anon_sym___asm] = ACTIONS(2385), + [sym_number_literal] = ACTIONS(2387), + [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(2387), + [anon_sym_u_DQUOTE] = ACTIONS(2387), + [anon_sym_U_DQUOTE] = ACTIONS(2387), + [anon_sym_u8_DQUOTE] = ACTIONS(2387), + [anon_sym_DQUOTE] = ACTIONS(2387), + [sym_true] = ACTIONS(2385), + [sym_false] = ACTIONS(2385), + [anon_sym_NULL] = ACTIONS(2385), + [anon_sym_nullptr] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2385), + [anon_sym_decltype] = ACTIONS(2385), + [anon_sym_explicit] = ACTIONS(2385), + [anon_sym_typename] = ACTIONS(2385), + [anon_sym_template] = ACTIONS(2385), + [anon_sym_operator] = ACTIONS(2385), + [anon_sym_try] = ACTIONS(2385), + [anon_sym_delete] = ACTIONS(2385), + [anon_sym_throw] = ACTIONS(2385), + [anon_sym_namespace] = ACTIONS(2385), + [anon_sym_using] = ACTIONS(2385), + [anon_sym_static_assert] = ACTIONS(2385), + [anon_sym_concept] = ACTIONS(2385), + [anon_sym_co_return] = ACTIONS(2385), + [anon_sym_co_yield] = ACTIONS(2385), + [anon_sym_R_DQUOTE] = ACTIONS(2387), + [anon_sym_LR_DQUOTE] = ACTIONS(2387), + [anon_sym_uR_DQUOTE] = ACTIONS(2387), + [anon_sym_UR_DQUOTE] = ACTIONS(2387), + [anon_sym_u8R_DQUOTE] = ACTIONS(2387), + [anon_sym_co_await] = ACTIONS(2385), + [anon_sym_new] = ACTIONS(2385), + [anon_sym_requires] = ACTIONS(2385), + [sym_this] = ACTIONS(2385), + [sym_alone_macro] = ACTIONS(2387), + [aux_sym_alone_macro_call_token1] = ACTIONS(2385), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2385), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_FORWARD] = ACTIONS(2385), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2385), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2385), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2385), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2385), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_PS_GET] = ACTIONS(2385), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2385), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2385), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2385), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2385), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2385), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2385), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2385), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2385), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2385), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2385), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2385), + [anon_sym_MOZ_COLD] = ACTIONS(2385), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2385), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2385), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2385), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2385), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2385), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2385), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2385), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2385), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2385), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2385), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2385), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2385), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2385), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2385), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2385), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2385), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2385), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2385), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2385), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2385), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_NONNULL] = ACTIONS(2385), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2385), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2385), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2385), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2385), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2385), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_NORETURN] = ACTIONS(2385), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2385), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2385), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2385), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2385), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2385), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2385), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2385), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2385), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2385), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2385), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2385), + [anon_sym_MOZ_RAII] = ACTIONS(2385), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2385), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2385), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2385), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2385), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2385), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2385), + }, + [STATE(499)] = { + [sym_identifier] = ACTIONS(2272), + [aux_sym_preproc_include_token1] = ACTIONS(2272), + [aux_sym_preproc_def_token1] = ACTIONS(2272), + [aux_sym_preproc_if_token1] = ACTIONS(2272), + [aux_sym_preproc_if_token2] = ACTIONS(2272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2272), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2272), + [sym_preproc_directive] = ACTIONS(2272), + [anon_sym_LPAREN2] = ACTIONS(2274), + [anon_sym_BANG] = ACTIONS(2274), + [anon_sym_TILDE] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2272), + [anon_sym_PLUS] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2274), + [anon_sym_AMP_AMP] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym___extension__] = ACTIONS(2272), + [anon_sym_typedef] = ACTIONS(2272), + [anon_sym_virtual] = ACTIONS(2272), + [anon_sym_extern] = ACTIONS(2272), + [anon_sym___attribute__] = ACTIONS(2272), + [anon_sym___attribute] = ACTIONS(2272), + [anon_sym_COLON_COLON] = ACTIONS(2274), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2274), + [anon_sym___declspec] = ACTIONS(2272), + [anon_sym___based] = ACTIONS(2272), + [anon_sym___cdecl] = ACTIONS(2272), + [anon_sym___clrcall] = ACTIONS(2272), + [anon_sym___stdcall] = ACTIONS(2272), + [anon_sym___fastcall] = ACTIONS(2272), + [anon_sym___thiscall] = ACTIONS(2272), + [anon_sym___vectorcall] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2274), + [anon_sym_signed] = ACTIONS(2272), + [anon_sym_unsigned] = ACTIONS(2272), + [anon_sym_long] = ACTIONS(2272), + [anon_sym_short] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_static] = ACTIONS(2272), + [anon_sym_register] = ACTIONS(2272), + [anon_sym_inline] = ACTIONS(2272), + [anon_sym___inline] = ACTIONS(2272), + [anon_sym___inline__] = ACTIONS(2272), + [anon_sym___forceinline] = ACTIONS(2272), + [anon_sym_thread_local] = ACTIONS(2272), + [anon_sym___thread] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [anon_sym_constexpr] = ACTIONS(2272), + [anon_sym_volatile] = ACTIONS(2272), + [anon_sym_restrict] = ACTIONS(2272), + [anon_sym___restrict__] = ACTIONS(2272), + [anon_sym__Atomic] = ACTIONS(2272), + [anon_sym__Noreturn] = ACTIONS(2272), + [anon_sym_noreturn] = ACTIONS(2272), + [anon_sym__Nonnull] = ACTIONS(2272), + [anon_sym_mutable] = ACTIONS(2272), + [anon_sym_constinit] = ACTIONS(2272), + [anon_sym_consteval] = ACTIONS(2272), + [anon_sym_alignas] = ACTIONS(2272), + [anon_sym__Alignas] = ACTIONS(2272), + [sym_primitive_type] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), + [anon_sym_class] = ACTIONS(2272), + [anon_sym_struct] = ACTIONS(2272), + [anon_sym_union] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_switch] = ACTIONS(2272), + [anon_sym_case] = ACTIONS(2272), + [anon_sym_default] = ACTIONS(2272), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_goto] = ACTIONS(2272), + [anon_sym___try] = ACTIONS(2272), + [anon_sym___leave] = ACTIONS(2272), + [anon_sym_not] = ACTIONS(2272), + [anon_sym_compl] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2274), + [anon_sym_PLUS_PLUS] = ACTIONS(2274), + [anon_sym_sizeof] = ACTIONS(2272), + [anon_sym___alignof__] = ACTIONS(2272), + [anon_sym___alignof] = ACTIONS(2272), + [anon_sym__alignof] = ACTIONS(2272), + [anon_sym_alignof] = ACTIONS(2272), + [anon_sym__Alignof] = ACTIONS(2272), + [anon_sym_offsetof] = ACTIONS(2272), + [anon_sym__Generic] = ACTIONS(2272), + [anon_sym_asm] = ACTIONS(2272), + [anon_sym___asm__] = ACTIONS(2272), + [anon_sym___asm] = ACTIONS(2272), + [sym_number_literal] = ACTIONS(2274), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2272), + [sym_false] = ACTIONS(2272), + [anon_sym_NULL] = ACTIONS(2272), + [anon_sym_nullptr] = ACTIONS(2272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2272), + [anon_sym_decltype] = ACTIONS(2272), + [anon_sym_explicit] = ACTIONS(2272), + [anon_sym_typename] = ACTIONS(2272), + [anon_sym_template] = ACTIONS(2272), + [anon_sym_operator] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2272), + [anon_sym_delete] = ACTIONS(2272), + [anon_sym_throw] = ACTIONS(2272), + [anon_sym_namespace] = ACTIONS(2272), + [anon_sym_using] = ACTIONS(2272), + [anon_sym_static_assert] = ACTIONS(2272), + [anon_sym_concept] = ACTIONS(2272), + [anon_sym_co_return] = ACTIONS(2272), + [anon_sym_co_yield] = ACTIONS(2272), + [anon_sym_R_DQUOTE] = ACTIONS(2274), + [anon_sym_LR_DQUOTE] = ACTIONS(2274), + [anon_sym_uR_DQUOTE] = ACTIONS(2274), + [anon_sym_UR_DQUOTE] = ACTIONS(2274), + [anon_sym_u8R_DQUOTE] = ACTIONS(2274), + [anon_sym_co_await] = ACTIONS(2272), + [anon_sym_new] = ACTIONS(2272), + [anon_sym_requires] = ACTIONS(2272), + [sym_this] = ACTIONS(2272), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2272), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_FORWARD] = ACTIONS(2272), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2272), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2272), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2272), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2272), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_PS_GET] = ACTIONS(2272), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2272), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2272), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2272), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2272), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2272), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2272), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2272), + [anon_sym_MOZ_COLD] = ACTIONS(2272), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2272), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2272), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2272), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2272), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2272), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2272), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2272), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2272), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2272), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2272), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2272), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2272), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2272), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_NONNULL] = ACTIONS(2272), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2272), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2272), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2272), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2272), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2272), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2272), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2272), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2272), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2272), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2272), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2272), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2272), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2272), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2272), + [anon_sym_MOZ_RAII] = ACTIONS(2272), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2272), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2272), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2272), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2272), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2272), + }, + [STATE(500)] = { + [sym_identifier] = ACTIONS(2307), + [aux_sym_preproc_include_token1] = ACTIONS(2307), + [aux_sym_preproc_def_token1] = ACTIONS(2307), + [aux_sym_preproc_if_token1] = ACTIONS(2307), + [aux_sym_preproc_if_token2] = ACTIONS(2307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2307), + [sym_preproc_directive] = ACTIONS(2307), + [anon_sym_LPAREN2] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2309), + [anon_sym_TILDE] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_typedef] = ACTIONS(2307), + [anon_sym_virtual] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym___attribute__] = ACTIONS(2307), + [anon_sym___attribute] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2309), + [anon_sym___declspec] = ACTIONS(2307), + [anon_sym___based] = ACTIONS(2307), + [anon_sym___cdecl] = ACTIONS(2307), + [anon_sym___clrcall] = ACTIONS(2307), + [anon_sym___stdcall] = ACTIONS(2307), + [anon_sym___fastcall] = ACTIONS(2307), + [anon_sym___thiscall] = ACTIONS(2307), + [anon_sym___vectorcall] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_signed] = ACTIONS(2307), + [anon_sym_unsigned] = ACTIONS(2307), + [anon_sym_long] = ACTIONS(2307), + [anon_sym_short] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_register] = ACTIONS(2307), + [anon_sym_inline] = ACTIONS(2307), + [anon_sym___inline] = ACTIONS(2307), + [anon_sym___inline__] = ACTIONS(2307), + [anon_sym___forceinline] = ACTIONS(2307), + [anon_sym_thread_local] = ACTIONS(2307), + [anon_sym___thread] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_constexpr] = ACTIONS(2307), + [anon_sym_volatile] = ACTIONS(2307), + [anon_sym_restrict] = ACTIONS(2307), + [anon_sym___restrict__] = ACTIONS(2307), + [anon_sym__Atomic] = ACTIONS(2307), + [anon_sym__Noreturn] = ACTIONS(2307), + [anon_sym_noreturn] = ACTIONS(2307), + [anon_sym__Nonnull] = ACTIONS(2307), + [anon_sym_mutable] = ACTIONS(2307), + [anon_sym_constinit] = ACTIONS(2307), + [anon_sym_consteval] = ACTIONS(2307), + [anon_sym_alignas] = ACTIONS(2307), + [anon_sym__Alignas] = ACTIONS(2307), + [sym_primitive_type] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_class] = ACTIONS(2307), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_switch] = ACTIONS(2307), + [anon_sym_case] = ACTIONS(2307), + [anon_sym_default] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_goto] = ACTIONS(2307), + [anon_sym___try] = ACTIONS(2307), + [anon_sym___leave] = ACTIONS(2307), + [anon_sym_not] = ACTIONS(2307), + [anon_sym_compl] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2307), + [anon_sym___alignof__] = ACTIONS(2307), + [anon_sym___alignof] = ACTIONS(2307), + [anon_sym__alignof] = ACTIONS(2307), + [anon_sym_alignof] = ACTIONS(2307), + [anon_sym__Alignof] = ACTIONS(2307), + [anon_sym_offsetof] = ACTIONS(2307), + [anon_sym__Generic] = ACTIONS(2307), + [anon_sym_asm] = ACTIONS(2307), + [anon_sym___asm__] = ACTIONS(2307), + [anon_sym___asm] = ACTIONS(2307), + [sym_number_literal] = ACTIONS(2309), + [anon_sym_L_SQUOTE] = ACTIONS(2309), + [anon_sym_u_SQUOTE] = ACTIONS(2309), + [anon_sym_U_SQUOTE] = ACTIONS(2309), + [anon_sym_u8_SQUOTE] = ACTIONS(2309), + [anon_sym_SQUOTE] = ACTIONS(2309), + [anon_sym_L_DQUOTE] = ACTIONS(2309), + [anon_sym_u_DQUOTE] = ACTIONS(2309), + [anon_sym_U_DQUOTE] = ACTIONS(2309), + [anon_sym_u8_DQUOTE] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2309), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [anon_sym_NULL] = ACTIONS(2307), + [anon_sym_nullptr] = ACTIONS(2307), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2307), + [anon_sym_decltype] = ACTIONS(2307), + [anon_sym_explicit] = ACTIONS(2307), + [anon_sym_typename] = ACTIONS(2307), + [anon_sym_template] = ACTIONS(2307), + [anon_sym_operator] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2307), + [anon_sym_delete] = ACTIONS(2307), + [anon_sym_throw] = ACTIONS(2307), + [anon_sym_namespace] = ACTIONS(2307), + [anon_sym_using] = ACTIONS(2307), + [anon_sym_static_assert] = ACTIONS(2307), + [anon_sym_concept] = ACTIONS(2307), + [anon_sym_co_return] = ACTIONS(2307), + [anon_sym_co_yield] = ACTIONS(2307), + [anon_sym_R_DQUOTE] = ACTIONS(2309), + [anon_sym_LR_DQUOTE] = ACTIONS(2309), + [anon_sym_uR_DQUOTE] = ACTIONS(2309), + [anon_sym_UR_DQUOTE] = ACTIONS(2309), + [anon_sym_u8R_DQUOTE] = ACTIONS(2309), + [anon_sym_co_await] = ACTIONS(2307), + [anon_sym_new] = ACTIONS(2307), + [anon_sym_requires] = ACTIONS(2307), + [sym_this] = ACTIONS(2307), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2307), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_FORWARD] = ACTIONS(2307), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2307), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2307), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2307), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2307), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_PS_GET] = ACTIONS(2307), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2307), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2307), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2307), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2307), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2307), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2307), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2307), + [anon_sym_MOZ_COLD] = ACTIONS(2307), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2307), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2307), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2307), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2307), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2307), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2307), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2307), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2307), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2307), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2307), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2307), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2307), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2307), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_NONNULL] = ACTIONS(2307), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2307), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2307), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2307), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2307), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2307), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2307), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2307), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2307), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2307), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2307), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2307), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2307), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2307), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2307), + [anon_sym_MOZ_RAII] = ACTIONS(2307), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2307), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2307), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2307), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2307), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2307), + }, + [STATE(501)] = { + [ts_builtin_sym_end] = ACTIONS(2391), + [sym_identifier] = ACTIONS(2389), + [aux_sym_preproc_include_token1] = ACTIONS(2389), + [aux_sym_preproc_def_token1] = ACTIONS(2389), + [aux_sym_preproc_if_token1] = ACTIONS(2389), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2389), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2389), + [sym_preproc_directive] = ACTIONS(2389), + [anon_sym_LPAREN2] = ACTIONS(2391), + [anon_sym_BANG] = ACTIONS(2391), + [anon_sym_TILDE] = ACTIONS(2391), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_STAR] = ACTIONS(2391), + [anon_sym_AMP_AMP] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2389), + [anon_sym_SEMI] = ACTIONS(2391), + [anon_sym___extension__] = ACTIONS(2389), + [anon_sym_typedef] = ACTIONS(2389), + [anon_sym_virtual] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(2389), + [anon_sym___attribute__] = ACTIONS(2389), + [anon_sym___attribute] = ACTIONS(2389), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2391), + [anon_sym___declspec] = ACTIONS(2389), + [anon_sym___based] = ACTIONS(2389), + [anon_sym___cdecl] = ACTIONS(2389), + [anon_sym___clrcall] = ACTIONS(2389), + [anon_sym___stdcall] = ACTIONS(2389), + [anon_sym___fastcall] = ACTIONS(2389), + [anon_sym___thiscall] = ACTIONS(2389), + [anon_sym___vectorcall] = ACTIONS(2389), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_signed] = ACTIONS(2389), + [anon_sym_unsigned] = ACTIONS(2389), + [anon_sym_long] = ACTIONS(2389), + [anon_sym_short] = ACTIONS(2389), + [anon_sym_LBRACK] = ACTIONS(2389), + [anon_sym_static] = ACTIONS(2389), + [anon_sym_register] = ACTIONS(2389), + [anon_sym_inline] = ACTIONS(2389), + [anon_sym___inline] = ACTIONS(2389), + [anon_sym___inline__] = ACTIONS(2389), + [anon_sym___forceinline] = ACTIONS(2389), + [anon_sym_thread_local] = ACTIONS(2389), + [anon_sym___thread] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [anon_sym_constexpr] = ACTIONS(2389), + [anon_sym_volatile] = ACTIONS(2389), + [anon_sym_restrict] = ACTIONS(2389), + [anon_sym___restrict__] = ACTIONS(2389), + [anon_sym__Atomic] = ACTIONS(2389), + [anon_sym__Noreturn] = ACTIONS(2389), + [anon_sym_noreturn] = ACTIONS(2389), + [anon_sym__Nonnull] = ACTIONS(2389), + [anon_sym_mutable] = ACTIONS(2389), + [anon_sym_constinit] = ACTIONS(2389), + [anon_sym_consteval] = ACTIONS(2389), + [anon_sym_alignas] = ACTIONS(2389), + [anon_sym__Alignas] = ACTIONS(2389), + [sym_primitive_type] = ACTIONS(2389), + [anon_sym_enum] = ACTIONS(2389), + [anon_sym_class] = ACTIONS(2389), + [anon_sym_struct] = ACTIONS(2389), + [anon_sym_union] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_switch] = ACTIONS(2389), + [anon_sym_case] = ACTIONS(2389), + [anon_sym_default] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [anon_sym_do] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_goto] = ACTIONS(2389), + [anon_sym_not] = ACTIONS(2389), + [anon_sym_compl] = ACTIONS(2389), + [anon_sym_DASH_DASH] = ACTIONS(2391), + [anon_sym_PLUS_PLUS] = ACTIONS(2391), + [anon_sym_sizeof] = ACTIONS(2389), + [anon_sym___alignof__] = ACTIONS(2389), + [anon_sym___alignof] = ACTIONS(2389), + [anon_sym__alignof] = ACTIONS(2389), + [anon_sym_alignof] = ACTIONS(2389), + [anon_sym__Alignof] = ACTIONS(2389), + [anon_sym_offsetof] = ACTIONS(2389), + [anon_sym__Generic] = ACTIONS(2389), + [anon_sym_asm] = ACTIONS(2389), + [anon_sym___asm__] = ACTIONS(2389), + [anon_sym___asm] = ACTIONS(2389), + [sym_number_literal] = ACTIONS(2391), + [anon_sym_L_SQUOTE] = ACTIONS(2391), + [anon_sym_u_SQUOTE] = ACTIONS(2391), + [anon_sym_U_SQUOTE] = ACTIONS(2391), + [anon_sym_u8_SQUOTE] = ACTIONS(2391), + [anon_sym_SQUOTE] = ACTIONS(2391), + [anon_sym_L_DQUOTE] = ACTIONS(2391), + [anon_sym_u_DQUOTE] = ACTIONS(2391), + [anon_sym_U_DQUOTE] = ACTIONS(2391), + [anon_sym_u8_DQUOTE] = ACTIONS(2391), + [anon_sym_DQUOTE] = ACTIONS(2391), + [sym_true] = ACTIONS(2389), + [sym_false] = ACTIONS(2389), + [anon_sym_NULL] = ACTIONS(2389), + [anon_sym_nullptr] = ACTIONS(2389), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2389), + [anon_sym_decltype] = ACTIONS(2389), + [anon_sym_explicit] = ACTIONS(2389), + [anon_sym_typename] = ACTIONS(2389), + [anon_sym_template] = ACTIONS(2389), + [anon_sym_operator] = ACTIONS(2389), + [anon_sym_try] = ACTIONS(2389), + [anon_sym_delete] = ACTIONS(2389), + [anon_sym_throw] = ACTIONS(2389), + [anon_sym_namespace] = ACTIONS(2389), + [anon_sym_using] = ACTIONS(2389), + [anon_sym_static_assert] = ACTIONS(2389), + [anon_sym_concept] = ACTIONS(2389), + [anon_sym_co_return] = ACTIONS(2389), + [anon_sym_co_yield] = ACTIONS(2389), + [anon_sym_R_DQUOTE] = ACTIONS(2391), + [anon_sym_LR_DQUOTE] = ACTIONS(2391), + [anon_sym_uR_DQUOTE] = ACTIONS(2391), + [anon_sym_UR_DQUOTE] = ACTIONS(2391), + [anon_sym_u8R_DQUOTE] = ACTIONS(2391), + [anon_sym_co_await] = ACTIONS(2389), + [anon_sym_new] = ACTIONS(2389), + [anon_sym_requires] = ACTIONS(2389), + [sym_this] = ACTIONS(2389), + [sym_alone_macro] = ACTIONS(2391), + [aux_sym_alone_macro_call_token1] = ACTIONS(2389), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2389), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_FORWARD] = ACTIONS(2389), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2389), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2389), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2389), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2389), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_PS_GET] = ACTIONS(2389), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2389), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2389), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2389), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2389), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2389), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2389), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2389), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2389), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2389), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2389), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2389), + [anon_sym_MOZ_COLD] = ACTIONS(2389), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2389), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2389), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2389), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2389), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2389), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2389), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2389), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2389), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2389), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2389), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2389), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2389), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2389), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2389), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2389), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2389), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2389), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2389), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2389), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2389), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_NONNULL] = ACTIONS(2389), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2389), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2389), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2389), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2389), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2389), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_NORETURN] = ACTIONS(2389), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2389), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2389), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2389), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2389), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2389), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2389), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2389), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2389), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2389), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2389), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2389), + [anon_sym_MOZ_RAII] = ACTIONS(2389), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2389), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2389), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2389), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2389), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2389), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2389), + }, + [STATE(502)] = { + [sym_identifier] = ACTIONS(2333), + [aux_sym_preproc_include_token1] = ACTIONS(2333), + [aux_sym_preproc_def_token1] = ACTIONS(2333), + [aux_sym_preproc_if_token1] = ACTIONS(2333), + [aux_sym_preproc_if_token2] = ACTIONS(2333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2333), + [sym_preproc_directive] = ACTIONS(2333), + [anon_sym_LPAREN2] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2333), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym___extension__] = ACTIONS(2333), + [anon_sym_typedef] = ACTIONS(2333), + [anon_sym_virtual] = ACTIONS(2333), + [anon_sym_extern] = ACTIONS(2333), + [anon_sym___attribute__] = ACTIONS(2333), + [anon_sym___attribute] = ACTIONS(2333), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), + [anon_sym___declspec] = ACTIONS(2333), + [anon_sym___based] = ACTIONS(2333), + [anon_sym___cdecl] = ACTIONS(2333), + [anon_sym___clrcall] = ACTIONS(2333), + [anon_sym___stdcall] = ACTIONS(2333), + [anon_sym___fastcall] = ACTIONS(2333), + [anon_sym___thiscall] = ACTIONS(2333), + [anon_sym___vectorcall] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_signed] = ACTIONS(2333), + [anon_sym_unsigned] = ACTIONS(2333), + [anon_sym_long] = ACTIONS(2333), + [anon_sym_short] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_register] = ACTIONS(2333), + [anon_sym_inline] = ACTIONS(2333), + [anon_sym___inline] = ACTIONS(2333), + [anon_sym___inline__] = ACTIONS(2333), + [anon_sym___forceinline] = ACTIONS(2333), + [anon_sym_thread_local] = ACTIONS(2333), + [anon_sym___thread] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [anon_sym_constexpr] = ACTIONS(2333), + [anon_sym_volatile] = ACTIONS(2333), + [anon_sym_restrict] = ACTIONS(2333), + [anon_sym___restrict__] = ACTIONS(2333), + [anon_sym__Atomic] = ACTIONS(2333), + [anon_sym__Noreturn] = ACTIONS(2333), + [anon_sym_noreturn] = ACTIONS(2333), + [anon_sym__Nonnull] = ACTIONS(2333), + [anon_sym_mutable] = ACTIONS(2333), + [anon_sym_constinit] = ACTIONS(2333), + [anon_sym_consteval] = ACTIONS(2333), + [anon_sym_alignas] = ACTIONS(2333), + [anon_sym__Alignas] = ACTIONS(2333), + [sym_primitive_type] = ACTIONS(2333), + [anon_sym_enum] = ACTIONS(2333), + [anon_sym_class] = ACTIONS(2333), + [anon_sym_struct] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_switch] = ACTIONS(2333), + [anon_sym_case] = ACTIONS(2333), + [anon_sym_default] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_break] = ACTIONS(2333), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_goto] = ACTIONS(2333), + [anon_sym___try] = ACTIONS(2333), + [anon_sym___leave] = ACTIONS(2333), + [anon_sym_not] = ACTIONS(2333), + [anon_sym_compl] = ACTIONS(2333), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_sizeof] = ACTIONS(2333), + [anon_sym___alignof__] = ACTIONS(2333), + [anon_sym___alignof] = ACTIONS(2333), + [anon_sym__alignof] = ACTIONS(2333), + [anon_sym_alignof] = ACTIONS(2333), + [anon_sym__Alignof] = ACTIONS(2333), + [anon_sym_offsetof] = ACTIONS(2333), + [anon_sym__Generic] = ACTIONS(2333), + [anon_sym_asm] = ACTIONS(2333), + [anon_sym___asm__] = ACTIONS(2333), + [anon_sym___asm] = ACTIONS(2333), + [sym_number_literal] = ACTIONS(2335), + [anon_sym_L_SQUOTE] = ACTIONS(2335), + [anon_sym_u_SQUOTE] = ACTIONS(2335), + [anon_sym_U_SQUOTE] = ACTIONS(2335), + [anon_sym_u8_SQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_L_DQUOTE] = ACTIONS(2335), + [anon_sym_u_DQUOTE] = ACTIONS(2335), + [anon_sym_U_DQUOTE] = ACTIONS(2335), + [anon_sym_u8_DQUOTE] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym_true] = ACTIONS(2333), + [sym_false] = ACTIONS(2333), + [anon_sym_NULL] = ACTIONS(2333), + [anon_sym_nullptr] = ACTIONS(2333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2333), + [anon_sym_decltype] = ACTIONS(2333), + [anon_sym_explicit] = ACTIONS(2333), + [anon_sym_typename] = ACTIONS(2333), + [anon_sym_template] = ACTIONS(2333), + [anon_sym_operator] = ACTIONS(2333), + [anon_sym_try] = ACTIONS(2333), + [anon_sym_delete] = ACTIONS(2333), + [anon_sym_throw] = ACTIONS(2333), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_using] = ACTIONS(2333), + [anon_sym_static_assert] = ACTIONS(2333), + [anon_sym_concept] = ACTIONS(2333), + [anon_sym_co_return] = ACTIONS(2333), + [anon_sym_co_yield] = ACTIONS(2333), + [anon_sym_R_DQUOTE] = ACTIONS(2335), + [anon_sym_LR_DQUOTE] = ACTIONS(2335), + [anon_sym_uR_DQUOTE] = ACTIONS(2335), + [anon_sym_UR_DQUOTE] = ACTIONS(2335), + [anon_sym_u8R_DQUOTE] = ACTIONS(2335), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2333), + [anon_sym_requires] = ACTIONS(2333), + [sym_this] = ACTIONS(2333), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2333), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_FORWARD] = ACTIONS(2333), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2333), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2333), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2333), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2333), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_PS_GET] = ACTIONS(2333), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2333), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2333), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2333), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2333), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2333), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2333), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2333), + [anon_sym_MOZ_COLD] = ACTIONS(2333), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2333), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2333), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2333), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2333), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2333), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2333), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2333), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2333), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2333), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2333), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2333), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2333), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2333), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_NONNULL] = ACTIONS(2333), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2333), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2333), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2333), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2333), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2333), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2333), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2333), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2333), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2333), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2333), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2333), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2333), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2333), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2333), + [anon_sym_MOZ_RAII] = ACTIONS(2333), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2333), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2333), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2333), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2333), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2333), + }, + [STATE(503)] = { + [sym_identifier] = ACTIONS(2337), + [aux_sym_preproc_include_token1] = ACTIONS(2337), + [aux_sym_preproc_def_token1] = ACTIONS(2337), + [aux_sym_preproc_if_token1] = ACTIONS(2337), + [aux_sym_preproc_if_token2] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), + [sym_preproc_directive] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2339), + [anon_sym_BANG] = ACTIONS(2339), + [anon_sym_TILDE] = ACTIONS(2339), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2339), + [anon_sym_AMP_AMP] = ACTIONS(2339), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym___extension__] = ACTIONS(2337), + [anon_sym_typedef] = ACTIONS(2337), + [anon_sym_virtual] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym___attribute__] = ACTIONS(2337), + [anon_sym___attribute] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2339), + [anon_sym___declspec] = ACTIONS(2337), + [anon_sym___based] = ACTIONS(2337), + [anon_sym___cdecl] = ACTIONS(2337), + [anon_sym___clrcall] = ACTIONS(2337), + [anon_sym___stdcall] = ACTIONS(2337), + [anon_sym___fastcall] = ACTIONS(2337), + [anon_sym___thiscall] = ACTIONS(2337), + [anon_sym___vectorcall] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2339), + [anon_sym_signed] = ACTIONS(2337), + [anon_sym_unsigned] = ACTIONS(2337), + [anon_sym_long] = ACTIONS(2337), + [anon_sym_short] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_inline] = ACTIONS(2337), + [anon_sym___inline] = ACTIONS(2337), + [anon_sym___inline__] = ACTIONS(2337), + [anon_sym___forceinline] = ACTIONS(2337), + [anon_sym_thread_local] = ACTIONS(2337), + [anon_sym___thread] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_constexpr] = ACTIONS(2337), + [anon_sym_volatile] = ACTIONS(2337), + [anon_sym_restrict] = ACTIONS(2337), + [anon_sym___restrict__] = ACTIONS(2337), + [anon_sym__Atomic] = ACTIONS(2337), + [anon_sym__Noreturn] = ACTIONS(2337), + [anon_sym_noreturn] = ACTIONS(2337), + [anon_sym__Nonnull] = ACTIONS(2337), + [anon_sym_mutable] = ACTIONS(2337), + [anon_sym_constinit] = ACTIONS(2337), + [anon_sym_consteval] = ACTIONS(2337), + [anon_sym_alignas] = ACTIONS(2337), + [anon_sym__Alignas] = ACTIONS(2337), + [sym_primitive_type] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_case] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_goto] = ACTIONS(2337), + [anon_sym___try] = ACTIONS(2337), + [anon_sym___leave] = ACTIONS(2337), + [anon_sym_not] = ACTIONS(2337), + [anon_sym_compl] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2339), + [anon_sym_PLUS_PLUS] = ACTIONS(2339), + [anon_sym_sizeof] = ACTIONS(2337), + [anon_sym___alignof__] = ACTIONS(2337), + [anon_sym___alignof] = ACTIONS(2337), + [anon_sym__alignof] = ACTIONS(2337), + [anon_sym_alignof] = ACTIONS(2337), + [anon_sym__Alignof] = ACTIONS(2337), + [anon_sym_offsetof] = ACTIONS(2337), + [anon_sym__Generic] = ACTIONS(2337), + [anon_sym_asm] = ACTIONS(2337), + [anon_sym___asm__] = ACTIONS(2337), + [anon_sym___asm] = ACTIONS(2337), + [sym_number_literal] = ACTIONS(2339), + [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(2339), + [anon_sym_u_DQUOTE] = ACTIONS(2339), + [anon_sym_U_DQUOTE] = ACTIONS(2339), + [anon_sym_u8_DQUOTE] = ACTIONS(2339), + [anon_sym_DQUOTE] = ACTIONS(2339), + [sym_true] = ACTIONS(2337), + [sym_false] = ACTIONS(2337), + [anon_sym_NULL] = ACTIONS(2337), + [anon_sym_nullptr] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2337), + [anon_sym_decltype] = ACTIONS(2337), + [anon_sym_explicit] = ACTIONS(2337), + [anon_sym_typename] = ACTIONS(2337), + [anon_sym_template] = ACTIONS(2337), + [anon_sym_operator] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_delete] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [anon_sym_static_assert] = ACTIONS(2337), + [anon_sym_concept] = ACTIONS(2337), + [anon_sym_co_return] = ACTIONS(2337), + [anon_sym_co_yield] = ACTIONS(2337), + [anon_sym_R_DQUOTE] = ACTIONS(2339), + [anon_sym_LR_DQUOTE] = ACTIONS(2339), + [anon_sym_uR_DQUOTE] = ACTIONS(2339), + [anon_sym_UR_DQUOTE] = ACTIONS(2339), + [anon_sym_u8R_DQUOTE] = ACTIONS(2339), + [anon_sym_co_await] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_requires] = ACTIONS(2337), + [sym_this] = ACTIONS(2337), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2337), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_FORWARD] = ACTIONS(2337), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2337), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2337), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2337), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2337), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_PS_GET] = ACTIONS(2337), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2337), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2337), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2337), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2337), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2337), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2337), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2337), + [anon_sym_MOZ_COLD] = ACTIONS(2337), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2337), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2337), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2337), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2337), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2337), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2337), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2337), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2337), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2337), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2337), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2337), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2337), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2337), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_NONNULL] = ACTIONS(2337), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2337), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2337), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2337), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2337), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2337), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2337), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2337), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2337), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2337), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2337), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2337), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2337), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2337), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2337), + [anon_sym_MOZ_RAII] = ACTIONS(2337), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2337), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2337), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2337), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2337), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2337), + }, + [STATE(504)] = { + [sym_identifier] = ACTIONS(2341), + [aux_sym_preproc_include_token1] = ACTIONS(2341), + [aux_sym_preproc_def_token1] = ACTIONS(2341), + [aux_sym_preproc_if_token1] = ACTIONS(2341), + [aux_sym_preproc_if_token2] = ACTIONS(2341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2341), + [sym_preproc_directive] = ACTIONS(2341), + [anon_sym_LPAREN2] = ACTIONS(2343), + [anon_sym_BANG] = ACTIONS(2343), + [anon_sym_TILDE] = ACTIONS(2343), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_PLUS] = ACTIONS(2341), + [anon_sym_STAR] = ACTIONS(2343), + [anon_sym_AMP_AMP] = ACTIONS(2343), + [anon_sym_AMP] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2343), + [anon_sym___extension__] = ACTIONS(2341), + [anon_sym_typedef] = ACTIONS(2341), + [anon_sym_virtual] = ACTIONS(2341), + [anon_sym_extern] = ACTIONS(2341), + [anon_sym___attribute__] = ACTIONS(2341), + [anon_sym___attribute] = ACTIONS(2341), + [anon_sym_COLON_COLON] = ACTIONS(2343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2343), + [anon_sym___declspec] = ACTIONS(2341), + [anon_sym___based] = ACTIONS(2341), + [anon_sym___cdecl] = ACTIONS(2341), + [anon_sym___clrcall] = ACTIONS(2341), + [anon_sym___stdcall] = ACTIONS(2341), + [anon_sym___fastcall] = ACTIONS(2341), + [anon_sym___thiscall] = ACTIONS(2341), + [anon_sym___vectorcall] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_signed] = ACTIONS(2341), + [anon_sym_unsigned] = ACTIONS(2341), + [anon_sym_long] = ACTIONS(2341), + [anon_sym_short] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2341), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_register] = ACTIONS(2341), + [anon_sym_inline] = ACTIONS(2341), + [anon_sym___inline] = ACTIONS(2341), + [anon_sym___inline__] = ACTIONS(2341), + [anon_sym___forceinline] = ACTIONS(2341), + [anon_sym_thread_local] = ACTIONS(2341), + [anon_sym___thread] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_constexpr] = ACTIONS(2341), + [anon_sym_volatile] = ACTIONS(2341), + [anon_sym_restrict] = ACTIONS(2341), + [anon_sym___restrict__] = ACTIONS(2341), + [anon_sym__Atomic] = ACTIONS(2341), + [anon_sym__Noreturn] = ACTIONS(2341), + [anon_sym_noreturn] = ACTIONS(2341), + [anon_sym__Nonnull] = ACTIONS(2341), + [anon_sym_mutable] = ACTIONS(2341), + [anon_sym_constinit] = ACTIONS(2341), + [anon_sym_consteval] = ACTIONS(2341), + [anon_sym_alignas] = ACTIONS(2341), + [anon_sym__Alignas] = ACTIONS(2341), + [sym_primitive_type] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_class] = ACTIONS(2341), + [anon_sym_struct] = ACTIONS(2341), + [anon_sym_union] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_switch] = ACTIONS(2341), + [anon_sym_case] = ACTIONS(2341), + [anon_sym_default] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [anon_sym_do] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_goto] = ACTIONS(2341), + [anon_sym___try] = ACTIONS(2341), + [anon_sym___leave] = ACTIONS(2341), + [anon_sym_not] = ACTIONS(2341), + [anon_sym_compl] = ACTIONS(2341), + [anon_sym_DASH_DASH] = ACTIONS(2343), + [anon_sym_PLUS_PLUS] = ACTIONS(2343), + [anon_sym_sizeof] = ACTIONS(2341), + [anon_sym___alignof__] = ACTIONS(2341), + [anon_sym___alignof] = ACTIONS(2341), + [anon_sym__alignof] = ACTIONS(2341), + [anon_sym_alignof] = ACTIONS(2341), + [anon_sym__Alignof] = ACTIONS(2341), + [anon_sym_offsetof] = ACTIONS(2341), + [anon_sym__Generic] = ACTIONS(2341), + [anon_sym_asm] = ACTIONS(2341), + [anon_sym___asm__] = ACTIONS(2341), + [anon_sym___asm] = ACTIONS(2341), + [sym_number_literal] = ACTIONS(2343), + [anon_sym_L_SQUOTE] = ACTIONS(2343), + [anon_sym_u_SQUOTE] = ACTIONS(2343), + [anon_sym_U_SQUOTE] = ACTIONS(2343), + [anon_sym_u8_SQUOTE] = ACTIONS(2343), + [anon_sym_SQUOTE] = ACTIONS(2343), + [anon_sym_L_DQUOTE] = ACTIONS(2343), + [anon_sym_u_DQUOTE] = ACTIONS(2343), + [anon_sym_U_DQUOTE] = ACTIONS(2343), + [anon_sym_u8_DQUOTE] = ACTIONS(2343), + [anon_sym_DQUOTE] = ACTIONS(2343), + [sym_true] = ACTIONS(2341), + [sym_false] = ACTIONS(2341), + [anon_sym_NULL] = ACTIONS(2341), + [anon_sym_nullptr] = ACTIONS(2341), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2341), + [anon_sym_decltype] = ACTIONS(2341), + [anon_sym_explicit] = ACTIONS(2341), + [anon_sym_typename] = ACTIONS(2341), + [anon_sym_template] = ACTIONS(2341), + [anon_sym_operator] = ACTIONS(2341), + [anon_sym_try] = ACTIONS(2341), + [anon_sym_delete] = ACTIONS(2341), + [anon_sym_throw] = ACTIONS(2341), + [anon_sym_namespace] = ACTIONS(2341), + [anon_sym_using] = ACTIONS(2341), + [anon_sym_static_assert] = ACTIONS(2341), + [anon_sym_concept] = ACTIONS(2341), + [anon_sym_co_return] = ACTIONS(2341), + [anon_sym_co_yield] = ACTIONS(2341), + [anon_sym_R_DQUOTE] = ACTIONS(2343), + [anon_sym_LR_DQUOTE] = ACTIONS(2343), + [anon_sym_uR_DQUOTE] = ACTIONS(2343), + [anon_sym_UR_DQUOTE] = ACTIONS(2343), + [anon_sym_u8R_DQUOTE] = ACTIONS(2343), + [anon_sym_co_await] = ACTIONS(2341), + [anon_sym_new] = ACTIONS(2341), + [anon_sym_requires] = ACTIONS(2341), + [sym_this] = ACTIONS(2341), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2341), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_FORWARD] = ACTIONS(2341), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2341), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2341), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2341), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2341), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_PS_GET] = ACTIONS(2341), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2341), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2341), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2341), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2341), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2341), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2341), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2341), + [anon_sym_MOZ_COLD] = ACTIONS(2341), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2341), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2341), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2341), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2341), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2341), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2341), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2341), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2341), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2341), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2341), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2341), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2341), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2341), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_NONNULL] = ACTIONS(2341), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2341), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2341), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2341), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2341), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2341), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2341), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2341), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2341), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2341), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2341), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2341), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2341), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2341), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2341), + [anon_sym_MOZ_RAII] = ACTIONS(2341), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2341), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2341), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2341), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2341), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2341), + }, + [STATE(505)] = { + [sym_identifier] = ACTIONS(2345), + [aux_sym_preproc_include_token1] = ACTIONS(2345), + [aux_sym_preproc_def_token1] = ACTIONS(2345), + [aux_sym_preproc_if_token1] = ACTIONS(2345), + [aux_sym_preproc_if_token2] = ACTIONS(2345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2345), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2345), + [sym_preproc_directive] = ACTIONS(2345), + [anon_sym_LPAREN2] = ACTIONS(2347), + [anon_sym_BANG] = ACTIONS(2347), + [anon_sym_TILDE] = ACTIONS(2347), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2345), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_AMP_AMP] = ACTIONS(2347), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2347), + [anon_sym___extension__] = ACTIONS(2345), + [anon_sym_typedef] = ACTIONS(2345), + [anon_sym_virtual] = ACTIONS(2345), + [anon_sym_extern] = ACTIONS(2345), + [anon_sym___attribute__] = ACTIONS(2345), + [anon_sym___attribute] = ACTIONS(2345), + [anon_sym_COLON_COLON] = ACTIONS(2347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2347), + [anon_sym___declspec] = ACTIONS(2345), + [anon_sym___based] = ACTIONS(2345), + [anon_sym___cdecl] = ACTIONS(2345), + [anon_sym___clrcall] = ACTIONS(2345), + [anon_sym___stdcall] = ACTIONS(2345), + [anon_sym___fastcall] = ACTIONS(2345), + [anon_sym___thiscall] = ACTIONS(2345), + [anon_sym___vectorcall] = ACTIONS(2345), + [anon_sym_LBRACE] = ACTIONS(2347), + [anon_sym_signed] = ACTIONS(2345), + [anon_sym_unsigned] = ACTIONS(2345), + [anon_sym_long] = ACTIONS(2345), + [anon_sym_short] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(2345), + [anon_sym_static] = ACTIONS(2345), + [anon_sym_register] = ACTIONS(2345), + [anon_sym_inline] = ACTIONS(2345), + [anon_sym___inline] = ACTIONS(2345), + [anon_sym___inline__] = ACTIONS(2345), + [anon_sym___forceinline] = ACTIONS(2345), + [anon_sym_thread_local] = ACTIONS(2345), + [anon_sym___thread] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_constexpr] = ACTIONS(2345), + [anon_sym_volatile] = ACTIONS(2345), + [anon_sym_restrict] = ACTIONS(2345), + [anon_sym___restrict__] = ACTIONS(2345), + [anon_sym__Atomic] = ACTIONS(2345), + [anon_sym__Noreturn] = ACTIONS(2345), + [anon_sym_noreturn] = ACTIONS(2345), + [anon_sym__Nonnull] = ACTIONS(2345), + [anon_sym_mutable] = ACTIONS(2345), + [anon_sym_constinit] = ACTIONS(2345), + [anon_sym_consteval] = ACTIONS(2345), + [anon_sym_alignas] = ACTIONS(2345), + [anon_sym__Alignas] = ACTIONS(2345), + [sym_primitive_type] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_class] = ACTIONS(2345), + [anon_sym_struct] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_switch] = ACTIONS(2345), + [anon_sym_case] = ACTIONS(2345), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [anon_sym_do] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym___try] = ACTIONS(2345), + [anon_sym___leave] = ACTIONS(2345), + [anon_sym_not] = ACTIONS(2345), + [anon_sym_compl] = ACTIONS(2345), + [anon_sym_DASH_DASH] = ACTIONS(2347), + [anon_sym_PLUS_PLUS] = ACTIONS(2347), + [anon_sym_sizeof] = ACTIONS(2345), + [anon_sym___alignof__] = ACTIONS(2345), + [anon_sym___alignof] = ACTIONS(2345), + [anon_sym__alignof] = ACTIONS(2345), + [anon_sym_alignof] = ACTIONS(2345), + [anon_sym__Alignof] = ACTIONS(2345), + [anon_sym_offsetof] = ACTIONS(2345), + [anon_sym__Generic] = ACTIONS(2345), + [anon_sym_asm] = ACTIONS(2345), + [anon_sym___asm__] = ACTIONS(2345), + [anon_sym___asm] = ACTIONS(2345), + [sym_number_literal] = ACTIONS(2347), + [anon_sym_L_SQUOTE] = ACTIONS(2347), + [anon_sym_u_SQUOTE] = ACTIONS(2347), + [anon_sym_U_SQUOTE] = ACTIONS(2347), + [anon_sym_u8_SQUOTE] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2347), + [anon_sym_L_DQUOTE] = ACTIONS(2347), + [anon_sym_u_DQUOTE] = ACTIONS(2347), + [anon_sym_U_DQUOTE] = ACTIONS(2347), + [anon_sym_u8_DQUOTE] = ACTIONS(2347), + [anon_sym_DQUOTE] = ACTIONS(2347), + [sym_true] = ACTIONS(2345), + [sym_false] = ACTIONS(2345), + [anon_sym_NULL] = ACTIONS(2345), + [anon_sym_nullptr] = ACTIONS(2345), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2345), + [anon_sym_decltype] = ACTIONS(2345), + [anon_sym_explicit] = ACTIONS(2345), + [anon_sym_typename] = ACTIONS(2345), + [anon_sym_template] = ACTIONS(2345), + [anon_sym_operator] = ACTIONS(2345), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_delete] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2345), + [anon_sym_namespace] = ACTIONS(2345), + [anon_sym_using] = ACTIONS(2345), + [anon_sym_static_assert] = ACTIONS(2345), + [anon_sym_concept] = ACTIONS(2345), + [anon_sym_co_return] = ACTIONS(2345), + [anon_sym_co_yield] = ACTIONS(2345), + [anon_sym_R_DQUOTE] = ACTIONS(2347), + [anon_sym_LR_DQUOTE] = ACTIONS(2347), + [anon_sym_uR_DQUOTE] = ACTIONS(2347), + [anon_sym_UR_DQUOTE] = ACTIONS(2347), + [anon_sym_u8R_DQUOTE] = ACTIONS(2347), + [anon_sym_co_await] = ACTIONS(2345), + [anon_sym_new] = ACTIONS(2345), + [anon_sym_requires] = ACTIONS(2345), + [sym_this] = ACTIONS(2345), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2345), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_FORWARD] = ACTIONS(2345), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2345), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2345), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2345), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2345), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_PS_GET] = ACTIONS(2345), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2345), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2345), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2345), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2345), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2345), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2345), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2345), + [anon_sym_MOZ_COLD] = ACTIONS(2345), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2345), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2345), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2345), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2345), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2345), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2345), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2345), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2345), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2345), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2345), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2345), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2345), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2345), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_NONNULL] = ACTIONS(2345), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2345), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2345), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2345), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2345), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2345), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2345), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2345), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2345), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2345), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2345), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2345), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2345), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2345), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2345), + [anon_sym_MOZ_RAII] = ACTIONS(2345), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2345), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2345), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2345), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2345), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2345), + }, + [STATE(506)] = { + [sym_identifier] = ACTIONS(2349), + [aux_sym_preproc_include_token1] = ACTIONS(2349), + [aux_sym_preproc_def_token1] = ACTIONS(2349), + [aux_sym_preproc_if_token1] = ACTIONS(2349), + [aux_sym_preproc_if_token2] = ACTIONS(2349), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2349), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2349), + [sym_preproc_directive] = ACTIONS(2349), + [anon_sym_LPAREN2] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(2351), + [anon_sym_TILDE] = ACTIONS(2351), + [anon_sym_DASH] = ACTIONS(2349), + [anon_sym_PLUS] = ACTIONS(2349), + [anon_sym_STAR] = ACTIONS(2351), + [anon_sym_AMP_AMP] = ACTIONS(2351), + [anon_sym_AMP] = ACTIONS(2349), + [anon_sym_SEMI] = ACTIONS(2351), + [anon_sym___extension__] = ACTIONS(2349), + [anon_sym_typedef] = ACTIONS(2349), + [anon_sym_virtual] = ACTIONS(2349), + [anon_sym_extern] = ACTIONS(2349), + [anon_sym___attribute__] = ACTIONS(2349), + [anon_sym___attribute] = ACTIONS(2349), + [anon_sym_COLON_COLON] = ACTIONS(2351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2351), + [anon_sym___declspec] = ACTIONS(2349), + [anon_sym___based] = ACTIONS(2349), + [anon_sym___cdecl] = ACTIONS(2349), + [anon_sym___clrcall] = ACTIONS(2349), + [anon_sym___stdcall] = ACTIONS(2349), + [anon_sym___fastcall] = ACTIONS(2349), + [anon_sym___thiscall] = ACTIONS(2349), + [anon_sym___vectorcall] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2351), + [anon_sym_signed] = ACTIONS(2349), + [anon_sym_unsigned] = ACTIONS(2349), + [anon_sym_long] = ACTIONS(2349), + [anon_sym_short] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_static] = ACTIONS(2349), + [anon_sym_register] = ACTIONS(2349), + [anon_sym_inline] = ACTIONS(2349), + [anon_sym___inline] = ACTIONS(2349), + [anon_sym___inline__] = ACTIONS(2349), + [anon_sym___forceinline] = ACTIONS(2349), + [anon_sym_thread_local] = ACTIONS(2349), + [anon_sym___thread] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [anon_sym_constexpr] = ACTIONS(2349), + [anon_sym_volatile] = ACTIONS(2349), + [anon_sym_restrict] = ACTIONS(2349), + [anon_sym___restrict__] = ACTIONS(2349), + [anon_sym__Atomic] = ACTIONS(2349), + [anon_sym__Noreturn] = ACTIONS(2349), + [anon_sym_noreturn] = ACTIONS(2349), + [anon_sym__Nonnull] = ACTIONS(2349), + [anon_sym_mutable] = ACTIONS(2349), + [anon_sym_constinit] = ACTIONS(2349), + [anon_sym_consteval] = ACTIONS(2349), + [anon_sym_alignas] = ACTIONS(2349), + [anon_sym__Alignas] = ACTIONS(2349), + [sym_primitive_type] = ACTIONS(2349), + [anon_sym_enum] = ACTIONS(2349), + [anon_sym_class] = ACTIONS(2349), + [anon_sym_struct] = ACTIONS(2349), + [anon_sym_union] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2349), + [anon_sym_switch] = ACTIONS(2349), + [anon_sym_case] = ACTIONS(2349), + [anon_sym_default] = ACTIONS(2349), + [anon_sym_while] = ACTIONS(2349), + [anon_sym_do] = ACTIONS(2349), + [anon_sym_for] = ACTIONS(2349), + [anon_sym_return] = ACTIONS(2349), + [anon_sym_break] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2349), + [anon_sym_goto] = ACTIONS(2349), + [anon_sym___try] = ACTIONS(2349), + [anon_sym___leave] = ACTIONS(2349), + [anon_sym_not] = ACTIONS(2349), + [anon_sym_compl] = ACTIONS(2349), + [anon_sym_DASH_DASH] = ACTIONS(2351), + [anon_sym_PLUS_PLUS] = ACTIONS(2351), + [anon_sym_sizeof] = ACTIONS(2349), + [anon_sym___alignof__] = ACTIONS(2349), + [anon_sym___alignof] = ACTIONS(2349), + [anon_sym__alignof] = ACTIONS(2349), + [anon_sym_alignof] = ACTIONS(2349), + [anon_sym__Alignof] = ACTIONS(2349), + [anon_sym_offsetof] = ACTIONS(2349), + [anon_sym__Generic] = ACTIONS(2349), + [anon_sym_asm] = ACTIONS(2349), + [anon_sym___asm__] = ACTIONS(2349), + [anon_sym___asm] = ACTIONS(2349), + [sym_number_literal] = ACTIONS(2351), + [anon_sym_L_SQUOTE] = ACTIONS(2351), + [anon_sym_u_SQUOTE] = ACTIONS(2351), + [anon_sym_U_SQUOTE] = ACTIONS(2351), + [anon_sym_u8_SQUOTE] = ACTIONS(2351), + [anon_sym_SQUOTE] = ACTIONS(2351), + [anon_sym_L_DQUOTE] = ACTIONS(2351), + [anon_sym_u_DQUOTE] = ACTIONS(2351), + [anon_sym_U_DQUOTE] = ACTIONS(2351), + [anon_sym_u8_DQUOTE] = ACTIONS(2351), + [anon_sym_DQUOTE] = ACTIONS(2351), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [anon_sym_NULL] = ACTIONS(2349), + [anon_sym_nullptr] = ACTIONS(2349), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2349), + [anon_sym_decltype] = ACTIONS(2349), + [anon_sym_explicit] = ACTIONS(2349), + [anon_sym_typename] = ACTIONS(2349), + [anon_sym_template] = ACTIONS(2349), + [anon_sym_operator] = ACTIONS(2349), + [anon_sym_try] = ACTIONS(2349), + [anon_sym_delete] = ACTIONS(2349), + [anon_sym_throw] = ACTIONS(2349), + [anon_sym_namespace] = ACTIONS(2349), + [anon_sym_using] = ACTIONS(2349), + [anon_sym_static_assert] = ACTIONS(2349), + [anon_sym_concept] = ACTIONS(2349), + [anon_sym_co_return] = ACTIONS(2349), + [anon_sym_co_yield] = ACTIONS(2349), + [anon_sym_R_DQUOTE] = ACTIONS(2351), + [anon_sym_LR_DQUOTE] = ACTIONS(2351), + [anon_sym_uR_DQUOTE] = ACTIONS(2351), + [anon_sym_UR_DQUOTE] = ACTIONS(2351), + [anon_sym_u8R_DQUOTE] = ACTIONS(2351), + [anon_sym_co_await] = ACTIONS(2349), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2349), + [sym_this] = ACTIONS(2349), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2349), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_FORWARD] = ACTIONS(2349), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2349), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2349), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2349), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2349), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_PS_GET] = ACTIONS(2349), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2349), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2349), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2349), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2349), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2349), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2349), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2349), + [anon_sym_MOZ_COLD] = ACTIONS(2349), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2349), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2349), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2349), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2349), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2349), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2349), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2349), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2349), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2349), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2349), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2349), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2349), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2349), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_NONNULL] = ACTIONS(2349), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2349), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2349), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2349), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2349), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2349), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2349), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2349), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2349), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2349), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2349), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2349), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2349), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2349), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2349), + [anon_sym_MOZ_RAII] = ACTIONS(2349), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2349), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2349), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2349), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2349), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2349), + }, + [STATE(507)] = { + [sym_identifier] = ACTIONS(2353), + [aux_sym_preproc_include_token1] = ACTIONS(2353), + [aux_sym_preproc_def_token1] = ACTIONS(2353), + [aux_sym_preproc_if_token1] = ACTIONS(2353), + [aux_sym_preproc_if_token2] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2353), + [sym_preproc_directive] = ACTIONS(2353), + [anon_sym_LPAREN2] = ACTIONS(2355), + [anon_sym_BANG] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_PLUS] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym___extension__] = ACTIONS(2353), + [anon_sym_typedef] = ACTIONS(2353), + [anon_sym_virtual] = ACTIONS(2353), + [anon_sym_extern] = ACTIONS(2353), + [anon_sym___attribute__] = ACTIONS(2353), + [anon_sym___attribute] = ACTIONS(2353), + [anon_sym_COLON_COLON] = ACTIONS(2355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2355), + [anon_sym___declspec] = ACTIONS(2353), + [anon_sym___based] = ACTIONS(2353), + [anon_sym___cdecl] = ACTIONS(2353), + [anon_sym___clrcall] = ACTIONS(2353), + [anon_sym___stdcall] = ACTIONS(2353), + [anon_sym___fastcall] = ACTIONS(2353), + [anon_sym___thiscall] = ACTIONS(2353), + [anon_sym___vectorcall] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2353), + [anon_sym_unsigned] = ACTIONS(2353), + [anon_sym_long] = ACTIONS(2353), + [anon_sym_short] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_register] = ACTIONS(2353), + [anon_sym_inline] = ACTIONS(2353), + [anon_sym___inline] = ACTIONS(2353), + [anon_sym___inline__] = ACTIONS(2353), + [anon_sym___forceinline] = ACTIONS(2353), + [anon_sym_thread_local] = ACTIONS(2353), + [anon_sym___thread] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_constexpr] = ACTIONS(2353), + [anon_sym_volatile] = ACTIONS(2353), + [anon_sym_restrict] = ACTIONS(2353), + [anon_sym___restrict__] = ACTIONS(2353), + [anon_sym__Atomic] = ACTIONS(2353), + [anon_sym__Noreturn] = ACTIONS(2353), + [anon_sym_noreturn] = ACTIONS(2353), + [anon_sym__Nonnull] = ACTIONS(2353), + [anon_sym_mutable] = ACTIONS(2353), + [anon_sym_constinit] = ACTIONS(2353), + [anon_sym_consteval] = ACTIONS(2353), + [anon_sym_alignas] = ACTIONS(2353), + [anon_sym__Alignas] = ACTIONS(2353), + [sym_primitive_type] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_class] = ACTIONS(2353), + [anon_sym_struct] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_switch] = ACTIONS(2353), + [anon_sym_case] = ACTIONS(2353), + [anon_sym_default] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_do] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_goto] = ACTIONS(2353), + [anon_sym___try] = ACTIONS(2353), + [anon_sym___leave] = ACTIONS(2353), + [anon_sym_not] = ACTIONS(2353), + [anon_sym_compl] = ACTIONS(2353), + [anon_sym_DASH_DASH] = ACTIONS(2355), + [anon_sym_PLUS_PLUS] = ACTIONS(2355), + [anon_sym_sizeof] = ACTIONS(2353), + [anon_sym___alignof__] = ACTIONS(2353), + [anon_sym___alignof] = ACTIONS(2353), + [anon_sym__alignof] = ACTIONS(2353), + [anon_sym_alignof] = ACTIONS(2353), + [anon_sym__Alignof] = ACTIONS(2353), + [anon_sym_offsetof] = ACTIONS(2353), + [anon_sym__Generic] = ACTIONS(2353), + [anon_sym_asm] = ACTIONS(2353), + [anon_sym___asm__] = ACTIONS(2353), + [anon_sym___asm] = ACTIONS(2353), + [sym_number_literal] = ACTIONS(2355), + [anon_sym_L_SQUOTE] = ACTIONS(2355), + [anon_sym_u_SQUOTE] = ACTIONS(2355), + [anon_sym_U_SQUOTE] = ACTIONS(2355), + [anon_sym_u8_SQUOTE] = ACTIONS(2355), + [anon_sym_SQUOTE] = ACTIONS(2355), + [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(2353), + [sym_false] = ACTIONS(2353), + [anon_sym_NULL] = ACTIONS(2353), + [anon_sym_nullptr] = ACTIONS(2353), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2353), + [anon_sym_decltype] = ACTIONS(2353), + [anon_sym_explicit] = ACTIONS(2353), + [anon_sym_typename] = ACTIONS(2353), + [anon_sym_template] = ACTIONS(2353), + [anon_sym_operator] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2353), + [anon_sym_delete] = ACTIONS(2353), + [anon_sym_throw] = ACTIONS(2353), + [anon_sym_namespace] = ACTIONS(2353), + [anon_sym_using] = ACTIONS(2353), + [anon_sym_static_assert] = ACTIONS(2353), + [anon_sym_concept] = ACTIONS(2353), + [anon_sym_co_return] = ACTIONS(2353), + [anon_sym_co_yield] = ACTIONS(2353), + [anon_sym_R_DQUOTE] = ACTIONS(2355), + [anon_sym_LR_DQUOTE] = ACTIONS(2355), + [anon_sym_uR_DQUOTE] = ACTIONS(2355), + [anon_sym_UR_DQUOTE] = ACTIONS(2355), + [anon_sym_u8R_DQUOTE] = ACTIONS(2355), + [anon_sym_co_await] = ACTIONS(2353), + [anon_sym_new] = ACTIONS(2353), + [anon_sym_requires] = ACTIONS(2353), + [sym_this] = ACTIONS(2353), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2353), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_FORWARD] = ACTIONS(2353), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2353), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2353), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2353), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2353), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_PS_GET] = ACTIONS(2353), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2353), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2353), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2353), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2353), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2353), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2353), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2353), + [anon_sym_MOZ_COLD] = ACTIONS(2353), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2353), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2353), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2353), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2353), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2353), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2353), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2353), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2353), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2353), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2353), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2353), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2353), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2353), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_NONNULL] = ACTIONS(2353), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2353), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2353), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2353), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2353), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2353), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2353), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2353), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2353), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2353), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2353), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2353), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2353), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2353), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2353), + [anon_sym_MOZ_RAII] = ACTIONS(2353), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2353), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2353), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2353), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2353), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2353), + }, + [STATE(508)] = { + [sym_identifier] = ACTIONS(2357), + [aux_sym_preproc_include_token1] = ACTIONS(2357), + [aux_sym_preproc_def_token1] = ACTIONS(2357), + [aux_sym_preproc_if_token1] = ACTIONS(2357), + [aux_sym_preproc_if_token2] = ACTIONS(2357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2357), + [sym_preproc_directive] = ACTIONS(2357), + [anon_sym_LPAREN2] = ACTIONS(2359), + [anon_sym_BANG] = ACTIONS(2359), + [anon_sym_TILDE] = ACTIONS(2359), + [anon_sym_DASH] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2359), + [anon_sym_AMP_AMP] = ACTIONS(2359), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2359), + [anon_sym___extension__] = ACTIONS(2357), + [anon_sym_typedef] = ACTIONS(2357), + [anon_sym_virtual] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2357), + [anon_sym___attribute__] = ACTIONS(2357), + [anon_sym___attribute] = ACTIONS(2357), + [anon_sym_COLON_COLON] = ACTIONS(2359), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2359), + [anon_sym___declspec] = ACTIONS(2357), + [anon_sym___based] = ACTIONS(2357), + [anon_sym___cdecl] = ACTIONS(2357), + [anon_sym___clrcall] = ACTIONS(2357), + [anon_sym___stdcall] = ACTIONS(2357), + [anon_sym___fastcall] = ACTIONS(2357), + [anon_sym___thiscall] = ACTIONS(2357), + [anon_sym___vectorcall] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_signed] = ACTIONS(2357), + [anon_sym_unsigned] = ACTIONS(2357), + [anon_sym_long] = ACTIONS(2357), + [anon_sym_short] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_register] = ACTIONS(2357), + [anon_sym_inline] = ACTIONS(2357), + [anon_sym___inline] = ACTIONS(2357), + [anon_sym___inline__] = ACTIONS(2357), + [anon_sym___forceinline] = ACTIONS(2357), + [anon_sym_thread_local] = ACTIONS(2357), + [anon_sym___thread] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_constexpr] = ACTIONS(2357), + [anon_sym_volatile] = ACTIONS(2357), + [anon_sym_restrict] = ACTIONS(2357), + [anon_sym___restrict__] = ACTIONS(2357), + [anon_sym__Atomic] = ACTIONS(2357), + [anon_sym__Noreturn] = ACTIONS(2357), + [anon_sym_noreturn] = ACTIONS(2357), + [anon_sym__Nonnull] = ACTIONS(2357), + [anon_sym_mutable] = ACTIONS(2357), + [anon_sym_constinit] = ACTIONS(2357), + [anon_sym_consteval] = ACTIONS(2357), + [anon_sym_alignas] = ACTIONS(2357), + [anon_sym__Alignas] = ACTIONS(2357), + [sym_primitive_type] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_class] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_switch] = ACTIONS(2357), + [anon_sym_case] = ACTIONS(2357), + [anon_sym_default] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [anon_sym_do] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_goto] = ACTIONS(2357), + [anon_sym___try] = ACTIONS(2357), + [anon_sym___leave] = ACTIONS(2357), + [anon_sym_not] = ACTIONS(2357), + [anon_sym_compl] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2359), + [anon_sym_PLUS_PLUS] = ACTIONS(2359), + [anon_sym_sizeof] = ACTIONS(2357), + [anon_sym___alignof__] = ACTIONS(2357), + [anon_sym___alignof] = ACTIONS(2357), + [anon_sym__alignof] = ACTIONS(2357), + [anon_sym_alignof] = ACTIONS(2357), + [anon_sym__Alignof] = ACTIONS(2357), + [anon_sym_offsetof] = ACTIONS(2357), + [anon_sym__Generic] = ACTIONS(2357), + [anon_sym_asm] = ACTIONS(2357), + [anon_sym___asm__] = ACTIONS(2357), + [anon_sym___asm] = ACTIONS(2357), + [sym_number_literal] = ACTIONS(2359), + [anon_sym_L_SQUOTE] = ACTIONS(2359), + [anon_sym_u_SQUOTE] = ACTIONS(2359), + [anon_sym_U_SQUOTE] = ACTIONS(2359), + [anon_sym_u8_SQUOTE] = ACTIONS(2359), + [anon_sym_SQUOTE] = ACTIONS(2359), + [anon_sym_L_DQUOTE] = ACTIONS(2359), + [anon_sym_u_DQUOTE] = ACTIONS(2359), + [anon_sym_U_DQUOTE] = ACTIONS(2359), + [anon_sym_u8_DQUOTE] = ACTIONS(2359), + [anon_sym_DQUOTE] = ACTIONS(2359), + [sym_true] = ACTIONS(2357), + [sym_false] = ACTIONS(2357), + [anon_sym_NULL] = ACTIONS(2357), + [anon_sym_nullptr] = ACTIONS(2357), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2357), + [anon_sym_decltype] = ACTIONS(2357), + [anon_sym_explicit] = ACTIONS(2357), + [anon_sym_typename] = ACTIONS(2357), + [anon_sym_template] = ACTIONS(2357), + [anon_sym_operator] = ACTIONS(2357), + [anon_sym_try] = ACTIONS(2357), + [anon_sym_delete] = ACTIONS(2357), + [anon_sym_throw] = ACTIONS(2357), + [anon_sym_namespace] = ACTIONS(2357), + [anon_sym_using] = ACTIONS(2357), + [anon_sym_static_assert] = ACTIONS(2357), + [anon_sym_concept] = ACTIONS(2357), + [anon_sym_co_return] = ACTIONS(2357), + [anon_sym_co_yield] = ACTIONS(2357), + [anon_sym_R_DQUOTE] = ACTIONS(2359), + [anon_sym_LR_DQUOTE] = ACTIONS(2359), + [anon_sym_uR_DQUOTE] = ACTIONS(2359), + [anon_sym_UR_DQUOTE] = ACTIONS(2359), + [anon_sym_u8R_DQUOTE] = ACTIONS(2359), + [anon_sym_co_await] = ACTIONS(2357), + [anon_sym_new] = ACTIONS(2357), + [anon_sym_requires] = ACTIONS(2357), + [sym_this] = ACTIONS(2357), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2357), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_FORWARD] = ACTIONS(2357), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2357), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2357), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2357), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2357), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_PS_GET] = ACTIONS(2357), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2357), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2357), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2357), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2357), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2357), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2357), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2357), + [anon_sym_MOZ_COLD] = ACTIONS(2357), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2357), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2357), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2357), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2357), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2357), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2357), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2357), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2357), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2357), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2357), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2357), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2357), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2357), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_NONNULL] = ACTIONS(2357), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2357), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2357), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2357), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2357), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2357), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2357), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2357), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2357), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2357), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2357), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2357), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2357), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2357), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2357), + [anon_sym_MOZ_RAII] = ACTIONS(2357), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2357), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2357), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2357), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2357), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2357), + }, + [STATE(509)] = { + [ts_builtin_sym_end] = ACTIONS(2398), + [sym_identifier] = ACTIONS(2396), + [aux_sym_preproc_include_token1] = ACTIONS(2396), + [aux_sym_preproc_def_token1] = ACTIONS(2396), + [aux_sym_preproc_if_token1] = ACTIONS(2396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2396), + [sym_preproc_directive] = ACTIONS(2396), + [anon_sym_LPAREN2] = ACTIONS(2398), + [anon_sym_BANG] = ACTIONS(2398), + [anon_sym_TILDE] = ACTIONS(2398), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym___extension__] = ACTIONS(2396), + [anon_sym_typedef] = ACTIONS(2396), + [anon_sym_virtual] = ACTIONS(2396), + [anon_sym_extern] = ACTIONS(2396), + [anon_sym___attribute__] = ACTIONS(2396), + [anon_sym___attribute] = ACTIONS(2396), + [anon_sym_COLON_COLON] = ACTIONS(2398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2398), + [anon_sym___declspec] = ACTIONS(2396), + [anon_sym___based] = ACTIONS(2396), + [anon_sym___cdecl] = ACTIONS(2396), + [anon_sym___clrcall] = ACTIONS(2396), + [anon_sym___stdcall] = ACTIONS(2396), + [anon_sym___fastcall] = ACTIONS(2396), + [anon_sym___thiscall] = ACTIONS(2396), + [anon_sym___vectorcall] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_signed] = ACTIONS(2396), + [anon_sym_unsigned] = ACTIONS(2396), + [anon_sym_long] = ACTIONS(2396), + [anon_sym_short] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_register] = ACTIONS(2396), + [anon_sym_inline] = ACTIONS(2396), + [anon_sym___inline] = ACTIONS(2396), + [anon_sym___inline__] = ACTIONS(2396), + [anon_sym___forceinline] = ACTIONS(2396), + [anon_sym_thread_local] = ACTIONS(2396), + [anon_sym___thread] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_constexpr] = ACTIONS(2396), + [anon_sym_volatile] = ACTIONS(2396), + [anon_sym_restrict] = ACTIONS(2396), + [anon_sym___restrict__] = ACTIONS(2396), + [anon_sym__Atomic] = ACTIONS(2396), + [anon_sym__Noreturn] = ACTIONS(2396), + [anon_sym_noreturn] = ACTIONS(2396), + [anon_sym__Nonnull] = ACTIONS(2396), + [anon_sym_mutable] = ACTIONS(2396), + [anon_sym_constinit] = ACTIONS(2396), + [anon_sym_consteval] = ACTIONS(2396), + [anon_sym_alignas] = ACTIONS(2396), + [anon_sym__Alignas] = ACTIONS(2396), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_struct] = ACTIONS(2396), + [anon_sym_union] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_case] = ACTIONS(2396), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_goto] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2396), + [anon_sym_compl] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2398), + [anon_sym_PLUS_PLUS] = ACTIONS(2398), + [anon_sym_sizeof] = ACTIONS(2396), + [anon_sym___alignof__] = ACTIONS(2396), + [anon_sym___alignof] = ACTIONS(2396), + [anon_sym__alignof] = ACTIONS(2396), + [anon_sym_alignof] = ACTIONS(2396), + [anon_sym__Alignof] = ACTIONS(2396), + [anon_sym_offsetof] = ACTIONS(2396), + [anon_sym__Generic] = ACTIONS(2396), + [anon_sym_asm] = ACTIONS(2396), + [anon_sym___asm__] = ACTIONS(2396), + [anon_sym___asm] = ACTIONS(2396), + [sym_number_literal] = ACTIONS(2398), + [anon_sym_L_SQUOTE] = ACTIONS(2398), + [anon_sym_u_SQUOTE] = ACTIONS(2398), + [anon_sym_U_SQUOTE] = ACTIONS(2398), + [anon_sym_u8_SQUOTE] = ACTIONS(2398), + [anon_sym_SQUOTE] = ACTIONS(2398), + [anon_sym_L_DQUOTE] = ACTIONS(2398), + [anon_sym_u_DQUOTE] = ACTIONS(2398), + [anon_sym_U_DQUOTE] = ACTIONS(2398), + [anon_sym_u8_DQUOTE] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [anon_sym_NULL] = ACTIONS(2396), + [anon_sym_nullptr] = ACTIONS(2396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2396), + [anon_sym_decltype] = ACTIONS(2396), + [anon_sym_explicit] = ACTIONS(2396), + [anon_sym_typename] = ACTIONS(2396), + [anon_sym_template] = ACTIONS(2396), + [anon_sym_operator] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_static_assert] = ACTIONS(2396), + [anon_sym_concept] = ACTIONS(2396), + [anon_sym_co_return] = ACTIONS(2396), + [anon_sym_co_yield] = ACTIONS(2396), + [anon_sym_R_DQUOTE] = ACTIONS(2398), + [anon_sym_LR_DQUOTE] = ACTIONS(2398), + [anon_sym_uR_DQUOTE] = ACTIONS(2398), + [anon_sym_UR_DQUOTE] = ACTIONS(2398), + [anon_sym_u8R_DQUOTE] = ACTIONS(2398), + [anon_sym_co_await] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_requires] = ACTIONS(2396), + [sym_this] = ACTIONS(2396), + [sym_alone_macro] = ACTIONS(2398), + [aux_sym_alone_macro_call_token1] = ACTIONS(2396), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2396), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_FORWARD] = ACTIONS(2396), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2396), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2396), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2396), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2396), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_PS_GET] = ACTIONS(2396), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2396), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2396), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2396), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2396), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2396), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2396), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2396), + [anon_sym_MOZ_COLD] = ACTIONS(2396), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2396), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2396), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2396), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2396), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2396), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2396), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2396), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2396), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2396), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2396), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2396), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2396), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2396), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_NONNULL] = ACTIONS(2396), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2396), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2396), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2396), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2396), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2396), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2396), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2396), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2396), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2396), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2396), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2396), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2396), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2396), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2396), + [anon_sym_MOZ_RAII] = ACTIONS(2396), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2396), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2396), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2396), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2396), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2396), + }, + [STATE(510)] = { + [ts_builtin_sym_end] = ACTIONS(2414), + [sym_identifier] = ACTIONS(2412), + [aux_sym_preproc_include_token1] = ACTIONS(2412), + [aux_sym_preproc_def_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2412), + [sym_preproc_directive] = ACTIONS(2412), + [anon_sym_LPAREN2] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym___extension__] = ACTIONS(2412), + [anon_sym_typedef] = ACTIONS(2412), + [anon_sym_virtual] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym___attribute__] = ACTIONS(2412), + [anon_sym___attribute] = ACTIONS(2412), + [anon_sym_COLON_COLON] = ACTIONS(2414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2414), + [anon_sym___declspec] = ACTIONS(2412), + [anon_sym___based] = ACTIONS(2412), + [anon_sym___cdecl] = ACTIONS(2412), + [anon_sym___clrcall] = ACTIONS(2412), + [anon_sym___stdcall] = ACTIONS(2412), + [anon_sym___fastcall] = ACTIONS(2412), + [anon_sym___thiscall] = ACTIONS(2412), + [anon_sym___vectorcall] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_signed] = ACTIONS(2412), + [anon_sym_unsigned] = ACTIONS(2412), + [anon_sym_long] = ACTIONS(2412), + [anon_sym_short] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym___inline] = ACTIONS(2412), + [anon_sym___inline__] = ACTIONS(2412), + [anon_sym___forceinline] = ACTIONS(2412), + [anon_sym_thread_local] = ACTIONS(2412), + [anon_sym___thread] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_constexpr] = ACTIONS(2412), + [anon_sym_volatile] = ACTIONS(2412), + [anon_sym_restrict] = ACTIONS(2412), + [anon_sym___restrict__] = ACTIONS(2412), + [anon_sym__Atomic] = ACTIONS(2412), + [anon_sym__Noreturn] = ACTIONS(2412), + [anon_sym_noreturn] = ACTIONS(2412), + [anon_sym__Nonnull] = ACTIONS(2412), + [anon_sym_mutable] = ACTIONS(2412), + [anon_sym_constinit] = ACTIONS(2412), + [anon_sym_consteval] = ACTIONS(2412), + [anon_sym_alignas] = ACTIONS(2412), + [anon_sym__Alignas] = ACTIONS(2412), + [sym_primitive_type] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_class] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_switch] = ACTIONS(2412), + [anon_sym_case] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_do] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_goto] = ACTIONS(2412), + [anon_sym_not] = ACTIONS(2412), + [anon_sym_compl] = ACTIONS(2412), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_sizeof] = ACTIONS(2412), + [anon_sym___alignof__] = ACTIONS(2412), + [anon_sym___alignof] = ACTIONS(2412), + [anon_sym__alignof] = ACTIONS(2412), + [anon_sym_alignof] = ACTIONS(2412), + [anon_sym__Alignof] = ACTIONS(2412), + [anon_sym_offsetof] = ACTIONS(2412), + [anon_sym__Generic] = ACTIONS(2412), + [anon_sym_asm] = ACTIONS(2412), + [anon_sym___asm__] = ACTIONS(2412), + [anon_sym___asm] = ACTIONS(2412), + [sym_number_literal] = ACTIONS(2414), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2412), + [sym_false] = ACTIONS(2412), + [anon_sym_NULL] = ACTIONS(2412), + [anon_sym_nullptr] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2412), + [anon_sym_decltype] = ACTIONS(2412), + [anon_sym_explicit] = ACTIONS(2412), + [anon_sym_typename] = ACTIONS(2412), + [anon_sym_template] = ACTIONS(2412), + [anon_sym_operator] = ACTIONS(2412), + [anon_sym_try] = ACTIONS(2412), + [anon_sym_delete] = ACTIONS(2412), + [anon_sym_throw] = ACTIONS(2412), + [anon_sym_namespace] = ACTIONS(2412), + [anon_sym_using] = ACTIONS(2412), + [anon_sym_static_assert] = ACTIONS(2412), + [anon_sym_concept] = ACTIONS(2412), + [anon_sym_co_return] = ACTIONS(2412), + [anon_sym_co_yield] = ACTIONS(2412), + [anon_sym_R_DQUOTE] = ACTIONS(2414), + [anon_sym_LR_DQUOTE] = ACTIONS(2414), + [anon_sym_uR_DQUOTE] = ACTIONS(2414), + [anon_sym_UR_DQUOTE] = ACTIONS(2414), + [anon_sym_u8R_DQUOTE] = ACTIONS(2414), + [anon_sym_co_await] = ACTIONS(2412), + [anon_sym_new] = ACTIONS(2412), + [anon_sym_requires] = ACTIONS(2412), + [sym_this] = ACTIONS(2412), + [sym_alone_macro] = ACTIONS(2414), + [aux_sym_alone_macro_call_token1] = ACTIONS(2412), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2412), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_FORWARD] = ACTIONS(2412), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2412), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2412), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2412), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_PS_GET] = ACTIONS(2412), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2412), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2412), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2412), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2412), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2412), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2412), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2412), + [anon_sym_MOZ_COLD] = ACTIONS(2412), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2412), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2412), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2412), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2412), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2412), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2412), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2412), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2412), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2412), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2412), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2412), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2412), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2412), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_NONNULL] = ACTIONS(2412), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2412), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2412), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2412), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2412), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2412), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2412), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2412), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2412), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2412), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2412), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2412), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2412), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2412), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2412), + [anon_sym_MOZ_RAII] = ACTIONS(2412), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2412), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2412), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2412), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2412), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2412), + }, + [STATE(511)] = { + [sym_identifier] = ACTIONS(2408), + [aux_sym_preproc_include_token1] = ACTIONS(2408), + [aux_sym_preproc_def_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token2] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_LPAREN2] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_AMP_AMP] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2408), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym___extension__] = ACTIONS(2408), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_virtual] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym___attribute__] = ACTIONS(2408), + [anon_sym___attribute] = ACTIONS(2408), + [anon_sym_COLON_COLON] = ACTIONS(2410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2410), + [anon_sym___declspec] = ACTIONS(2408), + [anon_sym___based] = ACTIONS(2408), + [anon_sym___cdecl] = ACTIONS(2408), + [anon_sym___clrcall] = ACTIONS(2408), + [anon_sym___stdcall] = ACTIONS(2408), + [anon_sym___fastcall] = ACTIONS(2408), + [anon_sym___thiscall] = ACTIONS(2408), + [anon_sym___vectorcall] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_signed] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym___inline] = ACTIONS(2408), + [anon_sym___inline__] = ACTIONS(2408), + [anon_sym___forceinline] = ACTIONS(2408), + [anon_sym_thread_local] = ACTIONS(2408), + [anon_sym___thread] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_constexpr] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym___restrict__] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym__Noreturn] = ACTIONS(2408), + [anon_sym_noreturn] = ACTIONS(2408), + [anon_sym__Nonnull] = ACTIONS(2408), + [anon_sym_mutable] = ACTIONS(2408), + [anon_sym_constinit] = ACTIONS(2408), + [anon_sym_consteval] = ACTIONS(2408), + [anon_sym_alignas] = ACTIONS(2408), + [anon_sym__Alignas] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_class] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_goto] = ACTIONS(2408), + [anon_sym___try] = ACTIONS(2408), + [anon_sym___leave] = ACTIONS(2408), + [anon_sym_not] = ACTIONS(2408), + [anon_sym_compl] = ACTIONS(2408), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_sizeof] = ACTIONS(2408), + [anon_sym___alignof__] = ACTIONS(2408), + [anon_sym___alignof] = ACTIONS(2408), + [anon_sym__alignof] = ACTIONS(2408), + [anon_sym_alignof] = ACTIONS(2408), + [anon_sym__Alignof] = ACTIONS(2408), + [anon_sym_offsetof] = ACTIONS(2408), + [anon_sym__Generic] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2410), + [anon_sym_u_SQUOTE] = ACTIONS(2410), + [anon_sym_U_SQUOTE] = ACTIONS(2410), + [anon_sym_u8_SQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_L_DQUOTE] = ACTIONS(2410), + [anon_sym_u_DQUOTE] = ACTIONS(2410), + [anon_sym_U_DQUOTE] = ACTIONS(2410), + [anon_sym_u8_DQUOTE] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [sym_true] = ACTIONS(2408), + [sym_false] = ACTIONS(2408), + [anon_sym_NULL] = ACTIONS(2408), + [anon_sym_nullptr] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2408), + [anon_sym_decltype] = ACTIONS(2408), + [anon_sym_explicit] = ACTIONS(2408), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_template] = ACTIONS(2408), + [anon_sym_operator] = ACTIONS(2408), + [anon_sym_try] = ACTIONS(2408), + [anon_sym_delete] = ACTIONS(2408), + [anon_sym_throw] = ACTIONS(2408), + [anon_sym_namespace] = ACTIONS(2408), + [anon_sym_using] = ACTIONS(2408), + [anon_sym_static_assert] = ACTIONS(2408), + [anon_sym_concept] = ACTIONS(2408), + [anon_sym_co_return] = ACTIONS(2408), + [anon_sym_co_yield] = ACTIONS(2408), + [anon_sym_R_DQUOTE] = ACTIONS(2410), + [anon_sym_LR_DQUOTE] = ACTIONS(2410), + [anon_sym_uR_DQUOTE] = ACTIONS(2410), + [anon_sym_UR_DQUOTE] = ACTIONS(2410), + [anon_sym_u8R_DQUOTE] = ACTIONS(2410), + [anon_sym_co_await] = ACTIONS(2408), + [anon_sym_new] = ACTIONS(2408), + [anon_sym_requires] = ACTIONS(2408), + [sym_this] = ACTIONS(2408), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2408), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_FORWARD] = ACTIONS(2408), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2408), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2408), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2408), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2408), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_PS_GET] = ACTIONS(2408), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2408), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2408), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2408), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2408), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2408), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2408), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2408), + [anon_sym_MOZ_COLD] = ACTIONS(2408), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2408), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2408), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2408), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2408), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2408), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2408), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2408), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2408), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2408), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2408), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2408), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2408), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2408), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_NONNULL] = ACTIONS(2408), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2408), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2408), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2408), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2408), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2408), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2408), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2408), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2408), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2408), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2408), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2408), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2408), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2408), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2408), + [anon_sym_MOZ_RAII] = ACTIONS(2408), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2408), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2408), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2408), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2408), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2408), + }, + [STATE(512)] = { + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_include_token1] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token2] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2420), + [sym_preproc_directive] = ACTIONS(2420), + [anon_sym_LPAREN2] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym___extension__] = ACTIONS(2420), + [anon_sym_typedef] = ACTIONS(2420), + [anon_sym_virtual] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym___attribute__] = ACTIONS(2420), + [anon_sym___attribute] = ACTIONS(2420), + [anon_sym_COLON_COLON] = ACTIONS(2422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2422), + [anon_sym___declspec] = ACTIONS(2420), + [anon_sym___based] = ACTIONS(2420), + [anon_sym___cdecl] = ACTIONS(2420), + [anon_sym___clrcall] = ACTIONS(2420), + [anon_sym___stdcall] = ACTIONS(2420), + [anon_sym___fastcall] = ACTIONS(2420), + [anon_sym___thiscall] = ACTIONS(2420), + [anon_sym___vectorcall] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_signed] = ACTIONS(2420), + [anon_sym_unsigned] = ACTIONS(2420), + [anon_sym_long] = ACTIONS(2420), + [anon_sym_short] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_inline] = ACTIONS(2420), + [anon_sym___inline] = ACTIONS(2420), + [anon_sym___inline__] = ACTIONS(2420), + [anon_sym___forceinline] = ACTIONS(2420), + [anon_sym_thread_local] = ACTIONS(2420), + [anon_sym___thread] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_constexpr] = ACTIONS(2420), + [anon_sym_volatile] = ACTIONS(2420), + [anon_sym_restrict] = ACTIONS(2420), + [anon_sym___restrict__] = ACTIONS(2420), + [anon_sym__Atomic] = ACTIONS(2420), + [anon_sym__Noreturn] = ACTIONS(2420), + [anon_sym_noreturn] = ACTIONS(2420), + [anon_sym__Nonnull] = ACTIONS(2420), + [anon_sym_mutable] = ACTIONS(2420), + [anon_sym_constinit] = ACTIONS(2420), + [anon_sym_consteval] = ACTIONS(2420), + [anon_sym_alignas] = ACTIONS(2420), + [anon_sym__Alignas] = ACTIONS(2420), + [sym_primitive_type] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_class] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_case] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_goto] = ACTIONS(2420), + [anon_sym___try] = ACTIONS(2420), + [anon_sym___leave] = ACTIONS(2420), + [anon_sym_not] = ACTIONS(2420), + [anon_sym_compl] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_sizeof] = ACTIONS(2420), + [anon_sym___alignof__] = ACTIONS(2420), + [anon_sym___alignof] = ACTIONS(2420), + [anon_sym__alignof] = ACTIONS(2420), + [anon_sym_alignof] = ACTIONS(2420), + [anon_sym__Alignof] = ACTIONS(2420), + [anon_sym_offsetof] = ACTIONS(2420), + [anon_sym__Generic] = ACTIONS(2420), + [anon_sym_asm] = ACTIONS(2420), + [anon_sym___asm__] = ACTIONS(2420), + [anon_sym___asm] = ACTIONS(2420), + [sym_number_literal] = ACTIONS(2422), + [anon_sym_L_SQUOTE] = ACTIONS(2422), + [anon_sym_u_SQUOTE] = ACTIONS(2422), + [anon_sym_U_SQUOTE] = ACTIONS(2422), + [anon_sym_u8_SQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_L_DQUOTE] = ACTIONS(2422), + [anon_sym_u_DQUOTE] = ACTIONS(2422), + [anon_sym_U_DQUOTE] = ACTIONS(2422), + [anon_sym_u8_DQUOTE] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2420), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_explicit] = ACTIONS(2420), + [anon_sym_typename] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2420), + [anon_sym_operator] = ACTIONS(2420), + [anon_sym_try] = ACTIONS(2420), + [anon_sym_delete] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2420), + [anon_sym_using] = ACTIONS(2420), + [anon_sym_static_assert] = ACTIONS(2420), + [anon_sym_concept] = ACTIONS(2420), + [anon_sym_co_return] = ACTIONS(2420), + [anon_sym_co_yield] = ACTIONS(2420), + [anon_sym_R_DQUOTE] = ACTIONS(2422), + [anon_sym_LR_DQUOTE] = ACTIONS(2422), + [anon_sym_uR_DQUOTE] = ACTIONS(2422), + [anon_sym_UR_DQUOTE] = ACTIONS(2422), + [anon_sym_u8R_DQUOTE] = ACTIONS(2422), + [anon_sym_co_await] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_requires] = ACTIONS(2420), + [sym_this] = ACTIONS(2420), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2420), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_FORWARD] = ACTIONS(2420), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2420), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2420), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2420), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2420), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_PS_GET] = ACTIONS(2420), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2420), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2420), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2420), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2420), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2420), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2420), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2420), + [anon_sym_MOZ_COLD] = ACTIONS(2420), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2420), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2420), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2420), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2420), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2420), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2420), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2420), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2420), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2420), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2420), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2420), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2420), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2420), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_NONNULL] = ACTIONS(2420), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2420), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2420), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2420), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2420), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2420), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2420), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2420), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2420), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2420), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2420), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2420), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2420), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2420), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2420), + [anon_sym_MOZ_RAII] = ACTIONS(2420), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2420), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2420), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2420), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2420), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2420), + }, + [STATE(513)] = { + [sym_identifier] = ACTIONS(2260), + [aux_sym_preproc_include_token1] = ACTIONS(2260), + [aux_sym_preproc_def_token1] = ACTIONS(2260), + [aux_sym_preproc_if_token1] = ACTIONS(2260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2260), + [sym_preproc_directive] = ACTIONS(2260), + [anon_sym_LPAREN2] = ACTIONS(2262), + [anon_sym_BANG] = ACTIONS(2262), + [anon_sym_TILDE] = ACTIONS(2262), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_STAR] = ACTIONS(2262), + [anon_sym_AMP_AMP] = ACTIONS(2262), + [anon_sym_AMP] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2262), + [anon_sym___extension__] = ACTIONS(2260), + [anon_sym_typedef] = ACTIONS(2260), + [anon_sym_virtual] = ACTIONS(2260), + [anon_sym_extern] = ACTIONS(2260), + [anon_sym___attribute__] = ACTIONS(2260), + [anon_sym___attribute] = ACTIONS(2260), + [anon_sym_COLON_COLON] = ACTIONS(2262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2262), + [anon_sym___declspec] = ACTIONS(2260), + [anon_sym___based] = ACTIONS(2260), + [anon_sym___cdecl] = ACTIONS(2260), + [anon_sym___clrcall] = ACTIONS(2260), + [anon_sym___stdcall] = ACTIONS(2260), + [anon_sym___fastcall] = ACTIONS(2260), + [anon_sym___thiscall] = ACTIONS(2260), + [anon_sym___vectorcall] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_signed] = ACTIONS(2260), + [anon_sym_unsigned] = ACTIONS(2260), + [anon_sym_long] = ACTIONS(2260), + [anon_sym_short] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_static] = ACTIONS(2260), + [anon_sym_register] = ACTIONS(2260), + [anon_sym_inline] = ACTIONS(2260), + [anon_sym___inline] = ACTIONS(2260), + [anon_sym___inline__] = ACTIONS(2260), + [anon_sym___forceinline] = ACTIONS(2260), + [anon_sym_thread_local] = ACTIONS(2260), + [anon_sym___thread] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [anon_sym_constexpr] = ACTIONS(2260), + [anon_sym_volatile] = ACTIONS(2260), + [anon_sym_restrict] = ACTIONS(2260), + [anon_sym___restrict__] = ACTIONS(2260), + [anon_sym__Atomic] = ACTIONS(2260), + [anon_sym__Noreturn] = ACTIONS(2260), + [anon_sym_noreturn] = ACTIONS(2260), + [anon_sym__Nonnull] = ACTIONS(2260), + [anon_sym_mutable] = ACTIONS(2260), + [anon_sym_constinit] = ACTIONS(2260), + [anon_sym_consteval] = ACTIONS(2260), + [anon_sym_alignas] = ACTIONS(2260), + [anon_sym__Alignas] = ACTIONS(2260), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), + [anon_sym_class] = ACTIONS(2260), + [anon_sym_struct] = ACTIONS(2260), + [anon_sym_union] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_switch] = ACTIONS(2260), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_break] = ACTIONS(2260), + [anon_sym_continue] = ACTIONS(2260), + [anon_sym_goto] = ACTIONS(2260), + [anon_sym___try] = ACTIONS(2260), + [anon_sym___leave] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(2260), + [anon_sym_compl] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2260), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2260), + [anon_sym_asm] = ACTIONS(2260), + [anon_sym___asm__] = ACTIONS(2260), + [anon_sym___asm] = ACTIONS(2260), + [sym_number_literal] = ACTIONS(2262), + [anon_sym_L_SQUOTE] = ACTIONS(2262), + [anon_sym_u_SQUOTE] = ACTIONS(2262), + [anon_sym_U_SQUOTE] = ACTIONS(2262), + [anon_sym_u8_SQUOTE] = ACTIONS(2262), + [anon_sym_SQUOTE] = ACTIONS(2262), + [anon_sym_L_DQUOTE] = ACTIONS(2262), + [anon_sym_u_DQUOTE] = ACTIONS(2262), + [anon_sym_U_DQUOTE] = ACTIONS(2262), + [anon_sym_u8_DQUOTE] = ACTIONS(2262), + [anon_sym_DQUOTE] = ACTIONS(2262), + [sym_true] = ACTIONS(2260), + [sym_false] = ACTIONS(2260), + [anon_sym_NULL] = ACTIONS(2260), + [anon_sym_nullptr] = ACTIONS(2260), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2260), + [anon_sym_decltype] = ACTIONS(2260), + [anon_sym_explicit] = ACTIONS(2260), + [anon_sym_typename] = ACTIONS(2260), + [anon_sym_template] = ACTIONS(2260), + [anon_sym_operator] = ACTIONS(2260), + [anon_sym_try] = ACTIONS(2260), + [anon_sym_delete] = ACTIONS(2260), + [anon_sym_throw] = ACTIONS(2260), + [anon_sym_namespace] = ACTIONS(2260), + [anon_sym_using] = ACTIONS(2260), + [anon_sym_static_assert] = ACTIONS(2260), + [anon_sym_concept] = ACTIONS(2260), + [anon_sym_co_return] = ACTIONS(2260), + [anon_sym_co_yield] = ACTIONS(2260), + [anon_sym_R_DQUOTE] = ACTIONS(2262), + [anon_sym_LR_DQUOTE] = ACTIONS(2262), + [anon_sym_uR_DQUOTE] = ACTIONS(2262), + [anon_sym_UR_DQUOTE] = ACTIONS(2262), + [anon_sym_u8R_DQUOTE] = ACTIONS(2262), + [anon_sym_co_await] = ACTIONS(2260), + [anon_sym_new] = ACTIONS(2260), + [anon_sym_requires] = ACTIONS(2260), + [sym_this] = ACTIONS(2260), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_FORWARD] = ACTIONS(2260), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2260), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_PS_GET] = ACTIONS(2260), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2260), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2260), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2260), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2260), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2260), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2260), + [anon_sym_MOZ_COLD] = ACTIONS(2260), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2260), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2260), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2260), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2260), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2260), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2260), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2260), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2260), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2260), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2260), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2260), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2260), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2260), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_NONNULL] = ACTIONS(2260), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2260), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2260), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2260), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2260), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2260), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2260), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2260), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2260), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2260), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2260), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2260), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2260), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2260), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2260), + [anon_sym_MOZ_RAII] = ACTIONS(2260), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2260), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2260), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2260), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2260), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2260), + }, + [STATE(514)] = { + [sym_identifier] = ACTIONS(2317), + [aux_sym_preproc_include_token1] = ACTIONS(2317), + [aux_sym_preproc_def_token1] = ACTIONS(2317), + [aux_sym_preproc_if_token1] = ACTIONS(2317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2317), + [sym_preproc_directive] = ACTIONS(2317), + [anon_sym_LPAREN2] = ACTIONS(2319), + [anon_sym_BANG] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2317), + [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_typedef] = ACTIONS(2317), + [anon_sym_virtual] = ACTIONS(2317), + [anon_sym_extern] = ACTIONS(2317), + [anon_sym___attribute__] = ACTIONS(2317), + [anon_sym___attribute] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2319), + [anon_sym___declspec] = ACTIONS(2317), + [anon_sym___based] = ACTIONS(2317), + [anon_sym___cdecl] = ACTIONS(2317), + [anon_sym___clrcall] = ACTIONS(2317), + [anon_sym___stdcall] = ACTIONS(2317), + [anon_sym___fastcall] = ACTIONS(2317), + [anon_sym___thiscall] = ACTIONS(2317), + [anon_sym___vectorcall] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_signed] = ACTIONS(2317), + [anon_sym_unsigned] = ACTIONS(2317), + [anon_sym_long] = ACTIONS(2317), + [anon_sym_short] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_register] = ACTIONS(2317), + [anon_sym_inline] = ACTIONS(2317), + [anon_sym___inline] = ACTIONS(2317), + [anon_sym___inline__] = ACTIONS(2317), + [anon_sym___forceinline] = ACTIONS(2317), + [anon_sym_thread_local] = ACTIONS(2317), + [anon_sym___thread] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_constexpr] = ACTIONS(2317), + [anon_sym_volatile] = ACTIONS(2317), + [anon_sym_restrict] = ACTIONS(2317), + [anon_sym___restrict__] = ACTIONS(2317), + [anon_sym__Atomic] = ACTIONS(2317), + [anon_sym__Noreturn] = ACTIONS(2317), + [anon_sym_noreturn] = ACTIONS(2317), + [anon_sym__Nonnull] = ACTIONS(2317), + [anon_sym_mutable] = ACTIONS(2317), + [anon_sym_constinit] = ACTIONS(2317), + [anon_sym_consteval] = ACTIONS(2317), + [anon_sym_alignas] = ACTIONS(2317), + [anon_sym__Alignas] = ACTIONS(2317), + [sym_primitive_type] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_struct] = ACTIONS(2317), + [anon_sym_union] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_case] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_goto] = ACTIONS(2317), + [anon_sym___try] = ACTIONS(2317), + [anon_sym___leave] = ACTIONS(2317), + [anon_sym_not] = ACTIONS(2317), + [anon_sym_compl] = ACTIONS(2317), + [anon_sym_DASH_DASH] = ACTIONS(2319), + [anon_sym_PLUS_PLUS] = ACTIONS(2319), + [anon_sym_sizeof] = ACTIONS(2317), + [anon_sym___alignof__] = ACTIONS(2317), + [anon_sym___alignof] = ACTIONS(2317), + [anon_sym__alignof] = ACTIONS(2317), + [anon_sym_alignof] = ACTIONS(2317), + [anon_sym__Alignof] = ACTIONS(2317), + [anon_sym_offsetof] = ACTIONS(2317), + [anon_sym__Generic] = ACTIONS(2317), + [anon_sym_asm] = ACTIONS(2317), + [anon_sym___asm__] = ACTIONS(2317), + [anon_sym___asm] = ACTIONS(2317), + [sym_number_literal] = ACTIONS(2319), + [anon_sym_L_SQUOTE] = ACTIONS(2319), + [anon_sym_u_SQUOTE] = ACTIONS(2319), + [anon_sym_U_SQUOTE] = ACTIONS(2319), + [anon_sym_u8_SQUOTE] = ACTIONS(2319), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_L_DQUOTE] = ACTIONS(2319), + [anon_sym_u_DQUOTE] = ACTIONS(2319), + [anon_sym_U_DQUOTE] = ACTIONS(2319), + [anon_sym_u8_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [sym_true] = ACTIONS(2317), + [sym_false] = ACTIONS(2317), + [anon_sym_NULL] = ACTIONS(2317), + [anon_sym_nullptr] = ACTIONS(2317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2317), + [anon_sym_decltype] = ACTIONS(2317), + [anon_sym_explicit] = ACTIONS(2317), + [anon_sym_typename] = ACTIONS(2317), + [anon_sym_template] = ACTIONS(2317), + [anon_sym_operator] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_delete] = ACTIONS(2317), + [anon_sym_throw] = ACTIONS(2317), + [anon_sym_namespace] = ACTIONS(2317), + [anon_sym_using] = ACTIONS(2317), + [anon_sym_static_assert] = ACTIONS(2317), + [anon_sym_concept] = ACTIONS(2317), + [anon_sym_co_return] = ACTIONS(2317), + [anon_sym_co_yield] = ACTIONS(2317), + [anon_sym_R_DQUOTE] = ACTIONS(2319), + [anon_sym_LR_DQUOTE] = ACTIONS(2319), + [anon_sym_uR_DQUOTE] = ACTIONS(2319), + [anon_sym_UR_DQUOTE] = ACTIONS(2319), + [anon_sym_u8R_DQUOTE] = ACTIONS(2319), + [anon_sym_co_await] = ACTIONS(2317), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_requires] = ACTIONS(2317), + [sym_this] = ACTIONS(2317), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2317), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_FORWARD] = ACTIONS(2317), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2317), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2317), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2317), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2317), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_PS_GET] = ACTIONS(2317), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2317), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2317), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2317), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2317), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2317), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2317), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2317), + [anon_sym_MOZ_COLD] = ACTIONS(2317), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2317), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2317), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2317), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2317), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2317), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2317), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2317), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2317), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2317), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2317), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2317), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2317), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2317), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_NONNULL] = ACTIONS(2317), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2317), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2317), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2317), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2317), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2317), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2317), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2317), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2317), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2317), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2317), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2317), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2317), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2317), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2317), + [anon_sym_MOZ_RAII] = ACTIONS(2317), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2317), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2317), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2317), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2317), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2317), + }, + [STATE(515)] = { + [sym_identifier] = ACTIONS(2325), + [aux_sym_preproc_include_token1] = ACTIONS(2325), + [aux_sym_preproc_def_token1] = ACTIONS(2325), + [aux_sym_preproc_if_token1] = ACTIONS(2325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2325), + [sym_preproc_directive] = ACTIONS(2325), + [anon_sym_LPAREN2] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_PLUS] = ACTIONS(2325), + [anon_sym_STAR] = ACTIONS(2327), + [anon_sym_AMP_AMP] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym___extension__] = ACTIONS(2325), + [anon_sym_typedef] = ACTIONS(2325), + [anon_sym_virtual] = ACTIONS(2325), + [anon_sym_extern] = ACTIONS(2325), + [anon_sym___attribute__] = ACTIONS(2325), + [anon_sym___attribute] = ACTIONS(2325), + [anon_sym_COLON_COLON] = ACTIONS(2327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), + [anon_sym___declspec] = ACTIONS(2325), + [anon_sym___based] = ACTIONS(2325), + [anon_sym___cdecl] = ACTIONS(2325), + [anon_sym___clrcall] = ACTIONS(2325), + [anon_sym___stdcall] = ACTIONS(2325), + [anon_sym___fastcall] = ACTIONS(2325), + [anon_sym___thiscall] = ACTIONS(2325), + [anon_sym___vectorcall] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_signed] = ACTIONS(2325), + [anon_sym_unsigned] = ACTIONS(2325), + [anon_sym_long] = ACTIONS(2325), + [anon_sym_short] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_static] = ACTIONS(2325), + [anon_sym_register] = ACTIONS(2325), + [anon_sym_inline] = ACTIONS(2325), + [anon_sym___inline] = ACTIONS(2325), + [anon_sym___inline__] = ACTIONS(2325), + [anon_sym___forceinline] = ACTIONS(2325), + [anon_sym_thread_local] = ACTIONS(2325), + [anon_sym___thread] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_constexpr] = ACTIONS(2325), + [anon_sym_volatile] = ACTIONS(2325), + [anon_sym_restrict] = ACTIONS(2325), + [anon_sym___restrict__] = ACTIONS(2325), + [anon_sym__Atomic] = ACTIONS(2325), + [anon_sym__Noreturn] = ACTIONS(2325), + [anon_sym_noreturn] = ACTIONS(2325), + [anon_sym__Nonnull] = ACTIONS(2325), + [anon_sym_mutable] = ACTIONS(2325), + [anon_sym_constinit] = ACTIONS(2325), + [anon_sym_consteval] = ACTIONS(2325), + [anon_sym_alignas] = ACTIONS(2325), + [anon_sym__Alignas] = ACTIONS(2325), + [sym_primitive_type] = ACTIONS(2325), + [anon_sym_enum] = ACTIONS(2325), + [anon_sym_class] = ACTIONS(2325), + [anon_sym_struct] = ACTIONS(2325), + [anon_sym_union] = ACTIONS(2325), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2325), + [anon_sym_case] = ACTIONS(2325), + [anon_sym_default] = ACTIONS(2325), + [anon_sym_while] = ACTIONS(2325), + [anon_sym_do] = ACTIONS(2325), + [anon_sym_for] = ACTIONS(2325), + [anon_sym_return] = ACTIONS(2325), + [anon_sym_break] = ACTIONS(2325), + [anon_sym_continue] = ACTIONS(2325), + [anon_sym_goto] = ACTIONS(2325), + [anon_sym___try] = ACTIONS(2325), + [anon_sym___leave] = ACTIONS(2325), + [anon_sym_not] = ACTIONS(2325), + [anon_sym_compl] = ACTIONS(2325), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_sizeof] = ACTIONS(2325), + [anon_sym___alignof__] = ACTIONS(2325), + [anon_sym___alignof] = ACTIONS(2325), + [anon_sym__alignof] = ACTIONS(2325), + [anon_sym_alignof] = ACTIONS(2325), + [anon_sym__Alignof] = ACTIONS(2325), + [anon_sym_offsetof] = ACTIONS(2325), + [anon_sym__Generic] = ACTIONS(2325), + [anon_sym_asm] = ACTIONS(2325), + [anon_sym___asm__] = ACTIONS(2325), + [anon_sym___asm] = ACTIONS(2325), + [sym_number_literal] = ACTIONS(2327), + [anon_sym_L_SQUOTE] = ACTIONS(2327), + [anon_sym_u_SQUOTE] = ACTIONS(2327), + [anon_sym_U_SQUOTE] = ACTIONS(2327), + [anon_sym_u8_SQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2325), + [sym_false] = ACTIONS(2325), + [anon_sym_NULL] = ACTIONS(2325), + [anon_sym_nullptr] = ACTIONS(2325), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2325), + [anon_sym_decltype] = ACTIONS(2325), + [anon_sym_explicit] = ACTIONS(2325), + [anon_sym_typename] = ACTIONS(2325), + [anon_sym_template] = ACTIONS(2325), + [anon_sym_operator] = ACTIONS(2325), + [anon_sym_try] = ACTIONS(2325), + [anon_sym_delete] = ACTIONS(2325), + [anon_sym_throw] = ACTIONS(2325), + [anon_sym_namespace] = ACTIONS(2325), + [anon_sym_using] = ACTIONS(2325), + [anon_sym_static_assert] = ACTIONS(2325), + [anon_sym_concept] = ACTIONS(2325), + [anon_sym_co_return] = ACTIONS(2325), + [anon_sym_co_yield] = ACTIONS(2325), + [anon_sym_R_DQUOTE] = ACTIONS(2327), + [anon_sym_LR_DQUOTE] = ACTIONS(2327), + [anon_sym_uR_DQUOTE] = ACTIONS(2327), + [anon_sym_UR_DQUOTE] = ACTIONS(2327), + [anon_sym_u8R_DQUOTE] = ACTIONS(2327), + [anon_sym_co_await] = ACTIONS(2325), + [anon_sym_new] = ACTIONS(2325), + [anon_sym_requires] = ACTIONS(2325), + [sym_this] = ACTIONS(2325), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2325), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_FORWARD] = ACTIONS(2325), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2325), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2325), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2325), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2325), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_PS_GET] = ACTIONS(2325), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2325), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2325), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2325), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2325), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2325), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2325), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2325), + [anon_sym_MOZ_COLD] = ACTIONS(2325), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2325), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2325), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2325), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2325), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2325), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2325), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2325), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2325), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2325), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2325), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2325), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2325), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2325), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_NONNULL] = ACTIONS(2325), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2325), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2325), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2325), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2325), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2325), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2325), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2325), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2325), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2325), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2325), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2325), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2325), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2325), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2325), + [anon_sym_MOZ_RAII] = ACTIONS(2325), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2325), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2325), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2325), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2325), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2325), + }, + [STATE(516)] = { + [sym_identifier] = ACTIONS(2244), + [aux_sym_preproc_include_token1] = ACTIONS(2244), + [aux_sym_preproc_def_token1] = ACTIONS(2244), + [aux_sym_preproc_if_token1] = ACTIONS(2244), + [aux_sym_preproc_if_token2] = ACTIONS(2244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2244), + [sym_preproc_directive] = ACTIONS(2244), + [anon_sym_LPAREN2] = ACTIONS(2246), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_STAR] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym___extension__] = ACTIONS(2244), + [anon_sym_typedef] = ACTIONS(2244), + [anon_sym_virtual] = ACTIONS(2244), + [anon_sym_extern] = ACTIONS(2244), + [anon_sym___attribute__] = ACTIONS(2244), + [anon_sym___attribute] = ACTIONS(2244), + [anon_sym_COLON_COLON] = ACTIONS(2246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2246), + [anon_sym___declspec] = ACTIONS(2244), + [anon_sym___based] = ACTIONS(2244), + [anon_sym___cdecl] = ACTIONS(2244), + [anon_sym___clrcall] = ACTIONS(2244), + [anon_sym___stdcall] = ACTIONS(2244), + [anon_sym___fastcall] = ACTIONS(2244), + [anon_sym___thiscall] = ACTIONS(2244), + [anon_sym___vectorcall] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_register] = ACTIONS(2244), + [anon_sym_inline] = ACTIONS(2244), + [anon_sym___inline] = ACTIONS(2244), + [anon_sym___inline__] = ACTIONS(2244), + [anon_sym___forceinline] = ACTIONS(2244), + [anon_sym_thread_local] = ACTIONS(2244), + [anon_sym___thread] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_constexpr] = ACTIONS(2244), + [anon_sym_volatile] = ACTIONS(2244), + [anon_sym_restrict] = ACTIONS(2244), + [anon_sym___restrict__] = ACTIONS(2244), + [anon_sym__Atomic] = ACTIONS(2244), + [anon_sym__Noreturn] = ACTIONS(2244), + [anon_sym_noreturn] = ACTIONS(2244), + [anon_sym__Nonnull] = ACTIONS(2244), + [anon_sym_mutable] = ACTIONS(2244), + [anon_sym_constinit] = ACTIONS(2244), + [anon_sym_consteval] = ACTIONS(2244), + [anon_sym_alignas] = ACTIONS(2244), + [anon_sym__Alignas] = ACTIONS(2244), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_struct] = ACTIONS(2244), + [anon_sym_union] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_goto] = ACTIONS(2244), + [anon_sym___try] = ACTIONS(2244), + [anon_sym___leave] = ACTIONS(2244), + [anon_sym_not] = ACTIONS(2244), + [anon_sym_compl] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_sizeof] = ACTIONS(2244), + [anon_sym___alignof__] = ACTIONS(2244), + [anon_sym___alignof] = ACTIONS(2244), + [anon_sym__alignof] = ACTIONS(2244), + [anon_sym_alignof] = ACTIONS(2244), + [anon_sym__Alignof] = ACTIONS(2244), + [anon_sym_offsetof] = ACTIONS(2244), + [anon_sym__Generic] = ACTIONS(2244), + [anon_sym_asm] = ACTIONS(2244), + [anon_sym___asm__] = ACTIONS(2244), + [anon_sym___asm] = ACTIONS(2244), + [sym_number_literal] = ACTIONS(2246), + [anon_sym_L_SQUOTE] = ACTIONS(2246), + [anon_sym_u_SQUOTE] = ACTIONS(2246), + [anon_sym_U_SQUOTE] = ACTIONS(2246), + [anon_sym_u8_SQUOTE] = ACTIONS(2246), + [anon_sym_SQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [anon_sym_NULL] = ACTIONS(2244), + [anon_sym_nullptr] = ACTIONS(2244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2244), + [anon_sym_decltype] = ACTIONS(2244), + [anon_sym_explicit] = ACTIONS(2244), + [anon_sym_typename] = ACTIONS(2244), + [anon_sym_template] = ACTIONS(2244), + [anon_sym_operator] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_static_assert] = ACTIONS(2244), + [anon_sym_concept] = ACTIONS(2244), + [anon_sym_co_return] = ACTIONS(2244), + [anon_sym_co_yield] = ACTIONS(2244), + [anon_sym_R_DQUOTE] = ACTIONS(2246), + [anon_sym_LR_DQUOTE] = ACTIONS(2246), + [anon_sym_uR_DQUOTE] = ACTIONS(2246), + [anon_sym_UR_DQUOTE] = ACTIONS(2246), + [anon_sym_u8R_DQUOTE] = ACTIONS(2246), + [anon_sym_co_await] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_requires] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2244), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_FORWARD] = ACTIONS(2244), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2244), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2244), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2244), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2244), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_PS_GET] = ACTIONS(2244), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2244), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2244), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2244), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2244), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2244), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2244), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2244), + [anon_sym_MOZ_COLD] = ACTIONS(2244), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2244), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2244), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2244), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2244), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2244), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2244), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2244), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2244), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2244), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2244), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2244), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2244), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2244), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_NONNULL] = ACTIONS(2244), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2244), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2244), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2244), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2244), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2244), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2244), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2244), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2244), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2244), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2244), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2244), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2244), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2244), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2244), + [anon_sym_MOZ_RAII] = ACTIONS(2244), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2244), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2244), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2244), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2244), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2244), + }, + [STATE(517)] = { + [sym_identifier] = ACTIONS(2329), + [aux_sym_preproc_include_token1] = ACTIONS(2329), + [aux_sym_preproc_def_token1] = ACTIONS(2329), + [aux_sym_preproc_if_token1] = ACTIONS(2329), + [aux_sym_preproc_if_token2] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2329), + [sym_preproc_directive] = ACTIONS(2329), + [anon_sym_LPAREN2] = ACTIONS(2331), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(2331), + [anon_sym_AMP_AMP] = ACTIONS(2331), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_SEMI] = ACTIONS(2331), + [anon_sym___extension__] = ACTIONS(2329), + [anon_sym_typedef] = ACTIONS(2329), + [anon_sym_virtual] = ACTIONS(2329), + [anon_sym_extern] = ACTIONS(2329), + [anon_sym___attribute__] = ACTIONS(2329), + [anon_sym___attribute] = ACTIONS(2329), + [anon_sym_COLON_COLON] = ACTIONS(2331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2331), + [anon_sym___declspec] = ACTIONS(2329), + [anon_sym___based] = ACTIONS(2329), + [anon_sym___cdecl] = ACTIONS(2329), + [anon_sym___clrcall] = ACTIONS(2329), + [anon_sym___stdcall] = ACTIONS(2329), + [anon_sym___fastcall] = ACTIONS(2329), + [anon_sym___thiscall] = ACTIONS(2329), + [anon_sym___vectorcall] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_signed] = ACTIONS(2329), + [anon_sym_unsigned] = ACTIONS(2329), + [anon_sym_long] = ACTIONS(2329), + [anon_sym_short] = ACTIONS(2329), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_register] = ACTIONS(2329), + [anon_sym_inline] = ACTIONS(2329), + [anon_sym___inline] = ACTIONS(2329), + [anon_sym___inline__] = ACTIONS(2329), + [anon_sym___forceinline] = ACTIONS(2329), + [anon_sym_thread_local] = ACTIONS(2329), + [anon_sym___thread] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_constexpr] = ACTIONS(2329), + [anon_sym_volatile] = ACTIONS(2329), + [anon_sym_restrict] = ACTIONS(2329), + [anon_sym___restrict__] = ACTIONS(2329), + [anon_sym__Atomic] = ACTIONS(2329), + [anon_sym__Noreturn] = ACTIONS(2329), + [anon_sym_noreturn] = ACTIONS(2329), + [anon_sym__Nonnull] = ACTIONS(2329), + [anon_sym_mutable] = ACTIONS(2329), + [anon_sym_constinit] = ACTIONS(2329), + [anon_sym_consteval] = ACTIONS(2329), + [anon_sym_alignas] = ACTIONS(2329), + [anon_sym__Alignas] = ACTIONS(2329), + [sym_primitive_type] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_class] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2329), + [anon_sym_union] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_switch] = ACTIONS(2329), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_do] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_goto] = ACTIONS(2329), + [anon_sym___try] = ACTIONS(2329), + [anon_sym___leave] = ACTIONS(2329), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(2331), + [anon_sym_PLUS_PLUS] = ACTIONS(2331), + [anon_sym_sizeof] = ACTIONS(2329), + [anon_sym___alignof__] = ACTIONS(2329), + [anon_sym___alignof] = ACTIONS(2329), + [anon_sym__alignof] = ACTIONS(2329), + [anon_sym_alignof] = ACTIONS(2329), + [anon_sym__Alignof] = ACTIONS(2329), + [anon_sym_offsetof] = ACTIONS(2329), + [anon_sym__Generic] = ACTIONS(2329), + [anon_sym_asm] = ACTIONS(2329), + [anon_sym___asm__] = ACTIONS(2329), + [anon_sym___asm] = ACTIONS(2329), + [sym_number_literal] = ACTIONS(2331), + [anon_sym_L_SQUOTE] = ACTIONS(2331), + [anon_sym_u_SQUOTE] = ACTIONS(2331), + [anon_sym_U_SQUOTE] = ACTIONS(2331), + [anon_sym_u8_SQUOTE] = ACTIONS(2331), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_L_DQUOTE] = ACTIONS(2331), + [anon_sym_u_DQUOTE] = ACTIONS(2331), + [anon_sym_U_DQUOTE] = ACTIONS(2331), + [anon_sym_u8_DQUOTE] = ACTIONS(2331), + [anon_sym_DQUOTE] = ACTIONS(2331), + [sym_true] = ACTIONS(2329), + [sym_false] = ACTIONS(2329), + [anon_sym_NULL] = ACTIONS(2329), + [anon_sym_nullptr] = ACTIONS(2329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2329), + [anon_sym_decltype] = ACTIONS(2329), + [anon_sym_explicit] = ACTIONS(2329), + [anon_sym_typename] = ACTIONS(2329), + [anon_sym_template] = ACTIONS(2329), + [anon_sym_operator] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2329), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_throw] = ACTIONS(2329), + [anon_sym_namespace] = ACTIONS(2329), + [anon_sym_using] = ACTIONS(2329), + [anon_sym_static_assert] = ACTIONS(2329), + [anon_sym_concept] = ACTIONS(2329), + [anon_sym_co_return] = ACTIONS(2329), + [anon_sym_co_yield] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2329), + [anon_sym_requires] = ACTIONS(2329), + [sym_this] = ACTIONS(2329), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2329), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_FORWARD] = ACTIONS(2329), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2329), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2329), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2329), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2329), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_PS_GET] = ACTIONS(2329), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2329), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2329), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2329), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2329), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2329), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2329), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2329), + [anon_sym_MOZ_COLD] = ACTIONS(2329), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2329), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2329), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2329), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2329), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2329), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2329), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2329), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2329), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2329), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2329), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2329), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2329), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2329), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_NONNULL] = ACTIONS(2329), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2329), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2329), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2329), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2329), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2329), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2329), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2329), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2329), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2329), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2329), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2329), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2329), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2329), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2329), + [anon_sym_MOZ_RAII] = ACTIONS(2329), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2329), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2329), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2329), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2329), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2329), + }, + [STATE(518)] = { + [sym_identifier] = ACTIONS(2313), + [aux_sym_preproc_include_token1] = ACTIONS(2313), + [aux_sym_preproc_def_token1] = ACTIONS(2313), + [aux_sym_preproc_if_token1] = ACTIONS(2313), + [aux_sym_preproc_if_token2] = ACTIONS(2313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2313), + [sym_preproc_directive] = ACTIONS(2313), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(2315), + [anon_sym_AMP_AMP] = ACTIONS(2315), + [anon_sym_AMP] = ACTIONS(2313), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym___extension__] = ACTIONS(2313), + [anon_sym_typedef] = ACTIONS(2313), + [anon_sym_virtual] = ACTIONS(2313), + [anon_sym_extern] = ACTIONS(2313), + [anon_sym___attribute__] = ACTIONS(2313), + [anon_sym___attribute] = ACTIONS(2313), + [anon_sym_COLON_COLON] = ACTIONS(2315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2315), + [anon_sym___declspec] = ACTIONS(2313), + [anon_sym___based] = ACTIONS(2313), + [anon_sym___cdecl] = ACTIONS(2313), + [anon_sym___clrcall] = ACTIONS(2313), + [anon_sym___stdcall] = ACTIONS(2313), + [anon_sym___fastcall] = ACTIONS(2313), + [anon_sym___thiscall] = ACTIONS(2313), + [anon_sym___vectorcall] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_signed] = ACTIONS(2313), + [anon_sym_unsigned] = ACTIONS(2313), + [anon_sym_long] = ACTIONS(2313), + [anon_sym_short] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_static] = ACTIONS(2313), + [anon_sym_register] = ACTIONS(2313), + [anon_sym_inline] = ACTIONS(2313), + [anon_sym___inline] = ACTIONS(2313), + [anon_sym___inline__] = ACTIONS(2313), + [anon_sym___forceinline] = ACTIONS(2313), + [anon_sym_thread_local] = ACTIONS(2313), + [anon_sym___thread] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_constexpr] = ACTIONS(2313), + [anon_sym_volatile] = ACTIONS(2313), + [anon_sym_restrict] = ACTIONS(2313), + [anon_sym___restrict__] = ACTIONS(2313), + [anon_sym__Atomic] = ACTIONS(2313), + [anon_sym__Noreturn] = ACTIONS(2313), + [anon_sym_noreturn] = ACTIONS(2313), + [anon_sym__Nonnull] = ACTIONS(2313), + [anon_sym_mutable] = ACTIONS(2313), + [anon_sym_constinit] = ACTIONS(2313), + [anon_sym_consteval] = ACTIONS(2313), + [anon_sym_alignas] = ACTIONS(2313), + [anon_sym__Alignas] = ACTIONS(2313), + [sym_primitive_type] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), + [anon_sym_class] = ACTIONS(2313), + [anon_sym_struct] = ACTIONS(2313), + [anon_sym_union] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_switch] = ACTIONS(2313), + [anon_sym_case] = ACTIONS(2313), + [anon_sym_default] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_do] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_goto] = ACTIONS(2313), + [anon_sym___try] = ACTIONS(2313), + [anon_sym___leave] = ACTIONS(2313), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2315), + [anon_sym_PLUS_PLUS] = ACTIONS(2315), + [anon_sym_sizeof] = ACTIONS(2313), + [anon_sym___alignof__] = ACTIONS(2313), + [anon_sym___alignof] = ACTIONS(2313), + [anon_sym__alignof] = ACTIONS(2313), + [anon_sym_alignof] = ACTIONS(2313), + [anon_sym__Alignof] = ACTIONS(2313), + [anon_sym_offsetof] = ACTIONS(2313), + [anon_sym__Generic] = ACTIONS(2313), + [anon_sym_asm] = ACTIONS(2313), + [anon_sym___asm__] = ACTIONS(2313), + [anon_sym___asm] = ACTIONS(2313), + [sym_number_literal] = ACTIONS(2315), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2315), + [anon_sym_u_DQUOTE] = ACTIONS(2315), + [anon_sym_U_DQUOTE] = ACTIONS(2315), + [anon_sym_u8_DQUOTE] = ACTIONS(2315), + [anon_sym_DQUOTE] = ACTIONS(2315), + [sym_true] = ACTIONS(2313), + [sym_false] = ACTIONS(2313), + [anon_sym_NULL] = ACTIONS(2313), + [anon_sym_nullptr] = ACTIONS(2313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2313), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_explicit] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(2313), + [anon_sym_operator] = ACTIONS(2313), + [anon_sym_try] = ACTIONS(2313), + [anon_sym_delete] = ACTIONS(2313), + [anon_sym_throw] = ACTIONS(2313), + [anon_sym_namespace] = ACTIONS(2313), + [anon_sym_using] = ACTIONS(2313), + [anon_sym_static_assert] = ACTIONS(2313), + [anon_sym_concept] = ACTIONS(2313), + [anon_sym_co_return] = ACTIONS(2313), + [anon_sym_co_yield] = ACTIONS(2313), + [anon_sym_R_DQUOTE] = ACTIONS(2315), + [anon_sym_LR_DQUOTE] = ACTIONS(2315), + [anon_sym_uR_DQUOTE] = ACTIONS(2315), + [anon_sym_UR_DQUOTE] = ACTIONS(2315), + [anon_sym_u8R_DQUOTE] = ACTIONS(2315), + [anon_sym_co_await] = ACTIONS(2313), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_requires] = ACTIONS(2313), + [sym_this] = ACTIONS(2313), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2313), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_FORWARD] = ACTIONS(2313), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2313), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2313), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2313), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2313), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_PS_GET] = ACTIONS(2313), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2313), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2313), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2313), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2313), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2313), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2313), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2313), + [anon_sym_MOZ_COLD] = ACTIONS(2313), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2313), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2313), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2313), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2313), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2313), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2313), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2313), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2313), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2313), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2313), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2313), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2313), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2313), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_NONNULL] = ACTIONS(2313), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2313), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2313), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2313), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2313), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2313), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2313), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2313), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2313), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2313), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2313), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2313), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2313), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2313), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2313), + [anon_sym_MOZ_RAII] = ACTIONS(2313), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2313), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2313), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2313), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2313), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2313), + }, + [STATE(519)] = { + [ts_builtin_sym_end] = ACTIONS(2184), + [sym_identifier] = ACTIONS(2182), + [aux_sym_preproc_include_token1] = ACTIONS(2182), + [aux_sym_preproc_def_token1] = ACTIONS(2182), + [aux_sym_preproc_if_token1] = ACTIONS(2182), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2182), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2182), + [sym_preproc_directive] = ACTIONS(2182), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2182), + [anon_sym_PLUS] = ACTIONS(2182), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym___extension__] = ACTIONS(2182), + [anon_sym_typedef] = ACTIONS(2182), + [anon_sym_virtual] = ACTIONS(2182), + [anon_sym_extern] = ACTIONS(2182), + [anon_sym___attribute__] = ACTIONS(2182), + [anon_sym___attribute] = ACTIONS(2182), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2182), + [anon_sym___based] = ACTIONS(2182), + [anon_sym___cdecl] = ACTIONS(2182), + [anon_sym___clrcall] = ACTIONS(2182), + [anon_sym___stdcall] = ACTIONS(2182), + [anon_sym___fastcall] = ACTIONS(2182), + [anon_sym___thiscall] = ACTIONS(2182), + [anon_sym___vectorcall] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2182), + [anon_sym_unsigned] = ACTIONS(2182), + [anon_sym_long] = ACTIONS(2182), + [anon_sym_short] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_register] = ACTIONS(2182), + [anon_sym_inline] = ACTIONS(2182), + [anon_sym___inline] = ACTIONS(2182), + [anon_sym___inline__] = ACTIONS(2182), + [anon_sym___forceinline] = ACTIONS(2182), + [anon_sym_thread_local] = ACTIONS(2182), + [anon_sym___thread] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_constexpr] = ACTIONS(2182), + [anon_sym_volatile] = ACTIONS(2182), + [anon_sym_restrict] = ACTIONS(2182), + [anon_sym___restrict__] = ACTIONS(2182), + [anon_sym__Atomic] = ACTIONS(2182), + [anon_sym__Noreturn] = ACTIONS(2182), + [anon_sym_noreturn] = ACTIONS(2182), + [anon_sym__Nonnull] = ACTIONS(2182), + [anon_sym_mutable] = ACTIONS(2182), + [anon_sym_constinit] = ACTIONS(2182), + [anon_sym_consteval] = ACTIONS(2182), + [anon_sym_alignas] = ACTIONS(2182), + [anon_sym__Alignas] = ACTIONS(2182), + [sym_primitive_type] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), + [anon_sym_class] = ACTIONS(2182), + [anon_sym_struct] = ACTIONS(2182), + [anon_sym_union] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_switch] = ACTIONS(2182), + [anon_sym_case] = ACTIONS(2182), + [anon_sym_default] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_do] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_goto] = ACTIONS(2182), + [anon_sym_not] = ACTIONS(2182), + [anon_sym_compl] = ACTIONS(2182), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_sizeof] = ACTIONS(2182), + [anon_sym___alignof__] = ACTIONS(2182), + [anon_sym___alignof] = ACTIONS(2182), + [anon_sym__alignof] = ACTIONS(2182), + [anon_sym_alignof] = ACTIONS(2182), + [anon_sym__Alignof] = ACTIONS(2182), + [anon_sym_offsetof] = ACTIONS(2182), + [anon_sym__Generic] = ACTIONS(2182), + [anon_sym_asm] = ACTIONS(2182), + [anon_sym___asm__] = ACTIONS(2182), + [anon_sym___asm] = ACTIONS(2182), + [sym_number_literal] = ACTIONS(2184), + [anon_sym_L_SQUOTE] = ACTIONS(2184), + [anon_sym_u_SQUOTE] = ACTIONS(2184), + [anon_sym_U_SQUOTE] = ACTIONS(2184), + [anon_sym_u8_SQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_L_DQUOTE] = ACTIONS(2184), + [anon_sym_u_DQUOTE] = ACTIONS(2184), + [anon_sym_U_DQUOTE] = ACTIONS(2184), + [anon_sym_u8_DQUOTE] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym_true] = ACTIONS(2182), + [sym_false] = ACTIONS(2182), + [anon_sym_NULL] = ACTIONS(2182), + [anon_sym_nullptr] = ACTIONS(2182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2182), + [anon_sym_decltype] = ACTIONS(2182), + [anon_sym_explicit] = ACTIONS(2182), + [anon_sym_typename] = ACTIONS(2182), + [anon_sym_template] = ACTIONS(2182), + [anon_sym_operator] = ACTIONS(2182), + [anon_sym_try] = ACTIONS(2182), + [anon_sym_delete] = ACTIONS(2182), + [anon_sym_throw] = ACTIONS(2182), + [anon_sym_namespace] = ACTIONS(2182), + [anon_sym_using] = ACTIONS(2182), + [anon_sym_static_assert] = ACTIONS(2182), + [anon_sym_concept] = ACTIONS(2182), + [anon_sym_co_return] = ACTIONS(2182), + [anon_sym_co_yield] = ACTIONS(2182), + [anon_sym_R_DQUOTE] = ACTIONS(2184), + [anon_sym_LR_DQUOTE] = ACTIONS(2184), + [anon_sym_uR_DQUOTE] = ACTIONS(2184), + [anon_sym_UR_DQUOTE] = ACTIONS(2184), + [anon_sym_u8R_DQUOTE] = ACTIONS(2184), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2182), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2182), + [sym_alone_macro] = ACTIONS(2184), + [aux_sym_alone_macro_call_token1] = ACTIONS(2182), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2182), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_FORWARD] = ACTIONS(2182), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2182), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2182), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2182), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2182), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_PS_GET] = ACTIONS(2182), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2182), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2182), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2182), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2182), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2182), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2182), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2182), + [anon_sym_MOZ_COLD] = ACTIONS(2182), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2182), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2182), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2182), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2182), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2182), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2182), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2182), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2182), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2182), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2182), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2182), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2182), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2182), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_NONNULL] = ACTIONS(2182), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2182), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2182), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2182), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2182), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2182), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2182), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2182), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2182), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2182), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2182), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2182), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2182), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2182), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2182), + [anon_sym_MOZ_RAII] = ACTIONS(2182), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2182), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2182), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2182), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2182), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2182), + }, + [STATE(520)] = { + [sym_identifier] = ACTIONS(2373), + [aux_sym_preproc_include_token1] = ACTIONS(2373), + [aux_sym_preproc_def_token1] = ACTIONS(2373), + [aux_sym_preproc_if_token1] = ACTIONS(2373), + [aux_sym_preproc_if_token2] = ACTIONS(2373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2373), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2373), + [sym_preproc_directive] = ACTIONS(2373), + [anon_sym_LPAREN2] = ACTIONS(2375), + [anon_sym_BANG] = ACTIONS(2375), + [anon_sym_TILDE] = ACTIONS(2375), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2375), + [anon_sym_AMP_AMP] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym___extension__] = ACTIONS(2373), + [anon_sym_typedef] = ACTIONS(2373), + [anon_sym_virtual] = ACTIONS(2373), + [anon_sym_extern] = ACTIONS(2373), + [anon_sym___attribute__] = ACTIONS(2373), + [anon_sym___attribute] = ACTIONS(2373), + [anon_sym_COLON_COLON] = ACTIONS(2375), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2375), + [anon_sym___declspec] = ACTIONS(2373), + [anon_sym___based] = ACTIONS(2373), + [anon_sym___cdecl] = ACTIONS(2373), + [anon_sym___clrcall] = ACTIONS(2373), + [anon_sym___stdcall] = ACTIONS(2373), + [anon_sym___fastcall] = ACTIONS(2373), + [anon_sym___thiscall] = ACTIONS(2373), + [anon_sym___vectorcall] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_signed] = ACTIONS(2373), + [anon_sym_unsigned] = ACTIONS(2373), + [anon_sym_long] = ACTIONS(2373), + [anon_sym_short] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_register] = ACTIONS(2373), + [anon_sym_inline] = ACTIONS(2373), + [anon_sym___inline] = ACTIONS(2373), + [anon_sym___inline__] = ACTIONS(2373), + [anon_sym___forceinline] = ACTIONS(2373), + [anon_sym_thread_local] = ACTIONS(2373), + [anon_sym___thread] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_constexpr] = ACTIONS(2373), + [anon_sym_volatile] = ACTIONS(2373), + [anon_sym_restrict] = ACTIONS(2373), + [anon_sym___restrict__] = ACTIONS(2373), + [anon_sym__Atomic] = ACTIONS(2373), + [anon_sym__Noreturn] = ACTIONS(2373), + [anon_sym_noreturn] = ACTIONS(2373), + [anon_sym__Nonnull] = ACTIONS(2373), + [anon_sym_mutable] = ACTIONS(2373), + [anon_sym_constinit] = ACTIONS(2373), + [anon_sym_consteval] = ACTIONS(2373), + [anon_sym_alignas] = ACTIONS(2373), + [anon_sym__Alignas] = ACTIONS(2373), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_class] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_switch] = ACTIONS(2373), + [anon_sym_case] = ACTIONS(2373), + [anon_sym_default] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_goto] = ACTIONS(2373), + [anon_sym___try] = ACTIONS(2373), + [anon_sym___leave] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2373), + [anon_sym_compl] = ACTIONS(2373), + [anon_sym_DASH_DASH] = ACTIONS(2375), + [anon_sym_PLUS_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2373), + [anon_sym___alignof__] = ACTIONS(2373), + [anon_sym___alignof] = ACTIONS(2373), + [anon_sym__alignof] = ACTIONS(2373), + [anon_sym_alignof] = ACTIONS(2373), + [anon_sym__Alignof] = ACTIONS(2373), + [anon_sym_offsetof] = ACTIONS(2373), + [anon_sym__Generic] = ACTIONS(2373), + [anon_sym_asm] = ACTIONS(2373), + [anon_sym___asm__] = ACTIONS(2373), + [anon_sym___asm] = ACTIONS(2373), + [sym_number_literal] = ACTIONS(2375), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2375), + [anon_sym_u_DQUOTE] = ACTIONS(2375), + [anon_sym_U_DQUOTE] = ACTIONS(2375), + [anon_sym_u8_DQUOTE] = ACTIONS(2375), + [anon_sym_DQUOTE] = ACTIONS(2375), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [anon_sym_NULL] = ACTIONS(2373), + [anon_sym_nullptr] = ACTIONS(2373), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2373), + [anon_sym_decltype] = ACTIONS(2373), + [anon_sym_explicit] = ACTIONS(2373), + [anon_sym_typename] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(2373), + [anon_sym_operator] = ACTIONS(2373), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_delete] = ACTIONS(2373), + [anon_sym_throw] = ACTIONS(2373), + [anon_sym_namespace] = ACTIONS(2373), + [anon_sym_using] = ACTIONS(2373), + [anon_sym_static_assert] = ACTIONS(2373), + [anon_sym_concept] = ACTIONS(2373), + [anon_sym_co_return] = ACTIONS(2373), + [anon_sym_co_yield] = ACTIONS(2373), + [anon_sym_R_DQUOTE] = ACTIONS(2375), + [anon_sym_LR_DQUOTE] = ACTIONS(2375), + [anon_sym_uR_DQUOTE] = ACTIONS(2375), + [anon_sym_UR_DQUOTE] = ACTIONS(2375), + [anon_sym_u8R_DQUOTE] = ACTIONS(2375), + [anon_sym_co_await] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_requires] = ACTIONS(2373), + [sym_this] = ACTIONS(2373), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2373), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_FORWARD] = ACTIONS(2373), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2373), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2373), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2373), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2373), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_PS_GET] = ACTIONS(2373), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2373), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2373), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2373), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2373), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2373), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2373), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2373), + [anon_sym_MOZ_COLD] = ACTIONS(2373), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2373), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2373), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2373), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2373), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2373), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2373), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2373), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2373), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2373), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2373), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2373), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2373), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2373), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_NONNULL] = ACTIONS(2373), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2373), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2373), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2373), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2373), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2373), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2373), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2373), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2373), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2373), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2373), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2373), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2373), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2373), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2373), + [anon_sym_MOZ_RAII] = ACTIONS(2373), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2373), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2373), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2373), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2373), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2373), + }, + [STATE(521)] = { + [sym_identifier] = ACTIONS(2178), + [aux_sym_preproc_include_token1] = ACTIONS(2178), + [aux_sym_preproc_def_token1] = ACTIONS(2178), + [aux_sym_preproc_if_token1] = ACTIONS(2178), + [aux_sym_preproc_if_token2] = ACTIONS(2178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), + [sym_preproc_directive] = ACTIONS(2178), + [anon_sym_LPAREN2] = ACTIONS(2180), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_TILDE] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(2180), + [anon_sym_AMP_AMP] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2180), + [anon_sym___extension__] = ACTIONS(2178), + [anon_sym_typedef] = ACTIONS(2178), + [anon_sym_virtual] = ACTIONS(2178), + [anon_sym_extern] = ACTIONS(2178), + [anon_sym___attribute__] = ACTIONS(2178), + [anon_sym___attribute] = ACTIONS(2178), + [anon_sym_COLON_COLON] = ACTIONS(2180), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2180), + [anon_sym___declspec] = ACTIONS(2178), + [anon_sym___based] = ACTIONS(2178), + [anon_sym___cdecl] = ACTIONS(2178), + [anon_sym___clrcall] = ACTIONS(2178), + [anon_sym___stdcall] = ACTIONS(2178), + [anon_sym___fastcall] = ACTIONS(2178), + [anon_sym___thiscall] = ACTIONS(2178), + [anon_sym___vectorcall] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2180), + [anon_sym_signed] = ACTIONS(2178), + [anon_sym_unsigned] = ACTIONS(2178), + [anon_sym_long] = ACTIONS(2178), + [anon_sym_short] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_register] = ACTIONS(2178), + [anon_sym_inline] = ACTIONS(2178), + [anon_sym___inline] = ACTIONS(2178), + [anon_sym___inline__] = ACTIONS(2178), + [anon_sym___forceinline] = ACTIONS(2178), + [anon_sym_thread_local] = ACTIONS(2178), + [anon_sym___thread] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_constexpr] = ACTIONS(2178), + [anon_sym_volatile] = ACTIONS(2178), + [anon_sym_restrict] = ACTIONS(2178), + [anon_sym___restrict__] = ACTIONS(2178), + [anon_sym__Atomic] = ACTIONS(2178), + [anon_sym__Noreturn] = ACTIONS(2178), + [anon_sym_noreturn] = ACTIONS(2178), + [anon_sym__Nonnull] = ACTIONS(2178), + [anon_sym_mutable] = ACTIONS(2178), + [anon_sym_constinit] = ACTIONS(2178), + [anon_sym_consteval] = ACTIONS(2178), + [anon_sym_alignas] = ACTIONS(2178), + [anon_sym__Alignas] = ACTIONS(2178), + [sym_primitive_type] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_struct] = ACTIONS(2178), + [anon_sym_union] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_case] = ACTIONS(2178), + [anon_sym_default] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_goto] = ACTIONS(2178), + [anon_sym___try] = ACTIONS(2178), + [anon_sym___leave] = ACTIONS(2178), + [anon_sym_not] = ACTIONS(2178), + [anon_sym_compl] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(2178), + [anon_sym___alignof__] = ACTIONS(2178), + [anon_sym___alignof] = ACTIONS(2178), + [anon_sym__alignof] = ACTIONS(2178), + [anon_sym_alignof] = ACTIONS(2178), + [anon_sym__Alignof] = ACTIONS(2178), + [anon_sym_offsetof] = ACTIONS(2178), + [anon_sym__Generic] = ACTIONS(2178), + [anon_sym_asm] = ACTIONS(2178), + [anon_sym___asm__] = ACTIONS(2178), + [anon_sym___asm] = ACTIONS(2178), + [sym_number_literal] = ACTIONS(2180), + [anon_sym_L_SQUOTE] = ACTIONS(2180), + [anon_sym_u_SQUOTE] = ACTIONS(2180), + [anon_sym_U_SQUOTE] = ACTIONS(2180), + [anon_sym_u8_SQUOTE] = ACTIONS(2180), + [anon_sym_SQUOTE] = ACTIONS(2180), + [anon_sym_L_DQUOTE] = ACTIONS(2180), + [anon_sym_u_DQUOTE] = ACTIONS(2180), + [anon_sym_U_DQUOTE] = ACTIONS(2180), + [anon_sym_u8_DQUOTE] = ACTIONS(2180), + [anon_sym_DQUOTE] = ACTIONS(2180), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [anon_sym_NULL] = ACTIONS(2178), + [anon_sym_nullptr] = ACTIONS(2178), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2178), + [anon_sym_decltype] = ACTIONS(2178), + [anon_sym_explicit] = ACTIONS(2178), + [anon_sym_typename] = ACTIONS(2178), + [anon_sym_template] = ACTIONS(2178), + [anon_sym_operator] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_static_assert] = ACTIONS(2178), + [anon_sym_concept] = ACTIONS(2178), + [anon_sym_co_return] = ACTIONS(2178), + [anon_sym_co_yield] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_requires] = ACTIONS(2178), + [sym_this] = ACTIONS(2178), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2178), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_FORWARD] = ACTIONS(2178), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2178), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2178), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2178), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2178), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_PS_GET] = ACTIONS(2178), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2178), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2178), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2178), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2178), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2178), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2178), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2178), + [anon_sym_MOZ_COLD] = ACTIONS(2178), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2178), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2178), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2178), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2178), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2178), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2178), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2178), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2178), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2178), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2178), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2178), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2178), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2178), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_NONNULL] = ACTIONS(2178), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2178), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2178), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2178), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2178), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2178), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2178), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2178), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2178), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2178), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2178), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2178), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2178), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2178), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2178), + [anon_sym_MOZ_RAII] = ACTIONS(2178), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2178), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2178), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2178), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2178), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2178), + }, + [STATE(522)] = { + [sym_identifier] = ACTIONS(2256), + [aux_sym_preproc_include_token1] = ACTIONS(2256), + [aux_sym_preproc_def_token1] = ACTIONS(2256), + [aux_sym_preproc_if_token1] = ACTIONS(2256), + [aux_sym_preproc_if_token2] = ACTIONS(2256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2256), + [sym_preproc_directive] = ACTIONS(2256), + [anon_sym_LPAREN2] = ACTIONS(2258), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_STAR] = ACTIONS(2258), + [anon_sym_AMP_AMP] = ACTIONS(2258), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym___extension__] = ACTIONS(2256), + [anon_sym_typedef] = ACTIONS(2256), + [anon_sym_virtual] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym_COLON_COLON] = ACTIONS(2258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2258), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym___based] = ACTIONS(2256), + [anon_sym___cdecl] = ACTIONS(2256), + [anon_sym___clrcall] = ACTIONS(2256), + [anon_sym___stdcall] = ACTIONS(2256), + [anon_sym___fastcall] = ACTIONS(2256), + [anon_sym___thiscall] = ACTIONS(2256), + [anon_sym___vectorcall] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(2258), + [anon_sym_signed] = ACTIONS(2256), + [anon_sym_unsigned] = ACTIONS(2256), + [anon_sym_long] = ACTIONS(2256), + [anon_sym_short] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2256), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [anon_sym___inline] = ACTIONS(2256), + [anon_sym___inline__] = ACTIONS(2256), + [anon_sym___forceinline] = ACTIONS(2256), + [anon_sym_thread_local] = ACTIONS(2256), + [anon_sym___thread] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_constexpr] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym___restrict__] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym__Noreturn] = ACTIONS(2256), + [anon_sym_noreturn] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym_mutable] = ACTIONS(2256), + [anon_sym_constinit] = ACTIONS(2256), + [anon_sym_consteval] = ACTIONS(2256), + [anon_sym_alignas] = ACTIONS(2256), + [anon_sym__Alignas] = ACTIONS(2256), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_class] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_switch] = ACTIONS(2256), + [anon_sym_case] = ACTIONS(2256), + [anon_sym_default] = ACTIONS(2256), + [anon_sym_while] = ACTIONS(2256), + [anon_sym_do] = ACTIONS(2256), + [anon_sym_for] = ACTIONS(2256), + [anon_sym_return] = ACTIONS(2256), + [anon_sym_break] = ACTIONS(2256), + [anon_sym_continue] = ACTIONS(2256), + [anon_sym_goto] = ACTIONS(2256), + [anon_sym___try] = ACTIONS(2256), + [anon_sym___leave] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2256), + [anon_sym_compl] = ACTIONS(2256), + [anon_sym_DASH_DASH] = ACTIONS(2258), + [anon_sym_PLUS_PLUS] = ACTIONS(2258), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2256), + [anon_sym___alignof] = ACTIONS(2256), + [anon_sym__alignof] = ACTIONS(2256), + [anon_sym_alignof] = ACTIONS(2256), + [anon_sym__Alignof] = ACTIONS(2256), + [anon_sym_offsetof] = ACTIONS(2256), + [anon_sym__Generic] = ACTIONS(2256), + [anon_sym_asm] = ACTIONS(2256), + [anon_sym___asm__] = ACTIONS(2256), + [anon_sym___asm] = ACTIONS(2256), + [sym_number_literal] = ACTIONS(2258), + [anon_sym_L_SQUOTE] = ACTIONS(2258), + [anon_sym_u_SQUOTE] = ACTIONS(2258), + [anon_sym_U_SQUOTE] = ACTIONS(2258), + [anon_sym_u8_SQUOTE] = ACTIONS(2258), + [anon_sym_SQUOTE] = ACTIONS(2258), + [anon_sym_L_DQUOTE] = ACTIONS(2258), + [anon_sym_u_DQUOTE] = ACTIONS(2258), + [anon_sym_U_DQUOTE] = ACTIONS(2258), + [anon_sym_u8_DQUOTE] = ACTIONS(2258), + [anon_sym_DQUOTE] = ACTIONS(2258), + [sym_true] = ACTIONS(2256), + [sym_false] = ACTIONS(2256), + [anon_sym_NULL] = ACTIONS(2256), + [anon_sym_nullptr] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2256), + [anon_sym_decltype] = ACTIONS(2256), + [anon_sym_explicit] = ACTIONS(2256), + [anon_sym_typename] = ACTIONS(2256), + [anon_sym_template] = ACTIONS(2256), + [anon_sym_operator] = ACTIONS(2256), + [anon_sym_try] = ACTIONS(2256), + [anon_sym_delete] = ACTIONS(2256), + [anon_sym_throw] = ACTIONS(2256), + [anon_sym_namespace] = ACTIONS(2256), + [anon_sym_using] = ACTIONS(2256), + [anon_sym_static_assert] = ACTIONS(2256), + [anon_sym_concept] = ACTIONS(2256), + [anon_sym_co_return] = ACTIONS(2256), + [anon_sym_co_yield] = ACTIONS(2256), + [anon_sym_R_DQUOTE] = ACTIONS(2258), + [anon_sym_LR_DQUOTE] = ACTIONS(2258), + [anon_sym_uR_DQUOTE] = ACTIONS(2258), + [anon_sym_UR_DQUOTE] = ACTIONS(2258), + [anon_sym_u8R_DQUOTE] = ACTIONS(2258), + [anon_sym_co_await] = ACTIONS(2256), + [anon_sym_new] = ACTIONS(2256), + [anon_sym_requires] = ACTIONS(2256), + [sym_this] = ACTIONS(2256), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2256), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_FORWARD] = ACTIONS(2256), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2256), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2256), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2256), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_PS_GET] = ACTIONS(2256), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2256), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2256), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2256), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2256), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2256), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2256), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2256), + [anon_sym_MOZ_COLD] = ACTIONS(2256), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2256), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2256), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2256), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2256), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2256), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2256), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2256), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2256), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2256), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2256), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2256), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2256), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2256), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_NONNULL] = ACTIONS(2256), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2256), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2256), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2256), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2256), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2256), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2256), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2256), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2256), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2256), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2256), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2256), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2256), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2256), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2256), + [anon_sym_MOZ_RAII] = ACTIONS(2256), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2256), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2256), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2256), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2256), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2256), + }, + [STATE(523)] = { + [sym_identifier] = ACTIONS(2444), + [aux_sym_preproc_include_token1] = ACTIONS(2444), + [aux_sym_preproc_def_token1] = ACTIONS(2444), + [aux_sym_preproc_if_token1] = ACTIONS(2444), + [aux_sym_preproc_if_token2] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [sym_preproc_directive] = ACTIONS(2444), + [anon_sym_LPAREN2] = ACTIONS(2446), + [anon_sym_BANG] = ACTIONS(2446), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2444), + [anon_sym_PLUS] = ACTIONS(2444), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_AMP_AMP] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_SEMI] = ACTIONS(2446), + [anon_sym___extension__] = ACTIONS(2444), + [anon_sym_typedef] = ACTIONS(2444), + [anon_sym_virtual] = ACTIONS(2444), + [anon_sym_extern] = ACTIONS(2444), + [anon_sym___attribute__] = ACTIONS(2444), + [anon_sym___attribute] = ACTIONS(2444), + [anon_sym_COLON_COLON] = ACTIONS(2446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2446), + [anon_sym___declspec] = ACTIONS(2444), + [anon_sym___based] = ACTIONS(2444), + [anon_sym___cdecl] = ACTIONS(2444), + [anon_sym___clrcall] = ACTIONS(2444), + [anon_sym___stdcall] = ACTIONS(2444), + [anon_sym___fastcall] = ACTIONS(2444), + [anon_sym___thiscall] = ACTIONS(2444), + [anon_sym___vectorcall] = ACTIONS(2444), + [anon_sym_LBRACE] = ACTIONS(2446), + [anon_sym_signed] = ACTIONS(2444), + [anon_sym_unsigned] = ACTIONS(2444), + [anon_sym_long] = ACTIONS(2444), + [anon_sym_short] = ACTIONS(2444), + [anon_sym_LBRACK] = ACTIONS(2444), + [anon_sym_static] = ACTIONS(2444), + [anon_sym_register] = ACTIONS(2444), + [anon_sym_inline] = ACTIONS(2444), + [anon_sym___inline] = ACTIONS(2444), + [anon_sym___inline__] = ACTIONS(2444), + [anon_sym___forceinline] = ACTIONS(2444), + [anon_sym_thread_local] = ACTIONS(2444), + [anon_sym___thread] = ACTIONS(2444), + [anon_sym_const] = ACTIONS(2444), + [anon_sym_constexpr] = ACTIONS(2444), + [anon_sym_volatile] = ACTIONS(2444), + [anon_sym_restrict] = ACTIONS(2444), + [anon_sym___restrict__] = ACTIONS(2444), + [anon_sym__Atomic] = ACTIONS(2444), + [anon_sym__Noreturn] = ACTIONS(2444), + [anon_sym_noreturn] = ACTIONS(2444), + [anon_sym__Nonnull] = ACTIONS(2444), + [anon_sym_mutable] = ACTIONS(2444), + [anon_sym_constinit] = ACTIONS(2444), + [anon_sym_consteval] = ACTIONS(2444), + [anon_sym_alignas] = ACTIONS(2444), + [anon_sym__Alignas] = ACTIONS(2444), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_enum] = ACTIONS(2444), + [anon_sym_class] = ACTIONS(2444), + [anon_sym_struct] = ACTIONS(2444), + [anon_sym_union] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2444), + [anon_sym_switch] = ACTIONS(2444), + [anon_sym_case] = ACTIONS(2444), + [anon_sym_default] = ACTIONS(2444), + [anon_sym_while] = ACTIONS(2444), + [anon_sym_do] = ACTIONS(2444), + [anon_sym_for] = ACTIONS(2444), + [anon_sym_return] = ACTIONS(2444), + [anon_sym_break] = ACTIONS(2444), + [anon_sym_continue] = ACTIONS(2444), + [anon_sym_goto] = ACTIONS(2444), + [anon_sym___try] = ACTIONS(2444), + [anon_sym___leave] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(2444), + [anon_sym_compl] = ACTIONS(2444), + [anon_sym_DASH_DASH] = ACTIONS(2446), + [anon_sym_PLUS_PLUS] = ACTIONS(2446), + [anon_sym_sizeof] = ACTIONS(2444), + [anon_sym___alignof__] = ACTIONS(2444), + [anon_sym___alignof] = ACTIONS(2444), + [anon_sym__alignof] = ACTIONS(2444), + [anon_sym_alignof] = ACTIONS(2444), + [anon_sym__Alignof] = ACTIONS(2444), + [anon_sym_offsetof] = ACTIONS(2444), + [anon_sym__Generic] = ACTIONS(2444), + [anon_sym_asm] = ACTIONS(2444), + [anon_sym___asm__] = ACTIONS(2444), + [anon_sym___asm] = ACTIONS(2444), + [sym_number_literal] = ACTIONS(2446), + [anon_sym_L_SQUOTE] = ACTIONS(2446), + [anon_sym_u_SQUOTE] = ACTIONS(2446), + [anon_sym_U_SQUOTE] = ACTIONS(2446), + [anon_sym_u8_SQUOTE] = ACTIONS(2446), + [anon_sym_SQUOTE] = ACTIONS(2446), + [anon_sym_L_DQUOTE] = ACTIONS(2446), + [anon_sym_u_DQUOTE] = ACTIONS(2446), + [anon_sym_U_DQUOTE] = ACTIONS(2446), + [anon_sym_u8_DQUOTE] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [sym_true] = ACTIONS(2444), + [sym_false] = ACTIONS(2444), + [anon_sym_NULL] = ACTIONS(2444), + [anon_sym_nullptr] = ACTIONS(2444), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2444), + [anon_sym_decltype] = ACTIONS(2444), + [anon_sym_explicit] = ACTIONS(2444), + [anon_sym_typename] = ACTIONS(2444), + [anon_sym_template] = ACTIONS(2444), + [anon_sym_operator] = ACTIONS(2444), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_delete] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2444), + [anon_sym_namespace] = ACTIONS(2444), + [anon_sym_using] = ACTIONS(2444), + [anon_sym_static_assert] = ACTIONS(2444), + [anon_sym_concept] = ACTIONS(2444), + [anon_sym_co_return] = ACTIONS(2444), + [anon_sym_co_yield] = ACTIONS(2444), + [anon_sym_R_DQUOTE] = ACTIONS(2446), + [anon_sym_LR_DQUOTE] = ACTIONS(2446), + [anon_sym_uR_DQUOTE] = ACTIONS(2446), + [anon_sym_UR_DQUOTE] = ACTIONS(2446), + [anon_sym_u8R_DQUOTE] = ACTIONS(2446), + [anon_sym_co_await] = ACTIONS(2444), + [anon_sym_new] = ACTIONS(2444), + [anon_sym_requires] = ACTIONS(2444), + [sym_this] = ACTIONS(2444), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2444), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_FORWARD] = ACTIONS(2444), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2444), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2444), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2444), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2444), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_PS_GET] = ACTIONS(2444), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2444), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2444), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2444), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2444), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2444), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2444), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2444), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2444), + [anon_sym_MOZ_COLD] = ACTIONS(2444), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2444), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2444), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2444), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2444), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2444), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2444), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2444), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2444), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2444), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2444), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2444), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2444), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2444), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_NONNULL] = ACTIONS(2444), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2444), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2444), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2444), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2444), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2444), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2444), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2444), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2444), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2444), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2444), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2444), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2444), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2444), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2444), + [anon_sym_MOZ_RAII] = ACTIONS(2444), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2444), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2444), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2444), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2444), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2444), + }, + [STATE(524)] = { + [ts_builtin_sym_end] = ACTIONS(2188), + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_include_token1] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym___attribute] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2188), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym___cdecl] = ACTIONS(2186), + [anon_sym___clrcall] = ACTIONS(2186), + [anon_sym___stdcall] = ACTIONS(2186), + [anon_sym___fastcall] = ACTIONS(2186), + [anon_sym___thiscall] = ACTIONS(2186), + [anon_sym___vectorcall] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym__Nonnull] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym__Alignas] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_switch] = ACTIONS(2186), + [anon_sym_case] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_goto] = ACTIONS(2186), + [anon_sym_not] = ACTIONS(2186), + [anon_sym_compl] = ACTIONS(2186), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_sizeof] = ACTIONS(2186), + [anon_sym___alignof__] = ACTIONS(2186), + [anon_sym___alignof] = ACTIONS(2186), + [anon_sym__alignof] = ACTIONS(2186), + [anon_sym_alignof] = ACTIONS(2186), + [anon_sym__Alignof] = ACTIONS(2186), + [anon_sym_offsetof] = ACTIONS(2186), + [anon_sym__Generic] = ACTIONS(2186), + [anon_sym_asm] = ACTIONS(2186), + [anon_sym___asm__] = ACTIONS(2186), + [anon_sym___asm] = ACTIONS(2186), + [sym_number_literal] = ACTIONS(2188), + [anon_sym_L_SQUOTE] = ACTIONS(2188), + [anon_sym_u_SQUOTE] = ACTIONS(2188), + [anon_sym_U_SQUOTE] = ACTIONS(2188), + [anon_sym_u8_SQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_L_DQUOTE] = ACTIONS(2188), + [anon_sym_u_DQUOTE] = ACTIONS(2188), + [anon_sym_U_DQUOTE] = ACTIONS(2188), + [anon_sym_u8_DQUOTE] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(2188), + [sym_true] = ACTIONS(2186), + [sym_false] = ACTIONS(2186), + [anon_sym_NULL] = ACTIONS(2186), + [anon_sym_nullptr] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_delete] = ACTIONS(2186), + [anon_sym_throw] = ACTIONS(2186), + [anon_sym_namespace] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [anon_sym_concept] = ACTIONS(2186), + [anon_sym_co_return] = ACTIONS(2186), + [anon_sym_co_yield] = ACTIONS(2186), + [anon_sym_R_DQUOTE] = ACTIONS(2188), + [anon_sym_LR_DQUOTE] = ACTIONS(2188), + [anon_sym_uR_DQUOTE] = ACTIONS(2188), + [anon_sym_UR_DQUOTE] = ACTIONS(2188), + [anon_sym_u8R_DQUOTE] = ACTIONS(2188), + [anon_sym_co_await] = ACTIONS(2186), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2186), + [sym_alone_macro] = ACTIONS(2188), + [aux_sym_alone_macro_call_token1] = ACTIONS(2186), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2186), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_FORWARD] = ACTIONS(2186), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2186), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2186), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2186), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2186), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_PS_GET] = ACTIONS(2186), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2186), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2186), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2186), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2186), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2186), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2186), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2186), + [anon_sym_MOZ_COLD] = ACTIONS(2186), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2186), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2186), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2186), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2186), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2186), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2186), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2186), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2186), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2186), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2186), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2186), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2186), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2186), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_NONNULL] = ACTIONS(2186), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2186), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2186), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2186), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2186), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2186), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2186), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2186), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2186), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2186), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2186), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2186), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2186), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2186), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2186), + [anon_sym_MOZ_RAII] = ACTIONS(2186), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2186), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2186), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2186), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2186), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2186), + }, + [STATE(525)] = { + [ts_builtin_sym_end] = ACTIONS(2406), + [sym_identifier] = ACTIONS(2404), + [aux_sym_preproc_include_token1] = ACTIONS(2404), + [aux_sym_preproc_def_token1] = ACTIONS(2404), + [aux_sym_preproc_if_token1] = ACTIONS(2404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2404), + [sym_preproc_directive] = ACTIONS(2404), + [anon_sym_LPAREN2] = ACTIONS(2406), + [anon_sym_BANG] = ACTIONS(2406), + [anon_sym_TILDE] = ACTIONS(2406), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_STAR] = ACTIONS(2406), + [anon_sym_AMP_AMP] = ACTIONS(2406), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2406), + [anon_sym___extension__] = ACTIONS(2404), + [anon_sym_typedef] = ACTIONS(2404), + [anon_sym_virtual] = ACTIONS(2404), + [anon_sym_extern] = ACTIONS(2404), + [anon_sym___attribute__] = ACTIONS(2404), + [anon_sym___attribute] = ACTIONS(2404), + [anon_sym_COLON_COLON] = ACTIONS(2406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2406), + [anon_sym___declspec] = ACTIONS(2404), + [anon_sym___based] = ACTIONS(2404), + [anon_sym___cdecl] = ACTIONS(2404), + [anon_sym___clrcall] = ACTIONS(2404), + [anon_sym___stdcall] = ACTIONS(2404), + [anon_sym___fastcall] = ACTIONS(2404), + [anon_sym___thiscall] = ACTIONS(2404), + [anon_sym___vectorcall] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2406), + [anon_sym_signed] = ACTIONS(2404), + [anon_sym_unsigned] = ACTIONS(2404), + [anon_sym_long] = ACTIONS(2404), + [anon_sym_short] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_register] = ACTIONS(2404), + [anon_sym_inline] = ACTIONS(2404), + [anon_sym___inline] = ACTIONS(2404), + [anon_sym___inline__] = ACTIONS(2404), + [anon_sym___forceinline] = ACTIONS(2404), + [anon_sym_thread_local] = ACTIONS(2404), + [anon_sym___thread] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_constexpr] = ACTIONS(2404), + [anon_sym_volatile] = ACTIONS(2404), + [anon_sym_restrict] = ACTIONS(2404), + [anon_sym___restrict__] = ACTIONS(2404), + [anon_sym__Atomic] = ACTIONS(2404), + [anon_sym__Noreturn] = ACTIONS(2404), + [anon_sym_noreturn] = ACTIONS(2404), + [anon_sym__Nonnull] = ACTIONS(2404), + [anon_sym_mutable] = ACTIONS(2404), + [anon_sym_constinit] = ACTIONS(2404), + [anon_sym_consteval] = ACTIONS(2404), + [anon_sym_alignas] = ACTIONS(2404), + [anon_sym__Alignas] = ACTIONS(2404), + [sym_primitive_type] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_struct] = ACTIONS(2404), + [anon_sym_union] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_case] = ACTIONS(2404), + [anon_sym_default] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_goto] = ACTIONS(2404), + [anon_sym_not] = ACTIONS(2404), + [anon_sym_compl] = ACTIONS(2404), + [anon_sym_DASH_DASH] = ACTIONS(2406), + [anon_sym_PLUS_PLUS] = ACTIONS(2406), + [anon_sym_sizeof] = ACTIONS(2404), + [anon_sym___alignof__] = ACTIONS(2404), + [anon_sym___alignof] = ACTIONS(2404), + [anon_sym__alignof] = ACTIONS(2404), + [anon_sym_alignof] = ACTIONS(2404), + [anon_sym__Alignof] = ACTIONS(2404), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_asm] = ACTIONS(2404), + [anon_sym___asm__] = ACTIONS(2404), + [anon_sym___asm] = ACTIONS(2404), + [sym_number_literal] = ACTIONS(2406), + [anon_sym_L_SQUOTE] = ACTIONS(2406), + [anon_sym_u_SQUOTE] = ACTIONS(2406), + [anon_sym_U_SQUOTE] = ACTIONS(2406), + [anon_sym_u8_SQUOTE] = ACTIONS(2406), + [anon_sym_SQUOTE] = ACTIONS(2406), + [anon_sym_L_DQUOTE] = ACTIONS(2406), + [anon_sym_u_DQUOTE] = ACTIONS(2406), + [anon_sym_U_DQUOTE] = ACTIONS(2406), + [anon_sym_u8_DQUOTE] = ACTIONS(2406), + [anon_sym_DQUOTE] = ACTIONS(2406), + [sym_true] = ACTIONS(2404), + [sym_false] = ACTIONS(2404), + [anon_sym_NULL] = ACTIONS(2404), + [anon_sym_nullptr] = ACTIONS(2404), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2404), + [anon_sym_decltype] = ACTIONS(2404), + [anon_sym_explicit] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2404), + [anon_sym_template] = ACTIONS(2404), + [anon_sym_operator] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_delete] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_using] = ACTIONS(2404), + [anon_sym_static_assert] = ACTIONS(2404), + [anon_sym_concept] = ACTIONS(2404), + [anon_sym_co_return] = ACTIONS(2404), + [anon_sym_co_yield] = ACTIONS(2404), + [anon_sym_R_DQUOTE] = ACTIONS(2406), + [anon_sym_LR_DQUOTE] = ACTIONS(2406), + [anon_sym_uR_DQUOTE] = ACTIONS(2406), + [anon_sym_UR_DQUOTE] = ACTIONS(2406), + [anon_sym_u8R_DQUOTE] = ACTIONS(2406), + [anon_sym_co_await] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_requires] = ACTIONS(2404), + [sym_this] = ACTIONS(2404), + [sym_alone_macro] = ACTIONS(2406), + [aux_sym_alone_macro_call_token1] = ACTIONS(2404), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2404), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_FORWARD] = ACTIONS(2404), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2404), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2404), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2404), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2404), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_PS_GET] = ACTIONS(2404), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2404), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2404), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2404), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2404), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2404), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2404), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2404), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2404), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2404), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2404), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2404), + [anon_sym_MOZ_COLD] = ACTIONS(2404), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2404), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2404), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2404), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2404), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2404), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2404), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2404), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2404), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2404), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2404), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2404), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2404), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2404), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2404), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2404), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2404), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2404), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2404), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2404), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2404), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_NONNULL] = ACTIONS(2404), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2404), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2404), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2404), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2404), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2404), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_NORETURN] = ACTIONS(2404), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2404), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2404), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2404), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2404), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2404), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2404), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2404), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2404), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2404), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2404), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2404), + [anon_sym_MOZ_RAII] = ACTIONS(2404), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2404), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2404), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2404), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2404), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2404), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2404), + }, + [STATE(526)] = { + [sym_identifier] = ACTIONS(2236), + [aux_sym_preproc_include_token1] = ACTIONS(2236), + [aux_sym_preproc_def_token1] = ACTIONS(2236), + [aux_sym_preproc_if_token1] = ACTIONS(2236), + [aux_sym_preproc_if_token2] = ACTIONS(2236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2236), + [sym_preproc_directive] = ACTIONS(2236), + [anon_sym_LPAREN2] = ACTIONS(2238), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_TILDE] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_STAR] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_typedef] = ACTIONS(2236), + [anon_sym_virtual] = ACTIONS(2236), + [anon_sym_extern] = ACTIONS(2236), + [anon_sym___attribute__] = ACTIONS(2236), + [anon_sym___attribute] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2238), + [anon_sym___declspec] = ACTIONS(2236), + [anon_sym___based] = ACTIONS(2236), + [anon_sym___cdecl] = ACTIONS(2236), + [anon_sym___clrcall] = ACTIONS(2236), + [anon_sym___stdcall] = ACTIONS(2236), + [anon_sym___fastcall] = ACTIONS(2236), + [anon_sym___thiscall] = ACTIONS(2236), + [anon_sym___vectorcall] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_signed] = ACTIONS(2236), + [anon_sym_unsigned] = ACTIONS(2236), + [anon_sym_long] = ACTIONS(2236), + [anon_sym_short] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_register] = ACTIONS(2236), + [anon_sym_inline] = ACTIONS(2236), + [anon_sym___inline] = ACTIONS(2236), + [anon_sym___inline__] = ACTIONS(2236), + [anon_sym___forceinline] = ACTIONS(2236), + [anon_sym_thread_local] = ACTIONS(2236), + [anon_sym___thread] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(2236), + [anon_sym_constexpr] = ACTIONS(2236), + [anon_sym_volatile] = ACTIONS(2236), + [anon_sym_restrict] = ACTIONS(2236), + [anon_sym___restrict__] = ACTIONS(2236), + [anon_sym__Atomic] = ACTIONS(2236), + [anon_sym__Noreturn] = ACTIONS(2236), + [anon_sym_noreturn] = ACTIONS(2236), + [anon_sym__Nonnull] = ACTIONS(2236), + [anon_sym_mutable] = ACTIONS(2236), + [anon_sym_constinit] = ACTIONS(2236), + [anon_sym_consteval] = ACTIONS(2236), + [anon_sym_alignas] = ACTIONS(2236), + [anon_sym__Alignas] = ACTIONS(2236), + [sym_primitive_type] = ACTIONS(2236), + [anon_sym_enum] = ACTIONS(2236), + [anon_sym_class] = ACTIONS(2236), + [anon_sym_struct] = ACTIONS(2236), + [anon_sym_union] = ACTIONS(2236), + [anon_sym_if] = ACTIONS(2236), + [anon_sym_switch] = ACTIONS(2236), + [anon_sym_case] = ACTIONS(2236), + [anon_sym_default] = ACTIONS(2236), + [anon_sym_while] = ACTIONS(2236), + [anon_sym_do] = ACTIONS(2236), + [anon_sym_for] = ACTIONS(2236), + [anon_sym_return] = ACTIONS(2236), + [anon_sym_break] = ACTIONS(2236), + [anon_sym_continue] = ACTIONS(2236), + [anon_sym_goto] = ACTIONS(2236), + [anon_sym___try] = ACTIONS(2236), + [anon_sym___leave] = ACTIONS(2236), + [anon_sym_not] = ACTIONS(2236), + [anon_sym_compl] = ACTIONS(2236), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_sizeof] = ACTIONS(2236), + [anon_sym___alignof__] = ACTIONS(2236), + [anon_sym___alignof] = ACTIONS(2236), + [anon_sym__alignof] = ACTIONS(2236), + [anon_sym_alignof] = ACTIONS(2236), + [anon_sym__Alignof] = ACTIONS(2236), + [anon_sym_offsetof] = ACTIONS(2236), + [anon_sym__Generic] = ACTIONS(2236), + [anon_sym_asm] = ACTIONS(2236), + [anon_sym___asm__] = ACTIONS(2236), + [anon_sym___asm] = ACTIONS(2236), + [sym_number_literal] = ACTIONS(2238), + [anon_sym_L_SQUOTE] = ACTIONS(2238), + [anon_sym_u_SQUOTE] = ACTIONS(2238), + [anon_sym_U_SQUOTE] = ACTIONS(2238), + [anon_sym_u8_SQUOTE] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2238), + [anon_sym_L_DQUOTE] = ACTIONS(2238), + [anon_sym_u_DQUOTE] = ACTIONS(2238), + [anon_sym_U_DQUOTE] = ACTIONS(2238), + [anon_sym_u8_DQUOTE] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2238), + [sym_true] = ACTIONS(2236), + [sym_false] = ACTIONS(2236), + [anon_sym_NULL] = ACTIONS(2236), + [anon_sym_nullptr] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2236), + [anon_sym_decltype] = ACTIONS(2236), + [anon_sym_explicit] = ACTIONS(2236), + [anon_sym_typename] = ACTIONS(2236), + [anon_sym_template] = ACTIONS(2236), + [anon_sym_operator] = ACTIONS(2236), + [anon_sym_try] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2236), + [anon_sym_throw] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2236), + [anon_sym_using] = ACTIONS(2236), + [anon_sym_static_assert] = ACTIONS(2236), + [anon_sym_concept] = ACTIONS(2236), + [anon_sym_co_return] = ACTIONS(2236), + [anon_sym_co_yield] = ACTIONS(2236), + [anon_sym_R_DQUOTE] = ACTIONS(2238), + [anon_sym_LR_DQUOTE] = ACTIONS(2238), + [anon_sym_uR_DQUOTE] = ACTIONS(2238), + [anon_sym_UR_DQUOTE] = ACTIONS(2238), + [anon_sym_u8R_DQUOTE] = ACTIONS(2238), + [anon_sym_co_await] = ACTIONS(2236), + [anon_sym_new] = ACTIONS(2236), + [anon_sym_requires] = ACTIONS(2236), + [sym_this] = ACTIONS(2236), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2236), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_FORWARD] = ACTIONS(2236), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2236), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2236), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2236), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2236), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_PS_GET] = ACTIONS(2236), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2236), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2236), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2236), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2236), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2236), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2236), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2236), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2236), + [anon_sym_MOZ_COLD] = ACTIONS(2236), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2236), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2236), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2236), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2236), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2236), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2236), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2236), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2236), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2236), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2236), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2236), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2236), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2236), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_NONNULL] = ACTIONS(2236), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2236), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2236), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2236), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2236), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2236), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2236), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2236), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2236), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2236), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2236), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2236), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2236), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2236), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2236), + [anon_sym_MOZ_RAII] = ACTIONS(2236), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2236), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2236), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2236), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2236), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2236), + }, + [STATE(527)] = { + [sym_identifier] = ACTIONS(2264), + [aux_sym_preproc_include_token1] = ACTIONS(2264), + [aux_sym_preproc_def_token1] = ACTIONS(2264), + [aux_sym_preproc_if_token1] = ACTIONS(2264), + [aux_sym_preproc_if_token2] = ACTIONS(2264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2264), + [sym_preproc_directive] = ACTIONS(2264), + [anon_sym_LPAREN2] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_AMP] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym___extension__] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2264), + [anon_sym_virtual] = ACTIONS(2264), + [anon_sym_extern] = ACTIONS(2264), + [anon_sym___attribute__] = ACTIONS(2264), + [anon_sym___attribute] = ACTIONS(2264), + [anon_sym_COLON_COLON] = ACTIONS(2266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2266), + [anon_sym___declspec] = ACTIONS(2264), + [anon_sym___based] = ACTIONS(2264), + [anon_sym___cdecl] = ACTIONS(2264), + [anon_sym___clrcall] = ACTIONS(2264), + [anon_sym___stdcall] = ACTIONS(2264), + [anon_sym___fastcall] = ACTIONS(2264), + [anon_sym___thiscall] = ACTIONS(2264), + [anon_sym___vectorcall] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2266), + [anon_sym_signed] = ACTIONS(2264), + [anon_sym_unsigned] = ACTIONS(2264), + [anon_sym_long] = ACTIONS(2264), + [anon_sym_short] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_register] = ACTIONS(2264), + [anon_sym_inline] = ACTIONS(2264), + [anon_sym___inline] = ACTIONS(2264), + [anon_sym___inline__] = ACTIONS(2264), + [anon_sym___forceinline] = ACTIONS(2264), + [anon_sym_thread_local] = ACTIONS(2264), + [anon_sym___thread] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_constexpr] = ACTIONS(2264), + [anon_sym_volatile] = ACTIONS(2264), + [anon_sym_restrict] = ACTIONS(2264), + [anon_sym___restrict__] = ACTIONS(2264), + [anon_sym__Atomic] = ACTIONS(2264), + [anon_sym__Noreturn] = ACTIONS(2264), + [anon_sym_noreturn] = ACTIONS(2264), + [anon_sym__Nonnull] = ACTIONS(2264), + [anon_sym_mutable] = ACTIONS(2264), + [anon_sym_constinit] = ACTIONS(2264), + [anon_sym_consteval] = ACTIONS(2264), + [anon_sym_alignas] = ACTIONS(2264), + [anon_sym__Alignas] = ACTIONS(2264), + [sym_primitive_type] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + [anon_sym_class] = ACTIONS(2264), + [anon_sym_struct] = ACTIONS(2264), + [anon_sym_union] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_switch] = ACTIONS(2264), + [anon_sym_case] = ACTIONS(2264), + [anon_sym_default] = ACTIONS(2264), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_goto] = ACTIONS(2264), + [anon_sym___try] = ACTIONS(2264), + [anon_sym___leave] = ACTIONS(2264), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(2266), + [anon_sym_PLUS_PLUS] = ACTIONS(2266), + [anon_sym_sizeof] = ACTIONS(2264), + [anon_sym___alignof__] = ACTIONS(2264), + [anon_sym___alignof] = ACTIONS(2264), + [anon_sym__alignof] = ACTIONS(2264), + [anon_sym_alignof] = ACTIONS(2264), + [anon_sym__Alignof] = ACTIONS(2264), + [anon_sym_offsetof] = ACTIONS(2264), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2264), + [anon_sym___asm__] = ACTIONS(2264), + [anon_sym___asm] = ACTIONS(2264), + [sym_number_literal] = ACTIONS(2266), + [anon_sym_L_SQUOTE] = ACTIONS(2266), + [anon_sym_u_SQUOTE] = ACTIONS(2266), + [anon_sym_U_SQUOTE] = ACTIONS(2266), + [anon_sym_u8_SQUOTE] = ACTIONS(2266), + [anon_sym_SQUOTE] = ACTIONS(2266), + [anon_sym_L_DQUOTE] = ACTIONS(2266), + [anon_sym_u_DQUOTE] = ACTIONS(2266), + [anon_sym_U_DQUOTE] = ACTIONS(2266), + [anon_sym_u8_DQUOTE] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(2266), + [sym_true] = ACTIONS(2264), + [sym_false] = ACTIONS(2264), + [anon_sym_NULL] = ACTIONS(2264), + [anon_sym_nullptr] = ACTIONS(2264), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2264), + [anon_sym_decltype] = ACTIONS(2264), + [anon_sym_explicit] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_template] = ACTIONS(2264), + [anon_sym_operator] = ACTIONS(2264), + [anon_sym_try] = ACTIONS(2264), + [anon_sym_delete] = ACTIONS(2264), + [anon_sym_throw] = ACTIONS(2264), + [anon_sym_namespace] = ACTIONS(2264), + [anon_sym_using] = ACTIONS(2264), + [anon_sym_static_assert] = ACTIONS(2264), + [anon_sym_concept] = ACTIONS(2264), + [anon_sym_co_return] = ACTIONS(2264), + [anon_sym_co_yield] = ACTIONS(2264), + [anon_sym_R_DQUOTE] = ACTIONS(2266), + [anon_sym_LR_DQUOTE] = ACTIONS(2266), + [anon_sym_uR_DQUOTE] = ACTIONS(2266), + [anon_sym_UR_DQUOTE] = ACTIONS(2266), + [anon_sym_u8R_DQUOTE] = ACTIONS(2266), + [anon_sym_co_await] = ACTIONS(2264), + [anon_sym_new] = ACTIONS(2264), + [anon_sym_requires] = ACTIONS(2264), + [sym_this] = ACTIONS(2264), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2264), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_FORWARD] = ACTIONS(2264), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2264), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2264), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2264), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2264), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_PS_GET] = ACTIONS(2264), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2264), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2264), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2264), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2264), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2264), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2264), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2264), + [anon_sym_MOZ_COLD] = ACTIONS(2264), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2264), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2264), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2264), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2264), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2264), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2264), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2264), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2264), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2264), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2264), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2264), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2264), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2264), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_NONNULL] = ACTIONS(2264), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2264), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2264), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2264), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2264), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2264), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2264), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2264), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2264), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2264), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2264), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2264), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2264), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2264), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2264), + [anon_sym_MOZ_RAII] = ACTIONS(2264), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2264), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2264), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2264), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2264), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2264), + }, + [STATE(528)] = { + [sym_identifier] = ACTIONS(2329), + [aux_sym_preproc_include_token1] = ACTIONS(2329), + [aux_sym_preproc_def_token1] = ACTIONS(2329), + [aux_sym_preproc_if_token1] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2329), + [sym_preproc_directive] = ACTIONS(2329), + [anon_sym_LPAREN2] = ACTIONS(2331), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(2331), + [anon_sym_AMP_AMP] = ACTIONS(2331), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_SEMI] = ACTIONS(2331), + [anon_sym___extension__] = ACTIONS(2329), + [anon_sym_typedef] = ACTIONS(2329), + [anon_sym_virtual] = ACTIONS(2329), + [anon_sym_extern] = ACTIONS(2329), + [anon_sym___attribute__] = ACTIONS(2329), + [anon_sym___attribute] = ACTIONS(2329), + [anon_sym_COLON_COLON] = ACTIONS(2331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2331), + [anon_sym___declspec] = ACTIONS(2329), + [anon_sym___based] = ACTIONS(2329), + [anon_sym___cdecl] = ACTIONS(2329), + [anon_sym___clrcall] = ACTIONS(2329), + [anon_sym___stdcall] = ACTIONS(2329), + [anon_sym___fastcall] = ACTIONS(2329), + [anon_sym___thiscall] = ACTIONS(2329), + [anon_sym___vectorcall] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_RBRACE] = ACTIONS(2331), + [anon_sym_signed] = ACTIONS(2329), + [anon_sym_unsigned] = ACTIONS(2329), + [anon_sym_long] = ACTIONS(2329), + [anon_sym_short] = ACTIONS(2329), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_register] = ACTIONS(2329), + [anon_sym_inline] = ACTIONS(2329), + [anon_sym___inline] = ACTIONS(2329), + [anon_sym___inline__] = ACTIONS(2329), + [anon_sym___forceinline] = ACTIONS(2329), + [anon_sym_thread_local] = ACTIONS(2329), + [anon_sym___thread] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_constexpr] = ACTIONS(2329), + [anon_sym_volatile] = ACTIONS(2329), + [anon_sym_restrict] = ACTIONS(2329), + [anon_sym___restrict__] = ACTIONS(2329), + [anon_sym__Atomic] = ACTIONS(2329), + [anon_sym__Noreturn] = ACTIONS(2329), + [anon_sym_noreturn] = ACTIONS(2329), + [anon_sym__Nonnull] = ACTIONS(2329), + [anon_sym_mutable] = ACTIONS(2329), + [anon_sym_constinit] = ACTIONS(2329), + [anon_sym_consteval] = ACTIONS(2329), + [anon_sym_alignas] = ACTIONS(2329), + [anon_sym__Alignas] = ACTIONS(2329), + [sym_primitive_type] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_class] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2329), + [anon_sym_union] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_switch] = ACTIONS(2329), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_do] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_goto] = ACTIONS(2329), + [anon_sym___try] = ACTIONS(2329), + [anon_sym___leave] = ACTIONS(2329), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(2331), + [anon_sym_PLUS_PLUS] = ACTIONS(2331), + [anon_sym_sizeof] = ACTIONS(2329), + [anon_sym___alignof__] = ACTIONS(2329), + [anon_sym___alignof] = ACTIONS(2329), + [anon_sym__alignof] = ACTIONS(2329), + [anon_sym_alignof] = ACTIONS(2329), + [anon_sym__Alignof] = ACTIONS(2329), + [anon_sym_offsetof] = ACTIONS(2329), + [anon_sym__Generic] = ACTIONS(2329), + [anon_sym_asm] = ACTIONS(2329), + [anon_sym___asm__] = ACTIONS(2329), + [anon_sym___asm] = ACTIONS(2329), + [sym_number_literal] = ACTIONS(2331), + [anon_sym_L_SQUOTE] = ACTIONS(2331), + [anon_sym_u_SQUOTE] = ACTIONS(2331), + [anon_sym_U_SQUOTE] = ACTIONS(2331), + [anon_sym_u8_SQUOTE] = ACTIONS(2331), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_L_DQUOTE] = ACTIONS(2331), + [anon_sym_u_DQUOTE] = ACTIONS(2331), + [anon_sym_U_DQUOTE] = ACTIONS(2331), + [anon_sym_u8_DQUOTE] = ACTIONS(2331), + [anon_sym_DQUOTE] = ACTIONS(2331), + [sym_true] = ACTIONS(2329), + [sym_false] = ACTIONS(2329), + [anon_sym_NULL] = ACTIONS(2329), + [anon_sym_nullptr] = ACTIONS(2329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2329), + [anon_sym_decltype] = ACTIONS(2329), + [anon_sym_explicit] = ACTIONS(2329), + [anon_sym_typename] = ACTIONS(2329), + [anon_sym_template] = ACTIONS(2329), + [anon_sym_operator] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2329), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_throw] = ACTIONS(2329), + [anon_sym_namespace] = ACTIONS(2329), + [anon_sym_using] = ACTIONS(2329), + [anon_sym_static_assert] = ACTIONS(2329), + [anon_sym_concept] = ACTIONS(2329), + [anon_sym_co_return] = ACTIONS(2329), + [anon_sym_co_yield] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2329), + [anon_sym_requires] = ACTIONS(2329), + [sym_this] = ACTIONS(2329), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2329), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_FORWARD] = ACTIONS(2329), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2329), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2329), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2329), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2329), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_PS_GET] = ACTIONS(2329), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2329), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2329), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2329), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2329), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2329), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2329), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2329), + [anon_sym_MOZ_COLD] = ACTIONS(2329), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2329), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2329), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2329), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2329), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2329), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2329), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2329), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2329), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2329), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2329), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2329), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2329), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2329), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_NONNULL] = ACTIONS(2329), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2329), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2329), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2329), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2329), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2329), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2329), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2329), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2329), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2329), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2329), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2329), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2329), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2329), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2329), + [anon_sym_MOZ_RAII] = ACTIONS(2329), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2329), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2329), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2329), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2329), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2329), + }, + [STATE(529)] = { + [ts_builtin_sym_end] = ACTIONS(2192), + [sym_identifier] = ACTIONS(2190), + [aux_sym_preproc_include_token1] = ACTIONS(2190), + [aux_sym_preproc_def_token1] = ACTIONS(2190), + [aux_sym_preproc_if_token1] = ACTIONS(2190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2190), + [sym_preproc_directive] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym___extension__] = ACTIONS(2190), + [anon_sym_typedef] = ACTIONS(2190), + [anon_sym_virtual] = ACTIONS(2190), + [anon_sym_extern] = ACTIONS(2190), + [anon_sym___attribute__] = ACTIONS(2190), + [anon_sym___attribute] = ACTIONS(2190), + [anon_sym_COLON_COLON] = ACTIONS(2192), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), + [anon_sym___declspec] = ACTIONS(2190), + [anon_sym___based] = ACTIONS(2190), + [anon_sym___cdecl] = ACTIONS(2190), + [anon_sym___clrcall] = ACTIONS(2190), + [anon_sym___stdcall] = ACTIONS(2190), + [anon_sym___fastcall] = ACTIONS(2190), + [anon_sym___thiscall] = ACTIONS(2190), + [anon_sym___vectorcall] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_signed] = ACTIONS(2190), + [anon_sym_unsigned] = ACTIONS(2190), + [anon_sym_long] = ACTIONS(2190), + [anon_sym_short] = ACTIONS(2190), + [anon_sym_LBRACK] = ACTIONS(2190), + [anon_sym_static] = ACTIONS(2190), + [anon_sym_register] = ACTIONS(2190), + [anon_sym_inline] = ACTIONS(2190), + [anon_sym___inline] = ACTIONS(2190), + [anon_sym___inline__] = ACTIONS(2190), + [anon_sym___forceinline] = ACTIONS(2190), + [anon_sym_thread_local] = ACTIONS(2190), + [anon_sym___thread] = ACTIONS(2190), + [anon_sym_const] = ACTIONS(2190), + [anon_sym_constexpr] = ACTIONS(2190), + [anon_sym_volatile] = ACTIONS(2190), + [anon_sym_restrict] = ACTIONS(2190), + [anon_sym___restrict__] = ACTIONS(2190), + [anon_sym__Atomic] = ACTIONS(2190), + [anon_sym__Noreturn] = ACTIONS(2190), + [anon_sym_noreturn] = ACTIONS(2190), + [anon_sym__Nonnull] = ACTIONS(2190), + [anon_sym_mutable] = ACTIONS(2190), + [anon_sym_constinit] = ACTIONS(2190), + [anon_sym_consteval] = ACTIONS(2190), + [anon_sym_alignas] = ACTIONS(2190), + [anon_sym__Alignas] = ACTIONS(2190), + [sym_primitive_type] = ACTIONS(2190), + [anon_sym_enum] = ACTIONS(2190), + [anon_sym_class] = ACTIONS(2190), + [anon_sym_struct] = ACTIONS(2190), + [anon_sym_union] = ACTIONS(2190), + [anon_sym_if] = ACTIONS(2190), + [anon_sym_switch] = ACTIONS(2190), + [anon_sym_case] = ACTIONS(2190), + [anon_sym_default] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2190), + [anon_sym_do] = ACTIONS(2190), + [anon_sym_for] = ACTIONS(2190), + [anon_sym_return] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_goto] = ACTIONS(2190), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2192), + [anon_sym_PLUS_PLUS] = ACTIONS(2192), + [anon_sym_sizeof] = ACTIONS(2190), + [anon_sym___alignof__] = ACTIONS(2190), + [anon_sym___alignof] = ACTIONS(2190), + [anon_sym__alignof] = ACTIONS(2190), + [anon_sym_alignof] = ACTIONS(2190), + [anon_sym__Alignof] = ACTIONS(2190), + [anon_sym_offsetof] = ACTIONS(2190), + [anon_sym__Generic] = ACTIONS(2190), + [anon_sym_asm] = ACTIONS(2190), + [anon_sym___asm__] = ACTIONS(2190), + [anon_sym___asm] = ACTIONS(2190), + [sym_number_literal] = ACTIONS(2192), + [anon_sym_L_SQUOTE] = ACTIONS(2192), + [anon_sym_u_SQUOTE] = ACTIONS(2192), + [anon_sym_U_SQUOTE] = ACTIONS(2192), + [anon_sym_u8_SQUOTE] = ACTIONS(2192), + [anon_sym_SQUOTE] = ACTIONS(2192), + [anon_sym_L_DQUOTE] = ACTIONS(2192), + [anon_sym_u_DQUOTE] = ACTIONS(2192), + [anon_sym_U_DQUOTE] = ACTIONS(2192), + [anon_sym_u8_DQUOTE] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [sym_true] = ACTIONS(2190), + [sym_false] = ACTIONS(2190), + [anon_sym_NULL] = ACTIONS(2190), + [anon_sym_nullptr] = ACTIONS(2190), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2190), + [anon_sym_decltype] = ACTIONS(2190), + [anon_sym_explicit] = ACTIONS(2190), + [anon_sym_typename] = ACTIONS(2190), + [anon_sym_template] = ACTIONS(2190), + [anon_sym_operator] = ACTIONS(2190), + [anon_sym_try] = ACTIONS(2190), + [anon_sym_delete] = ACTIONS(2190), + [anon_sym_throw] = ACTIONS(2190), + [anon_sym_namespace] = ACTIONS(2190), + [anon_sym_using] = ACTIONS(2190), + [anon_sym_static_assert] = ACTIONS(2190), + [anon_sym_concept] = ACTIONS(2190), + [anon_sym_co_return] = ACTIONS(2190), + [anon_sym_co_yield] = ACTIONS(2190), + [anon_sym_R_DQUOTE] = ACTIONS(2192), + [anon_sym_LR_DQUOTE] = ACTIONS(2192), + [anon_sym_uR_DQUOTE] = ACTIONS(2192), + [anon_sym_UR_DQUOTE] = ACTIONS(2192), + [anon_sym_u8R_DQUOTE] = ACTIONS(2192), + [anon_sym_co_await] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(2190), + [anon_sym_requires] = ACTIONS(2190), + [sym_this] = ACTIONS(2190), + [sym_alone_macro] = ACTIONS(2192), + [aux_sym_alone_macro_call_token1] = ACTIONS(2190), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2190), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_FORWARD] = ACTIONS(2190), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2190), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2190), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2190), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2190), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_PS_GET] = ACTIONS(2190), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2190), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2190), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2190), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2190), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2190), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2190), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2190), + [anon_sym_MOZ_COLD] = ACTIONS(2190), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2190), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2190), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2190), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2190), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2190), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2190), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2190), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2190), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2190), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2190), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2190), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2190), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2190), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_NONNULL] = ACTIONS(2190), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2190), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2190), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2190), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2190), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2190), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2190), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2190), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2190), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2190), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2190), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2190), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2190), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2190), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2190), + [anon_sym_MOZ_RAII] = ACTIONS(2190), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2190), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2190), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2190), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2190), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2190), + }, + [STATE(530)] = { + [ts_builtin_sym_end] = ACTIONS(2418), + [sym_identifier] = ACTIONS(2416), + [aux_sym_preproc_include_token1] = ACTIONS(2416), + [aux_sym_preproc_def_token1] = ACTIONS(2416), + [aux_sym_preproc_if_token1] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2416), + [sym_preproc_directive] = ACTIONS(2416), + [anon_sym_LPAREN2] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2416), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym___extension__] = ACTIONS(2416), + [anon_sym_typedef] = ACTIONS(2416), + [anon_sym_virtual] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym___attribute__] = ACTIONS(2416), + [anon_sym___attribute] = ACTIONS(2416), [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3360), - [anon_sym___declspec] = ACTIONS(3358), - [anon_sym___based] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_EQ] = ACTIONS(3360), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_register] = ACTIONS(3358), - [anon_sym_inline] = ACTIONS(3358), - [anon_sym_thread_local] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_volatile] = ACTIONS(3358), - [anon_sym_restrict] = ACTIONS(3358), - [anon_sym__Atomic] = ACTIONS(3358), - [anon_sym_mutable] = ACTIONS(3358), - [anon_sym_constexpr] = ACTIONS(3358), - [anon_sym_COLON] = ACTIONS(3358), - [anon_sym_DASH_GT] = ACTIONS(3360), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3358), - [anon_sym_override] = ACTIONS(3358), - [anon_sym_virtual] = ACTIONS(3358), - [anon_sym_template] = ACTIONS(3358), - [anon_sym_GT2] = ACTIONS(3360), - [anon_sym_operator] = ACTIONS(3358), - [anon_sym_noexcept] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3358), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3358), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3358), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3358), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3358), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3358), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3358), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3358), - [anon_sym_MOZ_COLD] = ACTIONS(3358), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3358), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3358), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3358), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3358), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3358), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3358), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3358), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3358), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3358), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3358), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3358), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3358), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3358), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3358), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3358), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3358), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3358), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3358), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3358), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3358), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3358), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3358), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3358), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3358), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3358), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3358), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3358), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3358), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3358), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3358), - [anon_sym_MOZ_NONNULL] = ACTIONS(3358), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3358), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3358), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3358), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3358), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3358), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3358), - [anon_sym_MOZ_NORETURN] = ACTIONS(3358), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3358), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3358), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3358), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3358), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3358), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3358), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3358), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3358), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3358), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3358), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3358), - [anon_sym_MOZ_RAII] = ACTIONS(3358), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3358), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3358), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3358), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3358), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3358), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3358), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3358), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3358), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3358), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3358), - }, - [1274] = { - [sym__declaration_modifiers] = STATE(1277), - [sym_attribute_specifier] = STATE(1277), - [sym_attribute_declaration] = STATE(1277), - [sym_ms_declspec_modifier] = STATE(1277), - [sym_storage_class_specifier] = STATE(1277), - [sym_type_qualifier] = STATE(1277), - [sym_virtual_function_specifier] = STATE(1277), - [sym_macro_annotation] = STATE(1466), - [aux_sym__declaration_specifiers_repeat1] = STATE(1277), - [sym_identifier] = ACTIONS(3364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3366), - [anon_sym_COMMA] = ACTIONS(3366), - [anon_sym_RPAREN] = ACTIONS(3366), - [anon_sym_LPAREN2] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3366), - [anon_sym_AMP_AMP] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(3366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_EQ] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_template] = ACTIONS(3364), - [anon_sym_GT2] = ACTIONS(3366), - [anon_sym_operator] = ACTIONS(3364), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1275] = { - [sym__declaration_modifiers] = STATE(1278), - [sym_attribute_specifier] = STATE(1278), - [sym_attribute_declaration] = STATE(1278), - [sym_ms_declspec_modifier] = STATE(1278), - [sym_storage_class_specifier] = STATE(1278), - [sym_type_qualifier] = STATE(1278), - [sym_virtual_function_specifier] = STATE(1278), - [sym_macro_annotation] = STATE(1466), - [aux_sym__declaration_specifiers_repeat1] = STATE(1278), - [sym_identifier] = ACTIONS(3368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3370), - [anon_sym_COMMA] = ACTIONS(3370), - [anon_sym_RPAREN] = ACTIONS(3370), - [anon_sym_LPAREN2] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(3370), - [anon_sym_STAR] = ACTIONS(3370), - [anon_sym_AMP_AMP] = ACTIONS(3370), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(3370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_EQ] = ACTIONS(3370), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_template] = ACTIONS(3368), - [anon_sym_GT2] = ACTIONS(3370), - [anon_sym_operator] = ACTIONS(3368), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1276] = { - [sym__declaration_modifiers] = STATE(1275), - [sym_attribute_specifier] = STATE(1275), - [sym_attribute_declaration] = STATE(1275), - [sym_ms_declspec_modifier] = STATE(1275), - [sym_storage_class_specifier] = STATE(1275), - [sym_type_qualifier] = STATE(1275), - [sym_virtual_function_specifier] = STATE(1275), - [sym_macro_annotation] = STATE(1466), - [aux_sym__declaration_specifiers_repeat1] = STATE(1275), - [sym_identifier] = ACTIONS(3372), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3374), - [anon_sym_COMMA] = ACTIONS(3374), - [anon_sym_RPAREN] = ACTIONS(3374), - [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_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(3374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(3372), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_EQ] = ACTIONS(3374), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_template] = ACTIONS(3372), - [anon_sym_GT2] = ACTIONS(3374), - [anon_sym_operator] = ACTIONS(3372), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1277] = { - [sym__declaration_modifiers] = STATE(1278), - [sym_attribute_specifier] = STATE(1278), - [sym_attribute_declaration] = STATE(1278), - [sym_ms_declspec_modifier] = STATE(1278), - [sym_storage_class_specifier] = STATE(1278), - [sym_type_qualifier] = STATE(1278), - [sym_virtual_function_specifier] = STATE(1278), - [sym_macro_annotation] = STATE(1466), - [aux_sym__declaration_specifiers_repeat1] = STATE(1278), - [sym_identifier] = ACTIONS(3376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3378), - [anon_sym_COMMA] = ACTIONS(3378), - [anon_sym_RPAREN] = ACTIONS(3378), - [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_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(3378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(3376), - [anon_sym_LBRACK] = ACTIONS(3376), - [anon_sym_EQ] = ACTIONS(3378), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_template] = ACTIONS(3376), - [anon_sym_GT2] = ACTIONS(3378), - [anon_sym_operator] = ACTIONS(3376), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1278] = { - [sym__declaration_modifiers] = STATE(1278), - [sym_attribute_specifier] = STATE(1278), - [sym_attribute_declaration] = STATE(1278), - [sym_ms_declspec_modifier] = STATE(1278), - [sym_storage_class_specifier] = STATE(1278), - [sym_type_qualifier] = STATE(1278), - [sym_virtual_function_specifier] = STATE(1278), - [sym_macro_annotation] = STATE(1466), - [aux_sym__declaration_specifiers_repeat1] = STATE(1278), - [sym_identifier] = ACTIONS(3329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3331), - [anon_sym_COMMA] = ACTIONS(3331), - [anon_sym_RPAREN] = ACTIONS(3331), - [anon_sym_LPAREN2] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_AMP_AMP] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(3329), - [anon_sym_extern] = ACTIONS(3380), - [anon_sym___attribute__] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3386), - [anon_sym___declspec] = ACTIONS(3389), - [anon_sym___based] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_EQ] = ACTIONS(3331), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_register] = ACTIONS(3380), - [anon_sym_inline] = ACTIONS(3380), - [anon_sym_thread_local] = ACTIONS(3380), - [anon_sym_const] = ACTIONS(3392), - [anon_sym_volatile] = ACTIONS(3392), - [anon_sym_restrict] = ACTIONS(3392), - [anon_sym__Atomic] = ACTIONS(3392), - [anon_sym_mutable] = ACTIONS(3392), - [anon_sym_constexpr] = ACTIONS(3392), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3395), - [anon_sym_template] = ACTIONS(3329), - [anon_sym_GT2] = ACTIONS(3331), - [anon_sym_operator] = ACTIONS(3329), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3398), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3398), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3398), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3398), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3398), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3398), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3398), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3398), - [anon_sym_MOZ_COLD] = ACTIONS(3398), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3398), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3398), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3398), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3398), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3398), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3398), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3398), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3398), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3398), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3398), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3398), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3398), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3398), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3398), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3398), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3398), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3398), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3398), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3398), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3398), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3398), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3398), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3398), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3398), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3398), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3398), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3398), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3398), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3398), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3398), - [anon_sym_MOZ_NONNULL] = ACTIONS(3398), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3398), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3398), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3398), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3398), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3398), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3398), - [anon_sym_MOZ_NORETURN] = ACTIONS(3398), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3398), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3398), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3398), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3398), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3398), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3398), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3398), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3398), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3398), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3398), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3398), - [anon_sym_MOZ_RAII] = ACTIONS(3398), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3398), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3398), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3398), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3398), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3398), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3398), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3398), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3398), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3398), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3398), - }, - [1279] = { - [sym_identifier] = ACTIONS(2451), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_COMMA] = ACTIONS(2453), - [anon_sym_RPAREN] = ACTIONS(2453), - [anon_sym_LPAREN2] = ACTIONS(2453), - [anon_sym_TILDE] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_AMP_AMP] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2453), - [anon_sym_extern] = ACTIONS(2451), - [anon_sym___attribute__] = ACTIONS(2451), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2453), - [anon_sym___declspec] = ACTIONS(2451), - [anon_sym___based] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(2451), - [anon_sym_EQ] = ACTIONS(2453), - [anon_sym_static] = ACTIONS(2451), - [anon_sym_register] = ACTIONS(2451), - [anon_sym_inline] = ACTIONS(2451), - [anon_sym_thread_local] = ACTIONS(2451), - [anon_sym_const] = ACTIONS(2451), - [anon_sym_volatile] = ACTIONS(2451), - [anon_sym_restrict] = ACTIONS(2451), - [anon_sym__Atomic] = ACTIONS(2451), - [anon_sym_mutable] = ACTIONS(2451), - [anon_sym_constexpr] = ACTIONS(2451), - [anon_sym_COLON] = ACTIONS(2451), - [anon_sym_DASH_GT] = ACTIONS(2453), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2451), - [anon_sym_override] = ACTIONS(2451), - [anon_sym_virtual] = ACTIONS(2451), - [anon_sym_template] = ACTIONS(2451), - [anon_sym_GT2] = ACTIONS(2453), - [anon_sym_operator] = ACTIONS(2451), - [anon_sym_noexcept] = ACTIONS(2451), - [anon_sym_throw] = ACTIONS(2451), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2451), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2451), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2451), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2451), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2451), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2451), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2451), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2451), - [anon_sym_MOZ_COLD] = ACTIONS(2451), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2451), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2451), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2451), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2451), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2451), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2451), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2451), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2451), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2451), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2451), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2451), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2451), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2451), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2451), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2451), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2451), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2451), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2451), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2451), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2451), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2451), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_NONNULL] = ACTIONS(2451), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2451), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2451), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2451), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2451), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2451), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_NORETURN] = ACTIONS(2451), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2451), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2451), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2451), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2451), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2451), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2451), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2451), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2451), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2451), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2451), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2451), - [anon_sym_MOZ_RAII] = ACTIONS(2451), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2451), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2451), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2451), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2451), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2451), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2451), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2451), - }, - [1280] = { - [sym_identifier] = ACTIONS(3401), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_STAR] = ACTIONS(3403), - [anon_sym_AMP_AMP] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_extern] = ACTIONS(3401), - [anon_sym___attribute__] = ACTIONS(3401), - [anon_sym_COLON_COLON] = ACTIONS(3403), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3403), - [anon_sym___declspec] = ACTIONS(3401), - [anon_sym___based] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_static] = ACTIONS(3401), - [anon_sym_register] = ACTIONS(3401), - [anon_sym_inline] = ACTIONS(3401), - [anon_sym_thread_local] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_volatile] = ACTIONS(3401), - [anon_sym_restrict] = ACTIONS(3401), - [anon_sym__Atomic] = ACTIONS(3401), - [anon_sym_mutable] = ACTIONS(3401), - [anon_sym_constexpr] = ACTIONS(3401), - [anon_sym_signed] = ACTIONS(3401), - [anon_sym_unsigned] = ACTIONS(3401), - [anon_sym_long] = ACTIONS(3401), - [anon_sym_short] = ACTIONS(3401), - [sym_primitive_type] = ACTIONS(3401), - [anon_sym_enum] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_struct] = ACTIONS(3401), - [anon_sym_union] = ACTIONS(3401), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3401), - [anon_sym_virtual] = ACTIONS(3401), - [anon_sym_explicit] = ACTIONS(3401), - [sym_auto] = ACTIONS(3401), - [anon_sym_typename] = ACTIONS(3401), - [anon_sym_template] = ACTIONS(3401), - [anon_sym_operator] = ACTIONS(3401), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3401), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3401), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3401), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3401), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3401), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3401), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3401), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3401), - [anon_sym_MOZ_COLD] = ACTIONS(3401), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3401), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3401), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3401), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3401), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3401), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3401), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3401), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3401), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3401), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3401), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3401), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3401), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3401), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3401), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3401), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3401), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3401), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3401), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3401), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3401), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_NONNULL] = ACTIONS(3401), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3401), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3401), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3401), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3401), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3401), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_NORETURN] = ACTIONS(3401), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3401), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3401), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3401), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3401), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3401), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3401), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3401), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3401), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3401), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3401), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3401), - [anon_sym_MOZ_RAII] = ACTIONS(3401), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3401), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3401), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3401), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3401), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3401), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3401), - }, - [1281] = { - [sym_identifier] = ACTIONS(2494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2496), - [anon_sym_COMMA] = ACTIONS(2496), - [anon_sym_RPAREN] = ACTIONS(2496), - [anon_sym_LPAREN2] = ACTIONS(2496), - [anon_sym_TILDE] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2496), - [anon_sym_AMP_AMP] = ACTIONS(2496), - [anon_sym_AMP] = ACTIONS(2494), - [anon_sym_SEMI] = ACTIONS(2496), - [anon_sym_extern] = ACTIONS(2494), - [anon_sym___attribute__] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2496), - [anon_sym___declspec] = ACTIONS(2494), - [anon_sym___based] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_EQ] = ACTIONS(2496), - [anon_sym_static] = ACTIONS(2494), - [anon_sym_register] = ACTIONS(2494), - [anon_sym_inline] = ACTIONS(2494), - [anon_sym_thread_local] = ACTIONS(2494), - [anon_sym_const] = ACTIONS(2494), - [anon_sym_volatile] = ACTIONS(2494), - [anon_sym_restrict] = ACTIONS(2494), - [anon_sym__Atomic] = ACTIONS(2494), - [anon_sym_mutable] = ACTIONS(2494), - [anon_sym_constexpr] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2496), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2494), - [anon_sym_override] = ACTIONS(2494), - [anon_sym_virtual] = ACTIONS(2494), - [anon_sym_template] = ACTIONS(2494), - [anon_sym_GT2] = ACTIONS(2496), - [anon_sym_operator] = ACTIONS(2494), - [anon_sym_noexcept] = ACTIONS(2494), - [anon_sym_throw] = ACTIONS(2494), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2494), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2494), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2494), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2494), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2494), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2494), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2494), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2494), - [anon_sym_MOZ_COLD] = ACTIONS(2494), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2494), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2494), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2494), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2494), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2494), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2494), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2494), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2494), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2494), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2494), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2494), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2494), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2494), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2494), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2494), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2494), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2494), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2494), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2494), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2494), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2494), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_NONNULL] = ACTIONS(2494), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2494), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2494), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2494), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2494), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2494), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_NORETURN] = ACTIONS(2494), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2494), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2494), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2494), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2494), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2494), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2494), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2494), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2494), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2494), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2494), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2494), - [anon_sym_MOZ_RAII] = ACTIONS(2494), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2494), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2494), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2494), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2494), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2494), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2494), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2494), - }, - [1282] = { + [anon_sym_LBRACK_LBRACK] = ACTIONS(2418), + [anon_sym___declspec] = ACTIONS(2416), + [anon_sym___based] = ACTIONS(2416), + [anon_sym___cdecl] = ACTIONS(2416), + [anon_sym___clrcall] = ACTIONS(2416), + [anon_sym___stdcall] = ACTIONS(2416), + [anon_sym___fastcall] = ACTIONS(2416), + [anon_sym___thiscall] = ACTIONS(2416), + [anon_sym___vectorcall] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_signed] = ACTIONS(2416), + [anon_sym_unsigned] = ACTIONS(2416), + [anon_sym_long] = ACTIONS(2416), + [anon_sym_short] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_register] = ACTIONS(2416), + [anon_sym_inline] = ACTIONS(2416), + [anon_sym___inline] = ACTIONS(2416), + [anon_sym___inline__] = ACTIONS(2416), + [anon_sym___forceinline] = ACTIONS(2416), + [anon_sym_thread_local] = ACTIONS(2416), + [anon_sym___thread] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_constexpr] = ACTIONS(2416), + [anon_sym_volatile] = ACTIONS(2416), + [anon_sym_restrict] = ACTIONS(2416), + [anon_sym___restrict__] = ACTIONS(2416), + [anon_sym__Atomic] = ACTIONS(2416), + [anon_sym__Noreturn] = ACTIONS(2416), + [anon_sym_noreturn] = ACTIONS(2416), + [anon_sym__Nonnull] = ACTIONS(2416), + [anon_sym_mutable] = ACTIONS(2416), + [anon_sym_constinit] = ACTIONS(2416), + [anon_sym_consteval] = ACTIONS(2416), + [anon_sym_alignas] = ACTIONS(2416), + [anon_sym__Alignas] = ACTIONS(2416), + [sym_primitive_type] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [anon_sym_class] = ACTIONS(2416), + [anon_sym_struct] = ACTIONS(2416), + [anon_sym_union] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_switch] = ACTIONS(2416), + [anon_sym_case] = ACTIONS(2416), + [anon_sym_default] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_goto] = ACTIONS(2416), + [anon_sym_not] = ACTIONS(2416), + [anon_sym_compl] = ACTIONS(2416), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_sizeof] = ACTIONS(2416), + [anon_sym___alignof__] = ACTIONS(2416), + [anon_sym___alignof] = ACTIONS(2416), + [anon_sym__alignof] = ACTIONS(2416), + [anon_sym_alignof] = ACTIONS(2416), + [anon_sym__Alignof] = ACTIONS(2416), + [anon_sym_offsetof] = ACTIONS(2416), + [anon_sym__Generic] = ACTIONS(2416), + [anon_sym_asm] = ACTIONS(2416), + [anon_sym___asm__] = ACTIONS(2416), + [anon_sym___asm] = ACTIONS(2416), + [sym_number_literal] = ACTIONS(2418), + [anon_sym_L_SQUOTE] = ACTIONS(2418), + [anon_sym_u_SQUOTE] = ACTIONS(2418), + [anon_sym_U_SQUOTE] = ACTIONS(2418), + [anon_sym_u8_SQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_L_DQUOTE] = ACTIONS(2418), + [anon_sym_u_DQUOTE] = ACTIONS(2418), + [anon_sym_U_DQUOTE] = ACTIONS(2418), + [anon_sym_u8_DQUOTE] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2416), + [anon_sym_nullptr] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2416), + [anon_sym_decltype] = ACTIONS(2416), + [anon_sym_explicit] = ACTIONS(2416), + [anon_sym_typename] = ACTIONS(2416), + [anon_sym_template] = ACTIONS(2416), + [anon_sym_operator] = ACTIONS(2416), + [anon_sym_try] = ACTIONS(2416), + [anon_sym_delete] = ACTIONS(2416), + [anon_sym_throw] = ACTIONS(2416), + [anon_sym_namespace] = ACTIONS(2416), + [anon_sym_using] = ACTIONS(2416), + [anon_sym_static_assert] = ACTIONS(2416), + [anon_sym_concept] = ACTIONS(2416), + [anon_sym_co_return] = ACTIONS(2416), + [anon_sym_co_yield] = ACTIONS(2416), + [anon_sym_R_DQUOTE] = ACTIONS(2418), + [anon_sym_LR_DQUOTE] = ACTIONS(2418), + [anon_sym_uR_DQUOTE] = ACTIONS(2418), + [anon_sym_UR_DQUOTE] = ACTIONS(2418), + [anon_sym_u8R_DQUOTE] = ACTIONS(2418), + [anon_sym_co_await] = ACTIONS(2416), + [anon_sym_new] = ACTIONS(2416), + [anon_sym_requires] = ACTIONS(2416), + [sym_this] = ACTIONS(2416), + [sym_alone_macro] = ACTIONS(2418), + [aux_sym_alone_macro_call_token1] = ACTIONS(2416), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2416), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_FORWARD] = ACTIONS(2416), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2416), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2416), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2416), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2416), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_PS_GET] = ACTIONS(2416), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2416), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2416), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2416), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2416), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2416), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2416), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2416), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2416), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2416), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2416), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2416), + [anon_sym_MOZ_COLD] = ACTIONS(2416), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2416), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2416), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2416), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2416), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2416), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2416), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2416), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2416), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2416), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2416), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2416), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2416), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2416), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2416), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2416), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2416), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2416), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2416), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2416), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2416), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_NONNULL] = ACTIONS(2416), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2416), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2416), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2416), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2416), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2416), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_NORETURN] = ACTIONS(2416), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2416), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2416), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2416), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2416), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2416), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2416), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2416), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2416), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2416), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2416), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2416), + [anon_sym_MOZ_RAII] = ACTIONS(2416), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2416), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2416), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2416), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2416), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2416), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2416), + }, + [STATE(531)] = { + [ts_builtin_sym_end] = ACTIONS(2422), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_include_token1] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2420), + [sym_preproc_directive] = ACTIONS(2420), + [anon_sym_LPAREN2] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym___extension__] = ACTIONS(2420), + [anon_sym_typedef] = ACTIONS(2420), + [anon_sym_virtual] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym___attribute__] = ACTIONS(2420), + [anon_sym___attribute] = ACTIONS(2420), + [anon_sym_COLON_COLON] = ACTIONS(2422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2422), + [anon_sym___declspec] = ACTIONS(2420), + [anon_sym___based] = ACTIONS(2420), + [anon_sym___cdecl] = ACTIONS(2420), + [anon_sym___clrcall] = ACTIONS(2420), + [anon_sym___stdcall] = ACTIONS(2420), + [anon_sym___fastcall] = ACTIONS(2420), + [anon_sym___thiscall] = ACTIONS(2420), + [anon_sym___vectorcall] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_signed] = ACTIONS(2420), + [anon_sym_unsigned] = ACTIONS(2420), + [anon_sym_long] = ACTIONS(2420), + [anon_sym_short] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_inline] = ACTIONS(2420), + [anon_sym___inline] = ACTIONS(2420), + [anon_sym___inline__] = ACTIONS(2420), + [anon_sym___forceinline] = ACTIONS(2420), + [anon_sym_thread_local] = ACTIONS(2420), + [anon_sym___thread] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_constexpr] = ACTIONS(2420), + [anon_sym_volatile] = ACTIONS(2420), + [anon_sym_restrict] = ACTIONS(2420), + [anon_sym___restrict__] = ACTIONS(2420), + [anon_sym__Atomic] = ACTIONS(2420), + [anon_sym__Noreturn] = ACTIONS(2420), + [anon_sym_noreturn] = ACTIONS(2420), + [anon_sym__Nonnull] = ACTIONS(2420), + [anon_sym_mutable] = ACTIONS(2420), + [anon_sym_constinit] = ACTIONS(2420), + [anon_sym_consteval] = ACTIONS(2420), + [anon_sym_alignas] = ACTIONS(2420), + [anon_sym__Alignas] = ACTIONS(2420), + [sym_primitive_type] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_class] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_case] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_goto] = ACTIONS(2420), + [anon_sym_not] = ACTIONS(2420), + [anon_sym_compl] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_sizeof] = ACTIONS(2420), + [anon_sym___alignof__] = ACTIONS(2420), + [anon_sym___alignof] = ACTIONS(2420), + [anon_sym__alignof] = ACTIONS(2420), + [anon_sym_alignof] = ACTIONS(2420), + [anon_sym__Alignof] = ACTIONS(2420), + [anon_sym_offsetof] = ACTIONS(2420), + [anon_sym__Generic] = ACTIONS(2420), + [anon_sym_asm] = ACTIONS(2420), + [anon_sym___asm__] = ACTIONS(2420), + [anon_sym___asm] = ACTIONS(2420), + [sym_number_literal] = ACTIONS(2422), + [anon_sym_L_SQUOTE] = ACTIONS(2422), + [anon_sym_u_SQUOTE] = ACTIONS(2422), + [anon_sym_U_SQUOTE] = ACTIONS(2422), + [anon_sym_u8_SQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_L_DQUOTE] = ACTIONS(2422), + [anon_sym_u_DQUOTE] = ACTIONS(2422), + [anon_sym_U_DQUOTE] = ACTIONS(2422), + [anon_sym_u8_DQUOTE] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2420), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_explicit] = ACTIONS(2420), + [anon_sym_typename] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2420), + [anon_sym_operator] = ACTIONS(2420), + [anon_sym_try] = ACTIONS(2420), + [anon_sym_delete] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2420), + [anon_sym_using] = ACTIONS(2420), + [anon_sym_static_assert] = ACTIONS(2420), + [anon_sym_concept] = ACTIONS(2420), + [anon_sym_co_return] = ACTIONS(2420), + [anon_sym_co_yield] = ACTIONS(2420), + [anon_sym_R_DQUOTE] = ACTIONS(2422), + [anon_sym_LR_DQUOTE] = ACTIONS(2422), + [anon_sym_uR_DQUOTE] = ACTIONS(2422), + [anon_sym_UR_DQUOTE] = ACTIONS(2422), + [anon_sym_u8R_DQUOTE] = ACTIONS(2422), + [anon_sym_co_await] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_requires] = ACTIONS(2420), + [sym_this] = ACTIONS(2420), + [sym_alone_macro] = ACTIONS(2422), + [aux_sym_alone_macro_call_token1] = ACTIONS(2420), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2420), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_FORWARD] = ACTIONS(2420), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2420), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2420), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2420), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2420), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_PS_GET] = ACTIONS(2420), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2420), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2420), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2420), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2420), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2420), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2420), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2420), + [anon_sym_MOZ_COLD] = ACTIONS(2420), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2420), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2420), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2420), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2420), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2420), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2420), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2420), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2420), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2420), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2420), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2420), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2420), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2420), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_NONNULL] = ACTIONS(2420), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2420), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2420), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2420), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2420), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2420), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2420), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2420), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2420), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2420), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2420), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2420), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2420), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2420), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2420), + [anon_sym_MOZ_RAII] = ACTIONS(2420), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2420), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2420), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2420), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2420), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2420), + }, + [STATE(532)] = { + [sym_identifier] = ACTIONS(2317), + [aux_sym_preproc_include_token1] = ACTIONS(2317), + [aux_sym_preproc_def_token1] = ACTIONS(2317), + [aux_sym_preproc_if_token1] = ACTIONS(2317), + [aux_sym_preproc_if_token2] = ACTIONS(2317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2317), + [sym_preproc_directive] = ACTIONS(2317), + [anon_sym_LPAREN2] = ACTIONS(2319), + [anon_sym_BANG] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2317), + [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_typedef] = ACTIONS(2317), + [anon_sym_virtual] = ACTIONS(2317), + [anon_sym_extern] = ACTIONS(2317), + [anon_sym___attribute__] = ACTIONS(2317), + [anon_sym___attribute] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2319), + [anon_sym___declspec] = ACTIONS(2317), + [anon_sym___based] = ACTIONS(2317), + [anon_sym___cdecl] = ACTIONS(2317), + [anon_sym___clrcall] = ACTIONS(2317), + [anon_sym___stdcall] = ACTIONS(2317), + [anon_sym___fastcall] = ACTIONS(2317), + [anon_sym___thiscall] = ACTIONS(2317), + [anon_sym___vectorcall] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_signed] = ACTIONS(2317), + [anon_sym_unsigned] = ACTIONS(2317), + [anon_sym_long] = ACTIONS(2317), + [anon_sym_short] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_register] = ACTIONS(2317), + [anon_sym_inline] = ACTIONS(2317), + [anon_sym___inline] = ACTIONS(2317), + [anon_sym___inline__] = ACTIONS(2317), + [anon_sym___forceinline] = ACTIONS(2317), + [anon_sym_thread_local] = ACTIONS(2317), + [anon_sym___thread] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_constexpr] = ACTIONS(2317), + [anon_sym_volatile] = ACTIONS(2317), + [anon_sym_restrict] = ACTIONS(2317), + [anon_sym___restrict__] = ACTIONS(2317), + [anon_sym__Atomic] = ACTIONS(2317), + [anon_sym__Noreturn] = ACTIONS(2317), + [anon_sym_noreturn] = ACTIONS(2317), + [anon_sym__Nonnull] = ACTIONS(2317), + [anon_sym_mutable] = ACTIONS(2317), + [anon_sym_constinit] = ACTIONS(2317), + [anon_sym_consteval] = ACTIONS(2317), + [anon_sym_alignas] = ACTIONS(2317), + [anon_sym__Alignas] = ACTIONS(2317), + [sym_primitive_type] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_struct] = ACTIONS(2317), + [anon_sym_union] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_case] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_goto] = ACTIONS(2317), + [anon_sym___try] = ACTIONS(2317), + [anon_sym___leave] = ACTIONS(2317), + [anon_sym_not] = ACTIONS(2317), + [anon_sym_compl] = ACTIONS(2317), + [anon_sym_DASH_DASH] = ACTIONS(2319), + [anon_sym_PLUS_PLUS] = ACTIONS(2319), + [anon_sym_sizeof] = ACTIONS(2317), + [anon_sym___alignof__] = ACTIONS(2317), + [anon_sym___alignof] = ACTIONS(2317), + [anon_sym__alignof] = ACTIONS(2317), + [anon_sym_alignof] = ACTIONS(2317), + [anon_sym__Alignof] = ACTIONS(2317), + [anon_sym_offsetof] = ACTIONS(2317), + [anon_sym__Generic] = ACTIONS(2317), + [anon_sym_asm] = ACTIONS(2317), + [anon_sym___asm__] = ACTIONS(2317), + [anon_sym___asm] = ACTIONS(2317), + [sym_number_literal] = ACTIONS(2319), + [anon_sym_L_SQUOTE] = ACTIONS(2319), + [anon_sym_u_SQUOTE] = ACTIONS(2319), + [anon_sym_U_SQUOTE] = ACTIONS(2319), + [anon_sym_u8_SQUOTE] = ACTIONS(2319), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_L_DQUOTE] = ACTIONS(2319), + [anon_sym_u_DQUOTE] = ACTIONS(2319), + [anon_sym_U_DQUOTE] = ACTIONS(2319), + [anon_sym_u8_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [sym_true] = ACTIONS(2317), + [sym_false] = ACTIONS(2317), + [anon_sym_NULL] = ACTIONS(2317), + [anon_sym_nullptr] = ACTIONS(2317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2317), + [anon_sym_decltype] = ACTIONS(2317), + [anon_sym_explicit] = ACTIONS(2317), + [anon_sym_typename] = ACTIONS(2317), + [anon_sym_template] = ACTIONS(2317), + [anon_sym_operator] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_delete] = ACTIONS(2317), + [anon_sym_throw] = ACTIONS(2317), + [anon_sym_namespace] = ACTIONS(2317), + [anon_sym_using] = ACTIONS(2317), + [anon_sym_static_assert] = ACTIONS(2317), + [anon_sym_concept] = ACTIONS(2317), + [anon_sym_co_return] = ACTIONS(2317), + [anon_sym_co_yield] = ACTIONS(2317), + [anon_sym_R_DQUOTE] = ACTIONS(2319), + [anon_sym_LR_DQUOTE] = ACTIONS(2319), + [anon_sym_uR_DQUOTE] = ACTIONS(2319), + [anon_sym_UR_DQUOTE] = ACTIONS(2319), + [anon_sym_u8R_DQUOTE] = ACTIONS(2319), + [anon_sym_co_await] = ACTIONS(2317), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_requires] = ACTIONS(2317), + [sym_this] = ACTIONS(2317), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2317), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_FORWARD] = ACTIONS(2317), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2317), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2317), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2317), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2317), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_PS_GET] = ACTIONS(2317), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2317), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2317), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2317), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2317), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2317), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2317), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2317), + [anon_sym_MOZ_COLD] = ACTIONS(2317), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2317), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2317), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2317), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2317), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2317), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2317), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2317), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2317), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2317), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2317), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2317), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2317), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2317), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_NONNULL] = ACTIONS(2317), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2317), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2317), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2317), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2317), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2317), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2317), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2317), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2317), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2317), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2317), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2317), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2317), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2317), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2317), + [anon_sym_MOZ_RAII] = ACTIONS(2317), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2317), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2317), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2317), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2317), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2317), + }, + [STATE(533)] = { + [sym_identifier] = ACTIONS(2325), + [aux_sym_preproc_include_token1] = ACTIONS(2325), + [aux_sym_preproc_def_token1] = ACTIONS(2325), + [aux_sym_preproc_if_token1] = ACTIONS(2325), + [aux_sym_preproc_if_token2] = ACTIONS(2325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2325), + [sym_preproc_directive] = ACTIONS(2325), + [anon_sym_LPAREN2] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_PLUS] = ACTIONS(2325), + [anon_sym_STAR] = ACTIONS(2327), + [anon_sym_AMP_AMP] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym___extension__] = ACTIONS(2325), + [anon_sym_typedef] = ACTIONS(2325), + [anon_sym_virtual] = ACTIONS(2325), + [anon_sym_extern] = ACTIONS(2325), + [anon_sym___attribute__] = ACTIONS(2325), + [anon_sym___attribute] = ACTIONS(2325), + [anon_sym_COLON_COLON] = ACTIONS(2327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), + [anon_sym___declspec] = ACTIONS(2325), + [anon_sym___based] = ACTIONS(2325), + [anon_sym___cdecl] = ACTIONS(2325), + [anon_sym___clrcall] = ACTIONS(2325), + [anon_sym___stdcall] = ACTIONS(2325), + [anon_sym___fastcall] = ACTIONS(2325), + [anon_sym___thiscall] = ACTIONS(2325), + [anon_sym___vectorcall] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_signed] = ACTIONS(2325), + [anon_sym_unsigned] = ACTIONS(2325), + [anon_sym_long] = ACTIONS(2325), + [anon_sym_short] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_static] = ACTIONS(2325), + [anon_sym_register] = ACTIONS(2325), + [anon_sym_inline] = ACTIONS(2325), + [anon_sym___inline] = ACTIONS(2325), + [anon_sym___inline__] = ACTIONS(2325), + [anon_sym___forceinline] = ACTIONS(2325), + [anon_sym_thread_local] = ACTIONS(2325), + [anon_sym___thread] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_constexpr] = ACTIONS(2325), + [anon_sym_volatile] = ACTIONS(2325), + [anon_sym_restrict] = ACTIONS(2325), + [anon_sym___restrict__] = ACTIONS(2325), + [anon_sym__Atomic] = ACTIONS(2325), + [anon_sym__Noreturn] = ACTIONS(2325), + [anon_sym_noreturn] = ACTIONS(2325), + [anon_sym__Nonnull] = ACTIONS(2325), + [anon_sym_mutable] = ACTIONS(2325), + [anon_sym_constinit] = ACTIONS(2325), + [anon_sym_consteval] = ACTIONS(2325), + [anon_sym_alignas] = ACTIONS(2325), + [anon_sym__Alignas] = ACTIONS(2325), + [sym_primitive_type] = ACTIONS(2325), + [anon_sym_enum] = ACTIONS(2325), + [anon_sym_class] = ACTIONS(2325), + [anon_sym_struct] = ACTIONS(2325), + [anon_sym_union] = ACTIONS(2325), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2325), + [anon_sym_case] = ACTIONS(2325), + [anon_sym_default] = ACTIONS(2325), + [anon_sym_while] = ACTIONS(2325), + [anon_sym_do] = ACTIONS(2325), + [anon_sym_for] = ACTIONS(2325), + [anon_sym_return] = ACTIONS(2325), + [anon_sym_break] = ACTIONS(2325), + [anon_sym_continue] = ACTIONS(2325), + [anon_sym_goto] = ACTIONS(2325), + [anon_sym___try] = ACTIONS(2325), + [anon_sym___leave] = ACTIONS(2325), + [anon_sym_not] = ACTIONS(2325), + [anon_sym_compl] = ACTIONS(2325), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_sizeof] = ACTIONS(2325), + [anon_sym___alignof__] = ACTIONS(2325), + [anon_sym___alignof] = ACTIONS(2325), + [anon_sym__alignof] = ACTIONS(2325), + [anon_sym_alignof] = ACTIONS(2325), + [anon_sym__Alignof] = ACTIONS(2325), + [anon_sym_offsetof] = ACTIONS(2325), + [anon_sym__Generic] = ACTIONS(2325), + [anon_sym_asm] = ACTIONS(2325), + [anon_sym___asm__] = ACTIONS(2325), + [anon_sym___asm] = ACTIONS(2325), + [sym_number_literal] = ACTIONS(2327), + [anon_sym_L_SQUOTE] = ACTIONS(2327), + [anon_sym_u_SQUOTE] = ACTIONS(2327), + [anon_sym_U_SQUOTE] = ACTIONS(2327), + [anon_sym_u8_SQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2325), + [sym_false] = ACTIONS(2325), + [anon_sym_NULL] = ACTIONS(2325), + [anon_sym_nullptr] = ACTIONS(2325), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2325), + [anon_sym_decltype] = ACTIONS(2325), + [anon_sym_explicit] = ACTIONS(2325), + [anon_sym_typename] = ACTIONS(2325), + [anon_sym_template] = ACTIONS(2325), + [anon_sym_operator] = ACTIONS(2325), + [anon_sym_try] = ACTIONS(2325), + [anon_sym_delete] = ACTIONS(2325), + [anon_sym_throw] = ACTIONS(2325), + [anon_sym_namespace] = ACTIONS(2325), + [anon_sym_using] = ACTIONS(2325), + [anon_sym_static_assert] = ACTIONS(2325), + [anon_sym_concept] = ACTIONS(2325), + [anon_sym_co_return] = ACTIONS(2325), + [anon_sym_co_yield] = ACTIONS(2325), + [anon_sym_R_DQUOTE] = ACTIONS(2327), + [anon_sym_LR_DQUOTE] = ACTIONS(2327), + [anon_sym_uR_DQUOTE] = ACTIONS(2327), + [anon_sym_UR_DQUOTE] = ACTIONS(2327), + [anon_sym_u8R_DQUOTE] = ACTIONS(2327), + [anon_sym_co_await] = ACTIONS(2325), + [anon_sym_new] = ACTIONS(2325), + [anon_sym_requires] = ACTIONS(2325), + [sym_this] = ACTIONS(2325), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2325), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_FORWARD] = ACTIONS(2325), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2325), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2325), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2325), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2325), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_PS_GET] = ACTIONS(2325), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2325), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2325), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2325), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2325), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2325), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2325), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2325), + [anon_sym_MOZ_COLD] = ACTIONS(2325), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2325), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2325), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2325), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2325), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2325), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2325), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2325), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2325), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2325), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2325), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2325), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2325), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2325), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_NONNULL] = ACTIONS(2325), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2325), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2325), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2325), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2325), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2325), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2325), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2325), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2325), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2325), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2325), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2325), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2325), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2325), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2325), + [anon_sym_MOZ_RAII] = ACTIONS(2325), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2325), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2325), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2325), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2325), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2325), + }, + [STATE(534)] = { + [sym_identifier] = ACTIONS(2396), + [aux_sym_preproc_include_token1] = ACTIONS(2396), + [aux_sym_preproc_def_token1] = ACTIONS(2396), + [aux_sym_preproc_if_token1] = ACTIONS(2396), + [aux_sym_preproc_if_token2] = ACTIONS(2396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2396), + [sym_preproc_directive] = ACTIONS(2396), + [anon_sym_LPAREN2] = ACTIONS(2398), + [anon_sym_BANG] = ACTIONS(2398), + [anon_sym_TILDE] = ACTIONS(2398), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym___extension__] = ACTIONS(2396), + [anon_sym_typedef] = ACTIONS(2396), + [anon_sym_virtual] = ACTIONS(2396), + [anon_sym_extern] = ACTIONS(2396), + [anon_sym___attribute__] = ACTIONS(2396), + [anon_sym___attribute] = ACTIONS(2396), + [anon_sym_COLON_COLON] = ACTIONS(2398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2398), + [anon_sym___declspec] = ACTIONS(2396), + [anon_sym___based] = ACTIONS(2396), + [anon_sym___cdecl] = ACTIONS(2396), + [anon_sym___clrcall] = ACTIONS(2396), + [anon_sym___stdcall] = ACTIONS(2396), + [anon_sym___fastcall] = ACTIONS(2396), + [anon_sym___thiscall] = ACTIONS(2396), + [anon_sym___vectorcall] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_signed] = ACTIONS(2396), + [anon_sym_unsigned] = ACTIONS(2396), + [anon_sym_long] = ACTIONS(2396), + [anon_sym_short] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_register] = ACTIONS(2396), + [anon_sym_inline] = ACTIONS(2396), + [anon_sym___inline] = ACTIONS(2396), + [anon_sym___inline__] = ACTIONS(2396), + [anon_sym___forceinline] = ACTIONS(2396), + [anon_sym_thread_local] = ACTIONS(2396), + [anon_sym___thread] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_constexpr] = ACTIONS(2396), + [anon_sym_volatile] = ACTIONS(2396), + [anon_sym_restrict] = ACTIONS(2396), + [anon_sym___restrict__] = ACTIONS(2396), + [anon_sym__Atomic] = ACTIONS(2396), + [anon_sym__Noreturn] = ACTIONS(2396), + [anon_sym_noreturn] = ACTIONS(2396), + [anon_sym__Nonnull] = ACTIONS(2396), + [anon_sym_mutable] = ACTIONS(2396), + [anon_sym_constinit] = ACTIONS(2396), + [anon_sym_consteval] = ACTIONS(2396), + [anon_sym_alignas] = ACTIONS(2396), + [anon_sym__Alignas] = ACTIONS(2396), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_struct] = ACTIONS(2396), + [anon_sym_union] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_case] = ACTIONS(2396), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_goto] = ACTIONS(2396), + [anon_sym___try] = ACTIONS(2396), + [anon_sym___leave] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2396), + [anon_sym_compl] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2398), + [anon_sym_PLUS_PLUS] = ACTIONS(2398), + [anon_sym_sizeof] = ACTIONS(2396), + [anon_sym___alignof__] = ACTIONS(2396), + [anon_sym___alignof] = ACTIONS(2396), + [anon_sym__alignof] = ACTIONS(2396), + [anon_sym_alignof] = ACTIONS(2396), + [anon_sym__Alignof] = ACTIONS(2396), + [anon_sym_offsetof] = ACTIONS(2396), + [anon_sym__Generic] = ACTIONS(2396), + [anon_sym_asm] = ACTIONS(2396), + [anon_sym___asm__] = ACTIONS(2396), + [anon_sym___asm] = ACTIONS(2396), + [sym_number_literal] = ACTIONS(2398), + [anon_sym_L_SQUOTE] = ACTIONS(2398), + [anon_sym_u_SQUOTE] = ACTIONS(2398), + [anon_sym_U_SQUOTE] = ACTIONS(2398), + [anon_sym_u8_SQUOTE] = ACTIONS(2398), + [anon_sym_SQUOTE] = ACTIONS(2398), + [anon_sym_L_DQUOTE] = ACTIONS(2398), + [anon_sym_u_DQUOTE] = ACTIONS(2398), + [anon_sym_U_DQUOTE] = ACTIONS(2398), + [anon_sym_u8_DQUOTE] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [anon_sym_NULL] = ACTIONS(2396), + [anon_sym_nullptr] = ACTIONS(2396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2396), + [anon_sym_decltype] = ACTIONS(2396), + [anon_sym_explicit] = ACTIONS(2396), + [anon_sym_typename] = ACTIONS(2396), + [anon_sym_template] = ACTIONS(2396), + [anon_sym_operator] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_static_assert] = ACTIONS(2396), + [anon_sym_concept] = ACTIONS(2396), + [anon_sym_co_return] = ACTIONS(2396), + [anon_sym_co_yield] = ACTIONS(2396), + [anon_sym_R_DQUOTE] = ACTIONS(2398), + [anon_sym_LR_DQUOTE] = ACTIONS(2398), + [anon_sym_uR_DQUOTE] = ACTIONS(2398), + [anon_sym_UR_DQUOTE] = ACTIONS(2398), + [anon_sym_u8R_DQUOTE] = ACTIONS(2398), + [anon_sym_co_await] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_requires] = ACTIONS(2396), + [sym_this] = ACTIONS(2396), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2396), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_FORWARD] = ACTIONS(2396), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2396), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2396), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2396), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2396), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_PS_GET] = ACTIONS(2396), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2396), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2396), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2396), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2396), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2396), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2396), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2396), + [anon_sym_MOZ_COLD] = ACTIONS(2396), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2396), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2396), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2396), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2396), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2396), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2396), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2396), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2396), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2396), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2396), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2396), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2396), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2396), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_NONNULL] = ACTIONS(2396), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2396), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2396), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2396), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2396), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2396), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2396), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2396), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2396), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2396), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2396), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2396), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2396), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2396), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2396), + [anon_sym_MOZ_RAII] = ACTIONS(2396), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2396), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2396), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2396), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2396), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2396), + }, + [STATE(535)] = { + [sym_identifier] = ACTIONS(2400), + [aux_sym_preproc_include_token1] = ACTIONS(2400), + [aux_sym_preproc_def_token1] = ACTIONS(2400), + [aux_sym_preproc_if_token1] = ACTIONS(2400), + [aux_sym_preproc_if_token2] = ACTIONS(2400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2400), + [sym_preproc_directive] = ACTIONS(2400), + [anon_sym_LPAREN2] = ACTIONS(2402), + [anon_sym_BANG] = ACTIONS(2402), + [anon_sym_TILDE] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_AMP] = ACTIONS(2400), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym___extension__] = ACTIONS(2400), + [anon_sym_typedef] = ACTIONS(2400), + [anon_sym_virtual] = ACTIONS(2400), + [anon_sym_extern] = ACTIONS(2400), + [anon_sym___attribute__] = ACTIONS(2400), + [anon_sym___attribute] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2402), + [anon_sym___declspec] = ACTIONS(2400), + [anon_sym___based] = ACTIONS(2400), + [anon_sym___cdecl] = ACTIONS(2400), + [anon_sym___clrcall] = ACTIONS(2400), + [anon_sym___stdcall] = ACTIONS(2400), + [anon_sym___fastcall] = ACTIONS(2400), + [anon_sym___thiscall] = ACTIONS(2400), + [anon_sym___vectorcall] = ACTIONS(2400), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_signed] = ACTIONS(2400), + [anon_sym_unsigned] = ACTIONS(2400), + [anon_sym_long] = ACTIONS(2400), + [anon_sym_short] = ACTIONS(2400), + [anon_sym_LBRACK] = ACTIONS(2400), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_register] = ACTIONS(2400), + [anon_sym_inline] = ACTIONS(2400), + [anon_sym___inline] = ACTIONS(2400), + [anon_sym___inline__] = ACTIONS(2400), + [anon_sym___forceinline] = ACTIONS(2400), + [anon_sym_thread_local] = ACTIONS(2400), + [anon_sym___thread] = ACTIONS(2400), + [anon_sym_const] = ACTIONS(2400), + [anon_sym_constexpr] = ACTIONS(2400), + [anon_sym_volatile] = ACTIONS(2400), + [anon_sym_restrict] = ACTIONS(2400), + [anon_sym___restrict__] = ACTIONS(2400), + [anon_sym__Atomic] = ACTIONS(2400), + [anon_sym__Noreturn] = ACTIONS(2400), + [anon_sym_noreturn] = ACTIONS(2400), + [anon_sym__Nonnull] = ACTIONS(2400), + [anon_sym_mutable] = ACTIONS(2400), + [anon_sym_constinit] = ACTIONS(2400), + [anon_sym_consteval] = ACTIONS(2400), + [anon_sym_alignas] = ACTIONS(2400), + [anon_sym__Alignas] = ACTIONS(2400), + [sym_primitive_type] = ACTIONS(2400), + [anon_sym_enum] = ACTIONS(2400), + [anon_sym_class] = ACTIONS(2400), + [anon_sym_struct] = ACTIONS(2400), + [anon_sym_union] = ACTIONS(2400), + [anon_sym_if] = ACTIONS(2400), + [anon_sym_switch] = ACTIONS(2400), + [anon_sym_case] = ACTIONS(2400), + [anon_sym_default] = ACTIONS(2400), + [anon_sym_while] = ACTIONS(2400), + [anon_sym_do] = ACTIONS(2400), + [anon_sym_for] = ACTIONS(2400), + [anon_sym_return] = ACTIONS(2400), + [anon_sym_break] = ACTIONS(2400), + [anon_sym_continue] = ACTIONS(2400), + [anon_sym_goto] = ACTIONS(2400), + [anon_sym___try] = ACTIONS(2400), + [anon_sym___leave] = ACTIONS(2400), + [anon_sym_not] = ACTIONS(2400), + [anon_sym_compl] = ACTIONS(2400), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_PLUS_PLUS] = ACTIONS(2402), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2400), + [anon_sym__Generic] = ACTIONS(2400), + [anon_sym_asm] = ACTIONS(2400), + [anon_sym___asm__] = ACTIONS(2400), + [anon_sym___asm] = ACTIONS(2400), + [sym_number_literal] = ACTIONS(2402), + [anon_sym_L_SQUOTE] = ACTIONS(2402), + [anon_sym_u_SQUOTE] = ACTIONS(2402), + [anon_sym_U_SQUOTE] = ACTIONS(2402), + [anon_sym_u8_SQUOTE] = ACTIONS(2402), + [anon_sym_SQUOTE] = ACTIONS(2402), + [anon_sym_L_DQUOTE] = ACTIONS(2402), + [anon_sym_u_DQUOTE] = ACTIONS(2402), + [anon_sym_U_DQUOTE] = ACTIONS(2402), + [anon_sym_u8_DQUOTE] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [sym_true] = ACTIONS(2400), + [sym_false] = ACTIONS(2400), + [anon_sym_NULL] = ACTIONS(2400), + [anon_sym_nullptr] = ACTIONS(2400), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2400), + [anon_sym_decltype] = ACTIONS(2400), + [anon_sym_explicit] = ACTIONS(2400), + [anon_sym_typename] = ACTIONS(2400), + [anon_sym_template] = ACTIONS(2400), + [anon_sym_operator] = ACTIONS(2400), + [anon_sym_try] = ACTIONS(2400), + [anon_sym_delete] = ACTIONS(2400), + [anon_sym_throw] = ACTIONS(2400), + [anon_sym_namespace] = ACTIONS(2400), + [anon_sym_using] = ACTIONS(2400), + [anon_sym_static_assert] = ACTIONS(2400), + [anon_sym_concept] = ACTIONS(2400), + [anon_sym_co_return] = ACTIONS(2400), + [anon_sym_co_yield] = ACTIONS(2400), + [anon_sym_R_DQUOTE] = ACTIONS(2402), + [anon_sym_LR_DQUOTE] = ACTIONS(2402), + [anon_sym_uR_DQUOTE] = ACTIONS(2402), + [anon_sym_UR_DQUOTE] = ACTIONS(2402), + [anon_sym_u8R_DQUOTE] = ACTIONS(2402), + [anon_sym_co_await] = ACTIONS(2400), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_requires] = ACTIONS(2400), + [sym_this] = ACTIONS(2400), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2400), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_FORWARD] = ACTIONS(2400), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2400), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2400), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2400), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2400), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_PS_GET] = ACTIONS(2400), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2400), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2400), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2400), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2400), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2400), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2400), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2400), + [anon_sym_MOZ_COLD] = ACTIONS(2400), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2400), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2400), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2400), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2400), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2400), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2400), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2400), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2400), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2400), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2400), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2400), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2400), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2400), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_NONNULL] = ACTIONS(2400), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2400), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2400), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2400), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2400), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2400), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2400), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2400), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2400), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2400), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2400), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2400), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2400), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2400), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2400), + [anon_sym_MOZ_RAII] = ACTIONS(2400), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2400), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2400), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2400), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2400), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2400), + }, + [STATE(536)] = { + [sym_identifier] = ACTIONS(2412), + [aux_sym_preproc_include_token1] = ACTIONS(2412), + [aux_sym_preproc_def_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token2] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2412), + [sym_preproc_directive] = ACTIONS(2412), + [anon_sym_LPAREN2] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym___extension__] = ACTIONS(2412), + [anon_sym_typedef] = ACTIONS(2412), + [anon_sym_virtual] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym___attribute__] = ACTIONS(2412), + [anon_sym___attribute] = ACTIONS(2412), + [anon_sym_COLON_COLON] = ACTIONS(2414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2414), + [anon_sym___declspec] = ACTIONS(2412), + [anon_sym___based] = ACTIONS(2412), + [anon_sym___cdecl] = ACTIONS(2412), + [anon_sym___clrcall] = ACTIONS(2412), + [anon_sym___stdcall] = ACTIONS(2412), + [anon_sym___fastcall] = ACTIONS(2412), + [anon_sym___thiscall] = ACTIONS(2412), + [anon_sym___vectorcall] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_signed] = ACTIONS(2412), + [anon_sym_unsigned] = ACTIONS(2412), + [anon_sym_long] = ACTIONS(2412), + [anon_sym_short] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym___inline] = ACTIONS(2412), + [anon_sym___inline__] = ACTIONS(2412), + [anon_sym___forceinline] = ACTIONS(2412), + [anon_sym_thread_local] = ACTIONS(2412), + [anon_sym___thread] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_constexpr] = ACTIONS(2412), + [anon_sym_volatile] = ACTIONS(2412), + [anon_sym_restrict] = ACTIONS(2412), + [anon_sym___restrict__] = ACTIONS(2412), + [anon_sym__Atomic] = ACTIONS(2412), + [anon_sym__Noreturn] = ACTIONS(2412), + [anon_sym_noreturn] = ACTIONS(2412), + [anon_sym__Nonnull] = ACTIONS(2412), + [anon_sym_mutable] = ACTIONS(2412), + [anon_sym_constinit] = ACTIONS(2412), + [anon_sym_consteval] = ACTIONS(2412), + [anon_sym_alignas] = ACTIONS(2412), + [anon_sym__Alignas] = ACTIONS(2412), + [sym_primitive_type] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_class] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_switch] = ACTIONS(2412), + [anon_sym_case] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_do] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_goto] = ACTIONS(2412), + [anon_sym___try] = ACTIONS(2412), + [anon_sym___leave] = ACTIONS(2412), + [anon_sym_not] = ACTIONS(2412), + [anon_sym_compl] = ACTIONS(2412), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_sizeof] = ACTIONS(2412), + [anon_sym___alignof__] = ACTIONS(2412), + [anon_sym___alignof] = ACTIONS(2412), + [anon_sym__alignof] = ACTIONS(2412), + [anon_sym_alignof] = ACTIONS(2412), + [anon_sym__Alignof] = ACTIONS(2412), + [anon_sym_offsetof] = ACTIONS(2412), + [anon_sym__Generic] = ACTIONS(2412), + [anon_sym_asm] = ACTIONS(2412), + [anon_sym___asm__] = ACTIONS(2412), + [anon_sym___asm] = ACTIONS(2412), + [sym_number_literal] = ACTIONS(2414), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2412), + [sym_false] = ACTIONS(2412), + [anon_sym_NULL] = ACTIONS(2412), + [anon_sym_nullptr] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2412), + [anon_sym_decltype] = ACTIONS(2412), + [anon_sym_explicit] = ACTIONS(2412), + [anon_sym_typename] = ACTIONS(2412), + [anon_sym_template] = ACTIONS(2412), + [anon_sym_operator] = ACTIONS(2412), + [anon_sym_try] = ACTIONS(2412), + [anon_sym_delete] = ACTIONS(2412), + [anon_sym_throw] = ACTIONS(2412), + [anon_sym_namespace] = ACTIONS(2412), + [anon_sym_using] = ACTIONS(2412), + [anon_sym_static_assert] = ACTIONS(2412), + [anon_sym_concept] = ACTIONS(2412), + [anon_sym_co_return] = ACTIONS(2412), + [anon_sym_co_yield] = ACTIONS(2412), + [anon_sym_R_DQUOTE] = ACTIONS(2414), + [anon_sym_LR_DQUOTE] = ACTIONS(2414), + [anon_sym_uR_DQUOTE] = ACTIONS(2414), + [anon_sym_UR_DQUOTE] = ACTIONS(2414), + [anon_sym_u8R_DQUOTE] = ACTIONS(2414), + [anon_sym_co_await] = ACTIONS(2412), + [anon_sym_new] = ACTIONS(2412), + [anon_sym_requires] = ACTIONS(2412), + [sym_this] = ACTIONS(2412), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2412), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_FORWARD] = ACTIONS(2412), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2412), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2412), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2412), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2412), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_PS_GET] = ACTIONS(2412), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2412), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2412), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2412), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2412), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2412), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2412), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2412), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2412), + [anon_sym_MOZ_COLD] = ACTIONS(2412), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2412), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2412), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2412), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2412), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2412), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2412), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2412), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2412), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2412), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2412), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2412), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2412), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2412), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_NONNULL] = ACTIONS(2412), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2412), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2412), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2412), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2412), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2412), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2412), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2412), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2412), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2412), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2412), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2412), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2412), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2412), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2412), + [anon_sym_MOZ_RAII] = ACTIONS(2412), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2412), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2412), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2412), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2412), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2412), + }, + [STATE(537)] = { + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_include_token1] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token2] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2428), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_virtual] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_COLON_COLON] = ACTIONS(2430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___based] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_mutable] = ACTIONS(2428), + [anon_sym_constinit] = ACTIONS(2428), + [anon_sym_consteval] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_class] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_case] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_goto] = ACTIONS(2428), + [anon_sym___try] = ACTIONS(2428), + [anon_sym___leave] = ACTIONS(2428), + [anon_sym_not] = ACTIONS(2428), + [anon_sym_compl] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_sizeof] = ACTIONS(2428), + [anon_sym___alignof__] = ACTIONS(2428), + [anon_sym___alignof] = ACTIONS(2428), + [anon_sym__alignof] = ACTIONS(2428), + [anon_sym_alignof] = ACTIONS(2428), + [anon_sym__Alignof] = ACTIONS(2428), + [anon_sym_offsetof] = ACTIONS(2428), + [anon_sym__Generic] = ACTIONS(2428), + [anon_sym_asm] = ACTIONS(2428), + [anon_sym___asm__] = ACTIONS(2428), + [anon_sym___asm] = ACTIONS(2428), + [sym_number_literal] = ACTIONS(2430), + [anon_sym_L_SQUOTE] = ACTIONS(2430), + [anon_sym_u_SQUOTE] = ACTIONS(2430), + [anon_sym_U_SQUOTE] = ACTIONS(2430), + [anon_sym_u8_SQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_L_DQUOTE] = ACTIONS(2430), + [anon_sym_u_DQUOTE] = ACTIONS(2430), + [anon_sym_U_DQUOTE] = ACTIONS(2430), + [anon_sym_u8_DQUOTE] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2430), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [anon_sym_NULL] = ACTIONS(2428), + [anon_sym_nullptr] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2428), + [anon_sym_decltype] = ACTIONS(2428), + [anon_sym_explicit] = ACTIONS(2428), + [anon_sym_typename] = ACTIONS(2428), + [anon_sym_template] = ACTIONS(2428), + [anon_sym_operator] = ACTIONS(2428), + [anon_sym_try] = ACTIONS(2428), + [anon_sym_delete] = ACTIONS(2428), + [anon_sym_throw] = ACTIONS(2428), + [anon_sym_namespace] = ACTIONS(2428), + [anon_sym_using] = ACTIONS(2428), + [anon_sym_static_assert] = ACTIONS(2428), + [anon_sym_concept] = ACTIONS(2428), + [anon_sym_co_return] = ACTIONS(2428), + [anon_sym_co_yield] = ACTIONS(2428), + [anon_sym_R_DQUOTE] = ACTIONS(2430), + [anon_sym_LR_DQUOTE] = ACTIONS(2430), + [anon_sym_uR_DQUOTE] = ACTIONS(2430), + [anon_sym_UR_DQUOTE] = ACTIONS(2430), + [anon_sym_u8R_DQUOTE] = ACTIONS(2430), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2428), + [anon_sym_requires] = ACTIONS(2428), + [sym_this] = ACTIONS(2428), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2428), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_FORWARD] = ACTIONS(2428), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2428), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2428), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2428), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_PS_GET] = ACTIONS(2428), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2428), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2428), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2428), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2428), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2428), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2428), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2428), + [anon_sym_MOZ_COLD] = ACTIONS(2428), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2428), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2428), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2428), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2428), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2428), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2428), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2428), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2428), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2428), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2428), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2428), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2428), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2428), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_NONNULL] = ACTIONS(2428), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2428), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2428), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2428), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2428), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2428), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2428), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2428), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2428), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2428), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2428), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2428), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2428), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2428), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2428), + [anon_sym_MOZ_RAII] = ACTIONS(2428), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2428), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2428), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2428), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2428), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2428), + }, + [STATE(538)] = { + [ts_builtin_sym_end] = ACTIONS(2486), [sym_identifier] = ACTIONS(2488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2490), - [anon_sym_COMMA] = ACTIONS(2490), - [anon_sym_RPAREN] = ACTIONS(2490), - [anon_sym_LPAREN2] = ACTIONS(2490), - [anon_sym_TILDE] = ACTIONS(2490), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_AMP_AMP] = ACTIONS(2490), + [aux_sym_preproc_include_token1] = ACTIONS(2488), + [aux_sym_preproc_def_token1] = ACTIONS(2488), + [aux_sym_preproc_if_token1] = ACTIONS(2488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2488), + [sym_preproc_directive] = ACTIONS(2488), + [anon_sym_LPAREN2] = ACTIONS(2486), + [anon_sym_BANG] = ACTIONS(2486), + [anon_sym_TILDE] = ACTIONS(2486), + [anon_sym_DASH] = ACTIONS(2488), + [anon_sym_PLUS] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(2486), + [anon_sym_AMP_AMP] = ACTIONS(2486), [anon_sym_AMP] = ACTIONS(2488), - [anon_sym_SEMI] = ACTIONS(2490), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym___extension__] = ACTIONS(2488), + [anon_sym_typedef] = ACTIONS(2488), + [anon_sym_virtual] = ACTIONS(2488), [anon_sym_extern] = ACTIONS(2488), [anon_sym___attribute__] = ACTIONS(2488), - [anon_sym_COLON_COLON] = ACTIONS(2490), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2490), + [anon_sym___attribute] = ACTIONS(2488), + [anon_sym_COLON_COLON] = ACTIONS(2486), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2486), [anon_sym___declspec] = ACTIONS(2488), [anon_sym___based] = ACTIONS(2488), - [anon_sym_LBRACE] = ACTIONS(2490), + [anon_sym___cdecl] = ACTIONS(2488), + [anon_sym___clrcall] = ACTIONS(2488), + [anon_sym___stdcall] = ACTIONS(2488), + [anon_sym___fastcall] = ACTIONS(2488), + [anon_sym___thiscall] = ACTIONS(2488), + [anon_sym___vectorcall] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_signed] = ACTIONS(2488), + [anon_sym_unsigned] = ACTIONS(2488), + [anon_sym_long] = ACTIONS(2488), + [anon_sym_short] = ACTIONS(2488), [anon_sym_LBRACK] = ACTIONS(2488), - [anon_sym_EQ] = ACTIONS(2490), [anon_sym_static] = ACTIONS(2488), [anon_sym_register] = ACTIONS(2488), [anon_sym_inline] = ACTIONS(2488), + [anon_sym___inline] = ACTIONS(2488), + [anon_sym___inline__] = ACTIONS(2488), + [anon_sym___forceinline] = ACTIONS(2488), [anon_sym_thread_local] = ACTIONS(2488), + [anon_sym___thread] = ACTIONS(2488), [anon_sym_const] = ACTIONS(2488), + [anon_sym_constexpr] = ACTIONS(2488), [anon_sym_volatile] = ACTIONS(2488), [anon_sym_restrict] = ACTIONS(2488), + [anon_sym___restrict__] = ACTIONS(2488), [anon_sym__Atomic] = ACTIONS(2488), + [anon_sym__Noreturn] = ACTIONS(2488), + [anon_sym_noreturn] = ACTIONS(2488), + [anon_sym__Nonnull] = ACTIONS(2488), [anon_sym_mutable] = ACTIONS(2488), - [anon_sym_constexpr] = ACTIONS(2488), - [anon_sym_COLON] = ACTIONS(2488), - [anon_sym_DASH_GT] = ACTIONS(2490), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2488), - [anon_sym_override] = ACTIONS(2488), - [anon_sym_virtual] = ACTIONS(2488), + [anon_sym_constinit] = ACTIONS(2488), + [anon_sym_consteval] = ACTIONS(2488), + [anon_sym_alignas] = ACTIONS(2488), + [anon_sym__Alignas] = ACTIONS(2488), + [sym_primitive_type] = ACTIONS(2488), + [anon_sym_enum] = ACTIONS(2488), + [anon_sym_class] = ACTIONS(2488), + [anon_sym_struct] = ACTIONS(2488), + [anon_sym_union] = ACTIONS(2488), + [anon_sym_if] = ACTIONS(2488), + [anon_sym_switch] = ACTIONS(2488), + [anon_sym_case] = ACTIONS(2488), + [anon_sym_default] = ACTIONS(2488), + [anon_sym_while] = ACTIONS(2488), + [anon_sym_do] = ACTIONS(2488), + [anon_sym_for] = ACTIONS(2488), + [anon_sym_return] = ACTIONS(2488), + [anon_sym_break] = ACTIONS(2488), + [anon_sym_continue] = ACTIONS(2488), + [anon_sym_goto] = ACTIONS(2488), + [anon_sym_not] = ACTIONS(2488), + [anon_sym_compl] = ACTIONS(2488), + [anon_sym_DASH_DASH] = ACTIONS(2486), + [anon_sym_PLUS_PLUS] = ACTIONS(2486), + [anon_sym_sizeof] = ACTIONS(2488), + [anon_sym___alignof__] = ACTIONS(2488), + [anon_sym___alignof] = ACTIONS(2488), + [anon_sym__alignof] = ACTIONS(2488), + [anon_sym_alignof] = ACTIONS(2488), + [anon_sym__Alignof] = ACTIONS(2488), + [anon_sym_offsetof] = ACTIONS(2488), + [anon_sym__Generic] = ACTIONS(2488), + [anon_sym_asm] = ACTIONS(2488), + [anon_sym___asm__] = ACTIONS(2488), + [anon_sym___asm] = ACTIONS(2488), + [sym_number_literal] = ACTIONS(2486), + [anon_sym_L_SQUOTE] = ACTIONS(2486), + [anon_sym_u_SQUOTE] = ACTIONS(2486), + [anon_sym_U_SQUOTE] = ACTIONS(2486), + [anon_sym_u8_SQUOTE] = ACTIONS(2486), + [anon_sym_SQUOTE] = ACTIONS(2486), + [anon_sym_L_DQUOTE] = ACTIONS(2486), + [anon_sym_u_DQUOTE] = ACTIONS(2486), + [anon_sym_U_DQUOTE] = ACTIONS(2486), + [anon_sym_u8_DQUOTE] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2486), + [sym_true] = ACTIONS(2488), + [sym_false] = ACTIONS(2488), + [anon_sym_NULL] = ACTIONS(2488), + [anon_sym_nullptr] = ACTIONS(2488), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2488), + [anon_sym_decltype] = ACTIONS(2488), + [anon_sym_explicit] = ACTIONS(2488), + [anon_sym_typename] = ACTIONS(2488), [anon_sym_template] = ACTIONS(2488), - [anon_sym_GT2] = ACTIONS(2490), [anon_sym_operator] = ACTIONS(2488), - [anon_sym_noexcept] = ACTIONS(2488), + [anon_sym_try] = ACTIONS(2488), + [anon_sym_delete] = ACTIONS(2488), [anon_sym_throw] = ACTIONS(2488), + [anon_sym_namespace] = ACTIONS(2488), + [anon_sym_using] = ACTIONS(2488), + [anon_sym_static_assert] = ACTIONS(2488), + [anon_sym_concept] = ACTIONS(2488), + [anon_sym_co_return] = ACTIONS(2488), + [anon_sym_co_yield] = ACTIONS(2488), + [anon_sym_R_DQUOTE] = ACTIONS(2486), + [anon_sym_LR_DQUOTE] = ACTIONS(2486), + [anon_sym_uR_DQUOTE] = ACTIONS(2486), + [anon_sym_UR_DQUOTE] = ACTIONS(2486), + [anon_sym_u8R_DQUOTE] = ACTIONS(2486), + [anon_sym_co_await] = ACTIONS(2488), + [anon_sym_new] = ACTIONS(2488), + [anon_sym_requires] = ACTIONS(2488), + [sym_this] = ACTIONS(2488), + [sym_alone_macro] = ACTIONS(2486), + [aux_sym_alone_macro_call_token1] = ACTIONS(2488), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2488), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2488), + [anon_sym_FORWARD] = ACTIONS(2488), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2488), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2488), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2488), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2488), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2488), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2488), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2488), + [anon_sym_PS_GET] = ACTIONS(2488), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2488), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2488), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2488), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2488), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2488), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2488), [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2488), [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2488), [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2488), @@ -249565,19366 +175900,1490 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2488), [anon_sym_JS_PUBLIC_API] = ACTIONS(2488), }, - [1283] = { - [sym_identifier] = ACTIONS(3405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_RPAREN] = ACTIONS(3407), - [anon_sym_LPAREN2] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3407), - [anon_sym_STAR] = ACTIONS(3407), - [anon_sym_AMP_AMP] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3407), - [anon_sym_extern] = ACTIONS(3405), - [anon_sym___attribute__] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3407), - [anon_sym___declspec] = ACTIONS(3405), - [anon_sym___based] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_EQ] = ACTIONS(3407), - [anon_sym_static] = ACTIONS(3405), - [anon_sym_register] = ACTIONS(3405), - [anon_sym_inline] = ACTIONS(3405), - [anon_sym_thread_local] = ACTIONS(3405), - [anon_sym_const] = ACTIONS(3405), - [anon_sym_volatile] = ACTIONS(3405), - [anon_sym_restrict] = ACTIONS(3405), - [anon_sym__Atomic] = ACTIONS(3405), - [anon_sym_mutable] = ACTIONS(3405), - [anon_sym_constexpr] = ACTIONS(3405), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_DASH_GT] = ACTIONS(3407), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3405), - [anon_sym_override] = ACTIONS(3405), - [anon_sym_virtual] = ACTIONS(3405), - [anon_sym_template] = ACTIONS(3405), - [anon_sym_GT2] = ACTIONS(3407), - [anon_sym_operator] = ACTIONS(3405), - [anon_sym_noexcept] = ACTIONS(3405), - [anon_sym_throw] = ACTIONS(3405), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3405), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3405), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3405), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3405), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3405), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3405), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3405), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3405), - [anon_sym_MOZ_COLD] = ACTIONS(3405), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3405), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3405), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3405), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3405), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3405), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3405), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3405), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3405), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3405), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3405), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3405), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3405), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3405), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3405), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3405), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3405), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3405), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3405), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3405), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3405), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_NONNULL] = ACTIONS(3405), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3405), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3405), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3405), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3405), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3405), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_NORETURN] = ACTIONS(3405), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3405), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3405), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3405), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3405), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3405), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3405), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3405), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3405), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3405), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3405), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3405), - [anon_sym_MOZ_RAII] = ACTIONS(3405), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3405), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3405), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3405), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3405), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3405), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3405), - }, - [1284] = { - [sym__expression] = STATE(2685), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(2682), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3114), - [anon_sym_RPAREN] = ACTIONS(3114), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_SLASH] = ACTIONS(3122), - [anon_sym_PERCENT] = ACTIONS(3114), - [anon_sym_PIPE_PIPE] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_CARET] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_GT_EQ] = ACTIONS(3114), - [anon_sym_LT_EQ] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_LT_LT] = ACTIONS(3114), - [anon_sym_GT_GT] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_QMARK] = ACTIONS(3114), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(3122), - [anon_sym_DASH_GT] = ACTIONS(3114), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1285] = { - [sym_identifier] = ACTIONS(3411), - [anon_sym_LPAREN2] = ACTIONS(3414), - [anon_sym_TILDE] = ACTIONS(3414), - [anon_sym_STAR] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_extern] = ACTIONS(3411), - [anon_sym___attribute__] = ACTIONS(3411), - [anon_sym_COLON_COLON] = ACTIONS(3418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3418), - [anon_sym___declspec] = ACTIONS(3411), - [anon_sym___based] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [anon_sym_static] = ACTIONS(3411), - [anon_sym_register] = ACTIONS(3411), - [anon_sym_inline] = ACTIONS(3411), - [anon_sym_thread_local] = ACTIONS(3411), - [anon_sym_const] = ACTIONS(3411), - [anon_sym_volatile] = ACTIONS(3411), - [anon_sym_restrict] = ACTIONS(3411), - [anon_sym__Atomic] = ACTIONS(3411), - [anon_sym_mutable] = ACTIONS(3411), - [anon_sym_constexpr] = ACTIONS(3411), - [anon_sym_signed] = ACTIONS(3421), - [anon_sym_unsigned] = ACTIONS(3421), - [anon_sym_long] = ACTIONS(3421), - [anon_sym_short] = ACTIONS(3421), - [sym_primitive_type] = ACTIONS(3421), - [anon_sym_enum] = ACTIONS(3421), - [anon_sym_class] = ACTIONS(3421), - [anon_sym_struct] = ACTIONS(3421), - [anon_sym_union] = ACTIONS(3421), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3421), - [anon_sym_virtual] = ACTIONS(3411), - [anon_sym_explicit] = ACTIONS(3416), - [sym_auto] = ACTIONS(3421), - [anon_sym_typename] = ACTIONS(3421), - [anon_sym_template] = ACTIONS(3411), - [anon_sym_operator] = ACTIONS(3416), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3411), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3411), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3411), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3411), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3411), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3411), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3411), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3411), - [anon_sym_MOZ_COLD] = ACTIONS(3411), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3411), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3411), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3411), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3411), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3411), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3411), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3411), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3411), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3411), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3411), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3411), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3411), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3411), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3411), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3411), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3411), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3411), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3411), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3411), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3411), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3411), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3411), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3411), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3411), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3411), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3411), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3411), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3411), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3411), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3411), - [anon_sym_MOZ_NONNULL] = ACTIONS(3411), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3411), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3411), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3411), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3411), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3411), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3411), - [anon_sym_MOZ_NORETURN] = ACTIONS(3411), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3411), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3411), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3411), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3411), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3411), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3411), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3411), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3411), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3411), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3411), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3411), - [anon_sym_MOZ_RAII] = ACTIONS(3411), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3411), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3411), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3411), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3411), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3411), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3411), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3411), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3411), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3411), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3411), - }, - [1286] = { - [sym_field_declaration_list] = STATE(1317), - [sym_virtual_specifier] = STATE(4184), - [sym_base_class_clause] = STATE(4722), - [sym_identifier] = ACTIONS(3423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3425), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_RPAREN] = ACTIONS(3425), - [anon_sym_LPAREN2] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_STAR] = ACTIONS(3425), - [anon_sym_AMP_AMP] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_extern] = ACTIONS(3423), - [anon_sym___attribute__] = ACTIONS(3423), - [anon_sym_COLON_COLON] = ACTIONS(3425), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3425), - [anon_sym___declspec] = ACTIONS(3423), - [anon_sym___based] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_EQ] = ACTIONS(3425), - [anon_sym_static] = ACTIONS(3423), - [anon_sym_register] = ACTIONS(3423), - [anon_sym_inline] = ACTIONS(3423), - [anon_sym_thread_local] = ACTIONS(3423), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_volatile] = ACTIONS(3423), - [anon_sym_restrict] = ACTIONS(3423), - [anon_sym__Atomic] = ACTIONS(3423), - [anon_sym_mutable] = ACTIONS(3423), - [anon_sym_constexpr] = ACTIONS(3423), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3423), - [anon_sym_template] = ACTIONS(3423), - [anon_sym_GT2] = ACTIONS(3425), - [anon_sym_operator] = ACTIONS(3423), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3423), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3423), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3423), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3423), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3423), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3423), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3423), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3423), - [anon_sym_MOZ_COLD] = ACTIONS(3423), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3423), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3423), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3423), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3423), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3423), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3423), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3423), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3423), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3423), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3423), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3423), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3423), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3423), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3423), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3423), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3423), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3423), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3423), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3423), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3423), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_NONNULL] = ACTIONS(3423), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3423), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3423), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3423), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3423), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3423), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_NORETURN] = ACTIONS(3423), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3423), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3423), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3423), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3423), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3423), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3423), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3423), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3423), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3423), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3423), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3423), - [anon_sym_MOZ_RAII] = ACTIONS(3423), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3423), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3423), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3423), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3423), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3423), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3423), - }, - [1287] = { - [sym_identifier] = ACTIONS(2447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2449), - [anon_sym_COMMA] = ACTIONS(2449), - [anon_sym_RPAREN] = ACTIONS(2449), - [anon_sym_LPAREN2] = ACTIONS(2449), - [anon_sym_TILDE] = ACTIONS(2449), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_extern] = ACTIONS(2447), - [anon_sym___attribute__] = ACTIONS(2447), - [anon_sym_COLON_COLON] = ACTIONS(2449), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2449), - [anon_sym___declspec] = ACTIONS(2447), - [anon_sym___based] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_EQ] = ACTIONS(2449), - [anon_sym_static] = ACTIONS(2447), - [anon_sym_register] = ACTIONS(2447), - [anon_sym_inline] = ACTIONS(2447), - [anon_sym_thread_local] = ACTIONS(2447), - [anon_sym_const] = ACTIONS(2447), - [anon_sym_volatile] = ACTIONS(2447), - [anon_sym_restrict] = ACTIONS(2447), - [anon_sym__Atomic] = ACTIONS(2447), - [anon_sym_mutable] = ACTIONS(2447), - [anon_sym_constexpr] = ACTIONS(2447), - [anon_sym_COLON] = ACTIONS(2447), - [anon_sym_DASH_GT] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2447), - [anon_sym_override] = ACTIONS(2447), - [anon_sym_virtual] = ACTIONS(2447), - [anon_sym_template] = ACTIONS(2447), - [anon_sym_GT2] = ACTIONS(2449), - [anon_sym_operator] = ACTIONS(2447), - [anon_sym_noexcept] = ACTIONS(2447), - [anon_sym_throw] = ACTIONS(2447), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2447), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2447), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2447), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2447), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2447), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2447), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2447), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2447), - [anon_sym_MOZ_COLD] = ACTIONS(2447), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2447), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2447), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2447), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2447), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2447), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2447), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2447), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2447), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2447), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2447), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2447), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2447), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2447), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2447), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2447), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2447), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2447), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2447), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2447), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2447), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2447), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_NONNULL] = ACTIONS(2447), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2447), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2447), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2447), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2447), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2447), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_NORETURN] = ACTIONS(2447), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2447), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2447), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2447), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2447), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2447), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2447), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2447), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2447), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2447), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2447), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2447), - [anon_sym_MOZ_RAII] = ACTIONS(2447), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2447), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2447), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2447), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2447), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2447), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2447), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2447), - }, - [1288] = { - [sym_identifier] = ACTIONS(2476), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [anon_sym_COMMA] = ACTIONS(2478), - [anon_sym_RPAREN] = ACTIONS(2478), - [anon_sym_LPAREN2] = ACTIONS(2478), - [anon_sym_TILDE] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2478), - [anon_sym_AMP_AMP] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2476), - [anon_sym_SEMI] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2476), - [anon_sym___attribute__] = ACTIONS(2476), - [anon_sym_COLON_COLON] = ACTIONS(2478), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), - [anon_sym___declspec] = ACTIONS(2476), - [anon_sym___based] = ACTIONS(2476), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2476), - [anon_sym_EQ] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2476), - [anon_sym_register] = ACTIONS(2476), - [anon_sym_inline] = ACTIONS(2476), - [anon_sym_thread_local] = ACTIONS(2476), - [anon_sym_const] = ACTIONS(2476), - [anon_sym_volatile] = ACTIONS(2476), - [anon_sym_restrict] = ACTIONS(2476), - [anon_sym__Atomic] = ACTIONS(2476), - [anon_sym_mutable] = ACTIONS(2476), - [anon_sym_constexpr] = ACTIONS(2476), - [anon_sym_COLON] = ACTIONS(2476), - [anon_sym_DASH_GT] = ACTIONS(2478), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2476), - [anon_sym_override] = ACTIONS(2476), - [anon_sym_virtual] = ACTIONS(2476), - [anon_sym_template] = ACTIONS(2476), - [anon_sym_GT2] = ACTIONS(2478), - [anon_sym_operator] = ACTIONS(2476), - [anon_sym_noexcept] = ACTIONS(2476), - [anon_sym_throw] = ACTIONS(2476), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2476), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2476), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2476), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2476), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2476), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2476), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2476), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2476), - [anon_sym_MOZ_COLD] = ACTIONS(2476), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2476), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2476), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2476), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2476), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2476), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2476), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2476), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2476), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2476), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2476), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2476), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2476), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2476), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2476), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2476), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2476), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2476), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2476), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2476), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2476), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2476), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_NONNULL] = ACTIONS(2476), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2476), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2476), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2476), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2476), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2476), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_NORETURN] = ACTIONS(2476), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2476), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2476), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2476), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2476), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2476), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2476), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2476), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2476), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2476), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2476), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2476), - [anon_sym_MOZ_RAII] = ACTIONS(2476), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2476), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2476), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2476), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2476), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2476), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2476), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2476), - }, - [1289] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1289), - [sym_identifier] = ACTIONS(3322), - [anon_sym_COMMA] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3324), - [anon_sym_STAR] = ACTIONS(3324), - [anon_sym_AMP_AMP] = ACTIONS(3324), - [anon_sym_AMP] = ACTIONS(3322), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_extern] = ACTIONS(3322), - [anon_sym___attribute__] = ACTIONS(3322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), - [anon_sym___declspec] = ACTIONS(3322), - [anon_sym___based] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_EQ] = ACTIONS(3324), - [anon_sym_static] = ACTIONS(3322), - [anon_sym_register] = ACTIONS(3322), - [anon_sym_inline] = ACTIONS(3322), - [anon_sym_thread_local] = ACTIONS(3322), - [anon_sym_const] = ACTIONS(3322), - [anon_sym_volatile] = ACTIONS(3322), - [anon_sym_restrict] = ACTIONS(3322), - [anon_sym__Atomic] = ACTIONS(3322), - [anon_sym_mutable] = ACTIONS(3322), - [anon_sym_constexpr] = ACTIONS(3322), - [anon_sym_signed] = ACTIONS(3433), - [anon_sym_unsigned] = ACTIONS(3433), - [anon_sym_long] = ACTIONS(3433), - [anon_sym_short] = ACTIONS(3433), - [sym_primitive_type] = ACTIONS(3322), - [anon_sym_COLON] = ACTIONS(3324), - [anon_sym_DASH_GT] = ACTIONS(3324), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3322), - [anon_sym_override] = ACTIONS(3322), - [anon_sym_virtual] = ACTIONS(3322), - [anon_sym_operator] = ACTIONS(3322), - [anon_sym_noexcept] = ACTIONS(3322), - [anon_sym_throw] = ACTIONS(3322), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3322), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3322), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3322), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3322), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3322), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3322), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3322), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3322), - [anon_sym_MOZ_COLD] = ACTIONS(3322), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3322), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3322), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3322), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3322), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3322), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3322), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3322), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3322), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3322), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3322), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3322), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3322), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3322), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3322), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3322), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3322), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3322), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3322), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3322), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3322), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3322), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3322), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3322), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3322), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3322), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3322), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3322), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3322), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3322), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3322), - [anon_sym_MOZ_NONNULL] = ACTIONS(3322), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3322), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3322), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3322), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3322), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3322), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3322), - [anon_sym_MOZ_NORETURN] = ACTIONS(3322), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3322), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3322), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3322), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3322), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3322), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3322), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3322), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3322), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3322), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3322), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3322), - [anon_sym_MOZ_RAII] = ACTIONS(3322), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3322), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3322), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3322), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3322), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3322), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3322), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3322), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3322), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3322), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3322), - }, - [1290] = { - [sym_field_declaration_list] = STATE(1321), - [sym_virtual_specifier] = STATE(4131), - [sym_base_class_clause] = STATE(4701), - [sym_identifier] = ACTIONS(3436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3438), - [anon_sym_COMMA] = ACTIONS(3438), - [anon_sym_RPAREN] = ACTIONS(3438), - [anon_sym_LPAREN2] = ACTIONS(3438), - [anon_sym_TILDE] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_AMP] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_extern] = ACTIONS(3436), - [anon_sym___attribute__] = ACTIONS(3436), - [anon_sym_COLON_COLON] = ACTIONS(3438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3438), - [anon_sym___declspec] = ACTIONS(3436), - [anon_sym___based] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3438), - [anon_sym_static] = ACTIONS(3436), - [anon_sym_register] = ACTIONS(3436), - [anon_sym_inline] = ACTIONS(3436), - [anon_sym_thread_local] = ACTIONS(3436), - [anon_sym_const] = ACTIONS(3436), - [anon_sym_volatile] = ACTIONS(3436), - [anon_sym_restrict] = ACTIONS(3436), - [anon_sym__Atomic] = ACTIONS(3436), - [anon_sym_mutable] = ACTIONS(3436), - [anon_sym_constexpr] = ACTIONS(3436), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3436), - [anon_sym_template] = ACTIONS(3436), - [anon_sym_GT2] = ACTIONS(3438), - [anon_sym_operator] = ACTIONS(3436), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3436), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3436), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3436), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3436), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3436), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3436), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3436), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3436), - [anon_sym_MOZ_COLD] = ACTIONS(3436), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3436), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3436), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3436), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3436), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3436), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3436), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3436), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3436), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3436), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3436), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3436), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3436), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3436), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3436), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3436), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3436), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3436), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3436), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3436), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3436), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3436), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3436), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3436), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3436), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3436), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3436), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3436), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3436), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3436), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3436), - [anon_sym_MOZ_NONNULL] = ACTIONS(3436), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3436), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3436), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3436), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3436), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3436), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3436), - [anon_sym_MOZ_NORETURN] = ACTIONS(3436), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3436), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3436), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3436), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3436), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3436), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3436), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3436), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3436), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3436), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3436), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3436), - [anon_sym_MOZ_RAII] = ACTIONS(3436), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3436), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3436), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3436), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3436), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3436), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3436), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3436), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3436), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3436), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3436), - }, - [1291] = { - [sym_identifier] = ACTIONS(3405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_RPAREN] = ACTIONS(3407), - [anon_sym_LPAREN2] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3407), - [anon_sym_STAR] = ACTIONS(3407), - [anon_sym_AMP_AMP] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3407), - [anon_sym_extern] = ACTIONS(3405), - [anon_sym___attribute__] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3407), - [anon_sym___declspec] = ACTIONS(3405), - [anon_sym___based] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_EQ] = ACTIONS(3407), - [anon_sym_static] = ACTIONS(3405), - [anon_sym_register] = ACTIONS(3405), - [anon_sym_inline] = ACTIONS(3405), - [anon_sym_thread_local] = ACTIONS(3405), - [anon_sym_const] = ACTIONS(3405), - [anon_sym_volatile] = ACTIONS(3405), - [anon_sym_restrict] = ACTIONS(3405), - [anon_sym__Atomic] = ACTIONS(3405), - [anon_sym_mutable] = ACTIONS(3405), - [anon_sym_constexpr] = ACTIONS(3405), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_DASH_GT] = ACTIONS(3407), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3405), - [anon_sym_override] = ACTIONS(3405), - [anon_sym_virtual] = ACTIONS(3405), - [anon_sym_template] = ACTIONS(3405), - [anon_sym_GT2] = ACTIONS(3407), - [anon_sym_operator] = ACTIONS(3405), - [anon_sym_noexcept] = ACTIONS(3405), - [anon_sym_throw] = ACTIONS(3405), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3405), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3405), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3405), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3405), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3405), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3405), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3405), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3405), - [anon_sym_MOZ_COLD] = ACTIONS(3405), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3405), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3405), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3405), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3405), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3405), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3405), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3405), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3405), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3405), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3405), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3405), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3405), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3405), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3405), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3405), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3405), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3405), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3405), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3405), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3405), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_NONNULL] = ACTIONS(3405), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3405), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3405), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3405), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3405), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3405), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_NORETURN] = ACTIONS(3405), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3405), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3405), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3405), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3405), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3405), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3405), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3405), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3405), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3405), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3405), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3405), - [anon_sym_MOZ_RAII] = ACTIONS(3405), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3405), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3405), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3405), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3405), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3405), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3405), - }, - [1292] = { - [sym_identifier] = ACTIONS(2508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2510), - [anon_sym_COMMA] = ACTIONS(2510), - [anon_sym_RPAREN] = ACTIONS(2510), - [anon_sym_LPAREN2] = ACTIONS(2510), - [anon_sym_TILDE] = ACTIONS(2510), - [anon_sym_STAR] = ACTIONS(2510), - [anon_sym_AMP_AMP] = ACTIONS(2510), - [anon_sym_AMP] = ACTIONS(2508), - [anon_sym_SEMI] = ACTIONS(2510), - [anon_sym_extern] = ACTIONS(2508), - [anon_sym___attribute__] = ACTIONS(2508), - [anon_sym_COLON_COLON] = ACTIONS(2510), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2510), - [anon_sym___declspec] = ACTIONS(2508), - [anon_sym___based] = ACTIONS(2508), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_LBRACK] = ACTIONS(2508), - [anon_sym_EQ] = ACTIONS(2510), - [anon_sym_static] = ACTIONS(2508), - [anon_sym_register] = ACTIONS(2508), - [anon_sym_inline] = ACTIONS(2508), - [anon_sym_thread_local] = ACTIONS(2508), - [anon_sym_const] = ACTIONS(2508), - [anon_sym_volatile] = ACTIONS(2508), - [anon_sym_restrict] = ACTIONS(2508), - [anon_sym__Atomic] = ACTIONS(2508), - [anon_sym_mutable] = ACTIONS(2508), - [anon_sym_constexpr] = ACTIONS(2508), - [anon_sym_COLON] = ACTIONS(2508), - [anon_sym_DASH_GT] = ACTIONS(2510), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2508), - [anon_sym_override] = ACTIONS(2508), - [anon_sym_virtual] = ACTIONS(2508), - [anon_sym_template] = ACTIONS(2508), - [anon_sym_GT2] = ACTIONS(2510), - [anon_sym_operator] = ACTIONS(2508), - [anon_sym_noexcept] = ACTIONS(2508), - [anon_sym_throw] = ACTIONS(2508), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2508), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2508), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2508), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2508), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2508), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2508), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2508), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2508), - [anon_sym_MOZ_COLD] = ACTIONS(2508), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2508), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2508), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2508), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2508), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2508), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2508), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2508), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2508), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2508), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2508), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2508), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2508), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2508), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2508), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2508), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2508), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2508), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2508), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2508), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2508), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2508), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_NONNULL] = ACTIONS(2508), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2508), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2508), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2508), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2508), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2508), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_NORETURN] = ACTIONS(2508), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2508), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2508), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2508), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2508), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2508), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2508), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2508), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2508), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2508), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2508), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2508), - [anon_sym_MOZ_RAII] = ACTIONS(2508), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2508), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2508), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2508), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2508), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2508), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2508), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2508), - }, - [1293] = { - [sym_template_argument_list] = STATE(1294), - [sym_identifier] = ACTIONS(3356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2423), - [anon_sym_COMMA] = ACTIONS(2423), - [anon_sym_RPAREN] = ACTIONS(2423), - [anon_sym_LPAREN2] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_AMP_AMP] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_extern] = ACTIONS(3356), - [anon_sym___attribute__] = ACTIONS(3356), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2423), - [anon_sym___declspec] = ACTIONS(3356), - [anon_sym___based] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_register] = ACTIONS(3356), - [anon_sym_inline] = ACTIONS(3356), - [anon_sym_thread_local] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_volatile] = ACTIONS(3356), - [anon_sym_restrict] = ACTIONS(3356), - [anon_sym__Atomic] = ACTIONS(3356), - [anon_sym_mutable] = ACTIONS(3356), - [anon_sym_constexpr] = ACTIONS(3356), - [anon_sym_COLON] = ACTIONS(3356), - [anon_sym_DASH_GT] = ACTIONS(2423), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3356), - [anon_sym_override] = ACTIONS(3356), - [anon_sym_virtual] = ACTIONS(3356), - [anon_sym_template] = ACTIONS(3356), - [anon_sym_operator] = ACTIONS(3356), - [anon_sym_noexcept] = ACTIONS(3356), - [anon_sym_throw] = ACTIONS(3356), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3356), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3356), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3356), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3356), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3356), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3356), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3356), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3356), - [anon_sym_MOZ_COLD] = ACTIONS(3356), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3356), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3356), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3356), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3356), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3356), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3356), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3356), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3356), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3356), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3356), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3356), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3356), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3356), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3356), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3356), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3356), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3356), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3356), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3356), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3356), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_NONNULL] = ACTIONS(3356), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3356), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3356), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3356), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3356), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3356), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_NORETURN] = ACTIONS(3356), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3356), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3356), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3356), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3356), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3356), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3356), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3356), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3356), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3356), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3356), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3356), - [anon_sym_MOZ_RAII] = ACTIONS(3356), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3356), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3356), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3356), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3356), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3356), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3356), - }, - [1294] = { - [sym_identifier] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2519), - [anon_sym_COMMA] = ACTIONS(2519), - [anon_sym_RPAREN] = ACTIONS(2519), - [anon_sym_LPAREN2] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_STAR] = ACTIONS(2519), - [anon_sym_AMP_AMP] = ACTIONS(2519), - [anon_sym_AMP] = ACTIONS(2512), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym___attribute__] = ACTIONS(2512), - [anon_sym_COLON_COLON] = ACTIONS(2519), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2519), - [anon_sym___declspec] = ACTIONS(2512), - [anon_sym___based] = ACTIONS(2512), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_LBRACK] = ACTIONS(2512), - [anon_sym_EQ] = ACTIONS(2519), - [anon_sym_static] = ACTIONS(2512), - [anon_sym_register] = ACTIONS(2512), - [anon_sym_inline] = ACTIONS(2512), - [anon_sym_thread_local] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [anon_sym_volatile] = ACTIONS(2512), - [anon_sym_restrict] = ACTIONS(2512), - [anon_sym__Atomic] = ACTIONS(2512), - [anon_sym_mutable] = ACTIONS(2512), - [anon_sym_constexpr] = ACTIONS(2512), - [anon_sym_COLON] = ACTIONS(2512), - [anon_sym_DASH_GT] = ACTIONS(2519), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2512), - [anon_sym_override] = ACTIONS(2512), - [anon_sym_virtual] = ACTIONS(2512), - [anon_sym_template] = ACTIONS(2512), - [anon_sym_GT2] = ACTIONS(2519), - [anon_sym_operator] = ACTIONS(2512), - [anon_sym_noexcept] = ACTIONS(2512), - [anon_sym_throw] = ACTIONS(2512), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2512), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2512), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2512), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2512), - [anon_sym_MOZ_COLD] = ACTIONS(2512), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2512), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2512), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2512), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2512), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2512), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2512), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2512), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2512), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2512), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2512), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2512), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2512), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2512), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_NONNULL] = ACTIONS(2512), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2512), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2512), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2512), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2512), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2512), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2512), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2512), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2512), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2512), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2512), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2512), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2512), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2512), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2512), - [anon_sym_MOZ_RAII] = ACTIONS(2512), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2512), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2512), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2512), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2512), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2512), - }, - [1295] = { - [sym_field_declaration_list] = STATE(1347), - [sym_virtual_specifier] = STATE(4138), - [sym_base_class_clause] = STATE(4707), - [sym_identifier] = ACTIONS(3442), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3444), - [anon_sym_COMMA] = ACTIONS(3444), - [anon_sym_RPAREN] = ACTIONS(3444), - [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_SEMI] = ACTIONS(3444), - [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_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3442), - [anon_sym_EQ] = ACTIONS(3444), - [anon_sym_static] = ACTIONS(3442), - [anon_sym_register] = ACTIONS(3442), - [anon_sym_inline] = ACTIONS(3442), - [anon_sym_thread_local] = ACTIONS(3442), - [anon_sym_const] = ACTIONS(3442), - [anon_sym_volatile] = ACTIONS(3442), - [anon_sym_restrict] = ACTIONS(3442), - [anon_sym__Atomic] = ACTIONS(3442), - [anon_sym_mutable] = ACTIONS(3442), - [anon_sym_constexpr] = ACTIONS(3442), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3442), - [anon_sym_template] = ACTIONS(3442), - [anon_sym_GT2] = ACTIONS(3444), - [anon_sym_operator] = ACTIONS(3442), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3442), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3442), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3442), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3442), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3442), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3442), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3442), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3442), - [anon_sym_MOZ_COLD] = ACTIONS(3442), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3442), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3442), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3442), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3442), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3442), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3442), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3442), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3442), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3442), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3442), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3442), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3442), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3442), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3442), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3442), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3442), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3442), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3442), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3442), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3442), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3442), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3442), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3442), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3442), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3442), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3442), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3442), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3442), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3442), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3442), - [anon_sym_MOZ_NONNULL] = ACTIONS(3442), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3442), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3442), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3442), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3442), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3442), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3442), - [anon_sym_MOZ_NORETURN] = ACTIONS(3442), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3442), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3442), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3442), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3442), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3442), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3442), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3442), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3442), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3442), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3442), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3442), - [anon_sym_MOZ_RAII] = ACTIONS(3442), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3442), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3442), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3442), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3442), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3442), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3442), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3442), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3442), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3442), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3442), - }, - [1296] = { - [sym_enumerator_list] = STATE(1355), - [sym_identifier] = ACTIONS(3446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3448), - [anon_sym_COMMA] = ACTIONS(3448), - [anon_sym_RPAREN] = ACTIONS(3448), - [anon_sym_LPAREN2] = ACTIONS(3448), - [anon_sym_TILDE] = ACTIONS(3448), - [anon_sym_STAR] = ACTIONS(3448), - [anon_sym_AMP_AMP] = ACTIONS(3448), - [anon_sym_AMP] = ACTIONS(3446), - [anon_sym_SEMI] = ACTIONS(3448), - [anon_sym_extern] = ACTIONS(3446), - [anon_sym___attribute__] = ACTIONS(3446), - [anon_sym_COLON_COLON] = ACTIONS(3448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3448), - [anon_sym___declspec] = ACTIONS(3446), - [anon_sym___based] = ACTIONS(3446), - [anon_sym_LBRACE] = ACTIONS(3450), - [anon_sym_LBRACK] = ACTIONS(3446), - [anon_sym_EQ] = ACTIONS(3448), - [anon_sym_static] = ACTIONS(3446), - [anon_sym_register] = ACTIONS(3446), - [anon_sym_inline] = ACTIONS(3446), - [anon_sym_thread_local] = ACTIONS(3446), - [anon_sym_const] = ACTIONS(3446), - [anon_sym_volatile] = ACTIONS(3446), - [anon_sym_restrict] = ACTIONS(3446), - [anon_sym__Atomic] = ACTIONS(3446), - [anon_sym_mutable] = ACTIONS(3446), - [anon_sym_constexpr] = ACTIONS(3446), - [anon_sym_DASH_GT] = ACTIONS(3448), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3446), - [anon_sym_override] = ACTIONS(3446), - [anon_sym_virtual] = ACTIONS(3446), - [anon_sym_template] = ACTIONS(3446), - [anon_sym_GT2] = ACTIONS(3448), - [anon_sym_operator] = ACTIONS(3446), - [anon_sym_noexcept] = ACTIONS(3446), - [anon_sym_throw] = ACTIONS(3446), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3446), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3446), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3446), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3446), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3446), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3446), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3446), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3446), - [anon_sym_MOZ_COLD] = ACTIONS(3446), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3446), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3446), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3446), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3446), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3446), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3446), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3446), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3446), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3446), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3446), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3446), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3446), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3446), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3446), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3446), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3446), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3446), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3446), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3446), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3446), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3446), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3446), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3446), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3446), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3446), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3446), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3446), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3446), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3446), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3446), - [anon_sym_MOZ_NONNULL] = ACTIONS(3446), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3446), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3446), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3446), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3446), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3446), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3446), - [anon_sym_MOZ_NORETURN] = ACTIONS(3446), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3446), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3446), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3446), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3446), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3446), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3446), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3446), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3446), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3446), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3446), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3446), - [anon_sym_MOZ_RAII] = ACTIONS(3446), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3446), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3446), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3446), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3446), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3446), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3446), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3446), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3446), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3446), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3446), - }, - [1297] = { - [sym_identifier] = ACTIONS(2504), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2506), - [anon_sym_COMMA] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_LPAREN2] = ACTIONS(2506), - [anon_sym_TILDE] = ACTIONS(2506), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_AMP_AMP] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2504), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_extern] = ACTIONS(2504), - [anon_sym___attribute__] = ACTIONS(2504), - [anon_sym_COLON_COLON] = ACTIONS(2506), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2506), - [anon_sym___declspec] = ACTIONS(2504), - [anon_sym___based] = ACTIONS(2504), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2504), - [anon_sym_EQ] = ACTIONS(2506), - [anon_sym_static] = ACTIONS(2504), - [anon_sym_register] = ACTIONS(2504), - [anon_sym_inline] = ACTIONS(2504), - [anon_sym_thread_local] = ACTIONS(2504), - [anon_sym_const] = ACTIONS(2504), - [anon_sym_volatile] = ACTIONS(2504), - [anon_sym_restrict] = ACTIONS(2504), - [anon_sym__Atomic] = ACTIONS(2504), - [anon_sym_mutable] = ACTIONS(2504), - [anon_sym_constexpr] = ACTIONS(2504), - [anon_sym_COLON] = ACTIONS(2504), - [anon_sym_DASH_GT] = ACTIONS(2506), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2504), - [anon_sym_override] = ACTIONS(2504), - [anon_sym_virtual] = ACTIONS(2504), - [anon_sym_template] = ACTIONS(2504), - [anon_sym_GT2] = ACTIONS(2506), - [anon_sym_operator] = ACTIONS(2504), - [anon_sym_noexcept] = ACTIONS(2504), - [anon_sym_throw] = ACTIONS(2504), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2504), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2504), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2504), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2504), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2504), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2504), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2504), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2504), - [anon_sym_MOZ_COLD] = ACTIONS(2504), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2504), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2504), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2504), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2504), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2504), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2504), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2504), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2504), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2504), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2504), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2504), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2504), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2504), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2504), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2504), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2504), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2504), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2504), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2504), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2504), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2504), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_NONNULL] = ACTIONS(2504), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2504), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2504), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2504), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2504), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2504), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_NORETURN] = ACTIONS(2504), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2504), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2504), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2504), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2504), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2504), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2504), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2504), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2504), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2504), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2504), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2504), - [anon_sym_MOZ_RAII] = ACTIONS(2504), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2504), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2504), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2504), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2504), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2504), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2504), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2504), - }, - [1298] = { - [sym_identifier] = ACTIONS(3452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3454), - [anon_sym_COMMA] = ACTIONS(3454), - [anon_sym_RPAREN] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3454), - [anon_sym_STAR] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_AMP] = ACTIONS(3452), - [anon_sym_SEMI] = ACTIONS(3454), - [anon_sym_extern] = ACTIONS(3452), - [anon_sym___attribute__] = ACTIONS(3452), - [anon_sym_COLON_COLON] = ACTIONS(3440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), - [anon_sym___declspec] = ACTIONS(3452), - [anon_sym___based] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_LBRACK] = ACTIONS(3452), - [anon_sym_EQ] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3452), - [anon_sym_register] = ACTIONS(3452), - [anon_sym_inline] = ACTIONS(3452), - [anon_sym_thread_local] = ACTIONS(3452), - [anon_sym_const] = ACTIONS(3452), - [anon_sym_volatile] = ACTIONS(3452), - [anon_sym_restrict] = ACTIONS(3452), - [anon_sym__Atomic] = ACTIONS(3452), - [anon_sym_mutable] = ACTIONS(3452), - [anon_sym_constexpr] = ACTIONS(3452), - [anon_sym_COLON] = ACTIONS(3452), - [anon_sym_DASH_GT] = ACTIONS(3454), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3452), - [anon_sym_override] = ACTIONS(3452), - [anon_sym_virtual] = ACTIONS(3452), - [anon_sym_template] = ACTIONS(3452), - [anon_sym_GT2] = ACTIONS(3454), - [anon_sym_operator] = ACTIONS(3452), - [anon_sym_noexcept] = ACTIONS(3452), - [anon_sym_throw] = ACTIONS(3452), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3452), - [anon_sym_MOZ_COLD] = ACTIONS(3452), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3452), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3452), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3452), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3452), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3452), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3452), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3452), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3452), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3452), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3452), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3452), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3452), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_RAII] = ACTIONS(3452), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3452), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3452), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3452), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3452), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3452), - }, - [1299] = { - [sym_identifier] = ACTIONS(3456), - [anon_sym_LPAREN2] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3458), - [anon_sym_STAR] = ACTIONS(3458), - [anon_sym_AMP_AMP] = ACTIONS(3458), - [anon_sym_AMP] = ACTIONS(3456), - [anon_sym_extern] = ACTIONS(3456), - [anon_sym___attribute__] = ACTIONS(3456), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3458), - [anon_sym___declspec] = ACTIONS(3456), - [anon_sym___based] = ACTIONS(3456), - [anon_sym_LBRACK] = ACTIONS(3456), - [anon_sym_static] = ACTIONS(3456), - [anon_sym_register] = ACTIONS(3456), - [anon_sym_inline] = ACTIONS(3456), - [anon_sym_thread_local] = ACTIONS(3456), - [anon_sym_const] = ACTIONS(3456), - [anon_sym_volatile] = ACTIONS(3456), - [anon_sym_restrict] = ACTIONS(3456), - [anon_sym__Atomic] = ACTIONS(3456), - [anon_sym_mutable] = ACTIONS(3456), - [anon_sym_constexpr] = ACTIONS(3456), - [anon_sym_signed] = ACTIONS(3456), - [anon_sym_unsigned] = ACTIONS(3456), - [anon_sym_long] = ACTIONS(3456), - [anon_sym_short] = ACTIONS(3456), - [sym_primitive_type] = ACTIONS(3456), - [anon_sym_enum] = ACTIONS(3456), - [anon_sym_class] = ACTIONS(3456), - [anon_sym_struct] = ACTIONS(3456), - [anon_sym_union] = ACTIONS(3456), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3456), - [anon_sym_virtual] = ACTIONS(3456), - [anon_sym_explicit] = ACTIONS(3456), - [sym_auto] = ACTIONS(3456), - [anon_sym_typename] = ACTIONS(3456), - [anon_sym_template] = ACTIONS(3456), - [anon_sym_operator] = ACTIONS(3456), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3456), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3456), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3456), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3456), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3456), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3456), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3456), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3456), - [anon_sym_MOZ_COLD] = ACTIONS(3456), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3456), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3456), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3456), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3456), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3456), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3456), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3456), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3456), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3456), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3456), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3456), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3456), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3456), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3456), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3456), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3456), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3456), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3456), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3456), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3456), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_NONNULL] = ACTIONS(3456), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3456), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3456), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3456), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3456), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3456), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_NORETURN] = ACTIONS(3456), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3456), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3456), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3456), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3456), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3456), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3456), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3456), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3456), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3456), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3456), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3456), - [anon_sym_MOZ_RAII] = ACTIONS(3456), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3456), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3456), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3456), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3456), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3456), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3456), - }, - [1300] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1268), - [sym_identifier] = ACTIONS(3460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3463), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_RPAREN] = ACTIONS(3463), - [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(3465), - [anon_sym_SEMI] = ACTIONS(3463), - [anon_sym_extern] = ACTIONS(3465), - [anon_sym___attribute__] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3463), - [anon_sym___declspec] = ACTIONS(3465), - [anon_sym___based] = ACTIONS(3465), - [anon_sym_LBRACE] = ACTIONS(3463), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_EQ] = ACTIONS(3463), - [anon_sym_static] = ACTIONS(3465), - [anon_sym_register] = ACTIONS(3465), - [anon_sym_inline] = ACTIONS(3465), - [anon_sym_thread_local] = ACTIONS(3465), - [anon_sym_const] = ACTIONS(3465), - [anon_sym_volatile] = ACTIONS(3465), - [anon_sym_restrict] = ACTIONS(3465), - [anon_sym__Atomic] = ACTIONS(3465), - [anon_sym_mutable] = ACTIONS(3465), - [anon_sym_constexpr] = ACTIONS(3465), - [anon_sym_signed] = ACTIONS(3467), - [anon_sym_unsigned] = ACTIONS(3467), - [anon_sym_long] = ACTIONS(3467), - [anon_sym_short] = ACTIONS(3467), - [sym_primitive_type] = ACTIONS(3469), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3465), - [anon_sym_template] = ACTIONS(3465), - [anon_sym_GT2] = ACTIONS(3463), - [anon_sym_operator] = ACTIONS(3465), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3465), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3465), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3465), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3465), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3465), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3465), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3465), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3465), - [anon_sym_MOZ_COLD] = ACTIONS(3465), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3465), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3465), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3465), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3465), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3465), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3465), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3465), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3465), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3465), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3465), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3465), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3465), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3465), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3465), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3465), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3465), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3465), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3465), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3465), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3465), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_NONNULL] = ACTIONS(3465), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3465), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3465), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3465), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3465), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3465), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_NORETURN] = ACTIONS(3465), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3465), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3465), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3465), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3465), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3465), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3465), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3465), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3465), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3465), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3465), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3465), - [anon_sym_MOZ_RAII] = ACTIONS(3465), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3465), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3465), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3465), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3465), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3465), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3465), - }, - [1301] = { - [sym_field_declaration_list] = STATE(1348), - [sym_virtual_specifier] = STATE(4174), - [sym_base_class_clause] = STATE(4724), - [sym_identifier] = ACTIONS(3471), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3473), - [anon_sym_COMMA] = ACTIONS(3473), - [anon_sym_RPAREN] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3473), - [anon_sym_STAR] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_AMP] = ACTIONS(3471), - [anon_sym_SEMI] = ACTIONS(3473), - [anon_sym_extern] = ACTIONS(3471), - [anon_sym___attribute__] = ACTIONS(3471), - [anon_sym_COLON_COLON] = ACTIONS(3473), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3473), - [anon_sym___declspec] = ACTIONS(3471), - [anon_sym___based] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3471), - [anon_sym_EQ] = ACTIONS(3473), - [anon_sym_static] = ACTIONS(3471), - [anon_sym_register] = ACTIONS(3471), - [anon_sym_inline] = ACTIONS(3471), - [anon_sym_thread_local] = ACTIONS(3471), - [anon_sym_const] = ACTIONS(3471), - [anon_sym_volatile] = ACTIONS(3471), - [anon_sym_restrict] = ACTIONS(3471), - [anon_sym__Atomic] = ACTIONS(3471), - [anon_sym_mutable] = ACTIONS(3471), - [anon_sym_constexpr] = ACTIONS(3471), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3471), - [anon_sym_template] = ACTIONS(3471), - [anon_sym_GT2] = ACTIONS(3473), - [anon_sym_operator] = ACTIONS(3471), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3471), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3471), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3471), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3471), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3471), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3471), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3471), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3471), - [anon_sym_MOZ_COLD] = ACTIONS(3471), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3471), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3471), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3471), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3471), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3471), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3471), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3471), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3471), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3471), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3471), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3471), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3471), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3471), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3471), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3471), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3471), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3471), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3471), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3471), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3471), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_NONNULL] = ACTIONS(3471), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3471), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3471), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3471), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3471), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3471), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_NORETURN] = ACTIONS(3471), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3471), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3471), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3471), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3471), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3471), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3471), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3471), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3471), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3471), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3471), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3471), - [anon_sym_MOZ_RAII] = ACTIONS(3471), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3471), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3471), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3471), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3471), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3471), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3471), - }, - [1302] = { - [sym_identifier] = ACTIONS(3475), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3477), - [anon_sym_COMMA] = ACTIONS(3477), - [anon_sym_RPAREN] = ACTIONS(3477), - [anon_sym_LPAREN2] = ACTIONS(3477), - [anon_sym_TILDE] = ACTIONS(3477), - [anon_sym_STAR] = ACTIONS(3477), - [anon_sym_AMP_AMP] = ACTIONS(3477), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_SEMI] = ACTIONS(3477), - [anon_sym_extern] = ACTIONS(3475), - [anon_sym___attribute__] = ACTIONS(3475), - [anon_sym_COLON_COLON] = ACTIONS(3440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3477), - [anon_sym___declspec] = ACTIONS(3475), - [anon_sym___based] = ACTIONS(3475), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3475), - [anon_sym_EQ] = ACTIONS(3477), - [anon_sym_static] = ACTIONS(3475), - [anon_sym_register] = ACTIONS(3475), - [anon_sym_inline] = ACTIONS(3475), - [anon_sym_thread_local] = ACTIONS(3475), - [anon_sym_const] = ACTIONS(3475), - [anon_sym_volatile] = ACTIONS(3475), - [anon_sym_restrict] = ACTIONS(3475), - [anon_sym__Atomic] = ACTIONS(3475), - [anon_sym_mutable] = ACTIONS(3475), - [anon_sym_constexpr] = ACTIONS(3475), - [anon_sym_COLON] = ACTIONS(3475), - [anon_sym_DASH_GT] = ACTIONS(3477), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3475), - [anon_sym_override] = ACTIONS(3475), - [anon_sym_virtual] = ACTIONS(3475), - [anon_sym_template] = ACTIONS(3475), - [anon_sym_GT2] = ACTIONS(3477), - [anon_sym_operator] = ACTIONS(3475), - [anon_sym_noexcept] = ACTIONS(3475), - [anon_sym_throw] = ACTIONS(3475), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3475), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3475), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3475), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3475), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3475), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3475), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3475), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3475), - [anon_sym_MOZ_COLD] = ACTIONS(3475), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3475), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3475), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3475), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3475), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3475), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3475), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3475), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3475), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3475), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3475), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3475), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3475), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3475), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3475), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3475), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3475), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3475), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3475), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3475), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3475), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3475), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3475), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3475), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3475), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3475), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3475), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3475), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3475), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3475), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3475), - [anon_sym_MOZ_NONNULL] = ACTIONS(3475), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3475), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3475), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3475), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3475), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3475), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3475), - [anon_sym_MOZ_NORETURN] = ACTIONS(3475), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3475), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3475), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3475), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3475), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3475), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3475), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3475), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3475), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3475), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3475), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3475), - [anon_sym_MOZ_RAII] = ACTIONS(3475), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3475), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3475), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3475), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3475), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3475), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3475), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3475), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3475), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3475), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3475), - }, - [1303] = { - [sym_identifier] = ACTIONS(3479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3481), - [anon_sym_COMMA] = ACTIONS(3481), - [anon_sym_RPAREN] = ACTIONS(3481), - [anon_sym_LPAREN2] = ACTIONS(3481), - [anon_sym_TILDE] = ACTIONS(3481), - [anon_sym_STAR] = ACTIONS(3481), - [anon_sym_AMP_AMP] = ACTIONS(3481), - [anon_sym_AMP] = ACTIONS(3479), - [anon_sym_SEMI] = ACTIONS(3481), - [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_LBRACE] = ACTIONS(3481), - [anon_sym_LBRACK] = ACTIONS(3479), - [anon_sym_EQ] = ACTIONS(3481), - [anon_sym_static] = ACTIONS(3479), - [anon_sym_register] = ACTIONS(3479), - [anon_sym_inline] = ACTIONS(3479), - [anon_sym_thread_local] = ACTIONS(3479), - [anon_sym_const] = ACTIONS(3479), - [anon_sym_volatile] = ACTIONS(3479), - [anon_sym_restrict] = ACTIONS(3479), - [anon_sym__Atomic] = ACTIONS(3479), - [anon_sym_mutable] = ACTIONS(3479), - [anon_sym_constexpr] = ACTIONS(3479), - [anon_sym_COLON] = ACTIONS(3479), - [anon_sym_DASH_GT] = ACTIONS(3481), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3479), - [anon_sym_override] = ACTIONS(3479), - [anon_sym_virtual] = ACTIONS(3479), - [anon_sym_template] = ACTIONS(3479), - [anon_sym_GT2] = ACTIONS(3481), - [anon_sym_operator] = ACTIONS(3479), - [anon_sym_noexcept] = ACTIONS(3479), - [anon_sym_throw] = ACTIONS(3479), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3479), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3479), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3479), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3479), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3479), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3479), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3479), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3479), - [anon_sym_MOZ_COLD] = ACTIONS(3479), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3479), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3479), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3479), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3479), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3479), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3479), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3479), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3479), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3479), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3479), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3479), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3479), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3479), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3479), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3479), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3479), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3479), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3479), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3479), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3479), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3479), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3479), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3479), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3479), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3479), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3479), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3479), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3479), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3479), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3479), - [anon_sym_MOZ_NONNULL] = ACTIONS(3479), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3479), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3479), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3479), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3479), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3479), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3479), - [anon_sym_MOZ_NORETURN] = ACTIONS(3479), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3479), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3479), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3479), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3479), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3479), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3479), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3479), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3479), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3479), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3479), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3479), - [anon_sym_MOZ_RAII] = ACTIONS(3479), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3479), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3479), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3479), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3479), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3479), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3479), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3479), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3479), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3479), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3479), - }, - [1304] = { - [sym_template_argument_list] = STATE(1294), - [sym_identifier] = ACTIONS(2459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), - [anon_sym_COMMA] = ACTIONS(2466), - [anon_sym_RPAREN] = ACTIONS(2466), - [anon_sym_LPAREN2] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(2466), - [anon_sym_AMP_AMP] = ACTIONS(2466), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2466), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_COLON] = ACTIONS(2459), - [anon_sym_DASH_GT] = ACTIONS(2466), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2459), - [anon_sym_override] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_noexcept] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2459), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2459), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2459), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2459), - [anon_sym_MOZ_COLD] = ACTIONS(2459), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2459), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2459), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2459), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2459), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2459), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2459), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2459), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2459), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2459), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2459), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2459), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2459), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2459), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_NONNULL] = ACTIONS(2459), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2459), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2459), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2459), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2459), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2459), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2459), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2459), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2459), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2459), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2459), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2459), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2459), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2459), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2459), - [anon_sym_MOZ_RAII] = ACTIONS(2459), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2459), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2459), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2459), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2459), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2459), - }, - [1305] = { - [sym_field_declaration_list] = STATE(1345), - [sym_virtual_specifier] = STATE(4155), - [sym_base_class_clause] = STATE(4735), - [sym_identifier] = ACTIONS(3483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3485), - [anon_sym_COMMA] = ACTIONS(3485), - [anon_sym_RPAREN] = ACTIONS(3485), - [anon_sym_LPAREN2] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3483), - [anon_sym_SEMI] = ACTIONS(3485), - [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_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3483), - [anon_sym_EQ] = ACTIONS(3485), - [anon_sym_static] = ACTIONS(3483), - [anon_sym_register] = ACTIONS(3483), - [anon_sym_inline] = ACTIONS(3483), - [anon_sym_thread_local] = ACTIONS(3483), - [anon_sym_const] = ACTIONS(3483), - [anon_sym_volatile] = ACTIONS(3483), - [anon_sym_restrict] = ACTIONS(3483), - [anon_sym__Atomic] = ACTIONS(3483), - [anon_sym_mutable] = ACTIONS(3483), - [anon_sym_constexpr] = ACTIONS(3483), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3483), - [anon_sym_template] = ACTIONS(3483), - [anon_sym_GT2] = ACTIONS(3485), - [anon_sym_operator] = ACTIONS(3483), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3483), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3483), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3483), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3483), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3483), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3483), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3483), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3483), - [anon_sym_MOZ_COLD] = ACTIONS(3483), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3483), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3483), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3483), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3483), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3483), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3483), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3483), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3483), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3483), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3483), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3483), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3483), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3483), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3483), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3483), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3483), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3483), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3483), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3483), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3483), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_NONNULL] = ACTIONS(3483), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3483), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3483), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3483), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3483), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3483), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_NORETURN] = ACTIONS(3483), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3483), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3483), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3483), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3483), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3483), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3483), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3483), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3483), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3483), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3483), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3483), - [anon_sym_MOZ_RAII] = ACTIONS(3483), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3483), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3483), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3483), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3483), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3483), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3483), - }, - [1306] = { - [sym_identifier] = ACTIONS(3405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_RPAREN] = ACTIONS(3407), - [anon_sym_LPAREN2] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3407), - [anon_sym_STAR] = ACTIONS(3407), - [anon_sym_AMP_AMP] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3407), - [anon_sym_extern] = ACTIONS(3405), - [anon_sym___attribute__] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3407), - [anon_sym___declspec] = ACTIONS(3405), - [anon_sym___based] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_EQ] = ACTIONS(3407), - [anon_sym_static] = ACTIONS(3405), - [anon_sym_register] = ACTIONS(3405), - [anon_sym_inline] = ACTIONS(3405), - [anon_sym_thread_local] = ACTIONS(3405), - [anon_sym_const] = ACTIONS(3405), - [anon_sym_volatile] = ACTIONS(3405), - [anon_sym_restrict] = ACTIONS(3405), - [anon_sym__Atomic] = ACTIONS(3405), - [anon_sym_mutable] = ACTIONS(3405), - [anon_sym_constexpr] = ACTIONS(3405), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_DASH_GT] = ACTIONS(3407), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3405), - [anon_sym_override] = ACTIONS(3405), - [anon_sym_virtual] = ACTIONS(3405), - [anon_sym_template] = ACTIONS(3405), - [anon_sym_GT2] = ACTIONS(3407), - [anon_sym_operator] = ACTIONS(3405), - [anon_sym_noexcept] = ACTIONS(3405), - [anon_sym_throw] = ACTIONS(3405), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3405), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3405), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3405), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3405), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3405), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3405), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3405), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3405), - [anon_sym_MOZ_COLD] = ACTIONS(3405), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3405), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3405), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3405), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3405), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3405), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3405), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3405), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3405), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3405), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3405), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3405), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3405), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3405), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3405), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3405), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3405), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3405), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3405), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3405), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3405), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_NONNULL] = ACTIONS(3405), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3405), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3405), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3405), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3405), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3405), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_NORETURN] = ACTIONS(3405), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3405), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3405), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3405), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3405), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3405), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3405), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3405), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3405), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3405), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3405), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3405), - [anon_sym_MOZ_RAII] = ACTIONS(3405), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3405), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3405), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3405), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3405), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3405), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3405), - }, - [1307] = { - [sym_enumerator_list] = STATE(1319), - [sym_identifier] = ACTIONS(3487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3489), - [anon_sym_COMMA] = ACTIONS(3489), - [anon_sym_RPAREN] = ACTIONS(3489), - [anon_sym_LPAREN2] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3489), - [anon_sym_STAR] = ACTIONS(3489), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_AMP] = ACTIONS(3487), - [anon_sym_SEMI] = ACTIONS(3489), - [anon_sym_extern] = ACTIONS(3487), - [anon_sym___attribute__] = ACTIONS(3487), - [anon_sym_COLON_COLON] = ACTIONS(3489), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3489), - [anon_sym___declspec] = ACTIONS(3487), - [anon_sym___based] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3450), - [anon_sym_LBRACK] = ACTIONS(3487), - [anon_sym_EQ] = ACTIONS(3489), - [anon_sym_static] = ACTIONS(3487), - [anon_sym_register] = ACTIONS(3487), - [anon_sym_inline] = ACTIONS(3487), - [anon_sym_thread_local] = ACTIONS(3487), - [anon_sym_const] = ACTIONS(3487), - [anon_sym_volatile] = ACTIONS(3487), - [anon_sym_restrict] = ACTIONS(3487), - [anon_sym__Atomic] = ACTIONS(3487), - [anon_sym_mutable] = ACTIONS(3487), - [anon_sym_constexpr] = ACTIONS(3487), - [anon_sym_DASH_GT] = ACTIONS(3489), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3487), - [anon_sym_override] = ACTIONS(3487), - [anon_sym_virtual] = ACTIONS(3487), - [anon_sym_template] = ACTIONS(3487), - [anon_sym_GT2] = ACTIONS(3489), - [anon_sym_operator] = ACTIONS(3487), - [anon_sym_noexcept] = ACTIONS(3487), - [anon_sym_throw] = ACTIONS(3487), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3487), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3487), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3487), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3487), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3487), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3487), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3487), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3487), - [anon_sym_MOZ_COLD] = ACTIONS(3487), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3487), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3487), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3487), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3487), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3487), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3487), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3487), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3487), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3487), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3487), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3487), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3487), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3487), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3487), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3487), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3487), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3487), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3487), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3487), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3487), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3487), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3487), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3487), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3487), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3487), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3487), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3487), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3487), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3487), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3487), - [anon_sym_MOZ_NONNULL] = ACTIONS(3487), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3487), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3487), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3487), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3487), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3487), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3487), - [anon_sym_MOZ_NORETURN] = ACTIONS(3487), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3487), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3487), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3487), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3487), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3487), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3487), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3487), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3487), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3487), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3487), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3487), - [anon_sym_MOZ_RAII] = ACTIONS(3487), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3487), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3487), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3487), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3487), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3487), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3487), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3487), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3487), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3487), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3487), - }, - [1308] = { - [sym_identifier] = 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_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_LBRACK] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_register] = ACTIONS(3302), - [anon_sym_inline] = ACTIONS(3302), - [anon_sym_thread_local] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_volatile] = ACTIONS(3302), - [anon_sym_restrict] = ACTIONS(3302), - [anon_sym__Atomic] = ACTIONS(3302), - [anon_sym_mutable] = ACTIONS(3302), - [anon_sym_constexpr] = ACTIONS(3302), - [anon_sym_signed] = ACTIONS(3302), - [anon_sym_unsigned] = ACTIONS(3302), - [anon_sym_long] = ACTIONS(3302), - [anon_sym_short] = 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), - [anon_sym_decltype] = ACTIONS(3302), - [anon_sym_virtual] = ACTIONS(3302), - [anon_sym_explicit] = ACTIONS(3302), - [sym_auto] = ACTIONS(3302), - [anon_sym_typename] = ACTIONS(3302), - [anon_sym_template] = ACTIONS(3302), - [anon_sym_operator] = ACTIONS(3302), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3302), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3302), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3302), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3302), - [anon_sym_MOZ_COLD] = ACTIONS(3302), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3302), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3302), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3302), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3302), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3302), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3302), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3302), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3302), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3302), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3302), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3302), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3302), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3302), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_NONNULL] = ACTIONS(3302), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3302), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3302), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3302), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3302), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3302), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3302), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3302), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3302), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3302), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3302), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3302), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3302), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3302), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3302), - [anon_sym_MOZ_RAII] = ACTIONS(3302), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3302), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3302), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3302), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3302), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3302), - }, - [1309] = { - [sym_field_declaration_list] = STATE(1322), - [sym_virtual_specifier] = STATE(4137), - [sym_base_class_clause] = STATE(4703), - [sym_identifier] = ACTIONS(3491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3493), - [anon_sym_COMMA] = ACTIONS(3493), - [anon_sym_RPAREN] = ACTIONS(3493), - [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_SEMI] = ACTIONS(3493), - [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_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3491), - [anon_sym_EQ] = ACTIONS(3493), - [anon_sym_static] = ACTIONS(3491), - [anon_sym_register] = ACTIONS(3491), - [anon_sym_inline] = ACTIONS(3491), - [anon_sym_thread_local] = ACTIONS(3491), - [anon_sym_const] = ACTIONS(3491), - [anon_sym_volatile] = ACTIONS(3491), - [anon_sym_restrict] = ACTIONS(3491), - [anon_sym__Atomic] = ACTIONS(3491), - [anon_sym_mutable] = ACTIONS(3491), - [anon_sym_constexpr] = ACTIONS(3491), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3491), - [anon_sym_template] = ACTIONS(3491), - [anon_sym_GT2] = ACTIONS(3493), - [anon_sym_operator] = ACTIONS(3491), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3491), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3491), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3491), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3491), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3491), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3491), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3491), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3491), - [anon_sym_MOZ_COLD] = ACTIONS(3491), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3491), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3491), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3491), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3491), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3491), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3491), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3491), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3491), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3491), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3491), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3491), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3491), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3491), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3491), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3491), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3491), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3491), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3491), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3491), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3491), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3491), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3491), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3491), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3491), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3491), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3491), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3491), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3491), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3491), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3491), - [anon_sym_MOZ_NONNULL] = ACTIONS(3491), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3491), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3491), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3491), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3491), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3491), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3491), - [anon_sym_MOZ_NORETURN] = ACTIONS(3491), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3491), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3491), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3491), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3491), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3491), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3491), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3491), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3491), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3491), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3491), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3491), - [anon_sym_MOZ_RAII] = ACTIONS(3491), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3491), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3491), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3491), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3491), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3491), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3491), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3491), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3491), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3491), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3491), - }, - [1310] = { - [sym_identifier] = ACTIONS(3495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3497), - [anon_sym_COMMA] = ACTIONS(3497), - [anon_sym_RPAREN] = ACTIONS(3497), - [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_SEMI] = ACTIONS(3497), - [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_LBRACE] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_EQ] = ACTIONS(3497), - [anon_sym_static] = ACTIONS(3495), - [anon_sym_register] = ACTIONS(3495), - [anon_sym_inline] = ACTIONS(3495), - [anon_sym_thread_local] = ACTIONS(3495), - [anon_sym_const] = ACTIONS(3495), - [anon_sym_volatile] = ACTIONS(3495), - [anon_sym_restrict] = ACTIONS(3495), - [anon_sym__Atomic] = ACTIONS(3495), - [anon_sym_mutable] = ACTIONS(3495), - [anon_sym_constexpr] = ACTIONS(3495), - [anon_sym_DASH_GT] = ACTIONS(3497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3495), - [anon_sym_override] = ACTIONS(3495), - [anon_sym_virtual] = ACTIONS(3495), - [anon_sym_template] = ACTIONS(3495), - [anon_sym_GT2] = ACTIONS(3497), - [anon_sym_operator] = ACTIONS(3495), - [anon_sym_noexcept] = ACTIONS(3495), - [anon_sym_throw] = ACTIONS(3495), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3495), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3495), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3495), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3495), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3495), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3495), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3495), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3495), - [anon_sym_MOZ_COLD] = ACTIONS(3495), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3495), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3495), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3495), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3495), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3495), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3495), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3495), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3495), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3495), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3495), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3495), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3495), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3495), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3495), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3495), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3495), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3495), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3495), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3495), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3495), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3495), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3495), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3495), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3495), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3495), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3495), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3495), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3495), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3495), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3495), - [anon_sym_MOZ_NONNULL] = ACTIONS(3495), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3495), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3495), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3495), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3495), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3495), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3495), - [anon_sym_MOZ_NORETURN] = ACTIONS(3495), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3495), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3495), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3495), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3495), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3495), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3495), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3495), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3495), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3495), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3495), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3495), - [anon_sym_MOZ_RAII] = ACTIONS(3495), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3495), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3495), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3495), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3495), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3495), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3495), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3495), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3495), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3495), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3495), - }, - [1311] = { - [sym_identifier] = ACTIONS(3499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3501), - [anon_sym_RPAREN] = ACTIONS(3501), - [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_SEMI] = ACTIONS(3501), - [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_LBRACE] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3499), - [anon_sym_EQ] = ACTIONS(3501), - [anon_sym_static] = ACTIONS(3499), - [anon_sym_register] = ACTIONS(3499), - [anon_sym_inline] = ACTIONS(3499), - [anon_sym_thread_local] = ACTIONS(3499), - [anon_sym_const] = ACTIONS(3499), - [anon_sym_volatile] = ACTIONS(3499), - [anon_sym_restrict] = ACTIONS(3499), - [anon_sym__Atomic] = ACTIONS(3499), - [anon_sym_mutable] = ACTIONS(3499), - [anon_sym_constexpr] = ACTIONS(3499), - [anon_sym_DASH_GT] = ACTIONS(3501), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3499), - [anon_sym_override] = ACTIONS(3499), - [anon_sym_virtual] = ACTIONS(3499), - [anon_sym_template] = ACTIONS(3499), - [anon_sym_GT2] = ACTIONS(3501), - [anon_sym_operator] = ACTIONS(3499), - [anon_sym_noexcept] = ACTIONS(3499), - [anon_sym_throw] = ACTIONS(3499), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3499), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3499), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3499), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3499), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3499), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3499), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3499), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3499), - [anon_sym_MOZ_COLD] = ACTIONS(3499), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3499), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3499), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3499), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3499), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3499), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3499), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3499), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3499), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3499), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3499), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3499), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3499), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3499), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3499), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3499), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3499), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3499), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3499), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3499), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3499), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3499), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3499), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3499), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3499), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3499), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3499), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3499), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3499), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3499), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3499), - [anon_sym_MOZ_NONNULL] = ACTIONS(3499), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3499), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3499), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3499), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3499), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3499), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3499), - [anon_sym_MOZ_NORETURN] = ACTIONS(3499), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3499), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3499), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3499), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3499), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3499), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3499), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3499), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3499), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3499), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3499), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3499), - [anon_sym_MOZ_RAII] = ACTIONS(3499), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3499), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3499), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3499), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3499), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3499), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3499), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3499), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3499), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3499), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3499), - }, - [1312] = { - [sym_identifier] = ACTIONS(3503), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(3505), - [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_SEMI] = ACTIONS(3505), - [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_LBRACE] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3503), - [anon_sym_EQ] = ACTIONS(3505), - [anon_sym_static] = ACTIONS(3503), - [anon_sym_register] = ACTIONS(3503), - [anon_sym_inline] = ACTIONS(3503), - [anon_sym_thread_local] = ACTIONS(3503), - [anon_sym_const] = ACTIONS(3503), - [anon_sym_volatile] = ACTIONS(3503), - [anon_sym_restrict] = ACTIONS(3503), - [anon_sym__Atomic] = ACTIONS(3503), - [anon_sym_mutable] = ACTIONS(3503), - [anon_sym_constexpr] = ACTIONS(3503), - [anon_sym_DASH_GT] = ACTIONS(3505), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3503), - [anon_sym_override] = ACTIONS(3503), - [anon_sym_virtual] = ACTIONS(3503), - [anon_sym_template] = ACTIONS(3503), - [anon_sym_GT2] = ACTIONS(3505), - [anon_sym_operator] = ACTIONS(3503), - [anon_sym_noexcept] = ACTIONS(3503), - [anon_sym_throw] = ACTIONS(3503), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3503), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3503), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3503), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3503), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3503), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3503), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3503), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3503), - [anon_sym_MOZ_COLD] = ACTIONS(3503), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3503), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3503), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3503), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3503), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3503), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3503), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3503), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3503), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3503), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3503), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3503), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3503), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3503), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3503), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3503), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3503), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3503), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3503), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3503), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3503), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3503), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3503), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3503), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3503), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3503), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3503), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3503), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3503), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3503), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3503), - [anon_sym_MOZ_NONNULL] = ACTIONS(3503), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3503), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3503), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3503), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3503), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3503), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3503), - [anon_sym_MOZ_NORETURN] = ACTIONS(3503), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3503), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3503), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3503), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3503), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3503), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3503), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3503), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3503), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3503), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3503), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3503), - [anon_sym_MOZ_RAII] = ACTIONS(3503), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3503), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3503), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3503), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3503), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3503), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3503), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3503), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3503), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3503), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3503), - }, - [1313] = { - [sym_identifier] = ACTIONS(3507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3509), - [anon_sym_COMMA] = ACTIONS(3509), - [anon_sym_RPAREN] = ACTIONS(3509), - [anon_sym_LPAREN2] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3509), - [anon_sym_STAR] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_AMP] = ACTIONS(3507), - [anon_sym_SEMI] = ACTIONS(3509), - [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_LBRACE] = ACTIONS(3509), - [anon_sym_LBRACK] = ACTIONS(3507), - [anon_sym_EQ] = ACTIONS(3509), - [anon_sym_static] = ACTIONS(3507), - [anon_sym_register] = ACTIONS(3507), - [anon_sym_inline] = ACTIONS(3507), - [anon_sym_thread_local] = ACTIONS(3507), - [anon_sym_const] = ACTIONS(3507), - [anon_sym_volatile] = ACTIONS(3507), - [anon_sym_restrict] = ACTIONS(3507), - [anon_sym__Atomic] = ACTIONS(3507), - [anon_sym_mutable] = ACTIONS(3507), - [anon_sym_constexpr] = ACTIONS(3507), - [anon_sym_DASH_GT] = ACTIONS(3509), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3507), - [anon_sym_override] = ACTIONS(3507), - [anon_sym_virtual] = ACTIONS(3507), - [anon_sym_template] = ACTIONS(3507), - [anon_sym_GT2] = ACTIONS(3509), - [anon_sym_operator] = ACTIONS(3507), - [anon_sym_noexcept] = ACTIONS(3507), - [anon_sym_throw] = ACTIONS(3507), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3507), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3507), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3507), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3507), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3507), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3507), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3507), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3507), - [anon_sym_MOZ_COLD] = ACTIONS(3507), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3507), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3507), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3507), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3507), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3507), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3507), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3507), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3507), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3507), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3507), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3507), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3507), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3507), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3507), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3507), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3507), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3507), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3507), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3507), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3507), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3507), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3507), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3507), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3507), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3507), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3507), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3507), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3507), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3507), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3507), - [anon_sym_MOZ_NONNULL] = ACTIONS(3507), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3507), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3507), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3507), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3507), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3507), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3507), - [anon_sym_MOZ_NORETURN] = ACTIONS(3507), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3507), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3507), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3507), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3507), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3507), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3507), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3507), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3507), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3507), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3507), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3507), - [anon_sym_MOZ_RAII] = ACTIONS(3507), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3507), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3507), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3507), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3507), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3507), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3507), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3507), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3507), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3507), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3507), - }, - [1314] = { - [sym_identifier] = ACTIONS(3511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3513), - [anon_sym_COMMA] = ACTIONS(3513), - [anon_sym_RPAREN] = ACTIONS(3513), - [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_SEMI] = ACTIONS(3513), - [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_LBRACE] = ACTIONS(3513), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_EQ] = ACTIONS(3513), - [anon_sym_static] = ACTIONS(3511), - [anon_sym_register] = ACTIONS(3511), - [anon_sym_inline] = ACTIONS(3511), - [anon_sym_thread_local] = ACTIONS(3511), - [anon_sym_const] = ACTIONS(3511), - [anon_sym_volatile] = ACTIONS(3511), - [anon_sym_restrict] = ACTIONS(3511), - [anon_sym__Atomic] = ACTIONS(3511), - [anon_sym_mutable] = ACTIONS(3511), - [anon_sym_constexpr] = ACTIONS(3511), - [anon_sym_DASH_GT] = ACTIONS(3513), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3511), - [anon_sym_override] = ACTIONS(3511), - [anon_sym_virtual] = ACTIONS(3511), - [anon_sym_template] = ACTIONS(3511), - [anon_sym_GT2] = ACTIONS(3513), - [anon_sym_operator] = ACTIONS(3511), - [anon_sym_noexcept] = ACTIONS(3511), - [anon_sym_throw] = ACTIONS(3511), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3511), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3511), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3511), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3511), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3511), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3511), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3511), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3511), - [anon_sym_MOZ_COLD] = ACTIONS(3511), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3511), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3511), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3511), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3511), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3511), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3511), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3511), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3511), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3511), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3511), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3511), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3511), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3511), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3511), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3511), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3511), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3511), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3511), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3511), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3511), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3511), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3511), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3511), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3511), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3511), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3511), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3511), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3511), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3511), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3511), - [anon_sym_MOZ_NONNULL] = ACTIONS(3511), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3511), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3511), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3511), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3511), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3511), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3511), - [anon_sym_MOZ_NORETURN] = ACTIONS(3511), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3511), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3511), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3511), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3511), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3511), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3511), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3511), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3511), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3511), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3511), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3511), - [anon_sym_MOZ_RAII] = ACTIONS(3511), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3511), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3511), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3511), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3511), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3511), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3511), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3511), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3511), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3511), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3511), - }, - [1315] = { - [sym_identifier] = ACTIONS(3515), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3517), - [anon_sym_RPAREN] = ACTIONS(3517), - [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_SEMI] = ACTIONS(3517), - [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_LBRACE] = ACTIONS(3517), - [anon_sym_LBRACK] = ACTIONS(3515), - [anon_sym_EQ] = ACTIONS(3517), - [anon_sym_static] = ACTIONS(3515), - [anon_sym_register] = ACTIONS(3515), - [anon_sym_inline] = ACTIONS(3515), - [anon_sym_thread_local] = ACTIONS(3515), - [anon_sym_const] = ACTIONS(3515), - [anon_sym_volatile] = ACTIONS(3515), - [anon_sym_restrict] = ACTIONS(3515), - [anon_sym__Atomic] = ACTIONS(3515), - [anon_sym_mutable] = ACTIONS(3515), - [anon_sym_constexpr] = ACTIONS(3515), - [anon_sym_DASH_GT] = ACTIONS(3517), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3515), - [anon_sym_override] = ACTIONS(3515), - [anon_sym_virtual] = ACTIONS(3515), - [anon_sym_template] = ACTIONS(3515), - [anon_sym_GT2] = ACTIONS(3517), - [anon_sym_operator] = ACTIONS(3515), - [anon_sym_noexcept] = ACTIONS(3515), - [anon_sym_throw] = ACTIONS(3515), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3515), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3515), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3515), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3515), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3515), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3515), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3515), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3515), - [anon_sym_MOZ_COLD] = ACTIONS(3515), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3515), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3515), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3515), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3515), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3515), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3515), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3515), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3515), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3515), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3515), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3515), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3515), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3515), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3515), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3515), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3515), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3515), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3515), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3515), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3515), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3515), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3515), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3515), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3515), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3515), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3515), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3515), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3515), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3515), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3515), - [anon_sym_MOZ_NONNULL] = ACTIONS(3515), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3515), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3515), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3515), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3515), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3515), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3515), - [anon_sym_MOZ_NORETURN] = ACTIONS(3515), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3515), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3515), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3515), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3515), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3515), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3515), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3515), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3515), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3515), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3515), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3515), - [anon_sym_MOZ_RAII] = ACTIONS(3515), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3515), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3515), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3515), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3515), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3515), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3515), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3515), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3515), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3515), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3515), - }, - [1316] = { - [sym_identifier] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3521), - [anon_sym_COMMA] = ACTIONS(3521), - [anon_sym_RPAREN] = ACTIONS(3521), - [anon_sym_LPAREN2] = ACTIONS(3521), - [anon_sym_TILDE] = ACTIONS(3521), - [anon_sym_STAR] = ACTIONS(3521), - [anon_sym_AMP_AMP] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [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_LBRACE] = ACTIONS(3521), - [anon_sym_LBRACK] = ACTIONS(3519), - [anon_sym_EQ] = ACTIONS(3521), - [anon_sym_static] = ACTIONS(3519), - [anon_sym_register] = ACTIONS(3519), - [anon_sym_inline] = ACTIONS(3519), - [anon_sym_thread_local] = ACTIONS(3519), - [anon_sym_const] = ACTIONS(3519), - [anon_sym_volatile] = ACTIONS(3519), - [anon_sym_restrict] = ACTIONS(3519), - [anon_sym__Atomic] = ACTIONS(3519), - [anon_sym_mutable] = ACTIONS(3519), - [anon_sym_constexpr] = ACTIONS(3519), - [anon_sym_DASH_GT] = ACTIONS(3521), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3519), - [anon_sym_override] = ACTIONS(3519), - [anon_sym_virtual] = ACTIONS(3519), - [anon_sym_template] = ACTIONS(3519), - [anon_sym_GT2] = ACTIONS(3521), - [anon_sym_operator] = ACTIONS(3519), - [anon_sym_noexcept] = ACTIONS(3519), - [anon_sym_throw] = ACTIONS(3519), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3519), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3519), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3519), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3519), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3519), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3519), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3519), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3519), - [anon_sym_MOZ_COLD] = ACTIONS(3519), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3519), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3519), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3519), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3519), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3519), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3519), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3519), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3519), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3519), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3519), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3519), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3519), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3519), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3519), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3519), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3519), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3519), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3519), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3519), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3519), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3519), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3519), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3519), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3519), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3519), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3519), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3519), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3519), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3519), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3519), - [anon_sym_MOZ_NONNULL] = ACTIONS(3519), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3519), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3519), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3519), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3519), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3519), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3519), - [anon_sym_MOZ_NORETURN] = ACTIONS(3519), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3519), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3519), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3519), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3519), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3519), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3519), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3519), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3519), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3519), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3519), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3519), - [anon_sym_MOZ_RAII] = ACTIONS(3519), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3519), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3519), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3519), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3519), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3519), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3519), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3519), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3519), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3519), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3519), - }, - [1317] = { - [sym_identifier] = ACTIONS(3523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3525), - [anon_sym_COMMA] = ACTIONS(3525), - [anon_sym_RPAREN] = ACTIONS(3525), - [anon_sym_LPAREN2] = ACTIONS(3525), - [anon_sym_TILDE] = ACTIONS(3525), - [anon_sym_STAR] = ACTIONS(3525), - [anon_sym_AMP_AMP] = ACTIONS(3525), - [anon_sym_AMP] = ACTIONS(3523), - [anon_sym_SEMI] = ACTIONS(3525), - [anon_sym_extern] = ACTIONS(3523), - [anon_sym___attribute__] = ACTIONS(3523), - [anon_sym_COLON_COLON] = ACTIONS(3525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3525), - [anon_sym___declspec] = ACTIONS(3523), - [anon_sym___based] = ACTIONS(3523), - [anon_sym_LBRACE] = ACTIONS(3525), - [anon_sym_LBRACK] = ACTIONS(3523), - [anon_sym_EQ] = ACTIONS(3525), - [anon_sym_static] = ACTIONS(3523), - [anon_sym_register] = ACTIONS(3523), - [anon_sym_inline] = ACTIONS(3523), - [anon_sym_thread_local] = ACTIONS(3523), - [anon_sym_const] = ACTIONS(3523), - [anon_sym_volatile] = ACTIONS(3523), - [anon_sym_restrict] = ACTIONS(3523), - [anon_sym__Atomic] = ACTIONS(3523), - [anon_sym_mutable] = ACTIONS(3523), - [anon_sym_constexpr] = ACTIONS(3523), - [anon_sym_DASH_GT] = ACTIONS(3525), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3523), - [anon_sym_override] = ACTIONS(3523), - [anon_sym_virtual] = ACTIONS(3523), - [anon_sym_template] = ACTIONS(3523), - [anon_sym_GT2] = ACTIONS(3525), - [anon_sym_operator] = ACTIONS(3523), - [anon_sym_noexcept] = ACTIONS(3523), - [anon_sym_throw] = ACTIONS(3523), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3523), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3523), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3523), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3523), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3523), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3523), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3523), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3523), - [anon_sym_MOZ_COLD] = ACTIONS(3523), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3523), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3523), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3523), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3523), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3523), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3523), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3523), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3523), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3523), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3523), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3523), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3523), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3523), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3523), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3523), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3523), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3523), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3523), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3523), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3523), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3523), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3523), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3523), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3523), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3523), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3523), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3523), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3523), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3523), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3523), - [anon_sym_MOZ_NONNULL] = ACTIONS(3523), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3523), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3523), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3523), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3523), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3523), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3523), - [anon_sym_MOZ_NORETURN] = ACTIONS(3523), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3523), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3523), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3523), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3523), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3523), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3523), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3523), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3523), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3523), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3523), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3523), - [anon_sym_MOZ_RAII] = ACTIONS(3523), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3523), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3523), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3523), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3523), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3523), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3523), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3523), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3523), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3523), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3523), - }, - [1318] = { - [sym__declaration_modifiers] = STATE(1318), - [sym_attribute_specifier] = STATE(1318), - [sym_attribute_declaration] = STATE(1318), - [sym_ms_declspec_modifier] = STATE(1318), - [sym_storage_class_specifier] = STATE(1318), - [sym_type_qualifier] = STATE(1318), - [sym_virtual_function_specifier] = STATE(1318), - [sym_explicit_function_specifier] = STATE(1318), - [sym__constructor_specifiers] = STATE(1318), - [sym_macro_annotation] = STATE(1466), - [aux_sym_operator_cast_definition_repeat1] = STATE(1318), - [sym_identifier] = ACTIONS(3527), - [anon_sym_LPAREN2] = ACTIONS(3529), - [anon_sym_TILDE] = ACTIONS(3529), - [anon_sym_STAR] = ACTIONS(3529), - [anon_sym_AMP_AMP] = ACTIONS(3529), - [anon_sym_AMP] = ACTIONS(3527), - [anon_sym_extern] = ACTIONS(3531), - [anon_sym___attribute__] = ACTIONS(3534), - [anon_sym_COLON_COLON] = ACTIONS(3529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3537), - [anon_sym___declspec] = ACTIONS(3540), - [anon_sym___based] = ACTIONS(3527), - [anon_sym_LBRACK] = ACTIONS(3527), - [anon_sym_static] = ACTIONS(3531), - [anon_sym_register] = ACTIONS(3531), - [anon_sym_inline] = ACTIONS(3531), - [anon_sym_thread_local] = ACTIONS(3531), - [anon_sym_const] = ACTIONS(3543), - [anon_sym_volatile] = ACTIONS(3543), - [anon_sym_restrict] = ACTIONS(3543), - [anon_sym__Atomic] = ACTIONS(3543), - [anon_sym_mutable] = ACTIONS(3543), - [anon_sym_constexpr] = ACTIONS(3543), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3546), - [anon_sym_explicit] = ACTIONS(3549), - [anon_sym_template] = ACTIONS(3527), - [anon_sym_operator] = ACTIONS(3527), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3552), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3552), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3552), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3552), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3552), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3552), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3552), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3552), - [anon_sym_MOZ_COLD] = ACTIONS(3552), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3552), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3552), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3552), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3552), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3552), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3552), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3552), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3552), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3552), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3552), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3552), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3552), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3552), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3552), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3552), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3552), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3552), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3552), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3552), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3552), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3552), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3552), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3552), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3552), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3552), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3552), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3552), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3552), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3552), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3552), - [anon_sym_MOZ_NONNULL] = ACTIONS(3552), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3552), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3552), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3552), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3552), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3552), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3552), - [anon_sym_MOZ_NORETURN] = ACTIONS(3552), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3552), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3552), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3552), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3552), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3552), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3552), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3552), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3552), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3552), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3552), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3552), - [anon_sym_MOZ_RAII] = ACTIONS(3552), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3552), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3552), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3552), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3552), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3552), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3552), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3552), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3552), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3552), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3552), - }, - [1319] = { - [sym_identifier] = ACTIONS(3555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3557), - [anon_sym_COMMA] = ACTIONS(3557), - [anon_sym_RPAREN] = ACTIONS(3557), - [anon_sym_LPAREN2] = ACTIONS(3557), - [anon_sym_TILDE] = ACTIONS(3557), - [anon_sym_STAR] = ACTIONS(3557), - [anon_sym_AMP_AMP] = ACTIONS(3557), - [anon_sym_AMP] = ACTIONS(3555), - [anon_sym_SEMI] = ACTIONS(3557), - [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_LBRACE] = ACTIONS(3557), - [anon_sym_LBRACK] = ACTIONS(3555), - [anon_sym_EQ] = ACTIONS(3557), - [anon_sym_static] = ACTIONS(3555), - [anon_sym_register] = ACTIONS(3555), - [anon_sym_inline] = ACTIONS(3555), - [anon_sym_thread_local] = ACTIONS(3555), - [anon_sym_const] = ACTIONS(3555), - [anon_sym_volatile] = ACTIONS(3555), - [anon_sym_restrict] = ACTIONS(3555), - [anon_sym__Atomic] = ACTIONS(3555), - [anon_sym_mutable] = ACTIONS(3555), - [anon_sym_constexpr] = ACTIONS(3555), - [anon_sym_DASH_GT] = ACTIONS(3557), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3555), - [anon_sym_override] = ACTIONS(3555), - [anon_sym_virtual] = ACTIONS(3555), - [anon_sym_template] = ACTIONS(3555), - [anon_sym_GT2] = ACTIONS(3557), - [anon_sym_operator] = ACTIONS(3555), - [anon_sym_noexcept] = ACTIONS(3555), - [anon_sym_throw] = ACTIONS(3555), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3555), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3555), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3555), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3555), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3555), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3555), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3555), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3555), - [anon_sym_MOZ_COLD] = ACTIONS(3555), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3555), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3555), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3555), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3555), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3555), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3555), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3555), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3555), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3555), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3555), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3555), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3555), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3555), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3555), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3555), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3555), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3555), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3555), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3555), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3555), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3555), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3555), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3555), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3555), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3555), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3555), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3555), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3555), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3555), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3555), - [anon_sym_MOZ_NONNULL] = ACTIONS(3555), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3555), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3555), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3555), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3555), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3555), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3555), - [anon_sym_MOZ_NORETURN] = ACTIONS(3555), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3555), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3555), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3555), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3555), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3555), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3555), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3555), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3555), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3555), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3555), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3555), - [anon_sym_MOZ_RAII] = ACTIONS(3555), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3555), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3555), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3555), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3555), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3555), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3555), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3555), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3555), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3555), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3555), - }, - [1320] = { - [sym_identifier] = ACTIONS(3559), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3561), - [anon_sym_COMMA] = ACTIONS(3561), - [anon_sym_RPAREN] = ACTIONS(3561), - [anon_sym_LPAREN2] = ACTIONS(3561), - [anon_sym_TILDE] = ACTIONS(3561), - [anon_sym_STAR] = ACTIONS(3561), - [anon_sym_AMP_AMP] = ACTIONS(3561), - [anon_sym_AMP] = ACTIONS(3559), - [anon_sym_SEMI] = ACTIONS(3561), - [anon_sym_extern] = ACTIONS(3559), - [anon_sym___attribute__] = ACTIONS(3559), - [anon_sym_COLON_COLON] = ACTIONS(3561), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3561), - [anon_sym___declspec] = ACTIONS(3559), - [anon_sym___based] = ACTIONS(3559), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_LBRACK] = ACTIONS(3559), - [anon_sym_EQ] = ACTIONS(3561), - [anon_sym_static] = ACTIONS(3559), - [anon_sym_register] = ACTIONS(3559), - [anon_sym_inline] = ACTIONS(3559), - [anon_sym_thread_local] = ACTIONS(3559), - [anon_sym_const] = ACTIONS(3559), - [anon_sym_volatile] = ACTIONS(3559), - [anon_sym_restrict] = ACTIONS(3559), - [anon_sym__Atomic] = ACTIONS(3559), - [anon_sym_mutable] = ACTIONS(3559), - [anon_sym_constexpr] = ACTIONS(3559), - [anon_sym_DASH_GT] = ACTIONS(3561), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3559), - [anon_sym_override] = ACTIONS(3559), - [anon_sym_virtual] = ACTIONS(3559), - [anon_sym_template] = ACTIONS(3559), - [anon_sym_GT2] = ACTIONS(3561), - [anon_sym_operator] = ACTIONS(3559), - [anon_sym_noexcept] = ACTIONS(3559), - [anon_sym_throw] = ACTIONS(3559), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3559), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3559), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3559), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3559), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3559), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3559), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3559), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3559), - [anon_sym_MOZ_COLD] = ACTIONS(3559), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3559), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3559), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3559), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3559), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3559), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3559), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3559), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3559), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3559), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3559), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3559), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3559), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3559), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3559), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3559), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3559), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3559), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3559), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3559), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3559), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3559), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3559), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3559), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3559), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3559), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3559), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3559), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3559), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3559), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3559), - [anon_sym_MOZ_NONNULL] = ACTIONS(3559), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3559), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3559), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3559), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3559), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3559), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3559), - [anon_sym_MOZ_NORETURN] = ACTIONS(3559), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3559), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3559), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3559), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3559), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3559), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3559), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3559), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3559), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3559), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3559), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3559), - [anon_sym_MOZ_RAII] = ACTIONS(3559), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3559), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3559), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3559), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3559), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3559), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3559), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3559), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3559), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3559), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3559), - }, - [1321] = { - [sym_identifier] = ACTIONS(3563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3565), - [anon_sym_RPAREN] = ACTIONS(3565), - [anon_sym_LPAREN2] = ACTIONS(3565), - [anon_sym_TILDE] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3565), - [anon_sym_AMP_AMP] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3563), - [anon_sym_SEMI] = ACTIONS(3565), - [anon_sym_extern] = ACTIONS(3563), - [anon_sym___attribute__] = ACTIONS(3563), - [anon_sym_COLON_COLON] = ACTIONS(3565), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3565), - [anon_sym___declspec] = ACTIONS(3563), - [anon_sym___based] = ACTIONS(3563), - [anon_sym_LBRACE] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(3563), - [anon_sym_EQ] = ACTIONS(3565), - [anon_sym_static] = ACTIONS(3563), - [anon_sym_register] = ACTIONS(3563), - [anon_sym_inline] = ACTIONS(3563), - [anon_sym_thread_local] = ACTIONS(3563), - [anon_sym_const] = ACTIONS(3563), - [anon_sym_volatile] = ACTIONS(3563), - [anon_sym_restrict] = ACTIONS(3563), - [anon_sym__Atomic] = ACTIONS(3563), - [anon_sym_mutable] = ACTIONS(3563), - [anon_sym_constexpr] = ACTIONS(3563), - [anon_sym_DASH_GT] = ACTIONS(3565), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3563), - [anon_sym_override] = ACTIONS(3563), - [anon_sym_virtual] = ACTIONS(3563), - [anon_sym_template] = ACTIONS(3563), - [anon_sym_GT2] = ACTIONS(3565), - [anon_sym_operator] = ACTIONS(3563), - [anon_sym_noexcept] = ACTIONS(3563), - [anon_sym_throw] = ACTIONS(3563), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3563), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3563), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3563), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3563), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3563), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3563), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3563), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3563), - [anon_sym_MOZ_COLD] = ACTIONS(3563), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3563), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3563), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3563), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3563), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3563), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3563), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3563), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3563), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3563), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3563), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3563), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3563), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3563), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3563), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3563), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3563), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3563), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3563), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3563), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3563), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3563), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3563), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3563), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3563), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3563), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3563), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3563), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3563), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3563), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3563), - [anon_sym_MOZ_NONNULL] = ACTIONS(3563), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3563), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3563), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3563), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3563), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3563), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3563), - [anon_sym_MOZ_NORETURN] = ACTIONS(3563), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3563), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3563), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3563), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3563), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3563), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3563), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3563), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3563), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3563), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3563), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3563), - [anon_sym_MOZ_RAII] = ACTIONS(3563), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3563), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3563), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3563), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3563), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3563), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3563), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3563), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3563), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3563), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3563), - }, - [1322] = { - [sym_identifier] = ACTIONS(3567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3569), - [anon_sym_COMMA] = ACTIONS(3569), - [anon_sym_RPAREN] = ACTIONS(3569), - [anon_sym_LPAREN2] = ACTIONS(3569), - [anon_sym_TILDE] = ACTIONS(3569), - [anon_sym_STAR] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(3569), - [anon_sym_AMP] = ACTIONS(3567), - [anon_sym_SEMI] = ACTIONS(3569), - [anon_sym_extern] = ACTIONS(3567), - [anon_sym___attribute__] = ACTIONS(3567), - [anon_sym_COLON_COLON] = ACTIONS(3569), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3569), - [anon_sym___declspec] = ACTIONS(3567), - [anon_sym___based] = ACTIONS(3567), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_LBRACK] = ACTIONS(3567), - [anon_sym_EQ] = ACTIONS(3569), - [anon_sym_static] = ACTIONS(3567), - [anon_sym_register] = ACTIONS(3567), - [anon_sym_inline] = ACTIONS(3567), - [anon_sym_thread_local] = ACTIONS(3567), - [anon_sym_const] = ACTIONS(3567), - [anon_sym_volatile] = ACTIONS(3567), - [anon_sym_restrict] = ACTIONS(3567), - [anon_sym__Atomic] = ACTIONS(3567), - [anon_sym_mutable] = ACTIONS(3567), - [anon_sym_constexpr] = ACTIONS(3567), - [anon_sym_DASH_GT] = ACTIONS(3569), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3567), - [anon_sym_override] = ACTIONS(3567), - [anon_sym_virtual] = ACTIONS(3567), - [anon_sym_template] = ACTIONS(3567), - [anon_sym_GT2] = ACTIONS(3569), - [anon_sym_operator] = ACTIONS(3567), - [anon_sym_noexcept] = ACTIONS(3567), - [anon_sym_throw] = ACTIONS(3567), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3567), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3567), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3567), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3567), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3567), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3567), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3567), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3567), - [anon_sym_MOZ_COLD] = ACTIONS(3567), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3567), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3567), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3567), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3567), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3567), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3567), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3567), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3567), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3567), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3567), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3567), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3567), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3567), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3567), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3567), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3567), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3567), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3567), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3567), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3567), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3567), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3567), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3567), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3567), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3567), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3567), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3567), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3567), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3567), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3567), - [anon_sym_MOZ_NONNULL] = ACTIONS(3567), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3567), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3567), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3567), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3567), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3567), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3567), - [anon_sym_MOZ_NORETURN] = ACTIONS(3567), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3567), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3567), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3567), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3567), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3567), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3567), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3567), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3567), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3567), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3567), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3567), - [anon_sym_MOZ_RAII] = ACTIONS(3567), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3567), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3567), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3567), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3567), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3567), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3567), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3567), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3567), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3567), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3567), - }, - [1323] = { - [sym_identifier] = ACTIONS(3571), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3573), - [anon_sym_COMMA] = ACTIONS(3573), - [anon_sym_RPAREN] = ACTIONS(3573), - [anon_sym_LPAREN2] = ACTIONS(3573), - [anon_sym_TILDE] = ACTIONS(3573), - [anon_sym_STAR] = ACTIONS(3573), - [anon_sym_AMP_AMP] = ACTIONS(3573), - [anon_sym_AMP] = ACTIONS(3571), - [anon_sym_SEMI] = ACTIONS(3573), - [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_LBRACE] = ACTIONS(3573), - [anon_sym_LBRACK] = ACTIONS(3571), - [anon_sym_EQ] = ACTIONS(3573), - [anon_sym_static] = ACTIONS(3571), - [anon_sym_register] = ACTIONS(3571), - [anon_sym_inline] = ACTIONS(3571), - [anon_sym_thread_local] = ACTIONS(3571), - [anon_sym_const] = ACTIONS(3571), - [anon_sym_volatile] = ACTIONS(3571), - [anon_sym_restrict] = ACTIONS(3571), - [anon_sym__Atomic] = ACTIONS(3571), - [anon_sym_mutable] = ACTIONS(3571), - [anon_sym_constexpr] = ACTIONS(3571), - [anon_sym_DASH_GT] = ACTIONS(3573), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3571), - [anon_sym_override] = ACTIONS(3571), - [anon_sym_virtual] = ACTIONS(3571), - [anon_sym_template] = ACTIONS(3571), - [anon_sym_GT2] = ACTIONS(3573), - [anon_sym_operator] = ACTIONS(3571), - [anon_sym_noexcept] = ACTIONS(3571), - [anon_sym_throw] = ACTIONS(3571), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3571), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3571), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3571), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3571), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3571), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3571), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3571), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3571), - [anon_sym_MOZ_COLD] = ACTIONS(3571), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3571), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3571), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3571), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3571), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3571), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3571), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3571), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3571), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3571), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3571), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3571), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3571), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3571), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3571), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3571), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3571), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3571), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3571), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3571), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3571), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3571), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3571), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3571), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3571), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3571), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3571), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3571), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3571), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3571), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3571), - [anon_sym_MOZ_NONNULL] = ACTIONS(3571), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3571), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3571), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3571), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3571), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3571), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3571), - [anon_sym_MOZ_NORETURN] = ACTIONS(3571), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3571), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3571), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3571), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3571), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3571), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3571), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3571), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3571), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3571), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3571), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3571), - [anon_sym_MOZ_RAII] = ACTIONS(3571), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3571), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3571), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3571), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3571), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3571), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3571), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3571), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3571), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3571), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3571), - }, - [1324] = { - [sym_identifier] = ACTIONS(3575), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3577), - [anon_sym_COMMA] = ACTIONS(3577), - [anon_sym_RPAREN] = ACTIONS(3577), - [anon_sym_LPAREN2] = ACTIONS(3577), - [anon_sym_TILDE] = ACTIONS(3577), - [anon_sym_STAR] = ACTIONS(3577), - [anon_sym_AMP_AMP] = ACTIONS(3577), - [anon_sym_AMP] = ACTIONS(3575), - [anon_sym_SEMI] = ACTIONS(3577), - [anon_sym_extern] = ACTIONS(3575), - [anon_sym___attribute__] = ACTIONS(3575), - [anon_sym_COLON_COLON] = ACTIONS(3577), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3577), - [anon_sym___declspec] = ACTIONS(3575), - [anon_sym___based] = ACTIONS(3575), - [anon_sym_LBRACE] = ACTIONS(3577), - [anon_sym_LBRACK] = ACTIONS(3575), - [anon_sym_EQ] = ACTIONS(3577), - [anon_sym_static] = ACTIONS(3575), - [anon_sym_register] = ACTIONS(3575), - [anon_sym_inline] = ACTIONS(3575), - [anon_sym_thread_local] = ACTIONS(3575), - [anon_sym_const] = ACTIONS(3575), - [anon_sym_volatile] = ACTIONS(3575), - [anon_sym_restrict] = ACTIONS(3575), - [anon_sym__Atomic] = ACTIONS(3575), - [anon_sym_mutable] = ACTIONS(3575), - [anon_sym_constexpr] = ACTIONS(3575), - [anon_sym_DASH_GT] = ACTIONS(3577), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3575), - [anon_sym_override] = ACTIONS(3575), - [anon_sym_virtual] = ACTIONS(3575), - [anon_sym_template] = ACTIONS(3575), - [anon_sym_GT2] = ACTIONS(3577), - [anon_sym_operator] = ACTIONS(3575), - [anon_sym_noexcept] = ACTIONS(3575), - [anon_sym_throw] = ACTIONS(3575), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3575), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3575), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3575), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3575), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3575), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3575), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3575), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3575), - [anon_sym_MOZ_COLD] = ACTIONS(3575), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3575), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3575), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3575), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3575), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3575), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3575), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3575), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3575), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3575), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3575), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3575), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3575), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3575), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3575), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3575), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3575), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3575), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3575), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3575), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3575), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3575), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3575), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3575), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3575), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3575), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3575), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3575), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3575), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3575), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3575), - [anon_sym_MOZ_NONNULL] = ACTIONS(3575), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3575), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3575), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3575), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3575), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3575), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3575), - [anon_sym_MOZ_NORETURN] = ACTIONS(3575), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3575), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3575), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3575), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3575), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3575), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3575), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3575), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3575), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3575), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3575), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3575), - [anon_sym_MOZ_RAII] = ACTIONS(3575), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3575), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3575), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3575), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3575), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3575), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3575), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3575), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3575), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3575), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3575), - }, - [1325] = { - [sym_identifier] = ACTIONS(3579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3581), - [anon_sym_COMMA] = ACTIONS(3581), - [anon_sym_RPAREN] = ACTIONS(3581), - [anon_sym_LPAREN2] = ACTIONS(3581), - [anon_sym_TILDE] = ACTIONS(3581), - [anon_sym_STAR] = ACTIONS(3581), - [anon_sym_AMP_AMP] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(3581), - [anon_sym_extern] = ACTIONS(3579), - [anon_sym___attribute__] = ACTIONS(3579), - [anon_sym_COLON_COLON] = ACTIONS(3581), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3581), - [anon_sym___declspec] = ACTIONS(3579), - [anon_sym___based] = ACTIONS(3579), - [anon_sym_LBRACE] = ACTIONS(3581), - [anon_sym_LBRACK] = ACTIONS(3579), - [anon_sym_EQ] = ACTIONS(3581), - [anon_sym_static] = ACTIONS(3579), - [anon_sym_register] = ACTIONS(3579), - [anon_sym_inline] = ACTIONS(3579), - [anon_sym_thread_local] = ACTIONS(3579), - [anon_sym_const] = ACTIONS(3579), - [anon_sym_volatile] = ACTIONS(3579), - [anon_sym_restrict] = ACTIONS(3579), - [anon_sym__Atomic] = ACTIONS(3579), - [anon_sym_mutable] = ACTIONS(3579), - [anon_sym_constexpr] = ACTIONS(3579), - [anon_sym_DASH_GT] = ACTIONS(3581), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3579), - [anon_sym_override] = ACTIONS(3579), - [anon_sym_virtual] = ACTIONS(3579), - [anon_sym_template] = ACTIONS(3579), - [anon_sym_GT2] = ACTIONS(3581), - [anon_sym_operator] = ACTIONS(3579), - [anon_sym_noexcept] = ACTIONS(3579), - [anon_sym_throw] = ACTIONS(3579), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3579), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3579), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3579), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3579), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3579), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3579), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3579), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3579), - [anon_sym_MOZ_COLD] = ACTIONS(3579), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3579), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3579), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3579), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3579), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3579), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3579), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3579), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3579), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3579), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3579), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3579), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3579), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3579), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3579), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3579), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3579), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3579), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3579), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3579), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3579), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3579), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3579), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3579), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3579), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3579), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3579), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3579), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3579), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3579), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3579), - [anon_sym_MOZ_NONNULL] = ACTIONS(3579), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3579), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3579), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3579), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3579), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3579), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3579), - [anon_sym_MOZ_NORETURN] = ACTIONS(3579), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3579), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3579), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3579), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3579), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3579), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3579), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3579), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3579), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3579), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3579), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3579), - [anon_sym_MOZ_RAII] = ACTIONS(3579), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3579), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3579), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3579), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3579), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3579), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3579), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3579), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3579), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3579), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3579), - }, - [1326] = { - [sym_identifier] = ACTIONS(3583), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3585), - [anon_sym_COMMA] = ACTIONS(3585), - [anon_sym_RPAREN] = ACTIONS(3585), - [anon_sym_LPAREN2] = ACTIONS(3585), - [anon_sym_TILDE] = ACTIONS(3585), - [anon_sym_STAR] = ACTIONS(3585), - [anon_sym_AMP_AMP] = ACTIONS(3585), - [anon_sym_AMP] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3585), - [anon_sym_extern] = ACTIONS(3583), - [anon_sym___attribute__] = ACTIONS(3583), - [anon_sym_COLON_COLON] = ACTIONS(3585), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3585), - [anon_sym___declspec] = ACTIONS(3583), - [anon_sym___based] = ACTIONS(3583), - [anon_sym_LBRACE] = ACTIONS(3585), - [anon_sym_LBRACK] = ACTIONS(3583), - [anon_sym_EQ] = ACTIONS(3585), - [anon_sym_static] = ACTIONS(3583), - [anon_sym_register] = ACTIONS(3583), - [anon_sym_inline] = ACTIONS(3583), - [anon_sym_thread_local] = ACTIONS(3583), - [anon_sym_const] = ACTIONS(3583), - [anon_sym_volatile] = ACTIONS(3583), - [anon_sym_restrict] = ACTIONS(3583), - [anon_sym__Atomic] = ACTIONS(3583), - [anon_sym_mutable] = ACTIONS(3583), - [anon_sym_constexpr] = ACTIONS(3583), - [anon_sym_DASH_GT] = ACTIONS(3585), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3583), - [anon_sym_override] = ACTIONS(3583), - [anon_sym_virtual] = ACTIONS(3583), - [anon_sym_template] = ACTIONS(3583), - [anon_sym_GT2] = ACTIONS(3585), - [anon_sym_operator] = ACTIONS(3583), - [anon_sym_noexcept] = ACTIONS(3583), - [anon_sym_throw] = ACTIONS(3583), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3583), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3583), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3583), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3583), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3583), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3583), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3583), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3583), - [anon_sym_MOZ_COLD] = ACTIONS(3583), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3583), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3583), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3583), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3583), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3583), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3583), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3583), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3583), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3583), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3583), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3583), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3583), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3583), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3583), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3583), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3583), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3583), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3583), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3583), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3583), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3583), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3583), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3583), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3583), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3583), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3583), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3583), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3583), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3583), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3583), - [anon_sym_MOZ_NONNULL] = ACTIONS(3583), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3583), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3583), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3583), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3583), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3583), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3583), - [anon_sym_MOZ_NORETURN] = ACTIONS(3583), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3583), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3583), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3583), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3583), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3583), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3583), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3583), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3583), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3583), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3583), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3583), - [anon_sym_MOZ_RAII] = ACTIONS(3583), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3583), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3583), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3583), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3583), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3583), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3583), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3583), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3583), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3583), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3583), - }, - [1327] = { - [sym_identifier] = ACTIONS(3587), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3589), - [anon_sym_COMMA] = ACTIONS(3589), - [anon_sym_RPAREN] = ACTIONS(3589), - [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_SEMI] = ACTIONS(3589), - [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_LBRACE] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3587), - [anon_sym_EQ] = ACTIONS(3589), - [anon_sym_static] = ACTIONS(3587), - [anon_sym_register] = ACTIONS(3587), - [anon_sym_inline] = ACTIONS(3587), - [anon_sym_thread_local] = ACTIONS(3587), - [anon_sym_const] = ACTIONS(3587), - [anon_sym_volatile] = ACTIONS(3587), - [anon_sym_restrict] = ACTIONS(3587), - [anon_sym__Atomic] = ACTIONS(3587), - [anon_sym_mutable] = ACTIONS(3587), - [anon_sym_constexpr] = ACTIONS(3587), - [anon_sym_DASH_GT] = ACTIONS(3589), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3587), - [anon_sym_override] = ACTIONS(3587), - [anon_sym_virtual] = ACTIONS(3587), - [anon_sym_template] = ACTIONS(3587), - [anon_sym_GT2] = ACTIONS(3589), - [anon_sym_operator] = ACTIONS(3587), - [anon_sym_noexcept] = ACTIONS(3587), - [anon_sym_throw] = ACTIONS(3587), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3587), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3587), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3587), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3587), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3587), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3587), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3587), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3587), - [anon_sym_MOZ_COLD] = ACTIONS(3587), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3587), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3587), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3587), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3587), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3587), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3587), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3587), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3587), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3587), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3587), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3587), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3587), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3587), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3587), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3587), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3587), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3587), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3587), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3587), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3587), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3587), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3587), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3587), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3587), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3587), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3587), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3587), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3587), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3587), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3587), - [anon_sym_MOZ_NONNULL] = ACTIONS(3587), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3587), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3587), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3587), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3587), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3587), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3587), - [anon_sym_MOZ_NORETURN] = ACTIONS(3587), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3587), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3587), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3587), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3587), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3587), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3587), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3587), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3587), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3587), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3587), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3587), - [anon_sym_MOZ_RAII] = ACTIONS(3587), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3587), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3587), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3587), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3587), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3587), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3587), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3587), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3587), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3587), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3587), - }, - [1328] = { - [sym_identifier] = ACTIONS(3591), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3593), - [anon_sym_COMMA] = ACTIONS(3593), - [anon_sym_RPAREN] = ACTIONS(3593), - [anon_sym_LPAREN2] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(3593), - [anon_sym_STAR] = ACTIONS(3593), - [anon_sym_AMP_AMP] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3591), - [anon_sym_SEMI] = ACTIONS(3593), - [anon_sym_extern] = ACTIONS(3591), - [anon_sym___attribute__] = ACTIONS(3591), - [anon_sym_COLON_COLON] = ACTIONS(3593), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3593), - [anon_sym___declspec] = ACTIONS(3591), - [anon_sym___based] = ACTIONS(3591), - [anon_sym_LBRACE] = ACTIONS(3593), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_EQ] = ACTIONS(3593), - [anon_sym_static] = ACTIONS(3591), - [anon_sym_register] = ACTIONS(3591), - [anon_sym_inline] = ACTIONS(3591), - [anon_sym_thread_local] = ACTIONS(3591), - [anon_sym_const] = ACTIONS(3591), - [anon_sym_volatile] = ACTIONS(3591), - [anon_sym_restrict] = ACTIONS(3591), - [anon_sym__Atomic] = ACTIONS(3591), - [anon_sym_mutable] = ACTIONS(3591), - [anon_sym_constexpr] = ACTIONS(3591), - [anon_sym_DASH_GT] = ACTIONS(3593), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3591), - [anon_sym_override] = ACTIONS(3591), - [anon_sym_virtual] = ACTIONS(3591), - [anon_sym_template] = ACTIONS(3591), - [anon_sym_GT2] = ACTIONS(3593), - [anon_sym_operator] = ACTIONS(3591), - [anon_sym_noexcept] = ACTIONS(3591), - [anon_sym_throw] = ACTIONS(3591), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3591), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3591), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3591), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3591), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3591), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3591), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3591), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3591), - [anon_sym_MOZ_COLD] = ACTIONS(3591), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3591), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3591), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3591), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3591), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3591), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3591), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3591), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3591), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3591), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3591), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3591), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3591), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3591), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3591), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3591), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3591), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3591), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3591), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3591), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3591), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3591), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3591), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3591), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3591), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3591), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3591), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3591), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3591), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3591), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3591), - [anon_sym_MOZ_NONNULL] = ACTIONS(3591), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3591), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3591), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3591), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3591), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3591), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3591), - [anon_sym_MOZ_NORETURN] = ACTIONS(3591), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3591), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3591), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3591), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3591), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3591), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3591), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3591), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3591), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3591), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3591), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3591), - [anon_sym_MOZ_RAII] = ACTIONS(3591), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3591), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3591), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3591), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3591), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3591), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3591), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3591), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3591), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3591), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3591), - }, - [1329] = { - [sym_identifier] = ACTIONS(3595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), - [anon_sym_COMMA] = ACTIONS(3597), - [anon_sym_RPAREN] = ACTIONS(3597), - [anon_sym_LPAREN2] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(3597), - [anon_sym_STAR] = ACTIONS(3597), - [anon_sym_AMP_AMP] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3595), - [anon_sym_SEMI] = ACTIONS(3597), - [anon_sym_extern] = ACTIONS(3595), - [anon_sym___attribute__] = ACTIONS(3595), - [anon_sym_COLON_COLON] = ACTIONS(3597), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3597), - [anon_sym___declspec] = ACTIONS(3595), - [anon_sym___based] = ACTIONS(3595), - [anon_sym_LBRACE] = ACTIONS(3597), - [anon_sym_LBRACK] = ACTIONS(3595), - [anon_sym_EQ] = ACTIONS(3597), - [anon_sym_static] = ACTIONS(3595), - [anon_sym_register] = ACTIONS(3595), - [anon_sym_inline] = ACTIONS(3595), - [anon_sym_thread_local] = ACTIONS(3595), - [anon_sym_const] = ACTIONS(3595), - [anon_sym_volatile] = ACTIONS(3595), - [anon_sym_restrict] = ACTIONS(3595), - [anon_sym__Atomic] = ACTIONS(3595), - [anon_sym_mutable] = ACTIONS(3595), - [anon_sym_constexpr] = ACTIONS(3595), - [anon_sym_DASH_GT] = ACTIONS(3597), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3595), - [anon_sym_override] = ACTIONS(3595), - [anon_sym_virtual] = ACTIONS(3595), - [anon_sym_template] = ACTIONS(3595), - [anon_sym_GT2] = ACTIONS(3597), - [anon_sym_operator] = ACTIONS(3595), - [anon_sym_noexcept] = ACTIONS(3595), - [anon_sym_throw] = ACTIONS(3595), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3595), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3595), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3595), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3595), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3595), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3595), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3595), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3595), - [anon_sym_MOZ_COLD] = ACTIONS(3595), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3595), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3595), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3595), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3595), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3595), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3595), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3595), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3595), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3595), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3595), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3595), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3595), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3595), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3595), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3595), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3595), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3595), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3595), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3595), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3595), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3595), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3595), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3595), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3595), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3595), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3595), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3595), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3595), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3595), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3595), - [anon_sym_MOZ_NONNULL] = ACTIONS(3595), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3595), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3595), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3595), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3595), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3595), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3595), - [anon_sym_MOZ_NORETURN] = ACTIONS(3595), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3595), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3595), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3595), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3595), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3595), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3595), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3595), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3595), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3595), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3595), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3595), - [anon_sym_MOZ_RAII] = ACTIONS(3595), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3595), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3595), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3595), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3595), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3595), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3595), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3595), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3595), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3595), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3595), - }, - [1330] = { - [sym_identifier] = ACTIONS(3599), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3601), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_RPAREN] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3601), - [anon_sym_STAR] = ACTIONS(3601), - [anon_sym_AMP_AMP] = ACTIONS(3601), - [anon_sym_AMP] = ACTIONS(3599), - [anon_sym_SEMI] = ACTIONS(3601), - [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_LBRACE] = ACTIONS(3601), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_EQ] = ACTIONS(3601), - [anon_sym_static] = ACTIONS(3599), - [anon_sym_register] = ACTIONS(3599), - [anon_sym_inline] = ACTIONS(3599), - [anon_sym_thread_local] = ACTIONS(3599), - [anon_sym_const] = ACTIONS(3599), - [anon_sym_volatile] = ACTIONS(3599), - [anon_sym_restrict] = ACTIONS(3599), - [anon_sym__Atomic] = ACTIONS(3599), - [anon_sym_mutable] = ACTIONS(3599), - [anon_sym_constexpr] = ACTIONS(3599), - [anon_sym_DASH_GT] = ACTIONS(3601), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3599), - [anon_sym_override] = ACTIONS(3599), - [anon_sym_virtual] = ACTIONS(3599), - [anon_sym_template] = ACTIONS(3599), - [anon_sym_GT2] = ACTIONS(3601), - [anon_sym_operator] = ACTIONS(3599), - [anon_sym_noexcept] = ACTIONS(3599), - [anon_sym_throw] = ACTIONS(3599), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3599), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3599), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3599), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3599), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3599), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3599), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3599), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3599), - [anon_sym_MOZ_COLD] = ACTIONS(3599), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3599), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3599), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3599), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3599), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3599), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3599), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3599), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3599), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3599), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3599), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3599), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3599), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3599), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3599), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3599), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3599), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3599), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3599), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3599), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3599), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3599), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3599), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3599), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3599), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3599), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3599), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3599), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3599), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3599), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3599), - [anon_sym_MOZ_NONNULL] = ACTIONS(3599), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3599), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3599), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3599), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3599), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3599), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3599), - [anon_sym_MOZ_NORETURN] = ACTIONS(3599), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3599), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3599), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3599), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3599), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3599), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3599), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3599), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3599), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3599), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3599), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3599), - [anon_sym_MOZ_RAII] = ACTIONS(3599), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3599), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3599), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3599), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3599), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3599), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3599), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3599), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3599), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3599), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3599), - }, - [1331] = { - [sym_identifier] = ACTIONS(3603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3605), - [anon_sym_COMMA] = ACTIONS(3605), - [anon_sym_RPAREN] = ACTIONS(3605), - [anon_sym_LPAREN2] = ACTIONS(3605), - [anon_sym_TILDE] = ACTIONS(3605), - [anon_sym_STAR] = ACTIONS(3605), - [anon_sym_AMP_AMP] = ACTIONS(3605), - [anon_sym_AMP] = ACTIONS(3603), - [anon_sym_SEMI] = ACTIONS(3605), - [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_LBRACE] = ACTIONS(3605), - [anon_sym_LBRACK] = ACTIONS(3603), - [anon_sym_EQ] = ACTIONS(3605), - [anon_sym_static] = ACTIONS(3603), - [anon_sym_register] = ACTIONS(3603), - [anon_sym_inline] = ACTIONS(3603), - [anon_sym_thread_local] = ACTIONS(3603), - [anon_sym_const] = ACTIONS(3603), - [anon_sym_volatile] = ACTIONS(3603), - [anon_sym_restrict] = ACTIONS(3603), - [anon_sym__Atomic] = ACTIONS(3603), - [anon_sym_mutable] = ACTIONS(3603), - [anon_sym_constexpr] = ACTIONS(3603), - [anon_sym_DASH_GT] = ACTIONS(3605), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3603), - [anon_sym_override] = ACTIONS(3603), - [anon_sym_virtual] = ACTIONS(3603), - [anon_sym_template] = ACTIONS(3603), - [anon_sym_GT2] = ACTIONS(3605), - [anon_sym_operator] = ACTIONS(3603), - [anon_sym_noexcept] = ACTIONS(3603), - [anon_sym_throw] = ACTIONS(3603), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3603), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3603), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3603), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3603), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3603), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3603), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3603), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3603), - [anon_sym_MOZ_COLD] = ACTIONS(3603), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3603), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3603), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3603), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3603), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3603), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3603), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3603), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3603), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3603), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3603), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3603), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3603), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3603), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3603), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3603), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3603), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3603), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3603), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3603), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3603), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3603), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3603), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3603), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3603), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3603), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3603), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3603), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3603), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3603), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3603), - [anon_sym_MOZ_NONNULL] = ACTIONS(3603), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3603), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3603), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3603), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3603), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3603), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3603), - [anon_sym_MOZ_NORETURN] = ACTIONS(3603), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3603), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3603), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3603), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3603), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3603), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3603), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3603), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3603), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3603), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3603), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3603), - [anon_sym_MOZ_RAII] = ACTIONS(3603), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3603), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3603), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3603), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3603), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3603), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3603), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3603), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3603), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3603), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3603), - }, - [1332] = { - [sym_identifier] = ACTIONS(3607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3609), - [anon_sym_COMMA] = ACTIONS(3609), - [anon_sym_RPAREN] = ACTIONS(3609), - [anon_sym_LPAREN2] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(3609), - [anon_sym_STAR] = ACTIONS(3609), - [anon_sym_AMP_AMP] = ACTIONS(3609), - [anon_sym_AMP] = ACTIONS(3607), - [anon_sym_SEMI] = ACTIONS(3609), - [anon_sym_extern] = ACTIONS(3607), - [anon_sym___attribute__] = ACTIONS(3607), - [anon_sym_COLON_COLON] = ACTIONS(3609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3609), - [anon_sym___declspec] = ACTIONS(3607), - [anon_sym___based] = ACTIONS(3607), - [anon_sym_LBRACE] = ACTIONS(3609), - [anon_sym_LBRACK] = ACTIONS(3607), - [anon_sym_EQ] = ACTIONS(3609), - [anon_sym_static] = ACTIONS(3607), - [anon_sym_register] = ACTIONS(3607), - [anon_sym_inline] = ACTIONS(3607), - [anon_sym_thread_local] = ACTIONS(3607), - [anon_sym_const] = ACTIONS(3607), - [anon_sym_volatile] = ACTIONS(3607), - [anon_sym_restrict] = ACTIONS(3607), - [anon_sym__Atomic] = ACTIONS(3607), - [anon_sym_mutable] = ACTIONS(3607), - [anon_sym_constexpr] = ACTIONS(3607), - [anon_sym_DASH_GT] = ACTIONS(3609), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3607), - [anon_sym_override] = ACTIONS(3607), - [anon_sym_virtual] = ACTIONS(3607), - [anon_sym_template] = ACTIONS(3607), - [anon_sym_GT2] = ACTIONS(3609), - [anon_sym_operator] = ACTIONS(3607), - [anon_sym_noexcept] = ACTIONS(3607), - [anon_sym_throw] = ACTIONS(3607), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3607), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3607), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3607), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3607), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3607), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3607), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3607), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3607), - [anon_sym_MOZ_COLD] = ACTIONS(3607), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3607), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3607), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3607), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3607), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3607), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3607), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3607), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3607), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3607), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3607), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3607), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3607), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3607), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3607), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3607), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3607), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3607), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3607), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3607), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3607), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3607), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3607), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3607), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3607), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3607), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3607), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3607), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3607), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3607), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3607), - [anon_sym_MOZ_NONNULL] = ACTIONS(3607), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3607), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3607), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3607), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3607), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3607), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3607), - [anon_sym_MOZ_NORETURN] = ACTIONS(3607), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3607), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3607), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3607), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3607), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3607), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3607), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3607), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3607), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3607), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3607), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3607), - [anon_sym_MOZ_RAII] = ACTIONS(3607), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3607), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3607), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3607), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3607), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3607), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3607), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3607), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3607), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3607), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3607), - }, - [1333] = { - [sym_identifier] = ACTIONS(3611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3613), - [anon_sym_COMMA] = ACTIONS(3613), - [anon_sym_RPAREN] = ACTIONS(3613), - [anon_sym_LPAREN2] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(3613), - [anon_sym_STAR] = ACTIONS(3613), - [anon_sym_AMP_AMP] = ACTIONS(3613), - [anon_sym_AMP] = ACTIONS(3611), - [anon_sym_SEMI] = ACTIONS(3613), - [anon_sym_extern] = ACTIONS(3611), - [anon_sym___attribute__] = ACTIONS(3611), - [anon_sym_COLON_COLON] = ACTIONS(3613), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3613), - [anon_sym___declspec] = ACTIONS(3611), - [anon_sym___based] = ACTIONS(3611), - [anon_sym_LBRACE] = ACTIONS(3613), - [anon_sym_LBRACK] = ACTIONS(3611), - [anon_sym_EQ] = ACTIONS(3613), - [anon_sym_static] = ACTIONS(3611), - [anon_sym_register] = ACTIONS(3611), - [anon_sym_inline] = ACTIONS(3611), - [anon_sym_thread_local] = ACTIONS(3611), - [anon_sym_const] = ACTIONS(3611), - [anon_sym_volatile] = ACTIONS(3611), - [anon_sym_restrict] = ACTIONS(3611), - [anon_sym__Atomic] = ACTIONS(3611), - [anon_sym_mutable] = ACTIONS(3611), - [anon_sym_constexpr] = ACTIONS(3611), - [anon_sym_DASH_GT] = ACTIONS(3613), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3611), - [anon_sym_override] = ACTIONS(3611), - [anon_sym_virtual] = ACTIONS(3611), - [anon_sym_template] = ACTIONS(3611), - [anon_sym_GT2] = ACTIONS(3613), - [anon_sym_operator] = ACTIONS(3611), - [anon_sym_noexcept] = ACTIONS(3611), - [anon_sym_throw] = ACTIONS(3611), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3611), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3611), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3611), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3611), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3611), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3611), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3611), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3611), - [anon_sym_MOZ_COLD] = ACTIONS(3611), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3611), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3611), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3611), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3611), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3611), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3611), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3611), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3611), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3611), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3611), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3611), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3611), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3611), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3611), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3611), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3611), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3611), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3611), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3611), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3611), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3611), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3611), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3611), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3611), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3611), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3611), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3611), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3611), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3611), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3611), - [anon_sym_MOZ_NONNULL] = ACTIONS(3611), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3611), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3611), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3611), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3611), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3611), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3611), - [anon_sym_MOZ_NORETURN] = ACTIONS(3611), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3611), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3611), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3611), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3611), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3611), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3611), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3611), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3611), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3611), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3611), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3611), - [anon_sym_MOZ_RAII] = ACTIONS(3611), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3611), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3611), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3611), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3611), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3611), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3611), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3611), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3611), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3611), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3611), - }, - [1334] = { - [sym_identifier] = ACTIONS(3615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3617), - [anon_sym_COMMA] = ACTIONS(3617), - [anon_sym_RPAREN] = ACTIONS(3617), - [anon_sym_LPAREN2] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(3617), - [anon_sym_STAR] = ACTIONS(3617), - [anon_sym_AMP_AMP] = ACTIONS(3617), - [anon_sym_AMP] = ACTIONS(3615), - [anon_sym_SEMI] = ACTIONS(3617), - [anon_sym_extern] = ACTIONS(3615), - [anon_sym___attribute__] = ACTIONS(3615), - [anon_sym_COLON_COLON] = ACTIONS(3617), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3617), - [anon_sym___declspec] = ACTIONS(3615), - [anon_sym___based] = ACTIONS(3615), - [anon_sym_LBRACE] = ACTIONS(3617), - [anon_sym_LBRACK] = ACTIONS(3615), - [anon_sym_EQ] = ACTIONS(3617), - [anon_sym_static] = ACTIONS(3615), - [anon_sym_register] = ACTIONS(3615), - [anon_sym_inline] = ACTIONS(3615), - [anon_sym_thread_local] = ACTIONS(3615), - [anon_sym_const] = ACTIONS(3615), - [anon_sym_volatile] = ACTIONS(3615), - [anon_sym_restrict] = ACTIONS(3615), - [anon_sym__Atomic] = ACTIONS(3615), - [anon_sym_mutable] = ACTIONS(3615), - [anon_sym_constexpr] = ACTIONS(3615), - [anon_sym_DASH_GT] = ACTIONS(3617), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3615), - [anon_sym_override] = ACTIONS(3615), - [anon_sym_virtual] = ACTIONS(3615), - [anon_sym_template] = ACTIONS(3615), - [anon_sym_GT2] = ACTIONS(3617), - [anon_sym_operator] = ACTIONS(3615), - [anon_sym_noexcept] = ACTIONS(3615), - [anon_sym_throw] = ACTIONS(3615), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3615), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3615), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3615), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3615), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3615), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3615), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3615), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3615), - [anon_sym_MOZ_COLD] = ACTIONS(3615), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3615), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3615), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3615), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3615), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3615), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3615), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3615), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3615), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3615), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3615), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3615), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3615), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3615), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3615), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3615), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3615), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3615), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3615), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3615), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3615), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3615), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3615), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3615), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3615), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3615), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3615), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3615), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3615), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3615), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3615), - [anon_sym_MOZ_NONNULL] = ACTIONS(3615), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3615), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3615), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3615), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3615), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3615), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3615), - [anon_sym_MOZ_NORETURN] = ACTIONS(3615), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3615), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3615), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3615), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3615), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3615), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3615), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3615), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3615), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3615), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3615), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3615), - [anon_sym_MOZ_RAII] = ACTIONS(3615), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3615), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3615), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3615), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3615), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3615), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3615), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3615), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3615), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3615), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3615), - }, - [1335] = { - [sym_identifier] = ACTIONS(3619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3621), - [anon_sym_COMMA] = ACTIONS(3621), - [anon_sym_RPAREN] = ACTIONS(3621), - [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_SEMI] = ACTIONS(3621), - [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_LBRACE] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3619), - [anon_sym_EQ] = ACTIONS(3621), - [anon_sym_static] = ACTIONS(3619), - [anon_sym_register] = ACTIONS(3619), - [anon_sym_inline] = ACTIONS(3619), - [anon_sym_thread_local] = ACTIONS(3619), - [anon_sym_const] = ACTIONS(3619), - [anon_sym_volatile] = ACTIONS(3619), - [anon_sym_restrict] = ACTIONS(3619), - [anon_sym__Atomic] = ACTIONS(3619), - [anon_sym_mutable] = ACTIONS(3619), - [anon_sym_constexpr] = ACTIONS(3619), - [anon_sym_DASH_GT] = ACTIONS(3621), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3619), - [anon_sym_override] = ACTIONS(3619), - [anon_sym_virtual] = ACTIONS(3619), - [anon_sym_template] = ACTIONS(3619), - [anon_sym_GT2] = ACTIONS(3621), - [anon_sym_operator] = ACTIONS(3619), - [anon_sym_noexcept] = ACTIONS(3619), - [anon_sym_throw] = ACTIONS(3619), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3619), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3619), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3619), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3619), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3619), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3619), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3619), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3619), - [anon_sym_MOZ_COLD] = ACTIONS(3619), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3619), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3619), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3619), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3619), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3619), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3619), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3619), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3619), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3619), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3619), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3619), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3619), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3619), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3619), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3619), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3619), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3619), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3619), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3619), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3619), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3619), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3619), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3619), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3619), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3619), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3619), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3619), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3619), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3619), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3619), - [anon_sym_MOZ_NONNULL] = ACTIONS(3619), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3619), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3619), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3619), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3619), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3619), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3619), - [anon_sym_MOZ_NORETURN] = ACTIONS(3619), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3619), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3619), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3619), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3619), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3619), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3619), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3619), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3619), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3619), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3619), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3619), - [anon_sym_MOZ_RAII] = ACTIONS(3619), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3619), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3619), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3619), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3619), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3619), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3619), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3619), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3619), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3619), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3619), - }, - [1336] = { - [sym_identifier] = ACTIONS(3623), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3625), - [anon_sym_COMMA] = ACTIONS(3625), - [anon_sym_RPAREN] = ACTIONS(3625), - [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_SEMI] = ACTIONS(3625), - [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_LBRACE] = ACTIONS(3625), - [anon_sym_LBRACK] = ACTIONS(3623), - [anon_sym_EQ] = ACTIONS(3625), - [anon_sym_static] = ACTIONS(3623), - [anon_sym_register] = ACTIONS(3623), - [anon_sym_inline] = ACTIONS(3623), - [anon_sym_thread_local] = ACTIONS(3623), - [anon_sym_const] = ACTIONS(3623), - [anon_sym_volatile] = ACTIONS(3623), - [anon_sym_restrict] = ACTIONS(3623), - [anon_sym__Atomic] = ACTIONS(3623), - [anon_sym_mutable] = ACTIONS(3623), - [anon_sym_constexpr] = ACTIONS(3623), - [anon_sym_DASH_GT] = ACTIONS(3625), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3623), - [anon_sym_override] = ACTIONS(3623), - [anon_sym_virtual] = ACTIONS(3623), - [anon_sym_template] = ACTIONS(3623), - [anon_sym_GT2] = ACTIONS(3625), - [anon_sym_operator] = ACTIONS(3623), - [anon_sym_noexcept] = ACTIONS(3623), - [anon_sym_throw] = ACTIONS(3623), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3623), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3623), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3623), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3623), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3623), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3623), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3623), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3623), - [anon_sym_MOZ_COLD] = ACTIONS(3623), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3623), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3623), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3623), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3623), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3623), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3623), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3623), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3623), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3623), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3623), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3623), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3623), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3623), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3623), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3623), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3623), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3623), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3623), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3623), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3623), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3623), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3623), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3623), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3623), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3623), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3623), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3623), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3623), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3623), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3623), - [anon_sym_MOZ_NONNULL] = ACTIONS(3623), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3623), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3623), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3623), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3623), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3623), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3623), - [anon_sym_MOZ_NORETURN] = ACTIONS(3623), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3623), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3623), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3623), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3623), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3623), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3623), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3623), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3623), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3623), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3623), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3623), - [anon_sym_MOZ_RAII] = ACTIONS(3623), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3623), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3623), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3623), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3623), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3623), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3623), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3623), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3623), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3623), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3623), - }, - [1337] = { - [sym_identifier] = ACTIONS(3627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3629), - [anon_sym_COMMA] = ACTIONS(3629), - [anon_sym_RPAREN] = ACTIONS(3629), - [anon_sym_LPAREN2] = ACTIONS(3629), - [anon_sym_TILDE] = ACTIONS(3629), - [anon_sym_STAR] = ACTIONS(3629), - [anon_sym_AMP_AMP] = ACTIONS(3629), - [anon_sym_AMP] = ACTIONS(3627), - [anon_sym_SEMI] = ACTIONS(3629), - [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_LBRACE] = ACTIONS(3629), - [anon_sym_LBRACK] = ACTIONS(3627), - [anon_sym_EQ] = ACTIONS(3629), - [anon_sym_static] = ACTIONS(3627), - [anon_sym_register] = ACTIONS(3627), - [anon_sym_inline] = ACTIONS(3627), - [anon_sym_thread_local] = ACTIONS(3627), - [anon_sym_const] = ACTIONS(3627), - [anon_sym_volatile] = ACTIONS(3627), - [anon_sym_restrict] = ACTIONS(3627), - [anon_sym__Atomic] = ACTIONS(3627), - [anon_sym_mutable] = ACTIONS(3627), - [anon_sym_constexpr] = ACTIONS(3627), - [anon_sym_DASH_GT] = ACTIONS(3629), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3627), - [anon_sym_override] = ACTIONS(3627), - [anon_sym_virtual] = ACTIONS(3627), - [anon_sym_template] = ACTIONS(3627), - [anon_sym_GT2] = ACTIONS(3629), - [anon_sym_operator] = ACTIONS(3627), - [anon_sym_noexcept] = ACTIONS(3627), - [anon_sym_throw] = ACTIONS(3627), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3627), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3627), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3627), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3627), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3627), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3627), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3627), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3627), - [anon_sym_MOZ_COLD] = ACTIONS(3627), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3627), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3627), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3627), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3627), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3627), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3627), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3627), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3627), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3627), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3627), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3627), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3627), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3627), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3627), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3627), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3627), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3627), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3627), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3627), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3627), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3627), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3627), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3627), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3627), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3627), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3627), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3627), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3627), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3627), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3627), - [anon_sym_MOZ_NONNULL] = ACTIONS(3627), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3627), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3627), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3627), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3627), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3627), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3627), - [anon_sym_MOZ_NORETURN] = ACTIONS(3627), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3627), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3627), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3627), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3627), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3627), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3627), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3627), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3627), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3627), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3627), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3627), - [anon_sym_MOZ_RAII] = ACTIONS(3627), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3627), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3627), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3627), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3627), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3627), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3627), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3627), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3627), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3627), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3627), - }, - [1338] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1268), - [sym_identifier] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_RPAREN] = ACTIONS(3463), - [anon_sym_LPAREN2] = ACTIONS(3463), - [anon_sym_STAR] = ACTIONS(3463), - [anon_sym_AMP_AMP] = ACTIONS(3463), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_SEMI] = ACTIONS(3463), - [anon_sym_extern] = ACTIONS(3465), - [anon_sym___attribute__] = ACTIONS(3465), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3463), - [anon_sym___declspec] = ACTIONS(3465), - [anon_sym_LBRACE] = ACTIONS(3463), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_EQ] = ACTIONS(3463), - [anon_sym_static] = ACTIONS(3465), - [anon_sym_register] = ACTIONS(3465), - [anon_sym_inline] = ACTIONS(3465), - [anon_sym_thread_local] = ACTIONS(3465), - [anon_sym_const] = ACTIONS(3465), - [anon_sym_volatile] = ACTIONS(3465), - [anon_sym_restrict] = ACTIONS(3465), - [anon_sym__Atomic] = ACTIONS(3465), - [anon_sym_mutable] = ACTIONS(3465), - [anon_sym_constexpr] = ACTIONS(3465), - [anon_sym_signed] = ACTIONS(3467), - [anon_sym_unsigned] = ACTIONS(3467), - [anon_sym_long] = ACTIONS(3467), - [anon_sym_short] = ACTIONS(3467), - [sym_primitive_type] = ACTIONS(3469), - [anon_sym_DASH_GT] = ACTIONS(3463), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3465), - [anon_sym_override] = ACTIONS(3465), - [anon_sym_virtual] = ACTIONS(3465), - [anon_sym_GT2] = ACTIONS(3463), - [anon_sym_noexcept] = ACTIONS(3465), - [anon_sym_throw] = ACTIONS(3465), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3465), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3465), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3465), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3465), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3465), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3465), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3465), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3465), - [anon_sym_MOZ_COLD] = ACTIONS(3465), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3465), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3465), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3465), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3465), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3465), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3465), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3465), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3465), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3465), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3465), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3465), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3465), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3465), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3465), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3465), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3465), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3465), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3465), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3465), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3465), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_NONNULL] = ACTIONS(3465), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3465), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3465), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3465), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3465), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3465), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_NORETURN] = ACTIONS(3465), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3465), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3465), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3465), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3465), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3465), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3465), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3465), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3465), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3465), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3465), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3465), - [anon_sym_MOZ_RAII] = ACTIONS(3465), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3465), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3465), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3465), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3465), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3465), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3465), - }, - [1339] = { - [sym_identifier] = ACTIONS(3633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3635), - [anon_sym_COMMA] = ACTIONS(3635), - [anon_sym_RPAREN] = ACTIONS(3635), - [anon_sym_LPAREN2] = ACTIONS(3635), - [anon_sym_TILDE] = ACTIONS(3635), - [anon_sym_STAR] = ACTIONS(3635), - [anon_sym_AMP_AMP] = ACTIONS(3635), - [anon_sym_AMP] = ACTIONS(3633), - [anon_sym_SEMI] = ACTIONS(3635), - [anon_sym_extern] = ACTIONS(3633), - [anon_sym___attribute__] = ACTIONS(3633), - [anon_sym_COLON_COLON] = ACTIONS(3635), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3635), - [anon_sym___declspec] = ACTIONS(3633), - [anon_sym___based] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_LBRACK] = ACTIONS(3633), - [anon_sym_EQ] = ACTIONS(3635), - [anon_sym_static] = ACTIONS(3633), - [anon_sym_register] = ACTIONS(3633), - [anon_sym_inline] = ACTIONS(3633), - [anon_sym_thread_local] = ACTIONS(3633), - [anon_sym_const] = ACTIONS(3633), - [anon_sym_volatile] = ACTIONS(3633), - [anon_sym_restrict] = ACTIONS(3633), - [anon_sym__Atomic] = ACTIONS(3633), - [anon_sym_mutable] = ACTIONS(3633), - [anon_sym_constexpr] = ACTIONS(3633), - [anon_sym_DASH_GT] = ACTIONS(3635), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3633), - [anon_sym_override] = ACTIONS(3633), - [anon_sym_virtual] = ACTIONS(3633), - [anon_sym_template] = ACTIONS(3633), - [anon_sym_GT2] = ACTIONS(3635), - [anon_sym_operator] = ACTIONS(3633), - [anon_sym_noexcept] = ACTIONS(3633), - [anon_sym_throw] = ACTIONS(3633), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3633), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3633), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3633), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3633), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3633), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3633), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3633), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3633), - [anon_sym_MOZ_COLD] = ACTIONS(3633), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3633), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3633), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3633), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3633), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3633), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3633), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3633), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3633), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3633), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3633), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3633), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3633), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3633), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3633), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3633), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3633), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3633), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3633), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3633), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3633), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3633), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3633), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3633), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3633), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3633), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3633), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3633), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3633), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3633), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3633), - [anon_sym_MOZ_NONNULL] = ACTIONS(3633), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3633), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3633), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3633), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3633), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3633), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3633), - [anon_sym_MOZ_NORETURN] = ACTIONS(3633), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3633), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3633), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3633), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3633), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3633), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3633), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3633), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3633), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3633), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3633), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3633), - [anon_sym_MOZ_RAII] = ACTIONS(3633), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3633), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3633), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3633), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3633), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3633), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3633), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3633), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3633), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3633), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3633), - }, - [1340] = { - [sym_identifier] = ACTIONS(3637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3639), - [anon_sym_COMMA] = ACTIONS(3639), - [anon_sym_RPAREN] = ACTIONS(3639), - [anon_sym_LPAREN2] = ACTIONS(3639), - [anon_sym_TILDE] = ACTIONS(3639), - [anon_sym_STAR] = ACTIONS(3639), - [anon_sym_AMP_AMP] = ACTIONS(3639), - [anon_sym_AMP] = ACTIONS(3637), - [anon_sym_SEMI] = ACTIONS(3639), - [anon_sym_extern] = ACTIONS(3637), - [anon_sym___attribute__] = ACTIONS(3637), - [anon_sym_COLON_COLON] = ACTIONS(3639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3639), - [anon_sym___declspec] = ACTIONS(3637), - [anon_sym___based] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3637), - [anon_sym_EQ] = ACTIONS(3639), - [anon_sym_static] = ACTIONS(3637), - [anon_sym_register] = ACTIONS(3637), - [anon_sym_inline] = ACTIONS(3637), - [anon_sym_thread_local] = ACTIONS(3637), - [anon_sym_const] = ACTIONS(3637), - [anon_sym_volatile] = ACTIONS(3637), - [anon_sym_restrict] = ACTIONS(3637), - [anon_sym__Atomic] = ACTIONS(3637), - [anon_sym_mutable] = ACTIONS(3637), - [anon_sym_constexpr] = ACTIONS(3637), - [anon_sym_DASH_GT] = ACTIONS(3639), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3637), - [anon_sym_override] = ACTIONS(3637), - [anon_sym_virtual] = ACTIONS(3637), - [anon_sym_template] = ACTIONS(3637), - [anon_sym_GT2] = ACTIONS(3639), - [anon_sym_operator] = ACTIONS(3637), - [anon_sym_noexcept] = ACTIONS(3637), - [anon_sym_throw] = ACTIONS(3637), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3637), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3637), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3637), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3637), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3637), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3637), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3637), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3637), - [anon_sym_MOZ_COLD] = ACTIONS(3637), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3637), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3637), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3637), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3637), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3637), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3637), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3637), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3637), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3637), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3637), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3637), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3637), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3637), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3637), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3637), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3637), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3637), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3637), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3637), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3637), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3637), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3637), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3637), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3637), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3637), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3637), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3637), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3637), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3637), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3637), - [anon_sym_MOZ_NONNULL] = ACTIONS(3637), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3637), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3637), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3637), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3637), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3637), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3637), - [anon_sym_MOZ_NORETURN] = ACTIONS(3637), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3637), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3637), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3637), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3637), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3637), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3637), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3637), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3637), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3637), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3637), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3637), - [anon_sym_MOZ_RAII] = ACTIONS(3637), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3637), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3637), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3637), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3637), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3637), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3637), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3637), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3637), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3637), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3637), - }, - [1341] = { - [sym_identifier] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3643), - [anon_sym_RPAREN] = ACTIONS(3643), - [anon_sym_LPAREN2] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3643), - [anon_sym_STAR] = ACTIONS(3643), - [anon_sym_AMP_AMP] = ACTIONS(3643), - [anon_sym_AMP] = ACTIONS(3641), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym_extern] = ACTIONS(3641), - [anon_sym___attribute__] = ACTIONS(3641), - [anon_sym_COLON_COLON] = ACTIONS(3643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3643), - [anon_sym___declspec] = ACTIONS(3641), - [anon_sym___based] = ACTIONS(3641), - [anon_sym_LBRACE] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_EQ] = ACTIONS(3643), - [anon_sym_static] = ACTIONS(3641), - [anon_sym_register] = ACTIONS(3641), - [anon_sym_inline] = ACTIONS(3641), - [anon_sym_thread_local] = ACTIONS(3641), - [anon_sym_const] = ACTIONS(3641), - [anon_sym_volatile] = ACTIONS(3641), - [anon_sym_restrict] = ACTIONS(3641), - [anon_sym__Atomic] = ACTIONS(3641), - [anon_sym_mutable] = ACTIONS(3641), - [anon_sym_constexpr] = ACTIONS(3641), - [anon_sym_DASH_GT] = ACTIONS(3643), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3641), - [anon_sym_override] = ACTIONS(3641), - [anon_sym_virtual] = ACTIONS(3641), - [anon_sym_template] = ACTIONS(3641), - [anon_sym_GT2] = ACTIONS(3643), - [anon_sym_operator] = ACTIONS(3641), - [anon_sym_noexcept] = ACTIONS(3641), - [anon_sym_throw] = ACTIONS(3641), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3641), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3641), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3641), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3641), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3641), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3641), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3641), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3641), - [anon_sym_MOZ_COLD] = ACTIONS(3641), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3641), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3641), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3641), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3641), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3641), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3641), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3641), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3641), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3641), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3641), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3641), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3641), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3641), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3641), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3641), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3641), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3641), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3641), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3641), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3641), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3641), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3641), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3641), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3641), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3641), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3641), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3641), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3641), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3641), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3641), - [anon_sym_MOZ_NONNULL] = ACTIONS(3641), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3641), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3641), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3641), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3641), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3641), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3641), - [anon_sym_MOZ_NORETURN] = ACTIONS(3641), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3641), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3641), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3641), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3641), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3641), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3641), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3641), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3641), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3641), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3641), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3641), - [anon_sym_MOZ_RAII] = ACTIONS(3641), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3641), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3641), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3641), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3641), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3641), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3641), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3641), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3641), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3641), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3641), - }, - [1342] = { - [sym_identifier] = ACTIONS(3645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3647), - [anon_sym_COMMA] = ACTIONS(3647), - [anon_sym_RPAREN] = ACTIONS(3647), - [anon_sym_LPAREN2] = ACTIONS(3647), - [anon_sym_TILDE] = ACTIONS(3647), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_AMP_AMP] = ACTIONS(3647), - [anon_sym_AMP] = ACTIONS(3645), - [anon_sym_SEMI] = ACTIONS(3647), - [anon_sym_extern] = ACTIONS(3645), - [anon_sym___attribute__] = ACTIONS(3645), - [anon_sym_COLON_COLON] = ACTIONS(3647), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3647), - [anon_sym___declspec] = ACTIONS(3645), - [anon_sym___based] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3647), - [anon_sym_LBRACK] = ACTIONS(3645), - [anon_sym_EQ] = ACTIONS(3647), - [anon_sym_static] = ACTIONS(3645), - [anon_sym_register] = ACTIONS(3645), - [anon_sym_inline] = ACTIONS(3645), - [anon_sym_thread_local] = ACTIONS(3645), - [anon_sym_const] = ACTIONS(3645), - [anon_sym_volatile] = ACTIONS(3645), - [anon_sym_restrict] = ACTIONS(3645), - [anon_sym__Atomic] = ACTIONS(3645), - [anon_sym_mutable] = ACTIONS(3645), - [anon_sym_constexpr] = ACTIONS(3645), - [anon_sym_DASH_GT] = ACTIONS(3647), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3645), - [anon_sym_override] = ACTIONS(3645), - [anon_sym_virtual] = ACTIONS(3645), - [anon_sym_template] = ACTIONS(3645), - [anon_sym_GT2] = ACTIONS(3647), - [anon_sym_operator] = ACTIONS(3645), - [anon_sym_noexcept] = ACTIONS(3645), - [anon_sym_throw] = ACTIONS(3645), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3645), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3645), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3645), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3645), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3645), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3645), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3645), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3645), - [anon_sym_MOZ_COLD] = ACTIONS(3645), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3645), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3645), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3645), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3645), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3645), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3645), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3645), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3645), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3645), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3645), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3645), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3645), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3645), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3645), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3645), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3645), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3645), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3645), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3645), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3645), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3645), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3645), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3645), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3645), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3645), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3645), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3645), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3645), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3645), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3645), - [anon_sym_MOZ_NONNULL] = ACTIONS(3645), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3645), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3645), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3645), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3645), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3645), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3645), - [anon_sym_MOZ_NORETURN] = ACTIONS(3645), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3645), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3645), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3645), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3645), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3645), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3645), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3645), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3645), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3645), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3645), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3645), - [anon_sym_MOZ_RAII] = ACTIONS(3645), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3645), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3645), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3645), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3645), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3645), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3645), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3645), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3645), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3645), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3645), - }, - [1343] = { - [sym_identifier] = ACTIONS(3649), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_RPAREN] = ACTIONS(3651), - [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_SEMI] = ACTIONS(3651), - [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_LBRACE] = ACTIONS(3651), - [anon_sym_LBRACK] = ACTIONS(3649), - [anon_sym_EQ] = ACTIONS(3651), - [anon_sym_static] = ACTIONS(3649), - [anon_sym_register] = ACTIONS(3649), - [anon_sym_inline] = ACTIONS(3649), - [anon_sym_thread_local] = ACTIONS(3649), - [anon_sym_const] = ACTIONS(3649), - [anon_sym_volatile] = ACTIONS(3649), - [anon_sym_restrict] = ACTIONS(3649), - [anon_sym__Atomic] = ACTIONS(3649), - [anon_sym_mutable] = ACTIONS(3649), - [anon_sym_constexpr] = ACTIONS(3649), - [anon_sym_DASH_GT] = ACTIONS(3651), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3649), - [anon_sym_override] = ACTIONS(3649), - [anon_sym_virtual] = ACTIONS(3649), - [anon_sym_template] = ACTIONS(3649), - [anon_sym_GT2] = ACTIONS(3651), - [anon_sym_operator] = ACTIONS(3649), - [anon_sym_noexcept] = ACTIONS(3649), - [anon_sym_throw] = ACTIONS(3649), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3649), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3649), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3649), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3649), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3649), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3649), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3649), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3649), - [anon_sym_MOZ_COLD] = ACTIONS(3649), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3649), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3649), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3649), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3649), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3649), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3649), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3649), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3649), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3649), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3649), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3649), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3649), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3649), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3649), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3649), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3649), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3649), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3649), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3649), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3649), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3649), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3649), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3649), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3649), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3649), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3649), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3649), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3649), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3649), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3649), - [anon_sym_MOZ_NONNULL] = ACTIONS(3649), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3649), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3649), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3649), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3649), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3649), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3649), - [anon_sym_MOZ_NORETURN] = ACTIONS(3649), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3649), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3649), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3649), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3649), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3649), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3649), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3649), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3649), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3649), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3649), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3649), - [anon_sym_MOZ_RAII] = ACTIONS(3649), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3649), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3649), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3649), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3649), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3649), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3649), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3649), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3649), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3649), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3649), - }, - [1344] = { - [sym_identifier] = ACTIONS(3653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3655), - [anon_sym_RPAREN] = ACTIONS(3655), - [anon_sym_LPAREN2] = ACTIONS(3655), - [anon_sym_TILDE] = ACTIONS(3655), - [anon_sym_STAR] = ACTIONS(3655), - [anon_sym_AMP_AMP] = ACTIONS(3655), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_SEMI] = ACTIONS(3655), - [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_LBRACE] = ACTIONS(3655), - [anon_sym_LBRACK] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3655), - [anon_sym_static] = ACTIONS(3653), - [anon_sym_register] = ACTIONS(3653), - [anon_sym_inline] = ACTIONS(3653), - [anon_sym_thread_local] = ACTIONS(3653), - [anon_sym_const] = ACTIONS(3653), - [anon_sym_volatile] = ACTIONS(3653), - [anon_sym_restrict] = ACTIONS(3653), - [anon_sym__Atomic] = ACTIONS(3653), - [anon_sym_mutable] = ACTIONS(3653), - [anon_sym_constexpr] = ACTIONS(3653), - [anon_sym_DASH_GT] = ACTIONS(3655), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3653), - [anon_sym_override] = ACTIONS(3653), - [anon_sym_virtual] = ACTIONS(3653), - [anon_sym_template] = ACTIONS(3653), - [anon_sym_GT2] = ACTIONS(3655), - [anon_sym_operator] = ACTIONS(3653), - [anon_sym_noexcept] = ACTIONS(3653), - [anon_sym_throw] = ACTIONS(3653), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3653), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3653), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3653), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3653), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3653), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3653), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3653), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3653), - [anon_sym_MOZ_COLD] = ACTIONS(3653), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3653), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3653), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3653), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3653), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3653), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3653), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3653), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3653), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3653), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3653), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3653), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3653), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3653), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3653), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3653), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3653), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3653), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3653), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3653), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3653), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3653), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3653), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3653), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3653), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3653), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3653), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3653), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3653), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3653), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3653), - [anon_sym_MOZ_NONNULL] = ACTIONS(3653), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3653), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3653), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3653), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3653), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3653), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3653), - [anon_sym_MOZ_NORETURN] = ACTIONS(3653), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3653), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3653), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3653), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3653), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3653), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3653), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3653), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3653), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3653), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3653), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3653), - [anon_sym_MOZ_RAII] = ACTIONS(3653), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3653), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3653), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3653), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3653), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3653), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3653), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3653), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3653), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3653), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3653), - }, - [1345] = { - [sym_identifier] = ACTIONS(3657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3659), - [anon_sym_COMMA] = ACTIONS(3659), - [anon_sym_RPAREN] = ACTIONS(3659), - [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_SEMI] = ACTIONS(3659), - [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_LBRACE] = ACTIONS(3659), - [anon_sym_LBRACK] = ACTIONS(3657), - [anon_sym_EQ] = ACTIONS(3659), - [anon_sym_static] = ACTIONS(3657), - [anon_sym_register] = ACTIONS(3657), - [anon_sym_inline] = ACTIONS(3657), - [anon_sym_thread_local] = ACTIONS(3657), - [anon_sym_const] = ACTIONS(3657), - [anon_sym_volatile] = ACTIONS(3657), - [anon_sym_restrict] = ACTIONS(3657), - [anon_sym__Atomic] = ACTIONS(3657), - [anon_sym_mutable] = ACTIONS(3657), - [anon_sym_constexpr] = ACTIONS(3657), - [anon_sym_DASH_GT] = ACTIONS(3659), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3657), - [anon_sym_override] = ACTIONS(3657), - [anon_sym_virtual] = ACTIONS(3657), - [anon_sym_template] = ACTIONS(3657), - [anon_sym_GT2] = ACTIONS(3659), - [anon_sym_operator] = ACTIONS(3657), - [anon_sym_noexcept] = ACTIONS(3657), - [anon_sym_throw] = ACTIONS(3657), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3657), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3657), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3657), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3657), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3657), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3657), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3657), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3657), - [anon_sym_MOZ_COLD] = ACTIONS(3657), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3657), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3657), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3657), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3657), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3657), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3657), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3657), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3657), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3657), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3657), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3657), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3657), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3657), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3657), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3657), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3657), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3657), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3657), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3657), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3657), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3657), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3657), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3657), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3657), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3657), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3657), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3657), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3657), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3657), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3657), - [anon_sym_MOZ_NONNULL] = ACTIONS(3657), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3657), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3657), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3657), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3657), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3657), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3657), - [anon_sym_MOZ_NORETURN] = ACTIONS(3657), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3657), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3657), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3657), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3657), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3657), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3657), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3657), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3657), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3657), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3657), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3657), - [anon_sym_MOZ_RAII] = ACTIONS(3657), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3657), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3657), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3657), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3657), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3657), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3657), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3657), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3657), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3657), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3657), - }, - [1346] = { - [sym_identifier] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3663), - [anon_sym_COMMA] = ACTIONS(3663), - [anon_sym_RPAREN] = ACTIONS(3663), - [anon_sym_LPAREN2] = ACTIONS(3663), - [anon_sym_TILDE] = ACTIONS(3663), - [anon_sym_STAR] = ACTIONS(3663), - [anon_sym_AMP_AMP] = ACTIONS(3663), - [anon_sym_AMP] = ACTIONS(3661), - [anon_sym_SEMI] = ACTIONS(3663), - [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_LBRACE] = ACTIONS(3663), - [anon_sym_LBRACK] = ACTIONS(3661), - [anon_sym_EQ] = ACTIONS(3663), - [anon_sym_static] = ACTIONS(3661), - [anon_sym_register] = ACTIONS(3661), - [anon_sym_inline] = ACTIONS(3661), - [anon_sym_thread_local] = ACTIONS(3661), - [anon_sym_const] = ACTIONS(3661), - [anon_sym_volatile] = ACTIONS(3661), - [anon_sym_restrict] = ACTIONS(3661), - [anon_sym__Atomic] = ACTIONS(3661), - [anon_sym_mutable] = ACTIONS(3661), - [anon_sym_constexpr] = ACTIONS(3661), - [anon_sym_DASH_GT] = ACTIONS(3663), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3661), - [anon_sym_override] = ACTIONS(3661), - [anon_sym_virtual] = ACTIONS(3661), - [anon_sym_template] = ACTIONS(3661), - [anon_sym_GT2] = ACTIONS(3663), - [anon_sym_operator] = ACTIONS(3661), - [anon_sym_noexcept] = ACTIONS(3661), - [anon_sym_throw] = ACTIONS(3661), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3661), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3661), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3661), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3661), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3661), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3661), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3661), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3661), - [anon_sym_MOZ_COLD] = ACTIONS(3661), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3661), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3661), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3661), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3661), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3661), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3661), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3661), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3661), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3661), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3661), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3661), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3661), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3661), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3661), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3661), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3661), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3661), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3661), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3661), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3661), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3661), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3661), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3661), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3661), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3661), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3661), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3661), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3661), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3661), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3661), - [anon_sym_MOZ_NONNULL] = ACTIONS(3661), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3661), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3661), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3661), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3661), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3661), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3661), - [anon_sym_MOZ_NORETURN] = ACTIONS(3661), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3661), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3661), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3661), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3661), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3661), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3661), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3661), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3661), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3661), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3661), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3661), - [anon_sym_MOZ_RAII] = ACTIONS(3661), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3661), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3661), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3661), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3661), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3661), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3661), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3661), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3661), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3661), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3661), - }, - [1347] = { - [sym_identifier] = ACTIONS(3665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3667), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_RPAREN] = ACTIONS(3667), - [anon_sym_LPAREN2] = ACTIONS(3667), - [anon_sym_TILDE] = ACTIONS(3667), - [anon_sym_STAR] = ACTIONS(3667), - [anon_sym_AMP_AMP] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SEMI] = ACTIONS(3667), - [anon_sym_extern] = ACTIONS(3665), - [anon_sym___attribute__] = ACTIONS(3665), - [anon_sym_COLON_COLON] = ACTIONS(3667), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3667), - [anon_sym___declspec] = ACTIONS(3665), - [anon_sym___based] = ACTIONS(3665), - [anon_sym_LBRACE] = ACTIONS(3667), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_static] = ACTIONS(3665), - [anon_sym_register] = ACTIONS(3665), - [anon_sym_inline] = ACTIONS(3665), - [anon_sym_thread_local] = ACTIONS(3665), - [anon_sym_const] = ACTIONS(3665), - [anon_sym_volatile] = ACTIONS(3665), - [anon_sym_restrict] = ACTIONS(3665), - [anon_sym__Atomic] = ACTIONS(3665), - [anon_sym_mutable] = ACTIONS(3665), - [anon_sym_constexpr] = ACTIONS(3665), - [anon_sym_DASH_GT] = ACTIONS(3667), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3665), - [anon_sym_override] = ACTIONS(3665), - [anon_sym_virtual] = ACTIONS(3665), - [anon_sym_template] = ACTIONS(3665), - [anon_sym_GT2] = ACTIONS(3667), - [anon_sym_operator] = ACTIONS(3665), - [anon_sym_noexcept] = ACTIONS(3665), - [anon_sym_throw] = ACTIONS(3665), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3665), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3665), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3665), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3665), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3665), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3665), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3665), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3665), - [anon_sym_MOZ_COLD] = ACTIONS(3665), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3665), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3665), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3665), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3665), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3665), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3665), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3665), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3665), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3665), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3665), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3665), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3665), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3665), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3665), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3665), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3665), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3665), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3665), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3665), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3665), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3665), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3665), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3665), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3665), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3665), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3665), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3665), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3665), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3665), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3665), - [anon_sym_MOZ_NONNULL] = ACTIONS(3665), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3665), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3665), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3665), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3665), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3665), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3665), - [anon_sym_MOZ_NORETURN] = ACTIONS(3665), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3665), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3665), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3665), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3665), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3665), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3665), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3665), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3665), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3665), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3665), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3665), - [anon_sym_MOZ_RAII] = ACTIONS(3665), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3665), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3665), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3665), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3665), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3665), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3665), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3665), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3665), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3665), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3665), - }, - [1348] = { - [sym_identifier] = ACTIONS(3669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3671), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_RPAREN] = ACTIONS(3671), - [anon_sym_LPAREN2] = ACTIONS(3671), - [anon_sym_TILDE] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3671), - [anon_sym_AMP_AMP] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3669), - [anon_sym_SEMI] = ACTIONS(3671), - [anon_sym_extern] = ACTIONS(3669), - [anon_sym___attribute__] = ACTIONS(3669), - [anon_sym_COLON_COLON] = ACTIONS(3671), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3671), - [anon_sym___declspec] = ACTIONS(3669), - [anon_sym___based] = ACTIONS(3669), - [anon_sym_LBRACE] = ACTIONS(3671), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_static] = ACTIONS(3669), - [anon_sym_register] = ACTIONS(3669), - [anon_sym_inline] = ACTIONS(3669), - [anon_sym_thread_local] = ACTIONS(3669), - [anon_sym_const] = ACTIONS(3669), - [anon_sym_volatile] = ACTIONS(3669), - [anon_sym_restrict] = ACTIONS(3669), - [anon_sym__Atomic] = ACTIONS(3669), - [anon_sym_mutable] = ACTIONS(3669), - [anon_sym_constexpr] = ACTIONS(3669), - [anon_sym_DASH_GT] = ACTIONS(3671), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3669), - [anon_sym_override] = ACTIONS(3669), - [anon_sym_virtual] = ACTIONS(3669), - [anon_sym_template] = ACTIONS(3669), - [anon_sym_GT2] = ACTIONS(3671), - [anon_sym_operator] = ACTIONS(3669), - [anon_sym_noexcept] = ACTIONS(3669), - [anon_sym_throw] = ACTIONS(3669), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3669), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3669), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3669), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3669), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3669), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3669), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3669), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3669), - [anon_sym_MOZ_COLD] = ACTIONS(3669), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3669), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3669), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3669), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3669), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3669), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3669), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3669), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3669), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3669), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3669), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3669), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3669), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3669), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3669), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3669), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3669), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3669), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3669), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3669), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3669), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3669), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3669), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3669), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3669), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3669), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3669), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3669), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3669), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3669), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3669), - [anon_sym_MOZ_NONNULL] = ACTIONS(3669), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3669), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3669), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3669), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3669), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3669), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3669), - [anon_sym_MOZ_NORETURN] = ACTIONS(3669), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3669), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3669), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3669), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3669), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3669), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3669), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3669), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3669), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3669), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3669), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3669), - [anon_sym_MOZ_RAII] = ACTIONS(3669), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3669), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3669), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3669), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3669), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3669), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3669), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3669), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3669), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3669), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3669), - }, - [1349] = { - [sym_identifier] = ACTIONS(3673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3675), - [anon_sym_COMMA] = ACTIONS(3675), - [anon_sym_RPAREN] = ACTIONS(3675), - [anon_sym_LPAREN2] = ACTIONS(3675), - [anon_sym_TILDE] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3675), - [anon_sym_AMP_AMP] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3673), - [anon_sym_SEMI] = ACTIONS(3675), - [anon_sym_extern] = ACTIONS(3673), - [anon_sym___attribute__] = ACTIONS(3673), - [anon_sym_COLON_COLON] = ACTIONS(3675), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3675), - [anon_sym___declspec] = ACTIONS(3673), - [anon_sym___based] = ACTIONS(3673), - [anon_sym_LBRACE] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_EQ] = ACTIONS(3675), - [anon_sym_static] = ACTIONS(3673), - [anon_sym_register] = ACTIONS(3673), - [anon_sym_inline] = ACTIONS(3673), - [anon_sym_thread_local] = ACTIONS(3673), - [anon_sym_const] = ACTIONS(3673), - [anon_sym_volatile] = ACTIONS(3673), - [anon_sym_restrict] = ACTIONS(3673), - [anon_sym__Atomic] = ACTIONS(3673), - [anon_sym_mutable] = ACTIONS(3673), - [anon_sym_constexpr] = ACTIONS(3673), - [anon_sym_DASH_GT] = ACTIONS(3675), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3673), - [anon_sym_override] = ACTIONS(3673), - [anon_sym_virtual] = ACTIONS(3673), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_GT2] = ACTIONS(3675), - [anon_sym_operator] = ACTIONS(3673), - [anon_sym_noexcept] = ACTIONS(3673), - [anon_sym_throw] = ACTIONS(3673), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3673), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3673), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3673), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3673), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3673), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3673), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3673), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3673), - [anon_sym_MOZ_COLD] = ACTIONS(3673), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3673), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3673), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3673), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3673), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3673), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3673), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3673), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3673), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3673), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3673), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3673), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3673), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3673), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3673), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3673), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3673), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3673), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3673), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3673), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3673), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3673), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3673), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3673), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3673), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3673), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3673), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3673), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3673), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3673), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3673), - [anon_sym_MOZ_NONNULL] = ACTIONS(3673), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3673), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3673), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3673), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3673), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3673), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3673), - [anon_sym_MOZ_NORETURN] = ACTIONS(3673), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3673), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3673), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3673), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3673), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3673), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3673), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3673), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3673), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3673), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3673), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3673), - [anon_sym_MOZ_RAII] = ACTIONS(3673), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3673), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3673), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3673), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3673), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3673), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3673), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3673), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3673), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3673), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3673), - }, - [1350] = { - [sym_identifier] = ACTIONS(3677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3679), - [anon_sym_COMMA] = ACTIONS(3679), - [anon_sym_RPAREN] = ACTIONS(3679), - [anon_sym_LPAREN2] = ACTIONS(3679), - [anon_sym_TILDE] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_AMP_AMP] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3677), - [anon_sym_SEMI] = ACTIONS(3679), - [anon_sym_extern] = ACTIONS(3677), - [anon_sym___attribute__] = ACTIONS(3677), - [anon_sym_COLON_COLON] = ACTIONS(3679), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3679), - [anon_sym___declspec] = ACTIONS(3677), - [anon_sym___based] = ACTIONS(3677), - [anon_sym_LBRACE] = ACTIONS(3679), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_EQ] = ACTIONS(3679), - [anon_sym_static] = ACTIONS(3677), - [anon_sym_register] = ACTIONS(3677), - [anon_sym_inline] = ACTIONS(3677), - [anon_sym_thread_local] = ACTIONS(3677), - [anon_sym_const] = ACTIONS(3677), - [anon_sym_volatile] = ACTIONS(3677), - [anon_sym_restrict] = ACTIONS(3677), - [anon_sym__Atomic] = ACTIONS(3677), - [anon_sym_mutable] = ACTIONS(3677), - [anon_sym_constexpr] = ACTIONS(3677), - [anon_sym_DASH_GT] = ACTIONS(3679), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3677), - [anon_sym_override] = ACTIONS(3677), - [anon_sym_virtual] = ACTIONS(3677), - [anon_sym_template] = ACTIONS(3677), - [anon_sym_GT2] = ACTIONS(3679), - [anon_sym_operator] = ACTIONS(3677), - [anon_sym_noexcept] = ACTIONS(3677), - [anon_sym_throw] = ACTIONS(3677), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3677), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3677), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3677), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3677), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3677), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3677), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3677), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3677), - [anon_sym_MOZ_COLD] = ACTIONS(3677), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3677), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3677), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3677), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3677), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3677), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3677), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3677), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3677), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3677), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3677), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3677), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3677), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3677), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3677), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3677), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3677), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3677), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3677), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3677), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3677), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3677), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3677), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3677), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3677), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3677), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3677), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3677), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3677), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3677), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3677), - [anon_sym_MOZ_NONNULL] = ACTIONS(3677), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3677), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3677), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3677), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3677), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3677), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3677), - [anon_sym_MOZ_NORETURN] = ACTIONS(3677), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3677), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3677), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3677), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3677), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3677), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3677), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3677), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3677), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3677), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3677), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3677), - [anon_sym_MOZ_RAII] = ACTIONS(3677), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3677), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3677), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3677), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3677), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3677), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3677), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3677), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3677), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3677), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3677), - }, - [1351] = { - [sym_identifier] = ACTIONS(3681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3683), - [anon_sym_COMMA] = ACTIONS(3683), - [anon_sym_RPAREN] = ACTIONS(3683), - [anon_sym_LPAREN2] = ACTIONS(3683), - [anon_sym_TILDE] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_AMP_AMP] = ACTIONS(3683), - [anon_sym_AMP] = ACTIONS(3681), - [anon_sym_SEMI] = ACTIONS(3683), - [anon_sym_extern] = ACTIONS(3681), - [anon_sym___attribute__] = ACTIONS(3681), - [anon_sym_COLON_COLON] = ACTIONS(3683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3683), - [anon_sym___declspec] = ACTIONS(3681), - [anon_sym___based] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3683), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_EQ] = ACTIONS(3683), - [anon_sym_static] = ACTIONS(3681), - [anon_sym_register] = ACTIONS(3681), - [anon_sym_inline] = ACTIONS(3681), - [anon_sym_thread_local] = ACTIONS(3681), - [anon_sym_const] = ACTIONS(3681), - [anon_sym_volatile] = ACTIONS(3681), - [anon_sym_restrict] = ACTIONS(3681), - [anon_sym__Atomic] = ACTIONS(3681), - [anon_sym_mutable] = ACTIONS(3681), - [anon_sym_constexpr] = ACTIONS(3681), - [anon_sym_DASH_GT] = ACTIONS(3683), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3681), - [anon_sym_override] = ACTIONS(3681), - [anon_sym_virtual] = ACTIONS(3681), - [anon_sym_template] = ACTIONS(3681), - [anon_sym_GT2] = ACTIONS(3683), - [anon_sym_operator] = ACTIONS(3681), - [anon_sym_noexcept] = ACTIONS(3681), - [anon_sym_throw] = ACTIONS(3681), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3681), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3681), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3681), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3681), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3681), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3681), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3681), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3681), - [anon_sym_MOZ_COLD] = ACTIONS(3681), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3681), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3681), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3681), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3681), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3681), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3681), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3681), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3681), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3681), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3681), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3681), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3681), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3681), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3681), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3681), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3681), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3681), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3681), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3681), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3681), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3681), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3681), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3681), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3681), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3681), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3681), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3681), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3681), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3681), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3681), - [anon_sym_MOZ_NONNULL] = ACTIONS(3681), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3681), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3681), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3681), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3681), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3681), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3681), - [anon_sym_MOZ_NORETURN] = ACTIONS(3681), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3681), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3681), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3681), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3681), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3681), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3681), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3681), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3681), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3681), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3681), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3681), - [anon_sym_MOZ_RAII] = ACTIONS(3681), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3681), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3681), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3681), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3681), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3681), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3681), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3681), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3681), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3681), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3681), - }, - [1352] = { - [sym_identifier] = ACTIONS(3685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3687), - [anon_sym_COMMA] = ACTIONS(3687), - [anon_sym_RPAREN] = ACTIONS(3687), - [anon_sym_LPAREN2] = ACTIONS(3687), - [anon_sym_TILDE] = ACTIONS(3687), - [anon_sym_STAR] = ACTIONS(3687), - [anon_sym_AMP_AMP] = ACTIONS(3687), - [anon_sym_AMP] = ACTIONS(3685), - [anon_sym_SEMI] = ACTIONS(3687), - [anon_sym_extern] = ACTIONS(3685), - [anon_sym___attribute__] = ACTIONS(3685), - [anon_sym_COLON_COLON] = ACTIONS(3687), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3687), - [anon_sym___declspec] = ACTIONS(3685), - [anon_sym___based] = ACTIONS(3685), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_LBRACK] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3687), - [anon_sym_static] = ACTIONS(3685), - [anon_sym_register] = ACTIONS(3685), - [anon_sym_inline] = ACTIONS(3685), - [anon_sym_thread_local] = ACTIONS(3685), - [anon_sym_const] = ACTIONS(3685), - [anon_sym_volatile] = ACTIONS(3685), - [anon_sym_restrict] = ACTIONS(3685), - [anon_sym__Atomic] = ACTIONS(3685), - [anon_sym_mutable] = ACTIONS(3685), - [anon_sym_constexpr] = ACTIONS(3685), - [anon_sym_DASH_GT] = ACTIONS(3687), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3685), - [anon_sym_override] = ACTIONS(3685), - [anon_sym_virtual] = ACTIONS(3685), - [anon_sym_template] = ACTIONS(3685), - [anon_sym_GT2] = ACTIONS(3687), - [anon_sym_operator] = ACTIONS(3685), - [anon_sym_noexcept] = ACTIONS(3685), - [anon_sym_throw] = ACTIONS(3685), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3685), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3685), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3685), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3685), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3685), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3685), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3685), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3685), - [anon_sym_MOZ_COLD] = ACTIONS(3685), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3685), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3685), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3685), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3685), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3685), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3685), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3685), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3685), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3685), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3685), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3685), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3685), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3685), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3685), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3685), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3685), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3685), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3685), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3685), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3685), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3685), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3685), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3685), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3685), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3685), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3685), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3685), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3685), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3685), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3685), - [anon_sym_MOZ_NONNULL] = ACTIONS(3685), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3685), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3685), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3685), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3685), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3685), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3685), - [anon_sym_MOZ_NORETURN] = ACTIONS(3685), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3685), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3685), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3685), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3685), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3685), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3685), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3685), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3685), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3685), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3685), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3685), - [anon_sym_MOZ_RAII] = ACTIONS(3685), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3685), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3685), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3685), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3685), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3685), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3685), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3685), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3685), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3685), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3685), - }, - [1353] = { - [sym_identifier] = ACTIONS(3689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_RPAREN] = ACTIONS(3691), - [anon_sym_LPAREN2] = ACTIONS(3691), - [anon_sym_TILDE] = ACTIONS(3691), - [anon_sym_STAR] = ACTIONS(3691), - [anon_sym_AMP_AMP] = ACTIONS(3691), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_SEMI] = ACTIONS(3691), - [anon_sym_extern] = ACTIONS(3689), - [anon_sym___attribute__] = ACTIONS(3689), - [anon_sym_COLON_COLON] = ACTIONS(3691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3691), - [anon_sym___declspec] = ACTIONS(3689), - [anon_sym___based] = ACTIONS(3689), - [anon_sym_LBRACE] = ACTIONS(3691), - [anon_sym_LBRACK] = ACTIONS(3689), - [anon_sym_EQ] = ACTIONS(3691), - [anon_sym_static] = ACTIONS(3689), - [anon_sym_register] = ACTIONS(3689), - [anon_sym_inline] = ACTIONS(3689), - [anon_sym_thread_local] = ACTIONS(3689), - [anon_sym_const] = ACTIONS(3689), - [anon_sym_volatile] = ACTIONS(3689), - [anon_sym_restrict] = ACTIONS(3689), - [anon_sym__Atomic] = ACTIONS(3689), - [anon_sym_mutable] = ACTIONS(3689), - [anon_sym_constexpr] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3689), - [anon_sym_override] = ACTIONS(3689), - [anon_sym_virtual] = ACTIONS(3689), - [anon_sym_template] = ACTIONS(3689), - [anon_sym_GT2] = ACTIONS(3691), - [anon_sym_operator] = ACTIONS(3689), - [anon_sym_noexcept] = ACTIONS(3689), - [anon_sym_throw] = ACTIONS(3689), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3689), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3689), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3689), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3689), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3689), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3689), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3689), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3689), - [anon_sym_MOZ_COLD] = ACTIONS(3689), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3689), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3689), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3689), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3689), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3689), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3689), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3689), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3689), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3689), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3689), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3689), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3689), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3689), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3689), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3689), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3689), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3689), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3689), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3689), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3689), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3689), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3689), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3689), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3689), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3689), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3689), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3689), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3689), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3689), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3689), - [anon_sym_MOZ_NONNULL] = ACTIONS(3689), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3689), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3689), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3689), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3689), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3689), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3689), - [anon_sym_MOZ_NORETURN] = ACTIONS(3689), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3689), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3689), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3689), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3689), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3689), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3689), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3689), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3689), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3689), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3689), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3689), - [anon_sym_MOZ_RAII] = ACTIONS(3689), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3689), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3689), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3689), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3689), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3689), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3689), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3689), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3689), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3689), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3689), - }, - [1354] = { - [sym_identifier] = ACTIONS(3693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3695), - [anon_sym_COMMA] = ACTIONS(3695), - [anon_sym_RPAREN] = ACTIONS(3695), - [anon_sym_LPAREN2] = ACTIONS(3695), - [anon_sym_TILDE] = ACTIONS(3695), - [anon_sym_STAR] = ACTIONS(3695), - [anon_sym_AMP_AMP] = ACTIONS(3695), - [anon_sym_AMP] = ACTIONS(3693), - [anon_sym_SEMI] = ACTIONS(3695), - [anon_sym_extern] = ACTIONS(3693), - [anon_sym___attribute__] = ACTIONS(3693), - [anon_sym_COLON_COLON] = ACTIONS(3695), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3695), - [anon_sym___declspec] = ACTIONS(3693), - [anon_sym___based] = ACTIONS(3693), - [anon_sym_LBRACE] = ACTIONS(3695), - [anon_sym_LBRACK] = ACTIONS(3693), - [anon_sym_EQ] = ACTIONS(3695), - [anon_sym_static] = ACTIONS(3693), - [anon_sym_register] = ACTIONS(3693), - [anon_sym_inline] = ACTIONS(3693), - [anon_sym_thread_local] = ACTIONS(3693), - [anon_sym_const] = ACTIONS(3693), - [anon_sym_volatile] = ACTIONS(3693), - [anon_sym_restrict] = ACTIONS(3693), - [anon_sym__Atomic] = ACTIONS(3693), - [anon_sym_mutable] = ACTIONS(3693), - [anon_sym_constexpr] = ACTIONS(3693), - [anon_sym_DASH_GT] = ACTIONS(3695), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3693), - [anon_sym_override] = ACTIONS(3693), - [anon_sym_virtual] = ACTIONS(3693), - [anon_sym_template] = ACTIONS(3693), - [anon_sym_GT2] = ACTIONS(3695), - [anon_sym_operator] = ACTIONS(3693), - [anon_sym_noexcept] = ACTIONS(3693), - [anon_sym_throw] = ACTIONS(3693), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3693), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3693), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3693), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3693), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3693), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3693), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3693), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3693), - [anon_sym_MOZ_COLD] = ACTIONS(3693), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3693), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3693), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3693), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3693), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3693), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3693), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3693), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3693), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3693), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3693), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3693), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3693), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3693), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3693), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3693), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3693), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3693), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3693), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3693), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3693), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3693), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3693), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3693), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3693), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3693), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3693), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3693), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3693), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3693), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3693), - [anon_sym_MOZ_NONNULL] = ACTIONS(3693), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3693), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3693), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3693), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3693), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3693), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3693), - [anon_sym_MOZ_NORETURN] = ACTIONS(3693), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3693), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3693), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3693), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3693), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3693), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3693), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3693), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3693), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3693), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3693), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3693), - [anon_sym_MOZ_RAII] = ACTIONS(3693), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3693), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3693), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3693), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3693), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3693), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3693), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3693), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3693), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3693), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3693), - }, - [1355] = { - [sym_identifier] = ACTIONS(3697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), - [anon_sym_COMMA] = ACTIONS(3699), - [anon_sym_RPAREN] = ACTIONS(3699), - [anon_sym_LPAREN2] = ACTIONS(3699), - [anon_sym_TILDE] = ACTIONS(3699), - [anon_sym_STAR] = ACTIONS(3699), - [anon_sym_AMP_AMP] = ACTIONS(3699), - [anon_sym_AMP] = ACTIONS(3697), - [anon_sym_SEMI] = ACTIONS(3699), - [anon_sym_extern] = ACTIONS(3697), - [anon_sym___attribute__] = ACTIONS(3697), - [anon_sym_COLON_COLON] = ACTIONS(3699), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3699), - [anon_sym___declspec] = ACTIONS(3697), - [anon_sym___based] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3699), - [anon_sym_LBRACK] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3699), - [anon_sym_static] = ACTIONS(3697), - [anon_sym_register] = ACTIONS(3697), - [anon_sym_inline] = ACTIONS(3697), - [anon_sym_thread_local] = ACTIONS(3697), - [anon_sym_const] = ACTIONS(3697), - [anon_sym_volatile] = ACTIONS(3697), - [anon_sym_restrict] = ACTIONS(3697), - [anon_sym__Atomic] = ACTIONS(3697), - [anon_sym_mutable] = ACTIONS(3697), - [anon_sym_constexpr] = ACTIONS(3697), - [anon_sym_DASH_GT] = ACTIONS(3699), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3697), - [anon_sym_override] = ACTIONS(3697), - [anon_sym_virtual] = ACTIONS(3697), - [anon_sym_template] = ACTIONS(3697), - [anon_sym_GT2] = ACTIONS(3699), - [anon_sym_operator] = ACTIONS(3697), - [anon_sym_noexcept] = ACTIONS(3697), - [anon_sym_throw] = ACTIONS(3697), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3697), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3697), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3697), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3697), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3697), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3697), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3697), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3697), - [anon_sym_MOZ_COLD] = ACTIONS(3697), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3697), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3697), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3697), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3697), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3697), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3697), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3697), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3697), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3697), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3697), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3697), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3697), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3697), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3697), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3697), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3697), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3697), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3697), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3697), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3697), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3697), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3697), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3697), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3697), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3697), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3697), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3697), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3697), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3697), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3697), - [anon_sym_MOZ_NONNULL] = ACTIONS(3697), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3697), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3697), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3697), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3697), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3697), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3697), - [anon_sym_MOZ_NORETURN] = ACTIONS(3697), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3697), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3697), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3697), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3697), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3697), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3697), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3697), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3697), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3697), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3697), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3697), - [anon_sym_MOZ_RAII] = ACTIONS(3697), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3697), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3697), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3697), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3697), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3697), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3697), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3697), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3697), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3697), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3697), - }, - [1356] = { - [sym_identifier] = ACTIONS(3701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3703), - [anon_sym_COMMA] = ACTIONS(3703), - [anon_sym_RPAREN] = ACTIONS(3703), - [anon_sym_LPAREN2] = ACTIONS(3703), - [anon_sym_TILDE] = ACTIONS(3703), - [anon_sym_STAR] = ACTIONS(3703), - [anon_sym_AMP_AMP] = ACTIONS(3703), - [anon_sym_AMP] = ACTIONS(3701), - [anon_sym_SEMI] = ACTIONS(3703), - [anon_sym_extern] = ACTIONS(3701), - [anon_sym___attribute__] = ACTIONS(3701), - [anon_sym_COLON_COLON] = ACTIONS(3703), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3703), - [anon_sym___declspec] = ACTIONS(3701), - [anon_sym___based] = ACTIONS(3701), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACK] = ACTIONS(3701), - [anon_sym_EQ] = ACTIONS(3703), - [anon_sym_static] = ACTIONS(3701), - [anon_sym_register] = ACTIONS(3701), - [anon_sym_inline] = ACTIONS(3701), - [anon_sym_thread_local] = ACTIONS(3701), - [anon_sym_const] = ACTIONS(3701), - [anon_sym_volatile] = ACTIONS(3701), - [anon_sym_restrict] = ACTIONS(3701), - [anon_sym__Atomic] = ACTIONS(3701), - [anon_sym_mutable] = ACTIONS(3701), - [anon_sym_constexpr] = ACTIONS(3701), - [anon_sym_DASH_GT] = ACTIONS(3703), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3701), - [anon_sym_override] = ACTIONS(3701), - [anon_sym_virtual] = ACTIONS(3701), - [anon_sym_template] = ACTIONS(3701), - [anon_sym_GT2] = ACTIONS(3703), - [anon_sym_operator] = ACTIONS(3701), - [anon_sym_noexcept] = ACTIONS(3701), - [anon_sym_throw] = ACTIONS(3701), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3701), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3701), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3701), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3701), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3701), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3701), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3701), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3701), - [anon_sym_MOZ_COLD] = ACTIONS(3701), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3701), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3701), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3701), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3701), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3701), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3701), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3701), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3701), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3701), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3701), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3701), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3701), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3701), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3701), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3701), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3701), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3701), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3701), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3701), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3701), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3701), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3701), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3701), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3701), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3701), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3701), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3701), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3701), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3701), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3701), - [anon_sym_MOZ_NONNULL] = ACTIONS(3701), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3701), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3701), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3701), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3701), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3701), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3701), - [anon_sym_MOZ_NORETURN] = ACTIONS(3701), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3701), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3701), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3701), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3701), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3701), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3701), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3701), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3701), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3701), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3701), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3701), - [anon_sym_MOZ_RAII] = ACTIONS(3701), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3701), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3701), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3701), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3701), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3701), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3701), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3701), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3701), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3701), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3701), - }, - [1357] = { - [sym_identifier] = ACTIONS(3452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3454), - [anon_sym_COMMA] = ACTIONS(3454), - [anon_sym_RPAREN] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3454), - [anon_sym_STAR] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_AMP] = ACTIONS(3452), - [anon_sym_SEMI] = ACTIONS(3454), - [anon_sym_extern] = ACTIONS(3452), - [anon_sym___attribute__] = ACTIONS(3452), - [anon_sym_COLON_COLON] = ACTIONS(3454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), - [anon_sym___declspec] = ACTIONS(3452), - [anon_sym___based] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_LBRACK] = ACTIONS(3452), - [anon_sym_EQ] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3452), - [anon_sym_register] = ACTIONS(3452), - [anon_sym_inline] = ACTIONS(3452), - [anon_sym_thread_local] = ACTIONS(3452), - [anon_sym_const] = ACTIONS(3452), - [anon_sym_volatile] = ACTIONS(3452), - [anon_sym_restrict] = ACTIONS(3452), - [anon_sym__Atomic] = ACTIONS(3452), - [anon_sym_mutable] = ACTIONS(3452), - [anon_sym_constexpr] = ACTIONS(3452), - [anon_sym_DASH_GT] = ACTIONS(3454), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3452), - [anon_sym_override] = ACTIONS(3452), - [anon_sym_virtual] = ACTIONS(3452), - [anon_sym_template] = ACTIONS(3452), - [anon_sym_GT2] = ACTIONS(3454), - [anon_sym_operator] = ACTIONS(3452), - [anon_sym_noexcept] = ACTIONS(3452), - [anon_sym_throw] = ACTIONS(3452), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3452), - [anon_sym_MOZ_COLD] = ACTIONS(3452), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3452), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3452), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3452), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3452), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3452), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3452), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3452), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3452), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3452), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3452), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3452), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3452), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_RAII] = ACTIONS(3452), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3452), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3452), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3452), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3452), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3452), - }, - [1358] = { - [sym_identifier] = ACTIONS(3452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3454), - [anon_sym_COMMA] = ACTIONS(3454), - [anon_sym_RPAREN] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3454), - [anon_sym_STAR] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_AMP] = ACTIONS(3452), - [anon_sym_SEMI] = ACTIONS(3454), - [anon_sym_extern] = ACTIONS(3452), - [anon_sym___attribute__] = ACTIONS(3452), - [anon_sym_COLON_COLON] = ACTIONS(3454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), - [anon_sym___declspec] = ACTIONS(3452), - [anon_sym___based] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_LBRACK] = ACTIONS(3452), - [anon_sym_EQ] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3452), - [anon_sym_register] = ACTIONS(3452), - [anon_sym_inline] = ACTIONS(3452), - [anon_sym_thread_local] = ACTIONS(3452), - [anon_sym_const] = ACTIONS(3452), - [anon_sym_volatile] = ACTIONS(3452), - [anon_sym_restrict] = ACTIONS(3452), - [anon_sym__Atomic] = ACTIONS(3452), - [anon_sym_mutable] = ACTIONS(3452), - [anon_sym_constexpr] = ACTIONS(3452), - [anon_sym_DASH_GT] = ACTIONS(3454), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3452), - [anon_sym_override] = ACTIONS(3452), - [anon_sym_virtual] = ACTIONS(3452), - [anon_sym_template] = ACTIONS(3452), - [anon_sym_GT2] = ACTIONS(3454), - [anon_sym_operator] = ACTIONS(3452), - [anon_sym_noexcept] = ACTIONS(3452), - [anon_sym_throw] = ACTIONS(3452), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3452), - [anon_sym_MOZ_COLD] = ACTIONS(3452), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3452), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3452), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3452), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3452), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3452), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3452), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3452), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3452), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3452), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3452), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3452), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3452), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_RAII] = ACTIONS(3452), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3452), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3452), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3452), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3452), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3452), - }, - [1359] = { - [sym_identifier] = ACTIONS(3705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3707), - [anon_sym_COMMA] = ACTIONS(3707), - [anon_sym_RPAREN] = ACTIONS(3707), - [anon_sym_LPAREN2] = ACTIONS(3707), - [anon_sym_TILDE] = ACTIONS(3707), - [anon_sym_STAR] = ACTIONS(3707), - [anon_sym_AMP_AMP] = ACTIONS(3707), - [anon_sym_AMP] = ACTIONS(3705), - [anon_sym_SEMI] = ACTIONS(3707), - [anon_sym_extern] = ACTIONS(3705), - [anon_sym___attribute__] = ACTIONS(3705), - [anon_sym_COLON_COLON] = ACTIONS(3707), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3707), - [anon_sym___declspec] = ACTIONS(3705), - [anon_sym___based] = ACTIONS(3705), - [anon_sym_LBRACE] = ACTIONS(3707), - [anon_sym_LBRACK] = ACTIONS(3705), - [anon_sym_EQ] = ACTIONS(3707), - [anon_sym_static] = ACTIONS(3705), - [anon_sym_register] = ACTIONS(3705), - [anon_sym_inline] = ACTIONS(3705), - [anon_sym_thread_local] = ACTIONS(3705), - [anon_sym_const] = ACTIONS(3705), - [anon_sym_volatile] = ACTIONS(3705), - [anon_sym_restrict] = ACTIONS(3705), - [anon_sym__Atomic] = ACTIONS(3705), - [anon_sym_mutable] = ACTIONS(3705), - [anon_sym_constexpr] = ACTIONS(3705), - [anon_sym_DASH_GT] = ACTIONS(3707), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3705), - [anon_sym_override] = ACTIONS(3705), - [anon_sym_virtual] = ACTIONS(3705), - [anon_sym_template] = ACTIONS(3705), - [anon_sym_GT2] = ACTIONS(3707), - [anon_sym_operator] = ACTIONS(3705), - [anon_sym_noexcept] = ACTIONS(3705), - [anon_sym_throw] = ACTIONS(3705), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3705), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3705), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3705), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3705), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3705), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3705), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3705), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3705), - [anon_sym_MOZ_COLD] = ACTIONS(3705), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3705), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3705), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3705), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3705), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3705), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3705), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3705), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3705), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3705), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3705), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3705), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3705), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3705), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3705), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3705), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3705), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3705), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3705), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3705), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3705), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3705), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3705), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3705), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3705), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3705), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3705), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3705), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3705), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3705), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3705), - [anon_sym_MOZ_NONNULL] = ACTIONS(3705), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3705), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3705), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3705), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3705), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3705), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3705), - [anon_sym_MOZ_NORETURN] = ACTIONS(3705), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3705), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3705), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3705), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3705), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3705), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3705), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3705), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3705), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3705), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3705), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3705), - [anon_sym_MOZ_RAII] = ACTIONS(3705), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3705), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3705), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3705), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3705), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3705), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3705), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3705), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3705), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3705), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3705), - }, - [1360] = { - [sym_identifier] = ACTIONS(3709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3711), - [anon_sym_COMMA] = ACTIONS(3711), - [anon_sym_RPAREN] = ACTIONS(3711), - [anon_sym_LPAREN2] = ACTIONS(3711), - [anon_sym_TILDE] = ACTIONS(3711), - [anon_sym_STAR] = ACTIONS(3711), - [anon_sym_AMP_AMP] = ACTIONS(3711), - [anon_sym_AMP] = ACTIONS(3709), - [anon_sym_SEMI] = ACTIONS(3711), - [anon_sym_extern] = ACTIONS(3709), - [anon_sym___attribute__] = ACTIONS(3709), - [anon_sym_COLON_COLON] = ACTIONS(3711), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3711), - [anon_sym___declspec] = ACTIONS(3709), - [anon_sym___based] = ACTIONS(3709), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_LBRACK] = ACTIONS(3709), - [anon_sym_EQ] = ACTIONS(3711), - [anon_sym_static] = ACTIONS(3709), - [anon_sym_register] = ACTIONS(3709), - [anon_sym_inline] = ACTIONS(3709), - [anon_sym_thread_local] = ACTIONS(3709), - [anon_sym_const] = ACTIONS(3709), - [anon_sym_volatile] = ACTIONS(3709), - [anon_sym_restrict] = ACTIONS(3709), - [anon_sym__Atomic] = ACTIONS(3709), - [anon_sym_mutable] = ACTIONS(3709), - [anon_sym_constexpr] = ACTIONS(3709), - [anon_sym_DASH_GT] = ACTIONS(3711), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3709), - [anon_sym_override] = ACTIONS(3709), - [anon_sym_virtual] = ACTIONS(3709), - [anon_sym_template] = ACTIONS(3709), - [anon_sym_GT2] = ACTIONS(3711), - [anon_sym_operator] = ACTIONS(3709), - [anon_sym_noexcept] = ACTIONS(3709), - [anon_sym_throw] = ACTIONS(3709), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3709), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3709), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3709), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3709), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3709), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3709), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3709), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3709), - [anon_sym_MOZ_COLD] = ACTIONS(3709), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3709), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3709), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3709), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3709), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3709), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3709), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3709), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3709), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3709), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3709), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3709), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3709), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3709), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3709), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3709), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3709), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3709), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3709), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3709), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3709), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3709), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3709), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3709), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3709), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3709), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3709), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3709), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3709), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3709), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3709), - [anon_sym_MOZ_NONNULL] = ACTIONS(3709), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3709), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3709), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3709), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3709), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3709), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3709), - [anon_sym_MOZ_NORETURN] = ACTIONS(3709), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3709), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3709), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3709), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3709), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3709), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3709), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3709), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3709), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3709), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3709), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3709), - [anon_sym_MOZ_RAII] = ACTIONS(3709), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3709), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3709), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3709), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3709), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3709), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3709), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3709), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3709), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3709), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3709), - }, - [1361] = { - [sym_identifier] = ACTIONS(3713), - [anon_sym_extern] = ACTIONS(3713), - [anon_sym___attribute__] = ACTIONS(3713), - [anon_sym_COLON_COLON] = ACTIONS(3715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3715), - [anon_sym___declspec] = ACTIONS(3713), - [anon_sym___cdecl] = ACTIONS(3713), - [anon_sym___clrcall] = ACTIONS(3713), - [anon_sym___stdcall] = ACTIONS(3713), - [anon_sym___fastcall] = ACTIONS(3713), - [anon_sym___thiscall] = ACTIONS(3713), - [anon_sym___vectorcall] = ACTIONS(3713), - [anon_sym_LBRACE] = ACTIONS(3715), - [anon_sym_static] = ACTIONS(3713), - [anon_sym_register] = ACTIONS(3713), - [anon_sym_inline] = ACTIONS(3713), - [anon_sym_thread_local] = ACTIONS(3713), - [anon_sym_const] = ACTIONS(3713), - [anon_sym_volatile] = ACTIONS(3713), - [anon_sym_restrict] = ACTIONS(3713), - [anon_sym__Atomic] = ACTIONS(3713), - [anon_sym_mutable] = ACTIONS(3713), - [anon_sym_constexpr] = ACTIONS(3713), - [anon_sym_signed] = ACTIONS(3713), - [anon_sym_unsigned] = ACTIONS(3713), - [anon_sym_long] = ACTIONS(3713), - [anon_sym_short] = ACTIONS(3713), - [sym_primitive_type] = ACTIONS(3713), - [anon_sym_enum] = ACTIONS(3713), - [anon_sym_class] = ACTIONS(3713), - [anon_sym_struct] = ACTIONS(3713), - [anon_sym_union] = ACTIONS(3713), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3713), - [anon_sym_virtual] = ACTIONS(3713), - [sym_auto] = ACTIONS(3713), - [anon_sym_typename] = ACTIONS(3713), - [anon_sym_template] = ACTIONS(3713), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3713), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3713), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3713), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3713), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3713), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3713), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3713), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3713), - [anon_sym_MOZ_COLD] = ACTIONS(3713), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3713), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3713), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3713), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3713), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3713), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3713), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3713), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3713), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3713), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3713), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3713), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3713), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3713), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3713), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3713), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3713), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3713), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3713), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3713), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3713), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3713), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3713), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3713), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3713), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3713), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3713), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3713), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3713), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3713), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3713), - [anon_sym_MOZ_NONNULL] = ACTIONS(3713), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3713), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3713), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3713), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3713), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3713), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3713), - [anon_sym_MOZ_NORETURN] = ACTIONS(3713), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3713), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3713), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3713), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3713), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3713), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3713), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3713), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3713), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3713), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3713), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3713), - [anon_sym_MOZ_RAII] = ACTIONS(3713), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3713), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3713), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3713), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3713), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3713), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3713), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3713), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3713), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3713), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3713), - }, - [1362] = { - [sym__expression] = STATE(2798), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_initializer_list] = STATE(3079), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3114), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_SLASH] = ACTIONS(3122), - [anon_sym_PERCENT] = ACTIONS(3114), - [anon_sym_PIPE_PIPE] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_CARET] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3170), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_GT_EQ] = ACTIONS(3122), - [anon_sym_LT_EQ] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_LT_LT] = ACTIONS(3114), - [anon_sym_GT_GT] = ACTIONS(3122), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3719), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_QMARK] = ACTIONS(3114), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [anon_sym_DOT] = ACTIONS(3122), - [anon_sym_DASH_GT] = ACTIONS(3114), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_GT2] = ACTIONS(3114), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1363] = { - [sym__expression] = STATE(2685), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_initializer_list] = STATE(2682), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3114), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3725), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_SLASH] = ACTIONS(3122), - [anon_sym_PERCENT] = ACTIONS(3114), - [anon_sym_PIPE_PIPE] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_CARET] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_GT_EQ] = ACTIONS(3114), - [anon_sym_LT_EQ] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_LT_LT] = ACTIONS(3114), - [anon_sym_GT_GT] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3114), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_QMARK] = ACTIONS(3114), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [anon_sym_DOT] = ACTIONS(3122), - [anon_sym_DASH_GT] = ACTIONS(3114), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1364] = { - [sym_template_argument_list] = STATE(1294), - [sym_identifier] = ACTIONS(2397), - [anon_sym_COMMA] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2405), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_AMP_AMP] = ACTIONS(2405), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2405), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [anon_sym_DASH_GT] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2397), - [anon_sym_override] = ACTIONS(2397), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_noexcept] = ACTIONS(2397), - [anon_sym_throw] = ACTIONS(2397), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2397), - [anon_sym_MOZ_COLD] = ACTIONS(2397), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2397), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2397), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2397), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2397), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2397), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2397), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2397), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2397), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2397), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2397), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2397), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2397), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_RAII] = ACTIONS(2397), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2397), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2397), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2397), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2397), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2397), - }, - [1365] = { - [sym_identifier] = ACTIONS(3741), - [anon_sym_extern] = ACTIONS(3741), - [anon_sym___attribute__] = ACTIONS(3741), - [anon_sym_COLON_COLON] = ACTIONS(3743), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3743), - [anon_sym___declspec] = ACTIONS(3741), - [anon_sym___cdecl] = ACTIONS(3741), - [anon_sym___clrcall] = ACTIONS(3741), - [anon_sym___stdcall] = ACTIONS(3741), - [anon_sym___fastcall] = ACTIONS(3741), - [anon_sym___thiscall] = ACTIONS(3741), - [anon_sym___vectorcall] = ACTIONS(3741), - [anon_sym_LBRACE] = ACTIONS(3743), - [anon_sym_static] = ACTIONS(3741), - [anon_sym_register] = ACTIONS(3741), - [anon_sym_inline] = ACTIONS(3741), - [anon_sym_thread_local] = ACTIONS(3741), - [anon_sym_const] = ACTIONS(3741), - [anon_sym_volatile] = ACTIONS(3741), - [anon_sym_restrict] = ACTIONS(3741), - [anon_sym__Atomic] = ACTIONS(3741), - [anon_sym_mutable] = ACTIONS(3741), - [anon_sym_constexpr] = ACTIONS(3741), - [anon_sym_signed] = ACTIONS(3741), - [anon_sym_unsigned] = ACTIONS(3741), - [anon_sym_long] = ACTIONS(3741), - [anon_sym_short] = ACTIONS(3741), - [sym_primitive_type] = ACTIONS(3741), - [anon_sym_enum] = ACTIONS(3741), - [anon_sym_class] = ACTIONS(3741), - [anon_sym_struct] = ACTIONS(3741), - [anon_sym_union] = ACTIONS(3741), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3741), - [anon_sym_virtual] = ACTIONS(3741), - [sym_auto] = ACTIONS(3741), - [anon_sym_typename] = ACTIONS(3741), - [anon_sym_template] = ACTIONS(3741), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3741), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3741), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3741), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3741), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3741), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3741), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3741), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3741), - [anon_sym_MOZ_COLD] = ACTIONS(3741), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3741), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3741), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3741), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3741), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3741), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3741), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3741), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3741), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3741), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3741), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3741), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3741), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3741), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3741), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3741), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3741), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3741), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3741), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3741), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3741), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3741), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3741), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3741), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3741), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3741), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3741), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3741), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3741), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3741), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3741), - [anon_sym_MOZ_NONNULL] = ACTIONS(3741), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3741), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3741), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3741), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3741), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3741), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3741), - [anon_sym_MOZ_NORETURN] = ACTIONS(3741), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3741), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3741), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3741), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3741), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3741), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3741), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3741), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3741), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3741), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3741), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3741), - [anon_sym_MOZ_RAII] = ACTIONS(3741), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3741), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3741), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3741), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3741), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3741), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3741), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3741), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3741), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3741), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3741), - }, - [1366] = { - [sym__declaration_modifiers] = STATE(1277), - [sym_attribute_specifier] = STATE(1277), - [sym_attribute_declaration] = STATE(1277), - [sym_ms_declspec_modifier] = STATE(1277), - [sym_storage_class_specifier] = STATE(1277), - [sym_type_qualifier] = STATE(1277), - [sym_virtual_function_specifier] = STATE(1277), - [sym_macro_annotation] = STATE(1466), - [aux_sym__declaration_specifiers_repeat1] = STATE(1277), - [sym_identifier] = ACTIONS(3364), - [anon_sym_LPAREN2] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3366), - [anon_sym_AMP_AMP] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3745), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(3366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_template] = ACTIONS(3364), - [anon_sym_operator] = ACTIONS(3364), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1367] = { - [sym_field_declaration_list] = STATE(1438), - [sym_virtual_specifier] = STATE(4060), - [sym_base_class_clause] = STATE(4457), - [sym_identifier] = ACTIONS(3483), - [anon_sym_COMMA] = ACTIONS(3485), - [anon_sym_LPAREN2] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3483), - [anon_sym_SEMI] = ACTIONS(3485), - [anon_sym_extern] = ACTIONS(3483), - [anon_sym___attribute__] = ACTIONS(3483), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3485), - [anon_sym___declspec] = ACTIONS(3483), - [anon_sym___based] = ACTIONS(3483), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_LBRACK] = ACTIONS(3483), - [anon_sym_EQ] = ACTIONS(3485), - [anon_sym_static] = ACTIONS(3483), - [anon_sym_register] = ACTIONS(3483), - [anon_sym_inline] = ACTIONS(3483), - [anon_sym_thread_local] = ACTIONS(3483), - [anon_sym_const] = ACTIONS(3483), - [anon_sym_volatile] = ACTIONS(3483), - [anon_sym_restrict] = ACTIONS(3483), - [anon_sym__Atomic] = ACTIONS(3483), - [anon_sym_mutable] = ACTIONS(3483), - [anon_sym_constexpr] = ACTIONS(3483), - [anon_sym_COLON] = ACTIONS(3749), - [anon_sym_DASH_GT] = ACTIONS(3485), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3483), - [anon_sym_operator] = ACTIONS(3483), - [anon_sym_noexcept] = ACTIONS(3483), - [anon_sym_throw] = ACTIONS(3483), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3483), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3483), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3483), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3483), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3483), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3483), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3483), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3483), - [anon_sym_MOZ_COLD] = ACTIONS(3483), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3483), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3483), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3483), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3483), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3483), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3483), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3483), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3483), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3483), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3483), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3483), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3483), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3483), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3483), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3483), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3483), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3483), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3483), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3483), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3483), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_NONNULL] = ACTIONS(3483), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3483), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3483), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3483), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3483), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3483), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_NORETURN] = ACTIONS(3483), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3483), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3483), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3483), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3483), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3483), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3483), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3483), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3483), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3483), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3483), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3483), - [anon_sym_MOZ_RAII] = ACTIONS(3483), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3483), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3483), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3483), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3483), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3483), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3483), - }, - [1368] = { - [sym_field_declaration_list] = STATE(1435), - [sym_virtual_specifier] = STATE(4074), - [sym_base_class_clause] = STATE(4461), - [sym_identifier] = ACTIONS(3471), - [anon_sym_COMMA] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(3473), - [anon_sym_STAR] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_AMP] = ACTIONS(3471), - [anon_sym_SEMI] = ACTIONS(3473), - [anon_sym_extern] = ACTIONS(3471), - [anon_sym___attribute__] = ACTIONS(3471), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3473), - [anon_sym___declspec] = ACTIONS(3471), - [anon_sym___based] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_LBRACK] = ACTIONS(3471), - [anon_sym_EQ] = ACTIONS(3473), - [anon_sym_static] = ACTIONS(3471), - [anon_sym_register] = ACTIONS(3471), - [anon_sym_inline] = ACTIONS(3471), - [anon_sym_thread_local] = ACTIONS(3471), - [anon_sym_const] = ACTIONS(3471), - [anon_sym_volatile] = ACTIONS(3471), - [anon_sym_restrict] = ACTIONS(3471), - [anon_sym__Atomic] = ACTIONS(3471), - [anon_sym_mutable] = ACTIONS(3471), - [anon_sym_constexpr] = ACTIONS(3471), - [anon_sym_COLON] = ACTIONS(3749), - [anon_sym_DASH_GT] = ACTIONS(3473), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3471), - [anon_sym_operator] = ACTIONS(3471), - [anon_sym_noexcept] = ACTIONS(3471), - [anon_sym_throw] = ACTIONS(3471), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3471), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3471), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3471), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3471), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3471), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3471), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3471), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3471), - [anon_sym_MOZ_COLD] = ACTIONS(3471), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3471), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3471), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3471), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3471), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3471), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3471), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3471), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3471), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3471), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3471), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3471), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3471), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3471), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3471), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3471), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3471), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3471), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3471), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3471), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3471), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_NONNULL] = ACTIONS(3471), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3471), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3471), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3471), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3471), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3471), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_NORETURN] = ACTIONS(3471), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3471), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3471), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3471), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3471), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3471), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3471), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3471), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3471), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3471), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3471), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3471), - [anon_sym_MOZ_RAII] = ACTIONS(3471), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3471), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3471), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3471), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3471), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3471), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3471), - }, - [1369] = { - [sym_identifier] = ACTIONS(3401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3403), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_RPAREN] = ACTIONS(3403), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_STAR] = ACTIONS(3403), - [anon_sym_AMP_AMP] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_extern] = ACTIONS(3401), - [anon_sym___attribute__] = ACTIONS(3401), - [anon_sym_COLON_COLON] = ACTIONS(3403), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3403), - [anon_sym___declspec] = ACTIONS(3401), - [anon_sym___based] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_EQ] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3401), - [anon_sym_register] = ACTIONS(3401), - [anon_sym_inline] = ACTIONS(3401), - [anon_sym_thread_local] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_volatile] = ACTIONS(3401), - [anon_sym_restrict] = ACTIONS(3401), - [anon_sym__Atomic] = ACTIONS(3401), - [anon_sym_mutable] = ACTIONS(3401), - [anon_sym_constexpr] = ACTIONS(3401), - [anon_sym_COLON] = ACTIONS(3401), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3401), - [anon_sym_override] = ACTIONS(3401), - [anon_sym_virtual] = ACTIONS(3401), - [anon_sym_explicit] = ACTIONS(3401), - [anon_sym_template] = ACTIONS(3401), - [anon_sym_GT2] = ACTIONS(3403), - [anon_sym_operator] = ACTIONS(3401), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3401), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3401), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3401), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3401), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3401), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3401), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3401), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3401), - [anon_sym_MOZ_COLD] = ACTIONS(3401), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3401), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3401), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3401), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3401), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3401), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3401), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3401), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3401), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3401), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3401), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3401), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3401), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3401), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3401), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3401), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3401), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3401), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3401), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3401), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3401), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_NONNULL] = ACTIONS(3401), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3401), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3401), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3401), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3401), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3401), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_NORETURN] = ACTIONS(3401), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3401), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3401), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3401), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3401), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3401), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3401), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3401), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3401), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3401), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3401), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3401), - [anon_sym_MOZ_RAII] = ACTIONS(3401), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3401), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3401), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3401), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3401), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3401), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3401), - }, - [1370] = { - [sym__declaration_modifiers] = STATE(1277), - [sym_attribute_specifier] = STATE(1277), - [sym_attribute_declaration] = STATE(1277), - [sym_ms_declspec_modifier] = STATE(1277), - [sym_storage_class_specifier] = STATE(1277), - [sym_type_qualifier] = STATE(1277), - [sym_virtual_function_specifier] = STATE(1277), - [sym_macro_annotation] = STATE(1466), - [aux_sym__declaration_specifiers_repeat1] = STATE(1277), - [sym_identifier] = ACTIONS(3364), - [anon_sym_LPAREN2] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3366), - [anon_sym_AMP_AMP] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3751), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(3366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_template] = ACTIONS(3364), - [anon_sym_operator] = ACTIONS(3364), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1371] = { - [sym__declaration_modifiers] = STATE(1277), - [sym_attribute_specifier] = STATE(1277), - [sym_attribute_declaration] = STATE(1277), - [sym_ms_declspec_modifier] = STATE(1277), - [sym_storage_class_specifier] = STATE(1277), - [sym_type_qualifier] = STATE(1277), - [sym_virtual_function_specifier] = STATE(1277), - [sym_macro_annotation] = STATE(1466), - [aux_sym__declaration_specifiers_repeat1] = STATE(1277), - [sym_identifier] = ACTIONS(3364), - [anon_sym_LPAREN2] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3366), - [anon_sym_AMP_AMP] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3753), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(3366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_template] = ACTIONS(3364), - [anon_sym_operator] = ACTIONS(3364), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1372] = { - [sym__expression] = STATE(3033), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_initializer_list] = STATE(2682), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3114), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3759), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_SLASH] = ACTIONS(3122), - [anon_sym_PERCENT] = ACTIONS(3114), - [anon_sym_PIPE_PIPE] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_CARET] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_GT_EQ] = ACTIONS(3114), - [anon_sym_LT_EQ] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_LT_LT] = ACTIONS(3114), - [anon_sym_GT_GT] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_COLON] = ACTIONS(3122), - [anon_sym_QMARK] = ACTIONS(3114), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [anon_sym_DOT] = ACTIONS(3122), - [anon_sym_DASH_GT] = ACTIONS(3114), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1373] = { - [sym__declaration_modifiers] = STATE(1277), - [sym_attribute_specifier] = STATE(1277), - [sym_attribute_declaration] = STATE(1277), - [sym_ms_declspec_modifier] = STATE(1277), - [sym_storage_class_specifier] = STATE(1277), - [sym_type_qualifier] = STATE(1277), - [sym_virtual_function_specifier] = STATE(1277), - [sym_macro_annotation] = STATE(1466), - [aux_sym__declaration_specifiers_repeat1] = STATE(1277), - [sym_identifier] = ACTIONS(3364), - [anon_sym_LPAREN2] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3366), - [anon_sym_AMP_AMP] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3777), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(3366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_template] = ACTIONS(3364), - [anon_sym_operator] = ACTIONS(3364), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1374] = { - [sym__declaration_modifiers] = STATE(1277), - [sym_attribute_specifier] = STATE(1277), - [sym_attribute_declaration] = STATE(1277), - [sym_ms_declspec_modifier] = STATE(1277), - [sym_storage_class_specifier] = STATE(1277), - [sym_type_qualifier] = STATE(1277), - [sym_virtual_function_specifier] = STATE(1277), - [sym_macro_annotation] = STATE(1466), - [aux_sym__declaration_specifiers_repeat1] = STATE(1277), - [sym_identifier] = ACTIONS(3364), - [anon_sym_LPAREN2] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3366), - [anon_sym_AMP_AMP] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3779), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(3366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_template] = ACTIONS(3364), - [anon_sym_operator] = ACTIONS(3364), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1375] = { - [sym__declaration_modifiers] = STATE(1277), - [sym_attribute_specifier] = STATE(1277), - [sym_attribute_declaration] = STATE(1277), - [sym_ms_declspec_modifier] = STATE(1277), - [sym_storage_class_specifier] = STATE(1277), - [sym_type_qualifier] = STATE(1277), - [sym_virtual_function_specifier] = STATE(1277), - [sym_macro_annotation] = STATE(1466), - [aux_sym__declaration_specifiers_repeat1] = STATE(1277), - [sym_identifier] = ACTIONS(3364), - [anon_sym_LPAREN2] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3366), - [anon_sym_AMP_AMP] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3781), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(3366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_template] = ACTIONS(3364), - [anon_sym_operator] = ACTIONS(3364), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1376] = { - [sym_field_declaration_list] = STATE(1430), - [sym_virtual_specifier] = STATE(4045), - [sym_base_class_clause] = STATE(4496), - [sym_identifier] = ACTIONS(3442), - [anon_sym_COMMA] = ACTIONS(3444), - [anon_sym_LPAREN2] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3444), - [anon_sym_AMP_AMP] = ACTIONS(3444), - [anon_sym_AMP] = ACTIONS(3442), - [anon_sym_SEMI] = ACTIONS(3444), - [anon_sym_extern] = ACTIONS(3442), - [anon_sym___attribute__] = ACTIONS(3442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3444), - [anon_sym___declspec] = ACTIONS(3442), - [anon_sym___based] = ACTIONS(3442), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_LBRACK] = ACTIONS(3442), - [anon_sym_EQ] = ACTIONS(3444), - [anon_sym_static] = ACTIONS(3442), - [anon_sym_register] = ACTIONS(3442), - [anon_sym_inline] = ACTIONS(3442), - [anon_sym_thread_local] = ACTIONS(3442), - [anon_sym_const] = ACTIONS(3442), - [anon_sym_volatile] = ACTIONS(3442), - [anon_sym_restrict] = ACTIONS(3442), - [anon_sym__Atomic] = ACTIONS(3442), - [anon_sym_mutable] = ACTIONS(3442), - [anon_sym_constexpr] = ACTIONS(3442), - [anon_sym_COLON] = ACTIONS(3749), - [anon_sym_DASH_GT] = ACTIONS(3444), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3442), - [anon_sym_operator] = ACTIONS(3442), - [anon_sym_noexcept] = ACTIONS(3442), - [anon_sym_throw] = ACTIONS(3442), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3442), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3442), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3442), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3442), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3442), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3442), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3442), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3442), - [anon_sym_MOZ_COLD] = ACTIONS(3442), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3442), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3442), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3442), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3442), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3442), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3442), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3442), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3442), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3442), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3442), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3442), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3442), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3442), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3442), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3442), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3442), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3442), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3442), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3442), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3442), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3442), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3442), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3442), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3442), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3442), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3442), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3442), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3442), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3442), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3442), - [anon_sym_MOZ_NONNULL] = ACTIONS(3442), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3442), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3442), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3442), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3442), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3442), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3442), - [anon_sym_MOZ_NORETURN] = ACTIONS(3442), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3442), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3442), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3442), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3442), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3442), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3442), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3442), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3442), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3442), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3442), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3442), - [anon_sym_MOZ_RAII] = ACTIONS(3442), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3442), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3442), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3442), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3442), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3442), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3442), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3442), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3442), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3442), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3442), - }, - [1377] = { - [sym_field_declaration_list] = STATE(1446), - [sym_virtual_specifier] = STATE(4051), - [sym_base_class_clause] = STATE(4510), - [sym_identifier] = ACTIONS(3491), - [anon_sym_COMMA] = ACTIONS(3493), - [anon_sym_LPAREN2] = ACTIONS(3493), - [anon_sym_STAR] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_AMP] = ACTIONS(3491), - [anon_sym_SEMI] = ACTIONS(3493), - [anon_sym_extern] = ACTIONS(3491), - [anon_sym___attribute__] = ACTIONS(3491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3493), - [anon_sym___declspec] = ACTIONS(3491), - [anon_sym___based] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_LBRACK] = ACTIONS(3491), - [anon_sym_EQ] = ACTIONS(3493), - [anon_sym_static] = ACTIONS(3491), - [anon_sym_register] = ACTIONS(3491), - [anon_sym_inline] = ACTIONS(3491), - [anon_sym_thread_local] = ACTIONS(3491), - [anon_sym_const] = ACTIONS(3491), - [anon_sym_volatile] = ACTIONS(3491), - [anon_sym_restrict] = ACTIONS(3491), - [anon_sym__Atomic] = ACTIONS(3491), - [anon_sym_mutable] = ACTIONS(3491), - [anon_sym_constexpr] = ACTIONS(3491), - [anon_sym_COLON] = ACTIONS(3749), - [anon_sym_DASH_GT] = ACTIONS(3493), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3491), - [anon_sym_operator] = ACTIONS(3491), - [anon_sym_noexcept] = ACTIONS(3491), - [anon_sym_throw] = ACTIONS(3491), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3491), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3491), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3491), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3491), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3491), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3491), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3491), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3491), - [anon_sym_MOZ_COLD] = ACTIONS(3491), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3491), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3491), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3491), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3491), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3491), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3491), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3491), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3491), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3491), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3491), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3491), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3491), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3491), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3491), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3491), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3491), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3491), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3491), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3491), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3491), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3491), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3491), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3491), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3491), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3491), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3491), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3491), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3491), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3491), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3491), - [anon_sym_MOZ_NONNULL] = ACTIONS(3491), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3491), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3491), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3491), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3491), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3491), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3491), - [anon_sym_MOZ_NORETURN] = ACTIONS(3491), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3491), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3491), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3491), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3491), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3491), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3491), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3491), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3491), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3491), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3491), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3491), - [anon_sym_MOZ_RAII] = ACTIONS(3491), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3491), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3491), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3491), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3491), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3491), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3491), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3491), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3491), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3491), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3491), - }, - [1378] = { - [sym_field_declaration_list] = STATE(1447), - [sym_virtual_specifier] = STATE(4002), - [sym_base_class_clause] = STATE(4526), - [sym_identifier] = ACTIONS(3436), - [anon_sym_COMMA] = ACTIONS(3438), - [anon_sym_LPAREN2] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_AMP] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_extern] = ACTIONS(3436), - [anon_sym___attribute__] = ACTIONS(3436), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3438), - [anon_sym___declspec] = ACTIONS(3436), - [anon_sym___based] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_LBRACK] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3438), - [anon_sym_static] = ACTIONS(3436), - [anon_sym_register] = ACTIONS(3436), - [anon_sym_inline] = ACTIONS(3436), - [anon_sym_thread_local] = ACTIONS(3436), - [anon_sym_const] = ACTIONS(3436), - [anon_sym_volatile] = ACTIONS(3436), - [anon_sym_restrict] = ACTIONS(3436), - [anon_sym__Atomic] = ACTIONS(3436), - [anon_sym_mutable] = ACTIONS(3436), - [anon_sym_constexpr] = ACTIONS(3436), - [anon_sym_COLON] = ACTIONS(3749), - [anon_sym_DASH_GT] = ACTIONS(3438), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3436), - [anon_sym_operator] = ACTIONS(3436), - [anon_sym_noexcept] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3436), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3436), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3436), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3436), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3436), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3436), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3436), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3436), - [anon_sym_MOZ_COLD] = ACTIONS(3436), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3436), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3436), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3436), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3436), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3436), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3436), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3436), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3436), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3436), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3436), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3436), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3436), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3436), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3436), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3436), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3436), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3436), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3436), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3436), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3436), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3436), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3436), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3436), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3436), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3436), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3436), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3436), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3436), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3436), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3436), - [anon_sym_MOZ_NONNULL] = ACTIONS(3436), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3436), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3436), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3436), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3436), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3436), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3436), - [anon_sym_MOZ_NORETURN] = ACTIONS(3436), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3436), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3436), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3436), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3436), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3436), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3436), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3436), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3436), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3436), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3436), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3436), - [anon_sym_MOZ_RAII] = ACTIONS(3436), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3436), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3436), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3436), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3436), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3436), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3436), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3436), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3436), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3436), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3436), - }, - [1379] = { - [sym_template_argument_list] = STATE(1294), - [sym_identifier] = ACTIONS(3356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2423), - [anon_sym_COMMA] = ACTIONS(3783), - [anon_sym_LPAREN2] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_AMP_AMP] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_extern] = ACTIONS(3356), - [anon_sym___attribute__] = ACTIONS(3356), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2423), - [anon_sym___declspec] = ACTIONS(3356), - [anon_sym___based] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_EQ] = ACTIONS(3785), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_register] = ACTIONS(3356), - [anon_sym_inline] = ACTIONS(3356), - [anon_sym_thread_local] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_volatile] = ACTIONS(3356), - [anon_sym_restrict] = ACTIONS(3356), - [anon_sym__Atomic] = ACTIONS(3356), - [anon_sym_mutable] = ACTIONS(3356), - [anon_sym_constexpr] = ACTIONS(3356), - [anon_sym_COLON] = ACTIONS(3356), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3356), - [anon_sym_override] = ACTIONS(3356), - [anon_sym_virtual] = ACTIONS(3356), - [anon_sym_template] = ACTIONS(3356), - [anon_sym_GT2] = ACTIONS(3783), - [anon_sym_operator] = ACTIONS(3356), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3356), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3356), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3356), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3356), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3356), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3356), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3356), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3356), - [anon_sym_MOZ_COLD] = ACTIONS(3356), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3356), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3356), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3356), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3356), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3356), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3356), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3356), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3356), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3356), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3356), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3356), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3356), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3356), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3356), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3356), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3356), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3356), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3356), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3356), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3356), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3356), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_NONNULL] = ACTIONS(3356), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3356), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3356), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3356), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3356), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3356), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_NORETURN] = ACTIONS(3356), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3356), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3356), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3356), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3356), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3356), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3356), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3356), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3356), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3356), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3356), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3356), - [anon_sym_MOZ_RAII] = ACTIONS(3356), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3356), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3356), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3356), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3356), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3356), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3356), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3356), - }, - [1380] = { - [sym_field_declaration_list] = STATE(1432), - [sym_virtual_specifier] = STATE(4089), - [sym_base_class_clause] = STATE(4469), - [sym_identifier] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_LPAREN2] = ACTIONS(3425), - [anon_sym_STAR] = ACTIONS(3425), - [anon_sym_AMP_AMP] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_extern] = ACTIONS(3423), - [anon_sym___attribute__] = ACTIONS(3423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3425), - [anon_sym___declspec] = ACTIONS(3423), - [anon_sym___based] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_EQ] = ACTIONS(3425), - [anon_sym_static] = ACTIONS(3423), - [anon_sym_register] = ACTIONS(3423), - [anon_sym_inline] = ACTIONS(3423), - [anon_sym_thread_local] = ACTIONS(3423), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_volatile] = ACTIONS(3423), - [anon_sym_restrict] = ACTIONS(3423), - [anon_sym__Atomic] = ACTIONS(3423), - [anon_sym_mutable] = ACTIONS(3423), - [anon_sym_constexpr] = ACTIONS(3423), - [anon_sym_COLON] = ACTIONS(3749), - [anon_sym_DASH_GT] = ACTIONS(3425), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3423), - [anon_sym_operator] = ACTIONS(3423), - [anon_sym_noexcept] = ACTIONS(3423), - [anon_sym_throw] = ACTIONS(3423), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3423), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3423), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3423), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3423), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3423), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3423), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3423), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3423), - [anon_sym_MOZ_COLD] = ACTIONS(3423), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3423), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3423), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3423), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3423), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3423), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3423), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3423), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3423), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3423), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3423), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3423), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3423), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3423), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3423), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3423), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3423), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3423), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3423), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3423), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3423), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_NONNULL] = ACTIONS(3423), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3423), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3423), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3423), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3423), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3423), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_NORETURN] = ACTIONS(3423), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3423), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3423), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3423), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3423), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3423), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3423), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3423), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3423), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3423), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3423), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3423), - [anon_sym_MOZ_RAII] = ACTIONS(3423), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3423), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3423), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3423), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3423), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3423), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3423), - }, - [1381] = { - [sym__declaration_modifiers] = STATE(1277), - [sym_attribute_specifier] = STATE(1277), - [sym_attribute_declaration] = STATE(1277), - [sym_ms_declspec_modifier] = STATE(1277), - [sym_storage_class_specifier] = STATE(1277), - [sym_type_qualifier] = STATE(1277), - [sym_virtual_function_specifier] = STATE(1277), - [sym_macro_annotation] = STATE(1466), - [aux_sym__declaration_specifiers_repeat1] = STATE(1277), - [sym_identifier] = ACTIONS(3364), - [anon_sym_LPAREN2] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3366), - [anon_sym_AMP_AMP] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3787), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(3366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2566), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_thread_local] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_volatile] = ACTIONS(2570), - [anon_sym_restrict] = ACTIONS(2570), - [anon_sym__Atomic] = ACTIONS(2570), - [anon_sym_mutable] = ACTIONS(2570), - [anon_sym_constexpr] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_template] = ACTIONS(3364), - [anon_sym_operator] = ACTIONS(3364), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1382] = { - [sym_identifier] = ACTIONS(3158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3160), - [anon_sym_COMMA] = ACTIONS(3160), - [anon_sym_RPAREN] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3160), - [anon_sym_AMP_AMP] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_extern] = ACTIONS(3158), - [anon_sym___attribute__] = ACTIONS(3158), - [anon_sym_COLON_COLON] = ACTIONS(3160), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3160), - [anon_sym___declspec] = ACTIONS(3158), - [anon_sym___based] = ACTIONS(3158), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_EQ] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3158), - [anon_sym_register] = ACTIONS(3158), - [anon_sym_inline] = ACTIONS(3158), - [anon_sym_thread_local] = ACTIONS(3158), - [anon_sym_const] = ACTIONS(3158), - [anon_sym_volatile] = ACTIONS(3158), - [anon_sym_restrict] = ACTIONS(3158), - [anon_sym__Atomic] = ACTIONS(3158), - [anon_sym_mutable] = ACTIONS(3158), - [anon_sym_constexpr] = ACTIONS(3158), - [anon_sym_COLON] = ACTIONS(3158), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3158), - [anon_sym_override] = ACTIONS(3158), - [anon_sym_virtual] = ACTIONS(3158), - [anon_sym_explicit] = ACTIONS(3158), - [anon_sym_template] = ACTIONS(3158), - [anon_sym_GT2] = ACTIONS(3160), - [anon_sym_operator] = ACTIONS(3158), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3158), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3158), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3158), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3158), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3158), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3158), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3158), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3158), - [anon_sym_MOZ_COLD] = ACTIONS(3158), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3158), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3158), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3158), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3158), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3158), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3158), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3158), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3158), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3158), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3158), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3158), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3158), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3158), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3158), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3158), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3158), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3158), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3158), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3158), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3158), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_NONNULL] = ACTIONS(3158), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3158), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3158), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3158), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3158), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3158), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_NORETURN] = ACTIONS(3158), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3158), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3158), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3158), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3158), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3158), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3158), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3158), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3158), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3158), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3158), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3158), - [anon_sym_MOZ_RAII] = ACTIONS(3158), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3158), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3158), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3158), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3158), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3158), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3158), - }, - [1383] = { - [sym__declaration_modifiers] = STATE(1383), - [sym_attribute_specifier] = STATE(1383), - [sym_attribute_declaration] = STATE(1383), - [sym_ms_declspec_modifier] = STATE(1383), - [sym_storage_class_specifier] = STATE(1383), - [sym_type_qualifier] = STATE(1383), - [sym_virtual_function_specifier] = STATE(1383), - [sym_macro_annotation] = STATE(1501), - [aux_sym__declaration_specifiers_repeat1] = STATE(1383), - [sym_identifier] = ACTIONS(3329), - [anon_sym_LPAREN2] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_AMP_AMP] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym_extern] = ACTIONS(3789), - [anon_sym___attribute__] = ACTIONS(3792), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3795), - [anon_sym___declspec] = ACTIONS(3798), - [anon_sym___based] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_EQ] = ACTIONS(3331), - [anon_sym_static] = ACTIONS(3789), - [anon_sym_register] = ACTIONS(3789), - [anon_sym_inline] = ACTIONS(3789), - [anon_sym_thread_local] = ACTIONS(3789), - [anon_sym_const] = ACTIONS(3801), - [anon_sym_volatile] = ACTIONS(3801), - [anon_sym_restrict] = ACTIONS(3801), - [anon_sym__Atomic] = ACTIONS(3801), - [anon_sym_mutable] = ACTIONS(3801), - [anon_sym_constexpr] = ACTIONS(3801), - [anon_sym_COLON] = ACTIONS(3331), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3804), - [anon_sym_operator] = ACTIONS(3329), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3807), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3807), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3807), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3807), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3807), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3807), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3807), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3807), - [anon_sym_MOZ_COLD] = ACTIONS(3807), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3807), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3807), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3807), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3807), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3807), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3807), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3807), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3807), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3807), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3807), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3807), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3807), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3807), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3807), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3807), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3807), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3807), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3807), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3807), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3807), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3807), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3807), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3807), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3807), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3807), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3807), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3807), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3807), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3807), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3807), - [anon_sym_MOZ_NONNULL] = ACTIONS(3807), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3807), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3807), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3807), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3807), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3807), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3807), - [anon_sym_MOZ_NORETURN] = ACTIONS(3807), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3807), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3807), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3807), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3807), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3807), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3807), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3807), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3807), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3807), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3807), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3807), - [anon_sym_MOZ_RAII] = ACTIONS(3807), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3807), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3807), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3807), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3807), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3807), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3807), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3807), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3807), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3807), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3807), - }, - [1384] = { - [sym_field_declaration_list] = STATE(1321), - [sym_virtual_specifier] = STATE(4131), - [sym_base_class_clause] = STATE(4701), - [anon_sym_COMMA] = ACTIONS(3438), - [anon_sym_RPAREN] = ACTIONS(3438), - [anon_sym_LPAREN2] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_AMP] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_extern] = ACTIONS(3438), - [anon_sym___attribute__] = ACTIONS(3438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3438), - [anon_sym___declspec] = ACTIONS(3438), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3438), - [anon_sym_static] = ACTIONS(3438), - [anon_sym_register] = ACTIONS(3438), - [anon_sym_inline] = ACTIONS(3438), - [anon_sym_thread_local] = ACTIONS(3438), - [anon_sym_const] = ACTIONS(3436), - [anon_sym_volatile] = ACTIONS(3438), - [anon_sym_restrict] = ACTIONS(3438), - [anon_sym__Atomic] = ACTIONS(3438), - [anon_sym_mutable] = ACTIONS(3438), - [anon_sym_constexpr] = ACTIONS(3438), - [anon_sym_COLON] = ACTIONS(3749), - [anon_sym_DASH_GT] = ACTIONS(3438), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3810), - [anon_sym_override] = ACTIONS(3810), - [anon_sym_virtual] = ACTIONS(3438), - [anon_sym_GT2] = ACTIONS(3438), - [anon_sym_noexcept] = ACTIONS(3438), - [anon_sym_throw] = ACTIONS(3438), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3438), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3438), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3436), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3438), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3438), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3436), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3438), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3438), - [anon_sym_MOZ_COLD] = ACTIONS(3438), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3438), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3438), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3438), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3438), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3438), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3436), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3438), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3438), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3438), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3438), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3438), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3438), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3438), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3438), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3438), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3438), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3438), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3438), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3438), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3438), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3438), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3438), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3436), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3438), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3438), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3438), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3438), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3436), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3438), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3438), - [anon_sym_MOZ_NONNULL] = ACTIONS(3436), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3438), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3438), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3438), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3438), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3438), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3438), - [anon_sym_MOZ_NORETURN] = ACTIONS(3436), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3438), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3438), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3438), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3438), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3438), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3438), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3438), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3438), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3438), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3438), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3438), - [anon_sym_MOZ_RAII] = ACTIONS(3438), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3438), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3438), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3438), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3438), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3438), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3438), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3438), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3438), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3438), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3438), - }, - [1385] = { - [sym_field_declaration_list] = STATE(1345), - [sym_virtual_specifier] = STATE(4155), - [sym_base_class_clause] = STATE(4735), - [anon_sym_COMMA] = ACTIONS(3485), - [anon_sym_RPAREN] = ACTIONS(3485), - [anon_sym_LPAREN2] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3483), - [anon_sym_SEMI] = ACTIONS(3485), - [anon_sym_extern] = ACTIONS(3485), - [anon_sym___attribute__] = ACTIONS(3485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3485), - [anon_sym___declspec] = ACTIONS(3485), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3483), - [anon_sym_EQ] = ACTIONS(3485), - [anon_sym_static] = ACTIONS(3485), - [anon_sym_register] = ACTIONS(3485), - [anon_sym_inline] = ACTIONS(3485), - [anon_sym_thread_local] = ACTIONS(3485), - [anon_sym_const] = ACTIONS(3483), - [anon_sym_volatile] = ACTIONS(3485), - [anon_sym_restrict] = ACTIONS(3485), - [anon_sym__Atomic] = ACTIONS(3485), - [anon_sym_mutable] = ACTIONS(3485), - [anon_sym_constexpr] = ACTIONS(3485), - [anon_sym_COLON] = ACTIONS(3749), - [anon_sym_DASH_GT] = ACTIONS(3485), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3810), - [anon_sym_override] = ACTIONS(3810), - [anon_sym_virtual] = ACTIONS(3485), - [anon_sym_GT2] = ACTIONS(3485), - [anon_sym_noexcept] = ACTIONS(3485), - [anon_sym_throw] = ACTIONS(3485), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3485), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3485), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3483), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3485), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3485), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3483), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3485), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3485), - [anon_sym_MOZ_COLD] = ACTIONS(3485), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3485), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3485), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3485), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3485), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3485), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3485), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3485), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3485), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3485), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3485), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3485), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3485), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3485), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3485), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3485), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3485), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3485), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3485), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3485), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3485), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3485), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3483), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3485), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3485), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3485), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3485), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3483), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3485), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3485), - [anon_sym_MOZ_NONNULL] = ACTIONS(3483), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3485), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3485), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3485), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3485), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3485), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3485), - [anon_sym_MOZ_NORETURN] = ACTIONS(3483), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3485), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3485), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3485), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3485), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3485), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3485), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3485), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3485), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3485), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3485), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3485), - [anon_sym_MOZ_RAII] = ACTIONS(3485), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3485), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3485), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3485), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3485), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3485), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3485), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3485), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3485), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3485), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3485), - }, - [1386] = { - [sym__declaration_modifiers] = STATE(1387), - [sym_attribute_specifier] = STATE(1387), - [sym_attribute_declaration] = STATE(1387), - [sym_ms_declspec_modifier] = STATE(1387), - [sym_storage_class_specifier] = STATE(1387), - [sym_type_qualifier] = STATE(1387), - [sym_virtual_function_specifier] = STATE(1387), - [sym_macro_annotation] = STATE(1501), - [aux_sym__declaration_specifiers_repeat1] = STATE(1387), - [sym_identifier] = ACTIONS(3372), - [anon_sym_LPAREN2] = ACTIONS(3374), - [anon_sym_STAR] = ACTIONS(3374), - [anon_sym_AMP_AMP] = ACTIONS(3374), - [anon_sym_AMP] = ACTIONS(3372), - [anon_sym_SEMI] = ACTIONS(3374), - [anon_sym_extern] = ACTIONS(3812), - [anon_sym___attribute__] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3816), - [anon_sym___declspec] = ACTIONS(3818), - [anon_sym___based] = ACTIONS(3372), - [anon_sym_LBRACE] = ACTIONS(3374), - [anon_sym_EQ] = ACTIONS(3374), - [anon_sym_static] = ACTIONS(3812), - [anon_sym_register] = ACTIONS(3812), - [anon_sym_inline] = ACTIONS(3812), - [anon_sym_thread_local] = ACTIONS(3812), - [anon_sym_const] = ACTIONS(3820), - [anon_sym_volatile] = ACTIONS(3820), - [anon_sym_restrict] = ACTIONS(3820), - [anon_sym__Atomic] = ACTIONS(3820), - [anon_sym_mutable] = ACTIONS(3820), - [anon_sym_constexpr] = ACTIONS(3820), - [anon_sym_COLON] = ACTIONS(3374), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3822), - [anon_sym_operator] = ACTIONS(3372), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3824), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3824), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3824), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3824), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3824), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3824), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3824), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3824), - [anon_sym_MOZ_COLD] = ACTIONS(3824), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3824), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3824), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3824), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3824), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3824), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3824), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3824), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3824), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3824), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3824), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3824), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3824), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3824), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3824), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3824), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3824), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3824), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3824), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3824), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3824), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_NONNULL] = ACTIONS(3824), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3824), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3824), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3824), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3824), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3824), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_NORETURN] = ACTIONS(3824), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3824), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3824), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3824), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3824), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3824), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3824), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3824), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3824), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3824), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3824), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3824), - [anon_sym_MOZ_RAII] = ACTIONS(3824), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3824), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3824), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3824), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3824), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3824), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3824), - }, - [1387] = { - [sym__declaration_modifiers] = STATE(1383), - [sym_attribute_specifier] = STATE(1383), - [sym_attribute_declaration] = STATE(1383), - [sym_ms_declspec_modifier] = STATE(1383), - [sym_storage_class_specifier] = STATE(1383), - [sym_type_qualifier] = STATE(1383), - [sym_virtual_function_specifier] = STATE(1383), - [sym_macro_annotation] = STATE(1501), - [aux_sym__declaration_specifiers_repeat1] = STATE(1383), - [sym_identifier] = ACTIONS(3368), - [anon_sym_LPAREN2] = ACTIONS(3370), - [anon_sym_STAR] = ACTIONS(3370), - [anon_sym_AMP_AMP] = ACTIONS(3370), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_SEMI] = ACTIONS(3370), - [anon_sym_extern] = ACTIONS(3812), - [anon_sym___attribute__] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3816), - [anon_sym___declspec] = ACTIONS(3818), - [anon_sym___based] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3370), - [anon_sym_EQ] = ACTIONS(3370), - [anon_sym_static] = ACTIONS(3812), - [anon_sym_register] = ACTIONS(3812), - [anon_sym_inline] = ACTIONS(3812), - [anon_sym_thread_local] = ACTIONS(3812), - [anon_sym_const] = ACTIONS(3820), - [anon_sym_volatile] = ACTIONS(3820), - [anon_sym_restrict] = ACTIONS(3820), - [anon_sym__Atomic] = ACTIONS(3820), - [anon_sym_mutable] = ACTIONS(3820), - [anon_sym_constexpr] = ACTIONS(3820), - [anon_sym_COLON] = ACTIONS(3370), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3822), - [anon_sym_operator] = ACTIONS(3368), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3824), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3824), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3824), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3824), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3824), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3824), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3824), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3824), - [anon_sym_MOZ_COLD] = ACTIONS(3824), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3824), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3824), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3824), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3824), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3824), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3824), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3824), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3824), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3824), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3824), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3824), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3824), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3824), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3824), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3824), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3824), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3824), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3824), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3824), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3824), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_NONNULL] = ACTIONS(3824), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3824), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3824), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3824), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3824), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3824), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_NORETURN] = ACTIONS(3824), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3824), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3824), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3824), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3824), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3824), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3824), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3824), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3824), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3824), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3824), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3824), - [anon_sym_MOZ_RAII] = ACTIONS(3824), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3824), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3824), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3824), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3824), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3824), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3824), - }, - [1388] = { - [sym_enumerator_list] = STATE(1429), - [sym__enum_base_clause] = STATE(1401), - [sym_identifier] = ACTIONS(3826), - [anon_sym_COMMA] = ACTIONS(3828), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_AMP_AMP] = ACTIONS(3828), - [anon_sym_AMP] = ACTIONS(3826), - [anon_sym_SEMI] = ACTIONS(3828), - [anon_sym_extern] = ACTIONS(3826), - [anon_sym___attribute__] = ACTIONS(3826), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3828), - [anon_sym___declspec] = ACTIONS(3826), - [anon_sym___based] = ACTIONS(3826), - [anon_sym_LBRACE] = ACTIONS(3828), - [anon_sym_LBRACK] = ACTIONS(3826), - [anon_sym_EQ] = ACTIONS(3828), - [anon_sym_static] = ACTIONS(3826), - [anon_sym_register] = ACTIONS(3826), - [anon_sym_inline] = ACTIONS(3826), - [anon_sym_thread_local] = ACTIONS(3826), - [anon_sym_const] = ACTIONS(3826), - [anon_sym_volatile] = ACTIONS(3826), - [anon_sym_restrict] = ACTIONS(3826), - [anon_sym__Atomic] = ACTIONS(3826), - [anon_sym_mutable] = ACTIONS(3826), - [anon_sym_constexpr] = ACTIONS(3826), - [anon_sym_COLON] = ACTIONS(3828), - [anon_sym_DASH_GT] = ACTIONS(3828), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3826), - [anon_sym_override] = ACTIONS(3826), - [anon_sym_virtual] = ACTIONS(3826), - [anon_sym_operator] = ACTIONS(3826), - [anon_sym_noexcept] = ACTIONS(3826), - [anon_sym_throw] = ACTIONS(3826), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3826), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3826), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3826), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3826), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3826), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3826), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3826), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3826), - [anon_sym_MOZ_COLD] = ACTIONS(3826), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3826), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3826), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3826), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3826), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3826), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3826), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3826), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3826), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3826), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3826), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3826), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3826), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3826), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3826), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3826), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3826), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3826), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3826), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3826), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3826), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_NONNULL] = ACTIONS(3826), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3826), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3826), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3826), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3826), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3826), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_NORETURN] = ACTIONS(3826), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3826), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3826), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3826), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3826), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3826), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3826), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3826), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3826), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3826), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3826), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3826), - [anon_sym_MOZ_RAII] = ACTIONS(3826), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3826), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3826), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3826), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3826), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3826), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3826), - }, - [1389] = { - [sym_field_declaration_list] = STATE(1347), - [sym_virtual_specifier] = STATE(4138), - [sym_base_class_clause] = STATE(4707), - [anon_sym_COMMA] = ACTIONS(3444), - [anon_sym_RPAREN] = ACTIONS(3444), - [anon_sym_LPAREN2] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3444), - [anon_sym_AMP_AMP] = ACTIONS(3444), - [anon_sym_AMP] = ACTIONS(3442), - [anon_sym_SEMI] = ACTIONS(3444), - [anon_sym_extern] = ACTIONS(3444), - [anon_sym___attribute__] = ACTIONS(3444), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3444), - [anon_sym___declspec] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3442), - [anon_sym_EQ] = ACTIONS(3444), - [anon_sym_static] = ACTIONS(3444), - [anon_sym_register] = ACTIONS(3444), - [anon_sym_inline] = ACTIONS(3444), - [anon_sym_thread_local] = ACTIONS(3444), - [anon_sym_const] = ACTIONS(3442), - [anon_sym_volatile] = ACTIONS(3444), - [anon_sym_restrict] = ACTIONS(3444), - [anon_sym__Atomic] = ACTIONS(3444), - [anon_sym_mutable] = ACTIONS(3444), - [anon_sym_constexpr] = ACTIONS(3444), - [anon_sym_COLON] = ACTIONS(3749), - [anon_sym_DASH_GT] = ACTIONS(3444), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3810), - [anon_sym_override] = ACTIONS(3810), - [anon_sym_virtual] = ACTIONS(3444), - [anon_sym_GT2] = ACTIONS(3444), - [anon_sym_noexcept] = ACTIONS(3444), - [anon_sym_throw] = ACTIONS(3444), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3444), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3444), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3442), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3444), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3444), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3442), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3444), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3444), - [anon_sym_MOZ_COLD] = ACTIONS(3444), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3444), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3444), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3444), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3444), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3444), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3442), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3444), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3444), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3444), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3444), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3444), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3444), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3444), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3444), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3444), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3444), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3444), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3444), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3444), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3444), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3444), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3444), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3442), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3444), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3444), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3444), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3444), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3442), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3444), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3444), - [anon_sym_MOZ_NONNULL] = ACTIONS(3442), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3444), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3444), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3444), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3444), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3444), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3444), - [anon_sym_MOZ_NORETURN] = ACTIONS(3442), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3444), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3444), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3444), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3444), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3444), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3444), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3444), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3444), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3444), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3444), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3444), - [anon_sym_MOZ_RAII] = ACTIONS(3444), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3444), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3444), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3444), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3444), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3444), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3444), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3444), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3444), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3444), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3444), - }, - [1390] = { - [sym_enumerator_list] = STATE(1313), - [sym__enum_base_clause] = STATE(1296), - [sym_identifier] = ACTIONS(3826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3828), - [anon_sym_COMMA] = ACTIONS(3828), - [anon_sym_RPAREN] = ACTIONS(3828), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_TILDE] = ACTIONS(3828), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_AMP_AMP] = ACTIONS(3828), - [anon_sym_AMP] = ACTIONS(3826), - [anon_sym_extern] = ACTIONS(3826), - [anon_sym___attribute__] = ACTIONS(3826), - [anon_sym_COLON_COLON] = ACTIONS(3828), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3828), - [anon_sym___declspec] = ACTIONS(3826), - [anon_sym___based] = ACTIONS(3826), - [anon_sym_LBRACE] = ACTIONS(3450), - [anon_sym_LBRACK] = ACTIONS(3826), - [anon_sym_EQ] = ACTIONS(3828), - [anon_sym_static] = ACTIONS(3826), - [anon_sym_register] = ACTIONS(3826), - [anon_sym_inline] = ACTIONS(3826), - [anon_sym_thread_local] = ACTIONS(3826), - [anon_sym_const] = ACTIONS(3826), - [anon_sym_volatile] = ACTIONS(3826), - [anon_sym_restrict] = ACTIONS(3826), - [anon_sym__Atomic] = ACTIONS(3826), - [anon_sym_mutable] = ACTIONS(3826), - [anon_sym_constexpr] = ACTIONS(3826), - [anon_sym_COLON] = ACTIONS(3830), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3826), - [anon_sym_template] = ACTIONS(3826), - [anon_sym_GT2] = ACTIONS(3828), - [anon_sym_operator] = ACTIONS(3826), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3826), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3826), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3826), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3826), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3826), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3826), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3826), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3826), - [anon_sym_MOZ_COLD] = ACTIONS(3826), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3826), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3826), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3826), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3826), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3826), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3826), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3826), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3826), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3826), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3826), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3826), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3826), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3826), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3826), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3826), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3826), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3826), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3826), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3826), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3826), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_NONNULL] = ACTIONS(3826), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3826), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3826), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3826), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3826), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3826), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_NORETURN] = ACTIONS(3826), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3826), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3826), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3826), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3826), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3826), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3826), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3826), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3826), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3826), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3826), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3826), - [anon_sym_MOZ_RAII] = ACTIONS(3826), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3826), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3826), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3826), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3826), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3826), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3826), - }, - [1391] = { - [sym__declaration_modifiers] = STATE(1397), - [sym_attribute_specifier] = STATE(1397), - [sym_attribute_declaration] = STATE(1397), - [sym_ms_declspec_modifier] = STATE(1397), - [sym_storage_class_specifier] = STATE(1397), - [sym_type_qualifier] = STATE(1397), - [sym_virtual_function_specifier] = STATE(1397), - [sym_macro_annotation] = STATE(1501), - [aux_sym__declaration_specifiers_repeat1] = STATE(1397), - [sym_identifier] = ACTIONS(3364), - [anon_sym_LPAREN2] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3366), - [anon_sym_AMP_AMP] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3366), - [anon_sym_extern] = ACTIONS(3812), - [anon_sym___attribute__] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3816), - [anon_sym___declspec] = ACTIONS(3818), - [anon_sym___based] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3366), - [anon_sym_EQ] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3812), - [anon_sym_register] = ACTIONS(3812), - [anon_sym_inline] = ACTIONS(3812), - [anon_sym_thread_local] = ACTIONS(3812), - [anon_sym_const] = ACTIONS(3820), - [anon_sym_volatile] = ACTIONS(3820), - [anon_sym_restrict] = ACTIONS(3820), - [anon_sym__Atomic] = ACTIONS(3820), - [anon_sym_mutable] = ACTIONS(3820), - [anon_sym_constexpr] = ACTIONS(3820), - [anon_sym_COLON] = ACTIONS(3366), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3822), - [anon_sym_operator] = ACTIONS(3364), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3824), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3824), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3824), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3824), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3824), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3824), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3824), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3824), - [anon_sym_MOZ_COLD] = ACTIONS(3824), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3824), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3824), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3824), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3824), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3824), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3824), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3824), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3824), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3824), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3824), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3824), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3824), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3824), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3824), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3824), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3824), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3824), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3824), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3824), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3824), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_NONNULL] = ACTIONS(3824), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3824), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3824), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3824), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3824), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3824), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_NORETURN] = ACTIONS(3824), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3824), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3824), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3824), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3824), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3824), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3824), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3824), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3824), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3824), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3824), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3824), - [anon_sym_MOZ_RAII] = ACTIONS(3824), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3824), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3824), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3824), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3824), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3824), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3824), - }, - [1392] = { - [sym_identifier] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_RPAREN] = ACTIONS(3407), - [anon_sym_LPAREN2] = ACTIONS(3407), - [anon_sym_STAR] = ACTIONS(3407), - [anon_sym_AMP_AMP] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3407), - [anon_sym_extern] = ACTIONS(3405), - [anon_sym___attribute__] = ACTIONS(3405), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3407), - [anon_sym___declspec] = ACTIONS(3405), - [anon_sym___based] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_EQ] = ACTIONS(3407), - [anon_sym_static] = ACTIONS(3405), - [anon_sym_register] = ACTIONS(3405), - [anon_sym_inline] = ACTIONS(3405), - [anon_sym_thread_local] = ACTIONS(3405), - [anon_sym_const] = ACTIONS(3405), - [anon_sym_volatile] = ACTIONS(3405), - [anon_sym_restrict] = ACTIONS(3405), - [anon_sym__Atomic] = ACTIONS(3405), - [anon_sym_mutable] = ACTIONS(3405), - [anon_sym_constexpr] = ACTIONS(3405), - [anon_sym_COLON] = ACTIONS(3407), - [anon_sym_DASH_GT] = ACTIONS(3407), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3405), - [anon_sym_override] = ACTIONS(3405), - [anon_sym_virtual] = ACTIONS(3405), - [anon_sym_GT2] = ACTIONS(3407), - [anon_sym_operator] = ACTIONS(3405), - [anon_sym_noexcept] = ACTIONS(3405), - [anon_sym_throw] = ACTIONS(3405), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3405), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3405), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3405), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3405), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3405), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3405), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3405), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3405), - [anon_sym_MOZ_COLD] = ACTIONS(3405), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3405), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3405), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3405), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3405), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3405), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3405), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3405), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3405), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3405), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3405), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3405), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3405), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3405), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3405), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3405), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3405), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3405), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3405), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3405), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3405), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3405), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_NONNULL] = ACTIONS(3405), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3405), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3405), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3405), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3405), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3405), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_NORETURN] = ACTIONS(3405), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3405), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3405), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3405), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3405), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3405), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3405), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3405), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3405), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3405), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3405), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3405), - [anon_sym_MOZ_RAII] = ACTIONS(3405), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3405), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3405), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3405), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3405), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3405), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3405), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3405), - }, - [1393] = { - [sym_field_declaration_list] = STATE(1322), - [sym_virtual_specifier] = STATE(4137), - [sym_base_class_clause] = STATE(4703), - [anon_sym_COMMA] = ACTIONS(3493), - [anon_sym_RPAREN] = ACTIONS(3493), - [anon_sym_LPAREN2] = ACTIONS(3493), - [anon_sym_STAR] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_AMP] = ACTIONS(3491), - [anon_sym_SEMI] = ACTIONS(3493), - [anon_sym_extern] = ACTIONS(3493), - [anon_sym___attribute__] = ACTIONS(3493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3493), - [anon_sym___declspec] = ACTIONS(3493), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3491), - [anon_sym_EQ] = ACTIONS(3493), - [anon_sym_static] = ACTIONS(3493), - [anon_sym_register] = ACTIONS(3493), - [anon_sym_inline] = ACTIONS(3493), - [anon_sym_thread_local] = ACTIONS(3493), - [anon_sym_const] = ACTIONS(3491), - [anon_sym_volatile] = ACTIONS(3493), - [anon_sym_restrict] = ACTIONS(3493), - [anon_sym__Atomic] = ACTIONS(3493), - [anon_sym_mutable] = ACTIONS(3493), - [anon_sym_constexpr] = ACTIONS(3493), - [anon_sym_COLON] = ACTIONS(3749), - [anon_sym_DASH_GT] = ACTIONS(3493), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3810), - [anon_sym_override] = ACTIONS(3810), - [anon_sym_virtual] = ACTIONS(3493), - [anon_sym_GT2] = ACTIONS(3493), - [anon_sym_noexcept] = ACTIONS(3493), - [anon_sym_throw] = ACTIONS(3493), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3493), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3493), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3491), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3493), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3493), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3491), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3493), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3493), - [anon_sym_MOZ_COLD] = ACTIONS(3493), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3493), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3493), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3493), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3493), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3493), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3491), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3493), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3493), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3493), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3493), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3493), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3493), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3493), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3493), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3493), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3493), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3493), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3493), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3493), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3493), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3493), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3493), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3491), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3493), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3493), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3493), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3493), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3491), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3493), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3493), - [anon_sym_MOZ_NONNULL] = ACTIONS(3491), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3493), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3493), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3493), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3493), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3493), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3493), - [anon_sym_MOZ_NORETURN] = ACTIONS(3491), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3493), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3493), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3493), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3493), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3493), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3493), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3493), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3493), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3493), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3493), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3493), - [anon_sym_MOZ_RAII] = ACTIONS(3493), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3493), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3493), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3493), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3493), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3493), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3493), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3493), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3493), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3493), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3493), - }, - [1394] = { - [sym_enumerator_list] = STATE(1456), - [sym__enum_base_clause] = STATE(1406), - [sym_identifier] = ACTIONS(3832), - [anon_sym_COMMA] = ACTIONS(3834), - [anon_sym_LPAREN2] = ACTIONS(3834), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP_AMP] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3832), - [anon_sym_SEMI] = ACTIONS(3834), - [anon_sym_extern] = ACTIONS(3832), - [anon_sym___attribute__] = ACTIONS(3832), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3834), - [anon_sym___declspec] = ACTIONS(3832), - [anon_sym___based] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_LBRACK] = ACTIONS(3832), - [anon_sym_EQ] = ACTIONS(3834), - [anon_sym_static] = ACTIONS(3832), - [anon_sym_register] = ACTIONS(3832), - [anon_sym_inline] = ACTIONS(3832), - [anon_sym_thread_local] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3832), - [anon_sym_volatile] = ACTIONS(3832), - [anon_sym_restrict] = ACTIONS(3832), - [anon_sym__Atomic] = ACTIONS(3832), - [anon_sym_mutable] = ACTIONS(3832), - [anon_sym_constexpr] = ACTIONS(3832), - [anon_sym_COLON] = ACTIONS(3834), - [anon_sym_DASH_GT] = ACTIONS(3834), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3832), - [anon_sym_override] = ACTIONS(3832), - [anon_sym_virtual] = ACTIONS(3832), - [anon_sym_operator] = ACTIONS(3832), - [anon_sym_noexcept] = ACTIONS(3832), - [anon_sym_throw] = ACTIONS(3832), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3832), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3832), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3832), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3832), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3832), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3832), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3832), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3832), - [anon_sym_MOZ_COLD] = ACTIONS(3832), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3832), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3832), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3832), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3832), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3832), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3832), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3832), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3832), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3832), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3832), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3832), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3832), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3832), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3832), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3832), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3832), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3832), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3832), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3832), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3832), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_NONNULL] = ACTIONS(3832), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3832), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3832), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3832), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3832), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3832), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_NORETURN] = ACTIONS(3832), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3832), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3832), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3832), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3832), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3832), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3832), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3832), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3832), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3832), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3832), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3832), - [anon_sym_MOZ_RAII] = ACTIONS(3832), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3832), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3832), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3832), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3832), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3832), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3832), - }, - [1395] = { - [sym_enumerator_list] = STATE(1354), - [sym__enum_base_clause] = STATE(1307), - [sym_identifier] = ACTIONS(3832), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3834), - [anon_sym_COMMA] = ACTIONS(3834), - [anon_sym_RPAREN] = ACTIONS(3834), - [anon_sym_LPAREN2] = ACTIONS(3834), - [anon_sym_TILDE] = ACTIONS(3834), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP_AMP] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3832), - [anon_sym_extern] = ACTIONS(3832), - [anon_sym___attribute__] = ACTIONS(3832), - [anon_sym_COLON_COLON] = ACTIONS(3834), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3834), - [anon_sym___declspec] = ACTIONS(3832), - [anon_sym___based] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3450), - [anon_sym_LBRACK] = ACTIONS(3832), - [anon_sym_EQ] = ACTIONS(3834), - [anon_sym_static] = ACTIONS(3832), - [anon_sym_register] = ACTIONS(3832), - [anon_sym_inline] = ACTIONS(3832), - [anon_sym_thread_local] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3832), - [anon_sym_volatile] = ACTIONS(3832), - [anon_sym_restrict] = ACTIONS(3832), - [anon_sym__Atomic] = ACTIONS(3832), - [anon_sym_mutable] = ACTIONS(3832), - [anon_sym_constexpr] = ACTIONS(3832), - [anon_sym_COLON] = ACTIONS(3830), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3832), - [anon_sym_template] = ACTIONS(3832), - [anon_sym_GT2] = ACTIONS(3834), - [anon_sym_operator] = ACTIONS(3832), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3832), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3832), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3832), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3832), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3832), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3832), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3832), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3832), - [anon_sym_MOZ_COLD] = ACTIONS(3832), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3832), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3832), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3832), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3832), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3832), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3832), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3832), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3832), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3832), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3832), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3832), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3832), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3832), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3832), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3832), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3832), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3832), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3832), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3832), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3832), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_NONNULL] = ACTIONS(3832), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3832), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3832), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3832), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3832), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3832), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_NORETURN] = ACTIONS(3832), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3832), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3832), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3832), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3832), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3832), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3832), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3832), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3832), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3832), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3832), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3832), - [anon_sym_MOZ_RAII] = ACTIONS(3832), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3832), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3832), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3832), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3832), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3832), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3832), - }, - [1396] = { - [sym_field_declaration_list] = STATE(1348), - [sym_virtual_specifier] = STATE(4174), - [sym_base_class_clause] = STATE(4724), - [anon_sym_COMMA] = ACTIONS(3473), - [anon_sym_RPAREN] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(3473), - [anon_sym_STAR] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_AMP] = ACTIONS(3471), - [anon_sym_SEMI] = ACTIONS(3473), - [anon_sym_extern] = ACTIONS(3473), - [anon_sym___attribute__] = ACTIONS(3473), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3473), - [anon_sym___declspec] = ACTIONS(3473), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3471), - [anon_sym_EQ] = ACTIONS(3473), - [anon_sym_static] = ACTIONS(3473), - [anon_sym_register] = ACTIONS(3473), - [anon_sym_inline] = ACTIONS(3473), - [anon_sym_thread_local] = ACTIONS(3473), - [anon_sym_const] = ACTIONS(3471), - [anon_sym_volatile] = ACTIONS(3473), - [anon_sym_restrict] = ACTIONS(3473), - [anon_sym__Atomic] = ACTIONS(3473), - [anon_sym_mutable] = ACTIONS(3473), - [anon_sym_constexpr] = ACTIONS(3473), - [anon_sym_COLON] = ACTIONS(3749), - [anon_sym_DASH_GT] = ACTIONS(3473), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3810), - [anon_sym_override] = ACTIONS(3810), - [anon_sym_virtual] = ACTIONS(3473), - [anon_sym_GT2] = ACTIONS(3473), - [anon_sym_noexcept] = ACTIONS(3473), - [anon_sym_throw] = ACTIONS(3473), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3473), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3473), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3471), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3473), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3473), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3471), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3473), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3473), - [anon_sym_MOZ_COLD] = ACTIONS(3473), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3473), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3473), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3473), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3473), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3473), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3473), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3473), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3473), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3473), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3473), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3473), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3473), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3473), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3473), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3473), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3473), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3473), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3473), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3473), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3473), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3473), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3471), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3473), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3473), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3473), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3473), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3471), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3473), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3473), - [anon_sym_MOZ_NONNULL] = ACTIONS(3471), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3473), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3473), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3473), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3473), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3473), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3473), - [anon_sym_MOZ_NORETURN] = ACTIONS(3471), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3473), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3473), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3473), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3473), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3473), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3473), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3473), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3473), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3473), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3473), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3473), - [anon_sym_MOZ_RAII] = ACTIONS(3473), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3473), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3473), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3473), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3473), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3473), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3473), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3473), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3473), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3473), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3473), - }, - [1397] = { - [sym__declaration_modifiers] = STATE(1383), - [sym_attribute_specifier] = STATE(1383), - [sym_attribute_declaration] = STATE(1383), - [sym_ms_declspec_modifier] = STATE(1383), - [sym_storage_class_specifier] = STATE(1383), - [sym_type_qualifier] = STATE(1383), - [sym_virtual_function_specifier] = STATE(1383), - [sym_macro_annotation] = STATE(1501), - [aux_sym__declaration_specifiers_repeat1] = STATE(1383), - [sym_identifier] = ACTIONS(3376), - [anon_sym_LPAREN2] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_AMP_AMP] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_SEMI] = ACTIONS(3378), - [anon_sym_extern] = ACTIONS(3812), - [anon_sym___attribute__] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3816), - [anon_sym___declspec] = ACTIONS(3818), - [anon_sym___based] = ACTIONS(3376), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_EQ] = ACTIONS(3378), - [anon_sym_static] = ACTIONS(3812), - [anon_sym_register] = ACTIONS(3812), - [anon_sym_inline] = ACTIONS(3812), - [anon_sym_thread_local] = ACTIONS(3812), - [anon_sym_const] = ACTIONS(3820), - [anon_sym_volatile] = ACTIONS(3820), - [anon_sym_restrict] = ACTIONS(3820), - [anon_sym__Atomic] = ACTIONS(3820), - [anon_sym_mutable] = ACTIONS(3820), - [anon_sym_constexpr] = ACTIONS(3820), - [anon_sym_COLON] = ACTIONS(3378), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3822), - [anon_sym_operator] = ACTIONS(3376), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3824), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3824), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3824), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3824), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3824), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3824), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3824), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3824), - [anon_sym_MOZ_COLD] = ACTIONS(3824), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3824), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3824), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3824), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3824), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3824), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3824), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3824), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3824), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3824), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3824), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3824), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3824), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3824), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3824), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3824), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3824), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3824), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3824), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3824), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3824), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_NONNULL] = ACTIONS(3824), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3824), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3824), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3824), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3824), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3824), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_NORETURN] = ACTIONS(3824), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3824), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3824), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3824), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3824), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3824), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3824), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3824), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3824), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3824), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3824), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3824), - [anon_sym_MOZ_RAII] = ACTIONS(3824), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3824), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3824), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3824), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3824), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3824), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3824), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3824), - }, - [1398] = { - [sym_field_declaration_list] = STATE(1317), - [sym_virtual_specifier] = STATE(4184), - [sym_base_class_clause] = STATE(4722), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_RPAREN] = ACTIONS(3425), - [anon_sym_LPAREN2] = ACTIONS(3425), - [anon_sym_STAR] = ACTIONS(3425), - [anon_sym_AMP_AMP] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_extern] = ACTIONS(3425), - [anon_sym___attribute__] = ACTIONS(3425), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3425), - [anon_sym___declspec] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_EQ] = ACTIONS(3425), - [anon_sym_static] = ACTIONS(3425), - [anon_sym_register] = ACTIONS(3425), - [anon_sym_inline] = ACTIONS(3425), - [anon_sym_thread_local] = ACTIONS(3425), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_volatile] = ACTIONS(3425), - [anon_sym_restrict] = ACTIONS(3425), - [anon_sym__Atomic] = ACTIONS(3425), - [anon_sym_mutable] = ACTIONS(3425), - [anon_sym_constexpr] = ACTIONS(3425), - [anon_sym_COLON] = ACTIONS(3749), - [anon_sym_DASH_GT] = ACTIONS(3425), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3810), - [anon_sym_override] = ACTIONS(3810), - [anon_sym_virtual] = ACTIONS(3425), - [anon_sym_GT2] = ACTIONS(3425), - [anon_sym_noexcept] = ACTIONS(3425), - [anon_sym_throw] = ACTIONS(3425), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3425), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3425), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3423), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3425), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3425), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3423), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3425), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3425), - [anon_sym_MOZ_COLD] = ACTIONS(3425), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3425), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3425), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3425), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3425), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3425), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3425), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3425), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3425), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3425), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3425), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3425), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3425), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3425), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3425), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3425), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3425), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3425), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3425), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3425), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3425), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3425), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3423), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3425), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3425), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3425), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3425), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3423), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3425), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3425), - [anon_sym_MOZ_NONNULL] = ACTIONS(3423), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3425), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3425), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3425), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3425), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3425), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3425), - [anon_sym_MOZ_NORETURN] = ACTIONS(3423), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3425), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3425), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3425), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3425), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3425), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3425), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3425), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3425), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3425), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3425), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3425), - [anon_sym_MOZ_RAII] = ACTIONS(3425), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3425), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3425), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3425), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3425), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3425), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3425), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3425), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3425), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3425), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3425), - }, - [1399] = { - [sym_field_declaration_list] = STATE(1317), - [sym_virtual_specifier] = STATE(4184), - [sym_base_class_clause] = STATE(4722), - [sym_identifier] = ACTIONS(3423), - [anon_sym_LPAREN2] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_STAR] = ACTIONS(3425), - [anon_sym_AMP_AMP] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3836), - [anon_sym_extern] = ACTIONS(3423), - [anon_sym___attribute__] = ACTIONS(3423), - [anon_sym_COLON_COLON] = ACTIONS(3425), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3425), - [anon_sym___declspec] = ACTIONS(3423), - [anon_sym___based] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_static] = ACTIONS(3423), - [anon_sym_register] = ACTIONS(3423), - [anon_sym_inline] = ACTIONS(3423), - [anon_sym_thread_local] = ACTIONS(3423), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_volatile] = ACTIONS(3423), - [anon_sym_restrict] = ACTIONS(3423), - [anon_sym__Atomic] = ACTIONS(3423), - [anon_sym_mutable] = ACTIONS(3423), - [anon_sym_constexpr] = ACTIONS(3423), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3423), - [anon_sym_template] = ACTIONS(3423), - [anon_sym_operator] = ACTIONS(3423), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3423), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3423), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3423), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3423), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3423), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3423), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3423), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3423), - [anon_sym_MOZ_COLD] = ACTIONS(3423), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3423), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3423), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3423), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3423), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3423), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3423), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3423), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3423), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3423), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3423), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3423), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3423), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3423), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3423), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3423), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3423), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3423), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3423), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3423), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3423), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_NONNULL] = ACTIONS(3423), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3423), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3423), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3423), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3423), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3423), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_NORETURN] = ACTIONS(3423), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3423), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3423), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3423), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3423), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3423), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3423), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3423), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3423), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3423), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3423), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3423), - [anon_sym_MOZ_RAII] = ACTIONS(3423), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3423), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3423), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3423), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3423), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3423), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3423), - }, - [1400] = { - [sym_field_declaration_list] = STATE(1348), - [sym_virtual_specifier] = STATE(4174), - [sym_base_class_clause] = STATE(4724), - [sym_identifier] = ACTIONS(3471), - [anon_sym_LPAREN2] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3473), - [anon_sym_STAR] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_AMP] = ACTIONS(3471), - [anon_sym_SEMI] = ACTIONS(3836), - [anon_sym_extern] = ACTIONS(3471), - [anon_sym___attribute__] = ACTIONS(3471), - [anon_sym_COLON_COLON] = ACTIONS(3473), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3473), - [anon_sym___declspec] = ACTIONS(3471), - [anon_sym___based] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3471), - [anon_sym_static] = ACTIONS(3471), - [anon_sym_register] = ACTIONS(3471), - [anon_sym_inline] = ACTIONS(3471), - [anon_sym_thread_local] = ACTIONS(3471), - [anon_sym_const] = ACTIONS(3471), - [anon_sym_volatile] = ACTIONS(3471), - [anon_sym_restrict] = ACTIONS(3471), - [anon_sym__Atomic] = ACTIONS(3471), - [anon_sym_mutable] = ACTIONS(3471), - [anon_sym_constexpr] = ACTIONS(3471), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3471), - [anon_sym_template] = ACTIONS(3471), - [anon_sym_operator] = ACTIONS(3471), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3471), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3471), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3471), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3471), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3471), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3471), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3471), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3471), - [anon_sym_MOZ_COLD] = ACTIONS(3471), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3471), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3471), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3471), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3471), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3471), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3471), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3471), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3471), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3471), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3471), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3471), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3471), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3471), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3471), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3471), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3471), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3471), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3471), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3471), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3471), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_NONNULL] = ACTIONS(3471), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3471), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3471), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3471), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3471), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3471), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_NORETURN] = ACTIONS(3471), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3471), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3471), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3471), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3471), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3471), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3471), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3471), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3471), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3471), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3471), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3471), - [anon_sym_MOZ_RAII] = ACTIONS(3471), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3471), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3471), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3471), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3471), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3471), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3471), - }, - [1401] = { - [sym_enumerator_list] = STATE(1459), - [sym_identifier] = ACTIONS(3446), - [anon_sym_COMMA] = ACTIONS(3448), - [anon_sym_LPAREN2] = ACTIONS(3448), - [anon_sym_STAR] = ACTIONS(3448), - [anon_sym_AMP_AMP] = ACTIONS(3448), - [anon_sym_AMP] = ACTIONS(3446), - [anon_sym_SEMI] = ACTIONS(3448), - [anon_sym_extern] = ACTIONS(3446), - [anon_sym___attribute__] = ACTIONS(3446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3448), - [anon_sym___declspec] = ACTIONS(3446), - [anon_sym___based] = ACTIONS(3446), - [anon_sym_LBRACE] = ACTIONS(3448), - [anon_sym_LBRACK] = ACTIONS(3446), - [anon_sym_EQ] = ACTIONS(3448), - [anon_sym_static] = ACTIONS(3446), - [anon_sym_register] = ACTIONS(3446), - [anon_sym_inline] = ACTIONS(3446), - [anon_sym_thread_local] = ACTIONS(3446), - [anon_sym_const] = ACTIONS(3446), - [anon_sym_volatile] = ACTIONS(3446), - [anon_sym_restrict] = ACTIONS(3446), - [anon_sym__Atomic] = ACTIONS(3446), - [anon_sym_mutable] = ACTIONS(3446), - [anon_sym_constexpr] = ACTIONS(3446), - [anon_sym_COLON] = ACTIONS(3448), - [anon_sym_DASH_GT] = ACTIONS(3448), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3446), - [anon_sym_override] = ACTIONS(3446), - [anon_sym_virtual] = ACTIONS(3446), - [anon_sym_operator] = ACTIONS(3446), - [anon_sym_noexcept] = ACTIONS(3446), - [anon_sym_throw] = ACTIONS(3446), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3446), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3446), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3446), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3446), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3446), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3446), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3446), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3446), - [anon_sym_MOZ_COLD] = ACTIONS(3446), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3446), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3446), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3446), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3446), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3446), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3446), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3446), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3446), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3446), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3446), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3446), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3446), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3446), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3446), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3446), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3446), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3446), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3446), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3446), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3446), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3446), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3446), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3446), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3446), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3446), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3446), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3446), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3446), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3446), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3446), - [anon_sym_MOZ_NONNULL] = ACTIONS(3446), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3446), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3446), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3446), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3446), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3446), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3446), - [anon_sym_MOZ_NORETURN] = ACTIONS(3446), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3446), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3446), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3446), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3446), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3446), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3446), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3446), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3446), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3446), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3446), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3446), - [anon_sym_MOZ_RAII] = ACTIONS(3446), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3446), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3446), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3446), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3446), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3446), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3446), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3446), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3446), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3446), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3446), - }, - [1402] = { - [sym_field_declaration_list] = STATE(1345), - [sym_virtual_specifier] = STATE(4155), - [sym_base_class_clause] = STATE(4735), - [sym_identifier] = ACTIONS(3483), - [anon_sym_LPAREN2] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3483), - [anon_sym_SEMI] = ACTIONS(3838), - [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_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3483), - [anon_sym_static] = ACTIONS(3483), - [anon_sym_register] = ACTIONS(3483), - [anon_sym_inline] = ACTIONS(3483), - [anon_sym_thread_local] = ACTIONS(3483), - [anon_sym_const] = ACTIONS(3483), - [anon_sym_volatile] = ACTIONS(3483), - [anon_sym_restrict] = ACTIONS(3483), - [anon_sym__Atomic] = ACTIONS(3483), - [anon_sym_mutable] = ACTIONS(3483), - [anon_sym_constexpr] = ACTIONS(3483), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3483), - [anon_sym_template] = ACTIONS(3483), - [anon_sym_operator] = ACTIONS(3483), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3483), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3483), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3483), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3483), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3483), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3483), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3483), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3483), - [anon_sym_MOZ_COLD] = ACTIONS(3483), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3483), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3483), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3483), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3483), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3483), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3483), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3483), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3483), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3483), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3483), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3483), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3483), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3483), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3483), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3483), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3483), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3483), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3483), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3483), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3483), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_NONNULL] = ACTIONS(3483), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3483), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3483), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3483), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3483), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3483), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_NORETURN] = ACTIONS(3483), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3483), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3483), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3483), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3483), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3483), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3483), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3483), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3483), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3483), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3483), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3483), - [anon_sym_MOZ_RAII] = ACTIONS(3483), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3483), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3483), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3483), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3483), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3483), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3483), - }, - [1403] = { - [sym_field_declaration_list] = STATE(1345), - [sym_virtual_specifier] = STATE(4155), - [sym_base_class_clause] = STATE(4735), - [sym_identifier] = ACTIONS(3483), - [anon_sym_LPAREN2] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3483), - [anon_sym_SEMI] = ACTIONS(3836), - [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_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3483), - [anon_sym_static] = ACTIONS(3483), - [anon_sym_register] = ACTIONS(3483), - [anon_sym_inline] = ACTIONS(3483), - [anon_sym_thread_local] = ACTIONS(3483), - [anon_sym_const] = ACTIONS(3483), - [anon_sym_volatile] = ACTIONS(3483), - [anon_sym_restrict] = ACTIONS(3483), - [anon_sym__Atomic] = ACTIONS(3483), - [anon_sym_mutable] = ACTIONS(3483), - [anon_sym_constexpr] = ACTIONS(3483), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3483), - [anon_sym_template] = ACTIONS(3483), - [anon_sym_operator] = ACTIONS(3483), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3483), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3483), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3483), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3483), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3483), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3483), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3483), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3483), - [anon_sym_MOZ_COLD] = ACTIONS(3483), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3483), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3483), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3483), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3483), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3483), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3483), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3483), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3483), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3483), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3483), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3483), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3483), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3483), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3483), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3483), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3483), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3483), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3483), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3483), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3483), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_NONNULL] = ACTIONS(3483), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3483), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3483), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3483), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3483), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3483), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_NORETURN] = ACTIONS(3483), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3483), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3483), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3483), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3483), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3483), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3483), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3483), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3483), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3483), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3483), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3483), - [anon_sym_MOZ_RAII] = ACTIONS(3483), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3483), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3483), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3483), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3483), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3483), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3483), - }, - [1404] = { - [sym_field_declaration_list] = STATE(1345), - [sym_virtual_specifier] = STATE(4155), - [sym_base_class_clause] = STATE(4735), - [sym_identifier] = ACTIONS(3483), - [anon_sym_LPAREN2] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3483), - [anon_sym_SEMI] = ACTIONS(3840), - [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_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3483), - [anon_sym_static] = ACTIONS(3483), - [anon_sym_register] = ACTIONS(3483), - [anon_sym_inline] = ACTIONS(3483), - [anon_sym_thread_local] = ACTIONS(3483), - [anon_sym_const] = ACTIONS(3483), - [anon_sym_volatile] = ACTIONS(3483), - [anon_sym_restrict] = ACTIONS(3483), - [anon_sym__Atomic] = ACTIONS(3483), - [anon_sym_mutable] = ACTIONS(3483), - [anon_sym_constexpr] = ACTIONS(3483), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3483), - [anon_sym_template] = ACTIONS(3483), - [anon_sym_operator] = ACTIONS(3483), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3483), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3483), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3483), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3483), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3483), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3483), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3483), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3483), - [anon_sym_MOZ_COLD] = ACTIONS(3483), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3483), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3483), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3483), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3483), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3483), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3483), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3483), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3483), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3483), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3483), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3483), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3483), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3483), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3483), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3483), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3483), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3483), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3483), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3483), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3483), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3483), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_NONNULL] = ACTIONS(3483), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3483), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3483), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3483), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3483), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3483), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_NORETURN] = ACTIONS(3483), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3483), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3483), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3483), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3483), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3483), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3483), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3483), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3483), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3483), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3483), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3483), - [anon_sym_MOZ_RAII] = ACTIONS(3483), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3483), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3483), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3483), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3483), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3483), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3483), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3483), - }, - [1405] = { - [sym_field_declaration_list] = STATE(1348), - [sym_virtual_specifier] = STATE(4174), - [sym_base_class_clause] = STATE(4724), - [sym_identifier] = ACTIONS(3471), - [anon_sym_LPAREN2] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3473), - [anon_sym_STAR] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_AMP] = ACTIONS(3471), - [anon_sym_SEMI] = ACTIONS(3838), - [anon_sym_extern] = ACTIONS(3471), - [anon_sym___attribute__] = ACTIONS(3471), - [anon_sym_COLON_COLON] = ACTIONS(3473), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3473), - [anon_sym___declspec] = ACTIONS(3471), - [anon_sym___based] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3471), - [anon_sym_static] = ACTIONS(3471), - [anon_sym_register] = ACTIONS(3471), - [anon_sym_inline] = ACTIONS(3471), - [anon_sym_thread_local] = ACTIONS(3471), - [anon_sym_const] = ACTIONS(3471), - [anon_sym_volatile] = ACTIONS(3471), - [anon_sym_restrict] = ACTIONS(3471), - [anon_sym__Atomic] = ACTIONS(3471), - [anon_sym_mutable] = ACTIONS(3471), - [anon_sym_constexpr] = ACTIONS(3471), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3471), - [anon_sym_template] = ACTIONS(3471), - [anon_sym_operator] = ACTIONS(3471), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3471), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3471), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3471), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3471), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3471), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3471), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3471), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3471), - [anon_sym_MOZ_COLD] = ACTIONS(3471), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3471), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3471), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3471), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3471), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3471), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3471), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3471), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3471), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3471), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3471), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3471), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3471), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3471), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3471), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3471), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3471), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3471), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3471), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3471), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3471), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_NONNULL] = ACTIONS(3471), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3471), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3471), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3471), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3471), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3471), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_NORETURN] = ACTIONS(3471), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3471), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3471), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3471), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3471), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3471), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3471), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3471), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3471), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3471), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3471), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3471), - [anon_sym_MOZ_RAII] = ACTIONS(3471), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3471), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3471), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3471), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3471), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3471), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3471), - }, - [1406] = { - [sym_enumerator_list] = STATE(1439), - [sym_identifier] = ACTIONS(3487), - [anon_sym_COMMA] = ACTIONS(3489), - [anon_sym_LPAREN2] = ACTIONS(3489), - [anon_sym_STAR] = ACTIONS(3489), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_AMP] = ACTIONS(3487), - [anon_sym_SEMI] = ACTIONS(3489), - [anon_sym_extern] = ACTIONS(3487), - [anon_sym___attribute__] = ACTIONS(3487), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3489), - [anon_sym___declspec] = ACTIONS(3487), - [anon_sym___based] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3487), - [anon_sym_EQ] = ACTIONS(3489), - [anon_sym_static] = ACTIONS(3487), - [anon_sym_register] = ACTIONS(3487), - [anon_sym_inline] = ACTIONS(3487), - [anon_sym_thread_local] = ACTIONS(3487), - [anon_sym_const] = ACTIONS(3487), - [anon_sym_volatile] = ACTIONS(3487), - [anon_sym_restrict] = ACTIONS(3487), - [anon_sym__Atomic] = ACTIONS(3487), - [anon_sym_mutable] = ACTIONS(3487), - [anon_sym_constexpr] = ACTIONS(3487), - [anon_sym_COLON] = ACTIONS(3489), - [anon_sym_DASH_GT] = ACTIONS(3489), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3487), - [anon_sym_override] = ACTIONS(3487), - [anon_sym_virtual] = ACTIONS(3487), - [anon_sym_operator] = ACTIONS(3487), - [anon_sym_noexcept] = ACTIONS(3487), - [anon_sym_throw] = ACTIONS(3487), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3487), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3487), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3487), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3487), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3487), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3487), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3487), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3487), - [anon_sym_MOZ_COLD] = ACTIONS(3487), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3487), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3487), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3487), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3487), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3487), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3487), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3487), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3487), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3487), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3487), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3487), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3487), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3487), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3487), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3487), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3487), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3487), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3487), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3487), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3487), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3487), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3487), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3487), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3487), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3487), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3487), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3487), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3487), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3487), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3487), - [anon_sym_MOZ_NONNULL] = ACTIONS(3487), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3487), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3487), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3487), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3487), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3487), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3487), - [anon_sym_MOZ_NORETURN] = ACTIONS(3487), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3487), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3487), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3487), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3487), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3487), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3487), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3487), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3487), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3487), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3487), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3487), - [anon_sym_MOZ_RAII] = ACTIONS(3487), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3487), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3487), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3487), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3487), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3487), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3487), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3487), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3487), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3487), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3487), - }, - [1407] = { - [sym_field_declaration_list] = STATE(1348), - [sym_virtual_specifier] = STATE(4174), - [sym_base_class_clause] = STATE(4724), - [sym_identifier] = ACTIONS(3471), - [anon_sym_LPAREN2] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3473), - [anon_sym_STAR] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_AMP] = ACTIONS(3471), - [anon_sym_SEMI] = ACTIONS(3840), - [anon_sym_extern] = ACTIONS(3471), - [anon_sym___attribute__] = ACTIONS(3471), - [anon_sym_COLON_COLON] = ACTIONS(3473), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3473), - [anon_sym___declspec] = ACTIONS(3471), - [anon_sym___based] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3471), - [anon_sym_static] = ACTIONS(3471), - [anon_sym_register] = ACTIONS(3471), - [anon_sym_inline] = ACTIONS(3471), - [anon_sym_thread_local] = ACTIONS(3471), - [anon_sym_const] = ACTIONS(3471), - [anon_sym_volatile] = ACTIONS(3471), - [anon_sym_restrict] = ACTIONS(3471), - [anon_sym__Atomic] = ACTIONS(3471), - [anon_sym_mutable] = ACTIONS(3471), - [anon_sym_constexpr] = ACTIONS(3471), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3471), - [anon_sym_template] = ACTIONS(3471), - [anon_sym_operator] = ACTIONS(3471), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3471), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3471), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3471), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3471), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3471), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3471), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3471), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3471), - [anon_sym_MOZ_COLD] = ACTIONS(3471), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3471), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3471), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3471), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3471), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3471), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3471), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3471), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3471), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3471), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3471), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3471), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3471), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3471), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3471), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3471), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3471), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3471), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3471), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3471), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3471), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3471), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_NONNULL] = ACTIONS(3471), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3471), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3471), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3471), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3471), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3471), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_NORETURN] = ACTIONS(3471), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3471), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3471), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3471), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3471), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3471), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3471), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3471), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3471), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3471), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3471), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3471), - [anon_sym_MOZ_RAII] = ACTIONS(3471), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3471), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3471), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3471), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3471), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3471), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3471), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3471), - }, - [1408] = { - [sym_field_declaration_list] = STATE(1317), - [sym_virtual_specifier] = STATE(4184), - [sym_base_class_clause] = STATE(4722), - [sym_identifier] = ACTIONS(3423), - [anon_sym_LPAREN2] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_STAR] = ACTIONS(3425), - [anon_sym_AMP_AMP] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3840), - [anon_sym_extern] = ACTIONS(3423), - [anon_sym___attribute__] = ACTIONS(3423), - [anon_sym_COLON_COLON] = ACTIONS(3425), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3425), - [anon_sym___declspec] = ACTIONS(3423), - [anon_sym___based] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_static] = ACTIONS(3423), - [anon_sym_register] = ACTIONS(3423), - [anon_sym_inline] = ACTIONS(3423), - [anon_sym_thread_local] = ACTIONS(3423), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_volatile] = ACTIONS(3423), - [anon_sym_restrict] = ACTIONS(3423), - [anon_sym__Atomic] = ACTIONS(3423), - [anon_sym_mutable] = ACTIONS(3423), - [anon_sym_constexpr] = ACTIONS(3423), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3423), - [anon_sym_template] = ACTIONS(3423), - [anon_sym_operator] = ACTIONS(3423), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3423), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3423), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3423), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3423), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3423), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3423), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3423), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3423), - [anon_sym_MOZ_COLD] = ACTIONS(3423), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3423), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3423), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3423), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3423), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3423), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3423), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3423), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3423), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3423), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3423), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3423), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3423), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3423), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3423), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3423), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3423), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3423), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3423), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3423), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3423), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_NONNULL] = ACTIONS(3423), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3423), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3423), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3423), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3423), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3423), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_NORETURN] = ACTIONS(3423), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3423), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3423), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3423), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3423), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3423), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3423), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3423), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3423), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3423), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3423), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3423), - [anon_sym_MOZ_RAII] = ACTIONS(3423), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3423), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3423), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3423), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3423), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3423), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3423), - }, - [1409] = { - [sym_field_declaration_list] = STATE(1317), - [sym_virtual_specifier] = STATE(4184), - [sym_base_class_clause] = STATE(4722), - [sym_identifier] = ACTIONS(3423), - [anon_sym_LPAREN2] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_STAR] = ACTIONS(3425), - [anon_sym_AMP_AMP] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3838), - [anon_sym_extern] = ACTIONS(3423), - [anon_sym___attribute__] = ACTIONS(3423), - [anon_sym_COLON_COLON] = ACTIONS(3425), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3425), - [anon_sym___declspec] = ACTIONS(3423), - [anon_sym___based] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_static] = ACTIONS(3423), - [anon_sym_register] = ACTIONS(3423), - [anon_sym_inline] = ACTIONS(3423), - [anon_sym_thread_local] = ACTIONS(3423), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_volatile] = ACTIONS(3423), - [anon_sym_restrict] = ACTIONS(3423), - [anon_sym__Atomic] = ACTIONS(3423), - [anon_sym_mutable] = ACTIONS(3423), - [anon_sym_constexpr] = ACTIONS(3423), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3423), - [anon_sym_template] = ACTIONS(3423), - [anon_sym_operator] = ACTIONS(3423), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3423), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3423), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3423), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3423), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3423), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3423), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3423), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3423), - [anon_sym_MOZ_COLD] = ACTIONS(3423), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3423), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3423), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3423), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3423), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3423), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3423), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3423), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3423), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3423), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3423), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3423), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3423), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3423), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3423), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3423), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3423), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3423), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3423), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3423), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3423), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3423), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_NONNULL] = ACTIONS(3423), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3423), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3423), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3423), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3423), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3423), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_NORETURN] = ACTIONS(3423), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3423), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3423), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3423), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3423), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3423), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3423), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3423), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3423), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3423), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3423), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3423), - [anon_sym_MOZ_RAII] = ACTIONS(3423), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3423), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3423), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3423), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3423), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3423), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3423), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3423), - }, - [1410] = { - [sym_identifier] = ACTIONS(3452), - [anon_sym_COMMA] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_STAR] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_AMP] = ACTIONS(3452), - [anon_sym_SEMI] = ACTIONS(3454), - [anon_sym_extern] = ACTIONS(3452), - [anon_sym___attribute__] = ACTIONS(3452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), - [anon_sym___declspec] = ACTIONS(3452), - [anon_sym___based] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_LBRACK] = ACTIONS(3452), - [anon_sym_EQ] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3452), - [anon_sym_register] = ACTIONS(3452), - [anon_sym_inline] = ACTIONS(3452), - [anon_sym_thread_local] = ACTIONS(3452), - [anon_sym_const] = ACTIONS(3452), - [anon_sym_volatile] = ACTIONS(3452), - [anon_sym_restrict] = ACTIONS(3452), - [anon_sym__Atomic] = ACTIONS(3452), - [anon_sym_mutable] = ACTIONS(3452), - [anon_sym_constexpr] = ACTIONS(3452), - [anon_sym_COLON] = ACTIONS(3454), - [anon_sym_DASH_GT] = ACTIONS(3454), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3452), - [anon_sym_override] = ACTIONS(3452), - [anon_sym_virtual] = ACTIONS(3452), - [anon_sym_operator] = ACTIONS(3452), - [anon_sym_noexcept] = ACTIONS(3452), - [anon_sym_throw] = ACTIONS(3452), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3452), - [anon_sym_MOZ_COLD] = ACTIONS(3452), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3452), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3452), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3452), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3452), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3452), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3452), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3452), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3452), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3452), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3452), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3452), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3452), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_RAII] = ACTIONS(3452), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3452), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3452), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3452), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3452), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3452), - }, - [1411] = { - [sym_identifier] = ACTIONS(3607), - [anon_sym_COMMA] = ACTIONS(3609), - [anon_sym_LPAREN2] = ACTIONS(3609), - [anon_sym_STAR] = ACTIONS(3609), - [anon_sym_AMP_AMP] = ACTIONS(3609), - [anon_sym_AMP] = ACTIONS(3607), - [anon_sym_SEMI] = ACTIONS(3609), - [anon_sym_extern] = ACTIONS(3607), - [anon_sym___attribute__] = ACTIONS(3607), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3609), - [anon_sym___declspec] = ACTIONS(3607), - [anon_sym___based] = ACTIONS(3607), - [anon_sym_LBRACE] = ACTIONS(3609), - [anon_sym_LBRACK] = ACTIONS(3607), - [anon_sym_EQ] = ACTIONS(3609), - [anon_sym_static] = ACTIONS(3607), - [anon_sym_register] = ACTIONS(3607), - [anon_sym_inline] = ACTIONS(3607), - [anon_sym_thread_local] = ACTIONS(3607), - [anon_sym_const] = ACTIONS(3607), - [anon_sym_volatile] = ACTIONS(3607), - [anon_sym_restrict] = ACTIONS(3607), - [anon_sym__Atomic] = ACTIONS(3607), - [anon_sym_mutable] = ACTIONS(3607), - [anon_sym_constexpr] = ACTIONS(3607), - [anon_sym_COLON] = ACTIONS(3609), - [anon_sym_DASH_GT] = ACTIONS(3609), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3607), - [anon_sym_override] = ACTIONS(3607), - [anon_sym_virtual] = ACTIONS(3607), - [anon_sym_operator] = ACTIONS(3607), - [anon_sym_noexcept] = ACTIONS(3607), - [anon_sym_throw] = ACTIONS(3607), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3607), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3607), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3607), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3607), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3607), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3607), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3607), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3607), - [anon_sym_MOZ_COLD] = ACTIONS(3607), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3607), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3607), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3607), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3607), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3607), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3607), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3607), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3607), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3607), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3607), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3607), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3607), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3607), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3607), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3607), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3607), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3607), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3607), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3607), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3607), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3607), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3607), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3607), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3607), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3607), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3607), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3607), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3607), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3607), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3607), - [anon_sym_MOZ_NONNULL] = ACTIONS(3607), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3607), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3607), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3607), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3607), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3607), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3607), - [anon_sym_MOZ_NORETURN] = ACTIONS(3607), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3607), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3607), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3607), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3607), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3607), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3607), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3607), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3607), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3607), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3607), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3607), - [anon_sym_MOZ_RAII] = ACTIONS(3607), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3607), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3607), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3607), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3607), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3607), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3607), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3607), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3607), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3607), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3607), - }, - [1412] = { - [sym_identifier] = ACTIONS(3603), - [anon_sym_COMMA] = ACTIONS(3605), - [anon_sym_LPAREN2] = ACTIONS(3605), - [anon_sym_STAR] = ACTIONS(3605), - [anon_sym_AMP_AMP] = ACTIONS(3605), - [anon_sym_AMP] = ACTIONS(3603), - [anon_sym_SEMI] = ACTIONS(3605), - [anon_sym_extern] = ACTIONS(3603), - [anon_sym___attribute__] = ACTIONS(3603), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3605), - [anon_sym___declspec] = ACTIONS(3603), - [anon_sym___based] = ACTIONS(3603), - [anon_sym_LBRACE] = ACTIONS(3605), - [anon_sym_LBRACK] = ACTIONS(3603), - [anon_sym_EQ] = ACTIONS(3605), - [anon_sym_static] = ACTIONS(3603), - [anon_sym_register] = ACTIONS(3603), - [anon_sym_inline] = ACTIONS(3603), - [anon_sym_thread_local] = ACTIONS(3603), - [anon_sym_const] = ACTIONS(3603), - [anon_sym_volatile] = ACTIONS(3603), - [anon_sym_restrict] = ACTIONS(3603), - [anon_sym__Atomic] = ACTIONS(3603), - [anon_sym_mutable] = ACTIONS(3603), - [anon_sym_constexpr] = ACTIONS(3603), - [anon_sym_COLON] = ACTIONS(3605), - [anon_sym_DASH_GT] = ACTIONS(3605), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3603), - [anon_sym_override] = ACTIONS(3603), - [anon_sym_virtual] = ACTIONS(3603), - [anon_sym_operator] = ACTIONS(3603), - [anon_sym_noexcept] = ACTIONS(3603), - [anon_sym_throw] = ACTIONS(3603), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3603), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3603), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3603), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3603), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3603), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3603), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3603), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3603), - [anon_sym_MOZ_COLD] = ACTIONS(3603), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3603), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3603), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3603), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3603), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3603), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3603), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3603), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3603), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3603), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3603), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3603), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3603), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3603), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3603), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3603), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3603), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3603), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3603), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3603), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3603), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3603), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3603), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3603), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3603), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3603), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3603), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3603), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3603), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3603), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3603), - [anon_sym_MOZ_NONNULL] = ACTIONS(3603), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3603), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3603), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3603), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3603), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3603), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3603), - [anon_sym_MOZ_NORETURN] = ACTIONS(3603), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3603), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3603), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3603), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3603), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3603), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3603), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3603), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3603), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3603), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3603), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3603), - [anon_sym_MOZ_RAII] = ACTIONS(3603), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3603), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3603), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3603), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3603), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3603), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3603), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3603), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3603), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3603), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3603), - }, - [1413] = { - [sym_identifier] = ACTIONS(3583), - [anon_sym_COMMA] = ACTIONS(3585), - [anon_sym_LPAREN2] = ACTIONS(3585), - [anon_sym_STAR] = ACTIONS(3585), - [anon_sym_AMP_AMP] = ACTIONS(3585), - [anon_sym_AMP] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3585), - [anon_sym_extern] = ACTIONS(3583), - [anon_sym___attribute__] = ACTIONS(3583), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3585), - [anon_sym___declspec] = ACTIONS(3583), - [anon_sym___based] = ACTIONS(3583), - [anon_sym_LBRACE] = ACTIONS(3585), - [anon_sym_LBRACK] = ACTIONS(3583), - [anon_sym_EQ] = ACTIONS(3585), - [anon_sym_static] = ACTIONS(3583), - [anon_sym_register] = ACTIONS(3583), - [anon_sym_inline] = ACTIONS(3583), - [anon_sym_thread_local] = ACTIONS(3583), - [anon_sym_const] = ACTIONS(3583), - [anon_sym_volatile] = ACTIONS(3583), - [anon_sym_restrict] = ACTIONS(3583), - [anon_sym__Atomic] = ACTIONS(3583), - [anon_sym_mutable] = ACTIONS(3583), - [anon_sym_constexpr] = ACTIONS(3583), - [anon_sym_COLON] = ACTIONS(3585), - [anon_sym_DASH_GT] = ACTIONS(3585), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3583), - [anon_sym_override] = ACTIONS(3583), - [anon_sym_virtual] = ACTIONS(3583), - [anon_sym_operator] = ACTIONS(3583), - [anon_sym_noexcept] = ACTIONS(3583), - [anon_sym_throw] = ACTIONS(3583), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3583), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3583), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3583), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3583), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3583), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3583), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3583), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3583), - [anon_sym_MOZ_COLD] = ACTIONS(3583), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3583), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3583), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3583), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3583), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3583), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3583), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3583), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3583), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3583), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3583), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3583), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3583), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3583), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3583), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3583), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3583), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3583), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3583), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3583), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3583), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3583), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3583), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3583), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3583), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3583), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3583), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3583), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3583), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3583), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3583), - [anon_sym_MOZ_NONNULL] = ACTIONS(3583), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3583), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3583), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3583), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3583), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3583), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3583), - [anon_sym_MOZ_NORETURN] = ACTIONS(3583), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3583), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3583), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3583), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3583), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3583), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3583), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3583), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3583), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3583), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3583), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3583), - [anon_sym_MOZ_RAII] = ACTIONS(3583), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3583), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3583), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3583), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3583), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3583), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3583), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3583), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3583), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3583), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3583), - }, - [1414] = { - [sym_identifier] = ACTIONS(3150), - [anon_sym_COMMA] = ACTIONS(3152), - [anon_sym_LPAREN2] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_AMP_AMP] = ACTIONS(3152), - [anon_sym_AMP] = ACTIONS(3150), - [anon_sym_SEMI] = ACTIONS(3152), - [anon_sym_extern] = ACTIONS(3150), - [anon_sym___attribute__] = ACTIONS(3150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3152), - [anon_sym___declspec] = ACTIONS(3150), - [anon_sym___based] = ACTIONS(3150), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_EQ] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3150), - [anon_sym_register] = ACTIONS(3150), - [anon_sym_inline] = ACTIONS(3150), - [anon_sym_thread_local] = ACTIONS(3150), - [anon_sym_const] = ACTIONS(3150), - [anon_sym_volatile] = ACTIONS(3150), - [anon_sym_restrict] = ACTIONS(3150), - [anon_sym__Atomic] = ACTIONS(3150), - [anon_sym_mutable] = ACTIONS(3150), - [anon_sym_constexpr] = ACTIONS(3150), - [anon_sym_COLON] = ACTIONS(3152), - [anon_sym_DASH_GT] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3150), - [anon_sym_override] = ACTIONS(3150), - [anon_sym_virtual] = ACTIONS(3150), - [anon_sym_operator] = ACTIONS(3150), - [anon_sym_noexcept] = ACTIONS(3150), - [anon_sym_throw] = ACTIONS(3150), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3150), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3150), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3150), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3150), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3150), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3150), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3150), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3150), - [anon_sym_MOZ_COLD] = ACTIONS(3150), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3150), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3150), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3150), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3150), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3150), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3150), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3150), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3150), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3150), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3150), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3150), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3150), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3150), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3150), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3150), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3150), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3150), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3150), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3150), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3150), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_NONNULL] = ACTIONS(3150), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3150), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3150), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3150), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3150), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3150), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_NORETURN] = ACTIONS(3150), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3150), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3150), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3150), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3150), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3150), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3150), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3150), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3150), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3150), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3150), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3150), - [anon_sym_MOZ_RAII] = ACTIONS(3150), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3150), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3150), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3150), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3150), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3150), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3150), - }, - [1415] = { - [sym_identifier] = ACTIONS(3154), - [anon_sym_COMMA] = ACTIONS(3156), - [anon_sym_LPAREN2] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(3156), - [anon_sym_AMP_AMP] = ACTIONS(3156), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3156), - [anon_sym_extern] = ACTIONS(3154), - [anon_sym___attribute__] = ACTIONS(3154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3156), - [anon_sym___declspec] = ACTIONS(3154), - [anon_sym___based] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_EQ] = ACTIONS(3156), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_register] = ACTIONS(3154), - [anon_sym_inline] = ACTIONS(3154), - [anon_sym_thread_local] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_volatile] = ACTIONS(3154), - [anon_sym_restrict] = ACTIONS(3154), - [anon_sym__Atomic] = ACTIONS(3154), - [anon_sym_mutable] = ACTIONS(3154), - [anon_sym_constexpr] = ACTIONS(3154), - [anon_sym_COLON] = ACTIONS(3156), - [anon_sym_DASH_GT] = ACTIONS(3156), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_virtual] = ACTIONS(3154), - [anon_sym_operator] = ACTIONS(3154), - [anon_sym_noexcept] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3154), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3154), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3154), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3154), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3154), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3154), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3154), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3154), - [anon_sym_MOZ_COLD] = ACTIONS(3154), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3154), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3154), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3154), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3154), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3154), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3154), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3154), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3154), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3154), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3154), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3154), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3154), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3154), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3154), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3154), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3154), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3154), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3154), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3154), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3154), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_NONNULL] = ACTIONS(3154), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3154), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3154), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3154), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3154), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3154), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_NORETURN] = ACTIONS(3154), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3154), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3154), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3154), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3154), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3154), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3154), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3154), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3154), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3154), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3154), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3154), - [anon_sym_MOZ_RAII] = ACTIONS(3154), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3154), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3154), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3154), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3154), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3154), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3154), - }, - [1416] = { - [sym_identifier] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3601), - [anon_sym_STAR] = ACTIONS(3601), - [anon_sym_AMP_AMP] = ACTIONS(3601), - [anon_sym_AMP] = ACTIONS(3599), - [anon_sym_SEMI] = ACTIONS(3601), - [anon_sym_extern] = ACTIONS(3599), - [anon_sym___attribute__] = ACTIONS(3599), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3601), - [anon_sym___declspec] = ACTIONS(3599), - [anon_sym___based] = ACTIONS(3599), - [anon_sym_LBRACE] = ACTIONS(3601), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_EQ] = ACTIONS(3601), - [anon_sym_static] = ACTIONS(3599), - [anon_sym_register] = ACTIONS(3599), - [anon_sym_inline] = ACTIONS(3599), - [anon_sym_thread_local] = ACTIONS(3599), - [anon_sym_const] = ACTIONS(3599), - [anon_sym_volatile] = ACTIONS(3599), - [anon_sym_restrict] = ACTIONS(3599), - [anon_sym__Atomic] = ACTIONS(3599), - [anon_sym_mutable] = ACTIONS(3599), - [anon_sym_constexpr] = ACTIONS(3599), - [anon_sym_COLON] = ACTIONS(3601), - [anon_sym_DASH_GT] = ACTIONS(3601), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3599), - [anon_sym_override] = ACTIONS(3599), - [anon_sym_virtual] = ACTIONS(3599), - [anon_sym_operator] = ACTIONS(3599), - [anon_sym_noexcept] = ACTIONS(3599), - [anon_sym_throw] = ACTIONS(3599), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3599), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3599), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3599), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3599), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3599), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3599), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3599), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3599), - [anon_sym_MOZ_COLD] = ACTIONS(3599), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3599), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3599), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3599), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3599), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3599), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3599), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3599), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3599), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3599), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3599), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3599), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3599), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3599), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3599), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3599), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3599), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3599), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3599), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3599), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3599), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3599), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3599), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3599), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3599), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3599), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3599), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3599), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3599), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3599), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3599), - [anon_sym_MOZ_NONNULL] = ACTIONS(3599), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3599), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3599), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3599), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3599), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3599), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3599), - [anon_sym_MOZ_NORETURN] = ACTIONS(3599), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3599), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3599), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3599), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3599), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3599), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3599), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3599), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3599), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3599), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3599), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3599), - [anon_sym_MOZ_RAII] = ACTIONS(3599), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3599), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3599), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3599), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3599), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3599), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3599), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3599), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3599), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3599), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3599), - }, - [1417] = { - [sym_identifier] = ACTIONS(3587), - [anon_sym_COMMA] = ACTIONS(3589), - [anon_sym_LPAREN2] = ACTIONS(3589), - [anon_sym_STAR] = ACTIONS(3589), - [anon_sym_AMP_AMP] = ACTIONS(3589), - [anon_sym_AMP] = ACTIONS(3587), - [anon_sym_SEMI] = ACTIONS(3589), - [anon_sym_extern] = ACTIONS(3587), - [anon_sym___attribute__] = ACTIONS(3587), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3589), - [anon_sym___declspec] = ACTIONS(3587), - [anon_sym___based] = ACTIONS(3587), - [anon_sym_LBRACE] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3587), - [anon_sym_EQ] = ACTIONS(3589), - [anon_sym_static] = ACTIONS(3587), - [anon_sym_register] = ACTIONS(3587), - [anon_sym_inline] = ACTIONS(3587), - [anon_sym_thread_local] = ACTIONS(3587), - [anon_sym_const] = ACTIONS(3587), - [anon_sym_volatile] = ACTIONS(3587), - [anon_sym_restrict] = ACTIONS(3587), - [anon_sym__Atomic] = ACTIONS(3587), - [anon_sym_mutable] = ACTIONS(3587), - [anon_sym_constexpr] = ACTIONS(3587), - [anon_sym_COLON] = ACTIONS(3589), - [anon_sym_DASH_GT] = ACTIONS(3589), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3587), - [anon_sym_override] = ACTIONS(3587), - [anon_sym_virtual] = ACTIONS(3587), - [anon_sym_operator] = ACTIONS(3587), - [anon_sym_noexcept] = ACTIONS(3587), - [anon_sym_throw] = ACTIONS(3587), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3587), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3587), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3587), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3587), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3587), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3587), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3587), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3587), - [anon_sym_MOZ_COLD] = ACTIONS(3587), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3587), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3587), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3587), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3587), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3587), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3587), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3587), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3587), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3587), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3587), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3587), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3587), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3587), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3587), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3587), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3587), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3587), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3587), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3587), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3587), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3587), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3587), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3587), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3587), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3587), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3587), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3587), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3587), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3587), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3587), - [anon_sym_MOZ_NONNULL] = ACTIONS(3587), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3587), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3587), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3587), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3587), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3587), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3587), - [anon_sym_MOZ_NORETURN] = ACTIONS(3587), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3587), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3587), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3587), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3587), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3587), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3587), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3587), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3587), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3587), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3587), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3587), - [anon_sym_MOZ_RAII] = ACTIONS(3587), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3587), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3587), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3587), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3587), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3587), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3587), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3587), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3587), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3587), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3587), - }, - [1418] = { - [sym_identifier] = ACTIONS(3575), - [anon_sym_COMMA] = ACTIONS(3577), - [anon_sym_LPAREN2] = ACTIONS(3577), - [anon_sym_STAR] = ACTIONS(3577), - [anon_sym_AMP_AMP] = ACTIONS(3577), - [anon_sym_AMP] = ACTIONS(3575), - [anon_sym_SEMI] = ACTIONS(3577), - [anon_sym_extern] = ACTIONS(3575), - [anon_sym___attribute__] = ACTIONS(3575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3577), - [anon_sym___declspec] = ACTIONS(3575), - [anon_sym___based] = ACTIONS(3575), - [anon_sym_LBRACE] = ACTIONS(3577), - [anon_sym_LBRACK] = ACTIONS(3575), - [anon_sym_EQ] = ACTIONS(3577), - [anon_sym_static] = ACTIONS(3575), - [anon_sym_register] = ACTIONS(3575), - [anon_sym_inline] = ACTIONS(3575), - [anon_sym_thread_local] = ACTIONS(3575), - [anon_sym_const] = ACTIONS(3575), - [anon_sym_volatile] = ACTIONS(3575), - [anon_sym_restrict] = ACTIONS(3575), - [anon_sym__Atomic] = ACTIONS(3575), - [anon_sym_mutable] = ACTIONS(3575), - [anon_sym_constexpr] = ACTIONS(3575), - [anon_sym_COLON] = ACTIONS(3577), - [anon_sym_DASH_GT] = ACTIONS(3577), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3575), - [anon_sym_override] = ACTIONS(3575), - [anon_sym_virtual] = ACTIONS(3575), - [anon_sym_operator] = ACTIONS(3575), - [anon_sym_noexcept] = ACTIONS(3575), - [anon_sym_throw] = ACTIONS(3575), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3575), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3575), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3575), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3575), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3575), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3575), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3575), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3575), - [anon_sym_MOZ_COLD] = ACTIONS(3575), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3575), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3575), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3575), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3575), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3575), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3575), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3575), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3575), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3575), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3575), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3575), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3575), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3575), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3575), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3575), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3575), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3575), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3575), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3575), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3575), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3575), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3575), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3575), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3575), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3575), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3575), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3575), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3575), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3575), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3575), - [anon_sym_MOZ_NONNULL] = ACTIONS(3575), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3575), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3575), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3575), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3575), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3575), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3575), - [anon_sym_MOZ_NORETURN] = ACTIONS(3575), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3575), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3575), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3575), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3575), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3575), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3575), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3575), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3575), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3575), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3575), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3575), - [anon_sym_MOZ_RAII] = ACTIONS(3575), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3575), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3575), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3575), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3575), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3575), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3575), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3575), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3575), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3575), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3575), - }, - [1419] = { - [sym_identifier] = ACTIONS(3661), - [anon_sym_COMMA] = ACTIONS(3663), - [anon_sym_LPAREN2] = ACTIONS(3663), - [anon_sym_STAR] = ACTIONS(3663), - [anon_sym_AMP_AMP] = ACTIONS(3663), - [anon_sym_AMP] = ACTIONS(3661), - [anon_sym_SEMI] = ACTIONS(3663), - [anon_sym_extern] = ACTIONS(3661), - [anon_sym___attribute__] = ACTIONS(3661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3663), - [anon_sym___declspec] = ACTIONS(3661), - [anon_sym___based] = ACTIONS(3661), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_LBRACK] = ACTIONS(3661), - [anon_sym_EQ] = ACTIONS(3663), - [anon_sym_static] = ACTIONS(3661), - [anon_sym_register] = ACTIONS(3661), - [anon_sym_inline] = ACTIONS(3661), - [anon_sym_thread_local] = ACTIONS(3661), - [anon_sym_const] = ACTIONS(3661), - [anon_sym_volatile] = ACTIONS(3661), - [anon_sym_restrict] = ACTIONS(3661), - [anon_sym__Atomic] = ACTIONS(3661), - [anon_sym_mutable] = ACTIONS(3661), - [anon_sym_constexpr] = ACTIONS(3661), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_DASH_GT] = ACTIONS(3663), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3661), - [anon_sym_override] = ACTIONS(3661), - [anon_sym_virtual] = ACTIONS(3661), - [anon_sym_operator] = ACTIONS(3661), - [anon_sym_noexcept] = ACTIONS(3661), - [anon_sym_throw] = ACTIONS(3661), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3661), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3661), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3661), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3661), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3661), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3661), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3661), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3661), - [anon_sym_MOZ_COLD] = ACTIONS(3661), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3661), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3661), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3661), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3661), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3661), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3661), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3661), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3661), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3661), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3661), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3661), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3661), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3661), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3661), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3661), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3661), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3661), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3661), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3661), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3661), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3661), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3661), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3661), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3661), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3661), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3661), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3661), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3661), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3661), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3661), - [anon_sym_MOZ_NONNULL] = ACTIONS(3661), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3661), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3661), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3661), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3661), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3661), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3661), - [anon_sym_MOZ_NORETURN] = ACTIONS(3661), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3661), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3661), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3661), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3661), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3661), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3661), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3661), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3661), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3661), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3661), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3661), - [anon_sym_MOZ_RAII] = ACTIONS(3661), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3661), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3661), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3661), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3661), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3661), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3661), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3661), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3661), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3661), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3661), - }, - [1420] = { - [sym_identifier] = ACTIONS(3641), - [anon_sym_COMMA] = ACTIONS(3643), - [anon_sym_LPAREN2] = ACTIONS(3643), - [anon_sym_STAR] = ACTIONS(3643), - [anon_sym_AMP_AMP] = ACTIONS(3643), - [anon_sym_AMP] = ACTIONS(3641), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym_extern] = ACTIONS(3641), - [anon_sym___attribute__] = ACTIONS(3641), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3643), - [anon_sym___declspec] = ACTIONS(3641), - [anon_sym___based] = ACTIONS(3641), - [anon_sym_LBRACE] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_EQ] = ACTIONS(3643), - [anon_sym_static] = ACTIONS(3641), - [anon_sym_register] = ACTIONS(3641), - [anon_sym_inline] = ACTIONS(3641), - [anon_sym_thread_local] = ACTIONS(3641), - [anon_sym_const] = ACTIONS(3641), - [anon_sym_volatile] = ACTIONS(3641), - [anon_sym_restrict] = ACTIONS(3641), - [anon_sym__Atomic] = ACTIONS(3641), - [anon_sym_mutable] = ACTIONS(3641), - [anon_sym_constexpr] = ACTIONS(3641), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_DASH_GT] = ACTIONS(3643), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3641), - [anon_sym_override] = ACTIONS(3641), - [anon_sym_virtual] = ACTIONS(3641), - [anon_sym_operator] = ACTIONS(3641), - [anon_sym_noexcept] = ACTIONS(3641), - [anon_sym_throw] = ACTIONS(3641), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3641), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3641), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3641), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3641), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3641), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3641), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3641), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3641), - [anon_sym_MOZ_COLD] = ACTIONS(3641), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3641), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3641), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3641), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3641), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3641), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3641), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3641), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3641), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3641), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3641), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3641), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3641), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3641), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3641), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3641), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3641), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3641), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3641), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3641), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3641), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3641), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3641), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3641), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3641), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3641), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3641), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3641), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3641), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3641), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3641), - [anon_sym_MOZ_NONNULL] = ACTIONS(3641), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3641), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3641), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3641), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3641), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3641), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3641), - [anon_sym_MOZ_NORETURN] = ACTIONS(3641), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3641), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3641), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3641), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3641), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3641), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3641), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3641), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3641), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3641), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3641), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3641), - [anon_sym_MOZ_RAII] = ACTIONS(3641), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3641), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3641), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3641), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3641), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3641), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3641), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3641), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3641), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3641), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3641), - }, - [1421] = { - [sym_identifier] = ACTIONS(3633), - [anon_sym_COMMA] = ACTIONS(3635), - [anon_sym_LPAREN2] = ACTIONS(3635), - [anon_sym_STAR] = ACTIONS(3635), - [anon_sym_AMP_AMP] = ACTIONS(3635), - [anon_sym_AMP] = ACTIONS(3633), - [anon_sym_SEMI] = ACTIONS(3635), - [anon_sym_extern] = ACTIONS(3633), - [anon_sym___attribute__] = ACTIONS(3633), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3635), - [anon_sym___declspec] = ACTIONS(3633), - [anon_sym___based] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_LBRACK] = ACTIONS(3633), - [anon_sym_EQ] = ACTIONS(3635), - [anon_sym_static] = ACTIONS(3633), - [anon_sym_register] = ACTIONS(3633), - [anon_sym_inline] = ACTIONS(3633), - [anon_sym_thread_local] = ACTIONS(3633), - [anon_sym_const] = ACTIONS(3633), - [anon_sym_volatile] = ACTIONS(3633), - [anon_sym_restrict] = ACTIONS(3633), - [anon_sym__Atomic] = ACTIONS(3633), - [anon_sym_mutable] = ACTIONS(3633), - [anon_sym_constexpr] = ACTIONS(3633), - [anon_sym_COLON] = ACTIONS(3635), - [anon_sym_DASH_GT] = ACTIONS(3635), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3633), - [anon_sym_override] = ACTIONS(3633), - [anon_sym_virtual] = ACTIONS(3633), - [anon_sym_operator] = ACTIONS(3633), - [anon_sym_noexcept] = ACTIONS(3633), - [anon_sym_throw] = ACTIONS(3633), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3633), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3633), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3633), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3633), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3633), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3633), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3633), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3633), - [anon_sym_MOZ_COLD] = ACTIONS(3633), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3633), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3633), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3633), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3633), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3633), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3633), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3633), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3633), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3633), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3633), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3633), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3633), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3633), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3633), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3633), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3633), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3633), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3633), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3633), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3633), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3633), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3633), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3633), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3633), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3633), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3633), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3633), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3633), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3633), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3633), - [anon_sym_MOZ_NONNULL] = ACTIONS(3633), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3633), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3633), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3633), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3633), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3633), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3633), - [anon_sym_MOZ_NORETURN] = ACTIONS(3633), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3633), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3633), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3633), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3633), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3633), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3633), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3633), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3633), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3633), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3633), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3633), - [anon_sym_MOZ_RAII] = ACTIONS(3633), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3633), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3633), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3633), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3633), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3633), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3633), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3633), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3633), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3633), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3633), - }, - [1422] = { - [sym_identifier] = ACTIONS(3627), - [anon_sym_COMMA] = ACTIONS(3629), - [anon_sym_LPAREN2] = ACTIONS(3629), - [anon_sym_STAR] = ACTIONS(3629), - [anon_sym_AMP_AMP] = ACTIONS(3629), - [anon_sym_AMP] = ACTIONS(3627), - [anon_sym_SEMI] = ACTIONS(3629), - [anon_sym_extern] = ACTIONS(3627), - [anon_sym___attribute__] = ACTIONS(3627), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3629), - [anon_sym___declspec] = ACTIONS(3627), - [anon_sym___based] = ACTIONS(3627), - [anon_sym_LBRACE] = ACTIONS(3629), - [anon_sym_LBRACK] = ACTIONS(3627), - [anon_sym_EQ] = ACTIONS(3629), - [anon_sym_static] = ACTIONS(3627), - [anon_sym_register] = ACTIONS(3627), - [anon_sym_inline] = ACTIONS(3627), - [anon_sym_thread_local] = ACTIONS(3627), - [anon_sym_const] = ACTIONS(3627), - [anon_sym_volatile] = ACTIONS(3627), - [anon_sym_restrict] = ACTIONS(3627), - [anon_sym__Atomic] = ACTIONS(3627), - [anon_sym_mutable] = ACTIONS(3627), - [anon_sym_constexpr] = ACTIONS(3627), - [anon_sym_COLON] = ACTIONS(3629), - [anon_sym_DASH_GT] = ACTIONS(3629), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3627), - [anon_sym_override] = ACTIONS(3627), - [anon_sym_virtual] = ACTIONS(3627), - [anon_sym_operator] = ACTIONS(3627), - [anon_sym_noexcept] = ACTIONS(3627), - [anon_sym_throw] = ACTIONS(3627), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3627), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3627), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3627), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3627), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3627), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3627), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3627), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3627), - [anon_sym_MOZ_COLD] = ACTIONS(3627), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3627), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3627), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3627), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3627), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3627), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3627), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3627), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3627), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3627), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3627), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3627), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3627), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3627), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3627), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3627), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3627), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3627), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3627), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3627), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3627), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3627), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3627), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3627), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3627), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3627), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3627), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3627), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3627), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3627), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3627), - [anon_sym_MOZ_NONNULL] = ACTIONS(3627), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3627), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3627), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3627), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3627), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3627), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3627), - [anon_sym_MOZ_NORETURN] = ACTIONS(3627), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3627), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3627), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3627), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3627), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3627), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3627), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3627), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3627), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3627), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3627), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3627), - [anon_sym_MOZ_RAII] = ACTIONS(3627), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3627), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3627), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3627), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3627), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3627), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3627), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3627), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3627), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3627), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3627), - }, - [1423] = { - [sym_identifier] = ACTIONS(3689), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_LPAREN2] = ACTIONS(3691), - [anon_sym_STAR] = ACTIONS(3691), - [anon_sym_AMP_AMP] = ACTIONS(3691), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_SEMI] = ACTIONS(3691), - [anon_sym_extern] = ACTIONS(3689), - [anon_sym___attribute__] = ACTIONS(3689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3691), - [anon_sym___declspec] = ACTIONS(3689), - [anon_sym___based] = ACTIONS(3689), - [anon_sym_LBRACE] = ACTIONS(3691), - [anon_sym_LBRACK] = ACTIONS(3689), - [anon_sym_EQ] = ACTIONS(3691), - [anon_sym_static] = ACTIONS(3689), - [anon_sym_register] = ACTIONS(3689), - [anon_sym_inline] = ACTIONS(3689), - [anon_sym_thread_local] = ACTIONS(3689), - [anon_sym_const] = ACTIONS(3689), - [anon_sym_volatile] = ACTIONS(3689), - [anon_sym_restrict] = ACTIONS(3689), - [anon_sym__Atomic] = ACTIONS(3689), - [anon_sym_mutable] = ACTIONS(3689), - [anon_sym_constexpr] = ACTIONS(3689), - [anon_sym_COLON] = ACTIONS(3691), - [anon_sym_DASH_GT] = ACTIONS(3691), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3689), - [anon_sym_override] = ACTIONS(3689), - [anon_sym_virtual] = ACTIONS(3689), - [anon_sym_operator] = ACTIONS(3689), - [anon_sym_noexcept] = ACTIONS(3689), - [anon_sym_throw] = ACTIONS(3689), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3689), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3689), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3689), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3689), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3689), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3689), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3689), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3689), - [anon_sym_MOZ_COLD] = ACTIONS(3689), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3689), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3689), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3689), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3689), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3689), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3689), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3689), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3689), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3689), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3689), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3689), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3689), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3689), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3689), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3689), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3689), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3689), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3689), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3689), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3689), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3689), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3689), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3689), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3689), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3689), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3689), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3689), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3689), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3689), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3689), - [anon_sym_MOZ_NONNULL] = ACTIONS(3689), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3689), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3689), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3689), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3689), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3689), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3689), - [anon_sym_MOZ_NORETURN] = ACTIONS(3689), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3689), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3689), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3689), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3689), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3689), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3689), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3689), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3689), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3689), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3689), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3689), - [anon_sym_MOZ_RAII] = ACTIONS(3689), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3689), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3689), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3689), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3689), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3689), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3689), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3689), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3689), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3689), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3689), - }, - [1424] = { - [sym_identifier] = ACTIONS(3158), - [anon_sym_COMMA] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3160), - [anon_sym_AMP_AMP] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_extern] = ACTIONS(3158), - [anon_sym___attribute__] = ACTIONS(3158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3160), - [anon_sym___declspec] = ACTIONS(3158), - [anon_sym___based] = ACTIONS(3158), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_EQ] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3158), - [anon_sym_register] = ACTIONS(3158), - [anon_sym_inline] = ACTIONS(3158), - [anon_sym_thread_local] = ACTIONS(3158), - [anon_sym_const] = ACTIONS(3158), - [anon_sym_volatile] = ACTIONS(3158), - [anon_sym_restrict] = ACTIONS(3158), - [anon_sym__Atomic] = ACTIONS(3158), - [anon_sym_mutable] = ACTIONS(3158), - [anon_sym_constexpr] = ACTIONS(3158), - [anon_sym_COLON] = ACTIONS(3160), - [anon_sym_DASH_GT] = ACTIONS(3160), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3158), - [anon_sym_override] = ACTIONS(3158), - [anon_sym_virtual] = ACTIONS(3158), - [anon_sym_operator] = ACTIONS(3158), - [anon_sym_noexcept] = ACTIONS(3158), - [anon_sym_throw] = ACTIONS(3158), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3158), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3158), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3158), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3158), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3158), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3158), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3158), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3158), - [anon_sym_MOZ_COLD] = ACTIONS(3158), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3158), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3158), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3158), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3158), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3158), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3158), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3158), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3158), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3158), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3158), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3158), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3158), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3158), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3158), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3158), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3158), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3158), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3158), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3158), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3158), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3158), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_NONNULL] = ACTIONS(3158), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3158), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3158), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3158), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3158), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3158), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_NORETURN] = ACTIONS(3158), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3158), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3158), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3158), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3158), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3158), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3158), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3158), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3158), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3158), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3158), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3158), - [anon_sym_MOZ_RAII] = ACTIONS(3158), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3158), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3158), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3158), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3158), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3158), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3158), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3158), - }, - [1425] = { - [sym_identifier] = ACTIONS(3681), - [anon_sym_COMMA] = ACTIONS(3683), - [anon_sym_LPAREN2] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_AMP_AMP] = ACTIONS(3683), - [anon_sym_AMP] = ACTIONS(3681), - [anon_sym_SEMI] = ACTIONS(3683), - [anon_sym_extern] = ACTIONS(3681), - [anon_sym___attribute__] = ACTIONS(3681), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3683), - [anon_sym___declspec] = ACTIONS(3681), - [anon_sym___based] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3683), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_EQ] = ACTIONS(3683), - [anon_sym_static] = ACTIONS(3681), - [anon_sym_register] = ACTIONS(3681), - [anon_sym_inline] = ACTIONS(3681), - [anon_sym_thread_local] = ACTIONS(3681), - [anon_sym_const] = ACTIONS(3681), - [anon_sym_volatile] = ACTIONS(3681), - [anon_sym_restrict] = ACTIONS(3681), - [anon_sym__Atomic] = ACTIONS(3681), - [anon_sym_mutable] = ACTIONS(3681), - [anon_sym_constexpr] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3683), - [anon_sym_DASH_GT] = ACTIONS(3683), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3681), - [anon_sym_override] = ACTIONS(3681), - [anon_sym_virtual] = ACTIONS(3681), - [anon_sym_operator] = ACTIONS(3681), - [anon_sym_noexcept] = ACTIONS(3681), - [anon_sym_throw] = ACTIONS(3681), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3681), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3681), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3681), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3681), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3681), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3681), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3681), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3681), - [anon_sym_MOZ_COLD] = ACTIONS(3681), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3681), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3681), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3681), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3681), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3681), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3681), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3681), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3681), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3681), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3681), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3681), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3681), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3681), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3681), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3681), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3681), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3681), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3681), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3681), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3681), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3681), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3681), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3681), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3681), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3681), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3681), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3681), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3681), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3681), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3681), - [anon_sym_MOZ_NONNULL] = ACTIONS(3681), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3681), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3681), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3681), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3681), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3681), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3681), - [anon_sym_MOZ_NORETURN] = ACTIONS(3681), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3681), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3681), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3681), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3681), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3681), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3681), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3681), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3681), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3681), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3681), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3681), - [anon_sym_MOZ_RAII] = ACTIONS(3681), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3681), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3681), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3681), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3681), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3681), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3681), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3681), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3681), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3681), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3681), - }, - [1426] = { - [sym_identifier] = ACTIONS(3673), - [anon_sym_COMMA] = ACTIONS(3675), - [anon_sym_LPAREN2] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3675), - [anon_sym_AMP_AMP] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3673), - [anon_sym_SEMI] = ACTIONS(3675), - [anon_sym_extern] = ACTIONS(3673), - [anon_sym___attribute__] = ACTIONS(3673), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3675), - [anon_sym___declspec] = ACTIONS(3673), - [anon_sym___based] = ACTIONS(3673), - [anon_sym_LBRACE] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_EQ] = ACTIONS(3675), - [anon_sym_static] = ACTIONS(3673), - [anon_sym_register] = ACTIONS(3673), - [anon_sym_inline] = ACTIONS(3673), - [anon_sym_thread_local] = ACTIONS(3673), - [anon_sym_const] = ACTIONS(3673), - [anon_sym_volatile] = ACTIONS(3673), - [anon_sym_restrict] = ACTIONS(3673), - [anon_sym__Atomic] = ACTIONS(3673), - [anon_sym_mutable] = ACTIONS(3673), - [anon_sym_constexpr] = ACTIONS(3673), - [anon_sym_COLON] = ACTIONS(3675), - [anon_sym_DASH_GT] = ACTIONS(3675), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3673), - [anon_sym_override] = ACTIONS(3673), - [anon_sym_virtual] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(3673), - [anon_sym_noexcept] = ACTIONS(3673), - [anon_sym_throw] = ACTIONS(3673), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3673), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3673), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3673), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3673), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3673), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3673), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3673), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3673), - [anon_sym_MOZ_COLD] = ACTIONS(3673), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3673), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3673), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3673), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3673), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3673), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3673), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3673), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3673), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3673), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3673), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3673), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3673), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3673), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3673), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3673), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3673), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3673), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3673), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3673), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3673), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3673), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3673), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3673), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3673), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3673), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3673), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3673), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3673), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3673), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3673), - [anon_sym_MOZ_NONNULL] = ACTIONS(3673), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3673), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3673), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3673), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3673), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3673), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3673), - [anon_sym_MOZ_NORETURN] = ACTIONS(3673), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3673), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3673), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3673), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3673), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3673), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3673), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3673), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3673), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3673), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3673), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3673), - [anon_sym_MOZ_RAII] = ACTIONS(3673), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3673), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3673), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3673), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3673), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3673), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3673), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3673), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3673), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3673), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3673), - }, - [1427] = { - [sym_identifier] = ACTIONS(3637), - [anon_sym_COMMA] = ACTIONS(3639), - [anon_sym_LPAREN2] = ACTIONS(3639), - [anon_sym_STAR] = ACTIONS(3639), - [anon_sym_AMP_AMP] = ACTIONS(3639), - [anon_sym_AMP] = ACTIONS(3637), - [anon_sym_SEMI] = ACTIONS(3639), - [anon_sym_extern] = ACTIONS(3637), - [anon_sym___attribute__] = ACTIONS(3637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3639), - [anon_sym___declspec] = ACTIONS(3637), - [anon_sym___based] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3637), - [anon_sym_EQ] = ACTIONS(3639), - [anon_sym_static] = ACTIONS(3637), - [anon_sym_register] = ACTIONS(3637), - [anon_sym_inline] = ACTIONS(3637), - [anon_sym_thread_local] = ACTIONS(3637), - [anon_sym_const] = ACTIONS(3637), - [anon_sym_volatile] = ACTIONS(3637), - [anon_sym_restrict] = ACTIONS(3637), - [anon_sym__Atomic] = ACTIONS(3637), - [anon_sym_mutable] = ACTIONS(3637), - [anon_sym_constexpr] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3639), - [anon_sym_DASH_GT] = ACTIONS(3639), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3637), - [anon_sym_override] = ACTIONS(3637), - [anon_sym_virtual] = ACTIONS(3637), - [anon_sym_operator] = ACTIONS(3637), - [anon_sym_noexcept] = ACTIONS(3637), - [anon_sym_throw] = ACTIONS(3637), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3637), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3637), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3637), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3637), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3637), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3637), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3637), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3637), - [anon_sym_MOZ_COLD] = ACTIONS(3637), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3637), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3637), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3637), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3637), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3637), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3637), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3637), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3637), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3637), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3637), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3637), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3637), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3637), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3637), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3637), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3637), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3637), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3637), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3637), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3637), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3637), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3637), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3637), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3637), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3637), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3637), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3637), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3637), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3637), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3637), - [anon_sym_MOZ_NONNULL] = ACTIONS(3637), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3637), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3637), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3637), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3637), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3637), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3637), - [anon_sym_MOZ_NORETURN] = ACTIONS(3637), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3637), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3637), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3637), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3637), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3637), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3637), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3637), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3637), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3637), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3637), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3637), - [anon_sym_MOZ_RAII] = ACTIONS(3637), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3637), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3637), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3637), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3637), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3637), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3637), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3637), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3637), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3637), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3637), - }, - [1428] = { - [sym_identifier] = ACTIONS(3579), - [anon_sym_COMMA] = ACTIONS(3581), - [anon_sym_LPAREN2] = ACTIONS(3581), - [anon_sym_STAR] = ACTIONS(3581), - [anon_sym_AMP_AMP] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(3581), - [anon_sym_extern] = ACTIONS(3579), - [anon_sym___attribute__] = ACTIONS(3579), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3581), - [anon_sym___declspec] = ACTIONS(3579), - [anon_sym___based] = ACTIONS(3579), - [anon_sym_LBRACE] = ACTIONS(3581), - [anon_sym_LBRACK] = ACTIONS(3579), - [anon_sym_EQ] = ACTIONS(3581), - [anon_sym_static] = ACTIONS(3579), - [anon_sym_register] = ACTIONS(3579), - [anon_sym_inline] = ACTIONS(3579), - [anon_sym_thread_local] = ACTIONS(3579), - [anon_sym_const] = ACTIONS(3579), - [anon_sym_volatile] = ACTIONS(3579), - [anon_sym_restrict] = ACTIONS(3579), - [anon_sym__Atomic] = ACTIONS(3579), - [anon_sym_mutable] = ACTIONS(3579), - [anon_sym_constexpr] = ACTIONS(3579), - [anon_sym_COLON] = ACTIONS(3581), - [anon_sym_DASH_GT] = ACTIONS(3581), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3579), - [anon_sym_override] = ACTIONS(3579), - [anon_sym_virtual] = ACTIONS(3579), - [anon_sym_operator] = ACTIONS(3579), - [anon_sym_noexcept] = ACTIONS(3579), - [anon_sym_throw] = ACTIONS(3579), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3579), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3579), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3579), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3579), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3579), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3579), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3579), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3579), - [anon_sym_MOZ_COLD] = ACTIONS(3579), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3579), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3579), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3579), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3579), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3579), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3579), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3579), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3579), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3579), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3579), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3579), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3579), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3579), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3579), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3579), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3579), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3579), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3579), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3579), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3579), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3579), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3579), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3579), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3579), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3579), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3579), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3579), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3579), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3579), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3579), - [anon_sym_MOZ_NONNULL] = ACTIONS(3579), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3579), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3579), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3579), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3579), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3579), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3579), - [anon_sym_MOZ_NORETURN] = ACTIONS(3579), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3579), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3579), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3579), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3579), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3579), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3579), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3579), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3579), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3579), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3579), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3579), - [anon_sym_MOZ_RAII] = ACTIONS(3579), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3579), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3579), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3579), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3579), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3579), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3579), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3579), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3579), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3579), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3579), - }, - [1429] = { - [sym_identifier] = ACTIONS(3507), - [anon_sym_COMMA] = ACTIONS(3509), - [anon_sym_LPAREN2] = ACTIONS(3509), - [anon_sym_STAR] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_AMP] = ACTIONS(3507), - [anon_sym_SEMI] = ACTIONS(3509), - [anon_sym_extern] = ACTIONS(3507), - [anon_sym___attribute__] = ACTIONS(3507), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3509), - [anon_sym___declspec] = ACTIONS(3507), - [anon_sym___based] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_LBRACK] = ACTIONS(3507), - [anon_sym_EQ] = ACTIONS(3509), - [anon_sym_static] = ACTIONS(3507), - [anon_sym_register] = ACTIONS(3507), - [anon_sym_inline] = ACTIONS(3507), - [anon_sym_thread_local] = ACTIONS(3507), - [anon_sym_const] = ACTIONS(3507), - [anon_sym_volatile] = ACTIONS(3507), - [anon_sym_restrict] = ACTIONS(3507), - [anon_sym__Atomic] = ACTIONS(3507), - [anon_sym_mutable] = ACTIONS(3507), - [anon_sym_constexpr] = ACTIONS(3507), - [anon_sym_COLON] = ACTIONS(3509), - [anon_sym_DASH_GT] = ACTIONS(3509), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3507), - [anon_sym_override] = ACTIONS(3507), - [anon_sym_virtual] = ACTIONS(3507), - [anon_sym_operator] = ACTIONS(3507), - [anon_sym_noexcept] = ACTIONS(3507), - [anon_sym_throw] = ACTIONS(3507), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3507), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3507), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3507), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3507), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3507), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3507), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3507), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3507), - [anon_sym_MOZ_COLD] = ACTIONS(3507), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3507), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3507), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3507), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3507), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3507), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3507), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3507), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3507), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3507), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3507), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3507), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3507), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3507), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3507), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3507), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3507), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3507), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3507), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3507), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3507), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3507), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3507), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3507), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3507), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3507), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3507), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3507), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3507), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3507), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3507), - [anon_sym_MOZ_NONNULL] = ACTIONS(3507), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3507), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3507), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3507), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3507), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3507), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3507), - [anon_sym_MOZ_NORETURN] = ACTIONS(3507), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3507), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3507), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3507), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3507), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3507), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3507), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3507), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3507), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3507), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3507), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3507), - [anon_sym_MOZ_RAII] = ACTIONS(3507), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3507), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3507), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3507), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3507), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3507), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3507), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3507), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3507), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3507), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3507), - }, - [1430] = { - [sym_identifier] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_LPAREN2] = ACTIONS(3667), - [anon_sym_STAR] = ACTIONS(3667), - [anon_sym_AMP_AMP] = ACTIONS(3667), - [anon_sym_AMP] = ACTIONS(3665), - [anon_sym_SEMI] = ACTIONS(3667), - [anon_sym_extern] = ACTIONS(3665), - [anon_sym___attribute__] = ACTIONS(3665), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3667), - [anon_sym___declspec] = ACTIONS(3665), - [anon_sym___based] = ACTIONS(3665), - [anon_sym_LBRACE] = ACTIONS(3667), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_EQ] = ACTIONS(3667), - [anon_sym_static] = ACTIONS(3665), - [anon_sym_register] = ACTIONS(3665), - [anon_sym_inline] = ACTIONS(3665), - [anon_sym_thread_local] = ACTIONS(3665), - [anon_sym_const] = ACTIONS(3665), - [anon_sym_volatile] = ACTIONS(3665), - [anon_sym_restrict] = ACTIONS(3665), - [anon_sym__Atomic] = ACTIONS(3665), - [anon_sym_mutable] = ACTIONS(3665), - [anon_sym_constexpr] = ACTIONS(3665), - [anon_sym_COLON] = ACTIONS(3667), - [anon_sym_DASH_GT] = ACTIONS(3667), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3665), - [anon_sym_override] = ACTIONS(3665), - [anon_sym_virtual] = ACTIONS(3665), - [anon_sym_operator] = ACTIONS(3665), - [anon_sym_noexcept] = ACTIONS(3665), - [anon_sym_throw] = ACTIONS(3665), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3665), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3665), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3665), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3665), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3665), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3665), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3665), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3665), - [anon_sym_MOZ_COLD] = ACTIONS(3665), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3665), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3665), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3665), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3665), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3665), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3665), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3665), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3665), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3665), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3665), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3665), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3665), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3665), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3665), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3665), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3665), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3665), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3665), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3665), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3665), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3665), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3665), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3665), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3665), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3665), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3665), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3665), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3665), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3665), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3665), - [anon_sym_MOZ_NONNULL] = ACTIONS(3665), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3665), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3665), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3665), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3665), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3665), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3665), - [anon_sym_MOZ_NORETURN] = ACTIONS(3665), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3665), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3665), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3665), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3665), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3665), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3665), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3665), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3665), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3665), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3665), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3665), - [anon_sym_MOZ_RAII] = ACTIONS(3665), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3665), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3665), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3665), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3665), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3665), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3665), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3665), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3665), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3665), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3665), - }, - [1431] = { - [sym_identifier] = ACTIONS(3515), - [anon_sym_COMMA] = ACTIONS(3517), - [anon_sym_LPAREN2] = ACTIONS(3517), - [anon_sym_STAR] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_AMP] = ACTIONS(3515), - [anon_sym_SEMI] = ACTIONS(3517), - [anon_sym_extern] = ACTIONS(3515), - [anon_sym___attribute__] = ACTIONS(3515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3517), - [anon_sym___declspec] = ACTIONS(3515), - [anon_sym___based] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_LBRACK] = ACTIONS(3515), - [anon_sym_EQ] = ACTIONS(3517), - [anon_sym_static] = ACTIONS(3515), - [anon_sym_register] = ACTIONS(3515), - [anon_sym_inline] = ACTIONS(3515), - [anon_sym_thread_local] = ACTIONS(3515), - [anon_sym_const] = ACTIONS(3515), - [anon_sym_volatile] = ACTIONS(3515), - [anon_sym_restrict] = ACTIONS(3515), - [anon_sym__Atomic] = ACTIONS(3515), - [anon_sym_mutable] = ACTIONS(3515), - [anon_sym_constexpr] = ACTIONS(3515), - [anon_sym_COLON] = ACTIONS(3517), - [anon_sym_DASH_GT] = ACTIONS(3517), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3515), - [anon_sym_override] = ACTIONS(3515), - [anon_sym_virtual] = ACTIONS(3515), - [anon_sym_operator] = ACTIONS(3515), - [anon_sym_noexcept] = ACTIONS(3515), - [anon_sym_throw] = ACTIONS(3515), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3515), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3515), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3515), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3515), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3515), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3515), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3515), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3515), - [anon_sym_MOZ_COLD] = ACTIONS(3515), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3515), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3515), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3515), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3515), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3515), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3515), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3515), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3515), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3515), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3515), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3515), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3515), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3515), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3515), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3515), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3515), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3515), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3515), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3515), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3515), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3515), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3515), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3515), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3515), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3515), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3515), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3515), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3515), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3515), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3515), - [anon_sym_MOZ_NONNULL] = ACTIONS(3515), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3515), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3515), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3515), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3515), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3515), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3515), - [anon_sym_MOZ_NORETURN] = ACTIONS(3515), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3515), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3515), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3515), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3515), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3515), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3515), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3515), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3515), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3515), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3515), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3515), - [anon_sym_MOZ_RAII] = ACTIONS(3515), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3515), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3515), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3515), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3515), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3515), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3515), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3515), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3515), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3515), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3515), - }, - [1432] = { - [sym_identifier] = ACTIONS(3523), - [anon_sym_COMMA] = ACTIONS(3525), - [anon_sym_LPAREN2] = ACTIONS(3525), - [anon_sym_STAR] = ACTIONS(3525), - [anon_sym_AMP_AMP] = ACTIONS(3525), - [anon_sym_AMP] = ACTIONS(3523), - [anon_sym_SEMI] = ACTIONS(3525), - [anon_sym_extern] = ACTIONS(3523), - [anon_sym___attribute__] = ACTIONS(3523), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3525), - [anon_sym___declspec] = ACTIONS(3523), - [anon_sym___based] = ACTIONS(3523), - [anon_sym_LBRACE] = ACTIONS(3525), - [anon_sym_LBRACK] = ACTIONS(3523), - [anon_sym_EQ] = ACTIONS(3525), - [anon_sym_static] = ACTIONS(3523), - [anon_sym_register] = ACTIONS(3523), - [anon_sym_inline] = ACTIONS(3523), - [anon_sym_thread_local] = ACTIONS(3523), - [anon_sym_const] = ACTIONS(3523), - [anon_sym_volatile] = ACTIONS(3523), - [anon_sym_restrict] = ACTIONS(3523), - [anon_sym__Atomic] = ACTIONS(3523), - [anon_sym_mutable] = ACTIONS(3523), - [anon_sym_constexpr] = ACTIONS(3523), - [anon_sym_COLON] = ACTIONS(3525), - [anon_sym_DASH_GT] = ACTIONS(3525), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3523), - [anon_sym_override] = ACTIONS(3523), - [anon_sym_virtual] = ACTIONS(3523), - [anon_sym_operator] = ACTIONS(3523), - [anon_sym_noexcept] = ACTIONS(3523), - [anon_sym_throw] = ACTIONS(3523), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3523), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3523), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3523), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3523), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3523), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3523), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3523), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3523), - [anon_sym_MOZ_COLD] = ACTIONS(3523), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3523), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3523), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3523), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3523), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3523), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3523), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3523), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3523), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3523), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3523), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3523), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3523), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3523), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3523), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3523), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3523), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3523), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3523), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3523), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3523), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3523), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3523), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3523), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3523), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3523), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3523), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3523), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3523), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3523), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3523), - [anon_sym_MOZ_NONNULL] = ACTIONS(3523), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3523), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3523), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3523), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3523), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3523), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3523), - [anon_sym_MOZ_NORETURN] = ACTIONS(3523), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3523), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3523), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3523), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3523), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3523), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3523), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3523), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3523), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3523), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3523), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3523), - [anon_sym_MOZ_RAII] = ACTIONS(3523), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3523), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3523), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3523), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3523), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3523), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3523), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3523), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3523), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3523), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3523), - }, - [1433] = { - [sym_identifier] = ACTIONS(3645), - [anon_sym_COMMA] = ACTIONS(3647), - [anon_sym_LPAREN2] = ACTIONS(3647), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_AMP_AMP] = ACTIONS(3647), - [anon_sym_AMP] = ACTIONS(3645), - [anon_sym_SEMI] = ACTIONS(3647), - [anon_sym_extern] = ACTIONS(3645), - [anon_sym___attribute__] = ACTIONS(3645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3647), - [anon_sym___declspec] = ACTIONS(3645), - [anon_sym___based] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3647), - [anon_sym_LBRACK] = ACTIONS(3645), - [anon_sym_EQ] = ACTIONS(3647), - [anon_sym_static] = ACTIONS(3645), - [anon_sym_register] = ACTIONS(3645), - [anon_sym_inline] = ACTIONS(3645), - [anon_sym_thread_local] = ACTIONS(3645), - [anon_sym_const] = ACTIONS(3645), - [anon_sym_volatile] = ACTIONS(3645), - [anon_sym_restrict] = ACTIONS(3645), - [anon_sym__Atomic] = ACTIONS(3645), - [anon_sym_mutable] = ACTIONS(3645), - [anon_sym_constexpr] = ACTIONS(3645), - [anon_sym_COLON] = ACTIONS(3647), - [anon_sym_DASH_GT] = ACTIONS(3647), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3645), - [anon_sym_override] = ACTIONS(3645), - [anon_sym_virtual] = ACTIONS(3645), - [anon_sym_operator] = ACTIONS(3645), - [anon_sym_noexcept] = ACTIONS(3645), - [anon_sym_throw] = ACTIONS(3645), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3645), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3645), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3645), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3645), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3645), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3645), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3645), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3645), - [anon_sym_MOZ_COLD] = ACTIONS(3645), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3645), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3645), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3645), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3645), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3645), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3645), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3645), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3645), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3645), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3645), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3645), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3645), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3645), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3645), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3645), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3645), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3645), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3645), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3645), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3645), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3645), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3645), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3645), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3645), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3645), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3645), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3645), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3645), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3645), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3645), - [anon_sym_MOZ_NONNULL] = ACTIONS(3645), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3645), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3645), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3645), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3645), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3645), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3645), - [anon_sym_MOZ_NORETURN] = ACTIONS(3645), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3645), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3645), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3645), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3645), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3645), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3645), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3645), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3645), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3645), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3645), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3645), - [anon_sym_MOZ_RAII] = ACTIONS(3645), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3645), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3645), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3645), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3645), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3645), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3645), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3645), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3645), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3645), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3645), - }, - [1434] = { - [sym_identifier] = ACTIONS(3559), - [anon_sym_COMMA] = ACTIONS(3561), - [anon_sym_LPAREN2] = ACTIONS(3561), - [anon_sym_STAR] = ACTIONS(3561), - [anon_sym_AMP_AMP] = ACTIONS(3561), - [anon_sym_AMP] = ACTIONS(3559), - [anon_sym_SEMI] = ACTIONS(3561), - [anon_sym_extern] = ACTIONS(3559), - [anon_sym___attribute__] = ACTIONS(3559), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3561), - [anon_sym___declspec] = ACTIONS(3559), - [anon_sym___based] = ACTIONS(3559), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_LBRACK] = ACTIONS(3559), - [anon_sym_EQ] = ACTIONS(3561), - [anon_sym_static] = ACTIONS(3559), - [anon_sym_register] = ACTIONS(3559), - [anon_sym_inline] = ACTIONS(3559), - [anon_sym_thread_local] = ACTIONS(3559), - [anon_sym_const] = ACTIONS(3559), - [anon_sym_volatile] = ACTIONS(3559), - [anon_sym_restrict] = ACTIONS(3559), - [anon_sym__Atomic] = ACTIONS(3559), - [anon_sym_mutable] = ACTIONS(3559), - [anon_sym_constexpr] = ACTIONS(3559), - [anon_sym_COLON] = ACTIONS(3561), - [anon_sym_DASH_GT] = ACTIONS(3561), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3559), - [anon_sym_override] = ACTIONS(3559), - [anon_sym_virtual] = ACTIONS(3559), - [anon_sym_operator] = ACTIONS(3559), - [anon_sym_noexcept] = ACTIONS(3559), - [anon_sym_throw] = ACTIONS(3559), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3559), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3559), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3559), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3559), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3559), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3559), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3559), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3559), - [anon_sym_MOZ_COLD] = ACTIONS(3559), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3559), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3559), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3559), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3559), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3559), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3559), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3559), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3559), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3559), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3559), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3559), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3559), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3559), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3559), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3559), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3559), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3559), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3559), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3559), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3559), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3559), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3559), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3559), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3559), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3559), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3559), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3559), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3559), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3559), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3559), - [anon_sym_MOZ_NONNULL] = ACTIONS(3559), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3559), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3559), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3559), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3559), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3559), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3559), - [anon_sym_MOZ_NORETURN] = ACTIONS(3559), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3559), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3559), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3559), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3559), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3559), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3559), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3559), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3559), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3559), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3559), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3559), - [anon_sym_MOZ_RAII] = ACTIONS(3559), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3559), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3559), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3559), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3559), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3559), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3559), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3559), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3559), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3559), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3559), - }, - [1435] = { - [sym_identifier] = ACTIONS(3669), - [anon_sym_COMMA] = ACTIONS(3671), - [anon_sym_LPAREN2] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3671), - [anon_sym_AMP_AMP] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3669), - [anon_sym_SEMI] = ACTIONS(3671), - [anon_sym_extern] = ACTIONS(3669), - [anon_sym___attribute__] = ACTIONS(3669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3671), - [anon_sym___declspec] = ACTIONS(3669), - [anon_sym___based] = ACTIONS(3669), - [anon_sym_LBRACE] = ACTIONS(3671), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_static] = ACTIONS(3669), - [anon_sym_register] = ACTIONS(3669), - [anon_sym_inline] = ACTIONS(3669), - [anon_sym_thread_local] = ACTIONS(3669), - [anon_sym_const] = ACTIONS(3669), - [anon_sym_volatile] = ACTIONS(3669), - [anon_sym_restrict] = ACTIONS(3669), - [anon_sym__Atomic] = ACTIONS(3669), - [anon_sym_mutable] = ACTIONS(3669), - [anon_sym_constexpr] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3671), - [anon_sym_DASH_GT] = ACTIONS(3671), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3669), - [anon_sym_override] = ACTIONS(3669), - [anon_sym_virtual] = ACTIONS(3669), - [anon_sym_operator] = ACTIONS(3669), - [anon_sym_noexcept] = ACTIONS(3669), - [anon_sym_throw] = ACTIONS(3669), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3669), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3669), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3669), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3669), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3669), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3669), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3669), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3669), - [anon_sym_MOZ_COLD] = ACTIONS(3669), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3669), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3669), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3669), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3669), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3669), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3669), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3669), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3669), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3669), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3669), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3669), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3669), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3669), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3669), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3669), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3669), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3669), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3669), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3669), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3669), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3669), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3669), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3669), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3669), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3669), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3669), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3669), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3669), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3669), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3669), - [anon_sym_MOZ_NONNULL] = ACTIONS(3669), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3669), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3669), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3669), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3669), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3669), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3669), - [anon_sym_MOZ_NORETURN] = ACTIONS(3669), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3669), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3669), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3669), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3669), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3669), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3669), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3669), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3669), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3669), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3669), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3669), - [anon_sym_MOZ_RAII] = ACTIONS(3669), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3669), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3669), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3669), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3669), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3669), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3669), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3669), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3669), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3669), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3669), - }, - [1436] = { - [sym_identifier] = ACTIONS(3705), - [anon_sym_COMMA] = ACTIONS(3707), - [anon_sym_LPAREN2] = ACTIONS(3707), - [anon_sym_STAR] = ACTIONS(3707), - [anon_sym_AMP_AMP] = ACTIONS(3707), - [anon_sym_AMP] = ACTIONS(3705), - [anon_sym_SEMI] = ACTIONS(3707), - [anon_sym_extern] = ACTIONS(3705), - [anon_sym___attribute__] = ACTIONS(3705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3707), - [anon_sym___declspec] = ACTIONS(3705), - [anon_sym___based] = ACTIONS(3705), - [anon_sym_LBRACE] = ACTIONS(3707), - [anon_sym_LBRACK] = ACTIONS(3705), - [anon_sym_EQ] = ACTIONS(3707), - [anon_sym_static] = ACTIONS(3705), - [anon_sym_register] = ACTIONS(3705), - [anon_sym_inline] = ACTIONS(3705), - [anon_sym_thread_local] = ACTIONS(3705), - [anon_sym_const] = ACTIONS(3705), - [anon_sym_volatile] = ACTIONS(3705), - [anon_sym_restrict] = ACTIONS(3705), - [anon_sym__Atomic] = ACTIONS(3705), - [anon_sym_mutable] = ACTIONS(3705), - [anon_sym_constexpr] = ACTIONS(3705), - [anon_sym_COLON] = ACTIONS(3707), - [anon_sym_DASH_GT] = ACTIONS(3707), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3705), - [anon_sym_override] = ACTIONS(3705), - [anon_sym_virtual] = ACTIONS(3705), - [anon_sym_operator] = ACTIONS(3705), - [anon_sym_noexcept] = ACTIONS(3705), - [anon_sym_throw] = ACTIONS(3705), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3705), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3705), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3705), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3705), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3705), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3705), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3705), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3705), - [anon_sym_MOZ_COLD] = ACTIONS(3705), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3705), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3705), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3705), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3705), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3705), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3705), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3705), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3705), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3705), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3705), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3705), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3705), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3705), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3705), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3705), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3705), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3705), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3705), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3705), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3705), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3705), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3705), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3705), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3705), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3705), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3705), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3705), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3705), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3705), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3705), - [anon_sym_MOZ_NONNULL] = ACTIONS(3705), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3705), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3705), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3705), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3705), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3705), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3705), - [anon_sym_MOZ_NORETURN] = ACTIONS(3705), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3705), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3705), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3705), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3705), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3705), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3705), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3705), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3705), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3705), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3705), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3705), - [anon_sym_MOZ_RAII] = ACTIONS(3705), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3705), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3705), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3705), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3705), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3705), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3705), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3705), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3705), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3705), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3705), - }, - [1437] = { - [sym_identifier] = ACTIONS(3677), - [anon_sym_COMMA] = ACTIONS(3679), - [anon_sym_LPAREN2] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_AMP_AMP] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3677), - [anon_sym_SEMI] = ACTIONS(3679), - [anon_sym_extern] = ACTIONS(3677), - [anon_sym___attribute__] = ACTIONS(3677), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3679), - [anon_sym___declspec] = ACTIONS(3677), - [anon_sym___based] = ACTIONS(3677), - [anon_sym_LBRACE] = ACTIONS(3679), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_EQ] = ACTIONS(3679), - [anon_sym_static] = ACTIONS(3677), - [anon_sym_register] = ACTIONS(3677), - [anon_sym_inline] = ACTIONS(3677), - [anon_sym_thread_local] = ACTIONS(3677), - [anon_sym_const] = ACTIONS(3677), - [anon_sym_volatile] = ACTIONS(3677), - [anon_sym_restrict] = ACTIONS(3677), - [anon_sym__Atomic] = ACTIONS(3677), - [anon_sym_mutable] = ACTIONS(3677), - [anon_sym_constexpr] = ACTIONS(3677), - [anon_sym_COLON] = ACTIONS(3679), - [anon_sym_DASH_GT] = ACTIONS(3679), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3677), - [anon_sym_override] = ACTIONS(3677), - [anon_sym_virtual] = ACTIONS(3677), - [anon_sym_operator] = ACTIONS(3677), - [anon_sym_noexcept] = ACTIONS(3677), - [anon_sym_throw] = ACTIONS(3677), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3677), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3677), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3677), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3677), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3677), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3677), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3677), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3677), - [anon_sym_MOZ_COLD] = ACTIONS(3677), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3677), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3677), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3677), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3677), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3677), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3677), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3677), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3677), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3677), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3677), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3677), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3677), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3677), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3677), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3677), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3677), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3677), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3677), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3677), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3677), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3677), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3677), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3677), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3677), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3677), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3677), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3677), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3677), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3677), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3677), - [anon_sym_MOZ_NONNULL] = ACTIONS(3677), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3677), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3677), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3677), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3677), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3677), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3677), - [anon_sym_MOZ_NORETURN] = ACTIONS(3677), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3677), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3677), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3677), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3677), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3677), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3677), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3677), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3677), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3677), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3677), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3677), - [anon_sym_MOZ_RAII] = ACTIONS(3677), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3677), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3677), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3677), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3677), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3677), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3677), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3677), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3677), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3677), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3677), - }, - [1438] = { - [sym_identifier] = ACTIONS(3657), - [anon_sym_COMMA] = ACTIONS(3659), - [anon_sym_LPAREN2] = ACTIONS(3659), - [anon_sym_STAR] = ACTIONS(3659), - [anon_sym_AMP_AMP] = ACTIONS(3659), - [anon_sym_AMP] = ACTIONS(3657), - [anon_sym_SEMI] = ACTIONS(3659), - [anon_sym_extern] = ACTIONS(3657), - [anon_sym___attribute__] = ACTIONS(3657), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3659), - [anon_sym___declspec] = ACTIONS(3657), - [anon_sym___based] = ACTIONS(3657), - [anon_sym_LBRACE] = ACTIONS(3659), - [anon_sym_LBRACK] = ACTIONS(3657), - [anon_sym_EQ] = ACTIONS(3659), - [anon_sym_static] = ACTIONS(3657), - [anon_sym_register] = ACTIONS(3657), - [anon_sym_inline] = ACTIONS(3657), - [anon_sym_thread_local] = ACTIONS(3657), - [anon_sym_const] = ACTIONS(3657), - [anon_sym_volatile] = ACTIONS(3657), - [anon_sym_restrict] = ACTIONS(3657), - [anon_sym__Atomic] = ACTIONS(3657), - [anon_sym_mutable] = ACTIONS(3657), - [anon_sym_constexpr] = ACTIONS(3657), - [anon_sym_COLON] = ACTIONS(3659), - [anon_sym_DASH_GT] = ACTIONS(3659), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3657), - [anon_sym_override] = ACTIONS(3657), - [anon_sym_virtual] = ACTIONS(3657), - [anon_sym_operator] = ACTIONS(3657), - [anon_sym_noexcept] = ACTIONS(3657), - [anon_sym_throw] = ACTIONS(3657), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3657), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3657), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3657), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3657), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3657), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3657), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3657), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3657), - [anon_sym_MOZ_COLD] = ACTIONS(3657), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3657), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3657), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3657), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3657), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3657), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3657), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3657), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3657), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3657), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3657), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3657), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3657), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3657), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3657), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3657), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3657), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3657), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3657), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3657), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3657), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3657), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3657), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3657), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3657), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3657), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3657), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3657), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3657), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3657), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3657), - [anon_sym_MOZ_NONNULL] = ACTIONS(3657), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3657), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3657), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3657), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3657), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3657), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3657), - [anon_sym_MOZ_NORETURN] = ACTIONS(3657), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3657), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3657), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3657), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3657), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3657), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3657), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3657), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3657), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3657), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3657), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3657), - [anon_sym_MOZ_RAII] = ACTIONS(3657), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3657), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3657), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3657), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3657), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3657), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3657), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3657), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3657), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3657), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3657), - }, - [1439] = { - [sym_identifier] = ACTIONS(3555), - [anon_sym_COMMA] = ACTIONS(3557), - [anon_sym_LPAREN2] = ACTIONS(3557), - [anon_sym_STAR] = ACTIONS(3557), - [anon_sym_AMP_AMP] = ACTIONS(3557), - [anon_sym_AMP] = ACTIONS(3555), - [anon_sym_SEMI] = ACTIONS(3557), - [anon_sym_extern] = ACTIONS(3555), - [anon_sym___attribute__] = ACTIONS(3555), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3557), - [anon_sym___declspec] = ACTIONS(3555), - [anon_sym___based] = ACTIONS(3555), - [anon_sym_LBRACE] = ACTIONS(3557), - [anon_sym_LBRACK] = ACTIONS(3555), - [anon_sym_EQ] = ACTIONS(3557), - [anon_sym_static] = ACTIONS(3555), - [anon_sym_register] = ACTIONS(3555), - [anon_sym_inline] = ACTIONS(3555), - [anon_sym_thread_local] = ACTIONS(3555), - [anon_sym_const] = ACTIONS(3555), - [anon_sym_volatile] = ACTIONS(3555), - [anon_sym_restrict] = ACTIONS(3555), - [anon_sym__Atomic] = ACTIONS(3555), - [anon_sym_mutable] = ACTIONS(3555), - [anon_sym_constexpr] = ACTIONS(3555), - [anon_sym_COLON] = ACTIONS(3557), - [anon_sym_DASH_GT] = ACTIONS(3557), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3555), - [anon_sym_override] = ACTIONS(3555), - [anon_sym_virtual] = ACTIONS(3555), - [anon_sym_operator] = ACTIONS(3555), - [anon_sym_noexcept] = ACTIONS(3555), - [anon_sym_throw] = ACTIONS(3555), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3555), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3555), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3555), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3555), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3555), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3555), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3555), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3555), - [anon_sym_MOZ_COLD] = ACTIONS(3555), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3555), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3555), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3555), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3555), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3555), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3555), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3555), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3555), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3555), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3555), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3555), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3555), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3555), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3555), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3555), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3555), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3555), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3555), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3555), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3555), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3555), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3555), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3555), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3555), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3555), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3555), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3555), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3555), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3555), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3555), - [anon_sym_MOZ_NONNULL] = ACTIONS(3555), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3555), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3555), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3555), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3555), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3555), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3555), - [anon_sym_MOZ_NORETURN] = ACTIONS(3555), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3555), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3555), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3555), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3555), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3555), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3555), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3555), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3555), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3555), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3555), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3555), - [anon_sym_MOZ_RAII] = ACTIONS(3555), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3555), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3555), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3555), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3555), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3555), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3555), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3555), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3555), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3555), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3555), - }, - [1440] = { - [sym_identifier] = ACTIONS(3649), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_LPAREN2] = ACTIONS(3651), - [anon_sym_STAR] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_AMP] = ACTIONS(3649), - [anon_sym_SEMI] = ACTIONS(3651), - [anon_sym_extern] = ACTIONS(3649), - [anon_sym___attribute__] = ACTIONS(3649), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3651), - [anon_sym___declspec] = ACTIONS(3649), - [anon_sym___based] = ACTIONS(3649), - [anon_sym_LBRACE] = ACTIONS(3651), - [anon_sym_LBRACK] = ACTIONS(3649), - [anon_sym_EQ] = ACTIONS(3651), - [anon_sym_static] = ACTIONS(3649), - [anon_sym_register] = ACTIONS(3649), - [anon_sym_inline] = ACTIONS(3649), - [anon_sym_thread_local] = ACTIONS(3649), - [anon_sym_const] = ACTIONS(3649), - [anon_sym_volatile] = ACTIONS(3649), - [anon_sym_restrict] = ACTIONS(3649), - [anon_sym__Atomic] = ACTIONS(3649), - [anon_sym_mutable] = ACTIONS(3649), - [anon_sym_constexpr] = ACTIONS(3649), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_DASH_GT] = ACTIONS(3651), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3649), - [anon_sym_override] = ACTIONS(3649), - [anon_sym_virtual] = ACTIONS(3649), - [anon_sym_operator] = ACTIONS(3649), - [anon_sym_noexcept] = ACTIONS(3649), - [anon_sym_throw] = ACTIONS(3649), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3649), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3649), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3649), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3649), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3649), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3649), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3649), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3649), - [anon_sym_MOZ_COLD] = ACTIONS(3649), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3649), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3649), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3649), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3649), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3649), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3649), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3649), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3649), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3649), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3649), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3649), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3649), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3649), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3649), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3649), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3649), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3649), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3649), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3649), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3649), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3649), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3649), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3649), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3649), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3649), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3649), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3649), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3649), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3649), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3649), - [anon_sym_MOZ_NONNULL] = ACTIONS(3649), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3649), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3649), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3649), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3649), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3649), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3649), - [anon_sym_MOZ_NORETURN] = ACTIONS(3649), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3649), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3649), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3649), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3649), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3649), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3649), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3649), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3649), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3649), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3649), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3649), - [anon_sym_MOZ_RAII] = ACTIONS(3649), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3649), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3649), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3649), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3649), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3649), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3649), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3649), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3649), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3649), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3649), - }, - [1441] = { - [sym_identifier] = ACTIONS(3701), - [anon_sym_COMMA] = ACTIONS(3703), - [anon_sym_LPAREN2] = ACTIONS(3703), - [anon_sym_STAR] = ACTIONS(3703), - [anon_sym_AMP_AMP] = ACTIONS(3703), - [anon_sym_AMP] = ACTIONS(3701), - [anon_sym_SEMI] = ACTIONS(3703), - [anon_sym_extern] = ACTIONS(3701), - [anon_sym___attribute__] = ACTIONS(3701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3703), - [anon_sym___declspec] = ACTIONS(3701), - [anon_sym___based] = ACTIONS(3701), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACK] = ACTIONS(3701), - [anon_sym_EQ] = ACTIONS(3703), - [anon_sym_static] = ACTIONS(3701), - [anon_sym_register] = ACTIONS(3701), - [anon_sym_inline] = ACTIONS(3701), - [anon_sym_thread_local] = ACTIONS(3701), - [anon_sym_const] = ACTIONS(3701), - [anon_sym_volatile] = ACTIONS(3701), - [anon_sym_restrict] = ACTIONS(3701), - [anon_sym__Atomic] = ACTIONS(3701), - [anon_sym_mutable] = ACTIONS(3701), - [anon_sym_constexpr] = ACTIONS(3701), - [anon_sym_COLON] = ACTIONS(3703), - [anon_sym_DASH_GT] = ACTIONS(3703), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3701), - [anon_sym_override] = ACTIONS(3701), - [anon_sym_virtual] = ACTIONS(3701), - [anon_sym_operator] = ACTIONS(3701), - [anon_sym_noexcept] = ACTIONS(3701), - [anon_sym_throw] = ACTIONS(3701), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3701), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3701), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3701), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3701), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3701), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3701), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3701), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3701), - [anon_sym_MOZ_COLD] = ACTIONS(3701), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3701), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3701), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3701), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3701), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3701), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3701), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3701), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3701), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3701), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3701), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3701), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3701), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3701), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3701), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3701), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3701), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3701), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3701), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3701), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3701), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3701), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3701), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3701), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3701), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3701), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3701), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3701), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3701), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3701), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3701), - [anon_sym_MOZ_NONNULL] = ACTIONS(3701), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3701), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3701), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3701), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3701), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3701), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3701), - [anon_sym_MOZ_NORETURN] = ACTIONS(3701), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3701), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3701), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3701), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3701), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3701), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3701), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3701), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3701), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3701), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3701), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3701), - [anon_sym_MOZ_RAII] = ACTIONS(3701), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3701), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3701), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3701), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3701), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3701), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3701), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3701), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3701), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3701), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3701), - }, - [1442] = { - [sym_identifier] = ACTIONS(3709), - [anon_sym_COMMA] = ACTIONS(3711), - [anon_sym_LPAREN2] = ACTIONS(3711), - [anon_sym_STAR] = ACTIONS(3711), - [anon_sym_AMP_AMP] = ACTIONS(3711), - [anon_sym_AMP] = ACTIONS(3709), - [anon_sym_SEMI] = ACTIONS(3711), - [anon_sym_extern] = ACTIONS(3709), - [anon_sym___attribute__] = ACTIONS(3709), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3711), - [anon_sym___declspec] = ACTIONS(3709), - [anon_sym___based] = ACTIONS(3709), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_LBRACK] = ACTIONS(3709), - [anon_sym_EQ] = ACTIONS(3711), - [anon_sym_static] = ACTIONS(3709), - [anon_sym_register] = ACTIONS(3709), - [anon_sym_inline] = ACTIONS(3709), - [anon_sym_thread_local] = ACTIONS(3709), - [anon_sym_const] = ACTIONS(3709), - [anon_sym_volatile] = ACTIONS(3709), - [anon_sym_restrict] = ACTIONS(3709), - [anon_sym__Atomic] = ACTIONS(3709), - [anon_sym_mutable] = ACTIONS(3709), - [anon_sym_constexpr] = ACTIONS(3709), - [anon_sym_COLON] = ACTIONS(3711), - [anon_sym_DASH_GT] = ACTIONS(3711), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3709), - [anon_sym_override] = ACTIONS(3709), - [anon_sym_virtual] = ACTIONS(3709), - [anon_sym_operator] = ACTIONS(3709), - [anon_sym_noexcept] = ACTIONS(3709), - [anon_sym_throw] = ACTIONS(3709), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3709), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3709), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3709), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3709), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3709), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3709), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3709), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3709), - [anon_sym_MOZ_COLD] = ACTIONS(3709), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3709), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3709), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3709), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3709), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3709), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3709), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3709), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3709), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3709), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3709), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3709), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3709), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3709), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3709), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3709), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3709), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3709), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3709), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3709), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3709), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3709), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3709), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3709), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3709), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3709), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3709), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3709), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3709), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3709), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3709), - [anon_sym_MOZ_NONNULL] = ACTIONS(3709), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3709), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3709), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3709), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3709), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3709), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3709), - [anon_sym_MOZ_NORETURN] = ACTIONS(3709), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3709), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3709), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3709), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3709), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3709), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3709), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3709), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3709), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3709), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3709), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3709), - [anon_sym_MOZ_RAII] = ACTIONS(3709), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3709), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3709), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3709), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3709), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3709), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3709), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3709), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3709), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3709), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3709), - }, - [1443] = { - [sym_identifier] = ACTIONS(3499), - [anon_sym_COMMA] = ACTIONS(3501), - [anon_sym_LPAREN2] = ACTIONS(3501), - [anon_sym_STAR] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3499), - [anon_sym_SEMI] = ACTIONS(3501), - [anon_sym_extern] = ACTIONS(3499), - [anon_sym___attribute__] = ACTIONS(3499), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3501), - [anon_sym___declspec] = ACTIONS(3499), - [anon_sym___based] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3499), - [anon_sym_EQ] = ACTIONS(3501), - [anon_sym_static] = ACTIONS(3499), - [anon_sym_register] = ACTIONS(3499), - [anon_sym_inline] = ACTIONS(3499), - [anon_sym_thread_local] = ACTIONS(3499), - [anon_sym_const] = ACTIONS(3499), - [anon_sym_volatile] = ACTIONS(3499), - [anon_sym_restrict] = ACTIONS(3499), - [anon_sym__Atomic] = ACTIONS(3499), - [anon_sym_mutable] = ACTIONS(3499), - [anon_sym_constexpr] = ACTIONS(3499), - [anon_sym_COLON] = ACTIONS(3501), - [anon_sym_DASH_GT] = ACTIONS(3501), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3499), - [anon_sym_override] = ACTIONS(3499), - [anon_sym_virtual] = ACTIONS(3499), - [anon_sym_operator] = ACTIONS(3499), - [anon_sym_noexcept] = ACTIONS(3499), - [anon_sym_throw] = ACTIONS(3499), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3499), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3499), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3499), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3499), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3499), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3499), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3499), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3499), - [anon_sym_MOZ_COLD] = ACTIONS(3499), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3499), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3499), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3499), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3499), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3499), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3499), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3499), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3499), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3499), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3499), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3499), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3499), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3499), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3499), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3499), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3499), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3499), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3499), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3499), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3499), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3499), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3499), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3499), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3499), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3499), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3499), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3499), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3499), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3499), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3499), - [anon_sym_MOZ_NONNULL] = ACTIONS(3499), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3499), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3499), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3499), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3499), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3499), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3499), - [anon_sym_MOZ_NORETURN] = ACTIONS(3499), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3499), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3499), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3499), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3499), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3499), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3499), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3499), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3499), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3499), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3499), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3499), - [anon_sym_MOZ_RAII] = ACTIONS(3499), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3499), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3499), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3499), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3499), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3499), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3499), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3499), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3499), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3499), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3499), - }, - [1444] = { - [sym_identifier] = ACTIONS(3571), - [anon_sym_COMMA] = ACTIONS(3573), - [anon_sym_LPAREN2] = ACTIONS(3573), - [anon_sym_STAR] = ACTIONS(3573), - [anon_sym_AMP_AMP] = ACTIONS(3573), - [anon_sym_AMP] = ACTIONS(3571), - [anon_sym_SEMI] = ACTIONS(3573), - [anon_sym_extern] = ACTIONS(3571), - [anon_sym___attribute__] = ACTIONS(3571), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3573), - [anon_sym___declspec] = ACTIONS(3571), - [anon_sym___based] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3573), - [anon_sym_LBRACK] = ACTIONS(3571), - [anon_sym_EQ] = ACTIONS(3573), - [anon_sym_static] = ACTIONS(3571), - [anon_sym_register] = ACTIONS(3571), - [anon_sym_inline] = ACTIONS(3571), - [anon_sym_thread_local] = ACTIONS(3571), - [anon_sym_const] = ACTIONS(3571), - [anon_sym_volatile] = ACTIONS(3571), - [anon_sym_restrict] = ACTIONS(3571), - [anon_sym__Atomic] = ACTIONS(3571), - [anon_sym_mutable] = ACTIONS(3571), - [anon_sym_constexpr] = ACTIONS(3571), - [anon_sym_COLON] = ACTIONS(3573), - [anon_sym_DASH_GT] = ACTIONS(3573), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3571), - [anon_sym_override] = ACTIONS(3571), - [anon_sym_virtual] = ACTIONS(3571), - [anon_sym_operator] = ACTIONS(3571), - [anon_sym_noexcept] = ACTIONS(3571), - [anon_sym_throw] = ACTIONS(3571), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3571), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3571), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3571), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3571), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3571), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3571), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3571), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3571), - [anon_sym_MOZ_COLD] = ACTIONS(3571), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3571), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3571), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3571), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3571), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3571), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3571), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3571), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3571), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3571), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3571), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3571), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3571), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3571), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3571), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3571), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3571), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3571), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3571), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3571), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3571), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3571), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3571), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3571), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3571), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3571), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3571), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3571), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3571), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3571), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3571), - [anon_sym_MOZ_NONNULL] = ACTIONS(3571), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3571), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3571), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3571), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3571), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3571), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3571), - [anon_sym_MOZ_NORETURN] = ACTIONS(3571), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3571), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3571), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3571), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3571), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3571), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3571), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3571), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3571), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3571), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3571), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3571), - [anon_sym_MOZ_RAII] = ACTIONS(3571), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3571), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3571), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3571), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3571), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3571), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3571), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3571), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3571), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3571), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3571), - }, - [1445] = { - [sym_identifier] = ACTIONS(3519), - [anon_sym_COMMA] = ACTIONS(3521), - [anon_sym_LPAREN2] = ACTIONS(3521), - [anon_sym_STAR] = ACTIONS(3521), - [anon_sym_AMP_AMP] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [anon_sym_extern] = ACTIONS(3519), - [anon_sym___attribute__] = ACTIONS(3519), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3521), - [anon_sym___declspec] = ACTIONS(3519), - [anon_sym___based] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3521), - [anon_sym_LBRACK] = ACTIONS(3519), - [anon_sym_EQ] = ACTIONS(3521), - [anon_sym_static] = ACTIONS(3519), - [anon_sym_register] = ACTIONS(3519), - [anon_sym_inline] = ACTIONS(3519), - [anon_sym_thread_local] = ACTIONS(3519), - [anon_sym_const] = ACTIONS(3519), - [anon_sym_volatile] = ACTIONS(3519), - [anon_sym_restrict] = ACTIONS(3519), - [anon_sym__Atomic] = ACTIONS(3519), - [anon_sym_mutable] = ACTIONS(3519), - [anon_sym_constexpr] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3521), - [anon_sym_DASH_GT] = ACTIONS(3521), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3519), - [anon_sym_override] = ACTIONS(3519), - [anon_sym_virtual] = ACTIONS(3519), - [anon_sym_operator] = ACTIONS(3519), - [anon_sym_noexcept] = ACTIONS(3519), - [anon_sym_throw] = ACTIONS(3519), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3519), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3519), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3519), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3519), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3519), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3519), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3519), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3519), - [anon_sym_MOZ_COLD] = ACTIONS(3519), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3519), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3519), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3519), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3519), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3519), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3519), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3519), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3519), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3519), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3519), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3519), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3519), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3519), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3519), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3519), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3519), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3519), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3519), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3519), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3519), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3519), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3519), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3519), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3519), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3519), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3519), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3519), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3519), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3519), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3519), - [anon_sym_MOZ_NONNULL] = ACTIONS(3519), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3519), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3519), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3519), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3519), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3519), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3519), - [anon_sym_MOZ_NORETURN] = ACTIONS(3519), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3519), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3519), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3519), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3519), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3519), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3519), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3519), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3519), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3519), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3519), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3519), - [anon_sym_MOZ_RAII] = ACTIONS(3519), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3519), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3519), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3519), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3519), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3519), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3519), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3519), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3519), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3519), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3519), - }, - [1446] = { - [sym_identifier] = ACTIONS(3567), - [anon_sym_COMMA] = ACTIONS(3569), - [anon_sym_LPAREN2] = ACTIONS(3569), - [anon_sym_STAR] = ACTIONS(3569), - [anon_sym_AMP_AMP] = ACTIONS(3569), - [anon_sym_AMP] = ACTIONS(3567), - [anon_sym_SEMI] = ACTIONS(3569), - [anon_sym_extern] = ACTIONS(3567), - [anon_sym___attribute__] = ACTIONS(3567), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3569), - [anon_sym___declspec] = ACTIONS(3567), - [anon_sym___based] = ACTIONS(3567), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_LBRACK] = ACTIONS(3567), - [anon_sym_EQ] = ACTIONS(3569), - [anon_sym_static] = ACTIONS(3567), - [anon_sym_register] = ACTIONS(3567), - [anon_sym_inline] = ACTIONS(3567), - [anon_sym_thread_local] = ACTIONS(3567), - [anon_sym_const] = ACTIONS(3567), - [anon_sym_volatile] = ACTIONS(3567), - [anon_sym_restrict] = ACTIONS(3567), - [anon_sym__Atomic] = ACTIONS(3567), - [anon_sym_mutable] = ACTIONS(3567), - [anon_sym_constexpr] = ACTIONS(3567), - [anon_sym_COLON] = ACTIONS(3569), - [anon_sym_DASH_GT] = ACTIONS(3569), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3567), - [anon_sym_override] = ACTIONS(3567), - [anon_sym_virtual] = ACTIONS(3567), - [anon_sym_operator] = ACTIONS(3567), - [anon_sym_noexcept] = ACTIONS(3567), - [anon_sym_throw] = ACTIONS(3567), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3567), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3567), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3567), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3567), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3567), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3567), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3567), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3567), - [anon_sym_MOZ_COLD] = ACTIONS(3567), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3567), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3567), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3567), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3567), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3567), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3567), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3567), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3567), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3567), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3567), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3567), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3567), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3567), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3567), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3567), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3567), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3567), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3567), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3567), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3567), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3567), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3567), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3567), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3567), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3567), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3567), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3567), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3567), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3567), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3567), - [anon_sym_MOZ_NONNULL] = ACTIONS(3567), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3567), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3567), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3567), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3567), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3567), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3567), - [anon_sym_MOZ_NORETURN] = ACTIONS(3567), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3567), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3567), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3567), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3567), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3567), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3567), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3567), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3567), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3567), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3567), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3567), - [anon_sym_MOZ_RAII] = ACTIONS(3567), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3567), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3567), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3567), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3567), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3567), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3567), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3567), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3567), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3567), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3567), - }, - [1447] = { - [sym_identifier] = ACTIONS(3563), - [anon_sym_COMMA] = ACTIONS(3565), - [anon_sym_LPAREN2] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3565), - [anon_sym_AMP_AMP] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3563), - [anon_sym_SEMI] = ACTIONS(3565), - [anon_sym_extern] = ACTIONS(3563), - [anon_sym___attribute__] = ACTIONS(3563), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3565), - [anon_sym___declspec] = ACTIONS(3563), - [anon_sym___based] = ACTIONS(3563), - [anon_sym_LBRACE] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(3563), - [anon_sym_EQ] = ACTIONS(3565), - [anon_sym_static] = ACTIONS(3563), - [anon_sym_register] = ACTIONS(3563), - [anon_sym_inline] = ACTIONS(3563), - [anon_sym_thread_local] = ACTIONS(3563), - [anon_sym_const] = ACTIONS(3563), - [anon_sym_volatile] = ACTIONS(3563), - [anon_sym_restrict] = ACTIONS(3563), - [anon_sym__Atomic] = ACTIONS(3563), - [anon_sym_mutable] = ACTIONS(3563), - [anon_sym_constexpr] = ACTIONS(3563), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_DASH_GT] = ACTIONS(3565), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3563), - [anon_sym_override] = ACTIONS(3563), - [anon_sym_virtual] = ACTIONS(3563), - [anon_sym_operator] = ACTIONS(3563), - [anon_sym_noexcept] = ACTIONS(3563), - [anon_sym_throw] = ACTIONS(3563), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3563), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3563), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3563), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3563), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3563), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3563), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3563), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3563), - [anon_sym_MOZ_COLD] = ACTIONS(3563), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3563), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3563), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3563), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3563), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3563), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3563), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3563), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3563), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3563), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3563), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3563), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3563), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3563), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3563), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3563), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3563), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3563), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3563), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3563), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3563), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3563), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3563), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3563), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3563), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3563), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3563), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3563), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3563), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3563), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3563), - [anon_sym_MOZ_NONNULL] = ACTIONS(3563), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3563), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3563), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3563), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3563), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3563), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3563), - [anon_sym_MOZ_NORETURN] = ACTIONS(3563), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3563), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3563), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3563), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3563), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3563), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3563), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3563), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3563), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3563), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3563), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3563), - [anon_sym_MOZ_RAII] = ACTIONS(3563), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3563), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3563), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3563), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3563), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3563), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3563), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3563), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3563), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3563), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3563), - }, - [1448] = { - [sym_identifier] = ACTIONS(3511), - [anon_sym_COMMA] = ACTIONS(3513), - [anon_sym_LPAREN2] = ACTIONS(3513), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_AMP_AMP] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3511), - [anon_sym_SEMI] = ACTIONS(3513), - [anon_sym_extern] = ACTIONS(3511), - [anon_sym___attribute__] = ACTIONS(3511), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3513), - [anon_sym___declspec] = ACTIONS(3511), - [anon_sym___based] = ACTIONS(3511), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_EQ] = ACTIONS(3513), - [anon_sym_static] = ACTIONS(3511), - [anon_sym_register] = ACTIONS(3511), - [anon_sym_inline] = ACTIONS(3511), - [anon_sym_thread_local] = ACTIONS(3511), - [anon_sym_const] = ACTIONS(3511), - [anon_sym_volatile] = ACTIONS(3511), - [anon_sym_restrict] = ACTIONS(3511), - [anon_sym__Atomic] = ACTIONS(3511), - [anon_sym_mutable] = ACTIONS(3511), - [anon_sym_constexpr] = ACTIONS(3511), - [anon_sym_COLON] = ACTIONS(3513), - [anon_sym_DASH_GT] = ACTIONS(3513), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3511), - [anon_sym_override] = ACTIONS(3511), - [anon_sym_virtual] = ACTIONS(3511), - [anon_sym_operator] = ACTIONS(3511), - [anon_sym_noexcept] = ACTIONS(3511), - [anon_sym_throw] = ACTIONS(3511), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3511), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3511), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3511), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3511), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3511), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3511), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3511), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3511), - [anon_sym_MOZ_COLD] = ACTIONS(3511), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3511), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3511), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3511), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3511), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3511), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3511), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3511), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3511), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3511), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3511), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3511), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3511), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3511), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3511), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3511), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3511), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3511), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3511), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3511), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3511), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3511), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3511), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3511), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3511), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3511), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3511), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3511), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3511), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3511), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3511), - [anon_sym_MOZ_NONNULL] = ACTIONS(3511), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3511), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3511), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3511), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3511), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3511), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3511), - [anon_sym_MOZ_NORETURN] = ACTIONS(3511), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3511), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3511), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3511), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3511), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3511), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3511), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3511), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3511), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3511), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3511), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3511), - [anon_sym_MOZ_RAII] = ACTIONS(3511), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3511), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3511), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3511), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3511), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3511), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3511), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3511), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3511), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3511), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3511), - }, - [1449] = { - [sym_identifier] = ACTIONS(3611), - [anon_sym_COMMA] = ACTIONS(3613), - [anon_sym_LPAREN2] = ACTIONS(3613), - [anon_sym_STAR] = ACTIONS(3613), - [anon_sym_AMP_AMP] = ACTIONS(3613), - [anon_sym_AMP] = ACTIONS(3611), - [anon_sym_SEMI] = ACTIONS(3613), - [anon_sym_extern] = ACTIONS(3611), - [anon_sym___attribute__] = ACTIONS(3611), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3613), - [anon_sym___declspec] = ACTIONS(3611), - [anon_sym___based] = ACTIONS(3611), - [anon_sym_LBRACE] = ACTIONS(3613), - [anon_sym_LBRACK] = ACTIONS(3611), - [anon_sym_EQ] = ACTIONS(3613), - [anon_sym_static] = ACTIONS(3611), - [anon_sym_register] = ACTIONS(3611), - [anon_sym_inline] = ACTIONS(3611), - [anon_sym_thread_local] = ACTIONS(3611), - [anon_sym_const] = ACTIONS(3611), - [anon_sym_volatile] = ACTIONS(3611), - [anon_sym_restrict] = ACTIONS(3611), - [anon_sym__Atomic] = ACTIONS(3611), - [anon_sym_mutable] = ACTIONS(3611), - [anon_sym_constexpr] = ACTIONS(3611), - [anon_sym_COLON] = ACTIONS(3613), - [anon_sym_DASH_GT] = ACTIONS(3613), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3611), - [anon_sym_override] = ACTIONS(3611), - [anon_sym_virtual] = ACTIONS(3611), - [anon_sym_operator] = ACTIONS(3611), - [anon_sym_noexcept] = ACTIONS(3611), - [anon_sym_throw] = ACTIONS(3611), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3611), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3611), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3611), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3611), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3611), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3611), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3611), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3611), - [anon_sym_MOZ_COLD] = ACTIONS(3611), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3611), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3611), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3611), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3611), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3611), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3611), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3611), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3611), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3611), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3611), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3611), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3611), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3611), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3611), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3611), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3611), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3611), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3611), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3611), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3611), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3611), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3611), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3611), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3611), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3611), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3611), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3611), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3611), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3611), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3611), - [anon_sym_MOZ_NONNULL] = ACTIONS(3611), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3611), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3611), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3611), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3611), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3611), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3611), - [anon_sym_MOZ_NORETURN] = ACTIONS(3611), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3611), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3611), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3611), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3611), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3611), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3611), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3611), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3611), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3611), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3611), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3611), - [anon_sym_MOZ_RAII] = ACTIONS(3611), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3611), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3611), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3611), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3611), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3611), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3611), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3611), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3611), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3611), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3611), - }, - [1450] = { - [sym_identifier] = ACTIONS(3615), - [anon_sym_COMMA] = ACTIONS(3617), - [anon_sym_LPAREN2] = ACTIONS(3617), - [anon_sym_STAR] = ACTIONS(3617), - [anon_sym_AMP_AMP] = ACTIONS(3617), - [anon_sym_AMP] = ACTIONS(3615), - [anon_sym_SEMI] = ACTIONS(3617), - [anon_sym_extern] = ACTIONS(3615), - [anon_sym___attribute__] = ACTIONS(3615), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3617), - [anon_sym___declspec] = ACTIONS(3615), - [anon_sym___based] = ACTIONS(3615), - [anon_sym_LBRACE] = ACTIONS(3617), - [anon_sym_LBRACK] = ACTIONS(3615), - [anon_sym_EQ] = ACTIONS(3617), - [anon_sym_static] = ACTIONS(3615), - [anon_sym_register] = ACTIONS(3615), - [anon_sym_inline] = ACTIONS(3615), - [anon_sym_thread_local] = ACTIONS(3615), - [anon_sym_const] = ACTIONS(3615), - [anon_sym_volatile] = ACTIONS(3615), - [anon_sym_restrict] = ACTIONS(3615), - [anon_sym__Atomic] = ACTIONS(3615), - [anon_sym_mutable] = ACTIONS(3615), - [anon_sym_constexpr] = ACTIONS(3615), - [anon_sym_COLON] = ACTIONS(3617), - [anon_sym_DASH_GT] = ACTIONS(3617), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3615), - [anon_sym_override] = ACTIONS(3615), - [anon_sym_virtual] = ACTIONS(3615), - [anon_sym_operator] = ACTIONS(3615), - [anon_sym_noexcept] = ACTIONS(3615), - [anon_sym_throw] = ACTIONS(3615), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3615), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3615), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3615), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3615), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3615), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3615), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3615), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3615), - [anon_sym_MOZ_COLD] = ACTIONS(3615), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3615), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3615), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3615), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3615), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3615), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3615), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3615), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3615), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3615), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3615), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3615), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3615), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3615), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3615), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3615), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3615), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3615), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3615), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3615), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3615), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3615), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3615), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3615), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3615), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3615), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3615), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3615), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3615), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3615), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3615), - [anon_sym_MOZ_NONNULL] = ACTIONS(3615), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3615), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3615), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3615), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3615), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3615), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3615), - [anon_sym_MOZ_NORETURN] = ACTIONS(3615), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3615), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3615), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3615), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3615), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3615), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3615), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3615), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3615), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3615), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3615), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3615), - [anon_sym_MOZ_RAII] = ACTIONS(3615), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3615), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3615), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3615), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3615), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3615), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3615), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3615), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3615), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3615), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3615), - }, - [1451] = { - [sym_identifier] = ACTIONS(3623), - [anon_sym_COMMA] = ACTIONS(3625), - [anon_sym_LPAREN2] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(3625), - [anon_sym_AMP_AMP] = ACTIONS(3625), - [anon_sym_AMP] = ACTIONS(3623), - [anon_sym_SEMI] = ACTIONS(3625), - [anon_sym_extern] = ACTIONS(3623), - [anon_sym___attribute__] = ACTIONS(3623), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3625), - [anon_sym___declspec] = ACTIONS(3623), - [anon_sym___based] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3625), - [anon_sym_LBRACK] = ACTIONS(3623), - [anon_sym_EQ] = ACTIONS(3625), - [anon_sym_static] = ACTIONS(3623), - [anon_sym_register] = ACTIONS(3623), - [anon_sym_inline] = ACTIONS(3623), - [anon_sym_thread_local] = ACTIONS(3623), - [anon_sym_const] = ACTIONS(3623), - [anon_sym_volatile] = ACTIONS(3623), - [anon_sym_restrict] = ACTIONS(3623), - [anon_sym__Atomic] = ACTIONS(3623), - [anon_sym_mutable] = ACTIONS(3623), - [anon_sym_constexpr] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3625), - [anon_sym_DASH_GT] = ACTIONS(3625), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3623), - [anon_sym_override] = ACTIONS(3623), - [anon_sym_virtual] = ACTIONS(3623), - [anon_sym_operator] = ACTIONS(3623), - [anon_sym_noexcept] = ACTIONS(3623), - [anon_sym_throw] = ACTIONS(3623), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3623), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3623), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3623), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3623), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3623), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3623), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3623), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3623), - [anon_sym_MOZ_COLD] = ACTIONS(3623), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3623), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3623), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3623), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3623), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3623), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3623), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3623), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3623), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3623), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3623), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3623), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3623), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3623), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3623), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3623), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3623), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3623), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3623), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3623), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3623), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3623), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3623), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3623), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3623), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3623), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3623), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3623), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3623), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3623), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3623), - [anon_sym_MOZ_NONNULL] = ACTIONS(3623), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3623), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3623), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3623), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3623), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3623), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3623), - [anon_sym_MOZ_NORETURN] = ACTIONS(3623), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3623), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3623), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3623), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3623), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3623), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3623), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3623), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3623), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3623), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3623), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3623), - [anon_sym_MOZ_RAII] = ACTIONS(3623), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3623), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3623), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3623), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3623), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3623), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3623), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3623), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3623), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3623), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3623), - }, - [1452] = { - [sym_identifier] = ACTIONS(3503), - [anon_sym_COMMA] = ACTIONS(3505), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_STAR] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_AMP] = ACTIONS(3503), - [anon_sym_SEMI] = ACTIONS(3505), - [anon_sym_extern] = ACTIONS(3503), - [anon_sym___attribute__] = ACTIONS(3503), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3505), - [anon_sym___declspec] = ACTIONS(3503), - [anon_sym___based] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3503), - [anon_sym_EQ] = ACTIONS(3505), - [anon_sym_static] = ACTIONS(3503), - [anon_sym_register] = ACTIONS(3503), - [anon_sym_inline] = ACTIONS(3503), - [anon_sym_thread_local] = ACTIONS(3503), - [anon_sym_const] = ACTIONS(3503), - [anon_sym_volatile] = ACTIONS(3503), - [anon_sym_restrict] = ACTIONS(3503), - [anon_sym__Atomic] = ACTIONS(3503), - [anon_sym_mutable] = ACTIONS(3503), - [anon_sym_constexpr] = ACTIONS(3503), - [anon_sym_COLON] = ACTIONS(3505), - [anon_sym_DASH_GT] = ACTIONS(3505), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3503), - [anon_sym_override] = ACTIONS(3503), - [anon_sym_virtual] = ACTIONS(3503), - [anon_sym_operator] = ACTIONS(3503), - [anon_sym_noexcept] = ACTIONS(3503), - [anon_sym_throw] = ACTIONS(3503), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3503), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3503), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3503), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3503), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3503), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3503), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3503), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3503), - [anon_sym_MOZ_COLD] = ACTIONS(3503), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3503), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3503), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3503), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3503), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3503), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3503), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3503), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3503), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3503), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3503), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3503), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3503), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3503), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3503), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3503), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3503), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3503), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3503), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3503), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3503), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3503), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3503), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3503), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3503), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3503), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3503), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3503), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3503), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3503), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3503), - [anon_sym_MOZ_NONNULL] = ACTIONS(3503), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3503), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3503), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3503), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3503), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3503), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3503), - [anon_sym_MOZ_NORETURN] = ACTIONS(3503), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3503), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3503), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3503), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3503), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3503), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3503), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3503), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3503), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3503), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3503), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3503), - [anon_sym_MOZ_RAII] = ACTIONS(3503), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3503), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3503), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3503), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3503), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3503), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3503), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3503), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3503), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3503), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3503), - }, - [1453] = { - [sym_identifier] = ACTIONS(3619), - [anon_sym_COMMA] = ACTIONS(3621), - [anon_sym_LPAREN2] = ACTIONS(3621), - [anon_sym_STAR] = ACTIONS(3621), - [anon_sym_AMP_AMP] = ACTIONS(3621), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_SEMI] = ACTIONS(3621), - [anon_sym_extern] = ACTIONS(3619), - [anon_sym___attribute__] = ACTIONS(3619), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3621), - [anon_sym___declspec] = ACTIONS(3619), - [anon_sym___based] = ACTIONS(3619), - [anon_sym_LBRACE] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3619), - [anon_sym_EQ] = ACTIONS(3621), - [anon_sym_static] = ACTIONS(3619), - [anon_sym_register] = ACTIONS(3619), - [anon_sym_inline] = ACTIONS(3619), - [anon_sym_thread_local] = ACTIONS(3619), - [anon_sym_const] = ACTIONS(3619), - [anon_sym_volatile] = ACTIONS(3619), - [anon_sym_restrict] = ACTIONS(3619), - [anon_sym__Atomic] = ACTIONS(3619), - [anon_sym_mutable] = ACTIONS(3619), - [anon_sym_constexpr] = ACTIONS(3619), - [anon_sym_COLON] = ACTIONS(3621), - [anon_sym_DASH_GT] = ACTIONS(3621), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3619), - [anon_sym_override] = ACTIONS(3619), - [anon_sym_virtual] = ACTIONS(3619), - [anon_sym_operator] = ACTIONS(3619), - [anon_sym_noexcept] = ACTIONS(3619), - [anon_sym_throw] = ACTIONS(3619), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3619), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3619), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3619), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3619), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3619), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3619), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3619), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3619), - [anon_sym_MOZ_COLD] = ACTIONS(3619), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3619), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3619), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3619), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3619), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3619), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3619), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3619), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3619), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3619), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3619), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3619), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3619), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3619), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3619), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3619), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3619), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3619), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3619), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3619), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3619), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3619), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3619), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3619), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3619), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3619), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3619), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3619), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3619), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3619), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3619), - [anon_sym_MOZ_NONNULL] = ACTIONS(3619), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3619), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3619), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3619), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3619), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3619), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3619), - [anon_sym_MOZ_NORETURN] = ACTIONS(3619), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3619), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3619), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3619), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3619), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3619), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3619), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3619), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3619), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3619), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3619), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3619), - [anon_sym_MOZ_RAII] = ACTIONS(3619), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3619), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3619), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3619), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3619), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3619), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3619), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3619), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3619), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3619), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3619), - }, - [1454] = { - [sym_identifier] = ACTIONS(3452), - [anon_sym_COMMA] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_STAR] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_AMP] = ACTIONS(3452), - [anon_sym_SEMI] = ACTIONS(3454), - [anon_sym_extern] = ACTIONS(3452), - [anon_sym___attribute__] = ACTIONS(3452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), - [anon_sym___declspec] = ACTIONS(3452), - [anon_sym___based] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_LBRACK] = ACTIONS(3452), - [anon_sym_EQ] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3452), - [anon_sym_register] = ACTIONS(3452), - [anon_sym_inline] = ACTIONS(3452), - [anon_sym_thread_local] = ACTIONS(3452), - [anon_sym_const] = ACTIONS(3452), - [anon_sym_volatile] = ACTIONS(3452), - [anon_sym_restrict] = ACTIONS(3452), - [anon_sym__Atomic] = ACTIONS(3452), - [anon_sym_mutable] = ACTIONS(3452), - [anon_sym_constexpr] = ACTIONS(3452), - [anon_sym_COLON] = ACTIONS(3454), - [anon_sym_DASH_GT] = ACTIONS(3454), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3452), - [anon_sym_override] = ACTIONS(3452), - [anon_sym_virtual] = ACTIONS(3452), - [anon_sym_operator] = ACTIONS(3452), - [anon_sym_noexcept] = ACTIONS(3452), - [anon_sym_throw] = ACTIONS(3452), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3452), - [anon_sym_MOZ_COLD] = ACTIONS(3452), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3452), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3452), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3452), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3452), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3452), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3452), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3452), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3452), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3452), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3452), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3452), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3452), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_RAII] = ACTIONS(3452), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3452), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3452), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3452), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3452), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3452), - }, - [1455] = { - [sym_identifier] = ACTIONS(3653), - [anon_sym_COMMA] = ACTIONS(3655), - [anon_sym_LPAREN2] = ACTIONS(3655), - [anon_sym_STAR] = ACTIONS(3655), - [anon_sym_AMP_AMP] = ACTIONS(3655), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_SEMI] = ACTIONS(3655), - [anon_sym_extern] = ACTIONS(3653), - [anon_sym___attribute__] = ACTIONS(3653), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3655), - [anon_sym___declspec] = ACTIONS(3653), - [anon_sym___based] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3655), - [anon_sym_LBRACK] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3655), - [anon_sym_static] = ACTIONS(3653), - [anon_sym_register] = ACTIONS(3653), - [anon_sym_inline] = ACTIONS(3653), - [anon_sym_thread_local] = ACTIONS(3653), - [anon_sym_const] = ACTIONS(3653), - [anon_sym_volatile] = ACTIONS(3653), - [anon_sym_restrict] = ACTIONS(3653), - [anon_sym__Atomic] = ACTIONS(3653), - [anon_sym_mutable] = ACTIONS(3653), - [anon_sym_constexpr] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_DASH_GT] = ACTIONS(3655), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3653), - [anon_sym_override] = ACTIONS(3653), - [anon_sym_virtual] = ACTIONS(3653), - [anon_sym_operator] = ACTIONS(3653), - [anon_sym_noexcept] = ACTIONS(3653), - [anon_sym_throw] = ACTIONS(3653), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3653), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3653), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3653), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3653), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3653), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3653), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3653), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3653), - [anon_sym_MOZ_COLD] = ACTIONS(3653), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3653), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3653), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3653), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3653), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3653), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3653), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3653), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3653), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3653), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3653), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3653), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3653), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3653), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3653), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3653), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3653), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3653), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3653), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3653), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3653), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3653), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3653), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3653), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3653), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3653), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3653), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3653), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3653), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3653), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3653), - [anon_sym_MOZ_NONNULL] = ACTIONS(3653), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3653), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3653), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3653), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3653), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3653), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3653), - [anon_sym_MOZ_NORETURN] = ACTIONS(3653), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3653), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3653), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3653), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3653), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3653), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3653), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3653), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3653), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3653), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3653), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3653), - [anon_sym_MOZ_RAII] = ACTIONS(3653), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3653), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3653), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3653), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3653), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3653), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3653), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3653), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3653), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3653), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3653), - }, - [1456] = { - [sym_identifier] = ACTIONS(3693), - [anon_sym_COMMA] = ACTIONS(3695), - [anon_sym_LPAREN2] = ACTIONS(3695), - [anon_sym_STAR] = ACTIONS(3695), - [anon_sym_AMP_AMP] = ACTIONS(3695), - [anon_sym_AMP] = ACTIONS(3693), - [anon_sym_SEMI] = ACTIONS(3695), - [anon_sym_extern] = ACTIONS(3693), - [anon_sym___attribute__] = ACTIONS(3693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3695), - [anon_sym___declspec] = ACTIONS(3693), - [anon_sym___based] = ACTIONS(3693), - [anon_sym_LBRACE] = ACTIONS(3695), - [anon_sym_LBRACK] = ACTIONS(3693), - [anon_sym_EQ] = ACTIONS(3695), - [anon_sym_static] = ACTIONS(3693), - [anon_sym_register] = ACTIONS(3693), - [anon_sym_inline] = ACTIONS(3693), - [anon_sym_thread_local] = ACTIONS(3693), - [anon_sym_const] = ACTIONS(3693), - [anon_sym_volatile] = ACTIONS(3693), - [anon_sym_restrict] = ACTIONS(3693), - [anon_sym__Atomic] = ACTIONS(3693), - [anon_sym_mutable] = ACTIONS(3693), - [anon_sym_constexpr] = ACTIONS(3693), - [anon_sym_COLON] = ACTIONS(3695), - [anon_sym_DASH_GT] = ACTIONS(3695), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3693), - [anon_sym_override] = ACTIONS(3693), - [anon_sym_virtual] = ACTIONS(3693), - [anon_sym_operator] = ACTIONS(3693), - [anon_sym_noexcept] = ACTIONS(3693), - [anon_sym_throw] = ACTIONS(3693), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3693), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3693), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3693), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3693), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3693), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3693), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3693), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3693), - [anon_sym_MOZ_COLD] = ACTIONS(3693), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3693), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3693), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3693), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3693), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3693), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3693), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3693), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3693), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3693), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3693), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3693), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3693), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3693), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3693), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3693), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3693), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3693), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3693), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3693), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3693), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3693), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3693), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3693), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3693), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3693), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3693), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3693), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3693), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3693), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3693), - [anon_sym_MOZ_NONNULL] = ACTIONS(3693), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3693), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3693), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3693), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3693), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3693), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3693), - [anon_sym_MOZ_NORETURN] = ACTIONS(3693), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3693), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3693), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3693), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3693), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3693), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3693), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3693), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3693), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3693), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3693), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3693), - [anon_sym_MOZ_RAII] = ACTIONS(3693), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3693), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3693), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3693), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3693), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3693), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3693), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3693), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3693), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3693), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3693), - }, - [1457] = { - [sym_identifier] = ACTIONS(3495), - [anon_sym_COMMA] = ACTIONS(3497), - [anon_sym_LPAREN2] = ACTIONS(3497), - [anon_sym_STAR] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3495), - [anon_sym_SEMI] = ACTIONS(3497), - [anon_sym_extern] = ACTIONS(3495), - [anon_sym___attribute__] = ACTIONS(3495), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3497), - [anon_sym___declspec] = ACTIONS(3495), - [anon_sym___based] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_EQ] = ACTIONS(3497), - [anon_sym_static] = ACTIONS(3495), - [anon_sym_register] = ACTIONS(3495), - [anon_sym_inline] = ACTIONS(3495), - [anon_sym_thread_local] = ACTIONS(3495), - [anon_sym_const] = ACTIONS(3495), - [anon_sym_volatile] = ACTIONS(3495), - [anon_sym_restrict] = ACTIONS(3495), - [anon_sym__Atomic] = ACTIONS(3495), - [anon_sym_mutable] = ACTIONS(3495), - [anon_sym_constexpr] = ACTIONS(3495), - [anon_sym_COLON] = ACTIONS(3497), - [anon_sym_DASH_GT] = ACTIONS(3497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3495), - [anon_sym_override] = ACTIONS(3495), - [anon_sym_virtual] = ACTIONS(3495), - [anon_sym_operator] = ACTIONS(3495), - [anon_sym_noexcept] = ACTIONS(3495), - [anon_sym_throw] = ACTIONS(3495), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3495), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3495), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3495), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3495), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3495), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3495), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3495), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3495), - [anon_sym_MOZ_COLD] = ACTIONS(3495), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3495), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3495), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3495), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3495), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3495), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3495), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3495), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3495), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3495), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3495), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3495), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3495), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3495), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3495), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3495), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3495), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3495), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3495), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3495), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3495), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3495), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3495), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3495), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3495), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3495), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3495), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3495), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3495), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3495), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3495), - [anon_sym_MOZ_NONNULL] = ACTIONS(3495), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3495), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3495), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3495), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3495), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3495), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3495), - [anon_sym_MOZ_NORETURN] = ACTIONS(3495), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3495), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3495), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3495), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3495), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3495), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3495), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3495), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3495), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3495), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3495), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3495), - [anon_sym_MOZ_RAII] = ACTIONS(3495), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3495), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3495), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3495), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3495), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3495), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3495), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3495), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3495), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3495), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3495), - }, - [1458] = { - [sym_identifier] = ACTIONS(3591), - [anon_sym_COMMA] = ACTIONS(3593), - [anon_sym_LPAREN2] = ACTIONS(3593), - [anon_sym_STAR] = ACTIONS(3593), - [anon_sym_AMP_AMP] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3591), - [anon_sym_SEMI] = ACTIONS(3593), - [anon_sym_extern] = ACTIONS(3591), - [anon_sym___attribute__] = ACTIONS(3591), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3593), - [anon_sym___declspec] = ACTIONS(3591), - [anon_sym___based] = ACTIONS(3591), - [anon_sym_LBRACE] = ACTIONS(3593), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_EQ] = ACTIONS(3593), - [anon_sym_static] = ACTIONS(3591), - [anon_sym_register] = ACTIONS(3591), - [anon_sym_inline] = ACTIONS(3591), - [anon_sym_thread_local] = ACTIONS(3591), - [anon_sym_const] = ACTIONS(3591), - [anon_sym_volatile] = ACTIONS(3591), - [anon_sym_restrict] = ACTIONS(3591), - [anon_sym__Atomic] = ACTIONS(3591), - [anon_sym_mutable] = ACTIONS(3591), - [anon_sym_constexpr] = ACTIONS(3591), - [anon_sym_COLON] = ACTIONS(3593), - [anon_sym_DASH_GT] = ACTIONS(3593), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3591), - [anon_sym_override] = ACTIONS(3591), - [anon_sym_virtual] = ACTIONS(3591), - [anon_sym_operator] = ACTIONS(3591), - [anon_sym_noexcept] = ACTIONS(3591), - [anon_sym_throw] = ACTIONS(3591), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3591), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3591), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3591), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3591), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3591), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3591), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3591), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3591), - [anon_sym_MOZ_COLD] = ACTIONS(3591), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3591), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3591), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3591), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3591), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3591), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3591), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3591), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3591), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3591), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3591), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3591), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3591), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3591), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3591), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3591), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3591), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3591), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3591), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3591), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3591), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3591), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3591), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3591), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3591), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3591), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3591), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3591), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3591), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3591), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3591), - [anon_sym_MOZ_NONNULL] = ACTIONS(3591), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3591), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3591), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3591), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3591), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3591), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3591), - [anon_sym_MOZ_NORETURN] = ACTIONS(3591), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3591), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3591), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3591), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3591), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3591), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3591), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3591), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3591), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3591), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3591), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3591), - [anon_sym_MOZ_RAII] = ACTIONS(3591), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3591), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3591), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3591), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3591), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3591), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3591), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3591), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3591), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3591), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3591), - }, - [1459] = { - [sym_identifier] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3699), - [anon_sym_LPAREN2] = ACTIONS(3699), - [anon_sym_STAR] = ACTIONS(3699), - [anon_sym_AMP_AMP] = ACTIONS(3699), - [anon_sym_AMP] = ACTIONS(3697), - [anon_sym_SEMI] = ACTIONS(3699), - [anon_sym_extern] = ACTIONS(3697), - [anon_sym___attribute__] = ACTIONS(3697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3699), - [anon_sym___declspec] = ACTIONS(3697), - [anon_sym___based] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3699), - [anon_sym_LBRACK] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3699), - [anon_sym_static] = ACTIONS(3697), - [anon_sym_register] = ACTIONS(3697), - [anon_sym_inline] = ACTIONS(3697), - [anon_sym_thread_local] = ACTIONS(3697), - [anon_sym_const] = ACTIONS(3697), - [anon_sym_volatile] = ACTIONS(3697), - [anon_sym_restrict] = ACTIONS(3697), - [anon_sym__Atomic] = ACTIONS(3697), - [anon_sym_mutable] = ACTIONS(3697), - [anon_sym_constexpr] = ACTIONS(3697), - [anon_sym_COLON] = ACTIONS(3699), - [anon_sym_DASH_GT] = ACTIONS(3699), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3697), - [anon_sym_override] = ACTIONS(3697), - [anon_sym_virtual] = ACTIONS(3697), - [anon_sym_operator] = ACTIONS(3697), - [anon_sym_noexcept] = ACTIONS(3697), - [anon_sym_throw] = ACTIONS(3697), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3697), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3697), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3697), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3697), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3697), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3697), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3697), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3697), - [anon_sym_MOZ_COLD] = ACTIONS(3697), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3697), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3697), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3697), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3697), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3697), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3697), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3697), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3697), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3697), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3697), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3697), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3697), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3697), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3697), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3697), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3697), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3697), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3697), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3697), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3697), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3697), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3697), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3697), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3697), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3697), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3697), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3697), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3697), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3697), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3697), - [anon_sym_MOZ_NONNULL] = ACTIONS(3697), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3697), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3697), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3697), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3697), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3697), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3697), - [anon_sym_MOZ_NORETURN] = ACTIONS(3697), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3697), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3697), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3697), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3697), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3697), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3697), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3697), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3697), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3697), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3697), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3697), - [anon_sym_MOZ_RAII] = ACTIONS(3697), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3697), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3697), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3697), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3697), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3697), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3697), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3697), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3697), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3697), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3697), - }, - [1460] = { - [sym_identifier] = ACTIONS(3595), - [anon_sym_COMMA] = ACTIONS(3597), - [anon_sym_LPAREN2] = ACTIONS(3597), - [anon_sym_STAR] = ACTIONS(3597), - [anon_sym_AMP_AMP] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3595), - [anon_sym_SEMI] = ACTIONS(3597), - [anon_sym_extern] = ACTIONS(3595), - [anon_sym___attribute__] = ACTIONS(3595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3597), - [anon_sym___declspec] = ACTIONS(3595), - [anon_sym___based] = ACTIONS(3595), - [anon_sym_LBRACE] = ACTIONS(3597), - [anon_sym_LBRACK] = ACTIONS(3595), - [anon_sym_EQ] = ACTIONS(3597), - [anon_sym_static] = ACTIONS(3595), - [anon_sym_register] = ACTIONS(3595), - [anon_sym_inline] = ACTIONS(3595), - [anon_sym_thread_local] = ACTIONS(3595), - [anon_sym_const] = ACTIONS(3595), - [anon_sym_volatile] = ACTIONS(3595), - [anon_sym_restrict] = ACTIONS(3595), - [anon_sym__Atomic] = ACTIONS(3595), - [anon_sym_mutable] = ACTIONS(3595), - [anon_sym_constexpr] = ACTIONS(3595), - [anon_sym_COLON] = ACTIONS(3597), - [anon_sym_DASH_GT] = ACTIONS(3597), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3595), - [anon_sym_override] = ACTIONS(3595), - [anon_sym_virtual] = ACTIONS(3595), - [anon_sym_operator] = ACTIONS(3595), - [anon_sym_noexcept] = ACTIONS(3595), - [anon_sym_throw] = ACTIONS(3595), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3595), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3595), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3595), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3595), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3595), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3595), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3595), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3595), - [anon_sym_MOZ_COLD] = ACTIONS(3595), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3595), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3595), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3595), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3595), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3595), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3595), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3595), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3595), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3595), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3595), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3595), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3595), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3595), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3595), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3595), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3595), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3595), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3595), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3595), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3595), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3595), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3595), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3595), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3595), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3595), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3595), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3595), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3595), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3595), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3595), - [anon_sym_MOZ_NONNULL] = ACTIONS(3595), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3595), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3595), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3595), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3595), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3595), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3595), - [anon_sym_MOZ_NORETURN] = ACTIONS(3595), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3595), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3595), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3595), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3595), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3595), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3595), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3595), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3595), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3595), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3595), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3595), - [anon_sym_MOZ_RAII] = ACTIONS(3595), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3595), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3595), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3595), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3595), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3595), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3595), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3595), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3595), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3595), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3595), - }, - [1461] = { - [sym_identifier] = ACTIONS(3685), - [anon_sym_COMMA] = ACTIONS(3687), - [anon_sym_LPAREN2] = ACTIONS(3687), - [anon_sym_STAR] = ACTIONS(3687), - [anon_sym_AMP_AMP] = ACTIONS(3687), - [anon_sym_AMP] = ACTIONS(3685), - [anon_sym_SEMI] = ACTIONS(3687), - [anon_sym_extern] = ACTIONS(3685), - [anon_sym___attribute__] = ACTIONS(3685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3687), - [anon_sym___declspec] = ACTIONS(3685), - [anon_sym___based] = ACTIONS(3685), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_LBRACK] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3687), - [anon_sym_static] = ACTIONS(3685), - [anon_sym_register] = ACTIONS(3685), - [anon_sym_inline] = ACTIONS(3685), - [anon_sym_thread_local] = ACTIONS(3685), - [anon_sym_const] = ACTIONS(3685), - [anon_sym_volatile] = ACTIONS(3685), - [anon_sym_restrict] = ACTIONS(3685), - [anon_sym__Atomic] = ACTIONS(3685), - [anon_sym_mutable] = ACTIONS(3685), - [anon_sym_constexpr] = ACTIONS(3685), - [anon_sym_COLON] = ACTIONS(3687), - [anon_sym_DASH_GT] = ACTIONS(3687), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3685), - [anon_sym_override] = ACTIONS(3685), - [anon_sym_virtual] = ACTIONS(3685), - [anon_sym_operator] = ACTIONS(3685), - [anon_sym_noexcept] = ACTIONS(3685), - [anon_sym_throw] = ACTIONS(3685), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3685), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3685), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3685), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3685), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3685), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3685), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3685), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3685), - [anon_sym_MOZ_COLD] = ACTIONS(3685), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3685), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3685), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3685), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3685), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3685), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3685), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3685), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3685), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3685), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3685), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3685), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3685), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3685), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3685), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3685), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3685), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3685), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3685), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3685), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3685), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3685), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3685), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3685), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3685), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3685), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3685), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3685), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3685), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3685), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3685), - [anon_sym_MOZ_NONNULL] = ACTIONS(3685), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3685), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3685), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3685), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3685), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3685), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3685), - [anon_sym_MOZ_NORETURN] = ACTIONS(3685), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3685), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3685), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3685), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3685), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3685), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3685), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3685), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3685), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3685), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3685), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3685), - [anon_sym_MOZ_RAII] = ACTIONS(3685), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3685), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3685), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3685), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3685), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3685), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3685), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3685), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3685), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3685), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3685), - }, - [1462] = { + [STATE(539)] = { + [ts_builtin_sym_end] = ACTIONS(2426), + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_virtual] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_COLON_COLON] = ACTIONS(2426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___based] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_mutable] = ACTIONS(2424), + [anon_sym_constinit] = ACTIONS(2424), + [anon_sym_consteval] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym_not] = ACTIONS(2424), + [anon_sym_compl] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2424), + [anon_sym_decltype] = ACTIONS(2424), + [anon_sym_explicit] = ACTIONS(2424), + [anon_sym_typename] = ACTIONS(2424), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_operator] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_throw] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2424), + [anon_sym_using] = ACTIONS(2424), + [anon_sym_static_assert] = ACTIONS(2424), + [anon_sym_concept] = ACTIONS(2424), + [anon_sym_co_return] = ACTIONS(2424), + [anon_sym_co_yield] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_requires] = ACTIONS(2424), + [sym_this] = ACTIONS(2424), + [sym_alone_macro] = ACTIONS(2426), + [aux_sym_alone_macro_call_token1] = ACTIONS(2424), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_FORWARD] = ACTIONS(2424), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_PS_GET] = ACTIONS(2424), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2424), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2424), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2424), + [anon_sym_MOZ_COLD] = ACTIONS(2424), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2424), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2424), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2424), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2424), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2424), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2424), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2424), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2424), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2424), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2424), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2424), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2424), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_RAII] = ACTIONS(2424), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2424), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2424), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2424), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2424), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2424), + }, + [STATE(540)] = { + [ts_builtin_sym_end] = ACTIONS(2426), + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_virtual] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_COLON_COLON] = ACTIONS(2426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___based] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_mutable] = ACTIONS(2424), + [anon_sym_constinit] = ACTIONS(2424), + [anon_sym_consteval] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym_not] = ACTIONS(2424), + [anon_sym_compl] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2424), + [anon_sym_decltype] = ACTIONS(2424), + [anon_sym_explicit] = ACTIONS(2424), + [anon_sym_typename] = ACTIONS(2424), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_operator] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_throw] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2424), + [anon_sym_using] = ACTIONS(2424), + [anon_sym_static_assert] = ACTIONS(2424), + [anon_sym_concept] = ACTIONS(2424), + [anon_sym_co_return] = ACTIONS(2424), + [anon_sym_co_yield] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_requires] = ACTIONS(2424), + [sym_this] = ACTIONS(2424), + [sym_alone_macro] = ACTIONS(2426), + [aux_sym_alone_macro_call_token1] = ACTIONS(2424), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_FORWARD] = ACTIONS(2424), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_PS_GET] = ACTIONS(2424), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2424), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2424), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2424), + [anon_sym_MOZ_COLD] = ACTIONS(2424), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2424), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2424), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2424), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2424), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2424), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2424), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2424), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2424), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2424), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2424), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2424), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2424), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_RAII] = ACTIONS(2424), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2424), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2424), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2424), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2424), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2424), + }, + [STATE(541)] = { + [ts_builtin_sym_end] = ACTIONS(2430), + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_include_token1] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2428), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_virtual] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_COLON_COLON] = ACTIONS(2430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___based] = ACTIONS(2428), + [anon_sym___cdecl] = ACTIONS(2428), + [anon_sym___clrcall] = ACTIONS(2428), + [anon_sym___stdcall] = ACTIONS(2428), + [anon_sym___fastcall] = ACTIONS(2428), + [anon_sym___thiscall] = ACTIONS(2428), + [anon_sym___vectorcall] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_mutable] = ACTIONS(2428), + [anon_sym_constinit] = ACTIONS(2428), + [anon_sym_consteval] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_class] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_case] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_goto] = ACTIONS(2428), + [anon_sym_not] = ACTIONS(2428), + [anon_sym_compl] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_sizeof] = ACTIONS(2428), + [anon_sym___alignof__] = ACTIONS(2428), + [anon_sym___alignof] = ACTIONS(2428), + [anon_sym__alignof] = ACTIONS(2428), + [anon_sym_alignof] = ACTIONS(2428), + [anon_sym__Alignof] = ACTIONS(2428), + [anon_sym_offsetof] = ACTIONS(2428), + [anon_sym__Generic] = ACTIONS(2428), + [anon_sym_asm] = ACTIONS(2428), + [anon_sym___asm__] = ACTIONS(2428), + [anon_sym___asm] = ACTIONS(2428), + [sym_number_literal] = ACTIONS(2430), + [anon_sym_L_SQUOTE] = ACTIONS(2430), + [anon_sym_u_SQUOTE] = ACTIONS(2430), + [anon_sym_U_SQUOTE] = ACTIONS(2430), + [anon_sym_u8_SQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_L_DQUOTE] = ACTIONS(2430), + [anon_sym_u_DQUOTE] = ACTIONS(2430), + [anon_sym_U_DQUOTE] = ACTIONS(2430), + [anon_sym_u8_DQUOTE] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2430), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [anon_sym_NULL] = ACTIONS(2428), + [anon_sym_nullptr] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2428), + [anon_sym_decltype] = ACTIONS(2428), + [anon_sym_explicit] = ACTIONS(2428), + [anon_sym_typename] = ACTIONS(2428), + [anon_sym_template] = ACTIONS(2428), + [anon_sym_operator] = ACTIONS(2428), + [anon_sym_try] = ACTIONS(2428), + [anon_sym_delete] = ACTIONS(2428), + [anon_sym_throw] = ACTIONS(2428), + [anon_sym_namespace] = ACTIONS(2428), + [anon_sym_using] = ACTIONS(2428), + [anon_sym_static_assert] = ACTIONS(2428), + [anon_sym_concept] = ACTIONS(2428), + [anon_sym_co_return] = ACTIONS(2428), + [anon_sym_co_yield] = ACTIONS(2428), + [anon_sym_R_DQUOTE] = ACTIONS(2430), + [anon_sym_LR_DQUOTE] = ACTIONS(2430), + [anon_sym_uR_DQUOTE] = ACTIONS(2430), + [anon_sym_UR_DQUOTE] = ACTIONS(2430), + [anon_sym_u8R_DQUOTE] = ACTIONS(2430), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2428), + [anon_sym_requires] = ACTIONS(2428), + [sym_this] = ACTIONS(2428), + [sym_alone_macro] = ACTIONS(2430), + [aux_sym_alone_macro_call_token1] = ACTIONS(2428), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2428), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_FORWARD] = ACTIONS(2428), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2428), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2428), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2428), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2428), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_PS_GET] = ACTIONS(2428), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2428), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2428), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2428), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2428), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2428), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2428), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2428), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2428), + [anon_sym_MOZ_COLD] = ACTIONS(2428), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2428), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2428), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2428), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2428), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2428), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2428), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2428), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2428), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2428), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2428), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2428), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2428), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2428), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_NONNULL] = ACTIONS(2428), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2428), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2428), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2428), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2428), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2428), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2428), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2428), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2428), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2428), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2428), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2428), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2428), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2428), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2428), + [anon_sym_MOZ_RAII] = ACTIONS(2428), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2428), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2428), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2428), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2428), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2428), + }, + [STATE(542)] = { + [sym_identifier] = ACTIONS(2264), + [aux_sym_preproc_include_token1] = ACTIONS(2264), + [aux_sym_preproc_def_token1] = ACTIONS(2264), + [aux_sym_preproc_if_token1] = ACTIONS(2264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2264), + [sym_preproc_directive] = ACTIONS(2264), + [anon_sym_LPAREN2] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_AMP] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym___extension__] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2264), + [anon_sym_virtual] = ACTIONS(2264), + [anon_sym_extern] = ACTIONS(2264), + [anon_sym___attribute__] = ACTIONS(2264), + [anon_sym___attribute] = ACTIONS(2264), + [anon_sym_COLON_COLON] = ACTIONS(2266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2266), + [anon_sym___declspec] = ACTIONS(2264), + [anon_sym___based] = ACTIONS(2264), + [anon_sym___cdecl] = ACTIONS(2264), + [anon_sym___clrcall] = ACTIONS(2264), + [anon_sym___stdcall] = ACTIONS(2264), + [anon_sym___fastcall] = ACTIONS(2264), + [anon_sym___thiscall] = ACTIONS(2264), + [anon_sym___vectorcall] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2266), + [anon_sym_RBRACE] = ACTIONS(2266), + [anon_sym_signed] = ACTIONS(2264), + [anon_sym_unsigned] = ACTIONS(2264), + [anon_sym_long] = ACTIONS(2264), + [anon_sym_short] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_register] = ACTIONS(2264), + [anon_sym_inline] = ACTIONS(2264), + [anon_sym___inline] = ACTIONS(2264), + [anon_sym___inline__] = ACTIONS(2264), + [anon_sym___forceinline] = ACTIONS(2264), + [anon_sym_thread_local] = ACTIONS(2264), + [anon_sym___thread] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_constexpr] = ACTIONS(2264), + [anon_sym_volatile] = ACTIONS(2264), + [anon_sym_restrict] = ACTIONS(2264), + [anon_sym___restrict__] = ACTIONS(2264), + [anon_sym__Atomic] = ACTIONS(2264), + [anon_sym__Noreturn] = ACTIONS(2264), + [anon_sym_noreturn] = ACTIONS(2264), + [anon_sym__Nonnull] = ACTIONS(2264), + [anon_sym_mutable] = ACTIONS(2264), + [anon_sym_constinit] = ACTIONS(2264), + [anon_sym_consteval] = ACTIONS(2264), + [anon_sym_alignas] = ACTIONS(2264), + [anon_sym__Alignas] = ACTIONS(2264), + [sym_primitive_type] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + [anon_sym_class] = ACTIONS(2264), + [anon_sym_struct] = ACTIONS(2264), + [anon_sym_union] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_switch] = ACTIONS(2264), + [anon_sym_case] = ACTIONS(2264), + [anon_sym_default] = ACTIONS(2264), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_goto] = ACTIONS(2264), + [anon_sym___try] = ACTIONS(2264), + [anon_sym___leave] = ACTIONS(2264), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(2266), + [anon_sym_PLUS_PLUS] = ACTIONS(2266), + [anon_sym_sizeof] = ACTIONS(2264), + [anon_sym___alignof__] = ACTIONS(2264), + [anon_sym___alignof] = ACTIONS(2264), + [anon_sym__alignof] = ACTIONS(2264), + [anon_sym_alignof] = ACTIONS(2264), + [anon_sym__Alignof] = ACTIONS(2264), + [anon_sym_offsetof] = ACTIONS(2264), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2264), + [anon_sym___asm__] = ACTIONS(2264), + [anon_sym___asm] = ACTIONS(2264), + [sym_number_literal] = ACTIONS(2266), + [anon_sym_L_SQUOTE] = ACTIONS(2266), + [anon_sym_u_SQUOTE] = ACTIONS(2266), + [anon_sym_U_SQUOTE] = ACTIONS(2266), + [anon_sym_u8_SQUOTE] = ACTIONS(2266), + [anon_sym_SQUOTE] = ACTIONS(2266), + [anon_sym_L_DQUOTE] = ACTIONS(2266), + [anon_sym_u_DQUOTE] = ACTIONS(2266), + [anon_sym_U_DQUOTE] = ACTIONS(2266), + [anon_sym_u8_DQUOTE] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(2266), + [sym_true] = ACTIONS(2264), + [sym_false] = ACTIONS(2264), + [anon_sym_NULL] = ACTIONS(2264), + [anon_sym_nullptr] = ACTIONS(2264), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2264), + [anon_sym_decltype] = ACTIONS(2264), + [anon_sym_explicit] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_template] = ACTIONS(2264), + [anon_sym_operator] = ACTIONS(2264), + [anon_sym_try] = ACTIONS(2264), + [anon_sym_delete] = ACTIONS(2264), + [anon_sym_throw] = ACTIONS(2264), + [anon_sym_namespace] = ACTIONS(2264), + [anon_sym_using] = ACTIONS(2264), + [anon_sym_static_assert] = ACTIONS(2264), + [anon_sym_concept] = ACTIONS(2264), + [anon_sym_co_return] = ACTIONS(2264), + [anon_sym_co_yield] = ACTIONS(2264), + [anon_sym_R_DQUOTE] = ACTIONS(2266), + [anon_sym_LR_DQUOTE] = ACTIONS(2266), + [anon_sym_uR_DQUOTE] = ACTIONS(2266), + [anon_sym_UR_DQUOTE] = ACTIONS(2266), + [anon_sym_u8R_DQUOTE] = ACTIONS(2266), + [anon_sym_co_await] = ACTIONS(2264), + [anon_sym_new] = ACTIONS(2264), + [anon_sym_requires] = ACTIONS(2264), + [sym_this] = ACTIONS(2264), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2264), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_FORWARD] = ACTIONS(2264), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2264), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2264), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2264), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2264), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_PS_GET] = ACTIONS(2264), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2264), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2264), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2264), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2264), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2264), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2264), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2264), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2264), + [anon_sym_MOZ_COLD] = ACTIONS(2264), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2264), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2264), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2264), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2264), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2264), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2264), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2264), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2264), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2264), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2264), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2264), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2264), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2264), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_NONNULL] = ACTIONS(2264), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2264), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2264), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2264), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2264), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2264), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2264), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2264), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2264), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2264), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2264), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2264), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2264), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2264), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2264), + [anon_sym_MOZ_RAII] = ACTIONS(2264), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2264), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2264), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2264), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2264), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2264), + }, + [STATE(543)] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_include_token1] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token2] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_virtual] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_COLON_COLON] = ACTIONS(2438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___based] = ACTIONS(2436), + [anon_sym___cdecl] = ACTIONS(2436), + [anon_sym___clrcall] = ACTIONS(2436), + [anon_sym___stdcall] = ACTIONS(2436), + [anon_sym___fastcall] = ACTIONS(2436), + [anon_sym___thiscall] = ACTIONS(2436), + [anon_sym___vectorcall] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_mutable] = ACTIONS(2436), + [anon_sym_constinit] = ACTIONS(2436), + [anon_sym_consteval] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_class] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_goto] = ACTIONS(2436), + [anon_sym___try] = ACTIONS(2436), + [anon_sym___leave] = ACTIONS(2436), + [anon_sym_not] = ACTIONS(2436), + [anon_sym_compl] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2436), + [anon_sym_decltype] = ACTIONS(2436), + [anon_sym_explicit] = ACTIONS(2436), + [anon_sym_typename] = ACTIONS(2436), + [anon_sym_template] = ACTIONS(2436), + [anon_sym_operator] = ACTIONS(2436), + [anon_sym_try] = ACTIONS(2436), + [anon_sym_delete] = ACTIONS(2436), + [anon_sym_throw] = ACTIONS(2436), + [anon_sym_namespace] = ACTIONS(2436), + [anon_sym_using] = ACTIONS(2436), + [anon_sym_static_assert] = ACTIONS(2436), + [anon_sym_concept] = ACTIONS(2436), + [anon_sym_co_return] = ACTIONS(2436), + [anon_sym_co_yield] = ACTIONS(2436), + [anon_sym_R_DQUOTE] = ACTIONS(2438), + [anon_sym_LR_DQUOTE] = ACTIONS(2438), + [anon_sym_uR_DQUOTE] = ACTIONS(2438), + [anon_sym_UR_DQUOTE] = ACTIONS(2438), + [anon_sym_u8R_DQUOTE] = ACTIONS(2438), + [anon_sym_co_await] = ACTIONS(2436), + [anon_sym_new] = ACTIONS(2436), + [anon_sym_requires] = ACTIONS(2436), + [sym_this] = ACTIONS(2436), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_FORWARD] = ACTIONS(2436), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_PS_GET] = ACTIONS(2436), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2436), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2436), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2436), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2436), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2436), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2436), + [anon_sym_MOZ_COLD] = ACTIONS(2436), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2436), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2436), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2436), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2436), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2436), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2436), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2436), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2436), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2436), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2436), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2436), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2436), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2436), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_NONNULL] = ACTIONS(2436), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2436), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2436), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2436), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2436), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2436), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2436), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2436), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2436), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2436), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2436), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2436), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2436), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2436), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2436), + [anon_sym_MOZ_RAII] = ACTIONS(2436), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2436), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2436), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2436), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2436), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2436), + }, + [STATE(544)] = { + [ts_builtin_sym_end] = ACTIONS(2402), + [sym_identifier] = ACTIONS(2400), + [aux_sym_preproc_include_token1] = ACTIONS(2400), + [aux_sym_preproc_def_token1] = ACTIONS(2400), + [aux_sym_preproc_if_token1] = ACTIONS(2400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2400), + [sym_preproc_directive] = ACTIONS(2400), + [anon_sym_LPAREN2] = ACTIONS(2402), + [anon_sym_BANG] = ACTIONS(2402), + [anon_sym_TILDE] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_AMP] = ACTIONS(2400), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym___extension__] = ACTIONS(2400), + [anon_sym_typedef] = ACTIONS(2400), + [anon_sym_virtual] = ACTIONS(2400), + [anon_sym_extern] = ACTIONS(2400), + [anon_sym___attribute__] = ACTIONS(2400), + [anon_sym___attribute] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2402), + [anon_sym___declspec] = ACTIONS(2400), + [anon_sym___based] = ACTIONS(2400), + [anon_sym___cdecl] = ACTIONS(2400), + [anon_sym___clrcall] = ACTIONS(2400), + [anon_sym___stdcall] = ACTIONS(2400), + [anon_sym___fastcall] = ACTIONS(2400), + [anon_sym___thiscall] = ACTIONS(2400), + [anon_sym___vectorcall] = ACTIONS(2400), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_signed] = ACTIONS(2400), + [anon_sym_unsigned] = ACTIONS(2400), + [anon_sym_long] = ACTIONS(2400), + [anon_sym_short] = ACTIONS(2400), + [anon_sym_LBRACK] = ACTIONS(2400), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_register] = ACTIONS(2400), + [anon_sym_inline] = ACTIONS(2400), + [anon_sym___inline] = ACTIONS(2400), + [anon_sym___inline__] = ACTIONS(2400), + [anon_sym___forceinline] = ACTIONS(2400), + [anon_sym_thread_local] = ACTIONS(2400), + [anon_sym___thread] = ACTIONS(2400), + [anon_sym_const] = ACTIONS(2400), + [anon_sym_constexpr] = ACTIONS(2400), + [anon_sym_volatile] = ACTIONS(2400), + [anon_sym_restrict] = ACTIONS(2400), + [anon_sym___restrict__] = ACTIONS(2400), + [anon_sym__Atomic] = ACTIONS(2400), + [anon_sym__Noreturn] = ACTIONS(2400), + [anon_sym_noreturn] = ACTIONS(2400), + [anon_sym__Nonnull] = ACTIONS(2400), + [anon_sym_mutable] = ACTIONS(2400), + [anon_sym_constinit] = ACTIONS(2400), + [anon_sym_consteval] = ACTIONS(2400), + [anon_sym_alignas] = ACTIONS(2400), + [anon_sym__Alignas] = ACTIONS(2400), + [sym_primitive_type] = ACTIONS(2400), + [anon_sym_enum] = ACTIONS(2400), + [anon_sym_class] = ACTIONS(2400), + [anon_sym_struct] = ACTIONS(2400), + [anon_sym_union] = ACTIONS(2400), + [anon_sym_if] = ACTIONS(2400), + [anon_sym_switch] = ACTIONS(2400), + [anon_sym_case] = ACTIONS(2400), + [anon_sym_default] = ACTIONS(2400), + [anon_sym_while] = ACTIONS(2400), + [anon_sym_do] = ACTIONS(2400), + [anon_sym_for] = ACTIONS(2400), + [anon_sym_return] = ACTIONS(2400), + [anon_sym_break] = ACTIONS(2400), + [anon_sym_continue] = ACTIONS(2400), + [anon_sym_goto] = ACTIONS(2400), + [anon_sym_not] = ACTIONS(2400), + [anon_sym_compl] = ACTIONS(2400), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_PLUS_PLUS] = ACTIONS(2402), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2400), + [anon_sym__Generic] = ACTIONS(2400), + [anon_sym_asm] = ACTIONS(2400), + [anon_sym___asm__] = ACTIONS(2400), + [anon_sym___asm] = ACTIONS(2400), + [sym_number_literal] = ACTIONS(2402), + [anon_sym_L_SQUOTE] = ACTIONS(2402), + [anon_sym_u_SQUOTE] = ACTIONS(2402), + [anon_sym_U_SQUOTE] = ACTIONS(2402), + [anon_sym_u8_SQUOTE] = ACTIONS(2402), + [anon_sym_SQUOTE] = ACTIONS(2402), + [anon_sym_L_DQUOTE] = ACTIONS(2402), + [anon_sym_u_DQUOTE] = ACTIONS(2402), + [anon_sym_U_DQUOTE] = ACTIONS(2402), + [anon_sym_u8_DQUOTE] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [sym_true] = ACTIONS(2400), + [sym_false] = ACTIONS(2400), + [anon_sym_NULL] = ACTIONS(2400), + [anon_sym_nullptr] = ACTIONS(2400), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2400), + [anon_sym_decltype] = ACTIONS(2400), + [anon_sym_explicit] = ACTIONS(2400), + [anon_sym_typename] = ACTIONS(2400), + [anon_sym_template] = ACTIONS(2400), + [anon_sym_operator] = ACTIONS(2400), + [anon_sym_try] = ACTIONS(2400), + [anon_sym_delete] = ACTIONS(2400), + [anon_sym_throw] = ACTIONS(2400), + [anon_sym_namespace] = ACTIONS(2400), + [anon_sym_using] = ACTIONS(2400), + [anon_sym_static_assert] = ACTIONS(2400), + [anon_sym_concept] = ACTIONS(2400), + [anon_sym_co_return] = ACTIONS(2400), + [anon_sym_co_yield] = ACTIONS(2400), + [anon_sym_R_DQUOTE] = ACTIONS(2402), + [anon_sym_LR_DQUOTE] = ACTIONS(2402), + [anon_sym_uR_DQUOTE] = ACTIONS(2402), + [anon_sym_UR_DQUOTE] = ACTIONS(2402), + [anon_sym_u8R_DQUOTE] = ACTIONS(2402), + [anon_sym_co_await] = ACTIONS(2400), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_requires] = ACTIONS(2400), + [sym_this] = ACTIONS(2400), + [sym_alone_macro] = ACTIONS(2402), + [aux_sym_alone_macro_call_token1] = ACTIONS(2400), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2400), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_FORWARD] = ACTIONS(2400), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2400), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2400), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2400), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2400), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_PS_GET] = ACTIONS(2400), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2400), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2400), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2400), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2400), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2400), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2400), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2400), + [anon_sym_MOZ_COLD] = ACTIONS(2400), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2400), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2400), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2400), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2400), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2400), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2400), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2400), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2400), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2400), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2400), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2400), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2400), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2400), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_NONNULL] = ACTIONS(2400), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2400), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2400), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2400), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2400), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2400), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2400), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2400), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2400), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2400), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2400), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2400), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2400), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2400), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2400), + [anon_sym_MOZ_RAII] = ACTIONS(2400), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2400), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2400), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2400), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2400), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2400), + }, + [STATE(545)] = { [sym_identifier] = ACTIONS(2260), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), - [anon_sym_COMMA] = ACTIONS(2262), - [anon_sym_RPAREN] = ACTIONS(2262), + [aux_sym_preproc_include_token1] = ACTIONS(2260), + [aux_sym_preproc_def_token1] = ACTIONS(2260), + [aux_sym_preproc_if_token1] = ACTIONS(2260), + [aux_sym_preproc_if_token2] = ACTIONS(2260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2260), + [sym_preproc_directive] = ACTIONS(2260), [anon_sym_LPAREN2] = ACTIONS(2262), + [anon_sym_BANG] = ACTIONS(2262), [anon_sym_TILDE] = ACTIONS(2262), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_PLUS] = ACTIONS(2260), [anon_sym_STAR] = ACTIONS(2262), [anon_sym_AMP_AMP] = ACTIONS(2262), [anon_sym_AMP] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2262), + [anon_sym___extension__] = ACTIONS(2260), + [anon_sym_typedef] = ACTIONS(2260), + [anon_sym_virtual] = ACTIONS(2260), [anon_sym_extern] = ACTIONS(2260), [anon_sym___attribute__] = ACTIONS(2260), + [anon_sym___attribute] = ACTIONS(2260), [anon_sym_COLON_COLON] = ACTIONS(2262), [anon_sym_LBRACK_LBRACK] = ACTIONS(2262), [anon_sym___declspec] = ACTIONS(2260), [anon_sym___based] = ACTIONS(2260), + [anon_sym___cdecl] = ACTIONS(2260), + [anon_sym___clrcall] = ACTIONS(2260), + [anon_sym___stdcall] = ACTIONS(2260), + [anon_sym___fastcall] = ACTIONS(2260), + [anon_sym___thiscall] = ACTIONS(2260), + [anon_sym___vectorcall] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_signed] = ACTIONS(2260), + [anon_sym_unsigned] = ACTIONS(2260), + [anon_sym_long] = ACTIONS(2260), + [anon_sym_short] = ACTIONS(2260), [anon_sym_LBRACK] = ACTIONS(2260), - [anon_sym_EQ] = ACTIONS(2262), [anon_sym_static] = ACTIONS(2260), [anon_sym_register] = ACTIONS(2260), [anon_sym_inline] = ACTIONS(2260), + [anon_sym___inline] = ACTIONS(2260), + [anon_sym___inline__] = ACTIONS(2260), + [anon_sym___forceinline] = ACTIONS(2260), [anon_sym_thread_local] = ACTIONS(2260), + [anon_sym___thread] = ACTIONS(2260), [anon_sym_const] = ACTIONS(2260), + [anon_sym_constexpr] = ACTIONS(2260), [anon_sym_volatile] = ACTIONS(2260), [anon_sym_restrict] = ACTIONS(2260), + [anon_sym___restrict__] = ACTIONS(2260), [anon_sym__Atomic] = ACTIONS(2260), + [anon_sym__Noreturn] = ACTIONS(2260), + [anon_sym_noreturn] = ACTIONS(2260), + [anon_sym__Nonnull] = ACTIONS(2260), [anon_sym_mutable] = ACTIONS(2260), - [anon_sym_constexpr] = ACTIONS(2260), + [anon_sym_constinit] = ACTIONS(2260), + [anon_sym_consteval] = ACTIONS(2260), + [anon_sym_alignas] = ACTIONS(2260), + [anon_sym__Alignas] = ACTIONS(2260), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), + [anon_sym_class] = ACTIONS(2260), + [anon_sym_struct] = ACTIONS(2260), + [anon_sym_union] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_switch] = ACTIONS(2260), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_break] = ACTIONS(2260), + [anon_sym_continue] = ACTIONS(2260), + [anon_sym_goto] = ACTIONS(2260), + [anon_sym___try] = ACTIONS(2260), + [anon_sym___leave] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(2260), + [anon_sym_compl] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2260), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2260), + [anon_sym_asm] = ACTIONS(2260), + [anon_sym___asm__] = ACTIONS(2260), + [anon_sym___asm] = ACTIONS(2260), + [sym_number_literal] = ACTIONS(2262), + [anon_sym_L_SQUOTE] = ACTIONS(2262), + [anon_sym_u_SQUOTE] = ACTIONS(2262), + [anon_sym_U_SQUOTE] = ACTIONS(2262), + [anon_sym_u8_SQUOTE] = ACTIONS(2262), + [anon_sym_SQUOTE] = ACTIONS(2262), + [anon_sym_L_DQUOTE] = ACTIONS(2262), + [anon_sym_u_DQUOTE] = ACTIONS(2262), + [anon_sym_U_DQUOTE] = ACTIONS(2262), + [anon_sym_u8_DQUOTE] = ACTIONS(2262), + [anon_sym_DQUOTE] = ACTIONS(2262), + [sym_true] = ACTIONS(2260), + [sym_false] = ACTIONS(2260), + [anon_sym_NULL] = ACTIONS(2260), + [anon_sym_nullptr] = ACTIONS(2260), [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2260), + [sym_auto] = ACTIONS(2260), + [anon_sym_decltype] = ACTIONS(2260), [anon_sym_explicit] = ACTIONS(2260), + [anon_sym_typename] = ACTIONS(2260), [anon_sym_template] = ACTIONS(2260), - [anon_sym_GT2] = ACTIONS(2262), [anon_sym_operator] = ACTIONS(2260), + [anon_sym_try] = ACTIONS(2260), + [anon_sym_delete] = ACTIONS(2260), + [anon_sym_throw] = ACTIONS(2260), + [anon_sym_namespace] = ACTIONS(2260), + [anon_sym_using] = ACTIONS(2260), + [anon_sym_static_assert] = ACTIONS(2260), + [anon_sym_concept] = ACTIONS(2260), + [anon_sym_co_return] = ACTIONS(2260), + [anon_sym_co_yield] = ACTIONS(2260), + [anon_sym_R_DQUOTE] = ACTIONS(2262), + [anon_sym_LR_DQUOTE] = ACTIONS(2262), + [anon_sym_uR_DQUOTE] = ACTIONS(2262), + [anon_sym_UR_DQUOTE] = ACTIONS(2262), + [anon_sym_u8R_DQUOTE] = ACTIONS(2262), + [anon_sym_co_await] = ACTIONS(2260), + [anon_sym_new] = ACTIONS(2260), + [anon_sym_requires] = ACTIONS(2260), + [sym_this] = ACTIONS(2260), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_FORWARD] = ACTIONS(2260), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2260), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_PS_GET] = ACTIONS(2260), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2260), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2260), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2260), [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2260), [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2260), [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2260), @@ -268995,44876 +177454,418800 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2260), [anon_sym_JS_PUBLIC_API] = ACTIONS(2260), }, - [1463] = { - [sym_template_argument_list] = STATE(1294), - [sym_identifier] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2405), - [anon_sym_COMMA] = ACTIONS(3783), - [anon_sym_LPAREN2] = ACTIONS(2405), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_AMP_AMP] = ACTIONS(2405), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2405), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_EQ] = ACTIONS(3785), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_GT2] = ACTIONS(3783), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2397), - [anon_sym_MOZ_COLD] = ACTIONS(2397), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2397), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2397), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2397), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2397), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2397), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2397), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2397), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2397), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2397), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2397), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2397), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2397), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_RAII] = ACTIONS(2397), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2397), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2397), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2397), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2397), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2397), - }, - [1464] = { - [sym_identifier] = ACTIONS(2278), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2280), - [anon_sym_COMMA] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_extern] = ACTIONS(2278), - [anon_sym___attribute__] = ACTIONS(2278), - [anon_sym_COLON_COLON] = ACTIONS(2280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2280), - [anon_sym___declspec] = ACTIONS(2278), - [anon_sym___based] = ACTIONS(2278), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_EQ] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2278), - [anon_sym_register] = ACTIONS(2278), - [anon_sym_inline] = ACTIONS(2278), - [anon_sym_thread_local] = ACTIONS(2278), - [anon_sym_const] = ACTIONS(2278), - [anon_sym_volatile] = ACTIONS(2278), - [anon_sym_restrict] = ACTIONS(2278), - [anon_sym__Atomic] = ACTIONS(2278), - [anon_sym_mutable] = ACTIONS(2278), - [anon_sym_constexpr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2278), - [anon_sym_explicit] = ACTIONS(2278), - [anon_sym_template] = ACTIONS(2278), - [anon_sym_GT2] = ACTIONS(2280), - [anon_sym_operator] = ACTIONS(2278), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2278), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2278), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2278), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2278), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2278), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2278), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2278), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2278), - [anon_sym_MOZ_COLD] = ACTIONS(2278), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2278), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2278), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2278), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2278), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2278), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2278), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2278), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2278), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2278), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2278), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2278), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2278), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2278), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2278), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2278), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2278), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2278), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2278), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2278), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2278), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_NONNULL] = ACTIONS(2278), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2278), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2278), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2278), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2278), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2278), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_NORETURN] = ACTIONS(2278), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2278), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2278), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2278), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2278), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2278), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2278), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2278), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2278), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2278), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2278), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2278), - [anon_sym_MOZ_RAII] = ACTIONS(2278), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2278), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2278), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2278), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2278), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2278), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2278), - }, - [1465] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1289), - [sym_identifier] = ACTIONS(3842), - [anon_sym_LPAREN2] = ACTIONS(3463), - [anon_sym_STAR] = ACTIONS(3463), - [anon_sym_AMP_AMP] = ACTIONS(3463), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_SEMI] = ACTIONS(3463), - [anon_sym_extern] = ACTIONS(3465), - [anon_sym___attribute__] = ACTIONS(3465), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3463), - [anon_sym___declspec] = ACTIONS(3465), - [anon_sym___based] = ACTIONS(3465), - [anon_sym_LBRACE] = ACTIONS(3463), - [anon_sym_EQ] = ACTIONS(3463), - [anon_sym_static] = ACTIONS(3465), - [anon_sym_register] = ACTIONS(3465), - [anon_sym_inline] = ACTIONS(3465), - [anon_sym_thread_local] = ACTIONS(3465), - [anon_sym_const] = ACTIONS(3465), - [anon_sym_volatile] = ACTIONS(3465), - [anon_sym_restrict] = ACTIONS(3465), - [anon_sym__Atomic] = ACTIONS(3465), - [anon_sym_mutable] = ACTIONS(3465), - [anon_sym_constexpr] = ACTIONS(3465), - [anon_sym_signed] = ACTIONS(3845), - [anon_sym_unsigned] = ACTIONS(3845), - [anon_sym_long] = ACTIONS(3845), - [anon_sym_short] = ACTIONS(3845), - [sym_primitive_type] = ACTIONS(3847), - [anon_sym_COLON] = ACTIONS(3463), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3465), - [anon_sym_operator] = ACTIONS(3465), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3465), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3465), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3465), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3465), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3465), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3465), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3465), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3465), - [anon_sym_MOZ_COLD] = ACTIONS(3465), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3465), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3465), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3465), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3465), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3465), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3465), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3465), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3465), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3465), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3465), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3465), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3465), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3465), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3465), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3465), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3465), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3465), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3465), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3465), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3465), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3465), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_NONNULL] = ACTIONS(3465), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3465), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3465), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3465), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3465), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3465), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_NORETURN] = ACTIONS(3465), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3465), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3465), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3465), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3465), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3465), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3465), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3465), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3465), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3465), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3465), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3465), - [anon_sym_MOZ_RAII] = ACTIONS(3465), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3465), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3465), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3465), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3465), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3465), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3465), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3465), - }, - [1466] = { - [sym_identifier] = ACTIONS(3302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3304), - [anon_sym_COMMA] = ACTIONS(3304), - [anon_sym_RPAREN] = ACTIONS(3304), - [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_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_LBRACK] = ACTIONS(3302), - [anon_sym_EQ] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_register] = ACTIONS(3302), - [anon_sym_inline] = ACTIONS(3302), - [anon_sym_thread_local] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_volatile] = ACTIONS(3302), - [anon_sym_restrict] = ACTIONS(3302), - [anon_sym__Atomic] = ACTIONS(3302), - [anon_sym_mutable] = ACTIONS(3302), - [anon_sym_constexpr] = ACTIONS(3302), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3302), - [anon_sym_explicit] = ACTIONS(3302), - [anon_sym_template] = ACTIONS(3302), - [anon_sym_GT2] = ACTIONS(3304), - [anon_sym_operator] = ACTIONS(3302), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3302), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3302), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3302), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3302), - [anon_sym_MOZ_COLD] = ACTIONS(3302), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3302), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3302), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3302), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3302), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3302), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3302), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3302), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3302), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3302), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3302), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3302), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3302), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3302), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_NONNULL] = ACTIONS(3302), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3302), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3302), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3302), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3302), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3302), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3302), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3302), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3302), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3302), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3302), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3302), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3302), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3302), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3302), - [anon_sym_MOZ_RAII] = ACTIONS(3302), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3302), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3302), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3302), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3302), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3302), - }, - [1467] = { - [sym_template_argument_list] = STATE(1479), - [sym_identifier] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2405), - [anon_sym_COMMA] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(2420), - [anon_sym_LPAREN2] = ACTIONS(2420), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_AMP_AMP] = ACTIONS(2405), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2420), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_EQ] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2397), - [anon_sym_MOZ_COLD] = ACTIONS(2397), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2397), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2397), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2397), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2397), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2397), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2397), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2397), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2397), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2397), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2397), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2397), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2397), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_RAII] = ACTIONS(2397), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2397), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2397), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2397), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2397), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2397), - }, - [1468] = { - [sym_enumerator_list] = STATE(1313), - [sym__enum_base_clause] = STATE(1296), - [anon_sym_COMMA] = ACTIONS(3828), - [anon_sym_RPAREN] = ACTIONS(3828), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_AMP_AMP] = ACTIONS(3828), - [anon_sym_AMP] = ACTIONS(3826), - [anon_sym_SEMI] = ACTIONS(3828), - [anon_sym_extern] = ACTIONS(3828), - [anon_sym___attribute__] = ACTIONS(3828), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3828), - [anon_sym___declspec] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3450), - [anon_sym_LBRACK] = ACTIONS(3826), - [anon_sym_static] = ACTIONS(3828), - [anon_sym_register] = ACTIONS(3828), - [anon_sym_inline] = ACTIONS(3828), - [anon_sym_thread_local] = ACTIONS(3828), - [anon_sym_const] = ACTIONS(3826), - [anon_sym_volatile] = ACTIONS(3828), - [anon_sym_restrict] = ACTIONS(3828), - [anon_sym__Atomic] = ACTIONS(3828), - [anon_sym_mutable] = ACTIONS(3828), - [anon_sym_constexpr] = ACTIONS(3828), - [anon_sym_COLON] = ACTIONS(3852), - [anon_sym_DASH_GT] = ACTIONS(3828), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3828), - [anon_sym_override] = ACTIONS(3828), - [anon_sym_virtual] = ACTIONS(3828), - [anon_sym_noexcept] = ACTIONS(3828), - [anon_sym_throw] = ACTIONS(3828), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3828), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3828), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3826), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3828), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3828), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3826), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3828), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3828), - [anon_sym_MOZ_COLD] = ACTIONS(3828), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3828), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3828), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3828), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3828), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3828), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3828), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3828), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3828), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3828), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3828), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3828), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3828), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3828), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3828), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3828), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3828), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3828), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3828), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3828), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3828), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3828), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3826), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3828), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3828), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3828), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3828), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3826), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3828), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3828), - [anon_sym_MOZ_NONNULL] = ACTIONS(3826), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3828), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3828), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3828), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3828), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3828), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3828), - [anon_sym_MOZ_NORETURN] = ACTIONS(3826), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3828), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3828), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3828), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3828), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3828), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3828), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3828), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3828), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3828), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3828), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3828), - [anon_sym_MOZ_RAII] = ACTIONS(3828), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3828), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3828), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3828), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3828), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3828), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3828), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3828), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3828), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3828), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3828), - }, - [1469] = { - [sym_identifier] = ACTIONS(3456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3458), - [anon_sym_COMMA] = ACTIONS(3458), - [anon_sym_RPAREN] = ACTIONS(3458), - [anon_sym_LPAREN2] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3458), - [anon_sym_STAR] = ACTIONS(3458), - [anon_sym_AMP_AMP] = ACTIONS(3458), - [anon_sym_AMP] = ACTIONS(3456), - [anon_sym_extern] = ACTIONS(3456), - [anon_sym___attribute__] = ACTIONS(3456), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3458), - [anon_sym___declspec] = ACTIONS(3456), - [anon_sym___based] = ACTIONS(3456), - [anon_sym_LBRACK] = ACTIONS(3456), - [anon_sym_EQ] = ACTIONS(3458), - [anon_sym_static] = ACTIONS(3456), - [anon_sym_register] = ACTIONS(3456), - [anon_sym_inline] = ACTIONS(3456), - [anon_sym_thread_local] = ACTIONS(3456), - [anon_sym_const] = ACTIONS(3456), - [anon_sym_volatile] = ACTIONS(3456), - [anon_sym_restrict] = ACTIONS(3456), - [anon_sym__Atomic] = ACTIONS(3456), - [anon_sym_mutable] = ACTIONS(3456), - [anon_sym_constexpr] = ACTIONS(3456), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3456), - [anon_sym_explicit] = ACTIONS(3456), - [anon_sym_template] = ACTIONS(3456), - [anon_sym_GT2] = ACTIONS(3458), - [anon_sym_operator] = ACTIONS(3456), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3456), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3456), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3456), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3456), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3456), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3456), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3456), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3456), - [anon_sym_MOZ_COLD] = ACTIONS(3456), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3456), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3456), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3456), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3456), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3456), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3456), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3456), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3456), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3456), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3456), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3456), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3456), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3456), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3456), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3456), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3456), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3456), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3456), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3456), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3456), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_NONNULL] = ACTIONS(3456), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3456), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3456), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3456), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3456), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3456), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_NORETURN] = ACTIONS(3456), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3456), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3456), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3456), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3456), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3456), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3456), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3456), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3456), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3456), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3456), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3456), - [anon_sym_MOZ_RAII] = ACTIONS(3456), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3456), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3456), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3456), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3456), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3456), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3456), - }, - [1470] = { - [sym_identifier] = ACTIONS(3150), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3152), - [anon_sym_COMMA] = ACTIONS(3152), - [anon_sym_RPAREN] = ACTIONS(3152), - [anon_sym_LPAREN2] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_AMP_AMP] = ACTIONS(3152), - [anon_sym_AMP] = ACTIONS(3150), - [anon_sym_extern] = ACTIONS(3150), - [anon_sym___attribute__] = ACTIONS(3150), - [anon_sym_COLON_COLON] = ACTIONS(3152), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3152), - [anon_sym___declspec] = ACTIONS(3150), - [anon_sym___based] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_EQ] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3150), - [anon_sym_register] = ACTIONS(3150), - [anon_sym_inline] = ACTIONS(3150), - [anon_sym_thread_local] = ACTIONS(3150), - [anon_sym_const] = ACTIONS(3150), - [anon_sym_volatile] = ACTIONS(3150), - [anon_sym_restrict] = ACTIONS(3150), - [anon_sym__Atomic] = ACTIONS(3150), - [anon_sym_mutable] = ACTIONS(3150), - [anon_sym_constexpr] = ACTIONS(3150), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3150), - [anon_sym_explicit] = ACTIONS(3150), - [anon_sym_template] = ACTIONS(3150), - [anon_sym_GT2] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3150), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3150), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3150), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3150), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3150), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3150), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3150), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3150), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3150), - [anon_sym_MOZ_COLD] = ACTIONS(3150), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3150), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3150), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3150), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3150), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3150), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3150), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3150), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3150), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3150), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3150), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3150), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3150), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3150), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3150), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3150), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3150), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3150), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3150), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3150), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3150), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3150), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_NONNULL] = ACTIONS(3150), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3150), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3150), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3150), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3150), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3150), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_NORETURN] = ACTIONS(3150), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3150), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3150), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3150), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3150), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3150), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3150), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3150), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3150), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3150), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3150), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3150), - [anon_sym_MOZ_RAII] = ACTIONS(3150), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3150), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3150), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3150), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3150), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3150), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3150), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3150), - }, - [1471] = { - [sym_enumerator_list] = STATE(1354), - [sym__enum_base_clause] = STATE(1307), - [anon_sym_COMMA] = ACTIONS(3834), - [anon_sym_RPAREN] = ACTIONS(3834), - [anon_sym_LPAREN2] = ACTIONS(3834), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP_AMP] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3832), - [anon_sym_SEMI] = ACTIONS(3834), - [anon_sym_extern] = ACTIONS(3834), - [anon_sym___attribute__] = ACTIONS(3834), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3834), - [anon_sym___declspec] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3450), - [anon_sym_LBRACK] = ACTIONS(3832), - [anon_sym_static] = ACTIONS(3834), - [anon_sym_register] = ACTIONS(3834), - [anon_sym_inline] = ACTIONS(3834), - [anon_sym_thread_local] = ACTIONS(3834), - [anon_sym_const] = ACTIONS(3832), - [anon_sym_volatile] = ACTIONS(3834), - [anon_sym_restrict] = ACTIONS(3834), - [anon_sym__Atomic] = ACTIONS(3834), - [anon_sym_mutable] = ACTIONS(3834), - [anon_sym_constexpr] = ACTIONS(3834), - [anon_sym_COLON] = ACTIONS(3852), - [anon_sym_DASH_GT] = ACTIONS(3834), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3834), - [anon_sym_override] = ACTIONS(3834), - [anon_sym_virtual] = ACTIONS(3834), - [anon_sym_noexcept] = ACTIONS(3834), - [anon_sym_throw] = ACTIONS(3834), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3834), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3834), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3832), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3834), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3834), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3832), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3834), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3834), - [anon_sym_MOZ_COLD] = ACTIONS(3834), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3834), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3834), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3834), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3834), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3834), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3834), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3834), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3834), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3834), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3834), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3834), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3834), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3834), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3834), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3834), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3834), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3834), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3834), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3834), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3834), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3834), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3832), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3834), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3834), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3834), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3834), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3832), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3834), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3834), - [anon_sym_MOZ_NONNULL] = ACTIONS(3832), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3834), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3834), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3834), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3834), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3834), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3834), - [anon_sym_MOZ_NORETURN] = ACTIONS(3832), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3834), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3834), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3834), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3834), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3834), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3834), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3834), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3834), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3834), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3834), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3834), - [anon_sym_MOZ_RAII] = ACTIONS(3834), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3834), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3834), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3834), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3834), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3834), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3834), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3834), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3834), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3834), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3834), - }, - [1472] = { - [sym_identifier] = ACTIONS(3154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3156), - [anon_sym_COMMA] = ACTIONS(3156), - [anon_sym_RPAREN] = ACTIONS(3156), - [anon_sym_LPAREN2] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(3156), - [anon_sym_AMP_AMP] = ACTIONS(3156), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_extern] = ACTIONS(3154), - [anon_sym___attribute__] = ACTIONS(3154), - [anon_sym_COLON_COLON] = ACTIONS(3156), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3156), - [anon_sym___declspec] = ACTIONS(3154), - [anon_sym___based] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_EQ] = ACTIONS(3156), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_register] = ACTIONS(3154), - [anon_sym_inline] = ACTIONS(3154), - [anon_sym_thread_local] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_volatile] = ACTIONS(3154), - [anon_sym_restrict] = ACTIONS(3154), - [anon_sym__Atomic] = ACTIONS(3154), - [anon_sym_mutable] = ACTIONS(3154), - [anon_sym_constexpr] = ACTIONS(3154), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3154), - [anon_sym_explicit] = ACTIONS(3154), - [anon_sym_template] = ACTIONS(3154), - [anon_sym_GT2] = ACTIONS(3156), - [anon_sym_operator] = ACTIONS(3154), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3154), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3154), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3154), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3154), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3154), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3154), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3154), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3154), - [anon_sym_MOZ_COLD] = ACTIONS(3154), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3154), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3154), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3154), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3154), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3154), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3154), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3154), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3154), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3154), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3154), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3154), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3154), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3154), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3154), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3154), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3154), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3154), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3154), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3154), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3154), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3154), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_NONNULL] = ACTIONS(3154), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3154), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3154), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3154), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3154), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3154), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_NORETURN] = ACTIONS(3154), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3154), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3154), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3154), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3154), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3154), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3154), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3154), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3154), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3154), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3154), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3154), - [anon_sym_MOZ_RAII] = ACTIONS(3154), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3154), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3154), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3154), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3154), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3154), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3154), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3154), - }, - [1473] = { - [sym_enumerator_list] = STATE(1354), - [sym__enum_base_clause] = STATE(1307), - [sym_identifier] = ACTIONS(3832), - [anon_sym_COMMA] = ACTIONS(3834), - [anon_sym_LPAREN2] = ACTIONS(3834), - [anon_sym_TILDE] = ACTIONS(3834), - [anon_sym_STAR] = ACTIONS(3834), - [anon_sym_AMP_AMP] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3832), - [anon_sym_SEMI] = ACTIONS(3834), - [anon_sym_extern] = ACTIONS(3832), - [anon_sym___attribute__] = ACTIONS(3832), - [anon_sym_COLON_COLON] = ACTIONS(3834), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3834), - [anon_sym___declspec] = ACTIONS(3832), - [anon_sym___based] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3450), - [anon_sym_LBRACK] = ACTIONS(3832), - [anon_sym_static] = ACTIONS(3832), - [anon_sym_register] = ACTIONS(3832), - [anon_sym_inline] = ACTIONS(3832), - [anon_sym_thread_local] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3832), - [anon_sym_volatile] = ACTIONS(3832), - [anon_sym_restrict] = ACTIONS(3832), - [anon_sym__Atomic] = ACTIONS(3832), - [anon_sym_mutable] = ACTIONS(3832), - [anon_sym_constexpr] = ACTIONS(3832), - [anon_sym_COLON] = ACTIONS(3854), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3832), - [anon_sym_template] = ACTIONS(3832), - [anon_sym_operator] = ACTIONS(3832), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3832), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3832), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3832), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3832), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3832), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3832), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3832), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3832), - [anon_sym_MOZ_COLD] = ACTIONS(3832), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3832), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3832), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3832), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3832), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3832), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3832), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3832), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3832), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3832), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3832), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3832), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3832), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3832), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3832), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3832), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3832), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3832), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3832), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3832), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3832), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3832), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_NONNULL] = ACTIONS(3832), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3832), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3832), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3832), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3832), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3832), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_NORETURN] = ACTIONS(3832), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3832), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3832), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3832), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3832), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3832), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3832), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3832), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3832), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3832), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3832), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3832), - [anon_sym_MOZ_RAII] = ACTIONS(3832), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3832), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3832), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3832), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3832), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3832), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3832), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3832), - }, - [1474] = { - [sym_argument_list] = STATE(2165), - [sym_identifier] = ACTIONS(3452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3454), - [anon_sym_COMMA] = ACTIONS(3454), - [anon_sym_RPAREN] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3856), - [anon_sym_TILDE] = ACTIONS(3454), - [anon_sym_STAR] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_AMP] = ACTIONS(3452), - [anon_sym_SEMI] = ACTIONS(3454), - [anon_sym_extern] = ACTIONS(3452), - [anon_sym___attribute__] = ACTIONS(3452), - [anon_sym_COLON_COLON] = ACTIONS(3454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), - [anon_sym___declspec] = ACTIONS(3452), - [anon_sym___based] = ACTIONS(3452), - [anon_sym_LBRACK] = ACTIONS(3452), - [anon_sym_EQ] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3452), - [anon_sym_register] = ACTIONS(3452), - [anon_sym_inline] = ACTIONS(3452), - [anon_sym_thread_local] = ACTIONS(3452), - [anon_sym_const] = ACTIONS(3452), - [anon_sym_volatile] = ACTIONS(3452), - [anon_sym_restrict] = ACTIONS(3452), - [anon_sym__Atomic] = ACTIONS(3452), - [anon_sym_mutable] = ACTIONS(3452), - [anon_sym_constexpr] = ACTIONS(3452), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3452), - [anon_sym_template] = ACTIONS(3452), - [anon_sym_operator] = ACTIONS(3452), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3452), - [anon_sym_MOZ_COLD] = ACTIONS(3452), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3452), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3452), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3452), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3452), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3452), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3452), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3452), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3452), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3452), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3452), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3452), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3452), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_RAII] = ACTIONS(3452), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3452), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3452), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3452), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3452), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3452), - }, - [1475] = { - [sym_template_argument_list] = STATE(1479), - [sym_identifier] = ACTIONS(2459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), - [anon_sym_COMMA] = ACTIONS(2466), - [anon_sym_RPAREN] = ACTIONS(2463), - [anon_sym_LPAREN2] = ACTIONS(2463), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(2466), - [anon_sym_AMP_AMP] = ACTIONS(2466), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2463), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym_LBRACK] = ACTIONS(2470), - [anon_sym_EQ] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2459), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2459), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2459), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2459), - [anon_sym_MOZ_COLD] = ACTIONS(2459), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2459), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2459), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2459), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2459), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2459), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2459), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2459), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2459), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2459), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2459), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2459), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2459), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2459), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_NONNULL] = ACTIONS(2459), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2459), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2459), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2459), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2459), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2459), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2459), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2459), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2459), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2459), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2459), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2459), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2459), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2459), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2459), - [anon_sym_MOZ_RAII] = ACTIONS(2459), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2459), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2459), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2459), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2459), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2459), - }, - [1476] = { - [sym_identifier] = ACTIONS(3452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3454), - [anon_sym_COMMA] = ACTIONS(3454), - [anon_sym_RPAREN] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3454), - [anon_sym_STAR] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_AMP] = ACTIONS(3452), - [anon_sym_SEMI] = ACTIONS(3454), - [anon_sym_extern] = ACTIONS(3452), - [anon_sym___attribute__] = ACTIONS(3452), - [anon_sym_COLON_COLON] = ACTIONS(3440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), - [anon_sym___declspec] = ACTIONS(3452), - [anon_sym___based] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3452), - [anon_sym_EQ] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3452), - [anon_sym_register] = ACTIONS(3452), - [anon_sym_inline] = ACTIONS(3452), - [anon_sym_thread_local] = ACTIONS(3452), - [anon_sym_const] = ACTIONS(3452), - [anon_sym_volatile] = ACTIONS(3452), - [anon_sym_restrict] = ACTIONS(3452), - [anon_sym__Atomic] = ACTIONS(3452), - [anon_sym_mutable] = ACTIONS(3452), - [anon_sym_constexpr] = ACTIONS(3452), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3452), - [anon_sym_template] = ACTIONS(3452), - [anon_sym_operator] = ACTIONS(3452), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3452), - [anon_sym_MOZ_COLD] = ACTIONS(3452), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3452), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3452), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3452), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3452), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3452), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3452), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3452), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3452), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3452), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3452), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3452), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3452), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_RAII] = ACTIONS(3452), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3452), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3452), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3452), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3452), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3452), - }, - [1477] = { - [sym_identifier] = ACTIONS(3452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3454), - [anon_sym_COMMA] = ACTIONS(3454), - [anon_sym_RPAREN] = ACTIONS(3454), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3454), - [anon_sym_STAR] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_AMP] = ACTIONS(3452), - [anon_sym_SEMI] = ACTIONS(3454), - [anon_sym_extern] = ACTIONS(3452), - [anon_sym___attribute__] = ACTIONS(3452), - [anon_sym_COLON_COLON] = ACTIONS(3454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), - [anon_sym___declspec] = ACTIONS(3452), - [anon_sym___based] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3452), - [anon_sym_EQ] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3452), - [anon_sym_register] = ACTIONS(3452), - [anon_sym_inline] = ACTIONS(3452), - [anon_sym_thread_local] = ACTIONS(3452), - [anon_sym_const] = ACTIONS(3452), - [anon_sym_volatile] = ACTIONS(3452), - [anon_sym_restrict] = ACTIONS(3452), - [anon_sym__Atomic] = ACTIONS(3452), - [anon_sym_mutable] = ACTIONS(3452), - [anon_sym_constexpr] = ACTIONS(3452), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3452), - [anon_sym_template] = ACTIONS(3452), - [anon_sym_operator] = ACTIONS(3452), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3452), - [anon_sym_MOZ_COLD] = ACTIONS(3452), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3452), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3452), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3452), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3452), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3452), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3452), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3452), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3452), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3452), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3452), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3452), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3452), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_RAII] = ACTIONS(3452), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3452), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3452), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3452), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3452), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3452), - }, - [1478] = { - [sym_enumerator_list] = STATE(1313), - [sym__enum_base_clause] = STATE(1296), - [sym_identifier] = ACTIONS(3826), - [anon_sym_COMMA] = ACTIONS(3828), - [anon_sym_LPAREN2] = ACTIONS(3828), - [anon_sym_TILDE] = ACTIONS(3828), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_AMP_AMP] = ACTIONS(3828), - [anon_sym_AMP] = ACTIONS(3826), - [anon_sym_SEMI] = ACTIONS(3828), - [anon_sym_extern] = ACTIONS(3826), - [anon_sym___attribute__] = ACTIONS(3826), - [anon_sym_COLON_COLON] = ACTIONS(3828), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3828), - [anon_sym___declspec] = ACTIONS(3826), - [anon_sym___based] = ACTIONS(3826), - [anon_sym_LBRACE] = ACTIONS(3450), - [anon_sym_LBRACK] = ACTIONS(3826), - [anon_sym_static] = ACTIONS(3826), - [anon_sym_register] = ACTIONS(3826), - [anon_sym_inline] = ACTIONS(3826), - [anon_sym_thread_local] = ACTIONS(3826), - [anon_sym_const] = ACTIONS(3826), - [anon_sym_volatile] = ACTIONS(3826), - [anon_sym_restrict] = ACTIONS(3826), - [anon_sym__Atomic] = ACTIONS(3826), - [anon_sym_mutable] = ACTIONS(3826), - [anon_sym_constexpr] = ACTIONS(3826), - [anon_sym_COLON] = ACTIONS(3854), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3826), - [anon_sym_template] = ACTIONS(3826), - [anon_sym_operator] = ACTIONS(3826), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3826), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3826), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3826), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3826), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3826), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3826), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3826), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3826), - [anon_sym_MOZ_COLD] = ACTIONS(3826), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3826), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3826), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3826), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3826), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3826), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3826), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3826), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3826), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3826), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3826), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3826), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3826), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3826), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3826), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3826), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3826), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3826), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3826), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3826), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3826), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3826), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_NONNULL] = ACTIONS(3826), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3826), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3826), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3826), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3826), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3826), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_NORETURN] = ACTIONS(3826), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3826), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3826), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3826), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3826), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3826), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3826), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3826), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3826), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3826), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3826), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3826), - [anon_sym_MOZ_RAII] = ACTIONS(3826), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3826), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3826), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3826), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3826), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3826), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3826), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3826), - }, - [1479] = { - [sym_identifier] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2519), - [anon_sym_COMMA] = ACTIONS(2519), - [anon_sym_RPAREN] = ACTIONS(2516), - [anon_sym_LPAREN2] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_STAR] = ACTIONS(2519), - [anon_sym_AMP_AMP] = ACTIONS(2519), - [anon_sym_AMP] = ACTIONS(2512), - [anon_sym_SEMI] = ACTIONS(2514), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym___attribute__] = ACTIONS(2512), - [anon_sym_COLON_COLON] = ACTIONS(2519), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2516), - [anon_sym___declspec] = ACTIONS(2512), - [anon_sym___based] = ACTIONS(2512), - [anon_sym_LBRACK] = ACTIONS(2523), - [anon_sym_EQ] = ACTIONS(2519), - [anon_sym_static] = ACTIONS(2512), - [anon_sym_register] = ACTIONS(2512), - [anon_sym_inline] = ACTIONS(2512), - [anon_sym_thread_local] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [anon_sym_volatile] = ACTIONS(2512), - [anon_sym_restrict] = ACTIONS(2512), - [anon_sym__Atomic] = ACTIONS(2512), - [anon_sym_mutable] = ACTIONS(2512), - [anon_sym_constexpr] = ACTIONS(2512), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2512), - [anon_sym_template] = ACTIONS(2512), - [anon_sym_operator] = ACTIONS(2512), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2512), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2512), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2512), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2512), - [anon_sym_MOZ_COLD] = ACTIONS(2512), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2512), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2512), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2512), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2512), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2512), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2512), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2512), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2512), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2512), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2512), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2512), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2512), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2512), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_NONNULL] = ACTIONS(2512), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2512), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2512), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2512), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2512), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2512), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2512), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2512), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2512), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2512), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2512), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2512), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2512), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2512), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2512), - [anon_sym_MOZ_RAII] = ACTIONS(2512), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2512), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2512), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2512), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2512), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2512), - }, - [1480] = { - [sym_identifier] = ACTIONS(3859), - [anon_sym_extern] = ACTIONS(3859), - [anon_sym___attribute__] = ACTIONS(3859), - [anon_sym_COLON_COLON] = ACTIONS(3861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3861), - [anon_sym___declspec] = ACTIONS(3859), - [anon_sym_static] = ACTIONS(3859), - [anon_sym_register] = ACTIONS(3859), - [anon_sym_inline] = ACTIONS(3859), - [anon_sym_thread_local] = ACTIONS(3859), - [anon_sym_const] = ACTIONS(3859), - [anon_sym_volatile] = ACTIONS(3859), - [anon_sym_restrict] = ACTIONS(3859), - [anon_sym__Atomic] = ACTIONS(3859), - [anon_sym_mutable] = ACTIONS(3859), - [anon_sym_constexpr] = ACTIONS(3859), - [anon_sym_signed] = ACTIONS(3859), - [anon_sym_unsigned] = ACTIONS(3859), - [anon_sym_long] = ACTIONS(3859), - [anon_sym_short] = ACTIONS(3859), - [sym_primitive_type] = ACTIONS(3859), - [anon_sym_enum] = ACTIONS(3859), - [anon_sym_class] = ACTIONS(3859), - [anon_sym_struct] = ACTIONS(3859), - [anon_sym_union] = ACTIONS(3859), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3859), - [anon_sym_virtual] = ACTIONS(3859), - [sym_auto] = ACTIONS(3859), - [anon_sym_typename] = ACTIONS(3859), - [anon_sym_template] = ACTIONS(3859), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3859), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3859), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3859), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3859), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3859), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3859), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3859), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3859), - [anon_sym_MOZ_COLD] = ACTIONS(3859), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3859), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3859), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3859), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3859), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3859), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3859), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3859), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3859), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3859), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3859), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3859), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3859), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3859), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3859), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3859), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3859), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3859), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3859), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3859), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3859), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3859), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3859), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3859), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3859), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3859), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3859), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3859), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3859), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3859), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3859), - [anon_sym_MOZ_NONNULL] = ACTIONS(3859), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3859), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3859), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3859), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3859), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3859), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3859), - [anon_sym_MOZ_NORETURN] = ACTIONS(3859), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3859), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3859), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3859), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3859), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3859), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3859), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3859), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3859), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3859), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3859), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3859), - [anon_sym_MOZ_RAII] = ACTIONS(3859), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3859), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3859), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3859), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3859), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3859), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3859), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3859), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3859), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3859), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3859), - }, - [1481] = { - [sym_template_argument_list] = STATE(1493), - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2463), - [anon_sym_STAR] = ACTIONS(2466), - [anon_sym_AMP_AMP] = ACTIONS(2466), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2463), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_EQ] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_COLON] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2459), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2459), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2459), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2459), - [anon_sym_MOZ_COLD] = ACTIONS(2459), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2459), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2459), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2459), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2459), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2459), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2459), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2459), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2459), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2459), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2459), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2459), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2459), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2459), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_NONNULL] = ACTIONS(2459), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2459), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2459), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2459), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2459), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2459), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2459), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2459), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2459), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2459), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2459), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2459), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2459), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2459), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2459), - [anon_sym_MOZ_RAII] = ACTIONS(2459), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2459), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2459), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2459), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2459), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2459), - }, - [1482] = { - [sym_template_argument_list] = STATE(1493), - [sym_identifier] = ACTIONS(2397), - [anon_sym_LPAREN2] = ACTIONS(2420), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_AMP_AMP] = ACTIONS(2405), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2420), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(3863), - [anon_sym_EQ] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [anon_sym_COLON] = ACTIONS(2397), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2397), - [anon_sym_MOZ_COLD] = ACTIONS(2397), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2397), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2397), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2397), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2397), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2397), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2397), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2397), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2397), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2397), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2397), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2397), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2397), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_RAII] = ACTIONS(2397), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2397), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2397), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2397), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2397), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2397), - }, - [1483] = { - [sym__declaration_modifiers] = STATE(1487), - [sym_attribute_specifier] = STATE(1487), - [sym_attribute_declaration] = STATE(1487), - [sym_ms_declspec_modifier] = STATE(1487), - [sym_storage_class_specifier] = STATE(1487), - [sym_type_qualifier] = STATE(1487), - [sym_virtual_function_specifier] = STATE(1487), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1487), - [anon_sym_LPAREN2] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3366), - [anon_sym_AMP_AMP] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_extern] = ACTIONS(3865), - [anon_sym___attribute__] = ACTIONS(3867), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(3869), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(3865), - [anon_sym_register] = ACTIONS(3865), - [anon_sym_inline] = ACTIONS(3865), - [anon_sym_thread_local] = ACTIONS(3865), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(3871), - [anon_sym_restrict] = ACTIONS(3871), - [anon_sym__Atomic] = ACTIONS(3871), - [anon_sym_mutable] = ACTIONS(3871), - [anon_sym_constexpr] = ACTIONS(3871), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3873), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3875), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3875), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3875), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3875), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3875), - [anon_sym_MOZ_COLD] = ACTIONS(3875), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3875), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3875), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3875), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3875), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3875), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3875), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3875), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3875), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3875), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3875), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3875), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3875), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3875), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3875), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3875), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3875), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3875), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3875), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3875), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3875), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3875), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3875), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3875), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3875), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3875), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3875), - [anon_sym_MOZ_RAII] = ACTIONS(3875), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3875), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3875), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3875), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3875), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3875), - }, - [1484] = { - [sym_template_argument_list] = STATE(1497), - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2463), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(2466), - [anon_sym_AMP_AMP] = ACTIONS(2466), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2463), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym_LBRACK] = ACTIONS(2470), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2459), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2459), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2459), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2459), - [anon_sym_MOZ_COLD] = ACTIONS(2459), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2459), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2459), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2459), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2459), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2459), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2459), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2459), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2459), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2459), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2459), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2459), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2459), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2459), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_NONNULL] = ACTIONS(2459), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2459), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2459), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2459), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2459), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2459), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2459), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2459), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2459), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2459), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2459), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2459), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2459), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2459), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2459), - [anon_sym_MOZ_RAII] = ACTIONS(2459), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2459), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2459), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2459), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2459), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2459), - }, - [1485] = { - [sym__declaration_modifiers] = STATE(1269), - [sym_attribute_specifier] = STATE(1269), - [sym_attribute_declaration] = STATE(1269), - [sym_ms_declspec_modifier] = STATE(1269), - [sym_storage_class_specifier] = STATE(1269), - [sym_type_qualifier] = STATE(1269), - [sym_virtual_function_specifier] = STATE(1269), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1269), - [anon_sym_LPAREN2] = ACTIONS(3370), - [anon_sym_STAR] = ACTIONS(3370), - [anon_sym_AMP_AMP] = ACTIONS(3370), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_extern] = ACTIONS(3865), - [anon_sym___attribute__] = ACTIONS(3867), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(3869), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_static] = ACTIONS(3865), - [anon_sym_register] = ACTIONS(3865), - [anon_sym_inline] = ACTIONS(3865), - [anon_sym_thread_local] = ACTIONS(3865), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(3871), - [anon_sym_restrict] = ACTIONS(3871), - [anon_sym__Atomic] = ACTIONS(3871), - [anon_sym_mutable] = ACTIONS(3871), - [anon_sym_constexpr] = ACTIONS(3871), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3873), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3875), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3875), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3875), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3875), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3875), - [anon_sym_MOZ_COLD] = ACTIONS(3875), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3875), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3875), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3875), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3875), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3875), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3875), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3875), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3875), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3875), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3875), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3875), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3875), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3875), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3875), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3875), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3875), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3875), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3875), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3875), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3875), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3875), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3875), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3875), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3875), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3875), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3875), - [anon_sym_MOZ_RAII] = ACTIONS(3875), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3875), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3875), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3875), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3875), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3875), - }, - [1486] = { - [sym_template_argument_list] = STATE(1479), - [sym_identifier] = ACTIONS(2397), - [anon_sym_LPAREN2] = ACTIONS(2420), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_AMP_AMP] = ACTIONS(2405), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3877), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2420), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2397), - [anon_sym_MOZ_COLD] = ACTIONS(2397), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2397), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2397), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2397), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2397), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2397), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2397), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2397), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2397), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2397), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2397), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2397), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2397), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_RAII] = ACTIONS(2397), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2397), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2397), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2397), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2397), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2397), - }, - [1487] = { - [sym__declaration_modifiers] = STATE(1269), - [sym_attribute_specifier] = STATE(1269), - [sym_attribute_declaration] = STATE(1269), - [sym_ms_declspec_modifier] = STATE(1269), - [sym_storage_class_specifier] = STATE(1269), - [sym_type_qualifier] = STATE(1269), - [sym_virtual_function_specifier] = STATE(1269), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1269), - [anon_sym_LPAREN2] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_AMP_AMP] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_extern] = ACTIONS(3865), - [anon_sym___attribute__] = ACTIONS(3867), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(3869), - [anon_sym_LBRACK] = ACTIONS(3376), - [anon_sym_static] = ACTIONS(3865), - [anon_sym_register] = ACTIONS(3865), - [anon_sym_inline] = ACTIONS(3865), - [anon_sym_thread_local] = ACTIONS(3865), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(3871), - [anon_sym_restrict] = ACTIONS(3871), - [anon_sym__Atomic] = ACTIONS(3871), - [anon_sym_mutable] = ACTIONS(3871), - [anon_sym_constexpr] = ACTIONS(3871), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3873), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3875), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3875), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3875), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3875), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3875), - [anon_sym_MOZ_COLD] = ACTIONS(3875), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3875), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3875), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3875), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3875), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3875), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3875), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3875), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3875), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3875), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3875), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3875), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3875), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3875), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3875), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3875), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3875), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3875), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3875), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3875), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3875), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3875), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3875), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3875), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3875), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3875), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3875), - [anon_sym_MOZ_RAII] = ACTIONS(3875), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3875), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3875), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3875), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3875), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3875), - }, - [1488] = { - [sym_ms_based_modifier] = STATE(4944), - [sym__declarator] = STATE(3778), - [sym_parenthesized_declarator] = STATE(3720), - [sym_attributed_declarator] = STATE(3720), - [sym_pointer_declarator] = STATE(3720), - [sym_function_declarator] = STATE(3720), - [sym_array_declarator] = STATE(3720), - [sym__expression] = STATE(2214), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_reference_declarator] = STATE(3720), - [sym_structured_binding_declarator] = STATE(3720), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2229), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_destructor_name] = STATE(3720), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3511), - [sym_qualified_identifier] = STATE(2252), - [sym_qualified_type_identifier] = STATE(4751), - [sym_operator_name] = STATE(3720), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(3312), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3314), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2536), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_operator] = ACTIONS(2367), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1489] = { - [sym_template_argument_list] = STATE(1497), - [sym_identifier] = ACTIONS(2397), - [anon_sym_LPAREN2] = ACTIONS(2420), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_AMP_AMP] = ACTIONS(2405), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2420), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2397), - [anon_sym_MOZ_COLD] = ACTIONS(2397), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2397), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2397), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2397), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2397), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2397), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2397), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2397), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2397), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2397), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2397), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2397), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2397), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_RAII] = ACTIONS(2397), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2397), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2397), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2397), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2397), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2397), - }, - [1490] = { - [sym__declaration_modifiers] = STATE(1485), - [sym_attribute_specifier] = STATE(1485), - [sym_attribute_declaration] = STATE(1485), - [sym_ms_declspec_modifier] = STATE(1485), - [sym_storage_class_specifier] = STATE(1485), - [sym_type_qualifier] = STATE(1485), - [sym_virtual_function_specifier] = STATE(1485), - [sym_macro_annotation] = STATE(1308), - [aux_sym__declaration_specifiers_repeat1] = STATE(1485), - [anon_sym_LPAREN2] = ACTIONS(3374), - [anon_sym_STAR] = ACTIONS(3374), - [anon_sym_AMP_AMP] = ACTIONS(3374), - [anon_sym_AMP] = ACTIONS(3372), - [anon_sym_extern] = ACTIONS(3865), - [anon_sym___attribute__] = ACTIONS(3867), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(3869), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_static] = ACTIONS(3865), - [anon_sym_register] = ACTIONS(3865), - [anon_sym_inline] = ACTIONS(3865), - [anon_sym_thread_local] = ACTIONS(3865), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(3871), - [anon_sym_restrict] = ACTIONS(3871), - [anon_sym__Atomic] = ACTIONS(3871), - [anon_sym_mutable] = ACTIONS(3871), - [anon_sym_constexpr] = ACTIONS(3871), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3873), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3875), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3875), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3875), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3875), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3875), - [anon_sym_MOZ_COLD] = ACTIONS(3875), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3875), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3875), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3875), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3875), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3875), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3875), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3875), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3875), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3875), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3875), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3875), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3875), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3875), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3875), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3875), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3875), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3875), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3875), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3875), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3875), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3875), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3875), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3875), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3875), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3875), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3875), - [anon_sym_MOZ_RAII] = ACTIONS(3875), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3875), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3875), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3875), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3875), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3875), - }, - [1491] = { - [sym_template_argument_list] = STATE(1479), - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2463), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(2466), - [anon_sym_AMP_AMP] = ACTIONS(2466), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2463), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym_LBRACK] = ACTIONS(2470), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2459), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2459), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2459), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2459), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2459), - [anon_sym_MOZ_COLD] = ACTIONS(2459), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2459), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2459), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2459), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2459), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2459), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2459), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2459), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2459), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2459), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2459), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2459), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2459), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2459), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2459), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2459), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2459), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_NONNULL] = ACTIONS(2459), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2459), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2459), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2459), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2459), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_NORETURN] = ACTIONS(2459), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2459), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2459), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2459), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2459), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2459), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2459), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2459), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2459), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2459), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2459), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2459), - [anon_sym_MOZ_RAII] = ACTIONS(2459), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2459), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2459), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2459), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2459), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2459), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2459), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2459), - }, - [1492] = { - [sym_template_argument_list] = STATE(1294), - [sym_identifier] = ACTIONS(2397), - [anon_sym_LPAREN2] = ACTIONS(2405), - [anon_sym_TILDE] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_AMP_AMP] = ACTIONS(2405), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2405), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2397), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2397), - [anon_sym_MOZ_COLD] = ACTIONS(2397), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2397), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2397), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2397), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2397), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2397), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2397), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2397), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2397), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2397), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2397), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2397), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2397), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL] = ACTIONS(2397), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2397), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2397), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN] = ACTIONS(2397), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2397), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2397), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2397), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2397), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2397), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2397), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2397), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2397), - [anon_sym_MOZ_RAII] = ACTIONS(2397), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2397), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2397), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2397), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2397), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2397), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2397), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2397), - }, - [1493] = { - [sym_identifier] = ACTIONS(2512), - [anon_sym_LPAREN2] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(2519), - [anon_sym_AMP_AMP] = ACTIONS(2519), - [anon_sym_AMP] = ACTIONS(2512), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym___attribute__] = ACTIONS(2512), - [anon_sym_COLON_COLON] = ACTIONS(2519), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2516), - [anon_sym___declspec] = ACTIONS(2512), - [anon_sym___based] = ACTIONS(2512), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_LBRACK] = ACTIONS(2521), - [anon_sym_EQ] = ACTIONS(2519), - [anon_sym_static] = ACTIONS(2512), - [anon_sym_register] = ACTIONS(2512), - [anon_sym_inline] = ACTIONS(2512), - [anon_sym_thread_local] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [anon_sym_volatile] = ACTIONS(2512), - [anon_sym_restrict] = ACTIONS(2512), - [anon_sym__Atomic] = ACTIONS(2512), - [anon_sym_mutable] = ACTIONS(2512), - [anon_sym_constexpr] = ACTIONS(2512), - [anon_sym_COLON] = ACTIONS(2512), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2512), - [anon_sym_operator] = ACTIONS(2512), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2512), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2512), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2512), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2512), - [anon_sym_MOZ_COLD] = ACTIONS(2512), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2512), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2512), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2512), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2512), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2512), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2512), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2512), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2512), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2512), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2512), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2512), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2512), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2512), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_NONNULL] = ACTIONS(2512), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2512), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2512), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2512), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2512), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2512), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2512), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2512), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2512), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2512), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2512), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2512), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2512), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2512), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2512), - [anon_sym_MOZ_RAII] = ACTIONS(2512), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2512), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2512), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2512), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2512), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2512), - }, - [1494] = { - [sym_identifier] = ACTIONS(2260), - [anon_sym_COMMA] = ACTIONS(2262), - [anon_sym_LPAREN2] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(2262), - [anon_sym_AMP_AMP] = ACTIONS(2262), - [anon_sym_AMP] = ACTIONS(2260), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_extern] = ACTIONS(2260), - [anon_sym___attribute__] = ACTIONS(2260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2262), - [anon_sym___declspec] = ACTIONS(2260), - [anon_sym___based] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2260), - [anon_sym_EQ] = ACTIONS(2262), - [anon_sym_static] = ACTIONS(2260), - [anon_sym_register] = ACTIONS(2260), - [anon_sym_inline] = ACTIONS(2260), - [anon_sym_thread_local] = ACTIONS(2260), - [anon_sym_const] = ACTIONS(2260), - [anon_sym_volatile] = ACTIONS(2260), - [anon_sym_restrict] = ACTIONS(2260), - [anon_sym__Atomic] = ACTIONS(2260), - [anon_sym_mutable] = ACTIONS(2260), - [anon_sym_constexpr] = ACTIONS(2260), - [anon_sym_COLON] = ACTIONS(2262), + [STATE(546)] = { + [ts_builtin_sym_end] = ACTIONS(2208), + [sym_identifier] = ACTIONS(2206), + [aux_sym_preproc_include_token1] = ACTIONS(2206), + [aux_sym_preproc_def_token1] = ACTIONS(2206), + [aux_sym_preproc_if_token1] = ACTIONS(2206), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2206), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2206), + [sym_preproc_directive] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_PLUS] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym___extension__] = ACTIONS(2206), + [anon_sym_typedef] = ACTIONS(2206), + [anon_sym_virtual] = ACTIONS(2206), + [anon_sym_extern] = ACTIONS(2206), + [anon_sym___attribute__] = ACTIONS(2206), + [anon_sym___attribute] = ACTIONS(2206), + [anon_sym_COLON_COLON] = ACTIONS(2208), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2208), + [anon_sym___declspec] = ACTIONS(2206), + [anon_sym___based] = ACTIONS(2206), + [anon_sym___cdecl] = ACTIONS(2206), + [anon_sym___clrcall] = ACTIONS(2206), + [anon_sym___stdcall] = ACTIONS(2206), + [anon_sym___fastcall] = ACTIONS(2206), + [anon_sym___thiscall] = ACTIONS(2206), + [anon_sym___vectorcall] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_signed] = ACTIONS(2206), + [anon_sym_unsigned] = ACTIONS(2206), + [anon_sym_long] = ACTIONS(2206), + [anon_sym_short] = ACTIONS(2206), + [anon_sym_LBRACK] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_register] = ACTIONS(2206), + [anon_sym_inline] = ACTIONS(2206), + [anon_sym___inline] = ACTIONS(2206), + [anon_sym___inline__] = ACTIONS(2206), + [anon_sym___forceinline] = ACTIONS(2206), + [anon_sym_thread_local] = ACTIONS(2206), + [anon_sym___thread] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_constexpr] = ACTIONS(2206), + [anon_sym_volatile] = ACTIONS(2206), + [anon_sym_restrict] = ACTIONS(2206), + [anon_sym___restrict__] = ACTIONS(2206), + [anon_sym__Atomic] = ACTIONS(2206), + [anon_sym__Noreturn] = ACTIONS(2206), + [anon_sym_noreturn] = ACTIONS(2206), + [anon_sym__Nonnull] = ACTIONS(2206), + [anon_sym_mutable] = ACTIONS(2206), + [anon_sym_constinit] = ACTIONS(2206), + [anon_sym_consteval] = ACTIONS(2206), + [anon_sym_alignas] = ACTIONS(2206), + [anon_sym__Alignas] = ACTIONS(2206), + [sym_primitive_type] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_class] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_switch] = ACTIONS(2206), + [anon_sym_case] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [anon_sym_do] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_goto] = ACTIONS(2206), + [anon_sym_not] = ACTIONS(2206), + [anon_sym_compl] = ACTIONS(2206), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_sizeof] = ACTIONS(2206), + [anon_sym___alignof__] = ACTIONS(2206), + [anon_sym___alignof] = ACTIONS(2206), + [anon_sym__alignof] = ACTIONS(2206), + [anon_sym_alignof] = ACTIONS(2206), + [anon_sym__Alignof] = ACTIONS(2206), + [anon_sym_offsetof] = ACTIONS(2206), + [anon_sym__Generic] = ACTIONS(2206), + [anon_sym_asm] = ACTIONS(2206), + [anon_sym___asm__] = ACTIONS(2206), + [anon_sym___asm] = ACTIONS(2206), + [sym_number_literal] = ACTIONS(2208), + [anon_sym_L_SQUOTE] = ACTIONS(2208), + [anon_sym_u_SQUOTE] = ACTIONS(2208), + [anon_sym_U_SQUOTE] = ACTIONS(2208), + [anon_sym_u8_SQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_L_DQUOTE] = ACTIONS(2208), + [anon_sym_u_DQUOTE] = ACTIONS(2208), + [anon_sym_U_DQUOTE] = ACTIONS(2208), + [anon_sym_u8_DQUOTE] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [sym_true] = ACTIONS(2206), + [sym_false] = ACTIONS(2206), + [anon_sym_NULL] = ACTIONS(2206), + [anon_sym_nullptr] = ACTIONS(2206), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2206), + [anon_sym_decltype] = ACTIONS(2206), + [anon_sym_explicit] = ACTIONS(2206), + [anon_sym_typename] = ACTIONS(2206), + [anon_sym_template] = ACTIONS(2206), + [anon_sym_operator] = ACTIONS(2206), + [anon_sym_try] = ACTIONS(2206), + [anon_sym_delete] = ACTIONS(2206), + [anon_sym_throw] = ACTIONS(2206), + [anon_sym_namespace] = ACTIONS(2206), + [anon_sym_using] = ACTIONS(2206), + [anon_sym_static_assert] = ACTIONS(2206), + [anon_sym_concept] = ACTIONS(2206), + [anon_sym_co_return] = ACTIONS(2206), + [anon_sym_co_yield] = ACTIONS(2206), + [anon_sym_R_DQUOTE] = ACTIONS(2208), + [anon_sym_LR_DQUOTE] = ACTIONS(2208), + [anon_sym_uR_DQUOTE] = ACTIONS(2208), + [anon_sym_UR_DQUOTE] = ACTIONS(2208), + [anon_sym_u8R_DQUOTE] = ACTIONS(2208), + [anon_sym_co_await] = ACTIONS(2206), + [anon_sym_new] = ACTIONS(2206), + [anon_sym_requires] = ACTIONS(2206), + [sym_this] = ACTIONS(2206), + [sym_alone_macro] = ACTIONS(2208), + [aux_sym_alone_macro_call_token1] = ACTIONS(2206), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2206), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_FORWARD] = ACTIONS(2206), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2206), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2206), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2206), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2206), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_PS_GET] = ACTIONS(2206), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2206), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2206), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2206), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2206), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2206), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2206), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2206), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2206), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2206), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2206), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2206), + [anon_sym_MOZ_COLD] = ACTIONS(2206), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2206), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2206), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2206), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2206), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2206), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2206), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2206), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2206), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2206), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2206), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2206), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2206), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2206), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2206), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2206), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2206), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2206), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2206), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2206), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2206), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_NONNULL] = ACTIONS(2206), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2206), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2206), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2206), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2206), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2206), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_NORETURN] = ACTIONS(2206), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2206), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2206), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2206), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2206), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2206), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2206), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2206), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2206), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2206), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2206), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2206), + [anon_sym_MOZ_RAII] = ACTIONS(2206), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2206), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2206), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2206), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2206), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2206), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2206), + }, + [STATE(547)] = { + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2210), + [aux_sym_preproc_include_token1] = ACTIONS(2210), + [aux_sym_preproc_def_token1] = ACTIONS(2210), + [aux_sym_preproc_if_token1] = ACTIONS(2210), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2210), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2210), + [sym_preproc_directive] = ACTIONS(2210), + [anon_sym_LPAREN2] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_PLUS] = ACTIONS(2210), + [anon_sym_STAR] = ACTIONS(2212), + [anon_sym_AMP_AMP] = ACTIONS(2212), + [anon_sym_AMP] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym___extension__] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_virtual] = ACTIONS(2210), + [anon_sym_extern] = ACTIONS(2210), + [anon_sym___attribute__] = ACTIONS(2210), + [anon_sym___attribute] = ACTIONS(2210), + [anon_sym_COLON_COLON] = ACTIONS(2212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2212), + [anon_sym___declspec] = ACTIONS(2210), + [anon_sym___based] = ACTIONS(2210), + [anon_sym___cdecl] = ACTIONS(2210), + [anon_sym___clrcall] = ACTIONS(2210), + [anon_sym___stdcall] = ACTIONS(2210), + [anon_sym___fastcall] = ACTIONS(2210), + [anon_sym___thiscall] = ACTIONS(2210), + [anon_sym___vectorcall] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_signed] = ACTIONS(2210), + [anon_sym_unsigned] = ACTIONS(2210), + [anon_sym_long] = ACTIONS(2210), + [anon_sym_short] = ACTIONS(2210), + [anon_sym_LBRACK] = ACTIONS(2210), + [anon_sym_static] = ACTIONS(2210), + [anon_sym_register] = ACTIONS(2210), + [anon_sym_inline] = ACTIONS(2210), + [anon_sym___inline] = ACTIONS(2210), + [anon_sym___inline__] = ACTIONS(2210), + [anon_sym___forceinline] = ACTIONS(2210), + [anon_sym_thread_local] = ACTIONS(2210), + [anon_sym___thread] = ACTIONS(2210), + [anon_sym_const] = ACTIONS(2210), + [anon_sym_constexpr] = ACTIONS(2210), + [anon_sym_volatile] = ACTIONS(2210), + [anon_sym_restrict] = ACTIONS(2210), + [anon_sym___restrict__] = ACTIONS(2210), + [anon_sym__Atomic] = ACTIONS(2210), + [anon_sym__Noreturn] = ACTIONS(2210), + [anon_sym_noreturn] = ACTIONS(2210), + [anon_sym__Nonnull] = ACTIONS(2210), + [anon_sym_mutable] = ACTIONS(2210), + [anon_sym_constinit] = ACTIONS(2210), + [anon_sym_consteval] = ACTIONS(2210), + [anon_sym_alignas] = ACTIONS(2210), + [anon_sym__Alignas] = ACTIONS(2210), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_enum] = ACTIONS(2210), + [anon_sym_class] = ACTIONS(2210), + [anon_sym_struct] = ACTIONS(2210), + [anon_sym_union] = ACTIONS(2210), + [anon_sym_if] = ACTIONS(2210), + [anon_sym_switch] = ACTIONS(2210), + [anon_sym_case] = ACTIONS(2210), + [anon_sym_default] = ACTIONS(2210), + [anon_sym_while] = ACTIONS(2210), + [anon_sym_do] = ACTIONS(2210), + [anon_sym_for] = ACTIONS(2210), + [anon_sym_return] = ACTIONS(2210), + [anon_sym_break] = ACTIONS(2210), + [anon_sym_continue] = ACTIONS(2210), + [anon_sym_goto] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(2210), + [anon_sym_compl] = ACTIONS(2210), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_sizeof] = ACTIONS(2210), + [anon_sym___alignof__] = ACTIONS(2210), + [anon_sym___alignof] = ACTIONS(2210), + [anon_sym__alignof] = ACTIONS(2210), + [anon_sym_alignof] = ACTIONS(2210), + [anon_sym__Alignof] = ACTIONS(2210), + [anon_sym_offsetof] = ACTIONS(2210), + [anon_sym__Generic] = ACTIONS(2210), + [anon_sym_asm] = ACTIONS(2210), + [anon_sym___asm__] = ACTIONS(2210), + [anon_sym___asm] = ACTIONS(2210), + [sym_number_literal] = ACTIONS(2212), + [anon_sym_L_SQUOTE] = ACTIONS(2212), + [anon_sym_u_SQUOTE] = ACTIONS(2212), + [anon_sym_U_SQUOTE] = ACTIONS(2212), + [anon_sym_u8_SQUOTE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_L_DQUOTE] = ACTIONS(2212), + [anon_sym_u_DQUOTE] = ACTIONS(2212), + [anon_sym_U_DQUOTE] = ACTIONS(2212), + [anon_sym_u8_DQUOTE] = ACTIONS(2212), + [anon_sym_DQUOTE] = ACTIONS(2212), + [sym_true] = ACTIONS(2210), + [sym_false] = ACTIONS(2210), + [anon_sym_NULL] = ACTIONS(2210), + [anon_sym_nullptr] = ACTIONS(2210), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2210), + [anon_sym_decltype] = ACTIONS(2210), + [anon_sym_explicit] = ACTIONS(2210), + [anon_sym_typename] = ACTIONS(2210), + [anon_sym_template] = ACTIONS(2210), + [anon_sym_operator] = ACTIONS(2210), + [anon_sym_try] = ACTIONS(2210), + [anon_sym_delete] = ACTIONS(2210), + [anon_sym_throw] = ACTIONS(2210), + [anon_sym_namespace] = ACTIONS(2210), + [anon_sym_using] = ACTIONS(2210), + [anon_sym_static_assert] = ACTIONS(2210), + [anon_sym_concept] = ACTIONS(2210), + [anon_sym_co_return] = ACTIONS(2210), + [anon_sym_co_yield] = ACTIONS(2210), + [anon_sym_R_DQUOTE] = ACTIONS(2212), + [anon_sym_LR_DQUOTE] = ACTIONS(2212), + [anon_sym_uR_DQUOTE] = ACTIONS(2212), + [anon_sym_UR_DQUOTE] = ACTIONS(2212), + [anon_sym_u8R_DQUOTE] = ACTIONS(2212), + [anon_sym_co_await] = ACTIONS(2210), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2210), + [sym_this] = ACTIONS(2210), + [sym_alone_macro] = ACTIONS(2212), + [aux_sym_alone_macro_call_token1] = ACTIONS(2210), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2210), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_FORWARD] = ACTIONS(2210), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2210), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2210), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2210), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2210), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_PS_GET] = ACTIONS(2210), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2210), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2210), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2210), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2210), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2210), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2210), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2210), + [anon_sym_MOZ_COLD] = ACTIONS(2210), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2210), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2210), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2210), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2210), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2210), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2210), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2210), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2210), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2210), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2210), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2210), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2210), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2210), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_NONNULL] = ACTIONS(2210), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2210), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2210), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2210), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2210), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2210), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2210), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2210), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2210), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2210), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2210), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2210), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2210), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2210), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2210), + [anon_sym_MOZ_RAII] = ACTIONS(2210), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2210), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2210), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2210), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2210), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2210), + }, + [STATE(548)] = { + [ts_builtin_sym_end] = ACTIONS(2442), + [sym_identifier] = ACTIONS(2440), + [aux_sym_preproc_include_token1] = ACTIONS(2440), + [aux_sym_preproc_def_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2440), + [sym_preproc_directive] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_typedef] = ACTIONS(2440), + [anon_sym_virtual] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym___attribute__] = ACTIONS(2440), + [anon_sym___attribute] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(2442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2442), + [anon_sym___declspec] = ACTIONS(2440), + [anon_sym___based] = ACTIONS(2440), + [anon_sym___cdecl] = ACTIONS(2440), + [anon_sym___clrcall] = ACTIONS(2440), + [anon_sym___stdcall] = ACTIONS(2440), + [anon_sym___fastcall] = ACTIONS(2440), + [anon_sym___thiscall] = ACTIONS(2440), + [anon_sym___vectorcall] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_signed] = ACTIONS(2440), + [anon_sym_unsigned] = ACTIONS(2440), + [anon_sym_long] = ACTIONS(2440), + [anon_sym_short] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_register] = ACTIONS(2440), + [anon_sym_inline] = ACTIONS(2440), + [anon_sym___inline] = ACTIONS(2440), + [anon_sym___inline__] = ACTIONS(2440), + [anon_sym___forceinline] = ACTIONS(2440), + [anon_sym_thread_local] = ACTIONS(2440), + [anon_sym___thread] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_constexpr] = ACTIONS(2440), + [anon_sym_volatile] = ACTIONS(2440), + [anon_sym_restrict] = ACTIONS(2440), + [anon_sym___restrict__] = ACTIONS(2440), + [anon_sym__Atomic] = ACTIONS(2440), + [anon_sym__Noreturn] = ACTIONS(2440), + [anon_sym_noreturn] = ACTIONS(2440), + [anon_sym__Nonnull] = ACTIONS(2440), + [anon_sym_mutable] = ACTIONS(2440), + [anon_sym_constinit] = ACTIONS(2440), + [anon_sym_consteval] = ACTIONS(2440), + [anon_sym_alignas] = ACTIONS(2440), + [anon_sym__Alignas] = ACTIONS(2440), + [sym_primitive_type] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_struct] = ACTIONS(2440), + [anon_sym_union] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_case] = ACTIONS(2440), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_goto] = ACTIONS(2440), + [anon_sym_not] = ACTIONS(2440), + [anon_sym_compl] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2442), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_sizeof] = ACTIONS(2440), + [anon_sym___alignof__] = ACTIONS(2440), + [anon_sym___alignof] = ACTIONS(2440), + [anon_sym__alignof] = ACTIONS(2440), + [anon_sym_alignof] = ACTIONS(2440), + [anon_sym__Alignof] = ACTIONS(2440), + [anon_sym_offsetof] = ACTIONS(2440), + [anon_sym__Generic] = ACTIONS(2440), + [anon_sym_asm] = ACTIONS(2440), + [anon_sym___asm__] = ACTIONS(2440), + [anon_sym___asm] = ACTIONS(2440), + [sym_number_literal] = ACTIONS(2442), + [anon_sym_L_SQUOTE] = ACTIONS(2442), + [anon_sym_u_SQUOTE] = ACTIONS(2442), + [anon_sym_U_SQUOTE] = ACTIONS(2442), + [anon_sym_u8_SQUOTE] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2442), + [anon_sym_L_DQUOTE] = ACTIONS(2442), + [anon_sym_u_DQUOTE] = ACTIONS(2442), + [anon_sym_U_DQUOTE] = ACTIONS(2442), + [anon_sym_u8_DQUOTE] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2442), + [sym_true] = ACTIONS(2440), + [sym_false] = ACTIONS(2440), + [anon_sym_NULL] = ACTIONS(2440), + [anon_sym_nullptr] = ACTIONS(2440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2440), + [anon_sym_decltype] = ACTIONS(2440), + [anon_sym_explicit] = ACTIONS(2440), + [anon_sym_typename] = ACTIONS(2440), + [anon_sym_template] = ACTIONS(2440), + [anon_sym_operator] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_delete] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_static_assert] = ACTIONS(2440), + [anon_sym_concept] = ACTIONS(2440), + [anon_sym_co_return] = ACTIONS(2440), + [anon_sym_co_yield] = ACTIONS(2440), + [anon_sym_R_DQUOTE] = ACTIONS(2442), + [anon_sym_LR_DQUOTE] = ACTIONS(2442), + [anon_sym_uR_DQUOTE] = ACTIONS(2442), + [anon_sym_UR_DQUOTE] = ACTIONS(2442), + [anon_sym_u8R_DQUOTE] = ACTIONS(2442), + [anon_sym_co_await] = ACTIONS(2440), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_requires] = ACTIONS(2440), + [sym_this] = ACTIONS(2440), + [sym_alone_macro] = ACTIONS(2442), + [aux_sym_alone_macro_call_token1] = ACTIONS(2440), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_FORWARD] = ACTIONS(2440), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2440), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_PS_GET] = ACTIONS(2440), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2440), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2440), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2440), + [anon_sym_MOZ_COLD] = ACTIONS(2440), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2440), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2440), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2440), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2440), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2440), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2440), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2440), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2440), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2440), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2440), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2440), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2440), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_RAII] = ACTIONS(2440), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2440), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2440), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2440), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2440), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2440), + }, + [STATE(549)] = { + [ts_builtin_sym_end] = ACTIONS(2442), + [sym_identifier] = ACTIONS(2440), + [aux_sym_preproc_include_token1] = ACTIONS(2440), + [aux_sym_preproc_def_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2440), + [sym_preproc_directive] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_typedef] = ACTIONS(2440), + [anon_sym_virtual] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym___attribute__] = ACTIONS(2440), + [anon_sym___attribute] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(2442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2442), + [anon_sym___declspec] = ACTIONS(2440), + [anon_sym___based] = ACTIONS(2440), + [anon_sym___cdecl] = ACTIONS(2440), + [anon_sym___clrcall] = ACTIONS(2440), + [anon_sym___stdcall] = ACTIONS(2440), + [anon_sym___fastcall] = ACTIONS(2440), + [anon_sym___thiscall] = ACTIONS(2440), + [anon_sym___vectorcall] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_signed] = ACTIONS(2440), + [anon_sym_unsigned] = ACTIONS(2440), + [anon_sym_long] = ACTIONS(2440), + [anon_sym_short] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_register] = ACTIONS(2440), + [anon_sym_inline] = ACTIONS(2440), + [anon_sym___inline] = ACTIONS(2440), + [anon_sym___inline__] = ACTIONS(2440), + [anon_sym___forceinline] = ACTIONS(2440), + [anon_sym_thread_local] = ACTIONS(2440), + [anon_sym___thread] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_constexpr] = ACTIONS(2440), + [anon_sym_volatile] = ACTIONS(2440), + [anon_sym_restrict] = ACTIONS(2440), + [anon_sym___restrict__] = ACTIONS(2440), + [anon_sym__Atomic] = ACTIONS(2440), + [anon_sym__Noreturn] = ACTIONS(2440), + [anon_sym_noreturn] = ACTIONS(2440), + [anon_sym__Nonnull] = ACTIONS(2440), + [anon_sym_mutable] = ACTIONS(2440), + [anon_sym_constinit] = ACTIONS(2440), + [anon_sym_consteval] = ACTIONS(2440), + [anon_sym_alignas] = ACTIONS(2440), + [anon_sym__Alignas] = ACTIONS(2440), + [sym_primitive_type] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_struct] = ACTIONS(2440), + [anon_sym_union] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_case] = ACTIONS(2440), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_goto] = ACTIONS(2440), + [anon_sym_not] = ACTIONS(2440), + [anon_sym_compl] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2442), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_sizeof] = ACTIONS(2440), + [anon_sym___alignof__] = ACTIONS(2440), + [anon_sym___alignof] = ACTIONS(2440), + [anon_sym__alignof] = ACTIONS(2440), + [anon_sym_alignof] = ACTIONS(2440), + [anon_sym__Alignof] = ACTIONS(2440), + [anon_sym_offsetof] = ACTIONS(2440), + [anon_sym__Generic] = ACTIONS(2440), + [anon_sym_asm] = ACTIONS(2440), + [anon_sym___asm__] = ACTIONS(2440), + [anon_sym___asm] = ACTIONS(2440), + [sym_number_literal] = ACTIONS(2442), + [anon_sym_L_SQUOTE] = ACTIONS(2442), + [anon_sym_u_SQUOTE] = ACTIONS(2442), + [anon_sym_U_SQUOTE] = ACTIONS(2442), + [anon_sym_u8_SQUOTE] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2442), + [anon_sym_L_DQUOTE] = ACTIONS(2442), + [anon_sym_u_DQUOTE] = ACTIONS(2442), + [anon_sym_U_DQUOTE] = ACTIONS(2442), + [anon_sym_u8_DQUOTE] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2442), + [sym_true] = ACTIONS(2440), + [sym_false] = ACTIONS(2440), + [anon_sym_NULL] = ACTIONS(2440), + [anon_sym_nullptr] = ACTIONS(2440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2440), + [anon_sym_decltype] = ACTIONS(2440), + [anon_sym_explicit] = ACTIONS(2440), + [anon_sym_typename] = ACTIONS(2440), + [anon_sym_template] = ACTIONS(2440), + [anon_sym_operator] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_delete] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_static_assert] = ACTIONS(2440), + [anon_sym_concept] = ACTIONS(2440), + [anon_sym_co_return] = ACTIONS(2440), + [anon_sym_co_yield] = ACTIONS(2440), + [anon_sym_R_DQUOTE] = ACTIONS(2442), + [anon_sym_LR_DQUOTE] = ACTIONS(2442), + [anon_sym_uR_DQUOTE] = ACTIONS(2442), + [anon_sym_UR_DQUOTE] = ACTIONS(2442), + [anon_sym_u8R_DQUOTE] = ACTIONS(2442), + [anon_sym_co_await] = ACTIONS(2440), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_requires] = ACTIONS(2440), + [sym_this] = ACTIONS(2440), + [sym_alone_macro] = ACTIONS(2442), + [aux_sym_alone_macro_call_token1] = ACTIONS(2440), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_FORWARD] = ACTIONS(2440), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2440), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_PS_GET] = ACTIONS(2440), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2440), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2440), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2440), + [anon_sym_MOZ_COLD] = ACTIONS(2440), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2440), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2440), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2440), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2440), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2440), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2440), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2440), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2440), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2440), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2440), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2440), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2440), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_RAII] = ACTIONS(2440), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2440), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2440), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2440), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2440), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2440), + }, + [STATE(550)] = { + [ts_builtin_sym_end] = ACTIONS(2246), + [sym_identifier] = ACTIONS(2244), + [aux_sym_preproc_include_token1] = ACTIONS(2244), + [aux_sym_preproc_def_token1] = ACTIONS(2244), + [aux_sym_preproc_if_token1] = ACTIONS(2244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2244), + [sym_preproc_directive] = ACTIONS(2244), + [anon_sym_LPAREN2] = ACTIONS(2246), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_STAR] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym___extension__] = ACTIONS(2244), + [anon_sym_typedef] = ACTIONS(2244), + [anon_sym_virtual] = ACTIONS(2244), + [anon_sym_extern] = ACTIONS(2244), + [anon_sym___attribute__] = ACTIONS(2244), + [anon_sym___attribute] = ACTIONS(2244), + [anon_sym_COLON_COLON] = ACTIONS(2246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2246), + [anon_sym___declspec] = ACTIONS(2244), + [anon_sym___based] = ACTIONS(2244), + [anon_sym___cdecl] = ACTIONS(2244), + [anon_sym___clrcall] = ACTIONS(2244), + [anon_sym___stdcall] = ACTIONS(2244), + [anon_sym___fastcall] = ACTIONS(2244), + [anon_sym___thiscall] = ACTIONS(2244), + [anon_sym___vectorcall] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_register] = ACTIONS(2244), + [anon_sym_inline] = ACTIONS(2244), + [anon_sym___inline] = ACTIONS(2244), + [anon_sym___inline__] = ACTIONS(2244), + [anon_sym___forceinline] = ACTIONS(2244), + [anon_sym_thread_local] = ACTIONS(2244), + [anon_sym___thread] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_constexpr] = ACTIONS(2244), + [anon_sym_volatile] = ACTIONS(2244), + [anon_sym_restrict] = ACTIONS(2244), + [anon_sym___restrict__] = ACTIONS(2244), + [anon_sym__Atomic] = ACTIONS(2244), + [anon_sym__Noreturn] = ACTIONS(2244), + [anon_sym_noreturn] = ACTIONS(2244), + [anon_sym__Nonnull] = ACTIONS(2244), + [anon_sym_mutable] = ACTIONS(2244), + [anon_sym_constinit] = ACTIONS(2244), + [anon_sym_consteval] = ACTIONS(2244), + [anon_sym_alignas] = ACTIONS(2244), + [anon_sym__Alignas] = ACTIONS(2244), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_struct] = ACTIONS(2244), + [anon_sym_union] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_goto] = ACTIONS(2244), + [anon_sym_not] = ACTIONS(2244), + [anon_sym_compl] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_sizeof] = ACTIONS(2244), + [anon_sym___alignof__] = ACTIONS(2244), + [anon_sym___alignof] = ACTIONS(2244), + [anon_sym__alignof] = ACTIONS(2244), + [anon_sym_alignof] = ACTIONS(2244), + [anon_sym__Alignof] = ACTIONS(2244), + [anon_sym_offsetof] = ACTIONS(2244), + [anon_sym__Generic] = ACTIONS(2244), + [anon_sym_asm] = ACTIONS(2244), + [anon_sym___asm__] = ACTIONS(2244), + [anon_sym___asm] = ACTIONS(2244), + [sym_number_literal] = ACTIONS(2246), + [anon_sym_L_SQUOTE] = ACTIONS(2246), + [anon_sym_u_SQUOTE] = ACTIONS(2246), + [anon_sym_U_SQUOTE] = ACTIONS(2246), + [anon_sym_u8_SQUOTE] = ACTIONS(2246), + [anon_sym_SQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [anon_sym_NULL] = ACTIONS(2244), + [anon_sym_nullptr] = ACTIONS(2244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2244), + [anon_sym_decltype] = ACTIONS(2244), + [anon_sym_explicit] = ACTIONS(2244), + [anon_sym_typename] = ACTIONS(2244), + [anon_sym_template] = ACTIONS(2244), + [anon_sym_operator] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_static_assert] = ACTIONS(2244), + [anon_sym_concept] = ACTIONS(2244), + [anon_sym_co_return] = ACTIONS(2244), + [anon_sym_co_yield] = ACTIONS(2244), + [anon_sym_R_DQUOTE] = ACTIONS(2246), + [anon_sym_LR_DQUOTE] = ACTIONS(2246), + [anon_sym_uR_DQUOTE] = ACTIONS(2246), + [anon_sym_UR_DQUOTE] = ACTIONS(2246), + [anon_sym_u8R_DQUOTE] = ACTIONS(2246), + [anon_sym_co_await] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_requires] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [sym_alone_macro] = ACTIONS(2246), + [aux_sym_alone_macro_call_token1] = ACTIONS(2244), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2244), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_FORWARD] = ACTIONS(2244), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2244), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2244), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2244), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2244), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_PS_GET] = ACTIONS(2244), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2244), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2244), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2244), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2244), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2244), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2244), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2244), + [anon_sym_MOZ_COLD] = ACTIONS(2244), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2244), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2244), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2244), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2244), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2244), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2244), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2244), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2244), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2244), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2244), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2244), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2244), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2244), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_NONNULL] = ACTIONS(2244), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2244), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2244), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2244), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2244), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2244), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2244), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2244), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2244), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2244), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2244), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2244), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2244), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2244), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2244), + [anon_sym_MOZ_RAII] = ACTIONS(2244), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2244), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2244), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2244), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2244), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2244), + }, + [STATE(551)] = { + [ts_builtin_sym_end] = ACTIONS(2331), + [sym_identifier] = ACTIONS(2329), + [aux_sym_preproc_include_token1] = ACTIONS(2329), + [aux_sym_preproc_def_token1] = ACTIONS(2329), + [aux_sym_preproc_if_token1] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2329), + [sym_preproc_directive] = ACTIONS(2329), + [anon_sym_LPAREN2] = ACTIONS(2331), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(2331), + [anon_sym_AMP_AMP] = ACTIONS(2331), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_SEMI] = ACTIONS(2331), + [anon_sym___extension__] = ACTIONS(2329), + [anon_sym_typedef] = ACTIONS(2329), + [anon_sym_virtual] = ACTIONS(2329), + [anon_sym_extern] = ACTIONS(2329), + [anon_sym___attribute__] = ACTIONS(2329), + [anon_sym___attribute] = ACTIONS(2329), + [anon_sym_COLON_COLON] = ACTIONS(2331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2331), + [anon_sym___declspec] = ACTIONS(2329), + [anon_sym___based] = ACTIONS(2329), + [anon_sym___cdecl] = ACTIONS(2329), + [anon_sym___clrcall] = ACTIONS(2329), + [anon_sym___stdcall] = ACTIONS(2329), + [anon_sym___fastcall] = ACTIONS(2329), + [anon_sym___thiscall] = ACTIONS(2329), + [anon_sym___vectorcall] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_signed] = ACTIONS(2329), + [anon_sym_unsigned] = ACTIONS(2329), + [anon_sym_long] = ACTIONS(2329), + [anon_sym_short] = ACTIONS(2329), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_register] = ACTIONS(2329), + [anon_sym_inline] = ACTIONS(2329), + [anon_sym___inline] = ACTIONS(2329), + [anon_sym___inline__] = ACTIONS(2329), + [anon_sym___forceinline] = ACTIONS(2329), + [anon_sym_thread_local] = ACTIONS(2329), + [anon_sym___thread] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_constexpr] = ACTIONS(2329), + [anon_sym_volatile] = ACTIONS(2329), + [anon_sym_restrict] = ACTIONS(2329), + [anon_sym___restrict__] = ACTIONS(2329), + [anon_sym__Atomic] = ACTIONS(2329), + [anon_sym__Noreturn] = ACTIONS(2329), + [anon_sym_noreturn] = ACTIONS(2329), + [anon_sym__Nonnull] = ACTIONS(2329), + [anon_sym_mutable] = ACTIONS(2329), + [anon_sym_constinit] = ACTIONS(2329), + [anon_sym_consteval] = ACTIONS(2329), + [anon_sym_alignas] = ACTIONS(2329), + [anon_sym__Alignas] = ACTIONS(2329), + [sym_primitive_type] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_class] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2329), + [anon_sym_union] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_switch] = ACTIONS(2329), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_do] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_goto] = ACTIONS(2329), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(2331), + [anon_sym_PLUS_PLUS] = ACTIONS(2331), + [anon_sym_sizeof] = ACTIONS(2329), + [anon_sym___alignof__] = ACTIONS(2329), + [anon_sym___alignof] = ACTIONS(2329), + [anon_sym__alignof] = ACTIONS(2329), + [anon_sym_alignof] = ACTIONS(2329), + [anon_sym__Alignof] = ACTIONS(2329), + [anon_sym_offsetof] = ACTIONS(2329), + [anon_sym__Generic] = ACTIONS(2329), + [anon_sym_asm] = ACTIONS(2329), + [anon_sym___asm__] = ACTIONS(2329), + [anon_sym___asm] = ACTIONS(2329), + [sym_number_literal] = ACTIONS(2331), + [anon_sym_L_SQUOTE] = ACTIONS(2331), + [anon_sym_u_SQUOTE] = ACTIONS(2331), + [anon_sym_U_SQUOTE] = ACTIONS(2331), + [anon_sym_u8_SQUOTE] = ACTIONS(2331), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_L_DQUOTE] = ACTIONS(2331), + [anon_sym_u_DQUOTE] = ACTIONS(2331), + [anon_sym_U_DQUOTE] = ACTIONS(2331), + [anon_sym_u8_DQUOTE] = ACTIONS(2331), + [anon_sym_DQUOTE] = ACTIONS(2331), + [sym_true] = ACTIONS(2329), + [sym_false] = ACTIONS(2329), + [anon_sym_NULL] = ACTIONS(2329), + [anon_sym_nullptr] = ACTIONS(2329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2329), + [anon_sym_decltype] = ACTIONS(2329), + [anon_sym_explicit] = ACTIONS(2329), + [anon_sym_typename] = ACTIONS(2329), + [anon_sym_template] = ACTIONS(2329), + [anon_sym_operator] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2329), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_throw] = ACTIONS(2329), + [anon_sym_namespace] = ACTIONS(2329), + [anon_sym_using] = ACTIONS(2329), + [anon_sym_static_assert] = ACTIONS(2329), + [anon_sym_concept] = ACTIONS(2329), + [anon_sym_co_return] = ACTIONS(2329), + [anon_sym_co_yield] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2329), + [anon_sym_requires] = ACTIONS(2329), + [sym_this] = ACTIONS(2329), + [sym_alone_macro] = ACTIONS(2331), + [aux_sym_alone_macro_call_token1] = ACTIONS(2329), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2329), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_FORWARD] = ACTIONS(2329), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2329), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2329), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2329), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2329), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_PS_GET] = ACTIONS(2329), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2329), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2329), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2329), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2329), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2329), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2329), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2329), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2329), + [anon_sym_MOZ_COLD] = ACTIONS(2329), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2329), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2329), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2329), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2329), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2329), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2329), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2329), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2329), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2329), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2329), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2329), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2329), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2329), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_NONNULL] = ACTIONS(2329), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2329), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2329), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2329), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2329), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2329), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2329), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2329), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2329), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2329), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2329), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2329), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2329), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2329), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2329), + [anon_sym_MOZ_RAII] = ACTIONS(2329), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2329), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2329), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2329), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2329), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2329), + }, + [STATE(552)] = { + [sym_identifier] = ACTIONS(2454), + [aux_sym_preproc_include_token1] = ACTIONS(2454), + [aux_sym_preproc_def_token1] = ACTIONS(2454), + [aux_sym_preproc_if_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2454), + [sym_preproc_directive] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_AMP_AMP] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2454), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym___extension__] = ACTIONS(2454), + [anon_sym_typedef] = ACTIONS(2454), + [anon_sym_virtual] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym___attribute__] = ACTIONS(2454), + [anon_sym___attribute] = ACTIONS(2454), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2456), + [anon_sym___declspec] = ACTIONS(2454), + [anon_sym___based] = ACTIONS(2454), + [anon_sym___cdecl] = ACTIONS(2454), + [anon_sym___clrcall] = ACTIONS(2454), + [anon_sym___stdcall] = ACTIONS(2454), + [anon_sym___fastcall] = ACTIONS(2454), + [anon_sym___thiscall] = ACTIONS(2454), + [anon_sym___vectorcall] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_signed] = ACTIONS(2454), + [anon_sym_unsigned] = ACTIONS(2454), + [anon_sym_long] = ACTIONS(2454), + [anon_sym_short] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_inline] = ACTIONS(2454), + [anon_sym___inline] = ACTIONS(2454), + [anon_sym___inline__] = ACTIONS(2454), + [anon_sym___forceinline] = ACTIONS(2454), + [anon_sym_thread_local] = ACTIONS(2454), + [anon_sym___thread] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_constexpr] = ACTIONS(2454), + [anon_sym_volatile] = ACTIONS(2454), + [anon_sym_restrict] = ACTIONS(2454), + [anon_sym___restrict__] = ACTIONS(2454), + [anon_sym__Atomic] = ACTIONS(2454), + [anon_sym__Noreturn] = ACTIONS(2454), + [anon_sym_noreturn] = ACTIONS(2454), + [anon_sym__Nonnull] = ACTIONS(2454), + [anon_sym_mutable] = ACTIONS(2454), + [anon_sym_constinit] = ACTIONS(2454), + [anon_sym_consteval] = ACTIONS(2454), + [anon_sym_alignas] = ACTIONS(2454), + [anon_sym__Alignas] = ACTIONS(2454), + [sym_primitive_type] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_class] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_switch] = ACTIONS(2454), + [anon_sym_case] = ACTIONS(2454), + [anon_sym_default] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_goto] = ACTIONS(2454), + [anon_sym___try] = ACTIONS(2454), + [anon_sym___leave] = ACTIONS(2454), + [anon_sym_not] = ACTIONS(2454), + [anon_sym_compl] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_sizeof] = ACTIONS(2454), + [anon_sym___alignof__] = ACTIONS(2454), + [anon_sym___alignof] = ACTIONS(2454), + [anon_sym__alignof] = ACTIONS(2454), + [anon_sym_alignof] = ACTIONS(2454), + [anon_sym__Alignof] = ACTIONS(2454), + [anon_sym_offsetof] = ACTIONS(2454), + [anon_sym__Generic] = ACTIONS(2454), + [anon_sym_asm] = ACTIONS(2454), + [anon_sym___asm__] = ACTIONS(2454), + [anon_sym___asm] = ACTIONS(2454), + [sym_number_literal] = ACTIONS(2456), + [anon_sym_L_SQUOTE] = ACTIONS(2456), + [anon_sym_u_SQUOTE] = ACTIONS(2456), + [anon_sym_U_SQUOTE] = ACTIONS(2456), + [anon_sym_u8_SQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_L_DQUOTE] = ACTIONS(2456), + [anon_sym_u_DQUOTE] = ACTIONS(2456), + [anon_sym_U_DQUOTE] = ACTIONS(2456), + [anon_sym_u8_DQUOTE] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [anon_sym_NULL] = ACTIONS(2454), + [anon_sym_nullptr] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2454), + [anon_sym_decltype] = ACTIONS(2454), + [anon_sym_explicit] = ACTIONS(2454), + [anon_sym_typename] = ACTIONS(2454), + [anon_sym_template] = ACTIONS(2454), + [anon_sym_operator] = ACTIONS(2454), + [anon_sym_try] = ACTIONS(2454), + [anon_sym_delete] = ACTIONS(2454), + [anon_sym_throw] = ACTIONS(2454), + [anon_sym_namespace] = ACTIONS(2454), + [anon_sym_using] = ACTIONS(2454), + [anon_sym_static_assert] = ACTIONS(2454), + [anon_sym_concept] = ACTIONS(2454), + [anon_sym_co_return] = ACTIONS(2454), + [anon_sym_co_yield] = ACTIONS(2454), + [anon_sym_R_DQUOTE] = ACTIONS(2456), + [anon_sym_LR_DQUOTE] = ACTIONS(2456), + [anon_sym_uR_DQUOTE] = ACTIONS(2456), + [anon_sym_UR_DQUOTE] = ACTIONS(2456), + [anon_sym_u8R_DQUOTE] = ACTIONS(2456), + [anon_sym_co_await] = ACTIONS(2454), + [anon_sym_new] = ACTIONS(2454), + [anon_sym_requires] = ACTIONS(2454), + [sym_this] = ACTIONS(2454), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2454), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_FORWARD] = ACTIONS(2454), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2454), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2454), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2454), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2454), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_PS_GET] = ACTIONS(2454), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2454), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2454), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2454), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2454), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2454), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2454), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2454), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2454), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2454), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2454), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2454), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2454), + [anon_sym_MOZ_COLD] = ACTIONS(2454), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2454), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2454), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2454), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2454), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2454), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2454), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2454), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2454), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2454), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2454), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2454), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2454), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2454), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2454), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2454), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2454), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2454), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2454), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2454), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2454), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2454), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_NONNULL] = ACTIONS(2454), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2454), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2454), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2454), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2454), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2454), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_NORETURN] = ACTIONS(2454), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2454), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2454), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2454), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2454), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2454), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2454), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2454), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2454), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2454), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2454), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2454), + [anon_sym_MOZ_RAII] = ACTIONS(2454), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2454), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2454), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2454), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2454), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2454), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2454), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2454), + }, + [STATE(553)] = { + [ts_builtin_sym_end] = ACTIONS(2315), + [sym_identifier] = ACTIONS(2313), + [aux_sym_preproc_include_token1] = ACTIONS(2313), + [aux_sym_preproc_def_token1] = ACTIONS(2313), + [aux_sym_preproc_if_token1] = ACTIONS(2313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2313), + [sym_preproc_directive] = ACTIONS(2313), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(2315), + [anon_sym_AMP_AMP] = ACTIONS(2315), + [anon_sym_AMP] = ACTIONS(2313), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym___extension__] = ACTIONS(2313), + [anon_sym_typedef] = ACTIONS(2313), + [anon_sym_virtual] = ACTIONS(2313), + [anon_sym_extern] = ACTIONS(2313), + [anon_sym___attribute__] = ACTIONS(2313), + [anon_sym___attribute] = ACTIONS(2313), + [anon_sym_COLON_COLON] = ACTIONS(2315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2315), + [anon_sym___declspec] = ACTIONS(2313), + [anon_sym___based] = ACTIONS(2313), + [anon_sym___cdecl] = ACTIONS(2313), + [anon_sym___clrcall] = ACTIONS(2313), + [anon_sym___stdcall] = ACTIONS(2313), + [anon_sym___fastcall] = ACTIONS(2313), + [anon_sym___thiscall] = ACTIONS(2313), + [anon_sym___vectorcall] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_signed] = ACTIONS(2313), + [anon_sym_unsigned] = ACTIONS(2313), + [anon_sym_long] = ACTIONS(2313), + [anon_sym_short] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_static] = ACTIONS(2313), + [anon_sym_register] = ACTIONS(2313), + [anon_sym_inline] = ACTIONS(2313), + [anon_sym___inline] = ACTIONS(2313), + [anon_sym___inline__] = ACTIONS(2313), + [anon_sym___forceinline] = ACTIONS(2313), + [anon_sym_thread_local] = ACTIONS(2313), + [anon_sym___thread] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_constexpr] = ACTIONS(2313), + [anon_sym_volatile] = ACTIONS(2313), + [anon_sym_restrict] = ACTIONS(2313), + [anon_sym___restrict__] = ACTIONS(2313), + [anon_sym__Atomic] = ACTIONS(2313), + [anon_sym__Noreturn] = ACTIONS(2313), + [anon_sym_noreturn] = ACTIONS(2313), + [anon_sym__Nonnull] = ACTIONS(2313), + [anon_sym_mutable] = ACTIONS(2313), + [anon_sym_constinit] = ACTIONS(2313), + [anon_sym_consteval] = ACTIONS(2313), + [anon_sym_alignas] = ACTIONS(2313), + [anon_sym__Alignas] = ACTIONS(2313), + [sym_primitive_type] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), + [anon_sym_class] = ACTIONS(2313), + [anon_sym_struct] = ACTIONS(2313), + [anon_sym_union] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_switch] = ACTIONS(2313), + [anon_sym_case] = ACTIONS(2313), + [anon_sym_default] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_do] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_goto] = ACTIONS(2313), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2315), + [anon_sym_PLUS_PLUS] = ACTIONS(2315), + [anon_sym_sizeof] = ACTIONS(2313), + [anon_sym___alignof__] = ACTIONS(2313), + [anon_sym___alignof] = ACTIONS(2313), + [anon_sym__alignof] = ACTIONS(2313), + [anon_sym_alignof] = ACTIONS(2313), + [anon_sym__Alignof] = ACTIONS(2313), + [anon_sym_offsetof] = ACTIONS(2313), + [anon_sym__Generic] = ACTIONS(2313), + [anon_sym_asm] = ACTIONS(2313), + [anon_sym___asm__] = ACTIONS(2313), + [anon_sym___asm] = ACTIONS(2313), + [sym_number_literal] = ACTIONS(2315), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2315), + [anon_sym_u_DQUOTE] = ACTIONS(2315), + [anon_sym_U_DQUOTE] = ACTIONS(2315), + [anon_sym_u8_DQUOTE] = ACTIONS(2315), + [anon_sym_DQUOTE] = ACTIONS(2315), + [sym_true] = ACTIONS(2313), + [sym_false] = ACTIONS(2313), + [anon_sym_NULL] = ACTIONS(2313), + [anon_sym_nullptr] = ACTIONS(2313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2313), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_explicit] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(2313), + [anon_sym_operator] = ACTIONS(2313), + [anon_sym_try] = ACTIONS(2313), + [anon_sym_delete] = ACTIONS(2313), + [anon_sym_throw] = ACTIONS(2313), + [anon_sym_namespace] = ACTIONS(2313), + [anon_sym_using] = ACTIONS(2313), + [anon_sym_static_assert] = ACTIONS(2313), + [anon_sym_concept] = ACTIONS(2313), + [anon_sym_co_return] = ACTIONS(2313), + [anon_sym_co_yield] = ACTIONS(2313), + [anon_sym_R_DQUOTE] = ACTIONS(2315), + [anon_sym_LR_DQUOTE] = ACTIONS(2315), + [anon_sym_uR_DQUOTE] = ACTIONS(2315), + [anon_sym_UR_DQUOTE] = ACTIONS(2315), + [anon_sym_u8R_DQUOTE] = ACTIONS(2315), + [anon_sym_co_await] = ACTIONS(2313), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_requires] = ACTIONS(2313), + [sym_this] = ACTIONS(2313), + [sym_alone_macro] = ACTIONS(2315), + [aux_sym_alone_macro_call_token1] = ACTIONS(2313), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2313), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_FORWARD] = ACTIONS(2313), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2313), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2313), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2313), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2313), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_PS_GET] = ACTIONS(2313), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2313), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2313), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2313), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2313), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2313), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2313), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2313), + [anon_sym_MOZ_COLD] = ACTIONS(2313), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2313), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2313), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2313), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2313), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2313), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2313), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2313), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2313), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2313), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2313), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2313), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2313), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2313), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_NONNULL] = ACTIONS(2313), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2313), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2313), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2313), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2313), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2313), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2313), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2313), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2313), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2313), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2313), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2313), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2313), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2313), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2313), + [anon_sym_MOZ_RAII] = ACTIONS(2313), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2313), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2313), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2313), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2313), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2313), + }, + [STATE(554)] = { + [sym_identifier] = ACTIONS(2182), + [aux_sym_preproc_include_token1] = ACTIONS(2182), + [aux_sym_preproc_def_token1] = ACTIONS(2182), + [aux_sym_preproc_if_token1] = ACTIONS(2182), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2182), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2182), + [sym_preproc_directive] = ACTIONS(2182), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2182), + [anon_sym_PLUS] = ACTIONS(2182), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym___extension__] = ACTIONS(2182), + [anon_sym_typedef] = ACTIONS(2182), + [anon_sym_virtual] = ACTIONS(2182), + [anon_sym_extern] = ACTIONS(2182), + [anon_sym___attribute__] = ACTIONS(2182), + [anon_sym___attribute] = ACTIONS(2182), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2182), + [anon_sym___based] = ACTIONS(2182), + [anon_sym___cdecl] = ACTIONS(2182), + [anon_sym___clrcall] = ACTIONS(2182), + [anon_sym___stdcall] = ACTIONS(2182), + [anon_sym___fastcall] = ACTIONS(2182), + [anon_sym___thiscall] = ACTIONS(2182), + [anon_sym___vectorcall] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2182), + [anon_sym_unsigned] = ACTIONS(2182), + [anon_sym_long] = ACTIONS(2182), + [anon_sym_short] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_register] = ACTIONS(2182), + [anon_sym_inline] = ACTIONS(2182), + [anon_sym___inline] = ACTIONS(2182), + [anon_sym___inline__] = ACTIONS(2182), + [anon_sym___forceinline] = ACTIONS(2182), + [anon_sym_thread_local] = ACTIONS(2182), + [anon_sym___thread] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_constexpr] = ACTIONS(2182), + [anon_sym_volatile] = ACTIONS(2182), + [anon_sym_restrict] = ACTIONS(2182), + [anon_sym___restrict__] = ACTIONS(2182), + [anon_sym__Atomic] = ACTIONS(2182), + [anon_sym__Noreturn] = ACTIONS(2182), + [anon_sym_noreturn] = ACTIONS(2182), + [anon_sym__Nonnull] = ACTIONS(2182), + [anon_sym_mutable] = ACTIONS(2182), + [anon_sym_constinit] = ACTIONS(2182), + [anon_sym_consteval] = ACTIONS(2182), + [anon_sym_alignas] = ACTIONS(2182), + [anon_sym__Alignas] = ACTIONS(2182), + [sym_primitive_type] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), + [anon_sym_class] = ACTIONS(2182), + [anon_sym_struct] = ACTIONS(2182), + [anon_sym_union] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_switch] = ACTIONS(2182), + [anon_sym_case] = ACTIONS(2182), + [anon_sym_default] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_do] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_goto] = ACTIONS(2182), + [anon_sym___try] = ACTIONS(2182), + [anon_sym___leave] = ACTIONS(2182), + [anon_sym_not] = ACTIONS(2182), + [anon_sym_compl] = ACTIONS(2182), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_sizeof] = ACTIONS(2182), + [anon_sym___alignof__] = ACTIONS(2182), + [anon_sym___alignof] = ACTIONS(2182), + [anon_sym__alignof] = ACTIONS(2182), + [anon_sym_alignof] = ACTIONS(2182), + [anon_sym__Alignof] = ACTIONS(2182), + [anon_sym_offsetof] = ACTIONS(2182), + [anon_sym__Generic] = ACTIONS(2182), + [anon_sym_asm] = ACTIONS(2182), + [anon_sym___asm__] = ACTIONS(2182), + [anon_sym___asm] = ACTIONS(2182), + [sym_number_literal] = ACTIONS(2184), + [anon_sym_L_SQUOTE] = ACTIONS(2184), + [anon_sym_u_SQUOTE] = ACTIONS(2184), + [anon_sym_U_SQUOTE] = ACTIONS(2184), + [anon_sym_u8_SQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_L_DQUOTE] = ACTIONS(2184), + [anon_sym_u_DQUOTE] = ACTIONS(2184), + [anon_sym_U_DQUOTE] = ACTIONS(2184), + [anon_sym_u8_DQUOTE] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym_true] = ACTIONS(2182), + [sym_false] = ACTIONS(2182), + [anon_sym_NULL] = ACTIONS(2182), + [anon_sym_nullptr] = ACTIONS(2182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2182), + [anon_sym_decltype] = ACTIONS(2182), + [anon_sym_explicit] = ACTIONS(2182), + [anon_sym_typename] = ACTIONS(2182), + [anon_sym_template] = ACTIONS(2182), + [anon_sym_operator] = ACTIONS(2182), + [anon_sym_try] = ACTIONS(2182), + [anon_sym_delete] = ACTIONS(2182), + [anon_sym_throw] = ACTIONS(2182), + [anon_sym_namespace] = ACTIONS(2182), + [anon_sym_using] = ACTIONS(2182), + [anon_sym_static_assert] = ACTIONS(2182), + [anon_sym_concept] = ACTIONS(2182), + [anon_sym_co_return] = ACTIONS(2182), + [anon_sym_co_yield] = ACTIONS(2182), + [anon_sym_R_DQUOTE] = ACTIONS(2184), + [anon_sym_LR_DQUOTE] = ACTIONS(2184), + [anon_sym_uR_DQUOTE] = ACTIONS(2184), + [anon_sym_UR_DQUOTE] = ACTIONS(2184), + [anon_sym_u8R_DQUOTE] = ACTIONS(2184), + [anon_sym_co_await] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2182), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2182), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2182), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_FORWARD] = ACTIONS(2182), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2182), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2182), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2182), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2182), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_PS_GET] = ACTIONS(2182), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2182), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2182), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2182), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2182), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2182), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2182), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2182), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2182), + [anon_sym_MOZ_COLD] = ACTIONS(2182), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2182), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2182), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2182), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2182), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2182), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2182), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2182), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2182), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2182), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2182), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2182), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2182), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2182), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_NONNULL] = ACTIONS(2182), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2182), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2182), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2182), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2182), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2182), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2182), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2182), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2182), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2182), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2182), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2182), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2182), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2182), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2182), + [anon_sym_MOZ_RAII] = ACTIONS(2182), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2182), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2182), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2182), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2182), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2182), + }, + [STATE(555)] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_include_token1] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym___attribute] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2188), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym___cdecl] = ACTIONS(2186), + [anon_sym___clrcall] = ACTIONS(2186), + [anon_sym___stdcall] = ACTIONS(2186), + [anon_sym___fastcall] = ACTIONS(2186), + [anon_sym___thiscall] = ACTIONS(2186), + [anon_sym___vectorcall] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym__Nonnull] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym__Alignas] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_switch] = ACTIONS(2186), + [anon_sym_case] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_goto] = ACTIONS(2186), + [anon_sym___try] = ACTIONS(2186), + [anon_sym___leave] = ACTIONS(2186), + [anon_sym_not] = ACTIONS(2186), + [anon_sym_compl] = ACTIONS(2186), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_sizeof] = ACTIONS(2186), + [anon_sym___alignof__] = ACTIONS(2186), + [anon_sym___alignof] = ACTIONS(2186), + [anon_sym__alignof] = ACTIONS(2186), + [anon_sym_alignof] = ACTIONS(2186), + [anon_sym__Alignof] = ACTIONS(2186), + [anon_sym_offsetof] = ACTIONS(2186), + [anon_sym__Generic] = ACTIONS(2186), + [anon_sym_asm] = ACTIONS(2186), + [anon_sym___asm__] = ACTIONS(2186), + [anon_sym___asm] = ACTIONS(2186), + [sym_number_literal] = ACTIONS(2188), + [anon_sym_L_SQUOTE] = ACTIONS(2188), + [anon_sym_u_SQUOTE] = ACTIONS(2188), + [anon_sym_U_SQUOTE] = ACTIONS(2188), + [anon_sym_u8_SQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_L_DQUOTE] = ACTIONS(2188), + [anon_sym_u_DQUOTE] = ACTIONS(2188), + [anon_sym_U_DQUOTE] = ACTIONS(2188), + [anon_sym_u8_DQUOTE] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(2188), + [sym_true] = ACTIONS(2186), + [sym_false] = ACTIONS(2186), + [anon_sym_NULL] = ACTIONS(2186), + [anon_sym_nullptr] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_delete] = ACTIONS(2186), + [anon_sym_throw] = ACTIONS(2186), + [anon_sym_namespace] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [anon_sym_concept] = ACTIONS(2186), + [anon_sym_co_return] = ACTIONS(2186), + [anon_sym_co_yield] = ACTIONS(2186), + [anon_sym_R_DQUOTE] = ACTIONS(2188), + [anon_sym_LR_DQUOTE] = ACTIONS(2188), + [anon_sym_uR_DQUOTE] = ACTIONS(2188), + [anon_sym_UR_DQUOTE] = ACTIONS(2188), + [anon_sym_u8R_DQUOTE] = ACTIONS(2188), + [anon_sym_co_await] = ACTIONS(2186), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2186), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2186), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_FORWARD] = ACTIONS(2186), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2186), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2186), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2186), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2186), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_PS_GET] = ACTIONS(2186), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2186), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2186), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2186), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2186), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2186), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2186), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2186), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2186), + [anon_sym_MOZ_COLD] = ACTIONS(2186), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2186), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2186), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2186), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2186), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2186), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2186), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2186), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2186), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2186), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2186), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2186), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2186), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2186), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_NONNULL] = ACTIONS(2186), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2186), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2186), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2186), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2186), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2186), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2186), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2186), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2186), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2186), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2186), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2186), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2186), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2186), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2186), + [anon_sym_MOZ_RAII] = ACTIONS(2186), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2186), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2186), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2186), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2186), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2186), + }, + [STATE(556)] = { + [sym_identifier] = ACTIONS(2190), + [aux_sym_preproc_include_token1] = ACTIONS(2190), + [aux_sym_preproc_def_token1] = ACTIONS(2190), + [aux_sym_preproc_if_token1] = ACTIONS(2190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2190), + [sym_preproc_directive] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym___extension__] = ACTIONS(2190), + [anon_sym_typedef] = ACTIONS(2190), + [anon_sym_virtual] = ACTIONS(2190), + [anon_sym_extern] = ACTIONS(2190), + [anon_sym___attribute__] = ACTIONS(2190), + [anon_sym___attribute] = ACTIONS(2190), + [anon_sym_COLON_COLON] = ACTIONS(2192), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), + [anon_sym___declspec] = ACTIONS(2190), + [anon_sym___based] = ACTIONS(2190), + [anon_sym___cdecl] = ACTIONS(2190), + [anon_sym___clrcall] = ACTIONS(2190), + [anon_sym___stdcall] = ACTIONS(2190), + [anon_sym___fastcall] = ACTIONS(2190), + [anon_sym___thiscall] = ACTIONS(2190), + [anon_sym___vectorcall] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_signed] = ACTIONS(2190), + [anon_sym_unsigned] = ACTIONS(2190), + [anon_sym_long] = ACTIONS(2190), + [anon_sym_short] = ACTIONS(2190), + [anon_sym_LBRACK] = ACTIONS(2190), + [anon_sym_static] = ACTIONS(2190), + [anon_sym_register] = ACTIONS(2190), + [anon_sym_inline] = ACTIONS(2190), + [anon_sym___inline] = ACTIONS(2190), + [anon_sym___inline__] = ACTIONS(2190), + [anon_sym___forceinline] = ACTIONS(2190), + [anon_sym_thread_local] = ACTIONS(2190), + [anon_sym___thread] = ACTIONS(2190), + [anon_sym_const] = ACTIONS(2190), + [anon_sym_constexpr] = ACTIONS(2190), + [anon_sym_volatile] = ACTIONS(2190), + [anon_sym_restrict] = ACTIONS(2190), + [anon_sym___restrict__] = ACTIONS(2190), + [anon_sym__Atomic] = ACTIONS(2190), + [anon_sym__Noreturn] = ACTIONS(2190), + [anon_sym_noreturn] = ACTIONS(2190), + [anon_sym__Nonnull] = ACTIONS(2190), + [anon_sym_mutable] = ACTIONS(2190), + [anon_sym_constinit] = ACTIONS(2190), + [anon_sym_consteval] = ACTIONS(2190), + [anon_sym_alignas] = ACTIONS(2190), + [anon_sym__Alignas] = ACTIONS(2190), + [sym_primitive_type] = ACTIONS(2190), + [anon_sym_enum] = ACTIONS(2190), + [anon_sym_class] = ACTIONS(2190), + [anon_sym_struct] = ACTIONS(2190), + [anon_sym_union] = ACTIONS(2190), + [anon_sym_if] = ACTIONS(2190), + [anon_sym_switch] = ACTIONS(2190), + [anon_sym_case] = ACTIONS(2190), + [anon_sym_default] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2190), + [anon_sym_do] = ACTIONS(2190), + [anon_sym_for] = ACTIONS(2190), + [anon_sym_return] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_goto] = ACTIONS(2190), + [anon_sym___try] = ACTIONS(2190), + [anon_sym___leave] = ACTIONS(2190), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2192), + [anon_sym_PLUS_PLUS] = ACTIONS(2192), + [anon_sym_sizeof] = ACTIONS(2190), + [anon_sym___alignof__] = ACTIONS(2190), + [anon_sym___alignof] = ACTIONS(2190), + [anon_sym__alignof] = ACTIONS(2190), + [anon_sym_alignof] = ACTIONS(2190), + [anon_sym__Alignof] = ACTIONS(2190), + [anon_sym_offsetof] = ACTIONS(2190), + [anon_sym__Generic] = ACTIONS(2190), + [anon_sym_asm] = ACTIONS(2190), + [anon_sym___asm__] = ACTIONS(2190), + [anon_sym___asm] = ACTIONS(2190), + [sym_number_literal] = ACTIONS(2192), + [anon_sym_L_SQUOTE] = ACTIONS(2192), + [anon_sym_u_SQUOTE] = ACTIONS(2192), + [anon_sym_U_SQUOTE] = ACTIONS(2192), + [anon_sym_u8_SQUOTE] = ACTIONS(2192), + [anon_sym_SQUOTE] = ACTIONS(2192), + [anon_sym_L_DQUOTE] = ACTIONS(2192), + [anon_sym_u_DQUOTE] = ACTIONS(2192), + [anon_sym_U_DQUOTE] = ACTIONS(2192), + [anon_sym_u8_DQUOTE] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [sym_true] = ACTIONS(2190), + [sym_false] = ACTIONS(2190), + [anon_sym_NULL] = ACTIONS(2190), + [anon_sym_nullptr] = ACTIONS(2190), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2190), + [anon_sym_decltype] = ACTIONS(2190), + [anon_sym_explicit] = ACTIONS(2190), + [anon_sym_typename] = ACTIONS(2190), + [anon_sym_template] = ACTIONS(2190), + [anon_sym_operator] = ACTIONS(2190), + [anon_sym_try] = ACTIONS(2190), + [anon_sym_delete] = ACTIONS(2190), + [anon_sym_throw] = ACTIONS(2190), + [anon_sym_namespace] = ACTIONS(2190), + [anon_sym_using] = ACTIONS(2190), + [anon_sym_static_assert] = ACTIONS(2190), + [anon_sym_concept] = ACTIONS(2190), + [anon_sym_co_return] = ACTIONS(2190), + [anon_sym_co_yield] = ACTIONS(2190), + [anon_sym_R_DQUOTE] = ACTIONS(2192), + [anon_sym_LR_DQUOTE] = ACTIONS(2192), + [anon_sym_uR_DQUOTE] = ACTIONS(2192), + [anon_sym_UR_DQUOTE] = ACTIONS(2192), + [anon_sym_u8R_DQUOTE] = ACTIONS(2192), + [anon_sym_co_await] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(2190), + [anon_sym_requires] = ACTIONS(2190), + [sym_this] = ACTIONS(2190), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2190), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_FORWARD] = ACTIONS(2190), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2190), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2190), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2190), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2190), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_PS_GET] = ACTIONS(2190), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2190), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2190), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2190), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2190), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2190), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2190), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2190), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2190), + [anon_sym_MOZ_COLD] = ACTIONS(2190), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2190), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2190), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2190), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2190), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2190), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2190), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2190), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2190), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2190), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2190), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2190), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2190), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2190), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_NONNULL] = ACTIONS(2190), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2190), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2190), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2190), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2190), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2190), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2190), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2190), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2190), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2190), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2190), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2190), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2190), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2190), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2190), + [anon_sym_MOZ_RAII] = ACTIONS(2190), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2190), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2190), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2190), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2190), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2190), + }, + [STATE(557)] = { + [sym_identifier] = ACTIONS(2194), + [aux_sym_preproc_include_token1] = ACTIONS(2194), + [aux_sym_preproc_def_token1] = ACTIONS(2194), + [aux_sym_preproc_if_token1] = ACTIONS(2194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), + [sym_preproc_directive] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2196), + [anon_sym_TILDE] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym___extension__] = ACTIONS(2194), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_virtual] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(2194), + [anon_sym___attribute__] = ACTIONS(2194), + [anon_sym___attribute] = ACTIONS(2194), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2196), + [anon_sym___declspec] = ACTIONS(2194), + [anon_sym___based] = ACTIONS(2194), + [anon_sym___cdecl] = ACTIONS(2194), + [anon_sym___clrcall] = ACTIONS(2194), + [anon_sym___stdcall] = ACTIONS(2194), + [anon_sym___fastcall] = ACTIONS(2194), + [anon_sym___thiscall] = ACTIONS(2194), + [anon_sym___vectorcall] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_signed] = ACTIONS(2194), + [anon_sym_unsigned] = ACTIONS(2194), + [anon_sym_long] = ACTIONS(2194), + [anon_sym_short] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2194), + [anon_sym_static] = ACTIONS(2194), + [anon_sym_register] = ACTIONS(2194), + [anon_sym_inline] = ACTIONS(2194), + [anon_sym___inline] = ACTIONS(2194), + [anon_sym___inline__] = ACTIONS(2194), + [anon_sym___forceinline] = ACTIONS(2194), + [anon_sym_thread_local] = ACTIONS(2194), + [anon_sym___thread] = ACTIONS(2194), + [anon_sym_const] = ACTIONS(2194), + [anon_sym_constexpr] = ACTIONS(2194), + [anon_sym_volatile] = ACTIONS(2194), + [anon_sym_restrict] = ACTIONS(2194), + [anon_sym___restrict__] = ACTIONS(2194), + [anon_sym__Atomic] = ACTIONS(2194), + [anon_sym__Noreturn] = ACTIONS(2194), + [anon_sym_noreturn] = ACTIONS(2194), + [anon_sym__Nonnull] = ACTIONS(2194), + [anon_sym_mutable] = ACTIONS(2194), + [anon_sym_constinit] = ACTIONS(2194), + [anon_sym_consteval] = ACTIONS(2194), + [anon_sym_alignas] = ACTIONS(2194), + [anon_sym__Alignas] = ACTIONS(2194), + [sym_primitive_type] = ACTIONS(2194), + [anon_sym_enum] = ACTIONS(2194), + [anon_sym_class] = ACTIONS(2194), + [anon_sym_struct] = ACTIONS(2194), + [anon_sym_union] = ACTIONS(2194), + [anon_sym_if] = ACTIONS(2194), + [anon_sym_switch] = ACTIONS(2194), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2194), + [anon_sym_while] = ACTIONS(2194), + [anon_sym_do] = ACTIONS(2194), + [anon_sym_for] = ACTIONS(2194), + [anon_sym_return] = ACTIONS(2194), + [anon_sym_break] = ACTIONS(2194), + [anon_sym_continue] = ACTIONS(2194), + [anon_sym_goto] = ACTIONS(2194), + [anon_sym___try] = ACTIONS(2194), + [anon_sym___leave] = ACTIONS(2194), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_compl] = ACTIONS(2194), + [anon_sym_DASH_DASH] = ACTIONS(2196), + [anon_sym_PLUS_PLUS] = ACTIONS(2196), + [anon_sym_sizeof] = ACTIONS(2194), + [anon_sym___alignof__] = ACTIONS(2194), + [anon_sym___alignof] = ACTIONS(2194), + [anon_sym__alignof] = ACTIONS(2194), + [anon_sym_alignof] = ACTIONS(2194), + [anon_sym__Alignof] = ACTIONS(2194), + [anon_sym_offsetof] = ACTIONS(2194), + [anon_sym__Generic] = ACTIONS(2194), + [anon_sym_asm] = ACTIONS(2194), + [anon_sym___asm__] = ACTIONS(2194), + [anon_sym___asm] = ACTIONS(2194), + [sym_number_literal] = ACTIONS(2196), + [anon_sym_L_SQUOTE] = ACTIONS(2196), + [anon_sym_u_SQUOTE] = ACTIONS(2196), + [anon_sym_U_SQUOTE] = ACTIONS(2196), + [anon_sym_u8_SQUOTE] = ACTIONS(2196), + [anon_sym_SQUOTE] = ACTIONS(2196), + [anon_sym_L_DQUOTE] = ACTIONS(2196), + [anon_sym_u_DQUOTE] = ACTIONS(2196), + [anon_sym_U_DQUOTE] = ACTIONS(2196), + [anon_sym_u8_DQUOTE] = ACTIONS(2196), + [anon_sym_DQUOTE] = ACTIONS(2196), + [sym_true] = ACTIONS(2194), + [sym_false] = ACTIONS(2194), + [anon_sym_NULL] = ACTIONS(2194), + [anon_sym_nullptr] = ACTIONS(2194), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2194), + [anon_sym_decltype] = ACTIONS(2194), + [anon_sym_explicit] = ACTIONS(2194), + [anon_sym_typename] = ACTIONS(2194), + [anon_sym_template] = ACTIONS(2194), + [anon_sym_operator] = ACTIONS(2194), + [anon_sym_try] = ACTIONS(2194), + [anon_sym_delete] = ACTIONS(2194), + [anon_sym_throw] = ACTIONS(2194), + [anon_sym_namespace] = ACTIONS(2194), + [anon_sym_using] = ACTIONS(2194), + [anon_sym_static_assert] = ACTIONS(2194), + [anon_sym_concept] = ACTIONS(2194), + [anon_sym_co_return] = ACTIONS(2194), + [anon_sym_co_yield] = ACTIONS(2194), + [anon_sym_R_DQUOTE] = ACTIONS(2196), + [anon_sym_LR_DQUOTE] = ACTIONS(2196), + [anon_sym_uR_DQUOTE] = ACTIONS(2196), + [anon_sym_UR_DQUOTE] = ACTIONS(2196), + [anon_sym_u8R_DQUOTE] = ACTIONS(2196), + [anon_sym_co_await] = ACTIONS(2194), + [anon_sym_new] = ACTIONS(2194), + [anon_sym_requires] = ACTIONS(2194), + [sym_this] = ACTIONS(2194), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2194), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_FORWARD] = ACTIONS(2194), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2194), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2194), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2194), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2194), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_PS_GET] = ACTIONS(2194), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2194), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2194), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2194), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2194), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2194), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2194), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2194), + [anon_sym_MOZ_COLD] = ACTIONS(2194), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2194), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2194), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2194), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2194), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2194), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2194), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2194), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2194), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2194), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2194), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2194), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2194), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2194), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_NONNULL] = ACTIONS(2194), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2194), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2194), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2194), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2194), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2194), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2194), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2194), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2194), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2194), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2194), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2194), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2194), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2194), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2194), + [anon_sym_MOZ_RAII] = ACTIONS(2194), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2194), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2194), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2194), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2194), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2194), + }, + [STATE(558)] = { + [sym_identifier] = ACTIONS(2198), + [aux_sym_preproc_include_token1] = ACTIONS(2198), + [aux_sym_preproc_def_token1] = ACTIONS(2198), + [aux_sym_preproc_if_token1] = ACTIONS(2198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2198), + [sym_preproc_directive] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2198), + [anon_sym_PLUS] = ACTIONS(2198), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_AMP_AMP] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym___extension__] = ACTIONS(2198), + [anon_sym_typedef] = ACTIONS(2198), + [anon_sym_virtual] = ACTIONS(2198), + [anon_sym_extern] = ACTIONS(2198), + [anon_sym___attribute__] = ACTIONS(2198), + [anon_sym___attribute] = ACTIONS(2198), + [anon_sym_COLON_COLON] = ACTIONS(2200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2200), + [anon_sym___declspec] = ACTIONS(2198), + [anon_sym___based] = ACTIONS(2198), + [anon_sym___cdecl] = ACTIONS(2198), + [anon_sym___clrcall] = ACTIONS(2198), + [anon_sym___stdcall] = ACTIONS(2198), + [anon_sym___fastcall] = ACTIONS(2198), + [anon_sym___thiscall] = ACTIONS(2198), + [anon_sym___vectorcall] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_signed] = ACTIONS(2198), + [anon_sym_unsigned] = ACTIONS(2198), + [anon_sym_long] = ACTIONS(2198), + [anon_sym_short] = ACTIONS(2198), + [anon_sym_LBRACK] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_register] = ACTIONS(2198), + [anon_sym_inline] = ACTIONS(2198), + [anon_sym___inline] = ACTIONS(2198), + [anon_sym___inline__] = ACTIONS(2198), + [anon_sym___forceinline] = ACTIONS(2198), + [anon_sym_thread_local] = ACTIONS(2198), + [anon_sym___thread] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_constexpr] = ACTIONS(2198), + [anon_sym_volatile] = ACTIONS(2198), + [anon_sym_restrict] = ACTIONS(2198), + [anon_sym___restrict__] = ACTIONS(2198), + [anon_sym__Atomic] = ACTIONS(2198), + [anon_sym__Noreturn] = ACTIONS(2198), + [anon_sym_noreturn] = ACTIONS(2198), + [anon_sym__Nonnull] = ACTIONS(2198), + [anon_sym_mutable] = ACTIONS(2198), + [anon_sym_constinit] = ACTIONS(2198), + [anon_sym_consteval] = ACTIONS(2198), + [anon_sym_alignas] = ACTIONS(2198), + [anon_sym__Alignas] = ACTIONS(2198), + [sym_primitive_type] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), + [anon_sym_class] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(2198), + [anon_sym_union] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2198), + [anon_sym_switch] = ACTIONS(2198), + [anon_sym_case] = ACTIONS(2198), + [anon_sym_default] = ACTIONS(2198), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(2198), + [anon_sym_for] = ACTIONS(2198), + [anon_sym_return] = ACTIONS(2198), + [anon_sym_break] = ACTIONS(2198), + [anon_sym_continue] = ACTIONS(2198), + [anon_sym_goto] = ACTIONS(2198), + [anon_sym___try] = ACTIONS(2198), + [anon_sym___leave] = ACTIONS(2198), + [anon_sym_not] = ACTIONS(2198), + [anon_sym_compl] = ACTIONS(2198), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [anon_sym_PLUS_PLUS] = ACTIONS(2200), + [anon_sym_sizeof] = ACTIONS(2198), + [anon_sym___alignof__] = ACTIONS(2198), + [anon_sym___alignof] = ACTIONS(2198), + [anon_sym__alignof] = ACTIONS(2198), + [anon_sym_alignof] = ACTIONS(2198), + [anon_sym__Alignof] = ACTIONS(2198), + [anon_sym_offsetof] = ACTIONS(2198), + [anon_sym__Generic] = ACTIONS(2198), + [anon_sym_asm] = ACTIONS(2198), + [anon_sym___asm__] = ACTIONS(2198), + [anon_sym___asm] = ACTIONS(2198), + [sym_number_literal] = ACTIONS(2200), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2200), + [anon_sym_u_DQUOTE] = ACTIONS(2200), + [anon_sym_U_DQUOTE] = ACTIONS(2200), + [anon_sym_u8_DQUOTE] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [sym_true] = ACTIONS(2198), + [sym_false] = ACTIONS(2198), + [anon_sym_NULL] = ACTIONS(2198), + [anon_sym_nullptr] = ACTIONS(2198), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2198), + [anon_sym_decltype] = ACTIONS(2198), + [anon_sym_explicit] = ACTIONS(2198), + [anon_sym_typename] = ACTIONS(2198), + [anon_sym_template] = ACTIONS(2198), + [anon_sym_operator] = ACTIONS(2198), + [anon_sym_try] = ACTIONS(2198), + [anon_sym_delete] = ACTIONS(2198), + [anon_sym_throw] = ACTIONS(2198), + [anon_sym_namespace] = ACTIONS(2198), + [anon_sym_using] = ACTIONS(2198), + [anon_sym_static_assert] = ACTIONS(2198), + [anon_sym_concept] = ACTIONS(2198), + [anon_sym_co_return] = ACTIONS(2198), + [anon_sym_co_yield] = ACTIONS(2198), + [anon_sym_R_DQUOTE] = ACTIONS(2200), + [anon_sym_LR_DQUOTE] = ACTIONS(2200), + [anon_sym_uR_DQUOTE] = ACTIONS(2200), + [anon_sym_UR_DQUOTE] = ACTIONS(2200), + [anon_sym_u8R_DQUOTE] = ACTIONS(2200), + [anon_sym_co_await] = ACTIONS(2198), + [anon_sym_new] = ACTIONS(2198), + [anon_sym_requires] = ACTIONS(2198), + [sym_this] = ACTIONS(2198), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2198), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_FORWARD] = ACTIONS(2198), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2198), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2198), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2198), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2198), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_PS_GET] = ACTIONS(2198), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2198), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2198), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2198), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2198), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2198), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2198), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2198), + [anon_sym_MOZ_COLD] = ACTIONS(2198), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2198), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2198), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2198), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2198), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2198), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2198), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2198), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2198), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2198), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2198), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2198), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2198), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2198), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_NONNULL] = ACTIONS(2198), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2198), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2198), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2198), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2198), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2198), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2198), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2198), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2198), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2198), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2198), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2198), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2198), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2198), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2198), + [anon_sym_MOZ_RAII] = ACTIONS(2198), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2198), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2198), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2198), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2198), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2198), + }, + [STATE(559)] = { + [sym_identifier] = ACTIONS(2256), + [aux_sym_preproc_include_token1] = ACTIONS(2256), + [aux_sym_preproc_def_token1] = ACTIONS(2256), + [aux_sym_preproc_if_token1] = ACTIONS(2256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2256), + [sym_preproc_directive] = ACTIONS(2256), + [anon_sym_LPAREN2] = ACTIONS(2258), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_STAR] = ACTIONS(2258), + [anon_sym_AMP_AMP] = ACTIONS(2258), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym___extension__] = ACTIONS(2256), + [anon_sym_typedef] = ACTIONS(2256), + [anon_sym_virtual] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym_COLON_COLON] = ACTIONS(2258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2258), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym___based] = ACTIONS(2256), + [anon_sym___cdecl] = ACTIONS(2256), + [anon_sym___clrcall] = ACTIONS(2256), + [anon_sym___stdcall] = ACTIONS(2256), + [anon_sym___fastcall] = ACTIONS(2256), + [anon_sym___thiscall] = ACTIONS(2256), + [anon_sym___vectorcall] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(2258), + [anon_sym_RBRACE] = ACTIONS(2258), + [anon_sym_signed] = ACTIONS(2256), + [anon_sym_unsigned] = ACTIONS(2256), + [anon_sym_long] = ACTIONS(2256), + [anon_sym_short] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2256), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [anon_sym___inline] = ACTIONS(2256), + [anon_sym___inline__] = ACTIONS(2256), + [anon_sym___forceinline] = ACTIONS(2256), + [anon_sym_thread_local] = ACTIONS(2256), + [anon_sym___thread] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_constexpr] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym___restrict__] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym__Noreturn] = ACTIONS(2256), + [anon_sym_noreturn] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym_mutable] = ACTIONS(2256), + [anon_sym_constinit] = ACTIONS(2256), + [anon_sym_consteval] = ACTIONS(2256), + [anon_sym_alignas] = ACTIONS(2256), + [anon_sym__Alignas] = ACTIONS(2256), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_class] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_switch] = ACTIONS(2256), + [anon_sym_case] = ACTIONS(2256), + [anon_sym_default] = ACTIONS(2256), + [anon_sym_while] = ACTIONS(2256), + [anon_sym_do] = ACTIONS(2256), + [anon_sym_for] = ACTIONS(2256), + [anon_sym_return] = ACTIONS(2256), + [anon_sym_break] = ACTIONS(2256), + [anon_sym_continue] = ACTIONS(2256), + [anon_sym_goto] = ACTIONS(2256), + [anon_sym___try] = ACTIONS(2256), + [anon_sym___leave] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2256), + [anon_sym_compl] = ACTIONS(2256), + [anon_sym_DASH_DASH] = ACTIONS(2258), + [anon_sym_PLUS_PLUS] = ACTIONS(2258), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2256), + [anon_sym___alignof] = ACTIONS(2256), + [anon_sym__alignof] = ACTIONS(2256), + [anon_sym_alignof] = ACTIONS(2256), + [anon_sym__Alignof] = ACTIONS(2256), + [anon_sym_offsetof] = ACTIONS(2256), + [anon_sym__Generic] = ACTIONS(2256), + [anon_sym_asm] = ACTIONS(2256), + [anon_sym___asm__] = ACTIONS(2256), + [anon_sym___asm] = ACTIONS(2256), + [sym_number_literal] = ACTIONS(2258), + [anon_sym_L_SQUOTE] = ACTIONS(2258), + [anon_sym_u_SQUOTE] = ACTIONS(2258), + [anon_sym_U_SQUOTE] = ACTIONS(2258), + [anon_sym_u8_SQUOTE] = ACTIONS(2258), + [anon_sym_SQUOTE] = ACTIONS(2258), + [anon_sym_L_DQUOTE] = ACTIONS(2258), + [anon_sym_u_DQUOTE] = ACTIONS(2258), + [anon_sym_U_DQUOTE] = ACTIONS(2258), + [anon_sym_u8_DQUOTE] = ACTIONS(2258), + [anon_sym_DQUOTE] = ACTIONS(2258), + [sym_true] = ACTIONS(2256), + [sym_false] = ACTIONS(2256), + [anon_sym_NULL] = ACTIONS(2256), + [anon_sym_nullptr] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2256), + [anon_sym_decltype] = ACTIONS(2256), + [anon_sym_explicit] = ACTIONS(2256), + [anon_sym_typename] = ACTIONS(2256), + [anon_sym_template] = ACTIONS(2256), + [anon_sym_operator] = ACTIONS(2256), + [anon_sym_try] = ACTIONS(2256), + [anon_sym_delete] = ACTIONS(2256), + [anon_sym_throw] = ACTIONS(2256), + [anon_sym_namespace] = ACTIONS(2256), + [anon_sym_using] = ACTIONS(2256), + [anon_sym_static_assert] = ACTIONS(2256), + [anon_sym_concept] = ACTIONS(2256), + [anon_sym_co_return] = ACTIONS(2256), + [anon_sym_co_yield] = ACTIONS(2256), + [anon_sym_R_DQUOTE] = ACTIONS(2258), + [anon_sym_LR_DQUOTE] = ACTIONS(2258), + [anon_sym_uR_DQUOTE] = ACTIONS(2258), + [anon_sym_UR_DQUOTE] = ACTIONS(2258), + [anon_sym_u8R_DQUOTE] = ACTIONS(2258), + [anon_sym_co_await] = ACTIONS(2256), + [anon_sym_new] = ACTIONS(2256), + [anon_sym_requires] = ACTIONS(2256), + [sym_this] = ACTIONS(2256), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2256), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_FORWARD] = ACTIONS(2256), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2256), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2256), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2256), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_PS_GET] = ACTIONS(2256), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2256), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2256), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2256), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2256), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2256), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2256), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2256), + [anon_sym_MOZ_COLD] = ACTIONS(2256), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2256), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2256), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2256), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2256), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2256), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2256), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2256), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2256), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2256), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2256), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2256), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2256), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2256), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_NONNULL] = ACTIONS(2256), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2256), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2256), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2256), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2256), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2256), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2256), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2256), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2256), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2256), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2256), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2256), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2256), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2256), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2256), + [anon_sym_MOZ_RAII] = ACTIONS(2256), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2256), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2256), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2256), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2256), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2256), + }, + [STATE(560)] = { + [sym_identifier] = ACTIONS(2206), + [aux_sym_preproc_include_token1] = ACTIONS(2206), + [aux_sym_preproc_def_token1] = ACTIONS(2206), + [aux_sym_preproc_if_token1] = ACTIONS(2206), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2206), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2206), + [sym_preproc_directive] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_PLUS] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym___extension__] = ACTIONS(2206), + [anon_sym_typedef] = ACTIONS(2206), + [anon_sym_virtual] = ACTIONS(2206), + [anon_sym_extern] = ACTIONS(2206), + [anon_sym___attribute__] = ACTIONS(2206), + [anon_sym___attribute] = ACTIONS(2206), + [anon_sym_COLON_COLON] = ACTIONS(2208), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2208), + [anon_sym___declspec] = ACTIONS(2206), + [anon_sym___based] = ACTIONS(2206), + [anon_sym___cdecl] = ACTIONS(2206), + [anon_sym___clrcall] = ACTIONS(2206), + [anon_sym___stdcall] = ACTIONS(2206), + [anon_sym___fastcall] = ACTIONS(2206), + [anon_sym___thiscall] = ACTIONS(2206), + [anon_sym___vectorcall] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_signed] = ACTIONS(2206), + [anon_sym_unsigned] = ACTIONS(2206), + [anon_sym_long] = ACTIONS(2206), + [anon_sym_short] = ACTIONS(2206), + [anon_sym_LBRACK] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_register] = ACTIONS(2206), + [anon_sym_inline] = ACTIONS(2206), + [anon_sym___inline] = ACTIONS(2206), + [anon_sym___inline__] = ACTIONS(2206), + [anon_sym___forceinline] = ACTIONS(2206), + [anon_sym_thread_local] = ACTIONS(2206), + [anon_sym___thread] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_constexpr] = ACTIONS(2206), + [anon_sym_volatile] = ACTIONS(2206), + [anon_sym_restrict] = ACTIONS(2206), + [anon_sym___restrict__] = ACTIONS(2206), + [anon_sym__Atomic] = ACTIONS(2206), + [anon_sym__Noreturn] = ACTIONS(2206), + [anon_sym_noreturn] = ACTIONS(2206), + [anon_sym__Nonnull] = ACTIONS(2206), + [anon_sym_mutable] = ACTIONS(2206), + [anon_sym_constinit] = ACTIONS(2206), + [anon_sym_consteval] = ACTIONS(2206), + [anon_sym_alignas] = ACTIONS(2206), + [anon_sym__Alignas] = ACTIONS(2206), + [sym_primitive_type] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_class] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_switch] = ACTIONS(2206), + [anon_sym_case] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [anon_sym_do] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_goto] = ACTIONS(2206), + [anon_sym___try] = ACTIONS(2206), + [anon_sym___leave] = ACTIONS(2206), + [anon_sym_not] = ACTIONS(2206), + [anon_sym_compl] = ACTIONS(2206), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_sizeof] = ACTIONS(2206), + [anon_sym___alignof__] = ACTIONS(2206), + [anon_sym___alignof] = ACTIONS(2206), + [anon_sym__alignof] = ACTIONS(2206), + [anon_sym_alignof] = ACTIONS(2206), + [anon_sym__Alignof] = ACTIONS(2206), + [anon_sym_offsetof] = ACTIONS(2206), + [anon_sym__Generic] = ACTIONS(2206), + [anon_sym_asm] = ACTIONS(2206), + [anon_sym___asm__] = ACTIONS(2206), + [anon_sym___asm] = ACTIONS(2206), + [sym_number_literal] = ACTIONS(2208), + [anon_sym_L_SQUOTE] = ACTIONS(2208), + [anon_sym_u_SQUOTE] = ACTIONS(2208), + [anon_sym_U_SQUOTE] = ACTIONS(2208), + [anon_sym_u8_SQUOTE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_L_DQUOTE] = ACTIONS(2208), + [anon_sym_u_DQUOTE] = ACTIONS(2208), + [anon_sym_U_DQUOTE] = ACTIONS(2208), + [anon_sym_u8_DQUOTE] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2208), + [sym_true] = ACTIONS(2206), + [sym_false] = ACTIONS(2206), + [anon_sym_NULL] = ACTIONS(2206), + [anon_sym_nullptr] = ACTIONS(2206), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2206), + [anon_sym_decltype] = ACTIONS(2206), + [anon_sym_explicit] = ACTIONS(2206), + [anon_sym_typename] = ACTIONS(2206), + [anon_sym_template] = ACTIONS(2206), + [anon_sym_operator] = ACTIONS(2206), + [anon_sym_try] = ACTIONS(2206), + [anon_sym_delete] = ACTIONS(2206), + [anon_sym_throw] = ACTIONS(2206), + [anon_sym_namespace] = ACTIONS(2206), + [anon_sym_using] = ACTIONS(2206), + [anon_sym_static_assert] = ACTIONS(2206), + [anon_sym_concept] = ACTIONS(2206), + [anon_sym_co_return] = ACTIONS(2206), + [anon_sym_co_yield] = ACTIONS(2206), + [anon_sym_R_DQUOTE] = ACTIONS(2208), + [anon_sym_LR_DQUOTE] = ACTIONS(2208), + [anon_sym_uR_DQUOTE] = ACTIONS(2208), + [anon_sym_UR_DQUOTE] = ACTIONS(2208), + [anon_sym_u8R_DQUOTE] = ACTIONS(2208), + [anon_sym_co_await] = ACTIONS(2206), + [anon_sym_new] = ACTIONS(2206), + [anon_sym_requires] = ACTIONS(2206), + [sym_this] = ACTIONS(2206), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2206), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_FORWARD] = ACTIONS(2206), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2206), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2206), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2206), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2206), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_PS_GET] = ACTIONS(2206), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2206), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2206), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2206), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2206), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2206), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2206), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2206), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2206), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2206), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2206), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2206), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2206), + [anon_sym_MOZ_COLD] = ACTIONS(2206), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2206), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2206), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2206), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2206), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2206), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2206), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2206), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2206), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2206), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2206), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2206), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2206), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2206), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2206), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2206), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2206), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2206), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2206), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2206), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2206), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2206), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_NONNULL] = ACTIONS(2206), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2206), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2206), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2206), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2206), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2206), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_NORETURN] = ACTIONS(2206), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2206), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2206), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2206), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2206), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2206), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2206), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2206), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2206), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2206), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2206), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2206), + [anon_sym_MOZ_RAII] = ACTIONS(2206), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2206), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2206), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2206), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2206), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2206), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2206), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2206), + }, + [STATE(561)] = { + [sym_identifier] = ACTIONS(2210), + [aux_sym_preproc_include_token1] = ACTIONS(2210), + [aux_sym_preproc_def_token1] = ACTIONS(2210), + [aux_sym_preproc_if_token1] = ACTIONS(2210), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2210), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2210), + [sym_preproc_directive] = ACTIONS(2210), + [anon_sym_LPAREN2] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_PLUS] = ACTIONS(2210), + [anon_sym_STAR] = ACTIONS(2212), + [anon_sym_AMP_AMP] = ACTIONS(2212), + [anon_sym_AMP] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym___extension__] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_virtual] = ACTIONS(2210), + [anon_sym_extern] = ACTIONS(2210), + [anon_sym___attribute__] = ACTIONS(2210), + [anon_sym___attribute] = ACTIONS(2210), + [anon_sym_COLON_COLON] = ACTIONS(2212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2212), + [anon_sym___declspec] = ACTIONS(2210), + [anon_sym___based] = ACTIONS(2210), + [anon_sym___cdecl] = ACTIONS(2210), + [anon_sym___clrcall] = ACTIONS(2210), + [anon_sym___stdcall] = ACTIONS(2210), + [anon_sym___fastcall] = ACTIONS(2210), + [anon_sym___thiscall] = ACTIONS(2210), + [anon_sym___vectorcall] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_signed] = ACTIONS(2210), + [anon_sym_unsigned] = ACTIONS(2210), + [anon_sym_long] = ACTIONS(2210), + [anon_sym_short] = ACTIONS(2210), + [anon_sym_LBRACK] = ACTIONS(2210), + [anon_sym_static] = ACTIONS(2210), + [anon_sym_register] = ACTIONS(2210), + [anon_sym_inline] = ACTIONS(2210), + [anon_sym___inline] = ACTIONS(2210), + [anon_sym___inline__] = ACTIONS(2210), + [anon_sym___forceinline] = ACTIONS(2210), + [anon_sym_thread_local] = ACTIONS(2210), + [anon_sym___thread] = ACTIONS(2210), + [anon_sym_const] = ACTIONS(2210), + [anon_sym_constexpr] = ACTIONS(2210), + [anon_sym_volatile] = ACTIONS(2210), + [anon_sym_restrict] = ACTIONS(2210), + [anon_sym___restrict__] = ACTIONS(2210), + [anon_sym__Atomic] = ACTIONS(2210), + [anon_sym__Noreturn] = ACTIONS(2210), + [anon_sym_noreturn] = ACTIONS(2210), + [anon_sym__Nonnull] = ACTIONS(2210), + [anon_sym_mutable] = ACTIONS(2210), + [anon_sym_constinit] = ACTIONS(2210), + [anon_sym_consteval] = ACTIONS(2210), + [anon_sym_alignas] = ACTIONS(2210), + [anon_sym__Alignas] = ACTIONS(2210), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_enum] = ACTIONS(2210), + [anon_sym_class] = ACTIONS(2210), + [anon_sym_struct] = ACTIONS(2210), + [anon_sym_union] = ACTIONS(2210), + [anon_sym_if] = ACTIONS(2210), + [anon_sym_switch] = ACTIONS(2210), + [anon_sym_case] = ACTIONS(2210), + [anon_sym_default] = ACTIONS(2210), + [anon_sym_while] = ACTIONS(2210), + [anon_sym_do] = ACTIONS(2210), + [anon_sym_for] = ACTIONS(2210), + [anon_sym_return] = ACTIONS(2210), + [anon_sym_break] = ACTIONS(2210), + [anon_sym_continue] = ACTIONS(2210), + [anon_sym_goto] = ACTIONS(2210), + [anon_sym___try] = ACTIONS(2210), + [anon_sym___leave] = ACTIONS(2210), + [anon_sym_not] = ACTIONS(2210), + [anon_sym_compl] = ACTIONS(2210), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_sizeof] = ACTIONS(2210), + [anon_sym___alignof__] = ACTIONS(2210), + [anon_sym___alignof] = ACTIONS(2210), + [anon_sym__alignof] = ACTIONS(2210), + [anon_sym_alignof] = ACTIONS(2210), + [anon_sym__Alignof] = ACTIONS(2210), + [anon_sym_offsetof] = ACTIONS(2210), + [anon_sym__Generic] = ACTIONS(2210), + [anon_sym_asm] = ACTIONS(2210), + [anon_sym___asm__] = ACTIONS(2210), + [anon_sym___asm] = ACTIONS(2210), + [sym_number_literal] = ACTIONS(2212), + [anon_sym_L_SQUOTE] = ACTIONS(2212), + [anon_sym_u_SQUOTE] = ACTIONS(2212), + [anon_sym_U_SQUOTE] = ACTIONS(2212), + [anon_sym_u8_SQUOTE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_L_DQUOTE] = ACTIONS(2212), + [anon_sym_u_DQUOTE] = ACTIONS(2212), + [anon_sym_U_DQUOTE] = ACTIONS(2212), + [anon_sym_u8_DQUOTE] = ACTIONS(2212), + [anon_sym_DQUOTE] = ACTIONS(2212), + [sym_true] = ACTIONS(2210), + [sym_false] = ACTIONS(2210), + [anon_sym_NULL] = ACTIONS(2210), + [anon_sym_nullptr] = ACTIONS(2210), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2210), + [anon_sym_decltype] = ACTIONS(2210), + [anon_sym_explicit] = ACTIONS(2210), + [anon_sym_typename] = ACTIONS(2210), + [anon_sym_template] = ACTIONS(2210), + [anon_sym_operator] = ACTIONS(2210), + [anon_sym_try] = ACTIONS(2210), + [anon_sym_delete] = ACTIONS(2210), + [anon_sym_throw] = ACTIONS(2210), + [anon_sym_namespace] = ACTIONS(2210), + [anon_sym_using] = ACTIONS(2210), + [anon_sym_static_assert] = ACTIONS(2210), + [anon_sym_concept] = ACTIONS(2210), + [anon_sym_co_return] = ACTIONS(2210), + [anon_sym_co_yield] = ACTIONS(2210), + [anon_sym_R_DQUOTE] = ACTIONS(2212), + [anon_sym_LR_DQUOTE] = ACTIONS(2212), + [anon_sym_uR_DQUOTE] = ACTIONS(2212), + [anon_sym_UR_DQUOTE] = ACTIONS(2212), + [anon_sym_u8R_DQUOTE] = ACTIONS(2212), + [anon_sym_co_await] = ACTIONS(2210), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2210), + [sym_this] = ACTIONS(2210), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2210), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_FORWARD] = ACTIONS(2210), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2210), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2210), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2210), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2210), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_PS_GET] = ACTIONS(2210), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2210), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2210), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2210), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2210), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2210), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2210), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2210), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2210), + [anon_sym_MOZ_COLD] = ACTIONS(2210), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2210), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2210), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2210), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2210), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2210), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2210), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2210), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2210), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2210), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2210), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2210), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2210), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2210), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_NONNULL] = ACTIONS(2210), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2210), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2210), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2210), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2210), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2210), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2210), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2210), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2210), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2210), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2210), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2210), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2210), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2210), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2210), + [anon_sym_MOZ_RAII] = ACTIONS(2210), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2210), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2210), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2210), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2210), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2210), + }, + [STATE(562)] = { + [sym_identifier] = ACTIONS(2214), + [aux_sym_preproc_include_token1] = ACTIONS(2214), + [aux_sym_preproc_def_token1] = ACTIONS(2214), + [aux_sym_preproc_if_token1] = ACTIONS(2214), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2214), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2214), + [sym_preproc_directive] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [anon_sym_BANG] = ACTIONS(2216), + [anon_sym_TILDE] = ACTIONS(2216), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_STAR] = ACTIONS(2216), + [anon_sym_AMP_AMP] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym___extension__] = ACTIONS(2214), + [anon_sym_typedef] = ACTIONS(2214), + [anon_sym_virtual] = ACTIONS(2214), + [anon_sym_extern] = ACTIONS(2214), + [anon_sym___attribute__] = ACTIONS(2214), + [anon_sym___attribute] = ACTIONS(2214), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(2214), + [anon_sym___based] = ACTIONS(2214), + [anon_sym___cdecl] = ACTIONS(2214), + [anon_sym___clrcall] = ACTIONS(2214), + [anon_sym___stdcall] = ACTIONS(2214), + [anon_sym___fastcall] = ACTIONS(2214), + [anon_sym___thiscall] = ACTIONS(2214), + [anon_sym___vectorcall] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2216), + [anon_sym_RBRACE] = ACTIONS(2216), + [anon_sym_signed] = ACTIONS(2214), + [anon_sym_unsigned] = ACTIONS(2214), + [anon_sym_long] = ACTIONS(2214), + [anon_sym_short] = ACTIONS(2214), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2214), + [anon_sym_register] = ACTIONS(2214), + [anon_sym_inline] = ACTIONS(2214), + [anon_sym___inline] = ACTIONS(2214), + [anon_sym___inline__] = ACTIONS(2214), + [anon_sym___forceinline] = ACTIONS(2214), + [anon_sym_thread_local] = ACTIONS(2214), + [anon_sym___thread] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [anon_sym_constexpr] = ACTIONS(2214), + [anon_sym_volatile] = ACTIONS(2214), + [anon_sym_restrict] = ACTIONS(2214), + [anon_sym___restrict__] = ACTIONS(2214), + [anon_sym__Atomic] = ACTIONS(2214), + [anon_sym__Noreturn] = ACTIONS(2214), + [anon_sym_noreturn] = ACTIONS(2214), + [anon_sym__Nonnull] = ACTIONS(2214), + [anon_sym_mutable] = ACTIONS(2214), + [anon_sym_constinit] = ACTIONS(2214), + [anon_sym_consteval] = ACTIONS(2214), + [anon_sym_alignas] = ACTIONS(2214), + [anon_sym__Alignas] = ACTIONS(2214), + [sym_primitive_type] = ACTIONS(2214), + [anon_sym_enum] = ACTIONS(2214), + [anon_sym_class] = ACTIONS(2214), + [anon_sym_struct] = ACTIONS(2214), + [anon_sym_union] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_switch] = ACTIONS(2214), + [anon_sym_case] = ACTIONS(2214), + [anon_sym_default] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_do] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_goto] = ACTIONS(2214), + [anon_sym___try] = ACTIONS(2214), + [anon_sym___leave] = ACTIONS(2214), + [anon_sym_not] = ACTIONS(2214), + [anon_sym_compl] = ACTIONS(2214), + [anon_sym_DASH_DASH] = ACTIONS(2216), + [anon_sym_PLUS_PLUS] = ACTIONS(2216), + [anon_sym_sizeof] = ACTIONS(2214), + [anon_sym___alignof__] = ACTIONS(2214), + [anon_sym___alignof] = ACTIONS(2214), + [anon_sym__alignof] = ACTIONS(2214), + [anon_sym_alignof] = ACTIONS(2214), + [anon_sym__Alignof] = ACTIONS(2214), + [anon_sym_offsetof] = ACTIONS(2214), + [anon_sym__Generic] = ACTIONS(2214), + [anon_sym_asm] = ACTIONS(2214), + [anon_sym___asm__] = ACTIONS(2214), + [anon_sym___asm] = ACTIONS(2214), + [sym_number_literal] = ACTIONS(2216), + [anon_sym_L_SQUOTE] = ACTIONS(2216), + [anon_sym_u_SQUOTE] = ACTIONS(2216), + [anon_sym_U_SQUOTE] = ACTIONS(2216), + [anon_sym_u8_SQUOTE] = ACTIONS(2216), + [anon_sym_SQUOTE] = ACTIONS(2216), + [anon_sym_L_DQUOTE] = ACTIONS(2216), + [anon_sym_u_DQUOTE] = ACTIONS(2216), + [anon_sym_U_DQUOTE] = ACTIONS(2216), + [anon_sym_u8_DQUOTE] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2216), + [sym_true] = ACTIONS(2214), + [sym_false] = ACTIONS(2214), + [anon_sym_NULL] = ACTIONS(2214), + [anon_sym_nullptr] = ACTIONS(2214), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2214), + [anon_sym_decltype] = ACTIONS(2214), + [anon_sym_explicit] = ACTIONS(2214), + [anon_sym_typename] = ACTIONS(2214), + [anon_sym_template] = ACTIONS(2214), + [anon_sym_operator] = ACTIONS(2214), + [anon_sym_try] = ACTIONS(2214), + [anon_sym_delete] = ACTIONS(2214), + [anon_sym_throw] = ACTIONS(2214), + [anon_sym_namespace] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2214), + [anon_sym_static_assert] = ACTIONS(2214), + [anon_sym_concept] = ACTIONS(2214), + [anon_sym_co_return] = ACTIONS(2214), + [anon_sym_co_yield] = ACTIONS(2214), + [anon_sym_R_DQUOTE] = ACTIONS(2216), + [anon_sym_LR_DQUOTE] = ACTIONS(2216), + [anon_sym_uR_DQUOTE] = ACTIONS(2216), + [anon_sym_UR_DQUOTE] = ACTIONS(2216), + [anon_sym_u8R_DQUOTE] = ACTIONS(2216), + [anon_sym_co_await] = ACTIONS(2214), + [anon_sym_new] = ACTIONS(2214), + [anon_sym_requires] = ACTIONS(2214), + [sym_this] = ACTIONS(2214), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2214), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_FORWARD] = ACTIONS(2214), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2214), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2214), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2214), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2214), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_PS_GET] = ACTIONS(2214), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2214), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2214), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2214), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2214), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2214), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2214), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2214), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2214), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2214), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2214), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2214), + [anon_sym_MOZ_COLD] = ACTIONS(2214), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2214), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2214), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2214), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2214), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2214), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2214), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2214), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2214), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2214), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2214), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2214), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2214), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2214), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2214), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2214), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2214), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2214), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2214), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2214), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2214), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_NONNULL] = ACTIONS(2214), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2214), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2214), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2214), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2214), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2214), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_NORETURN] = ACTIONS(2214), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2214), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2214), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2214), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2214), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2214), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2214), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2214), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2214), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2214), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2214), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2214), + [anon_sym_MOZ_RAII] = ACTIONS(2214), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2214), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2214), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2214), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2214), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2214), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2214), + }, + [STATE(563)] = { + [sym_identifier] = ACTIONS(2218), + [aux_sym_preproc_include_token1] = ACTIONS(2218), + [aux_sym_preproc_def_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2218), + [sym_preproc_directive] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_PLUS] = ACTIONS(2218), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP_AMP] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2218), + [anon_sym_typedef] = ACTIONS(2218), + [anon_sym_virtual] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym___attribute__] = ACTIONS(2218), + [anon_sym___attribute] = ACTIONS(2218), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2220), + [anon_sym___declspec] = ACTIONS(2218), + [anon_sym___based] = ACTIONS(2218), + [anon_sym___cdecl] = ACTIONS(2218), + [anon_sym___clrcall] = ACTIONS(2218), + [anon_sym___stdcall] = ACTIONS(2218), + [anon_sym___fastcall] = ACTIONS(2218), + [anon_sym___thiscall] = ACTIONS(2218), + [anon_sym___vectorcall] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_RBRACE] = ACTIONS(2220), + [anon_sym_signed] = ACTIONS(2218), + [anon_sym_unsigned] = ACTIONS(2218), + [anon_sym_long] = ACTIONS(2218), + [anon_sym_short] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_inline] = ACTIONS(2218), + [anon_sym___inline] = ACTIONS(2218), + [anon_sym___inline__] = ACTIONS(2218), + [anon_sym___forceinline] = ACTIONS(2218), + [anon_sym_thread_local] = ACTIONS(2218), + [anon_sym___thread] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_constexpr] = ACTIONS(2218), + [anon_sym_volatile] = ACTIONS(2218), + [anon_sym_restrict] = ACTIONS(2218), + [anon_sym___restrict__] = ACTIONS(2218), + [anon_sym__Atomic] = ACTIONS(2218), + [anon_sym__Noreturn] = ACTIONS(2218), + [anon_sym_noreturn] = ACTIONS(2218), + [anon_sym__Nonnull] = ACTIONS(2218), + [anon_sym_mutable] = ACTIONS(2218), + [anon_sym_constinit] = ACTIONS(2218), + [anon_sym_consteval] = ACTIONS(2218), + [anon_sym_alignas] = ACTIONS(2218), + [anon_sym__Alignas] = ACTIONS(2218), + [sym_primitive_type] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_class] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_switch] = ACTIONS(2218), + [anon_sym_case] = ACTIONS(2218), + [anon_sym_default] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_do] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_goto] = ACTIONS(2218), + [anon_sym___try] = ACTIONS(2218), + [anon_sym___leave] = ACTIONS(2218), + [anon_sym_not] = ACTIONS(2218), + [anon_sym_compl] = ACTIONS(2218), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(2218), + [anon_sym___alignof__] = ACTIONS(2218), + [anon_sym___alignof] = ACTIONS(2218), + [anon_sym__alignof] = ACTIONS(2218), + [anon_sym_alignof] = ACTIONS(2218), + [anon_sym__Alignof] = ACTIONS(2218), + [anon_sym_offsetof] = ACTIONS(2218), + [anon_sym__Generic] = ACTIONS(2218), + [anon_sym_asm] = ACTIONS(2218), + [anon_sym___asm__] = ACTIONS(2218), + [anon_sym___asm] = ACTIONS(2218), + [sym_number_literal] = ACTIONS(2220), + [anon_sym_L_SQUOTE] = ACTIONS(2220), + [anon_sym_u_SQUOTE] = ACTIONS(2220), + [anon_sym_U_SQUOTE] = ACTIONS(2220), + [anon_sym_u8_SQUOTE] = ACTIONS(2220), + [anon_sym_SQUOTE] = ACTIONS(2220), + [anon_sym_L_DQUOTE] = ACTIONS(2220), + [anon_sym_u_DQUOTE] = ACTIONS(2220), + [anon_sym_U_DQUOTE] = ACTIONS(2220), + [anon_sym_u8_DQUOTE] = ACTIONS(2220), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym_true] = ACTIONS(2218), + [sym_false] = ACTIONS(2218), + [anon_sym_NULL] = ACTIONS(2218), + [anon_sym_nullptr] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2218), + [anon_sym_explicit] = ACTIONS(2218), + [anon_sym_typename] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_operator] = ACTIONS(2218), + [anon_sym_try] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(2218), + [anon_sym_throw] = ACTIONS(2218), + [anon_sym_namespace] = ACTIONS(2218), + [anon_sym_using] = ACTIONS(2218), + [anon_sym_static_assert] = ACTIONS(2218), + [anon_sym_concept] = ACTIONS(2218), + [anon_sym_co_return] = ACTIONS(2218), + [anon_sym_co_yield] = ACTIONS(2218), + [anon_sym_R_DQUOTE] = ACTIONS(2220), + [anon_sym_LR_DQUOTE] = ACTIONS(2220), + [anon_sym_uR_DQUOTE] = ACTIONS(2220), + [anon_sym_UR_DQUOTE] = ACTIONS(2220), + [anon_sym_u8R_DQUOTE] = ACTIONS(2220), + [anon_sym_co_await] = ACTIONS(2218), + [anon_sym_new] = ACTIONS(2218), + [anon_sym_requires] = ACTIONS(2218), + [sym_this] = ACTIONS(2218), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2218), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_FORWARD] = ACTIONS(2218), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2218), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2218), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2218), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2218), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_PS_GET] = ACTIONS(2218), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2218), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2218), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2218), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2218), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2218), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2218), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2218), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2218), + [anon_sym_MOZ_COLD] = ACTIONS(2218), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2218), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2218), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2218), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2218), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2218), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2218), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2218), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2218), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2218), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2218), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2218), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2218), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2218), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_NONNULL] = ACTIONS(2218), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2218), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2218), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2218), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2218), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2218), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2218), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2218), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2218), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2218), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2218), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2218), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2218), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2218), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2218), + [anon_sym_MOZ_RAII] = ACTIONS(2218), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2218), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2218), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2218), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2218), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2218), + }, + [STATE(564)] = { + [sym_identifier] = ACTIONS(2222), + [aux_sym_preproc_include_token1] = ACTIONS(2222), + [aux_sym_preproc_def_token1] = ACTIONS(2222), + [aux_sym_preproc_if_token1] = ACTIONS(2222), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2222), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2222), + [sym_preproc_directive] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2224), + [anon_sym_BANG] = ACTIONS(2224), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_AMP_AMP] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym___extension__] = ACTIONS(2222), + [anon_sym_typedef] = ACTIONS(2222), + [anon_sym_virtual] = ACTIONS(2222), + [anon_sym_extern] = ACTIONS(2222), + [anon_sym___attribute__] = ACTIONS(2222), + [anon_sym___attribute] = ACTIONS(2222), + [anon_sym_COLON_COLON] = ACTIONS(2224), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2224), + [anon_sym___declspec] = ACTIONS(2222), + [anon_sym___based] = ACTIONS(2222), + [anon_sym___cdecl] = ACTIONS(2222), + [anon_sym___clrcall] = ACTIONS(2222), + [anon_sym___stdcall] = ACTIONS(2222), + [anon_sym___fastcall] = ACTIONS(2222), + [anon_sym___thiscall] = ACTIONS(2222), + [anon_sym___vectorcall] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2224), + [anon_sym_signed] = ACTIONS(2222), + [anon_sym_unsigned] = ACTIONS(2222), + [anon_sym_long] = ACTIONS(2222), + [anon_sym_short] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_register] = ACTIONS(2222), + [anon_sym_inline] = ACTIONS(2222), + [anon_sym___inline] = ACTIONS(2222), + [anon_sym___inline__] = ACTIONS(2222), + [anon_sym___forceinline] = ACTIONS(2222), + [anon_sym_thread_local] = ACTIONS(2222), + [anon_sym___thread] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_constexpr] = ACTIONS(2222), + [anon_sym_volatile] = ACTIONS(2222), + [anon_sym_restrict] = ACTIONS(2222), + [anon_sym___restrict__] = ACTIONS(2222), + [anon_sym__Atomic] = ACTIONS(2222), + [anon_sym__Noreturn] = ACTIONS(2222), + [anon_sym_noreturn] = ACTIONS(2222), + [anon_sym__Nonnull] = ACTIONS(2222), + [anon_sym_mutable] = ACTIONS(2222), + [anon_sym_constinit] = ACTIONS(2222), + [anon_sym_consteval] = ACTIONS(2222), + [anon_sym_alignas] = ACTIONS(2222), + [anon_sym__Alignas] = ACTIONS(2222), + [sym_primitive_type] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(2222), + [anon_sym_union] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2222), + [anon_sym_default] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_goto] = ACTIONS(2222), + [anon_sym___try] = ACTIONS(2222), + [anon_sym___leave] = ACTIONS(2222), + [anon_sym_not] = ACTIONS(2222), + [anon_sym_compl] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2224), + [anon_sym_PLUS_PLUS] = ACTIONS(2224), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2222), + [anon_sym___alignof] = ACTIONS(2222), + [anon_sym__alignof] = ACTIONS(2222), + [anon_sym_alignof] = ACTIONS(2222), + [anon_sym__Alignof] = ACTIONS(2222), + [anon_sym_offsetof] = ACTIONS(2222), + [anon_sym__Generic] = ACTIONS(2222), + [anon_sym_asm] = ACTIONS(2222), + [anon_sym___asm__] = ACTIONS(2222), + [anon_sym___asm] = ACTIONS(2222), + [sym_number_literal] = ACTIONS(2224), + [anon_sym_L_SQUOTE] = ACTIONS(2224), + [anon_sym_u_SQUOTE] = ACTIONS(2224), + [anon_sym_U_SQUOTE] = ACTIONS(2224), + [anon_sym_u8_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_L_DQUOTE] = ACTIONS(2224), + [anon_sym_u_DQUOTE] = ACTIONS(2224), + [anon_sym_U_DQUOTE] = ACTIONS(2224), + [anon_sym_u8_DQUOTE] = ACTIONS(2224), + [anon_sym_DQUOTE] = ACTIONS(2224), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [anon_sym_NULL] = ACTIONS(2222), + [anon_sym_nullptr] = ACTIONS(2222), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2222), + [anon_sym_decltype] = ACTIONS(2222), + [anon_sym_explicit] = ACTIONS(2222), + [anon_sym_typename] = ACTIONS(2222), + [anon_sym_template] = ACTIONS(2222), + [anon_sym_operator] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_delete] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_namespace] = ACTIONS(2222), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_static_assert] = ACTIONS(2222), + [anon_sym_concept] = ACTIONS(2222), + [anon_sym_co_return] = ACTIONS(2222), + [anon_sym_co_yield] = ACTIONS(2222), + [anon_sym_R_DQUOTE] = ACTIONS(2224), + [anon_sym_LR_DQUOTE] = ACTIONS(2224), + [anon_sym_uR_DQUOTE] = ACTIONS(2224), + [anon_sym_UR_DQUOTE] = ACTIONS(2224), + [anon_sym_u8R_DQUOTE] = ACTIONS(2224), + [anon_sym_co_await] = ACTIONS(2222), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_requires] = ACTIONS(2222), + [sym_this] = ACTIONS(2222), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2222), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_FORWARD] = ACTIONS(2222), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2222), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2222), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2222), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2222), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_PS_GET] = ACTIONS(2222), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2222), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2222), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2222), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2222), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2222), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2222), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2222), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2222), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2222), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2222), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2222), + [anon_sym_MOZ_COLD] = ACTIONS(2222), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2222), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2222), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2222), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2222), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2222), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2222), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2222), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2222), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2222), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2222), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2222), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2222), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2222), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2222), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2222), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2222), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2222), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2222), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2222), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2222), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_NONNULL] = ACTIONS(2222), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2222), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2222), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2222), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2222), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2222), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_NORETURN] = ACTIONS(2222), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2222), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2222), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2222), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2222), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2222), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2222), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2222), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2222), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2222), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2222), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2222), + [anon_sym_MOZ_RAII] = ACTIONS(2222), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2222), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2222), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2222), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2222), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2222), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2222), + }, + [STATE(565)] = { + [ts_builtin_sym_end] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2373), + [aux_sym_preproc_include_token1] = ACTIONS(2373), + [aux_sym_preproc_def_token1] = ACTIONS(2373), + [aux_sym_preproc_if_token1] = ACTIONS(2373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2373), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2373), + [sym_preproc_directive] = ACTIONS(2373), + [anon_sym_LPAREN2] = ACTIONS(2375), + [anon_sym_BANG] = ACTIONS(2375), + [anon_sym_TILDE] = ACTIONS(2375), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2375), + [anon_sym_AMP_AMP] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym___extension__] = ACTIONS(2373), + [anon_sym_typedef] = ACTIONS(2373), + [anon_sym_virtual] = ACTIONS(2373), + [anon_sym_extern] = ACTIONS(2373), + [anon_sym___attribute__] = ACTIONS(2373), + [anon_sym___attribute] = ACTIONS(2373), + [anon_sym_COLON_COLON] = ACTIONS(2375), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2375), + [anon_sym___declspec] = ACTIONS(2373), + [anon_sym___based] = ACTIONS(2373), + [anon_sym___cdecl] = ACTIONS(2373), + [anon_sym___clrcall] = ACTIONS(2373), + [anon_sym___stdcall] = ACTIONS(2373), + [anon_sym___fastcall] = ACTIONS(2373), + [anon_sym___thiscall] = ACTIONS(2373), + [anon_sym___vectorcall] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_signed] = ACTIONS(2373), + [anon_sym_unsigned] = ACTIONS(2373), + [anon_sym_long] = ACTIONS(2373), + [anon_sym_short] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_register] = ACTIONS(2373), + [anon_sym_inline] = ACTIONS(2373), + [anon_sym___inline] = ACTIONS(2373), + [anon_sym___inline__] = ACTIONS(2373), + [anon_sym___forceinline] = ACTIONS(2373), + [anon_sym_thread_local] = ACTIONS(2373), + [anon_sym___thread] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_constexpr] = ACTIONS(2373), + [anon_sym_volatile] = ACTIONS(2373), + [anon_sym_restrict] = ACTIONS(2373), + [anon_sym___restrict__] = ACTIONS(2373), + [anon_sym__Atomic] = ACTIONS(2373), + [anon_sym__Noreturn] = ACTIONS(2373), + [anon_sym_noreturn] = ACTIONS(2373), + [anon_sym__Nonnull] = ACTIONS(2373), + [anon_sym_mutable] = ACTIONS(2373), + [anon_sym_constinit] = ACTIONS(2373), + [anon_sym_consteval] = ACTIONS(2373), + [anon_sym_alignas] = ACTIONS(2373), + [anon_sym__Alignas] = ACTIONS(2373), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_class] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_switch] = ACTIONS(2373), + [anon_sym_case] = ACTIONS(2373), + [anon_sym_default] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_goto] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2373), + [anon_sym_compl] = ACTIONS(2373), + [anon_sym_DASH_DASH] = ACTIONS(2375), + [anon_sym_PLUS_PLUS] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2373), + [anon_sym___alignof__] = ACTIONS(2373), + [anon_sym___alignof] = ACTIONS(2373), + [anon_sym__alignof] = ACTIONS(2373), + [anon_sym_alignof] = ACTIONS(2373), + [anon_sym__Alignof] = ACTIONS(2373), + [anon_sym_offsetof] = ACTIONS(2373), + [anon_sym__Generic] = ACTIONS(2373), + [anon_sym_asm] = ACTIONS(2373), + [anon_sym___asm__] = ACTIONS(2373), + [anon_sym___asm] = ACTIONS(2373), + [sym_number_literal] = ACTIONS(2375), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2375), + [anon_sym_u_DQUOTE] = ACTIONS(2375), + [anon_sym_U_DQUOTE] = ACTIONS(2375), + [anon_sym_u8_DQUOTE] = ACTIONS(2375), + [anon_sym_DQUOTE] = ACTIONS(2375), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [anon_sym_NULL] = ACTIONS(2373), + [anon_sym_nullptr] = ACTIONS(2373), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2373), + [anon_sym_decltype] = ACTIONS(2373), + [anon_sym_explicit] = ACTIONS(2373), + [anon_sym_typename] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(2373), + [anon_sym_operator] = ACTIONS(2373), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_delete] = ACTIONS(2373), + [anon_sym_throw] = ACTIONS(2373), + [anon_sym_namespace] = ACTIONS(2373), + [anon_sym_using] = ACTIONS(2373), + [anon_sym_static_assert] = ACTIONS(2373), + [anon_sym_concept] = ACTIONS(2373), + [anon_sym_co_return] = ACTIONS(2373), + [anon_sym_co_yield] = ACTIONS(2373), + [anon_sym_R_DQUOTE] = ACTIONS(2375), + [anon_sym_LR_DQUOTE] = ACTIONS(2375), + [anon_sym_uR_DQUOTE] = ACTIONS(2375), + [anon_sym_UR_DQUOTE] = ACTIONS(2375), + [anon_sym_u8R_DQUOTE] = ACTIONS(2375), + [anon_sym_co_await] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_requires] = ACTIONS(2373), + [sym_this] = ACTIONS(2373), + [sym_alone_macro] = ACTIONS(2375), + [aux_sym_alone_macro_call_token1] = ACTIONS(2373), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2373), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_FORWARD] = ACTIONS(2373), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2373), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2373), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2373), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2373), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_PS_GET] = ACTIONS(2373), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2373), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2373), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2373), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2373), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2373), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2373), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2373), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2373), + [anon_sym_MOZ_COLD] = ACTIONS(2373), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2373), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2373), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2373), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2373), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2373), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2373), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2373), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2373), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2373), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2373), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2373), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2373), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2373), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_NONNULL] = ACTIONS(2373), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2373), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2373), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2373), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2373), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2373), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2373), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2373), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2373), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2373), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2373), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2373), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2373), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2373), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2373), + [anon_sym_MOZ_RAII] = ACTIONS(2373), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2373), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2373), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2373), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2373), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2373), + }, + [STATE(566)] = { + [ts_builtin_sym_end] = ACTIONS(2180), + [sym_identifier] = ACTIONS(2178), + [aux_sym_preproc_include_token1] = ACTIONS(2178), + [aux_sym_preproc_def_token1] = ACTIONS(2178), + [aux_sym_preproc_if_token1] = ACTIONS(2178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), + [sym_preproc_directive] = ACTIONS(2178), + [anon_sym_LPAREN2] = ACTIONS(2180), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_TILDE] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(2180), + [anon_sym_AMP_AMP] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2180), + [anon_sym___extension__] = ACTIONS(2178), + [anon_sym_typedef] = ACTIONS(2178), + [anon_sym_virtual] = ACTIONS(2178), + [anon_sym_extern] = ACTIONS(2178), + [anon_sym___attribute__] = ACTIONS(2178), + [anon_sym___attribute] = ACTIONS(2178), + [anon_sym_COLON_COLON] = ACTIONS(2180), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2180), + [anon_sym___declspec] = ACTIONS(2178), + [anon_sym___based] = ACTIONS(2178), + [anon_sym___cdecl] = ACTIONS(2178), + [anon_sym___clrcall] = ACTIONS(2178), + [anon_sym___stdcall] = ACTIONS(2178), + [anon_sym___fastcall] = ACTIONS(2178), + [anon_sym___thiscall] = ACTIONS(2178), + [anon_sym___vectorcall] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2180), + [anon_sym_signed] = ACTIONS(2178), + [anon_sym_unsigned] = ACTIONS(2178), + [anon_sym_long] = ACTIONS(2178), + [anon_sym_short] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_register] = ACTIONS(2178), + [anon_sym_inline] = ACTIONS(2178), + [anon_sym___inline] = ACTIONS(2178), + [anon_sym___inline__] = ACTIONS(2178), + [anon_sym___forceinline] = ACTIONS(2178), + [anon_sym_thread_local] = ACTIONS(2178), + [anon_sym___thread] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_constexpr] = ACTIONS(2178), + [anon_sym_volatile] = ACTIONS(2178), + [anon_sym_restrict] = ACTIONS(2178), + [anon_sym___restrict__] = ACTIONS(2178), + [anon_sym__Atomic] = ACTIONS(2178), + [anon_sym__Noreturn] = ACTIONS(2178), + [anon_sym_noreturn] = ACTIONS(2178), + [anon_sym__Nonnull] = ACTIONS(2178), + [anon_sym_mutable] = ACTIONS(2178), + [anon_sym_constinit] = ACTIONS(2178), + [anon_sym_consteval] = ACTIONS(2178), + [anon_sym_alignas] = ACTIONS(2178), + [anon_sym__Alignas] = ACTIONS(2178), + [sym_primitive_type] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_struct] = ACTIONS(2178), + [anon_sym_union] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_case] = ACTIONS(2178), + [anon_sym_default] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_goto] = ACTIONS(2178), + [anon_sym_not] = ACTIONS(2178), + [anon_sym_compl] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(2178), + [anon_sym___alignof__] = ACTIONS(2178), + [anon_sym___alignof] = ACTIONS(2178), + [anon_sym__alignof] = ACTIONS(2178), + [anon_sym_alignof] = ACTIONS(2178), + [anon_sym__Alignof] = ACTIONS(2178), + [anon_sym_offsetof] = ACTIONS(2178), + [anon_sym__Generic] = ACTIONS(2178), + [anon_sym_asm] = ACTIONS(2178), + [anon_sym___asm__] = ACTIONS(2178), + [anon_sym___asm] = ACTIONS(2178), + [sym_number_literal] = ACTIONS(2180), + [anon_sym_L_SQUOTE] = ACTIONS(2180), + [anon_sym_u_SQUOTE] = ACTIONS(2180), + [anon_sym_U_SQUOTE] = ACTIONS(2180), + [anon_sym_u8_SQUOTE] = ACTIONS(2180), + [anon_sym_SQUOTE] = ACTIONS(2180), + [anon_sym_L_DQUOTE] = ACTIONS(2180), + [anon_sym_u_DQUOTE] = ACTIONS(2180), + [anon_sym_U_DQUOTE] = ACTIONS(2180), + [anon_sym_u8_DQUOTE] = ACTIONS(2180), + [anon_sym_DQUOTE] = ACTIONS(2180), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [anon_sym_NULL] = ACTIONS(2178), + [anon_sym_nullptr] = ACTIONS(2178), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2178), + [anon_sym_decltype] = ACTIONS(2178), + [anon_sym_explicit] = ACTIONS(2178), + [anon_sym_typename] = ACTIONS(2178), + [anon_sym_template] = ACTIONS(2178), + [anon_sym_operator] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_static_assert] = ACTIONS(2178), + [anon_sym_concept] = ACTIONS(2178), + [anon_sym_co_return] = ACTIONS(2178), + [anon_sym_co_yield] = ACTIONS(2178), + [anon_sym_R_DQUOTE] = ACTIONS(2180), + [anon_sym_LR_DQUOTE] = ACTIONS(2180), + [anon_sym_uR_DQUOTE] = ACTIONS(2180), + [anon_sym_UR_DQUOTE] = ACTIONS(2180), + [anon_sym_u8R_DQUOTE] = ACTIONS(2180), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_requires] = ACTIONS(2178), + [sym_this] = ACTIONS(2178), + [sym_alone_macro] = ACTIONS(2180), + [aux_sym_alone_macro_call_token1] = ACTIONS(2178), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2178), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_FORWARD] = ACTIONS(2178), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2178), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2178), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2178), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2178), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_PS_GET] = ACTIONS(2178), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2178), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2178), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2178), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2178), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2178), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2178), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2178), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2178), + [anon_sym_MOZ_COLD] = ACTIONS(2178), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2178), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2178), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2178), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2178), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2178), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2178), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2178), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2178), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2178), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2178), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2178), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2178), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2178), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_NONNULL] = ACTIONS(2178), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2178), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2178), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2178), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2178), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2178), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2178), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2178), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2178), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2178), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2178), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2178), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2178), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2178), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2178), + [anon_sym_MOZ_RAII] = ACTIONS(2178), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2178), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2178), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2178), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2178), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2178), + }, + [STATE(567)] = { + [ts_builtin_sym_end] = ACTIONS(2258), + [sym_identifier] = ACTIONS(2256), + [aux_sym_preproc_include_token1] = ACTIONS(2256), + [aux_sym_preproc_def_token1] = ACTIONS(2256), + [aux_sym_preproc_if_token1] = ACTIONS(2256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2256), + [sym_preproc_directive] = ACTIONS(2256), + [anon_sym_LPAREN2] = ACTIONS(2258), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_STAR] = ACTIONS(2258), + [anon_sym_AMP_AMP] = ACTIONS(2258), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym___extension__] = ACTIONS(2256), + [anon_sym_typedef] = ACTIONS(2256), + [anon_sym_virtual] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym_COLON_COLON] = ACTIONS(2258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2258), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym___based] = ACTIONS(2256), + [anon_sym___cdecl] = ACTIONS(2256), + [anon_sym___clrcall] = ACTIONS(2256), + [anon_sym___stdcall] = ACTIONS(2256), + [anon_sym___fastcall] = ACTIONS(2256), + [anon_sym___thiscall] = ACTIONS(2256), + [anon_sym___vectorcall] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(2258), + [anon_sym_signed] = ACTIONS(2256), + [anon_sym_unsigned] = ACTIONS(2256), + [anon_sym_long] = ACTIONS(2256), + [anon_sym_short] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2256), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [anon_sym___inline] = ACTIONS(2256), + [anon_sym___inline__] = ACTIONS(2256), + [anon_sym___forceinline] = ACTIONS(2256), + [anon_sym_thread_local] = ACTIONS(2256), + [anon_sym___thread] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_constexpr] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym___restrict__] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym__Noreturn] = ACTIONS(2256), + [anon_sym_noreturn] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym_mutable] = ACTIONS(2256), + [anon_sym_constinit] = ACTIONS(2256), + [anon_sym_consteval] = ACTIONS(2256), + [anon_sym_alignas] = ACTIONS(2256), + [anon_sym__Alignas] = ACTIONS(2256), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_class] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_switch] = ACTIONS(2256), + [anon_sym_case] = ACTIONS(2256), + [anon_sym_default] = ACTIONS(2256), + [anon_sym_while] = ACTIONS(2256), + [anon_sym_do] = ACTIONS(2256), + [anon_sym_for] = ACTIONS(2256), + [anon_sym_return] = ACTIONS(2256), + [anon_sym_break] = ACTIONS(2256), + [anon_sym_continue] = ACTIONS(2256), + [anon_sym_goto] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2256), + [anon_sym_compl] = ACTIONS(2256), + [anon_sym_DASH_DASH] = ACTIONS(2258), + [anon_sym_PLUS_PLUS] = ACTIONS(2258), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2256), + [anon_sym___alignof] = ACTIONS(2256), + [anon_sym__alignof] = ACTIONS(2256), + [anon_sym_alignof] = ACTIONS(2256), + [anon_sym__Alignof] = ACTIONS(2256), + [anon_sym_offsetof] = ACTIONS(2256), + [anon_sym__Generic] = ACTIONS(2256), + [anon_sym_asm] = ACTIONS(2256), + [anon_sym___asm__] = ACTIONS(2256), + [anon_sym___asm] = ACTIONS(2256), + [sym_number_literal] = ACTIONS(2258), + [anon_sym_L_SQUOTE] = ACTIONS(2258), + [anon_sym_u_SQUOTE] = ACTIONS(2258), + [anon_sym_U_SQUOTE] = ACTIONS(2258), + [anon_sym_u8_SQUOTE] = ACTIONS(2258), + [anon_sym_SQUOTE] = ACTIONS(2258), + [anon_sym_L_DQUOTE] = ACTIONS(2258), + [anon_sym_u_DQUOTE] = ACTIONS(2258), + [anon_sym_U_DQUOTE] = ACTIONS(2258), + [anon_sym_u8_DQUOTE] = ACTIONS(2258), + [anon_sym_DQUOTE] = ACTIONS(2258), + [sym_true] = ACTIONS(2256), + [sym_false] = ACTIONS(2256), + [anon_sym_NULL] = ACTIONS(2256), + [anon_sym_nullptr] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2256), + [anon_sym_decltype] = ACTIONS(2256), + [anon_sym_explicit] = ACTIONS(2256), + [anon_sym_typename] = ACTIONS(2256), + [anon_sym_template] = ACTIONS(2256), + [anon_sym_operator] = ACTIONS(2256), + [anon_sym_try] = ACTIONS(2256), + [anon_sym_delete] = ACTIONS(2256), + [anon_sym_throw] = ACTIONS(2256), + [anon_sym_namespace] = ACTIONS(2256), + [anon_sym_using] = ACTIONS(2256), + [anon_sym_static_assert] = ACTIONS(2256), + [anon_sym_concept] = ACTIONS(2256), + [anon_sym_co_return] = ACTIONS(2256), + [anon_sym_co_yield] = ACTIONS(2256), + [anon_sym_R_DQUOTE] = ACTIONS(2258), + [anon_sym_LR_DQUOTE] = ACTIONS(2258), + [anon_sym_uR_DQUOTE] = ACTIONS(2258), + [anon_sym_UR_DQUOTE] = ACTIONS(2258), + [anon_sym_u8R_DQUOTE] = ACTIONS(2258), + [anon_sym_co_await] = ACTIONS(2256), + [anon_sym_new] = ACTIONS(2256), + [anon_sym_requires] = ACTIONS(2256), + [sym_this] = ACTIONS(2256), + [sym_alone_macro] = ACTIONS(2258), + [aux_sym_alone_macro_call_token1] = ACTIONS(2256), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2256), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_FORWARD] = ACTIONS(2256), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2256), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2256), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2256), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_PS_GET] = ACTIONS(2256), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2256), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2256), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2256), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2256), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2256), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2256), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2256), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2256), + [anon_sym_MOZ_COLD] = ACTIONS(2256), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2256), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2256), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2256), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2256), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2256), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2256), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2256), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2256), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2256), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2256), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2256), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2256), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2256), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_NONNULL] = ACTIONS(2256), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2256), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2256), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2256), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2256), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2256), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2256), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2256), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2256), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2256), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2256), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2256), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2256), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2256), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2256), + [anon_sym_MOZ_RAII] = ACTIONS(2256), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2256), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2256), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2256), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2256), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2256), + }, + [STATE(568)] = { + [ts_builtin_sym_end] = ACTIONS(2216), + [sym_identifier] = ACTIONS(2214), + [aux_sym_preproc_include_token1] = ACTIONS(2214), + [aux_sym_preproc_def_token1] = ACTIONS(2214), + [aux_sym_preproc_if_token1] = ACTIONS(2214), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2214), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2214), + [sym_preproc_directive] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [anon_sym_BANG] = ACTIONS(2216), + [anon_sym_TILDE] = ACTIONS(2216), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_STAR] = ACTIONS(2216), + [anon_sym_AMP_AMP] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym___extension__] = ACTIONS(2214), + [anon_sym_typedef] = ACTIONS(2214), + [anon_sym_virtual] = ACTIONS(2214), + [anon_sym_extern] = ACTIONS(2214), + [anon_sym___attribute__] = ACTIONS(2214), + [anon_sym___attribute] = ACTIONS(2214), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(2214), + [anon_sym___based] = ACTIONS(2214), + [anon_sym___cdecl] = ACTIONS(2214), + [anon_sym___clrcall] = ACTIONS(2214), + [anon_sym___stdcall] = ACTIONS(2214), + [anon_sym___fastcall] = ACTIONS(2214), + [anon_sym___thiscall] = ACTIONS(2214), + [anon_sym___vectorcall] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2216), + [anon_sym_signed] = ACTIONS(2214), + [anon_sym_unsigned] = ACTIONS(2214), + [anon_sym_long] = ACTIONS(2214), + [anon_sym_short] = ACTIONS(2214), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2214), + [anon_sym_register] = ACTIONS(2214), + [anon_sym_inline] = ACTIONS(2214), + [anon_sym___inline] = ACTIONS(2214), + [anon_sym___inline__] = ACTIONS(2214), + [anon_sym___forceinline] = ACTIONS(2214), + [anon_sym_thread_local] = ACTIONS(2214), + [anon_sym___thread] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [anon_sym_constexpr] = ACTIONS(2214), + [anon_sym_volatile] = ACTIONS(2214), + [anon_sym_restrict] = ACTIONS(2214), + [anon_sym___restrict__] = ACTIONS(2214), + [anon_sym__Atomic] = ACTIONS(2214), + [anon_sym__Noreturn] = ACTIONS(2214), + [anon_sym_noreturn] = ACTIONS(2214), + [anon_sym__Nonnull] = ACTIONS(2214), + [anon_sym_mutable] = ACTIONS(2214), + [anon_sym_constinit] = ACTIONS(2214), + [anon_sym_consteval] = ACTIONS(2214), + [anon_sym_alignas] = ACTIONS(2214), + [anon_sym__Alignas] = ACTIONS(2214), + [sym_primitive_type] = ACTIONS(2214), + [anon_sym_enum] = ACTIONS(2214), + [anon_sym_class] = ACTIONS(2214), + [anon_sym_struct] = ACTIONS(2214), + [anon_sym_union] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_switch] = ACTIONS(2214), + [anon_sym_case] = ACTIONS(2214), + [anon_sym_default] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_do] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_goto] = ACTIONS(2214), + [anon_sym_not] = ACTIONS(2214), + [anon_sym_compl] = ACTIONS(2214), + [anon_sym_DASH_DASH] = ACTIONS(2216), + [anon_sym_PLUS_PLUS] = ACTIONS(2216), + [anon_sym_sizeof] = ACTIONS(2214), + [anon_sym___alignof__] = ACTIONS(2214), + [anon_sym___alignof] = ACTIONS(2214), + [anon_sym__alignof] = ACTIONS(2214), + [anon_sym_alignof] = ACTIONS(2214), + [anon_sym__Alignof] = ACTIONS(2214), + [anon_sym_offsetof] = ACTIONS(2214), + [anon_sym__Generic] = ACTIONS(2214), + [anon_sym_asm] = ACTIONS(2214), + [anon_sym___asm__] = ACTIONS(2214), + [anon_sym___asm] = ACTIONS(2214), + [sym_number_literal] = ACTIONS(2216), + [anon_sym_L_SQUOTE] = ACTIONS(2216), + [anon_sym_u_SQUOTE] = ACTIONS(2216), + [anon_sym_U_SQUOTE] = ACTIONS(2216), + [anon_sym_u8_SQUOTE] = ACTIONS(2216), + [anon_sym_SQUOTE] = ACTIONS(2216), + [anon_sym_L_DQUOTE] = ACTIONS(2216), + [anon_sym_u_DQUOTE] = ACTIONS(2216), + [anon_sym_U_DQUOTE] = ACTIONS(2216), + [anon_sym_u8_DQUOTE] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2216), + [sym_true] = ACTIONS(2214), + [sym_false] = ACTIONS(2214), + [anon_sym_NULL] = ACTIONS(2214), + [anon_sym_nullptr] = ACTIONS(2214), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2214), + [anon_sym_decltype] = ACTIONS(2214), + [anon_sym_explicit] = ACTIONS(2214), + [anon_sym_typename] = ACTIONS(2214), + [anon_sym_template] = ACTIONS(2214), + [anon_sym_operator] = ACTIONS(2214), + [anon_sym_try] = ACTIONS(2214), + [anon_sym_delete] = ACTIONS(2214), + [anon_sym_throw] = ACTIONS(2214), + [anon_sym_namespace] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2214), + [anon_sym_static_assert] = ACTIONS(2214), + [anon_sym_concept] = ACTIONS(2214), + [anon_sym_co_return] = ACTIONS(2214), + [anon_sym_co_yield] = ACTIONS(2214), + [anon_sym_R_DQUOTE] = ACTIONS(2216), + [anon_sym_LR_DQUOTE] = ACTIONS(2216), + [anon_sym_uR_DQUOTE] = ACTIONS(2216), + [anon_sym_UR_DQUOTE] = ACTIONS(2216), + [anon_sym_u8R_DQUOTE] = ACTIONS(2216), + [anon_sym_co_await] = ACTIONS(2214), + [anon_sym_new] = ACTIONS(2214), + [anon_sym_requires] = ACTIONS(2214), + [sym_this] = ACTIONS(2214), + [sym_alone_macro] = ACTIONS(2216), + [aux_sym_alone_macro_call_token1] = ACTIONS(2214), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2214), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_FORWARD] = ACTIONS(2214), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2214), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2214), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2214), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2214), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_PS_GET] = ACTIONS(2214), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2214), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2214), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2214), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2214), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2214), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2214), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2214), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2214), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2214), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2214), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2214), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2214), + [anon_sym_MOZ_COLD] = ACTIONS(2214), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2214), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2214), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2214), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2214), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2214), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2214), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2214), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2214), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2214), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2214), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2214), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2214), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2214), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2214), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2214), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2214), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2214), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2214), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2214), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2214), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2214), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_NONNULL] = ACTIONS(2214), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2214), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2214), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2214), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2214), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2214), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_NORETURN] = ACTIONS(2214), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2214), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2214), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2214), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2214), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2214), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2214), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2214), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2214), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2214), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2214), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2214), + [anon_sym_MOZ_RAII] = ACTIONS(2214), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2214), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2214), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2214), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2214), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2214), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2214), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2214), + }, + [STATE(569)] = { + [sym_identifier] = ACTIONS(2232), + [aux_sym_preproc_include_token1] = ACTIONS(2232), + [aux_sym_preproc_def_token1] = ACTIONS(2232), + [aux_sym_preproc_if_token1] = ACTIONS(2232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2232), + [sym_preproc_directive] = ACTIONS(2232), + [anon_sym_LPAREN2] = ACTIONS(2234), + [anon_sym_BANG] = ACTIONS(2234), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym___extension__] = ACTIONS(2232), + [anon_sym_typedef] = ACTIONS(2232), + [anon_sym_virtual] = ACTIONS(2232), + [anon_sym_extern] = ACTIONS(2232), + [anon_sym___attribute__] = ACTIONS(2232), + [anon_sym___attribute] = ACTIONS(2232), + [anon_sym_COLON_COLON] = ACTIONS(2234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2234), + [anon_sym___declspec] = ACTIONS(2232), + [anon_sym___based] = ACTIONS(2232), + [anon_sym___cdecl] = ACTIONS(2232), + [anon_sym___clrcall] = ACTIONS(2232), + [anon_sym___stdcall] = ACTIONS(2232), + [anon_sym___fastcall] = ACTIONS(2232), + [anon_sym___thiscall] = ACTIONS(2232), + [anon_sym___vectorcall] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_signed] = ACTIONS(2232), + [anon_sym_unsigned] = ACTIONS(2232), + [anon_sym_long] = ACTIONS(2232), + [anon_sym_short] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2232), + [anon_sym_static] = ACTIONS(2232), + [anon_sym_register] = ACTIONS(2232), + [anon_sym_inline] = ACTIONS(2232), + [anon_sym___inline] = ACTIONS(2232), + [anon_sym___inline__] = ACTIONS(2232), + [anon_sym___forceinline] = ACTIONS(2232), + [anon_sym_thread_local] = ACTIONS(2232), + [anon_sym___thread] = ACTIONS(2232), + [anon_sym_const] = ACTIONS(2232), + [anon_sym_constexpr] = ACTIONS(2232), + [anon_sym_volatile] = ACTIONS(2232), + [anon_sym_restrict] = ACTIONS(2232), + [anon_sym___restrict__] = ACTIONS(2232), + [anon_sym__Atomic] = ACTIONS(2232), + [anon_sym__Noreturn] = ACTIONS(2232), + [anon_sym_noreturn] = ACTIONS(2232), + [anon_sym__Nonnull] = ACTIONS(2232), + [anon_sym_mutable] = ACTIONS(2232), + [anon_sym_constinit] = ACTIONS(2232), + [anon_sym_consteval] = ACTIONS(2232), + [anon_sym_alignas] = ACTIONS(2232), + [anon_sym__Alignas] = ACTIONS(2232), + [sym_primitive_type] = ACTIONS(2232), + [anon_sym_enum] = ACTIONS(2232), + [anon_sym_class] = ACTIONS(2232), + [anon_sym_struct] = ACTIONS(2232), + [anon_sym_union] = ACTIONS(2232), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_switch] = ACTIONS(2232), + [anon_sym_case] = ACTIONS(2232), + [anon_sym_default] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2232), + [anon_sym_do] = ACTIONS(2232), + [anon_sym_for] = ACTIONS(2232), + [anon_sym_return] = ACTIONS(2232), + [anon_sym_break] = ACTIONS(2232), + [anon_sym_continue] = ACTIONS(2232), + [anon_sym_goto] = ACTIONS(2232), + [anon_sym___try] = ACTIONS(2232), + [anon_sym___leave] = ACTIONS(2232), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_sizeof] = ACTIONS(2232), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2232), + [anon_sym__Generic] = ACTIONS(2232), + [anon_sym_asm] = ACTIONS(2232), + [anon_sym___asm__] = ACTIONS(2232), + [anon_sym___asm] = ACTIONS(2232), + [sym_number_literal] = ACTIONS(2234), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2234), + [anon_sym_u_DQUOTE] = ACTIONS(2234), + [anon_sym_U_DQUOTE] = ACTIONS(2234), + [anon_sym_u8_DQUOTE] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2234), + [sym_true] = ACTIONS(2232), + [sym_false] = ACTIONS(2232), + [anon_sym_NULL] = ACTIONS(2232), + [anon_sym_nullptr] = ACTIONS(2232), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2232), + [anon_sym_decltype] = ACTIONS(2232), + [anon_sym_explicit] = ACTIONS(2232), + [anon_sym_typename] = ACTIONS(2232), + [anon_sym_template] = ACTIONS(2232), + [anon_sym_operator] = ACTIONS(2232), + [anon_sym_try] = ACTIONS(2232), + [anon_sym_delete] = ACTIONS(2232), + [anon_sym_throw] = ACTIONS(2232), + [anon_sym_namespace] = ACTIONS(2232), + [anon_sym_using] = ACTIONS(2232), + [anon_sym_static_assert] = ACTIONS(2232), + [anon_sym_concept] = ACTIONS(2232), + [anon_sym_co_return] = ACTIONS(2232), + [anon_sym_co_yield] = ACTIONS(2232), + [anon_sym_R_DQUOTE] = ACTIONS(2234), + [anon_sym_LR_DQUOTE] = ACTIONS(2234), + [anon_sym_uR_DQUOTE] = ACTIONS(2234), + [anon_sym_UR_DQUOTE] = ACTIONS(2234), + [anon_sym_u8R_DQUOTE] = ACTIONS(2234), + [anon_sym_co_await] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_requires] = ACTIONS(2232), + [sym_this] = ACTIONS(2232), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2232), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_FORWARD] = ACTIONS(2232), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2232), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2232), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2232), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2232), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_PS_GET] = ACTIONS(2232), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2232), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2232), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2232), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2232), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2232), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2232), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2232), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2232), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2232), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2232), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2232), + [anon_sym_MOZ_COLD] = ACTIONS(2232), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2232), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2232), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2232), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2232), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2232), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2232), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2232), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2232), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2232), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2232), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2232), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2232), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2232), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2232), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2232), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2232), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2232), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2232), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2232), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2232), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_NONNULL] = ACTIONS(2232), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2232), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2232), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2232), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2232), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2232), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_NORETURN] = ACTIONS(2232), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2232), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2232), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2232), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2232), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2232), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2232), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2232), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2232), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2232), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2232), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2232), + [anon_sym_MOZ_RAII] = ACTIONS(2232), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2232), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2232), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2232), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2232), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2232), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2232), + }, + [STATE(570)] = { + [ts_builtin_sym_end] = ACTIONS(2278), + [sym_identifier] = ACTIONS(2276), + [aux_sym_preproc_include_token1] = ACTIONS(2276), + [aux_sym_preproc_def_token1] = ACTIONS(2276), + [aux_sym_preproc_if_token1] = ACTIONS(2276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2276), + [sym_preproc_directive] = ACTIONS(2276), + [anon_sym_LPAREN2] = ACTIONS(2278), + [anon_sym_BANG] = ACTIONS(2278), + [anon_sym_TILDE] = ACTIONS(2278), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2278), + [anon_sym_AMP_AMP] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym___extension__] = ACTIONS(2276), + [anon_sym_typedef] = ACTIONS(2276), + [anon_sym_virtual] = ACTIONS(2276), + [anon_sym_extern] = ACTIONS(2276), + [anon_sym___attribute__] = ACTIONS(2276), + [anon_sym___attribute] = ACTIONS(2276), + [anon_sym_COLON_COLON] = ACTIONS(2278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2278), + [anon_sym___declspec] = ACTIONS(2276), + [anon_sym___based] = ACTIONS(2276), + [anon_sym___cdecl] = ACTIONS(2276), + [anon_sym___clrcall] = ACTIONS(2276), + [anon_sym___stdcall] = ACTIONS(2276), + [anon_sym___fastcall] = ACTIONS(2276), + [anon_sym___thiscall] = ACTIONS(2276), + [anon_sym___vectorcall] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_signed] = ACTIONS(2276), + [anon_sym_unsigned] = ACTIONS(2276), + [anon_sym_long] = ACTIONS(2276), + [anon_sym_short] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_register] = ACTIONS(2276), + [anon_sym_inline] = ACTIONS(2276), + [anon_sym___inline] = ACTIONS(2276), + [anon_sym___inline__] = ACTIONS(2276), + [anon_sym___forceinline] = ACTIONS(2276), + [anon_sym_thread_local] = ACTIONS(2276), + [anon_sym___thread] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_constexpr] = ACTIONS(2276), + [anon_sym_volatile] = ACTIONS(2276), + [anon_sym_restrict] = ACTIONS(2276), + [anon_sym___restrict__] = ACTIONS(2276), + [anon_sym__Atomic] = ACTIONS(2276), + [anon_sym__Noreturn] = ACTIONS(2276), + [anon_sym_noreturn] = ACTIONS(2276), + [anon_sym__Nonnull] = ACTIONS(2276), + [anon_sym_mutable] = ACTIONS(2276), + [anon_sym_constinit] = ACTIONS(2276), + [anon_sym_consteval] = ACTIONS(2276), + [anon_sym_alignas] = ACTIONS(2276), + [anon_sym__Alignas] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_struct] = ACTIONS(2276), + [anon_sym_union] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_case] = ACTIONS(2276), + [anon_sym_default] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_not] = ACTIONS(2276), + [anon_sym_compl] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2278), + [anon_sym_PLUS_PLUS] = ACTIONS(2278), + [anon_sym_sizeof] = ACTIONS(2276), + [anon_sym___alignof__] = ACTIONS(2276), + [anon_sym___alignof] = ACTIONS(2276), + [anon_sym__alignof] = ACTIONS(2276), + [anon_sym_alignof] = ACTIONS(2276), + [anon_sym__Alignof] = ACTIONS(2276), + [anon_sym_offsetof] = ACTIONS(2276), + [anon_sym__Generic] = ACTIONS(2276), + [anon_sym_asm] = ACTIONS(2276), + [anon_sym___asm__] = ACTIONS(2276), + [anon_sym___asm] = ACTIONS(2276), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_L_SQUOTE] = ACTIONS(2278), + [anon_sym_u_SQUOTE] = ACTIONS(2278), + [anon_sym_U_SQUOTE] = ACTIONS(2278), + [anon_sym_u8_SQUOTE] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(2278), + [anon_sym_L_DQUOTE] = ACTIONS(2278), + [anon_sym_u_DQUOTE] = ACTIONS(2278), + [anon_sym_U_DQUOTE] = ACTIONS(2278), + [anon_sym_u8_DQUOTE] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2278), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2260), - [anon_sym_operator] = ACTIONS(2260), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2260), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2260), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2260), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2260), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2260), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2260), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2260), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2260), - [anon_sym_MOZ_COLD] = ACTIONS(2260), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2260), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2260), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2260), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2260), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2260), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2260), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2260), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2260), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2260), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2260), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2260), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2260), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2260), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2260), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2260), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2260), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2260), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2260), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2260), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2260), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2260), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_NONNULL] = ACTIONS(2260), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2260), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2260), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2260), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2260), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2260), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_NORETURN] = ACTIONS(2260), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2260), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2260), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2260), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2260), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2260), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2260), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2260), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2260), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2260), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2260), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2260), - [anon_sym_MOZ_RAII] = ACTIONS(2260), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2260), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2260), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2260), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2260), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2260), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2260), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2260), + [sym_auto] = ACTIONS(2276), + [anon_sym_decltype] = ACTIONS(2276), + [anon_sym_explicit] = ACTIONS(2276), + [anon_sym_typename] = ACTIONS(2276), + [anon_sym_template] = ACTIONS(2276), + [anon_sym_operator] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_using] = ACTIONS(2276), + [anon_sym_static_assert] = ACTIONS(2276), + [anon_sym_concept] = ACTIONS(2276), + [anon_sym_co_return] = ACTIONS(2276), + [anon_sym_co_yield] = ACTIONS(2276), + [anon_sym_R_DQUOTE] = ACTIONS(2278), + [anon_sym_LR_DQUOTE] = ACTIONS(2278), + [anon_sym_uR_DQUOTE] = ACTIONS(2278), + [anon_sym_UR_DQUOTE] = ACTIONS(2278), + [anon_sym_u8R_DQUOTE] = ACTIONS(2278), + [anon_sym_co_await] = ACTIONS(2276), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_requires] = ACTIONS(2276), + [sym_this] = ACTIONS(2276), + [sym_alone_macro] = ACTIONS(2278), + [aux_sym_alone_macro_call_token1] = ACTIONS(2276), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2276), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_FORWARD] = ACTIONS(2276), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2276), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2276), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2276), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2276), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_PS_GET] = ACTIONS(2276), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2276), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2276), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2276), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2276), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2276), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2276), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2276), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2276), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2276), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2276), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2276), + [anon_sym_MOZ_COLD] = ACTIONS(2276), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2276), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2276), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2276), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2276), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2276), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2276), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2276), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2276), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2276), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2276), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2276), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2276), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2276), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2276), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2276), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2276), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2276), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2276), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2276), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2276), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_NONNULL] = ACTIONS(2276), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2276), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2276), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2276), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2276), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2276), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_NORETURN] = ACTIONS(2276), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2276), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2276), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2276), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2276), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2276), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2276), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2276), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2276), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2276), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2276), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2276), + [anon_sym_MOZ_RAII] = ACTIONS(2276), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2276), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2276), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2276), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2276), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2276), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2276), }, - [1495] = { - [sym_identifier] = ACTIONS(2278), - [anon_sym_COMMA] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_extern] = ACTIONS(2278), - [anon_sym___attribute__] = ACTIONS(2278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2280), - [anon_sym___declspec] = ACTIONS(2278), - [anon_sym___based] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_EQ] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2278), - [anon_sym_register] = ACTIONS(2278), - [anon_sym_inline] = ACTIONS(2278), - [anon_sym_thread_local] = ACTIONS(2278), - [anon_sym_const] = ACTIONS(2278), - [anon_sym_volatile] = ACTIONS(2278), - [anon_sym_restrict] = ACTIONS(2278), - [anon_sym__Atomic] = ACTIONS(2278), - [anon_sym_mutable] = ACTIONS(2278), - [anon_sym_constexpr] = ACTIONS(2278), - [anon_sym_COLON] = ACTIONS(2280), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2278), - [anon_sym_operator] = ACTIONS(2278), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2278), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2278), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2278), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2278), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2278), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2278), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2278), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2278), - [anon_sym_MOZ_COLD] = ACTIONS(2278), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2278), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2278), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2278), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2278), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2278), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2278), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2278), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2278), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2278), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2278), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2278), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2278), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2278), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2278), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2278), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2278), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2278), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2278), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2278), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2278), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2278), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_NONNULL] = ACTIONS(2278), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2278), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2278), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2278), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2278), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2278), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_NORETURN] = ACTIONS(2278), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2278), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2278), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2278), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2278), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2278), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2278), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2278), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2278), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2278), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2278), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2278), - [anon_sym_MOZ_RAII] = ACTIONS(2278), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2278), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2278), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2278), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2278), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2278), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2278), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2278), - }, - [1496] = { - [sym_identifier] = ACTIONS(3452), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3454), - [anon_sym_STAR] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_AMP] = ACTIONS(3452), - [anon_sym_SEMI] = ACTIONS(3477), - [anon_sym_extern] = ACTIONS(3452), - [anon_sym___attribute__] = ACTIONS(3452), - [anon_sym_COLON_COLON] = ACTIONS(3454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), - [anon_sym___declspec] = ACTIONS(3452), - [anon_sym___based] = ACTIONS(3452), - [anon_sym_LBRACK] = ACTIONS(3452), - [anon_sym_static] = ACTIONS(3452), - [anon_sym_register] = ACTIONS(3452), - [anon_sym_inline] = ACTIONS(3452), - [anon_sym_thread_local] = ACTIONS(3452), - [anon_sym_const] = ACTIONS(3452), - [anon_sym_volatile] = ACTIONS(3452), - [anon_sym_restrict] = ACTIONS(3452), - [anon_sym__Atomic] = ACTIONS(3452), - [anon_sym_mutable] = ACTIONS(3452), - [anon_sym_constexpr] = ACTIONS(3452), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3452), - [anon_sym_template] = ACTIONS(3452), - [anon_sym_operator] = ACTIONS(3452), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3452), - [anon_sym_MOZ_COLD] = ACTIONS(3452), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3452), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3452), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3452), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3452), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3452), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3452), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3452), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3452), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3452), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3452), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3452), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3452), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_RAII] = ACTIONS(3452), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3452), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3452), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3452), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3452), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3452), - }, - [1497] = { - [sym_identifier] = ACTIONS(2512), - [anon_sym_LPAREN2] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_STAR] = ACTIONS(2519), - [anon_sym_AMP_AMP] = ACTIONS(2519), - [anon_sym_AMP] = ACTIONS(2512), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym___attribute__] = ACTIONS(2512), - [anon_sym_COLON_COLON] = ACTIONS(2519), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2516), - [anon_sym___declspec] = ACTIONS(2512), - [anon_sym___based] = ACTIONS(2512), - [anon_sym_LBRACK] = ACTIONS(2523), - [anon_sym_static] = ACTIONS(2512), - [anon_sym_register] = ACTIONS(2512), - [anon_sym_inline] = ACTIONS(2512), - [anon_sym_thread_local] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [anon_sym_volatile] = ACTIONS(2512), - [anon_sym_restrict] = ACTIONS(2512), - [anon_sym__Atomic] = ACTIONS(2512), - [anon_sym_mutable] = ACTIONS(2512), - [anon_sym_constexpr] = ACTIONS(2512), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(2512), - [anon_sym_template] = ACTIONS(2512), - [anon_sym_operator] = ACTIONS(2512), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2512), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2512), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2512), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2512), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2512), - [anon_sym_MOZ_COLD] = ACTIONS(2512), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2512), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2512), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2512), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2512), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2512), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2512), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2512), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2512), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2512), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2512), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2512), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2512), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2512), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2512), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2512), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2512), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_NONNULL] = ACTIONS(2512), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2512), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2512), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2512), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2512), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_NORETURN] = ACTIONS(2512), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2512), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2512), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2512), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2512), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2512), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2512), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2512), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2512), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2512), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2512), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2512), - [anon_sym_MOZ_RAII] = ACTIONS(2512), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2512), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2512), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2512), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2512), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2512), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2512), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2512), - }, - [1498] = { - [sym_identifier] = ACTIONS(3452), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3454), - [anon_sym_STAR] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_AMP] = ACTIONS(3452), - [anon_sym_SEMI] = ACTIONS(3477), - [anon_sym_extern] = ACTIONS(3452), - [anon_sym___attribute__] = ACTIONS(3452), - [anon_sym_COLON_COLON] = ACTIONS(3440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), - [anon_sym___declspec] = ACTIONS(3452), - [anon_sym___based] = ACTIONS(3452), - [anon_sym_LBRACK] = ACTIONS(3452), - [anon_sym_static] = ACTIONS(3452), - [anon_sym_register] = ACTIONS(3452), - [anon_sym_inline] = ACTIONS(3452), - [anon_sym_thread_local] = ACTIONS(3452), - [anon_sym_const] = ACTIONS(3452), - [anon_sym_volatile] = ACTIONS(3452), - [anon_sym_restrict] = ACTIONS(3452), - [anon_sym__Atomic] = ACTIONS(3452), - [anon_sym_mutable] = ACTIONS(3452), - [anon_sym_constexpr] = ACTIONS(3452), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3452), - [anon_sym_template] = ACTIONS(3452), - [anon_sym_operator] = ACTIONS(3452), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3452), - [anon_sym_MOZ_COLD] = ACTIONS(3452), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3452), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3452), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3452), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3452), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3452), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3452), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3452), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3452), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3452), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3452), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3452), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3452), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_RAII] = ACTIONS(3452), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3452), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3452), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3452), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3452), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3452), - }, - [1499] = { - [sym_identifier] = ACTIONS(3879), - [anon_sym_LPAREN2] = ACTIONS(3881), - [anon_sym_TILDE] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3879), - [anon_sym_extern] = ACTIONS(3879), - [anon_sym___attribute__] = ACTIONS(3879), - [anon_sym_COLON_COLON] = ACTIONS(3883), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3883), - [anon_sym___declspec] = ACTIONS(3879), - [anon_sym___based] = ACTIONS(3879), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_static] = ACTIONS(3879), - [anon_sym_register] = ACTIONS(3879), - [anon_sym_inline] = ACTIONS(3879), - [anon_sym_thread_local] = ACTIONS(3879), - [anon_sym_const] = ACTIONS(3879), - [anon_sym_volatile] = ACTIONS(3879), - [anon_sym_restrict] = ACTIONS(3879), - [anon_sym__Atomic] = ACTIONS(3879), - [anon_sym_mutable] = ACTIONS(3879), - [anon_sym_constexpr] = ACTIONS(3879), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3879), - [anon_sym_explicit] = ACTIONS(3879), - [anon_sym_template] = ACTIONS(3879), - [anon_sym_operator] = ACTIONS(3879), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3879), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3879), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3879), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3879), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3879), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3879), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3879), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3879), - [anon_sym_MOZ_COLD] = ACTIONS(3879), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3879), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3879), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3879), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3879), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3879), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3879), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3879), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3879), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3879), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3879), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3879), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3879), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3879), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3879), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3879), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3879), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3879), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3879), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3879), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3879), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3879), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3879), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3879), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3879), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3879), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3879), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3879), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3879), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3879), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3879), - [anon_sym_MOZ_NONNULL] = ACTIONS(3879), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3879), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3879), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3879), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3879), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3879), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3879), - [anon_sym_MOZ_NORETURN] = ACTIONS(3879), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3879), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3879), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3879), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3879), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3879), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3879), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3879), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3879), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3879), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3879), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3879), - [anon_sym_MOZ_RAII] = ACTIONS(3879), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3879), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3879), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3879), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3879), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3879), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3879), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3879), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3879), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3879), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3879), - }, - [1500] = { - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(3887), - [anon_sym_TILDE] = ACTIONS(3887), - [anon_sym_STAR] = ACTIONS(3887), - [anon_sym_AMP_AMP] = ACTIONS(3887), - [anon_sym_AMP] = ACTIONS(3885), - [anon_sym_extern] = ACTIONS(3885), - [anon_sym___attribute__] = ACTIONS(3885), - [anon_sym_COLON_COLON] = ACTIONS(3887), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3887), - [anon_sym___declspec] = ACTIONS(3885), - [anon_sym___based] = ACTIONS(3885), - [anon_sym_LBRACK] = ACTIONS(3885), - [anon_sym_static] = ACTIONS(3885), - [anon_sym_register] = ACTIONS(3885), - [anon_sym_inline] = ACTIONS(3885), - [anon_sym_thread_local] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3885), - [anon_sym_volatile] = ACTIONS(3885), - [anon_sym_restrict] = ACTIONS(3885), - [anon_sym__Atomic] = ACTIONS(3885), - [anon_sym_mutable] = ACTIONS(3885), - [anon_sym_constexpr] = ACTIONS(3885), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3885), - [anon_sym_explicit] = ACTIONS(3885), - [anon_sym_template] = ACTIONS(3885), - [anon_sym_operator] = ACTIONS(3885), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3885), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3885), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3885), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3885), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3885), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3885), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3885), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3885), - [anon_sym_MOZ_COLD] = ACTIONS(3885), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3885), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3885), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3885), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3885), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3885), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3885), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3885), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3885), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3885), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3885), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3885), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3885), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3885), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3885), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3885), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3885), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3885), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3885), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3885), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3885), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3885), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3885), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3885), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3885), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3885), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3885), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3885), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3885), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3885), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3885), - [anon_sym_MOZ_NONNULL] = ACTIONS(3885), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3885), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3885), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3885), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3885), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3885), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3885), - [anon_sym_MOZ_NORETURN] = ACTIONS(3885), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3885), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3885), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3885), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3885), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3885), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3885), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3885), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3885), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3885), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3885), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3885), - [anon_sym_MOZ_RAII] = ACTIONS(3885), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3885), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3885), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3885), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3885), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3885), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3885), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3885), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3885), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3885), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3885), - }, - [1501] = { - [sym_identifier] = ACTIONS(3302), - [anon_sym_LPAREN2] = ACTIONS(3304), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_AMP_AMP] = ACTIONS(3304), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3304), - [anon_sym_extern] = ACTIONS(3302), - [anon_sym___attribute__] = ACTIONS(3302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3304), - [anon_sym___declspec] = ACTIONS(3302), - [anon_sym___based] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3304), - [anon_sym_EQ] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_register] = ACTIONS(3302), - [anon_sym_inline] = ACTIONS(3302), - [anon_sym_thread_local] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_volatile] = ACTIONS(3302), - [anon_sym_restrict] = ACTIONS(3302), - [anon_sym__Atomic] = ACTIONS(3302), - [anon_sym_mutable] = ACTIONS(3302), - [anon_sym_constexpr] = ACTIONS(3302), - [anon_sym_COLON] = ACTIONS(3304), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3302), - [anon_sym_operator] = ACTIONS(3302), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3302), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3302), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3302), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3302), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3302), - [anon_sym_MOZ_COLD] = ACTIONS(3302), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3302), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3302), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3302), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3302), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3302), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3302), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3302), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3302), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3302), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3302), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3302), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3302), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3302), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3302), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3302), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3302), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_NONNULL] = ACTIONS(3302), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3302), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3302), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3302), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3302), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_NORETURN] = ACTIONS(3302), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3302), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3302), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3302), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3302), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3302), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3302), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3302), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3302), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3302), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3302), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3302), - [anon_sym_MOZ_RAII] = ACTIONS(3302), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3302), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3302), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3302), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3302), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3302), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3302), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3302), - }, - [1502] = { - [sym_identifier] = ACTIONS(3456), - [anon_sym_LPAREN2] = ACTIONS(3458), - [anon_sym_STAR] = ACTIONS(3458), - [anon_sym_AMP_AMP] = ACTIONS(3458), - [anon_sym_AMP] = ACTIONS(3456), - [anon_sym_SEMI] = ACTIONS(3458), - [anon_sym_extern] = ACTIONS(3456), - [anon_sym___attribute__] = ACTIONS(3456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3458), - [anon_sym___declspec] = ACTIONS(3456), - [anon_sym___based] = ACTIONS(3456), - [anon_sym_LBRACE] = ACTIONS(3458), - [anon_sym_EQ] = ACTIONS(3458), - [anon_sym_static] = ACTIONS(3456), - [anon_sym_register] = ACTIONS(3456), - [anon_sym_inline] = ACTIONS(3456), - [anon_sym_thread_local] = ACTIONS(3456), - [anon_sym_const] = ACTIONS(3456), - [anon_sym_volatile] = ACTIONS(3456), - [anon_sym_restrict] = ACTIONS(3456), - [anon_sym__Atomic] = ACTIONS(3456), - [anon_sym_mutable] = ACTIONS(3456), - [anon_sym_constexpr] = ACTIONS(3456), - [anon_sym_COLON] = ACTIONS(3458), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3456), - [anon_sym_operator] = ACTIONS(3456), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3456), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3456), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3456), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3456), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3456), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3456), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3456), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3456), - [anon_sym_MOZ_COLD] = ACTIONS(3456), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3456), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3456), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3456), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3456), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3456), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3456), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3456), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3456), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3456), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3456), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3456), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3456), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3456), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3456), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3456), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3456), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3456), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3456), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3456), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3456), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3456), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_NONNULL] = ACTIONS(3456), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3456), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3456), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3456), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3456), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3456), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_NORETURN] = ACTIONS(3456), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3456), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3456), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3456), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3456), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3456), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3456), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3456), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3456), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3456), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3456), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3456), - [anon_sym_MOZ_RAII] = ACTIONS(3456), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3456), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3456), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3456), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3456), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3456), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3456), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3456), - }, - [1503] = { - [sym_identifier] = ACTIONS(3401), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_STAR] = ACTIONS(3403), - [anon_sym_AMP_AMP] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_extern] = ACTIONS(3401), - [anon_sym___attribute__] = ACTIONS(3401), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3403), - [anon_sym___declspec] = ACTIONS(3401), - [anon_sym___based] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_EQ] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3401), - [anon_sym_register] = ACTIONS(3401), - [anon_sym_inline] = ACTIONS(3401), - [anon_sym_thread_local] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_volatile] = ACTIONS(3401), - [anon_sym_restrict] = ACTIONS(3401), - [anon_sym__Atomic] = ACTIONS(3401), - [anon_sym_mutable] = ACTIONS(3401), - [anon_sym_constexpr] = ACTIONS(3401), - [anon_sym_COLON] = ACTIONS(3403), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3401), - [anon_sym_operator] = ACTIONS(3401), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3401), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3401), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3401), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3401), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3401), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3401), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3401), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3401), - [anon_sym_MOZ_COLD] = ACTIONS(3401), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3401), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3401), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3401), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3401), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3401), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3401), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3401), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3401), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3401), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3401), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3401), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3401), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3401), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3401), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3401), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3401), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3401), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3401), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3401), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3401), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3401), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_NONNULL] = ACTIONS(3401), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3401), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3401), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3401), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3401), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3401), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_NORETURN] = ACTIONS(3401), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3401), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3401), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3401), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3401), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3401), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3401), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3401), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3401), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3401), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3401), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3401), - [anon_sym_MOZ_RAII] = ACTIONS(3401), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3401), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3401), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3401), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3401), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3401), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3401), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3401), - }, - [1504] = { - [sym_identifier] = ACTIONS(3452), - [anon_sym_LPAREN2] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3454), - [anon_sym_STAR] = ACTIONS(3454), - [anon_sym_AMP_AMP] = ACTIONS(3454), - [anon_sym_AMP] = ACTIONS(3452), - [anon_sym_extern] = ACTIONS(3452), - [anon_sym___attribute__] = ACTIONS(3452), - [anon_sym_COLON_COLON] = ACTIONS(3440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), - [anon_sym___declspec] = ACTIONS(3452), - [anon_sym___based] = ACTIONS(3452), - [anon_sym_LBRACK] = ACTIONS(3452), - [anon_sym_static] = ACTIONS(3452), - [anon_sym_register] = ACTIONS(3452), - [anon_sym_inline] = ACTIONS(3452), - [anon_sym_thread_local] = ACTIONS(3452), - [anon_sym_const] = ACTIONS(3452), - [anon_sym_volatile] = ACTIONS(3452), - [anon_sym_restrict] = ACTIONS(3452), - [anon_sym__Atomic] = ACTIONS(3452), - [anon_sym_mutable] = ACTIONS(3452), - [anon_sym_constexpr] = ACTIONS(3452), - [sym_comment] = ACTIONS(3), - [anon_sym_virtual] = ACTIONS(3452), - [anon_sym_template] = ACTIONS(3452), - [anon_sym_operator] = ACTIONS(3452), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3452), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3452), - [anon_sym_MOZ_COLD] = ACTIONS(3452), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3452), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3452), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3452), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3452), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3452), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3452), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3452), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3452), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3452), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3452), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3452), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3452), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL] = ACTIONS(3452), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3452), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3452), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN] = ACTIONS(3452), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3452), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3452), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3452), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3452), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3452), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3452), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3452), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3452), - [anon_sym_MOZ_RAII] = ACTIONS(3452), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3452), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3452), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3452), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3452), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3452), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3452), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3452), - }, - [1505] = { - [sym_type_qualifier] = STATE(1517), - [sym__expression] = STATE(3051), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(1517), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(3889), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3891), - [anon_sym_const] = ACTIONS(3893), - [anon_sym_volatile] = ACTIONS(3893), - [anon_sym_restrict] = ACTIONS(3893), - [anon_sym__Atomic] = ACTIONS(3893), - [anon_sym_mutable] = ACTIONS(3893), - [anon_sym_constexpr] = ACTIONS(3893), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1506] = { - [sym_type_qualifier] = STATE(1949), - [sym__expression] = STATE(3106), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3897), - [anon_sym_const] = ACTIONS(3893), - [anon_sym_volatile] = ACTIONS(3893), - [anon_sym_restrict] = ACTIONS(3893), - [anon_sym__Atomic] = ACTIONS(3893), - [anon_sym_mutable] = ACTIONS(3893), - [anon_sym_constexpr] = ACTIONS(3893), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1507] = { - [sym_type_qualifier] = STATE(1949), - [sym__expression] = STATE(3021), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3901), - [anon_sym_const] = ACTIONS(3893), - [anon_sym_volatile] = ACTIONS(3893), - [anon_sym_restrict] = ACTIONS(3893), - [anon_sym__Atomic] = ACTIONS(3893), - [anon_sym_mutable] = ACTIONS(3893), - [anon_sym_constexpr] = ACTIONS(3893), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1508] = { - [sym__expression] = STATE(2763), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4335), - [sym_initializer_pair] = STATE(4335), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3903), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(3905), - [anon_sym_LBRACK] = ACTIONS(3907), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1509] = { - [sym__expression] = STATE(2758), - [sym_comma_expression] = STATE(4740), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4652), - [sym_initializer_pair] = STATE(4652), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(3909), - [anon_sym_LBRACK] = ACTIONS(3907), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1510] = { - [sym_macro_annotation] = STATE(3211), - [anon_sym_COMMA] = ACTIONS(3911), - [anon_sym_RPAREN] = ACTIONS(3911), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_AMP_AMP] = ACTIONS(3911), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_SEMI] = ACTIONS(3911), - [anon_sym___attribute__] = ACTIONS(3911), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3911), - [anon_sym_LBRACE] = ACTIONS(3911), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_EQ] = ACTIONS(3911), - [anon_sym_const] = ACTIONS(3913), - [anon_sym_volatile] = ACTIONS(3911), - [anon_sym_restrict] = ACTIONS(3911), - [anon_sym__Atomic] = ACTIONS(3911), - [anon_sym_mutable] = ACTIONS(3911), - [anon_sym_constexpr] = ACTIONS(3911), - [anon_sym_DASH_GT] = ACTIONS(3911), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3911), - [anon_sym_override] = ACTIONS(3911), - [anon_sym_GT2] = ACTIONS(3911), - [anon_sym_noexcept] = ACTIONS(3911), - [anon_sym_throw] = ACTIONS(3911), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3875), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3875), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3875), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3875), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3875), - [anon_sym_MOZ_COLD] = ACTIONS(3875), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3875), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3875), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3875), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3875), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3875), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3875), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3875), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3875), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3875), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3875), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3875), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3875), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3875), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3875), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3875), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3875), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3875), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3875), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3875), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3875), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3875), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3875), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3875), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3875), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3875), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3875), - [anon_sym_MOZ_RAII] = ACTIONS(3875), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3875), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3875), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3875), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3875), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3875), - }, - [1511] = { - [sym_type_qualifier] = STATE(1524), - [sym__expression] = STATE(2977), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(1524), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3917), - [anon_sym_const] = ACTIONS(3893), - [anon_sym_volatile] = ACTIONS(3893), - [anon_sym_restrict] = ACTIONS(3893), - [anon_sym__Atomic] = ACTIONS(3893), - [anon_sym_mutable] = ACTIONS(3893), - [anon_sym_constexpr] = ACTIONS(3893), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1512] = { - [sym__expression] = STATE(2778), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4374), - [sym_initializer_pair] = STATE(4374), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3919), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(3921), - [anon_sym_LBRACK] = ACTIONS(3907), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1513] = { - [sym_type_qualifier] = STATE(1515), - [sym__expression] = STATE(3072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(1515), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3925), - [anon_sym_const] = ACTIONS(3893), - [anon_sym_volatile] = ACTIONS(3893), - [anon_sym_restrict] = ACTIONS(3893), - [anon_sym__Atomic] = ACTIONS(3893), - [anon_sym_mutable] = ACTIONS(3893), - [anon_sym_constexpr] = ACTIONS(3893), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1514] = { - [sym__expression] = STATE(2739), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4330), - [sym_initializer_pair] = STATE(4330), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(3927), - [anon_sym_LBRACK] = ACTIONS(3907), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1515] = { - [sym_type_qualifier] = STATE(1949), - [sym__expression] = STATE(3121), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3931), - [anon_sym_const] = ACTIONS(3893), - [anon_sym_volatile] = ACTIONS(3893), - [anon_sym_restrict] = ACTIONS(3893), - [anon_sym__Atomic] = ACTIONS(3893), - [anon_sym_mutable] = ACTIONS(3893), - [anon_sym_constexpr] = ACTIONS(3893), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1516] = { - [sym_type_qualifier] = STATE(1506), - [sym__expression] = STATE(3122), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(1506), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3935), - [anon_sym_const] = ACTIONS(3893), - [anon_sym_volatile] = ACTIONS(3893), - [anon_sym_restrict] = ACTIONS(3893), - [anon_sym__Atomic] = ACTIONS(3893), - [anon_sym_mutable] = ACTIONS(3893), - [anon_sym_constexpr] = ACTIONS(3893), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1517] = { - [sym_type_qualifier] = STATE(1949), - [sym__expression] = STATE(3001), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3939), - [anon_sym_const] = ACTIONS(3893), - [anon_sym_volatile] = ACTIONS(3893), - [anon_sym_restrict] = ACTIONS(3893), - [anon_sym__Atomic] = ACTIONS(3893), - [anon_sym_mutable] = ACTIONS(3893), - [anon_sym_constexpr] = ACTIONS(3893), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1518] = { - [sym_type_qualifier] = STATE(1528), - [sym__expression] = STATE(3077), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(1528), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3943), - [anon_sym_const] = ACTIONS(3893), - [anon_sym_volatile] = ACTIONS(3893), - [anon_sym_restrict] = ACTIONS(3893), - [anon_sym__Atomic] = ACTIONS(3893), - [anon_sym_mutable] = ACTIONS(3893), - [anon_sym_constexpr] = ACTIONS(3893), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1519] = { - [sym_type_qualifier] = STATE(1523), - [sym__expression] = STATE(2995), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(1523), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(3945), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3947), - [anon_sym_const] = ACTIONS(3893), - [anon_sym_volatile] = ACTIONS(3893), - [anon_sym_restrict] = ACTIONS(3893), - [anon_sym__Atomic] = ACTIONS(3893), - [anon_sym_mutable] = ACTIONS(3893), - [anon_sym_constexpr] = ACTIONS(3893), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1520] = { - [sym_macro_annotation] = STATE(3213), - [anon_sym_COMMA] = ACTIONS(3949), - [anon_sym_RPAREN] = ACTIONS(3949), - [anon_sym_LPAREN2] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_SEMI] = ACTIONS(3949), - [anon_sym___attribute__] = ACTIONS(3949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3949), - [anon_sym_LBRACE] = ACTIONS(3949), - [anon_sym_LBRACK] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3949), - [anon_sym_const] = ACTIONS(3951), - [anon_sym_volatile] = ACTIONS(3949), - [anon_sym_restrict] = ACTIONS(3949), - [anon_sym__Atomic] = ACTIONS(3949), - [anon_sym_mutable] = ACTIONS(3949), - [anon_sym_constexpr] = ACTIONS(3949), - [anon_sym_DASH_GT] = ACTIONS(3949), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3949), - [anon_sym_override] = ACTIONS(3949), - [anon_sym_GT2] = ACTIONS(3949), - [anon_sym_noexcept] = ACTIONS(3949), - [anon_sym_throw] = ACTIONS(3949), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3875), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3875), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3875), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3875), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3875), - [anon_sym_MOZ_COLD] = ACTIONS(3875), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3875), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3875), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3875), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3875), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3875), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3875), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3875), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3875), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3875), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3875), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3875), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3875), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3875), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3875), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3875), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3875), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3875), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3875), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3875), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3875), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3875), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3875), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3875), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3875), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3875), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3875), - [anon_sym_MOZ_RAII] = ACTIONS(3875), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3875), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3875), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3875), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3875), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3875), - }, - [1521] = { - [sym__expression] = STATE(2776), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4361), - [sym_initializer_pair] = STATE(4361), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(3955), - [anon_sym_LBRACK] = ACTIONS(3907), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1522] = { - [sym_macro_annotation] = STATE(3220), - [anon_sym_COMMA] = ACTIONS(3957), - [anon_sym_RPAREN] = ACTIONS(3957), - [anon_sym_LPAREN2] = ACTIONS(3957), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_SEMI] = ACTIONS(3957), - [anon_sym___attribute__] = ACTIONS(3957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3957), - [anon_sym_LBRACE] = ACTIONS(3957), - [anon_sym_LBRACK] = ACTIONS(3959), - [anon_sym_EQ] = ACTIONS(3957), - [anon_sym_const] = ACTIONS(3959), - [anon_sym_volatile] = ACTIONS(3957), - [anon_sym_restrict] = ACTIONS(3957), - [anon_sym__Atomic] = ACTIONS(3957), - [anon_sym_mutable] = ACTIONS(3957), - [anon_sym_constexpr] = ACTIONS(3957), - [anon_sym_DASH_GT] = ACTIONS(3957), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3957), - [anon_sym_override] = ACTIONS(3957), - [anon_sym_GT2] = ACTIONS(3957), - [anon_sym_noexcept] = ACTIONS(3957), - [anon_sym_throw] = ACTIONS(3957), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3875), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3875), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3875), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3875), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3875), - [anon_sym_MOZ_COLD] = ACTIONS(3875), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3875), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3875), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3875), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3875), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3875), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3875), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3875), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3875), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3875), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3875), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3875), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3875), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3875), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3875), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3875), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3875), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3875), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3875), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3875), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3875), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3875), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3875), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3875), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3875), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3875), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3875), - [anon_sym_MOZ_RAII] = ACTIONS(3875), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3875), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3875), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3875), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3875), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3875), - }, - [1523] = { - [sym_type_qualifier] = STATE(1949), - [sym__expression] = STATE(2957), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3963), - [anon_sym_const] = ACTIONS(3893), - [anon_sym_volatile] = ACTIONS(3893), - [anon_sym_restrict] = ACTIONS(3893), - [anon_sym__Atomic] = ACTIONS(3893), - [anon_sym_mutable] = ACTIONS(3893), - [anon_sym_constexpr] = ACTIONS(3893), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1524] = { - [sym_type_qualifier] = STATE(1949), - [sym__expression] = STATE(3100), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(3965), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3967), - [anon_sym_const] = ACTIONS(3893), - [anon_sym_volatile] = ACTIONS(3893), - [anon_sym_restrict] = ACTIONS(3893), - [anon_sym__Atomic] = ACTIONS(3893), - [anon_sym_mutable] = ACTIONS(3893), - [anon_sym_constexpr] = ACTIONS(3893), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1525] = { - [sym_type_qualifier] = STATE(1515), - [sym__expression] = STATE(3072), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(1515), - [sym_identifier] = ACTIONS(3969), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3925), - [anon_sym_const] = ACTIONS(3893), - [anon_sym_volatile] = ACTIONS(3893), - [anon_sym_restrict] = ACTIONS(3893), - [anon_sym__Atomic] = ACTIONS(3893), - [anon_sym_mutable] = ACTIONS(3893), - [anon_sym_constexpr] = ACTIONS(3893), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1526] = { - [sym_type_qualifier] = STATE(1507), - [sym__expression] = STATE(3094), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(1507), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3973), - [anon_sym_const] = ACTIONS(3893), - [anon_sym_volatile] = ACTIONS(3893), - [anon_sym_restrict] = ACTIONS(3893), - [anon_sym__Atomic] = ACTIONS(3893), - [anon_sym_mutable] = ACTIONS(3893), - [anon_sym_constexpr] = ACTIONS(3893), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1527] = { - [sym__expression] = STATE(2768), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4254), - [sym_initializer_pair] = STATE(4254), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3975), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(3977), - [anon_sym_LBRACK] = ACTIONS(3907), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1528] = { - [sym_type_qualifier] = STATE(1949), - [sym__expression] = STATE(3102), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_type_definition_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(3979), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3981), - [anon_sym_const] = ACTIONS(3893), - [anon_sym_volatile] = ACTIONS(3893), - [anon_sym_restrict] = ACTIONS(3893), - [anon_sym__Atomic] = ACTIONS(3893), - [anon_sym_mutable] = ACTIONS(3893), - [anon_sym_constexpr] = ACTIONS(3893), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1529] = { - [sym__expression] = STATE(2854), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4652), - [sym_initializer_pair] = STATE(4652), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(3983), - [anon_sym_LBRACK] = ACTIONS(3907), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1530] = { - [sym__expression] = STATE(2854), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4652), - [sym_initializer_pair] = STATE(4652), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(3985), - [anon_sym_LBRACK] = ACTIONS(3907), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1531] = { - [sym__expression] = STATE(2854), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4652), - [sym_initializer_pair] = STATE(4652), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(3909), - [anon_sym_LBRACK] = ACTIONS(3907), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1532] = { - [sym__expression] = STATE(2854), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4652), - [sym_initializer_pair] = STATE(4652), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(3987), - [anon_sym_LBRACK] = ACTIONS(3907), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1533] = { - [sym__expression] = STATE(2854), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4652), - [sym_initializer_pair] = STATE(4652), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(3989), - [anon_sym_LBRACK] = ACTIONS(3907), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1534] = { - [sym_macro_annotation] = STATE(3211), - [anon_sym_COMMA] = ACTIONS(3911), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_AMP_AMP] = ACTIONS(3911), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_SEMI] = ACTIONS(3911), - [anon_sym___attribute__] = ACTIONS(3911), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3911), - [anon_sym_LBRACE] = ACTIONS(3911), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_EQ] = ACTIONS(3911), - [anon_sym_const] = ACTIONS(3913), - [anon_sym_volatile] = ACTIONS(3911), - [anon_sym_restrict] = ACTIONS(3911), - [anon_sym__Atomic] = ACTIONS(3911), - [anon_sym_mutable] = ACTIONS(3911), - [anon_sym_constexpr] = ACTIONS(3911), - [anon_sym_COLON] = ACTIONS(3911), - [anon_sym_DASH_GT] = ACTIONS(3911), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3911), - [anon_sym_override] = ACTIONS(3911), - [anon_sym_noexcept] = ACTIONS(3911), - [anon_sym_throw] = ACTIONS(3911), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3991), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3991), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3824), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3991), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3991), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3824), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3991), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3991), - [anon_sym_MOZ_COLD] = ACTIONS(3991), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3991), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3991), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3991), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3991), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3991), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3991), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3991), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3991), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3991), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3991), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3991), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3991), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3991), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3824), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3991), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3991), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3991), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3991), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3824), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3991), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_NONNULL] = ACTIONS(3824), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3991), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3991), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3991), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3991), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3991), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_NORETURN] = ACTIONS(3824), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3991), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3991), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3991), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3991), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3991), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3991), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3991), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3991), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3991), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3991), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3991), - [anon_sym_MOZ_RAII] = ACTIONS(3991), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3991), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3991), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3991), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3991), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3991), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3991), - }, - [1535] = { - [sym__expression] = STATE(2854), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4652), - [sym_initializer_pair] = STATE(4652), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(3993), - [anon_sym_LBRACK] = ACTIONS(3907), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1536] = { - [sym_macro_annotation] = STATE(3220), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_LPAREN2] = ACTIONS(3957), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym___attribute__] = ACTIONS(3957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3957), - [anon_sym_LBRACE] = ACTIONS(3957), - [anon_sym_LBRACK] = ACTIONS(3959), - [anon_sym_EQ] = ACTIONS(3957), - [anon_sym_const] = ACTIONS(3959), - [anon_sym_volatile] = ACTIONS(3957), - [anon_sym_restrict] = ACTIONS(3957), - [anon_sym__Atomic] = ACTIONS(3957), - [anon_sym_mutable] = ACTIONS(3957), - [anon_sym_constexpr] = ACTIONS(3957), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_DASH_GT] = ACTIONS(3957), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3957), - [anon_sym_override] = ACTIONS(3957), - [anon_sym_noexcept] = ACTIONS(3957), - [anon_sym_throw] = ACTIONS(3957), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3991), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3991), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3824), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3991), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3991), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3824), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3991), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3991), - [anon_sym_MOZ_COLD] = ACTIONS(3991), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3991), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3991), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3991), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3991), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3991), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3991), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3991), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3991), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3991), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3991), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3991), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3991), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3991), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3824), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3991), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3991), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3991), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3991), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3824), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3991), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_NONNULL] = ACTIONS(3824), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3991), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3991), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3991), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3991), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3991), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_NORETURN] = ACTIONS(3824), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3991), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3991), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3991), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3991), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3991), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3991), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3991), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3991), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3991), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3991), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3991), - [anon_sym_MOZ_RAII] = ACTIONS(3991), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3991), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3991), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3991), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3991), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3991), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3991), - }, - [1537] = { - [sym__expression] = STATE(2854), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4652), - [sym_initializer_pair] = STATE(4652), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(3998), - [anon_sym_LBRACK] = ACTIONS(3907), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1538] = { - [sym_macro_annotation] = STATE(3213), - [anon_sym_COMMA] = ACTIONS(3949), - [anon_sym_LPAREN2] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_SEMI] = ACTIONS(3949), - [anon_sym___attribute__] = ACTIONS(3949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3949), - [anon_sym_LBRACE] = ACTIONS(3949), - [anon_sym_LBRACK] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3949), - [anon_sym_const] = ACTIONS(3951), - [anon_sym_volatile] = ACTIONS(3949), - [anon_sym_restrict] = ACTIONS(3949), - [anon_sym__Atomic] = ACTIONS(3949), - [anon_sym_mutable] = ACTIONS(3949), - [anon_sym_constexpr] = ACTIONS(3949), - [anon_sym_COLON] = ACTIONS(3949), - [anon_sym_DASH_GT] = ACTIONS(3949), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3949), - [anon_sym_override] = ACTIONS(3949), - [anon_sym_noexcept] = ACTIONS(3949), - [anon_sym_throw] = ACTIONS(3949), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3991), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3991), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3824), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3991), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3991), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3824), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3991), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3991), - [anon_sym_MOZ_COLD] = ACTIONS(3991), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3991), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3991), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3991), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3991), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3991), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3991), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3991), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3991), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3991), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3991), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3991), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3991), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3991), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3824), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3991), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3991), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3991), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3991), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3824), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3991), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_NONNULL] = ACTIONS(3824), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3991), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3991), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3991), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3991), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3991), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_NORETURN] = ACTIONS(3824), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3991), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3991), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3991), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3991), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3991), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3991), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3991), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3991), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3991), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3991), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3991), - [anon_sym_MOZ_RAII] = ACTIONS(3991), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3991), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3991), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3991), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3991), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3991), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3991), - }, - [1539] = { - [sym__expression] = STATE(2854), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4652), - [sym_initializer_pair] = STATE(4652), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(4000), - [anon_sym_LBRACK] = ACTIONS(3907), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1540] = { - [sym__expression] = STATE(2854), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4652), - [sym_initializer_pair] = STATE(4652), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(4002), - [anon_sym_LBRACK] = ACTIONS(3907), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1541] = { - [sym__expression] = STATE(2854), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4652), - [sym_initializer_pair] = STATE(4652), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(4004), - [anon_sym_LBRACK] = ACTIONS(3907), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1542] = { - [sym_macro_annotation] = STATE(3220), - [anon_sym_COMMA] = ACTIONS(3957), - [anon_sym_LPAREN2] = ACTIONS(3957), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_SEMI] = ACTIONS(3957), - [anon_sym___attribute__] = ACTIONS(3957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3957), - [anon_sym_LBRACE] = ACTIONS(3957), - [anon_sym_LBRACK] = ACTIONS(3959), - [anon_sym_EQ] = ACTIONS(3957), - [anon_sym_const] = ACTIONS(3959), - [anon_sym_volatile] = ACTIONS(3957), - [anon_sym_restrict] = ACTIONS(3957), - [anon_sym__Atomic] = ACTIONS(3957), - [anon_sym_mutable] = ACTIONS(3957), - [anon_sym_constexpr] = ACTIONS(3957), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_DASH_GT] = ACTIONS(3957), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3957), - [anon_sym_override] = ACTIONS(3957), - [anon_sym_noexcept] = ACTIONS(3957), - [anon_sym_throw] = ACTIONS(3957), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3991), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3991), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3824), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3991), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3991), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3824), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3991), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3991), - [anon_sym_MOZ_COLD] = ACTIONS(3991), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3991), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3824), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3991), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3991), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3991), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3991), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3991), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3991), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3991), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3991), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3991), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3991), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3991), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3991), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3991), - [anon_sym_MOZ_MUST_USE] = ACTIONS(3824), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3991), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3991), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3991), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3991), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3824), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3991), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_NONNULL] = ACTIONS(3824), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3991), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3991), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3991), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3991), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3991), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_NORETURN] = ACTIONS(3824), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3991), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3991), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3991), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3991), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3991), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3991), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3991), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3991), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3991), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3991), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3991), - [anon_sym_MOZ_RAII] = ACTIONS(3991), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3991), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3991), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3991), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3991), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3991), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3991), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3991), - }, - [1543] = { - [sym__expression] = STATE(2854), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4652), - [sym_initializer_pair] = STATE(4652), - [sym_subscript_designator] = STATE(3932), - [sym_field_designator] = STATE(3932), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [aux_sym_initializer_pair_repeat1] = STATE(3932), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3907), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1544] = { - [sym_macro_annotation] = STATE(3220), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_LPAREN2] = ACTIONS(3957), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym___attribute__] = ACTIONS(3957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3957), - [anon_sym_LBRACE] = ACTIONS(3957), - [anon_sym_LBRACK] = ACTIONS(3959), - [anon_sym_EQ] = ACTIONS(3957), - [anon_sym_const] = ACTIONS(3959), - [anon_sym_volatile] = ACTIONS(3957), - [anon_sym_restrict] = ACTIONS(3957), - [anon_sym__Atomic] = ACTIONS(3957), - [anon_sym_mutable] = ACTIONS(3957), - [anon_sym_constexpr] = ACTIONS(3957), - [anon_sym_DASH_GT] = ACTIONS(3957), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3957), - [anon_sym_override] = ACTIONS(3957), - [anon_sym_noexcept] = ACTIONS(3957), - [anon_sym_throw] = ACTIONS(3957), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3875), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3875), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(145), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3875), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(145), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3875), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3875), - [anon_sym_MOZ_COLD] = ACTIONS(3875), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3875), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3875), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3875), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(3875), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3875), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3875), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3875), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3875), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3875), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3875), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3875), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3875), - [anon_sym_MOZ_MUST_USE] = ACTIONS(145), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3875), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(145), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3875), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_NONNULL] = ACTIONS(145), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3875), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3875), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3875), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(3875), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_NORETURN] = ACTIONS(145), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3875), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3875), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3875), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3875), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3875), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3875), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3875), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(3875), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3875), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3875), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3875), - [anon_sym_MOZ_RAII] = ACTIONS(3875), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3875), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3875), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3875), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3875), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3875), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3875), - [anon_sym_JS_PUBLIC_API] = ACTIONS(3875), - }, - [1545] = { - [sym_field_declaration_list] = STATE(1323), - [sym__class_name] = STATE(1286), - [sym_virtual_specifier] = STATE(4095), - [sym_base_class_clause] = STATE(4476), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3908), - [sym_qualified_type_identifier] = STATE(1286), - [sym_macro_annotation] = STATE(1653), - [aux_sym_class_specifier_repeat1] = STATE(1653), - [sym_identifier] = ACTIONS(4006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4008), - [anon_sym_COMMA] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_GT2] = ACTIONS(4010), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1546] = { - [sym_macro_annotation] = STATE(3378), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3949), - [anon_sym_COMMA] = ACTIONS(3949), - [anon_sym_RPAREN] = ACTIONS(3949), - [anon_sym_LPAREN2] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_SEMI] = ACTIONS(3949), - [anon_sym_LBRACE] = ACTIONS(3949), - [anon_sym_LBRACK] = ACTIONS(3949), - [anon_sym_EQ] = ACTIONS(3949), - [anon_sym_const] = ACTIONS(3951), - [anon_sym_volatile] = ACTIONS(3949), - [anon_sym_restrict] = ACTIONS(3949), - [anon_sym__Atomic] = ACTIONS(3949), - [anon_sym_mutable] = ACTIONS(3949), - [anon_sym_constexpr] = ACTIONS(3949), - [anon_sym_DASH_GT] = ACTIONS(3949), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(3949), - [anon_sym_noexcept] = ACTIONS(3949), - [anon_sym_throw] = ACTIONS(3949), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4014), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4014), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4016), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4014), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4014), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4016), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4014), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4014), - [anon_sym_MOZ_COLD] = ACTIONS(4014), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4014), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4016), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4014), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4014), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(4014), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4014), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4014), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4014), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4014), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4014), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4014), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4014), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4014), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4014), - [anon_sym_MOZ_MUST_USE] = ACTIONS(4016), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4014), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4014), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4014), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4014), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4016), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4014), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_NONNULL] = ACTIONS(4016), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4014), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4014), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4014), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4014), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(4014), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_NORETURN] = ACTIONS(4016), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4014), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4014), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4014), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4014), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4014), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4014), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4014), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(4014), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4014), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4014), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4014), - [anon_sym_MOZ_RAII] = ACTIONS(4014), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4014), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4014), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4014), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4014), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4014), - [anon_sym_JS_PUBLIC_API] = ACTIONS(4014), - }, - [1547] = { - [sym_macro_annotation] = STATE(3324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3957), - [anon_sym_COMMA] = ACTIONS(3957), - [anon_sym_RPAREN] = ACTIONS(3957), - [anon_sym_LPAREN2] = ACTIONS(3957), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_SEMI] = ACTIONS(3957), - [anon_sym_LBRACE] = ACTIONS(3957), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_EQ] = ACTIONS(3957), - [anon_sym_const] = ACTIONS(3959), - [anon_sym_volatile] = ACTIONS(3957), - [anon_sym_restrict] = ACTIONS(3957), - [anon_sym__Atomic] = ACTIONS(3957), - [anon_sym_mutable] = ACTIONS(3957), - [anon_sym_constexpr] = ACTIONS(3957), - [anon_sym_DASH_GT] = ACTIONS(3957), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(3957), - [anon_sym_noexcept] = ACTIONS(3957), - [anon_sym_throw] = ACTIONS(3957), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4014), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4014), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4016), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4014), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4014), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4016), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4014), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4014), - [anon_sym_MOZ_COLD] = ACTIONS(4014), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4014), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4016), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4014), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4014), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(4014), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4014), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4014), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4014), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4014), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4014), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4014), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4014), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4014), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4014), - [anon_sym_MOZ_MUST_USE] = ACTIONS(4016), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4014), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4014), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4014), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4014), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4016), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4014), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_NONNULL] = ACTIONS(4016), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4014), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4014), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4014), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4014), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(4014), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_NORETURN] = ACTIONS(4016), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4014), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4014), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4014), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4014), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4014), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4014), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4014), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(4014), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4014), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4014), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4014), - [anon_sym_MOZ_RAII] = ACTIONS(4014), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4014), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4014), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4014), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4014), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4014), - [anon_sym_JS_PUBLIC_API] = ACTIONS(4014), - }, - [1548] = { - [sym_macro_annotation] = STATE(3315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3911), - [anon_sym_COMMA] = ACTIONS(3911), - [anon_sym_RPAREN] = ACTIONS(3911), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_AMP_AMP] = ACTIONS(3911), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_SEMI] = ACTIONS(3911), - [anon_sym_LBRACE] = ACTIONS(3911), - [anon_sym_LBRACK] = ACTIONS(3911), - [anon_sym_EQ] = ACTIONS(3911), - [anon_sym_const] = ACTIONS(3913), - [anon_sym_volatile] = ACTIONS(3911), - [anon_sym_restrict] = ACTIONS(3911), - [anon_sym__Atomic] = ACTIONS(3911), - [anon_sym_mutable] = ACTIONS(3911), - [anon_sym_constexpr] = ACTIONS(3911), - [anon_sym_DASH_GT] = ACTIONS(3911), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(3911), - [anon_sym_noexcept] = ACTIONS(3911), - [anon_sym_throw] = ACTIONS(3911), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4014), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4014), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4016), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4014), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4014), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4016), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4014), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4014), - [anon_sym_MOZ_COLD] = ACTIONS(4014), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4014), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4016), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4014), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4014), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4014), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(4014), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4014), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4014), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4014), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4014), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4014), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4014), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4014), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4014), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4014), - [anon_sym_MOZ_MUST_USE] = ACTIONS(4016), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4014), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4014), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4014), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4014), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4016), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4014), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_NONNULL] = ACTIONS(4016), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4014), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4014), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4014), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4014), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(4014), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_NORETURN] = ACTIONS(4016), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4014), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4014), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4014), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4014), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4014), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4014), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4014), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(4014), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4014), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4014), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4014), - [anon_sym_MOZ_RAII] = ACTIONS(4014), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4014), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4014), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4014), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4014), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4014), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4014), - [anon_sym_JS_PUBLIC_API] = ACTIONS(4014), - }, - [1549] = { - [sym__expression] = STATE(2806), - [sym_comma_expression] = STATE(4900), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4900), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1550] = { - [sym__expression] = STATE(2919), - [sym_comma_expression] = STATE(5263), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(5263), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1551] = { - [sym__expression] = STATE(2858), - [sym_comma_expression] = STATE(5049), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(5049), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4022), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1552] = { - [sym__expression] = STATE(2880), - [sym_comma_expression] = STATE(5056), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(5056), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4024), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1553] = { - [sym__expression] = STATE(2795), - [sym_comma_expression] = STATE(5028), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(5028), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1554] = { - [sym__expression] = STATE(2861), - [sym_comma_expression] = STATE(5022), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(5022), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4028), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1555] = { - [sym__expression] = STATE(2724), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_lambda_default_capture] = STATE(4501), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4032), - [anon_sym_EQ] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1556] = { - [sym__expression] = STATE(2773), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4275), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4036), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1557] = { - [sym__expression] = STATE(2735), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4346), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4038), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1558] = { - [sym__expression] = STATE(2740), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_lambda_default_capture] = STATE(4501), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4040), - [anon_sym_EQ] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1559] = { - [sym__expression] = STATE(2724), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_lambda_default_capture] = STATE(4501), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4042), - [anon_sym_EQ] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1560] = { - [sym__expression] = STATE(2954), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4945), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_default] = ACTIONS(4044), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(4046), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1561] = { - [sym__expression] = STATE(2724), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_lambda_default_capture] = STATE(4501), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4048), - [anon_sym_EQ] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1562] = { - [sym__expression] = STATE(3093), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(5131), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_default] = ACTIONS(4050), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(4052), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1563] = { - [sym__expression] = STATE(2724), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_lambda_default_capture] = STATE(4501), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4054), - [anon_sym_EQ] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1564] = { - [sym__expression] = STATE(2740), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_lambda_default_capture] = STATE(4501), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(4056), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4040), - [anon_sym_EQ] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1565] = { - [sym__expression] = STATE(2780), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4224), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1566] = { - [sym__expression] = STATE(2724), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_lambda_default_capture] = STATE(4501), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4060), - [anon_sym_EQ] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1567] = { - [sym__expression] = STATE(2774), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4359), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4062), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1568] = { - [sym__expression] = STATE(2724), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_lambda_default_capture] = STATE(4501), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4040), - [anon_sym_EQ] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1569] = { - [sym__expression] = STATE(2724), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_lambda_default_capture] = STATE(4501), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4064), - [anon_sym_EQ] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1570] = { - [sym__expression] = STATE(2734), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4337), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4066), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1571] = { - [sym__expression] = STATE(2724), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_lambda_default_capture] = STATE(4501), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(4056), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4040), - [anon_sym_EQ] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1572] = { - [sym__expression] = STATE(2772), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4424), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4068), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1573] = { - [sym__expression] = STATE(2779), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4296), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4070), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1574] = { - [sym__expression] = STATE(2724), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_lambda_default_capture] = STATE(4501), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4072), - [anon_sym_EQ] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1575] = { - [sym__expression] = STATE(3031), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(5198), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_default] = ACTIONS(4074), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(4076), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1576] = { - [sym__expression] = STATE(2724), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_lambda_default_capture] = STATE(4501), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4078), - [anon_sym_EQ] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1577] = { - [sym__expression] = STATE(2724), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_lambda_default_capture] = STATE(4501), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4080), - [anon_sym_EQ] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1578] = { - [sym__expression] = STATE(2724), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_lambda_default_capture] = STATE(4501), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4082), - [anon_sym_EQ] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1579] = { - [sym__expression] = STATE(2724), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_lambda_default_capture] = STATE(4501), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4084), - [anon_sym_EQ] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1580] = { - [sym__expression] = STATE(2724), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_lambda_default_capture] = STATE(4501), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4086), - [anon_sym_EQ] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1581] = { - [sym__expression] = STATE(2771), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4266), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4088), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1582] = { - [sym__expression] = STATE(2724), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_lambda_default_capture] = STATE(4501), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4090), - [anon_sym_EQ] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1583] = { - [sym__expression] = STATE(2724), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_lambda_default_capture] = STATE(4501), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4092), - [anon_sym_EQ] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1584] = { - [sym__expression] = STATE(2848), - [sym_comma_expression] = STATE(5217), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4094), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1585] = { - [sym__expression] = STATE(2946), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4963), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1586] = { - [sym__expression] = STATE(3098), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_initializer_list] = STATE(4962), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1587] = { - [sym__expression] = STATE(2850), - [sym_comma_expression] = STATE(5075), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4096), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1588] = { - [sym__expression] = STATE(2859), - [sym_comma_expression] = STATE(5082), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4098), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1589] = { - [sym_field_declaration_list] = STATE(1320), - [sym__class_name] = STATE(1389), - [sym_virtual_specifier] = STATE(4175), - [sym_base_class_clause] = STATE(4723), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3895), - [sym_qualified_type_identifier] = STATE(1389), - [sym_macro_annotation] = STATE(1946), - [aux_sym_class_specifier_repeat1] = STATE(1946), - [sym_identifier] = ACTIONS(4100), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1590] = { - [sym_field_declaration_list] = STATE(1323), - [sym__class_name] = STATE(1398), - [sym_virtual_specifier] = STATE(4095), - [sym_base_class_clause] = STATE(4476), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3895), - [sym_qualified_type_identifier] = STATE(1398), - [sym_macro_annotation] = STATE(1589), - [aux_sym_class_specifier_repeat1] = STATE(1589), - [sym_identifier] = ACTIONS(4100), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1591] = { - [sym_field_declaration_list] = STATE(2441), - [sym__class_name] = STATE(2047), - [sym_virtual_specifier] = STATE(4041), - [sym_base_class_clause] = STATE(4801), - [sym_template_type] = STATE(2246), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3909), - [sym_qualified_type_identifier] = STATE(2047), - [sym_macro_annotation] = STATE(1946), - [aux_sym_class_specifier_repeat1] = STATE(1946), - [sym_identifier] = ACTIONS(4102), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1592] = { - [sym__expression] = STATE(3033), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_initializer_list] = STATE(2682), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1593] = { - [sym__expression] = STATE(2870), - [sym_comma_expression] = STATE(4876), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1594] = { - [sym__expression] = STATE(2865), - [sym_comma_expression] = STATE(4866), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4110), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1595] = { - [sym__expression] = STATE(3027), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACE] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1596] = { - [sym__expression] = STATE(3029), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACE] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1597] = { - [sym__expression] = STATE(2869), - [sym_comma_expression] = STATE(5154), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4116), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1598] = { - [sym_field_declaration_list] = STATE(1323), - [sym__class_name] = STATE(1408), - [sym_virtual_specifier] = STATE(4095), - [sym_base_class_clause] = STATE(4476), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1408), - [sym_macro_annotation] = STATE(1620), - [aux_sym_class_specifier_repeat1] = STATE(1620), - [sym_identifier] = ACTIONS(4118), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1599] = { - [sym__expression] = STATE(2214), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_COMMA] = ACTIONS(4120), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4120), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1600] = { - [sym_field_declaration_list] = STATE(2283), - [sym__class_name] = STATE(2022), - [sym_virtual_specifier] = STATE(4151), - [sym_base_class_clause] = STATE(4670), - [sym_template_type] = STATE(2052), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3902), - [sym_qualified_type_identifier] = STATE(2022), - [sym_macro_annotation] = STATE(1682), - [aux_sym_class_specifier_repeat1] = STATE(1682), - [sym_identifier] = ACTIONS(4122), - [anon_sym_COLON_COLON] = ACTIONS(4124), - [anon_sym_LBRACE] = ACTIONS(4126), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1601] = { - [sym_field_declaration_list] = STATE(1320), - [sym__class_name] = STATE(3643), - [sym_virtual_specifier] = STATE(4175), - [sym_base_class_clause] = STATE(4723), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3888), - [sym_qualified_type_identifier] = STATE(3643), - [sym_macro_annotation] = STATE(1946), - [aux_sym_class_specifier_repeat1] = STATE(1946), - [sym_identifier] = ACTIONS(4118), - [anon_sym_COLON_COLON] = ACTIONS(4128), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1602] = { - [sym__expression] = STATE(2947), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(5152), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1603] = { - [sym__expression] = STATE(3055), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(5184), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1604] = { - [sym__expression] = STATE(2862), - [sym_comma_expression] = STATE(4858), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4130), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1605] = { - [sym__expression] = STATE(2151), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1606] = { - [sym__expression] = STATE(2796), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4687), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1607] = { - [sym_field_declaration_list] = STATE(1323), - [sym__class_name] = STATE(1398), - [sym_virtual_specifier] = STATE(4095), - [sym_base_class_clause] = STATE(4476), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3881), - [sym_qualified_type_identifier] = STATE(1398), - [sym_macro_annotation] = STATE(1623), - [aux_sym_class_specifier_repeat1] = STATE(1623), - [sym_identifier] = ACTIONS(4118), - [anon_sym_COLON_COLON] = ACTIONS(4132), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1608] = { - [sym__expression] = STATE(2332), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_initializer_list] = STATE(2440), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_LPAREN2] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1609] = { - [sym_field_declaration_list] = STATE(3828), - [sym__class_name] = STATE(3504), - [sym_virtual_specifier] = STATE(4052), - [sym_base_class_clause] = STATE(4516), - [sym_template_type] = STATE(3592), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3878), - [sym_qualified_type_identifier] = STATE(3504), - [sym_macro_annotation] = STATE(1946), - [aux_sym_class_specifier_repeat1] = STATE(1946), - [sym_identifier] = ACTIONS(4134), - [anon_sym_COLON_COLON] = ACTIONS(4136), - [anon_sym_LBRACE] = ACTIONS(4138), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1610] = { - [sym_field_declaration_list] = STATE(2441), - [sym__class_name] = STATE(2047), - [sym_virtual_specifier] = STATE(4041), - [sym_base_class_clause] = STATE(4801), - [sym_template_type] = STATE(2246), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3923), - [sym_qualified_type_identifier] = STATE(2047), - [sym_macro_annotation] = STATE(1946), - [aux_sym_class_specifier_repeat1] = STATE(1946), - [sym_identifier] = ACTIONS(4140), - [anon_sym_COLON_COLON] = ACTIONS(4142), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1611] = { - [sym__expression] = STATE(2843), - [sym_comma_expression] = STATE(5207), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4144), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1612] = { - [sym__expression] = STATE(2839), - [sym_comma_expression] = STATE(5205), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4146), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1613] = { - [sym__expression] = STATE(2836), - [sym_comma_expression] = STATE(5203), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4148), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1614] = { - [sym__expression] = STATE(2826), - [sym_comma_expression] = STATE(5191), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4150), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1615] = { - [sym__expression] = STATE(2823), - [sym_comma_expression] = STATE(5189), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4152), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1616] = { - [sym__expression] = STATE(2829), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1617] = { - [sym__expression] = STATE(2123), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_initializer_list] = STATE(2119), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1618] = { - [sym__expression] = STATE(3009), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(5206), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1619] = { - [sym__expression] = STATE(2685), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(2682), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1620] = { - [sym_field_declaration_list] = STATE(1320), - [sym__class_name] = STATE(1295), - [sym_virtual_specifier] = STATE(4175), - [sym_base_class_clause] = STATE(4723), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1295), - [sym_macro_annotation] = STATE(1946), - [aux_sym_class_specifier_repeat1] = STATE(1946), - [sym_identifier] = ACTIONS(4118), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1621] = { - [sym__expression] = STATE(2999), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(5216), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1622] = { - [sym_field_declaration_list] = STATE(2553), - [sym__class_name] = STATE(2269), - [sym_virtual_specifier] = STATE(4122), - [sym_base_class_clause] = STATE(4720), - [sym_template_type] = STATE(2424), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3918), - [sym_qualified_type_identifier] = STATE(2269), - [sym_macro_annotation] = STATE(1946), - [aux_sym_class_specifier_repeat1] = STATE(1946), - [sym_identifier] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1623] = { - [sym_field_declaration_list] = STATE(1320), - [sym__class_name] = STATE(1389), - [sym_virtual_specifier] = STATE(4175), - [sym_base_class_clause] = STATE(4723), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3881), - [sym_qualified_type_identifier] = STATE(1389), - [sym_macro_annotation] = STATE(1946), - [aux_sym_class_specifier_repeat1] = STATE(1946), - [sym_identifier] = ACTIONS(4118), - [anon_sym_COLON_COLON] = ACTIONS(4132), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1624] = { - [sym_field_declaration_list] = STATE(1323), - [sym__class_name] = STATE(3601), - [sym_virtual_specifier] = STATE(4095), - [sym_base_class_clause] = STATE(4476), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3888), - [sym_qualified_type_identifier] = STATE(3601), - [sym_macro_annotation] = STATE(1601), - [aux_sym_class_specifier_repeat1] = STATE(1601), - [sym_identifier] = ACTIONS(4118), - [anon_sym_COLON_COLON] = ACTIONS(4128), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1625] = { - [sym__expression] = STATE(2821), - [sym_comma_expression] = STATE(4865), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1626] = { - [sym__expression] = STATE(2820), - [sym_comma_expression] = STATE(4867), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1627] = { - [sym__expression] = STATE(2817), - [sym_comma_expression] = STATE(4873), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1628] = { - [sym__expression] = STATE(3037), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(5258), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1629] = { - [sym__expression] = STATE(2790), - [sym_comma_expression] = STATE(4915), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1630] = { - [sym__expression] = STATE(2901), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1631] = { - [sym__expression] = STATE(2787), - [sym_comma_expression] = STATE(4917), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4168), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1632] = { - [sym__expression] = STATE(2835), - [sym_comma_expression] = STATE(4922), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4170), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1633] = { - [sym_field_declaration_list] = STATE(2386), - [sym__class_name] = STATE(2086), - [sym_virtual_specifier] = STATE(4106), - [sym_base_class_clause] = STATE(4767), - [sym_template_type] = STATE(2246), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3923), - [sym_qualified_type_identifier] = STATE(2086), - [sym_macro_annotation] = STATE(1610), - [aux_sym_class_specifier_repeat1] = STATE(1610), - [sym_identifier] = ACTIONS(4140), - [anon_sym_COLON_COLON] = ACTIONS(4142), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1634] = { - [sym__expression] = STATE(2711), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1635] = { - [sym_field_declaration_list] = STATE(1434), - [sym__class_name] = STATE(1376), - [sym_virtual_specifier] = STATE(4077), - [sym_base_class_clause] = STATE(4462), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3895), - [sym_qualified_type_identifier] = STATE(1376), - [sym_macro_annotation] = STATE(1946), - [aux_sym_class_specifier_repeat1] = STATE(1946), - [sym_identifier] = ACTIONS(4100), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1636] = { - [sym__expression] = STATE(2803), - [sym_comma_expression] = STATE(5059), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4172), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1637] = { - [sym_field_declaration_list] = STATE(2099), - [sym__class_name] = STATE(1987), - [sym_virtual_specifier] = STATE(4070), - [sym_base_class_clause] = STATE(4644), - [sym_template_type] = STATE(2001), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3897), - [sym_qualified_type_identifier] = STATE(1987), - [sym_macro_annotation] = STATE(1946), - [aux_sym_class_specifier_repeat1] = STATE(1946), - [sym_identifier] = ACTIONS(4174), - [anon_sym_COLON_COLON] = ACTIONS(4176), - [anon_sym_LBRACE] = ACTIONS(4178), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1638] = { - [sym__expression] = STATE(2938), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4974), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1639] = { - [sym_field_declaration_list] = STATE(3859), - [sym__class_name] = STATE(3531), - [sym_virtual_specifier] = STATE(4017), - [sym_base_class_clause] = STATE(4624), - [sym_template_type] = STATE(3592), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3878), - [sym_qualified_type_identifier] = STATE(3531), - [sym_macro_annotation] = STATE(1609), - [aux_sym_class_specifier_repeat1] = STATE(1609), - [sym_identifier] = ACTIONS(4134), - [anon_sym_COLON_COLON] = ACTIONS(4136), - [anon_sym_LBRACE] = ACTIONS(4138), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1640] = { - [sym__expression] = STATE(2782), - [sym_comma_expression] = STATE(5143), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4180), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1641] = { - [sym__expression] = STATE(3064), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(5103), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1642] = { - [sym__expression] = STATE(2852), - [sym_comma_expression] = STATE(5141), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4182), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1643] = { - [sym__expression] = STATE(2849), - [sym_comma_expression] = STATE(5140), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4184), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1644] = { - [sym__expression] = STATE(2761), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4687), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1645] = { - [sym__expression] = STATE(2841), - [sym_comma_expression] = STATE(4901), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4186), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1646] = { - [sym__expression] = STATE(2808), - [sym_comma_expression] = STATE(5047), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4188), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1647] = { - [sym__expression] = STATE(2816), - [sym_comma_expression] = STATE(4986), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4190), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1648] = { - [sym_field_declaration_list] = STATE(2386), - [sym__class_name] = STATE(2086), - [sym_virtual_specifier] = STATE(4106), - [sym_base_class_clause] = STATE(4767), - [sym_template_type] = STATE(2246), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3909), - [sym_qualified_type_identifier] = STATE(2086), - [sym_macro_annotation] = STATE(1591), - [aux_sym_class_specifier_repeat1] = STATE(1591), - [sym_identifier] = ACTIONS(4102), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1649] = { - [sym_field_declaration_list] = STATE(2614), - [sym__class_name] = STATE(2275), - [sym_virtual_specifier] = STATE(4079), - [sym_base_class_clause] = STATE(4820), - [sym_template_type] = STATE(2424), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3876), - [sym_qualified_type_identifier] = STATE(2275), - [sym_macro_annotation] = STATE(1654), - [aux_sym_class_specifier_repeat1] = STATE(1654), - [sym_identifier] = ACTIONS(4192), - [anon_sym_COLON_COLON] = ACTIONS(4194), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1650] = { - [sym__expression] = STATE(2346), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_LPAREN2] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1651] = { - [sym__expression] = STATE(2834), - [sym_comma_expression] = STATE(5063), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1652] = { - [sym__expression] = STATE(2876), - [sym_comma_expression] = STATE(4951), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1653] = { - [sym_field_declaration_list] = STATE(1320), - [sym__class_name] = STATE(1295), - [sym_virtual_specifier] = STATE(4175), - [sym_base_class_clause] = STATE(4723), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3908), - [sym_qualified_type_identifier] = STATE(1295), - [sym_macro_annotation] = STATE(1946), - [aux_sym_class_specifier_repeat1] = STATE(1946), - [sym_identifier] = ACTIONS(4100), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1654] = { - [sym_field_declaration_list] = STATE(2553), - [sym__class_name] = STATE(2269), - [sym_virtual_specifier] = STATE(4122), - [sym_base_class_clause] = STATE(4720), - [sym_template_type] = STATE(2424), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3876), - [sym_qualified_type_identifier] = STATE(2269), - [sym_macro_annotation] = STATE(1946), - [aux_sym_class_specifier_repeat1] = STATE(1946), - [sym_identifier] = ACTIONS(4192), - [anon_sym_COLON_COLON] = ACTIONS(4194), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1655] = { - [sym__expression] = STATE(2911), - [sym_comma_expression] = STATE(4976), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1656] = { - [sym__expression] = STATE(2358), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_LPAREN2] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1657] = { - [sym_field_declaration_list] = STATE(1444), - [sym__class_name] = STATE(1380), - [sym_virtual_specifier] = STATE(4152), - [sym_base_class_clause] = STATE(4514), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3895), - [sym_qualified_type_identifier] = STATE(1380), - [sym_macro_annotation] = STATE(1635), - [aux_sym_class_specifier_repeat1] = STATE(1635), - [sym_identifier] = ACTIONS(4100), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1658] = { - [sym__expression] = STATE(2809), - [sym_comma_expression] = STATE(5021), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4202), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1659] = { - [sym__expression] = STATE(2815), - [sym_comma_expression] = STATE(4996), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1660] = { - [sym__expression] = STATE(2818), - [sym_comma_expression] = STATE(5157), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4206), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1661] = { - [sym__expression] = STATE(2872), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4667), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1662] = { - [sym__expression] = STATE(2905), - [sym_comma_expression] = STATE(4964), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4208), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1663] = { - [sym__expression] = STATE(2867), - [sym_comma_expression] = STATE(4953), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1664] = { - [sym__expression] = STATE(2798), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_initializer_list] = STATE(3079), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3719), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1665] = { - [sym__expression] = STATE(2827), - [sym_comma_expression] = STATE(4967), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4212), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1666] = { - [sym__expression] = STATE(2879), - [sym_comma_expression] = STATE(4958), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4214), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1667] = { - [sym__expression] = STATE(3125), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4982), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1668] = { - [sym_field_declaration_list] = STATE(1323), - [sym__class_name] = STATE(1286), - [sym_virtual_specifier] = STATE(4095), - [sym_base_class_clause] = STATE(4476), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3908), - [sym_qualified_type_identifier] = STATE(1286), - [sym_macro_annotation] = STATE(1653), - [aux_sym_class_specifier_repeat1] = STATE(1653), - [sym_identifier] = ACTIONS(4100), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1669] = { - [sym__expression] = STATE(2898), - [sym_comma_expression] = STATE(4959), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4216), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1670] = { - [sym__expression] = STATE(2897), - [sym_comma_expression] = STATE(4950), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4218), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1671] = { - [sym__expression] = STATE(2895), - [sym_comma_expression] = STATE(4988), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4220), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1672] = { - [sym__expression] = STATE(2884), - [sym_comma_expression] = STATE(5015), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1673] = { - [sym__expression] = STATE(2917), - [sym_comma_expression] = STATE(5134), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4224), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1674] = { - [sym__expression] = STATE(2819), - [sym_comma_expression] = STATE(5127), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4226), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1675] = { - [sym__expression] = STATE(2794), - [sym_comma_expression] = STATE(5062), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4228), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1676] = { - [sym__expression] = STATE(3057), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_initializer_list] = STATE(4838), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1677] = { - [sym__expression] = STATE(2832), - [sym_comma_expression] = STATE(4912), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4230), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1678] = { - [sym__expression] = STATE(2837), - [sym_comma_expression] = STATE(5121), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4232), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1679] = { - [sym__expression] = STATE(2857), - [sym_comma_expression] = STATE(5117), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4234), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1680] = { - [sym__expression] = STATE(2889), - [sym_comma_expression] = STATE(4933), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4236), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1681] = { - [sym__expression] = STATE(2888), - [sym_comma_expression] = STATE(4932), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4238), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1682] = { - [sym_field_declaration_list] = STATE(2301), - [sym__class_name] = STATE(2032), - [sym_virtual_specifier] = STATE(4114), - [sym_base_class_clause] = STATE(4730), - [sym_template_type] = STATE(2052), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3902), - [sym_qualified_type_identifier] = STATE(2032), - [sym_macro_annotation] = STATE(1946), - [aux_sym_class_specifier_repeat1] = STATE(1946), - [sym_identifier] = ACTIONS(4122), - [anon_sym_COLON_COLON] = ACTIONS(4124), - [anon_sym_LBRACE] = ACTIONS(4126), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1683] = { - [sym__expression] = STATE(2982), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4929), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1684] = { - [sym__expression] = STATE(2918), - [sym_comma_expression] = STATE(5110), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4240), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1685] = { - [sym__expression] = STATE(3028), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4984), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1686] = { - [sym_field_declaration_list] = STATE(1323), - [sym__class_name] = STATE(1409), - [sym_virtual_specifier] = STATE(4095), - [sym_base_class_clause] = STATE(4476), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1409), - [sym_macro_annotation] = STATE(1620), - [aux_sym_class_specifier_repeat1] = STATE(1620), - [sym_identifier] = ACTIONS(4118), + [STATE(571)] = { + [ts_builtin_sym_end] = ACTIONS(2289), + [sym_identifier] = ACTIONS(2287), + [aux_sym_preproc_include_token1] = ACTIONS(2287), + [aux_sym_preproc_def_token1] = ACTIONS(2287), + [aux_sym_preproc_if_token1] = ACTIONS(2287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2287), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2287), + [sym_preproc_directive] = ACTIONS(2287), + [anon_sym_LPAREN2] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_AMP_AMP] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym___extension__] = ACTIONS(2287), + [anon_sym_typedef] = ACTIONS(2287), + [anon_sym_virtual] = ACTIONS(2287), + [anon_sym_extern] = ACTIONS(2287), + [anon_sym___attribute__] = ACTIONS(2287), + [anon_sym___attribute] = ACTIONS(2287), + [anon_sym_COLON_COLON] = ACTIONS(2289), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2289), + [anon_sym___declspec] = ACTIONS(2287), + [anon_sym___based] = ACTIONS(2287), + [anon_sym___cdecl] = ACTIONS(2287), + [anon_sym___clrcall] = ACTIONS(2287), + [anon_sym___stdcall] = ACTIONS(2287), + [anon_sym___fastcall] = ACTIONS(2287), + [anon_sym___thiscall] = ACTIONS(2287), + [anon_sym___vectorcall] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_signed] = ACTIONS(2287), + [anon_sym_unsigned] = ACTIONS(2287), + [anon_sym_long] = ACTIONS(2287), + [anon_sym_short] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(2287), + [anon_sym_static] = ACTIONS(2287), + [anon_sym_register] = ACTIONS(2287), + [anon_sym_inline] = ACTIONS(2287), + [anon_sym___inline] = ACTIONS(2287), + [anon_sym___inline__] = ACTIONS(2287), + [anon_sym___forceinline] = ACTIONS(2287), + [anon_sym_thread_local] = ACTIONS(2287), + [anon_sym___thread] = ACTIONS(2287), + [anon_sym_const] = ACTIONS(2287), + [anon_sym_constexpr] = ACTIONS(2287), + [anon_sym_volatile] = ACTIONS(2287), + [anon_sym_restrict] = ACTIONS(2287), + [anon_sym___restrict__] = ACTIONS(2287), + [anon_sym__Atomic] = ACTIONS(2287), + [anon_sym__Noreturn] = ACTIONS(2287), + [anon_sym_noreturn] = ACTIONS(2287), + [anon_sym__Nonnull] = ACTIONS(2287), + [anon_sym_mutable] = ACTIONS(2287), + [anon_sym_constinit] = ACTIONS(2287), + [anon_sym_consteval] = ACTIONS(2287), + [anon_sym_alignas] = ACTIONS(2287), + [anon_sym__Alignas] = ACTIONS(2287), + [sym_primitive_type] = ACTIONS(2287), + [anon_sym_enum] = ACTIONS(2287), + [anon_sym_class] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(2287), + [anon_sym_union] = ACTIONS(2287), + [anon_sym_if] = ACTIONS(2287), + [anon_sym_switch] = ACTIONS(2287), + [anon_sym_case] = ACTIONS(2287), + [anon_sym_default] = ACTIONS(2287), + [anon_sym_while] = ACTIONS(2287), + [anon_sym_do] = ACTIONS(2287), + [anon_sym_for] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2287), + [anon_sym_break] = ACTIONS(2287), + [anon_sym_continue] = ACTIONS(2287), + [anon_sym_goto] = ACTIONS(2287), + [anon_sym_not] = ACTIONS(2287), + [anon_sym_compl] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_sizeof] = ACTIONS(2287), + [anon_sym___alignof__] = ACTIONS(2287), + [anon_sym___alignof] = ACTIONS(2287), + [anon_sym__alignof] = ACTIONS(2287), + [anon_sym_alignof] = ACTIONS(2287), + [anon_sym__Alignof] = ACTIONS(2287), + [anon_sym_offsetof] = ACTIONS(2287), + [anon_sym__Generic] = ACTIONS(2287), + [anon_sym_asm] = ACTIONS(2287), + [anon_sym___asm__] = ACTIONS(2287), + [anon_sym___asm] = ACTIONS(2287), + [sym_number_literal] = ACTIONS(2289), + [anon_sym_L_SQUOTE] = ACTIONS(2289), + [anon_sym_u_SQUOTE] = ACTIONS(2289), + [anon_sym_U_SQUOTE] = ACTIONS(2289), + [anon_sym_u8_SQUOTE] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_L_DQUOTE] = ACTIONS(2289), + [anon_sym_u_DQUOTE] = ACTIONS(2289), + [anon_sym_U_DQUOTE] = ACTIONS(2289), + [anon_sym_u8_DQUOTE] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(2289), + [sym_true] = ACTIONS(2287), + [sym_false] = ACTIONS(2287), + [anon_sym_NULL] = ACTIONS(2287), + [anon_sym_nullptr] = ACTIONS(2287), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2287), + [anon_sym_decltype] = ACTIONS(2287), + [anon_sym_explicit] = ACTIONS(2287), + [anon_sym_typename] = ACTIONS(2287), + [anon_sym_template] = ACTIONS(2287), + [anon_sym_operator] = ACTIONS(2287), + [anon_sym_try] = ACTIONS(2287), + [anon_sym_delete] = ACTIONS(2287), + [anon_sym_throw] = ACTIONS(2287), + [anon_sym_namespace] = ACTIONS(2287), + [anon_sym_using] = ACTIONS(2287), + [anon_sym_static_assert] = ACTIONS(2287), + [anon_sym_concept] = ACTIONS(2287), + [anon_sym_co_return] = ACTIONS(2287), + [anon_sym_co_yield] = ACTIONS(2287), + [anon_sym_R_DQUOTE] = ACTIONS(2289), + [anon_sym_LR_DQUOTE] = ACTIONS(2289), + [anon_sym_uR_DQUOTE] = ACTIONS(2289), + [anon_sym_UR_DQUOTE] = ACTIONS(2289), + [anon_sym_u8R_DQUOTE] = ACTIONS(2289), + [anon_sym_co_await] = ACTIONS(2287), + [anon_sym_new] = ACTIONS(2287), + [anon_sym_requires] = ACTIONS(2287), + [sym_this] = ACTIONS(2287), + [sym_alone_macro] = ACTIONS(2289), + [aux_sym_alone_macro_call_token1] = ACTIONS(2287), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2287), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_FORWARD] = ACTIONS(2287), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2287), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2287), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2287), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2287), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_PS_GET] = ACTIONS(2287), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2287), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2287), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2287), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2287), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2287), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2287), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2287), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2287), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2287), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2287), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2287), + [anon_sym_MOZ_COLD] = ACTIONS(2287), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2287), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2287), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2287), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2287), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2287), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2287), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2287), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2287), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2287), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2287), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2287), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2287), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2287), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2287), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2287), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2287), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2287), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2287), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2287), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2287), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_NONNULL] = ACTIONS(2287), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2287), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2287), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2287), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2287), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2287), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_NORETURN] = ACTIONS(2287), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2287), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2287), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2287), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2287), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2287), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2287), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2287), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2287), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2287), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2287), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2287), + [anon_sym_MOZ_RAII] = ACTIONS(2287), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2287), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2287), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2287), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2287), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2287), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2287), + }, + [STATE(572)] = { + [ts_builtin_sym_end] = ACTIONS(2196), + [sym_identifier] = ACTIONS(2194), + [aux_sym_preproc_include_token1] = ACTIONS(2194), + [aux_sym_preproc_def_token1] = ACTIONS(2194), + [aux_sym_preproc_if_token1] = ACTIONS(2194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), + [sym_preproc_directive] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2196), + [anon_sym_TILDE] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym___extension__] = ACTIONS(2194), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_virtual] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(2194), + [anon_sym___attribute__] = ACTIONS(2194), + [anon_sym___attribute] = ACTIONS(2194), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2196), + [anon_sym___declspec] = ACTIONS(2194), + [anon_sym___based] = ACTIONS(2194), + [anon_sym___cdecl] = ACTIONS(2194), + [anon_sym___clrcall] = ACTIONS(2194), + [anon_sym___stdcall] = ACTIONS(2194), + [anon_sym___fastcall] = ACTIONS(2194), + [anon_sym___thiscall] = ACTIONS(2194), + [anon_sym___vectorcall] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_signed] = ACTIONS(2194), + [anon_sym_unsigned] = ACTIONS(2194), + [anon_sym_long] = ACTIONS(2194), + [anon_sym_short] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2194), + [anon_sym_static] = ACTIONS(2194), + [anon_sym_register] = ACTIONS(2194), + [anon_sym_inline] = ACTIONS(2194), + [anon_sym___inline] = ACTIONS(2194), + [anon_sym___inline__] = ACTIONS(2194), + [anon_sym___forceinline] = ACTIONS(2194), + [anon_sym_thread_local] = ACTIONS(2194), + [anon_sym___thread] = ACTIONS(2194), + [anon_sym_const] = ACTIONS(2194), + [anon_sym_constexpr] = ACTIONS(2194), + [anon_sym_volatile] = ACTIONS(2194), + [anon_sym_restrict] = ACTIONS(2194), + [anon_sym___restrict__] = ACTIONS(2194), + [anon_sym__Atomic] = ACTIONS(2194), + [anon_sym__Noreturn] = ACTIONS(2194), + [anon_sym_noreturn] = ACTIONS(2194), + [anon_sym__Nonnull] = ACTIONS(2194), + [anon_sym_mutable] = ACTIONS(2194), + [anon_sym_constinit] = ACTIONS(2194), + [anon_sym_consteval] = ACTIONS(2194), + [anon_sym_alignas] = ACTIONS(2194), + [anon_sym__Alignas] = ACTIONS(2194), + [sym_primitive_type] = ACTIONS(2194), + [anon_sym_enum] = ACTIONS(2194), + [anon_sym_class] = ACTIONS(2194), + [anon_sym_struct] = ACTIONS(2194), + [anon_sym_union] = ACTIONS(2194), + [anon_sym_if] = ACTIONS(2194), + [anon_sym_switch] = ACTIONS(2194), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2194), + [anon_sym_while] = ACTIONS(2194), + [anon_sym_do] = ACTIONS(2194), + [anon_sym_for] = ACTIONS(2194), + [anon_sym_return] = ACTIONS(2194), + [anon_sym_break] = ACTIONS(2194), + [anon_sym_continue] = ACTIONS(2194), + [anon_sym_goto] = ACTIONS(2194), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_compl] = ACTIONS(2194), + [anon_sym_DASH_DASH] = ACTIONS(2196), + [anon_sym_PLUS_PLUS] = ACTIONS(2196), + [anon_sym_sizeof] = ACTIONS(2194), + [anon_sym___alignof__] = ACTIONS(2194), + [anon_sym___alignof] = ACTIONS(2194), + [anon_sym__alignof] = ACTIONS(2194), + [anon_sym_alignof] = ACTIONS(2194), + [anon_sym__Alignof] = ACTIONS(2194), + [anon_sym_offsetof] = ACTIONS(2194), + [anon_sym__Generic] = ACTIONS(2194), + [anon_sym_asm] = ACTIONS(2194), + [anon_sym___asm__] = ACTIONS(2194), + [anon_sym___asm] = ACTIONS(2194), + [sym_number_literal] = ACTIONS(2196), + [anon_sym_L_SQUOTE] = ACTIONS(2196), + [anon_sym_u_SQUOTE] = ACTIONS(2196), + [anon_sym_U_SQUOTE] = ACTIONS(2196), + [anon_sym_u8_SQUOTE] = ACTIONS(2196), + [anon_sym_SQUOTE] = ACTIONS(2196), + [anon_sym_L_DQUOTE] = ACTIONS(2196), + [anon_sym_u_DQUOTE] = ACTIONS(2196), + [anon_sym_U_DQUOTE] = ACTIONS(2196), + [anon_sym_u8_DQUOTE] = ACTIONS(2196), + [anon_sym_DQUOTE] = ACTIONS(2196), + [sym_true] = ACTIONS(2194), + [sym_false] = ACTIONS(2194), + [anon_sym_NULL] = ACTIONS(2194), + [anon_sym_nullptr] = ACTIONS(2194), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2194), + [anon_sym_decltype] = ACTIONS(2194), + [anon_sym_explicit] = ACTIONS(2194), + [anon_sym_typename] = ACTIONS(2194), + [anon_sym_template] = ACTIONS(2194), + [anon_sym_operator] = ACTIONS(2194), + [anon_sym_try] = ACTIONS(2194), + [anon_sym_delete] = ACTIONS(2194), + [anon_sym_throw] = ACTIONS(2194), + [anon_sym_namespace] = ACTIONS(2194), + [anon_sym_using] = ACTIONS(2194), + [anon_sym_static_assert] = ACTIONS(2194), + [anon_sym_concept] = ACTIONS(2194), + [anon_sym_co_return] = ACTIONS(2194), + [anon_sym_co_yield] = ACTIONS(2194), + [anon_sym_R_DQUOTE] = ACTIONS(2196), + [anon_sym_LR_DQUOTE] = ACTIONS(2196), + [anon_sym_uR_DQUOTE] = ACTIONS(2196), + [anon_sym_UR_DQUOTE] = ACTIONS(2196), + [anon_sym_u8R_DQUOTE] = ACTIONS(2196), + [anon_sym_co_await] = ACTIONS(2194), + [anon_sym_new] = ACTIONS(2194), + [anon_sym_requires] = ACTIONS(2194), + [sym_this] = ACTIONS(2194), + [sym_alone_macro] = ACTIONS(2196), + [aux_sym_alone_macro_call_token1] = ACTIONS(2194), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2194), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_FORWARD] = ACTIONS(2194), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2194), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2194), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2194), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2194), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_PS_GET] = ACTIONS(2194), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2194), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2194), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2194), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2194), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2194), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2194), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2194), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2194), + [anon_sym_MOZ_COLD] = ACTIONS(2194), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2194), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2194), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2194), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2194), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2194), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2194), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2194), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2194), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2194), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2194), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2194), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2194), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2194), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_NONNULL] = ACTIONS(2194), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2194), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2194), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2194), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2194), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2194), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2194), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2194), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2194), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2194), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2194), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2194), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2194), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2194), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2194), + [anon_sym_MOZ_RAII] = ACTIONS(2194), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2194), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2194), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2194), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2194), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2194), + }, + [STATE(573)] = { + [ts_builtin_sym_end] = ACTIONS(2200), + [sym_identifier] = ACTIONS(2198), + [aux_sym_preproc_include_token1] = ACTIONS(2198), + [aux_sym_preproc_def_token1] = ACTIONS(2198), + [aux_sym_preproc_if_token1] = ACTIONS(2198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2198), + [sym_preproc_directive] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2198), + [anon_sym_PLUS] = ACTIONS(2198), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_AMP_AMP] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym___extension__] = ACTIONS(2198), + [anon_sym_typedef] = ACTIONS(2198), + [anon_sym_virtual] = ACTIONS(2198), + [anon_sym_extern] = ACTIONS(2198), + [anon_sym___attribute__] = ACTIONS(2198), + [anon_sym___attribute] = ACTIONS(2198), + [anon_sym_COLON_COLON] = ACTIONS(2200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2200), + [anon_sym___declspec] = ACTIONS(2198), + [anon_sym___based] = ACTIONS(2198), + [anon_sym___cdecl] = ACTIONS(2198), + [anon_sym___clrcall] = ACTIONS(2198), + [anon_sym___stdcall] = ACTIONS(2198), + [anon_sym___fastcall] = ACTIONS(2198), + [anon_sym___thiscall] = ACTIONS(2198), + [anon_sym___vectorcall] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_signed] = ACTIONS(2198), + [anon_sym_unsigned] = ACTIONS(2198), + [anon_sym_long] = ACTIONS(2198), + [anon_sym_short] = ACTIONS(2198), + [anon_sym_LBRACK] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_register] = ACTIONS(2198), + [anon_sym_inline] = ACTIONS(2198), + [anon_sym___inline] = ACTIONS(2198), + [anon_sym___inline__] = ACTIONS(2198), + [anon_sym___forceinline] = ACTIONS(2198), + [anon_sym_thread_local] = ACTIONS(2198), + [anon_sym___thread] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_constexpr] = ACTIONS(2198), + [anon_sym_volatile] = ACTIONS(2198), + [anon_sym_restrict] = ACTIONS(2198), + [anon_sym___restrict__] = ACTIONS(2198), + [anon_sym__Atomic] = ACTIONS(2198), + [anon_sym__Noreturn] = ACTIONS(2198), + [anon_sym_noreturn] = ACTIONS(2198), + [anon_sym__Nonnull] = ACTIONS(2198), + [anon_sym_mutable] = ACTIONS(2198), + [anon_sym_constinit] = ACTIONS(2198), + [anon_sym_consteval] = ACTIONS(2198), + [anon_sym_alignas] = ACTIONS(2198), + [anon_sym__Alignas] = ACTIONS(2198), + [sym_primitive_type] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), + [anon_sym_class] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(2198), + [anon_sym_union] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2198), + [anon_sym_switch] = ACTIONS(2198), + [anon_sym_case] = ACTIONS(2198), + [anon_sym_default] = ACTIONS(2198), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(2198), + [anon_sym_for] = ACTIONS(2198), + [anon_sym_return] = ACTIONS(2198), + [anon_sym_break] = ACTIONS(2198), + [anon_sym_continue] = ACTIONS(2198), + [anon_sym_goto] = ACTIONS(2198), + [anon_sym_not] = ACTIONS(2198), + [anon_sym_compl] = ACTIONS(2198), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [anon_sym_PLUS_PLUS] = ACTIONS(2200), + [anon_sym_sizeof] = ACTIONS(2198), + [anon_sym___alignof__] = ACTIONS(2198), + [anon_sym___alignof] = ACTIONS(2198), + [anon_sym__alignof] = ACTIONS(2198), + [anon_sym_alignof] = ACTIONS(2198), + [anon_sym__Alignof] = ACTIONS(2198), + [anon_sym_offsetof] = ACTIONS(2198), + [anon_sym__Generic] = ACTIONS(2198), + [anon_sym_asm] = ACTIONS(2198), + [anon_sym___asm__] = ACTIONS(2198), + [anon_sym___asm] = ACTIONS(2198), + [sym_number_literal] = ACTIONS(2200), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2200), + [anon_sym_u_DQUOTE] = ACTIONS(2200), + [anon_sym_U_DQUOTE] = ACTIONS(2200), + [anon_sym_u8_DQUOTE] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [sym_true] = ACTIONS(2198), + [sym_false] = ACTIONS(2198), + [anon_sym_NULL] = ACTIONS(2198), + [anon_sym_nullptr] = ACTIONS(2198), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2198), + [anon_sym_decltype] = ACTIONS(2198), + [anon_sym_explicit] = ACTIONS(2198), + [anon_sym_typename] = ACTIONS(2198), + [anon_sym_template] = ACTIONS(2198), + [anon_sym_operator] = ACTIONS(2198), + [anon_sym_try] = ACTIONS(2198), + [anon_sym_delete] = ACTIONS(2198), + [anon_sym_throw] = ACTIONS(2198), + [anon_sym_namespace] = ACTIONS(2198), + [anon_sym_using] = ACTIONS(2198), + [anon_sym_static_assert] = ACTIONS(2198), + [anon_sym_concept] = ACTIONS(2198), + [anon_sym_co_return] = ACTIONS(2198), + [anon_sym_co_yield] = ACTIONS(2198), + [anon_sym_R_DQUOTE] = ACTIONS(2200), + [anon_sym_LR_DQUOTE] = ACTIONS(2200), + [anon_sym_uR_DQUOTE] = ACTIONS(2200), + [anon_sym_UR_DQUOTE] = ACTIONS(2200), + [anon_sym_u8R_DQUOTE] = ACTIONS(2200), + [anon_sym_co_await] = ACTIONS(2198), + [anon_sym_new] = ACTIONS(2198), + [anon_sym_requires] = ACTIONS(2198), + [sym_this] = ACTIONS(2198), + [sym_alone_macro] = ACTIONS(2200), + [aux_sym_alone_macro_call_token1] = ACTIONS(2198), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2198), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_FORWARD] = ACTIONS(2198), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2198), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2198), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2198), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2198), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_PS_GET] = ACTIONS(2198), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2198), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2198), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2198), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2198), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2198), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2198), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2198), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2198), + [anon_sym_MOZ_COLD] = ACTIONS(2198), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2198), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2198), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2198), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2198), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2198), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2198), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2198), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2198), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2198), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2198), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2198), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2198), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2198), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_NONNULL] = ACTIONS(2198), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2198), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2198), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2198), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2198), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2198), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2198), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2198), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2198), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2198), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2198), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2198), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2198), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2198), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2198), + [anon_sym_MOZ_RAII] = ACTIONS(2198), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2198), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2198), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2198), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2198), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2198), + }, + [STATE(574)] = { + [ts_builtin_sym_end] = ACTIONS(2297), + [sym_identifier] = ACTIONS(2295), + [aux_sym_preproc_include_token1] = ACTIONS(2295), + [aux_sym_preproc_def_token1] = ACTIONS(2295), + [aux_sym_preproc_if_token1] = ACTIONS(2295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2295), + [sym_preproc_directive] = ACTIONS(2295), + [anon_sym_LPAREN2] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2295), + [anon_sym_PLUS] = ACTIONS(2295), + [anon_sym_STAR] = ACTIONS(2297), + [anon_sym_AMP_AMP] = ACTIONS(2297), + [anon_sym_AMP] = ACTIONS(2295), + [anon_sym_SEMI] = ACTIONS(2297), + [anon_sym___extension__] = ACTIONS(2295), + [anon_sym_typedef] = ACTIONS(2295), + [anon_sym_virtual] = ACTIONS(2295), + [anon_sym_extern] = ACTIONS(2295), + [anon_sym___attribute__] = ACTIONS(2295), + [anon_sym___attribute] = ACTIONS(2295), + [anon_sym_COLON_COLON] = ACTIONS(2297), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2297), + [anon_sym___declspec] = ACTIONS(2295), + [anon_sym___based] = ACTIONS(2295), + [anon_sym___cdecl] = ACTIONS(2295), + [anon_sym___clrcall] = ACTIONS(2295), + [anon_sym___stdcall] = ACTIONS(2295), + [anon_sym___fastcall] = ACTIONS(2295), + [anon_sym___thiscall] = ACTIONS(2295), + [anon_sym___vectorcall] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2297), + [anon_sym_signed] = ACTIONS(2295), + [anon_sym_unsigned] = ACTIONS(2295), + [anon_sym_long] = ACTIONS(2295), + [anon_sym_short] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_static] = ACTIONS(2295), + [anon_sym_register] = ACTIONS(2295), + [anon_sym_inline] = ACTIONS(2295), + [anon_sym___inline] = ACTIONS(2295), + [anon_sym___inline__] = ACTIONS(2295), + [anon_sym___forceinline] = ACTIONS(2295), + [anon_sym_thread_local] = ACTIONS(2295), + [anon_sym___thread] = ACTIONS(2295), + [anon_sym_const] = ACTIONS(2295), + [anon_sym_constexpr] = ACTIONS(2295), + [anon_sym_volatile] = ACTIONS(2295), + [anon_sym_restrict] = ACTIONS(2295), + [anon_sym___restrict__] = ACTIONS(2295), + [anon_sym__Atomic] = ACTIONS(2295), + [anon_sym__Noreturn] = ACTIONS(2295), + [anon_sym_noreturn] = ACTIONS(2295), + [anon_sym__Nonnull] = ACTIONS(2295), + [anon_sym_mutable] = ACTIONS(2295), + [anon_sym_constinit] = ACTIONS(2295), + [anon_sym_consteval] = ACTIONS(2295), + [anon_sym_alignas] = ACTIONS(2295), + [anon_sym__Alignas] = ACTIONS(2295), + [sym_primitive_type] = ACTIONS(2295), + [anon_sym_enum] = ACTIONS(2295), + [anon_sym_class] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(2295), + [anon_sym_union] = ACTIONS(2295), + [anon_sym_if] = ACTIONS(2295), + [anon_sym_switch] = ACTIONS(2295), + [anon_sym_case] = ACTIONS(2295), + [anon_sym_default] = ACTIONS(2295), + [anon_sym_while] = ACTIONS(2295), + [anon_sym_do] = ACTIONS(2295), + [anon_sym_for] = ACTIONS(2295), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_break] = ACTIONS(2295), + [anon_sym_continue] = ACTIONS(2295), + [anon_sym_goto] = ACTIONS(2295), + [anon_sym_not] = ACTIONS(2295), + [anon_sym_compl] = ACTIONS(2295), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_sizeof] = ACTIONS(2295), + [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(2295), + [anon_sym__Generic] = ACTIONS(2295), + [anon_sym_asm] = ACTIONS(2295), + [anon_sym___asm__] = ACTIONS(2295), + [anon_sym___asm] = ACTIONS(2295), + [sym_number_literal] = ACTIONS(2297), + [anon_sym_L_SQUOTE] = ACTIONS(2297), + [anon_sym_u_SQUOTE] = ACTIONS(2297), + [anon_sym_U_SQUOTE] = ACTIONS(2297), + [anon_sym_u8_SQUOTE] = ACTIONS(2297), + [anon_sym_SQUOTE] = ACTIONS(2297), + [anon_sym_L_DQUOTE] = ACTIONS(2297), + [anon_sym_u_DQUOTE] = ACTIONS(2297), + [anon_sym_U_DQUOTE] = ACTIONS(2297), + [anon_sym_u8_DQUOTE] = ACTIONS(2297), + [anon_sym_DQUOTE] = ACTIONS(2297), + [sym_true] = ACTIONS(2295), + [sym_false] = ACTIONS(2295), + [anon_sym_NULL] = ACTIONS(2295), + [anon_sym_nullptr] = ACTIONS(2295), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2295), + [anon_sym_decltype] = ACTIONS(2295), + [anon_sym_explicit] = ACTIONS(2295), + [anon_sym_typename] = ACTIONS(2295), + [anon_sym_template] = ACTIONS(2295), + [anon_sym_operator] = ACTIONS(2295), + [anon_sym_try] = ACTIONS(2295), + [anon_sym_delete] = ACTIONS(2295), + [anon_sym_throw] = ACTIONS(2295), + [anon_sym_namespace] = ACTIONS(2295), + [anon_sym_using] = ACTIONS(2295), + [anon_sym_static_assert] = ACTIONS(2295), + [anon_sym_concept] = ACTIONS(2295), + [anon_sym_co_return] = ACTIONS(2295), + [anon_sym_co_yield] = ACTIONS(2295), + [anon_sym_R_DQUOTE] = ACTIONS(2297), + [anon_sym_LR_DQUOTE] = ACTIONS(2297), + [anon_sym_uR_DQUOTE] = ACTIONS(2297), + [anon_sym_UR_DQUOTE] = ACTIONS(2297), + [anon_sym_u8R_DQUOTE] = ACTIONS(2297), + [anon_sym_co_await] = ACTIONS(2295), + [anon_sym_new] = ACTIONS(2295), + [anon_sym_requires] = ACTIONS(2295), + [sym_this] = ACTIONS(2295), + [sym_alone_macro] = ACTIONS(2297), + [aux_sym_alone_macro_call_token1] = ACTIONS(2295), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2295), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_FORWARD] = ACTIONS(2295), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2295), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2295), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2295), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2295), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_PS_GET] = ACTIONS(2295), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2295), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2295), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2295), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2295), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2295), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2295), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2295), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2295), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2295), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2295), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2295), + [anon_sym_MOZ_COLD] = ACTIONS(2295), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2295), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2295), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2295), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2295), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2295), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2295), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2295), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2295), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2295), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2295), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2295), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2295), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2295), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2295), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2295), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2295), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2295), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2295), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2295), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2295), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_NONNULL] = ACTIONS(2295), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2295), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2295), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2295), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2295), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2295), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_NORETURN] = ACTIONS(2295), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2295), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2295), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2295), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2295), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2295), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2295), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2295), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2295), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2295), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2295), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2295), + [anon_sym_MOZ_RAII] = ACTIONS(2295), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2295), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2295), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2295), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2295), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2295), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2295), + }, + [STATE(575)] = { + [sym_identifier] = ACTIONS(2172), + [aux_sym_preproc_include_token1] = ACTIONS(2172), + [aux_sym_preproc_def_token1] = ACTIONS(2172), + [aux_sym_preproc_if_token1] = ACTIONS(2172), + [aux_sym_preproc_if_token2] = ACTIONS(2172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2172), + [sym_preproc_directive] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym___extension__] = ACTIONS(2172), + [anon_sym_typedef] = ACTIONS(2172), + [anon_sym_virtual] = ACTIONS(2172), + [anon_sym_extern] = ACTIONS(2172), + [anon_sym___attribute__] = ACTIONS(2172), + [anon_sym___attribute] = ACTIONS(2172), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2175), + [anon_sym___declspec] = ACTIONS(2172), + [anon_sym___based] = ACTIONS(2172), + [anon_sym___cdecl] = ACTIONS(2172), + [anon_sym___clrcall] = ACTIONS(2172), + [anon_sym___stdcall] = ACTIONS(2172), + [anon_sym___fastcall] = ACTIONS(2172), + [anon_sym___thiscall] = ACTIONS(2172), + [anon_sym___vectorcall] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_signed] = ACTIONS(2172), + [anon_sym_unsigned] = ACTIONS(2172), + [anon_sym_long] = ACTIONS(2172), + [anon_sym_short] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_register] = ACTIONS(2172), + [anon_sym_inline] = ACTIONS(2172), + [anon_sym___inline] = ACTIONS(2172), + [anon_sym___inline__] = ACTIONS(2172), + [anon_sym___forceinline] = ACTIONS(2172), + [anon_sym_thread_local] = ACTIONS(2172), + [anon_sym___thread] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_constexpr] = ACTIONS(2172), + [anon_sym_volatile] = ACTIONS(2172), + [anon_sym_restrict] = ACTIONS(2172), + [anon_sym___restrict__] = ACTIONS(2172), + [anon_sym__Atomic] = ACTIONS(2172), + [anon_sym__Noreturn] = ACTIONS(2172), + [anon_sym_noreturn] = ACTIONS(2172), + [anon_sym__Nonnull] = ACTIONS(2172), + [anon_sym_mutable] = ACTIONS(2172), + [anon_sym_constinit] = ACTIONS(2172), + [anon_sym_consteval] = ACTIONS(2172), + [anon_sym_alignas] = ACTIONS(2172), + [anon_sym__Alignas] = ACTIONS(2172), + [sym_primitive_type] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_struct] = ACTIONS(2172), + [anon_sym_union] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_goto] = ACTIONS(2172), + [anon_sym___try] = ACTIONS(2172), + [anon_sym___leave] = ACTIONS(2172), + [anon_sym_not] = ACTIONS(2172), + [anon_sym_compl] = ACTIONS(2172), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_sizeof] = ACTIONS(2172), + [anon_sym___alignof__] = ACTIONS(2172), + [anon_sym___alignof] = ACTIONS(2172), + [anon_sym__alignof] = ACTIONS(2172), + [anon_sym_alignof] = ACTIONS(2172), + [anon_sym__Alignof] = ACTIONS(2172), + [anon_sym_offsetof] = ACTIONS(2172), + [anon_sym__Generic] = ACTIONS(2172), + [anon_sym_asm] = ACTIONS(2172), + [anon_sym___asm__] = ACTIONS(2172), + [anon_sym___asm] = ACTIONS(2172), + [sym_number_literal] = ACTIONS(2175), + [anon_sym_L_SQUOTE] = ACTIONS(2175), + [anon_sym_u_SQUOTE] = ACTIONS(2175), + [anon_sym_U_SQUOTE] = ACTIONS(2175), + [anon_sym_u8_SQUOTE] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_L_DQUOTE] = ACTIONS(2175), + [anon_sym_u_DQUOTE] = ACTIONS(2175), + [anon_sym_U_DQUOTE] = ACTIONS(2175), + [anon_sym_u8_DQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [anon_sym_NULL] = ACTIONS(2172), + [anon_sym_nullptr] = ACTIONS(2172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2172), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_explicit] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(2172), + [anon_sym_operator] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_using] = ACTIONS(2172), + [anon_sym_static_assert] = ACTIONS(2172), + [anon_sym_concept] = ACTIONS(2172), + [anon_sym_co_return] = ACTIONS(2172), + [anon_sym_co_yield] = ACTIONS(2172), + [anon_sym_R_DQUOTE] = ACTIONS(2175), + [anon_sym_LR_DQUOTE] = ACTIONS(2175), + [anon_sym_uR_DQUOTE] = ACTIONS(2175), + [anon_sym_UR_DQUOTE] = ACTIONS(2175), + [anon_sym_u8R_DQUOTE] = ACTIONS(2175), + [anon_sym_co_await] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_requires] = ACTIONS(2172), + [sym_this] = ACTIONS(2172), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2172), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_FORWARD] = ACTIONS(2172), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2172), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2172), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2172), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2172), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_PS_GET] = ACTIONS(2172), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2172), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2172), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2172), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2172), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2172), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2172), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2172), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2172), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2172), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2172), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2172), + [anon_sym_MOZ_COLD] = ACTIONS(2172), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2172), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2172), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2172), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2172), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2172), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2172), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2172), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2172), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2172), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2172), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2172), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2172), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2172), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2172), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2172), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2172), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2172), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2172), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2172), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2172), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_NONNULL] = ACTIONS(2172), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2172), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2172), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2172), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2172), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2172), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_NORETURN] = ACTIONS(2172), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2172), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2172), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2172), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2172), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2172), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2172), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2172), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2172), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2172), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2172), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2172), + [anon_sym_MOZ_RAII] = ACTIONS(2172), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2172), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2172), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2172), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2172), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2172), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2172), + }, + [STATE(576)] = { + [sym_identifier] = ACTIONS(2268), + [aux_sym_preproc_include_token1] = ACTIONS(2268), + [aux_sym_preproc_def_token1] = ACTIONS(2268), + [aux_sym_preproc_if_token1] = ACTIONS(2268), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2268), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2268), + [sym_preproc_directive] = ACTIONS(2268), + [anon_sym_LPAREN2] = ACTIONS(2270), + [anon_sym_BANG] = ACTIONS(2270), + [anon_sym_TILDE] = ACTIONS(2270), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_AMP_AMP] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym___extension__] = ACTIONS(2268), + [anon_sym_typedef] = ACTIONS(2268), + [anon_sym_virtual] = ACTIONS(2268), + [anon_sym_extern] = ACTIONS(2268), + [anon_sym___attribute__] = ACTIONS(2268), + [anon_sym___attribute] = ACTIONS(2268), + [anon_sym_COLON_COLON] = ACTIONS(2270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2270), + [anon_sym___declspec] = ACTIONS(2268), + [anon_sym___based] = ACTIONS(2268), + [anon_sym___cdecl] = ACTIONS(2268), + [anon_sym___clrcall] = ACTIONS(2268), + [anon_sym___stdcall] = ACTIONS(2268), + [anon_sym___fastcall] = ACTIONS(2268), + [anon_sym___thiscall] = ACTIONS(2268), + [anon_sym___vectorcall] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2270), + [anon_sym_signed] = ACTIONS(2268), + [anon_sym_unsigned] = ACTIONS(2268), + [anon_sym_long] = ACTIONS(2268), + [anon_sym_short] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_register] = ACTIONS(2268), + [anon_sym_inline] = ACTIONS(2268), + [anon_sym___inline] = ACTIONS(2268), + [anon_sym___inline__] = ACTIONS(2268), + [anon_sym___forceinline] = ACTIONS(2268), + [anon_sym_thread_local] = ACTIONS(2268), + [anon_sym___thread] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_constexpr] = ACTIONS(2268), + [anon_sym_volatile] = ACTIONS(2268), + [anon_sym_restrict] = ACTIONS(2268), + [anon_sym___restrict__] = ACTIONS(2268), + [anon_sym__Atomic] = ACTIONS(2268), + [anon_sym__Noreturn] = ACTIONS(2268), + [anon_sym_noreturn] = ACTIONS(2268), + [anon_sym__Nonnull] = ACTIONS(2268), + [anon_sym_mutable] = ACTIONS(2268), + [anon_sym_constinit] = ACTIONS(2268), + [anon_sym_consteval] = ACTIONS(2268), + [anon_sym_alignas] = ACTIONS(2268), + [anon_sym__Alignas] = ACTIONS(2268), + [sym_primitive_type] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(2268), + [anon_sym_union] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_case] = ACTIONS(2268), + [anon_sym_default] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_goto] = ACTIONS(2268), + [anon_sym___try] = ACTIONS(2268), + [anon_sym___leave] = ACTIONS(2268), + [anon_sym_not] = ACTIONS(2268), + [anon_sym_compl] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2270), + [anon_sym_PLUS_PLUS] = ACTIONS(2270), + [anon_sym_sizeof] = ACTIONS(2268), + [anon_sym___alignof__] = ACTIONS(2268), + [anon_sym___alignof] = ACTIONS(2268), + [anon_sym__alignof] = ACTIONS(2268), + [anon_sym_alignof] = ACTIONS(2268), + [anon_sym__Alignof] = ACTIONS(2268), + [anon_sym_offsetof] = ACTIONS(2268), + [anon_sym__Generic] = ACTIONS(2268), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2270), + [anon_sym_u_DQUOTE] = ACTIONS(2270), + [anon_sym_U_DQUOTE] = ACTIONS(2270), + [anon_sym_u8_DQUOTE] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2270), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [anon_sym_NULL] = ACTIONS(2268), + [anon_sym_nullptr] = ACTIONS(2268), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2268), + [anon_sym_decltype] = ACTIONS(2268), + [anon_sym_explicit] = ACTIONS(2268), + [anon_sym_typename] = ACTIONS(2268), + [anon_sym_template] = ACTIONS(2268), + [anon_sym_operator] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_using] = ACTIONS(2268), + [anon_sym_static_assert] = ACTIONS(2268), + [anon_sym_concept] = ACTIONS(2268), + [anon_sym_co_return] = ACTIONS(2268), + [anon_sym_co_yield] = ACTIONS(2268), + [anon_sym_R_DQUOTE] = ACTIONS(2270), + [anon_sym_LR_DQUOTE] = ACTIONS(2270), + [anon_sym_uR_DQUOTE] = ACTIONS(2270), + [anon_sym_UR_DQUOTE] = ACTIONS(2270), + [anon_sym_u8R_DQUOTE] = ACTIONS(2270), + [anon_sym_co_await] = ACTIONS(2268), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_requires] = ACTIONS(2268), + [sym_this] = ACTIONS(2268), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2268), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_FORWARD] = ACTIONS(2268), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2268), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2268), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2268), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2268), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_PS_GET] = ACTIONS(2268), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2268), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2268), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2268), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2268), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2268), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2268), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2268), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2268), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2268), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2268), + [anon_sym_MOZ_COLD] = ACTIONS(2268), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2268), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2268), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2268), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2268), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2268), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2268), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2268), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2268), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2268), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2268), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2268), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2268), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2268), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2268), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2268), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2268), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2268), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2268), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2268), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_NONNULL] = ACTIONS(2268), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2268), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2268), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2268), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2268), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2268), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_NORETURN] = ACTIONS(2268), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2268), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2268), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2268), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2268), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2268), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2268), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2268), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2268), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2268), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2268), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2268), + [anon_sym_MOZ_RAII] = ACTIONS(2268), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2268), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2268), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2268), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2268), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2268), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2268), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2268), + }, + [STATE(577)] = { + [sym_identifier] = ACTIONS(2272), + [aux_sym_preproc_include_token1] = ACTIONS(2272), + [aux_sym_preproc_def_token1] = ACTIONS(2272), + [aux_sym_preproc_if_token1] = ACTIONS(2272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2272), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2272), + [sym_preproc_directive] = ACTIONS(2272), + [anon_sym_LPAREN2] = ACTIONS(2274), + [anon_sym_BANG] = ACTIONS(2274), + [anon_sym_TILDE] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2272), + [anon_sym_PLUS] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2274), + [anon_sym_AMP_AMP] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym___extension__] = ACTIONS(2272), + [anon_sym_typedef] = ACTIONS(2272), + [anon_sym_virtual] = ACTIONS(2272), + [anon_sym_extern] = ACTIONS(2272), + [anon_sym___attribute__] = ACTIONS(2272), + [anon_sym___attribute] = ACTIONS(2272), + [anon_sym_COLON_COLON] = ACTIONS(2274), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2274), + [anon_sym___declspec] = ACTIONS(2272), + [anon_sym___based] = ACTIONS(2272), + [anon_sym___cdecl] = ACTIONS(2272), + [anon_sym___clrcall] = ACTIONS(2272), + [anon_sym___stdcall] = ACTIONS(2272), + [anon_sym___fastcall] = ACTIONS(2272), + [anon_sym___thiscall] = ACTIONS(2272), + [anon_sym___vectorcall] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2274), + [anon_sym_signed] = ACTIONS(2272), + [anon_sym_unsigned] = ACTIONS(2272), + [anon_sym_long] = ACTIONS(2272), + [anon_sym_short] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_static] = ACTIONS(2272), + [anon_sym_register] = ACTIONS(2272), + [anon_sym_inline] = ACTIONS(2272), + [anon_sym___inline] = ACTIONS(2272), + [anon_sym___inline__] = ACTIONS(2272), + [anon_sym___forceinline] = ACTIONS(2272), + [anon_sym_thread_local] = ACTIONS(2272), + [anon_sym___thread] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [anon_sym_constexpr] = ACTIONS(2272), + [anon_sym_volatile] = ACTIONS(2272), + [anon_sym_restrict] = ACTIONS(2272), + [anon_sym___restrict__] = ACTIONS(2272), + [anon_sym__Atomic] = ACTIONS(2272), + [anon_sym__Noreturn] = ACTIONS(2272), + [anon_sym_noreturn] = ACTIONS(2272), + [anon_sym__Nonnull] = ACTIONS(2272), + [anon_sym_mutable] = ACTIONS(2272), + [anon_sym_constinit] = ACTIONS(2272), + [anon_sym_consteval] = ACTIONS(2272), + [anon_sym_alignas] = ACTIONS(2272), + [anon_sym__Alignas] = ACTIONS(2272), + [sym_primitive_type] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), + [anon_sym_class] = ACTIONS(2272), + [anon_sym_struct] = ACTIONS(2272), + [anon_sym_union] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_switch] = ACTIONS(2272), + [anon_sym_case] = ACTIONS(2272), + [anon_sym_default] = ACTIONS(2272), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_goto] = ACTIONS(2272), + [anon_sym___try] = ACTIONS(2272), + [anon_sym___leave] = ACTIONS(2272), + [anon_sym_not] = ACTIONS(2272), + [anon_sym_compl] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2274), + [anon_sym_PLUS_PLUS] = ACTIONS(2274), + [anon_sym_sizeof] = ACTIONS(2272), + [anon_sym___alignof__] = ACTIONS(2272), + [anon_sym___alignof] = ACTIONS(2272), + [anon_sym__alignof] = ACTIONS(2272), + [anon_sym_alignof] = ACTIONS(2272), + [anon_sym__Alignof] = ACTIONS(2272), + [anon_sym_offsetof] = ACTIONS(2272), + [anon_sym__Generic] = ACTIONS(2272), + [anon_sym_asm] = ACTIONS(2272), + [anon_sym___asm__] = ACTIONS(2272), + [anon_sym___asm] = ACTIONS(2272), + [sym_number_literal] = ACTIONS(2274), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2272), + [sym_false] = ACTIONS(2272), + [anon_sym_NULL] = ACTIONS(2272), + [anon_sym_nullptr] = ACTIONS(2272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2272), + [anon_sym_decltype] = ACTIONS(2272), + [anon_sym_explicit] = ACTIONS(2272), + [anon_sym_typename] = ACTIONS(2272), + [anon_sym_template] = ACTIONS(2272), + [anon_sym_operator] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2272), + [anon_sym_delete] = ACTIONS(2272), + [anon_sym_throw] = ACTIONS(2272), + [anon_sym_namespace] = ACTIONS(2272), + [anon_sym_using] = ACTIONS(2272), + [anon_sym_static_assert] = ACTIONS(2272), + [anon_sym_concept] = ACTIONS(2272), + [anon_sym_co_return] = ACTIONS(2272), + [anon_sym_co_yield] = ACTIONS(2272), + [anon_sym_R_DQUOTE] = ACTIONS(2274), + [anon_sym_LR_DQUOTE] = ACTIONS(2274), + [anon_sym_uR_DQUOTE] = ACTIONS(2274), + [anon_sym_UR_DQUOTE] = ACTIONS(2274), + [anon_sym_u8R_DQUOTE] = ACTIONS(2274), + [anon_sym_co_await] = ACTIONS(2272), + [anon_sym_new] = ACTIONS(2272), + [anon_sym_requires] = ACTIONS(2272), + [sym_this] = ACTIONS(2272), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2272), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_FORWARD] = ACTIONS(2272), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2272), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2272), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2272), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2272), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_PS_GET] = ACTIONS(2272), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2272), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2272), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2272), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2272), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2272), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2272), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2272), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2272), + [anon_sym_MOZ_COLD] = ACTIONS(2272), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2272), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2272), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2272), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2272), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2272), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2272), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2272), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2272), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2272), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2272), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2272), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2272), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2272), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_NONNULL] = ACTIONS(2272), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2272), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2272), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2272), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2272), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2272), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2272), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2272), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2272), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2272), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2272), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2272), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2272), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2272), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2272), + [anon_sym_MOZ_RAII] = ACTIONS(2272), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2272), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2272), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2272), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2272), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2272), + }, + [STATE(578)] = { + [sym_identifier] = ACTIONS(2396), + [aux_sym_preproc_include_token1] = ACTIONS(2396), + [aux_sym_preproc_def_token1] = ACTIONS(2396), + [aux_sym_preproc_if_token1] = ACTIONS(2396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2396), + [sym_preproc_directive] = ACTIONS(2396), + [anon_sym_LPAREN2] = ACTIONS(2398), + [anon_sym_BANG] = ACTIONS(2398), + [anon_sym_TILDE] = ACTIONS(2398), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym___extension__] = ACTIONS(2396), + [anon_sym_typedef] = ACTIONS(2396), + [anon_sym_virtual] = ACTIONS(2396), + [anon_sym_extern] = ACTIONS(2396), + [anon_sym___attribute__] = ACTIONS(2396), + [anon_sym___attribute] = ACTIONS(2396), + [anon_sym_COLON_COLON] = ACTIONS(2398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2398), + [anon_sym___declspec] = ACTIONS(2396), + [anon_sym___based] = ACTIONS(2396), + [anon_sym___cdecl] = ACTIONS(2396), + [anon_sym___clrcall] = ACTIONS(2396), + [anon_sym___stdcall] = ACTIONS(2396), + [anon_sym___fastcall] = ACTIONS(2396), + [anon_sym___thiscall] = ACTIONS(2396), + [anon_sym___vectorcall] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2398), + [anon_sym_signed] = ACTIONS(2396), + [anon_sym_unsigned] = ACTIONS(2396), + [anon_sym_long] = ACTIONS(2396), + [anon_sym_short] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_register] = ACTIONS(2396), + [anon_sym_inline] = ACTIONS(2396), + [anon_sym___inline] = ACTIONS(2396), + [anon_sym___inline__] = ACTIONS(2396), + [anon_sym___forceinline] = ACTIONS(2396), + [anon_sym_thread_local] = ACTIONS(2396), + [anon_sym___thread] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_constexpr] = ACTIONS(2396), + [anon_sym_volatile] = ACTIONS(2396), + [anon_sym_restrict] = ACTIONS(2396), + [anon_sym___restrict__] = ACTIONS(2396), + [anon_sym__Atomic] = ACTIONS(2396), + [anon_sym__Noreturn] = ACTIONS(2396), + [anon_sym_noreturn] = ACTIONS(2396), + [anon_sym__Nonnull] = ACTIONS(2396), + [anon_sym_mutable] = ACTIONS(2396), + [anon_sym_constinit] = ACTIONS(2396), + [anon_sym_consteval] = ACTIONS(2396), + [anon_sym_alignas] = ACTIONS(2396), + [anon_sym__Alignas] = ACTIONS(2396), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_struct] = ACTIONS(2396), + [anon_sym_union] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_case] = ACTIONS(2396), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_goto] = ACTIONS(2396), + [anon_sym___try] = ACTIONS(2396), + [anon_sym___leave] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2396), + [anon_sym_compl] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2398), + [anon_sym_PLUS_PLUS] = ACTIONS(2398), + [anon_sym_sizeof] = ACTIONS(2396), + [anon_sym___alignof__] = ACTIONS(2396), + [anon_sym___alignof] = ACTIONS(2396), + [anon_sym__alignof] = ACTIONS(2396), + [anon_sym_alignof] = ACTIONS(2396), + [anon_sym__Alignof] = ACTIONS(2396), + [anon_sym_offsetof] = ACTIONS(2396), + [anon_sym__Generic] = ACTIONS(2396), + [anon_sym_asm] = ACTIONS(2396), + [anon_sym___asm__] = ACTIONS(2396), + [anon_sym___asm] = ACTIONS(2396), + [sym_number_literal] = ACTIONS(2398), + [anon_sym_L_SQUOTE] = ACTIONS(2398), + [anon_sym_u_SQUOTE] = ACTIONS(2398), + [anon_sym_U_SQUOTE] = ACTIONS(2398), + [anon_sym_u8_SQUOTE] = ACTIONS(2398), + [anon_sym_SQUOTE] = ACTIONS(2398), + [anon_sym_L_DQUOTE] = ACTIONS(2398), + [anon_sym_u_DQUOTE] = ACTIONS(2398), + [anon_sym_U_DQUOTE] = ACTIONS(2398), + [anon_sym_u8_DQUOTE] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [anon_sym_NULL] = ACTIONS(2396), + [anon_sym_nullptr] = ACTIONS(2396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2396), + [anon_sym_decltype] = ACTIONS(2396), + [anon_sym_explicit] = ACTIONS(2396), + [anon_sym_typename] = ACTIONS(2396), + [anon_sym_template] = ACTIONS(2396), + [anon_sym_operator] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_static_assert] = ACTIONS(2396), + [anon_sym_concept] = ACTIONS(2396), + [anon_sym_co_return] = ACTIONS(2396), + [anon_sym_co_yield] = ACTIONS(2396), + [anon_sym_R_DQUOTE] = ACTIONS(2398), + [anon_sym_LR_DQUOTE] = ACTIONS(2398), + [anon_sym_uR_DQUOTE] = ACTIONS(2398), + [anon_sym_UR_DQUOTE] = ACTIONS(2398), + [anon_sym_u8R_DQUOTE] = ACTIONS(2398), + [anon_sym_co_await] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_requires] = ACTIONS(2396), + [sym_this] = ACTIONS(2396), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2396), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_FORWARD] = ACTIONS(2396), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2396), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2396), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2396), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2396), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_PS_GET] = ACTIONS(2396), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2396), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2396), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2396), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2396), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2396), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2396), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2396), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2396), + [anon_sym_MOZ_COLD] = ACTIONS(2396), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2396), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2396), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2396), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2396), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2396), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2396), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2396), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2396), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2396), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2396), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2396), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2396), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2396), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_NONNULL] = ACTIONS(2396), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2396), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2396), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2396), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2396), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2396), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2396), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2396), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2396), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2396), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2396), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2396), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2396), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2396), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2396), + [anon_sym_MOZ_RAII] = ACTIONS(2396), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2396), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2396), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2396), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2396), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2396), + }, + [STATE(579)] = { + [sym_identifier] = ACTIONS(2400), + [aux_sym_preproc_include_token1] = ACTIONS(2400), + [aux_sym_preproc_def_token1] = ACTIONS(2400), + [aux_sym_preproc_if_token1] = ACTIONS(2400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2400), + [sym_preproc_directive] = ACTIONS(2400), + [anon_sym_LPAREN2] = ACTIONS(2402), + [anon_sym_BANG] = ACTIONS(2402), + [anon_sym_TILDE] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_AMP] = ACTIONS(2400), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym___extension__] = ACTIONS(2400), + [anon_sym_typedef] = ACTIONS(2400), + [anon_sym_virtual] = ACTIONS(2400), + [anon_sym_extern] = ACTIONS(2400), + [anon_sym___attribute__] = ACTIONS(2400), + [anon_sym___attribute] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2402), + [anon_sym___declspec] = ACTIONS(2400), + [anon_sym___based] = ACTIONS(2400), + [anon_sym___cdecl] = ACTIONS(2400), + [anon_sym___clrcall] = ACTIONS(2400), + [anon_sym___stdcall] = ACTIONS(2400), + [anon_sym___fastcall] = ACTIONS(2400), + [anon_sym___thiscall] = ACTIONS(2400), + [anon_sym___vectorcall] = ACTIONS(2400), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_signed] = ACTIONS(2400), + [anon_sym_unsigned] = ACTIONS(2400), + [anon_sym_long] = ACTIONS(2400), + [anon_sym_short] = ACTIONS(2400), + [anon_sym_LBRACK] = ACTIONS(2400), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_register] = ACTIONS(2400), + [anon_sym_inline] = ACTIONS(2400), + [anon_sym___inline] = ACTIONS(2400), + [anon_sym___inline__] = ACTIONS(2400), + [anon_sym___forceinline] = ACTIONS(2400), + [anon_sym_thread_local] = ACTIONS(2400), + [anon_sym___thread] = ACTIONS(2400), + [anon_sym_const] = ACTIONS(2400), + [anon_sym_constexpr] = ACTIONS(2400), + [anon_sym_volatile] = ACTIONS(2400), + [anon_sym_restrict] = ACTIONS(2400), + [anon_sym___restrict__] = ACTIONS(2400), + [anon_sym__Atomic] = ACTIONS(2400), + [anon_sym__Noreturn] = ACTIONS(2400), + [anon_sym_noreturn] = ACTIONS(2400), + [anon_sym__Nonnull] = ACTIONS(2400), + [anon_sym_mutable] = ACTIONS(2400), + [anon_sym_constinit] = ACTIONS(2400), + [anon_sym_consteval] = ACTIONS(2400), + [anon_sym_alignas] = ACTIONS(2400), + [anon_sym__Alignas] = ACTIONS(2400), + [sym_primitive_type] = ACTIONS(2400), + [anon_sym_enum] = ACTIONS(2400), + [anon_sym_class] = ACTIONS(2400), + [anon_sym_struct] = ACTIONS(2400), + [anon_sym_union] = ACTIONS(2400), + [anon_sym_if] = ACTIONS(2400), + [anon_sym_switch] = ACTIONS(2400), + [anon_sym_case] = ACTIONS(2400), + [anon_sym_default] = ACTIONS(2400), + [anon_sym_while] = ACTIONS(2400), + [anon_sym_do] = ACTIONS(2400), + [anon_sym_for] = ACTIONS(2400), + [anon_sym_return] = ACTIONS(2400), + [anon_sym_break] = ACTIONS(2400), + [anon_sym_continue] = ACTIONS(2400), + [anon_sym_goto] = ACTIONS(2400), + [anon_sym___try] = ACTIONS(2400), + [anon_sym___leave] = ACTIONS(2400), + [anon_sym_not] = ACTIONS(2400), + [anon_sym_compl] = ACTIONS(2400), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_PLUS_PLUS] = ACTIONS(2402), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2400), + [anon_sym__Generic] = ACTIONS(2400), + [anon_sym_asm] = ACTIONS(2400), + [anon_sym___asm__] = ACTIONS(2400), + [anon_sym___asm] = ACTIONS(2400), + [sym_number_literal] = ACTIONS(2402), + [anon_sym_L_SQUOTE] = ACTIONS(2402), + [anon_sym_u_SQUOTE] = ACTIONS(2402), + [anon_sym_U_SQUOTE] = ACTIONS(2402), + [anon_sym_u8_SQUOTE] = ACTIONS(2402), + [anon_sym_SQUOTE] = ACTIONS(2402), + [anon_sym_L_DQUOTE] = ACTIONS(2402), + [anon_sym_u_DQUOTE] = ACTIONS(2402), + [anon_sym_U_DQUOTE] = ACTIONS(2402), + [anon_sym_u8_DQUOTE] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [sym_true] = ACTIONS(2400), + [sym_false] = ACTIONS(2400), + [anon_sym_NULL] = ACTIONS(2400), + [anon_sym_nullptr] = ACTIONS(2400), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2400), + [anon_sym_decltype] = ACTIONS(2400), + [anon_sym_explicit] = ACTIONS(2400), + [anon_sym_typename] = ACTIONS(2400), + [anon_sym_template] = ACTIONS(2400), + [anon_sym_operator] = ACTIONS(2400), + [anon_sym_try] = ACTIONS(2400), + [anon_sym_delete] = ACTIONS(2400), + [anon_sym_throw] = ACTIONS(2400), + [anon_sym_namespace] = ACTIONS(2400), + [anon_sym_using] = ACTIONS(2400), + [anon_sym_static_assert] = ACTIONS(2400), + [anon_sym_concept] = ACTIONS(2400), + [anon_sym_co_return] = ACTIONS(2400), + [anon_sym_co_yield] = ACTIONS(2400), + [anon_sym_R_DQUOTE] = ACTIONS(2402), + [anon_sym_LR_DQUOTE] = ACTIONS(2402), + [anon_sym_uR_DQUOTE] = ACTIONS(2402), + [anon_sym_UR_DQUOTE] = ACTIONS(2402), + [anon_sym_u8R_DQUOTE] = ACTIONS(2402), + [anon_sym_co_await] = ACTIONS(2400), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_requires] = ACTIONS(2400), + [sym_this] = ACTIONS(2400), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2400), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_FORWARD] = ACTIONS(2400), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2400), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2400), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2400), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2400), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_PS_GET] = ACTIONS(2400), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2400), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2400), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2400), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2400), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2400), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2400), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2400), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2400), + [anon_sym_MOZ_COLD] = ACTIONS(2400), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2400), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2400), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2400), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2400), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2400), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2400), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2400), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2400), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2400), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2400), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2400), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2400), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2400), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_NONNULL] = ACTIONS(2400), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2400), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2400), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2400), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2400), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2400), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2400), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2400), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2400), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2400), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2400), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2400), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2400), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2400), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2400), + [anon_sym_MOZ_RAII] = ACTIONS(2400), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2400), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2400), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2400), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2400), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2400), + }, + [STATE(580)] = { + [sym_identifier] = ACTIONS(2283), + [aux_sym_preproc_include_token1] = ACTIONS(2283), + [aux_sym_preproc_def_token1] = ACTIONS(2283), + [aux_sym_preproc_if_token1] = ACTIONS(2283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2283), + [sym_preproc_directive] = ACTIONS(2283), + [anon_sym_LPAREN2] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(2283), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_AMP_AMP] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2283), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym___extension__] = ACTIONS(2283), + [anon_sym_typedef] = ACTIONS(2283), + [anon_sym_virtual] = ACTIONS(2283), + [anon_sym_extern] = ACTIONS(2283), + [anon_sym___attribute__] = ACTIONS(2283), + [anon_sym___attribute] = ACTIONS(2283), + [anon_sym_COLON_COLON] = ACTIONS(2285), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2285), + [anon_sym___declspec] = ACTIONS(2283), + [anon_sym___based] = ACTIONS(2283), + [anon_sym___cdecl] = ACTIONS(2283), + [anon_sym___clrcall] = ACTIONS(2283), + [anon_sym___stdcall] = ACTIONS(2283), + [anon_sym___fastcall] = ACTIONS(2283), + [anon_sym___thiscall] = ACTIONS(2283), + [anon_sym___vectorcall] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_signed] = ACTIONS(2283), + [anon_sym_unsigned] = ACTIONS(2283), + [anon_sym_long] = ACTIONS(2283), + [anon_sym_short] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_static] = ACTIONS(2283), + [anon_sym_register] = ACTIONS(2283), + [anon_sym_inline] = ACTIONS(2283), + [anon_sym___inline] = ACTIONS(2283), + [anon_sym___inline__] = ACTIONS(2283), + [anon_sym___forceinline] = ACTIONS(2283), + [anon_sym_thread_local] = ACTIONS(2283), + [anon_sym___thread] = ACTIONS(2283), + [anon_sym_const] = ACTIONS(2283), + [anon_sym_constexpr] = ACTIONS(2283), + [anon_sym_volatile] = ACTIONS(2283), + [anon_sym_restrict] = ACTIONS(2283), + [anon_sym___restrict__] = ACTIONS(2283), + [anon_sym__Atomic] = ACTIONS(2283), + [anon_sym__Noreturn] = ACTIONS(2283), + [anon_sym_noreturn] = ACTIONS(2283), + [anon_sym__Nonnull] = ACTIONS(2283), + [anon_sym_mutable] = ACTIONS(2283), + [anon_sym_constinit] = ACTIONS(2283), + [anon_sym_consteval] = ACTIONS(2283), + [anon_sym_alignas] = ACTIONS(2283), + [anon_sym__Alignas] = ACTIONS(2283), + [sym_primitive_type] = ACTIONS(2283), + [anon_sym_enum] = ACTIONS(2283), + [anon_sym_class] = ACTIONS(2283), + [anon_sym_struct] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_if] = ACTIONS(2283), + [anon_sym_switch] = ACTIONS(2283), + [anon_sym_case] = ACTIONS(2283), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_while] = ACTIONS(2283), + [anon_sym_do] = ACTIONS(2283), + [anon_sym_for] = ACTIONS(2283), + [anon_sym_return] = ACTIONS(2283), + [anon_sym_break] = ACTIONS(2283), + [anon_sym_continue] = ACTIONS(2283), + [anon_sym_goto] = ACTIONS(2283), + [anon_sym___try] = ACTIONS(2283), + [anon_sym___leave] = ACTIONS(2283), + [anon_sym_not] = ACTIONS(2283), + [anon_sym_compl] = ACTIONS(2283), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_sizeof] = ACTIONS(2283), + [anon_sym___alignof__] = ACTIONS(2283), + [anon_sym___alignof] = ACTIONS(2283), + [anon_sym__alignof] = ACTIONS(2283), + [anon_sym_alignof] = ACTIONS(2283), + [anon_sym__Alignof] = ACTIONS(2283), + [anon_sym_offsetof] = ACTIONS(2283), + [anon_sym__Generic] = ACTIONS(2283), + [anon_sym_asm] = ACTIONS(2283), + [anon_sym___asm__] = ACTIONS(2283), + [anon_sym___asm] = ACTIONS(2283), + [sym_number_literal] = ACTIONS(2285), + [anon_sym_L_SQUOTE] = ACTIONS(2285), + [anon_sym_u_SQUOTE] = ACTIONS(2285), + [anon_sym_U_SQUOTE] = ACTIONS(2285), + [anon_sym_u8_SQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_L_DQUOTE] = ACTIONS(2285), + [anon_sym_u_DQUOTE] = ACTIONS(2285), + [anon_sym_U_DQUOTE] = ACTIONS(2285), + [anon_sym_u8_DQUOTE] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [sym_true] = ACTIONS(2283), + [sym_false] = ACTIONS(2283), + [anon_sym_NULL] = ACTIONS(2283), + [anon_sym_nullptr] = ACTIONS(2283), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2283), + [anon_sym_decltype] = ACTIONS(2283), + [anon_sym_explicit] = ACTIONS(2283), + [anon_sym_typename] = ACTIONS(2283), + [anon_sym_template] = ACTIONS(2283), + [anon_sym_operator] = ACTIONS(2283), + [anon_sym_try] = ACTIONS(2283), + [anon_sym_delete] = ACTIONS(2283), + [anon_sym_throw] = ACTIONS(2283), + [anon_sym_namespace] = ACTIONS(2283), + [anon_sym_using] = ACTIONS(2283), + [anon_sym_static_assert] = ACTIONS(2283), + [anon_sym_concept] = ACTIONS(2283), + [anon_sym_co_return] = ACTIONS(2283), + [anon_sym_co_yield] = ACTIONS(2283), + [anon_sym_R_DQUOTE] = ACTIONS(2285), + [anon_sym_LR_DQUOTE] = ACTIONS(2285), + [anon_sym_uR_DQUOTE] = ACTIONS(2285), + [anon_sym_UR_DQUOTE] = ACTIONS(2285), + [anon_sym_u8R_DQUOTE] = ACTIONS(2285), + [anon_sym_co_await] = ACTIONS(2283), + [anon_sym_new] = ACTIONS(2283), + [anon_sym_requires] = ACTIONS(2283), + [sym_this] = ACTIONS(2283), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2283), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_FORWARD] = ACTIONS(2283), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2283), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2283), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2283), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2283), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_PS_GET] = ACTIONS(2283), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2283), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2283), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2283), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2283), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2283), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2283), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2283), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2283), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2283), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2283), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2283), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2283), + [anon_sym_MOZ_COLD] = ACTIONS(2283), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2283), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2283), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2283), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2283), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2283), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2283), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2283), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2283), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2283), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2283), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2283), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2283), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2283), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2283), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2283), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2283), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2283), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2283), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2283), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2283), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2283), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_NONNULL] = ACTIONS(2283), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2283), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2283), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2283), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2283), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2283), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_NORETURN] = ACTIONS(2283), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2283), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2283), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2283), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2283), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2283), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2283), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2283), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2283), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2283), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2283), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2283), + [anon_sym_MOZ_RAII] = ACTIONS(2283), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2283), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2283), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2283), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2283), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2283), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2283), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2283), + }, + [STATE(581)] = { + [sym_identifier] = ACTIONS(2299), + [aux_sym_preproc_include_token1] = ACTIONS(2299), + [aux_sym_preproc_def_token1] = ACTIONS(2299), + [aux_sym_preproc_if_token1] = ACTIONS(2299), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2299), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2299), + [sym_preproc_directive] = ACTIONS(2299), + [anon_sym_LPAREN2] = ACTIONS(2301), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2301), + [anon_sym_AMP_AMP] = ACTIONS(2301), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym___extension__] = ACTIONS(2299), + [anon_sym_typedef] = ACTIONS(2299), + [anon_sym_virtual] = ACTIONS(2299), + [anon_sym_extern] = ACTIONS(2299), + [anon_sym___attribute__] = ACTIONS(2299), + [anon_sym___attribute] = ACTIONS(2299), + [anon_sym_COLON_COLON] = ACTIONS(2301), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2301), + [anon_sym___declspec] = ACTIONS(2299), + [anon_sym___based] = ACTIONS(2299), + [anon_sym___cdecl] = ACTIONS(2299), + [anon_sym___clrcall] = ACTIONS(2299), + [anon_sym___stdcall] = ACTIONS(2299), + [anon_sym___fastcall] = ACTIONS(2299), + [anon_sym___thiscall] = ACTIONS(2299), + [anon_sym___vectorcall] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2301), + [anon_sym_RBRACE] = ACTIONS(2301), + [anon_sym_signed] = ACTIONS(2299), + [anon_sym_unsigned] = ACTIONS(2299), + [anon_sym_long] = ACTIONS(2299), + [anon_sym_short] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2299), + [anon_sym_register] = ACTIONS(2299), + [anon_sym_inline] = ACTIONS(2299), + [anon_sym___inline] = ACTIONS(2299), + [anon_sym___inline__] = ACTIONS(2299), + [anon_sym___forceinline] = ACTIONS(2299), + [anon_sym_thread_local] = ACTIONS(2299), + [anon_sym___thread] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [anon_sym_constexpr] = ACTIONS(2299), + [anon_sym_volatile] = ACTIONS(2299), + [anon_sym_restrict] = ACTIONS(2299), + [anon_sym___restrict__] = ACTIONS(2299), + [anon_sym__Atomic] = ACTIONS(2299), + [anon_sym__Noreturn] = ACTIONS(2299), + [anon_sym_noreturn] = ACTIONS(2299), + [anon_sym__Nonnull] = ACTIONS(2299), + [anon_sym_mutable] = ACTIONS(2299), + [anon_sym_constinit] = ACTIONS(2299), + [anon_sym_consteval] = ACTIONS(2299), + [anon_sym_alignas] = ACTIONS(2299), + [anon_sym__Alignas] = ACTIONS(2299), + [sym_primitive_type] = ACTIONS(2299), + [anon_sym_enum] = ACTIONS(2299), + [anon_sym_class] = ACTIONS(2299), + [anon_sym_struct] = ACTIONS(2299), + [anon_sym_union] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_switch] = ACTIONS(2299), + [anon_sym_case] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(2299), + [anon_sym_while] = ACTIONS(2299), + [anon_sym_do] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_goto] = ACTIONS(2299), + [anon_sym___try] = ACTIONS(2299), + [anon_sym___leave] = ACTIONS(2299), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_compl] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2301), + [anon_sym_PLUS_PLUS] = ACTIONS(2301), + [anon_sym_sizeof] = ACTIONS(2299), + [anon_sym___alignof__] = ACTIONS(2299), + [anon_sym___alignof] = ACTIONS(2299), + [anon_sym__alignof] = ACTIONS(2299), + [anon_sym_alignof] = ACTIONS(2299), + [anon_sym__Alignof] = ACTIONS(2299), + [anon_sym_offsetof] = ACTIONS(2299), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2299), + [anon_sym___asm__] = ACTIONS(2299), + [anon_sym___asm] = ACTIONS(2299), + [sym_number_literal] = ACTIONS(2301), + [anon_sym_L_SQUOTE] = ACTIONS(2301), + [anon_sym_u_SQUOTE] = ACTIONS(2301), + [anon_sym_U_SQUOTE] = ACTIONS(2301), + [anon_sym_u8_SQUOTE] = ACTIONS(2301), + [anon_sym_SQUOTE] = ACTIONS(2301), + [anon_sym_L_DQUOTE] = ACTIONS(2301), + [anon_sym_u_DQUOTE] = ACTIONS(2301), + [anon_sym_U_DQUOTE] = ACTIONS(2301), + [anon_sym_u8_DQUOTE] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(2301), + [sym_true] = ACTIONS(2299), + [sym_false] = ACTIONS(2299), + [anon_sym_NULL] = ACTIONS(2299), + [anon_sym_nullptr] = ACTIONS(2299), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2299), + [anon_sym_decltype] = ACTIONS(2299), + [anon_sym_explicit] = ACTIONS(2299), + [anon_sym_typename] = ACTIONS(2299), + [anon_sym_template] = ACTIONS(2299), + [anon_sym_operator] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(2299), + [anon_sym_delete] = ACTIONS(2299), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_namespace] = ACTIONS(2299), + [anon_sym_using] = ACTIONS(2299), + [anon_sym_static_assert] = ACTIONS(2299), + [anon_sym_concept] = ACTIONS(2299), + [anon_sym_co_return] = ACTIONS(2299), + [anon_sym_co_yield] = ACTIONS(2299), + [anon_sym_R_DQUOTE] = ACTIONS(2301), + [anon_sym_LR_DQUOTE] = ACTIONS(2301), + [anon_sym_uR_DQUOTE] = ACTIONS(2301), + [anon_sym_UR_DQUOTE] = ACTIONS(2301), + [anon_sym_u8R_DQUOTE] = ACTIONS(2301), + [anon_sym_co_await] = ACTIONS(2299), + [anon_sym_new] = ACTIONS(2299), + [anon_sym_requires] = ACTIONS(2299), + [sym_this] = ACTIONS(2299), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2299), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_FORWARD] = ACTIONS(2299), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2299), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2299), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2299), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2299), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_PS_GET] = ACTIONS(2299), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2299), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2299), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2299), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2299), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2299), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2299), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2299), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2299), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2299), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2299), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2299), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2299), + [anon_sym_MOZ_COLD] = ACTIONS(2299), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2299), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2299), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2299), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2299), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2299), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2299), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2299), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2299), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2299), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2299), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2299), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2299), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2299), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2299), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2299), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2299), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2299), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2299), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2299), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2299), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2299), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_NONNULL] = ACTIONS(2299), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2299), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2299), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2299), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2299), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2299), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_NORETURN] = ACTIONS(2299), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2299), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2299), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2299), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2299), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2299), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2299), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2299), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2299), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2299), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2299), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2299), + [anon_sym_MOZ_RAII] = ACTIONS(2299), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2299), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2299), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2299), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2299), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2299), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2299), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2299), + }, + [STATE(582)] = { + [sym_identifier] = ACTIONS(2303), + [aux_sym_preproc_include_token1] = ACTIONS(2303), + [aux_sym_preproc_def_token1] = ACTIONS(2303), + [aux_sym_preproc_if_token1] = ACTIONS(2303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2303), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2303), + [sym_preproc_directive] = ACTIONS(2303), + [anon_sym_LPAREN2] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2305), + [anon_sym_AMP_AMP] = ACTIONS(2305), + [anon_sym_AMP] = ACTIONS(2303), + [anon_sym_SEMI] = ACTIONS(2305), + [anon_sym___extension__] = ACTIONS(2303), + [anon_sym_typedef] = ACTIONS(2303), + [anon_sym_virtual] = ACTIONS(2303), + [anon_sym_extern] = ACTIONS(2303), + [anon_sym___attribute__] = ACTIONS(2303), + [anon_sym___attribute] = ACTIONS(2303), + [anon_sym_COLON_COLON] = ACTIONS(2305), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2305), + [anon_sym___declspec] = ACTIONS(2303), + [anon_sym___based] = ACTIONS(2303), + [anon_sym___cdecl] = ACTIONS(2303), + [anon_sym___clrcall] = ACTIONS(2303), + [anon_sym___stdcall] = ACTIONS(2303), + [anon_sym___fastcall] = ACTIONS(2303), + [anon_sym___thiscall] = ACTIONS(2303), + [anon_sym___vectorcall] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_RBRACE] = ACTIONS(2305), + [anon_sym_signed] = ACTIONS(2303), + [anon_sym_unsigned] = ACTIONS(2303), + [anon_sym_long] = ACTIONS(2303), + [anon_sym_short] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_static] = ACTIONS(2303), + [anon_sym_register] = ACTIONS(2303), + [anon_sym_inline] = ACTIONS(2303), + [anon_sym___inline] = ACTIONS(2303), + [anon_sym___inline__] = ACTIONS(2303), + [anon_sym___forceinline] = ACTIONS(2303), + [anon_sym_thread_local] = ACTIONS(2303), + [anon_sym___thread] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [anon_sym_constexpr] = ACTIONS(2303), + [anon_sym_volatile] = ACTIONS(2303), + [anon_sym_restrict] = ACTIONS(2303), + [anon_sym___restrict__] = ACTIONS(2303), + [anon_sym__Atomic] = ACTIONS(2303), + [anon_sym__Noreturn] = ACTIONS(2303), + [anon_sym_noreturn] = ACTIONS(2303), + [anon_sym__Nonnull] = ACTIONS(2303), + [anon_sym_mutable] = ACTIONS(2303), + [anon_sym_constinit] = ACTIONS(2303), + [anon_sym_consteval] = ACTIONS(2303), + [anon_sym_alignas] = ACTIONS(2303), + [anon_sym__Alignas] = ACTIONS(2303), + [sym_primitive_type] = ACTIONS(2303), + [anon_sym_enum] = ACTIONS(2303), + [anon_sym_class] = ACTIONS(2303), + [anon_sym_struct] = ACTIONS(2303), + [anon_sym_union] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_switch] = ACTIONS(2303), + [anon_sym_case] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(2303), + [anon_sym_do] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_break] = ACTIONS(2303), + [anon_sym_continue] = ACTIONS(2303), + [anon_sym_goto] = ACTIONS(2303), + [anon_sym___try] = ACTIONS(2303), + [anon_sym___leave] = ACTIONS(2303), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_compl] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2305), + [anon_sym_PLUS_PLUS] = ACTIONS(2305), + [anon_sym_sizeof] = ACTIONS(2303), + [anon_sym___alignof__] = ACTIONS(2303), + [anon_sym___alignof] = ACTIONS(2303), + [anon_sym__alignof] = ACTIONS(2303), + [anon_sym_alignof] = ACTIONS(2303), + [anon_sym__Alignof] = ACTIONS(2303), + [anon_sym_offsetof] = ACTIONS(2303), + [anon_sym__Generic] = ACTIONS(2303), + [anon_sym_asm] = ACTIONS(2303), + [anon_sym___asm__] = ACTIONS(2303), + [anon_sym___asm] = ACTIONS(2303), + [sym_number_literal] = ACTIONS(2305), + [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(2305), + [anon_sym_u_DQUOTE] = ACTIONS(2305), + [anon_sym_U_DQUOTE] = ACTIONS(2305), + [anon_sym_u8_DQUOTE] = ACTIONS(2305), + [anon_sym_DQUOTE] = ACTIONS(2305), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [anon_sym_NULL] = ACTIONS(2303), + [anon_sym_nullptr] = ACTIONS(2303), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2303), + [anon_sym_decltype] = ACTIONS(2303), + [anon_sym_explicit] = ACTIONS(2303), + [anon_sym_typename] = ACTIONS(2303), + [anon_sym_template] = ACTIONS(2303), + [anon_sym_operator] = ACTIONS(2303), + [anon_sym_try] = ACTIONS(2303), + [anon_sym_delete] = ACTIONS(2303), + [anon_sym_throw] = ACTIONS(2303), + [anon_sym_namespace] = ACTIONS(2303), + [anon_sym_using] = ACTIONS(2303), + [anon_sym_static_assert] = ACTIONS(2303), + [anon_sym_concept] = ACTIONS(2303), + [anon_sym_co_return] = ACTIONS(2303), + [anon_sym_co_yield] = ACTIONS(2303), + [anon_sym_R_DQUOTE] = ACTIONS(2305), + [anon_sym_LR_DQUOTE] = ACTIONS(2305), + [anon_sym_uR_DQUOTE] = ACTIONS(2305), + [anon_sym_UR_DQUOTE] = ACTIONS(2305), + [anon_sym_u8R_DQUOTE] = ACTIONS(2305), + [anon_sym_co_await] = ACTIONS(2303), + [anon_sym_new] = ACTIONS(2303), + [anon_sym_requires] = ACTIONS(2303), + [sym_this] = ACTIONS(2303), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2303), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_FORWARD] = ACTIONS(2303), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2303), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2303), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2303), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2303), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_PS_GET] = ACTIONS(2303), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2303), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2303), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2303), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2303), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2303), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2303), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2303), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2303), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2303), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2303), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2303), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2303), + [anon_sym_MOZ_COLD] = ACTIONS(2303), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2303), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2303), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2303), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2303), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2303), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2303), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2303), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2303), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2303), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2303), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2303), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2303), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2303), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2303), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2303), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2303), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2303), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2303), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2303), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2303), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2303), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_NONNULL] = ACTIONS(2303), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2303), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2303), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2303), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2303), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2303), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_NORETURN] = ACTIONS(2303), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2303), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2303), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2303), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2303), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2303), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2303), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2303), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2303), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2303), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2303), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2303), + [anon_sym_MOZ_RAII] = ACTIONS(2303), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2303), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2303), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2303), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2303), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2303), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2303), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2303), + }, + [STATE(583)] = { + [sym_identifier] = ACTIONS(2307), + [aux_sym_preproc_include_token1] = ACTIONS(2307), + [aux_sym_preproc_def_token1] = ACTIONS(2307), + [aux_sym_preproc_if_token1] = ACTIONS(2307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2307), + [sym_preproc_directive] = ACTIONS(2307), + [anon_sym_LPAREN2] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2309), + [anon_sym_TILDE] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_typedef] = ACTIONS(2307), + [anon_sym_virtual] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym___attribute__] = ACTIONS(2307), + [anon_sym___attribute] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2309), + [anon_sym___declspec] = ACTIONS(2307), + [anon_sym___based] = ACTIONS(2307), + [anon_sym___cdecl] = ACTIONS(2307), + [anon_sym___clrcall] = ACTIONS(2307), + [anon_sym___stdcall] = ACTIONS(2307), + [anon_sym___fastcall] = ACTIONS(2307), + [anon_sym___thiscall] = ACTIONS(2307), + [anon_sym___vectorcall] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_signed] = ACTIONS(2307), + [anon_sym_unsigned] = ACTIONS(2307), + [anon_sym_long] = ACTIONS(2307), + [anon_sym_short] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_register] = ACTIONS(2307), + [anon_sym_inline] = ACTIONS(2307), + [anon_sym___inline] = ACTIONS(2307), + [anon_sym___inline__] = ACTIONS(2307), + [anon_sym___forceinline] = ACTIONS(2307), + [anon_sym_thread_local] = ACTIONS(2307), + [anon_sym___thread] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_constexpr] = ACTIONS(2307), + [anon_sym_volatile] = ACTIONS(2307), + [anon_sym_restrict] = ACTIONS(2307), + [anon_sym___restrict__] = ACTIONS(2307), + [anon_sym__Atomic] = ACTIONS(2307), + [anon_sym__Noreturn] = ACTIONS(2307), + [anon_sym_noreturn] = ACTIONS(2307), + [anon_sym__Nonnull] = ACTIONS(2307), + [anon_sym_mutable] = ACTIONS(2307), + [anon_sym_constinit] = ACTIONS(2307), + [anon_sym_consteval] = ACTIONS(2307), + [anon_sym_alignas] = ACTIONS(2307), + [anon_sym__Alignas] = ACTIONS(2307), + [sym_primitive_type] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_class] = ACTIONS(2307), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_switch] = ACTIONS(2307), + [anon_sym_case] = ACTIONS(2307), + [anon_sym_default] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_goto] = ACTIONS(2307), + [anon_sym___try] = ACTIONS(2307), + [anon_sym___leave] = ACTIONS(2307), + [anon_sym_not] = ACTIONS(2307), + [anon_sym_compl] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2307), + [anon_sym___alignof__] = ACTIONS(2307), + [anon_sym___alignof] = ACTIONS(2307), + [anon_sym__alignof] = ACTIONS(2307), + [anon_sym_alignof] = ACTIONS(2307), + [anon_sym__Alignof] = ACTIONS(2307), + [anon_sym_offsetof] = ACTIONS(2307), + [anon_sym__Generic] = ACTIONS(2307), + [anon_sym_asm] = ACTIONS(2307), + [anon_sym___asm__] = ACTIONS(2307), + [anon_sym___asm] = ACTIONS(2307), + [sym_number_literal] = ACTIONS(2309), + [anon_sym_L_SQUOTE] = ACTIONS(2309), + [anon_sym_u_SQUOTE] = ACTIONS(2309), + [anon_sym_U_SQUOTE] = ACTIONS(2309), + [anon_sym_u8_SQUOTE] = ACTIONS(2309), + [anon_sym_SQUOTE] = ACTIONS(2309), + [anon_sym_L_DQUOTE] = ACTIONS(2309), + [anon_sym_u_DQUOTE] = ACTIONS(2309), + [anon_sym_U_DQUOTE] = ACTIONS(2309), + [anon_sym_u8_DQUOTE] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2309), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [anon_sym_NULL] = ACTIONS(2307), + [anon_sym_nullptr] = ACTIONS(2307), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2307), + [anon_sym_decltype] = ACTIONS(2307), + [anon_sym_explicit] = ACTIONS(2307), + [anon_sym_typename] = ACTIONS(2307), + [anon_sym_template] = ACTIONS(2307), + [anon_sym_operator] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2307), + [anon_sym_delete] = ACTIONS(2307), + [anon_sym_throw] = ACTIONS(2307), + [anon_sym_namespace] = ACTIONS(2307), + [anon_sym_using] = ACTIONS(2307), + [anon_sym_static_assert] = ACTIONS(2307), + [anon_sym_concept] = ACTIONS(2307), + [anon_sym_co_return] = ACTIONS(2307), + [anon_sym_co_yield] = ACTIONS(2307), + [anon_sym_R_DQUOTE] = ACTIONS(2309), + [anon_sym_LR_DQUOTE] = ACTIONS(2309), + [anon_sym_uR_DQUOTE] = ACTIONS(2309), + [anon_sym_UR_DQUOTE] = ACTIONS(2309), + [anon_sym_u8R_DQUOTE] = ACTIONS(2309), + [anon_sym_co_await] = ACTIONS(2307), + [anon_sym_new] = ACTIONS(2307), + [anon_sym_requires] = ACTIONS(2307), + [sym_this] = ACTIONS(2307), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2307), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_FORWARD] = ACTIONS(2307), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2307), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2307), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2307), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2307), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_PS_GET] = ACTIONS(2307), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2307), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2307), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2307), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2307), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2307), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2307), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2307), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2307), + [anon_sym_MOZ_COLD] = ACTIONS(2307), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2307), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2307), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2307), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2307), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2307), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2307), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2307), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2307), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2307), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2307), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2307), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2307), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2307), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_NONNULL] = ACTIONS(2307), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2307), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2307), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2307), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2307), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2307), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2307), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2307), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2307), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2307), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2307), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2307), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2307), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2307), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2307), + [anon_sym_MOZ_RAII] = ACTIONS(2307), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2307), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2307), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2307), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2307), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2307), + }, + [STATE(584)] = { + [ts_builtin_sym_end] = ACTIONS(2234), + [sym_identifier] = ACTIONS(2232), + [aux_sym_preproc_include_token1] = ACTIONS(2232), + [aux_sym_preproc_def_token1] = ACTIONS(2232), + [aux_sym_preproc_if_token1] = ACTIONS(2232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2232), + [sym_preproc_directive] = ACTIONS(2232), + [anon_sym_LPAREN2] = ACTIONS(2234), + [anon_sym_BANG] = ACTIONS(2234), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym___extension__] = ACTIONS(2232), + [anon_sym_typedef] = ACTIONS(2232), + [anon_sym_virtual] = ACTIONS(2232), + [anon_sym_extern] = ACTIONS(2232), + [anon_sym___attribute__] = ACTIONS(2232), + [anon_sym___attribute] = ACTIONS(2232), + [anon_sym_COLON_COLON] = ACTIONS(2234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2234), + [anon_sym___declspec] = ACTIONS(2232), + [anon_sym___based] = ACTIONS(2232), + [anon_sym___cdecl] = ACTIONS(2232), + [anon_sym___clrcall] = ACTIONS(2232), + [anon_sym___stdcall] = ACTIONS(2232), + [anon_sym___fastcall] = ACTIONS(2232), + [anon_sym___thiscall] = ACTIONS(2232), + [anon_sym___vectorcall] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_signed] = ACTIONS(2232), + [anon_sym_unsigned] = ACTIONS(2232), + [anon_sym_long] = ACTIONS(2232), + [anon_sym_short] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2232), + [anon_sym_static] = ACTIONS(2232), + [anon_sym_register] = ACTIONS(2232), + [anon_sym_inline] = ACTIONS(2232), + [anon_sym___inline] = ACTIONS(2232), + [anon_sym___inline__] = ACTIONS(2232), + [anon_sym___forceinline] = ACTIONS(2232), + [anon_sym_thread_local] = ACTIONS(2232), + [anon_sym___thread] = ACTIONS(2232), + [anon_sym_const] = ACTIONS(2232), + [anon_sym_constexpr] = ACTIONS(2232), + [anon_sym_volatile] = ACTIONS(2232), + [anon_sym_restrict] = ACTIONS(2232), + [anon_sym___restrict__] = ACTIONS(2232), + [anon_sym__Atomic] = ACTIONS(2232), + [anon_sym__Noreturn] = ACTIONS(2232), + [anon_sym_noreturn] = ACTIONS(2232), + [anon_sym__Nonnull] = ACTIONS(2232), + [anon_sym_mutable] = ACTIONS(2232), + [anon_sym_constinit] = ACTIONS(2232), + [anon_sym_consteval] = ACTIONS(2232), + [anon_sym_alignas] = ACTIONS(2232), + [anon_sym__Alignas] = ACTIONS(2232), + [sym_primitive_type] = ACTIONS(2232), + [anon_sym_enum] = ACTIONS(2232), + [anon_sym_class] = ACTIONS(2232), + [anon_sym_struct] = ACTIONS(2232), + [anon_sym_union] = ACTIONS(2232), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_switch] = ACTIONS(2232), + [anon_sym_case] = ACTIONS(2232), + [anon_sym_default] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2232), + [anon_sym_do] = ACTIONS(2232), + [anon_sym_for] = ACTIONS(2232), + [anon_sym_return] = ACTIONS(2232), + [anon_sym_break] = ACTIONS(2232), + [anon_sym_continue] = ACTIONS(2232), + [anon_sym_goto] = ACTIONS(2232), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_sizeof] = ACTIONS(2232), + [anon_sym___alignof__] = ACTIONS(2232), + [anon_sym___alignof] = ACTIONS(2232), + [anon_sym__alignof] = ACTIONS(2232), + [anon_sym_alignof] = ACTIONS(2232), + [anon_sym__Alignof] = ACTIONS(2232), + [anon_sym_offsetof] = ACTIONS(2232), + [anon_sym__Generic] = ACTIONS(2232), + [anon_sym_asm] = ACTIONS(2232), + [anon_sym___asm__] = ACTIONS(2232), + [anon_sym___asm] = ACTIONS(2232), + [sym_number_literal] = ACTIONS(2234), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2234), + [anon_sym_u_DQUOTE] = ACTIONS(2234), + [anon_sym_U_DQUOTE] = ACTIONS(2234), + [anon_sym_u8_DQUOTE] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2234), + [sym_true] = ACTIONS(2232), + [sym_false] = ACTIONS(2232), + [anon_sym_NULL] = ACTIONS(2232), + [anon_sym_nullptr] = ACTIONS(2232), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2232), + [anon_sym_decltype] = ACTIONS(2232), + [anon_sym_explicit] = ACTIONS(2232), + [anon_sym_typename] = ACTIONS(2232), + [anon_sym_template] = ACTIONS(2232), + [anon_sym_operator] = ACTIONS(2232), + [anon_sym_try] = ACTIONS(2232), + [anon_sym_delete] = ACTIONS(2232), + [anon_sym_throw] = ACTIONS(2232), + [anon_sym_namespace] = ACTIONS(2232), + [anon_sym_using] = ACTIONS(2232), + [anon_sym_static_assert] = ACTIONS(2232), + [anon_sym_concept] = ACTIONS(2232), + [anon_sym_co_return] = ACTIONS(2232), + [anon_sym_co_yield] = ACTIONS(2232), + [anon_sym_R_DQUOTE] = ACTIONS(2234), + [anon_sym_LR_DQUOTE] = ACTIONS(2234), + [anon_sym_uR_DQUOTE] = ACTIONS(2234), + [anon_sym_UR_DQUOTE] = ACTIONS(2234), + [anon_sym_u8R_DQUOTE] = ACTIONS(2234), + [anon_sym_co_await] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_requires] = ACTIONS(2232), + [sym_this] = ACTIONS(2232), + [sym_alone_macro] = ACTIONS(2234), + [aux_sym_alone_macro_call_token1] = ACTIONS(2232), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2232), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_FORWARD] = ACTIONS(2232), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2232), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2232), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2232), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2232), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_PS_GET] = ACTIONS(2232), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2232), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2232), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2232), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2232), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2232), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2232), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2232), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2232), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2232), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2232), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2232), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2232), + [anon_sym_MOZ_COLD] = ACTIONS(2232), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2232), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2232), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2232), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2232), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2232), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2232), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2232), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2232), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2232), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2232), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2232), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2232), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2232), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2232), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2232), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2232), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2232), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2232), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2232), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2232), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2232), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_NONNULL] = ACTIONS(2232), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2232), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2232), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2232), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2232), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2232), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_NORETURN] = ACTIONS(2232), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2232), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2232), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2232), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2232), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2232), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2232), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2232), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2232), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2232), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2232), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2232), + [anon_sym_MOZ_RAII] = ACTIONS(2232), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2232), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2232), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2232), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2232), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2232), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2232), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2232), + }, + [STATE(585)] = { + [ts_builtin_sym_end] = ACTIONS(2228), + [sym_identifier] = ACTIONS(2226), + [aux_sym_preproc_include_token1] = ACTIONS(2226), + [aux_sym_preproc_def_token1] = ACTIONS(2226), + [aux_sym_preproc_if_token1] = ACTIONS(2226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2226), + [sym_preproc_directive] = ACTIONS(2226), + [anon_sym_LPAREN2] = ACTIONS(2228), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_AMP_AMP] = ACTIONS(2228), + [anon_sym_AMP] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym___extension__] = ACTIONS(2226), + [anon_sym_typedef] = ACTIONS(2226), + [anon_sym_virtual] = ACTIONS(2226), + [anon_sym_extern] = ACTIONS(2226), + [anon_sym___attribute__] = ACTIONS(2226), + [anon_sym___attribute] = ACTIONS(2226), + [anon_sym_COLON_COLON] = ACTIONS(2228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2228), + [anon_sym___declspec] = ACTIONS(2226), + [anon_sym___based] = ACTIONS(2226), + [anon_sym___cdecl] = ACTIONS(2226), + [anon_sym___clrcall] = ACTIONS(2226), + [anon_sym___stdcall] = ACTIONS(2226), + [anon_sym___fastcall] = ACTIONS(2226), + [anon_sym___thiscall] = ACTIONS(2226), + [anon_sym___vectorcall] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_signed] = ACTIONS(2226), + [anon_sym_unsigned] = ACTIONS(2226), + [anon_sym_long] = ACTIONS(2226), + [anon_sym_short] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2226), + [anon_sym_register] = ACTIONS(2226), + [anon_sym_inline] = ACTIONS(2226), + [anon_sym___inline] = ACTIONS(2226), + [anon_sym___inline__] = ACTIONS(2226), + [anon_sym___forceinline] = ACTIONS(2226), + [anon_sym_thread_local] = ACTIONS(2226), + [anon_sym___thread] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [anon_sym_constexpr] = ACTIONS(2226), + [anon_sym_volatile] = ACTIONS(2226), + [anon_sym_restrict] = ACTIONS(2226), + [anon_sym___restrict__] = ACTIONS(2226), + [anon_sym__Atomic] = ACTIONS(2226), + [anon_sym__Noreturn] = ACTIONS(2226), + [anon_sym_noreturn] = ACTIONS(2226), + [anon_sym__Nonnull] = ACTIONS(2226), + [anon_sym_mutable] = ACTIONS(2226), + [anon_sym_constinit] = ACTIONS(2226), + [anon_sym_consteval] = ACTIONS(2226), + [anon_sym_alignas] = ACTIONS(2226), + [anon_sym__Alignas] = ACTIONS(2226), + [sym_primitive_type] = ACTIONS(2226), + [anon_sym_enum] = ACTIONS(2226), + [anon_sym_class] = ACTIONS(2226), + [anon_sym_struct] = ACTIONS(2226), + [anon_sym_union] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_switch] = ACTIONS(2226), + [anon_sym_case] = ACTIONS(2226), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_do] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_goto] = ACTIONS(2226), + [anon_sym_not] = ACTIONS(2226), + [anon_sym_compl] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_sizeof] = ACTIONS(2226), + [anon_sym___alignof__] = ACTIONS(2226), + [anon_sym___alignof] = ACTIONS(2226), + [anon_sym__alignof] = ACTIONS(2226), + [anon_sym_alignof] = ACTIONS(2226), + [anon_sym__Alignof] = ACTIONS(2226), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2226), + [anon_sym_asm] = ACTIONS(2226), + [anon_sym___asm__] = ACTIONS(2226), + [anon_sym___asm] = ACTIONS(2226), + [sym_number_literal] = ACTIONS(2228), + [anon_sym_L_SQUOTE] = ACTIONS(2228), + [anon_sym_u_SQUOTE] = ACTIONS(2228), + [anon_sym_U_SQUOTE] = ACTIONS(2228), + [anon_sym_u8_SQUOTE] = ACTIONS(2228), + [anon_sym_SQUOTE] = ACTIONS(2228), + [anon_sym_L_DQUOTE] = ACTIONS(2228), + [anon_sym_u_DQUOTE] = ACTIONS(2228), + [anon_sym_U_DQUOTE] = ACTIONS(2228), + [anon_sym_u8_DQUOTE] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym_true] = ACTIONS(2226), + [sym_false] = ACTIONS(2226), + [anon_sym_NULL] = ACTIONS(2226), + [anon_sym_nullptr] = ACTIONS(2226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2226), + [anon_sym_decltype] = ACTIONS(2226), + [anon_sym_explicit] = ACTIONS(2226), + [anon_sym_typename] = ACTIONS(2226), + [anon_sym_template] = ACTIONS(2226), + [anon_sym_operator] = ACTIONS(2226), + [anon_sym_try] = ACTIONS(2226), + [anon_sym_delete] = ACTIONS(2226), + [anon_sym_throw] = ACTIONS(2226), + [anon_sym_namespace] = ACTIONS(2226), + [anon_sym_using] = ACTIONS(2226), + [anon_sym_static_assert] = ACTIONS(2226), + [anon_sym_concept] = ACTIONS(2226), + [anon_sym_co_return] = ACTIONS(2226), + [anon_sym_co_yield] = ACTIONS(2226), + [anon_sym_R_DQUOTE] = ACTIONS(2228), + [anon_sym_LR_DQUOTE] = ACTIONS(2228), + [anon_sym_uR_DQUOTE] = ACTIONS(2228), + [anon_sym_UR_DQUOTE] = ACTIONS(2228), + [anon_sym_u8R_DQUOTE] = ACTIONS(2228), + [anon_sym_co_await] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(2226), + [anon_sym_requires] = ACTIONS(2226), + [sym_this] = ACTIONS(2226), + [sym_alone_macro] = ACTIONS(2228), + [aux_sym_alone_macro_call_token1] = ACTIONS(2226), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2226), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_FORWARD] = ACTIONS(2226), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2226), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2226), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2226), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2226), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_PS_GET] = ACTIONS(2226), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2226), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2226), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2226), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2226), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2226), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2226), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2226), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2226), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2226), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2226), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2226), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2226), + [anon_sym_MOZ_COLD] = ACTIONS(2226), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2226), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2226), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2226), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2226), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2226), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2226), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2226), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2226), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2226), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2226), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2226), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2226), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2226), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2226), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2226), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2226), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2226), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2226), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2226), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2226), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2226), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_NONNULL] = ACTIONS(2226), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2226), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2226), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2226), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2226), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2226), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_NORETURN] = ACTIONS(2226), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2226), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2226), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2226), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2226), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2226), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2226), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2226), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2226), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2226), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2226), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2226), + [anon_sym_MOZ_RAII] = ACTIONS(2226), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2226), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2226), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2226), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2226), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2226), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2226), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2226), + }, + [STATE(586)] = { + [ts_builtin_sym_end] = ACTIONS(2252), + [sym_identifier] = ACTIONS(2250), + [aux_sym_preproc_include_token1] = ACTIONS(2250), + [aux_sym_preproc_def_token1] = ACTIONS(2250), + [aux_sym_preproc_if_token1] = ACTIONS(2250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2250), + [sym_preproc_directive] = ACTIONS(2250), + [anon_sym_LPAREN2] = ACTIONS(2252), + [anon_sym_BANG] = ACTIONS(2252), + [anon_sym_TILDE] = ACTIONS(2252), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2252), + [anon_sym_AMP_AMP] = ACTIONS(2252), + [anon_sym_AMP] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2252), + [anon_sym___extension__] = ACTIONS(2250), + [anon_sym_typedef] = ACTIONS(2250), + [anon_sym_virtual] = ACTIONS(2250), + [anon_sym_extern] = ACTIONS(2250), + [anon_sym___attribute__] = ACTIONS(2250), + [anon_sym___attribute] = ACTIONS(2250), + [anon_sym_COLON_COLON] = ACTIONS(2252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2252), + [anon_sym___declspec] = ACTIONS(2250), + [anon_sym___based] = ACTIONS(2250), + [anon_sym___cdecl] = ACTIONS(2250), + [anon_sym___clrcall] = ACTIONS(2250), + [anon_sym___stdcall] = ACTIONS(2250), + [anon_sym___fastcall] = ACTIONS(2250), + [anon_sym___thiscall] = ACTIONS(2250), + [anon_sym___vectorcall] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2252), + [anon_sym_signed] = ACTIONS(2250), + [anon_sym_unsigned] = ACTIONS(2250), + [anon_sym_long] = ACTIONS(2250), + [anon_sym_short] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_register] = ACTIONS(2250), + [anon_sym_inline] = ACTIONS(2250), + [anon_sym___inline] = ACTIONS(2250), + [anon_sym___inline__] = ACTIONS(2250), + [anon_sym___forceinline] = ACTIONS(2250), + [anon_sym_thread_local] = ACTIONS(2250), + [anon_sym___thread] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_constexpr] = ACTIONS(2250), + [anon_sym_volatile] = ACTIONS(2250), + [anon_sym_restrict] = ACTIONS(2250), + [anon_sym___restrict__] = ACTIONS(2250), + [anon_sym__Atomic] = ACTIONS(2250), + [anon_sym__Noreturn] = ACTIONS(2250), + [anon_sym_noreturn] = ACTIONS(2250), + [anon_sym__Nonnull] = ACTIONS(2250), + [anon_sym_mutable] = ACTIONS(2250), + [anon_sym_constinit] = ACTIONS(2250), + [anon_sym_consteval] = ACTIONS(2250), + [anon_sym_alignas] = ACTIONS(2250), + [anon_sym__Alignas] = ACTIONS(2250), + [sym_primitive_type] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_case] = ACTIONS(2250), + [anon_sym_default] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_goto] = ACTIONS(2250), + [anon_sym_not] = ACTIONS(2250), + [anon_sym_compl] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2252), + [anon_sym_PLUS_PLUS] = ACTIONS(2252), + [anon_sym_sizeof] = ACTIONS(2250), + [anon_sym___alignof__] = ACTIONS(2250), + [anon_sym___alignof] = ACTIONS(2250), + [anon_sym__alignof] = ACTIONS(2250), + [anon_sym_alignof] = ACTIONS(2250), + [anon_sym__Alignof] = ACTIONS(2250), + [anon_sym_offsetof] = ACTIONS(2250), + [anon_sym__Generic] = ACTIONS(2250), + [anon_sym_asm] = ACTIONS(2250), + [anon_sym___asm__] = ACTIONS(2250), + [anon_sym___asm] = ACTIONS(2250), + [sym_number_literal] = ACTIONS(2252), + [anon_sym_L_SQUOTE] = ACTIONS(2252), + [anon_sym_u_SQUOTE] = ACTIONS(2252), + [anon_sym_U_SQUOTE] = ACTIONS(2252), + [anon_sym_u8_SQUOTE] = ACTIONS(2252), + [anon_sym_SQUOTE] = ACTIONS(2252), + [anon_sym_L_DQUOTE] = ACTIONS(2252), + [anon_sym_u_DQUOTE] = ACTIONS(2252), + [anon_sym_U_DQUOTE] = ACTIONS(2252), + [anon_sym_u8_DQUOTE] = ACTIONS(2252), + [anon_sym_DQUOTE] = ACTIONS(2252), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [anon_sym_NULL] = ACTIONS(2250), + [anon_sym_nullptr] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2250), + [anon_sym_decltype] = ACTIONS(2250), + [anon_sym_explicit] = ACTIONS(2250), + [anon_sym_typename] = ACTIONS(2250), + [anon_sym_template] = ACTIONS(2250), + [anon_sym_operator] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_static_assert] = ACTIONS(2250), + [anon_sym_concept] = ACTIONS(2250), + [anon_sym_co_return] = ACTIONS(2250), + [anon_sym_co_yield] = ACTIONS(2250), + [anon_sym_R_DQUOTE] = ACTIONS(2252), + [anon_sym_LR_DQUOTE] = ACTIONS(2252), + [anon_sym_uR_DQUOTE] = ACTIONS(2252), + [anon_sym_UR_DQUOTE] = ACTIONS(2252), + [anon_sym_u8R_DQUOTE] = ACTIONS(2252), + [anon_sym_co_await] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_alone_macro] = ACTIONS(2252), + [aux_sym_alone_macro_call_token1] = ACTIONS(2250), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2250), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_FORWARD] = ACTIONS(2250), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2250), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2250), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2250), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2250), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_PS_GET] = ACTIONS(2250), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2250), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2250), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2250), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2250), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2250), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2250), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2250), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2250), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2250), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2250), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2250), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2250), + [anon_sym_MOZ_COLD] = ACTIONS(2250), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2250), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2250), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2250), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2250), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2250), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2250), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2250), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2250), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2250), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2250), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2250), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2250), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2250), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2250), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2250), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2250), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2250), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2250), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2250), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2250), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2250), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_NONNULL] = ACTIONS(2250), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2250), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2250), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2250), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2250), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2250), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_NORETURN] = ACTIONS(2250), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2250), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2250), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2250), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2250), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2250), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2250), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2250), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2250), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2250), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2250), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2250), + [anon_sym_MOZ_RAII] = ACTIONS(2250), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2250), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2250), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2250), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2250), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2250), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2250), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2250), + }, + [STATE(587)] = { + [sym_identifier] = ACTIONS(2321), + [aux_sym_preproc_include_token1] = ACTIONS(2321), + [aux_sym_preproc_def_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token1] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2321), + [sym_preproc_directive] = ACTIONS(2321), + [anon_sym_LPAREN2] = ACTIONS(2323), + [anon_sym_BANG] = ACTIONS(2323), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_AMP_AMP] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_typedef] = ACTIONS(2321), + [anon_sym_virtual] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym___attribute__] = ACTIONS(2321), + [anon_sym___attribute] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2323), + [anon_sym___declspec] = ACTIONS(2321), + [anon_sym___based] = ACTIONS(2321), + [anon_sym___cdecl] = ACTIONS(2321), + [anon_sym___clrcall] = ACTIONS(2321), + [anon_sym___stdcall] = ACTIONS(2321), + [anon_sym___fastcall] = ACTIONS(2321), + [anon_sym___thiscall] = ACTIONS(2321), + [anon_sym___vectorcall] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_RBRACE] = ACTIONS(2323), + [anon_sym_signed] = ACTIONS(2321), + [anon_sym_unsigned] = ACTIONS(2321), + [anon_sym_long] = ACTIONS(2321), + [anon_sym_short] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_register] = ACTIONS(2321), + [anon_sym_inline] = ACTIONS(2321), + [anon_sym___inline] = ACTIONS(2321), + [anon_sym___inline__] = ACTIONS(2321), + [anon_sym___forceinline] = ACTIONS(2321), + [anon_sym_thread_local] = ACTIONS(2321), + [anon_sym___thread] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym__Nonnull] = ACTIONS(2321), + [anon_sym_mutable] = ACTIONS(2321), + [anon_sym_constinit] = ACTIONS(2321), + [anon_sym_consteval] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2321), + [anon_sym__Alignas] = ACTIONS(2321), + [sym_primitive_type] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_switch] = ACTIONS(2321), + [anon_sym_case] = ACTIONS(2321), + [anon_sym_default] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_do] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_goto] = ACTIONS(2321), + [anon_sym___try] = ACTIONS(2321), + [anon_sym___leave] = ACTIONS(2321), + [anon_sym_not] = ACTIONS(2321), + [anon_sym_compl] = ACTIONS(2321), + [anon_sym_DASH_DASH] = ACTIONS(2323), + [anon_sym_PLUS_PLUS] = ACTIONS(2323), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2321), + [anon_sym___alignof] = ACTIONS(2321), + [anon_sym__alignof] = ACTIONS(2321), + [anon_sym_alignof] = ACTIONS(2321), + [anon_sym__Alignof] = ACTIONS(2321), + [anon_sym_offsetof] = ACTIONS(2321), + [anon_sym__Generic] = ACTIONS(2321), + [anon_sym_asm] = ACTIONS(2321), + [anon_sym___asm__] = ACTIONS(2321), + [anon_sym___asm] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2323), + [anon_sym_u_SQUOTE] = ACTIONS(2323), + [anon_sym_U_SQUOTE] = ACTIONS(2323), + [anon_sym_u8_SQUOTE] = ACTIONS(2323), + [anon_sym_SQUOTE] = ACTIONS(2323), + [anon_sym_L_DQUOTE] = ACTIONS(2323), + [anon_sym_u_DQUOTE] = ACTIONS(2323), + [anon_sym_U_DQUOTE] = ACTIONS(2323), + [anon_sym_u8_DQUOTE] = ACTIONS(2323), + [anon_sym_DQUOTE] = ACTIONS(2323), + [sym_true] = ACTIONS(2321), + [sym_false] = ACTIONS(2321), + [anon_sym_NULL] = ACTIONS(2321), + [anon_sym_nullptr] = ACTIONS(2321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2321), + [anon_sym_decltype] = ACTIONS(2321), + [anon_sym_explicit] = ACTIONS(2321), + [anon_sym_typename] = ACTIONS(2321), + [anon_sym_template] = ACTIONS(2321), + [anon_sym_operator] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [anon_sym_delete] = ACTIONS(2321), + [anon_sym_throw] = ACTIONS(2321), + [anon_sym_namespace] = ACTIONS(2321), + [anon_sym_using] = ACTIONS(2321), + [anon_sym_static_assert] = ACTIONS(2321), + [anon_sym_concept] = ACTIONS(2321), + [anon_sym_co_return] = ACTIONS(2321), + [anon_sym_co_yield] = ACTIONS(2321), + [anon_sym_R_DQUOTE] = ACTIONS(2323), + [anon_sym_LR_DQUOTE] = ACTIONS(2323), + [anon_sym_uR_DQUOTE] = ACTIONS(2323), + [anon_sym_UR_DQUOTE] = ACTIONS(2323), + [anon_sym_u8R_DQUOTE] = ACTIONS(2323), + [anon_sym_co_await] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2321), + [sym_this] = ACTIONS(2321), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_FORWARD] = ACTIONS(2321), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2321), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_PS_GET] = ACTIONS(2321), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2321), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2321), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2321), + [anon_sym_MOZ_COLD] = ACTIONS(2321), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2321), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2321), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2321), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2321), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2321), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2321), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2321), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2321), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2321), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2321), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2321), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2321), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_RAII] = ACTIONS(2321), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2321), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2321), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2321), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2321), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2321), + }, + [STATE(588)] = { + [sym_identifier] = ACTIONS(2321), + [aux_sym_preproc_include_token1] = ACTIONS(2321), + [aux_sym_preproc_def_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token1] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2321), + [sym_preproc_directive] = ACTIONS(2321), + [anon_sym_LPAREN2] = ACTIONS(2323), + [anon_sym_BANG] = ACTIONS(2323), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_AMP_AMP] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_typedef] = ACTIONS(2321), + [anon_sym_virtual] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym___attribute__] = ACTIONS(2321), + [anon_sym___attribute] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2323), + [anon_sym___declspec] = ACTIONS(2321), + [anon_sym___based] = ACTIONS(2321), + [anon_sym___cdecl] = ACTIONS(2321), + [anon_sym___clrcall] = ACTIONS(2321), + [anon_sym___stdcall] = ACTIONS(2321), + [anon_sym___fastcall] = ACTIONS(2321), + [anon_sym___thiscall] = ACTIONS(2321), + [anon_sym___vectorcall] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_RBRACE] = ACTIONS(2323), + [anon_sym_signed] = ACTIONS(2321), + [anon_sym_unsigned] = ACTIONS(2321), + [anon_sym_long] = ACTIONS(2321), + [anon_sym_short] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_register] = ACTIONS(2321), + [anon_sym_inline] = ACTIONS(2321), + [anon_sym___inline] = ACTIONS(2321), + [anon_sym___inline__] = ACTIONS(2321), + [anon_sym___forceinline] = ACTIONS(2321), + [anon_sym_thread_local] = ACTIONS(2321), + [anon_sym___thread] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym__Nonnull] = ACTIONS(2321), + [anon_sym_mutable] = ACTIONS(2321), + [anon_sym_constinit] = ACTIONS(2321), + [anon_sym_consteval] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2321), + [anon_sym__Alignas] = ACTIONS(2321), + [sym_primitive_type] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_switch] = ACTIONS(2321), + [anon_sym_case] = ACTIONS(2321), + [anon_sym_default] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_do] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_goto] = ACTIONS(2321), + [anon_sym___try] = ACTIONS(2321), + [anon_sym___leave] = ACTIONS(2321), + [anon_sym_not] = ACTIONS(2321), + [anon_sym_compl] = ACTIONS(2321), + [anon_sym_DASH_DASH] = ACTIONS(2323), + [anon_sym_PLUS_PLUS] = ACTIONS(2323), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2321), + [anon_sym___alignof] = ACTIONS(2321), + [anon_sym__alignof] = ACTIONS(2321), + [anon_sym_alignof] = ACTIONS(2321), + [anon_sym__Alignof] = ACTIONS(2321), + [anon_sym_offsetof] = ACTIONS(2321), + [anon_sym__Generic] = ACTIONS(2321), + [anon_sym_asm] = ACTIONS(2321), + [anon_sym___asm__] = ACTIONS(2321), + [anon_sym___asm] = ACTIONS(2321), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2323), + [anon_sym_u_SQUOTE] = ACTIONS(2323), + [anon_sym_U_SQUOTE] = ACTIONS(2323), + [anon_sym_u8_SQUOTE] = ACTIONS(2323), + [anon_sym_SQUOTE] = ACTIONS(2323), + [anon_sym_L_DQUOTE] = ACTIONS(2323), + [anon_sym_u_DQUOTE] = ACTIONS(2323), + [anon_sym_U_DQUOTE] = ACTIONS(2323), + [anon_sym_u8_DQUOTE] = ACTIONS(2323), + [anon_sym_DQUOTE] = ACTIONS(2323), + [sym_true] = ACTIONS(2321), + [sym_false] = ACTIONS(2321), + [anon_sym_NULL] = ACTIONS(2321), + [anon_sym_nullptr] = ACTIONS(2321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2321), + [anon_sym_decltype] = ACTIONS(2321), + [anon_sym_explicit] = ACTIONS(2321), + [anon_sym_typename] = ACTIONS(2321), + [anon_sym_template] = ACTIONS(2321), + [anon_sym_operator] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [anon_sym_delete] = ACTIONS(2321), + [anon_sym_throw] = ACTIONS(2321), + [anon_sym_namespace] = ACTIONS(2321), + [anon_sym_using] = ACTIONS(2321), + [anon_sym_static_assert] = ACTIONS(2321), + [anon_sym_concept] = ACTIONS(2321), + [anon_sym_co_return] = ACTIONS(2321), + [anon_sym_co_yield] = ACTIONS(2321), + [anon_sym_R_DQUOTE] = ACTIONS(2323), + [anon_sym_LR_DQUOTE] = ACTIONS(2323), + [anon_sym_uR_DQUOTE] = ACTIONS(2323), + [anon_sym_UR_DQUOTE] = ACTIONS(2323), + [anon_sym_u8R_DQUOTE] = ACTIONS(2323), + [anon_sym_co_await] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2321), + [sym_this] = ACTIONS(2321), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_FORWARD] = ACTIONS(2321), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2321), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_PS_GET] = ACTIONS(2321), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2321), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2321), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2321), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2321), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2321), + [anon_sym_MOZ_COLD] = ACTIONS(2321), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2321), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2321), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2321), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2321), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2321), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2321), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2321), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2321), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2321), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2321), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2321), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2321), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_RAII] = ACTIONS(2321), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2321), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2321), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2321), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2321), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2321), + }, + [STATE(589)] = { + [ts_builtin_sym_end] = ACTIONS(2490), + [sym_identifier] = ACTIONS(2492), + [aux_sym_preproc_include_token1] = ACTIONS(2492), + [aux_sym_preproc_def_token1] = ACTIONS(2492), + [aux_sym_preproc_if_token1] = ACTIONS(2492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2492), + [sym_preproc_directive] = ACTIONS(2492), + [anon_sym_LPAREN2] = ACTIONS(2490), + [anon_sym_BANG] = ACTIONS(2490), + [anon_sym_TILDE] = ACTIONS(2490), + [anon_sym_DASH] = ACTIONS(2492), + [anon_sym_PLUS] = ACTIONS(2492), + [anon_sym_STAR] = ACTIONS(2490), + [anon_sym_AMP_AMP] = ACTIONS(2490), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2490), + [anon_sym___extension__] = ACTIONS(2492), + [anon_sym_typedef] = ACTIONS(2492), + [anon_sym_virtual] = ACTIONS(2492), + [anon_sym_extern] = ACTIONS(2492), + [anon_sym___attribute__] = ACTIONS(2492), + [anon_sym___attribute] = ACTIONS(2492), + [anon_sym_COLON_COLON] = ACTIONS(2490), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2490), + [anon_sym___declspec] = ACTIONS(2492), + [anon_sym___based] = ACTIONS(2492), + [anon_sym___cdecl] = ACTIONS(2492), + [anon_sym___clrcall] = ACTIONS(2492), + [anon_sym___stdcall] = ACTIONS(2492), + [anon_sym___fastcall] = ACTIONS(2492), + [anon_sym___thiscall] = ACTIONS(2492), + [anon_sym___vectorcall] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2490), + [anon_sym_signed] = ACTIONS(2492), + [anon_sym_unsigned] = ACTIONS(2492), + [anon_sym_long] = ACTIONS(2492), + [anon_sym_short] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2492), + [anon_sym_static] = ACTIONS(2492), + [anon_sym_register] = ACTIONS(2492), + [anon_sym_inline] = ACTIONS(2492), + [anon_sym___inline] = ACTIONS(2492), + [anon_sym___inline__] = ACTIONS(2492), + [anon_sym___forceinline] = ACTIONS(2492), + [anon_sym_thread_local] = ACTIONS(2492), + [anon_sym___thread] = ACTIONS(2492), + [anon_sym_const] = ACTIONS(2492), + [anon_sym_constexpr] = ACTIONS(2492), + [anon_sym_volatile] = ACTIONS(2492), + [anon_sym_restrict] = ACTIONS(2492), + [anon_sym___restrict__] = ACTIONS(2492), + [anon_sym__Atomic] = ACTIONS(2492), + [anon_sym__Noreturn] = ACTIONS(2492), + [anon_sym_noreturn] = ACTIONS(2492), + [anon_sym__Nonnull] = ACTIONS(2492), + [anon_sym_mutable] = ACTIONS(2492), + [anon_sym_constinit] = ACTIONS(2492), + [anon_sym_consteval] = ACTIONS(2492), + [anon_sym_alignas] = ACTIONS(2492), + [anon_sym__Alignas] = ACTIONS(2492), + [sym_primitive_type] = ACTIONS(2492), + [anon_sym_enum] = ACTIONS(2492), + [anon_sym_class] = ACTIONS(2492), + [anon_sym_struct] = ACTIONS(2492), + [anon_sym_union] = ACTIONS(2492), + [anon_sym_if] = ACTIONS(2492), + [anon_sym_switch] = ACTIONS(2492), + [anon_sym_case] = ACTIONS(2492), + [anon_sym_default] = ACTIONS(2492), + [anon_sym_while] = ACTIONS(2492), + [anon_sym_do] = ACTIONS(2492), + [anon_sym_for] = ACTIONS(2492), + [anon_sym_return] = ACTIONS(2492), + [anon_sym_break] = ACTIONS(2492), + [anon_sym_continue] = ACTIONS(2492), + [anon_sym_goto] = ACTIONS(2492), + [anon_sym_not] = ACTIONS(2492), + [anon_sym_compl] = ACTIONS(2492), + [anon_sym_DASH_DASH] = ACTIONS(2490), + [anon_sym_PLUS_PLUS] = ACTIONS(2490), + [anon_sym_sizeof] = ACTIONS(2492), + [anon_sym___alignof__] = ACTIONS(2492), + [anon_sym___alignof] = ACTIONS(2492), + [anon_sym__alignof] = ACTIONS(2492), + [anon_sym_alignof] = ACTIONS(2492), + [anon_sym__Alignof] = ACTIONS(2492), + [anon_sym_offsetof] = ACTIONS(2492), + [anon_sym__Generic] = ACTIONS(2492), + [anon_sym_asm] = ACTIONS(2492), + [anon_sym___asm__] = ACTIONS(2492), + [anon_sym___asm] = ACTIONS(2492), + [sym_number_literal] = ACTIONS(2490), + [anon_sym_L_SQUOTE] = ACTIONS(2490), + [anon_sym_u_SQUOTE] = ACTIONS(2490), + [anon_sym_U_SQUOTE] = ACTIONS(2490), + [anon_sym_u8_SQUOTE] = ACTIONS(2490), + [anon_sym_SQUOTE] = ACTIONS(2490), + [anon_sym_L_DQUOTE] = ACTIONS(2490), + [anon_sym_u_DQUOTE] = ACTIONS(2490), + [anon_sym_U_DQUOTE] = ACTIONS(2490), + [anon_sym_u8_DQUOTE] = ACTIONS(2490), + [anon_sym_DQUOTE] = ACTIONS(2490), + [sym_true] = ACTIONS(2492), + [sym_false] = ACTIONS(2492), + [anon_sym_NULL] = ACTIONS(2492), + [anon_sym_nullptr] = ACTIONS(2492), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2492), + [anon_sym_decltype] = ACTIONS(2492), + [anon_sym_explicit] = ACTIONS(2492), + [anon_sym_typename] = ACTIONS(2492), + [anon_sym_template] = ACTIONS(2492), + [anon_sym_operator] = ACTIONS(2492), + [anon_sym_try] = ACTIONS(2492), + [anon_sym_delete] = ACTIONS(2492), + [anon_sym_throw] = ACTIONS(2492), + [anon_sym_namespace] = ACTIONS(2492), + [anon_sym_using] = ACTIONS(2492), + [anon_sym_static_assert] = ACTIONS(2492), + [anon_sym_concept] = ACTIONS(2492), + [anon_sym_co_return] = ACTIONS(2492), + [anon_sym_co_yield] = ACTIONS(2492), + [anon_sym_R_DQUOTE] = ACTIONS(2490), + [anon_sym_LR_DQUOTE] = ACTIONS(2490), + [anon_sym_uR_DQUOTE] = ACTIONS(2490), + [anon_sym_UR_DQUOTE] = ACTIONS(2490), + [anon_sym_u8R_DQUOTE] = ACTIONS(2490), + [anon_sym_co_await] = ACTIONS(2492), + [anon_sym_new] = ACTIONS(2492), + [anon_sym_requires] = ACTIONS(2492), + [sym_this] = ACTIONS(2492), + [sym_alone_macro] = ACTIONS(2490), + [aux_sym_alone_macro_call_token1] = ACTIONS(2492), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2492), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2492), + [anon_sym_FORWARD] = ACTIONS(2492), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2492), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2492), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2492), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2492), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2492), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2492), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2492), + [anon_sym_PS_GET] = ACTIONS(2492), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2492), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2492), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2492), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2492), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2492), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2492), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2492), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2492), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2492), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2492), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2492), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2492), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2492), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2492), + [anon_sym_MOZ_COLD] = ACTIONS(2492), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2492), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2492), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2492), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2492), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2492), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2492), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2492), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2492), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2492), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2492), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2492), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2492), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2492), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2492), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2492), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2492), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2492), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2492), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2492), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2492), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2492), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2492), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2492), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2492), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2492), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2492), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2492), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2492), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2492), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2492), + [anon_sym_MOZ_NONNULL] = ACTIONS(2492), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2492), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2492), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2492), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2492), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2492), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2492), + [anon_sym_MOZ_NORETURN] = ACTIONS(2492), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2492), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2492), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2492), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2492), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2492), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2492), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2492), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2492), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2492), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2492), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2492), + [anon_sym_MOZ_RAII] = ACTIONS(2492), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2492), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2492), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2492), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2492), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2492), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2492), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2492), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2492), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2492), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2492), + }, + [STATE(590)] = { + [sym_identifier] = ACTIONS(2333), + [aux_sym_preproc_include_token1] = ACTIONS(2333), + [aux_sym_preproc_def_token1] = ACTIONS(2333), + [aux_sym_preproc_if_token1] = ACTIONS(2333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2333), + [sym_preproc_directive] = ACTIONS(2333), + [anon_sym_LPAREN2] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2333), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym___extension__] = ACTIONS(2333), + [anon_sym_typedef] = ACTIONS(2333), + [anon_sym_virtual] = ACTIONS(2333), + [anon_sym_extern] = ACTIONS(2333), + [anon_sym___attribute__] = ACTIONS(2333), + [anon_sym___attribute] = ACTIONS(2333), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), + [anon_sym___declspec] = ACTIONS(2333), + [anon_sym___based] = ACTIONS(2333), + [anon_sym___cdecl] = ACTIONS(2333), + [anon_sym___clrcall] = ACTIONS(2333), + [anon_sym___stdcall] = ACTIONS(2333), + [anon_sym___fastcall] = ACTIONS(2333), + [anon_sym___thiscall] = ACTIONS(2333), + [anon_sym___vectorcall] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_signed] = ACTIONS(2333), + [anon_sym_unsigned] = ACTIONS(2333), + [anon_sym_long] = ACTIONS(2333), + [anon_sym_short] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_register] = ACTIONS(2333), + [anon_sym_inline] = ACTIONS(2333), + [anon_sym___inline] = ACTIONS(2333), + [anon_sym___inline__] = ACTIONS(2333), + [anon_sym___forceinline] = ACTIONS(2333), + [anon_sym_thread_local] = ACTIONS(2333), + [anon_sym___thread] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [anon_sym_constexpr] = ACTIONS(2333), + [anon_sym_volatile] = ACTIONS(2333), + [anon_sym_restrict] = ACTIONS(2333), + [anon_sym___restrict__] = ACTIONS(2333), + [anon_sym__Atomic] = ACTIONS(2333), + [anon_sym__Noreturn] = ACTIONS(2333), + [anon_sym_noreturn] = ACTIONS(2333), + [anon_sym__Nonnull] = ACTIONS(2333), + [anon_sym_mutable] = ACTIONS(2333), + [anon_sym_constinit] = ACTIONS(2333), + [anon_sym_consteval] = ACTIONS(2333), + [anon_sym_alignas] = ACTIONS(2333), + [anon_sym__Alignas] = ACTIONS(2333), + [sym_primitive_type] = ACTIONS(2333), + [anon_sym_enum] = ACTIONS(2333), + [anon_sym_class] = ACTIONS(2333), + [anon_sym_struct] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_switch] = ACTIONS(2333), + [anon_sym_case] = ACTIONS(2333), + [anon_sym_default] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_break] = ACTIONS(2333), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_goto] = ACTIONS(2333), + [anon_sym___try] = ACTIONS(2333), + [anon_sym___leave] = ACTIONS(2333), + [anon_sym_not] = ACTIONS(2333), + [anon_sym_compl] = ACTIONS(2333), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_sizeof] = ACTIONS(2333), + [anon_sym___alignof__] = ACTIONS(2333), + [anon_sym___alignof] = ACTIONS(2333), + [anon_sym__alignof] = ACTIONS(2333), + [anon_sym_alignof] = ACTIONS(2333), + [anon_sym__Alignof] = ACTIONS(2333), + [anon_sym_offsetof] = ACTIONS(2333), + [anon_sym__Generic] = ACTIONS(2333), + [anon_sym_asm] = ACTIONS(2333), + [anon_sym___asm__] = ACTIONS(2333), + [anon_sym___asm] = ACTIONS(2333), + [sym_number_literal] = ACTIONS(2335), + [anon_sym_L_SQUOTE] = ACTIONS(2335), + [anon_sym_u_SQUOTE] = ACTIONS(2335), + [anon_sym_U_SQUOTE] = ACTIONS(2335), + [anon_sym_u8_SQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_L_DQUOTE] = ACTIONS(2335), + [anon_sym_u_DQUOTE] = ACTIONS(2335), + [anon_sym_U_DQUOTE] = ACTIONS(2335), + [anon_sym_u8_DQUOTE] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym_true] = ACTIONS(2333), + [sym_false] = ACTIONS(2333), + [anon_sym_NULL] = ACTIONS(2333), + [anon_sym_nullptr] = ACTIONS(2333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2333), + [anon_sym_decltype] = ACTIONS(2333), + [anon_sym_explicit] = ACTIONS(2333), + [anon_sym_typename] = ACTIONS(2333), + [anon_sym_template] = ACTIONS(2333), + [anon_sym_operator] = ACTIONS(2333), + [anon_sym_try] = ACTIONS(2333), + [anon_sym_delete] = ACTIONS(2333), + [anon_sym_throw] = ACTIONS(2333), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_using] = ACTIONS(2333), + [anon_sym_static_assert] = ACTIONS(2333), + [anon_sym_concept] = ACTIONS(2333), + [anon_sym_co_return] = ACTIONS(2333), + [anon_sym_co_yield] = ACTIONS(2333), + [anon_sym_R_DQUOTE] = ACTIONS(2335), + [anon_sym_LR_DQUOTE] = ACTIONS(2335), + [anon_sym_uR_DQUOTE] = ACTIONS(2335), + [anon_sym_UR_DQUOTE] = ACTIONS(2335), + [anon_sym_u8R_DQUOTE] = ACTIONS(2335), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2333), + [anon_sym_requires] = ACTIONS(2333), + [sym_this] = ACTIONS(2333), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2333), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_FORWARD] = ACTIONS(2333), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2333), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2333), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2333), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2333), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_PS_GET] = ACTIONS(2333), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2333), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2333), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2333), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2333), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2333), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2333), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2333), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2333), + [anon_sym_MOZ_COLD] = ACTIONS(2333), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2333), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2333), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2333), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2333), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2333), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2333), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2333), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2333), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2333), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2333), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2333), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2333), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2333), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_NONNULL] = ACTIONS(2333), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2333), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2333), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2333), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2333), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2333), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2333), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2333), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2333), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2333), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2333), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2333), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2333), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2333), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2333), + [anon_sym_MOZ_RAII] = ACTIONS(2333), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2333), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2333), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2333), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2333), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2333), + }, + [STATE(591)] = { + [sym_identifier] = ACTIONS(2337), + [aux_sym_preproc_include_token1] = ACTIONS(2337), + [aux_sym_preproc_def_token1] = ACTIONS(2337), + [aux_sym_preproc_if_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), + [sym_preproc_directive] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2339), + [anon_sym_BANG] = ACTIONS(2339), + [anon_sym_TILDE] = ACTIONS(2339), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2339), + [anon_sym_AMP_AMP] = ACTIONS(2339), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym___extension__] = ACTIONS(2337), + [anon_sym_typedef] = ACTIONS(2337), + [anon_sym_virtual] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym___attribute__] = ACTIONS(2337), + [anon_sym___attribute] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2339), + [anon_sym___declspec] = ACTIONS(2337), + [anon_sym___based] = ACTIONS(2337), + [anon_sym___cdecl] = ACTIONS(2337), + [anon_sym___clrcall] = ACTIONS(2337), + [anon_sym___stdcall] = ACTIONS(2337), + [anon_sym___fastcall] = ACTIONS(2337), + [anon_sym___thiscall] = ACTIONS(2337), + [anon_sym___vectorcall] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2339), + [anon_sym_RBRACE] = ACTIONS(2339), + [anon_sym_signed] = ACTIONS(2337), + [anon_sym_unsigned] = ACTIONS(2337), + [anon_sym_long] = ACTIONS(2337), + [anon_sym_short] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_inline] = ACTIONS(2337), + [anon_sym___inline] = ACTIONS(2337), + [anon_sym___inline__] = ACTIONS(2337), + [anon_sym___forceinline] = ACTIONS(2337), + [anon_sym_thread_local] = ACTIONS(2337), + [anon_sym___thread] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_constexpr] = ACTIONS(2337), + [anon_sym_volatile] = ACTIONS(2337), + [anon_sym_restrict] = ACTIONS(2337), + [anon_sym___restrict__] = ACTIONS(2337), + [anon_sym__Atomic] = ACTIONS(2337), + [anon_sym__Noreturn] = ACTIONS(2337), + [anon_sym_noreturn] = ACTIONS(2337), + [anon_sym__Nonnull] = ACTIONS(2337), + [anon_sym_mutable] = ACTIONS(2337), + [anon_sym_constinit] = ACTIONS(2337), + [anon_sym_consteval] = ACTIONS(2337), + [anon_sym_alignas] = ACTIONS(2337), + [anon_sym__Alignas] = ACTIONS(2337), + [sym_primitive_type] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_case] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_goto] = ACTIONS(2337), + [anon_sym___try] = ACTIONS(2337), + [anon_sym___leave] = ACTIONS(2337), + [anon_sym_not] = ACTIONS(2337), + [anon_sym_compl] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2339), + [anon_sym_PLUS_PLUS] = ACTIONS(2339), + [anon_sym_sizeof] = ACTIONS(2337), + [anon_sym___alignof__] = ACTIONS(2337), + [anon_sym___alignof] = ACTIONS(2337), + [anon_sym__alignof] = ACTIONS(2337), + [anon_sym_alignof] = ACTIONS(2337), + [anon_sym__Alignof] = ACTIONS(2337), + [anon_sym_offsetof] = ACTIONS(2337), + [anon_sym__Generic] = ACTIONS(2337), + [anon_sym_asm] = ACTIONS(2337), + [anon_sym___asm__] = ACTIONS(2337), + [anon_sym___asm] = ACTIONS(2337), + [sym_number_literal] = ACTIONS(2339), + [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(2339), + [anon_sym_u_DQUOTE] = ACTIONS(2339), + [anon_sym_U_DQUOTE] = ACTIONS(2339), + [anon_sym_u8_DQUOTE] = ACTIONS(2339), + [anon_sym_DQUOTE] = ACTIONS(2339), + [sym_true] = ACTIONS(2337), + [sym_false] = ACTIONS(2337), + [anon_sym_NULL] = ACTIONS(2337), + [anon_sym_nullptr] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2337), + [anon_sym_decltype] = ACTIONS(2337), + [anon_sym_explicit] = ACTIONS(2337), + [anon_sym_typename] = ACTIONS(2337), + [anon_sym_template] = ACTIONS(2337), + [anon_sym_operator] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_delete] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [anon_sym_static_assert] = ACTIONS(2337), + [anon_sym_concept] = ACTIONS(2337), + [anon_sym_co_return] = ACTIONS(2337), + [anon_sym_co_yield] = ACTIONS(2337), + [anon_sym_R_DQUOTE] = ACTIONS(2339), + [anon_sym_LR_DQUOTE] = ACTIONS(2339), + [anon_sym_uR_DQUOTE] = ACTIONS(2339), + [anon_sym_UR_DQUOTE] = ACTIONS(2339), + [anon_sym_u8R_DQUOTE] = ACTIONS(2339), + [anon_sym_co_await] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_requires] = ACTIONS(2337), + [sym_this] = ACTIONS(2337), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2337), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_FORWARD] = ACTIONS(2337), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2337), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2337), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2337), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2337), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_PS_GET] = ACTIONS(2337), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2337), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2337), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2337), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2337), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2337), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2337), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2337), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2337), + [anon_sym_MOZ_COLD] = ACTIONS(2337), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2337), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2337), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2337), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2337), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2337), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2337), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2337), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2337), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2337), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2337), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2337), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2337), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2337), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_NONNULL] = ACTIONS(2337), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2337), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2337), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2337), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2337), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2337), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2337), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2337), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2337), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2337), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2337), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2337), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2337), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2337), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2337), + [anon_sym_MOZ_RAII] = ACTIONS(2337), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2337), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2337), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2337), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2337), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2337), + }, + [STATE(592)] = { + [sym_identifier] = ACTIONS(2341), + [aux_sym_preproc_include_token1] = ACTIONS(2341), + [aux_sym_preproc_def_token1] = ACTIONS(2341), + [aux_sym_preproc_if_token1] = ACTIONS(2341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2341), + [sym_preproc_directive] = ACTIONS(2341), + [anon_sym_LPAREN2] = ACTIONS(2343), + [anon_sym_BANG] = ACTIONS(2343), + [anon_sym_TILDE] = ACTIONS(2343), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_PLUS] = ACTIONS(2341), + [anon_sym_STAR] = ACTIONS(2343), + [anon_sym_AMP_AMP] = ACTIONS(2343), + [anon_sym_AMP] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2343), + [anon_sym___extension__] = ACTIONS(2341), + [anon_sym_typedef] = ACTIONS(2341), + [anon_sym_virtual] = ACTIONS(2341), + [anon_sym_extern] = ACTIONS(2341), + [anon_sym___attribute__] = ACTIONS(2341), + [anon_sym___attribute] = ACTIONS(2341), + [anon_sym_COLON_COLON] = ACTIONS(2343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2343), + [anon_sym___declspec] = ACTIONS(2341), + [anon_sym___based] = ACTIONS(2341), + [anon_sym___cdecl] = ACTIONS(2341), + [anon_sym___clrcall] = ACTIONS(2341), + [anon_sym___stdcall] = ACTIONS(2341), + [anon_sym___fastcall] = ACTIONS(2341), + [anon_sym___thiscall] = ACTIONS(2341), + [anon_sym___vectorcall] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(2343), + [anon_sym_signed] = ACTIONS(2341), + [anon_sym_unsigned] = ACTIONS(2341), + [anon_sym_long] = ACTIONS(2341), + [anon_sym_short] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2341), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_register] = ACTIONS(2341), + [anon_sym_inline] = ACTIONS(2341), + [anon_sym___inline] = ACTIONS(2341), + [anon_sym___inline__] = ACTIONS(2341), + [anon_sym___forceinline] = ACTIONS(2341), + [anon_sym_thread_local] = ACTIONS(2341), + [anon_sym___thread] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_constexpr] = ACTIONS(2341), + [anon_sym_volatile] = ACTIONS(2341), + [anon_sym_restrict] = ACTIONS(2341), + [anon_sym___restrict__] = ACTIONS(2341), + [anon_sym__Atomic] = ACTIONS(2341), + [anon_sym__Noreturn] = ACTIONS(2341), + [anon_sym_noreturn] = ACTIONS(2341), + [anon_sym__Nonnull] = ACTIONS(2341), + [anon_sym_mutable] = ACTIONS(2341), + [anon_sym_constinit] = ACTIONS(2341), + [anon_sym_consteval] = ACTIONS(2341), + [anon_sym_alignas] = ACTIONS(2341), + [anon_sym__Alignas] = ACTIONS(2341), + [sym_primitive_type] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_class] = ACTIONS(2341), + [anon_sym_struct] = ACTIONS(2341), + [anon_sym_union] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_switch] = ACTIONS(2341), + [anon_sym_case] = ACTIONS(2341), + [anon_sym_default] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [anon_sym_do] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_goto] = ACTIONS(2341), + [anon_sym___try] = ACTIONS(2341), + [anon_sym___leave] = ACTIONS(2341), + [anon_sym_not] = ACTIONS(2341), + [anon_sym_compl] = ACTIONS(2341), + [anon_sym_DASH_DASH] = ACTIONS(2343), + [anon_sym_PLUS_PLUS] = ACTIONS(2343), + [anon_sym_sizeof] = ACTIONS(2341), + [anon_sym___alignof__] = ACTIONS(2341), + [anon_sym___alignof] = ACTIONS(2341), + [anon_sym__alignof] = ACTIONS(2341), + [anon_sym_alignof] = ACTIONS(2341), + [anon_sym__Alignof] = ACTIONS(2341), + [anon_sym_offsetof] = ACTIONS(2341), + [anon_sym__Generic] = ACTIONS(2341), + [anon_sym_asm] = ACTIONS(2341), + [anon_sym___asm__] = ACTIONS(2341), + [anon_sym___asm] = ACTIONS(2341), + [sym_number_literal] = ACTIONS(2343), + [anon_sym_L_SQUOTE] = ACTIONS(2343), + [anon_sym_u_SQUOTE] = ACTIONS(2343), + [anon_sym_U_SQUOTE] = ACTIONS(2343), + [anon_sym_u8_SQUOTE] = ACTIONS(2343), + [anon_sym_SQUOTE] = ACTIONS(2343), + [anon_sym_L_DQUOTE] = ACTIONS(2343), + [anon_sym_u_DQUOTE] = ACTIONS(2343), + [anon_sym_U_DQUOTE] = ACTIONS(2343), + [anon_sym_u8_DQUOTE] = ACTIONS(2343), + [anon_sym_DQUOTE] = ACTIONS(2343), + [sym_true] = ACTIONS(2341), + [sym_false] = ACTIONS(2341), + [anon_sym_NULL] = ACTIONS(2341), + [anon_sym_nullptr] = ACTIONS(2341), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2341), + [anon_sym_decltype] = ACTIONS(2341), + [anon_sym_explicit] = ACTIONS(2341), + [anon_sym_typename] = ACTIONS(2341), + [anon_sym_template] = ACTIONS(2341), + [anon_sym_operator] = ACTIONS(2341), + [anon_sym_try] = ACTIONS(2341), + [anon_sym_delete] = ACTIONS(2341), + [anon_sym_throw] = ACTIONS(2341), + [anon_sym_namespace] = ACTIONS(2341), + [anon_sym_using] = ACTIONS(2341), + [anon_sym_static_assert] = ACTIONS(2341), + [anon_sym_concept] = ACTIONS(2341), + [anon_sym_co_return] = ACTIONS(2341), + [anon_sym_co_yield] = ACTIONS(2341), + [anon_sym_R_DQUOTE] = ACTIONS(2343), + [anon_sym_LR_DQUOTE] = ACTIONS(2343), + [anon_sym_uR_DQUOTE] = ACTIONS(2343), + [anon_sym_UR_DQUOTE] = ACTIONS(2343), + [anon_sym_u8R_DQUOTE] = ACTIONS(2343), + [anon_sym_co_await] = ACTIONS(2341), + [anon_sym_new] = ACTIONS(2341), + [anon_sym_requires] = ACTIONS(2341), + [sym_this] = ACTIONS(2341), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2341), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_FORWARD] = ACTIONS(2341), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2341), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2341), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2341), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2341), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_PS_GET] = ACTIONS(2341), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2341), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2341), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2341), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2341), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2341), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2341), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2341), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2341), + [anon_sym_MOZ_COLD] = ACTIONS(2341), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2341), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2341), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2341), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2341), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2341), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2341), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2341), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2341), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2341), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2341), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2341), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2341), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2341), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_NONNULL] = ACTIONS(2341), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2341), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2341), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2341), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2341), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2341), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2341), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2341), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2341), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2341), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2341), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2341), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2341), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2341), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2341), + [anon_sym_MOZ_RAII] = ACTIONS(2341), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2341), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2341), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2341), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2341), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2341), + }, + [STATE(593)] = { + [sym_identifier] = ACTIONS(2345), + [aux_sym_preproc_include_token1] = ACTIONS(2345), + [aux_sym_preproc_def_token1] = ACTIONS(2345), + [aux_sym_preproc_if_token1] = ACTIONS(2345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2345), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2345), + [sym_preproc_directive] = ACTIONS(2345), + [anon_sym_LPAREN2] = ACTIONS(2347), + [anon_sym_BANG] = ACTIONS(2347), + [anon_sym_TILDE] = ACTIONS(2347), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2345), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_AMP_AMP] = ACTIONS(2347), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2347), + [anon_sym___extension__] = ACTIONS(2345), + [anon_sym_typedef] = ACTIONS(2345), + [anon_sym_virtual] = ACTIONS(2345), + [anon_sym_extern] = ACTIONS(2345), + [anon_sym___attribute__] = ACTIONS(2345), + [anon_sym___attribute] = ACTIONS(2345), + [anon_sym_COLON_COLON] = ACTIONS(2347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2347), + [anon_sym___declspec] = ACTIONS(2345), + [anon_sym___based] = ACTIONS(2345), + [anon_sym___cdecl] = ACTIONS(2345), + [anon_sym___clrcall] = ACTIONS(2345), + [anon_sym___stdcall] = ACTIONS(2345), + [anon_sym___fastcall] = ACTIONS(2345), + [anon_sym___thiscall] = ACTIONS(2345), + [anon_sym___vectorcall] = ACTIONS(2345), + [anon_sym_LBRACE] = ACTIONS(2347), + [anon_sym_RBRACE] = ACTIONS(2347), + [anon_sym_signed] = ACTIONS(2345), + [anon_sym_unsigned] = ACTIONS(2345), + [anon_sym_long] = ACTIONS(2345), + [anon_sym_short] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(2345), + [anon_sym_static] = ACTIONS(2345), + [anon_sym_register] = ACTIONS(2345), + [anon_sym_inline] = ACTIONS(2345), + [anon_sym___inline] = ACTIONS(2345), + [anon_sym___inline__] = ACTIONS(2345), + [anon_sym___forceinline] = ACTIONS(2345), + [anon_sym_thread_local] = ACTIONS(2345), + [anon_sym___thread] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_constexpr] = ACTIONS(2345), + [anon_sym_volatile] = ACTIONS(2345), + [anon_sym_restrict] = ACTIONS(2345), + [anon_sym___restrict__] = ACTIONS(2345), + [anon_sym__Atomic] = ACTIONS(2345), + [anon_sym__Noreturn] = ACTIONS(2345), + [anon_sym_noreturn] = ACTIONS(2345), + [anon_sym__Nonnull] = ACTIONS(2345), + [anon_sym_mutable] = ACTIONS(2345), + [anon_sym_constinit] = ACTIONS(2345), + [anon_sym_consteval] = ACTIONS(2345), + [anon_sym_alignas] = ACTIONS(2345), + [anon_sym__Alignas] = ACTIONS(2345), + [sym_primitive_type] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_class] = ACTIONS(2345), + [anon_sym_struct] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_switch] = ACTIONS(2345), + [anon_sym_case] = ACTIONS(2345), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [anon_sym_do] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym___try] = ACTIONS(2345), + [anon_sym___leave] = ACTIONS(2345), + [anon_sym_not] = ACTIONS(2345), + [anon_sym_compl] = ACTIONS(2345), + [anon_sym_DASH_DASH] = ACTIONS(2347), + [anon_sym_PLUS_PLUS] = ACTIONS(2347), + [anon_sym_sizeof] = ACTIONS(2345), + [anon_sym___alignof__] = ACTIONS(2345), + [anon_sym___alignof] = ACTIONS(2345), + [anon_sym__alignof] = ACTIONS(2345), + [anon_sym_alignof] = ACTIONS(2345), + [anon_sym__Alignof] = ACTIONS(2345), + [anon_sym_offsetof] = ACTIONS(2345), + [anon_sym__Generic] = ACTIONS(2345), + [anon_sym_asm] = ACTIONS(2345), + [anon_sym___asm__] = ACTIONS(2345), + [anon_sym___asm] = ACTIONS(2345), + [sym_number_literal] = ACTIONS(2347), + [anon_sym_L_SQUOTE] = ACTIONS(2347), + [anon_sym_u_SQUOTE] = ACTIONS(2347), + [anon_sym_U_SQUOTE] = ACTIONS(2347), + [anon_sym_u8_SQUOTE] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2347), + [anon_sym_L_DQUOTE] = ACTIONS(2347), + [anon_sym_u_DQUOTE] = ACTIONS(2347), + [anon_sym_U_DQUOTE] = ACTIONS(2347), + [anon_sym_u8_DQUOTE] = ACTIONS(2347), + [anon_sym_DQUOTE] = ACTIONS(2347), + [sym_true] = ACTIONS(2345), + [sym_false] = ACTIONS(2345), + [anon_sym_NULL] = ACTIONS(2345), + [anon_sym_nullptr] = ACTIONS(2345), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2345), + [anon_sym_decltype] = ACTIONS(2345), + [anon_sym_explicit] = ACTIONS(2345), + [anon_sym_typename] = ACTIONS(2345), + [anon_sym_template] = ACTIONS(2345), + [anon_sym_operator] = ACTIONS(2345), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_delete] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2345), + [anon_sym_namespace] = ACTIONS(2345), + [anon_sym_using] = ACTIONS(2345), + [anon_sym_static_assert] = ACTIONS(2345), + [anon_sym_concept] = ACTIONS(2345), + [anon_sym_co_return] = ACTIONS(2345), + [anon_sym_co_yield] = ACTIONS(2345), + [anon_sym_R_DQUOTE] = ACTIONS(2347), + [anon_sym_LR_DQUOTE] = ACTIONS(2347), + [anon_sym_uR_DQUOTE] = ACTIONS(2347), + [anon_sym_UR_DQUOTE] = ACTIONS(2347), + [anon_sym_u8R_DQUOTE] = ACTIONS(2347), + [anon_sym_co_await] = ACTIONS(2345), + [anon_sym_new] = ACTIONS(2345), + [anon_sym_requires] = ACTIONS(2345), + [sym_this] = ACTIONS(2345), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2345), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_FORWARD] = ACTIONS(2345), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2345), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2345), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2345), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2345), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_PS_GET] = ACTIONS(2345), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2345), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2345), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2345), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2345), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2345), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2345), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2345), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2345), + [anon_sym_MOZ_COLD] = ACTIONS(2345), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2345), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2345), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2345), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2345), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2345), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2345), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2345), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2345), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2345), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2345), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2345), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2345), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2345), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_NONNULL] = ACTIONS(2345), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2345), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2345), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2345), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2345), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2345), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2345), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2345), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2345), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2345), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2345), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2345), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2345), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2345), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2345), + [anon_sym_MOZ_RAII] = ACTIONS(2345), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2345), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2345), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2345), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2345), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2345), + }, + [STATE(594)] = { + [sym_identifier] = ACTIONS(2349), + [aux_sym_preproc_include_token1] = ACTIONS(2349), + [aux_sym_preproc_def_token1] = ACTIONS(2349), + [aux_sym_preproc_if_token1] = ACTIONS(2349), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2349), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2349), + [sym_preproc_directive] = ACTIONS(2349), + [anon_sym_LPAREN2] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(2351), + [anon_sym_TILDE] = ACTIONS(2351), + [anon_sym_DASH] = ACTIONS(2349), + [anon_sym_PLUS] = ACTIONS(2349), + [anon_sym_STAR] = ACTIONS(2351), + [anon_sym_AMP_AMP] = ACTIONS(2351), + [anon_sym_AMP] = ACTIONS(2349), + [anon_sym_SEMI] = ACTIONS(2351), + [anon_sym___extension__] = ACTIONS(2349), + [anon_sym_typedef] = ACTIONS(2349), + [anon_sym_virtual] = ACTIONS(2349), + [anon_sym_extern] = ACTIONS(2349), + [anon_sym___attribute__] = ACTIONS(2349), + [anon_sym___attribute] = ACTIONS(2349), + [anon_sym_COLON_COLON] = ACTIONS(2351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2351), + [anon_sym___declspec] = ACTIONS(2349), + [anon_sym___based] = ACTIONS(2349), + [anon_sym___cdecl] = ACTIONS(2349), + [anon_sym___clrcall] = ACTIONS(2349), + [anon_sym___stdcall] = ACTIONS(2349), + [anon_sym___fastcall] = ACTIONS(2349), + [anon_sym___thiscall] = ACTIONS(2349), + [anon_sym___vectorcall] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2351), + [anon_sym_RBRACE] = ACTIONS(2351), + [anon_sym_signed] = ACTIONS(2349), + [anon_sym_unsigned] = ACTIONS(2349), + [anon_sym_long] = ACTIONS(2349), + [anon_sym_short] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_static] = ACTIONS(2349), + [anon_sym_register] = ACTIONS(2349), + [anon_sym_inline] = ACTIONS(2349), + [anon_sym___inline] = ACTIONS(2349), + [anon_sym___inline__] = ACTIONS(2349), + [anon_sym___forceinline] = ACTIONS(2349), + [anon_sym_thread_local] = ACTIONS(2349), + [anon_sym___thread] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [anon_sym_constexpr] = ACTIONS(2349), + [anon_sym_volatile] = ACTIONS(2349), + [anon_sym_restrict] = ACTIONS(2349), + [anon_sym___restrict__] = ACTIONS(2349), + [anon_sym__Atomic] = ACTIONS(2349), + [anon_sym__Noreturn] = ACTIONS(2349), + [anon_sym_noreturn] = ACTIONS(2349), + [anon_sym__Nonnull] = ACTIONS(2349), + [anon_sym_mutable] = ACTIONS(2349), + [anon_sym_constinit] = ACTIONS(2349), + [anon_sym_consteval] = ACTIONS(2349), + [anon_sym_alignas] = ACTIONS(2349), + [anon_sym__Alignas] = ACTIONS(2349), + [sym_primitive_type] = ACTIONS(2349), + [anon_sym_enum] = ACTIONS(2349), + [anon_sym_class] = ACTIONS(2349), + [anon_sym_struct] = ACTIONS(2349), + [anon_sym_union] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2349), + [anon_sym_switch] = ACTIONS(2349), + [anon_sym_case] = ACTIONS(2349), + [anon_sym_default] = ACTIONS(2349), + [anon_sym_while] = ACTIONS(2349), + [anon_sym_do] = ACTIONS(2349), + [anon_sym_for] = ACTIONS(2349), + [anon_sym_return] = ACTIONS(2349), + [anon_sym_break] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2349), + [anon_sym_goto] = ACTIONS(2349), + [anon_sym___try] = ACTIONS(2349), + [anon_sym___leave] = ACTIONS(2349), + [anon_sym_not] = ACTIONS(2349), + [anon_sym_compl] = ACTIONS(2349), + [anon_sym_DASH_DASH] = ACTIONS(2351), + [anon_sym_PLUS_PLUS] = ACTIONS(2351), + [anon_sym_sizeof] = ACTIONS(2349), + [anon_sym___alignof__] = ACTIONS(2349), + [anon_sym___alignof] = ACTIONS(2349), + [anon_sym__alignof] = ACTIONS(2349), + [anon_sym_alignof] = ACTIONS(2349), + [anon_sym__Alignof] = ACTIONS(2349), + [anon_sym_offsetof] = ACTIONS(2349), + [anon_sym__Generic] = ACTIONS(2349), + [anon_sym_asm] = ACTIONS(2349), + [anon_sym___asm__] = ACTIONS(2349), + [anon_sym___asm] = ACTIONS(2349), + [sym_number_literal] = ACTIONS(2351), + [anon_sym_L_SQUOTE] = ACTIONS(2351), + [anon_sym_u_SQUOTE] = ACTIONS(2351), + [anon_sym_U_SQUOTE] = ACTIONS(2351), + [anon_sym_u8_SQUOTE] = ACTIONS(2351), + [anon_sym_SQUOTE] = ACTIONS(2351), + [anon_sym_L_DQUOTE] = ACTIONS(2351), + [anon_sym_u_DQUOTE] = ACTIONS(2351), + [anon_sym_U_DQUOTE] = ACTIONS(2351), + [anon_sym_u8_DQUOTE] = ACTIONS(2351), + [anon_sym_DQUOTE] = ACTIONS(2351), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [anon_sym_NULL] = ACTIONS(2349), + [anon_sym_nullptr] = ACTIONS(2349), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2349), + [anon_sym_decltype] = ACTIONS(2349), + [anon_sym_explicit] = ACTIONS(2349), + [anon_sym_typename] = ACTIONS(2349), + [anon_sym_template] = ACTIONS(2349), + [anon_sym_operator] = ACTIONS(2349), + [anon_sym_try] = ACTIONS(2349), + [anon_sym_delete] = ACTIONS(2349), + [anon_sym_throw] = ACTIONS(2349), + [anon_sym_namespace] = ACTIONS(2349), + [anon_sym_using] = ACTIONS(2349), + [anon_sym_static_assert] = ACTIONS(2349), + [anon_sym_concept] = ACTIONS(2349), + [anon_sym_co_return] = ACTIONS(2349), + [anon_sym_co_yield] = ACTIONS(2349), + [anon_sym_R_DQUOTE] = ACTIONS(2351), + [anon_sym_LR_DQUOTE] = ACTIONS(2351), + [anon_sym_uR_DQUOTE] = ACTIONS(2351), + [anon_sym_UR_DQUOTE] = ACTIONS(2351), + [anon_sym_u8R_DQUOTE] = ACTIONS(2351), + [anon_sym_co_await] = ACTIONS(2349), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2349), + [sym_this] = ACTIONS(2349), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2349), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_FORWARD] = ACTIONS(2349), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2349), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2349), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2349), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2349), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_PS_GET] = ACTIONS(2349), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2349), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2349), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2349), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2349), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2349), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2349), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2349), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2349), + [anon_sym_MOZ_COLD] = ACTIONS(2349), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2349), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2349), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2349), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2349), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2349), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2349), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2349), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2349), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2349), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2349), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2349), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2349), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2349), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_NONNULL] = ACTIONS(2349), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2349), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2349), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2349), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2349), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2349), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2349), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2349), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2349), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2349), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2349), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2349), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2349), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2349), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2349), + [anon_sym_MOZ_RAII] = ACTIONS(2349), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2349), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2349), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2349), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2349), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2349), + }, + [STATE(595)] = { + [sym_identifier] = ACTIONS(2353), + [aux_sym_preproc_include_token1] = ACTIONS(2353), + [aux_sym_preproc_def_token1] = ACTIONS(2353), + [aux_sym_preproc_if_token1] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2353), + [sym_preproc_directive] = ACTIONS(2353), + [anon_sym_LPAREN2] = ACTIONS(2355), + [anon_sym_BANG] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_PLUS] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym___extension__] = ACTIONS(2353), + [anon_sym_typedef] = ACTIONS(2353), + [anon_sym_virtual] = ACTIONS(2353), + [anon_sym_extern] = ACTIONS(2353), + [anon_sym___attribute__] = ACTIONS(2353), + [anon_sym___attribute] = ACTIONS(2353), + [anon_sym_COLON_COLON] = ACTIONS(2355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2355), + [anon_sym___declspec] = ACTIONS(2353), + [anon_sym___based] = ACTIONS(2353), + [anon_sym___cdecl] = ACTIONS(2353), + [anon_sym___clrcall] = ACTIONS(2353), + [anon_sym___stdcall] = ACTIONS(2353), + [anon_sym___fastcall] = ACTIONS(2353), + [anon_sym___thiscall] = ACTIONS(2353), + [anon_sym___vectorcall] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2353), + [anon_sym_unsigned] = ACTIONS(2353), + [anon_sym_long] = ACTIONS(2353), + [anon_sym_short] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_register] = ACTIONS(2353), + [anon_sym_inline] = ACTIONS(2353), + [anon_sym___inline] = ACTIONS(2353), + [anon_sym___inline__] = ACTIONS(2353), + [anon_sym___forceinline] = ACTIONS(2353), + [anon_sym_thread_local] = ACTIONS(2353), + [anon_sym___thread] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_constexpr] = ACTIONS(2353), + [anon_sym_volatile] = ACTIONS(2353), + [anon_sym_restrict] = ACTIONS(2353), + [anon_sym___restrict__] = ACTIONS(2353), + [anon_sym__Atomic] = ACTIONS(2353), + [anon_sym__Noreturn] = ACTIONS(2353), + [anon_sym_noreturn] = ACTIONS(2353), + [anon_sym__Nonnull] = ACTIONS(2353), + [anon_sym_mutable] = ACTIONS(2353), + [anon_sym_constinit] = ACTIONS(2353), + [anon_sym_consteval] = ACTIONS(2353), + [anon_sym_alignas] = ACTIONS(2353), + [anon_sym__Alignas] = ACTIONS(2353), + [sym_primitive_type] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_class] = ACTIONS(2353), + [anon_sym_struct] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_switch] = ACTIONS(2353), + [anon_sym_case] = ACTIONS(2353), + [anon_sym_default] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_do] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_goto] = ACTIONS(2353), + [anon_sym___try] = ACTIONS(2353), + [anon_sym___leave] = ACTIONS(2353), + [anon_sym_not] = ACTIONS(2353), + [anon_sym_compl] = ACTIONS(2353), + [anon_sym_DASH_DASH] = ACTIONS(2355), + [anon_sym_PLUS_PLUS] = ACTIONS(2355), + [anon_sym_sizeof] = ACTIONS(2353), + [anon_sym___alignof__] = ACTIONS(2353), + [anon_sym___alignof] = ACTIONS(2353), + [anon_sym__alignof] = ACTIONS(2353), + [anon_sym_alignof] = ACTIONS(2353), + [anon_sym__Alignof] = ACTIONS(2353), + [anon_sym_offsetof] = ACTIONS(2353), + [anon_sym__Generic] = ACTIONS(2353), + [anon_sym_asm] = ACTIONS(2353), + [anon_sym___asm__] = ACTIONS(2353), + [anon_sym___asm] = ACTIONS(2353), + [sym_number_literal] = ACTIONS(2355), + [anon_sym_L_SQUOTE] = ACTIONS(2355), + [anon_sym_u_SQUOTE] = ACTIONS(2355), + [anon_sym_U_SQUOTE] = ACTIONS(2355), + [anon_sym_u8_SQUOTE] = ACTIONS(2355), + [anon_sym_SQUOTE] = ACTIONS(2355), + [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(2353), + [sym_false] = ACTIONS(2353), + [anon_sym_NULL] = ACTIONS(2353), + [anon_sym_nullptr] = ACTIONS(2353), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2353), + [anon_sym_decltype] = ACTIONS(2353), + [anon_sym_explicit] = ACTIONS(2353), + [anon_sym_typename] = ACTIONS(2353), + [anon_sym_template] = ACTIONS(2353), + [anon_sym_operator] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2353), + [anon_sym_delete] = ACTIONS(2353), + [anon_sym_throw] = ACTIONS(2353), + [anon_sym_namespace] = ACTIONS(2353), + [anon_sym_using] = ACTIONS(2353), + [anon_sym_static_assert] = ACTIONS(2353), + [anon_sym_concept] = ACTIONS(2353), + [anon_sym_co_return] = ACTIONS(2353), + [anon_sym_co_yield] = ACTIONS(2353), + [anon_sym_R_DQUOTE] = ACTIONS(2355), + [anon_sym_LR_DQUOTE] = ACTIONS(2355), + [anon_sym_uR_DQUOTE] = ACTIONS(2355), + [anon_sym_UR_DQUOTE] = ACTIONS(2355), + [anon_sym_u8R_DQUOTE] = ACTIONS(2355), + [anon_sym_co_await] = ACTIONS(2353), + [anon_sym_new] = ACTIONS(2353), + [anon_sym_requires] = ACTIONS(2353), + [sym_this] = ACTIONS(2353), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2353), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_FORWARD] = ACTIONS(2353), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2353), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2353), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2353), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2353), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_PS_GET] = ACTIONS(2353), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2353), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2353), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2353), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2353), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2353), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2353), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2353), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2353), + [anon_sym_MOZ_COLD] = ACTIONS(2353), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2353), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2353), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2353), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2353), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2353), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2353), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2353), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2353), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2353), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2353), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2353), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2353), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2353), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_NONNULL] = ACTIONS(2353), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2353), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2353), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2353), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2353), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2353), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2353), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2353), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2353), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2353), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2353), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2353), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2353), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2353), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2353), + [anon_sym_MOZ_RAII] = ACTIONS(2353), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2353), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2353), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2353), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2353), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2353), + }, + [STATE(596)] = { + [sym_identifier] = ACTIONS(2357), + [aux_sym_preproc_include_token1] = ACTIONS(2357), + [aux_sym_preproc_def_token1] = ACTIONS(2357), + [aux_sym_preproc_if_token1] = ACTIONS(2357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2357), + [sym_preproc_directive] = ACTIONS(2357), + [anon_sym_LPAREN2] = ACTIONS(2359), + [anon_sym_BANG] = ACTIONS(2359), + [anon_sym_TILDE] = ACTIONS(2359), + [anon_sym_DASH] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2359), + [anon_sym_AMP_AMP] = ACTIONS(2359), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2359), + [anon_sym___extension__] = ACTIONS(2357), + [anon_sym_typedef] = ACTIONS(2357), + [anon_sym_virtual] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2357), + [anon_sym___attribute__] = ACTIONS(2357), + [anon_sym___attribute] = ACTIONS(2357), + [anon_sym_COLON_COLON] = ACTIONS(2359), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2359), + [anon_sym___declspec] = ACTIONS(2357), + [anon_sym___based] = ACTIONS(2357), + [anon_sym___cdecl] = ACTIONS(2357), + [anon_sym___clrcall] = ACTIONS(2357), + [anon_sym___stdcall] = ACTIONS(2357), + [anon_sym___fastcall] = ACTIONS(2357), + [anon_sym___thiscall] = ACTIONS(2357), + [anon_sym___vectorcall] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_signed] = ACTIONS(2357), + [anon_sym_unsigned] = ACTIONS(2357), + [anon_sym_long] = ACTIONS(2357), + [anon_sym_short] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_register] = ACTIONS(2357), + [anon_sym_inline] = ACTIONS(2357), + [anon_sym___inline] = ACTIONS(2357), + [anon_sym___inline__] = ACTIONS(2357), + [anon_sym___forceinline] = ACTIONS(2357), + [anon_sym_thread_local] = ACTIONS(2357), + [anon_sym___thread] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_constexpr] = ACTIONS(2357), + [anon_sym_volatile] = ACTIONS(2357), + [anon_sym_restrict] = ACTIONS(2357), + [anon_sym___restrict__] = ACTIONS(2357), + [anon_sym__Atomic] = ACTIONS(2357), + [anon_sym__Noreturn] = ACTIONS(2357), + [anon_sym_noreturn] = ACTIONS(2357), + [anon_sym__Nonnull] = ACTIONS(2357), + [anon_sym_mutable] = ACTIONS(2357), + [anon_sym_constinit] = ACTIONS(2357), + [anon_sym_consteval] = ACTIONS(2357), + [anon_sym_alignas] = ACTIONS(2357), + [anon_sym__Alignas] = ACTIONS(2357), + [sym_primitive_type] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_class] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_switch] = ACTIONS(2357), + [anon_sym_case] = ACTIONS(2357), + [anon_sym_default] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [anon_sym_do] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_goto] = ACTIONS(2357), + [anon_sym___try] = ACTIONS(2357), + [anon_sym___leave] = ACTIONS(2357), + [anon_sym_not] = ACTIONS(2357), + [anon_sym_compl] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2359), + [anon_sym_PLUS_PLUS] = ACTIONS(2359), + [anon_sym_sizeof] = ACTIONS(2357), + [anon_sym___alignof__] = ACTIONS(2357), + [anon_sym___alignof] = ACTIONS(2357), + [anon_sym__alignof] = ACTIONS(2357), + [anon_sym_alignof] = ACTIONS(2357), + [anon_sym__Alignof] = ACTIONS(2357), + [anon_sym_offsetof] = ACTIONS(2357), + [anon_sym__Generic] = ACTIONS(2357), + [anon_sym_asm] = ACTIONS(2357), + [anon_sym___asm__] = ACTIONS(2357), + [anon_sym___asm] = ACTIONS(2357), + [sym_number_literal] = ACTIONS(2359), + [anon_sym_L_SQUOTE] = ACTIONS(2359), + [anon_sym_u_SQUOTE] = ACTIONS(2359), + [anon_sym_U_SQUOTE] = ACTIONS(2359), + [anon_sym_u8_SQUOTE] = ACTIONS(2359), + [anon_sym_SQUOTE] = ACTIONS(2359), + [anon_sym_L_DQUOTE] = ACTIONS(2359), + [anon_sym_u_DQUOTE] = ACTIONS(2359), + [anon_sym_U_DQUOTE] = ACTIONS(2359), + [anon_sym_u8_DQUOTE] = ACTIONS(2359), + [anon_sym_DQUOTE] = ACTIONS(2359), + [sym_true] = ACTIONS(2357), + [sym_false] = ACTIONS(2357), + [anon_sym_NULL] = ACTIONS(2357), + [anon_sym_nullptr] = ACTIONS(2357), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2357), + [anon_sym_decltype] = ACTIONS(2357), + [anon_sym_explicit] = ACTIONS(2357), + [anon_sym_typename] = ACTIONS(2357), + [anon_sym_template] = ACTIONS(2357), + [anon_sym_operator] = ACTIONS(2357), + [anon_sym_try] = ACTIONS(2357), + [anon_sym_delete] = ACTIONS(2357), + [anon_sym_throw] = ACTIONS(2357), + [anon_sym_namespace] = ACTIONS(2357), + [anon_sym_using] = ACTIONS(2357), + [anon_sym_static_assert] = ACTIONS(2357), + [anon_sym_concept] = ACTIONS(2357), + [anon_sym_co_return] = ACTIONS(2357), + [anon_sym_co_yield] = ACTIONS(2357), + [anon_sym_R_DQUOTE] = ACTIONS(2359), + [anon_sym_LR_DQUOTE] = ACTIONS(2359), + [anon_sym_uR_DQUOTE] = ACTIONS(2359), + [anon_sym_UR_DQUOTE] = ACTIONS(2359), + [anon_sym_u8R_DQUOTE] = ACTIONS(2359), + [anon_sym_co_await] = ACTIONS(2357), + [anon_sym_new] = ACTIONS(2357), + [anon_sym_requires] = ACTIONS(2357), + [sym_this] = ACTIONS(2357), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2357), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_FORWARD] = ACTIONS(2357), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2357), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2357), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2357), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2357), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_PS_GET] = ACTIONS(2357), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2357), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2357), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2357), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2357), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2357), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2357), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2357), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2357), + [anon_sym_MOZ_COLD] = ACTIONS(2357), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2357), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2357), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2357), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2357), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2357), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2357), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2357), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2357), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2357), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2357), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2357), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2357), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2357), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_NONNULL] = ACTIONS(2357), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2357), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2357), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2357), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2357), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2357), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2357), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2357), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2357), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2357), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2357), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2357), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2357), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2357), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2357), + [anon_sym_MOZ_RAII] = ACTIONS(2357), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2357), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2357), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2357), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2357), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2357), + }, + [STATE(597)] = { + [sym_identifier] = ACTIONS(2244), + [aux_sym_preproc_include_token1] = ACTIONS(2244), + [aux_sym_preproc_def_token1] = ACTIONS(2244), + [aux_sym_preproc_if_token1] = ACTIONS(2244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2244), + [sym_preproc_directive] = ACTIONS(2244), + [anon_sym_LPAREN2] = ACTIONS(2246), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_STAR] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym___extension__] = ACTIONS(2244), + [anon_sym_typedef] = ACTIONS(2244), + [anon_sym_virtual] = ACTIONS(2244), + [anon_sym_extern] = ACTIONS(2244), + [anon_sym___attribute__] = ACTIONS(2244), + [anon_sym___attribute] = ACTIONS(2244), + [anon_sym_COLON_COLON] = ACTIONS(2246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2246), + [anon_sym___declspec] = ACTIONS(2244), + [anon_sym___based] = ACTIONS(2244), + [anon_sym___cdecl] = ACTIONS(2244), + [anon_sym___clrcall] = ACTIONS(2244), + [anon_sym___stdcall] = ACTIONS(2244), + [anon_sym___fastcall] = ACTIONS(2244), + [anon_sym___thiscall] = ACTIONS(2244), + [anon_sym___vectorcall] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_register] = ACTIONS(2244), + [anon_sym_inline] = ACTIONS(2244), + [anon_sym___inline] = ACTIONS(2244), + [anon_sym___inline__] = ACTIONS(2244), + [anon_sym___forceinline] = ACTIONS(2244), + [anon_sym_thread_local] = ACTIONS(2244), + [anon_sym___thread] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_constexpr] = ACTIONS(2244), + [anon_sym_volatile] = ACTIONS(2244), + [anon_sym_restrict] = ACTIONS(2244), + [anon_sym___restrict__] = ACTIONS(2244), + [anon_sym__Atomic] = ACTIONS(2244), + [anon_sym__Noreturn] = ACTIONS(2244), + [anon_sym_noreturn] = ACTIONS(2244), + [anon_sym__Nonnull] = ACTIONS(2244), + [anon_sym_mutable] = ACTIONS(2244), + [anon_sym_constinit] = ACTIONS(2244), + [anon_sym_consteval] = ACTIONS(2244), + [anon_sym_alignas] = ACTIONS(2244), + [anon_sym__Alignas] = ACTIONS(2244), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_struct] = ACTIONS(2244), + [anon_sym_union] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_goto] = ACTIONS(2244), + [anon_sym___try] = ACTIONS(2244), + [anon_sym___leave] = ACTIONS(2244), + [anon_sym_not] = ACTIONS(2244), + [anon_sym_compl] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_sizeof] = ACTIONS(2244), + [anon_sym___alignof__] = ACTIONS(2244), + [anon_sym___alignof] = ACTIONS(2244), + [anon_sym__alignof] = ACTIONS(2244), + [anon_sym_alignof] = ACTIONS(2244), + [anon_sym__Alignof] = ACTIONS(2244), + [anon_sym_offsetof] = ACTIONS(2244), + [anon_sym__Generic] = ACTIONS(2244), + [anon_sym_asm] = ACTIONS(2244), + [anon_sym___asm__] = ACTIONS(2244), + [anon_sym___asm] = ACTIONS(2244), + [sym_number_literal] = ACTIONS(2246), + [anon_sym_L_SQUOTE] = ACTIONS(2246), + [anon_sym_u_SQUOTE] = ACTIONS(2246), + [anon_sym_U_SQUOTE] = ACTIONS(2246), + [anon_sym_u8_SQUOTE] = ACTIONS(2246), + [anon_sym_SQUOTE] = ACTIONS(2246), + [anon_sym_L_DQUOTE] = ACTIONS(2246), + [anon_sym_u_DQUOTE] = ACTIONS(2246), + [anon_sym_U_DQUOTE] = ACTIONS(2246), + [anon_sym_u8_DQUOTE] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(2246), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [anon_sym_NULL] = ACTIONS(2244), + [anon_sym_nullptr] = ACTIONS(2244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2244), + [anon_sym_decltype] = ACTIONS(2244), + [anon_sym_explicit] = ACTIONS(2244), + [anon_sym_typename] = ACTIONS(2244), + [anon_sym_template] = ACTIONS(2244), + [anon_sym_operator] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_static_assert] = ACTIONS(2244), + [anon_sym_concept] = ACTIONS(2244), + [anon_sym_co_return] = ACTIONS(2244), + [anon_sym_co_yield] = ACTIONS(2244), + [anon_sym_R_DQUOTE] = ACTIONS(2246), + [anon_sym_LR_DQUOTE] = ACTIONS(2246), + [anon_sym_uR_DQUOTE] = ACTIONS(2246), + [anon_sym_UR_DQUOTE] = ACTIONS(2246), + [anon_sym_u8R_DQUOTE] = ACTIONS(2246), + [anon_sym_co_await] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_requires] = ACTIONS(2244), + [sym_this] = ACTIONS(2244), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2244), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_FORWARD] = ACTIONS(2244), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2244), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2244), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2244), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2244), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_PS_GET] = ACTIONS(2244), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2244), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2244), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2244), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2244), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2244), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2244), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2244), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2244), + [anon_sym_MOZ_COLD] = ACTIONS(2244), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2244), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2244), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2244), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2244), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2244), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2244), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2244), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2244), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2244), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2244), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2244), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2244), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2244), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_NONNULL] = ACTIONS(2244), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2244), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2244), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2244), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2244), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2244), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2244), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2244), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2244), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2244), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2244), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2244), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2244), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2244), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2244), + [anon_sym_MOZ_RAII] = ACTIONS(2244), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2244), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2244), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2244), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2244), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2244), + }, + [STATE(598)] = { + [sym_identifier] = ACTIONS(2365), + [aux_sym_preproc_include_token1] = ACTIONS(2365), + [aux_sym_preproc_def_token1] = ACTIONS(2365), + [aux_sym_preproc_if_token1] = ACTIONS(2365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2365), + [sym_preproc_directive] = ACTIONS(2365), + [anon_sym_LPAREN2] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_AMP_AMP] = ACTIONS(2367), + [anon_sym_AMP] = ACTIONS(2365), + [anon_sym_SEMI] = ACTIONS(2367), + [anon_sym___extension__] = ACTIONS(2365), + [anon_sym_typedef] = ACTIONS(2365), + [anon_sym_virtual] = ACTIONS(2365), + [anon_sym_extern] = ACTIONS(2365), + [anon_sym___attribute__] = ACTIONS(2365), + [anon_sym___attribute] = ACTIONS(2365), + [anon_sym_COLON_COLON] = ACTIONS(2367), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2367), + [anon_sym___declspec] = ACTIONS(2365), + [anon_sym___based] = ACTIONS(2365), + [anon_sym___cdecl] = ACTIONS(2365), + [anon_sym___clrcall] = ACTIONS(2365), + [anon_sym___stdcall] = ACTIONS(2365), + [anon_sym___fastcall] = ACTIONS(2365), + [anon_sym___thiscall] = ACTIONS(2365), + [anon_sym___vectorcall] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_signed] = ACTIONS(2365), + [anon_sym_unsigned] = ACTIONS(2365), + [anon_sym_long] = ACTIONS(2365), + [anon_sym_short] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_static] = ACTIONS(2365), + [anon_sym_register] = ACTIONS(2365), + [anon_sym_inline] = ACTIONS(2365), + [anon_sym___inline] = ACTIONS(2365), + [anon_sym___inline__] = ACTIONS(2365), + [anon_sym___forceinline] = ACTIONS(2365), + [anon_sym_thread_local] = ACTIONS(2365), + [anon_sym___thread] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_constexpr] = ACTIONS(2365), + [anon_sym_volatile] = ACTIONS(2365), + [anon_sym_restrict] = ACTIONS(2365), + [anon_sym___restrict__] = ACTIONS(2365), + [anon_sym__Atomic] = ACTIONS(2365), + [anon_sym__Noreturn] = ACTIONS(2365), + [anon_sym_noreturn] = ACTIONS(2365), + [anon_sym__Nonnull] = ACTIONS(2365), + [anon_sym_mutable] = ACTIONS(2365), + [anon_sym_constinit] = ACTIONS(2365), + [anon_sym_consteval] = ACTIONS(2365), + [anon_sym_alignas] = ACTIONS(2365), + [anon_sym__Alignas] = ACTIONS(2365), + [sym_primitive_type] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), + [anon_sym_class] = ACTIONS(2365), + [anon_sym_struct] = ACTIONS(2365), + [anon_sym_union] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_switch] = ACTIONS(2365), + [anon_sym_case] = ACTIONS(2365), + [anon_sym_default] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), + [anon_sym_do] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_goto] = ACTIONS(2365), + [anon_sym___try] = ACTIONS(2365), + [anon_sym___leave] = ACTIONS(2365), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(2367), + [anon_sym_PLUS_PLUS] = ACTIONS(2367), + [anon_sym_sizeof] = ACTIONS(2365), + [anon_sym___alignof__] = ACTIONS(2365), + [anon_sym___alignof] = ACTIONS(2365), + [anon_sym__alignof] = ACTIONS(2365), + [anon_sym_alignof] = ACTIONS(2365), + [anon_sym__Alignof] = ACTIONS(2365), + [anon_sym_offsetof] = ACTIONS(2365), + [anon_sym__Generic] = ACTIONS(2365), + [anon_sym_asm] = ACTIONS(2365), + [anon_sym___asm__] = ACTIONS(2365), + [anon_sym___asm] = ACTIONS(2365), + [sym_number_literal] = ACTIONS(2367), + [anon_sym_L_SQUOTE] = ACTIONS(2367), + [anon_sym_u_SQUOTE] = ACTIONS(2367), + [anon_sym_U_SQUOTE] = ACTIONS(2367), + [anon_sym_u8_SQUOTE] = ACTIONS(2367), + [anon_sym_SQUOTE] = ACTIONS(2367), + [anon_sym_L_DQUOTE] = ACTIONS(2367), + [anon_sym_u_DQUOTE] = ACTIONS(2367), + [anon_sym_U_DQUOTE] = ACTIONS(2367), + [anon_sym_u8_DQUOTE] = ACTIONS(2367), + [anon_sym_DQUOTE] = ACTIONS(2367), + [sym_true] = ACTIONS(2365), + [sym_false] = ACTIONS(2365), + [anon_sym_NULL] = ACTIONS(2365), + [anon_sym_nullptr] = ACTIONS(2365), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2365), + [anon_sym_decltype] = ACTIONS(2365), + [anon_sym_explicit] = ACTIONS(2365), + [anon_sym_typename] = ACTIONS(2365), + [anon_sym_template] = ACTIONS(2365), + [anon_sym_operator] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2365), + [anon_sym_delete] = ACTIONS(2365), + [anon_sym_throw] = ACTIONS(2365), + [anon_sym_namespace] = ACTIONS(2365), + [anon_sym_using] = ACTIONS(2365), + [anon_sym_static_assert] = ACTIONS(2365), + [anon_sym_concept] = ACTIONS(2365), + [anon_sym_co_return] = ACTIONS(2365), + [anon_sym_co_yield] = ACTIONS(2365), + [anon_sym_R_DQUOTE] = ACTIONS(2367), + [anon_sym_LR_DQUOTE] = ACTIONS(2367), + [anon_sym_uR_DQUOTE] = ACTIONS(2367), + [anon_sym_UR_DQUOTE] = ACTIONS(2367), + [anon_sym_u8R_DQUOTE] = ACTIONS(2367), + [anon_sym_co_await] = ACTIONS(2365), + [anon_sym_new] = ACTIONS(2365), + [anon_sym_requires] = ACTIONS(2365), + [sym_this] = ACTIONS(2365), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2365), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_FORWARD] = ACTIONS(2365), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2365), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2365), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2365), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2365), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_PS_GET] = ACTIONS(2365), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2365), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2365), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2365), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2365), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2365), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2365), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2365), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2365), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2365), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2365), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2365), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2365), + [anon_sym_MOZ_COLD] = ACTIONS(2365), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2365), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2365), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2365), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2365), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2365), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2365), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2365), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2365), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2365), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2365), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2365), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2365), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2365), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2365), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2365), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2365), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2365), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2365), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2365), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2365), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2365), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_NONNULL] = ACTIONS(2365), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2365), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2365), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2365), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2365), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2365), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_NORETURN] = ACTIONS(2365), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2365), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2365), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2365), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2365), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2365), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2365), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2365), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2365), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2365), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2365), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2365), + [anon_sym_MOZ_RAII] = ACTIONS(2365), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2365), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2365), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2365), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2365), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2365), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2365), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2365), + }, + [STATE(599)] = { + [sym_identifier] = ACTIONS(2369), + [aux_sym_preproc_include_token1] = ACTIONS(2369), + [aux_sym_preproc_def_token1] = ACTIONS(2369), + [aux_sym_preproc_if_token1] = ACTIONS(2369), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2369), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2369), + [sym_preproc_directive] = ACTIONS(2369), + [anon_sym_LPAREN2] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(2371), + [anon_sym_TILDE] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2369), + [anon_sym_PLUS] = ACTIONS(2369), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_AMP_AMP] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2369), + [anon_sym_SEMI] = ACTIONS(2371), + [anon_sym___extension__] = ACTIONS(2369), + [anon_sym_typedef] = ACTIONS(2369), + [anon_sym_virtual] = ACTIONS(2369), + [anon_sym_extern] = ACTIONS(2369), + [anon_sym___attribute__] = ACTIONS(2369), + [anon_sym___attribute] = ACTIONS(2369), + [anon_sym_COLON_COLON] = ACTIONS(2371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2371), + [anon_sym___declspec] = ACTIONS(2369), + [anon_sym___based] = ACTIONS(2369), + [anon_sym___cdecl] = ACTIONS(2369), + [anon_sym___clrcall] = ACTIONS(2369), + [anon_sym___stdcall] = ACTIONS(2369), + [anon_sym___fastcall] = ACTIONS(2369), + [anon_sym___thiscall] = ACTIONS(2369), + [anon_sym___vectorcall] = ACTIONS(2369), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_signed] = ACTIONS(2369), + [anon_sym_unsigned] = ACTIONS(2369), + [anon_sym_long] = ACTIONS(2369), + [anon_sym_short] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2369), + [anon_sym_static] = ACTIONS(2369), + [anon_sym_register] = ACTIONS(2369), + [anon_sym_inline] = ACTIONS(2369), + [anon_sym___inline] = ACTIONS(2369), + [anon_sym___inline__] = ACTIONS(2369), + [anon_sym___forceinline] = ACTIONS(2369), + [anon_sym_thread_local] = ACTIONS(2369), + [anon_sym___thread] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [anon_sym_constexpr] = ACTIONS(2369), + [anon_sym_volatile] = ACTIONS(2369), + [anon_sym_restrict] = ACTIONS(2369), + [anon_sym___restrict__] = ACTIONS(2369), + [anon_sym__Atomic] = ACTIONS(2369), + [anon_sym__Noreturn] = ACTIONS(2369), + [anon_sym_noreturn] = ACTIONS(2369), + [anon_sym__Nonnull] = ACTIONS(2369), + [anon_sym_mutable] = ACTIONS(2369), + [anon_sym_constinit] = ACTIONS(2369), + [anon_sym_consteval] = ACTIONS(2369), + [anon_sym_alignas] = ACTIONS(2369), + [anon_sym__Alignas] = ACTIONS(2369), + [sym_primitive_type] = ACTIONS(2369), + [anon_sym_enum] = ACTIONS(2369), + [anon_sym_class] = ACTIONS(2369), + [anon_sym_struct] = ACTIONS(2369), + [anon_sym_union] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_switch] = ACTIONS(2369), + [anon_sym_case] = ACTIONS(2369), + [anon_sym_default] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [anon_sym_do] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_goto] = ACTIONS(2369), + [anon_sym___try] = ACTIONS(2369), + [anon_sym___leave] = ACTIONS(2369), + [anon_sym_not] = ACTIONS(2369), + [anon_sym_compl] = ACTIONS(2369), + [anon_sym_DASH_DASH] = ACTIONS(2371), + [anon_sym_PLUS_PLUS] = ACTIONS(2371), + [anon_sym_sizeof] = ACTIONS(2369), + [anon_sym___alignof__] = ACTIONS(2369), + [anon_sym___alignof] = ACTIONS(2369), + [anon_sym__alignof] = ACTIONS(2369), + [anon_sym_alignof] = ACTIONS(2369), + [anon_sym__Alignof] = ACTIONS(2369), + [anon_sym_offsetof] = ACTIONS(2369), + [anon_sym__Generic] = ACTIONS(2369), + [anon_sym_asm] = ACTIONS(2369), + [anon_sym___asm__] = ACTIONS(2369), + [anon_sym___asm] = ACTIONS(2369), + [sym_number_literal] = ACTIONS(2371), + [anon_sym_L_SQUOTE] = ACTIONS(2371), + [anon_sym_u_SQUOTE] = ACTIONS(2371), + [anon_sym_U_SQUOTE] = ACTIONS(2371), + [anon_sym_u8_SQUOTE] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2371), + [anon_sym_L_DQUOTE] = ACTIONS(2371), + [anon_sym_u_DQUOTE] = ACTIONS(2371), + [anon_sym_U_DQUOTE] = ACTIONS(2371), + [anon_sym_u8_DQUOTE] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(2371), + [sym_true] = ACTIONS(2369), + [sym_false] = ACTIONS(2369), + [anon_sym_NULL] = ACTIONS(2369), + [anon_sym_nullptr] = ACTIONS(2369), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2369), + [anon_sym_decltype] = ACTIONS(2369), + [anon_sym_explicit] = ACTIONS(2369), + [anon_sym_typename] = ACTIONS(2369), + [anon_sym_template] = ACTIONS(2369), + [anon_sym_operator] = ACTIONS(2369), + [anon_sym_try] = ACTIONS(2369), + [anon_sym_delete] = ACTIONS(2369), + [anon_sym_throw] = ACTIONS(2369), + [anon_sym_namespace] = ACTIONS(2369), + [anon_sym_using] = ACTIONS(2369), + [anon_sym_static_assert] = ACTIONS(2369), + [anon_sym_concept] = ACTIONS(2369), + [anon_sym_co_return] = ACTIONS(2369), + [anon_sym_co_yield] = ACTIONS(2369), + [anon_sym_R_DQUOTE] = ACTIONS(2371), + [anon_sym_LR_DQUOTE] = ACTIONS(2371), + [anon_sym_uR_DQUOTE] = ACTIONS(2371), + [anon_sym_UR_DQUOTE] = ACTIONS(2371), + [anon_sym_u8R_DQUOTE] = ACTIONS(2371), + [anon_sym_co_await] = ACTIONS(2369), + [anon_sym_new] = ACTIONS(2369), + [anon_sym_requires] = ACTIONS(2369), + [sym_this] = ACTIONS(2369), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2369), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_FORWARD] = ACTIONS(2369), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2369), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2369), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2369), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2369), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_PS_GET] = ACTIONS(2369), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2369), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2369), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2369), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2369), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2369), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2369), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2369), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2369), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2369), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2369), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2369), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2369), + [anon_sym_MOZ_COLD] = ACTIONS(2369), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2369), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2369), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2369), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2369), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2369), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2369), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2369), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2369), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2369), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2369), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2369), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2369), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2369), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2369), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2369), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2369), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2369), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2369), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2369), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2369), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2369), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_NONNULL] = ACTIONS(2369), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2369), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2369), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2369), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2369), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2369), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_NORETURN] = ACTIONS(2369), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2369), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2369), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2369), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2369), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2369), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2369), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2369), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2369), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2369), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2369), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2369), + [anon_sym_MOZ_RAII] = ACTIONS(2369), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2369), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2369), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2369), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2369), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2369), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2369), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2369), + }, + [STATE(600)] = { + [ts_builtin_sym_end] = ACTIONS(2494), + [sym_identifier] = ACTIONS(2497), + [aux_sym_preproc_include_token1] = ACTIONS(2497), + [aux_sym_preproc_def_token1] = ACTIONS(2497), + [aux_sym_preproc_if_token1] = ACTIONS(2497), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2497), + [sym_preproc_directive] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(2494), + [anon_sym_BANG] = ACTIONS(2494), + [anon_sym_TILDE] = ACTIONS(2494), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_STAR] = ACTIONS(2494), + [anon_sym_AMP_AMP] = ACTIONS(2494), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2494), + [anon_sym___extension__] = ACTIONS(2497), + [anon_sym_typedef] = ACTIONS(2497), + [anon_sym_virtual] = ACTIONS(2497), + [anon_sym_extern] = ACTIONS(2497), + [anon_sym___attribute__] = ACTIONS(2497), + [anon_sym___attribute] = ACTIONS(2497), + [anon_sym_COLON_COLON] = ACTIONS(2494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2494), + [anon_sym___declspec] = ACTIONS(2497), + [anon_sym___based] = ACTIONS(2497), + [anon_sym___cdecl] = ACTIONS(2497), + [anon_sym___clrcall] = ACTIONS(2497), + [anon_sym___stdcall] = ACTIONS(2497), + [anon_sym___fastcall] = ACTIONS(2497), + [anon_sym___thiscall] = ACTIONS(2497), + [anon_sym___vectorcall] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2494), + [anon_sym_signed] = ACTIONS(2497), + [anon_sym_unsigned] = ACTIONS(2497), + [anon_sym_long] = ACTIONS(2497), + [anon_sym_short] = ACTIONS(2497), + [anon_sym_LBRACK] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(2497), + [anon_sym_register] = ACTIONS(2497), + [anon_sym_inline] = ACTIONS(2497), + [anon_sym___inline] = ACTIONS(2497), + [anon_sym___inline__] = ACTIONS(2497), + [anon_sym___forceinline] = ACTIONS(2497), + [anon_sym_thread_local] = ACTIONS(2497), + [anon_sym___thread] = ACTIONS(2497), + [anon_sym_const] = ACTIONS(2497), + [anon_sym_constexpr] = ACTIONS(2497), + [anon_sym_volatile] = ACTIONS(2497), + [anon_sym_restrict] = ACTIONS(2497), + [anon_sym___restrict__] = ACTIONS(2497), + [anon_sym__Atomic] = ACTIONS(2497), + [anon_sym__Noreturn] = ACTIONS(2497), + [anon_sym_noreturn] = ACTIONS(2497), + [anon_sym__Nonnull] = ACTIONS(2497), + [anon_sym_mutable] = ACTIONS(2497), + [anon_sym_constinit] = ACTIONS(2497), + [anon_sym_consteval] = ACTIONS(2497), + [anon_sym_alignas] = ACTIONS(2497), + [anon_sym__Alignas] = ACTIONS(2497), + [sym_primitive_type] = ACTIONS(2497), + [anon_sym_enum] = ACTIONS(2497), + [anon_sym_class] = ACTIONS(2497), + [anon_sym_struct] = ACTIONS(2497), + [anon_sym_union] = ACTIONS(2497), + [anon_sym_if] = ACTIONS(2497), + [anon_sym_switch] = ACTIONS(2497), + [anon_sym_case] = ACTIONS(2497), + [anon_sym_default] = ACTIONS(2497), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2497), + [anon_sym_for] = ACTIONS(2497), + [anon_sym_return] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(2497), + [anon_sym_continue] = ACTIONS(2497), + [anon_sym_goto] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2497), + [anon_sym_compl] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2494), + [anon_sym_PLUS_PLUS] = ACTIONS(2494), + [anon_sym_sizeof] = ACTIONS(2497), + [anon_sym___alignof__] = ACTIONS(2497), + [anon_sym___alignof] = ACTIONS(2497), + [anon_sym__alignof] = ACTIONS(2497), + [anon_sym_alignof] = ACTIONS(2497), + [anon_sym__Alignof] = ACTIONS(2497), + [anon_sym_offsetof] = ACTIONS(2497), + [anon_sym__Generic] = ACTIONS(2497), + [anon_sym_asm] = ACTIONS(2497), + [anon_sym___asm__] = ACTIONS(2497), + [anon_sym___asm] = ACTIONS(2497), + [sym_number_literal] = ACTIONS(2494), + [anon_sym_L_SQUOTE] = ACTIONS(2494), + [anon_sym_u_SQUOTE] = ACTIONS(2494), + [anon_sym_U_SQUOTE] = ACTIONS(2494), + [anon_sym_u8_SQUOTE] = ACTIONS(2494), + [anon_sym_SQUOTE] = ACTIONS(2494), + [anon_sym_L_DQUOTE] = ACTIONS(2494), + [anon_sym_u_DQUOTE] = ACTIONS(2494), + [anon_sym_U_DQUOTE] = ACTIONS(2494), + [anon_sym_u8_DQUOTE] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2494), + [sym_true] = ACTIONS(2497), + [sym_false] = ACTIONS(2497), + [anon_sym_NULL] = ACTIONS(2497), + [anon_sym_nullptr] = ACTIONS(2497), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2497), + [anon_sym_decltype] = ACTIONS(2497), + [anon_sym_explicit] = ACTIONS(2497), + [anon_sym_typename] = ACTIONS(2497), + [anon_sym_template] = ACTIONS(2497), + [anon_sym_operator] = ACTIONS(2497), + [anon_sym_try] = ACTIONS(2497), + [anon_sym_delete] = ACTIONS(2497), + [anon_sym_throw] = ACTIONS(2497), + [anon_sym_namespace] = ACTIONS(2497), + [anon_sym_using] = ACTIONS(2497), + [anon_sym_static_assert] = ACTIONS(2497), + [anon_sym_concept] = ACTIONS(2497), + [anon_sym_co_return] = ACTIONS(2497), + [anon_sym_co_yield] = ACTIONS(2497), + [anon_sym_R_DQUOTE] = ACTIONS(2494), + [anon_sym_LR_DQUOTE] = ACTIONS(2494), + [anon_sym_uR_DQUOTE] = ACTIONS(2494), + [anon_sym_UR_DQUOTE] = ACTIONS(2494), + [anon_sym_u8R_DQUOTE] = ACTIONS(2494), + [anon_sym_co_await] = ACTIONS(2497), + [anon_sym_new] = ACTIONS(2497), + [anon_sym_requires] = ACTIONS(2497), + [sym_this] = ACTIONS(2497), + [sym_alone_macro] = ACTIONS(2494), + [aux_sym_alone_macro_call_token1] = ACTIONS(2497), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2497), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2497), + [anon_sym_FORWARD] = ACTIONS(2497), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2497), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2497), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2497), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2497), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2497), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2497), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2497), + [anon_sym_PS_GET] = ACTIONS(2497), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2497), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2497), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2497), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2497), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2497), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2497), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2497), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2497), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2497), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2497), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2497), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2497), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2497), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2497), + [anon_sym_MOZ_COLD] = ACTIONS(2497), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2497), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2497), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2497), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2497), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2497), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2497), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2497), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2497), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2497), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2497), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2497), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2497), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2497), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2497), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2497), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2497), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2497), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2497), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2497), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2497), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2497), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2497), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2497), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2497), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2497), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2497), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2497), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2497), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2497), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2497), + [anon_sym_MOZ_NONNULL] = ACTIONS(2497), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2497), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2497), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2497), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2497), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2497), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2497), + [anon_sym_MOZ_NORETURN] = ACTIONS(2497), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2497), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2497), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2497), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2497), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2497), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2497), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2497), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2497), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2497), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2497), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2497), + [anon_sym_MOZ_RAII] = ACTIONS(2497), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2497), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2497), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2497), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2497), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2497), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2497), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2497), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2497), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2497), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2497), + }, + [STATE(601)] = { + [sym_identifier] = ACTIONS(2276), + [aux_sym_preproc_include_token1] = ACTIONS(2276), + [aux_sym_preproc_def_token1] = ACTIONS(2276), + [aux_sym_preproc_if_token1] = ACTIONS(2276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2276), + [sym_preproc_directive] = ACTIONS(2276), + [anon_sym_LPAREN2] = ACTIONS(2278), + [anon_sym_BANG] = ACTIONS(2278), + [anon_sym_TILDE] = ACTIONS(2278), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2278), + [anon_sym_AMP_AMP] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym___extension__] = ACTIONS(2276), + [anon_sym_typedef] = ACTIONS(2276), + [anon_sym_virtual] = ACTIONS(2276), + [anon_sym_extern] = ACTIONS(2276), + [anon_sym___attribute__] = ACTIONS(2276), + [anon_sym___attribute] = ACTIONS(2276), + [anon_sym_COLON_COLON] = ACTIONS(2278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2278), + [anon_sym___declspec] = ACTIONS(2276), + [anon_sym___based] = ACTIONS(2276), + [anon_sym___cdecl] = ACTIONS(2276), + [anon_sym___clrcall] = ACTIONS(2276), + [anon_sym___stdcall] = ACTIONS(2276), + [anon_sym___fastcall] = ACTIONS(2276), + [anon_sym___thiscall] = ACTIONS(2276), + [anon_sym___vectorcall] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_RBRACE] = ACTIONS(2278), + [anon_sym_signed] = ACTIONS(2276), + [anon_sym_unsigned] = ACTIONS(2276), + [anon_sym_long] = ACTIONS(2276), + [anon_sym_short] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_register] = ACTIONS(2276), + [anon_sym_inline] = ACTIONS(2276), + [anon_sym___inline] = ACTIONS(2276), + [anon_sym___inline__] = ACTIONS(2276), + [anon_sym___forceinline] = ACTIONS(2276), + [anon_sym_thread_local] = ACTIONS(2276), + [anon_sym___thread] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_constexpr] = ACTIONS(2276), + [anon_sym_volatile] = ACTIONS(2276), + [anon_sym_restrict] = ACTIONS(2276), + [anon_sym___restrict__] = ACTIONS(2276), + [anon_sym__Atomic] = ACTIONS(2276), + [anon_sym__Noreturn] = ACTIONS(2276), + [anon_sym_noreturn] = ACTIONS(2276), + [anon_sym__Nonnull] = ACTIONS(2276), + [anon_sym_mutable] = ACTIONS(2276), + [anon_sym_constinit] = ACTIONS(2276), + [anon_sym_consteval] = ACTIONS(2276), + [anon_sym_alignas] = ACTIONS(2276), + [anon_sym__Alignas] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_struct] = ACTIONS(2276), + [anon_sym_union] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_case] = ACTIONS(2276), + [anon_sym_default] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym___try] = ACTIONS(2276), + [anon_sym___leave] = ACTIONS(2276), + [anon_sym_not] = ACTIONS(2276), + [anon_sym_compl] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2278), + [anon_sym_PLUS_PLUS] = ACTIONS(2278), + [anon_sym_sizeof] = ACTIONS(2276), + [anon_sym___alignof__] = ACTIONS(2276), + [anon_sym___alignof] = ACTIONS(2276), + [anon_sym__alignof] = ACTIONS(2276), + [anon_sym_alignof] = ACTIONS(2276), + [anon_sym__Alignof] = ACTIONS(2276), + [anon_sym_offsetof] = ACTIONS(2276), + [anon_sym__Generic] = ACTIONS(2276), + [anon_sym_asm] = ACTIONS(2276), + [anon_sym___asm__] = ACTIONS(2276), + [anon_sym___asm] = ACTIONS(2276), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_L_SQUOTE] = ACTIONS(2278), + [anon_sym_u_SQUOTE] = ACTIONS(2278), + [anon_sym_U_SQUOTE] = ACTIONS(2278), + [anon_sym_u8_SQUOTE] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(2278), + [anon_sym_L_DQUOTE] = ACTIONS(2278), + [anon_sym_u_DQUOTE] = ACTIONS(2278), + [anon_sym_U_DQUOTE] = ACTIONS(2278), + [anon_sym_u8_DQUOTE] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2278), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2276), + [anon_sym_decltype] = ACTIONS(2276), + [anon_sym_explicit] = ACTIONS(2276), + [anon_sym_typename] = ACTIONS(2276), + [anon_sym_template] = ACTIONS(2276), + [anon_sym_operator] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_using] = ACTIONS(2276), + [anon_sym_static_assert] = ACTIONS(2276), + [anon_sym_concept] = ACTIONS(2276), + [anon_sym_co_return] = ACTIONS(2276), + [anon_sym_co_yield] = ACTIONS(2276), + [anon_sym_R_DQUOTE] = ACTIONS(2278), + [anon_sym_LR_DQUOTE] = ACTIONS(2278), + [anon_sym_uR_DQUOTE] = ACTIONS(2278), + [anon_sym_UR_DQUOTE] = ACTIONS(2278), + [anon_sym_u8R_DQUOTE] = ACTIONS(2278), + [anon_sym_co_await] = ACTIONS(2276), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_requires] = ACTIONS(2276), + [sym_this] = ACTIONS(2276), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2276), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_FORWARD] = ACTIONS(2276), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2276), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2276), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2276), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2276), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_PS_GET] = ACTIONS(2276), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2276), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2276), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2276), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2276), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2276), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2276), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2276), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2276), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2276), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2276), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2276), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2276), + [anon_sym_MOZ_COLD] = ACTIONS(2276), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2276), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2276), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2276), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2276), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2276), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2276), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2276), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2276), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2276), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2276), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2276), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2276), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2276), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2276), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2276), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2276), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2276), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2276), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2276), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2276), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2276), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_NONNULL] = ACTIONS(2276), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2276), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2276), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2276), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2276), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2276), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_NORETURN] = ACTIONS(2276), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2276), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2276), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2276), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2276), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2276), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2276), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2276), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2276), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2276), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2276), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2276), + [anon_sym_MOZ_RAII] = ACTIONS(2276), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2276), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2276), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2276), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2276), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2276), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2276), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2276), + }, + [STATE(602)] = { + [sym_identifier] = ACTIONS(2381), + [aux_sym_preproc_include_token1] = ACTIONS(2381), + [aux_sym_preproc_def_token1] = ACTIONS(2381), + [aux_sym_preproc_if_token1] = ACTIONS(2381), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2381), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2381), + [sym_preproc_directive] = ACTIONS(2381), + [anon_sym_LPAREN2] = ACTIONS(2383), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_TILDE] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_PLUS] = ACTIONS(2381), + [anon_sym_STAR] = ACTIONS(2383), + [anon_sym_AMP_AMP] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2383), + [anon_sym___extension__] = ACTIONS(2381), + [anon_sym_typedef] = ACTIONS(2381), + [anon_sym_virtual] = ACTIONS(2381), + [anon_sym_extern] = ACTIONS(2381), + [anon_sym___attribute__] = ACTIONS(2381), + [anon_sym___attribute] = ACTIONS(2381), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2383), + [anon_sym___declspec] = ACTIONS(2381), + [anon_sym___based] = ACTIONS(2381), + [anon_sym___cdecl] = ACTIONS(2381), + [anon_sym___clrcall] = ACTIONS(2381), + [anon_sym___stdcall] = ACTIONS(2381), + [anon_sym___fastcall] = ACTIONS(2381), + [anon_sym___thiscall] = ACTIONS(2381), + [anon_sym___vectorcall] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_signed] = ACTIONS(2381), + [anon_sym_unsigned] = ACTIONS(2381), + [anon_sym_long] = ACTIONS(2381), + [anon_sym_short] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_register] = ACTIONS(2381), + [anon_sym_inline] = ACTIONS(2381), + [anon_sym___inline] = ACTIONS(2381), + [anon_sym___inline__] = ACTIONS(2381), + [anon_sym___forceinline] = ACTIONS(2381), + [anon_sym_thread_local] = ACTIONS(2381), + [anon_sym___thread] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_constexpr] = ACTIONS(2381), + [anon_sym_volatile] = ACTIONS(2381), + [anon_sym_restrict] = ACTIONS(2381), + [anon_sym___restrict__] = ACTIONS(2381), + [anon_sym__Atomic] = ACTIONS(2381), + [anon_sym__Noreturn] = ACTIONS(2381), + [anon_sym_noreturn] = ACTIONS(2381), + [anon_sym__Nonnull] = ACTIONS(2381), + [anon_sym_mutable] = ACTIONS(2381), + [anon_sym_constinit] = ACTIONS(2381), + [anon_sym_consteval] = ACTIONS(2381), + [anon_sym_alignas] = ACTIONS(2381), + [anon_sym__Alignas] = ACTIONS(2381), + [sym_primitive_type] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), + [anon_sym_class] = ACTIONS(2381), + [anon_sym_struct] = ACTIONS(2381), + [anon_sym_union] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_switch] = ACTIONS(2381), + [anon_sym_case] = ACTIONS(2381), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_goto] = ACTIONS(2381), + [anon_sym___try] = ACTIONS(2381), + [anon_sym___leave] = ACTIONS(2381), + [anon_sym_not] = ACTIONS(2381), + [anon_sym_compl] = ACTIONS(2381), + [anon_sym_DASH_DASH] = ACTIONS(2383), + [anon_sym_PLUS_PLUS] = ACTIONS(2383), + [anon_sym_sizeof] = ACTIONS(2381), + [anon_sym___alignof__] = ACTIONS(2381), + [anon_sym___alignof] = ACTIONS(2381), + [anon_sym__alignof] = ACTIONS(2381), + [anon_sym_alignof] = ACTIONS(2381), + [anon_sym__Alignof] = ACTIONS(2381), + [anon_sym_offsetof] = ACTIONS(2381), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2381), + [anon_sym___asm__] = ACTIONS(2381), + [anon_sym___asm] = ACTIONS(2381), + [sym_number_literal] = ACTIONS(2383), + [anon_sym_L_SQUOTE] = ACTIONS(2383), + [anon_sym_u_SQUOTE] = ACTIONS(2383), + [anon_sym_U_SQUOTE] = ACTIONS(2383), + [anon_sym_u8_SQUOTE] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(2383), + [anon_sym_L_DQUOTE] = ACTIONS(2383), + [anon_sym_u_DQUOTE] = ACTIONS(2383), + [anon_sym_U_DQUOTE] = ACTIONS(2383), + [anon_sym_u8_DQUOTE] = ACTIONS(2383), + [anon_sym_DQUOTE] = ACTIONS(2383), + [sym_true] = ACTIONS(2381), + [sym_false] = ACTIONS(2381), + [anon_sym_NULL] = ACTIONS(2381), + [anon_sym_nullptr] = ACTIONS(2381), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2381), + [anon_sym_decltype] = ACTIONS(2381), + [anon_sym_explicit] = ACTIONS(2381), + [anon_sym_typename] = ACTIONS(2381), + [anon_sym_template] = ACTIONS(2381), + [anon_sym_operator] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2381), + [anon_sym_delete] = ACTIONS(2381), + [anon_sym_throw] = ACTIONS(2381), + [anon_sym_namespace] = ACTIONS(2381), + [anon_sym_using] = ACTIONS(2381), + [anon_sym_static_assert] = ACTIONS(2381), + [anon_sym_concept] = ACTIONS(2381), + [anon_sym_co_return] = ACTIONS(2381), + [anon_sym_co_yield] = ACTIONS(2381), + [anon_sym_R_DQUOTE] = ACTIONS(2383), + [anon_sym_LR_DQUOTE] = ACTIONS(2383), + [anon_sym_uR_DQUOTE] = ACTIONS(2383), + [anon_sym_UR_DQUOTE] = ACTIONS(2383), + [anon_sym_u8R_DQUOTE] = ACTIONS(2383), + [anon_sym_co_await] = ACTIONS(2381), + [anon_sym_new] = ACTIONS(2381), + [anon_sym_requires] = ACTIONS(2381), + [sym_this] = ACTIONS(2381), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2381), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_FORWARD] = ACTIONS(2381), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2381), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2381), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2381), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2381), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_PS_GET] = ACTIONS(2381), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2381), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2381), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2381), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2381), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2381), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2381), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2381), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2381), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2381), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2381), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2381), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2381), + [anon_sym_MOZ_COLD] = ACTIONS(2381), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2381), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2381), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2381), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2381), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2381), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2381), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2381), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2381), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2381), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2381), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2381), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2381), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2381), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2381), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2381), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2381), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2381), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2381), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2381), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2381), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2381), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_NONNULL] = ACTIONS(2381), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2381), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2381), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2381), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2381), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2381), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_NORETURN] = ACTIONS(2381), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2381), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2381), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2381), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2381), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2381), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2381), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2381), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2381), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2381), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2381), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2381), + [anon_sym_MOZ_RAII] = ACTIONS(2381), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2381), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2381), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2381), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2381), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2381), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2381), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2381), + }, + [STATE(603)] = { + [sym_identifier] = ACTIONS(2385), + [aux_sym_preproc_include_token1] = ACTIONS(2385), + [aux_sym_preproc_def_token1] = ACTIONS(2385), + [aux_sym_preproc_if_token1] = ACTIONS(2385), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2385), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2385), + [sym_preproc_directive] = ACTIONS(2385), + [anon_sym_LPAREN2] = ACTIONS(2387), + [anon_sym_BANG] = ACTIONS(2387), + [anon_sym_TILDE] = ACTIONS(2387), + [anon_sym_DASH] = ACTIONS(2385), + [anon_sym_PLUS] = ACTIONS(2385), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_AMP_AMP] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(2387), + [anon_sym___extension__] = ACTIONS(2385), + [anon_sym_typedef] = ACTIONS(2385), + [anon_sym_virtual] = ACTIONS(2385), + [anon_sym_extern] = ACTIONS(2385), + [anon_sym___attribute__] = ACTIONS(2385), + [anon_sym___attribute] = ACTIONS(2385), + [anon_sym_COLON_COLON] = ACTIONS(2387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2387), + [anon_sym___declspec] = ACTIONS(2385), + [anon_sym___based] = ACTIONS(2385), + [anon_sym___cdecl] = ACTIONS(2385), + [anon_sym___clrcall] = ACTIONS(2385), + [anon_sym___stdcall] = ACTIONS(2385), + [anon_sym___fastcall] = ACTIONS(2385), + [anon_sym___thiscall] = ACTIONS(2385), + [anon_sym___vectorcall] = ACTIONS(2385), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2387), + [anon_sym_signed] = ACTIONS(2385), + [anon_sym_unsigned] = ACTIONS(2385), + [anon_sym_long] = ACTIONS(2385), + [anon_sym_short] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2385), + [anon_sym_static] = ACTIONS(2385), + [anon_sym_register] = ACTIONS(2385), + [anon_sym_inline] = ACTIONS(2385), + [anon_sym___inline] = ACTIONS(2385), + [anon_sym___inline__] = ACTIONS(2385), + [anon_sym___forceinline] = ACTIONS(2385), + [anon_sym_thread_local] = ACTIONS(2385), + [anon_sym___thread] = ACTIONS(2385), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_constexpr] = ACTIONS(2385), + [anon_sym_volatile] = ACTIONS(2385), + [anon_sym_restrict] = ACTIONS(2385), + [anon_sym___restrict__] = ACTIONS(2385), + [anon_sym__Atomic] = ACTIONS(2385), + [anon_sym__Noreturn] = ACTIONS(2385), + [anon_sym_noreturn] = ACTIONS(2385), + [anon_sym__Nonnull] = ACTIONS(2385), + [anon_sym_mutable] = ACTIONS(2385), + [anon_sym_constinit] = ACTIONS(2385), + [anon_sym_consteval] = ACTIONS(2385), + [anon_sym_alignas] = ACTIONS(2385), + [anon_sym__Alignas] = ACTIONS(2385), + [sym_primitive_type] = ACTIONS(2385), + [anon_sym_enum] = ACTIONS(2385), + [anon_sym_class] = ACTIONS(2385), + [anon_sym_struct] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_switch] = ACTIONS(2385), + [anon_sym_case] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_while] = ACTIONS(2385), + [anon_sym_do] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2385), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_break] = ACTIONS(2385), + [anon_sym_continue] = ACTIONS(2385), + [anon_sym_goto] = ACTIONS(2385), + [anon_sym___try] = ACTIONS(2385), + [anon_sym___leave] = ACTIONS(2385), + [anon_sym_not] = ACTIONS(2385), + [anon_sym_compl] = ACTIONS(2385), + [anon_sym_DASH_DASH] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2387), + [anon_sym_sizeof] = ACTIONS(2385), + [anon_sym___alignof__] = ACTIONS(2385), + [anon_sym___alignof] = ACTIONS(2385), + [anon_sym__alignof] = ACTIONS(2385), + [anon_sym_alignof] = ACTIONS(2385), + [anon_sym__Alignof] = ACTIONS(2385), + [anon_sym_offsetof] = ACTIONS(2385), + [anon_sym__Generic] = ACTIONS(2385), + [anon_sym_asm] = ACTIONS(2385), + [anon_sym___asm__] = ACTIONS(2385), + [anon_sym___asm] = ACTIONS(2385), + [sym_number_literal] = ACTIONS(2387), + [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(2387), + [anon_sym_u_DQUOTE] = ACTIONS(2387), + [anon_sym_U_DQUOTE] = ACTIONS(2387), + [anon_sym_u8_DQUOTE] = ACTIONS(2387), + [anon_sym_DQUOTE] = ACTIONS(2387), + [sym_true] = ACTIONS(2385), + [sym_false] = ACTIONS(2385), + [anon_sym_NULL] = ACTIONS(2385), + [anon_sym_nullptr] = ACTIONS(2385), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2385), + [anon_sym_decltype] = ACTIONS(2385), + [anon_sym_explicit] = ACTIONS(2385), + [anon_sym_typename] = ACTIONS(2385), + [anon_sym_template] = ACTIONS(2385), + [anon_sym_operator] = ACTIONS(2385), + [anon_sym_try] = ACTIONS(2385), + [anon_sym_delete] = ACTIONS(2385), + [anon_sym_throw] = ACTIONS(2385), + [anon_sym_namespace] = ACTIONS(2385), + [anon_sym_using] = ACTIONS(2385), + [anon_sym_static_assert] = ACTIONS(2385), + [anon_sym_concept] = ACTIONS(2385), + [anon_sym_co_return] = ACTIONS(2385), + [anon_sym_co_yield] = ACTIONS(2385), + [anon_sym_R_DQUOTE] = ACTIONS(2387), + [anon_sym_LR_DQUOTE] = ACTIONS(2387), + [anon_sym_uR_DQUOTE] = ACTIONS(2387), + [anon_sym_UR_DQUOTE] = ACTIONS(2387), + [anon_sym_u8R_DQUOTE] = ACTIONS(2387), + [anon_sym_co_await] = ACTIONS(2385), + [anon_sym_new] = ACTIONS(2385), + [anon_sym_requires] = ACTIONS(2385), + [sym_this] = ACTIONS(2385), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2385), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_FORWARD] = ACTIONS(2385), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2385), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2385), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2385), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2385), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_PS_GET] = ACTIONS(2385), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2385), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2385), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2385), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2385), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2385), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2385), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2385), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2385), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2385), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2385), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2385), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2385), + [anon_sym_MOZ_COLD] = ACTIONS(2385), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2385), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2385), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2385), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2385), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2385), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2385), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2385), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2385), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2385), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2385), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2385), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2385), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2385), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2385), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2385), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2385), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2385), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2385), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2385), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2385), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2385), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_NONNULL] = ACTIONS(2385), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2385), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2385), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2385), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2385), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2385), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_NORETURN] = ACTIONS(2385), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2385), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2385), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2385), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2385), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2385), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2385), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2385), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2385), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2385), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2385), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2385), + [anon_sym_MOZ_RAII] = ACTIONS(2385), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2385), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2385), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2385), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2385), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2385), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2385), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2385), + }, + [STATE(604)] = { + [sym_identifier] = ACTIONS(2389), + [aux_sym_preproc_include_token1] = ACTIONS(2389), + [aux_sym_preproc_def_token1] = ACTIONS(2389), + [aux_sym_preproc_if_token1] = ACTIONS(2389), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2389), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2389), + [sym_preproc_directive] = ACTIONS(2389), + [anon_sym_LPAREN2] = ACTIONS(2391), + [anon_sym_BANG] = ACTIONS(2391), + [anon_sym_TILDE] = ACTIONS(2391), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_STAR] = ACTIONS(2391), + [anon_sym_AMP_AMP] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2389), + [anon_sym_SEMI] = ACTIONS(2391), + [anon_sym___extension__] = ACTIONS(2389), + [anon_sym_typedef] = ACTIONS(2389), + [anon_sym_virtual] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(2389), + [anon_sym___attribute__] = ACTIONS(2389), + [anon_sym___attribute] = ACTIONS(2389), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2391), + [anon_sym___declspec] = ACTIONS(2389), + [anon_sym___based] = ACTIONS(2389), + [anon_sym___cdecl] = ACTIONS(2389), + [anon_sym___clrcall] = ACTIONS(2389), + [anon_sym___stdcall] = ACTIONS(2389), + [anon_sym___fastcall] = ACTIONS(2389), + [anon_sym___thiscall] = ACTIONS(2389), + [anon_sym___vectorcall] = ACTIONS(2389), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_signed] = ACTIONS(2389), + [anon_sym_unsigned] = ACTIONS(2389), + [anon_sym_long] = ACTIONS(2389), + [anon_sym_short] = ACTIONS(2389), + [anon_sym_LBRACK] = ACTIONS(2389), + [anon_sym_static] = ACTIONS(2389), + [anon_sym_register] = ACTIONS(2389), + [anon_sym_inline] = ACTIONS(2389), + [anon_sym___inline] = ACTIONS(2389), + [anon_sym___inline__] = ACTIONS(2389), + [anon_sym___forceinline] = ACTIONS(2389), + [anon_sym_thread_local] = ACTIONS(2389), + [anon_sym___thread] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [anon_sym_constexpr] = ACTIONS(2389), + [anon_sym_volatile] = ACTIONS(2389), + [anon_sym_restrict] = ACTIONS(2389), + [anon_sym___restrict__] = ACTIONS(2389), + [anon_sym__Atomic] = ACTIONS(2389), + [anon_sym__Noreturn] = ACTIONS(2389), + [anon_sym_noreturn] = ACTIONS(2389), + [anon_sym__Nonnull] = ACTIONS(2389), + [anon_sym_mutable] = ACTIONS(2389), + [anon_sym_constinit] = ACTIONS(2389), + [anon_sym_consteval] = ACTIONS(2389), + [anon_sym_alignas] = ACTIONS(2389), + [anon_sym__Alignas] = ACTIONS(2389), + [sym_primitive_type] = ACTIONS(2389), + [anon_sym_enum] = ACTIONS(2389), + [anon_sym_class] = ACTIONS(2389), + [anon_sym_struct] = ACTIONS(2389), + [anon_sym_union] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_switch] = ACTIONS(2389), + [anon_sym_case] = ACTIONS(2389), + [anon_sym_default] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [anon_sym_do] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_goto] = ACTIONS(2389), + [anon_sym___try] = ACTIONS(2389), + [anon_sym___leave] = ACTIONS(2389), + [anon_sym_not] = ACTIONS(2389), + [anon_sym_compl] = ACTIONS(2389), + [anon_sym_DASH_DASH] = ACTIONS(2391), + [anon_sym_PLUS_PLUS] = ACTIONS(2391), + [anon_sym_sizeof] = ACTIONS(2389), + [anon_sym___alignof__] = ACTIONS(2389), + [anon_sym___alignof] = ACTIONS(2389), + [anon_sym__alignof] = ACTIONS(2389), + [anon_sym_alignof] = ACTIONS(2389), + [anon_sym__Alignof] = ACTIONS(2389), + [anon_sym_offsetof] = ACTIONS(2389), + [anon_sym__Generic] = ACTIONS(2389), + [anon_sym_asm] = ACTIONS(2389), + [anon_sym___asm__] = ACTIONS(2389), + [anon_sym___asm] = ACTIONS(2389), + [sym_number_literal] = ACTIONS(2391), + [anon_sym_L_SQUOTE] = ACTIONS(2391), + [anon_sym_u_SQUOTE] = ACTIONS(2391), + [anon_sym_U_SQUOTE] = ACTIONS(2391), + [anon_sym_u8_SQUOTE] = ACTIONS(2391), + [anon_sym_SQUOTE] = ACTIONS(2391), + [anon_sym_L_DQUOTE] = ACTIONS(2391), + [anon_sym_u_DQUOTE] = ACTIONS(2391), + [anon_sym_U_DQUOTE] = ACTIONS(2391), + [anon_sym_u8_DQUOTE] = ACTIONS(2391), + [anon_sym_DQUOTE] = ACTIONS(2391), + [sym_true] = ACTIONS(2389), + [sym_false] = ACTIONS(2389), + [anon_sym_NULL] = ACTIONS(2389), + [anon_sym_nullptr] = ACTIONS(2389), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2389), + [anon_sym_decltype] = ACTIONS(2389), + [anon_sym_explicit] = ACTIONS(2389), + [anon_sym_typename] = ACTIONS(2389), + [anon_sym_template] = ACTIONS(2389), + [anon_sym_operator] = ACTIONS(2389), + [anon_sym_try] = ACTIONS(2389), + [anon_sym_delete] = ACTIONS(2389), + [anon_sym_throw] = ACTIONS(2389), + [anon_sym_namespace] = ACTIONS(2389), + [anon_sym_using] = ACTIONS(2389), + [anon_sym_static_assert] = ACTIONS(2389), + [anon_sym_concept] = ACTIONS(2389), + [anon_sym_co_return] = ACTIONS(2389), + [anon_sym_co_yield] = ACTIONS(2389), + [anon_sym_R_DQUOTE] = ACTIONS(2391), + [anon_sym_LR_DQUOTE] = ACTIONS(2391), + [anon_sym_uR_DQUOTE] = ACTIONS(2391), + [anon_sym_UR_DQUOTE] = ACTIONS(2391), + [anon_sym_u8R_DQUOTE] = ACTIONS(2391), + [anon_sym_co_await] = ACTIONS(2389), + [anon_sym_new] = ACTIONS(2389), + [anon_sym_requires] = ACTIONS(2389), + [sym_this] = ACTIONS(2389), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2389), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_FORWARD] = ACTIONS(2389), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2389), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2389), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2389), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2389), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_PS_GET] = ACTIONS(2389), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2389), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2389), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2389), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2389), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2389), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2389), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2389), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2389), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2389), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2389), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2389), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2389), + [anon_sym_MOZ_COLD] = ACTIONS(2389), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2389), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2389), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2389), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2389), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2389), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2389), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2389), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2389), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2389), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2389), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2389), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2389), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2389), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2389), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2389), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2389), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2389), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2389), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2389), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2389), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2389), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_NONNULL] = ACTIONS(2389), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2389), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2389), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2389), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2389), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2389), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_NORETURN] = ACTIONS(2389), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2389), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2389), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2389), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2389), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2389), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2389), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2389), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2389), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2389), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2389), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2389), + [anon_sym_MOZ_RAII] = ACTIONS(2389), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2389), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2389), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2389), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2389), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2389), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2389), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2389), + }, + [STATE(605)] = { + [ts_builtin_sym_end] = ACTIONS(2319), + [sym_identifier] = ACTIONS(2317), + [aux_sym_preproc_include_token1] = ACTIONS(2317), + [aux_sym_preproc_def_token1] = ACTIONS(2317), + [aux_sym_preproc_if_token1] = ACTIONS(2317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2317), + [sym_preproc_directive] = ACTIONS(2317), + [anon_sym_LPAREN2] = ACTIONS(2319), + [anon_sym_BANG] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2317), + [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_typedef] = ACTIONS(2317), + [anon_sym_virtual] = ACTIONS(2317), + [anon_sym_extern] = ACTIONS(2317), + [anon_sym___attribute__] = ACTIONS(2317), + [anon_sym___attribute] = ACTIONS(2317), [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1687] = { - [sym__expression] = STATE(2807), - [sym_comma_expression] = STATE(5108), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4242), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1688] = { - [sym_field_declaration_list] = STATE(2116), - [sym__class_name] = STATE(1984), - [sym_virtual_specifier] = STATE(4085), - [sym_base_class_clause] = STATE(4680), - [sym_template_type] = STATE(2001), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3897), - [sym_qualified_type_identifier] = STATE(1984), - [sym_macro_annotation] = STATE(1637), - [aux_sym_class_specifier_repeat1] = STATE(1637), - [sym_identifier] = ACTIONS(4174), - [anon_sym_COLON_COLON] = ACTIONS(4176), - [anon_sym_LBRACE] = ACTIONS(4178), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1689] = { - [sym__expression] = STATE(2708), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1690] = { - [sym__expression] = STATE(2828), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACE] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1691] = { - [sym__expression] = STATE(2822), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACE] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1692] = { - [sym__expression] = STATE(2804), - [sym_comma_expression] = STATE(5081), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1693] = { - [sym__expression] = STATE(2781), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(4650), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1694] = { - [sym__expression] = STATE(2813), - [sym_comma_expression] = STATE(5083), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4246), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1695] = { - [sym__expression] = STATE(2830), - [sym_comma_expression] = STATE(5079), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4248), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1696] = { - [sym__expression] = STATE(2431), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_initializer_list] = STATE(2119), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1697] = { - [sym__expression] = STATE(2457), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1698] = { - [sym__expression] = STATE(2463), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1699] = { - [sym__expression] = STATE(2844), - [sym_comma_expression] = STATE(5078), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4250), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1700] = { - [sym__expression] = STATE(2846), - [sym_comma_expression] = STATE(5077), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4252), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1701] = { - [sym__expression] = STATE(2186), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1702] = { - [sym__expression] = STATE(3010), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_initializer_list] = STATE(5067), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1703] = { - [sym__expression] = STATE(2685), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_initializer_list] = STATE(2682), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1704] = { - [sym_field_declaration_list] = STATE(1323), - [sym__class_name] = STATE(1286), - [sym_virtual_specifier] = STATE(4095), - [sym_base_class_clause] = STATE(4476), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1286), - [sym_macro_annotation] = STATE(1620), - [aux_sym_class_specifier_repeat1] = STATE(1620), - [sym_identifier] = ACTIONS(4118), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1705] = { - [sym_field_declaration_list] = STATE(2614), - [sym__class_name] = STATE(2275), - [sym_virtual_specifier] = STATE(4079), - [sym_base_class_clause] = STATE(4820), - [sym_template_type] = STATE(2424), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3918), - [sym_qualified_type_identifier] = STATE(2275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2319), + [anon_sym___declspec] = ACTIONS(2317), + [anon_sym___based] = ACTIONS(2317), + [anon_sym___cdecl] = ACTIONS(2317), + [anon_sym___clrcall] = ACTIONS(2317), + [anon_sym___stdcall] = ACTIONS(2317), + [anon_sym___fastcall] = ACTIONS(2317), + [anon_sym___thiscall] = ACTIONS(2317), + [anon_sym___vectorcall] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_signed] = ACTIONS(2317), + [anon_sym_unsigned] = ACTIONS(2317), + [anon_sym_long] = ACTIONS(2317), + [anon_sym_short] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_register] = ACTIONS(2317), + [anon_sym_inline] = ACTIONS(2317), + [anon_sym___inline] = ACTIONS(2317), + [anon_sym___inline__] = ACTIONS(2317), + [anon_sym___forceinline] = ACTIONS(2317), + [anon_sym_thread_local] = ACTIONS(2317), + [anon_sym___thread] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_constexpr] = ACTIONS(2317), + [anon_sym_volatile] = ACTIONS(2317), + [anon_sym_restrict] = ACTIONS(2317), + [anon_sym___restrict__] = ACTIONS(2317), + [anon_sym__Atomic] = ACTIONS(2317), + [anon_sym__Noreturn] = ACTIONS(2317), + [anon_sym_noreturn] = ACTIONS(2317), + [anon_sym__Nonnull] = ACTIONS(2317), + [anon_sym_mutable] = ACTIONS(2317), + [anon_sym_constinit] = ACTIONS(2317), + [anon_sym_consteval] = ACTIONS(2317), + [anon_sym_alignas] = ACTIONS(2317), + [anon_sym__Alignas] = ACTIONS(2317), + [sym_primitive_type] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_struct] = ACTIONS(2317), + [anon_sym_union] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_case] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_goto] = ACTIONS(2317), + [anon_sym_not] = ACTIONS(2317), + [anon_sym_compl] = ACTIONS(2317), + [anon_sym_DASH_DASH] = ACTIONS(2319), + [anon_sym_PLUS_PLUS] = ACTIONS(2319), + [anon_sym_sizeof] = ACTIONS(2317), + [anon_sym___alignof__] = ACTIONS(2317), + [anon_sym___alignof] = ACTIONS(2317), + [anon_sym__alignof] = ACTIONS(2317), + [anon_sym_alignof] = ACTIONS(2317), + [anon_sym__Alignof] = ACTIONS(2317), + [anon_sym_offsetof] = ACTIONS(2317), + [anon_sym__Generic] = ACTIONS(2317), + [anon_sym_asm] = ACTIONS(2317), + [anon_sym___asm__] = ACTIONS(2317), + [anon_sym___asm] = ACTIONS(2317), + [sym_number_literal] = ACTIONS(2319), + [anon_sym_L_SQUOTE] = ACTIONS(2319), + [anon_sym_u_SQUOTE] = ACTIONS(2319), + [anon_sym_U_SQUOTE] = ACTIONS(2319), + [anon_sym_u8_SQUOTE] = ACTIONS(2319), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_L_DQUOTE] = ACTIONS(2319), + [anon_sym_u_DQUOTE] = ACTIONS(2319), + [anon_sym_U_DQUOTE] = ACTIONS(2319), + [anon_sym_u8_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [sym_true] = ACTIONS(2317), + [sym_false] = ACTIONS(2317), + [anon_sym_NULL] = ACTIONS(2317), + [anon_sym_nullptr] = ACTIONS(2317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2317), + [anon_sym_decltype] = ACTIONS(2317), + [anon_sym_explicit] = ACTIONS(2317), + [anon_sym_typename] = ACTIONS(2317), + [anon_sym_template] = ACTIONS(2317), + [anon_sym_operator] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_delete] = ACTIONS(2317), + [anon_sym_throw] = ACTIONS(2317), + [anon_sym_namespace] = ACTIONS(2317), + [anon_sym_using] = ACTIONS(2317), + [anon_sym_static_assert] = ACTIONS(2317), + [anon_sym_concept] = ACTIONS(2317), + [anon_sym_co_return] = ACTIONS(2317), + [anon_sym_co_yield] = ACTIONS(2317), + [anon_sym_R_DQUOTE] = ACTIONS(2319), + [anon_sym_LR_DQUOTE] = ACTIONS(2319), + [anon_sym_uR_DQUOTE] = ACTIONS(2319), + [anon_sym_UR_DQUOTE] = ACTIONS(2319), + [anon_sym_u8R_DQUOTE] = ACTIONS(2319), + [anon_sym_co_await] = ACTIONS(2317), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_requires] = ACTIONS(2317), + [sym_this] = ACTIONS(2317), + [sym_alone_macro] = ACTIONS(2319), + [aux_sym_alone_macro_call_token1] = ACTIONS(2317), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2317), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_FORWARD] = ACTIONS(2317), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2317), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2317), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2317), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2317), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_PS_GET] = ACTIONS(2317), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2317), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2317), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2317), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2317), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2317), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2317), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2317), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2317), + [anon_sym_MOZ_COLD] = ACTIONS(2317), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2317), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2317), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2317), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2317), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2317), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2317), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2317), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2317), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2317), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2317), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2317), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2317), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2317), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_NONNULL] = ACTIONS(2317), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2317), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2317), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2317), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2317), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2317), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2317), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2317), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2317), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2317), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2317), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2317), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2317), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2317), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2317), + [anon_sym_MOZ_RAII] = ACTIONS(2317), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2317), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2317), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2317), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2317), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2317), + }, + [STATE(606)] = { + [ts_builtin_sym_end] = ACTIONS(2327), + [sym_identifier] = ACTIONS(2325), + [aux_sym_preproc_include_token1] = ACTIONS(2325), + [aux_sym_preproc_def_token1] = ACTIONS(2325), + [aux_sym_preproc_if_token1] = ACTIONS(2325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2325), + [sym_preproc_directive] = ACTIONS(2325), + [anon_sym_LPAREN2] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_PLUS] = ACTIONS(2325), + [anon_sym_STAR] = ACTIONS(2327), + [anon_sym_AMP_AMP] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym___extension__] = ACTIONS(2325), + [anon_sym_typedef] = ACTIONS(2325), + [anon_sym_virtual] = ACTIONS(2325), + [anon_sym_extern] = ACTIONS(2325), + [anon_sym___attribute__] = ACTIONS(2325), + [anon_sym___attribute] = ACTIONS(2325), + [anon_sym_COLON_COLON] = ACTIONS(2327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), + [anon_sym___declspec] = ACTIONS(2325), + [anon_sym___based] = ACTIONS(2325), + [anon_sym___cdecl] = ACTIONS(2325), + [anon_sym___clrcall] = ACTIONS(2325), + [anon_sym___stdcall] = ACTIONS(2325), + [anon_sym___fastcall] = ACTIONS(2325), + [anon_sym___thiscall] = ACTIONS(2325), + [anon_sym___vectorcall] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_signed] = ACTIONS(2325), + [anon_sym_unsigned] = ACTIONS(2325), + [anon_sym_long] = ACTIONS(2325), + [anon_sym_short] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_static] = ACTIONS(2325), + [anon_sym_register] = ACTIONS(2325), + [anon_sym_inline] = ACTIONS(2325), + [anon_sym___inline] = ACTIONS(2325), + [anon_sym___inline__] = ACTIONS(2325), + [anon_sym___forceinline] = ACTIONS(2325), + [anon_sym_thread_local] = ACTIONS(2325), + [anon_sym___thread] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_constexpr] = ACTIONS(2325), + [anon_sym_volatile] = ACTIONS(2325), + [anon_sym_restrict] = ACTIONS(2325), + [anon_sym___restrict__] = ACTIONS(2325), + [anon_sym__Atomic] = ACTIONS(2325), + [anon_sym__Noreturn] = ACTIONS(2325), + [anon_sym_noreturn] = ACTIONS(2325), + [anon_sym__Nonnull] = ACTIONS(2325), + [anon_sym_mutable] = ACTIONS(2325), + [anon_sym_constinit] = ACTIONS(2325), + [anon_sym_consteval] = ACTIONS(2325), + [anon_sym_alignas] = ACTIONS(2325), + [anon_sym__Alignas] = ACTIONS(2325), + [sym_primitive_type] = ACTIONS(2325), + [anon_sym_enum] = ACTIONS(2325), + [anon_sym_class] = ACTIONS(2325), + [anon_sym_struct] = ACTIONS(2325), + [anon_sym_union] = ACTIONS(2325), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2325), + [anon_sym_case] = ACTIONS(2325), + [anon_sym_default] = ACTIONS(2325), + [anon_sym_while] = ACTIONS(2325), + [anon_sym_do] = ACTIONS(2325), + [anon_sym_for] = ACTIONS(2325), + [anon_sym_return] = ACTIONS(2325), + [anon_sym_break] = ACTIONS(2325), + [anon_sym_continue] = ACTIONS(2325), + [anon_sym_goto] = ACTIONS(2325), + [anon_sym_not] = ACTIONS(2325), + [anon_sym_compl] = ACTIONS(2325), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_sizeof] = ACTIONS(2325), + [anon_sym___alignof__] = ACTIONS(2325), + [anon_sym___alignof] = ACTIONS(2325), + [anon_sym__alignof] = ACTIONS(2325), + [anon_sym_alignof] = ACTIONS(2325), + [anon_sym__Alignof] = ACTIONS(2325), + [anon_sym_offsetof] = ACTIONS(2325), + [anon_sym__Generic] = ACTIONS(2325), + [anon_sym_asm] = ACTIONS(2325), + [anon_sym___asm__] = ACTIONS(2325), + [anon_sym___asm] = ACTIONS(2325), + [sym_number_literal] = ACTIONS(2327), + [anon_sym_L_SQUOTE] = ACTIONS(2327), + [anon_sym_u_SQUOTE] = ACTIONS(2327), + [anon_sym_U_SQUOTE] = ACTIONS(2327), + [anon_sym_u8_SQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2325), + [sym_false] = ACTIONS(2325), + [anon_sym_NULL] = ACTIONS(2325), + [anon_sym_nullptr] = ACTIONS(2325), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2325), + [anon_sym_decltype] = ACTIONS(2325), + [anon_sym_explicit] = ACTIONS(2325), + [anon_sym_typename] = ACTIONS(2325), + [anon_sym_template] = ACTIONS(2325), + [anon_sym_operator] = ACTIONS(2325), + [anon_sym_try] = ACTIONS(2325), + [anon_sym_delete] = ACTIONS(2325), + [anon_sym_throw] = ACTIONS(2325), + [anon_sym_namespace] = ACTIONS(2325), + [anon_sym_using] = ACTIONS(2325), + [anon_sym_static_assert] = ACTIONS(2325), + [anon_sym_concept] = ACTIONS(2325), + [anon_sym_co_return] = ACTIONS(2325), + [anon_sym_co_yield] = ACTIONS(2325), + [anon_sym_R_DQUOTE] = ACTIONS(2327), + [anon_sym_LR_DQUOTE] = ACTIONS(2327), + [anon_sym_uR_DQUOTE] = ACTIONS(2327), + [anon_sym_UR_DQUOTE] = ACTIONS(2327), + [anon_sym_u8R_DQUOTE] = ACTIONS(2327), + [anon_sym_co_await] = ACTIONS(2325), + [anon_sym_new] = ACTIONS(2325), + [anon_sym_requires] = ACTIONS(2325), + [sym_this] = ACTIONS(2325), + [sym_alone_macro] = ACTIONS(2327), + [aux_sym_alone_macro_call_token1] = ACTIONS(2325), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2325), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_FORWARD] = ACTIONS(2325), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2325), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2325), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2325), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2325), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_PS_GET] = ACTIONS(2325), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2325), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2325), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2325), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2325), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2325), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2325), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2325), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2325), + [anon_sym_MOZ_COLD] = ACTIONS(2325), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2325), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2325), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2325), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2325), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2325), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2325), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2325), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2325), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2325), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2325), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2325), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2325), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2325), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_NONNULL] = ACTIONS(2325), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2325), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2325), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2325), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2325), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2325), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2325), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2325), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2325), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2325), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2325), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2325), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2325), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2325), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2325), + [anon_sym_MOZ_RAII] = ACTIONS(2325), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2325), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2325), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2325), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2325), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2325), + }, + [STATE(607)] = { + [sym_identifier] = ACTIONS(2287), + [aux_sym_preproc_include_token1] = ACTIONS(2287), + [aux_sym_preproc_def_token1] = ACTIONS(2287), + [aux_sym_preproc_if_token1] = ACTIONS(2287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2287), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2287), + [sym_preproc_directive] = ACTIONS(2287), + [anon_sym_LPAREN2] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_AMP_AMP] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym___extension__] = ACTIONS(2287), + [anon_sym_typedef] = ACTIONS(2287), + [anon_sym_virtual] = ACTIONS(2287), + [anon_sym_extern] = ACTIONS(2287), + [anon_sym___attribute__] = ACTIONS(2287), + [anon_sym___attribute] = ACTIONS(2287), + [anon_sym_COLON_COLON] = ACTIONS(2289), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2289), + [anon_sym___declspec] = ACTIONS(2287), + [anon_sym___based] = ACTIONS(2287), + [anon_sym___cdecl] = ACTIONS(2287), + [anon_sym___clrcall] = ACTIONS(2287), + [anon_sym___stdcall] = ACTIONS(2287), + [anon_sym___fastcall] = ACTIONS(2287), + [anon_sym___thiscall] = ACTIONS(2287), + [anon_sym___vectorcall] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_RBRACE] = ACTIONS(2289), + [anon_sym_signed] = ACTIONS(2287), + [anon_sym_unsigned] = ACTIONS(2287), + [anon_sym_long] = ACTIONS(2287), + [anon_sym_short] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(2287), + [anon_sym_static] = ACTIONS(2287), + [anon_sym_register] = ACTIONS(2287), + [anon_sym_inline] = ACTIONS(2287), + [anon_sym___inline] = ACTIONS(2287), + [anon_sym___inline__] = ACTIONS(2287), + [anon_sym___forceinline] = ACTIONS(2287), + [anon_sym_thread_local] = ACTIONS(2287), + [anon_sym___thread] = ACTIONS(2287), + [anon_sym_const] = ACTIONS(2287), + [anon_sym_constexpr] = ACTIONS(2287), + [anon_sym_volatile] = ACTIONS(2287), + [anon_sym_restrict] = ACTIONS(2287), + [anon_sym___restrict__] = ACTIONS(2287), + [anon_sym__Atomic] = ACTIONS(2287), + [anon_sym__Noreturn] = ACTIONS(2287), + [anon_sym_noreturn] = ACTIONS(2287), + [anon_sym__Nonnull] = ACTIONS(2287), + [anon_sym_mutable] = ACTIONS(2287), + [anon_sym_constinit] = ACTIONS(2287), + [anon_sym_consteval] = ACTIONS(2287), + [anon_sym_alignas] = ACTIONS(2287), + [anon_sym__Alignas] = ACTIONS(2287), + [sym_primitive_type] = ACTIONS(2287), + [anon_sym_enum] = ACTIONS(2287), + [anon_sym_class] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(2287), + [anon_sym_union] = ACTIONS(2287), + [anon_sym_if] = ACTIONS(2287), + [anon_sym_switch] = ACTIONS(2287), + [anon_sym_case] = ACTIONS(2287), + [anon_sym_default] = ACTIONS(2287), + [anon_sym_while] = ACTIONS(2287), + [anon_sym_do] = ACTIONS(2287), + [anon_sym_for] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2287), + [anon_sym_break] = ACTIONS(2287), + [anon_sym_continue] = ACTIONS(2287), + [anon_sym_goto] = ACTIONS(2287), + [anon_sym___try] = ACTIONS(2287), + [anon_sym___leave] = ACTIONS(2287), + [anon_sym_not] = ACTIONS(2287), + [anon_sym_compl] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_sizeof] = ACTIONS(2287), + [anon_sym___alignof__] = ACTIONS(2287), + [anon_sym___alignof] = ACTIONS(2287), + [anon_sym__alignof] = ACTIONS(2287), + [anon_sym_alignof] = ACTIONS(2287), + [anon_sym__Alignof] = ACTIONS(2287), + [anon_sym_offsetof] = ACTIONS(2287), + [anon_sym__Generic] = ACTIONS(2287), + [anon_sym_asm] = ACTIONS(2287), + [anon_sym___asm__] = ACTIONS(2287), + [anon_sym___asm] = ACTIONS(2287), + [sym_number_literal] = ACTIONS(2289), + [anon_sym_L_SQUOTE] = ACTIONS(2289), + [anon_sym_u_SQUOTE] = ACTIONS(2289), + [anon_sym_U_SQUOTE] = ACTIONS(2289), + [anon_sym_u8_SQUOTE] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_L_DQUOTE] = ACTIONS(2289), + [anon_sym_u_DQUOTE] = ACTIONS(2289), + [anon_sym_U_DQUOTE] = ACTIONS(2289), + [anon_sym_u8_DQUOTE] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(2289), + [sym_true] = ACTIONS(2287), + [sym_false] = ACTIONS(2287), + [anon_sym_NULL] = ACTIONS(2287), + [anon_sym_nullptr] = ACTIONS(2287), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2287), + [anon_sym_decltype] = ACTIONS(2287), + [anon_sym_explicit] = ACTIONS(2287), + [anon_sym_typename] = ACTIONS(2287), + [anon_sym_template] = ACTIONS(2287), + [anon_sym_operator] = ACTIONS(2287), + [anon_sym_try] = ACTIONS(2287), + [anon_sym_delete] = ACTIONS(2287), + [anon_sym_throw] = ACTIONS(2287), + [anon_sym_namespace] = ACTIONS(2287), + [anon_sym_using] = ACTIONS(2287), + [anon_sym_static_assert] = ACTIONS(2287), + [anon_sym_concept] = ACTIONS(2287), + [anon_sym_co_return] = ACTIONS(2287), + [anon_sym_co_yield] = ACTIONS(2287), + [anon_sym_R_DQUOTE] = ACTIONS(2289), + [anon_sym_LR_DQUOTE] = ACTIONS(2289), + [anon_sym_uR_DQUOTE] = ACTIONS(2289), + [anon_sym_UR_DQUOTE] = ACTIONS(2289), + [anon_sym_u8R_DQUOTE] = ACTIONS(2289), + [anon_sym_co_await] = ACTIONS(2287), + [anon_sym_new] = ACTIONS(2287), + [anon_sym_requires] = ACTIONS(2287), + [sym_this] = ACTIONS(2287), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2287), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_FORWARD] = ACTIONS(2287), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2287), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2287), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2287), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2287), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_PS_GET] = ACTIONS(2287), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2287), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2287), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2287), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2287), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2287), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2287), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2287), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2287), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2287), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2287), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2287), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2287), + [anon_sym_MOZ_COLD] = ACTIONS(2287), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2287), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2287), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2287), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2287), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2287), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2287), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2287), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2287), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2287), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2287), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2287), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2287), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2287), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2287), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2287), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2287), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2287), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2287), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2287), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2287), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2287), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_NONNULL] = ACTIONS(2287), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2287), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2287), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2287), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2287), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2287), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_NORETURN] = ACTIONS(2287), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2287), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2287), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2287), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2287), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2287), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2287), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2287), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2287), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2287), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2287), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2287), + [anon_sym_MOZ_RAII] = ACTIONS(2287), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2287), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2287), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2287), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2287), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2287), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2287), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2287), + }, + [STATE(608)] = { + [sym_identifier] = ACTIONS(2295), + [aux_sym_preproc_include_token1] = ACTIONS(2295), + [aux_sym_preproc_def_token1] = ACTIONS(2295), + [aux_sym_preproc_if_token1] = ACTIONS(2295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2295), + [sym_preproc_directive] = ACTIONS(2295), + [anon_sym_LPAREN2] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2295), + [anon_sym_PLUS] = ACTIONS(2295), + [anon_sym_STAR] = ACTIONS(2297), + [anon_sym_AMP_AMP] = ACTIONS(2297), + [anon_sym_AMP] = ACTIONS(2295), + [anon_sym_SEMI] = ACTIONS(2297), + [anon_sym___extension__] = ACTIONS(2295), + [anon_sym_typedef] = ACTIONS(2295), + [anon_sym_virtual] = ACTIONS(2295), + [anon_sym_extern] = ACTIONS(2295), + [anon_sym___attribute__] = ACTIONS(2295), + [anon_sym___attribute] = ACTIONS(2295), + [anon_sym_COLON_COLON] = ACTIONS(2297), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2297), + [anon_sym___declspec] = ACTIONS(2295), + [anon_sym___based] = ACTIONS(2295), + [anon_sym___cdecl] = ACTIONS(2295), + [anon_sym___clrcall] = ACTIONS(2295), + [anon_sym___stdcall] = ACTIONS(2295), + [anon_sym___fastcall] = ACTIONS(2295), + [anon_sym___thiscall] = ACTIONS(2295), + [anon_sym___vectorcall] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2297), + [anon_sym_RBRACE] = ACTIONS(2297), + [anon_sym_signed] = ACTIONS(2295), + [anon_sym_unsigned] = ACTIONS(2295), + [anon_sym_long] = ACTIONS(2295), + [anon_sym_short] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_static] = ACTIONS(2295), + [anon_sym_register] = ACTIONS(2295), + [anon_sym_inline] = ACTIONS(2295), + [anon_sym___inline] = ACTIONS(2295), + [anon_sym___inline__] = ACTIONS(2295), + [anon_sym___forceinline] = ACTIONS(2295), + [anon_sym_thread_local] = ACTIONS(2295), + [anon_sym___thread] = ACTIONS(2295), + [anon_sym_const] = ACTIONS(2295), + [anon_sym_constexpr] = ACTIONS(2295), + [anon_sym_volatile] = ACTIONS(2295), + [anon_sym_restrict] = ACTIONS(2295), + [anon_sym___restrict__] = ACTIONS(2295), + [anon_sym__Atomic] = ACTIONS(2295), + [anon_sym__Noreturn] = ACTIONS(2295), + [anon_sym_noreturn] = ACTIONS(2295), + [anon_sym__Nonnull] = ACTIONS(2295), + [anon_sym_mutable] = ACTIONS(2295), + [anon_sym_constinit] = ACTIONS(2295), + [anon_sym_consteval] = ACTIONS(2295), + [anon_sym_alignas] = ACTIONS(2295), + [anon_sym__Alignas] = ACTIONS(2295), + [sym_primitive_type] = ACTIONS(2295), + [anon_sym_enum] = ACTIONS(2295), + [anon_sym_class] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(2295), + [anon_sym_union] = ACTIONS(2295), + [anon_sym_if] = ACTIONS(2295), + [anon_sym_switch] = ACTIONS(2295), + [anon_sym_case] = ACTIONS(2295), + [anon_sym_default] = ACTIONS(2295), + [anon_sym_while] = ACTIONS(2295), + [anon_sym_do] = ACTIONS(2295), + [anon_sym_for] = ACTIONS(2295), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_break] = ACTIONS(2295), + [anon_sym_continue] = ACTIONS(2295), + [anon_sym_goto] = ACTIONS(2295), + [anon_sym___try] = ACTIONS(2295), + [anon_sym___leave] = ACTIONS(2295), + [anon_sym_not] = ACTIONS(2295), + [anon_sym_compl] = ACTIONS(2295), + [anon_sym_DASH_DASH] = ACTIONS(2297), + [anon_sym_PLUS_PLUS] = ACTIONS(2297), + [anon_sym_sizeof] = ACTIONS(2295), + [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(2295), + [anon_sym__Generic] = ACTIONS(2295), + [anon_sym_asm] = ACTIONS(2295), + [anon_sym___asm__] = ACTIONS(2295), + [anon_sym___asm] = ACTIONS(2295), + [sym_number_literal] = ACTIONS(2297), + [anon_sym_L_SQUOTE] = ACTIONS(2297), + [anon_sym_u_SQUOTE] = ACTIONS(2297), + [anon_sym_U_SQUOTE] = ACTIONS(2297), + [anon_sym_u8_SQUOTE] = ACTIONS(2297), + [anon_sym_SQUOTE] = ACTIONS(2297), + [anon_sym_L_DQUOTE] = ACTIONS(2297), + [anon_sym_u_DQUOTE] = ACTIONS(2297), + [anon_sym_U_DQUOTE] = ACTIONS(2297), + [anon_sym_u8_DQUOTE] = ACTIONS(2297), + [anon_sym_DQUOTE] = ACTIONS(2297), + [sym_true] = ACTIONS(2295), + [sym_false] = ACTIONS(2295), + [anon_sym_NULL] = ACTIONS(2295), + [anon_sym_nullptr] = ACTIONS(2295), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2295), + [anon_sym_decltype] = ACTIONS(2295), + [anon_sym_explicit] = ACTIONS(2295), + [anon_sym_typename] = ACTIONS(2295), + [anon_sym_template] = ACTIONS(2295), + [anon_sym_operator] = ACTIONS(2295), + [anon_sym_try] = ACTIONS(2295), + [anon_sym_delete] = ACTIONS(2295), + [anon_sym_throw] = ACTIONS(2295), + [anon_sym_namespace] = ACTIONS(2295), + [anon_sym_using] = ACTIONS(2295), + [anon_sym_static_assert] = ACTIONS(2295), + [anon_sym_concept] = ACTIONS(2295), + [anon_sym_co_return] = ACTIONS(2295), + [anon_sym_co_yield] = ACTIONS(2295), + [anon_sym_R_DQUOTE] = ACTIONS(2297), + [anon_sym_LR_DQUOTE] = ACTIONS(2297), + [anon_sym_uR_DQUOTE] = ACTIONS(2297), + [anon_sym_UR_DQUOTE] = ACTIONS(2297), + [anon_sym_u8R_DQUOTE] = ACTIONS(2297), + [anon_sym_co_await] = ACTIONS(2295), + [anon_sym_new] = ACTIONS(2295), + [anon_sym_requires] = ACTIONS(2295), + [sym_this] = ACTIONS(2295), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2295), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_FORWARD] = ACTIONS(2295), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2295), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2295), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2295), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2295), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_PS_GET] = ACTIONS(2295), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2295), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2295), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2295), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2295), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2295), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2295), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2295), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2295), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2295), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2295), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2295), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2295), + [anon_sym_MOZ_COLD] = ACTIONS(2295), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2295), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2295), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2295), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2295), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2295), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2295), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2295), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2295), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2295), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2295), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2295), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2295), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2295), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2295), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2295), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2295), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2295), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2295), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2295), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2295), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2295), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_NONNULL] = ACTIONS(2295), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2295), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2295), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2295), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2295), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2295), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_NORETURN] = ACTIONS(2295), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2295), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2295), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2295), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2295), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2295), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2295), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2295), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2295), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2295), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2295), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2295), + [anon_sym_MOZ_RAII] = ACTIONS(2295), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2295), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2295), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2295), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2295), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2295), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2295), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2295), + }, + [STATE(609)] = { + [ts_builtin_sym_end] = ACTIONS(2224), + [sym_identifier] = ACTIONS(2222), + [aux_sym_preproc_include_token1] = ACTIONS(2222), + [aux_sym_preproc_def_token1] = ACTIONS(2222), + [aux_sym_preproc_if_token1] = ACTIONS(2222), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2222), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2222), + [sym_preproc_directive] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2224), + [anon_sym_BANG] = ACTIONS(2224), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_AMP_AMP] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym___extension__] = ACTIONS(2222), + [anon_sym_typedef] = ACTIONS(2222), + [anon_sym_virtual] = ACTIONS(2222), + [anon_sym_extern] = ACTIONS(2222), + [anon_sym___attribute__] = ACTIONS(2222), + [anon_sym___attribute] = ACTIONS(2222), + [anon_sym_COLON_COLON] = ACTIONS(2224), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2224), + [anon_sym___declspec] = ACTIONS(2222), + [anon_sym___based] = ACTIONS(2222), + [anon_sym___cdecl] = ACTIONS(2222), + [anon_sym___clrcall] = ACTIONS(2222), + [anon_sym___stdcall] = ACTIONS(2222), + [anon_sym___fastcall] = ACTIONS(2222), + [anon_sym___thiscall] = ACTIONS(2222), + [anon_sym___vectorcall] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2224), + [anon_sym_signed] = ACTIONS(2222), + [anon_sym_unsigned] = ACTIONS(2222), + [anon_sym_long] = ACTIONS(2222), + [anon_sym_short] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_register] = ACTIONS(2222), + [anon_sym_inline] = ACTIONS(2222), + [anon_sym___inline] = ACTIONS(2222), + [anon_sym___inline__] = ACTIONS(2222), + [anon_sym___forceinline] = ACTIONS(2222), + [anon_sym_thread_local] = ACTIONS(2222), + [anon_sym___thread] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_constexpr] = ACTIONS(2222), + [anon_sym_volatile] = ACTIONS(2222), + [anon_sym_restrict] = ACTIONS(2222), + [anon_sym___restrict__] = ACTIONS(2222), + [anon_sym__Atomic] = ACTIONS(2222), + [anon_sym__Noreturn] = ACTIONS(2222), + [anon_sym_noreturn] = ACTIONS(2222), + [anon_sym__Nonnull] = ACTIONS(2222), + [anon_sym_mutable] = ACTIONS(2222), + [anon_sym_constinit] = ACTIONS(2222), + [anon_sym_consteval] = ACTIONS(2222), + [anon_sym_alignas] = ACTIONS(2222), + [anon_sym__Alignas] = ACTIONS(2222), + [sym_primitive_type] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(2222), + [anon_sym_union] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2222), + [anon_sym_default] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_goto] = ACTIONS(2222), + [anon_sym_not] = ACTIONS(2222), + [anon_sym_compl] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2224), + [anon_sym_PLUS_PLUS] = ACTIONS(2224), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2222), + [anon_sym___alignof] = ACTIONS(2222), + [anon_sym__alignof] = ACTIONS(2222), + [anon_sym_alignof] = ACTIONS(2222), + [anon_sym__Alignof] = ACTIONS(2222), + [anon_sym_offsetof] = ACTIONS(2222), + [anon_sym__Generic] = ACTIONS(2222), + [anon_sym_asm] = ACTIONS(2222), + [anon_sym___asm__] = ACTIONS(2222), + [anon_sym___asm] = ACTIONS(2222), + [sym_number_literal] = ACTIONS(2224), + [anon_sym_L_SQUOTE] = ACTIONS(2224), + [anon_sym_u_SQUOTE] = ACTIONS(2224), + [anon_sym_U_SQUOTE] = ACTIONS(2224), + [anon_sym_u8_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_L_DQUOTE] = ACTIONS(2224), + [anon_sym_u_DQUOTE] = ACTIONS(2224), + [anon_sym_U_DQUOTE] = ACTIONS(2224), + [anon_sym_u8_DQUOTE] = ACTIONS(2224), + [anon_sym_DQUOTE] = ACTIONS(2224), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [anon_sym_NULL] = ACTIONS(2222), + [anon_sym_nullptr] = ACTIONS(2222), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2222), + [anon_sym_decltype] = ACTIONS(2222), + [anon_sym_explicit] = ACTIONS(2222), + [anon_sym_typename] = ACTIONS(2222), + [anon_sym_template] = ACTIONS(2222), + [anon_sym_operator] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_delete] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_namespace] = ACTIONS(2222), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_static_assert] = ACTIONS(2222), + [anon_sym_concept] = ACTIONS(2222), + [anon_sym_co_return] = ACTIONS(2222), + [anon_sym_co_yield] = ACTIONS(2222), + [anon_sym_R_DQUOTE] = ACTIONS(2224), + [anon_sym_LR_DQUOTE] = ACTIONS(2224), + [anon_sym_uR_DQUOTE] = ACTIONS(2224), + [anon_sym_UR_DQUOTE] = ACTIONS(2224), + [anon_sym_u8R_DQUOTE] = ACTIONS(2224), + [anon_sym_co_await] = ACTIONS(2222), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_requires] = ACTIONS(2222), + [sym_this] = ACTIONS(2222), + [sym_alone_macro] = ACTIONS(2224), + [aux_sym_alone_macro_call_token1] = ACTIONS(2222), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2222), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_FORWARD] = ACTIONS(2222), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2222), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2222), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2222), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2222), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_PS_GET] = ACTIONS(2222), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2222), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2222), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2222), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2222), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2222), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2222), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2222), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2222), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2222), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2222), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2222), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2222), + [anon_sym_MOZ_COLD] = ACTIONS(2222), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2222), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2222), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2222), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2222), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2222), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2222), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2222), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2222), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2222), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2222), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2222), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2222), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2222), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2222), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2222), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2222), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2222), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2222), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2222), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2222), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2222), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_NONNULL] = ACTIONS(2222), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2222), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2222), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2222), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2222), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2222), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_NORETURN] = ACTIONS(2222), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2222), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2222), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2222), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2222), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2222), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2222), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2222), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2222), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2222), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2222), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2222), + [anon_sym_MOZ_RAII] = ACTIONS(2222), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2222), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2222), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2222), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2222), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2222), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2222), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2222), + }, + [STATE(610)] = { + [sym_identifier] = ACTIONS(2404), + [aux_sym_preproc_include_token1] = ACTIONS(2404), + [aux_sym_preproc_def_token1] = ACTIONS(2404), + [aux_sym_preproc_if_token1] = ACTIONS(2404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2404), + [sym_preproc_directive] = ACTIONS(2404), + [anon_sym_LPAREN2] = ACTIONS(2406), + [anon_sym_BANG] = ACTIONS(2406), + [anon_sym_TILDE] = ACTIONS(2406), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_STAR] = ACTIONS(2406), + [anon_sym_AMP_AMP] = ACTIONS(2406), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2406), + [anon_sym___extension__] = ACTIONS(2404), + [anon_sym_typedef] = ACTIONS(2404), + [anon_sym_virtual] = ACTIONS(2404), + [anon_sym_extern] = ACTIONS(2404), + [anon_sym___attribute__] = ACTIONS(2404), + [anon_sym___attribute] = ACTIONS(2404), + [anon_sym_COLON_COLON] = ACTIONS(2406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2406), + [anon_sym___declspec] = ACTIONS(2404), + [anon_sym___based] = ACTIONS(2404), + [anon_sym___cdecl] = ACTIONS(2404), + [anon_sym___clrcall] = ACTIONS(2404), + [anon_sym___stdcall] = ACTIONS(2404), + [anon_sym___fastcall] = ACTIONS(2404), + [anon_sym___thiscall] = ACTIONS(2404), + [anon_sym___vectorcall] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2406), + [anon_sym_signed] = ACTIONS(2404), + [anon_sym_unsigned] = ACTIONS(2404), + [anon_sym_long] = ACTIONS(2404), + [anon_sym_short] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_register] = ACTIONS(2404), + [anon_sym_inline] = ACTIONS(2404), + [anon_sym___inline] = ACTIONS(2404), + [anon_sym___inline__] = ACTIONS(2404), + [anon_sym___forceinline] = ACTIONS(2404), + [anon_sym_thread_local] = ACTIONS(2404), + [anon_sym___thread] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_constexpr] = ACTIONS(2404), + [anon_sym_volatile] = ACTIONS(2404), + [anon_sym_restrict] = ACTIONS(2404), + [anon_sym___restrict__] = ACTIONS(2404), + [anon_sym__Atomic] = ACTIONS(2404), + [anon_sym__Noreturn] = ACTIONS(2404), + [anon_sym_noreturn] = ACTIONS(2404), + [anon_sym__Nonnull] = ACTIONS(2404), + [anon_sym_mutable] = ACTIONS(2404), + [anon_sym_constinit] = ACTIONS(2404), + [anon_sym_consteval] = ACTIONS(2404), + [anon_sym_alignas] = ACTIONS(2404), + [anon_sym__Alignas] = ACTIONS(2404), + [sym_primitive_type] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_struct] = ACTIONS(2404), + [anon_sym_union] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_case] = ACTIONS(2404), + [anon_sym_default] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_goto] = ACTIONS(2404), + [anon_sym___try] = ACTIONS(2404), + [anon_sym___leave] = ACTIONS(2404), + [anon_sym_not] = ACTIONS(2404), + [anon_sym_compl] = ACTIONS(2404), + [anon_sym_DASH_DASH] = ACTIONS(2406), + [anon_sym_PLUS_PLUS] = ACTIONS(2406), + [anon_sym_sizeof] = ACTIONS(2404), + [anon_sym___alignof__] = ACTIONS(2404), + [anon_sym___alignof] = ACTIONS(2404), + [anon_sym__alignof] = ACTIONS(2404), + [anon_sym_alignof] = ACTIONS(2404), + [anon_sym__Alignof] = ACTIONS(2404), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_asm] = ACTIONS(2404), + [anon_sym___asm__] = ACTIONS(2404), + [anon_sym___asm] = ACTIONS(2404), + [sym_number_literal] = ACTIONS(2406), + [anon_sym_L_SQUOTE] = ACTIONS(2406), + [anon_sym_u_SQUOTE] = ACTIONS(2406), + [anon_sym_U_SQUOTE] = ACTIONS(2406), + [anon_sym_u8_SQUOTE] = ACTIONS(2406), + [anon_sym_SQUOTE] = ACTIONS(2406), + [anon_sym_L_DQUOTE] = ACTIONS(2406), + [anon_sym_u_DQUOTE] = ACTIONS(2406), + [anon_sym_U_DQUOTE] = ACTIONS(2406), + [anon_sym_u8_DQUOTE] = ACTIONS(2406), + [anon_sym_DQUOTE] = ACTIONS(2406), + [sym_true] = ACTIONS(2404), + [sym_false] = ACTIONS(2404), + [anon_sym_NULL] = ACTIONS(2404), + [anon_sym_nullptr] = ACTIONS(2404), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2404), + [anon_sym_decltype] = ACTIONS(2404), + [anon_sym_explicit] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2404), + [anon_sym_template] = ACTIONS(2404), + [anon_sym_operator] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_delete] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_using] = ACTIONS(2404), + [anon_sym_static_assert] = ACTIONS(2404), + [anon_sym_concept] = ACTIONS(2404), + [anon_sym_co_return] = ACTIONS(2404), + [anon_sym_co_yield] = ACTIONS(2404), + [anon_sym_R_DQUOTE] = ACTIONS(2406), + [anon_sym_LR_DQUOTE] = ACTIONS(2406), + [anon_sym_uR_DQUOTE] = ACTIONS(2406), + [anon_sym_UR_DQUOTE] = ACTIONS(2406), + [anon_sym_u8R_DQUOTE] = ACTIONS(2406), + [anon_sym_co_await] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_requires] = ACTIONS(2404), + [sym_this] = ACTIONS(2404), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2404), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_FORWARD] = ACTIONS(2404), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2404), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2404), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2404), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2404), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_PS_GET] = ACTIONS(2404), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2404), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2404), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2404), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2404), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2404), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2404), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2404), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2404), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2404), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2404), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2404), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2404), + [anon_sym_MOZ_COLD] = ACTIONS(2404), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2404), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2404), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2404), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2404), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2404), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2404), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2404), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2404), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2404), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2404), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2404), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2404), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2404), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2404), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2404), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2404), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2404), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2404), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2404), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2404), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2404), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_NONNULL] = ACTIONS(2404), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2404), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2404), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2404), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2404), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2404), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_NORETURN] = ACTIONS(2404), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2404), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2404), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2404), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2404), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2404), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2404), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2404), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2404), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2404), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2404), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2404), + [anon_sym_MOZ_RAII] = ACTIONS(2404), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2404), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2404), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2404), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2404), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2404), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2404), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2404), + }, + [STATE(611)] = { + [sym_identifier] = ACTIONS(2408), + [aux_sym_preproc_include_token1] = ACTIONS(2408), + [aux_sym_preproc_def_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_LPAREN2] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_AMP_AMP] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2408), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym___extension__] = ACTIONS(2408), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_virtual] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym___attribute__] = ACTIONS(2408), + [anon_sym___attribute] = ACTIONS(2408), + [anon_sym_COLON_COLON] = ACTIONS(2410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2410), + [anon_sym___declspec] = ACTIONS(2408), + [anon_sym___based] = ACTIONS(2408), + [anon_sym___cdecl] = ACTIONS(2408), + [anon_sym___clrcall] = ACTIONS(2408), + [anon_sym___stdcall] = ACTIONS(2408), + [anon_sym___fastcall] = ACTIONS(2408), + [anon_sym___thiscall] = ACTIONS(2408), + [anon_sym___vectorcall] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_signed] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym___inline] = ACTIONS(2408), + [anon_sym___inline__] = ACTIONS(2408), + [anon_sym___forceinline] = ACTIONS(2408), + [anon_sym_thread_local] = ACTIONS(2408), + [anon_sym___thread] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_constexpr] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym___restrict__] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym__Noreturn] = ACTIONS(2408), + [anon_sym_noreturn] = ACTIONS(2408), + [anon_sym__Nonnull] = ACTIONS(2408), + [anon_sym_mutable] = ACTIONS(2408), + [anon_sym_constinit] = ACTIONS(2408), + [anon_sym_consteval] = ACTIONS(2408), + [anon_sym_alignas] = ACTIONS(2408), + [anon_sym__Alignas] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_class] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_goto] = ACTIONS(2408), + [anon_sym___try] = ACTIONS(2408), + [anon_sym___leave] = ACTIONS(2408), + [anon_sym_not] = ACTIONS(2408), + [anon_sym_compl] = ACTIONS(2408), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_sizeof] = ACTIONS(2408), + [anon_sym___alignof__] = ACTIONS(2408), + [anon_sym___alignof] = ACTIONS(2408), + [anon_sym__alignof] = ACTIONS(2408), + [anon_sym_alignof] = ACTIONS(2408), + [anon_sym__Alignof] = ACTIONS(2408), + [anon_sym_offsetof] = ACTIONS(2408), + [anon_sym__Generic] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2410), + [anon_sym_u_SQUOTE] = ACTIONS(2410), + [anon_sym_U_SQUOTE] = ACTIONS(2410), + [anon_sym_u8_SQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_L_DQUOTE] = ACTIONS(2410), + [anon_sym_u_DQUOTE] = ACTIONS(2410), + [anon_sym_U_DQUOTE] = ACTIONS(2410), + [anon_sym_u8_DQUOTE] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [sym_true] = ACTIONS(2408), + [sym_false] = ACTIONS(2408), + [anon_sym_NULL] = ACTIONS(2408), + [anon_sym_nullptr] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2408), + [anon_sym_decltype] = ACTIONS(2408), + [anon_sym_explicit] = ACTIONS(2408), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_template] = ACTIONS(2408), + [anon_sym_operator] = ACTIONS(2408), + [anon_sym_try] = ACTIONS(2408), + [anon_sym_delete] = ACTIONS(2408), + [anon_sym_throw] = ACTIONS(2408), + [anon_sym_namespace] = ACTIONS(2408), + [anon_sym_using] = ACTIONS(2408), + [anon_sym_static_assert] = ACTIONS(2408), + [anon_sym_concept] = ACTIONS(2408), + [anon_sym_co_return] = ACTIONS(2408), + [anon_sym_co_yield] = ACTIONS(2408), + [anon_sym_R_DQUOTE] = ACTIONS(2410), + [anon_sym_LR_DQUOTE] = ACTIONS(2410), + [anon_sym_uR_DQUOTE] = ACTIONS(2410), + [anon_sym_UR_DQUOTE] = ACTIONS(2410), + [anon_sym_u8R_DQUOTE] = ACTIONS(2410), + [anon_sym_co_await] = ACTIONS(2408), + [anon_sym_new] = ACTIONS(2408), + [anon_sym_requires] = ACTIONS(2408), + [sym_this] = ACTIONS(2408), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2408), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_FORWARD] = ACTIONS(2408), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2408), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2408), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2408), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2408), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_PS_GET] = ACTIONS(2408), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2408), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2408), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2408), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2408), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2408), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2408), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2408), + [anon_sym_MOZ_COLD] = ACTIONS(2408), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2408), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2408), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2408), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2408), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2408), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2408), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2408), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2408), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2408), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2408), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2408), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2408), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2408), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_NONNULL] = ACTIONS(2408), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2408), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2408), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2408), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2408), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2408), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2408), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2408), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2408), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2408), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2408), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2408), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2408), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2408), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2408), + [anon_sym_MOZ_RAII] = ACTIONS(2408), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2408), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2408), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2408), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2408), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2408), + }, + [STATE(612)] = { + [sym_identifier] = ACTIONS(2172), + [aux_sym_preproc_include_token1] = ACTIONS(2172), + [aux_sym_preproc_def_token1] = ACTIONS(2172), + [aux_sym_preproc_if_token1] = ACTIONS(2172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2172), + [sym_preproc_directive] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym___extension__] = ACTIONS(2172), + [anon_sym_typedef] = ACTIONS(2172), + [anon_sym_virtual] = ACTIONS(2172), + [anon_sym_extern] = ACTIONS(2172), + [anon_sym___attribute__] = ACTIONS(2172), + [anon_sym___attribute] = ACTIONS(2172), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2175), + [anon_sym___declspec] = ACTIONS(2172), + [anon_sym___based] = ACTIONS(2172), + [anon_sym___cdecl] = ACTIONS(2172), + [anon_sym___clrcall] = ACTIONS(2172), + [anon_sym___stdcall] = ACTIONS(2172), + [anon_sym___fastcall] = ACTIONS(2172), + [anon_sym___thiscall] = ACTIONS(2172), + [anon_sym___vectorcall] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_signed] = ACTIONS(2172), + [anon_sym_unsigned] = ACTIONS(2172), + [anon_sym_long] = ACTIONS(2172), + [anon_sym_short] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_register] = ACTIONS(2172), + [anon_sym_inline] = ACTIONS(2172), + [anon_sym___inline] = ACTIONS(2172), + [anon_sym___inline__] = ACTIONS(2172), + [anon_sym___forceinline] = ACTIONS(2172), + [anon_sym_thread_local] = ACTIONS(2172), + [anon_sym___thread] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_constexpr] = ACTIONS(2172), + [anon_sym_volatile] = ACTIONS(2172), + [anon_sym_restrict] = ACTIONS(2172), + [anon_sym___restrict__] = ACTIONS(2172), + [anon_sym__Atomic] = ACTIONS(2172), + [anon_sym__Noreturn] = ACTIONS(2172), + [anon_sym_noreturn] = ACTIONS(2172), + [anon_sym__Nonnull] = ACTIONS(2172), + [anon_sym_mutable] = ACTIONS(2172), + [anon_sym_constinit] = ACTIONS(2172), + [anon_sym_consteval] = ACTIONS(2172), + [anon_sym_alignas] = ACTIONS(2172), + [anon_sym__Alignas] = ACTIONS(2172), + [sym_primitive_type] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_struct] = ACTIONS(2172), + [anon_sym_union] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_goto] = ACTIONS(2172), + [anon_sym___try] = ACTIONS(2172), + [anon_sym___leave] = ACTIONS(2172), + [anon_sym_not] = ACTIONS(2172), + [anon_sym_compl] = ACTIONS(2172), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_sizeof] = ACTIONS(2172), + [anon_sym___alignof__] = ACTIONS(2172), + [anon_sym___alignof] = ACTIONS(2172), + [anon_sym__alignof] = ACTIONS(2172), + [anon_sym_alignof] = ACTIONS(2172), + [anon_sym__Alignof] = ACTIONS(2172), + [anon_sym_offsetof] = ACTIONS(2172), + [anon_sym__Generic] = ACTIONS(2172), + [anon_sym_asm] = ACTIONS(2172), + [anon_sym___asm__] = ACTIONS(2172), + [anon_sym___asm] = ACTIONS(2172), + [sym_number_literal] = ACTIONS(2175), + [anon_sym_L_SQUOTE] = ACTIONS(2175), + [anon_sym_u_SQUOTE] = ACTIONS(2175), + [anon_sym_U_SQUOTE] = ACTIONS(2175), + [anon_sym_u8_SQUOTE] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_L_DQUOTE] = ACTIONS(2175), + [anon_sym_u_DQUOTE] = ACTIONS(2175), + [anon_sym_U_DQUOTE] = ACTIONS(2175), + [anon_sym_u8_DQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [anon_sym_NULL] = ACTIONS(2172), + [anon_sym_nullptr] = ACTIONS(2172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2172), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_explicit] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(2172), + [anon_sym_operator] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_using] = ACTIONS(2172), + [anon_sym_static_assert] = ACTIONS(2172), + [anon_sym_concept] = ACTIONS(2172), + [anon_sym_co_return] = ACTIONS(2172), + [anon_sym_co_yield] = ACTIONS(2172), + [anon_sym_R_DQUOTE] = ACTIONS(2175), + [anon_sym_LR_DQUOTE] = ACTIONS(2175), + [anon_sym_uR_DQUOTE] = ACTIONS(2175), + [anon_sym_UR_DQUOTE] = ACTIONS(2175), + [anon_sym_u8R_DQUOTE] = ACTIONS(2175), + [anon_sym_co_await] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_requires] = ACTIONS(2172), + [sym_this] = ACTIONS(2172), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2172), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_FORWARD] = ACTIONS(2172), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2172), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2172), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2172), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2172), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_PS_GET] = ACTIONS(2172), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2172), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2172), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2172), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2172), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2172), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2172), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2172), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2172), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2172), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2172), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2172), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2172), + [anon_sym_MOZ_COLD] = ACTIONS(2172), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2172), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2172), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2172), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2172), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2172), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2172), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2172), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2172), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2172), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2172), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2172), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2172), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2172), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2172), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2172), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2172), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2172), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2172), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2172), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2172), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2172), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_NONNULL] = ACTIONS(2172), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2172), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2172), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2172), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2172), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2172), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_NORETURN] = ACTIONS(2172), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2172), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2172), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2172), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2172), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2172), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2172), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2172), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2172), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2172), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2172), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2172), + [anon_sym_MOZ_RAII] = ACTIONS(2172), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2172), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2172), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2172), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2172), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2172), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2172), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2172), + }, + [STATE(613)] = { + [sym_identifier] = ACTIONS(2416), + [aux_sym_preproc_include_token1] = ACTIONS(2416), + [aux_sym_preproc_def_token1] = ACTIONS(2416), + [aux_sym_preproc_if_token1] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2416), + [sym_preproc_directive] = ACTIONS(2416), + [anon_sym_LPAREN2] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2416), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym___extension__] = ACTIONS(2416), + [anon_sym_typedef] = ACTIONS(2416), + [anon_sym_virtual] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym___attribute__] = ACTIONS(2416), + [anon_sym___attribute] = ACTIONS(2416), + [anon_sym_COLON_COLON] = ACTIONS(2418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2418), + [anon_sym___declspec] = ACTIONS(2416), + [anon_sym___based] = ACTIONS(2416), + [anon_sym___cdecl] = ACTIONS(2416), + [anon_sym___clrcall] = ACTIONS(2416), + [anon_sym___stdcall] = ACTIONS(2416), + [anon_sym___fastcall] = ACTIONS(2416), + [anon_sym___thiscall] = ACTIONS(2416), + [anon_sym___vectorcall] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_signed] = ACTIONS(2416), + [anon_sym_unsigned] = ACTIONS(2416), + [anon_sym_long] = ACTIONS(2416), + [anon_sym_short] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_register] = ACTIONS(2416), + [anon_sym_inline] = ACTIONS(2416), + [anon_sym___inline] = ACTIONS(2416), + [anon_sym___inline__] = ACTIONS(2416), + [anon_sym___forceinline] = ACTIONS(2416), + [anon_sym_thread_local] = ACTIONS(2416), + [anon_sym___thread] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_constexpr] = ACTIONS(2416), + [anon_sym_volatile] = ACTIONS(2416), + [anon_sym_restrict] = ACTIONS(2416), + [anon_sym___restrict__] = ACTIONS(2416), + [anon_sym__Atomic] = ACTIONS(2416), + [anon_sym__Noreturn] = ACTIONS(2416), + [anon_sym_noreturn] = ACTIONS(2416), + [anon_sym__Nonnull] = ACTIONS(2416), + [anon_sym_mutable] = ACTIONS(2416), + [anon_sym_constinit] = ACTIONS(2416), + [anon_sym_consteval] = ACTIONS(2416), + [anon_sym_alignas] = ACTIONS(2416), + [anon_sym__Alignas] = ACTIONS(2416), + [sym_primitive_type] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [anon_sym_class] = ACTIONS(2416), + [anon_sym_struct] = ACTIONS(2416), + [anon_sym_union] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_switch] = ACTIONS(2416), + [anon_sym_case] = ACTIONS(2416), + [anon_sym_default] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_goto] = ACTIONS(2416), + [anon_sym___try] = ACTIONS(2416), + [anon_sym___leave] = ACTIONS(2416), + [anon_sym_not] = ACTIONS(2416), + [anon_sym_compl] = ACTIONS(2416), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_sizeof] = ACTIONS(2416), + [anon_sym___alignof__] = ACTIONS(2416), + [anon_sym___alignof] = ACTIONS(2416), + [anon_sym__alignof] = ACTIONS(2416), + [anon_sym_alignof] = ACTIONS(2416), + [anon_sym__Alignof] = ACTIONS(2416), + [anon_sym_offsetof] = ACTIONS(2416), + [anon_sym__Generic] = ACTIONS(2416), + [anon_sym_asm] = ACTIONS(2416), + [anon_sym___asm__] = ACTIONS(2416), + [anon_sym___asm] = ACTIONS(2416), + [sym_number_literal] = ACTIONS(2418), + [anon_sym_L_SQUOTE] = ACTIONS(2418), + [anon_sym_u_SQUOTE] = ACTIONS(2418), + [anon_sym_U_SQUOTE] = ACTIONS(2418), + [anon_sym_u8_SQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_L_DQUOTE] = ACTIONS(2418), + [anon_sym_u_DQUOTE] = ACTIONS(2418), + [anon_sym_U_DQUOTE] = ACTIONS(2418), + [anon_sym_u8_DQUOTE] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2416), + [anon_sym_nullptr] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2416), + [anon_sym_decltype] = ACTIONS(2416), + [anon_sym_explicit] = ACTIONS(2416), + [anon_sym_typename] = ACTIONS(2416), + [anon_sym_template] = ACTIONS(2416), + [anon_sym_operator] = ACTIONS(2416), + [anon_sym_try] = ACTIONS(2416), + [anon_sym_delete] = ACTIONS(2416), + [anon_sym_throw] = ACTIONS(2416), + [anon_sym_namespace] = ACTIONS(2416), + [anon_sym_using] = ACTIONS(2416), + [anon_sym_static_assert] = ACTIONS(2416), + [anon_sym_concept] = ACTIONS(2416), + [anon_sym_co_return] = ACTIONS(2416), + [anon_sym_co_yield] = ACTIONS(2416), + [anon_sym_R_DQUOTE] = ACTIONS(2418), + [anon_sym_LR_DQUOTE] = ACTIONS(2418), + [anon_sym_uR_DQUOTE] = ACTIONS(2418), + [anon_sym_UR_DQUOTE] = ACTIONS(2418), + [anon_sym_u8R_DQUOTE] = ACTIONS(2418), + [anon_sym_co_await] = ACTIONS(2416), + [anon_sym_new] = ACTIONS(2416), + [anon_sym_requires] = ACTIONS(2416), + [sym_this] = ACTIONS(2416), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2416), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_FORWARD] = ACTIONS(2416), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2416), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2416), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2416), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2416), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_PS_GET] = ACTIONS(2416), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2416), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2416), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2416), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2416), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2416), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2416), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2416), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2416), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2416), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2416), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2416), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2416), + [anon_sym_MOZ_COLD] = ACTIONS(2416), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2416), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2416), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2416), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2416), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2416), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2416), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2416), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2416), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2416), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2416), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2416), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2416), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2416), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2416), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2416), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2416), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2416), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2416), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2416), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2416), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2416), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_NONNULL] = ACTIONS(2416), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2416), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2416), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2416), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2416), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2416), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_NORETURN] = ACTIONS(2416), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2416), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2416), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2416), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2416), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2416), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2416), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2416), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2416), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2416), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2416), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2416), + [anon_sym_MOZ_RAII] = ACTIONS(2416), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2416), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2416), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2416), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2416), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2416), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2416), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2416), + }, + [STATE(614)] = { + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_include_token1] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2420), + [sym_preproc_directive] = ACTIONS(2420), + [anon_sym_LPAREN2] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym___extension__] = ACTIONS(2420), + [anon_sym_typedef] = ACTIONS(2420), + [anon_sym_virtual] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym___attribute__] = ACTIONS(2420), + [anon_sym___attribute] = ACTIONS(2420), + [anon_sym_COLON_COLON] = ACTIONS(2422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2422), + [anon_sym___declspec] = ACTIONS(2420), + [anon_sym___based] = ACTIONS(2420), + [anon_sym___cdecl] = ACTIONS(2420), + [anon_sym___clrcall] = ACTIONS(2420), + [anon_sym___stdcall] = ACTIONS(2420), + [anon_sym___fastcall] = ACTIONS(2420), + [anon_sym___thiscall] = ACTIONS(2420), + [anon_sym___vectorcall] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_signed] = ACTIONS(2420), + [anon_sym_unsigned] = ACTIONS(2420), + [anon_sym_long] = ACTIONS(2420), + [anon_sym_short] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_inline] = ACTIONS(2420), + [anon_sym___inline] = ACTIONS(2420), + [anon_sym___inline__] = ACTIONS(2420), + [anon_sym___forceinline] = ACTIONS(2420), + [anon_sym_thread_local] = ACTIONS(2420), + [anon_sym___thread] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_constexpr] = ACTIONS(2420), + [anon_sym_volatile] = ACTIONS(2420), + [anon_sym_restrict] = ACTIONS(2420), + [anon_sym___restrict__] = ACTIONS(2420), + [anon_sym__Atomic] = ACTIONS(2420), + [anon_sym__Noreturn] = ACTIONS(2420), + [anon_sym_noreturn] = ACTIONS(2420), + [anon_sym__Nonnull] = ACTIONS(2420), + [anon_sym_mutable] = ACTIONS(2420), + [anon_sym_constinit] = ACTIONS(2420), + [anon_sym_consteval] = ACTIONS(2420), + [anon_sym_alignas] = ACTIONS(2420), + [anon_sym__Alignas] = ACTIONS(2420), + [sym_primitive_type] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_class] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_case] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_goto] = ACTIONS(2420), + [anon_sym___try] = ACTIONS(2420), + [anon_sym___leave] = ACTIONS(2420), + [anon_sym_not] = ACTIONS(2420), + [anon_sym_compl] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_sizeof] = ACTIONS(2420), + [anon_sym___alignof__] = ACTIONS(2420), + [anon_sym___alignof] = ACTIONS(2420), + [anon_sym__alignof] = ACTIONS(2420), + [anon_sym_alignof] = ACTIONS(2420), + [anon_sym__Alignof] = ACTIONS(2420), + [anon_sym_offsetof] = ACTIONS(2420), + [anon_sym__Generic] = ACTIONS(2420), + [anon_sym_asm] = ACTIONS(2420), + [anon_sym___asm__] = ACTIONS(2420), + [anon_sym___asm] = ACTIONS(2420), + [sym_number_literal] = ACTIONS(2422), + [anon_sym_L_SQUOTE] = ACTIONS(2422), + [anon_sym_u_SQUOTE] = ACTIONS(2422), + [anon_sym_U_SQUOTE] = ACTIONS(2422), + [anon_sym_u8_SQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_L_DQUOTE] = ACTIONS(2422), + [anon_sym_u_DQUOTE] = ACTIONS(2422), + [anon_sym_U_DQUOTE] = ACTIONS(2422), + [anon_sym_u8_DQUOTE] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2420), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_explicit] = ACTIONS(2420), + [anon_sym_typename] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2420), + [anon_sym_operator] = ACTIONS(2420), + [anon_sym_try] = ACTIONS(2420), + [anon_sym_delete] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2420), + [anon_sym_using] = ACTIONS(2420), + [anon_sym_static_assert] = ACTIONS(2420), + [anon_sym_concept] = ACTIONS(2420), + [anon_sym_co_return] = ACTIONS(2420), + [anon_sym_co_yield] = ACTIONS(2420), + [anon_sym_R_DQUOTE] = ACTIONS(2422), + [anon_sym_LR_DQUOTE] = ACTIONS(2422), + [anon_sym_uR_DQUOTE] = ACTIONS(2422), + [anon_sym_UR_DQUOTE] = ACTIONS(2422), + [anon_sym_u8R_DQUOTE] = ACTIONS(2422), + [anon_sym_co_await] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_requires] = ACTIONS(2420), + [sym_this] = ACTIONS(2420), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2420), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_FORWARD] = ACTIONS(2420), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2420), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2420), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2420), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2420), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_PS_GET] = ACTIONS(2420), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2420), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2420), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2420), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2420), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2420), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2420), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2420), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2420), + [anon_sym_MOZ_COLD] = ACTIONS(2420), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2420), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2420), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2420), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2420), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2420), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2420), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2420), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2420), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2420), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2420), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2420), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2420), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2420), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_NONNULL] = ACTIONS(2420), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2420), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2420), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2420), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2420), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2420), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2420), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2420), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2420), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2420), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2420), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2420), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2420), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2420), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2420), + [anon_sym_MOZ_RAII] = ACTIONS(2420), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2420), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2420), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2420), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2420), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2420), + }, + [STATE(615)] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_virtual] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_COLON_COLON] = ACTIONS(2426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___based] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_mutable] = ACTIONS(2424), + [anon_sym_constinit] = ACTIONS(2424), + [anon_sym_consteval] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym___try] = ACTIONS(2424), + [anon_sym___leave] = ACTIONS(2424), + [anon_sym_not] = ACTIONS(2424), + [anon_sym_compl] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2424), + [anon_sym_decltype] = ACTIONS(2424), + [anon_sym_explicit] = ACTIONS(2424), + [anon_sym_typename] = ACTIONS(2424), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_operator] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_throw] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2424), + [anon_sym_using] = ACTIONS(2424), + [anon_sym_static_assert] = ACTIONS(2424), + [anon_sym_concept] = ACTIONS(2424), + [anon_sym_co_return] = ACTIONS(2424), + [anon_sym_co_yield] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_requires] = ACTIONS(2424), + [sym_this] = ACTIONS(2424), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_FORWARD] = ACTIONS(2424), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_PS_GET] = ACTIONS(2424), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2424), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2424), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2424), + [anon_sym_MOZ_COLD] = ACTIONS(2424), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2424), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2424), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2424), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2424), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2424), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2424), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2424), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2424), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2424), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2424), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2424), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2424), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_RAII] = ACTIONS(2424), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2424), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2424), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2424), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2424), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2424), + }, + [STATE(616)] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_virtual] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_COLON_COLON] = ACTIONS(2426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___based] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_mutable] = ACTIONS(2424), + [anon_sym_constinit] = ACTIONS(2424), + [anon_sym_consteval] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym___try] = ACTIONS(2424), + [anon_sym___leave] = ACTIONS(2424), + [anon_sym_not] = ACTIONS(2424), + [anon_sym_compl] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [anon_sym___alignof__] = ACTIONS(2424), + [anon_sym___alignof] = ACTIONS(2424), + [anon_sym__alignof] = ACTIONS(2424), + [anon_sym_alignof] = ACTIONS(2424), + [anon_sym__Alignof] = ACTIONS(2424), + [anon_sym_offsetof] = ACTIONS(2424), + [anon_sym__Generic] = ACTIONS(2424), + [anon_sym_asm] = ACTIONS(2424), + [anon_sym___asm__] = ACTIONS(2424), + [anon_sym___asm] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_nullptr] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2424), + [anon_sym_decltype] = ACTIONS(2424), + [anon_sym_explicit] = ACTIONS(2424), + [anon_sym_typename] = ACTIONS(2424), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_operator] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_throw] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2424), + [anon_sym_using] = ACTIONS(2424), + [anon_sym_static_assert] = ACTIONS(2424), + [anon_sym_concept] = ACTIONS(2424), + [anon_sym_co_return] = ACTIONS(2424), + [anon_sym_co_yield] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_requires] = ACTIONS(2424), + [sym_this] = ACTIONS(2424), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_FORWARD] = ACTIONS(2424), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2424), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_PS_GET] = ACTIONS(2424), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2424), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2424), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2424), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2424), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2424), + [anon_sym_MOZ_COLD] = ACTIONS(2424), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2424), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2424), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2424), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2424), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2424), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2424), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2424), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2424), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2424), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2424), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2424), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2424), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_RAII] = ACTIONS(2424), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2424), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2424), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2424), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2424), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2424), + }, + [STATE(617)] = { + [sym_identifier] = ACTIONS(2313), + [aux_sym_preproc_include_token1] = ACTIONS(2313), + [aux_sym_preproc_def_token1] = ACTIONS(2313), + [aux_sym_preproc_if_token1] = ACTIONS(2313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2313), + [sym_preproc_directive] = ACTIONS(2313), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(2315), + [anon_sym_AMP_AMP] = ACTIONS(2315), + [anon_sym_AMP] = ACTIONS(2313), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym___extension__] = ACTIONS(2313), + [anon_sym_typedef] = ACTIONS(2313), + [anon_sym_virtual] = ACTIONS(2313), + [anon_sym_extern] = ACTIONS(2313), + [anon_sym___attribute__] = ACTIONS(2313), + [anon_sym___attribute] = ACTIONS(2313), + [anon_sym_COLON_COLON] = ACTIONS(2315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2315), + [anon_sym___declspec] = ACTIONS(2313), + [anon_sym___based] = ACTIONS(2313), + [anon_sym___cdecl] = ACTIONS(2313), + [anon_sym___clrcall] = ACTIONS(2313), + [anon_sym___stdcall] = ACTIONS(2313), + [anon_sym___fastcall] = ACTIONS(2313), + [anon_sym___thiscall] = ACTIONS(2313), + [anon_sym___vectorcall] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_signed] = ACTIONS(2313), + [anon_sym_unsigned] = ACTIONS(2313), + [anon_sym_long] = ACTIONS(2313), + [anon_sym_short] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_static] = ACTIONS(2313), + [anon_sym_register] = ACTIONS(2313), + [anon_sym_inline] = ACTIONS(2313), + [anon_sym___inline] = ACTIONS(2313), + [anon_sym___inline__] = ACTIONS(2313), + [anon_sym___forceinline] = ACTIONS(2313), + [anon_sym_thread_local] = ACTIONS(2313), + [anon_sym___thread] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_constexpr] = ACTIONS(2313), + [anon_sym_volatile] = ACTIONS(2313), + [anon_sym_restrict] = ACTIONS(2313), + [anon_sym___restrict__] = ACTIONS(2313), + [anon_sym__Atomic] = ACTIONS(2313), + [anon_sym__Noreturn] = ACTIONS(2313), + [anon_sym_noreturn] = ACTIONS(2313), + [anon_sym__Nonnull] = ACTIONS(2313), + [anon_sym_mutable] = ACTIONS(2313), + [anon_sym_constinit] = ACTIONS(2313), + [anon_sym_consteval] = ACTIONS(2313), + [anon_sym_alignas] = ACTIONS(2313), + [anon_sym__Alignas] = ACTIONS(2313), + [sym_primitive_type] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), + [anon_sym_class] = ACTIONS(2313), + [anon_sym_struct] = ACTIONS(2313), + [anon_sym_union] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_switch] = ACTIONS(2313), + [anon_sym_case] = ACTIONS(2313), + [anon_sym_default] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_do] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_goto] = ACTIONS(2313), + [anon_sym___try] = ACTIONS(2313), + [anon_sym___leave] = ACTIONS(2313), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2315), + [anon_sym_PLUS_PLUS] = ACTIONS(2315), + [anon_sym_sizeof] = ACTIONS(2313), + [anon_sym___alignof__] = ACTIONS(2313), + [anon_sym___alignof] = ACTIONS(2313), + [anon_sym__alignof] = ACTIONS(2313), + [anon_sym_alignof] = ACTIONS(2313), + [anon_sym__Alignof] = ACTIONS(2313), + [anon_sym_offsetof] = ACTIONS(2313), + [anon_sym__Generic] = ACTIONS(2313), + [anon_sym_asm] = ACTIONS(2313), + [anon_sym___asm__] = ACTIONS(2313), + [anon_sym___asm] = ACTIONS(2313), + [sym_number_literal] = ACTIONS(2315), + [anon_sym_L_SQUOTE] = ACTIONS(2315), + [anon_sym_u_SQUOTE] = ACTIONS(2315), + [anon_sym_U_SQUOTE] = ACTIONS(2315), + [anon_sym_u8_SQUOTE] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_L_DQUOTE] = ACTIONS(2315), + [anon_sym_u_DQUOTE] = ACTIONS(2315), + [anon_sym_U_DQUOTE] = ACTIONS(2315), + [anon_sym_u8_DQUOTE] = ACTIONS(2315), + [anon_sym_DQUOTE] = ACTIONS(2315), + [sym_true] = ACTIONS(2313), + [sym_false] = ACTIONS(2313), + [anon_sym_NULL] = ACTIONS(2313), + [anon_sym_nullptr] = ACTIONS(2313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2313), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_explicit] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(2313), + [anon_sym_operator] = ACTIONS(2313), + [anon_sym_try] = ACTIONS(2313), + [anon_sym_delete] = ACTIONS(2313), + [anon_sym_throw] = ACTIONS(2313), + [anon_sym_namespace] = ACTIONS(2313), + [anon_sym_using] = ACTIONS(2313), + [anon_sym_static_assert] = ACTIONS(2313), + [anon_sym_concept] = ACTIONS(2313), + [anon_sym_co_return] = ACTIONS(2313), + [anon_sym_co_yield] = ACTIONS(2313), + [anon_sym_R_DQUOTE] = ACTIONS(2315), + [anon_sym_LR_DQUOTE] = ACTIONS(2315), + [anon_sym_uR_DQUOTE] = ACTIONS(2315), + [anon_sym_UR_DQUOTE] = ACTIONS(2315), + [anon_sym_u8R_DQUOTE] = ACTIONS(2315), + [anon_sym_co_await] = ACTIONS(2313), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_requires] = ACTIONS(2313), + [sym_this] = ACTIONS(2313), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2313), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_FORWARD] = ACTIONS(2313), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2313), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2313), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2313), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2313), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_PS_GET] = ACTIONS(2313), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2313), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2313), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2313), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2313), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2313), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2313), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2313), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2313), + [anon_sym_MOZ_COLD] = ACTIONS(2313), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2313), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2313), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2313), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2313), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2313), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2313), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2313), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2313), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2313), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2313), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2313), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2313), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2313), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_NONNULL] = ACTIONS(2313), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2313), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2313), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2313), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2313), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2313), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2313), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2313), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2313), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2313), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2313), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2313), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2313), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2313), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2313), + [anon_sym_MOZ_RAII] = ACTIONS(2313), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2313), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2313), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2313), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2313), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2313), + }, + [STATE(618)] = { + [ts_builtin_sym_end] = ACTIONS(2379), + [sym_identifier] = ACTIONS(2377), + [aux_sym_preproc_include_token1] = ACTIONS(2377), + [aux_sym_preproc_def_token1] = ACTIONS(2377), + [aux_sym_preproc_if_token1] = ACTIONS(2377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2377), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2377), + [sym_preproc_directive] = ACTIONS(2377), + [anon_sym_LPAREN2] = ACTIONS(2379), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2377), + [anon_sym_STAR] = ACTIONS(2379), + [anon_sym_AMP_AMP] = ACTIONS(2379), + [anon_sym_AMP] = ACTIONS(2377), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym___extension__] = ACTIONS(2377), + [anon_sym_typedef] = ACTIONS(2377), + [anon_sym_virtual] = ACTIONS(2377), + [anon_sym_extern] = ACTIONS(2377), + [anon_sym___attribute__] = ACTIONS(2377), + [anon_sym___attribute] = ACTIONS(2377), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2379), + [anon_sym___declspec] = ACTIONS(2377), + [anon_sym___based] = ACTIONS(2377), + [anon_sym___cdecl] = ACTIONS(2377), + [anon_sym___clrcall] = ACTIONS(2377), + [anon_sym___stdcall] = ACTIONS(2377), + [anon_sym___fastcall] = ACTIONS(2377), + [anon_sym___thiscall] = ACTIONS(2377), + [anon_sym___vectorcall] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_signed] = ACTIONS(2377), + [anon_sym_unsigned] = ACTIONS(2377), + [anon_sym_long] = ACTIONS(2377), + [anon_sym_short] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_static] = ACTIONS(2377), + [anon_sym_register] = ACTIONS(2377), + [anon_sym_inline] = ACTIONS(2377), + [anon_sym___inline] = ACTIONS(2377), + [anon_sym___inline__] = ACTIONS(2377), + [anon_sym___forceinline] = ACTIONS(2377), + [anon_sym_thread_local] = ACTIONS(2377), + [anon_sym___thread] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [anon_sym_constexpr] = ACTIONS(2377), + [anon_sym_volatile] = ACTIONS(2377), + [anon_sym_restrict] = ACTIONS(2377), + [anon_sym___restrict__] = ACTIONS(2377), + [anon_sym__Atomic] = ACTIONS(2377), + [anon_sym__Noreturn] = ACTIONS(2377), + [anon_sym_noreturn] = ACTIONS(2377), + [anon_sym__Nonnull] = ACTIONS(2377), + [anon_sym_mutable] = ACTIONS(2377), + [anon_sym_constinit] = ACTIONS(2377), + [anon_sym_consteval] = ACTIONS(2377), + [anon_sym_alignas] = ACTIONS(2377), + [anon_sym__Alignas] = ACTIONS(2377), + [sym_primitive_type] = ACTIONS(2377), + [anon_sym_enum] = ACTIONS(2377), + [anon_sym_class] = ACTIONS(2377), + [anon_sym_struct] = ACTIONS(2377), + [anon_sym_union] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_switch] = ACTIONS(2377), + [anon_sym_case] = ACTIONS(2377), + [anon_sym_default] = ACTIONS(2377), + [anon_sym_while] = ACTIONS(2377), + [anon_sym_do] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_goto] = ACTIONS(2377), + [anon_sym_not] = ACTIONS(2377), + [anon_sym_compl] = ACTIONS(2377), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_sizeof] = ACTIONS(2377), + [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(2377), + [anon_sym__Generic] = ACTIONS(2377), + [anon_sym_asm] = ACTIONS(2377), + [anon_sym___asm__] = ACTIONS(2377), + [anon_sym___asm] = ACTIONS(2377), + [sym_number_literal] = ACTIONS(2379), + [anon_sym_L_SQUOTE] = ACTIONS(2379), + [anon_sym_u_SQUOTE] = ACTIONS(2379), + [anon_sym_U_SQUOTE] = ACTIONS(2379), + [anon_sym_u8_SQUOTE] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_L_DQUOTE] = ACTIONS(2379), + [anon_sym_u_DQUOTE] = ACTIONS(2379), + [anon_sym_U_DQUOTE] = ACTIONS(2379), + [anon_sym_u8_DQUOTE] = ACTIONS(2379), + [anon_sym_DQUOTE] = ACTIONS(2379), + [sym_true] = ACTIONS(2377), + [sym_false] = ACTIONS(2377), + [anon_sym_NULL] = ACTIONS(2377), + [anon_sym_nullptr] = ACTIONS(2377), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2377), + [anon_sym_decltype] = ACTIONS(2377), + [anon_sym_explicit] = ACTIONS(2377), + [anon_sym_typename] = ACTIONS(2377), + [anon_sym_template] = ACTIONS(2377), + [anon_sym_operator] = ACTIONS(2377), + [anon_sym_try] = ACTIONS(2377), + [anon_sym_delete] = ACTIONS(2377), + [anon_sym_throw] = ACTIONS(2377), + [anon_sym_namespace] = ACTIONS(2377), + [anon_sym_using] = ACTIONS(2377), + [anon_sym_static_assert] = ACTIONS(2377), + [anon_sym_concept] = ACTIONS(2377), + [anon_sym_co_return] = ACTIONS(2377), + [anon_sym_co_yield] = ACTIONS(2377), + [anon_sym_R_DQUOTE] = ACTIONS(2379), + [anon_sym_LR_DQUOTE] = ACTIONS(2379), + [anon_sym_uR_DQUOTE] = ACTIONS(2379), + [anon_sym_UR_DQUOTE] = ACTIONS(2379), + [anon_sym_u8R_DQUOTE] = ACTIONS(2379), + [anon_sym_co_await] = ACTIONS(2377), + [anon_sym_new] = ACTIONS(2377), + [anon_sym_requires] = ACTIONS(2377), + [sym_this] = ACTIONS(2377), + [sym_alone_macro] = ACTIONS(2379), + [aux_sym_alone_macro_call_token1] = ACTIONS(2377), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2377), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_FORWARD] = ACTIONS(2377), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2377), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2377), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2377), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2377), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_PS_GET] = ACTIONS(2377), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2377), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2377), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2377), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2377), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2377), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2377), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2377), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2377), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2377), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2377), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2377), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2377), + [anon_sym_MOZ_COLD] = ACTIONS(2377), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2377), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2377), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2377), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2377), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2377), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2377), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2377), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2377), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2377), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2377), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2377), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2377), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2377), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2377), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2377), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2377), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2377), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2377), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2377), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2377), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2377), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_NONNULL] = ACTIONS(2377), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2377), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2377), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2377), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2377), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2377), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_NORETURN] = ACTIONS(2377), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2377), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2377), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2377), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2377), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2377), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2377), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2377), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2377), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2377), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2377), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2377), + [anon_sym_MOZ_RAII] = ACTIONS(2377), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2377), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2377), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2377), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2377), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2377), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2377), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2377), + }, + [STATE(619)] = { + [ts_builtin_sym_end] = ACTIONS(2434), + [sym_identifier] = ACTIONS(2432), + [aux_sym_preproc_include_token1] = ACTIONS(2432), + [aux_sym_preproc_def_token1] = ACTIONS(2432), + [aux_sym_preproc_if_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2432), + [sym_preproc_directive] = ACTIONS(2432), + [anon_sym_LPAREN2] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_AMP_AMP] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2432), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym___extension__] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_virtual] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym___attribute__] = ACTIONS(2432), + [anon_sym___attribute] = ACTIONS(2432), + [anon_sym_COLON_COLON] = ACTIONS(2434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2434), + [anon_sym___declspec] = ACTIONS(2432), + [anon_sym___based] = ACTIONS(2432), + [anon_sym___cdecl] = ACTIONS(2432), + [anon_sym___clrcall] = ACTIONS(2432), + [anon_sym___stdcall] = ACTIONS(2432), + [anon_sym___fastcall] = ACTIONS(2432), + [anon_sym___thiscall] = ACTIONS(2432), + [anon_sym___vectorcall] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_signed] = ACTIONS(2432), + [anon_sym_unsigned] = ACTIONS(2432), + [anon_sym_long] = ACTIONS(2432), + [anon_sym_short] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym___inline] = ACTIONS(2432), + [anon_sym___inline__] = ACTIONS(2432), + [anon_sym___forceinline] = ACTIONS(2432), + [anon_sym_thread_local] = ACTIONS(2432), + [anon_sym___thread] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_constexpr] = ACTIONS(2432), + [anon_sym_volatile] = ACTIONS(2432), + [anon_sym_restrict] = ACTIONS(2432), + [anon_sym___restrict__] = ACTIONS(2432), + [anon_sym__Atomic] = ACTIONS(2432), + [anon_sym__Noreturn] = ACTIONS(2432), + [anon_sym_noreturn] = ACTIONS(2432), + [anon_sym__Nonnull] = ACTIONS(2432), + [anon_sym_mutable] = ACTIONS(2432), + [anon_sym_constinit] = ACTIONS(2432), + [anon_sym_consteval] = ACTIONS(2432), + [anon_sym_alignas] = ACTIONS(2432), + [anon_sym__Alignas] = ACTIONS(2432), + [sym_primitive_type] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_class] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_goto] = ACTIONS(2432), + [anon_sym_not] = ACTIONS(2432), + [anon_sym_compl] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_sizeof] = ACTIONS(2432), + [anon_sym___alignof__] = ACTIONS(2432), + [anon_sym___alignof] = ACTIONS(2432), + [anon_sym__alignof] = ACTIONS(2432), + [anon_sym_alignof] = ACTIONS(2432), + [anon_sym__Alignof] = ACTIONS(2432), + [anon_sym_offsetof] = ACTIONS(2432), + [anon_sym__Generic] = ACTIONS(2432), + [anon_sym_asm] = ACTIONS(2432), + [anon_sym___asm__] = ACTIONS(2432), + [anon_sym___asm] = ACTIONS(2432), + [sym_number_literal] = ACTIONS(2434), + [anon_sym_L_SQUOTE] = ACTIONS(2434), + [anon_sym_u_SQUOTE] = ACTIONS(2434), + [anon_sym_U_SQUOTE] = ACTIONS(2434), + [anon_sym_u8_SQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_L_DQUOTE] = ACTIONS(2434), + [anon_sym_u_DQUOTE] = ACTIONS(2434), + [anon_sym_U_DQUOTE] = ACTIONS(2434), + [anon_sym_u8_DQUOTE] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2434), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [anon_sym_NULL] = ACTIONS(2432), + [anon_sym_nullptr] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2432), + [anon_sym_decltype] = ACTIONS(2432), + [anon_sym_explicit] = ACTIONS(2432), + [anon_sym_typename] = ACTIONS(2432), + [anon_sym_template] = ACTIONS(2432), + [anon_sym_operator] = ACTIONS(2432), + [anon_sym_try] = ACTIONS(2432), + [anon_sym_delete] = ACTIONS(2432), + [anon_sym_throw] = ACTIONS(2432), + [anon_sym_namespace] = ACTIONS(2432), + [anon_sym_using] = ACTIONS(2432), + [anon_sym_static_assert] = ACTIONS(2432), + [anon_sym_concept] = ACTIONS(2432), + [anon_sym_co_return] = ACTIONS(2432), + [anon_sym_co_yield] = ACTIONS(2432), + [anon_sym_R_DQUOTE] = ACTIONS(2434), + [anon_sym_LR_DQUOTE] = ACTIONS(2434), + [anon_sym_uR_DQUOTE] = ACTIONS(2434), + [anon_sym_UR_DQUOTE] = ACTIONS(2434), + [anon_sym_u8R_DQUOTE] = ACTIONS(2434), + [anon_sym_co_await] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2432), + [sym_this] = ACTIONS(2432), + [sym_alone_macro] = ACTIONS(2434), + [aux_sym_alone_macro_call_token1] = ACTIONS(2432), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2432), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_FORWARD] = ACTIONS(2432), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2432), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2432), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2432), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2432), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_PS_GET] = ACTIONS(2432), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2432), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2432), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2432), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2432), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2432), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2432), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2432), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2432), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2432), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2432), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2432), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2432), + [anon_sym_MOZ_COLD] = ACTIONS(2432), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2432), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2432), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2432), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2432), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2432), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2432), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2432), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2432), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2432), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2432), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2432), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2432), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2432), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2432), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2432), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2432), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2432), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2432), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2432), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2432), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2432), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_NONNULL] = ACTIONS(2432), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2432), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2432), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2432), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2432), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2432), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_NORETURN] = ACTIONS(2432), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2432), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2432), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2432), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2432), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2432), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2432), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2432), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2432), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2432), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2432), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2432), + [anon_sym_MOZ_RAII] = ACTIONS(2432), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2432), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2432), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2432), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2432), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2432), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2432), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2432), + }, + [STATE(620)] = { + [sym_identifier] = ACTIONS(2440), + [aux_sym_preproc_include_token1] = ACTIONS(2440), + [aux_sym_preproc_def_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2440), + [sym_preproc_directive] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_typedef] = ACTIONS(2440), + [anon_sym_virtual] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym___attribute__] = ACTIONS(2440), + [anon_sym___attribute] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(2442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2442), + [anon_sym___declspec] = ACTIONS(2440), + [anon_sym___based] = ACTIONS(2440), + [anon_sym___cdecl] = ACTIONS(2440), + [anon_sym___clrcall] = ACTIONS(2440), + [anon_sym___stdcall] = ACTIONS(2440), + [anon_sym___fastcall] = ACTIONS(2440), + [anon_sym___thiscall] = ACTIONS(2440), + [anon_sym___vectorcall] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2442), + [anon_sym_signed] = ACTIONS(2440), + [anon_sym_unsigned] = ACTIONS(2440), + [anon_sym_long] = ACTIONS(2440), + [anon_sym_short] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_register] = ACTIONS(2440), + [anon_sym_inline] = ACTIONS(2440), + [anon_sym___inline] = ACTIONS(2440), + [anon_sym___inline__] = ACTIONS(2440), + [anon_sym___forceinline] = ACTIONS(2440), + [anon_sym_thread_local] = ACTIONS(2440), + [anon_sym___thread] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_constexpr] = ACTIONS(2440), + [anon_sym_volatile] = ACTIONS(2440), + [anon_sym_restrict] = ACTIONS(2440), + [anon_sym___restrict__] = ACTIONS(2440), + [anon_sym__Atomic] = ACTIONS(2440), + [anon_sym__Noreturn] = ACTIONS(2440), + [anon_sym_noreturn] = ACTIONS(2440), + [anon_sym__Nonnull] = ACTIONS(2440), + [anon_sym_mutable] = ACTIONS(2440), + [anon_sym_constinit] = ACTIONS(2440), + [anon_sym_consteval] = ACTIONS(2440), + [anon_sym_alignas] = ACTIONS(2440), + [anon_sym__Alignas] = ACTIONS(2440), + [sym_primitive_type] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_struct] = ACTIONS(2440), + [anon_sym_union] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_case] = ACTIONS(2440), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_goto] = ACTIONS(2440), + [anon_sym___try] = ACTIONS(2440), + [anon_sym___leave] = ACTIONS(2440), + [anon_sym_not] = ACTIONS(2440), + [anon_sym_compl] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2442), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_sizeof] = ACTIONS(2440), + [anon_sym___alignof__] = ACTIONS(2440), + [anon_sym___alignof] = ACTIONS(2440), + [anon_sym__alignof] = ACTIONS(2440), + [anon_sym_alignof] = ACTIONS(2440), + [anon_sym__Alignof] = ACTIONS(2440), + [anon_sym_offsetof] = ACTIONS(2440), + [anon_sym__Generic] = ACTIONS(2440), + [anon_sym_asm] = ACTIONS(2440), + [anon_sym___asm__] = ACTIONS(2440), + [anon_sym___asm] = ACTIONS(2440), + [sym_number_literal] = ACTIONS(2442), + [anon_sym_L_SQUOTE] = ACTIONS(2442), + [anon_sym_u_SQUOTE] = ACTIONS(2442), + [anon_sym_U_SQUOTE] = ACTIONS(2442), + [anon_sym_u8_SQUOTE] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2442), + [anon_sym_L_DQUOTE] = ACTIONS(2442), + [anon_sym_u_DQUOTE] = ACTIONS(2442), + [anon_sym_U_DQUOTE] = ACTIONS(2442), + [anon_sym_u8_DQUOTE] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2442), + [sym_true] = ACTIONS(2440), + [sym_false] = ACTIONS(2440), + [anon_sym_NULL] = ACTIONS(2440), + [anon_sym_nullptr] = ACTIONS(2440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2440), + [anon_sym_decltype] = ACTIONS(2440), + [anon_sym_explicit] = ACTIONS(2440), + [anon_sym_typename] = ACTIONS(2440), + [anon_sym_template] = ACTIONS(2440), + [anon_sym_operator] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_delete] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_static_assert] = ACTIONS(2440), + [anon_sym_concept] = ACTIONS(2440), + [anon_sym_co_return] = ACTIONS(2440), + [anon_sym_co_yield] = ACTIONS(2440), + [anon_sym_R_DQUOTE] = ACTIONS(2442), + [anon_sym_LR_DQUOTE] = ACTIONS(2442), + [anon_sym_uR_DQUOTE] = ACTIONS(2442), + [anon_sym_UR_DQUOTE] = ACTIONS(2442), + [anon_sym_u8R_DQUOTE] = ACTIONS(2442), + [anon_sym_co_await] = ACTIONS(2440), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_requires] = ACTIONS(2440), + [sym_this] = ACTIONS(2440), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_FORWARD] = ACTIONS(2440), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2440), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_PS_GET] = ACTIONS(2440), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2440), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2440), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2440), + [anon_sym_MOZ_COLD] = ACTIONS(2440), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2440), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2440), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2440), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2440), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2440), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2440), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2440), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2440), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2440), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2440), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2440), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2440), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_RAII] = ACTIONS(2440), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2440), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2440), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2440), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2440), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2440), + }, + [STATE(621)] = { + [sym_identifier] = ACTIONS(2440), + [aux_sym_preproc_include_token1] = ACTIONS(2440), + [aux_sym_preproc_def_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2440), + [sym_preproc_directive] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_typedef] = ACTIONS(2440), + [anon_sym_virtual] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym___attribute__] = ACTIONS(2440), + [anon_sym___attribute] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(2442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2442), + [anon_sym___declspec] = ACTIONS(2440), + [anon_sym___based] = ACTIONS(2440), + [anon_sym___cdecl] = ACTIONS(2440), + [anon_sym___clrcall] = ACTIONS(2440), + [anon_sym___stdcall] = ACTIONS(2440), + [anon_sym___fastcall] = ACTIONS(2440), + [anon_sym___thiscall] = ACTIONS(2440), + [anon_sym___vectorcall] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2442), + [anon_sym_signed] = ACTIONS(2440), + [anon_sym_unsigned] = ACTIONS(2440), + [anon_sym_long] = ACTIONS(2440), + [anon_sym_short] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_register] = ACTIONS(2440), + [anon_sym_inline] = ACTIONS(2440), + [anon_sym___inline] = ACTIONS(2440), + [anon_sym___inline__] = ACTIONS(2440), + [anon_sym___forceinline] = ACTIONS(2440), + [anon_sym_thread_local] = ACTIONS(2440), + [anon_sym___thread] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_constexpr] = ACTIONS(2440), + [anon_sym_volatile] = ACTIONS(2440), + [anon_sym_restrict] = ACTIONS(2440), + [anon_sym___restrict__] = ACTIONS(2440), + [anon_sym__Atomic] = ACTIONS(2440), + [anon_sym__Noreturn] = ACTIONS(2440), + [anon_sym_noreturn] = ACTIONS(2440), + [anon_sym__Nonnull] = ACTIONS(2440), + [anon_sym_mutable] = ACTIONS(2440), + [anon_sym_constinit] = ACTIONS(2440), + [anon_sym_consteval] = ACTIONS(2440), + [anon_sym_alignas] = ACTIONS(2440), + [anon_sym__Alignas] = ACTIONS(2440), + [sym_primitive_type] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_struct] = ACTIONS(2440), + [anon_sym_union] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_case] = ACTIONS(2440), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_goto] = ACTIONS(2440), + [anon_sym___try] = ACTIONS(2440), + [anon_sym___leave] = ACTIONS(2440), + [anon_sym_not] = ACTIONS(2440), + [anon_sym_compl] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2442), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_sizeof] = ACTIONS(2440), + [anon_sym___alignof__] = ACTIONS(2440), + [anon_sym___alignof] = ACTIONS(2440), + [anon_sym__alignof] = ACTIONS(2440), + [anon_sym_alignof] = ACTIONS(2440), + [anon_sym__Alignof] = ACTIONS(2440), + [anon_sym_offsetof] = ACTIONS(2440), + [anon_sym__Generic] = ACTIONS(2440), + [anon_sym_asm] = ACTIONS(2440), + [anon_sym___asm__] = ACTIONS(2440), + [anon_sym___asm] = ACTIONS(2440), + [sym_number_literal] = ACTIONS(2442), + [anon_sym_L_SQUOTE] = ACTIONS(2442), + [anon_sym_u_SQUOTE] = ACTIONS(2442), + [anon_sym_U_SQUOTE] = ACTIONS(2442), + [anon_sym_u8_SQUOTE] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2442), + [anon_sym_L_DQUOTE] = ACTIONS(2442), + [anon_sym_u_DQUOTE] = ACTIONS(2442), + [anon_sym_U_DQUOTE] = ACTIONS(2442), + [anon_sym_u8_DQUOTE] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2442), + [sym_true] = ACTIONS(2440), + [sym_false] = ACTIONS(2440), + [anon_sym_NULL] = ACTIONS(2440), + [anon_sym_nullptr] = ACTIONS(2440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2440), + [anon_sym_decltype] = ACTIONS(2440), + [anon_sym_explicit] = ACTIONS(2440), + [anon_sym_typename] = ACTIONS(2440), + [anon_sym_template] = ACTIONS(2440), + [anon_sym_operator] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_delete] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_static_assert] = ACTIONS(2440), + [anon_sym_concept] = ACTIONS(2440), + [anon_sym_co_return] = ACTIONS(2440), + [anon_sym_co_yield] = ACTIONS(2440), + [anon_sym_R_DQUOTE] = ACTIONS(2442), + [anon_sym_LR_DQUOTE] = ACTIONS(2442), + [anon_sym_uR_DQUOTE] = ACTIONS(2442), + [anon_sym_UR_DQUOTE] = ACTIONS(2442), + [anon_sym_u8R_DQUOTE] = ACTIONS(2442), + [anon_sym_co_await] = ACTIONS(2440), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_requires] = ACTIONS(2440), + [sym_this] = ACTIONS(2440), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_FORWARD] = ACTIONS(2440), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2440), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_PS_GET] = ACTIONS(2440), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2440), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2440), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2440), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2440), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2440), + [anon_sym_MOZ_COLD] = ACTIONS(2440), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2440), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2440), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2440), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2440), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2440), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2440), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2440), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2440), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2440), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2440), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2440), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2440), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_RAII] = ACTIONS(2440), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2440), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2440), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2440), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2440), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2440), + }, + [STATE(622)] = { + [ts_builtin_sym_end] = ACTIONS(2410), + [sym_identifier] = ACTIONS(2408), + [aux_sym_preproc_include_token1] = ACTIONS(2408), + [aux_sym_preproc_def_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_LPAREN2] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_AMP_AMP] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2408), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym___extension__] = ACTIONS(2408), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_virtual] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym___attribute__] = ACTIONS(2408), + [anon_sym___attribute] = ACTIONS(2408), + [anon_sym_COLON_COLON] = ACTIONS(2410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2410), + [anon_sym___declspec] = ACTIONS(2408), + [anon_sym___based] = ACTIONS(2408), + [anon_sym___cdecl] = ACTIONS(2408), + [anon_sym___clrcall] = ACTIONS(2408), + [anon_sym___stdcall] = ACTIONS(2408), + [anon_sym___fastcall] = ACTIONS(2408), + [anon_sym___thiscall] = ACTIONS(2408), + [anon_sym___vectorcall] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_signed] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym___inline] = ACTIONS(2408), + [anon_sym___inline__] = ACTIONS(2408), + [anon_sym___forceinline] = ACTIONS(2408), + [anon_sym_thread_local] = ACTIONS(2408), + [anon_sym___thread] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_constexpr] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym___restrict__] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym__Noreturn] = ACTIONS(2408), + [anon_sym_noreturn] = ACTIONS(2408), + [anon_sym__Nonnull] = ACTIONS(2408), + [anon_sym_mutable] = ACTIONS(2408), + [anon_sym_constinit] = ACTIONS(2408), + [anon_sym_consteval] = ACTIONS(2408), + [anon_sym_alignas] = ACTIONS(2408), + [anon_sym__Alignas] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_class] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_goto] = ACTIONS(2408), + [anon_sym_not] = ACTIONS(2408), + [anon_sym_compl] = ACTIONS(2408), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_sizeof] = ACTIONS(2408), + [anon_sym___alignof__] = ACTIONS(2408), + [anon_sym___alignof] = ACTIONS(2408), + [anon_sym__alignof] = ACTIONS(2408), + [anon_sym_alignof] = ACTIONS(2408), + [anon_sym__Alignof] = ACTIONS(2408), + [anon_sym_offsetof] = ACTIONS(2408), + [anon_sym__Generic] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2410), + [anon_sym_u_SQUOTE] = ACTIONS(2410), + [anon_sym_U_SQUOTE] = ACTIONS(2410), + [anon_sym_u8_SQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_L_DQUOTE] = ACTIONS(2410), + [anon_sym_u_DQUOTE] = ACTIONS(2410), + [anon_sym_U_DQUOTE] = ACTIONS(2410), + [anon_sym_u8_DQUOTE] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [sym_true] = ACTIONS(2408), + [sym_false] = ACTIONS(2408), + [anon_sym_NULL] = ACTIONS(2408), + [anon_sym_nullptr] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2408), + [anon_sym_decltype] = ACTIONS(2408), + [anon_sym_explicit] = ACTIONS(2408), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_template] = ACTIONS(2408), + [anon_sym_operator] = ACTIONS(2408), + [anon_sym_try] = ACTIONS(2408), + [anon_sym_delete] = ACTIONS(2408), + [anon_sym_throw] = ACTIONS(2408), + [anon_sym_namespace] = ACTIONS(2408), + [anon_sym_using] = ACTIONS(2408), + [anon_sym_static_assert] = ACTIONS(2408), + [anon_sym_concept] = ACTIONS(2408), + [anon_sym_co_return] = ACTIONS(2408), + [anon_sym_co_yield] = ACTIONS(2408), + [anon_sym_R_DQUOTE] = ACTIONS(2410), + [anon_sym_LR_DQUOTE] = ACTIONS(2410), + [anon_sym_uR_DQUOTE] = ACTIONS(2410), + [anon_sym_UR_DQUOTE] = ACTIONS(2410), + [anon_sym_u8R_DQUOTE] = ACTIONS(2410), + [anon_sym_co_await] = ACTIONS(2408), + [anon_sym_new] = ACTIONS(2408), + [anon_sym_requires] = ACTIONS(2408), + [sym_this] = ACTIONS(2408), + [sym_alone_macro] = ACTIONS(2410), + [aux_sym_alone_macro_call_token1] = ACTIONS(2408), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2408), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_FORWARD] = ACTIONS(2408), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2408), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2408), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2408), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2408), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_PS_GET] = ACTIONS(2408), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2408), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2408), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2408), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2408), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2408), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2408), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2408), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2408), + [anon_sym_MOZ_COLD] = ACTIONS(2408), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2408), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2408), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2408), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2408), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2408), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2408), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2408), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2408), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2408), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2408), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2408), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2408), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2408), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_NONNULL] = ACTIONS(2408), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2408), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2408), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2408), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2408), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2408), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2408), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2408), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2408), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2408), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2408), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2408), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2408), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2408), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2408), + [anon_sym_MOZ_RAII] = ACTIONS(2408), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2408), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2408), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2408), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2408), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2408), + }, + [STATE(623)] = { + [sym_preproc_def] = STATE(638), + [sym_preproc_function_def] = STATE(638), + [sym_preproc_call] = STATE(638), + [sym_preproc_if_in_field_declaration_list] = STATE(638), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(638), + [sym_preproc_else_in_field_declaration_list] = STATE(8441), + [sym_preproc_elif_in_field_declaration_list] = STATE(8441), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8441), + [sym_type_definition] = STATE(638), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5804), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6523), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(638), + [sym_field_declaration] = STATE(638), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1069), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(638), + [sym_operator_cast] = STATE(7103), + [sym_inline_method_definition] = STATE(638), + [sym__constructor_specifiers] = STATE(1069), + [sym_operator_cast_definition] = STATE(638), + [sym_operator_cast_declaration] = STATE(638), + [sym_constructor_or_destructor_definition] = STATE(638), + [sym_constructor_or_destructor_declaration] = STATE(638), + [sym_friend_declaration] = STATE(638), + [sym_access_specifier] = STATE(8976), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(638), + [sym_alias_declaration] = STATE(638), + [sym_static_assert_declaration] = STATE(638), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7103), + [sym_operator_name] = STATE(6300), [sym_macro_annotation] = STATE(1622), - [aux_sym_class_specifier_repeat1] = STATE(1622), - [sym_identifier] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1706] = { - [sym_field_declaration_list] = STATE(1323), - [sym__class_name] = STATE(1399), - [sym_virtual_specifier] = STATE(4095), - [sym_base_class_clause] = STATE(4476), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1399), - [sym_macro_annotation] = STATE(1620), - [aux_sym_class_specifier_repeat1] = STATE(1620), - [sym_identifier] = ACTIONS(4118), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1707] = { - [sym__expression] = STATE(2214), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4254), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1708] = { - [sym__expression] = STATE(2701), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4256), - [anon_sym_LPAREN2] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1709] = { - [sym__expression] = STATE(2214), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4260), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1710] = { - [sym__expression] = STATE(2214), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4262), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1711] = { - [sym__expression] = STATE(3131), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4264), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1712] = { - [sym__expression] = STATE(2959), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(4266), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1713] = { - [sym_field_declaration_list] = STATE(1360), - [sym__class_name] = STATE(1405), - [sym_virtual_specifier] = STATE(4093), - [sym_base_class_clause] = STATE(4464), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1405), - [sym_macro_annotation] = STATE(3469), - [sym_identifier] = ACTIONS(4118), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1714] = { - [sym__expression] = STATE(2212), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4268), - [anon_sym_LPAREN2] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1715] = { - [sym__expression] = STATE(2923), - [sym_comma_expression] = STATE(5009), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1716] = { - [sym__expression] = STATE(2214), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4272), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1717] = { - [sym__expression] = STATE(2214), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4274), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1718] = { - [sym__expression] = STATE(3096), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4256), - [anon_sym_LPAREN2] = ACTIONS(4276), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1719] = { - [sym__expression] = STATE(3049), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1720] = { - [sym_field_declaration_list] = STATE(1360), - [sym__class_name] = STATE(1400), - [sym_virtual_specifier] = STATE(4093), - [sym_base_class_clause] = STATE(4464), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1400), - [sym_macro_annotation] = STATE(3469), - [sym_identifier] = ACTIONS(4118), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1721] = { - [sym_field_declaration_list] = STATE(1360), - [sym__class_name] = STATE(1301), - [sym_virtual_specifier] = STATE(4093), - [sym_base_class_clause] = STATE(4464), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1301), - [sym_macro_annotation] = STATE(3469), - [sym_identifier] = ACTIONS(4118), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1722] = { - [sym__expression] = STATE(2943), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4280), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1723] = { - [sym__expression] = STATE(3133), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4282), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1724] = { - [sym__expression] = STATE(3073), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4284), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1725] = { - [sym__expression] = STATE(2494), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4268), - [anon_sym_LPAREN2] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1726] = { - [sym_field_declaration_list] = STATE(2115), - [sym__class_name] = STATE(1983), - [sym_virtual_specifier] = STATE(4075), - [sym_base_class_clause] = STATE(4679), - [sym_template_type] = STATE(2001), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3897), - [sym_qualified_type_identifier] = STATE(1983), - [sym_macro_annotation] = STATE(3467), - [sym_identifier] = ACTIONS(4174), - [anon_sym_COLON_COLON] = ACTIONS(4176), - [anon_sym_LBRACE] = ACTIONS(4178), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1727] = { - [sym_field_declaration_list] = STATE(1360), - [sym__class_name] = STATE(1396), - [sym_virtual_specifier] = STATE(4093), - [sym_base_class_clause] = STATE(4464), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3895), - [sym_qualified_type_identifier] = STATE(1396), - [sym_macro_annotation] = STATE(3488), - [sym_identifier] = ACTIONS(4100), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1728] = { - [sym__expression] = STATE(2903), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4256), - [anon_sym_LPAREN2] = ACTIONS(4288), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1729] = { - [sym_field_declaration_list] = STATE(1360), - [sym__class_name] = STATE(1301), - [sym_virtual_specifier] = STATE(4093), - [sym_base_class_clause] = STATE(4464), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3908), - [sym_qualified_type_identifier] = STATE(1301), - [sym_macro_annotation] = STATE(3483), - [sym_identifier] = ACTIONS(4100), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1730] = { - [sym__expression] = STATE(2214), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4290), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1731] = { - [sym__expression] = STATE(2950), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1732] = { - [sym__expression] = STATE(2214), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4294), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1733] = { - [sym__expression] = STATE(2214), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4296), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1734] = { - [sym__expression] = STATE(2908), - [sym_comma_expression] = STATE(5012), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1735] = { - [sym_field_declaration_list] = STATE(1442), - [sym__class_name] = STATE(1368), - [sym_virtual_specifier] = STATE(4146), - [sym_base_class_clause] = STATE(4512), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3895), - [sym_qualified_type_identifier] = STATE(1368), - [sym_macro_annotation] = STATE(3494), - [sym_identifier] = ACTIONS(4100), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1736] = { - [sym__expression] = STATE(2738), - [sym_comma_expression] = STATE(4740), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1737] = { - [sym__expression] = STATE(2214), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4298), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1738] = { - [sym__expression] = STATE(2714), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4300), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(4302), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1739] = { - [sym__expression] = STATE(2352), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4304), - [anon_sym_LPAREN2] = ACTIONS(4306), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1740] = { - [sym__expression] = STATE(3004), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4308), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1741] = { - [sym__expression] = STATE(2214), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4310), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1742] = { - [sym_field_declaration_list] = STATE(2385), - [sym__class_name] = STATE(2087), - [sym_virtual_specifier] = STATE(4101), - [sym_base_class_clause] = STATE(4768), - [sym_template_type] = STATE(2246), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3909), - [sym_qualified_type_identifier] = STATE(2087), - [sym_macro_annotation] = STATE(3484), - [sym_identifier] = ACTIONS(4102), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1743] = { - [sym__expression] = STATE(2906), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4312), - [anon_sym_LPAREN2] = ACTIONS(4314), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1744] = { - [sym_field_declaration_list] = STATE(1360), - [sym__class_name] = STATE(3622), - [sym_virtual_specifier] = STATE(4093), - [sym_base_class_clause] = STATE(4464), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3888), - [sym_qualified_type_identifier] = STATE(3622), - [sym_macro_annotation] = STATE(3485), - [sym_identifier] = ACTIONS(4118), - [anon_sym_COLON_COLON] = ACTIONS(4128), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1745] = { - [sym__expression] = STATE(2927), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4316), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1746] = { - [sym_field_declaration_list] = STATE(2624), - [sym__class_name] = STATE(2270), - [sym_virtual_specifier] = STATE(4081), - [sym_base_class_clause] = STATE(4829), - [sym_template_type] = STATE(2424), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3876), - [sym_qualified_type_identifier] = STATE(2270), - [sym_macro_annotation] = STATE(3498), - [sym_identifier] = ACTIONS(4192), - [anon_sym_COLON_COLON] = ACTIONS(4194), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1747] = { - [sym_field_declaration_list] = STATE(2385), - [sym__class_name] = STATE(2087), - [sym_virtual_specifier] = STATE(4101), - [sym_base_class_clause] = STATE(4768), - [sym_template_type] = STATE(2246), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3923), - [sym_qualified_type_identifier] = STATE(2087), - [sym_macro_annotation] = STATE(3502), - [sym_identifier] = ACTIONS(4140), - [anon_sym_COLON_COLON] = ACTIONS(4142), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1748] = { - [sym__expression] = STATE(3069), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1749] = { - [sym__expression] = STATE(2214), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4320), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1750] = { - [sym__expression] = STATE(2214), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4322), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1751] = { - [sym__expression] = STATE(2863), - [sym_comma_expression] = STATE(4860), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1752] = { - [sym__expression] = STATE(2214), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4324), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1753] = { - [sym__expression] = STATE(2714), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4326), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(4302), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1754] = { - [sym_field_declaration_list] = STATE(2286), - [sym__class_name] = STATE(2028), - [sym_virtual_specifier] = STATE(4150), - [sym_base_class_clause] = STATE(4673), - [sym_template_type] = STATE(2052), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3902), - [sym_qualified_type_identifier] = STATE(2028), - [sym_macro_annotation] = STATE(3474), - [sym_identifier] = ACTIONS(4122), - [anon_sym_COLON_COLON] = ACTIONS(4124), - [anon_sym_LBRACE] = ACTIONS(4126), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1755] = { - [sym__expression] = STATE(3084), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1756] = { - [sym__expression] = STATE(3130), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4330), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1757] = { - [sym_field_declaration_list] = STATE(3857), - [sym__class_name] = STATE(3537), - [sym_virtual_specifier] = STATE(4016), - [sym_base_class_clause] = STATE(4619), - [sym_template_type] = STATE(3592), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3878), - [sym_qualified_type_identifier] = STATE(3537), - [sym_macro_annotation] = STATE(3495), - [sym_identifier] = ACTIONS(4134), - [anon_sym_COLON_COLON] = ACTIONS(4136), - [anon_sym_LBRACE] = ACTIONS(4138), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1758] = { - [sym_field_declaration_list] = STATE(2624), - [sym__class_name] = STATE(2270), - [sym_virtual_specifier] = STATE(4081), - [sym_base_class_clause] = STATE(4829), - [sym_template_type] = STATE(2424), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3918), - [sym_qualified_type_identifier] = STATE(2270), - [sym_macro_annotation] = STATE(3479), - [sym_identifier] = ACTIONS(4154), - [anon_sym_COLON_COLON] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1759] = { - [sym__expression] = STATE(2214), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(4332), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1760] = { - [sym__expression] = STATE(2714), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4334), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(4302), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1761] = { - [sym_field_declaration_list] = STATE(1360), - [sym__class_name] = STATE(1396), - [sym_virtual_specifier] = STATE(4093), - [sym_base_class_clause] = STATE(4464), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3881), - [sym_qualified_type_identifier] = STATE(1396), - [sym_macro_annotation] = STATE(3493), - [sym_identifier] = ACTIONS(4118), - [anon_sym_COLON_COLON] = ACTIONS(4132), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1762] = { - [sym__expression] = STATE(2990), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4336), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1763] = { - [sym__expression] = STATE(2996), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(4338), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1764] = { - [sym_field_declaration_list] = STATE(1360), - [sym__class_name] = STATE(1407), - [sym_virtual_specifier] = STATE(4093), - [sym_base_class_clause] = STATE(4464), - [sym_template_type] = STATE(1302), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3912), - [sym_qualified_type_identifier] = STATE(1407), - [sym_macro_annotation] = STATE(3469), - [sym_identifier] = ACTIONS(4118), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2574), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2574), - [anon_sym_MOZ_COLD] = ACTIONS(2574), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2574), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2574), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(2574), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2574), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2574), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2574), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2574), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2574), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2574), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE] = ACTIONS(2574), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2574), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2574), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL] = ACTIONS(2574), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2574), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(2574), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN] = ACTIONS(2574), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2574), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2574), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2574), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2574), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2574), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(2574), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2574), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2574), - [anon_sym_MOZ_RAII] = ACTIONS(2574), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2574), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2574), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2574), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2574), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2574), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2574), - [anon_sym_JS_PUBLIC_API] = ACTIONS(2574), - }, - [1765] = { - [sym__expression] = STATE(2182), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1766] = { - [sym__expression] = STATE(2319), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_LPAREN2] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1767] = { - [sym__expression] = STATE(3041), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1768] = { - [sym__expression] = STATE(2916), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1769] = { - [sym__expression] = STATE(2429), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1770] = { - [sym__expression] = STATE(2728), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1771] = { - [sym__expression] = STATE(2420), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1772] = { - [sym__expression] = STATE(2416), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1773] = { - [sym__expression] = STATE(2414), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1774] = { - [sym__expression] = STATE(3075), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1775] = { - [sym__expression] = STATE(2842), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(4340), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1776] = { - [sym__expression] = STATE(2413), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1777] = { - [sym__expression] = STATE(2412), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1778] = { - [sym__expression] = STATE(2179), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(4342), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1779] = { - [sym__expression] = STATE(2411), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1780] = { - [sym__expression] = STATE(2179), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1781] = { - [sym__expression] = STATE(2405), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1782] = { - [sym__expression] = STATE(2403), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1783] = { - [sym__expression] = STATE(2974), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(4344), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1784] = { - [sym__expression] = STATE(2831), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1785] = { - [sym__expression] = STATE(2395), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1786] = { - [sym__expression] = STATE(2702), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1787] = { - [sym__expression] = STATE(2981), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1788] = { - [sym__expression] = STATE(2976), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1789] = { - [sym__expression] = STATE(2986), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1790] = { - [sym__expression] = STATE(2363), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(4346), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1791] = { - [sym__expression] = STATE(2791), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1792] = { - [sym__expression] = STATE(3025), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1793] = { - [sym__expression] = STATE(3061), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1794] = { - [sym__expression] = STATE(2896), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(4348), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1795] = { - [sym__expression] = STATE(2988), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1796] = { - [sym__expression] = STATE(2992), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1797] = { - [sym__expression] = STATE(2993), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1798] = { - [sym__expression] = STATE(3000), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1799] = { - [sym__expression] = STATE(2892), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1800] = { - [sym__expression] = STATE(3002), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1801] = { - [sym__expression] = STATE(3005), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1802] = { - [sym__expression] = STATE(3008), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1803] = { - [sym__expression] = STATE(3012), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1804] = { - [sym__expression] = STATE(2945), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1805] = { - [sym__expression] = STATE(3038), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1806] = { - [sym__expression] = STATE(2721), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1807] = { - [sym__expression] = STATE(2952), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1808] = { - [sym__expression] = STATE(2786), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1809] = { - [sym__expression] = STATE(2825), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1810] = { - [sym__expression] = STATE(2924), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1811] = { - [sym__expression] = STATE(2921), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1812] = { - [sym__expression] = STATE(2920), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1813] = { - [sym__expression] = STATE(2893), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1814] = { - [sym__expression] = STATE(2890), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1815] = { - [sym__expression] = STATE(2882), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1816] = { - [sym__expression] = STATE(2871), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1817] = { - [sym__expression] = STATE(2866), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1818] = { - [sym__expression] = STATE(3085), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1819] = { - [sym__expression] = STATE(3078), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1820] = { - [sym__expression] = STATE(2456), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1821] = { - [sym__expression] = STATE(3071), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1822] = { - [sym__expression] = STATE(2907), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1823] = { - [sym__expression] = STATE(2483), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(4350), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1824] = { - [sym__expression] = STATE(3066), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1825] = { - [sym__expression] = STATE(2474), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1826] = { - [sym__expression] = STATE(3034), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1827] = { - [sym__expression] = STATE(2797), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1828] = { - [sym__expression] = STATE(2351), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_LPAREN2] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1829] = { - [sym__expression] = STATE(2810), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1830] = { - [sym__expression] = STATE(2404), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1831] = { - [sym__expression] = STATE(2883), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1832] = { - [sym__expression] = STATE(2353), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_LPAREN2] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1833] = { - [sym__expression] = STATE(2214), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1834] = { - [sym__expression] = STATE(2225), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(4352), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1835] = { - [sym__expression] = STATE(2158), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1836] = { - [sym__expression] = STATE(2932), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1837] = { - [sym__expression] = STATE(2922), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1838] = { - [sym__expression] = STATE(2164), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1839] = { - [sym__expression] = STATE(2168), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1840] = { - [sym__expression] = STATE(2998), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1841] = { - [sym__expression] = STATE(2799), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1842] = { - [sym__expression] = STATE(2696), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1843] = { - [sym__expression] = STATE(2227), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1844] = { - [sym__expression] = STATE(2176), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1845] = { - [sym__expression] = STATE(2800), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1846] = { - [sym__expression] = STATE(3113), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1847] = { - [sym__expression] = STATE(3116), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1848] = { - [sym__expression] = STATE(2178), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1849] = { - [sym__expression] = STATE(2349), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_LPAREN2] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(4354), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1850] = { - [sym__expression] = STATE(3118), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1851] = { - [sym__expression] = STATE(2940), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1852] = { - [sym__expression] = STATE(2874), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1853] = { - [sym__expression] = STATE(2210), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1854] = { - [sym__expression] = STATE(2680), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1855] = { - [sym__expression] = STATE(2226), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1856] = { - [sym__expression] = STATE(2719), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1857] = { - [sym__expression] = STATE(3087), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1858] = { - [sym__expression] = STATE(2853), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1859] = { - [sym__expression] = STATE(2714), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(4302), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1860] = { - [sym__expression] = STATE(3032), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1861] = { - [sym__expression] = STATE(2342), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_LPAREN2] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1862] = { - [sym__expression] = STATE(3123), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1863] = { - [sym__expression] = STATE(3097), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1864] = { - [sym__expression] = STATE(2180), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1865] = { - [sym__expression] = STATE(2183), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1866] = { - [sym__expression] = STATE(2913), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1867] = { - [sym__expression] = STATE(3035), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1868] = { - [sym__expression] = STATE(3086), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(4356), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1869] = { - [sym__expression] = STATE(2378), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1870] = { - [sym__expression] = STATE(3108), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1871] = { - [sym__expression] = STATE(2704), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1872] = { - [sym__expression] = STATE(2148), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1873] = { - [sym__expression] = STATE(2716), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1874] = { - [sym__expression] = STATE(2902), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1875] = { - [sym__expression] = STATE(2718), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1876] = { - [sym__expression] = STATE(2878), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1877] = { - [sym__expression] = STATE(2985), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1878] = { - [sym__expression] = STATE(2676), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1879] = { - [sym__expression] = STATE(3042), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1880] = { - [sym__expression] = STATE(2894), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(4358), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1881] = { - [sym__expression] = STATE(3065), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1882] = { - [sym__expression] = STATE(2676), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1883] = { - [sym__expression] = STATE(2684), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(4360), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1884] = { - [sym__expression] = STATE(2963), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1885] = { - [sym__expression] = STATE(2994), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1886] = { - [sym__expression] = STATE(3128), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1887] = { - [sym__expression] = STATE(3043), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1888] = { - [sym__expression] = STATE(2670), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1889] = { - [sym__expression] = STATE(3006), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1890] = { - [sym__expression] = STATE(2909), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1891] = { - [sym__expression] = STATE(2189), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1892] = { - [sym__expression] = STATE(2361), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_LPAREN2] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1893] = { - [sym__expression] = STATE(2684), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1894] = { - [sym__expression] = STATE(2307), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_LPAREN2] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(4362), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1895] = { - [sym__expression] = STATE(2942), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1896] = { - [sym__expression] = STATE(2951), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1897] = { - [sym__expression] = STATE(3114), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1898] = { - [sym__expression] = STATE(3024), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1899] = { - [sym__expression] = STATE(3016), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1900] = { - [sym__expression] = STATE(3063), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1901] = { - [sym__expression] = STATE(3092), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1902] = { - [sym__expression] = STATE(3109), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1903] = { - [sym__expression] = STATE(2335), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_LPAREN2] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1904] = { - [sym__expression] = STATE(3104), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1905] = { - [sym__expression] = STATE(3030), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1906] = { - [sym__expression] = STATE(2320), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_LPAREN2] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1907] = { - [sym__expression] = STATE(2715), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(4364), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1908] = { - [sym__expression] = STATE(3054), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1909] = { - [sym__expression] = STATE(3056), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1910] = { - [sym__expression] = STATE(2801), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1911] = { - [sym__expression] = STATE(2793), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1912] = { - [sym__expression] = STATE(2789), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1913] = { - [sym__expression] = STATE(2318), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_LPAREN2] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1914] = { - [sym__expression] = STATE(2720), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1915] = { - [sym__expression] = STATE(2317), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_LPAREN2] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1916] = { - [sym__expression] = STATE(2697), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1917] = { - [sym__expression] = STATE(2707), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1918] = { - [sym__expression] = STATE(2670), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1919] = { - [sym__expression] = STATE(2466), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_sizeof] = ACTIONS(3212), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_co_await] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3218), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1920] = { - [sym__expression] = STATE(2855), - [sym_conditional_expression] = STATE(2966), - [sym_assignment_expression] = STATE(2966), - [sym_pointer_expression] = STATE(2419), - [sym_unary_expression] = STATE(2966), - [sym_binary_expression] = STATE(2966), - [sym_update_expression] = STATE(2966), - [sym_cast_expression] = STATE(2966), - [sym_sizeof_expression] = STATE(2966), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2966), - [sym_parenthesized_expression] = STATE(2419), - [sym_char_literal] = STATE(2887), - [sym_concatenated_string] = STATE(2887), - [sym_string_literal] = STATE(2502), - [sym__class_name] = STATE(4690), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2966), - [sym_co_await_expression] = STATE(2966), - [sym_new_expression] = STATE(2966), - [sym_delete_expression] = STATE(2966), - [sym_lambda_expression] = STATE(2966), - [sym_lambda_capture_specifier] = STATE(3530), - [sym_parameter_pack_expansion] = STATE(2966), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2419), - [sym_qualified_type_identifier] = STATE(4690), - [sym_user_defined_literal] = STATE(2966), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3717), - [anon_sym_LPAREN2] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_sizeof] = ACTIONS(3246), - [sym_number_literal] = ACTIONS(3248), - [anon_sym_L_SQUOTE] = ACTIONS(3250), - [anon_sym_u_SQUOTE] = ACTIONS(3250), - [anon_sym_U_SQUOTE] = ACTIONS(3250), - [anon_sym_u8_SQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_L_DQUOTE] = ACTIONS(3252), - [anon_sym_u_DQUOTE] = ACTIONS(3252), - [anon_sym_U_DQUOTE] = ACTIONS(3252), - [anon_sym_u8_DQUOTE] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3268), - [sym_this] = ACTIONS(3254), - [sym_nullptr] = ACTIONS(3254), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3270), - }, - [1921] = { - [sym__expression] = STATE(3134), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1922] = { - [sym__expression] = STATE(2156), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2159), - [sym_unary_expression] = STATE(2155), - [sym_binary_expression] = STATE(2155), - [sym_update_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2159), - [sym_call_expression] = STATE(2159), - [sym_field_expression] = STATE(2159), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2159), - [sym_char_literal] = STATE(2053), - [sym_concatenated_string] = STATE(2053), - [sym_string_literal] = STATE(1953), - [sym__class_name] = STATE(4751), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2155), - [sym_co_await_expression] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(3507), - [sym_parameter_pack_expansion] = STATE(2155), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2159), - [sym_qualified_type_identifier] = STATE(4751), - [sym_user_defined_literal] = STATE(2155), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(4366), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3136), - [anon_sym_u_SQUOTE] = ACTIONS(3136), - [anon_sym_U_SQUOTE] = ACTIONS(3136), - [anon_sym_u8_SQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3146), - [sym_this] = ACTIONS(3140), - [sym_nullptr] = ACTIONS(3140), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(3148), - }, - [1923] = { - [sym__expression] = STATE(3119), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1924] = { - [sym__expression] = STATE(2316), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_LPAREN2] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1925] = { - [sym__expression] = STATE(2784), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1926] = { - [sym__expression] = STATE(2783), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1927] = { - [sym__expression] = STATE(2315), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_LPAREN2] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1928] = { - [sym__expression] = STATE(2314), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_LPAREN2] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1929] = { - [sym__expression] = STATE(2877), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(4368), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1930] = { - [sym__expression] = STATE(2313), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_LPAREN2] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1931] = { - [sym__expression] = STATE(3120), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1932] = { - [sym__expression] = STATE(2811), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1933] = { - [sym__expression] = STATE(3126), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1934] = { - [sym__expression] = STATE(2312), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_LPAREN2] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1935] = { - [sym__expression] = STATE(2311), - [sym_conditional_expression] = STATE(2406), - [sym_assignment_expression] = STATE(2406), - [sym_pointer_expression] = STATE(2362), - [sym_unary_expression] = STATE(2406), - [sym_binary_expression] = STATE(2406), - [sym_update_expression] = STATE(2406), - [sym_cast_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2406), - [sym_subscript_expression] = STATE(2362), - [sym_call_expression] = STATE(2362), - [sym_field_expression] = STATE(2362), - [sym_compound_literal_expression] = STATE(2406), - [sym_parenthesized_expression] = STATE(2362), - [sym_char_literal] = STATE(2337), - [sym_concatenated_string] = STATE(2337), - [sym_string_literal] = STATE(1982), - [sym__class_name] = STATE(4529), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2406), - [sym_co_await_expression] = STATE(2406), - [sym_new_expression] = STATE(2406), - [sym_delete_expression] = STATE(2406), - [sym_lambda_expression] = STATE(2406), - [sym_lambda_capture_specifier] = STATE(3510), - [sym_parameter_pack_expansion] = STATE(2406), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3505), - [sym_qualified_identifier] = STATE(2362), - [sym_qualified_type_identifier] = STATE(4529), - [sym_user_defined_literal] = STATE(2406), - [sym__call_macro_with_decl_first_arg] = STATE(2397), - [sym_identifier] = ACTIONS(3162), - [anon_sym_LPAREN2] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3180), - [sym_number_literal] = ACTIONS(3182), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3186), - [anon_sym_u_DQUOTE] = ACTIONS(3186), - [anon_sym_U_DQUOTE] = ACTIONS(3186), - [anon_sym_u8_DQUOTE] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_co_await] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3194), - [sym_this] = ACTIONS(3188), - [sym_nullptr] = ACTIONS(3188), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_FORWARD] = ACTIONS(3196), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3196), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_PS_GET] = ACTIONS(3196), - [anon_sym_PS_GET_AND_SET] = ACTIONS(3196), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3196), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(3196), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3196), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3196), - [sym_raw_string_literal] = ACTIONS(3198), - }, - [1936] = { - [sym__expression] = STATE(2706), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1937] = { - [sym__expression] = STATE(2684), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1938] = { - [sym__expression] = STATE(3026), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2500), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2500), - [sym_call_expression] = STATE(2500), - [sym_field_expression] = STATE(2500), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2500), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2500), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3755), - [anon_sym_LPAREN2] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_COLON_COLON] = ACTIONS(3765), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3767), - [anon_sym_PLUS_PLUS] = ACTIONS(3767), - [anon_sym_sizeof] = ACTIONS(3769), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3771), - [anon_sym_co_await] = ACTIONS(3773), - [anon_sym_new] = ACTIONS(3775), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1939] = { - [sym__expression] = STATE(2847), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1940] = { - [sym__expression] = STATE(2856), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1941] = { - [sym__expression] = STATE(2860), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1942] = { - [sym__expression] = STATE(2875), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1943] = { - [sym__expression] = STATE(2680), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1944] = { - [sym__expression] = STATE(2925), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2490), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2490), - [sym_call_expression] = STATE(2490), - [sym_field_expression] = STATE(2490), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2490), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2490), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3721), - [anon_sym_LPAREN2] = ACTIONS(3723), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(3731), - [anon_sym_PLUS_PLUS] = ACTIONS(3731), - [anon_sym_sizeof] = ACTIONS(3733), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(3735), - [anon_sym_co_await] = ACTIONS(3737), - [anon_sym_new] = ACTIONS(3739), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1945] = { - [sym__expression] = STATE(3081), - [sym_conditional_expression] = STATE(2677), - [sym_assignment_expression] = STATE(2677), - [sym_pointer_expression] = STATE(2267), - [sym_unary_expression] = STATE(2677), - [sym_binary_expression] = STATE(2677), - [sym_update_expression] = STATE(2677), - [sym_cast_expression] = STATE(2677), - [sym_sizeof_expression] = STATE(2677), - [sym_subscript_expression] = STATE(2267), - [sym_call_expression] = STATE(2267), - [sym_field_expression] = STATE(2267), - [sym_compound_literal_expression] = STATE(2677), - [sym_parenthesized_expression] = STATE(2267), - [sym_char_literal] = STATE(2646), - [sym_concatenated_string] = STATE(2646), - [sym_string_literal] = STATE(2261), - [sym__class_name] = STATE(4792), - [sym_template_type] = STATE(1302), - [sym_template_function] = STATE(2677), - [sym_co_await_expression] = STATE(2677), - [sym_new_expression] = STATE(2677), - [sym_delete_expression] = STATE(2677), - [sym_lambda_expression] = STATE(2677), - [sym_lambda_capture_specifier] = STATE(3508), - [sym_parameter_pack_expansion] = STATE(2677), - [sym_dependent_type_identifier] = STATE(4853), - [sym__scope_resolution] = STATE(3522), - [sym_qualified_identifier] = STATE(2267), - [sym_qualified_type_identifier] = STATE(4792), - [sym_user_defined_literal] = STATE(2677), - [sym__call_macro_with_decl_first_arg] = STATE(2169), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1035), - [anon_sym_delete] = ACTIONS(119), - [anon_sym_co_await] = ACTIONS(135), - [anon_sym_new] = ACTIONS(137), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(143), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_FORWARD] = ACTIONS(143), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(143), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(143), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(143), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_PS_GET] = ACTIONS(143), - [anon_sym_PS_GET_AND_SET] = ACTIONS(143), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(143), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(143), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(143), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(143), - [sym_raw_string_literal] = ACTIONS(147), - }, - [1946] = { - [sym_macro_annotation] = STATE(1946), - [aux_sym_class_specifier_repeat1] = STATE(1946), - [sym_identifier] = ACTIONS(4370), - [anon_sym_COLON_COLON] = ACTIONS(4372), - [anon_sym_LBRACE] = ACTIONS(4372), - [anon_sym_COLON] = ACTIONS(4370), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(4370), - [anon_sym_override] = ACTIONS(4370), - [anon_sym_template] = ACTIONS(4370), - [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4374), - [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4374), - [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4374), - [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4374), - [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4374), - [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4374), - [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4374), - [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4374), - [anon_sym_MOZ_COLD] = ACTIONS(4374), - [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4374), - [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4374), - [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4374), - [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4374), - [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4374), - [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4374), - [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4374), - [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4374), - [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4374), - [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4374), - [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4374), - [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4374), - [anon_sym_MOZ_IMPLICIT] = ACTIONS(4374), - [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4374), - [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4374), - [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4374), - [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4374), - [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4374), - [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4374), - [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4374), - [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4374), - [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4374), - [anon_sym_MOZ_MUST_USE] = ACTIONS(4374), - [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4374), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4374), - [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4374), - [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4374), - [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4374), - [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4374), - [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4374), - [anon_sym_MOZ_NONNULL] = ACTIONS(4374), - [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4374), - [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4374), - [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4374), - [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4374), - [anon_sym_MOZ_NON_PARAM] = ACTIONS(4374), - [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4374), - [anon_sym_MOZ_NORETURN] = ACTIONS(4374), - [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4374), - [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4374), - [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4374), - [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4374), - [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4374), - [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4374), - [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4374), - [anon_sym_MOZ_OWNING_REF] = ACTIONS(4374), - [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4374), - [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4374), - [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4374), - [anon_sym_MOZ_RAII] = ACTIONS(4374), - [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4374), - [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4374), - [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4374), - [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4374), - [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4374), - [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4374), - [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4374), - [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4374), - [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4374), - [anon_sym_JS_PUBLIC_API] = ACTIONS(4374), - }, - [1947] = { - [sym_identifier] = ACTIONS(4377), - [anon_sym_LPAREN2] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4379), - [anon_sym_TILDE] = ACTIONS(4379), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4379), - [anon_sym_AMP] = ACTIONS(4379), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_LBRACK] = ACTIONS(4377), - [sym_primitive_type] = ACTIONS(4377), - [anon_sym_if] = ACTIONS(4377), - [anon_sym_switch] = ACTIONS(4377), - [anon_sym_case] = ACTIONS(4377), - [anon_sym_default] = ACTIONS(4377), - [anon_sym_while] = ACTIONS(4377), - [anon_sym_do] = ACTIONS(4377), - [anon_sym_for] = ACTIONS(4377), - [anon_sym_return] = ACTIONS(4377), - [anon_sym_break] = ACTIONS(4377), - [anon_sym_continue] = ACTIONS(4377), - [anon_sym_goto] = ACTIONS(4377), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_sizeof] = ACTIONS(4377), - [sym_number_literal] = ACTIONS(4379), - [anon_sym_L_SQUOTE] = ACTIONS(4379), - [anon_sym_u_SQUOTE] = ACTIONS(4379), - [anon_sym_U_SQUOTE] = ACTIONS(4379), - [anon_sym_u8_SQUOTE] = ACTIONS(4379), - [anon_sym_SQUOTE] = ACTIONS(4379), - [anon_sym_L_DQUOTE] = ACTIONS(4379), - [anon_sym_u_DQUOTE] = ACTIONS(4379), - [anon_sym_U_DQUOTE] = ACTIONS(4379), - [anon_sym_u8_DQUOTE] = ACTIONS(4379), - [anon_sym_DQUOTE] = ACTIONS(4379), - [sym_true] = ACTIONS(4377), - [sym_false] = ACTIONS(4377), - [sym_null] = ACTIONS(4377), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(4377), - [anon_sym_delete] = ACTIONS(4377), - [anon_sym_throw] = ACTIONS(4377), - [anon_sym_co_return] = ACTIONS(4377), - [anon_sym_co_yield] = ACTIONS(4377), - [anon_sym_try] = ACTIONS(4377), - [anon_sym_co_await] = ACTIONS(4377), - [anon_sym_new] = ACTIONS(4377), - [sym_this] = ACTIONS(4377), - [sym_nullptr] = ACTIONS(4377), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(4377), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(4377), - [anon_sym_FORWARD] = ACTIONS(4377), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(4377), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(4377), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(4377), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(4377), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(4377), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(4377), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(4377), - [anon_sym_PS_GET] = ACTIONS(4377), - [anon_sym_PS_GET_AND_SET] = ACTIONS(4377), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(4377), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(4377), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(4377), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(4377), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(4377), - [sym_raw_string_literal] = ACTIONS(4379), - }, - [1948] = { - [sym_identifier] = ACTIONS(4381), - [anon_sym_LPAREN2] = ACTIONS(4383), - [anon_sym_BANG] = ACTIONS(4383), - [anon_sym_TILDE] = ACTIONS(4383), - [anon_sym_DASH] = ACTIONS(4381), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4383), - [anon_sym_AMP] = ACTIONS(4383), - [anon_sym_SEMI] = ACTIONS(4383), - [anon_sym_COLON_COLON] = ACTIONS(4383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4383), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4381), - [sym_primitive_type] = ACTIONS(4381), - [anon_sym_if] = ACTIONS(4381), - [anon_sym_switch] = ACTIONS(4381), - [anon_sym_case] = ACTIONS(4381), - [anon_sym_default] = ACTIONS(4381), - [anon_sym_while] = ACTIONS(4381), - [anon_sym_do] = ACTIONS(4381), - [anon_sym_for] = ACTIONS(4381), - [anon_sym_return] = ACTIONS(4381), - [anon_sym_break] = ACTIONS(4381), - [anon_sym_continue] = ACTIONS(4381), - [anon_sym_goto] = ACTIONS(4381), - [anon_sym_DASH_DASH] = ACTIONS(4383), - [anon_sym_PLUS_PLUS] = ACTIONS(4383), - [anon_sym_sizeof] = ACTIONS(4381), - [sym_number_literal] = ACTIONS(4383), - [anon_sym_L_SQUOTE] = ACTIONS(4383), - [anon_sym_u_SQUOTE] = ACTIONS(4383), - [anon_sym_U_SQUOTE] = ACTIONS(4383), - [anon_sym_u8_SQUOTE] = ACTIONS(4383), - [anon_sym_SQUOTE] = ACTIONS(4383), - [anon_sym_L_DQUOTE] = ACTIONS(4383), - [anon_sym_u_DQUOTE] = ACTIONS(4383), - [anon_sym_U_DQUOTE] = ACTIONS(4383), - [anon_sym_u8_DQUOTE] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4383), - [sym_true] = ACTIONS(4381), - [sym_false] = ACTIONS(4381), - [sym_null] = ACTIONS(4381), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(4381), - [anon_sym_delete] = ACTIONS(4381), - [anon_sym_throw] = ACTIONS(4381), - [anon_sym_co_return] = ACTIONS(4381), - [anon_sym_co_yield] = ACTIONS(4381), - [anon_sym_try] = ACTIONS(4381), - [anon_sym_co_await] = ACTIONS(4381), - [anon_sym_new] = ACTIONS(4381), - [sym_this] = ACTIONS(4381), - [sym_nullptr] = ACTIONS(4381), - [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(4381), - [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(4381), - [anon_sym_FORWARD] = ACTIONS(4381), - [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(4381), - [anon_sym_IDB_TRY_INSPECT] = ACTIONS(4381), - [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(4381), - [anon_sym_LS_TRY_INSPECT] = ACTIONS(4381), - [anon_sym_LS_TRY_UNWRAP] = ACTIONS(4381), - [anon_sym_SDB_TRY_INSPECT] = ACTIONS(4381), - [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(4381), - [anon_sym_PS_GET] = ACTIONS(4381), - [anon_sym_PS_GET_AND_SET] = ACTIONS(4381), - [anon_sym_PS_GET_LOCKLESS] = ACTIONS(4381), - [anon_sym_QM_TRY_INSPECT] = ACTIONS(4381), - [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(4381), - [anon_sym_QM_TRY_UNWRAP] = ACTIONS(4381), - [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(4381), - [sym_raw_string_literal] = ACTIONS(4383), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 5, + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(638), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2502), + [aux_sym_preproc_if_token1] = ACTIONS(2504), + [aux_sym_preproc_if_token2] = ACTIONS(2506), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [aux_sym_preproc_else_token1] = ACTIONS(2510), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2514), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2530), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2536), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2550), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_static_assert] = ACTIONS(2558), + [sym_macro_statement] = ACTIONS(2560), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(624)] = { + [sym_preproc_def] = STATE(637), + [sym_preproc_function_def] = STATE(637), + [sym_preproc_call] = STATE(637), + [sym_preproc_if_in_field_declaration_list] = STATE(637), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(637), + [sym_preproc_else_in_field_declaration_list] = STATE(9071), + [sym_preproc_elif_in_field_declaration_list] = STATE(9071), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9071), + [sym_type_definition] = STATE(637), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5804), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6523), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(637), + [sym_field_declaration] = STATE(637), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1069), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(637), + [sym_operator_cast] = STATE(7103), + [sym_inline_method_definition] = STATE(637), + [sym__constructor_specifiers] = STATE(1069), + [sym_operator_cast_definition] = STATE(637), + [sym_operator_cast_declaration] = STATE(637), + [sym_constructor_or_destructor_definition] = STATE(637), + [sym_constructor_or_destructor_declaration] = STATE(637), + [sym_friend_declaration] = STATE(637), + [sym_access_specifier] = STATE(8976), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(637), + [sym_alias_declaration] = STATE(637), + [sym_static_assert_declaration] = STATE(637), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7103), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(637), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2502), + [aux_sym_preproc_if_token1] = ACTIONS(2504), + [aux_sym_preproc_if_token2] = ACTIONS(2562), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [aux_sym_preproc_else_token1] = ACTIONS(2510), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2514), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2564), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2530), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2536), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2550), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_static_assert] = ACTIONS(2558), + [sym_macro_statement] = ACTIONS(2566), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(625)] = { + [sym_preproc_def] = STATE(631), + [sym_preproc_function_def] = STATE(631), + [sym_preproc_call] = STATE(631), + [sym_preproc_if_in_field_declaration_list] = STATE(631), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(631), + [sym_preproc_else_in_field_declaration_list] = STATE(8861), + [sym_preproc_elif_in_field_declaration_list] = STATE(8861), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8861), + [sym_type_definition] = STATE(631), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5804), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6523), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(631), + [sym_field_declaration] = STATE(631), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1069), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(631), + [sym_operator_cast] = STATE(7103), + [sym_inline_method_definition] = STATE(631), + [sym__constructor_specifiers] = STATE(1069), + [sym_operator_cast_definition] = STATE(631), + [sym_operator_cast_declaration] = STATE(631), + [sym_constructor_or_destructor_definition] = STATE(631), + [sym_constructor_or_destructor_declaration] = STATE(631), + [sym_friend_declaration] = STATE(631), + [sym_access_specifier] = STATE(8976), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(631), + [sym_alias_declaration] = STATE(631), + [sym_static_assert_declaration] = STATE(631), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7103), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(631), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2502), + [aux_sym_preproc_if_token1] = ACTIONS(2504), + [aux_sym_preproc_if_token2] = ACTIONS(2568), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [aux_sym_preproc_else_token1] = ACTIONS(2510), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2514), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2530), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2536), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2550), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_static_assert] = ACTIONS(2558), + [sym_macro_statement] = ACTIONS(2572), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(626)] = { + [sym_preproc_def] = STATE(629), + [sym_preproc_function_def] = STATE(629), + [sym_preproc_call] = STATE(629), + [sym_preproc_if_in_field_declaration_list] = STATE(629), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(629), + [sym_preproc_else_in_field_declaration_list] = STATE(8467), + [sym_preproc_elif_in_field_declaration_list] = STATE(8467), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8467), + [sym_type_definition] = STATE(629), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5804), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6523), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(629), + [sym_field_declaration] = STATE(629), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1069), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(629), + [sym_operator_cast] = STATE(7103), + [sym_inline_method_definition] = STATE(629), + [sym__constructor_specifiers] = STATE(1069), + [sym_operator_cast_definition] = STATE(629), + [sym_operator_cast_declaration] = STATE(629), + [sym_constructor_or_destructor_definition] = STATE(629), + [sym_constructor_or_destructor_declaration] = STATE(629), + [sym_friend_declaration] = STATE(629), + [sym_access_specifier] = STATE(8976), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(629), + [sym_alias_declaration] = STATE(629), + [sym_static_assert_declaration] = STATE(629), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7103), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(629), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2502), + [aux_sym_preproc_if_token1] = ACTIONS(2504), + [aux_sym_preproc_if_token2] = ACTIONS(2574), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [aux_sym_preproc_else_token1] = ACTIONS(2510), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2514), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2530), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2536), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2550), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_static_assert] = ACTIONS(2558), + [sym_macro_statement] = ACTIONS(2578), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(627)] = { + [sym_preproc_def] = STATE(630), + [sym_preproc_function_def] = STATE(630), + [sym_preproc_call] = STATE(630), + [sym_preproc_if_in_field_declaration_list] = STATE(630), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(630), + [sym_preproc_else_in_field_declaration_list] = STATE(8709), + [sym_preproc_elif_in_field_declaration_list] = STATE(8709), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8709), + [sym_type_definition] = STATE(630), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5804), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6523), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(630), + [sym_field_declaration] = STATE(630), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1069), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(630), + [sym_operator_cast] = STATE(7103), + [sym_inline_method_definition] = STATE(630), + [sym__constructor_specifiers] = STATE(1069), + [sym_operator_cast_definition] = STATE(630), + [sym_operator_cast_declaration] = STATE(630), + [sym_constructor_or_destructor_definition] = STATE(630), + [sym_constructor_or_destructor_declaration] = STATE(630), + [sym_friend_declaration] = STATE(630), + [sym_access_specifier] = STATE(8976), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(630), + [sym_alias_declaration] = STATE(630), + [sym_static_assert_declaration] = STATE(630), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7103), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(630), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2502), + [aux_sym_preproc_if_token1] = ACTIONS(2504), + [aux_sym_preproc_if_token2] = ACTIONS(2580), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [aux_sym_preproc_else_token1] = ACTIONS(2510), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2514), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2582), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2530), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2536), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2550), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_static_assert] = ACTIONS(2558), + [sym_macro_statement] = ACTIONS(2584), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(628)] = { + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_preproc_if_in_field_declaration_list] = STATE(635), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(635), + [sym_preproc_else_in_field_declaration_list] = STATE(9191), + [sym_preproc_elif_in_field_declaration_list] = STATE(9191), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9191), + [sym_type_definition] = STATE(635), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5804), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6523), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(635), + [sym_field_declaration] = STATE(635), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1069), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(635), + [sym_operator_cast] = STATE(7103), + [sym_inline_method_definition] = STATE(635), + [sym__constructor_specifiers] = STATE(1069), + [sym_operator_cast_definition] = STATE(635), + [sym_operator_cast_declaration] = STATE(635), + [sym_constructor_or_destructor_definition] = STATE(635), + [sym_constructor_or_destructor_declaration] = STATE(635), + [sym_friend_declaration] = STATE(635), + [sym_access_specifier] = STATE(8976), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(635), + [sym_alias_declaration] = STATE(635), + [sym_static_assert_declaration] = STATE(635), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7103), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(635), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2502), + [aux_sym_preproc_if_token1] = ACTIONS(2504), + [aux_sym_preproc_if_token2] = ACTIONS(2586), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [aux_sym_preproc_else_token1] = ACTIONS(2510), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2514), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2530), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2536), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2550), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_static_assert] = ACTIONS(2558), + [sym_macro_statement] = ACTIONS(2590), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(629)] = { + [sym_preproc_def] = STATE(641), + [sym_preproc_function_def] = STATE(641), + [sym_preproc_call] = STATE(641), + [sym_preproc_if_in_field_declaration_list] = STATE(641), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(641), + [sym_preproc_else_in_field_declaration_list] = STATE(8801), + [sym_preproc_elif_in_field_declaration_list] = STATE(8801), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8801), + [sym_type_definition] = STATE(641), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5804), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6523), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(641), + [sym_field_declaration] = STATE(641), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1069), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(641), + [sym_operator_cast] = STATE(7103), + [sym_inline_method_definition] = STATE(641), + [sym__constructor_specifiers] = STATE(1069), + [sym_operator_cast_definition] = STATE(641), + [sym_operator_cast_declaration] = STATE(641), + [sym_constructor_or_destructor_definition] = STATE(641), + [sym_constructor_or_destructor_declaration] = STATE(641), + [sym_friend_declaration] = STATE(641), + [sym_access_specifier] = STATE(8976), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(641), + [sym_alias_declaration] = STATE(641), + [sym_static_assert_declaration] = STATE(641), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7103), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(641), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2502), + [aux_sym_preproc_if_token1] = ACTIONS(2504), + [aux_sym_preproc_if_token2] = ACTIONS(2592), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [aux_sym_preproc_else_token1] = ACTIONS(2510), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2514), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2530), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2536), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2550), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_static_assert] = ACTIONS(2558), + [sym_macro_statement] = ACTIONS(2596), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(630)] = { + [sym_preproc_def] = STATE(641), + [sym_preproc_function_def] = STATE(641), + [sym_preproc_call] = STATE(641), + [sym_preproc_if_in_field_declaration_list] = STATE(641), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(641), + [sym_preproc_else_in_field_declaration_list] = STATE(8958), + [sym_preproc_elif_in_field_declaration_list] = STATE(8958), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8958), + [sym_type_definition] = STATE(641), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5804), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6523), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(641), + [sym_field_declaration] = STATE(641), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1069), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(641), + [sym_operator_cast] = STATE(7103), + [sym_inline_method_definition] = STATE(641), + [sym__constructor_specifiers] = STATE(1069), + [sym_operator_cast_definition] = STATE(641), + [sym_operator_cast_declaration] = STATE(641), + [sym_constructor_or_destructor_definition] = STATE(641), + [sym_constructor_or_destructor_declaration] = STATE(641), + [sym_friend_declaration] = STATE(641), + [sym_access_specifier] = STATE(8976), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(641), + [sym_alias_declaration] = STATE(641), + [sym_static_assert_declaration] = STATE(641), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7103), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(641), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2502), + [aux_sym_preproc_if_token1] = ACTIONS(2504), + [aux_sym_preproc_if_token2] = ACTIONS(2598), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [aux_sym_preproc_else_token1] = ACTIONS(2510), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2514), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2530), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2536), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2550), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_static_assert] = ACTIONS(2558), + [sym_macro_statement] = ACTIONS(2596), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(631)] = { + [sym_preproc_def] = STATE(641), + [sym_preproc_function_def] = STATE(641), + [sym_preproc_call] = STATE(641), + [sym_preproc_if_in_field_declaration_list] = STATE(641), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(641), + [sym_preproc_else_in_field_declaration_list] = STATE(8564), + [sym_preproc_elif_in_field_declaration_list] = STATE(8564), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8564), + [sym_type_definition] = STATE(641), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5804), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6523), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(641), + [sym_field_declaration] = STATE(641), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1069), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(641), + [sym_operator_cast] = STATE(7103), + [sym_inline_method_definition] = STATE(641), + [sym__constructor_specifiers] = STATE(1069), + [sym_operator_cast_definition] = STATE(641), + [sym_operator_cast_declaration] = STATE(641), + [sym_constructor_or_destructor_definition] = STATE(641), + [sym_constructor_or_destructor_declaration] = STATE(641), + [sym_friend_declaration] = STATE(641), + [sym_access_specifier] = STATE(8976), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(641), + [sym_alias_declaration] = STATE(641), + [sym_static_assert_declaration] = STATE(641), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7103), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(641), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2502), + [aux_sym_preproc_if_token1] = ACTIONS(2504), + [aux_sym_preproc_if_token2] = ACTIONS(2600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [aux_sym_preproc_else_token1] = ACTIONS(2510), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2514), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2530), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2536), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2550), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_static_assert] = ACTIONS(2558), + [sym_macro_statement] = ACTIONS(2596), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(632)] = { + [sym_preproc_def] = STATE(634), + [sym_preproc_function_def] = STATE(634), + [sym_preproc_call] = STATE(634), + [sym_preproc_if_in_field_declaration_list] = STATE(634), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(634), + [sym_preproc_else_in_field_declaration_list] = STATE(9002), + [sym_preproc_elif_in_field_declaration_list] = STATE(9002), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9002), + [sym_type_definition] = STATE(634), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5804), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6523), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(634), + [sym_field_declaration] = STATE(634), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1069), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(634), + [sym_operator_cast] = STATE(7103), + [sym_inline_method_definition] = STATE(634), + [sym__constructor_specifiers] = STATE(1069), + [sym_operator_cast_definition] = STATE(634), + [sym_operator_cast_declaration] = STATE(634), + [sym_constructor_or_destructor_definition] = STATE(634), + [sym_constructor_or_destructor_declaration] = STATE(634), + [sym_friend_declaration] = STATE(634), + [sym_access_specifier] = STATE(8976), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(634), + [sym_alias_declaration] = STATE(634), + [sym_static_assert_declaration] = STATE(634), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7103), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(634), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2502), + [aux_sym_preproc_if_token1] = ACTIONS(2504), + [aux_sym_preproc_if_token2] = ACTIONS(2602), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [aux_sym_preproc_else_token1] = ACTIONS(2510), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2514), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2604), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2530), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2536), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2550), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_static_assert] = ACTIONS(2558), + [sym_macro_statement] = ACTIONS(2606), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(633)] = { + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_field_declaration_list] = STATE(636), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(636), + [sym_preproc_else_in_field_declaration_list] = STATE(9125), + [sym_preproc_elif_in_field_declaration_list] = STATE(9125), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9125), + [sym_type_definition] = STATE(636), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5804), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6523), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(636), + [sym_field_declaration] = STATE(636), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1069), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(636), + [sym_operator_cast] = STATE(7103), + [sym_inline_method_definition] = STATE(636), + [sym__constructor_specifiers] = STATE(1069), + [sym_operator_cast_definition] = STATE(636), + [sym_operator_cast_declaration] = STATE(636), + [sym_constructor_or_destructor_definition] = STATE(636), + [sym_constructor_or_destructor_declaration] = STATE(636), + [sym_friend_declaration] = STATE(636), + [sym_access_specifier] = STATE(8976), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(636), + [sym_alias_declaration] = STATE(636), + [sym_static_assert_declaration] = STATE(636), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7103), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(636), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2502), + [aux_sym_preproc_if_token1] = ACTIONS(2504), + [aux_sym_preproc_if_token2] = ACTIONS(2608), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [aux_sym_preproc_else_token1] = ACTIONS(2510), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2514), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2610), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2530), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2536), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2550), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_static_assert] = ACTIONS(2558), + [sym_macro_statement] = ACTIONS(2612), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(634)] = { + [sym_preproc_def] = STATE(641), + [sym_preproc_function_def] = STATE(641), + [sym_preproc_call] = STATE(641), + [sym_preproc_if_in_field_declaration_list] = STATE(641), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(641), + [sym_preproc_else_in_field_declaration_list] = STATE(9133), + [sym_preproc_elif_in_field_declaration_list] = STATE(9133), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9133), + [sym_type_definition] = STATE(641), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5804), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6523), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(641), + [sym_field_declaration] = STATE(641), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1069), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(641), + [sym_operator_cast] = STATE(7103), + [sym_inline_method_definition] = STATE(641), + [sym__constructor_specifiers] = STATE(1069), + [sym_operator_cast_definition] = STATE(641), + [sym_operator_cast_declaration] = STATE(641), + [sym_constructor_or_destructor_definition] = STATE(641), + [sym_constructor_or_destructor_declaration] = STATE(641), + [sym_friend_declaration] = STATE(641), + [sym_access_specifier] = STATE(8976), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(641), + [sym_alias_declaration] = STATE(641), + [sym_static_assert_declaration] = STATE(641), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7103), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(641), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2502), + [aux_sym_preproc_if_token1] = ACTIONS(2504), + [aux_sym_preproc_if_token2] = ACTIONS(2614), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [aux_sym_preproc_else_token1] = ACTIONS(2510), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2514), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2530), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2536), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2550), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_static_assert] = ACTIONS(2558), + [sym_macro_statement] = ACTIONS(2596), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(635)] = { + [sym_preproc_def] = STATE(641), + [sym_preproc_function_def] = STATE(641), + [sym_preproc_call] = STATE(641), + [sym_preproc_if_in_field_declaration_list] = STATE(641), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(641), + [sym_preproc_else_in_field_declaration_list] = STATE(8897), + [sym_preproc_elif_in_field_declaration_list] = STATE(8897), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8897), + [sym_type_definition] = STATE(641), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5804), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6523), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(641), + [sym_field_declaration] = STATE(641), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1069), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(641), + [sym_operator_cast] = STATE(7103), + [sym_inline_method_definition] = STATE(641), + [sym__constructor_specifiers] = STATE(1069), + [sym_operator_cast_definition] = STATE(641), + [sym_operator_cast_declaration] = STATE(641), + [sym_constructor_or_destructor_definition] = STATE(641), + [sym_constructor_or_destructor_declaration] = STATE(641), + [sym_friend_declaration] = STATE(641), + [sym_access_specifier] = STATE(8976), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(641), + [sym_alias_declaration] = STATE(641), + [sym_static_assert_declaration] = STATE(641), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7103), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(641), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2502), + [aux_sym_preproc_if_token1] = ACTIONS(2504), + [aux_sym_preproc_if_token2] = ACTIONS(2616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [aux_sym_preproc_else_token1] = ACTIONS(2510), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2514), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2530), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2536), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2550), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_static_assert] = ACTIONS(2558), + [sym_macro_statement] = ACTIONS(2596), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(636)] = { + [sym_preproc_def] = STATE(641), + [sym_preproc_function_def] = STATE(641), + [sym_preproc_call] = STATE(641), + [sym_preproc_if_in_field_declaration_list] = STATE(641), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(641), + [sym_preproc_else_in_field_declaration_list] = STATE(9152), + [sym_preproc_elif_in_field_declaration_list] = STATE(9152), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9152), + [sym_type_definition] = STATE(641), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5804), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6523), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(641), + [sym_field_declaration] = STATE(641), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1069), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(641), + [sym_operator_cast] = STATE(7103), + [sym_inline_method_definition] = STATE(641), + [sym__constructor_specifiers] = STATE(1069), + [sym_operator_cast_definition] = STATE(641), + [sym_operator_cast_declaration] = STATE(641), + [sym_constructor_or_destructor_definition] = STATE(641), + [sym_constructor_or_destructor_declaration] = STATE(641), + [sym_friend_declaration] = STATE(641), + [sym_access_specifier] = STATE(8976), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(641), + [sym_alias_declaration] = STATE(641), + [sym_static_assert_declaration] = STATE(641), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7103), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(641), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2502), + [aux_sym_preproc_if_token1] = ACTIONS(2504), + [aux_sym_preproc_if_token2] = ACTIONS(2618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [aux_sym_preproc_else_token1] = ACTIONS(2510), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2514), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2530), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2536), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2550), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_static_assert] = ACTIONS(2558), + [sym_macro_statement] = ACTIONS(2596), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(637)] = { + [sym_preproc_def] = STATE(641), + [sym_preproc_function_def] = STATE(641), + [sym_preproc_call] = STATE(641), + [sym_preproc_if_in_field_declaration_list] = STATE(641), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(641), + [sym_preproc_else_in_field_declaration_list] = STATE(8443), + [sym_preproc_elif_in_field_declaration_list] = STATE(8443), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8443), + [sym_type_definition] = STATE(641), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5804), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6523), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(641), + [sym_field_declaration] = STATE(641), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1069), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(641), + [sym_operator_cast] = STATE(7103), + [sym_inline_method_definition] = STATE(641), + [sym__constructor_specifiers] = STATE(1069), + [sym_operator_cast_definition] = STATE(641), + [sym_operator_cast_declaration] = STATE(641), + [sym_constructor_or_destructor_definition] = STATE(641), + [sym_constructor_or_destructor_declaration] = STATE(641), + [sym_friend_declaration] = STATE(641), + [sym_access_specifier] = STATE(8976), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(641), + [sym_alias_declaration] = STATE(641), + [sym_static_assert_declaration] = STATE(641), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7103), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(641), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2502), + [aux_sym_preproc_if_token1] = ACTIONS(2504), + [aux_sym_preproc_if_token2] = ACTIONS(2620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [aux_sym_preproc_else_token1] = ACTIONS(2510), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2514), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2530), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2536), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2550), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_static_assert] = ACTIONS(2558), + [sym_macro_statement] = ACTIONS(2596), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(638)] = { + [sym_preproc_def] = STATE(641), + [sym_preproc_function_def] = STATE(641), + [sym_preproc_call] = STATE(641), + [sym_preproc_if_in_field_declaration_list] = STATE(641), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(641), + [sym_preproc_else_in_field_declaration_list] = STATE(8857), + [sym_preproc_elif_in_field_declaration_list] = STATE(8857), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8857), + [sym_type_definition] = STATE(641), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5804), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6523), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(641), + [sym_field_declaration] = STATE(641), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1069), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(641), + [sym_operator_cast] = STATE(7103), + [sym_inline_method_definition] = STATE(641), + [sym__constructor_specifiers] = STATE(1069), + [sym_operator_cast_definition] = STATE(641), + [sym_operator_cast_declaration] = STATE(641), + [sym_constructor_or_destructor_definition] = STATE(641), + [sym_constructor_or_destructor_declaration] = STATE(641), + [sym_friend_declaration] = STATE(641), + [sym_access_specifier] = STATE(8976), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(641), + [sym_alias_declaration] = STATE(641), + [sym_static_assert_declaration] = STATE(641), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7103), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(641), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2502), + [aux_sym_preproc_if_token1] = ACTIONS(2504), + [aux_sym_preproc_if_token2] = ACTIONS(2622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [aux_sym_preproc_else_token1] = ACTIONS(2510), + [aux_sym_preproc_elif_token1] = ACTIONS(2512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2514), + [sym_preproc_directive] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2530), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2536), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2550), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_static_assert] = ACTIONS(2558), + [sym_macro_statement] = ACTIONS(2596), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(639)] = { + [sym_identifier] = ACTIONS(2624), + [anon_sym_COMMA] = ACTIONS(2626), + [anon_sym_RPAREN] = ACTIONS(2626), + [anon_sym_LPAREN2] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(2626), + [anon_sym_TILDE] = ACTIONS(2626), + [anon_sym_DASH] = ACTIONS(2624), + [anon_sym_PLUS] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2626), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_SEMI] = ACTIONS(2626), + [anon_sym___extension__] = ACTIONS(2624), + [anon_sym_virtual] = ACTIONS(2624), + [anon_sym_extern] = ACTIONS(2624), + [anon_sym___attribute__] = ACTIONS(2624), + [anon_sym___attribute] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2626), + [anon_sym___declspec] = ACTIONS(2624), + [anon_sym___based] = ACTIONS(2624), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_signed] = ACTIONS(2624), + [anon_sym_unsigned] = ACTIONS(2624), + [anon_sym_long] = ACTIONS(2624), + [anon_sym_short] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_static] = ACTIONS(2624), + [anon_sym_RBRACK] = ACTIONS(2626), + [anon_sym_EQ] = ACTIONS(2626), + [anon_sym_register] = ACTIONS(2624), + [anon_sym_inline] = ACTIONS(2624), + [anon_sym___inline] = ACTIONS(2624), + [anon_sym___inline__] = ACTIONS(2624), + [anon_sym___forceinline] = ACTIONS(2624), + [anon_sym_thread_local] = ACTIONS(2624), + [anon_sym___thread] = ACTIONS(2624), + [anon_sym_const] = ACTIONS(2624), + [anon_sym_constexpr] = ACTIONS(2624), + [anon_sym_volatile] = ACTIONS(2624), + [anon_sym_restrict] = ACTIONS(2624), + [anon_sym___restrict__] = ACTIONS(2624), + [anon_sym__Atomic] = ACTIONS(2624), + [anon_sym__Noreturn] = ACTIONS(2624), + [anon_sym_noreturn] = ACTIONS(2624), + [anon_sym__Nonnull] = ACTIONS(2624), + [anon_sym_mutable] = ACTIONS(2624), + [anon_sym_constinit] = ACTIONS(2624), + [anon_sym_consteval] = ACTIONS(2624), + [anon_sym_alignas] = ACTIONS(2624), + [anon_sym__Alignas] = ACTIONS(2624), + [sym_primitive_type] = ACTIONS(2624), + [anon_sym_enum] = ACTIONS(2624), + [anon_sym_class] = ACTIONS(2624), + [anon_sym_struct] = ACTIONS(2624), + [anon_sym_union] = ACTIONS(2624), + [anon_sym_if] = ACTIONS(2624), + [anon_sym_switch] = ACTIONS(2624), + [anon_sym_case] = ACTIONS(2624), + [anon_sym_default] = ACTIONS(2624), + [anon_sym_while] = ACTIONS(2624), + [anon_sym_do] = ACTIONS(2624), + [anon_sym_for] = ACTIONS(2624), + [anon_sym_return] = ACTIONS(2624), + [anon_sym_break] = ACTIONS(2624), + [anon_sym_continue] = ACTIONS(2624), + [anon_sym_goto] = ACTIONS(2624), + [anon_sym___try] = ACTIONS(2624), + [anon_sym___leave] = ACTIONS(2624), + [anon_sym_not] = ACTIONS(2624), + [anon_sym_compl] = ACTIONS(2624), + [anon_sym_DASH_DASH] = ACTIONS(2626), + [anon_sym_PLUS_PLUS] = ACTIONS(2626), + [anon_sym_sizeof] = ACTIONS(2624), + [anon_sym___alignof__] = ACTIONS(2624), + [anon_sym___alignof] = ACTIONS(2624), + [anon_sym__alignof] = ACTIONS(2624), + [anon_sym_alignof] = ACTIONS(2624), + [anon_sym__Alignof] = ACTIONS(2624), + [anon_sym_offsetof] = ACTIONS(2624), + [anon_sym__Generic] = ACTIONS(2624), + [anon_sym_asm] = ACTIONS(2624), + [anon_sym___asm__] = ACTIONS(2624), + [anon_sym___asm] = ACTIONS(2624), + [sym_number_literal] = ACTIONS(2626), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2626), + [anon_sym_u_DQUOTE] = ACTIONS(2626), + [anon_sym_U_DQUOTE] = ACTIONS(2626), + [anon_sym_u8_DQUOTE] = ACTIONS(2626), + [anon_sym_DQUOTE] = ACTIONS(2626), + [sym_true] = ACTIONS(2624), + [sym_false] = ACTIONS(2624), + [anon_sym_NULL] = ACTIONS(2624), + [anon_sym_nullptr] = ACTIONS(2624), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2624), + [anon_sym_decltype] = ACTIONS(2624), + [anon_sym_explicit] = ACTIONS(2624), + [anon_sym_typename] = ACTIONS(2624), + [anon_sym_template] = ACTIONS(2624), + [anon_sym_GT2] = ACTIONS(2626), + [anon_sym_operator] = ACTIONS(2624), + [anon_sym_try] = ACTIONS(2624), + [anon_sym_delete] = ACTIONS(2624), + [anon_sym_throw] = ACTIONS(2624), + [anon_sym_co_return] = ACTIONS(2624), + [anon_sym_co_yield] = ACTIONS(2624), + [anon_sym_R_DQUOTE] = ACTIONS(2626), + [anon_sym_LR_DQUOTE] = ACTIONS(2626), + [anon_sym_uR_DQUOTE] = ACTIONS(2626), + [anon_sym_UR_DQUOTE] = ACTIONS(2626), + [anon_sym_u8R_DQUOTE] = ACTIONS(2626), + [anon_sym_co_await] = ACTIONS(2624), + [anon_sym_new] = ACTIONS(2624), + [anon_sym_requires] = ACTIONS(2624), + [sym_this] = ACTIONS(2624), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2624), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2624), + [anon_sym_FORWARD] = ACTIONS(2624), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2624), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2624), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2624), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2624), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2624), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2624), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2624), + [anon_sym_PS_GET] = ACTIONS(2624), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2624), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2624), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2624), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2624), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2624), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2624), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2624), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2624), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2624), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2624), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2624), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2624), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2624), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2624), + [anon_sym_MOZ_COLD] = ACTIONS(2624), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2624), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2624), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2624), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2624), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2624), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2624), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2624), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2624), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2624), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2624), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2624), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2624), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2624), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2624), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2624), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2624), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2624), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2624), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2624), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2624), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_NONNULL] = ACTIONS(2624), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2624), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2624), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2624), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2624), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2624), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_NORETURN] = ACTIONS(2624), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2624), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2624), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2624), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2624), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2624), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2624), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2624), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2624), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2624), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2624), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2624), + [anon_sym_MOZ_RAII] = ACTIONS(2624), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2624), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2624), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2624), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2624), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2624), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2624), + }, + [STATE(640)] = { + [sym_identifier] = ACTIONS(2628), + [anon_sym_COMMA] = ACTIONS(2630), + [anon_sym_RPAREN] = ACTIONS(2630), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_BANG] = ACTIONS(2630), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_AMP_AMP] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym___extension__] = ACTIONS(2628), + [anon_sym_virtual] = ACTIONS(2628), + [anon_sym_extern] = ACTIONS(2628), + [anon_sym___attribute__] = ACTIONS(2628), + [anon_sym___attribute] = ACTIONS(2628), + [anon_sym_COLON_COLON] = ACTIONS(2630), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2630), + [anon_sym___declspec] = ACTIONS(2628), + [anon_sym___based] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(2630), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_static] = ACTIONS(2628), + [anon_sym_RBRACK] = ACTIONS(2630), + [anon_sym_EQ] = ACTIONS(2630), + [anon_sym_register] = ACTIONS(2628), + [anon_sym_inline] = ACTIONS(2628), + [anon_sym___inline] = ACTIONS(2628), + [anon_sym___inline__] = ACTIONS(2628), + [anon_sym___forceinline] = ACTIONS(2628), + [anon_sym_thread_local] = ACTIONS(2628), + [anon_sym___thread] = ACTIONS(2628), + [anon_sym_const] = ACTIONS(2628), + [anon_sym_constexpr] = ACTIONS(2628), + [anon_sym_volatile] = ACTIONS(2628), + [anon_sym_restrict] = ACTIONS(2628), + [anon_sym___restrict__] = ACTIONS(2628), + [anon_sym__Atomic] = ACTIONS(2628), + [anon_sym__Noreturn] = ACTIONS(2628), + [anon_sym_noreturn] = ACTIONS(2628), + [anon_sym__Nonnull] = ACTIONS(2628), + [anon_sym_mutable] = ACTIONS(2628), + [anon_sym_constinit] = ACTIONS(2628), + [anon_sym_consteval] = ACTIONS(2628), + [anon_sym_alignas] = ACTIONS(2628), + [anon_sym__Alignas] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2628), + [anon_sym_enum] = ACTIONS(2628), + [anon_sym_class] = ACTIONS(2628), + [anon_sym_struct] = ACTIONS(2628), + [anon_sym_union] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_switch] = ACTIONS(2628), + [anon_sym_case] = ACTIONS(2628), + [anon_sym_default] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_break] = ACTIONS(2628), + [anon_sym_continue] = ACTIONS(2628), + [anon_sym_goto] = ACTIONS(2628), + [anon_sym___try] = ACTIONS(2628), + [anon_sym___leave] = ACTIONS(2628), + [anon_sym_not] = ACTIONS(2628), + [anon_sym_compl] = ACTIONS(2628), + [anon_sym_DASH_DASH] = ACTIONS(2630), + [anon_sym_PLUS_PLUS] = ACTIONS(2630), + [anon_sym_sizeof] = ACTIONS(2628), + [anon_sym___alignof__] = ACTIONS(2628), + [anon_sym___alignof] = ACTIONS(2628), + [anon_sym__alignof] = ACTIONS(2628), + [anon_sym_alignof] = ACTIONS(2628), + [anon_sym__Alignof] = ACTIONS(2628), + [anon_sym_offsetof] = ACTIONS(2628), + [anon_sym__Generic] = ACTIONS(2628), + [anon_sym_asm] = ACTIONS(2628), + [anon_sym___asm__] = ACTIONS(2628), + [anon_sym___asm] = ACTIONS(2628), + [sym_number_literal] = ACTIONS(2630), + [anon_sym_L_SQUOTE] = ACTIONS(2630), + [anon_sym_u_SQUOTE] = ACTIONS(2630), + [anon_sym_U_SQUOTE] = ACTIONS(2630), + [anon_sym_u8_SQUOTE] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_L_DQUOTE] = ACTIONS(2630), + [anon_sym_u_DQUOTE] = ACTIONS(2630), + [anon_sym_U_DQUOTE] = ACTIONS(2630), + [anon_sym_u8_DQUOTE] = ACTIONS(2630), + [anon_sym_DQUOTE] = ACTIONS(2630), + [sym_true] = ACTIONS(2628), + [sym_false] = ACTIONS(2628), + [anon_sym_NULL] = ACTIONS(2628), + [anon_sym_nullptr] = ACTIONS(2628), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2628), + [anon_sym_decltype] = ACTIONS(2628), + [anon_sym_explicit] = ACTIONS(2628), + [anon_sym_typename] = ACTIONS(2628), + [anon_sym_template] = ACTIONS(2628), + [anon_sym_GT2] = ACTIONS(2630), + [anon_sym_operator] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2628), + [anon_sym_delete] = ACTIONS(2628), + [anon_sym_throw] = ACTIONS(2628), + [anon_sym_co_return] = ACTIONS(2628), + [anon_sym_co_yield] = ACTIONS(2628), + [anon_sym_R_DQUOTE] = ACTIONS(2630), + [anon_sym_LR_DQUOTE] = ACTIONS(2630), + [anon_sym_uR_DQUOTE] = ACTIONS(2630), + [anon_sym_UR_DQUOTE] = ACTIONS(2630), + [anon_sym_u8R_DQUOTE] = ACTIONS(2630), + [anon_sym_co_await] = ACTIONS(2628), + [anon_sym_new] = ACTIONS(2628), + [anon_sym_requires] = ACTIONS(2628), + [sym_this] = ACTIONS(2628), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2628), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2628), + [anon_sym_FORWARD] = ACTIONS(2628), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2628), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2628), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2628), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2628), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2628), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2628), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2628), + [anon_sym_PS_GET] = ACTIONS(2628), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2628), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2628), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2628), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2628), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2628), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2628), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2628), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2628), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2628), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2628), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2628), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2628), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2628), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2628), + [anon_sym_MOZ_COLD] = ACTIONS(2628), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2628), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2628), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2628), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2628), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2628), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2628), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2628), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2628), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2628), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2628), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2628), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2628), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2628), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2628), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2628), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2628), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2628), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2628), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2628), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2628), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_NONNULL] = ACTIONS(2628), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2628), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2628), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2628), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2628), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2628), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_NORETURN] = ACTIONS(2628), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2628), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2628), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2628), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2628), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2628), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2628), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2628), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2628), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2628), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2628), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2628), + [anon_sym_MOZ_RAII] = ACTIONS(2628), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2628), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2628), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2628), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2628), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2628), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2628), + }, + [STATE(641)] = { + [sym_preproc_def] = STATE(641), + [sym_preproc_function_def] = STATE(641), + [sym_preproc_call] = STATE(641), + [sym_preproc_if_in_field_declaration_list] = STATE(641), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(641), + [sym_type_definition] = STATE(641), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5804), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6523), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(641), + [sym_field_declaration] = STATE(641), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1069), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(641), + [sym_operator_cast] = STATE(7103), + [sym_inline_method_definition] = STATE(641), + [sym__constructor_specifiers] = STATE(1069), + [sym_operator_cast_definition] = STATE(641), + [sym_operator_cast_declaration] = STATE(641), + [sym_constructor_or_destructor_definition] = STATE(641), + [sym_constructor_or_destructor_declaration] = STATE(641), + [sym_friend_declaration] = STATE(641), + [sym_access_specifier] = STATE(8976), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(641), + [sym_alias_declaration] = STATE(641), + [sym_static_assert_declaration] = STATE(641), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7103), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(641), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(2632), + [aux_sym_preproc_def_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token1] = ACTIONS(2638), + [aux_sym_preproc_if_token2] = ACTIONS(2641), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), + [aux_sym_preproc_else_token1] = ACTIONS(2641), + [aux_sym_preproc_elif_token1] = ACTIONS(2641), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2641), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2641), + [sym_preproc_directive] = ACTIONS(2646), + [anon_sym_LPAREN2] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2664), + [anon_sym___extension__] = ACTIONS(2667), + [anon_sym_typedef] = ACTIONS(2670), + [anon_sym_virtual] = ACTIONS(2673), + [anon_sym_extern] = ACTIONS(2676), + [anon_sym___attribute__] = ACTIONS(2679), + [anon_sym___attribute] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2682), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), + [anon_sym___declspec] = ACTIONS(2688), + [anon_sym___based] = ACTIONS(2691), + [anon_sym_signed] = ACTIONS(2694), + [anon_sym_unsigned] = ACTIONS(2694), + [anon_sym_long] = ACTIONS(2694), + [anon_sym_short] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2697), + [anon_sym_static] = ACTIONS(2676), + [anon_sym_register] = ACTIONS(2676), + [anon_sym_inline] = ACTIONS(2676), + [anon_sym___inline] = ACTIONS(2676), + [anon_sym___inline__] = ACTIONS(2676), + [anon_sym___forceinline] = ACTIONS(2676), + [anon_sym_thread_local] = ACTIONS(2676), + [anon_sym___thread] = ACTIONS(2676), + [anon_sym_const] = ACTIONS(2700), + [anon_sym_constexpr] = ACTIONS(2703), + [anon_sym_volatile] = ACTIONS(2700), + [anon_sym_restrict] = ACTIONS(2700), + [anon_sym___restrict__] = ACTIONS(2700), + [anon_sym__Atomic] = ACTIONS(2700), + [anon_sym__Noreturn] = ACTIONS(2700), + [anon_sym_noreturn] = ACTIONS(2700), + [anon_sym__Nonnull] = ACTIONS(2700), + [anon_sym_mutable] = ACTIONS(2700), + [anon_sym_constinit] = ACTIONS(2700), + [anon_sym_consteval] = ACTIONS(2700), + [anon_sym_alignas] = ACTIONS(2706), + [anon_sym__Alignas] = ACTIONS(2706), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_class] = ACTIONS(2715), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_union] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2724), + [anon_sym_decltype] = ACTIONS(2727), + [anon_sym_explicit] = ACTIONS(2730), + [anon_sym_typename] = ACTIONS(2733), + [anon_sym_template] = ACTIONS(2736), + [anon_sym_operator] = ACTIONS(2739), + [anon_sym_friend] = ACTIONS(2742), + [anon_sym_public] = ACTIONS(2745), + [anon_sym_private] = ACTIONS(2745), + [anon_sym_protected] = ACTIONS(2745), + [anon_sym_using] = ACTIONS(2748), + [anon_sym_static_assert] = ACTIONS(2751), + [sym_macro_statement] = ACTIONS(2754), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2757), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2757), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2757), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2757), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2757), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2757), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2757), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2757), + [anon_sym_MOZ_COLD] = ACTIONS(2757), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2757), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2757), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2757), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2757), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2757), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2757), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2757), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2757), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2757), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2757), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2757), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2757), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2757), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2757), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2757), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2757), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2757), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2757), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2757), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2757), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_NONNULL] = ACTIONS(2757), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2757), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2757), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2757), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2757), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2757), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_NORETURN] = ACTIONS(2757), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2757), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2757), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2757), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2757), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2757), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2757), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2757), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2757), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2757), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2757), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2757), + [anon_sym_MOZ_RAII] = ACTIONS(2757), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2757), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2757), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2757), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2757), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2757), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2757), + }, + [STATE(642)] = { + [sym_identifier] = ACTIONS(2760), + [anon_sym_LPAREN2] = ACTIONS(2763), + [anon_sym_BANG] = ACTIONS(2766), + [anon_sym_TILDE] = ACTIONS(2763), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_AMP_AMP] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2760), + [anon_sym_SEMI] = ACTIONS(2766), + [anon_sym___extension__] = ACTIONS(2760), + [anon_sym_virtual] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym___attribute__] = ACTIONS(2772), + [anon_sym___attribute] = ACTIONS(2772), + [anon_sym_COLON_COLON] = ACTIONS(2763), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2763), + [anon_sym___declspec] = ACTIONS(2772), + [anon_sym___based] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2766), + [anon_sym_signed] = ACTIONS(2772), + [anon_sym_unsigned] = ACTIONS(2772), + [anon_sym_long] = ACTIONS(2772), + [anon_sym_short] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2760), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_register] = ACTIONS(2772), + [anon_sym_inline] = ACTIONS(2772), + [anon_sym___inline] = ACTIONS(2772), + [anon_sym___inline__] = ACTIONS(2772), + [anon_sym___forceinline] = ACTIONS(2772), + [anon_sym_thread_local] = ACTIONS(2772), + [anon_sym___thread] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_constexpr] = ACTIONS(2772), + [anon_sym_volatile] = ACTIONS(2772), + [anon_sym_restrict] = ACTIONS(2772), + [anon_sym___restrict__] = ACTIONS(2772), + [anon_sym__Atomic] = ACTIONS(2772), + [anon_sym__Noreturn] = ACTIONS(2772), + [anon_sym_noreturn] = ACTIONS(2772), + [anon_sym__Nonnull] = ACTIONS(2772), + [anon_sym_mutable] = ACTIONS(2772), + [anon_sym_constinit] = ACTIONS(2772), + [anon_sym_consteval] = ACTIONS(2772), + [anon_sym_alignas] = ACTIONS(2772), + [anon_sym__Alignas] = ACTIONS(2772), + [sym_primitive_type] = ACTIONS(2760), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_class] = ACTIONS(2772), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_switch] = ACTIONS(2768), + [anon_sym_case] = ACTIONS(2768), + [anon_sym_default] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_break] = ACTIONS(2768), + [anon_sym_continue] = ACTIONS(2768), + [anon_sym_goto] = ACTIONS(2768), + [anon_sym___try] = ACTIONS(2768), + [anon_sym___leave] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(2768), + [anon_sym_compl] = ACTIONS(2768), + [anon_sym_DASH_DASH] = ACTIONS(2766), + [anon_sym_PLUS_PLUS] = ACTIONS(2766), + [anon_sym_sizeof] = ACTIONS(2768), + [anon_sym___alignof__] = ACTIONS(2768), + [anon_sym___alignof] = ACTIONS(2768), + [anon_sym__alignof] = ACTIONS(2768), + [anon_sym_alignof] = ACTIONS(2768), + [anon_sym__Alignof] = ACTIONS(2768), + [anon_sym_offsetof] = ACTIONS(2768), + [anon_sym__Generic] = ACTIONS(2768), + [anon_sym_asm] = ACTIONS(2768), + [anon_sym___asm__] = ACTIONS(2768), + [anon_sym___asm] = ACTIONS(2768), + [sym_number_literal] = ACTIONS(2766), + [anon_sym_L_SQUOTE] = ACTIONS(2766), + [anon_sym_u_SQUOTE] = ACTIONS(2766), + [anon_sym_U_SQUOTE] = ACTIONS(2766), + [anon_sym_u8_SQUOTE] = ACTIONS(2766), + [anon_sym_SQUOTE] = ACTIONS(2766), + [anon_sym_L_DQUOTE] = ACTIONS(2766), + [anon_sym_u_DQUOTE] = ACTIONS(2766), + [anon_sym_U_DQUOTE] = ACTIONS(2766), + [anon_sym_u8_DQUOTE] = ACTIONS(2766), + [anon_sym_DQUOTE] = ACTIONS(2766), + [sym_true] = ACTIONS(2768), + [sym_false] = ACTIONS(2768), + [anon_sym_NULL] = ACTIONS(2768), + [anon_sym_nullptr] = ACTIONS(2768), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2772), + [anon_sym_decltype] = ACTIONS(2760), + [anon_sym_explicit] = ACTIONS(2772), + [anon_sym_typename] = ACTIONS(2772), + [anon_sym_template] = ACTIONS(2760), + [anon_sym_operator] = ACTIONS(2772), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_delete] = ACTIONS(2768), + [anon_sym_throw] = ACTIONS(2768), + [anon_sym_co_return] = ACTIONS(2768), + [anon_sym_co_yield] = ACTIONS(2768), + [anon_sym_R_DQUOTE] = ACTIONS(2766), + [anon_sym_LR_DQUOTE] = ACTIONS(2766), + [anon_sym_uR_DQUOTE] = ACTIONS(2766), + [anon_sym_UR_DQUOTE] = ACTIONS(2766), + [anon_sym_u8R_DQUOTE] = ACTIONS(2766), + [anon_sym_co_await] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_requires] = ACTIONS(2768), + [sym_this] = ACTIONS(2768), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2768), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2768), + [anon_sym_FORWARD] = ACTIONS(2768), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2768), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2768), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2768), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2768), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2768), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2768), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2768), + [anon_sym_PS_GET] = ACTIONS(2768), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2768), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2768), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2768), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2768), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2768), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2768), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2772), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2772), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2772), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2772), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2772), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2772), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2772), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2772), + [anon_sym_MOZ_COLD] = ACTIONS(2772), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2772), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2772), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2772), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2772), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2772), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2772), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2772), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2772), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2772), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2772), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2772), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2772), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2772), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2772), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2772), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2772), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2772), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2772), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2772), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2772), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2772), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2772), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2772), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2772), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2772), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2772), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2772), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2772), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2772), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2772), + [anon_sym_MOZ_NONNULL] = ACTIONS(2772), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2772), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2772), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2772), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2772), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2772), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2772), + [anon_sym_MOZ_NORETURN] = ACTIONS(2772), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2772), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2772), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2772), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2772), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2772), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2772), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2772), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2772), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2772), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2772), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2772), + [anon_sym_MOZ_RAII] = ACTIONS(2772), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2772), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2772), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2772), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2772), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2772), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2772), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2772), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2772), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2772), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2772), + }, + [STATE(643)] = { + [sym_preproc_def] = STATE(651), + [sym_preproc_function_def] = STATE(651), + [sym_preproc_call] = STATE(651), + [sym_preproc_if_in_field_declaration_list] = STATE(651), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(651), + [sym_type_definition] = STATE(651), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(651), + [sym_field_declaration] = STATE(651), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(651), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(651), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(651), + [sym_operator_cast_declaration] = STATE(651), + [sym_constructor_or_destructor_definition] = STATE(651), + [sym_constructor_or_destructor_declaration] = STATE(651), + [sym_friend_declaration] = STATE(651), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(651), + [sym_alias_declaration] = STATE(651), + [sym_static_assert_declaration] = STATE(651), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(651), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2788), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_static_assert] = ACTIONS(2798), + [sym_macro_statement] = ACTIONS(2800), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(644)] = { + [sym_preproc_def] = STATE(651), + [sym_preproc_function_def] = STATE(651), + [sym_preproc_call] = STATE(651), + [sym_preproc_if_in_field_declaration_list] = STATE(651), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(651), + [sym_type_definition] = STATE(651), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(651), + [sym_field_declaration] = STATE(651), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(651), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(651), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(651), + [sym_operator_cast_declaration] = STATE(651), + [sym_constructor_or_destructor_definition] = STATE(651), + [sym_constructor_or_destructor_declaration] = STATE(651), + [sym_friend_declaration] = STATE(651), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(651), + [sym_alias_declaration] = STATE(651), + [sym_static_assert_declaration] = STATE(651), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(651), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2802), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_static_assert] = ACTIONS(2798), + [sym_macro_statement] = ACTIONS(2800), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(645)] = { + [sym_preproc_def] = STATE(651), + [sym_preproc_function_def] = STATE(651), + [sym_preproc_call] = STATE(651), + [sym_preproc_if_in_field_declaration_list] = STATE(651), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(651), + [sym_type_definition] = STATE(651), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(651), + [sym_field_declaration] = STATE(651), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(651), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(651), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(651), + [sym_operator_cast_declaration] = STATE(651), + [sym_constructor_or_destructor_definition] = STATE(651), + [sym_constructor_or_destructor_declaration] = STATE(651), + [sym_friend_declaration] = STATE(651), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(651), + [sym_alias_declaration] = STATE(651), + [sym_static_assert_declaration] = STATE(651), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(651), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2804), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_static_assert] = ACTIONS(2798), + [sym_macro_statement] = ACTIONS(2800), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(646)] = { + [sym_preproc_def] = STATE(653), + [sym_preproc_function_def] = STATE(653), + [sym_preproc_call] = STATE(653), + [sym_preproc_if_in_field_declaration_list] = STATE(653), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(653), + [sym_type_definition] = STATE(653), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(653), + [sym_field_declaration] = STATE(653), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(653), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(653), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(653), + [sym_operator_cast_declaration] = STATE(653), + [sym_constructor_or_destructor_definition] = STATE(653), + [sym_constructor_or_destructor_declaration] = STATE(653), + [sym_friend_declaration] = STATE(653), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(653), + [sym_alias_declaration] = STATE(653), + [sym_static_assert_declaration] = STATE(653), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(653), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2808), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_static_assert] = ACTIONS(2798), + [sym_macro_statement] = ACTIONS(2810), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(647)] = { + [sym_preproc_def] = STATE(649), + [sym_preproc_function_def] = STATE(649), + [sym_preproc_call] = STATE(649), + [sym_preproc_if_in_field_declaration_list] = STATE(649), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(649), + [sym_type_definition] = STATE(649), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(649), + [sym_field_declaration] = STATE(649), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(649), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(649), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(649), + [sym_operator_cast_declaration] = STATE(649), + [sym_constructor_or_destructor_definition] = STATE(649), + [sym_constructor_or_destructor_declaration] = STATE(649), + [sym_friend_declaration] = STATE(649), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(649), + [sym_alias_declaration] = STATE(649), + [sym_static_assert_declaration] = STATE(649), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(649), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2812), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2814), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_static_assert] = ACTIONS(2798), + [sym_macro_statement] = ACTIONS(2816), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(648)] = { + [sym_preproc_def] = STATE(644), + [sym_preproc_function_def] = STATE(644), + [sym_preproc_call] = STATE(644), + [sym_preproc_if_in_field_declaration_list] = STATE(644), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(644), + [sym_type_definition] = STATE(644), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(644), + [sym_field_declaration] = STATE(644), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(644), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(644), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(644), + [sym_operator_cast_declaration] = STATE(644), + [sym_constructor_or_destructor_definition] = STATE(644), + [sym_constructor_or_destructor_declaration] = STATE(644), + [sym_friend_declaration] = STATE(644), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(644), + [sym_alias_declaration] = STATE(644), + [sym_static_assert_declaration] = STATE(644), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(644), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2820), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_static_assert] = ACTIONS(2798), + [sym_macro_statement] = ACTIONS(2822), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(649)] = { + [sym_preproc_def] = STATE(651), + [sym_preproc_function_def] = STATE(651), + [sym_preproc_call] = STATE(651), + [sym_preproc_if_in_field_declaration_list] = STATE(651), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(651), + [sym_type_definition] = STATE(651), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(651), + [sym_field_declaration] = STATE(651), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(651), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(651), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(651), + [sym_operator_cast_declaration] = STATE(651), + [sym_constructor_or_destructor_definition] = STATE(651), + [sym_constructor_or_destructor_declaration] = STATE(651), + [sym_friend_declaration] = STATE(651), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(651), + [sym_alias_declaration] = STATE(651), + [sym_static_assert_declaration] = STATE(651), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(651), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2824), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_static_assert] = ACTIONS(2798), + [sym_macro_statement] = ACTIONS(2800), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(650)] = { + [sym_preproc_def] = STATE(667), + [sym_preproc_function_def] = STATE(667), + [sym_preproc_call] = STATE(667), + [sym_preproc_if_in_field_declaration_list] = STATE(667), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(667), + [sym_type_definition] = STATE(667), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5860), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6583), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(667), + [sym_field_declaration] = STATE(667), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(980), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(667), + [sym_operator_cast] = STATE(7106), + [sym_inline_method_definition] = STATE(667), + [sym__constructor_specifiers] = STATE(980), + [sym_operator_cast_definition] = STATE(667), + [sym_operator_cast_declaration] = STATE(667), + [sym_constructor_or_destructor_definition] = STATE(667), + [sym_constructor_or_destructor_declaration] = STATE(667), + [sym_friend_declaration] = STATE(667), + [sym_access_specifier] = STATE(8705), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(667), + [sym_alias_declaration] = STATE(667), + [sym_static_assert_declaration] = STATE(667), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7106), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(667), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2826), + [aux_sym_preproc_if_token1] = ACTIONS(2828), + [aux_sym_preproc_if_token2] = ACTIONS(2830), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2832), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2832), + [sym_preproc_directive] = ACTIONS(2834), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym___extension__] = ACTIONS(2838), + [anon_sym_typedef] = ACTIONS(2840), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2842), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2844), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2846), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2848), + [anon_sym_static_assert] = ACTIONS(2850), + [sym_macro_statement] = ACTIONS(2852), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(651)] = { + [sym_preproc_def] = STATE(651), + [sym_preproc_function_def] = STATE(651), + [sym_preproc_call] = STATE(651), + [sym_preproc_if_in_field_declaration_list] = STATE(651), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(651), + [sym_type_definition] = STATE(651), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(651), + [sym_field_declaration] = STATE(651), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(651), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(651), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(651), + [sym_operator_cast_declaration] = STATE(651), + [sym_constructor_or_destructor_definition] = STATE(651), + [sym_constructor_or_destructor_declaration] = STATE(651), + [sym_friend_declaration] = STATE(651), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(651), + [sym_alias_declaration] = STATE(651), + [sym_static_assert_declaration] = STATE(651), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(651), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2632), + [aux_sym_preproc_def_token1] = ACTIONS(2854), + [aux_sym_preproc_if_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym___extension__] = ACTIONS(2869), + [anon_sym_typedef] = ACTIONS(2872), + [anon_sym_virtual] = ACTIONS(2673), + [anon_sym_extern] = ACTIONS(2676), + [anon_sym___attribute__] = ACTIONS(2679), + [anon_sym___attribute] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2682), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), + [anon_sym___declspec] = ACTIONS(2688), + [anon_sym___based] = ACTIONS(2691), + [anon_sym_RBRACE] = ACTIONS(2875), + [anon_sym_signed] = ACTIONS(2694), + [anon_sym_unsigned] = ACTIONS(2694), + [anon_sym_long] = ACTIONS(2694), + [anon_sym_short] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2697), + [anon_sym_static] = ACTIONS(2676), + [anon_sym_register] = ACTIONS(2676), + [anon_sym_inline] = ACTIONS(2676), + [anon_sym___inline] = ACTIONS(2676), + [anon_sym___inline__] = ACTIONS(2676), + [anon_sym___forceinline] = ACTIONS(2676), + [anon_sym_thread_local] = ACTIONS(2676), + [anon_sym___thread] = ACTIONS(2676), + [anon_sym_const] = ACTIONS(2700), + [anon_sym_constexpr] = ACTIONS(2877), + [anon_sym_volatile] = ACTIONS(2700), + [anon_sym_restrict] = ACTIONS(2700), + [anon_sym___restrict__] = ACTIONS(2700), + [anon_sym__Atomic] = ACTIONS(2700), + [anon_sym__Noreturn] = ACTIONS(2700), + [anon_sym_noreturn] = ACTIONS(2700), + [anon_sym__Nonnull] = ACTIONS(2700), + [anon_sym_mutable] = ACTIONS(2700), + [anon_sym_constinit] = ACTIONS(2700), + [anon_sym_consteval] = ACTIONS(2700), + [anon_sym_alignas] = ACTIONS(2706), + [anon_sym__Alignas] = ACTIONS(2706), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_class] = ACTIONS(2715), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_union] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2724), + [anon_sym_decltype] = ACTIONS(2727), + [anon_sym_explicit] = ACTIONS(2730), + [anon_sym_typename] = ACTIONS(2733), + [anon_sym_template] = ACTIONS(2880), + [anon_sym_operator] = ACTIONS(2739), + [anon_sym_friend] = ACTIONS(2883), + [anon_sym_public] = ACTIONS(2745), + [anon_sym_private] = ACTIONS(2745), + [anon_sym_protected] = ACTIONS(2745), + [anon_sym_using] = ACTIONS(2886), + [anon_sym_static_assert] = ACTIONS(2889), + [sym_macro_statement] = ACTIONS(2892), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2757), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2757), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2757), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2757), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2757), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2757), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2757), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2757), + [anon_sym_MOZ_COLD] = ACTIONS(2757), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2757), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2757), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2757), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2757), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2757), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2757), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2757), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2757), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2757), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2757), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2757), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2757), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2757), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2757), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2757), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2757), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2757), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2757), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2757), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2757), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_NONNULL] = ACTIONS(2757), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2757), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2757), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2757), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2757), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2757), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_NORETURN] = ACTIONS(2757), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2757), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2757), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2757), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2757), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2757), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2757), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2757), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2757), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2757), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2757), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2757), + [anon_sym_MOZ_RAII] = ACTIONS(2757), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2757), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2757), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2757), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2757), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2757), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2757), + }, + [STATE(652)] = { + [sym_preproc_def] = STATE(654), + [sym_preproc_function_def] = STATE(654), + [sym_preproc_call] = STATE(654), + [sym_preproc_if_in_field_declaration_list] = STATE(654), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(654), + [sym_type_definition] = STATE(654), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(654), + [sym_field_declaration] = STATE(654), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(654), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(654), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(654), + [sym_operator_cast_declaration] = STATE(654), + [sym_constructor_or_destructor_definition] = STATE(654), + [sym_constructor_or_destructor_declaration] = STATE(654), + [sym_friend_declaration] = STATE(654), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(654), + [sym_alias_declaration] = STATE(654), + [sym_static_assert_declaration] = STATE(654), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(654), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2895), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2897), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_static_assert] = ACTIONS(2798), + [sym_macro_statement] = ACTIONS(2899), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(653)] = { + [sym_preproc_def] = STATE(651), + [sym_preproc_function_def] = STATE(651), + [sym_preproc_call] = STATE(651), + [sym_preproc_if_in_field_declaration_list] = STATE(651), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(651), + [sym_type_definition] = STATE(651), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(651), + [sym_field_declaration] = STATE(651), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(651), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(651), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(651), + [sym_operator_cast_declaration] = STATE(651), + [sym_constructor_or_destructor_definition] = STATE(651), + [sym_constructor_or_destructor_declaration] = STATE(651), + [sym_friend_declaration] = STATE(651), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(651), + [sym_alias_declaration] = STATE(651), + [sym_static_assert_declaration] = STATE(651), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(651), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2901), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_static_assert] = ACTIONS(2798), + [sym_macro_statement] = ACTIONS(2800), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(654)] = { + [sym_preproc_def] = STATE(651), + [sym_preproc_function_def] = STATE(651), + [sym_preproc_call] = STATE(651), + [sym_preproc_if_in_field_declaration_list] = STATE(651), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(651), + [sym_type_definition] = STATE(651), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(651), + [sym_field_declaration] = STATE(651), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(651), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(651), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(651), + [sym_operator_cast_declaration] = STATE(651), + [sym_constructor_or_destructor_definition] = STATE(651), + [sym_constructor_or_destructor_declaration] = STATE(651), + [sym_friend_declaration] = STATE(651), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(651), + [sym_alias_declaration] = STATE(651), + [sym_static_assert_declaration] = STATE(651), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(651), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2903), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_static_assert] = ACTIONS(2798), + [sym_macro_statement] = ACTIONS(2800), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(655)] = { + [sym_preproc_def] = STATE(656), + [sym_preproc_function_def] = STATE(656), + [sym_preproc_call] = STATE(656), + [sym_preproc_if_in_field_declaration_list] = STATE(656), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(656), + [sym_type_definition] = STATE(656), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(656), + [sym_field_declaration] = STATE(656), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(656), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(656), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(656), + [sym_operator_cast_declaration] = STATE(656), + [sym_constructor_or_destructor_definition] = STATE(656), + [sym_constructor_or_destructor_declaration] = STATE(656), + [sym_friend_declaration] = STATE(656), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(656), + [sym_alias_declaration] = STATE(656), + [sym_static_assert_declaration] = STATE(656), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(656), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2907), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_static_assert] = ACTIONS(2798), + [sym_macro_statement] = ACTIONS(2909), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(656)] = { + [sym_preproc_def] = STATE(651), + [sym_preproc_function_def] = STATE(651), + [sym_preproc_call] = STATE(651), + [sym_preproc_if_in_field_declaration_list] = STATE(651), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(651), + [sym_type_definition] = STATE(651), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(651), + [sym_field_declaration] = STATE(651), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(651), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(651), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(651), + [sym_operator_cast_declaration] = STATE(651), + [sym_constructor_or_destructor_definition] = STATE(651), + [sym_constructor_or_destructor_declaration] = STATE(651), + [sym_friend_declaration] = STATE(651), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(651), + [sym_alias_declaration] = STATE(651), + [sym_static_assert_declaration] = STATE(651), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(651), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2911), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_static_assert] = ACTIONS(2798), + [sym_macro_statement] = ACTIONS(2800), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(657)] = { + [sym_preproc_def] = STATE(645), + [sym_preproc_function_def] = STATE(645), + [sym_preproc_call] = STATE(645), + [sym_preproc_if_in_field_declaration_list] = STATE(645), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(645), + [sym_type_definition] = STATE(645), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(645), + [sym_field_declaration] = STATE(645), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(645), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(645), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(645), + [sym_operator_cast_declaration] = STATE(645), + [sym_constructor_or_destructor_definition] = STATE(645), + [sym_constructor_or_destructor_declaration] = STATE(645), + [sym_friend_declaration] = STATE(645), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(645), + [sym_alias_declaration] = STATE(645), + [sym_static_assert_declaration] = STATE(645), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(645), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2913), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2915), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_static_assert] = ACTIONS(2798), + [sym_macro_statement] = ACTIONS(2917), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(658)] = { + [sym_preproc_def] = STATE(643), + [sym_preproc_function_def] = STATE(643), + [sym_preproc_call] = STATE(643), + [sym_preproc_if_in_field_declaration_list] = STATE(643), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(643), + [sym_type_definition] = STATE(643), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(643), + [sym_field_declaration] = STATE(643), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(643), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(643), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(643), + [sym_operator_cast_declaration] = STATE(643), + [sym_constructor_or_destructor_definition] = STATE(643), + [sym_constructor_or_destructor_declaration] = STATE(643), + [sym_friend_declaration] = STATE(643), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(643), + [sym_alias_declaration] = STATE(643), + [sym_static_assert_declaration] = STATE(643), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(643), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2919), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2921), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_static_assert] = ACTIONS(2798), + [sym_macro_statement] = ACTIONS(2923), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(659)] = { + [sym_preproc_def] = STATE(660), + [sym_preproc_function_def] = STATE(660), + [sym_preproc_call] = STATE(660), + [sym_preproc_if_in_field_declaration_list] = STATE(660), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(660), + [sym_type_definition] = STATE(660), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(660), + [sym_field_declaration] = STATE(660), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(660), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(660), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(660), + [sym_operator_cast_declaration] = STATE(660), + [sym_constructor_or_destructor_definition] = STATE(660), + [sym_constructor_or_destructor_declaration] = STATE(660), + [sym_friend_declaration] = STATE(660), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(660), + [sym_alias_declaration] = STATE(660), + [sym_static_assert_declaration] = STATE(660), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(660), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2927), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_static_assert] = ACTIONS(2798), + [sym_macro_statement] = ACTIONS(2929), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(660)] = { + [sym_preproc_def] = STATE(651), + [sym_preproc_function_def] = STATE(651), + [sym_preproc_call] = STATE(651), + [sym_preproc_if_in_field_declaration_list] = STATE(651), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(651), + [sym_type_definition] = STATE(651), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(651), + [sym_field_declaration] = STATE(651), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(651), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(651), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(651), + [sym_operator_cast_declaration] = STATE(651), + [sym_constructor_or_destructor_definition] = STATE(651), + [sym_constructor_or_destructor_declaration] = STATE(651), + [sym_friend_declaration] = STATE(651), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(651), + [sym_alias_declaration] = STATE(651), + [sym_static_assert_declaration] = STATE(651), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(651), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2931), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_static_assert] = ACTIONS(2798), + [sym_macro_statement] = ACTIONS(2800), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(661)] = { + [sym_preproc_def] = STATE(662), + [sym_preproc_function_def] = STATE(662), + [sym_preproc_call] = STATE(662), + [sym_preproc_if_in_field_declaration_list] = STATE(662), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(662), + [sym_type_definition] = STATE(662), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(662), + [sym_field_declaration] = STATE(662), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(662), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(662), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(662), + [sym_operator_cast_declaration] = STATE(662), + [sym_constructor_or_destructor_definition] = STATE(662), + [sym_constructor_or_destructor_declaration] = STATE(662), + [sym_friend_declaration] = STATE(662), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(662), + [sym_alias_declaration] = STATE(662), + [sym_static_assert_declaration] = STATE(662), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(662), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2933), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2935), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_static_assert] = ACTIONS(2798), + [sym_macro_statement] = ACTIONS(2937), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(662)] = { + [sym_preproc_def] = STATE(651), + [sym_preproc_function_def] = STATE(651), + [sym_preproc_call] = STATE(651), + [sym_preproc_if_in_field_declaration_list] = STATE(651), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(651), + [sym_type_definition] = STATE(651), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(651), + [sym_field_declaration] = STATE(651), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(651), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(651), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(651), + [sym_operator_cast_declaration] = STATE(651), + [sym_constructor_or_destructor_definition] = STATE(651), + [sym_constructor_or_destructor_declaration] = STATE(651), + [sym_friend_declaration] = STATE(651), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(651), + [sym_alias_declaration] = STATE(651), + [sym_static_assert_declaration] = STATE(651), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(651), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2939), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_static_assert] = ACTIONS(2798), + [sym_macro_statement] = ACTIONS(2800), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(663)] = { + [sym_catch_clause] = STATE(666), + [aux_sym_constructor_try_statement_repeat1] = STATE(666), + [sym_identifier] = ACTIONS(1931), + [anon_sym_LPAREN2] = ACTIONS(1933), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_AMP] = ACTIONS(1933), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym___extension__] = ACTIONS(1931), + [anon_sym_typedef] = ACTIONS(1931), + [anon_sym_virtual] = ACTIONS(1931), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym___attribute__] = ACTIONS(1931), + [anon_sym___attribute] = ACTIONS(1931), + [anon_sym_COLON_COLON] = ACTIONS(1933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1933), + [anon_sym___declspec] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_static] = ACTIONS(1931), + [anon_sym_register] = ACTIONS(1931), + [anon_sym_inline] = ACTIONS(1931), + [anon_sym___inline] = ACTIONS(1931), + [anon_sym___inline__] = ACTIONS(1931), + [anon_sym___forceinline] = ACTIONS(1931), + [anon_sym_thread_local] = ACTIONS(1931), + [anon_sym___thread] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_constexpr] = ACTIONS(1931), + [anon_sym_volatile] = ACTIONS(1931), + [anon_sym_restrict] = ACTIONS(1931), + [anon_sym___restrict__] = ACTIONS(1931), + [anon_sym__Atomic] = ACTIONS(1931), + [anon_sym__Noreturn] = ACTIONS(1931), + [anon_sym_noreturn] = ACTIONS(1931), + [anon_sym__Nonnull] = ACTIONS(1931), + [anon_sym_mutable] = ACTIONS(1931), + [anon_sym_constinit] = ACTIONS(1931), + [anon_sym_consteval] = ACTIONS(1931), + [anon_sym_alignas] = ACTIONS(1931), + [anon_sym__Alignas] = ACTIONS(1931), + [sym_primitive_type] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [anon_sym_class] = ACTIONS(1931), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_union] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_else] = ACTIONS(1931), + [anon_sym_switch] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_goto] = ACTIONS(1931), + [anon_sym___try] = ACTIONS(1931), + [anon_sym___leave] = ACTIONS(1931), + [anon_sym_not] = ACTIONS(1931), + [anon_sym_compl] = ACTIONS(1931), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [anon_sym_PLUS_PLUS] = ACTIONS(1933), + [anon_sym_sizeof] = ACTIONS(1931), + [anon_sym___alignof__] = ACTIONS(1931), + [anon_sym___alignof] = ACTIONS(1931), + [anon_sym__alignof] = ACTIONS(1931), + [anon_sym_alignof] = ACTIONS(1931), + [anon_sym__Alignof] = ACTIONS(1931), + [anon_sym_offsetof] = ACTIONS(1931), + [anon_sym__Generic] = ACTIONS(1931), + [anon_sym_asm] = ACTIONS(1931), + [anon_sym___asm__] = ACTIONS(1931), + [anon_sym___asm] = ACTIONS(1931), + [sym_number_literal] = ACTIONS(1933), + [anon_sym_L_SQUOTE] = ACTIONS(1933), + [anon_sym_u_SQUOTE] = ACTIONS(1933), + [anon_sym_U_SQUOTE] = ACTIONS(1933), + [anon_sym_u8_SQUOTE] = ACTIONS(1933), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_L_DQUOTE] = ACTIONS(1933), + [anon_sym_u_DQUOTE] = ACTIONS(1933), + [anon_sym_U_DQUOTE] = ACTIONS(1933), + [anon_sym_u8_DQUOTE] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(1933), + [sym_true] = ACTIONS(1931), + [sym_false] = ACTIONS(1931), + [anon_sym_NULL] = ACTIONS(1931), + [anon_sym_nullptr] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1931), + [anon_sym_decltype] = ACTIONS(1931), + [anon_sym_typename] = ACTIONS(1931), + [anon_sym_template] = ACTIONS(1931), + [anon_sym_try] = ACTIONS(1931), + [anon_sym_delete] = ACTIONS(1931), + [anon_sym_throw] = ACTIONS(1931), + [anon_sym_co_return] = ACTIONS(1931), + [anon_sym_co_yield] = ACTIONS(1931), + [anon_sym_catch] = ACTIONS(2941), + [anon_sym_R_DQUOTE] = ACTIONS(1933), + [anon_sym_LR_DQUOTE] = ACTIONS(1933), + [anon_sym_uR_DQUOTE] = ACTIONS(1933), + [anon_sym_UR_DQUOTE] = ACTIONS(1933), + [anon_sym_u8R_DQUOTE] = ACTIONS(1933), + [anon_sym_co_await] = ACTIONS(1931), + [anon_sym_new] = ACTIONS(1931), + [anon_sym_requires] = ACTIONS(1931), + [sym_this] = ACTIONS(1931), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_FORWARD] = ACTIONS(1931), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1931), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_PS_GET] = ACTIONS(1931), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1931), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1931), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1931), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1931), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1931), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1931), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1931), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1931), + [anon_sym_MOZ_COLD] = ACTIONS(1931), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1931), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1931), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1931), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1931), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1931), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1931), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1931), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1931), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1931), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1931), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1931), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1931), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1931), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_NONNULL] = ACTIONS(1931), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1931), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1931), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1931), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1931), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1931), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1931), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1931), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1931), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1931), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1931), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1931), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1931), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1931), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1931), + [anon_sym_MOZ_RAII] = ACTIONS(1931), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1931), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1931), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1931), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1931), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1931), + }, + [STATE(664)] = { + [sym_preproc_def] = STATE(665), + [sym_preproc_function_def] = STATE(665), + [sym_preproc_call] = STATE(665), + [sym_preproc_if_in_field_declaration_list] = STATE(665), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(665), + [sym_type_definition] = STATE(665), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(665), + [sym_field_declaration] = STATE(665), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(665), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(665), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(665), + [sym_operator_cast_declaration] = STATE(665), + [sym_constructor_or_destructor_definition] = STATE(665), + [sym_constructor_or_destructor_declaration] = STATE(665), + [sym_friend_declaration] = STATE(665), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(665), + [sym_alias_declaration] = STATE(665), + [sym_static_assert_declaration] = STATE(665), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(665), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2943), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2945), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_static_assert] = ACTIONS(2798), + [sym_macro_statement] = ACTIONS(2947), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(665)] = { + [sym_preproc_def] = STATE(651), + [sym_preproc_function_def] = STATE(651), + [sym_preproc_call] = STATE(651), + [sym_preproc_if_in_field_declaration_list] = STATE(651), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(651), + [sym_type_definition] = STATE(651), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(651), + [sym_field_declaration] = STATE(651), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(651), + [sym_operator_cast] = STATE(7093), + [sym_inline_method_definition] = STATE(651), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(651), + [sym_operator_cast_declaration] = STATE(651), + [sym_constructor_or_destructor_definition] = STATE(651), + [sym_constructor_or_destructor_declaration] = STATE(651), + [sym_friend_declaration] = STATE(651), + [sym_access_specifier] = STATE(8506), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(651), + [sym_alias_declaration] = STATE(651), + [sym_static_assert_declaration] = STATE(651), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(651), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2774), + [aux_sym_preproc_if_token1] = ACTIONS(2776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), + [sym_preproc_directive] = ACTIONS(2780), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym___extension__] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2786), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2949), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_static_assert] = ACTIONS(2798), + [sym_macro_statement] = ACTIONS(2800), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(666)] = { + [sym_catch_clause] = STATE(666), + [aux_sym_constructor_try_statement_repeat1] = STATE(666), + [sym_identifier] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym___extension__] = ACTIONS(1924), + [anon_sym_typedef] = ACTIONS(1924), + [anon_sym_virtual] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym___attribute__] = ACTIONS(1924), + [anon_sym___attribute] = ACTIONS(1924), + [anon_sym_COLON_COLON] = ACTIONS(1926), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1926), + [anon_sym___declspec] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_signed] = ACTIONS(1924), + [anon_sym_unsigned] = ACTIONS(1924), + [anon_sym_long] = ACTIONS(1924), + [anon_sym_short] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_register] = ACTIONS(1924), + [anon_sym_inline] = ACTIONS(1924), + [anon_sym___inline] = ACTIONS(1924), + [anon_sym___inline__] = ACTIONS(1924), + [anon_sym___forceinline] = ACTIONS(1924), + [anon_sym_thread_local] = ACTIONS(1924), + [anon_sym___thread] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_constexpr] = ACTIONS(1924), + [anon_sym_volatile] = ACTIONS(1924), + [anon_sym_restrict] = ACTIONS(1924), + [anon_sym___restrict__] = ACTIONS(1924), + [anon_sym__Atomic] = ACTIONS(1924), + [anon_sym__Noreturn] = ACTIONS(1924), + [anon_sym_noreturn] = ACTIONS(1924), + [anon_sym__Nonnull] = ACTIONS(1924), + [anon_sym_mutable] = ACTIONS(1924), + [anon_sym_constinit] = ACTIONS(1924), + [anon_sym_consteval] = ACTIONS(1924), + [anon_sym_alignas] = ACTIONS(1924), + [anon_sym__Alignas] = ACTIONS(1924), + [sym_primitive_type] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_class] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_else] = ACTIONS(1924), + [anon_sym_switch] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_do] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_goto] = ACTIONS(1924), + [anon_sym___try] = ACTIONS(1924), + [anon_sym___leave] = ACTIONS(1924), + [anon_sym_not] = ACTIONS(1924), + [anon_sym_compl] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1924), + [anon_sym___alignof__] = ACTIONS(1924), + [anon_sym___alignof] = ACTIONS(1924), + [anon_sym__alignof] = ACTIONS(1924), + [anon_sym_alignof] = ACTIONS(1924), + [anon_sym__Alignof] = ACTIONS(1924), + [anon_sym_offsetof] = ACTIONS(1924), + [anon_sym__Generic] = ACTIONS(1924), + [anon_sym_asm] = ACTIONS(1924), + [anon_sym___asm__] = ACTIONS(1924), + [anon_sym___asm] = ACTIONS(1924), + [sym_number_literal] = ACTIONS(1926), + [anon_sym_L_SQUOTE] = ACTIONS(1926), + [anon_sym_u_SQUOTE] = ACTIONS(1926), + [anon_sym_U_SQUOTE] = ACTIONS(1926), + [anon_sym_u8_SQUOTE] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_L_DQUOTE] = ACTIONS(1926), + [anon_sym_u_DQUOTE] = ACTIONS(1926), + [anon_sym_U_DQUOTE] = ACTIONS(1926), + [anon_sym_u8_DQUOTE] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [sym_true] = ACTIONS(1924), + [sym_false] = ACTIONS(1924), + [anon_sym_NULL] = ACTIONS(1924), + [anon_sym_nullptr] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1924), + [anon_sym_decltype] = ACTIONS(1924), + [anon_sym_typename] = ACTIONS(1924), + [anon_sym_template] = ACTIONS(1924), + [anon_sym_try] = ACTIONS(1924), + [anon_sym_delete] = ACTIONS(1924), + [anon_sym_throw] = ACTIONS(1924), + [anon_sym_co_return] = ACTIONS(1924), + [anon_sym_co_yield] = ACTIONS(1924), + [anon_sym_catch] = ACTIONS(2951), + [anon_sym_R_DQUOTE] = ACTIONS(1926), + [anon_sym_LR_DQUOTE] = ACTIONS(1926), + [anon_sym_uR_DQUOTE] = ACTIONS(1926), + [anon_sym_UR_DQUOTE] = ACTIONS(1926), + [anon_sym_u8R_DQUOTE] = ACTIONS(1926), + [anon_sym_co_await] = ACTIONS(1924), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_requires] = ACTIONS(1924), + [sym_this] = ACTIONS(1924), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_FORWARD] = ACTIONS(1924), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_PS_GET] = ACTIONS(1924), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1924), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1924), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1924), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1924), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1924), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1924), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1924), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1924), + [anon_sym_MOZ_COLD] = ACTIONS(1924), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1924), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1924), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1924), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1924), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1924), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1924), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1924), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1924), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1924), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1924), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1924), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1924), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1924), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_NONNULL] = ACTIONS(1924), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1924), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1924), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1924), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1924), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1924), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1924), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1924), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1924), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1924), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1924), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1924), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1924), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1924), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1924), + [anon_sym_MOZ_RAII] = ACTIONS(1924), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1924), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1924), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1924), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1924), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1924), + }, + [STATE(667)] = { + [sym_preproc_def] = STATE(667), + [sym_preproc_function_def] = STATE(667), + [sym_preproc_call] = STATE(667), + [sym_preproc_if_in_field_declaration_list] = STATE(667), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(667), + [sym_type_definition] = STATE(667), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5860), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6583), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(667), + [sym_field_declaration] = STATE(667), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(980), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(667), + [sym_operator_cast] = STATE(7106), + [sym_inline_method_definition] = STATE(667), + [sym__constructor_specifiers] = STATE(980), + [sym_operator_cast_definition] = STATE(667), + [sym_operator_cast_declaration] = STATE(667), + [sym_constructor_or_destructor_definition] = STATE(667), + [sym_constructor_or_destructor_declaration] = STATE(667), + [sym_friend_declaration] = STATE(667), + [sym_access_specifier] = STATE(8705), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(667), + [sym_alias_declaration] = STATE(667), + [sym_static_assert_declaration] = STATE(667), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7106), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(667), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(2632), + [aux_sym_preproc_def_token1] = ACTIONS(2954), + [aux_sym_preproc_if_token1] = ACTIONS(2957), + [aux_sym_preproc_if_token2] = ACTIONS(2641), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2960), + [sym_preproc_directive] = ACTIONS(2963), + [anon_sym_LPAREN2] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2966), + [anon_sym___extension__] = ACTIONS(2969), + [anon_sym_typedef] = ACTIONS(2972), + [anon_sym_virtual] = ACTIONS(2673), + [anon_sym_extern] = ACTIONS(2676), + [anon_sym___attribute__] = ACTIONS(2679), + [anon_sym___attribute] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2682), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), + [anon_sym___declspec] = ACTIONS(2688), + [anon_sym___based] = ACTIONS(2691), + [anon_sym_signed] = ACTIONS(2694), + [anon_sym_unsigned] = ACTIONS(2694), + [anon_sym_long] = ACTIONS(2694), + [anon_sym_short] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2697), + [anon_sym_static] = ACTIONS(2676), + [anon_sym_register] = ACTIONS(2676), + [anon_sym_inline] = ACTIONS(2676), + [anon_sym___inline] = ACTIONS(2676), + [anon_sym___inline__] = ACTIONS(2676), + [anon_sym___forceinline] = ACTIONS(2676), + [anon_sym_thread_local] = ACTIONS(2676), + [anon_sym___thread] = ACTIONS(2676), + [anon_sym_const] = ACTIONS(2700), + [anon_sym_constexpr] = ACTIONS(2975), + [anon_sym_volatile] = ACTIONS(2700), + [anon_sym_restrict] = ACTIONS(2700), + [anon_sym___restrict__] = ACTIONS(2700), + [anon_sym__Atomic] = ACTIONS(2700), + [anon_sym__Noreturn] = ACTIONS(2700), + [anon_sym_noreturn] = ACTIONS(2700), + [anon_sym__Nonnull] = ACTIONS(2700), + [anon_sym_mutable] = ACTIONS(2700), + [anon_sym_constinit] = ACTIONS(2700), + [anon_sym_consteval] = ACTIONS(2700), + [anon_sym_alignas] = ACTIONS(2706), + [anon_sym__Alignas] = ACTIONS(2706), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_class] = ACTIONS(2715), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_union] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2724), + [anon_sym_decltype] = ACTIONS(2727), + [anon_sym_explicit] = ACTIONS(2730), + [anon_sym_typename] = ACTIONS(2733), + [anon_sym_template] = ACTIONS(2978), + [anon_sym_operator] = ACTIONS(2739), + [anon_sym_friend] = ACTIONS(2981), + [anon_sym_public] = ACTIONS(2745), + [anon_sym_private] = ACTIONS(2745), + [anon_sym_protected] = ACTIONS(2745), + [anon_sym_using] = ACTIONS(2984), + [anon_sym_static_assert] = ACTIONS(2987), + [sym_macro_statement] = ACTIONS(2990), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2757), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2757), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2757), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2757), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2757), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2757), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2757), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2757), + [anon_sym_MOZ_COLD] = ACTIONS(2757), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2757), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2757), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2757), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2757), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2757), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2757), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2757), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2757), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2757), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2757), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2757), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2757), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2757), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2757), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2757), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2757), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2757), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2757), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2757), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2757), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2757), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_NONNULL] = ACTIONS(2757), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2757), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2757), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2757), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2757), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2757), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_NORETURN] = ACTIONS(2757), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2757), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2757), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2757), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2757), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2757), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2757), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2757), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2757), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2757), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2757), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2757), + [anon_sym_MOZ_RAII] = ACTIONS(2757), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2757), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2757), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2757), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2757), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2757), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2757), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2757), + }, + [STATE(668)] = { + [sym_preproc_def] = STATE(650), + [sym_preproc_function_def] = STATE(650), + [sym_preproc_call] = STATE(650), + [sym_preproc_if_in_field_declaration_list] = STATE(650), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(650), + [sym_type_definition] = STATE(650), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5860), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6583), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__field_declaration_list_item] = STATE(650), + [sym_field_declaration] = STATE(650), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(980), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(650), + [sym_operator_cast] = STATE(7106), + [sym_inline_method_definition] = STATE(650), + [sym__constructor_specifiers] = STATE(980), + [sym_operator_cast_definition] = STATE(650), + [sym_operator_cast_declaration] = STATE(650), + [sym_constructor_or_destructor_definition] = STATE(650), + [sym_constructor_or_destructor_declaration] = STATE(650), + [sym_friend_declaration] = STATE(650), + [sym_access_specifier] = STATE(8705), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_using_declaration] = STATE(650), + [sym_alias_declaration] = STATE(650), + [sym_static_assert_declaration] = STATE(650), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5766), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7106), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(650), + [aux_sym__declaration_specifiers_repeat1] = STATE(1248), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(2500), + [aux_sym_preproc_def_token1] = ACTIONS(2826), + [aux_sym_preproc_if_token1] = ACTIONS(2828), + [aux_sym_preproc_if_token2] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2832), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2832), + [sym_preproc_directive] = ACTIONS(2834), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym___extension__] = ACTIONS(2838), + [anon_sym_typedef] = ACTIONS(2840), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2842), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(2844), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2846), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2848), + [anon_sym_static_assert] = ACTIONS(2850), + [sym_macro_statement] = ACTIONS(2997), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(669)] = { + [sym_else_clause] = STATE(682), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1959), + [anon_sym_BANG] = ACTIONS(1959), + [anon_sym_TILDE] = ACTIONS(1959), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym___extension__] = ACTIONS(1957), + [anon_sym_typedef] = ACTIONS(1957), + [anon_sym_virtual] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym___attribute__] = ACTIONS(1957), + [anon_sym___attribute] = ACTIONS(1957), + [anon_sym_COLON_COLON] = ACTIONS(1959), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1959), + [anon_sym___declspec] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_signed] = ACTIONS(1957), + [anon_sym_unsigned] = ACTIONS(1957), + [anon_sym_long] = ACTIONS(1957), + [anon_sym_short] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1957), + [anon_sym_static] = ACTIONS(1957), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_inline] = ACTIONS(1957), + [anon_sym___inline] = ACTIONS(1957), + [anon_sym___inline__] = ACTIONS(1957), + [anon_sym___forceinline] = ACTIONS(1957), + [anon_sym_thread_local] = ACTIONS(1957), + [anon_sym___thread] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [anon_sym_constexpr] = ACTIONS(1957), + [anon_sym_volatile] = ACTIONS(1957), + [anon_sym_restrict] = ACTIONS(1957), + [anon_sym___restrict__] = ACTIONS(1957), + [anon_sym__Atomic] = ACTIONS(1957), + [anon_sym__Noreturn] = ACTIONS(1957), + [anon_sym_noreturn] = ACTIONS(1957), + [anon_sym__Nonnull] = ACTIONS(1957), + [anon_sym_mutable] = ACTIONS(1957), + [anon_sym_constinit] = ACTIONS(1957), + [anon_sym_consteval] = ACTIONS(1957), + [anon_sym_alignas] = ACTIONS(1957), + [anon_sym__Alignas] = ACTIONS(1957), + [sym_primitive_type] = ACTIONS(1957), + [anon_sym_enum] = ACTIONS(1957), + [anon_sym_class] = ACTIONS(1957), + [anon_sym_struct] = ACTIONS(1957), + [anon_sym_union] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(2999), + [anon_sym_switch] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_goto] = ACTIONS(1957), + [anon_sym___try] = ACTIONS(1957), + [anon_sym___leave] = ACTIONS(1957), + [anon_sym_not] = ACTIONS(1957), + [anon_sym_compl] = ACTIONS(1957), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_sizeof] = ACTIONS(1957), + [anon_sym___alignof__] = ACTIONS(1957), + [anon_sym___alignof] = ACTIONS(1957), + [anon_sym__alignof] = ACTIONS(1957), + [anon_sym_alignof] = ACTIONS(1957), + [anon_sym__Alignof] = ACTIONS(1957), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1957), + [anon_sym_asm] = ACTIONS(1957), + [anon_sym___asm__] = ACTIONS(1957), + [anon_sym___asm] = ACTIONS(1957), + [sym_number_literal] = ACTIONS(1959), + [anon_sym_L_SQUOTE] = ACTIONS(1959), + [anon_sym_u_SQUOTE] = ACTIONS(1959), + [anon_sym_U_SQUOTE] = ACTIONS(1959), + [anon_sym_u8_SQUOTE] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(1959), + [anon_sym_L_DQUOTE] = ACTIONS(1959), + [anon_sym_u_DQUOTE] = ACTIONS(1959), + [anon_sym_U_DQUOTE] = ACTIONS(1959), + [anon_sym_u8_DQUOTE] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [sym_true] = ACTIONS(1957), + [sym_false] = ACTIONS(1957), + [anon_sym_NULL] = ACTIONS(1957), + [anon_sym_nullptr] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1957), + [anon_sym_decltype] = ACTIONS(1957), + [anon_sym_typename] = ACTIONS(1957), + [anon_sym_template] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_delete] = ACTIONS(1957), + [anon_sym_throw] = ACTIONS(1957), + [anon_sym_co_return] = ACTIONS(1957), + [anon_sym_co_yield] = ACTIONS(1957), + [anon_sym_R_DQUOTE] = ACTIONS(1959), + [anon_sym_LR_DQUOTE] = ACTIONS(1959), + [anon_sym_uR_DQUOTE] = ACTIONS(1959), + [anon_sym_UR_DQUOTE] = ACTIONS(1959), + [anon_sym_u8R_DQUOTE] = ACTIONS(1959), + [anon_sym_co_await] = ACTIONS(1957), + [anon_sym_new] = ACTIONS(1957), + [anon_sym_requires] = ACTIONS(1957), + [sym_this] = ACTIONS(1957), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_FORWARD] = ACTIONS(1957), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1957), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_PS_GET] = ACTIONS(1957), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1957), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1957), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1957), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1957), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1957), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1957), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1957), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1957), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1957), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1957), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1957), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1957), + [anon_sym_MOZ_COLD] = ACTIONS(1957), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1957), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1957), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1957), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1957), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1957), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1957), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1957), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1957), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1957), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1957), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1957), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1957), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1957), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1957), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1957), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1957), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1957), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1957), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1957), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1957), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1957), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_NONNULL] = ACTIONS(1957), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1957), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1957), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1957), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1957), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1957), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_NORETURN] = ACTIONS(1957), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1957), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1957), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1957), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1957), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1957), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1957), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1957), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1957), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1957), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1957), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1957), + [anon_sym_MOZ_RAII] = ACTIONS(1957), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1957), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1957), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1957), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1957), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1957), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1957), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1957), + }, + [STATE(670)] = { + [sym_identifier] = ACTIONS(1879), + [anon_sym_LPAREN2] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym___extension__] = ACTIONS(1879), + [anon_sym_typedef] = ACTIONS(1879), + [anon_sym_virtual] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym___attribute__] = ACTIONS(1879), + [anon_sym___attribute] = ACTIONS(1879), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1877), + [anon_sym___declspec] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_signed] = ACTIONS(1879), + [anon_sym_unsigned] = ACTIONS(1879), + [anon_sym_long] = ACTIONS(1879), + [anon_sym_short] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_static] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_inline] = ACTIONS(1879), + [anon_sym___inline] = ACTIONS(1879), + [anon_sym___inline__] = ACTIONS(1879), + [anon_sym___forceinline] = ACTIONS(1879), + [anon_sym_thread_local] = ACTIONS(1879), + [anon_sym___thread] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_constexpr] = ACTIONS(1879), + [anon_sym_volatile] = ACTIONS(1879), + [anon_sym_restrict] = ACTIONS(1879), + [anon_sym___restrict__] = ACTIONS(1879), + [anon_sym__Atomic] = ACTIONS(1879), + [anon_sym__Noreturn] = ACTIONS(1879), + [anon_sym_noreturn] = ACTIONS(1879), + [anon_sym__Nonnull] = ACTIONS(1879), + [anon_sym_mutable] = ACTIONS(1879), + [anon_sym_constinit] = ACTIONS(1879), + [anon_sym_consteval] = ACTIONS(1879), + [anon_sym_alignas] = ACTIONS(1879), + [anon_sym__Alignas] = ACTIONS(1879), + [sym_primitive_type] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_class] = ACTIONS(1879), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_switch] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym___try] = ACTIONS(1879), + [anon_sym___leave] = ACTIONS(1879), + [anon_sym_not] = ACTIONS(1879), + [anon_sym_compl] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_sizeof] = ACTIONS(1879), + [anon_sym___alignof__] = ACTIONS(1879), + [anon_sym___alignof] = ACTIONS(1879), + [anon_sym__alignof] = ACTIONS(1879), + [anon_sym_alignof] = ACTIONS(1879), + [anon_sym__Alignof] = ACTIONS(1879), + [anon_sym_offsetof] = ACTIONS(1879), + [anon_sym__Generic] = ACTIONS(1879), + [anon_sym_asm] = ACTIONS(1879), + [anon_sym___asm__] = ACTIONS(1879), + [anon_sym___asm] = ACTIONS(1879), + [sym_number_literal] = ACTIONS(1877), + [anon_sym_L_SQUOTE] = ACTIONS(1877), + [anon_sym_u_SQUOTE] = ACTIONS(1877), + [anon_sym_U_SQUOTE] = ACTIONS(1877), + [anon_sym_u8_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_L_DQUOTE] = ACTIONS(1877), + [anon_sym_u_DQUOTE] = ACTIONS(1877), + [anon_sym_U_DQUOTE] = ACTIONS(1877), + [anon_sym_u8_DQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1879), + [anon_sym_decltype] = ACTIONS(1879), + [anon_sym_typename] = ACTIONS(1879), + [anon_sym_template] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_delete] = ACTIONS(1879), + [anon_sym_throw] = ACTIONS(1879), + [anon_sym_co_return] = ACTIONS(1879), + [anon_sym_co_yield] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [anon_sym_R_DQUOTE] = ACTIONS(1877), + [anon_sym_LR_DQUOTE] = ACTIONS(1877), + [anon_sym_uR_DQUOTE] = ACTIONS(1877), + [anon_sym_UR_DQUOTE] = ACTIONS(1877), + [anon_sym_u8R_DQUOTE] = ACTIONS(1877), + [anon_sym_co_await] = ACTIONS(1879), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_requires] = ACTIONS(1879), + [sym_this] = ACTIONS(1879), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1879), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_FORWARD] = ACTIONS(1879), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1879), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1879), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1879), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1879), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_PS_GET] = ACTIONS(1879), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1879), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1879), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1879), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1879), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1879), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1879), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1879), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1879), + [anon_sym_MOZ_COLD] = ACTIONS(1879), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1879), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1879), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1879), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1879), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1879), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1879), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1879), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1879), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1879), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1879), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1879), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1879), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1879), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_NONNULL] = ACTIONS(1879), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1879), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1879), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1879), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1879), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1879), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1879), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1879), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1879), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1879), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1879), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1879), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1879), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), + [anon_sym_MOZ_RAII] = ACTIONS(1879), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1879), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1879), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1879), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1879), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1879), + }, + [STATE(671)] = { + [sym_identifier] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym___extension__] = ACTIONS(1953), + [anon_sym_typedef] = ACTIONS(1953), + [anon_sym_virtual] = ACTIONS(1953), + [anon_sym_extern] = ACTIONS(1953), + [anon_sym___attribute__] = ACTIONS(1953), + [anon_sym___attribute] = ACTIONS(1953), + [anon_sym_COLON_COLON] = ACTIONS(1955), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1955), + [anon_sym___declspec] = ACTIONS(1953), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_signed] = ACTIONS(1953), + [anon_sym_unsigned] = ACTIONS(1953), + [anon_sym_long] = ACTIONS(1953), + [anon_sym_short] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(1953), + [anon_sym_static] = ACTIONS(1953), + [anon_sym_register] = ACTIONS(1953), + [anon_sym_inline] = ACTIONS(1953), + [anon_sym___inline] = ACTIONS(1953), + [anon_sym___inline__] = ACTIONS(1953), + [anon_sym___forceinline] = ACTIONS(1953), + [anon_sym_thread_local] = ACTIONS(1953), + [anon_sym___thread] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [anon_sym_constexpr] = ACTIONS(1953), + [anon_sym_volatile] = ACTIONS(1953), + [anon_sym_restrict] = ACTIONS(1953), + [anon_sym___restrict__] = ACTIONS(1953), + [anon_sym__Atomic] = ACTIONS(1953), + [anon_sym__Noreturn] = ACTIONS(1953), + [anon_sym_noreturn] = ACTIONS(1953), + [anon_sym__Nonnull] = ACTIONS(1953), + [anon_sym_mutable] = ACTIONS(1953), + [anon_sym_constinit] = ACTIONS(1953), + [anon_sym_consteval] = ACTIONS(1953), + [anon_sym_alignas] = ACTIONS(1953), + [anon_sym__Alignas] = ACTIONS(1953), + [sym_primitive_type] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1953), + [anon_sym_class] = ACTIONS(1953), + [anon_sym_struct] = ACTIONS(1953), + [anon_sym_union] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_else] = ACTIONS(1953), + [anon_sym_switch] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_do] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_break] = ACTIONS(1953), + [anon_sym_continue] = ACTIONS(1953), + [anon_sym_goto] = ACTIONS(1953), + [anon_sym___try] = ACTIONS(1953), + [anon_sym___leave] = ACTIONS(1953), + [anon_sym_not] = ACTIONS(1953), + [anon_sym_compl] = ACTIONS(1953), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_sizeof] = ACTIONS(1953), + [anon_sym___alignof__] = ACTIONS(1953), + [anon_sym___alignof] = ACTIONS(1953), + [anon_sym__alignof] = ACTIONS(1953), + [anon_sym_alignof] = ACTIONS(1953), + [anon_sym__Alignof] = ACTIONS(1953), + [anon_sym_offsetof] = ACTIONS(1953), + [anon_sym__Generic] = ACTIONS(1953), + [anon_sym_asm] = ACTIONS(1953), + [anon_sym___asm__] = ACTIONS(1953), + [anon_sym___asm] = ACTIONS(1953), + [sym_number_literal] = ACTIONS(1955), + [anon_sym_L_SQUOTE] = ACTIONS(1955), + [anon_sym_u_SQUOTE] = ACTIONS(1955), + [anon_sym_U_SQUOTE] = ACTIONS(1955), + [anon_sym_u8_SQUOTE] = ACTIONS(1955), + [anon_sym_SQUOTE] = ACTIONS(1955), + [anon_sym_L_DQUOTE] = ACTIONS(1955), + [anon_sym_u_DQUOTE] = ACTIONS(1955), + [anon_sym_U_DQUOTE] = ACTIONS(1955), + [anon_sym_u8_DQUOTE] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(1955), + [sym_true] = ACTIONS(1953), + [sym_false] = ACTIONS(1953), + [anon_sym_NULL] = ACTIONS(1953), + [anon_sym_nullptr] = ACTIONS(1953), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1953), + [anon_sym_decltype] = ACTIONS(1953), + [anon_sym_typename] = ACTIONS(1953), + [anon_sym_template] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(1953), + [anon_sym_delete] = ACTIONS(1953), + [anon_sym_throw] = ACTIONS(1953), + [anon_sym_co_return] = ACTIONS(1953), + [anon_sym_co_yield] = ACTIONS(1953), + [anon_sym_catch] = ACTIONS(1953), + [anon_sym_R_DQUOTE] = ACTIONS(1955), + [anon_sym_LR_DQUOTE] = ACTIONS(1955), + [anon_sym_uR_DQUOTE] = ACTIONS(1955), + [anon_sym_UR_DQUOTE] = ACTIONS(1955), + [anon_sym_u8R_DQUOTE] = ACTIONS(1955), + [anon_sym_co_await] = ACTIONS(1953), + [anon_sym_new] = ACTIONS(1953), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1953), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_FORWARD] = ACTIONS(1953), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1953), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_PS_GET] = ACTIONS(1953), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1953), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1953), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1953), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1953), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1953), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1953), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1953), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1953), + [anon_sym_MOZ_COLD] = ACTIONS(1953), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1953), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1953), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1953), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1953), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1953), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1953), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1953), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1953), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1953), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1953), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1953), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1953), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1953), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_NONNULL] = ACTIONS(1953), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1953), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1953), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1953), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1953), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1953), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1953), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1953), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1953), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1953), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1953), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1953), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1953), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1953), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1953), + [anon_sym_MOZ_RAII] = ACTIONS(1953), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1953), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1953), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1953), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1953), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1953), + }, + [STATE(672)] = { + [sym_else_clause] = STATE(702), + [sym_identifier] = ACTIONS(1947), + [anon_sym_LPAREN2] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1949), + [anon_sym_TILDE] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1949), + [anon_sym_AMP] = ACTIONS(1949), + [anon_sym_SEMI] = ACTIONS(1949), + [anon_sym___extension__] = ACTIONS(1947), + [anon_sym_typedef] = ACTIONS(1947), + [anon_sym_virtual] = ACTIONS(1947), + [anon_sym_extern] = ACTIONS(1947), + [anon_sym___attribute__] = ACTIONS(1947), + [anon_sym___attribute] = ACTIONS(1947), + [anon_sym_COLON_COLON] = ACTIONS(1949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1949), + [anon_sym___declspec] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1949), + [anon_sym_signed] = ACTIONS(1947), + [anon_sym_unsigned] = ACTIONS(1947), + [anon_sym_long] = ACTIONS(1947), + [anon_sym_short] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_static] = ACTIONS(1947), + [anon_sym_register] = ACTIONS(1947), + [anon_sym_inline] = ACTIONS(1947), + [anon_sym___inline] = ACTIONS(1947), + [anon_sym___inline__] = ACTIONS(1947), + [anon_sym___forceinline] = ACTIONS(1947), + [anon_sym_thread_local] = ACTIONS(1947), + [anon_sym___thread] = ACTIONS(1947), + [anon_sym_const] = ACTIONS(1947), + [anon_sym_constexpr] = ACTIONS(1947), + [anon_sym_volatile] = ACTIONS(1947), + [anon_sym_restrict] = ACTIONS(1947), + [anon_sym___restrict__] = ACTIONS(1947), + [anon_sym__Atomic] = ACTIONS(1947), + [anon_sym__Noreturn] = ACTIONS(1947), + [anon_sym_noreturn] = ACTIONS(1947), + [anon_sym__Nonnull] = ACTIONS(1947), + [anon_sym_mutable] = ACTIONS(1947), + [anon_sym_constinit] = ACTIONS(1947), + [anon_sym_consteval] = ACTIONS(1947), + [anon_sym_alignas] = ACTIONS(1947), + [anon_sym__Alignas] = ACTIONS(1947), + [sym_primitive_type] = ACTIONS(1947), + [anon_sym_enum] = ACTIONS(1947), + [anon_sym_class] = ACTIONS(1947), + [anon_sym_struct] = ACTIONS(1947), + [anon_sym_union] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_else] = ACTIONS(2999), + [anon_sym_switch] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_do] = ACTIONS(1947), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_break] = ACTIONS(1947), + [anon_sym_continue] = ACTIONS(1947), + [anon_sym_goto] = ACTIONS(1947), + [anon_sym___try] = ACTIONS(1947), + [anon_sym___leave] = ACTIONS(1947), + [anon_sym_not] = ACTIONS(1947), + [anon_sym_compl] = ACTIONS(1947), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_sizeof] = ACTIONS(1947), + [anon_sym___alignof__] = ACTIONS(1947), + [anon_sym___alignof] = ACTIONS(1947), + [anon_sym__alignof] = ACTIONS(1947), + [anon_sym_alignof] = ACTIONS(1947), + [anon_sym__Alignof] = ACTIONS(1947), + [anon_sym_offsetof] = ACTIONS(1947), + [anon_sym__Generic] = ACTIONS(1947), + [anon_sym_asm] = ACTIONS(1947), + [anon_sym___asm__] = ACTIONS(1947), + [anon_sym___asm] = ACTIONS(1947), + [sym_number_literal] = ACTIONS(1949), + [anon_sym_L_SQUOTE] = ACTIONS(1949), + [anon_sym_u_SQUOTE] = ACTIONS(1949), + [anon_sym_U_SQUOTE] = ACTIONS(1949), + [anon_sym_u8_SQUOTE] = ACTIONS(1949), + [anon_sym_SQUOTE] = ACTIONS(1949), + [anon_sym_L_DQUOTE] = ACTIONS(1949), + [anon_sym_u_DQUOTE] = ACTIONS(1949), + [anon_sym_U_DQUOTE] = ACTIONS(1949), + [anon_sym_u8_DQUOTE] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1949), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [anon_sym_NULL] = ACTIONS(1947), + [anon_sym_nullptr] = ACTIONS(1947), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1947), + [anon_sym_decltype] = ACTIONS(1947), + [anon_sym_typename] = ACTIONS(1947), + [anon_sym_template] = ACTIONS(1947), + [anon_sym_try] = ACTIONS(1947), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1947), + [anon_sym_co_return] = ACTIONS(1947), + [anon_sym_co_yield] = ACTIONS(1947), + [anon_sym_R_DQUOTE] = ACTIONS(1949), + [anon_sym_LR_DQUOTE] = ACTIONS(1949), + [anon_sym_uR_DQUOTE] = ACTIONS(1949), + [anon_sym_UR_DQUOTE] = ACTIONS(1949), + [anon_sym_u8R_DQUOTE] = ACTIONS(1949), + [anon_sym_co_await] = ACTIONS(1947), + [anon_sym_new] = ACTIONS(1947), + [anon_sym_requires] = ACTIONS(1947), + [sym_this] = ACTIONS(1947), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_FORWARD] = ACTIONS(1947), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1947), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_PS_GET] = ACTIONS(1947), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1947), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1947), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1947), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1947), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1947), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1947), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1947), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1947), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1947), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1947), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1947), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1947), + [anon_sym_MOZ_COLD] = ACTIONS(1947), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1947), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1947), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1947), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1947), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1947), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1947), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1947), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1947), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1947), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1947), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1947), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1947), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1947), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1947), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1947), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1947), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1947), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1947), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1947), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1947), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1947), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_NONNULL] = ACTIONS(1947), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1947), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1947), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1947), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1947), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1947), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_NORETURN] = ACTIONS(1947), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1947), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1947), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1947), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1947), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1947), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1947), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1947), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1947), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1947), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1947), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1947), + [anon_sym_MOZ_RAII] = ACTIONS(1947), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1947), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1947), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1947), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1947), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1947), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1947), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1947), + }, + [STATE(673)] = { + [sym_identifier] = ACTIONS(1875), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym___extension__] = ACTIONS(1875), + [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_virtual] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym___attribute__] = ACTIONS(1875), + [anon_sym___attribute] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), + [anon_sym___declspec] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_inline] = ACTIONS(1875), + [anon_sym___inline] = ACTIONS(1875), + [anon_sym___inline__] = ACTIONS(1875), + [anon_sym___forceinline] = ACTIONS(1875), + [anon_sym_thread_local] = ACTIONS(1875), + [anon_sym___thread] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_constexpr] = ACTIONS(1875), + [anon_sym_volatile] = ACTIONS(1875), + [anon_sym_restrict] = ACTIONS(1875), + [anon_sym___restrict__] = ACTIONS(1875), + [anon_sym__Atomic] = ACTIONS(1875), + [anon_sym__Noreturn] = ACTIONS(1875), + [anon_sym_noreturn] = ACTIONS(1875), + [anon_sym__Nonnull] = ACTIONS(1875), + [anon_sym_mutable] = ACTIONS(1875), + [anon_sym_constinit] = ACTIONS(1875), + [anon_sym_consteval] = ACTIONS(1875), + [anon_sym_alignas] = ACTIONS(1875), + [anon_sym__Alignas] = ACTIONS(1875), + [sym_primitive_type] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_else] = ACTIONS(1875), + [anon_sym_switch] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_goto] = ACTIONS(1875), + [anon_sym___try] = ACTIONS(1875), + [anon_sym___leave] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(1875), + [anon_sym_compl] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1873), + [anon_sym_sizeof] = ACTIONS(1875), + [anon_sym___alignof__] = ACTIONS(1875), + [anon_sym___alignof] = ACTIONS(1875), + [anon_sym__alignof] = ACTIONS(1875), + [anon_sym_alignof] = ACTIONS(1875), + [anon_sym__Alignof] = ACTIONS(1875), + [anon_sym_offsetof] = ACTIONS(1875), + [anon_sym__Generic] = ACTIONS(1875), + [anon_sym_asm] = ACTIONS(1875), + [anon_sym___asm__] = ACTIONS(1875), + [anon_sym___asm] = ACTIONS(1875), + [sym_number_literal] = ACTIONS(1873), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1873), + [anon_sym_u_DQUOTE] = ACTIONS(1873), + [anon_sym_U_DQUOTE] = ACTIONS(1873), + [anon_sym_u8_DQUOTE] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym_true] = ACTIONS(1875), + [sym_false] = ACTIONS(1875), + [anon_sym_NULL] = ACTIONS(1875), + [anon_sym_nullptr] = ACTIONS(1875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1875), + [anon_sym_decltype] = ACTIONS(1875), + [anon_sym_typename] = ACTIONS(1875), + [anon_sym_template] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_delete] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1875), + [anon_sym_co_return] = ACTIONS(1875), + [anon_sym_co_yield] = ACTIONS(1875), + [anon_sym_catch] = ACTIONS(1875), + [anon_sym_R_DQUOTE] = ACTIONS(1873), + [anon_sym_LR_DQUOTE] = ACTIONS(1873), + [anon_sym_uR_DQUOTE] = ACTIONS(1873), + [anon_sym_UR_DQUOTE] = ACTIONS(1873), + [anon_sym_u8R_DQUOTE] = ACTIONS(1873), + [anon_sym_co_await] = ACTIONS(1875), + [anon_sym_new] = ACTIONS(1875), + [anon_sym_requires] = ACTIONS(1875), + [sym_this] = ACTIONS(1875), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_FORWARD] = ACTIONS(1875), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1875), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_PS_GET] = ACTIONS(1875), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1875), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1875), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1875), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1875), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1875), + [anon_sym_MOZ_COLD] = ACTIONS(1875), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1875), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1875), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1875), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1875), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1875), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1875), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1875), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1875), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1875), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1875), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1875), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1875), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_RAII] = ACTIONS(1875), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1875), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1875), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1875), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), + }, + [STATE(674)] = { + [sym_identifier] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_virtual] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2034), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [anon_sym_LBRACK] = ACTIONS(2032), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [anon_sym___inline] = ACTIONS(2032), + [anon_sym___inline__] = ACTIONS(2032), + [anon_sym___forceinline] = ACTIONS(2032), + [anon_sym_thread_local] = ACTIONS(2032), + [anon_sym___thread] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_constexpr] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym___restrict__] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym__Noreturn] = ACTIONS(2032), + [anon_sym_noreturn] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym_mutable] = ACTIONS(2032), + [anon_sym_constinit] = ACTIONS(2032), + [anon_sym_consteval] = ACTIONS(2032), + [anon_sym_alignas] = ACTIONS(2032), + [anon_sym__Alignas] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_class] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_else] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym___try] = ACTIONS(2032), + [anon_sym___leave] = ACTIONS(2032), + [anon_sym_not] = ACTIONS(2032), + [anon_sym_compl] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [anon_sym___alignof__] = ACTIONS(2032), + [anon_sym___alignof] = ACTIONS(2032), + [anon_sym__alignof] = ACTIONS(2032), + [anon_sym_alignof] = ACTIONS(2032), + [anon_sym__Alignof] = ACTIONS(2032), + [anon_sym_offsetof] = ACTIONS(2032), + [anon_sym__Generic] = ACTIONS(2032), + [anon_sym_asm] = ACTIONS(2032), + [anon_sym___asm__] = ACTIONS(2032), + [anon_sym___asm] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [anon_sym_NULL] = ACTIONS(2032), + [anon_sym_nullptr] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2032), + [anon_sym_decltype] = ACTIONS(2032), + [anon_sym_typename] = ACTIONS(2032), + [anon_sym_template] = ACTIONS(2032), + [anon_sym_try] = ACTIONS(2032), + [anon_sym_delete] = ACTIONS(2032), + [anon_sym_throw] = ACTIONS(2032), + [anon_sym_co_return] = ACTIONS(2032), + [anon_sym_co_yield] = ACTIONS(2032), + [anon_sym_R_DQUOTE] = ACTIONS(2034), + [anon_sym_LR_DQUOTE] = ACTIONS(2034), + [anon_sym_uR_DQUOTE] = ACTIONS(2034), + [anon_sym_UR_DQUOTE] = ACTIONS(2034), + [anon_sym_u8R_DQUOTE] = ACTIONS(2034), + [anon_sym_co_await] = ACTIONS(2032), + [anon_sym_new] = ACTIONS(2032), + [anon_sym_requires] = ACTIONS(2032), + [sym_this] = ACTIONS(2032), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_FORWARD] = ACTIONS(2032), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_PS_GET] = ACTIONS(2032), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2032), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2032), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2032), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2032), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2032), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2032), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2032), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2032), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2032), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2032), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2032), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2032), + [anon_sym_MOZ_COLD] = ACTIONS(2032), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2032), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2032), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2032), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2032), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2032), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2032), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2032), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2032), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2032), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2032), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2032), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2032), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2032), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2032), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2032), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2032), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2032), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2032), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2032), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2032), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2032), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_NONNULL] = ACTIONS(2032), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2032), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2032), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2032), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2032), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2032), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_NORETURN] = ACTIONS(2032), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2032), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2032), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2032), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2032), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2032), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2032), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2032), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2032), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2032), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2032), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2032), + [anon_sym_MOZ_RAII] = ACTIONS(2032), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2032), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2032), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2032), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2032), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2032), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2032), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2032), + }, + [STATE(675)] = { + [sym_identifier] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym___extension__] = ACTIONS(2036), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_virtual] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym_COLON_COLON] = ACTIONS(2038), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2038), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [anon_sym___inline] = ACTIONS(2036), + [anon_sym___inline__] = ACTIONS(2036), + [anon_sym___forceinline] = ACTIONS(2036), + [anon_sym_thread_local] = ACTIONS(2036), + [anon_sym___thread] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_constexpr] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym___restrict__] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym__Noreturn] = ACTIONS(2036), + [anon_sym_noreturn] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym_mutable] = ACTIONS(2036), + [anon_sym_constinit] = ACTIONS(2036), + [anon_sym_consteval] = ACTIONS(2036), + [anon_sym_alignas] = ACTIONS(2036), + [anon_sym__Alignas] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_class] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_else] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym___try] = ACTIONS(2036), + [anon_sym___leave] = ACTIONS(2036), + [anon_sym_not] = ACTIONS(2036), + [anon_sym_compl] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [anon_sym___alignof__] = ACTIONS(2036), + [anon_sym___alignof] = ACTIONS(2036), + [anon_sym__alignof] = ACTIONS(2036), + [anon_sym_alignof] = ACTIONS(2036), + [anon_sym__Alignof] = ACTIONS(2036), + [anon_sym_offsetof] = ACTIONS(2036), + [anon_sym__Generic] = ACTIONS(2036), + [anon_sym_asm] = ACTIONS(2036), + [anon_sym___asm__] = ACTIONS(2036), + [anon_sym___asm] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [anon_sym_NULL] = ACTIONS(2036), + [anon_sym_nullptr] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2036), + [anon_sym_decltype] = ACTIONS(2036), + [anon_sym_typename] = ACTIONS(2036), + [anon_sym_template] = ACTIONS(2036), + [anon_sym_try] = ACTIONS(2036), + [anon_sym_delete] = ACTIONS(2036), + [anon_sym_throw] = ACTIONS(2036), + [anon_sym_co_return] = ACTIONS(2036), + [anon_sym_co_yield] = ACTIONS(2036), + [anon_sym_R_DQUOTE] = ACTIONS(2038), + [anon_sym_LR_DQUOTE] = ACTIONS(2038), + [anon_sym_uR_DQUOTE] = ACTIONS(2038), + [anon_sym_UR_DQUOTE] = ACTIONS(2038), + [anon_sym_u8R_DQUOTE] = ACTIONS(2038), + [anon_sym_co_await] = ACTIONS(2036), + [anon_sym_new] = ACTIONS(2036), + [anon_sym_requires] = ACTIONS(2036), + [sym_this] = ACTIONS(2036), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_FORWARD] = ACTIONS(2036), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_PS_GET] = ACTIONS(2036), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2036), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2036), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2036), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2036), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2036), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2036), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2036), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2036), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2036), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2036), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2036), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2036), + [anon_sym_MOZ_COLD] = ACTIONS(2036), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2036), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2036), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2036), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2036), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2036), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2036), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2036), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2036), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2036), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2036), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2036), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2036), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2036), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2036), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2036), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2036), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2036), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2036), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2036), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2036), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2036), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_NONNULL] = ACTIONS(2036), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2036), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2036), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2036), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2036), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2036), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_NORETURN] = ACTIONS(2036), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2036), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2036), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2036), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2036), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2036), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2036), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2036), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2036), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2036), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2036), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2036), + [anon_sym_MOZ_RAII] = ACTIONS(2036), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2036), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2036), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2036), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2036), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2036), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2036), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2036), + }, + [STATE(676)] = { + [sym_identifier] = ACTIONS(2120), + [anon_sym_LPAREN2] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_PLUS] = ACTIONS(2120), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym___extension__] = ACTIONS(2120), + [anon_sym_typedef] = ACTIONS(2120), + [anon_sym_virtual] = ACTIONS(2120), + [anon_sym_extern] = ACTIONS(2120), + [anon_sym___attribute__] = ACTIONS(2120), + [anon_sym___attribute] = ACTIONS(2120), + [anon_sym_COLON_COLON] = ACTIONS(2122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2122), + [anon_sym___declspec] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2122), + [anon_sym_signed] = ACTIONS(2120), + [anon_sym_unsigned] = ACTIONS(2120), + [anon_sym_long] = ACTIONS(2120), + [anon_sym_short] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_register] = ACTIONS(2120), + [anon_sym_inline] = ACTIONS(2120), + [anon_sym___inline] = ACTIONS(2120), + [anon_sym___inline__] = ACTIONS(2120), + [anon_sym___forceinline] = ACTIONS(2120), + [anon_sym_thread_local] = ACTIONS(2120), + [anon_sym___thread] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_constexpr] = ACTIONS(2120), + [anon_sym_volatile] = ACTIONS(2120), + [anon_sym_restrict] = ACTIONS(2120), + [anon_sym___restrict__] = ACTIONS(2120), + [anon_sym__Atomic] = ACTIONS(2120), + [anon_sym__Noreturn] = ACTIONS(2120), + [anon_sym_noreturn] = ACTIONS(2120), + [anon_sym__Nonnull] = ACTIONS(2120), + [anon_sym_mutable] = ACTIONS(2120), + [anon_sym_constinit] = ACTIONS(2120), + [anon_sym_consteval] = ACTIONS(2120), + [anon_sym_alignas] = ACTIONS(2120), + [anon_sym__Alignas] = ACTIONS(2120), + [sym_primitive_type] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_union] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_else] = ACTIONS(2120), + [anon_sym_switch] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_do] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_goto] = ACTIONS(2120), + [anon_sym___try] = ACTIONS(2120), + [anon_sym___leave] = ACTIONS(2120), + [anon_sym_not] = ACTIONS(2120), + [anon_sym_compl] = ACTIONS(2120), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_sizeof] = ACTIONS(2120), + [anon_sym___alignof__] = ACTIONS(2120), + [anon_sym___alignof] = ACTIONS(2120), + [anon_sym__alignof] = ACTIONS(2120), + [anon_sym_alignof] = ACTIONS(2120), + [anon_sym__Alignof] = ACTIONS(2120), + [anon_sym_offsetof] = ACTIONS(2120), + [anon_sym__Generic] = ACTIONS(2120), + [anon_sym_asm] = ACTIONS(2120), + [anon_sym___asm__] = ACTIONS(2120), + [anon_sym___asm] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2122), + [anon_sym_u_DQUOTE] = ACTIONS(2122), + [anon_sym_U_DQUOTE] = ACTIONS(2122), + [anon_sym_u8_DQUOTE] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [sym_true] = ACTIONS(2120), + [sym_false] = ACTIONS(2120), + [anon_sym_NULL] = ACTIONS(2120), + [anon_sym_nullptr] = ACTIONS(2120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2120), + [anon_sym_decltype] = ACTIONS(2120), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2120), + [anon_sym_delete] = ACTIONS(2120), + [anon_sym_throw] = ACTIONS(2120), + [anon_sym_co_return] = ACTIONS(2120), + [anon_sym_co_yield] = ACTIONS(2120), + [anon_sym_R_DQUOTE] = ACTIONS(2122), + [anon_sym_LR_DQUOTE] = ACTIONS(2122), + [anon_sym_uR_DQUOTE] = ACTIONS(2122), + [anon_sym_UR_DQUOTE] = ACTIONS(2122), + [anon_sym_u8R_DQUOTE] = ACTIONS(2122), + [anon_sym_co_await] = ACTIONS(2120), + [anon_sym_new] = ACTIONS(2120), + [anon_sym_requires] = ACTIONS(2120), + [sym_this] = ACTIONS(2120), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_FORWARD] = ACTIONS(2120), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2120), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_PS_GET] = ACTIONS(2120), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2120), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2120), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2120), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2120), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2120), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2120), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2120), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2120), + [anon_sym_MOZ_COLD] = ACTIONS(2120), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2120), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2120), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2120), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2120), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2120), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2120), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2120), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2120), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2120), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2120), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2120), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2120), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2120), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_NONNULL] = ACTIONS(2120), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2120), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2120), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2120), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2120), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2120), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2120), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2120), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2120), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2120), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2120), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2120), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2120), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2120), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2120), + [anon_sym_MOZ_RAII] = ACTIONS(2120), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2120), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2120), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2120), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2120), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2120), + }, + [STATE(677)] = { + [sym_identifier] = ACTIONS(1974), + [anon_sym_LPAREN2] = ACTIONS(1976), + [anon_sym_BANG] = ACTIONS(1976), + [anon_sym_TILDE] = ACTIONS(1976), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1974), + [anon_sym_virtual] = ACTIONS(1974), + [anon_sym_extern] = ACTIONS(1974), + [anon_sym___attribute__] = ACTIONS(1974), + [anon_sym___attribute] = ACTIONS(1974), + [anon_sym_COLON_COLON] = ACTIONS(1976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1974), + [anon_sym_LBRACE] = ACTIONS(1976), + [anon_sym_signed] = ACTIONS(1974), + [anon_sym_unsigned] = ACTIONS(1974), + [anon_sym_long] = ACTIONS(1974), + [anon_sym_short] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_register] = ACTIONS(1974), + [anon_sym_inline] = ACTIONS(1974), + [anon_sym___inline] = ACTIONS(1974), + [anon_sym___inline__] = ACTIONS(1974), + [anon_sym___forceinline] = ACTIONS(1974), + [anon_sym_thread_local] = ACTIONS(1974), + [anon_sym___thread] = ACTIONS(1974), + [anon_sym_const] = ACTIONS(1974), + [anon_sym_constexpr] = ACTIONS(1974), + [anon_sym_volatile] = ACTIONS(1974), + [anon_sym_restrict] = ACTIONS(1974), + [anon_sym___restrict__] = ACTIONS(1974), + [anon_sym__Atomic] = ACTIONS(1974), + [anon_sym__Noreturn] = ACTIONS(1974), + [anon_sym_noreturn] = ACTIONS(1974), + [anon_sym__Nonnull] = ACTIONS(1974), + [anon_sym_mutable] = ACTIONS(1974), + [anon_sym_constinit] = ACTIONS(1974), + [anon_sym_consteval] = ACTIONS(1974), + [anon_sym_alignas] = ACTIONS(1974), + [anon_sym__Alignas] = ACTIONS(1974), + [sym_primitive_type] = ACTIONS(1974), + [anon_sym_enum] = ACTIONS(1974), + [anon_sym_class] = ACTIONS(1974), + [anon_sym_struct] = ACTIONS(1974), + [anon_sym_union] = ACTIONS(1974), + [anon_sym_if] = ACTIONS(1974), + [anon_sym_else] = ACTIONS(1974), + [anon_sym_switch] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1974), + [anon_sym_do] = ACTIONS(1974), + [anon_sym_for] = ACTIONS(1974), + [anon_sym_return] = ACTIONS(1974), + [anon_sym_break] = ACTIONS(1974), + [anon_sym_continue] = ACTIONS(1974), + [anon_sym_goto] = ACTIONS(1974), + [anon_sym___try] = ACTIONS(1974), + [anon_sym___leave] = ACTIONS(1974), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1976), + [anon_sym_PLUS_PLUS] = ACTIONS(1976), + [anon_sym_sizeof] = ACTIONS(1974), + [anon_sym___alignof__] = ACTIONS(1974), + [anon_sym___alignof] = ACTIONS(1974), + [anon_sym__alignof] = ACTIONS(1974), + [anon_sym_alignof] = ACTIONS(1974), + [anon_sym__Alignof] = ACTIONS(1974), + [anon_sym_offsetof] = ACTIONS(1974), + [anon_sym__Generic] = ACTIONS(1974), + [anon_sym_asm] = ACTIONS(1974), + [anon_sym___asm__] = ACTIONS(1974), + [anon_sym___asm] = ACTIONS(1974), + [sym_number_literal] = ACTIONS(1976), + [anon_sym_L_SQUOTE] = ACTIONS(1976), + [anon_sym_u_SQUOTE] = ACTIONS(1976), + [anon_sym_U_SQUOTE] = ACTIONS(1976), + [anon_sym_u8_SQUOTE] = ACTIONS(1976), + [anon_sym_SQUOTE] = ACTIONS(1976), + [anon_sym_L_DQUOTE] = ACTIONS(1976), + [anon_sym_u_DQUOTE] = ACTIONS(1976), + [anon_sym_U_DQUOTE] = ACTIONS(1976), + [anon_sym_u8_DQUOTE] = ACTIONS(1976), + [anon_sym_DQUOTE] = ACTIONS(1976), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1974), + [anon_sym_nullptr] = ACTIONS(1974), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1974), + [anon_sym_decltype] = ACTIONS(1974), + [anon_sym_typename] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1974), + [anon_sym_try] = ACTIONS(1974), + [anon_sym_delete] = ACTIONS(1974), + [anon_sym_throw] = ACTIONS(1974), + [anon_sym_co_return] = ACTIONS(1974), + [anon_sym_co_yield] = ACTIONS(1974), + [anon_sym_R_DQUOTE] = ACTIONS(1976), + [anon_sym_LR_DQUOTE] = ACTIONS(1976), + [anon_sym_uR_DQUOTE] = ACTIONS(1976), + [anon_sym_UR_DQUOTE] = ACTIONS(1976), + [anon_sym_u8R_DQUOTE] = ACTIONS(1976), + [anon_sym_co_await] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1974), + [anon_sym_requires] = ACTIONS(1974), + [sym_this] = ACTIONS(1974), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_FORWARD] = ACTIONS(1974), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1974), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_PS_GET] = ACTIONS(1974), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1974), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1974), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1974), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1974), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1974), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1974), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1974), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1974), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1974), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1974), + [anon_sym_MOZ_COLD] = ACTIONS(1974), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1974), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1974), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1974), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1974), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1974), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1974), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1974), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1974), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1974), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1974), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1974), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1974), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1974), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1974), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1974), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1974), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1974), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1974), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1974), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1974), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1974), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_NONNULL] = ACTIONS(1974), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1974), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1974), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1974), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1974), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1974), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_NORETURN] = ACTIONS(1974), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1974), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1974), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1974), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1974), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1974), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1974), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1974), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1974), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1974), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1974), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1974), + [anon_sym_MOZ_RAII] = ACTIONS(1974), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1974), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1974), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1974), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1974), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1974), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1974), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1974), + }, + [STATE(678)] = { + [sym_identifier] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym___extension__] = ACTIONS(2108), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_virtual] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym_COLON_COLON] = ACTIONS(2110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2110), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [anon_sym_LBRACK] = ACTIONS(2108), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [anon_sym___inline] = ACTIONS(2108), + [anon_sym___inline__] = ACTIONS(2108), + [anon_sym___forceinline] = ACTIONS(2108), + [anon_sym_thread_local] = ACTIONS(2108), + [anon_sym___thread] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_constexpr] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym___restrict__] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym__Noreturn] = ACTIONS(2108), + [anon_sym_noreturn] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym_mutable] = ACTIONS(2108), + [anon_sym_constinit] = ACTIONS(2108), + [anon_sym_consteval] = ACTIONS(2108), + [anon_sym_alignas] = ACTIONS(2108), + [anon_sym__Alignas] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_class] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_else] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_goto] = ACTIONS(2108), + [anon_sym___try] = ACTIONS(2108), + [anon_sym___leave] = ACTIONS(2108), + [anon_sym_not] = ACTIONS(2108), + [anon_sym_compl] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_sizeof] = ACTIONS(2108), + [anon_sym___alignof__] = ACTIONS(2108), + [anon_sym___alignof] = ACTIONS(2108), + [anon_sym__alignof] = ACTIONS(2108), + [anon_sym_alignof] = ACTIONS(2108), + [anon_sym__Alignof] = ACTIONS(2108), + [anon_sym_offsetof] = ACTIONS(2108), + [anon_sym__Generic] = ACTIONS(2108), + [anon_sym_asm] = ACTIONS(2108), + [anon_sym___asm__] = ACTIONS(2108), + [anon_sym___asm] = ACTIONS(2108), + [sym_number_literal] = ACTIONS(2110), + [anon_sym_L_SQUOTE] = ACTIONS(2110), + [anon_sym_u_SQUOTE] = ACTIONS(2110), + [anon_sym_U_SQUOTE] = ACTIONS(2110), + [anon_sym_u8_SQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [anon_sym_NULL] = ACTIONS(2108), + [anon_sym_nullptr] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2108), + [anon_sym_decltype] = ACTIONS(2108), + [anon_sym_typename] = ACTIONS(2108), + [anon_sym_template] = ACTIONS(2108), + [anon_sym_try] = ACTIONS(2108), + [anon_sym_delete] = ACTIONS(2108), + [anon_sym_throw] = ACTIONS(2108), + [anon_sym_co_return] = ACTIONS(2108), + [anon_sym_co_yield] = ACTIONS(2108), + [anon_sym_R_DQUOTE] = ACTIONS(2110), + [anon_sym_LR_DQUOTE] = ACTIONS(2110), + [anon_sym_uR_DQUOTE] = ACTIONS(2110), + [anon_sym_UR_DQUOTE] = ACTIONS(2110), + [anon_sym_u8R_DQUOTE] = ACTIONS(2110), + [anon_sym_co_await] = ACTIONS(2108), + [anon_sym_new] = ACTIONS(2108), + [anon_sym_requires] = ACTIONS(2108), + [sym_this] = ACTIONS(2108), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_FORWARD] = ACTIONS(2108), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_PS_GET] = ACTIONS(2108), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2108), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2108), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2108), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2108), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2108), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2108), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2108), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2108), + [anon_sym_MOZ_COLD] = ACTIONS(2108), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2108), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2108), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2108), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2108), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2108), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2108), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2108), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2108), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2108), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2108), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2108), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2108), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2108), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_NONNULL] = ACTIONS(2108), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2108), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2108), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2108), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2108), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2108), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2108), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2108), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2108), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2108), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2108), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2108), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2108), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2108), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2108), + [anon_sym_MOZ_RAII] = ACTIONS(2108), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2108), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2108), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2108), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2108), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2108), + }, + [STATE(679)] = { + [sym_identifier] = ACTIONS(2100), + [anon_sym_LPAREN2] = ACTIONS(2102), + [anon_sym_BANG] = ACTIONS(2102), + [anon_sym_TILDE] = ACTIONS(2102), + [anon_sym_DASH] = ACTIONS(2100), + [anon_sym_PLUS] = ACTIONS(2100), + [anon_sym_STAR] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym___extension__] = ACTIONS(2100), + [anon_sym_typedef] = ACTIONS(2100), + [anon_sym_virtual] = ACTIONS(2100), + [anon_sym_extern] = ACTIONS(2100), + [anon_sym___attribute__] = ACTIONS(2100), + [anon_sym___attribute] = ACTIONS(2100), + [anon_sym_COLON_COLON] = ACTIONS(2102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2102), + [anon_sym___declspec] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_signed] = ACTIONS(2100), + [anon_sym_unsigned] = ACTIONS(2100), + [anon_sym_long] = ACTIONS(2100), + [anon_sym_short] = ACTIONS(2100), + [anon_sym_LBRACK] = ACTIONS(2100), + [anon_sym_static] = ACTIONS(2100), + [anon_sym_register] = ACTIONS(2100), + [anon_sym_inline] = ACTIONS(2100), + [anon_sym___inline] = ACTIONS(2100), + [anon_sym___inline__] = ACTIONS(2100), + [anon_sym___forceinline] = ACTIONS(2100), + [anon_sym_thread_local] = ACTIONS(2100), + [anon_sym___thread] = ACTIONS(2100), + [anon_sym_const] = ACTIONS(2100), + [anon_sym_constexpr] = ACTIONS(2100), + [anon_sym_volatile] = ACTIONS(2100), + [anon_sym_restrict] = ACTIONS(2100), + [anon_sym___restrict__] = ACTIONS(2100), + [anon_sym__Atomic] = ACTIONS(2100), + [anon_sym__Noreturn] = ACTIONS(2100), + [anon_sym_noreturn] = ACTIONS(2100), + [anon_sym__Nonnull] = ACTIONS(2100), + [anon_sym_mutable] = ACTIONS(2100), + [anon_sym_constinit] = ACTIONS(2100), + [anon_sym_consteval] = ACTIONS(2100), + [anon_sym_alignas] = ACTIONS(2100), + [anon_sym__Alignas] = ACTIONS(2100), + [sym_primitive_type] = ACTIONS(2100), + [anon_sym_enum] = ACTIONS(2100), + [anon_sym_class] = ACTIONS(2100), + [anon_sym_struct] = ACTIONS(2100), + [anon_sym_union] = ACTIONS(2100), + [anon_sym_if] = ACTIONS(2100), + [anon_sym_else] = ACTIONS(2100), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_while] = ACTIONS(2100), + [anon_sym_do] = ACTIONS(2100), + [anon_sym_for] = ACTIONS(2100), + [anon_sym_return] = ACTIONS(2100), + [anon_sym_break] = ACTIONS(2100), + [anon_sym_continue] = ACTIONS(2100), + [anon_sym_goto] = ACTIONS(2100), + [anon_sym___try] = ACTIONS(2100), + [anon_sym___leave] = ACTIONS(2100), + [anon_sym_not] = ACTIONS(2100), + [anon_sym_compl] = ACTIONS(2100), + [anon_sym_DASH_DASH] = ACTIONS(2102), + [anon_sym_PLUS_PLUS] = ACTIONS(2102), + [anon_sym_sizeof] = ACTIONS(2100), + [anon_sym___alignof__] = ACTIONS(2100), + [anon_sym___alignof] = ACTIONS(2100), + [anon_sym__alignof] = ACTIONS(2100), + [anon_sym_alignof] = ACTIONS(2100), + [anon_sym__Alignof] = ACTIONS(2100), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2100), + [anon_sym_asm] = ACTIONS(2100), + [anon_sym___asm__] = ACTIONS(2100), + [anon_sym___asm] = ACTIONS(2100), + [sym_number_literal] = ACTIONS(2102), + [anon_sym_L_SQUOTE] = ACTIONS(2102), + [anon_sym_u_SQUOTE] = ACTIONS(2102), + [anon_sym_U_SQUOTE] = ACTIONS(2102), + [anon_sym_u8_SQUOTE] = ACTIONS(2102), + [anon_sym_SQUOTE] = ACTIONS(2102), + [anon_sym_L_DQUOTE] = ACTIONS(2102), + [anon_sym_u_DQUOTE] = ACTIONS(2102), + [anon_sym_U_DQUOTE] = ACTIONS(2102), + [anon_sym_u8_DQUOTE] = ACTIONS(2102), + [anon_sym_DQUOTE] = ACTIONS(2102), + [sym_true] = ACTIONS(2100), + [sym_false] = ACTIONS(2100), + [anon_sym_NULL] = ACTIONS(2100), + [anon_sym_nullptr] = ACTIONS(2100), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2100), + [anon_sym_decltype] = ACTIONS(2100), + [anon_sym_typename] = ACTIONS(2100), + [anon_sym_template] = ACTIONS(2100), + [anon_sym_try] = ACTIONS(2100), + [anon_sym_delete] = ACTIONS(2100), + [anon_sym_throw] = ACTIONS(2100), + [anon_sym_co_return] = ACTIONS(2100), + [anon_sym_co_yield] = ACTIONS(2100), + [anon_sym_R_DQUOTE] = ACTIONS(2102), + [anon_sym_LR_DQUOTE] = ACTIONS(2102), + [anon_sym_uR_DQUOTE] = ACTIONS(2102), + [anon_sym_UR_DQUOTE] = ACTIONS(2102), + [anon_sym_u8R_DQUOTE] = ACTIONS(2102), + [anon_sym_co_await] = ACTIONS(2100), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_requires] = ACTIONS(2100), + [sym_this] = ACTIONS(2100), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_FORWARD] = ACTIONS(2100), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2100), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_PS_GET] = ACTIONS(2100), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2100), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2100), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2100), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2100), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2100), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2100), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2100), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2100), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2100), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2100), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2100), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2100), + [anon_sym_MOZ_COLD] = ACTIONS(2100), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2100), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2100), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2100), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2100), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2100), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2100), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2100), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2100), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2100), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2100), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2100), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2100), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2100), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2100), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2100), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2100), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2100), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2100), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2100), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2100), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2100), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_NONNULL] = ACTIONS(2100), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2100), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2100), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2100), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2100), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2100), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_NORETURN] = ACTIONS(2100), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2100), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2100), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2100), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2100), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2100), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2100), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2100), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2100), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2100), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2100), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2100), + [anon_sym_MOZ_RAII] = ACTIONS(2100), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2100), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2100), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2100), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2100), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2100), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2100), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2100), + }, + [STATE(680)] = { + [sym_identifier] = ACTIONS(2148), + [anon_sym_LPAREN2] = ACTIONS(2150), + [anon_sym_BANG] = ACTIONS(2150), + [anon_sym_TILDE] = ACTIONS(2150), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_PLUS] = ACTIONS(2148), + [anon_sym_STAR] = ACTIONS(2150), + [anon_sym_AMP] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym___extension__] = ACTIONS(2148), + [anon_sym_typedef] = ACTIONS(2148), + [anon_sym_virtual] = ACTIONS(2148), + [anon_sym_extern] = ACTIONS(2148), + [anon_sym___attribute__] = ACTIONS(2148), + [anon_sym___attribute] = ACTIONS(2148), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2150), + [anon_sym___declspec] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_signed] = ACTIONS(2148), + [anon_sym_unsigned] = ACTIONS(2148), + [anon_sym_long] = ACTIONS(2148), + [anon_sym_short] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_register] = ACTIONS(2148), + [anon_sym_inline] = ACTIONS(2148), + [anon_sym___inline] = ACTIONS(2148), + [anon_sym___inline__] = ACTIONS(2148), + [anon_sym___forceinline] = ACTIONS(2148), + [anon_sym_thread_local] = ACTIONS(2148), + [anon_sym___thread] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_constexpr] = ACTIONS(2148), + [anon_sym_volatile] = ACTIONS(2148), + [anon_sym_restrict] = ACTIONS(2148), + [anon_sym___restrict__] = ACTIONS(2148), + [anon_sym__Atomic] = ACTIONS(2148), + [anon_sym__Noreturn] = ACTIONS(2148), + [anon_sym_noreturn] = ACTIONS(2148), + [anon_sym__Nonnull] = ACTIONS(2148), + [anon_sym_mutable] = ACTIONS(2148), + [anon_sym_constinit] = ACTIONS(2148), + [anon_sym_consteval] = ACTIONS(2148), + [anon_sym_alignas] = ACTIONS(2148), + [anon_sym__Alignas] = ACTIONS(2148), + [sym_primitive_type] = ACTIONS(2148), + [anon_sym_enum] = ACTIONS(2148), + [anon_sym_class] = ACTIONS(2148), + [anon_sym_struct] = ACTIONS(2148), + [anon_sym_union] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2148), + [anon_sym_else] = ACTIONS(2148), + [anon_sym_switch] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2148), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_for] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2148), + [anon_sym_break] = ACTIONS(2148), + [anon_sym_continue] = ACTIONS(2148), + [anon_sym_goto] = ACTIONS(2148), + [anon_sym___try] = ACTIONS(2148), + [anon_sym___leave] = ACTIONS(2148), + [anon_sym_not] = ACTIONS(2148), + [anon_sym_compl] = ACTIONS(2148), + [anon_sym_DASH_DASH] = ACTIONS(2150), + [anon_sym_PLUS_PLUS] = ACTIONS(2150), + [anon_sym_sizeof] = ACTIONS(2148), + [anon_sym___alignof__] = ACTIONS(2148), + [anon_sym___alignof] = ACTIONS(2148), + [anon_sym__alignof] = ACTIONS(2148), + [anon_sym_alignof] = ACTIONS(2148), + [anon_sym__Alignof] = ACTIONS(2148), + [anon_sym_offsetof] = ACTIONS(2148), + [anon_sym__Generic] = ACTIONS(2148), + [anon_sym_asm] = ACTIONS(2148), + [anon_sym___asm__] = ACTIONS(2148), + [anon_sym___asm] = ACTIONS(2148), + [sym_number_literal] = ACTIONS(2150), + [anon_sym_L_SQUOTE] = ACTIONS(2150), + [anon_sym_u_SQUOTE] = ACTIONS(2150), + [anon_sym_U_SQUOTE] = ACTIONS(2150), + [anon_sym_u8_SQUOTE] = ACTIONS(2150), + [anon_sym_SQUOTE] = ACTIONS(2150), + [anon_sym_L_DQUOTE] = ACTIONS(2150), + [anon_sym_u_DQUOTE] = ACTIONS(2150), + [anon_sym_U_DQUOTE] = ACTIONS(2150), + [anon_sym_u8_DQUOTE] = ACTIONS(2150), + [anon_sym_DQUOTE] = ACTIONS(2150), + [sym_true] = ACTIONS(2148), + [sym_false] = ACTIONS(2148), + [anon_sym_NULL] = ACTIONS(2148), + [anon_sym_nullptr] = ACTIONS(2148), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2148), + [anon_sym_decltype] = ACTIONS(2148), + [anon_sym_typename] = ACTIONS(2148), + [anon_sym_template] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2148), + [anon_sym_delete] = ACTIONS(2148), + [anon_sym_throw] = ACTIONS(2148), + [anon_sym_co_return] = ACTIONS(2148), + [anon_sym_co_yield] = ACTIONS(2148), + [anon_sym_R_DQUOTE] = ACTIONS(2150), + [anon_sym_LR_DQUOTE] = ACTIONS(2150), + [anon_sym_uR_DQUOTE] = ACTIONS(2150), + [anon_sym_UR_DQUOTE] = ACTIONS(2150), + [anon_sym_u8R_DQUOTE] = ACTIONS(2150), + [anon_sym_co_await] = ACTIONS(2148), + [anon_sym_new] = ACTIONS(2148), + [anon_sym_requires] = ACTIONS(2148), + [sym_this] = ACTIONS(2148), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_FORWARD] = ACTIONS(2148), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2148), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_PS_GET] = ACTIONS(2148), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2148), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2148), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2148), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2148), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2148), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2148), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2148), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2148), + [anon_sym_MOZ_COLD] = ACTIONS(2148), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2148), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2148), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2148), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2148), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2148), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2148), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2148), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2148), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2148), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2148), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2148), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2148), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2148), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_NONNULL] = ACTIONS(2148), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2148), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2148), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2148), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2148), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2148), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2148), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2148), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2148), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2148), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2148), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2148), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2148), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2148), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2148), + [anon_sym_MOZ_RAII] = ACTIONS(2148), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2148), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2148), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2148), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2148), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2148), + }, + [STATE(681)] = { + [sym_identifier] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym___extension__] = ACTIONS(2044), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_virtual] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym_COLON_COLON] = ACTIONS(2046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2046), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [anon_sym_LBRACK] = ACTIONS(2044), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [anon_sym___inline] = ACTIONS(2044), + [anon_sym___inline__] = ACTIONS(2044), + [anon_sym___forceinline] = ACTIONS(2044), + [anon_sym_thread_local] = ACTIONS(2044), + [anon_sym___thread] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_constexpr] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym___restrict__] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym__Noreturn] = ACTIONS(2044), + [anon_sym_noreturn] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym_mutable] = ACTIONS(2044), + [anon_sym_constinit] = ACTIONS(2044), + [anon_sym_consteval] = ACTIONS(2044), + [anon_sym_alignas] = ACTIONS(2044), + [anon_sym__Alignas] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_class] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_else] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym___try] = ACTIONS(2044), + [anon_sym___leave] = ACTIONS(2044), + [anon_sym_not] = ACTIONS(2044), + [anon_sym_compl] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [anon_sym___alignof__] = ACTIONS(2044), + [anon_sym___alignof] = ACTIONS(2044), + [anon_sym__alignof] = ACTIONS(2044), + [anon_sym_alignof] = ACTIONS(2044), + [anon_sym__Alignof] = ACTIONS(2044), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2044), + [anon_sym_asm] = ACTIONS(2044), + [anon_sym___asm__] = ACTIONS(2044), + [anon_sym___asm] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [anon_sym_NULL] = ACTIONS(2044), + [anon_sym_nullptr] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2044), + [anon_sym_decltype] = ACTIONS(2044), + [anon_sym_typename] = ACTIONS(2044), + [anon_sym_template] = ACTIONS(2044), + [anon_sym_try] = ACTIONS(2044), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_throw] = ACTIONS(2044), + [anon_sym_co_return] = ACTIONS(2044), + [anon_sym_co_yield] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2044), + [anon_sym_new] = ACTIONS(2044), + [anon_sym_requires] = ACTIONS(2044), + [sym_this] = ACTIONS(2044), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_FORWARD] = ACTIONS(2044), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_PS_GET] = ACTIONS(2044), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2044), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2044), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2044), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2044), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2044), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2044), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2044), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2044), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2044), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2044), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2044), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2044), + [anon_sym_MOZ_COLD] = ACTIONS(2044), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2044), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2044), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2044), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2044), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2044), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2044), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2044), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2044), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2044), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2044), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2044), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2044), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2044), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2044), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2044), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2044), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2044), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2044), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2044), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2044), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2044), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_NONNULL] = ACTIONS(2044), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2044), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2044), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2044), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2044), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2044), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_NORETURN] = ACTIONS(2044), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2044), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2044), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2044), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2044), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2044), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2044), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2044), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2044), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2044), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2044), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2044), + [anon_sym_MOZ_RAII] = ACTIONS(2044), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2044), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2044), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2044), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2044), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2044), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2044), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2044), + }, + [STATE(682)] = { + [sym_identifier] = ACTIONS(1970), + [anon_sym_LPAREN2] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1970), + [anon_sym_PLUS] = ACTIONS(1970), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym___extension__] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1970), + [anon_sym_virtual] = ACTIONS(1970), + [anon_sym_extern] = ACTIONS(1970), + [anon_sym___attribute__] = ACTIONS(1970), + [anon_sym___attribute] = ACTIONS(1970), + [anon_sym_COLON_COLON] = ACTIONS(1972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1970), + [anon_sym_unsigned] = ACTIONS(1970), + [anon_sym_long] = ACTIONS(1970), + [anon_sym_short] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1970), + [anon_sym_register] = ACTIONS(1970), + [anon_sym_inline] = ACTIONS(1970), + [anon_sym___inline] = ACTIONS(1970), + [anon_sym___inline__] = ACTIONS(1970), + [anon_sym___forceinline] = ACTIONS(1970), + [anon_sym_thread_local] = ACTIONS(1970), + [anon_sym___thread] = ACTIONS(1970), + [anon_sym_const] = ACTIONS(1970), + [anon_sym_constexpr] = ACTIONS(1970), + [anon_sym_volatile] = ACTIONS(1970), + [anon_sym_restrict] = ACTIONS(1970), + [anon_sym___restrict__] = ACTIONS(1970), + [anon_sym__Atomic] = ACTIONS(1970), + [anon_sym__Noreturn] = ACTIONS(1970), + [anon_sym_noreturn] = ACTIONS(1970), + [anon_sym__Nonnull] = ACTIONS(1970), + [anon_sym_mutable] = ACTIONS(1970), + [anon_sym_constinit] = ACTIONS(1970), + [anon_sym_consteval] = ACTIONS(1970), + [anon_sym_alignas] = ACTIONS(1970), + [anon_sym__Alignas] = ACTIONS(1970), + [sym_primitive_type] = ACTIONS(1970), + [anon_sym_enum] = ACTIONS(1970), + [anon_sym_class] = ACTIONS(1970), + [anon_sym_struct] = ACTIONS(1970), + [anon_sym_union] = ACTIONS(1970), + [anon_sym_if] = ACTIONS(1970), + [anon_sym_else] = ACTIONS(1970), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_while] = ACTIONS(1970), + [anon_sym_do] = ACTIONS(1970), + [anon_sym_for] = ACTIONS(1970), + [anon_sym_return] = ACTIONS(1970), + [anon_sym_break] = ACTIONS(1970), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1970), + [anon_sym___try] = ACTIONS(1970), + [anon_sym___leave] = ACTIONS(1970), + [anon_sym_not] = ACTIONS(1970), + [anon_sym_compl] = ACTIONS(1970), + [anon_sym_DASH_DASH] = ACTIONS(1972), + [anon_sym_PLUS_PLUS] = ACTIONS(1972), + [anon_sym_sizeof] = ACTIONS(1970), + [anon_sym___alignof__] = ACTIONS(1970), + [anon_sym___alignof] = ACTIONS(1970), + [anon_sym__alignof] = ACTIONS(1970), + [anon_sym_alignof] = ACTIONS(1970), + [anon_sym__Alignof] = ACTIONS(1970), + [anon_sym_offsetof] = ACTIONS(1970), + [anon_sym__Generic] = ACTIONS(1970), + [anon_sym_asm] = ACTIONS(1970), + [anon_sym___asm__] = ACTIONS(1970), + [anon_sym___asm] = ACTIONS(1970), + [sym_number_literal] = ACTIONS(1972), + [anon_sym_L_SQUOTE] = ACTIONS(1972), + [anon_sym_u_SQUOTE] = ACTIONS(1972), + [anon_sym_U_SQUOTE] = ACTIONS(1972), + [anon_sym_u8_SQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_L_DQUOTE] = ACTIONS(1972), + [anon_sym_u_DQUOTE] = ACTIONS(1972), + [anon_sym_U_DQUOTE] = ACTIONS(1972), + [anon_sym_u8_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), + [sym_true] = ACTIONS(1970), + [sym_false] = ACTIONS(1970), + [anon_sym_NULL] = ACTIONS(1970), + [anon_sym_nullptr] = ACTIONS(1970), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1970), + [anon_sym_decltype] = ACTIONS(1970), + [anon_sym_typename] = ACTIONS(1970), + [anon_sym_template] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1970), + [anon_sym_delete] = ACTIONS(1970), + [anon_sym_throw] = ACTIONS(1970), + [anon_sym_co_return] = ACTIONS(1970), + [anon_sym_co_yield] = ACTIONS(1970), + [anon_sym_R_DQUOTE] = ACTIONS(1972), + [anon_sym_LR_DQUOTE] = ACTIONS(1972), + [anon_sym_uR_DQUOTE] = ACTIONS(1972), + [anon_sym_UR_DQUOTE] = ACTIONS(1972), + [anon_sym_u8R_DQUOTE] = ACTIONS(1972), + [anon_sym_co_await] = ACTIONS(1970), + [anon_sym_new] = ACTIONS(1970), + [anon_sym_requires] = ACTIONS(1970), + [sym_this] = ACTIONS(1970), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_FORWARD] = ACTIONS(1970), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1970), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_PS_GET] = ACTIONS(1970), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1970), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1970), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1970), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1970), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1970), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1970), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1970), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1970), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1970), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1970), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1970), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1970), + [anon_sym_MOZ_COLD] = ACTIONS(1970), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1970), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1970), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1970), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1970), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1970), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1970), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1970), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1970), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1970), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1970), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1970), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1970), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1970), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1970), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1970), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1970), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1970), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1970), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1970), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1970), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1970), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_NONNULL] = ACTIONS(1970), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1970), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1970), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1970), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1970), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1970), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_NORETURN] = ACTIONS(1970), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1970), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1970), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1970), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1970), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1970), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1970), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1970), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1970), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1970), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1970), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1970), + [anon_sym_MOZ_RAII] = ACTIONS(1970), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1970), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1970), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1970), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1970), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1970), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1970), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1970), + }, + [STATE(683)] = { + [sym_identifier] = ACTIONS(1984), + [anon_sym_LPAREN2] = ACTIONS(1986), + [anon_sym_BANG] = ACTIONS(1986), + [anon_sym_TILDE] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(1986), + [anon_sym_AMP] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym___extension__] = ACTIONS(1984), + [anon_sym_typedef] = ACTIONS(1984), + [anon_sym_virtual] = ACTIONS(1984), + [anon_sym_extern] = ACTIONS(1984), + [anon_sym___attribute__] = ACTIONS(1984), + [anon_sym___attribute] = ACTIONS(1984), + [anon_sym_COLON_COLON] = ACTIONS(1986), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1986), + [anon_sym___declspec] = ACTIONS(1984), + [anon_sym_LBRACE] = ACTIONS(1986), + [anon_sym_signed] = ACTIONS(1984), + [anon_sym_unsigned] = ACTIONS(1984), + [anon_sym_long] = ACTIONS(1984), + [anon_sym_short] = ACTIONS(1984), + [anon_sym_LBRACK] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1984), + [anon_sym_register] = ACTIONS(1984), + [anon_sym_inline] = ACTIONS(1984), + [anon_sym___inline] = ACTIONS(1984), + [anon_sym___inline__] = ACTIONS(1984), + [anon_sym___forceinline] = ACTIONS(1984), + [anon_sym_thread_local] = ACTIONS(1984), + [anon_sym___thread] = ACTIONS(1984), + [anon_sym_const] = ACTIONS(1984), + [anon_sym_constexpr] = ACTIONS(1984), + [anon_sym_volatile] = ACTIONS(1984), + [anon_sym_restrict] = ACTIONS(1984), + [anon_sym___restrict__] = ACTIONS(1984), + [anon_sym__Atomic] = ACTIONS(1984), + [anon_sym__Noreturn] = ACTIONS(1984), + [anon_sym_noreturn] = ACTIONS(1984), + [anon_sym__Nonnull] = ACTIONS(1984), + [anon_sym_mutable] = ACTIONS(1984), + [anon_sym_constinit] = ACTIONS(1984), + [anon_sym_consteval] = ACTIONS(1984), + [anon_sym_alignas] = ACTIONS(1984), + [anon_sym__Alignas] = ACTIONS(1984), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1984), + [anon_sym_class] = ACTIONS(1984), + [anon_sym_struct] = ACTIONS(1984), + [anon_sym_union] = ACTIONS(1984), + [anon_sym_if] = ACTIONS(1984), + [anon_sym_else] = ACTIONS(1984), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1984), + [anon_sym_do] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1984), + [anon_sym_return] = ACTIONS(1984), + [anon_sym_break] = ACTIONS(1984), + [anon_sym_continue] = ACTIONS(1984), + [anon_sym_goto] = ACTIONS(1984), + [anon_sym___try] = ACTIONS(1984), + [anon_sym___leave] = ACTIONS(1984), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_compl] = ACTIONS(1984), + [anon_sym_DASH_DASH] = ACTIONS(1986), + [anon_sym_PLUS_PLUS] = ACTIONS(1986), + [anon_sym_sizeof] = ACTIONS(1984), + [anon_sym___alignof__] = ACTIONS(1984), + [anon_sym___alignof] = ACTIONS(1984), + [anon_sym__alignof] = ACTIONS(1984), + [anon_sym_alignof] = ACTIONS(1984), + [anon_sym__Alignof] = ACTIONS(1984), + [anon_sym_offsetof] = ACTIONS(1984), + [anon_sym__Generic] = ACTIONS(1984), + [anon_sym_asm] = ACTIONS(1984), + [anon_sym___asm__] = ACTIONS(1984), + [anon_sym___asm] = ACTIONS(1984), + [sym_number_literal] = ACTIONS(1986), + [anon_sym_L_SQUOTE] = ACTIONS(1986), + [anon_sym_u_SQUOTE] = ACTIONS(1986), + [anon_sym_U_SQUOTE] = ACTIONS(1986), + [anon_sym_u8_SQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1986), + [anon_sym_L_DQUOTE] = ACTIONS(1986), + [anon_sym_u_DQUOTE] = ACTIONS(1986), + [anon_sym_U_DQUOTE] = ACTIONS(1986), + [anon_sym_u8_DQUOTE] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [anon_sym_NULL] = ACTIONS(1984), + [anon_sym_nullptr] = ACTIONS(1984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1984), + [anon_sym_decltype] = ACTIONS(1984), + [anon_sym_typename] = ACTIONS(1984), + [anon_sym_template] = ACTIONS(1984), + [anon_sym_try] = ACTIONS(1984), + [anon_sym_delete] = ACTIONS(1984), + [anon_sym_throw] = ACTIONS(1984), + [anon_sym_co_return] = ACTIONS(1984), + [anon_sym_co_yield] = ACTIONS(1984), + [anon_sym_R_DQUOTE] = ACTIONS(1986), + [anon_sym_LR_DQUOTE] = ACTIONS(1986), + [anon_sym_uR_DQUOTE] = ACTIONS(1986), + [anon_sym_UR_DQUOTE] = ACTIONS(1986), + [anon_sym_u8R_DQUOTE] = ACTIONS(1986), + [anon_sym_co_await] = ACTIONS(1984), + [anon_sym_new] = ACTIONS(1984), + [anon_sym_requires] = ACTIONS(1984), + [sym_this] = ACTIONS(1984), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_FORWARD] = ACTIONS(1984), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1984), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_PS_GET] = ACTIONS(1984), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1984), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1984), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1984), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1984), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1984), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1984), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1984), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1984), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1984), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1984), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1984), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1984), + [anon_sym_MOZ_COLD] = ACTIONS(1984), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1984), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1984), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1984), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1984), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1984), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1984), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1984), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1984), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1984), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1984), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1984), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1984), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1984), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1984), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1984), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1984), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1984), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1984), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1984), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1984), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1984), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_NONNULL] = ACTIONS(1984), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1984), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1984), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1984), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1984), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1984), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_NORETURN] = ACTIONS(1984), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1984), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1984), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1984), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1984), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1984), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1984), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1984), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1984), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1984), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1984), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1984), + [anon_sym_MOZ_RAII] = ACTIONS(1984), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1984), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1984), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1984), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1984), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1984), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1984), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1984), + }, + [STATE(684)] = { + [sym_identifier] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_TILDE] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym___extension__] = ACTIONS(2104), + [anon_sym_typedef] = ACTIONS(2104), + [anon_sym_virtual] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2104), + [anon_sym___attribute__] = ACTIONS(2104), + [anon_sym___attribute] = ACTIONS(2104), + [anon_sym_COLON_COLON] = ACTIONS(2106), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2106), + [anon_sym___declspec] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_signed] = ACTIONS(2104), + [anon_sym_unsigned] = ACTIONS(2104), + [anon_sym_long] = ACTIONS(2104), + [anon_sym_short] = ACTIONS(2104), + [anon_sym_LBRACK] = ACTIONS(2104), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_register] = ACTIONS(2104), + [anon_sym_inline] = ACTIONS(2104), + [anon_sym___inline] = ACTIONS(2104), + [anon_sym___inline__] = ACTIONS(2104), + [anon_sym___forceinline] = ACTIONS(2104), + [anon_sym_thread_local] = ACTIONS(2104), + [anon_sym___thread] = ACTIONS(2104), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_constexpr] = ACTIONS(2104), + [anon_sym_volatile] = ACTIONS(2104), + [anon_sym_restrict] = ACTIONS(2104), + [anon_sym___restrict__] = ACTIONS(2104), + [anon_sym__Atomic] = ACTIONS(2104), + [anon_sym__Noreturn] = ACTIONS(2104), + [anon_sym_noreturn] = ACTIONS(2104), + [anon_sym__Nonnull] = ACTIONS(2104), + [anon_sym_mutable] = ACTIONS(2104), + [anon_sym_constinit] = ACTIONS(2104), + [anon_sym_consteval] = ACTIONS(2104), + [anon_sym_alignas] = ACTIONS(2104), + [anon_sym__Alignas] = ACTIONS(2104), + [sym_primitive_type] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2104), + [anon_sym_class] = ACTIONS(2104), + [anon_sym_struct] = ACTIONS(2104), + [anon_sym_union] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_else] = ACTIONS(2104), + [anon_sym_switch] = ACTIONS(2104), + [anon_sym_while] = ACTIONS(2104), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_break] = ACTIONS(2104), + [anon_sym_continue] = ACTIONS(2104), + [anon_sym_goto] = ACTIONS(2104), + [anon_sym___try] = ACTIONS(2104), + [anon_sym___leave] = ACTIONS(2104), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_compl] = ACTIONS(2104), + [anon_sym_DASH_DASH] = ACTIONS(2106), + [anon_sym_PLUS_PLUS] = ACTIONS(2106), + [anon_sym_sizeof] = ACTIONS(2104), + [anon_sym___alignof__] = ACTIONS(2104), + [anon_sym___alignof] = ACTIONS(2104), + [anon_sym__alignof] = ACTIONS(2104), + [anon_sym_alignof] = ACTIONS(2104), + [anon_sym__Alignof] = ACTIONS(2104), + [anon_sym_offsetof] = ACTIONS(2104), + [anon_sym__Generic] = ACTIONS(2104), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [anon_sym___asm] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2106), + [anon_sym_u_SQUOTE] = ACTIONS(2106), + [anon_sym_U_SQUOTE] = ACTIONS(2106), + [anon_sym_u8_SQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_L_DQUOTE] = ACTIONS(2106), + [anon_sym_u_DQUOTE] = ACTIONS(2106), + [anon_sym_U_DQUOTE] = ACTIONS(2106), + [anon_sym_u8_DQUOTE] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2106), + [sym_true] = ACTIONS(2104), + [sym_false] = ACTIONS(2104), + [anon_sym_NULL] = ACTIONS(2104), + [anon_sym_nullptr] = ACTIONS(2104), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2104), + [anon_sym_decltype] = ACTIONS(2104), + [anon_sym_typename] = ACTIONS(2104), + [anon_sym_template] = ACTIONS(2104), + [anon_sym_try] = ACTIONS(2104), + [anon_sym_delete] = ACTIONS(2104), + [anon_sym_throw] = ACTIONS(2104), + [anon_sym_co_return] = ACTIONS(2104), + [anon_sym_co_yield] = ACTIONS(2104), + [anon_sym_R_DQUOTE] = ACTIONS(2106), + [anon_sym_LR_DQUOTE] = ACTIONS(2106), + [anon_sym_uR_DQUOTE] = ACTIONS(2106), + [anon_sym_UR_DQUOTE] = ACTIONS(2106), + [anon_sym_u8R_DQUOTE] = ACTIONS(2106), + [anon_sym_co_await] = ACTIONS(2104), + [anon_sym_new] = ACTIONS(2104), + [anon_sym_requires] = ACTIONS(2104), + [sym_this] = ACTIONS(2104), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_FORWARD] = ACTIONS(2104), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_PS_GET] = ACTIONS(2104), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2104), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2104), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2104), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2104), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2104), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2104), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2104), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2104), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2104), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2104), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2104), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2104), + [anon_sym_MOZ_COLD] = ACTIONS(2104), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2104), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2104), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2104), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2104), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2104), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2104), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2104), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2104), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2104), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2104), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2104), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2104), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2104), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2104), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2104), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2104), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2104), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2104), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2104), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2104), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2104), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_NONNULL] = ACTIONS(2104), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2104), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2104), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2104), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2104), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2104), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_NORETURN] = ACTIONS(2104), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2104), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2104), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2104), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2104), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2104), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2104), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2104), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2104), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2104), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2104), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2104), + [anon_sym_MOZ_RAII] = ACTIONS(2104), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2104), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2104), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2104), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2104), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2104), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2104), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2104), + }, + [STATE(685)] = { + [sym_identifier] = ACTIONS(2020), + [anon_sym_LPAREN2] = ACTIONS(2022), + [anon_sym_BANG] = ACTIONS(2022), + [anon_sym_TILDE] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2020), + [anon_sym_PLUS] = ACTIONS(2020), + [anon_sym_STAR] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2022), + [anon_sym___extension__] = ACTIONS(2020), + [anon_sym_typedef] = ACTIONS(2020), + [anon_sym_virtual] = ACTIONS(2020), + [anon_sym_extern] = ACTIONS(2020), + [anon_sym___attribute__] = ACTIONS(2020), + [anon_sym___attribute] = ACTIONS(2020), + [anon_sym_COLON_COLON] = ACTIONS(2022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2022), + [anon_sym___declspec] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_signed] = ACTIONS(2020), + [anon_sym_unsigned] = ACTIONS(2020), + [anon_sym_long] = ACTIONS(2020), + [anon_sym_short] = ACTIONS(2020), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2020), + [anon_sym_register] = ACTIONS(2020), + [anon_sym_inline] = ACTIONS(2020), + [anon_sym___inline] = ACTIONS(2020), + [anon_sym___inline__] = ACTIONS(2020), + [anon_sym___forceinline] = ACTIONS(2020), + [anon_sym_thread_local] = ACTIONS(2020), + [anon_sym___thread] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_constexpr] = ACTIONS(2020), + [anon_sym_volatile] = ACTIONS(2020), + [anon_sym_restrict] = ACTIONS(2020), + [anon_sym___restrict__] = ACTIONS(2020), + [anon_sym__Atomic] = ACTIONS(2020), + [anon_sym__Noreturn] = ACTIONS(2020), + [anon_sym_noreturn] = ACTIONS(2020), + [anon_sym__Nonnull] = ACTIONS(2020), + [anon_sym_mutable] = ACTIONS(2020), + [anon_sym_constinit] = ACTIONS(2020), + [anon_sym_consteval] = ACTIONS(2020), + [anon_sym_alignas] = ACTIONS(2020), + [anon_sym__Alignas] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_enum] = ACTIONS(2020), + [anon_sym_class] = ACTIONS(2020), + [anon_sym_struct] = ACTIONS(2020), + [anon_sym_union] = ACTIONS(2020), + [anon_sym_if] = ACTIONS(2020), + [anon_sym_else] = ACTIONS(2020), + [anon_sym_switch] = ACTIONS(2020), + [anon_sym_while] = ACTIONS(2020), + [anon_sym_do] = ACTIONS(2020), + [anon_sym_for] = ACTIONS(2020), + [anon_sym_return] = ACTIONS(2020), + [anon_sym_break] = ACTIONS(2020), + [anon_sym_continue] = ACTIONS(2020), + [anon_sym_goto] = ACTIONS(2020), + [anon_sym___try] = ACTIONS(2020), + [anon_sym___leave] = ACTIONS(2020), + [anon_sym_not] = ACTIONS(2020), + [anon_sym_compl] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2020), + [anon_sym___alignof__] = ACTIONS(2020), + [anon_sym___alignof] = ACTIONS(2020), + [anon_sym__alignof] = ACTIONS(2020), + [anon_sym_alignof] = ACTIONS(2020), + [anon_sym__Alignof] = ACTIONS(2020), + [anon_sym_offsetof] = ACTIONS(2020), + [anon_sym__Generic] = ACTIONS(2020), + [anon_sym_asm] = ACTIONS(2020), + [anon_sym___asm__] = ACTIONS(2020), + [anon_sym___asm] = ACTIONS(2020), + [sym_number_literal] = ACTIONS(2022), + [anon_sym_L_SQUOTE] = ACTIONS(2022), + [anon_sym_u_SQUOTE] = ACTIONS(2022), + [anon_sym_U_SQUOTE] = ACTIONS(2022), + [anon_sym_u8_SQUOTE] = ACTIONS(2022), + [anon_sym_SQUOTE] = ACTIONS(2022), + [anon_sym_L_DQUOTE] = ACTIONS(2022), + [anon_sym_u_DQUOTE] = ACTIONS(2022), + [anon_sym_U_DQUOTE] = ACTIONS(2022), + [anon_sym_u8_DQUOTE] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2022), + [sym_true] = ACTIONS(2020), + [sym_false] = ACTIONS(2020), + [anon_sym_NULL] = ACTIONS(2020), + [anon_sym_nullptr] = ACTIONS(2020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2020), + [anon_sym_decltype] = ACTIONS(2020), + [anon_sym_typename] = ACTIONS(2020), + [anon_sym_template] = ACTIONS(2020), + [anon_sym_try] = ACTIONS(2020), + [anon_sym_delete] = ACTIONS(2020), + [anon_sym_throw] = ACTIONS(2020), + [anon_sym_co_return] = ACTIONS(2020), + [anon_sym_co_yield] = ACTIONS(2020), + [anon_sym_R_DQUOTE] = ACTIONS(2022), + [anon_sym_LR_DQUOTE] = ACTIONS(2022), + [anon_sym_uR_DQUOTE] = ACTIONS(2022), + [anon_sym_UR_DQUOTE] = ACTIONS(2022), + [anon_sym_u8R_DQUOTE] = ACTIONS(2022), + [anon_sym_co_await] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2020), + [anon_sym_requires] = ACTIONS(2020), + [sym_this] = ACTIONS(2020), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_FORWARD] = ACTIONS(2020), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2020), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_PS_GET] = ACTIONS(2020), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2020), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2020), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2020), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2020), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2020), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2020), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2020), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2020), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2020), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2020), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2020), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2020), + [anon_sym_MOZ_COLD] = ACTIONS(2020), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2020), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2020), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2020), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2020), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2020), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2020), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2020), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2020), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2020), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2020), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2020), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2020), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2020), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2020), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2020), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2020), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2020), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2020), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2020), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2020), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2020), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_NONNULL] = ACTIONS(2020), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2020), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2020), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2020), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2020), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2020), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_NORETURN] = ACTIONS(2020), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2020), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2020), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2020), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2020), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2020), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2020), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2020), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2020), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2020), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2020), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2020), + [anon_sym_MOZ_RAII] = ACTIONS(2020), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2020), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2020), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2020), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2020), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2020), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2020), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2020), + }, + [STATE(686)] = { + [sym_identifier] = ACTIONS(2168), + [anon_sym_LPAREN2] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2168), + [anon_sym_PLUS] = ACTIONS(2168), + [anon_sym_STAR] = ACTIONS(2170), + [anon_sym_AMP] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym___extension__] = ACTIONS(2168), + [anon_sym_typedef] = ACTIONS(2168), + [anon_sym_virtual] = ACTIONS(2168), + [anon_sym_extern] = ACTIONS(2168), + [anon_sym___attribute__] = ACTIONS(2168), + [anon_sym___attribute] = ACTIONS(2168), + [anon_sym_COLON_COLON] = ACTIONS(2170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2170), + [anon_sym___declspec] = ACTIONS(2168), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_signed] = ACTIONS(2168), + [anon_sym_unsigned] = ACTIONS(2168), + [anon_sym_long] = ACTIONS(2168), + [anon_sym_short] = ACTIONS(2168), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_static] = ACTIONS(2168), + [anon_sym_register] = ACTIONS(2168), + [anon_sym_inline] = ACTIONS(2168), + [anon_sym___inline] = ACTIONS(2168), + [anon_sym___inline__] = ACTIONS(2168), + [anon_sym___forceinline] = ACTIONS(2168), + [anon_sym_thread_local] = ACTIONS(2168), + [anon_sym___thread] = ACTIONS(2168), + [anon_sym_const] = ACTIONS(2168), + [anon_sym_constexpr] = ACTIONS(2168), + [anon_sym_volatile] = ACTIONS(2168), + [anon_sym_restrict] = ACTIONS(2168), + [anon_sym___restrict__] = ACTIONS(2168), + [anon_sym__Atomic] = ACTIONS(2168), + [anon_sym__Noreturn] = ACTIONS(2168), + [anon_sym_noreturn] = ACTIONS(2168), + [anon_sym__Nonnull] = ACTIONS(2168), + [anon_sym_mutable] = ACTIONS(2168), + [anon_sym_constinit] = ACTIONS(2168), + [anon_sym_consteval] = ACTIONS(2168), + [anon_sym_alignas] = ACTIONS(2168), + [anon_sym__Alignas] = ACTIONS(2168), + [sym_primitive_type] = ACTIONS(2168), + [anon_sym_enum] = ACTIONS(2168), + [anon_sym_class] = ACTIONS(2168), + [anon_sym_struct] = ACTIONS(2168), + [anon_sym_union] = ACTIONS(2168), + [anon_sym_if] = ACTIONS(2168), + [anon_sym_else] = ACTIONS(2168), + [anon_sym_switch] = ACTIONS(2168), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_do] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2168), + [anon_sym_return] = ACTIONS(2168), + [anon_sym_break] = ACTIONS(2168), + [anon_sym_continue] = ACTIONS(2168), + [anon_sym_goto] = ACTIONS(2168), + [anon_sym___try] = ACTIONS(2168), + [anon_sym___leave] = ACTIONS(2168), + [anon_sym_not] = ACTIONS(2168), + [anon_sym_compl] = ACTIONS(2168), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_sizeof] = ACTIONS(2168), + [anon_sym___alignof__] = ACTIONS(2168), + [anon_sym___alignof] = ACTIONS(2168), + [anon_sym__alignof] = ACTIONS(2168), + [anon_sym_alignof] = ACTIONS(2168), + [anon_sym__Alignof] = ACTIONS(2168), + [anon_sym_offsetof] = ACTIONS(2168), + [anon_sym__Generic] = ACTIONS(2168), + [anon_sym_asm] = ACTIONS(2168), + [anon_sym___asm__] = ACTIONS(2168), + [anon_sym___asm] = ACTIONS(2168), + [sym_number_literal] = ACTIONS(2170), + [anon_sym_L_SQUOTE] = ACTIONS(2170), + [anon_sym_u_SQUOTE] = ACTIONS(2170), + [anon_sym_U_SQUOTE] = ACTIONS(2170), + [anon_sym_u8_SQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_L_DQUOTE] = ACTIONS(2170), + [anon_sym_u_DQUOTE] = ACTIONS(2170), + [anon_sym_U_DQUOTE] = ACTIONS(2170), + [anon_sym_u8_DQUOTE] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2168), + [anon_sym_nullptr] = ACTIONS(2168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2168), + [anon_sym_decltype] = ACTIONS(2168), + [anon_sym_typename] = ACTIONS(2168), + [anon_sym_template] = ACTIONS(2168), + [anon_sym_try] = ACTIONS(2168), + [anon_sym_delete] = ACTIONS(2168), + [anon_sym_throw] = ACTIONS(2168), + [anon_sym_co_return] = ACTIONS(2168), + [anon_sym_co_yield] = ACTIONS(2168), + [anon_sym_R_DQUOTE] = ACTIONS(2170), + [anon_sym_LR_DQUOTE] = ACTIONS(2170), + [anon_sym_uR_DQUOTE] = ACTIONS(2170), + [anon_sym_UR_DQUOTE] = ACTIONS(2170), + [anon_sym_u8R_DQUOTE] = ACTIONS(2170), + [anon_sym_co_await] = ACTIONS(2168), + [anon_sym_new] = ACTIONS(2168), + [anon_sym_requires] = ACTIONS(2168), + [sym_this] = ACTIONS(2168), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_FORWARD] = ACTIONS(2168), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2168), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_PS_GET] = ACTIONS(2168), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2168), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2168), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2168), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2168), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2168), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2168), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2168), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2168), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2168), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2168), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2168), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2168), + [anon_sym_MOZ_COLD] = ACTIONS(2168), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2168), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2168), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2168), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2168), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2168), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2168), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2168), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2168), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2168), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2168), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2168), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2168), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2168), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2168), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2168), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2168), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2168), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2168), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2168), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2168), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2168), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_NONNULL] = ACTIONS(2168), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2168), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2168), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2168), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2168), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2168), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_NORETURN] = ACTIONS(2168), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2168), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2168), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2168), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2168), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2168), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2168), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2168), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2168), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2168), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2168), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2168), + [anon_sym_MOZ_RAII] = ACTIONS(2168), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2168), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2168), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2168), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2168), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2168), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2168), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2168), + }, + [STATE(687)] = { + [sym_identifier] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym___extension__] = ACTIONS(2096), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_virtual] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym_COLON_COLON] = ACTIONS(2098), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2098), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [anon_sym_LBRACK] = ACTIONS(2096), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [anon_sym___inline] = ACTIONS(2096), + [anon_sym___inline__] = ACTIONS(2096), + [anon_sym___forceinline] = ACTIONS(2096), + [anon_sym_thread_local] = ACTIONS(2096), + [anon_sym___thread] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_constexpr] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym___restrict__] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym__Noreturn] = ACTIONS(2096), + [anon_sym_noreturn] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym_mutable] = ACTIONS(2096), + [anon_sym_constinit] = ACTIONS(2096), + [anon_sym_consteval] = ACTIONS(2096), + [anon_sym_alignas] = ACTIONS(2096), + [anon_sym__Alignas] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_class] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_else] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym___try] = ACTIONS(2096), + [anon_sym___leave] = ACTIONS(2096), + [anon_sym_not] = ACTIONS(2096), + [anon_sym_compl] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2096), + [anon_sym___alignof] = ACTIONS(2096), + [anon_sym__alignof] = ACTIONS(2096), + [anon_sym_alignof] = ACTIONS(2096), + [anon_sym__Alignof] = ACTIONS(2096), + [anon_sym_offsetof] = ACTIONS(2096), + [anon_sym__Generic] = ACTIONS(2096), + [anon_sym_asm] = ACTIONS(2096), + [anon_sym___asm__] = ACTIONS(2096), + [anon_sym___asm] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [anon_sym_NULL] = ACTIONS(2096), + [anon_sym_nullptr] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2096), + [anon_sym_decltype] = ACTIONS(2096), + [anon_sym_typename] = ACTIONS(2096), + [anon_sym_template] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2096), + [anon_sym_delete] = ACTIONS(2096), + [anon_sym_throw] = ACTIONS(2096), + [anon_sym_co_return] = ACTIONS(2096), + [anon_sym_co_yield] = ACTIONS(2096), + [anon_sym_R_DQUOTE] = ACTIONS(2098), + [anon_sym_LR_DQUOTE] = ACTIONS(2098), + [anon_sym_uR_DQUOTE] = ACTIONS(2098), + [anon_sym_UR_DQUOTE] = ACTIONS(2098), + [anon_sym_u8R_DQUOTE] = ACTIONS(2098), + [anon_sym_co_await] = ACTIONS(2096), + [anon_sym_new] = ACTIONS(2096), + [anon_sym_requires] = ACTIONS(2096), + [sym_this] = ACTIONS(2096), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_FORWARD] = ACTIONS(2096), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_PS_GET] = ACTIONS(2096), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2096), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2096), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2096), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2096), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2096), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2096), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2096), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2096), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2096), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2096), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2096), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2096), + [anon_sym_MOZ_COLD] = ACTIONS(2096), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2096), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2096), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2096), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2096), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2096), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2096), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2096), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2096), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2096), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2096), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2096), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2096), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2096), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2096), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2096), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2096), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2096), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2096), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2096), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2096), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2096), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_NONNULL] = ACTIONS(2096), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2096), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2096), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2096), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2096), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2096), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_NORETURN] = ACTIONS(2096), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2096), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2096), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2096), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2096), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2096), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2096), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2096), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2096), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2096), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2096), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2096), + [anon_sym_MOZ_RAII] = ACTIONS(2096), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2096), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2096), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2096), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2096), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2096), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2096), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2096), + }, + [STATE(688)] = { + [sym_identifier] = ACTIONS(1966), + [anon_sym_LPAREN2] = ACTIONS(1968), + [anon_sym_BANG] = ACTIONS(1968), + [anon_sym_TILDE] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym___extension__] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1966), + [anon_sym_virtual] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym___attribute__] = ACTIONS(1966), + [anon_sym___attribute] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_register] = ACTIONS(1966), + [anon_sym_inline] = ACTIONS(1966), + [anon_sym___inline] = ACTIONS(1966), + [anon_sym___inline__] = ACTIONS(1966), + [anon_sym___forceinline] = ACTIONS(1966), + [anon_sym_thread_local] = ACTIONS(1966), + [anon_sym___thread] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_constexpr] = ACTIONS(1966), + [anon_sym_volatile] = ACTIONS(1966), + [anon_sym_restrict] = ACTIONS(1966), + [anon_sym___restrict__] = ACTIONS(1966), + [anon_sym__Atomic] = ACTIONS(1966), + [anon_sym__Noreturn] = ACTIONS(1966), + [anon_sym_noreturn] = ACTIONS(1966), + [anon_sym__Nonnull] = ACTIONS(1966), + [anon_sym_mutable] = ACTIONS(1966), + [anon_sym_constinit] = ACTIONS(1966), + [anon_sym_consteval] = ACTIONS(1966), + [anon_sym_alignas] = ACTIONS(1966), + [anon_sym__Alignas] = ACTIONS(1966), + [sym_primitive_type] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_class] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_else] = ACTIONS(1966), + [anon_sym_switch] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1966), + [anon_sym_do] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1966), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1966), + [anon_sym_continue] = ACTIONS(1966), + [anon_sym_goto] = ACTIONS(1966), + [anon_sym___try] = ACTIONS(1966), + [anon_sym___leave] = ACTIONS(1966), + [anon_sym_not] = ACTIONS(1966), + [anon_sym_compl] = ACTIONS(1966), + [anon_sym_DASH_DASH] = ACTIONS(1968), + [anon_sym_PLUS_PLUS] = ACTIONS(1968), + [anon_sym_sizeof] = ACTIONS(1966), + [anon_sym___alignof__] = ACTIONS(1966), + [anon_sym___alignof] = ACTIONS(1966), + [anon_sym__alignof] = ACTIONS(1966), + [anon_sym_alignof] = ACTIONS(1966), + [anon_sym__Alignof] = ACTIONS(1966), + [anon_sym_offsetof] = ACTIONS(1966), + [anon_sym__Generic] = ACTIONS(1966), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(1968), + [anon_sym_L_SQUOTE] = ACTIONS(1968), + [anon_sym_u_SQUOTE] = ACTIONS(1968), + [anon_sym_U_SQUOTE] = ACTIONS(1968), + [anon_sym_u8_SQUOTE] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(1968), + [anon_sym_L_DQUOTE] = ACTIONS(1968), + [anon_sym_u_DQUOTE] = ACTIONS(1968), + [anon_sym_U_DQUOTE] = ACTIONS(1968), + [anon_sym_u8_DQUOTE] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [sym_true] = ACTIONS(1966), + [sym_false] = ACTIONS(1966), + [anon_sym_NULL] = ACTIONS(1966), + [anon_sym_nullptr] = ACTIONS(1966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1966), + [anon_sym_decltype] = ACTIONS(1966), + [anon_sym_typename] = ACTIONS(1966), + [anon_sym_template] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1966), + [anon_sym_delete] = ACTIONS(1966), + [anon_sym_throw] = ACTIONS(1966), + [anon_sym_co_return] = ACTIONS(1966), + [anon_sym_co_yield] = ACTIONS(1966), + [anon_sym_R_DQUOTE] = ACTIONS(1968), + [anon_sym_LR_DQUOTE] = ACTIONS(1968), + [anon_sym_uR_DQUOTE] = ACTIONS(1968), + [anon_sym_UR_DQUOTE] = ACTIONS(1968), + [anon_sym_u8R_DQUOTE] = ACTIONS(1968), + [anon_sym_co_await] = ACTIONS(1966), + [anon_sym_new] = ACTIONS(1966), + [anon_sym_requires] = ACTIONS(1966), + [sym_this] = ACTIONS(1966), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_FORWARD] = ACTIONS(1966), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1966), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_PS_GET] = ACTIONS(1966), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1966), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1966), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1966), + [anon_sym_MOZ_COLD] = ACTIONS(1966), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1966), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1966), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1966), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1966), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1966), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1966), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1966), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1966), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1966), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1966), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1966), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1966), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_RAII] = ACTIONS(1966), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1966), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1966), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1966), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1966), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1966), + }, + [STATE(689)] = { + [sym_identifier] = ACTIONS(1966), + [anon_sym_LPAREN2] = ACTIONS(1968), + [anon_sym_BANG] = ACTIONS(1968), + [anon_sym_TILDE] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym___extension__] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1966), + [anon_sym_virtual] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym___attribute__] = ACTIONS(1966), + [anon_sym___attribute] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_register] = ACTIONS(1966), + [anon_sym_inline] = ACTIONS(1966), + [anon_sym___inline] = ACTIONS(1966), + [anon_sym___inline__] = ACTIONS(1966), + [anon_sym___forceinline] = ACTIONS(1966), + [anon_sym_thread_local] = ACTIONS(1966), + [anon_sym___thread] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_constexpr] = ACTIONS(1966), + [anon_sym_volatile] = ACTIONS(1966), + [anon_sym_restrict] = ACTIONS(1966), + [anon_sym___restrict__] = ACTIONS(1966), + [anon_sym__Atomic] = ACTIONS(1966), + [anon_sym__Noreturn] = ACTIONS(1966), + [anon_sym_noreturn] = ACTIONS(1966), + [anon_sym__Nonnull] = ACTIONS(1966), + [anon_sym_mutable] = ACTIONS(1966), + [anon_sym_constinit] = ACTIONS(1966), + [anon_sym_consteval] = ACTIONS(1966), + [anon_sym_alignas] = ACTIONS(1966), + [anon_sym__Alignas] = ACTIONS(1966), + [sym_primitive_type] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_class] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_else] = ACTIONS(1966), + [anon_sym_switch] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1966), + [anon_sym_do] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1966), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1966), + [anon_sym_continue] = ACTIONS(1966), + [anon_sym_goto] = ACTIONS(1966), + [anon_sym___try] = ACTIONS(1966), + [anon_sym___leave] = ACTIONS(1966), + [anon_sym_not] = ACTIONS(1966), + [anon_sym_compl] = ACTIONS(1966), + [anon_sym_DASH_DASH] = ACTIONS(1968), + [anon_sym_PLUS_PLUS] = ACTIONS(1968), + [anon_sym_sizeof] = ACTIONS(1966), + [anon_sym___alignof__] = ACTIONS(1966), + [anon_sym___alignof] = ACTIONS(1966), + [anon_sym__alignof] = ACTIONS(1966), + [anon_sym_alignof] = ACTIONS(1966), + [anon_sym__Alignof] = ACTIONS(1966), + [anon_sym_offsetof] = ACTIONS(1966), + [anon_sym__Generic] = ACTIONS(1966), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(1968), + [anon_sym_L_SQUOTE] = ACTIONS(1968), + [anon_sym_u_SQUOTE] = ACTIONS(1968), + [anon_sym_U_SQUOTE] = ACTIONS(1968), + [anon_sym_u8_SQUOTE] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(1968), + [anon_sym_L_DQUOTE] = ACTIONS(1968), + [anon_sym_u_DQUOTE] = ACTIONS(1968), + [anon_sym_U_DQUOTE] = ACTIONS(1968), + [anon_sym_u8_DQUOTE] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [sym_true] = ACTIONS(1966), + [sym_false] = ACTIONS(1966), + [anon_sym_NULL] = ACTIONS(1966), + [anon_sym_nullptr] = ACTIONS(1966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1966), + [anon_sym_decltype] = ACTIONS(1966), + [anon_sym_typename] = ACTIONS(1966), + [anon_sym_template] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1966), + [anon_sym_delete] = ACTIONS(1966), + [anon_sym_throw] = ACTIONS(1966), + [anon_sym_co_return] = ACTIONS(1966), + [anon_sym_co_yield] = ACTIONS(1966), + [anon_sym_R_DQUOTE] = ACTIONS(1968), + [anon_sym_LR_DQUOTE] = ACTIONS(1968), + [anon_sym_uR_DQUOTE] = ACTIONS(1968), + [anon_sym_UR_DQUOTE] = ACTIONS(1968), + [anon_sym_u8R_DQUOTE] = ACTIONS(1968), + [anon_sym_co_await] = ACTIONS(1966), + [anon_sym_new] = ACTIONS(1966), + [anon_sym_requires] = ACTIONS(1966), + [sym_this] = ACTIONS(1966), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_FORWARD] = ACTIONS(1966), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1966), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_PS_GET] = ACTIONS(1966), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1966), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1966), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1966), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1966), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1966), + [anon_sym_MOZ_COLD] = ACTIONS(1966), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1966), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1966), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1966), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1966), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1966), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1966), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1966), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1966), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1966), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1966), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1966), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1966), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_RAII] = ACTIONS(1966), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1966), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1966), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1966), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1966), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1966), + }, + [STATE(690)] = { + [sym_identifier] = ACTIONS(2160), + [anon_sym_LPAREN2] = ACTIONS(2162), + [anon_sym_BANG] = ACTIONS(2162), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(2162), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym___extension__] = ACTIONS(2160), + [anon_sym_typedef] = ACTIONS(2160), + [anon_sym_virtual] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2160), + [anon_sym___attribute__] = ACTIONS(2160), + [anon_sym___attribute] = ACTIONS(2160), + [anon_sym_COLON_COLON] = ACTIONS(2162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2162), + [anon_sym___declspec] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_signed] = ACTIONS(2160), + [anon_sym_unsigned] = ACTIONS(2160), + [anon_sym_long] = ACTIONS(2160), + [anon_sym_short] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_register] = ACTIONS(2160), + [anon_sym_inline] = ACTIONS(2160), + [anon_sym___inline] = ACTIONS(2160), + [anon_sym___inline__] = ACTIONS(2160), + [anon_sym___forceinline] = ACTIONS(2160), + [anon_sym_thread_local] = ACTIONS(2160), + [anon_sym___thread] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_constexpr] = ACTIONS(2160), + [anon_sym_volatile] = ACTIONS(2160), + [anon_sym_restrict] = ACTIONS(2160), + [anon_sym___restrict__] = ACTIONS(2160), + [anon_sym__Atomic] = ACTIONS(2160), + [anon_sym__Noreturn] = ACTIONS(2160), + [anon_sym_noreturn] = ACTIONS(2160), + [anon_sym__Nonnull] = ACTIONS(2160), + [anon_sym_mutable] = ACTIONS(2160), + [anon_sym_constinit] = ACTIONS(2160), + [anon_sym_consteval] = ACTIONS(2160), + [anon_sym_alignas] = ACTIONS(2160), + [anon_sym__Alignas] = ACTIONS(2160), + [sym_primitive_type] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_struct] = ACTIONS(2160), + [anon_sym_union] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_goto] = ACTIONS(2160), + [anon_sym___try] = ACTIONS(2160), + [anon_sym___leave] = ACTIONS(2160), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_compl] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_sizeof] = ACTIONS(2160), + [anon_sym___alignof__] = ACTIONS(2160), + [anon_sym___alignof] = ACTIONS(2160), + [anon_sym__alignof] = ACTIONS(2160), + [anon_sym_alignof] = ACTIONS(2160), + [anon_sym__Alignof] = ACTIONS(2160), + [anon_sym_offsetof] = ACTIONS(2160), + [anon_sym__Generic] = ACTIONS(2160), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [anon_sym___asm] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2162), + [anon_sym_u_DQUOTE] = ACTIONS(2162), + [anon_sym_U_DQUOTE] = ACTIONS(2162), + [anon_sym_u8_DQUOTE] = ACTIONS(2162), + [anon_sym_DQUOTE] = ACTIONS(2162), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [anon_sym_NULL] = ACTIONS(2160), + [anon_sym_nullptr] = ACTIONS(2160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2160), + [anon_sym_decltype] = ACTIONS(2160), + [anon_sym_typename] = ACTIONS(2160), + [anon_sym_template] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_co_return] = ACTIONS(2160), + [anon_sym_co_yield] = ACTIONS(2160), + [anon_sym_R_DQUOTE] = ACTIONS(2162), + [anon_sym_LR_DQUOTE] = ACTIONS(2162), + [anon_sym_uR_DQUOTE] = ACTIONS(2162), + [anon_sym_UR_DQUOTE] = ACTIONS(2162), + [anon_sym_u8R_DQUOTE] = ACTIONS(2162), + [anon_sym_co_await] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_requires] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_FORWARD] = ACTIONS(2160), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2160), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_PS_GET] = ACTIONS(2160), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2160), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2160), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2160), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2160), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2160), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2160), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2160), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2160), + [anon_sym_MOZ_COLD] = ACTIONS(2160), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2160), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2160), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2160), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2160), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2160), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2160), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2160), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2160), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2160), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2160), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2160), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2160), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2160), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_NONNULL] = ACTIONS(2160), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2160), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2160), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2160), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2160), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2160), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2160), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2160), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2160), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2160), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2160), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2160), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2160), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2160), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2160), + [anon_sym_MOZ_RAII] = ACTIONS(2160), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2160), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2160), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2160), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2160), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2160), + }, + [STATE(691)] = { + [sym_identifier] = ACTIONS(2164), + [anon_sym_LPAREN2] = ACTIONS(2166), + [anon_sym_BANG] = ACTIONS(2166), + [anon_sym_TILDE] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_PLUS] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2166), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym___extension__] = ACTIONS(2164), + [anon_sym_typedef] = ACTIONS(2164), + [anon_sym_virtual] = ACTIONS(2164), + [anon_sym_extern] = ACTIONS(2164), + [anon_sym___attribute__] = ACTIONS(2164), + [anon_sym___attribute] = ACTIONS(2164), + [anon_sym_COLON_COLON] = ACTIONS(2166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2166), + [anon_sym___declspec] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_signed] = ACTIONS(2164), + [anon_sym_unsigned] = ACTIONS(2164), + [anon_sym_long] = ACTIONS(2164), + [anon_sym_short] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_static] = ACTIONS(2164), + [anon_sym_register] = ACTIONS(2164), + [anon_sym_inline] = ACTIONS(2164), + [anon_sym___inline] = ACTIONS(2164), + [anon_sym___inline__] = ACTIONS(2164), + [anon_sym___forceinline] = ACTIONS(2164), + [anon_sym_thread_local] = ACTIONS(2164), + [anon_sym___thread] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [anon_sym_constexpr] = ACTIONS(2164), + [anon_sym_volatile] = ACTIONS(2164), + [anon_sym_restrict] = ACTIONS(2164), + [anon_sym___restrict__] = ACTIONS(2164), + [anon_sym__Atomic] = ACTIONS(2164), + [anon_sym__Noreturn] = ACTIONS(2164), + [anon_sym_noreturn] = ACTIONS(2164), + [anon_sym__Nonnull] = ACTIONS(2164), + [anon_sym_mutable] = ACTIONS(2164), + [anon_sym_constinit] = ACTIONS(2164), + [anon_sym_consteval] = ACTIONS(2164), + [anon_sym_alignas] = ACTIONS(2164), + [anon_sym__Alignas] = ACTIONS(2164), + [sym_primitive_type] = ACTIONS(2164), + [anon_sym_enum] = ACTIONS(2164), + [anon_sym_class] = ACTIONS(2164), + [anon_sym_struct] = ACTIONS(2164), + [anon_sym_union] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_else] = ACTIONS(2164), + [anon_sym_switch] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_goto] = ACTIONS(2164), + [anon_sym___try] = ACTIONS(2164), + [anon_sym___leave] = ACTIONS(2164), + [anon_sym_not] = ACTIONS(2164), + [anon_sym_compl] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2166), + [anon_sym_sizeof] = ACTIONS(2164), + [anon_sym___alignof__] = ACTIONS(2164), + [anon_sym___alignof] = ACTIONS(2164), + [anon_sym__alignof] = ACTIONS(2164), + [anon_sym_alignof] = ACTIONS(2164), + [anon_sym__Alignof] = ACTIONS(2164), + [anon_sym_offsetof] = ACTIONS(2164), + [anon_sym__Generic] = ACTIONS(2164), + [anon_sym_asm] = ACTIONS(2164), + [anon_sym___asm__] = ACTIONS(2164), + [anon_sym___asm] = ACTIONS(2164), + [sym_number_literal] = ACTIONS(2166), + [anon_sym_L_SQUOTE] = ACTIONS(2166), + [anon_sym_u_SQUOTE] = ACTIONS(2166), + [anon_sym_U_SQUOTE] = ACTIONS(2166), + [anon_sym_u8_SQUOTE] = ACTIONS(2166), + [anon_sym_SQUOTE] = ACTIONS(2166), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2164), + [sym_false] = ACTIONS(2164), + [anon_sym_NULL] = ACTIONS(2164), + [anon_sym_nullptr] = ACTIONS(2164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2164), + [anon_sym_decltype] = ACTIONS(2164), + [anon_sym_typename] = ACTIONS(2164), + [anon_sym_template] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_delete] = ACTIONS(2164), + [anon_sym_throw] = ACTIONS(2164), + [anon_sym_co_return] = ACTIONS(2164), + [anon_sym_co_yield] = ACTIONS(2164), + [anon_sym_R_DQUOTE] = ACTIONS(2166), + [anon_sym_LR_DQUOTE] = ACTIONS(2166), + [anon_sym_uR_DQUOTE] = ACTIONS(2166), + [anon_sym_UR_DQUOTE] = ACTIONS(2166), + [anon_sym_u8R_DQUOTE] = ACTIONS(2166), + [anon_sym_co_await] = ACTIONS(2164), + [anon_sym_new] = ACTIONS(2164), + [anon_sym_requires] = ACTIONS(2164), + [sym_this] = ACTIONS(2164), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_FORWARD] = ACTIONS(2164), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2164), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_PS_GET] = ACTIONS(2164), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2164), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2164), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2164), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2164), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2164), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2164), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2164), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2164), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2164), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2164), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2164), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2164), + [anon_sym_MOZ_COLD] = ACTIONS(2164), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2164), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2164), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2164), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2164), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2164), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2164), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2164), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2164), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2164), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2164), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2164), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2164), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2164), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2164), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2164), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2164), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2164), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2164), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2164), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2164), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2164), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_NONNULL] = ACTIONS(2164), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2164), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2164), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2164), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2164), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2164), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_NORETURN] = ACTIONS(2164), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2164), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2164), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2164), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2164), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2164), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2164), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2164), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2164), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2164), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2164), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2164), + [anon_sym_MOZ_RAII] = ACTIONS(2164), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2164), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2164), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2164), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2164), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2164), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2164), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2164), + }, + [STATE(692)] = { + [sym_identifier] = ACTIONS(1980), + [anon_sym_LPAREN2] = ACTIONS(1982), + [anon_sym_BANG] = ACTIONS(1982), + [anon_sym_TILDE] = ACTIONS(1982), + [anon_sym_DASH] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(1980), + [anon_sym_STAR] = ACTIONS(1982), + [anon_sym_AMP] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym___extension__] = ACTIONS(1980), + [anon_sym_typedef] = ACTIONS(1980), + [anon_sym_virtual] = ACTIONS(1980), + [anon_sym_extern] = ACTIONS(1980), + [anon_sym___attribute__] = ACTIONS(1980), + [anon_sym___attribute] = ACTIONS(1980), + [anon_sym_COLON_COLON] = ACTIONS(1982), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1982), + [anon_sym___declspec] = ACTIONS(1980), + [anon_sym_LBRACE] = ACTIONS(1982), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_static] = ACTIONS(1980), + [anon_sym_register] = ACTIONS(1980), + [anon_sym_inline] = ACTIONS(1980), + [anon_sym___inline] = ACTIONS(1980), + [anon_sym___inline__] = ACTIONS(1980), + [anon_sym___forceinline] = ACTIONS(1980), + [anon_sym_thread_local] = ACTIONS(1980), + [anon_sym___thread] = ACTIONS(1980), + [anon_sym_const] = ACTIONS(1980), + [anon_sym_constexpr] = ACTIONS(1980), + [anon_sym_volatile] = ACTIONS(1980), + [anon_sym_restrict] = ACTIONS(1980), + [anon_sym___restrict__] = ACTIONS(1980), + [anon_sym__Atomic] = ACTIONS(1980), + [anon_sym__Noreturn] = ACTIONS(1980), + [anon_sym_noreturn] = ACTIONS(1980), + [anon_sym__Nonnull] = ACTIONS(1980), + [anon_sym_mutable] = ACTIONS(1980), + [anon_sym_constinit] = ACTIONS(1980), + [anon_sym_consteval] = ACTIONS(1980), + [anon_sym_alignas] = ACTIONS(1980), + [anon_sym__Alignas] = ACTIONS(1980), + [sym_primitive_type] = ACTIONS(1980), + [anon_sym_enum] = ACTIONS(1980), + [anon_sym_class] = ACTIONS(1980), + [anon_sym_struct] = ACTIONS(1980), + [anon_sym_union] = ACTIONS(1980), + [anon_sym_if] = ACTIONS(1980), + [anon_sym_else] = ACTIONS(1980), + [anon_sym_switch] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [anon_sym_do] = ACTIONS(1980), + [anon_sym_for] = ACTIONS(1980), + [anon_sym_return] = ACTIONS(1980), + [anon_sym_break] = ACTIONS(1980), + [anon_sym_continue] = ACTIONS(1980), + [anon_sym_goto] = ACTIONS(1980), + [anon_sym___try] = ACTIONS(1980), + [anon_sym___leave] = ACTIONS(1980), + [anon_sym_not] = ACTIONS(1980), + [anon_sym_compl] = ACTIONS(1980), + [anon_sym_DASH_DASH] = ACTIONS(1982), + [anon_sym_PLUS_PLUS] = ACTIONS(1982), + [anon_sym_sizeof] = ACTIONS(1980), + [anon_sym___alignof__] = ACTIONS(1980), + [anon_sym___alignof] = ACTIONS(1980), + [anon_sym__alignof] = ACTIONS(1980), + [anon_sym_alignof] = ACTIONS(1980), + [anon_sym__Alignof] = ACTIONS(1980), + [anon_sym_offsetof] = ACTIONS(1980), + [anon_sym__Generic] = ACTIONS(1980), + [anon_sym_asm] = ACTIONS(1980), + [anon_sym___asm__] = ACTIONS(1980), + [anon_sym___asm] = ACTIONS(1980), + [sym_number_literal] = ACTIONS(1982), + [anon_sym_L_SQUOTE] = ACTIONS(1982), + [anon_sym_u_SQUOTE] = ACTIONS(1982), + [anon_sym_U_SQUOTE] = ACTIONS(1982), + [anon_sym_u8_SQUOTE] = ACTIONS(1982), + [anon_sym_SQUOTE] = ACTIONS(1982), + [anon_sym_L_DQUOTE] = ACTIONS(1982), + [anon_sym_u_DQUOTE] = ACTIONS(1982), + [anon_sym_U_DQUOTE] = ACTIONS(1982), + [anon_sym_u8_DQUOTE] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(1982), + [sym_true] = ACTIONS(1980), + [sym_false] = ACTIONS(1980), + [anon_sym_NULL] = ACTIONS(1980), + [anon_sym_nullptr] = ACTIONS(1980), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1980), + [anon_sym_decltype] = ACTIONS(1980), + [anon_sym_typename] = ACTIONS(1980), + [anon_sym_template] = ACTIONS(1980), + [anon_sym_try] = ACTIONS(1980), + [anon_sym_delete] = ACTIONS(1980), + [anon_sym_throw] = ACTIONS(1980), + [anon_sym_co_return] = ACTIONS(1980), + [anon_sym_co_yield] = ACTIONS(1980), + [anon_sym_R_DQUOTE] = ACTIONS(1982), + [anon_sym_LR_DQUOTE] = ACTIONS(1982), + [anon_sym_uR_DQUOTE] = ACTIONS(1982), + [anon_sym_UR_DQUOTE] = ACTIONS(1982), + [anon_sym_u8R_DQUOTE] = ACTIONS(1982), + [anon_sym_co_await] = ACTIONS(1980), + [anon_sym_new] = ACTIONS(1980), + [anon_sym_requires] = ACTIONS(1980), + [sym_this] = ACTIONS(1980), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_FORWARD] = ACTIONS(1980), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1980), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_PS_GET] = ACTIONS(1980), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1980), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1980), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1980), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1980), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1980), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1980), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1980), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1980), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1980), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1980), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1980), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1980), + [anon_sym_MOZ_COLD] = ACTIONS(1980), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1980), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1980), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1980), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1980), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1980), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1980), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1980), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1980), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1980), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1980), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1980), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1980), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1980), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1980), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1980), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1980), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1980), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1980), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1980), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1980), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1980), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_NONNULL] = ACTIONS(1980), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1980), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1980), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1980), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1980), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1980), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_NORETURN] = ACTIONS(1980), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1980), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1980), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1980), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1980), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1980), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1980), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1980), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1980), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1980), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1980), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1980), + [anon_sym_MOZ_RAII] = ACTIONS(1980), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1980), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1980), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1980), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1980), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1980), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1980), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1980), + }, + [STATE(693)] = { + [sym_identifier] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym___extension__] = ACTIONS(2028), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_virtual] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym_COLON_COLON] = ACTIONS(2030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2030), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [anon_sym___inline] = ACTIONS(2028), + [anon_sym___inline__] = ACTIONS(2028), + [anon_sym___forceinline] = ACTIONS(2028), + [anon_sym_thread_local] = ACTIONS(2028), + [anon_sym___thread] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_constexpr] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym___restrict__] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym__Noreturn] = ACTIONS(2028), + [anon_sym_noreturn] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym_mutable] = ACTIONS(2028), + [anon_sym_constinit] = ACTIONS(2028), + [anon_sym_consteval] = ACTIONS(2028), + [anon_sym_alignas] = ACTIONS(2028), + [anon_sym__Alignas] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_class] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_else] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym___try] = ACTIONS(2028), + [anon_sym___leave] = ACTIONS(2028), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [anon_sym___alignof__] = ACTIONS(2028), + [anon_sym___alignof] = ACTIONS(2028), + [anon_sym__alignof] = ACTIONS(2028), + [anon_sym_alignof] = ACTIONS(2028), + [anon_sym__Alignof] = ACTIONS(2028), + [anon_sym_offsetof] = ACTIONS(2028), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2028), + [anon_sym___asm__] = ACTIONS(2028), + [anon_sym___asm] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [anon_sym_NULL] = ACTIONS(2028), + [anon_sym_nullptr] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2028), + [anon_sym_decltype] = ACTIONS(2028), + [anon_sym_typename] = ACTIONS(2028), + [anon_sym_template] = ACTIONS(2028), + [anon_sym_try] = ACTIONS(2028), + [anon_sym_delete] = ACTIONS(2028), + [anon_sym_throw] = ACTIONS(2028), + [anon_sym_co_return] = ACTIONS(2028), + [anon_sym_co_yield] = ACTIONS(2028), + [anon_sym_R_DQUOTE] = ACTIONS(2030), + [anon_sym_LR_DQUOTE] = ACTIONS(2030), + [anon_sym_uR_DQUOTE] = ACTIONS(2030), + [anon_sym_UR_DQUOTE] = ACTIONS(2030), + [anon_sym_u8R_DQUOTE] = ACTIONS(2030), + [anon_sym_co_await] = ACTIONS(2028), + [anon_sym_new] = ACTIONS(2028), + [anon_sym_requires] = ACTIONS(2028), + [sym_this] = ACTIONS(2028), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_FORWARD] = ACTIONS(2028), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_PS_GET] = ACTIONS(2028), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2028), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2028), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2028), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2028), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2028), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2028), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2028), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2028), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2028), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2028), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2028), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2028), + [anon_sym_MOZ_COLD] = ACTIONS(2028), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2028), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2028), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2028), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2028), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2028), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2028), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2028), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2028), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2028), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2028), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2028), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2028), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2028), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2028), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2028), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2028), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2028), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2028), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2028), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2028), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2028), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_NONNULL] = ACTIONS(2028), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2028), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2028), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2028), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2028), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2028), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_NORETURN] = ACTIONS(2028), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2028), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2028), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2028), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2028), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2028), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2028), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2028), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2028), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2028), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2028), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2028), + [anon_sym_MOZ_RAII] = ACTIONS(2028), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2028), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2028), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2028), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2028), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2028), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2028), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2028), + }, + [STATE(694)] = { + [sym_identifier] = ACTIONS(2760), + [anon_sym_LPAREN2] = ACTIONS(2766), + [anon_sym_BANG] = ACTIONS(2766), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2766), + [anon_sym_SEMI] = ACTIONS(2766), + [anon_sym___extension__] = ACTIONS(2760), + [anon_sym_virtual] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym___attribute__] = ACTIONS(2772), + [anon_sym___attribute] = ACTIONS(2772), + [anon_sym_COLON_COLON] = ACTIONS(2763), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2763), + [anon_sym___declspec] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2766), + [anon_sym_signed] = ACTIONS(2772), + [anon_sym_unsigned] = ACTIONS(2772), + [anon_sym_long] = ACTIONS(2772), + [anon_sym_short] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_register] = ACTIONS(2772), + [anon_sym_inline] = ACTIONS(2772), + [anon_sym___inline] = ACTIONS(2772), + [anon_sym___inline__] = ACTIONS(2772), + [anon_sym___forceinline] = ACTIONS(2772), + [anon_sym_thread_local] = ACTIONS(2772), + [anon_sym___thread] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_constexpr] = ACTIONS(2772), + [anon_sym_volatile] = ACTIONS(2772), + [anon_sym_restrict] = ACTIONS(2772), + [anon_sym___restrict__] = ACTIONS(2772), + [anon_sym__Atomic] = ACTIONS(2772), + [anon_sym__Noreturn] = ACTIONS(2772), + [anon_sym_noreturn] = ACTIONS(2772), + [anon_sym__Nonnull] = ACTIONS(2772), + [anon_sym_mutable] = ACTIONS(2772), + [anon_sym_constinit] = ACTIONS(2772), + [anon_sym_consteval] = ACTIONS(2772), + [anon_sym_alignas] = ACTIONS(2772), + [anon_sym__Alignas] = ACTIONS(2772), + [sym_primitive_type] = ACTIONS(2760), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_class] = ACTIONS(2772), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_switch] = ACTIONS(2768), + [anon_sym_case] = ACTIONS(2768), + [anon_sym_default] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_break] = ACTIONS(2768), + [anon_sym_continue] = ACTIONS(2768), + [anon_sym_goto] = ACTIONS(2768), + [anon_sym___try] = ACTIONS(2768), + [anon_sym___leave] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(2768), + [anon_sym_compl] = ACTIONS(2768), + [anon_sym_DASH_DASH] = ACTIONS(2766), + [anon_sym_PLUS_PLUS] = ACTIONS(2766), + [anon_sym_sizeof] = ACTIONS(2768), + [anon_sym___alignof__] = ACTIONS(2768), + [anon_sym___alignof] = ACTIONS(2768), + [anon_sym__alignof] = ACTIONS(2768), + [anon_sym_alignof] = ACTIONS(2768), + [anon_sym__Alignof] = ACTIONS(2768), + [anon_sym_offsetof] = ACTIONS(2768), + [anon_sym__Generic] = ACTIONS(2768), + [anon_sym_asm] = ACTIONS(2768), + [anon_sym___asm__] = ACTIONS(2768), + [anon_sym___asm] = ACTIONS(2768), + [sym_number_literal] = ACTIONS(2766), + [anon_sym_L_SQUOTE] = ACTIONS(2766), + [anon_sym_u_SQUOTE] = ACTIONS(2766), + [anon_sym_U_SQUOTE] = ACTIONS(2766), + [anon_sym_u8_SQUOTE] = ACTIONS(2766), + [anon_sym_SQUOTE] = ACTIONS(2766), + [anon_sym_L_DQUOTE] = ACTIONS(2766), + [anon_sym_u_DQUOTE] = ACTIONS(2766), + [anon_sym_U_DQUOTE] = ACTIONS(2766), + [anon_sym_u8_DQUOTE] = ACTIONS(2766), + [anon_sym_DQUOTE] = ACTIONS(2766), + [sym_true] = ACTIONS(2768), + [sym_false] = ACTIONS(2768), + [anon_sym_NULL] = ACTIONS(2768), + [anon_sym_nullptr] = ACTIONS(2768), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2772), + [anon_sym_decltype] = ACTIONS(2760), + [anon_sym_typename] = ACTIONS(2772), + [anon_sym_template] = ACTIONS(2760), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_delete] = ACTIONS(2768), + [anon_sym_throw] = ACTIONS(2768), + [anon_sym_co_return] = ACTIONS(2768), + [anon_sym_co_yield] = ACTIONS(2768), + [anon_sym_R_DQUOTE] = ACTIONS(2766), + [anon_sym_LR_DQUOTE] = ACTIONS(2766), + [anon_sym_uR_DQUOTE] = ACTIONS(2766), + [anon_sym_UR_DQUOTE] = ACTIONS(2766), + [anon_sym_u8R_DQUOTE] = ACTIONS(2766), + [anon_sym_co_await] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_requires] = ACTIONS(2768), + [sym_this] = ACTIONS(2768), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2768), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2768), + [anon_sym_FORWARD] = ACTIONS(2768), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2768), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2768), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2768), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2768), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2768), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2768), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2768), + [anon_sym_PS_GET] = ACTIONS(2768), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2768), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2768), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2768), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2768), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2768), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2768), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2772), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2772), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2772), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2772), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2772), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2772), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2772), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2772), + [anon_sym_MOZ_COLD] = ACTIONS(2772), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2772), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2772), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2772), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2772), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2772), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2772), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2772), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2772), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2772), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2772), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2772), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2772), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2772), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2772), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2772), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2772), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2772), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2772), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2772), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2772), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2772), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2772), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2772), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2772), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2772), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2772), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2772), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2772), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2772), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2772), + [anon_sym_MOZ_NONNULL] = ACTIONS(2772), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2772), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2772), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2772), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2772), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2772), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2772), + [anon_sym_MOZ_NORETURN] = ACTIONS(2772), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2772), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2772), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2772), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2772), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2772), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2772), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2772), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2772), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2772), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2772), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2772), + [anon_sym_MOZ_RAII] = ACTIONS(2772), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2772), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2772), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2772), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2772), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2772), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2772), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2772), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2772), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2772), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2772), + }, + [STATE(695)] = { + [sym_identifier] = ACTIONS(2040), + [anon_sym_LPAREN2] = ACTIONS(2042), + [anon_sym_BANG] = ACTIONS(2042), + [anon_sym_TILDE] = ACTIONS(2042), + [anon_sym_DASH] = ACTIONS(2040), + [anon_sym_PLUS] = ACTIONS(2040), + [anon_sym_STAR] = ACTIONS(2042), + [anon_sym_AMP] = ACTIONS(2042), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym___extension__] = ACTIONS(2040), + [anon_sym_typedef] = ACTIONS(2040), + [anon_sym_virtual] = ACTIONS(2040), + [anon_sym_extern] = ACTIONS(2040), + [anon_sym___attribute__] = ACTIONS(2040), + [anon_sym___attribute] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(2042), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2042), + [anon_sym___declspec] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2042), + [anon_sym_signed] = ACTIONS(2040), + [anon_sym_unsigned] = ACTIONS(2040), + [anon_sym_long] = ACTIONS(2040), + [anon_sym_short] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(2040), + [anon_sym_static] = ACTIONS(2040), + [anon_sym_register] = ACTIONS(2040), + [anon_sym_inline] = ACTIONS(2040), + [anon_sym___inline] = ACTIONS(2040), + [anon_sym___inline__] = ACTIONS(2040), + [anon_sym___forceinline] = ACTIONS(2040), + [anon_sym_thread_local] = ACTIONS(2040), + [anon_sym___thread] = ACTIONS(2040), + [anon_sym_const] = ACTIONS(2040), + [anon_sym_constexpr] = ACTIONS(2040), + [anon_sym_volatile] = ACTIONS(2040), + [anon_sym_restrict] = ACTIONS(2040), + [anon_sym___restrict__] = ACTIONS(2040), + [anon_sym__Atomic] = ACTIONS(2040), + [anon_sym__Noreturn] = ACTIONS(2040), + [anon_sym_noreturn] = ACTIONS(2040), + [anon_sym__Nonnull] = ACTIONS(2040), + [anon_sym_mutable] = ACTIONS(2040), + [anon_sym_constinit] = ACTIONS(2040), + [anon_sym_consteval] = ACTIONS(2040), + [anon_sym_alignas] = ACTIONS(2040), + [anon_sym__Alignas] = ACTIONS(2040), + [sym_primitive_type] = ACTIONS(2040), + [anon_sym_enum] = ACTIONS(2040), + [anon_sym_class] = ACTIONS(2040), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2040), + [anon_sym_if] = ACTIONS(2040), + [anon_sym_else] = ACTIONS(2040), + [anon_sym_switch] = ACTIONS(2040), + [anon_sym_while] = ACTIONS(2040), + [anon_sym_do] = ACTIONS(2040), + [anon_sym_for] = ACTIONS(2040), + [anon_sym_return] = ACTIONS(2040), + [anon_sym_break] = ACTIONS(2040), + [anon_sym_continue] = ACTIONS(2040), + [anon_sym_goto] = ACTIONS(2040), + [anon_sym___try] = ACTIONS(2040), + [anon_sym___leave] = ACTIONS(2040), + [anon_sym_not] = ACTIONS(2040), + [anon_sym_compl] = ACTIONS(2040), + [anon_sym_DASH_DASH] = ACTIONS(2042), + [anon_sym_PLUS_PLUS] = ACTIONS(2042), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2040), + [anon_sym___alignof] = ACTIONS(2040), + [anon_sym__alignof] = ACTIONS(2040), + [anon_sym_alignof] = ACTIONS(2040), + [anon_sym__Alignof] = ACTIONS(2040), + [anon_sym_offsetof] = ACTIONS(2040), + [anon_sym__Generic] = ACTIONS(2040), + [anon_sym_asm] = ACTIONS(2040), + [anon_sym___asm__] = ACTIONS(2040), + [anon_sym___asm] = ACTIONS(2040), + [sym_number_literal] = ACTIONS(2042), + [anon_sym_L_SQUOTE] = ACTIONS(2042), + [anon_sym_u_SQUOTE] = ACTIONS(2042), + [anon_sym_U_SQUOTE] = ACTIONS(2042), + [anon_sym_u8_SQUOTE] = ACTIONS(2042), + [anon_sym_SQUOTE] = ACTIONS(2042), + [anon_sym_L_DQUOTE] = ACTIONS(2042), + [anon_sym_u_DQUOTE] = ACTIONS(2042), + [anon_sym_U_DQUOTE] = ACTIONS(2042), + [anon_sym_u8_DQUOTE] = ACTIONS(2042), + [anon_sym_DQUOTE] = ACTIONS(2042), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2040), + [anon_sym_decltype] = ACTIONS(2040), + [anon_sym_typename] = ACTIONS(2040), + [anon_sym_template] = ACTIONS(2040), + [anon_sym_try] = ACTIONS(2040), + [anon_sym_delete] = ACTIONS(2040), + [anon_sym_throw] = ACTIONS(2040), + [anon_sym_co_return] = ACTIONS(2040), + [anon_sym_co_yield] = ACTIONS(2040), + [anon_sym_R_DQUOTE] = ACTIONS(2042), + [anon_sym_LR_DQUOTE] = ACTIONS(2042), + [anon_sym_uR_DQUOTE] = ACTIONS(2042), + [anon_sym_UR_DQUOTE] = ACTIONS(2042), + [anon_sym_u8R_DQUOTE] = ACTIONS(2042), + [anon_sym_co_await] = ACTIONS(2040), + [anon_sym_new] = ACTIONS(2040), + [anon_sym_requires] = ACTIONS(2040), + [sym_this] = ACTIONS(2040), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_FORWARD] = ACTIONS(2040), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2040), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_PS_GET] = ACTIONS(2040), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2040), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2040), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2040), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2040), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2040), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2040), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2040), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2040), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2040), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2040), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2040), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2040), + [anon_sym_MOZ_COLD] = ACTIONS(2040), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2040), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2040), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2040), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2040), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2040), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2040), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2040), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2040), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2040), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2040), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2040), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2040), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2040), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2040), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2040), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2040), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2040), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2040), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2040), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2040), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2040), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_NONNULL] = ACTIONS(2040), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2040), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2040), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2040), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2040), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2040), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_NORETURN] = ACTIONS(2040), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2040), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2040), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2040), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2040), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2040), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2040), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2040), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2040), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2040), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2040), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2040), + [anon_sym_MOZ_RAII] = ACTIONS(2040), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2040), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2040), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2040), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2040), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2040), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2040), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2040), + }, + [STATE(696)] = { + [sym_identifier] = ACTIONS(1988), + [anon_sym_LPAREN2] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_TILDE] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1988), + [anon_sym_PLUS] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym___extension__] = ACTIONS(1988), + [anon_sym_typedef] = ACTIONS(1988), + [anon_sym_virtual] = ACTIONS(1988), + [anon_sym_extern] = ACTIONS(1988), + [anon_sym___attribute__] = ACTIONS(1988), + [anon_sym___attribute] = ACTIONS(1988), + [anon_sym_COLON_COLON] = ACTIONS(1990), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1990), + [anon_sym___declspec] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1990), + [anon_sym_signed] = ACTIONS(1988), + [anon_sym_unsigned] = ACTIONS(1988), + [anon_sym_long] = ACTIONS(1988), + [anon_sym_short] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1988), + [anon_sym_register] = ACTIONS(1988), + [anon_sym_inline] = ACTIONS(1988), + [anon_sym___inline] = ACTIONS(1988), + [anon_sym___inline__] = ACTIONS(1988), + [anon_sym___forceinline] = ACTIONS(1988), + [anon_sym_thread_local] = ACTIONS(1988), + [anon_sym___thread] = ACTIONS(1988), + [anon_sym_const] = ACTIONS(1988), + [anon_sym_constexpr] = ACTIONS(1988), + [anon_sym_volatile] = ACTIONS(1988), + [anon_sym_restrict] = ACTIONS(1988), + [anon_sym___restrict__] = ACTIONS(1988), + [anon_sym__Atomic] = ACTIONS(1988), + [anon_sym__Noreturn] = ACTIONS(1988), + [anon_sym_noreturn] = ACTIONS(1988), + [anon_sym__Nonnull] = ACTIONS(1988), + [anon_sym_mutable] = ACTIONS(1988), + [anon_sym_constinit] = ACTIONS(1988), + [anon_sym_consteval] = ACTIONS(1988), + [anon_sym_alignas] = ACTIONS(1988), + [anon_sym__Alignas] = ACTIONS(1988), + [sym_primitive_type] = ACTIONS(1988), + [anon_sym_enum] = ACTIONS(1988), + [anon_sym_class] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1988), + [anon_sym_union] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_else] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_do] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_return] = ACTIONS(1988), + [anon_sym_break] = ACTIONS(1988), + [anon_sym_continue] = ACTIONS(1988), + [anon_sym_goto] = ACTIONS(1988), + [anon_sym___try] = ACTIONS(1988), + [anon_sym___leave] = ACTIONS(1988), + [anon_sym_not] = ACTIONS(1988), + [anon_sym_compl] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1990), + [anon_sym_PLUS_PLUS] = ACTIONS(1990), + [anon_sym_sizeof] = ACTIONS(1988), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1988), + [anon_sym__Generic] = ACTIONS(1988), + [anon_sym_asm] = ACTIONS(1988), + [anon_sym___asm__] = ACTIONS(1988), + [anon_sym___asm] = ACTIONS(1988), + [sym_number_literal] = ACTIONS(1990), + [anon_sym_L_SQUOTE] = ACTIONS(1990), + [anon_sym_u_SQUOTE] = ACTIONS(1990), + [anon_sym_U_SQUOTE] = ACTIONS(1990), + [anon_sym_u8_SQUOTE] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_L_DQUOTE] = ACTIONS(1990), + [anon_sym_u_DQUOTE] = ACTIONS(1990), + [anon_sym_U_DQUOTE] = ACTIONS(1990), + [anon_sym_u8_DQUOTE] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1990), + [sym_true] = ACTIONS(1988), + [sym_false] = ACTIONS(1988), + [anon_sym_NULL] = ACTIONS(1988), + [anon_sym_nullptr] = ACTIONS(1988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1988), + [anon_sym_decltype] = ACTIONS(1988), + [anon_sym_typename] = ACTIONS(1988), + [anon_sym_template] = ACTIONS(1988), + [anon_sym_try] = ACTIONS(1988), + [anon_sym_delete] = ACTIONS(1988), + [anon_sym_throw] = ACTIONS(1988), + [anon_sym_co_return] = ACTIONS(1988), + [anon_sym_co_yield] = ACTIONS(1988), + [anon_sym_R_DQUOTE] = ACTIONS(1990), + [anon_sym_LR_DQUOTE] = ACTIONS(1990), + [anon_sym_uR_DQUOTE] = ACTIONS(1990), + [anon_sym_UR_DQUOTE] = ACTIONS(1990), + [anon_sym_u8R_DQUOTE] = ACTIONS(1990), + [anon_sym_co_await] = ACTIONS(1988), + [anon_sym_new] = ACTIONS(1988), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1988), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_FORWARD] = ACTIONS(1988), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1988), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_PS_GET] = ACTIONS(1988), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1988), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1988), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1988), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1988), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1988), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1988), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1988), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1988), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1988), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1988), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1988), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1988), + [anon_sym_MOZ_COLD] = ACTIONS(1988), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1988), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1988), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1988), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1988), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1988), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1988), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1988), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1988), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1988), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1988), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1988), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1988), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1988), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1988), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1988), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1988), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1988), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1988), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1988), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1988), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1988), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_NONNULL] = ACTIONS(1988), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1988), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1988), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1988), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1988), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1988), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_NORETURN] = ACTIONS(1988), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1988), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1988), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1988), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1988), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1988), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1988), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1988), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1988), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1988), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1988), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1988), + [anon_sym_MOZ_RAII] = ACTIONS(1988), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1988), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1988), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1988), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1988), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1988), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1988), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1988), + }, + [STATE(697)] = { + [sym_identifier] = ACTIONS(2112), + [anon_sym_LPAREN2] = ACTIONS(2114), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(2112), + [anon_sym_PLUS] = ACTIONS(2112), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym___extension__] = ACTIONS(2112), + [anon_sym_typedef] = ACTIONS(2112), + [anon_sym_virtual] = ACTIONS(2112), + [anon_sym_extern] = ACTIONS(2112), + [anon_sym___attribute__] = ACTIONS(2112), + [anon_sym___attribute] = ACTIONS(2112), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2114), + [anon_sym___declspec] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_signed] = ACTIONS(2112), + [anon_sym_unsigned] = ACTIONS(2112), + [anon_sym_long] = ACTIONS(2112), + [anon_sym_short] = ACTIONS(2112), + [anon_sym_LBRACK] = ACTIONS(2112), + [anon_sym_static] = ACTIONS(2112), + [anon_sym_register] = ACTIONS(2112), + [anon_sym_inline] = ACTIONS(2112), + [anon_sym___inline] = ACTIONS(2112), + [anon_sym___inline__] = ACTIONS(2112), + [anon_sym___forceinline] = ACTIONS(2112), + [anon_sym_thread_local] = ACTIONS(2112), + [anon_sym___thread] = ACTIONS(2112), + [anon_sym_const] = ACTIONS(2112), + [anon_sym_constexpr] = ACTIONS(2112), + [anon_sym_volatile] = ACTIONS(2112), + [anon_sym_restrict] = ACTIONS(2112), + [anon_sym___restrict__] = ACTIONS(2112), + [anon_sym__Atomic] = ACTIONS(2112), + [anon_sym__Noreturn] = ACTIONS(2112), + [anon_sym_noreturn] = ACTIONS(2112), + [anon_sym__Nonnull] = ACTIONS(2112), + [anon_sym_mutable] = ACTIONS(2112), + [anon_sym_constinit] = ACTIONS(2112), + [anon_sym_consteval] = ACTIONS(2112), + [anon_sym_alignas] = ACTIONS(2112), + [anon_sym__Alignas] = ACTIONS(2112), + [sym_primitive_type] = ACTIONS(2112), + [anon_sym_enum] = ACTIONS(2112), + [anon_sym_class] = ACTIONS(2112), + [anon_sym_struct] = ACTIONS(2112), + [anon_sym_union] = ACTIONS(2112), + [anon_sym_if] = ACTIONS(2112), + [anon_sym_else] = ACTIONS(2112), + [anon_sym_switch] = ACTIONS(2112), + [anon_sym_while] = ACTIONS(2112), + [anon_sym_do] = ACTIONS(2112), + [anon_sym_for] = ACTIONS(2112), + [anon_sym_return] = ACTIONS(2112), + [anon_sym_break] = ACTIONS(2112), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_goto] = ACTIONS(2112), + [anon_sym___try] = ACTIONS(2112), + [anon_sym___leave] = ACTIONS(2112), + [anon_sym_not] = ACTIONS(2112), + [anon_sym_compl] = ACTIONS(2112), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_sizeof] = ACTIONS(2112), + [anon_sym___alignof__] = ACTIONS(2112), + [anon_sym___alignof] = ACTIONS(2112), + [anon_sym__alignof] = ACTIONS(2112), + [anon_sym_alignof] = ACTIONS(2112), + [anon_sym__Alignof] = ACTIONS(2112), + [anon_sym_offsetof] = ACTIONS(2112), + [anon_sym__Generic] = ACTIONS(2112), + [anon_sym_asm] = ACTIONS(2112), + [anon_sym___asm__] = ACTIONS(2112), + [anon_sym___asm] = ACTIONS(2112), + [sym_number_literal] = ACTIONS(2114), + [anon_sym_L_SQUOTE] = ACTIONS(2114), + [anon_sym_u_SQUOTE] = ACTIONS(2114), + [anon_sym_U_SQUOTE] = ACTIONS(2114), + [anon_sym_u8_SQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), + [anon_sym_L_DQUOTE] = ACTIONS(2114), + [anon_sym_u_DQUOTE] = ACTIONS(2114), + [anon_sym_U_DQUOTE] = ACTIONS(2114), + [anon_sym_u8_DQUOTE] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2112), + [anon_sym_nullptr] = ACTIONS(2112), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2112), + [anon_sym_decltype] = ACTIONS(2112), + [anon_sym_typename] = ACTIONS(2112), + [anon_sym_template] = ACTIONS(2112), + [anon_sym_try] = ACTIONS(2112), + [anon_sym_delete] = ACTIONS(2112), + [anon_sym_throw] = ACTIONS(2112), + [anon_sym_co_return] = ACTIONS(2112), + [anon_sym_co_yield] = ACTIONS(2112), + [anon_sym_R_DQUOTE] = ACTIONS(2114), + [anon_sym_LR_DQUOTE] = ACTIONS(2114), + [anon_sym_uR_DQUOTE] = ACTIONS(2114), + [anon_sym_UR_DQUOTE] = ACTIONS(2114), + [anon_sym_u8R_DQUOTE] = ACTIONS(2114), + [anon_sym_co_await] = ACTIONS(2112), + [anon_sym_new] = ACTIONS(2112), + [anon_sym_requires] = ACTIONS(2112), + [sym_this] = ACTIONS(2112), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_FORWARD] = ACTIONS(2112), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2112), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_PS_GET] = ACTIONS(2112), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2112), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2112), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2112), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2112), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2112), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2112), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2112), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2112), + [anon_sym_MOZ_COLD] = ACTIONS(2112), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2112), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2112), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2112), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2112), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2112), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2112), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2112), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2112), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2112), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2112), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2112), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2112), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2112), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_NONNULL] = ACTIONS(2112), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2112), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2112), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2112), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2112), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2112), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2112), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2112), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2112), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2112), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2112), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2112), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2112), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2112), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2112), + [anon_sym_MOZ_RAII] = ACTIONS(2112), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2112), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2112), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2112), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2112), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2112), + }, + [STATE(698)] = { + [sym_identifier] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym___extension__] = ACTIONS(1992), + [anon_sym_typedef] = ACTIONS(1992), + [anon_sym_virtual] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1992), + [anon_sym___attribute] = ACTIONS(1992), + [anon_sym_COLON_COLON] = ACTIONS(1994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1994), + [anon_sym___declspec] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_signed] = ACTIONS(1992), + [anon_sym_unsigned] = ACTIONS(1992), + [anon_sym_long] = ACTIONS(1992), + [anon_sym_short] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1992), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_inline] = ACTIONS(1992), + [anon_sym___inline] = ACTIONS(1992), + [anon_sym___inline__] = ACTIONS(1992), + [anon_sym___forceinline] = ACTIONS(1992), + [anon_sym_thread_local] = ACTIONS(1992), + [anon_sym___thread] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_constexpr] = ACTIONS(1992), + [anon_sym_volatile] = ACTIONS(1992), + [anon_sym_restrict] = ACTIONS(1992), + [anon_sym___restrict__] = ACTIONS(1992), + [anon_sym__Atomic] = ACTIONS(1992), + [anon_sym__Noreturn] = ACTIONS(1992), + [anon_sym_noreturn] = ACTIONS(1992), + [anon_sym__Nonnull] = ACTIONS(1992), + [anon_sym_mutable] = ACTIONS(1992), + [anon_sym_constinit] = ACTIONS(1992), + [anon_sym_consteval] = ACTIONS(1992), + [anon_sym_alignas] = ACTIONS(1992), + [anon_sym__Alignas] = ACTIONS(1992), + [sym_primitive_type] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_class] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1992), + [anon_sym_switch] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(1992), + [anon_sym___try] = ACTIONS(1992), + [anon_sym___leave] = ACTIONS(1992), + [anon_sym_not] = ACTIONS(1992), + [anon_sym_compl] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1992), + [anon_sym___alignof__] = ACTIONS(1992), + [anon_sym___alignof] = ACTIONS(1992), + [anon_sym__alignof] = ACTIONS(1992), + [anon_sym_alignof] = ACTIONS(1992), + [anon_sym__Alignof] = ACTIONS(1992), + [anon_sym_offsetof] = ACTIONS(1992), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_asm] = ACTIONS(1992), + [anon_sym___asm__] = ACTIONS(1992), + [anon_sym___asm] = ACTIONS(1992), + [sym_number_literal] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1994), + [anon_sym_u_SQUOTE] = ACTIONS(1994), + [anon_sym_U_SQUOTE] = ACTIONS(1994), + [anon_sym_u8_SQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_L_DQUOTE] = ACTIONS(1994), + [anon_sym_u_DQUOTE] = ACTIONS(1994), + [anon_sym_U_DQUOTE] = ACTIONS(1994), + [anon_sym_u8_DQUOTE] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym_true] = ACTIONS(1992), + [sym_false] = ACTIONS(1992), + [anon_sym_NULL] = ACTIONS(1992), + [anon_sym_nullptr] = ACTIONS(1992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1992), + [anon_sym_decltype] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(1992), + [anon_sym_template] = ACTIONS(1992), + [anon_sym_try] = ACTIONS(1992), + [anon_sym_delete] = ACTIONS(1992), + [anon_sym_throw] = ACTIONS(1992), + [anon_sym_co_return] = ACTIONS(1992), + [anon_sym_co_yield] = ACTIONS(1992), + [anon_sym_R_DQUOTE] = ACTIONS(1994), + [anon_sym_LR_DQUOTE] = ACTIONS(1994), + [anon_sym_uR_DQUOTE] = ACTIONS(1994), + [anon_sym_UR_DQUOTE] = ACTIONS(1994), + [anon_sym_u8R_DQUOTE] = ACTIONS(1994), + [anon_sym_co_await] = ACTIONS(1992), + [anon_sym_new] = ACTIONS(1992), + [anon_sym_requires] = ACTIONS(1992), + [sym_this] = ACTIONS(1992), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_FORWARD] = ACTIONS(1992), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_PS_GET] = ACTIONS(1992), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1992), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1992), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1992), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1992), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1992), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1992), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1992), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1992), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1992), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1992), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1992), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1992), + [anon_sym_MOZ_COLD] = ACTIONS(1992), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1992), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1992), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1992), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1992), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1992), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1992), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1992), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1992), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1992), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1992), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1992), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1992), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1992), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1992), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1992), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1992), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1992), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1992), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1992), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1992), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1992), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_NONNULL] = ACTIONS(1992), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1992), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1992), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1992), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1992), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1992), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_NORETURN] = ACTIONS(1992), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1992), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1992), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1992), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1992), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1992), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1992), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1992), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1992), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1992), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1992), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1992), + [anon_sym_MOZ_RAII] = ACTIONS(1992), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1992), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1992), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1992), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1992), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1992), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1992), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1992), + }, + [STATE(699)] = { + [sym_identifier] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym___extension__] = ACTIONS(2116), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_virtual] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym_COLON_COLON] = ACTIONS(2118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2118), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2116), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [anon_sym___inline] = ACTIONS(2116), + [anon_sym___inline__] = ACTIONS(2116), + [anon_sym___forceinline] = ACTIONS(2116), + [anon_sym_thread_local] = ACTIONS(2116), + [anon_sym___thread] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_constexpr] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym___restrict__] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym__Noreturn] = ACTIONS(2116), + [anon_sym_noreturn] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym_mutable] = ACTIONS(2116), + [anon_sym_constinit] = ACTIONS(2116), + [anon_sym_consteval] = ACTIONS(2116), + [anon_sym_alignas] = ACTIONS(2116), + [anon_sym__Alignas] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym___try] = ACTIONS(2116), + [anon_sym___leave] = ACTIONS(2116), + [anon_sym_not] = ACTIONS(2116), + [anon_sym_compl] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [anon_sym___alignof__] = ACTIONS(2116), + [anon_sym___alignof] = ACTIONS(2116), + [anon_sym__alignof] = ACTIONS(2116), + [anon_sym_alignof] = ACTIONS(2116), + [anon_sym__Alignof] = ACTIONS(2116), + [anon_sym_offsetof] = ACTIONS(2116), + [anon_sym__Generic] = ACTIONS(2116), + [anon_sym_asm] = ACTIONS(2116), + [anon_sym___asm__] = ACTIONS(2116), + [anon_sym___asm] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [anon_sym_NULL] = ACTIONS(2116), + [anon_sym_nullptr] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2116), + [anon_sym_typename] = ACTIONS(2116), + [anon_sym_template] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_co_return] = ACTIONS(2116), + [anon_sym_co_yield] = ACTIONS(2116), + [anon_sym_R_DQUOTE] = ACTIONS(2118), + [anon_sym_LR_DQUOTE] = ACTIONS(2118), + [anon_sym_uR_DQUOTE] = ACTIONS(2118), + [anon_sym_UR_DQUOTE] = ACTIONS(2118), + [anon_sym_u8R_DQUOTE] = ACTIONS(2118), + [anon_sym_co_await] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_requires] = ACTIONS(2116), + [sym_this] = ACTIONS(2116), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_FORWARD] = ACTIONS(2116), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_PS_GET] = ACTIONS(2116), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2116), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2116), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2116), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2116), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2116), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2116), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2116), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2116), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2116), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2116), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2116), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2116), + [anon_sym_MOZ_COLD] = ACTIONS(2116), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2116), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2116), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2116), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2116), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2116), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2116), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2116), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2116), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2116), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2116), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2116), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2116), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2116), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2116), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2116), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2116), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2116), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2116), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2116), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2116), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2116), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_NONNULL] = ACTIONS(2116), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2116), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2116), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2116), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2116), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2116), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_NORETURN] = ACTIONS(2116), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2116), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2116), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2116), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2116), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2116), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2116), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2116), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2116), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2116), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2116), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2116), + [anon_sym_MOZ_RAII] = ACTIONS(2116), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2116), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2116), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2116), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2116), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2116), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2116), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2116), + }, + [STATE(700)] = { + [sym_identifier] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(1998), + [anon_sym_BANG] = ACTIONS(1998), + [anon_sym_TILDE] = ACTIONS(1998), + [anon_sym_DASH] = ACTIONS(1996), + [anon_sym_PLUS] = ACTIONS(1996), + [anon_sym_STAR] = ACTIONS(1998), + [anon_sym_AMP] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_typedef] = ACTIONS(1996), + [anon_sym_virtual] = ACTIONS(1996), + [anon_sym_extern] = ACTIONS(1996), + [anon_sym___attribute__] = ACTIONS(1996), + [anon_sym___attribute] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1998), + [anon_sym___declspec] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1998), + [anon_sym_signed] = ACTIONS(1996), + [anon_sym_unsigned] = ACTIONS(1996), + [anon_sym_long] = ACTIONS(1996), + [anon_sym_short] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_static] = ACTIONS(1996), + [anon_sym_register] = ACTIONS(1996), + [anon_sym_inline] = ACTIONS(1996), + [anon_sym___inline] = ACTIONS(1996), + [anon_sym___inline__] = ACTIONS(1996), + [anon_sym___forceinline] = ACTIONS(1996), + [anon_sym_thread_local] = ACTIONS(1996), + [anon_sym___thread] = ACTIONS(1996), + [anon_sym_const] = ACTIONS(1996), + [anon_sym_constexpr] = ACTIONS(1996), + [anon_sym_volatile] = ACTIONS(1996), + [anon_sym_restrict] = ACTIONS(1996), + [anon_sym___restrict__] = ACTIONS(1996), + [anon_sym__Atomic] = ACTIONS(1996), + [anon_sym__Noreturn] = ACTIONS(1996), + [anon_sym_noreturn] = ACTIONS(1996), + [anon_sym__Nonnull] = ACTIONS(1996), + [anon_sym_mutable] = ACTIONS(1996), + [anon_sym_constinit] = ACTIONS(1996), + [anon_sym_consteval] = ACTIONS(1996), + [anon_sym_alignas] = ACTIONS(1996), + [anon_sym__Alignas] = ACTIONS(1996), + [sym_primitive_type] = ACTIONS(1996), + [anon_sym_enum] = ACTIONS(1996), + [anon_sym_class] = ACTIONS(1996), + [anon_sym_struct] = ACTIONS(1996), + [anon_sym_union] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1996), + [anon_sym_else] = ACTIONS(1996), + [anon_sym_switch] = ACTIONS(1996), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(1996), + [anon_sym_for] = ACTIONS(1996), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_break] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(1996), + [anon_sym_goto] = ACTIONS(1996), + [anon_sym___try] = ACTIONS(1996), + [anon_sym___leave] = ACTIONS(1996), + [anon_sym_not] = ACTIONS(1996), + [anon_sym_compl] = ACTIONS(1996), + [anon_sym_DASH_DASH] = ACTIONS(1998), + [anon_sym_PLUS_PLUS] = ACTIONS(1998), + [anon_sym_sizeof] = ACTIONS(1996), + [anon_sym___alignof__] = ACTIONS(1996), + [anon_sym___alignof] = ACTIONS(1996), + [anon_sym__alignof] = ACTIONS(1996), + [anon_sym_alignof] = ACTIONS(1996), + [anon_sym__Alignof] = ACTIONS(1996), + [anon_sym_offsetof] = ACTIONS(1996), + [anon_sym__Generic] = ACTIONS(1996), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(1998), + [anon_sym_u_SQUOTE] = ACTIONS(1998), + [anon_sym_U_SQUOTE] = ACTIONS(1998), + [anon_sym_u8_SQUOTE] = ACTIONS(1998), + [anon_sym_SQUOTE] = ACTIONS(1998), + [anon_sym_L_DQUOTE] = ACTIONS(1998), + [anon_sym_u_DQUOTE] = ACTIONS(1998), + [anon_sym_U_DQUOTE] = ACTIONS(1998), + [anon_sym_u8_DQUOTE] = ACTIONS(1998), + [anon_sym_DQUOTE] = ACTIONS(1998), + [sym_true] = ACTIONS(1996), + [sym_false] = ACTIONS(1996), + [anon_sym_NULL] = ACTIONS(1996), + [anon_sym_nullptr] = ACTIONS(1996), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1996), + [anon_sym_decltype] = ACTIONS(1996), + [anon_sym_typename] = ACTIONS(1996), + [anon_sym_template] = ACTIONS(1996), + [anon_sym_try] = ACTIONS(1996), + [anon_sym_delete] = ACTIONS(1996), + [anon_sym_throw] = ACTIONS(1996), + [anon_sym_co_return] = ACTIONS(1996), + [anon_sym_co_yield] = ACTIONS(1996), + [anon_sym_R_DQUOTE] = ACTIONS(1998), + [anon_sym_LR_DQUOTE] = ACTIONS(1998), + [anon_sym_uR_DQUOTE] = ACTIONS(1998), + [anon_sym_UR_DQUOTE] = ACTIONS(1998), + [anon_sym_u8R_DQUOTE] = ACTIONS(1998), + [anon_sym_co_await] = ACTIONS(1996), + [anon_sym_new] = ACTIONS(1996), + [anon_sym_requires] = ACTIONS(1996), + [sym_this] = ACTIONS(1996), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_FORWARD] = ACTIONS(1996), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1996), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_PS_GET] = ACTIONS(1996), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1996), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1996), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1996), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1996), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1996), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1996), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1996), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1996), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1996), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1996), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1996), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1996), + [anon_sym_MOZ_COLD] = ACTIONS(1996), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1996), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1996), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1996), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1996), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1996), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1996), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1996), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1996), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1996), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1996), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1996), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1996), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1996), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1996), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1996), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1996), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1996), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1996), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1996), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1996), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1996), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_NONNULL] = ACTIONS(1996), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1996), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1996), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1996), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1996), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1996), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_NORETURN] = ACTIONS(1996), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1996), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1996), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1996), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1996), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1996), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1996), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1996), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1996), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1996), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1996), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1996), + [anon_sym_MOZ_RAII] = ACTIONS(1996), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1996), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1996), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1996), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1996), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1996), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1996), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1996), + }, + [STATE(701)] = { + [sym_identifier] = ACTIONS(2000), + [anon_sym_LPAREN2] = ACTIONS(2002), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2000), + [anon_sym_PLUS] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym___extension__] = ACTIONS(2000), + [anon_sym_typedef] = ACTIONS(2000), + [anon_sym_virtual] = ACTIONS(2000), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym___attribute__] = ACTIONS(2000), + [anon_sym___attribute] = ACTIONS(2000), + [anon_sym_COLON_COLON] = ACTIONS(2002), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2002), + [anon_sym___declspec] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_signed] = ACTIONS(2000), + [anon_sym_unsigned] = ACTIONS(2000), + [anon_sym_long] = ACTIONS(2000), + [anon_sym_short] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_static] = ACTIONS(2000), + [anon_sym_register] = ACTIONS(2000), + [anon_sym_inline] = ACTIONS(2000), + [anon_sym___inline] = ACTIONS(2000), + [anon_sym___inline__] = ACTIONS(2000), + [anon_sym___forceinline] = ACTIONS(2000), + [anon_sym_thread_local] = ACTIONS(2000), + [anon_sym___thread] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [anon_sym_constexpr] = ACTIONS(2000), + [anon_sym_volatile] = ACTIONS(2000), + [anon_sym_restrict] = ACTIONS(2000), + [anon_sym___restrict__] = ACTIONS(2000), + [anon_sym__Atomic] = ACTIONS(2000), + [anon_sym__Noreturn] = ACTIONS(2000), + [anon_sym_noreturn] = ACTIONS(2000), + [anon_sym__Nonnull] = ACTIONS(2000), + [anon_sym_mutable] = ACTIONS(2000), + [anon_sym_constinit] = ACTIONS(2000), + [anon_sym_consteval] = ACTIONS(2000), + [anon_sym_alignas] = ACTIONS(2000), + [anon_sym__Alignas] = ACTIONS(2000), + [sym_primitive_type] = ACTIONS(2000), + [anon_sym_enum] = ACTIONS(2000), + [anon_sym_class] = ACTIONS(2000), + [anon_sym_struct] = ACTIONS(2000), + [anon_sym_union] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2000), + [anon_sym_switch] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_goto] = ACTIONS(2000), + [anon_sym___try] = ACTIONS(2000), + [anon_sym___leave] = ACTIONS(2000), + [anon_sym_not] = ACTIONS(2000), + [anon_sym_compl] = ACTIONS(2000), + [anon_sym_DASH_DASH] = ACTIONS(2002), + [anon_sym_PLUS_PLUS] = ACTIONS(2002), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym___alignof__] = ACTIONS(2000), + [anon_sym___alignof] = ACTIONS(2000), + [anon_sym__alignof] = ACTIONS(2000), + [anon_sym_alignof] = ACTIONS(2000), + [anon_sym__Alignof] = ACTIONS(2000), + [anon_sym_offsetof] = ACTIONS(2000), + [anon_sym__Generic] = ACTIONS(2000), + [anon_sym_asm] = ACTIONS(2000), + [anon_sym___asm__] = ACTIONS(2000), + [anon_sym___asm] = ACTIONS(2000), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2002), + [anon_sym_u_SQUOTE] = ACTIONS(2002), + [anon_sym_U_SQUOTE] = ACTIONS(2002), + [anon_sym_u8_SQUOTE] = ACTIONS(2002), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2000), + [sym_false] = ACTIONS(2000), + [anon_sym_NULL] = ACTIONS(2000), + [anon_sym_nullptr] = ACTIONS(2000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2000), + [anon_sym_decltype] = ACTIONS(2000), + [anon_sym_typename] = ACTIONS(2000), + [anon_sym_template] = ACTIONS(2000), + [anon_sym_try] = ACTIONS(2000), + [anon_sym_delete] = ACTIONS(2000), + [anon_sym_throw] = ACTIONS(2000), + [anon_sym_co_return] = ACTIONS(2000), + [anon_sym_co_yield] = ACTIONS(2000), + [anon_sym_R_DQUOTE] = ACTIONS(2002), + [anon_sym_LR_DQUOTE] = ACTIONS(2002), + [anon_sym_uR_DQUOTE] = ACTIONS(2002), + [anon_sym_UR_DQUOTE] = ACTIONS(2002), + [anon_sym_u8R_DQUOTE] = ACTIONS(2002), + [anon_sym_co_await] = ACTIONS(2000), + [anon_sym_new] = ACTIONS(2000), + [anon_sym_requires] = ACTIONS(2000), + [sym_this] = ACTIONS(2000), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_FORWARD] = ACTIONS(2000), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2000), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_PS_GET] = ACTIONS(2000), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2000), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2000), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2000), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2000), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2000), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2000), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2000), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2000), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2000), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2000), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2000), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2000), + [anon_sym_MOZ_COLD] = ACTIONS(2000), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2000), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2000), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2000), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2000), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2000), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2000), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2000), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2000), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2000), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2000), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2000), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2000), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2000), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2000), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2000), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2000), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2000), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2000), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2000), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2000), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2000), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_NONNULL] = ACTIONS(2000), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2000), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2000), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2000), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2000), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2000), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_NORETURN] = ACTIONS(2000), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2000), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2000), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2000), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2000), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2000), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2000), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2000), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2000), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2000), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2000), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2000), + [anon_sym_MOZ_RAII] = ACTIONS(2000), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2000), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2000), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2000), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2000), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2000), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2000), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2000), + }, + [STATE(702)] = { + [sym_identifier] = ACTIONS(2124), + [anon_sym_LPAREN2] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym___extension__] = ACTIONS(2124), + [anon_sym_typedef] = ACTIONS(2124), + [anon_sym_virtual] = ACTIONS(2124), + [anon_sym_extern] = ACTIONS(2124), + [anon_sym___attribute__] = ACTIONS(2124), + [anon_sym___attribute] = ACTIONS(2124), + [anon_sym_COLON_COLON] = ACTIONS(2126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2126), + [anon_sym___declspec] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2126), + [anon_sym_signed] = ACTIONS(2124), + [anon_sym_unsigned] = ACTIONS(2124), + [anon_sym_long] = ACTIONS(2124), + [anon_sym_short] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_register] = ACTIONS(2124), + [anon_sym_inline] = ACTIONS(2124), + [anon_sym___inline] = ACTIONS(2124), + [anon_sym___inline__] = ACTIONS(2124), + [anon_sym___forceinline] = ACTIONS(2124), + [anon_sym_thread_local] = ACTIONS(2124), + [anon_sym___thread] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_constexpr] = ACTIONS(2124), + [anon_sym_volatile] = ACTIONS(2124), + [anon_sym_restrict] = ACTIONS(2124), + [anon_sym___restrict__] = ACTIONS(2124), + [anon_sym__Atomic] = ACTIONS(2124), + [anon_sym__Noreturn] = ACTIONS(2124), + [anon_sym_noreturn] = ACTIONS(2124), + [anon_sym__Nonnull] = ACTIONS(2124), + [anon_sym_mutable] = ACTIONS(2124), + [anon_sym_constinit] = ACTIONS(2124), + [anon_sym_consteval] = ACTIONS(2124), + [anon_sym_alignas] = ACTIONS(2124), + [anon_sym__Alignas] = ACTIONS(2124), + [sym_primitive_type] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), + [anon_sym_class] = ACTIONS(2124), + [anon_sym_struct] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_else] = ACTIONS(2124), + [anon_sym_switch] = ACTIONS(2124), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_goto] = ACTIONS(2124), + [anon_sym___try] = ACTIONS(2124), + [anon_sym___leave] = ACTIONS(2124), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_compl] = ACTIONS(2124), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_sizeof] = ACTIONS(2124), + [anon_sym___alignof__] = ACTIONS(2124), + [anon_sym___alignof] = ACTIONS(2124), + [anon_sym__alignof] = ACTIONS(2124), + [anon_sym_alignof] = ACTIONS(2124), + [anon_sym__Alignof] = ACTIONS(2124), + [anon_sym_offsetof] = ACTIONS(2124), + [anon_sym__Generic] = ACTIONS(2124), + [anon_sym_asm] = ACTIONS(2124), + [anon_sym___asm__] = ACTIONS(2124), + [anon_sym___asm] = ACTIONS(2124), + [sym_number_literal] = ACTIONS(2126), + [anon_sym_L_SQUOTE] = ACTIONS(2126), + [anon_sym_u_SQUOTE] = ACTIONS(2126), + [anon_sym_U_SQUOTE] = ACTIONS(2126), + [anon_sym_u8_SQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_L_DQUOTE] = ACTIONS(2126), + [anon_sym_u_DQUOTE] = ACTIONS(2126), + [anon_sym_U_DQUOTE] = ACTIONS(2126), + [anon_sym_u8_DQUOTE] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2126), + [sym_true] = ACTIONS(2124), + [sym_false] = ACTIONS(2124), + [anon_sym_NULL] = ACTIONS(2124), + [anon_sym_nullptr] = ACTIONS(2124), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2124), + [anon_sym_decltype] = ACTIONS(2124), + [anon_sym_typename] = ACTIONS(2124), + [anon_sym_template] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2124), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_throw] = ACTIONS(2124), + [anon_sym_co_return] = ACTIONS(2124), + [anon_sym_co_yield] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2124), + [anon_sym_new] = ACTIONS(2124), + [anon_sym_requires] = ACTIONS(2124), + [sym_this] = ACTIONS(2124), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_FORWARD] = ACTIONS(2124), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2124), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_PS_GET] = ACTIONS(2124), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2124), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2124), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2124), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2124), + [anon_sym_MOZ_COLD] = ACTIONS(2124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_NONNULL] = ACTIONS(2124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_NORETURN] = ACTIONS(2124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2124), + [anon_sym_MOZ_RAII] = ACTIONS(2124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2124), + }, + [STATE(703)] = { + [sym_identifier] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(2004), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_virtual] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym_COLON_COLON] = ACTIONS(2006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2006), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [anon_sym_LBRACK] = ACTIONS(2004), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [anon_sym___inline] = ACTIONS(2004), + [anon_sym___inline__] = ACTIONS(2004), + [anon_sym___forceinline] = ACTIONS(2004), + [anon_sym_thread_local] = ACTIONS(2004), + [anon_sym___thread] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_constexpr] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym___restrict__] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym__Noreturn] = ACTIONS(2004), + [anon_sym_noreturn] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym_mutable] = ACTIONS(2004), + [anon_sym_constinit] = ACTIONS(2004), + [anon_sym_consteval] = ACTIONS(2004), + [anon_sym_alignas] = ACTIONS(2004), + [anon_sym__Alignas] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_class] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_else] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym___try] = ACTIONS(2004), + [anon_sym___leave] = ACTIONS(2004), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [anon_sym___alignof__] = ACTIONS(2004), + [anon_sym___alignof] = ACTIONS(2004), + [anon_sym__alignof] = ACTIONS(2004), + [anon_sym_alignof] = ACTIONS(2004), + [anon_sym__Alignof] = ACTIONS(2004), + [anon_sym_offsetof] = ACTIONS(2004), + [anon_sym__Generic] = ACTIONS(2004), + [anon_sym_asm] = ACTIONS(2004), + [anon_sym___asm__] = ACTIONS(2004), + [anon_sym___asm] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2004), + [anon_sym_nullptr] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2004), + [anon_sym_decltype] = ACTIONS(2004), + [anon_sym_typename] = ACTIONS(2004), + [anon_sym_template] = ACTIONS(2004), + [anon_sym_try] = ACTIONS(2004), + [anon_sym_delete] = ACTIONS(2004), + [anon_sym_throw] = ACTIONS(2004), + [anon_sym_co_return] = ACTIONS(2004), + [anon_sym_co_yield] = ACTIONS(2004), + [anon_sym_R_DQUOTE] = ACTIONS(2006), + [anon_sym_LR_DQUOTE] = ACTIONS(2006), + [anon_sym_uR_DQUOTE] = ACTIONS(2006), + [anon_sym_UR_DQUOTE] = ACTIONS(2006), + [anon_sym_u8R_DQUOTE] = ACTIONS(2006), + [anon_sym_co_await] = ACTIONS(2004), + [anon_sym_new] = ACTIONS(2004), + [anon_sym_requires] = ACTIONS(2004), + [sym_this] = ACTIONS(2004), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_FORWARD] = ACTIONS(2004), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_PS_GET] = ACTIONS(2004), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2004), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2004), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2004), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2004), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2004), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2004), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2004), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2004), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2004), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2004), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2004), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2004), + [anon_sym_MOZ_COLD] = ACTIONS(2004), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2004), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2004), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2004), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2004), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2004), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2004), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2004), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2004), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2004), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2004), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2004), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2004), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2004), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2004), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2004), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2004), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2004), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2004), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2004), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2004), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2004), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_NONNULL] = ACTIONS(2004), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2004), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2004), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2004), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2004), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2004), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_NORETURN] = ACTIONS(2004), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2004), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2004), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2004), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2004), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2004), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2004), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2004), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2004), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2004), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2004), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2004), + [anon_sym_MOZ_RAII] = ACTIONS(2004), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2004), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2004), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2004), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2004), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2004), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2004), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2004), + }, + [STATE(704)] = { + [sym_identifier] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym___extension__] = ACTIONS(2016), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_virtual] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym_COLON_COLON] = ACTIONS(2018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2018), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [anon_sym___inline] = ACTIONS(2016), + [anon_sym___inline__] = ACTIONS(2016), + [anon_sym___forceinline] = ACTIONS(2016), + [anon_sym_thread_local] = ACTIONS(2016), + [anon_sym___thread] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_constexpr] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym___restrict__] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym__Noreturn] = ACTIONS(2016), + [anon_sym_noreturn] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym_mutable] = ACTIONS(2016), + [anon_sym_constinit] = ACTIONS(2016), + [anon_sym_consteval] = ACTIONS(2016), + [anon_sym_alignas] = ACTIONS(2016), + [anon_sym__Alignas] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_class] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_else] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym___try] = ACTIONS(2016), + [anon_sym___leave] = ACTIONS(2016), + [anon_sym_not] = ACTIONS(2016), + [anon_sym_compl] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [anon_sym___alignof__] = ACTIONS(2016), + [anon_sym___alignof] = ACTIONS(2016), + [anon_sym__alignof] = ACTIONS(2016), + [anon_sym_alignof] = ACTIONS(2016), + [anon_sym__Alignof] = ACTIONS(2016), + [anon_sym_offsetof] = ACTIONS(2016), + [anon_sym__Generic] = ACTIONS(2016), + [anon_sym_asm] = ACTIONS(2016), + [anon_sym___asm__] = ACTIONS(2016), + [anon_sym___asm] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [anon_sym_NULL] = ACTIONS(2016), + [anon_sym_nullptr] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2016), + [anon_sym_decltype] = ACTIONS(2016), + [anon_sym_typename] = ACTIONS(2016), + [anon_sym_template] = ACTIONS(2016), + [anon_sym_try] = ACTIONS(2016), + [anon_sym_delete] = ACTIONS(2016), + [anon_sym_throw] = ACTIONS(2016), + [anon_sym_co_return] = ACTIONS(2016), + [anon_sym_co_yield] = ACTIONS(2016), + [anon_sym_R_DQUOTE] = ACTIONS(2018), + [anon_sym_LR_DQUOTE] = ACTIONS(2018), + [anon_sym_uR_DQUOTE] = ACTIONS(2018), + [anon_sym_UR_DQUOTE] = ACTIONS(2018), + [anon_sym_u8R_DQUOTE] = ACTIONS(2018), + [anon_sym_co_await] = ACTIONS(2016), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2016), + [sym_this] = ACTIONS(2016), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_FORWARD] = ACTIONS(2016), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_PS_GET] = ACTIONS(2016), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2016), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2016), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2016), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2016), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2016), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2016), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2016), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2016), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2016), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2016), + [anon_sym_MOZ_COLD] = ACTIONS(2016), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2016), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2016), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2016), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2016), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2016), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2016), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2016), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2016), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2016), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2016), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2016), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2016), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2016), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2016), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2016), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2016), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2016), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2016), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2016), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2016), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2016), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_NONNULL] = ACTIONS(2016), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2016), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2016), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2016), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2016), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2016), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_NORETURN] = ACTIONS(2016), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2016), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2016), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2016), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2016), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2016), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2016), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2016), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2016), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2016), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2016), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2016), + [anon_sym_MOZ_RAII] = ACTIONS(2016), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2016), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2016), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2016), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2016), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2016), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2016), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2016), + }, + [STATE(705)] = { + [sym_identifier] = ACTIONS(2048), + [anon_sym_LPAREN2] = ACTIONS(2050), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_TILDE] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2048), + [anon_sym_PLUS] = ACTIONS(2048), + [anon_sym_STAR] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2050), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym___extension__] = ACTIONS(2048), + [anon_sym_typedef] = ACTIONS(2048), + [anon_sym_virtual] = ACTIONS(2048), + [anon_sym_extern] = ACTIONS(2048), + [anon_sym___attribute__] = ACTIONS(2048), + [anon_sym___attribute] = ACTIONS(2048), + [anon_sym_COLON_COLON] = ACTIONS(2050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2050), + [anon_sym___declspec] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2050), + [anon_sym_signed] = ACTIONS(2048), + [anon_sym_unsigned] = ACTIONS(2048), + [anon_sym_long] = ACTIONS(2048), + [anon_sym_short] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(2048), + [anon_sym_static] = ACTIONS(2048), + [anon_sym_register] = ACTIONS(2048), + [anon_sym_inline] = ACTIONS(2048), + [anon_sym___inline] = ACTIONS(2048), + [anon_sym___inline__] = ACTIONS(2048), + [anon_sym___forceinline] = ACTIONS(2048), + [anon_sym_thread_local] = ACTIONS(2048), + [anon_sym___thread] = ACTIONS(2048), + [anon_sym_const] = ACTIONS(2048), + [anon_sym_constexpr] = ACTIONS(2048), + [anon_sym_volatile] = ACTIONS(2048), + [anon_sym_restrict] = ACTIONS(2048), + [anon_sym___restrict__] = ACTIONS(2048), + [anon_sym__Atomic] = ACTIONS(2048), + [anon_sym__Noreturn] = ACTIONS(2048), + [anon_sym_noreturn] = ACTIONS(2048), + [anon_sym__Nonnull] = ACTIONS(2048), + [anon_sym_mutable] = ACTIONS(2048), + [anon_sym_constinit] = ACTIONS(2048), + [anon_sym_consteval] = ACTIONS(2048), + [anon_sym_alignas] = ACTIONS(2048), + [anon_sym__Alignas] = ACTIONS(2048), + [sym_primitive_type] = ACTIONS(2048), + [anon_sym_enum] = ACTIONS(2048), + [anon_sym_class] = ACTIONS(2048), + [anon_sym_struct] = ACTIONS(2048), + [anon_sym_union] = ACTIONS(2048), + [anon_sym_if] = ACTIONS(2048), + [anon_sym_else] = ACTIONS(2048), + [anon_sym_switch] = ACTIONS(2048), + [anon_sym_while] = ACTIONS(2048), + [anon_sym_do] = ACTIONS(2048), + [anon_sym_for] = ACTIONS(2048), + [anon_sym_return] = ACTIONS(2048), + [anon_sym_break] = ACTIONS(2048), + [anon_sym_continue] = ACTIONS(2048), + [anon_sym_goto] = ACTIONS(2048), + [anon_sym___try] = ACTIONS(2048), + [anon_sym___leave] = ACTIONS(2048), + [anon_sym_not] = ACTIONS(2048), + [anon_sym_compl] = ACTIONS(2048), + [anon_sym_DASH_DASH] = ACTIONS(2050), + [anon_sym_PLUS_PLUS] = ACTIONS(2050), + [anon_sym_sizeof] = ACTIONS(2048), + [anon_sym___alignof__] = ACTIONS(2048), + [anon_sym___alignof] = ACTIONS(2048), + [anon_sym__alignof] = ACTIONS(2048), + [anon_sym_alignof] = ACTIONS(2048), + [anon_sym__Alignof] = ACTIONS(2048), + [anon_sym_offsetof] = ACTIONS(2048), + [anon_sym__Generic] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2048), + [anon_sym___asm__] = ACTIONS(2048), + [anon_sym___asm] = ACTIONS(2048), + [sym_number_literal] = ACTIONS(2050), + [anon_sym_L_SQUOTE] = ACTIONS(2050), + [anon_sym_u_SQUOTE] = ACTIONS(2050), + [anon_sym_U_SQUOTE] = ACTIONS(2050), + [anon_sym_u8_SQUOTE] = ACTIONS(2050), + [anon_sym_SQUOTE] = ACTIONS(2050), + [anon_sym_L_DQUOTE] = ACTIONS(2050), + [anon_sym_u_DQUOTE] = ACTIONS(2050), + [anon_sym_U_DQUOTE] = ACTIONS(2050), + [anon_sym_u8_DQUOTE] = ACTIONS(2050), + [anon_sym_DQUOTE] = ACTIONS(2050), + [sym_true] = ACTIONS(2048), + [sym_false] = ACTIONS(2048), + [anon_sym_NULL] = ACTIONS(2048), + [anon_sym_nullptr] = ACTIONS(2048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2048), + [anon_sym_decltype] = ACTIONS(2048), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_template] = ACTIONS(2048), + [anon_sym_try] = ACTIONS(2048), + [anon_sym_delete] = ACTIONS(2048), + [anon_sym_throw] = ACTIONS(2048), + [anon_sym_co_return] = ACTIONS(2048), + [anon_sym_co_yield] = ACTIONS(2048), + [anon_sym_R_DQUOTE] = ACTIONS(2050), + [anon_sym_LR_DQUOTE] = ACTIONS(2050), + [anon_sym_uR_DQUOTE] = ACTIONS(2050), + [anon_sym_UR_DQUOTE] = ACTIONS(2050), + [anon_sym_u8R_DQUOTE] = ACTIONS(2050), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2048), + [anon_sym_requires] = ACTIONS(2048), + [sym_this] = ACTIONS(2048), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_FORWARD] = ACTIONS(2048), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2048), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_PS_GET] = ACTIONS(2048), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2048), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2048), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2048), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2048), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2048), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2048), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2048), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2048), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2048), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2048), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2048), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2048), + [anon_sym_MOZ_COLD] = ACTIONS(2048), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2048), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2048), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2048), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2048), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2048), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2048), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2048), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2048), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2048), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2048), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2048), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2048), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2048), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2048), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2048), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2048), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2048), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2048), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2048), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2048), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2048), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_NONNULL] = ACTIONS(2048), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2048), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2048), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2048), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2048), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2048), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_NORETURN] = ACTIONS(2048), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2048), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2048), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2048), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2048), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2048), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2048), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2048), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2048), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2048), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2048), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2048), + [anon_sym_MOZ_RAII] = ACTIONS(2048), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2048), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2048), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2048), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2048), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2048), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2048), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2048), + }, + [STATE(706)] = { + [sym_identifier] = ACTIONS(2008), + [anon_sym_LPAREN2] = ACTIONS(2010), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(2010), + [anon_sym_AMP] = ACTIONS(2010), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym___extension__] = ACTIONS(2008), + [anon_sym_typedef] = ACTIONS(2008), + [anon_sym_virtual] = ACTIONS(2008), + [anon_sym_extern] = ACTIONS(2008), + [anon_sym___attribute__] = ACTIONS(2008), + [anon_sym___attribute] = ACTIONS(2008), + [anon_sym_COLON_COLON] = ACTIONS(2010), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2010), + [anon_sym___declspec] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2010), + [anon_sym_signed] = ACTIONS(2008), + [anon_sym_unsigned] = ACTIONS(2008), + [anon_sym_long] = ACTIONS(2008), + [anon_sym_short] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_static] = ACTIONS(2008), + [anon_sym_register] = ACTIONS(2008), + [anon_sym_inline] = ACTIONS(2008), + [anon_sym___inline] = ACTIONS(2008), + [anon_sym___inline__] = ACTIONS(2008), + [anon_sym___forceinline] = ACTIONS(2008), + [anon_sym_thread_local] = ACTIONS(2008), + [anon_sym___thread] = ACTIONS(2008), + [anon_sym_const] = ACTIONS(2008), + [anon_sym_constexpr] = ACTIONS(2008), + [anon_sym_volatile] = ACTIONS(2008), + [anon_sym_restrict] = ACTIONS(2008), + [anon_sym___restrict__] = ACTIONS(2008), + [anon_sym__Atomic] = ACTIONS(2008), + [anon_sym__Noreturn] = ACTIONS(2008), + [anon_sym_noreturn] = ACTIONS(2008), + [anon_sym__Nonnull] = ACTIONS(2008), + [anon_sym_mutable] = ACTIONS(2008), + [anon_sym_constinit] = ACTIONS(2008), + [anon_sym_consteval] = ACTIONS(2008), + [anon_sym_alignas] = ACTIONS(2008), + [anon_sym__Alignas] = ACTIONS(2008), + [sym_primitive_type] = ACTIONS(2008), + [anon_sym_enum] = ACTIONS(2008), + [anon_sym_class] = ACTIONS(2008), + [anon_sym_struct] = ACTIONS(2008), + [anon_sym_union] = ACTIONS(2008), + [anon_sym_if] = ACTIONS(2008), + [anon_sym_else] = ACTIONS(2008), + [anon_sym_switch] = ACTIONS(2008), + [anon_sym_while] = ACTIONS(2008), + [anon_sym_do] = ACTIONS(2008), + [anon_sym_for] = ACTIONS(2008), + [anon_sym_return] = ACTIONS(2008), + [anon_sym_break] = ACTIONS(2008), + [anon_sym_continue] = ACTIONS(2008), + [anon_sym_goto] = ACTIONS(2008), + [anon_sym___try] = ACTIONS(2008), + [anon_sym___leave] = ACTIONS(2008), + [anon_sym_not] = ACTIONS(2008), + [anon_sym_compl] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2010), + [anon_sym_PLUS_PLUS] = ACTIONS(2010), + [anon_sym_sizeof] = ACTIONS(2008), + [anon_sym___alignof__] = ACTIONS(2008), + [anon_sym___alignof] = ACTIONS(2008), + [anon_sym__alignof] = ACTIONS(2008), + [anon_sym_alignof] = ACTIONS(2008), + [anon_sym__Alignof] = ACTIONS(2008), + [anon_sym_offsetof] = ACTIONS(2008), + [anon_sym__Generic] = ACTIONS(2008), + [anon_sym_asm] = ACTIONS(2008), + [anon_sym___asm__] = ACTIONS(2008), + [anon_sym___asm] = ACTIONS(2008), + [sym_number_literal] = ACTIONS(2010), + [anon_sym_L_SQUOTE] = ACTIONS(2010), + [anon_sym_u_SQUOTE] = ACTIONS(2010), + [anon_sym_U_SQUOTE] = ACTIONS(2010), + [anon_sym_u8_SQUOTE] = ACTIONS(2010), + [anon_sym_SQUOTE] = ACTIONS(2010), + [anon_sym_L_DQUOTE] = ACTIONS(2010), + [anon_sym_u_DQUOTE] = ACTIONS(2010), + [anon_sym_U_DQUOTE] = ACTIONS(2010), + [anon_sym_u8_DQUOTE] = ACTIONS(2010), + [anon_sym_DQUOTE] = ACTIONS(2010), + [sym_true] = ACTIONS(2008), + [sym_false] = ACTIONS(2008), + [anon_sym_NULL] = ACTIONS(2008), + [anon_sym_nullptr] = ACTIONS(2008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2008), + [anon_sym_decltype] = ACTIONS(2008), + [anon_sym_typename] = ACTIONS(2008), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_try] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_throw] = ACTIONS(2008), + [anon_sym_co_return] = ACTIONS(2008), + [anon_sym_co_yield] = ACTIONS(2008), + [anon_sym_R_DQUOTE] = ACTIONS(2010), + [anon_sym_LR_DQUOTE] = ACTIONS(2010), + [anon_sym_uR_DQUOTE] = ACTIONS(2010), + [anon_sym_UR_DQUOTE] = ACTIONS(2010), + [anon_sym_u8R_DQUOTE] = ACTIONS(2010), + [anon_sym_co_await] = ACTIONS(2008), + [anon_sym_new] = ACTIONS(2008), + [anon_sym_requires] = ACTIONS(2008), + [sym_this] = ACTIONS(2008), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_FORWARD] = ACTIONS(2008), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2008), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_PS_GET] = ACTIONS(2008), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2008), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2008), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2008), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2008), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2008), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2008), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2008), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2008), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2008), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2008), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2008), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2008), + [anon_sym_MOZ_COLD] = ACTIONS(2008), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2008), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2008), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2008), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2008), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2008), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2008), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2008), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2008), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2008), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2008), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2008), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2008), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2008), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2008), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2008), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2008), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2008), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2008), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2008), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2008), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2008), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_NONNULL] = ACTIONS(2008), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2008), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2008), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2008), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2008), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2008), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_NORETURN] = ACTIONS(2008), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2008), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2008), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2008), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2008), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2008), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2008), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2008), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2008), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2008), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2008), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2008), + [anon_sym_MOZ_RAII] = ACTIONS(2008), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2008), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2008), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2008), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2008), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2008), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2008), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2008), + }, + [STATE(707)] = { + [sym_identifier] = ACTIONS(2152), + [anon_sym_LPAREN2] = ACTIONS(2154), + [anon_sym_BANG] = ACTIONS(2154), + [anon_sym_TILDE] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_STAR] = ACTIONS(2154), + [anon_sym_AMP] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym___extension__] = ACTIONS(2152), + [anon_sym_typedef] = ACTIONS(2152), + [anon_sym_virtual] = ACTIONS(2152), + [anon_sym_extern] = ACTIONS(2152), + [anon_sym___attribute__] = ACTIONS(2152), + [anon_sym___attribute] = ACTIONS(2152), + [anon_sym_COLON_COLON] = ACTIONS(2154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2154), + [anon_sym___declspec] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_signed] = ACTIONS(2152), + [anon_sym_unsigned] = ACTIONS(2152), + [anon_sym_long] = ACTIONS(2152), + [anon_sym_short] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_register] = ACTIONS(2152), + [anon_sym_inline] = ACTIONS(2152), + [anon_sym___inline] = ACTIONS(2152), + [anon_sym___inline__] = ACTIONS(2152), + [anon_sym___forceinline] = ACTIONS(2152), + [anon_sym_thread_local] = ACTIONS(2152), + [anon_sym___thread] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_constexpr] = ACTIONS(2152), + [anon_sym_volatile] = ACTIONS(2152), + [anon_sym_restrict] = ACTIONS(2152), + [anon_sym___restrict__] = ACTIONS(2152), + [anon_sym__Atomic] = ACTIONS(2152), + [anon_sym__Noreturn] = ACTIONS(2152), + [anon_sym_noreturn] = ACTIONS(2152), + [anon_sym__Nonnull] = ACTIONS(2152), + [anon_sym_mutable] = ACTIONS(2152), + [anon_sym_constinit] = ACTIONS(2152), + [anon_sym_consteval] = ACTIONS(2152), + [anon_sym_alignas] = ACTIONS(2152), + [anon_sym__Alignas] = ACTIONS(2152), + [sym_primitive_type] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_struct] = ACTIONS(2152), + [anon_sym_union] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_else] = ACTIONS(2152), + [anon_sym_switch] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_goto] = ACTIONS(2152), + [anon_sym___try] = ACTIONS(2152), + [anon_sym___leave] = ACTIONS(2152), + [anon_sym_not] = ACTIONS(2152), + [anon_sym_compl] = ACTIONS(2152), + [anon_sym_DASH_DASH] = ACTIONS(2154), + [anon_sym_PLUS_PLUS] = ACTIONS(2154), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2152), + [anon_sym___alignof] = ACTIONS(2152), + [anon_sym__alignof] = ACTIONS(2152), + [anon_sym_alignof] = ACTIONS(2152), + [anon_sym__Alignof] = ACTIONS(2152), + [anon_sym_offsetof] = ACTIONS(2152), + [anon_sym__Generic] = ACTIONS(2152), + [anon_sym_asm] = ACTIONS(2152), + [anon_sym___asm__] = ACTIONS(2152), + [anon_sym___asm] = ACTIONS(2152), + [sym_number_literal] = ACTIONS(2154), + [anon_sym_L_SQUOTE] = ACTIONS(2154), + [anon_sym_u_SQUOTE] = ACTIONS(2154), + [anon_sym_U_SQUOTE] = ACTIONS(2154), + [anon_sym_u8_SQUOTE] = ACTIONS(2154), + [anon_sym_SQUOTE] = ACTIONS(2154), + [anon_sym_L_DQUOTE] = ACTIONS(2154), + [anon_sym_u_DQUOTE] = ACTIONS(2154), + [anon_sym_U_DQUOTE] = ACTIONS(2154), + [anon_sym_u8_DQUOTE] = ACTIONS(2154), + [anon_sym_DQUOTE] = ACTIONS(2154), + [sym_true] = ACTIONS(2152), + [sym_false] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_nullptr] = ACTIONS(2152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2152), + [anon_sym_decltype] = ACTIONS(2152), + [anon_sym_typename] = ACTIONS(2152), + [anon_sym_template] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2152), + [anon_sym_delete] = ACTIONS(2152), + [anon_sym_throw] = ACTIONS(2152), + [anon_sym_co_return] = ACTIONS(2152), + [anon_sym_co_yield] = ACTIONS(2152), + [anon_sym_R_DQUOTE] = ACTIONS(2154), + [anon_sym_LR_DQUOTE] = ACTIONS(2154), + [anon_sym_uR_DQUOTE] = ACTIONS(2154), + [anon_sym_UR_DQUOTE] = ACTIONS(2154), + [anon_sym_u8R_DQUOTE] = ACTIONS(2154), + [anon_sym_co_await] = ACTIONS(2152), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_requires] = ACTIONS(2152), + [sym_this] = ACTIONS(2152), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_FORWARD] = ACTIONS(2152), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2152), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_PS_GET] = ACTIONS(2152), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2152), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2152), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2152), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2152), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2152), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2152), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2152), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2152), + [anon_sym_MOZ_COLD] = ACTIONS(2152), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2152), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2152), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2152), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2152), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2152), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2152), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2152), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2152), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2152), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2152), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2152), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2152), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2152), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_NONNULL] = ACTIONS(2152), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2152), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2152), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2152), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2152), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2152), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2152), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2152), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2152), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2152), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2152), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2152), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2152), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2152), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2152), + [anon_sym_MOZ_RAII] = ACTIONS(2152), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2152), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2152), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2152), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2152), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2152), + }, + [STATE(708)] = { + [sym_identifier] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(2158), + [anon_sym_BANG] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2158), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym___extension__] = ACTIONS(2156), + [anon_sym_typedef] = ACTIONS(2156), + [anon_sym_virtual] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym___attribute__] = ACTIONS(2156), + [anon_sym___attribute] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2158), + [anon_sym___declspec] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2158), + [anon_sym_signed] = ACTIONS(2156), + [anon_sym_unsigned] = ACTIONS(2156), + [anon_sym_long] = ACTIONS(2156), + [anon_sym_short] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_inline] = ACTIONS(2156), + [anon_sym___inline] = ACTIONS(2156), + [anon_sym___inline__] = ACTIONS(2156), + [anon_sym___forceinline] = ACTIONS(2156), + [anon_sym_thread_local] = ACTIONS(2156), + [anon_sym___thread] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_constexpr] = ACTIONS(2156), + [anon_sym_volatile] = ACTIONS(2156), + [anon_sym_restrict] = ACTIONS(2156), + [anon_sym___restrict__] = ACTIONS(2156), + [anon_sym__Atomic] = ACTIONS(2156), + [anon_sym__Noreturn] = ACTIONS(2156), + [anon_sym_noreturn] = ACTIONS(2156), + [anon_sym__Nonnull] = ACTIONS(2156), + [anon_sym_mutable] = ACTIONS(2156), + [anon_sym_constinit] = ACTIONS(2156), + [anon_sym_consteval] = ACTIONS(2156), + [anon_sym_alignas] = ACTIONS(2156), + [anon_sym__Alignas] = ACTIONS(2156), + [sym_primitive_type] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_goto] = ACTIONS(2156), + [anon_sym___try] = ACTIONS(2156), + [anon_sym___leave] = ACTIONS(2156), + [anon_sym_not] = ACTIONS(2156), + [anon_sym_compl] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2158), + [anon_sym_PLUS_PLUS] = ACTIONS(2158), + [anon_sym_sizeof] = ACTIONS(2156), + [anon_sym___alignof__] = ACTIONS(2156), + [anon_sym___alignof] = ACTIONS(2156), + [anon_sym__alignof] = ACTIONS(2156), + [anon_sym_alignof] = ACTIONS(2156), + [anon_sym__Alignof] = ACTIONS(2156), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2156), + [anon_sym_asm] = ACTIONS(2156), + [anon_sym___asm__] = ACTIONS(2156), + [anon_sym___asm] = ACTIONS(2156), + [sym_number_literal] = ACTIONS(2158), + [anon_sym_L_SQUOTE] = ACTIONS(2158), + [anon_sym_u_SQUOTE] = ACTIONS(2158), + [anon_sym_U_SQUOTE] = ACTIONS(2158), + [anon_sym_u8_SQUOTE] = ACTIONS(2158), + [anon_sym_SQUOTE] = ACTIONS(2158), + [anon_sym_L_DQUOTE] = ACTIONS(2158), + [anon_sym_u_DQUOTE] = ACTIONS(2158), + [anon_sym_U_DQUOTE] = ACTIONS(2158), + [anon_sym_u8_DQUOTE] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [anon_sym_NULL] = ACTIONS(2156), + [anon_sym_nullptr] = ACTIONS(2156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2156), + [anon_sym_decltype] = ACTIONS(2156), + [anon_sym_typename] = ACTIONS(2156), + [anon_sym_template] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_co_return] = ACTIONS(2156), + [anon_sym_co_yield] = ACTIONS(2156), + [anon_sym_R_DQUOTE] = ACTIONS(2158), + [anon_sym_LR_DQUOTE] = ACTIONS(2158), + [anon_sym_uR_DQUOTE] = ACTIONS(2158), + [anon_sym_UR_DQUOTE] = ACTIONS(2158), + [anon_sym_u8R_DQUOTE] = ACTIONS(2158), + [anon_sym_co_await] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_requires] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_FORWARD] = ACTIONS(2156), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2156), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_PS_GET] = ACTIONS(2156), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2156), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2156), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2156), + [anon_sym_MOZ_COLD] = ACTIONS(2156), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2156), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2156), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2156), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2156), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2156), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2156), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2156), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2156), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2156), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2156), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2156), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2156), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_RAII] = ACTIONS(2156), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2156), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2156), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2156), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2156), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2156), + }, + [STATE(709)] = { + [sym_identifier] = ACTIONS(2012), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_TILDE] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_PLUS] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym___extension__] = ACTIONS(2012), + [anon_sym_typedef] = ACTIONS(2012), + [anon_sym_virtual] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym___attribute__] = ACTIONS(2012), + [anon_sym___attribute] = ACTIONS(2012), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2014), + [anon_sym___declspec] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_signed] = ACTIONS(2012), + [anon_sym_unsigned] = ACTIONS(2012), + [anon_sym_long] = ACTIONS(2012), + [anon_sym_short] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2012), + [anon_sym_inline] = ACTIONS(2012), + [anon_sym___inline] = ACTIONS(2012), + [anon_sym___inline__] = ACTIONS(2012), + [anon_sym___forceinline] = ACTIONS(2012), + [anon_sym_thread_local] = ACTIONS(2012), + [anon_sym___thread] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_constexpr] = ACTIONS(2012), + [anon_sym_volatile] = ACTIONS(2012), + [anon_sym_restrict] = ACTIONS(2012), + [anon_sym___restrict__] = ACTIONS(2012), + [anon_sym__Atomic] = ACTIONS(2012), + [anon_sym__Noreturn] = ACTIONS(2012), + [anon_sym_noreturn] = ACTIONS(2012), + [anon_sym__Nonnull] = ACTIONS(2012), + [anon_sym_mutable] = ACTIONS(2012), + [anon_sym_constinit] = ACTIONS(2012), + [anon_sym_consteval] = ACTIONS(2012), + [anon_sym_alignas] = ACTIONS(2012), + [anon_sym__Alignas] = ACTIONS(2012), + [sym_primitive_type] = ACTIONS(2012), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(2012), + [anon_sym_struct] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_else] = ACTIONS(2012), + [anon_sym_switch] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_do] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_goto] = ACTIONS(2012), + [anon_sym___try] = ACTIONS(2012), + [anon_sym___leave] = ACTIONS(2012), + [anon_sym_not] = ACTIONS(2012), + [anon_sym_compl] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2014), + [anon_sym_PLUS_PLUS] = ACTIONS(2014), + [anon_sym_sizeof] = ACTIONS(2012), + [anon_sym___alignof__] = ACTIONS(2012), + [anon_sym___alignof] = ACTIONS(2012), + [anon_sym__alignof] = ACTIONS(2012), + [anon_sym_alignof] = ACTIONS(2012), + [anon_sym__Alignof] = ACTIONS(2012), + [anon_sym_offsetof] = ACTIONS(2012), + [anon_sym__Generic] = ACTIONS(2012), + [anon_sym_asm] = ACTIONS(2012), + [anon_sym___asm__] = ACTIONS(2012), + [anon_sym___asm] = ACTIONS(2012), + [sym_number_literal] = ACTIONS(2014), + [anon_sym_L_SQUOTE] = ACTIONS(2014), + [anon_sym_u_SQUOTE] = ACTIONS(2014), + [anon_sym_U_SQUOTE] = ACTIONS(2014), + [anon_sym_u8_SQUOTE] = ACTIONS(2014), + [anon_sym_SQUOTE] = ACTIONS(2014), + [anon_sym_L_DQUOTE] = ACTIONS(2014), + [anon_sym_u_DQUOTE] = ACTIONS(2014), + [anon_sym_U_DQUOTE] = ACTIONS(2014), + [anon_sym_u8_DQUOTE] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym_true] = ACTIONS(2012), + [sym_false] = ACTIONS(2012), + [anon_sym_NULL] = ACTIONS(2012), + [anon_sym_nullptr] = ACTIONS(2012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2012), + [anon_sym_decltype] = ACTIONS(2012), + [anon_sym_typename] = ACTIONS(2012), + [anon_sym_template] = ACTIONS(2012), + [anon_sym_try] = ACTIONS(2012), + [anon_sym_delete] = ACTIONS(2012), + [anon_sym_throw] = ACTIONS(2012), + [anon_sym_co_return] = ACTIONS(2012), + [anon_sym_co_yield] = ACTIONS(2012), + [anon_sym_R_DQUOTE] = ACTIONS(2014), + [anon_sym_LR_DQUOTE] = ACTIONS(2014), + [anon_sym_uR_DQUOTE] = ACTIONS(2014), + [anon_sym_UR_DQUOTE] = ACTIONS(2014), + [anon_sym_u8R_DQUOTE] = ACTIONS(2014), + [anon_sym_co_await] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2012), + [anon_sym_requires] = ACTIONS(2012), + [sym_this] = ACTIONS(2012), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_FORWARD] = ACTIONS(2012), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_PS_GET] = ACTIONS(2012), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2012), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2012), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2012), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2012), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2012), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2012), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2012), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2012), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2012), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2012), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2012), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2012), + [anon_sym_MOZ_COLD] = ACTIONS(2012), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2012), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2012), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2012), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2012), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2012), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2012), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2012), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2012), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2012), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2012), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2012), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2012), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2012), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2012), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2012), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2012), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2012), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2012), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2012), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2012), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2012), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_NONNULL] = ACTIONS(2012), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2012), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2012), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2012), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2012), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2012), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_NORETURN] = ACTIONS(2012), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2012), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2012), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2012), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2012), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2012), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2012), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2012), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2012), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2012), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2012), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2012), + [anon_sym_MOZ_RAII] = ACTIONS(2012), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2012), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2012), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2012), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2012), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2012), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2012), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2012), + }, + [STATE(710)] = { + [sym_identifier] = ACTIONS(2024), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2026), + [anon_sym_TILDE] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_AMP] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_typedef] = ACTIONS(2024), + [anon_sym_virtual] = ACTIONS(2024), + [anon_sym_extern] = ACTIONS(2024), + [anon_sym___attribute__] = ACTIONS(2024), + [anon_sym___attribute] = ACTIONS(2024), + [anon_sym_COLON_COLON] = ACTIONS(2026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2026), + [anon_sym___declspec] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_signed] = ACTIONS(2024), + [anon_sym_unsigned] = ACTIONS(2024), + [anon_sym_long] = ACTIONS(2024), + [anon_sym_short] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_static] = ACTIONS(2024), + [anon_sym_register] = ACTIONS(2024), + [anon_sym_inline] = ACTIONS(2024), + [anon_sym___inline] = ACTIONS(2024), + [anon_sym___inline__] = ACTIONS(2024), + [anon_sym___forceinline] = ACTIONS(2024), + [anon_sym_thread_local] = ACTIONS(2024), + [anon_sym___thread] = ACTIONS(2024), + [anon_sym_const] = ACTIONS(2024), + [anon_sym_constexpr] = ACTIONS(2024), + [anon_sym_volatile] = ACTIONS(2024), + [anon_sym_restrict] = ACTIONS(2024), + [anon_sym___restrict__] = ACTIONS(2024), + [anon_sym__Atomic] = ACTIONS(2024), + [anon_sym__Noreturn] = ACTIONS(2024), + [anon_sym_noreturn] = ACTIONS(2024), + [anon_sym__Nonnull] = ACTIONS(2024), + [anon_sym_mutable] = ACTIONS(2024), + [anon_sym_constinit] = ACTIONS(2024), + [anon_sym_consteval] = ACTIONS(2024), + [anon_sym_alignas] = ACTIONS(2024), + [anon_sym__Alignas] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2024), + [anon_sym_enum] = ACTIONS(2024), + [anon_sym_class] = ACTIONS(2024), + [anon_sym_struct] = ACTIONS(2024), + [anon_sym_union] = ACTIONS(2024), + [anon_sym_if] = ACTIONS(2024), + [anon_sym_else] = ACTIONS(2024), + [anon_sym_switch] = ACTIONS(2024), + [anon_sym_while] = ACTIONS(2024), + [anon_sym_do] = ACTIONS(2024), + [anon_sym_for] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2024), + [anon_sym_break] = ACTIONS(2024), + [anon_sym_continue] = ACTIONS(2024), + [anon_sym_goto] = ACTIONS(2024), + [anon_sym___try] = ACTIONS(2024), + [anon_sym___leave] = ACTIONS(2024), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_compl] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(2024), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2024), + [anon_sym__Generic] = ACTIONS(2024), + [anon_sym_asm] = ACTIONS(2024), + [anon_sym___asm__] = ACTIONS(2024), + [anon_sym___asm] = ACTIONS(2024), + [sym_number_literal] = ACTIONS(2026), + [anon_sym_L_SQUOTE] = ACTIONS(2026), + [anon_sym_u_SQUOTE] = ACTIONS(2026), + [anon_sym_U_SQUOTE] = ACTIONS(2026), + [anon_sym_u8_SQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2026), + [anon_sym_L_DQUOTE] = ACTIONS(2026), + [anon_sym_u_DQUOTE] = ACTIONS(2026), + [anon_sym_U_DQUOTE] = ACTIONS(2026), + [anon_sym_u8_DQUOTE] = ACTIONS(2026), + [anon_sym_DQUOTE] = ACTIONS(2026), + [sym_true] = ACTIONS(2024), + [sym_false] = ACTIONS(2024), + [anon_sym_NULL] = ACTIONS(2024), + [anon_sym_nullptr] = ACTIONS(2024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2024), + [anon_sym_decltype] = ACTIONS(2024), + [anon_sym_typename] = ACTIONS(2024), + [anon_sym_template] = ACTIONS(2024), + [anon_sym_try] = ACTIONS(2024), + [anon_sym_delete] = ACTIONS(2024), + [anon_sym_throw] = ACTIONS(2024), + [anon_sym_co_return] = ACTIONS(2024), + [anon_sym_co_yield] = ACTIONS(2024), + [anon_sym_R_DQUOTE] = ACTIONS(2026), + [anon_sym_LR_DQUOTE] = ACTIONS(2026), + [anon_sym_uR_DQUOTE] = ACTIONS(2026), + [anon_sym_UR_DQUOTE] = ACTIONS(2026), + [anon_sym_u8R_DQUOTE] = ACTIONS(2026), + [anon_sym_co_await] = ACTIONS(2024), + [anon_sym_new] = ACTIONS(2024), + [anon_sym_requires] = ACTIONS(2024), + [sym_this] = ACTIONS(2024), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_FORWARD] = ACTIONS(2024), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2024), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_PS_GET] = ACTIONS(2024), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2024), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2024), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2024), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2024), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2024), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2024), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2024), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2024), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2024), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2024), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2024), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2024), + [anon_sym_MOZ_COLD] = ACTIONS(2024), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2024), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2024), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2024), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2024), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2024), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2024), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2024), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2024), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2024), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2024), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2024), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2024), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2024), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2024), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2024), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2024), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2024), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2024), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2024), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2024), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2024), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_NONNULL] = ACTIONS(2024), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2024), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2024), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2024), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2024), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2024), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_NORETURN] = ACTIONS(2024), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2024), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2024), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2024), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2024), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2024), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2024), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2024), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2024), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2024), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2024), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2024), + [anon_sym_MOZ_RAII] = ACTIONS(2024), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2024), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2024), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2024), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2024), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2024), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2024), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2024), + }, + [STATE(711)] = { + [sym_identifier] = ACTIONS(2628), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_BANG] = ACTIONS(2630), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2630), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym___extension__] = ACTIONS(2628), + [anon_sym_virtual] = ACTIONS(2628), + [anon_sym_extern] = ACTIONS(2628), + [anon_sym___attribute__] = ACTIONS(2628), + [anon_sym___attribute] = ACTIONS(2628), + [anon_sym_COLON_COLON] = ACTIONS(2630), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2630), + [anon_sym___declspec] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(2630), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_static] = ACTIONS(2628), + [anon_sym_register] = ACTIONS(2628), + [anon_sym_inline] = ACTIONS(2628), + [anon_sym___inline] = ACTIONS(2628), + [anon_sym___inline__] = ACTIONS(2628), + [anon_sym___forceinline] = ACTIONS(2628), + [anon_sym_thread_local] = ACTIONS(2628), + [anon_sym___thread] = ACTIONS(2628), + [anon_sym_const] = ACTIONS(2628), + [anon_sym_constexpr] = ACTIONS(2628), + [anon_sym_volatile] = ACTIONS(2628), + [anon_sym_restrict] = ACTIONS(2628), + [anon_sym___restrict__] = ACTIONS(2628), + [anon_sym__Atomic] = ACTIONS(2628), + [anon_sym__Noreturn] = ACTIONS(2628), + [anon_sym_noreturn] = ACTIONS(2628), + [anon_sym__Nonnull] = ACTIONS(2628), + [anon_sym_mutable] = ACTIONS(2628), + [anon_sym_constinit] = ACTIONS(2628), + [anon_sym_consteval] = ACTIONS(2628), + [anon_sym_alignas] = ACTIONS(2628), + [anon_sym__Alignas] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2628), + [anon_sym_enum] = ACTIONS(2628), + [anon_sym_class] = ACTIONS(2628), + [anon_sym_struct] = ACTIONS(2628), + [anon_sym_union] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_switch] = ACTIONS(2628), + [anon_sym_case] = ACTIONS(2628), + [anon_sym_default] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_break] = ACTIONS(2628), + [anon_sym_continue] = ACTIONS(2628), + [anon_sym_goto] = ACTIONS(2628), + [anon_sym___try] = ACTIONS(2628), + [anon_sym___leave] = ACTIONS(2628), + [anon_sym_not] = ACTIONS(2628), + [anon_sym_compl] = ACTIONS(2628), + [anon_sym_DASH_DASH] = ACTIONS(2630), + [anon_sym_PLUS_PLUS] = ACTIONS(2630), + [anon_sym_sizeof] = ACTIONS(2628), + [anon_sym___alignof__] = ACTIONS(2628), + [anon_sym___alignof] = ACTIONS(2628), + [anon_sym__alignof] = ACTIONS(2628), + [anon_sym_alignof] = ACTIONS(2628), + [anon_sym__Alignof] = ACTIONS(2628), + [anon_sym_offsetof] = ACTIONS(2628), + [anon_sym__Generic] = ACTIONS(2628), + [anon_sym_asm] = ACTIONS(2628), + [anon_sym___asm__] = ACTIONS(2628), + [anon_sym___asm] = ACTIONS(2628), + [sym_number_literal] = ACTIONS(2630), + [anon_sym_L_SQUOTE] = ACTIONS(2630), + [anon_sym_u_SQUOTE] = ACTIONS(2630), + [anon_sym_U_SQUOTE] = ACTIONS(2630), + [anon_sym_u8_SQUOTE] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_L_DQUOTE] = ACTIONS(2630), + [anon_sym_u_DQUOTE] = ACTIONS(2630), + [anon_sym_U_DQUOTE] = ACTIONS(2630), + [anon_sym_u8_DQUOTE] = ACTIONS(2630), + [anon_sym_DQUOTE] = ACTIONS(2630), + [sym_true] = ACTIONS(2628), + [sym_false] = ACTIONS(2628), + [anon_sym_NULL] = ACTIONS(2628), + [anon_sym_nullptr] = ACTIONS(2628), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2628), + [anon_sym_decltype] = ACTIONS(2628), + [anon_sym_typename] = ACTIONS(2628), + [anon_sym_template] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2628), + [anon_sym_delete] = ACTIONS(2628), + [anon_sym_throw] = ACTIONS(2628), + [anon_sym_co_return] = ACTIONS(2628), + [anon_sym_co_yield] = ACTIONS(2628), + [anon_sym_R_DQUOTE] = ACTIONS(2630), + [anon_sym_LR_DQUOTE] = ACTIONS(2630), + [anon_sym_uR_DQUOTE] = ACTIONS(2630), + [anon_sym_UR_DQUOTE] = ACTIONS(2630), + [anon_sym_u8R_DQUOTE] = ACTIONS(2630), + [anon_sym_co_await] = ACTIONS(2628), + [anon_sym_new] = ACTIONS(2628), + [anon_sym_requires] = ACTIONS(2628), + [sym_this] = ACTIONS(2628), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2628), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2628), + [anon_sym_FORWARD] = ACTIONS(2628), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2628), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2628), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2628), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2628), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2628), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2628), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2628), + [anon_sym_PS_GET] = ACTIONS(2628), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2628), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2628), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2628), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2628), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2628), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2628), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2628), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2628), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2628), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2628), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2628), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2628), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2628), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2628), + [anon_sym_MOZ_COLD] = ACTIONS(2628), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2628), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2628), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2628), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2628), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2628), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2628), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2628), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2628), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2628), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2628), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2628), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2628), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2628), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2628), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2628), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2628), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2628), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2628), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2628), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2628), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_NONNULL] = ACTIONS(2628), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2628), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2628), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2628), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2628), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2628), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_NORETURN] = ACTIONS(2628), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2628), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2628), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2628), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2628), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2628), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2628), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2628), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2628), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2628), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2628), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2628), + [anon_sym_MOZ_RAII] = ACTIONS(2628), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2628), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2628), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2628), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2628), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2628), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2628), + }, + [STATE(712)] = { + [sym_identifier] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(2158), + [anon_sym_BANG] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2158), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym___extension__] = ACTIONS(2156), + [anon_sym_typedef] = ACTIONS(2156), + [anon_sym_virtual] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym___attribute__] = ACTIONS(2156), + [anon_sym___attribute] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2158), + [anon_sym___declspec] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2158), + [anon_sym_signed] = ACTIONS(2156), + [anon_sym_unsigned] = ACTIONS(2156), + [anon_sym_long] = ACTIONS(2156), + [anon_sym_short] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_inline] = ACTIONS(2156), + [anon_sym___inline] = ACTIONS(2156), + [anon_sym___inline__] = ACTIONS(2156), + [anon_sym___forceinline] = ACTIONS(2156), + [anon_sym_thread_local] = ACTIONS(2156), + [anon_sym___thread] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_constexpr] = ACTIONS(2156), + [anon_sym_volatile] = ACTIONS(2156), + [anon_sym_restrict] = ACTIONS(2156), + [anon_sym___restrict__] = ACTIONS(2156), + [anon_sym__Atomic] = ACTIONS(2156), + [anon_sym__Noreturn] = ACTIONS(2156), + [anon_sym_noreturn] = ACTIONS(2156), + [anon_sym__Nonnull] = ACTIONS(2156), + [anon_sym_mutable] = ACTIONS(2156), + [anon_sym_constinit] = ACTIONS(2156), + [anon_sym_consteval] = ACTIONS(2156), + [anon_sym_alignas] = ACTIONS(2156), + [anon_sym__Alignas] = ACTIONS(2156), + [sym_primitive_type] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_goto] = ACTIONS(2156), + [anon_sym___try] = ACTIONS(2156), + [anon_sym___leave] = ACTIONS(2156), + [anon_sym_not] = ACTIONS(2156), + [anon_sym_compl] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2158), + [anon_sym_PLUS_PLUS] = ACTIONS(2158), + [anon_sym_sizeof] = ACTIONS(2156), + [anon_sym___alignof__] = ACTIONS(2156), + [anon_sym___alignof] = ACTIONS(2156), + [anon_sym__alignof] = ACTIONS(2156), + [anon_sym_alignof] = ACTIONS(2156), + [anon_sym__Alignof] = ACTIONS(2156), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2156), + [anon_sym_asm] = ACTIONS(2156), + [anon_sym___asm__] = ACTIONS(2156), + [anon_sym___asm] = ACTIONS(2156), + [sym_number_literal] = ACTIONS(2158), + [anon_sym_L_SQUOTE] = ACTIONS(2158), + [anon_sym_u_SQUOTE] = ACTIONS(2158), + [anon_sym_U_SQUOTE] = ACTIONS(2158), + [anon_sym_u8_SQUOTE] = ACTIONS(2158), + [anon_sym_SQUOTE] = ACTIONS(2158), + [anon_sym_L_DQUOTE] = ACTIONS(2158), + [anon_sym_u_DQUOTE] = ACTIONS(2158), + [anon_sym_U_DQUOTE] = ACTIONS(2158), + [anon_sym_u8_DQUOTE] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [anon_sym_NULL] = ACTIONS(2156), + [anon_sym_nullptr] = ACTIONS(2156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2156), + [anon_sym_decltype] = ACTIONS(2156), + [anon_sym_typename] = ACTIONS(2156), + [anon_sym_template] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_delete] = ACTIONS(2156), + [anon_sym_throw] = ACTIONS(2156), + [anon_sym_co_return] = ACTIONS(2156), + [anon_sym_co_yield] = ACTIONS(2156), + [anon_sym_R_DQUOTE] = ACTIONS(2158), + [anon_sym_LR_DQUOTE] = ACTIONS(2158), + [anon_sym_uR_DQUOTE] = ACTIONS(2158), + [anon_sym_UR_DQUOTE] = ACTIONS(2158), + [anon_sym_u8R_DQUOTE] = ACTIONS(2158), + [anon_sym_co_await] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_requires] = ACTIONS(2156), + [sym_this] = ACTIONS(2156), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_FORWARD] = ACTIONS(2156), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2156), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_PS_GET] = ACTIONS(2156), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2156), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2156), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2156), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2156), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2156), + [anon_sym_MOZ_COLD] = ACTIONS(2156), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2156), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2156), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2156), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2156), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2156), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2156), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2156), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2156), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2156), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2156), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2156), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2156), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_RAII] = ACTIONS(2156), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2156), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2156), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2156), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2156), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2156), + }, + [STATE(713)] = { + [sym_identifier] = ACTIONS(2624), + [anon_sym_LPAREN2] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(2626), + [anon_sym_TILDE] = ACTIONS(2626), + [anon_sym_DASH] = ACTIONS(2624), + [anon_sym_PLUS] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2626), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_SEMI] = ACTIONS(2626), + [anon_sym___extension__] = ACTIONS(2624), + [anon_sym_virtual] = ACTIONS(2624), + [anon_sym_extern] = ACTIONS(2624), + [anon_sym___attribute__] = ACTIONS(2624), + [anon_sym___attribute] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2626), + [anon_sym___declspec] = ACTIONS(2624), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_signed] = ACTIONS(2624), + [anon_sym_unsigned] = ACTIONS(2624), + [anon_sym_long] = ACTIONS(2624), + [anon_sym_short] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_static] = ACTIONS(2624), + [anon_sym_register] = ACTIONS(2624), + [anon_sym_inline] = ACTIONS(2624), + [anon_sym___inline] = ACTIONS(2624), + [anon_sym___inline__] = ACTIONS(2624), + [anon_sym___forceinline] = ACTIONS(2624), + [anon_sym_thread_local] = ACTIONS(2624), + [anon_sym___thread] = ACTIONS(2624), + [anon_sym_const] = ACTIONS(2624), + [anon_sym_constexpr] = ACTIONS(2624), + [anon_sym_volatile] = ACTIONS(2624), + [anon_sym_restrict] = ACTIONS(2624), + [anon_sym___restrict__] = ACTIONS(2624), + [anon_sym__Atomic] = ACTIONS(2624), + [anon_sym__Noreturn] = ACTIONS(2624), + [anon_sym_noreturn] = ACTIONS(2624), + [anon_sym__Nonnull] = ACTIONS(2624), + [anon_sym_mutable] = ACTIONS(2624), + [anon_sym_constinit] = ACTIONS(2624), + [anon_sym_consteval] = ACTIONS(2624), + [anon_sym_alignas] = ACTIONS(2624), + [anon_sym__Alignas] = ACTIONS(2624), + [sym_primitive_type] = ACTIONS(2624), + [anon_sym_enum] = ACTIONS(2624), + [anon_sym_class] = ACTIONS(2624), + [anon_sym_struct] = ACTIONS(2624), + [anon_sym_union] = ACTIONS(2624), + [anon_sym_if] = ACTIONS(2624), + [anon_sym_switch] = ACTIONS(2624), + [anon_sym_case] = ACTIONS(2624), + [anon_sym_default] = ACTIONS(2624), + [anon_sym_while] = ACTIONS(2624), + [anon_sym_do] = ACTIONS(2624), + [anon_sym_for] = ACTIONS(2624), + [anon_sym_return] = ACTIONS(2624), + [anon_sym_break] = ACTIONS(2624), + [anon_sym_continue] = ACTIONS(2624), + [anon_sym_goto] = ACTIONS(2624), + [anon_sym___try] = ACTIONS(2624), + [anon_sym___leave] = ACTIONS(2624), + [anon_sym_not] = ACTIONS(2624), + [anon_sym_compl] = ACTIONS(2624), + [anon_sym_DASH_DASH] = ACTIONS(2626), + [anon_sym_PLUS_PLUS] = ACTIONS(2626), + [anon_sym_sizeof] = ACTIONS(2624), + [anon_sym___alignof__] = ACTIONS(2624), + [anon_sym___alignof] = ACTIONS(2624), + [anon_sym__alignof] = ACTIONS(2624), + [anon_sym_alignof] = ACTIONS(2624), + [anon_sym__Alignof] = ACTIONS(2624), + [anon_sym_offsetof] = ACTIONS(2624), + [anon_sym__Generic] = ACTIONS(2624), + [anon_sym_asm] = ACTIONS(2624), + [anon_sym___asm__] = ACTIONS(2624), + [anon_sym___asm] = ACTIONS(2624), + [sym_number_literal] = ACTIONS(2626), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2626), + [anon_sym_u_DQUOTE] = ACTIONS(2626), + [anon_sym_U_DQUOTE] = ACTIONS(2626), + [anon_sym_u8_DQUOTE] = ACTIONS(2626), + [anon_sym_DQUOTE] = ACTIONS(2626), + [sym_true] = ACTIONS(2624), + [sym_false] = ACTIONS(2624), + [anon_sym_NULL] = ACTIONS(2624), + [anon_sym_nullptr] = ACTIONS(2624), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2624), + [anon_sym_decltype] = ACTIONS(2624), + [anon_sym_typename] = ACTIONS(2624), + [anon_sym_template] = ACTIONS(2624), + [anon_sym_try] = ACTIONS(2624), + [anon_sym_delete] = ACTIONS(2624), + [anon_sym_throw] = ACTIONS(2624), + [anon_sym_co_return] = ACTIONS(2624), + [anon_sym_co_yield] = ACTIONS(2624), + [anon_sym_R_DQUOTE] = ACTIONS(2626), + [anon_sym_LR_DQUOTE] = ACTIONS(2626), + [anon_sym_uR_DQUOTE] = ACTIONS(2626), + [anon_sym_UR_DQUOTE] = ACTIONS(2626), + [anon_sym_u8R_DQUOTE] = ACTIONS(2626), + [anon_sym_co_await] = ACTIONS(2624), + [anon_sym_new] = ACTIONS(2624), + [anon_sym_requires] = ACTIONS(2624), + [sym_this] = ACTIONS(2624), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2624), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2624), + [anon_sym_FORWARD] = ACTIONS(2624), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2624), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2624), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2624), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2624), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2624), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2624), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2624), + [anon_sym_PS_GET] = ACTIONS(2624), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2624), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2624), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2624), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2624), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2624), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2624), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2624), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2624), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2624), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2624), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2624), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2624), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2624), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2624), + [anon_sym_MOZ_COLD] = ACTIONS(2624), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2624), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2624), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2624), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2624), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2624), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2624), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2624), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2624), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2624), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2624), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2624), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2624), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2624), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2624), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2624), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2624), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2624), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2624), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2624), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2624), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_NONNULL] = ACTIONS(2624), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2624), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2624), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2624), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2624), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2624), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_NORETURN] = ACTIONS(2624), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2624), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2624), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2624), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2624), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2624), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2624), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2624), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2624), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2624), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2624), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2624), + [anon_sym_MOZ_RAII] = ACTIONS(2624), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2624), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2624), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2624), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2624), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2624), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2624), + }, + [STATE(714)] = { + [sym__declaration_modifiers] = STATE(1236), + [sym__declaration_specifiers] = STATE(6628), + [sym_attribute_specifier] = STATE(1236), + [sym_attribute_declaration] = STATE(1236), + [sym_ms_declspec_modifier] = STATE(1236), + [sym_storage_class_specifier] = STATE(1236), + [sym_type_qualifier] = STATE(1236), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(2133), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6919), + [sym_qualified_type_identifier] = STATE(1482), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1236), + [aux_sym_sized_type_specifier_repeat1] = STATE(1462), + [sym_identifier] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3003), + [anon_sym_BANG] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3003), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3005), + [anon_sym_SLASH] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3003), + [anon_sym_AMP_AMP] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_CARET] = ACTIONS(3005), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_EQ_EQ] = ACTIONS(3003), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_GT] = ACTIONS(3005), + [anon_sym_GT_EQ] = ACTIONS(3003), + [anon_sym_LT_EQ] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3005), + [anon_sym_LT_LT] = ACTIONS(3005), + [anon_sym_GT_GT] = ACTIONS(3005), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(3007), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(3011), + [anon_sym_unsigned] = ACTIONS(3011), + [anon_sym_long] = ACTIONS(3011), + [anon_sym_short] = ACTIONS(3011), + [anon_sym_static] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(3005), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3013), + [anon_sym_enum] = ACTIONS(3015), + [anon_sym_class] = ACTIONS(3017), + [anon_sym_struct] = ACTIONS(3019), + [anon_sym_union] = ACTIONS(3021), + [anon_sym_STAR_EQ] = ACTIONS(3003), + [anon_sym_SLASH_EQ] = ACTIONS(3003), + [anon_sym_PERCENT_EQ] = ACTIONS(3003), + [anon_sym_PLUS_EQ] = ACTIONS(3003), + [anon_sym_DASH_EQ] = ACTIONS(3003), + [anon_sym_LT_LT_EQ] = ACTIONS(3003), + [anon_sym_GT_GT_EQ] = ACTIONS(3003), + [anon_sym_AMP_EQ] = ACTIONS(3003), + [anon_sym_CARET_EQ] = ACTIONS(3003), + [anon_sym_PIPE_EQ] = ACTIONS(3003), + [anon_sym_and_eq] = ACTIONS(3005), + [anon_sym_or_eq] = ACTIONS(3005), + [anon_sym_xor_eq] = ACTIONS(3005), + [anon_sym_not] = ACTIONS(3005), + [anon_sym_compl] = ACTIONS(3005), + [anon_sym_LT_EQ_GT] = ACTIONS(3003), + [anon_sym_or] = ACTIONS(3005), + [anon_sym_and] = ACTIONS(3005), + [anon_sym_bitor] = ACTIONS(3005), + [anon_sym_xor] = ACTIONS(3005), + [anon_sym_bitand] = ACTIONS(3005), + [anon_sym_not_eq] = ACTIONS(3005), + [anon_sym_DASH_DASH] = ACTIONS(3003), + [anon_sym_PLUS_PLUS] = ACTIONS(3003), + [anon_sym_DASH_GT] = ACTIONS(3005), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(3023), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3025), + [anon_sym_co_await] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3025), + [anon_sym_DASH_GT_STAR] = ACTIONS(3003), + [anon_sym_LPAREN_RPAREN] = ACTIONS(3003), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3003), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3027), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(715)] = { + [sym__declaration_modifiers] = STATE(1236), + [sym__declaration_specifiers] = STATE(6628), + [sym_attribute_specifier] = STATE(1236), + [sym_attribute_declaration] = STATE(1236), + [sym_ms_declspec_modifier] = STATE(1236), + [sym_storage_class_specifier] = STATE(1236), + [sym_type_qualifier] = STATE(1236), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(2133), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6919), + [sym_qualified_type_identifier] = STATE(1482), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1236), + [aux_sym_sized_type_specifier_repeat1] = STATE(1462), + [sym_identifier] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3031), + [anon_sym_PERCENT] = ACTIONS(3031), + [anon_sym_PIPE_PIPE] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_PIPE] = ACTIONS(3031), + [anon_sym_CARET] = ACTIONS(3031), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_EQ_EQ] = ACTIONS(3029), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_GT] = ACTIONS(3031), + [anon_sym_GT_EQ] = ACTIONS(3029), + [anon_sym_LT_EQ] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3031), + [anon_sym_LT_LT] = ACTIONS(3031), + [anon_sym_GT_GT] = ACTIONS(3031), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(3007), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(3011), + [anon_sym_unsigned] = ACTIONS(3011), + [anon_sym_long] = ACTIONS(3011), + [anon_sym_short] = ACTIONS(3011), + [anon_sym_static] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(3031), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3013), + [anon_sym_enum] = ACTIONS(3015), + [anon_sym_class] = ACTIONS(3017), + [anon_sym_struct] = ACTIONS(3019), + [anon_sym_union] = ACTIONS(3021), + [anon_sym_STAR_EQ] = ACTIONS(3029), + [anon_sym_SLASH_EQ] = ACTIONS(3029), + [anon_sym_PERCENT_EQ] = ACTIONS(3029), + [anon_sym_PLUS_EQ] = ACTIONS(3029), + [anon_sym_DASH_EQ] = ACTIONS(3029), + [anon_sym_LT_LT_EQ] = ACTIONS(3029), + [anon_sym_GT_GT_EQ] = ACTIONS(3029), + [anon_sym_AMP_EQ] = ACTIONS(3029), + [anon_sym_CARET_EQ] = ACTIONS(3029), + [anon_sym_PIPE_EQ] = ACTIONS(3029), + [anon_sym_and_eq] = ACTIONS(3031), + [anon_sym_or_eq] = ACTIONS(3031), + [anon_sym_xor_eq] = ACTIONS(3031), + [anon_sym_not] = ACTIONS(3031), + [anon_sym_compl] = ACTIONS(3031), + [anon_sym_LT_EQ_GT] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3031), + [anon_sym_and] = ACTIONS(3031), + [anon_sym_bitor] = ACTIONS(3031), + [anon_sym_xor] = ACTIONS(3031), + [anon_sym_bitand] = ACTIONS(3031), + [anon_sym_not_eq] = ACTIONS(3031), + [anon_sym_DASH_DASH] = ACTIONS(3029), + [anon_sym_PLUS_PLUS] = ACTIONS(3029), + [anon_sym_DASH_GT] = ACTIONS(3031), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(3023), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3033), + [anon_sym_co_await] = ACTIONS(3031), + [anon_sym_new] = ACTIONS(3033), + [anon_sym_DASH_GT_STAR] = ACTIONS(3029), + [anon_sym_LPAREN_RPAREN] = ACTIONS(3029), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3029), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3035), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(716)] = { + [sym_function_definition] = STATE(1149), + [sym_declaration] = STATE(1149), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5023), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1111), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1459), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__empty_declaration] = STATE(1149), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(1149), + [sym_operator_cast] = STATE(7093), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(1149), + [sym_operator_cast_declaration] = STATE(1149), + [sym_constructor_or_destructor_definition] = STATE(1149), + [sym_constructor_or_destructor_declaration] = STATE(1149), + [sym_friend_declaration] = STATE(1149), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_alias_declaration] = STATE(1149), + [sym_concept_definition] = STATE(1149), + [sym_requires_clause] = STATE(728), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5711), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_using] = ACTIONS(3041), + [anon_sym_concept] = ACTIONS(3043), + [anon_sym_requires] = ACTIONS(3045), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(717)] = { + [sym_function_definition] = STATE(499), + [sym_declaration] = STATE(499), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5019), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1110), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6561), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1468), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__empty_declaration] = STATE(499), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1071), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(499), + [sym_operator_cast] = STATE(7114), + [sym__constructor_specifiers] = STATE(1071), + [sym_operator_cast_definition] = STATE(499), + [sym_operator_cast_declaration] = STATE(499), + [sym_constructor_or_destructor_definition] = STATE(499), + [sym_constructor_or_destructor_declaration] = STATE(499), + [sym_friend_declaration] = STATE(499), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_alias_declaration] = STATE(499), + [sym_concept_definition] = STATE(499), + [sym_requires_clause] = STATE(727), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5711), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7114), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1071), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(3047), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(3049), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(3051), + [anon_sym_using] = ACTIONS(3053), + [anon_sym_concept] = ACTIONS(692), + [anon_sym_requires] = ACTIONS(3045), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(718)] = { + [sym_function_definition] = STATE(216), + [sym_declaration] = STATE(216), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6525), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__empty_declaration] = STATE(216), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1066), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(216), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1066), + [sym_operator_cast_definition] = STATE(216), + [sym_operator_cast_declaration] = STATE(216), + [sym_constructor_or_destructor_definition] = STATE(216), + [sym_constructor_or_destructor_declaration] = STATE(216), + [sym_friend_declaration] = STATE(216), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_alias_declaration] = STATE(216), + [sym_concept_definition] = STATE(216), + [sym_requires_clause] = STATE(729), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5711), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1066), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(3055), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(3057), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(3059), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_requires] = ACTIONS(3045), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(719)] = { + [sym_function_definition] = STATE(577), + [sym_declaration] = STATE(577), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6593), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__empty_declaration] = STATE(577), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1062), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(577), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1062), + [sym_operator_cast_definition] = STATE(577), + [sym_operator_cast_declaration] = STATE(577), + [sym_constructor_or_destructor_definition] = STATE(577), + [sym_constructor_or_destructor_declaration] = STATE(577), + [sym_friend_declaration] = STATE(577), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_alias_declaration] = STATE(577), + [sym_concept_definition] = STATE(577), + [sym_requires_clause] = STATE(725), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5711), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1062), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(3063), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(3067), + [anon_sym_using] = ACTIONS(3069), + [anon_sym_concept] = ACTIONS(243), + [anon_sym_requires] = ACTIONS(3045), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(720)] = { + [sym_function_definition] = STATE(1029), + [sym_declaration] = STATE(1029), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5034), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1112), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6523), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1456), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__empty_declaration] = STATE(1029), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1069), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(1029), + [sym_operator_cast] = STATE(7103), + [sym__constructor_specifiers] = STATE(1069), + [sym_operator_cast_definition] = STATE(1029), + [sym_operator_cast_declaration] = STATE(1029), + [sym_constructor_or_destructor_definition] = STATE(1029), + [sym_constructor_or_destructor_declaration] = STATE(1029), + [sym_friend_declaration] = STATE(1029), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_alias_declaration] = STATE(1029), + [sym_concept_definition] = STATE(1029), + [sym_requires_clause] = STATE(724), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5711), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7103), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2536), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(2550), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2552), + [anon_sym_using] = ACTIONS(3071), + [anon_sym_concept] = ACTIONS(3073), + [anon_sym_requires] = ACTIONS(3045), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(721)] = { + [sym_function_definition] = STATE(1163), + [sym_declaration] = STATE(1163), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5042), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1113), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6583), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1466), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__empty_declaration] = STATE(1163), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(980), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(1163), + [sym_operator_cast] = STATE(7106), + [sym__constructor_specifiers] = STATE(980), + [sym_operator_cast_definition] = STATE(1163), + [sym_operator_cast_declaration] = STATE(1163), + [sym_constructor_or_destructor_definition] = STATE(1163), + [sym_constructor_or_destructor_declaration] = STATE(1163), + [sym_friend_declaration] = STATE(1163), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_alias_declaration] = STATE(1163), + [sym_concept_definition] = STATE(1163), + [sym_requires_clause] = STATE(726), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5711), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7106), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2842), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(2844), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2846), + [anon_sym_using] = ACTIONS(3075), + [anon_sym_concept] = ACTIONS(3077), + [anon_sym_requires] = ACTIONS(3045), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(722)] = { + [sym_function_definition] = STATE(422), + [sym_declaration] = STATE(422), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4973), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1100), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6597), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1455), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__empty_declaration] = STATE(422), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(995), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(422), + [sym_operator_cast] = STATE(7099), + [sym__constructor_specifiers] = STATE(995), + [sym_operator_cast_definition] = STATE(422), + [sym_operator_cast_declaration] = STATE(422), + [sym_constructor_or_destructor_definition] = STATE(422), + [sym_constructor_or_destructor_declaration] = STATE(422), + [sym_friend_declaration] = STATE(422), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_alias_declaration] = STATE(422), + [sym_concept_definition] = STATE(422), + [sym_requires_clause] = STATE(723), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5711), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7099), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(995), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(3079), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(3081), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(3083), + [anon_sym_using] = ACTIONS(3085), + [anon_sym_concept] = ACTIONS(147), + [anon_sym_requires] = ACTIONS(3045), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(723)] = { + [sym_function_definition] = STATE(622), + [sym_declaration] = STATE(622), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4973), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1100), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6597), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1455), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__empty_declaration] = STATE(622), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(995), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(622), + [sym_operator_cast] = STATE(7099), + [sym__constructor_specifiers] = STATE(995), + [sym_operator_cast_definition] = STATE(622), + [sym_operator_cast_declaration] = STATE(622), + [sym_constructor_or_destructor_definition] = STATE(622), + [sym_constructor_or_destructor_declaration] = STATE(622), + [sym_friend_declaration] = STATE(622), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_alias_declaration] = STATE(622), + [sym_concept_definition] = STATE(622), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5711), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7099), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(995), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(3079), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(3081), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(3083), + [anon_sym_using] = ACTIONS(3085), + [anon_sym_concept] = ACTIONS(147), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(724)] = { + [sym_function_definition] = STATE(1046), + [sym_declaration] = STATE(1046), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5034), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1112), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6523), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1456), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__empty_declaration] = STATE(1046), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1069), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(1046), + [sym_operator_cast] = STATE(7103), + [sym__constructor_specifiers] = STATE(1069), + [sym_operator_cast_definition] = STATE(1046), + [sym_operator_cast_declaration] = STATE(1046), + [sym_constructor_or_destructor_definition] = STATE(1046), + [sym_constructor_or_destructor_declaration] = STATE(1046), + [sym_friend_declaration] = STATE(1046), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_alias_declaration] = STATE(1046), + [sym_concept_definition] = STATE(1046), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5711), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7103), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2536), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(2550), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2552), + [anon_sym_using] = ACTIONS(3071), + [anon_sym_concept] = ACTIONS(3073), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(725)] = { + [sym_function_definition] = STATE(611), + [sym_declaration] = STATE(611), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(4972), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1104), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6593), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1458), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__empty_declaration] = STATE(611), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1062), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(611), + [sym_operator_cast] = STATE(7120), + [sym__constructor_specifiers] = STATE(1062), + [sym_operator_cast_definition] = STATE(611), + [sym_operator_cast_declaration] = STATE(611), + [sym_constructor_or_destructor_definition] = STATE(611), + [sym_constructor_or_destructor_declaration] = STATE(611), + [sym_friend_declaration] = STATE(611), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_alias_declaration] = STATE(611), + [sym_concept_definition] = STATE(611), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5711), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7120), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1062), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(3063), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(3067), + [anon_sym_using] = ACTIONS(3069), + [anon_sym_concept] = ACTIONS(243), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(726)] = { + [sym_function_definition] = STATE(1182), + [sym_declaration] = STATE(1182), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5042), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1113), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6583), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1466), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__empty_declaration] = STATE(1182), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(980), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(1182), + [sym_operator_cast] = STATE(7106), + [sym__constructor_specifiers] = STATE(980), + [sym_operator_cast_definition] = STATE(1182), + [sym_operator_cast_declaration] = STATE(1182), + [sym_constructor_or_destructor_definition] = STATE(1182), + [sym_constructor_or_destructor_declaration] = STATE(1182), + [sym_friend_declaration] = STATE(1182), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_alias_declaration] = STATE(1182), + [sym_concept_definition] = STATE(1182), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5711), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7106), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2842), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(2844), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2846), + [anon_sym_using] = ACTIONS(3075), + [anon_sym_concept] = ACTIONS(3077), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(727)] = { + [sym_function_definition] = STATE(511), + [sym_declaration] = STATE(511), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5019), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1110), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6561), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1468), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__empty_declaration] = STATE(511), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1071), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(511), + [sym_operator_cast] = STATE(7114), + [sym__constructor_specifiers] = STATE(1071), + [sym_operator_cast_definition] = STATE(511), + [sym_operator_cast_declaration] = STATE(511), + [sym_constructor_or_destructor_definition] = STATE(511), + [sym_constructor_or_destructor_declaration] = STATE(511), + [sym_friend_declaration] = STATE(511), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_alias_declaration] = STATE(511), + [sym_concept_definition] = STATE(511), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5711), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7114), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1071), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(3047), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(3049), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(3051), + [anon_sym_using] = ACTIONS(3053), + [anon_sym_concept] = ACTIONS(692), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(728)] = { + [sym_function_definition] = STATE(1213), + [sym_declaration] = STATE(1213), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5023), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1111), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6573), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1459), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__empty_declaration] = STATE(1213), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1065), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(1213), + [sym_operator_cast] = STATE(7093), + [sym__constructor_specifiers] = STATE(1065), + [sym_operator_cast_definition] = STATE(1213), + [sym_operator_cast_declaration] = STATE(1213), + [sym_constructor_or_destructor_definition] = STATE(1213), + [sym_constructor_or_destructor_declaration] = STATE(1213), + [sym_friend_declaration] = STATE(1213), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_alias_declaration] = STATE(1213), + [sym_concept_definition] = STATE(1213), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5711), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7093), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(2790), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(2792), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(2794), + [anon_sym_using] = ACTIONS(3041), + [anon_sym_concept] = ACTIONS(3043), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(729)] = { + [sym_function_definition] = STATE(254), + [sym_declaration] = STATE(254), + [sym__declaration_modifiers] = STATE(1620), + [sym__declaration_specifiers] = STATE(5011), + [sym_attribute_specifier] = STATE(1620), + [sym_attribute_declaration] = STATE(1620), + [sym_ms_declspec_modifier] = STATE(1620), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(1108), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6525), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1620), + [sym_type_qualifier] = STATE(1620), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1464), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym__empty_declaration] = STATE(254), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_explicit_function_specifier] = STATE(1066), + [sym_dependent_type] = STATE(1397), + [sym_template_declaration] = STATE(254), + [sym_operator_cast] = STATE(7086), + [sym__constructor_specifiers] = STATE(1066), + [sym_operator_cast_definition] = STATE(254), + [sym_operator_cast_declaration] = STATE(254), + [sym_constructor_or_destructor_definition] = STATE(254), + [sym_constructor_or_destructor_declaration] = STATE(254), + [sym_friend_declaration] = STATE(254), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_alias_declaration] = STATE(254), + [sym_concept_definition] = STATE(254), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5711), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_qualified_operator_cast_identifier] = STATE(7086), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [aux_sym_operator_cast_definition_repeat1] = STATE(1066), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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(3055), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(3057), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_friend] = ACTIONS(3059), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_concept] = ACTIONS(339), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(730)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(914), + [sym_raw_string_literal] = STATE(3007), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), + [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(3113), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3121), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3123), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3121), + [anon_sym_or_eq] = ACTIONS(3121), + [anon_sym_xor_eq] = ACTIONS(3121), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3097), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3097), + [anon_sym_not_eq] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [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_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(731)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(914), + [sym_raw_string_literal] = STATE(3007), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), + [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(3113), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3121), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3131), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3121), + [anon_sym_or_eq] = ACTIONS(3121), + [anon_sym_xor_eq] = ACTIONS(3121), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3097), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3097), + [anon_sym_not_eq] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [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_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(732)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(914), + [sym_raw_string_literal] = STATE(3007), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), + [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(3113), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3121), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3133), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3121), + [anon_sym_or_eq] = ACTIONS(3121), + [anon_sym_xor_eq] = ACTIONS(3121), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3097), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3097), + [anon_sym_not_eq] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [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_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(733)] = { + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(5581), + [sym__declarator] = STATE(7000), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6300), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(8544), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3281), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8858), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3591), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8949), + [sym__unary_right_fold] = STATE(8980), + [sym__binary_fold] = STATE(8809), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5966), + [sym_qualified_identifier] = STATE(3615), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym___based] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(3153), + [anon_sym___clrcall] = ACTIONS(3153), + [anon_sym___stdcall] = ACTIONS(3153), + [anon_sym___fastcall] = ACTIONS(3153), + [anon_sym___thiscall] = ACTIONS(3153), + [anon_sym___vectorcall] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(3197), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(734)] = { + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(5581), + [sym__declarator] = STATE(7000), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6300), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(8544), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3281), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8422), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3591), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8423), + [sym__unary_right_fold] = STATE(8424), + [sym__binary_fold] = STATE(8425), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5966), + [sym_qualified_identifier] = STATE(3615), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym___based] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(3153), + [anon_sym___clrcall] = ACTIONS(3153), + [anon_sym___stdcall] = ACTIONS(3153), + [anon_sym___fastcall] = ACTIONS(3153), + [anon_sym___thiscall] = ACTIONS(3153), + [anon_sym___vectorcall] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(3197), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(735)] = { + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(5581), + [sym__declarator] = STATE(7000), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6300), + [sym_array_declarator] = STATE(6300), + [sym_compound_statement] = STATE(8532), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3237), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8532), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8698), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3591), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8934), + [sym__unary_right_fold] = STATE(8938), + [sym__binary_fold] = STATE(8482), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5966), + [sym_qualified_identifier] = STATE(3615), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(8510), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym___based] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(3153), + [anon_sym___clrcall] = ACTIONS(3153), + [anon_sym___stdcall] = ACTIONS(3153), + [anon_sym___fastcall] = ACTIONS(3153), + [anon_sym___thiscall] = ACTIONS(3153), + [anon_sym___vectorcall] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(3197), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(736)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(914), + [sym_raw_string_literal] = STATE(3007), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), + [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(3113), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3121), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3209), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3121), + [anon_sym_or_eq] = ACTIONS(3121), + [anon_sym_xor_eq] = ACTIONS(3121), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3097), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3097), + [anon_sym_not_eq] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [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_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(737)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(914), + [sym_raw_string_literal] = STATE(3007), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), + [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(3113), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3121), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3213), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3121), + [anon_sym_or_eq] = ACTIONS(3121), + [anon_sym_xor_eq] = ACTIONS(3121), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3097), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3097), + [anon_sym_not_eq] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [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_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(738)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_call_modifier] = STATE(5130), + [sym__declarator] = STATE(7000), + [sym__abstract_declarator] = STATE(7158), + [sym_parenthesized_declarator] = STATE(6300), + [sym_abstract_parenthesized_declarator] = STATE(6365), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_abstract_pointer_declarator] = STATE(6365), + [sym_function_declarator] = STATE(6300), + [sym_abstract_function_declarator] = STATE(6365), + [sym_array_declarator] = STATE(6300), + [sym_abstract_array_declarator] = STATE(6365), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_list] = STATE(3336), + [sym_parameter_declaration] = STATE(7553), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(7553), + [sym_variadic_parameter_declaration] = STATE(7553), + [sym_reference_declarator] = STATE(6300), + [sym_abstract_reference_declarator] = STATE(6365), + [sym_structured_binding_declarator] = STATE(6300), + [sym__function_declarator_seq] = STATE(6368), + [sym_template_type] = STATE(1357), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5937), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3215), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1869), + [anon_sym_RPAREN] = ACTIONS(3217), + [anon_sym_LPAREN2] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3223), + [anon_sym_AMP] = ACTIONS(3225), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(3153), + [anon_sym___clrcall] = ACTIONS(3153), + [anon_sym___stdcall] = ACTIONS(3153), + [anon_sym___fastcall] = ACTIONS(3153), + [anon_sym___thiscall] = ACTIONS(3153), + [anon_sym___vectorcall] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3229), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(3197), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(739)] = { + [sym_identifier] = ACTIONS(2260), + [anon_sym_LPAREN2] = ACTIONS(2262), + [anon_sym_BANG] = ACTIONS(2262), + [anon_sym_TILDE] = ACTIONS(2262), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_STAR] = ACTIONS(2262), + [anon_sym_AMP] = ACTIONS(2262), + [anon_sym___extension__] = ACTIONS(2260), + [anon_sym_virtual] = ACTIONS(2260), + [anon_sym_extern] = ACTIONS(2260), + [anon_sym___attribute__] = ACTIONS(2260), + [anon_sym___attribute] = ACTIONS(2260), + [anon_sym_COLON_COLON] = ACTIONS(2262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2262), + [anon_sym___declspec] = ACTIONS(2260), + [anon_sym_signed] = ACTIONS(2260), + [anon_sym_unsigned] = ACTIONS(2260), + [anon_sym_long] = ACTIONS(2260), + [anon_sym_short] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_static] = ACTIONS(2260), + [anon_sym_register] = ACTIONS(2260), + [anon_sym_inline] = ACTIONS(2260), + [anon_sym___inline] = ACTIONS(2260), + [anon_sym___inline__] = ACTIONS(2260), + [anon_sym___forceinline] = ACTIONS(2260), + [anon_sym_thread_local] = ACTIONS(2260), + [anon_sym___thread] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [anon_sym_constexpr] = ACTIONS(2260), + [anon_sym_volatile] = ACTIONS(2260), + [anon_sym_restrict] = ACTIONS(2260), + [anon_sym___restrict__] = ACTIONS(2260), + [anon_sym__Atomic] = ACTIONS(2260), + [anon_sym__Noreturn] = ACTIONS(2260), + [anon_sym_noreturn] = ACTIONS(2260), + [anon_sym__Nonnull] = ACTIONS(2260), + [anon_sym_mutable] = ACTIONS(2260), + [anon_sym_constinit] = ACTIONS(2260), + [anon_sym_consteval] = ACTIONS(2260), + [anon_sym_alignas] = ACTIONS(2260), + [anon_sym__Alignas] = ACTIONS(2260), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), + [anon_sym_class] = ACTIONS(2260), + [anon_sym_struct] = ACTIONS(2260), + [anon_sym_union] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(2260), + [anon_sym_compl] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_sizeof] = ACTIONS(2260), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2260), + [anon_sym_asm] = ACTIONS(2260), + [anon_sym___asm__] = ACTIONS(2260), + [anon_sym___asm] = ACTIONS(2260), + [sym_number_literal] = ACTIONS(2262), + [anon_sym_L_SQUOTE] = ACTIONS(2262), + [anon_sym_u_SQUOTE] = ACTIONS(2262), + [anon_sym_U_SQUOTE] = ACTIONS(2262), + [anon_sym_u8_SQUOTE] = ACTIONS(2262), + [anon_sym_SQUOTE] = ACTIONS(2262), + [anon_sym_L_DQUOTE] = ACTIONS(2262), + [anon_sym_u_DQUOTE] = ACTIONS(2262), + [anon_sym_U_DQUOTE] = ACTIONS(2262), + [anon_sym_u8_DQUOTE] = ACTIONS(2262), + [anon_sym_DQUOTE] = ACTIONS(2262), + [sym_true] = ACTIONS(2260), + [sym_false] = ACTIONS(2260), + [anon_sym_NULL] = ACTIONS(2260), + [anon_sym_nullptr] = ACTIONS(2260), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2260), + [anon_sym_decltype] = ACTIONS(2260), + [anon_sym_typename] = ACTIONS(2260), + [anon_sym_template] = ACTIONS(2260), + [anon_sym_delete] = ACTIONS(2260), + [anon_sym_R_DQUOTE] = ACTIONS(2262), + [anon_sym_LR_DQUOTE] = ACTIONS(2262), + [anon_sym_uR_DQUOTE] = ACTIONS(2262), + [anon_sym_UR_DQUOTE] = ACTIONS(2262), + [anon_sym_u8R_DQUOTE] = ACTIONS(2262), + [anon_sym_co_await] = ACTIONS(2260), + [anon_sym_new] = ACTIONS(2260), + [anon_sym_requires] = ACTIONS(2260), + [sym_this] = ACTIONS(2260), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_FORWARD] = ACTIONS(2260), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2260), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_PS_GET] = ACTIONS(2260), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2260), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2260), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2260), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2260), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2260), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2260), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2260), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2260), + [anon_sym_MOZ_COLD] = ACTIONS(2260), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2260), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2260), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2260), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2260), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2260), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2260), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2260), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2260), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2260), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2260), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2260), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2260), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2260), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_NONNULL] = ACTIONS(2260), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2260), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2260), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2260), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2260), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2260), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2260), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2260), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2260), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2260), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2260), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2260), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2260), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2260), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2260), + [anon_sym_MOZ_RAII] = ACTIONS(2260), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2260), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2260), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2260), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2260), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2260), + }, + [STATE(740)] = { + [sym_identifier] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_virtual] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_COLON_COLON] = ACTIONS(2438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_mutable] = ACTIONS(2436), + [anon_sym_constinit] = ACTIONS(2436), + [anon_sym_consteval] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_class] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_not] = ACTIONS(2436), + [anon_sym_compl] = ACTIONS(2436), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_sizeof] = ACTIONS(2436), + [anon_sym___alignof__] = ACTIONS(2436), + [anon_sym___alignof] = ACTIONS(2436), + [anon_sym__alignof] = ACTIONS(2436), + [anon_sym_alignof] = ACTIONS(2436), + [anon_sym__Alignof] = ACTIONS(2436), + [anon_sym_offsetof] = ACTIONS(2436), + [anon_sym__Generic] = ACTIONS(2436), + [anon_sym_asm] = ACTIONS(2436), + [anon_sym___asm__] = ACTIONS(2436), + [anon_sym___asm] = ACTIONS(2436), + [sym_number_literal] = ACTIONS(2438), + [anon_sym_L_SQUOTE] = ACTIONS(2438), + [anon_sym_u_SQUOTE] = ACTIONS(2438), + [anon_sym_U_SQUOTE] = ACTIONS(2438), + [anon_sym_u8_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_L_DQUOTE] = ACTIONS(2438), + [anon_sym_u_DQUOTE] = ACTIONS(2438), + [anon_sym_U_DQUOTE] = ACTIONS(2438), + [anon_sym_u8_DQUOTE] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_nullptr] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2436), + [anon_sym_decltype] = ACTIONS(2436), + [anon_sym_typename] = ACTIONS(2436), + [anon_sym_template] = ACTIONS(2436), + [anon_sym_delete] = ACTIONS(2436), + [anon_sym_R_DQUOTE] = ACTIONS(2438), + [anon_sym_LR_DQUOTE] = ACTIONS(2438), + [anon_sym_uR_DQUOTE] = ACTIONS(2438), + [anon_sym_UR_DQUOTE] = ACTIONS(2438), + [anon_sym_u8R_DQUOTE] = ACTIONS(2438), + [anon_sym_co_await] = ACTIONS(2436), + [anon_sym_new] = ACTIONS(2436), + [anon_sym_requires] = ACTIONS(2436), + [sym_this] = ACTIONS(2436), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_FORWARD] = ACTIONS(2436), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2436), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_PS_GET] = ACTIONS(2436), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2436), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2436), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2436), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2436), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2436), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2436), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2436), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2436), + [anon_sym_MOZ_COLD] = ACTIONS(2436), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2436), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2436), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2436), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2436), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2436), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2436), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2436), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2436), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2436), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2436), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2436), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2436), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2436), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_NONNULL] = ACTIONS(2436), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2436), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2436), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2436), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2436), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2436), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2436), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2436), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2436), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2436), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2436), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2436), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2436), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2436), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2436), + [anon_sym_MOZ_RAII] = ACTIONS(2436), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2436), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2436), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2436), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2436), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2436), + }, + [STATE(741)] = { + [sym_identifier] = ACTIONS(2080), + [anon_sym_LPAREN2] = ACTIONS(2085), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(2085), + [anon_sym_AMP] = ACTIONS(2085), + [anon_sym___extension__] = ACTIONS(2080), + [anon_sym_virtual] = ACTIONS(2080), + [anon_sym_extern] = ACTIONS(2080), + [anon_sym___attribute__] = ACTIONS(2080), + [anon_sym___attribute] = ACTIONS(2080), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2085), + [anon_sym___declspec] = ACTIONS(2080), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2080), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_register] = ACTIONS(2080), + [anon_sym_inline] = ACTIONS(2080), + [anon_sym___inline] = ACTIONS(2080), + [anon_sym___inline__] = ACTIONS(2080), + [anon_sym___forceinline] = ACTIONS(2080), + [anon_sym_thread_local] = ACTIONS(2080), + [anon_sym___thread] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_constexpr] = ACTIONS(2080), + [anon_sym_volatile] = ACTIONS(2080), + [anon_sym_restrict] = ACTIONS(2080), + [anon_sym___restrict__] = ACTIONS(2080), + [anon_sym__Atomic] = ACTIONS(2080), + [anon_sym__Noreturn] = ACTIONS(2080), + [anon_sym_noreturn] = ACTIONS(2080), + [anon_sym__Nonnull] = ACTIONS(2080), + [anon_sym_mutable] = ACTIONS(2080), + [anon_sym_constinit] = ACTIONS(2080), + [anon_sym_consteval] = ACTIONS(2080), + [anon_sym_alignas] = ACTIONS(2080), + [anon_sym__Alignas] = ACTIONS(2080), + [sym_primitive_type] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), + [anon_sym_class] = ACTIONS(2080), + [anon_sym_struct] = ACTIONS(2080), + [anon_sym_union] = ACTIONS(2080), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_compl] = ACTIONS(2080), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [anon_sym_PLUS_PLUS] = ACTIONS(2085), + [anon_sym_sizeof] = ACTIONS(2080), + [anon_sym___alignof__] = ACTIONS(2080), + [anon_sym___alignof] = ACTIONS(2080), + [anon_sym__alignof] = ACTIONS(2080), + [anon_sym_alignof] = ACTIONS(2080), + [anon_sym__Alignof] = ACTIONS(2080), + [anon_sym_offsetof] = ACTIONS(2080), + [anon_sym__Generic] = ACTIONS(2080), + [anon_sym_asm] = ACTIONS(2080), + [anon_sym___asm__] = ACTIONS(2080), + [anon_sym___asm] = ACTIONS(2080), + [sym_number_literal] = ACTIONS(2085), + [anon_sym_L_SQUOTE] = ACTIONS(2085), + [anon_sym_u_SQUOTE] = ACTIONS(2085), + [anon_sym_U_SQUOTE] = ACTIONS(2085), + [anon_sym_u8_SQUOTE] = ACTIONS(2085), + [anon_sym_SQUOTE] = ACTIONS(2085), + [anon_sym_L_DQUOTE] = ACTIONS(2085), + [anon_sym_u_DQUOTE] = ACTIONS(2085), + [anon_sym_U_DQUOTE] = ACTIONS(2085), + [anon_sym_u8_DQUOTE] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2085), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [anon_sym_NULL] = ACTIONS(2080), + [anon_sym_nullptr] = ACTIONS(2080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2080), + [anon_sym_decltype] = ACTIONS(2080), + [anon_sym_typename] = ACTIONS(2080), + [anon_sym_template] = ACTIONS(2080), + [anon_sym_delete] = ACTIONS(2080), + [anon_sym_R_DQUOTE] = ACTIONS(2085), + [anon_sym_LR_DQUOTE] = ACTIONS(2085), + [anon_sym_uR_DQUOTE] = ACTIONS(2085), + [anon_sym_UR_DQUOTE] = ACTIONS(2085), + [anon_sym_u8R_DQUOTE] = ACTIONS(2085), + [anon_sym_co_await] = ACTIONS(2080), + [anon_sym_new] = ACTIONS(2080), + [anon_sym_requires] = ACTIONS(2080), + [sym_this] = ACTIONS(2080), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2080), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2080), + [anon_sym_FORWARD] = ACTIONS(2080), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2080), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2080), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2080), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2080), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2080), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2080), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2080), + [anon_sym_PS_GET] = ACTIONS(2080), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2080), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2080), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2080), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2080), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2080), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2080), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2080), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2080), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2080), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2080), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2080), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2080), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2080), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2080), + [anon_sym_MOZ_COLD] = ACTIONS(2080), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2080), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2080), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2080), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2080), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2080), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2080), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2080), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2080), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2080), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2080), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2080), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2080), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2080), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2080), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2080), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2080), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2080), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2080), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2080), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2080), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_NONNULL] = ACTIONS(2080), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2080), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2080), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2080), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2080), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2080), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_NORETURN] = ACTIONS(2080), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2080), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2080), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2080), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2080), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2080), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2080), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2080), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2080), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2080), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2080), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2080), + [anon_sym_MOZ_RAII] = ACTIONS(2080), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2080), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2080), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2080), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2080), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2080), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2080), + }, + [STATE(742)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(957), + [sym_raw_string_literal] = STATE(3007), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3121), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3131), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3121), + [anon_sym_or_eq] = ACTIONS(3121), + [anon_sym_xor_eq] = ACTIONS(3121), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3097), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3097), + [anon_sym_not_eq] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [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_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(743)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(957), + [sym_raw_string_literal] = STATE(3007), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3121), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3231), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3121), + [anon_sym_or_eq] = ACTIONS(3121), + [anon_sym_xor_eq] = ACTIONS(3121), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3097), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3097), + [anon_sym_not_eq] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [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_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(744)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(957), + [sym_raw_string_literal] = STATE(3007), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3121), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3233), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3121), + [anon_sym_or_eq] = ACTIONS(3121), + [anon_sym_xor_eq] = ACTIONS(3121), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3097), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3097), + [anon_sym_not_eq] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [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_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(745)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(957), + [sym_raw_string_literal] = STATE(3007), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3121), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3213), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3121), + [anon_sym_or_eq] = ACTIONS(3121), + [anon_sym_xor_eq] = ACTIONS(3121), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3097), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3097), + [anon_sym_not_eq] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [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_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(746)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(957), + [sym_raw_string_literal] = STATE(3007), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3121), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3121), + [anon_sym_or_eq] = ACTIONS(3121), + [anon_sym_xor_eq] = ACTIONS(3121), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3097), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3097), + [anon_sym_not_eq] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [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_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(747)] = { + [sym_string_literal] = STATE(2809), + [sym_template_argument_list] = STATE(898), + [sym_raw_string_literal] = STATE(2809), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(3102), + [anon_sym_RPAREN] = ACTIONS(3102), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3235), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3099), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3089), + [anon_sym_SLASH_EQ] = ACTIONS(3089), + [anon_sym_PERCENT_EQ] = ACTIONS(3089), + [anon_sym_PLUS_EQ] = ACTIONS(3089), + [anon_sym_DASH_EQ] = ACTIONS(3089), + [anon_sym_LT_LT_EQ] = ACTIONS(3089), + [anon_sym_GT_GT_EQ] = ACTIONS(3089), + [anon_sym_AMP_EQ] = ACTIONS(3089), + [anon_sym_CARET_EQ] = ACTIONS(3089), + [anon_sym_PIPE_EQ] = ACTIONS(3089), + [anon_sym_and_eq] = ACTIONS(3238), + [anon_sym_or_eq] = ACTIONS(3238), + [anon_sym_xor_eq] = ACTIONS(3238), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3097), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3097), + [anon_sym_not_eq] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(3240), + [anon_sym_u_DQUOTE] = ACTIONS(3240), + [anon_sym_U_DQUOTE] = ACTIONS(3240), + [anon_sym_u8_DQUOTE] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_R_DQUOTE] = ACTIONS(3242), + [anon_sym_LR_DQUOTE] = ACTIONS(3242), + [anon_sym_uR_DQUOTE] = ACTIONS(3242), + [anon_sym_UR_DQUOTE] = ACTIONS(3242), + [anon_sym_u8R_DQUOTE] = ACTIONS(3242), + [anon_sym_DASH_GT_STAR] = ACTIONS(3089), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(748)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(957), + [sym_raw_string_literal] = STATE(3007), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3121), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3133), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3121), + [anon_sym_or_eq] = ACTIONS(3121), + [anon_sym_xor_eq] = ACTIONS(3121), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3097), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3097), + [anon_sym_not_eq] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [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_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(749)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(957), + [sym_raw_string_literal] = STATE(3007), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3121), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3209), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3121), + [anon_sym_or_eq] = ACTIONS(3121), + [anon_sym_xor_eq] = ACTIONS(3121), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3097), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3097), + [anon_sym_not_eq] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [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_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(750)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(963), + [sym_raw_string_literal] = STATE(3007), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(3102), + [anon_sym_RPAREN] = ACTIONS(3102), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_EQ] = 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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3121), + [anon_sym_or_eq] = ACTIONS(3121), + [anon_sym_xor_eq] = ACTIONS(3121), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3097), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3097), + [anon_sym_not_eq] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [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_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(751)] = { + [sym_identifier] = ACTIONS(3244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3246), + [anon_sym_COMMA] = ACTIONS(3246), + [anon_sym_RPAREN] = ACTIONS(3246), + [anon_sym_LPAREN2] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_PIPE_PIPE] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3244), + [anon_sym_CARET] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3244), + [anon_sym_EQ_EQ] = ACTIONS(3246), + [anon_sym_BANG_EQ] = ACTIONS(3246), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_GT_EQ] = ACTIONS(3246), + [anon_sym_LT_EQ] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_LT_LT] = ACTIONS(3244), + [anon_sym_GT_GT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym___extension__] = ACTIONS(3244), + [anon_sym_virtual] = ACTIONS(3244), + [anon_sym_extern] = ACTIONS(3244), + [anon_sym___attribute__] = ACTIONS(3244), + [anon_sym___attribute] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3246), + [anon_sym___declspec] = ACTIONS(3244), + [anon_sym___based] = ACTIONS(3244), + [anon_sym___cdecl] = ACTIONS(3244), + [anon_sym___clrcall] = ACTIONS(3244), + [anon_sym___stdcall] = ACTIONS(3244), + [anon_sym___fastcall] = ACTIONS(3244), + [anon_sym___thiscall] = ACTIONS(3244), + [anon_sym___vectorcall] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_register] = ACTIONS(3244), + [anon_sym_inline] = ACTIONS(3244), + [anon_sym___inline] = ACTIONS(3244), + [anon_sym___inline__] = ACTIONS(3244), + [anon_sym___forceinline] = ACTIONS(3244), + [anon_sym_thread_local] = ACTIONS(3244), + [anon_sym___thread] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_constexpr] = ACTIONS(3244), + [anon_sym_volatile] = ACTIONS(3244), + [anon_sym_restrict] = ACTIONS(3244), + [anon_sym___restrict__] = ACTIONS(3244), + [anon_sym__Atomic] = ACTIONS(3244), + [anon_sym__Noreturn] = ACTIONS(3244), + [anon_sym_noreturn] = ACTIONS(3244), + [anon_sym__Nonnull] = ACTIONS(3244), + [anon_sym_mutable] = ACTIONS(3244), + [anon_sym_constinit] = ACTIONS(3244), + [anon_sym_consteval] = ACTIONS(3244), + [anon_sym_alignas] = ACTIONS(3244), + [anon_sym__Alignas] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_STAR_EQ] = ACTIONS(3246), + [anon_sym_SLASH_EQ] = ACTIONS(3246), + [anon_sym_PERCENT_EQ] = ACTIONS(3246), + [anon_sym_PLUS_EQ] = ACTIONS(3246), + [anon_sym_DASH_EQ] = ACTIONS(3246), + [anon_sym_LT_LT_EQ] = ACTIONS(3246), + [anon_sym_GT_GT_EQ] = ACTIONS(3246), + [anon_sym_AMP_EQ] = ACTIONS(3246), + [anon_sym_CARET_EQ] = ACTIONS(3246), + [anon_sym_PIPE_EQ] = ACTIONS(3246), + [anon_sym_and_eq] = ACTIONS(3244), + [anon_sym_or_eq] = ACTIONS(3244), + [anon_sym_xor_eq] = ACTIONS(3244), + [anon_sym_LT_EQ_GT] = ACTIONS(3246), + [anon_sym_or] = ACTIONS(3244), + [anon_sym_and] = ACTIONS(3244), + [anon_sym_bitor] = ACTIONS(3244), + [anon_sym_xor] = ACTIONS(3244), + [anon_sym_bitand] = ACTIONS(3244), + [anon_sym_not_eq] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_DOT_STAR] = ACTIONS(3246), + [anon_sym_DASH_GT] = ACTIONS(3246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3244), + [anon_sym_decltype] = ACTIONS(3244), + [anon_sym_template] = ACTIONS(3244), + [anon_sym_operator] = ACTIONS(3244), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3244), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3244), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3244), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3244), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3244), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3244), + [anon_sym_MOZ_COLD] = ACTIONS(3244), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3244), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3244), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3244), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3244), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3244), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3244), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3244), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3244), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3244), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3244), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3244), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3244), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3244), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3244), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3244), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3244), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3244), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3244), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_NONNULL] = ACTIONS(3244), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3244), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3244), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3244), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3244), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3244), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_NORETURN] = ACTIONS(3244), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3244), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3244), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3244), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3244), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3244), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3244), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3244), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3244), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3244), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3244), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3244), + [anon_sym_MOZ_RAII] = ACTIONS(3244), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3244), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3244), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3244), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3244), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3244), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3244), + }, + [STATE(752)] = { + [sym_identifier] = ACTIONS(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3250), + [anon_sym_COMMA] = ACTIONS(3250), + [anon_sym_RPAREN] = ACTIONS(3250), + [anon_sym_LPAREN2] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3248), + [anon_sym_CARET] = ACTIONS(3248), + [anon_sym_AMP] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3250), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_LT_LT] = ACTIONS(3248), + [anon_sym_GT_GT] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym___extension__] = ACTIONS(3248), + [anon_sym_virtual] = ACTIONS(3248), + [anon_sym_extern] = ACTIONS(3248), + [anon_sym___attribute__] = ACTIONS(3248), + [anon_sym___attribute] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(3250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3250), + [anon_sym___declspec] = ACTIONS(3248), + [anon_sym___based] = ACTIONS(3248), + [anon_sym___cdecl] = ACTIONS(3248), + [anon_sym___clrcall] = ACTIONS(3248), + [anon_sym___stdcall] = ACTIONS(3248), + [anon_sym___fastcall] = ACTIONS(3248), + [anon_sym___thiscall] = ACTIONS(3248), + [anon_sym___vectorcall] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(3248), + [anon_sym_register] = ACTIONS(3248), + [anon_sym_inline] = ACTIONS(3248), + [anon_sym___inline] = ACTIONS(3248), + [anon_sym___inline__] = ACTIONS(3248), + [anon_sym___forceinline] = ACTIONS(3248), + [anon_sym_thread_local] = ACTIONS(3248), + [anon_sym___thread] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_constexpr] = ACTIONS(3248), + [anon_sym_volatile] = ACTIONS(3248), + [anon_sym_restrict] = ACTIONS(3248), + [anon_sym___restrict__] = ACTIONS(3248), + [anon_sym__Atomic] = ACTIONS(3248), + [anon_sym__Noreturn] = ACTIONS(3248), + [anon_sym_noreturn] = ACTIONS(3248), + [anon_sym__Nonnull] = ACTIONS(3248), + [anon_sym_mutable] = ACTIONS(3248), + [anon_sym_constinit] = ACTIONS(3248), + [anon_sym_consteval] = ACTIONS(3248), + [anon_sym_alignas] = ACTIONS(3248), + [anon_sym__Alignas] = ACTIONS(3248), + [anon_sym_QMARK] = ACTIONS(3250), + [anon_sym_STAR_EQ] = ACTIONS(3250), + [anon_sym_SLASH_EQ] = ACTIONS(3250), + [anon_sym_PERCENT_EQ] = ACTIONS(3250), + [anon_sym_PLUS_EQ] = ACTIONS(3250), + [anon_sym_DASH_EQ] = ACTIONS(3250), + [anon_sym_LT_LT_EQ] = ACTIONS(3250), + [anon_sym_GT_GT_EQ] = ACTIONS(3250), + [anon_sym_AMP_EQ] = ACTIONS(3250), + [anon_sym_CARET_EQ] = ACTIONS(3250), + [anon_sym_PIPE_EQ] = ACTIONS(3250), + [anon_sym_and_eq] = ACTIONS(3248), + [anon_sym_or_eq] = ACTIONS(3248), + [anon_sym_xor_eq] = ACTIONS(3248), + [anon_sym_LT_EQ_GT] = ACTIONS(3250), + [anon_sym_or] = ACTIONS(3248), + [anon_sym_and] = ACTIONS(3248), + [anon_sym_bitor] = ACTIONS(3248), + [anon_sym_xor] = ACTIONS(3248), + [anon_sym_bitand] = ACTIONS(3248), + [anon_sym_not_eq] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DOT] = ACTIONS(3248), + [anon_sym_DOT_STAR] = ACTIONS(3250), + [anon_sym_DASH_GT] = ACTIONS(3250), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3248), + [anon_sym_decltype] = ACTIONS(3248), + [anon_sym_template] = ACTIONS(3248), + [anon_sym_operator] = ACTIONS(3248), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3248), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3248), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3248), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3248), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3248), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3248), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3248), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3248), + [anon_sym_MOZ_COLD] = ACTIONS(3248), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3248), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3248), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3248), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3248), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3248), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3248), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3248), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3248), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3248), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3248), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3248), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3248), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3248), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3248), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3248), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3248), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3248), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3248), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3248), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3248), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_NONNULL] = ACTIONS(3248), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3248), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3248), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3248), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3248), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3248), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_NORETURN] = ACTIONS(3248), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3248), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3248), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3248), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3248), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3248), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3248), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3248), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3248), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3248), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3248), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3248), + [anon_sym_MOZ_RAII] = ACTIONS(3248), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3248), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3248), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3248), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3248), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3248), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3248), + }, + [STATE(753)] = { + [sym_identifier] = ACTIONS(3252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LPAREN2] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3252), + [anon_sym_CARET] = ACTIONS(3252), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3254), + [anon_sym_GT] = ACTIONS(3252), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_LT_LT] = ACTIONS(3252), + [anon_sym_GT_GT] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym___extension__] = ACTIONS(3252), + [anon_sym_virtual] = ACTIONS(3252), + [anon_sym_extern] = ACTIONS(3252), + [anon_sym___attribute__] = ACTIONS(3252), + [anon_sym___attribute] = ACTIONS(3252), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3254), + [anon_sym___declspec] = ACTIONS(3252), + [anon_sym___based] = ACTIONS(3252), + [anon_sym___cdecl] = ACTIONS(3252), + [anon_sym___clrcall] = ACTIONS(3252), + [anon_sym___stdcall] = ACTIONS(3252), + [anon_sym___fastcall] = ACTIONS(3252), + [anon_sym___thiscall] = ACTIONS(3252), + [anon_sym___vectorcall] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_EQ] = ACTIONS(3252), + [anon_sym_register] = ACTIONS(3252), + [anon_sym_inline] = ACTIONS(3252), + [anon_sym___inline] = ACTIONS(3252), + [anon_sym___inline__] = ACTIONS(3252), + [anon_sym___forceinline] = ACTIONS(3252), + [anon_sym_thread_local] = ACTIONS(3252), + [anon_sym___thread] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_constexpr] = ACTIONS(3252), + [anon_sym_volatile] = ACTIONS(3252), + [anon_sym_restrict] = ACTIONS(3252), + [anon_sym___restrict__] = ACTIONS(3252), + [anon_sym__Atomic] = ACTIONS(3252), + [anon_sym__Noreturn] = ACTIONS(3252), + [anon_sym_noreturn] = ACTIONS(3252), + [anon_sym__Nonnull] = ACTIONS(3252), + [anon_sym_mutable] = ACTIONS(3252), + [anon_sym_constinit] = ACTIONS(3252), + [anon_sym_consteval] = ACTIONS(3252), + [anon_sym_alignas] = ACTIONS(3252), + [anon_sym__Alignas] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_LT_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_GT_EQ] = ACTIONS(3254), + [anon_sym_AMP_EQ] = ACTIONS(3254), + [anon_sym_CARET_EQ] = ACTIONS(3254), + [anon_sym_PIPE_EQ] = ACTIONS(3254), + [anon_sym_and_eq] = ACTIONS(3252), + [anon_sym_or_eq] = ACTIONS(3252), + [anon_sym_xor_eq] = ACTIONS(3252), + [anon_sym_LT_EQ_GT] = ACTIONS(3254), + [anon_sym_or] = ACTIONS(3252), + [anon_sym_and] = ACTIONS(3252), + [anon_sym_bitor] = ACTIONS(3252), + [anon_sym_xor] = ACTIONS(3252), + [anon_sym_bitand] = ACTIONS(3252), + [anon_sym_not_eq] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3252), + [anon_sym_DOT_STAR] = ACTIONS(3254), + [anon_sym_DASH_GT] = ACTIONS(3254), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3252), + [anon_sym_decltype] = ACTIONS(3252), + [anon_sym_template] = ACTIONS(3252), + [anon_sym_operator] = ACTIONS(3252), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3252), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3252), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3252), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3252), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3252), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3252), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3252), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3252), + [anon_sym_MOZ_COLD] = ACTIONS(3252), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3252), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3252), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3252), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3252), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3252), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3252), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3252), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3252), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3252), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3252), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3252), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3252), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3252), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3252), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3252), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3252), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3252), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3252), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3252), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3252), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_NONNULL] = ACTIONS(3252), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3252), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3252), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3252), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3252), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3252), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_NORETURN] = ACTIONS(3252), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3252), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3252), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3252), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3252), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3252), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3252), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3252), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3252), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3252), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3252), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3252), + [anon_sym_MOZ_RAII] = ACTIONS(3252), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3252), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3252), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3252), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3252), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3252), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3252), + }, + [STATE(754)] = { + [sym_identifier] = ACTIONS(3256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3258), + [anon_sym_COMMA] = ACTIONS(3258), + [anon_sym_RPAREN] = ACTIONS(3258), + [anon_sym_LPAREN2] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3256), + [anon_sym_SLASH] = ACTIONS(3256), + [anon_sym_PERCENT] = ACTIONS(3256), + [anon_sym_PIPE_PIPE] = ACTIONS(3258), + [anon_sym_AMP_AMP] = ACTIONS(3258), + [anon_sym_PIPE] = ACTIONS(3256), + [anon_sym_CARET] = ACTIONS(3256), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym_EQ_EQ] = ACTIONS(3258), + [anon_sym_BANG_EQ] = ACTIONS(3258), + [anon_sym_GT] = ACTIONS(3256), + [anon_sym_GT_EQ] = ACTIONS(3258), + [anon_sym_LT_EQ] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3256), + [anon_sym_LT_LT] = ACTIONS(3256), + [anon_sym_GT_GT] = ACTIONS(3256), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym___extension__] = ACTIONS(3256), + [anon_sym_virtual] = ACTIONS(3256), + [anon_sym_extern] = ACTIONS(3256), + [anon_sym___attribute__] = ACTIONS(3256), + [anon_sym___attribute] = ACTIONS(3256), + [anon_sym_COLON_COLON] = ACTIONS(3258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3258), + [anon_sym___declspec] = ACTIONS(3256), + [anon_sym___based] = ACTIONS(3256), + [anon_sym___cdecl] = ACTIONS(3256), + [anon_sym___clrcall] = ACTIONS(3256), + [anon_sym___stdcall] = ACTIONS(3256), + [anon_sym___fastcall] = ACTIONS(3256), + [anon_sym___thiscall] = ACTIONS(3256), + [anon_sym___vectorcall] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_static] = ACTIONS(3256), + [anon_sym_EQ] = ACTIONS(3256), + [anon_sym_register] = ACTIONS(3256), + [anon_sym_inline] = ACTIONS(3256), + [anon_sym___inline] = ACTIONS(3256), + [anon_sym___inline__] = ACTIONS(3256), + [anon_sym___forceinline] = ACTIONS(3256), + [anon_sym_thread_local] = ACTIONS(3256), + [anon_sym___thread] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_constexpr] = ACTIONS(3256), + [anon_sym_volatile] = ACTIONS(3256), + [anon_sym_restrict] = ACTIONS(3256), + [anon_sym___restrict__] = ACTIONS(3256), + [anon_sym__Atomic] = ACTIONS(3256), + [anon_sym__Noreturn] = ACTIONS(3256), + [anon_sym_noreturn] = ACTIONS(3256), + [anon_sym__Nonnull] = ACTIONS(3256), + [anon_sym_mutable] = ACTIONS(3256), + [anon_sym_constinit] = ACTIONS(3256), + [anon_sym_consteval] = ACTIONS(3256), + [anon_sym_alignas] = ACTIONS(3256), + [anon_sym__Alignas] = ACTIONS(3256), + [anon_sym_QMARK] = ACTIONS(3258), + [anon_sym_STAR_EQ] = ACTIONS(3258), + [anon_sym_SLASH_EQ] = ACTIONS(3258), + [anon_sym_PERCENT_EQ] = ACTIONS(3258), + [anon_sym_PLUS_EQ] = ACTIONS(3258), + [anon_sym_DASH_EQ] = ACTIONS(3258), + [anon_sym_LT_LT_EQ] = ACTIONS(3258), + [anon_sym_GT_GT_EQ] = ACTIONS(3258), + [anon_sym_AMP_EQ] = ACTIONS(3258), + [anon_sym_CARET_EQ] = ACTIONS(3258), + [anon_sym_PIPE_EQ] = ACTIONS(3258), + [anon_sym_and_eq] = ACTIONS(3256), + [anon_sym_or_eq] = ACTIONS(3256), + [anon_sym_xor_eq] = ACTIONS(3256), + [anon_sym_LT_EQ_GT] = ACTIONS(3258), + [anon_sym_or] = ACTIONS(3256), + [anon_sym_and] = ACTIONS(3256), + [anon_sym_bitor] = ACTIONS(3256), + [anon_sym_xor] = ACTIONS(3256), + [anon_sym_bitand] = ACTIONS(3256), + [anon_sym_not_eq] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DOT] = ACTIONS(3256), + [anon_sym_DOT_STAR] = ACTIONS(3258), + [anon_sym_DASH_GT] = ACTIONS(3258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3256), + [anon_sym_decltype] = ACTIONS(3256), + [anon_sym_template] = ACTIONS(3256), + [anon_sym_operator] = ACTIONS(3256), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3256), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3256), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3256), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3256), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3256), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3256), + [anon_sym_MOZ_COLD] = ACTIONS(3256), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3256), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3256), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3256), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3256), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3256), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3256), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3256), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3256), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3256), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3256), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3256), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3256), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3256), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3256), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3256), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3256), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3256), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3256), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_NONNULL] = ACTIONS(3256), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3256), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3256), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3256), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3256), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3256), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_NORETURN] = ACTIONS(3256), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3256), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3256), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3256), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3256), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3256), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3256), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3256), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3256), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3256), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3256), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3256), + [anon_sym_MOZ_RAII] = ACTIONS(3256), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3256), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3256), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3256), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3256), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3256), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3256), + }, + [STATE(755)] = { + [sym_identifier] = ACTIONS(3260), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_STAR] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3260), + [anon_sym_PERCENT] = ACTIONS(3260), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE] = ACTIONS(3260), + [anon_sym_CARET] = ACTIONS(3260), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3260), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_LT_LT] = ACTIONS(3260), + [anon_sym_GT_GT] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym___extension__] = ACTIONS(3260), + [anon_sym_virtual] = ACTIONS(3260), + [anon_sym_extern] = ACTIONS(3260), + [anon_sym___attribute__] = ACTIONS(3260), + [anon_sym___attribute] = ACTIONS(3260), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3262), + [anon_sym___declspec] = ACTIONS(3260), + [anon_sym___based] = ACTIONS(3260), + [anon_sym___cdecl] = ACTIONS(3260), + [anon_sym___clrcall] = ACTIONS(3260), + [anon_sym___stdcall] = ACTIONS(3260), + [anon_sym___fastcall] = ACTIONS(3260), + [anon_sym___thiscall] = ACTIONS(3260), + [anon_sym___vectorcall] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_static] = ACTIONS(3260), + [anon_sym_EQ] = ACTIONS(3260), + [anon_sym_register] = ACTIONS(3260), + [anon_sym_inline] = ACTIONS(3260), + [anon_sym___inline] = ACTIONS(3260), + [anon_sym___inline__] = ACTIONS(3260), + [anon_sym___forceinline] = ACTIONS(3260), + [anon_sym_thread_local] = ACTIONS(3260), + [anon_sym___thread] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_constexpr] = ACTIONS(3260), + [anon_sym_volatile] = ACTIONS(3260), + [anon_sym_restrict] = ACTIONS(3260), + [anon_sym___restrict__] = ACTIONS(3260), + [anon_sym__Atomic] = ACTIONS(3260), + [anon_sym__Noreturn] = ACTIONS(3260), + [anon_sym_noreturn] = ACTIONS(3260), + [anon_sym__Nonnull] = ACTIONS(3260), + [anon_sym_mutable] = ACTIONS(3260), + [anon_sym_constinit] = ACTIONS(3260), + [anon_sym_consteval] = ACTIONS(3260), + [anon_sym_alignas] = ACTIONS(3260), + [anon_sym__Alignas] = ACTIONS(3260), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_STAR_EQ] = ACTIONS(3262), + [anon_sym_SLASH_EQ] = ACTIONS(3262), + [anon_sym_PERCENT_EQ] = ACTIONS(3262), + [anon_sym_PLUS_EQ] = ACTIONS(3262), + [anon_sym_DASH_EQ] = ACTIONS(3262), + [anon_sym_LT_LT_EQ] = ACTIONS(3262), + [anon_sym_GT_GT_EQ] = ACTIONS(3262), + [anon_sym_AMP_EQ] = ACTIONS(3262), + [anon_sym_CARET_EQ] = ACTIONS(3262), + [anon_sym_PIPE_EQ] = ACTIONS(3262), + [anon_sym_and_eq] = ACTIONS(3260), + [anon_sym_or_eq] = ACTIONS(3260), + [anon_sym_xor_eq] = ACTIONS(3260), + [anon_sym_LT_EQ_GT] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3260), + [anon_sym_and] = ACTIONS(3260), + [anon_sym_bitor] = ACTIONS(3260), + [anon_sym_xor] = ACTIONS(3260), + [anon_sym_bitand] = ACTIONS(3260), + [anon_sym_not_eq] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3260), + [anon_sym_DOT_STAR] = ACTIONS(3262), + [anon_sym_DASH_GT] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3260), + [anon_sym_decltype] = ACTIONS(3260), + [anon_sym_template] = ACTIONS(3260), + [anon_sym_operator] = ACTIONS(3260), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3260), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3260), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3260), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3260), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3260), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3260), + [anon_sym_MOZ_COLD] = ACTIONS(3260), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3260), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3260), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3260), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3260), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3260), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3260), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3260), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3260), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3260), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3260), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3260), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3260), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3260), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3260), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3260), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3260), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3260), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3260), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_NONNULL] = ACTIONS(3260), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3260), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3260), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3260), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3260), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3260), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_NORETURN] = ACTIONS(3260), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3260), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3260), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3260), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3260), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3260), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3260), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3260), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3260), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3260), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3260), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3260), + [anon_sym_MOZ_RAII] = ACTIONS(3260), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3260), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3260), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3260), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3260), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3260), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3260), + }, + [STATE(756)] = { + [sym_identifier] = ACTIONS(3264), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_CARET] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3264), + [anon_sym_EQ_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3266), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_LT_LT] = ACTIONS(3264), + [anon_sym_GT_GT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym___extension__] = ACTIONS(3264), + [anon_sym_virtual] = ACTIONS(3264), + [anon_sym_extern] = ACTIONS(3264), + [anon_sym___attribute__] = ACTIONS(3264), + [anon_sym___attribute] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3266), + [anon_sym___declspec] = ACTIONS(3264), + [anon_sym___based] = ACTIONS(3264), + [anon_sym___cdecl] = ACTIONS(3264), + [anon_sym___clrcall] = ACTIONS(3264), + [anon_sym___stdcall] = ACTIONS(3264), + [anon_sym___fastcall] = ACTIONS(3264), + [anon_sym___thiscall] = ACTIONS(3264), + [anon_sym___vectorcall] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_static] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_register] = ACTIONS(3264), + [anon_sym_inline] = ACTIONS(3264), + [anon_sym___inline] = ACTIONS(3264), + [anon_sym___inline__] = ACTIONS(3264), + [anon_sym___forceinline] = ACTIONS(3264), + [anon_sym_thread_local] = ACTIONS(3264), + [anon_sym___thread] = ACTIONS(3264), + [anon_sym_const] = ACTIONS(3264), + [anon_sym_constexpr] = ACTIONS(3264), + [anon_sym_volatile] = ACTIONS(3264), + [anon_sym_restrict] = ACTIONS(3264), + [anon_sym___restrict__] = ACTIONS(3264), + [anon_sym__Atomic] = ACTIONS(3264), + [anon_sym__Noreturn] = ACTIONS(3264), + [anon_sym_noreturn] = ACTIONS(3264), + [anon_sym__Nonnull] = ACTIONS(3264), + [anon_sym_mutable] = ACTIONS(3264), + [anon_sym_constinit] = ACTIONS(3264), + [anon_sym_consteval] = ACTIONS(3264), + [anon_sym_alignas] = ACTIONS(3264), + [anon_sym__Alignas] = ACTIONS(3264), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_LT_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_GT_EQ] = ACTIONS(3266), + [anon_sym_AMP_EQ] = ACTIONS(3266), + [anon_sym_CARET_EQ] = ACTIONS(3266), + [anon_sym_PIPE_EQ] = ACTIONS(3266), + [anon_sym_and_eq] = ACTIONS(3264), + [anon_sym_or_eq] = ACTIONS(3264), + [anon_sym_xor_eq] = ACTIONS(3264), + [anon_sym_LT_EQ_GT] = ACTIONS(3266), + [anon_sym_or] = ACTIONS(3264), + [anon_sym_and] = ACTIONS(3264), + [anon_sym_bitor] = ACTIONS(3264), + [anon_sym_xor] = ACTIONS(3264), + [anon_sym_bitand] = ACTIONS(3264), + [anon_sym_not_eq] = ACTIONS(3264), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_DOT_STAR] = ACTIONS(3266), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3264), + [anon_sym_template] = ACTIONS(3264), + [anon_sym_operator] = ACTIONS(3264), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3264), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3264), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3264), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3264), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3264), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3264), + [anon_sym_MOZ_COLD] = ACTIONS(3264), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3264), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3264), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3264), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3264), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3264), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3264), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3264), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3264), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3264), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3264), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3264), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3264), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3264), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3264), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3264), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3264), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3264), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3264), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_NONNULL] = ACTIONS(3264), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3264), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3264), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3264), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3264), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3264), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_NORETURN] = ACTIONS(3264), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3264), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3264), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3264), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3264), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3264), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3264), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3264), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3264), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3264), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3264), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3264), + [anon_sym_MOZ_RAII] = ACTIONS(3264), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3264), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3264), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3264), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3264), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3264), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3264), + }, + [STATE(757)] = { + [sym_identifier] = ACTIONS(3268), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3270), + [anon_sym_COMMA] = ACTIONS(3270), + [anon_sym_RPAREN] = ACTIONS(3270), + [anon_sym_LPAREN2] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_PIPE_PIPE] = ACTIONS(3270), + [anon_sym_AMP_AMP] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3268), + [anon_sym_CARET] = ACTIONS(3268), + [anon_sym_AMP] = ACTIONS(3268), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_GT_EQ] = ACTIONS(3270), + [anon_sym_LT_EQ] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_LT_LT] = ACTIONS(3268), + [anon_sym_GT_GT] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym___extension__] = ACTIONS(3268), + [anon_sym_virtual] = ACTIONS(3268), + [anon_sym_extern] = ACTIONS(3268), + [anon_sym___attribute__] = ACTIONS(3268), + [anon_sym___attribute] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3270), + [anon_sym___declspec] = ACTIONS(3268), + [anon_sym___based] = ACTIONS(3268), + [anon_sym___cdecl] = ACTIONS(3268), + [anon_sym___clrcall] = ACTIONS(3268), + [anon_sym___stdcall] = ACTIONS(3268), + [anon_sym___fastcall] = ACTIONS(3268), + [anon_sym___thiscall] = ACTIONS(3268), + [anon_sym___vectorcall] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_RBRACE] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_register] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym___inline] = ACTIONS(3268), + [anon_sym___inline__] = ACTIONS(3268), + [anon_sym___forceinline] = ACTIONS(3268), + [anon_sym_thread_local] = ACTIONS(3268), + [anon_sym___thread] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_constexpr] = ACTIONS(3268), + [anon_sym_volatile] = ACTIONS(3268), + [anon_sym_restrict] = ACTIONS(3268), + [anon_sym___restrict__] = ACTIONS(3268), + [anon_sym__Atomic] = ACTIONS(3268), + [anon_sym__Noreturn] = ACTIONS(3268), + [anon_sym_noreturn] = ACTIONS(3268), + [anon_sym__Nonnull] = ACTIONS(3268), + [anon_sym_mutable] = ACTIONS(3268), + [anon_sym_constinit] = ACTIONS(3268), + [anon_sym_consteval] = ACTIONS(3268), + [anon_sym_alignas] = ACTIONS(3268), + [anon_sym__Alignas] = ACTIONS(3268), + [anon_sym_QMARK] = ACTIONS(3270), + [anon_sym_STAR_EQ] = ACTIONS(3270), + [anon_sym_SLASH_EQ] = ACTIONS(3270), + [anon_sym_PERCENT_EQ] = ACTIONS(3270), + [anon_sym_PLUS_EQ] = ACTIONS(3270), + [anon_sym_DASH_EQ] = ACTIONS(3270), + [anon_sym_LT_LT_EQ] = ACTIONS(3270), + [anon_sym_GT_GT_EQ] = ACTIONS(3270), + [anon_sym_AMP_EQ] = ACTIONS(3270), + [anon_sym_CARET_EQ] = ACTIONS(3270), + [anon_sym_PIPE_EQ] = ACTIONS(3270), + [anon_sym_and_eq] = ACTIONS(3268), + [anon_sym_or_eq] = ACTIONS(3268), + [anon_sym_xor_eq] = ACTIONS(3268), + [anon_sym_LT_EQ_GT] = ACTIONS(3270), + [anon_sym_or] = ACTIONS(3268), + [anon_sym_and] = ACTIONS(3268), + [anon_sym_bitor] = ACTIONS(3268), + [anon_sym_xor] = ACTIONS(3268), + [anon_sym_bitand] = ACTIONS(3268), + [anon_sym_not_eq] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_DOT_STAR] = ACTIONS(3270), + [anon_sym_DASH_GT] = ACTIONS(3270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3268), + [anon_sym_decltype] = ACTIONS(3268), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3268), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3268), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3268), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3268), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3268), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3268), + [anon_sym_MOZ_COLD] = ACTIONS(3268), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3268), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3268), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3268), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3268), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3268), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3268), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3268), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3268), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3268), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3268), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3268), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3268), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3268), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3268), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3268), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3268), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3268), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3268), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_NONNULL] = ACTIONS(3268), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3268), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3268), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3268), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3268), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3268), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_NORETURN] = ACTIONS(3268), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3268), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3268), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3268), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3268), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3268), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3268), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3268), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3268), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3268), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3268), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3268), + [anon_sym_MOZ_RAII] = ACTIONS(3268), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3268), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3268), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3268), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3268), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3268), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3268), + }, + [STATE(758)] = { + [sym_template_argument_list] = STATE(759), + [sym_identifier] = ACTIONS(3272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3283), + [anon_sym_EQ_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym___extension__] = ACTIONS(3272), + [anon_sym_virtual] = ACTIONS(3272), + [anon_sym_extern] = ACTIONS(3272), + [anon_sym___attribute__] = ACTIONS(3272), + [anon_sym___attribute] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), + [anon_sym___declspec] = ACTIONS(3272), + [anon_sym___based] = ACTIONS(3272), + [anon_sym___cdecl] = ACTIONS(3272), + [anon_sym___clrcall] = ACTIONS(3272), + [anon_sym___stdcall] = ACTIONS(3272), + [anon_sym___fastcall] = ACTIONS(3272), + [anon_sym___thiscall] = ACTIONS(3272), + [anon_sym___vectorcall] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3281), + [anon_sym_register] = ACTIONS(3272), + [anon_sym_inline] = ACTIONS(3272), + [anon_sym___inline] = ACTIONS(3272), + [anon_sym___inline__] = ACTIONS(3272), + [anon_sym___forceinline] = ACTIONS(3272), + [anon_sym_thread_local] = ACTIONS(3272), + [anon_sym___thread] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_constexpr] = ACTIONS(3272), + [anon_sym_volatile] = ACTIONS(3272), + [anon_sym_restrict] = ACTIONS(3272), + [anon_sym___restrict__] = ACTIONS(3272), + [anon_sym__Atomic] = ACTIONS(3272), + [anon_sym__Noreturn] = ACTIONS(3272), + [anon_sym_noreturn] = ACTIONS(3272), + [anon_sym__Nonnull] = ACTIONS(3272), + [anon_sym_mutable] = ACTIONS(3272), + [anon_sym_constinit] = ACTIONS(3272), + [anon_sym_consteval] = ACTIONS(3272), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_LT_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_GT_EQ] = ACTIONS(3274), + [anon_sym_AMP_EQ] = ACTIONS(3274), + [anon_sym_CARET_EQ] = ACTIONS(3274), + [anon_sym_PIPE_EQ] = ACTIONS(3274), + [anon_sym_and_eq] = ACTIONS(3281), + [anon_sym_or_eq] = ACTIONS(3281), + [anon_sym_xor_eq] = ACTIONS(3281), + [anon_sym_LT_EQ_GT] = ACTIONS(3274), + [anon_sym_or] = ACTIONS(3281), + [anon_sym_and] = ACTIONS(3281), + [anon_sym_bitor] = ACTIONS(3281), + [anon_sym_xor] = ACTIONS(3281), + [anon_sym_bitand] = ACTIONS(3281), + [anon_sym_not_eq] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_DOT_STAR] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3272), + [anon_sym_decltype] = ACTIONS(3272), + [anon_sym_template] = ACTIONS(3272), + [anon_sym_operator] = ACTIONS(3272), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3272), + [anon_sym_MOZ_COLD] = ACTIONS(3272), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3272), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3272), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3272), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3272), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3272), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3272), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3272), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3272), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3272), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3272), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3272), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3272), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_RAII] = ACTIONS(3272), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3272), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3272), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3272), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3272), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3272), + }, + [STATE(759)] = { + [sym_identifier] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3291), + [anon_sym_COMMA] = ACTIONS(3291), + [anon_sym_LPAREN2] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3291), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_CARET] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_EQ_EQ] = ACTIONS(3291), + [anon_sym_BANG_EQ] = ACTIONS(3291), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3291), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_LT_LT] = ACTIONS(3298), + [anon_sym_GT_GT] = ACTIONS(3298), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym___extension__] = ACTIONS(3289), + [anon_sym_virtual] = ACTIONS(3289), + [anon_sym_extern] = ACTIONS(3289), + [anon_sym___attribute__] = ACTIONS(3289), + [anon_sym___attribute] = ACTIONS(3289), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3293), + [anon_sym___declspec] = ACTIONS(3289), + [anon_sym___based] = ACTIONS(3289), + [anon_sym___cdecl] = ACTIONS(3289), + [anon_sym___clrcall] = ACTIONS(3289), + [anon_sym___stdcall] = ACTIONS(3289), + [anon_sym___fastcall] = ACTIONS(3289), + [anon_sym___thiscall] = ACTIONS(3289), + [anon_sym___vectorcall] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_register] = ACTIONS(3289), + [anon_sym_inline] = ACTIONS(3289), + [anon_sym___inline] = ACTIONS(3289), + [anon_sym___inline__] = ACTIONS(3289), + [anon_sym___forceinline] = ACTIONS(3289), + [anon_sym_thread_local] = ACTIONS(3289), + [anon_sym___thread] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_constexpr] = ACTIONS(3289), + [anon_sym_volatile] = ACTIONS(3289), + [anon_sym_restrict] = ACTIONS(3289), + [anon_sym___restrict__] = ACTIONS(3289), + [anon_sym__Atomic] = ACTIONS(3289), + [anon_sym__Noreturn] = ACTIONS(3289), + [anon_sym_noreturn] = ACTIONS(3289), + [anon_sym__Nonnull] = ACTIONS(3289), + [anon_sym_mutable] = ACTIONS(3289), + [anon_sym_constinit] = ACTIONS(3289), + [anon_sym_consteval] = ACTIONS(3289), + [anon_sym_alignas] = ACTIONS(3289), + [anon_sym__Alignas] = ACTIONS(3289), + [anon_sym_QMARK] = ACTIONS(3291), + [anon_sym_STAR_EQ] = ACTIONS(3291), + [anon_sym_SLASH_EQ] = ACTIONS(3291), + [anon_sym_PERCENT_EQ] = ACTIONS(3291), + [anon_sym_PLUS_EQ] = ACTIONS(3291), + [anon_sym_DASH_EQ] = ACTIONS(3291), + [anon_sym_LT_LT_EQ] = ACTIONS(3291), + [anon_sym_GT_GT_EQ] = ACTIONS(3291), + [anon_sym_AMP_EQ] = ACTIONS(3291), + [anon_sym_CARET_EQ] = ACTIONS(3291), + [anon_sym_PIPE_EQ] = ACTIONS(3291), + [anon_sym_and_eq] = ACTIONS(3298), + [anon_sym_or_eq] = ACTIONS(3298), + [anon_sym_xor_eq] = ACTIONS(3298), + [anon_sym_LT_EQ_GT] = ACTIONS(3291), + [anon_sym_or] = ACTIONS(3298), + [anon_sym_and] = ACTIONS(3298), + [anon_sym_bitor] = ACTIONS(3298), + [anon_sym_xor] = ACTIONS(3298), + [anon_sym_bitand] = ACTIONS(3298), + [anon_sym_not_eq] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DOT] = ACTIONS(3298), + [anon_sym_DOT_STAR] = ACTIONS(3291), + [anon_sym_DASH_GT] = ACTIONS(3291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3289), + [anon_sym_decltype] = ACTIONS(3289), + [anon_sym_template] = ACTIONS(3289), + [anon_sym_operator] = ACTIONS(3289), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3289), + [anon_sym_MOZ_COLD] = ACTIONS(3289), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3289), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3289), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3289), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3289), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3289), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3289), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3289), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3289), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3289), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3289), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3289), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3289), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_RAII] = ACTIONS(3289), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3289), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3289), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3289), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3289), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3289), + }, + [STATE(760)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_ms_call_modifier] = STATE(6610), + [sym__abstract_declarator] = STATE(7189), + [sym_abstract_parenthesized_declarator] = STATE(6365), + [sym_abstract_pointer_declarator] = STATE(6365), + [sym_abstract_function_declarator] = STATE(6365), + [sym_abstract_array_declarator] = STATE(6365), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_list] = STATE(3336), + [sym_parameter_declaration] = STATE(7553), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(7553), + [sym_variadic_parameter_declaration] = STATE(7553), + [sym_abstract_reference_declarator] = STATE(6365), + [sym__function_declarator_seq] = STATE(6368), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6924), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1869), + [anon_sym_RPAREN] = ACTIONS(3217), + [anon_sym_LPAREN2] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3307), + [anon_sym_AMP_AMP] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___cdecl] = ACTIONS(3153), + [anon_sym___clrcall] = ACTIONS(3153), + [anon_sym___stdcall] = ACTIONS(3153), + [anon_sym___fastcall] = ACTIONS(3153), + [anon_sym___thiscall] = ACTIONS(3153), + [anon_sym___vectorcall] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3315), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(761)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_ms_call_modifier] = STATE(6648), + [sym__abstract_declarator] = STATE(7158), + [sym_abstract_parenthesized_declarator] = STATE(6365), + [sym_abstract_pointer_declarator] = STATE(6365), + [sym_abstract_function_declarator] = STATE(6365), + [sym_abstract_array_declarator] = STATE(6365), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_list] = STATE(3336), + [sym_parameter_declaration] = STATE(7797), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(7797), + [sym_variadic_parameter_declaration] = STATE(7797), + [sym_abstract_reference_declarator] = STATE(6365), + [sym__function_declarator_seq] = STATE(6368), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6924), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_RPAREN] = ACTIONS(3317), + [anon_sym_LPAREN2] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3307), + [anon_sym_AMP_AMP] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___cdecl] = ACTIONS(3153), + [anon_sym___clrcall] = ACTIONS(3153), + [anon_sym___stdcall] = ACTIONS(3153), + [anon_sym___fastcall] = ACTIONS(3153), + [anon_sym___thiscall] = ACTIONS(3153), + [anon_sym___vectorcall] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3315), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(762)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_ms_call_modifier] = STATE(6648), + [sym__abstract_declarator] = STATE(7158), + [sym_abstract_parenthesized_declarator] = STATE(6365), + [sym_abstract_pointer_declarator] = STATE(6365), + [sym_abstract_function_declarator] = STATE(6365), + [sym_abstract_array_declarator] = STATE(6365), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_list] = STATE(3336), + [sym_parameter_declaration] = STATE(7553), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(7553), + [sym_variadic_parameter_declaration] = STATE(7553), + [sym_abstract_reference_declarator] = STATE(6365), + [sym__function_declarator_seq] = STATE(6368), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6924), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1869), + [anon_sym_RPAREN] = ACTIONS(3217), + [anon_sym_LPAREN2] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3307), + [anon_sym_AMP_AMP] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___cdecl] = ACTIONS(3153), + [anon_sym___clrcall] = ACTIONS(3153), + [anon_sym___stdcall] = ACTIONS(3153), + [anon_sym___fastcall] = ACTIONS(3153), + [anon_sym___thiscall] = ACTIONS(3153), + [anon_sym___vectorcall] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3315), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(763)] = { + [sym_expression] = STATE(2837), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_initializer_list] = STATE(2893), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3319), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), + [anon_sym_COMMA] = ACTIONS(3321), + [aux_sym_preproc_if_token2] = ACTIONS(3321), + [aux_sym_preproc_else_token1] = ACTIONS(3321), + [aux_sym_preproc_elif_token1] = ACTIONS(3319), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3321), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3321), + [anon_sym_LPAREN2] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3323), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE] = ACTIONS(3319), + [anon_sym_CARET] = ACTIONS(3319), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_LT_LT] = ACTIONS(3319), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_EQ] = ACTIONS(3319), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_QMARK] = ACTIONS(3321), + [anon_sym_STAR_EQ] = ACTIONS(3321), + [anon_sym_SLASH_EQ] = ACTIONS(3321), + [anon_sym_PERCENT_EQ] = ACTIONS(3321), + [anon_sym_PLUS_EQ] = ACTIONS(3321), + [anon_sym_DASH_EQ] = ACTIONS(3321), + [anon_sym_LT_LT_EQ] = ACTIONS(3321), + [anon_sym_GT_GT_EQ] = ACTIONS(3321), + [anon_sym_AMP_EQ] = ACTIONS(3321), + [anon_sym_CARET_EQ] = ACTIONS(3321), + [anon_sym_PIPE_EQ] = ACTIONS(3321), + [anon_sym_and_eq] = ACTIONS(3319), + [anon_sym_or_eq] = ACTIONS(3319), + [anon_sym_xor_eq] = ACTIONS(3319), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_LT_EQ_GT] = ACTIONS(3321), + [anon_sym_or] = ACTIONS(3319), + [anon_sym_and] = ACTIONS(3319), + [anon_sym_bitor] = ACTIONS(3319), + [anon_sym_xor] = ACTIONS(3319), + [anon_sym_bitand] = ACTIONS(3319), + [anon_sym_not_eq] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [anon_sym_DOT] = ACTIONS(3319), + [anon_sym_DOT_STAR] = ACTIONS(3321), + [anon_sym_DASH_GT] = ACTIONS(3321), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(764)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_ms_call_modifier] = STATE(6610), + [sym__abstract_declarator] = STATE(7189), + [sym_abstract_parenthesized_declarator] = STATE(6365), + [sym_abstract_pointer_declarator] = STATE(6365), + [sym_abstract_function_declarator] = STATE(6365), + [sym_abstract_array_declarator] = STATE(6365), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_list] = STATE(3336), + [sym_parameter_declaration] = STATE(7797), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(7797), + [sym_variadic_parameter_declaration] = STATE(7797), + [sym_abstract_reference_declarator] = STATE(6365), + [sym__function_declarator_seq] = STATE(6368), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6924), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_RPAREN] = ACTIONS(3317), + [anon_sym_LPAREN2] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3307), + [anon_sym_AMP_AMP] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___cdecl] = ACTIONS(3153), + [anon_sym___clrcall] = ACTIONS(3153), + [anon_sym___stdcall] = ACTIONS(3153), + [anon_sym___fastcall] = ACTIONS(3153), + [anon_sym___thiscall] = ACTIONS(3153), + [anon_sym___vectorcall] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3315), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(765)] = { + [sym_expression] = STATE(2837), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_initializer_list] = STATE(2893), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), + [anon_sym_COMMA] = ACTIONS(3321), + [anon_sym_RPAREN] = ACTIONS(3321), + [anon_sym_LPAREN2] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3369), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE] = ACTIONS(3319), + [anon_sym_CARET] = ACTIONS(3319), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_LT_LT] = ACTIONS(3319), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_RBRACK] = ACTIONS(3321), + [anon_sym_EQ] = ACTIONS(3319), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_QMARK] = ACTIONS(3321), + [anon_sym_STAR_EQ] = ACTIONS(3321), + [anon_sym_SLASH_EQ] = ACTIONS(3321), + [anon_sym_PERCENT_EQ] = ACTIONS(3321), + [anon_sym_PLUS_EQ] = ACTIONS(3321), + [anon_sym_DASH_EQ] = ACTIONS(3321), + [anon_sym_LT_LT_EQ] = ACTIONS(3321), + [anon_sym_GT_GT_EQ] = ACTIONS(3321), + [anon_sym_AMP_EQ] = ACTIONS(3321), + [anon_sym_CARET_EQ] = ACTIONS(3321), + [anon_sym_PIPE_EQ] = ACTIONS(3321), + [anon_sym_and_eq] = ACTIONS(3319), + [anon_sym_or_eq] = ACTIONS(3319), + [anon_sym_xor_eq] = ACTIONS(3319), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_LT_EQ_GT] = ACTIONS(3321), + [anon_sym_or] = ACTIONS(3319), + [anon_sym_and] = ACTIONS(3319), + [anon_sym_bitor] = ACTIONS(3319), + [anon_sym_xor] = ACTIONS(3319), + [anon_sym_bitand] = ACTIONS(3319), + [anon_sym_not_eq] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [anon_sym_DOT] = ACTIONS(3319), + [anon_sym_DOT_STAR] = ACTIONS(3321), + [anon_sym_DASH_GT] = ACTIONS(3321), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(766)] = { + [sym_compound_statement] = STATE(8532), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3237), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8532), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8724), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8725), + [sym__unary_right_fold] = STATE(8728), + [sym__binary_fold] = STATE(8767), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(8510), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(767)] = { + [sym_compound_statement] = STATE(8544), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3281), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(9135), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8949), + [sym__unary_right_fold] = STATE(8980), + [sym__binary_fold] = STATE(8809), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(768)] = { + [sym_compound_statement] = STATE(8419), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3253), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8419), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(9041), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(9064), + [sym__unary_right_fold] = STATE(9240), + [sym__binary_fold] = STATE(8466), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(8427), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(769)] = { + [sym_compound_statement] = STATE(8544), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3281), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8636), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8949), + [sym__unary_right_fold] = STATE(8980), + [sym__binary_fold] = STATE(8809), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(770)] = { + [sym_compound_statement] = STATE(8544), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3281), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8925), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8423), + [sym__unary_right_fold] = STATE(8424), + [sym__binary_fold] = STATE(8425), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(771)] = { + [sym_compound_statement] = STATE(8532), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3237), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8532), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8543), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8725), + [sym__unary_right_fold] = STATE(8728), + [sym__binary_fold] = STATE(8767), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(8510), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(772)] = { + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5572), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(6986), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6300), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_parameter_list] = STATE(722), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(2253), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5942), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3403), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(3197), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(773)] = { + [sym_compound_statement] = STATE(8544), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3281), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(9080), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8423), + [sym__unary_right_fold] = STATE(8424), + [sym__binary_fold] = STATE(8425), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(774)] = { + [sym_compound_statement] = STATE(8419), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3253), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8419), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8571), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(9064), + [sym__unary_right_fold] = STATE(9240), + [sym__binary_fold] = STATE(8466), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(8427), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(775)] = { + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5568), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(6955), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6300), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_parameter_list] = STATE(718), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(2253), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5942), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3403), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(3197), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(776)] = { + [sym_compound_statement] = STATE(8544), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3281), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(9032), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8949), + [sym__unary_right_fold] = STATE(8980), + [sym__binary_fold] = STATE(8809), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(777)] = { + [sym_expression] = STATE(2837), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_initializer_list] = STATE(2893), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), + [anon_sym_COMMA] = ACTIONS(3321), + [anon_sym_LPAREN2] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE] = ACTIONS(3319), + [anon_sym_CARET] = ACTIONS(3319), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_LT_LT] = ACTIONS(3319), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym___attribute__] = ACTIONS(3319), + [anon_sym___attribute] = ACTIONS(3319), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_EQ] = ACTIONS(3319), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_QMARK] = ACTIONS(3321), + [anon_sym_STAR_EQ] = ACTIONS(3321), + [anon_sym_SLASH_EQ] = ACTIONS(3321), + [anon_sym_PERCENT_EQ] = ACTIONS(3321), + [anon_sym_PLUS_EQ] = ACTIONS(3321), + [anon_sym_DASH_EQ] = ACTIONS(3321), + [anon_sym_LT_LT_EQ] = ACTIONS(3321), + [anon_sym_GT_GT_EQ] = ACTIONS(3321), + [anon_sym_AMP_EQ] = ACTIONS(3321), + [anon_sym_CARET_EQ] = ACTIONS(3321), + [anon_sym_PIPE_EQ] = ACTIONS(3321), + [anon_sym_and_eq] = ACTIONS(3319), + [anon_sym_or_eq] = ACTIONS(3319), + [anon_sym_xor_eq] = ACTIONS(3319), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_LT_EQ_GT] = ACTIONS(3321), + [anon_sym_or] = ACTIONS(3319), + [anon_sym_and] = ACTIONS(3319), + [anon_sym_bitor] = ACTIONS(3319), + [anon_sym_xor] = ACTIONS(3319), + [anon_sym_bitand] = ACTIONS(3319), + [anon_sym_not_eq] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [anon_sym_DOT] = ACTIONS(3319), + [anon_sym_DOT_STAR] = ACTIONS(3321), + [anon_sym_DASH_GT] = ACTIONS(3321), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(778)] = { + [sym_compound_statement] = STATE(8544), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3281), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(9213), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8423), + [sym__unary_right_fold] = STATE(8424), + [sym__binary_fold] = STATE(8425), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(779)] = { + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5553), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(6991), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6300), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_parameter_list] = STATE(717), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(2253), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5942), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3403), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(3197), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(780)] = { + [sym_compound_statement] = STATE(8544), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3281), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8779), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8949), + [sym__unary_right_fold] = STATE(8980), + [sym__binary_fold] = STATE(8809), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(781)] = { + [sym_compound_statement] = STATE(8544), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3281), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8750), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8423), + [sym__unary_right_fold] = STATE(8424), + [sym__binary_fold] = STATE(8425), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(782)] = { + [sym_compound_statement] = STATE(8544), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3281), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8459), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8949), + [sym__unary_right_fold] = STATE(8980), + [sym__binary_fold] = STATE(8809), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(783)] = { + [sym_compound_statement] = STATE(8544), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3281), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8858), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8949), + [sym__unary_right_fold] = STATE(8980), + [sym__binary_fold] = STATE(8809), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(784)] = { + [sym_compound_statement] = STATE(8544), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3281), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8973), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8949), + [sym__unary_right_fold] = STATE(8980), + [sym__binary_fold] = STATE(8809), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(785)] = { + [sym_compound_statement] = STATE(8544), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3281), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8831), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8949), + [sym__unary_right_fold] = STATE(8980), + [sym__binary_fold] = STATE(8809), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(786)] = { + [sym_compound_statement] = STATE(8544), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3281), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8422), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8423), + [sym__unary_right_fold] = STATE(8424), + [sym__binary_fold] = STATE(8425), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(787)] = { + [sym_compound_statement] = STATE(8532), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3237), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8532), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8456), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8934), + [sym__unary_right_fold] = STATE(8938), + [sym__binary_fold] = STATE(8482), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(8510), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(788)] = { + [sym_compound_statement] = STATE(8544), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3281), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8816), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8949), + [sym__unary_right_fold] = STATE(8980), + [sym__binary_fold] = STATE(8809), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(789)] = { + [sym_compound_statement] = STATE(8419), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3253), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8419), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8749), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8863), + [sym__unary_right_fold] = STATE(9117), + [sym__binary_fold] = STATE(8556), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(8427), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(790)] = { + [sym_compound_statement] = STATE(8544), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3281), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(9156), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8423), + [sym__unary_right_fold] = STATE(8424), + [sym__binary_fold] = STATE(8425), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(791)] = { + [sym_compound_statement] = STATE(8544), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3281), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8942), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8423), + [sym__unary_right_fold] = STATE(8424), + [sym__binary_fold] = STATE(8425), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(792)] = { + [sym_compound_statement] = STATE(8419), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3253), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8419), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8608), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8863), + [sym__unary_right_fold] = STATE(9117), + [sym__binary_fold] = STATE(8556), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(8427), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(793)] = { + [sym_compound_statement] = STATE(8544), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3281), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8988), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8949), + [sym__unary_right_fold] = STATE(8980), + [sym__binary_fold] = STATE(8809), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(794)] = { + [sym_compound_statement] = STATE(8532), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3237), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8532), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8698), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8934), + [sym__unary_right_fold] = STATE(8938), + [sym__binary_fold] = STATE(8482), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(8510), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(795)] = { + [sym_compound_statement] = STATE(8544), + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(3281), + [sym__string] = STATE(3576), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_type_descriptor] = STATE(8485), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8316), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym__unary_left_fold] = STATE(8423), + [sym__unary_right_fold] = STATE(8424), + [sym__binary_fold] = STATE(8425), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6038), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(5625), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(796)] = { + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5590), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(6972), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6300), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_parameter_list] = STATE(719), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(2253), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5942), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_type_identifier] = STATE(1612), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3403), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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(2534), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(3197), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(797)] = { + [sym_attribute_declaration] = STATE(829), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(8625), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(829), + [sym_identifier] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1719), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(798)] = { + [sym_attribute_declaration] = STATE(800), + [sym_compound_statement] = STATE(309), + [sym_attributed_statement] = STATE(309), + [sym_statement] = STATE(244), + [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(4823), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8439), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [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(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(800), + [sym_identifier] = ACTIONS(3435), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(83), + [anon_sym_default] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1473), + [anon_sym___leave] = ACTIONS(1475), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(799)] = { + [sym_attribute_declaration] = STATE(800), + [sym_compound_statement] = STATE(309), + [sym_attributed_statement] = STATE(309), + [sym_statement] = STATE(278), + [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(4823), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8439), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [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(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(800), + [sym_identifier] = ACTIONS(3435), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(83), + [anon_sym_default] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1473), + [anon_sym___leave] = ACTIONS(1475), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(800)] = { + [sym_attribute_declaration] = STATE(805), + [sym_compound_statement] = STATE(309), + [sym_attributed_statement] = STATE(309), + [sym_statement] = STATE(306), + [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(4823), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8439), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [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(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(805), + [sym_identifier] = ACTIONS(3435), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(83), + [anon_sym_default] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1473), + [anon_sym___leave] = ACTIONS(1475), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(801)] = { + [sym_attribute_declaration] = STATE(814), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(326), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [sym_identifier] = ACTIONS(3437), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(802)] = { + [sym_attribute_declaration] = STATE(814), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(389), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [sym_identifier] = ACTIONS(3437), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(803)] = { + [sym_attribute_declaration] = STATE(803), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(382), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(803), + [sym_identifier] = ACTIONS(3439), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_BANG] = ACTIONS(3445), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym___extension__] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3463), + [anon_sym_LBRACE] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3469), + [sym_primitive_type] = ACTIONS(3472), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_case] = ACTIONS(3481), + [anon_sym_default] = ACTIONS(3484), + [anon_sym_while] = ACTIONS(3487), + [anon_sym_do] = ACTIONS(3490), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_return] = ACTIONS(3496), + [anon_sym_break] = ACTIONS(3499), + [anon_sym_continue] = ACTIONS(3502), + [anon_sym_goto] = ACTIONS(3505), + [anon_sym___try] = ACTIONS(3508), + [anon_sym___leave] = ACTIONS(3511), + [anon_sym_not] = ACTIONS(3448), + [anon_sym_compl] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3514), + [anon_sym_PLUS_PLUS] = ACTIONS(3514), + [anon_sym_sizeof] = ACTIONS(3517), + [anon_sym___alignof__] = ACTIONS(3520), + [anon_sym___alignof] = ACTIONS(3520), + [anon_sym__alignof] = ACTIONS(3520), + [anon_sym_alignof] = ACTIONS(3520), + [anon_sym__Alignof] = ACTIONS(3520), + [anon_sym_offsetof] = ACTIONS(3523), + [anon_sym__Generic] = ACTIONS(3526), + [anon_sym_asm] = ACTIONS(3529), + [anon_sym___asm__] = ACTIONS(3529), + [anon_sym___asm] = ACTIONS(3529), + [sym_number_literal] = ACTIONS(3532), + [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(3538), + [anon_sym_u_DQUOTE] = ACTIONS(3538), + [anon_sym_U_DQUOTE] = ACTIONS(3538), + [anon_sym_u8_DQUOTE] = ACTIONS(3538), + [anon_sym_DQUOTE] = ACTIONS(3538), + [sym_true] = ACTIONS(3541), + [sym_false] = ACTIONS(3541), + [anon_sym_NULL] = ACTIONS(3544), + [anon_sym_nullptr] = ACTIONS(3544), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3547), + [anon_sym_template] = ACTIONS(3550), + [anon_sym_try] = ACTIONS(3553), + [anon_sym_delete] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3559), + [anon_sym_co_return] = ACTIONS(3562), + [anon_sym_co_yield] = ACTIONS(3565), + [anon_sym_R_DQUOTE] = ACTIONS(3568), + [anon_sym_LR_DQUOTE] = ACTIONS(3568), + [anon_sym_uR_DQUOTE] = ACTIONS(3568), + [anon_sym_UR_DQUOTE] = ACTIONS(3568), + [anon_sym_u8R_DQUOTE] = ACTIONS(3568), + [anon_sym_co_await] = ACTIONS(3571), + [anon_sym_new] = ACTIONS(3574), + [anon_sym_requires] = ACTIONS(3577), + [sym_this] = ACTIONS(3541), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_FORWARD] = ACTIONS(3580), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3580), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_PS_GET] = ACTIONS(3580), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3580), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3580), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3580), + }, + [STATE(804)] = { + [sym_attribute_declaration] = STATE(814), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(329), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [sym_identifier] = ACTIONS(3437), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(805)] = { + [sym_attribute_declaration] = STATE(805), + [sym_compound_statement] = STATE(309), + [sym_attributed_statement] = STATE(309), + [sym_statement] = STATE(306), + [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(4823), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8439), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [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(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(805), + [sym_identifier] = ACTIONS(3583), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_BANG] = ACTIONS(3445), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3586), + [anon_sym___extension__] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3463), + [anon_sym_LBRACE] = ACTIONS(3589), + [anon_sym_LBRACK] = ACTIONS(3469), + [sym_primitive_type] = ACTIONS(3472), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_switch] = ACTIONS(3595), + [anon_sym_case] = ACTIONS(3598), + [anon_sym_default] = ACTIONS(3601), + [anon_sym_while] = ACTIONS(3604), + [anon_sym_do] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3610), + [anon_sym_return] = ACTIONS(3613), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3619), + [anon_sym_goto] = ACTIONS(3622), + [anon_sym___try] = ACTIONS(3625), + [anon_sym___leave] = ACTIONS(3628), + [anon_sym_not] = ACTIONS(3448), + [anon_sym_compl] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3514), + [anon_sym_PLUS_PLUS] = ACTIONS(3514), + [anon_sym_sizeof] = ACTIONS(3517), + [anon_sym___alignof__] = ACTIONS(3520), + [anon_sym___alignof] = ACTIONS(3520), + [anon_sym__alignof] = ACTIONS(3520), + [anon_sym_alignof] = ACTIONS(3520), + [anon_sym__Alignof] = ACTIONS(3520), + [anon_sym_offsetof] = ACTIONS(3523), + [anon_sym__Generic] = ACTIONS(3526), + [anon_sym_asm] = ACTIONS(3529), + [anon_sym___asm__] = ACTIONS(3529), + [anon_sym___asm] = ACTIONS(3529), + [sym_number_literal] = ACTIONS(3532), + [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(3538), + [anon_sym_u_DQUOTE] = ACTIONS(3538), + [anon_sym_U_DQUOTE] = ACTIONS(3538), + [anon_sym_u8_DQUOTE] = ACTIONS(3538), + [anon_sym_DQUOTE] = ACTIONS(3538), + [sym_true] = ACTIONS(3541), + [sym_false] = ACTIONS(3541), + [anon_sym_NULL] = ACTIONS(3544), + [anon_sym_nullptr] = ACTIONS(3544), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3547), + [anon_sym_template] = ACTIONS(3550), + [anon_sym_try] = ACTIONS(3631), + [anon_sym_delete] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3634), + [anon_sym_co_return] = ACTIONS(3637), + [anon_sym_co_yield] = ACTIONS(3640), + [anon_sym_R_DQUOTE] = ACTIONS(3568), + [anon_sym_LR_DQUOTE] = ACTIONS(3568), + [anon_sym_uR_DQUOTE] = ACTIONS(3568), + [anon_sym_UR_DQUOTE] = ACTIONS(3568), + [anon_sym_u8R_DQUOTE] = ACTIONS(3568), + [anon_sym_co_await] = ACTIONS(3571), + [anon_sym_new] = ACTIONS(3574), + [anon_sym_requires] = ACTIONS(3577), + [sym_this] = ACTIONS(3541), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_FORWARD] = ACTIONS(3580), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3580), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_PS_GET] = ACTIONS(3580), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3580), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3580), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3580), + }, + [STATE(806)] = { + [sym_attribute_declaration] = STATE(814), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(354), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [sym_identifier] = ACTIONS(3437), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(807)] = { + [sym_attribute_declaration] = STATE(814), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(359), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [sym_identifier] = ACTIONS(3437), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(808)] = { + [sym_attribute_declaration] = STATE(814), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(360), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(814), + [sym_identifier] = ACTIONS(3437), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(809)] = { + [sym_expression] = STATE(3436), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_initializer_list] = STATE(3693), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), + [anon_sym_COMMA] = ACTIONS(3321), + [anon_sym_RPAREN] = ACTIONS(3321), + [anon_sym_LPAREN2] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE] = ACTIONS(3319), + [anon_sym_CARET] = ACTIONS(3319), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_LT_LT] = ACTIONS(3319), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3647), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_EQ] = ACTIONS(3319), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_QMARK] = ACTIONS(3321), + [anon_sym_STAR_EQ] = ACTIONS(3321), + [anon_sym_SLASH_EQ] = ACTIONS(3321), + [anon_sym_PERCENT_EQ] = ACTIONS(3321), + [anon_sym_PLUS_EQ] = ACTIONS(3321), + [anon_sym_DASH_EQ] = ACTIONS(3321), + [anon_sym_LT_LT_EQ] = ACTIONS(3321), + [anon_sym_GT_GT_EQ] = ACTIONS(3321), + [anon_sym_AMP_EQ] = ACTIONS(3321), + [anon_sym_CARET_EQ] = ACTIONS(3321), + [anon_sym_PIPE_EQ] = ACTIONS(3321), + [anon_sym_and_eq] = ACTIONS(3319), + [anon_sym_or_eq] = ACTIONS(3319), + [anon_sym_xor_eq] = ACTIONS(3319), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_LT_EQ_GT] = ACTIONS(3321), + [anon_sym_or] = ACTIONS(3319), + [anon_sym_and] = ACTIONS(3319), + [anon_sym_bitor] = ACTIONS(3319), + [anon_sym_xor] = ACTIONS(3319), + [anon_sym_bitand] = ACTIONS(3319), + [anon_sym_not_eq] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [anon_sym_DOT] = ACTIONS(3319), + [anon_sym_DOT_STAR] = ACTIONS(3321), + [anon_sym_DASH_GT] = ACTIONS(3319), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [anon_sym_DASH_GT_STAR] = ACTIONS(3321), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(810)] = { + [sym_attribute_declaration] = STATE(800), + [sym_compound_statement] = STATE(309), + [sym_attributed_statement] = STATE(309), + [sym_statement] = STATE(299), + [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(4823), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8439), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [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(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(800), + [sym_identifier] = ACTIONS(3435), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(83), + [anon_sym_default] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1473), + [anon_sym___leave] = ACTIONS(1475), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(811)] = { + [sym_attribute_declaration] = STATE(800), + [sym_compound_statement] = STATE(309), + [sym_attributed_statement] = STATE(309), + [sym_statement] = STATE(301), + [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(4823), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8439), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [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(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(800), + [sym_identifier] = ACTIONS(3435), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(83), + [anon_sym_default] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1473), + [anon_sym___leave] = ACTIONS(1475), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(812)] = { + [sym_attribute_declaration] = STATE(800), + [sym_compound_statement] = STATE(309), + [sym_attributed_statement] = STATE(309), + [sym_statement] = STATE(302), + [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(4823), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8439), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [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(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(800), + [sym_identifier] = ACTIONS(3435), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(83), + [anon_sym_default] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1473), + [anon_sym___leave] = ACTIONS(1475), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(813)] = { + [sym_template_argument_list] = STATE(853), + [sym_identifier] = ACTIONS(3272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3283), + [anon_sym_EQ_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym___extension__] = ACTIONS(3272), + [anon_sym_virtual] = ACTIONS(3272), + [anon_sym_extern] = ACTIONS(3272), + [anon_sym___attribute__] = ACTIONS(3272), + [anon_sym___attribute] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3279), + [anon_sym___declspec] = ACTIONS(3272), + [anon_sym___based] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3281), + [anon_sym_register] = ACTIONS(3272), + [anon_sym_inline] = ACTIONS(3272), + [anon_sym___inline] = ACTIONS(3272), + [anon_sym___inline__] = ACTIONS(3272), + [anon_sym___forceinline] = ACTIONS(3272), + [anon_sym_thread_local] = ACTIONS(3272), + [anon_sym___thread] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_constexpr] = ACTIONS(3272), + [anon_sym_volatile] = ACTIONS(3272), + [anon_sym_restrict] = ACTIONS(3272), + [anon_sym___restrict__] = ACTIONS(3272), + [anon_sym__Atomic] = ACTIONS(3272), + [anon_sym__Noreturn] = ACTIONS(3272), + [anon_sym_noreturn] = ACTIONS(3272), + [anon_sym__Nonnull] = ACTIONS(3272), + [anon_sym_mutable] = ACTIONS(3272), + [anon_sym_constinit] = ACTIONS(3272), + [anon_sym_consteval] = ACTIONS(3272), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_LT_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_GT_EQ] = ACTIONS(3274), + [anon_sym_AMP_EQ] = ACTIONS(3274), + [anon_sym_CARET_EQ] = ACTIONS(3274), + [anon_sym_PIPE_EQ] = ACTIONS(3274), + [anon_sym_and_eq] = ACTIONS(3281), + [anon_sym_or_eq] = ACTIONS(3281), + [anon_sym_xor_eq] = ACTIONS(3281), + [anon_sym_LT_EQ_GT] = ACTIONS(3274), + [anon_sym_or] = ACTIONS(3281), + [anon_sym_and] = ACTIONS(3281), + [anon_sym_bitor] = ACTIONS(3281), + [anon_sym_xor] = ACTIONS(3281), + [anon_sym_bitand] = ACTIONS(3281), + [anon_sym_not_eq] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_DOT_STAR] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3272), + [anon_sym_decltype] = ACTIONS(3272), + [anon_sym_template] = ACTIONS(3272), + [anon_sym_operator] = ACTIONS(3272), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3272), + [anon_sym_MOZ_COLD] = ACTIONS(3272), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3272), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3272), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3272), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3272), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3272), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3272), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3272), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3272), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3272), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3272), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3272), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3272), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_RAII] = ACTIONS(3272), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3272), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3272), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3272), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3272), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3272), + }, + [STATE(814)] = { + [sym_attribute_declaration] = STATE(803), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(382), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(803), + [sym_identifier] = ACTIONS(3437), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(203), + [anon_sym_default] = ACTIONS(205), + [anon_sym_while] = ACTIONS(207), + [anon_sym_do] = ACTIONS(209), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_break] = ACTIONS(215), + [anon_sym_continue] = ACTIONS(217), + [anon_sym_goto] = ACTIONS(219), + [anon_sym___try] = ACTIONS(221), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(233), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(815)] = { + [sym_attribute_declaration] = STATE(837), + [sym_compound_statement] = STATE(151), + [sym_attributed_statement] = STATE(151), + [sym_statement] = STATE(140), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [sym_identifier] = ACTIONS(3651), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(816)] = { + [sym_attribute_declaration] = STATE(837), + [sym_compound_statement] = STATE(151), + [sym_attributed_statement] = STATE(151), + [sym_statement] = STATE(163), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [sym_identifier] = ACTIONS(3651), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(817)] = { + [sym_attribute_declaration] = STATE(817), + [sym_compound_statement] = STATE(151), + [sym_attributed_statement] = STATE(151), + [sym_statement] = STATE(158), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(817), + [sym_identifier] = ACTIONS(3653), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_BANG] = ACTIONS(3445), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym___extension__] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3463), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_LBRACK] = ACTIONS(3469), + [sym_primitive_type] = ACTIONS(3472), + [anon_sym_if] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3665), + [anon_sym_case] = ACTIONS(3668), + [anon_sym_default] = ACTIONS(3671), + [anon_sym_while] = ACTIONS(3674), + [anon_sym_do] = ACTIONS(3677), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3683), + [anon_sym_break] = ACTIONS(3686), + [anon_sym_continue] = ACTIONS(3689), + [anon_sym_goto] = ACTIONS(3692), + [anon_sym___try] = ACTIONS(3695), + [anon_sym___leave] = ACTIONS(3698), + [anon_sym_not] = ACTIONS(3448), + [anon_sym_compl] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3514), + [anon_sym_PLUS_PLUS] = ACTIONS(3514), + [anon_sym_sizeof] = ACTIONS(3517), + [anon_sym___alignof__] = ACTIONS(3520), + [anon_sym___alignof] = ACTIONS(3520), + [anon_sym__alignof] = ACTIONS(3520), + [anon_sym_alignof] = ACTIONS(3520), + [anon_sym__Alignof] = ACTIONS(3520), + [anon_sym_offsetof] = ACTIONS(3523), + [anon_sym__Generic] = ACTIONS(3526), + [anon_sym_asm] = ACTIONS(3529), + [anon_sym___asm__] = ACTIONS(3529), + [anon_sym___asm] = ACTIONS(3529), + [sym_number_literal] = ACTIONS(3532), + [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(3538), + [anon_sym_u_DQUOTE] = ACTIONS(3538), + [anon_sym_U_DQUOTE] = ACTIONS(3538), + [anon_sym_u8_DQUOTE] = ACTIONS(3538), + [anon_sym_DQUOTE] = ACTIONS(3538), + [sym_true] = ACTIONS(3541), + [sym_false] = ACTIONS(3541), + [anon_sym_NULL] = ACTIONS(3544), + [anon_sym_nullptr] = ACTIONS(3544), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3547), + [anon_sym_template] = ACTIONS(3550), + [anon_sym_try] = ACTIONS(3701), + [anon_sym_delete] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3704), + [anon_sym_co_return] = ACTIONS(3707), + [anon_sym_co_yield] = ACTIONS(3710), + [anon_sym_R_DQUOTE] = ACTIONS(3568), + [anon_sym_LR_DQUOTE] = ACTIONS(3568), + [anon_sym_uR_DQUOTE] = ACTIONS(3568), + [anon_sym_UR_DQUOTE] = ACTIONS(3568), + [anon_sym_u8R_DQUOTE] = ACTIONS(3568), + [anon_sym_co_await] = ACTIONS(3571), + [anon_sym_new] = ACTIONS(3574), + [anon_sym_requires] = ACTIONS(3577), + [sym_this] = ACTIONS(3541), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_FORWARD] = ACTIONS(3580), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3580), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_PS_GET] = ACTIONS(3580), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3580), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3580), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3580), + }, + [STATE(818)] = { + [sym_attribute_declaration] = STATE(837), + [sym_compound_statement] = STATE(151), + [sym_attributed_statement] = STATE(151), + [sym_statement] = STATE(144), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [sym_identifier] = ACTIONS(3651), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(819)] = { + [sym_attribute_declaration] = STATE(837), + [sym_compound_statement] = STATE(151), + [sym_attributed_statement] = STATE(151), + [sym_statement] = STATE(152), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [sym_identifier] = ACTIONS(3651), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(820)] = { + [sym_attribute_declaration] = STATE(837), + [sym_compound_statement] = STATE(151), + [sym_attributed_statement] = STATE(151), + [sym_statement] = STATE(187), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [sym_identifier] = ACTIONS(3651), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(821)] = { + [sym_attribute_declaration] = STATE(837), + [sym_compound_statement] = STATE(151), + [sym_attributed_statement] = STATE(151), + [sym_statement] = STATE(171), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(837), + [sym_identifier] = ACTIONS(3651), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(822)] = { + [sym_attribute_declaration] = STATE(829), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(7918), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(829), + [sym_identifier] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1719), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(823)] = { + [sym_attribute_declaration] = STATE(829), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(278), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(829), + [sym_identifier] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1719), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(824)] = { + [sym_attribute_declaration] = STATE(824), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(306), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(824), + [sym_identifier] = ACTIONS(3713), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_BANG] = ACTIONS(3445), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym___extension__] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3463), + [anon_sym_LBRACE] = ACTIONS(3589), + [anon_sym_LBRACK] = ACTIONS(3469), + [sym_primitive_type] = ACTIONS(3472), + [anon_sym_if] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3595), + [anon_sym_case] = ACTIONS(3719), + [anon_sym_default] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3725), + [anon_sym_do] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3728), + [anon_sym_return] = ACTIONS(3613), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3619), + [anon_sym_goto] = ACTIONS(3622), + [anon_sym___try] = ACTIONS(3731), + [anon_sym___leave] = ACTIONS(3511), + [anon_sym_not] = ACTIONS(3448), + [anon_sym_compl] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3514), + [anon_sym_PLUS_PLUS] = ACTIONS(3514), + [anon_sym_sizeof] = ACTIONS(3517), + [anon_sym___alignof__] = ACTIONS(3520), + [anon_sym___alignof] = ACTIONS(3520), + [anon_sym__alignof] = ACTIONS(3520), + [anon_sym_alignof] = ACTIONS(3520), + [anon_sym__Alignof] = ACTIONS(3520), + [anon_sym_offsetof] = ACTIONS(3523), + [anon_sym__Generic] = ACTIONS(3526), + [anon_sym_asm] = ACTIONS(3529), + [anon_sym___asm__] = ACTIONS(3529), + [anon_sym___asm] = ACTIONS(3529), + [sym_number_literal] = ACTIONS(3532), + [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(3538), + [anon_sym_u_DQUOTE] = ACTIONS(3538), + [anon_sym_U_DQUOTE] = ACTIONS(3538), + [anon_sym_u8_DQUOTE] = ACTIONS(3538), + [anon_sym_DQUOTE] = ACTIONS(3538), + [sym_true] = ACTIONS(3541), + [sym_false] = ACTIONS(3541), + [anon_sym_NULL] = ACTIONS(3544), + [anon_sym_nullptr] = ACTIONS(3544), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3547), + [anon_sym_template] = ACTIONS(3550), + [anon_sym_try] = ACTIONS(3631), + [anon_sym_delete] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3634), + [anon_sym_co_return] = ACTIONS(3637), + [anon_sym_co_yield] = ACTIONS(3640), + [anon_sym_R_DQUOTE] = ACTIONS(3568), + [anon_sym_LR_DQUOTE] = ACTIONS(3568), + [anon_sym_uR_DQUOTE] = ACTIONS(3568), + [anon_sym_UR_DQUOTE] = ACTIONS(3568), + [anon_sym_u8R_DQUOTE] = ACTIONS(3568), + [anon_sym_co_await] = ACTIONS(3571), + [anon_sym_new] = ACTIONS(3574), + [anon_sym_requires] = ACTIONS(3577), + [sym_this] = ACTIONS(3541), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_FORWARD] = ACTIONS(3580), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3580), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_PS_GET] = ACTIONS(3580), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3580), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3580), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3580), + }, + [STATE(825)] = { + [sym_attribute_declaration] = STATE(829), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(7648), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(829), + [sym_identifier] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1719), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(826)] = { + [sym_attribute_declaration] = STATE(829), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(299), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(829), + [sym_identifier] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1719), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(827)] = { + [sym_attribute_declaration] = STATE(829), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(301), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(829), + [sym_identifier] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1719), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(828)] = { + [sym_attribute_declaration] = STATE(829), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(302), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(829), + [sym_identifier] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1719), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(829)] = { + [sym_attribute_declaration] = STATE(824), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(306), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(824), + [sym_identifier] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1719), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(830)] = { + [sym_attribute_declaration] = STATE(845), + [sym_compound_statement] = STATE(383), + [sym_attributed_statement] = STATE(383), + [sym_statement] = STATE(324), + [sym_labeled_statement] = STATE(383), + [sym_expression_statement] = STATE(383), + [sym_if_statement] = STATE(383), + [sym_switch_statement] = STATE(383), + [sym_case_statement] = STATE(383), + [sym_while_statement] = STATE(383), + [sym_do_statement] = STATE(383), + [sym_for_statement] = STATE(383), + [sym_return_statement] = STATE(383), + [sym_break_statement] = STATE(383), + [sym_continue_statement] = STATE(383), + [sym_goto_statement] = STATE(383), + [sym_seh_try_statement] = STATE(383), + [sym_seh_leave_statement] = STATE(383), + [sym_expression] = STATE(4855), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8847), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(383), + [sym_co_return_statement] = STATE(383), + [sym_co_yield_statement] = STATE(383), + [sym_throw_statement] = STATE(383), + [sym_try_statement] = STATE(383), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), + [anon_sym___try] = ACTIONS(676), + [anon_sym___leave] = ACTIONS(678), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(682), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(684), + [anon_sym_co_return] = ACTIONS(694), + [anon_sym_co_yield] = ACTIONS(696), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(831)] = { + [sym_attribute_declaration] = STATE(845), + [sym_compound_statement] = STATE(383), + [sym_attributed_statement] = STATE(383), + [sym_statement] = STATE(335), + [sym_labeled_statement] = STATE(383), + [sym_expression_statement] = STATE(383), + [sym_if_statement] = STATE(383), + [sym_switch_statement] = STATE(383), + [sym_case_statement] = STATE(383), + [sym_while_statement] = STATE(383), + [sym_do_statement] = STATE(383), + [sym_for_statement] = STATE(383), + [sym_return_statement] = STATE(383), + [sym_break_statement] = STATE(383), + [sym_continue_statement] = STATE(383), + [sym_goto_statement] = STATE(383), + [sym_seh_try_statement] = STATE(383), + [sym_seh_leave_statement] = STATE(383), + [sym_expression] = STATE(4855), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8847), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(383), + [sym_co_return_statement] = STATE(383), + [sym_co_yield_statement] = STATE(383), + [sym_throw_statement] = STATE(383), + [sym_try_statement] = STATE(383), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), + [anon_sym___try] = ACTIONS(676), + [anon_sym___leave] = ACTIONS(678), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(682), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(684), + [anon_sym_co_return] = ACTIONS(694), + [anon_sym_co_yield] = ACTIONS(696), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(832)] = { + [sym_attribute_declaration] = STATE(832), + [sym_compound_statement] = STATE(383), + [sym_attributed_statement] = STATE(383), + [sym_statement] = STATE(402), + [sym_labeled_statement] = STATE(383), + [sym_expression_statement] = STATE(383), + [sym_if_statement] = STATE(383), + [sym_switch_statement] = STATE(383), + [sym_case_statement] = STATE(383), + [sym_while_statement] = STATE(383), + [sym_do_statement] = STATE(383), + [sym_for_statement] = STATE(383), + [sym_return_statement] = STATE(383), + [sym_break_statement] = STATE(383), + [sym_continue_statement] = STATE(383), + [sym_goto_statement] = STATE(383), + [sym_seh_try_statement] = STATE(383), + [sym_seh_leave_statement] = STATE(383), + [sym_expression] = STATE(4855), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8847), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(383), + [sym_co_return_statement] = STATE(383), + [sym_co_yield_statement] = STATE(383), + [sym_throw_statement] = STATE(383), + [sym_try_statement] = STATE(383), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(832), + [sym_identifier] = ACTIONS(3736), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_BANG] = ACTIONS(3445), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3739), + [anon_sym___extension__] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3463), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3469), + [sym_primitive_type] = ACTIONS(3472), + [anon_sym_if] = ACTIONS(3745), + [anon_sym_switch] = ACTIONS(3748), + [anon_sym_case] = ACTIONS(3751), + [anon_sym_default] = ACTIONS(3754), + [anon_sym_while] = ACTIONS(3757), + [anon_sym_do] = ACTIONS(3760), + [anon_sym_for] = ACTIONS(3763), + [anon_sym_return] = ACTIONS(3766), + [anon_sym_break] = ACTIONS(3769), + [anon_sym_continue] = ACTIONS(3772), + [anon_sym_goto] = ACTIONS(3775), + [anon_sym___try] = ACTIONS(3778), + [anon_sym___leave] = ACTIONS(3781), + [anon_sym_not] = ACTIONS(3448), + [anon_sym_compl] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3514), + [anon_sym_PLUS_PLUS] = ACTIONS(3514), + [anon_sym_sizeof] = ACTIONS(3517), + [anon_sym___alignof__] = ACTIONS(3520), + [anon_sym___alignof] = ACTIONS(3520), + [anon_sym__alignof] = ACTIONS(3520), + [anon_sym_alignof] = ACTIONS(3520), + [anon_sym__Alignof] = ACTIONS(3520), + [anon_sym_offsetof] = ACTIONS(3523), + [anon_sym__Generic] = ACTIONS(3526), + [anon_sym_asm] = ACTIONS(3529), + [anon_sym___asm__] = ACTIONS(3529), + [anon_sym___asm] = ACTIONS(3529), + [sym_number_literal] = ACTIONS(3532), + [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(3538), + [anon_sym_u_DQUOTE] = ACTIONS(3538), + [anon_sym_U_DQUOTE] = ACTIONS(3538), + [anon_sym_u8_DQUOTE] = ACTIONS(3538), + [anon_sym_DQUOTE] = ACTIONS(3538), + [sym_true] = ACTIONS(3541), + [sym_false] = ACTIONS(3541), + [anon_sym_NULL] = ACTIONS(3544), + [anon_sym_nullptr] = ACTIONS(3544), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3547), + [anon_sym_template] = ACTIONS(3550), + [anon_sym_try] = ACTIONS(3784), + [anon_sym_delete] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3787), + [anon_sym_co_return] = ACTIONS(3790), + [anon_sym_co_yield] = ACTIONS(3793), + [anon_sym_R_DQUOTE] = ACTIONS(3568), + [anon_sym_LR_DQUOTE] = ACTIONS(3568), + [anon_sym_uR_DQUOTE] = ACTIONS(3568), + [anon_sym_UR_DQUOTE] = ACTIONS(3568), + [anon_sym_u8R_DQUOTE] = ACTIONS(3568), + [anon_sym_co_await] = ACTIONS(3571), + [anon_sym_new] = ACTIONS(3574), + [anon_sym_requires] = ACTIONS(3577), + [sym_this] = ACTIONS(3541), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_FORWARD] = ACTIONS(3580), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3580), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_PS_GET] = ACTIONS(3580), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3580), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3580), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3580), + }, + [STATE(833)] = { + [sym_attribute_declaration] = STATE(845), + [sym_compound_statement] = STATE(383), + [sym_attributed_statement] = STATE(383), + [sym_statement] = STATE(318), + [sym_labeled_statement] = STATE(383), + [sym_expression_statement] = STATE(383), + [sym_if_statement] = STATE(383), + [sym_switch_statement] = STATE(383), + [sym_case_statement] = STATE(383), + [sym_while_statement] = STATE(383), + [sym_do_statement] = STATE(383), + [sym_for_statement] = STATE(383), + [sym_return_statement] = STATE(383), + [sym_break_statement] = STATE(383), + [sym_continue_statement] = STATE(383), + [sym_goto_statement] = STATE(383), + [sym_seh_try_statement] = STATE(383), + [sym_seh_leave_statement] = STATE(383), + [sym_expression] = STATE(4855), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8847), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(383), + [sym_co_return_statement] = STATE(383), + [sym_co_yield_statement] = STATE(383), + [sym_throw_statement] = STATE(383), + [sym_try_statement] = STATE(383), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), + [anon_sym___try] = ACTIONS(676), + [anon_sym___leave] = ACTIONS(678), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(682), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(684), + [anon_sym_co_return] = ACTIONS(694), + [anon_sym_co_yield] = ACTIONS(696), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(834)] = { + [sym_attribute_declaration] = STATE(845), + [sym_compound_statement] = STATE(383), + [sym_attributed_statement] = STATE(383), + [sym_statement] = STATE(348), + [sym_labeled_statement] = STATE(383), + [sym_expression_statement] = STATE(383), + [sym_if_statement] = STATE(383), + [sym_switch_statement] = STATE(383), + [sym_case_statement] = STATE(383), + [sym_while_statement] = STATE(383), + [sym_do_statement] = STATE(383), + [sym_for_statement] = STATE(383), + [sym_return_statement] = STATE(383), + [sym_break_statement] = STATE(383), + [sym_continue_statement] = STATE(383), + [sym_goto_statement] = STATE(383), + [sym_seh_try_statement] = STATE(383), + [sym_seh_leave_statement] = STATE(383), + [sym_expression] = STATE(4855), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8847), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(383), + [sym_co_return_statement] = STATE(383), + [sym_co_yield_statement] = STATE(383), + [sym_throw_statement] = STATE(383), + [sym_try_statement] = STATE(383), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), + [anon_sym___try] = ACTIONS(676), + [anon_sym___leave] = ACTIONS(678), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(682), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(684), + [anon_sym_co_return] = ACTIONS(694), + [anon_sym_co_yield] = ACTIONS(696), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(835)] = { + [sym_attribute_declaration] = STATE(845), + [sym_compound_statement] = STATE(383), + [sym_attributed_statement] = STATE(383), + [sym_statement] = STATE(330), + [sym_labeled_statement] = STATE(383), + [sym_expression_statement] = STATE(383), + [sym_if_statement] = STATE(383), + [sym_switch_statement] = STATE(383), + [sym_case_statement] = STATE(383), + [sym_while_statement] = STATE(383), + [sym_do_statement] = STATE(383), + [sym_for_statement] = STATE(383), + [sym_return_statement] = STATE(383), + [sym_break_statement] = STATE(383), + [sym_continue_statement] = STATE(383), + [sym_goto_statement] = STATE(383), + [sym_seh_try_statement] = STATE(383), + [sym_seh_leave_statement] = STATE(383), + [sym_expression] = STATE(4855), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8847), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(383), + [sym_co_return_statement] = STATE(383), + [sym_co_yield_statement] = STATE(383), + [sym_throw_statement] = STATE(383), + [sym_try_statement] = STATE(383), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), + [anon_sym___try] = ACTIONS(676), + [anon_sym___leave] = ACTIONS(678), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(682), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(684), + [anon_sym_co_return] = ACTIONS(694), + [anon_sym_co_yield] = ACTIONS(696), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(836)] = { + [sym_attribute_declaration] = STATE(845), + [sym_compound_statement] = STATE(383), + [sym_attributed_statement] = STATE(383), + [sym_statement] = STATE(351), + [sym_labeled_statement] = STATE(383), + [sym_expression_statement] = STATE(383), + [sym_if_statement] = STATE(383), + [sym_switch_statement] = STATE(383), + [sym_case_statement] = STATE(383), + [sym_while_statement] = STATE(383), + [sym_do_statement] = STATE(383), + [sym_for_statement] = STATE(383), + [sym_return_statement] = STATE(383), + [sym_break_statement] = STATE(383), + [sym_continue_statement] = STATE(383), + [sym_goto_statement] = STATE(383), + [sym_seh_try_statement] = STATE(383), + [sym_seh_leave_statement] = STATE(383), + [sym_expression] = STATE(4855), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8847), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(383), + [sym_co_return_statement] = STATE(383), + [sym_co_yield_statement] = STATE(383), + [sym_throw_statement] = STATE(383), + [sym_try_statement] = STATE(383), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), + [anon_sym___try] = ACTIONS(676), + [anon_sym___leave] = ACTIONS(678), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(682), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(684), + [anon_sym_co_return] = ACTIONS(694), + [anon_sym_co_yield] = ACTIONS(696), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(837)] = { + [sym_attribute_declaration] = STATE(817), + [sym_compound_statement] = STATE(151), + [sym_attributed_statement] = STATE(151), + [sym_statement] = STATE(158), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(4836), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8468), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(817), + [sym_identifier] = ACTIONS(3651), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(301), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(307), + [anon_sym_while] = ACTIONS(309), + [anon_sym_do] = ACTIONS(311), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(315), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_goto] = ACTIONS(321), + [anon_sym___try] = ACTIONS(323), + [anon_sym___leave] = ACTIONS(325), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_co_return] = ACTIONS(341), + [anon_sym_co_yield] = ACTIONS(343), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(838)] = { + [sym_attribute_declaration] = STATE(846), + [sym_compound_statement] = STATE(692), + [sym_attributed_statement] = STATE(692), + [sym_statement] = STATE(672), + [sym_labeled_statement] = STATE(692), + [sym_expression_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_switch_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_do_statement] = STATE(692), + [sym_for_statement] = STATE(692), + [sym_return_statement] = STATE(692), + [sym_break_statement] = STATE(692), + [sym_continue_statement] = STATE(692), + [sym_goto_statement] = STATE(692), + [sym_seh_try_statement] = STATE(692), + [sym_seh_leave_statement] = STATE(692), + [sym_expression] = STATE(4912), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8611), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(692), + [sym_co_return_statement] = STATE(692), + [sym_co_yield_statement] = STATE(692), + [sym_throw_statement] = STATE(692), + [sym_try_statement] = STATE(692), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(846), + [sym_identifier] = ACTIONS(3796), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1675), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_goto] = ACTIONS(1693), + [anon_sym___try] = ACTIONS(1695), + [anon_sym___leave] = ACTIONS(1697), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1699), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(1701), + [anon_sym_co_return] = ACTIONS(1703), + [anon_sym_co_yield] = ACTIONS(1705), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(839)] = { + [sym_attribute_declaration] = STATE(846), + [sym_compound_statement] = STATE(692), + [sym_attributed_statement] = STATE(692), + [sym_statement] = STATE(693), + [sym_labeled_statement] = STATE(692), + [sym_expression_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_switch_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_do_statement] = STATE(692), + [sym_for_statement] = STATE(692), + [sym_return_statement] = STATE(692), + [sym_break_statement] = STATE(692), + [sym_continue_statement] = STATE(692), + [sym_goto_statement] = STATE(692), + [sym_seh_try_statement] = STATE(692), + [sym_seh_leave_statement] = STATE(692), + [sym_expression] = STATE(4912), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8611), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(692), + [sym_co_return_statement] = STATE(692), + [sym_co_yield_statement] = STATE(692), + [sym_throw_statement] = STATE(692), + [sym_try_statement] = STATE(692), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(846), + [sym_identifier] = ACTIONS(3796), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1675), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_goto] = ACTIONS(1693), + [anon_sym___try] = ACTIONS(1695), + [anon_sym___leave] = ACTIONS(1697), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1699), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(1701), + [anon_sym_co_return] = ACTIONS(1703), + [anon_sym_co_yield] = ACTIONS(1705), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(840)] = { + [sym_attribute_declaration] = STATE(840), + [sym_compound_statement] = STATE(692), + [sym_attributed_statement] = STATE(692), + [sym_statement] = STATE(706), + [sym_labeled_statement] = STATE(692), + [sym_expression_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_switch_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_do_statement] = STATE(692), + [sym_for_statement] = STATE(692), + [sym_return_statement] = STATE(692), + [sym_break_statement] = STATE(692), + [sym_continue_statement] = STATE(692), + [sym_goto_statement] = STATE(692), + [sym_seh_try_statement] = STATE(692), + [sym_seh_leave_statement] = STATE(692), + [sym_expression] = STATE(4912), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8611), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(692), + [sym_co_return_statement] = STATE(692), + [sym_co_yield_statement] = STATE(692), + [sym_throw_statement] = STATE(692), + [sym_try_statement] = STATE(692), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(840), + [sym_identifier] = ACTIONS(3798), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_BANG] = ACTIONS(3445), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3801), + [anon_sym___extension__] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3463), + [anon_sym_LBRACE] = ACTIONS(3804), + [anon_sym_LBRACK] = ACTIONS(3469), + [sym_primitive_type] = ACTIONS(3472), + [anon_sym_if] = ACTIONS(3807), + [anon_sym_switch] = ACTIONS(3810), + [anon_sym_case] = ACTIONS(3719), + [anon_sym_default] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3813), + [anon_sym_do] = ACTIONS(3816), + [anon_sym_for] = ACTIONS(3819), + [anon_sym_return] = ACTIONS(3822), + [anon_sym_break] = ACTIONS(3825), + [anon_sym_continue] = ACTIONS(3828), + [anon_sym_goto] = ACTIONS(3831), + [anon_sym___try] = ACTIONS(3834), + [anon_sym___leave] = ACTIONS(3837), + [anon_sym_not] = ACTIONS(3448), + [anon_sym_compl] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3514), + [anon_sym_PLUS_PLUS] = ACTIONS(3514), + [anon_sym_sizeof] = ACTIONS(3517), + [anon_sym___alignof__] = ACTIONS(3520), + [anon_sym___alignof] = ACTIONS(3520), + [anon_sym__alignof] = ACTIONS(3520), + [anon_sym_alignof] = ACTIONS(3520), + [anon_sym__Alignof] = ACTIONS(3520), + [anon_sym_offsetof] = ACTIONS(3523), + [anon_sym__Generic] = ACTIONS(3526), + [anon_sym_asm] = ACTIONS(3529), + [anon_sym___asm__] = ACTIONS(3529), + [anon_sym___asm] = ACTIONS(3529), + [sym_number_literal] = ACTIONS(3532), + [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(3538), + [anon_sym_u_DQUOTE] = ACTIONS(3538), + [anon_sym_U_DQUOTE] = ACTIONS(3538), + [anon_sym_u8_DQUOTE] = ACTIONS(3538), + [anon_sym_DQUOTE] = ACTIONS(3538), + [sym_true] = ACTIONS(3541), + [sym_false] = ACTIONS(3541), + [anon_sym_NULL] = ACTIONS(3544), + [anon_sym_nullptr] = ACTIONS(3544), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3547), + [anon_sym_template] = ACTIONS(3550), + [anon_sym_try] = ACTIONS(3840), + [anon_sym_delete] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3843), + [anon_sym_co_return] = ACTIONS(3846), + [anon_sym_co_yield] = ACTIONS(3849), + [anon_sym_R_DQUOTE] = ACTIONS(3568), + [anon_sym_LR_DQUOTE] = ACTIONS(3568), + [anon_sym_uR_DQUOTE] = ACTIONS(3568), + [anon_sym_UR_DQUOTE] = ACTIONS(3568), + [anon_sym_u8R_DQUOTE] = ACTIONS(3568), + [anon_sym_co_await] = ACTIONS(3571), + [anon_sym_new] = ACTIONS(3574), + [anon_sym_requires] = ACTIONS(3577), + [sym_this] = ACTIONS(3541), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_FORWARD] = ACTIONS(3580), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3580), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_PS_GET] = ACTIONS(3580), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3580), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3580), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3580), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3580), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3580), + }, + [STATE(841)] = { + [sym_attribute_declaration] = STATE(846), + [sym_compound_statement] = STATE(692), + [sym_attributed_statement] = STATE(692), + [sym_statement] = STATE(669), + [sym_labeled_statement] = STATE(692), + [sym_expression_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_switch_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_do_statement] = STATE(692), + [sym_for_statement] = STATE(692), + [sym_return_statement] = STATE(692), + [sym_break_statement] = STATE(692), + [sym_continue_statement] = STATE(692), + [sym_goto_statement] = STATE(692), + [sym_seh_try_statement] = STATE(692), + [sym_seh_leave_statement] = STATE(692), + [sym_expression] = STATE(4912), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8611), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(692), + [sym_co_return_statement] = STATE(692), + [sym_co_yield_statement] = STATE(692), + [sym_throw_statement] = STATE(692), + [sym_try_statement] = STATE(692), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(846), + [sym_identifier] = ACTIONS(3796), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1675), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_goto] = ACTIONS(1693), + [anon_sym___try] = ACTIONS(1695), + [anon_sym___leave] = ACTIONS(1697), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1699), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(1701), + [anon_sym_co_return] = ACTIONS(1703), + [anon_sym_co_yield] = ACTIONS(1705), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(842)] = { + [sym_attribute_declaration] = STATE(846), + [sym_compound_statement] = STATE(692), + [sym_attributed_statement] = STATE(692), + [sym_statement] = STATE(683), + [sym_labeled_statement] = STATE(692), + [sym_expression_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_switch_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_do_statement] = STATE(692), + [sym_for_statement] = STATE(692), + [sym_return_statement] = STATE(692), + [sym_break_statement] = STATE(692), + [sym_continue_statement] = STATE(692), + [sym_goto_statement] = STATE(692), + [sym_seh_try_statement] = STATE(692), + [sym_seh_leave_statement] = STATE(692), + [sym_expression] = STATE(4912), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8611), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(692), + [sym_co_return_statement] = STATE(692), + [sym_co_yield_statement] = STATE(692), + [sym_throw_statement] = STATE(692), + [sym_try_statement] = STATE(692), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(846), + [sym_identifier] = ACTIONS(3796), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1675), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_goto] = ACTIONS(1693), + [anon_sym___try] = ACTIONS(1695), + [anon_sym___leave] = ACTIONS(1697), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1699), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(1701), + [anon_sym_co_return] = ACTIONS(1703), + [anon_sym_co_yield] = ACTIONS(1705), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(843)] = { + [sym_attribute_declaration] = STATE(846), + [sym_compound_statement] = STATE(692), + [sym_attributed_statement] = STATE(692), + [sym_statement] = STATE(686), + [sym_labeled_statement] = STATE(692), + [sym_expression_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_switch_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_do_statement] = STATE(692), + [sym_for_statement] = STATE(692), + [sym_return_statement] = STATE(692), + [sym_break_statement] = STATE(692), + [sym_continue_statement] = STATE(692), + [sym_goto_statement] = STATE(692), + [sym_seh_try_statement] = STATE(692), + [sym_seh_leave_statement] = STATE(692), + [sym_expression] = STATE(4912), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8611), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(692), + [sym_co_return_statement] = STATE(692), + [sym_co_yield_statement] = STATE(692), + [sym_throw_statement] = STATE(692), + [sym_try_statement] = STATE(692), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(846), + [sym_identifier] = ACTIONS(3796), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1675), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_goto] = ACTIONS(1693), + [anon_sym___try] = ACTIONS(1695), + [anon_sym___leave] = ACTIONS(1697), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1699), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(1701), + [anon_sym_co_return] = ACTIONS(1703), + [anon_sym_co_yield] = ACTIONS(1705), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(844)] = { + [sym_attribute_declaration] = STATE(846), + [sym_compound_statement] = STATE(692), + [sym_attributed_statement] = STATE(692), + [sym_statement] = STATE(687), + [sym_labeled_statement] = STATE(692), + [sym_expression_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_switch_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_do_statement] = STATE(692), + [sym_for_statement] = STATE(692), + [sym_return_statement] = STATE(692), + [sym_break_statement] = STATE(692), + [sym_continue_statement] = STATE(692), + [sym_goto_statement] = STATE(692), + [sym_seh_try_statement] = STATE(692), + [sym_seh_leave_statement] = STATE(692), + [sym_expression] = STATE(4912), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8611), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(692), + [sym_co_return_statement] = STATE(692), + [sym_co_yield_statement] = STATE(692), + [sym_throw_statement] = STATE(692), + [sym_try_statement] = STATE(692), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(846), + [sym_identifier] = ACTIONS(3796), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1675), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_goto] = ACTIONS(1693), + [anon_sym___try] = ACTIONS(1695), + [anon_sym___leave] = ACTIONS(1697), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1699), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(1701), + [anon_sym_co_return] = ACTIONS(1703), + [anon_sym_co_yield] = ACTIONS(1705), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(845)] = { + [sym_attribute_declaration] = STATE(832), + [sym_compound_statement] = STATE(383), + [sym_attributed_statement] = STATE(383), + [sym_statement] = STATE(402), + [sym_labeled_statement] = STATE(383), + [sym_expression_statement] = STATE(383), + [sym_if_statement] = STATE(383), + [sym_switch_statement] = STATE(383), + [sym_case_statement] = STATE(383), + [sym_while_statement] = STATE(383), + [sym_do_statement] = STATE(383), + [sym_for_statement] = STATE(383), + [sym_return_statement] = STATE(383), + [sym_break_statement] = STATE(383), + [sym_continue_statement] = STATE(383), + [sym_goto_statement] = STATE(383), + [sym_seh_try_statement] = STATE(383), + [sym_seh_leave_statement] = STATE(383), + [sym_expression] = STATE(4855), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8847), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(383), + [sym_co_return_statement] = STATE(383), + [sym_co_yield_statement] = STATE(383), + [sym_throw_statement] = STATE(383), + [sym_try_statement] = STATE(383), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(832), + [sym_identifier] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(660), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(664), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_break] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_goto] = ACTIONS(674), + [anon_sym___try] = ACTIONS(676), + [anon_sym___leave] = ACTIONS(678), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(682), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(684), + [anon_sym_co_return] = ACTIONS(694), + [anon_sym_co_yield] = ACTIONS(696), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(846)] = { + [sym_attribute_declaration] = STATE(840), + [sym_compound_statement] = STATE(692), + [sym_attributed_statement] = STATE(692), + [sym_statement] = STATE(706), + [sym_labeled_statement] = STATE(692), + [sym_expression_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_switch_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_do_statement] = STATE(692), + [sym_for_statement] = STATE(692), + [sym_return_statement] = STATE(692), + [sym_break_statement] = STATE(692), + [sym_continue_statement] = STATE(692), + [sym_goto_statement] = STATE(692), + [sym_seh_try_statement] = STATE(692), + [sym_seh_leave_statement] = STATE(692), + [sym_expression] = STATE(4912), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8611), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(692), + [sym_co_return_statement] = STATE(692), + [sym_co_yield_statement] = STATE(692), + [sym_throw_statement] = STATE(692), + [sym_try_statement] = STATE(692), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(840), + [sym_identifier] = ACTIONS(3796), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1675), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_goto] = ACTIONS(1693), + [anon_sym___try] = ACTIONS(1695), + [anon_sym___leave] = ACTIONS(1697), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1699), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(1701), + [anon_sym_co_return] = ACTIONS(1703), + [anon_sym_co_yield] = ACTIONS(1705), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(847)] = { + [sym_attribute_declaration] = STATE(829), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(9025), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(829), + [sym_identifier] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1719), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(848)] = { + [sym_attribute_declaration] = STATE(829), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(8791), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(829), + [sym_identifier] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1719), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(849)] = { + [sym_attribute_declaration] = STATE(829), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(8977), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(829), + [sym_identifier] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1719), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(850)] = { + [sym_attribute_declaration] = STATE(829), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_statement] = STATE(9004), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym_seh_try_statement] = STATE(388), + [sym_seh_leave_statement] = STATE(388), + [sym_expression] = STATE(4744), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8493), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(829), + [sym_identifier] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1719), + [anon_sym___leave] = ACTIONS(223), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(851)] = { + [sym_attribute_declaration] = STATE(800), + [sym_compound_statement] = STATE(309), + [sym_attributed_statement] = STATE(309), + [sym_statement] = STATE(211), + [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(4823), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8439), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [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(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_attributed_declarator_repeat1] = STATE(800), + [sym_identifier] = ACTIONS(3435), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(81), + [anon_sym_case] = ACTIONS(83), + [anon_sym_default] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_do] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_return] = ACTIONS(93), + [anon_sym_break] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym___try] = ACTIONS(1473), + [anon_sym___leave] = ACTIONS(1475), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(149), + [anon_sym_co_yield] = ACTIONS(151), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(852)] = { + [sym_template_argument_list] = STATE(865), + [sym_identifier] = ACTIONS(3272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3283), + [anon_sym_EQ_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3852), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3281), + [anon_sym___extension__] = ACTIONS(3272), + [anon_sym_virtual] = ACTIONS(3272), + [anon_sym_extern] = ACTIONS(3272), + [anon_sym___attribute__] = ACTIONS(3272), + [anon_sym___attribute] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3279), + [anon_sym___declspec] = ACTIONS(3272), + [anon_sym___based] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_register] = ACTIONS(3272), + [anon_sym_inline] = ACTIONS(3272), + [anon_sym___inline] = ACTIONS(3272), + [anon_sym___inline__] = ACTIONS(3272), + [anon_sym___forceinline] = ACTIONS(3272), + [anon_sym_thread_local] = ACTIONS(3272), + [anon_sym___thread] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_constexpr] = ACTIONS(3272), + [anon_sym_volatile] = ACTIONS(3272), + [anon_sym_restrict] = ACTIONS(3272), + [anon_sym___restrict__] = ACTIONS(3272), + [anon_sym__Atomic] = ACTIONS(3272), + [anon_sym__Noreturn] = ACTIONS(3272), + [anon_sym_noreturn] = ACTIONS(3272), + [anon_sym__Nonnull] = ACTIONS(3272), + [anon_sym_mutable] = ACTIONS(3272), + [anon_sym_constinit] = ACTIONS(3272), + [anon_sym_consteval] = ACTIONS(3272), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_LT_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_GT_EQ] = ACTIONS(3274), + [anon_sym_AMP_EQ] = ACTIONS(3274), + [anon_sym_CARET_EQ] = ACTIONS(3274), + [anon_sym_PIPE_EQ] = ACTIONS(3274), + [anon_sym_and_eq] = ACTIONS(3281), + [anon_sym_or_eq] = ACTIONS(3281), + [anon_sym_xor_eq] = ACTIONS(3281), + [anon_sym_LT_EQ_GT] = ACTIONS(3274), + [anon_sym_or] = ACTIONS(3281), + [anon_sym_and] = ACTIONS(3281), + [anon_sym_bitor] = ACTIONS(3281), + [anon_sym_xor] = ACTIONS(3281), + [anon_sym_bitand] = ACTIONS(3281), + [anon_sym_not_eq] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_DOT_STAR] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3281), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3272), + [anon_sym_decltype] = ACTIONS(3272), + [anon_sym_template] = ACTIONS(3272), + [anon_sym_operator] = ACTIONS(3272), + [anon_sym_DASH_GT_STAR] = ACTIONS(3274), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3272), + [anon_sym_MOZ_COLD] = ACTIONS(3272), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3272), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3272), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3272), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3272), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3272), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3272), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3272), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3272), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3272), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3272), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3272), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3272), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_RAII] = ACTIONS(3272), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3272), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3272), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3272), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3272), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3272), + }, + [STATE(853)] = { + [sym_identifier] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3291), + [anon_sym_COMMA] = ACTIONS(3291), + [anon_sym_RPAREN] = ACTIONS(3291), + [anon_sym_LPAREN2] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3291), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_CARET] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_EQ_EQ] = ACTIONS(3291), + [anon_sym_BANG_EQ] = ACTIONS(3291), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3291), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_LT_LT] = ACTIONS(3298), + [anon_sym_GT_GT] = ACTIONS(3298), + [anon_sym_SEMI] = ACTIONS(3291), + [anon_sym___extension__] = ACTIONS(3289), + [anon_sym_virtual] = ACTIONS(3289), + [anon_sym_extern] = ACTIONS(3289), + [anon_sym___attribute__] = ACTIONS(3289), + [anon_sym___attribute] = ACTIONS(3289), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3289), + [anon_sym___based] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_register] = ACTIONS(3289), + [anon_sym_inline] = ACTIONS(3289), + [anon_sym___inline] = ACTIONS(3289), + [anon_sym___inline__] = ACTIONS(3289), + [anon_sym___forceinline] = ACTIONS(3289), + [anon_sym_thread_local] = ACTIONS(3289), + [anon_sym___thread] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_constexpr] = ACTIONS(3289), + [anon_sym_volatile] = ACTIONS(3289), + [anon_sym_restrict] = ACTIONS(3289), + [anon_sym___restrict__] = ACTIONS(3289), + [anon_sym__Atomic] = ACTIONS(3289), + [anon_sym__Noreturn] = ACTIONS(3289), + [anon_sym_noreturn] = ACTIONS(3289), + [anon_sym__Nonnull] = ACTIONS(3289), + [anon_sym_mutable] = ACTIONS(3289), + [anon_sym_constinit] = ACTIONS(3289), + [anon_sym_consteval] = ACTIONS(3289), + [anon_sym_alignas] = ACTIONS(3289), + [anon_sym__Alignas] = ACTIONS(3289), + [anon_sym_QMARK] = ACTIONS(3291), + [anon_sym_STAR_EQ] = ACTIONS(3291), + [anon_sym_SLASH_EQ] = ACTIONS(3291), + [anon_sym_PERCENT_EQ] = ACTIONS(3291), + [anon_sym_PLUS_EQ] = ACTIONS(3291), + [anon_sym_DASH_EQ] = ACTIONS(3291), + [anon_sym_LT_LT_EQ] = ACTIONS(3291), + [anon_sym_GT_GT_EQ] = ACTIONS(3291), + [anon_sym_AMP_EQ] = ACTIONS(3291), + [anon_sym_CARET_EQ] = ACTIONS(3291), + [anon_sym_PIPE_EQ] = ACTIONS(3291), + [anon_sym_and_eq] = ACTIONS(3298), + [anon_sym_or_eq] = ACTIONS(3298), + [anon_sym_xor_eq] = ACTIONS(3298), + [anon_sym_LT_EQ_GT] = ACTIONS(3291), + [anon_sym_or] = ACTIONS(3298), + [anon_sym_and] = ACTIONS(3298), + [anon_sym_bitor] = ACTIONS(3298), + [anon_sym_xor] = ACTIONS(3298), + [anon_sym_bitand] = ACTIONS(3298), + [anon_sym_not_eq] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DOT] = ACTIONS(3298), + [anon_sym_DOT_STAR] = ACTIONS(3291), + [anon_sym_DASH_GT] = ACTIONS(3291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3289), + [anon_sym_decltype] = ACTIONS(3289), + [anon_sym_template] = ACTIONS(3289), + [anon_sym_operator] = ACTIONS(3289), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3289), + [anon_sym_MOZ_COLD] = ACTIONS(3289), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3289), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3289), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3289), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3289), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3289), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3289), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3289), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3289), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3289), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3289), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3289), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3289), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_RAII] = ACTIONS(3289), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3289), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3289), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3289), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3289), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3289), + }, + [STATE(854)] = { + [sym_expression] = STATE(3640), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_initializer_list] = STATE(2893), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), + [anon_sym_COMMA] = ACTIONS(3321), + [anon_sym_LPAREN2] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3855), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE] = ACTIONS(3319), + [anon_sym_CARET] = ACTIONS(3319), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_LT_LT] = ACTIONS(3319), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_EQ] = ACTIONS(3319), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_COLON] = ACTIONS(3319), + [anon_sym_QMARK] = ACTIONS(3321), + [anon_sym_STAR_EQ] = ACTIONS(3321), + [anon_sym_SLASH_EQ] = ACTIONS(3321), + [anon_sym_PERCENT_EQ] = ACTIONS(3321), + [anon_sym_PLUS_EQ] = ACTIONS(3321), + [anon_sym_DASH_EQ] = ACTIONS(3321), + [anon_sym_LT_LT_EQ] = ACTIONS(3321), + [anon_sym_GT_GT_EQ] = ACTIONS(3321), + [anon_sym_AMP_EQ] = ACTIONS(3321), + [anon_sym_CARET_EQ] = ACTIONS(3321), + [anon_sym_PIPE_EQ] = ACTIONS(3321), + [anon_sym_and_eq] = ACTIONS(3319), + [anon_sym_or_eq] = ACTIONS(3319), + [anon_sym_xor_eq] = ACTIONS(3319), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_LT_EQ_GT] = ACTIONS(3321), + [anon_sym_or] = ACTIONS(3319), + [anon_sym_and] = ACTIONS(3319), + [anon_sym_bitor] = ACTIONS(3319), + [anon_sym_xor] = ACTIONS(3319), + [anon_sym_bitand] = ACTIONS(3319), + [anon_sym_not_eq] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [anon_sym_DOT] = ACTIONS(3319), + [anon_sym_DOT_STAR] = ACTIONS(3321), + [anon_sym_DASH_GT] = ACTIONS(3321), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(855)] = { + [sym_expression] = STATE(3573), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_initializer_list] = STATE(3902), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), + [anon_sym_COMMA] = ACTIONS(3321), + [anon_sym_LPAREN2] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE] = ACTIONS(3319), + [anon_sym_CARET] = ACTIONS(3319), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3319), + [anon_sym_LT_EQ] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_LT_LT] = ACTIONS(3319), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(3879), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_EQ] = ACTIONS(3319), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_QMARK] = ACTIONS(3321), + [anon_sym_STAR_EQ] = ACTIONS(3321), + [anon_sym_SLASH_EQ] = ACTIONS(3321), + [anon_sym_PERCENT_EQ] = ACTIONS(3321), + [anon_sym_PLUS_EQ] = ACTIONS(3321), + [anon_sym_DASH_EQ] = ACTIONS(3321), + [anon_sym_LT_LT_EQ] = ACTIONS(3321), + [anon_sym_GT_GT_EQ] = ACTIONS(3319), + [anon_sym_AMP_EQ] = ACTIONS(3321), + [anon_sym_CARET_EQ] = ACTIONS(3321), + [anon_sym_PIPE_EQ] = ACTIONS(3321), + [anon_sym_and_eq] = ACTIONS(3319), + [anon_sym_or_eq] = ACTIONS(3319), + [anon_sym_xor_eq] = ACTIONS(3319), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_LT_EQ_GT] = ACTIONS(3321), + [anon_sym_or] = ACTIONS(3319), + [anon_sym_and] = ACTIONS(3319), + [anon_sym_bitor] = ACTIONS(3319), + [anon_sym_xor] = ACTIONS(3319), + [anon_sym_bitand] = ACTIONS(3319), + [anon_sym_not_eq] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [anon_sym_DOT] = ACTIONS(3319), + [anon_sym_DOT_STAR] = ACTIONS(3321), + [anon_sym_DASH_GT] = ACTIONS(3321), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(3321), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(856)] = { + [sym_identifier] = ACTIONS(3268), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3270), + [anon_sym_COMMA] = ACTIONS(3270), + [anon_sym_RPAREN] = ACTIONS(3270), + [anon_sym_LPAREN2] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_PIPE_PIPE] = ACTIONS(3270), + [anon_sym_AMP_AMP] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3268), + [anon_sym_CARET] = ACTIONS(3268), + [anon_sym_AMP] = ACTIONS(3268), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_GT_EQ] = ACTIONS(3270), + [anon_sym_LT_EQ] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_LT_LT] = ACTIONS(3268), + [anon_sym_GT_GT] = ACTIONS(3268), + [anon_sym___extension__] = ACTIONS(3268), + [anon_sym_virtual] = ACTIONS(3268), + [anon_sym_extern] = ACTIONS(3268), + [anon_sym___attribute__] = ACTIONS(3268), + [anon_sym___attribute] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3270), + [anon_sym___declspec] = ACTIONS(3268), + [anon_sym___based] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_register] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym___inline] = ACTIONS(3268), + [anon_sym___inline__] = ACTIONS(3268), + [anon_sym___forceinline] = ACTIONS(3268), + [anon_sym_thread_local] = ACTIONS(3268), + [anon_sym___thread] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_constexpr] = ACTIONS(3268), + [anon_sym_volatile] = ACTIONS(3268), + [anon_sym_restrict] = ACTIONS(3268), + [anon_sym___restrict__] = ACTIONS(3268), + [anon_sym__Atomic] = ACTIONS(3268), + [anon_sym__Noreturn] = ACTIONS(3268), + [anon_sym_noreturn] = ACTIONS(3268), + [anon_sym__Nonnull] = ACTIONS(3268), + [anon_sym_mutable] = ACTIONS(3268), + [anon_sym_constinit] = ACTIONS(3268), + [anon_sym_consteval] = ACTIONS(3268), + [anon_sym_alignas] = ACTIONS(3268), + [anon_sym__Alignas] = ACTIONS(3268), + [anon_sym_QMARK] = ACTIONS(3270), + [anon_sym_STAR_EQ] = ACTIONS(3270), + [anon_sym_SLASH_EQ] = ACTIONS(3270), + [anon_sym_PERCENT_EQ] = ACTIONS(3270), + [anon_sym_PLUS_EQ] = ACTIONS(3270), + [anon_sym_DASH_EQ] = ACTIONS(3270), + [anon_sym_LT_LT_EQ] = ACTIONS(3270), + [anon_sym_GT_GT_EQ] = ACTIONS(3270), + [anon_sym_AMP_EQ] = ACTIONS(3270), + [anon_sym_CARET_EQ] = ACTIONS(3270), + [anon_sym_PIPE_EQ] = ACTIONS(3270), + [anon_sym_and_eq] = ACTIONS(3268), + [anon_sym_or_eq] = ACTIONS(3268), + [anon_sym_xor_eq] = ACTIONS(3268), + [anon_sym_LT_EQ_GT] = ACTIONS(3270), + [anon_sym_or] = ACTIONS(3268), + [anon_sym_and] = ACTIONS(3268), + [anon_sym_bitor] = ACTIONS(3268), + [anon_sym_xor] = ACTIONS(3268), + [anon_sym_bitand] = ACTIONS(3268), + [anon_sym_not_eq] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_DOT_STAR] = ACTIONS(3270), + [anon_sym_DASH_GT] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3268), + [anon_sym_decltype] = ACTIONS(3268), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_DASH_GT_STAR] = ACTIONS(3270), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3268), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3268), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3268), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3268), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3268), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3268), + [anon_sym_MOZ_COLD] = ACTIONS(3268), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3268), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3268), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3268), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3268), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3268), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3268), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3268), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3268), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3268), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3268), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3268), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3268), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3268), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3268), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3268), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3268), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3268), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3268), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_NONNULL] = ACTIONS(3268), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3268), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3268), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3268), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3268), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3268), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_NORETURN] = ACTIONS(3268), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3268), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3268), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3268), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3268), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3268), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3268), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3268), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3268), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3268), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3268), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3268), + [anon_sym_MOZ_RAII] = ACTIONS(3268), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3268), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3268), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3268), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3268), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3268), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3268), + }, + [STATE(857)] = { + [sym_identifier] = ACTIONS(3264), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_CARET] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3264), + [anon_sym_EQ_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3266), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_LT_LT] = ACTIONS(3264), + [anon_sym_GT_GT] = ACTIONS(3264), + [anon_sym___extension__] = ACTIONS(3264), + [anon_sym_virtual] = ACTIONS(3264), + [anon_sym_extern] = ACTIONS(3264), + [anon_sym___attribute__] = ACTIONS(3264), + [anon_sym___attribute] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3266), + [anon_sym___declspec] = ACTIONS(3264), + [anon_sym___based] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_static] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_register] = ACTIONS(3264), + [anon_sym_inline] = ACTIONS(3264), + [anon_sym___inline] = ACTIONS(3264), + [anon_sym___inline__] = ACTIONS(3264), + [anon_sym___forceinline] = ACTIONS(3264), + [anon_sym_thread_local] = ACTIONS(3264), + [anon_sym___thread] = ACTIONS(3264), + [anon_sym_const] = ACTIONS(3264), + [anon_sym_constexpr] = ACTIONS(3264), + [anon_sym_volatile] = ACTIONS(3264), + [anon_sym_restrict] = ACTIONS(3264), + [anon_sym___restrict__] = ACTIONS(3264), + [anon_sym__Atomic] = ACTIONS(3264), + [anon_sym__Noreturn] = ACTIONS(3264), + [anon_sym_noreturn] = ACTIONS(3264), + [anon_sym__Nonnull] = ACTIONS(3264), + [anon_sym_mutable] = ACTIONS(3264), + [anon_sym_constinit] = ACTIONS(3264), + [anon_sym_consteval] = ACTIONS(3264), + [anon_sym_alignas] = ACTIONS(3264), + [anon_sym__Alignas] = ACTIONS(3264), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_LT_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_GT_EQ] = ACTIONS(3266), + [anon_sym_AMP_EQ] = ACTIONS(3266), + [anon_sym_CARET_EQ] = ACTIONS(3266), + [anon_sym_PIPE_EQ] = ACTIONS(3266), + [anon_sym_and_eq] = ACTIONS(3264), + [anon_sym_or_eq] = ACTIONS(3264), + [anon_sym_xor_eq] = ACTIONS(3264), + [anon_sym_LT_EQ_GT] = ACTIONS(3266), + [anon_sym_or] = ACTIONS(3264), + [anon_sym_and] = ACTIONS(3264), + [anon_sym_bitor] = ACTIONS(3264), + [anon_sym_xor] = ACTIONS(3264), + [anon_sym_bitand] = ACTIONS(3264), + [anon_sym_not_eq] = ACTIONS(3264), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_DOT_STAR] = ACTIONS(3266), + [anon_sym_DASH_GT] = ACTIONS(3264), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3264), + [anon_sym_template] = ACTIONS(3264), + [anon_sym_operator] = ACTIONS(3264), + [anon_sym_DASH_GT_STAR] = ACTIONS(3266), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3264), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3264), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3264), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3264), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3264), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3264), + [anon_sym_MOZ_COLD] = ACTIONS(3264), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3264), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3264), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3264), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3264), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3264), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3264), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3264), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3264), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3264), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3264), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3264), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3264), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3264), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3264), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3264), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3264), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3264), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3264), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_NONNULL] = ACTIONS(3264), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3264), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3264), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3264), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3264), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3264), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_NORETURN] = ACTIONS(3264), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3264), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3264), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3264), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3264), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3264), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3264), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3264), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3264), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3264), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3264), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3264), + [anon_sym_MOZ_RAII] = ACTIONS(3264), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3264), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3264), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3264), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3264), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3264), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3264), + }, + [STATE(858)] = { + [sym_identifier] = ACTIONS(3256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3258), + [anon_sym_COMMA] = ACTIONS(3258), + [anon_sym_RPAREN] = ACTIONS(3258), + [anon_sym_LPAREN2] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3256), + [anon_sym_SLASH] = ACTIONS(3256), + [anon_sym_PERCENT] = ACTIONS(3256), + [anon_sym_PIPE_PIPE] = ACTIONS(3258), + [anon_sym_AMP_AMP] = ACTIONS(3258), + [anon_sym_PIPE] = ACTIONS(3256), + [anon_sym_CARET] = ACTIONS(3256), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym_EQ_EQ] = ACTIONS(3258), + [anon_sym_BANG_EQ] = ACTIONS(3258), + [anon_sym_GT] = ACTIONS(3256), + [anon_sym_GT_EQ] = ACTIONS(3258), + [anon_sym_LT_EQ] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3256), + [anon_sym_LT_LT] = ACTIONS(3256), + [anon_sym_GT_GT] = ACTIONS(3256), + [anon_sym___extension__] = ACTIONS(3256), + [anon_sym_virtual] = ACTIONS(3256), + [anon_sym_extern] = ACTIONS(3256), + [anon_sym___attribute__] = ACTIONS(3256), + [anon_sym___attribute] = ACTIONS(3256), + [anon_sym_COLON_COLON] = ACTIONS(3258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3258), + [anon_sym___declspec] = ACTIONS(3256), + [anon_sym___based] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_static] = ACTIONS(3256), + [anon_sym_EQ] = ACTIONS(3256), + [anon_sym_register] = ACTIONS(3256), + [anon_sym_inline] = ACTIONS(3256), + [anon_sym___inline] = ACTIONS(3256), + [anon_sym___inline__] = ACTIONS(3256), + [anon_sym___forceinline] = ACTIONS(3256), + [anon_sym_thread_local] = ACTIONS(3256), + [anon_sym___thread] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_constexpr] = ACTIONS(3256), + [anon_sym_volatile] = ACTIONS(3256), + [anon_sym_restrict] = ACTIONS(3256), + [anon_sym___restrict__] = ACTIONS(3256), + [anon_sym__Atomic] = ACTIONS(3256), + [anon_sym__Noreturn] = ACTIONS(3256), + [anon_sym_noreturn] = ACTIONS(3256), + [anon_sym__Nonnull] = ACTIONS(3256), + [anon_sym_mutable] = ACTIONS(3256), + [anon_sym_constinit] = ACTIONS(3256), + [anon_sym_consteval] = ACTIONS(3256), + [anon_sym_alignas] = ACTIONS(3256), + [anon_sym__Alignas] = ACTIONS(3256), + [anon_sym_QMARK] = ACTIONS(3258), + [anon_sym_STAR_EQ] = ACTIONS(3258), + [anon_sym_SLASH_EQ] = ACTIONS(3258), + [anon_sym_PERCENT_EQ] = ACTIONS(3258), + [anon_sym_PLUS_EQ] = ACTIONS(3258), + [anon_sym_DASH_EQ] = ACTIONS(3258), + [anon_sym_LT_LT_EQ] = ACTIONS(3258), + [anon_sym_GT_GT_EQ] = ACTIONS(3258), + [anon_sym_AMP_EQ] = ACTIONS(3258), + [anon_sym_CARET_EQ] = ACTIONS(3258), + [anon_sym_PIPE_EQ] = ACTIONS(3258), + [anon_sym_and_eq] = ACTIONS(3256), + [anon_sym_or_eq] = ACTIONS(3256), + [anon_sym_xor_eq] = ACTIONS(3256), + [anon_sym_LT_EQ_GT] = ACTIONS(3258), + [anon_sym_or] = ACTIONS(3256), + [anon_sym_and] = ACTIONS(3256), + [anon_sym_bitor] = ACTIONS(3256), + [anon_sym_xor] = ACTIONS(3256), + [anon_sym_bitand] = ACTIONS(3256), + [anon_sym_not_eq] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DOT] = ACTIONS(3256), + [anon_sym_DOT_STAR] = ACTIONS(3258), + [anon_sym_DASH_GT] = ACTIONS(3256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3256), + [anon_sym_decltype] = ACTIONS(3256), + [anon_sym_template] = ACTIONS(3256), + [anon_sym_operator] = ACTIONS(3256), + [anon_sym_DASH_GT_STAR] = ACTIONS(3258), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3256), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3256), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3256), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3256), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3256), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3256), + [anon_sym_MOZ_COLD] = ACTIONS(3256), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3256), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3256), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3256), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3256), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3256), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3256), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3256), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3256), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3256), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3256), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3256), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3256), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3256), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3256), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3256), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3256), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3256), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3256), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_NONNULL] = ACTIONS(3256), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3256), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3256), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3256), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3256), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3256), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_NORETURN] = ACTIONS(3256), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3256), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3256), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3256), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3256), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3256), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3256), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3256), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3256), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3256), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3256), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3256), + [anon_sym_MOZ_RAII] = ACTIONS(3256), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3256), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3256), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3256), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3256), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3256), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3256), + }, + [STATE(859)] = { + [sym_identifier] = ACTIONS(3260), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_STAR] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3260), + [anon_sym_PERCENT] = ACTIONS(3260), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE] = ACTIONS(3260), + [anon_sym_CARET] = ACTIONS(3260), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3260), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_LT_LT] = ACTIONS(3260), + [anon_sym_GT_GT] = ACTIONS(3260), + [anon_sym___extension__] = ACTIONS(3260), + [anon_sym_virtual] = ACTIONS(3260), + [anon_sym_extern] = ACTIONS(3260), + [anon_sym___attribute__] = ACTIONS(3260), + [anon_sym___attribute] = ACTIONS(3260), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3262), + [anon_sym___declspec] = ACTIONS(3260), + [anon_sym___based] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_static] = ACTIONS(3260), + [anon_sym_EQ] = ACTIONS(3260), + [anon_sym_register] = ACTIONS(3260), + [anon_sym_inline] = ACTIONS(3260), + [anon_sym___inline] = ACTIONS(3260), + [anon_sym___inline__] = ACTIONS(3260), + [anon_sym___forceinline] = ACTIONS(3260), + [anon_sym_thread_local] = ACTIONS(3260), + [anon_sym___thread] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_constexpr] = ACTIONS(3260), + [anon_sym_volatile] = ACTIONS(3260), + [anon_sym_restrict] = ACTIONS(3260), + [anon_sym___restrict__] = ACTIONS(3260), + [anon_sym__Atomic] = ACTIONS(3260), + [anon_sym__Noreturn] = ACTIONS(3260), + [anon_sym_noreturn] = ACTIONS(3260), + [anon_sym__Nonnull] = ACTIONS(3260), + [anon_sym_mutable] = ACTIONS(3260), + [anon_sym_constinit] = ACTIONS(3260), + [anon_sym_consteval] = ACTIONS(3260), + [anon_sym_alignas] = ACTIONS(3260), + [anon_sym__Alignas] = ACTIONS(3260), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_STAR_EQ] = ACTIONS(3262), + [anon_sym_SLASH_EQ] = ACTIONS(3262), + [anon_sym_PERCENT_EQ] = ACTIONS(3262), + [anon_sym_PLUS_EQ] = ACTIONS(3262), + [anon_sym_DASH_EQ] = ACTIONS(3262), + [anon_sym_LT_LT_EQ] = ACTIONS(3262), + [anon_sym_GT_GT_EQ] = ACTIONS(3262), + [anon_sym_AMP_EQ] = ACTIONS(3262), + [anon_sym_CARET_EQ] = ACTIONS(3262), + [anon_sym_PIPE_EQ] = ACTIONS(3262), + [anon_sym_and_eq] = ACTIONS(3260), + [anon_sym_or_eq] = ACTIONS(3260), + [anon_sym_xor_eq] = ACTIONS(3260), + [anon_sym_LT_EQ_GT] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3260), + [anon_sym_and] = ACTIONS(3260), + [anon_sym_bitor] = ACTIONS(3260), + [anon_sym_xor] = ACTIONS(3260), + [anon_sym_bitand] = ACTIONS(3260), + [anon_sym_not_eq] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3260), + [anon_sym_DOT_STAR] = ACTIONS(3262), + [anon_sym_DASH_GT] = ACTIONS(3260), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3260), + [anon_sym_decltype] = ACTIONS(3260), + [anon_sym_template] = ACTIONS(3260), + [anon_sym_operator] = ACTIONS(3260), + [anon_sym_DASH_GT_STAR] = ACTIONS(3262), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3260), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3260), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3260), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3260), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3260), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3260), + [anon_sym_MOZ_COLD] = ACTIONS(3260), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3260), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3260), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3260), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3260), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3260), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3260), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3260), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3260), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3260), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3260), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3260), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3260), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3260), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3260), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3260), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3260), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3260), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3260), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_NONNULL] = ACTIONS(3260), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3260), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3260), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3260), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3260), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3260), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_NORETURN] = ACTIONS(3260), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3260), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3260), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3260), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3260), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3260), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3260), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3260), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3260), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3260), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3260), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3260), + [anon_sym_MOZ_RAII] = ACTIONS(3260), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3260), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3260), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3260), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3260), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3260), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3260), + }, + [STATE(860)] = { + [sym_identifier] = ACTIONS(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3250), + [anon_sym_COMMA] = ACTIONS(3250), + [anon_sym_RPAREN] = ACTIONS(3250), + [anon_sym_LPAREN2] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_PIPE_PIPE] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3248), + [anon_sym_CARET] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3250), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_LT_LT] = ACTIONS(3250), + [anon_sym_GT_GT] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym___extension__] = ACTIONS(3248), + [anon_sym_virtual] = ACTIONS(3248), + [anon_sym_extern] = ACTIONS(3248), + [anon_sym___attribute__] = ACTIONS(3248), + [anon_sym___attribute] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(3250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3250), + [anon_sym___declspec] = ACTIONS(3248), + [anon_sym___based] = ACTIONS(3248), + [anon_sym___cdecl] = ACTIONS(3248), + [anon_sym___clrcall] = ACTIONS(3248), + [anon_sym___stdcall] = ACTIONS(3248), + [anon_sym___fastcall] = ACTIONS(3248), + [anon_sym___thiscall] = ACTIONS(3248), + [anon_sym___vectorcall] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3248), + [anon_sym_register] = ACTIONS(3248), + [anon_sym_inline] = ACTIONS(3248), + [anon_sym___inline] = ACTIONS(3248), + [anon_sym___inline__] = ACTIONS(3248), + [anon_sym___forceinline] = ACTIONS(3248), + [anon_sym_thread_local] = ACTIONS(3248), + [anon_sym___thread] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_constexpr] = ACTIONS(3248), + [anon_sym_volatile] = ACTIONS(3248), + [anon_sym_restrict] = ACTIONS(3248), + [anon_sym___restrict__] = ACTIONS(3248), + [anon_sym__Atomic] = ACTIONS(3248), + [anon_sym__Noreturn] = ACTIONS(3248), + [anon_sym_noreturn] = ACTIONS(3248), + [anon_sym__Nonnull] = ACTIONS(3248), + [anon_sym_mutable] = ACTIONS(3248), + [anon_sym_constinit] = ACTIONS(3248), + [anon_sym_consteval] = ACTIONS(3248), + [anon_sym_alignas] = ACTIONS(3248), + [anon_sym__Alignas] = ACTIONS(3248), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_QMARK] = ACTIONS(3250), + [anon_sym_LT_EQ_GT] = ACTIONS(3250), + [anon_sym_or] = ACTIONS(3248), + [anon_sym_and] = ACTIONS(3248), + [anon_sym_bitor] = ACTIONS(3248), + [anon_sym_xor] = ACTIONS(3248), + [anon_sym_bitand] = ACTIONS(3248), + [anon_sym_not_eq] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DOT] = ACTIONS(3248), + [anon_sym_DOT_STAR] = ACTIONS(3250), + [anon_sym_DASH_GT] = ACTIONS(3250), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3248), + [anon_sym_decltype] = ACTIONS(3248), + [anon_sym_final] = ACTIONS(3248), + [anon_sym_override] = ACTIONS(3248), + [anon_sym_template] = ACTIONS(3248), + [anon_sym_operator] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_requires] = ACTIONS(3248), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3248), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3248), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3248), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3248), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3248), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3248), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3248), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3248), + [anon_sym_MOZ_COLD] = ACTIONS(3248), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3248), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3248), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3248), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3248), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3248), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3248), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3248), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3248), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3248), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3248), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3248), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3248), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3248), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3248), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3248), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3248), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3248), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3248), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3248), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3248), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_NONNULL] = ACTIONS(3248), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3248), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3248), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3248), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3248), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3248), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_NORETURN] = ACTIONS(3248), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3248), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3248), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3248), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3248), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3248), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3248), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3248), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3248), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3248), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3248), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3248), + [anon_sym_MOZ_RAII] = ACTIONS(3248), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3248), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3248), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3248), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3248), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3248), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3248), + }, + [STATE(861)] = { + [sym_identifier] = ACTIONS(3244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3246), + [anon_sym_COMMA] = ACTIONS(3246), + [anon_sym_RPAREN] = ACTIONS(3246), + [anon_sym_LPAREN2] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3246), + [anon_sym_PIPE_PIPE] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3244), + [anon_sym_CARET] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3244), + [anon_sym_EQ_EQ] = ACTIONS(3246), + [anon_sym_BANG_EQ] = ACTIONS(3246), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_GT_EQ] = ACTIONS(3246), + [anon_sym_LT_EQ] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_LT_LT] = ACTIONS(3246), + [anon_sym_GT_GT] = ACTIONS(3246), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym___extension__] = ACTIONS(3244), + [anon_sym_virtual] = ACTIONS(3244), + [anon_sym_extern] = ACTIONS(3244), + [anon_sym___attribute__] = ACTIONS(3244), + [anon_sym___attribute] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3246), + [anon_sym___declspec] = ACTIONS(3244), + [anon_sym___based] = ACTIONS(3244), + [anon_sym___cdecl] = ACTIONS(3244), + [anon_sym___clrcall] = ACTIONS(3244), + [anon_sym___stdcall] = ACTIONS(3244), + [anon_sym___fastcall] = ACTIONS(3244), + [anon_sym___thiscall] = ACTIONS(3244), + [anon_sym___vectorcall] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_RBRACK] = ACTIONS(3246), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_register] = ACTIONS(3244), + [anon_sym_inline] = ACTIONS(3244), + [anon_sym___inline] = ACTIONS(3244), + [anon_sym___inline__] = ACTIONS(3244), + [anon_sym___forceinline] = ACTIONS(3244), + [anon_sym_thread_local] = ACTIONS(3244), + [anon_sym___thread] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_constexpr] = ACTIONS(3244), + [anon_sym_volatile] = ACTIONS(3244), + [anon_sym_restrict] = ACTIONS(3244), + [anon_sym___restrict__] = ACTIONS(3244), + [anon_sym__Atomic] = ACTIONS(3244), + [anon_sym__Noreturn] = ACTIONS(3244), + [anon_sym_noreturn] = ACTIONS(3244), + [anon_sym__Nonnull] = ACTIONS(3244), + [anon_sym_mutable] = ACTIONS(3244), + [anon_sym_constinit] = ACTIONS(3244), + [anon_sym_consteval] = ACTIONS(3244), + [anon_sym_alignas] = ACTIONS(3244), + [anon_sym__Alignas] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_LT_EQ_GT] = ACTIONS(3246), + [anon_sym_or] = ACTIONS(3244), + [anon_sym_and] = ACTIONS(3244), + [anon_sym_bitor] = ACTIONS(3244), + [anon_sym_xor] = ACTIONS(3244), + [anon_sym_bitand] = ACTIONS(3244), + [anon_sym_not_eq] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_DOT_STAR] = ACTIONS(3246), + [anon_sym_DASH_GT] = ACTIONS(3246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3244), + [anon_sym_decltype] = ACTIONS(3244), + [anon_sym_final] = ACTIONS(3244), + [anon_sym_override] = ACTIONS(3244), + [anon_sym_template] = ACTIONS(3244), + [anon_sym_operator] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_requires] = ACTIONS(3244), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3244), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3244), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3244), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3244), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3244), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3244), + [anon_sym_MOZ_COLD] = ACTIONS(3244), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3244), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3244), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3244), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3244), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3244), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3244), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3244), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3244), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3244), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3244), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3244), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3244), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3244), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3244), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3244), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3244), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3244), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3244), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_NONNULL] = ACTIONS(3244), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3244), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3244), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3244), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3244), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3244), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_NORETURN] = ACTIONS(3244), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3244), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3244), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3244), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3244), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3244), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3244), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3244), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3244), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3244), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3244), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3244), + [anon_sym_MOZ_RAII] = ACTIONS(3244), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3244), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3244), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3244), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3244), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3244), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3244), + }, + [STATE(862)] = { + [sym_identifier] = ACTIONS(3256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3258), + [anon_sym_COMMA] = ACTIONS(3258), + [anon_sym_RPAREN] = ACTIONS(3258), + [anon_sym_LPAREN2] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3258), + [anon_sym_SLASH] = ACTIONS(3256), + [anon_sym_PERCENT] = ACTIONS(3258), + [anon_sym_PIPE_PIPE] = ACTIONS(3258), + [anon_sym_AMP_AMP] = ACTIONS(3258), + [anon_sym_PIPE] = ACTIONS(3256), + [anon_sym_CARET] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym_EQ_EQ] = ACTIONS(3258), + [anon_sym_BANG_EQ] = ACTIONS(3258), + [anon_sym_GT] = ACTIONS(3256), + [anon_sym_GT_EQ] = ACTIONS(3258), + [anon_sym_LT_EQ] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3256), + [anon_sym_LT_LT] = ACTIONS(3258), + [anon_sym_GT_GT] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym___extension__] = ACTIONS(3256), + [anon_sym_virtual] = ACTIONS(3256), + [anon_sym_extern] = ACTIONS(3256), + [anon_sym___attribute__] = ACTIONS(3256), + [anon_sym___attribute] = ACTIONS(3256), + [anon_sym_COLON_COLON] = ACTIONS(3258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3258), + [anon_sym___declspec] = ACTIONS(3256), + [anon_sym___based] = ACTIONS(3256), + [anon_sym___cdecl] = ACTIONS(3256), + [anon_sym___clrcall] = ACTIONS(3256), + [anon_sym___stdcall] = ACTIONS(3256), + [anon_sym___fastcall] = ACTIONS(3256), + [anon_sym___thiscall] = ACTIONS(3256), + [anon_sym___vectorcall] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_static] = ACTIONS(3256), + [anon_sym_RBRACK] = ACTIONS(3258), + [anon_sym_EQ] = ACTIONS(3256), + [anon_sym_register] = ACTIONS(3256), + [anon_sym_inline] = ACTIONS(3256), + [anon_sym___inline] = ACTIONS(3256), + [anon_sym___inline__] = ACTIONS(3256), + [anon_sym___forceinline] = ACTIONS(3256), + [anon_sym_thread_local] = ACTIONS(3256), + [anon_sym___thread] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_constexpr] = ACTIONS(3256), + [anon_sym_volatile] = ACTIONS(3256), + [anon_sym_restrict] = ACTIONS(3256), + [anon_sym___restrict__] = ACTIONS(3256), + [anon_sym__Atomic] = ACTIONS(3256), + [anon_sym__Noreturn] = ACTIONS(3256), + [anon_sym_noreturn] = ACTIONS(3256), + [anon_sym__Nonnull] = ACTIONS(3256), + [anon_sym_mutable] = ACTIONS(3256), + [anon_sym_constinit] = ACTIONS(3256), + [anon_sym_consteval] = ACTIONS(3256), + [anon_sym_alignas] = ACTIONS(3256), + [anon_sym__Alignas] = ACTIONS(3256), + [anon_sym_COLON] = ACTIONS(3256), + [anon_sym_QMARK] = ACTIONS(3258), + [anon_sym_LT_EQ_GT] = ACTIONS(3258), + [anon_sym_or] = ACTIONS(3256), + [anon_sym_and] = ACTIONS(3256), + [anon_sym_bitor] = ACTIONS(3256), + [anon_sym_xor] = ACTIONS(3256), + [anon_sym_bitand] = ACTIONS(3256), + [anon_sym_not_eq] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DOT] = ACTIONS(3256), + [anon_sym_DOT_STAR] = ACTIONS(3258), + [anon_sym_DASH_GT] = ACTIONS(3258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3256), + [anon_sym_decltype] = ACTIONS(3256), + [anon_sym_final] = ACTIONS(3256), + [anon_sym_override] = ACTIONS(3256), + [anon_sym_template] = ACTIONS(3256), + [anon_sym_operator] = ACTIONS(3256), + [anon_sym_try] = ACTIONS(3256), + [anon_sym_requires] = ACTIONS(3256), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3256), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3256), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3256), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3256), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3256), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3256), + [anon_sym_MOZ_COLD] = ACTIONS(3256), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3256), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3256), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3256), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3256), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3256), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3256), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3256), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3256), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3256), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3256), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3256), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3256), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3256), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3256), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3256), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3256), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3256), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3256), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_NONNULL] = ACTIONS(3256), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3256), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3256), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3256), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3256), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3256), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_NORETURN] = ACTIONS(3256), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3256), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3256), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3256), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3256), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3256), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3256), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3256), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3256), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3256), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3256), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3256), + [anon_sym_MOZ_RAII] = ACTIONS(3256), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3256), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3256), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3256), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3256), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3256), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3256), + }, + [STATE(863)] = { + [sym_identifier] = ACTIONS(3252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LPAREN2] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3252), + [anon_sym_CARET] = ACTIONS(3254), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3254), + [anon_sym_GT] = ACTIONS(3252), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_LT_LT] = ACTIONS(3254), + [anon_sym_GT_GT] = ACTIONS(3254), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym___extension__] = ACTIONS(3252), + [anon_sym_virtual] = ACTIONS(3252), + [anon_sym_extern] = ACTIONS(3252), + [anon_sym___attribute__] = ACTIONS(3252), + [anon_sym___attribute] = ACTIONS(3252), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3254), + [anon_sym___declspec] = ACTIONS(3252), + [anon_sym___based] = ACTIONS(3252), + [anon_sym___cdecl] = ACTIONS(3252), + [anon_sym___clrcall] = ACTIONS(3252), + [anon_sym___stdcall] = ACTIONS(3252), + [anon_sym___fastcall] = ACTIONS(3252), + [anon_sym___thiscall] = ACTIONS(3252), + [anon_sym___vectorcall] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_RBRACK] = ACTIONS(3254), + [anon_sym_EQ] = ACTIONS(3252), + [anon_sym_register] = ACTIONS(3252), + [anon_sym_inline] = ACTIONS(3252), + [anon_sym___inline] = ACTIONS(3252), + [anon_sym___inline__] = ACTIONS(3252), + [anon_sym___forceinline] = ACTIONS(3252), + [anon_sym_thread_local] = ACTIONS(3252), + [anon_sym___thread] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_constexpr] = ACTIONS(3252), + [anon_sym_volatile] = ACTIONS(3252), + [anon_sym_restrict] = ACTIONS(3252), + [anon_sym___restrict__] = ACTIONS(3252), + [anon_sym__Atomic] = ACTIONS(3252), + [anon_sym__Noreturn] = ACTIONS(3252), + [anon_sym_noreturn] = ACTIONS(3252), + [anon_sym__Nonnull] = ACTIONS(3252), + [anon_sym_mutable] = ACTIONS(3252), + [anon_sym_constinit] = ACTIONS(3252), + [anon_sym_consteval] = ACTIONS(3252), + [anon_sym_alignas] = ACTIONS(3252), + [anon_sym__Alignas] = ACTIONS(3252), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_LT_EQ_GT] = ACTIONS(3254), + [anon_sym_or] = ACTIONS(3252), + [anon_sym_and] = ACTIONS(3252), + [anon_sym_bitor] = ACTIONS(3252), + [anon_sym_xor] = ACTIONS(3252), + [anon_sym_bitand] = ACTIONS(3252), + [anon_sym_not_eq] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3252), + [anon_sym_DOT_STAR] = ACTIONS(3254), + [anon_sym_DASH_GT] = ACTIONS(3254), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3252), + [anon_sym_decltype] = ACTIONS(3252), + [anon_sym_final] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_template] = ACTIONS(3252), + [anon_sym_operator] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3252), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3252), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3252), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3252), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3252), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3252), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3252), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3252), + [anon_sym_MOZ_COLD] = ACTIONS(3252), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3252), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3252), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3252), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3252), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3252), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3252), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3252), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3252), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3252), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3252), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3252), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3252), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3252), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3252), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3252), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3252), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3252), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3252), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3252), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3252), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_NONNULL] = ACTIONS(3252), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3252), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3252), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3252), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3252), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3252), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_NORETURN] = ACTIONS(3252), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3252), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3252), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3252), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3252), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3252), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3252), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3252), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3252), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3252), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3252), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3252), + [anon_sym_MOZ_RAII] = ACTIONS(3252), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3252), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3252), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3252), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3252), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3252), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3252), + }, + [STATE(864)] = { + [sym_template_argument_list] = STATE(872), + [sym_identifier] = ACTIONS(3272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3283), + [anon_sym_EQ_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3281), + [anon_sym___extension__] = ACTIONS(3272), + [anon_sym_virtual] = ACTIONS(3272), + [anon_sym_extern] = ACTIONS(3272), + [anon_sym___attribute__] = ACTIONS(3272), + [anon_sym___attribute] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3279), + [anon_sym___declspec] = ACTIONS(3272), + [anon_sym___based] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_register] = ACTIONS(3272), + [anon_sym_inline] = ACTIONS(3272), + [anon_sym___inline] = ACTIONS(3272), + [anon_sym___inline__] = ACTIONS(3272), + [anon_sym___forceinline] = ACTIONS(3272), + [anon_sym_thread_local] = ACTIONS(3272), + [anon_sym___thread] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_constexpr] = ACTIONS(3272), + [anon_sym_volatile] = ACTIONS(3272), + [anon_sym_restrict] = ACTIONS(3272), + [anon_sym___restrict__] = ACTIONS(3272), + [anon_sym__Atomic] = ACTIONS(3272), + [anon_sym__Noreturn] = ACTIONS(3272), + [anon_sym_noreturn] = ACTIONS(3272), + [anon_sym__Nonnull] = ACTIONS(3272), + [anon_sym_mutable] = ACTIONS(3272), + [anon_sym_constinit] = ACTIONS(3272), + [anon_sym_consteval] = ACTIONS(3272), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_LT_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_GT_EQ] = ACTIONS(3274), + [anon_sym_AMP_EQ] = ACTIONS(3274), + [anon_sym_CARET_EQ] = ACTIONS(3274), + [anon_sym_PIPE_EQ] = ACTIONS(3274), + [anon_sym_and_eq] = ACTIONS(3281), + [anon_sym_or_eq] = ACTIONS(3281), + [anon_sym_xor_eq] = ACTIONS(3281), + [anon_sym_LT_EQ_GT] = ACTIONS(3274), + [anon_sym_or] = ACTIONS(3281), + [anon_sym_and] = ACTIONS(3281), + [anon_sym_bitor] = ACTIONS(3281), + [anon_sym_xor] = ACTIONS(3281), + [anon_sym_bitand] = ACTIONS(3281), + [anon_sym_not_eq] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_DOT_STAR] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3272), + [anon_sym_decltype] = ACTIONS(3272), + [anon_sym_template] = ACTIONS(3272), + [anon_sym_operator] = ACTIONS(3272), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3272), + [anon_sym_MOZ_COLD] = ACTIONS(3272), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3272), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3272), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3272), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3272), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3272), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3272), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3272), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3272), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3272), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3272), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3272), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3272), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_RAII] = ACTIONS(3272), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3272), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3272), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3272), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3272), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3272), + }, + [STATE(865)] = { + [sym_identifier] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3293), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_RPAREN] = ACTIONS(3293), + [anon_sym_LPAREN2] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3291), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_CARET] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_EQ_EQ] = ACTIONS(3291), + [anon_sym_BANG_EQ] = ACTIONS(3291), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3291), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_LT_LT] = ACTIONS(3298), + [anon_sym_GT_GT] = ACTIONS(3298), + [anon_sym___extension__] = ACTIONS(3289), + [anon_sym_virtual] = ACTIONS(3289), + [anon_sym_extern] = ACTIONS(3289), + [anon_sym___attribute__] = ACTIONS(3289), + [anon_sym___attribute] = ACTIONS(3289), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3289), + [anon_sym___based] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_EQ] = ACTIONS(3300), + [anon_sym_register] = ACTIONS(3289), + [anon_sym_inline] = ACTIONS(3289), + [anon_sym___inline] = ACTIONS(3289), + [anon_sym___inline__] = ACTIONS(3289), + [anon_sym___forceinline] = ACTIONS(3289), + [anon_sym_thread_local] = ACTIONS(3289), + [anon_sym___thread] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_constexpr] = ACTIONS(3289), + [anon_sym_volatile] = ACTIONS(3289), + [anon_sym_restrict] = ACTIONS(3289), + [anon_sym___restrict__] = ACTIONS(3289), + [anon_sym__Atomic] = ACTIONS(3289), + [anon_sym__Noreturn] = ACTIONS(3289), + [anon_sym_noreturn] = ACTIONS(3289), + [anon_sym__Nonnull] = ACTIONS(3289), + [anon_sym_mutable] = ACTIONS(3289), + [anon_sym_constinit] = ACTIONS(3289), + [anon_sym_consteval] = ACTIONS(3289), + [anon_sym_alignas] = ACTIONS(3289), + [anon_sym__Alignas] = ACTIONS(3289), + [anon_sym_QMARK] = ACTIONS(3291), + [anon_sym_STAR_EQ] = ACTIONS(3291), + [anon_sym_SLASH_EQ] = ACTIONS(3291), + [anon_sym_PERCENT_EQ] = ACTIONS(3291), + [anon_sym_PLUS_EQ] = ACTIONS(3291), + [anon_sym_DASH_EQ] = ACTIONS(3291), + [anon_sym_LT_LT_EQ] = ACTIONS(3291), + [anon_sym_GT_GT_EQ] = ACTIONS(3291), + [anon_sym_AMP_EQ] = ACTIONS(3291), + [anon_sym_CARET_EQ] = ACTIONS(3291), + [anon_sym_PIPE_EQ] = ACTIONS(3291), + [anon_sym_and_eq] = ACTIONS(3298), + [anon_sym_or_eq] = ACTIONS(3298), + [anon_sym_xor_eq] = ACTIONS(3298), + [anon_sym_LT_EQ_GT] = ACTIONS(3291), + [anon_sym_or] = ACTIONS(3298), + [anon_sym_and] = ACTIONS(3298), + [anon_sym_bitor] = ACTIONS(3298), + [anon_sym_xor] = ACTIONS(3298), + [anon_sym_bitand] = ACTIONS(3298), + [anon_sym_not_eq] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DOT] = ACTIONS(3298), + [anon_sym_DOT_STAR] = ACTIONS(3291), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3289), + [anon_sym_decltype] = ACTIONS(3289), + [anon_sym_template] = ACTIONS(3289), + [anon_sym_operator] = ACTIONS(3289), + [anon_sym_DASH_GT_STAR] = ACTIONS(3291), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3289), + [anon_sym_MOZ_COLD] = ACTIONS(3289), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3289), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3289), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3289), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3289), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3289), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3289), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3289), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3289), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3289), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3289), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3289), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3289), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_RAII] = ACTIONS(3289), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3289), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3289), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3289), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3289), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3289), + }, + [STATE(866)] = { + [sym_identifier] = ACTIONS(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3250), + [anon_sym_COMMA] = ACTIONS(3250), + [anon_sym_RPAREN] = ACTIONS(3250), + [anon_sym_LPAREN2] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3248), + [anon_sym_CARET] = ACTIONS(3248), + [anon_sym_AMP] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3250), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_LT_LT] = ACTIONS(3248), + [anon_sym_GT_GT] = ACTIONS(3248), + [anon_sym___extension__] = ACTIONS(3248), + [anon_sym_virtual] = ACTIONS(3248), + [anon_sym_extern] = ACTIONS(3248), + [anon_sym___attribute__] = ACTIONS(3248), + [anon_sym___attribute] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(3250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3250), + [anon_sym___declspec] = ACTIONS(3248), + [anon_sym___based] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(3248), + [anon_sym_register] = ACTIONS(3248), + [anon_sym_inline] = ACTIONS(3248), + [anon_sym___inline] = ACTIONS(3248), + [anon_sym___inline__] = ACTIONS(3248), + [anon_sym___forceinline] = ACTIONS(3248), + [anon_sym_thread_local] = ACTIONS(3248), + [anon_sym___thread] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_constexpr] = ACTIONS(3248), + [anon_sym_volatile] = ACTIONS(3248), + [anon_sym_restrict] = ACTIONS(3248), + [anon_sym___restrict__] = ACTIONS(3248), + [anon_sym__Atomic] = ACTIONS(3248), + [anon_sym__Noreturn] = ACTIONS(3248), + [anon_sym_noreturn] = ACTIONS(3248), + [anon_sym__Nonnull] = ACTIONS(3248), + [anon_sym_mutable] = ACTIONS(3248), + [anon_sym_constinit] = ACTIONS(3248), + [anon_sym_consteval] = ACTIONS(3248), + [anon_sym_alignas] = ACTIONS(3248), + [anon_sym__Alignas] = ACTIONS(3248), + [anon_sym_QMARK] = ACTIONS(3250), + [anon_sym_STAR_EQ] = ACTIONS(3250), + [anon_sym_SLASH_EQ] = ACTIONS(3250), + [anon_sym_PERCENT_EQ] = ACTIONS(3250), + [anon_sym_PLUS_EQ] = ACTIONS(3250), + [anon_sym_DASH_EQ] = ACTIONS(3250), + [anon_sym_LT_LT_EQ] = ACTIONS(3250), + [anon_sym_GT_GT_EQ] = ACTIONS(3250), + [anon_sym_AMP_EQ] = ACTIONS(3250), + [anon_sym_CARET_EQ] = ACTIONS(3250), + [anon_sym_PIPE_EQ] = ACTIONS(3250), + [anon_sym_and_eq] = ACTIONS(3248), + [anon_sym_or_eq] = ACTIONS(3248), + [anon_sym_xor_eq] = ACTIONS(3248), + [anon_sym_LT_EQ_GT] = ACTIONS(3250), + [anon_sym_or] = ACTIONS(3248), + [anon_sym_and] = ACTIONS(3248), + [anon_sym_bitor] = ACTIONS(3248), + [anon_sym_xor] = ACTIONS(3248), + [anon_sym_bitand] = ACTIONS(3248), + [anon_sym_not_eq] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DOT] = ACTIONS(3248), + [anon_sym_DOT_STAR] = ACTIONS(3250), + [anon_sym_DASH_GT] = ACTIONS(3248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3248), + [anon_sym_decltype] = ACTIONS(3248), + [anon_sym_template] = ACTIONS(3248), + [anon_sym_operator] = ACTIONS(3248), + [anon_sym_DASH_GT_STAR] = ACTIONS(3250), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3248), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3248), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3248), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3248), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3248), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3248), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3248), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3248), + [anon_sym_MOZ_COLD] = ACTIONS(3248), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3248), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3248), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3248), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3248), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3248), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3248), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3248), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3248), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3248), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3248), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3248), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3248), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3248), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3248), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3248), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3248), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3248), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3248), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3248), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3248), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_NONNULL] = ACTIONS(3248), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3248), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3248), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3248), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3248), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3248), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_NORETURN] = ACTIONS(3248), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3248), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3248), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3248), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3248), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3248), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3248), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3248), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3248), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3248), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3248), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3248), + [anon_sym_MOZ_RAII] = ACTIONS(3248), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3248), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3248), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3248), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3248), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3248), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3248), + }, + [STATE(867)] = { + [sym_identifier] = ACTIONS(3252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LPAREN2] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3252), + [anon_sym_CARET] = ACTIONS(3252), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3254), + [anon_sym_GT] = ACTIONS(3252), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_LT_LT] = ACTIONS(3252), + [anon_sym_GT_GT] = ACTIONS(3252), + [anon_sym___extension__] = ACTIONS(3252), + [anon_sym_virtual] = ACTIONS(3252), + [anon_sym_extern] = ACTIONS(3252), + [anon_sym___attribute__] = ACTIONS(3252), + [anon_sym___attribute] = ACTIONS(3252), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3254), + [anon_sym___declspec] = ACTIONS(3252), + [anon_sym___based] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_EQ] = ACTIONS(3252), + [anon_sym_register] = ACTIONS(3252), + [anon_sym_inline] = ACTIONS(3252), + [anon_sym___inline] = ACTIONS(3252), + [anon_sym___inline__] = ACTIONS(3252), + [anon_sym___forceinline] = ACTIONS(3252), + [anon_sym_thread_local] = ACTIONS(3252), + [anon_sym___thread] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_constexpr] = ACTIONS(3252), + [anon_sym_volatile] = ACTIONS(3252), + [anon_sym_restrict] = ACTIONS(3252), + [anon_sym___restrict__] = ACTIONS(3252), + [anon_sym__Atomic] = ACTIONS(3252), + [anon_sym__Noreturn] = ACTIONS(3252), + [anon_sym_noreturn] = ACTIONS(3252), + [anon_sym__Nonnull] = ACTIONS(3252), + [anon_sym_mutable] = ACTIONS(3252), + [anon_sym_constinit] = ACTIONS(3252), + [anon_sym_consteval] = ACTIONS(3252), + [anon_sym_alignas] = ACTIONS(3252), + [anon_sym__Alignas] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_LT_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_GT_EQ] = ACTIONS(3254), + [anon_sym_AMP_EQ] = ACTIONS(3254), + [anon_sym_CARET_EQ] = ACTIONS(3254), + [anon_sym_PIPE_EQ] = ACTIONS(3254), + [anon_sym_and_eq] = ACTIONS(3252), + [anon_sym_or_eq] = ACTIONS(3252), + [anon_sym_xor_eq] = ACTIONS(3252), + [anon_sym_LT_EQ_GT] = ACTIONS(3254), + [anon_sym_or] = ACTIONS(3252), + [anon_sym_and] = ACTIONS(3252), + [anon_sym_bitor] = ACTIONS(3252), + [anon_sym_xor] = ACTIONS(3252), + [anon_sym_bitand] = ACTIONS(3252), + [anon_sym_not_eq] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3252), + [anon_sym_DOT_STAR] = ACTIONS(3254), + [anon_sym_DASH_GT] = ACTIONS(3252), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3252), + [anon_sym_decltype] = ACTIONS(3252), + [anon_sym_template] = ACTIONS(3252), + [anon_sym_operator] = ACTIONS(3252), + [anon_sym_DASH_GT_STAR] = ACTIONS(3254), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3252), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3252), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3252), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3252), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3252), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3252), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3252), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3252), + [anon_sym_MOZ_COLD] = ACTIONS(3252), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3252), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3252), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3252), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3252), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3252), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3252), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3252), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3252), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3252), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3252), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3252), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3252), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3252), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3252), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3252), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3252), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3252), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3252), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3252), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3252), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_NONNULL] = ACTIONS(3252), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3252), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3252), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3252), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3252), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3252), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_NORETURN] = ACTIONS(3252), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3252), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3252), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3252), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3252), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3252), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3252), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3252), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3252), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3252), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3252), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3252), + [anon_sym_MOZ_RAII] = ACTIONS(3252), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3252), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3252), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3252), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3252), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3252), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3252), + }, + [STATE(868)] = { + [sym_identifier] = ACTIONS(3264), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_CARET] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3264), + [anon_sym_EQ_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3266), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_LT_LT] = ACTIONS(3266), + [anon_sym_GT_GT] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym___extension__] = ACTIONS(3264), + [anon_sym_virtual] = ACTIONS(3264), + [anon_sym_extern] = ACTIONS(3264), + [anon_sym___attribute__] = ACTIONS(3264), + [anon_sym___attribute] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3266), + [anon_sym___declspec] = ACTIONS(3264), + [anon_sym___based] = ACTIONS(3264), + [anon_sym___cdecl] = ACTIONS(3264), + [anon_sym___clrcall] = ACTIONS(3264), + [anon_sym___stdcall] = ACTIONS(3264), + [anon_sym___fastcall] = ACTIONS(3264), + [anon_sym___thiscall] = ACTIONS(3264), + [anon_sym___vectorcall] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_static] = ACTIONS(3264), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_register] = ACTIONS(3264), + [anon_sym_inline] = ACTIONS(3264), + [anon_sym___inline] = ACTIONS(3264), + [anon_sym___inline__] = ACTIONS(3264), + [anon_sym___forceinline] = ACTIONS(3264), + [anon_sym_thread_local] = ACTIONS(3264), + [anon_sym___thread] = ACTIONS(3264), + [anon_sym_const] = ACTIONS(3264), + [anon_sym_constexpr] = ACTIONS(3264), + [anon_sym_volatile] = ACTIONS(3264), + [anon_sym_restrict] = ACTIONS(3264), + [anon_sym___restrict__] = ACTIONS(3264), + [anon_sym__Atomic] = ACTIONS(3264), + [anon_sym__Noreturn] = ACTIONS(3264), + [anon_sym_noreturn] = ACTIONS(3264), + [anon_sym__Nonnull] = ACTIONS(3264), + [anon_sym_mutable] = ACTIONS(3264), + [anon_sym_constinit] = ACTIONS(3264), + [anon_sym_consteval] = ACTIONS(3264), + [anon_sym_alignas] = ACTIONS(3264), + [anon_sym__Alignas] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3264), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_LT_EQ_GT] = ACTIONS(3266), + [anon_sym_or] = ACTIONS(3264), + [anon_sym_and] = ACTIONS(3264), + [anon_sym_bitor] = ACTIONS(3264), + [anon_sym_xor] = ACTIONS(3264), + [anon_sym_bitand] = ACTIONS(3264), + [anon_sym_not_eq] = ACTIONS(3264), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_DOT_STAR] = ACTIONS(3266), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3264), + [anon_sym_final] = ACTIONS(3264), + [anon_sym_override] = ACTIONS(3264), + [anon_sym_template] = ACTIONS(3264), + [anon_sym_operator] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_requires] = ACTIONS(3264), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3264), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3264), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3264), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3264), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3264), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3264), + [anon_sym_MOZ_COLD] = ACTIONS(3264), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3264), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3264), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3264), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3264), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3264), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3264), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3264), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3264), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3264), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3264), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3264), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3264), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3264), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3264), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3264), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3264), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3264), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3264), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_NONNULL] = ACTIONS(3264), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3264), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3264), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3264), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3264), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3264), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_NORETURN] = ACTIONS(3264), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3264), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3264), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3264), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3264), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3264), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3264), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3264), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3264), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3264), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3264), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3264), + [anon_sym_MOZ_RAII] = ACTIONS(3264), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3264), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3264), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3264), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3264), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3264), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3264), + }, + [STATE(869)] = { + [sym_identifier] = ACTIONS(3268), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3270), + [anon_sym_COMMA] = ACTIONS(3270), + [anon_sym_RPAREN] = ACTIONS(3270), + [anon_sym_LPAREN2] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_PIPE_PIPE] = ACTIONS(3270), + [anon_sym_AMP_AMP] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3268), + [anon_sym_CARET] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3268), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_GT_EQ] = ACTIONS(3270), + [anon_sym_LT_EQ] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_LT_LT] = ACTIONS(3270), + [anon_sym_GT_GT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym___extension__] = ACTIONS(3268), + [anon_sym_virtual] = ACTIONS(3268), + [anon_sym_extern] = ACTIONS(3268), + [anon_sym___attribute__] = ACTIONS(3268), + [anon_sym___attribute] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3270), + [anon_sym___declspec] = ACTIONS(3268), + [anon_sym___based] = ACTIONS(3268), + [anon_sym___cdecl] = ACTIONS(3268), + [anon_sym___clrcall] = ACTIONS(3268), + [anon_sym___stdcall] = ACTIONS(3268), + [anon_sym___fastcall] = ACTIONS(3268), + [anon_sym___thiscall] = ACTIONS(3268), + [anon_sym___vectorcall] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_RBRACE] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_RBRACK] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_register] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym___inline] = ACTIONS(3268), + [anon_sym___inline__] = ACTIONS(3268), + [anon_sym___forceinline] = ACTIONS(3268), + [anon_sym_thread_local] = ACTIONS(3268), + [anon_sym___thread] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_constexpr] = ACTIONS(3268), + [anon_sym_volatile] = ACTIONS(3268), + [anon_sym_restrict] = ACTIONS(3268), + [anon_sym___restrict__] = ACTIONS(3268), + [anon_sym__Atomic] = ACTIONS(3268), + [anon_sym__Noreturn] = ACTIONS(3268), + [anon_sym_noreturn] = ACTIONS(3268), + [anon_sym__Nonnull] = ACTIONS(3268), + [anon_sym_mutable] = ACTIONS(3268), + [anon_sym_constinit] = ACTIONS(3268), + [anon_sym_consteval] = ACTIONS(3268), + [anon_sym_alignas] = ACTIONS(3268), + [anon_sym__Alignas] = ACTIONS(3268), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_QMARK] = ACTIONS(3270), + [anon_sym_LT_EQ_GT] = ACTIONS(3270), + [anon_sym_or] = ACTIONS(3268), + [anon_sym_and] = ACTIONS(3268), + [anon_sym_bitor] = ACTIONS(3268), + [anon_sym_xor] = ACTIONS(3268), + [anon_sym_bitand] = ACTIONS(3268), + [anon_sym_not_eq] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_DOT_STAR] = ACTIONS(3270), + [anon_sym_DASH_GT] = ACTIONS(3270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3268), + [anon_sym_decltype] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_requires] = ACTIONS(3268), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3268), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3268), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3268), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3268), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3268), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3268), + [anon_sym_MOZ_COLD] = ACTIONS(3268), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3268), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3268), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3268), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3268), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3268), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3268), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3268), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3268), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3268), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3268), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3268), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3268), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3268), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3268), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3268), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3268), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3268), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3268), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_NONNULL] = ACTIONS(3268), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3268), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3268), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3268), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3268), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3268), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_NORETURN] = ACTIONS(3268), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3268), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3268), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3268), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3268), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3268), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3268), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3268), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3268), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3268), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3268), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3268), + [anon_sym_MOZ_RAII] = ACTIONS(3268), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3268), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3268), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3268), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3268), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3268), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3268), + }, + [STATE(870)] = { + [sym_identifier] = ACTIONS(3260), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3260), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE] = ACTIONS(3260), + [anon_sym_CARET] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3260), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_LT_LT] = ACTIONS(3262), + [anon_sym_GT_GT] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym___extension__] = ACTIONS(3260), + [anon_sym_virtual] = ACTIONS(3260), + [anon_sym_extern] = ACTIONS(3260), + [anon_sym___attribute__] = ACTIONS(3260), + [anon_sym___attribute] = ACTIONS(3260), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3262), + [anon_sym___declspec] = ACTIONS(3260), + [anon_sym___based] = ACTIONS(3260), + [anon_sym___cdecl] = ACTIONS(3260), + [anon_sym___clrcall] = ACTIONS(3260), + [anon_sym___stdcall] = ACTIONS(3260), + [anon_sym___fastcall] = ACTIONS(3260), + [anon_sym___thiscall] = ACTIONS(3260), + [anon_sym___vectorcall] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_static] = ACTIONS(3260), + [anon_sym_RBRACK] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3260), + [anon_sym_register] = ACTIONS(3260), + [anon_sym_inline] = ACTIONS(3260), + [anon_sym___inline] = ACTIONS(3260), + [anon_sym___inline__] = ACTIONS(3260), + [anon_sym___forceinline] = ACTIONS(3260), + [anon_sym_thread_local] = ACTIONS(3260), + [anon_sym___thread] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_constexpr] = ACTIONS(3260), + [anon_sym_volatile] = ACTIONS(3260), + [anon_sym_restrict] = ACTIONS(3260), + [anon_sym___restrict__] = ACTIONS(3260), + [anon_sym__Atomic] = ACTIONS(3260), + [anon_sym__Noreturn] = ACTIONS(3260), + [anon_sym_noreturn] = ACTIONS(3260), + [anon_sym__Nonnull] = ACTIONS(3260), + [anon_sym_mutable] = ACTIONS(3260), + [anon_sym_constinit] = ACTIONS(3260), + [anon_sym_consteval] = ACTIONS(3260), + [anon_sym_alignas] = ACTIONS(3260), + [anon_sym__Alignas] = ACTIONS(3260), + [anon_sym_COLON] = ACTIONS(3260), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_LT_EQ_GT] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3260), + [anon_sym_and] = ACTIONS(3260), + [anon_sym_bitor] = ACTIONS(3260), + [anon_sym_xor] = ACTIONS(3260), + [anon_sym_bitand] = ACTIONS(3260), + [anon_sym_not_eq] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3260), + [anon_sym_DOT_STAR] = ACTIONS(3262), + [anon_sym_DASH_GT] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3260), + [anon_sym_decltype] = ACTIONS(3260), + [anon_sym_final] = ACTIONS(3260), + [anon_sym_override] = ACTIONS(3260), + [anon_sym_template] = ACTIONS(3260), + [anon_sym_operator] = ACTIONS(3260), + [anon_sym_try] = ACTIONS(3260), + [anon_sym_requires] = ACTIONS(3260), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3260), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3260), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3260), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3260), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3260), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3260), + [anon_sym_MOZ_COLD] = ACTIONS(3260), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3260), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3260), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3260), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3260), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3260), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3260), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3260), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3260), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3260), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3260), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3260), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3260), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3260), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3260), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3260), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3260), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3260), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3260), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_NONNULL] = ACTIONS(3260), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3260), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3260), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3260), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3260), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3260), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_NORETURN] = ACTIONS(3260), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3260), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3260), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3260), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3260), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3260), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3260), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3260), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3260), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3260), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3260), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3260), + [anon_sym_MOZ_RAII] = ACTIONS(3260), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3260), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3260), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3260), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3260), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3260), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3260), + }, + [STATE(871)] = { + [sym_identifier] = ACTIONS(3244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3246), + [anon_sym_COMMA] = ACTIONS(3246), + [anon_sym_RPAREN] = ACTIONS(3246), + [anon_sym_LPAREN2] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_PIPE_PIPE] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3244), + [anon_sym_CARET] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3244), + [anon_sym_EQ_EQ] = ACTIONS(3246), + [anon_sym_BANG_EQ] = ACTIONS(3246), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_GT_EQ] = ACTIONS(3246), + [anon_sym_LT_EQ] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_LT_LT] = ACTIONS(3244), + [anon_sym_GT_GT] = ACTIONS(3244), + [anon_sym___extension__] = ACTIONS(3244), + [anon_sym_virtual] = ACTIONS(3244), + [anon_sym_extern] = ACTIONS(3244), + [anon_sym___attribute__] = ACTIONS(3244), + [anon_sym___attribute] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3246), + [anon_sym___declspec] = ACTIONS(3244), + [anon_sym___based] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_register] = ACTIONS(3244), + [anon_sym_inline] = ACTIONS(3244), + [anon_sym___inline] = ACTIONS(3244), + [anon_sym___inline__] = ACTIONS(3244), + [anon_sym___forceinline] = ACTIONS(3244), + [anon_sym_thread_local] = ACTIONS(3244), + [anon_sym___thread] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_constexpr] = ACTIONS(3244), + [anon_sym_volatile] = ACTIONS(3244), + [anon_sym_restrict] = ACTIONS(3244), + [anon_sym___restrict__] = ACTIONS(3244), + [anon_sym__Atomic] = ACTIONS(3244), + [anon_sym__Noreturn] = ACTIONS(3244), + [anon_sym_noreturn] = ACTIONS(3244), + [anon_sym__Nonnull] = ACTIONS(3244), + [anon_sym_mutable] = ACTIONS(3244), + [anon_sym_constinit] = ACTIONS(3244), + [anon_sym_consteval] = ACTIONS(3244), + [anon_sym_alignas] = ACTIONS(3244), + [anon_sym__Alignas] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_STAR_EQ] = ACTIONS(3246), + [anon_sym_SLASH_EQ] = ACTIONS(3246), + [anon_sym_PERCENT_EQ] = ACTIONS(3246), + [anon_sym_PLUS_EQ] = ACTIONS(3246), + [anon_sym_DASH_EQ] = ACTIONS(3246), + [anon_sym_LT_LT_EQ] = ACTIONS(3246), + [anon_sym_GT_GT_EQ] = ACTIONS(3246), + [anon_sym_AMP_EQ] = ACTIONS(3246), + [anon_sym_CARET_EQ] = ACTIONS(3246), + [anon_sym_PIPE_EQ] = ACTIONS(3246), + [anon_sym_and_eq] = ACTIONS(3244), + [anon_sym_or_eq] = ACTIONS(3244), + [anon_sym_xor_eq] = ACTIONS(3244), + [anon_sym_LT_EQ_GT] = ACTIONS(3246), + [anon_sym_or] = ACTIONS(3244), + [anon_sym_and] = ACTIONS(3244), + [anon_sym_bitor] = ACTIONS(3244), + [anon_sym_xor] = ACTIONS(3244), + [anon_sym_bitand] = ACTIONS(3244), + [anon_sym_not_eq] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_DOT_STAR] = ACTIONS(3246), + [anon_sym_DASH_GT] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3244), + [anon_sym_decltype] = ACTIONS(3244), + [anon_sym_template] = ACTIONS(3244), + [anon_sym_operator] = ACTIONS(3244), + [anon_sym_DASH_GT_STAR] = ACTIONS(3246), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3244), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3244), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3244), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3244), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3244), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3244), + [anon_sym_MOZ_COLD] = ACTIONS(3244), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3244), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3244), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3244), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3244), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3244), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3244), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3244), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3244), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3244), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3244), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3244), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3244), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3244), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3244), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3244), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3244), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3244), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3244), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_NONNULL] = ACTIONS(3244), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3244), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3244), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3244), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3244), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3244), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_NORETURN] = ACTIONS(3244), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3244), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3244), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3244), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3244), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3244), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3244), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3244), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3244), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3244), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3244), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3244), + [anon_sym_MOZ_RAII] = ACTIONS(3244), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3244), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3244), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3244), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3244), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3244), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3244), + }, + [STATE(872)] = { + [sym_identifier] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3293), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_RPAREN] = ACTIONS(3293), + [anon_sym_LPAREN2] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3291), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_CARET] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_EQ_EQ] = ACTIONS(3291), + [anon_sym_BANG_EQ] = ACTIONS(3291), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3291), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_LT_LT] = ACTIONS(3298), + [anon_sym_GT_GT] = ACTIONS(3298), + [anon_sym___extension__] = ACTIONS(3289), + [anon_sym_virtual] = ACTIONS(3289), + [anon_sym_extern] = ACTIONS(3289), + [anon_sym___attribute__] = ACTIONS(3289), + [anon_sym___attribute] = ACTIONS(3289), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3289), + [anon_sym___based] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_EQ] = ACTIONS(3300), + [anon_sym_register] = ACTIONS(3289), + [anon_sym_inline] = ACTIONS(3289), + [anon_sym___inline] = ACTIONS(3289), + [anon_sym___inline__] = ACTIONS(3289), + [anon_sym___forceinline] = ACTIONS(3289), + [anon_sym_thread_local] = ACTIONS(3289), + [anon_sym___thread] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_constexpr] = ACTIONS(3289), + [anon_sym_volatile] = ACTIONS(3289), + [anon_sym_restrict] = ACTIONS(3289), + [anon_sym___restrict__] = ACTIONS(3289), + [anon_sym__Atomic] = ACTIONS(3289), + [anon_sym__Noreturn] = ACTIONS(3289), + [anon_sym_noreturn] = ACTIONS(3289), + [anon_sym__Nonnull] = ACTIONS(3289), + [anon_sym_mutable] = ACTIONS(3289), + [anon_sym_constinit] = ACTIONS(3289), + [anon_sym_consteval] = ACTIONS(3289), + [anon_sym_alignas] = ACTIONS(3289), + [anon_sym__Alignas] = ACTIONS(3289), + [anon_sym_QMARK] = ACTIONS(3291), + [anon_sym_STAR_EQ] = ACTIONS(3291), + [anon_sym_SLASH_EQ] = ACTIONS(3291), + [anon_sym_PERCENT_EQ] = ACTIONS(3291), + [anon_sym_PLUS_EQ] = ACTIONS(3291), + [anon_sym_DASH_EQ] = ACTIONS(3291), + [anon_sym_LT_LT_EQ] = ACTIONS(3291), + [anon_sym_GT_GT_EQ] = ACTIONS(3291), + [anon_sym_AMP_EQ] = ACTIONS(3291), + [anon_sym_CARET_EQ] = ACTIONS(3291), + [anon_sym_PIPE_EQ] = ACTIONS(3291), + [anon_sym_and_eq] = ACTIONS(3298), + [anon_sym_or_eq] = ACTIONS(3298), + [anon_sym_xor_eq] = ACTIONS(3298), + [anon_sym_LT_EQ_GT] = ACTIONS(3291), + [anon_sym_or] = ACTIONS(3298), + [anon_sym_and] = ACTIONS(3298), + [anon_sym_bitor] = ACTIONS(3298), + [anon_sym_xor] = ACTIONS(3298), + [anon_sym_bitand] = ACTIONS(3298), + [anon_sym_not_eq] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DOT] = ACTIONS(3298), + [anon_sym_DOT_STAR] = ACTIONS(3291), + [anon_sym_DASH_GT] = ACTIONS(3291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3289), + [anon_sym_decltype] = ACTIONS(3289), + [anon_sym_template] = ACTIONS(3289), + [anon_sym_operator] = ACTIONS(3289), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3289), + [anon_sym_MOZ_COLD] = ACTIONS(3289), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3289), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3289), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3289), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3289), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3289), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3289), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3289), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3289), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3289), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3289), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3289), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3289), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_RAII] = ACTIONS(3289), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3289), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3289), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3289), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3289), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3289), + }, + [STATE(873)] = { + [sym_expression] = STATE(3967), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_initializer_list] = STATE(4178), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), + [anon_sym_COMMA] = ACTIONS(3321), + [anon_sym_RPAREN] = ACTIONS(3321), + [anon_sym_LPAREN2] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE] = ACTIONS(3319), + [anon_sym_CARET] = ACTIONS(3319), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_LT_LT] = ACTIONS(3319), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(3919), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_EQ] = ACTIONS(3319), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_QMARK] = ACTIONS(3321), + [anon_sym_STAR_EQ] = ACTIONS(3321), + [anon_sym_SLASH_EQ] = ACTIONS(3321), + [anon_sym_PERCENT_EQ] = ACTIONS(3321), + [anon_sym_PLUS_EQ] = ACTIONS(3321), + [anon_sym_DASH_EQ] = ACTIONS(3321), + [anon_sym_LT_LT_EQ] = ACTIONS(3321), + [anon_sym_GT_GT_EQ] = ACTIONS(3321), + [anon_sym_AMP_EQ] = ACTIONS(3321), + [anon_sym_CARET_EQ] = ACTIONS(3321), + [anon_sym_PIPE_EQ] = ACTIONS(3321), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_LT_EQ_GT] = ACTIONS(3321), + [anon_sym_or] = ACTIONS(3319), + [anon_sym_and] = ACTIONS(3319), + [anon_sym_bitor] = ACTIONS(3319), + [anon_sym_xor] = ACTIONS(3319), + [anon_sym_bitand] = ACTIONS(3319), + [anon_sym_not_eq] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [anon_sym_DOT] = ACTIONS(3319), + [anon_sym_DOT_STAR] = ACTIONS(3321), + [anon_sym_DASH_GT] = ACTIONS(3319), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [anon_sym_DASH_GT_STAR] = ACTIONS(3321), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(874)] = { + [sym_type_qualifier] = STATE(4227), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(5026), + [sym_sized_type_specifier] = STATE(3036), + [sym_enum_specifier] = STATE(3036), + [sym_struct_specifier] = STATE(3036), + [sym_union_specifier] = STATE(3036), + [sym_expression] = STATE(4732), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_type_descriptor] = STATE(7351), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_placeholder_type_specifier] = STATE(3036), + [sym_decltype_auto] = STATE(3035), + [sym_decltype] = STATE(2999), + [sym_class_specifier] = STATE(3036), + [sym__class_name] = STATE(8367), + [sym_dependent_type] = STATE(3036), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_type_parameter_pack_expansion] = STATE(7531), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5961), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [aux_sym__type_definition_type_repeat1] = STATE(4227), + [aux_sym_sized_type_specifier_repeat1] = STATE(4533), + [sym_identifier] = ACTIONS(3923), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3937), + [anon_sym_unsigned] = ACTIONS(3937), + [anon_sym_long] = ACTIONS(3937), + [anon_sym_short] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3941), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3945), + [anon_sym_union] = ACTIONS(3947), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3971), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3975), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(3977), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(875)] = { + [sym_identifier] = ACTIONS(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3250), + [anon_sym_COMMA] = ACTIONS(3250), + [anon_sym_RPAREN] = ACTIONS(3250), + [anon_sym_LPAREN2] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3248), + [anon_sym_CARET] = ACTIONS(3248), + [anon_sym_AMP] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3250), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_LT_LT] = ACTIONS(3248), + [anon_sym_GT_GT] = ACTIONS(3248), + [anon_sym___extension__] = ACTIONS(3248), + [anon_sym_virtual] = ACTIONS(3248), + [anon_sym_extern] = ACTIONS(3248), + [anon_sym___attribute__] = ACTIONS(3248), + [anon_sym___attribute] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(3250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3250), + [anon_sym___declspec] = ACTIONS(3248), + [anon_sym___based] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(3248), + [anon_sym_register] = ACTIONS(3248), + [anon_sym_inline] = ACTIONS(3248), + [anon_sym___inline] = ACTIONS(3248), + [anon_sym___inline__] = ACTIONS(3248), + [anon_sym___forceinline] = ACTIONS(3248), + [anon_sym_thread_local] = ACTIONS(3248), + [anon_sym___thread] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_constexpr] = ACTIONS(3248), + [anon_sym_volatile] = ACTIONS(3248), + [anon_sym_restrict] = ACTIONS(3248), + [anon_sym___restrict__] = ACTIONS(3248), + [anon_sym__Atomic] = ACTIONS(3248), + [anon_sym__Noreturn] = ACTIONS(3248), + [anon_sym_noreturn] = ACTIONS(3248), + [anon_sym__Nonnull] = ACTIONS(3248), + [anon_sym_mutable] = ACTIONS(3248), + [anon_sym_constinit] = ACTIONS(3248), + [anon_sym_consteval] = ACTIONS(3248), + [anon_sym_alignas] = ACTIONS(3248), + [anon_sym__Alignas] = ACTIONS(3248), + [anon_sym_QMARK] = ACTIONS(3250), + [anon_sym_STAR_EQ] = ACTIONS(3250), + [anon_sym_SLASH_EQ] = ACTIONS(3250), + [anon_sym_PERCENT_EQ] = ACTIONS(3250), + [anon_sym_PLUS_EQ] = ACTIONS(3250), + [anon_sym_DASH_EQ] = ACTIONS(3250), + [anon_sym_LT_LT_EQ] = ACTIONS(3250), + [anon_sym_GT_GT_EQ] = ACTIONS(3250), + [anon_sym_AMP_EQ] = ACTIONS(3250), + [anon_sym_CARET_EQ] = ACTIONS(3250), + [anon_sym_PIPE_EQ] = ACTIONS(3250), + [anon_sym_LT_EQ_GT] = ACTIONS(3250), + [anon_sym_or] = ACTIONS(3248), + [anon_sym_and] = ACTIONS(3248), + [anon_sym_bitor] = ACTIONS(3248), + [anon_sym_xor] = ACTIONS(3248), + [anon_sym_bitand] = ACTIONS(3248), + [anon_sym_not_eq] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DOT] = ACTIONS(3248), + [anon_sym_DOT_STAR] = ACTIONS(3250), + [anon_sym_DASH_GT] = ACTIONS(3248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3248), + [anon_sym_decltype] = ACTIONS(3248), + [anon_sym_template] = ACTIONS(3248), + [anon_sym_operator] = ACTIONS(3248), + [anon_sym_DASH_GT_STAR] = ACTIONS(3250), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3248), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3248), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3248), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3248), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3248), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3248), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3248), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3248), + [anon_sym_MOZ_COLD] = ACTIONS(3248), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3248), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3248), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3248), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3248), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3248), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3248), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3248), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3248), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3248), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3248), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3248), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3248), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3248), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3248), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3248), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3248), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3248), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3248), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3248), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3248), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_NONNULL] = ACTIONS(3248), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3248), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3248), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3248), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3248), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3248), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_NORETURN] = ACTIONS(3248), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3248), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3248), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3248), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3248), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3248), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3248), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3248), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3248), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3248), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3248), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3248), + [anon_sym_MOZ_RAII] = ACTIONS(3248), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3248), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3248), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3248), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3248), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3248), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3248), + }, + [STATE(876)] = { + [sym_type_qualifier] = STATE(4227), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(5026), + [sym_sized_type_specifier] = STATE(3036), + [sym_enum_specifier] = STATE(3036), + [sym_struct_specifier] = STATE(3036), + [sym_union_specifier] = STATE(3036), + [sym_expression] = STATE(4672), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_type_descriptor] = STATE(7326), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_placeholder_type_specifier] = STATE(3036), + [sym_decltype_auto] = STATE(3035), + [sym_decltype] = STATE(2999), + [sym_class_specifier] = STATE(3036), + [sym__class_name] = STATE(8367), + [sym_dependent_type] = STATE(3036), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_type_parameter_pack_expansion] = STATE(7842), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5961), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [aux_sym__type_definition_type_repeat1] = STATE(4227), + [aux_sym_sized_type_specifier_repeat1] = STATE(4533), + [sym_identifier] = ACTIONS(3923), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3937), + [anon_sym_unsigned] = ACTIONS(3937), + [anon_sym_long] = ACTIONS(3937), + [anon_sym_short] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3941), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3945), + [anon_sym_union] = ACTIONS(3947), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3971), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3975), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(3989), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(877)] = { + [sym_type_qualifier] = STATE(4227), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(5026), + [sym_sized_type_specifier] = STATE(3036), + [sym_enum_specifier] = STATE(3036), + [sym_struct_specifier] = STATE(3036), + [sym_union_specifier] = STATE(3036), + [sym_expression] = STATE(4698), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_type_descriptor] = STATE(7455), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_placeholder_type_specifier] = STATE(3036), + [sym_decltype_auto] = STATE(3035), + [sym_decltype] = STATE(2999), + [sym_class_specifier] = STATE(3036), + [sym__class_name] = STATE(8367), + [sym_dependent_type] = STATE(3036), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_type_parameter_pack_expansion] = STATE(7725), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5961), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [aux_sym__type_definition_type_repeat1] = STATE(4227), + [aux_sym_sized_type_specifier_repeat1] = STATE(4533), + [sym_identifier] = ACTIONS(3923), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3937), + [anon_sym_unsigned] = ACTIONS(3937), + [anon_sym_long] = ACTIONS(3937), + [anon_sym_short] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3941), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3945), + [anon_sym_union] = ACTIONS(3947), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3971), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3975), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(3991), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(878)] = { + [sym_type_qualifier] = STATE(4227), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(5026), + [sym_sized_type_specifier] = STATE(3036), + [sym_enum_specifier] = STATE(3036), + [sym_struct_specifier] = STATE(3036), + [sym_union_specifier] = STATE(3036), + [sym_expression] = STATE(4677), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_type_descriptor] = STATE(7299), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_placeholder_type_specifier] = STATE(3036), + [sym_decltype_auto] = STATE(3035), + [sym_decltype] = STATE(2999), + [sym_class_specifier] = STATE(3036), + [sym__class_name] = STATE(8367), + [sym_dependent_type] = STATE(3036), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_type_parameter_pack_expansion] = STATE(7911), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5961), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [aux_sym__type_definition_type_repeat1] = STATE(4227), + [aux_sym_sized_type_specifier_repeat1] = STATE(4533), + [sym_identifier] = ACTIONS(3923), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3937), + [anon_sym_unsigned] = ACTIONS(3937), + [anon_sym_long] = ACTIONS(3937), + [anon_sym_short] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3941), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3945), + [anon_sym_union] = ACTIONS(3947), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3971), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3975), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(3993), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(879)] = { + [sym_identifier] = ACTIONS(3244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3246), + [anon_sym_COMMA] = ACTIONS(3246), + [anon_sym_RPAREN] = ACTIONS(3246), + [anon_sym_LPAREN2] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_PIPE_PIPE] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3244), + [anon_sym_CARET] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3244), + [anon_sym_EQ_EQ] = ACTIONS(3246), + [anon_sym_BANG_EQ] = ACTIONS(3246), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_GT_EQ] = ACTIONS(3246), + [anon_sym_LT_EQ] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_LT_LT] = ACTIONS(3244), + [anon_sym_GT_GT] = ACTIONS(3244), + [anon_sym___extension__] = ACTIONS(3244), + [anon_sym_virtual] = ACTIONS(3244), + [anon_sym_extern] = ACTIONS(3244), + [anon_sym___attribute__] = ACTIONS(3244), + [anon_sym___attribute] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3246), + [anon_sym___declspec] = ACTIONS(3244), + [anon_sym___based] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_register] = ACTIONS(3244), + [anon_sym_inline] = ACTIONS(3244), + [anon_sym___inline] = ACTIONS(3244), + [anon_sym___inline__] = ACTIONS(3244), + [anon_sym___forceinline] = ACTIONS(3244), + [anon_sym_thread_local] = ACTIONS(3244), + [anon_sym___thread] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_constexpr] = ACTIONS(3244), + [anon_sym_volatile] = ACTIONS(3244), + [anon_sym_restrict] = ACTIONS(3244), + [anon_sym___restrict__] = ACTIONS(3244), + [anon_sym__Atomic] = ACTIONS(3244), + [anon_sym__Noreturn] = ACTIONS(3244), + [anon_sym_noreturn] = ACTIONS(3244), + [anon_sym__Nonnull] = ACTIONS(3244), + [anon_sym_mutable] = ACTIONS(3244), + [anon_sym_constinit] = ACTIONS(3244), + [anon_sym_consteval] = ACTIONS(3244), + [anon_sym_alignas] = ACTIONS(3244), + [anon_sym__Alignas] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_STAR_EQ] = ACTIONS(3246), + [anon_sym_SLASH_EQ] = ACTIONS(3246), + [anon_sym_PERCENT_EQ] = ACTIONS(3246), + [anon_sym_PLUS_EQ] = ACTIONS(3246), + [anon_sym_DASH_EQ] = ACTIONS(3246), + [anon_sym_LT_LT_EQ] = ACTIONS(3246), + [anon_sym_GT_GT_EQ] = ACTIONS(3246), + [anon_sym_AMP_EQ] = ACTIONS(3246), + [anon_sym_CARET_EQ] = ACTIONS(3246), + [anon_sym_PIPE_EQ] = ACTIONS(3246), + [anon_sym_LT_EQ_GT] = ACTIONS(3246), + [anon_sym_or] = ACTIONS(3244), + [anon_sym_and] = ACTIONS(3244), + [anon_sym_bitor] = ACTIONS(3244), + [anon_sym_xor] = ACTIONS(3244), + [anon_sym_bitand] = ACTIONS(3244), + [anon_sym_not_eq] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_DOT_STAR] = ACTIONS(3246), + [anon_sym_DASH_GT] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3244), + [anon_sym_decltype] = ACTIONS(3244), + [anon_sym_template] = ACTIONS(3244), + [anon_sym_operator] = ACTIONS(3244), + [anon_sym_DASH_GT_STAR] = ACTIONS(3246), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3244), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3244), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3244), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3244), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3244), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3244), + [anon_sym_MOZ_COLD] = ACTIONS(3244), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3244), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3244), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3244), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3244), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3244), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3244), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3244), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3244), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3244), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3244), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3244), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3244), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3244), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3244), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3244), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3244), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3244), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3244), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_NONNULL] = ACTIONS(3244), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3244), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3244), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3244), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3244), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3244), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_NORETURN] = ACTIONS(3244), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3244), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3244), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3244), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3244), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3244), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3244), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3244), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3244), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3244), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3244), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3244), + [anon_sym_MOZ_RAII] = ACTIONS(3244), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3244), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3244), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3244), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3244), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3244), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3244), + }, + [STATE(880)] = { + [sym_identifier] = ACTIONS(3264), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_CARET] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3264), + [anon_sym_EQ_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3266), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_LT_LT] = ACTIONS(3264), + [anon_sym_GT_GT] = ACTIONS(3264), + [anon_sym___extension__] = ACTIONS(3264), + [anon_sym_virtual] = ACTIONS(3264), + [anon_sym_extern] = ACTIONS(3264), + [anon_sym___attribute__] = ACTIONS(3264), + [anon_sym___attribute] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3266), + [anon_sym___declspec] = ACTIONS(3264), + [anon_sym___based] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_static] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_register] = ACTIONS(3264), + [anon_sym_inline] = ACTIONS(3264), + [anon_sym___inline] = ACTIONS(3264), + [anon_sym___inline__] = ACTIONS(3264), + [anon_sym___forceinline] = ACTIONS(3264), + [anon_sym_thread_local] = ACTIONS(3264), + [anon_sym___thread] = ACTIONS(3264), + [anon_sym_const] = ACTIONS(3264), + [anon_sym_constexpr] = ACTIONS(3264), + [anon_sym_volatile] = ACTIONS(3264), + [anon_sym_restrict] = ACTIONS(3264), + [anon_sym___restrict__] = ACTIONS(3264), + [anon_sym__Atomic] = ACTIONS(3264), + [anon_sym__Noreturn] = ACTIONS(3264), + [anon_sym_noreturn] = ACTIONS(3264), + [anon_sym__Nonnull] = ACTIONS(3264), + [anon_sym_mutable] = ACTIONS(3264), + [anon_sym_constinit] = ACTIONS(3264), + [anon_sym_consteval] = ACTIONS(3264), + [anon_sym_alignas] = ACTIONS(3264), + [anon_sym__Alignas] = ACTIONS(3264), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_LT_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_GT_EQ] = ACTIONS(3266), + [anon_sym_AMP_EQ] = ACTIONS(3266), + [anon_sym_CARET_EQ] = ACTIONS(3266), + [anon_sym_PIPE_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ_GT] = ACTIONS(3266), + [anon_sym_or] = ACTIONS(3264), + [anon_sym_and] = ACTIONS(3264), + [anon_sym_bitor] = ACTIONS(3264), + [anon_sym_xor] = ACTIONS(3264), + [anon_sym_bitand] = ACTIONS(3264), + [anon_sym_not_eq] = ACTIONS(3264), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_DOT_STAR] = ACTIONS(3266), + [anon_sym_DASH_GT] = ACTIONS(3264), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3264), + [anon_sym_template] = ACTIONS(3264), + [anon_sym_operator] = ACTIONS(3264), + [anon_sym_DASH_GT_STAR] = ACTIONS(3266), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3264), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3264), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3264), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3264), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3264), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3264), + [anon_sym_MOZ_COLD] = ACTIONS(3264), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3264), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3264), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3264), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3264), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3264), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3264), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3264), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3264), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3264), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3264), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3264), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3264), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3264), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3264), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3264), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3264), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3264), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3264), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_NONNULL] = ACTIONS(3264), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3264), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3264), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3264), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3264), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3264), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_NORETURN] = ACTIONS(3264), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3264), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3264), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3264), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3264), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3264), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3264), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3264), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3264), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3264), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3264), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3264), + [anon_sym_MOZ_RAII] = ACTIONS(3264), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3264), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3264), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3264), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3264), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3264), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3264), + }, + [STATE(881)] = { + [sym_type_qualifier] = STATE(4227), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(5026), + [sym_sized_type_specifier] = STATE(3036), + [sym_enum_specifier] = STATE(3036), + [sym_struct_specifier] = STATE(3036), + [sym_union_specifier] = STATE(3036), + [sym_expression] = STATE(4656), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_type_descriptor] = STATE(7421), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_placeholder_type_specifier] = STATE(3036), + [sym_decltype_auto] = STATE(3035), + [sym_decltype] = STATE(2999), + [sym_class_specifier] = STATE(3036), + [sym__class_name] = STATE(8367), + [sym_dependent_type] = STATE(3036), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_type_parameter_pack_expansion] = STATE(7551), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5961), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [aux_sym__type_definition_type_repeat1] = STATE(4227), + [aux_sym_sized_type_specifier_repeat1] = STATE(4533), + [sym_identifier] = ACTIONS(3923), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3937), + [anon_sym_unsigned] = ACTIONS(3937), + [anon_sym_long] = ACTIONS(3937), + [anon_sym_short] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3941), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3945), + [anon_sym_union] = ACTIONS(3947), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3971), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3975), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(3995), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(882)] = { + [sym_identifier] = ACTIONS(3268), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3270), + [anon_sym_COMMA] = ACTIONS(3270), + [anon_sym_RPAREN] = ACTIONS(3270), + [anon_sym_LPAREN2] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_PIPE_PIPE] = ACTIONS(3270), + [anon_sym_AMP_AMP] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3268), + [anon_sym_CARET] = ACTIONS(3268), + [anon_sym_AMP] = ACTIONS(3268), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_GT_EQ] = ACTIONS(3270), + [anon_sym_LT_EQ] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_LT_LT] = ACTIONS(3268), + [anon_sym_GT_GT] = ACTIONS(3268), + [anon_sym___extension__] = ACTIONS(3268), + [anon_sym_virtual] = ACTIONS(3268), + [anon_sym_extern] = ACTIONS(3268), + [anon_sym___attribute__] = ACTIONS(3268), + [anon_sym___attribute] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3270), + [anon_sym___declspec] = ACTIONS(3268), + [anon_sym___based] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_register] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym___inline] = ACTIONS(3268), + [anon_sym___inline__] = ACTIONS(3268), + [anon_sym___forceinline] = ACTIONS(3268), + [anon_sym_thread_local] = ACTIONS(3268), + [anon_sym___thread] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_constexpr] = ACTIONS(3268), + [anon_sym_volatile] = ACTIONS(3268), + [anon_sym_restrict] = ACTIONS(3268), + [anon_sym___restrict__] = ACTIONS(3268), + [anon_sym__Atomic] = ACTIONS(3268), + [anon_sym__Noreturn] = ACTIONS(3268), + [anon_sym_noreturn] = ACTIONS(3268), + [anon_sym__Nonnull] = ACTIONS(3268), + [anon_sym_mutable] = ACTIONS(3268), + [anon_sym_constinit] = ACTIONS(3268), + [anon_sym_consteval] = ACTIONS(3268), + [anon_sym_alignas] = ACTIONS(3268), + [anon_sym__Alignas] = ACTIONS(3268), + [anon_sym_QMARK] = ACTIONS(3270), + [anon_sym_STAR_EQ] = ACTIONS(3270), + [anon_sym_SLASH_EQ] = ACTIONS(3270), + [anon_sym_PERCENT_EQ] = ACTIONS(3270), + [anon_sym_PLUS_EQ] = ACTIONS(3270), + [anon_sym_DASH_EQ] = ACTIONS(3270), + [anon_sym_LT_LT_EQ] = ACTIONS(3270), + [anon_sym_GT_GT_EQ] = ACTIONS(3270), + [anon_sym_AMP_EQ] = ACTIONS(3270), + [anon_sym_CARET_EQ] = ACTIONS(3270), + [anon_sym_PIPE_EQ] = ACTIONS(3270), + [anon_sym_LT_EQ_GT] = ACTIONS(3270), + [anon_sym_or] = ACTIONS(3268), + [anon_sym_and] = ACTIONS(3268), + [anon_sym_bitor] = ACTIONS(3268), + [anon_sym_xor] = ACTIONS(3268), + [anon_sym_bitand] = ACTIONS(3268), + [anon_sym_not_eq] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_DOT_STAR] = ACTIONS(3270), + [anon_sym_DASH_GT] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3268), + [anon_sym_decltype] = ACTIONS(3268), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_DASH_GT_STAR] = ACTIONS(3270), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3268), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3268), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3268), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3268), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3268), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3268), + [anon_sym_MOZ_COLD] = ACTIONS(3268), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3268), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3268), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3268), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3268), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3268), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3268), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3268), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3268), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3268), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3268), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3268), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3268), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3268), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3268), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3268), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3268), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3268), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3268), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_NONNULL] = ACTIONS(3268), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3268), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3268), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3268), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3268), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3268), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_NORETURN] = ACTIONS(3268), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3268), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3268), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3268), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3268), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3268), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3268), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3268), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3268), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3268), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3268), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3268), + [anon_sym_MOZ_RAII] = ACTIONS(3268), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3268), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3268), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3268), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3268), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3268), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3268), + }, + [STATE(883)] = { + [sym_type_qualifier] = STATE(4227), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(5026), + [sym_sized_type_specifier] = STATE(3036), + [sym_enum_specifier] = STATE(3036), + [sym_struct_specifier] = STATE(3036), + [sym_union_specifier] = STATE(3036), + [sym_expression] = STATE(4665), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_type_descriptor] = STATE(7440), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_placeholder_type_specifier] = STATE(3036), + [sym_decltype_auto] = STATE(3035), + [sym_decltype] = STATE(2999), + [sym_class_specifier] = STATE(3036), + [sym__class_name] = STATE(8367), + [sym_dependent_type] = STATE(3036), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_type_parameter_pack_expansion] = STATE(7713), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5961), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [aux_sym__type_definition_type_repeat1] = STATE(4227), + [aux_sym_sized_type_specifier_repeat1] = STATE(4533), + [sym_identifier] = ACTIONS(3923), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3937), + [anon_sym_unsigned] = ACTIONS(3937), + [anon_sym_long] = ACTIONS(3937), + [anon_sym_short] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3941), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3945), + [anon_sym_union] = ACTIONS(3947), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3971), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3975), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(3997), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(884)] = { + [sym_type_qualifier] = STATE(4227), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(5026), + [sym_sized_type_specifier] = STATE(3036), + [sym_enum_specifier] = STATE(3036), + [sym_struct_specifier] = STATE(3036), + [sym_union_specifier] = STATE(3036), + [sym_expression] = STATE(4674), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_type_descriptor] = STATE(7472), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_placeholder_type_specifier] = STATE(3036), + [sym_decltype_auto] = STATE(3035), + [sym_decltype] = STATE(2999), + [sym_class_specifier] = STATE(3036), + [sym__class_name] = STATE(8367), + [sym_dependent_type] = STATE(3036), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_type_parameter_pack_expansion] = STATE(7819), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5961), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [aux_sym__type_definition_type_repeat1] = STATE(4227), + [aux_sym_sized_type_specifier_repeat1] = STATE(4533), + [sym_identifier] = ACTIONS(3923), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3937), + [anon_sym_unsigned] = ACTIONS(3937), + [anon_sym_long] = ACTIONS(3937), + [anon_sym_short] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3941), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3945), + [anon_sym_union] = ACTIONS(3947), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3971), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3975), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(3999), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(885)] = { + [sym_type_qualifier] = STATE(4227), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(5026), + [sym_sized_type_specifier] = STATE(3036), + [sym_enum_specifier] = STATE(3036), + [sym_struct_specifier] = STATE(3036), + [sym_union_specifier] = STATE(3036), + [sym_expression] = STATE(4679), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_type_descriptor] = STATE(7416), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_placeholder_type_specifier] = STATE(3036), + [sym_decltype_auto] = STATE(3035), + [sym_decltype] = STATE(2999), + [sym_class_specifier] = STATE(3036), + [sym__class_name] = STATE(8367), + [sym_dependent_type] = STATE(3036), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_type_parameter_pack_expansion] = STATE(7540), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5961), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [aux_sym__type_definition_type_repeat1] = STATE(4227), + [aux_sym_sized_type_specifier_repeat1] = STATE(4533), + [sym_identifier] = ACTIONS(3923), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3937), + [anon_sym_unsigned] = ACTIONS(3937), + [anon_sym_long] = ACTIONS(3937), + [anon_sym_short] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3941), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3945), + [anon_sym_union] = ACTIONS(3947), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3971), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3975), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(4001), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(886)] = { + [sym_type_qualifier] = STATE(4227), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(5026), + [sym_sized_type_specifier] = STATE(3036), + [sym_enum_specifier] = STATE(3036), + [sym_struct_specifier] = STATE(3036), + [sym_union_specifier] = STATE(3036), + [sym_expression] = STATE(4685), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_type_descriptor] = STATE(7289), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_placeholder_type_specifier] = STATE(3036), + [sym_decltype_auto] = STATE(3035), + [sym_decltype] = STATE(2999), + [sym_class_specifier] = STATE(3036), + [sym__class_name] = STATE(8367), + [sym_dependent_type] = STATE(3036), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_type_parameter_pack_expansion] = STATE(7570), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5961), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [aux_sym__type_definition_type_repeat1] = STATE(4227), + [aux_sym_sized_type_specifier_repeat1] = STATE(4533), + [sym_identifier] = ACTIONS(3923), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3937), + [anon_sym_unsigned] = ACTIONS(3937), + [anon_sym_long] = ACTIONS(3937), + [anon_sym_short] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3941), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3945), + [anon_sym_union] = ACTIONS(3947), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3971), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3975), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(4003), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(887)] = { + [sym_type_qualifier] = STATE(4227), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(5026), + [sym_sized_type_specifier] = STATE(3036), + [sym_enum_specifier] = STATE(3036), + [sym_struct_specifier] = STATE(3036), + [sym_union_specifier] = STATE(3036), + [sym_expression] = STATE(4687), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_type_descriptor] = STATE(7302), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_placeholder_type_specifier] = STATE(3036), + [sym_decltype_auto] = STATE(3035), + [sym_decltype] = STATE(2999), + [sym_class_specifier] = STATE(3036), + [sym__class_name] = STATE(8367), + [sym_dependent_type] = STATE(3036), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_type_parameter_pack_expansion] = STATE(7589), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5961), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [aux_sym__type_definition_type_repeat1] = STATE(4227), + [aux_sym_sized_type_specifier_repeat1] = STATE(4533), + [sym_identifier] = ACTIONS(3923), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3937), + [anon_sym_unsigned] = ACTIONS(3937), + [anon_sym_long] = ACTIONS(3937), + [anon_sym_short] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3941), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3945), + [anon_sym_union] = ACTIONS(3947), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3971), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3975), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(4005), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(888)] = { + [sym_type_qualifier] = STATE(4227), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(5026), + [sym_sized_type_specifier] = STATE(3036), + [sym_enum_specifier] = STATE(3036), + [sym_struct_specifier] = STATE(3036), + [sym_union_specifier] = STATE(3036), + [sym_expression] = STATE(4689), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_type_descriptor] = STATE(7474), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_placeholder_type_specifier] = STATE(3036), + [sym_decltype_auto] = STATE(3035), + [sym_decltype] = STATE(2999), + [sym_class_specifier] = STATE(3036), + [sym__class_name] = STATE(8367), + [sym_dependent_type] = STATE(3036), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_type_parameter_pack_expansion] = STATE(7596), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5961), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [aux_sym__type_definition_type_repeat1] = STATE(4227), + [aux_sym_sized_type_specifier_repeat1] = STATE(4533), + [sym_identifier] = ACTIONS(3923), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3937), + [anon_sym_unsigned] = ACTIONS(3937), + [anon_sym_long] = ACTIONS(3937), + [anon_sym_short] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3941), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3945), + [anon_sym_union] = ACTIONS(3947), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3971), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3975), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(4007), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(889)] = { + [sym_type_qualifier] = STATE(4227), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(5026), + [sym_sized_type_specifier] = STATE(3036), + [sym_enum_specifier] = STATE(3036), + [sym_struct_specifier] = STATE(3036), + [sym_union_specifier] = STATE(3036), + [sym_expression] = STATE(4694), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_type_descriptor] = STATE(7314), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_placeholder_type_specifier] = STATE(3036), + [sym_decltype_auto] = STATE(3035), + [sym_decltype] = STATE(2999), + [sym_class_specifier] = STATE(3036), + [sym__class_name] = STATE(8367), + [sym_dependent_type] = STATE(3036), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_type_parameter_pack_expansion] = STATE(7608), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5961), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [aux_sym__type_definition_type_repeat1] = STATE(4227), + [aux_sym_sized_type_specifier_repeat1] = STATE(4533), + [sym_identifier] = ACTIONS(3923), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3937), + [anon_sym_unsigned] = ACTIONS(3937), + [anon_sym_long] = ACTIONS(3937), + [anon_sym_short] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3941), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3945), + [anon_sym_union] = ACTIONS(3947), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3971), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3975), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(4009), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(890)] = { + [sym_type_qualifier] = STATE(4227), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(5026), + [sym_sized_type_specifier] = STATE(3036), + [sym_enum_specifier] = STATE(3036), + [sym_struct_specifier] = STATE(3036), + [sym_union_specifier] = STATE(3036), + [sym_expression] = STATE(4697), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_type_descriptor] = STATE(7482), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_placeholder_type_specifier] = STATE(3036), + [sym_decltype_auto] = STATE(3035), + [sym_decltype] = STATE(2999), + [sym_class_specifier] = STATE(3036), + [sym__class_name] = STATE(8367), + [sym_dependent_type] = STATE(3036), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_type_parameter_pack_expansion] = STATE(7615), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5961), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [aux_sym__type_definition_type_repeat1] = STATE(4227), + [aux_sym_sized_type_specifier_repeat1] = STATE(4533), + [sym_identifier] = ACTIONS(3923), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3937), + [anon_sym_unsigned] = ACTIONS(3937), + [anon_sym_long] = ACTIONS(3937), + [anon_sym_short] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3941), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3945), + [anon_sym_union] = ACTIONS(3947), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3971), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3975), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(4011), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(891)] = { + [sym_type_qualifier] = STATE(4227), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(5026), + [sym_sized_type_specifier] = STATE(3036), + [sym_enum_specifier] = STATE(3036), + [sym_struct_specifier] = STATE(3036), + [sym_union_specifier] = STATE(3036), + [sym_expression] = STATE(4700), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_type_descriptor] = STATE(7247), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_placeholder_type_specifier] = STATE(3036), + [sym_decltype_auto] = STATE(3035), + [sym_decltype] = STATE(2999), + [sym_class_specifier] = STATE(3036), + [sym__class_name] = STATE(8367), + [sym_dependent_type] = STATE(3036), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_type_parameter_pack_expansion] = STATE(7624), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5961), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [aux_sym__type_definition_type_repeat1] = STATE(4227), + [aux_sym_sized_type_specifier_repeat1] = STATE(4533), + [sym_identifier] = ACTIONS(3923), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3937), + [anon_sym_unsigned] = ACTIONS(3937), + [anon_sym_long] = ACTIONS(3937), + [anon_sym_short] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3941), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3945), + [anon_sym_union] = ACTIONS(3947), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3971), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3975), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(4013), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(892)] = { + [sym_type_qualifier] = STATE(4227), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(5026), + [sym_sized_type_specifier] = STATE(3036), + [sym_enum_specifier] = STATE(3036), + [sym_struct_specifier] = STATE(3036), + [sym_union_specifier] = STATE(3036), + [sym_expression] = STATE(4703), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_type_descriptor] = STATE(7315), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_placeholder_type_specifier] = STATE(3036), + [sym_decltype_auto] = STATE(3035), + [sym_decltype] = STATE(2999), + [sym_class_specifier] = STATE(3036), + [sym__class_name] = STATE(8367), + [sym_dependent_type] = STATE(3036), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_type_parameter_pack_expansion] = STATE(7633), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5961), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [aux_sym__type_definition_type_repeat1] = STATE(4227), + [aux_sym_sized_type_specifier_repeat1] = STATE(4533), + [sym_identifier] = ACTIONS(3923), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3937), + [anon_sym_unsigned] = ACTIONS(3937), + [anon_sym_long] = ACTIONS(3937), + [anon_sym_short] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3941), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3945), + [anon_sym_union] = ACTIONS(3947), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3971), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3975), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(4015), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(893)] = { + [sym_identifier] = ACTIONS(3260), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_STAR] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3260), + [anon_sym_PERCENT] = ACTIONS(3260), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE] = ACTIONS(3260), + [anon_sym_CARET] = ACTIONS(3260), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3260), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_LT_LT] = ACTIONS(3260), + [anon_sym_GT_GT] = ACTIONS(3260), + [anon_sym___extension__] = ACTIONS(3260), + [anon_sym_virtual] = ACTIONS(3260), + [anon_sym_extern] = ACTIONS(3260), + [anon_sym___attribute__] = ACTIONS(3260), + [anon_sym___attribute] = ACTIONS(3260), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3262), + [anon_sym___declspec] = ACTIONS(3260), + [anon_sym___based] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_static] = ACTIONS(3260), + [anon_sym_EQ] = ACTIONS(3260), + [anon_sym_register] = ACTIONS(3260), + [anon_sym_inline] = ACTIONS(3260), + [anon_sym___inline] = ACTIONS(3260), + [anon_sym___inline__] = ACTIONS(3260), + [anon_sym___forceinline] = ACTIONS(3260), + [anon_sym_thread_local] = ACTIONS(3260), + [anon_sym___thread] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_constexpr] = ACTIONS(3260), + [anon_sym_volatile] = ACTIONS(3260), + [anon_sym_restrict] = ACTIONS(3260), + [anon_sym___restrict__] = ACTIONS(3260), + [anon_sym__Atomic] = ACTIONS(3260), + [anon_sym__Noreturn] = ACTIONS(3260), + [anon_sym_noreturn] = ACTIONS(3260), + [anon_sym__Nonnull] = ACTIONS(3260), + [anon_sym_mutable] = ACTIONS(3260), + [anon_sym_constinit] = ACTIONS(3260), + [anon_sym_consteval] = ACTIONS(3260), + [anon_sym_alignas] = ACTIONS(3260), + [anon_sym__Alignas] = ACTIONS(3260), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_STAR_EQ] = ACTIONS(3262), + [anon_sym_SLASH_EQ] = ACTIONS(3262), + [anon_sym_PERCENT_EQ] = ACTIONS(3262), + [anon_sym_PLUS_EQ] = ACTIONS(3262), + [anon_sym_DASH_EQ] = ACTIONS(3262), + [anon_sym_LT_LT_EQ] = ACTIONS(3262), + [anon_sym_GT_GT_EQ] = ACTIONS(3262), + [anon_sym_AMP_EQ] = ACTIONS(3262), + [anon_sym_CARET_EQ] = ACTIONS(3262), + [anon_sym_PIPE_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ_GT] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3260), + [anon_sym_and] = ACTIONS(3260), + [anon_sym_bitor] = ACTIONS(3260), + [anon_sym_xor] = ACTIONS(3260), + [anon_sym_bitand] = ACTIONS(3260), + [anon_sym_not_eq] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3260), + [anon_sym_DOT_STAR] = ACTIONS(3262), + [anon_sym_DASH_GT] = ACTIONS(3260), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3260), + [anon_sym_decltype] = ACTIONS(3260), + [anon_sym_template] = ACTIONS(3260), + [anon_sym_operator] = ACTIONS(3260), + [anon_sym_DASH_GT_STAR] = ACTIONS(3262), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3260), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3260), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3260), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3260), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3260), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3260), + [anon_sym_MOZ_COLD] = ACTIONS(3260), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3260), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3260), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3260), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3260), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3260), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3260), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3260), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3260), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3260), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3260), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3260), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3260), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3260), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3260), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3260), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3260), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3260), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3260), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_NONNULL] = ACTIONS(3260), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3260), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3260), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3260), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3260), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3260), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_NORETURN] = ACTIONS(3260), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3260), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3260), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3260), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3260), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3260), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3260), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3260), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3260), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3260), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3260), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3260), + [anon_sym_MOZ_RAII] = ACTIONS(3260), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3260), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3260), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3260), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3260), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3260), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3260), + }, + [STATE(894)] = { + [sym_type_qualifier] = STATE(4227), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(5026), + [sym_sized_type_specifier] = STATE(3036), + [sym_enum_specifier] = STATE(3036), + [sym_struct_specifier] = STATE(3036), + [sym_union_specifier] = STATE(3036), + [sym_expression] = STATE(4726), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_type_descriptor] = STATE(7343), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_placeholder_type_specifier] = STATE(3036), + [sym_decltype_auto] = STATE(3035), + [sym_decltype] = STATE(2999), + [sym_class_specifier] = STATE(3036), + [sym__class_name] = STATE(8367), + [sym_dependent_type] = STATE(3036), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_type_parameter_pack_expansion] = STATE(7524), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5961), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [aux_sym__type_definition_type_repeat1] = STATE(4227), + [aux_sym_sized_type_specifier_repeat1] = STATE(4533), + [sym_identifier] = ACTIONS(3923), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3937), + [anon_sym_unsigned] = ACTIONS(3937), + [anon_sym_long] = ACTIONS(3937), + [anon_sym_short] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3941), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3945), + [anon_sym_union] = ACTIONS(3947), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3971), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3975), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(4017), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(895)] = { + [sym_identifier] = ACTIONS(3256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3258), + [anon_sym_COMMA] = ACTIONS(3258), + [anon_sym_RPAREN] = ACTIONS(3258), + [anon_sym_LPAREN2] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3256), + [anon_sym_SLASH] = ACTIONS(3256), + [anon_sym_PERCENT] = ACTIONS(3256), + [anon_sym_PIPE_PIPE] = ACTIONS(3258), + [anon_sym_AMP_AMP] = ACTIONS(3258), + [anon_sym_PIPE] = ACTIONS(3256), + [anon_sym_CARET] = ACTIONS(3256), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym_EQ_EQ] = ACTIONS(3258), + [anon_sym_BANG_EQ] = ACTIONS(3258), + [anon_sym_GT] = ACTIONS(3256), + [anon_sym_GT_EQ] = ACTIONS(3258), + [anon_sym_LT_EQ] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3256), + [anon_sym_LT_LT] = ACTIONS(3256), + [anon_sym_GT_GT] = ACTIONS(3256), + [anon_sym___extension__] = ACTIONS(3256), + [anon_sym_virtual] = ACTIONS(3256), + [anon_sym_extern] = ACTIONS(3256), + [anon_sym___attribute__] = ACTIONS(3256), + [anon_sym___attribute] = ACTIONS(3256), + [anon_sym_COLON_COLON] = ACTIONS(3258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3258), + [anon_sym___declspec] = ACTIONS(3256), + [anon_sym___based] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_static] = ACTIONS(3256), + [anon_sym_EQ] = ACTIONS(3256), + [anon_sym_register] = ACTIONS(3256), + [anon_sym_inline] = ACTIONS(3256), + [anon_sym___inline] = ACTIONS(3256), + [anon_sym___inline__] = ACTIONS(3256), + [anon_sym___forceinline] = ACTIONS(3256), + [anon_sym_thread_local] = ACTIONS(3256), + [anon_sym___thread] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_constexpr] = ACTIONS(3256), + [anon_sym_volatile] = ACTIONS(3256), + [anon_sym_restrict] = ACTIONS(3256), + [anon_sym___restrict__] = ACTIONS(3256), + [anon_sym__Atomic] = ACTIONS(3256), + [anon_sym__Noreturn] = ACTIONS(3256), + [anon_sym_noreturn] = ACTIONS(3256), + [anon_sym__Nonnull] = ACTIONS(3256), + [anon_sym_mutable] = ACTIONS(3256), + [anon_sym_constinit] = ACTIONS(3256), + [anon_sym_consteval] = ACTIONS(3256), + [anon_sym_alignas] = ACTIONS(3256), + [anon_sym__Alignas] = ACTIONS(3256), + [anon_sym_QMARK] = ACTIONS(3258), + [anon_sym_STAR_EQ] = ACTIONS(3258), + [anon_sym_SLASH_EQ] = ACTIONS(3258), + [anon_sym_PERCENT_EQ] = ACTIONS(3258), + [anon_sym_PLUS_EQ] = ACTIONS(3258), + [anon_sym_DASH_EQ] = ACTIONS(3258), + [anon_sym_LT_LT_EQ] = ACTIONS(3258), + [anon_sym_GT_GT_EQ] = ACTIONS(3258), + [anon_sym_AMP_EQ] = ACTIONS(3258), + [anon_sym_CARET_EQ] = ACTIONS(3258), + [anon_sym_PIPE_EQ] = ACTIONS(3258), + [anon_sym_LT_EQ_GT] = ACTIONS(3258), + [anon_sym_or] = ACTIONS(3256), + [anon_sym_and] = ACTIONS(3256), + [anon_sym_bitor] = ACTIONS(3256), + [anon_sym_xor] = ACTIONS(3256), + [anon_sym_bitand] = ACTIONS(3256), + [anon_sym_not_eq] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DOT] = ACTIONS(3256), + [anon_sym_DOT_STAR] = ACTIONS(3258), + [anon_sym_DASH_GT] = ACTIONS(3256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3256), + [anon_sym_decltype] = ACTIONS(3256), + [anon_sym_template] = ACTIONS(3256), + [anon_sym_operator] = ACTIONS(3256), + [anon_sym_DASH_GT_STAR] = ACTIONS(3258), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3256), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3256), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3256), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3256), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3256), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3256), + [anon_sym_MOZ_COLD] = ACTIONS(3256), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3256), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3256), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3256), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3256), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3256), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3256), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3256), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3256), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3256), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3256), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3256), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3256), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3256), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3256), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3256), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3256), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3256), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3256), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_NONNULL] = ACTIONS(3256), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3256), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3256), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3256), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3256), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3256), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_NORETURN] = ACTIONS(3256), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3256), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3256), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3256), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3256), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3256), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3256), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3256), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3256), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3256), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3256), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3256), + [anon_sym_MOZ_RAII] = ACTIONS(3256), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3256), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3256), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3256), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3256), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3256), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3256), + }, + [STATE(896)] = { + [sym_type_qualifier] = STATE(4227), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(5026), + [sym_sized_type_specifier] = STATE(3036), + [sym_enum_specifier] = STATE(3036), + [sym_struct_specifier] = STATE(3036), + [sym_union_specifier] = STATE(3036), + [sym_expression] = STATE(4686), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_type_descriptor] = STATE(7330), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_placeholder_type_specifier] = STATE(3036), + [sym_decltype_auto] = STATE(3035), + [sym_decltype] = STATE(2999), + [sym_class_specifier] = STATE(3036), + [sym__class_name] = STATE(8367), + [sym_dependent_type] = STATE(3036), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_type_parameter_pack_expansion] = STATE(7579), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5961), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [aux_sym__type_definition_type_repeat1] = STATE(4227), + [aux_sym_sized_type_specifier_repeat1] = STATE(4533), + [sym_identifier] = ACTIONS(3923), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3937), + [anon_sym_unsigned] = ACTIONS(3937), + [anon_sym_long] = ACTIONS(3937), + [anon_sym_short] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3941), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3945), + [anon_sym_union] = ACTIONS(3947), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3971), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3975), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(4019), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(897)] = { + [sym_identifier] = ACTIONS(3252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LPAREN2] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3252), + [anon_sym_CARET] = ACTIONS(3252), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3254), + [anon_sym_GT] = ACTIONS(3252), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_LT_LT] = ACTIONS(3252), + [anon_sym_GT_GT] = ACTIONS(3252), + [anon_sym___extension__] = ACTIONS(3252), + [anon_sym_virtual] = ACTIONS(3252), + [anon_sym_extern] = ACTIONS(3252), + [anon_sym___attribute__] = ACTIONS(3252), + [anon_sym___attribute] = ACTIONS(3252), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3254), + [anon_sym___declspec] = ACTIONS(3252), + [anon_sym___based] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_EQ] = ACTIONS(3252), + [anon_sym_register] = ACTIONS(3252), + [anon_sym_inline] = ACTIONS(3252), + [anon_sym___inline] = ACTIONS(3252), + [anon_sym___inline__] = ACTIONS(3252), + [anon_sym___forceinline] = ACTIONS(3252), + [anon_sym_thread_local] = ACTIONS(3252), + [anon_sym___thread] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_constexpr] = ACTIONS(3252), + [anon_sym_volatile] = ACTIONS(3252), + [anon_sym_restrict] = ACTIONS(3252), + [anon_sym___restrict__] = ACTIONS(3252), + [anon_sym__Atomic] = ACTIONS(3252), + [anon_sym__Noreturn] = ACTIONS(3252), + [anon_sym_noreturn] = ACTIONS(3252), + [anon_sym__Nonnull] = ACTIONS(3252), + [anon_sym_mutable] = ACTIONS(3252), + [anon_sym_constinit] = ACTIONS(3252), + [anon_sym_consteval] = ACTIONS(3252), + [anon_sym_alignas] = ACTIONS(3252), + [anon_sym__Alignas] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_LT_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_GT_EQ] = ACTIONS(3254), + [anon_sym_AMP_EQ] = ACTIONS(3254), + [anon_sym_CARET_EQ] = ACTIONS(3254), + [anon_sym_PIPE_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ_GT] = ACTIONS(3254), + [anon_sym_or] = ACTIONS(3252), + [anon_sym_and] = ACTIONS(3252), + [anon_sym_bitor] = ACTIONS(3252), + [anon_sym_xor] = ACTIONS(3252), + [anon_sym_bitand] = ACTIONS(3252), + [anon_sym_not_eq] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3252), + [anon_sym_DOT_STAR] = ACTIONS(3254), + [anon_sym_DASH_GT] = ACTIONS(3252), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3252), + [anon_sym_decltype] = ACTIONS(3252), + [anon_sym_template] = ACTIONS(3252), + [anon_sym_operator] = ACTIONS(3252), + [anon_sym_DASH_GT_STAR] = ACTIONS(3254), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3252), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3252), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3252), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3252), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3252), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3252), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3252), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3252), + [anon_sym_MOZ_COLD] = ACTIONS(3252), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3252), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3252), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3252), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3252), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3252), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3252), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3252), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3252), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3252), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3252), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3252), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3252), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3252), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3252), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3252), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3252), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3252), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3252), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3252), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3252), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_NONNULL] = ACTIONS(3252), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3252), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3252), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3252), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3252), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3252), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_NORETURN] = ACTIONS(3252), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3252), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3252), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3252), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3252), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3252), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3252), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3252), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3252), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3252), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3252), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3252), + [anon_sym_MOZ_RAII] = ACTIONS(3252), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3252), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3252), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3252), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3252), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3252), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3252), + }, + [STATE(898)] = { + [sym_identifier] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3293), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_RPAREN] = ACTIONS(3293), + [anon_sym_LPAREN2] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3291), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_CARET] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_EQ_EQ] = ACTIONS(3291), + [anon_sym_BANG_EQ] = ACTIONS(3291), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3291), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_LT_LT] = ACTIONS(3298), + [anon_sym_GT_GT] = ACTIONS(3298), + [anon_sym___extension__] = ACTIONS(3289), + [anon_sym_virtual] = ACTIONS(3289), + [anon_sym_extern] = ACTIONS(3289), + [anon_sym___attribute__] = ACTIONS(3289), + [anon_sym___attribute] = ACTIONS(3289), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3289), + [anon_sym___based] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_EQ] = ACTIONS(3300), + [anon_sym_register] = ACTIONS(3289), + [anon_sym_inline] = ACTIONS(3289), + [anon_sym___inline] = ACTIONS(3289), + [anon_sym___inline__] = ACTIONS(3289), + [anon_sym___forceinline] = ACTIONS(3289), + [anon_sym_thread_local] = ACTIONS(3289), + [anon_sym___thread] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_constexpr] = ACTIONS(3289), + [anon_sym_volatile] = ACTIONS(3289), + [anon_sym_restrict] = ACTIONS(3289), + [anon_sym___restrict__] = ACTIONS(3289), + [anon_sym__Atomic] = ACTIONS(3289), + [anon_sym__Noreturn] = ACTIONS(3289), + [anon_sym_noreturn] = ACTIONS(3289), + [anon_sym__Nonnull] = ACTIONS(3289), + [anon_sym_mutable] = ACTIONS(3289), + [anon_sym_constinit] = ACTIONS(3289), + [anon_sym_consteval] = ACTIONS(3289), + [anon_sym_alignas] = ACTIONS(3289), + [anon_sym__Alignas] = ACTIONS(3289), + [anon_sym_QMARK] = ACTIONS(3291), + [anon_sym_STAR_EQ] = ACTIONS(3291), + [anon_sym_SLASH_EQ] = ACTIONS(3291), + [anon_sym_PERCENT_EQ] = ACTIONS(3291), + [anon_sym_PLUS_EQ] = ACTIONS(3291), + [anon_sym_DASH_EQ] = ACTIONS(3291), + [anon_sym_LT_LT_EQ] = ACTIONS(3291), + [anon_sym_GT_GT_EQ] = ACTIONS(3291), + [anon_sym_AMP_EQ] = ACTIONS(3291), + [anon_sym_CARET_EQ] = ACTIONS(3291), + [anon_sym_PIPE_EQ] = ACTIONS(3291), + [anon_sym_LT_EQ_GT] = ACTIONS(3291), + [anon_sym_or] = ACTIONS(3298), + [anon_sym_and] = ACTIONS(3298), + [anon_sym_bitor] = ACTIONS(3298), + [anon_sym_xor] = ACTIONS(3298), + [anon_sym_bitand] = ACTIONS(3298), + [anon_sym_not_eq] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DOT] = ACTIONS(3298), + [anon_sym_DOT_STAR] = ACTIONS(3291), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3289), + [anon_sym_decltype] = ACTIONS(3289), + [anon_sym_template] = ACTIONS(3289), + [anon_sym_operator] = ACTIONS(3289), + [anon_sym_DASH_GT_STAR] = ACTIONS(3291), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3289), + [anon_sym_MOZ_COLD] = ACTIONS(3289), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3289), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3289), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3289), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3289), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3289), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3289), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3289), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3289), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3289), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3289), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3289), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3289), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_RAII] = ACTIONS(3289), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3289), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3289), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3289), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3289), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3289), + }, + [STATE(899)] = { + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_unaligned_ptr_modifier] = STATE(4347), + [sym_ms_pointer_modifier] = STATE(3248), + [sym__declarator] = STATE(6842), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6300), + [sym_array_declarator] = STATE(6300), + [sym_type_qualifier] = STATE(4266), + [sym_alignas_qualifier] = STATE(4606), + [sym_expression] = STATE(3454), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3591), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5989), + [sym_qualified_identifier] = STATE(3615), + [sym_qualified_type_identifier] = STATE(8316), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(4266), + [aux_sym_pointer_declarator_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(4021), + [anon_sym_LPAREN2] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym___extension__] = ACTIONS(4023), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym___based] = ACTIONS(51), + [sym_ms_restrict_modifier] = ACTIONS(4025), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(4025), + [sym_ms_signed_ptr_modifier] = ACTIONS(4025), + [anon_sym__unaligned] = ACTIONS(4027), + [anon_sym___unaligned] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(4029), + [anon_sym_constexpr] = ACTIONS(4029), + [anon_sym_volatile] = ACTIONS(4029), + [anon_sym_restrict] = ACTIONS(4029), + [anon_sym___restrict__] = ACTIONS(4029), + [anon_sym__Atomic] = ACTIONS(4029), + [anon_sym__Noreturn] = ACTIONS(4029), + [anon_sym_noreturn] = ACTIONS(4029), + [anon_sym__Nonnull] = ACTIONS(4029), + [anon_sym_mutable] = ACTIONS(4029), + [anon_sym_constinit] = ACTIONS(4029), + [anon_sym_consteval] = ACTIONS(4029), + [anon_sym_alignas] = ACTIONS(4031), + [anon_sym__Alignas] = ACTIONS(4031), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(3197), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(900)] = { + [sym_type_qualifier] = STATE(4227), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(5026), + [sym_sized_type_specifier] = STATE(3036), + [sym_enum_specifier] = STATE(3036), + [sym_struct_specifier] = STATE(3036), + [sym_union_specifier] = STATE(3036), + [sym_expression] = STATE(4819), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_type_descriptor] = STATE(7746), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_placeholder_type_specifier] = STATE(3036), + [sym_decltype_auto] = STATE(3035), + [sym_decltype] = STATE(2999), + [sym_class_specifier] = STATE(3036), + [sym__class_name] = STATE(8367), + [sym_dependent_type] = STATE(3036), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_type_parameter_pack_expansion] = STATE(8079), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5961), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [aux_sym__type_definition_type_repeat1] = STATE(4227), + [aux_sym_sized_type_specifier_repeat1] = STATE(4533), + [sym_identifier] = ACTIONS(3923), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3937), + [anon_sym_unsigned] = ACTIONS(3937), + [anon_sym_long] = ACTIONS(3937), + [anon_sym_short] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3941), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3945), + [anon_sym_union] = ACTIONS(3947), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3971), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3975), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(901)] = { + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_unaligned_ptr_modifier] = STATE(4347), + [sym_ms_pointer_modifier] = STATE(3248), + [sym__declarator] = STATE(6842), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6300), + [sym_array_declarator] = STATE(6300), + [sym_type_qualifier] = STATE(4266), + [sym_alignas_qualifier] = STATE(4606), + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3593), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6019), + [sym_qualified_identifier] = STATE(3606), + [sym_qualified_type_identifier] = STATE(8112), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym__type_definition_type_repeat1] = STATE(4266), + [aux_sym_pointer_declarator_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(4033), + [anon_sym_LPAREN2] = ACTIONS(4035), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(4037), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym___extension__] = ACTIONS(4039), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym___based] = ACTIONS(51), + [sym_ms_restrict_modifier] = ACTIONS(4025), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(4025), + [sym_ms_signed_ptr_modifier] = ACTIONS(4025), + [anon_sym__unaligned] = ACTIONS(4027), + [anon_sym___unaligned] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(4029), + [anon_sym_constexpr] = ACTIONS(4029), + [anon_sym_volatile] = ACTIONS(4029), + [anon_sym_restrict] = ACTIONS(4029), + [anon_sym___restrict__] = ACTIONS(4029), + [anon_sym__Atomic] = ACTIONS(4029), + [anon_sym__Noreturn] = ACTIONS(4029), + [anon_sym_noreturn] = ACTIONS(4029), + [anon_sym__Nonnull] = ACTIONS(4029), + [anon_sym_mutable] = ACTIONS(4029), + [anon_sym_constinit] = ACTIONS(4029), + [anon_sym_consteval] = ACTIONS(4029), + [anon_sym_alignas] = ACTIONS(4031), + [anon_sym__Alignas] = ACTIONS(4031), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(3197), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(902)] = { + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(4940), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_type_descriptor] = STATE(9037), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5948), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(4043), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4045), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(4047), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(903)] = { + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(4957), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_type_descriptor] = STATE(9164), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5948), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(4043), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4045), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(4047), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(904)] = { + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(5069), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_type_descriptor] = STATE(8908), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5948), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(4043), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4045), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(4047), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(905)] = { + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(5057), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_type_descriptor] = STATE(8435), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5948), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(4043), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4045), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(4047), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(906)] = { + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(5056), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_type_descriptor] = STATE(8806), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5948), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(4043), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4045), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(4047), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(907)] = { + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(4958), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_type_descriptor] = STATE(8692), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5948), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(4043), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4045), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(4047), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(908)] = { + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(4974), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_type_descriptor] = STATE(8786), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5948), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(4043), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4045), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(4047), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(909)] = { + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(4954), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_type_descriptor] = STATE(8901), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5948), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(4043), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4045), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(4047), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(910)] = { + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(5105), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_type_descriptor] = STATE(8499), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5948), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(4043), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4045), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(4047), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(911)] = { + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(4929), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_type_descriptor] = STATE(8603), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5948), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(4043), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4045), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(4047), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(912)] = { + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(4948), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_type_descriptor] = STATE(8523), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5948), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(4043), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4045), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(4047), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(913)] = { + [sym_type_qualifier] = STATE(4196), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(4950), + [sym_sized_type_specifier] = STATE(2473), + [sym_enum_specifier] = STATE(2473), + [sym_struct_specifier] = STATE(2473), + [sym_union_specifier] = STATE(2473), + [sym_expression] = STATE(4953), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_type_descriptor] = STATE(8535), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_placeholder_type_specifier] = STATE(2473), + [sym_decltype_auto] = STATE(2513), + [sym_decltype] = STATE(2446), + [sym_class_specifier] = STATE(2473), + [sym__class_name] = STATE(8004), + [sym_dependent_type] = STATE(2473), + [sym_template_type] = STATE(5613), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5948), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(5625), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym__type_definition_type_repeat1] = STATE(4196), + [aux_sym_sized_type_specifier_repeat1] = STATE(4516), + [sym_identifier] = ACTIONS(4043), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4045), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3397), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(4047), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(914)] = { + [sym_identifier] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3291), + [anon_sym_COMMA] = ACTIONS(3291), + [anon_sym_LPAREN2] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3293), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3291), + [anon_sym_PIPE_PIPE] = ACTIONS(3291), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_CARET] = ACTIONS(3291), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_EQ_EQ] = ACTIONS(3291), + [anon_sym_BANG_EQ] = ACTIONS(3291), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3291), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_LT_LT] = ACTIONS(3291), + [anon_sym_GT_GT] = ACTIONS(3291), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym___extension__] = ACTIONS(3289), + [anon_sym_virtual] = ACTIONS(3289), + [anon_sym_extern] = ACTIONS(3289), + [anon_sym___attribute__] = ACTIONS(3289), + [anon_sym___attribute] = ACTIONS(3289), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3293), + [anon_sym___declspec] = ACTIONS(3289), + [anon_sym___based] = ACTIONS(3289), + [anon_sym___cdecl] = ACTIONS(3289), + [anon_sym___clrcall] = ACTIONS(3289), + [anon_sym___stdcall] = ACTIONS(3289), + [anon_sym___fastcall] = ACTIONS(3289), + [anon_sym___thiscall] = ACTIONS(3289), + [anon_sym___vectorcall] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_RBRACK] = ACTIONS(3291), + [anon_sym_register] = ACTIONS(3289), + [anon_sym_inline] = ACTIONS(3289), + [anon_sym___inline] = ACTIONS(3289), + [anon_sym___inline__] = ACTIONS(3289), + [anon_sym___forceinline] = ACTIONS(3289), + [anon_sym_thread_local] = ACTIONS(3289), + [anon_sym___thread] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_constexpr] = ACTIONS(3289), + [anon_sym_volatile] = ACTIONS(3289), + [anon_sym_restrict] = ACTIONS(3289), + [anon_sym___restrict__] = ACTIONS(3289), + [anon_sym__Atomic] = ACTIONS(3289), + [anon_sym__Noreturn] = ACTIONS(3289), + [anon_sym_noreturn] = ACTIONS(3289), + [anon_sym__Nonnull] = ACTIONS(3289), + [anon_sym_mutable] = ACTIONS(3289), + [anon_sym_constinit] = ACTIONS(3289), + [anon_sym_consteval] = ACTIONS(3289), + [anon_sym_alignas] = ACTIONS(3289), + [anon_sym__Alignas] = ACTIONS(3289), + [anon_sym_QMARK] = ACTIONS(3291), + [anon_sym_LT_EQ_GT] = ACTIONS(3291), + [anon_sym_or] = ACTIONS(3298), + [anon_sym_and] = ACTIONS(3298), + [anon_sym_bitor] = ACTIONS(3298), + [anon_sym_xor] = ACTIONS(3298), + [anon_sym_bitand] = ACTIONS(3298), + [anon_sym_not_eq] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DOT] = ACTIONS(3298), + [anon_sym_DOT_STAR] = ACTIONS(3291), + [anon_sym_DASH_GT] = ACTIONS(3291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3289), + [anon_sym_decltype] = ACTIONS(3289), + [anon_sym_template] = ACTIONS(3289), + [anon_sym_operator] = ACTIONS(3289), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3289), + [anon_sym_MOZ_COLD] = ACTIONS(3289), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3289), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3289), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3289), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3289), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3289), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3289), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3289), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3289), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3289), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3289), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3289), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3289), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_RAII] = ACTIONS(3289), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3289), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3289), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3289), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3289), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3289), + }, + [STATE(915)] = { + [sym_function_definition] = STATE(564), + [sym_declaration] = STATE(564), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(4972), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_call_modifier] = STATE(1104), + [sym_declaration_list] = STATE(564), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4049), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [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(4053), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(916)] = { + [sym_function_definition] = STATE(430), + [sym_declaration] = STATE(430), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5019), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_call_modifier] = STATE(1110), + [sym_declaration_list] = STATE(430), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4049), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [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(4055), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(917)] = { + [sym_identifier] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym___extension__] = ACTIONS(3289), + [anon_sym_virtual] = ACTIONS(3289), + [anon_sym_extern] = ACTIONS(3289), + [anon_sym___attribute__] = ACTIONS(3289), + [anon_sym___attribute] = ACTIONS(3289), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3289), + [anon_sym___based] = ACTIONS(3289), + [anon_sym___cdecl] = ACTIONS(3289), + [anon_sym___clrcall] = ACTIONS(3289), + [anon_sym___stdcall] = ACTIONS(3289), + [anon_sym___fastcall] = ACTIONS(3289), + [anon_sym___thiscall] = ACTIONS(3289), + [anon_sym___vectorcall] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_signed] = ACTIONS(3289), + [anon_sym_unsigned] = ACTIONS(3289), + [anon_sym_long] = ACTIONS(3289), + [anon_sym_short] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_register] = ACTIONS(3289), + [anon_sym_inline] = ACTIONS(3289), + [anon_sym___inline] = ACTIONS(3289), + [anon_sym___inline__] = ACTIONS(3289), + [anon_sym___forceinline] = ACTIONS(3289), + [anon_sym_thread_local] = ACTIONS(3289), + [anon_sym___thread] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_constexpr] = ACTIONS(3289), + [anon_sym_volatile] = ACTIONS(3289), + [anon_sym_restrict] = ACTIONS(3289), + [anon_sym___restrict__] = ACTIONS(3289), + [anon_sym__Atomic] = ACTIONS(3289), + [anon_sym__Noreturn] = ACTIONS(3289), + [anon_sym_noreturn] = ACTIONS(3289), + [anon_sym__Nonnull] = ACTIONS(3289), + [anon_sym_mutable] = ACTIONS(3289), + [anon_sym_constinit] = ACTIONS(3289), + [anon_sym_consteval] = ACTIONS(3289), + [anon_sym_alignas] = ACTIONS(3289), + [anon_sym__Alignas] = ACTIONS(3289), + [sym_primitive_type] = ACTIONS(3289), + [anon_sym_enum] = ACTIONS(3289), + [anon_sym_class] = ACTIONS(3289), + [anon_sym_struct] = ACTIONS(3289), + [anon_sym_union] = ACTIONS(3289), + [anon_sym_COLON] = ACTIONS(3289), + [anon_sym_or] = ACTIONS(3289), + [anon_sym_and] = ACTIONS(3289), + [anon_sym_asm] = ACTIONS(3289), + [anon_sym___asm__] = ACTIONS(3289), + [anon_sym___asm] = ACTIONS(3289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3289), + [anon_sym_decltype] = ACTIONS(3289), + [anon_sym_final] = ACTIONS(3289), + [anon_sym_override] = ACTIONS(3289), + [anon_sym_explicit] = ACTIONS(3289), + [anon_sym_typename] = ACTIONS(3289), + [anon_sym_template] = ACTIONS(3289), + [anon_sym_GT2] = ACTIONS(3296), + [anon_sym_operator] = ACTIONS(3289), + [anon_sym_try] = ACTIONS(3289), + [anon_sym_friend] = ACTIONS(3289), + [anon_sym_using] = ACTIONS(3289), + [anon_sym_concept] = ACTIONS(3289), + [anon_sym_requires] = ACTIONS(3289), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3289), + [anon_sym_MOZ_COLD] = ACTIONS(3289), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3289), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3289), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3289), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3289), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3289), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3289), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3289), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3289), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3289), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3289), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3289), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3289), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_RAII] = ACTIONS(3289), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3289), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3289), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3289), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3289), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3289), + }, + [STATE(918)] = { + [sym_expression] = STATE(4060), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_initializer_list] = STATE(4206), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3319), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), + [anon_sym_COMMA] = ACTIONS(3321), + [aux_sym_preproc_if_token2] = ACTIONS(3321), + [aux_sym_preproc_else_token1] = ACTIONS(3321), + [aux_sym_preproc_elif_token1] = ACTIONS(3319), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3321), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3321), + [anon_sym_LPAREN2] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(4057), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3321), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE] = ACTIONS(3319), + [anon_sym_CARET] = ACTIONS(3321), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_LT_LT] = ACTIONS(3321), + [anon_sym_GT_GT] = ACTIONS(3321), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3321), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_QMARK] = ACTIONS(3321), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_LT_EQ_GT] = ACTIONS(3321), + [anon_sym_or] = ACTIONS(3319), + [anon_sym_and] = ACTIONS(3319), + [anon_sym_bitor] = ACTIONS(3319), + [anon_sym_xor] = ACTIONS(3319), + [anon_sym_bitand] = ACTIONS(3319), + [anon_sym_not_eq] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(3319), + [anon_sym_DOT_STAR] = ACTIONS(3321), + [anon_sym_DASH_GT] = ACTIONS(3321), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(919)] = { + [sym_function_definition] = STATE(201), + [sym_declaration] = STATE(201), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5011), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_call_modifier] = STATE(1108), + [sym_declaration_list] = STATE(201), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4049), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [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(4081), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(920)] = { + [sym_function_definition] = STATE(609), + [sym_declaration] = STATE(609), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(4973), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_call_modifier] = STATE(1100), + [sym_declaration_list] = STATE(609), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4049), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [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(4083), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(921)] = { + [sym_function_definition] = STATE(578), + [sym_declaration] = STATE(578), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(4972), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_call_modifier] = STATE(1104), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(9005), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1721), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1734), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4085), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [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_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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(4087), + [anon_sym_struct] = ACTIONS(4089), + [anon_sym_union] = ACTIONS(4091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(922)] = { + [sym_function_definition] = STATE(1283), + [sym_declaration] = STATE(1283), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5023), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_call_modifier] = STATE(1111), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(9288), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1721), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1734), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4085), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [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_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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(4093), + [anon_sym_struct] = ACTIONS(4095), + [anon_sym_union] = ACTIONS(4097), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(923)] = { + [sym_function_definition] = STATE(1264), + [sym_declaration] = STATE(1264), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5023), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_call_modifier] = STATE(1111), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8413), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1721), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1734), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4085), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [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_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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(4099), + [anon_sym_struct] = ACTIONS(4101), + [anon_sym_union] = ACTIONS(4103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(924)] = { + [sym_function_definition] = STATE(605), + [sym_declaration] = STATE(605), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(4973), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_call_modifier] = STATE(1100), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8821), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1721), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1734), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4085), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [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_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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(4105), + [anon_sym_struct] = ACTIONS(4107), + [anon_sym_union] = ACTIONS(4109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(925)] = { + [sym_function_definition] = STATE(509), + [sym_declaration] = STATE(509), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(4973), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_call_modifier] = STATE(1100), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8483), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1721), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1734), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4085), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [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_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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(4111), + [anon_sym_struct] = ACTIONS(4113), + [anon_sym_union] = ACTIONS(4115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(926)] = { + [sym_function_definition] = STATE(514), + [sym_declaration] = STATE(514), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(4972), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_call_modifier] = STATE(1104), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8899), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1721), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1734), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4085), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [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_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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(4117), + [anon_sym_struct] = ACTIONS(4119), + [anon_sym_union] = ACTIONS(4121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(927)] = { + [sym_function_definition] = STATE(228), + [sym_declaration] = STATE(228), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5011), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_call_modifier] = STATE(1108), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(9289), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1721), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1734), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4085), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [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_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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(4123), + [anon_sym_struct] = ACTIONS(4125), + [anon_sym_union] = ACTIONS(4127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(928)] = { + [sym_function_definition] = STATE(250), + [sym_declaration] = STATE(250), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5011), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_call_modifier] = STATE(1108), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8637), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1721), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1734), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4085), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [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_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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(4129), + [anon_sym_struct] = ACTIONS(4131), + [anon_sym_union] = ACTIONS(4133), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(929)] = { + [sym_function_definition] = STATE(1047), + [sym_declaration] = STATE(1047), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5034), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_call_modifier] = STATE(1112), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8730), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1721), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1734), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4085), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [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_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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(4135), + [anon_sym_struct] = ACTIONS(4137), + [anon_sym_union] = ACTIONS(4139), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(930)] = { + [sym_function_definition] = STATE(1077), + [sym_declaration] = STATE(1077), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5034), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_call_modifier] = STATE(1112), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8628), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1721), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1734), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4085), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [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_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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(4141), + [anon_sym_struct] = ACTIONS(4143), + [anon_sym_union] = ACTIONS(4145), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(931)] = { + [sym_function_definition] = STATE(532), + [sym_declaration] = STATE(532), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5019), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_call_modifier] = STATE(1110), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8780), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1721), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1734), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4085), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [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_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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(4147), + [anon_sym_struct] = ACTIONS(4149), + [anon_sym_union] = ACTIONS(4151), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(932)] = { + [sym_function_definition] = STATE(534), + [sym_declaration] = STATE(534), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5019), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_call_modifier] = STATE(1110), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8945), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1721), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1734), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4085), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [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_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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(4153), + [anon_sym_struct] = ACTIONS(4155), + [anon_sym_union] = ACTIONS(4157), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(933)] = { + [sym_function_definition] = STATE(1180), + [sym_declaration] = STATE(1180), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5042), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_call_modifier] = STATE(1113), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8783), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1721), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1734), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4085), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [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_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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(4159), + [anon_sym_struct] = ACTIONS(4161), + [anon_sym_union] = ACTIONS(4163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(934)] = { + [sym_function_definition] = STATE(1196), + [sym_declaration] = STATE(1196), + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5042), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_ms_call_modifier] = STATE(1113), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym__class_name] = STATE(8845), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1721), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1734), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4085), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [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_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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(4165), + [anon_sym_struct] = ACTIONS(4167), + [anon_sym_union] = ACTIONS(4169), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(935)] = { + [sym_type_qualifier] = STATE(935), + [sym_alignas_qualifier] = STATE(955), + [aux_sym__type_definition_type_repeat1] = STATE(935), + [sym_identifier] = ACTIONS(4171), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4173), + [anon_sym_COMMA] = ACTIONS(4173), + [anon_sym_RPAREN] = ACTIONS(4173), + [anon_sym_LPAREN2] = ACTIONS(4173), + [anon_sym_TILDE] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [anon_sym_AMP_AMP] = ACTIONS(4173), + [anon_sym_AMP] = ACTIONS(4171), + [anon_sym_SEMI] = ACTIONS(4173), + [anon_sym___extension__] = ACTIONS(4175), + [anon_sym_virtual] = ACTIONS(4171), + [anon_sym_extern] = ACTIONS(4171), + [anon_sym___attribute__] = ACTIONS(4171), + [anon_sym___attribute] = ACTIONS(4171), + [anon_sym_COLON_COLON] = ACTIONS(4173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4173), + [anon_sym___declspec] = ACTIONS(4171), + [anon_sym___based] = ACTIONS(4171), + [anon_sym___cdecl] = ACTIONS(4171), + [anon_sym___clrcall] = ACTIONS(4171), + [anon_sym___stdcall] = ACTIONS(4171), + [anon_sym___fastcall] = ACTIONS(4171), + [anon_sym___thiscall] = ACTIONS(4171), + [anon_sym___vectorcall] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_signed] = ACTIONS(4171), + [anon_sym_unsigned] = ACTIONS(4171), + [anon_sym_long] = ACTIONS(4171), + [anon_sym_short] = ACTIONS(4171), + [anon_sym_LBRACK] = ACTIONS(4171), + [anon_sym_static] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(4173), + [anon_sym_register] = ACTIONS(4171), + [anon_sym_inline] = ACTIONS(4171), + [anon_sym___inline] = ACTIONS(4171), + [anon_sym___inline__] = ACTIONS(4171), + [anon_sym___forceinline] = ACTIONS(4171), + [anon_sym_thread_local] = ACTIONS(4171), + [anon_sym___thread] = ACTIONS(4171), + [anon_sym_const] = ACTIONS(4175), + [anon_sym_constexpr] = ACTIONS(4175), + [anon_sym_volatile] = ACTIONS(4175), + [anon_sym_restrict] = ACTIONS(4175), + [anon_sym___restrict__] = ACTIONS(4175), + [anon_sym__Atomic] = ACTIONS(4175), + [anon_sym__Noreturn] = ACTIONS(4175), + [anon_sym_noreturn] = ACTIONS(4175), + [anon_sym__Nonnull] = ACTIONS(4175), + [anon_sym_mutable] = ACTIONS(4175), + [anon_sym_constinit] = ACTIONS(4175), + [anon_sym_consteval] = ACTIONS(4175), + [anon_sym_alignas] = ACTIONS(4178), + [anon_sym__Alignas] = ACTIONS(4178), + [sym_primitive_type] = ACTIONS(4171), + [anon_sym_enum] = ACTIONS(4171), + [anon_sym_class] = ACTIONS(4171), + [anon_sym_struct] = ACTIONS(4171), + [anon_sym_union] = ACTIONS(4171), + [anon_sym_asm] = ACTIONS(4171), + [anon_sym___asm__] = ACTIONS(4171), + [anon_sym___asm] = ACTIONS(4171), + [anon_sym_DASH_GT] = ACTIONS(4173), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4171), + [anon_sym_decltype] = ACTIONS(4171), + [anon_sym_final] = ACTIONS(4171), + [anon_sym_override] = ACTIONS(4171), + [anon_sym_typename] = ACTIONS(4171), + [anon_sym_template] = ACTIONS(4171), + [anon_sym_GT2] = ACTIONS(4173), + [anon_sym_operator] = ACTIONS(4171), + [anon_sym_try] = ACTIONS(4171), + [anon_sym_noexcept] = ACTIONS(4171), + [anon_sym_throw] = ACTIONS(4171), + [anon_sym_requires] = ACTIONS(4171), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4171), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4171), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4171), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4171), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4171), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4171), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4171), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4171), + [anon_sym_MOZ_COLD] = ACTIONS(4171), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4171), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4171), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4171), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4171), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4171), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4171), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4171), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4171), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4171), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4171), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4171), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4171), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4171), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4171), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4171), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4171), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4171), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4171), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4171), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4171), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4171), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4171), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4171), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4171), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4171), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4171), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4171), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4171), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4171), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4171), + [anon_sym_MOZ_NONNULL] = ACTIONS(4171), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4171), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4171), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4171), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4171), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4171), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4171), + [anon_sym_MOZ_NORETURN] = ACTIONS(4171), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4171), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4171), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4171), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4171), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4171), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4171), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4171), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4171), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4171), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4171), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4171), + [anon_sym_MOZ_RAII] = ACTIONS(4171), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4171), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4171), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4171), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4171), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4171), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4171), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4171), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4171), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4171), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4171), + }, + [STATE(936)] = { + [sym_identifier] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4183), + [anon_sym_RPAREN] = ACTIONS(4183), + [anon_sym_LPAREN2] = ACTIONS(4183), + [anon_sym_TILDE] = ACTIONS(4183), + [anon_sym_STAR] = ACTIONS(4183), + [anon_sym_PIPE_PIPE] = ACTIONS(4183), + [anon_sym_AMP_AMP] = ACTIONS(4183), + [anon_sym_AMP] = ACTIONS(4181), + [anon_sym_SEMI] = ACTIONS(4183), + [anon_sym___extension__] = ACTIONS(4181), + [anon_sym_virtual] = ACTIONS(4181), + [anon_sym_extern] = ACTIONS(4181), + [anon_sym___attribute__] = ACTIONS(4181), + [anon_sym___attribute] = ACTIONS(4181), + [anon_sym_COLON_COLON] = ACTIONS(4183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4183), + [anon_sym___declspec] = ACTIONS(4181), + [anon_sym___based] = ACTIONS(4181), + [anon_sym___cdecl] = ACTIONS(4181), + [anon_sym___clrcall] = ACTIONS(4181), + [anon_sym___stdcall] = ACTIONS(4181), + [anon_sym___fastcall] = ACTIONS(4181), + [anon_sym___thiscall] = ACTIONS(4181), + [anon_sym___vectorcall] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4183), + [anon_sym_signed] = ACTIONS(4181), + [anon_sym_unsigned] = ACTIONS(4181), + [anon_sym_long] = ACTIONS(4181), + [anon_sym_short] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_static] = ACTIONS(4181), + [anon_sym_EQ] = ACTIONS(4183), + [anon_sym_register] = ACTIONS(4181), + [anon_sym_inline] = ACTIONS(4181), + [anon_sym___inline] = ACTIONS(4181), + [anon_sym___inline__] = ACTIONS(4181), + [anon_sym___forceinline] = ACTIONS(4181), + [anon_sym_thread_local] = ACTIONS(4181), + [anon_sym___thread] = ACTIONS(4181), + [anon_sym_const] = ACTIONS(4181), + [anon_sym_constexpr] = ACTIONS(4181), + [anon_sym_volatile] = ACTIONS(4181), + [anon_sym_restrict] = ACTIONS(4181), + [anon_sym___restrict__] = ACTIONS(4181), + [anon_sym__Atomic] = ACTIONS(4181), + [anon_sym__Noreturn] = ACTIONS(4181), + [anon_sym_noreturn] = ACTIONS(4181), + [anon_sym__Nonnull] = ACTIONS(4181), + [anon_sym_mutable] = ACTIONS(4181), + [anon_sym_constinit] = ACTIONS(4181), + [anon_sym_consteval] = ACTIONS(4181), + [anon_sym_alignas] = ACTIONS(4181), + [anon_sym__Alignas] = ACTIONS(4181), + [sym_primitive_type] = ACTIONS(4181), + [anon_sym_enum] = ACTIONS(4181), + [anon_sym_class] = ACTIONS(4181), + [anon_sym_struct] = ACTIONS(4181), + [anon_sym_union] = ACTIONS(4181), + [anon_sym_or] = ACTIONS(4181), + [anon_sym_and] = ACTIONS(4181), + [anon_sym_asm] = ACTIONS(4181), + [anon_sym___asm__] = ACTIONS(4181), + [anon_sym___asm] = ACTIONS(4181), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4181), + [anon_sym_decltype] = ACTIONS(4181), + [anon_sym_final] = ACTIONS(4181), + [anon_sym_override] = ACTIONS(4181), + [anon_sym_explicit] = ACTIONS(4181), + [anon_sym_typename] = ACTIONS(4181), + [anon_sym_template] = ACTIONS(4181), + [anon_sym_GT2] = ACTIONS(4183), + [anon_sym_operator] = ACTIONS(4181), + [anon_sym_try] = ACTIONS(4181), + [anon_sym_friend] = ACTIONS(4181), + [anon_sym_using] = ACTIONS(4181), + [anon_sym_concept] = ACTIONS(4181), + [anon_sym_requires] = ACTIONS(4181), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4181), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4181), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4181), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4181), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4181), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4181), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4181), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4181), + [anon_sym_MOZ_COLD] = ACTIONS(4181), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4181), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4181), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4181), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4181), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4181), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4181), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4181), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4181), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4181), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4181), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4181), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4181), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4181), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4181), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4181), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4181), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4181), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4181), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4181), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4181), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4181), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4181), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4181), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4181), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4181), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4181), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4181), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4181), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4181), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4181), + [anon_sym_MOZ_NONNULL] = ACTIONS(4181), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4181), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4181), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4181), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4181), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4181), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4181), + [anon_sym_MOZ_NORETURN] = ACTIONS(4181), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4181), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4181), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4181), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4181), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4181), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4181), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4181), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4181), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4181), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4181), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4181), + [anon_sym_MOZ_RAII] = ACTIONS(4181), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4181), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4181), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4181), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4181), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4181), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4181), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4181), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4181), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4181), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4181), + }, + [STATE(937)] = { + [sym_expression] = STATE(4060), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_initializer_list] = STATE(4206), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), + [anon_sym_COMMA] = ACTIONS(3321), + [anon_sym_LPAREN2] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3321), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE] = ACTIONS(3319), + [anon_sym_CARET] = ACTIONS(3321), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_LT_LT] = ACTIONS(3321), + [anon_sym_GT_GT] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym___attribute__] = ACTIONS(3319), + [anon_sym___attribute] = ACTIONS(3319), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3321), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_QMARK] = ACTIONS(3321), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_LT_EQ_GT] = ACTIONS(3321), + [anon_sym_or] = ACTIONS(3319), + [anon_sym_and] = ACTIONS(3319), + [anon_sym_bitor] = ACTIONS(3319), + [anon_sym_xor] = ACTIONS(3319), + [anon_sym_bitand] = ACTIONS(3319), + [anon_sym_not_eq] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(3319), + [anon_sym_DOT_STAR] = ACTIONS(3321), + [anon_sym_DASH_GT] = ACTIONS(3321), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(938)] = { + [sym_identifier] = ACTIONS(4209), + [anon_sym_COMMA] = ACTIONS(4211), + [anon_sym_RPAREN] = ACTIONS(4211), + [anon_sym_LPAREN2] = ACTIONS(4211), + [anon_sym_TILDE] = ACTIONS(4211), + [anon_sym_STAR] = ACTIONS(4211), + [anon_sym_PIPE_PIPE] = ACTIONS(4211), + [anon_sym_AMP_AMP] = ACTIONS(4211), + [anon_sym_AMP] = ACTIONS(4209), + [anon_sym_SEMI] = ACTIONS(4211), + [anon_sym___extension__] = ACTIONS(4209), + [anon_sym_virtual] = ACTIONS(4209), + [anon_sym_extern] = ACTIONS(4209), + [anon_sym___attribute__] = ACTIONS(4209), + [anon_sym___attribute] = ACTIONS(4209), + [anon_sym_COLON_COLON] = ACTIONS(4211), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4211), + [anon_sym___declspec] = ACTIONS(4209), + [anon_sym___based] = ACTIONS(4209), + [anon_sym___cdecl] = ACTIONS(4209), + [anon_sym___clrcall] = ACTIONS(4209), + [anon_sym___stdcall] = ACTIONS(4209), + [anon_sym___fastcall] = ACTIONS(4209), + [anon_sym___thiscall] = ACTIONS(4209), + [anon_sym___vectorcall] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_signed] = ACTIONS(4209), + [anon_sym_unsigned] = ACTIONS(4209), + [anon_sym_long] = ACTIONS(4209), + [anon_sym_short] = ACTIONS(4209), + [anon_sym_LBRACK] = ACTIONS(4209), + [anon_sym_static] = ACTIONS(4209), + [anon_sym_EQ] = ACTIONS(4211), + [anon_sym_register] = ACTIONS(4209), + [anon_sym_inline] = ACTIONS(4209), + [anon_sym___inline] = ACTIONS(4209), + [anon_sym___inline__] = ACTIONS(4209), + [anon_sym___forceinline] = ACTIONS(4209), + [anon_sym_thread_local] = ACTIONS(4209), + [anon_sym___thread] = ACTIONS(4209), + [anon_sym_const] = ACTIONS(4209), + [anon_sym_constexpr] = ACTIONS(4209), + [anon_sym_volatile] = ACTIONS(4209), + [anon_sym_restrict] = ACTIONS(4209), + [anon_sym___restrict__] = ACTIONS(4209), + [anon_sym__Atomic] = ACTIONS(4209), + [anon_sym__Noreturn] = ACTIONS(4209), + [anon_sym_noreturn] = ACTIONS(4209), + [anon_sym__Nonnull] = ACTIONS(4209), + [anon_sym_mutable] = ACTIONS(4209), + [anon_sym_constinit] = ACTIONS(4209), + [anon_sym_consteval] = ACTIONS(4209), + [anon_sym_alignas] = ACTIONS(4209), + [anon_sym__Alignas] = ACTIONS(4209), + [sym_primitive_type] = ACTIONS(4209), + [anon_sym_enum] = ACTIONS(4209), + [anon_sym_class] = ACTIONS(4209), + [anon_sym_struct] = ACTIONS(4209), + [anon_sym_union] = ACTIONS(4209), + [anon_sym_or] = ACTIONS(4209), + [anon_sym_and] = ACTIONS(4209), + [anon_sym_asm] = ACTIONS(4209), + [anon_sym___asm__] = ACTIONS(4209), + [anon_sym___asm] = ACTIONS(4209), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4209), + [anon_sym_decltype] = ACTIONS(4209), + [anon_sym_final] = ACTIONS(4209), + [anon_sym_override] = ACTIONS(4209), + [anon_sym_explicit] = ACTIONS(4209), + [anon_sym_typename] = ACTIONS(4209), + [anon_sym_template] = ACTIONS(4209), + [anon_sym_GT2] = ACTIONS(4211), + [anon_sym_operator] = ACTIONS(4209), + [anon_sym_try] = ACTIONS(4209), + [anon_sym_friend] = ACTIONS(4209), + [anon_sym_using] = ACTIONS(4209), + [anon_sym_concept] = ACTIONS(4209), + [anon_sym_requires] = ACTIONS(4209), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4209), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4209), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4209), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4209), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4209), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4209), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4209), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4209), + [anon_sym_MOZ_COLD] = ACTIONS(4209), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4209), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4209), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4209), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4209), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4209), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4209), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4209), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4209), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4209), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4209), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4209), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4209), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4209), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4209), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4209), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4209), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4209), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4209), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4209), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4209), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4209), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4209), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4209), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4209), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4209), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4209), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4209), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4209), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4209), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4209), + [anon_sym_MOZ_NONNULL] = ACTIONS(4209), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4209), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4209), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4209), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4209), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4209), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4209), + [anon_sym_MOZ_NORETURN] = ACTIONS(4209), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4209), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4209), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4209), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4209), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4209), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4209), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4209), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4209), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4209), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4209), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4209), + [anon_sym_MOZ_RAII] = ACTIONS(4209), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4209), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4209), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4209), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4209), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4209), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4209), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4209), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4209), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4209), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4209), + }, + [STATE(939)] = { + [sym_identifier] = ACTIONS(4213), + [anon_sym_COMMA] = ACTIONS(4215), + [anon_sym_RPAREN] = ACTIONS(4215), + [anon_sym_LPAREN2] = ACTIONS(4215), + [anon_sym_TILDE] = ACTIONS(4215), + [anon_sym_STAR] = ACTIONS(4215), + [anon_sym_PIPE_PIPE] = ACTIONS(4215), + [anon_sym_AMP_AMP] = ACTIONS(4215), + [anon_sym_AMP] = ACTIONS(4213), + [anon_sym_SEMI] = ACTIONS(4215), + [anon_sym___extension__] = ACTIONS(4213), + [anon_sym_virtual] = ACTIONS(4213), + [anon_sym_extern] = ACTIONS(4213), + [anon_sym___attribute__] = ACTIONS(4213), + [anon_sym___attribute] = ACTIONS(4213), + [anon_sym_COLON_COLON] = ACTIONS(4215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4215), + [anon_sym___declspec] = ACTIONS(4213), + [anon_sym___based] = ACTIONS(4213), + [anon_sym___cdecl] = ACTIONS(4213), + [anon_sym___clrcall] = ACTIONS(4213), + [anon_sym___stdcall] = ACTIONS(4213), + [anon_sym___fastcall] = ACTIONS(4213), + [anon_sym___thiscall] = ACTIONS(4213), + [anon_sym___vectorcall] = ACTIONS(4213), + [anon_sym_LBRACE] = ACTIONS(4215), + [anon_sym_signed] = ACTIONS(4213), + [anon_sym_unsigned] = ACTIONS(4213), + [anon_sym_long] = ACTIONS(4213), + [anon_sym_short] = ACTIONS(4213), + [anon_sym_LBRACK] = ACTIONS(4213), + [anon_sym_static] = ACTIONS(4213), + [anon_sym_EQ] = ACTIONS(4215), + [anon_sym_register] = ACTIONS(4213), + [anon_sym_inline] = ACTIONS(4213), + [anon_sym___inline] = ACTIONS(4213), + [anon_sym___inline__] = ACTIONS(4213), + [anon_sym___forceinline] = ACTIONS(4213), + [anon_sym_thread_local] = ACTIONS(4213), + [anon_sym___thread] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4213), + [anon_sym_constexpr] = ACTIONS(4213), + [anon_sym_volatile] = ACTIONS(4213), + [anon_sym_restrict] = ACTIONS(4213), + [anon_sym___restrict__] = ACTIONS(4213), + [anon_sym__Atomic] = ACTIONS(4213), + [anon_sym__Noreturn] = ACTIONS(4213), + [anon_sym_noreturn] = ACTIONS(4213), + [anon_sym__Nonnull] = ACTIONS(4213), + [anon_sym_mutable] = ACTIONS(4213), + [anon_sym_constinit] = ACTIONS(4213), + [anon_sym_consteval] = ACTIONS(4213), + [anon_sym_alignas] = ACTIONS(4213), + [anon_sym__Alignas] = ACTIONS(4213), + [sym_primitive_type] = ACTIONS(4213), + [anon_sym_enum] = ACTIONS(4213), + [anon_sym_class] = ACTIONS(4213), + [anon_sym_struct] = ACTIONS(4213), + [anon_sym_union] = ACTIONS(4213), + [anon_sym_or] = ACTIONS(4213), + [anon_sym_and] = ACTIONS(4213), + [anon_sym_asm] = ACTIONS(4213), + [anon_sym___asm__] = ACTIONS(4213), + [anon_sym___asm] = ACTIONS(4213), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4213), + [anon_sym_decltype] = ACTIONS(4213), + [anon_sym_final] = ACTIONS(4213), + [anon_sym_override] = ACTIONS(4213), + [anon_sym_explicit] = ACTIONS(4213), + [anon_sym_typename] = ACTIONS(4213), + [anon_sym_template] = ACTIONS(4213), + [anon_sym_GT2] = ACTIONS(4215), + [anon_sym_operator] = ACTIONS(4213), + [anon_sym_try] = ACTIONS(4213), + [anon_sym_friend] = ACTIONS(4213), + [anon_sym_using] = ACTIONS(4213), + [anon_sym_concept] = ACTIONS(4213), + [anon_sym_requires] = ACTIONS(4213), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4213), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4213), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4213), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4213), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4213), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4213), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4213), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4213), + [anon_sym_MOZ_COLD] = ACTIONS(4213), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4213), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4213), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4213), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4213), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4213), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4213), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4213), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4213), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4213), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4213), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4213), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4213), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4213), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4213), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4213), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4213), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4213), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4213), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4213), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4213), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_NONNULL] = ACTIONS(4213), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4213), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4213), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4213), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4213), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4213), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_NORETURN] = ACTIONS(4213), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4213), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4213), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4213), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4213), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4213), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4213), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4213), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4213), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4213), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4213), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4213), + [anon_sym_MOZ_RAII] = ACTIONS(4213), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4213), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4213), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4213), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4213), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4213), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4213), + }, + [STATE(940)] = { + [sym_identifier] = ACTIONS(4213), + [anon_sym_COMMA] = ACTIONS(4215), + [anon_sym_RPAREN] = ACTIONS(4215), + [anon_sym_LPAREN2] = ACTIONS(4215), + [anon_sym_TILDE] = ACTIONS(4215), + [anon_sym_STAR] = ACTIONS(4215), + [anon_sym_PIPE_PIPE] = ACTIONS(4215), + [anon_sym_AMP_AMP] = ACTIONS(4215), + [anon_sym_AMP] = ACTIONS(4213), + [anon_sym_SEMI] = ACTIONS(4215), + [anon_sym___extension__] = ACTIONS(4213), + [anon_sym_virtual] = ACTIONS(4213), + [anon_sym_extern] = ACTIONS(4213), + [anon_sym___attribute__] = ACTIONS(4213), + [anon_sym___attribute] = ACTIONS(4213), + [anon_sym_COLON_COLON] = ACTIONS(4215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4215), + [anon_sym___declspec] = ACTIONS(4213), + [anon_sym___based] = ACTIONS(4213), + [anon_sym___cdecl] = ACTIONS(4213), + [anon_sym___clrcall] = ACTIONS(4213), + [anon_sym___stdcall] = ACTIONS(4213), + [anon_sym___fastcall] = ACTIONS(4213), + [anon_sym___thiscall] = ACTIONS(4213), + [anon_sym___vectorcall] = ACTIONS(4213), + [anon_sym_LBRACE] = ACTIONS(4215), + [anon_sym_signed] = ACTIONS(4213), + [anon_sym_unsigned] = ACTIONS(4213), + [anon_sym_long] = ACTIONS(4213), + [anon_sym_short] = ACTIONS(4213), + [anon_sym_LBRACK] = ACTIONS(4213), + [anon_sym_static] = ACTIONS(4213), + [anon_sym_EQ] = ACTIONS(4215), + [anon_sym_register] = ACTIONS(4213), + [anon_sym_inline] = ACTIONS(4213), + [anon_sym___inline] = ACTIONS(4213), + [anon_sym___inline__] = ACTIONS(4213), + [anon_sym___forceinline] = ACTIONS(4213), + [anon_sym_thread_local] = ACTIONS(4213), + [anon_sym___thread] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4213), + [anon_sym_constexpr] = ACTIONS(4213), + [anon_sym_volatile] = ACTIONS(4213), + [anon_sym_restrict] = ACTIONS(4213), + [anon_sym___restrict__] = ACTIONS(4213), + [anon_sym__Atomic] = ACTIONS(4213), + [anon_sym__Noreturn] = ACTIONS(4213), + [anon_sym_noreturn] = ACTIONS(4213), + [anon_sym__Nonnull] = ACTIONS(4213), + [anon_sym_mutable] = ACTIONS(4213), + [anon_sym_constinit] = ACTIONS(4213), + [anon_sym_consteval] = ACTIONS(4213), + [anon_sym_alignas] = ACTIONS(4213), + [anon_sym__Alignas] = ACTIONS(4213), + [sym_primitive_type] = ACTIONS(4213), + [anon_sym_enum] = ACTIONS(4213), + [anon_sym_class] = ACTIONS(4213), + [anon_sym_struct] = ACTIONS(4213), + [anon_sym_union] = ACTIONS(4213), + [anon_sym_or] = ACTIONS(4213), + [anon_sym_and] = ACTIONS(4213), + [anon_sym_asm] = ACTIONS(4213), + [anon_sym___asm__] = ACTIONS(4213), + [anon_sym___asm] = ACTIONS(4213), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4213), + [anon_sym_decltype] = ACTIONS(4213), + [anon_sym_final] = ACTIONS(4213), + [anon_sym_override] = ACTIONS(4213), + [anon_sym_explicit] = ACTIONS(4213), + [anon_sym_typename] = ACTIONS(4213), + [anon_sym_template] = ACTIONS(4213), + [anon_sym_GT2] = ACTIONS(4215), + [anon_sym_operator] = ACTIONS(4213), + [anon_sym_try] = ACTIONS(4213), + [anon_sym_friend] = ACTIONS(4213), + [anon_sym_using] = ACTIONS(4213), + [anon_sym_concept] = ACTIONS(4213), + [anon_sym_requires] = ACTIONS(4213), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4213), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4213), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4213), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4213), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4213), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4213), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4213), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4213), + [anon_sym_MOZ_COLD] = ACTIONS(4213), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4213), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4213), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4213), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4213), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4213), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4213), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4213), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4213), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4213), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4213), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4213), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4213), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4213), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4213), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4213), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4213), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4213), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4213), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4213), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4213), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_NONNULL] = ACTIONS(4213), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4213), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4213), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4213), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4213), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4213), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_NORETURN] = ACTIONS(4213), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4213), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4213), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4213), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4213), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4213), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4213), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4213), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4213), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4213), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4213), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4213), + [anon_sym_MOZ_RAII] = ACTIONS(4213), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4213), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4213), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4213), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4213), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4213), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4213), + }, + [STATE(941)] = { + [sym_identifier] = ACTIONS(4213), + [anon_sym_COMMA] = ACTIONS(4215), + [anon_sym_RPAREN] = ACTIONS(4215), + [anon_sym_LPAREN2] = ACTIONS(4215), + [anon_sym_TILDE] = ACTIONS(4215), + [anon_sym_STAR] = ACTIONS(4215), + [anon_sym_PIPE_PIPE] = ACTIONS(4215), + [anon_sym_AMP_AMP] = ACTIONS(4215), + [anon_sym_AMP] = ACTIONS(4213), + [anon_sym_SEMI] = ACTIONS(4215), + [anon_sym___extension__] = ACTIONS(4213), + [anon_sym_virtual] = ACTIONS(4213), + [anon_sym_extern] = ACTIONS(4213), + [anon_sym___attribute__] = ACTIONS(4213), + [anon_sym___attribute] = ACTIONS(4213), + [anon_sym_COLON_COLON] = ACTIONS(4215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4215), + [anon_sym___declspec] = ACTIONS(4213), + [anon_sym___based] = ACTIONS(4213), + [anon_sym___cdecl] = ACTIONS(4213), + [anon_sym___clrcall] = ACTIONS(4213), + [anon_sym___stdcall] = ACTIONS(4213), + [anon_sym___fastcall] = ACTIONS(4213), + [anon_sym___thiscall] = ACTIONS(4213), + [anon_sym___vectorcall] = ACTIONS(4213), + [anon_sym_LBRACE] = ACTIONS(4215), + [anon_sym_signed] = ACTIONS(4213), + [anon_sym_unsigned] = ACTIONS(4213), + [anon_sym_long] = ACTIONS(4213), + [anon_sym_short] = ACTIONS(4213), + [anon_sym_LBRACK] = ACTIONS(4213), + [anon_sym_static] = ACTIONS(4213), + [anon_sym_EQ] = ACTIONS(4215), + [anon_sym_register] = ACTIONS(4213), + [anon_sym_inline] = ACTIONS(4213), + [anon_sym___inline] = ACTIONS(4213), + [anon_sym___inline__] = ACTIONS(4213), + [anon_sym___forceinline] = ACTIONS(4213), + [anon_sym_thread_local] = ACTIONS(4213), + [anon_sym___thread] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4213), + [anon_sym_constexpr] = ACTIONS(4213), + [anon_sym_volatile] = ACTIONS(4213), + [anon_sym_restrict] = ACTIONS(4213), + [anon_sym___restrict__] = ACTIONS(4213), + [anon_sym__Atomic] = ACTIONS(4213), + [anon_sym__Noreturn] = ACTIONS(4213), + [anon_sym_noreturn] = ACTIONS(4213), + [anon_sym__Nonnull] = ACTIONS(4213), + [anon_sym_mutable] = ACTIONS(4213), + [anon_sym_constinit] = ACTIONS(4213), + [anon_sym_consteval] = ACTIONS(4213), + [anon_sym_alignas] = ACTIONS(4213), + [anon_sym__Alignas] = ACTIONS(4213), + [sym_primitive_type] = ACTIONS(4213), + [anon_sym_enum] = ACTIONS(4213), + [anon_sym_class] = ACTIONS(4213), + [anon_sym_struct] = ACTIONS(4213), + [anon_sym_union] = ACTIONS(4213), + [anon_sym_or] = ACTIONS(4213), + [anon_sym_and] = ACTIONS(4213), + [anon_sym_asm] = ACTIONS(4213), + [anon_sym___asm__] = ACTIONS(4213), + [anon_sym___asm] = ACTIONS(4213), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4213), + [anon_sym_decltype] = ACTIONS(4213), + [anon_sym_final] = ACTIONS(4213), + [anon_sym_override] = ACTIONS(4213), + [anon_sym_explicit] = ACTIONS(4213), + [anon_sym_typename] = ACTIONS(4213), + [anon_sym_template] = ACTIONS(4213), + [anon_sym_GT2] = ACTIONS(4215), + [anon_sym_operator] = ACTIONS(4213), + [anon_sym_try] = ACTIONS(4213), + [anon_sym_friend] = ACTIONS(4213), + [anon_sym_using] = ACTIONS(4213), + [anon_sym_concept] = ACTIONS(4213), + [anon_sym_requires] = ACTIONS(4213), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4213), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4213), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4213), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4213), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4213), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4213), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4213), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4213), + [anon_sym_MOZ_COLD] = ACTIONS(4213), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4213), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4213), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4213), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4213), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4213), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4213), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4213), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4213), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4213), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4213), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4213), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4213), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4213), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4213), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4213), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4213), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4213), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4213), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4213), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4213), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4213), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_NONNULL] = ACTIONS(4213), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4213), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4213), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4213), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4213), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4213), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_NORETURN] = ACTIONS(4213), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4213), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4213), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4213), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4213), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4213), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4213), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4213), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4213), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4213), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4213), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4213), + [anon_sym_MOZ_RAII] = ACTIONS(4213), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4213), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4213), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4213), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4213), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4213), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4213), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4213), + }, + [STATE(942)] = { + [sym_identifier] = ACTIONS(4217), + [anon_sym_COMMA] = ACTIONS(4219), + [anon_sym_RPAREN] = ACTIONS(4219), + [anon_sym_LPAREN2] = ACTIONS(4219), + [anon_sym_TILDE] = ACTIONS(4219), + [anon_sym_STAR] = ACTIONS(4219), + [anon_sym_PIPE_PIPE] = ACTIONS(4219), + [anon_sym_AMP_AMP] = ACTIONS(4219), + [anon_sym_AMP] = ACTIONS(4217), + [anon_sym_SEMI] = ACTIONS(4219), + [anon_sym___extension__] = ACTIONS(4217), + [anon_sym_virtual] = ACTIONS(4217), + [anon_sym_extern] = ACTIONS(4217), + [anon_sym___attribute__] = ACTIONS(4217), + [anon_sym___attribute] = ACTIONS(4217), + [anon_sym_COLON_COLON] = ACTIONS(4219), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4219), + [anon_sym___declspec] = ACTIONS(4217), + [anon_sym___based] = ACTIONS(4217), + [anon_sym___cdecl] = ACTIONS(4217), + [anon_sym___clrcall] = ACTIONS(4217), + [anon_sym___stdcall] = ACTIONS(4217), + [anon_sym___fastcall] = ACTIONS(4217), + [anon_sym___thiscall] = ACTIONS(4217), + [anon_sym___vectorcall] = ACTIONS(4217), + [anon_sym_LBRACE] = ACTIONS(4219), + [anon_sym_signed] = ACTIONS(4217), + [anon_sym_unsigned] = ACTIONS(4217), + [anon_sym_long] = ACTIONS(4217), + [anon_sym_short] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_static] = ACTIONS(4217), + [anon_sym_EQ] = ACTIONS(4219), + [anon_sym_register] = ACTIONS(4217), + [anon_sym_inline] = ACTIONS(4217), + [anon_sym___inline] = ACTIONS(4217), + [anon_sym___inline__] = ACTIONS(4217), + [anon_sym___forceinline] = ACTIONS(4217), + [anon_sym_thread_local] = ACTIONS(4217), + [anon_sym___thread] = ACTIONS(4217), + [anon_sym_const] = ACTIONS(4217), + [anon_sym_constexpr] = ACTIONS(4217), + [anon_sym_volatile] = ACTIONS(4217), + [anon_sym_restrict] = ACTIONS(4217), + [anon_sym___restrict__] = ACTIONS(4217), + [anon_sym__Atomic] = ACTIONS(4217), + [anon_sym__Noreturn] = ACTIONS(4217), + [anon_sym_noreturn] = ACTIONS(4217), + [anon_sym__Nonnull] = ACTIONS(4217), + [anon_sym_mutable] = ACTIONS(4217), + [anon_sym_constinit] = ACTIONS(4217), + [anon_sym_consteval] = ACTIONS(4217), + [anon_sym_alignas] = ACTIONS(4217), + [anon_sym__Alignas] = ACTIONS(4217), + [sym_primitive_type] = ACTIONS(4217), + [anon_sym_enum] = ACTIONS(4217), + [anon_sym_class] = ACTIONS(4217), + [anon_sym_struct] = ACTIONS(4217), + [anon_sym_union] = ACTIONS(4217), + [anon_sym_or] = ACTIONS(4217), + [anon_sym_and] = ACTIONS(4217), + [anon_sym_asm] = ACTIONS(4217), + [anon_sym___asm__] = ACTIONS(4217), + [anon_sym___asm] = ACTIONS(4217), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4217), + [anon_sym_decltype] = ACTIONS(4217), + [anon_sym_final] = ACTIONS(4217), + [anon_sym_override] = ACTIONS(4217), + [anon_sym_explicit] = ACTIONS(4217), + [anon_sym_typename] = ACTIONS(4217), + [anon_sym_template] = ACTIONS(4217), + [anon_sym_GT2] = ACTIONS(4219), + [anon_sym_operator] = ACTIONS(4217), + [anon_sym_try] = ACTIONS(4217), + [anon_sym_friend] = ACTIONS(4217), + [anon_sym_using] = ACTIONS(4217), + [anon_sym_concept] = ACTIONS(4217), + [anon_sym_requires] = ACTIONS(4217), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4217), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4217), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4217), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4217), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4217), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4217), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4217), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4217), + [anon_sym_MOZ_COLD] = ACTIONS(4217), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4217), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4217), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4217), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4217), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4217), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4217), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4217), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4217), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4217), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4217), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4217), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4217), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4217), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4217), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4217), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4217), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4217), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4217), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4217), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4217), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4217), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4217), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4217), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4217), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4217), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4217), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4217), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4217), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4217), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4217), + [anon_sym_MOZ_NONNULL] = ACTIONS(4217), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4217), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4217), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4217), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4217), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4217), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4217), + [anon_sym_MOZ_NORETURN] = ACTIONS(4217), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4217), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4217), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4217), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4217), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4217), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4217), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4217), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4217), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4217), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4217), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4217), + [anon_sym_MOZ_RAII] = ACTIONS(4217), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4217), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4217), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4217), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4217), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4217), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4217), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4217), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4217), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4217), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4217), + }, + [STATE(943)] = { + [sym_identifier] = ACTIONS(4221), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [anon_sym_LPAREN2] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(4223), + [anon_sym_PIPE_PIPE] = ACTIONS(4223), + [anon_sym_AMP_AMP] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4221), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym___extension__] = ACTIONS(4221), + [anon_sym_virtual] = ACTIONS(4221), + [anon_sym_extern] = ACTIONS(4221), + [anon_sym___attribute__] = ACTIONS(4221), + [anon_sym___attribute] = ACTIONS(4221), + [anon_sym_COLON_COLON] = ACTIONS(4223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4223), + [anon_sym___declspec] = ACTIONS(4221), + [anon_sym___based] = ACTIONS(4221), + [anon_sym___cdecl] = ACTIONS(4221), + [anon_sym___clrcall] = ACTIONS(4221), + [anon_sym___stdcall] = ACTIONS(4221), + [anon_sym___fastcall] = ACTIONS(4221), + [anon_sym___thiscall] = ACTIONS(4221), + [anon_sym___vectorcall] = ACTIONS(4221), + [anon_sym_LBRACE] = ACTIONS(4223), + [anon_sym_signed] = ACTIONS(4221), + [anon_sym_unsigned] = ACTIONS(4221), + [anon_sym_long] = ACTIONS(4221), + [anon_sym_short] = ACTIONS(4221), + [anon_sym_LBRACK] = ACTIONS(4221), + [anon_sym_static] = ACTIONS(4221), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_register] = ACTIONS(4221), + [anon_sym_inline] = ACTIONS(4221), + [anon_sym___inline] = ACTIONS(4221), + [anon_sym___inline__] = ACTIONS(4221), + [anon_sym___forceinline] = ACTIONS(4221), + [anon_sym_thread_local] = ACTIONS(4221), + [anon_sym___thread] = ACTIONS(4221), + [anon_sym_const] = ACTIONS(4221), + [anon_sym_constexpr] = ACTIONS(4221), + [anon_sym_volatile] = ACTIONS(4221), + [anon_sym_restrict] = ACTIONS(4221), + [anon_sym___restrict__] = ACTIONS(4221), + [anon_sym__Atomic] = ACTIONS(4221), + [anon_sym__Noreturn] = ACTIONS(4221), + [anon_sym_noreturn] = ACTIONS(4221), + [anon_sym__Nonnull] = ACTIONS(4221), + [anon_sym_mutable] = ACTIONS(4221), + [anon_sym_constinit] = ACTIONS(4221), + [anon_sym_consteval] = ACTIONS(4221), + [anon_sym_alignas] = ACTIONS(4221), + [anon_sym__Alignas] = ACTIONS(4221), + [sym_primitive_type] = ACTIONS(4221), + [anon_sym_enum] = ACTIONS(4221), + [anon_sym_class] = ACTIONS(4221), + [anon_sym_struct] = ACTIONS(4221), + [anon_sym_union] = ACTIONS(4221), + [anon_sym_or] = ACTIONS(4221), + [anon_sym_and] = ACTIONS(4221), + [anon_sym_asm] = ACTIONS(4221), + [anon_sym___asm__] = ACTIONS(4221), + [anon_sym___asm] = ACTIONS(4221), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4221), + [anon_sym_decltype] = ACTIONS(4221), + [anon_sym_final] = ACTIONS(4221), + [anon_sym_override] = ACTIONS(4221), + [anon_sym_explicit] = ACTIONS(4221), + [anon_sym_typename] = ACTIONS(4221), + [anon_sym_template] = ACTIONS(4221), + [anon_sym_GT2] = ACTIONS(4223), + [anon_sym_operator] = ACTIONS(4221), + [anon_sym_try] = ACTIONS(4221), + [anon_sym_friend] = ACTIONS(4221), + [anon_sym_using] = ACTIONS(4221), + [anon_sym_concept] = ACTIONS(4221), + [anon_sym_requires] = ACTIONS(4221), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4221), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4221), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4221), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4221), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4221), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4221), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4221), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4221), + [anon_sym_MOZ_COLD] = ACTIONS(4221), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4221), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4221), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4221), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4221), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4221), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4221), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4221), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4221), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4221), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4221), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4221), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4221), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4221), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4221), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4221), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4221), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4221), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4221), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4221), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4221), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4221), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4221), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4221), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4221), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4221), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4221), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4221), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4221), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4221), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4221), + [anon_sym_MOZ_NONNULL] = ACTIONS(4221), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4221), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4221), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4221), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4221), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4221), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4221), + [anon_sym_MOZ_NORETURN] = ACTIONS(4221), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4221), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4221), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4221), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4221), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4221), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4221), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4221), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4221), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4221), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4221), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4221), + [anon_sym_MOZ_RAII] = ACTIONS(4221), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4221), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4221), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4221), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4221), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4221), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4221), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4221), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4221), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4221), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4221), + }, + [STATE(944)] = { + [sym_identifier] = ACTIONS(4225), + [anon_sym_COMMA] = ACTIONS(4227), + [anon_sym_RPAREN] = ACTIONS(4227), + [anon_sym_LPAREN2] = ACTIONS(4227), + [anon_sym_TILDE] = ACTIONS(4227), + [anon_sym_STAR] = ACTIONS(4227), + [anon_sym_PIPE_PIPE] = ACTIONS(4227), + [anon_sym_AMP_AMP] = ACTIONS(4227), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SEMI] = ACTIONS(4227), + [anon_sym___extension__] = ACTIONS(4225), + [anon_sym_virtual] = ACTIONS(4225), + [anon_sym_extern] = ACTIONS(4225), + [anon_sym___attribute__] = ACTIONS(4225), + [anon_sym___attribute] = ACTIONS(4225), + [anon_sym_COLON_COLON] = ACTIONS(4227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4227), + [anon_sym___declspec] = ACTIONS(4225), + [anon_sym___based] = ACTIONS(4225), + [anon_sym___cdecl] = ACTIONS(4225), + [anon_sym___clrcall] = ACTIONS(4225), + [anon_sym___stdcall] = ACTIONS(4225), + [anon_sym___fastcall] = ACTIONS(4225), + [anon_sym___thiscall] = ACTIONS(4225), + [anon_sym___vectorcall] = ACTIONS(4225), + [anon_sym_LBRACE] = ACTIONS(4227), + [anon_sym_signed] = ACTIONS(4225), + [anon_sym_unsigned] = ACTIONS(4225), + [anon_sym_long] = ACTIONS(4225), + [anon_sym_short] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_static] = ACTIONS(4225), + [anon_sym_EQ] = ACTIONS(4227), + [anon_sym_register] = ACTIONS(4225), + [anon_sym_inline] = ACTIONS(4225), + [anon_sym___inline] = ACTIONS(4225), + [anon_sym___inline__] = ACTIONS(4225), + [anon_sym___forceinline] = ACTIONS(4225), + [anon_sym_thread_local] = ACTIONS(4225), + [anon_sym___thread] = ACTIONS(4225), + [anon_sym_const] = ACTIONS(4225), + [anon_sym_constexpr] = ACTIONS(4225), + [anon_sym_volatile] = ACTIONS(4225), + [anon_sym_restrict] = ACTIONS(4225), + [anon_sym___restrict__] = ACTIONS(4225), + [anon_sym__Atomic] = ACTIONS(4225), + [anon_sym__Noreturn] = ACTIONS(4225), + [anon_sym_noreturn] = ACTIONS(4225), + [anon_sym__Nonnull] = ACTIONS(4225), + [anon_sym_mutable] = ACTIONS(4225), + [anon_sym_constinit] = ACTIONS(4225), + [anon_sym_consteval] = ACTIONS(4225), + [anon_sym_alignas] = ACTIONS(4225), + [anon_sym__Alignas] = ACTIONS(4225), + [sym_primitive_type] = ACTIONS(4225), + [anon_sym_enum] = ACTIONS(4225), + [anon_sym_class] = ACTIONS(4225), + [anon_sym_struct] = ACTIONS(4225), + [anon_sym_union] = ACTIONS(4225), + [anon_sym_or] = ACTIONS(4225), + [anon_sym_and] = ACTIONS(4225), + [anon_sym_asm] = ACTIONS(4225), + [anon_sym___asm__] = ACTIONS(4225), + [anon_sym___asm] = ACTIONS(4225), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4225), + [anon_sym_decltype] = ACTIONS(4225), + [anon_sym_final] = ACTIONS(4225), + [anon_sym_override] = ACTIONS(4225), + [anon_sym_explicit] = ACTIONS(4225), + [anon_sym_typename] = ACTIONS(4225), + [anon_sym_template] = ACTIONS(4225), + [anon_sym_GT2] = ACTIONS(4227), + [anon_sym_operator] = ACTIONS(4225), + [anon_sym_try] = ACTIONS(4225), + [anon_sym_friend] = ACTIONS(4225), + [anon_sym_using] = ACTIONS(4225), + [anon_sym_concept] = ACTIONS(4225), + [anon_sym_requires] = ACTIONS(4225), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4225), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4225), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4225), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4225), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4225), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4225), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4225), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4225), + [anon_sym_MOZ_COLD] = ACTIONS(4225), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4225), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4225), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4225), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4225), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4225), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4225), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4225), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4225), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4225), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4225), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4225), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4225), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4225), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4225), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4225), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4225), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4225), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4225), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4225), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4225), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4225), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4225), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4225), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4225), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4225), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4225), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4225), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4225), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4225), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4225), + [anon_sym_MOZ_NONNULL] = ACTIONS(4225), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4225), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4225), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4225), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4225), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4225), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4225), + [anon_sym_MOZ_NORETURN] = ACTIONS(4225), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4225), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4225), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4225), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4225), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4225), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4225), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4225), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4225), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4225), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4225), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4225), + [anon_sym_MOZ_RAII] = ACTIONS(4225), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4225), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4225), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4225), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4225), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4225), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4225), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4225), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4225), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4225), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4225), + }, + [STATE(945)] = { + [sym_identifier] = ACTIONS(4229), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [anon_sym_LPAREN2] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4231), + [anon_sym_STAR] = ACTIONS(4231), + [anon_sym_PIPE_PIPE] = ACTIONS(4231), + [anon_sym_AMP_AMP] = ACTIONS(4231), + [anon_sym_AMP] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym___extension__] = ACTIONS(4229), + [anon_sym_virtual] = ACTIONS(4229), + [anon_sym_extern] = ACTIONS(4229), + [anon_sym___attribute__] = ACTIONS(4229), + [anon_sym___attribute] = ACTIONS(4229), + [anon_sym_COLON_COLON] = ACTIONS(4231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4231), + [anon_sym___declspec] = ACTIONS(4229), + [anon_sym___based] = ACTIONS(4229), + [anon_sym___cdecl] = ACTIONS(4229), + [anon_sym___clrcall] = ACTIONS(4229), + [anon_sym___stdcall] = ACTIONS(4229), + [anon_sym___fastcall] = ACTIONS(4229), + [anon_sym___thiscall] = ACTIONS(4229), + [anon_sym___vectorcall] = ACTIONS(4229), + [anon_sym_LBRACE] = ACTIONS(4231), + [anon_sym_signed] = ACTIONS(4229), + [anon_sym_unsigned] = ACTIONS(4229), + [anon_sym_long] = ACTIONS(4229), + [anon_sym_short] = ACTIONS(4229), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_static] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(4231), + [anon_sym_register] = ACTIONS(4229), + [anon_sym_inline] = ACTIONS(4229), + [anon_sym___inline] = ACTIONS(4229), + [anon_sym___inline__] = ACTIONS(4229), + [anon_sym___forceinline] = ACTIONS(4229), + [anon_sym_thread_local] = ACTIONS(4229), + [anon_sym___thread] = ACTIONS(4229), + [anon_sym_const] = ACTIONS(4229), + [anon_sym_constexpr] = ACTIONS(4229), + [anon_sym_volatile] = ACTIONS(4229), + [anon_sym_restrict] = ACTIONS(4229), + [anon_sym___restrict__] = ACTIONS(4229), + [anon_sym__Atomic] = ACTIONS(4229), + [anon_sym__Noreturn] = ACTIONS(4229), + [anon_sym_noreturn] = ACTIONS(4229), + [anon_sym__Nonnull] = ACTIONS(4229), + [anon_sym_mutable] = ACTIONS(4229), + [anon_sym_constinit] = ACTIONS(4229), + [anon_sym_consteval] = ACTIONS(4229), + [anon_sym_alignas] = ACTIONS(4229), + [anon_sym__Alignas] = ACTIONS(4229), + [sym_primitive_type] = ACTIONS(4229), + [anon_sym_enum] = ACTIONS(4229), + [anon_sym_class] = ACTIONS(4229), + [anon_sym_struct] = ACTIONS(4229), + [anon_sym_union] = ACTIONS(4229), + [anon_sym_or] = ACTIONS(4229), + [anon_sym_and] = ACTIONS(4229), + [anon_sym_asm] = ACTIONS(4229), + [anon_sym___asm__] = ACTIONS(4229), + [anon_sym___asm] = ACTIONS(4229), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4229), + [anon_sym_decltype] = ACTIONS(4229), + [anon_sym_final] = ACTIONS(4229), + [anon_sym_override] = ACTIONS(4229), + [anon_sym_explicit] = ACTIONS(4229), + [anon_sym_typename] = ACTIONS(4229), + [anon_sym_template] = ACTIONS(4229), + [anon_sym_GT2] = ACTIONS(4231), + [anon_sym_operator] = ACTIONS(4229), + [anon_sym_try] = ACTIONS(4229), + [anon_sym_friend] = ACTIONS(4229), + [anon_sym_using] = ACTIONS(4229), + [anon_sym_concept] = ACTIONS(4229), + [anon_sym_requires] = ACTIONS(4229), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4229), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4229), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4229), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4229), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4229), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4229), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4229), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4229), + [anon_sym_MOZ_COLD] = ACTIONS(4229), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4229), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4229), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4229), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4229), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4229), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4229), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4229), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4229), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4229), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4229), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4229), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4229), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4229), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4229), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4229), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4229), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4229), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4229), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4229), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4229), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4229), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4229), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4229), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4229), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4229), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4229), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4229), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4229), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4229), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4229), + [anon_sym_MOZ_NONNULL] = ACTIONS(4229), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4229), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4229), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4229), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4229), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4229), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4229), + [anon_sym_MOZ_NORETURN] = ACTIONS(4229), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4229), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4229), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4229), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4229), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4229), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4229), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4229), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4229), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4229), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4229), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4229), + [anon_sym_MOZ_RAII] = ACTIONS(4229), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4229), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4229), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4229), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4229), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4229), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4229), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4229), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4229), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4229), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4229), + }, + [STATE(946)] = { + [sym_identifier] = ACTIONS(4233), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [anon_sym_LPAREN2] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_STAR] = ACTIONS(4235), + [anon_sym_PIPE_PIPE] = ACTIONS(4235), + [anon_sym_AMP_AMP] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4233), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym___extension__] = ACTIONS(4233), + [anon_sym_virtual] = ACTIONS(4233), + [anon_sym_extern] = ACTIONS(4233), + [anon_sym___attribute__] = ACTIONS(4233), + [anon_sym___attribute] = ACTIONS(4233), + [anon_sym_COLON_COLON] = ACTIONS(4235), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4235), + [anon_sym___declspec] = ACTIONS(4233), + [anon_sym___based] = ACTIONS(4233), + [anon_sym___cdecl] = ACTIONS(4233), + [anon_sym___clrcall] = ACTIONS(4233), + [anon_sym___stdcall] = ACTIONS(4233), + [anon_sym___fastcall] = ACTIONS(4233), + [anon_sym___thiscall] = ACTIONS(4233), + [anon_sym___vectorcall] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_signed] = ACTIONS(4233), + [anon_sym_unsigned] = ACTIONS(4233), + [anon_sym_long] = ACTIONS(4233), + [anon_sym_short] = ACTIONS(4233), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_static] = ACTIONS(4233), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_register] = ACTIONS(4233), + [anon_sym_inline] = ACTIONS(4233), + [anon_sym___inline] = ACTIONS(4233), + [anon_sym___inline__] = ACTIONS(4233), + [anon_sym___forceinline] = ACTIONS(4233), + [anon_sym_thread_local] = ACTIONS(4233), + [anon_sym___thread] = ACTIONS(4233), + [anon_sym_const] = ACTIONS(4233), + [anon_sym_constexpr] = ACTIONS(4233), + [anon_sym_volatile] = ACTIONS(4233), + [anon_sym_restrict] = ACTIONS(4233), + [anon_sym___restrict__] = ACTIONS(4233), + [anon_sym__Atomic] = ACTIONS(4233), + [anon_sym__Noreturn] = ACTIONS(4233), + [anon_sym_noreturn] = ACTIONS(4233), + [anon_sym__Nonnull] = ACTIONS(4233), + [anon_sym_mutable] = ACTIONS(4233), + [anon_sym_constinit] = ACTIONS(4233), + [anon_sym_consteval] = ACTIONS(4233), + [anon_sym_alignas] = ACTIONS(4233), + [anon_sym__Alignas] = ACTIONS(4233), + [sym_primitive_type] = ACTIONS(4233), + [anon_sym_enum] = ACTIONS(4233), + [anon_sym_class] = ACTIONS(4233), + [anon_sym_struct] = ACTIONS(4233), + [anon_sym_union] = ACTIONS(4233), + [anon_sym_or] = ACTIONS(4233), + [anon_sym_and] = ACTIONS(4233), + [anon_sym_asm] = ACTIONS(4233), + [anon_sym___asm__] = ACTIONS(4233), + [anon_sym___asm] = ACTIONS(4233), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4233), + [anon_sym_decltype] = ACTIONS(4233), + [anon_sym_final] = ACTIONS(4233), + [anon_sym_override] = ACTIONS(4233), + [anon_sym_explicit] = ACTIONS(4233), + [anon_sym_typename] = ACTIONS(4233), + [anon_sym_template] = ACTIONS(4233), + [anon_sym_GT2] = ACTIONS(4235), + [anon_sym_operator] = ACTIONS(4233), + [anon_sym_try] = ACTIONS(4233), + [anon_sym_friend] = ACTIONS(4233), + [anon_sym_using] = ACTIONS(4233), + [anon_sym_concept] = ACTIONS(4233), + [anon_sym_requires] = ACTIONS(4233), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4233), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4233), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4233), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4233), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4233), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4233), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4233), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4233), + [anon_sym_MOZ_COLD] = ACTIONS(4233), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4233), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4233), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4233), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4233), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4233), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4233), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4233), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4233), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4233), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4233), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4233), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4233), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4233), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4233), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4233), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4233), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4233), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4233), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4233), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4233), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4233), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4233), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4233), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4233), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4233), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4233), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4233), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4233), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4233), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4233), + [anon_sym_MOZ_NONNULL] = ACTIONS(4233), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4233), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4233), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4233), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4233), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4233), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4233), + [anon_sym_MOZ_NORETURN] = ACTIONS(4233), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4233), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4233), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4233), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4233), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4233), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4233), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4233), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4233), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4233), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4233), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4233), + [anon_sym_MOZ_RAII] = ACTIONS(4233), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4233), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4233), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4233), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4233), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4233), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4233), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4233), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4233), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4233), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4233), + }, + [STATE(947)] = { + [sym_identifier] = ACTIONS(4237), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [anon_sym_LPAREN2] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym___extension__] = ACTIONS(4237), + [anon_sym_virtual] = ACTIONS(4237), + [anon_sym_extern] = ACTIONS(4237), + [anon_sym___attribute__] = ACTIONS(4237), + [anon_sym___attribute] = ACTIONS(4237), + [anon_sym_COLON_COLON] = ACTIONS(4239), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4239), + [anon_sym___declspec] = ACTIONS(4237), + [anon_sym___based] = ACTIONS(4237), + [anon_sym___cdecl] = ACTIONS(4237), + [anon_sym___clrcall] = ACTIONS(4237), + [anon_sym___stdcall] = ACTIONS(4237), + [anon_sym___fastcall] = ACTIONS(4237), + [anon_sym___thiscall] = ACTIONS(4237), + [anon_sym___vectorcall] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_signed] = ACTIONS(4237), + [anon_sym_unsigned] = ACTIONS(4237), + [anon_sym_long] = ACTIONS(4237), + [anon_sym_short] = ACTIONS(4237), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_static] = ACTIONS(4237), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_register] = ACTIONS(4237), + [anon_sym_inline] = ACTIONS(4237), + [anon_sym___inline] = ACTIONS(4237), + [anon_sym___inline__] = ACTIONS(4237), + [anon_sym___forceinline] = ACTIONS(4237), + [anon_sym_thread_local] = ACTIONS(4237), + [anon_sym___thread] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4237), + [anon_sym_constexpr] = ACTIONS(4237), + [anon_sym_volatile] = ACTIONS(4237), + [anon_sym_restrict] = ACTIONS(4237), + [anon_sym___restrict__] = ACTIONS(4237), + [anon_sym__Atomic] = ACTIONS(4237), + [anon_sym__Noreturn] = ACTIONS(4237), + [anon_sym_noreturn] = ACTIONS(4237), + [anon_sym__Nonnull] = ACTIONS(4237), + [anon_sym_mutable] = ACTIONS(4237), + [anon_sym_constinit] = ACTIONS(4237), + [anon_sym_consteval] = ACTIONS(4237), + [anon_sym_alignas] = ACTIONS(4237), + [anon_sym__Alignas] = ACTIONS(4237), + [sym_primitive_type] = ACTIONS(4237), + [anon_sym_enum] = ACTIONS(4237), + [anon_sym_class] = ACTIONS(4237), + [anon_sym_struct] = ACTIONS(4237), + [anon_sym_union] = ACTIONS(4237), + [anon_sym_or] = ACTIONS(4237), + [anon_sym_and] = ACTIONS(4237), + [anon_sym_asm] = ACTIONS(4237), + [anon_sym___asm__] = ACTIONS(4237), + [anon_sym___asm] = ACTIONS(4237), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4237), + [anon_sym_decltype] = ACTIONS(4237), + [anon_sym_final] = ACTIONS(4237), + [anon_sym_override] = ACTIONS(4237), + [anon_sym_explicit] = ACTIONS(4237), + [anon_sym_typename] = ACTIONS(4237), + [anon_sym_template] = ACTIONS(4237), + [anon_sym_GT2] = ACTIONS(4239), + [anon_sym_operator] = ACTIONS(4237), + [anon_sym_try] = ACTIONS(4237), + [anon_sym_friend] = ACTIONS(4237), + [anon_sym_using] = ACTIONS(4237), + [anon_sym_concept] = ACTIONS(4237), + [anon_sym_requires] = ACTIONS(4237), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4237), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4237), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4237), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4237), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4237), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4237), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4237), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4237), + [anon_sym_MOZ_COLD] = ACTIONS(4237), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4237), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4237), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4237), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4237), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4237), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4237), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4237), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4237), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4237), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4237), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4237), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4237), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4237), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4237), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4237), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4237), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4237), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4237), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4237), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4237), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4237), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4237), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4237), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4237), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4237), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4237), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4237), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4237), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4237), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4237), + [anon_sym_MOZ_NONNULL] = ACTIONS(4237), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4237), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4237), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4237), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4237), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4237), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4237), + [anon_sym_MOZ_NORETURN] = ACTIONS(4237), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4237), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4237), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4237), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4237), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4237), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4237), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4237), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4237), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4237), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4237), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4237), + [anon_sym_MOZ_RAII] = ACTIONS(4237), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4237), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4237), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4237), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4237), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4237), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4237), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4237), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4237), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4237), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4237), + }, + [STATE(948)] = { + [sym_expression] = STATE(4060), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(4206), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), + [anon_sym_COMMA] = ACTIONS(3321), + [anon_sym_RPAREN] = ACTIONS(3321), + [anon_sym_LPAREN2] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3321), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE] = ACTIONS(3319), + [anon_sym_CARET] = ACTIONS(3321), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_LT_LT] = ACTIONS(3321), + [anon_sym_GT_GT] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3321), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_QMARK] = ACTIONS(3321), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_LT_EQ_GT] = ACTIONS(3321), + [anon_sym_or] = ACTIONS(3319), + [anon_sym_and] = ACTIONS(3319), + [anon_sym_bitor] = ACTIONS(3319), + [anon_sym_xor] = ACTIONS(3319), + [anon_sym_bitand] = ACTIONS(3319), + [anon_sym_not_eq] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(3319), + [anon_sym_DOT_STAR] = ACTIONS(3321), + [anon_sym_DASH_GT] = ACTIONS(3321), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(949)] = { + [sym_identifier] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4245), + [anon_sym_RPAREN] = ACTIONS(4245), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_TILDE] = ACTIONS(4245), + [anon_sym_STAR] = ACTIONS(4245), + [anon_sym_PIPE_PIPE] = ACTIONS(4245), + [anon_sym_AMP_AMP] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4245), + [anon_sym___extension__] = ACTIONS(4243), + [anon_sym_virtual] = ACTIONS(4243), + [anon_sym_extern] = ACTIONS(4243), + [anon_sym___attribute__] = ACTIONS(4243), + [anon_sym___attribute] = ACTIONS(4243), + [anon_sym_COLON_COLON] = ACTIONS(4245), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4245), + [anon_sym___declspec] = ACTIONS(4243), + [anon_sym___based] = ACTIONS(4243), + [anon_sym___cdecl] = ACTIONS(4243), + [anon_sym___clrcall] = ACTIONS(4243), + [anon_sym___stdcall] = ACTIONS(4243), + [anon_sym___fastcall] = ACTIONS(4243), + [anon_sym___thiscall] = ACTIONS(4243), + [anon_sym___vectorcall] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4245), + [anon_sym_signed] = ACTIONS(4243), + [anon_sym_unsigned] = ACTIONS(4243), + [anon_sym_long] = ACTIONS(4243), + [anon_sym_short] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_static] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4245), + [anon_sym_register] = ACTIONS(4243), + [anon_sym_inline] = ACTIONS(4243), + [anon_sym___inline] = ACTIONS(4243), + [anon_sym___inline__] = ACTIONS(4243), + [anon_sym___forceinline] = ACTIONS(4243), + [anon_sym_thread_local] = ACTIONS(4243), + [anon_sym___thread] = ACTIONS(4243), + [anon_sym_const] = ACTIONS(4243), + [anon_sym_constexpr] = ACTIONS(4243), + [anon_sym_volatile] = ACTIONS(4243), + [anon_sym_restrict] = ACTIONS(4243), + [anon_sym___restrict__] = ACTIONS(4243), + [anon_sym__Atomic] = ACTIONS(4243), + [anon_sym__Noreturn] = ACTIONS(4243), + [anon_sym_noreturn] = ACTIONS(4243), + [anon_sym__Nonnull] = ACTIONS(4243), + [anon_sym_mutable] = ACTIONS(4243), + [anon_sym_constinit] = ACTIONS(4243), + [anon_sym_consteval] = ACTIONS(4243), + [anon_sym_alignas] = ACTIONS(4243), + [anon_sym__Alignas] = ACTIONS(4243), + [sym_primitive_type] = ACTIONS(4243), + [anon_sym_enum] = ACTIONS(4243), + [anon_sym_class] = ACTIONS(4243), + [anon_sym_struct] = ACTIONS(4243), + [anon_sym_union] = ACTIONS(4243), + [anon_sym_or] = ACTIONS(4243), + [anon_sym_and] = ACTIONS(4243), + [anon_sym_asm] = ACTIONS(4243), + [anon_sym___asm__] = ACTIONS(4243), + [anon_sym___asm] = ACTIONS(4243), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4243), + [anon_sym_decltype] = ACTIONS(4243), + [anon_sym_final] = ACTIONS(4243), + [anon_sym_override] = ACTIONS(4243), + [anon_sym_explicit] = ACTIONS(4243), + [anon_sym_typename] = ACTIONS(4243), + [anon_sym_template] = ACTIONS(4243), + [anon_sym_GT2] = ACTIONS(4245), + [anon_sym_operator] = ACTIONS(4243), + [anon_sym_try] = ACTIONS(4243), + [anon_sym_friend] = ACTIONS(4243), + [anon_sym_using] = ACTIONS(4243), + [anon_sym_concept] = ACTIONS(4243), + [anon_sym_requires] = ACTIONS(4243), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4243), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4243), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4243), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4243), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4243), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4243), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4243), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4243), + [anon_sym_MOZ_COLD] = ACTIONS(4243), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4243), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4243), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4243), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4243), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4243), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4243), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4243), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4243), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4243), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4243), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4243), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4243), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4243), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4243), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4243), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4243), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4243), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4243), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4243), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4243), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4243), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4243), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4243), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4243), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4243), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4243), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4243), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4243), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4243), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4243), + [anon_sym_MOZ_NONNULL] = ACTIONS(4243), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4243), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4243), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4243), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4243), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4243), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4243), + [anon_sym_MOZ_NORETURN] = ACTIONS(4243), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4243), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4243), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4243), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4243), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4243), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4243), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4243), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4243), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4243), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4243), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4243), + [anon_sym_MOZ_RAII] = ACTIONS(4243), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4243), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4243), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4243), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4243), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4243), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4243), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4243), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4243), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4243), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4243), + }, + [STATE(950)] = { + [sym_identifier] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4249), + [anon_sym_RPAREN] = ACTIONS(4249), + [anon_sym_LPAREN2] = ACTIONS(4249), + [anon_sym_TILDE] = ACTIONS(4249), + [anon_sym_STAR] = ACTIONS(4249), + [anon_sym_PIPE_PIPE] = ACTIONS(4249), + [anon_sym_AMP_AMP] = ACTIONS(4249), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4249), + [anon_sym___extension__] = ACTIONS(4247), + [anon_sym_virtual] = ACTIONS(4247), + [anon_sym_extern] = ACTIONS(4247), + [anon_sym___attribute__] = ACTIONS(4247), + [anon_sym___attribute] = ACTIONS(4247), + [anon_sym_COLON_COLON] = ACTIONS(4249), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4249), + [anon_sym___declspec] = ACTIONS(4247), + [anon_sym___based] = ACTIONS(4247), + [anon_sym___cdecl] = ACTIONS(4247), + [anon_sym___clrcall] = ACTIONS(4247), + [anon_sym___stdcall] = ACTIONS(4247), + [anon_sym___fastcall] = ACTIONS(4247), + [anon_sym___thiscall] = ACTIONS(4247), + [anon_sym___vectorcall] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_signed] = ACTIONS(4247), + [anon_sym_unsigned] = ACTIONS(4247), + [anon_sym_long] = ACTIONS(4247), + [anon_sym_short] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4247), + [anon_sym_static] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4249), + [anon_sym_register] = ACTIONS(4247), + [anon_sym_inline] = ACTIONS(4247), + [anon_sym___inline] = ACTIONS(4247), + [anon_sym___inline__] = ACTIONS(4247), + [anon_sym___forceinline] = ACTIONS(4247), + [anon_sym_thread_local] = ACTIONS(4247), + [anon_sym___thread] = ACTIONS(4247), + [anon_sym_const] = ACTIONS(4247), + [anon_sym_constexpr] = ACTIONS(4247), + [anon_sym_volatile] = ACTIONS(4247), + [anon_sym_restrict] = ACTIONS(4247), + [anon_sym___restrict__] = ACTIONS(4247), + [anon_sym__Atomic] = ACTIONS(4247), + [anon_sym__Noreturn] = ACTIONS(4247), + [anon_sym_noreturn] = ACTIONS(4247), + [anon_sym__Nonnull] = ACTIONS(4247), + [anon_sym_mutable] = ACTIONS(4247), + [anon_sym_constinit] = ACTIONS(4247), + [anon_sym_consteval] = ACTIONS(4247), + [anon_sym_alignas] = ACTIONS(4247), + [anon_sym__Alignas] = ACTIONS(4247), + [sym_primitive_type] = ACTIONS(4247), + [anon_sym_enum] = ACTIONS(4247), + [anon_sym_class] = ACTIONS(4247), + [anon_sym_struct] = ACTIONS(4247), + [anon_sym_union] = ACTIONS(4247), + [anon_sym_or] = ACTIONS(4247), + [anon_sym_and] = ACTIONS(4247), + [anon_sym_asm] = ACTIONS(4247), + [anon_sym___asm__] = ACTIONS(4247), + [anon_sym___asm] = ACTIONS(4247), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4247), + [anon_sym_decltype] = ACTIONS(4247), + [anon_sym_final] = ACTIONS(4247), + [anon_sym_override] = ACTIONS(4247), + [anon_sym_explicit] = ACTIONS(4247), + [anon_sym_typename] = ACTIONS(4247), + [anon_sym_template] = ACTIONS(4247), + [anon_sym_GT2] = ACTIONS(4249), + [anon_sym_operator] = ACTIONS(4247), + [anon_sym_try] = ACTIONS(4247), + [anon_sym_friend] = ACTIONS(4247), + [anon_sym_using] = ACTIONS(4247), + [anon_sym_concept] = ACTIONS(4247), + [anon_sym_requires] = ACTIONS(4247), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4247), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4247), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4247), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4247), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4247), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4247), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4247), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4247), + [anon_sym_MOZ_COLD] = ACTIONS(4247), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4247), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4247), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4247), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4247), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4247), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4247), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4247), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4247), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4247), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4247), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4247), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4247), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4247), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4247), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4247), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4247), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4247), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4247), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4247), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4247), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4247), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4247), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4247), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4247), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4247), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4247), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4247), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4247), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4247), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4247), + [anon_sym_MOZ_NONNULL] = ACTIONS(4247), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4247), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4247), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4247), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4247), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4247), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4247), + [anon_sym_MOZ_NORETURN] = ACTIONS(4247), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4247), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4247), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4247), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4247), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4247), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4247), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4247), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4247), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4247), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4247), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4247), + [anon_sym_MOZ_RAII] = ACTIONS(4247), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4247), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4247), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4247), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4247), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4247), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4247), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4247), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4247), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4247), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4247), + }, + [STATE(951)] = { + [sym_identifier] = ACTIONS(4251), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_RPAREN] = ACTIONS(4253), + [anon_sym_LPAREN2] = ACTIONS(4253), + [anon_sym_TILDE] = ACTIONS(4253), + [anon_sym_STAR] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_AMP] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym___extension__] = ACTIONS(4251), + [anon_sym_virtual] = ACTIONS(4251), + [anon_sym_extern] = ACTIONS(4251), + [anon_sym___attribute__] = ACTIONS(4251), + [anon_sym___attribute] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4253), + [anon_sym___declspec] = ACTIONS(4251), + [anon_sym___based] = ACTIONS(4251), + [anon_sym___cdecl] = ACTIONS(4251), + [anon_sym___clrcall] = ACTIONS(4251), + [anon_sym___stdcall] = ACTIONS(4251), + [anon_sym___fastcall] = ACTIONS(4251), + [anon_sym___thiscall] = ACTIONS(4251), + [anon_sym___vectorcall] = ACTIONS(4251), + [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_signed] = ACTIONS(4251), + [anon_sym_unsigned] = ACTIONS(4251), + [anon_sym_long] = ACTIONS(4251), + [anon_sym_short] = ACTIONS(4251), + [anon_sym_LBRACK] = ACTIONS(4251), + [anon_sym_static] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4253), + [anon_sym_register] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym___inline] = ACTIONS(4251), + [anon_sym___inline__] = ACTIONS(4251), + [anon_sym___forceinline] = ACTIONS(4251), + [anon_sym_thread_local] = ACTIONS(4251), + [anon_sym___thread] = ACTIONS(4251), + [anon_sym_const] = ACTIONS(4251), + [anon_sym_constexpr] = ACTIONS(4251), + [anon_sym_volatile] = ACTIONS(4251), + [anon_sym_restrict] = ACTIONS(4251), + [anon_sym___restrict__] = ACTIONS(4251), + [anon_sym__Atomic] = ACTIONS(4251), + [anon_sym__Noreturn] = ACTIONS(4251), + [anon_sym_noreturn] = ACTIONS(4251), + [anon_sym__Nonnull] = ACTIONS(4251), + [anon_sym_mutable] = ACTIONS(4251), + [anon_sym_constinit] = ACTIONS(4251), + [anon_sym_consteval] = ACTIONS(4251), + [anon_sym_alignas] = ACTIONS(4251), + [anon_sym__Alignas] = ACTIONS(4251), + [sym_primitive_type] = ACTIONS(4251), + [anon_sym_enum] = ACTIONS(4251), + [anon_sym_class] = ACTIONS(4251), + [anon_sym_struct] = ACTIONS(4251), + [anon_sym_union] = ACTIONS(4251), + [anon_sym_or] = ACTIONS(4251), + [anon_sym_and] = ACTIONS(4251), + [anon_sym_asm] = ACTIONS(4251), + [anon_sym___asm__] = ACTIONS(4251), + [anon_sym___asm] = ACTIONS(4251), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4251), + [anon_sym_decltype] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_explicit] = ACTIONS(4251), + [anon_sym_typename] = ACTIONS(4251), + [anon_sym_template] = ACTIONS(4251), + [anon_sym_GT2] = ACTIONS(4253), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_try] = ACTIONS(4251), + [anon_sym_friend] = ACTIONS(4251), + [anon_sym_using] = ACTIONS(4251), + [anon_sym_concept] = ACTIONS(4251), + [anon_sym_requires] = ACTIONS(4251), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4251), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4251), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4251), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4251), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4251), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4251), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4251), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4251), + [anon_sym_MOZ_COLD] = ACTIONS(4251), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4251), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4251), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4251), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4251), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4251), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4251), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4251), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4251), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4251), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4251), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4251), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4251), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4251), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4251), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4251), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4251), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4251), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4251), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4251), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4251), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4251), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4251), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4251), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4251), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4251), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4251), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4251), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4251), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4251), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4251), + [anon_sym_MOZ_NONNULL] = ACTIONS(4251), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4251), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4251), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4251), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4251), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4251), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4251), + [anon_sym_MOZ_NORETURN] = ACTIONS(4251), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4251), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4251), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4251), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4251), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4251), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4251), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4251), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4251), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4251), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4251), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4251), + [anon_sym_MOZ_RAII] = ACTIONS(4251), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4251), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4251), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4251), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4251), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4251), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4251), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4251), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4251), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4251), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4251), + }, + [STATE(952)] = { + [sym_identifier] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4257), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_TILDE] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym___extension__] = ACTIONS(4255), + [anon_sym_virtual] = ACTIONS(4255), + [anon_sym_extern] = ACTIONS(4255), + [anon_sym___attribute__] = ACTIONS(4255), + [anon_sym___attribute] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4257), + [anon_sym___declspec] = ACTIONS(4255), + [anon_sym___based] = ACTIONS(4255), + [anon_sym___cdecl] = ACTIONS(4255), + [anon_sym___clrcall] = ACTIONS(4255), + [anon_sym___stdcall] = ACTIONS(4255), + [anon_sym___fastcall] = ACTIONS(4255), + [anon_sym___thiscall] = ACTIONS(4255), + [anon_sym___vectorcall] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4257), + [anon_sym_signed] = ACTIONS(4255), + [anon_sym_unsigned] = ACTIONS(4255), + [anon_sym_long] = ACTIONS(4255), + [anon_sym_short] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4255), + [anon_sym_static] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4257), + [anon_sym_register] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym___inline] = ACTIONS(4255), + [anon_sym___inline__] = ACTIONS(4255), + [anon_sym___forceinline] = ACTIONS(4255), + [anon_sym_thread_local] = ACTIONS(4255), + [anon_sym___thread] = ACTIONS(4255), + [anon_sym_const] = ACTIONS(4255), + [anon_sym_constexpr] = ACTIONS(4255), + [anon_sym_volatile] = ACTIONS(4255), + [anon_sym_restrict] = ACTIONS(4255), + [anon_sym___restrict__] = ACTIONS(4255), + [anon_sym__Atomic] = ACTIONS(4255), + [anon_sym__Noreturn] = ACTIONS(4255), + [anon_sym_noreturn] = ACTIONS(4255), + [anon_sym__Nonnull] = ACTIONS(4255), + [anon_sym_mutable] = ACTIONS(4255), + [anon_sym_constinit] = ACTIONS(4255), + [anon_sym_consteval] = ACTIONS(4255), + [anon_sym_alignas] = ACTIONS(4255), + [anon_sym__Alignas] = ACTIONS(4255), + [sym_primitive_type] = ACTIONS(4255), + [anon_sym_enum] = ACTIONS(4255), + [anon_sym_class] = ACTIONS(4255), + [anon_sym_struct] = ACTIONS(4255), + [anon_sym_union] = ACTIONS(4255), + [anon_sym_or] = ACTIONS(4255), + [anon_sym_and] = ACTIONS(4255), + [anon_sym_asm] = ACTIONS(4255), + [anon_sym___asm__] = ACTIONS(4255), + [anon_sym___asm] = ACTIONS(4255), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4255), + [anon_sym_decltype] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_explicit] = ACTIONS(4255), + [anon_sym_typename] = ACTIONS(4255), + [anon_sym_template] = ACTIONS(4255), + [anon_sym_GT2] = ACTIONS(4257), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_try] = ACTIONS(4255), + [anon_sym_friend] = ACTIONS(4255), + [anon_sym_using] = ACTIONS(4255), + [anon_sym_concept] = ACTIONS(4255), + [anon_sym_requires] = ACTIONS(4255), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4255), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4255), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4255), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4255), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4255), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4255), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4255), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4255), + [anon_sym_MOZ_COLD] = ACTIONS(4255), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4255), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4255), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4255), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4255), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4255), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4255), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4255), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4255), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4255), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4255), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4255), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4255), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4255), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4255), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4255), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4255), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4255), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4255), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4255), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4255), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4255), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4255), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4255), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4255), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4255), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4255), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4255), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4255), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4255), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4255), + [anon_sym_MOZ_NONNULL] = ACTIONS(4255), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4255), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4255), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4255), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4255), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4255), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4255), + [anon_sym_MOZ_NORETURN] = ACTIONS(4255), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4255), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4255), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4255), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4255), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4255), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4255), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4255), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4255), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4255), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4255), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4255), + [anon_sym_MOZ_RAII] = ACTIONS(4255), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4255), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4255), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4255), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4255), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4255), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4255), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4255), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4255), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4255), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4255), + }, + [STATE(953)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4276), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(7526), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_type_parameter_declaration] = STATE(7526), + [sym_variadic_type_parameter_declaration] = STATE(7526), + [sym_optional_type_parameter_declaration] = STATE(7526), + [sym_template_template_parameter_declaration] = STATE(7526), + [sym_optional_parameter_declaration] = STATE(7526), + [sym_variadic_parameter_declaration] = STATE(7526), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6924), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3303), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(4259), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(4261), + [anon_sym_template] = ACTIONS(4263), + [anon_sym_GT2] = ACTIONS(4265), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(954)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4276), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(7843), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_type_parameter_declaration] = STATE(7843), + [sym_variadic_type_parameter_declaration] = STATE(7843), + [sym_optional_type_parameter_declaration] = STATE(7843), + [sym_template_template_parameter_declaration] = STATE(7843), + [sym_optional_parameter_declaration] = STATE(7843), + [sym_variadic_parameter_declaration] = STATE(7843), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6924), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3303), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(4259), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(4261), + [anon_sym_template] = ACTIONS(4263), + [anon_sym_GT2] = ACTIONS(4267), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(955)] = { + [sym_identifier] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1893), + [anon_sym_COMMA] = ACTIONS(1893), + [anon_sym_RPAREN] = ACTIONS(1893), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym___extension__] = ACTIONS(1903), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym___based] = ACTIONS(1903), + [anon_sym___cdecl] = ACTIONS(1903), + [anon_sym___clrcall] = ACTIONS(1903), + [anon_sym___stdcall] = ACTIONS(1903), + [anon_sym___fastcall] = ACTIONS(1903), + [anon_sym___thiscall] = ACTIONS(1903), + [anon_sym___vectorcall] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_EQ] = ACTIONS(1893), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [anon_sym_asm] = ACTIONS(1903), + [anon_sym___asm__] = ACTIONS(1903), + [anon_sym___asm] = ACTIONS(1903), + [anon_sym_DASH_GT] = ACTIONS(1893), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1903), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1903), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1903), + [anon_sym_GT2] = ACTIONS(1893), + [anon_sym_operator] = ACTIONS(1903), + [anon_sym_try] = ACTIONS(1903), + [anon_sym_noexcept] = ACTIONS(1903), + [anon_sym_throw] = ACTIONS(1903), + [anon_sym_requires] = ACTIONS(1903), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), + }, + [STATE(956)] = { + [sym_identifier] = ACTIONS(4269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_STAR] = ACTIONS(4271), + [anon_sym_AMP_AMP] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym___extension__] = ACTIONS(4269), + [anon_sym_virtual] = ACTIONS(4269), + [anon_sym_extern] = ACTIONS(4269), + [anon_sym___attribute__] = ACTIONS(4269), + [anon_sym___attribute] = ACTIONS(4269), + [anon_sym_COLON_COLON] = ACTIONS(4271), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4271), + [anon_sym___declspec] = ACTIONS(4269), + [anon_sym___based] = ACTIONS(4269), + [anon_sym___cdecl] = ACTIONS(4269), + [anon_sym___clrcall] = ACTIONS(4269), + [anon_sym___stdcall] = ACTIONS(4269), + [anon_sym___fastcall] = ACTIONS(4269), + [anon_sym___thiscall] = ACTIONS(4269), + [anon_sym___vectorcall] = ACTIONS(4269), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_signed] = ACTIONS(4269), + [anon_sym_unsigned] = ACTIONS(4269), + [anon_sym_long] = ACTIONS(4269), + [anon_sym_short] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_static] = ACTIONS(4269), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_register] = ACTIONS(4269), + [anon_sym_inline] = ACTIONS(4269), + [anon_sym___inline] = ACTIONS(4269), + [anon_sym___inline__] = ACTIONS(4269), + [anon_sym___forceinline] = ACTIONS(4269), + [anon_sym_thread_local] = ACTIONS(4269), + [anon_sym___thread] = ACTIONS(4269), + [anon_sym_const] = ACTIONS(4269), + [anon_sym_constexpr] = ACTIONS(4269), + [anon_sym_volatile] = ACTIONS(4269), + [anon_sym_restrict] = ACTIONS(4269), + [anon_sym___restrict__] = ACTIONS(4269), + [anon_sym__Atomic] = ACTIONS(4269), + [anon_sym__Noreturn] = ACTIONS(4269), + [anon_sym_noreturn] = ACTIONS(4269), + [anon_sym__Nonnull] = ACTIONS(4269), + [anon_sym_mutable] = ACTIONS(4269), + [anon_sym_constinit] = ACTIONS(4269), + [anon_sym_consteval] = ACTIONS(4269), + [anon_sym_alignas] = ACTIONS(4269), + [anon_sym__Alignas] = ACTIONS(4269), + [sym_primitive_type] = ACTIONS(4269), + [anon_sym_enum] = ACTIONS(4269), + [anon_sym_class] = ACTIONS(4269), + [anon_sym_struct] = ACTIONS(4269), + [anon_sym_union] = ACTIONS(4269), + [anon_sym_asm] = ACTIONS(4269), + [anon_sym___asm__] = ACTIONS(4269), + [anon_sym___asm] = ACTIONS(4269), + [anon_sym_DASH_GT] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4269), + [anon_sym_decltype] = ACTIONS(4269), + [anon_sym_final] = ACTIONS(4269), + [anon_sym_override] = ACTIONS(4269), + [anon_sym_explicit] = ACTIONS(4269), + [anon_sym_typename] = ACTIONS(4269), + [anon_sym_template] = ACTIONS(4269), + [anon_sym_GT2] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4269), + [anon_sym_try] = ACTIONS(4269), + [anon_sym_noexcept] = ACTIONS(4269), + [anon_sym_throw] = ACTIONS(4269), + [anon_sym_requires] = ACTIONS(4269), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4269), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4269), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4269), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4269), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4269), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4269), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4269), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4269), + [anon_sym_MOZ_COLD] = ACTIONS(4269), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4269), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4269), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4269), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4269), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4269), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4269), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4269), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4269), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4269), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4269), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4269), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4269), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4269), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4269), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4269), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4269), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4269), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4269), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4269), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4269), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4269), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4269), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4269), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4269), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4269), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4269), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4269), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4269), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4269), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4269), + [anon_sym_MOZ_NONNULL] = ACTIONS(4269), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4269), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4269), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4269), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4269), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4269), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4269), + [anon_sym_MOZ_NORETURN] = ACTIONS(4269), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4269), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4269), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4269), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4269), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4269), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4269), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4269), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4269), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4269), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4269), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4269), + [anon_sym_MOZ_RAII] = ACTIONS(4269), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4269), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4269), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4269), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4269), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4269), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4269), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4269), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4269), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4269), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4269), + }, + [STATE(957)] = { + [sym_identifier] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3291), + [anon_sym_COMMA] = ACTIONS(3291), + [anon_sym_RPAREN] = ACTIONS(3291), + [anon_sym_LPAREN2] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3293), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3291), + [anon_sym_PIPE_PIPE] = ACTIONS(3291), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_CARET] = ACTIONS(3291), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_EQ_EQ] = ACTIONS(3291), + [anon_sym_BANG_EQ] = ACTIONS(3291), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3291), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_LT_LT] = ACTIONS(3291), + [anon_sym_GT_GT] = ACTIONS(3291), + [anon_sym_SEMI] = ACTIONS(3291), + [anon_sym___extension__] = ACTIONS(3289), + [anon_sym_virtual] = ACTIONS(3289), + [anon_sym_extern] = ACTIONS(3289), + [anon_sym___attribute__] = ACTIONS(3289), + [anon_sym___attribute] = ACTIONS(3289), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3289), + [anon_sym___based] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_register] = ACTIONS(3289), + [anon_sym_inline] = ACTIONS(3289), + [anon_sym___inline] = ACTIONS(3289), + [anon_sym___inline__] = ACTIONS(3289), + [anon_sym___forceinline] = ACTIONS(3289), + [anon_sym_thread_local] = ACTIONS(3289), + [anon_sym___thread] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_constexpr] = ACTIONS(3289), + [anon_sym_volatile] = ACTIONS(3289), + [anon_sym_restrict] = ACTIONS(3289), + [anon_sym___restrict__] = ACTIONS(3289), + [anon_sym__Atomic] = ACTIONS(3289), + [anon_sym__Noreturn] = ACTIONS(3289), + [anon_sym_noreturn] = ACTIONS(3289), + [anon_sym__Nonnull] = ACTIONS(3289), + [anon_sym_mutable] = ACTIONS(3289), + [anon_sym_constinit] = ACTIONS(3289), + [anon_sym_consteval] = ACTIONS(3289), + [anon_sym_alignas] = ACTIONS(3289), + [anon_sym__Alignas] = ACTIONS(3289), + [anon_sym_QMARK] = ACTIONS(3291), + [anon_sym_LT_EQ_GT] = ACTIONS(3291), + [anon_sym_or] = ACTIONS(3298), + [anon_sym_and] = ACTIONS(3298), + [anon_sym_bitor] = ACTIONS(3298), + [anon_sym_xor] = ACTIONS(3298), + [anon_sym_bitand] = ACTIONS(3298), + [anon_sym_not_eq] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DOT] = ACTIONS(3298), + [anon_sym_DOT_STAR] = ACTIONS(3291), + [anon_sym_DASH_GT] = ACTIONS(3291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3289), + [anon_sym_decltype] = ACTIONS(3289), + [anon_sym_template] = ACTIONS(3289), + [anon_sym_operator] = ACTIONS(3289), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3289), + [anon_sym_MOZ_COLD] = ACTIONS(3289), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3289), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3289), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3289), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3289), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3289), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3289), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3289), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3289), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3289), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3289), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3289), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3289), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_RAII] = ACTIONS(3289), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3289), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3289), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3289), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3289), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3289), + }, + [STATE(958)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4276), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(8095), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_type_parameter_declaration] = STATE(8095), + [sym_variadic_type_parameter_declaration] = STATE(8095), + [sym_optional_type_parameter_declaration] = STATE(8095), + [sym_template_template_parameter_declaration] = STATE(8095), + [sym_optional_parameter_declaration] = STATE(8095), + [sym_variadic_parameter_declaration] = STATE(8095), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6924), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3303), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(4259), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(4261), + [anon_sym_template] = ACTIONS(4263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(959)] = { + [sym_expression] = STATE(4800), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_initializer_list] = STATE(5199), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), + [anon_sym_COMMA] = ACTIONS(3321), + [anon_sym_LPAREN2] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3321), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE] = ACTIONS(3319), + [anon_sym_CARET] = ACTIONS(3321), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3319), + [anon_sym_LT_EQ] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_LT_LT] = ACTIONS(3321), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(3321), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_QMARK] = ACTIONS(3321), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_LT_EQ_GT] = ACTIONS(3321), + [anon_sym_or] = ACTIONS(3319), + [anon_sym_and] = ACTIONS(3319), + [anon_sym_bitor] = ACTIONS(3319), + [anon_sym_xor] = ACTIONS(3319), + [anon_sym_bitand] = ACTIONS(3319), + [anon_sym_not_eq] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [anon_sym_DOT] = ACTIONS(3319), + [anon_sym_DOT_STAR] = ACTIONS(3321), + [anon_sym_DASH_GT] = ACTIONS(3321), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(3321), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(960)] = { + [sym_expression] = STATE(4842), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_initializer_list] = STATE(4206), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), + [anon_sym_COMMA] = ACTIONS(3321), + [anon_sym_LPAREN2] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3321), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE] = ACTIONS(3319), + [anon_sym_CARET] = ACTIONS(3321), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_LT_LT] = ACTIONS(3321), + [anon_sym_GT_GT] = ACTIONS(3321), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3321), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(3319), + [anon_sym_QMARK] = ACTIONS(3321), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_LT_EQ_GT] = ACTIONS(3321), + [anon_sym_or] = ACTIONS(3319), + [anon_sym_and] = ACTIONS(3319), + [anon_sym_bitor] = ACTIONS(3319), + [anon_sym_xor] = ACTIONS(3319), + [anon_sym_bitand] = ACTIONS(3319), + [anon_sym_not_eq] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(3319), + [anon_sym_DOT_STAR] = ACTIONS(3321), + [anon_sym_DASH_GT] = ACTIONS(3321), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(961)] = { + [sym_expression] = STATE(4060), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_initializer_list] = STATE(4206), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), + [anon_sym_COMMA] = ACTIONS(3321), + [anon_sym_LPAREN2] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(4301), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3321), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE] = ACTIONS(3319), + [anon_sym_CARET] = ACTIONS(3321), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_LT_LT] = ACTIONS(3321), + [anon_sym_GT_GT] = ACTIONS(3321), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_RBRACK] = ACTIONS(3321), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_QMARK] = ACTIONS(3321), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_LT_EQ_GT] = ACTIONS(3321), + [anon_sym_or] = ACTIONS(3319), + [anon_sym_and] = ACTIONS(3319), + [anon_sym_bitor] = ACTIONS(3319), + [anon_sym_xor] = ACTIONS(3319), + [anon_sym_bitand] = ACTIONS(3319), + [anon_sym_not_eq] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(3319), + [anon_sym_DOT_STAR] = ACTIONS(3321), + [anon_sym_DASH_GT] = ACTIONS(3321), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(962)] = { + [sym_catch_clause] = STATE(964), + [aux_sym_constructor_try_statement_repeat1] = STATE(964), + [sym_identifier] = ACTIONS(1943), + [aux_sym_preproc_def_token1] = ACTIONS(1943), + [aux_sym_preproc_if_token1] = ACTIONS(1943), + [aux_sym_preproc_if_token2] = ACTIONS(1943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1943), + [aux_sym_preproc_else_token1] = ACTIONS(1943), + [aux_sym_preproc_elif_token1] = ACTIONS(1943), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1943), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1943), + [sym_preproc_directive] = ACTIONS(1943), + [anon_sym_LPAREN2] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_AMP_AMP] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_SEMI] = ACTIONS(1945), + [anon_sym___extension__] = ACTIONS(1943), + [anon_sym_typedef] = ACTIONS(1943), + [anon_sym_virtual] = ACTIONS(1943), + [anon_sym_extern] = ACTIONS(1943), + [anon_sym___attribute__] = ACTIONS(1943), + [anon_sym___attribute] = ACTIONS(1943), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1945), + [anon_sym___declspec] = ACTIONS(1943), + [anon_sym___based] = ACTIONS(1943), + [anon_sym_signed] = ACTIONS(1943), + [anon_sym_unsigned] = ACTIONS(1943), + [anon_sym_long] = ACTIONS(1943), + [anon_sym_short] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_static] = ACTIONS(1943), + [anon_sym_register] = ACTIONS(1943), + [anon_sym_inline] = ACTIONS(1943), + [anon_sym___inline] = ACTIONS(1943), + [anon_sym___inline__] = ACTIONS(1943), + [anon_sym___forceinline] = ACTIONS(1943), + [anon_sym_thread_local] = ACTIONS(1943), + [anon_sym___thread] = ACTIONS(1943), + [anon_sym_const] = ACTIONS(1943), + [anon_sym_constexpr] = ACTIONS(1943), + [anon_sym_volatile] = ACTIONS(1943), + [anon_sym_restrict] = ACTIONS(1943), + [anon_sym___restrict__] = ACTIONS(1943), + [anon_sym__Atomic] = ACTIONS(1943), + [anon_sym__Noreturn] = ACTIONS(1943), + [anon_sym_noreturn] = ACTIONS(1943), + [anon_sym__Nonnull] = ACTIONS(1943), + [anon_sym_mutable] = ACTIONS(1943), + [anon_sym_constinit] = ACTIONS(1943), + [anon_sym_consteval] = ACTIONS(1943), + [anon_sym_alignas] = ACTIONS(1943), + [anon_sym__Alignas] = ACTIONS(1943), + [sym_primitive_type] = ACTIONS(1943), + [anon_sym_enum] = ACTIONS(1943), + [anon_sym_class] = ACTIONS(1943), + [anon_sym_struct] = ACTIONS(1943), + [anon_sym_union] = ACTIONS(1943), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1943), + [anon_sym_decltype] = ACTIONS(1943), + [anon_sym_explicit] = ACTIONS(1943), + [anon_sym_typename] = ACTIONS(1943), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_operator] = ACTIONS(1943), + [anon_sym_friend] = ACTIONS(1943), + [anon_sym_public] = ACTIONS(1943), + [anon_sym_private] = ACTIONS(1943), + [anon_sym_protected] = ACTIONS(1943), + [anon_sym_using] = ACTIONS(1943), + [anon_sym_static_assert] = ACTIONS(1943), + [anon_sym_catch] = ACTIONS(4315), + [sym_macro_statement] = ACTIONS(1943), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1943), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1943), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1943), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1943), + [anon_sym_MOZ_COLD] = ACTIONS(1943), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1943), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1943), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1943), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1943), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1943), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1943), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1943), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1943), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1943), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1943), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1943), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1943), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1943), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_NONNULL] = ACTIONS(1943), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1943), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1943), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1943), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1943), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1943), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1943), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1943), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1943), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1943), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1943), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1943), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1943), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1943), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1943), + [anon_sym_MOZ_RAII] = ACTIONS(1943), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1943), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1943), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1943), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1943), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1943), + }, + [STATE(963)] = { + [sym_identifier] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3293), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_RPAREN] = ACTIONS(3293), + [anon_sym_LPAREN2] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3293), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3291), + [anon_sym_PIPE_PIPE] = ACTIONS(3291), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_CARET] = ACTIONS(3291), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_EQ_EQ] = ACTIONS(3291), + [anon_sym_BANG_EQ] = ACTIONS(3291), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3291), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_LT_LT] = ACTIONS(3291), + [anon_sym_GT_GT] = ACTIONS(3291), + [anon_sym___extension__] = ACTIONS(3289), + [anon_sym_virtual] = ACTIONS(3289), + [anon_sym_extern] = ACTIONS(3289), + [anon_sym___attribute__] = ACTIONS(3289), + [anon_sym___attribute] = ACTIONS(3289), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3289), + [anon_sym___based] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_EQ] = ACTIONS(3289), + [anon_sym_register] = ACTIONS(3289), + [anon_sym_inline] = ACTIONS(3289), + [anon_sym___inline] = ACTIONS(3289), + [anon_sym___inline__] = ACTIONS(3289), + [anon_sym___forceinline] = ACTIONS(3289), + [anon_sym_thread_local] = ACTIONS(3289), + [anon_sym___thread] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_constexpr] = ACTIONS(3289), + [anon_sym_volatile] = ACTIONS(3289), + [anon_sym_restrict] = ACTIONS(3289), + [anon_sym___restrict__] = ACTIONS(3289), + [anon_sym__Atomic] = ACTIONS(3289), + [anon_sym__Noreturn] = ACTIONS(3289), + [anon_sym_noreturn] = ACTIONS(3289), + [anon_sym__Nonnull] = ACTIONS(3289), + [anon_sym_mutable] = ACTIONS(3289), + [anon_sym_constinit] = ACTIONS(3289), + [anon_sym_consteval] = ACTIONS(3289), + [anon_sym_alignas] = ACTIONS(3289), + [anon_sym__Alignas] = ACTIONS(3289), + [anon_sym_QMARK] = ACTIONS(3291), + [anon_sym_LT_EQ_GT] = ACTIONS(3291), + [anon_sym_or] = ACTIONS(3298), + [anon_sym_and] = ACTIONS(3298), + [anon_sym_bitor] = ACTIONS(3298), + [anon_sym_xor] = ACTIONS(3298), + [anon_sym_bitand] = ACTIONS(3298), + [anon_sym_not_eq] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DOT] = ACTIONS(3298), + [anon_sym_DOT_STAR] = ACTIONS(3291), + [anon_sym_DASH_GT] = ACTIONS(3291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3289), + [anon_sym_decltype] = ACTIONS(3289), + [anon_sym_template] = ACTIONS(3289), + [anon_sym_operator] = ACTIONS(3289), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3289), + [anon_sym_MOZ_COLD] = ACTIONS(3289), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3289), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3289), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3289), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3289), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3289), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3289), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3289), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3289), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3289), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3289), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3289), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3289), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_RAII] = ACTIONS(3289), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3289), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3289), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3289), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3289), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3289), + }, + [STATE(964)] = { + [sym_catch_clause] = STATE(964), + [aux_sym_constructor_try_statement_repeat1] = STATE(964), + [sym_identifier] = ACTIONS(1924), + [aux_sym_preproc_def_token1] = ACTIONS(1924), + [aux_sym_preproc_if_token1] = ACTIONS(1924), + [aux_sym_preproc_if_token2] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1924), + [aux_sym_preproc_else_token1] = ACTIONS(1924), + [aux_sym_preproc_elif_token1] = ACTIONS(1924), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1924), + [sym_preproc_directive] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_AMP_AMP] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym___extension__] = ACTIONS(1924), + [anon_sym_typedef] = ACTIONS(1924), + [anon_sym_virtual] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym___attribute__] = ACTIONS(1924), + [anon_sym___attribute] = ACTIONS(1924), + [anon_sym_COLON_COLON] = ACTIONS(1926), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1926), + [anon_sym___declspec] = ACTIONS(1924), + [anon_sym___based] = ACTIONS(1924), + [anon_sym_signed] = ACTIONS(1924), + [anon_sym_unsigned] = ACTIONS(1924), + [anon_sym_long] = ACTIONS(1924), + [anon_sym_short] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_register] = ACTIONS(1924), + [anon_sym_inline] = ACTIONS(1924), + [anon_sym___inline] = ACTIONS(1924), + [anon_sym___inline__] = ACTIONS(1924), + [anon_sym___forceinline] = ACTIONS(1924), + [anon_sym_thread_local] = ACTIONS(1924), + [anon_sym___thread] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_constexpr] = ACTIONS(1924), + [anon_sym_volatile] = ACTIONS(1924), + [anon_sym_restrict] = ACTIONS(1924), + [anon_sym___restrict__] = ACTIONS(1924), + [anon_sym__Atomic] = ACTIONS(1924), + [anon_sym__Noreturn] = ACTIONS(1924), + [anon_sym_noreturn] = ACTIONS(1924), + [anon_sym__Nonnull] = ACTIONS(1924), + [anon_sym_mutable] = ACTIONS(1924), + [anon_sym_constinit] = ACTIONS(1924), + [anon_sym_consteval] = ACTIONS(1924), + [anon_sym_alignas] = ACTIONS(1924), + [anon_sym__Alignas] = ACTIONS(1924), + [sym_primitive_type] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_class] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1924), + [anon_sym_decltype] = ACTIONS(1924), + [anon_sym_explicit] = ACTIONS(1924), + [anon_sym_typename] = ACTIONS(1924), + [anon_sym_template] = ACTIONS(1924), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_friend] = ACTIONS(1924), + [anon_sym_public] = ACTIONS(1924), + [anon_sym_private] = ACTIONS(1924), + [anon_sym_protected] = ACTIONS(1924), + [anon_sym_using] = ACTIONS(1924), + [anon_sym_static_assert] = ACTIONS(1924), + [anon_sym_catch] = ACTIONS(4317), + [sym_macro_statement] = ACTIONS(1924), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1924), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1924), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1924), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1924), + [anon_sym_MOZ_COLD] = ACTIONS(1924), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1924), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1924), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1924), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1924), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1924), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1924), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1924), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1924), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1924), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1924), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1924), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1924), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1924), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_NONNULL] = ACTIONS(1924), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1924), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1924), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1924), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1924), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1924), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1924), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1924), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1924), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1924), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1924), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1924), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1924), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1924), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1924), + [anon_sym_MOZ_RAII] = ACTIONS(1924), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1924), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1924), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1924), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1924), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1924), + }, + [STATE(965)] = { + [sym_catch_clause] = STATE(964), + [aux_sym_constructor_try_statement_repeat1] = STATE(964), + [sym_identifier] = ACTIONS(1939), + [aux_sym_preproc_def_token1] = ACTIONS(1939), + [aux_sym_preproc_if_token1] = ACTIONS(1939), + [aux_sym_preproc_if_token2] = ACTIONS(1939), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1939), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1939), + [aux_sym_preproc_else_token1] = ACTIONS(1939), + [aux_sym_preproc_elif_token1] = ACTIONS(1939), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1939), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1939), + [sym_preproc_directive] = ACTIONS(1939), + [anon_sym_LPAREN2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym___extension__] = ACTIONS(1939), + [anon_sym_typedef] = ACTIONS(1939), + [anon_sym_virtual] = ACTIONS(1939), + [anon_sym_extern] = ACTIONS(1939), + [anon_sym___attribute__] = ACTIONS(1939), + [anon_sym___attribute] = ACTIONS(1939), + [anon_sym_COLON_COLON] = ACTIONS(1941), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1941), + [anon_sym___declspec] = ACTIONS(1939), + [anon_sym___based] = ACTIONS(1939), + [anon_sym_signed] = ACTIONS(1939), + [anon_sym_unsigned] = ACTIONS(1939), + [anon_sym_long] = ACTIONS(1939), + [anon_sym_short] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1939), + [anon_sym_static] = ACTIONS(1939), + [anon_sym_register] = ACTIONS(1939), + [anon_sym_inline] = ACTIONS(1939), + [anon_sym___inline] = ACTIONS(1939), + [anon_sym___inline__] = ACTIONS(1939), + [anon_sym___forceinline] = ACTIONS(1939), + [anon_sym_thread_local] = ACTIONS(1939), + [anon_sym___thread] = ACTIONS(1939), + [anon_sym_const] = ACTIONS(1939), + [anon_sym_constexpr] = ACTIONS(1939), + [anon_sym_volatile] = ACTIONS(1939), + [anon_sym_restrict] = ACTIONS(1939), + [anon_sym___restrict__] = ACTIONS(1939), + [anon_sym__Atomic] = ACTIONS(1939), + [anon_sym__Noreturn] = ACTIONS(1939), + [anon_sym_noreturn] = ACTIONS(1939), + [anon_sym__Nonnull] = ACTIONS(1939), + [anon_sym_mutable] = ACTIONS(1939), + [anon_sym_constinit] = ACTIONS(1939), + [anon_sym_consteval] = ACTIONS(1939), + [anon_sym_alignas] = ACTIONS(1939), + [anon_sym__Alignas] = ACTIONS(1939), + [sym_primitive_type] = ACTIONS(1939), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_class] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(1939), + [anon_sym_union] = ACTIONS(1939), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1939), + [anon_sym_decltype] = ACTIONS(1939), + [anon_sym_explicit] = ACTIONS(1939), + [anon_sym_typename] = ACTIONS(1939), + [anon_sym_template] = ACTIONS(1939), + [anon_sym_operator] = ACTIONS(1939), + [anon_sym_friend] = ACTIONS(1939), + [anon_sym_public] = ACTIONS(1939), + [anon_sym_private] = ACTIONS(1939), + [anon_sym_protected] = ACTIONS(1939), + [anon_sym_using] = ACTIONS(1939), + [anon_sym_static_assert] = ACTIONS(1939), + [anon_sym_catch] = ACTIONS(4315), + [sym_macro_statement] = ACTIONS(1939), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1939), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1939), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1939), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1939), + [anon_sym_MOZ_COLD] = ACTIONS(1939), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1939), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1939), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1939), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1939), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1939), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1939), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1939), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1939), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1939), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1939), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1939), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1939), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1939), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_NONNULL] = ACTIONS(1939), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1939), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1939), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1939), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1939), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1939), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1939), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1939), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1939), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1939), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1939), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1939), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1939), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1939), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1939), + [anon_sym_MOZ_RAII] = ACTIONS(1939), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1939), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1939), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1939), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1939), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1939), + }, + [STATE(966)] = { + [sym_catch_clause] = STATE(964), + [aux_sym_constructor_try_statement_repeat1] = STATE(964), + [sym_identifier] = ACTIONS(1931), + [aux_sym_preproc_def_token1] = ACTIONS(1931), + [aux_sym_preproc_if_token1] = ACTIONS(1931), + [aux_sym_preproc_if_token2] = ACTIONS(1931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1931), + [aux_sym_preproc_else_token1] = ACTIONS(1931), + [aux_sym_preproc_elif_token1] = ACTIONS(1931), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1931), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1931), + [sym_preproc_directive] = ACTIONS(1931), + [anon_sym_LPAREN2] = ACTIONS(1933), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_AMP_AMP] = ACTIONS(1933), + [anon_sym_AMP] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym___extension__] = ACTIONS(1931), + [anon_sym_typedef] = ACTIONS(1931), + [anon_sym_virtual] = ACTIONS(1931), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym___attribute__] = ACTIONS(1931), + [anon_sym___attribute] = ACTIONS(1931), + [anon_sym_COLON_COLON] = ACTIONS(1933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1933), + [anon_sym___declspec] = ACTIONS(1931), + [anon_sym___based] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_static] = ACTIONS(1931), + [anon_sym_register] = ACTIONS(1931), + [anon_sym_inline] = ACTIONS(1931), + [anon_sym___inline] = ACTIONS(1931), + [anon_sym___inline__] = ACTIONS(1931), + [anon_sym___forceinline] = ACTIONS(1931), + [anon_sym_thread_local] = ACTIONS(1931), + [anon_sym___thread] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_constexpr] = ACTIONS(1931), + [anon_sym_volatile] = ACTIONS(1931), + [anon_sym_restrict] = ACTIONS(1931), + [anon_sym___restrict__] = ACTIONS(1931), + [anon_sym__Atomic] = ACTIONS(1931), + [anon_sym__Noreturn] = ACTIONS(1931), + [anon_sym_noreturn] = ACTIONS(1931), + [anon_sym__Nonnull] = ACTIONS(1931), + [anon_sym_mutable] = ACTIONS(1931), + [anon_sym_constinit] = ACTIONS(1931), + [anon_sym_consteval] = ACTIONS(1931), + [anon_sym_alignas] = ACTIONS(1931), + [anon_sym__Alignas] = ACTIONS(1931), + [sym_primitive_type] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [anon_sym_class] = ACTIONS(1931), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_union] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1931), + [anon_sym_decltype] = ACTIONS(1931), + [anon_sym_explicit] = ACTIONS(1931), + [anon_sym_typename] = ACTIONS(1931), + [anon_sym_template] = ACTIONS(1931), + [anon_sym_operator] = ACTIONS(1931), + [anon_sym_friend] = ACTIONS(1931), + [anon_sym_public] = ACTIONS(1931), + [anon_sym_private] = ACTIONS(1931), + [anon_sym_protected] = ACTIONS(1931), + [anon_sym_using] = ACTIONS(1931), + [anon_sym_static_assert] = ACTIONS(1931), + [anon_sym_catch] = ACTIONS(4315), + [sym_macro_statement] = ACTIONS(1931), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1931), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1931), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1931), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1931), + [anon_sym_MOZ_COLD] = ACTIONS(1931), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1931), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1931), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1931), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1931), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1931), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1931), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1931), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1931), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1931), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1931), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1931), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1931), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1931), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_NONNULL] = ACTIONS(1931), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1931), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1931), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1931), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1931), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1931), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1931), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1931), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1931), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1931), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1931), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1931), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1931), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1931), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1931), + [anon_sym_MOZ_RAII] = ACTIONS(1931), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1931), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1931), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1931), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1931), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1931), + }, + [STATE(967)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(7852), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(7852), + [sym_variadic_parameter_declaration] = STATE(7852), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6924), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(4322), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(968)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(7797), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(7797), + [sym_variadic_parameter_declaration] = STATE(7797), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6924), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_RPAREN] = ACTIONS(3317), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(969)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(7562), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(7562), + [sym_variadic_parameter_declaration] = STATE(7562), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6924), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4324), + [anon_sym_RPAREN] = ACTIONS(4326), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(970)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(7553), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(7553), + [sym_variadic_parameter_declaration] = STATE(7553), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6924), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1869), + [anon_sym_RPAREN] = ACTIONS(3217), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(971)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(7561), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(7561), + [sym_variadic_parameter_declaration] = STATE(7561), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6924), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4328), + [anon_sym_RPAREN] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(972)] = { + [sym_expression] = STATE(4923), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4332), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4301), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(4336), + [anon_sym_PERCENT] = ACTIONS(4332), + [anon_sym_PIPE_PIPE] = ACTIONS(4332), + [anon_sym_AMP_AMP] = ACTIONS(4332), + [anon_sym_PIPE] = ACTIONS(4336), + [anon_sym_CARET] = ACTIONS(4332), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(4332), + [anon_sym_BANG_EQ] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4336), + [anon_sym_GT_EQ] = ACTIONS(4332), + [anon_sym_LT_EQ] = ACTIONS(4336), + [anon_sym_LT] = ACTIONS(4336), + [anon_sym_LT_LT] = ACTIONS(4332), + [anon_sym_GT_GT] = ACTIONS(4332), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(4332), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_QMARK] = ACTIONS(4332), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_LT_EQ_GT] = ACTIONS(4332), + [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(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(4336), + [anon_sym_DOT_STAR] = ACTIONS(4332), + [anon_sym_DASH_GT] = ACTIONS(4332), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(973)] = { + [sym_identifier] = ACTIONS(1879), + [aux_sym_preproc_def_token1] = ACTIONS(1879), + [aux_sym_preproc_if_token1] = ACTIONS(1879), + [aux_sym_preproc_if_token2] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1879), + [aux_sym_preproc_else_token1] = ACTIONS(1879), + [aux_sym_preproc_elif_token1] = ACTIONS(1879), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1879), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1879), + [sym_preproc_directive] = ACTIONS(1879), + [anon_sym_LPAREN2] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym___extension__] = ACTIONS(1879), + [anon_sym_typedef] = ACTIONS(1879), + [anon_sym_virtual] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym___attribute__] = ACTIONS(1879), + [anon_sym___attribute] = ACTIONS(1879), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1877), + [anon_sym___declspec] = ACTIONS(1879), + [anon_sym___based] = ACTIONS(1879), + [anon_sym_signed] = ACTIONS(1879), + [anon_sym_unsigned] = ACTIONS(1879), + [anon_sym_long] = ACTIONS(1879), + [anon_sym_short] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_static] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_inline] = ACTIONS(1879), + [anon_sym___inline] = ACTIONS(1879), + [anon_sym___inline__] = ACTIONS(1879), + [anon_sym___forceinline] = ACTIONS(1879), + [anon_sym_thread_local] = ACTIONS(1879), + [anon_sym___thread] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_constexpr] = ACTIONS(1879), + [anon_sym_volatile] = ACTIONS(1879), + [anon_sym_restrict] = ACTIONS(1879), + [anon_sym___restrict__] = ACTIONS(1879), + [anon_sym__Atomic] = ACTIONS(1879), + [anon_sym__Noreturn] = ACTIONS(1879), + [anon_sym_noreturn] = ACTIONS(1879), + [anon_sym__Nonnull] = ACTIONS(1879), + [anon_sym_mutable] = ACTIONS(1879), + [anon_sym_constinit] = ACTIONS(1879), + [anon_sym_consteval] = ACTIONS(1879), + [anon_sym_alignas] = ACTIONS(1879), + [anon_sym__Alignas] = ACTIONS(1879), + [sym_primitive_type] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_class] = ACTIONS(1879), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1879), + [anon_sym_decltype] = ACTIONS(1879), + [anon_sym_explicit] = ACTIONS(1879), + [anon_sym_typename] = ACTIONS(1879), + [anon_sym_template] = ACTIONS(1879), + [anon_sym_operator] = ACTIONS(1879), + [anon_sym_friend] = ACTIONS(1879), + [anon_sym_public] = ACTIONS(1879), + [anon_sym_private] = ACTIONS(1879), + [anon_sym_protected] = ACTIONS(1879), + [anon_sym_using] = ACTIONS(1879), + [anon_sym_static_assert] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [sym_macro_statement] = ACTIONS(1879), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1879), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1879), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1879), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1879), + [anon_sym_MOZ_COLD] = ACTIONS(1879), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1879), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1879), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1879), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1879), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1879), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1879), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1879), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1879), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1879), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1879), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1879), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1879), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1879), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_NONNULL] = ACTIONS(1879), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1879), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1879), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1879), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1879), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1879), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1879), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1879), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1879), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1879), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1879), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1879), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1879), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), + [anon_sym_MOZ_RAII] = ACTIONS(1879), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1879), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1879), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1879), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1879), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1879), + }, + [STATE(974)] = { + [sym_identifier] = ACTIONS(1875), + [aux_sym_preproc_def_token1] = ACTIONS(1875), + [aux_sym_preproc_if_token1] = ACTIONS(1875), + [aux_sym_preproc_if_token2] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1875), + [aux_sym_preproc_else_token1] = ACTIONS(1875), + [aux_sym_preproc_elif_token1] = ACTIONS(1875), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1875), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1875), + [sym_preproc_directive] = ACTIONS(1875), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym___extension__] = ACTIONS(1875), + [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_virtual] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym___attribute__] = ACTIONS(1875), + [anon_sym___attribute] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), + [anon_sym___declspec] = ACTIONS(1875), + [anon_sym___based] = ACTIONS(1875), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_inline] = ACTIONS(1875), + [anon_sym___inline] = ACTIONS(1875), + [anon_sym___inline__] = ACTIONS(1875), + [anon_sym___forceinline] = ACTIONS(1875), + [anon_sym_thread_local] = ACTIONS(1875), + [anon_sym___thread] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_constexpr] = ACTIONS(1875), + [anon_sym_volatile] = ACTIONS(1875), + [anon_sym_restrict] = ACTIONS(1875), + [anon_sym___restrict__] = ACTIONS(1875), + [anon_sym__Atomic] = ACTIONS(1875), + [anon_sym__Noreturn] = ACTIONS(1875), + [anon_sym_noreturn] = ACTIONS(1875), + [anon_sym__Nonnull] = ACTIONS(1875), + [anon_sym_mutable] = ACTIONS(1875), + [anon_sym_constinit] = ACTIONS(1875), + [anon_sym_consteval] = ACTIONS(1875), + [anon_sym_alignas] = ACTIONS(1875), + [anon_sym__Alignas] = ACTIONS(1875), + [sym_primitive_type] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1875), + [anon_sym_decltype] = ACTIONS(1875), + [anon_sym_explicit] = ACTIONS(1875), + [anon_sym_typename] = ACTIONS(1875), + [anon_sym_template] = ACTIONS(1875), + [anon_sym_operator] = ACTIONS(1875), + [anon_sym_friend] = ACTIONS(1875), + [anon_sym_public] = ACTIONS(1875), + [anon_sym_private] = ACTIONS(1875), + [anon_sym_protected] = ACTIONS(1875), + [anon_sym_using] = ACTIONS(1875), + [anon_sym_static_assert] = ACTIONS(1875), + [anon_sym_catch] = ACTIONS(1875), + [sym_macro_statement] = ACTIONS(1875), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1875), + [anon_sym_MOZ_COLD] = ACTIONS(1875), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1875), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1875), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1875), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1875), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1875), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1875), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1875), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1875), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1875), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1875), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1875), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1875), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_RAII] = ACTIONS(1875), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1875), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1875), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1875), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), + }, + [STATE(975)] = { + [sym_identifier] = ACTIONS(1875), + [aux_sym_preproc_def_token1] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1875), + [aux_sym_preproc_if_token2] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1875), + [aux_sym_preproc_else_token1] = ACTIONS(1875), + [aux_sym_preproc_elif_token1] = ACTIONS(1875), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1875), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1875), + [sym_preproc_directive] = ACTIONS(1875), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym___extension__] = ACTIONS(1875), + [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_virtual] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym___attribute__] = ACTIONS(1875), + [anon_sym___attribute] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), + [anon_sym___declspec] = ACTIONS(1875), + [anon_sym___based] = ACTIONS(1875), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_inline] = ACTIONS(1875), + [anon_sym___inline] = ACTIONS(1875), + [anon_sym___inline__] = ACTIONS(1875), + [anon_sym___forceinline] = ACTIONS(1875), + [anon_sym_thread_local] = ACTIONS(1875), + [anon_sym___thread] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_constexpr] = ACTIONS(1875), + [anon_sym_volatile] = ACTIONS(1875), + [anon_sym_restrict] = ACTIONS(1875), + [anon_sym___restrict__] = ACTIONS(1875), + [anon_sym__Atomic] = ACTIONS(1875), + [anon_sym__Noreturn] = ACTIONS(1875), + [anon_sym_noreturn] = ACTIONS(1875), + [anon_sym__Nonnull] = ACTIONS(1875), + [anon_sym_mutable] = ACTIONS(1875), + [anon_sym_constinit] = ACTIONS(1875), + [anon_sym_consteval] = ACTIONS(1875), + [anon_sym_alignas] = ACTIONS(1875), + [anon_sym__Alignas] = ACTIONS(1875), + [sym_primitive_type] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1875), + [anon_sym_decltype] = ACTIONS(1875), + [anon_sym_explicit] = ACTIONS(1875), + [anon_sym_typename] = ACTIONS(1875), + [anon_sym_template] = ACTIONS(1875), + [anon_sym_operator] = ACTIONS(1875), + [anon_sym_friend] = ACTIONS(1875), + [anon_sym_public] = ACTIONS(1875), + [anon_sym_private] = ACTIONS(1875), + [anon_sym_protected] = ACTIONS(1875), + [anon_sym_using] = ACTIONS(1875), + [anon_sym_static_assert] = ACTIONS(1875), + [sym_macro_statement] = ACTIONS(1875), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1875), + [anon_sym_MOZ_COLD] = ACTIONS(1875), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1875), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1875), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1875), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1875), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1875), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1875), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1875), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1875), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1875), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1875), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1875), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1875), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_RAII] = ACTIONS(1875), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1875), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1875), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1875), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), + }, + [STATE(976)] = { + [sym_identifier] = ACTIONS(1875), + [aux_sym_preproc_def_token1] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1875), + [aux_sym_preproc_if_token2] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1875), + [aux_sym_preproc_else_token1] = ACTIONS(1875), + [aux_sym_preproc_elif_token1] = ACTIONS(1875), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1875), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1875), + [sym_preproc_directive] = ACTIONS(1875), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym___extension__] = ACTIONS(1875), + [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_virtual] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym___attribute__] = ACTIONS(4340), + [anon_sym___attribute] = ACTIONS(4340), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), + [anon_sym___declspec] = ACTIONS(1875), + [anon_sym___based] = ACTIONS(1875), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_inline] = ACTIONS(1875), + [anon_sym___inline] = ACTIONS(1875), + [anon_sym___inline__] = ACTIONS(1875), + [anon_sym___forceinline] = ACTIONS(1875), + [anon_sym_thread_local] = ACTIONS(1875), + [anon_sym___thread] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_constexpr] = ACTIONS(1875), + [anon_sym_volatile] = ACTIONS(1875), + [anon_sym_restrict] = ACTIONS(1875), + [anon_sym___restrict__] = ACTIONS(1875), + [anon_sym__Atomic] = ACTIONS(1875), + [anon_sym__Noreturn] = ACTIONS(1875), + [anon_sym_noreturn] = ACTIONS(1875), + [anon_sym__Nonnull] = ACTIONS(1875), + [anon_sym_mutable] = ACTIONS(1875), + [anon_sym_constinit] = ACTIONS(1875), + [anon_sym_consteval] = ACTIONS(1875), + [anon_sym_alignas] = ACTIONS(1875), + [anon_sym__Alignas] = ACTIONS(1875), + [sym_primitive_type] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1875), + [anon_sym_decltype] = ACTIONS(1875), + [anon_sym_explicit] = ACTIONS(1875), + [anon_sym_typename] = ACTIONS(1875), + [anon_sym_template] = ACTIONS(1875), + [anon_sym_operator] = ACTIONS(1875), + [anon_sym_friend] = ACTIONS(1875), + [anon_sym_public] = ACTIONS(1875), + [anon_sym_private] = ACTIONS(1875), + [anon_sym_protected] = ACTIONS(1875), + [anon_sym_using] = ACTIONS(1875), + [anon_sym_static_assert] = ACTIONS(1875), + [sym_macro_statement] = ACTIONS(1875), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1875), + [anon_sym_MOZ_COLD] = ACTIONS(1875), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1875), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1875), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1875), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1875), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1875), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1875), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1875), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1875), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1875), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1875), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1875), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1875), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_RAII] = ACTIONS(1875), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1875), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1875), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1875), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), + }, + [STATE(977)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(7699), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(7699), + [sym_variadic_parameter_declaration] = STATE(7699), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6924), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3303), + [anon_sym_RPAREN] = ACTIONS(1799), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(978)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(8124), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(8124), + [sym_variadic_parameter_declaration] = STATE(8124), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6924), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4342), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(979)] = { + [sym_identifier] = ACTIONS(1953), + [aux_sym_preproc_def_token1] = ACTIONS(1953), + [aux_sym_preproc_if_token1] = ACTIONS(1953), + [aux_sym_preproc_if_token2] = ACTIONS(1953), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1953), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1953), + [aux_sym_preproc_else_token1] = ACTIONS(1953), + [aux_sym_preproc_elif_token1] = ACTIONS(1953), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1953), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1953), + [sym_preproc_directive] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym___extension__] = ACTIONS(1953), + [anon_sym_typedef] = ACTIONS(1953), + [anon_sym_virtual] = ACTIONS(1953), + [anon_sym_extern] = ACTIONS(1953), + [anon_sym___attribute__] = ACTIONS(1953), + [anon_sym___attribute] = ACTIONS(1953), + [anon_sym_COLON_COLON] = ACTIONS(1955), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1955), + [anon_sym___declspec] = ACTIONS(1953), + [anon_sym___based] = ACTIONS(1953), + [anon_sym_signed] = ACTIONS(1953), + [anon_sym_unsigned] = ACTIONS(1953), + [anon_sym_long] = ACTIONS(1953), + [anon_sym_short] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(1953), + [anon_sym_static] = ACTIONS(1953), + [anon_sym_register] = ACTIONS(1953), + [anon_sym_inline] = ACTIONS(1953), + [anon_sym___inline] = ACTIONS(1953), + [anon_sym___inline__] = ACTIONS(1953), + [anon_sym___forceinline] = ACTIONS(1953), + [anon_sym_thread_local] = ACTIONS(1953), + [anon_sym___thread] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [anon_sym_constexpr] = ACTIONS(1953), + [anon_sym_volatile] = ACTIONS(1953), + [anon_sym_restrict] = ACTIONS(1953), + [anon_sym___restrict__] = ACTIONS(1953), + [anon_sym__Atomic] = ACTIONS(1953), + [anon_sym__Noreturn] = ACTIONS(1953), + [anon_sym_noreturn] = ACTIONS(1953), + [anon_sym__Nonnull] = ACTIONS(1953), + [anon_sym_mutable] = ACTIONS(1953), + [anon_sym_constinit] = ACTIONS(1953), + [anon_sym_consteval] = ACTIONS(1953), + [anon_sym_alignas] = ACTIONS(1953), + [anon_sym__Alignas] = ACTIONS(1953), + [sym_primitive_type] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1953), + [anon_sym_class] = ACTIONS(1953), + [anon_sym_struct] = ACTIONS(1953), + [anon_sym_union] = ACTIONS(1953), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1953), + [anon_sym_decltype] = ACTIONS(1953), + [anon_sym_explicit] = ACTIONS(1953), + [anon_sym_typename] = ACTIONS(1953), + [anon_sym_template] = ACTIONS(1953), + [anon_sym_operator] = ACTIONS(1953), + [anon_sym_friend] = ACTIONS(1953), + [anon_sym_public] = ACTIONS(1953), + [anon_sym_private] = ACTIONS(1953), + [anon_sym_protected] = ACTIONS(1953), + [anon_sym_using] = ACTIONS(1953), + [anon_sym_static_assert] = ACTIONS(1953), + [anon_sym_catch] = ACTIONS(1953), + [sym_macro_statement] = ACTIONS(1953), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1953), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1953), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1953), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1953), + [anon_sym_MOZ_COLD] = ACTIONS(1953), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1953), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1953), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1953), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1953), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1953), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1953), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1953), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1953), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1953), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1953), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1953), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1953), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1953), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_NONNULL] = ACTIONS(1953), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1953), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1953), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1953), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1953), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1953), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1953), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1953), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1953), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1953), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1953), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1953), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1953), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1953), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1953), + [anon_sym_MOZ_RAII] = ACTIONS(1953), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1953), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1953), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1953), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1953), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1953), + }, + [STATE(980)] = { + [sym__declaration_modifiers] = STATE(1627), + [sym_attribute_specifier] = STATE(1627), + [sym_attribute_declaration] = STATE(1627), + [sym_ms_declspec_modifier] = STATE(1627), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6592), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1627), + [sym_type_qualifier] = STATE(1627), + [sym_alignas_qualifier] = STATE(1593), + [sym_decltype] = STATE(8447), + [sym_explicit_function_specifier] = STATE(1627), + [sym_operator_cast] = STATE(7118), + [sym__constructor_specifiers] = STATE(1627), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5912), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_operator_cast_identifier] = STATE(7118), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1618), + [aux_sym_operator_cast_definition_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4348), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(981)] = { + [sym_identifier] = ACTIONS(4364), + [aux_sym_preproc_def_token1] = ACTIONS(4364), + [aux_sym_preproc_if_token1] = ACTIONS(4364), + [aux_sym_preproc_if_token2] = ACTIONS(4364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4364), + [aux_sym_preproc_else_token1] = ACTIONS(4364), + [aux_sym_preproc_elif_token1] = ACTIONS(4364), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4364), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4364), + [sym_preproc_directive] = ACTIONS(4364), + [anon_sym_LPAREN2] = ACTIONS(4366), + [anon_sym_TILDE] = ACTIONS(4366), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4364), + [anon_sym_SEMI] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(4364), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(4364), + [anon_sym_extern] = ACTIONS(4364), + [anon_sym___attribute__] = ACTIONS(4364), + [anon_sym___attribute] = ACTIONS(4364), + [anon_sym_COLON_COLON] = ACTIONS(4366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4366), + [anon_sym___declspec] = ACTIONS(4364), + [anon_sym___based] = ACTIONS(4364), + [anon_sym_signed] = ACTIONS(4364), + [anon_sym_unsigned] = ACTIONS(4364), + [anon_sym_long] = ACTIONS(4364), + [anon_sym_short] = ACTIONS(4364), + [anon_sym_LBRACK] = ACTIONS(4364), + [anon_sym_static] = ACTIONS(4364), + [anon_sym_register] = ACTIONS(4364), + [anon_sym_inline] = ACTIONS(4364), + [anon_sym___inline] = ACTIONS(4364), + [anon_sym___inline__] = ACTIONS(4364), + [anon_sym___forceinline] = ACTIONS(4364), + [anon_sym_thread_local] = ACTIONS(4364), + [anon_sym___thread] = ACTIONS(4364), + [anon_sym_const] = ACTIONS(4364), + [anon_sym_constexpr] = ACTIONS(4364), + [anon_sym_volatile] = ACTIONS(4364), + [anon_sym_restrict] = ACTIONS(4364), + [anon_sym___restrict__] = ACTIONS(4364), + [anon_sym__Atomic] = ACTIONS(4364), + [anon_sym__Noreturn] = ACTIONS(4364), + [anon_sym_noreturn] = ACTIONS(4364), + [anon_sym__Nonnull] = ACTIONS(4364), + [anon_sym_mutable] = ACTIONS(4364), + [anon_sym_constinit] = ACTIONS(4364), + [anon_sym_consteval] = ACTIONS(4364), + [anon_sym_alignas] = ACTIONS(4364), + [anon_sym__Alignas] = ACTIONS(4364), + [sym_primitive_type] = ACTIONS(4364), + [anon_sym_enum] = ACTIONS(4364), + [anon_sym_class] = ACTIONS(4364), + [anon_sym_struct] = ACTIONS(4364), + [anon_sym_union] = ACTIONS(4364), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4364), + [anon_sym_decltype] = ACTIONS(4364), + [anon_sym_explicit] = ACTIONS(4364), + [anon_sym_typename] = ACTIONS(4364), + [anon_sym_template] = ACTIONS(4364), + [anon_sym_operator] = ACTIONS(4364), + [anon_sym_friend] = ACTIONS(4364), + [anon_sym_public] = ACTIONS(4364), + [anon_sym_private] = ACTIONS(4364), + [anon_sym_protected] = ACTIONS(4364), + [anon_sym_using] = ACTIONS(4364), + [anon_sym_static_assert] = ACTIONS(4364), + [sym_macro_statement] = ACTIONS(4364), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4364), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4364), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4364), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4364), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4364), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4364), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4364), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4364), + [anon_sym_MOZ_COLD] = ACTIONS(4364), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4364), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4364), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4364), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4364), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4364), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4364), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4364), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4364), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4364), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4364), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4364), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4364), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4364), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4364), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4364), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4364), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4364), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4364), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4364), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4364), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_NONNULL] = ACTIONS(4364), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4364), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4364), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4364), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4364), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4364), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_NORETURN] = ACTIONS(4364), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4364), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4364), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4364), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4364), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4364), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4364), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4364), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4364), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4364), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4364), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4364), + [anon_sym_MOZ_RAII] = ACTIONS(4364), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4364), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4364), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4364), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4364), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4364), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4364), + }, + [STATE(982)] = { + [sym_identifier] = ACTIONS(4368), + [aux_sym_preproc_def_token1] = ACTIONS(4368), + [aux_sym_preproc_if_token1] = ACTIONS(4368), + [aux_sym_preproc_if_token2] = ACTIONS(4368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4368), + [aux_sym_preproc_else_token1] = ACTIONS(4368), + [aux_sym_preproc_elif_token1] = ACTIONS(4368), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4368), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4368), + [sym_preproc_directive] = ACTIONS(4368), + [anon_sym_LPAREN2] = ACTIONS(4370), + [anon_sym_TILDE] = ACTIONS(4370), + [anon_sym_STAR] = ACTIONS(4370), + [anon_sym_AMP_AMP] = ACTIONS(4370), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym_SEMI] = ACTIONS(4370), + [anon_sym___extension__] = ACTIONS(4368), + [anon_sym_typedef] = ACTIONS(4368), + [anon_sym_virtual] = ACTIONS(4368), + [anon_sym_extern] = ACTIONS(4368), + [anon_sym___attribute__] = ACTIONS(4368), + [anon_sym___attribute] = ACTIONS(4368), + [anon_sym_COLON_COLON] = ACTIONS(4370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4370), + [anon_sym___declspec] = ACTIONS(4368), + [anon_sym___based] = ACTIONS(4368), + [anon_sym_signed] = ACTIONS(4368), + [anon_sym_unsigned] = ACTIONS(4368), + [anon_sym_long] = ACTIONS(4368), + [anon_sym_short] = ACTIONS(4368), + [anon_sym_LBRACK] = ACTIONS(4368), + [anon_sym_static] = ACTIONS(4368), + [anon_sym_register] = ACTIONS(4368), + [anon_sym_inline] = ACTIONS(4368), + [anon_sym___inline] = ACTIONS(4368), + [anon_sym___inline__] = ACTIONS(4368), + [anon_sym___forceinline] = ACTIONS(4368), + [anon_sym_thread_local] = ACTIONS(4368), + [anon_sym___thread] = ACTIONS(4368), + [anon_sym_const] = ACTIONS(4368), + [anon_sym_constexpr] = ACTIONS(4368), + [anon_sym_volatile] = ACTIONS(4368), + [anon_sym_restrict] = ACTIONS(4368), + [anon_sym___restrict__] = ACTIONS(4368), + [anon_sym__Atomic] = ACTIONS(4368), + [anon_sym__Noreturn] = ACTIONS(4368), + [anon_sym_noreturn] = ACTIONS(4368), + [anon_sym__Nonnull] = ACTIONS(4368), + [anon_sym_mutable] = ACTIONS(4368), + [anon_sym_constinit] = ACTIONS(4368), + [anon_sym_consteval] = ACTIONS(4368), + [anon_sym_alignas] = ACTIONS(4368), + [anon_sym__Alignas] = ACTIONS(4368), + [sym_primitive_type] = ACTIONS(4368), + [anon_sym_enum] = ACTIONS(4368), + [anon_sym_class] = ACTIONS(4368), + [anon_sym_struct] = ACTIONS(4368), + [anon_sym_union] = ACTIONS(4368), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4368), + [anon_sym_decltype] = ACTIONS(4368), + [anon_sym_explicit] = ACTIONS(4368), + [anon_sym_typename] = ACTIONS(4368), + [anon_sym_template] = ACTIONS(4368), + [anon_sym_operator] = ACTIONS(4368), + [anon_sym_friend] = ACTIONS(4368), + [anon_sym_public] = ACTIONS(4368), + [anon_sym_private] = ACTIONS(4368), + [anon_sym_protected] = ACTIONS(4368), + [anon_sym_using] = ACTIONS(4368), + [anon_sym_static_assert] = ACTIONS(4368), + [sym_macro_statement] = ACTIONS(4368), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4368), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4368), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4368), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4368), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4368), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4368), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4368), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4368), + [anon_sym_MOZ_COLD] = ACTIONS(4368), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4368), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4368), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4368), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4368), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4368), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4368), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4368), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4368), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4368), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4368), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4368), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4368), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4368), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4368), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4368), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4368), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4368), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4368), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4368), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4368), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_NONNULL] = ACTIONS(4368), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4368), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4368), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4368), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4368), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4368), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_NORETURN] = ACTIONS(4368), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4368), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4368), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4368), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4368), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4368), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4368), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4368), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4368), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4368), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4368), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4368), + [anon_sym_MOZ_RAII] = ACTIONS(4368), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4368), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4368), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4368), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4368), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4368), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4368), + }, + [STATE(983)] = { + [sym_identifier] = ACTIONS(4372), + [aux_sym_preproc_def_token1] = ACTIONS(4372), + [aux_sym_preproc_if_token1] = ACTIONS(4372), + [aux_sym_preproc_if_token2] = ACTIONS(4372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4372), + [aux_sym_preproc_else_token1] = ACTIONS(4372), + [aux_sym_preproc_elif_token1] = ACTIONS(4372), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4372), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4372), + [sym_preproc_directive] = ACTIONS(4372), + [anon_sym_LPAREN2] = ACTIONS(4374), + [anon_sym_TILDE] = ACTIONS(4374), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP_AMP] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4372), + [anon_sym_SEMI] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(4372), + [anon_sym_typedef] = ACTIONS(4372), + [anon_sym_virtual] = ACTIONS(4372), + [anon_sym_extern] = ACTIONS(4372), + [anon_sym___attribute__] = ACTIONS(4372), + [anon_sym___attribute] = ACTIONS(4372), + [anon_sym_COLON_COLON] = ACTIONS(4374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4374), + [anon_sym___declspec] = ACTIONS(4372), + [anon_sym___based] = ACTIONS(4372), + [anon_sym_signed] = ACTIONS(4372), + [anon_sym_unsigned] = ACTIONS(4372), + [anon_sym_long] = ACTIONS(4372), + [anon_sym_short] = ACTIONS(4372), + [anon_sym_LBRACK] = ACTIONS(4372), + [anon_sym_static] = ACTIONS(4372), + [anon_sym_register] = ACTIONS(4372), + [anon_sym_inline] = ACTIONS(4372), + [anon_sym___inline] = ACTIONS(4372), + [anon_sym___inline__] = ACTIONS(4372), + [anon_sym___forceinline] = ACTIONS(4372), + [anon_sym_thread_local] = ACTIONS(4372), + [anon_sym___thread] = ACTIONS(4372), + [anon_sym_const] = ACTIONS(4372), + [anon_sym_constexpr] = ACTIONS(4372), + [anon_sym_volatile] = ACTIONS(4372), + [anon_sym_restrict] = ACTIONS(4372), + [anon_sym___restrict__] = ACTIONS(4372), + [anon_sym__Atomic] = ACTIONS(4372), + [anon_sym__Noreturn] = ACTIONS(4372), + [anon_sym_noreturn] = ACTIONS(4372), + [anon_sym__Nonnull] = ACTIONS(4372), + [anon_sym_mutable] = ACTIONS(4372), + [anon_sym_constinit] = ACTIONS(4372), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(4372), + [anon_sym__Alignas] = ACTIONS(4372), + [sym_primitive_type] = ACTIONS(4372), + [anon_sym_enum] = ACTIONS(4372), + [anon_sym_class] = ACTIONS(4372), + [anon_sym_struct] = ACTIONS(4372), + [anon_sym_union] = ACTIONS(4372), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4372), + [anon_sym_decltype] = ACTIONS(4372), + [anon_sym_explicit] = ACTIONS(4372), + [anon_sym_typename] = ACTIONS(4372), + [anon_sym_template] = ACTIONS(4372), + [anon_sym_operator] = ACTIONS(4372), + [anon_sym_friend] = ACTIONS(4372), + [anon_sym_public] = ACTIONS(4372), + [anon_sym_private] = ACTIONS(4372), + [anon_sym_protected] = ACTIONS(4372), + [anon_sym_using] = ACTIONS(4372), + [anon_sym_static_assert] = ACTIONS(4372), + [sym_macro_statement] = ACTIONS(4372), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4372), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4372), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4372), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4372), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4372), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4372), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4372), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4372), + [anon_sym_MOZ_COLD] = ACTIONS(4372), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4372), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4372), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4372), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4372), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4372), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4372), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4372), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4372), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4372), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4372), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4372), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4372), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4372), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4372), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4372), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4372), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4372), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4372), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4372), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4372), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_NONNULL] = ACTIONS(4372), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4372), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4372), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4372), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4372), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4372), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_NORETURN] = ACTIONS(4372), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4372), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4372), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4372), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4372), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4372), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4372), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4372), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4372), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4372), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4372), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4372), + [anon_sym_MOZ_RAII] = ACTIONS(4372), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4372), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4372), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4372), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4372), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4372), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4372), + }, + [STATE(984)] = { + [sym_identifier] = ACTIONS(2400), + [aux_sym_preproc_def_token1] = ACTIONS(2400), + [aux_sym_preproc_if_token1] = ACTIONS(2400), + [aux_sym_preproc_if_token2] = ACTIONS(2400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2400), + [aux_sym_preproc_else_token1] = ACTIONS(2400), + [aux_sym_preproc_elif_token1] = ACTIONS(2400), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2400), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2400), + [sym_preproc_directive] = ACTIONS(2400), + [anon_sym_LPAREN2] = ACTIONS(2402), + [anon_sym_TILDE] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_AMP] = ACTIONS(2400), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym___extension__] = ACTIONS(2400), + [anon_sym_typedef] = ACTIONS(2400), + [anon_sym_virtual] = ACTIONS(2400), + [anon_sym_extern] = ACTIONS(2400), + [anon_sym___attribute__] = ACTIONS(2400), + [anon_sym___attribute] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2402), + [anon_sym___declspec] = ACTIONS(2400), + [anon_sym___based] = ACTIONS(2400), + [anon_sym_signed] = ACTIONS(2400), + [anon_sym_unsigned] = ACTIONS(2400), + [anon_sym_long] = ACTIONS(2400), + [anon_sym_short] = ACTIONS(2400), + [anon_sym_LBRACK] = ACTIONS(2400), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_register] = ACTIONS(2400), + [anon_sym_inline] = ACTIONS(2400), + [anon_sym___inline] = ACTIONS(2400), + [anon_sym___inline__] = ACTIONS(2400), + [anon_sym___forceinline] = ACTIONS(2400), + [anon_sym_thread_local] = ACTIONS(2400), + [anon_sym___thread] = ACTIONS(2400), + [anon_sym_const] = ACTIONS(2400), + [anon_sym_constexpr] = ACTIONS(2400), + [anon_sym_volatile] = ACTIONS(2400), + [anon_sym_restrict] = ACTIONS(2400), + [anon_sym___restrict__] = ACTIONS(2400), + [anon_sym__Atomic] = ACTIONS(2400), + [anon_sym__Noreturn] = ACTIONS(2400), + [anon_sym_noreturn] = ACTIONS(2400), + [anon_sym__Nonnull] = ACTIONS(2400), + [anon_sym_mutable] = ACTIONS(2400), + [anon_sym_constinit] = ACTIONS(2400), + [anon_sym_consteval] = ACTIONS(2400), + [anon_sym_alignas] = ACTIONS(2400), + [anon_sym__Alignas] = ACTIONS(2400), + [sym_primitive_type] = ACTIONS(2400), + [anon_sym_enum] = ACTIONS(2400), + [anon_sym_class] = ACTIONS(2400), + [anon_sym_struct] = ACTIONS(2400), + [anon_sym_union] = ACTIONS(2400), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2400), + [anon_sym_decltype] = ACTIONS(2400), + [anon_sym_explicit] = ACTIONS(2400), + [anon_sym_typename] = ACTIONS(2400), + [anon_sym_template] = ACTIONS(2400), + [anon_sym_operator] = ACTIONS(2400), + [anon_sym_friend] = ACTIONS(2400), + [anon_sym_public] = ACTIONS(2400), + [anon_sym_private] = ACTIONS(2400), + [anon_sym_protected] = ACTIONS(2400), + [anon_sym_using] = ACTIONS(2400), + [anon_sym_static_assert] = ACTIONS(2400), + [sym_macro_statement] = ACTIONS(2400), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2400), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2400), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2400), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2400), + [anon_sym_MOZ_COLD] = ACTIONS(2400), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2400), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2400), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2400), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2400), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2400), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2400), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2400), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2400), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2400), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2400), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2400), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2400), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2400), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_NONNULL] = ACTIONS(2400), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2400), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2400), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2400), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2400), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2400), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2400), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2400), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2400), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2400), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2400), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2400), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2400), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2400), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2400), + [anon_sym_MOZ_RAII] = ACTIONS(2400), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2400), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2400), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2400), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2400), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2400), + }, + [STATE(985)] = { + [sym_identifier] = ACTIONS(4376), + [aux_sym_preproc_def_token1] = ACTIONS(4376), + [aux_sym_preproc_if_token1] = ACTIONS(4376), + [aux_sym_preproc_if_token2] = ACTIONS(4376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4376), + [aux_sym_preproc_else_token1] = ACTIONS(4376), + [aux_sym_preproc_elif_token1] = ACTIONS(4376), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4376), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4376), + [sym_preproc_directive] = ACTIONS(4376), + [anon_sym_LPAREN2] = ACTIONS(4378), + [anon_sym_TILDE] = ACTIONS(4378), + [anon_sym_STAR] = ACTIONS(4378), + [anon_sym_AMP_AMP] = ACTIONS(4378), + [anon_sym_AMP] = ACTIONS(4376), + [anon_sym_SEMI] = ACTIONS(4378), + [anon_sym___extension__] = ACTIONS(4376), + [anon_sym_typedef] = ACTIONS(4376), + [anon_sym_virtual] = ACTIONS(4376), + [anon_sym_extern] = ACTIONS(4376), + [anon_sym___attribute__] = ACTIONS(4376), + [anon_sym___attribute] = ACTIONS(4376), + [anon_sym_COLON_COLON] = ACTIONS(4378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4378), + [anon_sym___declspec] = ACTIONS(4376), + [anon_sym___based] = ACTIONS(4376), + [anon_sym_signed] = ACTIONS(4376), + [anon_sym_unsigned] = ACTIONS(4376), + [anon_sym_long] = ACTIONS(4376), + [anon_sym_short] = ACTIONS(4376), + [anon_sym_LBRACK] = ACTIONS(4376), + [anon_sym_static] = ACTIONS(4376), + [anon_sym_register] = ACTIONS(4376), + [anon_sym_inline] = ACTIONS(4376), + [anon_sym___inline] = ACTIONS(4376), + [anon_sym___inline__] = ACTIONS(4376), + [anon_sym___forceinline] = ACTIONS(4376), + [anon_sym_thread_local] = ACTIONS(4376), + [anon_sym___thread] = ACTIONS(4376), + [anon_sym_const] = ACTIONS(4376), + [anon_sym_constexpr] = ACTIONS(4376), + [anon_sym_volatile] = ACTIONS(4376), + [anon_sym_restrict] = ACTIONS(4376), + [anon_sym___restrict__] = ACTIONS(4376), + [anon_sym__Atomic] = ACTIONS(4376), + [anon_sym__Noreturn] = ACTIONS(4376), + [anon_sym_noreturn] = ACTIONS(4376), + [anon_sym__Nonnull] = ACTIONS(4376), + [anon_sym_mutable] = ACTIONS(4376), + [anon_sym_constinit] = ACTIONS(4376), + [anon_sym_consteval] = ACTIONS(4376), + [anon_sym_alignas] = ACTIONS(4376), + [anon_sym__Alignas] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(4376), + [anon_sym_enum] = ACTIONS(4376), + [anon_sym_class] = ACTIONS(4376), + [anon_sym_struct] = ACTIONS(4376), + [anon_sym_union] = ACTIONS(4376), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4376), + [anon_sym_decltype] = ACTIONS(4376), + [anon_sym_explicit] = ACTIONS(4376), + [anon_sym_typename] = ACTIONS(4376), + [anon_sym_template] = ACTIONS(4376), + [anon_sym_operator] = ACTIONS(4376), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(4376), + [anon_sym_private] = ACTIONS(4376), + [anon_sym_protected] = ACTIONS(4376), + [anon_sym_using] = ACTIONS(4376), + [anon_sym_static_assert] = ACTIONS(4376), + [sym_macro_statement] = ACTIONS(4376), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4376), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4376), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4376), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4376), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4376), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4376), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4376), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4376), + [anon_sym_MOZ_COLD] = ACTIONS(4376), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4376), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4376), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4376), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4376), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4376), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4376), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4376), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4376), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4376), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4376), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4376), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4376), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4376), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4376), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4376), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4376), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4376), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4376), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4376), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4376), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_NONNULL] = ACTIONS(4376), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4376), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4376), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4376), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4376), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4376), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_NORETURN] = ACTIONS(4376), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4376), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4376), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4376), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4376), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4376), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4376), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4376), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4376), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4376), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4376), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4376), + [anon_sym_MOZ_RAII] = ACTIONS(4376), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4376), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4376), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4376), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4376), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4376), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4376), + }, + [STATE(986)] = { + [sym_identifier] = ACTIONS(4380), + [aux_sym_preproc_def_token1] = ACTIONS(4380), + [aux_sym_preproc_if_token1] = ACTIONS(4380), + [aux_sym_preproc_if_token2] = ACTIONS(4380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4380), + [aux_sym_preproc_else_token1] = ACTIONS(4380), + [aux_sym_preproc_elif_token1] = ACTIONS(4380), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4380), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4380), + [sym_preproc_directive] = ACTIONS(4380), + [anon_sym_LPAREN2] = ACTIONS(4382), + [anon_sym_TILDE] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [anon_sym_AMP_AMP] = ACTIONS(4382), + [anon_sym_AMP] = ACTIONS(4380), + [anon_sym_SEMI] = ACTIONS(4382), + [anon_sym___extension__] = ACTIONS(4380), + [anon_sym_typedef] = ACTIONS(4380), + [anon_sym_virtual] = ACTIONS(4380), + [anon_sym_extern] = ACTIONS(4380), + [anon_sym___attribute__] = ACTIONS(4380), + [anon_sym___attribute] = ACTIONS(4380), + [anon_sym_COLON_COLON] = ACTIONS(4382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4382), + [anon_sym___declspec] = ACTIONS(4380), + [anon_sym___based] = ACTIONS(4380), + [anon_sym_signed] = ACTIONS(4380), + [anon_sym_unsigned] = ACTIONS(4380), + [anon_sym_long] = ACTIONS(4380), + [anon_sym_short] = ACTIONS(4380), + [anon_sym_LBRACK] = ACTIONS(4380), + [anon_sym_static] = ACTIONS(4380), + [anon_sym_register] = ACTIONS(4380), + [anon_sym_inline] = ACTIONS(4380), + [anon_sym___inline] = ACTIONS(4380), + [anon_sym___inline__] = ACTIONS(4380), + [anon_sym___forceinline] = ACTIONS(4380), + [anon_sym_thread_local] = ACTIONS(4380), + [anon_sym___thread] = ACTIONS(4380), + [anon_sym_const] = ACTIONS(4380), + [anon_sym_constexpr] = ACTIONS(4380), + [anon_sym_volatile] = ACTIONS(4380), + [anon_sym_restrict] = ACTIONS(4380), + [anon_sym___restrict__] = ACTIONS(4380), + [anon_sym__Atomic] = ACTIONS(4380), + [anon_sym__Noreturn] = ACTIONS(4380), + [anon_sym_noreturn] = ACTIONS(4380), + [anon_sym__Nonnull] = ACTIONS(4380), + [anon_sym_mutable] = ACTIONS(4380), + [anon_sym_constinit] = ACTIONS(4380), + [anon_sym_consteval] = ACTIONS(4380), + [anon_sym_alignas] = ACTIONS(4380), + [anon_sym__Alignas] = ACTIONS(4380), + [sym_primitive_type] = ACTIONS(4380), + [anon_sym_enum] = ACTIONS(4380), + [anon_sym_class] = ACTIONS(4380), + [anon_sym_struct] = ACTIONS(4380), + [anon_sym_union] = ACTIONS(4380), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4380), + [anon_sym_decltype] = ACTIONS(4380), + [anon_sym_explicit] = ACTIONS(4380), + [anon_sym_typename] = ACTIONS(4380), + [anon_sym_template] = ACTIONS(4380), + [anon_sym_operator] = ACTIONS(4380), + [anon_sym_friend] = ACTIONS(4380), + [anon_sym_public] = ACTIONS(4380), + [anon_sym_private] = ACTIONS(4380), + [anon_sym_protected] = ACTIONS(4380), + [anon_sym_using] = ACTIONS(4380), + [anon_sym_static_assert] = ACTIONS(4380), + [sym_macro_statement] = ACTIONS(4380), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4380), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4380), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4380), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4380), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4380), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4380), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4380), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4380), + [anon_sym_MOZ_COLD] = ACTIONS(4380), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4380), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4380), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4380), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4380), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4380), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4380), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4380), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4380), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4380), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4380), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4380), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4380), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4380), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4380), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4380), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4380), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4380), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4380), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4380), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4380), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_NONNULL] = ACTIONS(4380), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4380), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4380), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4380), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4380), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4380), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_NORETURN] = ACTIONS(4380), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4380), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4380), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4380), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4380), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4380), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4380), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4380), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4380), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4380), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4380), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4380), + [anon_sym_MOZ_RAII] = ACTIONS(4380), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4380), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4380), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4380), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4380), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4380), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4380), + }, + [STATE(987)] = { + [sym_identifier] = ACTIONS(4384), + [aux_sym_preproc_def_token1] = ACTIONS(4384), + [aux_sym_preproc_if_token1] = ACTIONS(4384), + [aux_sym_preproc_if_token2] = ACTIONS(4384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4384), + [aux_sym_preproc_else_token1] = ACTIONS(4384), + [aux_sym_preproc_elif_token1] = ACTIONS(4384), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4384), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4384), + [sym_preproc_directive] = ACTIONS(4384), + [anon_sym_LPAREN2] = ACTIONS(4386), + [anon_sym_TILDE] = ACTIONS(4386), + [anon_sym_STAR] = ACTIONS(4386), + [anon_sym_AMP_AMP] = ACTIONS(4386), + [anon_sym_AMP] = ACTIONS(4384), + [anon_sym_SEMI] = ACTIONS(4386), + [anon_sym___extension__] = ACTIONS(4384), + [anon_sym_typedef] = ACTIONS(4384), + [anon_sym_virtual] = ACTIONS(4384), + [anon_sym_extern] = ACTIONS(4384), + [anon_sym___attribute__] = ACTIONS(4384), + [anon_sym___attribute] = ACTIONS(4384), + [anon_sym_COLON_COLON] = ACTIONS(4386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4386), + [anon_sym___declspec] = ACTIONS(4384), + [anon_sym___based] = ACTIONS(4384), + [anon_sym_signed] = ACTIONS(4384), + [anon_sym_unsigned] = ACTIONS(4384), + [anon_sym_long] = ACTIONS(4384), + [anon_sym_short] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_static] = ACTIONS(4384), + [anon_sym_register] = ACTIONS(4384), + [anon_sym_inline] = ACTIONS(4384), + [anon_sym___inline] = ACTIONS(4384), + [anon_sym___inline__] = ACTIONS(4384), + [anon_sym___forceinline] = ACTIONS(4384), + [anon_sym_thread_local] = ACTIONS(4384), + [anon_sym___thread] = ACTIONS(4384), + [anon_sym_const] = ACTIONS(4384), + [anon_sym_constexpr] = ACTIONS(4384), + [anon_sym_volatile] = ACTIONS(4384), + [anon_sym_restrict] = ACTIONS(4384), + [anon_sym___restrict__] = ACTIONS(4384), + [anon_sym__Atomic] = ACTIONS(4384), + [anon_sym__Noreturn] = ACTIONS(4384), + [anon_sym_noreturn] = ACTIONS(4384), + [anon_sym__Nonnull] = ACTIONS(4384), + [anon_sym_mutable] = ACTIONS(4384), + [anon_sym_constinit] = ACTIONS(4384), + [anon_sym_consteval] = ACTIONS(4384), + [anon_sym_alignas] = ACTIONS(4384), + [anon_sym__Alignas] = ACTIONS(4384), + [sym_primitive_type] = ACTIONS(4384), + [anon_sym_enum] = ACTIONS(4384), + [anon_sym_class] = ACTIONS(4384), + [anon_sym_struct] = ACTIONS(4384), + [anon_sym_union] = ACTIONS(4384), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4384), + [anon_sym_decltype] = ACTIONS(4384), + [anon_sym_explicit] = ACTIONS(4384), + [anon_sym_typename] = ACTIONS(4384), + [anon_sym_template] = ACTIONS(4384), + [anon_sym_operator] = ACTIONS(4384), + [anon_sym_friend] = ACTIONS(4384), + [anon_sym_public] = ACTIONS(4384), + [anon_sym_private] = ACTIONS(4384), + [anon_sym_protected] = ACTIONS(4384), + [anon_sym_using] = ACTIONS(4384), + [anon_sym_static_assert] = ACTIONS(4384), + [sym_macro_statement] = ACTIONS(4384), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4384), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4384), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4384), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4384), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4384), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4384), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4384), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4384), + [anon_sym_MOZ_COLD] = ACTIONS(4384), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4384), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4384), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4384), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4384), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4384), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4384), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4384), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4384), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4384), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4384), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4384), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4384), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4384), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4384), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4384), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4384), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4384), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4384), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4384), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4384), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_NONNULL] = ACTIONS(4384), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4384), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4384), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4384), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4384), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4384), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_NORETURN] = ACTIONS(4384), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4384), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4384), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4384), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4384), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4384), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4384), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4384), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4384), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4384), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4384), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4384), + [anon_sym_MOZ_RAII] = ACTIONS(4384), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4384), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4384), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4384), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4384), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4384), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4384), + }, + [STATE(988)] = { + [sym_identifier] = ACTIONS(4388), + [aux_sym_preproc_def_token1] = ACTIONS(4388), + [aux_sym_preproc_if_token1] = ACTIONS(4388), + [aux_sym_preproc_if_token2] = ACTIONS(4388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4388), + [aux_sym_preproc_else_token1] = ACTIONS(4388), + [aux_sym_preproc_elif_token1] = ACTIONS(4388), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4388), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4388), + [sym_preproc_directive] = ACTIONS(4388), + [anon_sym_LPAREN2] = ACTIONS(4390), + [anon_sym_TILDE] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_AMP] = ACTIONS(4388), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym___extension__] = ACTIONS(4388), + [anon_sym_typedef] = ACTIONS(4388), + [anon_sym_virtual] = ACTIONS(4388), + [anon_sym_extern] = ACTIONS(4388), + [anon_sym___attribute__] = ACTIONS(4388), + [anon_sym___attribute] = ACTIONS(4388), + [anon_sym_COLON_COLON] = ACTIONS(4390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4390), + [anon_sym___declspec] = ACTIONS(4388), + [anon_sym___based] = ACTIONS(4388), + [anon_sym_signed] = ACTIONS(4388), + [anon_sym_unsigned] = ACTIONS(4388), + [anon_sym_long] = ACTIONS(4388), + [anon_sym_short] = ACTIONS(4388), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_static] = ACTIONS(4388), + [anon_sym_register] = ACTIONS(4388), + [anon_sym_inline] = ACTIONS(4388), + [anon_sym___inline] = ACTIONS(4388), + [anon_sym___inline__] = ACTIONS(4388), + [anon_sym___forceinline] = ACTIONS(4388), + [anon_sym_thread_local] = ACTIONS(4388), + [anon_sym___thread] = ACTIONS(4388), + [anon_sym_const] = ACTIONS(4388), + [anon_sym_constexpr] = ACTIONS(4388), + [anon_sym_volatile] = ACTIONS(4388), + [anon_sym_restrict] = ACTIONS(4388), + [anon_sym___restrict__] = ACTIONS(4388), + [anon_sym__Atomic] = ACTIONS(4388), + [anon_sym__Noreturn] = ACTIONS(4388), + [anon_sym_noreturn] = ACTIONS(4388), + [anon_sym__Nonnull] = ACTIONS(4388), + [anon_sym_mutable] = ACTIONS(4388), + [anon_sym_constinit] = ACTIONS(4388), + [anon_sym_consteval] = ACTIONS(4388), + [anon_sym_alignas] = ACTIONS(4388), + [anon_sym__Alignas] = ACTIONS(4388), + [sym_primitive_type] = ACTIONS(4388), + [anon_sym_enum] = ACTIONS(4388), + [anon_sym_class] = ACTIONS(4388), + [anon_sym_struct] = ACTIONS(4388), + [anon_sym_union] = ACTIONS(4388), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4388), + [anon_sym_decltype] = ACTIONS(4388), + [anon_sym_explicit] = ACTIONS(4388), + [anon_sym_typename] = ACTIONS(4388), + [anon_sym_template] = ACTIONS(4388), + [anon_sym_operator] = ACTIONS(4388), + [anon_sym_friend] = ACTIONS(4388), + [anon_sym_public] = ACTIONS(4388), + [anon_sym_private] = ACTIONS(4388), + [anon_sym_protected] = ACTIONS(4388), + [anon_sym_using] = ACTIONS(4388), + [anon_sym_static_assert] = ACTIONS(4388), + [sym_macro_statement] = ACTIONS(4388), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4388), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4388), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4388), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4388), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4388), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4388), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4388), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4388), + [anon_sym_MOZ_COLD] = ACTIONS(4388), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4388), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4388), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4388), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4388), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4388), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4388), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4388), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4388), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4388), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4388), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4388), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4388), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4388), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4388), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4388), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4388), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4388), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4388), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4388), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4388), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_NONNULL] = ACTIONS(4388), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4388), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4388), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4388), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4388), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4388), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_NORETURN] = ACTIONS(4388), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4388), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4388), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4388), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4388), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4388), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4388), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4388), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4388), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4388), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4388), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4388), + [anon_sym_MOZ_RAII] = ACTIONS(4388), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4388), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4388), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4388), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4388), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4388), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4388), + }, + [STATE(989)] = { + [sym_identifier] = ACTIONS(4392), + [aux_sym_preproc_def_token1] = ACTIONS(4392), + [aux_sym_preproc_if_token1] = ACTIONS(4392), + [aux_sym_preproc_if_token2] = ACTIONS(4392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4392), + [aux_sym_preproc_else_token1] = ACTIONS(4392), + [aux_sym_preproc_elif_token1] = ACTIONS(4392), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4392), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4392), + [sym_preproc_directive] = ACTIONS(4392), + [anon_sym_LPAREN2] = ACTIONS(4394), + [anon_sym_TILDE] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4394), + [anon_sym_AMP_AMP] = ACTIONS(4394), + [anon_sym_AMP] = ACTIONS(4392), + [anon_sym_SEMI] = ACTIONS(4394), + [anon_sym___extension__] = ACTIONS(4392), + [anon_sym_typedef] = ACTIONS(4392), + [anon_sym_virtual] = ACTIONS(4392), + [anon_sym_extern] = ACTIONS(4392), + [anon_sym___attribute__] = ACTIONS(4392), + [anon_sym___attribute] = ACTIONS(4392), + [anon_sym_COLON_COLON] = ACTIONS(4394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4394), + [anon_sym___declspec] = ACTIONS(4392), + [anon_sym___based] = ACTIONS(4392), + [anon_sym_signed] = ACTIONS(4392), + [anon_sym_unsigned] = ACTIONS(4392), + [anon_sym_long] = ACTIONS(4392), + [anon_sym_short] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_static] = ACTIONS(4392), + [anon_sym_register] = ACTIONS(4392), + [anon_sym_inline] = ACTIONS(4392), + [anon_sym___inline] = ACTIONS(4392), + [anon_sym___inline__] = ACTIONS(4392), + [anon_sym___forceinline] = ACTIONS(4392), + [anon_sym_thread_local] = ACTIONS(4392), + [anon_sym___thread] = ACTIONS(4392), + [anon_sym_const] = ACTIONS(4392), + [anon_sym_constexpr] = ACTIONS(4392), + [anon_sym_volatile] = ACTIONS(4392), + [anon_sym_restrict] = ACTIONS(4392), + [anon_sym___restrict__] = ACTIONS(4392), + [anon_sym__Atomic] = ACTIONS(4392), + [anon_sym__Noreturn] = ACTIONS(4392), + [anon_sym_noreturn] = ACTIONS(4392), + [anon_sym__Nonnull] = ACTIONS(4392), + [anon_sym_mutable] = ACTIONS(4392), + [anon_sym_constinit] = ACTIONS(4392), + [anon_sym_consteval] = ACTIONS(4392), + [anon_sym_alignas] = ACTIONS(4392), + [anon_sym__Alignas] = ACTIONS(4392), + [sym_primitive_type] = ACTIONS(4392), + [anon_sym_enum] = ACTIONS(4392), + [anon_sym_class] = ACTIONS(4392), + [anon_sym_struct] = ACTIONS(4392), + [anon_sym_union] = ACTIONS(4392), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4392), + [anon_sym_decltype] = ACTIONS(4392), + [anon_sym_explicit] = ACTIONS(4392), + [anon_sym_typename] = ACTIONS(4392), + [anon_sym_template] = ACTIONS(4392), + [anon_sym_operator] = ACTIONS(4392), + [anon_sym_friend] = ACTIONS(4392), + [anon_sym_public] = ACTIONS(4392), + [anon_sym_private] = ACTIONS(4392), + [anon_sym_protected] = ACTIONS(4392), + [anon_sym_using] = ACTIONS(4392), + [anon_sym_static_assert] = ACTIONS(4392), + [sym_macro_statement] = ACTIONS(4392), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4392), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4392), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4392), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4392), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4392), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4392), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4392), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4392), + [anon_sym_MOZ_COLD] = ACTIONS(4392), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4392), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4392), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4392), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4392), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4392), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4392), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4392), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4392), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4392), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4392), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4392), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4392), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4392), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4392), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4392), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4392), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4392), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4392), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4392), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4392), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_NONNULL] = ACTIONS(4392), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4392), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4392), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4392), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4392), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4392), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_NORETURN] = ACTIONS(4392), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4392), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4392), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4392), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4392), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4392), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4392), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4392), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4392), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4392), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4392), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4392), + [anon_sym_MOZ_RAII] = ACTIONS(4392), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4392), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4392), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4392), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4392), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4392), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4392), + }, + [STATE(990)] = { + [sym_identifier] = ACTIONS(4388), + [aux_sym_preproc_def_token1] = ACTIONS(4388), + [aux_sym_preproc_if_token1] = ACTIONS(4388), + [aux_sym_preproc_if_token2] = ACTIONS(4388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4388), + [aux_sym_preproc_else_token1] = ACTIONS(4388), + [aux_sym_preproc_elif_token1] = ACTIONS(4388), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4388), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4388), + [sym_preproc_directive] = ACTIONS(4388), + [anon_sym_LPAREN2] = ACTIONS(4390), + [anon_sym_TILDE] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_AMP] = ACTIONS(4388), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym___extension__] = ACTIONS(4388), + [anon_sym_typedef] = ACTIONS(4388), + [anon_sym_virtual] = ACTIONS(4388), + [anon_sym_extern] = ACTIONS(4388), + [anon_sym___attribute__] = ACTIONS(4388), + [anon_sym___attribute] = ACTIONS(4388), + [anon_sym_COLON_COLON] = ACTIONS(4390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4390), + [anon_sym___declspec] = ACTIONS(4388), + [anon_sym___based] = ACTIONS(4388), + [anon_sym_signed] = ACTIONS(4388), + [anon_sym_unsigned] = ACTIONS(4388), + [anon_sym_long] = ACTIONS(4388), + [anon_sym_short] = ACTIONS(4388), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_static] = ACTIONS(4388), + [anon_sym_register] = ACTIONS(4388), + [anon_sym_inline] = ACTIONS(4388), + [anon_sym___inline] = ACTIONS(4388), + [anon_sym___inline__] = ACTIONS(4388), + [anon_sym___forceinline] = ACTIONS(4388), + [anon_sym_thread_local] = ACTIONS(4388), + [anon_sym___thread] = ACTIONS(4388), + [anon_sym_const] = ACTIONS(4388), + [anon_sym_constexpr] = ACTIONS(4388), + [anon_sym_volatile] = ACTIONS(4388), + [anon_sym_restrict] = ACTIONS(4388), + [anon_sym___restrict__] = ACTIONS(4388), + [anon_sym__Atomic] = ACTIONS(4388), + [anon_sym__Noreturn] = ACTIONS(4388), + [anon_sym_noreturn] = ACTIONS(4388), + [anon_sym__Nonnull] = ACTIONS(4388), + [anon_sym_mutable] = ACTIONS(4388), + [anon_sym_constinit] = ACTIONS(4388), + [anon_sym_consteval] = ACTIONS(4388), + [anon_sym_alignas] = ACTIONS(4388), + [anon_sym__Alignas] = ACTIONS(4388), + [sym_primitive_type] = ACTIONS(4388), + [anon_sym_enum] = ACTIONS(4388), + [anon_sym_class] = ACTIONS(4388), + [anon_sym_struct] = ACTIONS(4388), + [anon_sym_union] = ACTIONS(4388), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4388), + [anon_sym_decltype] = ACTIONS(4388), + [anon_sym_explicit] = ACTIONS(4388), + [anon_sym_typename] = ACTIONS(4388), + [anon_sym_template] = ACTIONS(4388), + [anon_sym_operator] = ACTIONS(4388), + [anon_sym_friend] = ACTIONS(4388), + [anon_sym_public] = ACTIONS(4388), + [anon_sym_private] = ACTIONS(4388), + [anon_sym_protected] = ACTIONS(4388), + [anon_sym_using] = ACTIONS(4388), + [anon_sym_static_assert] = ACTIONS(4388), + [sym_macro_statement] = ACTIONS(4388), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4388), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4388), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4388), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4388), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4388), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4388), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4388), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4388), + [anon_sym_MOZ_COLD] = ACTIONS(4388), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4388), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4388), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4388), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4388), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4388), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4388), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4388), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4388), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4388), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4388), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4388), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4388), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4388), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4388), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4388), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4388), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4388), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4388), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4388), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4388), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_NONNULL] = ACTIONS(4388), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4388), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4388), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4388), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4388), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4388), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_NORETURN] = ACTIONS(4388), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4388), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4388), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4388), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4388), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4388), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4388), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4388), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4388), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4388), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4388), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4388), + [anon_sym_MOZ_RAII] = ACTIONS(4388), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4388), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4388), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4388), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4388), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4388), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4388), + }, + [STATE(991)] = { + [sym_identifier] = ACTIONS(4396), + [aux_sym_preproc_def_token1] = ACTIONS(4396), + [aux_sym_preproc_if_token1] = ACTIONS(4396), + [aux_sym_preproc_if_token2] = ACTIONS(4396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4396), + [aux_sym_preproc_else_token1] = ACTIONS(4396), + [aux_sym_preproc_elif_token1] = ACTIONS(4396), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4396), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4396), + [sym_preproc_directive] = ACTIONS(4396), + [anon_sym_LPAREN2] = ACTIONS(4398), + [anon_sym_TILDE] = ACTIONS(4398), + [anon_sym_STAR] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_AMP] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym___extension__] = ACTIONS(4396), + [anon_sym_typedef] = ACTIONS(4396), + [anon_sym_virtual] = ACTIONS(4396), + [anon_sym_extern] = ACTIONS(4396), + [anon_sym___attribute__] = ACTIONS(4396), + [anon_sym___attribute] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4398), + [anon_sym___declspec] = ACTIONS(4396), + [anon_sym___based] = ACTIONS(4396), + [anon_sym_signed] = ACTIONS(4396), + [anon_sym_unsigned] = ACTIONS(4396), + [anon_sym_long] = ACTIONS(4396), + [anon_sym_short] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_static] = ACTIONS(4396), + [anon_sym_register] = ACTIONS(4396), + [anon_sym_inline] = ACTIONS(4396), + [anon_sym___inline] = ACTIONS(4396), + [anon_sym___inline__] = ACTIONS(4396), + [anon_sym___forceinline] = ACTIONS(4396), + [anon_sym_thread_local] = ACTIONS(4396), + [anon_sym___thread] = ACTIONS(4396), + [anon_sym_const] = ACTIONS(4396), + [anon_sym_constexpr] = ACTIONS(4396), + [anon_sym_volatile] = ACTIONS(4396), + [anon_sym_restrict] = ACTIONS(4396), + [anon_sym___restrict__] = ACTIONS(4396), + [anon_sym__Atomic] = ACTIONS(4396), + [anon_sym__Noreturn] = ACTIONS(4396), + [anon_sym_noreturn] = ACTIONS(4396), + [anon_sym__Nonnull] = ACTIONS(4396), + [anon_sym_mutable] = ACTIONS(4396), + [anon_sym_constinit] = ACTIONS(4396), + [anon_sym_consteval] = ACTIONS(4396), + [anon_sym_alignas] = ACTIONS(4396), + [anon_sym__Alignas] = ACTIONS(4396), + [sym_primitive_type] = ACTIONS(4396), + [anon_sym_enum] = ACTIONS(4396), + [anon_sym_class] = ACTIONS(4396), + [anon_sym_struct] = ACTIONS(4396), + [anon_sym_union] = ACTIONS(4396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4396), + [anon_sym_decltype] = ACTIONS(4396), + [anon_sym_explicit] = ACTIONS(4396), + [anon_sym_typename] = ACTIONS(4396), + [anon_sym_template] = ACTIONS(4396), + [anon_sym_operator] = ACTIONS(4396), + [anon_sym_friend] = ACTIONS(4396), + [anon_sym_public] = ACTIONS(4396), + [anon_sym_private] = ACTIONS(4396), + [anon_sym_protected] = ACTIONS(4396), + [anon_sym_using] = ACTIONS(4396), + [anon_sym_static_assert] = ACTIONS(4396), + [sym_macro_statement] = ACTIONS(4396), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4396), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4396), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4396), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4396), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4396), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4396), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4396), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4396), + [anon_sym_MOZ_COLD] = ACTIONS(4396), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4396), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4396), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4396), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4396), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4396), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4396), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4396), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4396), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4396), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4396), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4396), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4396), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4396), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4396), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4396), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4396), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4396), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4396), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4396), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4396), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_NONNULL] = ACTIONS(4396), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4396), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4396), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4396), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4396), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4396), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_NORETURN] = ACTIONS(4396), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4396), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4396), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4396), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4396), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4396), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4396), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4396), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4396), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4396), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4396), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4396), + [anon_sym_MOZ_RAII] = ACTIONS(4396), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4396), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4396), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4396), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4396), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4396), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4396), + }, + [STATE(992)] = { + [sym_identifier] = ACTIONS(4400), + [aux_sym_preproc_def_token1] = ACTIONS(4400), + [aux_sym_preproc_if_token1] = ACTIONS(4400), + [aux_sym_preproc_if_token2] = ACTIONS(4400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4400), + [aux_sym_preproc_else_token1] = ACTIONS(4400), + [aux_sym_preproc_elif_token1] = ACTIONS(4400), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4400), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4400), + [sym_preproc_directive] = ACTIONS(4400), + [anon_sym_LPAREN2] = ACTIONS(4402), + [anon_sym_TILDE] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4402), + [anon_sym_AMP_AMP] = ACTIONS(4402), + [anon_sym_AMP] = ACTIONS(4400), + [anon_sym_SEMI] = ACTIONS(4402), + [anon_sym___extension__] = ACTIONS(4400), + [anon_sym_typedef] = ACTIONS(4400), + [anon_sym_virtual] = ACTIONS(4400), + [anon_sym_extern] = ACTIONS(4400), + [anon_sym___attribute__] = ACTIONS(4400), + [anon_sym___attribute] = ACTIONS(4400), + [anon_sym_COLON_COLON] = ACTIONS(4402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4402), + [anon_sym___declspec] = ACTIONS(4400), + [anon_sym___based] = ACTIONS(4400), + [anon_sym_signed] = ACTIONS(4400), + [anon_sym_unsigned] = ACTIONS(4400), + [anon_sym_long] = ACTIONS(4400), + [anon_sym_short] = ACTIONS(4400), + [anon_sym_LBRACK] = ACTIONS(4400), + [anon_sym_static] = ACTIONS(4400), + [anon_sym_register] = ACTIONS(4400), + [anon_sym_inline] = ACTIONS(4400), + [anon_sym___inline] = ACTIONS(4400), + [anon_sym___inline__] = ACTIONS(4400), + [anon_sym___forceinline] = ACTIONS(4400), + [anon_sym_thread_local] = ACTIONS(4400), + [anon_sym___thread] = ACTIONS(4400), + [anon_sym_const] = ACTIONS(4400), + [anon_sym_constexpr] = ACTIONS(4400), + [anon_sym_volatile] = ACTIONS(4400), + [anon_sym_restrict] = ACTIONS(4400), + [anon_sym___restrict__] = ACTIONS(4400), + [anon_sym__Atomic] = ACTIONS(4400), + [anon_sym__Noreturn] = ACTIONS(4400), + [anon_sym_noreturn] = ACTIONS(4400), + [anon_sym__Nonnull] = ACTIONS(4400), + [anon_sym_mutable] = ACTIONS(4400), + [anon_sym_constinit] = ACTIONS(4400), + [anon_sym_consteval] = ACTIONS(4400), + [anon_sym_alignas] = ACTIONS(4400), + [anon_sym__Alignas] = ACTIONS(4400), + [sym_primitive_type] = ACTIONS(4400), + [anon_sym_enum] = ACTIONS(4400), + [anon_sym_class] = ACTIONS(4400), + [anon_sym_struct] = ACTIONS(4400), + [anon_sym_union] = ACTIONS(4400), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4400), + [anon_sym_decltype] = ACTIONS(4400), + [anon_sym_explicit] = ACTIONS(4400), + [anon_sym_typename] = ACTIONS(4400), + [anon_sym_template] = ACTIONS(4400), + [anon_sym_operator] = ACTIONS(4400), + [anon_sym_friend] = ACTIONS(4400), + [anon_sym_public] = ACTIONS(4400), + [anon_sym_private] = ACTIONS(4400), + [anon_sym_protected] = ACTIONS(4400), + [anon_sym_using] = ACTIONS(4400), + [anon_sym_static_assert] = ACTIONS(4400), + [sym_macro_statement] = ACTIONS(4400), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4400), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4400), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4400), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4400), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4400), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4400), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4400), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4400), + [anon_sym_MOZ_COLD] = ACTIONS(4400), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4400), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4400), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4400), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4400), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4400), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4400), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4400), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4400), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4400), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4400), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4400), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4400), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4400), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4400), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4400), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4400), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4400), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4400), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4400), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4400), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_NONNULL] = ACTIONS(4400), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4400), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4400), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4400), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4400), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4400), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_NORETURN] = ACTIONS(4400), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4400), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4400), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4400), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4400), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4400), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4400), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4400), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4400), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4400), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4400), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4400), + [anon_sym_MOZ_RAII] = ACTIONS(4400), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4400), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4400), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4400), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4400), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4400), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4400), + }, + [STATE(993)] = { + [sym_identifier] = ACTIONS(2112), + [aux_sym_preproc_def_token1] = ACTIONS(2112), + [aux_sym_preproc_if_token1] = ACTIONS(2112), + [aux_sym_preproc_if_token2] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2112), + [aux_sym_preproc_else_token1] = ACTIONS(2112), + [aux_sym_preproc_elif_token1] = ACTIONS(2112), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2112), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2112), + [sym_preproc_directive] = ACTIONS(2112), + [anon_sym_LPAREN2] = ACTIONS(2114), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_AMP_AMP] = ACTIONS(2114), + [anon_sym_AMP] = ACTIONS(2112), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym___extension__] = ACTIONS(2112), + [anon_sym_typedef] = ACTIONS(2112), + [anon_sym_virtual] = ACTIONS(2112), + [anon_sym_extern] = ACTIONS(2112), + [anon_sym___attribute__] = ACTIONS(2112), + [anon_sym___attribute] = ACTIONS(2112), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2114), + [anon_sym___declspec] = ACTIONS(2112), + [anon_sym___based] = ACTIONS(2112), + [anon_sym_signed] = ACTIONS(2112), + [anon_sym_unsigned] = ACTIONS(2112), + [anon_sym_long] = ACTIONS(2112), + [anon_sym_short] = ACTIONS(2112), + [anon_sym_LBRACK] = ACTIONS(2112), + [anon_sym_static] = ACTIONS(2112), + [anon_sym_register] = ACTIONS(2112), + [anon_sym_inline] = ACTIONS(2112), + [anon_sym___inline] = ACTIONS(2112), + [anon_sym___inline__] = ACTIONS(2112), + [anon_sym___forceinline] = ACTIONS(2112), + [anon_sym_thread_local] = ACTIONS(2112), + [anon_sym___thread] = ACTIONS(2112), + [anon_sym_const] = ACTIONS(2112), + [anon_sym_constexpr] = ACTIONS(2112), + [anon_sym_volatile] = ACTIONS(2112), + [anon_sym_restrict] = ACTIONS(2112), + [anon_sym___restrict__] = ACTIONS(2112), + [anon_sym__Atomic] = ACTIONS(2112), + [anon_sym__Noreturn] = ACTIONS(2112), + [anon_sym_noreturn] = ACTIONS(2112), + [anon_sym__Nonnull] = ACTIONS(2112), + [anon_sym_mutable] = ACTIONS(2112), + [anon_sym_constinit] = ACTIONS(2112), + [anon_sym_consteval] = ACTIONS(2112), + [anon_sym_alignas] = ACTIONS(2112), + [anon_sym__Alignas] = ACTIONS(2112), + [sym_primitive_type] = ACTIONS(2112), + [anon_sym_enum] = ACTIONS(2112), + [anon_sym_class] = ACTIONS(2112), + [anon_sym_struct] = ACTIONS(2112), + [anon_sym_union] = ACTIONS(2112), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2112), + [anon_sym_decltype] = ACTIONS(2112), + [anon_sym_explicit] = ACTIONS(2112), + [anon_sym_typename] = ACTIONS(2112), + [anon_sym_template] = ACTIONS(2112), + [anon_sym_operator] = ACTIONS(2112), + [anon_sym_friend] = ACTIONS(2112), + [anon_sym_public] = ACTIONS(2112), + [anon_sym_private] = ACTIONS(2112), + [anon_sym_protected] = ACTIONS(2112), + [anon_sym_using] = ACTIONS(2112), + [anon_sym_static_assert] = ACTIONS(2112), + [sym_macro_statement] = ACTIONS(2112), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2112), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2112), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2112), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2112), + [anon_sym_MOZ_COLD] = ACTIONS(2112), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2112), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2112), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2112), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2112), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2112), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2112), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2112), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2112), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2112), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2112), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2112), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2112), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2112), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_NONNULL] = ACTIONS(2112), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2112), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2112), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2112), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2112), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2112), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2112), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2112), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2112), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2112), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2112), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2112), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2112), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2112), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2112), + [anon_sym_MOZ_RAII] = ACTIONS(2112), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2112), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2112), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2112), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2112), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2112), + }, + [STATE(994)] = { + [sym_identifier] = ACTIONS(4404), + [aux_sym_preproc_def_token1] = ACTIONS(4404), + [aux_sym_preproc_if_token1] = ACTIONS(4404), + [aux_sym_preproc_if_token2] = ACTIONS(4404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4404), + [aux_sym_preproc_else_token1] = ACTIONS(4404), + [aux_sym_preproc_elif_token1] = ACTIONS(4404), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4404), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4404), + [sym_preproc_directive] = ACTIONS(4404), + [anon_sym_LPAREN2] = ACTIONS(4406), + [anon_sym_TILDE] = ACTIONS(4406), + [anon_sym_STAR] = ACTIONS(4406), + [anon_sym_AMP_AMP] = ACTIONS(4406), + [anon_sym_AMP] = ACTIONS(4404), + [anon_sym_SEMI] = ACTIONS(4406), + [anon_sym___extension__] = ACTIONS(4404), + [anon_sym_typedef] = ACTIONS(4404), + [anon_sym_virtual] = ACTIONS(4404), + [anon_sym_extern] = ACTIONS(4404), + [anon_sym___attribute__] = ACTIONS(4404), + [anon_sym___attribute] = ACTIONS(4404), + [anon_sym_COLON_COLON] = ACTIONS(4406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4406), + [anon_sym___declspec] = ACTIONS(4404), + [anon_sym___based] = ACTIONS(4404), + [anon_sym_signed] = ACTIONS(4404), + [anon_sym_unsigned] = ACTIONS(4404), + [anon_sym_long] = ACTIONS(4404), + [anon_sym_short] = ACTIONS(4404), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_static] = ACTIONS(4404), + [anon_sym_register] = ACTIONS(4404), + [anon_sym_inline] = ACTIONS(4404), + [anon_sym___inline] = ACTIONS(4404), + [anon_sym___inline__] = ACTIONS(4404), + [anon_sym___forceinline] = ACTIONS(4404), + [anon_sym_thread_local] = ACTIONS(4404), + [anon_sym___thread] = ACTIONS(4404), + [anon_sym_const] = ACTIONS(4404), + [anon_sym_constexpr] = ACTIONS(4404), + [anon_sym_volatile] = ACTIONS(4404), + [anon_sym_restrict] = ACTIONS(4404), + [anon_sym___restrict__] = ACTIONS(4404), + [anon_sym__Atomic] = ACTIONS(4404), + [anon_sym__Noreturn] = ACTIONS(4404), + [anon_sym_noreturn] = ACTIONS(4404), + [anon_sym__Nonnull] = ACTIONS(4404), + [anon_sym_mutable] = ACTIONS(4404), + [anon_sym_constinit] = ACTIONS(4404), + [anon_sym_consteval] = ACTIONS(4404), + [anon_sym_alignas] = ACTIONS(4404), + [anon_sym__Alignas] = ACTIONS(4404), + [sym_primitive_type] = ACTIONS(4404), + [anon_sym_enum] = ACTIONS(4404), + [anon_sym_class] = ACTIONS(4404), + [anon_sym_struct] = ACTIONS(4404), + [anon_sym_union] = ACTIONS(4404), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4404), + [anon_sym_decltype] = ACTIONS(4404), + [anon_sym_explicit] = ACTIONS(4404), + [anon_sym_typename] = ACTIONS(4404), + [anon_sym_template] = ACTIONS(4404), + [anon_sym_operator] = ACTIONS(4404), + [anon_sym_friend] = ACTIONS(4404), + [anon_sym_public] = ACTIONS(4404), + [anon_sym_private] = ACTIONS(4404), + [anon_sym_protected] = ACTIONS(4404), + [anon_sym_using] = ACTIONS(4404), + [anon_sym_static_assert] = ACTIONS(4404), + [sym_macro_statement] = ACTIONS(4404), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4404), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4404), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4404), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4404), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4404), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4404), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4404), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4404), + [anon_sym_MOZ_COLD] = ACTIONS(4404), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4404), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4404), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4404), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4404), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4404), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4404), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4404), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4404), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4404), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4404), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4404), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4404), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4404), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4404), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4404), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4404), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4404), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4404), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4404), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4404), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_NONNULL] = ACTIONS(4404), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4404), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4404), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4404), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4404), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4404), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_NORETURN] = ACTIONS(4404), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4404), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4404), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4404), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4404), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4404), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4404), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4404), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4404), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4404), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4404), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4404), + [anon_sym_MOZ_RAII] = ACTIONS(4404), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4404), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4404), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4404), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4404), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4404), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4404), + }, + [STATE(995)] = { + [sym__declaration_modifiers] = STATE(1627), + [sym_attribute_specifier] = STATE(1627), + [sym_attribute_declaration] = STATE(1627), + [sym_ms_declspec_modifier] = STATE(1627), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6521), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1627), + [sym_type_qualifier] = STATE(1627), + [sym_alignas_qualifier] = STATE(1593), + [sym_decltype] = STATE(8447), + [sym_explicit_function_specifier] = STATE(1627), + [sym_operator_cast] = STATE(7112), + [sym__constructor_specifiers] = STATE(1627), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5912), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_operator_cast_identifier] = STATE(7112), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1618), + [aux_sym_operator_cast_definition_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4348), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(996)] = { + [sym_identifier] = ACTIONS(4408), + [aux_sym_preproc_def_token1] = ACTIONS(4408), + [aux_sym_preproc_if_token1] = ACTIONS(4408), + [aux_sym_preproc_if_token2] = ACTIONS(4408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4408), + [aux_sym_preproc_else_token1] = ACTIONS(4408), + [aux_sym_preproc_elif_token1] = ACTIONS(4408), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4408), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4408), + [sym_preproc_directive] = ACTIONS(4408), + [anon_sym_LPAREN2] = ACTIONS(4410), + [anon_sym_TILDE] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4410), + [anon_sym_AMP_AMP] = ACTIONS(4410), + [anon_sym_AMP] = ACTIONS(4408), + [anon_sym_SEMI] = ACTIONS(4410), + [anon_sym___extension__] = ACTIONS(4408), + [anon_sym_typedef] = ACTIONS(4408), + [anon_sym_virtual] = ACTIONS(4408), + [anon_sym_extern] = ACTIONS(4408), + [anon_sym___attribute__] = ACTIONS(4408), + [anon_sym___attribute] = ACTIONS(4408), + [anon_sym_COLON_COLON] = ACTIONS(4410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4410), + [anon_sym___declspec] = ACTIONS(4408), + [anon_sym___based] = ACTIONS(4408), + [anon_sym_signed] = ACTIONS(4408), + [anon_sym_unsigned] = ACTIONS(4408), + [anon_sym_long] = ACTIONS(4408), + [anon_sym_short] = ACTIONS(4408), + [anon_sym_LBRACK] = ACTIONS(4408), + [anon_sym_static] = ACTIONS(4408), + [anon_sym_register] = ACTIONS(4408), + [anon_sym_inline] = ACTIONS(4408), + [anon_sym___inline] = ACTIONS(4408), + [anon_sym___inline__] = ACTIONS(4408), + [anon_sym___forceinline] = ACTIONS(4408), + [anon_sym_thread_local] = ACTIONS(4408), + [anon_sym___thread] = ACTIONS(4408), + [anon_sym_const] = ACTIONS(4408), + [anon_sym_constexpr] = ACTIONS(4408), + [anon_sym_volatile] = ACTIONS(4408), + [anon_sym_restrict] = ACTIONS(4408), + [anon_sym___restrict__] = ACTIONS(4408), + [anon_sym__Atomic] = ACTIONS(4408), + [anon_sym__Noreturn] = ACTIONS(4408), + [anon_sym_noreturn] = ACTIONS(4408), + [anon_sym__Nonnull] = ACTIONS(4408), + [anon_sym_mutable] = ACTIONS(4408), + [anon_sym_constinit] = ACTIONS(4408), + [anon_sym_consteval] = ACTIONS(4408), + [anon_sym_alignas] = ACTIONS(4408), + [anon_sym__Alignas] = ACTIONS(4408), + [sym_primitive_type] = ACTIONS(4408), + [anon_sym_enum] = ACTIONS(4408), + [anon_sym_class] = ACTIONS(4408), + [anon_sym_struct] = ACTIONS(4408), + [anon_sym_union] = ACTIONS(4408), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4408), + [anon_sym_decltype] = ACTIONS(4408), + [anon_sym_explicit] = ACTIONS(4408), + [anon_sym_typename] = ACTIONS(4408), + [anon_sym_template] = ACTIONS(4408), + [anon_sym_operator] = ACTIONS(4408), + [anon_sym_friend] = ACTIONS(4408), + [anon_sym_public] = ACTIONS(4408), + [anon_sym_private] = ACTIONS(4408), + [anon_sym_protected] = ACTIONS(4408), + [anon_sym_using] = ACTIONS(4408), + [anon_sym_static_assert] = ACTIONS(4408), + [sym_macro_statement] = ACTIONS(4408), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4408), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4408), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4408), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4408), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4408), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4408), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4408), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4408), + [anon_sym_MOZ_COLD] = ACTIONS(4408), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4408), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4408), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4408), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4408), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4408), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4408), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4408), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4408), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4408), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4408), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4408), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4408), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4408), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4408), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4408), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4408), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4408), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4408), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4408), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4408), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_NONNULL] = ACTIONS(4408), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4408), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4408), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4408), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4408), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4408), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_NORETURN] = ACTIONS(4408), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4408), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4408), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4408), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4408), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4408), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4408), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4408), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4408), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4408), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4408), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4408), + [anon_sym_MOZ_RAII] = ACTIONS(4408), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4408), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4408), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4408), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4408), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4408), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4408), + }, + [STATE(997)] = { + [sym_identifier] = ACTIONS(4412), + [aux_sym_preproc_def_token1] = ACTIONS(4412), + [aux_sym_preproc_if_token1] = ACTIONS(4412), + [aux_sym_preproc_if_token2] = ACTIONS(4412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4412), + [aux_sym_preproc_else_token1] = ACTIONS(4412), + [aux_sym_preproc_elif_token1] = ACTIONS(4412), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4412), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4412), + [sym_preproc_directive] = ACTIONS(4412), + [anon_sym_LPAREN2] = ACTIONS(4414), + [anon_sym_TILDE] = ACTIONS(4414), + [anon_sym_STAR] = ACTIONS(4414), + [anon_sym_AMP_AMP] = ACTIONS(4414), + [anon_sym_AMP] = ACTIONS(4412), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym___extension__] = ACTIONS(4412), + [anon_sym_typedef] = ACTIONS(4412), + [anon_sym_virtual] = ACTIONS(4412), + [anon_sym_extern] = ACTIONS(4412), + [anon_sym___attribute__] = ACTIONS(4412), + [anon_sym___attribute] = ACTIONS(4412), + [anon_sym_COLON_COLON] = ACTIONS(4414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4414), + [anon_sym___declspec] = ACTIONS(4412), + [anon_sym___based] = ACTIONS(4412), + [anon_sym_signed] = ACTIONS(4412), + [anon_sym_unsigned] = ACTIONS(4412), + [anon_sym_long] = ACTIONS(4412), + [anon_sym_short] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_static] = ACTIONS(4412), + [anon_sym_register] = ACTIONS(4412), + [anon_sym_inline] = ACTIONS(4412), + [anon_sym___inline] = ACTIONS(4412), + [anon_sym___inline__] = ACTIONS(4412), + [anon_sym___forceinline] = ACTIONS(4412), + [anon_sym_thread_local] = ACTIONS(4412), + [anon_sym___thread] = ACTIONS(4412), + [anon_sym_const] = ACTIONS(4412), + [anon_sym_constexpr] = ACTIONS(4412), + [anon_sym_volatile] = ACTIONS(4412), + [anon_sym_restrict] = ACTIONS(4412), + [anon_sym___restrict__] = ACTIONS(4412), + [anon_sym__Atomic] = ACTIONS(4412), + [anon_sym__Noreturn] = ACTIONS(4412), + [anon_sym_noreturn] = ACTIONS(4412), + [anon_sym__Nonnull] = ACTIONS(4412), + [anon_sym_mutable] = ACTIONS(4412), + [anon_sym_constinit] = ACTIONS(4412), + [anon_sym_consteval] = ACTIONS(4412), + [anon_sym_alignas] = ACTIONS(4412), + [anon_sym__Alignas] = ACTIONS(4412), + [sym_primitive_type] = ACTIONS(4412), + [anon_sym_enum] = ACTIONS(4412), + [anon_sym_class] = ACTIONS(4412), + [anon_sym_struct] = ACTIONS(4412), + [anon_sym_union] = ACTIONS(4412), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4412), + [anon_sym_decltype] = ACTIONS(4412), + [anon_sym_explicit] = ACTIONS(4412), + [anon_sym_typename] = ACTIONS(4412), + [anon_sym_template] = ACTIONS(4412), + [anon_sym_operator] = ACTIONS(4412), + [anon_sym_friend] = ACTIONS(4412), + [anon_sym_public] = ACTIONS(4412), + [anon_sym_private] = ACTIONS(4412), + [anon_sym_protected] = ACTIONS(4412), + [anon_sym_using] = ACTIONS(4412), + [anon_sym_static_assert] = ACTIONS(4412), + [sym_macro_statement] = ACTIONS(4412), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4412), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4412), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4412), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4412), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4412), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4412), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4412), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4412), + [anon_sym_MOZ_COLD] = ACTIONS(4412), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4412), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4412), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4412), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4412), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4412), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4412), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4412), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4412), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4412), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4412), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4412), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4412), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4412), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4412), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4412), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4412), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4412), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4412), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4412), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4412), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_NONNULL] = ACTIONS(4412), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4412), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4412), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4412), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4412), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4412), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_NORETURN] = ACTIONS(4412), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4412), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4412), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4412), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4412), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4412), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4412), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4412), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4412), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4412), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4412), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4412), + [anon_sym_MOZ_RAII] = ACTIONS(4412), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4412), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4412), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4412), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4412), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4412), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4412), + }, + [STATE(998)] = { + [sym_identifier] = ACTIONS(4416), + [aux_sym_preproc_def_token1] = ACTIONS(4416), + [aux_sym_preproc_if_token1] = ACTIONS(4416), + [aux_sym_preproc_if_token2] = ACTIONS(4416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4416), + [aux_sym_preproc_else_token1] = ACTIONS(4416), + [aux_sym_preproc_elif_token1] = ACTIONS(4416), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4416), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4416), + [sym_preproc_directive] = ACTIONS(4416), + [anon_sym_LPAREN2] = ACTIONS(4418), + [anon_sym_TILDE] = ACTIONS(4418), + [anon_sym_STAR] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_AMP] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym___extension__] = ACTIONS(4416), + [anon_sym_typedef] = ACTIONS(4416), + [anon_sym_virtual] = ACTIONS(4416), + [anon_sym_extern] = ACTIONS(4416), + [anon_sym___attribute__] = ACTIONS(4416), + [anon_sym___attribute] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4418), + [anon_sym___declspec] = ACTIONS(4416), + [anon_sym___based] = ACTIONS(4416), + [anon_sym_signed] = ACTIONS(4416), + [anon_sym_unsigned] = ACTIONS(4416), + [anon_sym_long] = ACTIONS(4416), + [anon_sym_short] = ACTIONS(4416), + [anon_sym_LBRACK] = ACTIONS(4416), + [anon_sym_static] = ACTIONS(4416), + [anon_sym_register] = ACTIONS(4416), + [anon_sym_inline] = ACTIONS(4416), + [anon_sym___inline] = ACTIONS(4416), + [anon_sym___inline__] = ACTIONS(4416), + [anon_sym___forceinline] = ACTIONS(4416), + [anon_sym_thread_local] = ACTIONS(4416), + [anon_sym___thread] = ACTIONS(4416), + [anon_sym_const] = ACTIONS(4416), + [anon_sym_constexpr] = ACTIONS(4416), + [anon_sym_volatile] = ACTIONS(4416), + [anon_sym_restrict] = ACTIONS(4416), + [anon_sym___restrict__] = ACTIONS(4416), + [anon_sym__Atomic] = ACTIONS(4416), + [anon_sym__Noreturn] = ACTIONS(4416), + [anon_sym_noreturn] = ACTIONS(4416), + [anon_sym__Nonnull] = ACTIONS(4416), + [anon_sym_mutable] = ACTIONS(4416), + [anon_sym_constinit] = ACTIONS(4416), + [anon_sym_consteval] = ACTIONS(4416), + [anon_sym_alignas] = ACTIONS(4416), + [anon_sym__Alignas] = ACTIONS(4416), + [sym_primitive_type] = ACTIONS(4416), + [anon_sym_enum] = ACTIONS(4416), + [anon_sym_class] = ACTIONS(4416), + [anon_sym_struct] = ACTIONS(4416), + [anon_sym_union] = ACTIONS(4416), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4416), + [anon_sym_decltype] = ACTIONS(4416), + [anon_sym_explicit] = ACTIONS(4416), + [anon_sym_typename] = ACTIONS(4416), + [anon_sym_template] = ACTIONS(4416), + [anon_sym_operator] = ACTIONS(4416), + [anon_sym_friend] = ACTIONS(4416), + [anon_sym_public] = ACTIONS(4416), + [anon_sym_private] = ACTIONS(4416), + [anon_sym_protected] = ACTIONS(4416), + [anon_sym_using] = ACTIONS(4416), + [anon_sym_static_assert] = ACTIONS(4416), + [sym_macro_statement] = ACTIONS(4416), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4416), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4416), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4416), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4416), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4416), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4416), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4416), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4416), + [anon_sym_MOZ_COLD] = ACTIONS(4416), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4416), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4416), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4416), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4416), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4416), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4416), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4416), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4416), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4416), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4416), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4416), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4416), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4416), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4416), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4416), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4416), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4416), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4416), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4416), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4416), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_NONNULL] = ACTIONS(4416), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4416), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4416), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4416), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4416), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4416), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_NORETURN] = ACTIONS(4416), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4416), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4416), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4416), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4416), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4416), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4416), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4416), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4416), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4416), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4416), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4416), + [anon_sym_MOZ_RAII] = ACTIONS(4416), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4416), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4416), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4416), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4416), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4416), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4416), + }, + [STATE(999)] = { + [sym_identifier] = ACTIONS(4420), + [aux_sym_preproc_def_token1] = ACTIONS(4420), + [aux_sym_preproc_if_token1] = ACTIONS(4420), + [aux_sym_preproc_if_token2] = ACTIONS(4420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4420), + [aux_sym_preproc_else_token1] = ACTIONS(4420), + [aux_sym_preproc_elif_token1] = ACTIONS(4420), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4420), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4420), + [sym_preproc_directive] = ACTIONS(4420), + [anon_sym_LPAREN2] = ACTIONS(4422), + [anon_sym_TILDE] = ACTIONS(4422), + [anon_sym_STAR] = ACTIONS(4422), + [anon_sym_AMP_AMP] = ACTIONS(4422), + [anon_sym_AMP] = ACTIONS(4420), + [anon_sym_SEMI] = ACTIONS(4422), + [anon_sym___extension__] = ACTIONS(4420), + [anon_sym_typedef] = ACTIONS(4420), + [anon_sym_virtual] = ACTIONS(4420), + [anon_sym_extern] = ACTIONS(4420), + [anon_sym___attribute__] = ACTIONS(4420), + [anon_sym___attribute] = ACTIONS(4420), + [anon_sym_COLON_COLON] = ACTIONS(4422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4422), + [anon_sym___declspec] = ACTIONS(4420), + [anon_sym___based] = ACTIONS(4420), + [anon_sym_signed] = ACTIONS(4420), + [anon_sym_unsigned] = ACTIONS(4420), + [anon_sym_long] = ACTIONS(4420), + [anon_sym_short] = ACTIONS(4420), + [anon_sym_LBRACK] = ACTIONS(4420), + [anon_sym_static] = ACTIONS(4420), + [anon_sym_register] = ACTIONS(4420), + [anon_sym_inline] = ACTIONS(4420), + [anon_sym___inline] = ACTIONS(4420), + [anon_sym___inline__] = ACTIONS(4420), + [anon_sym___forceinline] = ACTIONS(4420), + [anon_sym_thread_local] = ACTIONS(4420), + [anon_sym___thread] = ACTIONS(4420), + [anon_sym_const] = ACTIONS(4420), + [anon_sym_constexpr] = ACTIONS(4420), + [anon_sym_volatile] = ACTIONS(4420), + [anon_sym_restrict] = ACTIONS(4420), + [anon_sym___restrict__] = ACTIONS(4420), + [anon_sym__Atomic] = ACTIONS(4420), + [anon_sym__Noreturn] = ACTIONS(4420), + [anon_sym_noreturn] = ACTIONS(4420), + [anon_sym__Nonnull] = ACTIONS(4420), + [anon_sym_mutable] = ACTIONS(4420), + [anon_sym_constinit] = ACTIONS(4420), + [anon_sym_consteval] = ACTIONS(4420), + [anon_sym_alignas] = ACTIONS(4420), + [anon_sym__Alignas] = ACTIONS(4420), + [sym_primitive_type] = ACTIONS(4420), + [anon_sym_enum] = ACTIONS(4420), + [anon_sym_class] = ACTIONS(4420), + [anon_sym_struct] = ACTIONS(4420), + [anon_sym_union] = ACTIONS(4420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4420), + [anon_sym_decltype] = ACTIONS(4420), + [anon_sym_explicit] = ACTIONS(4420), + [anon_sym_typename] = ACTIONS(4420), + [anon_sym_template] = ACTIONS(4420), + [anon_sym_operator] = ACTIONS(4420), + [anon_sym_friend] = ACTIONS(4420), + [anon_sym_public] = ACTIONS(4420), + [anon_sym_private] = ACTIONS(4420), + [anon_sym_protected] = ACTIONS(4420), + [anon_sym_using] = ACTIONS(4420), + [anon_sym_static_assert] = ACTIONS(4420), + [sym_macro_statement] = ACTIONS(4420), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4420), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4420), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4420), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4420), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4420), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4420), + [anon_sym_MOZ_COLD] = ACTIONS(4420), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4420), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4420), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4420), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4420), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4420), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4420), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4420), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4420), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4420), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4420), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4420), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4420), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4420), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4420), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4420), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4420), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4420), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4420), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_NONNULL] = ACTIONS(4420), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4420), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4420), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4420), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4420), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4420), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_NORETURN] = ACTIONS(4420), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4420), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4420), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4420), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4420), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4420), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4420), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4420), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4420), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4420), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4420), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4420), + [anon_sym_MOZ_RAII] = ACTIONS(4420), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4420), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4420), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4420), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4420), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4420), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4420), + }, + [STATE(1000)] = { + [sym_identifier] = ACTIONS(4424), + [aux_sym_preproc_def_token1] = ACTIONS(4424), + [aux_sym_preproc_if_token1] = ACTIONS(4424), + [aux_sym_preproc_if_token2] = ACTIONS(4424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4424), + [aux_sym_preproc_else_token1] = ACTIONS(4424), + [aux_sym_preproc_elif_token1] = ACTIONS(4424), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4424), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4424), + [sym_preproc_directive] = ACTIONS(4424), + [anon_sym_LPAREN2] = ACTIONS(4426), + [anon_sym_TILDE] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4426), + [anon_sym_AMP_AMP] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4424), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym___extension__] = ACTIONS(4424), + [anon_sym_typedef] = ACTIONS(4424), + [anon_sym_virtual] = ACTIONS(4424), + [anon_sym_extern] = ACTIONS(4424), + [anon_sym___attribute__] = ACTIONS(4424), + [anon_sym___attribute] = ACTIONS(4424), + [anon_sym_COLON_COLON] = ACTIONS(4426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4426), + [anon_sym___declspec] = ACTIONS(4424), + [anon_sym___based] = ACTIONS(4424), + [anon_sym_signed] = ACTIONS(4424), + [anon_sym_unsigned] = ACTIONS(4424), + [anon_sym_long] = ACTIONS(4424), + [anon_sym_short] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(4424), + [anon_sym_static] = ACTIONS(4424), + [anon_sym_register] = ACTIONS(4424), + [anon_sym_inline] = ACTIONS(4424), + [anon_sym___inline] = ACTIONS(4424), + [anon_sym___inline__] = ACTIONS(4424), + [anon_sym___forceinline] = ACTIONS(4424), + [anon_sym_thread_local] = ACTIONS(4424), + [anon_sym___thread] = ACTIONS(4424), + [anon_sym_const] = ACTIONS(4424), + [anon_sym_constexpr] = ACTIONS(4424), + [anon_sym_volatile] = ACTIONS(4424), + [anon_sym_restrict] = ACTIONS(4424), + [anon_sym___restrict__] = ACTIONS(4424), + [anon_sym__Atomic] = ACTIONS(4424), + [anon_sym__Noreturn] = ACTIONS(4424), + [anon_sym_noreturn] = ACTIONS(4424), + [anon_sym__Nonnull] = ACTIONS(4424), + [anon_sym_mutable] = ACTIONS(4424), + [anon_sym_constinit] = ACTIONS(4424), + [anon_sym_consteval] = ACTIONS(4424), + [anon_sym_alignas] = ACTIONS(4424), + [anon_sym__Alignas] = ACTIONS(4424), + [sym_primitive_type] = ACTIONS(4424), + [anon_sym_enum] = ACTIONS(4424), + [anon_sym_class] = ACTIONS(4424), + [anon_sym_struct] = ACTIONS(4424), + [anon_sym_union] = ACTIONS(4424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4424), + [anon_sym_decltype] = ACTIONS(4424), + [anon_sym_explicit] = ACTIONS(4424), + [anon_sym_typename] = ACTIONS(4424), + [anon_sym_template] = ACTIONS(4424), + [anon_sym_operator] = ACTIONS(4424), + [anon_sym_friend] = ACTIONS(4424), + [anon_sym_public] = ACTIONS(4424), + [anon_sym_private] = ACTIONS(4424), + [anon_sym_protected] = ACTIONS(4424), + [anon_sym_using] = ACTIONS(4424), + [anon_sym_static_assert] = ACTIONS(4424), + [sym_macro_statement] = ACTIONS(4424), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4424), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4424), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4424), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4424), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4424), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4424), + [anon_sym_MOZ_COLD] = ACTIONS(4424), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4424), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4424), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4424), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4424), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4424), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4424), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4424), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4424), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4424), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4424), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4424), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4424), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4424), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4424), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4424), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4424), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4424), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4424), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_NONNULL] = ACTIONS(4424), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4424), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4424), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4424), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4424), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4424), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_NORETURN] = ACTIONS(4424), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4424), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4424), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4424), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4424), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4424), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4424), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4424), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4424), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4424), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4424), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4424), + [anon_sym_MOZ_RAII] = ACTIONS(4424), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4424), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4424), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4424), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4424), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4424), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4424), + }, + [STATE(1001)] = { + [sym_identifier] = ACTIONS(1966), + [aux_sym_preproc_def_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token2] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1966), + [aux_sym_preproc_else_token1] = ACTIONS(1966), + [aux_sym_preproc_elif_token1] = ACTIONS(1966), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1966), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1966), + [sym_preproc_directive] = ACTIONS(1966), + [anon_sym_LPAREN2] = ACTIONS(1968), + [anon_sym_TILDE] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym___extension__] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1966), + [anon_sym_virtual] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym___attribute__] = ACTIONS(1966), + [anon_sym___attribute] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1966), + [anon_sym___based] = ACTIONS(1966), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_register] = ACTIONS(1966), + [anon_sym_inline] = ACTIONS(1966), + [anon_sym___inline] = ACTIONS(1966), + [anon_sym___inline__] = ACTIONS(1966), + [anon_sym___forceinline] = ACTIONS(1966), + [anon_sym_thread_local] = ACTIONS(1966), + [anon_sym___thread] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_constexpr] = ACTIONS(1966), + [anon_sym_volatile] = ACTIONS(1966), + [anon_sym_restrict] = ACTIONS(1966), + [anon_sym___restrict__] = ACTIONS(1966), + [anon_sym__Atomic] = ACTIONS(1966), + [anon_sym__Noreturn] = ACTIONS(1966), + [anon_sym_noreturn] = ACTIONS(1966), + [anon_sym__Nonnull] = ACTIONS(1966), + [anon_sym_mutable] = ACTIONS(1966), + [anon_sym_constinit] = ACTIONS(1966), + [anon_sym_consteval] = ACTIONS(1966), + [anon_sym_alignas] = ACTIONS(1966), + [anon_sym__Alignas] = ACTIONS(1966), + [sym_primitive_type] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_class] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1966), + [anon_sym_decltype] = ACTIONS(1966), + [anon_sym_explicit] = ACTIONS(1966), + [anon_sym_typename] = ACTIONS(1966), + [anon_sym_template] = ACTIONS(1966), + [anon_sym_operator] = ACTIONS(1966), + [anon_sym_friend] = ACTIONS(1966), + [anon_sym_public] = ACTIONS(1966), + [anon_sym_private] = ACTIONS(1966), + [anon_sym_protected] = ACTIONS(1966), + [anon_sym_using] = ACTIONS(1966), + [anon_sym_static_assert] = ACTIONS(1966), + [sym_macro_statement] = ACTIONS(1966), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1966), + [anon_sym_MOZ_COLD] = ACTIONS(1966), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1966), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1966), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1966), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1966), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1966), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1966), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1966), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1966), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1966), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1966), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1966), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1966), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_RAII] = ACTIONS(1966), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1966), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1966), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1966), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1966), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1966), + }, + [STATE(1002)] = { + [sym_identifier] = ACTIONS(4428), + [aux_sym_preproc_def_token1] = ACTIONS(4428), + [aux_sym_preproc_if_token1] = ACTIONS(4428), + [aux_sym_preproc_if_token2] = ACTIONS(4428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4428), + [aux_sym_preproc_else_token1] = ACTIONS(4428), + [aux_sym_preproc_elif_token1] = ACTIONS(4428), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4428), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4428), + [sym_preproc_directive] = ACTIONS(4428), + [anon_sym_LPAREN2] = ACTIONS(4430), + [anon_sym_TILDE] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [anon_sym_AMP_AMP] = ACTIONS(4430), + [anon_sym_AMP] = ACTIONS(4428), + [anon_sym_SEMI] = ACTIONS(4430), + [anon_sym___extension__] = ACTIONS(4428), + [anon_sym_typedef] = ACTIONS(4428), + [anon_sym_virtual] = ACTIONS(4428), + [anon_sym_extern] = ACTIONS(4428), + [anon_sym___attribute__] = ACTIONS(4428), + [anon_sym___attribute] = ACTIONS(4428), + [anon_sym_COLON_COLON] = ACTIONS(4430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4430), + [anon_sym___declspec] = ACTIONS(4428), + [anon_sym___based] = ACTIONS(4428), + [anon_sym_signed] = ACTIONS(4428), + [anon_sym_unsigned] = ACTIONS(4428), + [anon_sym_long] = ACTIONS(4428), + [anon_sym_short] = ACTIONS(4428), + [anon_sym_LBRACK] = ACTIONS(4428), + [anon_sym_static] = ACTIONS(4428), + [anon_sym_register] = ACTIONS(4428), + [anon_sym_inline] = ACTIONS(4428), + [anon_sym___inline] = ACTIONS(4428), + [anon_sym___inline__] = ACTIONS(4428), + [anon_sym___forceinline] = ACTIONS(4428), + [anon_sym_thread_local] = ACTIONS(4428), + [anon_sym___thread] = ACTIONS(4428), + [anon_sym_const] = ACTIONS(4428), + [anon_sym_constexpr] = ACTIONS(4428), + [anon_sym_volatile] = ACTIONS(4428), + [anon_sym_restrict] = ACTIONS(4428), + [anon_sym___restrict__] = ACTIONS(4428), + [anon_sym__Atomic] = ACTIONS(4428), + [anon_sym__Noreturn] = ACTIONS(4428), + [anon_sym_noreturn] = ACTIONS(4428), + [anon_sym__Nonnull] = ACTIONS(4428), + [anon_sym_mutable] = ACTIONS(4428), + [anon_sym_constinit] = ACTIONS(4428), + [anon_sym_consteval] = ACTIONS(4428), + [anon_sym_alignas] = ACTIONS(4428), + [anon_sym__Alignas] = ACTIONS(4428), + [sym_primitive_type] = ACTIONS(4428), + [anon_sym_enum] = ACTIONS(4428), + [anon_sym_class] = ACTIONS(4428), + [anon_sym_struct] = ACTIONS(4428), + [anon_sym_union] = ACTIONS(4428), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4428), + [anon_sym_decltype] = ACTIONS(4428), + [anon_sym_explicit] = ACTIONS(4428), + [anon_sym_typename] = ACTIONS(4428), + [anon_sym_template] = ACTIONS(4428), + [anon_sym_operator] = ACTIONS(4428), + [anon_sym_friend] = ACTIONS(4428), + [anon_sym_public] = ACTIONS(4428), + [anon_sym_private] = ACTIONS(4428), + [anon_sym_protected] = ACTIONS(4428), + [anon_sym_using] = ACTIONS(4428), + [anon_sym_static_assert] = ACTIONS(4428), + [sym_macro_statement] = ACTIONS(4428), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4428), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4428), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4428), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4428), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4428), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4428), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4428), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4428), + [anon_sym_MOZ_COLD] = ACTIONS(4428), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4428), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4428), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4428), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4428), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4428), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4428), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4428), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4428), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4428), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4428), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4428), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4428), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4428), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4428), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4428), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4428), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4428), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4428), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4428), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4428), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_NONNULL] = ACTIONS(4428), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4428), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4428), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4428), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4428), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4428), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_NORETURN] = ACTIONS(4428), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4428), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4428), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4428), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4428), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4428), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4428), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4428), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4428), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4428), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4428), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4428), + [anon_sym_MOZ_RAII] = ACTIONS(4428), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4428), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4428), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4428), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4428), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4428), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4428), + }, + [STATE(1003)] = { + [sym_identifier] = ACTIONS(2412), + [aux_sym_preproc_def_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token2] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2412), + [aux_sym_preproc_else_token1] = ACTIONS(2412), + [aux_sym_preproc_elif_token1] = ACTIONS(2412), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2412), + [sym_preproc_directive] = ACTIONS(2412), + [anon_sym_LPAREN2] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym___extension__] = ACTIONS(2412), + [anon_sym_typedef] = ACTIONS(2412), + [anon_sym_virtual] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym___attribute__] = ACTIONS(2412), + [anon_sym___attribute] = ACTIONS(2412), + [anon_sym_COLON_COLON] = ACTIONS(2414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2414), + [anon_sym___declspec] = ACTIONS(2412), + [anon_sym___based] = ACTIONS(2412), + [anon_sym_signed] = ACTIONS(2412), + [anon_sym_unsigned] = ACTIONS(2412), + [anon_sym_long] = ACTIONS(2412), + [anon_sym_short] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym___inline] = ACTIONS(2412), + [anon_sym___inline__] = ACTIONS(2412), + [anon_sym___forceinline] = ACTIONS(2412), + [anon_sym_thread_local] = ACTIONS(2412), + [anon_sym___thread] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_constexpr] = ACTIONS(2412), + [anon_sym_volatile] = ACTIONS(2412), + [anon_sym_restrict] = ACTIONS(2412), + [anon_sym___restrict__] = ACTIONS(2412), + [anon_sym__Atomic] = ACTIONS(2412), + [anon_sym__Noreturn] = ACTIONS(2412), + [anon_sym_noreturn] = ACTIONS(2412), + [anon_sym__Nonnull] = ACTIONS(2412), + [anon_sym_mutable] = ACTIONS(2412), + [anon_sym_constinit] = ACTIONS(2412), + [anon_sym_consteval] = ACTIONS(2412), + [anon_sym_alignas] = ACTIONS(2412), + [anon_sym__Alignas] = ACTIONS(2412), + [sym_primitive_type] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_class] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2412), + [anon_sym_decltype] = ACTIONS(2412), + [anon_sym_explicit] = ACTIONS(2412), + [anon_sym_typename] = ACTIONS(2412), + [anon_sym_template] = ACTIONS(2412), + [anon_sym_operator] = ACTIONS(2412), + [anon_sym_friend] = ACTIONS(2412), + [anon_sym_public] = ACTIONS(2412), + [anon_sym_private] = ACTIONS(2412), + [anon_sym_protected] = ACTIONS(2412), + [anon_sym_using] = ACTIONS(2412), + [anon_sym_static_assert] = ACTIONS(2412), + [sym_macro_statement] = ACTIONS(2412), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2412), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2412), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2412), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2412), + [anon_sym_MOZ_COLD] = ACTIONS(2412), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2412), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2412), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2412), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2412), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2412), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2412), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2412), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2412), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2412), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2412), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2412), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2412), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2412), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_NONNULL] = ACTIONS(2412), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2412), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2412), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2412), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2412), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2412), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2412), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2412), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2412), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2412), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2412), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2412), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2412), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2412), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2412), + [anon_sym_MOZ_RAII] = ACTIONS(2412), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2412), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2412), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2412), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2412), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2412), + }, + [STATE(1004)] = { + [sym_identifier] = ACTIONS(4432), + [aux_sym_preproc_def_token1] = ACTIONS(4432), + [aux_sym_preproc_if_token1] = ACTIONS(4432), + [aux_sym_preproc_if_token2] = ACTIONS(4432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4432), + [aux_sym_preproc_else_token1] = ACTIONS(4432), + [aux_sym_preproc_elif_token1] = ACTIONS(4432), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4432), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4432), + [sym_preproc_directive] = ACTIONS(4432), + [anon_sym_LPAREN2] = ACTIONS(4434), + [anon_sym_TILDE] = ACTIONS(4434), + [anon_sym_STAR] = ACTIONS(4434), + [anon_sym_AMP_AMP] = ACTIONS(4434), + [anon_sym_AMP] = ACTIONS(4432), + [anon_sym_SEMI] = ACTIONS(4434), + [anon_sym___extension__] = ACTIONS(4432), + [anon_sym_typedef] = ACTIONS(4432), + [anon_sym_virtual] = ACTIONS(4432), + [anon_sym_extern] = ACTIONS(4432), + [anon_sym___attribute__] = ACTIONS(4432), + [anon_sym___attribute] = ACTIONS(4432), + [anon_sym_COLON_COLON] = ACTIONS(4434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4434), + [anon_sym___declspec] = ACTIONS(4432), + [anon_sym___based] = ACTIONS(4432), + [anon_sym_signed] = ACTIONS(4432), + [anon_sym_unsigned] = ACTIONS(4432), + [anon_sym_long] = ACTIONS(4432), + [anon_sym_short] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_static] = ACTIONS(4432), + [anon_sym_register] = ACTIONS(4432), + [anon_sym_inline] = ACTIONS(4432), + [anon_sym___inline] = ACTIONS(4432), + [anon_sym___inline__] = ACTIONS(4432), + [anon_sym___forceinline] = ACTIONS(4432), + [anon_sym_thread_local] = ACTIONS(4432), + [anon_sym___thread] = ACTIONS(4432), + [anon_sym_const] = ACTIONS(4432), + [anon_sym_constexpr] = ACTIONS(4432), + [anon_sym_volatile] = ACTIONS(4432), + [anon_sym_restrict] = ACTIONS(4432), + [anon_sym___restrict__] = ACTIONS(4432), + [anon_sym__Atomic] = ACTIONS(4432), + [anon_sym__Noreturn] = ACTIONS(4432), + [anon_sym_noreturn] = ACTIONS(4432), + [anon_sym__Nonnull] = ACTIONS(4432), + [anon_sym_mutable] = ACTIONS(4432), + [anon_sym_constinit] = ACTIONS(4432), + [anon_sym_consteval] = ACTIONS(4432), + [anon_sym_alignas] = ACTIONS(4432), + [anon_sym__Alignas] = ACTIONS(4432), + [sym_primitive_type] = ACTIONS(4432), + [anon_sym_enum] = ACTIONS(4432), + [anon_sym_class] = ACTIONS(4432), + [anon_sym_struct] = ACTIONS(4432), + [anon_sym_union] = ACTIONS(4432), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4432), + [anon_sym_decltype] = ACTIONS(4432), + [anon_sym_explicit] = ACTIONS(4432), + [anon_sym_typename] = ACTIONS(4432), + [anon_sym_template] = ACTIONS(4432), + [anon_sym_operator] = ACTIONS(4432), + [anon_sym_friend] = ACTIONS(4432), + [anon_sym_public] = ACTIONS(4432), + [anon_sym_private] = ACTIONS(4432), + [anon_sym_protected] = ACTIONS(4432), + [anon_sym_using] = ACTIONS(4432), + [anon_sym_static_assert] = ACTIONS(4432), + [sym_macro_statement] = ACTIONS(4432), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4432), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4432), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4432), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4432), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4432), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4432), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4432), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4432), + [anon_sym_MOZ_COLD] = ACTIONS(4432), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4432), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4432), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4432), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4432), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4432), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4432), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4432), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4432), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4432), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4432), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4432), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4432), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4432), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4432), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4432), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4432), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4432), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4432), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4432), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4432), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_NONNULL] = ACTIONS(4432), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4432), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4432), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4432), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4432), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4432), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_NORETURN] = ACTIONS(4432), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4432), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4432), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4432), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4432), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4432), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4432), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4432), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4432), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4432), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4432), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4432), + [anon_sym_MOZ_RAII] = ACTIONS(4432), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4432), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4432), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4432), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4432), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4432), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4432), + }, + [STATE(1005)] = { + [sym_identifier] = ACTIONS(4420), + [aux_sym_preproc_def_token1] = ACTIONS(4420), + [aux_sym_preproc_if_token1] = ACTIONS(4420), + [aux_sym_preproc_if_token2] = ACTIONS(4420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4420), + [aux_sym_preproc_else_token1] = ACTIONS(4420), + [aux_sym_preproc_elif_token1] = ACTIONS(4420), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4420), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4420), + [sym_preproc_directive] = ACTIONS(4420), + [anon_sym_LPAREN2] = ACTIONS(4422), + [anon_sym_TILDE] = ACTIONS(4422), + [anon_sym_STAR] = ACTIONS(4422), + [anon_sym_AMP_AMP] = ACTIONS(4422), + [anon_sym_AMP] = ACTIONS(4420), + [anon_sym_SEMI] = ACTIONS(4422), + [anon_sym___extension__] = ACTIONS(4420), + [anon_sym_typedef] = ACTIONS(4420), + [anon_sym_virtual] = ACTIONS(4420), + [anon_sym_extern] = ACTIONS(4420), + [anon_sym___attribute__] = ACTIONS(4420), + [anon_sym___attribute] = ACTIONS(4420), + [anon_sym_COLON_COLON] = ACTIONS(4422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4422), + [anon_sym___declspec] = ACTIONS(4420), + [anon_sym___based] = ACTIONS(4420), + [anon_sym_signed] = ACTIONS(4420), + [anon_sym_unsigned] = ACTIONS(4420), + [anon_sym_long] = ACTIONS(4420), + [anon_sym_short] = ACTIONS(4420), + [anon_sym_LBRACK] = ACTIONS(4420), + [anon_sym_static] = ACTIONS(4420), + [anon_sym_register] = ACTIONS(4420), + [anon_sym_inline] = ACTIONS(4420), + [anon_sym___inline] = ACTIONS(4420), + [anon_sym___inline__] = ACTIONS(4420), + [anon_sym___forceinline] = ACTIONS(4420), + [anon_sym_thread_local] = ACTIONS(4420), + [anon_sym___thread] = ACTIONS(4420), + [anon_sym_const] = ACTIONS(4420), + [anon_sym_constexpr] = ACTIONS(4420), + [anon_sym_volatile] = ACTIONS(4420), + [anon_sym_restrict] = ACTIONS(4420), + [anon_sym___restrict__] = ACTIONS(4420), + [anon_sym__Atomic] = ACTIONS(4420), + [anon_sym__Noreturn] = ACTIONS(4420), + [anon_sym_noreturn] = ACTIONS(4420), + [anon_sym__Nonnull] = ACTIONS(4420), + [anon_sym_mutable] = ACTIONS(4420), + [anon_sym_constinit] = ACTIONS(4420), + [anon_sym_consteval] = ACTIONS(4420), + [anon_sym_alignas] = ACTIONS(4420), + [anon_sym__Alignas] = ACTIONS(4420), + [sym_primitive_type] = ACTIONS(4420), + [anon_sym_enum] = ACTIONS(4420), + [anon_sym_class] = ACTIONS(4420), + [anon_sym_struct] = ACTIONS(4420), + [anon_sym_union] = ACTIONS(4420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4420), + [anon_sym_decltype] = ACTIONS(4420), + [anon_sym_explicit] = ACTIONS(4420), + [anon_sym_typename] = ACTIONS(4420), + [anon_sym_template] = ACTIONS(4420), + [anon_sym_operator] = ACTIONS(4420), + [anon_sym_friend] = ACTIONS(4420), + [anon_sym_public] = ACTIONS(4420), + [anon_sym_private] = ACTIONS(4420), + [anon_sym_protected] = ACTIONS(4420), + [anon_sym_using] = ACTIONS(4420), + [anon_sym_static_assert] = ACTIONS(4420), + [sym_macro_statement] = ACTIONS(4420), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4420), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4420), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4420), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4420), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4420), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4420), + [anon_sym_MOZ_COLD] = ACTIONS(4420), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4420), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4420), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4420), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4420), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4420), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4420), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4420), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4420), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4420), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4420), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4420), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4420), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4420), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4420), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4420), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4420), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4420), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4420), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_NONNULL] = ACTIONS(4420), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4420), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4420), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4420), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4420), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4420), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_NORETURN] = ACTIONS(4420), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4420), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4420), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4420), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4420), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4420), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4420), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4420), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4420), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4420), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4420), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4420), + [anon_sym_MOZ_RAII] = ACTIONS(4420), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4420), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4420), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4420), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4420), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4420), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4420), + }, + [STATE(1006)] = { + [sym_identifier] = ACTIONS(4424), + [aux_sym_preproc_def_token1] = ACTIONS(4424), + [aux_sym_preproc_if_token1] = ACTIONS(4424), + [aux_sym_preproc_if_token2] = ACTIONS(4424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4424), + [aux_sym_preproc_else_token1] = ACTIONS(4424), + [aux_sym_preproc_elif_token1] = ACTIONS(4424), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4424), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4424), + [sym_preproc_directive] = ACTIONS(4424), + [anon_sym_LPAREN2] = ACTIONS(4426), + [anon_sym_TILDE] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4426), + [anon_sym_AMP_AMP] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4424), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym___extension__] = ACTIONS(4424), + [anon_sym_typedef] = ACTIONS(4424), + [anon_sym_virtual] = ACTIONS(4424), + [anon_sym_extern] = ACTIONS(4424), + [anon_sym___attribute__] = ACTIONS(4424), + [anon_sym___attribute] = ACTIONS(4424), + [anon_sym_COLON_COLON] = ACTIONS(4426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4426), + [anon_sym___declspec] = ACTIONS(4424), + [anon_sym___based] = ACTIONS(4424), + [anon_sym_signed] = ACTIONS(4424), + [anon_sym_unsigned] = ACTIONS(4424), + [anon_sym_long] = ACTIONS(4424), + [anon_sym_short] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(4424), + [anon_sym_static] = ACTIONS(4424), + [anon_sym_register] = ACTIONS(4424), + [anon_sym_inline] = ACTIONS(4424), + [anon_sym___inline] = ACTIONS(4424), + [anon_sym___inline__] = ACTIONS(4424), + [anon_sym___forceinline] = ACTIONS(4424), + [anon_sym_thread_local] = ACTIONS(4424), + [anon_sym___thread] = ACTIONS(4424), + [anon_sym_const] = ACTIONS(4424), + [anon_sym_constexpr] = ACTIONS(4424), + [anon_sym_volatile] = ACTIONS(4424), + [anon_sym_restrict] = ACTIONS(4424), + [anon_sym___restrict__] = ACTIONS(4424), + [anon_sym__Atomic] = ACTIONS(4424), + [anon_sym__Noreturn] = ACTIONS(4424), + [anon_sym_noreturn] = ACTIONS(4424), + [anon_sym__Nonnull] = ACTIONS(4424), + [anon_sym_mutable] = ACTIONS(4424), + [anon_sym_constinit] = ACTIONS(4424), + [anon_sym_consteval] = ACTIONS(4424), + [anon_sym_alignas] = ACTIONS(4424), + [anon_sym__Alignas] = ACTIONS(4424), + [sym_primitive_type] = ACTIONS(4424), + [anon_sym_enum] = ACTIONS(4424), + [anon_sym_class] = ACTIONS(4424), + [anon_sym_struct] = ACTIONS(4424), + [anon_sym_union] = ACTIONS(4424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4424), + [anon_sym_decltype] = ACTIONS(4424), + [anon_sym_explicit] = ACTIONS(4424), + [anon_sym_typename] = ACTIONS(4424), + [anon_sym_template] = ACTIONS(4424), + [anon_sym_operator] = ACTIONS(4424), + [anon_sym_friend] = ACTIONS(4424), + [anon_sym_public] = ACTIONS(4424), + [anon_sym_private] = ACTIONS(4424), + [anon_sym_protected] = ACTIONS(4424), + [anon_sym_using] = ACTIONS(4424), + [anon_sym_static_assert] = ACTIONS(4424), + [sym_macro_statement] = ACTIONS(4424), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4424), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4424), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4424), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4424), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4424), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4424), + [anon_sym_MOZ_COLD] = ACTIONS(4424), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4424), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4424), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4424), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4424), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4424), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4424), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4424), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4424), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4424), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4424), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4424), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4424), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4424), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4424), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4424), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4424), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4424), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4424), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_NONNULL] = ACTIONS(4424), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4424), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4424), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4424), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4424), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4424), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_NORETURN] = ACTIONS(4424), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4424), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4424), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4424), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4424), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4424), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4424), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4424), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4424), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4424), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4424), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4424), + [anon_sym_MOZ_RAII] = ACTIONS(4424), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4424), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4424), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4424), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4424), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4424), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4424), + }, + [STATE(1007)] = { + [sym_identifier] = ACTIONS(4436), + [aux_sym_preproc_def_token1] = ACTIONS(4436), + [aux_sym_preproc_if_token1] = ACTIONS(4436), + [aux_sym_preproc_if_token2] = ACTIONS(4436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4436), + [aux_sym_preproc_else_token1] = ACTIONS(4436), + [aux_sym_preproc_elif_token1] = ACTIONS(4436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4436), + [sym_preproc_directive] = ACTIONS(4436), + [anon_sym_LPAREN2] = ACTIONS(4438), + [anon_sym_TILDE] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4438), + [anon_sym_AMP_AMP] = ACTIONS(4438), + [anon_sym_AMP] = ACTIONS(4436), + [anon_sym_SEMI] = ACTIONS(4438), + [anon_sym___extension__] = ACTIONS(4436), + [anon_sym_typedef] = ACTIONS(4436), + [anon_sym_virtual] = ACTIONS(4436), + [anon_sym_extern] = ACTIONS(4436), + [anon_sym___attribute__] = ACTIONS(4436), + [anon_sym___attribute] = ACTIONS(4436), + [anon_sym_COLON_COLON] = ACTIONS(4438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4438), + [anon_sym___declspec] = ACTIONS(4436), + [anon_sym___based] = ACTIONS(4436), + [anon_sym_signed] = ACTIONS(4436), + [anon_sym_unsigned] = ACTIONS(4436), + [anon_sym_long] = ACTIONS(4436), + [anon_sym_short] = ACTIONS(4436), + [anon_sym_LBRACK] = ACTIONS(4436), + [anon_sym_static] = ACTIONS(4436), + [anon_sym_register] = ACTIONS(4436), + [anon_sym_inline] = ACTIONS(4436), + [anon_sym___inline] = ACTIONS(4436), + [anon_sym___inline__] = ACTIONS(4436), + [anon_sym___forceinline] = ACTIONS(4436), + [anon_sym_thread_local] = ACTIONS(4436), + [anon_sym___thread] = ACTIONS(4436), + [anon_sym_const] = ACTIONS(4436), + [anon_sym_constexpr] = ACTIONS(4436), + [anon_sym_volatile] = ACTIONS(4436), + [anon_sym_restrict] = ACTIONS(4436), + [anon_sym___restrict__] = ACTIONS(4436), + [anon_sym__Atomic] = ACTIONS(4436), + [anon_sym__Noreturn] = ACTIONS(4436), + [anon_sym_noreturn] = ACTIONS(4436), + [anon_sym__Nonnull] = ACTIONS(4436), + [anon_sym_mutable] = ACTIONS(4436), + [anon_sym_constinit] = ACTIONS(4436), + [anon_sym_consteval] = ACTIONS(4436), + [anon_sym_alignas] = ACTIONS(4436), + [anon_sym__Alignas] = ACTIONS(4436), + [sym_primitive_type] = ACTIONS(4436), + [anon_sym_enum] = ACTIONS(4436), + [anon_sym_class] = ACTIONS(4436), + [anon_sym_struct] = ACTIONS(4436), + [anon_sym_union] = ACTIONS(4436), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4436), + [anon_sym_decltype] = ACTIONS(4436), + [anon_sym_explicit] = ACTIONS(4436), + [anon_sym_typename] = ACTIONS(4436), + [anon_sym_template] = ACTIONS(4436), + [anon_sym_operator] = ACTIONS(4436), + [anon_sym_friend] = ACTIONS(4436), + [anon_sym_public] = ACTIONS(4436), + [anon_sym_private] = ACTIONS(4436), + [anon_sym_protected] = ACTIONS(4436), + [anon_sym_using] = ACTIONS(4436), + [anon_sym_static_assert] = ACTIONS(4436), + [sym_macro_statement] = ACTIONS(4436), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4436), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4436), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4436), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4436), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4436), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4436), + [anon_sym_MOZ_COLD] = ACTIONS(4436), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4436), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4436), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4436), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4436), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4436), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4436), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4436), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4436), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4436), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4436), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4436), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4436), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4436), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4436), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4436), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4436), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4436), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4436), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_NONNULL] = ACTIONS(4436), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4436), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4436), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4436), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4436), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4436), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_NORETURN] = ACTIONS(4436), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4436), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4436), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4436), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4436), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4436), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4436), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4436), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4436), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4436), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4436), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4436), + [anon_sym_MOZ_RAII] = ACTIONS(4436), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4436), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4436), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4436), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4436), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4436), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4436), + }, + [STATE(1008)] = { + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token2] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [aux_sym_preproc_else_token1] = ACTIONS(2428), + [aux_sym_preproc_elif_token1] = ACTIONS(2428), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2428), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_virtual] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_COLON_COLON] = ACTIONS(2430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___based] = ACTIONS(2428), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_mutable] = ACTIONS(2428), + [anon_sym_constinit] = ACTIONS(2428), + [anon_sym_consteval] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_class] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2428), + [anon_sym_decltype] = ACTIONS(2428), + [anon_sym_explicit] = ACTIONS(2428), + [anon_sym_typename] = ACTIONS(2428), + [anon_sym_template] = ACTIONS(2428), + [anon_sym_operator] = ACTIONS(2428), + [anon_sym_friend] = ACTIONS(2428), + [anon_sym_public] = ACTIONS(2428), + [anon_sym_private] = ACTIONS(2428), + [anon_sym_protected] = ACTIONS(2428), + [anon_sym_using] = ACTIONS(2428), + [anon_sym_static_assert] = ACTIONS(2428), + [sym_macro_statement] = ACTIONS(2428), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2428), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2428), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2428), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2428), + [anon_sym_MOZ_COLD] = ACTIONS(2428), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2428), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2428), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2428), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2428), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2428), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2428), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2428), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2428), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2428), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2428), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2428), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2428), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2428), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_NONNULL] = ACTIONS(2428), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2428), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2428), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2428), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2428), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2428), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2428), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2428), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2428), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2428), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2428), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2428), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2428), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2428), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2428), + [anon_sym_MOZ_RAII] = ACTIONS(2428), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2428), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2428), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2428), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2428), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2428), + }, + [STATE(1009)] = { + [sym_identifier] = ACTIONS(4440), + [aux_sym_preproc_def_token1] = ACTIONS(4440), + [aux_sym_preproc_if_token1] = ACTIONS(4440), + [aux_sym_preproc_if_token2] = ACTIONS(4440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4440), + [aux_sym_preproc_else_token1] = ACTIONS(4440), + [aux_sym_preproc_elif_token1] = ACTIONS(4440), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4440), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4440), + [sym_preproc_directive] = ACTIONS(4440), + [anon_sym_LPAREN2] = ACTIONS(4442), + [anon_sym_TILDE] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [anon_sym_AMP_AMP] = ACTIONS(4442), + [anon_sym_AMP] = ACTIONS(4440), + [anon_sym_SEMI] = ACTIONS(4442), + [anon_sym___extension__] = ACTIONS(4440), + [anon_sym_typedef] = ACTIONS(4440), + [anon_sym_virtual] = ACTIONS(4440), + [anon_sym_extern] = ACTIONS(4440), + [anon_sym___attribute__] = ACTIONS(4440), + [anon_sym___attribute] = ACTIONS(4440), + [anon_sym_COLON_COLON] = ACTIONS(4442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4442), + [anon_sym___declspec] = ACTIONS(4440), + [anon_sym___based] = ACTIONS(4440), + [anon_sym_signed] = ACTIONS(4440), + [anon_sym_unsigned] = ACTIONS(4440), + [anon_sym_long] = ACTIONS(4440), + [anon_sym_short] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_static] = ACTIONS(4440), + [anon_sym_register] = ACTIONS(4440), + [anon_sym_inline] = ACTIONS(4440), + [anon_sym___inline] = ACTIONS(4440), + [anon_sym___inline__] = ACTIONS(4440), + [anon_sym___forceinline] = ACTIONS(4440), + [anon_sym_thread_local] = ACTIONS(4440), + [anon_sym___thread] = ACTIONS(4440), + [anon_sym_const] = ACTIONS(4440), + [anon_sym_constexpr] = ACTIONS(4440), + [anon_sym_volatile] = ACTIONS(4440), + [anon_sym_restrict] = ACTIONS(4440), + [anon_sym___restrict__] = ACTIONS(4440), + [anon_sym__Atomic] = ACTIONS(4440), + [anon_sym__Noreturn] = ACTIONS(4440), + [anon_sym_noreturn] = ACTIONS(4440), + [anon_sym__Nonnull] = ACTIONS(4440), + [anon_sym_mutable] = ACTIONS(4440), + [anon_sym_constinit] = ACTIONS(4440), + [anon_sym_consteval] = ACTIONS(4440), + [anon_sym_alignas] = ACTIONS(4440), + [anon_sym__Alignas] = ACTIONS(4440), + [sym_primitive_type] = ACTIONS(4440), + [anon_sym_enum] = ACTIONS(4440), + [anon_sym_class] = ACTIONS(4440), + [anon_sym_struct] = ACTIONS(4440), + [anon_sym_union] = ACTIONS(4440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4440), + [anon_sym_decltype] = ACTIONS(4440), + [anon_sym_explicit] = ACTIONS(4440), + [anon_sym_typename] = ACTIONS(4440), + [anon_sym_template] = ACTIONS(4440), + [anon_sym_operator] = ACTIONS(4440), + [anon_sym_friend] = ACTIONS(4440), + [anon_sym_public] = ACTIONS(4440), + [anon_sym_private] = ACTIONS(4440), + [anon_sym_protected] = ACTIONS(4440), + [anon_sym_using] = ACTIONS(4440), + [anon_sym_static_assert] = ACTIONS(4440), + [sym_macro_statement] = ACTIONS(4440), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4440), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4440), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4440), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4440), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4440), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4440), + [anon_sym_MOZ_COLD] = ACTIONS(4440), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4440), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4440), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4440), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4440), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4440), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4440), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4440), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4440), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4440), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4440), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4440), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4440), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4440), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4440), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4440), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4440), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4440), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4440), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_NONNULL] = ACTIONS(4440), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4440), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4440), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4440), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4440), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4440), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_NORETURN] = ACTIONS(4440), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4440), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4440), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4440), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4440), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4440), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4440), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4440), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4440), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4440), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4440), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4440), + [anon_sym_MOZ_RAII] = ACTIONS(4440), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4440), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4440), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4440), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4440), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4440), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4440), + }, + [STATE(1010)] = { + [sym_identifier] = ACTIONS(4444), + [aux_sym_preproc_def_token1] = ACTIONS(4444), + [aux_sym_preproc_if_token1] = ACTIONS(4444), + [aux_sym_preproc_if_token2] = ACTIONS(4444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4444), + [aux_sym_preproc_else_token1] = ACTIONS(4444), + [aux_sym_preproc_elif_token1] = ACTIONS(4444), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4444), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4444), + [sym_preproc_directive] = ACTIONS(4444), + [anon_sym_LPAREN2] = ACTIONS(4446), + [anon_sym_TILDE] = ACTIONS(4446), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_AMP_AMP] = ACTIONS(4446), + [anon_sym_AMP] = ACTIONS(4444), + [anon_sym_SEMI] = ACTIONS(4446), + [anon_sym___extension__] = ACTIONS(4444), + [anon_sym_typedef] = ACTIONS(4444), + [anon_sym_virtual] = ACTIONS(4444), + [anon_sym_extern] = ACTIONS(4444), + [anon_sym___attribute__] = ACTIONS(4444), + [anon_sym___attribute] = ACTIONS(4444), + [anon_sym_COLON_COLON] = ACTIONS(4446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4446), + [anon_sym___declspec] = ACTIONS(4444), + [anon_sym___based] = ACTIONS(4444), + [anon_sym_signed] = ACTIONS(4444), + [anon_sym_unsigned] = ACTIONS(4444), + [anon_sym_long] = ACTIONS(4444), + [anon_sym_short] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_static] = ACTIONS(4444), + [anon_sym_register] = ACTIONS(4444), + [anon_sym_inline] = ACTIONS(4444), + [anon_sym___inline] = ACTIONS(4444), + [anon_sym___inline__] = ACTIONS(4444), + [anon_sym___forceinline] = ACTIONS(4444), + [anon_sym_thread_local] = ACTIONS(4444), + [anon_sym___thread] = ACTIONS(4444), + [anon_sym_const] = ACTIONS(4444), + [anon_sym_constexpr] = ACTIONS(4444), + [anon_sym_volatile] = ACTIONS(4444), + [anon_sym_restrict] = ACTIONS(4444), + [anon_sym___restrict__] = ACTIONS(4444), + [anon_sym__Atomic] = ACTIONS(4444), + [anon_sym__Noreturn] = ACTIONS(4444), + [anon_sym_noreturn] = ACTIONS(4444), + [anon_sym__Nonnull] = ACTIONS(4444), + [anon_sym_mutable] = ACTIONS(4444), + [anon_sym_constinit] = ACTIONS(4444), + [anon_sym_consteval] = ACTIONS(4444), + [anon_sym_alignas] = ACTIONS(4444), + [anon_sym__Alignas] = ACTIONS(4444), + [sym_primitive_type] = ACTIONS(4444), + [anon_sym_enum] = ACTIONS(4444), + [anon_sym_class] = ACTIONS(4444), + [anon_sym_struct] = ACTIONS(4444), + [anon_sym_union] = ACTIONS(4444), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4444), + [anon_sym_decltype] = ACTIONS(4444), + [anon_sym_explicit] = ACTIONS(4444), + [anon_sym_typename] = ACTIONS(4444), + [anon_sym_template] = ACTIONS(4444), + [anon_sym_operator] = ACTIONS(4444), + [anon_sym_friend] = ACTIONS(4444), + [anon_sym_public] = ACTIONS(4444), + [anon_sym_private] = ACTIONS(4444), + [anon_sym_protected] = ACTIONS(4444), + [anon_sym_using] = ACTIONS(4444), + [anon_sym_static_assert] = ACTIONS(4444), + [sym_macro_statement] = ACTIONS(4444), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4444), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4444), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4444), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4444), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4444), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4444), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4444), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4444), + [anon_sym_MOZ_COLD] = ACTIONS(4444), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4444), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4444), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4444), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4444), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4444), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4444), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4444), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4444), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4444), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4444), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4444), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4444), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4444), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4444), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4444), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4444), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4444), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4444), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4444), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4444), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_NONNULL] = ACTIONS(4444), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4444), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4444), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4444), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4444), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4444), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_NORETURN] = ACTIONS(4444), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4444), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4444), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4444), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4444), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4444), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4444), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4444), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4444), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4444), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4444), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4444), + [anon_sym_MOZ_RAII] = ACTIONS(4444), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4444), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4444), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4444), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4444), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4444), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4444), + }, + [STATE(1011)] = { + [sym_identifier] = ACTIONS(2291), + [aux_sym_preproc_def_token1] = ACTIONS(2291), + [aux_sym_preproc_if_token1] = ACTIONS(2291), + [aux_sym_preproc_if_token2] = ACTIONS(2291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2291), + [aux_sym_preproc_else_token1] = ACTIONS(2291), + [aux_sym_preproc_elif_token1] = ACTIONS(2291), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2291), + [sym_preproc_directive] = ACTIONS(2291), + [anon_sym_LPAREN2] = ACTIONS(2293), + [anon_sym_TILDE] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(2293), + [anon_sym_AMP_AMP] = ACTIONS(2293), + [anon_sym_AMP] = ACTIONS(2291), + [anon_sym_SEMI] = ACTIONS(2293), + [anon_sym___extension__] = ACTIONS(2291), + [anon_sym_typedef] = ACTIONS(2291), + [anon_sym_virtual] = ACTIONS(2291), + [anon_sym_extern] = ACTIONS(2291), + [anon_sym___attribute__] = ACTIONS(2291), + [anon_sym___attribute] = ACTIONS(2291), + [anon_sym_COLON_COLON] = ACTIONS(2293), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2293), + [anon_sym___declspec] = ACTIONS(2291), + [anon_sym___based] = ACTIONS(2291), + [anon_sym_signed] = ACTIONS(2291), + [anon_sym_unsigned] = ACTIONS(2291), + [anon_sym_long] = ACTIONS(2291), + [anon_sym_short] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_static] = ACTIONS(2291), + [anon_sym_register] = ACTIONS(2291), + [anon_sym_inline] = ACTIONS(2291), + [anon_sym___inline] = ACTIONS(2291), + [anon_sym___inline__] = ACTIONS(2291), + [anon_sym___forceinline] = ACTIONS(2291), + [anon_sym_thread_local] = ACTIONS(2291), + [anon_sym___thread] = ACTIONS(2291), + [anon_sym_const] = ACTIONS(2291), + [anon_sym_constexpr] = ACTIONS(2291), + [anon_sym_volatile] = ACTIONS(2291), + [anon_sym_restrict] = ACTIONS(2291), + [anon_sym___restrict__] = ACTIONS(2291), + [anon_sym__Atomic] = ACTIONS(2291), + [anon_sym__Noreturn] = ACTIONS(2291), + [anon_sym_noreturn] = ACTIONS(2291), + [anon_sym__Nonnull] = ACTIONS(2291), + [anon_sym_mutable] = ACTIONS(2291), + [anon_sym_constinit] = ACTIONS(2291), + [anon_sym_consteval] = ACTIONS(2291), + [anon_sym_alignas] = ACTIONS(2291), + [anon_sym__Alignas] = ACTIONS(2291), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_enum] = ACTIONS(2291), + [anon_sym_class] = ACTIONS(2291), + [anon_sym_struct] = ACTIONS(2291), + [anon_sym_union] = ACTIONS(2291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2291), + [anon_sym_decltype] = ACTIONS(2291), + [anon_sym_explicit] = ACTIONS(2291), + [anon_sym_typename] = ACTIONS(2291), + [anon_sym_template] = ACTIONS(2291), + [anon_sym_operator] = ACTIONS(2291), + [anon_sym_friend] = ACTIONS(2291), + [anon_sym_public] = ACTIONS(2291), + [anon_sym_private] = ACTIONS(2291), + [anon_sym_protected] = ACTIONS(2291), + [anon_sym_using] = ACTIONS(2291), + [anon_sym_static_assert] = ACTIONS(2291), + [sym_macro_statement] = ACTIONS(2291), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2291), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2291), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2291), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2291), + [anon_sym_MOZ_COLD] = ACTIONS(2291), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2291), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2291), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2291), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2291), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2291), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2291), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2291), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2291), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2291), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2291), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2291), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2291), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2291), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_NONNULL] = ACTIONS(2291), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2291), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2291), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2291), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2291), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2291), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2291), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2291), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2291), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2291), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2291), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2291), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2291), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2291), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2291), + [anon_sym_MOZ_RAII] = ACTIONS(2291), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2291), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2291), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2291), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2291), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2291), + }, + [STATE(1012)] = { + [sym_identifier] = ACTIONS(4448), + [aux_sym_preproc_def_token1] = ACTIONS(4448), + [aux_sym_preproc_if_token1] = ACTIONS(4448), + [aux_sym_preproc_if_token2] = ACTIONS(4448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4448), + [aux_sym_preproc_else_token1] = ACTIONS(4448), + [aux_sym_preproc_elif_token1] = ACTIONS(4448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4448), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4448), + [sym_preproc_directive] = ACTIONS(4448), + [anon_sym_LPAREN2] = ACTIONS(4450), + [anon_sym_TILDE] = ACTIONS(4450), + [anon_sym_STAR] = ACTIONS(4450), + [anon_sym_AMP_AMP] = ACTIONS(4450), + [anon_sym_AMP] = ACTIONS(4448), + [anon_sym_SEMI] = ACTIONS(4450), + [anon_sym___extension__] = ACTIONS(4448), + [anon_sym_typedef] = ACTIONS(4448), + [anon_sym_virtual] = ACTIONS(4448), + [anon_sym_extern] = ACTIONS(4448), + [anon_sym___attribute__] = ACTIONS(4448), + [anon_sym___attribute] = ACTIONS(4448), + [anon_sym_COLON_COLON] = ACTIONS(4450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4450), + [anon_sym___declspec] = ACTIONS(4448), + [anon_sym___based] = ACTIONS(4448), + [anon_sym_signed] = ACTIONS(4448), + [anon_sym_unsigned] = ACTIONS(4448), + [anon_sym_long] = ACTIONS(4448), + [anon_sym_short] = ACTIONS(4448), + [anon_sym_LBRACK] = ACTIONS(4448), + [anon_sym_static] = ACTIONS(4448), + [anon_sym_register] = ACTIONS(4448), + [anon_sym_inline] = ACTIONS(4448), + [anon_sym___inline] = ACTIONS(4448), + [anon_sym___inline__] = ACTIONS(4448), + [anon_sym___forceinline] = ACTIONS(4448), + [anon_sym_thread_local] = ACTIONS(4448), + [anon_sym___thread] = ACTIONS(4448), + [anon_sym_const] = ACTIONS(4448), + [anon_sym_constexpr] = ACTIONS(4448), + [anon_sym_volatile] = ACTIONS(4448), + [anon_sym_restrict] = ACTIONS(4448), + [anon_sym___restrict__] = ACTIONS(4448), + [anon_sym__Atomic] = ACTIONS(4448), + [anon_sym__Noreturn] = ACTIONS(4448), + [anon_sym_noreturn] = ACTIONS(4448), + [anon_sym__Nonnull] = ACTIONS(4448), + [anon_sym_mutable] = ACTIONS(4448), + [anon_sym_constinit] = ACTIONS(4448), + [anon_sym_consteval] = ACTIONS(4448), + [anon_sym_alignas] = ACTIONS(4448), + [anon_sym__Alignas] = ACTIONS(4448), + [sym_primitive_type] = ACTIONS(4448), + [anon_sym_enum] = ACTIONS(4448), + [anon_sym_class] = ACTIONS(4448), + [anon_sym_struct] = ACTIONS(4448), + [anon_sym_union] = ACTIONS(4448), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4448), + [anon_sym_decltype] = ACTIONS(4448), + [anon_sym_explicit] = ACTIONS(4448), + [anon_sym_typename] = ACTIONS(4448), + [anon_sym_template] = ACTIONS(4448), + [anon_sym_operator] = ACTIONS(4448), + [anon_sym_friend] = ACTIONS(4448), + [anon_sym_public] = ACTIONS(4448), + [anon_sym_private] = ACTIONS(4448), + [anon_sym_protected] = ACTIONS(4448), + [anon_sym_using] = ACTIONS(4448), + [anon_sym_static_assert] = ACTIONS(4448), + [sym_macro_statement] = ACTIONS(4448), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4448), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4448), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4448), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4448), + [anon_sym_MOZ_COLD] = ACTIONS(4448), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4448), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4448), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4448), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4448), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4448), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4448), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4448), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4448), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4448), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4448), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4448), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4448), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4448), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_NONNULL] = ACTIONS(4448), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4448), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4448), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4448), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4448), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4448), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4448), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4448), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4448), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4448), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4448), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4448), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4448), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4448), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4448), + [anon_sym_MOZ_RAII] = ACTIONS(4448), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4448), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4448), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4448), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4448), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4448), + }, + [STATE(1013)] = { + [sym_identifier] = ACTIONS(4452), + [aux_sym_preproc_def_token1] = ACTIONS(4452), + [aux_sym_preproc_if_token1] = ACTIONS(4452), + [aux_sym_preproc_if_token2] = ACTIONS(4452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4452), + [aux_sym_preproc_else_token1] = ACTIONS(4452), + [aux_sym_preproc_elif_token1] = ACTIONS(4452), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4452), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4452), + [sym_preproc_directive] = ACTIONS(4452), + [anon_sym_LPAREN2] = ACTIONS(4454), + [anon_sym_TILDE] = ACTIONS(4454), + [anon_sym_STAR] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym___extension__] = ACTIONS(4452), + [anon_sym_typedef] = ACTIONS(4452), + [anon_sym_virtual] = ACTIONS(4452), + [anon_sym_extern] = ACTIONS(4452), + [anon_sym___attribute__] = ACTIONS(4452), + [anon_sym___attribute] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4454), + [anon_sym___declspec] = ACTIONS(4452), + [anon_sym___based] = ACTIONS(4452), + [anon_sym_signed] = ACTIONS(4452), + [anon_sym_unsigned] = ACTIONS(4452), + [anon_sym_long] = ACTIONS(4452), + [anon_sym_short] = ACTIONS(4452), + [anon_sym_LBRACK] = ACTIONS(4452), + [anon_sym_static] = ACTIONS(4452), + [anon_sym_register] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym___inline] = ACTIONS(4452), + [anon_sym___inline__] = ACTIONS(4452), + [anon_sym___forceinline] = ACTIONS(4452), + [anon_sym_thread_local] = ACTIONS(4452), + [anon_sym___thread] = ACTIONS(4452), + [anon_sym_const] = ACTIONS(4452), + [anon_sym_constexpr] = ACTIONS(4452), + [anon_sym_volatile] = ACTIONS(4452), + [anon_sym_restrict] = ACTIONS(4452), + [anon_sym___restrict__] = ACTIONS(4452), + [anon_sym__Atomic] = ACTIONS(4452), + [anon_sym__Noreturn] = ACTIONS(4452), + [anon_sym_noreturn] = ACTIONS(4452), + [anon_sym__Nonnull] = ACTIONS(4452), + [anon_sym_mutable] = ACTIONS(4452), + [anon_sym_constinit] = ACTIONS(4452), + [anon_sym_consteval] = ACTIONS(4452), + [anon_sym_alignas] = ACTIONS(4452), + [anon_sym__Alignas] = ACTIONS(4452), + [sym_primitive_type] = ACTIONS(4452), + [anon_sym_enum] = ACTIONS(4452), + [anon_sym_class] = ACTIONS(4452), + [anon_sym_struct] = ACTIONS(4452), + [anon_sym_union] = ACTIONS(4452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4452), + [anon_sym_decltype] = ACTIONS(4452), + [anon_sym_explicit] = ACTIONS(4452), + [anon_sym_typename] = ACTIONS(4452), + [anon_sym_template] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_friend] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_using] = ACTIONS(4452), + [anon_sym_static_assert] = ACTIONS(4452), + [sym_macro_statement] = ACTIONS(4452), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4452), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4452), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4452), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4452), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4452), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4452), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4452), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4452), + [anon_sym_MOZ_COLD] = ACTIONS(4452), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4452), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4452), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4452), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4452), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4452), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4452), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4452), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4452), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4452), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4452), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4452), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4452), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4452), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4452), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4452), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4452), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4452), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4452), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4452), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4452), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_NONNULL] = ACTIONS(4452), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4452), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4452), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4452), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4452), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4452), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_NORETURN] = ACTIONS(4452), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4452), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4452), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4452), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4452), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4452), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4452), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4452), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4452), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4452), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4452), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4452), + [anon_sym_MOZ_RAII] = ACTIONS(4452), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4452), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4452), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4452), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4452), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4452), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4452), + }, + [STATE(1014)] = { + [sym_identifier] = ACTIONS(4448), + [aux_sym_preproc_def_token1] = ACTIONS(4448), + [aux_sym_preproc_if_token1] = ACTIONS(4448), + [aux_sym_preproc_if_token2] = ACTIONS(4448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4448), + [aux_sym_preproc_else_token1] = ACTIONS(4448), + [aux_sym_preproc_elif_token1] = ACTIONS(4448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4448), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4448), + [sym_preproc_directive] = ACTIONS(4448), + [anon_sym_LPAREN2] = ACTIONS(4450), + [anon_sym_TILDE] = ACTIONS(4450), + [anon_sym_STAR] = ACTIONS(4450), + [anon_sym_AMP_AMP] = ACTIONS(4450), + [anon_sym_AMP] = ACTIONS(4448), + [anon_sym_SEMI] = ACTIONS(4450), + [anon_sym___extension__] = ACTIONS(4448), + [anon_sym_typedef] = ACTIONS(4448), + [anon_sym_virtual] = ACTIONS(4448), + [anon_sym_extern] = ACTIONS(4448), + [anon_sym___attribute__] = ACTIONS(4448), + [anon_sym___attribute] = ACTIONS(4448), + [anon_sym_COLON_COLON] = ACTIONS(4450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4450), + [anon_sym___declspec] = ACTIONS(4448), + [anon_sym___based] = ACTIONS(4448), + [anon_sym_signed] = ACTIONS(4448), + [anon_sym_unsigned] = ACTIONS(4448), + [anon_sym_long] = ACTIONS(4448), + [anon_sym_short] = ACTIONS(4448), + [anon_sym_LBRACK] = ACTIONS(4448), + [anon_sym_static] = ACTIONS(4448), + [anon_sym_register] = ACTIONS(4448), + [anon_sym_inline] = ACTIONS(4448), + [anon_sym___inline] = ACTIONS(4448), + [anon_sym___inline__] = ACTIONS(4448), + [anon_sym___forceinline] = ACTIONS(4448), + [anon_sym_thread_local] = ACTIONS(4448), + [anon_sym___thread] = ACTIONS(4448), + [anon_sym_const] = ACTIONS(4448), + [anon_sym_constexpr] = ACTIONS(4448), + [anon_sym_volatile] = ACTIONS(4448), + [anon_sym_restrict] = ACTIONS(4448), + [anon_sym___restrict__] = ACTIONS(4448), + [anon_sym__Atomic] = ACTIONS(4448), + [anon_sym__Noreturn] = ACTIONS(4448), + [anon_sym_noreturn] = ACTIONS(4448), + [anon_sym__Nonnull] = ACTIONS(4448), + [anon_sym_mutable] = ACTIONS(4448), + [anon_sym_constinit] = ACTIONS(4448), + [anon_sym_consteval] = ACTIONS(4448), + [anon_sym_alignas] = ACTIONS(4448), + [anon_sym__Alignas] = ACTIONS(4448), + [sym_primitive_type] = ACTIONS(4448), + [anon_sym_enum] = ACTIONS(4448), + [anon_sym_class] = ACTIONS(4448), + [anon_sym_struct] = ACTIONS(4448), + [anon_sym_union] = ACTIONS(4448), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4448), + [anon_sym_decltype] = ACTIONS(4448), + [anon_sym_explicit] = ACTIONS(4448), + [anon_sym_typename] = ACTIONS(4448), + [anon_sym_template] = ACTIONS(4448), + [anon_sym_operator] = ACTIONS(4448), + [anon_sym_friend] = ACTIONS(4448), + [anon_sym_public] = ACTIONS(4448), + [anon_sym_private] = ACTIONS(4448), + [anon_sym_protected] = ACTIONS(4448), + [anon_sym_using] = ACTIONS(4448), + [anon_sym_static_assert] = ACTIONS(4448), + [sym_macro_statement] = ACTIONS(4448), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4448), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4448), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4448), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4448), + [anon_sym_MOZ_COLD] = ACTIONS(4448), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4448), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4448), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4448), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4448), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4448), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4448), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4448), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4448), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4448), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4448), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4448), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4448), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4448), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_NONNULL] = ACTIONS(4448), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4448), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4448), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4448), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4448), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4448), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4448), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4448), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4448), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4448), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4448), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4448), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4448), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4448), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4448), + [anon_sym_MOZ_RAII] = ACTIONS(4448), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4448), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4448), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4448), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4448), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4448), + }, + [STATE(1015)] = { + [sym_identifier] = ACTIONS(2182), + [aux_sym_preproc_def_token1] = ACTIONS(2182), + [aux_sym_preproc_if_token1] = ACTIONS(2182), + [aux_sym_preproc_if_token2] = ACTIONS(2182), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2182), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2182), + [aux_sym_preproc_else_token1] = ACTIONS(2182), + [aux_sym_preproc_elif_token1] = ACTIONS(2182), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2182), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2182), + [sym_preproc_directive] = ACTIONS(2182), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym___extension__] = ACTIONS(2182), + [anon_sym_typedef] = ACTIONS(2182), + [anon_sym_virtual] = ACTIONS(2182), + [anon_sym_extern] = ACTIONS(2182), + [anon_sym___attribute__] = ACTIONS(2182), + [anon_sym___attribute] = ACTIONS(2182), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2182), + [anon_sym___based] = ACTIONS(2182), + [anon_sym_signed] = ACTIONS(2182), + [anon_sym_unsigned] = ACTIONS(2182), + [anon_sym_long] = ACTIONS(2182), + [anon_sym_short] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_register] = ACTIONS(2182), + [anon_sym_inline] = ACTIONS(2182), + [anon_sym___inline] = ACTIONS(2182), + [anon_sym___inline__] = ACTIONS(2182), + [anon_sym___forceinline] = ACTIONS(2182), + [anon_sym_thread_local] = ACTIONS(2182), + [anon_sym___thread] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_constexpr] = ACTIONS(2182), + [anon_sym_volatile] = ACTIONS(2182), + [anon_sym_restrict] = ACTIONS(2182), + [anon_sym___restrict__] = ACTIONS(2182), + [anon_sym__Atomic] = ACTIONS(2182), + [anon_sym__Noreturn] = ACTIONS(2182), + [anon_sym_noreturn] = ACTIONS(2182), + [anon_sym__Nonnull] = ACTIONS(2182), + [anon_sym_mutable] = ACTIONS(2182), + [anon_sym_constinit] = ACTIONS(2182), + [anon_sym_consteval] = ACTIONS(2182), + [anon_sym_alignas] = ACTIONS(2182), + [anon_sym__Alignas] = ACTIONS(2182), + [sym_primitive_type] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), + [anon_sym_class] = ACTIONS(2182), + [anon_sym_struct] = ACTIONS(2182), + [anon_sym_union] = ACTIONS(2182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2182), + [anon_sym_decltype] = ACTIONS(2182), + [anon_sym_explicit] = ACTIONS(2182), + [anon_sym_typename] = ACTIONS(2182), + [anon_sym_template] = ACTIONS(2182), + [anon_sym_operator] = ACTIONS(2182), + [anon_sym_friend] = ACTIONS(2182), + [anon_sym_public] = ACTIONS(2182), + [anon_sym_private] = ACTIONS(2182), + [anon_sym_protected] = ACTIONS(2182), + [anon_sym_using] = ACTIONS(2182), + [anon_sym_static_assert] = ACTIONS(2182), + [sym_macro_statement] = ACTIONS(2182), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2182), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2182), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2182), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2182), + [anon_sym_MOZ_COLD] = ACTIONS(2182), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2182), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2182), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2182), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2182), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2182), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2182), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2182), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2182), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2182), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2182), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2182), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2182), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2182), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_NONNULL] = ACTIONS(2182), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2182), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2182), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2182), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2182), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2182), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2182), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2182), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2182), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2182), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2182), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2182), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2182), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2182), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2182), + [anon_sym_MOZ_RAII] = ACTIONS(2182), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2182), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2182), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2182), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2182), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2182), + }, + [STATE(1016)] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token2] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [aux_sym_preproc_else_token1] = ACTIONS(2186), + [aux_sym_preproc_elif_token1] = ACTIONS(2186), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_STAR] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym___attribute] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2188), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym__Nonnull] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym__Alignas] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_friend] = ACTIONS(2186), + [anon_sym_public] = ACTIONS(2186), + [anon_sym_private] = ACTIONS(2186), + [anon_sym_protected] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [sym_macro_statement] = ACTIONS(2186), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2186), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2186), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2186), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2186), + [anon_sym_MOZ_COLD] = ACTIONS(2186), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2186), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2186), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2186), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2186), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2186), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2186), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2186), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2186), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2186), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2186), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2186), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2186), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2186), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_NONNULL] = ACTIONS(2186), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2186), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2186), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2186), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2186), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2186), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2186), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2186), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2186), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2186), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2186), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2186), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2186), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2186), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2186), + [anon_sym_MOZ_RAII] = ACTIONS(2186), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2186), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2186), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2186), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2186), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2186), + }, + [STATE(1017)] = { + [sym_identifier] = ACTIONS(4452), + [aux_sym_preproc_def_token1] = ACTIONS(4452), + [aux_sym_preproc_if_token1] = ACTIONS(4452), + [aux_sym_preproc_if_token2] = ACTIONS(4452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4452), + [aux_sym_preproc_else_token1] = ACTIONS(4452), + [aux_sym_preproc_elif_token1] = ACTIONS(4452), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4452), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4452), + [sym_preproc_directive] = ACTIONS(4452), + [anon_sym_LPAREN2] = ACTIONS(4454), + [anon_sym_TILDE] = ACTIONS(4454), + [anon_sym_STAR] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym___extension__] = ACTIONS(4452), + [anon_sym_typedef] = ACTIONS(4452), + [anon_sym_virtual] = ACTIONS(4452), + [anon_sym_extern] = ACTIONS(4452), + [anon_sym___attribute__] = ACTIONS(4452), + [anon_sym___attribute] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4454), + [anon_sym___declspec] = ACTIONS(4452), + [anon_sym___based] = ACTIONS(4452), + [anon_sym_signed] = ACTIONS(4452), + [anon_sym_unsigned] = ACTIONS(4452), + [anon_sym_long] = ACTIONS(4452), + [anon_sym_short] = ACTIONS(4452), + [anon_sym_LBRACK] = ACTIONS(4452), + [anon_sym_static] = ACTIONS(4452), + [anon_sym_register] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym___inline] = ACTIONS(4452), + [anon_sym___inline__] = ACTIONS(4452), + [anon_sym___forceinline] = ACTIONS(4452), + [anon_sym_thread_local] = ACTIONS(4452), + [anon_sym___thread] = ACTIONS(4452), + [anon_sym_const] = ACTIONS(4452), + [anon_sym_constexpr] = ACTIONS(4452), + [anon_sym_volatile] = ACTIONS(4452), + [anon_sym_restrict] = ACTIONS(4452), + [anon_sym___restrict__] = ACTIONS(4452), + [anon_sym__Atomic] = ACTIONS(4452), + [anon_sym__Noreturn] = ACTIONS(4452), + [anon_sym_noreturn] = ACTIONS(4452), + [anon_sym__Nonnull] = ACTIONS(4452), + [anon_sym_mutable] = ACTIONS(4452), + [anon_sym_constinit] = ACTIONS(4452), + [anon_sym_consteval] = ACTIONS(4452), + [anon_sym_alignas] = ACTIONS(4452), + [anon_sym__Alignas] = ACTIONS(4452), + [sym_primitive_type] = ACTIONS(4452), + [anon_sym_enum] = ACTIONS(4452), + [anon_sym_class] = ACTIONS(4452), + [anon_sym_struct] = ACTIONS(4452), + [anon_sym_union] = ACTIONS(4452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4452), + [anon_sym_decltype] = ACTIONS(4452), + [anon_sym_explicit] = ACTIONS(4452), + [anon_sym_typename] = ACTIONS(4452), + [anon_sym_template] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_friend] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_using] = ACTIONS(4452), + [anon_sym_static_assert] = ACTIONS(4452), + [sym_macro_statement] = ACTIONS(4452), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4452), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4452), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4452), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4452), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4452), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4452), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4452), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4452), + [anon_sym_MOZ_COLD] = ACTIONS(4452), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4452), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4452), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4452), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4452), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4452), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4452), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4452), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4452), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4452), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4452), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4452), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4452), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4452), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4452), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4452), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4452), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4452), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4452), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4452), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4452), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_NONNULL] = ACTIONS(4452), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4452), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4452), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4452), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4452), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4452), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_NORETURN] = ACTIONS(4452), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4452), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4452), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4452), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4452), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4452), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4452), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4452), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4452), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4452), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4452), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4452), + [anon_sym_MOZ_RAII] = ACTIONS(4452), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4452), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4452), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4452), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4452), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4452), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4452), + }, + [STATE(1018)] = { + [sym_identifier] = ACTIONS(2190), + [aux_sym_preproc_def_token1] = ACTIONS(2190), + [aux_sym_preproc_if_token1] = ACTIONS(2190), + [aux_sym_preproc_if_token2] = ACTIONS(2190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2190), + [aux_sym_preproc_else_token1] = ACTIONS(2190), + [aux_sym_preproc_elif_token1] = ACTIONS(2190), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2190), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2190), + [sym_preproc_directive] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym___extension__] = ACTIONS(2190), + [anon_sym_typedef] = ACTIONS(2190), + [anon_sym_virtual] = ACTIONS(2190), + [anon_sym_extern] = ACTIONS(2190), + [anon_sym___attribute__] = ACTIONS(2190), + [anon_sym___attribute] = ACTIONS(2190), + [anon_sym_COLON_COLON] = ACTIONS(2192), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), + [anon_sym___declspec] = ACTIONS(2190), + [anon_sym___based] = ACTIONS(2190), + [anon_sym_signed] = ACTIONS(2190), + [anon_sym_unsigned] = ACTIONS(2190), + [anon_sym_long] = ACTIONS(2190), + [anon_sym_short] = ACTIONS(2190), + [anon_sym_LBRACK] = ACTIONS(2190), + [anon_sym_static] = ACTIONS(2190), + [anon_sym_register] = ACTIONS(2190), + [anon_sym_inline] = ACTIONS(2190), + [anon_sym___inline] = ACTIONS(2190), + [anon_sym___inline__] = ACTIONS(2190), + [anon_sym___forceinline] = ACTIONS(2190), + [anon_sym_thread_local] = ACTIONS(2190), + [anon_sym___thread] = ACTIONS(2190), + [anon_sym_const] = ACTIONS(2190), + [anon_sym_constexpr] = ACTIONS(2190), + [anon_sym_volatile] = ACTIONS(2190), + [anon_sym_restrict] = ACTIONS(2190), + [anon_sym___restrict__] = ACTIONS(2190), + [anon_sym__Atomic] = ACTIONS(2190), + [anon_sym__Noreturn] = ACTIONS(2190), + [anon_sym_noreturn] = ACTIONS(2190), + [anon_sym__Nonnull] = ACTIONS(2190), + [anon_sym_mutable] = ACTIONS(2190), + [anon_sym_constinit] = ACTIONS(2190), + [anon_sym_consteval] = ACTIONS(2190), + [anon_sym_alignas] = ACTIONS(2190), + [anon_sym__Alignas] = ACTIONS(2190), + [sym_primitive_type] = ACTIONS(2190), + [anon_sym_enum] = ACTIONS(2190), + [anon_sym_class] = ACTIONS(2190), + [anon_sym_struct] = ACTIONS(2190), + [anon_sym_union] = ACTIONS(2190), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2190), + [anon_sym_decltype] = ACTIONS(2190), + [anon_sym_explicit] = ACTIONS(2190), + [anon_sym_typename] = ACTIONS(2190), + [anon_sym_template] = ACTIONS(2190), + [anon_sym_operator] = ACTIONS(2190), + [anon_sym_friend] = ACTIONS(2190), + [anon_sym_public] = ACTIONS(2190), + [anon_sym_private] = ACTIONS(2190), + [anon_sym_protected] = ACTIONS(2190), + [anon_sym_using] = ACTIONS(2190), + [anon_sym_static_assert] = ACTIONS(2190), + [sym_macro_statement] = ACTIONS(2190), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2190), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2190), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2190), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2190), + [anon_sym_MOZ_COLD] = ACTIONS(2190), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2190), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2190), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2190), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2190), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2190), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2190), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2190), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2190), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2190), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2190), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2190), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2190), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2190), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_NONNULL] = ACTIONS(2190), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2190), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2190), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2190), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2190), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2190), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2190), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2190), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2190), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2190), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2190), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2190), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2190), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2190), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2190), + [anon_sym_MOZ_RAII] = ACTIONS(2190), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2190), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2190), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2190), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2190), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2190), + }, + [STATE(1019)] = { + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_def_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token2] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [aux_sym_preproc_else_token1] = ACTIONS(2108), + [aux_sym_preproc_elif_token1] = ACTIONS(2108), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2108), + [sym_preproc_directive] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_AMP_AMP] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym___extension__] = ACTIONS(2108), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_virtual] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym_COLON_COLON] = ACTIONS(2110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2110), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___based] = ACTIONS(2108), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [anon_sym_LBRACK] = ACTIONS(2108), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [anon_sym___inline] = ACTIONS(2108), + [anon_sym___inline__] = ACTIONS(2108), + [anon_sym___forceinline] = ACTIONS(2108), + [anon_sym_thread_local] = ACTIONS(2108), + [anon_sym___thread] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_constexpr] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym___restrict__] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym__Noreturn] = ACTIONS(2108), + [anon_sym_noreturn] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym_mutable] = ACTIONS(2108), + [anon_sym_constinit] = ACTIONS(2108), + [anon_sym_consteval] = ACTIONS(2108), + [anon_sym_alignas] = ACTIONS(2108), + [anon_sym__Alignas] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_class] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2108), + [anon_sym_decltype] = ACTIONS(2108), + [anon_sym_explicit] = ACTIONS(2108), + [anon_sym_typename] = ACTIONS(2108), + [anon_sym_template] = ACTIONS(2108), + [anon_sym_operator] = ACTIONS(2108), + [anon_sym_friend] = ACTIONS(2108), + [anon_sym_public] = ACTIONS(2108), + [anon_sym_private] = ACTIONS(2108), + [anon_sym_protected] = ACTIONS(2108), + [anon_sym_using] = ACTIONS(2108), + [anon_sym_static_assert] = ACTIONS(2108), + [sym_macro_statement] = ACTIONS(2108), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2108), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2108), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2108), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2108), + [anon_sym_MOZ_COLD] = ACTIONS(2108), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2108), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2108), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2108), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2108), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2108), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2108), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2108), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2108), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2108), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2108), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2108), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2108), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2108), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_NONNULL] = ACTIONS(2108), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2108), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2108), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2108), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2108), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2108), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2108), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2108), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2108), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2108), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2108), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2108), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2108), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2108), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2108), + [anon_sym_MOZ_RAII] = ACTIONS(2108), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2108), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2108), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2108), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2108), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2108), + }, + [STATE(1020)] = { + [sym_identifier] = ACTIONS(2194), + [aux_sym_preproc_def_token1] = ACTIONS(2194), + [aux_sym_preproc_if_token1] = ACTIONS(2194), + [aux_sym_preproc_if_token2] = ACTIONS(2194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), + [aux_sym_preproc_else_token1] = ACTIONS(2194), + [aux_sym_preproc_elif_token1] = ACTIONS(2194), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2194), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2194), + [sym_preproc_directive] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(2196), + [anon_sym_TILDE] = ACTIONS(2196), + [anon_sym_STAR] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym___extension__] = ACTIONS(2194), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_virtual] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(2194), + [anon_sym___attribute__] = ACTIONS(2194), + [anon_sym___attribute] = ACTIONS(2194), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2196), + [anon_sym___declspec] = ACTIONS(2194), + [anon_sym___based] = ACTIONS(2194), + [anon_sym_signed] = ACTIONS(2194), + [anon_sym_unsigned] = ACTIONS(2194), + [anon_sym_long] = ACTIONS(2194), + [anon_sym_short] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2194), + [anon_sym_static] = ACTIONS(2194), + [anon_sym_register] = ACTIONS(2194), + [anon_sym_inline] = ACTIONS(2194), + [anon_sym___inline] = ACTIONS(2194), + [anon_sym___inline__] = ACTIONS(2194), + [anon_sym___forceinline] = ACTIONS(2194), + [anon_sym_thread_local] = ACTIONS(2194), + [anon_sym___thread] = ACTIONS(2194), + [anon_sym_const] = ACTIONS(2194), + [anon_sym_constexpr] = ACTIONS(2194), + [anon_sym_volatile] = ACTIONS(2194), + [anon_sym_restrict] = ACTIONS(2194), + [anon_sym___restrict__] = ACTIONS(2194), + [anon_sym__Atomic] = ACTIONS(2194), + [anon_sym__Noreturn] = ACTIONS(2194), + [anon_sym_noreturn] = ACTIONS(2194), + [anon_sym__Nonnull] = ACTIONS(2194), + [anon_sym_mutable] = ACTIONS(2194), + [anon_sym_constinit] = ACTIONS(2194), + [anon_sym_consteval] = ACTIONS(2194), + [anon_sym_alignas] = ACTIONS(2194), + [anon_sym__Alignas] = ACTIONS(2194), + [sym_primitive_type] = ACTIONS(2194), + [anon_sym_enum] = ACTIONS(2194), + [anon_sym_class] = ACTIONS(2194), + [anon_sym_struct] = ACTIONS(2194), + [anon_sym_union] = ACTIONS(2194), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2194), + [anon_sym_decltype] = ACTIONS(2194), + [anon_sym_explicit] = ACTIONS(2194), + [anon_sym_typename] = ACTIONS(2194), + [anon_sym_template] = ACTIONS(2194), + [anon_sym_operator] = ACTIONS(2194), + [anon_sym_friend] = ACTIONS(2194), + [anon_sym_public] = ACTIONS(2194), + [anon_sym_private] = ACTIONS(2194), + [anon_sym_protected] = ACTIONS(2194), + [anon_sym_using] = ACTIONS(2194), + [anon_sym_static_assert] = ACTIONS(2194), + [sym_macro_statement] = ACTIONS(2194), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2194), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2194), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2194), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2194), + [anon_sym_MOZ_COLD] = ACTIONS(2194), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2194), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2194), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2194), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2194), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2194), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2194), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2194), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2194), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2194), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2194), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2194), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2194), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2194), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_NONNULL] = ACTIONS(2194), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2194), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2194), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2194), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2194), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2194), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2194), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2194), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2194), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2194), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2194), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2194), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2194), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2194), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2194), + [anon_sym_MOZ_RAII] = ACTIONS(2194), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2194), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2194), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2194), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2194), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2194), + }, + [STATE(1021)] = { + [sym_identifier] = ACTIONS(2198), + [aux_sym_preproc_def_token1] = ACTIONS(2198), + [aux_sym_preproc_if_token1] = ACTIONS(2198), + [aux_sym_preproc_if_token2] = ACTIONS(2198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2198), + [aux_sym_preproc_else_token1] = ACTIONS(2198), + [aux_sym_preproc_elif_token1] = ACTIONS(2198), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2198), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2198), + [sym_preproc_directive] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_AMP_AMP] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym___extension__] = ACTIONS(2198), + [anon_sym_typedef] = ACTIONS(2198), + [anon_sym_virtual] = ACTIONS(2198), + [anon_sym_extern] = ACTIONS(2198), + [anon_sym___attribute__] = ACTIONS(2198), + [anon_sym___attribute] = ACTIONS(2198), + [anon_sym_COLON_COLON] = ACTIONS(2200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2200), + [anon_sym___declspec] = ACTIONS(2198), + [anon_sym___based] = ACTIONS(2198), + [anon_sym_signed] = ACTIONS(2198), + [anon_sym_unsigned] = ACTIONS(2198), + [anon_sym_long] = ACTIONS(2198), + [anon_sym_short] = ACTIONS(2198), + [anon_sym_LBRACK] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_register] = ACTIONS(2198), + [anon_sym_inline] = ACTIONS(2198), + [anon_sym___inline] = ACTIONS(2198), + [anon_sym___inline__] = ACTIONS(2198), + [anon_sym___forceinline] = ACTIONS(2198), + [anon_sym_thread_local] = ACTIONS(2198), + [anon_sym___thread] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_constexpr] = ACTIONS(2198), + [anon_sym_volatile] = ACTIONS(2198), + [anon_sym_restrict] = ACTIONS(2198), + [anon_sym___restrict__] = ACTIONS(2198), + [anon_sym__Atomic] = ACTIONS(2198), + [anon_sym__Noreturn] = ACTIONS(2198), + [anon_sym_noreturn] = ACTIONS(2198), + [anon_sym__Nonnull] = ACTIONS(2198), + [anon_sym_mutable] = ACTIONS(2198), + [anon_sym_constinit] = ACTIONS(2198), + [anon_sym_consteval] = ACTIONS(2198), + [anon_sym_alignas] = ACTIONS(2198), + [anon_sym__Alignas] = ACTIONS(2198), + [sym_primitive_type] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), + [anon_sym_class] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(2198), + [anon_sym_union] = ACTIONS(2198), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2198), + [anon_sym_decltype] = ACTIONS(2198), + [anon_sym_explicit] = ACTIONS(2198), + [anon_sym_typename] = ACTIONS(2198), + [anon_sym_template] = ACTIONS(2198), + [anon_sym_operator] = ACTIONS(2198), + [anon_sym_friend] = ACTIONS(2198), + [anon_sym_public] = ACTIONS(2198), + [anon_sym_private] = ACTIONS(2198), + [anon_sym_protected] = ACTIONS(2198), + [anon_sym_using] = ACTIONS(2198), + [anon_sym_static_assert] = ACTIONS(2198), + [sym_macro_statement] = ACTIONS(2198), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2198), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2198), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2198), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2198), + [anon_sym_MOZ_COLD] = ACTIONS(2198), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2198), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2198), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2198), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2198), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2198), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2198), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2198), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2198), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2198), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2198), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2198), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2198), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2198), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_NONNULL] = ACTIONS(2198), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2198), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2198), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2198), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2198), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2198), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2198), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2198), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2198), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2198), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2198), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2198), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2198), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2198), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2198), + [anon_sym_MOZ_RAII] = ACTIONS(2198), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2198), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2198), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2198), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2198), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2198), + }, + [STATE(1022)] = { + [sym_identifier] = ACTIONS(2210), + [aux_sym_preproc_def_token1] = ACTIONS(2210), + [aux_sym_preproc_if_token1] = ACTIONS(2210), + [aux_sym_preproc_if_token2] = ACTIONS(2210), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2210), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2210), + [aux_sym_preproc_else_token1] = ACTIONS(2210), + [aux_sym_preproc_elif_token1] = ACTIONS(2210), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2210), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2210), + [sym_preproc_directive] = ACTIONS(2210), + [anon_sym_LPAREN2] = ACTIONS(2212), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2212), + [anon_sym_AMP_AMP] = ACTIONS(2212), + [anon_sym_AMP] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym___extension__] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_virtual] = ACTIONS(2210), + [anon_sym_extern] = ACTIONS(2210), + [anon_sym___attribute__] = ACTIONS(2210), + [anon_sym___attribute] = ACTIONS(2210), + [anon_sym_COLON_COLON] = ACTIONS(2212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2212), + [anon_sym___declspec] = ACTIONS(2210), + [anon_sym___based] = ACTIONS(2210), + [anon_sym_signed] = ACTIONS(2210), + [anon_sym_unsigned] = ACTIONS(2210), + [anon_sym_long] = ACTIONS(2210), + [anon_sym_short] = ACTIONS(2210), + [anon_sym_LBRACK] = ACTIONS(2210), + [anon_sym_static] = ACTIONS(2210), + [anon_sym_register] = ACTIONS(2210), + [anon_sym_inline] = ACTIONS(2210), + [anon_sym___inline] = ACTIONS(2210), + [anon_sym___inline__] = ACTIONS(2210), + [anon_sym___forceinline] = ACTIONS(2210), + [anon_sym_thread_local] = ACTIONS(2210), + [anon_sym___thread] = ACTIONS(2210), + [anon_sym_const] = ACTIONS(2210), + [anon_sym_constexpr] = ACTIONS(2210), + [anon_sym_volatile] = ACTIONS(2210), + [anon_sym_restrict] = ACTIONS(2210), + [anon_sym___restrict__] = ACTIONS(2210), + [anon_sym__Atomic] = ACTIONS(2210), + [anon_sym__Noreturn] = ACTIONS(2210), + [anon_sym_noreturn] = ACTIONS(2210), + [anon_sym__Nonnull] = ACTIONS(2210), + [anon_sym_mutable] = ACTIONS(2210), + [anon_sym_constinit] = ACTIONS(2210), + [anon_sym_consteval] = ACTIONS(2210), + [anon_sym_alignas] = ACTIONS(2210), + [anon_sym__Alignas] = ACTIONS(2210), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_enum] = ACTIONS(2210), + [anon_sym_class] = ACTIONS(2210), + [anon_sym_struct] = ACTIONS(2210), + [anon_sym_union] = ACTIONS(2210), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2210), + [anon_sym_decltype] = ACTIONS(2210), + [anon_sym_explicit] = ACTIONS(2210), + [anon_sym_typename] = ACTIONS(2210), + [anon_sym_template] = ACTIONS(2210), + [anon_sym_operator] = ACTIONS(2210), + [anon_sym_friend] = ACTIONS(2210), + [anon_sym_public] = ACTIONS(2210), + [anon_sym_private] = ACTIONS(2210), + [anon_sym_protected] = ACTIONS(2210), + [anon_sym_using] = ACTIONS(2210), + [anon_sym_static_assert] = ACTIONS(2210), + [sym_macro_statement] = ACTIONS(2210), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2210), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2210), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2210), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2210), + [anon_sym_MOZ_COLD] = ACTIONS(2210), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2210), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2210), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2210), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2210), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2210), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2210), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2210), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2210), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2210), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2210), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2210), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2210), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2210), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_NONNULL] = ACTIONS(2210), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2210), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2210), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2210), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2210), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2210), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2210), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2210), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2210), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2210), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2210), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2210), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2210), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2210), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2210), + [anon_sym_MOZ_RAII] = ACTIONS(2210), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2210), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2210), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2210), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2210), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2210), + }, + [STATE(1023)] = { + [sym__declaration_modifiers] = STATE(1278), + [sym__declaration_specifiers] = STATE(4262), + [sym_attribute_specifier] = STATE(1278), + [sym_attribute_declaration] = STATE(1278), + [sym_ms_declspec_modifier] = STATE(1278), + [sym_storage_class_specifier] = STATE(1278), + [sym_type_qualifier] = STATE(1278), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(8108), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_optional_parameter_declaration] = STATE(8108), + [sym_variadic_parameter_declaration] = STATE(8108), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6924), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1278), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3303), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(1024)] = { + [sym_identifier] = ACTIONS(2148), + [aux_sym_preproc_def_token1] = ACTIONS(2148), + [aux_sym_preproc_if_token1] = ACTIONS(2148), + [aux_sym_preproc_if_token2] = ACTIONS(2148), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2148), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2148), + [aux_sym_preproc_else_token1] = ACTIONS(2148), + [aux_sym_preproc_elif_token1] = ACTIONS(2148), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2148), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2148), + [sym_preproc_directive] = ACTIONS(2148), + [anon_sym_LPAREN2] = ACTIONS(2150), + [anon_sym_TILDE] = ACTIONS(2150), + [anon_sym_STAR] = ACTIONS(2150), + [anon_sym_AMP_AMP] = ACTIONS(2150), + [anon_sym_AMP] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym___extension__] = ACTIONS(2148), + [anon_sym_typedef] = ACTIONS(2148), + [anon_sym_virtual] = ACTIONS(2148), + [anon_sym_extern] = ACTIONS(2148), + [anon_sym___attribute__] = ACTIONS(2148), + [anon_sym___attribute] = ACTIONS(2148), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2150), + [anon_sym___declspec] = ACTIONS(2148), + [anon_sym___based] = ACTIONS(2148), + [anon_sym_signed] = ACTIONS(2148), + [anon_sym_unsigned] = ACTIONS(2148), + [anon_sym_long] = ACTIONS(2148), + [anon_sym_short] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_register] = ACTIONS(2148), + [anon_sym_inline] = ACTIONS(2148), + [anon_sym___inline] = ACTIONS(2148), + [anon_sym___inline__] = ACTIONS(2148), + [anon_sym___forceinline] = ACTIONS(2148), + [anon_sym_thread_local] = ACTIONS(2148), + [anon_sym___thread] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_constexpr] = ACTIONS(2148), + [anon_sym_volatile] = ACTIONS(2148), + [anon_sym_restrict] = ACTIONS(2148), + [anon_sym___restrict__] = ACTIONS(2148), + [anon_sym__Atomic] = ACTIONS(2148), + [anon_sym__Noreturn] = ACTIONS(2148), + [anon_sym_noreturn] = ACTIONS(2148), + [anon_sym__Nonnull] = ACTIONS(2148), + [anon_sym_mutable] = ACTIONS(2148), + [anon_sym_constinit] = ACTIONS(2148), + [anon_sym_consteval] = ACTIONS(2148), + [anon_sym_alignas] = ACTIONS(2148), + [anon_sym__Alignas] = ACTIONS(2148), + [sym_primitive_type] = ACTIONS(2148), + [anon_sym_enum] = ACTIONS(2148), + [anon_sym_class] = ACTIONS(2148), + [anon_sym_struct] = ACTIONS(2148), + [anon_sym_union] = ACTIONS(2148), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2148), + [anon_sym_decltype] = ACTIONS(2148), + [anon_sym_explicit] = ACTIONS(2148), + [anon_sym_typename] = ACTIONS(2148), + [anon_sym_template] = ACTIONS(2148), + [anon_sym_operator] = ACTIONS(2148), + [anon_sym_friend] = ACTIONS(2148), + [anon_sym_public] = ACTIONS(2148), + [anon_sym_private] = ACTIONS(2148), + [anon_sym_protected] = ACTIONS(2148), + [anon_sym_using] = ACTIONS(2148), + [anon_sym_static_assert] = ACTIONS(2148), + [sym_macro_statement] = ACTIONS(2148), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2148), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2148), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2148), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2148), + [anon_sym_MOZ_COLD] = ACTIONS(2148), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2148), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2148), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2148), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2148), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2148), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2148), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2148), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2148), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2148), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2148), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2148), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2148), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2148), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_NONNULL] = ACTIONS(2148), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2148), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2148), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2148), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2148), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2148), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2148), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2148), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2148), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2148), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2148), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2148), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2148), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2148), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2148), + [anon_sym_MOZ_RAII] = ACTIONS(2148), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2148), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2148), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2148), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2148), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2148), + }, + [STATE(1025)] = { + [sym_identifier] = ACTIONS(2218), + [aux_sym_preproc_def_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token2] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2218), + [aux_sym_preproc_else_token1] = ACTIONS(2218), + [aux_sym_preproc_elif_token1] = ACTIONS(2218), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2218), + [sym_preproc_directive] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP_AMP] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2218), + [anon_sym_typedef] = ACTIONS(2218), + [anon_sym_virtual] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym___attribute__] = ACTIONS(2218), + [anon_sym___attribute] = ACTIONS(2218), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2220), + [anon_sym___declspec] = ACTIONS(2218), + [anon_sym___based] = ACTIONS(2218), + [anon_sym_signed] = ACTIONS(2218), + [anon_sym_unsigned] = ACTIONS(2218), + [anon_sym_long] = ACTIONS(2218), + [anon_sym_short] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_inline] = ACTIONS(2218), + [anon_sym___inline] = ACTIONS(2218), + [anon_sym___inline__] = ACTIONS(2218), + [anon_sym___forceinline] = ACTIONS(2218), + [anon_sym_thread_local] = ACTIONS(2218), + [anon_sym___thread] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_constexpr] = ACTIONS(2218), + [anon_sym_volatile] = ACTIONS(2218), + [anon_sym_restrict] = ACTIONS(2218), + [anon_sym___restrict__] = ACTIONS(2218), + [anon_sym__Atomic] = ACTIONS(2218), + [anon_sym__Noreturn] = ACTIONS(2218), + [anon_sym_noreturn] = ACTIONS(2218), + [anon_sym__Nonnull] = ACTIONS(2218), + [anon_sym_mutable] = ACTIONS(2218), + [anon_sym_constinit] = ACTIONS(2218), + [anon_sym_consteval] = ACTIONS(2218), + [anon_sym_alignas] = ACTIONS(2218), + [anon_sym__Alignas] = ACTIONS(2218), + [sym_primitive_type] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_class] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2218), + [anon_sym_explicit] = ACTIONS(2218), + [anon_sym_typename] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_operator] = ACTIONS(2218), + [anon_sym_friend] = ACTIONS(2218), + [anon_sym_public] = ACTIONS(2218), + [anon_sym_private] = ACTIONS(2218), + [anon_sym_protected] = ACTIONS(2218), + [anon_sym_using] = ACTIONS(2218), + [anon_sym_static_assert] = ACTIONS(2218), + [sym_macro_statement] = ACTIONS(2218), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2218), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2218), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2218), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2218), + [anon_sym_MOZ_COLD] = ACTIONS(2218), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2218), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2218), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2218), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2218), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2218), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2218), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2218), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2218), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2218), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2218), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2218), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2218), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2218), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_NONNULL] = ACTIONS(2218), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2218), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2218), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2218), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2218), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2218), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2218), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2218), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2218), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2218), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2218), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2218), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2218), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2218), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2218), + [anon_sym_MOZ_RAII] = ACTIONS(2218), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2218), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2218), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2218), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2218), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2218), + }, + [STATE(1026)] = { + [sym_identifier] = ACTIONS(4448), + [aux_sym_preproc_def_token1] = ACTIONS(4448), + [aux_sym_preproc_if_token1] = ACTIONS(4448), + [aux_sym_preproc_if_token2] = ACTIONS(4448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4448), + [aux_sym_preproc_else_token1] = ACTIONS(4448), + [aux_sym_preproc_elif_token1] = ACTIONS(4448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4448), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4448), + [sym_preproc_directive] = ACTIONS(4448), + [anon_sym_LPAREN2] = ACTIONS(4450), + [anon_sym_TILDE] = ACTIONS(4450), + [anon_sym_STAR] = ACTIONS(4450), + [anon_sym_AMP_AMP] = ACTIONS(4450), + [anon_sym_AMP] = ACTIONS(4448), + [anon_sym_SEMI] = ACTIONS(4450), + [anon_sym___extension__] = ACTIONS(4448), + [anon_sym_typedef] = ACTIONS(4448), + [anon_sym_virtual] = ACTIONS(4448), + [anon_sym_extern] = ACTIONS(4448), + [anon_sym___attribute__] = ACTIONS(4448), + [anon_sym___attribute] = ACTIONS(4448), + [anon_sym_COLON_COLON] = ACTIONS(4450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4450), + [anon_sym___declspec] = ACTIONS(4448), + [anon_sym___based] = ACTIONS(4448), + [anon_sym_signed] = ACTIONS(4448), + [anon_sym_unsigned] = ACTIONS(4448), + [anon_sym_long] = ACTIONS(4448), + [anon_sym_short] = ACTIONS(4448), + [anon_sym_LBRACK] = ACTIONS(4448), + [anon_sym_static] = ACTIONS(4448), + [anon_sym_register] = ACTIONS(4448), + [anon_sym_inline] = ACTIONS(4448), + [anon_sym___inline] = ACTIONS(4448), + [anon_sym___inline__] = ACTIONS(4448), + [anon_sym___forceinline] = ACTIONS(4448), + [anon_sym_thread_local] = ACTIONS(4448), + [anon_sym___thread] = ACTIONS(4448), + [anon_sym_const] = ACTIONS(4448), + [anon_sym_constexpr] = ACTIONS(4448), + [anon_sym_volatile] = ACTIONS(4448), + [anon_sym_restrict] = ACTIONS(4448), + [anon_sym___restrict__] = ACTIONS(4448), + [anon_sym__Atomic] = ACTIONS(4448), + [anon_sym__Noreturn] = ACTIONS(4448), + [anon_sym_noreturn] = ACTIONS(4448), + [anon_sym__Nonnull] = ACTIONS(4448), + [anon_sym_mutable] = ACTIONS(4448), + [anon_sym_constinit] = ACTIONS(4448), + [anon_sym_consteval] = ACTIONS(4448), + [anon_sym_alignas] = ACTIONS(4448), + [anon_sym__Alignas] = ACTIONS(4448), + [sym_primitive_type] = ACTIONS(4448), + [anon_sym_enum] = ACTIONS(4448), + [anon_sym_class] = ACTIONS(4448), + [anon_sym_struct] = ACTIONS(4448), + [anon_sym_union] = ACTIONS(4448), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4448), + [anon_sym_decltype] = ACTIONS(4448), + [anon_sym_explicit] = ACTIONS(4448), + [anon_sym_typename] = ACTIONS(4448), + [anon_sym_template] = ACTIONS(4448), + [anon_sym_operator] = ACTIONS(4448), + [anon_sym_friend] = ACTIONS(4448), + [anon_sym_public] = ACTIONS(4448), + [anon_sym_private] = ACTIONS(4448), + [anon_sym_protected] = ACTIONS(4448), + [anon_sym_using] = ACTIONS(4448), + [anon_sym_static_assert] = ACTIONS(4448), + [sym_macro_statement] = ACTIONS(4448), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4448), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4448), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4448), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4448), + [anon_sym_MOZ_COLD] = ACTIONS(4448), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4448), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4448), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4448), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4448), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4448), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4448), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4448), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4448), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4448), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4448), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4448), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4448), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4448), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_NONNULL] = ACTIONS(4448), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4448), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4448), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4448), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4448), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4448), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4448), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4448), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4448), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4448), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4448), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4448), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4448), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4448), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4448), + [anon_sym_MOZ_RAII] = ACTIONS(4448), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4448), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4448), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4448), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4448), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4448), + }, + [STATE(1027)] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token2] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [aux_sym_preproc_else_token1] = ACTIONS(2436), + [aux_sym_preproc_elif_token1] = ACTIONS(2436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_virtual] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_COLON_COLON] = ACTIONS(2438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___based] = ACTIONS(2436), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_mutable] = ACTIONS(2436), + [anon_sym_constinit] = ACTIONS(2436), + [anon_sym_consteval] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_class] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2436), + [anon_sym_decltype] = ACTIONS(2436), + [anon_sym_explicit] = ACTIONS(2436), + [anon_sym_typename] = ACTIONS(2436), + [anon_sym_template] = ACTIONS(2436), + [anon_sym_operator] = ACTIONS(2436), + [anon_sym_friend] = ACTIONS(2436), + [anon_sym_public] = ACTIONS(2436), + [anon_sym_private] = ACTIONS(2436), + [anon_sym_protected] = ACTIONS(2436), + [anon_sym_using] = ACTIONS(2436), + [anon_sym_static_assert] = ACTIONS(2436), + [sym_macro_statement] = ACTIONS(2436), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2436), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2436), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2436), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2436), + [anon_sym_MOZ_COLD] = ACTIONS(2436), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2436), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2436), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2436), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2436), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2436), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2436), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2436), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2436), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2436), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2436), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2436), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2436), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2436), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_NONNULL] = ACTIONS(2436), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2436), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2436), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2436), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2436), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2436), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2436), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2436), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2436), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2436), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2436), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2436), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2436), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2436), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2436), + [anon_sym_MOZ_RAII] = ACTIONS(2436), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2436), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2436), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2436), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2436), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2436), + }, + [STATE(1028)] = { + [sym_identifier] = ACTIONS(4440), + [aux_sym_preproc_def_token1] = ACTIONS(4440), + [aux_sym_preproc_if_token1] = ACTIONS(4440), + [aux_sym_preproc_if_token2] = ACTIONS(4440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4440), + [aux_sym_preproc_else_token1] = ACTIONS(4440), + [aux_sym_preproc_elif_token1] = ACTIONS(4440), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4440), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4440), + [sym_preproc_directive] = ACTIONS(4440), + [anon_sym_LPAREN2] = ACTIONS(4442), + [anon_sym_TILDE] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [anon_sym_AMP_AMP] = ACTIONS(4442), + [anon_sym_AMP] = ACTIONS(4440), + [anon_sym_SEMI] = ACTIONS(4442), + [anon_sym___extension__] = ACTIONS(4440), + [anon_sym_typedef] = ACTIONS(4440), + [anon_sym_virtual] = ACTIONS(4440), + [anon_sym_extern] = ACTIONS(4440), + [anon_sym___attribute__] = ACTIONS(4440), + [anon_sym___attribute] = ACTIONS(4440), + [anon_sym_COLON_COLON] = ACTIONS(4442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4442), + [anon_sym___declspec] = ACTIONS(4440), + [anon_sym___based] = ACTIONS(4440), + [anon_sym_signed] = ACTIONS(4440), + [anon_sym_unsigned] = ACTIONS(4440), + [anon_sym_long] = ACTIONS(4440), + [anon_sym_short] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_static] = ACTIONS(4440), + [anon_sym_register] = ACTIONS(4440), + [anon_sym_inline] = ACTIONS(4440), + [anon_sym___inline] = ACTIONS(4440), + [anon_sym___inline__] = ACTIONS(4440), + [anon_sym___forceinline] = ACTIONS(4440), + [anon_sym_thread_local] = ACTIONS(4440), + [anon_sym___thread] = ACTIONS(4440), + [anon_sym_const] = ACTIONS(4440), + [anon_sym_constexpr] = ACTIONS(4440), + [anon_sym_volatile] = ACTIONS(4440), + [anon_sym_restrict] = ACTIONS(4440), + [anon_sym___restrict__] = ACTIONS(4440), + [anon_sym__Atomic] = ACTIONS(4440), + [anon_sym__Noreturn] = ACTIONS(4440), + [anon_sym_noreturn] = ACTIONS(4440), + [anon_sym__Nonnull] = ACTIONS(4440), + [anon_sym_mutable] = ACTIONS(4440), + [anon_sym_constinit] = ACTIONS(4440), + [anon_sym_consteval] = ACTIONS(4440), + [anon_sym_alignas] = ACTIONS(4440), + [anon_sym__Alignas] = ACTIONS(4440), + [sym_primitive_type] = ACTIONS(4440), + [anon_sym_enum] = ACTIONS(4440), + [anon_sym_class] = ACTIONS(4440), + [anon_sym_struct] = ACTIONS(4440), + [anon_sym_union] = ACTIONS(4440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4440), + [anon_sym_decltype] = ACTIONS(4440), + [anon_sym_explicit] = ACTIONS(4440), + [anon_sym_typename] = ACTIONS(4440), + [anon_sym_template] = ACTIONS(4440), + [anon_sym_operator] = ACTIONS(4440), + [anon_sym_friend] = ACTIONS(4440), + [anon_sym_public] = ACTIONS(4440), + [anon_sym_private] = ACTIONS(4440), + [anon_sym_protected] = ACTIONS(4440), + [anon_sym_using] = ACTIONS(4440), + [anon_sym_static_assert] = ACTIONS(4440), + [sym_macro_statement] = ACTIONS(4440), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4440), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4440), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4440), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4440), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4440), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4440), + [anon_sym_MOZ_COLD] = ACTIONS(4440), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4440), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4440), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4440), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4440), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4440), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4440), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4440), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4440), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4440), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4440), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4440), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4440), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4440), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4440), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4440), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4440), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4440), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4440), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_NONNULL] = ACTIONS(4440), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4440), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4440), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4440), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4440), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4440), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_NORETURN] = ACTIONS(4440), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4440), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4440), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4440), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4440), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4440), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4440), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4440), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4440), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4440), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4440), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4440), + [anon_sym_MOZ_RAII] = ACTIONS(4440), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4440), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4440), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4440), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4440), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4440), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4440), + }, + [STATE(1029)] = { + [sym_identifier] = ACTIONS(2272), + [aux_sym_preproc_def_token1] = ACTIONS(2272), + [aux_sym_preproc_if_token1] = ACTIONS(2272), + [aux_sym_preproc_if_token2] = ACTIONS(2272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2272), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2272), + [aux_sym_preproc_else_token1] = ACTIONS(2272), + [aux_sym_preproc_elif_token1] = ACTIONS(2272), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2272), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2272), + [sym_preproc_directive] = ACTIONS(2272), + [anon_sym_LPAREN2] = ACTIONS(2274), + [anon_sym_TILDE] = ACTIONS(2274), + [anon_sym_STAR] = ACTIONS(2274), + [anon_sym_AMP_AMP] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym___extension__] = ACTIONS(2272), + [anon_sym_typedef] = ACTIONS(2272), + [anon_sym_virtual] = ACTIONS(2272), + [anon_sym_extern] = ACTIONS(2272), + [anon_sym___attribute__] = ACTIONS(2272), + [anon_sym___attribute] = ACTIONS(2272), + [anon_sym_COLON_COLON] = ACTIONS(2274), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2274), + [anon_sym___declspec] = ACTIONS(2272), + [anon_sym___based] = ACTIONS(2272), + [anon_sym_signed] = ACTIONS(2272), + [anon_sym_unsigned] = ACTIONS(2272), + [anon_sym_long] = ACTIONS(2272), + [anon_sym_short] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_static] = ACTIONS(2272), + [anon_sym_register] = ACTIONS(2272), + [anon_sym_inline] = ACTIONS(2272), + [anon_sym___inline] = ACTIONS(2272), + [anon_sym___inline__] = ACTIONS(2272), + [anon_sym___forceinline] = ACTIONS(2272), + [anon_sym_thread_local] = ACTIONS(2272), + [anon_sym___thread] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [anon_sym_constexpr] = ACTIONS(2272), + [anon_sym_volatile] = ACTIONS(2272), + [anon_sym_restrict] = ACTIONS(2272), + [anon_sym___restrict__] = ACTIONS(2272), + [anon_sym__Atomic] = ACTIONS(2272), + [anon_sym__Noreturn] = ACTIONS(2272), + [anon_sym_noreturn] = ACTIONS(2272), + [anon_sym__Nonnull] = ACTIONS(2272), + [anon_sym_mutable] = ACTIONS(2272), + [anon_sym_constinit] = ACTIONS(2272), + [anon_sym_consteval] = ACTIONS(2272), + [anon_sym_alignas] = ACTIONS(2272), + [anon_sym__Alignas] = ACTIONS(2272), + [sym_primitive_type] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), + [anon_sym_class] = ACTIONS(2272), + [anon_sym_struct] = ACTIONS(2272), + [anon_sym_union] = ACTIONS(2272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2272), + [anon_sym_decltype] = ACTIONS(2272), + [anon_sym_explicit] = ACTIONS(2272), + [anon_sym_typename] = ACTIONS(2272), + [anon_sym_template] = ACTIONS(2272), + [anon_sym_operator] = ACTIONS(2272), + [anon_sym_friend] = ACTIONS(2272), + [anon_sym_public] = ACTIONS(2272), + [anon_sym_private] = ACTIONS(2272), + [anon_sym_protected] = ACTIONS(2272), + [anon_sym_using] = ACTIONS(2272), + [anon_sym_static_assert] = ACTIONS(2272), + [sym_macro_statement] = ACTIONS(2272), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2272), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2272), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2272), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2272), + [anon_sym_MOZ_COLD] = ACTIONS(2272), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2272), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2272), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2272), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2272), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2272), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2272), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2272), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2272), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2272), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2272), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2272), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2272), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2272), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_NONNULL] = ACTIONS(2272), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2272), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2272), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2272), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2272), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2272), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2272), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2272), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2272), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2272), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2272), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2272), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2272), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2272), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2272), + [anon_sym_MOZ_RAII] = ACTIONS(2272), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2272), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2272), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2272), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2272), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2272), + }, + [STATE(1030)] = { + [sym_identifier] = ACTIONS(2160), + [aux_sym_preproc_def_token1] = ACTIONS(2160), + [aux_sym_preproc_if_token1] = ACTIONS(2160), + [aux_sym_preproc_if_token2] = ACTIONS(2160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2160), + [aux_sym_preproc_else_token1] = ACTIONS(2160), + [aux_sym_preproc_elif_token1] = ACTIONS(2160), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2160), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2160), + [sym_preproc_directive] = ACTIONS(2160), + [anon_sym_LPAREN2] = ACTIONS(2162), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_STAR] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym___extension__] = ACTIONS(2160), + [anon_sym_typedef] = ACTIONS(2160), + [anon_sym_virtual] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2160), + [anon_sym___attribute__] = ACTIONS(2160), + [anon_sym___attribute] = ACTIONS(2160), + [anon_sym_COLON_COLON] = ACTIONS(2162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2162), + [anon_sym___declspec] = ACTIONS(2160), + [anon_sym___based] = ACTIONS(2160), + [anon_sym_signed] = ACTIONS(2160), + [anon_sym_unsigned] = ACTIONS(2160), + [anon_sym_long] = ACTIONS(2160), + [anon_sym_short] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_register] = ACTIONS(2160), + [anon_sym_inline] = ACTIONS(2160), + [anon_sym___inline] = ACTIONS(2160), + [anon_sym___inline__] = ACTIONS(2160), + [anon_sym___forceinline] = ACTIONS(2160), + [anon_sym_thread_local] = ACTIONS(2160), + [anon_sym___thread] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_constexpr] = ACTIONS(2160), + [anon_sym_volatile] = ACTIONS(2160), + [anon_sym_restrict] = ACTIONS(2160), + [anon_sym___restrict__] = ACTIONS(2160), + [anon_sym__Atomic] = ACTIONS(2160), + [anon_sym__Noreturn] = ACTIONS(2160), + [anon_sym_noreturn] = ACTIONS(2160), + [anon_sym__Nonnull] = ACTIONS(2160), + [anon_sym_mutable] = ACTIONS(2160), + [anon_sym_constinit] = ACTIONS(2160), + [anon_sym_consteval] = ACTIONS(2160), + [anon_sym_alignas] = ACTIONS(2160), + [anon_sym__Alignas] = ACTIONS(2160), + [sym_primitive_type] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_struct] = ACTIONS(2160), + [anon_sym_union] = ACTIONS(2160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2160), + [anon_sym_decltype] = ACTIONS(2160), + [anon_sym_explicit] = ACTIONS(2160), + [anon_sym_typename] = ACTIONS(2160), + [anon_sym_template] = ACTIONS(2160), + [anon_sym_operator] = ACTIONS(2160), + [anon_sym_friend] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_static_assert] = ACTIONS(2160), + [sym_macro_statement] = ACTIONS(2160), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2160), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2160), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2160), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2160), + [anon_sym_MOZ_COLD] = ACTIONS(2160), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2160), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2160), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2160), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2160), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2160), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2160), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2160), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2160), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2160), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2160), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2160), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2160), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2160), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_NONNULL] = ACTIONS(2160), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2160), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2160), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2160), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2160), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2160), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2160), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2160), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2160), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2160), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2160), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2160), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2160), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2160), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2160), + [anon_sym_MOZ_RAII] = ACTIONS(2160), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2160), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2160), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2160), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2160), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2160), + }, + [STATE(1031)] = { + [sym_identifier] = ACTIONS(2307), + [aux_sym_preproc_def_token1] = ACTIONS(2307), + [aux_sym_preproc_if_token1] = ACTIONS(2307), + [aux_sym_preproc_if_token2] = ACTIONS(2307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2307), + [aux_sym_preproc_else_token1] = ACTIONS(2307), + [aux_sym_preproc_elif_token1] = ACTIONS(2307), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2307), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2307), + [sym_preproc_directive] = ACTIONS(2307), + [anon_sym_LPAREN2] = ACTIONS(2309), + [anon_sym_TILDE] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_typedef] = ACTIONS(2307), + [anon_sym_virtual] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym___attribute__] = ACTIONS(2307), + [anon_sym___attribute] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2309), + [anon_sym___declspec] = ACTIONS(2307), + [anon_sym___based] = ACTIONS(2307), + [anon_sym_signed] = ACTIONS(2307), + [anon_sym_unsigned] = ACTIONS(2307), + [anon_sym_long] = ACTIONS(2307), + [anon_sym_short] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_register] = ACTIONS(2307), + [anon_sym_inline] = ACTIONS(2307), + [anon_sym___inline] = ACTIONS(2307), + [anon_sym___inline__] = ACTIONS(2307), + [anon_sym___forceinline] = ACTIONS(2307), + [anon_sym_thread_local] = ACTIONS(2307), + [anon_sym___thread] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_constexpr] = ACTIONS(2307), + [anon_sym_volatile] = ACTIONS(2307), + [anon_sym_restrict] = ACTIONS(2307), + [anon_sym___restrict__] = ACTIONS(2307), + [anon_sym__Atomic] = ACTIONS(2307), + [anon_sym__Noreturn] = ACTIONS(2307), + [anon_sym_noreturn] = ACTIONS(2307), + [anon_sym__Nonnull] = ACTIONS(2307), + [anon_sym_mutable] = ACTIONS(2307), + [anon_sym_constinit] = ACTIONS(2307), + [anon_sym_consteval] = ACTIONS(2307), + [anon_sym_alignas] = ACTIONS(2307), + [anon_sym__Alignas] = ACTIONS(2307), + [sym_primitive_type] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_class] = ACTIONS(2307), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2307), + [anon_sym_decltype] = ACTIONS(2307), + [anon_sym_explicit] = ACTIONS(2307), + [anon_sym_typename] = ACTIONS(2307), + [anon_sym_template] = ACTIONS(2307), + [anon_sym_operator] = ACTIONS(2307), + [anon_sym_friend] = ACTIONS(2307), + [anon_sym_public] = ACTIONS(2307), + [anon_sym_private] = ACTIONS(2307), + [anon_sym_protected] = ACTIONS(2307), + [anon_sym_using] = ACTIONS(2307), + [anon_sym_static_assert] = ACTIONS(2307), + [sym_macro_statement] = ACTIONS(2307), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2307), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2307), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2307), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2307), + [anon_sym_MOZ_COLD] = ACTIONS(2307), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2307), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2307), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2307), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2307), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2307), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2307), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2307), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2307), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2307), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2307), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2307), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2307), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2307), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_NONNULL] = ACTIONS(2307), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2307), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2307), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2307), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2307), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2307), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2307), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2307), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2307), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2307), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2307), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2307), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2307), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2307), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2307), + [anon_sym_MOZ_RAII] = ACTIONS(2307), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2307), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2307), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2307), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2307), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2307), + }, + [STATE(1032)] = { + [sym_identifier] = ACTIONS(2260), + [aux_sym_preproc_def_token1] = ACTIONS(2260), + [aux_sym_preproc_if_token1] = ACTIONS(2260), + [aux_sym_preproc_if_token2] = ACTIONS(2260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2260), + [aux_sym_preproc_else_token1] = ACTIONS(2260), + [aux_sym_preproc_elif_token1] = ACTIONS(2260), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2260), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2260), + [sym_preproc_directive] = ACTIONS(2260), + [anon_sym_LPAREN2] = ACTIONS(2262), + [anon_sym_TILDE] = ACTIONS(2262), + [anon_sym_STAR] = ACTIONS(2262), + [anon_sym_AMP_AMP] = ACTIONS(2262), + [anon_sym_AMP] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2262), + [anon_sym___extension__] = ACTIONS(2260), + [anon_sym_typedef] = ACTIONS(2260), + [anon_sym_virtual] = ACTIONS(2260), + [anon_sym_extern] = ACTIONS(2260), + [anon_sym___attribute__] = ACTIONS(2260), + [anon_sym___attribute] = ACTIONS(2260), + [anon_sym_COLON_COLON] = ACTIONS(2262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2262), + [anon_sym___declspec] = ACTIONS(2260), + [anon_sym___based] = ACTIONS(2260), + [anon_sym_signed] = ACTIONS(2260), + [anon_sym_unsigned] = ACTIONS(2260), + [anon_sym_long] = ACTIONS(2260), + [anon_sym_short] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_static] = ACTIONS(2260), + [anon_sym_register] = ACTIONS(2260), + [anon_sym_inline] = ACTIONS(2260), + [anon_sym___inline] = ACTIONS(2260), + [anon_sym___inline__] = ACTIONS(2260), + [anon_sym___forceinline] = ACTIONS(2260), + [anon_sym_thread_local] = ACTIONS(2260), + [anon_sym___thread] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [anon_sym_constexpr] = ACTIONS(2260), + [anon_sym_volatile] = ACTIONS(2260), + [anon_sym_restrict] = ACTIONS(2260), + [anon_sym___restrict__] = ACTIONS(2260), + [anon_sym__Atomic] = ACTIONS(2260), + [anon_sym__Noreturn] = ACTIONS(2260), + [anon_sym_noreturn] = ACTIONS(2260), + [anon_sym__Nonnull] = ACTIONS(2260), + [anon_sym_mutable] = ACTIONS(2260), + [anon_sym_constinit] = ACTIONS(2260), + [anon_sym_consteval] = ACTIONS(2260), + [anon_sym_alignas] = ACTIONS(2260), + [anon_sym__Alignas] = ACTIONS(2260), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), + [anon_sym_class] = ACTIONS(2260), + [anon_sym_struct] = ACTIONS(2260), + [anon_sym_union] = ACTIONS(2260), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2260), + [anon_sym_decltype] = ACTIONS(2260), + [anon_sym_explicit] = ACTIONS(2260), + [anon_sym_typename] = ACTIONS(2260), + [anon_sym_template] = ACTIONS(2260), + [anon_sym_operator] = ACTIONS(2260), + [anon_sym_friend] = ACTIONS(2260), + [anon_sym_public] = ACTIONS(2260), + [anon_sym_private] = ACTIONS(2260), + [anon_sym_protected] = ACTIONS(2260), + [anon_sym_using] = ACTIONS(2260), + [anon_sym_static_assert] = ACTIONS(2260), + [sym_macro_statement] = ACTIONS(2260), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2260), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2260), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2260), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2260), + [anon_sym_MOZ_COLD] = ACTIONS(2260), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2260), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2260), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2260), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2260), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2260), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2260), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2260), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2260), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2260), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2260), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2260), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2260), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2260), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_NONNULL] = ACTIONS(2260), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2260), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2260), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2260), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2260), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2260), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2260), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2260), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2260), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2260), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2260), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2260), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2260), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2260), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2260), + [anon_sym_MOZ_RAII] = ACTIONS(2260), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2260), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2260), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2260), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2260), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2260), + }, + [STATE(1033)] = { + [sym__declaration_modifiers] = STATE(1627), + [sym_attribute_specifier] = STATE(1627), + [sym_attribute_declaration] = STATE(1627), + [sym_ms_declspec_modifier] = STATE(1627), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6657), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1627), + [sym_type_qualifier] = STATE(1627), + [sym_alignas_qualifier] = STATE(1593), + [sym_decltype] = STATE(8447), + [sym_explicit_function_specifier] = STATE(1627), + [sym_operator_cast] = STATE(7112), + [sym__constructor_specifiers] = STATE(1627), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5912), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_operator_cast_identifier] = STATE(7112), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1618), + [aux_sym_operator_cast_definition_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4348), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(1034)] = { + [sym_identifier] = ACTIONS(2321), + [aux_sym_preproc_def_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token2] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2321), + [aux_sym_preproc_else_token1] = ACTIONS(2321), + [aux_sym_preproc_elif_token1] = ACTIONS(2321), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2321), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2321), + [sym_preproc_directive] = ACTIONS(2321), + [anon_sym_LPAREN2] = ACTIONS(2323), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_AMP_AMP] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_typedef] = ACTIONS(2321), + [anon_sym_virtual] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym___attribute__] = ACTIONS(2321), + [anon_sym___attribute] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2323), + [anon_sym___declspec] = ACTIONS(2321), + [anon_sym___based] = ACTIONS(2321), + [anon_sym_signed] = ACTIONS(2321), + [anon_sym_unsigned] = ACTIONS(2321), + [anon_sym_long] = ACTIONS(2321), + [anon_sym_short] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_register] = ACTIONS(2321), + [anon_sym_inline] = ACTIONS(2321), + [anon_sym___inline] = ACTIONS(2321), + [anon_sym___inline__] = ACTIONS(2321), + [anon_sym___forceinline] = ACTIONS(2321), + [anon_sym_thread_local] = ACTIONS(2321), + [anon_sym___thread] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym__Nonnull] = ACTIONS(2321), + [anon_sym_mutable] = ACTIONS(2321), + [anon_sym_constinit] = ACTIONS(2321), + [anon_sym_consteval] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2321), + [anon_sym__Alignas] = ACTIONS(2321), + [sym_primitive_type] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2321), + [anon_sym_decltype] = ACTIONS(2321), + [anon_sym_explicit] = ACTIONS(2321), + [anon_sym_typename] = ACTIONS(2321), + [anon_sym_template] = ACTIONS(2321), + [anon_sym_operator] = ACTIONS(2321), + [anon_sym_friend] = ACTIONS(2321), + [anon_sym_public] = ACTIONS(2321), + [anon_sym_private] = ACTIONS(2321), + [anon_sym_protected] = ACTIONS(2321), + [anon_sym_using] = ACTIONS(2321), + [anon_sym_static_assert] = ACTIONS(2321), + [sym_macro_statement] = ACTIONS(2321), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2321), + [anon_sym_MOZ_COLD] = ACTIONS(2321), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2321), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2321), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2321), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2321), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2321), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2321), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2321), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2321), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2321), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2321), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2321), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2321), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_RAII] = ACTIONS(2321), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2321), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2321), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2321), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2321), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2321), + }, + [STATE(1035)] = { + [sym_identifier] = ACTIONS(2321), + [aux_sym_preproc_def_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token2] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2321), + [aux_sym_preproc_else_token1] = ACTIONS(2321), + [aux_sym_preproc_elif_token1] = ACTIONS(2321), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2321), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2321), + [sym_preproc_directive] = ACTIONS(2321), + [anon_sym_LPAREN2] = ACTIONS(2323), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_AMP_AMP] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_typedef] = ACTIONS(2321), + [anon_sym_virtual] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym___attribute__] = ACTIONS(2321), + [anon_sym___attribute] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2323), + [anon_sym___declspec] = ACTIONS(2321), + [anon_sym___based] = ACTIONS(2321), + [anon_sym_signed] = ACTIONS(2321), + [anon_sym_unsigned] = ACTIONS(2321), + [anon_sym_long] = ACTIONS(2321), + [anon_sym_short] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_register] = ACTIONS(2321), + [anon_sym_inline] = ACTIONS(2321), + [anon_sym___inline] = ACTIONS(2321), + [anon_sym___inline__] = ACTIONS(2321), + [anon_sym___forceinline] = ACTIONS(2321), + [anon_sym_thread_local] = ACTIONS(2321), + [anon_sym___thread] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym__Nonnull] = ACTIONS(2321), + [anon_sym_mutable] = ACTIONS(2321), + [anon_sym_constinit] = ACTIONS(2321), + [anon_sym_consteval] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2321), + [anon_sym__Alignas] = ACTIONS(2321), + [sym_primitive_type] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2321), + [anon_sym_decltype] = ACTIONS(2321), + [anon_sym_explicit] = ACTIONS(2321), + [anon_sym_typename] = ACTIONS(2321), + [anon_sym_template] = ACTIONS(2321), + [anon_sym_operator] = ACTIONS(2321), + [anon_sym_friend] = ACTIONS(2321), + [anon_sym_public] = ACTIONS(2321), + [anon_sym_private] = ACTIONS(2321), + [anon_sym_protected] = ACTIONS(2321), + [anon_sym_using] = ACTIONS(2321), + [anon_sym_static_assert] = ACTIONS(2321), + [sym_macro_statement] = ACTIONS(2321), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2321), + [anon_sym_MOZ_COLD] = ACTIONS(2321), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2321), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2321), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2321), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2321), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2321), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2321), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2321), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2321), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2321), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2321), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2321), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2321), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_RAII] = ACTIONS(2321), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2321), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2321), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2321), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2321), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2321), + }, + [STATE(1036)] = { + [sym_identifier] = ACTIONS(2333), + [aux_sym_preproc_def_token1] = ACTIONS(2333), + [aux_sym_preproc_if_token1] = ACTIONS(2333), + [aux_sym_preproc_if_token2] = ACTIONS(2333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2333), + [aux_sym_preproc_else_token1] = ACTIONS(2333), + [aux_sym_preproc_elif_token1] = ACTIONS(2333), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2333), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2333), + [sym_preproc_directive] = ACTIONS(2333), + [anon_sym_LPAREN2] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2333), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym___extension__] = ACTIONS(2333), + [anon_sym_typedef] = ACTIONS(2333), + [anon_sym_virtual] = ACTIONS(2333), + [anon_sym_extern] = ACTIONS(2333), + [anon_sym___attribute__] = ACTIONS(2333), + [anon_sym___attribute] = ACTIONS(2333), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), + [anon_sym___declspec] = ACTIONS(2333), + [anon_sym___based] = ACTIONS(2333), + [anon_sym_signed] = ACTIONS(2333), + [anon_sym_unsigned] = ACTIONS(2333), + [anon_sym_long] = ACTIONS(2333), + [anon_sym_short] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_register] = ACTIONS(2333), + [anon_sym_inline] = ACTIONS(2333), + [anon_sym___inline] = ACTIONS(2333), + [anon_sym___inline__] = ACTIONS(2333), + [anon_sym___forceinline] = ACTIONS(2333), + [anon_sym_thread_local] = ACTIONS(2333), + [anon_sym___thread] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [anon_sym_constexpr] = ACTIONS(2333), + [anon_sym_volatile] = ACTIONS(2333), + [anon_sym_restrict] = ACTIONS(2333), + [anon_sym___restrict__] = ACTIONS(2333), + [anon_sym__Atomic] = ACTIONS(2333), + [anon_sym__Noreturn] = ACTIONS(2333), + [anon_sym_noreturn] = ACTIONS(2333), + [anon_sym__Nonnull] = ACTIONS(2333), + [anon_sym_mutable] = ACTIONS(2333), + [anon_sym_constinit] = ACTIONS(2333), + [anon_sym_consteval] = ACTIONS(2333), + [anon_sym_alignas] = ACTIONS(2333), + [anon_sym__Alignas] = ACTIONS(2333), + [sym_primitive_type] = ACTIONS(2333), + [anon_sym_enum] = ACTIONS(2333), + [anon_sym_class] = ACTIONS(2333), + [anon_sym_struct] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(2333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2333), + [anon_sym_decltype] = ACTIONS(2333), + [anon_sym_explicit] = ACTIONS(2333), + [anon_sym_typename] = ACTIONS(2333), + [anon_sym_template] = ACTIONS(2333), + [anon_sym_operator] = ACTIONS(2333), + [anon_sym_friend] = ACTIONS(2333), + [anon_sym_public] = ACTIONS(2333), + [anon_sym_private] = ACTIONS(2333), + [anon_sym_protected] = ACTIONS(2333), + [anon_sym_using] = ACTIONS(2333), + [anon_sym_static_assert] = ACTIONS(2333), + [sym_macro_statement] = ACTIONS(2333), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2333), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2333), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2333), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2333), + [anon_sym_MOZ_COLD] = ACTIONS(2333), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2333), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2333), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2333), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2333), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2333), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2333), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2333), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2333), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2333), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2333), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2333), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2333), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2333), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_NONNULL] = ACTIONS(2333), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2333), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2333), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2333), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2333), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2333), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2333), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2333), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2333), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2333), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2333), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2333), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2333), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2333), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2333), + [anon_sym_MOZ_RAII] = ACTIONS(2333), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2333), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2333), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2333), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2333), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2333), + }, + [STATE(1037)] = { + [sym_identifier] = ACTIONS(2152), + [aux_sym_preproc_def_token1] = ACTIONS(2152), + [aux_sym_preproc_if_token1] = ACTIONS(2152), + [aux_sym_preproc_if_token2] = ACTIONS(2152), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2152), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2152), + [aux_sym_preproc_else_token1] = ACTIONS(2152), + [aux_sym_preproc_elif_token1] = ACTIONS(2152), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2152), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2152), + [sym_preproc_directive] = ACTIONS(2152), + [anon_sym_LPAREN2] = ACTIONS(2154), + [anon_sym_TILDE] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2154), + [anon_sym_AMP_AMP] = ACTIONS(2154), + [anon_sym_AMP] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym___extension__] = ACTIONS(2152), + [anon_sym_typedef] = ACTIONS(2152), + [anon_sym_virtual] = ACTIONS(2152), + [anon_sym_extern] = ACTIONS(2152), + [anon_sym___attribute__] = ACTIONS(2152), + [anon_sym___attribute] = ACTIONS(2152), + [anon_sym_COLON_COLON] = ACTIONS(2154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2154), + [anon_sym___declspec] = ACTIONS(2152), + [anon_sym___based] = ACTIONS(2152), + [anon_sym_signed] = ACTIONS(2152), + [anon_sym_unsigned] = ACTIONS(2152), + [anon_sym_long] = ACTIONS(2152), + [anon_sym_short] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_register] = ACTIONS(2152), + [anon_sym_inline] = ACTIONS(2152), + [anon_sym___inline] = ACTIONS(2152), + [anon_sym___inline__] = ACTIONS(2152), + [anon_sym___forceinline] = ACTIONS(2152), + [anon_sym_thread_local] = ACTIONS(2152), + [anon_sym___thread] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_constexpr] = ACTIONS(2152), + [anon_sym_volatile] = ACTIONS(2152), + [anon_sym_restrict] = ACTIONS(2152), + [anon_sym___restrict__] = ACTIONS(2152), + [anon_sym__Atomic] = ACTIONS(2152), + [anon_sym__Noreturn] = ACTIONS(2152), + [anon_sym_noreturn] = ACTIONS(2152), + [anon_sym__Nonnull] = ACTIONS(2152), + [anon_sym_mutable] = ACTIONS(2152), + [anon_sym_constinit] = ACTIONS(2152), + [anon_sym_consteval] = ACTIONS(2152), + [anon_sym_alignas] = ACTIONS(2152), + [anon_sym__Alignas] = ACTIONS(2152), + [sym_primitive_type] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_struct] = ACTIONS(2152), + [anon_sym_union] = ACTIONS(2152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2152), + [anon_sym_decltype] = ACTIONS(2152), + [anon_sym_explicit] = ACTIONS(2152), + [anon_sym_typename] = ACTIONS(2152), + [anon_sym_template] = ACTIONS(2152), + [anon_sym_operator] = ACTIONS(2152), + [anon_sym_friend] = ACTIONS(2152), + [anon_sym_public] = ACTIONS(2152), + [anon_sym_private] = ACTIONS(2152), + [anon_sym_protected] = ACTIONS(2152), + [anon_sym_using] = ACTIONS(2152), + [anon_sym_static_assert] = ACTIONS(2152), + [sym_macro_statement] = ACTIONS(2152), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2152), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2152), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2152), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2152), + [anon_sym_MOZ_COLD] = ACTIONS(2152), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2152), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2152), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2152), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2152), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2152), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2152), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2152), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2152), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2152), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2152), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2152), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2152), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2152), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_NONNULL] = ACTIONS(2152), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2152), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2152), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2152), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2152), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2152), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2152), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2152), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2152), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2152), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2152), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2152), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2152), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2152), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2152), + [anon_sym_MOZ_RAII] = ACTIONS(2152), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2152), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2152), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2152), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2152), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2152), + }, + [STATE(1038)] = { + [sym_identifier] = ACTIONS(2337), + [aux_sym_preproc_def_token1] = ACTIONS(2337), + [aux_sym_preproc_if_token1] = ACTIONS(2337), + [aux_sym_preproc_if_token2] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), + [aux_sym_preproc_else_token1] = ACTIONS(2337), + [aux_sym_preproc_elif_token1] = ACTIONS(2337), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2337), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2337), + [sym_preproc_directive] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2339), + [anon_sym_TILDE] = ACTIONS(2339), + [anon_sym_STAR] = ACTIONS(2339), + [anon_sym_AMP_AMP] = ACTIONS(2339), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym___extension__] = ACTIONS(2337), + [anon_sym_typedef] = ACTIONS(2337), + [anon_sym_virtual] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym___attribute__] = ACTIONS(2337), + [anon_sym___attribute] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2339), + [anon_sym___declspec] = ACTIONS(2337), + [anon_sym___based] = ACTIONS(2337), + [anon_sym_signed] = ACTIONS(2337), + [anon_sym_unsigned] = ACTIONS(2337), + [anon_sym_long] = ACTIONS(2337), + [anon_sym_short] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_inline] = ACTIONS(2337), + [anon_sym___inline] = ACTIONS(2337), + [anon_sym___inline__] = ACTIONS(2337), + [anon_sym___forceinline] = ACTIONS(2337), + [anon_sym_thread_local] = ACTIONS(2337), + [anon_sym___thread] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_constexpr] = ACTIONS(2337), + [anon_sym_volatile] = ACTIONS(2337), + [anon_sym_restrict] = ACTIONS(2337), + [anon_sym___restrict__] = ACTIONS(2337), + [anon_sym__Atomic] = ACTIONS(2337), + [anon_sym__Noreturn] = ACTIONS(2337), + [anon_sym_noreturn] = ACTIONS(2337), + [anon_sym__Nonnull] = ACTIONS(2337), + [anon_sym_mutable] = ACTIONS(2337), + [anon_sym_constinit] = ACTIONS(2337), + [anon_sym_consteval] = ACTIONS(2337), + [anon_sym_alignas] = ACTIONS(2337), + [anon_sym__Alignas] = ACTIONS(2337), + [sym_primitive_type] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2337), + [anon_sym_decltype] = ACTIONS(2337), + [anon_sym_explicit] = ACTIONS(2337), + [anon_sym_typename] = ACTIONS(2337), + [anon_sym_template] = ACTIONS(2337), + [anon_sym_operator] = ACTIONS(2337), + [anon_sym_friend] = ACTIONS(2337), + [anon_sym_public] = ACTIONS(2337), + [anon_sym_private] = ACTIONS(2337), + [anon_sym_protected] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [anon_sym_static_assert] = ACTIONS(2337), + [sym_macro_statement] = ACTIONS(2337), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2337), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2337), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2337), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2337), + [anon_sym_MOZ_COLD] = ACTIONS(2337), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2337), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2337), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2337), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2337), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2337), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2337), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2337), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2337), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2337), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2337), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2337), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2337), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2337), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_NONNULL] = ACTIONS(2337), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2337), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2337), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2337), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2337), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2337), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2337), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2337), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2337), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2337), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2337), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2337), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2337), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2337), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2337), + [anon_sym_MOZ_RAII] = ACTIONS(2337), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2337), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2337), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2337), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2337), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2337), + }, + [STATE(1039)] = { + [sym_identifier] = ACTIONS(4456), + [aux_sym_preproc_def_token1] = ACTIONS(4456), + [aux_sym_preproc_if_token1] = ACTIONS(4456), + [aux_sym_preproc_if_token2] = ACTIONS(4456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4456), + [aux_sym_preproc_else_token1] = ACTIONS(4456), + [aux_sym_preproc_elif_token1] = ACTIONS(4456), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4456), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4456), + [sym_preproc_directive] = ACTIONS(4456), + [anon_sym_LPAREN2] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4458), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_AMP_AMP] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_SEMI] = ACTIONS(4458), + [anon_sym___extension__] = ACTIONS(4456), + [anon_sym_typedef] = ACTIONS(4456), + [anon_sym_virtual] = ACTIONS(4456), + [anon_sym_extern] = ACTIONS(4456), + [anon_sym___attribute__] = ACTIONS(4456), + [anon_sym___attribute] = ACTIONS(4456), + [anon_sym_COLON_COLON] = ACTIONS(4458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4458), + [anon_sym___declspec] = ACTIONS(4456), + [anon_sym___based] = ACTIONS(4456), + [anon_sym_signed] = ACTIONS(4456), + [anon_sym_unsigned] = ACTIONS(4456), + [anon_sym_long] = ACTIONS(4456), + [anon_sym_short] = ACTIONS(4456), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_static] = ACTIONS(4456), + [anon_sym_register] = ACTIONS(4456), + [anon_sym_inline] = ACTIONS(4456), + [anon_sym___inline] = ACTIONS(4456), + [anon_sym___inline__] = ACTIONS(4456), + [anon_sym___forceinline] = ACTIONS(4456), + [anon_sym_thread_local] = ACTIONS(4456), + [anon_sym___thread] = ACTIONS(4456), + [anon_sym_const] = ACTIONS(4456), + [anon_sym_constexpr] = ACTIONS(4456), + [anon_sym_volatile] = ACTIONS(4456), + [anon_sym_restrict] = ACTIONS(4456), + [anon_sym___restrict__] = ACTIONS(4456), + [anon_sym__Atomic] = ACTIONS(4456), + [anon_sym__Noreturn] = ACTIONS(4456), + [anon_sym_noreturn] = ACTIONS(4456), + [anon_sym__Nonnull] = ACTIONS(4456), + [anon_sym_mutable] = ACTIONS(4456), + [anon_sym_constinit] = ACTIONS(4456), + [anon_sym_consteval] = ACTIONS(4456), + [anon_sym_alignas] = ACTIONS(4456), + [anon_sym__Alignas] = ACTIONS(4456), + [sym_primitive_type] = ACTIONS(4456), + [anon_sym_enum] = ACTIONS(4456), + [anon_sym_class] = ACTIONS(4456), + [anon_sym_struct] = ACTIONS(4456), + [anon_sym_union] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4456), + [anon_sym_decltype] = ACTIONS(4456), + [anon_sym_explicit] = ACTIONS(4456), + [anon_sym_typename] = ACTIONS(4456), + [anon_sym_template] = ACTIONS(4456), + [anon_sym_operator] = ACTIONS(4456), + [anon_sym_friend] = ACTIONS(4456), + [anon_sym_public] = ACTIONS(4456), + [anon_sym_private] = ACTIONS(4456), + [anon_sym_protected] = ACTIONS(4456), + [anon_sym_using] = ACTIONS(4456), + [anon_sym_static_assert] = ACTIONS(4456), + [sym_macro_statement] = ACTIONS(4456), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4456), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4456), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4456), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4456), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4456), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4456), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4456), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4456), + [anon_sym_MOZ_COLD] = ACTIONS(4456), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4456), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4456), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4456), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4456), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4456), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4456), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4456), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4456), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4456), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4456), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4456), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4456), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4456), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4456), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4456), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4456), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4456), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4456), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4456), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4456), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_NONNULL] = ACTIONS(4456), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4456), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4456), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4456), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4456), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4456), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_NORETURN] = ACTIONS(4456), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4456), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4456), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4456), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4456), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4456), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4456), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4456), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4456), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4456), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4456), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4456), + [anon_sym_MOZ_RAII] = ACTIONS(4456), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4456), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4456), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4456), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4456), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4456), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4456), + }, + [STATE(1040)] = { + [sym_identifier] = ACTIONS(2156), + [aux_sym_preproc_def_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token2] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2156), + [aux_sym_preproc_else_token1] = ACTIONS(2156), + [aux_sym_preproc_elif_token1] = ACTIONS(2156), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2156), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2156), + [sym_preproc_directive] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2158), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym___extension__] = ACTIONS(2156), + [anon_sym_typedef] = ACTIONS(2156), + [anon_sym_virtual] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym___attribute__] = ACTIONS(2156), + [anon_sym___attribute] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2158), + [anon_sym___declspec] = ACTIONS(2156), + [anon_sym___based] = ACTIONS(2156), + [anon_sym_signed] = ACTIONS(2156), + [anon_sym_unsigned] = ACTIONS(2156), + [anon_sym_long] = ACTIONS(2156), + [anon_sym_short] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_inline] = ACTIONS(2156), + [anon_sym___inline] = ACTIONS(2156), + [anon_sym___inline__] = ACTIONS(2156), + [anon_sym___forceinline] = ACTIONS(2156), + [anon_sym_thread_local] = ACTIONS(2156), + [anon_sym___thread] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_constexpr] = ACTIONS(2156), + [anon_sym_volatile] = ACTIONS(2156), + [anon_sym_restrict] = ACTIONS(2156), + [anon_sym___restrict__] = ACTIONS(2156), + [anon_sym__Atomic] = ACTIONS(2156), + [anon_sym__Noreturn] = ACTIONS(2156), + [anon_sym_noreturn] = ACTIONS(2156), + [anon_sym__Nonnull] = ACTIONS(2156), + [anon_sym_mutable] = ACTIONS(2156), + [anon_sym_constinit] = ACTIONS(2156), + [anon_sym_consteval] = ACTIONS(2156), + [anon_sym_alignas] = ACTIONS(2156), + [anon_sym__Alignas] = ACTIONS(2156), + [sym_primitive_type] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2156), + [anon_sym_decltype] = ACTIONS(2156), + [anon_sym_explicit] = ACTIONS(2156), + [anon_sym_typename] = ACTIONS(2156), + [anon_sym_template] = ACTIONS(2156), + [anon_sym_operator] = ACTIONS(2156), + [anon_sym_friend] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_static_assert] = ACTIONS(2156), + [sym_macro_statement] = ACTIONS(2156), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2156), + [anon_sym_MOZ_COLD] = ACTIONS(2156), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2156), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2156), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2156), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2156), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2156), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2156), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2156), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2156), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2156), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2156), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2156), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2156), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_RAII] = ACTIONS(2156), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2156), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2156), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2156), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2156), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2156), + }, + [STATE(1041)] = { + [sym_identifier] = ACTIONS(2341), + [aux_sym_preproc_def_token1] = ACTIONS(2341), + [aux_sym_preproc_if_token1] = ACTIONS(2341), + [aux_sym_preproc_if_token2] = ACTIONS(2341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2341), + [aux_sym_preproc_else_token1] = ACTIONS(2341), + [aux_sym_preproc_elif_token1] = ACTIONS(2341), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2341), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2341), + [sym_preproc_directive] = ACTIONS(2341), + [anon_sym_LPAREN2] = ACTIONS(2343), + [anon_sym_TILDE] = ACTIONS(2343), + [anon_sym_STAR] = ACTIONS(2343), + [anon_sym_AMP_AMP] = ACTIONS(2343), + [anon_sym_AMP] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2343), + [anon_sym___extension__] = ACTIONS(2341), + [anon_sym_typedef] = ACTIONS(2341), + [anon_sym_virtual] = ACTIONS(2341), + [anon_sym_extern] = ACTIONS(2341), + [anon_sym___attribute__] = ACTIONS(2341), + [anon_sym___attribute] = ACTIONS(2341), + [anon_sym_COLON_COLON] = ACTIONS(2343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2343), + [anon_sym___declspec] = ACTIONS(2341), + [anon_sym___based] = ACTIONS(2341), + [anon_sym_signed] = ACTIONS(2341), + [anon_sym_unsigned] = ACTIONS(2341), + [anon_sym_long] = ACTIONS(2341), + [anon_sym_short] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2341), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_register] = ACTIONS(2341), + [anon_sym_inline] = ACTIONS(2341), + [anon_sym___inline] = ACTIONS(2341), + [anon_sym___inline__] = ACTIONS(2341), + [anon_sym___forceinline] = ACTIONS(2341), + [anon_sym_thread_local] = ACTIONS(2341), + [anon_sym___thread] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_constexpr] = ACTIONS(2341), + [anon_sym_volatile] = ACTIONS(2341), + [anon_sym_restrict] = ACTIONS(2341), + [anon_sym___restrict__] = ACTIONS(2341), + [anon_sym__Atomic] = ACTIONS(2341), + [anon_sym__Noreturn] = ACTIONS(2341), + [anon_sym_noreturn] = ACTIONS(2341), + [anon_sym__Nonnull] = ACTIONS(2341), + [anon_sym_mutable] = ACTIONS(2341), + [anon_sym_constinit] = ACTIONS(2341), + [anon_sym_consteval] = ACTIONS(2341), + [anon_sym_alignas] = ACTIONS(2341), + [anon_sym__Alignas] = ACTIONS(2341), + [sym_primitive_type] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_class] = ACTIONS(2341), + [anon_sym_struct] = ACTIONS(2341), + [anon_sym_union] = ACTIONS(2341), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2341), + [anon_sym_decltype] = ACTIONS(2341), + [anon_sym_explicit] = ACTIONS(2341), + [anon_sym_typename] = ACTIONS(2341), + [anon_sym_template] = ACTIONS(2341), + [anon_sym_operator] = ACTIONS(2341), + [anon_sym_friend] = ACTIONS(2341), + [anon_sym_public] = ACTIONS(2341), + [anon_sym_private] = ACTIONS(2341), + [anon_sym_protected] = ACTIONS(2341), + [anon_sym_using] = ACTIONS(2341), + [anon_sym_static_assert] = ACTIONS(2341), + [sym_macro_statement] = ACTIONS(2341), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2341), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2341), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2341), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2341), + [anon_sym_MOZ_COLD] = ACTIONS(2341), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2341), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2341), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2341), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2341), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2341), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2341), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2341), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2341), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2341), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2341), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2341), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2341), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2341), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_NONNULL] = ACTIONS(2341), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2341), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2341), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2341), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2341), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2341), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2341), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2341), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2341), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2341), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2341), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2341), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2341), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2341), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2341), + [anon_sym_MOZ_RAII] = ACTIONS(2341), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2341), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2341), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2341), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2341), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2341), + }, + [STATE(1042)] = { + [sym_identifier] = ACTIONS(2345), + [aux_sym_preproc_def_token1] = ACTIONS(2345), + [aux_sym_preproc_if_token1] = ACTIONS(2345), + [aux_sym_preproc_if_token2] = ACTIONS(2345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2345), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2345), + [aux_sym_preproc_else_token1] = ACTIONS(2345), + [aux_sym_preproc_elif_token1] = ACTIONS(2345), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2345), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2345), + [sym_preproc_directive] = ACTIONS(2345), + [anon_sym_LPAREN2] = ACTIONS(2347), + [anon_sym_TILDE] = ACTIONS(2347), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_AMP_AMP] = ACTIONS(2347), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2347), + [anon_sym___extension__] = ACTIONS(2345), + [anon_sym_typedef] = ACTIONS(2345), + [anon_sym_virtual] = ACTIONS(2345), + [anon_sym_extern] = ACTIONS(2345), + [anon_sym___attribute__] = ACTIONS(2345), + [anon_sym___attribute] = ACTIONS(2345), + [anon_sym_COLON_COLON] = ACTIONS(2347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2347), + [anon_sym___declspec] = ACTIONS(2345), + [anon_sym___based] = ACTIONS(2345), + [anon_sym_signed] = ACTIONS(2345), + [anon_sym_unsigned] = ACTIONS(2345), + [anon_sym_long] = ACTIONS(2345), + [anon_sym_short] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(2345), + [anon_sym_static] = ACTIONS(2345), + [anon_sym_register] = ACTIONS(2345), + [anon_sym_inline] = ACTIONS(2345), + [anon_sym___inline] = ACTIONS(2345), + [anon_sym___inline__] = ACTIONS(2345), + [anon_sym___forceinline] = ACTIONS(2345), + [anon_sym_thread_local] = ACTIONS(2345), + [anon_sym___thread] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_constexpr] = ACTIONS(2345), + [anon_sym_volatile] = ACTIONS(2345), + [anon_sym_restrict] = ACTIONS(2345), + [anon_sym___restrict__] = ACTIONS(2345), + [anon_sym__Atomic] = ACTIONS(2345), + [anon_sym__Noreturn] = ACTIONS(2345), + [anon_sym_noreturn] = ACTIONS(2345), + [anon_sym__Nonnull] = ACTIONS(2345), + [anon_sym_mutable] = ACTIONS(2345), + [anon_sym_constinit] = ACTIONS(2345), + [anon_sym_consteval] = ACTIONS(2345), + [anon_sym_alignas] = ACTIONS(2345), + [anon_sym__Alignas] = ACTIONS(2345), + [sym_primitive_type] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_class] = ACTIONS(2345), + [anon_sym_struct] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2345), + [anon_sym_decltype] = ACTIONS(2345), + [anon_sym_explicit] = ACTIONS(2345), + [anon_sym_typename] = ACTIONS(2345), + [anon_sym_template] = ACTIONS(2345), + [anon_sym_operator] = ACTIONS(2345), + [anon_sym_friend] = ACTIONS(2345), + [anon_sym_public] = ACTIONS(2345), + [anon_sym_private] = ACTIONS(2345), + [anon_sym_protected] = ACTIONS(2345), + [anon_sym_using] = ACTIONS(2345), + [anon_sym_static_assert] = ACTIONS(2345), + [sym_macro_statement] = ACTIONS(2345), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2345), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2345), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2345), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2345), + [anon_sym_MOZ_COLD] = ACTIONS(2345), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2345), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2345), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2345), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2345), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2345), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2345), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2345), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2345), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2345), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2345), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2345), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2345), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2345), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_NONNULL] = ACTIONS(2345), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2345), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2345), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2345), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2345), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2345), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2345), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2345), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2345), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2345), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2345), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2345), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2345), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2345), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2345), + [anon_sym_MOZ_RAII] = ACTIONS(2345), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2345), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2345), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2345), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2345), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2345), + }, + [STATE(1043)] = { + [sym_identifier] = ACTIONS(2349), + [aux_sym_preproc_def_token1] = ACTIONS(2349), + [aux_sym_preproc_if_token1] = ACTIONS(2349), + [aux_sym_preproc_if_token2] = ACTIONS(2349), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2349), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2349), + [aux_sym_preproc_else_token1] = ACTIONS(2349), + [aux_sym_preproc_elif_token1] = ACTIONS(2349), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2349), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2349), + [sym_preproc_directive] = ACTIONS(2349), + [anon_sym_LPAREN2] = ACTIONS(2351), + [anon_sym_TILDE] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2351), + [anon_sym_AMP_AMP] = ACTIONS(2351), + [anon_sym_AMP] = ACTIONS(2349), + [anon_sym_SEMI] = ACTIONS(2351), + [anon_sym___extension__] = ACTIONS(2349), + [anon_sym_typedef] = ACTIONS(2349), + [anon_sym_virtual] = ACTIONS(2349), + [anon_sym_extern] = ACTIONS(2349), + [anon_sym___attribute__] = ACTIONS(2349), + [anon_sym___attribute] = ACTIONS(2349), + [anon_sym_COLON_COLON] = ACTIONS(2351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2351), + [anon_sym___declspec] = ACTIONS(2349), + [anon_sym___based] = ACTIONS(2349), + [anon_sym_signed] = ACTIONS(2349), + [anon_sym_unsigned] = ACTIONS(2349), + [anon_sym_long] = ACTIONS(2349), + [anon_sym_short] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_static] = ACTIONS(2349), + [anon_sym_register] = ACTIONS(2349), + [anon_sym_inline] = ACTIONS(2349), + [anon_sym___inline] = ACTIONS(2349), + [anon_sym___inline__] = ACTIONS(2349), + [anon_sym___forceinline] = ACTIONS(2349), + [anon_sym_thread_local] = ACTIONS(2349), + [anon_sym___thread] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [anon_sym_constexpr] = ACTIONS(2349), + [anon_sym_volatile] = ACTIONS(2349), + [anon_sym_restrict] = ACTIONS(2349), + [anon_sym___restrict__] = ACTIONS(2349), + [anon_sym__Atomic] = ACTIONS(2349), + [anon_sym__Noreturn] = ACTIONS(2349), + [anon_sym_noreturn] = ACTIONS(2349), + [anon_sym__Nonnull] = ACTIONS(2349), + [anon_sym_mutable] = ACTIONS(2349), + [anon_sym_constinit] = ACTIONS(2349), + [anon_sym_consteval] = ACTIONS(2349), + [anon_sym_alignas] = ACTIONS(2349), + [anon_sym__Alignas] = ACTIONS(2349), + [sym_primitive_type] = ACTIONS(2349), + [anon_sym_enum] = ACTIONS(2349), + [anon_sym_class] = ACTIONS(2349), + [anon_sym_struct] = ACTIONS(2349), + [anon_sym_union] = ACTIONS(2349), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2349), + [anon_sym_decltype] = ACTIONS(2349), + [anon_sym_explicit] = ACTIONS(2349), + [anon_sym_typename] = ACTIONS(2349), + [anon_sym_template] = ACTIONS(2349), + [anon_sym_operator] = ACTIONS(2349), + [anon_sym_friend] = ACTIONS(2349), + [anon_sym_public] = ACTIONS(2349), + [anon_sym_private] = ACTIONS(2349), + [anon_sym_protected] = ACTIONS(2349), + [anon_sym_using] = ACTIONS(2349), + [anon_sym_static_assert] = ACTIONS(2349), + [sym_macro_statement] = ACTIONS(2349), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2349), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2349), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2349), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2349), + [anon_sym_MOZ_COLD] = ACTIONS(2349), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2349), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2349), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2349), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2349), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2349), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2349), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2349), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2349), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2349), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2349), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2349), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2349), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2349), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_NONNULL] = ACTIONS(2349), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2349), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2349), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2349), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2349), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2349), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2349), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2349), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2349), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2349), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2349), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2349), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2349), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2349), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2349), + [anon_sym_MOZ_RAII] = ACTIONS(2349), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2349), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2349), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2349), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2349), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2349), + }, + [STATE(1044)] = { + [sym_identifier] = ACTIONS(2353), + [aux_sym_preproc_def_token1] = ACTIONS(2353), + [aux_sym_preproc_if_token1] = ACTIONS(2353), + [aux_sym_preproc_if_token2] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2353), + [aux_sym_preproc_else_token1] = ACTIONS(2353), + [aux_sym_preproc_elif_token1] = ACTIONS(2353), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2353), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2353), + [sym_preproc_directive] = ACTIONS(2353), + [anon_sym_LPAREN2] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym___extension__] = ACTIONS(2353), + [anon_sym_typedef] = ACTIONS(2353), + [anon_sym_virtual] = ACTIONS(2353), + [anon_sym_extern] = ACTIONS(2353), + [anon_sym___attribute__] = ACTIONS(2353), + [anon_sym___attribute] = ACTIONS(2353), + [anon_sym_COLON_COLON] = ACTIONS(2355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2355), + [anon_sym___declspec] = ACTIONS(2353), + [anon_sym___based] = ACTIONS(2353), + [anon_sym_signed] = ACTIONS(2353), + [anon_sym_unsigned] = ACTIONS(2353), + [anon_sym_long] = ACTIONS(2353), + [anon_sym_short] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_register] = ACTIONS(2353), + [anon_sym_inline] = ACTIONS(2353), + [anon_sym___inline] = ACTIONS(2353), + [anon_sym___inline__] = ACTIONS(2353), + [anon_sym___forceinline] = ACTIONS(2353), + [anon_sym_thread_local] = ACTIONS(2353), + [anon_sym___thread] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_constexpr] = ACTIONS(2353), + [anon_sym_volatile] = ACTIONS(2353), + [anon_sym_restrict] = ACTIONS(2353), + [anon_sym___restrict__] = ACTIONS(2353), + [anon_sym__Atomic] = ACTIONS(2353), + [anon_sym__Noreturn] = ACTIONS(2353), + [anon_sym_noreturn] = ACTIONS(2353), + [anon_sym__Nonnull] = ACTIONS(2353), + [anon_sym_mutable] = ACTIONS(2353), + [anon_sym_constinit] = ACTIONS(2353), + [anon_sym_consteval] = ACTIONS(2353), + [anon_sym_alignas] = ACTIONS(2353), + [anon_sym__Alignas] = ACTIONS(2353), + [sym_primitive_type] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_class] = ACTIONS(2353), + [anon_sym_struct] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2353), + [anon_sym_decltype] = ACTIONS(2353), + [anon_sym_explicit] = ACTIONS(2353), + [anon_sym_typename] = ACTIONS(2353), + [anon_sym_template] = ACTIONS(2353), + [anon_sym_operator] = ACTIONS(2353), + [anon_sym_friend] = ACTIONS(2353), + [anon_sym_public] = ACTIONS(2353), + [anon_sym_private] = ACTIONS(2353), + [anon_sym_protected] = ACTIONS(2353), + [anon_sym_using] = ACTIONS(2353), + [anon_sym_static_assert] = ACTIONS(2353), + [sym_macro_statement] = ACTIONS(2353), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2353), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2353), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2353), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2353), + [anon_sym_MOZ_COLD] = ACTIONS(2353), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2353), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2353), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2353), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2353), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2353), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2353), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2353), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2353), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2353), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2353), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2353), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2353), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2353), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_NONNULL] = ACTIONS(2353), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2353), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2353), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2353), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2353), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2353), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2353), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2353), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2353), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2353), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2353), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2353), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2353), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2353), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2353), + [anon_sym_MOZ_RAII] = ACTIONS(2353), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2353), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2353), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2353), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2353), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2353), + }, + [STATE(1045)] = { + [sym_identifier] = ACTIONS(2357), + [aux_sym_preproc_def_token1] = ACTIONS(2357), + [aux_sym_preproc_if_token1] = ACTIONS(2357), + [aux_sym_preproc_if_token2] = ACTIONS(2357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2357), + [aux_sym_preproc_else_token1] = ACTIONS(2357), + [aux_sym_preproc_elif_token1] = ACTIONS(2357), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2357), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2357), + [sym_preproc_directive] = ACTIONS(2357), + [anon_sym_LPAREN2] = ACTIONS(2359), + [anon_sym_TILDE] = ACTIONS(2359), + [anon_sym_STAR] = ACTIONS(2359), + [anon_sym_AMP_AMP] = ACTIONS(2359), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2359), + [anon_sym___extension__] = ACTIONS(2357), + [anon_sym_typedef] = ACTIONS(2357), + [anon_sym_virtual] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2357), + [anon_sym___attribute__] = ACTIONS(2357), + [anon_sym___attribute] = ACTIONS(2357), + [anon_sym_COLON_COLON] = ACTIONS(2359), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2359), + [anon_sym___declspec] = ACTIONS(2357), + [anon_sym___based] = ACTIONS(2357), + [anon_sym_signed] = ACTIONS(2357), + [anon_sym_unsigned] = ACTIONS(2357), + [anon_sym_long] = ACTIONS(2357), + [anon_sym_short] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_register] = ACTIONS(2357), + [anon_sym_inline] = ACTIONS(2357), + [anon_sym___inline] = ACTIONS(2357), + [anon_sym___inline__] = ACTIONS(2357), + [anon_sym___forceinline] = ACTIONS(2357), + [anon_sym_thread_local] = ACTIONS(2357), + [anon_sym___thread] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_constexpr] = ACTIONS(2357), + [anon_sym_volatile] = ACTIONS(2357), + [anon_sym_restrict] = ACTIONS(2357), + [anon_sym___restrict__] = ACTIONS(2357), + [anon_sym__Atomic] = ACTIONS(2357), + [anon_sym__Noreturn] = ACTIONS(2357), + [anon_sym_noreturn] = ACTIONS(2357), + [anon_sym__Nonnull] = ACTIONS(2357), + [anon_sym_mutable] = ACTIONS(2357), + [anon_sym_constinit] = ACTIONS(2357), + [anon_sym_consteval] = ACTIONS(2357), + [anon_sym_alignas] = ACTIONS(2357), + [anon_sym__Alignas] = ACTIONS(2357), + [sym_primitive_type] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_class] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2357), + [anon_sym_decltype] = ACTIONS(2357), + [anon_sym_explicit] = ACTIONS(2357), + [anon_sym_typename] = ACTIONS(2357), + [anon_sym_template] = ACTIONS(2357), + [anon_sym_operator] = ACTIONS(2357), + [anon_sym_friend] = ACTIONS(2357), + [anon_sym_public] = ACTIONS(2357), + [anon_sym_private] = ACTIONS(2357), + [anon_sym_protected] = ACTIONS(2357), + [anon_sym_using] = ACTIONS(2357), + [anon_sym_static_assert] = ACTIONS(2357), + [sym_macro_statement] = ACTIONS(2357), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2357), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2357), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2357), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2357), + [anon_sym_MOZ_COLD] = ACTIONS(2357), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2357), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2357), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2357), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2357), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2357), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2357), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2357), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2357), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2357), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2357), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2357), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2357), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2357), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_NONNULL] = ACTIONS(2357), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2357), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2357), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2357), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2357), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2357), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2357), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2357), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2357), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2357), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2357), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2357), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2357), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2357), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2357), + [anon_sym_MOZ_RAII] = ACTIONS(2357), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2357), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2357), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2357), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2357), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2357), + }, + [STATE(1046)] = { + [sym_identifier] = ACTIONS(2408), + [aux_sym_preproc_def_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token2] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2408), + [aux_sym_preproc_else_token1] = ACTIONS(2408), + [aux_sym_preproc_elif_token1] = ACTIONS(2408), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2408), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_LPAREN2] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_AMP_AMP] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2408), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym___extension__] = ACTIONS(2408), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_virtual] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym___attribute__] = ACTIONS(2408), + [anon_sym___attribute] = ACTIONS(2408), + [anon_sym_COLON_COLON] = ACTIONS(2410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2410), + [anon_sym___declspec] = ACTIONS(2408), + [anon_sym___based] = ACTIONS(2408), + [anon_sym_signed] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym___inline] = ACTIONS(2408), + [anon_sym___inline__] = ACTIONS(2408), + [anon_sym___forceinline] = ACTIONS(2408), + [anon_sym_thread_local] = ACTIONS(2408), + [anon_sym___thread] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_constexpr] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym___restrict__] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym__Noreturn] = ACTIONS(2408), + [anon_sym_noreturn] = ACTIONS(2408), + [anon_sym__Nonnull] = ACTIONS(2408), + [anon_sym_mutable] = ACTIONS(2408), + [anon_sym_constinit] = ACTIONS(2408), + [anon_sym_consteval] = ACTIONS(2408), + [anon_sym_alignas] = ACTIONS(2408), + [anon_sym__Alignas] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_class] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2408), + [anon_sym_decltype] = ACTIONS(2408), + [anon_sym_explicit] = ACTIONS(2408), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_template] = ACTIONS(2408), + [anon_sym_operator] = ACTIONS(2408), + [anon_sym_friend] = ACTIONS(2408), + [anon_sym_public] = ACTIONS(2408), + [anon_sym_private] = ACTIONS(2408), + [anon_sym_protected] = ACTIONS(2408), + [anon_sym_using] = ACTIONS(2408), + [anon_sym_static_assert] = ACTIONS(2408), + [sym_macro_statement] = ACTIONS(2408), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2408), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2408), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2408), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2408), + [anon_sym_MOZ_COLD] = ACTIONS(2408), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2408), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2408), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2408), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2408), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2408), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2408), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2408), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2408), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2408), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2408), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2408), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2408), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2408), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_NONNULL] = ACTIONS(2408), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2408), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2408), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2408), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2408), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2408), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2408), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2408), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2408), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2408), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2408), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2408), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2408), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2408), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2408), + [anon_sym_MOZ_RAII] = ACTIONS(2408), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2408), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2408), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2408), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2408), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2408), + }, + [STATE(1047)] = { + [sym_identifier] = ACTIONS(2317), + [aux_sym_preproc_def_token1] = ACTIONS(2317), + [aux_sym_preproc_if_token1] = ACTIONS(2317), + [aux_sym_preproc_if_token2] = ACTIONS(2317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2317), + [aux_sym_preproc_else_token1] = ACTIONS(2317), + [aux_sym_preproc_elif_token1] = ACTIONS(2317), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2317), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2317), + [sym_preproc_directive] = ACTIONS(2317), + [anon_sym_LPAREN2] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_typedef] = ACTIONS(2317), + [anon_sym_virtual] = ACTIONS(2317), + [anon_sym_extern] = ACTIONS(2317), + [anon_sym___attribute__] = ACTIONS(2317), + [anon_sym___attribute] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2319), + [anon_sym___declspec] = ACTIONS(2317), + [anon_sym___based] = ACTIONS(2317), + [anon_sym_signed] = ACTIONS(2317), + [anon_sym_unsigned] = ACTIONS(2317), + [anon_sym_long] = ACTIONS(2317), + [anon_sym_short] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_register] = ACTIONS(2317), + [anon_sym_inline] = ACTIONS(2317), + [anon_sym___inline] = ACTIONS(2317), + [anon_sym___inline__] = ACTIONS(2317), + [anon_sym___forceinline] = ACTIONS(2317), + [anon_sym_thread_local] = ACTIONS(2317), + [anon_sym___thread] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_constexpr] = ACTIONS(2317), + [anon_sym_volatile] = ACTIONS(2317), + [anon_sym_restrict] = ACTIONS(2317), + [anon_sym___restrict__] = ACTIONS(2317), + [anon_sym__Atomic] = ACTIONS(2317), + [anon_sym__Noreturn] = ACTIONS(2317), + [anon_sym_noreturn] = ACTIONS(2317), + [anon_sym__Nonnull] = ACTIONS(2317), + [anon_sym_mutable] = ACTIONS(2317), + [anon_sym_constinit] = ACTIONS(2317), + [anon_sym_consteval] = ACTIONS(2317), + [anon_sym_alignas] = ACTIONS(2317), + [anon_sym__Alignas] = ACTIONS(2317), + [sym_primitive_type] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_struct] = ACTIONS(2317), + [anon_sym_union] = ACTIONS(2317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2317), + [anon_sym_decltype] = ACTIONS(2317), + [anon_sym_explicit] = ACTIONS(2317), + [anon_sym_typename] = ACTIONS(2317), + [anon_sym_template] = ACTIONS(2317), + [anon_sym_operator] = ACTIONS(2317), + [anon_sym_friend] = ACTIONS(2317), + [anon_sym_public] = ACTIONS(2317), + [anon_sym_private] = ACTIONS(2317), + [anon_sym_protected] = ACTIONS(2317), + [anon_sym_using] = ACTIONS(2317), + [anon_sym_static_assert] = ACTIONS(2317), + [sym_macro_statement] = ACTIONS(2317), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2317), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2317), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2317), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2317), + [anon_sym_MOZ_COLD] = ACTIONS(2317), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2317), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2317), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2317), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2317), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2317), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2317), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2317), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2317), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2317), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2317), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2317), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2317), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2317), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_NONNULL] = ACTIONS(2317), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2317), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2317), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2317), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2317), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2317), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2317), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2317), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2317), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2317), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2317), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2317), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2317), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2317), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2317), + [anon_sym_MOZ_RAII] = ACTIONS(2317), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2317), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2317), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2317), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2317), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2317), + }, + [STATE(1048)] = { + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token2] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2420), + [aux_sym_preproc_else_token1] = ACTIONS(2420), + [aux_sym_preproc_elif_token1] = ACTIONS(2420), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2420), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2420), + [sym_preproc_directive] = ACTIONS(2420), + [anon_sym_LPAREN2] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym___extension__] = ACTIONS(2420), + [anon_sym_typedef] = ACTIONS(2420), + [anon_sym_virtual] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym___attribute__] = ACTIONS(2420), + [anon_sym___attribute] = ACTIONS(2420), + [anon_sym_COLON_COLON] = ACTIONS(2422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2422), + [anon_sym___declspec] = ACTIONS(2420), + [anon_sym___based] = ACTIONS(2420), + [anon_sym_signed] = ACTIONS(2420), + [anon_sym_unsigned] = ACTIONS(2420), + [anon_sym_long] = ACTIONS(2420), + [anon_sym_short] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_inline] = ACTIONS(2420), + [anon_sym___inline] = ACTIONS(2420), + [anon_sym___inline__] = ACTIONS(2420), + [anon_sym___forceinline] = ACTIONS(2420), + [anon_sym_thread_local] = ACTIONS(2420), + [anon_sym___thread] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_constexpr] = ACTIONS(2420), + [anon_sym_volatile] = ACTIONS(2420), + [anon_sym_restrict] = ACTIONS(2420), + [anon_sym___restrict__] = ACTIONS(2420), + [anon_sym__Atomic] = ACTIONS(2420), + [anon_sym__Noreturn] = ACTIONS(2420), + [anon_sym_noreturn] = ACTIONS(2420), + [anon_sym__Nonnull] = ACTIONS(2420), + [anon_sym_mutable] = ACTIONS(2420), + [anon_sym_constinit] = ACTIONS(2420), + [anon_sym_consteval] = ACTIONS(2420), + [anon_sym_alignas] = ACTIONS(2420), + [anon_sym__Alignas] = ACTIONS(2420), + [sym_primitive_type] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_class] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2420), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_explicit] = ACTIONS(2420), + [anon_sym_typename] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2420), + [anon_sym_operator] = ACTIONS(2420), + [anon_sym_friend] = ACTIONS(2420), + [anon_sym_public] = ACTIONS(2420), + [anon_sym_private] = ACTIONS(2420), + [anon_sym_protected] = ACTIONS(2420), + [anon_sym_using] = ACTIONS(2420), + [anon_sym_static_assert] = ACTIONS(2420), + [sym_macro_statement] = ACTIONS(2420), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2420), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2420), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2420), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2420), + [anon_sym_MOZ_COLD] = ACTIONS(2420), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2420), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2420), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2420), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2420), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2420), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2420), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2420), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2420), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2420), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2420), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2420), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2420), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2420), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_NONNULL] = ACTIONS(2420), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2420), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2420), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2420), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2420), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2420), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2420), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2420), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2420), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2420), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2420), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2420), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2420), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2420), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2420), + [anon_sym_MOZ_RAII] = ACTIONS(2420), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2420), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2420), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2420), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2420), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2420), + }, + [STATE(1049)] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token2] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [aux_sym_preproc_else_token1] = ACTIONS(2424), + [aux_sym_preproc_elif_token1] = ACTIONS(2424), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_virtual] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_COLON_COLON] = ACTIONS(2426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___based] = ACTIONS(2424), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_mutable] = ACTIONS(2424), + [anon_sym_constinit] = ACTIONS(2424), + [anon_sym_consteval] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2424), + [anon_sym_decltype] = ACTIONS(2424), + [anon_sym_explicit] = ACTIONS(2424), + [anon_sym_typename] = ACTIONS(2424), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_operator] = ACTIONS(2424), + [anon_sym_friend] = ACTIONS(2424), + [anon_sym_public] = ACTIONS(2424), + [anon_sym_private] = ACTIONS(2424), + [anon_sym_protected] = ACTIONS(2424), + [anon_sym_using] = ACTIONS(2424), + [anon_sym_static_assert] = ACTIONS(2424), + [sym_macro_statement] = ACTIONS(2424), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2424), + [anon_sym_MOZ_COLD] = ACTIONS(2424), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2424), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2424), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2424), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2424), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2424), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2424), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2424), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2424), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2424), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2424), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2424), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2424), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_RAII] = ACTIONS(2424), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2424), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2424), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2424), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2424), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2424), + }, + [STATE(1050)] = { + [sym_identifier] = ACTIONS(2325), + [aux_sym_preproc_def_token1] = ACTIONS(2325), + [aux_sym_preproc_if_token1] = ACTIONS(2325), + [aux_sym_preproc_if_token2] = ACTIONS(2325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2325), + [aux_sym_preproc_else_token1] = ACTIONS(2325), + [aux_sym_preproc_elif_token1] = ACTIONS(2325), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2325), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2325), + [sym_preproc_directive] = ACTIONS(2325), + [anon_sym_LPAREN2] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2327), + [anon_sym_AMP_AMP] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym___extension__] = ACTIONS(2325), + [anon_sym_typedef] = ACTIONS(2325), + [anon_sym_virtual] = ACTIONS(2325), + [anon_sym_extern] = ACTIONS(2325), + [anon_sym___attribute__] = ACTIONS(2325), + [anon_sym___attribute] = ACTIONS(2325), + [anon_sym_COLON_COLON] = ACTIONS(2327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), + [anon_sym___declspec] = ACTIONS(2325), + [anon_sym___based] = ACTIONS(2325), + [anon_sym_signed] = ACTIONS(2325), + [anon_sym_unsigned] = ACTIONS(2325), + [anon_sym_long] = ACTIONS(2325), + [anon_sym_short] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_static] = ACTIONS(2325), + [anon_sym_register] = ACTIONS(2325), + [anon_sym_inline] = ACTIONS(2325), + [anon_sym___inline] = ACTIONS(2325), + [anon_sym___inline__] = ACTIONS(2325), + [anon_sym___forceinline] = ACTIONS(2325), + [anon_sym_thread_local] = ACTIONS(2325), + [anon_sym___thread] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_constexpr] = ACTIONS(2325), + [anon_sym_volatile] = ACTIONS(2325), + [anon_sym_restrict] = ACTIONS(2325), + [anon_sym___restrict__] = ACTIONS(2325), + [anon_sym__Atomic] = ACTIONS(2325), + [anon_sym__Noreturn] = ACTIONS(2325), + [anon_sym_noreturn] = ACTIONS(2325), + [anon_sym__Nonnull] = ACTIONS(2325), + [anon_sym_mutable] = ACTIONS(2325), + [anon_sym_constinit] = ACTIONS(2325), + [anon_sym_consteval] = ACTIONS(2325), + [anon_sym_alignas] = ACTIONS(2325), + [anon_sym__Alignas] = ACTIONS(2325), + [sym_primitive_type] = ACTIONS(2325), + [anon_sym_enum] = ACTIONS(2325), + [anon_sym_class] = ACTIONS(2325), + [anon_sym_struct] = ACTIONS(2325), + [anon_sym_union] = ACTIONS(2325), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2325), + [anon_sym_decltype] = ACTIONS(2325), + [anon_sym_explicit] = ACTIONS(2325), + [anon_sym_typename] = ACTIONS(2325), + [anon_sym_template] = ACTIONS(2325), + [anon_sym_operator] = ACTIONS(2325), + [anon_sym_friend] = ACTIONS(2325), + [anon_sym_public] = ACTIONS(2325), + [anon_sym_private] = ACTIONS(2325), + [anon_sym_protected] = ACTIONS(2325), + [anon_sym_using] = ACTIONS(2325), + [anon_sym_static_assert] = ACTIONS(2325), + [sym_macro_statement] = ACTIONS(2325), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2325), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2325), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2325), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2325), + [anon_sym_MOZ_COLD] = ACTIONS(2325), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2325), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2325), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2325), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2325), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2325), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2325), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2325), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2325), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2325), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2325), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2325), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2325), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2325), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_NONNULL] = ACTIONS(2325), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2325), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2325), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2325), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2325), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2325), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2325), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2325), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2325), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2325), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2325), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2325), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2325), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2325), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2325), + [anon_sym_MOZ_RAII] = ACTIONS(2325), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2325), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2325), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2325), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2325), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2325), + }, + [STATE(1051)] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token2] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [aux_sym_preproc_else_token1] = ACTIONS(2424), + [aux_sym_preproc_elif_token1] = ACTIONS(2424), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_virtual] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_COLON_COLON] = ACTIONS(2426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___based] = ACTIONS(2424), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_mutable] = ACTIONS(2424), + [anon_sym_constinit] = ACTIONS(2424), + [anon_sym_consteval] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2424), + [anon_sym_decltype] = ACTIONS(2424), + [anon_sym_explicit] = ACTIONS(2424), + [anon_sym_typename] = ACTIONS(2424), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_operator] = ACTIONS(2424), + [anon_sym_friend] = ACTIONS(2424), + [anon_sym_public] = ACTIONS(2424), + [anon_sym_private] = ACTIONS(2424), + [anon_sym_protected] = ACTIONS(2424), + [anon_sym_using] = ACTIONS(2424), + [anon_sym_static_assert] = ACTIONS(2424), + [sym_macro_statement] = ACTIONS(2424), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2424), + [anon_sym_MOZ_COLD] = ACTIONS(2424), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2424), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2424), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2424), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2424), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2424), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2424), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2424), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2424), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2424), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2424), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2424), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2424), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_RAII] = ACTIONS(2424), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2424), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2424), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2424), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2424), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2424), + }, + [STATE(1052)] = { + [sym_identifier] = ACTIONS(2440), + [aux_sym_preproc_def_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2440), + [aux_sym_preproc_else_token1] = ACTIONS(2440), + [aux_sym_preproc_elif_token1] = ACTIONS(2440), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2440), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2440), + [sym_preproc_directive] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_typedef] = ACTIONS(2440), + [anon_sym_virtual] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym___attribute__] = ACTIONS(2440), + [anon_sym___attribute] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(2442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2442), + [anon_sym___declspec] = ACTIONS(2440), + [anon_sym___based] = ACTIONS(2440), + [anon_sym_signed] = ACTIONS(2440), + [anon_sym_unsigned] = ACTIONS(2440), + [anon_sym_long] = ACTIONS(2440), + [anon_sym_short] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_register] = ACTIONS(2440), + [anon_sym_inline] = ACTIONS(2440), + [anon_sym___inline] = ACTIONS(2440), + [anon_sym___inline__] = ACTIONS(2440), + [anon_sym___forceinline] = ACTIONS(2440), + [anon_sym_thread_local] = ACTIONS(2440), + [anon_sym___thread] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_constexpr] = ACTIONS(2440), + [anon_sym_volatile] = ACTIONS(2440), + [anon_sym_restrict] = ACTIONS(2440), + [anon_sym___restrict__] = ACTIONS(2440), + [anon_sym__Atomic] = ACTIONS(2440), + [anon_sym__Noreturn] = ACTIONS(2440), + [anon_sym_noreturn] = ACTIONS(2440), + [anon_sym__Nonnull] = ACTIONS(2440), + [anon_sym_mutable] = ACTIONS(2440), + [anon_sym_constinit] = ACTIONS(2440), + [anon_sym_consteval] = ACTIONS(2440), + [anon_sym_alignas] = ACTIONS(2440), + [anon_sym__Alignas] = ACTIONS(2440), + [sym_primitive_type] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_struct] = ACTIONS(2440), + [anon_sym_union] = ACTIONS(2440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2440), + [anon_sym_decltype] = ACTIONS(2440), + [anon_sym_explicit] = ACTIONS(2440), + [anon_sym_typename] = ACTIONS(2440), + [anon_sym_template] = ACTIONS(2440), + [anon_sym_operator] = ACTIONS(2440), + [anon_sym_friend] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_static_assert] = ACTIONS(2440), + [sym_macro_statement] = ACTIONS(2440), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2440), + [anon_sym_MOZ_COLD] = ACTIONS(2440), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2440), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2440), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2440), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2440), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2440), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2440), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2440), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2440), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2440), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2440), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2440), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2440), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_RAII] = ACTIONS(2440), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2440), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2440), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2440), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2440), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2440), + }, + [STATE(1053)] = { + [sym_identifier] = ACTIONS(2440), + [aux_sym_preproc_def_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2440), + [aux_sym_preproc_else_token1] = ACTIONS(2440), + [aux_sym_preproc_elif_token1] = ACTIONS(2440), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2440), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2440), + [sym_preproc_directive] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_typedef] = ACTIONS(2440), + [anon_sym_virtual] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym___attribute__] = ACTIONS(2440), + [anon_sym___attribute] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(2442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2442), + [anon_sym___declspec] = ACTIONS(2440), + [anon_sym___based] = ACTIONS(2440), + [anon_sym_signed] = ACTIONS(2440), + [anon_sym_unsigned] = ACTIONS(2440), + [anon_sym_long] = ACTIONS(2440), + [anon_sym_short] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_register] = ACTIONS(2440), + [anon_sym_inline] = ACTIONS(2440), + [anon_sym___inline] = ACTIONS(2440), + [anon_sym___inline__] = ACTIONS(2440), + [anon_sym___forceinline] = ACTIONS(2440), + [anon_sym_thread_local] = ACTIONS(2440), + [anon_sym___thread] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_constexpr] = ACTIONS(2440), + [anon_sym_volatile] = ACTIONS(2440), + [anon_sym_restrict] = ACTIONS(2440), + [anon_sym___restrict__] = ACTIONS(2440), + [anon_sym__Atomic] = ACTIONS(2440), + [anon_sym__Noreturn] = ACTIONS(2440), + [anon_sym_noreturn] = ACTIONS(2440), + [anon_sym__Nonnull] = ACTIONS(2440), + [anon_sym_mutable] = ACTIONS(2440), + [anon_sym_constinit] = ACTIONS(2440), + [anon_sym_consteval] = ACTIONS(2440), + [anon_sym_alignas] = ACTIONS(2440), + [anon_sym__Alignas] = ACTIONS(2440), + [sym_primitive_type] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_struct] = ACTIONS(2440), + [anon_sym_union] = ACTIONS(2440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2440), + [anon_sym_decltype] = ACTIONS(2440), + [anon_sym_explicit] = ACTIONS(2440), + [anon_sym_typename] = ACTIONS(2440), + [anon_sym_template] = ACTIONS(2440), + [anon_sym_operator] = ACTIONS(2440), + [anon_sym_friend] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_static_assert] = ACTIONS(2440), + [sym_macro_statement] = ACTIONS(2440), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2440), + [anon_sym_MOZ_COLD] = ACTIONS(2440), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2440), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2440), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2440), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2440), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2440), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2440), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2440), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2440), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2440), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2440), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2440), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2440), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_RAII] = ACTIONS(2440), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2440), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2440), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2440), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2440), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2440), + }, + [STATE(1054)] = { + [sym_identifier] = ACTIONS(2244), + [aux_sym_preproc_def_token1] = ACTIONS(2244), + [aux_sym_preproc_if_token1] = ACTIONS(2244), + [aux_sym_preproc_if_token2] = ACTIONS(2244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2244), + [aux_sym_preproc_else_token1] = ACTIONS(2244), + [aux_sym_preproc_elif_token1] = ACTIONS(2244), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2244), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2244), + [sym_preproc_directive] = ACTIONS(2244), + [anon_sym_LPAREN2] = ACTIONS(2246), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym___extension__] = ACTIONS(2244), + [anon_sym_typedef] = ACTIONS(2244), + [anon_sym_virtual] = ACTIONS(2244), + [anon_sym_extern] = ACTIONS(2244), + [anon_sym___attribute__] = ACTIONS(2244), + [anon_sym___attribute] = ACTIONS(2244), + [anon_sym_COLON_COLON] = ACTIONS(2246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2246), + [anon_sym___declspec] = ACTIONS(2244), + [anon_sym___based] = ACTIONS(2244), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_register] = ACTIONS(2244), + [anon_sym_inline] = ACTIONS(2244), + [anon_sym___inline] = ACTIONS(2244), + [anon_sym___inline__] = ACTIONS(2244), + [anon_sym___forceinline] = ACTIONS(2244), + [anon_sym_thread_local] = ACTIONS(2244), + [anon_sym___thread] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_constexpr] = ACTIONS(2244), + [anon_sym_volatile] = ACTIONS(2244), + [anon_sym_restrict] = ACTIONS(2244), + [anon_sym___restrict__] = ACTIONS(2244), + [anon_sym__Atomic] = ACTIONS(2244), + [anon_sym__Noreturn] = ACTIONS(2244), + [anon_sym_noreturn] = ACTIONS(2244), + [anon_sym__Nonnull] = ACTIONS(2244), + [anon_sym_mutable] = ACTIONS(2244), + [anon_sym_constinit] = ACTIONS(2244), + [anon_sym_consteval] = ACTIONS(2244), + [anon_sym_alignas] = ACTIONS(2244), + [anon_sym__Alignas] = ACTIONS(2244), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_struct] = ACTIONS(2244), + [anon_sym_union] = ACTIONS(2244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2244), + [anon_sym_decltype] = ACTIONS(2244), + [anon_sym_explicit] = ACTIONS(2244), + [anon_sym_typename] = ACTIONS(2244), + [anon_sym_template] = ACTIONS(2244), + [anon_sym_operator] = ACTIONS(2244), + [anon_sym_friend] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_static_assert] = ACTIONS(2244), + [sym_macro_statement] = ACTIONS(2244), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2244), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2244), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2244), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2244), + [anon_sym_MOZ_COLD] = ACTIONS(2244), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2244), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2244), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2244), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2244), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2244), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2244), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2244), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2244), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2244), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2244), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2244), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2244), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2244), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_NONNULL] = ACTIONS(2244), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2244), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2244), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2244), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2244), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2244), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2244), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2244), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2244), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2244), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2244), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2244), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2244), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2244), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2244), + [anon_sym_MOZ_RAII] = ACTIONS(2244), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2244), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2244), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2244), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2244), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2244), + }, + [STATE(1055)] = { + [sym_identifier] = ACTIONS(2329), + [aux_sym_preproc_def_token1] = ACTIONS(2329), + [aux_sym_preproc_if_token1] = ACTIONS(2329), + [aux_sym_preproc_if_token2] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2329), + [aux_sym_preproc_else_token1] = ACTIONS(2329), + [aux_sym_preproc_elif_token1] = ACTIONS(2329), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2329), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2329), + [sym_preproc_directive] = ACTIONS(2329), + [anon_sym_LPAREN2] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_STAR] = ACTIONS(2331), + [anon_sym_AMP_AMP] = ACTIONS(2331), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_SEMI] = ACTIONS(2331), + [anon_sym___extension__] = ACTIONS(2329), + [anon_sym_typedef] = ACTIONS(2329), + [anon_sym_virtual] = ACTIONS(2329), + [anon_sym_extern] = ACTIONS(2329), + [anon_sym___attribute__] = ACTIONS(2329), + [anon_sym___attribute] = ACTIONS(2329), + [anon_sym_COLON_COLON] = ACTIONS(2331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2331), + [anon_sym___declspec] = ACTIONS(2329), + [anon_sym___based] = ACTIONS(2329), + [anon_sym_signed] = ACTIONS(2329), + [anon_sym_unsigned] = ACTIONS(2329), + [anon_sym_long] = ACTIONS(2329), + [anon_sym_short] = ACTIONS(2329), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_register] = ACTIONS(2329), + [anon_sym_inline] = ACTIONS(2329), + [anon_sym___inline] = ACTIONS(2329), + [anon_sym___inline__] = ACTIONS(2329), + [anon_sym___forceinline] = ACTIONS(2329), + [anon_sym_thread_local] = ACTIONS(2329), + [anon_sym___thread] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_constexpr] = ACTIONS(2329), + [anon_sym_volatile] = ACTIONS(2329), + [anon_sym_restrict] = ACTIONS(2329), + [anon_sym___restrict__] = ACTIONS(2329), + [anon_sym__Atomic] = ACTIONS(2329), + [anon_sym__Noreturn] = ACTIONS(2329), + [anon_sym_noreturn] = ACTIONS(2329), + [anon_sym__Nonnull] = ACTIONS(2329), + [anon_sym_mutable] = ACTIONS(2329), + [anon_sym_constinit] = ACTIONS(2329), + [anon_sym_consteval] = ACTIONS(2329), + [anon_sym_alignas] = ACTIONS(2329), + [anon_sym__Alignas] = ACTIONS(2329), + [sym_primitive_type] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_class] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2329), + [anon_sym_union] = ACTIONS(2329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2329), + [anon_sym_decltype] = ACTIONS(2329), + [anon_sym_explicit] = ACTIONS(2329), + [anon_sym_typename] = ACTIONS(2329), + [anon_sym_template] = ACTIONS(2329), + [anon_sym_operator] = ACTIONS(2329), + [anon_sym_friend] = ACTIONS(2329), + [anon_sym_public] = ACTIONS(2329), + [anon_sym_private] = ACTIONS(2329), + [anon_sym_protected] = ACTIONS(2329), + [anon_sym_using] = ACTIONS(2329), + [anon_sym_static_assert] = ACTIONS(2329), + [sym_macro_statement] = ACTIONS(2329), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2329), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2329), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2329), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2329), + [anon_sym_MOZ_COLD] = ACTIONS(2329), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2329), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2329), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2329), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2329), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2329), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2329), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2329), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2329), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2329), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2329), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2329), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2329), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2329), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_NONNULL] = ACTIONS(2329), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2329), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2329), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2329), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2329), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2329), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2329), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2329), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2329), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2329), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2329), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2329), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2329), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2329), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2329), + [anon_sym_MOZ_RAII] = ACTIONS(2329), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2329), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2329), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2329), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2329), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2329), + }, + [STATE(1056)] = { + [sym_identifier] = ACTIONS(2313), + [aux_sym_preproc_def_token1] = ACTIONS(2313), + [aux_sym_preproc_if_token1] = ACTIONS(2313), + [aux_sym_preproc_if_token2] = ACTIONS(2313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2313), + [aux_sym_preproc_else_token1] = ACTIONS(2313), + [aux_sym_preproc_elif_token1] = ACTIONS(2313), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2313), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2313), + [sym_preproc_directive] = ACTIONS(2313), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2315), + [anon_sym_AMP_AMP] = ACTIONS(2315), + [anon_sym_AMP] = ACTIONS(2313), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym___extension__] = ACTIONS(2313), + [anon_sym_typedef] = ACTIONS(2313), + [anon_sym_virtual] = ACTIONS(2313), + [anon_sym_extern] = ACTIONS(2313), + [anon_sym___attribute__] = ACTIONS(2313), + [anon_sym___attribute] = ACTIONS(2313), + [anon_sym_COLON_COLON] = ACTIONS(2315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2315), + [anon_sym___declspec] = ACTIONS(2313), + [anon_sym___based] = ACTIONS(2313), + [anon_sym_signed] = ACTIONS(2313), + [anon_sym_unsigned] = ACTIONS(2313), + [anon_sym_long] = ACTIONS(2313), + [anon_sym_short] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_static] = ACTIONS(2313), + [anon_sym_register] = ACTIONS(2313), + [anon_sym_inline] = ACTIONS(2313), + [anon_sym___inline] = ACTIONS(2313), + [anon_sym___inline__] = ACTIONS(2313), + [anon_sym___forceinline] = ACTIONS(2313), + [anon_sym_thread_local] = ACTIONS(2313), + [anon_sym___thread] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_constexpr] = ACTIONS(2313), + [anon_sym_volatile] = ACTIONS(2313), + [anon_sym_restrict] = ACTIONS(2313), + [anon_sym___restrict__] = ACTIONS(2313), + [anon_sym__Atomic] = ACTIONS(2313), + [anon_sym__Noreturn] = ACTIONS(2313), + [anon_sym_noreturn] = ACTIONS(2313), + [anon_sym__Nonnull] = ACTIONS(2313), + [anon_sym_mutable] = ACTIONS(2313), + [anon_sym_constinit] = ACTIONS(2313), + [anon_sym_consteval] = ACTIONS(2313), + [anon_sym_alignas] = ACTIONS(2313), + [anon_sym__Alignas] = ACTIONS(2313), + [sym_primitive_type] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), + [anon_sym_class] = ACTIONS(2313), + [anon_sym_struct] = ACTIONS(2313), + [anon_sym_union] = ACTIONS(2313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2313), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_explicit] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(2313), + [anon_sym_operator] = ACTIONS(2313), + [anon_sym_friend] = ACTIONS(2313), + [anon_sym_public] = ACTIONS(2313), + [anon_sym_private] = ACTIONS(2313), + [anon_sym_protected] = ACTIONS(2313), + [anon_sym_using] = ACTIONS(2313), + [anon_sym_static_assert] = ACTIONS(2313), + [sym_macro_statement] = ACTIONS(2313), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2313), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2313), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2313), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2313), + [anon_sym_MOZ_COLD] = ACTIONS(2313), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2313), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2313), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2313), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2313), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2313), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2313), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2313), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2313), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2313), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2313), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2313), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2313), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2313), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_NONNULL] = ACTIONS(2313), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2313), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2313), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2313), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2313), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2313), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2313), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2313), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2313), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2313), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2313), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2313), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2313), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2313), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2313), + [anon_sym_MOZ_RAII] = ACTIONS(2313), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2313), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2313), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2313), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2313), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2313), + }, + [STATE(1057)] = { + [sym_identifier] = ACTIONS(4460), + [aux_sym_preproc_def_token1] = ACTIONS(4460), + [aux_sym_preproc_if_token1] = ACTIONS(4460), + [aux_sym_preproc_if_token2] = ACTIONS(4460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4460), + [aux_sym_preproc_else_token1] = ACTIONS(4460), + [aux_sym_preproc_elif_token1] = ACTIONS(4460), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4460), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4460), + [sym_preproc_directive] = ACTIONS(4460), + [anon_sym_LPAREN2] = ACTIONS(4462), + [anon_sym_TILDE] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4462), + [anon_sym_AMP_AMP] = ACTIONS(4462), + [anon_sym_AMP] = ACTIONS(4460), + [anon_sym_SEMI] = ACTIONS(4462), + [anon_sym___extension__] = ACTIONS(4460), + [anon_sym_typedef] = ACTIONS(4460), + [anon_sym_virtual] = ACTIONS(4460), + [anon_sym_extern] = ACTIONS(4460), + [anon_sym___attribute__] = ACTIONS(4460), + [anon_sym___attribute] = ACTIONS(4460), + [anon_sym_COLON_COLON] = ACTIONS(4462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4462), + [anon_sym___declspec] = ACTIONS(4460), + [anon_sym___based] = ACTIONS(4460), + [anon_sym_signed] = ACTIONS(4460), + [anon_sym_unsigned] = ACTIONS(4460), + [anon_sym_long] = ACTIONS(4460), + [anon_sym_short] = ACTIONS(4460), + [anon_sym_LBRACK] = ACTIONS(4460), + [anon_sym_static] = ACTIONS(4460), + [anon_sym_register] = ACTIONS(4460), + [anon_sym_inline] = ACTIONS(4460), + [anon_sym___inline] = ACTIONS(4460), + [anon_sym___inline__] = ACTIONS(4460), + [anon_sym___forceinline] = ACTIONS(4460), + [anon_sym_thread_local] = ACTIONS(4460), + [anon_sym___thread] = ACTIONS(4460), + [anon_sym_const] = ACTIONS(4460), + [anon_sym_constexpr] = ACTIONS(4460), + [anon_sym_volatile] = ACTIONS(4460), + [anon_sym_restrict] = ACTIONS(4460), + [anon_sym___restrict__] = ACTIONS(4460), + [anon_sym__Atomic] = ACTIONS(4460), + [anon_sym__Noreturn] = ACTIONS(4460), + [anon_sym_noreturn] = ACTIONS(4460), + [anon_sym__Nonnull] = ACTIONS(4460), + [anon_sym_mutable] = ACTIONS(4460), + [anon_sym_constinit] = ACTIONS(4460), + [anon_sym_consteval] = ACTIONS(4460), + [anon_sym_alignas] = ACTIONS(4460), + [anon_sym__Alignas] = ACTIONS(4460), + [sym_primitive_type] = ACTIONS(4460), + [anon_sym_enum] = ACTIONS(4460), + [anon_sym_class] = ACTIONS(4460), + [anon_sym_struct] = ACTIONS(4460), + [anon_sym_union] = ACTIONS(4460), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4460), + [anon_sym_decltype] = ACTIONS(4460), + [anon_sym_explicit] = ACTIONS(4460), + [anon_sym_typename] = ACTIONS(4460), + [anon_sym_template] = ACTIONS(4460), + [anon_sym_operator] = ACTIONS(4460), + [anon_sym_friend] = ACTIONS(4460), + [anon_sym_public] = ACTIONS(4460), + [anon_sym_private] = ACTIONS(4460), + [anon_sym_protected] = ACTIONS(4460), + [anon_sym_using] = ACTIONS(4460), + [anon_sym_static_assert] = ACTIONS(4460), + [sym_macro_statement] = ACTIONS(4460), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4460), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4460), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4460), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4460), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4460), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4460), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4460), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4460), + [anon_sym_MOZ_COLD] = ACTIONS(4460), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4460), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4460), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4460), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4460), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4460), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4460), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4460), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4460), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4460), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4460), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4460), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4460), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4460), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4460), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4460), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4460), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4460), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4460), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4460), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4460), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_NONNULL] = ACTIONS(4460), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4460), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4460), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4460), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4460), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4460), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_NORETURN] = ACTIONS(4460), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4460), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4460), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4460), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4460), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4460), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4460), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4460), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4460), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4460), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4460), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4460), + [anon_sym_MOZ_RAII] = ACTIONS(4460), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4460), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4460), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4460), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4460), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4460), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4460), + }, + [STATE(1058)] = { + [sym_identifier] = ACTIONS(2373), + [aux_sym_preproc_def_token1] = ACTIONS(2373), + [aux_sym_preproc_if_token1] = ACTIONS(2373), + [aux_sym_preproc_if_token2] = ACTIONS(2373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2373), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2373), + [aux_sym_preproc_else_token1] = ACTIONS(2373), + [aux_sym_preproc_elif_token1] = ACTIONS(2373), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2373), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2373), + [sym_preproc_directive] = ACTIONS(2373), + [anon_sym_LPAREN2] = ACTIONS(2375), + [anon_sym_TILDE] = ACTIONS(2375), + [anon_sym_STAR] = ACTIONS(2375), + [anon_sym_AMP_AMP] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym___extension__] = ACTIONS(2373), + [anon_sym_typedef] = ACTIONS(2373), + [anon_sym_virtual] = ACTIONS(2373), + [anon_sym_extern] = ACTIONS(2373), + [anon_sym___attribute__] = ACTIONS(2373), + [anon_sym___attribute] = ACTIONS(2373), + [anon_sym_COLON_COLON] = ACTIONS(2375), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2375), + [anon_sym___declspec] = ACTIONS(2373), + [anon_sym___based] = ACTIONS(2373), + [anon_sym_signed] = ACTIONS(2373), + [anon_sym_unsigned] = ACTIONS(2373), + [anon_sym_long] = ACTIONS(2373), + [anon_sym_short] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_register] = ACTIONS(2373), + [anon_sym_inline] = ACTIONS(2373), + [anon_sym___inline] = ACTIONS(2373), + [anon_sym___inline__] = ACTIONS(2373), + [anon_sym___forceinline] = ACTIONS(2373), + [anon_sym_thread_local] = ACTIONS(2373), + [anon_sym___thread] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_constexpr] = ACTIONS(2373), + [anon_sym_volatile] = ACTIONS(2373), + [anon_sym_restrict] = ACTIONS(2373), + [anon_sym___restrict__] = ACTIONS(2373), + [anon_sym__Atomic] = ACTIONS(2373), + [anon_sym__Noreturn] = ACTIONS(2373), + [anon_sym_noreturn] = ACTIONS(2373), + [anon_sym__Nonnull] = ACTIONS(2373), + [anon_sym_mutable] = ACTIONS(2373), + [anon_sym_constinit] = ACTIONS(2373), + [anon_sym_consteval] = ACTIONS(2373), + [anon_sym_alignas] = ACTIONS(2373), + [anon_sym__Alignas] = ACTIONS(2373), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_class] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2373), + [anon_sym_decltype] = ACTIONS(2373), + [anon_sym_explicit] = ACTIONS(2373), + [anon_sym_typename] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(2373), + [anon_sym_operator] = ACTIONS(2373), + [anon_sym_friend] = ACTIONS(2373), + [anon_sym_public] = ACTIONS(2373), + [anon_sym_private] = ACTIONS(2373), + [anon_sym_protected] = ACTIONS(2373), + [anon_sym_using] = ACTIONS(2373), + [anon_sym_static_assert] = ACTIONS(2373), + [sym_macro_statement] = ACTIONS(2373), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2373), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2373), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2373), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2373), + [anon_sym_MOZ_COLD] = ACTIONS(2373), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2373), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2373), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2373), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2373), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2373), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2373), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2373), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2373), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2373), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2373), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2373), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2373), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2373), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_NONNULL] = ACTIONS(2373), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2373), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2373), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2373), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2373), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2373), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2373), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2373), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2373), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2373), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2373), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2373), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2373), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2373), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2373), + [anon_sym_MOZ_RAII] = ACTIONS(2373), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2373), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2373), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2373), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2373), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2373), + }, + [STATE(1059)] = { + [sym_identifier] = ACTIONS(2178), + [aux_sym_preproc_def_token1] = ACTIONS(2178), + [aux_sym_preproc_if_token1] = ACTIONS(2178), + [aux_sym_preproc_if_token2] = ACTIONS(2178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), + [aux_sym_preproc_else_token1] = ACTIONS(2178), + [aux_sym_preproc_elif_token1] = ACTIONS(2178), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2178), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2178), + [sym_preproc_directive] = ACTIONS(2178), + [anon_sym_LPAREN2] = ACTIONS(2180), + [anon_sym_TILDE] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(2180), + [anon_sym_AMP_AMP] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2180), + [anon_sym___extension__] = ACTIONS(2178), + [anon_sym_typedef] = ACTIONS(2178), + [anon_sym_virtual] = ACTIONS(2178), + [anon_sym_extern] = ACTIONS(2178), + [anon_sym___attribute__] = ACTIONS(2178), + [anon_sym___attribute] = ACTIONS(2178), + [anon_sym_COLON_COLON] = ACTIONS(2180), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2180), + [anon_sym___declspec] = ACTIONS(2178), + [anon_sym___based] = ACTIONS(2178), + [anon_sym_signed] = ACTIONS(2178), + [anon_sym_unsigned] = ACTIONS(2178), + [anon_sym_long] = ACTIONS(2178), + [anon_sym_short] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_register] = ACTIONS(2178), + [anon_sym_inline] = ACTIONS(2178), + [anon_sym___inline] = ACTIONS(2178), + [anon_sym___inline__] = ACTIONS(2178), + [anon_sym___forceinline] = ACTIONS(2178), + [anon_sym_thread_local] = ACTIONS(2178), + [anon_sym___thread] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_constexpr] = ACTIONS(2178), + [anon_sym_volatile] = ACTIONS(2178), + [anon_sym_restrict] = ACTIONS(2178), + [anon_sym___restrict__] = ACTIONS(2178), + [anon_sym__Atomic] = ACTIONS(2178), + [anon_sym__Noreturn] = ACTIONS(2178), + [anon_sym_noreturn] = ACTIONS(2178), + [anon_sym__Nonnull] = ACTIONS(2178), + [anon_sym_mutable] = ACTIONS(2178), + [anon_sym_constinit] = ACTIONS(2178), + [anon_sym_consteval] = ACTIONS(2178), + [anon_sym_alignas] = ACTIONS(2178), + [anon_sym__Alignas] = ACTIONS(2178), + [sym_primitive_type] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_struct] = ACTIONS(2178), + [anon_sym_union] = ACTIONS(2178), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2178), + [anon_sym_decltype] = ACTIONS(2178), + [anon_sym_explicit] = ACTIONS(2178), + [anon_sym_typename] = ACTIONS(2178), + [anon_sym_template] = ACTIONS(2178), + [anon_sym_operator] = ACTIONS(2178), + [anon_sym_friend] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_protected] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_static_assert] = ACTIONS(2178), + [sym_macro_statement] = ACTIONS(2178), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2178), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2178), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2178), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2178), + [anon_sym_MOZ_COLD] = ACTIONS(2178), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2178), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2178), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2178), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2178), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2178), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2178), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2178), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2178), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2178), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2178), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2178), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2178), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2178), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_NONNULL] = ACTIONS(2178), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2178), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2178), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2178), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2178), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2178), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2178), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2178), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2178), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2178), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2178), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2178), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2178), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2178), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2178), + [anon_sym_MOZ_RAII] = ACTIONS(2178), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2178), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2178), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2178), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2178), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2178), + }, + [STATE(1060)] = { + [sym_identifier] = ACTIONS(2256), + [aux_sym_preproc_def_token1] = ACTIONS(2256), + [aux_sym_preproc_if_token1] = ACTIONS(2256), + [aux_sym_preproc_if_token2] = ACTIONS(2256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2256), + [aux_sym_preproc_else_token1] = ACTIONS(2256), + [aux_sym_preproc_elif_token1] = ACTIONS(2256), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2256), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2256), + [sym_preproc_directive] = ACTIONS(2256), + [anon_sym_LPAREN2] = ACTIONS(2258), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2258), + [anon_sym_AMP_AMP] = ACTIONS(2258), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym___extension__] = ACTIONS(2256), + [anon_sym_typedef] = ACTIONS(2256), + [anon_sym_virtual] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym_COLON_COLON] = ACTIONS(2258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2258), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym___based] = ACTIONS(2256), + [anon_sym_signed] = ACTIONS(2256), + [anon_sym_unsigned] = ACTIONS(2256), + [anon_sym_long] = ACTIONS(2256), + [anon_sym_short] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2256), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [anon_sym___inline] = ACTIONS(2256), + [anon_sym___inline__] = ACTIONS(2256), + [anon_sym___forceinline] = ACTIONS(2256), + [anon_sym_thread_local] = ACTIONS(2256), + [anon_sym___thread] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_constexpr] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym___restrict__] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym__Noreturn] = ACTIONS(2256), + [anon_sym_noreturn] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym_mutable] = ACTIONS(2256), + [anon_sym_constinit] = ACTIONS(2256), + [anon_sym_consteval] = ACTIONS(2256), + [anon_sym_alignas] = ACTIONS(2256), + [anon_sym__Alignas] = ACTIONS(2256), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_class] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2256), + [anon_sym_decltype] = ACTIONS(2256), + [anon_sym_explicit] = ACTIONS(2256), + [anon_sym_typename] = ACTIONS(2256), + [anon_sym_template] = ACTIONS(2256), + [anon_sym_operator] = ACTIONS(2256), + [anon_sym_friend] = ACTIONS(2256), + [anon_sym_public] = ACTIONS(2256), + [anon_sym_private] = ACTIONS(2256), + [anon_sym_protected] = ACTIONS(2256), + [anon_sym_using] = ACTIONS(2256), + [anon_sym_static_assert] = ACTIONS(2256), + [sym_macro_statement] = ACTIONS(2256), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2256), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2256), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2256), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2256), + [anon_sym_MOZ_COLD] = ACTIONS(2256), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2256), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2256), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2256), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2256), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2256), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2256), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2256), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2256), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2256), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2256), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2256), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2256), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2256), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_NONNULL] = ACTIONS(2256), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2256), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2256), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2256), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2256), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2256), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2256), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2256), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2256), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2256), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2256), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2256), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2256), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2256), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2256), + [anon_sym_MOZ_RAII] = ACTIONS(2256), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2256), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2256), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2256), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2256), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2256), + }, + [STATE(1061)] = { + [sym__declaration_modifiers] = STATE(1627), + [sym_attribute_specifier] = STATE(1627), + [sym_attribute_declaration] = STATE(1627), + [sym_ms_declspec_modifier] = STATE(1627), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6632), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1627), + [sym_type_qualifier] = STATE(1627), + [sym_alignas_qualifier] = STATE(1593), + [sym_decltype] = STATE(8447), + [sym_explicit_function_specifier] = STATE(1627), + [sym_operator_cast] = STATE(7085), + [sym__constructor_specifiers] = STATE(1627), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5912), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_operator_cast_identifier] = STATE(7085), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1618), + [aux_sym_operator_cast_definition_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4348), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(1062)] = { + [sym__declaration_modifiers] = STATE(1627), + [sym_attribute_specifier] = STATE(1627), + [sym_attribute_declaration] = STATE(1627), + [sym_ms_declspec_modifier] = STATE(1627), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6596), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1627), + [sym_type_qualifier] = STATE(1627), + [sym_alignas_qualifier] = STATE(1593), + [sym_decltype] = STATE(8447), + [sym_explicit_function_specifier] = STATE(1627), + [sym_operator_cast] = STATE(7085), + [sym__constructor_specifiers] = STATE(1627), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5912), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_operator_cast_identifier] = STATE(7085), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1618), + [aux_sym_operator_cast_definition_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4348), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(1063)] = { + [sym_identifier] = ACTIONS(4464), + [aux_sym_preproc_def_token1] = ACTIONS(4464), + [aux_sym_preproc_if_token1] = ACTIONS(4464), + [aux_sym_preproc_if_token2] = ACTIONS(4464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4464), + [aux_sym_preproc_else_token1] = ACTIONS(4464), + [aux_sym_preproc_elif_token1] = ACTIONS(4464), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4464), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4464), + [sym_preproc_directive] = ACTIONS(4464), + [anon_sym_LPAREN2] = ACTIONS(4466), + [anon_sym_TILDE] = ACTIONS(4466), + [anon_sym_STAR] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym___extension__] = ACTIONS(4464), + [anon_sym_typedef] = ACTIONS(4464), + [anon_sym_virtual] = ACTIONS(4464), + [anon_sym_extern] = ACTIONS(4464), + [anon_sym___attribute__] = ACTIONS(4464), + [anon_sym___attribute] = ACTIONS(4464), + [anon_sym_COLON_COLON] = ACTIONS(4466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4466), + [anon_sym___declspec] = ACTIONS(4464), + [anon_sym___based] = ACTIONS(4464), + [anon_sym_signed] = ACTIONS(4464), + [anon_sym_unsigned] = ACTIONS(4464), + [anon_sym_long] = ACTIONS(4464), + [anon_sym_short] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_static] = ACTIONS(4464), + [anon_sym_register] = ACTIONS(4464), + [anon_sym_inline] = ACTIONS(4464), + [anon_sym___inline] = ACTIONS(4464), + [anon_sym___inline__] = ACTIONS(4464), + [anon_sym___forceinline] = ACTIONS(4464), + [anon_sym_thread_local] = ACTIONS(4464), + [anon_sym___thread] = ACTIONS(4464), + [anon_sym_const] = ACTIONS(4464), + [anon_sym_constexpr] = ACTIONS(4464), + [anon_sym_volatile] = ACTIONS(4464), + [anon_sym_restrict] = ACTIONS(4464), + [anon_sym___restrict__] = ACTIONS(4464), + [anon_sym__Atomic] = ACTIONS(4464), + [anon_sym__Noreturn] = ACTIONS(4464), + [anon_sym_noreturn] = ACTIONS(4464), + [anon_sym__Nonnull] = ACTIONS(4464), + [anon_sym_mutable] = ACTIONS(4464), + [anon_sym_constinit] = ACTIONS(4464), + [anon_sym_consteval] = ACTIONS(4464), + [anon_sym_alignas] = ACTIONS(4464), + [anon_sym__Alignas] = ACTIONS(4464), + [sym_primitive_type] = ACTIONS(4464), + [anon_sym_enum] = ACTIONS(4464), + [anon_sym_class] = ACTIONS(4464), + [anon_sym_struct] = ACTIONS(4464), + [anon_sym_union] = ACTIONS(4464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4464), + [anon_sym_decltype] = ACTIONS(4464), + [anon_sym_explicit] = ACTIONS(4464), + [anon_sym_typename] = ACTIONS(4464), + [anon_sym_template] = ACTIONS(4464), + [anon_sym_operator] = ACTIONS(4464), + [anon_sym_friend] = ACTIONS(4464), + [anon_sym_public] = ACTIONS(4464), + [anon_sym_private] = ACTIONS(4464), + [anon_sym_protected] = ACTIONS(4464), + [anon_sym_using] = ACTIONS(4464), + [anon_sym_static_assert] = ACTIONS(4464), + [sym_macro_statement] = ACTIONS(4464), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4464), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4464), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4464), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4464), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4464), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4464), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4464), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4464), + [anon_sym_MOZ_COLD] = ACTIONS(4464), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4464), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4464), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4464), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4464), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4464), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4464), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4464), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4464), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4464), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4464), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4464), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4464), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4464), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4464), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4464), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4464), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4464), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4464), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4464), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4464), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_NONNULL] = ACTIONS(4464), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4464), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4464), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4464), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4464), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4464), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_NORETURN] = ACTIONS(4464), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4464), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4464), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4464), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4464), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4464), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4464), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4464), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4464), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4464), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4464), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4464), + [anon_sym_MOZ_RAII] = ACTIONS(4464), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4464), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4464), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4464), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4464), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4464), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4464), + }, + [STATE(1064)] = { + [sym__declaration_modifiers] = STATE(1627), + [sym_attribute_specifier] = STATE(1627), + [sym_attribute_declaration] = STATE(1627), + [sym_ms_declspec_modifier] = STATE(1627), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6676), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1627), + [sym_type_qualifier] = STATE(1627), + [sym_alignas_qualifier] = STATE(1593), + [sym_decltype] = STATE(8447), + [sym_explicit_function_specifier] = STATE(1627), + [sym_operator_cast] = STATE(7094), + [sym__constructor_specifiers] = STATE(1627), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5912), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_operator_cast_identifier] = STATE(7094), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1618), + [aux_sym_operator_cast_definition_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4348), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(1065)] = { + [sym__declaration_modifiers] = STATE(1627), + [sym_attribute_specifier] = STATE(1627), + [sym_attribute_declaration] = STATE(1627), + [sym_ms_declspec_modifier] = STATE(1627), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6577), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1627), + [sym_type_qualifier] = STATE(1627), + [sym_alignas_qualifier] = STATE(1593), + [sym_decltype] = STATE(8447), + [sym_explicit_function_specifier] = STATE(1627), + [sym_operator_cast] = STATE(7095), + [sym__constructor_specifiers] = STATE(1627), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5912), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_operator_cast_identifier] = STATE(7095), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1618), + [aux_sym_operator_cast_definition_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4348), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(1066)] = { + [sym__declaration_modifiers] = STATE(1627), + [sym_attribute_specifier] = STATE(1627), + [sym_attribute_declaration] = STATE(1627), + [sym_ms_declspec_modifier] = STATE(1627), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6543), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1627), + [sym_type_qualifier] = STATE(1627), + [sym_alignas_qualifier] = STATE(1593), + [sym_decltype] = STATE(8447), + [sym_explicit_function_specifier] = STATE(1627), + [sym_operator_cast] = STATE(7094), + [sym__constructor_specifiers] = STATE(1627), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5912), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_operator_cast_identifier] = STATE(7094), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1618), + [aux_sym_operator_cast_definition_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4348), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(1067)] = { + [sym__declaration_modifiers] = STATE(1627), + [sym_attribute_specifier] = STATE(1627), + [sym_attribute_declaration] = STATE(1627), + [sym_ms_declspec_modifier] = STATE(1627), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6665), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1627), + [sym_type_qualifier] = STATE(1627), + [sym_alignas_qualifier] = STATE(1593), + [sym_decltype] = STATE(8447), + [sym_explicit_function_specifier] = STATE(1627), + [sym_operator_cast] = STATE(7092), + [sym__constructor_specifiers] = STATE(1627), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5912), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_operator_cast_identifier] = STATE(7092), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1618), + [aux_sym_operator_cast_definition_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4348), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(1068)] = { + [sym_identifier] = ACTIONS(1966), + [aux_sym_preproc_def_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token2] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1966), + [aux_sym_preproc_else_token1] = ACTIONS(1966), + [aux_sym_preproc_elif_token1] = ACTIONS(1966), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1966), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1966), + [sym_preproc_directive] = ACTIONS(1966), + [anon_sym_LPAREN2] = ACTIONS(1968), + [anon_sym_TILDE] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym___extension__] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1966), + [anon_sym_virtual] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym___attribute__] = ACTIONS(1966), + [anon_sym___attribute] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1966), + [anon_sym___based] = ACTIONS(1966), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_register] = ACTIONS(1966), + [anon_sym_inline] = ACTIONS(1966), + [anon_sym___inline] = ACTIONS(1966), + [anon_sym___inline__] = ACTIONS(1966), + [anon_sym___forceinline] = ACTIONS(1966), + [anon_sym_thread_local] = ACTIONS(1966), + [anon_sym___thread] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_constexpr] = ACTIONS(1966), + [anon_sym_volatile] = ACTIONS(1966), + [anon_sym_restrict] = ACTIONS(1966), + [anon_sym___restrict__] = ACTIONS(1966), + [anon_sym__Atomic] = ACTIONS(1966), + [anon_sym__Noreturn] = ACTIONS(1966), + [anon_sym_noreturn] = ACTIONS(1966), + [anon_sym__Nonnull] = ACTIONS(1966), + [anon_sym_mutable] = ACTIONS(1966), + [anon_sym_constinit] = ACTIONS(1966), + [anon_sym_consteval] = ACTIONS(1966), + [anon_sym_alignas] = ACTIONS(1966), + [anon_sym__Alignas] = ACTIONS(1966), + [sym_primitive_type] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_class] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1966), + [anon_sym_decltype] = ACTIONS(1966), + [anon_sym_explicit] = ACTIONS(1966), + [anon_sym_typename] = ACTIONS(1966), + [anon_sym_template] = ACTIONS(1966), + [anon_sym_operator] = ACTIONS(1966), + [anon_sym_friend] = ACTIONS(1966), + [anon_sym_public] = ACTIONS(1966), + [anon_sym_private] = ACTIONS(1966), + [anon_sym_protected] = ACTIONS(1966), + [anon_sym_using] = ACTIONS(1966), + [anon_sym_static_assert] = ACTIONS(1966), + [sym_macro_statement] = ACTIONS(1966), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1966), + [anon_sym_MOZ_COLD] = ACTIONS(1966), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1966), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1966), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1966), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1966), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1966), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1966), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1966), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1966), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1966), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1966), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1966), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1966), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_RAII] = ACTIONS(1966), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1966), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1966), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1966), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1966), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1966), + }, + [STATE(1069)] = { + [sym__declaration_modifiers] = STATE(1627), + [sym_attribute_specifier] = STATE(1627), + [sym_attribute_declaration] = STATE(1627), + [sym_ms_declspec_modifier] = STATE(1627), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6529), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1627), + [sym_type_qualifier] = STATE(1627), + [sym_alignas_qualifier] = STATE(1593), + [sym_decltype] = STATE(8447), + [sym_explicit_function_specifier] = STATE(1627), + [sym_operator_cast] = STATE(7124), + [sym__constructor_specifiers] = STATE(1627), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5912), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_operator_cast_identifier] = STATE(7124), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1618), + [aux_sym_operator_cast_definition_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4348), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(1070)] = { + [sym_identifier] = ACTIONS(2120), + [aux_sym_preproc_def_token1] = ACTIONS(2120), + [aux_sym_preproc_if_token1] = ACTIONS(2120), + [aux_sym_preproc_if_token2] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), + [aux_sym_preproc_else_token1] = ACTIONS(2120), + [aux_sym_preproc_elif_token1] = ACTIONS(2120), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2120), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2120), + [sym_preproc_directive] = ACTIONS(2120), + [anon_sym_LPAREN2] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym___extension__] = ACTIONS(2120), + [anon_sym_typedef] = ACTIONS(2120), + [anon_sym_virtual] = ACTIONS(2120), + [anon_sym_extern] = ACTIONS(2120), + [anon_sym___attribute__] = ACTIONS(2120), + [anon_sym___attribute] = ACTIONS(2120), + [anon_sym_COLON_COLON] = ACTIONS(2122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2122), + [anon_sym___declspec] = ACTIONS(2120), + [anon_sym___based] = ACTIONS(2120), + [anon_sym_signed] = ACTIONS(2120), + [anon_sym_unsigned] = ACTIONS(2120), + [anon_sym_long] = ACTIONS(2120), + [anon_sym_short] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_register] = ACTIONS(2120), + [anon_sym_inline] = ACTIONS(2120), + [anon_sym___inline] = ACTIONS(2120), + [anon_sym___inline__] = ACTIONS(2120), + [anon_sym___forceinline] = ACTIONS(2120), + [anon_sym_thread_local] = ACTIONS(2120), + [anon_sym___thread] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_constexpr] = ACTIONS(2120), + [anon_sym_volatile] = ACTIONS(2120), + [anon_sym_restrict] = ACTIONS(2120), + [anon_sym___restrict__] = ACTIONS(2120), + [anon_sym__Atomic] = ACTIONS(2120), + [anon_sym__Noreturn] = ACTIONS(2120), + [anon_sym_noreturn] = ACTIONS(2120), + [anon_sym__Nonnull] = ACTIONS(2120), + [anon_sym_mutable] = ACTIONS(2120), + [anon_sym_constinit] = ACTIONS(2120), + [anon_sym_consteval] = ACTIONS(2120), + [anon_sym_alignas] = ACTIONS(2120), + [anon_sym__Alignas] = ACTIONS(2120), + [sym_primitive_type] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_union] = ACTIONS(2120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2120), + [anon_sym_decltype] = ACTIONS(2120), + [anon_sym_explicit] = ACTIONS(2120), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(2120), + [anon_sym_operator] = ACTIONS(2120), + [anon_sym_friend] = ACTIONS(2120), + [anon_sym_public] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_using] = ACTIONS(2120), + [anon_sym_static_assert] = ACTIONS(2120), + [sym_macro_statement] = ACTIONS(2120), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2120), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2120), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2120), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2120), + [anon_sym_MOZ_COLD] = ACTIONS(2120), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2120), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2120), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2120), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2120), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2120), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2120), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2120), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2120), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2120), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2120), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2120), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2120), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2120), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_NONNULL] = ACTIONS(2120), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2120), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2120), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2120), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2120), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2120), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2120), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2120), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2120), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2120), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2120), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2120), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2120), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2120), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2120), + [anon_sym_MOZ_RAII] = ACTIONS(2120), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2120), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2120), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2120), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2120), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2120), + }, + [STATE(1071)] = { + [sym__declaration_modifiers] = STATE(1627), + [sym_attribute_specifier] = STATE(1627), + [sym_attribute_declaration] = STATE(1627), + [sym_ms_declspec_modifier] = STATE(1627), + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(7044), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6566), + [sym_array_declarator] = STATE(6300), + [sym_storage_class_specifier] = STATE(1627), + [sym_type_qualifier] = STATE(1627), + [sym_alignas_qualifier] = STATE(1593), + [sym_decltype] = STATE(8447), + [sym_explicit_function_specifier] = STATE(1627), + [sym_operator_cast] = STATE(7092), + [sym__constructor_specifiers] = STATE(1627), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5912), + [sym_qualified_identifier] = STATE(6300), + [sym_qualified_operator_cast_identifier] = STATE(7092), + [sym_operator_name] = STATE(6300), + [sym_macro_annotation] = STATE(1618), + [aux_sym_operator_cast_definition_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4348), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_explicit] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(133), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(1072)] = { + [sym_identifier] = ACTIONS(2236), + [aux_sym_preproc_def_token1] = ACTIONS(2236), + [aux_sym_preproc_if_token1] = ACTIONS(2236), + [aux_sym_preproc_if_token2] = ACTIONS(2236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2236), + [aux_sym_preproc_else_token1] = ACTIONS(2236), + [aux_sym_preproc_elif_token1] = ACTIONS(2236), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2236), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2236), + [sym_preproc_directive] = ACTIONS(2236), + [anon_sym_LPAREN2] = ACTIONS(2238), + [anon_sym_TILDE] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_typedef] = ACTIONS(2236), + [anon_sym_virtual] = ACTIONS(2236), + [anon_sym_extern] = ACTIONS(2236), + [anon_sym___attribute__] = ACTIONS(2236), + [anon_sym___attribute] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2238), + [anon_sym___declspec] = ACTIONS(2236), + [anon_sym___based] = ACTIONS(2236), + [anon_sym_signed] = ACTIONS(2236), + [anon_sym_unsigned] = ACTIONS(2236), + [anon_sym_long] = ACTIONS(2236), + [anon_sym_short] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_register] = ACTIONS(2236), + [anon_sym_inline] = ACTIONS(2236), + [anon_sym___inline] = ACTIONS(2236), + [anon_sym___inline__] = ACTIONS(2236), + [anon_sym___forceinline] = ACTIONS(2236), + [anon_sym_thread_local] = ACTIONS(2236), + [anon_sym___thread] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(2236), + [anon_sym_constexpr] = ACTIONS(2236), + [anon_sym_volatile] = ACTIONS(2236), + [anon_sym_restrict] = ACTIONS(2236), + [anon_sym___restrict__] = ACTIONS(2236), + [anon_sym__Atomic] = ACTIONS(2236), + [anon_sym__Noreturn] = ACTIONS(2236), + [anon_sym_noreturn] = ACTIONS(2236), + [anon_sym__Nonnull] = ACTIONS(2236), + [anon_sym_mutable] = ACTIONS(2236), + [anon_sym_constinit] = ACTIONS(2236), + [anon_sym_consteval] = ACTIONS(2236), + [anon_sym_alignas] = ACTIONS(2236), + [anon_sym__Alignas] = ACTIONS(2236), + [sym_primitive_type] = ACTIONS(2236), + [anon_sym_enum] = ACTIONS(2236), + [anon_sym_class] = ACTIONS(2236), + [anon_sym_struct] = ACTIONS(2236), + [anon_sym_union] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2236), + [anon_sym_decltype] = ACTIONS(2236), + [anon_sym_explicit] = ACTIONS(2236), + [anon_sym_typename] = ACTIONS(2236), + [anon_sym_template] = ACTIONS(2236), + [anon_sym_operator] = ACTIONS(2236), + [anon_sym_friend] = ACTIONS(2236), + [anon_sym_public] = ACTIONS(2236), + [anon_sym_private] = ACTIONS(2236), + [anon_sym_protected] = ACTIONS(2236), + [anon_sym_using] = ACTIONS(2236), + [anon_sym_static_assert] = ACTIONS(2236), + [sym_macro_statement] = ACTIONS(2236), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2236), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2236), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2236), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2236), + [anon_sym_MOZ_COLD] = ACTIONS(2236), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2236), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2236), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2236), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2236), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2236), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2236), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2236), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2236), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2236), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2236), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2236), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2236), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2236), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_NONNULL] = ACTIONS(2236), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2236), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2236), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2236), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2236), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2236), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2236), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2236), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2236), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2236), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2236), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2236), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2236), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2236), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2236), + [anon_sym_MOZ_RAII] = ACTIONS(2236), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2236), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2236), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2236), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2236), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2236), + }, + [STATE(1073)] = { + [sym_identifier] = ACTIONS(2264), + [aux_sym_preproc_def_token1] = ACTIONS(2264), + [aux_sym_preproc_if_token1] = ACTIONS(2264), + [aux_sym_preproc_if_token2] = ACTIONS(2264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2264), + [aux_sym_preproc_else_token1] = ACTIONS(2264), + [aux_sym_preproc_elif_token1] = ACTIONS(2264), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2264), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2264), + [sym_preproc_directive] = ACTIONS(2264), + [anon_sym_LPAREN2] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_STAR] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_AMP] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym___extension__] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2264), + [anon_sym_virtual] = ACTIONS(2264), + [anon_sym_extern] = ACTIONS(2264), + [anon_sym___attribute__] = ACTIONS(2264), + [anon_sym___attribute] = ACTIONS(2264), + [anon_sym_COLON_COLON] = ACTIONS(2266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2266), + [anon_sym___declspec] = ACTIONS(2264), + [anon_sym___based] = ACTIONS(2264), + [anon_sym_signed] = ACTIONS(2264), + [anon_sym_unsigned] = ACTIONS(2264), + [anon_sym_long] = ACTIONS(2264), + [anon_sym_short] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_register] = ACTIONS(2264), + [anon_sym_inline] = ACTIONS(2264), + [anon_sym___inline] = ACTIONS(2264), + [anon_sym___inline__] = ACTIONS(2264), + [anon_sym___forceinline] = ACTIONS(2264), + [anon_sym_thread_local] = ACTIONS(2264), + [anon_sym___thread] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_constexpr] = ACTIONS(2264), + [anon_sym_volatile] = ACTIONS(2264), + [anon_sym_restrict] = ACTIONS(2264), + [anon_sym___restrict__] = ACTIONS(2264), + [anon_sym__Atomic] = ACTIONS(2264), + [anon_sym__Noreturn] = ACTIONS(2264), + [anon_sym_noreturn] = ACTIONS(2264), + [anon_sym__Nonnull] = ACTIONS(2264), + [anon_sym_mutable] = ACTIONS(2264), + [anon_sym_constinit] = ACTIONS(2264), + [anon_sym_consteval] = ACTIONS(2264), + [anon_sym_alignas] = ACTIONS(2264), + [anon_sym__Alignas] = ACTIONS(2264), + [sym_primitive_type] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + [anon_sym_class] = ACTIONS(2264), + [anon_sym_struct] = ACTIONS(2264), + [anon_sym_union] = ACTIONS(2264), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2264), + [anon_sym_decltype] = ACTIONS(2264), + [anon_sym_explicit] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_template] = ACTIONS(2264), + [anon_sym_operator] = ACTIONS(2264), + [anon_sym_friend] = ACTIONS(2264), + [anon_sym_public] = ACTIONS(2264), + [anon_sym_private] = ACTIONS(2264), + [anon_sym_protected] = ACTIONS(2264), + [anon_sym_using] = ACTIONS(2264), + [anon_sym_static_assert] = ACTIONS(2264), + [sym_macro_statement] = ACTIONS(2264), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2264), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2264), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2264), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2264), + [anon_sym_MOZ_COLD] = ACTIONS(2264), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2264), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2264), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2264), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2264), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2264), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2264), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2264), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2264), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2264), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2264), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2264), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2264), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2264), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_NONNULL] = ACTIONS(2264), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2264), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2264), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2264), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2264), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2264), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2264), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2264), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2264), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2264), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2264), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2264), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2264), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2264), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2264), + [anon_sym_MOZ_RAII] = ACTIONS(2264), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2264), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2264), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2264), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2264), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2264), + }, + [STATE(1074)] = { + [sym_identifier] = ACTIONS(2444), + [aux_sym_preproc_def_token1] = ACTIONS(2444), + [aux_sym_preproc_if_token1] = ACTIONS(2444), + [aux_sym_preproc_if_token2] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [aux_sym_preproc_else_token1] = ACTIONS(2444), + [aux_sym_preproc_elif_token1] = ACTIONS(2444), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2444), + [sym_preproc_directive] = ACTIONS(2444), + [anon_sym_LPAREN2] = ACTIONS(2446), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_AMP_AMP] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_SEMI] = ACTIONS(2446), + [anon_sym___extension__] = ACTIONS(2444), + [anon_sym_typedef] = ACTIONS(2444), + [anon_sym_virtual] = ACTIONS(2444), + [anon_sym_extern] = ACTIONS(2444), + [anon_sym___attribute__] = ACTIONS(2444), + [anon_sym___attribute] = ACTIONS(2444), + [anon_sym_COLON_COLON] = ACTIONS(2446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2446), + [anon_sym___declspec] = ACTIONS(2444), + [anon_sym___based] = ACTIONS(2444), + [anon_sym_signed] = ACTIONS(2444), + [anon_sym_unsigned] = ACTIONS(2444), + [anon_sym_long] = ACTIONS(2444), + [anon_sym_short] = ACTIONS(2444), + [anon_sym_LBRACK] = ACTIONS(2444), + [anon_sym_static] = ACTIONS(2444), + [anon_sym_register] = ACTIONS(2444), + [anon_sym_inline] = ACTIONS(2444), + [anon_sym___inline] = ACTIONS(2444), + [anon_sym___inline__] = ACTIONS(2444), + [anon_sym___forceinline] = ACTIONS(2444), + [anon_sym_thread_local] = ACTIONS(2444), + [anon_sym___thread] = ACTIONS(2444), + [anon_sym_const] = ACTIONS(2444), + [anon_sym_constexpr] = ACTIONS(2444), + [anon_sym_volatile] = ACTIONS(2444), + [anon_sym_restrict] = ACTIONS(2444), + [anon_sym___restrict__] = ACTIONS(2444), + [anon_sym__Atomic] = ACTIONS(2444), + [anon_sym__Noreturn] = ACTIONS(2444), + [anon_sym_noreturn] = ACTIONS(2444), + [anon_sym__Nonnull] = ACTIONS(2444), + [anon_sym_mutable] = ACTIONS(2444), + [anon_sym_constinit] = ACTIONS(2444), + [anon_sym_consteval] = ACTIONS(2444), + [anon_sym_alignas] = ACTIONS(2444), + [anon_sym__Alignas] = ACTIONS(2444), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_enum] = ACTIONS(2444), + [anon_sym_class] = ACTIONS(2444), + [anon_sym_struct] = ACTIONS(2444), + [anon_sym_union] = ACTIONS(2444), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2444), + [anon_sym_decltype] = ACTIONS(2444), + [anon_sym_explicit] = ACTIONS(2444), + [anon_sym_typename] = ACTIONS(2444), + [anon_sym_template] = ACTIONS(2444), + [anon_sym_operator] = ACTIONS(2444), + [anon_sym_friend] = ACTIONS(2444), + [anon_sym_public] = ACTIONS(2444), + [anon_sym_private] = ACTIONS(2444), + [anon_sym_protected] = ACTIONS(2444), + [anon_sym_using] = ACTIONS(2444), + [anon_sym_static_assert] = ACTIONS(2444), + [sym_macro_statement] = ACTIONS(2444), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2444), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2444), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2444), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2444), + [anon_sym_MOZ_COLD] = ACTIONS(2444), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2444), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2444), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2444), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2444), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2444), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2444), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2444), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2444), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2444), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2444), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2444), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2444), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2444), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_NONNULL] = ACTIONS(2444), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2444), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2444), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2444), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2444), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2444), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2444), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2444), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2444), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2444), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2444), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2444), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2444), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2444), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2444), + [anon_sym_MOZ_RAII] = ACTIONS(2444), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2444), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2444), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2444), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2444), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2444), + }, + [STATE(1075)] = { + [sym_identifier] = ACTIONS(4468), + [aux_sym_preproc_def_token1] = ACTIONS(4468), + [aux_sym_preproc_if_token1] = ACTIONS(4468), + [aux_sym_preproc_if_token2] = ACTIONS(4468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4468), + [aux_sym_preproc_else_token1] = ACTIONS(4468), + [aux_sym_preproc_elif_token1] = ACTIONS(4468), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4468), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4468), + [sym_preproc_directive] = ACTIONS(4468), + [anon_sym_LPAREN2] = ACTIONS(4470), + [anon_sym_TILDE] = ACTIONS(4470), + [anon_sym_STAR] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4468), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym___extension__] = ACTIONS(4468), + [anon_sym_typedef] = ACTIONS(4468), + [anon_sym_virtual] = ACTIONS(4468), + [anon_sym_extern] = ACTIONS(4468), + [anon_sym___attribute__] = ACTIONS(4468), + [anon_sym___attribute] = ACTIONS(4468), + [anon_sym_COLON_COLON] = ACTIONS(4470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4470), + [anon_sym___declspec] = ACTIONS(4468), + [anon_sym___based] = ACTIONS(4468), + [anon_sym_signed] = ACTIONS(4468), + [anon_sym_unsigned] = ACTIONS(4468), + [anon_sym_long] = ACTIONS(4468), + [anon_sym_short] = ACTIONS(4468), + [anon_sym_LBRACK] = ACTIONS(4468), + [anon_sym_static] = ACTIONS(4468), + [anon_sym_register] = ACTIONS(4468), + [anon_sym_inline] = ACTIONS(4468), + [anon_sym___inline] = ACTIONS(4468), + [anon_sym___inline__] = ACTIONS(4468), + [anon_sym___forceinline] = ACTIONS(4468), + [anon_sym_thread_local] = ACTIONS(4468), + [anon_sym___thread] = ACTIONS(4468), + [anon_sym_const] = ACTIONS(4468), + [anon_sym_constexpr] = ACTIONS(4468), + [anon_sym_volatile] = ACTIONS(4468), + [anon_sym_restrict] = ACTIONS(4468), + [anon_sym___restrict__] = ACTIONS(4468), + [anon_sym__Atomic] = ACTIONS(4468), + [anon_sym__Noreturn] = ACTIONS(4468), + [anon_sym_noreturn] = ACTIONS(4468), + [anon_sym__Nonnull] = ACTIONS(4468), + [anon_sym_mutable] = ACTIONS(4468), + [anon_sym_constinit] = ACTIONS(4468), + [anon_sym_consteval] = ACTIONS(4468), + [anon_sym_alignas] = ACTIONS(4468), + [anon_sym__Alignas] = ACTIONS(4468), + [sym_primitive_type] = ACTIONS(4468), + [anon_sym_enum] = ACTIONS(4468), + [anon_sym_class] = ACTIONS(4468), + [anon_sym_struct] = ACTIONS(4468), + [anon_sym_union] = ACTIONS(4468), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4468), + [anon_sym_decltype] = ACTIONS(4468), + [anon_sym_explicit] = ACTIONS(4468), + [anon_sym_typename] = ACTIONS(4468), + [anon_sym_template] = ACTIONS(4468), + [anon_sym_operator] = ACTIONS(4468), + [anon_sym_friend] = ACTIONS(4468), + [anon_sym_public] = ACTIONS(4468), + [anon_sym_private] = ACTIONS(4468), + [anon_sym_protected] = ACTIONS(4468), + [anon_sym_using] = ACTIONS(4468), + [anon_sym_static_assert] = ACTIONS(4468), + [sym_macro_statement] = ACTIONS(4468), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4468), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4468), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4468), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4468), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4468), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4468), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4468), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4468), + [anon_sym_MOZ_COLD] = ACTIONS(4468), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4468), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4468), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4468), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4468), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4468), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4468), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4468), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4468), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4468), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4468), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4468), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4468), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4468), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4468), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4468), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4468), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4468), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4468), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4468), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4468), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_NONNULL] = ACTIONS(4468), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4468), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4468), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4468), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4468), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4468), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_NORETURN] = ACTIONS(4468), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4468), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4468), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4468), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4468), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4468), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4468), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4468), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4468), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4468), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4468), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4468), + [anon_sym_MOZ_RAII] = ACTIONS(4468), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4468), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4468), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4468), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4468), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4468), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4468), + }, + [STATE(1076)] = { + [sym_identifier] = ACTIONS(4472), + [aux_sym_preproc_def_token1] = ACTIONS(4472), + [aux_sym_preproc_if_token1] = ACTIONS(4472), + [aux_sym_preproc_if_token2] = ACTIONS(4472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4472), + [aux_sym_preproc_else_token1] = ACTIONS(4472), + [aux_sym_preproc_elif_token1] = ACTIONS(4472), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4472), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4472), + [sym_preproc_directive] = ACTIONS(4472), + [anon_sym_LPAREN2] = ACTIONS(4474), + [anon_sym_TILDE] = ACTIONS(4474), + [anon_sym_STAR] = ACTIONS(4474), + [anon_sym_AMP_AMP] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4472), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym___extension__] = ACTIONS(4472), + [anon_sym_typedef] = ACTIONS(4472), + [anon_sym_virtual] = ACTIONS(4472), + [anon_sym_extern] = ACTIONS(4472), + [anon_sym___attribute__] = ACTIONS(4472), + [anon_sym___attribute] = ACTIONS(4472), + [anon_sym_COLON_COLON] = ACTIONS(4474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4474), + [anon_sym___declspec] = ACTIONS(4472), + [anon_sym___based] = ACTIONS(4472), + [anon_sym_signed] = ACTIONS(4472), + [anon_sym_unsigned] = ACTIONS(4472), + [anon_sym_long] = ACTIONS(4472), + [anon_sym_short] = ACTIONS(4472), + [anon_sym_LBRACK] = ACTIONS(4472), + [anon_sym_static] = ACTIONS(4472), + [anon_sym_register] = ACTIONS(4472), + [anon_sym_inline] = ACTIONS(4472), + [anon_sym___inline] = ACTIONS(4472), + [anon_sym___inline__] = ACTIONS(4472), + [anon_sym___forceinline] = ACTIONS(4472), + [anon_sym_thread_local] = ACTIONS(4472), + [anon_sym___thread] = ACTIONS(4472), + [anon_sym_const] = ACTIONS(4472), + [anon_sym_constexpr] = ACTIONS(4472), + [anon_sym_volatile] = ACTIONS(4472), + [anon_sym_restrict] = ACTIONS(4472), + [anon_sym___restrict__] = ACTIONS(4472), + [anon_sym__Atomic] = ACTIONS(4472), + [anon_sym__Noreturn] = ACTIONS(4472), + [anon_sym_noreturn] = ACTIONS(4472), + [anon_sym__Nonnull] = ACTIONS(4472), + [anon_sym_mutable] = ACTIONS(4472), + [anon_sym_constinit] = ACTIONS(4472), + [anon_sym_consteval] = ACTIONS(4472), + [anon_sym_alignas] = ACTIONS(4472), + [anon_sym__Alignas] = ACTIONS(4472), + [sym_primitive_type] = ACTIONS(4472), + [anon_sym_enum] = ACTIONS(4472), + [anon_sym_class] = ACTIONS(4472), + [anon_sym_struct] = ACTIONS(4472), + [anon_sym_union] = ACTIONS(4472), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4472), + [anon_sym_decltype] = ACTIONS(4472), + [anon_sym_explicit] = ACTIONS(4472), + [anon_sym_typename] = ACTIONS(4472), + [anon_sym_template] = ACTIONS(4472), + [anon_sym_operator] = ACTIONS(4472), + [anon_sym_friend] = ACTIONS(4472), + [anon_sym_public] = ACTIONS(4472), + [anon_sym_private] = ACTIONS(4472), + [anon_sym_protected] = ACTIONS(4472), + [anon_sym_using] = ACTIONS(4472), + [anon_sym_static_assert] = ACTIONS(4472), + [sym_macro_statement] = ACTIONS(4472), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4472), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4472), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4472), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4472), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4472), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4472), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4472), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4472), + [anon_sym_MOZ_COLD] = ACTIONS(4472), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4472), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4472), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4472), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4472), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4472), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4472), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4472), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4472), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4472), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4472), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4472), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4472), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4472), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4472), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4472), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4472), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4472), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4472), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4472), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4472), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_NONNULL] = ACTIONS(4472), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4472), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4472), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4472), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4472), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4472), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_NORETURN] = ACTIONS(4472), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4472), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4472), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4472), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4472), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4472), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4472), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4472), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4472), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4472), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4472), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4472), + [anon_sym_MOZ_RAII] = ACTIONS(4472), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4472), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4472), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4472), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4472), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4472), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4472), + }, + [STATE(1077)] = { + [sym_identifier] = ACTIONS(2396), + [aux_sym_preproc_def_token1] = ACTIONS(2396), + [aux_sym_preproc_if_token1] = ACTIONS(2396), + [aux_sym_preproc_if_token2] = ACTIONS(2396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2396), + [aux_sym_preproc_else_token1] = ACTIONS(2396), + [aux_sym_preproc_elif_token1] = ACTIONS(2396), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2396), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2396), + [sym_preproc_directive] = ACTIONS(2396), + [anon_sym_LPAREN2] = ACTIONS(2398), + [anon_sym_TILDE] = ACTIONS(2398), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym___extension__] = ACTIONS(2396), + [anon_sym_typedef] = ACTIONS(2396), + [anon_sym_virtual] = ACTIONS(2396), + [anon_sym_extern] = ACTIONS(2396), + [anon_sym___attribute__] = ACTIONS(2396), + [anon_sym___attribute] = ACTIONS(2396), + [anon_sym_COLON_COLON] = ACTIONS(2398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2398), + [anon_sym___declspec] = ACTIONS(2396), + [anon_sym___based] = ACTIONS(2396), + [anon_sym_signed] = ACTIONS(2396), + [anon_sym_unsigned] = ACTIONS(2396), + [anon_sym_long] = ACTIONS(2396), + [anon_sym_short] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_register] = ACTIONS(2396), + [anon_sym_inline] = ACTIONS(2396), + [anon_sym___inline] = ACTIONS(2396), + [anon_sym___inline__] = ACTIONS(2396), + [anon_sym___forceinline] = ACTIONS(2396), + [anon_sym_thread_local] = ACTIONS(2396), + [anon_sym___thread] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_constexpr] = ACTIONS(2396), + [anon_sym_volatile] = ACTIONS(2396), + [anon_sym_restrict] = ACTIONS(2396), + [anon_sym___restrict__] = ACTIONS(2396), + [anon_sym__Atomic] = ACTIONS(2396), + [anon_sym__Noreturn] = ACTIONS(2396), + [anon_sym_noreturn] = ACTIONS(2396), + [anon_sym__Nonnull] = ACTIONS(2396), + [anon_sym_mutable] = ACTIONS(2396), + [anon_sym_constinit] = ACTIONS(2396), + [anon_sym_consteval] = ACTIONS(2396), + [anon_sym_alignas] = ACTIONS(2396), + [anon_sym__Alignas] = ACTIONS(2396), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_struct] = ACTIONS(2396), + [anon_sym_union] = ACTIONS(2396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2396), + [anon_sym_decltype] = ACTIONS(2396), + [anon_sym_explicit] = ACTIONS(2396), + [anon_sym_typename] = ACTIONS(2396), + [anon_sym_template] = ACTIONS(2396), + [anon_sym_operator] = ACTIONS(2396), + [anon_sym_friend] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_static_assert] = ACTIONS(2396), + [sym_macro_statement] = ACTIONS(2396), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2396), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2396), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2396), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2396), + [anon_sym_MOZ_COLD] = ACTIONS(2396), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2396), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2396), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2396), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2396), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2396), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2396), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2396), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2396), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2396), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2396), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2396), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2396), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2396), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_NONNULL] = ACTIONS(2396), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2396), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2396), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2396), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2396), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2396), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2396), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2396), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2396), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2396), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2396), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2396), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2396), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2396), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2396), + [anon_sym_MOZ_RAII] = ACTIONS(2396), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2396), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2396), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2396), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2396), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2396), + }, + [STATE(1078)] = { + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token2] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [aux_sym_preproc_else_token1] = ACTIONS(2450), + [aux_sym_preproc_elif_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_AMP_AMP] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_virtual] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_COLON_COLON] = ACTIONS(2452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___based] = ACTIONS(2450), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_mutable] = ACTIONS(2450), + [anon_sym_constinit] = ACTIONS(2450), + [anon_sym_consteval] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_class] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2450), + [anon_sym_decltype] = ACTIONS(2450), + [anon_sym_explicit] = ACTIONS(2450), + [anon_sym_typename] = ACTIONS(2450), + [anon_sym_template] = ACTIONS(2450), + [anon_sym_operator] = ACTIONS(2450), + [anon_sym_friend] = ACTIONS(2450), + [anon_sym_public] = ACTIONS(2450), + [anon_sym_private] = ACTIONS(2450), + [anon_sym_protected] = ACTIONS(2450), + [anon_sym_using] = ACTIONS(2450), + [anon_sym_static_assert] = ACTIONS(2450), + [sym_macro_statement] = ACTIONS(2450), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2450), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2450), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2450), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2450), + [anon_sym_MOZ_COLD] = ACTIONS(2450), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2450), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2450), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2450), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2450), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2450), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2450), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2450), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2450), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2450), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2450), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2450), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2450), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2450), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_NONNULL] = ACTIONS(2450), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2450), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2450), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2450), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2450), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2450), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2450), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2450), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2450), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2450), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2450), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2450), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2450), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2450), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2450), + [anon_sym_MOZ_RAII] = ACTIONS(2450), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2450), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2450), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2450), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2450), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2450), + }, + [STATE(1079)] = { + [sym_identifier] = ACTIONS(4364), + [aux_sym_preproc_def_token1] = ACTIONS(4364), + [aux_sym_preproc_if_token1] = ACTIONS(4364), + [aux_sym_preproc_if_token2] = ACTIONS(4364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4364), + [aux_sym_preproc_else_token1] = ACTIONS(4364), + [aux_sym_preproc_elif_token1] = ACTIONS(4364), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4364), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4364), + [sym_preproc_directive] = ACTIONS(4364), + [anon_sym_LPAREN2] = ACTIONS(4366), + [anon_sym_TILDE] = ACTIONS(4366), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4364), + [anon_sym_SEMI] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(4364), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(4364), + [anon_sym_extern] = ACTIONS(4364), + [anon_sym___attribute__] = ACTIONS(4364), + [anon_sym___attribute] = ACTIONS(4364), + [anon_sym_COLON_COLON] = ACTIONS(4366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4366), + [anon_sym___declspec] = ACTIONS(4364), + [anon_sym___based] = ACTIONS(4364), + [anon_sym_signed] = ACTIONS(4364), + [anon_sym_unsigned] = ACTIONS(4364), + [anon_sym_long] = ACTIONS(4364), + [anon_sym_short] = ACTIONS(4364), + [anon_sym_LBRACK] = ACTIONS(4364), + [anon_sym_static] = ACTIONS(4364), + [anon_sym_register] = ACTIONS(4364), + [anon_sym_inline] = ACTIONS(4364), + [anon_sym___inline] = ACTIONS(4364), + [anon_sym___inline__] = ACTIONS(4364), + [anon_sym___forceinline] = ACTIONS(4364), + [anon_sym_thread_local] = ACTIONS(4364), + [anon_sym___thread] = ACTIONS(4364), + [anon_sym_const] = ACTIONS(4364), + [anon_sym_constexpr] = ACTIONS(4364), + [anon_sym_volatile] = ACTIONS(4364), + [anon_sym_restrict] = ACTIONS(4364), + [anon_sym___restrict__] = ACTIONS(4364), + [anon_sym__Atomic] = ACTIONS(4364), + [anon_sym__Noreturn] = ACTIONS(4364), + [anon_sym_noreturn] = ACTIONS(4364), + [anon_sym__Nonnull] = ACTIONS(4364), + [anon_sym_mutable] = ACTIONS(4364), + [anon_sym_constinit] = ACTIONS(4364), + [anon_sym_consteval] = ACTIONS(4364), + [anon_sym_alignas] = ACTIONS(4364), + [anon_sym__Alignas] = ACTIONS(4364), + [sym_primitive_type] = ACTIONS(4364), + [anon_sym_enum] = ACTIONS(4364), + [anon_sym_class] = ACTIONS(4364), + [anon_sym_struct] = ACTIONS(4364), + [anon_sym_union] = ACTIONS(4364), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4364), + [anon_sym_decltype] = ACTIONS(4364), + [anon_sym_explicit] = ACTIONS(4364), + [anon_sym_typename] = ACTIONS(4364), + [anon_sym_template] = ACTIONS(4364), + [anon_sym_operator] = ACTIONS(4364), + [anon_sym_friend] = ACTIONS(4364), + [anon_sym_public] = ACTIONS(4364), + [anon_sym_private] = ACTIONS(4364), + [anon_sym_protected] = ACTIONS(4364), + [anon_sym_using] = ACTIONS(4364), + [anon_sym_static_assert] = ACTIONS(4364), + [sym_macro_statement] = ACTIONS(4364), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4364), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4364), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4364), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4364), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4364), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4364), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4364), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4364), + [anon_sym_MOZ_COLD] = ACTIONS(4364), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4364), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4364), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4364), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4364), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4364), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4364), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4364), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4364), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4364), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4364), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4364), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4364), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4364), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4364), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4364), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4364), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4364), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4364), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4364), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4364), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_NONNULL] = ACTIONS(4364), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4364), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4364), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4364), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4364), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4364), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_NORETURN] = ACTIONS(4364), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4364), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4364), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4364), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4364), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4364), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4364), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4364), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4364), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4364), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4364), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4364), + [anon_sym_MOZ_RAII] = ACTIONS(4364), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4364), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4364), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4364), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4364), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4364), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4364), + }, + [STATE(1080)] = { + [sym_identifier] = ACTIONS(2202), + [aux_sym_preproc_def_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token2] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2202), + [aux_sym_preproc_else_token1] = ACTIONS(2202), + [aux_sym_preproc_elif_token1] = ACTIONS(2202), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2202), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2202), + [sym_preproc_directive] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym___extension__] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2202), + [anon_sym_virtual] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym___attribute__] = ACTIONS(2202), + [anon_sym___attribute] = ACTIONS(2202), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2204), + [anon_sym___declspec] = ACTIONS(2202), + [anon_sym___based] = ACTIONS(2202), + [anon_sym_signed] = ACTIONS(2202), + [anon_sym_unsigned] = ACTIONS(2202), + [anon_sym_long] = ACTIONS(2202), + [anon_sym_short] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_register] = ACTIONS(2202), + [anon_sym_inline] = ACTIONS(2202), + [anon_sym___inline] = ACTIONS(2202), + [anon_sym___inline__] = ACTIONS(2202), + [anon_sym___forceinline] = ACTIONS(2202), + [anon_sym_thread_local] = ACTIONS(2202), + [anon_sym___thread] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_constexpr] = ACTIONS(2202), + [anon_sym_volatile] = ACTIONS(2202), + [anon_sym_restrict] = ACTIONS(2202), + [anon_sym___restrict__] = ACTIONS(2202), + [anon_sym__Atomic] = ACTIONS(2202), + [anon_sym__Noreturn] = ACTIONS(2202), + [anon_sym_noreturn] = ACTIONS(2202), + [anon_sym__Nonnull] = ACTIONS(2202), + [anon_sym_mutable] = ACTIONS(2202), + [anon_sym_constinit] = ACTIONS(2202), + [anon_sym_consteval] = ACTIONS(2202), + [anon_sym_alignas] = ACTIONS(2202), + [anon_sym__Alignas] = ACTIONS(2202), + [sym_primitive_type] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_class] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2202), + [anon_sym_decltype] = ACTIONS(2202), + [anon_sym_explicit] = ACTIONS(2202), + [anon_sym_typename] = ACTIONS(2202), + [anon_sym_template] = ACTIONS(2202), + [anon_sym_operator] = ACTIONS(2202), + [anon_sym_friend] = ACTIONS(2202), + [anon_sym_public] = ACTIONS(2202), + [anon_sym_private] = ACTIONS(2202), + [anon_sym_protected] = ACTIONS(2202), + [anon_sym_using] = ACTIONS(2202), + [anon_sym_static_assert] = ACTIONS(2202), + [sym_macro_statement] = ACTIONS(2202), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2202), + [anon_sym_MOZ_COLD] = ACTIONS(2202), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2202), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2202), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2202), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2202), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2202), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2202), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2202), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2202), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2202), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2202), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2202), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2202), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_RAII] = ACTIONS(2202), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2202), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2202), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2202), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2202), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2202), + }, + [STATE(1081)] = { + [sym_identifier] = ACTIONS(2202), + [aux_sym_preproc_def_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token2] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2202), + [aux_sym_preproc_else_token1] = ACTIONS(2202), + [aux_sym_preproc_elif_token1] = ACTIONS(2202), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2202), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2202), + [sym_preproc_directive] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym___extension__] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2202), + [anon_sym_virtual] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym___attribute__] = ACTIONS(2202), + [anon_sym___attribute] = ACTIONS(2202), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2204), + [anon_sym___declspec] = ACTIONS(2202), + [anon_sym___based] = ACTIONS(2202), + [anon_sym_signed] = ACTIONS(2202), + [anon_sym_unsigned] = ACTIONS(2202), + [anon_sym_long] = ACTIONS(2202), + [anon_sym_short] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_register] = ACTIONS(2202), + [anon_sym_inline] = ACTIONS(2202), + [anon_sym___inline] = ACTIONS(2202), + [anon_sym___inline__] = ACTIONS(2202), + [anon_sym___forceinline] = ACTIONS(2202), + [anon_sym_thread_local] = ACTIONS(2202), + [anon_sym___thread] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_constexpr] = ACTIONS(2202), + [anon_sym_volatile] = ACTIONS(2202), + [anon_sym_restrict] = ACTIONS(2202), + [anon_sym___restrict__] = ACTIONS(2202), + [anon_sym__Atomic] = ACTIONS(2202), + [anon_sym__Noreturn] = ACTIONS(2202), + [anon_sym_noreturn] = ACTIONS(2202), + [anon_sym__Nonnull] = ACTIONS(2202), + [anon_sym_mutable] = ACTIONS(2202), + [anon_sym_constinit] = ACTIONS(2202), + [anon_sym_consteval] = ACTIONS(2202), + [anon_sym_alignas] = ACTIONS(2202), + [anon_sym__Alignas] = ACTIONS(2202), + [sym_primitive_type] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_class] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2202), + [anon_sym_decltype] = ACTIONS(2202), + [anon_sym_explicit] = ACTIONS(2202), + [anon_sym_typename] = ACTIONS(2202), + [anon_sym_template] = ACTIONS(2202), + [anon_sym_operator] = ACTIONS(2202), + [anon_sym_friend] = ACTIONS(2202), + [anon_sym_public] = ACTIONS(2202), + [anon_sym_private] = ACTIONS(2202), + [anon_sym_protected] = ACTIONS(2202), + [anon_sym_using] = ACTIONS(2202), + [anon_sym_static_assert] = ACTIONS(2202), + [sym_macro_statement] = ACTIONS(2202), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2202), + [anon_sym_MOZ_COLD] = ACTIONS(2202), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2202), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2202), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2202), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2202), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2202), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2202), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2202), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2202), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2202), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2202), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2202), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2202), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_RAII] = ACTIONS(2202), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2202), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2202), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2202), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2202), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2202), + }, + [STATE(1082)] = { + [sym_identifier] = ACTIONS(2156), + [aux_sym_preproc_def_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token2] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2156), + [aux_sym_preproc_else_token1] = ACTIONS(2156), + [aux_sym_preproc_elif_token1] = ACTIONS(2156), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2156), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2156), + [sym_preproc_directive] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2158), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym___extension__] = ACTIONS(2156), + [anon_sym_typedef] = ACTIONS(2156), + [anon_sym_virtual] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym___attribute__] = ACTIONS(2156), + [anon_sym___attribute] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2158), + [anon_sym___declspec] = ACTIONS(2156), + [anon_sym___based] = ACTIONS(2156), + [anon_sym_signed] = ACTIONS(2156), + [anon_sym_unsigned] = ACTIONS(2156), + [anon_sym_long] = ACTIONS(2156), + [anon_sym_short] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_inline] = ACTIONS(2156), + [anon_sym___inline] = ACTIONS(2156), + [anon_sym___inline__] = ACTIONS(2156), + [anon_sym___forceinline] = ACTIONS(2156), + [anon_sym_thread_local] = ACTIONS(2156), + [anon_sym___thread] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_constexpr] = ACTIONS(2156), + [anon_sym_volatile] = ACTIONS(2156), + [anon_sym_restrict] = ACTIONS(2156), + [anon_sym___restrict__] = ACTIONS(2156), + [anon_sym__Atomic] = ACTIONS(2156), + [anon_sym__Noreturn] = ACTIONS(2156), + [anon_sym_noreturn] = ACTIONS(2156), + [anon_sym__Nonnull] = ACTIONS(2156), + [anon_sym_mutable] = ACTIONS(2156), + [anon_sym_constinit] = ACTIONS(2156), + [anon_sym_consteval] = ACTIONS(2156), + [anon_sym_alignas] = ACTIONS(2156), + [anon_sym__Alignas] = ACTIONS(2156), + [sym_primitive_type] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2156), + [anon_sym_decltype] = ACTIONS(2156), + [anon_sym_explicit] = ACTIONS(2156), + [anon_sym_typename] = ACTIONS(2156), + [anon_sym_template] = ACTIONS(2156), + [anon_sym_operator] = ACTIONS(2156), + [anon_sym_friend] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_static_assert] = ACTIONS(2156), + [sym_macro_statement] = ACTIONS(2156), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2156), + [anon_sym_MOZ_COLD] = ACTIONS(2156), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2156), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2156), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2156), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2156), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2156), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2156), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2156), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2156), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2156), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2156), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2156), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2156), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_RAII] = ACTIONS(2156), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2156), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2156), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2156), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2156), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2156), + }, + [STATE(1083)] = { + [sym_catch_clause] = STATE(1086), + [aux_sym_constructor_try_statement_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(1939), + [aux_sym_preproc_def_token1] = ACTIONS(1939), + [aux_sym_preproc_if_token1] = ACTIONS(1939), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1939), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1939), + [sym_preproc_directive] = ACTIONS(1939), + [anon_sym_LPAREN2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym___extension__] = ACTIONS(1939), + [anon_sym_typedef] = ACTIONS(1939), + [anon_sym_virtual] = ACTIONS(1939), + [anon_sym_extern] = ACTIONS(1939), + [anon_sym___attribute__] = ACTIONS(1939), + [anon_sym___attribute] = ACTIONS(1939), + [anon_sym_COLON_COLON] = ACTIONS(1941), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1941), + [anon_sym___declspec] = ACTIONS(1939), + [anon_sym___based] = ACTIONS(1939), + [anon_sym_RBRACE] = ACTIONS(1941), + [anon_sym_signed] = ACTIONS(1939), + [anon_sym_unsigned] = ACTIONS(1939), + [anon_sym_long] = ACTIONS(1939), + [anon_sym_short] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1939), + [anon_sym_static] = ACTIONS(1939), + [anon_sym_register] = ACTIONS(1939), + [anon_sym_inline] = ACTIONS(1939), + [anon_sym___inline] = ACTIONS(1939), + [anon_sym___inline__] = ACTIONS(1939), + [anon_sym___forceinline] = ACTIONS(1939), + [anon_sym_thread_local] = ACTIONS(1939), + [anon_sym___thread] = ACTIONS(1939), + [anon_sym_const] = ACTIONS(1939), + [anon_sym_constexpr] = ACTIONS(1939), + [anon_sym_volatile] = ACTIONS(1939), + [anon_sym_restrict] = ACTIONS(1939), + [anon_sym___restrict__] = ACTIONS(1939), + [anon_sym__Atomic] = ACTIONS(1939), + [anon_sym__Noreturn] = ACTIONS(1939), + [anon_sym_noreturn] = ACTIONS(1939), + [anon_sym__Nonnull] = ACTIONS(1939), + [anon_sym_mutable] = ACTIONS(1939), + [anon_sym_constinit] = ACTIONS(1939), + [anon_sym_consteval] = ACTIONS(1939), + [anon_sym_alignas] = ACTIONS(1939), + [anon_sym__Alignas] = ACTIONS(1939), + [sym_primitive_type] = ACTIONS(1939), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_class] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(1939), + [anon_sym_union] = ACTIONS(1939), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1939), + [anon_sym_decltype] = ACTIONS(1939), + [anon_sym_explicit] = ACTIONS(1939), + [anon_sym_typename] = ACTIONS(1939), + [anon_sym_template] = ACTIONS(1939), + [anon_sym_operator] = ACTIONS(1939), + [anon_sym_friend] = ACTIONS(1939), + [anon_sym_public] = ACTIONS(1939), + [anon_sym_private] = ACTIONS(1939), + [anon_sym_protected] = ACTIONS(1939), + [anon_sym_using] = ACTIONS(1939), + [anon_sym_static_assert] = ACTIONS(1939), + [anon_sym_catch] = ACTIONS(4476), + [sym_macro_statement] = ACTIONS(1939), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1939), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1939), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1939), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1939), + [anon_sym_MOZ_COLD] = ACTIONS(1939), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1939), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1939), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1939), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1939), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1939), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1939), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1939), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1939), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1939), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1939), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1939), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1939), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1939), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_NONNULL] = ACTIONS(1939), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1939), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1939), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1939), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1939), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1939), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1939), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1939), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1939), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1939), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1939), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1939), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1939), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1939), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1939), + [anon_sym_MOZ_RAII] = ACTIONS(1939), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1939), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1939), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1939), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1939), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1939), + }, + [STATE(1084)] = { + [sym_identifier] = ACTIONS(4478), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4480), + [anon_sym_COMMA] = ACTIONS(4480), + [anon_sym_RPAREN] = ACTIONS(4480), + [anon_sym_LPAREN2] = ACTIONS(4480), + [anon_sym_TILDE] = ACTIONS(4480), + [anon_sym_STAR] = ACTIONS(4480), + [anon_sym_AMP_AMP] = ACTIONS(4480), + [anon_sym_AMP] = ACTIONS(4478), + [anon_sym_SEMI] = ACTIONS(4480), + [anon_sym___extension__] = ACTIONS(4478), + [anon_sym_virtual] = ACTIONS(4478), + [anon_sym_extern] = ACTIONS(4478), + [anon_sym___attribute__] = ACTIONS(4478), + [anon_sym___attribute] = ACTIONS(4478), + [anon_sym_COLON_COLON] = ACTIONS(4480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4480), + [anon_sym___declspec] = ACTIONS(4478), + [anon_sym___based] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(4480), + [anon_sym_signed] = ACTIONS(4478), + [anon_sym_unsigned] = ACTIONS(4478), + [anon_sym_long] = ACTIONS(4478), + [anon_sym_short] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_static] = ACTIONS(4478), + [anon_sym_RBRACK] = ACTIONS(4480), + [anon_sym_EQ] = ACTIONS(4480), + [anon_sym_register] = ACTIONS(4478), + [anon_sym_inline] = ACTIONS(4478), + [anon_sym___inline] = ACTIONS(4478), + [anon_sym___inline__] = ACTIONS(4478), + [anon_sym___forceinline] = ACTIONS(4478), + [anon_sym_thread_local] = ACTIONS(4478), + [anon_sym___thread] = ACTIONS(4478), + [anon_sym_const] = ACTIONS(4478), + [anon_sym_constexpr] = ACTIONS(4478), + [anon_sym_volatile] = ACTIONS(4478), + [anon_sym_restrict] = ACTIONS(4478), + [anon_sym___restrict__] = ACTIONS(4478), + [anon_sym__Atomic] = ACTIONS(4478), + [anon_sym__Noreturn] = ACTIONS(4478), + [anon_sym_noreturn] = ACTIONS(4478), + [anon_sym__Nonnull] = ACTIONS(4478), + [anon_sym_mutable] = ACTIONS(4478), + [anon_sym_constinit] = ACTIONS(4478), + [anon_sym_consteval] = ACTIONS(4478), + [anon_sym_alignas] = ACTIONS(4478), + [anon_sym__Alignas] = ACTIONS(4478), + [sym_primitive_type] = ACTIONS(4478), + [anon_sym_enum] = ACTIONS(4478), + [anon_sym_class] = ACTIONS(4478), + [anon_sym_struct] = ACTIONS(4478), + [anon_sym_union] = ACTIONS(4478), + [anon_sym_asm] = ACTIONS(4478), + [anon_sym___asm__] = ACTIONS(4478), + [anon_sym___asm] = ACTIONS(4478), + [anon_sym_DASH_GT] = ACTIONS(4480), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4478), + [anon_sym_decltype] = ACTIONS(4478), + [anon_sym_final] = ACTIONS(4478), + [anon_sym_override] = ACTIONS(4478), + [anon_sym_explicit] = ACTIONS(4478), + [anon_sym_typename] = ACTIONS(4478), + [anon_sym_template] = ACTIONS(4478), + [anon_sym_GT2] = ACTIONS(4480), + [anon_sym_operator] = ACTIONS(4478), + [anon_sym_try] = ACTIONS(4478), + [anon_sym_noexcept] = ACTIONS(4478), + [anon_sym_throw] = ACTIONS(4478), + [anon_sym_requires] = ACTIONS(4478), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4478), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4478), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4478), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4478), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4478), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4478), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4478), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4478), + [anon_sym_MOZ_COLD] = ACTIONS(4478), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4478), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4478), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4478), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4478), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4478), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4478), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4478), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4478), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4478), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4478), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4478), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4478), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4478), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4478), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4478), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4478), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4478), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4478), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4478), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4478), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4478), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4478), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4478), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4478), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4478), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4478), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4478), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4478), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4478), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4478), + [anon_sym_MOZ_NONNULL] = ACTIONS(4478), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4478), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4478), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4478), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4478), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4478), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4478), + [anon_sym_MOZ_NORETURN] = ACTIONS(4478), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4478), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4478), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4478), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4478), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4478), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4478), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4478), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4478), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4478), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4478), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4478), + [anon_sym_MOZ_RAII] = ACTIONS(4478), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4478), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4478), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4478), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4478), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4478), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4478), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4478), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4478), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4478), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4478), + }, + [STATE(1085)] = { + [sym_catch_clause] = STATE(1086), + [aux_sym_constructor_try_statement_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(1931), + [aux_sym_preproc_def_token1] = ACTIONS(1931), + [aux_sym_preproc_if_token1] = ACTIONS(1931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1931), + [sym_preproc_directive] = ACTIONS(1931), + [anon_sym_LPAREN2] = ACTIONS(1933), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_AMP_AMP] = ACTIONS(1933), + [anon_sym_AMP] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym___extension__] = ACTIONS(1931), + [anon_sym_typedef] = ACTIONS(1931), + [anon_sym_virtual] = ACTIONS(1931), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym___attribute__] = ACTIONS(1931), + [anon_sym___attribute] = ACTIONS(1931), + [anon_sym_COLON_COLON] = ACTIONS(1933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1933), + [anon_sym___declspec] = ACTIONS(1931), + [anon_sym___based] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_static] = ACTIONS(1931), + [anon_sym_register] = ACTIONS(1931), + [anon_sym_inline] = ACTIONS(1931), + [anon_sym___inline] = ACTIONS(1931), + [anon_sym___inline__] = ACTIONS(1931), + [anon_sym___forceinline] = ACTIONS(1931), + [anon_sym_thread_local] = ACTIONS(1931), + [anon_sym___thread] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_constexpr] = ACTIONS(1931), + [anon_sym_volatile] = ACTIONS(1931), + [anon_sym_restrict] = ACTIONS(1931), + [anon_sym___restrict__] = ACTIONS(1931), + [anon_sym__Atomic] = ACTIONS(1931), + [anon_sym__Noreturn] = ACTIONS(1931), + [anon_sym_noreturn] = ACTIONS(1931), + [anon_sym__Nonnull] = ACTIONS(1931), + [anon_sym_mutable] = ACTIONS(1931), + [anon_sym_constinit] = ACTIONS(1931), + [anon_sym_consteval] = ACTIONS(1931), + [anon_sym_alignas] = ACTIONS(1931), + [anon_sym__Alignas] = ACTIONS(1931), + [sym_primitive_type] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [anon_sym_class] = ACTIONS(1931), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_union] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1931), + [anon_sym_decltype] = ACTIONS(1931), + [anon_sym_explicit] = ACTIONS(1931), + [anon_sym_typename] = ACTIONS(1931), + [anon_sym_template] = ACTIONS(1931), + [anon_sym_operator] = ACTIONS(1931), + [anon_sym_friend] = ACTIONS(1931), + [anon_sym_public] = ACTIONS(1931), + [anon_sym_private] = ACTIONS(1931), + [anon_sym_protected] = ACTIONS(1931), + [anon_sym_using] = ACTIONS(1931), + [anon_sym_static_assert] = ACTIONS(1931), + [anon_sym_catch] = ACTIONS(4476), + [sym_macro_statement] = ACTIONS(1931), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1931), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1931), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1931), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1931), + [anon_sym_MOZ_COLD] = ACTIONS(1931), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1931), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1931), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1931), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1931), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1931), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1931), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1931), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1931), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1931), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1931), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1931), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1931), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1931), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_NONNULL] = ACTIONS(1931), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1931), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1931), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1931), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1931), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1931), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1931), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1931), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1931), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1931), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1931), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1931), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1931), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1931), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1931), + [anon_sym_MOZ_RAII] = ACTIONS(1931), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1931), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1931), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1931), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1931), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1931), + }, + [STATE(1086)] = { + [sym_catch_clause] = STATE(1086), + [aux_sym_constructor_try_statement_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(1924), + [aux_sym_preproc_def_token1] = ACTIONS(1924), + [aux_sym_preproc_if_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1924), + [sym_preproc_directive] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_AMP_AMP] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym___extension__] = ACTIONS(1924), + [anon_sym_typedef] = ACTIONS(1924), + [anon_sym_virtual] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym___attribute__] = ACTIONS(1924), + [anon_sym___attribute] = ACTIONS(1924), + [anon_sym_COLON_COLON] = ACTIONS(1926), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1926), + [anon_sym___declspec] = ACTIONS(1924), + [anon_sym___based] = ACTIONS(1924), + [anon_sym_RBRACE] = ACTIONS(1926), + [anon_sym_signed] = ACTIONS(1924), + [anon_sym_unsigned] = ACTIONS(1924), + [anon_sym_long] = ACTIONS(1924), + [anon_sym_short] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_register] = ACTIONS(1924), + [anon_sym_inline] = ACTIONS(1924), + [anon_sym___inline] = ACTIONS(1924), + [anon_sym___inline__] = ACTIONS(1924), + [anon_sym___forceinline] = ACTIONS(1924), + [anon_sym_thread_local] = ACTIONS(1924), + [anon_sym___thread] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_constexpr] = ACTIONS(1924), + [anon_sym_volatile] = ACTIONS(1924), + [anon_sym_restrict] = ACTIONS(1924), + [anon_sym___restrict__] = ACTIONS(1924), + [anon_sym__Atomic] = ACTIONS(1924), + [anon_sym__Noreturn] = ACTIONS(1924), + [anon_sym_noreturn] = ACTIONS(1924), + [anon_sym__Nonnull] = ACTIONS(1924), + [anon_sym_mutable] = ACTIONS(1924), + [anon_sym_constinit] = ACTIONS(1924), + [anon_sym_consteval] = ACTIONS(1924), + [anon_sym_alignas] = ACTIONS(1924), + [anon_sym__Alignas] = ACTIONS(1924), + [sym_primitive_type] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_class] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1924), + [anon_sym_decltype] = ACTIONS(1924), + [anon_sym_explicit] = ACTIONS(1924), + [anon_sym_typename] = ACTIONS(1924), + [anon_sym_template] = ACTIONS(1924), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_friend] = ACTIONS(1924), + [anon_sym_public] = ACTIONS(1924), + [anon_sym_private] = ACTIONS(1924), + [anon_sym_protected] = ACTIONS(1924), + [anon_sym_using] = ACTIONS(1924), + [anon_sym_static_assert] = ACTIONS(1924), + [anon_sym_catch] = ACTIONS(4482), + [sym_macro_statement] = ACTIONS(1924), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1924), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1924), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1924), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1924), + [anon_sym_MOZ_COLD] = ACTIONS(1924), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1924), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1924), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1924), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1924), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1924), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1924), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1924), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1924), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1924), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1924), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1924), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1924), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1924), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_NONNULL] = ACTIONS(1924), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1924), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1924), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1924), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1924), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1924), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1924), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1924), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1924), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1924), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1924), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1924), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1924), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1924), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1924), + [anon_sym_MOZ_RAII] = ACTIONS(1924), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1924), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1924), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1924), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1924), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1924), + }, + [STATE(1087)] = { + [sym_catch_clause] = STATE(1090), + [aux_sym_constructor_try_statement_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(1943), + [aux_sym_preproc_def_token1] = ACTIONS(1943), + [aux_sym_preproc_if_token1] = ACTIONS(1943), + [aux_sym_preproc_if_token2] = ACTIONS(1943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1943), + [sym_preproc_directive] = ACTIONS(1943), + [anon_sym_LPAREN2] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_AMP_AMP] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_SEMI] = ACTIONS(1945), + [anon_sym___extension__] = ACTIONS(1943), + [anon_sym_typedef] = ACTIONS(1943), + [anon_sym_virtual] = ACTIONS(1943), + [anon_sym_extern] = ACTIONS(1943), + [anon_sym___attribute__] = ACTIONS(1943), + [anon_sym___attribute] = ACTIONS(1943), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1945), + [anon_sym___declspec] = ACTIONS(1943), + [anon_sym___based] = ACTIONS(1943), + [anon_sym_signed] = ACTIONS(1943), + [anon_sym_unsigned] = ACTIONS(1943), + [anon_sym_long] = ACTIONS(1943), + [anon_sym_short] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_static] = ACTIONS(1943), + [anon_sym_register] = ACTIONS(1943), + [anon_sym_inline] = ACTIONS(1943), + [anon_sym___inline] = ACTIONS(1943), + [anon_sym___inline__] = ACTIONS(1943), + [anon_sym___forceinline] = ACTIONS(1943), + [anon_sym_thread_local] = ACTIONS(1943), + [anon_sym___thread] = ACTIONS(1943), + [anon_sym_const] = ACTIONS(1943), + [anon_sym_constexpr] = ACTIONS(1943), + [anon_sym_volatile] = ACTIONS(1943), + [anon_sym_restrict] = ACTIONS(1943), + [anon_sym___restrict__] = ACTIONS(1943), + [anon_sym__Atomic] = ACTIONS(1943), + [anon_sym__Noreturn] = ACTIONS(1943), + [anon_sym_noreturn] = ACTIONS(1943), + [anon_sym__Nonnull] = ACTIONS(1943), + [anon_sym_mutable] = ACTIONS(1943), + [anon_sym_constinit] = ACTIONS(1943), + [anon_sym_consteval] = ACTIONS(1943), + [anon_sym_alignas] = ACTIONS(1943), + [anon_sym__Alignas] = ACTIONS(1943), + [sym_primitive_type] = ACTIONS(1943), + [anon_sym_enum] = ACTIONS(1943), + [anon_sym_class] = ACTIONS(1943), + [anon_sym_struct] = ACTIONS(1943), + [anon_sym_union] = ACTIONS(1943), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1943), + [anon_sym_decltype] = ACTIONS(1943), + [anon_sym_explicit] = ACTIONS(1943), + [anon_sym_typename] = ACTIONS(1943), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_operator] = ACTIONS(1943), + [anon_sym_friend] = ACTIONS(1943), + [anon_sym_public] = ACTIONS(1943), + [anon_sym_private] = ACTIONS(1943), + [anon_sym_protected] = ACTIONS(1943), + [anon_sym_using] = ACTIONS(1943), + [anon_sym_static_assert] = ACTIONS(1943), + [anon_sym_catch] = ACTIONS(4485), + [sym_macro_statement] = ACTIONS(1943), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1943), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1943), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1943), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1943), + [anon_sym_MOZ_COLD] = ACTIONS(1943), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1943), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1943), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1943), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1943), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1943), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1943), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1943), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1943), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1943), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1943), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1943), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1943), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1943), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_NONNULL] = ACTIONS(1943), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1943), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1943), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1943), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1943), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1943), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1943), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1943), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1943), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1943), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1943), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1943), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1943), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1943), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1943), + [anon_sym_MOZ_RAII] = ACTIONS(1943), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1943), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1943), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1943), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1943), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1943), + }, + [STATE(1088)] = { + [sym_catch_clause] = STATE(1090), + [aux_sym_constructor_try_statement_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(1931), + [aux_sym_preproc_def_token1] = ACTIONS(1931), + [aux_sym_preproc_if_token1] = ACTIONS(1931), + [aux_sym_preproc_if_token2] = ACTIONS(1931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1931), + [sym_preproc_directive] = ACTIONS(1931), + [anon_sym_LPAREN2] = ACTIONS(1933), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_AMP_AMP] = ACTIONS(1933), + [anon_sym_AMP] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym___extension__] = ACTIONS(1931), + [anon_sym_typedef] = ACTIONS(1931), + [anon_sym_virtual] = ACTIONS(1931), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym___attribute__] = ACTIONS(1931), + [anon_sym___attribute] = ACTIONS(1931), + [anon_sym_COLON_COLON] = ACTIONS(1933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1933), + [anon_sym___declspec] = ACTIONS(1931), + [anon_sym___based] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_static] = ACTIONS(1931), + [anon_sym_register] = ACTIONS(1931), + [anon_sym_inline] = ACTIONS(1931), + [anon_sym___inline] = ACTIONS(1931), + [anon_sym___inline__] = ACTIONS(1931), + [anon_sym___forceinline] = ACTIONS(1931), + [anon_sym_thread_local] = ACTIONS(1931), + [anon_sym___thread] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_constexpr] = ACTIONS(1931), + [anon_sym_volatile] = ACTIONS(1931), + [anon_sym_restrict] = ACTIONS(1931), + [anon_sym___restrict__] = ACTIONS(1931), + [anon_sym__Atomic] = ACTIONS(1931), + [anon_sym__Noreturn] = ACTIONS(1931), + [anon_sym_noreturn] = ACTIONS(1931), + [anon_sym__Nonnull] = ACTIONS(1931), + [anon_sym_mutable] = ACTIONS(1931), + [anon_sym_constinit] = ACTIONS(1931), + [anon_sym_consteval] = ACTIONS(1931), + [anon_sym_alignas] = ACTIONS(1931), + [anon_sym__Alignas] = ACTIONS(1931), + [sym_primitive_type] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [anon_sym_class] = ACTIONS(1931), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_union] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1931), + [anon_sym_decltype] = ACTIONS(1931), + [anon_sym_explicit] = ACTIONS(1931), + [anon_sym_typename] = ACTIONS(1931), + [anon_sym_template] = ACTIONS(1931), + [anon_sym_operator] = ACTIONS(1931), + [anon_sym_friend] = ACTIONS(1931), + [anon_sym_public] = ACTIONS(1931), + [anon_sym_private] = ACTIONS(1931), + [anon_sym_protected] = ACTIONS(1931), + [anon_sym_using] = ACTIONS(1931), + [anon_sym_static_assert] = ACTIONS(1931), + [anon_sym_catch] = ACTIONS(4485), + [sym_macro_statement] = ACTIONS(1931), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1931), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1931), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1931), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1931), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1931), + [anon_sym_MOZ_COLD] = ACTIONS(1931), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1931), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1931), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1931), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1931), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1931), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1931), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1931), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1931), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1931), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1931), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1931), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1931), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1931), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1931), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1931), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1931), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_NONNULL] = ACTIONS(1931), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1931), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1931), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1931), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1931), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_NORETURN] = ACTIONS(1931), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1931), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1931), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1931), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1931), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1931), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1931), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1931), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1931), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1931), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1931), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1931), + [anon_sym_MOZ_RAII] = ACTIONS(1931), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1931), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1931), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1931), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1931), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1931), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1931), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1931), + }, + [STATE(1089)] = { + [sym_catch_clause] = STATE(1090), + [aux_sym_constructor_try_statement_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(1939), + [aux_sym_preproc_def_token1] = ACTIONS(1939), + [aux_sym_preproc_if_token1] = ACTIONS(1939), + [aux_sym_preproc_if_token2] = ACTIONS(1939), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1939), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1939), + [sym_preproc_directive] = ACTIONS(1939), + [anon_sym_LPAREN2] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym___extension__] = ACTIONS(1939), + [anon_sym_typedef] = ACTIONS(1939), + [anon_sym_virtual] = ACTIONS(1939), + [anon_sym_extern] = ACTIONS(1939), + [anon_sym___attribute__] = ACTIONS(1939), + [anon_sym___attribute] = ACTIONS(1939), + [anon_sym_COLON_COLON] = ACTIONS(1941), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1941), + [anon_sym___declspec] = ACTIONS(1939), + [anon_sym___based] = ACTIONS(1939), + [anon_sym_signed] = ACTIONS(1939), + [anon_sym_unsigned] = ACTIONS(1939), + [anon_sym_long] = ACTIONS(1939), + [anon_sym_short] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1939), + [anon_sym_static] = ACTIONS(1939), + [anon_sym_register] = ACTIONS(1939), + [anon_sym_inline] = ACTIONS(1939), + [anon_sym___inline] = ACTIONS(1939), + [anon_sym___inline__] = ACTIONS(1939), + [anon_sym___forceinline] = ACTIONS(1939), + [anon_sym_thread_local] = ACTIONS(1939), + [anon_sym___thread] = ACTIONS(1939), + [anon_sym_const] = ACTIONS(1939), + [anon_sym_constexpr] = ACTIONS(1939), + [anon_sym_volatile] = ACTIONS(1939), + [anon_sym_restrict] = ACTIONS(1939), + [anon_sym___restrict__] = ACTIONS(1939), + [anon_sym__Atomic] = ACTIONS(1939), + [anon_sym__Noreturn] = ACTIONS(1939), + [anon_sym_noreturn] = ACTIONS(1939), + [anon_sym__Nonnull] = ACTIONS(1939), + [anon_sym_mutable] = ACTIONS(1939), + [anon_sym_constinit] = ACTIONS(1939), + [anon_sym_consteval] = ACTIONS(1939), + [anon_sym_alignas] = ACTIONS(1939), + [anon_sym__Alignas] = ACTIONS(1939), + [sym_primitive_type] = ACTIONS(1939), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_class] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(1939), + [anon_sym_union] = ACTIONS(1939), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1939), + [anon_sym_decltype] = ACTIONS(1939), + [anon_sym_explicit] = ACTIONS(1939), + [anon_sym_typename] = ACTIONS(1939), + [anon_sym_template] = ACTIONS(1939), + [anon_sym_operator] = ACTIONS(1939), + [anon_sym_friend] = ACTIONS(1939), + [anon_sym_public] = ACTIONS(1939), + [anon_sym_private] = ACTIONS(1939), + [anon_sym_protected] = ACTIONS(1939), + [anon_sym_using] = ACTIONS(1939), + [anon_sym_static_assert] = ACTIONS(1939), + [anon_sym_catch] = ACTIONS(4485), + [sym_macro_statement] = ACTIONS(1939), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1939), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1939), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1939), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1939), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1939), + [anon_sym_MOZ_COLD] = ACTIONS(1939), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1939), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1939), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1939), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1939), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1939), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1939), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1939), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1939), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1939), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1939), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1939), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1939), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1939), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1939), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1939), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1939), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_NONNULL] = ACTIONS(1939), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1939), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1939), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1939), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1939), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_NORETURN] = ACTIONS(1939), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1939), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1939), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1939), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1939), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1939), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1939), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1939), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1939), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1939), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1939), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1939), + [anon_sym_MOZ_RAII] = ACTIONS(1939), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1939), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1939), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1939), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1939), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1939), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1939), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1939), + }, + [STATE(1090)] = { + [sym_catch_clause] = STATE(1090), + [aux_sym_constructor_try_statement_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(1924), + [aux_sym_preproc_def_token1] = ACTIONS(1924), + [aux_sym_preproc_if_token1] = ACTIONS(1924), + [aux_sym_preproc_if_token2] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1924), + [sym_preproc_directive] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_AMP_AMP] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym___extension__] = ACTIONS(1924), + [anon_sym_typedef] = ACTIONS(1924), + [anon_sym_virtual] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym___attribute__] = ACTIONS(1924), + [anon_sym___attribute] = ACTIONS(1924), + [anon_sym_COLON_COLON] = ACTIONS(1926), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1926), + [anon_sym___declspec] = ACTIONS(1924), + [anon_sym___based] = ACTIONS(1924), + [anon_sym_signed] = ACTIONS(1924), + [anon_sym_unsigned] = ACTIONS(1924), + [anon_sym_long] = ACTIONS(1924), + [anon_sym_short] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_register] = ACTIONS(1924), + [anon_sym_inline] = ACTIONS(1924), + [anon_sym___inline] = ACTIONS(1924), + [anon_sym___inline__] = ACTIONS(1924), + [anon_sym___forceinline] = ACTIONS(1924), + [anon_sym_thread_local] = ACTIONS(1924), + [anon_sym___thread] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_constexpr] = ACTIONS(1924), + [anon_sym_volatile] = ACTIONS(1924), + [anon_sym_restrict] = ACTIONS(1924), + [anon_sym___restrict__] = ACTIONS(1924), + [anon_sym__Atomic] = ACTIONS(1924), + [anon_sym__Noreturn] = ACTIONS(1924), + [anon_sym_noreturn] = ACTIONS(1924), + [anon_sym__Nonnull] = ACTIONS(1924), + [anon_sym_mutable] = ACTIONS(1924), + [anon_sym_constinit] = ACTIONS(1924), + [anon_sym_consteval] = ACTIONS(1924), + [anon_sym_alignas] = ACTIONS(1924), + [anon_sym__Alignas] = ACTIONS(1924), + [sym_primitive_type] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_class] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1924), + [anon_sym_decltype] = ACTIONS(1924), + [anon_sym_explicit] = ACTIONS(1924), + [anon_sym_typename] = ACTIONS(1924), + [anon_sym_template] = ACTIONS(1924), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_friend] = ACTIONS(1924), + [anon_sym_public] = ACTIONS(1924), + [anon_sym_private] = ACTIONS(1924), + [anon_sym_protected] = ACTIONS(1924), + [anon_sym_using] = ACTIONS(1924), + [anon_sym_static_assert] = ACTIONS(1924), + [anon_sym_catch] = ACTIONS(4487), + [sym_macro_statement] = ACTIONS(1924), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1924), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1924), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1924), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1924), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1924), + [anon_sym_MOZ_COLD] = ACTIONS(1924), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1924), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1924), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1924), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1924), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1924), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1924), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1924), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1924), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1924), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1924), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1924), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1924), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1924), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1924), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1924), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1924), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_NONNULL] = ACTIONS(1924), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1924), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1924), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1924), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1924), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_NORETURN] = ACTIONS(1924), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1924), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1924), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1924), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1924), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1924), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1924), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1924), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1924), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1924), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1924), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1924), + [anon_sym_MOZ_RAII] = ACTIONS(1924), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1924), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1924), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1924), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1924), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1924), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1924), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1924), + }, + [STATE(1091)] = { + [sym_catch_clause] = STATE(1086), + [aux_sym_constructor_try_statement_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(1943), + [aux_sym_preproc_def_token1] = ACTIONS(1943), + [aux_sym_preproc_if_token1] = ACTIONS(1943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1943), + [sym_preproc_directive] = ACTIONS(1943), + [anon_sym_LPAREN2] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_AMP_AMP] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_SEMI] = ACTIONS(1945), + [anon_sym___extension__] = ACTIONS(1943), + [anon_sym_typedef] = ACTIONS(1943), + [anon_sym_virtual] = ACTIONS(1943), + [anon_sym_extern] = ACTIONS(1943), + [anon_sym___attribute__] = ACTIONS(1943), + [anon_sym___attribute] = ACTIONS(1943), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1945), + [anon_sym___declspec] = ACTIONS(1943), + [anon_sym___based] = ACTIONS(1943), + [anon_sym_RBRACE] = ACTIONS(1945), + [anon_sym_signed] = ACTIONS(1943), + [anon_sym_unsigned] = ACTIONS(1943), + [anon_sym_long] = ACTIONS(1943), + [anon_sym_short] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_static] = ACTIONS(1943), + [anon_sym_register] = ACTIONS(1943), + [anon_sym_inline] = ACTIONS(1943), + [anon_sym___inline] = ACTIONS(1943), + [anon_sym___inline__] = ACTIONS(1943), + [anon_sym___forceinline] = ACTIONS(1943), + [anon_sym_thread_local] = ACTIONS(1943), + [anon_sym___thread] = ACTIONS(1943), + [anon_sym_const] = ACTIONS(1943), + [anon_sym_constexpr] = ACTIONS(1943), + [anon_sym_volatile] = ACTIONS(1943), + [anon_sym_restrict] = ACTIONS(1943), + [anon_sym___restrict__] = ACTIONS(1943), + [anon_sym__Atomic] = ACTIONS(1943), + [anon_sym__Noreturn] = ACTIONS(1943), + [anon_sym_noreturn] = ACTIONS(1943), + [anon_sym__Nonnull] = ACTIONS(1943), + [anon_sym_mutable] = ACTIONS(1943), + [anon_sym_constinit] = ACTIONS(1943), + [anon_sym_consteval] = ACTIONS(1943), + [anon_sym_alignas] = ACTIONS(1943), + [anon_sym__Alignas] = ACTIONS(1943), + [sym_primitive_type] = ACTIONS(1943), + [anon_sym_enum] = ACTIONS(1943), + [anon_sym_class] = ACTIONS(1943), + [anon_sym_struct] = ACTIONS(1943), + [anon_sym_union] = ACTIONS(1943), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1943), + [anon_sym_decltype] = ACTIONS(1943), + [anon_sym_explicit] = ACTIONS(1943), + [anon_sym_typename] = ACTIONS(1943), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_operator] = ACTIONS(1943), + [anon_sym_friend] = ACTIONS(1943), + [anon_sym_public] = ACTIONS(1943), + [anon_sym_private] = ACTIONS(1943), + [anon_sym_protected] = ACTIONS(1943), + [anon_sym_using] = ACTIONS(1943), + [anon_sym_static_assert] = ACTIONS(1943), + [anon_sym_catch] = ACTIONS(4476), + [sym_macro_statement] = ACTIONS(1943), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1943), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1943), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1943), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1943), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1943), + [anon_sym_MOZ_COLD] = ACTIONS(1943), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1943), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1943), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1943), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1943), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1943), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1943), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1943), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1943), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1943), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1943), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1943), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1943), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1943), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1943), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1943), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1943), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_NONNULL] = ACTIONS(1943), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1943), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1943), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1943), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1943), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_NORETURN] = ACTIONS(1943), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1943), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1943), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1943), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1943), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1943), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1943), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1943), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1943), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1943), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1943), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1943), + [anon_sym_MOZ_RAII] = ACTIONS(1943), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1943), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1943), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1943), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1943), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1943), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1943), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1943), + }, + [STATE(1092)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1898), + [anon_sym_COLON_COLON] = ACTIONS(1905), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1914), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1917), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1093)] = { + [sym_identifier] = ACTIONS(4490), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4492), + [anon_sym_COMMA] = ACTIONS(4492), + [anon_sym_RPAREN] = ACTIONS(4492), + [anon_sym_LPAREN2] = ACTIONS(4492), + [anon_sym_TILDE] = ACTIONS(4492), + [anon_sym_STAR] = ACTIONS(4492), + [anon_sym_AMP_AMP] = ACTIONS(4492), + [anon_sym_AMP] = ACTIONS(4490), + [anon_sym_SEMI] = ACTIONS(4492), + [anon_sym___extension__] = ACTIONS(4490), + [anon_sym_virtual] = ACTIONS(4490), + [anon_sym_extern] = ACTIONS(4490), + [anon_sym___attribute__] = ACTIONS(4490), + [anon_sym___attribute] = ACTIONS(4490), + [anon_sym_COLON_COLON] = ACTIONS(4492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4492), + [anon_sym___declspec] = ACTIONS(4490), + [anon_sym___based] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4492), + [anon_sym_signed] = ACTIONS(4490), + [anon_sym_unsigned] = ACTIONS(4490), + [anon_sym_long] = ACTIONS(4490), + [anon_sym_short] = ACTIONS(4490), + [anon_sym_LBRACK] = ACTIONS(4490), + [anon_sym_static] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4492), + [anon_sym_register] = ACTIONS(4490), + [anon_sym_inline] = ACTIONS(4490), + [anon_sym___inline] = ACTIONS(4490), + [anon_sym___inline__] = ACTIONS(4490), + [anon_sym___forceinline] = ACTIONS(4490), + [anon_sym_thread_local] = ACTIONS(4490), + [anon_sym___thread] = ACTIONS(4490), + [anon_sym_const] = ACTIONS(4490), + [anon_sym_constexpr] = ACTIONS(4490), + [anon_sym_volatile] = ACTIONS(4490), + [anon_sym_restrict] = ACTIONS(4490), + [anon_sym___restrict__] = ACTIONS(4490), + [anon_sym__Atomic] = ACTIONS(4490), + [anon_sym__Noreturn] = ACTIONS(4490), + [anon_sym_noreturn] = ACTIONS(4490), + [anon_sym__Nonnull] = ACTIONS(4490), + [anon_sym_mutable] = ACTIONS(4490), + [anon_sym_constinit] = ACTIONS(4490), + [anon_sym_consteval] = ACTIONS(4490), + [anon_sym_alignas] = ACTIONS(4490), + [anon_sym__Alignas] = ACTIONS(4490), + [sym_primitive_type] = ACTIONS(4490), + [anon_sym_enum] = ACTIONS(4490), + [anon_sym_class] = ACTIONS(4490), + [anon_sym_struct] = ACTIONS(4490), + [anon_sym_union] = ACTIONS(4490), + [anon_sym_asm] = ACTIONS(4490), + [anon_sym___asm__] = ACTIONS(4490), + [anon_sym___asm] = ACTIONS(4490), + [anon_sym_DASH_GT] = ACTIONS(4492), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4490), + [anon_sym_decltype] = ACTIONS(4490), + [anon_sym_final] = ACTIONS(4490), + [anon_sym_override] = ACTIONS(4490), + [anon_sym_explicit] = ACTIONS(4490), + [anon_sym_typename] = ACTIONS(4490), + [anon_sym_template] = ACTIONS(4490), + [anon_sym_GT2] = ACTIONS(4492), + [anon_sym_operator] = ACTIONS(4490), + [anon_sym_try] = ACTIONS(4490), + [anon_sym_noexcept] = ACTIONS(4490), + [anon_sym_throw] = ACTIONS(4490), + [anon_sym_requires] = ACTIONS(4490), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4490), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4490), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4490), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4490), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4490), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4490), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4490), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4490), + [anon_sym_MOZ_COLD] = ACTIONS(4490), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4490), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4490), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4490), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4490), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4490), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4490), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4490), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4490), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4490), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4490), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4490), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4490), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4490), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4490), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4490), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4490), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4490), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4490), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4490), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4490), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4490), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4490), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4490), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4490), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4490), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4490), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4490), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4490), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4490), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4490), + [anon_sym_MOZ_NONNULL] = ACTIONS(4490), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4490), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4490), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4490), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4490), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4490), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4490), + [anon_sym_MOZ_NORETURN] = ACTIONS(4490), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4490), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4490), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4490), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4490), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4490), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4490), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4490), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4490), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4490), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4490), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4490), + [anon_sym_MOZ_RAII] = ACTIONS(4490), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4490), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4490), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4490), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4490), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4490), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4490), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4490), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4490), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4490), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4490), + }, + [STATE(1094)] = { + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(4526), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(8412), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4049), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(1095)] = { + [sym_expression] = STATE(3457), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(4494), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4500), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(4503), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1914), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1917), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1096)] = { + [sym_expression] = STATE(4816), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4506), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4509), + [anon_sym_COLON_COLON] = ACTIONS(4512), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(4515), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1914), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1917), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1097)] = { + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(4526), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(8498), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4049), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(1098)] = { + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(4526), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_parameter_declaration] = STATE(9206), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4049), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(1099)] = { + [sym_identifier] = ACTIONS(1875), + [aux_sym_preproc_def_token1] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1875), + [sym_preproc_directive] = ACTIONS(1875), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym___extension__] = ACTIONS(1875), + [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_virtual] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym___attribute__] = ACTIONS(4340), + [anon_sym___attribute] = ACTIONS(4340), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), + [anon_sym___declspec] = ACTIONS(1875), + [anon_sym___based] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_inline] = ACTIONS(1875), + [anon_sym___inline] = ACTIONS(1875), + [anon_sym___inline__] = ACTIONS(1875), + [anon_sym___forceinline] = ACTIONS(1875), + [anon_sym_thread_local] = ACTIONS(1875), + [anon_sym___thread] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_constexpr] = ACTIONS(1875), + [anon_sym_volatile] = ACTIONS(1875), + [anon_sym_restrict] = ACTIONS(1875), + [anon_sym___restrict__] = ACTIONS(1875), + [anon_sym__Atomic] = ACTIONS(1875), + [anon_sym__Noreturn] = ACTIONS(1875), + [anon_sym_noreturn] = ACTIONS(1875), + [anon_sym__Nonnull] = ACTIONS(1875), + [anon_sym_mutable] = ACTIONS(1875), + [anon_sym_constinit] = ACTIONS(1875), + [anon_sym_consteval] = ACTIONS(1875), + [anon_sym_alignas] = ACTIONS(1875), + [anon_sym__Alignas] = ACTIONS(1875), + [sym_primitive_type] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1875), + [anon_sym_decltype] = ACTIONS(1875), + [anon_sym_explicit] = ACTIONS(1875), + [anon_sym_typename] = ACTIONS(1875), + [anon_sym_template] = ACTIONS(1875), + [anon_sym_operator] = ACTIONS(1875), + [anon_sym_friend] = ACTIONS(1875), + [anon_sym_public] = ACTIONS(1875), + [anon_sym_private] = ACTIONS(1875), + [anon_sym_protected] = ACTIONS(1875), + [anon_sym_using] = ACTIONS(1875), + [anon_sym_static_assert] = ACTIONS(1875), + [sym_macro_statement] = ACTIONS(1875), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1875), + [anon_sym_MOZ_COLD] = ACTIONS(1875), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1875), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1875), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1875), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1875), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1875), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1875), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1875), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1875), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1875), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1875), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1875), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1875), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_RAII] = ACTIONS(1875), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1875), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1875), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1875), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), + }, + [STATE(1100)] = { + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5156), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4049), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(1101)] = { + [sym_identifier] = ACTIONS(1875), + [aux_sym_preproc_def_token1] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1875), + [aux_sym_preproc_if_token2] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1875), + [sym_preproc_directive] = ACTIONS(1875), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym___extension__] = ACTIONS(1875), + [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_virtual] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym___attribute__] = ACTIONS(4340), + [anon_sym___attribute] = ACTIONS(4340), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), + [anon_sym___declspec] = ACTIONS(1875), + [anon_sym___based] = ACTIONS(1875), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_inline] = ACTIONS(1875), + [anon_sym___inline] = ACTIONS(1875), + [anon_sym___inline__] = ACTIONS(1875), + [anon_sym___forceinline] = ACTIONS(1875), + [anon_sym_thread_local] = ACTIONS(1875), + [anon_sym___thread] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_constexpr] = ACTIONS(1875), + [anon_sym_volatile] = ACTIONS(1875), + [anon_sym_restrict] = ACTIONS(1875), + [anon_sym___restrict__] = ACTIONS(1875), + [anon_sym__Atomic] = ACTIONS(1875), + [anon_sym__Noreturn] = ACTIONS(1875), + [anon_sym_noreturn] = ACTIONS(1875), + [anon_sym__Nonnull] = ACTIONS(1875), + [anon_sym_mutable] = ACTIONS(1875), + [anon_sym_constinit] = ACTIONS(1875), + [anon_sym_consteval] = ACTIONS(1875), + [anon_sym_alignas] = ACTIONS(1875), + [anon_sym__Alignas] = ACTIONS(1875), + [sym_primitive_type] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1875), + [anon_sym_decltype] = ACTIONS(1875), + [anon_sym_explicit] = ACTIONS(1875), + [anon_sym_typename] = ACTIONS(1875), + [anon_sym_template] = ACTIONS(1875), + [anon_sym_operator] = ACTIONS(1875), + [anon_sym_friend] = ACTIONS(1875), + [anon_sym_public] = ACTIONS(1875), + [anon_sym_private] = ACTIONS(1875), + [anon_sym_protected] = ACTIONS(1875), + [anon_sym_using] = ACTIONS(1875), + [anon_sym_static_assert] = ACTIONS(1875), + [sym_macro_statement] = ACTIONS(1875), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1875), + [anon_sym_MOZ_COLD] = ACTIONS(1875), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1875), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1875), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1875), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1875), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1875), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1875), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1875), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1875), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1875), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1875), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1875), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1875), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_RAII] = ACTIONS(1875), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1875), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1875), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1875), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), + }, + [STATE(1102)] = { + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5563), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4049), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(1103)] = { + [sym_identifier] = ACTIONS(1879), + [aux_sym_preproc_def_token1] = ACTIONS(1879), + [aux_sym_preproc_if_token1] = ACTIONS(1879), + [aux_sym_preproc_if_token2] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1879), + [sym_preproc_directive] = ACTIONS(1879), + [anon_sym_LPAREN2] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym___extension__] = ACTIONS(1879), + [anon_sym_typedef] = ACTIONS(1879), + [anon_sym_virtual] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym___attribute__] = ACTIONS(1879), + [anon_sym___attribute] = ACTIONS(1879), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1877), + [anon_sym___declspec] = ACTIONS(1879), + [anon_sym___based] = ACTIONS(1879), + [anon_sym_signed] = ACTIONS(1879), + [anon_sym_unsigned] = ACTIONS(1879), + [anon_sym_long] = ACTIONS(1879), + [anon_sym_short] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_static] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_inline] = ACTIONS(1879), + [anon_sym___inline] = ACTIONS(1879), + [anon_sym___inline__] = ACTIONS(1879), + [anon_sym___forceinline] = ACTIONS(1879), + [anon_sym_thread_local] = ACTIONS(1879), + [anon_sym___thread] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_constexpr] = ACTIONS(1879), + [anon_sym_volatile] = ACTIONS(1879), + [anon_sym_restrict] = ACTIONS(1879), + [anon_sym___restrict__] = ACTIONS(1879), + [anon_sym__Atomic] = ACTIONS(1879), + [anon_sym__Noreturn] = ACTIONS(1879), + [anon_sym_noreturn] = ACTIONS(1879), + [anon_sym__Nonnull] = ACTIONS(1879), + [anon_sym_mutable] = ACTIONS(1879), + [anon_sym_constinit] = ACTIONS(1879), + [anon_sym_consteval] = ACTIONS(1879), + [anon_sym_alignas] = ACTIONS(1879), + [anon_sym__Alignas] = ACTIONS(1879), + [sym_primitive_type] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_class] = ACTIONS(1879), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1879), + [anon_sym_decltype] = ACTIONS(1879), + [anon_sym_explicit] = ACTIONS(1879), + [anon_sym_typename] = ACTIONS(1879), + [anon_sym_template] = ACTIONS(1879), + [anon_sym_operator] = ACTIONS(1879), + [anon_sym_friend] = ACTIONS(1879), + [anon_sym_public] = ACTIONS(1879), + [anon_sym_private] = ACTIONS(1879), + [anon_sym_protected] = ACTIONS(1879), + [anon_sym_using] = ACTIONS(1879), + [anon_sym_static_assert] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [sym_macro_statement] = ACTIONS(1879), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1879), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1879), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1879), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1879), + [anon_sym_MOZ_COLD] = ACTIONS(1879), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1879), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1879), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1879), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1879), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1879), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1879), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1879), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1879), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1879), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1879), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1879), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1879), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1879), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_NONNULL] = ACTIONS(1879), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1879), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1879), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1879), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1879), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1879), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1879), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1879), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1879), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1879), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1879), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1879), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1879), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), + [anon_sym_MOZ_RAII] = ACTIONS(1879), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1879), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1879), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1879), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1879), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1879), + }, + [STATE(1104)] = { + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5166), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4049), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(1105)] = { + [sym_identifier] = ACTIONS(1879), + [aux_sym_preproc_def_token1] = ACTIONS(1879), + [aux_sym_preproc_if_token1] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1879), + [sym_preproc_directive] = ACTIONS(1879), + [anon_sym_LPAREN2] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym___extension__] = ACTIONS(1879), + [anon_sym_typedef] = ACTIONS(1879), + [anon_sym_virtual] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym___attribute__] = ACTIONS(1879), + [anon_sym___attribute] = ACTIONS(1879), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1877), + [anon_sym___declspec] = ACTIONS(1879), + [anon_sym___based] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_signed] = ACTIONS(1879), + [anon_sym_unsigned] = ACTIONS(1879), + [anon_sym_long] = ACTIONS(1879), + [anon_sym_short] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_static] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_inline] = ACTIONS(1879), + [anon_sym___inline] = ACTIONS(1879), + [anon_sym___inline__] = ACTIONS(1879), + [anon_sym___forceinline] = ACTIONS(1879), + [anon_sym_thread_local] = ACTIONS(1879), + [anon_sym___thread] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_constexpr] = ACTIONS(1879), + [anon_sym_volatile] = ACTIONS(1879), + [anon_sym_restrict] = ACTIONS(1879), + [anon_sym___restrict__] = ACTIONS(1879), + [anon_sym__Atomic] = ACTIONS(1879), + [anon_sym__Noreturn] = ACTIONS(1879), + [anon_sym_noreturn] = ACTIONS(1879), + [anon_sym__Nonnull] = ACTIONS(1879), + [anon_sym_mutable] = ACTIONS(1879), + [anon_sym_constinit] = ACTIONS(1879), + [anon_sym_consteval] = ACTIONS(1879), + [anon_sym_alignas] = ACTIONS(1879), + [anon_sym__Alignas] = ACTIONS(1879), + [sym_primitive_type] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_class] = ACTIONS(1879), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1879), + [anon_sym_decltype] = ACTIONS(1879), + [anon_sym_explicit] = ACTIONS(1879), + [anon_sym_typename] = ACTIONS(1879), + [anon_sym_template] = ACTIONS(1879), + [anon_sym_operator] = ACTIONS(1879), + [anon_sym_friend] = ACTIONS(1879), + [anon_sym_public] = ACTIONS(1879), + [anon_sym_private] = ACTIONS(1879), + [anon_sym_protected] = ACTIONS(1879), + [anon_sym_using] = ACTIONS(1879), + [anon_sym_static_assert] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [sym_macro_statement] = ACTIONS(1879), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1879), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1879), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1879), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1879), + [anon_sym_MOZ_COLD] = ACTIONS(1879), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1879), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1879), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1879), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1879), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1879), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1879), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1879), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1879), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1879), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1879), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1879), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1879), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1879), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_NONNULL] = ACTIONS(1879), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1879), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1879), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1879), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1879), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1879), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1879), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1879), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1879), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1879), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1879), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1879), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1879), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), + [anon_sym_MOZ_RAII] = ACTIONS(1879), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1879), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1879), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1879), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1879), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1879), + }, + [STATE(1106)] = { + [sym_identifier] = ACTIONS(1953), + [aux_sym_preproc_def_token1] = ACTIONS(1953), + [aux_sym_preproc_if_token1] = ACTIONS(1953), + [aux_sym_preproc_if_token2] = ACTIONS(1953), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1953), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1953), + [sym_preproc_directive] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym___extension__] = ACTIONS(1953), + [anon_sym_typedef] = ACTIONS(1953), + [anon_sym_virtual] = ACTIONS(1953), + [anon_sym_extern] = ACTIONS(1953), + [anon_sym___attribute__] = ACTIONS(1953), + [anon_sym___attribute] = ACTIONS(1953), + [anon_sym_COLON_COLON] = ACTIONS(1955), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1955), + [anon_sym___declspec] = ACTIONS(1953), + [anon_sym___based] = ACTIONS(1953), + [anon_sym_signed] = ACTIONS(1953), + [anon_sym_unsigned] = ACTIONS(1953), + [anon_sym_long] = ACTIONS(1953), + [anon_sym_short] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(1953), + [anon_sym_static] = ACTIONS(1953), + [anon_sym_register] = ACTIONS(1953), + [anon_sym_inline] = ACTIONS(1953), + [anon_sym___inline] = ACTIONS(1953), + [anon_sym___inline__] = ACTIONS(1953), + [anon_sym___forceinline] = ACTIONS(1953), + [anon_sym_thread_local] = ACTIONS(1953), + [anon_sym___thread] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [anon_sym_constexpr] = ACTIONS(1953), + [anon_sym_volatile] = ACTIONS(1953), + [anon_sym_restrict] = ACTIONS(1953), + [anon_sym___restrict__] = ACTIONS(1953), + [anon_sym__Atomic] = ACTIONS(1953), + [anon_sym__Noreturn] = ACTIONS(1953), + [anon_sym_noreturn] = ACTIONS(1953), + [anon_sym__Nonnull] = ACTIONS(1953), + [anon_sym_mutable] = ACTIONS(1953), + [anon_sym_constinit] = ACTIONS(1953), + [anon_sym_consteval] = ACTIONS(1953), + [anon_sym_alignas] = ACTIONS(1953), + [anon_sym__Alignas] = ACTIONS(1953), + [sym_primitive_type] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1953), + [anon_sym_class] = ACTIONS(1953), + [anon_sym_struct] = ACTIONS(1953), + [anon_sym_union] = ACTIONS(1953), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1953), + [anon_sym_decltype] = ACTIONS(1953), + [anon_sym_explicit] = ACTIONS(1953), + [anon_sym_typename] = ACTIONS(1953), + [anon_sym_template] = ACTIONS(1953), + [anon_sym_operator] = ACTIONS(1953), + [anon_sym_friend] = ACTIONS(1953), + [anon_sym_public] = ACTIONS(1953), + [anon_sym_private] = ACTIONS(1953), + [anon_sym_protected] = ACTIONS(1953), + [anon_sym_using] = ACTIONS(1953), + [anon_sym_static_assert] = ACTIONS(1953), + [anon_sym_catch] = ACTIONS(1953), + [sym_macro_statement] = ACTIONS(1953), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1953), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1953), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1953), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1953), + [anon_sym_MOZ_COLD] = ACTIONS(1953), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1953), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1953), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1953), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1953), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1953), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1953), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1953), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1953), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1953), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1953), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1953), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1953), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1953), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_NONNULL] = ACTIONS(1953), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1953), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1953), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1953), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1953), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1953), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1953), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1953), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1953), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1953), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1953), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1953), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1953), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1953), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1953), + [anon_sym_MOZ_RAII] = ACTIONS(1953), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1953), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1953), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1953), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1953), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1953), + }, + [STATE(1107)] = { + [sym_identifier] = ACTIONS(1875), + [aux_sym_preproc_def_token1] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1875), + [sym_preproc_directive] = ACTIONS(1875), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym___extension__] = ACTIONS(1875), + [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_virtual] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym___attribute__] = ACTIONS(1875), + [anon_sym___attribute] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), + [anon_sym___declspec] = ACTIONS(1875), + [anon_sym___based] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_inline] = ACTIONS(1875), + [anon_sym___inline] = ACTIONS(1875), + [anon_sym___inline__] = ACTIONS(1875), + [anon_sym___forceinline] = ACTIONS(1875), + [anon_sym_thread_local] = ACTIONS(1875), + [anon_sym___thread] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_constexpr] = ACTIONS(1875), + [anon_sym_volatile] = ACTIONS(1875), + [anon_sym_restrict] = ACTIONS(1875), + [anon_sym___restrict__] = ACTIONS(1875), + [anon_sym__Atomic] = ACTIONS(1875), + [anon_sym__Noreturn] = ACTIONS(1875), + [anon_sym_noreturn] = ACTIONS(1875), + [anon_sym__Nonnull] = ACTIONS(1875), + [anon_sym_mutable] = ACTIONS(1875), + [anon_sym_constinit] = ACTIONS(1875), + [anon_sym_consteval] = ACTIONS(1875), + [anon_sym_alignas] = ACTIONS(1875), + [anon_sym__Alignas] = ACTIONS(1875), + [sym_primitive_type] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1875), + [anon_sym_decltype] = ACTIONS(1875), + [anon_sym_explicit] = ACTIONS(1875), + [anon_sym_typename] = ACTIONS(1875), + [anon_sym_template] = ACTIONS(1875), + [anon_sym_operator] = ACTIONS(1875), + [anon_sym_friend] = ACTIONS(1875), + [anon_sym_public] = ACTIONS(1875), + [anon_sym_private] = ACTIONS(1875), + [anon_sym_protected] = ACTIONS(1875), + [anon_sym_using] = ACTIONS(1875), + [anon_sym_static_assert] = ACTIONS(1875), + [sym_macro_statement] = ACTIONS(1875), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1875), + [anon_sym_MOZ_COLD] = ACTIONS(1875), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1875), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1875), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1875), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1875), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1875), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1875), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1875), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1875), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1875), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1875), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1875), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1875), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_RAII] = ACTIONS(1875), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1875), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1875), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1875), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), + }, + [STATE(1108)] = { + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5185), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4049), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(1109)] = { + [sym_identifier] = ACTIONS(1875), + [aux_sym_preproc_def_token1] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1875), + [aux_sym_preproc_if_token2] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1875), + [sym_preproc_directive] = ACTIONS(1875), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym___extension__] = ACTIONS(1875), + [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_virtual] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym___attribute__] = ACTIONS(1875), + [anon_sym___attribute] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), + [anon_sym___declspec] = ACTIONS(1875), + [anon_sym___based] = ACTIONS(1875), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_inline] = ACTIONS(1875), + [anon_sym___inline] = ACTIONS(1875), + [anon_sym___inline__] = ACTIONS(1875), + [anon_sym___forceinline] = ACTIONS(1875), + [anon_sym_thread_local] = ACTIONS(1875), + [anon_sym___thread] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_constexpr] = ACTIONS(1875), + [anon_sym_volatile] = ACTIONS(1875), + [anon_sym_restrict] = ACTIONS(1875), + [anon_sym___restrict__] = ACTIONS(1875), + [anon_sym__Atomic] = ACTIONS(1875), + [anon_sym__Noreturn] = ACTIONS(1875), + [anon_sym_noreturn] = ACTIONS(1875), + [anon_sym__Nonnull] = ACTIONS(1875), + [anon_sym_mutable] = ACTIONS(1875), + [anon_sym_constinit] = ACTIONS(1875), + [anon_sym_consteval] = ACTIONS(1875), + [anon_sym_alignas] = ACTIONS(1875), + [anon_sym__Alignas] = ACTIONS(1875), + [sym_primitive_type] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1875), + [anon_sym_decltype] = ACTIONS(1875), + [anon_sym_explicit] = ACTIONS(1875), + [anon_sym_typename] = ACTIONS(1875), + [anon_sym_template] = ACTIONS(1875), + [anon_sym_operator] = ACTIONS(1875), + [anon_sym_friend] = ACTIONS(1875), + [anon_sym_public] = ACTIONS(1875), + [anon_sym_private] = ACTIONS(1875), + [anon_sym_protected] = ACTIONS(1875), + [anon_sym_using] = ACTIONS(1875), + [anon_sym_static_assert] = ACTIONS(1875), + [sym_macro_statement] = ACTIONS(1875), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1875), + [anon_sym_MOZ_COLD] = ACTIONS(1875), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1875), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1875), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1875), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1875), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1875), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1875), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1875), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1875), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1875), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1875), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1875), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1875), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_RAII] = ACTIONS(1875), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1875), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1875), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1875), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), + }, + [STATE(1110)] = { + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5139), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4049), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(1111)] = { + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5141), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4049), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(1112)] = { + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5143), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4049), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(1113)] = { + [sym__declaration_modifiers] = STATE(1150), + [sym__declaration_specifiers] = STATE(5146), + [sym_attribute_specifier] = STATE(1150), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(1150), + [sym_storage_class_specifier] = STATE(1150), + [sym_type_qualifier] = STATE(1150), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1355), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1150), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4049), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(1114)] = { + [sym_identifier] = ACTIONS(1875), + [aux_sym_preproc_def_token1] = ACTIONS(1875), + [aux_sym_preproc_if_token1] = ACTIONS(1875), + [aux_sym_preproc_if_token2] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1875), + [sym_preproc_directive] = ACTIONS(1875), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym___extension__] = ACTIONS(1875), + [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_virtual] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym___attribute__] = ACTIONS(1875), + [anon_sym___attribute] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), + [anon_sym___declspec] = ACTIONS(1875), + [anon_sym___based] = ACTIONS(1875), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_inline] = ACTIONS(1875), + [anon_sym___inline] = ACTIONS(1875), + [anon_sym___inline__] = ACTIONS(1875), + [anon_sym___forceinline] = ACTIONS(1875), + [anon_sym_thread_local] = ACTIONS(1875), + [anon_sym___thread] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_constexpr] = ACTIONS(1875), + [anon_sym_volatile] = ACTIONS(1875), + [anon_sym_restrict] = ACTIONS(1875), + [anon_sym___restrict__] = ACTIONS(1875), + [anon_sym__Atomic] = ACTIONS(1875), + [anon_sym__Noreturn] = ACTIONS(1875), + [anon_sym_noreturn] = ACTIONS(1875), + [anon_sym__Nonnull] = ACTIONS(1875), + [anon_sym_mutable] = ACTIONS(1875), + [anon_sym_constinit] = ACTIONS(1875), + [anon_sym_consteval] = ACTIONS(1875), + [anon_sym_alignas] = ACTIONS(1875), + [anon_sym__Alignas] = ACTIONS(1875), + [sym_primitive_type] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1875), + [anon_sym_decltype] = ACTIONS(1875), + [anon_sym_explicit] = ACTIONS(1875), + [anon_sym_typename] = ACTIONS(1875), + [anon_sym_template] = ACTIONS(1875), + [anon_sym_operator] = ACTIONS(1875), + [anon_sym_friend] = ACTIONS(1875), + [anon_sym_public] = ACTIONS(1875), + [anon_sym_private] = ACTIONS(1875), + [anon_sym_protected] = ACTIONS(1875), + [anon_sym_using] = ACTIONS(1875), + [anon_sym_static_assert] = ACTIONS(1875), + [anon_sym_catch] = ACTIONS(1875), + [sym_macro_statement] = ACTIONS(1875), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1875), + [anon_sym_MOZ_COLD] = ACTIONS(1875), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1875), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1875), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1875), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1875), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1875), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1875), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1875), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1875), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1875), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1875), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1875), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1875), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_RAII] = ACTIONS(1875), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1875), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1875), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1875), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), + }, + [STATE(1115)] = { + [sym_identifier] = ACTIONS(1953), + [aux_sym_preproc_def_token1] = ACTIONS(1953), + [aux_sym_preproc_if_token1] = ACTIONS(1953), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1953), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1953), + [sym_preproc_directive] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym___extension__] = ACTIONS(1953), + [anon_sym_typedef] = ACTIONS(1953), + [anon_sym_virtual] = ACTIONS(1953), + [anon_sym_extern] = ACTIONS(1953), + [anon_sym___attribute__] = ACTIONS(1953), + [anon_sym___attribute] = ACTIONS(1953), + [anon_sym_COLON_COLON] = ACTIONS(1955), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1955), + [anon_sym___declspec] = ACTIONS(1953), + [anon_sym___based] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_signed] = ACTIONS(1953), + [anon_sym_unsigned] = ACTIONS(1953), + [anon_sym_long] = ACTIONS(1953), + [anon_sym_short] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(1953), + [anon_sym_static] = ACTIONS(1953), + [anon_sym_register] = ACTIONS(1953), + [anon_sym_inline] = ACTIONS(1953), + [anon_sym___inline] = ACTIONS(1953), + [anon_sym___inline__] = ACTIONS(1953), + [anon_sym___forceinline] = ACTIONS(1953), + [anon_sym_thread_local] = ACTIONS(1953), + [anon_sym___thread] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [anon_sym_constexpr] = ACTIONS(1953), + [anon_sym_volatile] = ACTIONS(1953), + [anon_sym_restrict] = ACTIONS(1953), + [anon_sym___restrict__] = ACTIONS(1953), + [anon_sym__Atomic] = ACTIONS(1953), + [anon_sym__Noreturn] = ACTIONS(1953), + [anon_sym_noreturn] = ACTIONS(1953), + [anon_sym__Nonnull] = ACTIONS(1953), + [anon_sym_mutable] = ACTIONS(1953), + [anon_sym_constinit] = ACTIONS(1953), + [anon_sym_consteval] = ACTIONS(1953), + [anon_sym_alignas] = ACTIONS(1953), + [anon_sym__Alignas] = ACTIONS(1953), + [sym_primitive_type] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1953), + [anon_sym_class] = ACTIONS(1953), + [anon_sym_struct] = ACTIONS(1953), + [anon_sym_union] = ACTIONS(1953), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1953), + [anon_sym_decltype] = ACTIONS(1953), + [anon_sym_explicit] = ACTIONS(1953), + [anon_sym_typename] = ACTIONS(1953), + [anon_sym_template] = ACTIONS(1953), + [anon_sym_operator] = ACTIONS(1953), + [anon_sym_friend] = ACTIONS(1953), + [anon_sym_public] = ACTIONS(1953), + [anon_sym_private] = ACTIONS(1953), + [anon_sym_protected] = ACTIONS(1953), + [anon_sym_using] = ACTIONS(1953), + [anon_sym_static_assert] = ACTIONS(1953), + [anon_sym_catch] = ACTIONS(1953), + [sym_macro_statement] = ACTIONS(1953), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1953), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1953), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1953), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1953), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1953), + [anon_sym_MOZ_COLD] = ACTIONS(1953), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1953), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1953), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1953), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1953), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1953), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1953), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1953), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1953), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1953), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1953), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1953), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1953), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1953), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1953), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1953), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1953), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_NONNULL] = ACTIONS(1953), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1953), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1953), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1953), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1953), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_NORETURN] = ACTIONS(1953), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1953), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1953), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1953), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1953), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1953), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1953), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1953), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1953), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1953), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1953), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1953), + [anon_sym_MOZ_RAII] = ACTIONS(1953), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1953), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1953), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1953), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1953), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1953), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1953), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1953), + }, + [STATE(1116)] = { + [sym_identifier] = ACTIONS(1875), + [aux_sym_preproc_def_token1] = ACTIONS(1875), + [aux_sym_preproc_if_token1] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1875), + [sym_preproc_directive] = ACTIONS(1875), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym___extension__] = ACTIONS(1875), + [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_virtual] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym___attribute__] = ACTIONS(1875), + [anon_sym___attribute] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), + [anon_sym___declspec] = ACTIONS(1875), + [anon_sym___based] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_inline] = ACTIONS(1875), + [anon_sym___inline] = ACTIONS(1875), + [anon_sym___inline__] = ACTIONS(1875), + [anon_sym___forceinline] = ACTIONS(1875), + [anon_sym_thread_local] = ACTIONS(1875), + [anon_sym___thread] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_constexpr] = ACTIONS(1875), + [anon_sym_volatile] = ACTIONS(1875), + [anon_sym_restrict] = ACTIONS(1875), + [anon_sym___restrict__] = ACTIONS(1875), + [anon_sym__Atomic] = ACTIONS(1875), + [anon_sym__Noreturn] = ACTIONS(1875), + [anon_sym_noreturn] = ACTIONS(1875), + [anon_sym__Nonnull] = ACTIONS(1875), + [anon_sym_mutable] = ACTIONS(1875), + [anon_sym_constinit] = ACTIONS(1875), + [anon_sym_consteval] = ACTIONS(1875), + [anon_sym_alignas] = ACTIONS(1875), + [anon_sym__Alignas] = ACTIONS(1875), + [sym_primitive_type] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1875), + [anon_sym_decltype] = ACTIONS(1875), + [anon_sym_explicit] = ACTIONS(1875), + [anon_sym_typename] = ACTIONS(1875), + [anon_sym_template] = ACTIONS(1875), + [anon_sym_operator] = ACTIONS(1875), + [anon_sym_friend] = ACTIONS(1875), + [anon_sym_public] = ACTIONS(1875), + [anon_sym_private] = ACTIONS(1875), + [anon_sym_protected] = ACTIONS(1875), + [anon_sym_using] = ACTIONS(1875), + [anon_sym_static_assert] = ACTIONS(1875), + [anon_sym_catch] = ACTIONS(1875), + [sym_macro_statement] = ACTIONS(1875), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1875), + [anon_sym_MOZ_COLD] = ACTIONS(1875), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1875), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1875), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1875), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1875), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1875), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1875), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1875), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1875), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1875), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1875), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1875), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1875), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_RAII] = ACTIONS(1875), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1875), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1875), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1875), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), + }, + [STATE(1117)] = { + [sym_identifier] = ACTIONS(2307), + [aux_sym_preproc_def_token1] = ACTIONS(2307), + [aux_sym_preproc_if_token1] = ACTIONS(2307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2307), + [sym_preproc_directive] = ACTIONS(2307), + [anon_sym_LPAREN2] = ACTIONS(2309), + [anon_sym_TILDE] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_typedef] = ACTIONS(2307), + [anon_sym_virtual] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym___attribute__] = ACTIONS(2307), + [anon_sym___attribute] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2309), + [anon_sym___declspec] = ACTIONS(2307), + [anon_sym___based] = ACTIONS(2307), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_signed] = ACTIONS(2307), + [anon_sym_unsigned] = ACTIONS(2307), + [anon_sym_long] = ACTIONS(2307), + [anon_sym_short] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_register] = ACTIONS(2307), + [anon_sym_inline] = ACTIONS(2307), + [anon_sym___inline] = ACTIONS(2307), + [anon_sym___inline__] = ACTIONS(2307), + [anon_sym___forceinline] = ACTIONS(2307), + [anon_sym_thread_local] = ACTIONS(2307), + [anon_sym___thread] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_constexpr] = ACTIONS(2307), + [anon_sym_volatile] = ACTIONS(2307), + [anon_sym_restrict] = ACTIONS(2307), + [anon_sym___restrict__] = ACTIONS(2307), + [anon_sym__Atomic] = ACTIONS(2307), + [anon_sym__Noreturn] = ACTIONS(2307), + [anon_sym_noreturn] = ACTIONS(2307), + [anon_sym__Nonnull] = ACTIONS(2307), + [anon_sym_mutable] = ACTIONS(2307), + [anon_sym_constinit] = ACTIONS(2307), + [anon_sym_consteval] = ACTIONS(2307), + [anon_sym_alignas] = ACTIONS(2307), + [anon_sym__Alignas] = ACTIONS(2307), + [sym_primitive_type] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_class] = ACTIONS(2307), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2307), + [anon_sym_decltype] = ACTIONS(2307), + [anon_sym_explicit] = ACTIONS(2307), + [anon_sym_typename] = ACTIONS(2307), + [anon_sym_template] = ACTIONS(2307), + [anon_sym_operator] = ACTIONS(2307), + [anon_sym_friend] = ACTIONS(2307), + [anon_sym_public] = ACTIONS(2307), + [anon_sym_private] = ACTIONS(2307), + [anon_sym_protected] = ACTIONS(2307), + [anon_sym_using] = ACTIONS(2307), + [anon_sym_static_assert] = ACTIONS(2307), + [sym_macro_statement] = ACTIONS(2307), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2307), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2307), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2307), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2307), + [anon_sym_MOZ_COLD] = ACTIONS(2307), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2307), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2307), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2307), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2307), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2307), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2307), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2307), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2307), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2307), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2307), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2307), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2307), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2307), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_NONNULL] = ACTIONS(2307), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2307), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2307), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2307), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2307), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2307), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2307), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2307), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2307), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2307), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2307), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2307), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2307), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2307), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2307), + [anon_sym_MOZ_RAII] = ACTIONS(2307), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2307), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2307), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2307), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2307), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2307), + }, + [STATE(1118)] = { + [sym_identifier] = ACTIONS(4456), + [aux_sym_preproc_def_token1] = ACTIONS(4456), + [aux_sym_preproc_if_token1] = ACTIONS(4456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4456), + [sym_preproc_directive] = ACTIONS(4456), + [anon_sym_LPAREN2] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4458), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_AMP_AMP] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_SEMI] = ACTIONS(4458), + [anon_sym___extension__] = ACTIONS(4456), + [anon_sym_typedef] = ACTIONS(4456), + [anon_sym_virtual] = ACTIONS(4456), + [anon_sym_extern] = ACTIONS(4456), + [anon_sym___attribute__] = ACTIONS(4456), + [anon_sym___attribute] = ACTIONS(4456), + [anon_sym_COLON_COLON] = ACTIONS(4458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4458), + [anon_sym___declspec] = ACTIONS(4456), + [anon_sym___based] = ACTIONS(4456), + [anon_sym_RBRACE] = ACTIONS(4458), + [anon_sym_signed] = ACTIONS(4456), + [anon_sym_unsigned] = ACTIONS(4456), + [anon_sym_long] = ACTIONS(4456), + [anon_sym_short] = ACTIONS(4456), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_static] = ACTIONS(4456), + [anon_sym_register] = ACTIONS(4456), + [anon_sym_inline] = ACTIONS(4456), + [anon_sym___inline] = ACTIONS(4456), + [anon_sym___inline__] = ACTIONS(4456), + [anon_sym___forceinline] = ACTIONS(4456), + [anon_sym_thread_local] = ACTIONS(4456), + [anon_sym___thread] = ACTIONS(4456), + [anon_sym_const] = ACTIONS(4456), + [anon_sym_constexpr] = ACTIONS(4456), + [anon_sym_volatile] = ACTIONS(4456), + [anon_sym_restrict] = ACTIONS(4456), + [anon_sym___restrict__] = ACTIONS(4456), + [anon_sym__Atomic] = ACTIONS(4456), + [anon_sym__Noreturn] = ACTIONS(4456), + [anon_sym_noreturn] = ACTIONS(4456), + [anon_sym__Nonnull] = ACTIONS(4456), + [anon_sym_mutable] = ACTIONS(4456), + [anon_sym_constinit] = ACTIONS(4456), + [anon_sym_consteval] = ACTIONS(4456), + [anon_sym_alignas] = ACTIONS(4456), + [anon_sym__Alignas] = ACTIONS(4456), + [sym_primitive_type] = ACTIONS(4456), + [anon_sym_enum] = ACTIONS(4456), + [anon_sym_class] = ACTIONS(4456), + [anon_sym_struct] = ACTIONS(4456), + [anon_sym_union] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4456), + [anon_sym_decltype] = ACTIONS(4456), + [anon_sym_explicit] = ACTIONS(4456), + [anon_sym_typename] = ACTIONS(4456), + [anon_sym_template] = ACTIONS(4456), + [anon_sym_operator] = ACTIONS(4456), + [anon_sym_friend] = ACTIONS(4456), + [anon_sym_public] = ACTIONS(4456), + [anon_sym_private] = ACTIONS(4456), + [anon_sym_protected] = ACTIONS(4456), + [anon_sym_using] = ACTIONS(4456), + [anon_sym_static_assert] = ACTIONS(4456), + [sym_macro_statement] = ACTIONS(4456), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4456), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4456), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4456), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4456), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4456), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4456), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4456), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4456), + [anon_sym_MOZ_COLD] = ACTIONS(4456), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4456), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4456), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4456), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4456), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4456), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4456), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4456), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4456), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4456), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4456), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4456), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4456), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4456), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4456), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4456), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4456), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4456), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4456), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4456), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4456), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_NONNULL] = ACTIONS(4456), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4456), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4456), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4456), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4456), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4456), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_NORETURN] = ACTIONS(4456), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4456), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4456), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4456), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4456), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4456), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4456), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4456), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4456), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4456), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4456), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4456), + [anon_sym_MOZ_RAII] = ACTIONS(4456), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4456), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4456), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4456), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4456), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4456), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4456), + }, + [STATE(1119)] = { + [sym_identifier] = ACTIONS(4376), + [aux_sym_preproc_def_token1] = ACTIONS(4376), + [aux_sym_preproc_if_token1] = ACTIONS(4376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4376), + [sym_preproc_directive] = ACTIONS(4376), + [anon_sym_LPAREN2] = ACTIONS(4378), + [anon_sym_TILDE] = ACTIONS(4378), + [anon_sym_STAR] = ACTIONS(4378), + [anon_sym_AMP_AMP] = ACTIONS(4378), + [anon_sym_AMP] = ACTIONS(4376), + [anon_sym_SEMI] = ACTIONS(4378), + [anon_sym___extension__] = ACTIONS(4376), + [anon_sym_typedef] = ACTIONS(4376), + [anon_sym_virtual] = ACTIONS(4376), + [anon_sym_extern] = ACTIONS(4376), + [anon_sym___attribute__] = ACTIONS(4376), + [anon_sym___attribute] = ACTIONS(4376), + [anon_sym_COLON_COLON] = ACTIONS(4378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4378), + [anon_sym___declspec] = ACTIONS(4376), + [anon_sym___based] = ACTIONS(4376), + [anon_sym_RBRACE] = ACTIONS(4378), + [anon_sym_signed] = ACTIONS(4376), + [anon_sym_unsigned] = ACTIONS(4376), + [anon_sym_long] = ACTIONS(4376), + [anon_sym_short] = ACTIONS(4376), + [anon_sym_LBRACK] = ACTIONS(4376), + [anon_sym_static] = ACTIONS(4376), + [anon_sym_register] = ACTIONS(4376), + [anon_sym_inline] = ACTIONS(4376), + [anon_sym___inline] = ACTIONS(4376), + [anon_sym___inline__] = ACTIONS(4376), + [anon_sym___forceinline] = ACTIONS(4376), + [anon_sym_thread_local] = ACTIONS(4376), + [anon_sym___thread] = ACTIONS(4376), + [anon_sym_const] = ACTIONS(4376), + [anon_sym_constexpr] = ACTIONS(4376), + [anon_sym_volatile] = ACTIONS(4376), + [anon_sym_restrict] = ACTIONS(4376), + [anon_sym___restrict__] = ACTIONS(4376), + [anon_sym__Atomic] = ACTIONS(4376), + [anon_sym__Noreturn] = ACTIONS(4376), + [anon_sym_noreturn] = ACTIONS(4376), + [anon_sym__Nonnull] = ACTIONS(4376), + [anon_sym_mutable] = ACTIONS(4376), + [anon_sym_constinit] = ACTIONS(4376), + [anon_sym_consteval] = ACTIONS(4376), + [anon_sym_alignas] = ACTIONS(4376), + [anon_sym__Alignas] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(4376), + [anon_sym_enum] = ACTIONS(4376), + [anon_sym_class] = ACTIONS(4376), + [anon_sym_struct] = ACTIONS(4376), + [anon_sym_union] = ACTIONS(4376), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4376), + [anon_sym_decltype] = ACTIONS(4376), + [anon_sym_explicit] = ACTIONS(4376), + [anon_sym_typename] = ACTIONS(4376), + [anon_sym_template] = ACTIONS(4376), + [anon_sym_operator] = ACTIONS(4376), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(4376), + [anon_sym_private] = ACTIONS(4376), + [anon_sym_protected] = ACTIONS(4376), + [anon_sym_using] = ACTIONS(4376), + [anon_sym_static_assert] = ACTIONS(4376), + [sym_macro_statement] = ACTIONS(4376), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4376), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4376), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4376), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4376), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4376), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4376), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4376), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4376), + [anon_sym_MOZ_COLD] = ACTIONS(4376), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4376), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4376), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4376), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4376), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4376), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4376), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4376), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4376), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4376), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4376), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4376), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4376), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4376), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4376), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4376), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4376), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4376), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4376), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4376), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4376), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_NONNULL] = ACTIONS(4376), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4376), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4376), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4376), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4376), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4376), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_NORETURN] = ACTIONS(4376), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4376), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4376), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4376), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4376), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4376), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4376), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4376), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4376), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4376), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4376), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4376), + [anon_sym_MOZ_RAII] = ACTIONS(4376), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4376), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4376), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4376), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4376), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4376), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4376), + }, + [STATE(1120)] = { + [sym_identifier] = ACTIONS(4380), + [aux_sym_preproc_def_token1] = ACTIONS(4380), + [aux_sym_preproc_if_token1] = ACTIONS(4380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4380), + [sym_preproc_directive] = ACTIONS(4380), + [anon_sym_LPAREN2] = ACTIONS(4382), + [anon_sym_TILDE] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [anon_sym_AMP_AMP] = ACTIONS(4382), + [anon_sym_AMP] = ACTIONS(4380), + [anon_sym_SEMI] = ACTIONS(4382), + [anon_sym___extension__] = ACTIONS(4380), + [anon_sym_typedef] = ACTIONS(4380), + [anon_sym_virtual] = ACTIONS(4380), + [anon_sym_extern] = ACTIONS(4380), + [anon_sym___attribute__] = ACTIONS(4380), + [anon_sym___attribute] = ACTIONS(4380), + [anon_sym_COLON_COLON] = ACTIONS(4382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4382), + [anon_sym___declspec] = ACTIONS(4380), + [anon_sym___based] = ACTIONS(4380), + [anon_sym_RBRACE] = ACTIONS(4382), + [anon_sym_signed] = ACTIONS(4380), + [anon_sym_unsigned] = ACTIONS(4380), + [anon_sym_long] = ACTIONS(4380), + [anon_sym_short] = ACTIONS(4380), + [anon_sym_LBRACK] = ACTIONS(4380), + [anon_sym_static] = ACTIONS(4380), + [anon_sym_register] = ACTIONS(4380), + [anon_sym_inline] = ACTIONS(4380), + [anon_sym___inline] = ACTIONS(4380), + [anon_sym___inline__] = ACTIONS(4380), + [anon_sym___forceinline] = ACTIONS(4380), + [anon_sym_thread_local] = ACTIONS(4380), + [anon_sym___thread] = ACTIONS(4380), + [anon_sym_const] = ACTIONS(4380), + [anon_sym_constexpr] = ACTIONS(4380), + [anon_sym_volatile] = ACTIONS(4380), + [anon_sym_restrict] = ACTIONS(4380), + [anon_sym___restrict__] = ACTIONS(4380), + [anon_sym__Atomic] = ACTIONS(4380), + [anon_sym__Noreturn] = ACTIONS(4380), + [anon_sym_noreturn] = ACTIONS(4380), + [anon_sym__Nonnull] = ACTIONS(4380), + [anon_sym_mutable] = ACTIONS(4380), + [anon_sym_constinit] = ACTIONS(4380), + [anon_sym_consteval] = ACTIONS(4380), + [anon_sym_alignas] = ACTIONS(4380), + [anon_sym__Alignas] = ACTIONS(4380), + [sym_primitive_type] = ACTIONS(4380), + [anon_sym_enum] = ACTIONS(4380), + [anon_sym_class] = ACTIONS(4380), + [anon_sym_struct] = ACTIONS(4380), + [anon_sym_union] = ACTIONS(4380), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4380), + [anon_sym_decltype] = ACTIONS(4380), + [anon_sym_explicit] = ACTIONS(4380), + [anon_sym_typename] = ACTIONS(4380), + [anon_sym_template] = ACTIONS(4380), + [anon_sym_operator] = ACTIONS(4380), + [anon_sym_friend] = ACTIONS(4380), + [anon_sym_public] = ACTIONS(4380), + [anon_sym_private] = ACTIONS(4380), + [anon_sym_protected] = ACTIONS(4380), + [anon_sym_using] = ACTIONS(4380), + [anon_sym_static_assert] = ACTIONS(4380), + [sym_macro_statement] = ACTIONS(4380), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4380), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4380), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4380), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4380), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4380), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4380), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4380), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4380), + [anon_sym_MOZ_COLD] = ACTIONS(4380), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4380), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4380), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4380), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4380), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4380), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4380), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4380), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4380), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4380), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4380), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4380), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4380), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4380), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4380), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4380), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4380), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4380), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4380), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4380), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4380), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_NONNULL] = ACTIONS(4380), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4380), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4380), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4380), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4380), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4380), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_NORETURN] = ACTIONS(4380), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4380), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4380), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4380), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4380), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4380), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4380), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4380), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4380), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4380), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4380), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4380), + [anon_sym_MOZ_RAII] = ACTIONS(4380), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4380), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4380), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4380), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4380), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4380), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4380), + }, + [STATE(1121)] = { + [sym_identifier] = ACTIONS(4384), + [aux_sym_preproc_def_token1] = ACTIONS(4384), + [aux_sym_preproc_if_token1] = ACTIONS(4384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4384), + [sym_preproc_directive] = ACTIONS(4384), + [anon_sym_LPAREN2] = ACTIONS(4386), + [anon_sym_TILDE] = ACTIONS(4386), + [anon_sym_STAR] = ACTIONS(4386), + [anon_sym_AMP_AMP] = ACTIONS(4386), + [anon_sym_AMP] = ACTIONS(4384), + [anon_sym_SEMI] = ACTIONS(4386), + [anon_sym___extension__] = ACTIONS(4384), + [anon_sym_typedef] = ACTIONS(4384), + [anon_sym_virtual] = ACTIONS(4384), + [anon_sym_extern] = ACTIONS(4384), + [anon_sym___attribute__] = ACTIONS(4384), + [anon_sym___attribute] = ACTIONS(4384), + [anon_sym_COLON_COLON] = ACTIONS(4386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4386), + [anon_sym___declspec] = ACTIONS(4384), + [anon_sym___based] = ACTIONS(4384), + [anon_sym_RBRACE] = ACTIONS(4386), + [anon_sym_signed] = ACTIONS(4384), + [anon_sym_unsigned] = ACTIONS(4384), + [anon_sym_long] = ACTIONS(4384), + [anon_sym_short] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_static] = ACTIONS(4384), + [anon_sym_register] = ACTIONS(4384), + [anon_sym_inline] = ACTIONS(4384), + [anon_sym___inline] = ACTIONS(4384), + [anon_sym___inline__] = ACTIONS(4384), + [anon_sym___forceinline] = ACTIONS(4384), + [anon_sym_thread_local] = ACTIONS(4384), + [anon_sym___thread] = ACTIONS(4384), + [anon_sym_const] = ACTIONS(4384), + [anon_sym_constexpr] = ACTIONS(4384), + [anon_sym_volatile] = ACTIONS(4384), + [anon_sym_restrict] = ACTIONS(4384), + [anon_sym___restrict__] = ACTIONS(4384), + [anon_sym__Atomic] = ACTIONS(4384), + [anon_sym__Noreturn] = ACTIONS(4384), + [anon_sym_noreturn] = ACTIONS(4384), + [anon_sym__Nonnull] = ACTIONS(4384), + [anon_sym_mutable] = ACTIONS(4384), + [anon_sym_constinit] = ACTIONS(4384), + [anon_sym_consteval] = ACTIONS(4384), + [anon_sym_alignas] = ACTIONS(4384), + [anon_sym__Alignas] = ACTIONS(4384), + [sym_primitive_type] = ACTIONS(4384), + [anon_sym_enum] = ACTIONS(4384), + [anon_sym_class] = ACTIONS(4384), + [anon_sym_struct] = ACTIONS(4384), + [anon_sym_union] = ACTIONS(4384), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4384), + [anon_sym_decltype] = ACTIONS(4384), + [anon_sym_explicit] = ACTIONS(4384), + [anon_sym_typename] = ACTIONS(4384), + [anon_sym_template] = ACTIONS(4384), + [anon_sym_operator] = ACTIONS(4384), + [anon_sym_friend] = ACTIONS(4384), + [anon_sym_public] = ACTIONS(4384), + [anon_sym_private] = ACTIONS(4384), + [anon_sym_protected] = ACTIONS(4384), + [anon_sym_using] = ACTIONS(4384), + [anon_sym_static_assert] = ACTIONS(4384), + [sym_macro_statement] = ACTIONS(4384), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4384), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4384), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4384), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4384), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4384), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4384), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4384), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4384), + [anon_sym_MOZ_COLD] = ACTIONS(4384), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4384), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4384), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4384), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4384), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4384), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4384), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4384), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4384), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4384), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4384), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4384), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4384), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4384), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4384), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4384), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4384), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4384), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4384), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4384), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4384), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_NONNULL] = ACTIONS(4384), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4384), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4384), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4384), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4384), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4384), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_NORETURN] = ACTIONS(4384), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4384), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4384), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4384), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4384), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4384), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4384), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4384), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4384), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4384), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4384), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4384), + [anon_sym_MOZ_RAII] = ACTIONS(4384), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4384), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4384), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4384), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4384), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4384), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4384), + }, + [STATE(1122)] = { + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2428), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_virtual] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_COLON_COLON] = ACTIONS(2430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___based] = ACTIONS(2428), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_mutable] = ACTIONS(2428), + [anon_sym_constinit] = ACTIONS(2428), + [anon_sym_consteval] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_class] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2428), + [anon_sym_decltype] = ACTIONS(2428), + [anon_sym_explicit] = ACTIONS(2428), + [anon_sym_typename] = ACTIONS(2428), + [anon_sym_template] = ACTIONS(2428), + [anon_sym_operator] = ACTIONS(2428), + [anon_sym_friend] = ACTIONS(2428), + [anon_sym_public] = ACTIONS(2428), + [anon_sym_private] = ACTIONS(2428), + [anon_sym_protected] = ACTIONS(2428), + [anon_sym_using] = ACTIONS(2428), + [anon_sym_static_assert] = ACTIONS(2428), + [sym_macro_statement] = ACTIONS(2428), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2428), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2428), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2428), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2428), + [anon_sym_MOZ_COLD] = ACTIONS(2428), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2428), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2428), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2428), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2428), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2428), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2428), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2428), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2428), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2428), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2428), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2428), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2428), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2428), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_NONNULL] = ACTIONS(2428), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2428), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2428), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2428), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2428), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2428), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2428), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2428), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2428), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2428), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2428), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2428), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2428), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2428), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2428), + [anon_sym_MOZ_RAII] = ACTIONS(2428), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2428), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2428), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2428), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2428), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2428), + }, + [STATE(1123)] = { + [sym_identifier] = ACTIONS(2182), + [aux_sym_preproc_def_token1] = ACTIONS(2182), + [aux_sym_preproc_if_token1] = ACTIONS(2182), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2182), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2182), + [sym_preproc_directive] = ACTIONS(2182), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym___extension__] = ACTIONS(2182), + [anon_sym_typedef] = ACTIONS(2182), + [anon_sym_virtual] = ACTIONS(2182), + [anon_sym_extern] = ACTIONS(2182), + [anon_sym___attribute__] = ACTIONS(2182), + [anon_sym___attribute] = ACTIONS(2182), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2182), + [anon_sym___based] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2182), + [anon_sym_unsigned] = ACTIONS(2182), + [anon_sym_long] = ACTIONS(2182), + [anon_sym_short] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_register] = ACTIONS(2182), + [anon_sym_inline] = ACTIONS(2182), + [anon_sym___inline] = ACTIONS(2182), + [anon_sym___inline__] = ACTIONS(2182), + [anon_sym___forceinline] = ACTIONS(2182), + [anon_sym_thread_local] = ACTIONS(2182), + [anon_sym___thread] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_constexpr] = ACTIONS(2182), + [anon_sym_volatile] = ACTIONS(2182), + [anon_sym_restrict] = ACTIONS(2182), + [anon_sym___restrict__] = ACTIONS(2182), + [anon_sym__Atomic] = ACTIONS(2182), + [anon_sym__Noreturn] = ACTIONS(2182), + [anon_sym_noreturn] = ACTIONS(2182), + [anon_sym__Nonnull] = ACTIONS(2182), + [anon_sym_mutable] = ACTIONS(2182), + [anon_sym_constinit] = ACTIONS(2182), + [anon_sym_consteval] = ACTIONS(2182), + [anon_sym_alignas] = ACTIONS(2182), + [anon_sym__Alignas] = ACTIONS(2182), + [sym_primitive_type] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), + [anon_sym_class] = ACTIONS(2182), + [anon_sym_struct] = ACTIONS(2182), + [anon_sym_union] = ACTIONS(2182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2182), + [anon_sym_decltype] = ACTIONS(2182), + [anon_sym_explicit] = ACTIONS(2182), + [anon_sym_typename] = ACTIONS(2182), + [anon_sym_template] = ACTIONS(2182), + [anon_sym_operator] = ACTIONS(2182), + [anon_sym_friend] = ACTIONS(2182), + [anon_sym_public] = ACTIONS(2182), + [anon_sym_private] = ACTIONS(2182), + [anon_sym_protected] = ACTIONS(2182), + [anon_sym_using] = ACTIONS(2182), + [anon_sym_static_assert] = ACTIONS(2182), + [sym_macro_statement] = ACTIONS(2182), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2182), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2182), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2182), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2182), + [anon_sym_MOZ_COLD] = ACTIONS(2182), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2182), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2182), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2182), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2182), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2182), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2182), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2182), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2182), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2182), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2182), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2182), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2182), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2182), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_NONNULL] = ACTIONS(2182), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2182), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2182), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2182), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2182), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2182), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2182), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2182), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2182), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2182), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2182), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2182), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2182), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2182), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2182), + [anon_sym_MOZ_RAII] = ACTIONS(2182), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2182), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2182), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2182), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2182), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2182), + }, + [STATE(1124)] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_STAR] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym___attribute] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2188), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym__Nonnull] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym__Alignas] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_friend] = ACTIONS(2186), + [anon_sym_public] = ACTIONS(2186), + [anon_sym_private] = ACTIONS(2186), + [anon_sym_protected] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [sym_macro_statement] = ACTIONS(2186), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2186), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2186), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2186), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2186), + [anon_sym_MOZ_COLD] = ACTIONS(2186), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2186), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2186), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2186), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2186), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2186), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2186), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2186), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2186), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2186), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2186), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2186), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2186), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2186), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_NONNULL] = ACTIONS(2186), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2186), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2186), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2186), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2186), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2186), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2186), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2186), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2186), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2186), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2186), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2186), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2186), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2186), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2186), + [anon_sym_MOZ_RAII] = ACTIONS(2186), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2186), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2186), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2186), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2186), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2186), + }, + [STATE(1125)] = { + [sym_identifier] = ACTIONS(4388), + [aux_sym_preproc_def_token1] = ACTIONS(4388), + [aux_sym_preproc_if_token1] = ACTIONS(4388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4388), + [sym_preproc_directive] = ACTIONS(4388), + [anon_sym_LPAREN2] = ACTIONS(4390), + [anon_sym_TILDE] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_AMP] = ACTIONS(4388), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym___extension__] = ACTIONS(4388), + [anon_sym_typedef] = ACTIONS(4388), + [anon_sym_virtual] = ACTIONS(4388), + [anon_sym_extern] = ACTIONS(4388), + [anon_sym___attribute__] = ACTIONS(4388), + [anon_sym___attribute] = ACTIONS(4388), + [anon_sym_COLON_COLON] = ACTIONS(4390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4390), + [anon_sym___declspec] = ACTIONS(4388), + [anon_sym___based] = ACTIONS(4388), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_signed] = ACTIONS(4388), + [anon_sym_unsigned] = ACTIONS(4388), + [anon_sym_long] = ACTIONS(4388), + [anon_sym_short] = ACTIONS(4388), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_static] = ACTIONS(4388), + [anon_sym_register] = ACTIONS(4388), + [anon_sym_inline] = ACTIONS(4388), + [anon_sym___inline] = ACTIONS(4388), + [anon_sym___inline__] = ACTIONS(4388), + [anon_sym___forceinline] = ACTIONS(4388), + [anon_sym_thread_local] = ACTIONS(4388), + [anon_sym___thread] = ACTIONS(4388), + [anon_sym_const] = ACTIONS(4388), + [anon_sym_constexpr] = ACTIONS(4388), + [anon_sym_volatile] = ACTIONS(4388), + [anon_sym_restrict] = ACTIONS(4388), + [anon_sym___restrict__] = ACTIONS(4388), + [anon_sym__Atomic] = ACTIONS(4388), + [anon_sym__Noreturn] = ACTIONS(4388), + [anon_sym_noreturn] = ACTIONS(4388), + [anon_sym__Nonnull] = ACTIONS(4388), + [anon_sym_mutable] = ACTIONS(4388), + [anon_sym_constinit] = ACTIONS(4388), + [anon_sym_consteval] = ACTIONS(4388), + [anon_sym_alignas] = ACTIONS(4388), + [anon_sym__Alignas] = ACTIONS(4388), + [sym_primitive_type] = ACTIONS(4388), + [anon_sym_enum] = ACTIONS(4388), + [anon_sym_class] = ACTIONS(4388), + [anon_sym_struct] = ACTIONS(4388), + [anon_sym_union] = ACTIONS(4388), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4388), + [anon_sym_decltype] = ACTIONS(4388), + [anon_sym_explicit] = ACTIONS(4388), + [anon_sym_typename] = ACTIONS(4388), + [anon_sym_template] = ACTIONS(4388), + [anon_sym_operator] = ACTIONS(4388), + [anon_sym_friend] = ACTIONS(4388), + [anon_sym_public] = ACTIONS(4388), + [anon_sym_private] = ACTIONS(4388), + [anon_sym_protected] = ACTIONS(4388), + [anon_sym_using] = ACTIONS(4388), + [anon_sym_static_assert] = ACTIONS(4388), + [sym_macro_statement] = ACTIONS(4388), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4388), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4388), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4388), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4388), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4388), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4388), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4388), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4388), + [anon_sym_MOZ_COLD] = ACTIONS(4388), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4388), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4388), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4388), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4388), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4388), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4388), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4388), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4388), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4388), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4388), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4388), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4388), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4388), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4388), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4388), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4388), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4388), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4388), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4388), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4388), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_NONNULL] = ACTIONS(4388), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4388), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4388), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4388), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4388), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4388), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_NORETURN] = ACTIONS(4388), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4388), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4388), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4388), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4388), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4388), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4388), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4388), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4388), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4388), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4388), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4388), + [anon_sym_MOZ_RAII] = ACTIONS(4388), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4388), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4388), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4388), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4388), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4388), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4388), + }, + [STATE(1126)] = { + [sym_identifier] = ACTIONS(2194), + [aux_sym_preproc_def_token1] = ACTIONS(2194), + [aux_sym_preproc_if_token1] = ACTIONS(2194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), + [sym_preproc_directive] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(2196), + [anon_sym_TILDE] = ACTIONS(2196), + [anon_sym_STAR] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym___extension__] = ACTIONS(2194), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_virtual] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(2194), + [anon_sym___attribute__] = ACTIONS(2194), + [anon_sym___attribute] = ACTIONS(2194), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2196), + [anon_sym___declspec] = ACTIONS(2194), + [anon_sym___based] = ACTIONS(2194), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_signed] = ACTIONS(2194), + [anon_sym_unsigned] = ACTIONS(2194), + [anon_sym_long] = ACTIONS(2194), + [anon_sym_short] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2194), + [anon_sym_static] = ACTIONS(2194), + [anon_sym_register] = ACTIONS(2194), + [anon_sym_inline] = ACTIONS(2194), + [anon_sym___inline] = ACTIONS(2194), + [anon_sym___inline__] = ACTIONS(2194), + [anon_sym___forceinline] = ACTIONS(2194), + [anon_sym_thread_local] = ACTIONS(2194), + [anon_sym___thread] = ACTIONS(2194), + [anon_sym_const] = ACTIONS(2194), + [anon_sym_constexpr] = ACTIONS(2194), + [anon_sym_volatile] = ACTIONS(2194), + [anon_sym_restrict] = ACTIONS(2194), + [anon_sym___restrict__] = ACTIONS(2194), + [anon_sym__Atomic] = ACTIONS(2194), + [anon_sym__Noreturn] = ACTIONS(2194), + [anon_sym_noreturn] = ACTIONS(2194), + [anon_sym__Nonnull] = ACTIONS(2194), + [anon_sym_mutable] = ACTIONS(2194), + [anon_sym_constinit] = ACTIONS(2194), + [anon_sym_consteval] = ACTIONS(2194), + [anon_sym_alignas] = ACTIONS(2194), + [anon_sym__Alignas] = ACTIONS(2194), + [sym_primitive_type] = ACTIONS(2194), + [anon_sym_enum] = ACTIONS(2194), + [anon_sym_class] = ACTIONS(2194), + [anon_sym_struct] = ACTIONS(2194), + [anon_sym_union] = ACTIONS(2194), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2194), + [anon_sym_decltype] = ACTIONS(2194), + [anon_sym_explicit] = ACTIONS(2194), + [anon_sym_typename] = ACTIONS(2194), + [anon_sym_template] = ACTIONS(2194), + [anon_sym_operator] = ACTIONS(2194), + [anon_sym_friend] = ACTIONS(2194), + [anon_sym_public] = ACTIONS(2194), + [anon_sym_private] = ACTIONS(2194), + [anon_sym_protected] = ACTIONS(2194), + [anon_sym_using] = ACTIONS(2194), + [anon_sym_static_assert] = ACTIONS(2194), + [sym_macro_statement] = ACTIONS(2194), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2194), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2194), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2194), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2194), + [anon_sym_MOZ_COLD] = ACTIONS(2194), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2194), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2194), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2194), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2194), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2194), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2194), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2194), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2194), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2194), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2194), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2194), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2194), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2194), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_NONNULL] = ACTIONS(2194), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2194), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2194), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2194), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2194), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2194), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2194), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2194), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2194), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2194), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2194), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2194), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2194), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2194), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2194), + [anon_sym_MOZ_RAII] = ACTIONS(2194), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2194), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2194), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2194), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2194), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2194), + }, + [STATE(1127)] = { + [sym_identifier] = ACTIONS(2198), + [aux_sym_preproc_def_token1] = ACTIONS(2198), + [aux_sym_preproc_if_token1] = ACTIONS(2198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2198), + [sym_preproc_directive] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_AMP_AMP] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym___extension__] = ACTIONS(2198), + [anon_sym_typedef] = ACTIONS(2198), + [anon_sym_virtual] = ACTIONS(2198), + [anon_sym_extern] = ACTIONS(2198), + [anon_sym___attribute__] = ACTIONS(2198), + [anon_sym___attribute] = ACTIONS(2198), + [anon_sym_COLON_COLON] = ACTIONS(2200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2200), + [anon_sym___declspec] = ACTIONS(2198), + [anon_sym___based] = ACTIONS(2198), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_signed] = ACTIONS(2198), + [anon_sym_unsigned] = ACTIONS(2198), + [anon_sym_long] = ACTIONS(2198), + [anon_sym_short] = ACTIONS(2198), + [anon_sym_LBRACK] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_register] = ACTIONS(2198), + [anon_sym_inline] = ACTIONS(2198), + [anon_sym___inline] = ACTIONS(2198), + [anon_sym___inline__] = ACTIONS(2198), + [anon_sym___forceinline] = ACTIONS(2198), + [anon_sym_thread_local] = ACTIONS(2198), + [anon_sym___thread] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_constexpr] = ACTIONS(2198), + [anon_sym_volatile] = ACTIONS(2198), + [anon_sym_restrict] = ACTIONS(2198), + [anon_sym___restrict__] = ACTIONS(2198), + [anon_sym__Atomic] = ACTIONS(2198), + [anon_sym__Noreturn] = ACTIONS(2198), + [anon_sym_noreturn] = ACTIONS(2198), + [anon_sym__Nonnull] = ACTIONS(2198), + [anon_sym_mutable] = ACTIONS(2198), + [anon_sym_constinit] = ACTIONS(2198), + [anon_sym_consteval] = ACTIONS(2198), + [anon_sym_alignas] = ACTIONS(2198), + [anon_sym__Alignas] = ACTIONS(2198), + [sym_primitive_type] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), + [anon_sym_class] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(2198), + [anon_sym_union] = ACTIONS(2198), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2198), + [anon_sym_decltype] = ACTIONS(2198), + [anon_sym_explicit] = ACTIONS(2198), + [anon_sym_typename] = ACTIONS(2198), + [anon_sym_template] = ACTIONS(2198), + [anon_sym_operator] = ACTIONS(2198), + [anon_sym_friend] = ACTIONS(2198), + [anon_sym_public] = ACTIONS(2198), + [anon_sym_private] = ACTIONS(2198), + [anon_sym_protected] = ACTIONS(2198), + [anon_sym_using] = ACTIONS(2198), + [anon_sym_static_assert] = ACTIONS(2198), + [sym_macro_statement] = ACTIONS(2198), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2198), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2198), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2198), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2198), + [anon_sym_MOZ_COLD] = ACTIONS(2198), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2198), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2198), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2198), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2198), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2198), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2198), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2198), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2198), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2198), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2198), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2198), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2198), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2198), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_NONNULL] = ACTIONS(2198), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2198), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2198), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2198), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2198), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2198), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2198), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2198), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2198), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2198), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2198), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2198), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2198), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2198), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2198), + [anon_sym_MOZ_RAII] = ACTIONS(2198), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2198), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2198), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2198), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2198), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2198), + }, + [STATE(1128)] = { + [sym_identifier] = ACTIONS(4388), + [aux_sym_preproc_def_token1] = ACTIONS(4388), + [aux_sym_preproc_if_token1] = ACTIONS(4388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4388), + [sym_preproc_directive] = ACTIONS(4388), + [anon_sym_LPAREN2] = ACTIONS(4390), + [anon_sym_TILDE] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_AMP] = ACTIONS(4388), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym___extension__] = ACTIONS(4388), + [anon_sym_typedef] = ACTIONS(4388), + [anon_sym_virtual] = ACTIONS(4388), + [anon_sym_extern] = ACTIONS(4388), + [anon_sym___attribute__] = ACTIONS(4388), + [anon_sym___attribute] = ACTIONS(4388), + [anon_sym_COLON_COLON] = ACTIONS(4390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4390), + [anon_sym___declspec] = ACTIONS(4388), + [anon_sym___based] = ACTIONS(4388), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_signed] = ACTIONS(4388), + [anon_sym_unsigned] = ACTIONS(4388), + [anon_sym_long] = ACTIONS(4388), + [anon_sym_short] = ACTIONS(4388), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_static] = ACTIONS(4388), + [anon_sym_register] = ACTIONS(4388), + [anon_sym_inline] = ACTIONS(4388), + [anon_sym___inline] = ACTIONS(4388), + [anon_sym___inline__] = ACTIONS(4388), + [anon_sym___forceinline] = ACTIONS(4388), + [anon_sym_thread_local] = ACTIONS(4388), + [anon_sym___thread] = ACTIONS(4388), + [anon_sym_const] = ACTIONS(4388), + [anon_sym_constexpr] = ACTIONS(4388), + [anon_sym_volatile] = ACTIONS(4388), + [anon_sym_restrict] = ACTIONS(4388), + [anon_sym___restrict__] = ACTIONS(4388), + [anon_sym__Atomic] = ACTIONS(4388), + [anon_sym__Noreturn] = ACTIONS(4388), + [anon_sym_noreturn] = ACTIONS(4388), + [anon_sym__Nonnull] = ACTIONS(4388), + [anon_sym_mutable] = ACTIONS(4388), + [anon_sym_constinit] = ACTIONS(4388), + [anon_sym_consteval] = ACTIONS(4388), + [anon_sym_alignas] = ACTIONS(4388), + [anon_sym__Alignas] = ACTIONS(4388), + [sym_primitive_type] = ACTIONS(4388), + [anon_sym_enum] = ACTIONS(4388), + [anon_sym_class] = ACTIONS(4388), + [anon_sym_struct] = ACTIONS(4388), + [anon_sym_union] = ACTIONS(4388), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4388), + [anon_sym_decltype] = ACTIONS(4388), + [anon_sym_explicit] = ACTIONS(4388), + [anon_sym_typename] = ACTIONS(4388), + [anon_sym_template] = ACTIONS(4388), + [anon_sym_operator] = ACTIONS(4388), + [anon_sym_friend] = ACTIONS(4388), + [anon_sym_public] = ACTIONS(4388), + [anon_sym_private] = ACTIONS(4388), + [anon_sym_protected] = ACTIONS(4388), + [anon_sym_using] = ACTIONS(4388), + [anon_sym_static_assert] = ACTIONS(4388), + [sym_macro_statement] = ACTIONS(4388), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4388), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4388), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4388), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4388), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4388), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4388), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4388), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4388), + [anon_sym_MOZ_COLD] = ACTIONS(4388), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4388), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4388), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4388), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4388), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4388), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4388), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4388), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4388), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4388), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4388), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4388), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4388), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4388), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4388), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4388), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4388), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4388), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4388), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4388), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4388), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_NONNULL] = ACTIONS(4388), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4388), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4388), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4388), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4388), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4388), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_NORETURN] = ACTIONS(4388), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4388), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4388), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4388), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4388), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4388), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4388), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4388), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4388), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4388), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4388), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4388), + [anon_sym_MOZ_RAII] = ACTIONS(4388), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4388), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4388), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4388), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4388), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4388), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4388), + }, + [STATE(1129)] = { + [sym_identifier] = ACTIONS(1966), + [aux_sym_preproc_def_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1966), + [sym_preproc_directive] = ACTIONS(1966), + [anon_sym_LPAREN2] = ACTIONS(1968), + [anon_sym_TILDE] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym___extension__] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1966), + [anon_sym_virtual] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym___attribute__] = ACTIONS(1966), + [anon_sym___attribute] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1966), + [anon_sym___based] = ACTIONS(1966), + [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_register] = ACTIONS(1966), + [anon_sym_inline] = ACTIONS(1966), + [anon_sym___inline] = ACTIONS(1966), + [anon_sym___inline__] = ACTIONS(1966), + [anon_sym___forceinline] = ACTIONS(1966), + [anon_sym_thread_local] = ACTIONS(1966), + [anon_sym___thread] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_constexpr] = ACTIONS(1966), + [anon_sym_volatile] = ACTIONS(1966), + [anon_sym_restrict] = ACTIONS(1966), + [anon_sym___restrict__] = ACTIONS(1966), + [anon_sym__Atomic] = ACTIONS(1966), + [anon_sym__Noreturn] = ACTIONS(1966), + [anon_sym_noreturn] = ACTIONS(1966), + [anon_sym__Nonnull] = ACTIONS(1966), + [anon_sym_mutable] = ACTIONS(1966), + [anon_sym_constinit] = ACTIONS(1966), + [anon_sym_consteval] = ACTIONS(1966), + [anon_sym_alignas] = ACTIONS(1966), + [anon_sym__Alignas] = ACTIONS(1966), + [sym_primitive_type] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_class] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1966), + [anon_sym_decltype] = ACTIONS(1966), + [anon_sym_explicit] = ACTIONS(1966), + [anon_sym_typename] = ACTIONS(1966), + [anon_sym_template] = ACTIONS(1966), + [anon_sym_operator] = ACTIONS(1966), + [anon_sym_friend] = ACTIONS(1966), + [anon_sym_public] = ACTIONS(1966), + [anon_sym_private] = ACTIONS(1966), + [anon_sym_protected] = ACTIONS(1966), + [anon_sym_using] = ACTIONS(1966), + [anon_sym_static_assert] = ACTIONS(1966), + [sym_macro_statement] = ACTIONS(1966), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1966), + [anon_sym_MOZ_COLD] = ACTIONS(1966), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1966), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1966), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1966), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1966), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1966), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1966), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1966), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1966), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1966), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1966), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1966), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1966), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_RAII] = ACTIONS(1966), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1966), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1966), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1966), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1966), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1966), + }, + [STATE(1130)] = { + [sym_identifier] = ACTIONS(1966), + [aux_sym_preproc_def_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1966), + [sym_preproc_directive] = ACTIONS(1966), + [anon_sym_LPAREN2] = ACTIONS(1968), + [anon_sym_TILDE] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym___extension__] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1966), + [anon_sym_virtual] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym___attribute__] = ACTIONS(1966), + [anon_sym___attribute] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1966), + [anon_sym___based] = ACTIONS(1966), + [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_register] = ACTIONS(1966), + [anon_sym_inline] = ACTIONS(1966), + [anon_sym___inline] = ACTIONS(1966), + [anon_sym___inline__] = ACTIONS(1966), + [anon_sym___forceinline] = ACTIONS(1966), + [anon_sym_thread_local] = ACTIONS(1966), + [anon_sym___thread] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_constexpr] = ACTIONS(1966), + [anon_sym_volatile] = ACTIONS(1966), + [anon_sym_restrict] = ACTIONS(1966), + [anon_sym___restrict__] = ACTIONS(1966), + [anon_sym__Atomic] = ACTIONS(1966), + [anon_sym__Noreturn] = ACTIONS(1966), + [anon_sym_noreturn] = ACTIONS(1966), + [anon_sym__Nonnull] = ACTIONS(1966), + [anon_sym_mutable] = ACTIONS(1966), + [anon_sym_constinit] = ACTIONS(1966), + [anon_sym_consteval] = ACTIONS(1966), + [anon_sym_alignas] = ACTIONS(1966), + [anon_sym__Alignas] = ACTIONS(1966), + [sym_primitive_type] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_class] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1966), + [anon_sym_decltype] = ACTIONS(1966), + [anon_sym_explicit] = ACTIONS(1966), + [anon_sym_typename] = ACTIONS(1966), + [anon_sym_template] = ACTIONS(1966), + [anon_sym_operator] = ACTIONS(1966), + [anon_sym_friend] = ACTIONS(1966), + [anon_sym_public] = ACTIONS(1966), + [anon_sym_private] = ACTIONS(1966), + [anon_sym_protected] = ACTIONS(1966), + [anon_sym_using] = ACTIONS(1966), + [anon_sym_static_assert] = ACTIONS(1966), + [sym_macro_statement] = ACTIONS(1966), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1966), + [anon_sym_MOZ_COLD] = ACTIONS(1966), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1966), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1966), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1966), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1966), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1966), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1966), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1966), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1966), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1966), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1966), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1966), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1966), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_RAII] = ACTIONS(1966), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1966), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1966), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1966), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1966), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1966), + }, + [STATE(1131)] = { + [sym_identifier] = ACTIONS(4396), + [aux_sym_preproc_def_token1] = ACTIONS(4396), + [aux_sym_preproc_if_token1] = ACTIONS(4396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4396), + [sym_preproc_directive] = ACTIONS(4396), + [anon_sym_LPAREN2] = ACTIONS(4398), + [anon_sym_TILDE] = ACTIONS(4398), + [anon_sym_STAR] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_AMP] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym___extension__] = ACTIONS(4396), + [anon_sym_typedef] = ACTIONS(4396), + [anon_sym_virtual] = ACTIONS(4396), + [anon_sym_extern] = ACTIONS(4396), + [anon_sym___attribute__] = ACTIONS(4396), + [anon_sym___attribute] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4398), + [anon_sym___declspec] = ACTIONS(4396), + [anon_sym___based] = ACTIONS(4396), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_signed] = ACTIONS(4396), + [anon_sym_unsigned] = ACTIONS(4396), + [anon_sym_long] = ACTIONS(4396), + [anon_sym_short] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_static] = ACTIONS(4396), + [anon_sym_register] = ACTIONS(4396), + [anon_sym_inline] = ACTIONS(4396), + [anon_sym___inline] = ACTIONS(4396), + [anon_sym___inline__] = ACTIONS(4396), + [anon_sym___forceinline] = ACTIONS(4396), + [anon_sym_thread_local] = ACTIONS(4396), + [anon_sym___thread] = ACTIONS(4396), + [anon_sym_const] = ACTIONS(4396), + [anon_sym_constexpr] = ACTIONS(4396), + [anon_sym_volatile] = ACTIONS(4396), + [anon_sym_restrict] = ACTIONS(4396), + [anon_sym___restrict__] = ACTIONS(4396), + [anon_sym__Atomic] = ACTIONS(4396), + [anon_sym__Noreturn] = ACTIONS(4396), + [anon_sym_noreturn] = ACTIONS(4396), + [anon_sym__Nonnull] = ACTIONS(4396), + [anon_sym_mutable] = ACTIONS(4396), + [anon_sym_constinit] = ACTIONS(4396), + [anon_sym_consteval] = ACTIONS(4396), + [anon_sym_alignas] = ACTIONS(4396), + [anon_sym__Alignas] = ACTIONS(4396), + [sym_primitive_type] = ACTIONS(4396), + [anon_sym_enum] = ACTIONS(4396), + [anon_sym_class] = ACTIONS(4396), + [anon_sym_struct] = ACTIONS(4396), + [anon_sym_union] = ACTIONS(4396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4396), + [anon_sym_decltype] = ACTIONS(4396), + [anon_sym_explicit] = ACTIONS(4396), + [anon_sym_typename] = ACTIONS(4396), + [anon_sym_template] = ACTIONS(4396), + [anon_sym_operator] = ACTIONS(4396), + [anon_sym_friend] = ACTIONS(4396), + [anon_sym_public] = ACTIONS(4396), + [anon_sym_private] = ACTIONS(4396), + [anon_sym_protected] = ACTIONS(4396), + [anon_sym_using] = ACTIONS(4396), + [anon_sym_static_assert] = ACTIONS(4396), + [sym_macro_statement] = ACTIONS(4396), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4396), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4396), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4396), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4396), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4396), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4396), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4396), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4396), + [anon_sym_MOZ_COLD] = ACTIONS(4396), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4396), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4396), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4396), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4396), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4396), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4396), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4396), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4396), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4396), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4396), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4396), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4396), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4396), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4396), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4396), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4396), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4396), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4396), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4396), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4396), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_NONNULL] = ACTIONS(4396), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4396), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4396), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4396), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4396), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4396), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_NORETURN] = ACTIONS(4396), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4396), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4396), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4396), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4396), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4396), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4396), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4396), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4396), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4396), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4396), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4396), + [anon_sym_MOZ_RAII] = ACTIONS(4396), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4396), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4396), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4396), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4396), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4396), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4396), + }, + [STATE(1132)] = { + [sym_identifier] = ACTIONS(4400), + [aux_sym_preproc_def_token1] = ACTIONS(4400), + [aux_sym_preproc_if_token1] = ACTIONS(4400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4400), + [sym_preproc_directive] = ACTIONS(4400), + [anon_sym_LPAREN2] = ACTIONS(4402), + [anon_sym_TILDE] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4402), + [anon_sym_AMP_AMP] = ACTIONS(4402), + [anon_sym_AMP] = ACTIONS(4400), + [anon_sym_SEMI] = ACTIONS(4402), + [anon_sym___extension__] = ACTIONS(4400), + [anon_sym_typedef] = ACTIONS(4400), + [anon_sym_virtual] = ACTIONS(4400), + [anon_sym_extern] = ACTIONS(4400), + [anon_sym___attribute__] = ACTIONS(4400), + [anon_sym___attribute] = ACTIONS(4400), + [anon_sym_COLON_COLON] = ACTIONS(4402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4402), + [anon_sym___declspec] = ACTIONS(4400), + [anon_sym___based] = ACTIONS(4400), + [anon_sym_RBRACE] = ACTIONS(4402), + [anon_sym_signed] = ACTIONS(4400), + [anon_sym_unsigned] = ACTIONS(4400), + [anon_sym_long] = ACTIONS(4400), + [anon_sym_short] = ACTIONS(4400), + [anon_sym_LBRACK] = ACTIONS(4400), + [anon_sym_static] = ACTIONS(4400), + [anon_sym_register] = ACTIONS(4400), + [anon_sym_inline] = ACTIONS(4400), + [anon_sym___inline] = ACTIONS(4400), + [anon_sym___inline__] = ACTIONS(4400), + [anon_sym___forceinline] = ACTIONS(4400), + [anon_sym_thread_local] = ACTIONS(4400), + [anon_sym___thread] = ACTIONS(4400), + [anon_sym_const] = ACTIONS(4400), + [anon_sym_constexpr] = ACTIONS(4400), + [anon_sym_volatile] = ACTIONS(4400), + [anon_sym_restrict] = ACTIONS(4400), + [anon_sym___restrict__] = ACTIONS(4400), + [anon_sym__Atomic] = ACTIONS(4400), + [anon_sym__Noreturn] = ACTIONS(4400), + [anon_sym_noreturn] = ACTIONS(4400), + [anon_sym__Nonnull] = ACTIONS(4400), + [anon_sym_mutable] = ACTIONS(4400), + [anon_sym_constinit] = ACTIONS(4400), + [anon_sym_consteval] = ACTIONS(4400), + [anon_sym_alignas] = ACTIONS(4400), + [anon_sym__Alignas] = ACTIONS(4400), + [sym_primitive_type] = ACTIONS(4400), + [anon_sym_enum] = ACTIONS(4400), + [anon_sym_class] = ACTIONS(4400), + [anon_sym_struct] = ACTIONS(4400), + [anon_sym_union] = ACTIONS(4400), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4400), + [anon_sym_decltype] = ACTIONS(4400), + [anon_sym_explicit] = ACTIONS(4400), + [anon_sym_typename] = ACTIONS(4400), + [anon_sym_template] = ACTIONS(4400), + [anon_sym_operator] = ACTIONS(4400), + [anon_sym_friend] = ACTIONS(4400), + [anon_sym_public] = ACTIONS(4400), + [anon_sym_private] = ACTIONS(4400), + [anon_sym_protected] = ACTIONS(4400), + [anon_sym_using] = ACTIONS(4400), + [anon_sym_static_assert] = ACTIONS(4400), + [sym_macro_statement] = ACTIONS(4400), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4400), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4400), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4400), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4400), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4400), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4400), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4400), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4400), + [anon_sym_MOZ_COLD] = ACTIONS(4400), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4400), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4400), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4400), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4400), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4400), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4400), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4400), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4400), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4400), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4400), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4400), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4400), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4400), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4400), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4400), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4400), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4400), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4400), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4400), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4400), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_NONNULL] = ACTIONS(4400), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4400), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4400), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4400), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4400), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4400), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_NORETURN] = ACTIONS(4400), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4400), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4400), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4400), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4400), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4400), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4400), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4400), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4400), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4400), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4400), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4400), + [anon_sym_MOZ_RAII] = ACTIONS(4400), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4400), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4400), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4400), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4400), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4400), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4400), + }, + [STATE(1133)] = { + [sym_identifier] = ACTIONS(2218), + [aux_sym_preproc_def_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2218), + [sym_preproc_directive] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP_AMP] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2218), + [anon_sym_typedef] = ACTIONS(2218), + [anon_sym_virtual] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym___attribute__] = ACTIONS(2218), + [anon_sym___attribute] = ACTIONS(2218), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2220), + [anon_sym___declspec] = ACTIONS(2218), + [anon_sym___based] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2220), + [anon_sym_signed] = ACTIONS(2218), + [anon_sym_unsigned] = ACTIONS(2218), + [anon_sym_long] = ACTIONS(2218), + [anon_sym_short] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_inline] = ACTIONS(2218), + [anon_sym___inline] = ACTIONS(2218), + [anon_sym___inline__] = ACTIONS(2218), + [anon_sym___forceinline] = ACTIONS(2218), + [anon_sym_thread_local] = ACTIONS(2218), + [anon_sym___thread] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_constexpr] = ACTIONS(2218), + [anon_sym_volatile] = ACTIONS(2218), + [anon_sym_restrict] = ACTIONS(2218), + [anon_sym___restrict__] = ACTIONS(2218), + [anon_sym__Atomic] = ACTIONS(2218), + [anon_sym__Noreturn] = ACTIONS(2218), + [anon_sym_noreturn] = ACTIONS(2218), + [anon_sym__Nonnull] = ACTIONS(2218), + [anon_sym_mutable] = ACTIONS(2218), + [anon_sym_constinit] = ACTIONS(2218), + [anon_sym_consteval] = ACTIONS(2218), + [anon_sym_alignas] = ACTIONS(2218), + [anon_sym__Alignas] = ACTIONS(2218), + [sym_primitive_type] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_class] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2218), + [anon_sym_explicit] = ACTIONS(2218), + [anon_sym_typename] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_operator] = ACTIONS(2218), + [anon_sym_friend] = ACTIONS(2218), + [anon_sym_public] = ACTIONS(2218), + [anon_sym_private] = ACTIONS(2218), + [anon_sym_protected] = ACTIONS(2218), + [anon_sym_using] = ACTIONS(2218), + [anon_sym_static_assert] = ACTIONS(2218), + [sym_macro_statement] = ACTIONS(2218), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2218), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2218), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2218), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2218), + [anon_sym_MOZ_COLD] = ACTIONS(2218), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2218), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2218), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2218), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2218), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2218), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2218), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2218), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2218), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2218), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2218), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2218), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2218), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2218), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_NONNULL] = ACTIONS(2218), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2218), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2218), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2218), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2218), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2218), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2218), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2218), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2218), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2218), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2218), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2218), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2218), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2218), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2218), + [anon_sym_MOZ_RAII] = ACTIONS(2218), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2218), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2218), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2218), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2218), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2218), + }, + [STATE(1134)] = { + [sym_identifier] = ACTIONS(4404), + [aux_sym_preproc_def_token1] = ACTIONS(4404), + [aux_sym_preproc_if_token1] = ACTIONS(4404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4404), + [sym_preproc_directive] = ACTIONS(4404), + [anon_sym_LPAREN2] = ACTIONS(4406), + [anon_sym_TILDE] = ACTIONS(4406), + [anon_sym_STAR] = ACTIONS(4406), + [anon_sym_AMP_AMP] = ACTIONS(4406), + [anon_sym_AMP] = ACTIONS(4404), + [anon_sym_SEMI] = ACTIONS(4406), + [anon_sym___extension__] = ACTIONS(4404), + [anon_sym_typedef] = ACTIONS(4404), + [anon_sym_virtual] = ACTIONS(4404), + [anon_sym_extern] = ACTIONS(4404), + [anon_sym___attribute__] = ACTIONS(4404), + [anon_sym___attribute] = ACTIONS(4404), + [anon_sym_COLON_COLON] = ACTIONS(4406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4406), + [anon_sym___declspec] = ACTIONS(4404), + [anon_sym___based] = ACTIONS(4404), + [anon_sym_RBRACE] = ACTIONS(4406), + [anon_sym_signed] = ACTIONS(4404), + [anon_sym_unsigned] = ACTIONS(4404), + [anon_sym_long] = ACTIONS(4404), + [anon_sym_short] = ACTIONS(4404), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_static] = ACTIONS(4404), + [anon_sym_register] = ACTIONS(4404), + [anon_sym_inline] = ACTIONS(4404), + [anon_sym___inline] = ACTIONS(4404), + [anon_sym___inline__] = ACTIONS(4404), + [anon_sym___forceinline] = ACTIONS(4404), + [anon_sym_thread_local] = ACTIONS(4404), + [anon_sym___thread] = ACTIONS(4404), + [anon_sym_const] = ACTIONS(4404), + [anon_sym_constexpr] = ACTIONS(4404), + [anon_sym_volatile] = ACTIONS(4404), + [anon_sym_restrict] = ACTIONS(4404), + [anon_sym___restrict__] = ACTIONS(4404), + [anon_sym__Atomic] = ACTIONS(4404), + [anon_sym__Noreturn] = ACTIONS(4404), + [anon_sym_noreturn] = ACTIONS(4404), + [anon_sym__Nonnull] = ACTIONS(4404), + [anon_sym_mutable] = ACTIONS(4404), + [anon_sym_constinit] = ACTIONS(4404), + [anon_sym_consteval] = ACTIONS(4404), + [anon_sym_alignas] = ACTIONS(4404), + [anon_sym__Alignas] = ACTIONS(4404), + [sym_primitive_type] = ACTIONS(4404), + [anon_sym_enum] = ACTIONS(4404), + [anon_sym_class] = ACTIONS(4404), + [anon_sym_struct] = ACTIONS(4404), + [anon_sym_union] = ACTIONS(4404), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4404), + [anon_sym_decltype] = ACTIONS(4404), + [anon_sym_explicit] = ACTIONS(4404), + [anon_sym_typename] = ACTIONS(4404), + [anon_sym_template] = ACTIONS(4404), + [anon_sym_operator] = ACTIONS(4404), + [anon_sym_friend] = ACTIONS(4404), + [anon_sym_public] = ACTIONS(4404), + [anon_sym_private] = ACTIONS(4404), + [anon_sym_protected] = ACTIONS(4404), + [anon_sym_using] = ACTIONS(4404), + [anon_sym_static_assert] = ACTIONS(4404), + [sym_macro_statement] = ACTIONS(4404), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4404), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4404), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4404), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4404), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4404), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4404), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4404), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4404), + [anon_sym_MOZ_COLD] = ACTIONS(4404), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4404), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4404), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4404), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4404), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4404), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4404), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4404), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4404), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4404), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4404), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4404), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4404), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4404), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4404), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4404), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4404), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4404), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4404), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4404), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4404), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_NONNULL] = ACTIONS(4404), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4404), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4404), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4404), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4404), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4404), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_NORETURN] = ACTIONS(4404), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4404), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4404), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4404), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4404), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4404), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4404), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4404), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4404), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4404), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4404), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4404), + [anon_sym_MOZ_RAII] = ACTIONS(4404), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4404), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4404), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4404), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4404), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4404), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4404), + }, + [STATE(1135)] = { + [sym_identifier] = ACTIONS(4408), + [aux_sym_preproc_def_token1] = ACTIONS(4408), + [aux_sym_preproc_if_token1] = ACTIONS(4408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4408), + [sym_preproc_directive] = ACTIONS(4408), + [anon_sym_LPAREN2] = ACTIONS(4410), + [anon_sym_TILDE] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4410), + [anon_sym_AMP_AMP] = ACTIONS(4410), + [anon_sym_AMP] = ACTIONS(4408), + [anon_sym_SEMI] = ACTIONS(4410), + [anon_sym___extension__] = ACTIONS(4408), + [anon_sym_typedef] = ACTIONS(4408), + [anon_sym_virtual] = ACTIONS(4408), + [anon_sym_extern] = ACTIONS(4408), + [anon_sym___attribute__] = ACTIONS(4408), + [anon_sym___attribute] = ACTIONS(4408), + [anon_sym_COLON_COLON] = ACTIONS(4410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4410), + [anon_sym___declspec] = ACTIONS(4408), + [anon_sym___based] = ACTIONS(4408), + [anon_sym_RBRACE] = ACTIONS(4410), + [anon_sym_signed] = ACTIONS(4408), + [anon_sym_unsigned] = ACTIONS(4408), + [anon_sym_long] = ACTIONS(4408), + [anon_sym_short] = ACTIONS(4408), + [anon_sym_LBRACK] = ACTIONS(4408), + [anon_sym_static] = ACTIONS(4408), + [anon_sym_register] = ACTIONS(4408), + [anon_sym_inline] = ACTIONS(4408), + [anon_sym___inline] = ACTIONS(4408), + [anon_sym___inline__] = ACTIONS(4408), + [anon_sym___forceinline] = ACTIONS(4408), + [anon_sym_thread_local] = ACTIONS(4408), + [anon_sym___thread] = ACTIONS(4408), + [anon_sym_const] = ACTIONS(4408), + [anon_sym_constexpr] = ACTIONS(4408), + [anon_sym_volatile] = ACTIONS(4408), + [anon_sym_restrict] = ACTIONS(4408), + [anon_sym___restrict__] = ACTIONS(4408), + [anon_sym__Atomic] = ACTIONS(4408), + [anon_sym__Noreturn] = ACTIONS(4408), + [anon_sym_noreturn] = ACTIONS(4408), + [anon_sym__Nonnull] = ACTIONS(4408), + [anon_sym_mutable] = ACTIONS(4408), + [anon_sym_constinit] = ACTIONS(4408), + [anon_sym_consteval] = ACTIONS(4408), + [anon_sym_alignas] = ACTIONS(4408), + [anon_sym__Alignas] = ACTIONS(4408), + [sym_primitive_type] = ACTIONS(4408), + [anon_sym_enum] = ACTIONS(4408), + [anon_sym_class] = ACTIONS(4408), + [anon_sym_struct] = ACTIONS(4408), + [anon_sym_union] = ACTIONS(4408), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4408), + [anon_sym_decltype] = ACTIONS(4408), + [anon_sym_explicit] = ACTIONS(4408), + [anon_sym_typename] = ACTIONS(4408), + [anon_sym_template] = ACTIONS(4408), + [anon_sym_operator] = ACTIONS(4408), + [anon_sym_friend] = ACTIONS(4408), + [anon_sym_public] = ACTIONS(4408), + [anon_sym_private] = ACTIONS(4408), + [anon_sym_protected] = ACTIONS(4408), + [anon_sym_using] = ACTIONS(4408), + [anon_sym_static_assert] = ACTIONS(4408), + [sym_macro_statement] = ACTIONS(4408), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4408), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4408), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4408), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4408), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4408), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4408), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4408), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4408), + [anon_sym_MOZ_COLD] = ACTIONS(4408), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4408), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4408), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4408), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4408), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4408), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4408), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4408), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4408), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4408), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4408), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4408), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4408), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4408), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4408), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4408), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4408), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4408), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4408), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4408), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4408), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_NONNULL] = ACTIONS(4408), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4408), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4408), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4408), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4408), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4408), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_NORETURN] = ACTIONS(4408), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4408), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4408), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4408), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4408), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4408), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4408), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4408), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4408), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4408), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4408), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4408), + [anon_sym_MOZ_RAII] = ACTIONS(4408), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4408), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4408), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4408), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4408), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4408), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4408), + }, + [STATE(1136)] = { + [sym_identifier] = ACTIONS(4412), + [aux_sym_preproc_def_token1] = ACTIONS(4412), + [aux_sym_preproc_if_token1] = ACTIONS(4412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4412), + [sym_preproc_directive] = ACTIONS(4412), + [anon_sym_LPAREN2] = ACTIONS(4414), + [anon_sym_TILDE] = ACTIONS(4414), + [anon_sym_STAR] = ACTIONS(4414), + [anon_sym_AMP_AMP] = ACTIONS(4414), + [anon_sym_AMP] = ACTIONS(4412), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym___extension__] = ACTIONS(4412), + [anon_sym_typedef] = ACTIONS(4412), + [anon_sym_virtual] = ACTIONS(4412), + [anon_sym_extern] = ACTIONS(4412), + [anon_sym___attribute__] = ACTIONS(4412), + [anon_sym___attribute] = ACTIONS(4412), + [anon_sym_COLON_COLON] = ACTIONS(4414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4414), + [anon_sym___declspec] = ACTIONS(4412), + [anon_sym___based] = ACTIONS(4412), + [anon_sym_RBRACE] = ACTIONS(4414), + [anon_sym_signed] = ACTIONS(4412), + [anon_sym_unsigned] = ACTIONS(4412), + [anon_sym_long] = ACTIONS(4412), + [anon_sym_short] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_static] = ACTIONS(4412), + [anon_sym_register] = ACTIONS(4412), + [anon_sym_inline] = ACTIONS(4412), + [anon_sym___inline] = ACTIONS(4412), + [anon_sym___inline__] = ACTIONS(4412), + [anon_sym___forceinline] = ACTIONS(4412), + [anon_sym_thread_local] = ACTIONS(4412), + [anon_sym___thread] = ACTIONS(4412), + [anon_sym_const] = ACTIONS(4412), + [anon_sym_constexpr] = ACTIONS(4412), + [anon_sym_volatile] = ACTIONS(4412), + [anon_sym_restrict] = ACTIONS(4412), + [anon_sym___restrict__] = ACTIONS(4412), + [anon_sym__Atomic] = ACTIONS(4412), + [anon_sym__Noreturn] = ACTIONS(4412), + [anon_sym_noreturn] = ACTIONS(4412), + [anon_sym__Nonnull] = ACTIONS(4412), + [anon_sym_mutable] = ACTIONS(4412), + [anon_sym_constinit] = ACTIONS(4412), + [anon_sym_consteval] = ACTIONS(4412), + [anon_sym_alignas] = ACTIONS(4412), + [anon_sym__Alignas] = ACTIONS(4412), + [sym_primitive_type] = ACTIONS(4412), + [anon_sym_enum] = ACTIONS(4412), + [anon_sym_class] = ACTIONS(4412), + [anon_sym_struct] = ACTIONS(4412), + [anon_sym_union] = ACTIONS(4412), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4412), + [anon_sym_decltype] = ACTIONS(4412), + [anon_sym_explicit] = ACTIONS(4412), + [anon_sym_typename] = ACTIONS(4412), + [anon_sym_template] = ACTIONS(4412), + [anon_sym_operator] = ACTIONS(4412), + [anon_sym_friend] = ACTIONS(4412), + [anon_sym_public] = ACTIONS(4412), + [anon_sym_private] = ACTIONS(4412), + [anon_sym_protected] = ACTIONS(4412), + [anon_sym_using] = ACTIONS(4412), + [anon_sym_static_assert] = ACTIONS(4412), + [sym_macro_statement] = ACTIONS(4412), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4412), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4412), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4412), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4412), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4412), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4412), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4412), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4412), + [anon_sym_MOZ_COLD] = ACTIONS(4412), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4412), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4412), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4412), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4412), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4412), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4412), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4412), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4412), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4412), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4412), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4412), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4412), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4412), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4412), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4412), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4412), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4412), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4412), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4412), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4412), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_NONNULL] = ACTIONS(4412), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4412), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4412), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4412), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4412), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4412), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_NORETURN] = ACTIONS(4412), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4412), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4412), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4412), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4412), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4412), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4412), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4412), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4412), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4412), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4412), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4412), + [anon_sym_MOZ_RAII] = ACTIONS(4412), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4412), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4412), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4412), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4412), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4412), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4412), + }, + [STATE(1137)] = { + [sym_identifier] = ACTIONS(4416), + [aux_sym_preproc_def_token1] = ACTIONS(4416), + [aux_sym_preproc_if_token1] = ACTIONS(4416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4416), + [sym_preproc_directive] = ACTIONS(4416), + [anon_sym_LPAREN2] = ACTIONS(4418), + [anon_sym_TILDE] = ACTIONS(4418), + [anon_sym_STAR] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_AMP] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym___extension__] = ACTIONS(4416), + [anon_sym_typedef] = ACTIONS(4416), + [anon_sym_virtual] = ACTIONS(4416), + [anon_sym_extern] = ACTIONS(4416), + [anon_sym___attribute__] = ACTIONS(4416), + [anon_sym___attribute] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4418), + [anon_sym___declspec] = ACTIONS(4416), + [anon_sym___based] = ACTIONS(4416), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_signed] = ACTIONS(4416), + [anon_sym_unsigned] = ACTIONS(4416), + [anon_sym_long] = ACTIONS(4416), + [anon_sym_short] = ACTIONS(4416), + [anon_sym_LBRACK] = ACTIONS(4416), + [anon_sym_static] = ACTIONS(4416), + [anon_sym_register] = ACTIONS(4416), + [anon_sym_inline] = ACTIONS(4416), + [anon_sym___inline] = ACTIONS(4416), + [anon_sym___inline__] = ACTIONS(4416), + [anon_sym___forceinline] = ACTIONS(4416), + [anon_sym_thread_local] = ACTIONS(4416), + [anon_sym___thread] = ACTIONS(4416), + [anon_sym_const] = ACTIONS(4416), + [anon_sym_constexpr] = ACTIONS(4416), + [anon_sym_volatile] = ACTIONS(4416), + [anon_sym_restrict] = ACTIONS(4416), + [anon_sym___restrict__] = ACTIONS(4416), + [anon_sym__Atomic] = ACTIONS(4416), + [anon_sym__Noreturn] = ACTIONS(4416), + [anon_sym_noreturn] = ACTIONS(4416), + [anon_sym__Nonnull] = ACTIONS(4416), + [anon_sym_mutable] = ACTIONS(4416), + [anon_sym_constinit] = ACTIONS(4416), + [anon_sym_consteval] = ACTIONS(4416), + [anon_sym_alignas] = ACTIONS(4416), + [anon_sym__Alignas] = ACTIONS(4416), + [sym_primitive_type] = ACTIONS(4416), + [anon_sym_enum] = ACTIONS(4416), + [anon_sym_class] = ACTIONS(4416), + [anon_sym_struct] = ACTIONS(4416), + [anon_sym_union] = ACTIONS(4416), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4416), + [anon_sym_decltype] = ACTIONS(4416), + [anon_sym_explicit] = ACTIONS(4416), + [anon_sym_typename] = ACTIONS(4416), + [anon_sym_template] = ACTIONS(4416), + [anon_sym_operator] = ACTIONS(4416), + [anon_sym_friend] = ACTIONS(4416), + [anon_sym_public] = ACTIONS(4416), + [anon_sym_private] = ACTIONS(4416), + [anon_sym_protected] = ACTIONS(4416), + [anon_sym_using] = ACTIONS(4416), + [anon_sym_static_assert] = ACTIONS(4416), + [sym_macro_statement] = ACTIONS(4416), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4416), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4416), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4416), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4416), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4416), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4416), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4416), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4416), + [anon_sym_MOZ_COLD] = ACTIONS(4416), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4416), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4416), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4416), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4416), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4416), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4416), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4416), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4416), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4416), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4416), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4416), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4416), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4416), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4416), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4416), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4416), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4416), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4416), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4416), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4416), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_NONNULL] = ACTIONS(4416), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4416), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4416), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4416), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4416), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4416), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_NORETURN] = ACTIONS(4416), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4416), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4416), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4416), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4416), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4416), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4416), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4416), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4416), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4416), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4416), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4416), + [anon_sym_MOZ_RAII] = ACTIONS(4416), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4416), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4416), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4416), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4416), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4416), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4416), + }, + [STATE(1138)] = { + [sym_identifier] = ACTIONS(2152), + [aux_sym_preproc_def_token1] = ACTIONS(2152), + [aux_sym_preproc_if_token1] = ACTIONS(2152), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2152), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2152), + [sym_preproc_directive] = ACTIONS(2152), + [anon_sym_LPAREN2] = ACTIONS(2154), + [anon_sym_TILDE] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2154), + [anon_sym_AMP_AMP] = ACTIONS(2154), + [anon_sym_AMP] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym___extension__] = ACTIONS(2152), + [anon_sym_typedef] = ACTIONS(2152), + [anon_sym_virtual] = ACTIONS(2152), + [anon_sym_extern] = ACTIONS(2152), + [anon_sym___attribute__] = ACTIONS(2152), + [anon_sym___attribute] = ACTIONS(2152), + [anon_sym_COLON_COLON] = ACTIONS(2154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2154), + [anon_sym___declspec] = ACTIONS(2152), + [anon_sym___based] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_signed] = ACTIONS(2152), + [anon_sym_unsigned] = ACTIONS(2152), + [anon_sym_long] = ACTIONS(2152), + [anon_sym_short] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_register] = ACTIONS(2152), + [anon_sym_inline] = ACTIONS(2152), + [anon_sym___inline] = ACTIONS(2152), + [anon_sym___inline__] = ACTIONS(2152), + [anon_sym___forceinline] = ACTIONS(2152), + [anon_sym_thread_local] = ACTIONS(2152), + [anon_sym___thread] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_constexpr] = ACTIONS(2152), + [anon_sym_volatile] = ACTIONS(2152), + [anon_sym_restrict] = ACTIONS(2152), + [anon_sym___restrict__] = ACTIONS(2152), + [anon_sym__Atomic] = ACTIONS(2152), + [anon_sym__Noreturn] = ACTIONS(2152), + [anon_sym_noreturn] = ACTIONS(2152), + [anon_sym__Nonnull] = ACTIONS(2152), + [anon_sym_mutable] = ACTIONS(2152), + [anon_sym_constinit] = ACTIONS(2152), + [anon_sym_consteval] = ACTIONS(2152), + [anon_sym_alignas] = ACTIONS(2152), + [anon_sym__Alignas] = ACTIONS(2152), + [sym_primitive_type] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_struct] = ACTIONS(2152), + [anon_sym_union] = ACTIONS(2152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2152), + [anon_sym_decltype] = ACTIONS(2152), + [anon_sym_explicit] = ACTIONS(2152), + [anon_sym_typename] = ACTIONS(2152), + [anon_sym_template] = ACTIONS(2152), + [anon_sym_operator] = ACTIONS(2152), + [anon_sym_friend] = ACTIONS(2152), + [anon_sym_public] = ACTIONS(2152), + [anon_sym_private] = ACTIONS(2152), + [anon_sym_protected] = ACTIONS(2152), + [anon_sym_using] = ACTIONS(2152), + [anon_sym_static_assert] = ACTIONS(2152), + [sym_macro_statement] = ACTIONS(2152), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2152), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2152), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2152), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2152), + [anon_sym_MOZ_COLD] = ACTIONS(2152), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2152), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2152), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2152), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2152), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2152), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2152), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2152), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2152), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2152), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2152), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2152), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2152), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2152), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_NONNULL] = ACTIONS(2152), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2152), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2152), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2152), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2152), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2152), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2152), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2152), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2152), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2152), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2152), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2152), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2152), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2152), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2152), + [anon_sym_MOZ_RAII] = ACTIONS(2152), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2152), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2152), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2152), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2152), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2152), + }, + [STATE(1139)] = { + [sym_identifier] = ACTIONS(2156), + [aux_sym_preproc_def_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2156), + [sym_preproc_directive] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2158), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym___extension__] = ACTIONS(2156), + [anon_sym_typedef] = ACTIONS(2156), + [anon_sym_virtual] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym___attribute__] = ACTIONS(2156), + [anon_sym___attribute] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2158), + [anon_sym___declspec] = ACTIONS(2156), + [anon_sym___based] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2158), + [anon_sym_signed] = ACTIONS(2156), + [anon_sym_unsigned] = ACTIONS(2156), + [anon_sym_long] = ACTIONS(2156), + [anon_sym_short] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_inline] = ACTIONS(2156), + [anon_sym___inline] = ACTIONS(2156), + [anon_sym___inline__] = ACTIONS(2156), + [anon_sym___forceinline] = ACTIONS(2156), + [anon_sym_thread_local] = ACTIONS(2156), + [anon_sym___thread] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_constexpr] = ACTIONS(2156), + [anon_sym_volatile] = ACTIONS(2156), + [anon_sym_restrict] = ACTIONS(2156), + [anon_sym___restrict__] = ACTIONS(2156), + [anon_sym__Atomic] = ACTIONS(2156), + [anon_sym__Noreturn] = ACTIONS(2156), + [anon_sym_noreturn] = ACTIONS(2156), + [anon_sym__Nonnull] = ACTIONS(2156), + [anon_sym_mutable] = ACTIONS(2156), + [anon_sym_constinit] = ACTIONS(2156), + [anon_sym_consteval] = ACTIONS(2156), + [anon_sym_alignas] = ACTIONS(2156), + [anon_sym__Alignas] = ACTIONS(2156), + [sym_primitive_type] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2156), + [anon_sym_decltype] = ACTIONS(2156), + [anon_sym_explicit] = ACTIONS(2156), + [anon_sym_typename] = ACTIONS(2156), + [anon_sym_template] = ACTIONS(2156), + [anon_sym_operator] = ACTIONS(2156), + [anon_sym_friend] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_static_assert] = ACTIONS(2156), + [sym_macro_statement] = ACTIONS(2156), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2156), + [anon_sym_MOZ_COLD] = ACTIONS(2156), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2156), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2156), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2156), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2156), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2156), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2156), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2156), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2156), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2156), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2156), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2156), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2156), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_RAII] = ACTIONS(2156), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2156), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2156), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2156), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2156), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2156), + }, + [STATE(1140)] = { + [sym_identifier] = ACTIONS(2156), + [aux_sym_preproc_def_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2156), + [sym_preproc_directive] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2158), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym___extension__] = ACTIONS(2156), + [anon_sym_typedef] = ACTIONS(2156), + [anon_sym_virtual] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym___attribute__] = ACTIONS(2156), + [anon_sym___attribute] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2158), + [anon_sym___declspec] = ACTIONS(2156), + [anon_sym___based] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2158), + [anon_sym_signed] = ACTIONS(2156), + [anon_sym_unsigned] = ACTIONS(2156), + [anon_sym_long] = ACTIONS(2156), + [anon_sym_short] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_inline] = ACTIONS(2156), + [anon_sym___inline] = ACTIONS(2156), + [anon_sym___inline__] = ACTIONS(2156), + [anon_sym___forceinline] = ACTIONS(2156), + [anon_sym_thread_local] = ACTIONS(2156), + [anon_sym___thread] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_constexpr] = ACTIONS(2156), + [anon_sym_volatile] = ACTIONS(2156), + [anon_sym_restrict] = ACTIONS(2156), + [anon_sym___restrict__] = ACTIONS(2156), + [anon_sym__Atomic] = ACTIONS(2156), + [anon_sym__Noreturn] = ACTIONS(2156), + [anon_sym_noreturn] = ACTIONS(2156), + [anon_sym__Nonnull] = ACTIONS(2156), + [anon_sym_mutable] = ACTIONS(2156), + [anon_sym_constinit] = ACTIONS(2156), + [anon_sym_consteval] = ACTIONS(2156), + [anon_sym_alignas] = ACTIONS(2156), + [anon_sym__Alignas] = ACTIONS(2156), + [sym_primitive_type] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2156), + [anon_sym_decltype] = ACTIONS(2156), + [anon_sym_explicit] = ACTIONS(2156), + [anon_sym_typename] = ACTIONS(2156), + [anon_sym_template] = ACTIONS(2156), + [anon_sym_operator] = ACTIONS(2156), + [anon_sym_friend] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_static_assert] = ACTIONS(2156), + [sym_macro_statement] = ACTIONS(2156), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2156), + [anon_sym_MOZ_COLD] = ACTIONS(2156), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2156), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2156), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2156), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2156), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2156), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2156), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2156), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2156), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2156), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2156), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2156), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2156), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_RAII] = ACTIONS(2156), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2156), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2156), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2156), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2156), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2156), + }, + [STATE(1141)] = { + [sym_identifier] = ACTIONS(4420), + [aux_sym_preproc_def_token1] = ACTIONS(4420), + [aux_sym_preproc_if_token1] = ACTIONS(4420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4420), + [sym_preproc_directive] = ACTIONS(4420), + [anon_sym_LPAREN2] = ACTIONS(4422), + [anon_sym_TILDE] = ACTIONS(4422), + [anon_sym_STAR] = ACTIONS(4422), + [anon_sym_AMP_AMP] = ACTIONS(4422), + [anon_sym_AMP] = ACTIONS(4420), + [anon_sym_SEMI] = ACTIONS(4422), + [anon_sym___extension__] = ACTIONS(4420), + [anon_sym_typedef] = ACTIONS(4420), + [anon_sym_virtual] = ACTIONS(4420), + [anon_sym_extern] = ACTIONS(4420), + [anon_sym___attribute__] = ACTIONS(4420), + [anon_sym___attribute] = ACTIONS(4420), + [anon_sym_COLON_COLON] = ACTIONS(4422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4422), + [anon_sym___declspec] = ACTIONS(4420), + [anon_sym___based] = ACTIONS(4420), + [anon_sym_RBRACE] = ACTIONS(4422), + [anon_sym_signed] = ACTIONS(4420), + [anon_sym_unsigned] = ACTIONS(4420), + [anon_sym_long] = ACTIONS(4420), + [anon_sym_short] = ACTIONS(4420), + [anon_sym_LBRACK] = ACTIONS(4420), + [anon_sym_static] = ACTIONS(4420), + [anon_sym_register] = ACTIONS(4420), + [anon_sym_inline] = ACTIONS(4420), + [anon_sym___inline] = ACTIONS(4420), + [anon_sym___inline__] = ACTIONS(4420), + [anon_sym___forceinline] = ACTIONS(4420), + [anon_sym_thread_local] = ACTIONS(4420), + [anon_sym___thread] = ACTIONS(4420), + [anon_sym_const] = ACTIONS(4420), + [anon_sym_constexpr] = ACTIONS(4420), + [anon_sym_volatile] = ACTIONS(4420), + [anon_sym_restrict] = ACTIONS(4420), + [anon_sym___restrict__] = ACTIONS(4420), + [anon_sym__Atomic] = ACTIONS(4420), + [anon_sym__Noreturn] = ACTIONS(4420), + [anon_sym_noreturn] = ACTIONS(4420), + [anon_sym__Nonnull] = ACTIONS(4420), + [anon_sym_mutable] = ACTIONS(4420), + [anon_sym_constinit] = ACTIONS(4420), + [anon_sym_consteval] = ACTIONS(4420), + [anon_sym_alignas] = ACTIONS(4420), + [anon_sym__Alignas] = ACTIONS(4420), + [sym_primitive_type] = ACTIONS(4420), + [anon_sym_enum] = ACTIONS(4420), + [anon_sym_class] = ACTIONS(4420), + [anon_sym_struct] = ACTIONS(4420), + [anon_sym_union] = ACTIONS(4420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4420), + [anon_sym_decltype] = ACTIONS(4420), + [anon_sym_explicit] = ACTIONS(4420), + [anon_sym_typename] = ACTIONS(4420), + [anon_sym_template] = ACTIONS(4420), + [anon_sym_operator] = ACTIONS(4420), + [anon_sym_friend] = ACTIONS(4420), + [anon_sym_public] = ACTIONS(4420), + [anon_sym_private] = ACTIONS(4420), + [anon_sym_protected] = ACTIONS(4420), + [anon_sym_using] = ACTIONS(4420), + [anon_sym_static_assert] = ACTIONS(4420), + [sym_macro_statement] = ACTIONS(4420), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4420), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4420), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4420), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4420), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4420), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4420), + [anon_sym_MOZ_COLD] = ACTIONS(4420), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4420), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4420), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4420), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4420), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4420), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4420), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4420), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4420), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4420), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4420), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4420), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4420), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4420), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4420), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4420), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4420), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4420), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4420), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_NONNULL] = ACTIONS(4420), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4420), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4420), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4420), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4420), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4420), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_NORETURN] = ACTIONS(4420), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4420), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4420), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4420), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4420), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4420), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4420), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4420), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4420), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4420), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4420), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4420), + [anon_sym_MOZ_RAII] = ACTIONS(4420), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4420), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4420), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4420), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4420), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4420), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4420), + }, + [STATE(1142)] = { + [sym_identifier] = ACTIONS(4424), + [aux_sym_preproc_def_token1] = ACTIONS(4424), + [aux_sym_preproc_if_token1] = ACTIONS(4424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4424), + [sym_preproc_directive] = ACTIONS(4424), + [anon_sym_LPAREN2] = ACTIONS(4426), + [anon_sym_TILDE] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4426), + [anon_sym_AMP_AMP] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4424), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym___extension__] = ACTIONS(4424), + [anon_sym_typedef] = ACTIONS(4424), + [anon_sym_virtual] = ACTIONS(4424), + [anon_sym_extern] = ACTIONS(4424), + [anon_sym___attribute__] = ACTIONS(4424), + [anon_sym___attribute] = ACTIONS(4424), + [anon_sym_COLON_COLON] = ACTIONS(4426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4426), + [anon_sym___declspec] = ACTIONS(4424), + [anon_sym___based] = ACTIONS(4424), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_signed] = ACTIONS(4424), + [anon_sym_unsigned] = ACTIONS(4424), + [anon_sym_long] = ACTIONS(4424), + [anon_sym_short] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(4424), + [anon_sym_static] = ACTIONS(4424), + [anon_sym_register] = ACTIONS(4424), + [anon_sym_inline] = ACTIONS(4424), + [anon_sym___inline] = ACTIONS(4424), + [anon_sym___inline__] = ACTIONS(4424), + [anon_sym___forceinline] = ACTIONS(4424), + [anon_sym_thread_local] = ACTIONS(4424), + [anon_sym___thread] = ACTIONS(4424), + [anon_sym_const] = ACTIONS(4424), + [anon_sym_constexpr] = ACTIONS(4424), + [anon_sym_volatile] = ACTIONS(4424), + [anon_sym_restrict] = ACTIONS(4424), + [anon_sym___restrict__] = ACTIONS(4424), + [anon_sym__Atomic] = ACTIONS(4424), + [anon_sym__Noreturn] = ACTIONS(4424), + [anon_sym_noreturn] = ACTIONS(4424), + [anon_sym__Nonnull] = ACTIONS(4424), + [anon_sym_mutable] = ACTIONS(4424), + [anon_sym_constinit] = ACTIONS(4424), + [anon_sym_consteval] = ACTIONS(4424), + [anon_sym_alignas] = ACTIONS(4424), + [anon_sym__Alignas] = ACTIONS(4424), + [sym_primitive_type] = ACTIONS(4424), + [anon_sym_enum] = ACTIONS(4424), + [anon_sym_class] = ACTIONS(4424), + [anon_sym_struct] = ACTIONS(4424), + [anon_sym_union] = ACTIONS(4424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4424), + [anon_sym_decltype] = ACTIONS(4424), + [anon_sym_explicit] = ACTIONS(4424), + [anon_sym_typename] = ACTIONS(4424), + [anon_sym_template] = ACTIONS(4424), + [anon_sym_operator] = ACTIONS(4424), + [anon_sym_friend] = ACTIONS(4424), + [anon_sym_public] = ACTIONS(4424), + [anon_sym_private] = ACTIONS(4424), + [anon_sym_protected] = ACTIONS(4424), + [anon_sym_using] = ACTIONS(4424), + [anon_sym_static_assert] = ACTIONS(4424), + [sym_macro_statement] = ACTIONS(4424), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4424), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4424), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4424), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4424), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4424), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4424), + [anon_sym_MOZ_COLD] = ACTIONS(4424), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4424), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4424), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4424), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4424), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4424), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4424), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4424), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4424), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4424), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4424), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4424), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4424), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4424), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4424), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4424), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4424), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4424), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4424), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_NONNULL] = ACTIONS(4424), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4424), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4424), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4424), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4424), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4424), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_NORETURN] = ACTIONS(4424), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4424), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4424), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4424), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4424), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4424), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4424), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4424), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4424), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4424), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4424), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4424), + [anon_sym_MOZ_RAII] = ACTIONS(4424), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4424), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4424), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4424), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4424), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4424), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4424), + }, + [STATE(1143)] = { + [sym_identifier] = ACTIONS(4420), + [aux_sym_preproc_def_token1] = ACTIONS(4420), + [aux_sym_preproc_if_token1] = ACTIONS(4420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4420), + [sym_preproc_directive] = ACTIONS(4420), + [anon_sym_LPAREN2] = ACTIONS(4422), + [anon_sym_TILDE] = ACTIONS(4422), + [anon_sym_STAR] = ACTIONS(4422), + [anon_sym_AMP_AMP] = ACTIONS(4422), + [anon_sym_AMP] = ACTIONS(4420), + [anon_sym_SEMI] = ACTIONS(4422), + [anon_sym___extension__] = ACTIONS(4420), + [anon_sym_typedef] = ACTIONS(4420), + [anon_sym_virtual] = ACTIONS(4420), + [anon_sym_extern] = ACTIONS(4420), + [anon_sym___attribute__] = ACTIONS(4420), + [anon_sym___attribute] = ACTIONS(4420), + [anon_sym_COLON_COLON] = ACTIONS(4422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4422), + [anon_sym___declspec] = ACTIONS(4420), + [anon_sym___based] = ACTIONS(4420), + [anon_sym_RBRACE] = ACTIONS(4422), + [anon_sym_signed] = ACTIONS(4420), + [anon_sym_unsigned] = ACTIONS(4420), + [anon_sym_long] = ACTIONS(4420), + [anon_sym_short] = ACTIONS(4420), + [anon_sym_LBRACK] = ACTIONS(4420), + [anon_sym_static] = ACTIONS(4420), + [anon_sym_register] = ACTIONS(4420), + [anon_sym_inline] = ACTIONS(4420), + [anon_sym___inline] = ACTIONS(4420), + [anon_sym___inline__] = ACTIONS(4420), + [anon_sym___forceinline] = ACTIONS(4420), + [anon_sym_thread_local] = ACTIONS(4420), + [anon_sym___thread] = ACTIONS(4420), + [anon_sym_const] = ACTIONS(4420), + [anon_sym_constexpr] = ACTIONS(4420), + [anon_sym_volatile] = ACTIONS(4420), + [anon_sym_restrict] = ACTIONS(4420), + [anon_sym___restrict__] = ACTIONS(4420), + [anon_sym__Atomic] = ACTIONS(4420), + [anon_sym__Noreturn] = ACTIONS(4420), + [anon_sym_noreturn] = ACTIONS(4420), + [anon_sym__Nonnull] = ACTIONS(4420), + [anon_sym_mutable] = ACTIONS(4420), + [anon_sym_constinit] = ACTIONS(4420), + [anon_sym_consteval] = ACTIONS(4420), + [anon_sym_alignas] = ACTIONS(4420), + [anon_sym__Alignas] = ACTIONS(4420), + [sym_primitive_type] = ACTIONS(4420), + [anon_sym_enum] = ACTIONS(4420), + [anon_sym_class] = ACTIONS(4420), + [anon_sym_struct] = ACTIONS(4420), + [anon_sym_union] = ACTIONS(4420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4420), + [anon_sym_decltype] = ACTIONS(4420), + [anon_sym_explicit] = ACTIONS(4420), + [anon_sym_typename] = ACTIONS(4420), + [anon_sym_template] = ACTIONS(4420), + [anon_sym_operator] = ACTIONS(4420), + [anon_sym_friend] = ACTIONS(4420), + [anon_sym_public] = ACTIONS(4420), + [anon_sym_private] = ACTIONS(4420), + [anon_sym_protected] = ACTIONS(4420), + [anon_sym_using] = ACTIONS(4420), + [anon_sym_static_assert] = ACTIONS(4420), + [sym_macro_statement] = ACTIONS(4420), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4420), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4420), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4420), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4420), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4420), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4420), + [anon_sym_MOZ_COLD] = ACTIONS(4420), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4420), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4420), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4420), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4420), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4420), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4420), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4420), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4420), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4420), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4420), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4420), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4420), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4420), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4420), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4420), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4420), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4420), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4420), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_NONNULL] = ACTIONS(4420), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4420), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4420), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4420), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4420), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4420), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_NORETURN] = ACTIONS(4420), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4420), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4420), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4420), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4420), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4420), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4420), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4420), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4420), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4420), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4420), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4420), + [anon_sym_MOZ_RAII] = ACTIONS(4420), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4420), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4420), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4420), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4420), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4420), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4420), + }, + [STATE(1144)] = { + [sym_identifier] = ACTIONS(4424), + [aux_sym_preproc_def_token1] = ACTIONS(4424), + [aux_sym_preproc_if_token1] = ACTIONS(4424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4424), + [sym_preproc_directive] = ACTIONS(4424), + [anon_sym_LPAREN2] = ACTIONS(4426), + [anon_sym_TILDE] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4426), + [anon_sym_AMP_AMP] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4424), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym___extension__] = ACTIONS(4424), + [anon_sym_typedef] = ACTIONS(4424), + [anon_sym_virtual] = ACTIONS(4424), + [anon_sym_extern] = ACTIONS(4424), + [anon_sym___attribute__] = ACTIONS(4424), + [anon_sym___attribute] = ACTIONS(4424), + [anon_sym_COLON_COLON] = ACTIONS(4426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4426), + [anon_sym___declspec] = ACTIONS(4424), + [anon_sym___based] = ACTIONS(4424), + [anon_sym_RBRACE] = ACTIONS(4426), + [anon_sym_signed] = ACTIONS(4424), + [anon_sym_unsigned] = ACTIONS(4424), + [anon_sym_long] = ACTIONS(4424), + [anon_sym_short] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(4424), + [anon_sym_static] = ACTIONS(4424), + [anon_sym_register] = ACTIONS(4424), + [anon_sym_inline] = ACTIONS(4424), + [anon_sym___inline] = ACTIONS(4424), + [anon_sym___inline__] = ACTIONS(4424), + [anon_sym___forceinline] = ACTIONS(4424), + [anon_sym_thread_local] = ACTIONS(4424), + [anon_sym___thread] = ACTIONS(4424), + [anon_sym_const] = ACTIONS(4424), + [anon_sym_constexpr] = ACTIONS(4424), + [anon_sym_volatile] = ACTIONS(4424), + [anon_sym_restrict] = ACTIONS(4424), + [anon_sym___restrict__] = ACTIONS(4424), + [anon_sym__Atomic] = ACTIONS(4424), + [anon_sym__Noreturn] = ACTIONS(4424), + [anon_sym_noreturn] = ACTIONS(4424), + [anon_sym__Nonnull] = ACTIONS(4424), + [anon_sym_mutable] = ACTIONS(4424), + [anon_sym_constinit] = ACTIONS(4424), + [anon_sym_consteval] = ACTIONS(4424), + [anon_sym_alignas] = ACTIONS(4424), + [anon_sym__Alignas] = ACTIONS(4424), + [sym_primitive_type] = ACTIONS(4424), + [anon_sym_enum] = ACTIONS(4424), + [anon_sym_class] = ACTIONS(4424), + [anon_sym_struct] = ACTIONS(4424), + [anon_sym_union] = ACTIONS(4424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4424), + [anon_sym_decltype] = ACTIONS(4424), + [anon_sym_explicit] = ACTIONS(4424), + [anon_sym_typename] = ACTIONS(4424), + [anon_sym_template] = ACTIONS(4424), + [anon_sym_operator] = ACTIONS(4424), + [anon_sym_friend] = ACTIONS(4424), + [anon_sym_public] = ACTIONS(4424), + [anon_sym_private] = ACTIONS(4424), + [anon_sym_protected] = ACTIONS(4424), + [anon_sym_using] = ACTIONS(4424), + [anon_sym_static_assert] = ACTIONS(4424), + [sym_macro_statement] = ACTIONS(4424), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4424), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4424), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4424), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4424), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4424), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4424), + [anon_sym_MOZ_COLD] = ACTIONS(4424), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4424), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4424), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4424), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4424), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4424), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4424), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4424), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4424), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4424), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4424), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4424), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4424), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4424), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4424), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4424), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4424), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4424), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4424), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_NONNULL] = ACTIONS(4424), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4424), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4424), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4424), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4424), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4424), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_NORETURN] = ACTIONS(4424), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4424), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4424), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4424), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4424), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4424), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4424), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4424), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4424), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4424), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4424), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4424), + [anon_sym_MOZ_RAII] = ACTIONS(4424), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4424), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4424), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4424), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4424), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4424), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4424), + }, + [STATE(1145)] = { + [sym_identifier] = ACTIONS(4436), + [aux_sym_preproc_def_token1] = ACTIONS(4436), + [aux_sym_preproc_if_token1] = ACTIONS(4436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4436), + [sym_preproc_directive] = ACTIONS(4436), + [anon_sym_LPAREN2] = ACTIONS(4438), + [anon_sym_TILDE] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4438), + [anon_sym_AMP_AMP] = ACTIONS(4438), + [anon_sym_AMP] = ACTIONS(4436), + [anon_sym_SEMI] = ACTIONS(4438), + [anon_sym___extension__] = ACTIONS(4436), + [anon_sym_typedef] = ACTIONS(4436), + [anon_sym_virtual] = ACTIONS(4436), + [anon_sym_extern] = ACTIONS(4436), + [anon_sym___attribute__] = ACTIONS(4436), + [anon_sym___attribute] = ACTIONS(4436), + [anon_sym_COLON_COLON] = ACTIONS(4438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4438), + [anon_sym___declspec] = ACTIONS(4436), + [anon_sym___based] = ACTIONS(4436), + [anon_sym_RBRACE] = ACTIONS(4438), + [anon_sym_signed] = ACTIONS(4436), + [anon_sym_unsigned] = ACTIONS(4436), + [anon_sym_long] = ACTIONS(4436), + [anon_sym_short] = ACTIONS(4436), + [anon_sym_LBRACK] = ACTIONS(4436), + [anon_sym_static] = ACTIONS(4436), + [anon_sym_register] = ACTIONS(4436), + [anon_sym_inline] = ACTIONS(4436), + [anon_sym___inline] = ACTIONS(4436), + [anon_sym___inline__] = ACTIONS(4436), + [anon_sym___forceinline] = ACTIONS(4436), + [anon_sym_thread_local] = ACTIONS(4436), + [anon_sym___thread] = ACTIONS(4436), + [anon_sym_const] = ACTIONS(4436), + [anon_sym_constexpr] = ACTIONS(4436), + [anon_sym_volatile] = ACTIONS(4436), + [anon_sym_restrict] = ACTIONS(4436), + [anon_sym___restrict__] = ACTIONS(4436), + [anon_sym__Atomic] = ACTIONS(4436), + [anon_sym__Noreturn] = ACTIONS(4436), + [anon_sym_noreturn] = ACTIONS(4436), + [anon_sym__Nonnull] = ACTIONS(4436), + [anon_sym_mutable] = ACTIONS(4436), + [anon_sym_constinit] = ACTIONS(4436), + [anon_sym_consteval] = ACTIONS(4436), + [anon_sym_alignas] = ACTIONS(4436), + [anon_sym__Alignas] = ACTIONS(4436), + [sym_primitive_type] = ACTIONS(4436), + [anon_sym_enum] = ACTIONS(4436), + [anon_sym_class] = ACTIONS(4436), + [anon_sym_struct] = ACTIONS(4436), + [anon_sym_union] = ACTIONS(4436), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4436), + [anon_sym_decltype] = ACTIONS(4436), + [anon_sym_explicit] = ACTIONS(4436), + [anon_sym_typename] = ACTIONS(4436), + [anon_sym_template] = ACTIONS(4436), + [anon_sym_operator] = ACTIONS(4436), + [anon_sym_friend] = ACTIONS(4436), + [anon_sym_public] = ACTIONS(4436), + [anon_sym_private] = ACTIONS(4436), + [anon_sym_protected] = ACTIONS(4436), + [anon_sym_using] = ACTIONS(4436), + [anon_sym_static_assert] = ACTIONS(4436), + [sym_macro_statement] = ACTIONS(4436), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4436), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4436), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4436), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4436), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4436), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4436), + [anon_sym_MOZ_COLD] = ACTIONS(4436), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4436), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4436), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4436), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4436), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4436), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4436), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4436), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4436), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4436), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4436), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4436), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4436), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4436), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4436), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4436), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4436), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4436), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4436), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_NONNULL] = ACTIONS(4436), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4436), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4436), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4436), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4436), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4436), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_NORETURN] = ACTIONS(4436), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4436), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4436), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4436), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4436), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4436), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4436), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4436), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4436), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4436), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4436), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4436), + [anon_sym_MOZ_RAII] = ACTIONS(4436), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4436), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4436), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4436), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4436), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4436), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4436), + }, + [STATE(1146)] = { + [sym_identifier] = ACTIONS(4444), + [aux_sym_preproc_def_token1] = ACTIONS(4444), + [aux_sym_preproc_if_token1] = ACTIONS(4444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4444), + [sym_preproc_directive] = ACTIONS(4444), + [anon_sym_LPAREN2] = ACTIONS(4446), + [anon_sym_TILDE] = ACTIONS(4446), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_AMP_AMP] = ACTIONS(4446), + [anon_sym_AMP] = ACTIONS(4444), + [anon_sym_SEMI] = ACTIONS(4446), + [anon_sym___extension__] = ACTIONS(4444), + [anon_sym_typedef] = ACTIONS(4444), + [anon_sym_virtual] = ACTIONS(4444), + [anon_sym_extern] = ACTIONS(4444), + [anon_sym___attribute__] = ACTIONS(4444), + [anon_sym___attribute] = ACTIONS(4444), + [anon_sym_COLON_COLON] = ACTIONS(4446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4446), + [anon_sym___declspec] = ACTIONS(4444), + [anon_sym___based] = ACTIONS(4444), + [anon_sym_RBRACE] = ACTIONS(4446), + [anon_sym_signed] = ACTIONS(4444), + [anon_sym_unsigned] = ACTIONS(4444), + [anon_sym_long] = ACTIONS(4444), + [anon_sym_short] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_static] = ACTIONS(4444), + [anon_sym_register] = ACTIONS(4444), + [anon_sym_inline] = ACTIONS(4444), + [anon_sym___inline] = ACTIONS(4444), + [anon_sym___inline__] = ACTIONS(4444), + [anon_sym___forceinline] = ACTIONS(4444), + [anon_sym_thread_local] = ACTIONS(4444), + [anon_sym___thread] = ACTIONS(4444), + [anon_sym_const] = ACTIONS(4444), + [anon_sym_constexpr] = ACTIONS(4444), + [anon_sym_volatile] = ACTIONS(4444), + [anon_sym_restrict] = ACTIONS(4444), + [anon_sym___restrict__] = ACTIONS(4444), + [anon_sym__Atomic] = ACTIONS(4444), + [anon_sym__Noreturn] = ACTIONS(4444), + [anon_sym_noreturn] = ACTIONS(4444), + [anon_sym__Nonnull] = ACTIONS(4444), + [anon_sym_mutable] = ACTIONS(4444), + [anon_sym_constinit] = ACTIONS(4444), + [anon_sym_consteval] = ACTIONS(4444), + [anon_sym_alignas] = ACTIONS(4444), + [anon_sym__Alignas] = ACTIONS(4444), + [sym_primitive_type] = ACTIONS(4444), + [anon_sym_enum] = ACTIONS(4444), + [anon_sym_class] = ACTIONS(4444), + [anon_sym_struct] = ACTIONS(4444), + [anon_sym_union] = ACTIONS(4444), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4444), + [anon_sym_decltype] = ACTIONS(4444), + [anon_sym_explicit] = ACTIONS(4444), + [anon_sym_typename] = ACTIONS(4444), + [anon_sym_template] = ACTIONS(4444), + [anon_sym_operator] = ACTIONS(4444), + [anon_sym_friend] = ACTIONS(4444), + [anon_sym_public] = ACTIONS(4444), + [anon_sym_private] = ACTIONS(4444), + [anon_sym_protected] = ACTIONS(4444), + [anon_sym_using] = ACTIONS(4444), + [anon_sym_static_assert] = ACTIONS(4444), + [sym_macro_statement] = ACTIONS(4444), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4444), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4444), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4444), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4444), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4444), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4444), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4444), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4444), + [anon_sym_MOZ_COLD] = ACTIONS(4444), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4444), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4444), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4444), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4444), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4444), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4444), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4444), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4444), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4444), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4444), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4444), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4444), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4444), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4444), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4444), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4444), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4444), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4444), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4444), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4444), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_NONNULL] = ACTIONS(4444), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4444), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4444), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4444), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4444), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4444), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_NORETURN] = ACTIONS(4444), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4444), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4444), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4444), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4444), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4444), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4444), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4444), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4444), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4444), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4444), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4444), + [anon_sym_MOZ_RAII] = ACTIONS(4444), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4444), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4444), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4444), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4444), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4444), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4444), + }, + [STATE(1147)] = { + [sym_identifier] = ACTIONS(4452), + [aux_sym_preproc_def_token1] = ACTIONS(4452), + [aux_sym_preproc_if_token1] = ACTIONS(4452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4452), + [sym_preproc_directive] = ACTIONS(4452), + [anon_sym_LPAREN2] = ACTIONS(4454), + [anon_sym_TILDE] = ACTIONS(4454), + [anon_sym_STAR] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym___extension__] = ACTIONS(4452), + [anon_sym_typedef] = ACTIONS(4452), + [anon_sym_virtual] = ACTIONS(4452), + [anon_sym_extern] = ACTIONS(4452), + [anon_sym___attribute__] = ACTIONS(4452), + [anon_sym___attribute] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4454), + [anon_sym___declspec] = ACTIONS(4452), + [anon_sym___based] = ACTIONS(4452), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_signed] = ACTIONS(4452), + [anon_sym_unsigned] = ACTIONS(4452), + [anon_sym_long] = ACTIONS(4452), + [anon_sym_short] = ACTIONS(4452), + [anon_sym_LBRACK] = ACTIONS(4452), + [anon_sym_static] = ACTIONS(4452), + [anon_sym_register] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym___inline] = ACTIONS(4452), + [anon_sym___inline__] = ACTIONS(4452), + [anon_sym___forceinline] = ACTIONS(4452), + [anon_sym_thread_local] = ACTIONS(4452), + [anon_sym___thread] = ACTIONS(4452), + [anon_sym_const] = ACTIONS(4452), + [anon_sym_constexpr] = ACTIONS(4452), + [anon_sym_volatile] = ACTIONS(4452), + [anon_sym_restrict] = ACTIONS(4452), + [anon_sym___restrict__] = ACTIONS(4452), + [anon_sym__Atomic] = ACTIONS(4452), + [anon_sym__Noreturn] = ACTIONS(4452), + [anon_sym_noreturn] = ACTIONS(4452), + [anon_sym__Nonnull] = ACTIONS(4452), + [anon_sym_mutable] = ACTIONS(4452), + [anon_sym_constinit] = ACTIONS(4452), + [anon_sym_consteval] = ACTIONS(4452), + [anon_sym_alignas] = ACTIONS(4452), + [anon_sym__Alignas] = ACTIONS(4452), + [sym_primitive_type] = ACTIONS(4452), + [anon_sym_enum] = ACTIONS(4452), + [anon_sym_class] = ACTIONS(4452), + [anon_sym_struct] = ACTIONS(4452), + [anon_sym_union] = ACTIONS(4452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4452), + [anon_sym_decltype] = ACTIONS(4452), + [anon_sym_explicit] = ACTIONS(4452), + [anon_sym_typename] = ACTIONS(4452), + [anon_sym_template] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_friend] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_using] = ACTIONS(4452), + [anon_sym_static_assert] = ACTIONS(4452), + [sym_macro_statement] = ACTIONS(4452), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4452), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4452), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4452), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4452), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4452), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4452), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4452), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4452), + [anon_sym_MOZ_COLD] = ACTIONS(4452), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4452), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4452), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4452), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4452), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4452), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4452), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4452), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4452), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4452), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4452), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4452), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4452), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4452), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4452), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4452), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4452), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4452), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4452), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4452), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4452), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_NONNULL] = ACTIONS(4452), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4452), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4452), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4452), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4452), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4452), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_NORETURN] = ACTIONS(4452), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4452), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4452), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4452), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4452), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4452), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4452), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4452), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4452), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4452), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4452), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4452), + [anon_sym_MOZ_RAII] = ACTIONS(4452), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4452), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4452), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4452), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4452), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4452), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4452), + }, + [STATE(1148)] = { + [sym_identifier] = ACTIONS(4452), + [aux_sym_preproc_def_token1] = ACTIONS(4452), + [aux_sym_preproc_if_token1] = ACTIONS(4452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4452), + [sym_preproc_directive] = ACTIONS(4452), + [anon_sym_LPAREN2] = ACTIONS(4454), + [anon_sym_TILDE] = ACTIONS(4454), + [anon_sym_STAR] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym___extension__] = ACTIONS(4452), + [anon_sym_typedef] = ACTIONS(4452), + [anon_sym_virtual] = ACTIONS(4452), + [anon_sym_extern] = ACTIONS(4452), + [anon_sym___attribute__] = ACTIONS(4452), + [anon_sym___attribute] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4454), + [anon_sym___declspec] = ACTIONS(4452), + [anon_sym___based] = ACTIONS(4452), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_signed] = ACTIONS(4452), + [anon_sym_unsigned] = ACTIONS(4452), + [anon_sym_long] = ACTIONS(4452), + [anon_sym_short] = ACTIONS(4452), + [anon_sym_LBRACK] = ACTIONS(4452), + [anon_sym_static] = ACTIONS(4452), + [anon_sym_register] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym___inline] = ACTIONS(4452), + [anon_sym___inline__] = ACTIONS(4452), + [anon_sym___forceinline] = ACTIONS(4452), + [anon_sym_thread_local] = ACTIONS(4452), + [anon_sym___thread] = ACTIONS(4452), + [anon_sym_const] = ACTIONS(4452), + [anon_sym_constexpr] = ACTIONS(4452), + [anon_sym_volatile] = ACTIONS(4452), + [anon_sym_restrict] = ACTIONS(4452), + [anon_sym___restrict__] = ACTIONS(4452), + [anon_sym__Atomic] = ACTIONS(4452), + [anon_sym__Noreturn] = ACTIONS(4452), + [anon_sym_noreturn] = ACTIONS(4452), + [anon_sym__Nonnull] = ACTIONS(4452), + [anon_sym_mutable] = ACTIONS(4452), + [anon_sym_constinit] = ACTIONS(4452), + [anon_sym_consteval] = ACTIONS(4452), + [anon_sym_alignas] = ACTIONS(4452), + [anon_sym__Alignas] = ACTIONS(4452), + [sym_primitive_type] = ACTIONS(4452), + [anon_sym_enum] = ACTIONS(4452), + [anon_sym_class] = ACTIONS(4452), + [anon_sym_struct] = ACTIONS(4452), + [anon_sym_union] = ACTIONS(4452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4452), + [anon_sym_decltype] = ACTIONS(4452), + [anon_sym_explicit] = ACTIONS(4452), + [anon_sym_typename] = ACTIONS(4452), + [anon_sym_template] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_friend] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_using] = ACTIONS(4452), + [anon_sym_static_assert] = ACTIONS(4452), + [sym_macro_statement] = ACTIONS(4452), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4452), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4452), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4452), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4452), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4452), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4452), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4452), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4452), + [anon_sym_MOZ_COLD] = ACTIONS(4452), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4452), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4452), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4452), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4452), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4452), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4452), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4452), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4452), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4452), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4452), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4452), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4452), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4452), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4452), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4452), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4452), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4452), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4452), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4452), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4452), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_NONNULL] = ACTIONS(4452), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4452), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4452), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4452), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4452), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4452), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_NORETURN] = ACTIONS(4452), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4452), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4452), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4452), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4452), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4452), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4452), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4452), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4452), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4452), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4452), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4452), + [anon_sym_MOZ_RAII] = ACTIONS(4452), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4452), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4452), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4452), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4452), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4452), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4452), + }, + [STATE(1149)] = { + [sym_identifier] = ACTIONS(2272), + [aux_sym_preproc_def_token1] = ACTIONS(2272), + [aux_sym_preproc_if_token1] = ACTIONS(2272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2272), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2272), + [sym_preproc_directive] = ACTIONS(2272), + [anon_sym_LPAREN2] = ACTIONS(2274), + [anon_sym_TILDE] = ACTIONS(2274), + [anon_sym_STAR] = ACTIONS(2274), + [anon_sym_AMP_AMP] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym___extension__] = ACTIONS(2272), + [anon_sym_typedef] = ACTIONS(2272), + [anon_sym_virtual] = ACTIONS(2272), + [anon_sym_extern] = ACTIONS(2272), + [anon_sym___attribute__] = ACTIONS(2272), + [anon_sym___attribute] = ACTIONS(2272), + [anon_sym_COLON_COLON] = ACTIONS(2274), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2274), + [anon_sym___declspec] = ACTIONS(2272), + [anon_sym___based] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2274), + [anon_sym_signed] = ACTIONS(2272), + [anon_sym_unsigned] = ACTIONS(2272), + [anon_sym_long] = ACTIONS(2272), + [anon_sym_short] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_static] = ACTIONS(2272), + [anon_sym_register] = ACTIONS(2272), + [anon_sym_inline] = ACTIONS(2272), + [anon_sym___inline] = ACTIONS(2272), + [anon_sym___inline__] = ACTIONS(2272), + [anon_sym___forceinline] = ACTIONS(2272), + [anon_sym_thread_local] = ACTIONS(2272), + [anon_sym___thread] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [anon_sym_constexpr] = ACTIONS(2272), + [anon_sym_volatile] = ACTIONS(2272), + [anon_sym_restrict] = ACTIONS(2272), + [anon_sym___restrict__] = ACTIONS(2272), + [anon_sym__Atomic] = ACTIONS(2272), + [anon_sym__Noreturn] = ACTIONS(2272), + [anon_sym_noreturn] = ACTIONS(2272), + [anon_sym__Nonnull] = ACTIONS(2272), + [anon_sym_mutable] = ACTIONS(2272), + [anon_sym_constinit] = ACTIONS(2272), + [anon_sym_consteval] = ACTIONS(2272), + [anon_sym_alignas] = ACTIONS(2272), + [anon_sym__Alignas] = ACTIONS(2272), + [sym_primitive_type] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), + [anon_sym_class] = ACTIONS(2272), + [anon_sym_struct] = ACTIONS(2272), + [anon_sym_union] = ACTIONS(2272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2272), + [anon_sym_decltype] = ACTIONS(2272), + [anon_sym_explicit] = ACTIONS(2272), + [anon_sym_typename] = ACTIONS(2272), + [anon_sym_template] = ACTIONS(2272), + [anon_sym_operator] = ACTIONS(2272), + [anon_sym_friend] = ACTIONS(2272), + [anon_sym_public] = ACTIONS(2272), + [anon_sym_private] = ACTIONS(2272), + [anon_sym_protected] = ACTIONS(2272), + [anon_sym_using] = ACTIONS(2272), + [anon_sym_static_assert] = ACTIONS(2272), + [sym_macro_statement] = ACTIONS(2272), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2272), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2272), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2272), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2272), + [anon_sym_MOZ_COLD] = ACTIONS(2272), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2272), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2272), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2272), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2272), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2272), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2272), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2272), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2272), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2272), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2272), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2272), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2272), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2272), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_NONNULL] = ACTIONS(2272), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2272), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2272), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2272), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2272), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2272), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2272), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2272), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2272), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2272), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2272), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2272), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2272), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2272), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2272), + [anon_sym_MOZ_RAII] = ACTIONS(2272), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2272), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2272), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2272), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2272), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2272), + }, + [STATE(1150)] = { + [sym__declaration_modifiers] = STATE(1631), + [sym_attribute_specifier] = STATE(1631), + [sym_attribute_declaration] = STATE(1631), + [sym_ms_declspec_modifier] = STATE(1631), + [sym_storage_class_specifier] = STATE(1631), + [sym_type_qualifier] = STATE(1631), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1354), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1631), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4049), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(4518), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(1151)] = { + [sym_identifier] = ACTIONS(2120), + [aux_sym_preproc_def_token1] = ACTIONS(2120), + [aux_sym_preproc_if_token1] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), + [sym_preproc_directive] = ACTIONS(2120), + [anon_sym_LPAREN2] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym___extension__] = ACTIONS(2120), + [anon_sym_typedef] = ACTIONS(2120), + [anon_sym_virtual] = ACTIONS(2120), + [anon_sym_extern] = ACTIONS(2120), + [anon_sym___attribute__] = ACTIONS(2120), + [anon_sym___attribute] = ACTIONS(2120), + [anon_sym_COLON_COLON] = ACTIONS(2122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2122), + [anon_sym___declspec] = ACTIONS(2120), + [anon_sym___based] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_signed] = ACTIONS(2120), + [anon_sym_unsigned] = ACTIONS(2120), + [anon_sym_long] = ACTIONS(2120), + [anon_sym_short] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_register] = ACTIONS(2120), + [anon_sym_inline] = ACTIONS(2120), + [anon_sym___inline] = ACTIONS(2120), + [anon_sym___inline__] = ACTIONS(2120), + [anon_sym___forceinline] = ACTIONS(2120), + [anon_sym_thread_local] = ACTIONS(2120), + [anon_sym___thread] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_constexpr] = ACTIONS(2120), + [anon_sym_volatile] = ACTIONS(2120), + [anon_sym_restrict] = ACTIONS(2120), + [anon_sym___restrict__] = ACTIONS(2120), + [anon_sym__Atomic] = ACTIONS(2120), + [anon_sym__Noreturn] = ACTIONS(2120), + [anon_sym_noreturn] = ACTIONS(2120), + [anon_sym__Nonnull] = ACTIONS(2120), + [anon_sym_mutable] = ACTIONS(2120), + [anon_sym_constinit] = ACTIONS(2120), + [anon_sym_consteval] = ACTIONS(2120), + [anon_sym_alignas] = ACTIONS(2120), + [anon_sym__Alignas] = ACTIONS(2120), + [sym_primitive_type] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_union] = ACTIONS(2120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2120), + [anon_sym_decltype] = ACTIONS(2120), + [anon_sym_explicit] = ACTIONS(2120), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(2120), + [anon_sym_operator] = ACTIONS(2120), + [anon_sym_friend] = ACTIONS(2120), + [anon_sym_public] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_using] = ACTIONS(2120), + [anon_sym_static_assert] = ACTIONS(2120), + [sym_macro_statement] = ACTIONS(2120), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2120), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2120), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2120), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2120), + [anon_sym_MOZ_COLD] = ACTIONS(2120), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2120), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2120), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2120), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2120), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2120), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2120), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2120), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2120), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2120), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2120), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2120), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2120), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2120), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_NONNULL] = ACTIONS(2120), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2120), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2120), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2120), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2120), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2120), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2120), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2120), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2120), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2120), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2120), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2120), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2120), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2120), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2120), + [anon_sym_MOZ_RAII] = ACTIONS(2120), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2120), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2120), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2120), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2120), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2120), + }, + [STATE(1152)] = { + [sym_identifier] = ACTIONS(2291), + [aux_sym_preproc_def_token1] = ACTIONS(2291), + [aux_sym_preproc_if_token1] = ACTIONS(2291), + [aux_sym_preproc_if_token2] = ACTIONS(2291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2291), + [sym_preproc_directive] = ACTIONS(2291), + [anon_sym_LPAREN2] = ACTIONS(2293), + [anon_sym_TILDE] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(2293), + [anon_sym_AMP_AMP] = ACTIONS(2293), + [anon_sym_AMP] = ACTIONS(2291), + [anon_sym_SEMI] = ACTIONS(2293), + [anon_sym___extension__] = ACTIONS(2291), + [anon_sym_typedef] = ACTIONS(2291), + [anon_sym_virtual] = ACTIONS(2291), + [anon_sym_extern] = ACTIONS(2291), + [anon_sym___attribute__] = ACTIONS(2291), + [anon_sym___attribute] = ACTIONS(2291), + [anon_sym_COLON_COLON] = ACTIONS(2293), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2293), + [anon_sym___declspec] = ACTIONS(2291), + [anon_sym___based] = ACTIONS(2291), + [anon_sym_signed] = ACTIONS(2291), + [anon_sym_unsigned] = ACTIONS(2291), + [anon_sym_long] = ACTIONS(2291), + [anon_sym_short] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_static] = ACTIONS(2291), + [anon_sym_register] = ACTIONS(2291), + [anon_sym_inline] = ACTIONS(2291), + [anon_sym___inline] = ACTIONS(2291), + [anon_sym___inline__] = ACTIONS(2291), + [anon_sym___forceinline] = ACTIONS(2291), + [anon_sym_thread_local] = ACTIONS(2291), + [anon_sym___thread] = ACTIONS(2291), + [anon_sym_const] = ACTIONS(2291), + [anon_sym_constexpr] = ACTIONS(2291), + [anon_sym_volatile] = ACTIONS(2291), + [anon_sym_restrict] = ACTIONS(2291), + [anon_sym___restrict__] = ACTIONS(2291), + [anon_sym__Atomic] = ACTIONS(2291), + [anon_sym__Noreturn] = ACTIONS(2291), + [anon_sym_noreturn] = ACTIONS(2291), + [anon_sym__Nonnull] = ACTIONS(2291), + [anon_sym_mutable] = ACTIONS(2291), + [anon_sym_constinit] = ACTIONS(2291), + [anon_sym_consteval] = ACTIONS(2291), + [anon_sym_alignas] = ACTIONS(2291), + [anon_sym__Alignas] = ACTIONS(2291), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_enum] = ACTIONS(2291), + [anon_sym_class] = ACTIONS(2291), + [anon_sym_struct] = ACTIONS(2291), + [anon_sym_union] = ACTIONS(2291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2291), + [anon_sym_decltype] = ACTIONS(2291), + [anon_sym_explicit] = ACTIONS(2291), + [anon_sym_typename] = ACTIONS(2291), + [anon_sym_template] = ACTIONS(2291), + [anon_sym_operator] = ACTIONS(2291), + [anon_sym_friend] = ACTIONS(2291), + [anon_sym_public] = ACTIONS(2291), + [anon_sym_private] = ACTIONS(2291), + [anon_sym_protected] = ACTIONS(2291), + [anon_sym_using] = ACTIONS(2291), + [anon_sym_static_assert] = ACTIONS(2291), + [sym_macro_statement] = ACTIONS(2291), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2291), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2291), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2291), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2291), + [anon_sym_MOZ_COLD] = ACTIONS(2291), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2291), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2291), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2291), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2291), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2291), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2291), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2291), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2291), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2291), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2291), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2291), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2291), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2291), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_NONNULL] = ACTIONS(2291), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2291), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2291), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2291), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2291), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2291), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2291), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2291), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2291), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2291), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2291), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2291), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2291), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2291), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2291), + [anon_sym_MOZ_RAII] = ACTIONS(2291), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2291), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2291), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2291), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2291), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2291), + }, + [STATE(1153)] = { + [sym_identifier] = ACTIONS(4468), + [aux_sym_preproc_def_token1] = ACTIONS(4468), + [aux_sym_preproc_if_token1] = ACTIONS(4468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4468), + [sym_preproc_directive] = ACTIONS(4468), + [anon_sym_LPAREN2] = ACTIONS(4470), + [anon_sym_TILDE] = ACTIONS(4470), + [anon_sym_STAR] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4468), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym___extension__] = ACTIONS(4468), + [anon_sym_typedef] = ACTIONS(4468), + [anon_sym_virtual] = ACTIONS(4468), + [anon_sym_extern] = ACTIONS(4468), + [anon_sym___attribute__] = ACTIONS(4468), + [anon_sym___attribute] = ACTIONS(4468), + [anon_sym_COLON_COLON] = ACTIONS(4470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4470), + [anon_sym___declspec] = ACTIONS(4468), + [anon_sym___based] = ACTIONS(4468), + [anon_sym_RBRACE] = ACTIONS(4470), + [anon_sym_signed] = ACTIONS(4468), + [anon_sym_unsigned] = ACTIONS(4468), + [anon_sym_long] = ACTIONS(4468), + [anon_sym_short] = ACTIONS(4468), + [anon_sym_LBRACK] = ACTIONS(4468), + [anon_sym_static] = ACTIONS(4468), + [anon_sym_register] = ACTIONS(4468), + [anon_sym_inline] = ACTIONS(4468), + [anon_sym___inline] = ACTIONS(4468), + [anon_sym___inline__] = ACTIONS(4468), + [anon_sym___forceinline] = ACTIONS(4468), + [anon_sym_thread_local] = ACTIONS(4468), + [anon_sym___thread] = ACTIONS(4468), + [anon_sym_const] = ACTIONS(4468), + [anon_sym_constexpr] = ACTIONS(4468), + [anon_sym_volatile] = ACTIONS(4468), + [anon_sym_restrict] = ACTIONS(4468), + [anon_sym___restrict__] = ACTIONS(4468), + [anon_sym__Atomic] = ACTIONS(4468), + [anon_sym__Noreturn] = ACTIONS(4468), + [anon_sym_noreturn] = ACTIONS(4468), + [anon_sym__Nonnull] = ACTIONS(4468), + [anon_sym_mutable] = ACTIONS(4468), + [anon_sym_constinit] = ACTIONS(4468), + [anon_sym_consteval] = ACTIONS(4468), + [anon_sym_alignas] = ACTIONS(4468), + [anon_sym__Alignas] = ACTIONS(4468), + [sym_primitive_type] = ACTIONS(4468), + [anon_sym_enum] = ACTIONS(4468), + [anon_sym_class] = ACTIONS(4468), + [anon_sym_struct] = ACTIONS(4468), + [anon_sym_union] = ACTIONS(4468), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4468), + [anon_sym_decltype] = ACTIONS(4468), + [anon_sym_explicit] = ACTIONS(4468), + [anon_sym_typename] = ACTIONS(4468), + [anon_sym_template] = ACTIONS(4468), + [anon_sym_operator] = ACTIONS(4468), + [anon_sym_friend] = ACTIONS(4468), + [anon_sym_public] = ACTIONS(4468), + [anon_sym_private] = ACTIONS(4468), + [anon_sym_protected] = ACTIONS(4468), + [anon_sym_using] = ACTIONS(4468), + [anon_sym_static_assert] = ACTIONS(4468), + [sym_macro_statement] = ACTIONS(4468), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4468), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4468), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4468), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4468), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4468), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4468), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4468), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4468), + [anon_sym_MOZ_COLD] = ACTIONS(4468), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4468), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4468), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4468), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4468), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4468), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4468), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4468), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4468), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4468), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4468), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4468), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4468), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4468), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4468), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4468), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4468), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4468), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4468), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4468), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4468), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_NONNULL] = ACTIONS(4468), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4468), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4468), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4468), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4468), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4468), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_NORETURN] = ACTIONS(4468), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4468), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4468), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4468), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4468), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4468), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4468), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4468), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4468), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4468), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4468), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4468), + [anon_sym_MOZ_RAII] = ACTIONS(4468), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4468), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4468), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4468), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4468), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4468), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4468), + }, + [STATE(1154)] = { + [sym_identifier] = ACTIONS(4472), + [aux_sym_preproc_def_token1] = ACTIONS(4472), + [aux_sym_preproc_if_token1] = ACTIONS(4472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4472), + [sym_preproc_directive] = ACTIONS(4472), + [anon_sym_LPAREN2] = ACTIONS(4474), + [anon_sym_TILDE] = ACTIONS(4474), + [anon_sym_STAR] = ACTIONS(4474), + [anon_sym_AMP_AMP] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4472), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym___extension__] = ACTIONS(4472), + [anon_sym_typedef] = ACTIONS(4472), + [anon_sym_virtual] = ACTIONS(4472), + [anon_sym_extern] = ACTIONS(4472), + [anon_sym___attribute__] = ACTIONS(4472), + [anon_sym___attribute] = ACTIONS(4472), + [anon_sym_COLON_COLON] = ACTIONS(4474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4474), + [anon_sym___declspec] = ACTIONS(4472), + [anon_sym___based] = ACTIONS(4472), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_signed] = ACTIONS(4472), + [anon_sym_unsigned] = ACTIONS(4472), + [anon_sym_long] = ACTIONS(4472), + [anon_sym_short] = ACTIONS(4472), + [anon_sym_LBRACK] = ACTIONS(4472), + [anon_sym_static] = ACTIONS(4472), + [anon_sym_register] = ACTIONS(4472), + [anon_sym_inline] = ACTIONS(4472), + [anon_sym___inline] = ACTIONS(4472), + [anon_sym___inline__] = ACTIONS(4472), + [anon_sym___forceinline] = ACTIONS(4472), + [anon_sym_thread_local] = ACTIONS(4472), + [anon_sym___thread] = ACTIONS(4472), + [anon_sym_const] = ACTIONS(4472), + [anon_sym_constexpr] = ACTIONS(4472), + [anon_sym_volatile] = ACTIONS(4472), + [anon_sym_restrict] = ACTIONS(4472), + [anon_sym___restrict__] = ACTIONS(4472), + [anon_sym__Atomic] = ACTIONS(4472), + [anon_sym__Noreturn] = ACTIONS(4472), + [anon_sym_noreturn] = ACTIONS(4472), + [anon_sym__Nonnull] = ACTIONS(4472), + [anon_sym_mutable] = ACTIONS(4472), + [anon_sym_constinit] = ACTIONS(4472), + [anon_sym_consteval] = ACTIONS(4472), + [anon_sym_alignas] = ACTIONS(4472), + [anon_sym__Alignas] = ACTIONS(4472), + [sym_primitive_type] = ACTIONS(4472), + [anon_sym_enum] = ACTIONS(4472), + [anon_sym_class] = ACTIONS(4472), + [anon_sym_struct] = ACTIONS(4472), + [anon_sym_union] = ACTIONS(4472), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4472), + [anon_sym_decltype] = ACTIONS(4472), + [anon_sym_explicit] = ACTIONS(4472), + [anon_sym_typename] = ACTIONS(4472), + [anon_sym_template] = ACTIONS(4472), + [anon_sym_operator] = ACTIONS(4472), + [anon_sym_friend] = ACTIONS(4472), + [anon_sym_public] = ACTIONS(4472), + [anon_sym_private] = ACTIONS(4472), + [anon_sym_protected] = ACTIONS(4472), + [anon_sym_using] = ACTIONS(4472), + [anon_sym_static_assert] = ACTIONS(4472), + [sym_macro_statement] = ACTIONS(4472), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4472), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4472), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4472), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4472), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4472), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4472), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4472), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4472), + [anon_sym_MOZ_COLD] = ACTIONS(4472), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4472), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4472), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4472), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4472), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4472), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4472), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4472), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4472), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4472), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4472), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4472), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4472), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4472), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4472), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4472), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4472), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4472), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4472), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4472), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4472), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_NONNULL] = ACTIONS(4472), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4472), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4472), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4472), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4472), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4472), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_NORETURN] = ACTIONS(4472), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4472), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4472), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4472), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4472), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4472), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4472), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4472), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4472), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4472), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4472), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4472), + [anon_sym_MOZ_RAII] = ACTIONS(4472), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4472), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4472), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4472), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4472), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4472), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4472), + }, + [STATE(1155)] = { + [sym_identifier] = ACTIONS(2182), + [aux_sym_preproc_def_token1] = ACTIONS(2182), + [aux_sym_preproc_if_token1] = ACTIONS(2182), + [aux_sym_preproc_if_token2] = ACTIONS(2182), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2182), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2182), + [sym_preproc_directive] = ACTIONS(2182), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym___extension__] = ACTIONS(2182), + [anon_sym_typedef] = ACTIONS(2182), + [anon_sym_virtual] = ACTIONS(2182), + [anon_sym_extern] = ACTIONS(2182), + [anon_sym___attribute__] = ACTIONS(2182), + [anon_sym___attribute] = ACTIONS(2182), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2182), + [anon_sym___based] = ACTIONS(2182), + [anon_sym_signed] = ACTIONS(2182), + [anon_sym_unsigned] = ACTIONS(2182), + [anon_sym_long] = ACTIONS(2182), + [anon_sym_short] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_register] = ACTIONS(2182), + [anon_sym_inline] = ACTIONS(2182), + [anon_sym___inline] = ACTIONS(2182), + [anon_sym___inline__] = ACTIONS(2182), + [anon_sym___forceinline] = ACTIONS(2182), + [anon_sym_thread_local] = ACTIONS(2182), + [anon_sym___thread] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_constexpr] = ACTIONS(2182), + [anon_sym_volatile] = ACTIONS(2182), + [anon_sym_restrict] = ACTIONS(2182), + [anon_sym___restrict__] = ACTIONS(2182), + [anon_sym__Atomic] = ACTIONS(2182), + [anon_sym__Noreturn] = ACTIONS(2182), + [anon_sym_noreturn] = ACTIONS(2182), + [anon_sym__Nonnull] = ACTIONS(2182), + [anon_sym_mutable] = ACTIONS(2182), + [anon_sym_constinit] = ACTIONS(2182), + [anon_sym_consteval] = ACTIONS(2182), + [anon_sym_alignas] = ACTIONS(2182), + [anon_sym__Alignas] = ACTIONS(2182), + [sym_primitive_type] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), + [anon_sym_class] = ACTIONS(2182), + [anon_sym_struct] = ACTIONS(2182), + [anon_sym_union] = ACTIONS(2182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2182), + [anon_sym_decltype] = ACTIONS(2182), + [anon_sym_explicit] = ACTIONS(2182), + [anon_sym_typename] = ACTIONS(2182), + [anon_sym_template] = ACTIONS(2182), + [anon_sym_operator] = ACTIONS(2182), + [anon_sym_friend] = ACTIONS(2182), + [anon_sym_public] = ACTIONS(2182), + [anon_sym_private] = ACTIONS(2182), + [anon_sym_protected] = ACTIONS(2182), + [anon_sym_using] = ACTIONS(2182), + [anon_sym_static_assert] = ACTIONS(2182), + [sym_macro_statement] = ACTIONS(2182), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2182), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2182), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2182), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2182), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2182), + [anon_sym_MOZ_COLD] = ACTIONS(2182), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2182), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2182), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2182), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2182), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2182), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2182), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2182), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2182), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2182), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2182), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2182), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2182), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2182), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2182), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2182), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2182), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_NONNULL] = ACTIONS(2182), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2182), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2182), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2182), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2182), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_NORETURN] = ACTIONS(2182), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2182), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2182), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2182), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2182), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2182), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2182), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2182), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2182), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2182), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2182), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2182), + [anon_sym_MOZ_RAII] = ACTIONS(2182), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2182), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2182), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2182), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2182), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2182), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2182), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2182), + }, + [STATE(1156)] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token2] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_STAR] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym___attribute] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2188), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym__Nonnull] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym__Alignas] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_friend] = ACTIONS(2186), + [anon_sym_public] = ACTIONS(2186), + [anon_sym_private] = ACTIONS(2186), + [anon_sym_protected] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [sym_macro_statement] = ACTIONS(2186), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2186), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2186), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2186), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2186), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2186), + [anon_sym_MOZ_COLD] = ACTIONS(2186), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2186), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2186), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2186), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2186), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2186), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2186), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2186), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2186), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2186), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2186), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2186), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2186), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2186), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2186), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2186), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2186), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_NONNULL] = ACTIONS(2186), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2186), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2186), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2186), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2186), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_NORETURN] = ACTIONS(2186), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2186), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2186), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2186), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2186), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2186), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2186), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2186), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2186), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2186), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2186), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2186), + [anon_sym_MOZ_RAII] = ACTIONS(2186), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2186), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2186), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2186), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2186), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2186), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2186), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2186), + }, + [STATE(1157)] = { + [sym_identifier] = ACTIONS(2190), + [aux_sym_preproc_def_token1] = ACTIONS(2190), + [aux_sym_preproc_if_token1] = ACTIONS(2190), + [aux_sym_preproc_if_token2] = ACTIONS(2190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2190), + [sym_preproc_directive] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym___extension__] = ACTIONS(2190), + [anon_sym_typedef] = ACTIONS(2190), + [anon_sym_virtual] = ACTIONS(2190), + [anon_sym_extern] = ACTIONS(2190), + [anon_sym___attribute__] = ACTIONS(2190), + [anon_sym___attribute] = ACTIONS(2190), + [anon_sym_COLON_COLON] = ACTIONS(2192), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), + [anon_sym___declspec] = ACTIONS(2190), + [anon_sym___based] = ACTIONS(2190), + [anon_sym_signed] = ACTIONS(2190), + [anon_sym_unsigned] = ACTIONS(2190), + [anon_sym_long] = ACTIONS(2190), + [anon_sym_short] = ACTIONS(2190), + [anon_sym_LBRACK] = ACTIONS(2190), + [anon_sym_static] = ACTIONS(2190), + [anon_sym_register] = ACTIONS(2190), + [anon_sym_inline] = ACTIONS(2190), + [anon_sym___inline] = ACTIONS(2190), + [anon_sym___inline__] = ACTIONS(2190), + [anon_sym___forceinline] = ACTIONS(2190), + [anon_sym_thread_local] = ACTIONS(2190), + [anon_sym___thread] = ACTIONS(2190), + [anon_sym_const] = ACTIONS(2190), + [anon_sym_constexpr] = ACTIONS(2190), + [anon_sym_volatile] = ACTIONS(2190), + [anon_sym_restrict] = ACTIONS(2190), + [anon_sym___restrict__] = ACTIONS(2190), + [anon_sym__Atomic] = ACTIONS(2190), + [anon_sym__Noreturn] = ACTIONS(2190), + [anon_sym_noreturn] = ACTIONS(2190), + [anon_sym__Nonnull] = ACTIONS(2190), + [anon_sym_mutable] = ACTIONS(2190), + [anon_sym_constinit] = ACTIONS(2190), + [anon_sym_consteval] = ACTIONS(2190), + [anon_sym_alignas] = ACTIONS(2190), + [anon_sym__Alignas] = ACTIONS(2190), + [sym_primitive_type] = ACTIONS(2190), + [anon_sym_enum] = ACTIONS(2190), + [anon_sym_class] = ACTIONS(2190), + [anon_sym_struct] = ACTIONS(2190), + [anon_sym_union] = ACTIONS(2190), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2190), + [anon_sym_decltype] = ACTIONS(2190), + [anon_sym_explicit] = ACTIONS(2190), + [anon_sym_typename] = ACTIONS(2190), + [anon_sym_template] = ACTIONS(2190), + [anon_sym_operator] = ACTIONS(2190), + [anon_sym_friend] = ACTIONS(2190), + [anon_sym_public] = ACTIONS(2190), + [anon_sym_private] = ACTIONS(2190), + [anon_sym_protected] = ACTIONS(2190), + [anon_sym_using] = ACTIONS(2190), + [anon_sym_static_assert] = ACTIONS(2190), + [sym_macro_statement] = ACTIONS(2190), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2190), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2190), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2190), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2190), + [anon_sym_MOZ_COLD] = ACTIONS(2190), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2190), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2190), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2190), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2190), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2190), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2190), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2190), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2190), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2190), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2190), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2190), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2190), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2190), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_NONNULL] = ACTIONS(2190), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2190), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2190), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2190), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2190), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2190), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2190), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2190), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2190), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2190), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2190), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2190), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2190), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2190), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2190), + [anon_sym_MOZ_RAII] = ACTIONS(2190), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2190), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2190), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2190), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2190), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2190), + }, + [STATE(1158)] = { + [sym_identifier] = ACTIONS(2194), + [aux_sym_preproc_def_token1] = ACTIONS(2194), + [aux_sym_preproc_if_token1] = ACTIONS(2194), + [aux_sym_preproc_if_token2] = ACTIONS(2194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2194), + [sym_preproc_directive] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(2196), + [anon_sym_TILDE] = ACTIONS(2196), + [anon_sym_STAR] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym___extension__] = ACTIONS(2194), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_virtual] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(2194), + [anon_sym___attribute__] = ACTIONS(2194), + [anon_sym___attribute] = ACTIONS(2194), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2196), + [anon_sym___declspec] = ACTIONS(2194), + [anon_sym___based] = ACTIONS(2194), + [anon_sym_signed] = ACTIONS(2194), + [anon_sym_unsigned] = ACTIONS(2194), + [anon_sym_long] = ACTIONS(2194), + [anon_sym_short] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2194), + [anon_sym_static] = ACTIONS(2194), + [anon_sym_register] = ACTIONS(2194), + [anon_sym_inline] = ACTIONS(2194), + [anon_sym___inline] = ACTIONS(2194), + [anon_sym___inline__] = ACTIONS(2194), + [anon_sym___forceinline] = ACTIONS(2194), + [anon_sym_thread_local] = ACTIONS(2194), + [anon_sym___thread] = ACTIONS(2194), + [anon_sym_const] = ACTIONS(2194), + [anon_sym_constexpr] = ACTIONS(2194), + [anon_sym_volatile] = ACTIONS(2194), + [anon_sym_restrict] = ACTIONS(2194), + [anon_sym___restrict__] = ACTIONS(2194), + [anon_sym__Atomic] = ACTIONS(2194), + [anon_sym__Noreturn] = ACTIONS(2194), + [anon_sym_noreturn] = ACTIONS(2194), + [anon_sym__Nonnull] = ACTIONS(2194), + [anon_sym_mutable] = ACTIONS(2194), + [anon_sym_constinit] = ACTIONS(2194), + [anon_sym_consteval] = ACTIONS(2194), + [anon_sym_alignas] = ACTIONS(2194), + [anon_sym__Alignas] = ACTIONS(2194), + [sym_primitive_type] = ACTIONS(2194), + [anon_sym_enum] = ACTIONS(2194), + [anon_sym_class] = ACTIONS(2194), + [anon_sym_struct] = ACTIONS(2194), + [anon_sym_union] = ACTIONS(2194), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2194), + [anon_sym_decltype] = ACTIONS(2194), + [anon_sym_explicit] = ACTIONS(2194), + [anon_sym_typename] = ACTIONS(2194), + [anon_sym_template] = ACTIONS(2194), + [anon_sym_operator] = ACTIONS(2194), + [anon_sym_friend] = ACTIONS(2194), + [anon_sym_public] = ACTIONS(2194), + [anon_sym_private] = ACTIONS(2194), + [anon_sym_protected] = ACTIONS(2194), + [anon_sym_using] = ACTIONS(2194), + [anon_sym_static_assert] = ACTIONS(2194), + [sym_macro_statement] = ACTIONS(2194), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2194), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2194), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2194), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2194), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2194), + [anon_sym_MOZ_COLD] = ACTIONS(2194), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2194), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2194), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2194), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2194), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2194), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2194), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2194), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2194), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2194), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2194), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2194), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2194), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2194), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2194), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2194), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2194), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_NONNULL] = ACTIONS(2194), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2194), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2194), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2194), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2194), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_NORETURN] = ACTIONS(2194), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2194), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2194), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2194), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2194), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2194), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2194), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2194), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2194), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2194), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2194), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2194), + [anon_sym_MOZ_RAII] = ACTIONS(2194), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2194), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2194), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2194), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2194), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2194), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2194), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2194), + }, + [STATE(1159)] = { + [sym_identifier] = ACTIONS(2198), + [aux_sym_preproc_def_token1] = ACTIONS(2198), + [aux_sym_preproc_if_token1] = ACTIONS(2198), + [aux_sym_preproc_if_token2] = ACTIONS(2198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2198), + [sym_preproc_directive] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_AMP_AMP] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym___extension__] = ACTIONS(2198), + [anon_sym_typedef] = ACTIONS(2198), + [anon_sym_virtual] = ACTIONS(2198), + [anon_sym_extern] = ACTIONS(2198), + [anon_sym___attribute__] = ACTIONS(2198), + [anon_sym___attribute] = ACTIONS(2198), + [anon_sym_COLON_COLON] = ACTIONS(2200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2200), + [anon_sym___declspec] = ACTIONS(2198), + [anon_sym___based] = ACTIONS(2198), + [anon_sym_signed] = ACTIONS(2198), + [anon_sym_unsigned] = ACTIONS(2198), + [anon_sym_long] = ACTIONS(2198), + [anon_sym_short] = ACTIONS(2198), + [anon_sym_LBRACK] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_register] = ACTIONS(2198), + [anon_sym_inline] = ACTIONS(2198), + [anon_sym___inline] = ACTIONS(2198), + [anon_sym___inline__] = ACTIONS(2198), + [anon_sym___forceinline] = ACTIONS(2198), + [anon_sym_thread_local] = ACTIONS(2198), + [anon_sym___thread] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_constexpr] = ACTIONS(2198), + [anon_sym_volatile] = ACTIONS(2198), + [anon_sym_restrict] = ACTIONS(2198), + [anon_sym___restrict__] = ACTIONS(2198), + [anon_sym__Atomic] = ACTIONS(2198), + [anon_sym__Noreturn] = ACTIONS(2198), + [anon_sym_noreturn] = ACTIONS(2198), + [anon_sym__Nonnull] = ACTIONS(2198), + [anon_sym_mutable] = ACTIONS(2198), + [anon_sym_constinit] = ACTIONS(2198), + [anon_sym_consteval] = ACTIONS(2198), + [anon_sym_alignas] = ACTIONS(2198), + [anon_sym__Alignas] = ACTIONS(2198), + [sym_primitive_type] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), + [anon_sym_class] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(2198), + [anon_sym_union] = ACTIONS(2198), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2198), + [anon_sym_decltype] = ACTIONS(2198), + [anon_sym_explicit] = ACTIONS(2198), + [anon_sym_typename] = ACTIONS(2198), + [anon_sym_template] = ACTIONS(2198), + [anon_sym_operator] = ACTIONS(2198), + [anon_sym_friend] = ACTIONS(2198), + [anon_sym_public] = ACTIONS(2198), + [anon_sym_private] = ACTIONS(2198), + [anon_sym_protected] = ACTIONS(2198), + [anon_sym_using] = ACTIONS(2198), + [anon_sym_static_assert] = ACTIONS(2198), + [sym_macro_statement] = ACTIONS(2198), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2198), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2198), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2198), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2198), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2198), + [anon_sym_MOZ_COLD] = ACTIONS(2198), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2198), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2198), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2198), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2198), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2198), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2198), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2198), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2198), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2198), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2198), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2198), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2198), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2198), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2198), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2198), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2198), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_NONNULL] = ACTIONS(2198), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2198), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2198), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2198), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2198), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_NORETURN] = ACTIONS(2198), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2198), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2198), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2198), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2198), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2198), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2198), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2198), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2198), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2198), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2198), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2198), + [anon_sym_MOZ_RAII] = ACTIONS(2198), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2198), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2198), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2198), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2198), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2198), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2198), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2198), + }, + [STATE(1160)] = { + [sym_identifier] = ACTIONS(2210), + [aux_sym_preproc_def_token1] = ACTIONS(2210), + [aux_sym_preproc_if_token1] = ACTIONS(2210), + [aux_sym_preproc_if_token2] = ACTIONS(2210), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2210), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2210), + [sym_preproc_directive] = ACTIONS(2210), + [anon_sym_LPAREN2] = ACTIONS(2212), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2212), + [anon_sym_AMP_AMP] = ACTIONS(2212), + [anon_sym_AMP] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym___extension__] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_virtual] = ACTIONS(2210), + [anon_sym_extern] = ACTIONS(2210), + [anon_sym___attribute__] = ACTIONS(2210), + [anon_sym___attribute] = ACTIONS(2210), + [anon_sym_COLON_COLON] = ACTIONS(2212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2212), + [anon_sym___declspec] = ACTIONS(2210), + [anon_sym___based] = ACTIONS(2210), + [anon_sym_signed] = ACTIONS(2210), + [anon_sym_unsigned] = ACTIONS(2210), + [anon_sym_long] = ACTIONS(2210), + [anon_sym_short] = ACTIONS(2210), + [anon_sym_LBRACK] = ACTIONS(2210), + [anon_sym_static] = ACTIONS(2210), + [anon_sym_register] = ACTIONS(2210), + [anon_sym_inline] = ACTIONS(2210), + [anon_sym___inline] = ACTIONS(2210), + [anon_sym___inline__] = ACTIONS(2210), + [anon_sym___forceinline] = ACTIONS(2210), + [anon_sym_thread_local] = ACTIONS(2210), + [anon_sym___thread] = ACTIONS(2210), + [anon_sym_const] = ACTIONS(2210), + [anon_sym_constexpr] = ACTIONS(2210), + [anon_sym_volatile] = ACTIONS(2210), + [anon_sym_restrict] = ACTIONS(2210), + [anon_sym___restrict__] = ACTIONS(2210), + [anon_sym__Atomic] = ACTIONS(2210), + [anon_sym__Noreturn] = ACTIONS(2210), + [anon_sym_noreturn] = ACTIONS(2210), + [anon_sym__Nonnull] = ACTIONS(2210), + [anon_sym_mutable] = ACTIONS(2210), + [anon_sym_constinit] = ACTIONS(2210), + [anon_sym_consteval] = ACTIONS(2210), + [anon_sym_alignas] = ACTIONS(2210), + [anon_sym__Alignas] = ACTIONS(2210), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_enum] = ACTIONS(2210), + [anon_sym_class] = ACTIONS(2210), + [anon_sym_struct] = ACTIONS(2210), + [anon_sym_union] = ACTIONS(2210), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2210), + [anon_sym_decltype] = ACTIONS(2210), + [anon_sym_explicit] = ACTIONS(2210), + [anon_sym_typename] = ACTIONS(2210), + [anon_sym_template] = ACTIONS(2210), + [anon_sym_operator] = ACTIONS(2210), + [anon_sym_friend] = ACTIONS(2210), + [anon_sym_public] = ACTIONS(2210), + [anon_sym_private] = ACTIONS(2210), + [anon_sym_protected] = ACTIONS(2210), + [anon_sym_using] = ACTIONS(2210), + [anon_sym_static_assert] = ACTIONS(2210), + [sym_macro_statement] = ACTIONS(2210), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2210), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2210), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2210), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2210), + [anon_sym_MOZ_COLD] = ACTIONS(2210), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2210), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2210), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2210), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2210), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2210), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2210), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2210), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2210), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2210), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2210), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2210), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2210), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2210), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_NONNULL] = ACTIONS(2210), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2210), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2210), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2210), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2210), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2210), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2210), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2210), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2210), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2210), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2210), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2210), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2210), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2210), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2210), + [anon_sym_MOZ_RAII] = ACTIONS(2210), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2210), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2210), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2210), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2210), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2210), + }, + [STATE(1161)] = { + [sym_identifier] = ACTIONS(2218), + [aux_sym_preproc_def_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token1] = ACTIONS(2218), + [aux_sym_preproc_if_token2] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2218), + [sym_preproc_directive] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AMP_AMP] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2218), + [anon_sym_typedef] = ACTIONS(2218), + [anon_sym_virtual] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym___attribute__] = ACTIONS(2218), + [anon_sym___attribute] = ACTIONS(2218), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2220), + [anon_sym___declspec] = ACTIONS(2218), + [anon_sym___based] = ACTIONS(2218), + [anon_sym_signed] = ACTIONS(2218), + [anon_sym_unsigned] = ACTIONS(2218), + [anon_sym_long] = ACTIONS(2218), + [anon_sym_short] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_inline] = ACTIONS(2218), + [anon_sym___inline] = ACTIONS(2218), + [anon_sym___inline__] = ACTIONS(2218), + [anon_sym___forceinline] = ACTIONS(2218), + [anon_sym_thread_local] = ACTIONS(2218), + [anon_sym___thread] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_constexpr] = ACTIONS(2218), + [anon_sym_volatile] = ACTIONS(2218), + [anon_sym_restrict] = ACTIONS(2218), + [anon_sym___restrict__] = ACTIONS(2218), + [anon_sym__Atomic] = ACTIONS(2218), + [anon_sym__Noreturn] = ACTIONS(2218), + [anon_sym_noreturn] = ACTIONS(2218), + [anon_sym__Nonnull] = ACTIONS(2218), + [anon_sym_mutable] = ACTIONS(2218), + [anon_sym_constinit] = ACTIONS(2218), + [anon_sym_consteval] = ACTIONS(2218), + [anon_sym_alignas] = ACTIONS(2218), + [anon_sym__Alignas] = ACTIONS(2218), + [sym_primitive_type] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_class] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2218), + [anon_sym_explicit] = ACTIONS(2218), + [anon_sym_typename] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_operator] = ACTIONS(2218), + [anon_sym_friend] = ACTIONS(2218), + [anon_sym_public] = ACTIONS(2218), + [anon_sym_private] = ACTIONS(2218), + [anon_sym_protected] = ACTIONS(2218), + [anon_sym_using] = ACTIONS(2218), + [anon_sym_static_assert] = ACTIONS(2218), + [sym_macro_statement] = ACTIONS(2218), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2218), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2218), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2218), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2218), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2218), + [anon_sym_MOZ_COLD] = ACTIONS(2218), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2218), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2218), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2218), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2218), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2218), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2218), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2218), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2218), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2218), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2218), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2218), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2218), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2218), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2218), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2218), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2218), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_NONNULL] = ACTIONS(2218), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2218), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2218), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2218), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2218), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_NORETURN] = ACTIONS(2218), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2218), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2218), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2218), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2218), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2218), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2218), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2218), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2218), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2218), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2218), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2218), + [anon_sym_MOZ_RAII] = ACTIONS(2218), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2218), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2218), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2218), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2218), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2218), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2218), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2218), + }, + [STATE(1162)] = { + [sym_identifier] = ACTIONS(2333), + [aux_sym_preproc_def_token1] = ACTIONS(2333), + [aux_sym_preproc_if_token1] = ACTIONS(2333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2333), + [sym_preproc_directive] = ACTIONS(2333), + [anon_sym_LPAREN2] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2333), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym___extension__] = ACTIONS(2333), + [anon_sym_typedef] = ACTIONS(2333), + [anon_sym_virtual] = ACTIONS(2333), + [anon_sym_extern] = ACTIONS(2333), + [anon_sym___attribute__] = ACTIONS(2333), + [anon_sym___attribute] = ACTIONS(2333), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), + [anon_sym___declspec] = ACTIONS(2333), + [anon_sym___based] = ACTIONS(2333), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_signed] = ACTIONS(2333), + [anon_sym_unsigned] = ACTIONS(2333), + [anon_sym_long] = ACTIONS(2333), + [anon_sym_short] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_register] = ACTIONS(2333), + [anon_sym_inline] = ACTIONS(2333), + [anon_sym___inline] = ACTIONS(2333), + [anon_sym___inline__] = ACTIONS(2333), + [anon_sym___forceinline] = ACTIONS(2333), + [anon_sym_thread_local] = ACTIONS(2333), + [anon_sym___thread] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [anon_sym_constexpr] = ACTIONS(2333), + [anon_sym_volatile] = ACTIONS(2333), + [anon_sym_restrict] = ACTIONS(2333), + [anon_sym___restrict__] = ACTIONS(2333), + [anon_sym__Atomic] = ACTIONS(2333), + [anon_sym__Noreturn] = ACTIONS(2333), + [anon_sym_noreturn] = ACTIONS(2333), + [anon_sym__Nonnull] = ACTIONS(2333), + [anon_sym_mutable] = ACTIONS(2333), + [anon_sym_constinit] = ACTIONS(2333), + [anon_sym_consteval] = ACTIONS(2333), + [anon_sym_alignas] = ACTIONS(2333), + [anon_sym__Alignas] = ACTIONS(2333), + [sym_primitive_type] = ACTIONS(2333), + [anon_sym_enum] = ACTIONS(2333), + [anon_sym_class] = ACTIONS(2333), + [anon_sym_struct] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(2333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2333), + [anon_sym_decltype] = ACTIONS(2333), + [anon_sym_explicit] = ACTIONS(2333), + [anon_sym_typename] = ACTIONS(2333), + [anon_sym_template] = ACTIONS(2333), + [anon_sym_operator] = ACTIONS(2333), + [anon_sym_friend] = ACTIONS(2333), + [anon_sym_public] = ACTIONS(2333), + [anon_sym_private] = ACTIONS(2333), + [anon_sym_protected] = ACTIONS(2333), + [anon_sym_using] = ACTIONS(2333), + [anon_sym_static_assert] = ACTIONS(2333), + [sym_macro_statement] = ACTIONS(2333), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2333), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2333), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2333), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2333), + [anon_sym_MOZ_COLD] = ACTIONS(2333), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2333), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2333), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2333), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2333), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2333), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2333), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2333), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2333), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2333), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2333), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2333), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2333), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2333), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_NONNULL] = ACTIONS(2333), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2333), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2333), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2333), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2333), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2333), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2333), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2333), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2333), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2333), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2333), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2333), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2333), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2333), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2333), + [anon_sym_MOZ_RAII] = ACTIONS(2333), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2333), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2333), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2333), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2333), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2333), + }, + [STATE(1163)] = { + [sym_identifier] = ACTIONS(2272), + [aux_sym_preproc_def_token1] = ACTIONS(2272), + [aux_sym_preproc_if_token1] = ACTIONS(2272), + [aux_sym_preproc_if_token2] = ACTIONS(2272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2272), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2272), + [sym_preproc_directive] = ACTIONS(2272), + [anon_sym_LPAREN2] = ACTIONS(2274), + [anon_sym_TILDE] = ACTIONS(2274), + [anon_sym_STAR] = ACTIONS(2274), + [anon_sym_AMP_AMP] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym___extension__] = ACTIONS(2272), + [anon_sym_typedef] = ACTIONS(2272), + [anon_sym_virtual] = ACTIONS(2272), + [anon_sym_extern] = ACTIONS(2272), + [anon_sym___attribute__] = ACTIONS(2272), + [anon_sym___attribute] = ACTIONS(2272), + [anon_sym_COLON_COLON] = ACTIONS(2274), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2274), + [anon_sym___declspec] = ACTIONS(2272), + [anon_sym___based] = ACTIONS(2272), + [anon_sym_signed] = ACTIONS(2272), + [anon_sym_unsigned] = ACTIONS(2272), + [anon_sym_long] = ACTIONS(2272), + [anon_sym_short] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_static] = ACTIONS(2272), + [anon_sym_register] = ACTIONS(2272), + [anon_sym_inline] = ACTIONS(2272), + [anon_sym___inline] = ACTIONS(2272), + [anon_sym___inline__] = ACTIONS(2272), + [anon_sym___forceinline] = ACTIONS(2272), + [anon_sym_thread_local] = ACTIONS(2272), + [anon_sym___thread] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [anon_sym_constexpr] = ACTIONS(2272), + [anon_sym_volatile] = ACTIONS(2272), + [anon_sym_restrict] = ACTIONS(2272), + [anon_sym___restrict__] = ACTIONS(2272), + [anon_sym__Atomic] = ACTIONS(2272), + [anon_sym__Noreturn] = ACTIONS(2272), + [anon_sym_noreturn] = ACTIONS(2272), + [anon_sym__Nonnull] = ACTIONS(2272), + [anon_sym_mutable] = ACTIONS(2272), + [anon_sym_constinit] = ACTIONS(2272), + [anon_sym_consteval] = ACTIONS(2272), + [anon_sym_alignas] = ACTIONS(2272), + [anon_sym__Alignas] = ACTIONS(2272), + [sym_primitive_type] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), + [anon_sym_class] = ACTIONS(2272), + [anon_sym_struct] = ACTIONS(2272), + [anon_sym_union] = ACTIONS(2272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2272), + [anon_sym_decltype] = ACTIONS(2272), + [anon_sym_explicit] = ACTIONS(2272), + [anon_sym_typename] = ACTIONS(2272), + [anon_sym_template] = ACTIONS(2272), + [anon_sym_operator] = ACTIONS(2272), + [anon_sym_friend] = ACTIONS(2272), + [anon_sym_public] = ACTIONS(2272), + [anon_sym_private] = ACTIONS(2272), + [anon_sym_protected] = ACTIONS(2272), + [anon_sym_using] = ACTIONS(2272), + [anon_sym_static_assert] = ACTIONS(2272), + [sym_macro_statement] = ACTIONS(2272), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2272), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2272), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2272), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2272), + [anon_sym_MOZ_COLD] = ACTIONS(2272), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2272), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2272), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2272), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2272), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2272), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2272), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2272), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2272), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2272), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2272), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2272), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2272), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2272), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2272), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2272), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2272), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_NONNULL] = ACTIONS(2272), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2272), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2272), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2272), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2272), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_NORETURN] = ACTIONS(2272), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2272), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2272), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2272), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2272), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2272), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2272), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2272), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2272), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2272), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2272), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2272), + [anon_sym_MOZ_RAII] = ACTIONS(2272), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2272), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2272), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2272), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2272), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2272), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2272), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2272), + }, + [STATE(1164)] = { + [sym_identifier] = ACTIONS(2307), + [aux_sym_preproc_def_token1] = ACTIONS(2307), + [aux_sym_preproc_if_token1] = ACTIONS(2307), + [aux_sym_preproc_if_token2] = ACTIONS(2307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2307), + [sym_preproc_directive] = ACTIONS(2307), + [anon_sym_LPAREN2] = ACTIONS(2309), + [anon_sym_TILDE] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym___extension__] = ACTIONS(2307), + [anon_sym_typedef] = ACTIONS(2307), + [anon_sym_virtual] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym___attribute__] = ACTIONS(2307), + [anon_sym___attribute] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2309), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2309), + [anon_sym___declspec] = ACTIONS(2307), + [anon_sym___based] = ACTIONS(2307), + [anon_sym_signed] = ACTIONS(2307), + [anon_sym_unsigned] = ACTIONS(2307), + [anon_sym_long] = ACTIONS(2307), + [anon_sym_short] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_register] = ACTIONS(2307), + [anon_sym_inline] = ACTIONS(2307), + [anon_sym___inline] = ACTIONS(2307), + [anon_sym___inline__] = ACTIONS(2307), + [anon_sym___forceinline] = ACTIONS(2307), + [anon_sym_thread_local] = ACTIONS(2307), + [anon_sym___thread] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_constexpr] = ACTIONS(2307), + [anon_sym_volatile] = ACTIONS(2307), + [anon_sym_restrict] = ACTIONS(2307), + [anon_sym___restrict__] = ACTIONS(2307), + [anon_sym__Atomic] = ACTIONS(2307), + [anon_sym__Noreturn] = ACTIONS(2307), + [anon_sym_noreturn] = ACTIONS(2307), + [anon_sym__Nonnull] = ACTIONS(2307), + [anon_sym_mutable] = ACTIONS(2307), + [anon_sym_constinit] = ACTIONS(2307), + [anon_sym_consteval] = ACTIONS(2307), + [anon_sym_alignas] = ACTIONS(2307), + [anon_sym__Alignas] = ACTIONS(2307), + [sym_primitive_type] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_class] = ACTIONS(2307), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2307), + [anon_sym_decltype] = ACTIONS(2307), + [anon_sym_explicit] = ACTIONS(2307), + [anon_sym_typename] = ACTIONS(2307), + [anon_sym_template] = ACTIONS(2307), + [anon_sym_operator] = ACTIONS(2307), + [anon_sym_friend] = ACTIONS(2307), + [anon_sym_public] = ACTIONS(2307), + [anon_sym_private] = ACTIONS(2307), + [anon_sym_protected] = ACTIONS(2307), + [anon_sym_using] = ACTIONS(2307), + [anon_sym_static_assert] = ACTIONS(2307), + [sym_macro_statement] = ACTIONS(2307), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2307), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2307), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2307), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2307), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2307), + [anon_sym_MOZ_COLD] = ACTIONS(2307), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2307), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2307), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2307), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2307), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2307), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2307), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2307), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2307), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2307), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2307), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2307), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2307), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2307), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2307), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2307), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2307), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_NONNULL] = ACTIONS(2307), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2307), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2307), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2307), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2307), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_NORETURN] = ACTIONS(2307), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2307), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2307), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2307), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2307), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2307), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2307), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2307), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2307), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2307), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2307), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2307), + [anon_sym_MOZ_RAII] = ACTIONS(2307), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2307), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2307), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2307), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2307), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2307), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2307), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2307), + }, + [STATE(1165)] = { + [sym_identifier] = ACTIONS(2337), + [aux_sym_preproc_def_token1] = ACTIONS(2337), + [aux_sym_preproc_if_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), + [sym_preproc_directive] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2339), + [anon_sym_TILDE] = ACTIONS(2339), + [anon_sym_STAR] = ACTIONS(2339), + [anon_sym_AMP_AMP] = ACTIONS(2339), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym___extension__] = ACTIONS(2337), + [anon_sym_typedef] = ACTIONS(2337), + [anon_sym_virtual] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym___attribute__] = ACTIONS(2337), + [anon_sym___attribute] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2339), + [anon_sym___declspec] = ACTIONS(2337), + [anon_sym___based] = ACTIONS(2337), + [anon_sym_RBRACE] = ACTIONS(2339), + [anon_sym_signed] = ACTIONS(2337), + [anon_sym_unsigned] = ACTIONS(2337), + [anon_sym_long] = ACTIONS(2337), + [anon_sym_short] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_inline] = ACTIONS(2337), + [anon_sym___inline] = ACTIONS(2337), + [anon_sym___inline__] = ACTIONS(2337), + [anon_sym___forceinline] = ACTIONS(2337), + [anon_sym_thread_local] = ACTIONS(2337), + [anon_sym___thread] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_constexpr] = ACTIONS(2337), + [anon_sym_volatile] = ACTIONS(2337), + [anon_sym_restrict] = ACTIONS(2337), + [anon_sym___restrict__] = ACTIONS(2337), + [anon_sym__Atomic] = ACTIONS(2337), + [anon_sym__Noreturn] = ACTIONS(2337), + [anon_sym_noreturn] = ACTIONS(2337), + [anon_sym__Nonnull] = ACTIONS(2337), + [anon_sym_mutable] = ACTIONS(2337), + [anon_sym_constinit] = ACTIONS(2337), + [anon_sym_consteval] = ACTIONS(2337), + [anon_sym_alignas] = ACTIONS(2337), + [anon_sym__Alignas] = ACTIONS(2337), + [sym_primitive_type] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2337), + [anon_sym_decltype] = ACTIONS(2337), + [anon_sym_explicit] = ACTIONS(2337), + [anon_sym_typename] = ACTIONS(2337), + [anon_sym_template] = ACTIONS(2337), + [anon_sym_operator] = ACTIONS(2337), + [anon_sym_friend] = ACTIONS(2337), + [anon_sym_public] = ACTIONS(2337), + [anon_sym_private] = ACTIONS(2337), + [anon_sym_protected] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [anon_sym_static_assert] = ACTIONS(2337), + [sym_macro_statement] = ACTIONS(2337), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2337), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2337), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2337), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2337), + [anon_sym_MOZ_COLD] = ACTIONS(2337), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2337), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2337), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2337), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2337), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2337), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2337), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2337), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2337), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2337), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2337), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2337), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2337), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2337), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_NONNULL] = ACTIONS(2337), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2337), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2337), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2337), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2337), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2337), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2337), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2337), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2337), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2337), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2337), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2337), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2337), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2337), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2337), + [anon_sym_MOZ_RAII] = ACTIONS(2337), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2337), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2337), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2337), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2337), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2337), + }, + [STATE(1166)] = { + [sym_identifier] = ACTIONS(2341), + [aux_sym_preproc_def_token1] = ACTIONS(2341), + [aux_sym_preproc_if_token1] = ACTIONS(2341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2341), + [sym_preproc_directive] = ACTIONS(2341), + [anon_sym_LPAREN2] = ACTIONS(2343), + [anon_sym_TILDE] = ACTIONS(2343), + [anon_sym_STAR] = ACTIONS(2343), + [anon_sym_AMP_AMP] = ACTIONS(2343), + [anon_sym_AMP] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2343), + [anon_sym___extension__] = ACTIONS(2341), + [anon_sym_typedef] = ACTIONS(2341), + [anon_sym_virtual] = ACTIONS(2341), + [anon_sym_extern] = ACTIONS(2341), + [anon_sym___attribute__] = ACTIONS(2341), + [anon_sym___attribute] = ACTIONS(2341), + [anon_sym_COLON_COLON] = ACTIONS(2343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2343), + [anon_sym___declspec] = ACTIONS(2341), + [anon_sym___based] = ACTIONS(2341), + [anon_sym_RBRACE] = ACTIONS(2343), + [anon_sym_signed] = ACTIONS(2341), + [anon_sym_unsigned] = ACTIONS(2341), + [anon_sym_long] = ACTIONS(2341), + [anon_sym_short] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2341), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_register] = ACTIONS(2341), + [anon_sym_inline] = ACTIONS(2341), + [anon_sym___inline] = ACTIONS(2341), + [anon_sym___inline__] = ACTIONS(2341), + [anon_sym___forceinline] = ACTIONS(2341), + [anon_sym_thread_local] = ACTIONS(2341), + [anon_sym___thread] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_constexpr] = ACTIONS(2341), + [anon_sym_volatile] = ACTIONS(2341), + [anon_sym_restrict] = ACTIONS(2341), + [anon_sym___restrict__] = ACTIONS(2341), + [anon_sym__Atomic] = ACTIONS(2341), + [anon_sym__Noreturn] = ACTIONS(2341), + [anon_sym_noreturn] = ACTIONS(2341), + [anon_sym__Nonnull] = ACTIONS(2341), + [anon_sym_mutable] = ACTIONS(2341), + [anon_sym_constinit] = ACTIONS(2341), + [anon_sym_consteval] = ACTIONS(2341), + [anon_sym_alignas] = ACTIONS(2341), + [anon_sym__Alignas] = ACTIONS(2341), + [sym_primitive_type] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_class] = ACTIONS(2341), + [anon_sym_struct] = ACTIONS(2341), + [anon_sym_union] = ACTIONS(2341), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2341), + [anon_sym_decltype] = ACTIONS(2341), + [anon_sym_explicit] = ACTIONS(2341), + [anon_sym_typename] = ACTIONS(2341), + [anon_sym_template] = ACTIONS(2341), + [anon_sym_operator] = ACTIONS(2341), + [anon_sym_friend] = ACTIONS(2341), + [anon_sym_public] = ACTIONS(2341), + [anon_sym_private] = ACTIONS(2341), + [anon_sym_protected] = ACTIONS(2341), + [anon_sym_using] = ACTIONS(2341), + [anon_sym_static_assert] = ACTIONS(2341), + [sym_macro_statement] = ACTIONS(2341), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2341), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2341), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2341), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2341), + [anon_sym_MOZ_COLD] = ACTIONS(2341), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2341), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2341), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2341), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2341), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2341), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2341), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2341), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2341), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2341), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2341), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2341), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2341), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2341), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_NONNULL] = ACTIONS(2341), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2341), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2341), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2341), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2341), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2341), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2341), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2341), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2341), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2341), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2341), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2341), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2341), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2341), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2341), + [anon_sym_MOZ_RAII] = ACTIONS(2341), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2341), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2341), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2341), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2341), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2341), + }, + [STATE(1167)] = { + [sym_identifier] = ACTIONS(2321), + [aux_sym_preproc_def_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token2] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2321), + [sym_preproc_directive] = ACTIONS(2321), + [anon_sym_LPAREN2] = ACTIONS(2323), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_AMP_AMP] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_typedef] = ACTIONS(2321), + [anon_sym_virtual] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym___attribute__] = ACTIONS(2321), + [anon_sym___attribute] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2323), + [anon_sym___declspec] = ACTIONS(2321), + [anon_sym___based] = ACTIONS(2321), + [anon_sym_signed] = ACTIONS(2321), + [anon_sym_unsigned] = ACTIONS(2321), + [anon_sym_long] = ACTIONS(2321), + [anon_sym_short] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_register] = ACTIONS(2321), + [anon_sym_inline] = ACTIONS(2321), + [anon_sym___inline] = ACTIONS(2321), + [anon_sym___inline__] = ACTIONS(2321), + [anon_sym___forceinline] = ACTIONS(2321), + [anon_sym_thread_local] = ACTIONS(2321), + [anon_sym___thread] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym__Nonnull] = ACTIONS(2321), + [anon_sym_mutable] = ACTIONS(2321), + [anon_sym_constinit] = ACTIONS(2321), + [anon_sym_consteval] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2321), + [anon_sym__Alignas] = ACTIONS(2321), + [sym_primitive_type] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2321), + [anon_sym_decltype] = ACTIONS(2321), + [anon_sym_explicit] = ACTIONS(2321), + [anon_sym_typename] = ACTIONS(2321), + [anon_sym_template] = ACTIONS(2321), + [anon_sym_operator] = ACTIONS(2321), + [anon_sym_friend] = ACTIONS(2321), + [anon_sym_public] = ACTIONS(2321), + [anon_sym_private] = ACTIONS(2321), + [anon_sym_protected] = ACTIONS(2321), + [anon_sym_using] = ACTIONS(2321), + [anon_sym_static_assert] = ACTIONS(2321), + [sym_macro_statement] = ACTIONS(2321), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2321), + [anon_sym_MOZ_COLD] = ACTIONS(2321), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2321), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2321), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2321), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2321), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2321), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2321), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2321), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2321), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2321), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2321), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2321), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2321), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_RAII] = ACTIONS(2321), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2321), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2321), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2321), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2321), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2321), + }, + [STATE(1168)] = { + [sym_identifier] = ACTIONS(2321), + [aux_sym_preproc_def_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token2] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2321), + [sym_preproc_directive] = ACTIONS(2321), + [anon_sym_LPAREN2] = ACTIONS(2323), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_AMP_AMP] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_typedef] = ACTIONS(2321), + [anon_sym_virtual] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym___attribute__] = ACTIONS(2321), + [anon_sym___attribute] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2323), + [anon_sym___declspec] = ACTIONS(2321), + [anon_sym___based] = ACTIONS(2321), + [anon_sym_signed] = ACTIONS(2321), + [anon_sym_unsigned] = ACTIONS(2321), + [anon_sym_long] = ACTIONS(2321), + [anon_sym_short] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_register] = ACTIONS(2321), + [anon_sym_inline] = ACTIONS(2321), + [anon_sym___inline] = ACTIONS(2321), + [anon_sym___inline__] = ACTIONS(2321), + [anon_sym___forceinline] = ACTIONS(2321), + [anon_sym_thread_local] = ACTIONS(2321), + [anon_sym___thread] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym__Nonnull] = ACTIONS(2321), + [anon_sym_mutable] = ACTIONS(2321), + [anon_sym_constinit] = ACTIONS(2321), + [anon_sym_consteval] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2321), + [anon_sym__Alignas] = ACTIONS(2321), + [sym_primitive_type] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2321), + [anon_sym_decltype] = ACTIONS(2321), + [anon_sym_explicit] = ACTIONS(2321), + [anon_sym_typename] = ACTIONS(2321), + [anon_sym_template] = ACTIONS(2321), + [anon_sym_operator] = ACTIONS(2321), + [anon_sym_friend] = ACTIONS(2321), + [anon_sym_public] = ACTIONS(2321), + [anon_sym_private] = ACTIONS(2321), + [anon_sym_protected] = ACTIONS(2321), + [anon_sym_using] = ACTIONS(2321), + [anon_sym_static_assert] = ACTIONS(2321), + [sym_macro_statement] = ACTIONS(2321), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2321), + [anon_sym_MOZ_COLD] = ACTIONS(2321), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2321), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2321), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2321), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2321), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2321), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2321), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2321), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2321), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2321), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2321), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2321), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2321), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_RAII] = ACTIONS(2321), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2321), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2321), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2321), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2321), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2321), + }, + [STATE(1169)] = { + [sym_identifier] = ACTIONS(2345), + [aux_sym_preproc_def_token1] = ACTIONS(2345), + [aux_sym_preproc_if_token1] = ACTIONS(2345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2345), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2345), + [sym_preproc_directive] = ACTIONS(2345), + [anon_sym_LPAREN2] = ACTIONS(2347), + [anon_sym_TILDE] = ACTIONS(2347), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_AMP_AMP] = ACTIONS(2347), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2347), + [anon_sym___extension__] = ACTIONS(2345), + [anon_sym_typedef] = ACTIONS(2345), + [anon_sym_virtual] = ACTIONS(2345), + [anon_sym_extern] = ACTIONS(2345), + [anon_sym___attribute__] = ACTIONS(2345), + [anon_sym___attribute] = ACTIONS(2345), + [anon_sym_COLON_COLON] = ACTIONS(2347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2347), + [anon_sym___declspec] = ACTIONS(2345), + [anon_sym___based] = ACTIONS(2345), + [anon_sym_RBRACE] = ACTIONS(2347), + [anon_sym_signed] = ACTIONS(2345), + [anon_sym_unsigned] = ACTIONS(2345), + [anon_sym_long] = ACTIONS(2345), + [anon_sym_short] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(2345), + [anon_sym_static] = ACTIONS(2345), + [anon_sym_register] = ACTIONS(2345), + [anon_sym_inline] = ACTIONS(2345), + [anon_sym___inline] = ACTIONS(2345), + [anon_sym___inline__] = ACTIONS(2345), + [anon_sym___forceinline] = ACTIONS(2345), + [anon_sym_thread_local] = ACTIONS(2345), + [anon_sym___thread] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_constexpr] = ACTIONS(2345), + [anon_sym_volatile] = ACTIONS(2345), + [anon_sym_restrict] = ACTIONS(2345), + [anon_sym___restrict__] = ACTIONS(2345), + [anon_sym__Atomic] = ACTIONS(2345), + [anon_sym__Noreturn] = ACTIONS(2345), + [anon_sym_noreturn] = ACTIONS(2345), + [anon_sym__Nonnull] = ACTIONS(2345), + [anon_sym_mutable] = ACTIONS(2345), + [anon_sym_constinit] = ACTIONS(2345), + [anon_sym_consteval] = ACTIONS(2345), + [anon_sym_alignas] = ACTIONS(2345), + [anon_sym__Alignas] = ACTIONS(2345), + [sym_primitive_type] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_class] = ACTIONS(2345), + [anon_sym_struct] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2345), + [anon_sym_decltype] = ACTIONS(2345), + [anon_sym_explicit] = ACTIONS(2345), + [anon_sym_typename] = ACTIONS(2345), + [anon_sym_template] = ACTIONS(2345), + [anon_sym_operator] = ACTIONS(2345), + [anon_sym_friend] = ACTIONS(2345), + [anon_sym_public] = ACTIONS(2345), + [anon_sym_private] = ACTIONS(2345), + [anon_sym_protected] = ACTIONS(2345), + [anon_sym_using] = ACTIONS(2345), + [anon_sym_static_assert] = ACTIONS(2345), + [sym_macro_statement] = ACTIONS(2345), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2345), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2345), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2345), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2345), + [anon_sym_MOZ_COLD] = ACTIONS(2345), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2345), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2345), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2345), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2345), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2345), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2345), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2345), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2345), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2345), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2345), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2345), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2345), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2345), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_NONNULL] = ACTIONS(2345), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2345), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2345), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2345), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2345), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2345), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2345), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2345), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2345), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2345), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2345), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2345), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2345), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2345), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2345), + [anon_sym_MOZ_RAII] = ACTIONS(2345), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2345), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2345), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2345), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2345), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2345), + }, + [STATE(1170)] = { + [sym_identifier] = ACTIONS(2333), + [aux_sym_preproc_def_token1] = ACTIONS(2333), + [aux_sym_preproc_if_token1] = ACTIONS(2333), + [aux_sym_preproc_if_token2] = ACTIONS(2333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2333), + [sym_preproc_directive] = ACTIONS(2333), + [anon_sym_LPAREN2] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2333), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym___extension__] = ACTIONS(2333), + [anon_sym_typedef] = ACTIONS(2333), + [anon_sym_virtual] = ACTIONS(2333), + [anon_sym_extern] = ACTIONS(2333), + [anon_sym___attribute__] = ACTIONS(2333), + [anon_sym___attribute] = ACTIONS(2333), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), + [anon_sym___declspec] = ACTIONS(2333), + [anon_sym___based] = ACTIONS(2333), + [anon_sym_signed] = ACTIONS(2333), + [anon_sym_unsigned] = ACTIONS(2333), + [anon_sym_long] = ACTIONS(2333), + [anon_sym_short] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_register] = ACTIONS(2333), + [anon_sym_inline] = ACTIONS(2333), + [anon_sym___inline] = ACTIONS(2333), + [anon_sym___inline__] = ACTIONS(2333), + [anon_sym___forceinline] = ACTIONS(2333), + [anon_sym_thread_local] = ACTIONS(2333), + [anon_sym___thread] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [anon_sym_constexpr] = ACTIONS(2333), + [anon_sym_volatile] = ACTIONS(2333), + [anon_sym_restrict] = ACTIONS(2333), + [anon_sym___restrict__] = ACTIONS(2333), + [anon_sym__Atomic] = ACTIONS(2333), + [anon_sym__Noreturn] = ACTIONS(2333), + [anon_sym_noreturn] = ACTIONS(2333), + [anon_sym__Nonnull] = ACTIONS(2333), + [anon_sym_mutable] = ACTIONS(2333), + [anon_sym_constinit] = ACTIONS(2333), + [anon_sym_consteval] = ACTIONS(2333), + [anon_sym_alignas] = ACTIONS(2333), + [anon_sym__Alignas] = ACTIONS(2333), + [sym_primitive_type] = ACTIONS(2333), + [anon_sym_enum] = ACTIONS(2333), + [anon_sym_class] = ACTIONS(2333), + [anon_sym_struct] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(2333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2333), + [anon_sym_decltype] = ACTIONS(2333), + [anon_sym_explicit] = ACTIONS(2333), + [anon_sym_typename] = ACTIONS(2333), + [anon_sym_template] = ACTIONS(2333), + [anon_sym_operator] = ACTIONS(2333), + [anon_sym_friend] = ACTIONS(2333), + [anon_sym_public] = ACTIONS(2333), + [anon_sym_private] = ACTIONS(2333), + [anon_sym_protected] = ACTIONS(2333), + [anon_sym_using] = ACTIONS(2333), + [anon_sym_static_assert] = ACTIONS(2333), + [sym_macro_statement] = ACTIONS(2333), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2333), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2333), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2333), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2333), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2333), + [anon_sym_MOZ_COLD] = ACTIONS(2333), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2333), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2333), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2333), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2333), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2333), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2333), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2333), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2333), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2333), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2333), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2333), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2333), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2333), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2333), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2333), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2333), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_NONNULL] = ACTIONS(2333), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2333), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2333), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2333), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2333), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_NORETURN] = ACTIONS(2333), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2333), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2333), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2333), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2333), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2333), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2333), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2333), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2333), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2333), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2333), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2333), + [anon_sym_MOZ_RAII] = ACTIONS(2333), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2333), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2333), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2333), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2333), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2333), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2333), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2333), + }, + [STATE(1171)] = { + [sym_identifier] = ACTIONS(2349), + [aux_sym_preproc_def_token1] = ACTIONS(2349), + [aux_sym_preproc_if_token1] = ACTIONS(2349), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2349), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2349), + [sym_preproc_directive] = ACTIONS(2349), + [anon_sym_LPAREN2] = ACTIONS(2351), + [anon_sym_TILDE] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2351), + [anon_sym_AMP_AMP] = ACTIONS(2351), + [anon_sym_AMP] = ACTIONS(2349), + [anon_sym_SEMI] = ACTIONS(2351), + [anon_sym___extension__] = ACTIONS(2349), + [anon_sym_typedef] = ACTIONS(2349), + [anon_sym_virtual] = ACTIONS(2349), + [anon_sym_extern] = ACTIONS(2349), + [anon_sym___attribute__] = ACTIONS(2349), + [anon_sym___attribute] = ACTIONS(2349), + [anon_sym_COLON_COLON] = ACTIONS(2351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2351), + [anon_sym___declspec] = ACTIONS(2349), + [anon_sym___based] = ACTIONS(2349), + [anon_sym_RBRACE] = ACTIONS(2351), + [anon_sym_signed] = ACTIONS(2349), + [anon_sym_unsigned] = ACTIONS(2349), + [anon_sym_long] = ACTIONS(2349), + [anon_sym_short] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_static] = ACTIONS(2349), + [anon_sym_register] = ACTIONS(2349), + [anon_sym_inline] = ACTIONS(2349), + [anon_sym___inline] = ACTIONS(2349), + [anon_sym___inline__] = ACTIONS(2349), + [anon_sym___forceinline] = ACTIONS(2349), + [anon_sym_thread_local] = ACTIONS(2349), + [anon_sym___thread] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [anon_sym_constexpr] = ACTIONS(2349), + [anon_sym_volatile] = ACTIONS(2349), + [anon_sym_restrict] = ACTIONS(2349), + [anon_sym___restrict__] = ACTIONS(2349), + [anon_sym__Atomic] = ACTIONS(2349), + [anon_sym__Noreturn] = ACTIONS(2349), + [anon_sym_noreturn] = ACTIONS(2349), + [anon_sym__Nonnull] = ACTIONS(2349), + [anon_sym_mutable] = ACTIONS(2349), + [anon_sym_constinit] = ACTIONS(2349), + [anon_sym_consteval] = ACTIONS(2349), + [anon_sym_alignas] = ACTIONS(2349), + [anon_sym__Alignas] = ACTIONS(2349), + [sym_primitive_type] = ACTIONS(2349), + [anon_sym_enum] = ACTIONS(2349), + [anon_sym_class] = ACTIONS(2349), + [anon_sym_struct] = ACTIONS(2349), + [anon_sym_union] = ACTIONS(2349), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2349), + [anon_sym_decltype] = ACTIONS(2349), + [anon_sym_explicit] = ACTIONS(2349), + [anon_sym_typename] = ACTIONS(2349), + [anon_sym_template] = ACTIONS(2349), + [anon_sym_operator] = ACTIONS(2349), + [anon_sym_friend] = ACTIONS(2349), + [anon_sym_public] = ACTIONS(2349), + [anon_sym_private] = ACTIONS(2349), + [anon_sym_protected] = ACTIONS(2349), + [anon_sym_using] = ACTIONS(2349), + [anon_sym_static_assert] = ACTIONS(2349), + [sym_macro_statement] = ACTIONS(2349), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2349), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2349), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2349), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2349), + [anon_sym_MOZ_COLD] = ACTIONS(2349), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2349), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2349), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2349), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2349), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2349), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2349), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2349), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2349), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2349), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2349), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2349), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2349), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2349), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_NONNULL] = ACTIONS(2349), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2349), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2349), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2349), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2349), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2349), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2349), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2349), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2349), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2349), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2349), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2349), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2349), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2349), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2349), + [anon_sym_MOZ_RAII] = ACTIONS(2349), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2349), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2349), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2349), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2349), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2349), + }, + [STATE(1172)] = { + [sym_identifier] = ACTIONS(2353), + [aux_sym_preproc_def_token1] = ACTIONS(2353), + [aux_sym_preproc_if_token1] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2353), + [sym_preproc_directive] = ACTIONS(2353), + [anon_sym_LPAREN2] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym___extension__] = ACTIONS(2353), + [anon_sym_typedef] = ACTIONS(2353), + [anon_sym_virtual] = ACTIONS(2353), + [anon_sym_extern] = ACTIONS(2353), + [anon_sym___attribute__] = ACTIONS(2353), + [anon_sym___attribute] = ACTIONS(2353), + [anon_sym_COLON_COLON] = ACTIONS(2355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2355), + [anon_sym___declspec] = ACTIONS(2353), + [anon_sym___based] = ACTIONS(2353), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2353), + [anon_sym_unsigned] = ACTIONS(2353), + [anon_sym_long] = ACTIONS(2353), + [anon_sym_short] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_register] = ACTIONS(2353), + [anon_sym_inline] = ACTIONS(2353), + [anon_sym___inline] = ACTIONS(2353), + [anon_sym___inline__] = ACTIONS(2353), + [anon_sym___forceinline] = ACTIONS(2353), + [anon_sym_thread_local] = ACTIONS(2353), + [anon_sym___thread] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_constexpr] = ACTIONS(2353), + [anon_sym_volatile] = ACTIONS(2353), + [anon_sym_restrict] = ACTIONS(2353), + [anon_sym___restrict__] = ACTIONS(2353), + [anon_sym__Atomic] = ACTIONS(2353), + [anon_sym__Noreturn] = ACTIONS(2353), + [anon_sym_noreturn] = ACTIONS(2353), + [anon_sym__Nonnull] = ACTIONS(2353), + [anon_sym_mutable] = ACTIONS(2353), + [anon_sym_constinit] = ACTIONS(2353), + [anon_sym_consteval] = ACTIONS(2353), + [anon_sym_alignas] = ACTIONS(2353), + [anon_sym__Alignas] = ACTIONS(2353), + [sym_primitive_type] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_class] = ACTIONS(2353), + [anon_sym_struct] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2353), + [anon_sym_decltype] = ACTIONS(2353), + [anon_sym_explicit] = ACTIONS(2353), + [anon_sym_typename] = ACTIONS(2353), + [anon_sym_template] = ACTIONS(2353), + [anon_sym_operator] = ACTIONS(2353), + [anon_sym_friend] = ACTIONS(2353), + [anon_sym_public] = ACTIONS(2353), + [anon_sym_private] = ACTIONS(2353), + [anon_sym_protected] = ACTIONS(2353), + [anon_sym_using] = ACTIONS(2353), + [anon_sym_static_assert] = ACTIONS(2353), + [sym_macro_statement] = ACTIONS(2353), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2353), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2353), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2353), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2353), + [anon_sym_MOZ_COLD] = ACTIONS(2353), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2353), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2353), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2353), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2353), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2353), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2353), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2353), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2353), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2353), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2353), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2353), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2353), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2353), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_NONNULL] = ACTIONS(2353), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2353), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2353), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2353), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2353), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2353), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2353), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2353), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2353), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2353), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2353), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2353), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2353), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2353), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2353), + [anon_sym_MOZ_RAII] = ACTIONS(2353), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2353), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2353), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2353), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2353), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2353), + }, + [STATE(1173)] = { + [sym_identifier] = ACTIONS(2337), + [aux_sym_preproc_def_token1] = ACTIONS(2337), + [aux_sym_preproc_if_token1] = ACTIONS(2337), + [aux_sym_preproc_if_token2] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), + [sym_preproc_directive] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2339), + [anon_sym_TILDE] = ACTIONS(2339), + [anon_sym_STAR] = ACTIONS(2339), + [anon_sym_AMP_AMP] = ACTIONS(2339), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym___extension__] = ACTIONS(2337), + [anon_sym_typedef] = ACTIONS(2337), + [anon_sym_virtual] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym___attribute__] = ACTIONS(2337), + [anon_sym___attribute] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2339), + [anon_sym___declspec] = ACTIONS(2337), + [anon_sym___based] = ACTIONS(2337), + [anon_sym_signed] = ACTIONS(2337), + [anon_sym_unsigned] = ACTIONS(2337), + [anon_sym_long] = ACTIONS(2337), + [anon_sym_short] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_inline] = ACTIONS(2337), + [anon_sym___inline] = ACTIONS(2337), + [anon_sym___inline__] = ACTIONS(2337), + [anon_sym___forceinline] = ACTIONS(2337), + [anon_sym_thread_local] = ACTIONS(2337), + [anon_sym___thread] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_constexpr] = ACTIONS(2337), + [anon_sym_volatile] = ACTIONS(2337), + [anon_sym_restrict] = ACTIONS(2337), + [anon_sym___restrict__] = ACTIONS(2337), + [anon_sym__Atomic] = ACTIONS(2337), + [anon_sym__Noreturn] = ACTIONS(2337), + [anon_sym_noreturn] = ACTIONS(2337), + [anon_sym__Nonnull] = ACTIONS(2337), + [anon_sym_mutable] = ACTIONS(2337), + [anon_sym_constinit] = ACTIONS(2337), + [anon_sym_consteval] = ACTIONS(2337), + [anon_sym_alignas] = ACTIONS(2337), + [anon_sym__Alignas] = ACTIONS(2337), + [sym_primitive_type] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2337), + [anon_sym_decltype] = ACTIONS(2337), + [anon_sym_explicit] = ACTIONS(2337), + [anon_sym_typename] = ACTIONS(2337), + [anon_sym_template] = ACTIONS(2337), + [anon_sym_operator] = ACTIONS(2337), + [anon_sym_friend] = ACTIONS(2337), + [anon_sym_public] = ACTIONS(2337), + [anon_sym_private] = ACTIONS(2337), + [anon_sym_protected] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [anon_sym_static_assert] = ACTIONS(2337), + [sym_macro_statement] = ACTIONS(2337), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2337), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2337), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2337), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2337), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2337), + [anon_sym_MOZ_COLD] = ACTIONS(2337), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2337), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2337), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2337), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2337), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2337), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2337), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2337), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2337), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2337), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2337), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2337), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2337), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2337), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2337), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2337), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2337), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_NONNULL] = ACTIONS(2337), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2337), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2337), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2337), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2337), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_NORETURN] = ACTIONS(2337), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2337), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2337), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2337), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2337), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2337), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2337), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2337), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2337), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2337), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2337), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2337), + [anon_sym_MOZ_RAII] = ACTIONS(2337), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2337), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2337), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2337), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2337), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2337), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2337), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2337), + }, + [STATE(1174)] = { + [sym_identifier] = ACTIONS(2341), + [aux_sym_preproc_def_token1] = ACTIONS(2341), + [aux_sym_preproc_if_token1] = ACTIONS(2341), + [aux_sym_preproc_if_token2] = ACTIONS(2341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2341), + [sym_preproc_directive] = ACTIONS(2341), + [anon_sym_LPAREN2] = ACTIONS(2343), + [anon_sym_TILDE] = ACTIONS(2343), + [anon_sym_STAR] = ACTIONS(2343), + [anon_sym_AMP_AMP] = ACTIONS(2343), + [anon_sym_AMP] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2343), + [anon_sym___extension__] = ACTIONS(2341), + [anon_sym_typedef] = ACTIONS(2341), + [anon_sym_virtual] = ACTIONS(2341), + [anon_sym_extern] = ACTIONS(2341), + [anon_sym___attribute__] = ACTIONS(2341), + [anon_sym___attribute] = ACTIONS(2341), + [anon_sym_COLON_COLON] = ACTIONS(2343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2343), + [anon_sym___declspec] = ACTIONS(2341), + [anon_sym___based] = ACTIONS(2341), + [anon_sym_signed] = ACTIONS(2341), + [anon_sym_unsigned] = ACTIONS(2341), + [anon_sym_long] = ACTIONS(2341), + [anon_sym_short] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2341), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_register] = ACTIONS(2341), + [anon_sym_inline] = ACTIONS(2341), + [anon_sym___inline] = ACTIONS(2341), + [anon_sym___inline__] = ACTIONS(2341), + [anon_sym___forceinline] = ACTIONS(2341), + [anon_sym_thread_local] = ACTIONS(2341), + [anon_sym___thread] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_constexpr] = ACTIONS(2341), + [anon_sym_volatile] = ACTIONS(2341), + [anon_sym_restrict] = ACTIONS(2341), + [anon_sym___restrict__] = ACTIONS(2341), + [anon_sym__Atomic] = ACTIONS(2341), + [anon_sym__Noreturn] = ACTIONS(2341), + [anon_sym_noreturn] = ACTIONS(2341), + [anon_sym__Nonnull] = ACTIONS(2341), + [anon_sym_mutable] = ACTIONS(2341), + [anon_sym_constinit] = ACTIONS(2341), + [anon_sym_consteval] = ACTIONS(2341), + [anon_sym_alignas] = ACTIONS(2341), + [anon_sym__Alignas] = ACTIONS(2341), + [sym_primitive_type] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_class] = ACTIONS(2341), + [anon_sym_struct] = ACTIONS(2341), + [anon_sym_union] = ACTIONS(2341), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2341), + [anon_sym_decltype] = ACTIONS(2341), + [anon_sym_explicit] = ACTIONS(2341), + [anon_sym_typename] = ACTIONS(2341), + [anon_sym_template] = ACTIONS(2341), + [anon_sym_operator] = ACTIONS(2341), + [anon_sym_friend] = ACTIONS(2341), + [anon_sym_public] = ACTIONS(2341), + [anon_sym_private] = ACTIONS(2341), + [anon_sym_protected] = ACTIONS(2341), + [anon_sym_using] = ACTIONS(2341), + [anon_sym_static_assert] = ACTIONS(2341), + [sym_macro_statement] = ACTIONS(2341), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2341), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2341), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2341), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2341), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2341), + [anon_sym_MOZ_COLD] = ACTIONS(2341), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2341), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2341), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2341), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2341), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2341), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2341), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2341), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2341), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2341), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2341), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2341), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2341), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2341), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2341), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2341), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2341), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_NONNULL] = ACTIONS(2341), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2341), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2341), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2341), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2341), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_NORETURN] = ACTIONS(2341), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2341), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2341), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2341), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2341), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2341), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2341), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2341), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2341), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2341), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2341), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2341), + [anon_sym_MOZ_RAII] = ACTIONS(2341), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2341), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2341), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2341), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2341), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2341), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2341), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2341), + }, + [STATE(1175)] = { + [sym_identifier] = ACTIONS(2345), + [aux_sym_preproc_def_token1] = ACTIONS(2345), + [aux_sym_preproc_if_token1] = ACTIONS(2345), + [aux_sym_preproc_if_token2] = ACTIONS(2345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2345), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2345), + [sym_preproc_directive] = ACTIONS(2345), + [anon_sym_LPAREN2] = ACTIONS(2347), + [anon_sym_TILDE] = ACTIONS(2347), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_AMP_AMP] = ACTIONS(2347), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2347), + [anon_sym___extension__] = ACTIONS(2345), + [anon_sym_typedef] = ACTIONS(2345), + [anon_sym_virtual] = ACTIONS(2345), + [anon_sym_extern] = ACTIONS(2345), + [anon_sym___attribute__] = ACTIONS(2345), + [anon_sym___attribute] = ACTIONS(2345), + [anon_sym_COLON_COLON] = ACTIONS(2347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2347), + [anon_sym___declspec] = ACTIONS(2345), + [anon_sym___based] = ACTIONS(2345), + [anon_sym_signed] = ACTIONS(2345), + [anon_sym_unsigned] = ACTIONS(2345), + [anon_sym_long] = ACTIONS(2345), + [anon_sym_short] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(2345), + [anon_sym_static] = ACTIONS(2345), + [anon_sym_register] = ACTIONS(2345), + [anon_sym_inline] = ACTIONS(2345), + [anon_sym___inline] = ACTIONS(2345), + [anon_sym___inline__] = ACTIONS(2345), + [anon_sym___forceinline] = ACTIONS(2345), + [anon_sym_thread_local] = ACTIONS(2345), + [anon_sym___thread] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_constexpr] = ACTIONS(2345), + [anon_sym_volatile] = ACTIONS(2345), + [anon_sym_restrict] = ACTIONS(2345), + [anon_sym___restrict__] = ACTIONS(2345), + [anon_sym__Atomic] = ACTIONS(2345), + [anon_sym__Noreturn] = ACTIONS(2345), + [anon_sym_noreturn] = ACTIONS(2345), + [anon_sym__Nonnull] = ACTIONS(2345), + [anon_sym_mutable] = ACTIONS(2345), + [anon_sym_constinit] = ACTIONS(2345), + [anon_sym_consteval] = ACTIONS(2345), + [anon_sym_alignas] = ACTIONS(2345), + [anon_sym__Alignas] = ACTIONS(2345), + [sym_primitive_type] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_class] = ACTIONS(2345), + [anon_sym_struct] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2345), + [anon_sym_decltype] = ACTIONS(2345), + [anon_sym_explicit] = ACTIONS(2345), + [anon_sym_typename] = ACTIONS(2345), + [anon_sym_template] = ACTIONS(2345), + [anon_sym_operator] = ACTIONS(2345), + [anon_sym_friend] = ACTIONS(2345), + [anon_sym_public] = ACTIONS(2345), + [anon_sym_private] = ACTIONS(2345), + [anon_sym_protected] = ACTIONS(2345), + [anon_sym_using] = ACTIONS(2345), + [anon_sym_static_assert] = ACTIONS(2345), + [sym_macro_statement] = ACTIONS(2345), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2345), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2345), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2345), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2345), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2345), + [anon_sym_MOZ_COLD] = ACTIONS(2345), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2345), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2345), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2345), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2345), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2345), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2345), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2345), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2345), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2345), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2345), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2345), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2345), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2345), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2345), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2345), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2345), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_NONNULL] = ACTIONS(2345), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2345), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2345), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2345), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2345), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_NORETURN] = ACTIONS(2345), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2345), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2345), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2345), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2345), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2345), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2345), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2345), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2345), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2345), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2345), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2345), + [anon_sym_MOZ_RAII] = ACTIONS(2345), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2345), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2345), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2345), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2345), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2345), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2345), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2345), + }, + [STATE(1176)] = { + [sym_identifier] = ACTIONS(2349), + [aux_sym_preproc_def_token1] = ACTIONS(2349), + [aux_sym_preproc_if_token1] = ACTIONS(2349), + [aux_sym_preproc_if_token2] = ACTIONS(2349), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2349), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2349), + [sym_preproc_directive] = ACTIONS(2349), + [anon_sym_LPAREN2] = ACTIONS(2351), + [anon_sym_TILDE] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2351), + [anon_sym_AMP_AMP] = ACTIONS(2351), + [anon_sym_AMP] = ACTIONS(2349), + [anon_sym_SEMI] = ACTIONS(2351), + [anon_sym___extension__] = ACTIONS(2349), + [anon_sym_typedef] = ACTIONS(2349), + [anon_sym_virtual] = ACTIONS(2349), + [anon_sym_extern] = ACTIONS(2349), + [anon_sym___attribute__] = ACTIONS(2349), + [anon_sym___attribute] = ACTIONS(2349), + [anon_sym_COLON_COLON] = ACTIONS(2351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2351), + [anon_sym___declspec] = ACTIONS(2349), + [anon_sym___based] = ACTIONS(2349), + [anon_sym_signed] = ACTIONS(2349), + [anon_sym_unsigned] = ACTIONS(2349), + [anon_sym_long] = ACTIONS(2349), + [anon_sym_short] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_static] = ACTIONS(2349), + [anon_sym_register] = ACTIONS(2349), + [anon_sym_inline] = ACTIONS(2349), + [anon_sym___inline] = ACTIONS(2349), + [anon_sym___inline__] = ACTIONS(2349), + [anon_sym___forceinline] = ACTIONS(2349), + [anon_sym_thread_local] = ACTIONS(2349), + [anon_sym___thread] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [anon_sym_constexpr] = ACTIONS(2349), + [anon_sym_volatile] = ACTIONS(2349), + [anon_sym_restrict] = ACTIONS(2349), + [anon_sym___restrict__] = ACTIONS(2349), + [anon_sym__Atomic] = ACTIONS(2349), + [anon_sym__Noreturn] = ACTIONS(2349), + [anon_sym_noreturn] = ACTIONS(2349), + [anon_sym__Nonnull] = ACTIONS(2349), + [anon_sym_mutable] = ACTIONS(2349), + [anon_sym_constinit] = ACTIONS(2349), + [anon_sym_consteval] = ACTIONS(2349), + [anon_sym_alignas] = ACTIONS(2349), + [anon_sym__Alignas] = ACTIONS(2349), + [sym_primitive_type] = ACTIONS(2349), + [anon_sym_enum] = ACTIONS(2349), + [anon_sym_class] = ACTIONS(2349), + [anon_sym_struct] = ACTIONS(2349), + [anon_sym_union] = ACTIONS(2349), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2349), + [anon_sym_decltype] = ACTIONS(2349), + [anon_sym_explicit] = ACTIONS(2349), + [anon_sym_typename] = ACTIONS(2349), + [anon_sym_template] = ACTIONS(2349), + [anon_sym_operator] = ACTIONS(2349), + [anon_sym_friend] = ACTIONS(2349), + [anon_sym_public] = ACTIONS(2349), + [anon_sym_private] = ACTIONS(2349), + [anon_sym_protected] = ACTIONS(2349), + [anon_sym_using] = ACTIONS(2349), + [anon_sym_static_assert] = ACTIONS(2349), + [sym_macro_statement] = ACTIONS(2349), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2349), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2349), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2349), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2349), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2349), + [anon_sym_MOZ_COLD] = ACTIONS(2349), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2349), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2349), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2349), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2349), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2349), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2349), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2349), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2349), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2349), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2349), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2349), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2349), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2349), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2349), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2349), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2349), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_NONNULL] = ACTIONS(2349), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2349), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2349), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2349), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2349), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_NORETURN] = ACTIONS(2349), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2349), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2349), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2349), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2349), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2349), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2349), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2349), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2349), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2349), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2349), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2349), + [anon_sym_MOZ_RAII] = ACTIONS(2349), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2349), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2349), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2349), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2349), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2349), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2349), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2349), + }, + [STATE(1177)] = { + [sym_identifier] = ACTIONS(2353), + [aux_sym_preproc_def_token1] = ACTIONS(2353), + [aux_sym_preproc_if_token1] = ACTIONS(2353), + [aux_sym_preproc_if_token2] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2353), + [sym_preproc_directive] = ACTIONS(2353), + [anon_sym_LPAREN2] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym___extension__] = ACTIONS(2353), + [anon_sym_typedef] = ACTIONS(2353), + [anon_sym_virtual] = ACTIONS(2353), + [anon_sym_extern] = ACTIONS(2353), + [anon_sym___attribute__] = ACTIONS(2353), + [anon_sym___attribute] = ACTIONS(2353), + [anon_sym_COLON_COLON] = ACTIONS(2355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2355), + [anon_sym___declspec] = ACTIONS(2353), + [anon_sym___based] = ACTIONS(2353), + [anon_sym_signed] = ACTIONS(2353), + [anon_sym_unsigned] = ACTIONS(2353), + [anon_sym_long] = ACTIONS(2353), + [anon_sym_short] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_register] = ACTIONS(2353), + [anon_sym_inline] = ACTIONS(2353), + [anon_sym___inline] = ACTIONS(2353), + [anon_sym___inline__] = ACTIONS(2353), + [anon_sym___forceinline] = ACTIONS(2353), + [anon_sym_thread_local] = ACTIONS(2353), + [anon_sym___thread] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_constexpr] = ACTIONS(2353), + [anon_sym_volatile] = ACTIONS(2353), + [anon_sym_restrict] = ACTIONS(2353), + [anon_sym___restrict__] = ACTIONS(2353), + [anon_sym__Atomic] = ACTIONS(2353), + [anon_sym__Noreturn] = ACTIONS(2353), + [anon_sym_noreturn] = ACTIONS(2353), + [anon_sym__Nonnull] = ACTIONS(2353), + [anon_sym_mutable] = ACTIONS(2353), + [anon_sym_constinit] = ACTIONS(2353), + [anon_sym_consteval] = ACTIONS(2353), + [anon_sym_alignas] = ACTIONS(2353), + [anon_sym__Alignas] = ACTIONS(2353), + [sym_primitive_type] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_class] = ACTIONS(2353), + [anon_sym_struct] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2353), + [anon_sym_decltype] = ACTIONS(2353), + [anon_sym_explicit] = ACTIONS(2353), + [anon_sym_typename] = ACTIONS(2353), + [anon_sym_template] = ACTIONS(2353), + [anon_sym_operator] = ACTIONS(2353), + [anon_sym_friend] = ACTIONS(2353), + [anon_sym_public] = ACTIONS(2353), + [anon_sym_private] = ACTIONS(2353), + [anon_sym_protected] = ACTIONS(2353), + [anon_sym_using] = ACTIONS(2353), + [anon_sym_static_assert] = ACTIONS(2353), + [sym_macro_statement] = ACTIONS(2353), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2353), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2353), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2353), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2353), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2353), + [anon_sym_MOZ_COLD] = ACTIONS(2353), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2353), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2353), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2353), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2353), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2353), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2353), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2353), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2353), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2353), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2353), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2353), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2353), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2353), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2353), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2353), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2353), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_NONNULL] = ACTIONS(2353), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2353), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2353), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2353), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2353), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_NORETURN] = ACTIONS(2353), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2353), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2353), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2353), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2353), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2353), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2353), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2353), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2353), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2353), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2353), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2353), + [anon_sym_MOZ_RAII] = ACTIONS(2353), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2353), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2353), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2353), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2353), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2353), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2353), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2353), + }, + [STATE(1178)] = { + [sym_identifier] = ACTIONS(2357), + [aux_sym_preproc_def_token1] = ACTIONS(2357), + [aux_sym_preproc_if_token1] = ACTIONS(2357), + [aux_sym_preproc_if_token2] = ACTIONS(2357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2357), + [sym_preproc_directive] = ACTIONS(2357), + [anon_sym_LPAREN2] = ACTIONS(2359), + [anon_sym_TILDE] = ACTIONS(2359), + [anon_sym_STAR] = ACTIONS(2359), + [anon_sym_AMP_AMP] = ACTIONS(2359), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2359), + [anon_sym___extension__] = ACTIONS(2357), + [anon_sym_typedef] = ACTIONS(2357), + [anon_sym_virtual] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2357), + [anon_sym___attribute__] = ACTIONS(2357), + [anon_sym___attribute] = ACTIONS(2357), + [anon_sym_COLON_COLON] = ACTIONS(2359), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2359), + [anon_sym___declspec] = ACTIONS(2357), + [anon_sym___based] = ACTIONS(2357), + [anon_sym_signed] = ACTIONS(2357), + [anon_sym_unsigned] = ACTIONS(2357), + [anon_sym_long] = ACTIONS(2357), + [anon_sym_short] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_register] = ACTIONS(2357), + [anon_sym_inline] = ACTIONS(2357), + [anon_sym___inline] = ACTIONS(2357), + [anon_sym___inline__] = ACTIONS(2357), + [anon_sym___forceinline] = ACTIONS(2357), + [anon_sym_thread_local] = ACTIONS(2357), + [anon_sym___thread] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_constexpr] = ACTIONS(2357), + [anon_sym_volatile] = ACTIONS(2357), + [anon_sym_restrict] = ACTIONS(2357), + [anon_sym___restrict__] = ACTIONS(2357), + [anon_sym__Atomic] = ACTIONS(2357), + [anon_sym__Noreturn] = ACTIONS(2357), + [anon_sym_noreturn] = ACTIONS(2357), + [anon_sym__Nonnull] = ACTIONS(2357), + [anon_sym_mutable] = ACTIONS(2357), + [anon_sym_constinit] = ACTIONS(2357), + [anon_sym_consteval] = ACTIONS(2357), + [anon_sym_alignas] = ACTIONS(2357), + [anon_sym__Alignas] = ACTIONS(2357), + [sym_primitive_type] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_class] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2357), + [anon_sym_decltype] = ACTIONS(2357), + [anon_sym_explicit] = ACTIONS(2357), + [anon_sym_typename] = ACTIONS(2357), + [anon_sym_template] = ACTIONS(2357), + [anon_sym_operator] = ACTIONS(2357), + [anon_sym_friend] = ACTIONS(2357), + [anon_sym_public] = ACTIONS(2357), + [anon_sym_private] = ACTIONS(2357), + [anon_sym_protected] = ACTIONS(2357), + [anon_sym_using] = ACTIONS(2357), + [anon_sym_static_assert] = ACTIONS(2357), + [sym_macro_statement] = ACTIONS(2357), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2357), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2357), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2357), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2357), + [anon_sym_MOZ_COLD] = ACTIONS(2357), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2357), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2357), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2357), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2357), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2357), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2357), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2357), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2357), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2357), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2357), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2357), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2357), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2357), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_NONNULL] = ACTIONS(2357), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2357), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2357), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2357), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2357), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2357), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2357), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2357), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2357), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2357), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2357), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2357), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2357), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2357), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2357), + [anon_sym_MOZ_RAII] = ACTIONS(2357), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2357), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2357), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2357), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2357), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2357), + }, + [STATE(1179)] = { + [sym_identifier] = ACTIONS(2357), + [aux_sym_preproc_def_token1] = ACTIONS(2357), + [aux_sym_preproc_if_token1] = ACTIONS(2357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2357), + [sym_preproc_directive] = ACTIONS(2357), + [anon_sym_LPAREN2] = ACTIONS(2359), + [anon_sym_TILDE] = ACTIONS(2359), + [anon_sym_STAR] = ACTIONS(2359), + [anon_sym_AMP_AMP] = ACTIONS(2359), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2359), + [anon_sym___extension__] = ACTIONS(2357), + [anon_sym_typedef] = ACTIONS(2357), + [anon_sym_virtual] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2357), + [anon_sym___attribute__] = ACTIONS(2357), + [anon_sym___attribute] = ACTIONS(2357), + [anon_sym_COLON_COLON] = ACTIONS(2359), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2359), + [anon_sym___declspec] = ACTIONS(2357), + [anon_sym___based] = ACTIONS(2357), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_signed] = ACTIONS(2357), + [anon_sym_unsigned] = ACTIONS(2357), + [anon_sym_long] = ACTIONS(2357), + [anon_sym_short] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_register] = ACTIONS(2357), + [anon_sym_inline] = ACTIONS(2357), + [anon_sym___inline] = ACTIONS(2357), + [anon_sym___inline__] = ACTIONS(2357), + [anon_sym___forceinline] = ACTIONS(2357), + [anon_sym_thread_local] = ACTIONS(2357), + [anon_sym___thread] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_constexpr] = ACTIONS(2357), + [anon_sym_volatile] = ACTIONS(2357), + [anon_sym_restrict] = ACTIONS(2357), + [anon_sym___restrict__] = ACTIONS(2357), + [anon_sym__Atomic] = ACTIONS(2357), + [anon_sym__Noreturn] = ACTIONS(2357), + [anon_sym_noreturn] = ACTIONS(2357), + [anon_sym__Nonnull] = ACTIONS(2357), + [anon_sym_mutable] = ACTIONS(2357), + [anon_sym_constinit] = ACTIONS(2357), + [anon_sym_consteval] = ACTIONS(2357), + [anon_sym_alignas] = ACTIONS(2357), + [anon_sym__Alignas] = ACTIONS(2357), + [sym_primitive_type] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_class] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2357), + [anon_sym_decltype] = ACTIONS(2357), + [anon_sym_explicit] = ACTIONS(2357), + [anon_sym_typename] = ACTIONS(2357), + [anon_sym_template] = ACTIONS(2357), + [anon_sym_operator] = ACTIONS(2357), + [anon_sym_friend] = ACTIONS(2357), + [anon_sym_public] = ACTIONS(2357), + [anon_sym_private] = ACTIONS(2357), + [anon_sym_protected] = ACTIONS(2357), + [anon_sym_using] = ACTIONS(2357), + [anon_sym_static_assert] = ACTIONS(2357), + [sym_macro_statement] = ACTIONS(2357), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2357), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2357), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2357), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2357), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2357), + [anon_sym_MOZ_COLD] = ACTIONS(2357), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2357), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2357), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2357), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2357), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2357), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2357), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2357), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2357), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2357), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2357), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2357), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2357), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2357), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2357), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2357), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2357), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_NONNULL] = ACTIONS(2357), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2357), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2357), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2357), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2357), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_NORETURN] = ACTIONS(2357), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2357), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2357), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2357), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2357), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2357), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2357), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2357), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2357), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2357), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2357), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2357), + [anon_sym_MOZ_RAII] = ACTIONS(2357), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2357), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2357), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2357), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2357), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2357), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2357), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2357), + }, + [STATE(1180)] = { + [sym_identifier] = ACTIONS(2317), + [aux_sym_preproc_def_token1] = ACTIONS(2317), + [aux_sym_preproc_if_token1] = ACTIONS(2317), + [aux_sym_preproc_if_token2] = ACTIONS(2317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2317), + [sym_preproc_directive] = ACTIONS(2317), + [anon_sym_LPAREN2] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_typedef] = ACTIONS(2317), + [anon_sym_virtual] = ACTIONS(2317), + [anon_sym_extern] = ACTIONS(2317), + [anon_sym___attribute__] = ACTIONS(2317), + [anon_sym___attribute] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2319), + [anon_sym___declspec] = ACTIONS(2317), + [anon_sym___based] = ACTIONS(2317), + [anon_sym_signed] = ACTIONS(2317), + [anon_sym_unsigned] = ACTIONS(2317), + [anon_sym_long] = ACTIONS(2317), + [anon_sym_short] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_register] = ACTIONS(2317), + [anon_sym_inline] = ACTIONS(2317), + [anon_sym___inline] = ACTIONS(2317), + [anon_sym___inline__] = ACTIONS(2317), + [anon_sym___forceinline] = ACTIONS(2317), + [anon_sym_thread_local] = ACTIONS(2317), + [anon_sym___thread] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_constexpr] = ACTIONS(2317), + [anon_sym_volatile] = ACTIONS(2317), + [anon_sym_restrict] = ACTIONS(2317), + [anon_sym___restrict__] = ACTIONS(2317), + [anon_sym__Atomic] = ACTIONS(2317), + [anon_sym__Noreturn] = ACTIONS(2317), + [anon_sym_noreturn] = ACTIONS(2317), + [anon_sym__Nonnull] = ACTIONS(2317), + [anon_sym_mutable] = ACTIONS(2317), + [anon_sym_constinit] = ACTIONS(2317), + [anon_sym_consteval] = ACTIONS(2317), + [anon_sym_alignas] = ACTIONS(2317), + [anon_sym__Alignas] = ACTIONS(2317), + [sym_primitive_type] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_struct] = ACTIONS(2317), + [anon_sym_union] = ACTIONS(2317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2317), + [anon_sym_decltype] = ACTIONS(2317), + [anon_sym_explicit] = ACTIONS(2317), + [anon_sym_typename] = ACTIONS(2317), + [anon_sym_template] = ACTIONS(2317), + [anon_sym_operator] = ACTIONS(2317), + [anon_sym_friend] = ACTIONS(2317), + [anon_sym_public] = ACTIONS(2317), + [anon_sym_private] = ACTIONS(2317), + [anon_sym_protected] = ACTIONS(2317), + [anon_sym_using] = ACTIONS(2317), + [anon_sym_static_assert] = ACTIONS(2317), + [sym_macro_statement] = ACTIONS(2317), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2317), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2317), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2317), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2317), + [anon_sym_MOZ_COLD] = ACTIONS(2317), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2317), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2317), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2317), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2317), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2317), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2317), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2317), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2317), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2317), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2317), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2317), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2317), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2317), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_NONNULL] = ACTIONS(2317), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2317), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2317), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2317), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2317), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2317), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2317), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2317), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2317), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2317), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2317), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2317), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2317), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2317), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2317), + [anon_sym_MOZ_RAII] = ACTIONS(2317), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2317), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2317), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2317), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2317), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2317), + }, + [STATE(1181)] = { + [sym_identifier] = ACTIONS(2325), + [aux_sym_preproc_def_token1] = ACTIONS(2325), + [aux_sym_preproc_if_token1] = ACTIONS(2325), + [aux_sym_preproc_if_token2] = ACTIONS(2325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2325), + [sym_preproc_directive] = ACTIONS(2325), + [anon_sym_LPAREN2] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2327), + [anon_sym_AMP_AMP] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym___extension__] = ACTIONS(2325), + [anon_sym_typedef] = ACTIONS(2325), + [anon_sym_virtual] = ACTIONS(2325), + [anon_sym_extern] = ACTIONS(2325), + [anon_sym___attribute__] = ACTIONS(2325), + [anon_sym___attribute] = ACTIONS(2325), + [anon_sym_COLON_COLON] = ACTIONS(2327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), + [anon_sym___declspec] = ACTIONS(2325), + [anon_sym___based] = ACTIONS(2325), + [anon_sym_signed] = ACTIONS(2325), + [anon_sym_unsigned] = ACTIONS(2325), + [anon_sym_long] = ACTIONS(2325), + [anon_sym_short] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_static] = ACTIONS(2325), + [anon_sym_register] = ACTIONS(2325), + [anon_sym_inline] = ACTIONS(2325), + [anon_sym___inline] = ACTIONS(2325), + [anon_sym___inline__] = ACTIONS(2325), + [anon_sym___forceinline] = ACTIONS(2325), + [anon_sym_thread_local] = ACTIONS(2325), + [anon_sym___thread] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_constexpr] = ACTIONS(2325), + [anon_sym_volatile] = ACTIONS(2325), + [anon_sym_restrict] = ACTIONS(2325), + [anon_sym___restrict__] = ACTIONS(2325), + [anon_sym__Atomic] = ACTIONS(2325), + [anon_sym__Noreturn] = ACTIONS(2325), + [anon_sym_noreturn] = ACTIONS(2325), + [anon_sym__Nonnull] = ACTIONS(2325), + [anon_sym_mutable] = ACTIONS(2325), + [anon_sym_constinit] = ACTIONS(2325), + [anon_sym_consteval] = ACTIONS(2325), + [anon_sym_alignas] = ACTIONS(2325), + [anon_sym__Alignas] = ACTIONS(2325), + [sym_primitive_type] = ACTIONS(2325), + [anon_sym_enum] = ACTIONS(2325), + [anon_sym_class] = ACTIONS(2325), + [anon_sym_struct] = ACTIONS(2325), + [anon_sym_union] = ACTIONS(2325), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2325), + [anon_sym_decltype] = ACTIONS(2325), + [anon_sym_explicit] = ACTIONS(2325), + [anon_sym_typename] = ACTIONS(2325), + [anon_sym_template] = ACTIONS(2325), + [anon_sym_operator] = ACTIONS(2325), + [anon_sym_friend] = ACTIONS(2325), + [anon_sym_public] = ACTIONS(2325), + [anon_sym_private] = ACTIONS(2325), + [anon_sym_protected] = ACTIONS(2325), + [anon_sym_using] = ACTIONS(2325), + [anon_sym_static_assert] = ACTIONS(2325), + [sym_macro_statement] = ACTIONS(2325), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2325), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2325), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2325), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2325), + [anon_sym_MOZ_COLD] = ACTIONS(2325), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2325), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2325), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2325), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2325), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2325), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2325), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2325), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2325), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2325), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2325), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2325), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2325), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2325), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_NONNULL] = ACTIONS(2325), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2325), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2325), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2325), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2325), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2325), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2325), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2325), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2325), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2325), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2325), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2325), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2325), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2325), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2325), + [anon_sym_MOZ_RAII] = ACTIONS(2325), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2325), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2325), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2325), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2325), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2325), + }, + [STATE(1182)] = { + [sym_identifier] = ACTIONS(2408), + [aux_sym_preproc_def_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token2] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_LPAREN2] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_AMP_AMP] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2408), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym___extension__] = ACTIONS(2408), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_virtual] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym___attribute__] = ACTIONS(2408), + [anon_sym___attribute] = ACTIONS(2408), + [anon_sym_COLON_COLON] = ACTIONS(2410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2410), + [anon_sym___declspec] = ACTIONS(2408), + [anon_sym___based] = ACTIONS(2408), + [anon_sym_signed] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym___inline] = ACTIONS(2408), + [anon_sym___inline__] = ACTIONS(2408), + [anon_sym___forceinline] = ACTIONS(2408), + [anon_sym_thread_local] = ACTIONS(2408), + [anon_sym___thread] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_constexpr] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym___restrict__] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym__Noreturn] = ACTIONS(2408), + [anon_sym_noreturn] = ACTIONS(2408), + [anon_sym__Nonnull] = ACTIONS(2408), + [anon_sym_mutable] = ACTIONS(2408), + [anon_sym_constinit] = ACTIONS(2408), + [anon_sym_consteval] = ACTIONS(2408), + [anon_sym_alignas] = ACTIONS(2408), + [anon_sym__Alignas] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_class] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2408), + [anon_sym_decltype] = ACTIONS(2408), + [anon_sym_explicit] = ACTIONS(2408), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_template] = ACTIONS(2408), + [anon_sym_operator] = ACTIONS(2408), + [anon_sym_friend] = ACTIONS(2408), + [anon_sym_public] = ACTIONS(2408), + [anon_sym_private] = ACTIONS(2408), + [anon_sym_protected] = ACTIONS(2408), + [anon_sym_using] = ACTIONS(2408), + [anon_sym_static_assert] = ACTIONS(2408), + [sym_macro_statement] = ACTIONS(2408), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2408), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2408), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2408), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2408), + [anon_sym_MOZ_COLD] = ACTIONS(2408), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2408), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2408), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2408), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2408), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2408), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2408), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2408), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2408), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2408), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2408), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2408), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2408), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2408), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_NONNULL] = ACTIONS(2408), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2408), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2408), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2408), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2408), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2408), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2408), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2408), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2408), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2408), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2408), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2408), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2408), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2408), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2408), + [anon_sym_MOZ_RAII] = ACTIONS(2408), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2408), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2408), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2408), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2408), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2408), + }, + [STATE(1183)] = { + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token2] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2420), + [sym_preproc_directive] = ACTIONS(2420), + [anon_sym_LPAREN2] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym___extension__] = ACTIONS(2420), + [anon_sym_typedef] = ACTIONS(2420), + [anon_sym_virtual] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym___attribute__] = ACTIONS(2420), + [anon_sym___attribute] = ACTIONS(2420), + [anon_sym_COLON_COLON] = ACTIONS(2422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2422), + [anon_sym___declspec] = ACTIONS(2420), + [anon_sym___based] = ACTIONS(2420), + [anon_sym_signed] = ACTIONS(2420), + [anon_sym_unsigned] = ACTIONS(2420), + [anon_sym_long] = ACTIONS(2420), + [anon_sym_short] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_inline] = ACTIONS(2420), + [anon_sym___inline] = ACTIONS(2420), + [anon_sym___inline__] = ACTIONS(2420), + [anon_sym___forceinline] = ACTIONS(2420), + [anon_sym_thread_local] = ACTIONS(2420), + [anon_sym___thread] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_constexpr] = ACTIONS(2420), + [anon_sym_volatile] = ACTIONS(2420), + [anon_sym_restrict] = ACTIONS(2420), + [anon_sym___restrict__] = ACTIONS(2420), + [anon_sym__Atomic] = ACTIONS(2420), + [anon_sym__Noreturn] = ACTIONS(2420), + [anon_sym_noreturn] = ACTIONS(2420), + [anon_sym__Nonnull] = ACTIONS(2420), + [anon_sym_mutable] = ACTIONS(2420), + [anon_sym_constinit] = ACTIONS(2420), + [anon_sym_consteval] = ACTIONS(2420), + [anon_sym_alignas] = ACTIONS(2420), + [anon_sym__Alignas] = ACTIONS(2420), + [sym_primitive_type] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_class] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2420), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_explicit] = ACTIONS(2420), + [anon_sym_typename] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2420), + [anon_sym_operator] = ACTIONS(2420), + [anon_sym_friend] = ACTIONS(2420), + [anon_sym_public] = ACTIONS(2420), + [anon_sym_private] = ACTIONS(2420), + [anon_sym_protected] = ACTIONS(2420), + [anon_sym_using] = ACTIONS(2420), + [anon_sym_static_assert] = ACTIONS(2420), + [sym_macro_statement] = ACTIONS(2420), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2420), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2420), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2420), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2420), + [anon_sym_MOZ_COLD] = ACTIONS(2420), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2420), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2420), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2420), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2420), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2420), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2420), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2420), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2420), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2420), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2420), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2420), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2420), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2420), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_NONNULL] = ACTIONS(2420), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2420), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2420), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2420), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2420), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2420), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2420), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2420), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2420), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2420), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2420), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2420), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2420), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2420), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2420), + [anon_sym_MOZ_RAII] = ACTIONS(2420), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2420), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2420), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2420), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2420), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2420), + }, + [STATE(1184)] = { + [sym_identifier] = ACTIONS(2112), + [aux_sym_preproc_def_token1] = ACTIONS(2112), + [aux_sym_preproc_if_token1] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2112), + [sym_preproc_directive] = ACTIONS(2112), + [anon_sym_LPAREN2] = ACTIONS(2114), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_AMP_AMP] = ACTIONS(2114), + [anon_sym_AMP] = ACTIONS(2112), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym___extension__] = ACTIONS(2112), + [anon_sym_typedef] = ACTIONS(2112), + [anon_sym_virtual] = ACTIONS(2112), + [anon_sym_extern] = ACTIONS(2112), + [anon_sym___attribute__] = ACTIONS(2112), + [anon_sym___attribute] = ACTIONS(2112), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2114), + [anon_sym___declspec] = ACTIONS(2112), + [anon_sym___based] = ACTIONS(2112), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_signed] = ACTIONS(2112), + [anon_sym_unsigned] = ACTIONS(2112), + [anon_sym_long] = ACTIONS(2112), + [anon_sym_short] = ACTIONS(2112), + [anon_sym_LBRACK] = ACTIONS(2112), + [anon_sym_static] = ACTIONS(2112), + [anon_sym_register] = ACTIONS(2112), + [anon_sym_inline] = ACTIONS(2112), + [anon_sym___inline] = ACTIONS(2112), + [anon_sym___inline__] = ACTIONS(2112), + [anon_sym___forceinline] = ACTIONS(2112), + [anon_sym_thread_local] = ACTIONS(2112), + [anon_sym___thread] = ACTIONS(2112), + [anon_sym_const] = ACTIONS(2112), + [anon_sym_constexpr] = ACTIONS(2112), + [anon_sym_volatile] = ACTIONS(2112), + [anon_sym_restrict] = ACTIONS(2112), + [anon_sym___restrict__] = ACTIONS(2112), + [anon_sym__Atomic] = ACTIONS(2112), + [anon_sym__Noreturn] = ACTIONS(2112), + [anon_sym_noreturn] = ACTIONS(2112), + [anon_sym__Nonnull] = ACTIONS(2112), + [anon_sym_mutable] = ACTIONS(2112), + [anon_sym_constinit] = ACTIONS(2112), + [anon_sym_consteval] = ACTIONS(2112), + [anon_sym_alignas] = ACTIONS(2112), + [anon_sym__Alignas] = ACTIONS(2112), + [sym_primitive_type] = ACTIONS(2112), + [anon_sym_enum] = ACTIONS(2112), + [anon_sym_class] = ACTIONS(2112), + [anon_sym_struct] = ACTIONS(2112), + [anon_sym_union] = ACTIONS(2112), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2112), + [anon_sym_decltype] = ACTIONS(2112), + [anon_sym_explicit] = ACTIONS(2112), + [anon_sym_typename] = ACTIONS(2112), + [anon_sym_template] = ACTIONS(2112), + [anon_sym_operator] = ACTIONS(2112), + [anon_sym_friend] = ACTIONS(2112), + [anon_sym_public] = ACTIONS(2112), + [anon_sym_private] = ACTIONS(2112), + [anon_sym_protected] = ACTIONS(2112), + [anon_sym_using] = ACTIONS(2112), + [anon_sym_static_assert] = ACTIONS(2112), + [sym_macro_statement] = ACTIONS(2112), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2112), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2112), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2112), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2112), + [anon_sym_MOZ_COLD] = ACTIONS(2112), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2112), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2112), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2112), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2112), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2112), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2112), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2112), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2112), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2112), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2112), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2112), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2112), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2112), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_NONNULL] = ACTIONS(2112), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2112), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2112), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2112), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2112), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2112), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2112), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2112), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2112), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2112), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2112), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2112), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2112), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2112), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2112), + [anon_sym_MOZ_RAII] = ACTIONS(2112), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2112), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2112), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2112), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2112), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2112), + }, + [STATE(1185)] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token2] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_virtual] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_COLON_COLON] = ACTIONS(2426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___based] = ACTIONS(2424), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_mutable] = ACTIONS(2424), + [anon_sym_constinit] = ACTIONS(2424), + [anon_sym_consteval] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2424), + [anon_sym_decltype] = ACTIONS(2424), + [anon_sym_explicit] = ACTIONS(2424), + [anon_sym_typename] = ACTIONS(2424), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_operator] = ACTIONS(2424), + [anon_sym_friend] = ACTIONS(2424), + [anon_sym_public] = ACTIONS(2424), + [anon_sym_private] = ACTIONS(2424), + [anon_sym_protected] = ACTIONS(2424), + [anon_sym_using] = ACTIONS(2424), + [anon_sym_static_assert] = ACTIONS(2424), + [sym_macro_statement] = ACTIONS(2424), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2424), + [anon_sym_MOZ_COLD] = ACTIONS(2424), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2424), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2424), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2424), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2424), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2424), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2424), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2424), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2424), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2424), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2424), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2424), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2424), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_RAII] = ACTIONS(2424), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2424), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2424), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2424), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2424), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2424), + }, + [STATE(1186)] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token2] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_virtual] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_COLON_COLON] = ACTIONS(2426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___based] = ACTIONS(2424), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_mutable] = ACTIONS(2424), + [anon_sym_constinit] = ACTIONS(2424), + [anon_sym_consteval] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2424), + [anon_sym_decltype] = ACTIONS(2424), + [anon_sym_explicit] = ACTIONS(2424), + [anon_sym_typename] = ACTIONS(2424), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_operator] = ACTIONS(2424), + [anon_sym_friend] = ACTIONS(2424), + [anon_sym_public] = ACTIONS(2424), + [anon_sym_private] = ACTIONS(2424), + [anon_sym_protected] = ACTIONS(2424), + [anon_sym_using] = ACTIONS(2424), + [anon_sym_static_assert] = ACTIONS(2424), + [sym_macro_statement] = ACTIONS(2424), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2424), + [anon_sym_MOZ_COLD] = ACTIONS(2424), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2424), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2424), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2424), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2424), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2424), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2424), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2424), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2424), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2424), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2424), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2424), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2424), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_RAII] = ACTIONS(2424), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2424), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2424), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2424), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2424), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2424), + }, + [STATE(1187)] = { + [sym_identifier] = ACTIONS(2440), + [aux_sym_preproc_def_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2440), + [sym_preproc_directive] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_typedef] = ACTIONS(2440), + [anon_sym_virtual] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym___attribute__] = ACTIONS(2440), + [anon_sym___attribute] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(2442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2442), + [anon_sym___declspec] = ACTIONS(2440), + [anon_sym___based] = ACTIONS(2440), + [anon_sym_signed] = ACTIONS(2440), + [anon_sym_unsigned] = ACTIONS(2440), + [anon_sym_long] = ACTIONS(2440), + [anon_sym_short] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_register] = ACTIONS(2440), + [anon_sym_inline] = ACTIONS(2440), + [anon_sym___inline] = ACTIONS(2440), + [anon_sym___inline__] = ACTIONS(2440), + [anon_sym___forceinline] = ACTIONS(2440), + [anon_sym_thread_local] = ACTIONS(2440), + [anon_sym___thread] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_constexpr] = ACTIONS(2440), + [anon_sym_volatile] = ACTIONS(2440), + [anon_sym_restrict] = ACTIONS(2440), + [anon_sym___restrict__] = ACTIONS(2440), + [anon_sym__Atomic] = ACTIONS(2440), + [anon_sym__Noreturn] = ACTIONS(2440), + [anon_sym_noreturn] = ACTIONS(2440), + [anon_sym__Nonnull] = ACTIONS(2440), + [anon_sym_mutable] = ACTIONS(2440), + [anon_sym_constinit] = ACTIONS(2440), + [anon_sym_consteval] = ACTIONS(2440), + [anon_sym_alignas] = ACTIONS(2440), + [anon_sym__Alignas] = ACTIONS(2440), + [sym_primitive_type] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_struct] = ACTIONS(2440), + [anon_sym_union] = ACTIONS(2440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2440), + [anon_sym_decltype] = ACTIONS(2440), + [anon_sym_explicit] = ACTIONS(2440), + [anon_sym_typename] = ACTIONS(2440), + [anon_sym_template] = ACTIONS(2440), + [anon_sym_operator] = ACTIONS(2440), + [anon_sym_friend] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_static_assert] = ACTIONS(2440), + [sym_macro_statement] = ACTIONS(2440), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2440), + [anon_sym_MOZ_COLD] = ACTIONS(2440), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2440), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2440), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2440), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2440), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2440), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2440), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2440), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2440), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2440), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2440), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2440), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2440), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_RAII] = ACTIONS(2440), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2440), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2440), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2440), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2440), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2440), + }, + [STATE(1188)] = { + [sym_identifier] = ACTIONS(2440), + [aux_sym_preproc_def_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token2] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2440), + [sym_preproc_directive] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_typedef] = ACTIONS(2440), + [anon_sym_virtual] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym___attribute__] = ACTIONS(2440), + [anon_sym___attribute] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(2442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2442), + [anon_sym___declspec] = ACTIONS(2440), + [anon_sym___based] = ACTIONS(2440), + [anon_sym_signed] = ACTIONS(2440), + [anon_sym_unsigned] = ACTIONS(2440), + [anon_sym_long] = ACTIONS(2440), + [anon_sym_short] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_register] = ACTIONS(2440), + [anon_sym_inline] = ACTIONS(2440), + [anon_sym___inline] = ACTIONS(2440), + [anon_sym___inline__] = ACTIONS(2440), + [anon_sym___forceinline] = ACTIONS(2440), + [anon_sym_thread_local] = ACTIONS(2440), + [anon_sym___thread] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_constexpr] = ACTIONS(2440), + [anon_sym_volatile] = ACTIONS(2440), + [anon_sym_restrict] = ACTIONS(2440), + [anon_sym___restrict__] = ACTIONS(2440), + [anon_sym__Atomic] = ACTIONS(2440), + [anon_sym__Noreturn] = ACTIONS(2440), + [anon_sym_noreturn] = ACTIONS(2440), + [anon_sym__Nonnull] = ACTIONS(2440), + [anon_sym_mutable] = ACTIONS(2440), + [anon_sym_constinit] = ACTIONS(2440), + [anon_sym_consteval] = ACTIONS(2440), + [anon_sym_alignas] = ACTIONS(2440), + [anon_sym__Alignas] = ACTIONS(2440), + [sym_primitive_type] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_struct] = ACTIONS(2440), + [anon_sym_union] = ACTIONS(2440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2440), + [anon_sym_decltype] = ACTIONS(2440), + [anon_sym_explicit] = ACTIONS(2440), + [anon_sym_typename] = ACTIONS(2440), + [anon_sym_template] = ACTIONS(2440), + [anon_sym_operator] = ACTIONS(2440), + [anon_sym_friend] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_static_assert] = ACTIONS(2440), + [sym_macro_statement] = ACTIONS(2440), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2440), + [anon_sym_MOZ_COLD] = ACTIONS(2440), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2440), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2440), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2440), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2440), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2440), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2440), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2440), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2440), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2440), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2440), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2440), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2440), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_RAII] = ACTIONS(2440), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2440), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2440), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2440), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2440), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2440), + }, + [STATE(1189)] = { + [sym_identifier] = ACTIONS(2244), + [aux_sym_preproc_def_token1] = ACTIONS(2244), + [aux_sym_preproc_if_token1] = ACTIONS(2244), + [aux_sym_preproc_if_token2] = ACTIONS(2244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2244), + [sym_preproc_directive] = ACTIONS(2244), + [anon_sym_LPAREN2] = ACTIONS(2246), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym___extension__] = ACTIONS(2244), + [anon_sym_typedef] = ACTIONS(2244), + [anon_sym_virtual] = ACTIONS(2244), + [anon_sym_extern] = ACTIONS(2244), + [anon_sym___attribute__] = ACTIONS(2244), + [anon_sym___attribute] = ACTIONS(2244), + [anon_sym_COLON_COLON] = ACTIONS(2246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2246), + [anon_sym___declspec] = ACTIONS(2244), + [anon_sym___based] = ACTIONS(2244), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_register] = ACTIONS(2244), + [anon_sym_inline] = ACTIONS(2244), + [anon_sym___inline] = ACTIONS(2244), + [anon_sym___inline__] = ACTIONS(2244), + [anon_sym___forceinline] = ACTIONS(2244), + [anon_sym_thread_local] = ACTIONS(2244), + [anon_sym___thread] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_constexpr] = ACTIONS(2244), + [anon_sym_volatile] = ACTIONS(2244), + [anon_sym_restrict] = ACTIONS(2244), + [anon_sym___restrict__] = ACTIONS(2244), + [anon_sym__Atomic] = ACTIONS(2244), + [anon_sym__Noreturn] = ACTIONS(2244), + [anon_sym_noreturn] = ACTIONS(2244), + [anon_sym__Nonnull] = ACTIONS(2244), + [anon_sym_mutable] = ACTIONS(2244), + [anon_sym_constinit] = ACTIONS(2244), + [anon_sym_consteval] = ACTIONS(2244), + [anon_sym_alignas] = ACTIONS(2244), + [anon_sym__Alignas] = ACTIONS(2244), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_struct] = ACTIONS(2244), + [anon_sym_union] = ACTIONS(2244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2244), + [anon_sym_decltype] = ACTIONS(2244), + [anon_sym_explicit] = ACTIONS(2244), + [anon_sym_typename] = ACTIONS(2244), + [anon_sym_template] = ACTIONS(2244), + [anon_sym_operator] = ACTIONS(2244), + [anon_sym_friend] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_static_assert] = ACTIONS(2244), + [sym_macro_statement] = ACTIONS(2244), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2244), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2244), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2244), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2244), + [anon_sym_MOZ_COLD] = ACTIONS(2244), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2244), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2244), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2244), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2244), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2244), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2244), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2244), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2244), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2244), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2244), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2244), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2244), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2244), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_NONNULL] = ACTIONS(2244), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2244), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2244), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2244), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2244), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2244), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2244), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2244), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2244), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2244), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2244), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2244), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2244), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2244), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2244), + [anon_sym_MOZ_RAII] = ACTIONS(2244), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2244), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2244), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2244), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2244), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2244), + }, + [STATE(1190)] = { + [sym_identifier] = ACTIONS(2329), + [aux_sym_preproc_def_token1] = ACTIONS(2329), + [aux_sym_preproc_if_token1] = ACTIONS(2329), + [aux_sym_preproc_if_token2] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2329), + [sym_preproc_directive] = ACTIONS(2329), + [anon_sym_LPAREN2] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_STAR] = ACTIONS(2331), + [anon_sym_AMP_AMP] = ACTIONS(2331), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_SEMI] = ACTIONS(2331), + [anon_sym___extension__] = ACTIONS(2329), + [anon_sym_typedef] = ACTIONS(2329), + [anon_sym_virtual] = ACTIONS(2329), + [anon_sym_extern] = ACTIONS(2329), + [anon_sym___attribute__] = ACTIONS(2329), + [anon_sym___attribute] = ACTIONS(2329), + [anon_sym_COLON_COLON] = ACTIONS(2331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2331), + [anon_sym___declspec] = ACTIONS(2329), + [anon_sym___based] = ACTIONS(2329), + [anon_sym_signed] = ACTIONS(2329), + [anon_sym_unsigned] = ACTIONS(2329), + [anon_sym_long] = ACTIONS(2329), + [anon_sym_short] = ACTIONS(2329), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_register] = ACTIONS(2329), + [anon_sym_inline] = ACTIONS(2329), + [anon_sym___inline] = ACTIONS(2329), + [anon_sym___inline__] = ACTIONS(2329), + [anon_sym___forceinline] = ACTIONS(2329), + [anon_sym_thread_local] = ACTIONS(2329), + [anon_sym___thread] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_constexpr] = ACTIONS(2329), + [anon_sym_volatile] = ACTIONS(2329), + [anon_sym_restrict] = ACTIONS(2329), + [anon_sym___restrict__] = ACTIONS(2329), + [anon_sym__Atomic] = ACTIONS(2329), + [anon_sym__Noreturn] = ACTIONS(2329), + [anon_sym_noreturn] = ACTIONS(2329), + [anon_sym__Nonnull] = ACTIONS(2329), + [anon_sym_mutable] = ACTIONS(2329), + [anon_sym_constinit] = ACTIONS(2329), + [anon_sym_consteval] = ACTIONS(2329), + [anon_sym_alignas] = ACTIONS(2329), + [anon_sym__Alignas] = ACTIONS(2329), + [sym_primitive_type] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_class] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2329), + [anon_sym_union] = ACTIONS(2329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2329), + [anon_sym_decltype] = ACTIONS(2329), + [anon_sym_explicit] = ACTIONS(2329), + [anon_sym_typename] = ACTIONS(2329), + [anon_sym_template] = ACTIONS(2329), + [anon_sym_operator] = ACTIONS(2329), + [anon_sym_friend] = ACTIONS(2329), + [anon_sym_public] = ACTIONS(2329), + [anon_sym_private] = ACTIONS(2329), + [anon_sym_protected] = ACTIONS(2329), + [anon_sym_using] = ACTIONS(2329), + [anon_sym_static_assert] = ACTIONS(2329), + [sym_macro_statement] = ACTIONS(2329), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2329), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2329), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2329), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2329), + [anon_sym_MOZ_COLD] = ACTIONS(2329), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2329), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2329), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2329), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2329), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2329), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2329), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2329), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2329), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2329), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2329), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2329), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2329), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2329), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_NONNULL] = ACTIONS(2329), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2329), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2329), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2329), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2329), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2329), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2329), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2329), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2329), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2329), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2329), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2329), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2329), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2329), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2329), + [anon_sym_MOZ_RAII] = ACTIONS(2329), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2329), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2329), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2329), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2329), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2329), + }, + [STATE(1191)] = { + [sym_identifier] = ACTIONS(2313), + [aux_sym_preproc_def_token1] = ACTIONS(2313), + [aux_sym_preproc_if_token1] = ACTIONS(2313), + [aux_sym_preproc_if_token2] = ACTIONS(2313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2313), + [sym_preproc_directive] = ACTIONS(2313), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2315), + [anon_sym_AMP_AMP] = ACTIONS(2315), + [anon_sym_AMP] = ACTIONS(2313), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym___extension__] = ACTIONS(2313), + [anon_sym_typedef] = ACTIONS(2313), + [anon_sym_virtual] = ACTIONS(2313), + [anon_sym_extern] = ACTIONS(2313), + [anon_sym___attribute__] = ACTIONS(2313), + [anon_sym___attribute] = ACTIONS(2313), + [anon_sym_COLON_COLON] = ACTIONS(2315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2315), + [anon_sym___declspec] = ACTIONS(2313), + [anon_sym___based] = ACTIONS(2313), + [anon_sym_signed] = ACTIONS(2313), + [anon_sym_unsigned] = ACTIONS(2313), + [anon_sym_long] = ACTIONS(2313), + [anon_sym_short] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_static] = ACTIONS(2313), + [anon_sym_register] = ACTIONS(2313), + [anon_sym_inline] = ACTIONS(2313), + [anon_sym___inline] = ACTIONS(2313), + [anon_sym___inline__] = ACTIONS(2313), + [anon_sym___forceinline] = ACTIONS(2313), + [anon_sym_thread_local] = ACTIONS(2313), + [anon_sym___thread] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_constexpr] = ACTIONS(2313), + [anon_sym_volatile] = ACTIONS(2313), + [anon_sym_restrict] = ACTIONS(2313), + [anon_sym___restrict__] = ACTIONS(2313), + [anon_sym__Atomic] = ACTIONS(2313), + [anon_sym__Noreturn] = ACTIONS(2313), + [anon_sym_noreturn] = ACTIONS(2313), + [anon_sym__Nonnull] = ACTIONS(2313), + [anon_sym_mutable] = ACTIONS(2313), + [anon_sym_constinit] = ACTIONS(2313), + [anon_sym_consteval] = ACTIONS(2313), + [anon_sym_alignas] = ACTIONS(2313), + [anon_sym__Alignas] = ACTIONS(2313), + [sym_primitive_type] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), + [anon_sym_class] = ACTIONS(2313), + [anon_sym_struct] = ACTIONS(2313), + [anon_sym_union] = ACTIONS(2313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2313), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_explicit] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(2313), + [anon_sym_operator] = ACTIONS(2313), + [anon_sym_friend] = ACTIONS(2313), + [anon_sym_public] = ACTIONS(2313), + [anon_sym_private] = ACTIONS(2313), + [anon_sym_protected] = ACTIONS(2313), + [anon_sym_using] = ACTIONS(2313), + [anon_sym_static_assert] = ACTIONS(2313), + [sym_macro_statement] = ACTIONS(2313), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2313), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2313), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2313), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2313), + [anon_sym_MOZ_COLD] = ACTIONS(2313), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2313), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2313), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2313), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2313), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2313), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2313), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2313), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2313), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2313), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2313), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2313), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2313), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2313), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_NONNULL] = ACTIONS(2313), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2313), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2313), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2313), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2313), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2313), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2313), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2313), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2313), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2313), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2313), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2313), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2313), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2313), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2313), + [anon_sym_MOZ_RAII] = ACTIONS(2313), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2313), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2313), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2313), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2313), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2313), + }, + [STATE(1192)] = { + [sym_identifier] = ACTIONS(2412), + [aux_sym_preproc_def_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2412), + [sym_preproc_directive] = ACTIONS(2412), + [anon_sym_LPAREN2] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym___extension__] = ACTIONS(2412), + [anon_sym_typedef] = ACTIONS(2412), + [anon_sym_virtual] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym___attribute__] = ACTIONS(2412), + [anon_sym___attribute] = ACTIONS(2412), + [anon_sym_COLON_COLON] = ACTIONS(2414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2414), + [anon_sym___declspec] = ACTIONS(2412), + [anon_sym___based] = ACTIONS(2412), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_signed] = ACTIONS(2412), + [anon_sym_unsigned] = ACTIONS(2412), + [anon_sym_long] = ACTIONS(2412), + [anon_sym_short] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym___inline] = ACTIONS(2412), + [anon_sym___inline__] = ACTIONS(2412), + [anon_sym___forceinline] = ACTIONS(2412), + [anon_sym_thread_local] = ACTIONS(2412), + [anon_sym___thread] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_constexpr] = ACTIONS(2412), + [anon_sym_volatile] = ACTIONS(2412), + [anon_sym_restrict] = ACTIONS(2412), + [anon_sym___restrict__] = ACTIONS(2412), + [anon_sym__Atomic] = ACTIONS(2412), + [anon_sym__Noreturn] = ACTIONS(2412), + [anon_sym_noreturn] = ACTIONS(2412), + [anon_sym__Nonnull] = ACTIONS(2412), + [anon_sym_mutable] = ACTIONS(2412), + [anon_sym_constinit] = ACTIONS(2412), + [anon_sym_consteval] = ACTIONS(2412), + [anon_sym_alignas] = ACTIONS(2412), + [anon_sym__Alignas] = ACTIONS(2412), + [sym_primitive_type] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_class] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2412), + [anon_sym_decltype] = ACTIONS(2412), + [anon_sym_explicit] = ACTIONS(2412), + [anon_sym_typename] = ACTIONS(2412), + [anon_sym_template] = ACTIONS(2412), + [anon_sym_operator] = ACTIONS(2412), + [anon_sym_friend] = ACTIONS(2412), + [anon_sym_public] = ACTIONS(2412), + [anon_sym_private] = ACTIONS(2412), + [anon_sym_protected] = ACTIONS(2412), + [anon_sym_using] = ACTIONS(2412), + [anon_sym_static_assert] = ACTIONS(2412), + [sym_macro_statement] = ACTIONS(2412), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2412), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2412), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2412), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2412), + [anon_sym_MOZ_COLD] = ACTIONS(2412), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2412), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2412), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2412), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2412), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2412), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2412), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2412), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2412), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2412), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2412), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2412), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2412), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2412), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_NONNULL] = ACTIONS(2412), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2412), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2412), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2412), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2412), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2412), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2412), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2412), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2412), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2412), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2412), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2412), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2412), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2412), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2412), + [anon_sym_MOZ_RAII] = ACTIONS(2412), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2412), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2412), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2412), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2412), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2412), + }, + [STATE(1193)] = { + [sym_identifier] = ACTIONS(2373), + [aux_sym_preproc_def_token1] = ACTIONS(2373), + [aux_sym_preproc_if_token1] = ACTIONS(2373), + [aux_sym_preproc_if_token2] = ACTIONS(2373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2373), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2373), + [sym_preproc_directive] = ACTIONS(2373), + [anon_sym_LPAREN2] = ACTIONS(2375), + [anon_sym_TILDE] = ACTIONS(2375), + [anon_sym_STAR] = ACTIONS(2375), + [anon_sym_AMP_AMP] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym___extension__] = ACTIONS(2373), + [anon_sym_typedef] = ACTIONS(2373), + [anon_sym_virtual] = ACTIONS(2373), + [anon_sym_extern] = ACTIONS(2373), + [anon_sym___attribute__] = ACTIONS(2373), + [anon_sym___attribute] = ACTIONS(2373), + [anon_sym_COLON_COLON] = ACTIONS(2375), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2375), + [anon_sym___declspec] = ACTIONS(2373), + [anon_sym___based] = ACTIONS(2373), + [anon_sym_signed] = ACTIONS(2373), + [anon_sym_unsigned] = ACTIONS(2373), + [anon_sym_long] = ACTIONS(2373), + [anon_sym_short] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_register] = ACTIONS(2373), + [anon_sym_inline] = ACTIONS(2373), + [anon_sym___inline] = ACTIONS(2373), + [anon_sym___inline__] = ACTIONS(2373), + [anon_sym___forceinline] = ACTIONS(2373), + [anon_sym_thread_local] = ACTIONS(2373), + [anon_sym___thread] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_constexpr] = ACTIONS(2373), + [anon_sym_volatile] = ACTIONS(2373), + [anon_sym_restrict] = ACTIONS(2373), + [anon_sym___restrict__] = ACTIONS(2373), + [anon_sym__Atomic] = ACTIONS(2373), + [anon_sym__Noreturn] = ACTIONS(2373), + [anon_sym_noreturn] = ACTIONS(2373), + [anon_sym__Nonnull] = ACTIONS(2373), + [anon_sym_mutable] = ACTIONS(2373), + [anon_sym_constinit] = ACTIONS(2373), + [anon_sym_consteval] = ACTIONS(2373), + [anon_sym_alignas] = ACTIONS(2373), + [anon_sym__Alignas] = ACTIONS(2373), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_class] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2373), + [anon_sym_decltype] = ACTIONS(2373), + [anon_sym_explicit] = ACTIONS(2373), + [anon_sym_typename] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(2373), + [anon_sym_operator] = ACTIONS(2373), + [anon_sym_friend] = ACTIONS(2373), + [anon_sym_public] = ACTIONS(2373), + [anon_sym_private] = ACTIONS(2373), + [anon_sym_protected] = ACTIONS(2373), + [anon_sym_using] = ACTIONS(2373), + [anon_sym_static_assert] = ACTIONS(2373), + [sym_macro_statement] = ACTIONS(2373), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2373), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2373), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2373), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2373), + [anon_sym_MOZ_COLD] = ACTIONS(2373), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2373), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2373), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2373), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2373), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2373), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2373), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2373), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2373), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2373), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2373), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2373), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2373), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2373), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_NONNULL] = ACTIONS(2373), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2373), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2373), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2373), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2373), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2373), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2373), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2373), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2373), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2373), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2373), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2373), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2373), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2373), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2373), + [anon_sym_MOZ_RAII] = ACTIONS(2373), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2373), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2373), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2373), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2373), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2373), + }, + [STATE(1194)] = { + [sym_identifier] = ACTIONS(2178), + [aux_sym_preproc_def_token1] = ACTIONS(2178), + [aux_sym_preproc_if_token1] = ACTIONS(2178), + [aux_sym_preproc_if_token2] = ACTIONS(2178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), + [sym_preproc_directive] = ACTIONS(2178), + [anon_sym_LPAREN2] = ACTIONS(2180), + [anon_sym_TILDE] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(2180), + [anon_sym_AMP_AMP] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2180), + [anon_sym___extension__] = ACTIONS(2178), + [anon_sym_typedef] = ACTIONS(2178), + [anon_sym_virtual] = ACTIONS(2178), + [anon_sym_extern] = ACTIONS(2178), + [anon_sym___attribute__] = ACTIONS(2178), + [anon_sym___attribute] = ACTIONS(2178), + [anon_sym_COLON_COLON] = ACTIONS(2180), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2180), + [anon_sym___declspec] = ACTIONS(2178), + [anon_sym___based] = ACTIONS(2178), + [anon_sym_signed] = ACTIONS(2178), + [anon_sym_unsigned] = ACTIONS(2178), + [anon_sym_long] = ACTIONS(2178), + [anon_sym_short] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_register] = ACTIONS(2178), + [anon_sym_inline] = ACTIONS(2178), + [anon_sym___inline] = ACTIONS(2178), + [anon_sym___inline__] = ACTIONS(2178), + [anon_sym___forceinline] = ACTIONS(2178), + [anon_sym_thread_local] = ACTIONS(2178), + [anon_sym___thread] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_constexpr] = ACTIONS(2178), + [anon_sym_volatile] = ACTIONS(2178), + [anon_sym_restrict] = ACTIONS(2178), + [anon_sym___restrict__] = ACTIONS(2178), + [anon_sym__Atomic] = ACTIONS(2178), + [anon_sym__Noreturn] = ACTIONS(2178), + [anon_sym_noreturn] = ACTIONS(2178), + [anon_sym__Nonnull] = ACTIONS(2178), + [anon_sym_mutable] = ACTIONS(2178), + [anon_sym_constinit] = ACTIONS(2178), + [anon_sym_consteval] = ACTIONS(2178), + [anon_sym_alignas] = ACTIONS(2178), + [anon_sym__Alignas] = ACTIONS(2178), + [sym_primitive_type] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_struct] = ACTIONS(2178), + [anon_sym_union] = ACTIONS(2178), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2178), + [anon_sym_decltype] = ACTIONS(2178), + [anon_sym_explicit] = ACTIONS(2178), + [anon_sym_typename] = ACTIONS(2178), + [anon_sym_template] = ACTIONS(2178), + [anon_sym_operator] = ACTIONS(2178), + [anon_sym_friend] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_protected] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_static_assert] = ACTIONS(2178), + [sym_macro_statement] = ACTIONS(2178), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2178), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2178), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2178), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2178), + [anon_sym_MOZ_COLD] = ACTIONS(2178), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2178), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2178), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2178), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2178), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2178), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2178), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2178), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2178), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2178), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2178), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2178), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2178), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2178), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_NONNULL] = ACTIONS(2178), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2178), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2178), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2178), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2178), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2178), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2178), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2178), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2178), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2178), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2178), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2178), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2178), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2178), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2178), + [anon_sym_MOZ_RAII] = ACTIONS(2178), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2178), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2178), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2178), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2178), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2178), + }, + [STATE(1195)] = { + [sym_identifier] = ACTIONS(2256), + [aux_sym_preproc_def_token1] = ACTIONS(2256), + [aux_sym_preproc_if_token1] = ACTIONS(2256), + [aux_sym_preproc_if_token2] = ACTIONS(2256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2256), + [sym_preproc_directive] = ACTIONS(2256), + [anon_sym_LPAREN2] = ACTIONS(2258), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2258), + [anon_sym_AMP_AMP] = ACTIONS(2258), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym___extension__] = ACTIONS(2256), + [anon_sym_typedef] = ACTIONS(2256), + [anon_sym_virtual] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym_COLON_COLON] = ACTIONS(2258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2258), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym___based] = ACTIONS(2256), + [anon_sym_signed] = ACTIONS(2256), + [anon_sym_unsigned] = ACTIONS(2256), + [anon_sym_long] = ACTIONS(2256), + [anon_sym_short] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2256), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [anon_sym___inline] = ACTIONS(2256), + [anon_sym___inline__] = ACTIONS(2256), + [anon_sym___forceinline] = ACTIONS(2256), + [anon_sym_thread_local] = ACTIONS(2256), + [anon_sym___thread] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_constexpr] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym___restrict__] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym__Noreturn] = ACTIONS(2256), + [anon_sym_noreturn] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym_mutable] = ACTIONS(2256), + [anon_sym_constinit] = ACTIONS(2256), + [anon_sym_consteval] = ACTIONS(2256), + [anon_sym_alignas] = ACTIONS(2256), + [anon_sym__Alignas] = ACTIONS(2256), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_class] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2256), + [anon_sym_decltype] = ACTIONS(2256), + [anon_sym_explicit] = ACTIONS(2256), + [anon_sym_typename] = ACTIONS(2256), + [anon_sym_template] = ACTIONS(2256), + [anon_sym_operator] = ACTIONS(2256), + [anon_sym_friend] = ACTIONS(2256), + [anon_sym_public] = ACTIONS(2256), + [anon_sym_private] = ACTIONS(2256), + [anon_sym_protected] = ACTIONS(2256), + [anon_sym_using] = ACTIONS(2256), + [anon_sym_static_assert] = ACTIONS(2256), + [sym_macro_statement] = ACTIONS(2256), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2256), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2256), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2256), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2256), + [anon_sym_MOZ_COLD] = ACTIONS(2256), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2256), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2256), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2256), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2256), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2256), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2256), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2256), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2256), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2256), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2256), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2256), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2256), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2256), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_NONNULL] = ACTIONS(2256), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2256), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2256), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2256), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2256), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2256), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2256), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2256), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2256), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2256), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2256), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2256), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2256), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2256), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2256), + [anon_sym_MOZ_RAII] = ACTIONS(2256), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2256), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2256), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2256), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2256), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2256), + }, + [STATE(1196)] = { + [sym_identifier] = ACTIONS(2396), + [aux_sym_preproc_def_token1] = ACTIONS(2396), + [aux_sym_preproc_if_token1] = ACTIONS(2396), + [aux_sym_preproc_if_token2] = ACTIONS(2396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2396), + [sym_preproc_directive] = ACTIONS(2396), + [anon_sym_LPAREN2] = ACTIONS(2398), + [anon_sym_TILDE] = ACTIONS(2398), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym___extension__] = ACTIONS(2396), + [anon_sym_typedef] = ACTIONS(2396), + [anon_sym_virtual] = ACTIONS(2396), + [anon_sym_extern] = ACTIONS(2396), + [anon_sym___attribute__] = ACTIONS(2396), + [anon_sym___attribute] = ACTIONS(2396), + [anon_sym_COLON_COLON] = ACTIONS(2398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2398), + [anon_sym___declspec] = ACTIONS(2396), + [anon_sym___based] = ACTIONS(2396), + [anon_sym_signed] = ACTIONS(2396), + [anon_sym_unsigned] = ACTIONS(2396), + [anon_sym_long] = ACTIONS(2396), + [anon_sym_short] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_register] = ACTIONS(2396), + [anon_sym_inline] = ACTIONS(2396), + [anon_sym___inline] = ACTIONS(2396), + [anon_sym___inline__] = ACTIONS(2396), + [anon_sym___forceinline] = ACTIONS(2396), + [anon_sym_thread_local] = ACTIONS(2396), + [anon_sym___thread] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_constexpr] = ACTIONS(2396), + [anon_sym_volatile] = ACTIONS(2396), + [anon_sym_restrict] = ACTIONS(2396), + [anon_sym___restrict__] = ACTIONS(2396), + [anon_sym__Atomic] = ACTIONS(2396), + [anon_sym__Noreturn] = ACTIONS(2396), + [anon_sym_noreturn] = ACTIONS(2396), + [anon_sym__Nonnull] = ACTIONS(2396), + [anon_sym_mutable] = ACTIONS(2396), + [anon_sym_constinit] = ACTIONS(2396), + [anon_sym_consteval] = ACTIONS(2396), + [anon_sym_alignas] = ACTIONS(2396), + [anon_sym__Alignas] = ACTIONS(2396), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_struct] = ACTIONS(2396), + [anon_sym_union] = ACTIONS(2396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2396), + [anon_sym_decltype] = ACTIONS(2396), + [anon_sym_explicit] = ACTIONS(2396), + [anon_sym_typename] = ACTIONS(2396), + [anon_sym_template] = ACTIONS(2396), + [anon_sym_operator] = ACTIONS(2396), + [anon_sym_friend] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_static_assert] = ACTIONS(2396), + [sym_macro_statement] = ACTIONS(2396), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2396), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2396), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2396), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2396), + [anon_sym_MOZ_COLD] = ACTIONS(2396), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2396), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2396), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2396), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2396), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2396), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2396), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2396), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2396), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2396), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2396), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2396), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2396), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2396), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_NONNULL] = ACTIONS(2396), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2396), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2396), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2396), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2396), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2396), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2396), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2396), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2396), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2396), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2396), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2396), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2396), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2396), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2396), + [anon_sym_MOZ_RAII] = ACTIONS(2396), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2396), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2396), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2396), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2396), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2396), + }, + [STATE(1197)] = { + [sym_identifier] = ACTIONS(2400), + [aux_sym_preproc_def_token1] = ACTIONS(2400), + [aux_sym_preproc_if_token1] = ACTIONS(2400), + [aux_sym_preproc_if_token2] = ACTIONS(2400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2400), + [sym_preproc_directive] = ACTIONS(2400), + [anon_sym_LPAREN2] = ACTIONS(2402), + [anon_sym_TILDE] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_AMP] = ACTIONS(2400), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym___extension__] = ACTIONS(2400), + [anon_sym_typedef] = ACTIONS(2400), + [anon_sym_virtual] = ACTIONS(2400), + [anon_sym_extern] = ACTIONS(2400), + [anon_sym___attribute__] = ACTIONS(2400), + [anon_sym___attribute] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2402), + [anon_sym___declspec] = ACTIONS(2400), + [anon_sym___based] = ACTIONS(2400), + [anon_sym_signed] = ACTIONS(2400), + [anon_sym_unsigned] = ACTIONS(2400), + [anon_sym_long] = ACTIONS(2400), + [anon_sym_short] = ACTIONS(2400), + [anon_sym_LBRACK] = ACTIONS(2400), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_register] = ACTIONS(2400), + [anon_sym_inline] = ACTIONS(2400), + [anon_sym___inline] = ACTIONS(2400), + [anon_sym___inline__] = ACTIONS(2400), + [anon_sym___forceinline] = ACTIONS(2400), + [anon_sym_thread_local] = ACTIONS(2400), + [anon_sym___thread] = ACTIONS(2400), + [anon_sym_const] = ACTIONS(2400), + [anon_sym_constexpr] = ACTIONS(2400), + [anon_sym_volatile] = ACTIONS(2400), + [anon_sym_restrict] = ACTIONS(2400), + [anon_sym___restrict__] = ACTIONS(2400), + [anon_sym__Atomic] = ACTIONS(2400), + [anon_sym__Noreturn] = ACTIONS(2400), + [anon_sym_noreturn] = ACTIONS(2400), + [anon_sym__Nonnull] = ACTIONS(2400), + [anon_sym_mutable] = ACTIONS(2400), + [anon_sym_constinit] = ACTIONS(2400), + [anon_sym_consteval] = ACTIONS(2400), + [anon_sym_alignas] = ACTIONS(2400), + [anon_sym__Alignas] = ACTIONS(2400), + [sym_primitive_type] = ACTIONS(2400), + [anon_sym_enum] = ACTIONS(2400), + [anon_sym_class] = ACTIONS(2400), + [anon_sym_struct] = ACTIONS(2400), + [anon_sym_union] = ACTIONS(2400), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2400), + [anon_sym_decltype] = ACTIONS(2400), + [anon_sym_explicit] = ACTIONS(2400), + [anon_sym_typename] = ACTIONS(2400), + [anon_sym_template] = ACTIONS(2400), + [anon_sym_operator] = ACTIONS(2400), + [anon_sym_friend] = ACTIONS(2400), + [anon_sym_public] = ACTIONS(2400), + [anon_sym_private] = ACTIONS(2400), + [anon_sym_protected] = ACTIONS(2400), + [anon_sym_using] = ACTIONS(2400), + [anon_sym_static_assert] = ACTIONS(2400), + [sym_macro_statement] = ACTIONS(2400), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2400), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2400), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2400), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2400), + [anon_sym_MOZ_COLD] = ACTIONS(2400), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2400), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2400), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2400), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2400), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2400), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2400), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2400), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2400), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2400), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2400), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2400), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2400), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2400), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_NONNULL] = ACTIONS(2400), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2400), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2400), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2400), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2400), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2400), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2400), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2400), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2400), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2400), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2400), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2400), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2400), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2400), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2400), + [anon_sym_MOZ_RAII] = ACTIONS(2400), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2400), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2400), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2400), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2400), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2400), + }, + [STATE(1198)] = { + [sym_identifier] = ACTIONS(2444), + [aux_sym_preproc_def_token1] = ACTIONS(2444), + [aux_sym_preproc_if_token1] = ACTIONS(2444), + [aux_sym_preproc_if_token2] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [sym_preproc_directive] = ACTIONS(2444), + [anon_sym_LPAREN2] = ACTIONS(2446), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_AMP_AMP] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_SEMI] = ACTIONS(2446), + [anon_sym___extension__] = ACTIONS(2444), + [anon_sym_typedef] = ACTIONS(2444), + [anon_sym_virtual] = ACTIONS(2444), + [anon_sym_extern] = ACTIONS(2444), + [anon_sym___attribute__] = ACTIONS(2444), + [anon_sym___attribute] = ACTIONS(2444), + [anon_sym_COLON_COLON] = ACTIONS(2446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2446), + [anon_sym___declspec] = ACTIONS(2444), + [anon_sym___based] = ACTIONS(2444), + [anon_sym_signed] = ACTIONS(2444), + [anon_sym_unsigned] = ACTIONS(2444), + [anon_sym_long] = ACTIONS(2444), + [anon_sym_short] = ACTIONS(2444), + [anon_sym_LBRACK] = ACTIONS(2444), + [anon_sym_static] = ACTIONS(2444), + [anon_sym_register] = ACTIONS(2444), + [anon_sym_inline] = ACTIONS(2444), + [anon_sym___inline] = ACTIONS(2444), + [anon_sym___inline__] = ACTIONS(2444), + [anon_sym___forceinline] = ACTIONS(2444), + [anon_sym_thread_local] = ACTIONS(2444), + [anon_sym___thread] = ACTIONS(2444), + [anon_sym_const] = ACTIONS(2444), + [anon_sym_constexpr] = ACTIONS(2444), + [anon_sym_volatile] = ACTIONS(2444), + [anon_sym_restrict] = ACTIONS(2444), + [anon_sym___restrict__] = ACTIONS(2444), + [anon_sym__Atomic] = ACTIONS(2444), + [anon_sym__Noreturn] = ACTIONS(2444), + [anon_sym_noreturn] = ACTIONS(2444), + [anon_sym__Nonnull] = ACTIONS(2444), + [anon_sym_mutable] = ACTIONS(2444), + [anon_sym_constinit] = ACTIONS(2444), + [anon_sym_consteval] = ACTIONS(2444), + [anon_sym_alignas] = ACTIONS(2444), + [anon_sym__Alignas] = ACTIONS(2444), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_enum] = ACTIONS(2444), + [anon_sym_class] = ACTIONS(2444), + [anon_sym_struct] = ACTIONS(2444), + [anon_sym_union] = ACTIONS(2444), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2444), + [anon_sym_decltype] = ACTIONS(2444), + [anon_sym_explicit] = ACTIONS(2444), + [anon_sym_typename] = ACTIONS(2444), + [anon_sym_template] = ACTIONS(2444), + [anon_sym_operator] = ACTIONS(2444), + [anon_sym_friend] = ACTIONS(2444), + [anon_sym_public] = ACTIONS(2444), + [anon_sym_private] = ACTIONS(2444), + [anon_sym_protected] = ACTIONS(2444), + [anon_sym_using] = ACTIONS(2444), + [anon_sym_static_assert] = ACTIONS(2444), + [sym_macro_statement] = ACTIONS(2444), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2444), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2444), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2444), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2444), + [anon_sym_MOZ_COLD] = ACTIONS(2444), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2444), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2444), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2444), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2444), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2444), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2444), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2444), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2444), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2444), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2444), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2444), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2444), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2444), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_NONNULL] = ACTIONS(2444), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2444), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2444), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2444), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2444), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2444), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2444), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2444), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2444), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2444), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2444), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2444), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2444), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2444), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2444), + [anon_sym_MOZ_RAII] = ACTIONS(2444), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2444), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2444), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2444), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2444), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2444), + }, + [STATE(1199)] = { + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token2] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_AMP_AMP] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_virtual] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_COLON_COLON] = ACTIONS(2452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___based] = ACTIONS(2450), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_mutable] = ACTIONS(2450), + [anon_sym_constinit] = ACTIONS(2450), + [anon_sym_consteval] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_class] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2450), + [anon_sym_decltype] = ACTIONS(2450), + [anon_sym_explicit] = ACTIONS(2450), + [anon_sym_typename] = ACTIONS(2450), + [anon_sym_template] = ACTIONS(2450), + [anon_sym_operator] = ACTIONS(2450), + [anon_sym_friend] = ACTIONS(2450), + [anon_sym_public] = ACTIONS(2450), + [anon_sym_private] = ACTIONS(2450), + [anon_sym_protected] = ACTIONS(2450), + [anon_sym_using] = ACTIONS(2450), + [anon_sym_static_assert] = ACTIONS(2450), + [sym_macro_statement] = ACTIONS(2450), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2450), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2450), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2450), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2450), + [anon_sym_MOZ_COLD] = ACTIONS(2450), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2450), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2450), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2450), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2450), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2450), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2450), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2450), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2450), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2450), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2450), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2450), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2450), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2450), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_NONNULL] = ACTIONS(2450), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2450), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2450), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2450), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2450), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2450), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2450), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2450), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2450), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2450), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2450), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2450), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2450), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2450), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2450), + [anon_sym_MOZ_RAII] = ACTIONS(2450), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2450), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2450), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2450), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2450), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2450), + }, + [STATE(1200)] = { + [sym_identifier] = ACTIONS(2202), + [aux_sym_preproc_def_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token2] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2202), + [sym_preproc_directive] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym___extension__] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2202), + [anon_sym_virtual] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym___attribute__] = ACTIONS(2202), + [anon_sym___attribute] = ACTIONS(2202), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2204), + [anon_sym___declspec] = ACTIONS(2202), + [anon_sym___based] = ACTIONS(2202), + [anon_sym_signed] = ACTIONS(2202), + [anon_sym_unsigned] = ACTIONS(2202), + [anon_sym_long] = ACTIONS(2202), + [anon_sym_short] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_register] = ACTIONS(2202), + [anon_sym_inline] = ACTIONS(2202), + [anon_sym___inline] = ACTIONS(2202), + [anon_sym___inline__] = ACTIONS(2202), + [anon_sym___forceinline] = ACTIONS(2202), + [anon_sym_thread_local] = ACTIONS(2202), + [anon_sym___thread] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_constexpr] = ACTIONS(2202), + [anon_sym_volatile] = ACTIONS(2202), + [anon_sym_restrict] = ACTIONS(2202), + [anon_sym___restrict__] = ACTIONS(2202), + [anon_sym__Atomic] = ACTIONS(2202), + [anon_sym__Noreturn] = ACTIONS(2202), + [anon_sym_noreturn] = ACTIONS(2202), + [anon_sym__Nonnull] = ACTIONS(2202), + [anon_sym_mutable] = ACTIONS(2202), + [anon_sym_constinit] = ACTIONS(2202), + [anon_sym_consteval] = ACTIONS(2202), + [anon_sym_alignas] = ACTIONS(2202), + [anon_sym__Alignas] = ACTIONS(2202), + [sym_primitive_type] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_class] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2202), + [anon_sym_decltype] = ACTIONS(2202), + [anon_sym_explicit] = ACTIONS(2202), + [anon_sym_typename] = ACTIONS(2202), + [anon_sym_template] = ACTIONS(2202), + [anon_sym_operator] = ACTIONS(2202), + [anon_sym_friend] = ACTIONS(2202), + [anon_sym_public] = ACTIONS(2202), + [anon_sym_private] = ACTIONS(2202), + [anon_sym_protected] = ACTIONS(2202), + [anon_sym_using] = ACTIONS(2202), + [anon_sym_static_assert] = ACTIONS(2202), + [sym_macro_statement] = ACTIONS(2202), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2202), + [anon_sym_MOZ_COLD] = ACTIONS(2202), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2202), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2202), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2202), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2202), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2202), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2202), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2202), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2202), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2202), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2202), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2202), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2202), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_RAII] = ACTIONS(2202), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2202), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2202), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2202), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2202), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2202), + }, + [STATE(1201)] = { + [sym_identifier] = ACTIONS(2202), + [aux_sym_preproc_def_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token2] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2202), + [sym_preproc_directive] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym___extension__] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2202), + [anon_sym_virtual] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym___attribute__] = ACTIONS(2202), + [anon_sym___attribute] = ACTIONS(2202), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2204), + [anon_sym___declspec] = ACTIONS(2202), + [anon_sym___based] = ACTIONS(2202), + [anon_sym_signed] = ACTIONS(2202), + [anon_sym_unsigned] = ACTIONS(2202), + [anon_sym_long] = ACTIONS(2202), + [anon_sym_short] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_register] = ACTIONS(2202), + [anon_sym_inline] = ACTIONS(2202), + [anon_sym___inline] = ACTIONS(2202), + [anon_sym___inline__] = ACTIONS(2202), + [anon_sym___forceinline] = ACTIONS(2202), + [anon_sym_thread_local] = ACTIONS(2202), + [anon_sym___thread] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_constexpr] = ACTIONS(2202), + [anon_sym_volatile] = ACTIONS(2202), + [anon_sym_restrict] = ACTIONS(2202), + [anon_sym___restrict__] = ACTIONS(2202), + [anon_sym__Atomic] = ACTIONS(2202), + [anon_sym__Noreturn] = ACTIONS(2202), + [anon_sym_noreturn] = ACTIONS(2202), + [anon_sym__Nonnull] = ACTIONS(2202), + [anon_sym_mutable] = ACTIONS(2202), + [anon_sym_constinit] = ACTIONS(2202), + [anon_sym_consteval] = ACTIONS(2202), + [anon_sym_alignas] = ACTIONS(2202), + [anon_sym__Alignas] = ACTIONS(2202), + [sym_primitive_type] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_class] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2202), + [anon_sym_decltype] = ACTIONS(2202), + [anon_sym_explicit] = ACTIONS(2202), + [anon_sym_typename] = ACTIONS(2202), + [anon_sym_template] = ACTIONS(2202), + [anon_sym_operator] = ACTIONS(2202), + [anon_sym_friend] = ACTIONS(2202), + [anon_sym_public] = ACTIONS(2202), + [anon_sym_private] = ACTIONS(2202), + [anon_sym_protected] = ACTIONS(2202), + [anon_sym_using] = ACTIONS(2202), + [anon_sym_static_assert] = ACTIONS(2202), + [sym_macro_statement] = ACTIONS(2202), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2202), + [anon_sym_MOZ_COLD] = ACTIONS(2202), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2202), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2202), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2202), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2202), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2202), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2202), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2202), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2202), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2202), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2202), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2202), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2202), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_RAII] = ACTIONS(2202), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2202), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2202), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2202), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2202), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2202), + }, + [STATE(1202)] = { + [sym_identifier] = ACTIONS(2236), + [aux_sym_preproc_def_token1] = ACTIONS(2236), + [aux_sym_preproc_if_token1] = ACTIONS(2236), + [aux_sym_preproc_if_token2] = ACTIONS(2236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2236), + [sym_preproc_directive] = ACTIONS(2236), + [anon_sym_LPAREN2] = ACTIONS(2238), + [anon_sym_TILDE] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_typedef] = ACTIONS(2236), + [anon_sym_virtual] = ACTIONS(2236), + [anon_sym_extern] = ACTIONS(2236), + [anon_sym___attribute__] = ACTIONS(2236), + [anon_sym___attribute] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2238), + [anon_sym___declspec] = ACTIONS(2236), + [anon_sym___based] = ACTIONS(2236), + [anon_sym_signed] = ACTIONS(2236), + [anon_sym_unsigned] = ACTIONS(2236), + [anon_sym_long] = ACTIONS(2236), + [anon_sym_short] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_register] = ACTIONS(2236), + [anon_sym_inline] = ACTIONS(2236), + [anon_sym___inline] = ACTIONS(2236), + [anon_sym___inline__] = ACTIONS(2236), + [anon_sym___forceinline] = ACTIONS(2236), + [anon_sym_thread_local] = ACTIONS(2236), + [anon_sym___thread] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(2236), + [anon_sym_constexpr] = ACTIONS(2236), + [anon_sym_volatile] = ACTIONS(2236), + [anon_sym_restrict] = ACTIONS(2236), + [anon_sym___restrict__] = ACTIONS(2236), + [anon_sym__Atomic] = ACTIONS(2236), + [anon_sym__Noreturn] = ACTIONS(2236), + [anon_sym_noreturn] = ACTIONS(2236), + [anon_sym__Nonnull] = ACTIONS(2236), + [anon_sym_mutable] = ACTIONS(2236), + [anon_sym_constinit] = ACTIONS(2236), + [anon_sym_consteval] = ACTIONS(2236), + [anon_sym_alignas] = ACTIONS(2236), + [anon_sym__Alignas] = ACTIONS(2236), + [sym_primitive_type] = ACTIONS(2236), + [anon_sym_enum] = ACTIONS(2236), + [anon_sym_class] = ACTIONS(2236), + [anon_sym_struct] = ACTIONS(2236), + [anon_sym_union] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2236), + [anon_sym_decltype] = ACTIONS(2236), + [anon_sym_explicit] = ACTIONS(2236), + [anon_sym_typename] = ACTIONS(2236), + [anon_sym_template] = ACTIONS(2236), + [anon_sym_operator] = ACTIONS(2236), + [anon_sym_friend] = ACTIONS(2236), + [anon_sym_public] = ACTIONS(2236), + [anon_sym_private] = ACTIONS(2236), + [anon_sym_protected] = ACTIONS(2236), + [anon_sym_using] = ACTIONS(2236), + [anon_sym_static_assert] = ACTIONS(2236), + [sym_macro_statement] = ACTIONS(2236), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2236), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2236), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2236), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2236), + [anon_sym_MOZ_COLD] = ACTIONS(2236), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2236), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2236), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2236), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2236), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2236), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2236), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2236), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2236), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2236), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2236), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2236), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2236), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2236), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_NONNULL] = ACTIONS(2236), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2236), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2236), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2236), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2236), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2236), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2236), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2236), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2236), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2236), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2236), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2236), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2236), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2236), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2236), + [anon_sym_MOZ_RAII] = ACTIONS(2236), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2236), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2236), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2236), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2236), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2236), + }, + [STATE(1203)] = { + [sym_identifier] = ACTIONS(2412), + [aux_sym_preproc_def_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token2] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2412), + [sym_preproc_directive] = ACTIONS(2412), + [anon_sym_LPAREN2] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym___extension__] = ACTIONS(2412), + [anon_sym_typedef] = ACTIONS(2412), + [anon_sym_virtual] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym___attribute__] = ACTIONS(2412), + [anon_sym___attribute] = ACTIONS(2412), + [anon_sym_COLON_COLON] = ACTIONS(2414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2414), + [anon_sym___declspec] = ACTIONS(2412), + [anon_sym___based] = ACTIONS(2412), + [anon_sym_signed] = ACTIONS(2412), + [anon_sym_unsigned] = ACTIONS(2412), + [anon_sym_long] = ACTIONS(2412), + [anon_sym_short] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym___inline] = ACTIONS(2412), + [anon_sym___inline__] = ACTIONS(2412), + [anon_sym___forceinline] = ACTIONS(2412), + [anon_sym_thread_local] = ACTIONS(2412), + [anon_sym___thread] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_constexpr] = ACTIONS(2412), + [anon_sym_volatile] = ACTIONS(2412), + [anon_sym_restrict] = ACTIONS(2412), + [anon_sym___restrict__] = ACTIONS(2412), + [anon_sym__Atomic] = ACTIONS(2412), + [anon_sym__Noreturn] = ACTIONS(2412), + [anon_sym_noreturn] = ACTIONS(2412), + [anon_sym__Nonnull] = ACTIONS(2412), + [anon_sym_mutable] = ACTIONS(2412), + [anon_sym_constinit] = ACTIONS(2412), + [anon_sym_consteval] = ACTIONS(2412), + [anon_sym_alignas] = ACTIONS(2412), + [anon_sym__Alignas] = ACTIONS(2412), + [sym_primitive_type] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_class] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2412), + [anon_sym_decltype] = ACTIONS(2412), + [anon_sym_explicit] = ACTIONS(2412), + [anon_sym_typename] = ACTIONS(2412), + [anon_sym_template] = ACTIONS(2412), + [anon_sym_operator] = ACTIONS(2412), + [anon_sym_friend] = ACTIONS(2412), + [anon_sym_public] = ACTIONS(2412), + [anon_sym_private] = ACTIONS(2412), + [anon_sym_protected] = ACTIONS(2412), + [anon_sym_using] = ACTIONS(2412), + [anon_sym_static_assert] = ACTIONS(2412), + [sym_macro_statement] = ACTIONS(2412), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2412), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2412), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2412), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2412), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2412), + [anon_sym_MOZ_COLD] = ACTIONS(2412), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2412), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2412), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2412), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2412), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2412), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2412), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2412), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2412), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2412), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2412), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2412), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2412), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2412), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2412), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2412), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2412), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_NONNULL] = ACTIONS(2412), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2412), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2412), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2412), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2412), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_NORETURN] = ACTIONS(2412), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2412), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2412), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2412), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2412), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2412), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2412), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2412), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2412), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2412), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2412), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2412), + [anon_sym_MOZ_RAII] = ACTIONS(2412), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2412), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2412), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2412), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2412), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2412), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2412), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2412), + }, + [STATE(1204)] = { + [sym_identifier] = ACTIONS(2428), + [aux_sym_preproc_def_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token1] = ACTIONS(2428), + [aux_sym_preproc_if_token2] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2428), + [sym_preproc_directive] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2428), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym___extension__] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_virtual] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym___attribute__] = ACTIONS(2428), + [anon_sym___attribute] = ACTIONS(2428), + [anon_sym_COLON_COLON] = ACTIONS(2430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2430), + [anon_sym___declspec] = ACTIONS(2428), + [anon_sym___based] = ACTIONS(2428), + [anon_sym_signed] = ACTIONS(2428), + [anon_sym_unsigned] = ACTIONS(2428), + [anon_sym_long] = ACTIONS(2428), + [anon_sym_short] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym___inline] = ACTIONS(2428), + [anon_sym___inline__] = ACTIONS(2428), + [anon_sym___forceinline] = ACTIONS(2428), + [anon_sym_thread_local] = ACTIONS(2428), + [anon_sym___thread] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_constexpr] = ACTIONS(2428), + [anon_sym_volatile] = ACTIONS(2428), + [anon_sym_restrict] = ACTIONS(2428), + [anon_sym___restrict__] = ACTIONS(2428), + [anon_sym__Atomic] = ACTIONS(2428), + [anon_sym__Noreturn] = ACTIONS(2428), + [anon_sym_noreturn] = ACTIONS(2428), + [anon_sym__Nonnull] = ACTIONS(2428), + [anon_sym_mutable] = ACTIONS(2428), + [anon_sym_constinit] = ACTIONS(2428), + [anon_sym_consteval] = ACTIONS(2428), + [anon_sym_alignas] = ACTIONS(2428), + [anon_sym__Alignas] = ACTIONS(2428), + [sym_primitive_type] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_class] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2428), + [anon_sym_decltype] = ACTIONS(2428), + [anon_sym_explicit] = ACTIONS(2428), + [anon_sym_typename] = ACTIONS(2428), + [anon_sym_template] = ACTIONS(2428), + [anon_sym_operator] = ACTIONS(2428), + [anon_sym_friend] = ACTIONS(2428), + [anon_sym_public] = ACTIONS(2428), + [anon_sym_private] = ACTIONS(2428), + [anon_sym_protected] = ACTIONS(2428), + [anon_sym_using] = ACTIONS(2428), + [anon_sym_static_assert] = ACTIONS(2428), + [sym_macro_statement] = ACTIONS(2428), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2428), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2428), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2428), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2428), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2428), + [anon_sym_MOZ_COLD] = ACTIONS(2428), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2428), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2428), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2428), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2428), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2428), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2428), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2428), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2428), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2428), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2428), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2428), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2428), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2428), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2428), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2428), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2428), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_NONNULL] = ACTIONS(2428), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2428), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2428), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2428), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2428), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_NORETURN] = ACTIONS(2428), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2428), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2428), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2428), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2428), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2428), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2428), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2428), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2428), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2428), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2428), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2428), + [anon_sym_MOZ_RAII] = ACTIONS(2428), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2428), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2428), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2428), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2428), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2428), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2428), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2428), + }, + [STATE(1205)] = { + [sym_identifier] = ACTIONS(2264), + [aux_sym_preproc_def_token1] = ACTIONS(2264), + [aux_sym_preproc_if_token1] = ACTIONS(2264), + [aux_sym_preproc_if_token2] = ACTIONS(2264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2264), + [sym_preproc_directive] = ACTIONS(2264), + [anon_sym_LPAREN2] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_STAR] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_AMP] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym___extension__] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2264), + [anon_sym_virtual] = ACTIONS(2264), + [anon_sym_extern] = ACTIONS(2264), + [anon_sym___attribute__] = ACTIONS(2264), + [anon_sym___attribute] = ACTIONS(2264), + [anon_sym_COLON_COLON] = ACTIONS(2266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2266), + [anon_sym___declspec] = ACTIONS(2264), + [anon_sym___based] = ACTIONS(2264), + [anon_sym_signed] = ACTIONS(2264), + [anon_sym_unsigned] = ACTIONS(2264), + [anon_sym_long] = ACTIONS(2264), + [anon_sym_short] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_register] = ACTIONS(2264), + [anon_sym_inline] = ACTIONS(2264), + [anon_sym___inline] = ACTIONS(2264), + [anon_sym___inline__] = ACTIONS(2264), + [anon_sym___forceinline] = ACTIONS(2264), + [anon_sym_thread_local] = ACTIONS(2264), + [anon_sym___thread] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_constexpr] = ACTIONS(2264), + [anon_sym_volatile] = ACTIONS(2264), + [anon_sym_restrict] = ACTIONS(2264), + [anon_sym___restrict__] = ACTIONS(2264), + [anon_sym__Atomic] = ACTIONS(2264), + [anon_sym__Noreturn] = ACTIONS(2264), + [anon_sym_noreturn] = ACTIONS(2264), + [anon_sym__Nonnull] = ACTIONS(2264), + [anon_sym_mutable] = ACTIONS(2264), + [anon_sym_constinit] = ACTIONS(2264), + [anon_sym_consteval] = ACTIONS(2264), + [anon_sym_alignas] = ACTIONS(2264), + [anon_sym__Alignas] = ACTIONS(2264), + [sym_primitive_type] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + [anon_sym_class] = ACTIONS(2264), + [anon_sym_struct] = ACTIONS(2264), + [anon_sym_union] = ACTIONS(2264), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2264), + [anon_sym_decltype] = ACTIONS(2264), + [anon_sym_explicit] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_template] = ACTIONS(2264), + [anon_sym_operator] = ACTIONS(2264), + [anon_sym_friend] = ACTIONS(2264), + [anon_sym_public] = ACTIONS(2264), + [anon_sym_private] = ACTIONS(2264), + [anon_sym_protected] = ACTIONS(2264), + [anon_sym_using] = ACTIONS(2264), + [anon_sym_static_assert] = ACTIONS(2264), + [sym_macro_statement] = ACTIONS(2264), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2264), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2264), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2264), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2264), + [anon_sym_MOZ_COLD] = ACTIONS(2264), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2264), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2264), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2264), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2264), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2264), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2264), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2264), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2264), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2264), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2264), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2264), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2264), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2264), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_NONNULL] = ACTIONS(2264), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2264), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2264), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2264), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2264), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2264), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2264), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2264), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2264), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2264), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2264), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2264), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2264), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2264), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2264), + [anon_sym_MOZ_RAII] = ACTIONS(2264), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2264), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2264), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2264), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2264), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2264), + }, + [STATE(1206)] = { + [sym_identifier] = ACTIONS(1966), + [aux_sym_preproc_def_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token2] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1966), + [sym_preproc_directive] = ACTIONS(1966), + [anon_sym_LPAREN2] = ACTIONS(1968), + [anon_sym_TILDE] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym___extension__] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1966), + [anon_sym_virtual] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym___attribute__] = ACTIONS(1966), + [anon_sym___attribute] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1966), + [anon_sym___based] = ACTIONS(1966), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_register] = ACTIONS(1966), + [anon_sym_inline] = ACTIONS(1966), + [anon_sym___inline] = ACTIONS(1966), + [anon_sym___inline__] = ACTIONS(1966), + [anon_sym___forceinline] = ACTIONS(1966), + [anon_sym_thread_local] = ACTIONS(1966), + [anon_sym___thread] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_constexpr] = ACTIONS(1966), + [anon_sym_volatile] = ACTIONS(1966), + [anon_sym_restrict] = ACTIONS(1966), + [anon_sym___restrict__] = ACTIONS(1966), + [anon_sym__Atomic] = ACTIONS(1966), + [anon_sym__Noreturn] = ACTIONS(1966), + [anon_sym_noreturn] = ACTIONS(1966), + [anon_sym__Nonnull] = ACTIONS(1966), + [anon_sym_mutable] = ACTIONS(1966), + [anon_sym_constinit] = ACTIONS(1966), + [anon_sym_consteval] = ACTIONS(1966), + [anon_sym_alignas] = ACTIONS(1966), + [anon_sym__Alignas] = ACTIONS(1966), + [sym_primitive_type] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_class] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1966), + [anon_sym_decltype] = ACTIONS(1966), + [anon_sym_explicit] = ACTIONS(1966), + [anon_sym_typename] = ACTIONS(1966), + [anon_sym_template] = ACTIONS(1966), + [anon_sym_operator] = ACTIONS(1966), + [anon_sym_friend] = ACTIONS(1966), + [anon_sym_public] = ACTIONS(1966), + [anon_sym_private] = ACTIONS(1966), + [anon_sym_protected] = ACTIONS(1966), + [anon_sym_using] = ACTIONS(1966), + [anon_sym_static_assert] = ACTIONS(1966), + [sym_macro_statement] = ACTIONS(1966), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1966), + [anon_sym_MOZ_COLD] = ACTIONS(1966), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1966), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1966), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1966), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1966), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1966), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1966), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1966), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1966), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1966), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1966), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1966), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1966), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_RAII] = ACTIONS(1966), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1966), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1966), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1966), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1966), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1966), + }, + [STATE(1207)] = { + [sym_identifier] = ACTIONS(1966), + [aux_sym_preproc_def_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token2] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1966), + [sym_preproc_directive] = ACTIONS(1966), + [anon_sym_LPAREN2] = ACTIONS(1968), + [anon_sym_TILDE] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym___extension__] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1966), + [anon_sym_virtual] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym___attribute__] = ACTIONS(1966), + [anon_sym___attribute] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1966), + [anon_sym___based] = ACTIONS(1966), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_register] = ACTIONS(1966), + [anon_sym_inline] = ACTIONS(1966), + [anon_sym___inline] = ACTIONS(1966), + [anon_sym___inline__] = ACTIONS(1966), + [anon_sym___forceinline] = ACTIONS(1966), + [anon_sym_thread_local] = ACTIONS(1966), + [anon_sym___thread] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_constexpr] = ACTIONS(1966), + [anon_sym_volatile] = ACTIONS(1966), + [anon_sym_restrict] = ACTIONS(1966), + [anon_sym___restrict__] = ACTIONS(1966), + [anon_sym__Atomic] = ACTIONS(1966), + [anon_sym__Noreturn] = ACTIONS(1966), + [anon_sym_noreturn] = ACTIONS(1966), + [anon_sym__Nonnull] = ACTIONS(1966), + [anon_sym_mutable] = ACTIONS(1966), + [anon_sym_constinit] = ACTIONS(1966), + [anon_sym_consteval] = ACTIONS(1966), + [anon_sym_alignas] = ACTIONS(1966), + [anon_sym__Alignas] = ACTIONS(1966), + [sym_primitive_type] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_class] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1966), + [anon_sym_decltype] = ACTIONS(1966), + [anon_sym_explicit] = ACTIONS(1966), + [anon_sym_typename] = ACTIONS(1966), + [anon_sym_template] = ACTIONS(1966), + [anon_sym_operator] = ACTIONS(1966), + [anon_sym_friend] = ACTIONS(1966), + [anon_sym_public] = ACTIONS(1966), + [anon_sym_private] = ACTIONS(1966), + [anon_sym_protected] = ACTIONS(1966), + [anon_sym_using] = ACTIONS(1966), + [anon_sym_static_assert] = ACTIONS(1966), + [sym_macro_statement] = ACTIONS(1966), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1966), + [anon_sym_MOZ_COLD] = ACTIONS(1966), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1966), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1966), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1966), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1966), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1966), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1966), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1966), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1966), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1966), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1966), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1966), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1966), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL] = ACTIONS(1966), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1966), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1966), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN] = ACTIONS(1966), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1966), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1966), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1966), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1966), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1966), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1966), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1966), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1966), + [anon_sym_MOZ_RAII] = ACTIONS(1966), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1966), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1966), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1966), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1966), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1966), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1966), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1966), + }, + [STATE(1208)] = { + [sym_identifier] = ACTIONS(4364), + [aux_sym_preproc_def_token1] = ACTIONS(4364), + [aux_sym_preproc_if_token1] = ACTIONS(4364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4364), + [sym_preproc_directive] = ACTIONS(4364), + [anon_sym_LPAREN2] = ACTIONS(4366), + [anon_sym_TILDE] = ACTIONS(4366), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4364), + [anon_sym_SEMI] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(4364), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(4364), + [anon_sym_extern] = ACTIONS(4364), + [anon_sym___attribute__] = ACTIONS(4364), + [anon_sym___attribute] = ACTIONS(4364), + [anon_sym_COLON_COLON] = ACTIONS(4366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4366), + [anon_sym___declspec] = ACTIONS(4364), + [anon_sym___based] = ACTIONS(4364), + [anon_sym_RBRACE] = ACTIONS(4366), + [anon_sym_signed] = ACTIONS(4364), + [anon_sym_unsigned] = ACTIONS(4364), + [anon_sym_long] = ACTIONS(4364), + [anon_sym_short] = ACTIONS(4364), + [anon_sym_LBRACK] = ACTIONS(4364), + [anon_sym_static] = ACTIONS(4364), + [anon_sym_register] = ACTIONS(4364), + [anon_sym_inline] = ACTIONS(4364), + [anon_sym___inline] = ACTIONS(4364), + [anon_sym___inline__] = ACTIONS(4364), + [anon_sym___forceinline] = ACTIONS(4364), + [anon_sym_thread_local] = ACTIONS(4364), + [anon_sym___thread] = ACTIONS(4364), + [anon_sym_const] = ACTIONS(4364), + [anon_sym_constexpr] = ACTIONS(4364), + [anon_sym_volatile] = ACTIONS(4364), + [anon_sym_restrict] = ACTIONS(4364), + [anon_sym___restrict__] = ACTIONS(4364), + [anon_sym__Atomic] = ACTIONS(4364), + [anon_sym__Noreturn] = ACTIONS(4364), + [anon_sym_noreturn] = ACTIONS(4364), + [anon_sym__Nonnull] = ACTIONS(4364), + [anon_sym_mutable] = ACTIONS(4364), + [anon_sym_constinit] = ACTIONS(4364), + [anon_sym_consteval] = ACTIONS(4364), + [anon_sym_alignas] = ACTIONS(4364), + [anon_sym__Alignas] = ACTIONS(4364), + [sym_primitive_type] = ACTIONS(4364), + [anon_sym_enum] = ACTIONS(4364), + [anon_sym_class] = ACTIONS(4364), + [anon_sym_struct] = ACTIONS(4364), + [anon_sym_union] = ACTIONS(4364), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4364), + [anon_sym_decltype] = ACTIONS(4364), + [anon_sym_explicit] = ACTIONS(4364), + [anon_sym_typename] = ACTIONS(4364), + [anon_sym_template] = ACTIONS(4364), + [anon_sym_operator] = ACTIONS(4364), + [anon_sym_friend] = ACTIONS(4364), + [anon_sym_public] = ACTIONS(4364), + [anon_sym_private] = ACTIONS(4364), + [anon_sym_protected] = ACTIONS(4364), + [anon_sym_using] = ACTIONS(4364), + [anon_sym_static_assert] = ACTIONS(4364), + [sym_macro_statement] = ACTIONS(4364), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4364), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4364), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4364), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4364), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4364), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4364), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4364), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4364), + [anon_sym_MOZ_COLD] = ACTIONS(4364), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4364), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4364), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4364), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4364), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4364), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4364), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4364), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4364), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4364), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4364), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4364), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4364), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4364), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4364), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4364), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4364), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4364), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4364), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4364), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4364), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_NONNULL] = ACTIONS(4364), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4364), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4364), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4364), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4364), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4364), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_NORETURN] = ACTIONS(4364), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4364), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4364), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4364), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4364), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4364), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4364), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4364), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4364), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4364), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4364), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4364), + [anon_sym_MOZ_RAII] = ACTIONS(4364), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4364), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4364), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4364), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4364), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4364), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4364), + }, + [STATE(1209)] = { + [sym_identifier] = ACTIONS(2152), + [aux_sym_preproc_def_token1] = ACTIONS(2152), + [aux_sym_preproc_if_token1] = ACTIONS(2152), + [aux_sym_preproc_if_token2] = ACTIONS(2152), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2152), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2152), + [sym_preproc_directive] = ACTIONS(2152), + [anon_sym_LPAREN2] = ACTIONS(2154), + [anon_sym_TILDE] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2154), + [anon_sym_AMP_AMP] = ACTIONS(2154), + [anon_sym_AMP] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym___extension__] = ACTIONS(2152), + [anon_sym_typedef] = ACTIONS(2152), + [anon_sym_virtual] = ACTIONS(2152), + [anon_sym_extern] = ACTIONS(2152), + [anon_sym___attribute__] = ACTIONS(2152), + [anon_sym___attribute] = ACTIONS(2152), + [anon_sym_COLON_COLON] = ACTIONS(2154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2154), + [anon_sym___declspec] = ACTIONS(2152), + [anon_sym___based] = ACTIONS(2152), + [anon_sym_signed] = ACTIONS(2152), + [anon_sym_unsigned] = ACTIONS(2152), + [anon_sym_long] = ACTIONS(2152), + [anon_sym_short] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_register] = ACTIONS(2152), + [anon_sym_inline] = ACTIONS(2152), + [anon_sym___inline] = ACTIONS(2152), + [anon_sym___inline__] = ACTIONS(2152), + [anon_sym___forceinline] = ACTIONS(2152), + [anon_sym_thread_local] = ACTIONS(2152), + [anon_sym___thread] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_constexpr] = ACTIONS(2152), + [anon_sym_volatile] = ACTIONS(2152), + [anon_sym_restrict] = ACTIONS(2152), + [anon_sym___restrict__] = ACTIONS(2152), + [anon_sym__Atomic] = ACTIONS(2152), + [anon_sym__Noreturn] = ACTIONS(2152), + [anon_sym_noreturn] = ACTIONS(2152), + [anon_sym__Nonnull] = ACTIONS(2152), + [anon_sym_mutable] = ACTIONS(2152), + [anon_sym_constinit] = ACTIONS(2152), + [anon_sym_consteval] = ACTIONS(2152), + [anon_sym_alignas] = ACTIONS(2152), + [anon_sym__Alignas] = ACTIONS(2152), + [sym_primitive_type] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_struct] = ACTIONS(2152), + [anon_sym_union] = ACTIONS(2152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2152), + [anon_sym_decltype] = ACTIONS(2152), + [anon_sym_explicit] = ACTIONS(2152), + [anon_sym_typename] = ACTIONS(2152), + [anon_sym_template] = ACTIONS(2152), + [anon_sym_operator] = ACTIONS(2152), + [anon_sym_friend] = ACTIONS(2152), + [anon_sym_public] = ACTIONS(2152), + [anon_sym_private] = ACTIONS(2152), + [anon_sym_protected] = ACTIONS(2152), + [anon_sym_using] = ACTIONS(2152), + [anon_sym_static_assert] = ACTIONS(2152), + [sym_macro_statement] = ACTIONS(2152), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2152), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2152), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2152), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2152), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2152), + [anon_sym_MOZ_COLD] = ACTIONS(2152), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2152), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2152), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2152), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2152), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2152), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2152), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2152), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2152), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2152), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2152), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2152), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2152), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2152), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2152), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2152), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2152), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_NONNULL] = ACTIONS(2152), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2152), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2152), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2152), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2152), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_NORETURN] = ACTIONS(2152), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2152), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2152), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2152), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2152), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2152), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2152), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2152), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2152), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2152), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2152), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2152), + [anon_sym_MOZ_RAII] = ACTIONS(2152), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2152), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2152), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2152), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2152), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2152), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2152), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2152), + }, + [STATE(1210)] = { + [sym_identifier] = ACTIONS(2156), + [aux_sym_preproc_def_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token2] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2156), + [sym_preproc_directive] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2158), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym___extension__] = ACTIONS(2156), + [anon_sym_typedef] = ACTIONS(2156), + [anon_sym_virtual] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym___attribute__] = ACTIONS(2156), + [anon_sym___attribute] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2158), + [anon_sym___declspec] = ACTIONS(2156), + [anon_sym___based] = ACTIONS(2156), + [anon_sym_signed] = ACTIONS(2156), + [anon_sym_unsigned] = ACTIONS(2156), + [anon_sym_long] = ACTIONS(2156), + [anon_sym_short] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_inline] = ACTIONS(2156), + [anon_sym___inline] = ACTIONS(2156), + [anon_sym___inline__] = ACTIONS(2156), + [anon_sym___forceinline] = ACTIONS(2156), + [anon_sym_thread_local] = ACTIONS(2156), + [anon_sym___thread] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_constexpr] = ACTIONS(2156), + [anon_sym_volatile] = ACTIONS(2156), + [anon_sym_restrict] = ACTIONS(2156), + [anon_sym___restrict__] = ACTIONS(2156), + [anon_sym__Atomic] = ACTIONS(2156), + [anon_sym__Noreturn] = ACTIONS(2156), + [anon_sym_noreturn] = ACTIONS(2156), + [anon_sym__Nonnull] = ACTIONS(2156), + [anon_sym_mutable] = ACTIONS(2156), + [anon_sym_constinit] = ACTIONS(2156), + [anon_sym_consteval] = ACTIONS(2156), + [anon_sym_alignas] = ACTIONS(2156), + [anon_sym__Alignas] = ACTIONS(2156), + [sym_primitive_type] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2156), + [anon_sym_decltype] = ACTIONS(2156), + [anon_sym_explicit] = ACTIONS(2156), + [anon_sym_typename] = ACTIONS(2156), + [anon_sym_template] = ACTIONS(2156), + [anon_sym_operator] = ACTIONS(2156), + [anon_sym_friend] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_static_assert] = ACTIONS(2156), + [sym_macro_statement] = ACTIONS(2156), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2156), + [anon_sym_MOZ_COLD] = ACTIONS(2156), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2156), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2156), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2156), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2156), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2156), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2156), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2156), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2156), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2156), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2156), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2156), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2156), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_RAII] = ACTIONS(2156), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2156), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2156), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2156), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2156), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2156), + }, + [STATE(1211)] = { + [sym_identifier] = ACTIONS(2156), + [aux_sym_preproc_def_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token1] = ACTIONS(2156), + [aux_sym_preproc_if_token2] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2156), + [sym_preproc_directive] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2158), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym___extension__] = ACTIONS(2156), + [anon_sym_typedef] = ACTIONS(2156), + [anon_sym_virtual] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym___attribute__] = ACTIONS(2156), + [anon_sym___attribute] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2158), + [anon_sym___declspec] = ACTIONS(2156), + [anon_sym___based] = ACTIONS(2156), + [anon_sym_signed] = ACTIONS(2156), + [anon_sym_unsigned] = ACTIONS(2156), + [anon_sym_long] = ACTIONS(2156), + [anon_sym_short] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_inline] = ACTIONS(2156), + [anon_sym___inline] = ACTIONS(2156), + [anon_sym___inline__] = ACTIONS(2156), + [anon_sym___forceinline] = ACTIONS(2156), + [anon_sym_thread_local] = ACTIONS(2156), + [anon_sym___thread] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_constexpr] = ACTIONS(2156), + [anon_sym_volatile] = ACTIONS(2156), + [anon_sym_restrict] = ACTIONS(2156), + [anon_sym___restrict__] = ACTIONS(2156), + [anon_sym__Atomic] = ACTIONS(2156), + [anon_sym__Noreturn] = ACTIONS(2156), + [anon_sym_noreturn] = ACTIONS(2156), + [anon_sym__Nonnull] = ACTIONS(2156), + [anon_sym_mutable] = ACTIONS(2156), + [anon_sym_constinit] = ACTIONS(2156), + [anon_sym_consteval] = ACTIONS(2156), + [anon_sym_alignas] = ACTIONS(2156), + [anon_sym__Alignas] = ACTIONS(2156), + [sym_primitive_type] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [anon_sym_class] = ACTIONS(2156), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2156), + [anon_sym_decltype] = ACTIONS(2156), + [anon_sym_explicit] = ACTIONS(2156), + [anon_sym_typename] = ACTIONS(2156), + [anon_sym_template] = ACTIONS(2156), + [anon_sym_operator] = ACTIONS(2156), + [anon_sym_friend] = ACTIONS(2156), + [anon_sym_public] = ACTIONS(2156), + [anon_sym_private] = ACTIONS(2156), + [anon_sym_protected] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2156), + [anon_sym_static_assert] = ACTIONS(2156), + [sym_macro_statement] = ACTIONS(2156), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2156), + [anon_sym_MOZ_COLD] = ACTIONS(2156), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2156), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2156), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2156), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2156), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2156), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2156), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2156), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2156), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2156), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2156), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2156), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2156), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL] = ACTIONS(2156), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2156), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2156), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN] = ACTIONS(2156), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2156), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2156), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2156), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2156), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2156), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2156), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2156), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2156), + [anon_sym_MOZ_RAII] = ACTIONS(2156), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2156), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2156), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2156), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2156), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2156), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2156), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2156), + }, + [STATE(1212)] = { + [sym_identifier] = ACTIONS(4364), + [aux_sym_preproc_def_token1] = ACTIONS(4364), + [aux_sym_preproc_if_token1] = ACTIONS(4364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4364), + [sym_preproc_directive] = ACTIONS(4364), + [anon_sym_LPAREN2] = ACTIONS(4366), + [anon_sym_TILDE] = ACTIONS(4366), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4364), + [anon_sym_SEMI] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(4364), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(4364), + [anon_sym_extern] = ACTIONS(4364), + [anon_sym___attribute__] = ACTIONS(4364), + [anon_sym___attribute] = ACTIONS(4364), + [anon_sym_COLON_COLON] = ACTIONS(4366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4366), + [anon_sym___declspec] = ACTIONS(4364), + [anon_sym___based] = ACTIONS(4364), + [anon_sym_RBRACE] = ACTIONS(4366), + [anon_sym_signed] = ACTIONS(4364), + [anon_sym_unsigned] = ACTIONS(4364), + [anon_sym_long] = ACTIONS(4364), + [anon_sym_short] = ACTIONS(4364), + [anon_sym_LBRACK] = ACTIONS(4364), + [anon_sym_static] = ACTIONS(4364), + [anon_sym_register] = ACTIONS(4364), + [anon_sym_inline] = ACTIONS(4364), + [anon_sym___inline] = ACTIONS(4364), + [anon_sym___inline__] = ACTIONS(4364), + [anon_sym___forceinline] = ACTIONS(4364), + [anon_sym_thread_local] = ACTIONS(4364), + [anon_sym___thread] = ACTIONS(4364), + [anon_sym_const] = ACTIONS(4364), + [anon_sym_constexpr] = ACTIONS(4364), + [anon_sym_volatile] = ACTIONS(4364), + [anon_sym_restrict] = ACTIONS(4364), + [anon_sym___restrict__] = ACTIONS(4364), + [anon_sym__Atomic] = ACTIONS(4364), + [anon_sym__Noreturn] = ACTIONS(4364), + [anon_sym_noreturn] = ACTIONS(4364), + [anon_sym__Nonnull] = ACTIONS(4364), + [anon_sym_mutable] = ACTIONS(4364), + [anon_sym_constinit] = ACTIONS(4364), + [anon_sym_consteval] = ACTIONS(4364), + [anon_sym_alignas] = ACTIONS(4364), + [anon_sym__Alignas] = ACTIONS(4364), + [sym_primitive_type] = ACTIONS(4364), + [anon_sym_enum] = ACTIONS(4364), + [anon_sym_class] = ACTIONS(4364), + [anon_sym_struct] = ACTIONS(4364), + [anon_sym_union] = ACTIONS(4364), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4364), + [anon_sym_decltype] = ACTIONS(4364), + [anon_sym_explicit] = ACTIONS(4364), + [anon_sym_typename] = ACTIONS(4364), + [anon_sym_template] = ACTIONS(4364), + [anon_sym_operator] = ACTIONS(4364), + [anon_sym_friend] = ACTIONS(4364), + [anon_sym_public] = ACTIONS(4364), + [anon_sym_private] = ACTIONS(4364), + [anon_sym_protected] = ACTIONS(4364), + [anon_sym_using] = ACTIONS(4364), + [anon_sym_static_assert] = ACTIONS(4364), + [sym_macro_statement] = ACTIONS(4364), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4364), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4364), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4364), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4364), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4364), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4364), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4364), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4364), + [anon_sym_MOZ_COLD] = ACTIONS(4364), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4364), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4364), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4364), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4364), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4364), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4364), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4364), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4364), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4364), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4364), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4364), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4364), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4364), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4364), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4364), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4364), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4364), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4364), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4364), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4364), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_NONNULL] = ACTIONS(4364), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4364), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4364), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4364), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4364), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4364), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_NORETURN] = ACTIONS(4364), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4364), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4364), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4364), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4364), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4364), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4364), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4364), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4364), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4364), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4364), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4364), + [anon_sym_MOZ_RAII] = ACTIONS(4364), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4364), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4364), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4364), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4364), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4364), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4364), + }, + [STATE(1213)] = { + [sym_identifier] = ACTIONS(2408), + [aux_sym_preproc_def_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_LPAREN2] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_AMP_AMP] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2408), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym___extension__] = ACTIONS(2408), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_virtual] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym___attribute__] = ACTIONS(2408), + [anon_sym___attribute] = ACTIONS(2408), + [anon_sym_COLON_COLON] = ACTIONS(2410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2410), + [anon_sym___declspec] = ACTIONS(2408), + [anon_sym___based] = ACTIONS(2408), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_signed] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym___inline] = ACTIONS(2408), + [anon_sym___inline__] = ACTIONS(2408), + [anon_sym___forceinline] = ACTIONS(2408), + [anon_sym_thread_local] = ACTIONS(2408), + [anon_sym___thread] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_constexpr] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym___restrict__] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym__Noreturn] = ACTIONS(2408), + [anon_sym_noreturn] = ACTIONS(2408), + [anon_sym__Nonnull] = ACTIONS(2408), + [anon_sym_mutable] = ACTIONS(2408), + [anon_sym_constinit] = ACTIONS(2408), + [anon_sym_consteval] = ACTIONS(2408), + [anon_sym_alignas] = ACTIONS(2408), + [anon_sym__Alignas] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_class] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2408), + [anon_sym_decltype] = ACTIONS(2408), + [anon_sym_explicit] = ACTIONS(2408), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_template] = ACTIONS(2408), + [anon_sym_operator] = ACTIONS(2408), + [anon_sym_friend] = ACTIONS(2408), + [anon_sym_public] = ACTIONS(2408), + [anon_sym_private] = ACTIONS(2408), + [anon_sym_protected] = ACTIONS(2408), + [anon_sym_using] = ACTIONS(2408), + [anon_sym_static_assert] = ACTIONS(2408), + [sym_macro_statement] = ACTIONS(2408), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2408), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2408), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2408), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2408), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2408), + [anon_sym_MOZ_COLD] = ACTIONS(2408), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2408), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2408), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2408), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2408), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2408), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2408), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2408), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2408), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2408), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2408), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2408), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2408), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2408), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2408), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2408), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2408), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_NONNULL] = ACTIONS(2408), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2408), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2408), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2408), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2408), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_NORETURN] = ACTIONS(2408), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2408), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2408), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2408), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2408), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2408), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2408), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2408), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2408), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2408), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2408), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2408), + [anon_sym_MOZ_RAII] = ACTIONS(2408), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2408), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2408), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2408), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2408), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2408), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2408), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2408), + }, + [STATE(1214)] = { + [sym_identifier] = ACTIONS(2120), + [aux_sym_preproc_def_token1] = ACTIONS(2120), + [aux_sym_preproc_if_token1] = ACTIONS(2120), + [aux_sym_preproc_if_token2] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), + [sym_preproc_directive] = ACTIONS(2120), + [anon_sym_LPAREN2] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym___extension__] = ACTIONS(2120), + [anon_sym_typedef] = ACTIONS(2120), + [anon_sym_virtual] = ACTIONS(2120), + [anon_sym_extern] = ACTIONS(2120), + [anon_sym___attribute__] = ACTIONS(2120), + [anon_sym___attribute] = ACTIONS(2120), + [anon_sym_COLON_COLON] = ACTIONS(2122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2122), + [anon_sym___declspec] = ACTIONS(2120), + [anon_sym___based] = ACTIONS(2120), + [anon_sym_signed] = ACTIONS(2120), + [anon_sym_unsigned] = ACTIONS(2120), + [anon_sym_long] = ACTIONS(2120), + [anon_sym_short] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_register] = ACTIONS(2120), + [anon_sym_inline] = ACTIONS(2120), + [anon_sym___inline] = ACTIONS(2120), + [anon_sym___inline__] = ACTIONS(2120), + [anon_sym___forceinline] = ACTIONS(2120), + [anon_sym_thread_local] = ACTIONS(2120), + [anon_sym___thread] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_constexpr] = ACTIONS(2120), + [anon_sym_volatile] = ACTIONS(2120), + [anon_sym_restrict] = ACTIONS(2120), + [anon_sym___restrict__] = ACTIONS(2120), + [anon_sym__Atomic] = ACTIONS(2120), + [anon_sym__Noreturn] = ACTIONS(2120), + [anon_sym_noreturn] = ACTIONS(2120), + [anon_sym__Nonnull] = ACTIONS(2120), + [anon_sym_mutable] = ACTIONS(2120), + [anon_sym_constinit] = ACTIONS(2120), + [anon_sym_consteval] = ACTIONS(2120), + [anon_sym_alignas] = ACTIONS(2120), + [anon_sym__Alignas] = ACTIONS(2120), + [sym_primitive_type] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_union] = ACTIONS(2120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2120), + [anon_sym_decltype] = ACTIONS(2120), + [anon_sym_explicit] = ACTIONS(2120), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(2120), + [anon_sym_operator] = ACTIONS(2120), + [anon_sym_friend] = ACTIONS(2120), + [anon_sym_public] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_using] = ACTIONS(2120), + [anon_sym_static_assert] = ACTIONS(2120), + [sym_macro_statement] = ACTIONS(2120), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2120), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2120), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2120), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2120), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2120), + [anon_sym_MOZ_COLD] = ACTIONS(2120), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2120), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2120), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2120), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2120), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2120), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2120), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2120), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2120), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2120), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2120), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2120), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2120), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2120), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2120), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2120), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2120), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_NONNULL] = ACTIONS(2120), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2120), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2120), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2120), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2120), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_NORETURN] = ACTIONS(2120), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2120), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2120), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2120), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2120), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2120), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2120), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2120), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2120), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2120), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2120), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2120), + [anon_sym_MOZ_RAII] = ACTIONS(2120), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2120), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2120), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2120), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2120), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2120), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2120), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2120), + }, + [STATE(1215)] = { + [sym_identifier] = ACTIONS(4368), + [aux_sym_preproc_def_token1] = ACTIONS(4368), + [aux_sym_preproc_if_token1] = ACTIONS(4368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4368), + [sym_preproc_directive] = ACTIONS(4368), + [anon_sym_LPAREN2] = ACTIONS(4370), + [anon_sym_TILDE] = ACTIONS(4370), + [anon_sym_STAR] = ACTIONS(4370), + [anon_sym_AMP_AMP] = ACTIONS(4370), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym_SEMI] = ACTIONS(4370), + [anon_sym___extension__] = ACTIONS(4368), + [anon_sym_typedef] = ACTIONS(4368), + [anon_sym_virtual] = ACTIONS(4368), + [anon_sym_extern] = ACTIONS(4368), + [anon_sym___attribute__] = ACTIONS(4368), + [anon_sym___attribute] = ACTIONS(4368), + [anon_sym_COLON_COLON] = ACTIONS(4370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4370), + [anon_sym___declspec] = ACTIONS(4368), + [anon_sym___based] = ACTIONS(4368), + [anon_sym_RBRACE] = ACTIONS(4370), + [anon_sym_signed] = ACTIONS(4368), + [anon_sym_unsigned] = ACTIONS(4368), + [anon_sym_long] = ACTIONS(4368), + [anon_sym_short] = ACTIONS(4368), + [anon_sym_LBRACK] = ACTIONS(4368), + [anon_sym_static] = ACTIONS(4368), + [anon_sym_register] = ACTIONS(4368), + [anon_sym_inline] = ACTIONS(4368), + [anon_sym___inline] = ACTIONS(4368), + [anon_sym___inline__] = ACTIONS(4368), + [anon_sym___forceinline] = ACTIONS(4368), + [anon_sym_thread_local] = ACTIONS(4368), + [anon_sym___thread] = ACTIONS(4368), + [anon_sym_const] = ACTIONS(4368), + [anon_sym_constexpr] = ACTIONS(4368), + [anon_sym_volatile] = ACTIONS(4368), + [anon_sym_restrict] = ACTIONS(4368), + [anon_sym___restrict__] = ACTIONS(4368), + [anon_sym__Atomic] = ACTIONS(4368), + [anon_sym__Noreturn] = ACTIONS(4368), + [anon_sym_noreturn] = ACTIONS(4368), + [anon_sym__Nonnull] = ACTIONS(4368), + [anon_sym_mutable] = ACTIONS(4368), + [anon_sym_constinit] = ACTIONS(4368), + [anon_sym_consteval] = ACTIONS(4368), + [anon_sym_alignas] = ACTIONS(4368), + [anon_sym__Alignas] = ACTIONS(4368), + [sym_primitive_type] = ACTIONS(4368), + [anon_sym_enum] = ACTIONS(4368), + [anon_sym_class] = ACTIONS(4368), + [anon_sym_struct] = ACTIONS(4368), + [anon_sym_union] = ACTIONS(4368), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4368), + [anon_sym_decltype] = ACTIONS(4368), + [anon_sym_explicit] = ACTIONS(4368), + [anon_sym_typename] = ACTIONS(4368), + [anon_sym_template] = ACTIONS(4368), + [anon_sym_operator] = ACTIONS(4368), + [anon_sym_friend] = ACTIONS(4368), + [anon_sym_public] = ACTIONS(4368), + [anon_sym_private] = ACTIONS(4368), + [anon_sym_protected] = ACTIONS(4368), + [anon_sym_using] = ACTIONS(4368), + [anon_sym_static_assert] = ACTIONS(4368), + [sym_macro_statement] = ACTIONS(4368), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4368), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4368), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4368), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4368), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4368), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4368), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4368), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4368), + [anon_sym_MOZ_COLD] = ACTIONS(4368), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4368), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4368), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4368), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4368), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4368), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4368), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4368), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4368), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4368), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4368), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4368), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4368), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4368), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4368), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4368), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4368), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4368), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4368), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4368), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4368), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_NONNULL] = ACTIONS(4368), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4368), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4368), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4368), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4368), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4368), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_NORETURN] = ACTIONS(4368), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4368), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4368), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4368), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4368), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4368), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4368), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4368), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4368), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4368), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4368), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4368), + [anon_sym_MOZ_RAII] = ACTIONS(4368), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4368), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4368), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4368), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4368), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4368), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4368), + }, + [STATE(1216)] = { + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2420), + [sym_preproc_directive] = ACTIONS(2420), + [anon_sym_LPAREN2] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym___extension__] = ACTIONS(2420), + [anon_sym_typedef] = ACTIONS(2420), + [anon_sym_virtual] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym___attribute__] = ACTIONS(2420), + [anon_sym___attribute] = ACTIONS(2420), + [anon_sym_COLON_COLON] = ACTIONS(2422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2422), + [anon_sym___declspec] = ACTIONS(2420), + [anon_sym___based] = ACTIONS(2420), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_signed] = ACTIONS(2420), + [anon_sym_unsigned] = ACTIONS(2420), + [anon_sym_long] = ACTIONS(2420), + [anon_sym_short] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_inline] = ACTIONS(2420), + [anon_sym___inline] = ACTIONS(2420), + [anon_sym___inline__] = ACTIONS(2420), + [anon_sym___forceinline] = ACTIONS(2420), + [anon_sym_thread_local] = ACTIONS(2420), + [anon_sym___thread] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_constexpr] = ACTIONS(2420), + [anon_sym_volatile] = ACTIONS(2420), + [anon_sym_restrict] = ACTIONS(2420), + [anon_sym___restrict__] = ACTIONS(2420), + [anon_sym__Atomic] = ACTIONS(2420), + [anon_sym__Noreturn] = ACTIONS(2420), + [anon_sym_noreturn] = ACTIONS(2420), + [anon_sym__Nonnull] = ACTIONS(2420), + [anon_sym_mutable] = ACTIONS(2420), + [anon_sym_constinit] = ACTIONS(2420), + [anon_sym_consteval] = ACTIONS(2420), + [anon_sym_alignas] = ACTIONS(2420), + [anon_sym__Alignas] = ACTIONS(2420), + [sym_primitive_type] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_class] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2420), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_explicit] = ACTIONS(2420), + [anon_sym_typename] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2420), + [anon_sym_operator] = ACTIONS(2420), + [anon_sym_friend] = ACTIONS(2420), + [anon_sym_public] = ACTIONS(2420), + [anon_sym_private] = ACTIONS(2420), + [anon_sym_protected] = ACTIONS(2420), + [anon_sym_using] = ACTIONS(2420), + [anon_sym_static_assert] = ACTIONS(2420), + [sym_macro_statement] = ACTIONS(2420), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2420), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2420), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2420), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2420), + [anon_sym_MOZ_COLD] = ACTIONS(2420), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2420), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2420), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2420), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2420), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2420), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2420), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2420), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2420), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2420), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2420), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2420), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2420), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2420), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2420), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2420), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2420), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_NONNULL] = ACTIONS(2420), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2420), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2420), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2420), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2420), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_NORETURN] = ACTIONS(2420), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2420), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2420), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2420), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2420), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2420), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2420), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2420), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2420), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2420), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2420), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2420), + [anon_sym_MOZ_RAII] = ACTIONS(2420), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2420), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2420), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2420), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2420), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2420), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2420), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2420), + }, + [STATE(1217)] = { + [sym_identifier] = ACTIONS(2112), + [aux_sym_preproc_def_token1] = ACTIONS(2112), + [aux_sym_preproc_if_token1] = ACTIONS(2112), + [aux_sym_preproc_if_token2] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2112), + [sym_preproc_directive] = ACTIONS(2112), + [anon_sym_LPAREN2] = ACTIONS(2114), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_AMP_AMP] = ACTIONS(2114), + [anon_sym_AMP] = ACTIONS(2112), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym___extension__] = ACTIONS(2112), + [anon_sym_typedef] = ACTIONS(2112), + [anon_sym_virtual] = ACTIONS(2112), + [anon_sym_extern] = ACTIONS(2112), + [anon_sym___attribute__] = ACTIONS(2112), + [anon_sym___attribute] = ACTIONS(2112), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2114), + [anon_sym___declspec] = ACTIONS(2112), + [anon_sym___based] = ACTIONS(2112), + [anon_sym_signed] = ACTIONS(2112), + [anon_sym_unsigned] = ACTIONS(2112), + [anon_sym_long] = ACTIONS(2112), + [anon_sym_short] = ACTIONS(2112), + [anon_sym_LBRACK] = ACTIONS(2112), + [anon_sym_static] = ACTIONS(2112), + [anon_sym_register] = ACTIONS(2112), + [anon_sym_inline] = ACTIONS(2112), + [anon_sym___inline] = ACTIONS(2112), + [anon_sym___inline__] = ACTIONS(2112), + [anon_sym___forceinline] = ACTIONS(2112), + [anon_sym_thread_local] = ACTIONS(2112), + [anon_sym___thread] = ACTIONS(2112), + [anon_sym_const] = ACTIONS(2112), + [anon_sym_constexpr] = ACTIONS(2112), + [anon_sym_volatile] = ACTIONS(2112), + [anon_sym_restrict] = ACTIONS(2112), + [anon_sym___restrict__] = ACTIONS(2112), + [anon_sym__Atomic] = ACTIONS(2112), + [anon_sym__Noreturn] = ACTIONS(2112), + [anon_sym_noreturn] = ACTIONS(2112), + [anon_sym__Nonnull] = ACTIONS(2112), + [anon_sym_mutable] = ACTIONS(2112), + [anon_sym_constinit] = ACTIONS(2112), + [anon_sym_consteval] = ACTIONS(2112), + [anon_sym_alignas] = ACTIONS(2112), + [anon_sym__Alignas] = ACTIONS(2112), + [sym_primitive_type] = ACTIONS(2112), + [anon_sym_enum] = ACTIONS(2112), + [anon_sym_class] = ACTIONS(2112), + [anon_sym_struct] = ACTIONS(2112), + [anon_sym_union] = ACTIONS(2112), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2112), + [anon_sym_decltype] = ACTIONS(2112), + [anon_sym_explicit] = ACTIONS(2112), + [anon_sym_typename] = ACTIONS(2112), + [anon_sym_template] = ACTIONS(2112), + [anon_sym_operator] = ACTIONS(2112), + [anon_sym_friend] = ACTIONS(2112), + [anon_sym_public] = ACTIONS(2112), + [anon_sym_private] = ACTIONS(2112), + [anon_sym_protected] = ACTIONS(2112), + [anon_sym_using] = ACTIONS(2112), + [anon_sym_static_assert] = ACTIONS(2112), + [sym_macro_statement] = ACTIONS(2112), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2112), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2112), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2112), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2112), + [anon_sym_MOZ_COLD] = ACTIONS(2112), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2112), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2112), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2112), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2112), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2112), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2112), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2112), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2112), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2112), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2112), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2112), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2112), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2112), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_NONNULL] = ACTIONS(2112), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2112), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2112), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2112), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2112), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2112), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2112), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2112), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2112), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2112), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2112), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2112), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2112), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2112), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2112), + [anon_sym_MOZ_RAII] = ACTIONS(2112), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2112), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2112), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2112), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2112), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2112), + }, + [STATE(1218)] = { + [sym_identifier] = ACTIONS(4372), + [aux_sym_preproc_def_token1] = ACTIONS(4372), + [aux_sym_preproc_if_token1] = ACTIONS(4372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4372), + [sym_preproc_directive] = ACTIONS(4372), + [anon_sym_LPAREN2] = ACTIONS(4374), + [anon_sym_TILDE] = ACTIONS(4374), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP_AMP] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4372), + [anon_sym_SEMI] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(4372), + [anon_sym_typedef] = ACTIONS(4372), + [anon_sym_virtual] = ACTIONS(4372), + [anon_sym_extern] = ACTIONS(4372), + [anon_sym___attribute__] = ACTIONS(4372), + [anon_sym___attribute] = ACTIONS(4372), + [anon_sym_COLON_COLON] = ACTIONS(4374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4374), + [anon_sym___declspec] = ACTIONS(4372), + [anon_sym___based] = ACTIONS(4372), + [anon_sym_RBRACE] = ACTIONS(4374), + [anon_sym_signed] = ACTIONS(4372), + [anon_sym_unsigned] = ACTIONS(4372), + [anon_sym_long] = ACTIONS(4372), + [anon_sym_short] = ACTIONS(4372), + [anon_sym_LBRACK] = ACTIONS(4372), + [anon_sym_static] = ACTIONS(4372), + [anon_sym_register] = ACTIONS(4372), + [anon_sym_inline] = ACTIONS(4372), + [anon_sym___inline] = ACTIONS(4372), + [anon_sym___inline__] = ACTIONS(4372), + [anon_sym___forceinline] = ACTIONS(4372), + [anon_sym_thread_local] = ACTIONS(4372), + [anon_sym___thread] = ACTIONS(4372), + [anon_sym_const] = ACTIONS(4372), + [anon_sym_constexpr] = ACTIONS(4372), + [anon_sym_volatile] = ACTIONS(4372), + [anon_sym_restrict] = ACTIONS(4372), + [anon_sym___restrict__] = ACTIONS(4372), + [anon_sym__Atomic] = ACTIONS(4372), + [anon_sym__Noreturn] = ACTIONS(4372), + [anon_sym_noreturn] = ACTIONS(4372), + [anon_sym__Nonnull] = ACTIONS(4372), + [anon_sym_mutable] = ACTIONS(4372), + [anon_sym_constinit] = ACTIONS(4372), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(4372), + [anon_sym__Alignas] = ACTIONS(4372), + [sym_primitive_type] = ACTIONS(4372), + [anon_sym_enum] = ACTIONS(4372), + [anon_sym_class] = ACTIONS(4372), + [anon_sym_struct] = ACTIONS(4372), + [anon_sym_union] = ACTIONS(4372), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4372), + [anon_sym_decltype] = ACTIONS(4372), + [anon_sym_explicit] = ACTIONS(4372), + [anon_sym_typename] = ACTIONS(4372), + [anon_sym_template] = ACTIONS(4372), + [anon_sym_operator] = ACTIONS(4372), + [anon_sym_friend] = ACTIONS(4372), + [anon_sym_public] = ACTIONS(4372), + [anon_sym_private] = ACTIONS(4372), + [anon_sym_protected] = ACTIONS(4372), + [anon_sym_using] = ACTIONS(4372), + [anon_sym_static_assert] = ACTIONS(4372), + [sym_macro_statement] = ACTIONS(4372), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4372), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4372), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4372), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4372), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4372), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4372), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4372), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4372), + [anon_sym_MOZ_COLD] = ACTIONS(4372), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4372), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4372), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4372), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4372), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4372), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4372), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4372), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4372), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4372), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4372), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4372), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4372), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4372), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4372), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4372), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4372), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4372), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4372), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4372), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4372), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_NONNULL] = ACTIONS(4372), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4372), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4372), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4372), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4372), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4372), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_NORETURN] = ACTIONS(4372), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4372), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4372), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4372), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4372), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4372), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4372), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4372), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4372), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4372), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4372), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4372), + [anon_sym_MOZ_RAII] = ACTIONS(4372), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4372), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4372), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4372), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4372), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4372), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4372), + }, + [STATE(1219)] = { + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_def_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token2] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [sym_preproc_directive] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_AMP_AMP] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym___extension__] = ACTIONS(2108), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_virtual] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym_COLON_COLON] = ACTIONS(2110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2110), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___based] = ACTIONS(2108), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [anon_sym_LBRACK] = ACTIONS(2108), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [anon_sym___inline] = ACTIONS(2108), + [anon_sym___inline__] = ACTIONS(2108), + [anon_sym___forceinline] = ACTIONS(2108), + [anon_sym_thread_local] = ACTIONS(2108), + [anon_sym___thread] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_constexpr] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym___restrict__] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym__Noreturn] = ACTIONS(2108), + [anon_sym_noreturn] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym_mutable] = ACTIONS(2108), + [anon_sym_constinit] = ACTIONS(2108), + [anon_sym_consteval] = ACTIONS(2108), + [anon_sym_alignas] = ACTIONS(2108), + [anon_sym__Alignas] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_class] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2108), + [anon_sym_decltype] = ACTIONS(2108), + [anon_sym_explicit] = ACTIONS(2108), + [anon_sym_typename] = ACTIONS(2108), + [anon_sym_template] = ACTIONS(2108), + [anon_sym_operator] = ACTIONS(2108), + [anon_sym_friend] = ACTIONS(2108), + [anon_sym_public] = ACTIONS(2108), + [anon_sym_private] = ACTIONS(2108), + [anon_sym_protected] = ACTIONS(2108), + [anon_sym_using] = ACTIONS(2108), + [anon_sym_static_assert] = ACTIONS(2108), + [sym_macro_statement] = ACTIONS(2108), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2108), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2108), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2108), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2108), + [anon_sym_MOZ_COLD] = ACTIONS(2108), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2108), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2108), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2108), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2108), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2108), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2108), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2108), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2108), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2108), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2108), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2108), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2108), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2108), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_NONNULL] = ACTIONS(2108), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2108), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2108), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2108), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2108), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2108), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2108), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2108), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2108), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2108), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2108), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2108), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2108), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2108), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2108), + [anon_sym_MOZ_RAII] = ACTIONS(2108), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2108), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2108), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2108), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2108), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2108), + }, + [STATE(1220)] = { + [sym_identifier] = ACTIONS(2148), + [aux_sym_preproc_def_token1] = ACTIONS(2148), + [aux_sym_preproc_if_token1] = ACTIONS(2148), + [aux_sym_preproc_if_token2] = ACTIONS(2148), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2148), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2148), + [sym_preproc_directive] = ACTIONS(2148), + [anon_sym_LPAREN2] = ACTIONS(2150), + [anon_sym_TILDE] = ACTIONS(2150), + [anon_sym_STAR] = ACTIONS(2150), + [anon_sym_AMP_AMP] = ACTIONS(2150), + [anon_sym_AMP] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym___extension__] = ACTIONS(2148), + [anon_sym_typedef] = ACTIONS(2148), + [anon_sym_virtual] = ACTIONS(2148), + [anon_sym_extern] = ACTIONS(2148), + [anon_sym___attribute__] = ACTIONS(2148), + [anon_sym___attribute] = ACTIONS(2148), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2150), + [anon_sym___declspec] = ACTIONS(2148), + [anon_sym___based] = ACTIONS(2148), + [anon_sym_signed] = ACTIONS(2148), + [anon_sym_unsigned] = ACTIONS(2148), + [anon_sym_long] = ACTIONS(2148), + [anon_sym_short] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_register] = ACTIONS(2148), + [anon_sym_inline] = ACTIONS(2148), + [anon_sym___inline] = ACTIONS(2148), + [anon_sym___inline__] = ACTIONS(2148), + [anon_sym___forceinline] = ACTIONS(2148), + [anon_sym_thread_local] = ACTIONS(2148), + [anon_sym___thread] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_constexpr] = ACTIONS(2148), + [anon_sym_volatile] = ACTIONS(2148), + [anon_sym_restrict] = ACTIONS(2148), + [anon_sym___restrict__] = ACTIONS(2148), + [anon_sym__Atomic] = ACTIONS(2148), + [anon_sym__Noreturn] = ACTIONS(2148), + [anon_sym_noreturn] = ACTIONS(2148), + [anon_sym__Nonnull] = ACTIONS(2148), + [anon_sym_mutable] = ACTIONS(2148), + [anon_sym_constinit] = ACTIONS(2148), + [anon_sym_consteval] = ACTIONS(2148), + [anon_sym_alignas] = ACTIONS(2148), + [anon_sym__Alignas] = ACTIONS(2148), + [sym_primitive_type] = ACTIONS(2148), + [anon_sym_enum] = ACTIONS(2148), + [anon_sym_class] = ACTIONS(2148), + [anon_sym_struct] = ACTIONS(2148), + [anon_sym_union] = ACTIONS(2148), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2148), + [anon_sym_decltype] = ACTIONS(2148), + [anon_sym_explicit] = ACTIONS(2148), + [anon_sym_typename] = ACTIONS(2148), + [anon_sym_template] = ACTIONS(2148), + [anon_sym_operator] = ACTIONS(2148), + [anon_sym_friend] = ACTIONS(2148), + [anon_sym_public] = ACTIONS(2148), + [anon_sym_private] = ACTIONS(2148), + [anon_sym_protected] = ACTIONS(2148), + [anon_sym_using] = ACTIONS(2148), + [anon_sym_static_assert] = ACTIONS(2148), + [sym_macro_statement] = ACTIONS(2148), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2148), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2148), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2148), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2148), + [anon_sym_MOZ_COLD] = ACTIONS(2148), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2148), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2148), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2148), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2148), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2148), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2148), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2148), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2148), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2148), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2148), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2148), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2148), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2148), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_NONNULL] = ACTIONS(2148), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2148), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2148), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2148), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2148), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2148), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2148), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2148), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2148), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2148), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2148), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2148), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2148), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2148), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2148), + [anon_sym_MOZ_RAII] = ACTIONS(2148), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2148), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2148), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2148), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2148), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2148), + }, + [STATE(1221)] = { + [sym_identifier] = ACTIONS(2244), + [aux_sym_preproc_def_token1] = ACTIONS(2244), + [aux_sym_preproc_if_token1] = ACTIONS(2244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2244), + [sym_preproc_directive] = ACTIONS(2244), + [anon_sym_LPAREN2] = ACTIONS(2246), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym___extension__] = ACTIONS(2244), + [anon_sym_typedef] = ACTIONS(2244), + [anon_sym_virtual] = ACTIONS(2244), + [anon_sym_extern] = ACTIONS(2244), + [anon_sym___attribute__] = ACTIONS(2244), + [anon_sym___attribute] = ACTIONS(2244), + [anon_sym_COLON_COLON] = ACTIONS(2246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2246), + [anon_sym___declspec] = ACTIONS(2244), + [anon_sym___based] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_register] = ACTIONS(2244), + [anon_sym_inline] = ACTIONS(2244), + [anon_sym___inline] = ACTIONS(2244), + [anon_sym___inline__] = ACTIONS(2244), + [anon_sym___forceinline] = ACTIONS(2244), + [anon_sym_thread_local] = ACTIONS(2244), + [anon_sym___thread] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_constexpr] = ACTIONS(2244), + [anon_sym_volatile] = ACTIONS(2244), + [anon_sym_restrict] = ACTIONS(2244), + [anon_sym___restrict__] = ACTIONS(2244), + [anon_sym__Atomic] = ACTIONS(2244), + [anon_sym__Noreturn] = ACTIONS(2244), + [anon_sym_noreturn] = ACTIONS(2244), + [anon_sym__Nonnull] = ACTIONS(2244), + [anon_sym_mutable] = ACTIONS(2244), + [anon_sym_constinit] = ACTIONS(2244), + [anon_sym_consteval] = ACTIONS(2244), + [anon_sym_alignas] = ACTIONS(2244), + [anon_sym__Alignas] = ACTIONS(2244), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_struct] = ACTIONS(2244), + [anon_sym_union] = ACTIONS(2244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2244), + [anon_sym_decltype] = ACTIONS(2244), + [anon_sym_explicit] = ACTIONS(2244), + [anon_sym_typename] = ACTIONS(2244), + [anon_sym_template] = ACTIONS(2244), + [anon_sym_operator] = ACTIONS(2244), + [anon_sym_friend] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_using] = ACTIONS(2244), + [anon_sym_static_assert] = ACTIONS(2244), + [sym_macro_statement] = ACTIONS(2244), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2244), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2244), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2244), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2244), + [anon_sym_MOZ_COLD] = ACTIONS(2244), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2244), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2244), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2244), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2244), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2244), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2244), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2244), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2244), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2244), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2244), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2244), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2244), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2244), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2244), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2244), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2244), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_NONNULL] = ACTIONS(2244), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2244), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2244), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2244), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2244), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_NORETURN] = ACTIONS(2244), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2244), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2244), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2244), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2244), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2244), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2244), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2244), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2244), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2244), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2244), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2244), + [anon_sym_MOZ_RAII] = ACTIONS(2244), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2244), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2244), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2244), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2244), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2244), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2244), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2244), + }, + [STATE(1222)] = { + [sym_identifier] = ACTIONS(2329), + [aux_sym_preproc_def_token1] = ACTIONS(2329), + [aux_sym_preproc_if_token1] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2329), + [sym_preproc_directive] = ACTIONS(2329), + [anon_sym_LPAREN2] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_STAR] = ACTIONS(2331), + [anon_sym_AMP_AMP] = ACTIONS(2331), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_SEMI] = ACTIONS(2331), + [anon_sym___extension__] = ACTIONS(2329), + [anon_sym_typedef] = ACTIONS(2329), + [anon_sym_virtual] = ACTIONS(2329), + [anon_sym_extern] = ACTIONS(2329), + [anon_sym___attribute__] = ACTIONS(2329), + [anon_sym___attribute] = ACTIONS(2329), + [anon_sym_COLON_COLON] = ACTIONS(2331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2331), + [anon_sym___declspec] = ACTIONS(2329), + [anon_sym___based] = ACTIONS(2329), + [anon_sym_RBRACE] = ACTIONS(2331), + [anon_sym_signed] = ACTIONS(2329), + [anon_sym_unsigned] = ACTIONS(2329), + [anon_sym_long] = ACTIONS(2329), + [anon_sym_short] = ACTIONS(2329), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_register] = ACTIONS(2329), + [anon_sym_inline] = ACTIONS(2329), + [anon_sym___inline] = ACTIONS(2329), + [anon_sym___inline__] = ACTIONS(2329), + [anon_sym___forceinline] = ACTIONS(2329), + [anon_sym_thread_local] = ACTIONS(2329), + [anon_sym___thread] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_constexpr] = ACTIONS(2329), + [anon_sym_volatile] = ACTIONS(2329), + [anon_sym_restrict] = ACTIONS(2329), + [anon_sym___restrict__] = ACTIONS(2329), + [anon_sym__Atomic] = ACTIONS(2329), + [anon_sym__Noreturn] = ACTIONS(2329), + [anon_sym_noreturn] = ACTIONS(2329), + [anon_sym__Nonnull] = ACTIONS(2329), + [anon_sym_mutable] = ACTIONS(2329), + [anon_sym_constinit] = ACTIONS(2329), + [anon_sym_consteval] = ACTIONS(2329), + [anon_sym_alignas] = ACTIONS(2329), + [anon_sym__Alignas] = ACTIONS(2329), + [sym_primitive_type] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_class] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2329), + [anon_sym_union] = ACTIONS(2329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2329), + [anon_sym_decltype] = ACTIONS(2329), + [anon_sym_explicit] = ACTIONS(2329), + [anon_sym_typename] = ACTIONS(2329), + [anon_sym_template] = ACTIONS(2329), + [anon_sym_operator] = ACTIONS(2329), + [anon_sym_friend] = ACTIONS(2329), + [anon_sym_public] = ACTIONS(2329), + [anon_sym_private] = ACTIONS(2329), + [anon_sym_protected] = ACTIONS(2329), + [anon_sym_using] = ACTIONS(2329), + [anon_sym_static_assert] = ACTIONS(2329), + [sym_macro_statement] = ACTIONS(2329), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2329), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2329), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2329), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2329), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2329), + [anon_sym_MOZ_COLD] = ACTIONS(2329), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2329), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2329), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2329), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2329), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2329), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2329), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2329), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2329), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2329), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2329), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2329), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2329), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2329), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2329), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2329), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2329), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_NONNULL] = ACTIONS(2329), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2329), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2329), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2329), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2329), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_NORETURN] = ACTIONS(2329), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2329), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2329), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2329), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2329), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2329), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2329), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2329), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2329), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2329), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2329), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2329), + [anon_sym_MOZ_RAII] = ACTIONS(2329), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2329), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2329), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2329), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2329), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2329), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2329), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2329), + }, + [STATE(1223)] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token2] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_virtual] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_COLON_COLON] = ACTIONS(2438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___based] = ACTIONS(2436), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_mutable] = ACTIONS(2436), + [anon_sym_constinit] = ACTIONS(2436), + [anon_sym_consteval] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_class] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2436), + [anon_sym_decltype] = ACTIONS(2436), + [anon_sym_explicit] = ACTIONS(2436), + [anon_sym_typename] = ACTIONS(2436), + [anon_sym_template] = ACTIONS(2436), + [anon_sym_operator] = ACTIONS(2436), + [anon_sym_friend] = ACTIONS(2436), + [anon_sym_public] = ACTIONS(2436), + [anon_sym_private] = ACTIONS(2436), + [anon_sym_protected] = ACTIONS(2436), + [anon_sym_using] = ACTIONS(2436), + [anon_sym_static_assert] = ACTIONS(2436), + [sym_macro_statement] = ACTIONS(2436), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2436), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2436), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2436), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2436), + [anon_sym_MOZ_COLD] = ACTIONS(2436), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2436), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2436), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2436), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2436), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2436), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2436), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2436), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2436), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2436), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2436), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2436), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2436), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2436), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_NONNULL] = ACTIONS(2436), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2436), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2436), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2436), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2436), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2436), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2436), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2436), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2436), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2436), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2436), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2436), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2436), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2436), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2436), + [anon_sym_MOZ_RAII] = ACTIONS(2436), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2436), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2436), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2436), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2436), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2436), + }, + [STATE(1224)] = { + [sym_identifier] = ACTIONS(2160), + [aux_sym_preproc_def_token1] = ACTIONS(2160), + [aux_sym_preproc_if_token1] = ACTIONS(2160), + [aux_sym_preproc_if_token2] = ACTIONS(2160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2160), + [sym_preproc_directive] = ACTIONS(2160), + [anon_sym_LPAREN2] = ACTIONS(2162), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_STAR] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym___extension__] = ACTIONS(2160), + [anon_sym_typedef] = ACTIONS(2160), + [anon_sym_virtual] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2160), + [anon_sym___attribute__] = ACTIONS(2160), + [anon_sym___attribute] = ACTIONS(2160), + [anon_sym_COLON_COLON] = ACTIONS(2162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2162), + [anon_sym___declspec] = ACTIONS(2160), + [anon_sym___based] = ACTIONS(2160), + [anon_sym_signed] = ACTIONS(2160), + [anon_sym_unsigned] = ACTIONS(2160), + [anon_sym_long] = ACTIONS(2160), + [anon_sym_short] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_register] = ACTIONS(2160), + [anon_sym_inline] = ACTIONS(2160), + [anon_sym___inline] = ACTIONS(2160), + [anon_sym___inline__] = ACTIONS(2160), + [anon_sym___forceinline] = ACTIONS(2160), + [anon_sym_thread_local] = ACTIONS(2160), + [anon_sym___thread] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_constexpr] = ACTIONS(2160), + [anon_sym_volatile] = ACTIONS(2160), + [anon_sym_restrict] = ACTIONS(2160), + [anon_sym___restrict__] = ACTIONS(2160), + [anon_sym__Atomic] = ACTIONS(2160), + [anon_sym__Noreturn] = ACTIONS(2160), + [anon_sym_noreturn] = ACTIONS(2160), + [anon_sym__Nonnull] = ACTIONS(2160), + [anon_sym_mutable] = ACTIONS(2160), + [anon_sym_constinit] = ACTIONS(2160), + [anon_sym_consteval] = ACTIONS(2160), + [anon_sym_alignas] = ACTIONS(2160), + [anon_sym__Alignas] = ACTIONS(2160), + [sym_primitive_type] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_struct] = ACTIONS(2160), + [anon_sym_union] = ACTIONS(2160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2160), + [anon_sym_decltype] = ACTIONS(2160), + [anon_sym_explicit] = ACTIONS(2160), + [anon_sym_typename] = ACTIONS(2160), + [anon_sym_template] = ACTIONS(2160), + [anon_sym_operator] = ACTIONS(2160), + [anon_sym_friend] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_static_assert] = ACTIONS(2160), + [sym_macro_statement] = ACTIONS(2160), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2160), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2160), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2160), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2160), + [anon_sym_MOZ_COLD] = ACTIONS(2160), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2160), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2160), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2160), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2160), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2160), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2160), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2160), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2160), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2160), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2160), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2160), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2160), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2160), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_NONNULL] = ACTIONS(2160), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2160), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2160), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2160), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2160), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2160), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2160), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2160), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2160), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2160), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2160), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2160), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2160), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2160), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2160), + [anon_sym_MOZ_RAII] = ACTIONS(2160), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2160), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2160), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2160), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2160), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2160), + }, + [STATE(1225)] = { + [sym_identifier] = ACTIONS(2260), + [aux_sym_preproc_def_token1] = ACTIONS(2260), + [aux_sym_preproc_if_token1] = ACTIONS(2260), + [aux_sym_preproc_if_token2] = ACTIONS(2260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2260), + [sym_preproc_directive] = ACTIONS(2260), + [anon_sym_LPAREN2] = ACTIONS(2262), + [anon_sym_TILDE] = ACTIONS(2262), + [anon_sym_STAR] = ACTIONS(2262), + [anon_sym_AMP_AMP] = ACTIONS(2262), + [anon_sym_AMP] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2262), + [anon_sym___extension__] = ACTIONS(2260), + [anon_sym_typedef] = ACTIONS(2260), + [anon_sym_virtual] = ACTIONS(2260), + [anon_sym_extern] = ACTIONS(2260), + [anon_sym___attribute__] = ACTIONS(2260), + [anon_sym___attribute] = ACTIONS(2260), + [anon_sym_COLON_COLON] = ACTIONS(2262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2262), + [anon_sym___declspec] = ACTIONS(2260), + [anon_sym___based] = ACTIONS(2260), + [anon_sym_signed] = ACTIONS(2260), + [anon_sym_unsigned] = ACTIONS(2260), + [anon_sym_long] = ACTIONS(2260), + [anon_sym_short] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_static] = ACTIONS(2260), + [anon_sym_register] = ACTIONS(2260), + [anon_sym_inline] = ACTIONS(2260), + [anon_sym___inline] = ACTIONS(2260), + [anon_sym___inline__] = ACTIONS(2260), + [anon_sym___forceinline] = ACTIONS(2260), + [anon_sym_thread_local] = ACTIONS(2260), + [anon_sym___thread] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [anon_sym_constexpr] = ACTIONS(2260), + [anon_sym_volatile] = ACTIONS(2260), + [anon_sym_restrict] = ACTIONS(2260), + [anon_sym___restrict__] = ACTIONS(2260), + [anon_sym__Atomic] = ACTIONS(2260), + [anon_sym__Noreturn] = ACTIONS(2260), + [anon_sym_noreturn] = ACTIONS(2260), + [anon_sym__Nonnull] = ACTIONS(2260), + [anon_sym_mutable] = ACTIONS(2260), + [anon_sym_constinit] = ACTIONS(2260), + [anon_sym_consteval] = ACTIONS(2260), + [anon_sym_alignas] = ACTIONS(2260), + [anon_sym__Alignas] = ACTIONS(2260), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), + [anon_sym_class] = ACTIONS(2260), + [anon_sym_struct] = ACTIONS(2260), + [anon_sym_union] = ACTIONS(2260), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2260), + [anon_sym_decltype] = ACTIONS(2260), + [anon_sym_explicit] = ACTIONS(2260), + [anon_sym_typename] = ACTIONS(2260), + [anon_sym_template] = ACTIONS(2260), + [anon_sym_operator] = ACTIONS(2260), + [anon_sym_friend] = ACTIONS(2260), + [anon_sym_public] = ACTIONS(2260), + [anon_sym_private] = ACTIONS(2260), + [anon_sym_protected] = ACTIONS(2260), + [anon_sym_using] = ACTIONS(2260), + [anon_sym_static_assert] = ACTIONS(2260), + [sym_macro_statement] = ACTIONS(2260), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2260), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2260), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2260), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2260), + [anon_sym_MOZ_COLD] = ACTIONS(2260), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2260), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2260), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2260), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2260), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2260), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2260), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2260), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2260), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2260), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2260), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2260), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2260), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2260), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_NONNULL] = ACTIONS(2260), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2260), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2260), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2260), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2260), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2260), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2260), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2260), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2260), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2260), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2260), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2260), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2260), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2260), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2260), + [anon_sym_MOZ_RAII] = ACTIONS(2260), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2260), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2260), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2260), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2260), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2260), + }, + [STATE(1226)] = { + [sym_identifier] = ACTIONS(2313), + [aux_sym_preproc_def_token1] = ACTIONS(2313), + [aux_sym_preproc_if_token1] = ACTIONS(2313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2313), + [sym_preproc_directive] = ACTIONS(2313), + [anon_sym_LPAREN2] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2315), + [anon_sym_AMP_AMP] = ACTIONS(2315), + [anon_sym_AMP] = ACTIONS(2313), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym___extension__] = ACTIONS(2313), + [anon_sym_typedef] = ACTIONS(2313), + [anon_sym_virtual] = ACTIONS(2313), + [anon_sym_extern] = ACTIONS(2313), + [anon_sym___attribute__] = ACTIONS(2313), + [anon_sym___attribute] = ACTIONS(2313), + [anon_sym_COLON_COLON] = ACTIONS(2315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2315), + [anon_sym___declspec] = ACTIONS(2313), + [anon_sym___based] = ACTIONS(2313), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_signed] = ACTIONS(2313), + [anon_sym_unsigned] = ACTIONS(2313), + [anon_sym_long] = ACTIONS(2313), + [anon_sym_short] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_static] = ACTIONS(2313), + [anon_sym_register] = ACTIONS(2313), + [anon_sym_inline] = ACTIONS(2313), + [anon_sym___inline] = ACTIONS(2313), + [anon_sym___inline__] = ACTIONS(2313), + [anon_sym___forceinline] = ACTIONS(2313), + [anon_sym_thread_local] = ACTIONS(2313), + [anon_sym___thread] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_constexpr] = ACTIONS(2313), + [anon_sym_volatile] = ACTIONS(2313), + [anon_sym_restrict] = ACTIONS(2313), + [anon_sym___restrict__] = ACTIONS(2313), + [anon_sym__Atomic] = ACTIONS(2313), + [anon_sym__Noreturn] = ACTIONS(2313), + [anon_sym_noreturn] = ACTIONS(2313), + [anon_sym__Nonnull] = ACTIONS(2313), + [anon_sym_mutable] = ACTIONS(2313), + [anon_sym_constinit] = ACTIONS(2313), + [anon_sym_consteval] = ACTIONS(2313), + [anon_sym_alignas] = ACTIONS(2313), + [anon_sym__Alignas] = ACTIONS(2313), + [sym_primitive_type] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), + [anon_sym_class] = ACTIONS(2313), + [anon_sym_struct] = ACTIONS(2313), + [anon_sym_union] = ACTIONS(2313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2313), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_explicit] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(2313), + [anon_sym_operator] = ACTIONS(2313), + [anon_sym_friend] = ACTIONS(2313), + [anon_sym_public] = ACTIONS(2313), + [anon_sym_private] = ACTIONS(2313), + [anon_sym_protected] = ACTIONS(2313), + [anon_sym_using] = ACTIONS(2313), + [anon_sym_static_assert] = ACTIONS(2313), + [sym_macro_statement] = ACTIONS(2313), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2313), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2313), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2313), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2313), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2313), + [anon_sym_MOZ_COLD] = ACTIONS(2313), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2313), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2313), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2313), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2313), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2313), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2313), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2313), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2313), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2313), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2313), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2313), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2313), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2313), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2313), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2313), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2313), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_NONNULL] = ACTIONS(2313), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2313), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2313), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2313), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2313), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_NORETURN] = ACTIONS(2313), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2313), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2313), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2313), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2313), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2313), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2313), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2313), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2313), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2313), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2313), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2313), + [anon_sym_MOZ_RAII] = ACTIONS(2313), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2313), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2313), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2313), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2313), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2313), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2313), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2313), + }, + [STATE(1227)] = { + [sym_identifier] = ACTIONS(4456), + [aux_sym_preproc_def_token1] = ACTIONS(4456), + [aux_sym_preproc_if_token1] = ACTIONS(4456), + [aux_sym_preproc_if_token2] = ACTIONS(4456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4456), + [sym_preproc_directive] = ACTIONS(4456), + [anon_sym_LPAREN2] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4458), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_AMP_AMP] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_SEMI] = ACTIONS(4458), + [anon_sym___extension__] = ACTIONS(4456), + [anon_sym_typedef] = ACTIONS(4456), + [anon_sym_virtual] = ACTIONS(4456), + [anon_sym_extern] = ACTIONS(4456), + [anon_sym___attribute__] = ACTIONS(4456), + [anon_sym___attribute] = ACTIONS(4456), + [anon_sym_COLON_COLON] = ACTIONS(4458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4458), + [anon_sym___declspec] = ACTIONS(4456), + [anon_sym___based] = ACTIONS(4456), + [anon_sym_signed] = ACTIONS(4456), + [anon_sym_unsigned] = ACTIONS(4456), + [anon_sym_long] = ACTIONS(4456), + [anon_sym_short] = ACTIONS(4456), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_static] = ACTIONS(4456), + [anon_sym_register] = ACTIONS(4456), + [anon_sym_inline] = ACTIONS(4456), + [anon_sym___inline] = ACTIONS(4456), + [anon_sym___inline__] = ACTIONS(4456), + [anon_sym___forceinline] = ACTIONS(4456), + [anon_sym_thread_local] = ACTIONS(4456), + [anon_sym___thread] = ACTIONS(4456), + [anon_sym_const] = ACTIONS(4456), + [anon_sym_constexpr] = ACTIONS(4456), + [anon_sym_volatile] = ACTIONS(4456), + [anon_sym_restrict] = ACTIONS(4456), + [anon_sym___restrict__] = ACTIONS(4456), + [anon_sym__Atomic] = ACTIONS(4456), + [anon_sym__Noreturn] = ACTIONS(4456), + [anon_sym_noreturn] = ACTIONS(4456), + [anon_sym__Nonnull] = ACTIONS(4456), + [anon_sym_mutable] = ACTIONS(4456), + [anon_sym_constinit] = ACTIONS(4456), + [anon_sym_consteval] = ACTIONS(4456), + [anon_sym_alignas] = ACTIONS(4456), + [anon_sym__Alignas] = ACTIONS(4456), + [sym_primitive_type] = ACTIONS(4456), + [anon_sym_enum] = ACTIONS(4456), + [anon_sym_class] = ACTIONS(4456), + [anon_sym_struct] = ACTIONS(4456), + [anon_sym_union] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4456), + [anon_sym_decltype] = ACTIONS(4456), + [anon_sym_explicit] = ACTIONS(4456), + [anon_sym_typename] = ACTIONS(4456), + [anon_sym_template] = ACTIONS(4456), + [anon_sym_operator] = ACTIONS(4456), + [anon_sym_friend] = ACTIONS(4456), + [anon_sym_public] = ACTIONS(4456), + [anon_sym_private] = ACTIONS(4456), + [anon_sym_protected] = ACTIONS(4456), + [anon_sym_using] = ACTIONS(4456), + [anon_sym_static_assert] = ACTIONS(4456), + [sym_macro_statement] = ACTIONS(4456), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4456), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4456), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4456), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4456), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4456), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4456), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4456), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4456), + [anon_sym_MOZ_COLD] = ACTIONS(4456), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4456), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4456), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4456), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4456), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4456), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4456), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4456), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4456), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4456), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4456), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4456), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4456), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4456), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4456), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4456), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4456), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4456), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4456), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4456), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4456), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4456), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_NONNULL] = ACTIONS(4456), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4456), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4456), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4456), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4456), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4456), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_NORETURN] = ACTIONS(4456), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4456), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4456), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4456), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4456), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4456), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4456), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4456), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4456), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4456), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4456), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4456), + [anon_sym_MOZ_RAII] = ACTIONS(4456), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4456), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4456), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4456), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4456), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4456), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4456), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4456), + }, + [STATE(1228)] = { + [sym_identifier] = ACTIONS(2373), + [aux_sym_preproc_def_token1] = ACTIONS(2373), + [aux_sym_preproc_if_token1] = ACTIONS(2373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2373), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2373), + [sym_preproc_directive] = ACTIONS(2373), + [anon_sym_LPAREN2] = ACTIONS(2375), + [anon_sym_TILDE] = ACTIONS(2375), + [anon_sym_STAR] = ACTIONS(2375), + [anon_sym_AMP_AMP] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym___extension__] = ACTIONS(2373), + [anon_sym_typedef] = ACTIONS(2373), + [anon_sym_virtual] = ACTIONS(2373), + [anon_sym_extern] = ACTIONS(2373), + [anon_sym___attribute__] = ACTIONS(2373), + [anon_sym___attribute] = ACTIONS(2373), + [anon_sym_COLON_COLON] = ACTIONS(2375), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2375), + [anon_sym___declspec] = ACTIONS(2373), + [anon_sym___based] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_signed] = ACTIONS(2373), + [anon_sym_unsigned] = ACTIONS(2373), + [anon_sym_long] = ACTIONS(2373), + [anon_sym_short] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_register] = ACTIONS(2373), + [anon_sym_inline] = ACTIONS(2373), + [anon_sym___inline] = ACTIONS(2373), + [anon_sym___inline__] = ACTIONS(2373), + [anon_sym___forceinline] = ACTIONS(2373), + [anon_sym_thread_local] = ACTIONS(2373), + [anon_sym___thread] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_constexpr] = ACTIONS(2373), + [anon_sym_volatile] = ACTIONS(2373), + [anon_sym_restrict] = ACTIONS(2373), + [anon_sym___restrict__] = ACTIONS(2373), + [anon_sym__Atomic] = ACTIONS(2373), + [anon_sym__Noreturn] = ACTIONS(2373), + [anon_sym_noreturn] = ACTIONS(2373), + [anon_sym__Nonnull] = ACTIONS(2373), + [anon_sym_mutable] = ACTIONS(2373), + [anon_sym_constinit] = ACTIONS(2373), + [anon_sym_consteval] = ACTIONS(2373), + [anon_sym_alignas] = ACTIONS(2373), + [anon_sym__Alignas] = ACTIONS(2373), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_class] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2373), + [anon_sym_decltype] = ACTIONS(2373), + [anon_sym_explicit] = ACTIONS(2373), + [anon_sym_typename] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(2373), + [anon_sym_operator] = ACTIONS(2373), + [anon_sym_friend] = ACTIONS(2373), + [anon_sym_public] = ACTIONS(2373), + [anon_sym_private] = ACTIONS(2373), + [anon_sym_protected] = ACTIONS(2373), + [anon_sym_using] = ACTIONS(2373), + [anon_sym_static_assert] = ACTIONS(2373), + [sym_macro_statement] = ACTIONS(2373), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2373), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2373), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2373), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2373), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2373), + [anon_sym_MOZ_COLD] = ACTIONS(2373), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2373), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2373), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2373), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2373), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2373), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2373), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2373), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2373), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2373), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2373), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2373), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2373), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2373), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2373), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2373), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2373), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_NONNULL] = ACTIONS(2373), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2373), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2373), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2373), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2373), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_NORETURN] = ACTIONS(2373), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2373), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2373), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2373), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2373), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2373), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2373), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2373), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2373), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2373), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2373), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2373), + [anon_sym_MOZ_RAII] = ACTIONS(2373), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2373), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2373), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2373), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2373), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2373), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2373), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2373), + }, + [STATE(1229)] = { + [sym_identifier] = ACTIONS(2178), + [aux_sym_preproc_def_token1] = ACTIONS(2178), + [aux_sym_preproc_if_token1] = ACTIONS(2178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), + [sym_preproc_directive] = ACTIONS(2178), + [anon_sym_LPAREN2] = ACTIONS(2180), + [anon_sym_TILDE] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(2180), + [anon_sym_AMP_AMP] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2180), + [anon_sym___extension__] = ACTIONS(2178), + [anon_sym_typedef] = ACTIONS(2178), + [anon_sym_virtual] = ACTIONS(2178), + [anon_sym_extern] = ACTIONS(2178), + [anon_sym___attribute__] = ACTIONS(2178), + [anon_sym___attribute] = ACTIONS(2178), + [anon_sym_COLON_COLON] = ACTIONS(2180), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2180), + [anon_sym___declspec] = ACTIONS(2178), + [anon_sym___based] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2180), + [anon_sym_signed] = ACTIONS(2178), + [anon_sym_unsigned] = ACTIONS(2178), + [anon_sym_long] = ACTIONS(2178), + [anon_sym_short] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_register] = ACTIONS(2178), + [anon_sym_inline] = ACTIONS(2178), + [anon_sym___inline] = ACTIONS(2178), + [anon_sym___inline__] = ACTIONS(2178), + [anon_sym___forceinline] = ACTIONS(2178), + [anon_sym_thread_local] = ACTIONS(2178), + [anon_sym___thread] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_constexpr] = ACTIONS(2178), + [anon_sym_volatile] = ACTIONS(2178), + [anon_sym_restrict] = ACTIONS(2178), + [anon_sym___restrict__] = ACTIONS(2178), + [anon_sym__Atomic] = ACTIONS(2178), + [anon_sym__Noreturn] = ACTIONS(2178), + [anon_sym_noreturn] = ACTIONS(2178), + [anon_sym__Nonnull] = ACTIONS(2178), + [anon_sym_mutable] = ACTIONS(2178), + [anon_sym_constinit] = ACTIONS(2178), + [anon_sym_consteval] = ACTIONS(2178), + [anon_sym_alignas] = ACTIONS(2178), + [anon_sym__Alignas] = ACTIONS(2178), + [sym_primitive_type] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_struct] = ACTIONS(2178), + [anon_sym_union] = ACTIONS(2178), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2178), + [anon_sym_decltype] = ACTIONS(2178), + [anon_sym_explicit] = ACTIONS(2178), + [anon_sym_typename] = ACTIONS(2178), + [anon_sym_template] = ACTIONS(2178), + [anon_sym_operator] = ACTIONS(2178), + [anon_sym_friend] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_protected] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_static_assert] = ACTIONS(2178), + [sym_macro_statement] = ACTIONS(2178), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2178), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2178), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2178), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2178), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2178), + [anon_sym_MOZ_COLD] = ACTIONS(2178), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2178), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2178), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2178), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2178), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2178), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2178), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2178), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2178), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2178), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2178), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2178), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2178), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2178), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2178), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2178), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2178), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_NONNULL] = ACTIONS(2178), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2178), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2178), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2178), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2178), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_NORETURN] = ACTIONS(2178), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2178), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2178), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2178), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2178), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2178), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2178), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2178), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2178), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2178), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2178), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2178), + [anon_sym_MOZ_RAII] = ACTIONS(2178), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2178), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2178), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2178), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2178), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2178), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2178), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2178), + }, + [STATE(1230)] = { + [sym_identifier] = ACTIONS(2256), + [aux_sym_preproc_def_token1] = ACTIONS(2256), + [aux_sym_preproc_if_token1] = ACTIONS(2256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2256), + [sym_preproc_directive] = ACTIONS(2256), + [anon_sym_LPAREN2] = ACTIONS(2258), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2258), + [anon_sym_AMP_AMP] = ACTIONS(2258), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym___extension__] = ACTIONS(2256), + [anon_sym_typedef] = ACTIONS(2256), + [anon_sym_virtual] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym_COLON_COLON] = ACTIONS(2258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2258), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym___based] = ACTIONS(2256), + [anon_sym_RBRACE] = ACTIONS(2258), + [anon_sym_signed] = ACTIONS(2256), + [anon_sym_unsigned] = ACTIONS(2256), + [anon_sym_long] = ACTIONS(2256), + [anon_sym_short] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2256), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [anon_sym___inline] = ACTIONS(2256), + [anon_sym___inline__] = ACTIONS(2256), + [anon_sym___forceinline] = ACTIONS(2256), + [anon_sym_thread_local] = ACTIONS(2256), + [anon_sym___thread] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_constexpr] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym___restrict__] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym__Noreturn] = ACTIONS(2256), + [anon_sym_noreturn] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym_mutable] = ACTIONS(2256), + [anon_sym_constinit] = ACTIONS(2256), + [anon_sym_consteval] = ACTIONS(2256), + [anon_sym_alignas] = ACTIONS(2256), + [anon_sym__Alignas] = ACTIONS(2256), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_class] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2256), + [anon_sym_decltype] = ACTIONS(2256), + [anon_sym_explicit] = ACTIONS(2256), + [anon_sym_typename] = ACTIONS(2256), + [anon_sym_template] = ACTIONS(2256), + [anon_sym_operator] = ACTIONS(2256), + [anon_sym_friend] = ACTIONS(2256), + [anon_sym_public] = ACTIONS(2256), + [anon_sym_private] = ACTIONS(2256), + [anon_sym_protected] = ACTIONS(2256), + [anon_sym_using] = ACTIONS(2256), + [anon_sym_static_assert] = ACTIONS(2256), + [sym_macro_statement] = ACTIONS(2256), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2256), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2256), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2256), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2256), + [anon_sym_MOZ_COLD] = ACTIONS(2256), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2256), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2256), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2256), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2256), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2256), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2256), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2256), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2256), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2256), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2256), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2256), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2256), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2256), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2256), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2256), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2256), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_NONNULL] = ACTIONS(2256), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2256), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2256), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2256), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2256), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_NORETURN] = ACTIONS(2256), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2256), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2256), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2256), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2256), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2256), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2256), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2256), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2256), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2256), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2256), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2256), + [anon_sym_MOZ_RAII] = ACTIONS(2256), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2256), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2256), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2256), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2256), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2256), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2256), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2256), + }, + [STATE(1231)] = { + [sym_identifier] = ACTIONS(4468), + [aux_sym_preproc_def_token1] = ACTIONS(4468), + [aux_sym_preproc_if_token1] = ACTIONS(4468), + [aux_sym_preproc_if_token2] = ACTIONS(4468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4468), + [sym_preproc_directive] = ACTIONS(4468), + [anon_sym_LPAREN2] = ACTIONS(4470), + [anon_sym_TILDE] = ACTIONS(4470), + [anon_sym_STAR] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4468), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym___extension__] = ACTIONS(4468), + [anon_sym_typedef] = ACTIONS(4468), + [anon_sym_virtual] = ACTIONS(4468), + [anon_sym_extern] = ACTIONS(4468), + [anon_sym___attribute__] = ACTIONS(4468), + [anon_sym___attribute] = ACTIONS(4468), + [anon_sym_COLON_COLON] = ACTIONS(4470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4470), + [anon_sym___declspec] = ACTIONS(4468), + [anon_sym___based] = ACTIONS(4468), + [anon_sym_signed] = ACTIONS(4468), + [anon_sym_unsigned] = ACTIONS(4468), + [anon_sym_long] = ACTIONS(4468), + [anon_sym_short] = ACTIONS(4468), + [anon_sym_LBRACK] = ACTIONS(4468), + [anon_sym_static] = ACTIONS(4468), + [anon_sym_register] = ACTIONS(4468), + [anon_sym_inline] = ACTIONS(4468), + [anon_sym___inline] = ACTIONS(4468), + [anon_sym___inline__] = ACTIONS(4468), + [anon_sym___forceinline] = ACTIONS(4468), + [anon_sym_thread_local] = ACTIONS(4468), + [anon_sym___thread] = ACTIONS(4468), + [anon_sym_const] = ACTIONS(4468), + [anon_sym_constexpr] = ACTIONS(4468), + [anon_sym_volatile] = ACTIONS(4468), + [anon_sym_restrict] = ACTIONS(4468), + [anon_sym___restrict__] = ACTIONS(4468), + [anon_sym__Atomic] = ACTIONS(4468), + [anon_sym__Noreturn] = ACTIONS(4468), + [anon_sym_noreturn] = ACTIONS(4468), + [anon_sym__Nonnull] = ACTIONS(4468), + [anon_sym_mutable] = ACTIONS(4468), + [anon_sym_constinit] = ACTIONS(4468), + [anon_sym_consteval] = ACTIONS(4468), + [anon_sym_alignas] = ACTIONS(4468), + [anon_sym__Alignas] = ACTIONS(4468), + [sym_primitive_type] = ACTIONS(4468), + [anon_sym_enum] = ACTIONS(4468), + [anon_sym_class] = ACTIONS(4468), + [anon_sym_struct] = ACTIONS(4468), + [anon_sym_union] = ACTIONS(4468), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4468), + [anon_sym_decltype] = ACTIONS(4468), + [anon_sym_explicit] = ACTIONS(4468), + [anon_sym_typename] = ACTIONS(4468), + [anon_sym_template] = ACTIONS(4468), + [anon_sym_operator] = ACTIONS(4468), + [anon_sym_friend] = ACTIONS(4468), + [anon_sym_public] = ACTIONS(4468), + [anon_sym_private] = ACTIONS(4468), + [anon_sym_protected] = ACTIONS(4468), + [anon_sym_using] = ACTIONS(4468), + [anon_sym_static_assert] = ACTIONS(4468), + [sym_macro_statement] = ACTIONS(4468), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4468), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4468), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4468), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4468), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4468), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4468), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4468), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4468), + [anon_sym_MOZ_COLD] = ACTIONS(4468), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4468), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4468), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4468), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4468), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4468), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4468), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4468), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4468), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4468), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4468), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4468), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4468), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4468), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4468), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4468), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4468), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4468), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4468), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4468), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4468), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4468), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_NONNULL] = ACTIONS(4468), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4468), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4468), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4468), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4468), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4468), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_NORETURN] = ACTIONS(4468), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4468), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4468), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4468), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4468), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4468), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4468), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4468), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4468), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4468), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4468), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4468), + [anon_sym_MOZ_RAII] = ACTIONS(4468), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4468), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4468), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4468), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4468), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4468), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4468), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4468), + }, + [STATE(1232)] = { + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_def_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [sym_preproc_directive] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_AMP_AMP] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym___extension__] = ACTIONS(2108), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_virtual] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym_COLON_COLON] = ACTIONS(2110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2110), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___based] = ACTIONS(2108), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [anon_sym_LBRACK] = ACTIONS(2108), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [anon_sym___inline] = ACTIONS(2108), + [anon_sym___inline__] = ACTIONS(2108), + [anon_sym___forceinline] = ACTIONS(2108), + [anon_sym_thread_local] = ACTIONS(2108), + [anon_sym___thread] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_constexpr] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym___restrict__] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym__Noreturn] = ACTIONS(2108), + [anon_sym_noreturn] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym_mutable] = ACTIONS(2108), + [anon_sym_constinit] = ACTIONS(2108), + [anon_sym_consteval] = ACTIONS(2108), + [anon_sym_alignas] = ACTIONS(2108), + [anon_sym__Alignas] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_class] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2108), + [anon_sym_decltype] = ACTIONS(2108), + [anon_sym_explicit] = ACTIONS(2108), + [anon_sym_typename] = ACTIONS(2108), + [anon_sym_template] = ACTIONS(2108), + [anon_sym_operator] = ACTIONS(2108), + [anon_sym_friend] = ACTIONS(2108), + [anon_sym_public] = ACTIONS(2108), + [anon_sym_private] = ACTIONS(2108), + [anon_sym_protected] = ACTIONS(2108), + [anon_sym_using] = ACTIONS(2108), + [anon_sym_static_assert] = ACTIONS(2108), + [sym_macro_statement] = ACTIONS(2108), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2108), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2108), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2108), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2108), + [anon_sym_MOZ_COLD] = ACTIONS(2108), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2108), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2108), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2108), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2108), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2108), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2108), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2108), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2108), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2108), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2108), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2108), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2108), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2108), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_NONNULL] = ACTIONS(2108), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2108), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2108), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2108), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2108), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2108), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2108), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2108), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2108), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2108), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2108), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2108), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2108), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2108), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2108), + [anon_sym_MOZ_RAII] = ACTIONS(2108), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2108), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2108), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2108), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2108), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2108), + }, + [STATE(1233)] = { + [sym_identifier] = ACTIONS(2148), + [aux_sym_preproc_def_token1] = ACTIONS(2148), + [aux_sym_preproc_if_token1] = ACTIONS(2148), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2148), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2148), + [sym_preproc_directive] = ACTIONS(2148), + [anon_sym_LPAREN2] = ACTIONS(2150), + [anon_sym_TILDE] = ACTIONS(2150), + [anon_sym_STAR] = ACTIONS(2150), + [anon_sym_AMP_AMP] = ACTIONS(2150), + [anon_sym_AMP] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym___extension__] = ACTIONS(2148), + [anon_sym_typedef] = ACTIONS(2148), + [anon_sym_virtual] = ACTIONS(2148), + [anon_sym_extern] = ACTIONS(2148), + [anon_sym___attribute__] = ACTIONS(2148), + [anon_sym___attribute] = ACTIONS(2148), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2150), + [anon_sym___declspec] = ACTIONS(2148), + [anon_sym___based] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_signed] = ACTIONS(2148), + [anon_sym_unsigned] = ACTIONS(2148), + [anon_sym_long] = ACTIONS(2148), + [anon_sym_short] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_register] = ACTIONS(2148), + [anon_sym_inline] = ACTIONS(2148), + [anon_sym___inline] = ACTIONS(2148), + [anon_sym___inline__] = ACTIONS(2148), + [anon_sym___forceinline] = ACTIONS(2148), + [anon_sym_thread_local] = ACTIONS(2148), + [anon_sym___thread] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_constexpr] = ACTIONS(2148), + [anon_sym_volatile] = ACTIONS(2148), + [anon_sym_restrict] = ACTIONS(2148), + [anon_sym___restrict__] = ACTIONS(2148), + [anon_sym__Atomic] = ACTIONS(2148), + [anon_sym__Noreturn] = ACTIONS(2148), + [anon_sym_noreturn] = ACTIONS(2148), + [anon_sym__Nonnull] = ACTIONS(2148), + [anon_sym_mutable] = ACTIONS(2148), + [anon_sym_constinit] = ACTIONS(2148), + [anon_sym_consteval] = ACTIONS(2148), + [anon_sym_alignas] = ACTIONS(2148), + [anon_sym__Alignas] = ACTIONS(2148), + [sym_primitive_type] = ACTIONS(2148), + [anon_sym_enum] = ACTIONS(2148), + [anon_sym_class] = ACTIONS(2148), + [anon_sym_struct] = ACTIONS(2148), + [anon_sym_union] = ACTIONS(2148), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2148), + [anon_sym_decltype] = ACTIONS(2148), + [anon_sym_explicit] = ACTIONS(2148), + [anon_sym_typename] = ACTIONS(2148), + [anon_sym_template] = ACTIONS(2148), + [anon_sym_operator] = ACTIONS(2148), + [anon_sym_friend] = ACTIONS(2148), + [anon_sym_public] = ACTIONS(2148), + [anon_sym_private] = ACTIONS(2148), + [anon_sym_protected] = ACTIONS(2148), + [anon_sym_using] = ACTIONS(2148), + [anon_sym_static_assert] = ACTIONS(2148), + [sym_macro_statement] = ACTIONS(2148), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2148), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2148), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2148), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2148), + [anon_sym_MOZ_COLD] = ACTIONS(2148), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2148), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2148), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2148), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2148), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2148), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2148), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2148), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2148), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2148), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2148), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2148), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2148), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2148), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_NONNULL] = ACTIONS(2148), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2148), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2148), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2148), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2148), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2148), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2148), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2148), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2148), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2148), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2148), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2148), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2148), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2148), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2148), + [anon_sym_MOZ_RAII] = ACTIONS(2148), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2148), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2148), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2148), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2148), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2148), + }, + [STATE(1234)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(4520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4522), + [anon_sym_COMMA] = ACTIONS(4522), + [anon_sym_RPAREN] = ACTIONS(4522), + [anon_sym_LPAREN2] = ACTIONS(4522), + [anon_sym_TILDE] = ACTIONS(4522), + [anon_sym_STAR] = ACTIONS(4522), + [anon_sym_AMP_AMP] = ACTIONS(4522), + [anon_sym_AMP] = ACTIONS(4520), + [anon_sym_SEMI] = ACTIONS(4522), + [anon_sym___extension__] = ACTIONS(4520), + [anon_sym_virtual] = ACTIONS(4520), + [anon_sym_extern] = ACTIONS(4520), + [anon_sym___attribute__] = ACTIONS(4520), + [anon_sym___attribute] = ACTIONS(4520), + [anon_sym_COLON_COLON] = ACTIONS(4522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4522), + [anon_sym___declspec] = ACTIONS(4520), + [anon_sym___based] = ACTIONS(4520), + [anon_sym___cdecl] = ACTIONS(4520), + [anon_sym___clrcall] = ACTIONS(4520), + [anon_sym___stdcall] = ACTIONS(4520), + [anon_sym___fastcall] = ACTIONS(4520), + [anon_sym___thiscall] = ACTIONS(4520), + [anon_sym___vectorcall] = ACTIONS(4520), + [anon_sym_LBRACE] = ACTIONS(4522), + [anon_sym_signed] = ACTIONS(4524), + [anon_sym_unsigned] = ACTIONS(4524), + [anon_sym_long] = ACTIONS(4524), + [anon_sym_short] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4520), + [anon_sym_static] = ACTIONS(4520), + [anon_sym_EQ] = ACTIONS(4522), + [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__Nonnull] = ACTIONS(4520), + [anon_sym_mutable] = ACTIONS(4520), + [anon_sym_constinit] = ACTIONS(4520), + [anon_sym_consteval] = ACTIONS(4520), + [anon_sym_alignas] = ACTIONS(4520), + [anon_sym__Alignas] = ACTIONS(4520), + [sym_primitive_type] = ACTIONS(4520), + [anon_sym_asm] = ACTIONS(4520), + [anon_sym___asm__] = ACTIONS(4520), + [anon_sym___asm] = ACTIONS(4520), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4520), + [anon_sym_decltype] = ACTIONS(4520), + [anon_sym_final] = ACTIONS(4520), + [anon_sym_override] = ACTIONS(4520), + [anon_sym_template] = ACTIONS(4520), + [anon_sym_GT2] = ACTIONS(4522), + [anon_sym_operator] = ACTIONS(4520), + [anon_sym_try] = ACTIONS(4520), + [anon_sym_requires] = ACTIONS(4520), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4520), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4520), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4520), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4520), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4520), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4520), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4520), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4520), + [anon_sym_MOZ_COLD] = ACTIONS(4520), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4520), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4520), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4520), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4520), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4520), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4520), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4520), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4520), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4520), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4520), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4520), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4520), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4520), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4520), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4520), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4520), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4520), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4520), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4520), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4520), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4520), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4520), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4520), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4520), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4520), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4520), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4520), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4520), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4520), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4520), + [anon_sym_MOZ_NONNULL] = ACTIONS(4520), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4520), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4520), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4520), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4520), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4520), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4520), + [anon_sym_MOZ_NORETURN] = ACTIONS(4520), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4520), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4520), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4520), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4520), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4520), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4520), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4520), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4520), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4520), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4520), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4520), + [anon_sym_MOZ_RAII] = ACTIONS(4520), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4520), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4520), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4520), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4520), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4520), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4520), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4520), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4520), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4520), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4520), + }, + [STATE(1235)] = { + [sym_identifier] = ACTIONS(4472), + [aux_sym_preproc_def_token1] = ACTIONS(4472), + [aux_sym_preproc_if_token1] = ACTIONS(4472), + [aux_sym_preproc_if_token2] = ACTIONS(4472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4472), + [sym_preproc_directive] = ACTIONS(4472), + [anon_sym_LPAREN2] = ACTIONS(4474), + [anon_sym_TILDE] = ACTIONS(4474), + [anon_sym_STAR] = ACTIONS(4474), + [anon_sym_AMP_AMP] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4472), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym___extension__] = ACTIONS(4472), + [anon_sym_typedef] = ACTIONS(4472), + [anon_sym_virtual] = ACTIONS(4472), + [anon_sym_extern] = ACTIONS(4472), + [anon_sym___attribute__] = ACTIONS(4472), + [anon_sym___attribute] = ACTIONS(4472), + [anon_sym_COLON_COLON] = ACTIONS(4474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4474), + [anon_sym___declspec] = ACTIONS(4472), + [anon_sym___based] = ACTIONS(4472), + [anon_sym_signed] = ACTIONS(4472), + [anon_sym_unsigned] = ACTIONS(4472), + [anon_sym_long] = ACTIONS(4472), + [anon_sym_short] = ACTIONS(4472), + [anon_sym_LBRACK] = ACTIONS(4472), + [anon_sym_static] = ACTIONS(4472), + [anon_sym_register] = ACTIONS(4472), + [anon_sym_inline] = ACTIONS(4472), + [anon_sym___inline] = ACTIONS(4472), + [anon_sym___inline__] = ACTIONS(4472), + [anon_sym___forceinline] = ACTIONS(4472), + [anon_sym_thread_local] = ACTIONS(4472), + [anon_sym___thread] = ACTIONS(4472), + [anon_sym_const] = ACTIONS(4472), + [anon_sym_constexpr] = ACTIONS(4472), + [anon_sym_volatile] = ACTIONS(4472), + [anon_sym_restrict] = ACTIONS(4472), + [anon_sym___restrict__] = ACTIONS(4472), + [anon_sym__Atomic] = ACTIONS(4472), + [anon_sym__Noreturn] = ACTIONS(4472), + [anon_sym_noreturn] = ACTIONS(4472), + [anon_sym__Nonnull] = ACTIONS(4472), + [anon_sym_mutable] = ACTIONS(4472), + [anon_sym_constinit] = ACTIONS(4472), + [anon_sym_consteval] = ACTIONS(4472), + [anon_sym_alignas] = ACTIONS(4472), + [anon_sym__Alignas] = ACTIONS(4472), + [sym_primitive_type] = ACTIONS(4472), + [anon_sym_enum] = ACTIONS(4472), + [anon_sym_class] = ACTIONS(4472), + [anon_sym_struct] = ACTIONS(4472), + [anon_sym_union] = ACTIONS(4472), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4472), + [anon_sym_decltype] = ACTIONS(4472), + [anon_sym_explicit] = ACTIONS(4472), + [anon_sym_typename] = ACTIONS(4472), + [anon_sym_template] = ACTIONS(4472), + [anon_sym_operator] = ACTIONS(4472), + [anon_sym_friend] = ACTIONS(4472), + [anon_sym_public] = ACTIONS(4472), + [anon_sym_private] = ACTIONS(4472), + [anon_sym_protected] = ACTIONS(4472), + [anon_sym_using] = ACTIONS(4472), + [anon_sym_static_assert] = ACTIONS(4472), + [sym_macro_statement] = ACTIONS(4472), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4472), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4472), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4472), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4472), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4472), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4472), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4472), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4472), + [anon_sym_MOZ_COLD] = ACTIONS(4472), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4472), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4472), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4472), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4472), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4472), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4472), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4472), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4472), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4472), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4472), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4472), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4472), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4472), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4472), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4472), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4472), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4472), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4472), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4472), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4472), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4472), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_NONNULL] = ACTIONS(4472), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4472), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4472), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4472), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4472), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4472), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_NORETURN] = ACTIONS(4472), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4472), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4472), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4472), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4472), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4472), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4472), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4472), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4472), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4472), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4472), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4472), + [anon_sym_MOZ_RAII] = ACTIONS(4472), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4472), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4472), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4472), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4472), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4472), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4472), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4472), + }, + [STATE(1236)] = { + [sym__declaration_modifiers] = STATE(1631), + [sym_attribute_specifier] = STATE(1631), + [sym_attribute_declaration] = STATE(1631), + [sym_ms_declspec_modifier] = STATE(1631), + [sym_storage_class_specifier] = STATE(1631), + [sym_type_qualifier] = STATE(1631), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(2186), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6919), + [sym_qualified_type_identifier] = STATE(1482), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1631), + [aux_sym_sized_type_specifier_repeat1] = STATE(1462), + [sym_identifier] = ACTIONS(3001), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(4518), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(3011), + [anon_sym_unsigned] = ACTIONS(3011), + [anon_sym_long] = ACTIONS(3011), + [anon_sym_short] = ACTIONS(3011), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(3013), + [anon_sym_enum] = ACTIONS(3015), + [anon_sym_class] = ACTIONS(3017), + [anon_sym_struct] = ACTIONS(3019), + [anon_sym_union] = ACTIONS(3021), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(3023), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(1237)] = { + [sym_identifier] = ACTIONS(4364), + [aux_sym_preproc_def_token1] = ACTIONS(4364), + [aux_sym_preproc_if_token1] = ACTIONS(4364), + [aux_sym_preproc_if_token2] = ACTIONS(4364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4364), + [sym_preproc_directive] = ACTIONS(4364), + [anon_sym_LPAREN2] = ACTIONS(4366), + [anon_sym_TILDE] = ACTIONS(4366), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4364), + [anon_sym_SEMI] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(4364), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(4364), + [anon_sym_extern] = ACTIONS(4364), + [anon_sym___attribute__] = ACTIONS(4364), + [anon_sym___attribute] = ACTIONS(4364), + [anon_sym_COLON_COLON] = ACTIONS(4366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4366), + [anon_sym___declspec] = ACTIONS(4364), + [anon_sym___based] = ACTIONS(4364), + [anon_sym_signed] = ACTIONS(4364), + [anon_sym_unsigned] = ACTIONS(4364), + [anon_sym_long] = ACTIONS(4364), + [anon_sym_short] = ACTIONS(4364), + [anon_sym_LBRACK] = ACTIONS(4364), + [anon_sym_static] = ACTIONS(4364), + [anon_sym_register] = ACTIONS(4364), + [anon_sym_inline] = ACTIONS(4364), + [anon_sym___inline] = ACTIONS(4364), + [anon_sym___inline__] = ACTIONS(4364), + [anon_sym___forceinline] = ACTIONS(4364), + [anon_sym_thread_local] = ACTIONS(4364), + [anon_sym___thread] = ACTIONS(4364), + [anon_sym_const] = ACTIONS(4364), + [anon_sym_constexpr] = ACTIONS(4364), + [anon_sym_volatile] = ACTIONS(4364), + [anon_sym_restrict] = ACTIONS(4364), + [anon_sym___restrict__] = ACTIONS(4364), + [anon_sym__Atomic] = ACTIONS(4364), + [anon_sym__Noreturn] = ACTIONS(4364), + [anon_sym_noreturn] = ACTIONS(4364), + [anon_sym__Nonnull] = ACTIONS(4364), + [anon_sym_mutable] = ACTIONS(4364), + [anon_sym_constinit] = ACTIONS(4364), + [anon_sym_consteval] = ACTIONS(4364), + [anon_sym_alignas] = ACTIONS(4364), + [anon_sym__Alignas] = ACTIONS(4364), + [sym_primitive_type] = ACTIONS(4364), + [anon_sym_enum] = ACTIONS(4364), + [anon_sym_class] = ACTIONS(4364), + [anon_sym_struct] = ACTIONS(4364), + [anon_sym_union] = ACTIONS(4364), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4364), + [anon_sym_decltype] = ACTIONS(4364), + [anon_sym_explicit] = ACTIONS(4364), + [anon_sym_typename] = ACTIONS(4364), + [anon_sym_template] = ACTIONS(4364), + [anon_sym_operator] = ACTIONS(4364), + [anon_sym_friend] = ACTIONS(4364), + [anon_sym_public] = ACTIONS(4364), + [anon_sym_private] = ACTIONS(4364), + [anon_sym_protected] = ACTIONS(4364), + [anon_sym_using] = ACTIONS(4364), + [anon_sym_static_assert] = ACTIONS(4364), + [sym_macro_statement] = ACTIONS(4364), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4364), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4364), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4364), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4364), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4364), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4364), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4364), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4364), + [anon_sym_MOZ_COLD] = ACTIONS(4364), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4364), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4364), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4364), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4364), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4364), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4364), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4364), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4364), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4364), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4364), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4364), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4364), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4364), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4364), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4364), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4364), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4364), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4364), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4364), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4364), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_NONNULL] = ACTIONS(4364), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4364), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4364), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4364), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4364), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4364), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_NORETURN] = ACTIONS(4364), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4364), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4364), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4364), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4364), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4364), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4364), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4364), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4364), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4364), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4364), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4364), + [anon_sym_MOZ_RAII] = ACTIONS(4364), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4364), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4364), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4364), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4364), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4364), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4364), + }, + [STATE(1238)] = { + [sym_identifier] = ACTIONS(2436), + [aux_sym_preproc_def_token1] = ACTIONS(2436), + [aux_sym_preproc_if_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2436), + [sym_preproc_directive] = ACTIONS(2436), + [anon_sym_LPAREN2] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_virtual] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_COLON_COLON] = ACTIONS(2438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym___based] = ACTIONS(2436), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_mutable] = ACTIONS(2436), + [anon_sym_constinit] = ACTIONS(2436), + [anon_sym_consteval] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_class] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2436), + [anon_sym_decltype] = ACTIONS(2436), + [anon_sym_explicit] = ACTIONS(2436), + [anon_sym_typename] = ACTIONS(2436), + [anon_sym_template] = ACTIONS(2436), + [anon_sym_operator] = ACTIONS(2436), + [anon_sym_friend] = ACTIONS(2436), + [anon_sym_public] = ACTIONS(2436), + [anon_sym_private] = ACTIONS(2436), + [anon_sym_protected] = ACTIONS(2436), + [anon_sym_using] = ACTIONS(2436), + [anon_sym_static_assert] = ACTIONS(2436), + [sym_macro_statement] = ACTIONS(2436), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2436), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2436), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2436), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2436), + [anon_sym_MOZ_COLD] = ACTIONS(2436), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2436), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2436), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2436), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2436), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2436), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2436), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2436), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2436), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2436), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2436), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2436), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2436), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2436), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_NONNULL] = ACTIONS(2436), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2436), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2436), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2436), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2436), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2436), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2436), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2436), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2436), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2436), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2436), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2436), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2436), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2436), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2436), + [anon_sym_MOZ_RAII] = ACTIONS(2436), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2436), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2436), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2436), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2436), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2436), + }, + [STATE(1239)] = { + [sym_identifier] = ACTIONS(2444), + [aux_sym_preproc_def_token1] = ACTIONS(2444), + [aux_sym_preproc_if_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2444), + [sym_preproc_directive] = ACTIONS(2444), + [anon_sym_LPAREN2] = ACTIONS(2446), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_AMP_AMP] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_SEMI] = ACTIONS(2446), + [anon_sym___extension__] = ACTIONS(2444), + [anon_sym_typedef] = ACTIONS(2444), + [anon_sym_virtual] = ACTIONS(2444), + [anon_sym_extern] = ACTIONS(2444), + [anon_sym___attribute__] = ACTIONS(2444), + [anon_sym___attribute] = ACTIONS(2444), + [anon_sym_COLON_COLON] = ACTIONS(2446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2446), + [anon_sym___declspec] = ACTIONS(2444), + [anon_sym___based] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(2446), + [anon_sym_signed] = ACTIONS(2444), + [anon_sym_unsigned] = ACTIONS(2444), + [anon_sym_long] = ACTIONS(2444), + [anon_sym_short] = ACTIONS(2444), + [anon_sym_LBRACK] = ACTIONS(2444), + [anon_sym_static] = ACTIONS(2444), + [anon_sym_register] = ACTIONS(2444), + [anon_sym_inline] = ACTIONS(2444), + [anon_sym___inline] = ACTIONS(2444), + [anon_sym___inline__] = ACTIONS(2444), + [anon_sym___forceinline] = ACTIONS(2444), + [anon_sym_thread_local] = ACTIONS(2444), + [anon_sym___thread] = ACTIONS(2444), + [anon_sym_const] = ACTIONS(2444), + [anon_sym_constexpr] = ACTIONS(2444), + [anon_sym_volatile] = ACTIONS(2444), + [anon_sym_restrict] = ACTIONS(2444), + [anon_sym___restrict__] = ACTIONS(2444), + [anon_sym__Atomic] = ACTIONS(2444), + [anon_sym__Noreturn] = ACTIONS(2444), + [anon_sym_noreturn] = ACTIONS(2444), + [anon_sym__Nonnull] = ACTIONS(2444), + [anon_sym_mutable] = ACTIONS(2444), + [anon_sym_constinit] = ACTIONS(2444), + [anon_sym_consteval] = ACTIONS(2444), + [anon_sym_alignas] = ACTIONS(2444), + [anon_sym__Alignas] = ACTIONS(2444), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_enum] = ACTIONS(2444), + [anon_sym_class] = ACTIONS(2444), + [anon_sym_struct] = ACTIONS(2444), + [anon_sym_union] = ACTIONS(2444), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2444), + [anon_sym_decltype] = ACTIONS(2444), + [anon_sym_explicit] = ACTIONS(2444), + [anon_sym_typename] = ACTIONS(2444), + [anon_sym_template] = ACTIONS(2444), + [anon_sym_operator] = ACTIONS(2444), + [anon_sym_friend] = ACTIONS(2444), + [anon_sym_public] = ACTIONS(2444), + [anon_sym_private] = ACTIONS(2444), + [anon_sym_protected] = ACTIONS(2444), + [anon_sym_using] = ACTIONS(2444), + [anon_sym_static_assert] = ACTIONS(2444), + [sym_macro_statement] = ACTIONS(2444), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2444), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2444), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2444), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2444), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2444), + [anon_sym_MOZ_COLD] = ACTIONS(2444), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2444), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2444), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2444), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2444), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2444), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2444), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2444), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2444), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2444), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2444), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2444), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2444), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2444), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2444), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2444), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2444), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_NONNULL] = ACTIONS(2444), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2444), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2444), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2444), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2444), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_NORETURN] = ACTIONS(2444), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2444), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2444), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2444), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2444), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2444), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2444), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2444), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2444), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2444), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2444), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2444), + [anon_sym_MOZ_RAII] = ACTIONS(2444), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2444), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2444), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2444), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2444), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2444), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2444), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2444), + }, + [STATE(1240)] = { + [sym_identifier] = ACTIONS(4364), + [aux_sym_preproc_def_token1] = ACTIONS(4364), + [aux_sym_preproc_if_token1] = ACTIONS(4364), + [aux_sym_preproc_if_token2] = ACTIONS(4364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4364), + [sym_preproc_directive] = ACTIONS(4364), + [anon_sym_LPAREN2] = ACTIONS(4366), + [anon_sym_TILDE] = ACTIONS(4366), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_AMP_AMP] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4364), + [anon_sym_SEMI] = ACTIONS(4366), + [anon_sym___extension__] = ACTIONS(4364), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(4364), + [anon_sym_extern] = ACTIONS(4364), + [anon_sym___attribute__] = ACTIONS(4364), + [anon_sym___attribute] = ACTIONS(4364), + [anon_sym_COLON_COLON] = ACTIONS(4366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4366), + [anon_sym___declspec] = ACTIONS(4364), + [anon_sym___based] = ACTIONS(4364), + [anon_sym_signed] = ACTIONS(4364), + [anon_sym_unsigned] = ACTIONS(4364), + [anon_sym_long] = ACTIONS(4364), + [anon_sym_short] = ACTIONS(4364), + [anon_sym_LBRACK] = ACTIONS(4364), + [anon_sym_static] = ACTIONS(4364), + [anon_sym_register] = ACTIONS(4364), + [anon_sym_inline] = ACTIONS(4364), + [anon_sym___inline] = ACTIONS(4364), + [anon_sym___inline__] = ACTIONS(4364), + [anon_sym___forceinline] = ACTIONS(4364), + [anon_sym_thread_local] = ACTIONS(4364), + [anon_sym___thread] = ACTIONS(4364), + [anon_sym_const] = ACTIONS(4364), + [anon_sym_constexpr] = ACTIONS(4364), + [anon_sym_volatile] = ACTIONS(4364), + [anon_sym_restrict] = ACTIONS(4364), + [anon_sym___restrict__] = ACTIONS(4364), + [anon_sym__Atomic] = ACTIONS(4364), + [anon_sym__Noreturn] = ACTIONS(4364), + [anon_sym_noreturn] = ACTIONS(4364), + [anon_sym__Nonnull] = ACTIONS(4364), + [anon_sym_mutable] = ACTIONS(4364), + [anon_sym_constinit] = ACTIONS(4364), + [anon_sym_consteval] = ACTIONS(4364), + [anon_sym_alignas] = ACTIONS(4364), + [anon_sym__Alignas] = ACTIONS(4364), + [sym_primitive_type] = ACTIONS(4364), + [anon_sym_enum] = ACTIONS(4364), + [anon_sym_class] = ACTIONS(4364), + [anon_sym_struct] = ACTIONS(4364), + [anon_sym_union] = ACTIONS(4364), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4364), + [anon_sym_decltype] = ACTIONS(4364), + [anon_sym_explicit] = ACTIONS(4364), + [anon_sym_typename] = ACTIONS(4364), + [anon_sym_template] = ACTIONS(4364), + [anon_sym_operator] = ACTIONS(4364), + [anon_sym_friend] = ACTIONS(4364), + [anon_sym_public] = ACTIONS(4364), + [anon_sym_private] = ACTIONS(4364), + [anon_sym_protected] = ACTIONS(4364), + [anon_sym_using] = ACTIONS(4364), + [anon_sym_static_assert] = ACTIONS(4364), + [sym_macro_statement] = ACTIONS(4364), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4364), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4364), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4364), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4364), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4364), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4364), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4364), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4364), + [anon_sym_MOZ_COLD] = ACTIONS(4364), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4364), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4364), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4364), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4364), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4364), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4364), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4364), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4364), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4364), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4364), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4364), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4364), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4364), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4364), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4364), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4364), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4364), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4364), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4364), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4364), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4364), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_NONNULL] = ACTIONS(4364), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4364), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4364), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4364), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4364), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4364), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_NORETURN] = ACTIONS(4364), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4364), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4364), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4364), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4364), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4364), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4364), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4364), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4364), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4364), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4364), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4364), + [anon_sym_MOZ_RAII] = ACTIONS(4364), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4364), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4364), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4364), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4364), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4364), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4364), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4364), + }, + [STATE(1241)] = { + [sym_identifier] = ACTIONS(2236), + [aux_sym_preproc_def_token1] = ACTIONS(2236), + [aux_sym_preproc_if_token1] = ACTIONS(2236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2236), + [sym_preproc_directive] = ACTIONS(2236), + [anon_sym_LPAREN2] = ACTIONS(2238), + [anon_sym_TILDE] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_typedef] = ACTIONS(2236), + [anon_sym_virtual] = ACTIONS(2236), + [anon_sym_extern] = ACTIONS(2236), + [anon_sym___attribute__] = ACTIONS(2236), + [anon_sym___attribute] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2238), + [anon_sym___declspec] = ACTIONS(2236), + [anon_sym___based] = ACTIONS(2236), + [anon_sym_RBRACE] = ACTIONS(2238), + [anon_sym_signed] = ACTIONS(2236), + [anon_sym_unsigned] = ACTIONS(2236), + [anon_sym_long] = ACTIONS(2236), + [anon_sym_short] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_register] = ACTIONS(2236), + [anon_sym_inline] = ACTIONS(2236), + [anon_sym___inline] = ACTIONS(2236), + [anon_sym___inline__] = ACTIONS(2236), + [anon_sym___forceinline] = ACTIONS(2236), + [anon_sym_thread_local] = ACTIONS(2236), + [anon_sym___thread] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(2236), + [anon_sym_constexpr] = ACTIONS(2236), + [anon_sym_volatile] = ACTIONS(2236), + [anon_sym_restrict] = ACTIONS(2236), + [anon_sym___restrict__] = ACTIONS(2236), + [anon_sym__Atomic] = ACTIONS(2236), + [anon_sym__Noreturn] = ACTIONS(2236), + [anon_sym_noreturn] = ACTIONS(2236), + [anon_sym__Nonnull] = ACTIONS(2236), + [anon_sym_mutable] = ACTIONS(2236), + [anon_sym_constinit] = ACTIONS(2236), + [anon_sym_consteval] = ACTIONS(2236), + [anon_sym_alignas] = ACTIONS(2236), + [anon_sym__Alignas] = ACTIONS(2236), + [sym_primitive_type] = ACTIONS(2236), + [anon_sym_enum] = ACTIONS(2236), + [anon_sym_class] = ACTIONS(2236), + [anon_sym_struct] = ACTIONS(2236), + [anon_sym_union] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2236), + [anon_sym_decltype] = ACTIONS(2236), + [anon_sym_explicit] = ACTIONS(2236), + [anon_sym_typename] = ACTIONS(2236), + [anon_sym_template] = ACTIONS(2236), + [anon_sym_operator] = ACTIONS(2236), + [anon_sym_friend] = ACTIONS(2236), + [anon_sym_public] = ACTIONS(2236), + [anon_sym_private] = ACTIONS(2236), + [anon_sym_protected] = ACTIONS(2236), + [anon_sym_using] = ACTIONS(2236), + [anon_sym_static_assert] = ACTIONS(2236), + [sym_macro_statement] = ACTIONS(2236), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2236), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2236), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2236), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2236), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2236), + [anon_sym_MOZ_COLD] = ACTIONS(2236), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2236), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2236), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2236), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2236), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2236), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2236), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2236), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2236), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2236), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2236), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2236), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2236), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2236), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2236), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2236), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2236), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_NONNULL] = ACTIONS(2236), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2236), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2236), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2236), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2236), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_NORETURN] = ACTIONS(2236), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2236), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2236), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2236), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2236), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2236), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2236), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2236), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2236), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2236), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2236), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2236), + [anon_sym_MOZ_RAII] = ACTIONS(2236), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2236), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2236), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2236), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2236), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2236), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2236), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2236), + }, + [STATE(1242)] = { + [sym_identifier] = ACTIONS(2160), + [aux_sym_preproc_def_token1] = ACTIONS(2160), + [aux_sym_preproc_if_token1] = ACTIONS(2160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2160), + [sym_preproc_directive] = ACTIONS(2160), + [anon_sym_LPAREN2] = ACTIONS(2162), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_STAR] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym___extension__] = ACTIONS(2160), + [anon_sym_typedef] = ACTIONS(2160), + [anon_sym_virtual] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2160), + [anon_sym___attribute__] = ACTIONS(2160), + [anon_sym___attribute] = ACTIONS(2160), + [anon_sym_COLON_COLON] = ACTIONS(2162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2162), + [anon_sym___declspec] = ACTIONS(2160), + [anon_sym___based] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_signed] = ACTIONS(2160), + [anon_sym_unsigned] = ACTIONS(2160), + [anon_sym_long] = ACTIONS(2160), + [anon_sym_short] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_register] = ACTIONS(2160), + [anon_sym_inline] = ACTIONS(2160), + [anon_sym___inline] = ACTIONS(2160), + [anon_sym___inline__] = ACTIONS(2160), + [anon_sym___forceinline] = ACTIONS(2160), + [anon_sym_thread_local] = ACTIONS(2160), + [anon_sym___thread] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_constexpr] = ACTIONS(2160), + [anon_sym_volatile] = ACTIONS(2160), + [anon_sym_restrict] = ACTIONS(2160), + [anon_sym___restrict__] = ACTIONS(2160), + [anon_sym__Atomic] = ACTIONS(2160), + [anon_sym__Noreturn] = ACTIONS(2160), + [anon_sym_noreturn] = ACTIONS(2160), + [anon_sym__Nonnull] = ACTIONS(2160), + [anon_sym_mutable] = ACTIONS(2160), + [anon_sym_constinit] = ACTIONS(2160), + [anon_sym_consteval] = ACTIONS(2160), + [anon_sym_alignas] = ACTIONS(2160), + [anon_sym__Alignas] = ACTIONS(2160), + [sym_primitive_type] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_struct] = ACTIONS(2160), + [anon_sym_union] = ACTIONS(2160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2160), + [anon_sym_decltype] = ACTIONS(2160), + [anon_sym_explicit] = ACTIONS(2160), + [anon_sym_typename] = ACTIONS(2160), + [anon_sym_template] = ACTIONS(2160), + [anon_sym_operator] = ACTIONS(2160), + [anon_sym_friend] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_static_assert] = ACTIONS(2160), + [sym_macro_statement] = ACTIONS(2160), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2160), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2160), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2160), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2160), + [anon_sym_MOZ_COLD] = ACTIONS(2160), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2160), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2160), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2160), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2160), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2160), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2160), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2160), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2160), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2160), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2160), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2160), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2160), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2160), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_NONNULL] = ACTIONS(2160), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2160), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2160), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2160), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2160), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2160), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2160), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2160), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2160), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2160), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2160), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2160), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2160), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2160), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2160), + [anon_sym_MOZ_RAII] = ACTIONS(2160), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2160), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2160), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2160), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2160), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2160), + }, + [STATE(1243)] = { + [sym_identifier] = ACTIONS(2260), + [aux_sym_preproc_def_token1] = ACTIONS(2260), + [aux_sym_preproc_if_token1] = ACTIONS(2260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2260), + [sym_preproc_directive] = ACTIONS(2260), + [anon_sym_LPAREN2] = ACTIONS(2262), + [anon_sym_TILDE] = ACTIONS(2262), + [anon_sym_STAR] = ACTIONS(2262), + [anon_sym_AMP_AMP] = ACTIONS(2262), + [anon_sym_AMP] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2262), + [anon_sym___extension__] = ACTIONS(2260), + [anon_sym_typedef] = ACTIONS(2260), + [anon_sym_virtual] = ACTIONS(2260), + [anon_sym_extern] = ACTIONS(2260), + [anon_sym___attribute__] = ACTIONS(2260), + [anon_sym___attribute] = ACTIONS(2260), + [anon_sym_COLON_COLON] = ACTIONS(2262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2262), + [anon_sym___declspec] = ACTIONS(2260), + [anon_sym___based] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_signed] = ACTIONS(2260), + [anon_sym_unsigned] = ACTIONS(2260), + [anon_sym_long] = ACTIONS(2260), + [anon_sym_short] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_static] = ACTIONS(2260), + [anon_sym_register] = ACTIONS(2260), + [anon_sym_inline] = ACTIONS(2260), + [anon_sym___inline] = ACTIONS(2260), + [anon_sym___inline__] = ACTIONS(2260), + [anon_sym___forceinline] = ACTIONS(2260), + [anon_sym_thread_local] = ACTIONS(2260), + [anon_sym___thread] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [anon_sym_constexpr] = ACTIONS(2260), + [anon_sym_volatile] = ACTIONS(2260), + [anon_sym_restrict] = ACTIONS(2260), + [anon_sym___restrict__] = ACTIONS(2260), + [anon_sym__Atomic] = ACTIONS(2260), + [anon_sym__Noreturn] = ACTIONS(2260), + [anon_sym_noreturn] = ACTIONS(2260), + [anon_sym__Nonnull] = ACTIONS(2260), + [anon_sym_mutable] = ACTIONS(2260), + [anon_sym_constinit] = ACTIONS(2260), + [anon_sym_consteval] = ACTIONS(2260), + [anon_sym_alignas] = ACTIONS(2260), + [anon_sym__Alignas] = ACTIONS(2260), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), + [anon_sym_class] = ACTIONS(2260), + [anon_sym_struct] = ACTIONS(2260), + [anon_sym_union] = ACTIONS(2260), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2260), + [anon_sym_decltype] = ACTIONS(2260), + [anon_sym_explicit] = ACTIONS(2260), + [anon_sym_typename] = ACTIONS(2260), + [anon_sym_template] = ACTIONS(2260), + [anon_sym_operator] = ACTIONS(2260), + [anon_sym_friend] = ACTIONS(2260), + [anon_sym_public] = ACTIONS(2260), + [anon_sym_private] = ACTIONS(2260), + [anon_sym_protected] = ACTIONS(2260), + [anon_sym_using] = ACTIONS(2260), + [anon_sym_static_assert] = ACTIONS(2260), + [sym_macro_statement] = ACTIONS(2260), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2260), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2260), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2260), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2260), + [anon_sym_MOZ_COLD] = ACTIONS(2260), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2260), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2260), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2260), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2260), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2260), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2260), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2260), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2260), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2260), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2260), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2260), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2260), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2260), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_NONNULL] = ACTIONS(2260), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2260), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2260), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2260), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2260), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2260), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2260), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2260), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2260), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2260), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2260), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2260), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2260), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2260), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2260), + [anon_sym_MOZ_RAII] = ACTIONS(2260), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2260), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2260), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2260), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2260), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2260), + }, + [STATE(1244)] = { + [sym_identifier] = ACTIONS(2264), + [aux_sym_preproc_def_token1] = ACTIONS(2264), + [aux_sym_preproc_if_token1] = ACTIONS(2264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2264), + [sym_preproc_directive] = ACTIONS(2264), + [anon_sym_LPAREN2] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_STAR] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_AMP] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym___extension__] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2264), + [anon_sym_virtual] = ACTIONS(2264), + [anon_sym_extern] = ACTIONS(2264), + [anon_sym___attribute__] = ACTIONS(2264), + [anon_sym___attribute] = ACTIONS(2264), + [anon_sym_COLON_COLON] = ACTIONS(2266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2266), + [anon_sym___declspec] = ACTIONS(2264), + [anon_sym___based] = ACTIONS(2264), + [anon_sym_RBRACE] = ACTIONS(2266), + [anon_sym_signed] = ACTIONS(2264), + [anon_sym_unsigned] = ACTIONS(2264), + [anon_sym_long] = ACTIONS(2264), + [anon_sym_short] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_register] = ACTIONS(2264), + [anon_sym_inline] = ACTIONS(2264), + [anon_sym___inline] = ACTIONS(2264), + [anon_sym___inline__] = ACTIONS(2264), + [anon_sym___forceinline] = ACTIONS(2264), + [anon_sym_thread_local] = ACTIONS(2264), + [anon_sym___thread] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_constexpr] = ACTIONS(2264), + [anon_sym_volatile] = ACTIONS(2264), + [anon_sym_restrict] = ACTIONS(2264), + [anon_sym___restrict__] = ACTIONS(2264), + [anon_sym__Atomic] = ACTIONS(2264), + [anon_sym__Noreturn] = ACTIONS(2264), + [anon_sym_noreturn] = ACTIONS(2264), + [anon_sym__Nonnull] = ACTIONS(2264), + [anon_sym_mutable] = ACTIONS(2264), + [anon_sym_constinit] = ACTIONS(2264), + [anon_sym_consteval] = ACTIONS(2264), + [anon_sym_alignas] = ACTIONS(2264), + [anon_sym__Alignas] = ACTIONS(2264), + [sym_primitive_type] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + [anon_sym_class] = ACTIONS(2264), + [anon_sym_struct] = ACTIONS(2264), + [anon_sym_union] = ACTIONS(2264), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2264), + [anon_sym_decltype] = ACTIONS(2264), + [anon_sym_explicit] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_template] = ACTIONS(2264), + [anon_sym_operator] = ACTIONS(2264), + [anon_sym_friend] = ACTIONS(2264), + [anon_sym_public] = ACTIONS(2264), + [anon_sym_private] = ACTIONS(2264), + [anon_sym_protected] = ACTIONS(2264), + [anon_sym_using] = ACTIONS(2264), + [anon_sym_static_assert] = ACTIONS(2264), + [sym_macro_statement] = ACTIONS(2264), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2264), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2264), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2264), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2264), + [anon_sym_MOZ_COLD] = ACTIONS(2264), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2264), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2264), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2264), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2264), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2264), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2264), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2264), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2264), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2264), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2264), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2264), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2264), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2264), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2264), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2264), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2264), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_NONNULL] = ACTIONS(2264), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2264), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2264), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2264), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2264), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_NORETURN] = ACTIONS(2264), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2264), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2264), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2264), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2264), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2264), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2264), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2264), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2264), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2264), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2264), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2264), + [anon_sym_MOZ_RAII] = ACTIONS(2264), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2264), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2264), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2264), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2264), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2264), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2264), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2264), + }, + [STATE(1245)] = { + [sym_identifier] = ACTIONS(4368), + [aux_sym_preproc_def_token1] = ACTIONS(4368), + [aux_sym_preproc_if_token1] = ACTIONS(4368), + [aux_sym_preproc_if_token2] = ACTIONS(4368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4368), + [sym_preproc_directive] = ACTIONS(4368), + [anon_sym_LPAREN2] = ACTIONS(4370), + [anon_sym_TILDE] = ACTIONS(4370), + [anon_sym_STAR] = ACTIONS(4370), + [anon_sym_AMP_AMP] = ACTIONS(4370), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym_SEMI] = ACTIONS(4370), + [anon_sym___extension__] = ACTIONS(4368), + [anon_sym_typedef] = ACTIONS(4368), + [anon_sym_virtual] = ACTIONS(4368), + [anon_sym_extern] = ACTIONS(4368), + [anon_sym___attribute__] = ACTIONS(4368), + [anon_sym___attribute] = ACTIONS(4368), + [anon_sym_COLON_COLON] = ACTIONS(4370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4370), + [anon_sym___declspec] = ACTIONS(4368), + [anon_sym___based] = ACTIONS(4368), + [anon_sym_signed] = ACTIONS(4368), + [anon_sym_unsigned] = ACTIONS(4368), + [anon_sym_long] = ACTIONS(4368), + [anon_sym_short] = ACTIONS(4368), + [anon_sym_LBRACK] = ACTIONS(4368), + [anon_sym_static] = ACTIONS(4368), + [anon_sym_register] = ACTIONS(4368), + [anon_sym_inline] = ACTIONS(4368), + [anon_sym___inline] = ACTIONS(4368), + [anon_sym___inline__] = ACTIONS(4368), + [anon_sym___forceinline] = ACTIONS(4368), + [anon_sym_thread_local] = ACTIONS(4368), + [anon_sym___thread] = ACTIONS(4368), + [anon_sym_const] = ACTIONS(4368), + [anon_sym_constexpr] = ACTIONS(4368), + [anon_sym_volatile] = ACTIONS(4368), + [anon_sym_restrict] = ACTIONS(4368), + [anon_sym___restrict__] = ACTIONS(4368), + [anon_sym__Atomic] = ACTIONS(4368), + [anon_sym__Noreturn] = ACTIONS(4368), + [anon_sym_noreturn] = ACTIONS(4368), + [anon_sym__Nonnull] = ACTIONS(4368), + [anon_sym_mutable] = ACTIONS(4368), + [anon_sym_constinit] = ACTIONS(4368), + [anon_sym_consteval] = ACTIONS(4368), + [anon_sym_alignas] = ACTIONS(4368), + [anon_sym__Alignas] = ACTIONS(4368), + [sym_primitive_type] = ACTIONS(4368), + [anon_sym_enum] = ACTIONS(4368), + [anon_sym_class] = ACTIONS(4368), + [anon_sym_struct] = ACTIONS(4368), + [anon_sym_union] = ACTIONS(4368), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4368), + [anon_sym_decltype] = ACTIONS(4368), + [anon_sym_explicit] = ACTIONS(4368), + [anon_sym_typename] = ACTIONS(4368), + [anon_sym_template] = ACTIONS(4368), + [anon_sym_operator] = ACTIONS(4368), + [anon_sym_friend] = ACTIONS(4368), + [anon_sym_public] = ACTIONS(4368), + [anon_sym_private] = ACTIONS(4368), + [anon_sym_protected] = ACTIONS(4368), + [anon_sym_using] = ACTIONS(4368), + [anon_sym_static_assert] = ACTIONS(4368), + [sym_macro_statement] = ACTIONS(4368), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4368), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4368), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4368), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4368), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4368), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4368), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4368), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4368), + [anon_sym_MOZ_COLD] = ACTIONS(4368), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4368), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4368), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4368), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4368), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4368), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4368), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4368), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4368), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4368), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4368), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4368), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4368), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4368), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4368), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4368), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4368), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4368), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4368), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4368), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4368), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4368), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_NONNULL] = ACTIONS(4368), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4368), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4368), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4368), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4368), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4368), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_NORETURN] = ACTIONS(4368), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4368), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4368), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4368), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4368), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4368), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4368), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4368), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4368), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4368), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4368), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4368), + [anon_sym_MOZ_RAII] = ACTIONS(4368), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4368), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4368), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4368), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4368), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4368), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4368), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4368), + }, + [STATE(1246)] = { + [sym_identifier] = ACTIONS(4372), + [aux_sym_preproc_def_token1] = ACTIONS(4372), + [aux_sym_preproc_if_token1] = ACTIONS(4372), + [aux_sym_preproc_if_token2] = ACTIONS(4372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4372), + [sym_preproc_directive] = ACTIONS(4372), + [anon_sym_LPAREN2] = ACTIONS(4374), + [anon_sym_TILDE] = ACTIONS(4374), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP_AMP] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4372), + [anon_sym_SEMI] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(4372), + [anon_sym_typedef] = ACTIONS(4372), + [anon_sym_virtual] = ACTIONS(4372), + [anon_sym_extern] = ACTIONS(4372), + [anon_sym___attribute__] = ACTIONS(4372), + [anon_sym___attribute] = ACTIONS(4372), + [anon_sym_COLON_COLON] = ACTIONS(4374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4374), + [anon_sym___declspec] = ACTIONS(4372), + [anon_sym___based] = ACTIONS(4372), + [anon_sym_signed] = ACTIONS(4372), + [anon_sym_unsigned] = ACTIONS(4372), + [anon_sym_long] = ACTIONS(4372), + [anon_sym_short] = ACTIONS(4372), + [anon_sym_LBRACK] = ACTIONS(4372), + [anon_sym_static] = ACTIONS(4372), + [anon_sym_register] = ACTIONS(4372), + [anon_sym_inline] = ACTIONS(4372), + [anon_sym___inline] = ACTIONS(4372), + [anon_sym___inline__] = ACTIONS(4372), + [anon_sym___forceinline] = ACTIONS(4372), + [anon_sym_thread_local] = ACTIONS(4372), + [anon_sym___thread] = ACTIONS(4372), + [anon_sym_const] = ACTIONS(4372), + [anon_sym_constexpr] = ACTIONS(4372), + [anon_sym_volatile] = ACTIONS(4372), + [anon_sym_restrict] = ACTIONS(4372), + [anon_sym___restrict__] = ACTIONS(4372), + [anon_sym__Atomic] = ACTIONS(4372), + [anon_sym__Noreturn] = ACTIONS(4372), + [anon_sym_noreturn] = ACTIONS(4372), + [anon_sym__Nonnull] = ACTIONS(4372), + [anon_sym_mutable] = ACTIONS(4372), + [anon_sym_constinit] = ACTIONS(4372), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(4372), + [anon_sym__Alignas] = ACTIONS(4372), + [sym_primitive_type] = ACTIONS(4372), + [anon_sym_enum] = ACTIONS(4372), + [anon_sym_class] = ACTIONS(4372), + [anon_sym_struct] = ACTIONS(4372), + [anon_sym_union] = ACTIONS(4372), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4372), + [anon_sym_decltype] = ACTIONS(4372), + [anon_sym_explicit] = ACTIONS(4372), + [anon_sym_typename] = ACTIONS(4372), + [anon_sym_template] = ACTIONS(4372), + [anon_sym_operator] = ACTIONS(4372), + [anon_sym_friend] = ACTIONS(4372), + [anon_sym_public] = ACTIONS(4372), + [anon_sym_private] = ACTIONS(4372), + [anon_sym_protected] = ACTIONS(4372), + [anon_sym_using] = ACTIONS(4372), + [anon_sym_static_assert] = ACTIONS(4372), + [sym_macro_statement] = ACTIONS(4372), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4372), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4372), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4372), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4372), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4372), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4372), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4372), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4372), + [anon_sym_MOZ_COLD] = ACTIONS(4372), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4372), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4372), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4372), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4372), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4372), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4372), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4372), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4372), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4372), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4372), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4372), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4372), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4372), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4372), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4372), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4372), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4372), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4372), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4372), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4372), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4372), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_NONNULL] = ACTIONS(4372), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4372), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4372), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4372), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4372), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4372), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_NORETURN] = ACTIONS(4372), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4372), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4372), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4372), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4372), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4372), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4372), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4372), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4372), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4372), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4372), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4372), + [anon_sym_MOZ_RAII] = ACTIONS(4372), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4372), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4372), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4372), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4372), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4372), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4372), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4372), + }, + [STATE(1247)] = { + [sym_identifier] = ACTIONS(2190), + [aux_sym_preproc_def_token1] = ACTIONS(2190), + [aux_sym_preproc_if_token1] = ACTIONS(2190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2190), + [sym_preproc_directive] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym___extension__] = ACTIONS(2190), + [anon_sym_typedef] = ACTIONS(2190), + [anon_sym_virtual] = ACTIONS(2190), + [anon_sym_extern] = ACTIONS(2190), + [anon_sym___attribute__] = ACTIONS(2190), + [anon_sym___attribute] = ACTIONS(2190), + [anon_sym_COLON_COLON] = ACTIONS(2192), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2192), + [anon_sym___declspec] = ACTIONS(2190), + [anon_sym___based] = ACTIONS(2190), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_signed] = ACTIONS(2190), + [anon_sym_unsigned] = ACTIONS(2190), + [anon_sym_long] = ACTIONS(2190), + [anon_sym_short] = ACTIONS(2190), + [anon_sym_LBRACK] = ACTIONS(2190), + [anon_sym_static] = ACTIONS(2190), + [anon_sym_register] = ACTIONS(2190), + [anon_sym_inline] = ACTIONS(2190), + [anon_sym___inline] = ACTIONS(2190), + [anon_sym___inline__] = ACTIONS(2190), + [anon_sym___forceinline] = ACTIONS(2190), + [anon_sym_thread_local] = ACTIONS(2190), + [anon_sym___thread] = ACTIONS(2190), + [anon_sym_const] = ACTIONS(2190), + [anon_sym_constexpr] = ACTIONS(2190), + [anon_sym_volatile] = ACTIONS(2190), + [anon_sym_restrict] = ACTIONS(2190), + [anon_sym___restrict__] = ACTIONS(2190), + [anon_sym__Atomic] = ACTIONS(2190), + [anon_sym__Noreturn] = ACTIONS(2190), + [anon_sym_noreturn] = ACTIONS(2190), + [anon_sym__Nonnull] = ACTIONS(2190), + [anon_sym_mutable] = ACTIONS(2190), + [anon_sym_constinit] = ACTIONS(2190), + [anon_sym_consteval] = ACTIONS(2190), + [anon_sym_alignas] = ACTIONS(2190), + [anon_sym__Alignas] = ACTIONS(2190), + [sym_primitive_type] = ACTIONS(2190), + [anon_sym_enum] = ACTIONS(2190), + [anon_sym_class] = ACTIONS(2190), + [anon_sym_struct] = ACTIONS(2190), + [anon_sym_union] = ACTIONS(2190), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2190), + [anon_sym_decltype] = ACTIONS(2190), + [anon_sym_explicit] = ACTIONS(2190), + [anon_sym_typename] = ACTIONS(2190), + [anon_sym_template] = ACTIONS(2190), + [anon_sym_operator] = ACTIONS(2190), + [anon_sym_friend] = ACTIONS(2190), + [anon_sym_public] = ACTIONS(2190), + [anon_sym_private] = ACTIONS(2190), + [anon_sym_protected] = ACTIONS(2190), + [anon_sym_using] = ACTIONS(2190), + [anon_sym_static_assert] = ACTIONS(2190), + [sym_macro_statement] = ACTIONS(2190), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2190), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2190), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2190), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2190), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2190), + [anon_sym_MOZ_COLD] = ACTIONS(2190), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2190), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2190), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2190), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2190), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2190), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2190), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2190), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2190), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2190), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2190), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2190), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2190), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2190), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2190), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2190), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2190), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_NONNULL] = ACTIONS(2190), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2190), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2190), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2190), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2190), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_NORETURN] = ACTIONS(2190), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2190), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2190), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2190), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2190), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2190), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2190), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2190), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2190), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2190), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2190), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2190), + [anon_sym_MOZ_RAII] = ACTIONS(2190), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2190), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2190), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2190), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2190), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2190), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2190), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2190), + }, + [STATE(1248)] = { + [sym__declaration_modifiers] = STATE(1631), + [sym_attribute_specifier] = STATE(1631), + [sym_attribute_declaration] = STATE(1631), + [sym_ms_declspec_modifier] = STATE(1631), + [sym_storage_class_specifier] = STATE(1631), + [sym_type_qualifier] = STATE(1631), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1354), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1631), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(4049), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(4518), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(2548), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(1249)] = { + [sym_identifier] = ACTIONS(4376), + [aux_sym_preproc_def_token1] = ACTIONS(4376), + [aux_sym_preproc_if_token1] = ACTIONS(4376), + [aux_sym_preproc_if_token2] = ACTIONS(4376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4376), + [sym_preproc_directive] = ACTIONS(4376), + [anon_sym_LPAREN2] = ACTIONS(4378), + [anon_sym_TILDE] = ACTIONS(4378), + [anon_sym_STAR] = ACTIONS(4378), + [anon_sym_AMP_AMP] = ACTIONS(4378), + [anon_sym_AMP] = ACTIONS(4376), + [anon_sym_SEMI] = ACTIONS(4378), + [anon_sym___extension__] = ACTIONS(4376), + [anon_sym_typedef] = ACTIONS(4376), + [anon_sym_virtual] = ACTIONS(4376), + [anon_sym_extern] = ACTIONS(4376), + [anon_sym___attribute__] = ACTIONS(4376), + [anon_sym___attribute] = ACTIONS(4376), + [anon_sym_COLON_COLON] = ACTIONS(4378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4378), + [anon_sym___declspec] = ACTIONS(4376), + [anon_sym___based] = ACTIONS(4376), + [anon_sym_signed] = ACTIONS(4376), + [anon_sym_unsigned] = ACTIONS(4376), + [anon_sym_long] = ACTIONS(4376), + [anon_sym_short] = ACTIONS(4376), + [anon_sym_LBRACK] = ACTIONS(4376), + [anon_sym_static] = ACTIONS(4376), + [anon_sym_register] = ACTIONS(4376), + [anon_sym_inline] = ACTIONS(4376), + [anon_sym___inline] = ACTIONS(4376), + [anon_sym___inline__] = ACTIONS(4376), + [anon_sym___forceinline] = ACTIONS(4376), + [anon_sym_thread_local] = ACTIONS(4376), + [anon_sym___thread] = ACTIONS(4376), + [anon_sym_const] = ACTIONS(4376), + [anon_sym_constexpr] = ACTIONS(4376), + [anon_sym_volatile] = ACTIONS(4376), + [anon_sym_restrict] = ACTIONS(4376), + [anon_sym___restrict__] = ACTIONS(4376), + [anon_sym__Atomic] = ACTIONS(4376), + [anon_sym__Noreturn] = ACTIONS(4376), + [anon_sym_noreturn] = ACTIONS(4376), + [anon_sym__Nonnull] = ACTIONS(4376), + [anon_sym_mutable] = ACTIONS(4376), + [anon_sym_constinit] = ACTIONS(4376), + [anon_sym_consteval] = ACTIONS(4376), + [anon_sym_alignas] = ACTIONS(4376), + [anon_sym__Alignas] = ACTIONS(4376), + [sym_primitive_type] = ACTIONS(4376), + [anon_sym_enum] = ACTIONS(4376), + [anon_sym_class] = ACTIONS(4376), + [anon_sym_struct] = ACTIONS(4376), + [anon_sym_union] = ACTIONS(4376), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4376), + [anon_sym_decltype] = ACTIONS(4376), + [anon_sym_explicit] = ACTIONS(4376), + [anon_sym_typename] = ACTIONS(4376), + [anon_sym_template] = ACTIONS(4376), + [anon_sym_operator] = ACTIONS(4376), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(4376), + [anon_sym_private] = ACTIONS(4376), + [anon_sym_protected] = ACTIONS(4376), + [anon_sym_using] = ACTIONS(4376), + [anon_sym_static_assert] = ACTIONS(4376), + [sym_macro_statement] = ACTIONS(4376), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4376), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4376), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4376), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4376), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4376), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4376), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4376), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4376), + [anon_sym_MOZ_COLD] = ACTIONS(4376), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4376), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4376), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4376), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4376), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4376), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4376), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4376), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4376), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4376), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4376), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4376), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4376), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4376), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4376), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4376), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4376), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4376), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4376), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4376), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4376), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4376), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_NONNULL] = ACTIONS(4376), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4376), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4376), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4376), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4376), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4376), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_NORETURN] = ACTIONS(4376), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4376), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4376), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4376), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4376), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4376), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4376), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4376), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4376), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4376), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4376), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4376), + [anon_sym_MOZ_RAII] = ACTIONS(4376), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4376), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4376), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4376), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4376), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4376), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4376), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4376), + }, + [STATE(1250)] = { + [sym_identifier] = ACTIONS(4380), + [aux_sym_preproc_def_token1] = ACTIONS(4380), + [aux_sym_preproc_if_token1] = ACTIONS(4380), + [aux_sym_preproc_if_token2] = ACTIONS(4380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4380), + [sym_preproc_directive] = ACTIONS(4380), + [anon_sym_LPAREN2] = ACTIONS(4382), + [anon_sym_TILDE] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [anon_sym_AMP_AMP] = ACTIONS(4382), + [anon_sym_AMP] = ACTIONS(4380), + [anon_sym_SEMI] = ACTIONS(4382), + [anon_sym___extension__] = ACTIONS(4380), + [anon_sym_typedef] = ACTIONS(4380), + [anon_sym_virtual] = ACTIONS(4380), + [anon_sym_extern] = ACTIONS(4380), + [anon_sym___attribute__] = ACTIONS(4380), + [anon_sym___attribute] = ACTIONS(4380), + [anon_sym_COLON_COLON] = ACTIONS(4382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4382), + [anon_sym___declspec] = ACTIONS(4380), + [anon_sym___based] = ACTIONS(4380), + [anon_sym_signed] = ACTIONS(4380), + [anon_sym_unsigned] = ACTIONS(4380), + [anon_sym_long] = ACTIONS(4380), + [anon_sym_short] = ACTIONS(4380), + [anon_sym_LBRACK] = ACTIONS(4380), + [anon_sym_static] = ACTIONS(4380), + [anon_sym_register] = ACTIONS(4380), + [anon_sym_inline] = ACTIONS(4380), + [anon_sym___inline] = ACTIONS(4380), + [anon_sym___inline__] = ACTIONS(4380), + [anon_sym___forceinline] = ACTIONS(4380), + [anon_sym_thread_local] = ACTIONS(4380), + [anon_sym___thread] = ACTIONS(4380), + [anon_sym_const] = ACTIONS(4380), + [anon_sym_constexpr] = ACTIONS(4380), + [anon_sym_volatile] = ACTIONS(4380), + [anon_sym_restrict] = ACTIONS(4380), + [anon_sym___restrict__] = ACTIONS(4380), + [anon_sym__Atomic] = ACTIONS(4380), + [anon_sym__Noreturn] = ACTIONS(4380), + [anon_sym_noreturn] = ACTIONS(4380), + [anon_sym__Nonnull] = ACTIONS(4380), + [anon_sym_mutable] = ACTIONS(4380), + [anon_sym_constinit] = ACTIONS(4380), + [anon_sym_consteval] = ACTIONS(4380), + [anon_sym_alignas] = ACTIONS(4380), + [anon_sym__Alignas] = ACTIONS(4380), + [sym_primitive_type] = ACTIONS(4380), + [anon_sym_enum] = ACTIONS(4380), + [anon_sym_class] = ACTIONS(4380), + [anon_sym_struct] = ACTIONS(4380), + [anon_sym_union] = ACTIONS(4380), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4380), + [anon_sym_decltype] = ACTIONS(4380), + [anon_sym_explicit] = ACTIONS(4380), + [anon_sym_typename] = ACTIONS(4380), + [anon_sym_template] = ACTIONS(4380), + [anon_sym_operator] = ACTIONS(4380), + [anon_sym_friend] = ACTIONS(4380), + [anon_sym_public] = ACTIONS(4380), + [anon_sym_private] = ACTIONS(4380), + [anon_sym_protected] = ACTIONS(4380), + [anon_sym_using] = ACTIONS(4380), + [anon_sym_static_assert] = ACTIONS(4380), + [sym_macro_statement] = ACTIONS(4380), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4380), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4380), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4380), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4380), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4380), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4380), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4380), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4380), + [anon_sym_MOZ_COLD] = ACTIONS(4380), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4380), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4380), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4380), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4380), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4380), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4380), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4380), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4380), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4380), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4380), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4380), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4380), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4380), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4380), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4380), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4380), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4380), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4380), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4380), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4380), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4380), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_NONNULL] = ACTIONS(4380), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4380), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4380), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4380), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4380), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4380), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_NORETURN] = ACTIONS(4380), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4380), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4380), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4380), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4380), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4380), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4380), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4380), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4380), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4380), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4380), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4380), + [anon_sym_MOZ_RAII] = ACTIONS(4380), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4380), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4380), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4380), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4380), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4380), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4380), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4380), + }, + [STATE(1251)] = { + [sym_identifier] = ACTIONS(4384), + [aux_sym_preproc_def_token1] = ACTIONS(4384), + [aux_sym_preproc_if_token1] = ACTIONS(4384), + [aux_sym_preproc_if_token2] = ACTIONS(4384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4384), + [sym_preproc_directive] = ACTIONS(4384), + [anon_sym_LPAREN2] = ACTIONS(4386), + [anon_sym_TILDE] = ACTIONS(4386), + [anon_sym_STAR] = ACTIONS(4386), + [anon_sym_AMP_AMP] = ACTIONS(4386), + [anon_sym_AMP] = ACTIONS(4384), + [anon_sym_SEMI] = ACTIONS(4386), + [anon_sym___extension__] = ACTIONS(4384), + [anon_sym_typedef] = ACTIONS(4384), + [anon_sym_virtual] = ACTIONS(4384), + [anon_sym_extern] = ACTIONS(4384), + [anon_sym___attribute__] = ACTIONS(4384), + [anon_sym___attribute] = ACTIONS(4384), + [anon_sym_COLON_COLON] = ACTIONS(4386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4386), + [anon_sym___declspec] = ACTIONS(4384), + [anon_sym___based] = ACTIONS(4384), + [anon_sym_signed] = ACTIONS(4384), + [anon_sym_unsigned] = ACTIONS(4384), + [anon_sym_long] = ACTIONS(4384), + [anon_sym_short] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_static] = ACTIONS(4384), + [anon_sym_register] = ACTIONS(4384), + [anon_sym_inline] = ACTIONS(4384), + [anon_sym___inline] = ACTIONS(4384), + [anon_sym___inline__] = ACTIONS(4384), + [anon_sym___forceinline] = ACTIONS(4384), + [anon_sym_thread_local] = ACTIONS(4384), + [anon_sym___thread] = ACTIONS(4384), + [anon_sym_const] = ACTIONS(4384), + [anon_sym_constexpr] = ACTIONS(4384), + [anon_sym_volatile] = ACTIONS(4384), + [anon_sym_restrict] = ACTIONS(4384), + [anon_sym___restrict__] = ACTIONS(4384), + [anon_sym__Atomic] = ACTIONS(4384), + [anon_sym__Noreturn] = ACTIONS(4384), + [anon_sym_noreturn] = ACTIONS(4384), + [anon_sym__Nonnull] = ACTIONS(4384), + [anon_sym_mutable] = ACTIONS(4384), + [anon_sym_constinit] = ACTIONS(4384), + [anon_sym_consteval] = ACTIONS(4384), + [anon_sym_alignas] = ACTIONS(4384), + [anon_sym__Alignas] = ACTIONS(4384), + [sym_primitive_type] = ACTIONS(4384), + [anon_sym_enum] = ACTIONS(4384), + [anon_sym_class] = ACTIONS(4384), + [anon_sym_struct] = ACTIONS(4384), + [anon_sym_union] = ACTIONS(4384), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4384), + [anon_sym_decltype] = ACTIONS(4384), + [anon_sym_explicit] = ACTIONS(4384), + [anon_sym_typename] = ACTIONS(4384), + [anon_sym_template] = ACTIONS(4384), + [anon_sym_operator] = ACTIONS(4384), + [anon_sym_friend] = ACTIONS(4384), + [anon_sym_public] = ACTIONS(4384), + [anon_sym_private] = ACTIONS(4384), + [anon_sym_protected] = ACTIONS(4384), + [anon_sym_using] = ACTIONS(4384), + [anon_sym_static_assert] = ACTIONS(4384), + [sym_macro_statement] = ACTIONS(4384), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4384), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4384), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4384), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4384), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4384), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4384), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4384), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4384), + [anon_sym_MOZ_COLD] = ACTIONS(4384), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4384), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4384), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4384), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4384), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4384), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4384), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4384), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4384), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4384), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4384), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4384), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4384), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4384), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4384), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4384), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4384), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4384), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4384), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4384), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4384), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4384), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_NONNULL] = ACTIONS(4384), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4384), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4384), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4384), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4384), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4384), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_NORETURN] = ACTIONS(4384), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4384), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4384), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4384), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4384), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4384), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4384), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4384), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4384), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4384), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4384), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4384), + [anon_sym_MOZ_RAII] = ACTIONS(4384), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4384), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4384), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4384), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4384), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4384), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4384), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4384), + }, + [STATE(1252)] = { + [sym_identifier] = ACTIONS(2321), + [aux_sym_preproc_def_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token1] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2321), + [sym_preproc_directive] = ACTIONS(2321), + [anon_sym_LPAREN2] = ACTIONS(2323), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_AMP_AMP] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_typedef] = ACTIONS(2321), + [anon_sym_virtual] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym___attribute__] = ACTIONS(2321), + [anon_sym___attribute] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2323), + [anon_sym___declspec] = ACTIONS(2321), + [anon_sym___based] = ACTIONS(2321), + [anon_sym_RBRACE] = ACTIONS(2323), + [anon_sym_signed] = ACTIONS(2321), + [anon_sym_unsigned] = ACTIONS(2321), + [anon_sym_long] = ACTIONS(2321), + [anon_sym_short] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_register] = ACTIONS(2321), + [anon_sym_inline] = ACTIONS(2321), + [anon_sym___inline] = ACTIONS(2321), + [anon_sym___inline__] = ACTIONS(2321), + [anon_sym___forceinline] = ACTIONS(2321), + [anon_sym_thread_local] = ACTIONS(2321), + [anon_sym___thread] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym__Nonnull] = ACTIONS(2321), + [anon_sym_mutable] = ACTIONS(2321), + [anon_sym_constinit] = ACTIONS(2321), + [anon_sym_consteval] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2321), + [anon_sym__Alignas] = ACTIONS(2321), + [sym_primitive_type] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2321), + [anon_sym_decltype] = ACTIONS(2321), + [anon_sym_explicit] = ACTIONS(2321), + [anon_sym_typename] = ACTIONS(2321), + [anon_sym_template] = ACTIONS(2321), + [anon_sym_operator] = ACTIONS(2321), + [anon_sym_friend] = ACTIONS(2321), + [anon_sym_public] = ACTIONS(2321), + [anon_sym_private] = ACTIONS(2321), + [anon_sym_protected] = ACTIONS(2321), + [anon_sym_using] = ACTIONS(2321), + [anon_sym_static_assert] = ACTIONS(2321), + [sym_macro_statement] = ACTIONS(2321), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2321), + [anon_sym_MOZ_COLD] = ACTIONS(2321), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2321), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2321), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2321), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2321), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2321), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2321), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2321), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2321), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2321), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2321), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2321), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2321), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_RAII] = ACTIONS(2321), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2321), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2321), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2321), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2321), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2321), + }, + [STATE(1253)] = { + [sym_identifier] = ACTIONS(2321), + [aux_sym_preproc_def_token1] = ACTIONS(2321), + [aux_sym_preproc_if_token1] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2321), + [sym_preproc_directive] = ACTIONS(2321), + [anon_sym_LPAREN2] = ACTIONS(2323), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_AMP_AMP] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym___extension__] = ACTIONS(2321), + [anon_sym_typedef] = ACTIONS(2321), + [anon_sym_virtual] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym___attribute__] = ACTIONS(2321), + [anon_sym___attribute] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2323), + [anon_sym___declspec] = ACTIONS(2321), + [anon_sym___based] = ACTIONS(2321), + [anon_sym_RBRACE] = ACTIONS(2323), + [anon_sym_signed] = ACTIONS(2321), + [anon_sym_unsigned] = ACTIONS(2321), + [anon_sym_long] = ACTIONS(2321), + [anon_sym_short] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_register] = ACTIONS(2321), + [anon_sym_inline] = ACTIONS(2321), + [anon_sym___inline] = ACTIONS(2321), + [anon_sym___inline__] = ACTIONS(2321), + [anon_sym___forceinline] = ACTIONS(2321), + [anon_sym_thread_local] = ACTIONS(2321), + [anon_sym___thread] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_constexpr] = ACTIONS(2321), + [anon_sym_volatile] = ACTIONS(2321), + [anon_sym_restrict] = ACTIONS(2321), + [anon_sym___restrict__] = ACTIONS(2321), + [anon_sym__Atomic] = ACTIONS(2321), + [anon_sym__Noreturn] = ACTIONS(2321), + [anon_sym_noreturn] = ACTIONS(2321), + [anon_sym__Nonnull] = ACTIONS(2321), + [anon_sym_mutable] = ACTIONS(2321), + [anon_sym_constinit] = ACTIONS(2321), + [anon_sym_consteval] = ACTIONS(2321), + [anon_sym_alignas] = ACTIONS(2321), + [anon_sym__Alignas] = ACTIONS(2321), + [sym_primitive_type] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2321), + [anon_sym_decltype] = ACTIONS(2321), + [anon_sym_explicit] = ACTIONS(2321), + [anon_sym_typename] = ACTIONS(2321), + [anon_sym_template] = ACTIONS(2321), + [anon_sym_operator] = ACTIONS(2321), + [anon_sym_friend] = ACTIONS(2321), + [anon_sym_public] = ACTIONS(2321), + [anon_sym_private] = ACTIONS(2321), + [anon_sym_protected] = ACTIONS(2321), + [anon_sym_using] = ACTIONS(2321), + [anon_sym_static_assert] = ACTIONS(2321), + [sym_macro_statement] = ACTIONS(2321), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2321), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2321), + [anon_sym_MOZ_COLD] = ACTIONS(2321), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2321), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2321), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2321), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2321), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2321), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2321), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2321), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2321), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2321), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2321), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2321), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2321), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL] = ACTIONS(2321), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2321), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2321), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN] = ACTIONS(2321), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2321), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2321), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2321), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2321), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2321), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2321), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2321), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2321), + [anon_sym_MOZ_RAII] = ACTIONS(2321), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2321), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2321), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2321), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2321), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2321), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2321), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2321), + }, + [STATE(1254)] = { + [sym_identifier] = ACTIONS(4388), + [aux_sym_preproc_def_token1] = ACTIONS(4388), + [aux_sym_preproc_if_token1] = ACTIONS(4388), + [aux_sym_preproc_if_token2] = ACTIONS(4388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4388), + [sym_preproc_directive] = ACTIONS(4388), + [anon_sym_LPAREN2] = ACTIONS(4390), + [anon_sym_TILDE] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_AMP] = ACTIONS(4388), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym___extension__] = ACTIONS(4388), + [anon_sym_typedef] = ACTIONS(4388), + [anon_sym_virtual] = ACTIONS(4388), + [anon_sym_extern] = ACTIONS(4388), + [anon_sym___attribute__] = ACTIONS(4388), + [anon_sym___attribute] = ACTIONS(4388), + [anon_sym_COLON_COLON] = ACTIONS(4390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4390), + [anon_sym___declspec] = ACTIONS(4388), + [anon_sym___based] = ACTIONS(4388), + [anon_sym_signed] = ACTIONS(4388), + [anon_sym_unsigned] = ACTIONS(4388), + [anon_sym_long] = ACTIONS(4388), + [anon_sym_short] = ACTIONS(4388), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_static] = ACTIONS(4388), + [anon_sym_register] = ACTIONS(4388), + [anon_sym_inline] = ACTIONS(4388), + [anon_sym___inline] = ACTIONS(4388), + [anon_sym___inline__] = ACTIONS(4388), + [anon_sym___forceinline] = ACTIONS(4388), + [anon_sym_thread_local] = ACTIONS(4388), + [anon_sym___thread] = ACTIONS(4388), + [anon_sym_const] = ACTIONS(4388), + [anon_sym_constexpr] = ACTIONS(4388), + [anon_sym_volatile] = ACTIONS(4388), + [anon_sym_restrict] = ACTIONS(4388), + [anon_sym___restrict__] = ACTIONS(4388), + [anon_sym__Atomic] = ACTIONS(4388), + [anon_sym__Noreturn] = ACTIONS(4388), + [anon_sym_noreturn] = ACTIONS(4388), + [anon_sym__Nonnull] = ACTIONS(4388), + [anon_sym_mutable] = ACTIONS(4388), + [anon_sym_constinit] = ACTIONS(4388), + [anon_sym_consteval] = ACTIONS(4388), + [anon_sym_alignas] = ACTIONS(4388), + [anon_sym__Alignas] = ACTIONS(4388), + [sym_primitive_type] = ACTIONS(4388), + [anon_sym_enum] = ACTIONS(4388), + [anon_sym_class] = ACTIONS(4388), + [anon_sym_struct] = ACTIONS(4388), + [anon_sym_union] = ACTIONS(4388), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4388), + [anon_sym_decltype] = ACTIONS(4388), + [anon_sym_explicit] = ACTIONS(4388), + [anon_sym_typename] = ACTIONS(4388), + [anon_sym_template] = ACTIONS(4388), + [anon_sym_operator] = ACTIONS(4388), + [anon_sym_friend] = ACTIONS(4388), + [anon_sym_public] = ACTIONS(4388), + [anon_sym_private] = ACTIONS(4388), + [anon_sym_protected] = ACTIONS(4388), + [anon_sym_using] = ACTIONS(4388), + [anon_sym_static_assert] = ACTIONS(4388), + [sym_macro_statement] = ACTIONS(4388), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4388), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4388), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4388), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4388), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4388), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4388), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4388), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4388), + [anon_sym_MOZ_COLD] = ACTIONS(4388), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4388), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4388), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4388), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4388), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4388), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4388), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4388), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4388), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4388), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4388), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4388), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4388), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4388), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4388), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4388), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4388), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4388), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4388), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4388), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4388), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_NONNULL] = ACTIONS(4388), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4388), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4388), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4388), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4388), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4388), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_NORETURN] = ACTIONS(4388), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4388), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4388), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4388), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4388), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4388), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4388), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4388), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4388), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4388), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4388), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4388), + [anon_sym_MOZ_RAII] = ACTIONS(4388), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4388), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4388), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4388), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4388), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4388), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4388), + }, + [STATE(1255)] = { + [sym_identifier] = ACTIONS(4388), + [aux_sym_preproc_def_token1] = ACTIONS(4388), + [aux_sym_preproc_if_token1] = ACTIONS(4388), + [aux_sym_preproc_if_token2] = ACTIONS(4388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4388), + [sym_preproc_directive] = ACTIONS(4388), + [anon_sym_LPAREN2] = ACTIONS(4390), + [anon_sym_TILDE] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_AMP] = ACTIONS(4388), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym___extension__] = ACTIONS(4388), + [anon_sym_typedef] = ACTIONS(4388), + [anon_sym_virtual] = ACTIONS(4388), + [anon_sym_extern] = ACTIONS(4388), + [anon_sym___attribute__] = ACTIONS(4388), + [anon_sym___attribute] = ACTIONS(4388), + [anon_sym_COLON_COLON] = ACTIONS(4390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4390), + [anon_sym___declspec] = ACTIONS(4388), + [anon_sym___based] = ACTIONS(4388), + [anon_sym_signed] = ACTIONS(4388), + [anon_sym_unsigned] = ACTIONS(4388), + [anon_sym_long] = ACTIONS(4388), + [anon_sym_short] = ACTIONS(4388), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_static] = ACTIONS(4388), + [anon_sym_register] = ACTIONS(4388), + [anon_sym_inline] = ACTIONS(4388), + [anon_sym___inline] = ACTIONS(4388), + [anon_sym___inline__] = ACTIONS(4388), + [anon_sym___forceinline] = ACTIONS(4388), + [anon_sym_thread_local] = ACTIONS(4388), + [anon_sym___thread] = ACTIONS(4388), + [anon_sym_const] = ACTIONS(4388), + [anon_sym_constexpr] = ACTIONS(4388), + [anon_sym_volatile] = ACTIONS(4388), + [anon_sym_restrict] = ACTIONS(4388), + [anon_sym___restrict__] = ACTIONS(4388), + [anon_sym__Atomic] = ACTIONS(4388), + [anon_sym__Noreturn] = ACTIONS(4388), + [anon_sym_noreturn] = ACTIONS(4388), + [anon_sym__Nonnull] = ACTIONS(4388), + [anon_sym_mutable] = ACTIONS(4388), + [anon_sym_constinit] = ACTIONS(4388), + [anon_sym_consteval] = ACTIONS(4388), + [anon_sym_alignas] = ACTIONS(4388), + [anon_sym__Alignas] = ACTIONS(4388), + [sym_primitive_type] = ACTIONS(4388), + [anon_sym_enum] = ACTIONS(4388), + [anon_sym_class] = ACTIONS(4388), + [anon_sym_struct] = ACTIONS(4388), + [anon_sym_union] = ACTIONS(4388), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4388), + [anon_sym_decltype] = ACTIONS(4388), + [anon_sym_explicit] = ACTIONS(4388), + [anon_sym_typename] = ACTIONS(4388), + [anon_sym_template] = ACTIONS(4388), + [anon_sym_operator] = ACTIONS(4388), + [anon_sym_friend] = ACTIONS(4388), + [anon_sym_public] = ACTIONS(4388), + [anon_sym_private] = ACTIONS(4388), + [anon_sym_protected] = ACTIONS(4388), + [anon_sym_using] = ACTIONS(4388), + [anon_sym_static_assert] = ACTIONS(4388), + [sym_macro_statement] = ACTIONS(4388), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4388), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4388), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4388), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4388), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4388), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4388), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4388), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4388), + [anon_sym_MOZ_COLD] = ACTIONS(4388), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4388), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4388), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4388), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4388), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4388), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4388), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4388), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4388), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4388), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4388), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4388), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4388), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4388), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4388), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4388), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4388), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4388), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4388), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4388), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4388), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4388), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_NONNULL] = ACTIONS(4388), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4388), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4388), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4388), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4388), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4388), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_NORETURN] = ACTIONS(4388), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4388), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4388), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4388), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4388), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4388), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4388), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4388), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4388), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4388), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4388), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4388), + [anon_sym_MOZ_RAII] = ACTIONS(4388), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4388), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4388), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4388), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4388), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4388), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4388), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4388), + }, + [STATE(1256)] = { + [sym_identifier] = ACTIONS(4396), + [aux_sym_preproc_def_token1] = ACTIONS(4396), + [aux_sym_preproc_if_token1] = ACTIONS(4396), + [aux_sym_preproc_if_token2] = ACTIONS(4396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4396), + [sym_preproc_directive] = ACTIONS(4396), + [anon_sym_LPAREN2] = ACTIONS(4398), + [anon_sym_TILDE] = ACTIONS(4398), + [anon_sym_STAR] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_AMP] = ACTIONS(4396), + [anon_sym_SEMI] = ACTIONS(4398), + [anon_sym___extension__] = ACTIONS(4396), + [anon_sym_typedef] = ACTIONS(4396), + [anon_sym_virtual] = ACTIONS(4396), + [anon_sym_extern] = ACTIONS(4396), + [anon_sym___attribute__] = ACTIONS(4396), + [anon_sym___attribute] = ACTIONS(4396), + [anon_sym_COLON_COLON] = ACTIONS(4398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4398), + [anon_sym___declspec] = ACTIONS(4396), + [anon_sym___based] = ACTIONS(4396), + [anon_sym_signed] = ACTIONS(4396), + [anon_sym_unsigned] = ACTIONS(4396), + [anon_sym_long] = ACTIONS(4396), + [anon_sym_short] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_static] = ACTIONS(4396), + [anon_sym_register] = ACTIONS(4396), + [anon_sym_inline] = ACTIONS(4396), + [anon_sym___inline] = ACTIONS(4396), + [anon_sym___inline__] = ACTIONS(4396), + [anon_sym___forceinline] = ACTIONS(4396), + [anon_sym_thread_local] = ACTIONS(4396), + [anon_sym___thread] = ACTIONS(4396), + [anon_sym_const] = ACTIONS(4396), + [anon_sym_constexpr] = ACTIONS(4396), + [anon_sym_volatile] = ACTIONS(4396), + [anon_sym_restrict] = ACTIONS(4396), + [anon_sym___restrict__] = ACTIONS(4396), + [anon_sym__Atomic] = ACTIONS(4396), + [anon_sym__Noreturn] = ACTIONS(4396), + [anon_sym_noreturn] = ACTIONS(4396), + [anon_sym__Nonnull] = ACTIONS(4396), + [anon_sym_mutable] = ACTIONS(4396), + [anon_sym_constinit] = ACTIONS(4396), + [anon_sym_consteval] = ACTIONS(4396), + [anon_sym_alignas] = ACTIONS(4396), + [anon_sym__Alignas] = ACTIONS(4396), + [sym_primitive_type] = ACTIONS(4396), + [anon_sym_enum] = ACTIONS(4396), + [anon_sym_class] = ACTIONS(4396), + [anon_sym_struct] = ACTIONS(4396), + [anon_sym_union] = ACTIONS(4396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4396), + [anon_sym_decltype] = ACTIONS(4396), + [anon_sym_explicit] = ACTIONS(4396), + [anon_sym_typename] = ACTIONS(4396), + [anon_sym_template] = ACTIONS(4396), + [anon_sym_operator] = ACTIONS(4396), + [anon_sym_friend] = ACTIONS(4396), + [anon_sym_public] = ACTIONS(4396), + [anon_sym_private] = ACTIONS(4396), + [anon_sym_protected] = ACTIONS(4396), + [anon_sym_using] = ACTIONS(4396), + [anon_sym_static_assert] = ACTIONS(4396), + [sym_macro_statement] = ACTIONS(4396), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4396), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4396), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4396), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4396), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4396), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4396), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4396), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4396), + [anon_sym_MOZ_COLD] = ACTIONS(4396), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4396), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4396), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4396), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4396), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4396), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4396), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4396), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4396), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4396), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4396), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4396), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4396), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4396), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4396), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4396), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4396), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4396), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4396), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4396), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4396), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4396), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_NONNULL] = ACTIONS(4396), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4396), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4396), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4396), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4396), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4396), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_NORETURN] = ACTIONS(4396), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4396), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4396), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4396), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4396), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4396), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4396), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4396), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4396), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4396), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4396), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4396), + [anon_sym_MOZ_RAII] = ACTIONS(4396), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4396), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4396), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4396), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4396), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4396), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4396), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4396), + }, + [STATE(1257)] = { + [sym_identifier] = ACTIONS(4400), + [aux_sym_preproc_def_token1] = ACTIONS(4400), + [aux_sym_preproc_if_token1] = ACTIONS(4400), + [aux_sym_preproc_if_token2] = ACTIONS(4400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4400), + [sym_preproc_directive] = ACTIONS(4400), + [anon_sym_LPAREN2] = ACTIONS(4402), + [anon_sym_TILDE] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4402), + [anon_sym_AMP_AMP] = ACTIONS(4402), + [anon_sym_AMP] = ACTIONS(4400), + [anon_sym_SEMI] = ACTIONS(4402), + [anon_sym___extension__] = ACTIONS(4400), + [anon_sym_typedef] = ACTIONS(4400), + [anon_sym_virtual] = ACTIONS(4400), + [anon_sym_extern] = ACTIONS(4400), + [anon_sym___attribute__] = ACTIONS(4400), + [anon_sym___attribute] = ACTIONS(4400), + [anon_sym_COLON_COLON] = ACTIONS(4402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4402), + [anon_sym___declspec] = ACTIONS(4400), + [anon_sym___based] = ACTIONS(4400), + [anon_sym_signed] = ACTIONS(4400), + [anon_sym_unsigned] = ACTIONS(4400), + [anon_sym_long] = ACTIONS(4400), + [anon_sym_short] = ACTIONS(4400), + [anon_sym_LBRACK] = ACTIONS(4400), + [anon_sym_static] = ACTIONS(4400), + [anon_sym_register] = ACTIONS(4400), + [anon_sym_inline] = ACTIONS(4400), + [anon_sym___inline] = ACTIONS(4400), + [anon_sym___inline__] = ACTIONS(4400), + [anon_sym___forceinline] = ACTIONS(4400), + [anon_sym_thread_local] = ACTIONS(4400), + [anon_sym___thread] = ACTIONS(4400), + [anon_sym_const] = ACTIONS(4400), + [anon_sym_constexpr] = ACTIONS(4400), + [anon_sym_volatile] = ACTIONS(4400), + [anon_sym_restrict] = ACTIONS(4400), + [anon_sym___restrict__] = ACTIONS(4400), + [anon_sym__Atomic] = ACTIONS(4400), + [anon_sym__Noreturn] = ACTIONS(4400), + [anon_sym_noreturn] = ACTIONS(4400), + [anon_sym__Nonnull] = ACTIONS(4400), + [anon_sym_mutable] = ACTIONS(4400), + [anon_sym_constinit] = ACTIONS(4400), + [anon_sym_consteval] = ACTIONS(4400), + [anon_sym_alignas] = ACTIONS(4400), + [anon_sym__Alignas] = ACTIONS(4400), + [sym_primitive_type] = ACTIONS(4400), + [anon_sym_enum] = ACTIONS(4400), + [anon_sym_class] = ACTIONS(4400), + [anon_sym_struct] = ACTIONS(4400), + [anon_sym_union] = ACTIONS(4400), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4400), + [anon_sym_decltype] = ACTIONS(4400), + [anon_sym_explicit] = ACTIONS(4400), + [anon_sym_typename] = ACTIONS(4400), + [anon_sym_template] = ACTIONS(4400), + [anon_sym_operator] = ACTIONS(4400), + [anon_sym_friend] = ACTIONS(4400), + [anon_sym_public] = ACTIONS(4400), + [anon_sym_private] = ACTIONS(4400), + [anon_sym_protected] = ACTIONS(4400), + [anon_sym_using] = ACTIONS(4400), + [anon_sym_static_assert] = ACTIONS(4400), + [sym_macro_statement] = ACTIONS(4400), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4400), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4400), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4400), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4400), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4400), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4400), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4400), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4400), + [anon_sym_MOZ_COLD] = ACTIONS(4400), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4400), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4400), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4400), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4400), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4400), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4400), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4400), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4400), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4400), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4400), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4400), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4400), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4400), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4400), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4400), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4400), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4400), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4400), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4400), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4400), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4400), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_NONNULL] = ACTIONS(4400), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4400), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4400), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4400), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4400), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4400), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_NORETURN] = ACTIONS(4400), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4400), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4400), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4400), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4400), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4400), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4400), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4400), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4400), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4400), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4400), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4400), + [anon_sym_MOZ_RAII] = ACTIONS(4400), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4400), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4400), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4400), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4400), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4400), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4400), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4400), + }, + [STATE(1258)] = { + [sym_identifier] = ACTIONS(4404), + [aux_sym_preproc_def_token1] = ACTIONS(4404), + [aux_sym_preproc_if_token1] = ACTIONS(4404), + [aux_sym_preproc_if_token2] = ACTIONS(4404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4404), + [sym_preproc_directive] = ACTIONS(4404), + [anon_sym_LPAREN2] = ACTIONS(4406), + [anon_sym_TILDE] = ACTIONS(4406), + [anon_sym_STAR] = ACTIONS(4406), + [anon_sym_AMP_AMP] = ACTIONS(4406), + [anon_sym_AMP] = ACTIONS(4404), + [anon_sym_SEMI] = ACTIONS(4406), + [anon_sym___extension__] = ACTIONS(4404), + [anon_sym_typedef] = ACTIONS(4404), + [anon_sym_virtual] = ACTIONS(4404), + [anon_sym_extern] = ACTIONS(4404), + [anon_sym___attribute__] = ACTIONS(4404), + [anon_sym___attribute] = ACTIONS(4404), + [anon_sym_COLON_COLON] = ACTIONS(4406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4406), + [anon_sym___declspec] = ACTIONS(4404), + [anon_sym___based] = ACTIONS(4404), + [anon_sym_signed] = ACTIONS(4404), + [anon_sym_unsigned] = ACTIONS(4404), + [anon_sym_long] = ACTIONS(4404), + [anon_sym_short] = ACTIONS(4404), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_static] = ACTIONS(4404), + [anon_sym_register] = ACTIONS(4404), + [anon_sym_inline] = ACTIONS(4404), + [anon_sym___inline] = ACTIONS(4404), + [anon_sym___inline__] = ACTIONS(4404), + [anon_sym___forceinline] = ACTIONS(4404), + [anon_sym_thread_local] = ACTIONS(4404), + [anon_sym___thread] = ACTIONS(4404), + [anon_sym_const] = ACTIONS(4404), + [anon_sym_constexpr] = ACTIONS(4404), + [anon_sym_volatile] = ACTIONS(4404), + [anon_sym_restrict] = ACTIONS(4404), + [anon_sym___restrict__] = ACTIONS(4404), + [anon_sym__Atomic] = ACTIONS(4404), + [anon_sym__Noreturn] = ACTIONS(4404), + [anon_sym_noreturn] = ACTIONS(4404), + [anon_sym__Nonnull] = ACTIONS(4404), + [anon_sym_mutable] = ACTIONS(4404), + [anon_sym_constinit] = ACTIONS(4404), + [anon_sym_consteval] = ACTIONS(4404), + [anon_sym_alignas] = ACTIONS(4404), + [anon_sym__Alignas] = ACTIONS(4404), + [sym_primitive_type] = ACTIONS(4404), + [anon_sym_enum] = ACTIONS(4404), + [anon_sym_class] = ACTIONS(4404), + [anon_sym_struct] = ACTIONS(4404), + [anon_sym_union] = ACTIONS(4404), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4404), + [anon_sym_decltype] = ACTIONS(4404), + [anon_sym_explicit] = ACTIONS(4404), + [anon_sym_typename] = ACTIONS(4404), + [anon_sym_template] = ACTIONS(4404), + [anon_sym_operator] = ACTIONS(4404), + [anon_sym_friend] = ACTIONS(4404), + [anon_sym_public] = ACTIONS(4404), + [anon_sym_private] = ACTIONS(4404), + [anon_sym_protected] = ACTIONS(4404), + [anon_sym_using] = ACTIONS(4404), + [anon_sym_static_assert] = ACTIONS(4404), + [sym_macro_statement] = ACTIONS(4404), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4404), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4404), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4404), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4404), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4404), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4404), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4404), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4404), + [anon_sym_MOZ_COLD] = ACTIONS(4404), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4404), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4404), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4404), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4404), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4404), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4404), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4404), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4404), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4404), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4404), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4404), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4404), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4404), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4404), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4404), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4404), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4404), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4404), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4404), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4404), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4404), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_NONNULL] = ACTIONS(4404), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4404), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4404), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4404), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4404), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4404), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_NORETURN] = ACTIONS(4404), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4404), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4404), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4404), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4404), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4404), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4404), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4404), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4404), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4404), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4404), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4404), + [anon_sym_MOZ_RAII] = ACTIONS(4404), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4404), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4404), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4404), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4404), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4404), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4404), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4404), + }, + [STATE(1259)] = { + [sym_identifier] = ACTIONS(4408), + [aux_sym_preproc_def_token1] = ACTIONS(4408), + [aux_sym_preproc_if_token1] = ACTIONS(4408), + [aux_sym_preproc_if_token2] = ACTIONS(4408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4408), + [sym_preproc_directive] = ACTIONS(4408), + [anon_sym_LPAREN2] = ACTIONS(4410), + [anon_sym_TILDE] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4410), + [anon_sym_AMP_AMP] = ACTIONS(4410), + [anon_sym_AMP] = ACTIONS(4408), + [anon_sym_SEMI] = ACTIONS(4410), + [anon_sym___extension__] = ACTIONS(4408), + [anon_sym_typedef] = ACTIONS(4408), + [anon_sym_virtual] = ACTIONS(4408), + [anon_sym_extern] = ACTIONS(4408), + [anon_sym___attribute__] = ACTIONS(4408), + [anon_sym___attribute] = ACTIONS(4408), + [anon_sym_COLON_COLON] = ACTIONS(4410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4410), + [anon_sym___declspec] = ACTIONS(4408), + [anon_sym___based] = ACTIONS(4408), + [anon_sym_signed] = ACTIONS(4408), + [anon_sym_unsigned] = ACTIONS(4408), + [anon_sym_long] = ACTIONS(4408), + [anon_sym_short] = ACTIONS(4408), + [anon_sym_LBRACK] = ACTIONS(4408), + [anon_sym_static] = ACTIONS(4408), + [anon_sym_register] = ACTIONS(4408), + [anon_sym_inline] = ACTIONS(4408), + [anon_sym___inline] = ACTIONS(4408), + [anon_sym___inline__] = ACTIONS(4408), + [anon_sym___forceinline] = ACTIONS(4408), + [anon_sym_thread_local] = ACTIONS(4408), + [anon_sym___thread] = ACTIONS(4408), + [anon_sym_const] = ACTIONS(4408), + [anon_sym_constexpr] = ACTIONS(4408), + [anon_sym_volatile] = ACTIONS(4408), + [anon_sym_restrict] = ACTIONS(4408), + [anon_sym___restrict__] = ACTIONS(4408), + [anon_sym__Atomic] = ACTIONS(4408), + [anon_sym__Noreturn] = ACTIONS(4408), + [anon_sym_noreturn] = ACTIONS(4408), + [anon_sym__Nonnull] = ACTIONS(4408), + [anon_sym_mutable] = ACTIONS(4408), + [anon_sym_constinit] = ACTIONS(4408), + [anon_sym_consteval] = ACTIONS(4408), + [anon_sym_alignas] = ACTIONS(4408), + [anon_sym__Alignas] = ACTIONS(4408), + [sym_primitive_type] = ACTIONS(4408), + [anon_sym_enum] = ACTIONS(4408), + [anon_sym_class] = ACTIONS(4408), + [anon_sym_struct] = ACTIONS(4408), + [anon_sym_union] = ACTIONS(4408), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4408), + [anon_sym_decltype] = ACTIONS(4408), + [anon_sym_explicit] = ACTIONS(4408), + [anon_sym_typename] = ACTIONS(4408), + [anon_sym_template] = ACTIONS(4408), + [anon_sym_operator] = ACTIONS(4408), + [anon_sym_friend] = ACTIONS(4408), + [anon_sym_public] = ACTIONS(4408), + [anon_sym_private] = ACTIONS(4408), + [anon_sym_protected] = ACTIONS(4408), + [anon_sym_using] = ACTIONS(4408), + [anon_sym_static_assert] = ACTIONS(4408), + [sym_macro_statement] = ACTIONS(4408), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4408), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4408), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4408), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4408), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4408), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4408), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4408), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4408), + [anon_sym_MOZ_COLD] = ACTIONS(4408), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4408), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4408), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4408), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4408), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4408), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4408), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4408), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4408), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4408), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4408), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4408), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4408), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4408), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4408), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4408), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4408), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4408), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4408), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4408), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4408), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4408), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_NONNULL] = ACTIONS(4408), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4408), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4408), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4408), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4408), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4408), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_NORETURN] = ACTIONS(4408), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4408), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4408), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4408), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4408), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4408), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4408), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4408), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4408), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4408), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4408), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4408), + [anon_sym_MOZ_RAII] = ACTIONS(4408), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4408), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4408), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4408), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4408), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4408), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4408), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4408), + }, + [STATE(1260)] = { + [sym_identifier] = ACTIONS(4412), + [aux_sym_preproc_def_token1] = ACTIONS(4412), + [aux_sym_preproc_if_token1] = ACTIONS(4412), + [aux_sym_preproc_if_token2] = ACTIONS(4412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4412), + [sym_preproc_directive] = ACTIONS(4412), + [anon_sym_LPAREN2] = ACTIONS(4414), + [anon_sym_TILDE] = ACTIONS(4414), + [anon_sym_STAR] = ACTIONS(4414), + [anon_sym_AMP_AMP] = ACTIONS(4414), + [anon_sym_AMP] = ACTIONS(4412), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym___extension__] = ACTIONS(4412), + [anon_sym_typedef] = ACTIONS(4412), + [anon_sym_virtual] = ACTIONS(4412), + [anon_sym_extern] = ACTIONS(4412), + [anon_sym___attribute__] = ACTIONS(4412), + [anon_sym___attribute] = ACTIONS(4412), + [anon_sym_COLON_COLON] = ACTIONS(4414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4414), + [anon_sym___declspec] = ACTIONS(4412), + [anon_sym___based] = ACTIONS(4412), + [anon_sym_signed] = ACTIONS(4412), + [anon_sym_unsigned] = ACTIONS(4412), + [anon_sym_long] = ACTIONS(4412), + [anon_sym_short] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_static] = ACTIONS(4412), + [anon_sym_register] = ACTIONS(4412), + [anon_sym_inline] = ACTIONS(4412), + [anon_sym___inline] = ACTIONS(4412), + [anon_sym___inline__] = ACTIONS(4412), + [anon_sym___forceinline] = ACTIONS(4412), + [anon_sym_thread_local] = ACTIONS(4412), + [anon_sym___thread] = ACTIONS(4412), + [anon_sym_const] = ACTIONS(4412), + [anon_sym_constexpr] = ACTIONS(4412), + [anon_sym_volatile] = ACTIONS(4412), + [anon_sym_restrict] = ACTIONS(4412), + [anon_sym___restrict__] = ACTIONS(4412), + [anon_sym__Atomic] = ACTIONS(4412), + [anon_sym__Noreturn] = ACTIONS(4412), + [anon_sym_noreturn] = ACTIONS(4412), + [anon_sym__Nonnull] = ACTIONS(4412), + [anon_sym_mutable] = ACTIONS(4412), + [anon_sym_constinit] = ACTIONS(4412), + [anon_sym_consteval] = ACTIONS(4412), + [anon_sym_alignas] = ACTIONS(4412), + [anon_sym__Alignas] = ACTIONS(4412), + [sym_primitive_type] = ACTIONS(4412), + [anon_sym_enum] = ACTIONS(4412), + [anon_sym_class] = ACTIONS(4412), + [anon_sym_struct] = ACTIONS(4412), + [anon_sym_union] = ACTIONS(4412), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4412), + [anon_sym_decltype] = ACTIONS(4412), + [anon_sym_explicit] = ACTIONS(4412), + [anon_sym_typename] = ACTIONS(4412), + [anon_sym_template] = ACTIONS(4412), + [anon_sym_operator] = ACTIONS(4412), + [anon_sym_friend] = ACTIONS(4412), + [anon_sym_public] = ACTIONS(4412), + [anon_sym_private] = ACTIONS(4412), + [anon_sym_protected] = ACTIONS(4412), + [anon_sym_using] = ACTIONS(4412), + [anon_sym_static_assert] = ACTIONS(4412), + [sym_macro_statement] = ACTIONS(4412), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4412), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4412), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4412), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4412), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4412), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4412), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4412), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4412), + [anon_sym_MOZ_COLD] = ACTIONS(4412), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4412), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4412), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4412), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4412), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4412), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4412), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4412), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4412), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4412), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4412), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4412), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4412), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4412), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4412), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4412), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4412), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4412), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4412), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4412), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4412), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4412), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_NONNULL] = ACTIONS(4412), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4412), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4412), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4412), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4412), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4412), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_NORETURN] = ACTIONS(4412), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4412), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4412), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4412), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4412), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4412), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4412), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4412), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4412), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4412), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4412), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4412), + [anon_sym_MOZ_RAII] = ACTIONS(4412), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4412), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4412), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4412), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4412), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4412), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4412), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4412), + }, + [STATE(1261)] = { + [sym_identifier] = ACTIONS(4416), + [aux_sym_preproc_def_token1] = ACTIONS(4416), + [aux_sym_preproc_if_token1] = ACTIONS(4416), + [aux_sym_preproc_if_token2] = ACTIONS(4416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4416), + [sym_preproc_directive] = ACTIONS(4416), + [anon_sym_LPAREN2] = ACTIONS(4418), + [anon_sym_TILDE] = ACTIONS(4418), + [anon_sym_STAR] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_AMP] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym___extension__] = ACTIONS(4416), + [anon_sym_typedef] = ACTIONS(4416), + [anon_sym_virtual] = ACTIONS(4416), + [anon_sym_extern] = ACTIONS(4416), + [anon_sym___attribute__] = ACTIONS(4416), + [anon_sym___attribute] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4418), + [anon_sym___declspec] = ACTIONS(4416), + [anon_sym___based] = ACTIONS(4416), + [anon_sym_signed] = ACTIONS(4416), + [anon_sym_unsigned] = ACTIONS(4416), + [anon_sym_long] = ACTIONS(4416), + [anon_sym_short] = ACTIONS(4416), + [anon_sym_LBRACK] = ACTIONS(4416), + [anon_sym_static] = ACTIONS(4416), + [anon_sym_register] = ACTIONS(4416), + [anon_sym_inline] = ACTIONS(4416), + [anon_sym___inline] = ACTIONS(4416), + [anon_sym___inline__] = ACTIONS(4416), + [anon_sym___forceinline] = ACTIONS(4416), + [anon_sym_thread_local] = ACTIONS(4416), + [anon_sym___thread] = ACTIONS(4416), + [anon_sym_const] = ACTIONS(4416), + [anon_sym_constexpr] = ACTIONS(4416), + [anon_sym_volatile] = ACTIONS(4416), + [anon_sym_restrict] = ACTIONS(4416), + [anon_sym___restrict__] = ACTIONS(4416), + [anon_sym__Atomic] = ACTIONS(4416), + [anon_sym__Noreturn] = ACTIONS(4416), + [anon_sym_noreturn] = ACTIONS(4416), + [anon_sym__Nonnull] = ACTIONS(4416), + [anon_sym_mutable] = ACTIONS(4416), + [anon_sym_constinit] = ACTIONS(4416), + [anon_sym_consteval] = ACTIONS(4416), + [anon_sym_alignas] = ACTIONS(4416), + [anon_sym__Alignas] = ACTIONS(4416), + [sym_primitive_type] = ACTIONS(4416), + [anon_sym_enum] = ACTIONS(4416), + [anon_sym_class] = ACTIONS(4416), + [anon_sym_struct] = ACTIONS(4416), + [anon_sym_union] = ACTIONS(4416), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4416), + [anon_sym_decltype] = ACTIONS(4416), + [anon_sym_explicit] = ACTIONS(4416), + [anon_sym_typename] = ACTIONS(4416), + [anon_sym_template] = ACTIONS(4416), + [anon_sym_operator] = ACTIONS(4416), + [anon_sym_friend] = ACTIONS(4416), + [anon_sym_public] = ACTIONS(4416), + [anon_sym_private] = ACTIONS(4416), + [anon_sym_protected] = ACTIONS(4416), + [anon_sym_using] = ACTIONS(4416), + [anon_sym_static_assert] = ACTIONS(4416), + [sym_macro_statement] = ACTIONS(4416), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4416), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4416), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4416), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4416), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4416), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4416), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4416), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4416), + [anon_sym_MOZ_COLD] = ACTIONS(4416), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4416), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4416), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4416), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4416), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4416), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4416), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4416), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4416), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4416), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4416), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4416), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4416), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4416), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4416), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4416), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4416), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4416), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4416), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4416), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4416), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4416), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_NONNULL] = ACTIONS(4416), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4416), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4416), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4416), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4416), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4416), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_NORETURN] = ACTIONS(4416), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4416), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4416), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4416), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4416), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4416), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4416), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4416), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4416), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4416), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4416), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4416), + [anon_sym_MOZ_RAII] = ACTIONS(4416), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4416), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4416), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4416), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4416), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4416), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4416), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4416), + }, + [STATE(1262)] = { + [sym_identifier] = ACTIONS(4392), + [aux_sym_preproc_def_token1] = ACTIONS(4392), + [aux_sym_preproc_if_token1] = ACTIONS(4392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4392), + [sym_preproc_directive] = ACTIONS(4392), + [anon_sym_LPAREN2] = ACTIONS(4394), + [anon_sym_TILDE] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4394), + [anon_sym_AMP_AMP] = ACTIONS(4394), + [anon_sym_AMP] = ACTIONS(4392), + [anon_sym_SEMI] = ACTIONS(4394), + [anon_sym___extension__] = ACTIONS(4392), + [anon_sym_typedef] = ACTIONS(4392), + [anon_sym_virtual] = ACTIONS(4392), + [anon_sym_extern] = ACTIONS(4392), + [anon_sym___attribute__] = ACTIONS(4392), + [anon_sym___attribute] = ACTIONS(4392), + [anon_sym_COLON_COLON] = ACTIONS(4394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4394), + [anon_sym___declspec] = ACTIONS(4392), + [anon_sym___based] = ACTIONS(4392), + [anon_sym_RBRACE] = ACTIONS(4394), + [anon_sym_signed] = ACTIONS(4392), + [anon_sym_unsigned] = ACTIONS(4392), + [anon_sym_long] = ACTIONS(4392), + [anon_sym_short] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_static] = ACTIONS(4392), + [anon_sym_register] = ACTIONS(4392), + [anon_sym_inline] = ACTIONS(4392), + [anon_sym___inline] = ACTIONS(4392), + [anon_sym___inline__] = ACTIONS(4392), + [anon_sym___forceinline] = ACTIONS(4392), + [anon_sym_thread_local] = ACTIONS(4392), + [anon_sym___thread] = ACTIONS(4392), + [anon_sym_const] = ACTIONS(4392), + [anon_sym_constexpr] = ACTIONS(4392), + [anon_sym_volatile] = ACTIONS(4392), + [anon_sym_restrict] = ACTIONS(4392), + [anon_sym___restrict__] = ACTIONS(4392), + [anon_sym__Atomic] = ACTIONS(4392), + [anon_sym__Noreturn] = ACTIONS(4392), + [anon_sym_noreturn] = ACTIONS(4392), + [anon_sym__Nonnull] = ACTIONS(4392), + [anon_sym_mutable] = ACTIONS(4392), + [anon_sym_constinit] = ACTIONS(4392), + [anon_sym_consteval] = ACTIONS(4392), + [anon_sym_alignas] = ACTIONS(4392), + [anon_sym__Alignas] = ACTIONS(4392), + [sym_primitive_type] = ACTIONS(4392), + [anon_sym_enum] = ACTIONS(4392), + [anon_sym_class] = ACTIONS(4392), + [anon_sym_struct] = ACTIONS(4392), + [anon_sym_union] = ACTIONS(4392), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4392), + [anon_sym_decltype] = ACTIONS(4392), + [anon_sym_explicit] = ACTIONS(4392), + [anon_sym_typename] = ACTIONS(4392), + [anon_sym_template] = ACTIONS(4392), + [anon_sym_operator] = ACTIONS(4392), + [anon_sym_friend] = ACTIONS(4392), + [anon_sym_public] = ACTIONS(4392), + [anon_sym_private] = ACTIONS(4392), + [anon_sym_protected] = ACTIONS(4392), + [anon_sym_using] = ACTIONS(4392), + [anon_sym_static_assert] = ACTIONS(4392), + [sym_macro_statement] = ACTIONS(4392), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4392), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4392), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4392), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4392), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4392), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4392), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4392), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4392), + [anon_sym_MOZ_COLD] = ACTIONS(4392), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4392), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4392), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4392), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4392), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4392), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4392), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4392), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4392), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4392), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4392), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4392), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4392), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4392), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4392), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4392), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4392), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4392), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4392), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4392), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4392), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_NONNULL] = ACTIONS(4392), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4392), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4392), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4392), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4392), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4392), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_NORETURN] = ACTIONS(4392), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4392), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4392), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4392), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4392), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4392), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4392), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4392), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4392), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4392), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4392), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4392), + [anon_sym_MOZ_RAII] = ACTIONS(4392), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4392), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4392), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4392), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4392), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4392), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4392), + }, + [STATE(1263)] = { + [sym_identifier] = ACTIONS(4420), + [aux_sym_preproc_def_token1] = ACTIONS(4420), + [aux_sym_preproc_if_token1] = ACTIONS(4420), + [aux_sym_preproc_if_token2] = ACTIONS(4420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4420), + [sym_preproc_directive] = ACTIONS(4420), + [anon_sym_LPAREN2] = ACTIONS(4422), + [anon_sym_TILDE] = ACTIONS(4422), + [anon_sym_STAR] = ACTIONS(4422), + [anon_sym_AMP_AMP] = ACTIONS(4422), + [anon_sym_AMP] = ACTIONS(4420), + [anon_sym_SEMI] = ACTIONS(4422), + [anon_sym___extension__] = ACTIONS(4420), + [anon_sym_typedef] = ACTIONS(4420), + [anon_sym_virtual] = ACTIONS(4420), + [anon_sym_extern] = ACTIONS(4420), + [anon_sym___attribute__] = ACTIONS(4420), + [anon_sym___attribute] = ACTIONS(4420), + [anon_sym_COLON_COLON] = ACTIONS(4422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4422), + [anon_sym___declspec] = ACTIONS(4420), + [anon_sym___based] = ACTIONS(4420), + [anon_sym_signed] = ACTIONS(4420), + [anon_sym_unsigned] = ACTIONS(4420), + [anon_sym_long] = ACTIONS(4420), + [anon_sym_short] = ACTIONS(4420), + [anon_sym_LBRACK] = ACTIONS(4420), + [anon_sym_static] = ACTIONS(4420), + [anon_sym_register] = ACTIONS(4420), + [anon_sym_inline] = ACTIONS(4420), + [anon_sym___inline] = ACTIONS(4420), + [anon_sym___inline__] = ACTIONS(4420), + [anon_sym___forceinline] = ACTIONS(4420), + [anon_sym_thread_local] = ACTIONS(4420), + [anon_sym___thread] = ACTIONS(4420), + [anon_sym_const] = ACTIONS(4420), + [anon_sym_constexpr] = ACTIONS(4420), + [anon_sym_volatile] = ACTIONS(4420), + [anon_sym_restrict] = ACTIONS(4420), + [anon_sym___restrict__] = ACTIONS(4420), + [anon_sym__Atomic] = ACTIONS(4420), + [anon_sym__Noreturn] = ACTIONS(4420), + [anon_sym_noreturn] = ACTIONS(4420), + [anon_sym__Nonnull] = ACTIONS(4420), + [anon_sym_mutable] = ACTIONS(4420), + [anon_sym_constinit] = ACTIONS(4420), + [anon_sym_consteval] = ACTIONS(4420), + [anon_sym_alignas] = ACTIONS(4420), + [anon_sym__Alignas] = ACTIONS(4420), + [sym_primitive_type] = ACTIONS(4420), + [anon_sym_enum] = ACTIONS(4420), + [anon_sym_class] = ACTIONS(4420), + [anon_sym_struct] = ACTIONS(4420), + [anon_sym_union] = ACTIONS(4420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4420), + [anon_sym_decltype] = ACTIONS(4420), + [anon_sym_explicit] = ACTIONS(4420), + [anon_sym_typename] = ACTIONS(4420), + [anon_sym_template] = ACTIONS(4420), + [anon_sym_operator] = ACTIONS(4420), + [anon_sym_friend] = ACTIONS(4420), + [anon_sym_public] = ACTIONS(4420), + [anon_sym_private] = ACTIONS(4420), + [anon_sym_protected] = ACTIONS(4420), + [anon_sym_using] = ACTIONS(4420), + [anon_sym_static_assert] = ACTIONS(4420), + [sym_macro_statement] = ACTIONS(4420), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4420), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4420), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4420), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4420), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4420), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4420), + [anon_sym_MOZ_COLD] = ACTIONS(4420), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4420), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4420), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4420), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4420), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4420), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4420), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4420), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4420), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4420), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4420), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4420), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4420), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4420), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4420), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4420), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4420), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4420), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4420), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_NONNULL] = ACTIONS(4420), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4420), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4420), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4420), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4420), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4420), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_NORETURN] = ACTIONS(4420), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4420), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4420), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4420), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4420), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4420), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4420), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4420), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4420), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4420), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4420), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4420), + [anon_sym_MOZ_RAII] = ACTIONS(4420), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4420), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4420), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4420), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4420), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4420), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4420), + }, + [STATE(1264)] = { + [sym_identifier] = ACTIONS(2396), + [aux_sym_preproc_def_token1] = ACTIONS(2396), + [aux_sym_preproc_if_token1] = ACTIONS(2396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2396), + [sym_preproc_directive] = ACTIONS(2396), + [anon_sym_LPAREN2] = ACTIONS(2398), + [anon_sym_TILDE] = ACTIONS(2398), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym___extension__] = ACTIONS(2396), + [anon_sym_typedef] = ACTIONS(2396), + [anon_sym_virtual] = ACTIONS(2396), + [anon_sym_extern] = ACTIONS(2396), + [anon_sym___attribute__] = ACTIONS(2396), + [anon_sym___attribute] = ACTIONS(2396), + [anon_sym_COLON_COLON] = ACTIONS(2398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2398), + [anon_sym___declspec] = ACTIONS(2396), + [anon_sym___based] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2398), + [anon_sym_signed] = ACTIONS(2396), + [anon_sym_unsigned] = ACTIONS(2396), + [anon_sym_long] = ACTIONS(2396), + [anon_sym_short] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_register] = ACTIONS(2396), + [anon_sym_inline] = ACTIONS(2396), + [anon_sym___inline] = ACTIONS(2396), + [anon_sym___inline__] = ACTIONS(2396), + [anon_sym___forceinline] = ACTIONS(2396), + [anon_sym_thread_local] = ACTIONS(2396), + [anon_sym___thread] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_constexpr] = ACTIONS(2396), + [anon_sym_volatile] = ACTIONS(2396), + [anon_sym_restrict] = ACTIONS(2396), + [anon_sym___restrict__] = ACTIONS(2396), + [anon_sym__Atomic] = ACTIONS(2396), + [anon_sym__Noreturn] = ACTIONS(2396), + [anon_sym_noreturn] = ACTIONS(2396), + [anon_sym__Nonnull] = ACTIONS(2396), + [anon_sym_mutable] = ACTIONS(2396), + [anon_sym_constinit] = ACTIONS(2396), + [anon_sym_consteval] = ACTIONS(2396), + [anon_sym_alignas] = ACTIONS(2396), + [anon_sym__Alignas] = ACTIONS(2396), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_struct] = ACTIONS(2396), + [anon_sym_union] = ACTIONS(2396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2396), + [anon_sym_decltype] = ACTIONS(2396), + [anon_sym_explicit] = ACTIONS(2396), + [anon_sym_typename] = ACTIONS(2396), + [anon_sym_template] = ACTIONS(2396), + [anon_sym_operator] = ACTIONS(2396), + [anon_sym_friend] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_static_assert] = ACTIONS(2396), + [sym_macro_statement] = ACTIONS(2396), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2396), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2396), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2396), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2396), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2396), + [anon_sym_MOZ_COLD] = ACTIONS(2396), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2396), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2396), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2396), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2396), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2396), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2396), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2396), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2396), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2396), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2396), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2396), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2396), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2396), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2396), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2396), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2396), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_NONNULL] = ACTIONS(2396), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2396), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2396), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2396), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2396), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_NORETURN] = ACTIONS(2396), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2396), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2396), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2396), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2396), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2396), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2396), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2396), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2396), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2396), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2396), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2396), + [anon_sym_MOZ_RAII] = ACTIONS(2396), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2396), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2396), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2396), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2396), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2396), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2396), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2396), + }, + [STATE(1265)] = { + [sym_identifier] = ACTIONS(4428), + [aux_sym_preproc_def_token1] = ACTIONS(4428), + [aux_sym_preproc_if_token1] = ACTIONS(4428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4428), + [sym_preproc_directive] = ACTIONS(4428), + [anon_sym_LPAREN2] = ACTIONS(4430), + [anon_sym_TILDE] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [anon_sym_AMP_AMP] = ACTIONS(4430), + [anon_sym_AMP] = ACTIONS(4428), + [anon_sym_SEMI] = ACTIONS(4430), + [anon_sym___extension__] = ACTIONS(4428), + [anon_sym_typedef] = ACTIONS(4428), + [anon_sym_virtual] = ACTIONS(4428), + [anon_sym_extern] = ACTIONS(4428), + [anon_sym___attribute__] = ACTIONS(4428), + [anon_sym___attribute] = ACTIONS(4428), + [anon_sym_COLON_COLON] = ACTIONS(4430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4430), + [anon_sym___declspec] = ACTIONS(4428), + [anon_sym___based] = ACTIONS(4428), + [anon_sym_RBRACE] = ACTIONS(4430), + [anon_sym_signed] = ACTIONS(4428), + [anon_sym_unsigned] = ACTIONS(4428), + [anon_sym_long] = ACTIONS(4428), + [anon_sym_short] = ACTIONS(4428), + [anon_sym_LBRACK] = ACTIONS(4428), + [anon_sym_static] = ACTIONS(4428), + [anon_sym_register] = ACTIONS(4428), + [anon_sym_inline] = ACTIONS(4428), + [anon_sym___inline] = ACTIONS(4428), + [anon_sym___inline__] = ACTIONS(4428), + [anon_sym___forceinline] = ACTIONS(4428), + [anon_sym_thread_local] = ACTIONS(4428), + [anon_sym___thread] = ACTIONS(4428), + [anon_sym_const] = ACTIONS(4428), + [anon_sym_constexpr] = ACTIONS(4428), + [anon_sym_volatile] = ACTIONS(4428), + [anon_sym_restrict] = ACTIONS(4428), + [anon_sym___restrict__] = ACTIONS(4428), + [anon_sym__Atomic] = ACTIONS(4428), + [anon_sym__Noreturn] = ACTIONS(4428), + [anon_sym_noreturn] = ACTIONS(4428), + [anon_sym__Nonnull] = ACTIONS(4428), + [anon_sym_mutable] = ACTIONS(4428), + [anon_sym_constinit] = ACTIONS(4428), + [anon_sym_consteval] = ACTIONS(4428), + [anon_sym_alignas] = ACTIONS(4428), + [anon_sym__Alignas] = ACTIONS(4428), + [sym_primitive_type] = ACTIONS(4428), + [anon_sym_enum] = ACTIONS(4428), + [anon_sym_class] = ACTIONS(4428), + [anon_sym_struct] = ACTIONS(4428), + [anon_sym_union] = ACTIONS(4428), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4428), + [anon_sym_decltype] = ACTIONS(4428), + [anon_sym_explicit] = ACTIONS(4428), + [anon_sym_typename] = ACTIONS(4428), + [anon_sym_template] = ACTIONS(4428), + [anon_sym_operator] = ACTIONS(4428), + [anon_sym_friend] = ACTIONS(4428), + [anon_sym_public] = ACTIONS(4428), + [anon_sym_private] = ACTIONS(4428), + [anon_sym_protected] = ACTIONS(4428), + [anon_sym_using] = ACTIONS(4428), + [anon_sym_static_assert] = ACTIONS(4428), + [sym_macro_statement] = ACTIONS(4428), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4428), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4428), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4428), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4428), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4428), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4428), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4428), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4428), + [anon_sym_MOZ_COLD] = ACTIONS(4428), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4428), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4428), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4428), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4428), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4428), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4428), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4428), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4428), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4428), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4428), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4428), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4428), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4428), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4428), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4428), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4428), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4428), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4428), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4428), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4428), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_NONNULL] = ACTIONS(4428), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4428), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4428), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4428), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4428), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4428), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_NORETURN] = ACTIONS(4428), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4428), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4428), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4428), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4428), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4428), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4428), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4428), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4428), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4428), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4428), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4428), + [anon_sym_MOZ_RAII] = ACTIONS(4428), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4428), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4428), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4428), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4428), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4428), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4428), + }, + [STATE(1266)] = { + [sym_identifier] = ACTIONS(4432), + [aux_sym_preproc_def_token1] = ACTIONS(4432), + [aux_sym_preproc_if_token1] = ACTIONS(4432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4432), + [sym_preproc_directive] = ACTIONS(4432), + [anon_sym_LPAREN2] = ACTIONS(4434), + [anon_sym_TILDE] = ACTIONS(4434), + [anon_sym_STAR] = ACTIONS(4434), + [anon_sym_AMP_AMP] = ACTIONS(4434), + [anon_sym_AMP] = ACTIONS(4432), + [anon_sym_SEMI] = ACTIONS(4434), + [anon_sym___extension__] = ACTIONS(4432), + [anon_sym_typedef] = ACTIONS(4432), + [anon_sym_virtual] = ACTIONS(4432), + [anon_sym_extern] = ACTIONS(4432), + [anon_sym___attribute__] = ACTIONS(4432), + [anon_sym___attribute] = ACTIONS(4432), + [anon_sym_COLON_COLON] = ACTIONS(4434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4434), + [anon_sym___declspec] = ACTIONS(4432), + [anon_sym___based] = ACTIONS(4432), + [anon_sym_RBRACE] = ACTIONS(4434), + [anon_sym_signed] = ACTIONS(4432), + [anon_sym_unsigned] = ACTIONS(4432), + [anon_sym_long] = ACTIONS(4432), + [anon_sym_short] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_static] = ACTIONS(4432), + [anon_sym_register] = ACTIONS(4432), + [anon_sym_inline] = ACTIONS(4432), + [anon_sym___inline] = ACTIONS(4432), + [anon_sym___inline__] = ACTIONS(4432), + [anon_sym___forceinline] = ACTIONS(4432), + [anon_sym_thread_local] = ACTIONS(4432), + [anon_sym___thread] = ACTIONS(4432), + [anon_sym_const] = ACTIONS(4432), + [anon_sym_constexpr] = ACTIONS(4432), + [anon_sym_volatile] = ACTIONS(4432), + [anon_sym_restrict] = ACTIONS(4432), + [anon_sym___restrict__] = ACTIONS(4432), + [anon_sym__Atomic] = ACTIONS(4432), + [anon_sym__Noreturn] = ACTIONS(4432), + [anon_sym_noreturn] = ACTIONS(4432), + [anon_sym__Nonnull] = ACTIONS(4432), + [anon_sym_mutable] = ACTIONS(4432), + [anon_sym_constinit] = ACTIONS(4432), + [anon_sym_consteval] = ACTIONS(4432), + [anon_sym_alignas] = ACTIONS(4432), + [anon_sym__Alignas] = ACTIONS(4432), + [sym_primitive_type] = ACTIONS(4432), + [anon_sym_enum] = ACTIONS(4432), + [anon_sym_class] = ACTIONS(4432), + [anon_sym_struct] = ACTIONS(4432), + [anon_sym_union] = ACTIONS(4432), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4432), + [anon_sym_decltype] = ACTIONS(4432), + [anon_sym_explicit] = ACTIONS(4432), + [anon_sym_typename] = ACTIONS(4432), + [anon_sym_template] = ACTIONS(4432), + [anon_sym_operator] = ACTIONS(4432), + [anon_sym_friend] = ACTIONS(4432), + [anon_sym_public] = ACTIONS(4432), + [anon_sym_private] = ACTIONS(4432), + [anon_sym_protected] = ACTIONS(4432), + [anon_sym_using] = ACTIONS(4432), + [anon_sym_static_assert] = ACTIONS(4432), + [sym_macro_statement] = ACTIONS(4432), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4432), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4432), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4432), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4432), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4432), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4432), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4432), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4432), + [anon_sym_MOZ_COLD] = ACTIONS(4432), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4432), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4432), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4432), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4432), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4432), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4432), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4432), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4432), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4432), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4432), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4432), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4432), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4432), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4432), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4432), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4432), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4432), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4432), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4432), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4432), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_NONNULL] = ACTIONS(4432), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4432), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4432), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4432), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4432), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4432), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_NORETURN] = ACTIONS(4432), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4432), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4432), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4432), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4432), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4432), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4432), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4432), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4432), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4432), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4432), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4432), + [anon_sym_MOZ_RAII] = ACTIONS(4432), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4432), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4432), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4432), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4432), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4432), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4432), + }, + [STATE(1267)] = { + [sym_identifier] = ACTIONS(4440), + [aux_sym_preproc_def_token1] = ACTIONS(4440), + [aux_sym_preproc_if_token1] = ACTIONS(4440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4440), + [sym_preproc_directive] = ACTIONS(4440), + [anon_sym_LPAREN2] = ACTIONS(4442), + [anon_sym_TILDE] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [anon_sym_AMP_AMP] = ACTIONS(4442), + [anon_sym_AMP] = ACTIONS(4440), + [anon_sym_SEMI] = ACTIONS(4442), + [anon_sym___extension__] = ACTIONS(4440), + [anon_sym_typedef] = ACTIONS(4440), + [anon_sym_virtual] = ACTIONS(4440), + [anon_sym_extern] = ACTIONS(4440), + [anon_sym___attribute__] = ACTIONS(4440), + [anon_sym___attribute] = ACTIONS(4440), + [anon_sym_COLON_COLON] = ACTIONS(4442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4442), + [anon_sym___declspec] = ACTIONS(4440), + [anon_sym___based] = ACTIONS(4440), + [anon_sym_RBRACE] = ACTIONS(4442), + [anon_sym_signed] = ACTIONS(4440), + [anon_sym_unsigned] = ACTIONS(4440), + [anon_sym_long] = ACTIONS(4440), + [anon_sym_short] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_static] = ACTIONS(4440), + [anon_sym_register] = ACTIONS(4440), + [anon_sym_inline] = ACTIONS(4440), + [anon_sym___inline] = ACTIONS(4440), + [anon_sym___inline__] = ACTIONS(4440), + [anon_sym___forceinline] = ACTIONS(4440), + [anon_sym_thread_local] = ACTIONS(4440), + [anon_sym___thread] = ACTIONS(4440), + [anon_sym_const] = ACTIONS(4440), + [anon_sym_constexpr] = ACTIONS(4440), + [anon_sym_volatile] = ACTIONS(4440), + [anon_sym_restrict] = ACTIONS(4440), + [anon_sym___restrict__] = ACTIONS(4440), + [anon_sym__Atomic] = ACTIONS(4440), + [anon_sym__Noreturn] = ACTIONS(4440), + [anon_sym_noreturn] = ACTIONS(4440), + [anon_sym__Nonnull] = ACTIONS(4440), + [anon_sym_mutable] = ACTIONS(4440), + [anon_sym_constinit] = ACTIONS(4440), + [anon_sym_consteval] = ACTIONS(4440), + [anon_sym_alignas] = ACTIONS(4440), + [anon_sym__Alignas] = ACTIONS(4440), + [sym_primitive_type] = ACTIONS(4440), + [anon_sym_enum] = ACTIONS(4440), + [anon_sym_class] = ACTIONS(4440), + [anon_sym_struct] = ACTIONS(4440), + [anon_sym_union] = ACTIONS(4440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4440), + [anon_sym_decltype] = ACTIONS(4440), + [anon_sym_explicit] = ACTIONS(4440), + [anon_sym_typename] = ACTIONS(4440), + [anon_sym_template] = ACTIONS(4440), + [anon_sym_operator] = ACTIONS(4440), + [anon_sym_friend] = ACTIONS(4440), + [anon_sym_public] = ACTIONS(4440), + [anon_sym_private] = ACTIONS(4440), + [anon_sym_protected] = ACTIONS(4440), + [anon_sym_using] = ACTIONS(4440), + [anon_sym_static_assert] = ACTIONS(4440), + [sym_macro_statement] = ACTIONS(4440), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4440), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4440), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4440), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4440), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4440), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4440), + [anon_sym_MOZ_COLD] = ACTIONS(4440), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4440), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4440), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4440), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4440), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4440), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4440), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4440), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4440), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4440), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4440), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4440), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4440), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4440), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4440), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4440), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4440), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4440), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4440), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_NONNULL] = ACTIONS(4440), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4440), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4440), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4440), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4440), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4440), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_NORETURN] = ACTIONS(4440), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4440), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4440), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4440), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4440), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4440), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4440), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4440), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4440), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4440), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4440), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4440), + [anon_sym_MOZ_RAII] = ACTIONS(4440), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4440), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4440), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4440), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4440), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4440), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4440), + }, + [STATE(1268)] = { + [sym_identifier] = ACTIONS(4448), + [aux_sym_preproc_def_token1] = ACTIONS(4448), + [aux_sym_preproc_if_token1] = ACTIONS(4448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4448), + [sym_preproc_directive] = ACTIONS(4448), + [anon_sym_LPAREN2] = ACTIONS(4450), + [anon_sym_TILDE] = ACTIONS(4450), + [anon_sym_STAR] = ACTIONS(4450), + [anon_sym_AMP_AMP] = ACTIONS(4450), + [anon_sym_AMP] = ACTIONS(4448), + [anon_sym_SEMI] = ACTIONS(4450), + [anon_sym___extension__] = ACTIONS(4448), + [anon_sym_typedef] = ACTIONS(4448), + [anon_sym_virtual] = ACTIONS(4448), + [anon_sym_extern] = ACTIONS(4448), + [anon_sym___attribute__] = ACTIONS(4448), + [anon_sym___attribute] = ACTIONS(4448), + [anon_sym_COLON_COLON] = ACTIONS(4450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4450), + [anon_sym___declspec] = ACTIONS(4448), + [anon_sym___based] = ACTIONS(4448), + [anon_sym_RBRACE] = ACTIONS(4450), + [anon_sym_signed] = ACTIONS(4448), + [anon_sym_unsigned] = ACTIONS(4448), + [anon_sym_long] = ACTIONS(4448), + [anon_sym_short] = ACTIONS(4448), + [anon_sym_LBRACK] = ACTIONS(4448), + [anon_sym_static] = ACTIONS(4448), + [anon_sym_register] = ACTIONS(4448), + [anon_sym_inline] = ACTIONS(4448), + [anon_sym___inline] = ACTIONS(4448), + [anon_sym___inline__] = ACTIONS(4448), + [anon_sym___forceinline] = ACTIONS(4448), + [anon_sym_thread_local] = ACTIONS(4448), + [anon_sym___thread] = ACTIONS(4448), + [anon_sym_const] = ACTIONS(4448), + [anon_sym_constexpr] = ACTIONS(4448), + [anon_sym_volatile] = ACTIONS(4448), + [anon_sym_restrict] = ACTIONS(4448), + [anon_sym___restrict__] = ACTIONS(4448), + [anon_sym__Atomic] = ACTIONS(4448), + [anon_sym__Noreturn] = ACTIONS(4448), + [anon_sym_noreturn] = ACTIONS(4448), + [anon_sym__Nonnull] = ACTIONS(4448), + [anon_sym_mutable] = ACTIONS(4448), + [anon_sym_constinit] = ACTIONS(4448), + [anon_sym_consteval] = ACTIONS(4448), + [anon_sym_alignas] = ACTIONS(4448), + [anon_sym__Alignas] = ACTIONS(4448), + [sym_primitive_type] = ACTIONS(4448), + [anon_sym_enum] = ACTIONS(4448), + [anon_sym_class] = ACTIONS(4448), + [anon_sym_struct] = ACTIONS(4448), + [anon_sym_union] = ACTIONS(4448), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4448), + [anon_sym_decltype] = ACTIONS(4448), + [anon_sym_explicit] = ACTIONS(4448), + [anon_sym_typename] = ACTIONS(4448), + [anon_sym_template] = ACTIONS(4448), + [anon_sym_operator] = ACTIONS(4448), + [anon_sym_friend] = ACTIONS(4448), + [anon_sym_public] = ACTIONS(4448), + [anon_sym_private] = ACTIONS(4448), + [anon_sym_protected] = ACTIONS(4448), + [anon_sym_using] = ACTIONS(4448), + [anon_sym_static_assert] = ACTIONS(4448), + [sym_macro_statement] = ACTIONS(4448), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4448), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4448), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4448), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4448), + [anon_sym_MOZ_COLD] = ACTIONS(4448), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4448), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4448), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4448), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4448), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4448), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4448), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4448), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4448), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4448), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4448), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4448), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4448), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4448), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_NONNULL] = ACTIONS(4448), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4448), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4448), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4448), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4448), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4448), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4448), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4448), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4448), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4448), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4448), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4448), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4448), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4448), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4448), + [anon_sym_MOZ_RAII] = ACTIONS(4448), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4448), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4448), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4448), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4448), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4448), + }, + [STATE(1269)] = { + [sym_identifier] = ACTIONS(4424), + [aux_sym_preproc_def_token1] = ACTIONS(4424), + [aux_sym_preproc_if_token1] = ACTIONS(4424), + [aux_sym_preproc_if_token2] = ACTIONS(4424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4424), + [sym_preproc_directive] = ACTIONS(4424), + [anon_sym_LPAREN2] = ACTIONS(4426), + [anon_sym_TILDE] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4426), + [anon_sym_AMP_AMP] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4424), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym___extension__] = ACTIONS(4424), + [anon_sym_typedef] = ACTIONS(4424), + [anon_sym_virtual] = ACTIONS(4424), + [anon_sym_extern] = ACTIONS(4424), + [anon_sym___attribute__] = ACTIONS(4424), + [anon_sym___attribute] = ACTIONS(4424), + [anon_sym_COLON_COLON] = ACTIONS(4426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4426), + [anon_sym___declspec] = ACTIONS(4424), + [anon_sym___based] = ACTIONS(4424), + [anon_sym_signed] = ACTIONS(4424), + [anon_sym_unsigned] = ACTIONS(4424), + [anon_sym_long] = ACTIONS(4424), + [anon_sym_short] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(4424), + [anon_sym_static] = ACTIONS(4424), + [anon_sym_register] = ACTIONS(4424), + [anon_sym_inline] = ACTIONS(4424), + [anon_sym___inline] = ACTIONS(4424), + [anon_sym___inline__] = ACTIONS(4424), + [anon_sym___forceinline] = ACTIONS(4424), + [anon_sym_thread_local] = ACTIONS(4424), + [anon_sym___thread] = ACTIONS(4424), + [anon_sym_const] = ACTIONS(4424), + [anon_sym_constexpr] = ACTIONS(4424), + [anon_sym_volatile] = ACTIONS(4424), + [anon_sym_restrict] = ACTIONS(4424), + [anon_sym___restrict__] = ACTIONS(4424), + [anon_sym__Atomic] = ACTIONS(4424), + [anon_sym__Noreturn] = ACTIONS(4424), + [anon_sym_noreturn] = ACTIONS(4424), + [anon_sym__Nonnull] = ACTIONS(4424), + [anon_sym_mutable] = ACTIONS(4424), + [anon_sym_constinit] = ACTIONS(4424), + [anon_sym_consteval] = ACTIONS(4424), + [anon_sym_alignas] = ACTIONS(4424), + [anon_sym__Alignas] = ACTIONS(4424), + [sym_primitive_type] = ACTIONS(4424), + [anon_sym_enum] = ACTIONS(4424), + [anon_sym_class] = ACTIONS(4424), + [anon_sym_struct] = ACTIONS(4424), + [anon_sym_union] = ACTIONS(4424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4424), + [anon_sym_decltype] = ACTIONS(4424), + [anon_sym_explicit] = ACTIONS(4424), + [anon_sym_typename] = ACTIONS(4424), + [anon_sym_template] = ACTIONS(4424), + [anon_sym_operator] = ACTIONS(4424), + [anon_sym_friend] = ACTIONS(4424), + [anon_sym_public] = ACTIONS(4424), + [anon_sym_private] = ACTIONS(4424), + [anon_sym_protected] = ACTIONS(4424), + [anon_sym_using] = ACTIONS(4424), + [anon_sym_static_assert] = ACTIONS(4424), + [sym_macro_statement] = ACTIONS(4424), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4424), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4424), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4424), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4424), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4424), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4424), + [anon_sym_MOZ_COLD] = ACTIONS(4424), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4424), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4424), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4424), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4424), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4424), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4424), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4424), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4424), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4424), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4424), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4424), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4424), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4424), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4424), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4424), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4424), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4424), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4424), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_NONNULL] = ACTIONS(4424), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4424), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4424), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4424), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4424), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4424), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_NORETURN] = ACTIONS(4424), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4424), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4424), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4424), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4424), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4424), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4424), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4424), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4424), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4424), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4424), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4424), + [anon_sym_MOZ_RAII] = ACTIONS(4424), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4424), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4424), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4424), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4424), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4424), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4424), + }, + [STATE(1270)] = { + [sym_identifier] = ACTIONS(4448), + [aux_sym_preproc_def_token1] = ACTIONS(4448), + [aux_sym_preproc_if_token1] = ACTIONS(4448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4448), + [sym_preproc_directive] = ACTIONS(4448), + [anon_sym_LPAREN2] = ACTIONS(4450), + [anon_sym_TILDE] = ACTIONS(4450), + [anon_sym_STAR] = ACTIONS(4450), + [anon_sym_AMP_AMP] = ACTIONS(4450), + [anon_sym_AMP] = ACTIONS(4448), + [anon_sym_SEMI] = ACTIONS(4450), + [anon_sym___extension__] = ACTIONS(4448), + [anon_sym_typedef] = ACTIONS(4448), + [anon_sym_virtual] = ACTIONS(4448), + [anon_sym_extern] = ACTIONS(4448), + [anon_sym___attribute__] = ACTIONS(4448), + [anon_sym___attribute] = ACTIONS(4448), + [anon_sym_COLON_COLON] = ACTIONS(4450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4450), + [anon_sym___declspec] = ACTIONS(4448), + [anon_sym___based] = ACTIONS(4448), + [anon_sym_RBRACE] = ACTIONS(4450), + [anon_sym_signed] = ACTIONS(4448), + [anon_sym_unsigned] = ACTIONS(4448), + [anon_sym_long] = ACTIONS(4448), + [anon_sym_short] = ACTIONS(4448), + [anon_sym_LBRACK] = ACTIONS(4448), + [anon_sym_static] = ACTIONS(4448), + [anon_sym_register] = ACTIONS(4448), + [anon_sym_inline] = ACTIONS(4448), + [anon_sym___inline] = ACTIONS(4448), + [anon_sym___inline__] = ACTIONS(4448), + [anon_sym___forceinline] = ACTIONS(4448), + [anon_sym_thread_local] = ACTIONS(4448), + [anon_sym___thread] = ACTIONS(4448), + [anon_sym_const] = ACTIONS(4448), + [anon_sym_constexpr] = ACTIONS(4448), + [anon_sym_volatile] = ACTIONS(4448), + [anon_sym_restrict] = ACTIONS(4448), + [anon_sym___restrict__] = ACTIONS(4448), + [anon_sym__Atomic] = ACTIONS(4448), + [anon_sym__Noreturn] = ACTIONS(4448), + [anon_sym_noreturn] = ACTIONS(4448), + [anon_sym__Nonnull] = ACTIONS(4448), + [anon_sym_mutable] = ACTIONS(4448), + [anon_sym_constinit] = ACTIONS(4448), + [anon_sym_consteval] = ACTIONS(4448), + [anon_sym_alignas] = ACTIONS(4448), + [anon_sym__Alignas] = ACTIONS(4448), + [sym_primitive_type] = ACTIONS(4448), + [anon_sym_enum] = ACTIONS(4448), + [anon_sym_class] = ACTIONS(4448), + [anon_sym_struct] = ACTIONS(4448), + [anon_sym_union] = ACTIONS(4448), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4448), + [anon_sym_decltype] = ACTIONS(4448), + [anon_sym_explicit] = ACTIONS(4448), + [anon_sym_typename] = ACTIONS(4448), + [anon_sym_template] = ACTIONS(4448), + [anon_sym_operator] = ACTIONS(4448), + [anon_sym_friend] = ACTIONS(4448), + [anon_sym_public] = ACTIONS(4448), + [anon_sym_private] = ACTIONS(4448), + [anon_sym_protected] = ACTIONS(4448), + [anon_sym_using] = ACTIONS(4448), + [anon_sym_static_assert] = ACTIONS(4448), + [sym_macro_statement] = ACTIONS(4448), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4448), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4448), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4448), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4448), + [anon_sym_MOZ_COLD] = ACTIONS(4448), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4448), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4448), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4448), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4448), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4448), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4448), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4448), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4448), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4448), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4448), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4448), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4448), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4448), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_NONNULL] = ACTIONS(4448), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4448), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4448), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4448), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4448), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4448), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4448), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4448), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4448), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4448), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4448), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4448), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4448), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4448), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4448), + [anon_sym_MOZ_RAII] = ACTIONS(4448), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4448), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4448), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4448), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4448), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4448), + }, + [STATE(1271)] = { + [sym_identifier] = ACTIONS(4448), + [aux_sym_preproc_def_token1] = ACTIONS(4448), + [aux_sym_preproc_if_token1] = ACTIONS(4448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4448), + [sym_preproc_directive] = ACTIONS(4448), + [anon_sym_LPAREN2] = ACTIONS(4450), + [anon_sym_TILDE] = ACTIONS(4450), + [anon_sym_STAR] = ACTIONS(4450), + [anon_sym_AMP_AMP] = ACTIONS(4450), + [anon_sym_AMP] = ACTIONS(4448), + [anon_sym_SEMI] = ACTIONS(4450), + [anon_sym___extension__] = ACTIONS(4448), + [anon_sym_typedef] = ACTIONS(4448), + [anon_sym_virtual] = ACTIONS(4448), + [anon_sym_extern] = ACTIONS(4448), + [anon_sym___attribute__] = ACTIONS(4448), + [anon_sym___attribute] = ACTIONS(4448), + [anon_sym_COLON_COLON] = ACTIONS(4450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4450), + [anon_sym___declspec] = ACTIONS(4448), + [anon_sym___based] = ACTIONS(4448), + [anon_sym_RBRACE] = ACTIONS(4450), + [anon_sym_signed] = ACTIONS(4448), + [anon_sym_unsigned] = ACTIONS(4448), + [anon_sym_long] = ACTIONS(4448), + [anon_sym_short] = ACTIONS(4448), + [anon_sym_LBRACK] = ACTIONS(4448), + [anon_sym_static] = ACTIONS(4448), + [anon_sym_register] = ACTIONS(4448), + [anon_sym_inline] = ACTIONS(4448), + [anon_sym___inline] = ACTIONS(4448), + [anon_sym___inline__] = ACTIONS(4448), + [anon_sym___forceinline] = ACTIONS(4448), + [anon_sym_thread_local] = ACTIONS(4448), + [anon_sym___thread] = ACTIONS(4448), + [anon_sym_const] = ACTIONS(4448), + [anon_sym_constexpr] = ACTIONS(4448), + [anon_sym_volatile] = ACTIONS(4448), + [anon_sym_restrict] = ACTIONS(4448), + [anon_sym___restrict__] = ACTIONS(4448), + [anon_sym__Atomic] = ACTIONS(4448), + [anon_sym__Noreturn] = ACTIONS(4448), + [anon_sym_noreturn] = ACTIONS(4448), + [anon_sym__Nonnull] = ACTIONS(4448), + [anon_sym_mutable] = ACTIONS(4448), + [anon_sym_constinit] = ACTIONS(4448), + [anon_sym_consteval] = ACTIONS(4448), + [anon_sym_alignas] = ACTIONS(4448), + [anon_sym__Alignas] = ACTIONS(4448), + [sym_primitive_type] = ACTIONS(4448), + [anon_sym_enum] = ACTIONS(4448), + [anon_sym_class] = ACTIONS(4448), + [anon_sym_struct] = ACTIONS(4448), + [anon_sym_union] = ACTIONS(4448), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4448), + [anon_sym_decltype] = ACTIONS(4448), + [anon_sym_explicit] = ACTIONS(4448), + [anon_sym_typename] = ACTIONS(4448), + [anon_sym_template] = ACTIONS(4448), + [anon_sym_operator] = ACTIONS(4448), + [anon_sym_friend] = ACTIONS(4448), + [anon_sym_public] = ACTIONS(4448), + [anon_sym_private] = ACTIONS(4448), + [anon_sym_protected] = ACTIONS(4448), + [anon_sym_using] = ACTIONS(4448), + [anon_sym_static_assert] = ACTIONS(4448), + [sym_macro_statement] = ACTIONS(4448), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4448), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4448), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4448), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4448), + [anon_sym_MOZ_COLD] = ACTIONS(4448), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4448), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4448), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4448), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4448), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4448), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4448), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4448), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4448), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4448), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4448), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4448), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4448), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4448), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_NONNULL] = ACTIONS(4448), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4448), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4448), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4448), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4448), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4448), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4448), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4448), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4448), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4448), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4448), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4448), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4448), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4448), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4448), + [anon_sym_MOZ_RAII] = ACTIONS(4448), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4448), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4448), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4448), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4448), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4448), + }, + [STATE(1272)] = { + [sym_identifier] = ACTIONS(4440), + [aux_sym_preproc_def_token1] = ACTIONS(4440), + [aux_sym_preproc_if_token1] = ACTIONS(4440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4440), + [sym_preproc_directive] = ACTIONS(4440), + [anon_sym_LPAREN2] = ACTIONS(4442), + [anon_sym_TILDE] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [anon_sym_AMP_AMP] = ACTIONS(4442), + [anon_sym_AMP] = ACTIONS(4440), + [anon_sym_SEMI] = ACTIONS(4442), + [anon_sym___extension__] = ACTIONS(4440), + [anon_sym_typedef] = ACTIONS(4440), + [anon_sym_virtual] = ACTIONS(4440), + [anon_sym_extern] = ACTIONS(4440), + [anon_sym___attribute__] = ACTIONS(4440), + [anon_sym___attribute] = ACTIONS(4440), + [anon_sym_COLON_COLON] = ACTIONS(4442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4442), + [anon_sym___declspec] = ACTIONS(4440), + [anon_sym___based] = ACTIONS(4440), + [anon_sym_RBRACE] = ACTIONS(4442), + [anon_sym_signed] = ACTIONS(4440), + [anon_sym_unsigned] = ACTIONS(4440), + [anon_sym_long] = ACTIONS(4440), + [anon_sym_short] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_static] = ACTIONS(4440), + [anon_sym_register] = ACTIONS(4440), + [anon_sym_inline] = ACTIONS(4440), + [anon_sym___inline] = ACTIONS(4440), + [anon_sym___inline__] = ACTIONS(4440), + [anon_sym___forceinline] = ACTIONS(4440), + [anon_sym_thread_local] = ACTIONS(4440), + [anon_sym___thread] = ACTIONS(4440), + [anon_sym_const] = ACTIONS(4440), + [anon_sym_constexpr] = ACTIONS(4440), + [anon_sym_volatile] = ACTIONS(4440), + [anon_sym_restrict] = ACTIONS(4440), + [anon_sym___restrict__] = ACTIONS(4440), + [anon_sym__Atomic] = ACTIONS(4440), + [anon_sym__Noreturn] = ACTIONS(4440), + [anon_sym_noreturn] = ACTIONS(4440), + [anon_sym__Nonnull] = ACTIONS(4440), + [anon_sym_mutable] = ACTIONS(4440), + [anon_sym_constinit] = ACTIONS(4440), + [anon_sym_consteval] = ACTIONS(4440), + [anon_sym_alignas] = ACTIONS(4440), + [anon_sym__Alignas] = ACTIONS(4440), + [sym_primitive_type] = ACTIONS(4440), + [anon_sym_enum] = ACTIONS(4440), + [anon_sym_class] = ACTIONS(4440), + [anon_sym_struct] = ACTIONS(4440), + [anon_sym_union] = ACTIONS(4440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4440), + [anon_sym_decltype] = ACTIONS(4440), + [anon_sym_explicit] = ACTIONS(4440), + [anon_sym_typename] = ACTIONS(4440), + [anon_sym_template] = ACTIONS(4440), + [anon_sym_operator] = ACTIONS(4440), + [anon_sym_friend] = ACTIONS(4440), + [anon_sym_public] = ACTIONS(4440), + [anon_sym_private] = ACTIONS(4440), + [anon_sym_protected] = ACTIONS(4440), + [anon_sym_using] = ACTIONS(4440), + [anon_sym_static_assert] = ACTIONS(4440), + [sym_macro_statement] = ACTIONS(4440), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4440), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4440), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4440), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4440), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4440), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4440), + [anon_sym_MOZ_COLD] = ACTIONS(4440), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4440), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4440), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4440), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4440), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4440), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4440), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4440), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4440), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4440), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4440), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4440), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4440), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4440), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4440), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4440), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4440), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4440), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4440), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_NONNULL] = ACTIONS(4440), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4440), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4440), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4440), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4440), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4440), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_NORETURN] = ACTIONS(4440), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4440), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4440), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4440), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4440), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4440), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4440), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4440), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4440), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4440), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4440), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4440), + [anon_sym_MOZ_RAII] = ACTIONS(4440), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4440), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4440), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4440), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4440), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4440), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4440), + }, + [STATE(1273)] = { + [sym_identifier] = ACTIONS(2400), + [aux_sym_preproc_def_token1] = ACTIONS(2400), + [aux_sym_preproc_if_token1] = ACTIONS(2400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2400), + [sym_preproc_directive] = ACTIONS(2400), + [anon_sym_LPAREN2] = ACTIONS(2402), + [anon_sym_TILDE] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_AMP] = ACTIONS(2400), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym___extension__] = ACTIONS(2400), + [anon_sym_typedef] = ACTIONS(2400), + [anon_sym_virtual] = ACTIONS(2400), + [anon_sym_extern] = ACTIONS(2400), + [anon_sym___attribute__] = ACTIONS(2400), + [anon_sym___attribute] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2402), + [anon_sym___declspec] = ACTIONS(2400), + [anon_sym___based] = ACTIONS(2400), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_signed] = ACTIONS(2400), + [anon_sym_unsigned] = ACTIONS(2400), + [anon_sym_long] = ACTIONS(2400), + [anon_sym_short] = ACTIONS(2400), + [anon_sym_LBRACK] = ACTIONS(2400), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_register] = ACTIONS(2400), + [anon_sym_inline] = ACTIONS(2400), + [anon_sym___inline] = ACTIONS(2400), + [anon_sym___inline__] = ACTIONS(2400), + [anon_sym___forceinline] = ACTIONS(2400), + [anon_sym_thread_local] = ACTIONS(2400), + [anon_sym___thread] = ACTIONS(2400), + [anon_sym_const] = ACTIONS(2400), + [anon_sym_constexpr] = ACTIONS(2400), + [anon_sym_volatile] = ACTIONS(2400), + [anon_sym_restrict] = ACTIONS(2400), + [anon_sym___restrict__] = ACTIONS(2400), + [anon_sym__Atomic] = ACTIONS(2400), + [anon_sym__Noreturn] = ACTIONS(2400), + [anon_sym_noreturn] = ACTIONS(2400), + [anon_sym__Nonnull] = ACTIONS(2400), + [anon_sym_mutable] = ACTIONS(2400), + [anon_sym_constinit] = ACTIONS(2400), + [anon_sym_consteval] = ACTIONS(2400), + [anon_sym_alignas] = ACTIONS(2400), + [anon_sym__Alignas] = ACTIONS(2400), + [sym_primitive_type] = ACTIONS(2400), + [anon_sym_enum] = ACTIONS(2400), + [anon_sym_class] = ACTIONS(2400), + [anon_sym_struct] = ACTIONS(2400), + [anon_sym_union] = ACTIONS(2400), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2400), + [anon_sym_decltype] = ACTIONS(2400), + [anon_sym_explicit] = ACTIONS(2400), + [anon_sym_typename] = ACTIONS(2400), + [anon_sym_template] = ACTIONS(2400), + [anon_sym_operator] = ACTIONS(2400), + [anon_sym_friend] = ACTIONS(2400), + [anon_sym_public] = ACTIONS(2400), + [anon_sym_private] = ACTIONS(2400), + [anon_sym_protected] = ACTIONS(2400), + [anon_sym_using] = ACTIONS(2400), + [anon_sym_static_assert] = ACTIONS(2400), + [sym_macro_statement] = ACTIONS(2400), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2400), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2400), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2400), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2400), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2400), + [anon_sym_MOZ_COLD] = ACTIONS(2400), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2400), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2400), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2400), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2400), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2400), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2400), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2400), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2400), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2400), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2400), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2400), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2400), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2400), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2400), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2400), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2400), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_NONNULL] = ACTIONS(2400), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2400), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2400), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2400), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2400), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_NORETURN] = ACTIONS(2400), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2400), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2400), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2400), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2400), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2400), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2400), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2400), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2400), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2400), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2400), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2400), + [anon_sym_MOZ_RAII] = ACTIONS(2400), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2400), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2400), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2400), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2400), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2400), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2400), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2400), + }, + [STATE(1274)] = { + [sym_identifier] = ACTIONS(4460), + [aux_sym_preproc_def_token1] = ACTIONS(4460), + [aux_sym_preproc_if_token1] = ACTIONS(4460), + [aux_sym_preproc_if_token2] = ACTIONS(4460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4460), + [sym_preproc_directive] = ACTIONS(4460), + [anon_sym_LPAREN2] = ACTIONS(4462), + [anon_sym_TILDE] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4462), + [anon_sym_AMP_AMP] = ACTIONS(4462), + [anon_sym_AMP] = ACTIONS(4460), + [anon_sym_SEMI] = ACTIONS(4462), + [anon_sym___extension__] = ACTIONS(4460), + [anon_sym_typedef] = ACTIONS(4460), + [anon_sym_virtual] = ACTIONS(4460), + [anon_sym_extern] = ACTIONS(4460), + [anon_sym___attribute__] = ACTIONS(4460), + [anon_sym___attribute] = ACTIONS(4460), + [anon_sym_COLON_COLON] = ACTIONS(4462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4462), + [anon_sym___declspec] = ACTIONS(4460), + [anon_sym___based] = ACTIONS(4460), + [anon_sym_signed] = ACTIONS(4460), + [anon_sym_unsigned] = ACTIONS(4460), + [anon_sym_long] = ACTIONS(4460), + [anon_sym_short] = ACTIONS(4460), + [anon_sym_LBRACK] = ACTIONS(4460), + [anon_sym_static] = ACTIONS(4460), + [anon_sym_register] = ACTIONS(4460), + [anon_sym_inline] = ACTIONS(4460), + [anon_sym___inline] = ACTIONS(4460), + [anon_sym___inline__] = ACTIONS(4460), + [anon_sym___forceinline] = ACTIONS(4460), + [anon_sym_thread_local] = ACTIONS(4460), + [anon_sym___thread] = ACTIONS(4460), + [anon_sym_const] = ACTIONS(4460), + [anon_sym_constexpr] = ACTIONS(4460), + [anon_sym_volatile] = ACTIONS(4460), + [anon_sym_restrict] = ACTIONS(4460), + [anon_sym___restrict__] = ACTIONS(4460), + [anon_sym__Atomic] = ACTIONS(4460), + [anon_sym__Noreturn] = ACTIONS(4460), + [anon_sym_noreturn] = ACTIONS(4460), + [anon_sym__Nonnull] = ACTIONS(4460), + [anon_sym_mutable] = ACTIONS(4460), + [anon_sym_constinit] = ACTIONS(4460), + [anon_sym_consteval] = ACTIONS(4460), + [anon_sym_alignas] = ACTIONS(4460), + [anon_sym__Alignas] = ACTIONS(4460), + [sym_primitive_type] = ACTIONS(4460), + [anon_sym_enum] = ACTIONS(4460), + [anon_sym_class] = ACTIONS(4460), + [anon_sym_struct] = ACTIONS(4460), + [anon_sym_union] = ACTIONS(4460), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4460), + [anon_sym_decltype] = ACTIONS(4460), + [anon_sym_explicit] = ACTIONS(4460), + [anon_sym_typename] = ACTIONS(4460), + [anon_sym_template] = ACTIONS(4460), + [anon_sym_operator] = ACTIONS(4460), + [anon_sym_friend] = ACTIONS(4460), + [anon_sym_public] = ACTIONS(4460), + [anon_sym_private] = ACTIONS(4460), + [anon_sym_protected] = ACTIONS(4460), + [anon_sym_using] = ACTIONS(4460), + [anon_sym_static_assert] = ACTIONS(4460), + [sym_macro_statement] = ACTIONS(4460), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4460), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4460), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4460), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4460), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4460), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4460), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4460), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4460), + [anon_sym_MOZ_COLD] = ACTIONS(4460), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4460), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4460), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4460), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4460), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4460), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4460), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4460), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4460), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4460), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4460), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4460), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4460), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4460), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4460), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4460), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4460), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4460), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4460), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4460), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4460), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_NONNULL] = ACTIONS(4460), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4460), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4460), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4460), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4460), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4460), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_NORETURN] = ACTIONS(4460), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4460), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4460), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4460), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4460), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4460), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4460), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4460), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4460), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4460), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4460), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4460), + [anon_sym_MOZ_RAII] = ACTIONS(4460), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4460), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4460), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4460), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4460), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4460), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4460), + }, + [STATE(1275)] = { + [sym_identifier] = ACTIONS(4464), + [aux_sym_preproc_def_token1] = ACTIONS(4464), + [aux_sym_preproc_if_token1] = ACTIONS(4464), + [aux_sym_preproc_if_token2] = ACTIONS(4464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4464), + [sym_preproc_directive] = ACTIONS(4464), + [anon_sym_LPAREN2] = ACTIONS(4466), + [anon_sym_TILDE] = ACTIONS(4466), + [anon_sym_STAR] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym___extension__] = ACTIONS(4464), + [anon_sym_typedef] = ACTIONS(4464), + [anon_sym_virtual] = ACTIONS(4464), + [anon_sym_extern] = ACTIONS(4464), + [anon_sym___attribute__] = ACTIONS(4464), + [anon_sym___attribute] = ACTIONS(4464), + [anon_sym_COLON_COLON] = ACTIONS(4466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4466), + [anon_sym___declspec] = ACTIONS(4464), + [anon_sym___based] = ACTIONS(4464), + [anon_sym_signed] = ACTIONS(4464), + [anon_sym_unsigned] = ACTIONS(4464), + [anon_sym_long] = ACTIONS(4464), + [anon_sym_short] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_static] = ACTIONS(4464), + [anon_sym_register] = ACTIONS(4464), + [anon_sym_inline] = ACTIONS(4464), + [anon_sym___inline] = ACTIONS(4464), + [anon_sym___inline__] = ACTIONS(4464), + [anon_sym___forceinline] = ACTIONS(4464), + [anon_sym_thread_local] = ACTIONS(4464), + [anon_sym___thread] = ACTIONS(4464), + [anon_sym_const] = ACTIONS(4464), + [anon_sym_constexpr] = ACTIONS(4464), + [anon_sym_volatile] = ACTIONS(4464), + [anon_sym_restrict] = ACTIONS(4464), + [anon_sym___restrict__] = ACTIONS(4464), + [anon_sym__Atomic] = ACTIONS(4464), + [anon_sym__Noreturn] = ACTIONS(4464), + [anon_sym_noreturn] = ACTIONS(4464), + [anon_sym__Nonnull] = ACTIONS(4464), + [anon_sym_mutable] = ACTIONS(4464), + [anon_sym_constinit] = ACTIONS(4464), + [anon_sym_consteval] = ACTIONS(4464), + [anon_sym_alignas] = ACTIONS(4464), + [anon_sym__Alignas] = ACTIONS(4464), + [sym_primitive_type] = ACTIONS(4464), + [anon_sym_enum] = ACTIONS(4464), + [anon_sym_class] = ACTIONS(4464), + [anon_sym_struct] = ACTIONS(4464), + [anon_sym_union] = ACTIONS(4464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4464), + [anon_sym_decltype] = ACTIONS(4464), + [anon_sym_explicit] = ACTIONS(4464), + [anon_sym_typename] = ACTIONS(4464), + [anon_sym_template] = ACTIONS(4464), + [anon_sym_operator] = ACTIONS(4464), + [anon_sym_friend] = ACTIONS(4464), + [anon_sym_public] = ACTIONS(4464), + [anon_sym_private] = ACTIONS(4464), + [anon_sym_protected] = ACTIONS(4464), + [anon_sym_using] = ACTIONS(4464), + [anon_sym_static_assert] = ACTIONS(4464), + [sym_macro_statement] = ACTIONS(4464), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4464), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4464), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4464), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4464), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4464), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4464), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4464), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4464), + [anon_sym_MOZ_COLD] = ACTIONS(4464), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4464), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4464), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4464), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4464), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4464), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4464), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4464), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4464), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4464), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4464), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4464), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4464), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4464), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4464), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4464), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4464), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4464), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4464), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4464), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4464), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_NONNULL] = ACTIONS(4464), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4464), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4464), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4464), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4464), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4464), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_NORETURN] = ACTIONS(4464), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4464), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4464), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4464), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4464), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4464), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4464), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4464), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4464), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4464), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4464), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4464), + [anon_sym_MOZ_RAII] = ACTIONS(4464), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4464), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4464), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4464), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4464), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4464), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4464), + }, + [STATE(1276)] = { + [sym_identifier] = ACTIONS(4420), + [aux_sym_preproc_def_token1] = ACTIONS(4420), + [aux_sym_preproc_if_token1] = ACTIONS(4420), + [aux_sym_preproc_if_token2] = ACTIONS(4420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4420), + [sym_preproc_directive] = ACTIONS(4420), + [anon_sym_LPAREN2] = ACTIONS(4422), + [anon_sym_TILDE] = ACTIONS(4422), + [anon_sym_STAR] = ACTIONS(4422), + [anon_sym_AMP_AMP] = ACTIONS(4422), + [anon_sym_AMP] = ACTIONS(4420), + [anon_sym_SEMI] = ACTIONS(4422), + [anon_sym___extension__] = ACTIONS(4420), + [anon_sym_typedef] = ACTIONS(4420), + [anon_sym_virtual] = ACTIONS(4420), + [anon_sym_extern] = ACTIONS(4420), + [anon_sym___attribute__] = ACTIONS(4420), + [anon_sym___attribute] = ACTIONS(4420), + [anon_sym_COLON_COLON] = ACTIONS(4422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4422), + [anon_sym___declspec] = ACTIONS(4420), + [anon_sym___based] = ACTIONS(4420), + [anon_sym_signed] = ACTIONS(4420), + [anon_sym_unsigned] = ACTIONS(4420), + [anon_sym_long] = ACTIONS(4420), + [anon_sym_short] = ACTIONS(4420), + [anon_sym_LBRACK] = ACTIONS(4420), + [anon_sym_static] = ACTIONS(4420), + [anon_sym_register] = ACTIONS(4420), + [anon_sym_inline] = ACTIONS(4420), + [anon_sym___inline] = ACTIONS(4420), + [anon_sym___inline__] = ACTIONS(4420), + [anon_sym___forceinline] = ACTIONS(4420), + [anon_sym_thread_local] = ACTIONS(4420), + [anon_sym___thread] = ACTIONS(4420), + [anon_sym_const] = ACTIONS(4420), + [anon_sym_constexpr] = ACTIONS(4420), + [anon_sym_volatile] = ACTIONS(4420), + [anon_sym_restrict] = ACTIONS(4420), + [anon_sym___restrict__] = ACTIONS(4420), + [anon_sym__Atomic] = ACTIONS(4420), + [anon_sym__Noreturn] = ACTIONS(4420), + [anon_sym_noreturn] = ACTIONS(4420), + [anon_sym__Nonnull] = ACTIONS(4420), + [anon_sym_mutable] = ACTIONS(4420), + [anon_sym_constinit] = ACTIONS(4420), + [anon_sym_consteval] = ACTIONS(4420), + [anon_sym_alignas] = ACTIONS(4420), + [anon_sym__Alignas] = ACTIONS(4420), + [sym_primitive_type] = ACTIONS(4420), + [anon_sym_enum] = ACTIONS(4420), + [anon_sym_class] = ACTIONS(4420), + [anon_sym_struct] = ACTIONS(4420), + [anon_sym_union] = ACTIONS(4420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4420), + [anon_sym_decltype] = ACTIONS(4420), + [anon_sym_explicit] = ACTIONS(4420), + [anon_sym_typename] = ACTIONS(4420), + [anon_sym_template] = ACTIONS(4420), + [anon_sym_operator] = ACTIONS(4420), + [anon_sym_friend] = ACTIONS(4420), + [anon_sym_public] = ACTIONS(4420), + [anon_sym_private] = ACTIONS(4420), + [anon_sym_protected] = ACTIONS(4420), + [anon_sym_using] = ACTIONS(4420), + [anon_sym_static_assert] = ACTIONS(4420), + [sym_macro_statement] = ACTIONS(4420), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4420), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4420), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4420), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4420), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4420), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4420), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4420), + [anon_sym_MOZ_COLD] = ACTIONS(4420), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4420), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4420), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4420), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4420), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4420), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4420), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4420), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4420), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4420), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4420), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4420), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4420), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4420), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4420), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4420), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4420), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4420), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4420), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4420), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4420), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_NONNULL] = ACTIONS(4420), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4420), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4420), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4420), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4420), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4420), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_NORETURN] = ACTIONS(4420), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4420), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4420), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4420), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4420), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4420), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4420), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4420), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4420), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4420), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4420), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4420), + [anon_sym_MOZ_RAII] = ACTIONS(4420), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4420), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4420), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4420), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4420), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4420), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4420), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4420), + }, + [STATE(1277)] = { + [sym_identifier] = ACTIONS(4424), + [aux_sym_preproc_def_token1] = ACTIONS(4424), + [aux_sym_preproc_if_token1] = ACTIONS(4424), + [aux_sym_preproc_if_token2] = ACTIONS(4424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4424), + [sym_preproc_directive] = ACTIONS(4424), + [anon_sym_LPAREN2] = ACTIONS(4426), + [anon_sym_TILDE] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4426), + [anon_sym_AMP_AMP] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4424), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym___extension__] = ACTIONS(4424), + [anon_sym_typedef] = ACTIONS(4424), + [anon_sym_virtual] = ACTIONS(4424), + [anon_sym_extern] = ACTIONS(4424), + [anon_sym___attribute__] = ACTIONS(4424), + [anon_sym___attribute] = ACTIONS(4424), + [anon_sym_COLON_COLON] = ACTIONS(4426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4426), + [anon_sym___declspec] = ACTIONS(4424), + [anon_sym___based] = ACTIONS(4424), + [anon_sym_signed] = ACTIONS(4424), + [anon_sym_unsigned] = ACTIONS(4424), + [anon_sym_long] = ACTIONS(4424), + [anon_sym_short] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(4424), + [anon_sym_static] = ACTIONS(4424), + [anon_sym_register] = ACTIONS(4424), + [anon_sym_inline] = ACTIONS(4424), + [anon_sym___inline] = ACTIONS(4424), + [anon_sym___inline__] = ACTIONS(4424), + [anon_sym___forceinline] = ACTIONS(4424), + [anon_sym_thread_local] = ACTIONS(4424), + [anon_sym___thread] = ACTIONS(4424), + [anon_sym_const] = ACTIONS(4424), + [anon_sym_constexpr] = ACTIONS(4424), + [anon_sym_volatile] = ACTIONS(4424), + [anon_sym_restrict] = ACTIONS(4424), + [anon_sym___restrict__] = ACTIONS(4424), + [anon_sym__Atomic] = ACTIONS(4424), + [anon_sym__Noreturn] = ACTIONS(4424), + [anon_sym_noreturn] = ACTIONS(4424), + [anon_sym__Nonnull] = ACTIONS(4424), + [anon_sym_mutable] = ACTIONS(4424), + [anon_sym_constinit] = ACTIONS(4424), + [anon_sym_consteval] = ACTIONS(4424), + [anon_sym_alignas] = ACTIONS(4424), + [anon_sym__Alignas] = ACTIONS(4424), + [sym_primitive_type] = ACTIONS(4424), + [anon_sym_enum] = ACTIONS(4424), + [anon_sym_class] = ACTIONS(4424), + [anon_sym_struct] = ACTIONS(4424), + [anon_sym_union] = ACTIONS(4424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4424), + [anon_sym_decltype] = ACTIONS(4424), + [anon_sym_explicit] = ACTIONS(4424), + [anon_sym_typename] = ACTIONS(4424), + [anon_sym_template] = ACTIONS(4424), + [anon_sym_operator] = ACTIONS(4424), + [anon_sym_friend] = ACTIONS(4424), + [anon_sym_public] = ACTIONS(4424), + [anon_sym_private] = ACTIONS(4424), + [anon_sym_protected] = ACTIONS(4424), + [anon_sym_using] = ACTIONS(4424), + [anon_sym_static_assert] = ACTIONS(4424), + [sym_macro_statement] = ACTIONS(4424), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4424), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4424), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4424), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4424), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4424), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4424), + [anon_sym_MOZ_COLD] = ACTIONS(4424), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4424), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4424), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4424), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4424), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4424), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4424), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4424), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4424), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4424), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4424), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4424), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4424), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4424), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4424), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4424), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4424), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4424), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4424), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4424), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_NONNULL] = ACTIONS(4424), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4424), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4424), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4424), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4424), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4424), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_NORETURN] = ACTIONS(4424), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4424), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4424), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4424), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4424), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4424), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4424), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4424), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4424), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4424), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4424), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4424), + [anon_sym_MOZ_RAII] = ACTIONS(4424), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4424), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4424), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4424), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4424), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4424), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4424), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4424), + }, + [STATE(1278)] = { + [sym__declaration_modifiers] = STATE(1631), + [sym_attribute_specifier] = STATE(1631), + [sym_attribute_declaration] = STATE(1631), + [sym_ms_declspec_modifier] = STATE(1631), + [sym_storage_class_specifier] = STATE(1631), + [sym_type_qualifier] = STATE(1631), + [sym_alignas_qualifier] = STATE(955), + [sym_type_specifier] = STATE(1354), + [sym_sized_type_specifier] = STATE(1397), + [sym_enum_specifier] = STATE(1397), + [sym_struct_specifier] = STATE(1397), + [sym_union_specifier] = STATE(1397), + [sym_placeholder_type_specifier] = STATE(1397), + [sym_decltype_auto] = STATE(1424), + [sym_decltype] = STATE(1357), + [sym_class_specifier] = STATE(1397), + [sym_dependent_type] = STATE(1397), + [sym_template_type] = STATE(1357), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6924), + [sym_qualified_type_identifier] = STATE(1612), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1631), + [aux_sym_sized_type_specifier_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(3303), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_virtual] = ACTIONS(4518), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1789), + [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__Nonnull] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [anon_sym_alignas] = ACTIONS(67), + [anon_sym__Alignas] = ACTIONS(67), + [sym_primitive_type] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(123), + [anon_sym_decltype] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(1847), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(167), + [anon_sym_MOZ_COLD] = ACTIONS(167), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(167), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(167), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(167), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(167), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(167), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(167), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(167), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(167), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(167), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(167), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(167), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(167), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(167), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(167), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(167), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(167), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(167), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(167), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(167), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(167), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(167), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(167), + [anon_sym_MOZ_RAII] = ACTIONS(167), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(167), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(167), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(167), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(167), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(167), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(167), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(167), + [anon_sym_JS_PUBLIC_API] = ACTIONS(167), + }, + [STATE(1279)] = { + [sym_identifier] = ACTIONS(4436), + [aux_sym_preproc_def_token1] = ACTIONS(4436), + [aux_sym_preproc_if_token1] = ACTIONS(4436), + [aux_sym_preproc_if_token2] = ACTIONS(4436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4436), + [sym_preproc_directive] = ACTIONS(4436), + [anon_sym_LPAREN2] = ACTIONS(4438), + [anon_sym_TILDE] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4438), + [anon_sym_AMP_AMP] = ACTIONS(4438), + [anon_sym_AMP] = ACTIONS(4436), + [anon_sym_SEMI] = ACTIONS(4438), + [anon_sym___extension__] = ACTIONS(4436), + [anon_sym_typedef] = ACTIONS(4436), + [anon_sym_virtual] = ACTIONS(4436), + [anon_sym_extern] = ACTIONS(4436), + [anon_sym___attribute__] = ACTIONS(4436), + [anon_sym___attribute] = ACTIONS(4436), + [anon_sym_COLON_COLON] = ACTIONS(4438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4438), + [anon_sym___declspec] = ACTIONS(4436), + [anon_sym___based] = ACTIONS(4436), + [anon_sym_signed] = ACTIONS(4436), + [anon_sym_unsigned] = ACTIONS(4436), + [anon_sym_long] = ACTIONS(4436), + [anon_sym_short] = ACTIONS(4436), + [anon_sym_LBRACK] = ACTIONS(4436), + [anon_sym_static] = ACTIONS(4436), + [anon_sym_register] = ACTIONS(4436), + [anon_sym_inline] = ACTIONS(4436), + [anon_sym___inline] = ACTIONS(4436), + [anon_sym___inline__] = ACTIONS(4436), + [anon_sym___forceinline] = ACTIONS(4436), + [anon_sym_thread_local] = ACTIONS(4436), + [anon_sym___thread] = ACTIONS(4436), + [anon_sym_const] = ACTIONS(4436), + [anon_sym_constexpr] = ACTIONS(4436), + [anon_sym_volatile] = ACTIONS(4436), + [anon_sym_restrict] = ACTIONS(4436), + [anon_sym___restrict__] = ACTIONS(4436), + [anon_sym__Atomic] = ACTIONS(4436), + [anon_sym__Noreturn] = ACTIONS(4436), + [anon_sym_noreturn] = ACTIONS(4436), + [anon_sym__Nonnull] = ACTIONS(4436), + [anon_sym_mutable] = ACTIONS(4436), + [anon_sym_constinit] = ACTIONS(4436), + [anon_sym_consteval] = ACTIONS(4436), + [anon_sym_alignas] = ACTIONS(4436), + [anon_sym__Alignas] = ACTIONS(4436), + [sym_primitive_type] = ACTIONS(4436), + [anon_sym_enum] = ACTIONS(4436), + [anon_sym_class] = ACTIONS(4436), + [anon_sym_struct] = ACTIONS(4436), + [anon_sym_union] = ACTIONS(4436), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4436), + [anon_sym_decltype] = ACTIONS(4436), + [anon_sym_explicit] = ACTIONS(4436), + [anon_sym_typename] = ACTIONS(4436), + [anon_sym_template] = ACTIONS(4436), + [anon_sym_operator] = ACTIONS(4436), + [anon_sym_friend] = ACTIONS(4436), + [anon_sym_public] = ACTIONS(4436), + [anon_sym_private] = ACTIONS(4436), + [anon_sym_protected] = ACTIONS(4436), + [anon_sym_using] = ACTIONS(4436), + [anon_sym_static_assert] = ACTIONS(4436), + [sym_macro_statement] = ACTIONS(4436), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4436), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4436), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4436), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4436), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4436), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4436), + [anon_sym_MOZ_COLD] = ACTIONS(4436), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4436), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4436), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4436), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4436), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4436), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4436), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4436), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4436), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4436), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4436), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4436), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4436), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4436), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4436), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4436), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4436), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4436), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4436), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4436), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_NONNULL] = ACTIONS(4436), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4436), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4436), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4436), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4436), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4436), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_NORETURN] = ACTIONS(4436), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4436), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4436), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4436), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4436), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4436), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4436), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4436), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4436), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4436), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4436), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4436), + [anon_sym_MOZ_RAII] = ACTIONS(4436), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4436), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4436), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4436), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4436), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4436), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4436), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4436), + }, + [STATE(1280)] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_virtual] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_COLON_COLON] = ACTIONS(2426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___based] = ACTIONS(2424), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_mutable] = ACTIONS(2424), + [anon_sym_constinit] = ACTIONS(2424), + [anon_sym_consteval] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2424), + [anon_sym_decltype] = ACTIONS(2424), + [anon_sym_explicit] = ACTIONS(2424), + [anon_sym_typename] = ACTIONS(2424), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_operator] = ACTIONS(2424), + [anon_sym_friend] = ACTIONS(2424), + [anon_sym_public] = ACTIONS(2424), + [anon_sym_private] = ACTIONS(2424), + [anon_sym_protected] = ACTIONS(2424), + [anon_sym_using] = ACTIONS(2424), + [anon_sym_static_assert] = ACTIONS(2424), + [sym_macro_statement] = ACTIONS(2424), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2424), + [anon_sym_MOZ_COLD] = ACTIONS(2424), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2424), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2424), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2424), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2424), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2424), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2424), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2424), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2424), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2424), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2424), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2424), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2424), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_RAII] = ACTIONS(2424), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2424), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2424), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2424), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2424), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2424), + }, + [STATE(1281)] = { + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym___extension__] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_virtual] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym___attribute] = ACTIONS(2424), + [anon_sym_COLON_COLON] = ACTIONS(2426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___based] = ACTIONS(2424), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym___inline] = ACTIONS(2424), + [anon_sym___inline__] = ACTIONS(2424), + [anon_sym___forceinline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym___thread] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym___restrict__] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym__Noreturn] = ACTIONS(2424), + [anon_sym_noreturn] = ACTIONS(2424), + [anon_sym__Nonnull] = ACTIONS(2424), + [anon_sym_mutable] = ACTIONS(2424), + [anon_sym_constinit] = ACTIONS(2424), + [anon_sym_consteval] = ACTIONS(2424), + [anon_sym_alignas] = ACTIONS(2424), + [anon_sym__Alignas] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2424), + [anon_sym_decltype] = ACTIONS(2424), + [anon_sym_explicit] = ACTIONS(2424), + [anon_sym_typename] = ACTIONS(2424), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_operator] = ACTIONS(2424), + [anon_sym_friend] = ACTIONS(2424), + [anon_sym_public] = ACTIONS(2424), + [anon_sym_private] = ACTIONS(2424), + [anon_sym_protected] = ACTIONS(2424), + [anon_sym_using] = ACTIONS(2424), + [anon_sym_static_assert] = ACTIONS(2424), + [sym_macro_statement] = ACTIONS(2424), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2424), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2424), + [anon_sym_MOZ_COLD] = ACTIONS(2424), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2424), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2424), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2424), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2424), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2424), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2424), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2424), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2424), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2424), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2424), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2424), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2424), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL] = ACTIONS(2424), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2424), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2424), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN] = ACTIONS(2424), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2424), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2424), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2424), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2424), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2424), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2424), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2424), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2424), + [anon_sym_MOZ_RAII] = ACTIONS(2424), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2424), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2424), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2424), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2424), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2424), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2424), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2424), + }, + [STATE(1282)] = { + [sym_identifier] = ACTIONS(4444), + [aux_sym_preproc_def_token1] = ACTIONS(4444), + [aux_sym_preproc_if_token1] = ACTIONS(4444), + [aux_sym_preproc_if_token2] = ACTIONS(4444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4444), + [sym_preproc_directive] = ACTIONS(4444), + [anon_sym_LPAREN2] = ACTIONS(4446), + [anon_sym_TILDE] = ACTIONS(4446), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_AMP_AMP] = ACTIONS(4446), + [anon_sym_AMP] = ACTIONS(4444), + [anon_sym_SEMI] = ACTIONS(4446), + [anon_sym___extension__] = ACTIONS(4444), + [anon_sym_typedef] = ACTIONS(4444), + [anon_sym_virtual] = ACTIONS(4444), + [anon_sym_extern] = ACTIONS(4444), + [anon_sym___attribute__] = ACTIONS(4444), + [anon_sym___attribute] = ACTIONS(4444), + [anon_sym_COLON_COLON] = ACTIONS(4446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4446), + [anon_sym___declspec] = ACTIONS(4444), + [anon_sym___based] = ACTIONS(4444), + [anon_sym_signed] = ACTIONS(4444), + [anon_sym_unsigned] = ACTIONS(4444), + [anon_sym_long] = ACTIONS(4444), + [anon_sym_short] = ACTIONS(4444), + [anon_sym_LBRACK] = ACTIONS(4444), + [anon_sym_static] = ACTIONS(4444), + [anon_sym_register] = ACTIONS(4444), + [anon_sym_inline] = ACTIONS(4444), + [anon_sym___inline] = ACTIONS(4444), + [anon_sym___inline__] = ACTIONS(4444), + [anon_sym___forceinline] = ACTIONS(4444), + [anon_sym_thread_local] = ACTIONS(4444), + [anon_sym___thread] = ACTIONS(4444), + [anon_sym_const] = ACTIONS(4444), + [anon_sym_constexpr] = ACTIONS(4444), + [anon_sym_volatile] = ACTIONS(4444), + [anon_sym_restrict] = ACTIONS(4444), + [anon_sym___restrict__] = ACTIONS(4444), + [anon_sym__Atomic] = ACTIONS(4444), + [anon_sym__Noreturn] = ACTIONS(4444), + [anon_sym_noreturn] = ACTIONS(4444), + [anon_sym__Nonnull] = ACTIONS(4444), + [anon_sym_mutable] = ACTIONS(4444), + [anon_sym_constinit] = ACTIONS(4444), + [anon_sym_consteval] = ACTIONS(4444), + [anon_sym_alignas] = ACTIONS(4444), + [anon_sym__Alignas] = ACTIONS(4444), + [sym_primitive_type] = ACTIONS(4444), + [anon_sym_enum] = ACTIONS(4444), + [anon_sym_class] = ACTIONS(4444), + [anon_sym_struct] = ACTIONS(4444), + [anon_sym_union] = ACTIONS(4444), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4444), + [anon_sym_decltype] = ACTIONS(4444), + [anon_sym_explicit] = ACTIONS(4444), + [anon_sym_typename] = ACTIONS(4444), + [anon_sym_template] = ACTIONS(4444), + [anon_sym_operator] = ACTIONS(4444), + [anon_sym_friend] = ACTIONS(4444), + [anon_sym_public] = ACTIONS(4444), + [anon_sym_private] = ACTIONS(4444), + [anon_sym_protected] = ACTIONS(4444), + [anon_sym_using] = ACTIONS(4444), + [anon_sym_static_assert] = ACTIONS(4444), + [sym_macro_statement] = ACTIONS(4444), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4444), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4444), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4444), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4444), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4444), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4444), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4444), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4444), + [anon_sym_MOZ_COLD] = ACTIONS(4444), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4444), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4444), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4444), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4444), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4444), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4444), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4444), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4444), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4444), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4444), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4444), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4444), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4444), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4444), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4444), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4444), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4444), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4444), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4444), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4444), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4444), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_NONNULL] = ACTIONS(4444), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4444), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4444), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4444), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4444), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4444), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_NORETURN] = ACTIONS(4444), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4444), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4444), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4444), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4444), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4444), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4444), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4444), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4444), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4444), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4444), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4444), + [anon_sym_MOZ_RAII] = ACTIONS(4444), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4444), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4444), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4444), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4444), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4444), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4444), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4444), + }, + [STATE(1283)] = { + [sym_identifier] = ACTIONS(2317), + [aux_sym_preproc_def_token1] = ACTIONS(2317), + [aux_sym_preproc_if_token1] = ACTIONS(2317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2317), + [sym_preproc_directive] = ACTIONS(2317), + [anon_sym_LPAREN2] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_typedef] = ACTIONS(2317), + [anon_sym_virtual] = ACTIONS(2317), + [anon_sym_extern] = ACTIONS(2317), + [anon_sym___attribute__] = ACTIONS(2317), + [anon_sym___attribute] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2319), + [anon_sym___declspec] = ACTIONS(2317), + [anon_sym___based] = ACTIONS(2317), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_signed] = ACTIONS(2317), + [anon_sym_unsigned] = ACTIONS(2317), + [anon_sym_long] = ACTIONS(2317), + [anon_sym_short] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_register] = ACTIONS(2317), + [anon_sym_inline] = ACTIONS(2317), + [anon_sym___inline] = ACTIONS(2317), + [anon_sym___inline__] = ACTIONS(2317), + [anon_sym___forceinline] = ACTIONS(2317), + [anon_sym_thread_local] = ACTIONS(2317), + [anon_sym___thread] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_constexpr] = ACTIONS(2317), + [anon_sym_volatile] = ACTIONS(2317), + [anon_sym_restrict] = ACTIONS(2317), + [anon_sym___restrict__] = ACTIONS(2317), + [anon_sym__Atomic] = ACTIONS(2317), + [anon_sym__Noreturn] = ACTIONS(2317), + [anon_sym_noreturn] = ACTIONS(2317), + [anon_sym__Nonnull] = ACTIONS(2317), + [anon_sym_mutable] = ACTIONS(2317), + [anon_sym_constinit] = ACTIONS(2317), + [anon_sym_consteval] = ACTIONS(2317), + [anon_sym_alignas] = ACTIONS(2317), + [anon_sym__Alignas] = ACTIONS(2317), + [sym_primitive_type] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_struct] = ACTIONS(2317), + [anon_sym_union] = ACTIONS(2317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2317), + [anon_sym_decltype] = ACTIONS(2317), + [anon_sym_explicit] = ACTIONS(2317), + [anon_sym_typename] = ACTIONS(2317), + [anon_sym_template] = ACTIONS(2317), + [anon_sym_operator] = ACTIONS(2317), + [anon_sym_friend] = ACTIONS(2317), + [anon_sym_public] = ACTIONS(2317), + [anon_sym_private] = ACTIONS(2317), + [anon_sym_protected] = ACTIONS(2317), + [anon_sym_using] = ACTIONS(2317), + [anon_sym_static_assert] = ACTIONS(2317), + [sym_macro_statement] = ACTIONS(2317), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2317), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2317), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2317), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2317), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2317), + [anon_sym_MOZ_COLD] = ACTIONS(2317), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2317), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2317), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2317), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2317), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2317), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2317), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2317), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2317), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2317), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2317), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2317), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2317), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2317), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2317), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2317), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2317), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_NONNULL] = ACTIONS(2317), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2317), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2317), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2317), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2317), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_NORETURN] = ACTIONS(2317), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2317), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2317), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2317), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2317), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2317), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2317), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2317), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2317), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2317), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2317), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2317), + [anon_sym_MOZ_RAII] = ACTIONS(2317), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2317), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2317), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2317), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2317), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2317), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2317), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2317), + }, + [STATE(1284)] = { + [sym_identifier] = ACTIONS(2440), + [aux_sym_preproc_def_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2440), + [sym_preproc_directive] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_typedef] = ACTIONS(2440), + [anon_sym_virtual] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym___attribute__] = ACTIONS(2440), + [anon_sym___attribute] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(2442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2442), + [anon_sym___declspec] = ACTIONS(2440), + [anon_sym___based] = ACTIONS(2440), + [anon_sym_RBRACE] = ACTIONS(2442), + [anon_sym_signed] = ACTIONS(2440), + [anon_sym_unsigned] = ACTIONS(2440), + [anon_sym_long] = ACTIONS(2440), + [anon_sym_short] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_register] = ACTIONS(2440), + [anon_sym_inline] = ACTIONS(2440), + [anon_sym___inline] = ACTIONS(2440), + [anon_sym___inline__] = ACTIONS(2440), + [anon_sym___forceinline] = ACTIONS(2440), + [anon_sym_thread_local] = ACTIONS(2440), + [anon_sym___thread] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_constexpr] = ACTIONS(2440), + [anon_sym_volatile] = ACTIONS(2440), + [anon_sym_restrict] = ACTIONS(2440), + [anon_sym___restrict__] = ACTIONS(2440), + [anon_sym__Atomic] = ACTIONS(2440), + [anon_sym__Noreturn] = ACTIONS(2440), + [anon_sym_noreturn] = ACTIONS(2440), + [anon_sym__Nonnull] = ACTIONS(2440), + [anon_sym_mutable] = ACTIONS(2440), + [anon_sym_constinit] = ACTIONS(2440), + [anon_sym_consteval] = ACTIONS(2440), + [anon_sym_alignas] = ACTIONS(2440), + [anon_sym__Alignas] = ACTIONS(2440), + [sym_primitive_type] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_struct] = ACTIONS(2440), + [anon_sym_union] = ACTIONS(2440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2440), + [anon_sym_decltype] = ACTIONS(2440), + [anon_sym_explicit] = ACTIONS(2440), + [anon_sym_typename] = ACTIONS(2440), + [anon_sym_template] = ACTIONS(2440), + [anon_sym_operator] = ACTIONS(2440), + [anon_sym_friend] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_static_assert] = ACTIONS(2440), + [sym_macro_statement] = ACTIONS(2440), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2440), + [anon_sym_MOZ_COLD] = ACTIONS(2440), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2440), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2440), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2440), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2440), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2440), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2440), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2440), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2440), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2440), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2440), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2440), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2440), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_RAII] = ACTIONS(2440), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2440), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2440), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2440), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2440), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2440), + }, + [STATE(1285)] = { + [sym_identifier] = ACTIONS(2440), + [aux_sym_preproc_def_token1] = ACTIONS(2440), + [aux_sym_preproc_if_token1] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2440), + [sym_preproc_directive] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_typedef] = ACTIONS(2440), + [anon_sym_virtual] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym___attribute__] = ACTIONS(2440), + [anon_sym___attribute] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(2442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2442), + [anon_sym___declspec] = ACTIONS(2440), + [anon_sym___based] = ACTIONS(2440), + [anon_sym_RBRACE] = ACTIONS(2442), + [anon_sym_signed] = ACTIONS(2440), + [anon_sym_unsigned] = ACTIONS(2440), + [anon_sym_long] = ACTIONS(2440), + [anon_sym_short] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_register] = ACTIONS(2440), + [anon_sym_inline] = ACTIONS(2440), + [anon_sym___inline] = ACTIONS(2440), + [anon_sym___inline__] = ACTIONS(2440), + [anon_sym___forceinline] = ACTIONS(2440), + [anon_sym_thread_local] = ACTIONS(2440), + [anon_sym___thread] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_constexpr] = ACTIONS(2440), + [anon_sym_volatile] = ACTIONS(2440), + [anon_sym_restrict] = ACTIONS(2440), + [anon_sym___restrict__] = ACTIONS(2440), + [anon_sym__Atomic] = ACTIONS(2440), + [anon_sym__Noreturn] = ACTIONS(2440), + [anon_sym_noreturn] = ACTIONS(2440), + [anon_sym__Nonnull] = ACTIONS(2440), + [anon_sym_mutable] = ACTIONS(2440), + [anon_sym_constinit] = ACTIONS(2440), + [anon_sym_consteval] = ACTIONS(2440), + [anon_sym_alignas] = ACTIONS(2440), + [anon_sym__Alignas] = ACTIONS(2440), + [sym_primitive_type] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_struct] = ACTIONS(2440), + [anon_sym_union] = ACTIONS(2440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2440), + [anon_sym_decltype] = ACTIONS(2440), + [anon_sym_explicit] = ACTIONS(2440), + [anon_sym_typename] = ACTIONS(2440), + [anon_sym_template] = ACTIONS(2440), + [anon_sym_operator] = ACTIONS(2440), + [anon_sym_friend] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_static_assert] = ACTIONS(2440), + [sym_macro_statement] = ACTIONS(2440), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2440), + [anon_sym_MOZ_COLD] = ACTIONS(2440), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2440), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2440), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2440), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2440), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2440), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2440), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2440), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2440), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2440), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2440), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2440), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2440), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL] = ACTIONS(2440), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2440), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2440), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN] = ACTIONS(2440), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2440), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2440), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2440), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2440), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2440), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2440), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2440), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2440), + [anon_sym_MOZ_RAII] = ACTIONS(2440), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2440), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2440), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2440), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2440), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2440), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2440), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2440), + }, + [STATE(1286)] = { + [sym_identifier] = ACTIONS(4460), + [aux_sym_preproc_def_token1] = ACTIONS(4460), + [aux_sym_preproc_if_token1] = ACTIONS(4460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4460), + [sym_preproc_directive] = ACTIONS(4460), + [anon_sym_LPAREN2] = ACTIONS(4462), + [anon_sym_TILDE] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4462), + [anon_sym_AMP_AMP] = ACTIONS(4462), + [anon_sym_AMP] = ACTIONS(4460), + [anon_sym_SEMI] = ACTIONS(4462), + [anon_sym___extension__] = ACTIONS(4460), + [anon_sym_typedef] = ACTIONS(4460), + [anon_sym_virtual] = ACTIONS(4460), + [anon_sym_extern] = ACTIONS(4460), + [anon_sym___attribute__] = ACTIONS(4460), + [anon_sym___attribute] = ACTIONS(4460), + [anon_sym_COLON_COLON] = ACTIONS(4462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4462), + [anon_sym___declspec] = ACTIONS(4460), + [anon_sym___based] = ACTIONS(4460), + [anon_sym_RBRACE] = ACTIONS(4462), + [anon_sym_signed] = ACTIONS(4460), + [anon_sym_unsigned] = ACTIONS(4460), + [anon_sym_long] = ACTIONS(4460), + [anon_sym_short] = ACTIONS(4460), + [anon_sym_LBRACK] = ACTIONS(4460), + [anon_sym_static] = ACTIONS(4460), + [anon_sym_register] = ACTIONS(4460), + [anon_sym_inline] = ACTIONS(4460), + [anon_sym___inline] = ACTIONS(4460), + [anon_sym___inline__] = ACTIONS(4460), + [anon_sym___forceinline] = ACTIONS(4460), + [anon_sym_thread_local] = ACTIONS(4460), + [anon_sym___thread] = ACTIONS(4460), + [anon_sym_const] = ACTIONS(4460), + [anon_sym_constexpr] = ACTIONS(4460), + [anon_sym_volatile] = ACTIONS(4460), + [anon_sym_restrict] = ACTIONS(4460), + [anon_sym___restrict__] = ACTIONS(4460), + [anon_sym__Atomic] = ACTIONS(4460), + [anon_sym__Noreturn] = ACTIONS(4460), + [anon_sym_noreturn] = ACTIONS(4460), + [anon_sym__Nonnull] = ACTIONS(4460), + [anon_sym_mutable] = ACTIONS(4460), + [anon_sym_constinit] = ACTIONS(4460), + [anon_sym_consteval] = ACTIONS(4460), + [anon_sym_alignas] = ACTIONS(4460), + [anon_sym__Alignas] = ACTIONS(4460), + [sym_primitive_type] = ACTIONS(4460), + [anon_sym_enum] = ACTIONS(4460), + [anon_sym_class] = ACTIONS(4460), + [anon_sym_struct] = ACTIONS(4460), + [anon_sym_union] = ACTIONS(4460), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4460), + [anon_sym_decltype] = ACTIONS(4460), + [anon_sym_explicit] = ACTIONS(4460), + [anon_sym_typename] = ACTIONS(4460), + [anon_sym_template] = ACTIONS(4460), + [anon_sym_operator] = ACTIONS(4460), + [anon_sym_friend] = ACTIONS(4460), + [anon_sym_public] = ACTIONS(4460), + [anon_sym_private] = ACTIONS(4460), + [anon_sym_protected] = ACTIONS(4460), + [anon_sym_using] = ACTIONS(4460), + [anon_sym_static_assert] = ACTIONS(4460), + [sym_macro_statement] = ACTIONS(4460), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4460), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4460), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4460), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4460), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4460), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4460), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4460), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4460), + [anon_sym_MOZ_COLD] = ACTIONS(4460), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4460), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4460), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4460), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4460), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4460), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4460), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4460), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4460), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4460), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4460), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4460), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4460), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4460), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4460), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4460), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4460), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4460), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4460), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4460), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4460), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4460), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_NONNULL] = ACTIONS(4460), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4460), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4460), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4460), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4460), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4460), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_NORETURN] = ACTIONS(4460), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4460), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4460), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4460), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4460), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4460), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4460), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4460), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4460), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4460), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4460), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4460), + [anon_sym_MOZ_RAII] = ACTIONS(4460), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4460), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4460), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4460), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4460), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4460), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4460), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4460), + }, + [STATE(1287)] = { + [sym_identifier] = ACTIONS(2325), + [aux_sym_preproc_def_token1] = ACTIONS(2325), + [aux_sym_preproc_if_token1] = ACTIONS(2325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2325), + [sym_preproc_directive] = ACTIONS(2325), + [anon_sym_LPAREN2] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2327), + [anon_sym_AMP_AMP] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym___extension__] = ACTIONS(2325), + [anon_sym_typedef] = ACTIONS(2325), + [anon_sym_virtual] = ACTIONS(2325), + [anon_sym_extern] = ACTIONS(2325), + [anon_sym___attribute__] = ACTIONS(2325), + [anon_sym___attribute] = ACTIONS(2325), + [anon_sym_COLON_COLON] = ACTIONS(2327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), + [anon_sym___declspec] = ACTIONS(2325), + [anon_sym___based] = ACTIONS(2325), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_signed] = ACTIONS(2325), + [anon_sym_unsigned] = ACTIONS(2325), + [anon_sym_long] = ACTIONS(2325), + [anon_sym_short] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_static] = ACTIONS(2325), + [anon_sym_register] = ACTIONS(2325), + [anon_sym_inline] = ACTIONS(2325), + [anon_sym___inline] = ACTIONS(2325), + [anon_sym___inline__] = ACTIONS(2325), + [anon_sym___forceinline] = ACTIONS(2325), + [anon_sym_thread_local] = ACTIONS(2325), + [anon_sym___thread] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_constexpr] = ACTIONS(2325), + [anon_sym_volatile] = ACTIONS(2325), + [anon_sym_restrict] = ACTIONS(2325), + [anon_sym___restrict__] = ACTIONS(2325), + [anon_sym__Atomic] = ACTIONS(2325), + [anon_sym__Noreturn] = ACTIONS(2325), + [anon_sym_noreturn] = ACTIONS(2325), + [anon_sym__Nonnull] = ACTIONS(2325), + [anon_sym_mutable] = ACTIONS(2325), + [anon_sym_constinit] = ACTIONS(2325), + [anon_sym_consteval] = ACTIONS(2325), + [anon_sym_alignas] = ACTIONS(2325), + [anon_sym__Alignas] = ACTIONS(2325), + [sym_primitive_type] = ACTIONS(2325), + [anon_sym_enum] = ACTIONS(2325), + [anon_sym_class] = ACTIONS(2325), + [anon_sym_struct] = ACTIONS(2325), + [anon_sym_union] = ACTIONS(2325), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2325), + [anon_sym_decltype] = ACTIONS(2325), + [anon_sym_explicit] = ACTIONS(2325), + [anon_sym_typename] = ACTIONS(2325), + [anon_sym_template] = ACTIONS(2325), + [anon_sym_operator] = ACTIONS(2325), + [anon_sym_friend] = ACTIONS(2325), + [anon_sym_public] = ACTIONS(2325), + [anon_sym_private] = ACTIONS(2325), + [anon_sym_protected] = ACTIONS(2325), + [anon_sym_using] = ACTIONS(2325), + [anon_sym_static_assert] = ACTIONS(2325), + [sym_macro_statement] = ACTIONS(2325), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2325), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2325), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2325), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2325), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2325), + [anon_sym_MOZ_COLD] = ACTIONS(2325), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2325), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2325), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2325), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2325), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2325), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2325), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2325), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2325), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2325), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2325), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2325), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2325), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2325), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2325), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2325), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2325), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_NONNULL] = ACTIONS(2325), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2325), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2325), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2325), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2325), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_NORETURN] = ACTIONS(2325), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2325), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2325), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2325), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2325), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2325), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2325), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2325), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2325), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2325), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2325), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2325), + [anon_sym_MOZ_RAII] = ACTIONS(2325), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2325), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2325), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2325), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2325), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2325), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2325), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2325), + }, + [STATE(1288)] = { + [sym_identifier] = ACTIONS(4464), + [aux_sym_preproc_def_token1] = ACTIONS(4464), + [aux_sym_preproc_if_token1] = ACTIONS(4464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4464), + [sym_preproc_directive] = ACTIONS(4464), + [anon_sym_LPAREN2] = ACTIONS(4466), + [anon_sym_TILDE] = ACTIONS(4466), + [anon_sym_STAR] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym___extension__] = ACTIONS(4464), + [anon_sym_typedef] = ACTIONS(4464), + [anon_sym_virtual] = ACTIONS(4464), + [anon_sym_extern] = ACTIONS(4464), + [anon_sym___attribute__] = ACTIONS(4464), + [anon_sym___attribute] = ACTIONS(4464), + [anon_sym_COLON_COLON] = ACTIONS(4466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4466), + [anon_sym___declspec] = ACTIONS(4464), + [anon_sym___based] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4466), + [anon_sym_signed] = ACTIONS(4464), + [anon_sym_unsigned] = ACTIONS(4464), + [anon_sym_long] = ACTIONS(4464), + [anon_sym_short] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_static] = ACTIONS(4464), + [anon_sym_register] = ACTIONS(4464), + [anon_sym_inline] = ACTIONS(4464), + [anon_sym___inline] = ACTIONS(4464), + [anon_sym___inline__] = ACTIONS(4464), + [anon_sym___forceinline] = ACTIONS(4464), + [anon_sym_thread_local] = ACTIONS(4464), + [anon_sym___thread] = ACTIONS(4464), + [anon_sym_const] = ACTIONS(4464), + [anon_sym_constexpr] = ACTIONS(4464), + [anon_sym_volatile] = ACTIONS(4464), + [anon_sym_restrict] = ACTIONS(4464), + [anon_sym___restrict__] = ACTIONS(4464), + [anon_sym__Atomic] = ACTIONS(4464), + [anon_sym__Noreturn] = ACTIONS(4464), + [anon_sym_noreturn] = ACTIONS(4464), + [anon_sym__Nonnull] = ACTIONS(4464), + [anon_sym_mutable] = ACTIONS(4464), + [anon_sym_constinit] = ACTIONS(4464), + [anon_sym_consteval] = ACTIONS(4464), + [anon_sym_alignas] = ACTIONS(4464), + [anon_sym__Alignas] = ACTIONS(4464), + [sym_primitive_type] = ACTIONS(4464), + [anon_sym_enum] = ACTIONS(4464), + [anon_sym_class] = ACTIONS(4464), + [anon_sym_struct] = ACTIONS(4464), + [anon_sym_union] = ACTIONS(4464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4464), + [anon_sym_decltype] = ACTIONS(4464), + [anon_sym_explicit] = ACTIONS(4464), + [anon_sym_typename] = ACTIONS(4464), + [anon_sym_template] = ACTIONS(4464), + [anon_sym_operator] = ACTIONS(4464), + [anon_sym_friend] = ACTIONS(4464), + [anon_sym_public] = ACTIONS(4464), + [anon_sym_private] = ACTIONS(4464), + [anon_sym_protected] = ACTIONS(4464), + [anon_sym_using] = ACTIONS(4464), + [anon_sym_static_assert] = ACTIONS(4464), + [sym_macro_statement] = ACTIONS(4464), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4464), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4464), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4464), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4464), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4464), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4464), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4464), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4464), + [anon_sym_MOZ_COLD] = ACTIONS(4464), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4464), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4464), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4464), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4464), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4464), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4464), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4464), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4464), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4464), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4464), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4464), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4464), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4464), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4464), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4464), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4464), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4464), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4464), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4464), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4464), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4464), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_NONNULL] = ACTIONS(4464), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4464), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4464), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4464), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4464), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4464), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_NORETURN] = ACTIONS(4464), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4464), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4464), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4464), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4464), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4464), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4464), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4464), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4464), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4464), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4464), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4464), + [anon_sym_MOZ_RAII] = ACTIONS(4464), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4464), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4464), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4464), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4464), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4464), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4464), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4464), + }, + [STATE(1289)] = { + [sym_identifier] = ACTIONS(4452), + [aux_sym_preproc_def_token1] = ACTIONS(4452), + [aux_sym_preproc_if_token1] = ACTIONS(4452), + [aux_sym_preproc_if_token2] = ACTIONS(4452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4452), + [sym_preproc_directive] = ACTIONS(4452), + [anon_sym_LPAREN2] = ACTIONS(4454), + [anon_sym_TILDE] = ACTIONS(4454), + [anon_sym_STAR] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym___extension__] = ACTIONS(4452), + [anon_sym_typedef] = ACTIONS(4452), + [anon_sym_virtual] = ACTIONS(4452), + [anon_sym_extern] = ACTIONS(4452), + [anon_sym___attribute__] = ACTIONS(4452), + [anon_sym___attribute] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4454), + [anon_sym___declspec] = ACTIONS(4452), + [anon_sym___based] = ACTIONS(4452), + [anon_sym_signed] = ACTIONS(4452), + [anon_sym_unsigned] = ACTIONS(4452), + [anon_sym_long] = ACTIONS(4452), + [anon_sym_short] = ACTIONS(4452), + [anon_sym_LBRACK] = ACTIONS(4452), + [anon_sym_static] = ACTIONS(4452), + [anon_sym_register] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym___inline] = ACTIONS(4452), + [anon_sym___inline__] = ACTIONS(4452), + [anon_sym___forceinline] = ACTIONS(4452), + [anon_sym_thread_local] = ACTIONS(4452), + [anon_sym___thread] = ACTIONS(4452), + [anon_sym_const] = ACTIONS(4452), + [anon_sym_constexpr] = ACTIONS(4452), + [anon_sym_volatile] = ACTIONS(4452), + [anon_sym_restrict] = ACTIONS(4452), + [anon_sym___restrict__] = ACTIONS(4452), + [anon_sym__Atomic] = ACTIONS(4452), + [anon_sym__Noreturn] = ACTIONS(4452), + [anon_sym_noreturn] = ACTIONS(4452), + [anon_sym__Nonnull] = ACTIONS(4452), + [anon_sym_mutable] = ACTIONS(4452), + [anon_sym_constinit] = ACTIONS(4452), + [anon_sym_consteval] = ACTIONS(4452), + [anon_sym_alignas] = ACTIONS(4452), + [anon_sym__Alignas] = ACTIONS(4452), + [sym_primitive_type] = ACTIONS(4452), + [anon_sym_enum] = ACTIONS(4452), + [anon_sym_class] = ACTIONS(4452), + [anon_sym_struct] = ACTIONS(4452), + [anon_sym_union] = ACTIONS(4452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4452), + [anon_sym_decltype] = ACTIONS(4452), + [anon_sym_explicit] = ACTIONS(4452), + [anon_sym_typename] = ACTIONS(4452), + [anon_sym_template] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_friend] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_using] = ACTIONS(4452), + [anon_sym_static_assert] = ACTIONS(4452), + [sym_macro_statement] = ACTIONS(4452), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4452), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4452), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4452), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4452), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4452), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4452), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4452), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4452), + [anon_sym_MOZ_COLD] = ACTIONS(4452), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4452), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4452), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4452), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4452), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4452), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4452), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4452), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4452), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4452), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4452), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4452), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4452), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4452), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4452), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4452), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4452), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4452), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4452), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4452), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4452), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_NONNULL] = ACTIONS(4452), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4452), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4452), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4452), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4452), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4452), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_NORETURN] = ACTIONS(4452), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4452), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4452), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4452), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4452), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4452), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4452), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4452), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4452), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4452), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4452), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4452), + [anon_sym_MOZ_RAII] = ACTIONS(4452), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4452), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4452), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4452), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4452), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4452), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4452), + }, + [STATE(1290)] = { + [sym_identifier] = ACTIONS(4452), + [aux_sym_preproc_def_token1] = ACTIONS(4452), + [aux_sym_preproc_if_token1] = ACTIONS(4452), + [aux_sym_preproc_if_token2] = ACTIONS(4452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4452), + [sym_preproc_directive] = ACTIONS(4452), + [anon_sym_LPAREN2] = ACTIONS(4454), + [anon_sym_TILDE] = ACTIONS(4454), + [anon_sym_STAR] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(4452), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym___extension__] = ACTIONS(4452), + [anon_sym_typedef] = ACTIONS(4452), + [anon_sym_virtual] = ACTIONS(4452), + [anon_sym_extern] = ACTIONS(4452), + [anon_sym___attribute__] = ACTIONS(4452), + [anon_sym___attribute] = ACTIONS(4452), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4454), + [anon_sym___declspec] = ACTIONS(4452), + [anon_sym___based] = ACTIONS(4452), + [anon_sym_signed] = ACTIONS(4452), + [anon_sym_unsigned] = ACTIONS(4452), + [anon_sym_long] = ACTIONS(4452), + [anon_sym_short] = ACTIONS(4452), + [anon_sym_LBRACK] = ACTIONS(4452), + [anon_sym_static] = ACTIONS(4452), + [anon_sym_register] = ACTIONS(4452), + [anon_sym_inline] = ACTIONS(4452), + [anon_sym___inline] = ACTIONS(4452), + [anon_sym___inline__] = ACTIONS(4452), + [anon_sym___forceinline] = ACTIONS(4452), + [anon_sym_thread_local] = ACTIONS(4452), + [anon_sym___thread] = ACTIONS(4452), + [anon_sym_const] = ACTIONS(4452), + [anon_sym_constexpr] = ACTIONS(4452), + [anon_sym_volatile] = ACTIONS(4452), + [anon_sym_restrict] = ACTIONS(4452), + [anon_sym___restrict__] = ACTIONS(4452), + [anon_sym__Atomic] = ACTIONS(4452), + [anon_sym__Noreturn] = ACTIONS(4452), + [anon_sym_noreturn] = ACTIONS(4452), + [anon_sym__Nonnull] = ACTIONS(4452), + [anon_sym_mutable] = ACTIONS(4452), + [anon_sym_constinit] = ACTIONS(4452), + [anon_sym_consteval] = ACTIONS(4452), + [anon_sym_alignas] = ACTIONS(4452), + [anon_sym__Alignas] = ACTIONS(4452), + [sym_primitive_type] = ACTIONS(4452), + [anon_sym_enum] = ACTIONS(4452), + [anon_sym_class] = ACTIONS(4452), + [anon_sym_struct] = ACTIONS(4452), + [anon_sym_union] = ACTIONS(4452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4452), + [anon_sym_decltype] = ACTIONS(4452), + [anon_sym_explicit] = ACTIONS(4452), + [anon_sym_typename] = ACTIONS(4452), + [anon_sym_template] = ACTIONS(4452), + [anon_sym_operator] = ACTIONS(4452), + [anon_sym_friend] = ACTIONS(4452), + [anon_sym_public] = ACTIONS(4452), + [anon_sym_private] = ACTIONS(4452), + [anon_sym_protected] = ACTIONS(4452), + [anon_sym_using] = ACTIONS(4452), + [anon_sym_static_assert] = ACTIONS(4452), + [sym_macro_statement] = ACTIONS(4452), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4452), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4452), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4452), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4452), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4452), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4452), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4452), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4452), + [anon_sym_MOZ_COLD] = ACTIONS(4452), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4452), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4452), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4452), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4452), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4452), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4452), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4452), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4452), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4452), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4452), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4452), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4452), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4452), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4452), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4452), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4452), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4452), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4452), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4452), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4452), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4452), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_NONNULL] = ACTIONS(4452), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4452), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4452), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4452), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4452), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4452), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_NORETURN] = ACTIONS(4452), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4452), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4452), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4452), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4452), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4452), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4452), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4452), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4452), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4452), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4452), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4452), + [anon_sym_MOZ_RAII] = ACTIONS(4452), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4452), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4452), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4452), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4452), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4452), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4452), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4452), + }, + [STATE(1291)] = { + [sym_identifier] = ACTIONS(2450), + [aux_sym_preproc_def_token1] = ACTIONS(2450), + [aux_sym_preproc_if_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2450), + [sym_preproc_directive] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_AMP_AMP] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym___extension__] = ACTIONS(2450), + [anon_sym_typedef] = ACTIONS(2450), + [anon_sym_virtual] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym___attribute__] = ACTIONS(2450), + [anon_sym___attribute] = ACTIONS(2450), + [anon_sym_COLON_COLON] = ACTIONS(2452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2452), + [anon_sym___declspec] = ACTIONS(2450), + [anon_sym___based] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2452), + [anon_sym_signed] = ACTIONS(2450), + [anon_sym_unsigned] = ACTIONS(2450), + [anon_sym_long] = ACTIONS(2450), + [anon_sym_short] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_inline] = ACTIONS(2450), + [anon_sym___inline] = ACTIONS(2450), + [anon_sym___inline__] = ACTIONS(2450), + [anon_sym___forceinline] = ACTIONS(2450), + [anon_sym_thread_local] = ACTIONS(2450), + [anon_sym___thread] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_constexpr] = ACTIONS(2450), + [anon_sym_volatile] = ACTIONS(2450), + [anon_sym_restrict] = ACTIONS(2450), + [anon_sym___restrict__] = ACTIONS(2450), + [anon_sym__Atomic] = ACTIONS(2450), + [anon_sym__Noreturn] = ACTIONS(2450), + [anon_sym_noreturn] = ACTIONS(2450), + [anon_sym__Nonnull] = ACTIONS(2450), + [anon_sym_mutable] = ACTIONS(2450), + [anon_sym_constinit] = ACTIONS(2450), + [anon_sym_consteval] = ACTIONS(2450), + [anon_sym_alignas] = ACTIONS(2450), + [anon_sym__Alignas] = ACTIONS(2450), + [sym_primitive_type] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_class] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2450), + [anon_sym_decltype] = ACTIONS(2450), + [anon_sym_explicit] = ACTIONS(2450), + [anon_sym_typename] = ACTIONS(2450), + [anon_sym_template] = ACTIONS(2450), + [anon_sym_operator] = ACTIONS(2450), + [anon_sym_friend] = ACTIONS(2450), + [anon_sym_public] = ACTIONS(2450), + [anon_sym_private] = ACTIONS(2450), + [anon_sym_protected] = ACTIONS(2450), + [anon_sym_using] = ACTIONS(2450), + [anon_sym_static_assert] = ACTIONS(2450), + [sym_macro_statement] = ACTIONS(2450), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2450), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2450), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2450), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2450), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2450), + [anon_sym_MOZ_COLD] = ACTIONS(2450), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2450), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2450), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2450), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2450), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2450), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2450), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2450), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2450), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2450), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2450), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2450), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2450), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2450), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2450), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2450), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2450), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_NONNULL] = ACTIONS(2450), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2450), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2450), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2450), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2450), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_NORETURN] = ACTIONS(2450), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2450), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2450), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2450), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2450), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2450), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2450), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2450), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2450), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2450), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2450), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2450), + [anon_sym_MOZ_RAII] = ACTIONS(2450), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2450), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2450), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2450), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2450), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2450), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2450), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2450), + }, + [STATE(1292)] = { + [sym_identifier] = ACTIONS(2202), + [aux_sym_preproc_def_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token1] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2202), + [sym_preproc_directive] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym___extension__] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2202), + [anon_sym_virtual] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym___attribute__] = ACTIONS(2202), + [anon_sym___attribute] = ACTIONS(2202), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2204), + [anon_sym___declspec] = ACTIONS(2202), + [anon_sym___based] = ACTIONS(2202), + [anon_sym_RBRACE] = ACTIONS(2204), + [anon_sym_signed] = ACTIONS(2202), + [anon_sym_unsigned] = ACTIONS(2202), + [anon_sym_long] = ACTIONS(2202), + [anon_sym_short] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_register] = ACTIONS(2202), + [anon_sym_inline] = ACTIONS(2202), + [anon_sym___inline] = ACTIONS(2202), + [anon_sym___inline__] = ACTIONS(2202), + [anon_sym___forceinline] = ACTIONS(2202), + [anon_sym_thread_local] = ACTIONS(2202), + [anon_sym___thread] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_constexpr] = ACTIONS(2202), + [anon_sym_volatile] = ACTIONS(2202), + [anon_sym_restrict] = ACTIONS(2202), + [anon_sym___restrict__] = ACTIONS(2202), + [anon_sym__Atomic] = ACTIONS(2202), + [anon_sym__Noreturn] = ACTIONS(2202), + [anon_sym_noreturn] = ACTIONS(2202), + [anon_sym__Nonnull] = ACTIONS(2202), + [anon_sym_mutable] = ACTIONS(2202), + [anon_sym_constinit] = ACTIONS(2202), + [anon_sym_consteval] = ACTIONS(2202), + [anon_sym_alignas] = ACTIONS(2202), + [anon_sym__Alignas] = ACTIONS(2202), + [sym_primitive_type] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_class] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2202), + [anon_sym_decltype] = ACTIONS(2202), + [anon_sym_explicit] = ACTIONS(2202), + [anon_sym_typename] = ACTIONS(2202), + [anon_sym_template] = ACTIONS(2202), + [anon_sym_operator] = ACTIONS(2202), + [anon_sym_friend] = ACTIONS(2202), + [anon_sym_public] = ACTIONS(2202), + [anon_sym_private] = ACTIONS(2202), + [anon_sym_protected] = ACTIONS(2202), + [anon_sym_using] = ACTIONS(2202), + [anon_sym_static_assert] = ACTIONS(2202), + [sym_macro_statement] = ACTIONS(2202), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2202), + [anon_sym_MOZ_COLD] = ACTIONS(2202), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2202), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2202), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2202), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2202), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2202), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2202), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2202), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2202), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2202), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2202), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2202), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2202), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_RAII] = ACTIONS(2202), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2202), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2202), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2202), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2202), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2202), + }, + [STATE(1293)] = { + [sym_identifier] = ACTIONS(2202), + [aux_sym_preproc_def_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token1] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2202), + [sym_preproc_directive] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym___extension__] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2202), + [anon_sym_virtual] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym___attribute__] = ACTIONS(2202), + [anon_sym___attribute] = ACTIONS(2202), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2204), + [anon_sym___declspec] = ACTIONS(2202), + [anon_sym___based] = ACTIONS(2202), + [anon_sym_RBRACE] = ACTIONS(2204), + [anon_sym_signed] = ACTIONS(2202), + [anon_sym_unsigned] = ACTIONS(2202), + [anon_sym_long] = ACTIONS(2202), + [anon_sym_short] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_register] = ACTIONS(2202), + [anon_sym_inline] = ACTIONS(2202), + [anon_sym___inline] = ACTIONS(2202), + [anon_sym___inline__] = ACTIONS(2202), + [anon_sym___forceinline] = ACTIONS(2202), + [anon_sym_thread_local] = ACTIONS(2202), + [anon_sym___thread] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_constexpr] = ACTIONS(2202), + [anon_sym_volatile] = ACTIONS(2202), + [anon_sym_restrict] = ACTIONS(2202), + [anon_sym___restrict__] = ACTIONS(2202), + [anon_sym__Atomic] = ACTIONS(2202), + [anon_sym__Noreturn] = ACTIONS(2202), + [anon_sym_noreturn] = ACTIONS(2202), + [anon_sym__Nonnull] = ACTIONS(2202), + [anon_sym_mutable] = ACTIONS(2202), + [anon_sym_constinit] = ACTIONS(2202), + [anon_sym_consteval] = ACTIONS(2202), + [anon_sym_alignas] = ACTIONS(2202), + [anon_sym__Alignas] = ACTIONS(2202), + [sym_primitive_type] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_class] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2202), + [anon_sym_decltype] = ACTIONS(2202), + [anon_sym_explicit] = ACTIONS(2202), + [anon_sym_typename] = ACTIONS(2202), + [anon_sym_template] = ACTIONS(2202), + [anon_sym_operator] = ACTIONS(2202), + [anon_sym_friend] = ACTIONS(2202), + [anon_sym_public] = ACTIONS(2202), + [anon_sym_private] = ACTIONS(2202), + [anon_sym_protected] = ACTIONS(2202), + [anon_sym_using] = ACTIONS(2202), + [anon_sym_static_assert] = ACTIONS(2202), + [sym_macro_statement] = ACTIONS(2202), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2202), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2202), + [anon_sym_MOZ_COLD] = ACTIONS(2202), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2202), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2202), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2202), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2202), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2202), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2202), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2202), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2202), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2202), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2202), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2202), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2202), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL] = ACTIONS(2202), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2202), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2202), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN] = ACTIONS(2202), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2202), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2202), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2202), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2202), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2202), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2202), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2202), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2202), + [anon_sym_MOZ_RAII] = ACTIONS(2202), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2202), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2202), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2202), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2202), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2202), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2202), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2202), + }, + [STATE(1294)] = { + [sym_identifier] = ACTIONS(4392), + [aux_sym_preproc_def_token1] = ACTIONS(4392), + [aux_sym_preproc_if_token1] = ACTIONS(4392), + [aux_sym_preproc_if_token2] = ACTIONS(4392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4392), + [sym_preproc_directive] = ACTIONS(4392), + [anon_sym_LPAREN2] = ACTIONS(4394), + [anon_sym_TILDE] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4394), + [anon_sym_AMP_AMP] = ACTIONS(4394), + [anon_sym_AMP] = ACTIONS(4392), + [anon_sym_SEMI] = ACTIONS(4394), + [anon_sym___extension__] = ACTIONS(4392), + [anon_sym_typedef] = ACTIONS(4392), + [anon_sym_virtual] = ACTIONS(4392), + [anon_sym_extern] = ACTIONS(4392), + [anon_sym___attribute__] = ACTIONS(4392), + [anon_sym___attribute] = ACTIONS(4392), + [anon_sym_COLON_COLON] = ACTIONS(4394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4394), + [anon_sym___declspec] = ACTIONS(4392), + [anon_sym___based] = ACTIONS(4392), + [anon_sym_signed] = ACTIONS(4392), + [anon_sym_unsigned] = ACTIONS(4392), + [anon_sym_long] = ACTIONS(4392), + [anon_sym_short] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_static] = ACTIONS(4392), + [anon_sym_register] = ACTIONS(4392), + [anon_sym_inline] = ACTIONS(4392), + [anon_sym___inline] = ACTIONS(4392), + [anon_sym___inline__] = ACTIONS(4392), + [anon_sym___forceinline] = ACTIONS(4392), + [anon_sym_thread_local] = ACTIONS(4392), + [anon_sym___thread] = ACTIONS(4392), + [anon_sym_const] = ACTIONS(4392), + [anon_sym_constexpr] = ACTIONS(4392), + [anon_sym_volatile] = ACTIONS(4392), + [anon_sym_restrict] = ACTIONS(4392), + [anon_sym___restrict__] = ACTIONS(4392), + [anon_sym__Atomic] = ACTIONS(4392), + [anon_sym__Noreturn] = ACTIONS(4392), + [anon_sym_noreturn] = ACTIONS(4392), + [anon_sym__Nonnull] = ACTIONS(4392), + [anon_sym_mutable] = ACTIONS(4392), + [anon_sym_constinit] = ACTIONS(4392), + [anon_sym_consteval] = ACTIONS(4392), + [anon_sym_alignas] = ACTIONS(4392), + [anon_sym__Alignas] = ACTIONS(4392), + [sym_primitive_type] = ACTIONS(4392), + [anon_sym_enum] = ACTIONS(4392), + [anon_sym_class] = ACTIONS(4392), + [anon_sym_struct] = ACTIONS(4392), + [anon_sym_union] = ACTIONS(4392), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4392), + [anon_sym_decltype] = ACTIONS(4392), + [anon_sym_explicit] = ACTIONS(4392), + [anon_sym_typename] = ACTIONS(4392), + [anon_sym_template] = ACTIONS(4392), + [anon_sym_operator] = ACTIONS(4392), + [anon_sym_friend] = ACTIONS(4392), + [anon_sym_public] = ACTIONS(4392), + [anon_sym_private] = ACTIONS(4392), + [anon_sym_protected] = ACTIONS(4392), + [anon_sym_using] = ACTIONS(4392), + [anon_sym_static_assert] = ACTIONS(4392), + [sym_macro_statement] = ACTIONS(4392), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4392), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4392), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4392), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4392), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4392), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4392), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4392), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4392), + [anon_sym_MOZ_COLD] = ACTIONS(4392), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4392), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4392), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4392), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4392), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4392), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4392), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4392), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4392), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4392), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4392), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4392), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4392), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4392), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4392), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4392), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4392), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4392), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4392), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4392), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4392), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4392), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_NONNULL] = ACTIONS(4392), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4392), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4392), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4392), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4392), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4392), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_NORETURN] = ACTIONS(4392), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4392), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4392), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4392), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4392), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4392), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4392), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4392), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4392), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4392), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4392), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4392), + [anon_sym_MOZ_RAII] = ACTIONS(4392), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4392), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4392), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4392), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4392), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4392), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4392), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4392), + }, + [STATE(1295)] = { + [sym_identifier] = ACTIONS(4428), + [aux_sym_preproc_def_token1] = ACTIONS(4428), + [aux_sym_preproc_if_token1] = ACTIONS(4428), + [aux_sym_preproc_if_token2] = ACTIONS(4428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4428), + [sym_preproc_directive] = ACTIONS(4428), + [anon_sym_LPAREN2] = ACTIONS(4430), + [anon_sym_TILDE] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [anon_sym_AMP_AMP] = ACTIONS(4430), + [anon_sym_AMP] = ACTIONS(4428), + [anon_sym_SEMI] = ACTIONS(4430), + [anon_sym___extension__] = ACTIONS(4428), + [anon_sym_typedef] = ACTIONS(4428), + [anon_sym_virtual] = ACTIONS(4428), + [anon_sym_extern] = ACTIONS(4428), + [anon_sym___attribute__] = ACTIONS(4428), + [anon_sym___attribute] = ACTIONS(4428), + [anon_sym_COLON_COLON] = ACTIONS(4430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4430), + [anon_sym___declspec] = ACTIONS(4428), + [anon_sym___based] = ACTIONS(4428), + [anon_sym_signed] = ACTIONS(4428), + [anon_sym_unsigned] = ACTIONS(4428), + [anon_sym_long] = ACTIONS(4428), + [anon_sym_short] = ACTIONS(4428), + [anon_sym_LBRACK] = ACTIONS(4428), + [anon_sym_static] = ACTIONS(4428), + [anon_sym_register] = ACTIONS(4428), + [anon_sym_inline] = ACTIONS(4428), + [anon_sym___inline] = ACTIONS(4428), + [anon_sym___inline__] = ACTIONS(4428), + [anon_sym___forceinline] = ACTIONS(4428), + [anon_sym_thread_local] = ACTIONS(4428), + [anon_sym___thread] = ACTIONS(4428), + [anon_sym_const] = ACTIONS(4428), + [anon_sym_constexpr] = ACTIONS(4428), + [anon_sym_volatile] = ACTIONS(4428), + [anon_sym_restrict] = ACTIONS(4428), + [anon_sym___restrict__] = ACTIONS(4428), + [anon_sym__Atomic] = ACTIONS(4428), + [anon_sym__Noreturn] = ACTIONS(4428), + [anon_sym_noreturn] = ACTIONS(4428), + [anon_sym__Nonnull] = ACTIONS(4428), + [anon_sym_mutable] = ACTIONS(4428), + [anon_sym_constinit] = ACTIONS(4428), + [anon_sym_consteval] = ACTIONS(4428), + [anon_sym_alignas] = ACTIONS(4428), + [anon_sym__Alignas] = ACTIONS(4428), + [sym_primitive_type] = ACTIONS(4428), + [anon_sym_enum] = ACTIONS(4428), + [anon_sym_class] = ACTIONS(4428), + [anon_sym_struct] = ACTIONS(4428), + [anon_sym_union] = ACTIONS(4428), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4428), + [anon_sym_decltype] = ACTIONS(4428), + [anon_sym_explicit] = ACTIONS(4428), + [anon_sym_typename] = ACTIONS(4428), + [anon_sym_template] = ACTIONS(4428), + [anon_sym_operator] = ACTIONS(4428), + [anon_sym_friend] = ACTIONS(4428), + [anon_sym_public] = ACTIONS(4428), + [anon_sym_private] = ACTIONS(4428), + [anon_sym_protected] = ACTIONS(4428), + [anon_sym_using] = ACTIONS(4428), + [anon_sym_static_assert] = ACTIONS(4428), + [sym_macro_statement] = ACTIONS(4428), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4428), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4428), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4428), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4428), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4428), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4428), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4428), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4428), + [anon_sym_MOZ_COLD] = ACTIONS(4428), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4428), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4428), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4428), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4428), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4428), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4428), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4428), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4428), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4428), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4428), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4428), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4428), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4428), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4428), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4428), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4428), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4428), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4428), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4428), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4428), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4428), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_NONNULL] = ACTIONS(4428), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4428), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4428), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4428), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4428), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4428), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_NORETURN] = ACTIONS(4428), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4428), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4428), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4428), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4428), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4428), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4428), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4428), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4428), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4428), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4428), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4428), + [anon_sym_MOZ_RAII] = ACTIONS(4428), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4428), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4428), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4428), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4428), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4428), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4428), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4428), + }, + [STATE(1296)] = { + [sym_identifier] = ACTIONS(4432), + [aux_sym_preproc_def_token1] = ACTIONS(4432), + [aux_sym_preproc_if_token1] = ACTIONS(4432), + [aux_sym_preproc_if_token2] = ACTIONS(4432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4432), + [sym_preproc_directive] = ACTIONS(4432), + [anon_sym_LPAREN2] = ACTIONS(4434), + [anon_sym_TILDE] = ACTIONS(4434), + [anon_sym_STAR] = ACTIONS(4434), + [anon_sym_AMP_AMP] = ACTIONS(4434), + [anon_sym_AMP] = ACTIONS(4432), + [anon_sym_SEMI] = ACTIONS(4434), + [anon_sym___extension__] = ACTIONS(4432), + [anon_sym_typedef] = ACTIONS(4432), + [anon_sym_virtual] = ACTIONS(4432), + [anon_sym_extern] = ACTIONS(4432), + [anon_sym___attribute__] = ACTIONS(4432), + [anon_sym___attribute] = ACTIONS(4432), + [anon_sym_COLON_COLON] = ACTIONS(4434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4434), + [anon_sym___declspec] = ACTIONS(4432), + [anon_sym___based] = ACTIONS(4432), + [anon_sym_signed] = ACTIONS(4432), + [anon_sym_unsigned] = ACTIONS(4432), + [anon_sym_long] = ACTIONS(4432), + [anon_sym_short] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_static] = ACTIONS(4432), + [anon_sym_register] = ACTIONS(4432), + [anon_sym_inline] = ACTIONS(4432), + [anon_sym___inline] = ACTIONS(4432), + [anon_sym___inline__] = ACTIONS(4432), + [anon_sym___forceinline] = ACTIONS(4432), + [anon_sym_thread_local] = ACTIONS(4432), + [anon_sym___thread] = ACTIONS(4432), + [anon_sym_const] = ACTIONS(4432), + [anon_sym_constexpr] = ACTIONS(4432), + [anon_sym_volatile] = ACTIONS(4432), + [anon_sym_restrict] = ACTIONS(4432), + [anon_sym___restrict__] = ACTIONS(4432), + [anon_sym__Atomic] = ACTIONS(4432), + [anon_sym__Noreturn] = ACTIONS(4432), + [anon_sym_noreturn] = ACTIONS(4432), + [anon_sym__Nonnull] = ACTIONS(4432), + [anon_sym_mutable] = ACTIONS(4432), + [anon_sym_constinit] = ACTIONS(4432), + [anon_sym_consteval] = ACTIONS(4432), + [anon_sym_alignas] = ACTIONS(4432), + [anon_sym__Alignas] = ACTIONS(4432), + [sym_primitive_type] = ACTIONS(4432), + [anon_sym_enum] = ACTIONS(4432), + [anon_sym_class] = ACTIONS(4432), + [anon_sym_struct] = ACTIONS(4432), + [anon_sym_union] = ACTIONS(4432), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4432), + [anon_sym_decltype] = ACTIONS(4432), + [anon_sym_explicit] = ACTIONS(4432), + [anon_sym_typename] = ACTIONS(4432), + [anon_sym_template] = ACTIONS(4432), + [anon_sym_operator] = ACTIONS(4432), + [anon_sym_friend] = ACTIONS(4432), + [anon_sym_public] = ACTIONS(4432), + [anon_sym_private] = ACTIONS(4432), + [anon_sym_protected] = ACTIONS(4432), + [anon_sym_using] = ACTIONS(4432), + [anon_sym_static_assert] = ACTIONS(4432), + [sym_macro_statement] = ACTIONS(4432), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4432), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4432), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4432), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4432), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4432), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4432), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4432), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4432), + [anon_sym_MOZ_COLD] = ACTIONS(4432), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4432), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4432), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4432), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4432), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4432), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4432), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4432), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4432), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4432), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4432), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4432), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4432), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4432), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4432), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4432), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4432), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4432), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4432), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4432), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4432), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4432), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_NONNULL] = ACTIONS(4432), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4432), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4432), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4432), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4432), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4432), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_NORETURN] = ACTIONS(4432), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4432), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4432), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4432), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4432), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4432), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4432), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4432), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4432), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4432), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4432), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4432), + [anon_sym_MOZ_RAII] = ACTIONS(4432), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4432), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4432), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4432), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4432), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4432), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4432), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4432), + }, + [STATE(1297)] = { + [sym_identifier] = ACTIONS(4440), + [aux_sym_preproc_def_token1] = ACTIONS(4440), + [aux_sym_preproc_if_token1] = ACTIONS(4440), + [aux_sym_preproc_if_token2] = ACTIONS(4440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4440), + [sym_preproc_directive] = ACTIONS(4440), + [anon_sym_LPAREN2] = ACTIONS(4442), + [anon_sym_TILDE] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [anon_sym_AMP_AMP] = ACTIONS(4442), + [anon_sym_AMP] = ACTIONS(4440), + [anon_sym_SEMI] = ACTIONS(4442), + [anon_sym___extension__] = ACTIONS(4440), + [anon_sym_typedef] = ACTIONS(4440), + [anon_sym_virtual] = ACTIONS(4440), + [anon_sym_extern] = ACTIONS(4440), + [anon_sym___attribute__] = ACTIONS(4440), + [anon_sym___attribute] = ACTIONS(4440), + [anon_sym_COLON_COLON] = ACTIONS(4442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4442), + [anon_sym___declspec] = ACTIONS(4440), + [anon_sym___based] = ACTIONS(4440), + [anon_sym_signed] = ACTIONS(4440), + [anon_sym_unsigned] = ACTIONS(4440), + [anon_sym_long] = ACTIONS(4440), + [anon_sym_short] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_static] = ACTIONS(4440), + [anon_sym_register] = ACTIONS(4440), + [anon_sym_inline] = ACTIONS(4440), + [anon_sym___inline] = ACTIONS(4440), + [anon_sym___inline__] = ACTIONS(4440), + [anon_sym___forceinline] = ACTIONS(4440), + [anon_sym_thread_local] = ACTIONS(4440), + [anon_sym___thread] = ACTIONS(4440), + [anon_sym_const] = ACTIONS(4440), + [anon_sym_constexpr] = ACTIONS(4440), + [anon_sym_volatile] = ACTIONS(4440), + [anon_sym_restrict] = ACTIONS(4440), + [anon_sym___restrict__] = ACTIONS(4440), + [anon_sym__Atomic] = ACTIONS(4440), + [anon_sym__Noreturn] = ACTIONS(4440), + [anon_sym_noreturn] = ACTIONS(4440), + [anon_sym__Nonnull] = ACTIONS(4440), + [anon_sym_mutable] = ACTIONS(4440), + [anon_sym_constinit] = ACTIONS(4440), + [anon_sym_consteval] = ACTIONS(4440), + [anon_sym_alignas] = ACTIONS(4440), + [anon_sym__Alignas] = ACTIONS(4440), + [sym_primitive_type] = ACTIONS(4440), + [anon_sym_enum] = ACTIONS(4440), + [anon_sym_class] = ACTIONS(4440), + [anon_sym_struct] = ACTIONS(4440), + [anon_sym_union] = ACTIONS(4440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4440), + [anon_sym_decltype] = ACTIONS(4440), + [anon_sym_explicit] = ACTIONS(4440), + [anon_sym_typename] = ACTIONS(4440), + [anon_sym_template] = ACTIONS(4440), + [anon_sym_operator] = ACTIONS(4440), + [anon_sym_friend] = ACTIONS(4440), + [anon_sym_public] = ACTIONS(4440), + [anon_sym_private] = ACTIONS(4440), + [anon_sym_protected] = ACTIONS(4440), + [anon_sym_using] = ACTIONS(4440), + [anon_sym_static_assert] = ACTIONS(4440), + [sym_macro_statement] = ACTIONS(4440), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4440), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4440), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4440), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4440), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4440), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4440), + [anon_sym_MOZ_COLD] = ACTIONS(4440), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4440), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4440), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4440), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4440), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4440), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4440), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4440), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4440), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4440), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4440), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4440), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4440), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4440), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4440), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4440), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4440), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4440), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4440), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_NONNULL] = ACTIONS(4440), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4440), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4440), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4440), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4440), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4440), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_NORETURN] = ACTIONS(4440), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4440), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4440), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4440), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4440), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4440), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4440), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4440), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4440), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4440), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4440), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4440), + [anon_sym_MOZ_RAII] = ACTIONS(4440), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4440), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4440), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4440), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4440), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4440), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4440), + }, + [STATE(1298)] = { + [sym_identifier] = ACTIONS(4448), + [aux_sym_preproc_def_token1] = ACTIONS(4448), + [aux_sym_preproc_if_token1] = ACTIONS(4448), + [aux_sym_preproc_if_token2] = ACTIONS(4448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4448), + [sym_preproc_directive] = ACTIONS(4448), + [anon_sym_LPAREN2] = ACTIONS(4450), + [anon_sym_TILDE] = ACTIONS(4450), + [anon_sym_STAR] = ACTIONS(4450), + [anon_sym_AMP_AMP] = ACTIONS(4450), + [anon_sym_AMP] = ACTIONS(4448), + [anon_sym_SEMI] = ACTIONS(4450), + [anon_sym___extension__] = ACTIONS(4448), + [anon_sym_typedef] = ACTIONS(4448), + [anon_sym_virtual] = ACTIONS(4448), + [anon_sym_extern] = ACTIONS(4448), + [anon_sym___attribute__] = ACTIONS(4448), + [anon_sym___attribute] = ACTIONS(4448), + [anon_sym_COLON_COLON] = ACTIONS(4450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4450), + [anon_sym___declspec] = ACTIONS(4448), + [anon_sym___based] = ACTIONS(4448), + [anon_sym_signed] = ACTIONS(4448), + [anon_sym_unsigned] = ACTIONS(4448), + [anon_sym_long] = ACTIONS(4448), + [anon_sym_short] = ACTIONS(4448), + [anon_sym_LBRACK] = ACTIONS(4448), + [anon_sym_static] = ACTIONS(4448), + [anon_sym_register] = ACTIONS(4448), + [anon_sym_inline] = ACTIONS(4448), + [anon_sym___inline] = ACTIONS(4448), + [anon_sym___inline__] = ACTIONS(4448), + [anon_sym___forceinline] = ACTIONS(4448), + [anon_sym_thread_local] = ACTIONS(4448), + [anon_sym___thread] = ACTIONS(4448), + [anon_sym_const] = ACTIONS(4448), + [anon_sym_constexpr] = ACTIONS(4448), + [anon_sym_volatile] = ACTIONS(4448), + [anon_sym_restrict] = ACTIONS(4448), + [anon_sym___restrict__] = ACTIONS(4448), + [anon_sym__Atomic] = ACTIONS(4448), + [anon_sym__Noreturn] = ACTIONS(4448), + [anon_sym_noreturn] = ACTIONS(4448), + [anon_sym__Nonnull] = ACTIONS(4448), + [anon_sym_mutable] = ACTIONS(4448), + [anon_sym_constinit] = ACTIONS(4448), + [anon_sym_consteval] = ACTIONS(4448), + [anon_sym_alignas] = ACTIONS(4448), + [anon_sym__Alignas] = ACTIONS(4448), + [sym_primitive_type] = ACTIONS(4448), + [anon_sym_enum] = ACTIONS(4448), + [anon_sym_class] = ACTIONS(4448), + [anon_sym_struct] = ACTIONS(4448), + [anon_sym_union] = ACTIONS(4448), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4448), + [anon_sym_decltype] = ACTIONS(4448), + [anon_sym_explicit] = ACTIONS(4448), + [anon_sym_typename] = ACTIONS(4448), + [anon_sym_template] = ACTIONS(4448), + [anon_sym_operator] = ACTIONS(4448), + [anon_sym_friend] = ACTIONS(4448), + [anon_sym_public] = ACTIONS(4448), + [anon_sym_private] = ACTIONS(4448), + [anon_sym_protected] = ACTIONS(4448), + [anon_sym_using] = ACTIONS(4448), + [anon_sym_static_assert] = ACTIONS(4448), + [sym_macro_statement] = ACTIONS(4448), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4448), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4448), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4448), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4448), + [anon_sym_MOZ_COLD] = ACTIONS(4448), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4448), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4448), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4448), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4448), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4448), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4448), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4448), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4448), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4448), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4448), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4448), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4448), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4448), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_NONNULL] = ACTIONS(4448), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4448), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4448), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4448), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4448), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4448), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4448), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4448), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4448), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4448), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4448), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4448), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4448), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4448), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4448), + [anon_sym_MOZ_RAII] = ACTIONS(4448), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4448), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4448), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4448), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4448), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4448), + }, + [STATE(1299)] = { + [sym_identifier] = ACTIONS(4448), + [aux_sym_preproc_def_token1] = ACTIONS(4448), + [aux_sym_preproc_if_token1] = ACTIONS(4448), + [aux_sym_preproc_if_token2] = ACTIONS(4448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4448), + [sym_preproc_directive] = ACTIONS(4448), + [anon_sym_LPAREN2] = ACTIONS(4450), + [anon_sym_TILDE] = ACTIONS(4450), + [anon_sym_STAR] = ACTIONS(4450), + [anon_sym_AMP_AMP] = ACTIONS(4450), + [anon_sym_AMP] = ACTIONS(4448), + [anon_sym_SEMI] = ACTIONS(4450), + [anon_sym___extension__] = ACTIONS(4448), + [anon_sym_typedef] = ACTIONS(4448), + [anon_sym_virtual] = ACTIONS(4448), + [anon_sym_extern] = ACTIONS(4448), + [anon_sym___attribute__] = ACTIONS(4448), + [anon_sym___attribute] = ACTIONS(4448), + [anon_sym_COLON_COLON] = ACTIONS(4450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4450), + [anon_sym___declspec] = ACTIONS(4448), + [anon_sym___based] = ACTIONS(4448), + [anon_sym_signed] = ACTIONS(4448), + [anon_sym_unsigned] = ACTIONS(4448), + [anon_sym_long] = ACTIONS(4448), + [anon_sym_short] = ACTIONS(4448), + [anon_sym_LBRACK] = ACTIONS(4448), + [anon_sym_static] = ACTIONS(4448), + [anon_sym_register] = ACTIONS(4448), + [anon_sym_inline] = ACTIONS(4448), + [anon_sym___inline] = ACTIONS(4448), + [anon_sym___inline__] = ACTIONS(4448), + [anon_sym___forceinline] = ACTIONS(4448), + [anon_sym_thread_local] = ACTIONS(4448), + [anon_sym___thread] = ACTIONS(4448), + [anon_sym_const] = ACTIONS(4448), + [anon_sym_constexpr] = ACTIONS(4448), + [anon_sym_volatile] = ACTIONS(4448), + [anon_sym_restrict] = ACTIONS(4448), + [anon_sym___restrict__] = ACTIONS(4448), + [anon_sym__Atomic] = ACTIONS(4448), + [anon_sym__Noreturn] = ACTIONS(4448), + [anon_sym_noreturn] = ACTIONS(4448), + [anon_sym__Nonnull] = ACTIONS(4448), + [anon_sym_mutable] = ACTIONS(4448), + [anon_sym_constinit] = ACTIONS(4448), + [anon_sym_consteval] = ACTIONS(4448), + [anon_sym_alignas] = ACTIONS(4448), + [anon_sym__Alignas] = ACTIONS(4448), + [sym_primitive_type] = ACTIONS(4448), + [anon_sym_enum] = ACTIONS(4448), + [anon_sym_class] = ACTIONS(4448), + [anon_sym_struct] = ACTIONS(4448), + [anon_sym_union] = ACTIONS(4448), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4448), + [anon_sym_decltype] = ACTIONS(4448), + [anon_sym_explicit] = ACTIONS(4448), + [anon_sym_typename] = ACTIONS(4448), + [anon_sym_template] = ACTIONS(4448), + [anon_sym_operator] = ACTIONS(4448), + [anon_sym_friend] = ACTIONS(4448), + [anon_sym_public] = ACTIONS(4448), + [anon_sym_private] = ACTIONS(4448), + [anon_sym_protected] = ACTIONS(4448), + [anon_sym_using] = ACTIONS(4448), + [anon_sym_static_assert] = ACTIONS(4448), + [sym_macro_statement] = ACTIONS(4448), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4448), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4448), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4448), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4448), + [anon_sym_MOZ_COLD] = ACTIONS(4448), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4448), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4448), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4448), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4448), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4448), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4448), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4448), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4448), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4448), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4448), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4448), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4448), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4448), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_NONNULL] = ACTIONS(4448), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4448), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4448), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4448), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4448), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4448), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4448), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4448), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4448), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4448), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4448), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4448), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4448), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4448), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4448), + [anon_sym_MOZ_RAII] = ACTIONS(4448), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4448), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4448), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4448), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4448), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4448), + }, + [STATE(1300)] = { + [sym_identifier] = ACTIONS(4448), + [aux_sym_preproc_def_token1] = ACTIONS(4448), + [aux_sym_preproc_if_token1] = ACTIONS(4448), + [aux_sym_preproc_if_token2] = ACTIONS(4448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4448), + [sym_preproc_directive] = ACTIONS(4448), + [anon_sym_LPAREN2] = ACTIONS(4450), + [anon_sym_TILDE] = ACTIONS(4450), + [anon_sym_STAR] = ACTIONS(4450), + [anon_sym_AMP_AMP] = ACTIONS(4450), + [anon_sym_AMP] = ACTIONS(4448), + [anon_sym_SEMI] = ACTIONS(4450), + [anon_sym___extension__] = ACTIONS(4448), + [anon_sym_typedef] = ACTIONS(4448), + [anon_sym_virtual] = ACTIONS(4448), + [anon_sym_extern] = ACTIONS(4448), + [anon_sym___attribute__] = ACTIONS(4448), + [anon_sym___attribute] = ACTIONS(4448), + [anon_sym_COLON_COLON] = ACTIONS(4450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4450), + [anon_sym___declspec] = ACTIONS(4448), + [anon_sym___based] = ACTIONS(4448), + [anon_sym_signed] = ACTIONS(4448), + [anon_sym_unsigned] = ACTIONS(4448), + [anon_sym_long] = ACTIONS(4448), + [anon_sym_short] = ACTIONS(4448), + [anon_sym_LBRACK] = ACTIONS(4448), + [anon_sym_static] = ACTIONS(4448), + [anon_sym_register] = ACTIONS(4448), + [anon_sym_inline] = ACTIONS(4448), + [anon_sym___inline] = ACTIONS(4448), + [anon_sym___inline__] = ACTIONS(4448), + [anon_sym___forceinline] = ACTIONS(4448), + [anon_sym_thread_local] = ACTIONS(4448), + [anon_sym___thread] = ACTIONS(4448), + [anon_sym_const] = ACTIONS(4448), + [anon_sym_constexpr] = ACTIONS(4448), + [anon_sym_volatile] = ACTIONS(4448), + [anon_sym_restrict] = ACTIONS(4448), + [anon_sym___restrict__] = ACTIONS(4448), + [anon_sym__Atomic] = ACTIONS(4448), + [anon_sym__Noreturn] = ACTIONS(4448), + [anon_sym_noreturn] = ACTIONS(4448), + [anon_sym__Nonnull] = ACTIONS(4448), + [anon_sym_mutable] = ACTIONS(4448), + [anon_sym_constinit] = ACTIONS(4448), + [anon_sym_consteval] = ACTIONS(4448), + [anon_sym_alignas] = ACTIONS(4448), + [anon_sym__Alignas] = ACTIONS(4448), + [sym_primitive_type] = ACTIONS(4448), + [anon_sym_enum] = ACTIONS(4448), + [anon_sym_class] = ACTIONS(4448), + [anon_sym_struct] = ACTIONS(4448), + [anon_sym_union] = ACTIONS(4448), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4448), + [anon_sym_decltype] = ACTIONS(4448), + [anon_sym_explicit] = ACTIONS(4448), + [anon_sym_typename] = ACTIONS(4448), + [anon_sym_template] = ACTIONS(4448), + [anon_sym_operator] = ACTIONS(4448), + [anon_sym_friend] = ACTIONS(4448), + [anon_sym_public] = ACTIONS(4448), + [anon_sym_private] = ACTIONS(4448), + [anon_sym_protected] = ACTIONS(4448), + [anon_sym_using] = ACTIONS(4448), + [anon_sym_static_assert] = ACTIONS(4448), + [sym_macro_statement] = ACTIONS(4448), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4448), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4448), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4448), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4448), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4448), + [anon_sym_MOZ_COLD] = ACTIONS(4448), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4448), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4448), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4448), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4448), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4448), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4448), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4448), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4448), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4448), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4448), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4448), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4448), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4448), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4448), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4448), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4448), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_NONNULL] = ACTIONS(4448), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4448), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4448), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4448), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4448), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_NORETURN] = ACTIONS(4448), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4448), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4448), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4448), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4448), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4448), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4448), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4448), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4448), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4448), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4448), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4448), + [anon_sym_MOZ_RAII] = ACTIONS(4448), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4448), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4448), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4448), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4448), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4448), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4448), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4448), + }, + [STATE(1301)] = { + [sym_identifier] = ACTIONS(2291), + [aux_sym_preproc_def_token1] = ACTIONS(2291), + [aux_sym_preproc_if_token1] = ACTIONS(2291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2291), + [sym_preproc_directive] = ACTIONS(2291), + [anon_sym_LPAREN2] = ACTIONS(2293), + [anon_sym_TILDE] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(2293), + [anon_sym_AMP_AMP] = ACTIONS(2293), + [anon_sym_AMP] = ACTIONS(2291), + [anon_sym_SEMI] = ACTIONS(2293), + [anon_sym___extension__] = ACTIONS(2291), + [anon_sym_typedef] = ACTIONS(2291), + [anon_sym_virtual] = ACTIONS(2291), + [anon_sym_extern] = ACTIONS(2291), + [anon_sym___attribute__] = ACTIONS(2291), + [anon_sym___attribute] = ACTIONS(2291), + [anon_sym_COLON_COLON] = ACTIONS(2293), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2293), + [anon_sym___declspec] = ACTIONS(2291), + [anon_sym___based] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2293), + [anon_sym_signed] = ACTIONS(2291), + [anon_sym_unsigned] = ACTIONS(2291), + [anon_sym_long] = ACTIONS(2291), + [anon_sym_short] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_static] = ACTIONS(2291), + [anon_sym_register] = ACTIONS(2291), + [anon_sym_inline] = ACTIONS(2291), + [anon_sym___inline] = ACTIONS(2291), + [anon_sym___inline__] = ACTIONS(2291), + [anon_sym___forceinline] = ACTIONS(2291), + [anon_sym_thread_local] = ACTIONS(2291), + [anon_sym___thread] = ACTIONS(2291), + [anon_sym_const] = ACTIONS(2291), + [anon_sym_constexpr] = ACTIONS(2291), + [anon_sym_volatile] = ACTIONS(2291), + [anon_sym_restrict] = ACTIONS(2291), + [anon_sym___restrict__] = ACTIONS(2291), + [anon_sym__Atomic] = ACTIONS(2291), + [anon_sym__Noreturn] = ACTIONS(2291), + [anon_sym_noreturn] = ACTIONS(2291), + [anon_sym__Nonnull] = ACTIONS(2291), + [anon_sym_mutable] = ACTIONS(2291), + [anon_sym_constinit] = ACTIONS(2291), + [anon_sym_consteval] = ACTIONS(2291), + [anon_sym_alignas] = ACTIONS(2291), + [anon_sym__Alignas] = ACTIONS(2291), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_enum] = ACTIONS(2291), + [anon_sym_class] = ACTIONS(2291), + [anon_sym_struct] = ACTIONS(2291), + [anon_sym_union] = ACTIONS(2291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2291), + [anon_sym_decltype] = ACTIONS(2291), + [anon_sym_explicit] = ACTIONS(2291), + [anon_sym_typename] = ACTIONS(2291), + [anon_sym_template] = ACTIONS(2291), + [anon_sym_operator] = ACTIONS(2291), + [anon_sym_friend] = ACTIONS(2291), + [anon_sym_public] = ACTIONS(2291), + [anon_sym_private] = ACTIONS(2291), + [anon_sym_protected] = ACTIONS(2291), + [anon_sym_using] = ACTIONS(2291), + [anon_sym_static_assert] = ACTIONS(2291), + [sym_macro_statement] = ACTIONS(2291), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2291), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2291), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2291), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2291), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2291), + [anon_sym_MOZ_COLD] = ACTIONS(2291), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2291), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2291), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2291), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2291), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2291), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2291), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2291), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2291), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2291), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2291), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2291), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2291), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2291), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2291), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2291), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2291), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_NONNULL] = ACTIONS(2291), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2291), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2291), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2291), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2291), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_NORETURN] = ACTIONS(2291), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2291), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2291), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2291), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2291), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2291), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2291), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2291), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2291), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2291), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2291), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2291), + [anon_sym_MOZ_RAII] = ACTIONS(2291), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2291), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2291), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2291), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2291), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2291), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2291), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2291), + }, + [STATE(1302)] = { + [sym_identifier] = ACTIONS(4440), + [aux_sym_preproc_def_token1] = ACTIONS(4440), + [aux_sym_preproc_if_token1] = ACTIONS(4440), + [aux_sym_preproc_if_token2] = ACTIONS(4440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4440), + [sym_preproc_directive] = ACTIONS(4440), + [anon_sym_LPAREN2] = ACTIONS(4442), + [anon_sym_TILDE] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [anon_sym_AMP_AMP] = ACTIONS(4442), + [anon_sym_AMP] = ACTIONS(4440), + [anon_sym_SEMI] = ACTIONS(4442), + [anon_sym___extension__] = ACTIONS(4440), + [anon_sym_typedef] = ACTIONS(4440), + [anon_sym_virtual] = ACTIONS(4440), + [anon_sym_extern] = ACTIONS(4440), + [anon_sym___attribute__] = ACTIONS(4440), + [anon_sym___attribute] = ACTIONS(4440), + [anon_sym_COLON_COLON] = ACTIONS(4442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4442), + [anon_sym___declspec] = ACTIONS(4440), + [anon_sym___based] = ACTIONS(4440), + [anon_sym_signed] = ACTIONS(4440), + [anon_sym_unsigned] = ACTIONS(4440), + [anon_sym_long] = ACTIONS(4440), + [anon_sym_short] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(4440), + [anon_sym_static] = ACTIONS(4440), + [anon_sym_register] = ACTIONS(4440), + [anon_sym_inline] = ACTIONS(4440), + [anon_sym___inline] = ACTIONS(4440), + [anon_sym___inline__] = ACTIONS(4440), + [anon_sym___forceinline] = ACTIONS(4440), + [anon_sym_thread_local] = ACTIONS(4440), + [anon_sym___thread] = ACTIONS(4440), + [anon_sym_const] = ACTIONS(4440), + [anon_sym_constexpr] = ACTIONS(4440), + [anon_sym_volatile] = ACTIONS(4440), + [anon_sym_restrict] = ACTIONS(4440), + [anon_sym___restrict__] = ACTIONS(4440), + [anon_sym__Atomic] = ACTIONS(4440), + [anon_sym__Noreturn] = ACTIONS(4440), + [anon_sym_noreturn] = ACTIONS(4440), + [anon_sym__Nonnull] = ACTIONS(4440), + [anon_sym_mutable] = ACTIONS(4440), + [anon_sym_constinit] = ACTIONS(4440), + [anon_sym_consteval] = ACTIONS(4440), + [anon_sym_alignas] = ACTIONS(4440), + [anon_sym__Alignas] = ACTIONS(4440), + [sym_primitive_type] = ACTIONS(4440), + [anon_sym_enum] = ACTIONS(4440), + [anon_sym_class] = ACTIONS(4440), + [anon_sym_struct] = ACTIONS(4440), + [anon_sym_union] = ACTIONS(4440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4440), + [anon_sym_decltype] = ACTIONS(4440), + [anon_sym_explicit] = ACTIONS(4440), + [anon_sym_typename] = ACTIONS(4440), + [anon_sym_template] = ACTIONS(4440), + [anon_sym_operator] = ACTIONS(4440), + [anon_sym_friend] = ACTIONS(4440), + [anon_sym_public] = ACTIONS(4440), + [anon_sym_private] = ACTIONS(4440), + [anon_sym_protected] = ACTIONS(4440), + [anon_sym_using] = ACTIONS(4440), + [anon_sym_static_assert] = ACTIONS(4440), + [sym_macro_statement] = ACTIONS(4440), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4440), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4440), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4440), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4440), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4440), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4440), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4440), + [anon_sym_MOZ_COLD] = ACTIONS(4440), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4440), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4440), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4440), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4440), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4440), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4440), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4440), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4440), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4440), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4440), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4440), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4440), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4440), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4440), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4440), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4440), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4440), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4440), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4440), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4440), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_NONNULL] = ACTIONS(4440), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4440), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4440), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4440), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4440), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4440), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_NORETURN] = ACTIONS(4440), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4440), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4440), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4440), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4440), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4440), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4440), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4440), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4440), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4440), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4440), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4440), + [anon_sym_MOZ_RAII] = ACTIONS(4440), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4440), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4440), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4440), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4440), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4440), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4440), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4440), + }, + [STATE(1303)] = { + [sym_identifier] = ACTIONS(2210), + [aux_sym_preproc_def_token1] = ACTIONS(2210), + [aux_sym_preproc_if_token1] = ACTIONS(2210), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2210), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2210), + [sym_preproc_directive] = ACTIONS(2210), + [anon_sym_LPAREN2] = ACTIONS(2212), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2212), + [anon_sym_AMP_AMP] = ACTIONS(2212), + [anon_sym_AMP] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym___extension__] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_virtual] = ACTIONS(2210), + [anon_sym_extern] = ACTIONS(2210), + [anon_sym___attribute__] = ACTIONS(2210), + [anon_sym___attribute] = ACTIONS(2210), + [anon_sym_COLON_COLON] = ACTIONS(2212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2212), + [anon_sym___declspec] = ACTIONS(2210), + [anon_sym___based] = ACTIONS(2210), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_signed] = ACTIONS(2210), + [anon_sym_unsigned] = ACTIONS(2210), + [anon_sym_long] = ACTIONS(2210), + [anon_sym_short] = ACTIONS(2210), + [anon_sym_LBRACK] = ACTIONS(2210), + [anon_sym_static] = ACTIONS(2210), + [anon_sym_register] = ACTIONS(2210), + [anon_sym_inline] = ACTIONS(2210), + [anon_sym___inline] = ACTIONS(2210), + [anon_sym___inline__] = ACTIONS(2210), + [anon_sym___forceinline] = ACTIONS(2210), + [anon_sym_thread_local] = ACTIONS(2210), + [anon_sym___thread] = ACTIONS(2210), + [anon_sym_const] = ACTIONS(2210), + [anon_sym_constexpr] = ACTIONS(2210), + [anon_sym_volatile] = ACTIONS(2210), + [anon_sym_restrict] = ACTIONS(2210), + [anon_sym___restrict__] = ACTIONS(2210), + [anon_sym__Atomic] = ACTIONS(2210), + [anon_sym__Noreturn] = ACTIONS(2210), + [anon_sym_noreturn] = ACTIONS(2210), + [anon_sym__Nonnull] = ACTIONS(2210), + [anon_sym_mutable] = ACTIONS(2210), + [anon_sym_constinit] = ACTIONS(2210), + [anon_sym_consteval] = ACTIONS(2210), + [anon_sym_alignas] = ACTIONS(2210), + [anon_sym__Alignas] = ACTIONS(2210), + [sym_primitive_type] = ACTIONS(2210), + [anon_sym_enum] = ACTIONS(2210), + [anon_sym_class] = ACTIONS(2210), + [anon_sym_struct] = ACTIONS(2210), + [anon_sym_union] = ACTIONS(2210), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2210), + [anon_sym_decltype] = ACTIONS(2210), + [anon_sym_explicit] = ACTIONS(2210), + [anon_sym_typename] = ACTIONS(2210), + [anon_sym_template] = ACTIONS(2210), + [anon_sym_operator] = ACTIONS(2210), + [anon_sym_friend] = ACTIONS(2210), + [anon_sym_public] = ACTIONS(2210), + [anon_sym_private] = ACTIONS(2210), + [anon_sym_protected] = ACTIONS(2210), + [anon_sym_using] = ACTIONS(2210), + [anon_sym_static_assert] = ACTIONS(2210), + [sym_macro_statement] = ACTIONS(2210), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2210), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2210), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2210), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2210), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2210), + [anon_sym_MOZ_COLD] = ACTIONS(2210), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2210), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2210), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2210), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2210), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2210), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2210), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2210), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2210), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2210), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2210), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2210), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2210), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2210), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2210), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2210), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2210), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_NONNULL] = ACTIONS(2210), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2210), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2210), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2210), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2210), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_NORETURN] = ACTIONS(2210), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2210), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2210), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2210), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2210), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2210), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2210), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2210), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2210), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2210), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2210), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2210), + [anon_sym_MOZ_RAII] = ACTIONS(2210), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2210), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2210), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2210), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2210), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2210), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2210), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2210), + }, + [STATE(1304)] = { + [sym_template_argument_list] = STATE(917), + [sym_identifier] = ACTIONS(3272), + [anon_sym_LPAREN2] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3279), + [anon_sym_PIPE_PIPE] = ACTIONS(3279), + [anon_sym_AMP_AMP] = ACTIONS(3279), + [anon_sym_AMP] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym___extension__] = ACTIONS(3272), + [anon_sym_virtual] = ACTIONS(3272), + [anon_sym_extern] = ACTIONS(3272), + [anon_sym___attribute__] = ACTIONS(3272), + [anon_sym___attribute] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3279), + [anon_sym___declspec] = ACTIONS(3272), + [anon_sym___based] = ACTIONS(3272), + [anon_sym___cdecl] = ACTIONS(3272), + [anon_sym___clrcall] = ACTIONS(3272), + [anon_sym___stdcall] = ACTIONS(3272), + [anon_sym___fastcall] = ACTIONS(3272), + [anon_sym___thiscall] = ACTIONS(3272), + [anon_sym___vectorcall] = ACTIONS(3272), + [anon_sym_signed] = ACTIONS(3272), + [anon_sym_unsigned] = ACTIONS(3272), + [anon_sym_long] = ACTIONS(3272), + [anon_sym_short] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_register] = ACTIONS(3272), + [anon_sym_inline] = ACTIONS(3272), + [anon_sym___inline] = ACTIONS(3272), + [anon_sym___inline__] = ACTIONS(3272), + [anon_sym___forceinline] = ACTIONS(3272), + [anon_sym_thread_local] = ACTIONS(3272), + [anon_sym___thread] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_constexpr] = ACTIONS(3272), + [anon_sym_volatile] = ACTIONS(3272), + [anon_sym_restrict] = ACTIONS(3272), + [anon_sym___restrict__] = ACTIONS(3272), + [anon_sym__Atomic] = ACTIONS(3272), + [anon_sym__Noreturn] = ACTIONS(3272), + [anon_sym_noreturn] = ACTIONS(3272), + [anon_sym__Nonnull] = ACTIONS(3272), + [anon_sym_mutable] = ACTIONS(3272), + [anon_sym_constinit] = ACTIONS(3272), + [anon_sym_consteval] = ACTIONS(3272), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_primitive_type] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_struct] = ACTIONS(3272), + [anon_sym_union] = ACTIONS(3272), + [anon_sym_or] = ACTIONS(3272), + [anon_sym_and] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3272), + [anon_sym_decltype] = ACTIONS(3272), + [anon_sym_explicit] = ACTIONS(3272), + [anon_sym_typename] = ACTIONS(3272), + [anon_sym_template] = ACTIONS(3272), + [anon_sym_operator] = ACTIONS(3272), + [anon_sym_friend] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_concept] = ACTIONS(3272), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3272), + [anon_sym_MOZ_COLD] = ACTIONS(3272), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3272), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3272), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3272), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3272), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3272), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3272), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3272), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3272), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3272), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3272), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3272), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3272), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_RAII] = ACTIONS(3272), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3272), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3272), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3272), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3272), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3272), + }, + [STATE(1305)] = { + [sym_identifier] = ACTIONS(2624), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2626), + [anon_sym_COMMA] = ACTIONS(2626), + [anon_sym_RPAREN] = ACTIONS(2626), + [anon_sym_LPAREN2] = ACTIONS(2626), + [anon_sym_TILDE] = ACTIONS(2626), + [anon_sym_STAR] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2626), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_SEMI] = ACTIONS(2626), + [anon_sym___extension__] = ACTIONS(2624), + [anon_sym_virtual] = ACTIONS(2624), + [anon_sym_extern] = ACTIONS(2624), + [anon_sym___attribute__] = ACTIONS(2624), + [anon_sym___attribute] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2626), + [anon_sym___declspec] = ACTIONS(2624), + [anon_sym___based] = ACTIONS(2624), + [anon_sym___cdecl] = ACTIONS(2624), + [anon_sym___clrcall] = ACTIONS(2624), + [anon_sym___stdcall] = ACTIONS(2624), + [anon_sym___fastcall] = ACTIONS(2624), + [anon_sym___thiscall] = ACTIONS(2624), + [anon_sym___vectorcall] = ACTIONS(2624), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_static] = ACTIONS(2624), + [anon_sym_EQ] = ACTIONS(2626), + [anon_sym_register] = ACTIONS(2624), + [anon_sym_inline] = ACTIONS(2624), + [anon_sym___inline] = ACTIONS(2624), + [anon_sym___inline__] = ACTIONS(2624), + [anon_sym___forceinline] = ACTIONS(2624), + [anon_sym_thread_local] = ACTIONS(2624), + [anon_sym___thread] = ACTIONS(2624), + [anon_sym_const] = ACTIONS(2624), + [anon_sym_constexpr] = ACTIONS(2624), + [anon_sym_volatile] = ACTIONS(2624), + [anon_sym_restrict] = ACTIONS(2624), + [anon_sym___restrict__] = ACTIONS(2624), + [anon_sym__Atomic] = ACTIONS(2624), + [anon_sym__Noreturn] = ACTIONS(2624), + [anon_sym_noreturn] = ACTIONS(2624), + [anon_sym__Nonnull] = ACTIONS(2624), + [anon_sym_mutable] = ACTIONS(2624), + [anon_sym_constinit] = ACTIONS(2624), + [anon_sym_consteval] = ACTIONS(2624), + [anon_sym_alignas] = ACTIONS(2624), + [anon_sym__Alignas] = ACTIONS(2624), + [anon_sym_COLON] = ACTIONS(2624), + [anon_sym_asm] = ACTIONS(2624), + [anon_sym___asm__] = ACTIONS(2624), + [anon_sym___asm] = ACTIONS(2624), + [anon_sym_DASH_GT] = ACTIONS(2626), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2624), + [anon_sym_final] = ACTIONS(2624), + [anon_sym_override] = ACTIONS(2624), + [anon_sym_explicit] = ACTIONS(2624), + [anon_sym_template] = ACTIONS(2624), + [anon_sym_GT2] = ACTIONS(2626), + [anon_sym_operator] = ACTIONS(2624), + [anon_sym_try] = ACTIONS(2624), + [anon_sym_public] = ACTIONS(2624), + [anon_sym_private] = ACTIONS(2624), + [anon_sym_protected] = ACTIONS(2624), + [anon_sym_requires] = ACTIONS(2624), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2624), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2624), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2624), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2624), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2624), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2624), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2624), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2624), + [anon_sym_MOZ_COLD] = ACTIONS(2624), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2624), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2624), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2624), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2624), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2624), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2624), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2624), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2624), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2624), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2624), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2624), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2624), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2624), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2624), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2624), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2624), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2624), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2624), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2624), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2624), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_NONNULL] = ACTIONS(2624), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2624), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2624), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2624), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2624), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2624), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_NORETURN] = ACTIONS(2624), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2624), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2624), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2624), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2624), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2624), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2624), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2624), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2624), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2624), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2624), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2624), + [anon_sym_MOZ_RAII] = ACTIONS(2624), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2624), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2624), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2624), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2624), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2624), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2624), + }, + [STATE(1306)] = { + [sym_identifier] = ACTIONS(2628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2630), + [anon_sym_COMMA] = ACTIONS(2630), + [anon_sym_RPAREN] = ACTIONS(2630), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_AMP_AMP] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym___extension__] = ACTIONS(2628), + [anon_sym_virtual] = ACTIONS(2628), + [anon_sym_extern] = ACTIONS(2628), + [anon_sym___attribute__] = ACTIONS(2628), + [anon_sym___attribute] = ACTIONS(2628), + [anon_sym_COLON_COLON] = ACTIONS(2630), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2630), + [anon_sym___declspec] = ACTIONS(2628), + [anon_sym___based] = ACTIONS(2628), + [anon_sym___cdecl] = ACTIONS(2628), + [anon_sym___clrcall] = ACTIONS(2628), + [anon_sym___stdcall] = ACTIONS(2628), + [anon_sym___fastcall] = ACTIONS(2628), + [anon_sym___thiscall] = ACTIONS(2628), + [anon_sym___vectorcall] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(2630), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_static] = ACTIONS(2628), + [anon_sym_EQ] = ACTIONS(2630), + [anon_sym_register] = ACTIONS(2628), + [anon_sym_inline] = ACTIONS(2628), + [anon_sym___inline] = ACTIONS(2628), + [anon_sym___inline__] = ACTIONS(2628), + [anon_sym___forceinline] = ACTIONS(2628), + [anon_sym_thread_local] = ACTIONS(2628), + [anon_sym___thread] = ACTIONS(2628), + [anon_sym_const] = ACTIONS(2628), + [anon_sym_constexpr] = ACTIONS(2628), + [anon_sym_volatile] = ACTIONS(2628), + [anon_sym_restrict] = ACTIONS(2628), + [anon_sym___restrict__] = ACTIONS(2628), + [anon_sym__Atomic] = ACTIONS(2628), + [anon_sym__Noreturn] = ACTIONS(2628), + [anon_sym_noreturn] = ACTIONS(2628), + [anon_sym__Nonnull] = ACTIONS(2628), + [anon_sym_mutable] = ACTIONS(2628), + [anon_sym_constinit] = ACTIONS(2628), + [anon_sym_consteval] = ACTIONS(2628), + [anon_sym_alignas] = ACTIONS(2628), + [anon_sym__Alignas] = ACTIONS(2628), + [anon_sym_COLON] = ACTIONS(2628), + [anon_sym_asm] = ACTIONS(2628), + [anon_sym___asm__] = ACTIONS(2628), + [anon_sym___asm] = ACTIONS(2628), + [anon_sym_DASH_GT] = ACTIONS(2630), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2628), + [anon_sym_final] = ACTIONS(2628), + [anon_sym_override] = ACTIONS(2628), + [anon_sym_explicit] = ACTIONS(2628), + [anon_sym_template] = ACTIONS(2628), + [anon_sym_GT2] = ACTIONS(2630), + [anon_sym_operator] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2628), + [anon_sym_public] = ACTIONS(2628), + [anon_sym_private] = ACTIONS(2628), + [anon_sym_protected] = ACTIONS(2628), + [anon_sym_requires] = ACTIONS(2628), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2628), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2628), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2628), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2628), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2628), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2628), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2628), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2628), + [anon_sym_MOZ_COLD] = ACTIONS(2628), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2628), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2628), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2628), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2628), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2628), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2628), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2628), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2628), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2628), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2628), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2628), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2628), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2628), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2628), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2628), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2628), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2628), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2628), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2628), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2628), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_NONNULL] = ACTIONS(2628), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2628), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2628), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2628), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2628), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2628), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_NORETURN] = ACTIONS(2628), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2628), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2628), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2628), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2628), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2628), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2628), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2628), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2628), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2628), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2628), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2628), + [anon_sym_MOZ_RAII] = ACTIONS(2628), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2628), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2628), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2628), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2628), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2628), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2628), + }, + [STATE(1307)] = { + [sym_template_argument_list] = STATE(917), + [sym_identifier] = ACTIONS(4529), + [anon_sym_LPAREN2] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym___extension__] = ACTIONS(4529), + [anon_sym_virtual] = ACTIONS(4529), + [anon_sym_extern] = ACTIONS(4529), + [anon_sym___attribute__] = ACTIONS(4529), + [anon_sym___attribute] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3113), + [anon_sym___declspec] = ACTIONS(4529), + [anon_sym___based] = ACTIONS(4529), + [anon_sym___cdecl] = ACTIONS(4529), + [anon_sym___clrcall] = ACTIONS(4529), + [anon_sym___stdcall] = ACTIONS(4529), + [anon_sym___fastcall] = ACTIONS(4529), + [anon_sym___thiscall] = ACTIONS(4529), + [anon_sym___vectorcall] = ACTIONS(4529), + [anon_sym_signed] = ACTIONS(4529), + [anon_sym_unsigned] = ACTIONS(4529), + [anon_sym_long] = ACTIONS(4529), + [anon_sym_short] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_static] = ACTIONS(4529), + [anon_sym_register] = ACTIONS(4529), + [anon_sym_inline] = ACTIONS(4529), + [anon_sym___inline] = ACTIONS(4529), + [anon_sym___inline__] = ACTIONS(4529), + [anon_sym___forceinline] = ACTIONS(4529), + [anon_sym_thread_local] = ACTIONS(4529), + [anon_sym___thread] = ACTIONS(4529), + [anon_sym_const] = ACTIONS(4529), + [anon_sym_constexpr] = ACTIONS(4529), + [anon_sym_volatile] = ACTIONS(4529), + [anon_sym_restrict] = ACTIONS(4529), + [anon_sym___restrict__] = ACTIONS(4529), + [anon_sym__Atomic] = ACTIONS(4529), + [anon_sym__Noreturn] = ACTIONS(4529), + [anon_sym_noreturn] = ACTIONS(4529), + [anon_sym__Nonnull] = ACTIONS(4529), + [anon_sym_mutable] = ACTIONS(4529), + [anon_sym_constinit] = ACTIONS(4529), + [anon_sym_consteval] = ACTIONS(4529), + [anon_sym_alignas] = ACTIONS(4529), + [anon_sym__Alignas] = ACTIONS(4529), + [sym_primitive_type] = ACTIONS(4529), + [anon_sym_enum] = ACTIONS(4529), + [anon_sym_class] = ACTIONS(4529), + [anon_sym_struct] = ACTIONS(4529), + [anon_sym_union] = ACTIONS(4529), + [anon_sym_or] = ACTIONS(4529), + [anon_sym_and] = ACTIONS(4529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4529), + [anon_sym_decltype] = ACTIONS(4529), + [anon_sym_explicit] = ACTIONS(4529), + [anon_sym_typename] = ACTIONS(4529), + [anon_sym_template] = ACTIONS(4529), + [anon_sym_operator] = ACTIONS(4529), + [anon_sym_friend] = ACTIONS(4529), + [anon_sym_using] = ACTIONS(4529), + [anon_sym_concept] = ACTIONS(4529), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4529), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4529), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4529), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4529), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4529), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4529), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4529), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4529), + [anon_sym_MOZ_COLD] = ACTIONS(4529), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4529), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4529), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4529), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4529), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4529), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4529), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4529), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4529), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4529), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4529), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4529), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4529), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4529), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4529), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4529), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4529), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4529), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4529), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4529), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4529), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_NONNULL] = ACTIONS(4529), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4529), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4529), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4529), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4529), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4529), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_NORETURN] = ACTIONS(4529), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4529), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4529), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4529), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4529), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4529), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4529), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4529), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4529), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4529), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4529), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4529), + [anon_sym_MOZ_RAII] = ACTIONS(4529), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4529), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4529), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4529), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4529), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4529), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4529), + }, + [STATE(1308)] = { + [sym_identifier] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_TILDE] = ACTIONS(4533), + [anon_sym_STAR] = ACTIONS(4533), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4533), + [anon_sym___extension__] = ACTIONS(4531), + [anon_sym_virtual] = ACTIONS(4531), + [anon_sym_extern] = ACTIONS(4531), + [anon_sym___attribute__] = ACTIONS(4531), + [anon_sym___attribute] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4533), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4533), + [anon_sym___declspec] = ACTIONS(4531), + [anon_sym___based] = ACTIONS(4531), + [anon_sym___cdecl] = ACTIONS(4531), + [anon_sym___clrcall] = ACTIONS(4531), + [anon_sym___stdcall] = ACTIONS(4531), + [anon_sym___fastcall] = ACTIONS(4531), + [anon_sym___thiscall] = ACTIONS(4531), + [anon_sym___vectorcall] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_static] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4533), + [anon_sym_register] = ACTIONS(4531), + [anon_sym_inline] = ACTIONS(4531), + [anon_sym___inline] = ACTIONS(4531), + [anon_sym___inline__] = ACTIONS(4531), + [anon_sym___forceinline] = ACTIONS(4531), + [anon_sym_thread_local] = ACTIONS(4531), + [anon_sym___thread] = ACTIONS(4531), + [anon_sym_const] = ACTIONS(4531), + [anon_sym_constexpr] = ACTIONS(4531), + [anon_sym_volatile] = ACTIONS(4531), + [anon_sym_restrict] = ACTIONS(4531), + [anon_sym___restrict__] = ACTIONS(4531), + [anon_sym__Atomic] = ACTIONS(4531), + [anon_sym__Noreturn] = ACTIONS(4531), + [anon_sym_noreturn] = ACTIONS(4531), + [anon_sym__Nonnull] = ACTIONS(4531), + [anon_sym_mutable] = ACTIONS(4531), + [anon_sym_constinit] = ACTIONS(4531), + [anon_sym_consteval] = ACTIONS(4531), + [anon_sym_alignas] = ACTIONS(4531), + [anon_sym__Alignas] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_or] = ACTIONS(4531), + [anon_sym_and] = ACTIONS(4531), + [anon_sym_asm] = ACTIONS(4531), + [anon_sym___asm__] = ACTIONS(4531), + [anon_sym___asm] = ACTIONS(4531), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4531), + [anon_sym_decltype] = ACTIONS(4531), + [anon_sym_final] = ACTIONS(4531), + [anon_sym_override] = ACTIONS(4531), + [anon_sym_template] = ACTIONS(4531), + [anon_sym_GT2] = ACTIONS(4533), + [anon_sym_operator] = ACTIONS(4531), + [anon_sym_try] = ACTIONS(4531), + [anon_sym_requires] = ACTIONS(4531), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4531), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4531), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4531), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4531), + [anon_sym_MOZ_COLD] = ACTIONS(4531), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4531), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4531), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4531), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4531), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4531), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4531), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4531), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4531), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4531), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4531), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4531), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4531), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4531), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_NONNULL] = ACTIONS(4531), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4531), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4531), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4531), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4531), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4531), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4531), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4531), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4531), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4531), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4531), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4531), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4531), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4531), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4531), + [anon_sym_MOZ_RAII] = ACTIONS(4531), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4531), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4531), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4531), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4531), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4531), + }, + [STATE(1309)] = { + [sym_identifier] = ACTIONS(4535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(4537), + [anon_sym_RPAREN] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_TILDE] = ACTIONS(4537), + [anon_sym_STAR] = ACTIONS(4537), + [anon_sym_PIPE_PIPE] = ACTIONS(4537), + [anon_sym_AMP_AMP] = ACTIONS(4537), + [anon_sym_AMP] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4537), + [anon_sym___extension__] = ACTIONS(4535), + [anon_sym_virtual] = ACTIONS(4535), + [anon_sym_extern] = ACTIONS(4535), + [anon_sym___attribute__] = ACTIONS(4535), + [anon_sym___attribute] = ACTIONS(4535), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4537), + [anon_sym___declspec] = ACTIONS(4535), + [anon_sym___based] = ACTIONS(4535), + [anon_sym___cdecl] = ACTIONS(4535), + [anon_sym___clrcall] = ACTIONS(4535), + [anon_sym___stdcall] = ACTIONS(4535), + [anon_sym___fastcall] = ACTIONS(4535), + [anon_sym___thiscall] = ACTIONS(4535), + [anon_sym___vectorcall] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(4535), + [anon_sym_static] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(4537), + [anon_sym_register] = ACTIONS(4535), + [anon_sym_inline] = ACTIONS(4535), + [anon_sym___inline] = ACTIONS(4535), + [anon_sym___inline__] = ACTIONS(4535), + [anon_sym___forceinline] = ACTIONS(4535), + [anon_sym_thread_local] = ACTIONS(4535), + [anon_sym___thread] = ACTIONS(4535), + [anon_sym_const] = ACTIONS(4535), + [anon_sym_constexpr] = ACTIONS(4535), + [anon_sym_volatile] = ACTIONS(4535), + [anon_sym_restrict] = ACTIONS(4535), + [anon_sym___restrict__] = ACTIONS(4535), + [anon_sym__Atomic] = ACTIONS(4535), + [anon_sym__Noreturn] = ACTIONS(4535), + [anon_sym_noreturn] = ACTIONS(4535), + [anon_sym__Nonnull] = ACTIONS(4535), + [anon_sym_mutable] = ACTIONS(4535), + [anon_sym_constinit] = ACTIONS(4535), + [anon_sym_consteval] = ACTIONS(4535), + [anon_sym_alignas] = ACTIONS(4535), + [anon_sym__Alignas] = ACTIONS(4535), + [anon_sym_COLON] = ACTIONS(4535), + [anon_sym_or] = ACTIONS(4535), + [anon_sym_and] = ACTIONS(4535), + [anon_sym_asm] = ACTIONS(4535), + [anon_sym___asm__] = ACTIONS(4535), + [anon_sym___asm] = ACTIONS(4535), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4535), + [anon_sym_decltype] = ACTIONS(4535), + [anon_sym_final] = ACTIONS(4535), + [anon_sym_override] = ACTIONS(4535), + [anon_sym_template] = ACTIONS(4535), + [anon_sym_GT2] = ACTIONS(4537), + [anon_sym_operator] = ACTIONS(4535), + [anon_sym_try] = ACTIONS(4535), + [anon_sym_requires] = ACTIONS(4535), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4535), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4535), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4535), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4535), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4535), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4535), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4535), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4535), + [anon_sym_MOZ_COLD] = ACTIONS(4535), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4535), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4535), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4535), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4535), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4535), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4535), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4535), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4535), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4535), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4535), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4535), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4535), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4535), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4535), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4535), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4535), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4535), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4535), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4535), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4535), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4535), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4535), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4535), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4535), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4535), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4535), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4535), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4535), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4535), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4535), + [anon_sym_MOZ_NONNULL] = ACTIONS(4535), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4535), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4535), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4535), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4535), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4535), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4535), + [anon_sym_MOZ_NORETURN] = ACTIONS(4535), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4535), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4535), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4535), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4535), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4535), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4535), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4535), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4535), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4535), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4535), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4535), + [anon_sym_MOZ_RAII] = ACTIONS(4535), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4535), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4535), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4535), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4535), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4535), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4535), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4535), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4535), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4535), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4535), + }, + [STATE(1310)] = { + [sym_identifier] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_TILDE] = ACTIONS(4533), + [anon_sym_STAR] = ACTIONS(4533), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4533), + [anon_sym___extension__] = ACTIONS(4531), + [anon_sym_virtual] = ACTIONS(4531), + [anon_sym_extern] = ACTIONS(4531), + [anon_sym___attribute__] = ACTIONS(4531), + [anon_sym___attribute] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4533), + [anon_sym___declspec] = ACTIONS(4531), + [anon_sym___based] = ACTIONS(4531), + [anon_sym___cdecl] = ACTIONS(4531), + [anon_sym___clrcall] = ACTIONS(4531), + [anon_sym___stdcall] = ACTIONS(4531), + [anon_sym___fastcall] = ACTIONS(4531), + [anon_sym___thiscall] = ACTIONS(4531), + [anon_sym___vectorcall] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_static] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4533), + [anon_sym_register] = ACTIONS(4531), + [anon_sym_inline] = ACTIONS(4531), + [anon_sym___inline] = ACTIONS(4531), + [anon_sym___inline__] = ACTIONS(4531), + [anon_sym___forceinline] = ACTIONS(4531), + [anon_sym_thread_local] = ACTIONS(4531), + [anon_sym___thread] = ACTIONS(4531), + [anon_sym_const] = ACTIONS(4531), + [anon_sym_constexpr] = ACTIONS(4531), + [anon_sym_volatile] = ACTIONS(4531), + [anon_sym_restrict] = ACTIONS(4531), + [anon_sym___restrict__] = ACTIONS(4531), + [anon_sym__Atomic] = ACTIONS(4531), + [anon_sym__Noreturn] = ACTIONS(4531), + [anon_sym_noreturn] = ACTIONS(4531), + [anon_sym__Nonnull] = ACTIONS(4531), + [anon_sym_mutable] = ACTIONS(4531), + [anon_sym_constinit] = ACTIONS(4531), + [anon_sym_consteval] = ACTIONS(4531), + [anon_sym_alignas] = ACTIONS(4531), + [anon_sym__Alignas] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_or] = ACTIONS(4531), + [anon_sym_and] = ACTIONS(4531), + [anon_sym_asm] = ACTIONS(4531), + [anon_sym___asm__] = ACTIONS(4531), + [anon_sym___asm] = ACTIONS(4531), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4531), + [anon_sym_decltype] = ACTIONS(4531), + [anon_sym_final] = ACTIONS(4531), + [anon_sym_override] = ACTIONS(4531), + [anon_sym_template] = ACTIONS(4531), + [anon_sym_GT2] = ACTIONS(4533), + [anon_sym_operator] = ACTIONS(4531), + [anon_sym_try] = ACTIONS(4531), + [anon_sym_requires] = ACTIONS(4531), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4531), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4531), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4531), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4531), + [anon_sym_MOZ_COLD] = ACTIONS(4531), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4531), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4531), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4531), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4531), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4531), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4531), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4531), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4531), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4531), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4531), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4531), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4531), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4531), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_NONNULL] = ACTIONS(4531), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4531), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4531), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4531), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4531), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4531), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4531), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4531), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4531), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4531), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4531), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4531), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4531), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4531), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4531), + [anon_sym_MOZ_RAII] = ACTIONS(4531), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4531), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4531), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4531), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4531), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4531), + }, + [STATE(1311)] = { + [sym_identifier] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_TILDE] = ACTIONS(4533), + [anon_sym_STAR] = ACTIONS(4533), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4533), + [anon_sym___extension__] = ACTIONS(4531), + [anon_sym_virtual] = ACTIONS(4531), + [anon_sym_extern] = ACTIONS(4531), + [anon_sym___attribute__] = ACTIONS(4531), + [anon_sym___attribute] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4533), + [anon_sym___declspec] = ACTIONS(4531), + [anon_sym___based] = ACTIONS(4531), + [anon_sym___cdecl] = ACTIONS(4531), + [anon_sym___clrcall] = ACTIONS(4531), + [anon_sym___stdcall] = ACTIONS(4531), + [anon_sym___fastcall] = ACTIONS(4531), + [anon_sym___thiscall] = ACTIONS(4531), + [anon_sym___vectorcall] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_static] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4533), + [anon_sym_register] = ACTIONS(4531), + [anon_sym_inline] = ACTIONS(4531), + [anon_sym___inline] = ACTIONS(4531), + [anon_sym___inline__] = ACTIONS(4531), + [anon_sym___forceinline] = ACTIONS(4531), + [anon_sym_thread_local] = ACTIONS(4531), + [anon_sym___thread] = ACTIONS(4531), + [anon_sym_const] = ACTIONS(4531), + [anon_sym_constexpr] = ACTIONS(4531), + [anon_sym_volatile] = ACTIONS(4531), + [anon_sym_restrict] = ACTIONS(4531), + [anon_sym___restrict__] = ACTIONS(4531), + [anon_sym__Atomic] = ACTIONS(4531), + [anon_sym__Noreturn] = ACTIONS(4531), + [anon_sym_noreturn] = ACTIONS(4531), + [anon_sym__Nonnull] = ACTIONS(4531), + [anon_sym_mutable] = ACTIONS(4531), + [anon_sym_constinit] = ACTIONS(4531), + [anon_sym_consteval] = ACTIONS(4531), + [anon_sym_alignas] = ACTIONS(4531), + [anon_sym__Alignas] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_or] = ACTIONS(4531), + [anon_sym_and] = ACTIONS(4531), + [anon_sym_asm] = ACTIONS(4531), + [anon_sym___asm__] = ACTIONS(4531), + [anon_sym___asm] = ACTIONS(4531), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4531), + [anon_sym_decltype] = ACTIONS(4531), + [anon_sym_final] = ACTIONS(4531), + [anon_sym_override] = ACTIONS(4531), + [anon_sym_template] = ACTIONS(4531), + [anon_sym_GT2] = ACTIONS(4533), + [anon_sym_operator] = ACTIONS(4531), + [anon_sym_try] = ACTIONS(4531), + [anon_sym_requires] = ACTIONS(4531), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4531), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4531), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4531), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4531), + [anon_sym_MOZ_COLD] = ACTIONS(4531), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4531), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4531), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4531), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4531), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4531), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4531), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4531), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4531), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4531), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4531), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4531), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4531), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4531), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_NONNULL] = ACTIONS(4531), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4531), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4531), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4531), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4531), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4531), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4531), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4531), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4531), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4531), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4531), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4531), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4531), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4531), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4531), + [anon_sym_MOZ_RAII] = ACTIONS(4531), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4531), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4531), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4531), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4531), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4531), + }, + [STATE(1312)] = { + [sym_identifier] = ACTIONS(4541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4543), + [anon_sym_COMMA] = ACTIONS(4543), + [anon_sym_RPAREN] = ACTIONS(4543), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_TILDE] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4543), + [anon_sym_PIPE_PIPE] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(4543), + [anon_sym___extension__] = ACTIONS(4541), + [anon_sym_virtual] = ACTIONS(4541), + [anon_sym_extern] = ACTIONS(4541), + [anon_sym___attribute__] = ACTIONS(4541), + [anon_sym___attribute] = ACTIONS(4541), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4543), + [anon_sym___declspec] = ACTIONS(4541), + [anon_sym___based] = ACTIONS(4541), + [anon_sym___cdecl] = ACTIONS(4541), + [anon_sym___clrcall] = ACTIONS(4541), + [anon_sym___stdcall] = ACTIONS(4541), + [anon_sym___fastcall] = ACTIONS(4541), + [anon_sym___thiscall] = ACTIONS(4541), + [anon_sym___vectorcall] = ACTIONS(4541), + [anon_sym_LBRACE] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4541), + [anon_sym_static] = ACTIONS(4541), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_register] = ACTIONS(4541), + [anon_sym_inline] = ACTIONS(4541), + [anon_sym___inline] = ACTIONS(4541), + [anon_sym___inline__] = ACTIONS(4541), + [anon_sym___forceinline] = ACTIONS(4541), + [anon_sym_thread_local] = ACTIONS(4541), + [anon_sym___thread] = ACTIONS(4541), + [anon_sym_const] = ACTIONS(4541), + [anon_sym_constexpr] = ACTIONS(4541), + [anon_sym_volatile] = ACTIONS(4541), + [anon_sym_restrict] = ACTIONS(4541), + [anon_sym___restrict__] = ACTIONS(4541), + [anon_sym__Atomic] = ACTIONS(4541), + [anon_sym__Noreturn] = ACTIONS(4541), + [anon_sym_noreturn] = ACTIONS(4541), + [anon_sym__Nonnull] = ACTIONS(4541), + [anon_sym_mutable] = ACTIONS(4541), + [anon_sym_constinit] = ACTIONS(4541), + [anon_sym_consteval] = ACTIONS(4541), + [anon_sym_alignas] = ACTIONS(4541), + [anon_sym__Alignas] = ACTIONS(4541), + [anon_sym_COLON] = ACTIONS(4541), + [anon_sym_or] = ACTIONS(4541), + [anon_sym_and] = ACTIONS(4541), + [anon_sym_asm] = ACTIONS(4541), + [anon_sym___asm__] = ACTIONS(4541), + [anon_sym___asm] = ACTIONS(4541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4541), + [anon_sym_decltype] = ACTIONS(4541), + [anon_sym_final] = ACTIONS(4541), + [anon_sym_override] = ACTIONS(4541), + [anon_sym_template] = ACTIONS(4541), + [anon_sym_GT2] = ACTIONS(4543), + [anon_sym_operator] = ACTIONS(4541), + [anon_sym_try] = ACTIONS(4541), + [anon_sym_requires] = ACTIONS(4541), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4541), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4541), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4541), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4541), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4541), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4541), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4541), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4541), + [anon_sym_MOZ_COLD] = ACTIONS(4541), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4541), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4541), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4541), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4541), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4541), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4541), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4541), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4541), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4541), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4541), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4541), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4541), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4541), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4541), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4541), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4541), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4541), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4541), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4541), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4541), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4541), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4541), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4541), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4541), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4541), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4541), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4541), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4541), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4541), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4541), + [anon_sym_MOZ_NONNULL] = ACTIONS(4541), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4541), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4541), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4541), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4541), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4541), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4541), + [anon_sym_MOZ_NORETURN] = ACTIONS(4541), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4541), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4541), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4541), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4541), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4541), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4541), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4541), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4541), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4541), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4541), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4541), + [anon_sym_MOZ_RAII] = ACTIONS(4541), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4541), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4541), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4541), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4541), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4541), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4541), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4541), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4541), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4541), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4541), + }, + [STATE(1313)] = { + [sym_type_qualifier] = STATE(2267), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(4975), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(2267), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4545), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4549), + [anon_sym_RBRACK] = ACTIONS(4551), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1314)] = { + [sym_type_qualifier] = STATE(2267), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(5064), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(2267), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4557), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4549), + [anon_sym_RBRACK] = ACTIONS(4559), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1315)] = { + [sym_identifier] = ACTIONS(4561), + [anon_sym_LPAREN2] = ACTIONS(4563), + [anon_sym_TILDE] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [anon_sym_PIPE_PIPE] = ACTIONS(4565), + [anon_sym_AMP_AMP] = ACTIONS(4567), + [anon_sym_AMP] = ACTIONS(4561), + [anon_sym___extension__] = ACTIONS(4561), + [anon_sym_virtual] = ACTIONS(4561), + [anon_sym_extern] = ACTIONS(4561), + [anon_sym___attribute__] = ACTIONS(4561), + [anon_sym___attribute] = ACTIONS(4561), + [anon_sym_COLON_COLON] = ACTIONS(4563), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4563), + [anon_sym___declspec] = ACTIONS(4561), + [anon_sym___based] = ACTIONS(4561), + [anon_sym___cdecl] = ACTIONS(4561), + [anon_sym___clrcall] = ACTIONS(4561), + [anon_sym___stdcall] = ACTIONS(4561), + [anon_sym___fastcall] = ACTIONS(4561), + [anon_sym___thiscall] = ACTIONS(4561), + [anon_sym___vectorcall] = ACTIONS(4561), + [anon_sym_signed] = ACTIONS(4561), + [anon_sym_unsigned] = ACTIONS(4561), + [anon_sym_long] = ACTIONS(4561), + [anon_sym_short] = ACTIONS(4561), + [anon_sym_LBRACK] = ACTIONS(4561), + [anon_sym_static] = ACTIONS(4561), + [anon_sym_register] = ACTIONS(4561), + [anon_sym_inline] = ACTIONS(4561), + [anon_sym___inline] = ACTIONS(4561), + [anon_sym___inline__] = ACTIONS(4561), + [anon_sym___forceinline] = ACTIONS(4561), + [anon_sym_thread_local] = ACTIONS(4561), + [anon_sym___thread] = ACTIONS(4561), + [anon_sym_const] = ACTIONS(4561), + [anon_sym_constexpr] = ACTIONS(4561), + [anon_sym_volatile] = ACTIONS(4561), + [anon_sym_restrict] = ACTIONS(4561), + [anon_sym___restrict__] = ACTIONS(4561), + [anon_sym__Atomic] = ACTIONS(4561), + [anon_sym__Noreturn] = ACTIONS(4561), + [anon_sym_noreturn] = ACTIONS(4561), + [anon_sym__Nonnull] = ACTIONS(4561), + [anon_sym_mutable] = ACTIONS(4561), + [anon_sym_constinit] = ACTIONS(4561), + [anon_sym_consteval] = ACTIONS(4561), + [anon_sym_alignas] = ACTIONS(4561), + [anon_sym__Alignas] = ACTIONS(4561), + [sym_primitive_type] = ACTIONS(4561), + [anon_sym_enum] = ACTIONS(4561), + [anon_sym_class] = ACTIONS(4561), + [anon_sym_struct] = ACTIONS(4561), + [anon_sym_union] = ACTIONS(4561), + [anon_sym_or] = ACTIONS(4569), + [anon_sym_and] = ACTIONS(4571), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4561), + [anon_sym_decltype] = ACTIONS(4561), + [anon_sym_explicit] = ACTIONS(4561), + [anon_sym_typename] = ACTIONS(4561), + [anon_sym_template] = ACTIONS(4561), + [anon_sym_operator] = ACTIONS(4561), + [anon_sym_friend] = ACTIONS(4561), + [anon_sym_using] = ACTIONS(4561), + [anon_sym_concept] = ACTIONS(4561), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4561), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4561), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4561), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4561), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4561), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4561), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4561), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4561), + [anon_sym_MOZ_COLD] = ACTIONS(4561), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4561), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4561), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4561), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4561), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4561), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4561), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4561), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4561), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4561), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4561), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4561), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4561), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4561), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4561), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4561), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4561), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4561), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4561), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4561), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4561), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4561), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4561), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4561), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4561), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4561), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4561), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4561), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4561), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4561), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4561), + [anon_sym_MOZ_NONNULL] = ACTIONS(4561), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4561), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4561), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4561), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4561), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4561), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4561), + [anon_sym_MOZ_NORETURN] = ACTIONS(4561), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4561), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4561), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4561), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4561), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4561), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4561), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4561), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4561), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4561), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4561), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4561), + [anon_sym_MOZ_RAII] = ACTIONS(4561), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4561), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4561), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4561), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4561), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4561), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4561), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4561), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4561), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4561), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4561), + }, + [STATE(1316)] = { + [sym_identifier] = ACTIONS(4531), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_TILDE] = ACTIONS(4533), + [anon_sym_STAR] = ACTIONS(4533), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym___extension__] = ACTIONS(4531), + [anon_sym_virtual] = ACTIONS(4531), + [anon_sym_extern] = ACTIONS(4531), + [anon_sym___attribute__] = ACTIONS(4531), + [anon_sym___attribute] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4533), + [anon_sym___declspec] = ACTIONS(4531), + [anon_sym___based] = ACTIONS(4531), + [anon_sym___cdecl] = ACTIONS(4531), + [anon_sym___clrcall] = ACTIONS(4531), + [anon_sym___stdcall] = ACTIONS(4531), + [anon_sym___fastcall] = ACTIONS(4531), + [anon_sym___thiscall] = ACTIONS(4531), + [anon_sym___vectorcall] = ACTIONS(4531), + [anon_sym_signed] = ACTIONS(4531), + [anon_sym_unsigned] = ACTIONS(4531), + [anon_sym_long] = ACTIONS(4531), + [anon_sym_short] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_static] = ACTIONS(4531), + [anon_sym_register] = ACTIONS(4531), + [anon_sym_inline] = ACTIONS(4531), + [anon_sym___inline] = ACTIONS(4531), + [anon_sym___inline__] = ACTIONS(4531), + [anon_sym___forceinline] = ACTIONS(4531), + [anon_sym_thread_local] = ACTIONS(4531), + [anon_sym___thread] = ACTIONS(4531), + [anon_sym_const] = ACTIONS(4531), + [anon_sym_constexpr] = ACTIONS(4531), + [anon_sym_volatile] = ACTIONS(4531), + [anon_sym_restrict] = ACTIONS(4531), + [anon_sym___restrict__] = ACTIONS(4531), + [anon_sym__Atomic] = ACTIONS(4531), + [anon_sym__Noreturn] = ACTIONS(4531), + [anon_sym_noreturn] = ACTIONS(4531), + [anon_sym__Nonnull] = ACTIONS(4531), + [anon_sym_mutable] = ACTIONS(4531), + [anon_sym_constinit] = ACTIONS(4531), + [anon_sym_consteval] = ACTIONS(4531), + [anon_sym_alignas] = ACTIONS(4531), + [anon_sym__Alignas] = ACTIONS(4531), + [sym_primitive_type] = ACTIONS(4531), + [anon_sym_enum] = ACTIONS(4531), + [anon_sym_class] = ACTIONS(4531), + [anon_sym_struct] = ACTIONS(4531), + [anon_sym_union] = ACTIONS(4531), + [anon_sym_or] = ACTIONS(4531), + [anon_sym_and] = ACTIONS(4531), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4531), + [anon_sym_decltype] = ACTIONS(4531), + [anon_sym_explicit] = ACTIONS(4531), + [anon_sym_typename] = ACTIONS(4531), + [anon_sym_template] = ACTIONS(4531), + [anon_sym_operator] = ACTIONS(4531), + [anon_sym_friend] = ACTIONS(4531), + [anon_sym_using] = ACTIONS(4531), + [anon_sym_concept] = ACTIONS(4531), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4531), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4531), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4531), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4531), + [anon_sym_MOZ_COLD] = ACTIONS(4531), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4531), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4531), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4531), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4531), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4531), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4531), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4531), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4531), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4531), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4531), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4531), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4531), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4531), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_NONNULL] = ACTIONS(4531), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4531), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4531), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4531), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4531), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4531), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4531), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4531), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4531), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4531), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4531), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4531), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4531), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4531), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4531), + [anon_sym_MOZ_RAII] = ACTIONS(4531), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4531), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4531), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4531), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4531), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4531), + }, + [STATE(1317)] = { + [sym_identifier] = ACTIONS(4531), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_TILDE] = ACTIONS(4533), + [anon_sym_STAR] = ACTIONS(4533), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym___extension__] = ACTIONS(4531), + [anon_sym_virtual] = ACTIONS(4531), + [anon_sym_extern] = ACTIONS(4531), + [anon_sym___attribute__] = ACTIONS(4531), + [anon_sym___attribute] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4533), + [anon_sym___declspec] = ACTIONS(4531), + [anon_sym___based] = ACTIONS(4531), + [anon_sym___cdecl] = ACTIONS(4531), + [anon_sym___clrcall] = ACTIONS(4531), + [anon_sym___stdcall] = ACTIONS(4531), + [anon_sym___fastcall] = ACTIONS(4531), + [anon_sym___thiscall] = ACTIONS(4531), + [anon_sym___vectorcall] = ACTIONS(4531), + [anon_sym_signed] = ACTIONS(4531), + [anon_sym_unsigned] = ACTIONS(4531), + [anon_sym_long] = ACTIONS(4531), + [anon_sym_short] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_static] = ACTIONS(4531), + [anon_sym_register] = ACTIONS(4531), + [anon_sym_inline] = ACTIONS(4531), + [anon_sym___inline] = ACTIONS(4531), + [anon_sym___inline__] = ACTIONS(4531), + [anon_sym___forceinline] = ACTIONS(4531), + [anon_sym_thread_local] = ACTIONS(4531), + [anon_sym___thread] = ACTIONS(4531), + [anon_sym_const] = ACTIONS(4531), + [anon_sym_constexpr] = ACTIONS(4531), + [anon_sym_volatile] = ACTIONS(4531), + [anon_sym_restrict] = ACTIONS(4531), + [anon_sym___restrict__] = ACTIONS(4531), + [anon_sym__Atomic] = ACTIONS(4531), + [anon_sym__Noreturn] = ACTIONS(4531), + [anon_sym_noreturn] = ACTIONS(4531), + [anon_sym__Nonnull] = ACTIONS(4531), + [anon_sym_mutable] = ACTIONS(4531), + [anon_sym_constinit] = ACTIONS(4531), + [anon_sym_consteval] = ACTIONS(4531), + [anon_sym_alignas] = ACTIONS(4531), + [anon_sym__Alignas] = ACTIONS(4531), + [sym_primitive_type] = ACTIONS(4531), + [anon_sym_enum] = ACTIONS(4531), + [anon_sym_class] = ACTIONS(4531), + [anon_sym_struct] = ACTIONS(4531), + [anon_sym_union] = ACTIONS(4531), + [anon_sym_or] = ACTIONS(4531), + [anon_sym_and] = ACTIONS(4531), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4531), + [anon_sym_decltype] = ACTIONS(4531), + [anon_sym_explicit] = ACTIONS(4531), + [anon_sym_typename] = ACTIONS(4531), + [anon_sym_template] = ACTIONS(4531), + [anon_sym_operator] = ACTIONS(4531), + [anon_sym_friend] = ACTIONS(4531), + [anon_sym_using] = ACTIONS(4531), + [anon_sym_concept] = ACTIONS(4531), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4531), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4531), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4531), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4531), + [anon_sym_MOZ_COLD] = ACTIONS(4531), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4531), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4531), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4531), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4531), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4531), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4531), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4531), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4531), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4531), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4531), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4531), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4531), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4531), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_NONNULL] = ACTIONS(4531), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4531), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4531), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4531), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4531), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4531), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4531), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4531), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4531), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4531), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4531), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4531), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4531), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4531), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4531), + [anon_sym_MOZ_RAII] = ACTIONS(4531), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4531), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4531), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4531), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4531), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4531), + }, + [STATE(1318)] = { + [sym_type_qualifier] = STATE(1314), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(5124), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(1314), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4573), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4575), + [anon_sym_RBRACK] = ACTIONS(4577), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1319)] = { + [sym_identifier] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_TILDE] = ACTIONS(4537), + [anon_sym_STAR] = ACTIONS(4537), + [anon_sym_PIPE_PIPE] = ACTIONS(4537), + [anon_sym_AMP_AMP] = ACTIONS(4537), + [anon_sym_AMP] = ACTIONS(4535), + [anon_sym___extension__] = ACTIONS(4535), + [anon_sym_virtual] = ACTIONS(4535), + [anon_sym_extern] = ACTIONS(4535), + [anon_sym___attribute__] = ACTIONS(4535), + [anon_sym___attribute] = ACTIONS(4535), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4537), + [anon_sym___declspec] = ACTIONS(4535), + [anon_sym___based] = ACTIONS(4535), + [anon_sym___cdecl] = ACTIONS(4535), + [anon_sym___clrcall] = ACTIONS(4535), + [anon_sym___stdcall] = ACTIONS(4535), + [anon_sym___fastcall] = ACTIONS(4535), + [anon_sym___thiscall] = ACTIONS(4535), + [anon_sym___vectorcall] = ACTIONS(4535), + [anon_sym_signed] = ACTIONS(4535), + [anon_sym_unsigned] = ACTIONS(4535), + [anon_sym_long] = ACTIONS(4535), + [anon_sym_short] = ACTIONS(4535), + [anon_sym_LBRACK] = ACTIONS(4535), + [anon_sym_static] = ACTIONS(4535), + [anon_sym_register] = ACTIONS(4535), + [anon_sym_inline] = ACTIONS(4535), + [anon_sym___inline] = ACTIONS(4535), + [anon_sym___inline__] = ACTIONS(4535), + [anon_sym___forceinline] = ACTIONS(4535), + [anon_sym_thread_local] = ACTIONS(4535), + [anon_sym___thread] = ACTIONS(4535), + [anon_sym_const] = ACTIONS(4535), + [anon_sym_constexpr] = ACTIONS(4535), + [anon_sym_volatile] = ACTIONS(4535), + [anon_sym_restrict] = ACTIONS(4535), + [anon_sym___restrict__] = ACTIONS(4535), + [anon_sym__Atomic] = ACTIONS(4535), + [anon_sym__Noreturn] = ACTIONS(4535), + [anon_sym_noreturn] = ACTIONS(4535), + [anon_sym__Nonnull] = ACTIONS(4535), + [anon_sym_mutable] = ACTIONS(4535), + [anon_sym_constinit] = ACTIONS(4535), + [anon_sym_consteval] = ACTIONS(4535), + [anon_sym_alignas] = ACTIONS(4535), + [anon_sym__Alignas] = ACTIONS(4535), + [sym_primitive_type] = ACTIONS(4535), + [anon_sym_enum] = ACTIONS(4535), + [anon_sym_class] = ACTIONS(4535), + [anon_sym_struct] = ACTIONS(4535), + [anon_sym_union] = ACTIONS(4535), + [anon_sym_or] = ACTIONS(4535), + [anon_sym_and] = ACTIONS(4535), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4535), + [anon_sym_decltype] = ACTIONS(4535), + [anon_sym_explicit] = ACTIONS(4535), + [anon_sym_typename] = ACTIONS(4535), + [anon_sym_template] = ACTIONS(4535), + [anon_sym_operator] = ACTIONS(4535), + [anon_sym_friend] = ACTIONS(4535), + [anon_sym_using] = ACTIONS(4535), + [anon_sym_concept] = ACTIONS(4535), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4535), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4535), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4535), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4535), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4535), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4535), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4535), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4535), + [anon_sym_MOZ_COLD] = ACTIONS(4535), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4535), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4535), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4535), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4535), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4535), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4535), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4535), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4535), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4535), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4535), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4535), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4535), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4535), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4535), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4535), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4535), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4535), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4535), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4535), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4535), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4535), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4535), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4535), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4535), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4535), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4535), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4535), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4535), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4535), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4535), + [anon_sym_MOZ_NONNULL] = ACTIONS(4535), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4535), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4535), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4535), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4535), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4535), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4535), + [anon_sym_MOZ_NORETURN] = ACTIONS(4535), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4535), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4535), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4535), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4535), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4535), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4535), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4535), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4535), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4535), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4535), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4535), + [anon_sym_MOZ_RAII] = ACTIONS(4535), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4535), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4535), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4535), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4535), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4535), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4535), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4535), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4535), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4535), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4535), + }, + [STATE(1320)] = { + [sym_type_qualifier] = STATE(1346), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(4937), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(1346), + [sym_identifier] = ACTIONS(4579), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4581), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4583), + [anon_sym_RBRACK] = ACTIONS(4585), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1321)] = { + [sym_type_qualifier] = STATE(1322), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(5063), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4587), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4589), + [anon_sym_RBRACK] = ACTIONS(4591), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1322)] = { + [sym_type_qualifier] = STATE(2267), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(5087), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(2267), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4549), + [anon_sym_RBRACK] = ACTIONS(4595), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1323)] = { + [sym_type_qualifier] = STATE(2267), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(5083), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(2267), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4549), + [anon_sym_RBRACK] = ACTIONS(4599), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1324)] = { + [sym_type_qualifier] = STATE(1313), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(5129), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(1313), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4603), + [anon_sym_RBRACK] = ACTIONS(4605), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1325)] = { + [sym_identifier] = ACTIONS(4531), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_TILDE] = ACTIONS(4533), + [anon_sym_STAR] = ACTIONS(4533), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym___extension__] = ACTIONS(4531), + [anon_sym_virtual] = ACTIONS(4531), + [anon_sym_extern] = ACTIONS(4531), + [anon_sym___attribute__] = ACTIONS(4531), + [anon_sym___attribute] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4533), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4533), + [anon_sym___declspec] = ACTIONS(4531), + [anon_sym___based] = ACTIONS(4531), + [anon_sym___cdecl] = ACTIONS(4531), + [anon_sym___clrcall] = ACTIONS(4531), + [anon_sym___stdcall] = ACTIONS(4531), + [anon_sym___fastcall] = ACTIONS(4531), + [anon_sym___thiscall] = ACTIONS(4531), + [anon_sym___vectorcall] = ACTIONS(4531), + [anon_sym_signed] = ACTIONS(4531), + [anon_sym_unsigned] = ACTIONS(4531), + [anon_sym_long] = ACTIONS(4531), + [anon_sym_short] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_static] = ACTIONS(4531), + [anon_sym_register] = ACTIONS(4531), + [anon_sym_inline] = ACTIONS(4531), + [anon_sym___inline] = ACTIONS(4531), + [anon_sym___inline__] = ACTIONS(4531), + [anon_sym___forceinline] = ACTIONS(4531), + [anon_sym_thread_local] = ACTIONS(4531), + [anon_sym___thread] = ACTIONS(4531), + [anon_sym_const] = ACTIONS(4531), + [anon_sym_constexpr] = ACTIONS(4531), + [anon_sym_volatile] = ACTIONS(4531), + [anon_sym_restrict] = ACTIONS(4531), + [anon_sym___restrict__] = ACTIONS(4531), + [anon_sym__Atomic] = ACTIONS(4531), + [anon_sym__Noreturn] = ACTIONS(4531), + [anon_sym_noreturn] = ACTIONS(4531), + [anon_sym__Nonnull] = ACTIONS(4531), + [anon_sym_mutable] = ACTIONS(4531), + [anon_sym_constinit] = ACTIONS(4531), + [anon_sym_consteval] = ACTIONS(4531), + [anon_sym_alignas] = ACTIONS(4531), + [anon_sym__Alignas] = ACTIONS(4531), + [sym_primitive_type] = ACTIONS(4531), + [anon_sym_enum] = ACTIONS(4531), + [anon_sym_class] = ACTIONS(4531), + [anon_sym_struct] = ACTIONS(4531), + [anon_sym_union] = ACTIONS(4531), + [anon_sym_or] = ACTIONS(4531), + [anon_sym_and] = ACTIONS(4531), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4531), + [anon_sym_decltype] = ACTIONS(4531), + [anon_sym_explicit] = ACTIONS(4531), + [anon_sym_typename] = ACTIONS(4531), + [anon_sym_template] = ACTIONS(4531), + [anon_sym_operator] = ACTIONS(4531), + [anon_sym_friend] = ACTIONS(4531), + [anon_sym_using] = ACTIONS(4531), + [anon_sym_concept] = ACTIONS(4531), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4531), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4531), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4531), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4531), + [anon_sym_MOZ_COLD] = ACTIONS(4531), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4531), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4531), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4531), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4531), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4531), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4531), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4531), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4531), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4531), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4531), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4531), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4531), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4531), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_NONNULL] = ACTIONS(4531), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4531), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4531), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4531), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4531), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4531), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4531), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4531), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4531), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4531), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4531), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4531), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4531), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4531), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4531), + [anon_sym_MOZ_RAII] = ACTIONS(4531), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4531), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4531), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4531), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4531), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4531), + }, + [STATE(1326)] = { + [sym_type_qualifier] = STATE(1327), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(4992), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(1327), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4607), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4609), + [anon_sym_RBRACK] = ACTIONS(4611), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1327)] = { + [sym_type_qualifier] = STATE(2267), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(5005), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(2267), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4549), + [anon_sym_RBRACK] = ACTIONS(4615), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1328)] = { + [sym_type_qualifier] = STATE(2267), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(5094), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(2267), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4549), + [anon_sym_RBRACK] = ACTIONS(4619), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1329)] = { + [sym_identifier] = ACTIONS(4541), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_TILDE] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4543), + [anon_sym_PIPE_PIPE] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4541), + [anon_sym___extension__] = ACTIONS(4541), + [anon_sym_virtual] = ACTIONS(4541), + [anon_sym_extern] = ACTIONS(4541), + [anon_sym___attribute__] = ACTIONS(4541), + [anon_sym___attribute] = ACTIONS(4541), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4543), + [anon_sym___declspec] = ACTIONS(4541), + [anon_sym___based] = ACTIONS(4541), + [anon_sym___cdecl] = ACTIONS(4541), + [anon_sym___clrcall] = ACTIONS(4541), + [anon_sym___stdcall] = ACTIONS(4541), + [anon_sym___fastcall] = ACTIONS(4541), + [anon_sym___thiscall] = ACTIONS(4541), + [anon_sym___vectorcall] = ACTIONS(4541), + [anon_sym_signed] = ACTIONS(4541), + [anon_sym_unsigned] = ACTIONS(4541), + [anon_sym_long] = ACTIONS(4541), + [anon_sym_short] = ACTIONS(4541), + [anon_sym_LBRACK] = ACTIONS(4541), + [anon_sym_static] = ACTIONS(4541), + [anon_sym_register] = ACTIONS(4541), + [anon_sym_inline] = ACTIONS(4541), + [anon_sym___inline] = ACTIONS(4541), + [anon_sym___inline__] = ACTIONS(4541), + [anon_sym___forceinline] = ACTIONS(4541), + [anon_sym_thread_local] = ACTIONS(4541), + [anon_sym___thread] = ACTIONS(4541), + [anon_sym_const] = ACTIONS(4541), + [anon_sym_constexpr] = ACTIONS(4541), + [anon_sym_volatile] = ACTIONS(4541), + [anon_sym_restrict] = ACTIONS(4541), + [anon_sym___restrict__] = ACTIONS(4541), + [anon_sym__Atomic] = ACTIONS(4541), + [anon_sym__Noreturn] = ACTIONS(4541), + [anon_sym_noreturn] = ACTIONS(4541), + [anon_sym__Nonnull] = ACTIONS(4541), + [anon_sym_mutable] = ACTIONS(4541), + [anon_sym_constinit] = ACTIONS(4541), + [anon_sym_consteval] = ACTIONS(4541), + [anon_sym_alignas] = ACTIONS(4541), + [anon_sym__Alignas] = ACTIONS(4541), + [sym_primitive_type] = ACTIONS(4541), + [anon_sym_enum] = ACTIONS(4541), + [anon_sym_class] = ACTIONS(4541), + [anon_sym_struct] = ACTIONS(4541), + [anon_sym_union] = ACTIONS(4541), + [anon_sym_or] = ACTIONS(4541), + [anon_sym_and] = ACTIONS(4541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4541), + [anon_sym_decltype] = ACTIONS(4541), + [anon_sym_explicit] = ACTIONS(4541), + [anon_sym_typename] = ACTIONS(4541), + [anon_sym_template] = ACTIONS(4541), + [anon_sym_operator] = ACTIONS(4541), + [anon_sym_friend] = ACTIONS(4541), + [anon_sym_using] = ACTIONS(4541), + [anon_sym_concept] = ACTIONS(4541), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4541), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4541), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4541), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4541), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4541), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4541), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4541), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4541), + [anon_sym_MOZ_COLD] = ACTIONS(4541), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4541), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4541), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4541), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4541), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4541), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4541), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4541), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4541), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4541), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4541), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4541), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4541), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4541), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4541), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4541), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4541), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4541), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4541), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4541), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4541), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4541), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4541), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4541), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4541), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4541), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4541), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4541), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4541), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4541), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4541), + [anon_sym_MOZ_NONNULL] = ACTIONS(4541), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4541), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4541), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4541), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4541), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4541), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4541), + [anon_sym_MOZ_NORETURN] = ACTIONS(4541), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4541), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4541), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4541), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4541), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4541), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4541), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4541), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4541), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4541), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4541), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4541), + [anon_sym_MOZ_RAII] = ACTIONS(4541), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4541), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4541), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4541), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4541), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4541), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4541), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4541), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4541), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4541), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4541), + }, + [STATE(1330)] = { + [sym_identifier] = ACTIONS(1879), + [anon_sym_LPAREN2] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym___extension__] = ACTIONS(1879), + [anon_sym_virtual] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym___attribute__] = ACTIONS(1879), + [anon_sym___attribute] = ACTIONS(1879), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1877), + [anon_sym___declspec] = ACTIONS(1879), + [anon_sym___based] = ACTIONS(1879), + [anon_sym___cdecl] = ACTIONS(1879), + [anon_sym___clrcall] = ACTIONS(1879), + [anon_sym___stdcall] = ACTIONS(1879), + [anon_sym___fastcall] = ACTIONS(1879), + [anon_sym___thiscall] = ACTIONS(1879), + [anon_sym___vectorcall] = ACTIONS(1879), + [anon_sym_signed] = ACTIONS(1879), + [anon_sym_unsigned] = ACTIONS(1879), + [anon_sym_long] = ACTIONS(1879), + [anon_sym_short] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_static] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_inline] = ACTIONS(1879), + [anon_sym___inline] = ACTIONS(1879), + [anon_sym___inline__] = ACTIONS(1879), + [anon_sym___forceinline] = ACTIONS(1879), + [anon_sym_thread_local] = ACTIONS(1879), + [anon_sym___thread] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_constexpr] = ACTIONS(1879), + [anon_sym_volatile] = ACTIONS(1879), + [anon_sym_restrict] = ACTIONS(1879), + [anon_sym___restrict__] = ACTIONS(1879), + [anon_sym__Atomic] = ACTIONS(1879), + [anon_sym__Noreturn] = ACTIONS(1879), + [anon_sym_noreturn] = ACTIONS(1879), + [anon_sym__Nonnull] = ACTIONS(1879), + [anon_sym_mutable] = ACTIONS(1879), + [anon_sym_constinit] = ACTIONS(1879), + [anon_sym_consteval] = ACTIONS(1879), + [anon_sym_alignas] = ACTIONS(1879), + [anon_sym__Alignas] = ACTIONS(1879), + [sym_primitive_type] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_class] = ACTIONS(1879), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [anon_sym_and] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1879), + [anon_sym_decltype] = ACTIONS(1879), + [anon_sym_explicit] = ACTIONS(1879), + [anon_sym_typename] = ACTIONS(1879), + [anon_sym_template] = ACTIONS(1879), + [anon_sym_operator] = ACTIONS(1879), + [anon_sym_friend] = ACTIONS(1879), + [anon_sym_using] = ACTIONS(1879), + [anon_sym_concept] = ACTIONS(1879), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1879), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1879), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1879), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1879), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1879), + [anon_sym_MOZ_COLD] = ACTIONS(1879), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1879), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1879), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1879), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1879), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1879), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1879), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1879), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1879), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1879), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1879), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1879), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1879), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1879), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1879), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1879), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1879), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_NONNULL] = ACTIONS(1879), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1879), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1879), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1879), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1879), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_NORETURN] = ACTIONS(1879), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1879), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1879), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1879), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1879), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1879), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1879), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1879), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1879), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1879), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1879), + [anon_sym_MOZ_RAII] = ACTIONS(1879), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1879), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1879), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1879), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1879), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1879), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1879), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1879), + }, + [STATE(1331)] = { + [sym_type_qualifier] = STATE(2267), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(5093), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(2267), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4549), + [anon_sym_RBRACK] = ACTIONS(4623), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1332)] = { + [sym_type_qualifier] = STATE(1331), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(4960), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(1331), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4627), + [anon_sym_RBRACK] = ACTIONS(4629), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1333)] = { + [sym_identifier] = ACTIONS(3256), + [anon_sym_LPAREN2] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_STAR] = ACTIONS(3258), + [anon_sym_PIPE_PIPE] = ACTIONS(3258), + [anon_sym_AMP_AMP] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym___extension__] = ACTIONS(3256), + [anon_sym_virtual] = ACTIONS(3256), + [anon_sym_extern] = ACTIONS(3256), + [anon_sym___attribute__] = ACTIONS(3256), + [anon_sym___attribute] = ACTIONS(3256), + [anon_sym_COLON_COLON] = ACTIONS(3258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3258), + [anon_sym___declspec] = ACTIONS(3256), + [anon_sym___based] = ACTIONS(3256), + [anon_sym___cdecl] = ACTIONS(3256), + [anon_sym___clrcall] = ACTIONS(3256), + [anon_sym___stdcall] = ACTIONS(3256), + [anon_sym___fastcall] = ACTIONS(3256), + [anon_sym___thiscall] = ACTIONS(3256), + [anon_sym___vectorcall] = ACTIONS(3256), + [anon_sym_signed] = ACTIONS(3256), + [anon_sym_unsigned] = ACTIONS(3256), + [anon_sym_long] = ACTIONS(3256), + [anon_sym_short] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_static] = ACTIONS(3256), + [anon_sym_register] = ACTIONS(3256), + [anon_sym_inline] = ACTIONS(3256), + [anon_sym___inline] = ACTIONS(3256), + [anon_sym___inline__] = ACTIONS(3256), + [anon_sym___forceinline] = ACTIONS(3256), + [anon_sym_thread_local] = ACTIONS(3256), + [anon_sym___thread] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_constexpr] = ACTIONS(3256), + [anon_sym_volatile] = ACTIONS(3256), + [anon_sym_restrict] = ACTIONS(3256), + [anon_sym___restrict__] = ACTIONS(3256), + [anon_sym__Atomic] = ACTIONS(3256), + [anon_sym__Noreturn] = ACTIONS(3256), + [anon_sym_noreturn] = ACTIONS(3256), + [anon_sym__Nonnull] = ACTIONS(3256), + [anon_sym_mutable] = ACTIONS(3256), + [anon_sym_constinit] = ACTIONS(3256), + [anon_sym_consteval] = ACTIONS(3256), + [anon_sym_alignas] = ACTIONS(3256), + [anon_sym__Alignas] = ACTIONS(3256), + [sym_primitive_type] = ACTIONS(3256), + [anon_sym_enum] = ACTIONS(3256), + [anon_sym_class] = ACTIONS(3256), + [anon_sym_struct] = ACTIONS(3256), + [anon_sym_union] = ACTIONS(3256), + [anon_sym_or] = ACTIONS(3256), + [anon_sym_and] = ACTIONS(3256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3256), + [anon_sym_decltype] = ACTIONS(3256), + [anon_sym_explicit] = ACTIONS(3256), + [anon_sym_typename] = ACTIONS(3256), + [anon_sym_template] = ACTIONS(3256), + [anon_sym_operator] = ACTIONS(3256), + [anon_sym_friend] = ACTIONS(3256), + [anon_sym_using] = ACTIONS(3256), + [anon_sym_concept] = ACTIONS(3256), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3256), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3256), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3256), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3256), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3256), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3256), + [anon_sym_MOZ_COLD] = ACTIONS(3256), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3256), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3256), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3256), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3256), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3256), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3256), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3256), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3256), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3256), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3256), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3256), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3256), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3256), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3256), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3256), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3256), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3256), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3256), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_NONNULL] = ACTIONS(3256), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3256), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3256), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3256), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3256), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3256), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_NORETURN] = ACTIONS(3256), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3256), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3256), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3256), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3256), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3256), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3256), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3256), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3256), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3256), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3256), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3256), + [anon_sym_MOZ_RAII] = ACTIONS(3256), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3256), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3256), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3256), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3256), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3256), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3256), + }, + [STATE(1334)] = { + [sym_identifier] = ACTIONS(3252), + [anon_sym_LPAREN2] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym___extension__] = ACTIONS(3252), + [anon_sym_virtual] = ACTIONS(3252), + [anon_sym_extern] = ACTIONS(3252), + [anon_sym___attribute__] = ACTIONS(3252), + [anon_sym___attribute] = ACTIONS(3252), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3254), + [anon_sym___declspec] = ACTIONS(3252), + [anon_sym___based] = ACTIONS(3252), + [anon_sym___cdecl] = ACTIONS(3252), + [anon_sym___clrcall] = ACTIONS(3252), + [anon_sym___stdcall] = ACTIONS(3252), + [anon_sym___fastcall] = ACTIONS(3252), + [anon_sym___thiscall] = ACTIONS(3252), + [anon_sym___vectorcall] = ACTIONS(3252), + [anon_sym_signed] = ACTIONS(3252), + [anon_sym_unsigned] = ACTIONS(3252), + [anon_sym_long] = ACTIONS(3252), + [anon_sym_short] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_register] = ACTIONS(3252), + [anon_sym_inline] = ACTIONS(3252), + [anon_sym___inline] = ACTIONS(3252), + [anon_sym___inline__] = ACTIONS(3252), + [anon_sym___forceinline] = ACTIONS(3252), + [anon_sym_thread_local] = ACTIONS(3252), + [anon_sym___thread] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_constexpr] = ACTIONS(3252), + [anon_sym_volatile] = ACTIONS(3252), + [anon_sym_restrict] = ACTIONS(3252), + [anon_sym___restrict__] = ACTIONS(3252), + [anon_sym__Atomic] = ACTIONS(3252), + [anon_sym__Noreturn] = ACTIONS(3252), + [anon_sym_noreturn] = ACTIONS(3252), + [anon_sym__Nonnull] = ACTIONS(3252), + [anon_sym_mutable] = ACTIONS(3252), + [anon_sym_constinit] = ACTIONS(3252), + [anon_sym_consteval] = ACTIONS(3252), + [anon_sym_alignas] = ACTIONS(3252), + [anon_sym__Alignas] = ACTIONS(3252), + [sym_primitive_type] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3252), + [anon_sym_or] = ACTIONS(3252), + [anon_sym_and] = ACTIONS(3252), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3252), + [anon_sym_decltype] = ACTIONS(3252), + [anon_sym_explicit] = ACTIONS(3252), + [anon_sym_typename] = ACTIONS(3252), + [anon_sym_template] = ACTIONS(3252), + [anon_sym_operator] = ACTIONS(3252), + [anon_sym_friend] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_concept] = ACTIONS(3252), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3252), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3252), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3252), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3252), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3252), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3252), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3252), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3252), + [anon_sym_MOZ_COLD] = ACTIONS(3252), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3252), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3252), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3252), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3252), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3252), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3252), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3252), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3252), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3252), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3252), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3252), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3252), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3252), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3252), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3252), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3252), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3252), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3252), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3252), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3252), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_NONNULL] = ACTIONS(3252), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3252), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3252), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3252), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3252), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3252), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_NORETURN] = ACTIONS(3252), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3252), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3252), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3252), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3252), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3252), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3252), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3252), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3252), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3252), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3252), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3252), + [anon_sym_MOZ_RAII] = ACTIONS(3252), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3252), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3252), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3252), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3252), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3252), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3252), + }, + [STATE(1335)] = { + [sym_identifier] = ACTIONS(3248), + [anon_sym_LPAREN2] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_PIPE_PIPE] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3248), + [anon_sym___extension__] = ACTIONS(3248), + [anon_sym_virtual] = ACTIONS(3248), + [anon_sym_extern] = ACTIONS(3248), + [anon_sym___attribute__] = ACTIONS(3248), + [anon_sym___attribute] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(3250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3250), + [anon_sym___declspec] = ACTIONS(3248), + [anon_sym___based] = ACTIONS(3248), + [anon_sym___cdecl] = ACTIONS(3248), + [anon_sym___clrcall] = ACTIONS(3248), + [anon_sym___stdcall] = ACTIONS(3248), + [anon_sym___fastcall] = ACTIONS(3248), + [anon_sym___thiscall] = ACTIONS(3248), + [anon_sym___vectorcall] = ACTIONS(3248), + [anon_sym_signed] = ACTIONS(3248), + [anon_sym_unsigned] = ACTIONS(3248), + [anon_sym_long] = ACTIONS(3248), + [anon_sym_short] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_register] = ACTIONS(3248), + [anon_sym_inline] = ACTIONS(3248), + [anon_sym___inline] = ACTIONS(3248), + [anon_sym___inline__] = ACTIONS(3248), + [anon_sym___forceinline] = ACTIONS(3248), + [anon_sym_thread_local] = ACTIONS(3248), + [anon_sym___thread] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_constexpr] = ACTIONS(3248), + [anon_sym_volatile] = ACTIONS(3248), + [anon_sym_restrict] = ACTIONS(3248), + [anon_sym___restrict__] = ACTIONS(3248), + [anon_sym__Atomic] = ACTIONS(3248), + [anon_sym__Noreturn] = ACTIONS(3248), + [anon_sym_noreturn] = ACTIONS(3248), + [anon_sym__Nonnull] = ACTIONS(3248), + [anon_sym_mutable] = ACTIONS(3248), + [anon_sym_constinit] = ACTIONS(3248), + [anon_sym_consteval] = ACTIONS(3248), + [anon_sym_alignas] = ACTIONS(3248), + [anon_sym__Alignas] = ACTIONS(3248), + [sym_primitive_type] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_struct] = ACTIONS(3248), + [anon_sym_union] = ACTIONS(3248), + [anon_sym_or] = ACTIONS(3248), + [anon_sym_and] = ACTIONS(3248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3248), + [anon_sym_decltype] = ACTIONS(3248), + [anon_sym_explicit] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3248), + [anon_sym_template] = ACTIONS(3248), + [anon_sym_operator] = ACTIONS(3248), + [anon_sym_friend] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_concept] = ACTIONS(3248), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3248), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3248), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3248), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3248), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3248), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3248), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3248), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3248), + [anon_sym_MOZ_COLD] = ACTIONS(3248), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3248), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3248), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3248), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3248), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3248), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3248), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3248), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3248), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3248), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3248), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3248), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3248), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3248), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3248), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3248), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3248), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3248), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3248), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3248), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3248), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_NONNULL] = ACTIONS(3248), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3248), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3248), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3248), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3248), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3248), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_NORETURN] = ACTIONS(3248), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3248), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3248), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3248), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3248), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3248), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3248), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3248), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3248), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3248), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3248), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3248), + [anon_sym_MOZ_RAII] = ACTIONS(3248), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3248), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3248), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3248), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3248), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3248), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3248), + }, + [STATE(1336)] = { + [sym_identifier] = ACTIONS(3244), + [anon_sym_LPAREN2] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_PIPE_PIPE] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3244), + [anon_sym___extension__] = ACTIONS(3244), + [anon_sym_virtual] = ACTIONS(3244), + [anon_sym_extern] = ACTIONS(3244), + [anon_sym___attribute__] = ACTIONS(3244), + [anon_sym___attribute] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3246), + [anon_sym___declspec] = ACTIONS(3244), + [anon_sym___based] = ACTIONS(3244), + [anon_sym___cdecl] = ACTIONS(3244), + [anon_sym___clrcall] = ACTIONS(3244), + [anon_sym___stdcall] = ACTIONS(3244), + [anon_sym___fastcall] = ACTIONS(3244), + [anon_sym___thiscall] = ACTIONS(3244), + [anon_sym___vectorcall] = ACTIONS(3244), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_register] = ACTIONS(3244), + [anon_sym_inline] = ACTIONS(3244), + [anon_sym___inline] = ACTIONS(3244), + [anon_sym___inline__] = ACTIONS(3244), + [anon_sym___forceinline] = ACTIONS(3244), + [anon_sym_thread_local] = ACTIONS(3244), + [anon_sym___thread] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_constexpr] = ACTIONS(3244), + [anon_sym_volatile] = ACTIONS(3244), + [anon_sym_restrict] = ACTIONS(3244), + [anon_sym___restrict__] = ACTIONS(3244), + [anon_sym__Atomic] = ACTIONS(3244), + [anon_sym__Noreturn] = ACTIONS(3244), + [anon_sym_noreturn] = ACTIONS(3244), + [anon_sym__Nonnull] = ACTIONS(3244), + [anon_sym_mutable] = ACTIONS(3244), + [anon_sym_constinit] = ACTIONS(3244), + [anon_sym_consteval] = ACTIONS(3244), + [anon_sym_alignas] = ACTIONS(3244), + [anon_sym__Alignas] = ACTIONS(3244), + [sym_primitive_type] = ACTIONS(3244), + [anon_sym_enum] = ACTIONS(3244), + [anon_sym_class] = ACTIONS(3244), + [anon_sym_struct] = ACTIONS(3244), + [anon_sym_union] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3244), + [anon_sym_and] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3244), + [anon_sym_decltype] = ACTIONS(3244), + [anon_sym_explicit] = ACTIONS(3244), + [anon_sym_typename] = ACTIONS(3244), + [anon_sym_template] = ACTIONS(3244), + [anon_sym_operator] = ACTIONS(3244), + [anon_sym_friend] = ACTIONS(3244), + [anon_sym_using] = ACTIONS(3244), + [anon_sym_concept] = ACTIONS(3244), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3244), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3244), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3244), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3244), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3244), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3244), + [anon_sym_MOZ_COLD] = ACTIONS(3244), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3244), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3244), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3244), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3244), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3244), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3244), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3244), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3244), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3244), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3244), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3244), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3244), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3244), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3244), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3244), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3244), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3244), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3244), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_NONNULL] = ACTIONS(3244), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3244), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3244), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3244), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3244), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3244), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_NORETURN] = ACTIONS(3244), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3244), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3244), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3244), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3244), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3244), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3244), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3244), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3244), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3244), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3244), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3244), + [anon_sym_MOZ_RAII] = ACTIONS(3244), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3244), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3244), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3244), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3244), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3244), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3244), + }, + [STATE(1337)] = { + [sym_identifier] = ACTIONS(3264), + [anon_sym_LPAREN2] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3264), + [anon_sym___extension__] = ACTIONS(3264), + [anon_sym_virtual] = ACTIONS(3264), + [anon_sym_extern] = ACTIONS(3264), + [anon_sym___attribute__] = ACTIONS(3264), + [anon_sym___attribute] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3266), + [anon_sym___declspec] = ACTIONS(3264), + [anon_sym___based] = ACTIONS(3264), + [anon_sym___cdecl] = ACTIONS(3264), + [anon_sym___clrcall] = ACTIONS(3264), + [anon_sym___stdcall] = ACTIONS(3264), + [anon_sym___fastcall] = ACTIONS(3264), + [anon_sym___thiscall] = ACTIONS(3264), + [anon_sym___vectorcall] = ACTIONS(3264), + [anon_sym_signed] = ACTIONS(3264), + [anon_sym_unsigned] = ACTIONS(3264), + [anon_sym_long] = ACTIONS(3264), + [anon_sym_short] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_static] = ACTIONS(3264), + [anon_sym_register] = ACTIONS(3264), + [anon_sym_inline] = ACTIONS(3264), + [anon_sym___inline] = ACTIONS(3264), + [anon_sym___inline__] = ACTIONS(3264), + [anon_sym___forceinline] = ACTIONS(3264), + [anon_sym_thread_local] = ACTIONS(3264), + [anon_sym___thread] = ACTIONS(3264), + [anon_sym_const] = ACTIONS(3264), + [anon_sym_constexpr] = ACTIONS(3264), + [anon_sym_volatile] = ACTIONS(3264), + [anon_sym_restrict] = ACTIONS(3264), + [anon_sym___restrict__] = ACTIONS(3264), + [anon_sym__Atomic] = ACTIONS(3264), + [anon_sym__Noreturn] = ACTIONS(3264), + [anon_sym_noreturn] = ACTIONS(3264), + [anon_sym__Nonnull] = ACTIONS(3264), + [anon_sym_mutable] = ACTIONS(3264), + [anon_sym_constinit] = ACTIONS(3264), + [anon_sym_consteval] = ACTIONS(3264), + [anon_sym_alignas] = ACTIONS(3264), + [anon_sym__Alignas] = ACTIONS(3264), + [sym_primitive_type] = ACTIONS(3264), + [anon_sym_enum] = ACTIONS(3264), + [anon_sym_class] = ACTIONS(3264), + [anon_sym_struct] = ACTIONS(3264), + [anon_sym_union] = ACTIONS(3264), + [anon_sym_or] = ACTIONS(3264), + [anon_sym_and] = ACTIONS(3264), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3264), + [anon_sym_explicit] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3264), + [anon_sym_template] = ACTIONS(3264), + [anon_sym_operator] = ACTIONS(3264), + [anon_sym_friend] = ACTIONS(3264), + [anon_sym_using] = ACTIONS(3264), + [anon_sym_concept] = ACTIONS(3264), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3264), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3264), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3264), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3264), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3264), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3264), + [anon_sym_MOZ_COLD] = ACTIONS(3264), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3264), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3264), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3264), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3264), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3264), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3264), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3264), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3264), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3264), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3264), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3264), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3264), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3264), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3264), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3264), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3264), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3264), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3264), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_NONNULL] = ACTIONS(3264), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3264), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3264), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3264), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3264), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3264), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_NORETURN] = ACTIONS(3264), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3264), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3264), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3264), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3264), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3264), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3264), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3264), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3264), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3264), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3264), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3264), + [anon_sym_MOZ_RAII] = ACTIONS(3264), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3264), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3264), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3264), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3264), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3264), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3264), + }, + [STATE(1338)] = { + [sym_identifier] = ACTIONS(3268), + [anon_sym_LPAREN2] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_PIPE_PIPE] = ACTIONS(3270), + [anon_sym_AMP_AMP] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3268), + [anon_sym___extension__] = ACTIONS(3268), + [anon_sym_virtual] = ACTIONS(3268), + [anon_sym_extern] = ACTIONS(3268), + [anon_sym___attribute__] = ACTIONS(3268), + [anon_sym___attribute] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3270), + [anon_sym___declspec] = ACTIONS(3268), + [anon_sym___based] = ACTIONS(3268), + [anon_sym___cdecl] = ACTIONS(3268), + [anon_sym___clrcall] = ACTIONS(3268), + [anon_sym___stdcall] = ACTIONS(3268), + [anon_sym___fastcall] = ACTIONS(3268), + [anon_sym___thiscall] = ACTIONS(3268), + [anon_sym___vectorcall] = ACTIONS(3268), + [anon_sym_signed] = ACTIONS(3268), + [anon_sym_unsigned] = ACTIONS(3268), + [anon_sym_long] = ACTIONS(3268), + [anon_sym_short] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_register] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym___inline] = ACTIONS(3268), + [anon_sym___inline__] = ACTIONS(3268), + [anon_sym___forceinline] = ACTIONS(3268), + [anon_sym_thread_local] = ACTIONS(3268), + [anon_sym___thread] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_constexpr] = ACTIONS(3268), + [anon_sym_volatile] = ACTIONS(3268), + [anon_sym_restrict] = ACTIONS(3268), + [anon_sym___restrict__] = ACTIONS(3268), + [anon_sym__Atomic] = ACTIONS(3268), + [anon_sym__Noreturn] = ACTIONS(3268), + [anon_sym_noreturn] = ACTIONS(3268), + [anon_sym__Nonnull] = ACTIONS(3268), + [anon_sym_mutable] = ACTIONS(3268), + [anon_sym_constinit] = ACTIONS(3268), + [anon_sym_consteval] = ACTIONS(3268), + [anon_sym_alignas] = ACTIONS(3268), + [anon_sym__Alignas] = ACTIONS(3268), + [sym_primitive_type] = ACTIONS(3268), + [anon_sym_enum] = ACTIONS(3268), + [anon_sym_class] = ACTIONS(3268), + [anon_sym_struct] = ACTIONS(3268), + [anon_sym_union] = ACTIONS(3268), + [anon_sym_or] = ACTIONS(3268), + [anon_sym_and] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3268), + [anon_sym_decltype] = ACTIONS(3268), + [anon_sym_explicit] = ACTIONS(3268), + [anon_sym_typename] = ACTIONS(3268), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_friend] = ACTIONS(3268), + [anon_sym_using] = ACTIONS(3268), + [anon_sym_concept] = ACTIONS(3268), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3268), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3268), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3268), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3268), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3268), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3268), + [anon_sym_MOZ_COLD] = ACTIONS(3268), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3268), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3268), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3268), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3268), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3268), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3268), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3268), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3268), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3268), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3268), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3268), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3268), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3268), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3268), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3268), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3268), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3268), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3268), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_NONNULL] = ACTIONS(3268), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3268), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3268), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3268), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3268), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3268), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_NORETURN] = ACTIONS(3268), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3268), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3268), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3268), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3268), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3268), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3268), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3268), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3268), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3268), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3268), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3268), + [anon_sym_MOZ_RAII] = ACTIONS(3268), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3268), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3268), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3268), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3268), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3268), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3268), + }, + [STATE(1339)] = { + [sym_identifier] = ACTIONS(3260), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym___extension__] = ACTIONS(3260), + [anon_sym_virtual] = ACTIONS(3260), + [anon_sym_extern] = ACTIONS(3260), + [anon_sym___attribute__] = ACTIONS(3260), + [anon_sym___attribute] = ACTIONS(3260), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3262), + [anon_sym___declspec] = ACTIONS(3260), + [anon_sym___based] = ACTIONS(3260), + [anon_sym___cdecl] = ACTIONS(3260), + [anon_sym___clrcall] = ACTIONS(3260), + [anon_sym___stdcall] = ACTIONS(3260), + [anon_sym___fastcall] = ACTIONS(3260), + [anon_sym___thiscall] = ACTIONS(3260), + [anon_sym___vectorcall] = ACTIONS(3260), + [anon_sym_signed] = ACTIONS(3260), + [anon_sym_unsigned] = ACTIONS(3260), + [anon_sym_long] = ACTIONS(3260), + [anon_sym_short] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_static] = ACTIONS(3260), + [anon_sym_register] = ACTIONS(3260), + [anon_sym_inline] = ACTIONS(3260), + [anon_sym___inline] = ACTIONS(3260), + [anon_sym___inline__] = ACTIONS(3260), + [anon_sym___forceinline] = ACTIONS(3260), + [anon_sym_thread_local] = ACTIONS(3260), + [anon_sym___thread] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_constexpr] = ACTIONS(3260), + [anon_sym_volatile] = ACTIONS(3260), + [anon_sym_restrict] = ACTIONS(3260), + [anon_sym___restrict__] = ACTIONS(3260), + [anon_sym__Atomic] = ACTIONS(3260), + [anon_sym__Noreturn] = ACTIONS(3260), + [anon_sym_noreturn] = ACTIONS(3260), + [anon_sym__Nonnull] = ACTIONS(3260), + [anon_sym_mutable] = ACTIONS(3260), + [anon_sym_constinit] = ACTIONS(3260), + [anon_sym_consteval] = ACTIONS(3260), + [anon_sym_alignas] = ACTIONS(3260), + [anon_sym__Alignas] = ACTIONS(3260), + [sym_primitive_type] = ACTIONS(3260), + [anon_sym_enum] = ACTIONS(3260), + [anon_sym_class] = ACTIONS(3260), + [anon_sym_struct] = ACTIONS(3260), + [anon_sym_union] = ACTIONS(3260), + [anon_sym_or] = ACTIONS(3260), + [anon_sym_and] = ACTIONS(3260), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3260), + [anon_sym_decltype] = ACTIONS(3260), + [anon_sym_explicit] = ACTIONS(3260), + [anon_sym_typename] = ACTIONS(3260), + [anon_sym_template] = ACTIONS(3260), + [anon_sym_operator] = ACTIONS(3260), + [anon_sym_friend] = ACTIONS(3260), + [anon_sym_using] = ACTIONS(3260), + [anon_sym_concept] = ACTIONS(3260), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3260), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3260), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3260), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3260), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3260), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3260), + [anon_sym_MOZ_COLD] = ACTIONS(3260), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3260), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3260), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3260), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3260), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3260), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3260), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3260), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3260), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3260), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3260), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3260), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3260), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3260), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3260), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3260), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3260), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3260), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3260), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_NONNULL] = ACTIONS(3260), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3260), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3260), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3260), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3260), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3260), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_NORETURN] = ACTIONS(3260), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3260), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3260), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3260), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3260), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3260), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3260), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3260), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3260), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3260), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3260), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3260), + [anon_sym_MOZ_RAII] = ACTIONS(3260), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3260), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3260), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3260), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3260), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3260), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3260), + }, + [STATE(1340)] = { + [sym_type_qualifier] = STATE(1343), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(5030), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(1343), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4631), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4633), + [anon_sym_RBRACK] = ACTIONS(4635), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1341)] = { + [sym_type_qualifier] = STATE(1346), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(4937), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(1346), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4581), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4583), + [anon_sym_RBRACK] = ACTIONS(4585), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1342)] = { + [sym_type_qualifier] = STATE(1328), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(5020), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(1328), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4637), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4639), + [anon_sym_RBRACK] = ACTIONS(4641), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1343)] = { + [sym_type_qualifier] = STATE(2267), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(4986), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(2267), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4643), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4549), + [anon_sym_RBRACK] = ACTIONS(4645), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1344)] = { + [sym_identifier] = ACTIONS(4647), + [anon_sym_LPAREN2] = ACTIONS(4649), + [anon_sym_TILDE] = ACTIONS(4649), + [anon_sym_STAR] = ACTIONS(4649), + [anon_sym_PIPE_PIPE] = ACTIONS(4649), + [anon_sym_AMP_AMP] = ACTIONS(4567), + [anon_sym_AMP] = ACTIONS(4647), + [anon_sym___extension__] = ACTIONS(4647), + [anon_sym_virtual] = ACTIONS(4647), + [anon_sym_extern] = ACTIONS(4647), + [anon_sym___attribute__] = ACTIONS(4647), + [anon_sym___attribute] = ACTIONS(4647), + [anon_sym_COLON_COLON] = ACTIONS(4649), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4649), + [anon_sym___declspec] = ACTIONS(4647), + [anon_sym___based] = ACTIONS(4647), + [anon_sym___cdecl] = ACTIONS(4647), + [anon_sym___clrcall] = ACTIONS(4647), + [anon_sym___stdcall] = ACTIONS(4647), + [anon_sym___fastcall] = ACTIONS(4647), + [anon_sym___thiscall] = ACTIONS(4647), + [anon_sym___vectorcall] = ACTIONS(4647), + [anon_sym_signed] = ACTIONS(4647), + [anon_sym_unsigned] = ACTIONS(4647), + [anon_sym_long] = ACTIONS(4647), + [anon_sym_short] = ACTIONS(4647), + [anon_sym_LBRACK] = ACTIONS(4647), + [anon_sym_static] = ACTIONS(4647), + [anon_sym_register] = ACTIONS(4647), + [anon_sym_inline] = ACTIONS(4647), + [anon_sym___inline] = ACTIONS(4647), + [anon_sym___inline__] = ACTIONS(4647), + [anon_sym___forceinline] = ACTIONS(4647), + [anon_sym_thread_local] = ACTIONS(4647), + [anon_sym___thread] = ACTIONS(4647), + [anon_sym_const] = ACTIONS(4647), + [anon_sym_constexpr] = ACTIONS(4647), + [anon_sym_volatile] = ACTIONS(4647), + [anon_sym_restrict] = ACTIONS(4647), + [anon_sym___restrict__] = ACTIONS(4647), + [anon_sym__Atomic] = ACTIONS(4647), + [anon_sym__Noreturn] = ACTIONS(4647), + [anon_sym_noreturn] = ACTIONS(4647), + [anon_sym__Nonnull] = ACTIONS(4647), + [anon_sym_mutable] = ACTIONS(4647), + [anon_sym_constinit] = ACTIONS(4647), + [anon_sym_consteval] = ACTIONS(4647), + [anon_sym_alignas] = ACTIONS(4647), + [anon_sym__Alignas] = ACTIONS(4647), + [sym_primitive_type] = ACTIONS(4647), + [anon_sym_enum] = ACTIONS(4647), + [anon_sym_class] = ACTIONS(4647), + [anon_sym_struct] = ACTIONS(4647), + [anon_sym_union] = ACTIONS(4647), + [anon_sym_or] = ACTIONS(4647), + [anon_sym_and] = ACTIONS(4571), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4647), + [anon_sym_decltype] = ACTIONS(4647), + [anon_sym_explicit] = ACTIONS(4647), + [anon_sym_typename] = ACTIONS(4647), + [anon_sym_template] = ACTIONS(4647), + [anon_sym_operator] = ACTIONS(4647), + [anon_sym_friend] = ACTIONS(4647), + [anon_sym_using] = ACTIONS(4647), + [anon_sym_concept] = ACTIONS(4647), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4647), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4647), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4647), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4647), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4647), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4647), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4647), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4647), + [anon_sym_MOZ_COLD] = ACTIONS(4647), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4647), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4647), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4647), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4647), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4647), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4647), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4647), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4647), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4647), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4647), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4647), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4647), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4647), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4647), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4647), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4647), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4647), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4647), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4647), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4647), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4647), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4647), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4647), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4647), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4647), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4647), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4647), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4647), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4647), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4647), + [anon_sym_MOZ_NONNULL] = ACTIONS(4647), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4647), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4647), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4647), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4647), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4647), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4647), + [anon_sym_MOZ_NORETURN] = ACTIONS(4647), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4647), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4647), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4647), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4647), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4647), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4647), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4647), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4647), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4647), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4647), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4647), + [anon_sym_MOZ_RAII] = ACTIONS(4647), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4647), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4647), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4647), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4647), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4647), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4647), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4647), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4647), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4647), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4647), + }, + [STATE(1345)] = { + [sym_type_qualifier] = STATE(2267), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(5122), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(2267), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4549), + [anon_sym_RBRACK] = ACTIONS(4653), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1346)] = { + [sym_type_qualifier] = STATE(2267), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(4980), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(2267), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4655), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4549), + [anon_sym_RBRACK] = ACTIONS(4657), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1347)] = { + [sym_type_qualifier] = STATE(1323), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(4984), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(1323), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4659), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4661), + [anon_sym_RBRACK] = ACTIONS(4663), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1348)] = { + [sym_type_qualifier] = STATE(1345), + [sym_alignas_qualifier] = STATE(2346), + [sym_expression] = STATE(5101), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_array_declarator_repeat1] = STATE(1345), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4665), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(4667), + [anon_sym_RBRACK] = ACTIONS(4669), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_constexpr] = ACTIONS(4553), + [anon_sym_volatile] = ACTIONS(4553), + [anon_sym_restrict] = ACTIONS(4553), + [anon_sym___restrict__] = ACTIONS(4553), + [anon_sym__Atomic] = ACTIONS(4553), + [anon_sym__Noreturn] = ACTIONS(4553), + [anon_sym_noreturn] = ACTIONS(4553), + [anon_sym__Nonnull] = ACTIONS(4553), + [anon_sym_mutable] = ACTIONS(4553), + [anon_sym_constinit] = ACTIONS(4553), + [anon_sym_consteval] = ACTIONS(4553), + [anon_sym_alignas] = ACTIONS(4555), + [anon_sym__Alignas] = ACTIONS(4555), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1349)] = { + [sym_identifier] = ACTIONS(1875), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_PIPE_PIPE] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym___extension__] = ACTIONS(1875), + [anon_sym_virtual] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym___attribute__] = ACTIONS(1875), + [anon_sym___attribute] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1873), + [anon_sym___declspec] = ACTIONS(1875), + [anon_sym___based] = ACTIONS(1875), + [anon_sym___cdecl] = ACTIONS(1875), + [anon_sym___clrcall] = ACTIONS(1875), + [anon_sym___stdcall] = ACTIONS(1875), + [anon_sym___fastcall] = ACTIONS(1875), + [anon_sym___thiscall] = ACTIONS(1875), + [anon_sym___vectorcall] = ACTIONS(1875), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_inline] = ACTIONS(1875), + [anon_sym___inline] = ACTIONS(1875), + [anon_sym___inline__] = ACTIONS(1875), + [anon_sym___forceinline] = ACTIONS(1875), + [anon_sym_thread_local] = ACTIONS(1875), + [anon_sym___thread] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_constexpr] = ACTIONS(1875), + [anon_sym_volatile] = ACTIONS(1875), + [anon_sym_restrict] = ACTIONS(1875), + [anon_sym___restrict__] = ACTIONS(1875), + [anon_sym__Atomic] = ACTIONS(1875), + [anon_sym__Noreturn] = ACTIONS(1875), + [anon_sym_noreturn] = ACTIONS(1875), + [anon_sym__Nonnull] = ACTIONS(1875), + [anon_sym_mutable] = ACTIONS(1875), + [anon_sym_constinit] = ACTIONS(1875), + [anon_sym_consteval] = ACTIONS(1875), + [anon_sym_alignas] = ACTIONS(1875), + [anon_sym__Alignas] = ACTIONS(1875), + [sym_primitive_type] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [anon_sym_or] = ACTIONS(1875), + [anon_sym_and] = ACTIONS(1875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1875), + [anon_sym_decltype] = ACTIONS(1875), + [anon_sym_explicit] = ACTIONS(1875), + [anon_sym_typename] = ACTIONS(1875), + [anon_sym_template] = ACTIONS(1875), + [anon_sym_operator] = ACTIONS(1875), + [anon_sym_friend] = ACTIONS(1875), + [anon_sym_using] = ACTIONS(1875), + [anon_sym_concept] = ACTIONS(1875), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1875), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1875), + [anon_sym_MOZ_COLD] = ACTIONS(1875), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1875), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1875), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1875), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1875), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1875), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1875), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1875), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1875), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1875), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1875), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1875), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1875), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL] = ACTIONS(1875), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1875), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1875), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN] = ACTIONS(1875), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1875), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1875), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1875), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1875), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1875), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1875), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1875), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1875), + [anon_sym_MOZ_RAII] = ACTIONS(1875), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1875), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1875), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1875), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1875), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1875), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1875), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1875), + }, + [STATE(1350)] = { + [sym_type_qualifier] = STATE(935), + [sym_alignas_qualifier] = STATE(955), + [aux_sym__type_definition_type_repeat1] = STATE(935), + [aux_sym_sized_type_specifier_repeat1] = STATE(1448), + [sym_identifier] = ACTIONS(4671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_RPAREN] = ACTIONS(4674), + [anon_sym_LPAREN2] = ACTIONS(4674), + [anon_sym_TILDE] = ACTIONS(4674), + [anon_sym_STAR] = ACTIONS(4674), + [anon_sym_AMP_AMP] = ACTIONS(4674), + [anon_sym_AMP] = ACTIONS(4676), + [anon_sym_SEMI] = ACTIONS(4674), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_virtual] = ACTIONS(4676), + [anon_sym_extern] = ACTIONS(4676), + [anon_sym___attribute__] = ACTIONS(4676), + [anon_sym___attribute] = ACTIONS(4676), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4674), + [anon_sym___declspec] = ACTIONS(4676), + [anon_sym___based] = ACTIONS(4676), + [anon_sym___cdecl] = ACTIONS(4676), + [anon_sym___clrcall] = ACTIONS(4676), + [anon_sym___stdcall] = ACTIONS(4676), + [anon_sym___fastcall] = ACTIONS(4676), + [anon_sym___thiscall] = ACTIONS(4676), + [anon_sym___vectorcall] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_signed] = ACTIONS(4681), + [anon_sym_unsigned] = ACTIONS(4681), + [anon_sym_long] = ACTIONS(4681), + [anon_sym_short] = ACTIONS(4681), + [anon_sym_LBRACK] = ACTIONS(4676), + [anon_sym_static] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4674), + [anon_sym_register] = ACTIONS(4676), + [anon_sym_inline] = ACTIONS(4676), + [anon_sym___inline] = ACTIONS(4676), + [anon_sym___inline__] = ACTIONS(4676), + [anon_sym___forceinline] = ACTIONS(4676), + [anon_sym_thread_local] = ACTIONS(4676), + [anon_sym___thread] = ACTIONS(4676), + [anon_sym_const] = ACTIONS(4678), + [anon_sym_constexpr] = ACTIONS(4678), + [anon_sym_volatile] = ACTIONS(4678), + [anon_sym_restrict] = ACTIONS(4678), + [anon_sym___restrict__] = ACTIONS(4678), + [anon_sym__Atomic] = ACTIONS(4678), + [anon_sym__Noreturn] = ACTIONS(4678), + [anon_sym_noreturn] = ACTIONS(4678), + [anon_sym__Nonnull] = ACTIONS(4678), + [anon_sym_mutable] = ACTIONS(4678), + [anon_sym_constinit] = ACTIONS(4678), + [anon_sym_consteval] = ACTIONS(4678), + [anon_sym_alignas] = ACTIONS(4683), + [anon_sym__Alignas] = ACTIONS(4683), + [sym_primitive_type] = ACTIONS(4686), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4676), + [anon_sym_decltype] = ACTIONS(4676), + [anon_sym_template] = ACTIONS(4676), + [anon_sym_GT2] = ACTIONS(4674), + [anon_sym_operator] = ACTIONS(4676), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4676), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4676), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4676), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4676), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4676), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4676), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4676), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4676), + [anon_sym_MOZ_COLD] = ACTIONS(4676), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4676), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4676), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4676), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4676), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4676), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4676), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4676), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4676), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4676), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4676), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4676), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4676), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4676), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4676), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4676), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4676), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4676), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4676), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4676), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4676), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4676), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4676), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4676), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4676), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4676), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4676), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4676), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4676), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4676), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4676), + [anon_sym_MOZ_NONNULL] = ACTIONS(4676), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4676), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4676), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4676), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4676), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4676), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4676), + [anon_sym_MOZ_NORETURN] = ACTIONS(4676), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4676), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4676), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4676), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4676), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4676), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4676), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4676), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4676), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4676), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4676), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4676), + [anon_sym_MOZ_RAII] = ACTIONS(4676), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4676), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4676), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4676), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4676), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4676), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4676), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4676), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4676), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4676), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4676), + }, + [STATE(1351)] = { + [sym_macro_annotation] = STATE(2825), + [sym_identifier] = ACTIONS(4688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [aux_sym_preproc_if_token2] = ACTIONS(4690), + [aux_sym_preproc_else_token1] = ACTIONS(4690), + [aux_sym_preproc_elif_token1] = ACTIONS(4688), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4688), + [anon_sym_PLUS] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(4688), + [anon_sym_SLASH] = ACTIONS(4688), + [anon_sym_PERCENT] = ACTIONS(4688), + [anon_sym_PIPE_PIPE] = ACTIONS(4690), + [anon_sym_AMP_AMP] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4688), + [anon_sym_CARET] = ACTIONS(4688), + [anon_sym_AMP] = ACTIONS(4688), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4688), + [anon_sym_GT_EQ] = ACTIONS(4690), + [anon_sym_LT_EQ] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4688), + [anon_sym_LT_LT] = ACTIONS(4688), + [anon_sym_GT_GT] = ACTIONS(4688), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym___attribute__] = ACTIONS(4688), + [anon_sym___attribute] = ACTIONS(4688), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4690), + [anon_sym_RBRACE] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4688), + [anon_sym_RBRACK] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4688), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_STAR_EQ] = ACTIONS(4690), + [anon_sym_SLASH_EQ] = ACTIONS(4690), + [anon_sym_PERCENT_EQ] = ACTIONS(4690), + [anon_sym_PLUS_EQ] = ACTIONS(4690), + [anon_sym_DASH_EQ] = ACTIONS(4690), + [anon_sym_LT_LT_EQ] = ACTIONS(4690), + [anon_sym_GT_GT_EQ] = ACTIONS(4690), + [anon_sym_AMP_EQ] = ACTIONS(4690), + [anon_sym_CARET_EQ] = ACTIONS(4690), + [anon_sym_PIPE_EQ] = ACTIONS(4690), + [anon_sym_and_eq] = ACTIONS(4688), + [anon_sym_or_eq] = ACTIONS(4688), + [anon_sym_xor_eq] = ACTIONS(4688), + [anon_sym_LT_EQ_GT] = ACTIONS(4690), + [anon_sym_or] = ACTIONS(4688), + [anon_sym_and] = ACTIONS(4688), + [anon_sym_bitor] = ACTIONS(4688), + [anon_sym_xor] = ACTIONS(4688), + [anon_sym_bitand] = ACTIONS(4688), + [anon_sym_not_eq] = ACTIONS(4688), + [anon_sym_DASH_DASH] = ACTIONS(4690), + [anon_sym_PLUS_PLUS] = ACTIONS(4690), + [anon_sym_DOT] = ACTIONS(4688), + [anon_sym_DOT_STAR] = ACTIONS(4690), + [anon_sym_DASH_GT] = ACTIONS(4690), + [sym_comment] = ACTIONS(3), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4692), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4692), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4692), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4692), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4692), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4692), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4692), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4692), + [anon_sym_MOZ_COLD] = ACTIONS(4692), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4692), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4692), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4692), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4692), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4692), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4692), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4692), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4692), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4692), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4692), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4692), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4692), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4692), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4692), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4692), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4692), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4692), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4692), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4692), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4692), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_NONNULL] = ACTIONS(4692), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4692), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4692), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4692), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4692), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4692), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_NORETURN] = ACTIONS(4692), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4692), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4692), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4692), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4692), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4692), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4692), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4692), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4692), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4692), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4692), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4692), + [anon_sym_MOZ_RAII] = ACTIONS(4692), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4692), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4692), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4692), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4692), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4692), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4692), + }, + [STATE(1352)] = { + [sym_macro_annotation] = STATE(2823), + [sym_identifier] = ACTIONS(4694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4696), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_RPAREN] = ACTIONS(4696), + [aux_sym_preproc_if_token2] = ACTIONS(4696), + [aux_sym_preproc_else_token1] = ACTIONS(4696), + [aux_sym_preproc_elif_token1] = ACTIONS(4694), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4696), + [anon_sym_LPAREN2] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4694), + [anon_sym_PLUS] = ACTIONS(4694), + [anon_sym_STAR] = ACTIONS(4694), + [anon_sym_SLASH] = ACTIONS(4694), + [anon_sym_PERCENT] = ACTIONS(4694), + [anon_sym_PIPE_PIPE] = ACTIONS(4696), + [anon_sym_AMP_AMP] = ACTIONS(4696), + [anon_sym_PIPE] = ACTIONS(4694), + [anon_sym_CARET] = ACTIONS(4694), + [anon_sym_AMP] = ACTIONS(4694), + [anon_sym_EQ_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ] = ACTIONS(4696), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_LT_EQ] = ACTIONS(4694), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_LT_LT] = ACTIONS(4694), + [anon_sym_GT_GT] = ACTIONS(4694), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym___attribute__] = ACTIONS(4694), + [anon_sym___attribute] = ACTIONS(4694), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4696), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_LBRACK] = ACTIONS(4694), + [anon_sym_RBRACK] = ACTIONS(4696), + [anon_sym_EQ] = ACTIONS(4694), + [anon_sym_COLON] = ACTIONS(4696), + [anon_sym_QMARK] = ACTIONS(4696), + [anon_sym_STAR_EQ] = ACTIONS(4696), + [anon_sym_SLASH_EQ] = ACTIONS(4696), + [anon_sym_PERCENT_EQ] = ACTIONS(4696), + [anon_sym_PLUS_EQ] = ACTIONS(4696), + [anon_sym_DASH_EQ] = ACTIONS(4696), + [anon_sym_LT_LT_EQ] = ACTIONS(4696), + [anon_sym_GT_GT_EQ] = ACTIONS(4696), + [anon_sym_AMP_EQ] = ACTIONS(4696), + [anon_sym_CARET_EQ] = ACTIONS(4696), + [anon_sym_PIPE_EQ] = ACTIONS(4696), + [anon_sym_and_eq] = ACTIONS(4694), + [anon_sym_or_eq] = ACTIONS(4694), + [anon_sym_xor_eq] = ACTIONS(4694), + [anon_sym_LT_EQ_GT] = ACTIONS(4696), + [anon_sym_or] = ACTIONS(4694), + [anon_sym_and] = ACTIONS(4694), + [anon_sym_bitor] = ACTIONS(4694), + [anon_sym_xor] = ACTIONS(4694), + [anon_sym_bitand] = ACTIONS(4694), + [anon_sym_not_eq] = ACTIONS(4694), + [anon_sym_DASH_DASH] = ACTIONS(4696), + [anon_sym_PLUS_PLUS] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_DOT_STAR] = ACTIONS(4696), + [anon_sym_DASH_GT] = ACTIONS(4696), + [sym_comment] = ACTIONS(3), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4692), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4692), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4692), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4692), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4692), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4692), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4692), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4692), + [anon_sym_MOZ_COLD] = ACTIONS(4692), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4692), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4692), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4692), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4692), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4692), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4692), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4692), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4692), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4692), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4692), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4692), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4692), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4692), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4692), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4692), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4692), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4692), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4692), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4692), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4692), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_NONNULL] = ACTIONS(4692), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4692), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4692), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4692), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4692), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4692), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_NORETURN] = ACTIONS(4692), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4692), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4692), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4692), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4692), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4692), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4692), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4692), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4692), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4692), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4692), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4692), + [anon_sym_MOZ_RAII] = ACTIONS(4692), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4692), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4692), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4692), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4692), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4692), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4692), + }, + [STATE(1353)] = { + [sym_macro_annotation] = STATE(2798), + [sym_identifier] = ACTIONS(4698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_RPAREN] = ACTIONS(4700), + [aux_sym_preproc_if_token2] = ACTIONS(4700), + [aux_sym_preproc_else_token1] = ACTIONS(4700), + [aux_sym_preproc_elif_token1] = ACTIONS(4698), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4700), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4700), + [anon_sym_LPAREN2] = ACTIONS(4700), + [anon_sym_DASH] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_STAR] = ACTIONS(4698), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_PERCENT] = ACTIONS(4698), + [anon_sym_PIPE_PIPE] = ACTIONS(4700), + [anon_sym_AMP_AMP] = ACTIONS(4700), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_CARET] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(4698), + [anon_sym_EQ_EQ] = ACTIONS(4700), + [anon_sym_BANG_EQ] = ACTIONS(4700), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4700), + [anon_sym_LT_EQ] = ACTIONS(4698), + [anon_sym_LT] = ACTIONS(4698), + [anon_sym_LT_LT] = ACTIONS(4698), + [anon_sym_GT_GT] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym___attribute__] = ACTIONS(4698), + [anon_sym___attribute] = ACTIONS(4698), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4700), + [anon_sym_RBRACE] = ACTIONS(4700), + [anon_sym_LBRACK] = ACTIONS(4698), + [anon_sym_RBRACK] = ACTIONS(4700), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_COLON] = ACTIONS(4700), + [anon_sym_QMARK] = ACTIONS(4700), + [anon_sym_STAR_EQ] = ACTIONS(4700), + [anon_sym_SLASH_EQ] = ACTIONS(4700), + [anon_sym_PERCENT_EQ] = ACTIONS(4700), + [anon_sym_PLUS_EQ] = ACTIONS(4700), + [anon_sym_DASH_EQ] = ACTIONS(4700), + [anon_sym_LT_LT_EQ] = ACTIONS(4700), + [anon_sym_GT_GT_EQ] = ACTIONS(4700), + [anon_sym_AMP_EQ] = ACTIONS(4700), + [anon_sym_CARET_EQ] = ACTIONS(4700), + [anon_sym_PIPE_EQ] = ACTIONS(4700), + [anon_sym_and_eq] = ACTIONS(4698), + [anon_sym_or_eq] = ACTIONS(4698), + [anon_sym_xor_eq] = ACTIONS(4698), + [anon_sym_LT_EQ_GT] = ACTIONS(4700), + [anon_sym_or] = ACTIONS(4698), + [anon_sym_and] = ACTIONS(4698), + [anon_sym_bitor] = ACTIONS(4698), + [anon_sym_xor] = ACTIONS(4698), + [anon_sym_bitand] = ACTIONS(4698), + [anon_sym_not_eq] = ACTIONS(4698), + [anon_sym_DASH_DASH] = ACTIONS(4700), + [anon_sym_PLUS_PLUS] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_DOT_STAR] = ACTIONS(4700), + [anon_sym_DASH_GT] = ACTIONS(4700), + [sym_comment] = ACTIONS(3), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4692), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4692), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4692), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4692), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4692), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4692), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4692), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4692), + [anon_sym_MOZ_COLD] = ACTIONS(4692), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4692), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4692), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4692), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4692), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4692), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4692), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4692), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4692), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4692), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4692), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4692), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4692), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4692), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4692), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4692), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4692), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4692), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4692), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4692), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4692), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4692), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_NONNULL] = ACTIONS(4692), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4692), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4692), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4692), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4692), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4692), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_NORETURN] = ACTIONS(4692), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4692), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4692), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4692), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4692), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4692), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4692), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4692), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4692), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4692), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4692), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4692), + [anon_sym_MOZ_RAII] = ACTIONS(4692), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4692), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4692), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4692), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4692), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4692), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4692), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4692), + }, + [STATE(1354)] = { + [sym__declaration_modifiers] = STATE(1400), + [sym_attribute_specifier] = STATE(1400), + [sym_attribute_declaration] = STATE(1400), + [sym_ms_declspec_modifier] = STATE(1400), + [sym_storage_class_specifier] = STATE(1400), + [sym_type_qualifier] = STATE(1400), + [sym_alignas_qualifier] = STATE(1593), + [sym_decltype_auto] = STATE(1422), + [sym_macro_annotation] = STATE(1618), + [aux_sym__declaration_specifiers_repeat1] = STATE(1400), + [sym_identifier] = ACTIONS(4702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4704), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_RPAREN] = ACTIONS(4704), + [anon_sym_LPAREN2] = ACTIONS(4704), + [anon_sym_TILDE] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4704), + [anon_sym_AMP_AMP] = ACTIONS(4704), + [anon_sym_AMP] = ACTIONS(4702), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4706), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4704), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(4702), + [anon_sym___cdecl] = ACTIONS(4702), + [anon_sym___clrcall] = ACTIONS(4702), + [anon_sym___stdcall] = ACTIONS(4702), + [anon_sym___fastcall] = ACTIONS(4702), + [anon_sym___thiscall] = ACTIONS(4702), + [anon_sym___vectorcall] = ACTIONS(4702), + [anon_sym_LBRACK] = ACTIONS(4702), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_EQ] = ACTIONS(4704), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4708), + [anon_sym_decltype] = ACTIONS(4710), + [anon_sym_template] = ACTIONS(4702), + [anon_sym_GT2] = ACTIONS(4704), + [anon_sym_operator] = ACTIONS(4702), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(1355)] = { + [sym__declaration_modifiers] = STATE(1423), + [sym_attribute_specifier] = STATE(1423), + [sym_attribute_declaration] = STATE(1423), + [sym_ms_declspec_modifier] = STATE(1423), + [sym_storage_class_specifier] = STATE(1423), + [sym_type_qualifier] = STATE(1423), + [sym_alignas_qualifier] = STATE(1593), + [sym_decltype_auto] = STATE(1422), + [sym_macro_annotation] = STATE(1618), + [aux_sym__declaration_specifiers_repeat1] = STATE(1423), + [sym_identifier] = ACTIONS(4712), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4714), + [anon_sym_COMMA] = ACTIONS(4714), + [anon_sym_RPAREN] = ACTIONS(4714), + [anon_sym_LPAREN2] = ACTIONS(4714), + [anon_sym_TILDE] = ACTIONS(4714), + [anon_sym_STAR] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4712), + [anon_sym_SEMI] = ACTIONS(4714), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4716), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4714), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(4712), + [anon_sym___cdecl] = ACTIONS(4712), + [anon_sym___clrcall] = ACTIONS(4712), + [anon_sym___stdcall] = ACTIONS(4712), + [anon_sym___fastcall] = ACTIONS(4712), + [anon_sym___thiscall] = ACTIONS(4712), + [anon_sym___vectorcall] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_EQ] = ACTIONS(4714), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4708), + [anon_sym_decltype] = ACTIONS(4710), + [anon_sym_template] = ACTIONS(4712), + [anon_sym_GT2] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(4712), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(1356)] = { + [sym_type_qualifier] = STATE(1350), + [sym_alignas_qualifier] = STATE(955), + [aux_sym__type_definition_type_repeat1] = STATE(1350), + [aux_sym_sized_type_specifier_repeat1] = STATE(1429), + [sym_identifier] = ACTIONS(4718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4721), + [anon_sym_COMMA] = ACTIONS(4721), + [anon_sym_RPAREN] = ACTIONS(4721), + [anon_sym_LPAREN2] = ACTIONS(4721), + [anon_sym_TILDE] = ACTIONS(4721), + [anon_sym_STAR] = ACTIONS(4721), + [anon_sym_AMP_AMP] = ACTIONS(4721), + [anon_sym_AMP] = ACTIONS(4723), + [anon_sym_SEMI] = ACTIONS(4721), + [anon_sym___extension__] = ACTIONS(4725), + [anon_sym_virtual] = ACTIONS(4723), + [anon_sym_extern] = ACTIONS(4723), + [anon_sym___attribute__] = ACTIONS(4723), + [anon_sym___attribute] = ACTIONS(4723), + [anon_sym_COLON_COLON] = ACTIONS(4721), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4721), + [anon_sym___declspec] = ACTIONS(4723), + [anon_sym___based] = ACTIONS(4723), + [anon_sym___cdecl] = ACTIONS(4723), + [anon_sym___clrcall] = ACTIONS(4723), + [anon_sym___stdcall] = ACTIONS(4723), + [anon_sym___fastcall] = ACTIONS(4723), + [anon_sym___thiscall] = ACTIONS(4723), + [anon_sym___vectorcall] = ACTIONS(4723), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_signed] = ACTIONS(4728), + [anon_sym_unsigned] = ACTIONS(4728), + [anon_sym_long] = ACTIONS(4728), + [anon_sym_short] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4723), + [anon_sym_static] = ACTIONS(4723), + [anon_sym_EQ] = ACTIONS(4721), + [anon_sym_register] = ACTIONS(4723), + [anon_sym_inline] = ACTIONS(4723), + [anon_sym___inline] = ACTIONS(4723), + [anon_sym___inline__] = ACTIONS(4723), + [anon_sym___forceinline] = ACTIONS(4723), + [anon_sym_thread_local] = ACTIONS(4723), + [anon_sym___thread] = ACTIONS(4723), + [anon_sym_const] = ACTIONS(4725), + [anon_sym_constexpr] = ACTIONS(4725), + [anon_sym_volatile] = ACTIONS(4725), + [anon_sym_restrict] = ACTIONS(4725), + [anon_sym___restrict__] = ACTIONS(4725), + [anon_sym__Atomic] = ACTIONS(4725), + [anon_sym__Noreturn] = ACTIONS(4725), + [anon_sym_noreturn] = ACTIONS(4725), + [anon_sym__Nonnull] = ACTIONS(4725), + [anon_sym_mutable] = ACTIONS(4725), + [anon_sym_constinit] = ACTIONS(4725), + [anon_sym_consteval] = ACTIONS(4725), + [anon_sym_alignas] = ACTIONS(4730), + [anon_sym__Alignas] = ACTIONS(4730), + [sym_primitive_type] = ACTIONS(4733), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4723), + [anon_sym_decltype] = ACTIONS(4723), + [anon_sym_template] = ACTIONS(4723), + [anon_sym_GT2] = ACTIONS(4721), + [anon_sym_operator] = ACTIONS(4723), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4723), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4723), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4723), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4723), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4723), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4723), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4723), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4723), + [anon_sym_MOZ_COLD] = ACTIONS(4723), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4723), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4723), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4723), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4723), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4723), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4723), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4723), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4723), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4723), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4723), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4723), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4723), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4723), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4723), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4723), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4723), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4723), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4723), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4723), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4723), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4723), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4723), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4723), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4723), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4723), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4723), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4723), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4723), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4723), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4723), + [anon_sym_MOZ_NONNULL] = ACTIONS(4723), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4723), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4723), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4723), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4723), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4723), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4723), + [anon_sym_MOZ_NORETURN] = ACTIONS(4723), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4723), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4723), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4723), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4723), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4723), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4723), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4723), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4723), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4723), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4723), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4723), + [anon_sym_MOZ_RAII] = ACTIONS(4723), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4723), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4723), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4723), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4723), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4723), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4723), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4723), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4723), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4723), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4723), + }, + [STATE(1357)] = { + [sym_identifier] = ACTIONS(4735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4737), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4737), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_TILDE] = ACTIONS(4737), + [anon_sym_STAR] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_SEMI] = ACTIONS(4737), + [anon_sym___extension__] = ACTIONS(4735), + [anon_sym_virtual] = ACTIONS(4735), + [anon_sym_extern] = ACTIONS(4735), + [anon_sym___attribute__] = ACTIONS(4735), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4737), + [anon_sym___declspec] = ACTIONS(4735), + [anon_sym___based] = ACTIONS(4735), + [anon_sym___cdecl] = ACTIONS(4735), + [anon_sym___clrcall] = ACTIONS(4735), + [anon_sym___stdcall] = ACTIONS(4735), + [anon_sym___fastcall] = ACTIONS(4735), + [anon_sym___thiscall] = ACTIONS(4735), + [anon_sym___vectorcall] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4737), + [anon_sym_LBRACK] = ACTIONS(4735), + [anon_sym_static] = ACTIONS(4735), + [anon_sym_EQ] = ACTIONS(4737), + [anon_sym_register] = ACTIONS(4735), + [anon_sym_inline] = ACTIONS(4735), + [anon_sym___inline] = ACTIONS(4735), + [anon_sym___inline__] = ACTIONS(4735), + [anon_sym___forceinline] = ACTIONS(4735), + [anon_sym_thread_local] = ACTIONS(4735), + [anon_sym___thread] = ACTIONS(4735), + [anon_sym_const] = ACTIONS(4735), + [anon_sym_constexpr] = ACTIONS(4735), + [anon_sym_volatile] = ACTIONS(4735), + [anon_sym_restrict] = ACTIONS(4735), + [anon_sym___restrict__] = ACTIONS(4735), + [anon_sym__Atomic] = ACTIONS(4735), + [anon_sym__Noreturn] = ACTIONS(4735), + [anon_sym_noreturn] = ACTIONS(4735), + [anon_sym__Nonnull] = ACTIONS(4735), + [anon_sym_mutable] = ACTIONS(4735), + [anon_sym_constinit] = ACTIONS(4735), + [anon_sym_consteval] = ACTIONS(4735), + [anon_sym_alignas] = ACTIONS(4735), + [anon_sym__Alignas] = ACTIONS(4735), + [anon_sym_COLON] = ACTIONS(4735), + [anon_sym_asm] = ACTIONS(4735), + [anon_sym___asm__] = ACTIONS(4735), + [anon_sym___asm] = ACTIONS(4735), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4735), + [anon_sym_decltype] = ACTIONS(4735), + [anon_sym_final] = ACTIONS(4735), + [anon_sym_override] = ACTIONS(4735), + [anon_sym_template] = ACTIONS(4735), + [anon_sym_GT2] = ACTIONS(4737), + [anon_sym_operator] = ACTIONS(4735), + [anon_sym_try] = ACTIONS(4735), + [anon_sym_requires] = ACTIONS(4735), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4735), + [anon_sym_MOZ_COLD] = ACTIONS(4735), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4735), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4735), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4735), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4735), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4735), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4735), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4735), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4735), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4735), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4735), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4735), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4735), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_RAII] = ACTIONS(4735), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4735), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4735), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4735), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4735), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4735), + }, + [STATE(1358)] = { + [sym_expression] = STATE(3457), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(4494), + [anon_sym_LPAREN2] = ACTIONS(4739), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(4742), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(4745), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(4748), + [anon_sym___extension__] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4500), + [anon_sym___based] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1914), + [anon_sym_template] = ACTIONS(1917), + [anon_sym_operator] = ACTIONS(1903), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1359)] = { + [sym_identifier] = ACTIONS(4754), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4756), + [anon_sym_COMMA] = ACTIONS(4756), + [anon_sym_RPAREN] = ACTIONS(4756), + [anon_sym_LPAREN2] = ACTIONS(4756), + [anon_sym_TILDE] = ACTIONS(4756), + [anon_sym_STAR] = ACTIONS(4756), + [anon_sym_AMP_AMP] = ACTIONS(4756), + [anon_sym_AMP] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym___extension__] = ACTIONS(4754), + [anon_sym_virtual] = ACTIONS(4754), + [anon_sym_extern] = ACTIONS(4754), + [anon_sym___attribute__] = ACTIONS(4754), + [anon_sym___attribute] = ACTIONS(4754), + [anon_sym_COLON_COLON] = ACTIONS(4756), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4756), + [anon_sym___declspec] = ACTIONS(4754), + [anon_sym___based] = ACTIONS(4754), + [anon_sym___cdecl] = ACTIONS(4754), + [anon_sym___clrcall] = ACTIONS(4754), + [anon_sym___stdcall] = ACTIONS(4754), + [anon_sym___fastcall] = ACTIONS(4754), + [anon_sym___thiscall] = ACTIONS(4754), + [anon_sym___vectorcall] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4756), + [anon_sym_LBRACK] = ACTIONS(4754), + [anon_sym_static] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4756), + [anon_sym_register] = ACTIONS(4754), + [anon_sym_inline] = ACTIONS(4754), + [anon_sym___inline] = ACTIONS(4754), + [anon_sym___inline__] = ACTIONS(4754), + [anon_sym___forceinline] = ACTIONS(4754), + [anon_sym_thread_local] = ACTIONS(4754), + [anon_sym___thread] = ACTIONS(4754), + [anon_sym_const] = ACTIONS(4754), + [anon_sym_constexpr] = ACTIONS(4754), + [anon_sym_volatile] = ACTIONS(4754), + [anon_sym_restrict] = ACTIONS(4754), + [anon_sym___restrict__] = ACTIONS(4754), + [anon_sym__Atomic] = ACTIONS(4754), + [anon_sym__Noreturn] = ACTIONS(4754), + [anon_sym_noreturn] = ACTIONS(4754), + [anon_sym__Nonnull] = ACTIONS(4754), + [anon_sym_mutable] = ACTIONS(4754), + [anon_sym_constinit] = ACTIONS(4754), + [anon_sym_consteval] = ACTIONS(4754), + [anon_sym_alignas] = ACTIONS(4754), + [anon_sym__Alignas] = ACTIONS(4754), + [anon_sym_COLON] = ACTIONS(4754), + [anon_sym_asm] = ACTIONS(4754), + [anon_sym___asm__] = ACTIONS(4754), + [anon_sym___asm] = ACTIONS(4754), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4754), + [anon_sym_decltype] = ACTIONS(4754), + [anon_sym_final] = ACTIONS(4754), + [anon_sym_override] = ACTIONS(4754), + [anon_sym_template] = ACTIONS(4754), + [anon_sym_GT2] = ACTIONS(4756), + [anon_sym_operator] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(4754), + [anon_sym_requires] = ACTIONS(4754), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4754), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4754), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4754), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4754), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4754), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4754), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4754), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4754), + [anon_sym_MOZ_COLD] = ACTIONS(4754), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4754), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4754), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4754), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4754), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4754), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4754), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4754), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4754), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4754), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4754), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4754), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4754), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4754), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4754), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4754), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4754), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4754), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4754), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4754), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4754), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4754), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4754), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4754), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4754), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4754), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4754), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4754), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4754), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4754), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4754), + [anon_sym_MOZ_NONNULL] = ACTIONS(4754), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4754), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4754), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4754), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4754), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4754), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4754), + [anon_sym_MOZ_NORETURN] = ACTIONS(4754), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4754), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4754), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4754), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4754), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4754), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4754), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4754), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4754), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4754), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4754), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4754), + [anon_sym_MOZ_RAII] = ACTIONS(4754), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4754), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4754), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4754), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4754), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4754), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4754), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4754), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4754), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4754), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4754), + }, + [STATE(1360)] = { + [sym_identifier] = ACTIONS(4758), + [anon_sym_LPAREN2] = ACTIONS(4760), + [anon_sym_TILDE] = ACTIONS(4760), + [anon_sym_STAR] = ACTIONS(4760), + [anon_sym_AMP_AMP] = ACTIONS(4760), + [anon_sym_AMP] = ACTIONS(4758), + [anon_sym___extension__] = ACTIONS(4758), + [anon_sym_virtual] = ACTIONS(4758), + [anon_sym_extern] = ACTIONS(4758), + [anon_sym___attribute__] = ACTIONS(4758), + [anon_sym___attribute] = ACTIONS(4758), + [anon_sym_COLON_COLON] = ACTIONS(4760), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4760), + [anon_sym___declspec] = ACTIONS(4758), + [anon_sym___based] = ACTIONS(4758), + [anon_sym___cdecl] = ACTIONS(4758), + [anon_sym___clrcall] = ACTIONS(4758), + [anon_sym___stdcall] = ACTIONS(4758), + [anon_sym___fastcall] = ACTIONS(4758), + [anon_sym___thiscall] = ACTIONS(4758), + [anon_sym___vectorcall] = ACTIONS(4758), + [anon_sym_signed] = ACTIONS(4758), + [anon_sym_unsigned] = ACTIONS(4758), + [anon_sym_long] = ACTIONS(4758), + [anon_sym_short] = ACTIONS(4758), + [anon_sym_LBRACK] = ACTIONS(4758), + [anon_sym_static] = ACTIONS(4758), + [anon_sym_register] = ACTIONS(4758), + [anon_sym_inline] = ACTIONS(4758), + [anon_sym___inline] = ACTIONS(4758), + [anon_sym___inline__] = ACTIONS(4758), + [anon_sym___forceinline] = ACTIONS(4758), + [anon_sym_thread_local] = ACTIONS(4758), + [anon_sym___thread] = ACTIONS(4758), + [anon_sym_const] = ACTIONS(4758), + [anon_sym_constexpr] = ACTIONS(4758), + [anon_sym_volatile] = ACTIONS(4758), + [anon_sym_restrict] = ACTIONS(4758), + [anon_sym___restrict__] = ACTIONS(4758), + [anon_sym__Atomic] = ACTIONS(4758), + [anon_sym__Noreturn] = ACTIONS(4758), + [anon_sym_noreturn] = ACTIONS(4758), + [anon_sym__Nonnull] = ACTIONS(4758), + [anon_sym_mutable] = ACTIONS(4758), + [anon_sym_constinit] = ACTIONS(4758), + [anon_sym_consteval] = ACTIONS(4758), + [anon_sym_alignas] = ACTIONS(4758), + [anon_sym__Alignas] = ACTIONS(4758), + [sym_primitive_type] = ACTIONS(4758), + [anon_sym_enum] = ACTIONS(4758), + [anon_sym_class] = ACTIONS(4758), + [anon_sym_struct] = ACTIONS(4758), + [anon_sym_union] = ACTIONS(4758), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4758), + [anon_sym_decltype] = ACTIONS(4758), + [anon_sym_explicit] = ACTIONS(4758), + [anon_sym_typename] = ACTIONS(4758), + [anon_sym_template] = ACTIONS(4758), + [anon_sym_operator] = ACTIONS(4758), + [anon_sym_friend] = ACTIONS(4758), + [anon_sym_using] = ACTIONS(4758), + [anon_sym_concept] = ACTIONS(4758), + [anon_sym_requires] = ACTIONS(4758), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4758), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4758), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4758), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4758), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4758), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4758), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4758), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4758), + [anon_sym_MOZ_COLD] = ACTIONS(4758), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4758), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4758), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4758), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4758), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4758), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4758), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4758), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4758), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4758), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4758), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4758), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4758), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4758), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4758), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4758), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4758), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4758), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4758), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4758), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4758), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4758), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4758), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4758), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4758), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4758), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4758), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4758), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4758), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4758), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4758), + [anon_sym_MOZ_NONNULL] = ACTIONS(4758), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4758), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4758), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4758), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4758), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4758), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4758), + [anon_sym_MOZ_NORETURN] = ACTIONS(4758), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4758), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4758), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4758), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4758), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4758), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4758), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4758), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4758), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4758), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4758), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4758), + [anon_sym_MOZ_RAII] = ACTIONS(4758), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4758), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4758), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4758), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4758), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4758), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4758), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4758), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4758), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4758), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4758), + }, + [STATE(1361)] = { + [sym_expression] = STATE(3297), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4762), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(4768), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym___extension__] = ACTIONS(4771), + [anon_sym_COLON_COLON] = ACTIONS(4774), + [anon_sym___based] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1914), + [anon_sym_template] = ACTIONS(1917), + [anon_sym_operator] = ACTIONS(1903), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1362)] = { + [sym_identifier] = ACTIONS(4777), + [anon_sym_LPAREN2] = ACTIONS(4779), + [anon_sym_TILDE] = ACTIONS(4779), + [anon_sym_STAR] = ACTIONS(4779), + [anon_sym_AMP_AMP] = ACTIONS(4779), + [anon_sym_AMP] = ACTIONS(4777), + [anon_sym___extension__] = ACTIONS(4777), + [anon_sym_virtual] = ACTIONS(4777), + [anon_sym_extern] = ACTIONS(4777), + [anon_sym___attribute__] = ACTIONS(4777), + [anon_sym___attribute] = ACTIONS(4777), + [anon_sym_COLON_COLON] = ACTIONS(4779), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4779), + [anon_sym___declspec] = ACTIONS(4777), + [anon_sym___based] = ACTIONS(4777), + [anon_sym___cdecl] = ACTIONS(4777), + [anon_sym___clrcall] = ACTIONS(4777), + [anon_sym___stdcall] = ACTIONS(4777), + [anon_sym___fastcall] = ACTIONS(4777), + [anon_sym___thiscall] = ACTIONS(4777), + [anon_sym___vectorcall] = ACTIONS(4777), + [anon_sym_signed] = ACTIONS(4777), + [anon_sym_unsigned] = ACTIONS(4777), + [anon_sym_long] = ACTIONS(4777), + [anon_sym_short] = ACTIONS(4777), + [anon_sym_LBRACK] = ACTIONS(4777), + [anon_sym_static] = ACTIONS(4777), + [anon_sym_register] = ACTIONS(4777), + [anon_sym_inline] = ACTIONS(4777), + [anon_sym___inline] = ACTIONS(4777), + [anon_sym___inline__] = ACTIONS(4777), + [anon_sym___forceinline] = ACTIONS(4777), + [anon_sym_thread_local] = ACTIONS(4777), + [anon_sym___thread] = ACTIONS(4777), + [anon_sym_const] = ACTIONS(4777), + [anon_sym_constexpr] = ACTIONS(4777), + [anon_sym_volatile] = ACTIONS(4777), + [anon_sym_restrict] = ACTIONS(4777), + [anon_sym___restrict__] = ACTIONS(4777), + [anon_sym__Atomic] = ACTIONS(4777), + [anon_sym__Noreturn] = ACTIONS(4777), + [anon_sym_noreturn] = ACTIONS(4777), + [anon_sym__Nonnull] = ACTIONS(4777), + [anon_sym_mutable] = ACTIONS(4777), + [anon_sym_constinit] = ACTIONS(4777), + [anon_sym_consteval] = ACTIONS(4777), + [anon_sym_alignas] = ACTIONS(4777), + [anon_sym__Alignas] = ACTIONS(4777), + [sym_primitive_type] = ACTIONS(4777), + [anon_sym_enum] = ACTIONS(4777), + [anon_sym_class] = ACTIONS(4777), + [anon_sym_struct] = ACTIONS(4777), + [anon_sym_union] = ACTIONS(4777), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4777), + [anon_sym_decltype] = ACTIONS(4777), + [anon_sym_explicit] = ACTIONS(4777), + [anon_sym_typename] = ACTIONS(4777), + [anon_sym_template] = ACTIONS(4777), + [anon_sym_operator] = ACTIONS(4777), + [anon_sym_friend] = ACTIONS(4777), + [anon_sym_using] = ACTIONS(4777), + [anon_sym_concept] = ACTIONS(4777), + [anon_sym_requires] = ACTIONS(4777), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4777), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4777), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4777), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4777), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4777), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4777), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4777), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4777), + [anon_sym_MOZ_COLD] = ACTIONS(4777), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4777), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4777), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4777), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4777), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4777), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4777), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4777), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4777), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4777), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4777), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4777), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4777), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4777), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4777), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4777), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4777), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4777), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4777), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4777), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4777), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4777), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4777), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4777), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4777), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4777), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4777), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4777), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4777), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4777), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4777), + [anon_sym_MOZ_NONNULL] = ACTIONS(4777), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4777), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4777), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4777), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4777), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4777), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4777), + [anon_sym_MOZ_NORETURN] = ACTIONS(4777), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4777), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4777), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4777), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4777), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4777), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4777), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4777), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4777), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4777), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4777), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4777), + [anon_sym_MOZ_RAII] = ACTIONS(4777), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4777), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4777), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4777), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4777), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4777), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4777), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4777), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4777), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4777), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4777), + }, + [STATE(1363)] = { + [sym_identifier] = ACTIONS(4781), + [anon_sym_LPAREN2] = ACTIONS(4783), + [anon_sym_TILDE] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4783), + [anon_sym_AMP_AMP] = ACTIONS(4783), + [anon_sym_AMP] = ACTIONS(4781), + [anon_sym___extension__] = ACTIONS(4781), + [anon_sym_virtual] = ACTIONS(4781), + [anon_sym_extern] = ACTIONS(4781), + [anon_sym___attribute__] = ACTIONS(4781), + [anon_sym___attribute] = ACTIONS(4781), + [anon_sym_COLON_COLON] = ACTIONS(4783), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4783), + [anon_sym___declspec] = ACTIONS(4781), + [anon_sym___based] = ACTIONS(4781), + [anon_sym___cdecl] = ACTIONS(4781), + [anon_sym___clrcall] = ACTIONS(4781), + [anon_sym___stdcall] = ACTIONS(4781), + [anon_sym___fastcall] = ACTIONS(4781), + [anon_sym___thiscall] = ACTIONS(4781), + [anon_sym___vectorcall] = ACTIONS(4781), + [anon_sym_signed] = ACTIONS(4781), + [anon_sym_unsigned] = ACTIONS(4781), + [anon_sym_long] = ACTIONS(4781), + [anon_sym_short] = ACTIONS(4781), + [anon_sym_LBRACK] = ACTIONS(4781), + [anon_sym_static] = ACTIONS(4781), + [anon_sym_register] = ACTIONS(4781), + [anon_sym_inline] = ACTIONS(4781), + [anon_sym___inline] = ACTIONS(4781), + [anon_sym___inline__] = ACTIONS(4781), + [anon_sym___forceinline] = ACTIONS(4781), + [anon_sym_thread_local] = ACTIONS(4781), + [anon_sym___thread] = ACTIONS(4781), + [anon_sym_const] = ACTIONS(4781), + [anon_sym_constexpr] = ACTIONS(4781), + [anon_sym_volatile] = ACTIONS(4781), + [anon_sym_restrict] = ACTIONS(4781), + [anon_sym___restrict__] = ACTIONS(4781), + [anon_sym__Atomic] = ACTIONS(4781), + [anon_sym__Noreturn] = ACTIONS(4781), + [anon_sym_noreturn] = ACTIONS(4781), + [anon_sym__Nonnull] = ACTIONS(4781), + [anon_sym_mutable] = ACTIONS(4781), + [anon_sym_constinit] = ACTIONS(4781), + [anon_sym_consteval] = ACTIONS(4781), + [anon_sym_alignas] = ACTIONS(4781), + [anon_sym__Alignas] = ACTIONS(4781), + [sym_primitive_type] = ACTIONS(4781), + [anon_sym_enum] = ACTIONS(4781), + [anon_sym_class] = ACTIONS(4781), + [anon_sym_struct] = ACTIONS(4781), + [anon_sym_union] = ACTIONS(4781), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4781), + [anon_sym_decltype] = ACTIONS(4781), + [anon_sym_explicit] = ACTIONS(4781), + [anon_sym_typename] = ACTIONS(4781), + [anon_sym_template] = ACTIONS(4781), + [anon_sym_operator] = ACTIONS(4781), + [anon_sym_friend] = ACTIONS(4781), + [anon_sym_using] = ACTIONS(4781), + [anon_sym_concept] = ACTIONS(4781), + [anon_sym_requires] = ACTIONS(4781), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4781), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4781), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4781), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4781), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4781), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4781), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4781), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4781), + [anon_sym_MOZ_COLD] = ACTIONS(4781), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4781), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4781), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4781), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4781), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4781), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4781), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4781), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4781), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4781), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4781), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4781), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4781), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4781), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4781), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4781), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4781), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4781), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4781), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4781), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4781), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4781), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4781), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4781), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4781), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4781), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4781), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4781), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4781), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4781), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4781), + [anon_sym_MOZ_NONNULL] = ACTIONS(4781), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4781), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4781), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4781), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4781), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4781), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4781), + [anon_sym_MOZ_NORETURN] = ACTIONS(4781), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4781), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4781), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4781), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4781), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4781), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4781), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4781), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4781), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4781), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4781), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4781), + [anon_sym_MOZ_RAII] = ACTIONS(4781), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4781), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4781), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4781), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4781), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4781), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4781), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4781), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4781), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4781), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4781), + }, + [STATE(1364)] = { + [sym_decltype_auto] = STATE(1422), + [sym_identifier] = ACTIONS(4785), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4787), + [anon_sym_COMMA] = ACTIONS(4787), + [anon_sym_RPAREN] = ACTIONS(4787), + [anon_sym_LPAREN2] = ACTIONS(4787), + [anon_sym_TILDE] = ACTIONS(4787), + [anon_sym_STAR] = ACTIONS(4787), + [anon_sym_AMP_AMP] = ACTIONS(4787), + [anon_sym_AMP] = ACTIONS(4785), + [anon_sym_SEMI] = ACTIONS(4787), + [anon_sym___extension__] = ACTIONS(4785), + [anon_sym_virtual] = ACTIONS(4785), + [anon_sym_extern] = ACTIONS(4785), + [anon_sym___attribute__] = ACTIONS(4785), + [anon_sym___attribute] = ACTIONS(4785), + [anon_sym_COLON_COLON] = ACTIONS(4787), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4787), + [anon_sym___declspec] = ACTIONS(4785), + [anon_sym___based] = ACTIONS(4785), + [anon_sym___cdecl] = ACTIONS(4785), + [anon_sym___clrcall] = ACTIONS(4785), + [anon_sym___stdcall] = ACTIONS(4785), + [anon_sym___fastcall] = ACTIONS(4785), + [anon_sym___thiscall] = ACTIONS(4785), + [anon_sym___vectorcall] = ACTIONS(4785), + [anon_sym_LBRACE] = ACTIONS(4787), + [anon_sym_LBRACK] = ACTIONS(4785), + [anon_sym_static] = ACTIONS(4785), + [anon_sym_EQ] = ACTIONS(4787), + [anon_sym_register] = ACTIONS(4785), + [anon_sym_inline] = ACTIONS(4785), + [anon_sym___inline] = ACTIONS(4785), + [anon_sym___inline__] = ACTIONS(4785), + [anon_sym___forceinline] = ACTIONS(4785), + [anon_sym_thread_local] = ACTIONS(4785), + [anon_sym___thread] = ACTIONS(4785), + [anon_sym_const] = ACTIONS(4785), + [anon_sym_constexpr] = ACTIONS(4785), + [anon_sym_volatile] = ACTIONS(4785), + [anon_sym_restrict] = ACTIONS(4785), + [anon_sym___restrict__] = ACTIONS(4785), + [anon_sym__Atomic] = ACTIONS(4785), + [anon_sym__Noreturn] = ACTIONS(4785), + [anon_sym_noreturn] = ACTIONS(4785), + [anon_sym__Nonnull] = ACTIONS(4785), + [anon_sym_mutable] = ACTIONS(4785), + [anon_sym_constinit] = ACTIONS(4785), + [anon_sym_consteval] = ACTIONS(4785), + [anon_sym_alignas] = ACTIONS(4785), + [anon_sym__Alignas] = ACTIONS(4785), + [anon_sym_asm] = ACTIONS(4785), + [anon_sym___asm__] = ACTIONS(4785), + [anon_sym___asm] = ACTIONS(4785), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4708), + [anon_sym_decltype] = ACTIONS(4710), + [anon_sym_final] = ACTIONS(4785), + [anon_sym_override] = ACTIONS(4785), + [anon_sym_template] = ACTIONS(4785), + [anon_sym_GT2] = ACTIONS(4787), + [anon_sym_operator] = ACTIONS(4785), + [anon_sym_try] = ACTIONS(4785), + [anon_sym_requires] = ACTIONS(4785), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4785), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4785), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4785), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4785), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4785), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4785), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4785), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4785), + [anon_sym_MOZ_COLD] = ACTIONS(4785), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4785), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4785), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4785), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4785), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4785), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4785), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4785), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4785), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4785), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4785), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4785), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4785), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4785), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4785), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4785), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4785), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4785), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4785), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4785), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4785), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4785), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4785), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4785), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4785), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4785), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4785), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4785), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4785), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4785), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4785), + [anon_sym_MOZ_NONNULL] = ACTIONS(4785), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4785), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4785), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4785), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4785), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4785), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4785), + [anon_sym_MOZ_NORETURN] = ACTIONS(4785), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4785), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4785), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4785), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4785), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4785), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4785), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4785), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4785), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4785), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4785), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4785), + [anon_sym_MOZ_RAII] = ACTIONS(4785), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4785), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4785), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4785), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4785), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4785), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4785), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4785), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4785), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4785), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4785), + }, + [STATE(1365)] = { + [sym_identifier] = ACTIONS(4789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4791), + [anon_sym_COMMA] = ACTIONS(4791), + [anon_sym_RPAREN] = ACTIONS(4791), + [anon_sym_LPAREN2] = ACTIONS(4791), + [anon_sym_TILDE] = ACTIONS(4791), + [anon_sym_STAR] = ACTIONS(4791), + [anon_sym_AMP_AMP] = ACTIONS(4791), + [anon_sym_AMP] = ACTIONS(4789), + [anon_sym_SEMI] = ACTIONS(4791), + [anon_sym___extension__] = ACTIONS(4789), + [anon_sym_virtual] = ACTIONS(4789), + [anon_sym_extern] = ACTIONS(4789), + [anon_sym___attribute__] = ACTIONS(4789), + [anon_sym___attribute] = ACTIONS(4789), + [anon_sym_COLON_COLON] = ACTIONS(4791), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4791), + [anon_sym___declspec] = ACTIONS(4789), + [anon_sym___based] = ACTIONS(4789), + [anon_sym___cdecl] = ACTIONS(4789), + [anon_sym___clrcall] = ACTIONS(4789), + [anon_sym___stdcall] = ACTIONS(4789), + [anon_sym___fastcall] = ACTIONS(4789), + [anon_sym___thiscall] = ACTIONS(4789), + [anon_sym___vectorcall] = ACTIONS(4789), + [anon_sym_LBRACE] = ACTIONS(4791), + [anon_sym_LBRACK] = ACTIONS(4789), + [anon_sym_static] = ACTIONS(4789), + [anon_sym_EQ] = ACTIONS(4791), + [anon_sym_register] = ACTIONS(4789), + [anon_sym_inline] = ACTIONS(4789), + [anon_sym___inline] = ACTIONS(4789), + [anon_sym___inline__] = ACTIONS(4789), + [anon_sym___forceinline] = ACTIONS(4789), + [anon_sym_thread_local] = ACTIONS(4789), + [anon_sym___thread] = ACTIONS(4789), + [anon_sym_const] = ACTIONS(4789), + [anon_sym_constexpr] = ACTIONS(4789), + [anon_sym_volatile] = ACTIONS(4789), + [anon_sym_restrict] = ACTIONS(4789), + [anon_sym___restrict__] = ACTIONS(4789), + [anon_sym__Atomic] = ACTIONS(4789), + [anon_sym__Noreturn] = ACTIONS(4789), + [anon_sym_noreturn] = ACTIONS(4789), + [anon_sym__Nonnull] = ACTIONS(4789), + [anon_sym_mutable] = ACTIONS(4789), + [anon_sym_constinit] = ACTIONS(4789), + [anon_sym_consteval] = ACTIONS(4789), + [anon_sym_alignas] = ACTIONS(4789), + [anon_sym__Alignas] = ACTIONS(4789), + [anon_sym_asm] = ACTIONS(4789), + [anon_sym___asm__] = ACTIONS(4789), + [anon_sym___asm] = ACTIONS(4789), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4789), + [anon_sym_decltype] = ACTIONS(4789), + [anon_sym_final] = ACTIONS(4789), + [anon_sym_override] = ACTIONS(4789), + [anon_sym_template] = ACTIONS(4789), + [anon_sym_GT2] = ACTIONS(4791), + [anon_sym_operator] = ACTIONS(4789), + [anon_sym_try] = ACTIONS(4789), + [anon_sym_requires] = ACTIONS(4789), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4789), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4789), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4789), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4789), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4789), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4789), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4789), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4789), + [anon_sym_MOZ_COLD] = ACTIONS(4789), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4789), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4789), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4789), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4789), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4789), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4789), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4789), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4789), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4789), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4789), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4789), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4789), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4789), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4789), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4789), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4789), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4789), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4789), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4789), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4789), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4789), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4789), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4789), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4789), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4789), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4789), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4789), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4789), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4789), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4789), + [anon_sym_MOZ_NONNULL] = ACTIONS(4789), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4789), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4789), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4789), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4789), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4789), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4789), + [anon_sym_MOZ_NORETURN] = ACTIONS(4789), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4789), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4789), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4789), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4789), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4789), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4789), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4789), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4789), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4789), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4789), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4789), + [anon_sym_MOZ_RAII] = ACTIONS(4789), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4789), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4789), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4789), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4789), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4789), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4789), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4789), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4789), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4789), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4789), + }, + [STATE(1366)] = { + [sym_identifier] = ACTIONS(4793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4795), + [anon_sym_COMMA] = ACTIONS(4795), + [anon_sym_RPAREN] = ACTIONS(4795), + [anon_sym_LPAREN2] = ACTIONS(4795), + [anon_sym_TILDE] = ACTIONS(4795), + [anon_sym_STAR] = ACTIONS(4795), + [anon_sym_AMP_AMP] = ACTIONS(4795), + [anon_sym_AMP] = ACTIONS(4793), + [anon_sym_SEMI] = ACTIONS(4795), + [anon_sym___extension__] = ACTIONS(4793), + [anon_sym_virtual] = ACTIONS(4793), + [anon_sym_extern] = ACTIONS(4793), + [anon_sym___attribute__] = ACTIONS(4793), + [anon_sym___attribute] = ACTIONS(4793), + [anon_sym_COLON_COLON] = ACTIONS(4795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4795), + [anon_sym___declspec] = ACTIONS(4793), + [anon_sym___based] = ACTIONS(4793), + [anon_sym___cdecl] = ACTIONS(4793), + [anon_sym___clrcall] = ACTIONS(4793), + [anon_sym___stdcall] = ACTIONS(4793), + [anon_sym___fastcall] = ACTIONS(4793), + [anon_sym___thiscall] = ACTIONS(4793), + [anon_sym___vectorcall] = ACTIONS(4793), + [anon_sym_LBRACE] = ACTIONS(4795), + [anon_sym_LBRACK] = ACTIONS(4793), + [anon_sym_static] = ACTIONS(4793), + [anon_sym_EQ] = ACTIONS(4795), + [anon_sym_register] = ACTIONS(4793), + [anon_sym_inline] = ACTIONS(4793), + [anon_sym___inline] = ACTIONS(4793), + [anon_sym___inline__] = ACTIONS(4793), + [anon_sym___forceinline] = ACTIONS(4793), + [anon_sym_thread_local] = ACTIONS(4793), + [anon_sym___thread] = ACTIONS(4793), + [anon_sym_const] = ACTIONS(4793), + [anon_sym_constexpr] = ACTIONS(4793), + [anon_sym_volatile] = ACTIONS(4793), + [anon_sym_restrict] = ACTIONS(4793), + [anon_sym___restrict__] = ACTIONS(4793), + [anon_sym__Atomic] = ACTIONS(4793), + [anon_sym__Noreturn] = ACTIONS(4793), + [anon_sym_noreturn] = ACTIONS(4793), + [anon_sym__Nonnull] = ACTIONS(4793), + [anon_sym_mutable] = ACTIONS(4793), + [anon_sym_constinit] = ACTIONS(4793), + [anon_sym_consteval] = ACTIONS(4793), + [anon_sym_alignas] = ACTIONS(4793), + [anon_sym__Alignas] = ACTIONS(4793), + [anon_sym_asm] = ACTIONS(4793), + [anon_sym___asm__] = ACTIONS(4793), + [anon_sym___asm] = ACTIONS(4793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4793), + [anon_sym_decltype] = ACTIONS(4793), + [anon_sym_final] = ACTIONS(4793), + [anon_sym_override] = ACTIONS(4793), + [anon_sym_template] = ACTIONS(4793), + [anon_sym_GT2] = ACTIONS(4795), + [anon_sym_operator] = ACTIONS(4793), + [anon_sym_try] = ACTIONS(4793), + [anon_sym_requires] = ACTIONS(4793), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4793), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4793), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4793), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4793), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4793), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4793), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4793), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4793), + [anon_sym_MOZ_COLD] = ACTIONS(4793), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4793), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4793), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4793), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4793), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4793), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4793), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4793), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4793), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4793), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4793), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4793), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4793), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4793), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4793), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4793), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4793), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4793), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4793), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4793), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4793), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4793), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4793), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4793), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4793), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4793), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4793), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4793), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4793), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4793), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4793), + [anon_sym_MOZ_NONNULL] = ACTIONS(4793), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4793), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4793), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4793), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4793), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4793), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4793), + [anon_sym_MOZ_NORETURN] = ACTIONS(4793), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4793), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4793), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4793), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4793), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4793), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4793), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4793), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4793), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4793), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4793), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4793), + [anon_sym_MOZ_RAII] = ACTIONS(4793), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4793), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4793), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4793), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4793), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4793), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4793), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4793), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4793), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4793), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4793), + }, + [STATE(1367)] = { + [sym_identifier] = ACTIONS(4797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4799), + [anon_sym_COMMA] = ACTIONS(4799), + [anon_sym_RPAREN] = ACTIONS(4799), + [anon_sym_LPAREN2] = ACTIONS(4799), + [anon_sym_TILDE] = ACTIONS(4799), + [anon_sym_STAR] = ACTIONS(4799), + [anon_sym_AMP_AMP] = ACTIONS(4799), + [anon_sym_AMP] = ACTIONS(4797), + [anon_sym_SEMI] = ACTIONS(4799), + [anon_sym___extension__] = ACTIONS(4797), + [anon_sym_virtual] = ACTIONS(4797), + [anon_sym_extern] = ACTIONS(4797), + [anon_sym___attribute__] = ACTIONS(4797), + [anon_sym___attribute] = ACTIONS(4797), + [anon_sym_COLON_COLON] = ACTIONS(4799), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4799), + [anon_sym___declspec] = ACTIONS(4797), + [anon_sym___based] = ACTIONS(4797), + [anon_sym___cdecl] = ACTIONS(4797), + [anon_sym___clrcall] = ACTIONS(4797), + [anon_sym___stdcall] = ACTIONS(4797), + [anon_sym___fastcall] = ACTIONS(4797), + [anon_sym___thiscall] = ACTIONS(4797), + [anon_sym___vectorcall] = ACTIONS(4797), + [anon_sym_LBRACE] = ACTIONS(4799), + [anon_sym_LBRACK] = ACTIONS(4797), + [anon_sym_static] = ACTIONS(4797), + [anon_sym_EQ] = ACTIONS(4799), + [anon_sym_register] = ACTIONS(4797), + [anon_sym_inline] = ACTIONS(4797), + [anon_sym___inline] = ACTIONS(4797), + [anon_sym___inline__] = ACTIONS(4797), + [anon_sym___forceinline] = ACTIONS(4797), + [anon_sym_thread_local] = ACTIONS(4797), + [anon_sym___thread] = ACTIONS(4797), + [anon_sym_const] = ACTIONS(4797), + [anon_sym_constexpr] = ACTIONS(4797), + [anon_sym_volatile] = ACTIONS(4797), + [anon_sym_restrict] = ACTIONS(4797), + [anon_sym___restrict__] = ACTIONS(4797), + [anon_sym__Atomic] = ACTIONS(4797), + [anon_sym__Noreturn] = ACTIONS(4797), + [anon_sym_noreturn] = ACTIONS(4797), + [anon_sym__Nonnull] = ACTIONS(4797), + [anon_sym_mutable] = ACTIONS(4797), + [anon_sym_constinit] = ACTIONS(4797), + [anon_sym_consteval] = ACTIONS(4797), + [anon_sym_alignas] = ACTIONS(4797), + [anon_sym__Alignas] = ACTIONS(4797), + [anon_sym_asm] = ACTIONS(4797), + [anon_sym___asm__] = ACTIONS(4797), + [anon_sym___asm] = ACTIONS(4797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4797), + [anon_sym_decltype] = ACTIONS(4797), + [anon_sym_final] = ACTIONS(4797), + [anon_sym_override] = ACTIONS(4797), + [anon_sym_template] = ACTIONS(4797), + [anon_sym_GT2] = ACTIONS(4799), + [anon_sym_operator] = ACTIONS(4797), + [anon_sym_try] = ACTIONS(4797), + [anon_sym_requires] = ACTIONS(4797), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4797), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4797), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4797), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4797), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4797), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4797), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4797), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4797), + [anon_sym_MOZ_COLD] = ACTIONS(4797), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4797), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4797), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4797), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4797), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4797), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4797), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4797), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4797), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4797), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4797), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4797), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4797), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4797), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4797), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4797), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4797), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4797), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4797), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4797), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4797), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4797), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4797), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4797), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4797), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4797), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4797), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4797), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4797), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4797), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4797), + [anon_sym_MOZ_NONNULL] = ACTIONS(4797), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4797), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4797), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4797), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4797), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4797), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4797), + [anon_sym_MOZ_NORETURN] = ACTIONS(4797), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4797), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4797), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4797), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4797), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4797), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4797), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4797), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4797), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4797), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4797), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4797), + [anon_sym_MOZ_RAII] = ACTIONS(4797), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4797), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4797), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4797), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4797), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4797), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4797), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4797), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4797), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4797), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4797), + }, + [STATE(1368)] = { + [sym_identifier] = ACTIONS(4801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4803), + [anon_sym_COMMA] = ACTIONS(4803), + [anon_sym_RPAREN] = ACTIONS(4803), + [anon_sym_LPAREN2] = ACTIONS(4803), + [anon_sym_TILDE] = ACTIONS(4803), + [anon_sym_STAR] = ACTIONS(4803), + [anon_sym_AMP_AMP] = ACTIONS(4803), + [anon_sym_AMP] = ACTIONS(4801), + [anon_sym_SEMI] = ACTIONS(4803), + [anon_sym___extension__] = ACTIONS(4801), + [anon_sym_virtual] = ACTIONS(4801), + [anon_sym_extern] = ACTIONS(4801), + [anon_sym___attribute__] = ACTIONS(4801), + [anon_sym___attribute] = ACTIONS(4801), + [anon_sym_COLON_COLON] = ACTIONS(4803), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4803), + [anon_sym___declspec] = ACTIONS(4801), + [anon_sym___based] = ACTIONS(4801), + [anon_sym___cdecl] = ACTIONS(4801), + [anon_sym___clrcall] = ACTIONS(4801), + [anon_sym___stdcall] = ACTIONS(4801), + [anon_sym___fastcall] = ACTIONS(4801), + [anon_sym___thiscall] = ACTIONS(4801), + [anon_sym___vectorcall] = ACTIONS(4801), + [anon_sym_LBRACE] = ACTIONS(4803), + [anon_sym_LBRACK] = ACTIONS(4801), + [anon_sym_static] = ACTIONS(4801), + [anon_sym_EQ] = ACTIONS(4803), + [anon_sym_register] = ACTIONS(4801), + [anon_sym_inline] = ACTIONS(4801), + [anon_sym___inline] = ACTIONS(4801), + [anon_sym___inline__] = ACTIONS(4801), + [anon_sym___forceinline] = ACTIONS(4801), + [anon_sym_thread_local] = ACTIONS(4801), + [anon_sym___thread] = ACTIONS(4801), + [anon_sym_const] = ACTIONS(4801), + [anon_sym_constexpr] = ACTIONS(4801), + [anon_sym_volatile] = ACTIONS(4801), + [anon_sym_restrict] = ACTIONS(4801), + [anon_sym___restrict__] = ACTIONS(4801), + [anon_sym__Atomic] = ACTIONS(4801), + [anon_sym__Noreturn] = ACTIONS(4801), + [anon_sym_noreturn] = ACTIONS(4801), + [anon_sym__Nonnull] = ACTIONS(4801), + [anon_sym_mutable] = ACTIONS(4801), + [anon_sym_constinit] = ACTIONS(4801), + [anon_sym_consteval] = ACTIONS(4801), + [anon_sym_alignas] = ACTIONS(4801), + [anon_sym__Alignas] = ACTIONS(4801), + [anon_sym_asm] = ACTIONS(4801), + [anon_sym___asm__] = ACTIONS(4801), + [anon_sym___asm] = ACTIONS(4801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4801), + [anon_sym_decltype] = ACTIONS(4801), + [anon_sym_final] = ACTIONS(4801), + [anon_sym_override] = ACTIONS(4801), + [anon_sym_template] = ACTIONS(4801), + [anon_sym_GT2] = ACTIONS(4803), + [anon_sym_operator] = ACTIONS(4801), + [anon_sym_try] = ACTIONS(4801), + [anon_sym_requires] = ACTIONS(4801), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4801), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4801), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4801), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4801), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4801), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4801), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4801), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4801), + [anon_sym_MOZ_COLD] = ACTIONS(4801), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4801), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4801), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4801), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4801), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4801), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4801), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4801), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4801), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4801), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4801), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4801), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4801), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4801), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4801), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4801), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4801), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4801), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4801), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4801), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4801), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4801), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4801), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4801), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4801), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4801), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4801), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4801), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4801), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4801), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4801), + [anon_sym_MOZ_NONNULL] = ACTIONS(4801), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4801), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4801), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4801), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4801), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4801), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4801), + [anon_sym_MOZ_NORETURN] = ACTIONS(4801), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4801), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4801), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4801), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4801), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4801), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4801), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4801), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4801), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4801), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4801), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4801), + [anon_sym_MOZ_RAII] = ACTIONS(4801), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4801), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4801), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4801), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4801), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4801), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4801), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4801), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4801), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4801), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4801), + }, + [STATE(1369)] = { + [sym_identifier] = ACTIONS(4805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4807), + [anon_sym_COMMA] = ACTIONS(4807), + [anon_sym_RPAREN] = ACTIONS(4807), + [anon_sym_LPAREN2] = ACTIONS(4807), + [anon_sym_TILDE] = ACTIONS(4807), + [anon_sym_STAR] = ACTIONS(4807), + [anon_sym_AMP_AMP] = ACTIONS(4807), + [anon_sym_AMP] = ACTIONS(4805), + [anon_sym_SEMI] = ACTIONS(4807), + [anon_sym___extension__] = ACTIONS(4805), + [anon_sym_virtual] = ACTIONS(4805), + [anon_sym_extern] = ACTIONS(4805), + [anon_sym___attribute__] = ACTIONS(4805), + [anon_sym___attribute] = ACTIONS(4805), + [anon_sym_COLON_COLON] = ACTIONS(4807), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4807), + [anon_sym___declspec] = ACTIONS(4805), + [anon_sym___based] = ACTIONS(4805), + [anon_sym___cdecl] = ACTIONS(4805), + [anon_sym___clrcall] = ACTIONS(4805), + [anon_sym___stdcall] = ACTIONS(4805), + [anon_sym___fastcall] = ACTIONS(4805), + [anon_sym___thiscall] = ACTIONS(4805), + [anon_sym___vectorcall] = ACTIONS(4805), + [anon_sym_LBRACE] = ACTIONS(4807), + [anon_sym_LBRACK] = ACTIONS(4805), + [anon_sym_static] = ACTIONS(4805), + [anon_sym_EQ] = ACTIONS(4807), + [anon_sym_register] = ACTIONS(4805), + [anon_sym_inline] = ACTIONS(4805), + [anon_sym___inline] = ACTIONS(4805), + [anon_sym___inline__] = ACTIONS(4805), + [anon_sym___forceinline] = ACTIONS(4805), + [anon_sym_thread_local] = ACTIONS(4805), + [anon_sym___thread] = ACTIONS(4805), + [anon_sym_const] = ACTIONS(4805), + [anon_sym_constexpr] = ACTIONS(4805), + [anon_sym_volatile] = ACTIONS(4805), + [anon_sym_restrict] = ACTIONS(4805), + [anon_sym___restrict__] = ACTIONS(4805), + [anon_sym__Atomic] = ACTIONS(4805), + [anon_sym__Noreturn] = ACTIONS(4805), + [anon_sym_noreturn] = ACTIONS(4805), + [anon_sym__Nonnull] = ACTIONS(4805), + [anon_sym_mutable] = ACTIONS(4805), + [anon_sym_constinit] = ACTIONS(4805), + [anon_sym_consteval] = ACTIONS(4805), + [anon_sym_alignas] = ACTIONS(4805), + [anon_sym__Alignas] = ACTIONS(4805), + [anon_sym_asm] = ACTIONS(4805), + [anon_sym___asm__] = ACTIONS(4805), + [anon_sym___asm] = ACTIONS(4805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4805), + [anon_sym_decltype] = ACTIONS(4805), + [anon_sym_final] = ACTIONS(4805), + [anon_sym_override] = ACTIONS(4805), + [anon_sym_template] = ACTIONS(4805), + [anon_sym_GT2] = ACTIONS(4807), + [anon_sym_operator] = ACTIONS(4805), + [anon_sym_try] = ACTIONS(4805), + [anon_sym_requires] = ACTIONS(4805), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4805), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4805), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4805), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4805), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4805), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4805), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4805), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4805), + [anon_sym_MOZ_COLD] = ACTIONS(4805), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4805), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4805), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4805), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4805), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4805), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4805), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4805), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4805), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4805), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4805), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4805), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4805), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4805), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4805), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4805), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4805), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4805), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4805), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4805), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4805), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4805), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4805), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4805), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4805), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4805), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4805), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4805), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4805), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4805), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4805), + [anon_sym_MOZ_NONNULL] = ACTIONS(4805), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4805), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4805), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4805), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4805), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4805), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4805), + [anon_sym_MOZ_NORETURN] = ACTIONS(4805), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4805), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4805), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4805), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4805), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4805), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4805), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4805), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4805), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4805), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4805), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4805), + [anon_sym_MOZ_RAII] = ACTIONS(4805), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4805), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4805), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4805), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4805), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4805), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4805), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4805), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4805), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4805), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4805), + }, + [STATE(1370)] = { + [sym_identifier] = ACTIONS(4809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_LPAREN2] = ACTIONS(4811), + [anon_sym_TILDE] = ACTIONS(4811), + [anon_sym_STAR] = ACTIONS(4811), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_AMP] = ACTIONS(4809), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym___extension__] = ACTIONS(4809), + [anon_sym_virtual] = ACTIONS(4809), + [anon_sym_extern] = ACTIONS(4809), + [anon_sym___attribute__] = ACTIONS(4809), + [anon_sym___attribute] = ACTIONS(4809), + [anon_sym_COLON_COLON] = ACTIONS(4811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4811), + [anon_sym___declspec] = ACTIONS(4809), + [anon_sym___based] = ACTIONS(4809), + [anon_sym___cdecl] = ACTIONS(4809), + [anon_sym___clrcall] = ACTIONS(4809), + [anon_sym___stdcall] = ACTIONS(4809), + [anon_sym___fastcall] = ACTIONS(4809), + [anon_sym___thiscall] = ACTIONS(4809), + [anon_sym___vectorcall] = ACTIONS(4809), + [anon_sym_LBRACE] = ACTIONS(4811), + [anon_sym_LBRACK] = ACTIONS(4809), + [anon_sym_static] = ACTIONS(4809), + [anon_sym_EQ] = ACTIONS(4811), + [anon_sym_register] = ACTIONS(4809), + [anon_sym_inline] = ACTIONS(4809), + [anon_sym___inline] = ACTIONS(4809), + [anon_sym___inline__] = ACTIONS(4809), + [anon_sym___forceinline] = ACTIONS(4809), + [anon_sym_thread_local] = ACTIONS(4809), + [anon_sym___thread] = ACTIONS(4809), + [anon_sym_const] = ACTIONS(4809), + [anon_sym_constexpr] = ACTIONS(4809), + [anon_sym_volatile] = ACTIONS(4809), + [anon_sym_restrict] = ACTIONS(4809), + [anon_sym___restrict__] = ACTIONS(4809), + [anon_sym__Atomic] = ACTIONS(4809), + [anon_sym__Noreturn] = ACTIONS(4809), + [anon_sym_noreturn] = ACTIONS(4809), + [anon_sym__Nonnull] = ACTIONS(4809), + [anon_sym_mutable] = ACTIONS(4809), + [anon_sym_constinit] = ACTIONS(4809), + [anon_sym_consteval] = ACTIONS(4809), + [anon_sym_alignas] = ACTIONS(4809), + [anon_sym__Alignas] = ACTIONS(4809), + [anon_sym_asm] = ACTIONS(4809), + [anon_sym___asm__] = ACTIONS(4809), + [anon_sym___asm] = ACTIONS(4809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4809), + [anon_sym_decltype] = ACTIONS(4809), + [anon_sym_final] = ACTIONS(4809), + [anon_sym_override] = ACTIONS(4809), + [anon_sym_template] = ACTIONS(4809), + [anon_sym_GT2] = ACTIONS(4811), + [anon_sym_operator] = ACTIONS(4809), + [anon_sym_try] = ACTIONS(4809), + [anon_sym_requires] = ACTIONS(4809), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4809), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4809), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4809), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4809), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4809), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4809), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4809), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4809), + [anon_sym_MOZ_COLD] = ACTIONS(4809), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4809), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4809), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4809), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4809), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4809), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4809), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4809), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4809), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4809), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4809), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4809), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4809), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4809), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4809), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4809), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4809), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4809), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4809), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4809), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4809), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4809), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4809), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4809), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4809), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4809), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4809), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4809), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4809), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4809), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4809), + [anon_sym_MOZ_NONNULL] = ACTIONS(4809), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4809), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4809), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4809), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4809), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4809), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4809), + [anon_sym_MOZ_NORETURN] = ACTIONS(4809), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4809), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4809), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4809), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4809), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4809), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4809), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4809), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4809), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4809), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4809), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4809), + [anon_sym_MOZ_RAII] = ACTIONS(4809), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4809), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4809), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4809), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4809), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4809), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4809), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4809), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4809), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4809), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4809), + }, + [STATE(1371)] = { + [sym_identifier] = ACTIONS(4813), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4815), + [anon_sym_COMMA] = ACTIONS(4815), + [anon_sym_RPAREN] = ACTIONS(4815), + [anon_sym_LPAREN2] = ACTIONS(4815), + [anon_sym_TILDE] = ACTIONS(4815), + [anon_sym_STAR] = ACTIONS(4815), + [anon_sym_AMP_AMP] = ACTIONS(4815), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_SEMI] = ACTIONS(4815), + [anon_sym___extension__] = ACTIONS(4813), + [anon_sym_virtual] = ACTIONS(4813), + [anon_sym_extern] = ACTIONS(4813), + [anon_sym___attribute__] = ACTIONS(4813), + [anon_sym___attribute] = ACTIONS(4813), + [anon_sym_COLON_COLON] = ACTIONS(4815), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4815), + [anon_sym___declspec] = ACTIONS(4813), + [anon_sym___based] = ACTIONS(4813), + [anon_sym___cdecl] = ACTIONS(4813), + [anon_sym___clrcall] = ACTIONS(4813), + [anon_sym___stdcall] = ACTIONS(4813), + [anon_sym___fastcall] = ACTIONS(4813), + [anon_sym___thiscall] = ACTIONS(4813), + [anon_sym___vectorcall] = ACTIONS(4813), + [anon_sym_LBRACE] = ACTIONS(4815), + [anon_sym_LBRACK] = ACTIONS(4813), + [anon_sym_static] = ACTIONS(4813), + [anon_sym_EQ] = ACTIONS(4815), + [anon_sym_register] = ACTIONS(4813), + [anon_sym_inline] = ACTIONS(4813), + [anon_sym___inline] = ACTIONS(4813), + [anon_sym___inline__] = ACTIONS(4813), + [anon_sym___forceinline] = ACTIONS(4813), + [anon_sym_thread_local] = ACTIONS(4813), + [anon_sym___thread] = ACTIONS(4813), + [anon_sym_const] = ACTIONS(4813), + [anon_sym_constexpr] = ACTIONS(4813), + [anon_sym_volatile] = ACTIONS(4813), + [anon_sym_restrict] = ACTIONS(4813), + [anon_sym___restrict__] = ACTIONS(4813), + [anon_sym__Atomic] = ACTIONS(4813), + [anon_sym__Noreturn] = ACTIONS(4813), + [anon_sym_noreturn] = ACTIONS(4813), + [anon_sym__Nonnull] = ACTIONS(4813), + [anon_sym_mutable] = ACTIONS(4813), + [anon_sym_constinit] = ACTIONS(4813), + [anon_sym_consteval] = ACTIONS(4813), + [anon_sym_alignas] = ACTIONS(4813), + [anon_sym__Alignas] = ACTIONS(4813), + [anon_sym_asm] = ACTIONS(4813), + [anon_sym___asm__] = ACTIONS(4813), + [anon_sym___asm] = ACTIONS(4813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4813), + [anon_sym_decltype] = ACTIONS(4813), + [anon_sym_final] = ACTIONS(4813), + [anon_sym_override] = ACTIONS(4813), + [anon_sym_template] = ACTIONS(4813), + [anon_sym_GT2] = ACTIONS(4815), + [anon_sym_operator] = ACTIONS(4813), + [anon_sym_try] = ACTIONS(4813), + [anon_sym_requires] = ACTIONS(4813), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4813), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4813), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4813), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4813), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4813), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4813), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4813), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4813), + [anon_sym_MOZ_COLD] = ACTIONS(4813), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4813), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4813), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4813), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4813), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4813), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4813), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4813), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4813), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4813), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4813), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4813), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4813), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4813), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4813), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4813), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4813), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4813), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4813), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4813), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4813), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4813), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4813), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4813), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4813), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4813), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4813), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4813), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4813), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4813), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4813), + [anon_sym_MOZ_NONNULL] = ACTIONS(4813), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4813), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4813), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4813), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4813), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4813), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4813), + [anon_sym_MOZ_NORETURN] = ACTIONS(4813), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4813), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4813), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4813), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4813), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4813), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4813), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4813), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4813), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4813), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4813), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4813), + [anon_sym_MOZ_RAII] = ACTIONS(4813), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4813), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4813), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4813), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4813), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4813), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4813), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4813), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4813), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4813), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4813), + }, + [STATE(1372)] = { + [sym_identifier] = ACTIONS(4817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4819), + [anon_sym_COMMA] = ACTIONS(4819), + [anon_sym_RPAREN] = ACTIONS(4819), + [anon_sym_LPAREN2] = ACTIONS(4819), + [anon_sym_TILDE] = ACTIONS(4819), + [anon_sym_STAR] = ACTIONS(4819), + [anon_sym_AMP_AMP] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4819), + [anon_sym___extension__] = ACTIONS(4817), + [anon_sym_virtual] = ACTIONS(4817), + [anon_sym_extern] = ACTIONS(4817), + [anon_sym___attribute__] = ACTIONS(4817), + [anon_sym___attribute] = ACTIONS(4817), + [anon_sym_COLON_COLON] = ACTIONS(4819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4819), + [anon_sym___declspec] = ACTIONS(4817), + [anon_sym___based] = ACTIONS(4817), + [anon_sym___cdecl] = ACTIONS(4817), + [anon_sym___clrcall] = ACTIONS(4817), + [anon_sym___stdcall] = ACTIONS(4817), + [anon_sym___fastcall] = ACTIONS(4817), + [anon_sym___thiscall] = ACTIONS(4817), + [anon_sym___vectorcall] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(4817), + [anon_sym_static] = ACTIONS(4817), + [anon_sym_EQ] = ACTIONS(4819), + [anon_sym_register] = ACTIONS(4817), + [anon_sym_inline] = ACTIONS(4817), + [anon_sym___inline] = ACTIONS(4817), + [anon_sym___inline__] = ACTIONS(4817), + [anon_sym___forceinline] = ACTIONS(4817), + [anon_sym_thread_local] = ACTIONS(4817), + [anon_sym___thread] = ACTIONS(4817), + [anon_sym_const] = ACTIONS(4817), + [anon_sym_constexpr] = ACTIONS(4817), + [anon_sym_volatile] = ACTIONS(4817), + [anon_sym_restrict] = ACTIONS(4817), + [anon_sym___restrict__] = ACTIONS(4817), + [anon_sym__Atomic] = ACTIONS(4817), + [anon_sym__Noreturn] = ACTIONS(4817), + [anon_sym_noreturn] = ACTIONS(4817), + [anon_sym__Nonnull] = ACTIONS(4817), + [anon_sym_mutable] = ACTIONS(4817), + [anon_sym_constinit] = ACTIONS(4817), + [anon_sym_consteval] = ACTIONS(4817), + [anon_sym_alignas] = ACTIONS(4817), + [anon_sym__Alignas] = ACTIONS(4817), + [anon_sym_asm] = ACTIONS(4817), + [anon_sym___asm__] = ACTIONS(4817), + [anon_sym___asm] = ACTIONS(4817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4817), + [anon_sym_decltype] = ACTIONS(4817), + [anon_sym_final] = ACTIONS(4817), + [anon_sym_override] = ACTIONS(4817), + [anon_sym_template] = ACTIONS(4817), + [anon_sym_GT2] = ACTIONS(4819), + [anon_sym_operator] = ACTIONS(4817), + [anon_sym_try] = ACTIONS(4817), + [anon_sym_requires] = ACTIONS(4817), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4817), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4817), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4817), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4817), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4817), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4817), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4817), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4817), + [anon_sym_MOZ_COLD] = ACTIONS(4817), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4817), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4817), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4817), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4817), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4817), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4817), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4817), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4817), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4817), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4817), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4817), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4817), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4817), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4817), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4817), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4817), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4817), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4817), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4817), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4817), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4817), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4817), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4817), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4817), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4817), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4817), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4817), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4817), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4817), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4817), + [anon_sym_MOZ_NONNULL] = ACTIONS(4817), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4817), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4817), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4817), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4817), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4817), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4817), + [anon_sym_MOZ_NORETURN] = ACTIONS(4817), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4817), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4817), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4817), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4817), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4817), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4817), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4817), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4817), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4817), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4817), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4817), + [anon_sym_MOZ_RAII] = ACTIONS(4817), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4817), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4817), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4817), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4817), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4817), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4817), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4817), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4817), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4817), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4817), + }, + [STATE(1373)] = { + [sym_expression] = STATE(4882), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4821), + [anon_sym_LPAREN2] = ACTIONS(4824), + [anon_sym_BANG] = ACTIONS(4827), + [anon_sym_TILDE] = ACTIONS(4827), + [anon_sym_DASH] = ACTIONS(4830), + [anon_sym_PLUS] = ACTIONS(4830), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym___extension__] = ACTIONS(4833), + [anon_sym_COLON_COLON] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_RBRACK] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1911), + [anon_sym_not] = ACTIONS(4830), + [anon_sym_compl] = ACTIONS(4830), + [anon_sym_DASH_DASH] = ACTIONS(4839), + [anon_sym_PLUS_PLUS] = ACTIONS(4839), + [anon_sym_sizeof] = ACTIONS(4842), + [anon_sym___alignof__] = ACTIONS(4845), + [anon_sym___alignof] = ACTIONS(4845), + [anon_sym__alignof] = ACTIONS(4845), + [anon_sym_alignof] = ACTIONS(4845), + [anon_sym__Alignof] = ACTIONS(4845), + [anon_sym_offsetof] = ACTIONS(4848), + [anon_sym__Generic] = ACTIONS(4851), + [anon_sym_asm] = ACTIONS(4854), + [anon_sym___asm__] = ACTIONS(4854), + [anon_sym___asm] = ACTIONS(4854), + [sym_number_literal] = ACTIONS(4857), + [anon_sym_L_SQUOTE] = ACTIONS(4860), + [anon_sym_u_SQUOTE] = ACTIONS(4860), + [anon_sym_U_SQUOTE] = ACTIONS(4860), + [anon_sym_u8_SQUOTE] = ACTIONS(4860), + [anon_sym_SQUOTE] = ACTIONS(4860), + [anon_sym_L_DQUOTE] = ACTIONS(4863), + [anon_sym_u_DQUOTE] = ACTIONS(4863), + [anon_sym_U_DQUOTE] = ACTIONS(4863), + [anon_sym_u8_DQUOTE] = ACTIONS(4863), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym_true] = ACTIONS(4866), + [sym_false] = ACTIONS(4866), + [anon_sym_NULL] = ACTIONS(4869), + [anon_sym_nullptr] = ACTIONS(4869), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1914), + [anon_sym_template] = ACTIONS(1917), + [anon_sym_delete] = ACTIONS(4872), + [anon_sym_R_DQUOTE] = ACTIONS(4875), + [anon_sym_LR_DQUOTE] = ACTIONS(4875), + [anon_sym_uR_DQUOTE] = ACTIONS(4875), + [anon_sym_UR_DQUOTE] = ACTIONS(4875), + [anon_sym_u8R_DQUOTE] = ACTIONS(4875), + [anon_sym_co_await] = ACTIONS(4878), + [anon_sym_new] = ACTIONS(4881), + [anon_sym_requires] = ACTIONS(4884), + [sym_this] = ACTIONS(4866), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(4887), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(4887), + [anon_sym_FORWARD] = ACTIONS(4887), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(4887), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(4887), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(4887), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(4887), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(4887), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(4887), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(4887), + [anon_sym_PS_GET] = ACTIONS(4887), + [anon_sym_PS_GET_AND_SET] = ACTIONS(4887), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(4887), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(4887), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(4887), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(4887), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(4887), + }, + [STATE(1374)] = { + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_RPAREN] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(4892), + [anon_sym_TILDE] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [anon_sym_AMP_AMP] = ACTIONS(4892), + [anon_sym_AMP] = ACTIONS(4890), + [anon_sym_SEMI] = ACTIONS(4892), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_virtual] = ACTIONS(4890), + [anon_sym_extern] = ACTIONS(4890), + [anon_sym___attribute__] = ACTIONS(4890), + [anon_sym___attribute] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4892), + [anon_sym___declspec] = ACTIONS(4890), + [anon_sym___based] = ACTIONS(4890), + [anon_sym___cdecl] = ACTIONS(4890), + [anon_sym___clrcall] = ACTIONS(4890), + [anon_sym___stdcall] = ACTIONS(4890), + [anon_sym___fastcall] = ACTIONS(4890), + [anon_sym___thiscall] = ACTIONS(4890), + [anon_sym___vectorcall] = ACTIONS(4890), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_static] = ACTIONS(4890), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_register] = ACTIONS(4890), + [anon_sym_inline] = ACTIONS(4890), + [anon_sym___inline] = ACTIONS(4890), + [anon_sym___inline__] = ACTIONS(4890), + [anon_sym___forceinline] = ACTIONS(4890), + [anon_sym_thread_local] = ACTIONS(4890), + [anon_sym___thread] = ACTIONS(4890), + [anon_sym_const] = ACTIONS(4890), + [anon_sym_constexpr] = ACTIONS(4890), + [anon_sym_volatile] = ACTIONS(4890), + [anon_sym_restrict] = ACTIONS(4890), + [anon_sym___restrict__] = ACTIONS(4890), + [anon_sym__Atomic] = ACTIONS(4890), + [anon_sym__Noreturn] = ACTIONS(4890), + [anon_sym_noreturn] = ACTIONS(4890), + [anon_sym__Nonnull] = ACTIONS(4890), + [anon_sym_mutable] = ACTIONS(4890), + [anon_sym_constinit] = ACTIONS(4890), + [anon_sym_consteval] = ACTIONS(4890), + [anon_sym_alignas] = ACTIONS(4890), + [anon_sym__Alignas] = ACTIONS(4890), + [anon_sym_asm] = ACTIONS(4890), + [anon_sym___asm__] = ACTIONS(4890), + [anon_sym___asm] = ACTIONS(4890), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4890), + [anon_sym_decltype] = ACTIONS(4890), + [anon_sym_final] = ACTIONS(4890), + [anon_sym_override] = ACTIONS(4890), + [anon_sym_template] = ACTIONS(4890), + [anon_sym_GT2] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4890), + [anon_sym_try] = ACTIONS(4890), + [anon_sym_requires] = ACTIONS(4890), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4890), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4890), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4890), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4890), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4890), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4890), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4890), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4890), + [anon_sym_MOZ_COLD] = ACTIONS(4890), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4890), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4890), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4890), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4890), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4890), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4890), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4890), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4890), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4890), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4890), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4890), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4890), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4890), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4890), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4890), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4890), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4890), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4890), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4890), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4890), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4890), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4890), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4890), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4890), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4890), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4890), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4890), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4890), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4890), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4890), + [anon_sym_MOZ_NONNULL] = ACTIONS(4890), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4890), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4890), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4890), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4890), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4890), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4890), + [anon_sym_MOZ_NORETURN] = ACTIONS(4890), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4890), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4890), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4890), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4890), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4890), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4890), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4890), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4890), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4890), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4890), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4890), + [anon_sym_MOZ_RAII] = ACTIONS(4890), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4890), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4890), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4890), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4890), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4890), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4890), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4890), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4890), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4890), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4890), + }, + [STATE(1375)] = { + [sym_identifier] = ACTIONS(4894), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4896), + [anon_sym_COMMA] = ACTIONS(4896), + [anon_sym_RPAREN] = ACTIONS(4896), + [anon_sym_LPAREN2] = ACTIONS(4896), + [anon_sym_TILDE] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_AMP_AMP] = ACTIONS(4896), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_SEMI] = ACTIONS(4896), + [anon_sym___extension__] = ACTIONS(4894), + [anon_sym_virtual] = ACTIONS(4894), + [anon_sym_extern] = ACTIONS(4894), + [anon_sym___attribute__] = ACTIONS(4894), + [anon_sym___attribute] = ACTIONS(4894), + [anon_sym_COLON_COLON] = ACTIONS(4896), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4896), + [anon_sym___declspec] = ACTIONS(4894), + [anon_sym___based] = ACTIONS(4894), + [anon_sym___cdecl] = ACTIONS(4894), + [anon_sym___clrcall] = ACTIONS(4894), + [anon_sym___stdcall] = ACTIONS(4894), + [anon_sym___fastcall] = ACTIONS(4894), + [anon_sym___thiscall] = ACTIONS(4894), + [anon_sym___vectorcall] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_static] = ACTIONS(4894), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_register] = ACTIONS(4894), + [anon_sym_inline] = ACTIONS(4894), + [anon_sym___inline] = ACTIONS(4894), + [anon_sym___inline__] = ACTIONS(4894), + [anon_sym___forceinline] = ACTIONS(4894), + [anon_sym_thread_local] = ACTIONS(4894), + [anon_sym___thread] = ACTIONS(4894), + [anon_sym_const] = ACTIONS(4894), + [anon_sym_constexpr] = ACTIONS(4894), + [anon_sym_volatile] = ACTIONS(4894), + [anon_sym_restrict] = ACTIONS(4894), + [anon_sym___restrict__] = ACTIONS(4894), + [anon_sym__Atomic] = ACTIONS(4894), + [anon_sym__Noreturn] = ACTIONS(4894), + [anon_sym_noreturn] = ACTIONS(4894), + [anon_sym__Nonnull] = ACTIONS(4894), + [anon_sym_mutable] = ACTIONS(4894), + [anon_sym_constinit] = ACTIONS(4894), + [anon_sym_consteval] = ACTIONS(4894), + [anon_sym_alignas] = ACTIONS(4894), + [anon_sym__Alignas] = ACTIONS(4894), + [anon_sym_asm] = ACTIONS(4894), + [anon_sym___asm__] = ACTIONS(4894), + [anon_sym___asm] = ACTIONS(4894), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4894), + [anon_sym_decltype] = ACTIONS(4894), + [anon_sym_final] = ACTIONS(4894), + [anon_sym_override] = ACTIONS(4894), + [anon_sym_template] = ACTIONS(4894), + [anon_sym_GT2] = ACTIONS(4896), + [anon_sym_operator] = ACTIONS(4894), + [anon_sym_try] = ACTIONS(4894), + [anon_sym_requires] = ACTIONS(4894), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4894), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4894), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4894), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4894), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4894), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4894), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4894), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4894), + [anon_sym_MOZ_COLD] = ACTIONS(4894), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4894), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4894), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4894), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4894), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4894), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4894), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4894), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4894), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4894), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4894), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4894), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4894), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4894), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4894), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4894), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4894), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4894), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4894), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4894), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4894), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4894), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4894), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4894), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4894), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4894), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4894), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4894), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4894), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4894), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4894), + [anon_sym_MOZ_NONNULL] = ACTIONS(4894), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4894), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4894), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4894), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4894), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4894), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4894), + [anon_sym_MOZ_NORETURN] = ACTIONS(4894), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4894), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4894), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4894), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4894), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4894), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4894), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4894), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4894), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4894), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4894), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4894), + [anon_sym_MOZ_RAII] = ACTIONS(4894), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4894), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4894), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4894), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4894), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4894), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4894), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4894), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4894), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4894), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4894), + }, + [STATE(1376)] = { + [sym_identifier] = ACTIONS(4898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(4900), + [anon_sym_TILDE] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_AMP_AMP] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym___extension__] = ACTIONS(4898), + [anon_sym_virtual] = ACTIONS(4898), + [anon_sym_extern] = ACTIONS(4898), + [anon_sym___attribute__] = ACTIONS(4898), + [anon_sym___attribute] = ACTIONS(4898), + [anon_sym_COLON_COLON] = ACTIONS(4900), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4900), + [anon_sym___declspec] = ACTIONS(4898), + [anon_sym___based] = ACTIONS(4898), + [anon_sym___cdecl] = ACTIONS(4898), + [anon_sym___clrcall] = ACTIONS(4898), + [anon_sym___stdcall] = ACTIONS(4898), + [anon_sym___fastcall] = ACTIONS(4898), + [anon_sym___thiscall] = ACTIONS(4898), + [anon_sym___vectorcall] = ACTIONS(4898), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_static] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(4900), + [anon_sym_register] = ACTIONS(4898), + [anon_sym_inline] = ACTIONS(4898), + [anon_sym___inline] = ACTIONS(4898), + [anon_sym___inline__] = ACTIONS(4898), + [anon_sym___forceinline] = ACTIONS(4898), + [anon_sym_thread_local] = ACTIONS(4898), + [anon_sym___thread] = ACTIONS(4898), + [anon_sym_const] = ACTIONS(4898), + [anon_sym_constexpr] = ACTIONS(4898), + [anon_sym_volatile] = ACTIONS(4898), + [anon_sym_restrict] = ACTIONS(4898), + [anon_sym___restrict__] = ACTIONS(4898), + [anon_sym__Atomic] = ACTIONS(4898), + [anon_sym__Noreturn] = ACTIONS(4898), + [anon_sym_noreturn] = ACTIONS(4898), + [anon_sym__Nonnull] = ACTIONS(4898), + [anon_sym_mutable] = ACTIONS(4898), + [anon_sym_constinit] = ACTIONS(4898), + [anon_sym_consteval] = ACTIONS(4898), + [anon_sym_alignas] = ACTIONS(4898), + [anon_sym__Alignas] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4898), + [anon_sym___asm__] = ACTIONS(4898), + [anon_sym___asm] = ACTIONS(4898), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4898), + [anon_sym_decltype] = ACTIONS(4898), + [anon_sym_final] = ACTIONS(4898), + [anon_sym_override] = ACTIONS(4898), + [anon_sym_template] = ACTIONS(4898), + [anon_sym_GT2] = ACTIONS(4900), + [anon_sym_operator] = ACTIONS(4898), + [anon_sym_try] = ACTIONS(4898), + [anon_sym_requires] = ACTIONS(4898), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4898), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4898), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4898), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4898), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4898), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4898), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4898), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4898), + [anon_sym_MOZ_COLD] = ACTIONS(4898), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4898), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4898), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4898), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4898), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4898), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4898), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4898), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4898), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4898), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4898), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4898), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4898), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4898), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4898), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4898), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4898), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4898), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4898), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4898), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4898), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_NONNULL] = ACTIONS(4898), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4898), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4898), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4898), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4898), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4898), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_NORETURN] = ACTIONS(4898), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4898), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4898), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4898), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4898), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4898), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4898), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4898), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4898), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4898), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4898), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4898), + [anon_sym_MOZ_RAII] = ACTIONS(4898), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4898), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4898), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4898), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4898), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4898), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4898), + }, + [STATE(1377)] = { + [sym_identifier] = ACTIONS(4902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [anon_sym_LPAREN2] = ACTIONS(4904), + [anon_sym_TILDE] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_AMP] = ACTIONS(4902), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_virtual] = ACTIONS(4902), + [anon_sym_extern] = ACTIONS(4902), + [anon_sym___attribute__] = ACTIONS(4902), + [anon_sym___attribute] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4904), + [anon_sym___declspec] = ACTIONS(4902), + [anon_sym___based] = ACTIONS(4902), + [anon_sym___cdecl] = ACTIONS(4902), + [anon_sym___clrcall] = ACTIONS(4902), + [anon_sym___stdcall] = ACTIONS(4902), + [anon_sym___fastcall] = ACTIONS(4902), + [anon_sym___thiscall] = ACTIONS(4902), + [anon_sym___vectorcall] = ACTIONS(4902), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_static] = ACTIONS(4902), + [anon_sym_EQ] = ACTIONS(4904), + [anon_sym_register] = ACTIONS(4902), + [anon_sym_inline] = ACTIONS(4902), + [anon_sym___inline] = ACTIONS(4902), + [anon_sym___inline__] = ACTIONS(4902), + [anon_sym___forceinline] = ACTIONS(4902), + [anon_sym_thread_local] = ACTIONS(4902), + [anon_sym___thread] = ACTIONS(4902), + [anon_sym_const] = ACTIONS(4902), + [anon_sym_constexpr] = ACTIONS(4902), + [anon_sym_volatile] = ACTIONS(4902), + [anon_sym_restrict] = ACTIONS(4902), + [anon_sym___restrict__] = ACTIONS(4902), + [anon_sym__Atomic] = ACTIONS(4902), + [anon_sym__Noreturn] = ACTIONS(4902), + [anon_sym_noreturn] = ACTIONS(4902), + [anon_sym__Nonnull] = ACTIONS(4902), + [anon_sym_mutable] = ACTIONS(4902), + [anon_sym_constinit] = ACTIONS(4902), + [anon_sym_consteval] = ACTIONS(4902), + [anon_sym_alignas] = ACTIONS(4902), + [anon_sym__Alignas] = ACTIONS(4902), + [anon_sym_asm] = ACTIONS(4902), + [anon_sym___asm__] = ACTIONS(4902), + [anon_sym___asm] = ACTIONS(4902), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4902), + [anon_sym_decltype] = ACTIONS(4902), + [anon_sym_final] = ACTIONS(4902), + [anon_sym_override] = ACTIONS(4902), + [anon_sym_template] = ACTIONS(4902), + [anon_sym_GT2] = ACTIONS(4904), + [anon_sym_operator] = ACTIONS(4902), + [anon_sym_try] = ACTIONS(4902), + [anon_sym_requires] = ACTIONS(4902), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4902), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4902), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4902), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4902), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4902), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4902), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4902), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4902), + [anon_sym_MOZ_COLD] = ACTIONS(4902), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4902), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4902), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4902), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4902), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4902), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4902), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4902), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4902), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4902), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4902), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4902), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4902), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4902), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4902), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4902), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4902), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4902), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4902), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4902), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4902), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4902), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4902), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4902), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4902), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4902), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4902), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4902), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4902), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4902), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4902), + [anon_sym_MOZ_NONNULL] = ACTIONS(4902), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4902), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4902), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4902), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4902), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4902), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4902), + [anon_sym_MOZ_NORETURN] = ACTIONS(4902), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4902), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4902), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4902), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4902), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4902), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4902), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4902), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4902), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4902), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4902), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4902), + [anon_sym_MOZ_RAII] = ACTIONS(4902), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4902), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4902), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4902), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4902), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4902), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4902), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4902), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4902), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4902), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4902), + }, + [STATE(1378)] = { + [sym_identifier] = ACTIONS(4906), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_RPAREN] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4908), + [anon_sym_TILDE] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_AMP_AMP] = ACTIONS(4908), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym___extension__] = ACTIONS(4906), + [anon_sym_virtual] = ACTIONS(4906), + [anon_sym_extern] = ACTIONS(4906), + [anon_sym___attribute__] = ACTIONS(4906), + [anon_sym___attribute] = ACTIONS(4906), + [anon_sym_COLON_COLON] = ACTIONS(4908), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4908), + [anon_sym___declspec] = ACTIONS(4906), + [anon_sym___based] = ACTIONS(4906), + [anon_sym___cdecl] = ACTIONS(4906), + [anon_sym___clrcall] = ACTIONS(4906), + [anon_sym___stdcall] = ACTIONS(4906), + [anon_sym___fastcall] = ACTIONS(4906), + [anon_sym___thiscall] = ACTIONS(4906), + [anon_sym___vectorcall] = ACTIONS(4906), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_static] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(4908), + [anon_sym_register] = ACTIONS(4906), + [anon_sym_inline] = ACTIONS(4906), + [anon_sym___inline] = ACTIONS(4906), + [anon_sym___inline__] = ACTIONS(4906), + [anon_sym___forceinline] = ACTIONS(4906), + [anon_sym_thread_local] = ACTIONS(4906), + [anon_sym___thread] = ACTIONS(4906), + [anon_sym_const] = ACTIONS(4906), + [anon_sym_constexpr] = ACTIONS(4906), + [anon_sym_volatile] = ACTIONS(4906), + [anon_sym_restrict] = ACTIONS(4906), + [anon_sym___restrict__] = ACTIONS(4906), + [anon_sym__Atomic] = ACTIONS(4906), + [anon_sym__Noreturn] = ACTIONS(4906), + [anon_sym_noreturn] = ACTIONS(4906), + [anon_sym__Nonnull] = ACTIONS(4906), + [anon_sym_mutable] = ACTIONS(4906), + [anon_sym_constinit] = ACTIONS(4906), + [anon_sym_consteval] = ACTIONS(4906), + [anon_sym_alignas] = ACTIONS(4906), + [anon_sym__Alignas] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(4906), + [anon_sym___asm__] = ACTIONS(4906), + [anon_sym___asm] = ACTIONS(4906), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4906), + [anon_sym_decltype] = ACTIONS(4906), + [anon_sym_final] = ACTIONS(4906), + [anon_sym_override] = ACTIONS(4906), + [anon_sym_template] = ACTIONS(4906), + [anon_sym_GT2] = ACTIONS(4908), + [anon_sym_operator] = ACTIONS(4906), + [anon_sym_try] = ACTIONS(4906), + [anon_sym_requires] = ACTIONS(4906), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4906), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4906), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4906), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4906), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4906), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4906), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4906), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4906), + [anon_sym_MOZ_COLD] = ACTIONS(4906), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4906), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4906), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4906), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4906), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4906), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4906), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4906), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4906), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4906), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4906), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4906), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4906), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4906), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4906), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4906), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4906), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4906), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4906), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4906), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4906), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4906), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4906), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4906), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4906), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4906), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4906), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4906), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4906), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4906), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4906), + [anon_sym_MOZ_NONNULL] = ACTIONS(4906), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4906), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4906), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4906), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4906), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4906), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4906), + [anon_sym_MOZ_NORETURN] = ACTIONS(4906), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4906), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4906), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4906), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4906), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4906), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4906), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4906), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4906), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4906), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4906), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4906), + [anon_sym_MOZ_RAII] = ACTIONS(4906), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4906), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4906), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4906), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4906), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4906), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4906), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4906), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4906), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4906), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4906), + }, + [STATE(1379)] = { + [sym_identifier] = ACTIONS(4910), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_RPAREN] = ACTIONS(4912), + [anon_sym_LPAREN2] = ACTIONS(4912), + [anon_sym_TILDE] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP_AMP] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_virtual] = ACTIONS(4910), + [anon_sym_extern] = ACTIONS(4910), + [anon_sym___attribute__] = ACTIONS(4910), + [anon_sym___attribute] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4912), + [anon_sym___declspec] = ACTIONS(4910), + [anon_sym___based] = ACTIONS(4910), + [anon_sym___cdecl] = ACTIONS(4910), + [anon_sym___clrcall] = ACTIONS(4910), + [anon_sym___stdcall] = ACTIONS(4910), + [anon_sym___fastcall] = ACTIONS(4910), + [anon_sym___thiscall] = ACTIONS(4910), + [anon_sym___vectorcall] = ACTIONS(4910), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_static] = ACTIONS(4910), + [anon_sym_EQ] = ACTIONS(4912), + [anon_sym_register] = ACTIONS(4910), + [anon_sym_inline] = ACTIONS(4910), + [anon_sym___inline] = ACTIONS(4910), + [anon_sym___inline__] = ACTIONS(4910), + [anon_sym___forceinline] = ACTIONS(4910), + [anon_sym_thread_local] = ACTIONS(4910), + [anon_sym___thread] = ACTIONS(4910), + [anon_sym_const] = ACTIONS(4910), + [anon_sym_constexpr] = ACTIONS(4910), + [anon_sym_volatile] = ACTIONS(4910), + [anon_sym_restrict] = ACTIONS(4910), + [anon_sym___restrict__] = ACTIONS(4910), + [anon_sym__Atomic] = ACTIONS(4910), + [anon_sym__Noreturn] = ACTIONS(4910), + [anon_sym_noreturn] = ACTIONS(4910), + [anon_sym__Nonnull] = ACTIONS(4910), + [anon_sym_mutable] = ACTIONS(4910), + [anon_sym_constinit] = ACTIONS(4910), + [anon_sym_consteval] = ACTIONS(4910), + [anon_sym_alignas] = ACTIONS(4910), + [anon_sym__Alignas] = ACTIONS(4910), + [anon_sym_asm] = ACTIONS(4910), + [anon_sym___asm__] = ACTIONS(4910), + [anon_sym___asm] = ACTIONS(4910), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4910), + [anon_sym_decltype] = ACTIONS(4910), + [anon_sym_final] = ACTIONS(4910), + [anon_sym_override] = ACTIONS(4910), + [anon_sym_template] = ACTIONS(4910), + [anon_sym_GT2] = ACTIONS(4912), + [anon_sym_operator] = ACTIONS(4910), + [anon_sym_try] = ACTIONS(4910), + [anon_sym_requires] = ACTIONS(4910), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4910), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4910), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4910), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4910), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4910), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4910), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4910), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4910), + [anon_sym_MOZ_COLD] = ACTIONS(4910), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4910), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4910), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4910), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4910), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4910), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4910), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4910), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4910), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4910), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4910), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4910), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4910), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4910), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4910), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4910), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4910), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4910), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4910), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4910), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4910), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4910), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4910), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4910), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4910), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4910), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4910), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4910), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4910), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4910), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4910), + [anon_sym_MOZ_NONNULL] = ACTIONS(4910), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4910), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4910), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4910), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4910), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4910), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4910), + [anon_sym_MOZ_NORETURN] = ACTIONS(4910), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4910), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4910), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4910), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4910), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4910), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4910), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4910), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4910), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4910), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4910), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4910), + [anon_sym_MOZ_RAII] = ACTIONS(4910), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4910), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4910), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4910), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4910), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4910), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4910), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4910), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4910), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4910), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4910), + }, + [STATE(1380)] = { + [sym_identifier] = ACTIONS(4914), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_RPAREN] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4916), + [anon_sym_TILDE] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_AMP_AMP] = ACTIONS(4916), + [anon_sym_AMP] = ACTIONS(4914), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym___extension__] = ACTIONS(4914), + [anon_sym_virtual] = ACTIONS(4914), + [anon_sym_extern] = ACTIONS(4914), + [anon_sym___attribute__] = ACTIONS(4914), + [anon_sym___attribute] = ACTIONS(4914), + [anon_sym_COLON_COLON] = ACTIONS(4916), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4916), + [anon_sym___declspec] = ACTIONS(4914), + [anon_sym___based] = ACTIONS(4914), + [anon_sym___cdecl] = ACTIONS(4914), + [anon_sym___clrcall] = ACTIONS(4914), + [anon_sym___stdcall] = ACTIONS(4914), + [anon_sym___fastcall] = ACTIONS(4914), + [anon_sym___thiscall] = ACTIONS(4914), + [anon_sym___vectorcall] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_static] = ACTIONS(4914), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_register] = ACTIONS(4914), + [anon_sym_inline] = ACTIONS(4914), + [anon_sym___inline] = ACTIONS(4914), + [anon_sym___inline__] = ACTIONS(4914), + [anon_sym___forceinline] = ACTIONS(4914), + [anon_sym_thread_local] = ACTIONS(4914), + [anon_sym___thread] = ACTIONS(4914), + [anon_sym_const] = ACTIONS(4914), + [anon_sym_constexpr] = ACTIONS(4914), + [anon_sym_volatile] = ACTIONS(4914), + [anon_sym_restrict] = ACTIONS(4914), + [anon_sym___restrict__] = ACTIONS(4914), + [anon_sym__Atomic] = ACTIONS(4914), + [anon_sym__Noreturn] = ACTIONS(4914), + [anon_sym_noreturn] = ACTIONS(4914), + [anon_sym__Nonnull] = ACTIONS(4914), + [anon_sym_mutable] = ACTIONS(4914), + [anon_sym_constinit] = ACTIONS(4914), + [anon_sym_consteval] = ACTIONS(4914), + [anon_sym_alignas] = ACTIONS(4914), + [anon_sym__Alignas] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(4914), + [anon_sym___asm__] = ACTIONS(4914), + [anon_sym___asm] = ACTIONS(4914), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4914), + [anon_sym_decltype] = ACTIONS(4914), + [anon_sym_final] = ACTIONS(4914), + [anon_sym_override] = ACTIONS(4914), + [anon_sym_template] = ACTIONS(4914), + [anon_sym_GT2] = ACTIONS(4916), + [anon_sym_operator] = ACTIONS(4914), + [anon_sym_try] = ACTIONS(4914), + [anon_sym_requires] = ACTIONS(4914), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4914), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4914), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4914), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4914), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4914), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4914), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4914), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4914), + [anon_sym_MOZ_COLD] = ACTIONS(4914), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4914), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4914), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4914), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4914), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4914), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4914), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4914), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4914), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4914), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4914), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4914), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4914), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4914), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4914), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4914), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4914), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4914), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4914), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4914), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4914), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4914), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4914), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4914), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4914), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4914), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4914), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4914), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4914), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4914), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4914), + [anon_sym_MOZ_NONNULL] = ACTIONS(4914), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4914), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4914), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4914), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4914), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4914), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4914), + [anon_sym_MOZ_NORETURN] = ACTIONS(4914), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4914), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4914), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4914), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4914), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4914), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4914), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4914), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4914), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4914), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4914), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4914), + [anon_sym_MOZ_RAII] = ACTIONS(4914), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4914), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4914), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4914), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4914), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4914), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4914), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4914), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4914), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4914), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4914), + }, + [STATE(1381)] = { + [sym_identifier] = ACTIONS(4918), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(4920), + [anon_sym_TILDE] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_AMP_AMP] = ACTIONS(4920), + [anon_sym_AMP] = ACTIONS(4918), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_virtual] = ACTIONS(4918), + [anon_sym_extern] = ACTIONS(4918), + [anon_sym___attribute__] = ACTIONS(4918), + [anon_sym___attribute] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4920), + [anon_sym___declspec] = ACTIONS(4918), + [anon_sym___based] = ACTIONS(4918), + [anon_sym___cdecl] = ACTIONS(4918), + [anon_sym___clrcall] = ACTIONS(4918), + [anon_sym___stdcall] = ACTIONS(4918), + [anon_sym___fastcall] = ACTIONS(4918), + [anon_sym___thiscall] = ACTIONS(4918), + [anon_sym___vectorcall] = ACTIONS(4918), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_static] = ACTIONS(4918), + [anon_sym_EQ] = ACTIONS(4920), + [anon_sym_register] = ACTIONS(4918), + [anon_sym_inline] = ACTIONS(4918), + [anon_sym___inline] = ACTIONS(4918), + [anon_sym___inline__] = ACTIONS(4918), + [anon_sym___forceinline] = ACTIONS(4918), + [anon_sym_thread_local] = ACTIONS(4918), + [anon_sym___thread] = ACTIONS(4918), + [anon_sym_const] = ACTIONS(4918), + [anon_sym_constexpr] = ACTIONS(4918), + [anon_sym_volatile] = ACTIONS(4918), + [anon_sym_restrict] = ACTIONS(4918), + [anon_sym___restrict__] = ACTIONS(4918), + [anon_sym__Atomic] = ACTIONS(4918), + [anon_sym__Noreturn] = ACTIONS(4918), + [anon_sym_noreturn] = ACTIONS(4918), + [anon_sym__Nonnull] = ACTIONS(4918), + [anon_sym_mutable] = ACTIONS(4918), + [anon_sym_constinit] = ACTIONS(4918), + [anon_sym_consteval] = ACTIONS(4918), + [anon_sym_alignas] = ACTIONS(4918), + [anon_sym__Alignas] = ACTIONS(4918), + [anon_sym_asm] = ACTIONS(4918), + [anon_sym___asm__] = ACTIONS(4918), + [anon_sym___asm] = ACTIONS(4918), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4918), + [anon_sym_decltype] = ACTIONS(4918), + [anon_sym_final] = ACTIONS(4918), + [anon_sym_override] = ACTIONS(4918), + [anon_sym_template] = ACTIONS(4918), + [anon_sym_GT2] = ACTIONS(4920), + [anon_sym_operator] = ACTIONS(4918), + [anon_sym_try] = ACTIONS(4918), + [anon_sym_requires] = ACTIONS(4918), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4918), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4918), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4918), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4918), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4918), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4918), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4918), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4918), + [anon_sym_MOZ_COLD] = ACTIONS(4918), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4918), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4918), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4918), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4918), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4918), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4918), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4918), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4918), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4918), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4918), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4918), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4918), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4918), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4918), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4918), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4918), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4918), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4918), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4918), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4918), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4918), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4918), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4918), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4918), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4918), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4918), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4918), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4918), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4918), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4918), + [anon_sym_MOZ_NONNULL] = ACTIONS(4918), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4918), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4918), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4918), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4918), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4918), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4918), + [anon_sym_MOZ_NORETURN] = ACTIONS(4918), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4918), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4918), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4918), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4918), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4918), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4918), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4918), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4918), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4918), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4918), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4918), + [anon_sym_MOZ_RAII] = ACTIONS(4918), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4918), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4918), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4918), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4918), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4918), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4918), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4918), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4918), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4918), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4918), + }, + [STATE(1382)] = { + [sym_identifier] = ACTIONS(4922), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_RPAREN] = ACTIONS(4924), + [anon_sym_LPAREN2] = ACTIONS(4924), + [anon_sym_TILDE] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_AMP_AMP] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4922), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_virtual] = ACTIONS(4922), + [anon_sym_extern] = ACTIONS(4922), + [anon_sym___attribute__] = ACTIONS(4922), + [anon_sym___attribute] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4924), + [anon_sym___declspec] = ACTIONS(4922), + [anon_sym___based] = ACTIONS(4922), + [anon_sym___cdecl] = ACTIONS(4922), + [anon_sym___clrcall] = ACTIONS(4922), + [anon_sym___stdcall] = ACTIONS(4922), + [anon_sym___fastcall] = ACTIONS(4922), + [anon_sym___thiscall] = ACTIONS(4922), + [anon_sym___vectorcall] = ACTIONS(4922), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_static] = ACTIONS(4922), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_register] = ACTIONS(4922), + [anon_sym_inline] = ACTIONS(4922), + [anon_sym___inline] = ACTIONS(4922), + [anon_sym___inline__] = ACTIONS(4922), + [anon_sym___forceinline] = ACTIONS(4922), + [anon_sym_thread_local] = ACTIONS(4922), + [anon_sym___thread] = ACTIONS(4922), + [anon_sym_const] = ACTIONS(4922), + [anon_sym_constexpr] = ACTIONS(4922), + [anon_sym_volatile] = ACTIONS(4922), + [anon_sym_restrict] = ACTIONS(4922), + [anon_sym___restrict__] = ACTIONS(4922), + [anon_sym__Atomic] = ACTIONS(4922), + [anon_sym__Noreturn] = ACTIONS(4922), + [anon_sym_noreturn] = ACTIONS(4922), + [anon_sym__Nonnull] = ACTIONS(4922), + [anon_sym_mutable] = ACTIONS(4922), + [anon_sym_constinit] = ACTIONS(4922), + [anon_sym_consteval] = ACTIONS(4922), + [anon_sym_alignas] = ACTIONS(4922), + [anon_sym__Alignas] = ACTIONS(4922), + [anon_sym_asm] = ACTIONS(4922), + [anon_sym___asm__] = ACTIONS(4922), + [anon_sym___asm] = ACTIONS(4922), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4922), + [anon_sym_decltype] = ACTIONS(4922), + [anon_sym_final] = ACTIONS(4922), + [anon_sym_override] = ACTIONS(4922), + [anon_sym_template] = ACTIONS(4922), + [anon_sym_GT2] = ACTIONS(4924), + [anon_sym_operator] = ACTIONS(4922), + [anon_sym_try] = ACTIONS(4922), + [anon_sym_requires] = ACTIONS(4922), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4922), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4922), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4922), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4922), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4922), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4922), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4922), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4922), + [anon_sym_MOZ_COLD] = ACTIONS(4922), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4922), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4922), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4922), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4922), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4922), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4922), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4922), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4922), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4922), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4922), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4922), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4922), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4922), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4922), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4922), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4922), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4922), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4922), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4922), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4922), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4922), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4922), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4922), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4922), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4922), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4922), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4922), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4922), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4922), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4922), + [anon_sym_MOZ_NONNULL] = ACTIONS(4922), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4922), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4922), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4922), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4922), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4922), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4922), + [anon_sym_MOZ_NORETURN] = ACTIONS(4922), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4922), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4922), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4922), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4922), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4922), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4922), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4922), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4922), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4922), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4922), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4922), + [anon_sym_MOZ_RAII] = ACTIONS(4922), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4922), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4922), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4922), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4922), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4922), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4922), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4922), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4922), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4922), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4922), + }, + [STATE(1383)] = { + [sym_identifier] = ACTIONS(4926), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_RPAREN] = ACTIONS(4928), + [anon_sym_LPAREN2] = ACTIONS(4928), + [anon_sym_TILDE] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_AMP_AMP] = ACTIONS(4928), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym___extension__] = ACTIONS(4926), + [anon_sym_virtual] = ACTIONS(4926), + [anon_sym_extern] = ACTIONS(4926), + [anon_sym___attribute__] = ACTIONS(4926), + [anon_sym___attribute] = ACTIONS(4926), + [anon_sym_COLON_COLON] = ACTIONS(4928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4928), + [anon_sym___declspec] = ACTIONS(4926), + [anon_sym___based] = ACTIONS(4926), + [anon_sym___cdecl] = ACTIONS(4926), + [anon_sym___clrcall] = ACTIONS(4926), + [anon_sym___stdcall] = ACTIONS(4926), + [anon_sym___fastcall] = ACTIONS(4926), + [anon_sym___thiscall] = ACTIONS(4926), + [anon_sym___vectorcall] = ACTIONS(4926), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_static] = ACTIONS(4926), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_register] = ACTIONS(4926), + [anon_sym_inline] = ACTIONS(4926), + [anon_sym___inline] = ACTIONS(4926), + [anon_sym___inline__] = ACTIONS(4926), + [anon_sym___forceinline] = ACTIONS(4926), + [anon_sym_thread_local] = ACTIONS(4926), + [anon_sym___thread] = ACTIONS(4926), + [anon_sym_const] = ACTIONS(4926), + [anon_sym_constexpr] = ACTIONS(4926), + [anon_sym_volatile] = ACTIONS(4926), + [anon_sym_restrict] = ACTIONS(4926), + [anon_sym___restrict__] = ACTIONS(4926), + [anon_sym__Atomic] = ACTIONS(4926), + [anon_sym__Noreturn] = ACTIONS(4926), + [anon_sym_noreturn] = ACTIONS(4926), + [anon_sym__Nonnull] = ACTIONS(4926), + [anon_sym_mutable] = ACTIONS(4926), + [anon_sym_constinit] = ACTIONS(4926), + [anon_sym_consteval] = ACTIONS(4926), + [anon_sym_alignas] = ACTIONS(4926), + [anon_sym__Alignas] = ACTIONS(4926), + [anon_sym_asm] = ACTIONS(4926), + [anon_sym___asm__] = ACTIONS(4926), + [anon_sym___asm] = ACTIONS(4926), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4926), + [anon_sym_decltype] = ACTIONS(4926), + [anon_sym_final] = ACTIONS(4926), + [anon_sym_override] = ACTIONS(4926), + [anon_sym_template] = ACTIONS(4926), + [anon_sym_GT2] = ACTIONS(4928), + [anon_sym_operator] = ACTIONS(4926), + [anon_sym_try] = ACTIONS(4926), + [anon_sym_requires] = ACTIONS(4926), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4926), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4926), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4926), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4926), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4926), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4926), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4926), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4926), + [anon_sym_MOZ_COLD] = ACTIONS(4926), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4926), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4926), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4926), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4926), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4926), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4926), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4926), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4926), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4926), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4926), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4926), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4926), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4926), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4926), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4926), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4926), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4926), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4926), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4926), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4926), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4926), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4926), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4926), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4926), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4926), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4926), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4926), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4926), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4926), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4926), + [anon_sym_MOZ_NONNULL] = ACTIONS(4926), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4926), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4926), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4926), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4926), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4926), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4926), + [anon_sym_MOZ_NORETURN] = ACTIONS(4926), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4926), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4926), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4926), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4926), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4926), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4926), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4926), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4926), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4926), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4926), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4926), + [anon_sym_MOZ_RAII] = ACTIONS(4926), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4926), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4926), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4926), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4926), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4926), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4926), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4926), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4926), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4926), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4926), + }, + [STATE(1384)] = { + [sym_identifier] = ACTIONS(4930), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_RPAREN] = ACTIONS(4932), + [anon_sym_LPAREN2] = ACTIONS(4932), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_AMP_AMP] = ACTIONS(4932), + [anon_sym_AMP] = ACTIONS(4930), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym___extension__] = ACTIONS(4930), + [anon_sym_virtual] = ACTIONS(4930), + [anon_sym_extern] = ACTIONS(4930), + [anon_sym___attribute__] = ACTIONS(4930), + [anon_sym___attribute] = ACTIONS(4930), + [anon_sym_COLON_COLON] = ACTIONS(4932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4932), + [anon_sym___declspec] = ACTIONS(4930), + [anon_sym___based] = ACTIONS(4930), + [anon_sym___cdecl] = ACTIONS(4930), + [anon_sym___clrcall] = ACTIONS(4930), + [anon_sym___stdcall] = ACTIONS(4930), + [anon_sym___fastcall] = ACTIONS(4930), + [anon_sym___thiscall] = ACTIONS(4930), + [anon_sym___vectorcall] = ACTIONS(4930), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_static] = ACTIONS(4930), + [anon_sym_EQ] = ACTIONS(4932), + [anon_sym_register] = ACTIONS(4930), + [anon_sym_inline] = ACTIONS(4930), + [anon_sym___inline] = ACTIONS(4930), + [anon_sym___inline__] = ACTIONS(4930), + [anon_sym___forceinline] = ACTIONS(4930), + [anon_sym_thread_local] = ACTIONS(4930), + [anon_sym___thread] = ACTIONS(4930), + [anon_sym_const] = ACTIONS(4930), + [anon_sym_constexpr] = ACTIONS(4930), + [anon_sym_volatile] = ACTIONS(4930), + [anon_sym_restrict] = ACTIONS(4930), + [anon_sym___restrict__] = ACTIONS(4930), + [anon_sym__Atomic] = ACTIONS(4930), + [anon_sym__Noreturn] = ACTIONS(4930), + [anon_sym_noreturn] = ACTIONS(4930), + [anon_sym__Nonnull] = ACTIONS(4930), + [anon_sym_mutable] = ACTIONS(4930), + [anon_sym_constinit] = ACTIONS(4930), + [anon_sym_consteval] = ACTIONS(4930), + [anon_sym_alignas] = ACTIONS(4930), + [anon_sym__Alignas] = ACTIONS(4930), + [anon_sym_asm] = ACTIONS(4930), + [anon_sym___asm__] = ACTIONS(4930), + [anon_sym___asm] = ACTIONS(4930), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4930), + [anon_sym_decltype] = ACTIONS(4930), + [anon_sym_final] = ACTIONS(4930), + [anon_sym_override] = ACTIONS(4930), + [anon_sym_template] = ACTIONS(4930), + [anon_sym_GT2] = ACTIONS(4932), + [anon_sym_operator] = ACTIONS(4930), + [anon_sym_try] = ACTIONS(4930), + [anon_sym_requires] = ACTIONS(4930), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4930), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4930), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4930), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4930), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4930), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4930), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4930), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4930), + [anon_sym_MOZ_COLD] = ACTIONS(4930), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4930), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4930), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4930), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4930), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4930), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4930), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4930), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4930), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4930), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4930), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4930), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4930), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4930), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4930), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4930), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4930), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4930), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4930), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4930), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4930), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4930), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4930), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4930), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4930), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4930), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4930), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4930), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4930), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4930), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4930), + [anon_sym_MOZ_NONNULL] = ACTIONS(4930), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4930), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4930), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4930), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4930), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4930), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4930), + [anon_sym_MOZ_NORETURN] = ACTIONS(4930), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4930), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4930), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4930), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4930), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4930), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4930), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4930), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4930), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4930), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4930), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4930), + [anon_sym_MOZ_RAII] = ACTIONS(4930), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4930), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4930), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4930), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4930), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4930), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4930), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4930), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4930), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4930), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4930), + }, + [STATE(1385)] = { + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4936), + [anon_sym_COMMA] = ACTIONS(4936), + [anon_sym_RPAREN] = ACTIONS(4936), + [anon_sym_LPAREN2] = ACTIONS(4936), + [anon_sym_TILDE] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_AMP_AMP] = ACTIONS(4936), + [anon_sym_AMP] = ACTIONS(4934), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym___extension__] = ACTIONS(4934), + [anon_sym_virtual] = ACTIONS(4934), + [anon_sym_extern] = ACTIONS(4934), + [anon_sym___attribute__] = ACTIONS(4934), + [anon_sym___attribute] = ACTIONS(4934), + [anon_sym_COLON_COLON] = ACTIONS(4936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4936), + [anon_sym___declspec] = ACTIONS(4934), + [anon_sym___based] = ACTIONS(4934), + [anon_sym___cdecl] = ACTIONS(4934), + [anon_sym___clrcall] = ACTIONS(4934), + [anon_sym___stdcall] = ACTIONS(4934), + [anon_sym___fastcall] = ACTIONS(4934), + [anon_sym___thiscall] = ACTIONS(4934), + [anon_sym___vectorcall] = ACTIONS(4934), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4934), + [anon_sym_static] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_register] = ACTIONS(4934), + [anon_sym_inline] = ACTIONS(4934), + [anon_sym___inline] = ACTIONS(4934), + [anon_sym___inline__] = ACTIONS(4934), + [anon_sym___forceinline] = ACTIONS(4934), + [anon_sym_thread_local] = ACTIONS(4934), + [anon_sym___thread] = ACTIONS(4934), + [anon_sym_const] = ACTIONS(4934), + [anon_sym_constexpr] = ACTIONS(4934), + [anon_sym_volatile] = ACTIONS(4934), + [anon_sym_restrict] = ACTIONS(4934), + [anon_sym___restrict__] = ACTIONS(4934), + [anon_sym__Atomic] = ACTIONS(4934), + [anon_sym__Noreturn] = ACTIONS(4934), + [anon_sym_noreturn] = ACTIONS(4934), + [anon_sym__Nonnull] = ACTIONS(4934), + [anon_sym_mutable] = ACTIONS(4934), + [anon_sym_constinit] = ACTIONS(4934), + [anon_sym_consteval] = ACTIONS(4934), + [anon_sym_alignas] = ACTIONS(4934), + [anon_sym__Alignas] = ACTIONS(4934), + [anon_sym_asm] = ACTIONS(4934), + [anon_sym___asm__] = ACTIONS(4934), + [anon_sym___asm] = ACTIONS(4934), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4934), + [anon_sym_decltype] = ACTIONS(4934), + [anon_sym_final] = ACTIONS(4934), + [anon_sym_override] = ACTIONS(4934), + [anon_sym_template] = ACTIONS(4934), + [anon_sym_GT2] = ACTIONS(4936), + [anon_sym_operator] = ACTIONS(4934), + [anon_sym_try] = ACTIONS(4934), + [anon_sym_requires] = ACTIONS(4934), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4934), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4934), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4934), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4934), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4934), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4934), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4934), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4934), + [anon_sym_MOZ_COLD] = ACTIONS(4934), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4934), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4934), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4934), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4934), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4934), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4934), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4934), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4934), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4934), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4934), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4934), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4934), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4934), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4934), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4934), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4934), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4934), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4934), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4934), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4934), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4934), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4934), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4934), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4934), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4934), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4934), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4934), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4934), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4934), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4934), + [anon_sym_MOZ_NONNULL] = ACTIONS(4934), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4934), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4934), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4934), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4934), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4934), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4934), + [anon_sym_MOZ_NORETURN] = ACTIONS(4934), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4934), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4934), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4934), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4934), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4934), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4934), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4934), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4934), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4934), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4934), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4934), + [anon_sym_MOZ_RAII] = ACTIONS(4934), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4934), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4934), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4934), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4934), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4934), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4934), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4934), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4934), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4934), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4934), + }, + [STATE(1386)] = { + [sym_identifier] = ACTIONS(4938), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_RPAREN] = ACTIONS(4940), + [anon_sym_LPAREN2] = ACTIONS(4940), + [anon_sym_TILDE] = ACTIONS(4940), + [anon_sym_STAR] = ACTIONS(4940), + [anon_sym_AMP_AMP] = ACTIONS(4940), + [anon_sym_AMP] = ACTIONS(4938), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym___extension__] = ACTIONS(4938), + [anon_sym_virtual] = ACTIONS(4938), + [anon_sym_extern] = ACTIONS(4938), + [anon_sym___attribute__] = ACTIONS(4938), + [anon_sym___attribute] = ACTIONS(4938), + [anon_sym_COLON_COLON] = ACTIONS(4940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4940), + [anon_sym___declspec] = ACTIONS(4938), + [anon_sym___based] = ACTIONS(4938), + [anon_sym___cdecl] = ACTIONS(4938), + [anon_sym___clrcall] = ACTIONS(4938), + [anon_sym___stdcall] = ACTIONS(4938), + [anon_sym___fastcall] = ACTIONS(4938), + [anon_sym___thiscall] = ACTIONS(4938), + [anon_sym___vectorcall] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_static] = ACTIONS(4938), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_register] = ACTIONS(4938), + [anon_sym_inline] = ACTIONS(4938), + [anon_sym___inline] = ACTIONS(4938), + [anon_sym___inline__] = ACTIONS(4938), + [anon_sym___forceinline] = ACTIONS(4938), + [anon_sym_thread_local] = ACTIONS(4938), + [anon_sym___thread] = ACTIONS(4938), + [anon_sym_const] = ACTIONS(4938), + [anon_sym_constexpr] = ACTIONS(4938), + [anon_sym_volatile] = ACTIONS(4938), + [anon_sym_restrict] = ACTIONS(4938), + [anon_sym___restrict__] = ACTIONS(4938), + [anon_sym__Atomic] = ACTIONS(4938), + [anon_sym__Noreturn] = ACTIONS(4938), + [anon_sym_noreturn] = ACTIONS(4938), + [anon_sym__Nonnull] = ACTIONS(4938), + [anon_sym_mutable] = ACTIONS(4938), + [anon_sym_constinit] = ACTIONS(4938), + [anon_sym_consteval] = ACTIONS(4938), + [anon_sym_alignas] = ACTIONS(4938), + [anon_sym__Alignas] = ACTIONS(4938), + [anon_sym_asm] = ACTIONS(4938), + [anon_sym___asm__] = ACTIONS(4938), + [anon_sym___asm] = ACTIONS(4938), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4938), + [anon_sym_decltype] = ACTIONS(4938), + [anon_sym_final] = ACTIONS(4938), + [anon_sym_override] = ACTIONS(4938), + [anon_sym_template] = ACTIONS(4938), + [anon_sym_GT2] = ACTIONS(4940), + [anon_sym_operator] = ACTIONS(4938), + [anon_sym_try] = ACTIONS(4938), + [anon_sym_requires] = ACTIONS(4938), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4938), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4938), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4938), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4938), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4938), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4938), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4938), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4938), + [anon_sym_MOZ_COLD] = ACTIONS(4938), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4938), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4938), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4938), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4938), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4938), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4938), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4938), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4938), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4938), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4938), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4938), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4938), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4938), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4938), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4938), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4938), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4938), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4938), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4938), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4938), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4938), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4938), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4938), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4938), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4938), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4938), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4938), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4938), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4938), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4938), + [anon_sym_MOZ_NONNULL] = ACTIONS(4938), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4938), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4938), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4938), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4938), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4938), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4938), + [anon_sym_MOZ_NORETURN] = ACTIONS(4938), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4938), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4938), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4938), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4938), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4938), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4938), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4938), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4938), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4938), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4938), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4938), + [anon_sym_MOZ_RAII] = ACTIONS(4938), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4938), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4938), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4938), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4938), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4938), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4938), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4938), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4938), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4938), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4938), + }, + [STATE(1387)] = { + [sym_identifier] = ACTIONS(4942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_RPAREN] = ACTIONS(4944), + [anon_sym_LPAREN2] = ACTIONS(4944), + [anon_sym_TILDE] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_AMP_AMP] = ACTIONS(4944), + [anon_sym_AMP] = ACTIONS(4942), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym___extension__] = ACTIONS(4942), + [anon_sym_virtual] = ACTIONS(4942), + [anon_sym_extern] = ACTIONS(4942), + [anon_sym___attribute__] = ACTIONS(4942), + [anon_sym___attribute] = ACTIONS(4942), + [anon_sym_COLON_COLON] = ACTIONS(4944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4944), + [anon_sym___declspec] = ACTIONS(4942), + [anon_sym___based] = ACTIONS(4942), + [anon_sym___cdecl] = ACTIONS(4942), + [anon_sym___clrcall] = ACTIONS(4942), + [anon_sym___stdcall] = ACTIONS(4942), + [anon_sym___fastcall] = ACTIONS(4942), + [anon_sym___thiscall] = ACTIONS(4942), + [anon_sym___vectorcall] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_static] = ACTIONS(4942), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_register] = ACTIONS(4942), + [anon_sym_inline] = ACTIONS(4942), + [anon_sym___inline] = ACTIONS(4942), + [anon_sym___inline__] = ACTIONS(4942), + [anon_sym___forceinline] = ACTIONS(4942), + [anon_sym_thread_local] = ACTIONS(4942), + [anon_sym___thread] = ACTIONS(4942), + [anon_sym_const] = ACTIONS(4942), + [anon_sym_constexpr] = ACTIONS(4942), + [anon_sym_volatile] = ACTIONS(4942), + [anon_sym_restrict] = ACTIONS(4942), + [anon_sym___restrict__] = ACTIONS(4942), + [anon_sym__Atomic] = ACTIONS(4942), + [anon_sym__Noreturn] = ACTIONS(4942), + [anon_sym_noreturn] = ACTIONS(4942), + [anon_sym__Nonnull] = ACTIONS(4942), + [anon_sym_mutable] = ACTIONS(4942), + [anon_sym_constinit] = ACTIONS(4942), + [anon_sym_consteval] = ACTIONS(4942), + [anon_sym_alignas] = ACTIONS(4942), + [anon_sym__Alignas] = ACTIONS(4942), + [anon_sym_asm] = ACTIONS(4942), + [anon_sym___asm__] = ACTIONS(4942), + [anon_sym___asm] = ACTIONS(4942), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4942), + [anon_sym_decltype] = ACTIONS(4942), + [anon_sym_final] = ACTIONS(4942), + [anon_sym_override] = ACTIONS(4942), + [anon_sym_template] = ACTIONS(4942), + [anon_sym_GT2] = ACTIONS(4944), + [anon_sym_operator] = ACTIONS(4942), + [anon_sym_try] = ACTIONS(4942), + [anon_sym_requires] = ACTIONS(4942), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4942), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4942), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4942), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4942), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4942), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4942), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4942), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4942), + [anon_sym_MOZ_COLD] = ACTIONS(4942), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4942), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4942), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4942), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4942), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4942), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4942), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4942), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4942), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4942), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4942), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4942), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4942), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4942), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4942), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4942), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4942), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4942), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4942), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4942), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4942), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4942), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4942), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4942), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4942), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4942), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4942), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4942), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4942), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4942), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4942), + [anon_sym_MOZ_NONNULL] = ACTIONS(4942), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4942), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4942), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4942), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4942), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4942), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4942), + [anon_sym_MOZ_NORETURN] = ACTIONS(4942), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4942), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4942), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4942), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4942), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4942), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4942), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4942), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4942), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4942), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4942), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4942), + [anon_sym_MOZ_RAII] = ACTIONS(4942), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4942), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4942), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4942), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4942), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4942), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4942), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4942), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4942), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4942), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4942), + }, + [STATE(1388)] = { + [sym_identifier] = ACTIONS(4946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_RPAREN] = ACTIONS(4948), + [anon_sym_LPAREN2] = ACTIONS(4948), + [anon_sym_TILDE] = ACTIONS(4948), + [anon_sym_STAR] = ACTIONS(4948), + [anon_sym_AMP_AMP] = ACTIONS(4948), + [anon_sym_AMP] = ACTIONS(4946), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym___extension__] = ACTIONS(4946), + [anon_sym_virtual] = ACTIONS(4946), + [anon_sym_extern] = ACTIONS(4946), + [anon_sym___attribute__] = ACTIONS(4946), + [anon_sym___attribute] = ACTIONS(4946), + [anon_sym_COLON_COLON] = ACTIONS(4948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4948), + [anon_sym___declspec] = ACTIONS(4946), + [anon_sym___based] = ACTIONS(4946), + [anon_sym___cdecl] = ACTIONS(4946), + [anon_sym___clrcall] = ACTIONS(4946), + [anon_sym___stdcall] = ACTIONS(4946), + [anon_sym___fastcall] = ACTIONS(4946), + [anon_sym___thiscall] = ACTIONS(4946), + [anon_sym___vectorcall] = ACTIONS(4946), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_static] = ACTIONS(4946), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_register] = ACTIONS(4946), + [anon_sym_inline] = ACTIONS(4946), + [anon_sym___inline] = ACTIONS(4946), + [anon_sym___inline__] = ACTIONS(4946), + [anon_sym___forceinline] = ACTIONS(4946), + [anon_sym_thread_local] = ACTIONS(4946), + [anon_sym___thread] = ACTIONS(4946), + [anon_sym_const] = ACTIONS(4946), + [anon_sym_constexpr] = ACTIONS(4946), + [anon_sym_volatile] = ACTIONS(4946), + [anon_sym_restrict] = ACTIONS(4946), + [anon_sym___restrict__] = ACTIONS(4946), + [anon_sym__Atomic] = ACTIONS(4946), + [anon_sym__Noreturn] = ACTIONS(4946), + [anon_sym_noreturn] = ACTIONS(4946), + [anon_sym__Nonnull] = ACTIONS(4946), + [anon_sym_mutable] = ACTIONS(4946), + [anon_sym_constinit] = ACTIONS(4946), + [anon_sym_consteval] = ACTIONS(4946), + [anon_sym_alignas] = ACTIONS(4946), + [anon_sym__Alignas] = ACTIONS(4946), + [anon_sym_asm] = ACTIONS(4946), + [anon_sym___asm__] = ACTIONS(4946), + [anon_sym___asm] = ACTIONS(4946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4946), + [anon_sym_decltype] = ACTIONS(4946), + [anon_sym_final] = ACTIONS(4946), + [anon_sym_override] = ACTIONS(4946), + [anon_sym_template] = ACTIONS(4946), + [anon_sym_GT2] = ACTIONS(4948), + [anon_sym_operator] = ACTIONS(4946), + [anon_sym_try] = ACTIONS(4946), + [anon_sym_requires] = ACTIONS(4946), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4946), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4946), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4946), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4946), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4946), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4946), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4946), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4946), + [anon_sym_MOZ_COLD] = ACTIONS(4946), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4946), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4946), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4946), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4946), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4946), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4946), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4946), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4946), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4946), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4946), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4946), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4946), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4946), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4946), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4946), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4946), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4946), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4946), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4946), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4946), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4946), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4946), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4946), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4946), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4946), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4946), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4946), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4946), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4946), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4946), + [anon_sym_MOZ_NONNULL] = ACTIONS(4946), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4946), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4946), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4946), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4946), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4946), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4946), + [anon_sym_MOZ_NORETURN] = ACTIONS(4946), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4946), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4946), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4946), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4946), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4946), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4946), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4946), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4946), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4946), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4946), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4946), + [anon_sym_MOZ_RAII] = ACTIONS(4946), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4946), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4946), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4946), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4946), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4946), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4946), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4946), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4946), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4946), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4946), + }, + [STATE(1389)] = { + [sym_identifier] = ACTIONS(4950), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [anon_sym_LPAREN2] = ACTIONS(4952), + [anon_sym_TILDE] = ACTIONS(4952), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_AMP_AMP] = ACTIONS(4952), + [anon_sym_AMP] = ACTIONS(4950), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym___extension__] = ACTIONS(4950), + [anon_sym_virtual] = ACTIONS(4950), + [anon_sym_extern] = ACTIONS(4950), + [anon_sym___attribute__] = ACTIONS(4950), + [anon_sym___attribute] = ACTIONS(4950), + [anon_sym_COLON_COLON] = ACTIONS(4952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4952), + [anon_sym___declspec] = ACTIONS(4950), + [anon_sym___based] = ACTIONS(4950), + [anon_sym___cdecl] = ACTIONS(4950), + [anon_sym___clrcall] = ACTIONS(4950), + [anon_sym___stdcall] = ACTIONS(4950), + [anon_sym___fastcall] = ACTIONS(4950), + [anon_sym___thiscall] = ACTIONS(4950), + [anon_sym___vectorcall] = ACTIONS(4950), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_static] = ACTIONS(4950), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_register] = ACTIONS(4950), + [anon_sym_inline] = ACTIONS(4950), + [anon_sym___inline] = ACTIONS(4950), + [anon_sym___inline__] = ACTIONS(4950), + [anon_sym___forceinline] = ACTIONS(4950), + [anon_sym_thread_local] = ACTIONS(4950), + [anon_sym___thread] = ACTIONS(4950), + [anon_sym_const] = ACTIONS(4950), + [anon_sym_constexpr] = ACTIONS(4950), + [anon_sym_volatile] = ACTIONS(4950), + [anon_sym_restrict] = ACTIONS(4950), + [anon_sym___restrict__] = ACTIONS(4950), + [anon_sym__Atomic] = ACTIONS(4950), + [anon_sym__Noreturn] = ACTIONS(4950), + [anon_sym_noreturn] = ACTIONS(4950), + [anon_sym__Nonnull] = ACTIONS(4950), + [anon_sym_mutable] = ACTIONS(4950), + [anon_sym_constinit] = ACTIONS(4950), + [anon_sym_consteval] = ACTIONS(4950), + [anon_sym_alignas] = ACTIONS(4950), + [anon_sym__Alignas] = ACTIONS(4950), + [anon_sym_asm] = ACTIONS(4950), + [anon_sym___asm__] = ACTIONS(4950), + [anon_sym___asm] = ACTIONS(4950), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4950), + [anon_sym_decltype] = ACTIONS(4950), + [anon_sym_final] = ACTIONS(4950), + [anon_sym_override] = ACTIONS(4950), + [anon_sym_template] = ACTIONS(4950), + [anon_sym_GT2] = ACTIONS(4952), + [anon_sym_operator] = ACTIONS(4950), + [anon_sym_try] = ACTIONS(4950), + [anon_sym_requires] = ACTIONS(4950), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4950), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4950), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4950), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4950), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4950), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4950), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4950), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4950), + [anon_sym_MOZ_COLD] = ACTIONS(4950), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4950), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4950), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4950), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4950), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4950), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4950), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4950), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4950), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4950), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4950), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4950), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4950), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4950), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4950), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4950), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4950), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4950), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4950), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4950), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4950), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4950), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4950), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4950), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4950), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4950), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4950), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4950), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4950), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4950), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4950), + [anon_sym_MOZ_NONNULL] = ACTIONS(4950), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4950), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4950), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4950), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4950), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4950), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4950), + [anon_sym_MOZ_NORETURN] = ACTIONS(4950), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4950), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4950), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4950), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4950), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4950), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4950), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4950), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4950), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4950), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4950), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4950), + [anon_sym_MOZ_RAII] = ACTIONS(4950), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4950), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4950), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4950), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4950), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4950), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4950), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4950), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4950), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4950), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4950), + }, + [STATE(1390)] = { + [sym_identifier] = ACTIONS(4954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(4956), + [anon_sym_TILDE] = ACTIONS(4956), + [anon_sym_STAR] = ACTIONS(4956), + [anon_sym_AMP_AMP] = ACTIONS(4956), + [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym___extension__] = ACTIONS(4954), + [anon_sym_virtual] = ACTIONS(4954), + [anon_sym_extern] = ACTIONS(4954), + [anon_sym___attribute__] = ACTIONS(4954), + [anon_sym___attribute] = ACTIONS(4954), + [anon_sym_COLON_COLON] = ACTIONS(4956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4956), + [anon_sym___declspec] = ACTIONS(4954), + [anon_sym___based] = ACTIONS(4954), + [anon_sym___cdecl] = ACTIONS(4954), + [anon_sym___clrcall] = ACTIONS(4954), + [anon_sym___stdcall] = ACTIONS(4954), + [anon_sym___fastcall] = ACTIONS(4954), + [anon_sym___thiscall] = ACTIONS(4954), + [anon_sym___vectorcall] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_static] = ACTIONS(4954), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_register] = ACTIONS(4954), + [anon_sym_inline] = ACTIONS(4954), + [anon_sym___inline] = ACTIONS(4954), + [anon_sym___inline__] = ACTIONS(4954), + [anon_sym___forceinline] = ACTIONS(4954), + [anon_sym_thread_local] = ACTIONS(4954), + [anon_sym___thread] = ACTIONS(4954), + [anon_sym_const] = ACTIONS(4954), + [anon_sym_constexpr] = ACTIONS(4954), + [anon_sym_volatile] = ACTIONS(4954), + [anon_sym_restrict] = ACTIONS(4954), + [anon_sym___restrict__] = ACTIONS(4954), + [anon_sym__Atomic] = ACTIONS(4954), + [anon_sym__Noreturn] = ACTIONS(4954), + [anon_sym_noreturn] = ACTIONS(4954), + [anon_sym__Nonnull] = ACTIONS(4954), + [anon_sym_mutable] = ACTIONS(4954), + [anon_sym_constinit] = ACTIONS(4954), + [anon_sym_consteval] = ACTIONS(4954), + [anon_sym_alignas] = ACTIONS(4954), + [anon_sym__Alignas] = ACTIONS(4954), + [anon_sym_asm] = ACTIONS(4954), + [anon_sym___asm__] = ACTIONS(4954), + [anon_sym___asm] = ACTIONS(4954), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4954), + [anon_sym_decltype] = ACTIONS(4954), + [anon_sym_final] = ACTIONS(4954), + [anon_sym_override] = ACTIONS(4954), + [anon_sym_template] = ACTIONS(4954), + [anon_sym_GT2] = ACTIONS(4956), + [anon_sym_operator] = ACTIONS(4954), + [anon_sym_try] = ACTIONS(4954), + [anon_sym_requires] = ACTIONS(4954), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4954), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4954), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4954), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4954), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4954), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4954), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4954), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4954), + [anon_sym_MOZ_COLD] = ACTIONS(4954), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4954), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4954), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4954), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4954), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4954), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4954), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4954), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4954), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4954), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4954), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4954), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4954), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4954), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4954), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4954), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4954), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4954), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4954), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4954), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4954), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4954), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4954), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4954), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4954), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4954), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4954), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4954), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4954), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4954), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4954), + [anon_sym_MOZ_NONNULL] = ACTIONS(4954), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4954), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4954), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4954), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4954), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4954), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4954), + [anon_sym_MOZ_NORETURN] = ACTIONS(4954), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4954), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4954), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4954), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4954), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4954), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4954), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4954), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4954), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4954), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4954), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4954), + [anon_sym_MOZ_RAII] = ACTIONS(4954), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4954), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4954), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4954), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4954), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4954), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4954), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4954), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4954), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4954), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4954), + }, + [STATE(1391)] = { + [sym_identifier] = ACTIONS(4958), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_LPAREN2] = ACTIONS(4960), + [anon_sym_TILDE] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4960), + [anon_sym_AMP_AMP] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4958), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_virtual] = ACTIONS(4958), + [anon_sym_extern] = ACTIONS(4958), + [anon_sym___attribute__] = ACTIONS(4958), + [anon_sym___attribute] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(4960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4960), + [anon_sym___declspec] = ACTIONS(4958), + [anon_sym___based] = ACTIONS(4958), + [anon_sym___cdecl] = ACTIONS(4958), + [anon_sym___clrcall] = ACTIONS(4958), + [anon_sym___stdcall] = ACTIONS(4958), + [anon_sym___fastcall] = ACTIONS(4958), + [anon_sym___thiscall] = ACTIONS(4958), + [anon_sym___vectorcall] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_static] = ACTIONS(4958), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_register] = ACTIONS(4958), + [anon_sym_inline] = ACTIONS(4958), + [anon_sym___inline] = ACTIONS(4958), + [anon_sym___inline__] = ACTIONS(4958), + [anon_sym___forceinline] = ACTIONS(4958), + [anon_sym_thread_local] = ACTIONS(4958), + [anon_sym___thread] = ACTIONS(4958), + [anon_sym_const] = ACTIONS(4958), + [anon_sym_constexpr] = ACTIONS(4958), + [anon_sym_volatile] = ACTIONS(4958), + [anon_sym_restrict] = ACTIONS(4958), + [anon_sym___restrict__] = ACTIONS(4958), + [anon_sym__Atomic] = ACTIONS(4958), + [anon_sym__Noreturn] = ACTIONS(4958), + [anon_sym_noreturn] = ACTIONS(4958), + [anon_sym__Nonnull] = ACTIONS(4958), + [anon_sym_mutable] = ACTIONS(4958), + [anon_sym_constinit] = ACTIONS(4958), + [anon_sym_consteval] = ACTIONS(4958), + [anon_sym_alignas] = ACTIONS(4958), + [anon_sym__Alignas] = ACTIONS(4958), + [anon_sym_asm] = ACTIONS(4958), + [anon_sym___asm__] = ACTIONS(4958), + [anon_sym___asm] = ACTIONS(4958), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4958), + [anon_sym_decltype] = ACTIONS(4958), + [anon_sym_final] = ACTIONS(4958), + [anon_sym_override] = ACTIONS(4958), + [anon_sym_template] = ACTIONS(4958), + [anon_sym_GT2] = ACTIONS(4960), + [anon_sym_operator] = ACTIONS(4958), + [anon_sym_try] = ACTIONS(4958), + [anon_sym_requires] = ACTIONS(4958), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4958), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4958), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4958), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4958), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4958), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4958), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4958), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4958), + [anon_sym_MOZ_COLD] = ACTIONS(4958), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4958), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4958), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4958), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4958), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4958), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4958), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4958), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4958), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4958), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4958), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4958), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4958), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4958), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4958), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4958), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4958), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4958), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4958), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4958), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4958), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4958), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4958), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4958), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4958), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4958), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4958), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4958), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4958), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4958), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4958), + [anon_sym_MOZ_NONNULL] = ACTIONS(4958), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4958), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4958), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4958), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4958), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4958), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4958), + [anon_sym_MOZ_NORETURN] = ACTIONS(4958), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4958), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4958), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4958), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4958), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4958), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4958), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4958), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4958), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4958), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4958), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4958), + [anon_sym_MOZ_RAII] = ACTIONS(4958), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4958), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4958), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4958), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4958), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4958), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4958), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4958), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4958), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4958), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4958), + }, + [STATE(1392)] = { + [sym_identifier] = ACTIONS(4962), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [anon_sym_LPAREN2] = ACTIONS(4964), + [anon_sym_TILDE] = ACTIONS(4964), + [anon_sym_STAR] = ACTIONS(4964), + [anon_sym_AMP_AMP] = ACTIONS(4964), + [anon_sym_AMP] = ACTIONS(4962), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym___extension__] = ACTIONS(4962), + [anon_sym_virtual] = ACTIONS(4962), + [anon_sym_extern] = ACTIONS(4962), + [anon_sym___attribute__] = ACTIONS(4962), + [anon_sym___attribute] = ACTIONS(4962), + [anon_sym_COLON_COLON] = ACTIONS(4964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4964), + [anon_sym___declspec] = ACTIONS(4962), + [anon_sym___based] = ACTIONS(4962), + [anon_sym___cdecl] = ACTIONS(4962), + [anon_sym___clrcall] = ACTIONS(4962), + [anon_sym___stdcall] = ACTIONS(4962), + [anon_sym___fastcall] = ACTIONS(4962), + [anon_sym___thiscall] = ACTIONS(4962), + [anon_sym___vectorcall] = ACTIONS(4962), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_static] = ACTIONS(4962), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_register] = ACTIONS(4962), + [anon_sym_inline] = ACTIONS(4962), + [anon_sym___inline] = ACTIONS(4962), + [anon_sym___inline__] = ACTIONS(4962), + [anon_sym___forceinline] = ACTIONS(4962), + [anon_sym_thread_local] = ACTIONS(4962), + [anon_sym___thread] = ACTIONS(4962), + [anon_sym_const] = ACTIONS(4962), + [anon_sym_constexpr] = ACTIONS(4962), + [anon_sym_volatile] = ACTIONS(4962), + [anon_sym_restrict] = ACTIONS(4962), + [anon_sym___restrict__] = ACTIONS(4962), + [anon_sym__Atomic] = ACTIONS(4962), + [anon_sym__Noreturn] = ACTIONS(4962), + [anon_sym_noreturn] = ACTIONS(4962), + [anon_sym__Nonnull] = ACTIONS(4962), + [anon_sym_mutable] = ACTIONS(4962), + [anon_sym_constinit] = ACTIONS(4962), + [anon_sym_consteval] = ACTIONS(4962), + [anon_sym_alignas] = ACTIONS(4962), + [anon_sym__Alignas] = ACTIONS(4962), + [anon_sym_asm] = ACTIONS(4962), + [anon_sym___asm__] = ACTIONS(4962), + [anon_sym___asm] = ACTIONS(4962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4962), + [anon_sym_decltype] = ACTIONS(4962), + [anon_sym_final] = ACTIONS(4962), + [anon_sym_override] = ACTIONS(4962), + [anon_sym_template] = ACTIONS(4962), + [anon_sym_GT2] = ACTIONS(4964), + [anon_sym_operator] = ACTIONS(4962), + [anon_sym_try] = ACTIONS(4962), + [anon_sym_requires] = ACTIONS(4962), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4962), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4962), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4962), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4962), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4962), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4962), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4962), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4962), + [anon_sym_MOZ_COLD] = ACTIONS(4962), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4962), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4962), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4962), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4962), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4962), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4962), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4962), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4962), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4962), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4962), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4962), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4962), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4962), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4962), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4962), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4962), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4962), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4962), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4962), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4962), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4962), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4962), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4962), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4962), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4962), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4962), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4962), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4962), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4962), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4962), + [anon_sym_MOZ_NONNULL] = ACTIONS(4962), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4962), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4962), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4962), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4962), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4962), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4962), + [anon_sym_MOZ_NORETURN] = ACTIONS(4962), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4962), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4962), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4962), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4962), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4962), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4962), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4962), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4962), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4962), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4962), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4962), + [anon_sym_MOZ_RAII] = ACTIONS(4962), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4962), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4962), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4962), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4962), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4962), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4962), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4962), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4962), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4962), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4962), + }, + [STATE(1393)] = { + [sym_identifier] = ACTIONS(4966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4968), + [anon_sym_TILDE] = ACTIONS(4968), + [anon_sym_STAR] = ACTIONS(4968), + [anon_sym_AMP_AMP] = ACTIONS(4968), + [anon_sym_AMP] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym___extension__] = ACTIONS(4966), + [anon_sym_virtual] = ACTIONS(4966), + [anon_sym_extern] = ACTIONS(4966), + [anon_sym___attribute__] = ACTIONS(4966), + [anon_sym___attribute] = ACTIONS(4966), + [anon_sym_COLON_COLON] = ACTIONS(4968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4968), + [anon_sym___declspec] = ACTIONS(4966), + [anon_sym___based] = ACTIONS(4966), + [anon_sym___cdecl] = ACTIONS(4966), + [anon_sym___clrcall] = ACTIONS(4966), + [anon_sym___stdcall] = ACTIONS(4966), + [anon_sym___fastcall] = ACTIONS(4966), + [anon_sym___thiscall] = ACTIONS(4966), + [anon_sym___vectorcall] = ACTIONS(4966), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_static] = ACTIONS(4966), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_register] = ACTIONS(4966), + [anon_sym_inline] = ACTIONS(4966), + [anon_sym___inline] = ACTIONS(4966), + [anon_sym___inline__] = ACTIONS(4966), + [anon_sym___forceinline] = ACTIONS(4966), + [anon_sym_thread_local] = ACTIONS(4966), + [anon_sym___thread] = ACTIONS(4966), + [anon_sym_const] = ACTIONS(4966), + [anon_sym_constexpr] = ACTIONS(4966), + [anon_sym_volatile] = ACTIONS(4966), + [anon_sym_restrict] = ACTIONS(4966), + [anon_sym___restrict__] = ACTIONS(4966), + [anon_sym__Atomic] = ACTIONS(4966), + [anon_sym__Noreturn] = ACTIONS(4966), + [anon_sym_noreturn] = ACTIONS(4966), + [anon_sym__Nonnull] = ACTIONS(4966), + [anon_sym_mutable] = ACTIONS(4966), + [anon_sym_constinit] = ACTIONS(4966), + [anon_sym_consteval] = ACTIONS(4966), + [anon_sym_alignas] = ACTIONS(4966), + [anon_sym__Alignas] = ACTIONS(4966), + [anon_sym_asm] = ACTIONS(4966), + [anon_sym___asm__] = ACTIONS(4966), + [anon_sym___asm] = ACTIONS(4966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4966), + [anon_sym_decltype] = ACTIONS(4966), + [anon_sym_final] = ACTIONS(4966), + [anon_sym_override] = ACTIONS(4966), + [anon_sym_template] = ACTIONS(4966), + [anon_sym_GT2] = ACTIONS(4968), + [anon_sym_operator] = ACTIONS(4966), + [anon_sym_try] = ACTIONS(4966), + [anon_sym_requires] = ACTIONS(4966), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4966), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4966), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4966), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4966), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4966), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4966), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4966), + [anon_sym_MOZ_COLD] = ACTIONS(4966), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4966), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4966), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4966), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4966), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4966), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4966), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4966), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4966), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4966), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4966), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4966), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4966), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4966), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4966), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4966), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4966), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4966), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4966), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4966), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4966), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4966), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4966), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4966), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4966), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4966), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4966), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4966), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4966), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4966), + [anon_sym_MOZ_NONNULL] = ACTIONS(4966), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4966), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4966), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4966), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4966), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4966), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4966), + [anon_sym_MOZ_NORETURN] = ACTIONS(4966), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4966), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4966), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4966), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4966), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4966), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4966), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4966), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4966), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4966), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4966), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4966), + [anon_sym_MOZ_RAII] = ACTIONS(4966), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4966), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4966), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4966), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4966), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4966), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4966), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4966), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4966), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4966), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4966), + }, + [STATE(1394)] = { + [sym_identifier] = ACTIONS(4970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_RPAREN] = ACTIONS(4972), + [anon_sym_LPAREN2] = ACTIONS(4972), + [anon_sym_TILDE] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [anon_sym_AMP_AMP] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4970), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_virtual] = ACTIONS(4970), + [anon_sym_extern] = ACTIONS(4970), + [anon_sym___attribute__] = ACTIONS(4970), + [anon_sym___attribute] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4972), + [anon_sym___declspec] = ACTIONS(4970), + [anon_sym___based] = ACTIONS(4970), + [anon_sym___cdecl] = ACTIONS(4970), + [anon_sym___clrcall] = ACTIONS(4970), + [anon_sym___stdcall] = ACTIONS(4970), + [anon_sym___fastcall] = ACTIONS(4970), + [anon_sym___thiscall] = ACTIONS(4970), + [anon_sym___vectorcall] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_static] = ACTIONS(4970), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_register] = ACTIONS(4970), + [anon_sym_inline] = ACTIONS(4970), + [anon_sym___inline] = ACTIONS(4970), + [anon_sym___inline__] = ACTIONS(4970), + [anon_sym___forceinline] = ACTIONS(4970), + [anon_sym_thread_local] = ACTIONS(4970), + [anon_sym___thread] = ACTIONS(4970), + [anon_sym_const] = ACTIONS(4970), + [anon_sym_constexpr] = ACTIONS(4970), + [anon_sym_volatile] = ACTIONS(4970), + [anon_sym_restrict] = ACTIONS(4970), + [anon_sym___restrict__] = ACTIONS(4970), + [anon_sym__Atomic] = ACTIONS(4970), + [anon_sym__Noreturn] = ACTIONS(4970), + [anon_sym_noreturn] = ACTIONS(4970), + [anon_sym__Nonnull] = ACTIONS(4970), + [anon_sym_mutable] = ACTIONS(4970), + [anon_sym_constinit] = ACTIONS(4970), + [anon_sym_consteval] = ACTIONS(4970), + [anon_sym_alignas] = ACTIONS(4970), + [anon_sym__Alignas] = ACTIONS(4970), + [anon_sym_asm] = ACTIONS(4970), + [anon_sym___asm__] = ACTIONS(4970), + [anon_sym___asm] = ACTIONS(4970), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4970), + [anon_sym_decltype] = ACTIONS(4970), + [anon_sym_final] = ACTIONS(4970), + [anon_sym_override] = ACTIONS(4970), + [anon_sym_template] = ACTIONS(4970), + [anon_sym_GT2] = ACTIONS(4972), + [anon_sym_operator] = ACTIONS(4970), + [anon_sym_try] = ACTIONS(4970), + [anon_sym_requires] = ACTIONS(4970), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4970), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4970), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4970), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4970), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4970), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4970), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4970), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4970), + [anon_sym_MOZ_COLD] = ACTIONS(4970), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4970), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4970), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4970), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4970), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4970), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4970), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4970), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4970), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4970), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4970), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4970), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4970), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4970), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4970), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4970), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4970), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4970), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4970), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4970), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4970), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4970), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4970), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4970), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4970), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4970), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4970), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4970), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4970), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4970), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4970), + [anon_sym_MOZ_NONNULL] = ACTIONS(4970), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4970), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4970), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4970), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4970), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4970), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4970), + [anon_sym_MOZ_NORETURN] = ACTIONS(4970), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4970), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4970), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4970), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4970), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4970), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4970), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4970), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4970), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4970), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4970), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4970), + [anon_sym_MOZ_RAII] = ACTIONS(4970), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4970), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4970), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4970), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4970), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4970), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4970), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4970), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4970), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4970), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4970), + }, + [STATE(1395)] = { + [sym_identifier] = ACTIONS(4974), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_RPAREN] = ACTIONS(4976), + [anon_sym_LPAREN2] = ACTIONS(4976), + [anon_sym_TILDE] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_AMP_AMP] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym___extension__] = ACTIONS(4974), + [anon_sym_virtual] = ACTIONS(4974), + [anon_sym_extern] = ACTIONS(4974), + [anon_sym___attribute__] = ACTIONS(4974), + [anon_sym___attribute] = ACTIONS(4974), + [anon_sym_COLON_COLON] = ACTIONS(4976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4976), + [anon_sym___declspec] = ACTIONS(4974), + [anon_sym___based] = ACTIONS(4974), + [anon_sym___cdecl] = ACTIONS(4974), + [anon_sym___clrcall] = ACTIONS(4974), + [anon_sym___stdcall] = ACTIONS(4974), + [anon_sym___fastcall] = ACTIONS(4974), + [anon_sym___thiscall] = ACTIONS(4974), + [anon_sym___vectorcall] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_static] = ACTIONS(4974), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_register] = ACTIONS(4974), + [anon_sym_inline] = ACTIONS(4974), + [anon_sym___inline] = ACTIONS(4974), + [anon_sym___inline__] = ACTIONS(4974), + [anon_sym___forceinline] = ACTIONS(4974), + [anon_sym_thread_local] = ACTIONS(4974), + [anon_sym___thread] = ACTIONS(4974), + [anon_sym_const] = ACTIONS(4974), + [anon_sym_constexpr] = ACTIONS(4974), + [anon_sym_volatile] = ACTIONS(4974), + [anon_sym_restrict] = ACTIONS(4974), + [anon_sym___restrict__] = ACTIONS(4974), + [anon_sym__Atomic] = ACTIONS(4974), + [anon_sym__Noreturn] = ACTIONS(4974), + [anon_sym_noreturn] = ACTIONS(4974), + [anon_sym__Nonnull] = ACTIONS(4974), + [anon_sym_mutable] = ACTIONS(4974), + [anon_sym_constinit] = ACTIONS(4974), + [anon_sym_consteval] = ACTIONS(4974), + [anon_sym_alignas] = ACTIONS(4974), + [anon_sym__Alignas] = ACTIONS(4974), + [anon_sym_asm] = ACTIONS(4974), + [anon_sym___asm__] = ACTIONS(4974), + [anon_sym___asm] = ACTIONS(4974), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4974), + [anon_sym_decltype] = ACTIONS(4974), + [anon_sym_final] = ACTIONS(4974), + [anon_sym_override] = ACTIONS(4974), + [anon_sym_template] = ACTIONS(4974), + [anon_sym_GT2] = ACTIONS(4976), + [anon_sym_operator] = ACTIONS(4974), + [anon_sym_try] = ACTIONS(4974), + [anon_sym_requires] = ACTIONS(4974), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4974), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4974), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4974), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4974), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4974), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4974), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4974), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4974), + [anon_sym_MOZ_COLD] = ACTIONS(4974), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4974), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4974), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4974), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4974), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4974), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4974), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4974), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4974), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4974), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4974), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4974), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4974), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4974), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4974), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4974), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4974), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4974), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4974), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4974), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4974), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4974), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4974), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4974), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4974), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4974), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4974), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4974), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4974), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4974), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4974), + [anon_sym_MOZ_NONNULL] = ACTIONS(4974), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4974), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4974), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4974), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4974), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4974), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4974), + [anon_sym_MOZ_NORETURN] = ACTIONS(4974), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4974), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4974), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4974), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4974), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4974), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4974), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4974), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4974), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4974), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4974), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4974), + [anon_sym_MOZ_RAII] = ACTIONS(4974), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4974), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4974), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4974), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4974), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4974), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4974), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4974), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4974), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4974), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4974), + }, + [STATE(1396)] = { + [sym_identifier] = ACTIONS(4978), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4980), + [anon_sym_COMMA] = ACTIONS(4980), + [anon_sym_RPAREN] = ACTIONS(4980), + [anon_sym_LPAREN2] = ACTIONS(4980), + [anon_sym_TILDE] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_AMP_AMP] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(4980), + [anon_sym___extension__] = ACTIONS(4978), + [anon_sym_virtual] = ACTIONS(4978), + [anon_sym_extern] = ACTIONS(4978), + [anon_sym___attribute__] = ACTIONS(4978), + [anon_sym___attribute] = ACTIONS(4978), + [anon_sym_COLON_COLON] = ACTIONS(4980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4980), + [anon_sym___declspec] = ACTIONS(4978), + [anon_sym___based] = ACTIONS(4978), + [anon_sym___cdecl] = ACTIONS(4978), + [anon_sym___clrcall] = ACTIONS(4978), + [anon_sym___stdcall] = ACTIONS(4978), + [anon_sym___fastcall] = ACTIONS(4978), + [anon_sym___thiscall] = ACTIONS(4978), + [anon_sym___vectorcall] = ACTIONS(4978), + [anon_sym_LBRACE] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_static] = ACTIONS(4978), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_register] = ACTIONS(4978), + [anon_sym_inline] = ACTIONS(4978), + [anon_sym___inline] = ACTIONS(4978), + [anon_sym___inline__] = ACTIONS(4978), + [anon_sym___forceinline] = ACTIONS(4978), + [anon_sym_thread_local] = ACTIONS(4978), + [anon_sym___thread] = ACTIONS(4978), + [anon_sym_const] = ACTIONS(4978), + [anon_sym_constexpr] = ACTIONS(4978), + [anon_sym_volatile] = ACTIONS(4978), + [anon_sym_restrict] = ACTIONS(4978), + [anon_sym___restrict__] = ACTIONS(4978), + [anon_sym__Atomic] = ACTIONS(4978), + [anon_sym__Noreturn] = ACTIONS(4978), + [anon_sym_noreturn] = ACTIONS(4978), + [anon_sym__Nonnull] = ACTIONS(4978), + [anon_sym_mutable] = ACTIONS(4978), + [anon_sym_constinit] = ACTIONS(4978), + [anon_sym_consteval] = ACTIONS(4978), + [anon_sym_alignas] = ACTIONS(4978), + [anon_sym__Alignas] = ACTIONS(4978), + [anon_sym_asm] = ACTIONS(4978), + [anon_sym___asm__] = ACTIONS(4978), + [anon_sym___asm] = ACTIONS(4978), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4978), + [anon_sym_decltype] = ACTIONS(4978), + [anon_sym_final] = ACTIONS(4978), + [anon_sym_override] = ACTIONS(4978), + [anon_sym_template] = ACTIONS(4978), + [anon_sym_GT2] = ACTIONS(4980), + [anon_sym_operator] = ACTIONS(4978), + [anon_sym_try] = ACTIONS(4978), + [anon_sym_requires] = ACTIONS(4978), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4978), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4978), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4978), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4978), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4978), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4978), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4978), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4978), + [anon_sym_MOZ_COLD] = ACTIONS(4978), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4978), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4978), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4978), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4978), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4978), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4978), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4978), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4978), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4978), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4978), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4978), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4978), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4978), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4978), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4978), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4978), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4978), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4978), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4978), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4978), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4978), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4978), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4978), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4978), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4978), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4978), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4978), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4978), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4978), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4978), + [anon_sym_MOZ_NONNULL] = ACTIONS(4978), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4978), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4978), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4978), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4978), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4978), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4978), + [anon_sym_MOZ_NORETURN] = ACTIONS(4978), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4978), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4978), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4978), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4978), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4978), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4978), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4978), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4978), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4978), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4978), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4978), + [anon_sym_MOZ_RAII] = ACTIONS(4978), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4978), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4978), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4978), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4978), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4978), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4978), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4978), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4978), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4978), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4978), + }, + [STATE(1397)] = { + [sym_identifier] = ACTIONS(4735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4737), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4737), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_TILDE] = ACTIONS(4737), + [anon_sym_STAR] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_SEMI] = ACTIONS(4737), + [anon_sym___extension__] = ACTIONS(4735), + [anon_sym_virtual] = ACTIONS(4735), + [anon_sym_extern] = ACTIONS(4735), + [anon_sym___attribute__] = ACTIONS(4735), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_COLON_COLON] = ACTIONS(4737), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4737), + [anon_sym___declspec] = ACTIONS(4735), + [anon_sym___based] = ACTIONS(4735), + [anon_sym___cdecl] = ACTIONS(4735), + [anon_sym___clrcall] = ACTIONS(4735), + [anon_sym___stdcall] = ACTIONS(4735), + [anon_sym___fastcall] = ACTIONS(4735), + [anon_sym___thiscall] = ACTIONS(4735), + [anon_sym___vectorcall] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4737), + [anon_sym_LBRACK] = ACTIONS(4735), + [anon_sym_static] = ACTIONS(4735), + [anon_sym_EQ] = ACTIONS(4737), + [anon_sym_register] = ACTIONS(4735), + [anon_sym_inline] = ACTIONS(4735), + [anon_sym___inline] = ACTIONS(4735), + [anon_sym___inline__] = ACTIONS(4735), + [anon_sym___forceinline] = ACTIONS(4735), + [anon_sym_thread_local] = ACTIONS(4735), + [anon_sym___thread] = ACTIONS(4735), + [anon_sym_const] = ACTIONS(4735), + [anon_sym_constexpr] = ACTIONS(4735), + [anon_sym_volatile] = ACTIONS(4735), + [anon_sym_restrict] = ACTIONS(4735), + [anon_sym___restrict__] = ACTIONS(4735), + [anon_sym__Atomic] = ACTIONS(4735), + [anon_sym__Noreturn] = ACTIONS(4735), + [anon_sym_noreturn] = ACTIONS(4735), + [anon_sym__Nonnull] = ACTIONS(4735), + [anon_sym_mutable] = ACTIONS(4735), + [anon_sym_constinit] = ACTIONS(4735), + [anon_sym_consteval] = ACTIONS(4735), + [anon_sym_alignas] = ACTIONS(4735), + [anon_sym__Alignas] = ACTIONS(4735), + [anon_sym_asm] = ACTIONS(4735), + [anon_sym___asm__] = ACTIONS(4735), + [anon_sym___asm] = ACTIONS(4735), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4735), + [anon_sym_decltype] = ACTIONS(4735), + [anon_sym_final] = ACTIONS(4735), + [anon_sym_override] = ACTIONS(4735), + [anon_sym_template] = ACTIONS(4735), + [anon_sym_GT2] = ACTIONS(4737), + [anon_sym_operator] = ACTIONS(4735), + [anon_sym_try] = ACTIONS(4735), + [anon_sym_requires] = ACTIONS(4735), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4735), + [anon_sym_MOZ_COLD] = ACTIONS(4735), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4735), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4735), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4735), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4735), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4735), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4735), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4735), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4735), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4735), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4735), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4735), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4735), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_RAII] = ACTIONS(4735), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4735), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4735), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4735), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4735), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4735), + }, + [STATE(1398)] = { + [sym_identifier] = ACTIONS(4982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4984), + [anon_sym_COMMA] = ACTIONS(4984), + [anon_sym_RPAREN] = ACTIONS(4984), + [anon_sym_LPAREN2] = ACTIONS(4984), + [anon_sym_TILDE] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_AMP_AMP] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(4982), + [anon_sym_SEMI] = ACTIONS(4984), + [anon_sym___extension__] = ACTIONS(4982), + [anon_sym_virtual] = ACTIONS(4982), + [anon_sym_extern] = ACTIONS(4982), + [anon_sym___attribute__] = ACTIONS(4982), + [anon_sym___attribute] = ACTIONS(4982), + [anon_sym_COLON_COLON] = ACTIONS(4984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4984), + [anon_sym___declspec] = ACTIONS(4982), + [anon_sym___based] = ACTIONS(4982), + [anon_sym___cdecl] = ACTIONS(4982), + [anon_sym___clrcall] = ACTIONS(4982), + [anon_sym___stdcall] = ACTIONS(4982), + [anon_sym___fastcall] = ACTIONS(4982), + [anon_sym___thiscall] = ACTIONS(4982), + [anon_sym___vectorcall] = ACTIONS(4982), + [anon_sym_LBRACE] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_static] = ACTIONS(4982), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_register] = ACTIONS(4982), + [anon_sym_inline] = ACTIONS(4982), + [anon_sym___inline] = ACTIONS(4982), + [anon_sym___inline__] = ACTIONS(4982), + [anon_sym___forceinline] = ACTIONS(4982), + [anon_sym_thread_local] = ACTIONS(4982), + [anon_sym___thread] = ACTIONS(4982), + [anon_sym_const] = ACTIONS(4982), + [anon_sym_constexpr] = ACTIONS(4982), + [anon_sym_volatile] = ACTIONS(4982), + [anon_sym_restrict] = ACTIONS(4982), + [anon_sym___restrict__] = ACTIONS(4982), + [anon_sym__Atomic] = ACTIONS(4982), + [anon_sym__Noreturn] = ACTIONS(4982), + [anon_sym_noreturn] = ACTIONS(4982), + [anon_sym__Nonnull] = ACTIONS(4982), + [anon_sym_mutable] = ACTIONS(4982), + [anon_sym_constinit] = ACTIONS(4982), + [anon_sym_consteval] = ACTIONS(4982), + [anon_sym_alignas] = ACTIONS(4982), + [anon_sym__Alignas] = ACTIONS(4982), + [anon_sym_asm] = ACTIONS(4982), + [anon_sym___asm__] = ACTIONS(4982), + [anon_sym___asm] = ACTIONS(4982), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4982), + [anon_sym_decltype] = ACTIONS(4982), + [anon_sym_final] = ACTIONS(4982), + [anon_sym_override] = ACTIONS(4982), + [anon_sym_template] = ACTIONS(4982), + [anon_sym_GT2] = ACTIONS(4984), + [anon_sym_operator] = ACTIONS(4982), + [anon_sym_try] = ACTIONS(4982), + [anon_sym_requires] = ACTIONS(4982), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4982), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4982), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4982), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4982), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4982), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4982), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4982), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4982), + [anon_sym_MOZ_COLD] = ACTIONS(4982), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4982), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4982), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4982), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4982), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4982), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4982), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4982), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4982), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4982), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4982), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4982), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4982), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4982), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4982), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4982), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4982), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4982), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4982), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4982), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4982), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4982), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4982), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4982), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4982), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4982), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4982), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4982), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4982), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4982), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4982), + [anon_sym_MOZ_NONNULL] = ACTIONS(4982), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4982), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4982), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4982), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4982), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4982), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4982), + [anon_sym_MOZ_NORETURN] = ACTIONS(4982), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4982), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4982), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4982), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4982), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4982), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4982), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4982), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4982), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4982), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4982), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4982), + [anon_sym_MOZ_RAII] = ACTIONS(4982), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4982), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4982), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4982), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4982), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4982), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4982), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4982), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4982), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4982), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4982), + }, + [STATE(1399)] = { + [sym_attribute_specifier] = STATE(1418), + [sym_field_declaration_list] = STATE(1579), + [sym_virtual_specifier] = STATE(7420), + [sym_base_class_clause] = STATE(8312), + [sym_identifier] = ACTIONS(4986), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4988), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_RPAREN] = ACTIONS(4988), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(4988), + [anon_sym___extension__] = ACTIONS(4986), + [anon_sym_virtual] = ACTIONS(4986), + [anon_sym_extern] = ACTIONS(4986), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4988), + [anon_sym___declspec] = ACTIONS(4986), + [anon_sym___based] = ACTIONS(4986), + [anon_sym___cdecl] = ACTIONS(4986), + [anon_sym___clrcall] = ACTIONS(4986), + [anon_sym___stdcall] = ACTIONS(4986), + [anon_sym___fastcall] = ACTIONS(4986), + [anon_sym___thiscall] = ACTIONS(4986), + [anon_sym___vectorcall] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_static] = ACTIONS(4986), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_register] = ACTIONS(4986), + [anon_sym_inline] = ACTIONS(4986), + [anon_sym___inline] = ACTIONS(4986), + [anon_sym___inline__] = ACTIONS(4986), + [anon_sym___forceinline] = ACTIONS(4986), + [anon_sym_thread_local] = ACTIONS(4986), + [anon_sym___thread] = ACTIONS(4986), + [anon_sym_const] = ACTIONS(4986), + [anon_sym_constexpr] = ACTIONS(4986), + [anon_sym_volatile] = ACTIONS(4986), + [anon_sym_restrict] = ACTIONS(4986), + [anon_sym___restrict__] = ACTIONS(4986), + [anon_sym__Atomic] = ACTIONS(4986), + [anon_sym__Noreturn] = ACTIONS(4986), + [anon_sym_noreturn] = ACTIONS(4986), + [anon_sym__Nonnull] = ACTIONS(4986), + [anon_sym_mutable] = ACTIONS(4986), + [anon_sym_constinit] = ACTIONS(4986), + [anon_sym_consteval] = ACTIONS(4986), + [anon_sym_alignas] = ACTIONS(4986), + [anon_sym__Alignas] = ACTIONS(4986), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4986), + [anon_sym_decltype] = ACTIONS(4986), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(4986), + [anon_sym_GT2] = ACTIONS(4988), + [anon_sym_operator] = ACTIONS(4986), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4986), + [anon_sym_MOZ_COLD] = ACTIONS(4986), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4986), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4986), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4986), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4986), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4986), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4986), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4986), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4986), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4986), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4986), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4986), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4986), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_RAII] = ACTIONS(4986), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4986), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4986), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4986), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4986), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4986), + }, + [STATE(1400)] = { + [sym__declaration_modifiers] = STATE(1421), + [sym_attribute_specifier] = STATE(1421), + [sym_attribute_declaration] = STATE(1421), + [sym_ms_declspec_modifier] = STATE(1421), + [sym_storage_class_specifier] = STATE(1421), + [sym_type_qualifier] = STATE(1421), + [sym_alignas_qualifier] = STATE(1593), + [sym_macro_annotation] = STATE(1618), + [aux_sym__declaration_specifiers_repeat1] = STATE(1421), + [sym_identifier] = ACTIONS(4996), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_RPAREN] = ACTIONS(4998), + [anon_sym_LPAREN2] = ACTIONS(4998), + [anon_sym_TILDE] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(4998), + [anon_sym_AMP_AMP] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(4996), + [anon_sym_SEMI] = ACTIONS(4998), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(5000), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(4996), + [anon_sym___cdecl] = ACTIONS(4996), + [anon_sym___clrcall] = ACTIONS(4996), + [anon_sym___stdcall] = ACTIONS(4996), + [anon_sym___fastcall] = ACTIONS(4996), + [anon_sym___thiscall] = ACTIONS(4996), + [anon_sym___vectorcall] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_EQ] = ACTIONS(4998), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(4996), + [anon_sym_template] = ACTIONS(4996), + [anon_sym_GT2] = ACTIONS(4998), + [anon_sym_operator] = ACTIONS(4996), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(1401)] = { + [sym_identifier] = ACTIONS(5002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5004), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym___extension__] = ACTIONS(5002), + [anon_sym_virtual] = ACTIONS(5002), + [anon_sym_extern] = ACTIONS(5002), + [anon_sym___attribute__] = ACTIONS(5002), + [anon_sym___attribute] = ACTIONS(5002), + [anon_sym_COLON_COLON] = ACTIONS(5004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5004), + [anon_sym___declspec] = ACTIONS(5002), + [anon_sym___based] = ACTIONS(5002), + [anon_sym___cdecl] = ACTIONS(5002), + [anon_sym___clrcall] = ACTIONS(5002), + [anon_sym___stdcall] = ACTIONS(5002), + [anon_sym___fastcall] = ACTIONS(5002), + [anon_sym___thiscall] = ACTIONS(5002), + [anon_sym___vectorcall] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_static] = ACTIONS(5002), + [anon_sym_EQ] = ACTIONS(5004), + [anon_sym_register] = ACTIONS(5002), + [anon_sym_inline] = ACTIONS(5002), + [anon_sym___inline] = ACTIONS(5002), + [anon_sym___inline__] = ACTIONS(5002), + [anon_sym___forceinline] = ACTIONS(5002), + [anon_sym_thread_local] = ACTIONS(5002), + [anon_sym___thread] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5002), + [anon_sym_constexpr] = ACTIONS(5002), + [anon_sym_volatile] = ACTIONS(5002), + [anon_sym_restrict] = ACTIONS(5002), + [anon_sym___restrict__] = ACTIONS(5002), + [anon_sym__Atomic] = ACTIONS(5002), + [anon_sym__Noreturn] = ACTIONS(5002), + [anon_sym_noreturn] = ACTIONS(5002), + [anon_sym__Nonnull] = ACTIONS(5002), + [anon_sym_mutable] = ACTIONS(5002), + [anon_sym_constinit] = ACTIONS(5002), + [anon_sym_consteval] = ACTIONS(5002), + [anon_sym_alignas] = ACTIONS(5002), + [anon_sym__Alignas] = ACTIONS(5002), + [anon_sym_asm] = ACTIONS(5002), + [anon_sym___asm__] = ACTIONS(5002), + [anon_sym___asm] = ACTIONS(5002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5002), + [anon_sym_decltype] = ACTIONS(5002), + [anon_sym_final] = ACTIONS(5002), + [anon_sym_override] = ACTIONS(5002), + [anon_sym_template] = ACTIONS(5002), + [anon_sym_GT2] = ACTIONS(5004), + [anon_sym_operator] = ACTIONS(5002), + [anon_sym_try] = ACTIONS(5002), + [anon_sym_requires] = ACTIONS(5002), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5002), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5002), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5002), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5002), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5002), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5002), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5002), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5002), + [anon_sym_MOZ_COLD] = ACTIONS(5002), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5002), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5002), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5002), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5002), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5002), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5002), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5002), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5002), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5002), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5002), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5002), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5002), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5002), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5002), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5002), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5002), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5002), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5002), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5002), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5002), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5002), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5002), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5002), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5002), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5002), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5002), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5002), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5002), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5002), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5002), + [anon_sym_MOZ_NONNULL] = ACTIONS(5002), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5002), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5002), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5002), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5002), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5002), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5002), + [anon_sym_MOZ_NORETURN] = ACTIONS(5002), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5002), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5002), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5002), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5002), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5002), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5002), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5002), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5002), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5002), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5002), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5002), + [anon_sym_MOZ_RAII] = ACTIONS(5002), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5002), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5002), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5002), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5002), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5002), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5002), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5002), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5002), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5002), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5002), + }, + [STATE(1402)] = { + [sym_identifier] = ACTIONS(5006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [anon_sym_LPAREN2] = ACTIONS(5008), + [anon_sym_TILDE] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_AMP_AMP] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(5008), + [anon_sym___extension__] = ACTIONS(5006), + [anon_sym_virtual] = ACTIONS(5006), + [anon_sym_extern] = ACTIONS(5006), + [anon_sym___attribute__] = ACTIONS(5006), + [anon_sym___attribute] = ACTIONS(5006), + [anon_sym_COLON_COLON] = ACTIONS(5008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5008), + [anon_sym___declspec] = ACTIONS(5006), + [anon_sym___based] = ACTIONS(5006), + [anon_sym___cdecl] = ACTIONS(5006), + [anon_sym___clrcall] = ACTIONS(5006), + [anon_sym___stdcall] = ACTIONS(5006), + [anon_sym___fastcall] = ACTIONS(5006), + [anon_sym___thiscall] = ACTIONS(5006), + [anon_sym___vectorcall] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5006), + [anon_sym_static] = ACTIONS(5006), + [anon_sym_EQ] = ACTIONS(5008), + [anon_sym_register] = ACTIONS(5006), + [anon_sym_inline] = ACTIONS(5006), + [anon_sym___inline] = ACTIONS(5006), + [anon_sym___inline__] = ACTIONS(5006), + [anon_sym___forceinline] = ACTIONS(5006), + [anon_sym_thread_local] = ACTIONS(5006), + [anon_sym___thread] = ACTIONS(5006), + [anon_sym_const] = ACTIONS(5006), + [anon_sym_constexpr] = ACTIONS(5006), + [anon_sym_volatile] = ACTIONS(5006), + [anon_sym_restrict] = ACTIONS(5006), + [anon_sym___restrict__] = ACTIONS(5006), + [anon_sym__Atomic] = ACTIONS(5006), + [anon_sym__Noreturn] = ACTIONS(5006), + [anon_sym_noreturn] = ACTIONS(5006), + [anon_sym__Nonnull] = ACTIONS(5006), + [anon_sym_mutable] = ACTIONS(5006), + [anon_sym_constinit] = ACTIONS(5006), + [anon_sym_consteval] = ACTIONS(5006), + [anon_sym_alignas] = ACTIONS(5006), + [anon_sym__Alignas] = ACTIONS(5006), + [anon_sym_asm] = ACTIONS(5006), + [anon_sym___asm__] = ACTIONS(5006), + [anon_sym___asm] = ACTIONS(5006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5006), + [anon_sym_decltype] = ACTIONS(5006), + [anon_sym_final] = ACTIONS(5006), + [anon_sym_override] = ACTIONS(5006), + [anon_sym_template] = ACTIONS(5006), + [anon_sym_GT2] = ACTIONS(5008), + [anon_sym_operator] = ACTIONS(5006), + [anon_sym_try] = ACTIONS(5006), + [anon_sym_requires] = ACTIONS(5006), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5006), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5006), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5006), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5006), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5006), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5006), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5006), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5006), + [anon_sym_MOZ_COLD] = ACTIONS(5006), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5006), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5006), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5006), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5006), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5006), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5006), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5006), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5006), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5006), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5006), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5006), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5006), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5006), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5006), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5006), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5006), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5006), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5006), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5006), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5006), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5006), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5006), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5006), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5006), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5006), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5006), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5006), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5006), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5006), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5006), + [anon_sym_MOZ_NONNULL] = ACTIONS(5006), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5006), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5006), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5006), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5006), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5006), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5006), + [anon_sym_MOZ_NORETURN] = ACTIONS(5006), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5006), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5006), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5006), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5006), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5006), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5006), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5006), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5006), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5006), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5006), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5006), + [anon_sym_MOZ_RAII] = ACTIONS(5006), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5006), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5006), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5006), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5006), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5006), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5006), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5006), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5006), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5006), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5006), + }, + [STATE(1403)] = { + [sym_identifier] = ACTIONS(5010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [anon_sym_LPAREN2] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym___extension__] = ACTIONS(5010), + [anon_sym_virtual] = ACTIONS(5010), + [anon_sym_extern] = ACTIONS(5010), + [anon_sym___attribute__] = ACTIONS(5010), + [anon_sym___attribute] = ACTIONS(5010), + [anon_sym_COLON_COLON] = ACTIONS(5012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5012), + [anon_sym___declspec] = ACTIONS(5010), + [anon_sym___based] = ACTIONS(5010), + [anon_sym___cdecl] = ACTIONS(5010), + [anon_sym___clrcall] = ACTIONS(5010), + [anon_sym___stdcall] = ACTIONS(5010), + [anon_sym___fastcall] = ACTIONS(5010), + [anon_sym___thiscall] = ACTIONS(5010), + [anon_sym___vectorcall] = ACTIONS(5010), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_static] = ACTIONS(5010), + [anon_sym_EQ] = ACTIONS(5012), + [anon_sym_register] = ACTIONS(5010), + [anon_sym_inline] = ACTIONS(5010), + [anon_sym___inline] = ACTIONS(5010), + [anon_sym___inline__] = ACTIONS(5010), + [anon_sym___forceinline] = ACTIONS(5010), + [anon_sym_thread_local] = ACTIONS(5010), + [anon_sym___thread] = ACTIONS(5010), + [anon_sym_const] = ACTIONS(5010), + [anon_sym_constexpr] = ACTIONS(5010), + [anon_sym_volatile] = ACTIONS(5010), + [anon_sym_restrict] = ACTIONS(5010), + [anon_sym___restrict__] = ACTIONS(5010), + [anon_sym__Atomic] = ACTIONS(5010), + [anon_sym__Noreturn] = ACTIONS(5010), + [anon_sym_noreturn] = ACTIONS(5010), + [anon_sym__Nonnull] = ACTIONS(5010), + [anon_sym_mutable] = ACTIONS(5010), + [anon_sym_constinit] = ACTIONS(5010), + [anon_sym_consteval] = ACTIONS(5010), + [anon_sym_alignas] = ACTIONS(5010), + [anon_sym__Alignas] = ACTIONS(5010), + [anon_sym_asm] = ACTIONS(5010), + [anon_sym___asm__] = ACTIONS(5010), + [anon_sym___asm] = ACTIONS(5010), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5010), + [anon_sym_decltype] = ACTIONS(5010), + [anon_sym_final] = ACTIONS(5010), + [anon_sym_override] = ACTIONS(5010), + [anon_sym_template] = ACTIONS(5010), + [anon_sym_GT2] = ACTIONS(5012), + [anon_sym_operator] = ACTIONS(5010), + [anon_sym_try] = ACTIONS(5010), + [anon_sym_requires] = ACTIONS(5010), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5010), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5010), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5010), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5010), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5010), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5010), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5010), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5010), + [anon_sym_MOZ_COLD] = ACTIONS(5010), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5010), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5010), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5010), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5010), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5010), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5010), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5010), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5010), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5010), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5010), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5010), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5010), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5010), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5010), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5010), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5010), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5010), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5010), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5010), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5010), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5010), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5010), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5010), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5010), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5010), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5010), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5010), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5010), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5010), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5010), + [anon_sym_MOZ_NONNULL] = ACTIONS(5010), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5010), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5010), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5010), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5010), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5010), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5010), + [anon_sym_MOZ_NORETURN] = ACTIONS(5010), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5010), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5010), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5010), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5010), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5010), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5010), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5010), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5010), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5010), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5010), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5010), + [anon_sym_MOZ_RAII] = ACTIONS(5010), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5010), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5010), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5010), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5010), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5010), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5010), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5010), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5010), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5010), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5010), + }, + [STATE(1404)] = { + [sym_identifier] = ACTIONS(5014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [anon_sym_LPAREN2] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym___extension__] = ACTIONS(5014), + [anon_sym_virtual] = ACTIONS(5014), + [anon_sym_extern] = ACTIONS(5014), + [anon_sym___attribute__] = ACTIONS(5014), + [anon_sym___attribute] = ACTIONS(5014), + [anon_sym_COLON_COLON] = ACTIONS(5016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5016), + [anon_sym___declspec] = ACTIONS(5014), + [anon_sym___based] = ACTIONS(5014), + [anon_sym___cdecl] = ACTIONS(5014), + [anon_sym___clrcall] = ACTIONS(5014), + [anon_sym___stdcall] = ACTIONS(5014), + [anon_sym___fastcall] = ACTIONS(5014), + [anon_sym___thiscall] = ACTIONS(5014), + [anon_sym___vectorcall] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_static] = ACTIONS(5014), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_register] = ACTIONS(5014), + [anon_sym_inline] = ACTIONS(5014), + [anon_sym___inline] = ACTIONS(5014), + [anon_sym___inline__] = ACTIONS(5014), + [anon_sym___forceinline] = ACTIONS(5014), + [anon_sym_thread_local] = ACTIONS(5014), + [anon_sym___thread] = ACTIONS(5014), + [anon_sym_const] = ACTIONS(5014), + [anon_sym_constexpr] = ACTIONS(5014), + [anon_sym_volatile] = ACTIONS(5014), + [anon_sym_restrict] = ACTIONS(5014), + [anon_sym___restrict__] = ACTIONS(5014), + [anon_sym__Atomic] = ACTIONS(5014), + [anon_sym__Noreturn] = ACTIONS(5014), + [anon_sym_noreturn] = ACTIONS(5014), + [anon_sym__Nonnull] = ACTIONS(5014), + [anon_sym_mutable] = ACTIONS(5014), + [anon_sym_constinit] = ACTIONS(5014), + [anon_sym_consteval] = ACTIONS(5014), + [anon_sym_alignas] = ACTIONS(5014), + [anon_sym__Alignas] = ACTIONS(5014), + [anon_sym_asm] = ACTIONS(5014), + [anon_sym___asm__] = ACTIONS(5014), + [anon_sym___asm] = ACTIONS(5014), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5014), + [anon_sym_decltype] = ACTIONS(5014), + [anon_sym_final] = ACTIONS(5014), + [anon_sym_override] = ACTIONS(5014), + [anon_sym_template] = ACTIONS(5014), + [anon_sym_GT2] = ACTIONS(5016), + [anon_sym_operator] = ACTIONS(5014), + [anon_sym_try] = ACTIONS(5014), + [anon_sym_requires] = ACTIONS(5014), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5014), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5014), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5014), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5014), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5014), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5014), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5014), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5014), + [anon_sym_MOZ_COLD] = ACTIONS(5014), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5014), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5014), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5014), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5014), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5014), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5014), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5014), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5014), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5014), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5014), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5014), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5014), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5014), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5014), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5014), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5014), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5014), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5014), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5014), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5014), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5014), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5014), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5014), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5014), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5014), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5014), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5014), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5014), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5014), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5014), + [anon_sym_MOZ_NONNULL] = ACTIONS(5014), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5014), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5014), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5014), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5014), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5014), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5014), + [anon_sym_MOZ_NORETURN] = ACTIONS(5014), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5014), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5014), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5014), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5014), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5014), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5014), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5014), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5014), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5014), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5014), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5014), + [anon_sym_MOZ_RAII] = ACTIONS(5014), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5014), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5014), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5014), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5014), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5014), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5014), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5014), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5014), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5014), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5014), + }, + [STATE(1405)] = { + [sym_identifier] = ACTIONS(5018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_LPAREN2] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym___extension__] = ACTIONS(5018), + [anon_sym_virtual] = ACTIONS(5018), + [anon_sym_extern] = ACTIONS(5018), + [anon_sym___attribute__] = ACTIONS(5018), + [anon_sym___attribute] = ACTIONS(5018), + [anon_sym_COLON_COLON] = ACTIONS(5020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5020), + [anon_sym___declspec] = ACTIONS(5018), + [anon_sym___based] = ACTIONS(5018), + [anon_sym___cdecl] = ACTIONS(5018), + [anon_sym___clrcall] = ACTIONS(5018), + [anon_sym___stdcall] = ACTIONS(5018), + [anon_sym___fastcall] = ACTIONS(5018), + [anon_sym___thiscall] = ACTIONS(5018), + [anon_sym___vectorcall] = ACTIONS(5018), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_static] = ACTIONS(5018), + [anon_sym_EQ] = ACTIONS(5020), + [anon_sym_register] = ACTIONS(5018), + [anon_sym_inline] = ACTIONS(5018), + [anon_sym___inline] = ACTIONS(5018), + [anon_sym___inline__] = ACTIONS(5018), + [anon_sym___forceinline] = ACTIONS(5018), + [anon_sym_thread_local] = ACTIONS(5018), + [anon_sym___thread] = ACTIONS(5018), + [anon_sym_const] = ACTIONS(5018), + [anon_sym_constexpr] = ACTIONS(5018), + [anon_sym_volatile] = ACTIONS(5018), + [anon_sym_restrict] = ACTIONS(5018), + [anon_sym___restrict__] = ACTIONS(5018), + [anon_sym__Atomic] = ACTIONS(5018), + [anon_sym__Noreturn] = ACTIONS(5018), + [anon_sym_noreturn] = ACTIONS(5018), + [anon_sym__Nonnull] = ACTIONS(5018), + [anon_sym_mutable] = ACTIONS(5018), + [anon_sym_constinit] = ACTIONS(5018), + [anon_sym_consteval] = ACTIONS(5018), + [anon_sym_alignas] = ACTIONS(5018), + [anon_sym__Alignas] = ACTIONS(5018), + [anon_sym_asm] = ACTIONS(5018), + [anon_sym___asm__] = ACTIONS(5018), + [anon_sym___asm] = ACTIONS(5018), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5018), + [anon_sym_decltype] = ACTIONS(5018), + [anon_sym_final] = ACTIONS(5018), + [anon_sym_override] = ACTIONS(5018), + [anon_sym_template] = ACTIONS(5018), + [anon_sym_GT2] = ACTIONS(5020), + [anon_sym_operator] = ACTIONS(5018), + [anon_sym_try] = ACTIONS(5018), + [anon_sym_requires] = ACTIONS(5018), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5018), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5018), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5018), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5018), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5018), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5018), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5018), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5018), + [anon_sym_MOZ_COLD] = ACTIONS(5018), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5018), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5018), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5018), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5018), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5018), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5018), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5018), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5018), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5018), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5018), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5018), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5018), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5018), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5018), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5018), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5018), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5018), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5018), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5018), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5018), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5018), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5018), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5018), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5018), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5018), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5018), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5018), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5018), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5018), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5018), + [anon_sym_MOZ_NONNULL] = ACTIONS(5018), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5018), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5018), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5018), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5018), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5018), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5018), + [anon_sym_MOZ_NORETURN] = ACTIONS(5018), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5018), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5018), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5018), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5018), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5018), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5018), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5018), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5018), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5018), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5018), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5018), + [anon_sym_MOZ_RAII] = ACTIONS(5018), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5018), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5018), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5018), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5018), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5018), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5018), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5018), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5018), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5018), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5018), + }, + [STATE(1406)] = { + [sym_identifier] = ACTIONS(5022), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [anon_sym_LPAREN2] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym___extension__] = ACTIONS(5022), + [anon_sym_virtual] = ACTIONS(5022), + [anon_sym_extern] = ACTIONS(5022), + [anon_sym___attribute__] = ACTIONS(5022), + [anon_sym___attribute] = ACTIONS(5022), + [anon_sym_COLON_COLON] = ACTIONS(5024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5024), + [anon_sym___declspec] = ACTIONS(5022), + [anon_sym___based] = ACTIONS(5022), + [anon_sym___cdecl] = ACTIONS(5022), + [anon_sym___clrcall] = ACTIONS(5022), + [anon_sym___stdcall] = ACTIONS(5022), + [anon_sym___fastcall] = ACTIONS(5022), + [anon_sym___thiscall] = ACTIONS(5022), + [anon_sym___vectorcall] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_static] = ACTIONS(5022), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_register] = ACTIONS(5022), + [anon_sym_inline] = ACTIONS(5022), + [anon_sym___inline] = ACTIONS(5022), + [anon_sym___inline__] = ACTIONS(5022), + [anon_sym___forceinline] = ACTIONS(5022), + [anon_sym_thread_local] = ACTIONS(5022), + [anon_sym___thread] = ACTIONS(5022), + [anon_sym_const] = ACTIONS(5022), + [anon_sym_constexpr] = ACTIONS(5022), + [anon_sym_volatile] = ACTIONS(5022), + [anon_sym_restrict] = ACTIONS(5022), + [anon_sym___restrict__] = ACTIONS(5022), + [anon_sym__Atomic] = ACTIONS(5022), + [anon_sym__Noreturn] = ACTIONS(5022), + [anon_sym_noreturn] = ACTIONS(5022), + [anon_sym__Nonnull] = ACTIONS(5022), + [anon_sym_mutable] = ACTIONS(5022), + [anon_sym_constinit] = ACTIONS(5022), + [anon_sym_consteval] = ACTIONS(5022), + [anon_sym_alignas] = ACTIONS(5022), + [anon_sym__Alignas] = ACTIONS(5022), + [anon_sym_asm] = ACTIONS(5022), + [anon_sym___asm__] = ACTIONS(5022), + [anon_sym___asm] = ACTIONS(5022), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5022), + [anon_sym_decltype] = ACTIONS(5022), + [anon_sym_final] = ACTIONS(5022), + [anon_sym_override] = ACTIONS(5022), + [anon_sym_template] = ACTIONS(5022), + [anon_sym_GT2] = ACTIONS(5024), + [anon_sym_operator] = ACTIONS(5022), + [anon_sym_try] = ACTIONS(5022), + [anon_sym_requires] = ACTIONS(5022), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5022), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5022), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5022), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5022), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5022), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5022), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5022), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5022), + [anon_sym_MOZ_COLD] = ACTIONS(5022), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5022), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5022), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5022), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5022), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5022), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5022), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5022), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5022), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5022), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5022), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5022), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5022), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5022), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5022), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5022), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5022), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5022), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5022), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5022), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5022), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5022), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5022), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5022), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5022), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5022), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5022), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5022), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5022), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5022), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5022), + [anon_sym_MOZ_NONNULL] = ACTIONS(5022), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5022), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5022), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5022), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5022), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5022), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5022), + [anon_sym_MOZ_NORETURN] = ACTIONS(5022), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5022), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5022), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5022), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5022), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5022), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5022), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5022), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5022), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5022), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5022), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5022), + [anon_sym_MOZ_RAII] = ACTIONS(5022), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5022), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5022), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5022), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5022), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5022), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5022), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5022), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5022), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5022), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5022), + }, + [STATE(1407)] = { + [sym_identifier] = ACTIONS(5026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [anon_sym_LPAREN2] = ACTIONS(5028), + [anon_sym_TILDE] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_AMP_AMP] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym___extension__] = ACTIONS(5026), + [anon_sym_virtual] = ACTIONS(5026), + [anon_sym_extern] = ACTIONS(5026), + [anon_sym___attribute__] = ACTIONS(5026), + [anon_sym___attribute] = ACTIONS(5026), + [anon_sym_COLON_COLON] = ACTIONS(5028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5028), + [anon_sym___declspec] = ACTIONS(5026), + [anon_sym___based] = ACTIONS(5026), + [anon_sym___cdecl] = ACTIONS(5026), + [anon_sym___clrcall] = ACTIONS(5026), + [anon_sym___stdcall] = ACTIONS(5026), + [anon_sym___fastcall] = ACTIONS(5026), + [anon_sym___thiscall] = ACTIONS(5026), + [anon_sym___vectorcall] = ACTIONS(5026), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_static] = ACTIONS(5026), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_register] = ACTIONS(5026), + [anon_sym_inline] = ACTIONS(5026), + [anon_sym___inline] = ACTIONS(5026), + [anon_sym___inline__] = ACTIONS(5026), + [anon_sym___forceinline] = ACTIONS(5026), + [anon_sym_thread_local] = ACTIONS(5026), + [anon_sym___thread] = ACTIONS(5026), + [anon_sym_const] = ACTIONS(5026), + [anon_sym_constexpr] = ACTIONS(5026), + [anon_sym_volatile] = ACTIONS(5026), + [anon_sym_restrict] = ACTIONS(5026), + [anon_sym___restrict__] = ACTIONS(5026), + [anon_sym__Atomic] = ACTIONS(5026), + [anon_sym__Noreturn] = ACTIONS(5026), + [anon_sym_noreturn] = ACTIONS(5026), + [anon_sym__Nonnull] = ACTIONS(5026), + [anon_sym_mutable] = ACTIONS(5026), + [anon_sym_constinit] = ACTIONS(5026), + [anon_sym_consteval] = ACTIONS(5026), + [anon_sym_alignas] = ACTIONS(5026), + [anon_sym__Alignas] = ACTIONS(5026), + [anon_sym_asm] = ACTIONS(5026), + [anon_sym___asm__] = ACTIONS(5026), + [anon_sym___asm] = ACTIONS(5026), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5026), + [anon_sym_decltype] = ACTIONS(5026), + [anon_sym_final] = ACTIONS(5026), + [anon_sym_override] = ACTIONS(5026), + [anon_sym_template] = ACTIONS(5026), + [anon_sym_GT2] = ACTIONS(5028), + [anon_sym_operator] = ACTIONS(5026), + [anon_sym_try] = ACTIONS(5026), + [anon_sym_requires] = ACTIONS(5026), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5026), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5026), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5026), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5026), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5026), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5026), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5026), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5026), + [anon_sym_MOZ_COLD] = ACTIONS(5026), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5026), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5026), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5026), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5026), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5026), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5026), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5026), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5026), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5026), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5026), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5026), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5026), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5026), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5026), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5026), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5026), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5026), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5026), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5026), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5026), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5026), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5026), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5026), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5026), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5026), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5026), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5026), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5026), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5026), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5026), + [anon_sym_MOZ_NONNULL] = ACTIONS(5026), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5026), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5026), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5026), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5026), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5026), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5026), + [anon_sym_MOZ_NORETURN] = ACTIONS(5026), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5026), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5026), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5026), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5026), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5026), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5026), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5026), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5026), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5026), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5026), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5026), + [anon_sym_MOZ_RAII] = ACTIONS(5026), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5026), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5026), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5026), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5026), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5026), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5026), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5026), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5026), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5026), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5026), + }, + [STATE(1408)] = { + [sym_identifier] = ACTIONS(5030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_TILDE] = ACTIONS(5032), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_AMP_AMP] = ACTIONS(5032), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5032), + [anon_sym___extension__] = ACTIONS(5030), + [anon_sym_virtual] = ACTIONS(5030), + [anon_sym_extern] = ACTIONS(5030), + [anon_sym___attribute__] = ACTIONS(5030), + [anon_sym___attribute] = ACTIONS(5030), + [anon_sym_COLON_COLON] = ACTIONS(5032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5032), + [anon_sym___declspec] = ACTIONS(5030), + [anon_sym___based] = ACTIONS(5030), + [anon_sym___cdecl] = ACTIONS(5030), + [anon_sym___clrcall] = ACTIONS(5030), + [anon_sym___stdcall] = ACTIONS(5030), + [anon_sym___fastcall] = ACTIONS(5030), + [anon_sym___thiscall] = ACTIONS(5030), + [anon_sym___vectorcall] = ACTIONS(5030), + [anon_sym_LBRACE] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_static] = ACTIONS(5030), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_register] = ACTIONS(5030), + [anon_sym_inline] = ACTIONS(5030), + [anon_sym___inline] = ACTIONS(5030), + [anon_sym___inline__] = ACTIONS(5030), + [anon_sym___forceinline] = ACTIONS(5030), + [anon_sym_thread_local] = ACTIONS(5030), + [anon_sym___thread] = ACTIONS(5030), + [anon_sym_const] = ACTIONS(5030), + [anon_sym_constexpr] = ACTIONS(5030), + [anon_sym_volatile] = ACTIONS(5030), + [anon_sym_restrict] = ACTIONS(5030), + [anon_sym___restrict__] = ACTIONS(5030), + [anon_sym__Atomic] = ACTIONS(5030), + [anon_sym__Noreturn] = ACTIONS(5030), + [anon_sym_noreturn] = ACTIONS(5030), + [anon_sym__Nonnull] = ACTIONS(5030), + [anon_sym_mutable] = ACTIONS(5030), + [anon_sym_constinit] = ACTIONS(5030), + [anon_sym_consteval] = ACTIONS(5030), + [anon_sym_alignas] = ACTIONS(5030), + [anon_sym__Alignas] = ACTIONS(5030), + [anon_sym_asm] = ACTIONS(5030), + [anon_sym___asm__] = ACTIONS(5030), + [anon_sym___asm] = ACTIONS(5030), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5030), + [anon_sym_decltype] = ACTIONS(5030), + [anon_sym_final] = ACTIONS(5030), + [anon_sym_override] = ACTIONS(5030), + [anon_sym_template] = ACTIONS(5030), + [anon_sym_GT2] = ACTIONS(5032), + [anon_sym_operator] = ACTIONS(5030), + [anon_sym_try] = ACTIONS(5030), + [anon_sym_requires] = ACTIONS(5030), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5030), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5030), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5030), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5030), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5030), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5030), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5030), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5030), + [anon_sym_MOZ_COLD] = ACTIONS(5030), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5030), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5030), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5030), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5030), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5030), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5030), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5030), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5030), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5030), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5030), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5030), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5030), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5030), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5030), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5030), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5030), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5030), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5030), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5030), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5030), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5030), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5030), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5030), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5030), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5030), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5030), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5030), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5030), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5030), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5030), + [anon_sym_MOZ_NONNULL] = ACTIONS(5030), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5030), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5030), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5030), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5030), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5030), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5030), + [anon_sym_MOZ_NORETURN] = ACTIONS(5030), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5030), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5030), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5030), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5030), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5030), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5030), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5030), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5030), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5030), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5030), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5030), + [anon_sym_MOZ_RAII] = ACTIONS(5030), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5030), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5030), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5030), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5030), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5030), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5030), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5030), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5030), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5030), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5030), + }, + [STATE(1409)] = { + [sym_identifier] = ACTIONS(5034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_TILDE] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_AMP_AMP] = ACTIONS(5036), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_SEMI] = ACTIONS(5036), + [anon_sym___extension__] = ACTIONS(5034), + [anon_sym_virtual] = ACTIONS(5034), + [anon_sym_extern] = ACTIONS(5034), + [anon_sym___attribute__] = ACTIONS(5034), + [anon_sym___attribute] = ACTIONS(5034), + [anon_sym_COLON_COLON] = ACTIONS(5036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5036), + [anon_sym___declspec] = ACTIONS(5034), + [anon_sym___based] = ACTIONS(5034), + [anon_sym___cdecl] = ACTIONS(5034), + [anon_sym___clrcall] = ACTIONS(5034), + [anon_sym___stdcall] = ACTIONS(5034), + [anon_sym___fastcall] = ACTIONS(5034), + [anon_sym___thiscall] = ACTIONS(5034), + [anon_sym___vectorcall] = ACTIONS(5034), + [anon_sym_LBRACE] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_static] = ACTIONS(5034), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_register] = ACTIONS(5034), + [anon_sym_inline] = ACTIONS(5034), + [anon_sym___inline] = ACTIONS(5034), + [anon_sym___inline__] = ACTIONS(5034), + [anon_sym___forceinline] = ACTIONS(5034), + [anon_sym_thread_local] = ACTIONS(5034), + [anon_sym___thread] = ACTIONS(5034), + [anon_sym_const] = ACTIONS(5034), + [anon_sym_constexpr] = ACTIONS(5034), + [anon_sym_volatile] = ACTIONS(5034), + [anon_sym_restrict] = ACTIONS(5034), + [anon_sym___restrict__] = ACTIONS(5034), + [anon_sym__Atomic] = ACTIONS(5034), + [anon_sym__Noreturn] = ACTIONS(5034), + [anon_sym_noreturn] = ACTIONS(5034), + [anon_sym__Nonnull] = ACTIONS(5034), + [anon_sym_mutable] = ACTIONS(5034), + [anon_sym_constinit] = ACTIONS(5034), + [anon_sym_consteval] = ACTIONS(5034), + [anon_sym_alignas] = ACTIONS(5034), + [anon_sym__Alignas] = ACTIONS(5034), + [anon_sym_asm] = ACTIONS(5034), + [anon_sym___asm__] = ACTIONS(5034), + [anon_sym___asm] = ACTIONS(5034), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5034), + [anon_sym_decltype] = ACTIONS(5034), + [anon_sym_final] = ACTIONS(5034), + [anon_sym_override] = ACTIONS(5034), + [anon_sym_template] = ACTIONS(5034), + [anon_sym_GT2] = ACTIONS(5036), + [anon_sym_operator] = ACTIONS(5034), + [anon_sym_try] = ACTIONS(5034), + [anon_sym_requires] = ACTIONS(5034), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5034), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5034), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5034), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5034), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5034), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5034), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5034), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5034), + [anon_sym_MOZ_COLD] = ACTIONS(5034), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5034), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5034), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5034), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5034), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5034), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5034), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5034), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5034), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5034), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5034), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5034), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5034), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5034), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5034), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5034), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5034), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5034), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5034), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5034), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5034), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5034), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5034), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5034), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5034), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5034), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5034), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5034), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5034), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5034), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5034), + [anon_sym_MOZ_NONNULL] = ACTIONS(5034), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5034), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5034), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5034), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5034), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5034), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5034), + [anon_sym_MOZ_NORETURN] = ACTIONS(5034), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5034), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5034), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5034), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5034), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5034), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5034), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5034), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5034), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5034), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5034), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5034), + [anon_sym_MOZ_RAII] = ACTIONS(5034), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5034), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5034), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5034), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5034), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5034), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5034), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5034), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5034), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5034), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5034), + }, + [STATE(1410)] = { + [sym_identifier] = ACTIONS(5038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(5040), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_AMP_AMP] = ACTIONS(5040), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym___extension__] = ACTIONS(5038), + [anon_sym_virtual] = ACTIONS(5038), + [anon_sym_extern] = ACTIONS(5038), + [anon_sym___attribute__] = ACTIONS(5038), + [anon_sym___attribute] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(5040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5040), + [anon_sym___declspec] = ACTIONS(5038), + [anon_sym___based] = ACTIONS(5038), + [anon_sym___cdecl] = ACTIONS(5038), + [anon_sym___clrcall] = ACTIONS(5038), + [anon_sym___stdcall] = ACTIONS(5038), + [anon_sym___fastcall] = ACTIONS(5038), + [anon_sym___thiscall] = ACTIONS(5038), + [anon_sym___vectorcall] = ACTIONS(5038), + [anon_sym_LBRACE] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_static] = ACTIONS(5038), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_register] = ACTIONS(5038), + [anon_sym_inline] = ACTIONS(5038), + [anon_sym___inline] = ACTIONS(5038), + [anon_sym___inline__] = ACTIONS(5038), + [anon_sym___forceinline] = ACTIONS(5038), + [anon_sym_thread_local] = ACTIONS(5038), + [anon_sym___thread] = ACTIONS(5038), + [anon_sym_const] = ACTIONS(5038), + [anon_sym_constexpr] = ACTIONS(5038), + [anon_sym_volatile] = ACTIONS(5038), + [anon_sym_restrict] = ACTIONS(5038), + [anon_sym___restrict__] = ACTIONS(5038), + [anon_sym__Atomic] = ACTIONS(5038), + [anon_sym__Noreturn] = ACTIONS(5038), + [anon_sym_noreturn] = ACTIONS(5038), + [anon_sym__Nonnull] = ACTIONS(5038), + [anon_sym_mutable] = ACTIONS(5038), + [anon_sym_constinit] = ACTIONS(5038), + [anon_sym_consteval] = ACTIONS(5038), + [anon_sym_alignas] = ACTIONS(5038), + [anon_sym__Alignas] = ACTIONS(5038), + [anon_sym_asm] = ACTIONS(5038), + [anon_sym___asm__] = ACTIONS(5038), + [anon_sym___asm] = ACTIONS(5038), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5038), + [anon_sym_decltype] = ACTIONS(5038), + [anon_sym_final] = ACTIONS(5038), + [anon_sym_override] = ACTIONS(5038), + [anon_sym_template] = ACTIONS(5038), + [anon_sym_GT2] = ACTIONS(5040), + [anon_sym_operator] = ACTIONS(5038), + [anon_sym_try] = ACTIONS(5038), + [anon_sym_requires] = ACTIONS(5038), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5038), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5038), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5038), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5038), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5038), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5038), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5038), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5038), + [anon_sym_MOZ_COLD] = ACTIONS(5038), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5038), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5038), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5038), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5038), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5038), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5038), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5038), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5038), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5038), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5038), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5038), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5038), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5038), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5038), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5038), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5038), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5038), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5038), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5038), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5038), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5038), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5038), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5038), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5038), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5038), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5038), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5038), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5038), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5038), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5038), + [anon_sym_MOZ_NONNULL] = ACTIONS(5038), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5038), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5038), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5038), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5038), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5038), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5038), + [anon_sym_MOZ_NORETURN] = ACTIONS(5038), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5038), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5038), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5038), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5038), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5038), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5038), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5038), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5038), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5038), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5038), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5038), + [anon_sym_MOZ_RAII] = ACTIONS(5038), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5038), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5038), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5038), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5038), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5038), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5038), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5038), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5038), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5038), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5038), + }, + [STATE(1411)] = { + [sym_identifier] = ACTIONS(5042), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(5044), + [anon_sym_RPAREN] = ACTIONS(5044), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_TILDE] = ACTIONS(5044), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_AMP_AMP] = ACTIONS(5044), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_SEMI] = ACTIONS(5044), + [anon_sym___extension__] = ACTIONS(5042), + [anon_sym_virtual] = ACTIONS(5042), + [anon_sym_extern] = ACTIONS(5042), + [anon_sym___attribute__] = ACTIONS(5042), + [anon_sym___attribute] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(5044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5044), + [anon_sym___declspec] = ACTIONS(5042), + [anon_sym___based] = ACTIONS(5042), + [anon_sym___cdecl] = ACTIONS(5042), + [anon_sym___clrcall] = ACTIONS(5042), + [anon_sym___stdcall] = ACTIONS(5042), + [anon_sym___fastcall] = ACTIONS(5042), + [anon_sym___thiscall] = ACTIONS(5042), + [anon_sym___vectorcall] = ACTIONS(5042), + [anon_sym_LBRACE] = ACTIONS(5044), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_static] = ACTIONS(5042), + [anon_sym_EQ] = ACTIONS(5044), + [anon_sym_register] = ACTIONS(5042), + [anon_sym_inline] = ACTIONS(5042), + [anon_sym___inline] = ACTIONS(5042), + [anon_sym___inline__] = ACTIONS(5042), + [anon_sym___forceinline] = ACTIONS(5042), + [anon_sym_thread_local] = ACTIONS(5042), + [anon_sym___thread] = ACTIONS(5042), + [anon_sym_const] = ACTIONS(5042), + [anon_sym_constexpr] = ACTIONS(5042), + [anon_sym_volatile] = ACTIONS(5042), + [anon_sym_restrict] = ACTIONS(5042), + [anon_sym___restrict__] = ACTIONS(5042), + [anon_sym__Atomic] = ACTIONS(5042), + [anon_sym__Noreturn] = ACTIONS(5042), + [anon_sym_noreturn] = ACTIONS(5042), + [anon_sym__Nonnull] = ACTIONS(5042), + [anon_sym_mutable] = ACTIONS(5042), + [anon_sym_constinit] = ACTIONS(5042), + [anon_sym_consteval] = ACTIONS(5042), + [anon_sym_alignas] = ACTIONS(5042), + [anon_sym__Alignas] = ACTIONS(5042), + [anon_sym_asm] = ACTIONS(5042), + [anon_sym___asm__] = ACTIONS(5042), + [anon_sym___asm] = ACTIONS(5042), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5042), + [anon_sym_decltype] = ACTIONS(5042), + [anon_sym_final] = ACTIONS(5042), + [anon_sym_override] = ACTIONS(5042), + [anon_sym_template] = ACTIONS(5042), + [anon_sym_GT2] = ACTIONS(5044), + [anon_sym_operator] = ACTIONS(5042), + [anon_sym_try] = ACTIONS(5042), + [anon_sym_requires] = ACTIONS(5042), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5042), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5042), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5042), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5042), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5042), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5042), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5042), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5042), + [anon_sym_MOZ_COLD] = ACTIONS(5042), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5042), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5042), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5042), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5042), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5042), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5042), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5042), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5042), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5042), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5042), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5042), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5042), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5042), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5042), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5042), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5042), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5042), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5042), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5042), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5042), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5042), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5042), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5042), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5042), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5042), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5042), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5042), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5042), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5042), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5042), + [anon_sym_MOZ_NONNULL] = ACTIONS(5042), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5042), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5042), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5042), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5042), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5042), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5042), + [anon_sym_MOZ_NORETURN] = ACTIONS(5042), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5042), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5042), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5042), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5042), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5042), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5042), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5042), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5042), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5042), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5042), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5042), + [anon_sym_MOZ_RAII] = ACTIONS(5042), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5042), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5042), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5042), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5042), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5042), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5042), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5042), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5042), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5042), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5042), + }, + [STATE(1412)] = { + [sym_identifier] = ACTIONS(5046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_RPAREN] = ACTIONS(5048), + [anon_sym_LPAREN2] = ACTIONS(5048), + [anon_sym_TILDE] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_AMP_AMP] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_SEMI] = ACTIONS(5048), + [anon_sym___extension__] = ACTIONS(5046), + [anon_sym_virtual] = ACTIONS(5046), + [anon_sym_extern] = ACTIONS(5046), + [anon_sym___attribute__] = ACTIONS(5046), + [anon_sym___attribute] = ACTIONS(5046), + [anon_sym_COLON_COLON] = ACTIONS(5048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5048), + [anon_sym___declspec] = ACTIONS(5046), + [anon_sym___based] = ACTIONS(5046), + [anon_sym___cdecl] = ACTIONS(5046), + [anon_sym___clrcall] = ACTIONS(5046), + [anon_sym___stdcall] = ACTIONS(5046), + [anon_sym___fastcall] = ACTIONS(5046), + [anon_sym___thiscall] = ACTIONS(5046), + [anon_sym___vectorcall] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_static] = ACTIONS(5046), + [anon_sym_EQ] = ACTIONS(5048), + [anon_sym_register] = ACTIONS(5046), + [anon_sym_inline] = ACTIONS(5046), + [anon_sym___inline] = ACTIONS(5046), + [anon_sym___inline__] = ACTIONS(5046), + [anon_sym___forceinline] = ACTIONS(5046), + [anon_sym_thread_local] = ACTIONS(5046), + [anon_sym___thread] = ACTIONS(5046), + [anon_sym_const] = ACTIONS(5046), + [anon_sym_constexpr] = ACTIONS(5046), + [anon_sym_volatile] = ACTIONS(5046), + [anon_sym_restrict] = ACTIONS(5046), + [anon_sym___restrict__] = ACTIONS(5046), + [anon_sym__Atomic] = ACTIONS(5046), + [anon_sym__Noreturn] = ACTIONS(5046), + [anon_sym_noreturn] = ACTIONS(5046), + [anon_sym__Nonnull] = ACTIONS(5046), + [anon_sym_mutable] = ACTIONS(5046), + [anon_sym_constinit] = ACTIONS(5046), + [anon_sym_consteval] = ACTIONS(5046), + [anon_sym_alignas] = ACTIONS(5046), + [anon_sym__Alignas] = ACTIONS(5046), + [anon_sym_asm] = ACTIONS(5046), + [anon_sym___asm__] = ACTIONS(5046), + [anon_sym___asm] = ACTIONS(5046), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5046), + [anon_sym_decltype] = ACTIONS(5046), + [anon_sym_final] = ACTIONS(5046), + [anon_sym_override] = ACTIONS(5046), + [anon_sym_template] = ACTIONS(5046), + [anon_sym_GT2] = ACTIONS(5048), + [anon_sym_operator] = ACTIONS(5046), + [anon_sym_try] = ACTIONS(5046), + [anon_sym_requires] = ACTIONS(5046), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5046), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5046), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5046), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5046), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5046), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5046), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5046), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5046), + [anon_sym_MOZ_COLD] = ACTIONS(5046), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5046), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5046), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5046), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5046), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5046), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5046), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5046), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5046), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5046), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5046), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5046), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5046), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5046), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5046), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5046), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5046), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5046), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5046), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5046), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5046), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5046), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5046), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5046), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5046), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5046), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5046), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5046), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5046), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5046), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5046), + [anon_sym_MOZ_NONNULL] = ACTIONS(5046), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5046), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5046), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5046), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5046), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5046), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5046), + [anon_sym_MOZ_NORETURN] = ACTIONS(5046), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5046), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5046), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5046), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5046), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5046), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5046), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5046), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5046), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5046), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5046), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5046), + [anon_sym_MOZ_RAII] = ACTIONS(5046), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5046), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5046), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5046), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5046), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5046), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5046), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5046), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5046), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5046), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5046), + }, + [STATE(1413)] = { + [sym_identifier] = ACTIONS(5050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(5052), + [anon_sym_LPAREN2] = ACTIONS(5052), + [anon_sym_TILDE] = ACTIONS(5052), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_AMP_AMP] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym___extension__] = ACTIONS(5050), + [anon_sym_virtual] = ACTIONS(5050), + [anon_sym_extern] = ACTIONS(5050), + [anon_sym___attribute__] = ACTIONS(5050), + [anon_sym___attribute] = ACTIONS(5050), + [anon_sym_COLON_COLON] = ACTIONS(5052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5052), + [anon_sym___declspec] = ACTIONS(5050), + [anon_sym___based] = ACTIONS(5050), + [anon_sym___cdecl] = ACTIONS(5050), + [anon_sym___clrcall] = ACTIONS(5050), + [anon_sym___stdcall] = ACTIONS(5050), + [anon_sym___fastcall] = ACTIONS(5050), + [anon_sym___thiscall] = ACTIONS(5050), + [anon_sym___vectorcall] = ACTIONS(5050), + [anon_sym_LBRACE] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_static] = ACTIONS(5050), + [anon_sym_EQ] = ACTIONS(5052), + [anon_sym_register] = ACTIONS(5050), + [anon_sym_inline] = ACTIONS(5050), + [anon_sym___inline] = ACTIONS(5050), + [anon_sym___inline__] = ACTIONS(5050), + [anon_sym___forceinline] = ACTIONS(5050), + [anon_sym_thread_local] = ACTIONS(5050), + [anon_sym___thread] = ACTIONS(5050), + [anon_sym_const] = ACTIONS(5050), + [anon_sym_constexpr] = ACTIONS(5050), + [anon_sym_volatile] = ACTIONS(5050), + [anon_sym_restrict] = ACTIONS(5050), + [anon_sym___restrict__] = ACTIONS(5050), + [anon_sym__Atomic] = ACTIONS(5050), + [anon_sym__Noreturn] = ACTIONS(5050), + [anon_sym_noreturn] = ACTIONS(5050), + [anon_sym__Nonnull] = ACTIONS(5050), + [anon_sym_mutable] = ACTIONS(5050), + [anon_sym_constinit] = ACTIONS(5050), + [anon_sym_consteval] = ACTIONS(5050), + [anon_sym_alignas] = ACTIONS(5050), + [anon_sym__Alignas] = ACTIONS(5050), + [anon_sym_asm] = ACTIONS(5050), + [anon_sym___asm__] = ACTIONS(5050), + [anon_sym___asm] = ACTIONS(5050), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5050), + [anon_sym_decltype] = ACTIONS(5050), + [anon_sym_final] = ACTIONS(5050), + [anon_sym_override] = ACTIONS(5050), + [anon_sym_template] = ACTIONS(5050), + [anon_sym_GT2] = ACTIONS(5052), + [anon_sym_operator] = ACTIONS(5050), + [anon_sym_try] = ACTIONS(5050), + [anon_sym_requires] = ACTIONS(5050), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5050), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5050), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5050), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5050), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5050), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5050), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5050), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5050), + [anon_sym_MOZ_COLD] = ACTIONS(5050), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5050), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5050), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5050), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5050), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5050), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5050), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5050), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5050), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5050), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5050), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5050), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5050), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5050), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5050), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5050), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5050), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5050), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5050), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5050), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5050), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5050), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5050), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5050), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5050), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5050), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5050), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5050), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5050), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5050), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5050), + [anon_sym_MOZ_NONNULL] = ACTIONS(5050), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5050), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5050), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5050), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5050), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5050), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5050), + [anon_sym_MOZ_NORETURN] = ACTIONS(5050), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5050), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5050), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5050), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5050), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5050), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5050), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5050), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5050), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5050), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5050), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5050), + [anon_sym_MOZ_RAII] = ACTIONS(5050), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5050), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5050), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5050), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5050), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5050), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5050), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5050), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5050), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5050), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5050), + }, + [STATE(1414)] = { + [sym_identifier] = ACTIONS(5054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_RPAREN] = ACTIONS(5056), + [anon_sym_LPAREN2] = ACTIONS(5056), + [anon_sym_TILDE] = ACTIONS(5056), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP_AMP] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5054), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym___extension__] = ACTIONS(5054), + [anon_sym_virtual] = ACTIONS(5054), + [anon_sym_extern] = ACTIONS(5054), + [anon_sym___attribute__] = ACTIONS(5054), + [anon_sym___attribute] = ACTIONS(5054), + [anon_sym_COLON_COLON] = ACTIONS(5056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5056), + [anon_sym___declspec] = ACTIONS(5054), + [anon_sym___based] = ACTIONS(5054), + [anon_sym___cdecl] = ACTIONS(5054), + [anon_sym___clrcall] = ACTIONS(5054), + [anon_sym___stdcall] = ACTIONS(5054), + [anon_sym___fastcall] = ACTIONS(5054), + [anon_sym___thiscall] = ACTIONS(5054), + [anon_sym___vectorcall] = ACTIONS(5054), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5054), + [anon_sym_static] = ACTIONS(5054), + [anon_sym_EQ] = ACTIONS(5056), + [anon_sym_register] = ACTIONS(5054), + [anon_sym_inline] = ACTIONS(5054), + [anon_sym___inline] = ACTIONS(5054), + [anon_sym___inline__] = ACTIONS(5054), + [anon_sym___forceinline] = ACTIONS(5054), + [anon_sym_thread_local] = ACTIONS(5054), + [anon_sym___thread] = ACTIONS(5054), + [anon_sym_const] = ACTIONS(5054), + [anon_sym_constexpr] = ACTIONS(5054), + [anon_sym_volatile] = ACTIONS(5054), + [anon_sym_restrict] = ACTIONS(5054), + [anon_sym___restrict__] = ACTIONS(5054), + [anon_sym__Atomic] = ACTIONS(5054), + [anon_sym__Noreturn] = ACTIONS(5054), + [anon_sym_noreturn] = ACTIONS(5054), + [anon_sym__Nonnull] = ACTIONS(5054), + [anon_sym_mutable] = ACTIONS(5054), + [anon_sym_constinit] = ACTIONS(5054), + [anon_sym_consteval] = ACTIONS(5054), + [anon_sym_alignas] = ACTIONS(5054), + [anon_sym__Alignas] = ACTIONS(5054), + [anon_sym_asm] = ACTIONS(5054), + [anon_sym___asm__] = ACTIONS(5054), + [anon_sym___asm] = ACTIONS(5054), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5054), + [anon_sym_decltype] = ACTIONS(5054), + [anon_sym_final] = ACTIONS(5054), + [anon_sym_override] = ACTIONS(5054), + [anon_sym_template] = ACTIONS(5054), + [anon_sym_GT2] = ACTIONS(5056), + [anon_sym_operator] = ACTIONS(5054), + [anon_sym_try] = ACTIONS(5054), + [anon_sym_requires] = ACTIONS(5054), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5054), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5054), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5054), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5054), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5054), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5054), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5054), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5054), + [anon_sym_MOZ_COLD] = ACTIONS(5054), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5054), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5054), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5054), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5054), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5054), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5054), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5054), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5054), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5054), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5054), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5054), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5054), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5054), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5054), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5054), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5054), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5054), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5054), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5054), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5054), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5054), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5054), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5054), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5054), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5054), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5054), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5054), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5054), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5054), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5054), + [anon_sym_MOZ_NONNULL] = ACTIONS(5054), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5054), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5054), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5054), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5054), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5054), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5054), + [anon_sym_MOZ_NORETURN] = ACTIONS(5054), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5054), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5054), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5054), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5054), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5054), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5054), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5054), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5054), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5054), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5054), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5054), + [anon_sym_MOZ_RAII] = ACTIONS(5054), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5054), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5054), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5054), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5054), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5054), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5054), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5054), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5054), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5054), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5054), + }, + [STATE(1415)] = { + [sym_identifier] = ACTIONS(4898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(4900), + [anon_sym_TILDE] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_AMP_AMP] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym___extension__] = ACTIONS(4898), + [anon_sym_virtual] = ACTIONS(4898), + [anon_sym_extern] = ACTIONS(4898), + [anon_sym___attribute__] = ACTIONS(4898), + [anon_sym___attribute] = ACTIONS(4898), + [anon_sym_COLON_COLON] = ACTIONS(4900), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4900), + [anon_sym___declspec] = ACTIONS(4898), + [anon_sym___based] = ACTIONS(4898), + [anon_sym___cdecl] = ACTIONS(4898), + [anon_sym___clrcall] = ACTIONS(4898), + [anon_sym___stdcall] = ACTIONS(4898), + [anon_sym___fastcall] = ACTIONS(4898), + [anon_sym___thiscall] = ACTIONS(4898), + [anon_sym___vectorcall] = ACTIONS(4898), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_static] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(4900), + [anon_sym_register] = ACTIONS(4898), + [anon_sym_inline] = ACTIONS(4898), + [anon_sym___inline] = ACTIONS(4898), + [anon_sym___inline__] = ACTIONS(4898), + [anon_sym___forceinline] = ACTIONS(4898), + [anon_sym_thread_local] = ACTIONS(4898), + [anon_sym___thread] = ACTIONS(4898), + [anon_sym_const] = ACTIONS(4898), + [anon_sym_constexpr] = ACTIONS(4898), + [anon_sym_volatile] = ACTIONS(4898), + [anon_sym_restrict] = ACTIONS(4898), + [anon_sym___restrict__] = ACTIONS(4898), + [anon_sym__Atomic] = ACTIONS(4898), + [anon_sym__Noreturn] = ACTIONS(4898), + [anon_sym_noreturn] = ACTIONS(4898), + [anon_sym__Nonnull] = ACTIONS(4898), + [anon_sym_mutable] = ACTIONS(4898), + [anon_sym_constinit] = ACTIONS(4898), + [anon_sym_consteval] = ACTIONS(4898), + [anon_sym_alignas] = ACTIONS(4898), + [anon_sym__Alignas] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4898), + [anon_sym___asm__] = ACTIONS(4898), + [anon_sym___asm] = ACTIONS(4898), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4898), + [anon_sym_decltype] = ACTIONS(4898), + [anon_sym_final] = ACTIONS(4898), + [anon_sym_override] = ACTIONS(4898), + [anon_sym_template] = ACTIONS(4898), + [anon_sym_GT2] = ACTIONS(4900), + [anon_sym_operator] = ACTIONS(4898), + [anon_sym_try] = ACTIONS(4898), + [anon_sym_requires] = ACTIONS(4898), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4898), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4898), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4898), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4898), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4898), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4898), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4898), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4898), + [anon_sym_MOZ_COLD] = ACTIONS(4898), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4898), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4898), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4898), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4898), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4898), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4898), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4898), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4898), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4898), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4898), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4898), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4898), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4898), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4898), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4898), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4898), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4898), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4898), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4898), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4898), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_NONNULL] = ACTIONS(4898), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4898), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4898), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4898), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4898), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4898), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_NORETURN] = ACTIONS(4898), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4898), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4898), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4898), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4898), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4898), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4898), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4898), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4898), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4898), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4898), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4898), + [anon_sym_MOZ_RAII] = ACTIONS(4898), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4898), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4898), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4898), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4898), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4898), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4898), + }, + [STATE(1416)] = { + [sym_identifier] = ACTIONS(5058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5060), + [anon_sym_COMMA] = ACTIONS(5060), + [anon_sym_RPAREN] = ACTIONS(5060), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_TILDE] = ACTIONS(5060), + [anon_sym_STAR] = ACTIONS(5060), + [anon_sym_AMP_AMP] = ACTIONS(5060), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_SEMI] = ACTIONS(5060), + [anon_sym___extension__] = ACTIONS(5058), + [anon_sym_virtual] = ACTIONS(5058), + [anon_sym_extern] = ACTIONS(5058), + [anon_sym___attribute__] = ACTIONS(5058), + [anon_sym___attribute] = ACTIONS(5058), + [anon_sym_COLON_COLON] = ACTIONS(5060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5060), + [anon_sym___declspec] = ACTIONS(5058), + [anon_sym___based] = ACTIONS(5058), + [anon_sym___cdecl] = ACTIONS(5058), + [anon_sym___clrcall] = ACTIONS(5058), + [anon_sym___stdcall] = ACTIONS(5058), + [anon_sym___fastcall] = ACTIONS(5058), + [anon_sym___thiscall] = ACTIONS(5058), + [anon_sym___vectorcall] = ACTIONS(5058), + [anon_sym_LBRACE] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5058), + [anon_sym_static] = ACTIONS(5058), + [anon_sym_EQ] = ACTIONS(5060), + [anon_sym_register] = ACTIONS(5058), + [anon_sym_inline] = ACTIONS(5058), + [anon_sym___inline] = ACTIONS(5058), + [anon_sym___inline__] = ACTIONS(5058), + [anon_sym___forceinline] = ACTIONS(5058), + [anon_sym_thread_local] = ACTIONS(5058), + [anon_sym___thread] = ACTIONS(5058), + [anon_sym_const] = ACTIONS(5058), + [anon_sym_constexpr] = ACTIONS(5058), + [anon_sym_volatile] = ACTIONS(5058), + [anon_sym_restrict] = ACTIONS(5058), + [anon_sym___restrict__] = ACTIONS(5058), + [anon_sym__Atomic] = ACTIONS(5058), + [anon_sym__Noreturn] = ACTIONS(5058), + [anon_sym_noreturn] = ACTIONS(5058), + [anon_sym__Nonnull] = ACTIONS(5058), + [anon_sym_mutable] = ACTIONS(5058), + [anon_sym_constinit] = ACTIONS(5058), + [anon_sym_consteval] = ACTIONS(5058), + [anon_sym_alignas] = ACTIONS(5058), + [anon_sym__Alignas] = ACTIONS(5058), + [anon_sym_asm] = ACTIONS(5058), + [anon_sym___asm__] = ACTIONS(5058), + [anon_sym___asm] = ACTIONS(5058), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5058), + [anon_sym_decltype] = ACTIONS(5058), + [anon_sym_final] = ACTIONS(5058), + [anon_sym_override] = ACTIONS(5058), + [anon_sym_template] = ACTIONS(5058), + [anon_sym_GT2] = ACTIONS(5060), + [anon_sym_operator] = ACTIONS(5058), + [anon_sym_try] = ACTIONS(5058), + [anon_sym_requires] = ACTIONS(5058), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5058), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5058), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5058), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5058), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5058), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5058), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5058), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5058), + [anon_sym_MOZ_COLD] = ACTIONS(5058), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5058), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5058), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5058), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5058), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5058), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5058), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5058), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5058), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5058), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5058), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5058), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5058), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5058), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5058), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5058), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5058), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5058), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5058), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5058), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5058), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5058), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5058), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5058), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5058), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5058), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5058), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5058), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5058), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5058), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5058), + [anon_sym_MOZ_NONNULL] = ACTIONS(5058), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5058), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5058), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5058), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5058), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5058), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5058), + [anon_sym_MOZ_NORETURN] = ACTIONS(5058), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5058), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5058), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5058), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5058), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5058), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5058), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5058), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5058), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5058), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5058), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5058), + [anon_sym_MOZ_RAII] = ACTIONS(5058), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5058), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5058), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5058), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5058), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5058), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5058), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5058), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5058), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5058), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5058), + }, + [STATE(1417)] = { + [sym_identifier] = ACTIONS(5038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(5040), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_AMP_AMP] = ACTIONS(5040), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym___extension__] = ACTIONS(5038), + [anon_sym_virtual] = ACTIONS(5038), + [anon_sym_extern] = ACTIONS(5038), + [anon_sym___attribute__] = ACTIONS(5038), + [anon_sym___attribute] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(5040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5040), + [anon_sym___declspec] = ACTIONS(5038), + [anon_sym___based] = ACTIONS(5038), + [anon_sym___cdecl] = ACTIONS(5038), + [anon_sym___clrcall] = ACTIONS(5038), + [anon_sym___stdcall] = ACTIONS(5038), + [anon_sym___fastcall] = ACTIONS(5038), + [anon_sym___thiscall] = ACTIONS(5038), + [anon_sym___vectorcall] = ACTIONS(5038), + [anon_sym_LBRACE] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_static] = ACTIONS(5038), + [anon_sym_EQ] = ACTIONS(5040), + [anon_sym_register] = ACTIONS(5038), + [anon_sym_inline] = ACTIONS(5038), + [anon_sym___inline] = ACTIONS(5038), + [anon_sym___inline__] = ACTIONS(5038), + [anon_sym___forceinline] = ACTIONS(5038), + [anon_sym_thread_local] = ACTIONS(5038), + [anon_sym___thread] = ACTIONS(5038), + [anon_sym_const] = ACTIONS(5038), + [anon_sym_constexpr] = ACTIONS(5038), + [anon_sym_volatile] = ACTIONS(5038), + [anon_sym_restrict] = ACTIONS(5038), + [anon_sym___restrict__] = ACTIONS(5038), + [anon_sym__Atomic] = ACTIONS(5038), + [anon_sym__Noreturn] = ACTIONS(5038), + [anon_sym_noreturn] = ACTIONS(5038), + [anon_sym__Nonnull] = ACTIONS(5038), + [anon_sym_mutable] = ACTIONS(5038), + [anon_sym_constinit] = ACTIONS(5038), + [anon_sym_consteval] = ACTIONS(5038), + [anon_sym_alignas] = ACTIONS(5038), + [anon_sym__Alignas] = ACTIONS(5038), + [anon_sym_asm] = ACTIONS(5038), + [anon_sym___asm__] = ACTIONS(5038), + [anon_sym___asm] = ACTIONS(5038), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5038), + [anon_sym_decltype] = ACTIONS(5038), + [anon_sym_final] = ACTIONS(5038), + [anon_sym_override] = ACTIONS(5038), + [anon_sym_template] = ACTIONS(5038), + [anon_sym_GT2] = ACTIONS(5040), + [anon_sym_operator] = ACTIONS(5038), + [anon_sym_try] = ACTIONS(5038), + [anon_sym_requires] = ACTIONS(5038), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5038), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5038), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5038), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5038), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5038), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5038), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5038), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5038), + [anon_sym_MOZ_COLD] = ACTIONS(5038), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5038), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5038), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5038), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5038), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5038), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5038), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5038), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5038), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5038), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5038), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5038), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5038), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5038), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5038), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5038), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5038), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5038), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5038), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5038), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5038), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5038), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5038), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5038), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5038), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5038), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5038), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5038), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5038), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5038), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5038), + [anon_sym_MOZ_NONNULL] = ACTIONS(5038), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5038), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5038), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5038), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5038), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5038), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5038), + [anon_sym_MOZ_NORETURN] = ACTIONS(5038), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5038), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5038), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5038), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5038), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5038), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5038), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5038), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5038), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5038), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5038), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5038), + [anon_sym_MOZ_RAII] = ACTIONS(5038), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5038), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5038), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5038), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5038), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5038), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5038), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5038), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5038), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5038), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5038), + }, + [STATE(1418)] = { + [sym_identifier] = ACTIONS(5062), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [anon_sym_LPAREN2] = ACTIONS(5064), + [anon_sym_TILDE] = ACTIONS(5064), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP_AMP] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5062), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym___extension__] = ACTIONS(5062), + [anon_sym_virtual] = ACTIONS(5062), + [anon_sym_extern] = ACTIONS(5062), + [anon_sym___attribute__] = ACTIONS(5062), + [anon_sym___attribute] = ACTIONS(5062), + [anon_sym_COLON_COLON] = ACTIONS(5064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5064), + [anon_sym___declspec] = ACTIONS(5062), + [anon_sym___based] = ACTIONS(5062), + [anon_sym___cdecl] = ACTIONS(5062), + [anon_sym___clrcall] = ACTIONS(5062), + [anon_sym___stdcall] = ACTIONS(5062), + [anon_sym___fastcall] = ACTIONS(5062), + [anon_sym___thiscall] = ACTIONS(5062), + [anon_sym___vectorcall] = ACTIONS(5062), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5062), + [anon_sym_static] = ACTIONS(5062), + [anon_sym_EQ] = ACTIONS(5064), + [anon_sym_register] = ACTIONS(5062), + [anon_sym_inline] = ACTIONS(5062), + [anon_sym___inline] = ACTIONS(5062), + [anon_sym___inline__] = ACTIONS(5062), + [anon_sym___forceinline] = ACTIONS(5062), + [anon_sym_thread_local] = ACTIONS(5062), + [anon_sym___thread] = ACTIONS(5062), + [anon_sym_const] = ACTIONS(5062), + [anon_sym_constexpr] = ACTIONS(5062), + [anon_sym_volatile] = ACTIONS(5062), + [anon_sym_restrict] = ACTIONS(5062), + [anon_sym___restrict__] = ACTIONS(5062), + [anon_sym__Atomic] = ACTIONS(5062), + [anon_sym__Noreturn] = ACTIONS(5062), + [anon_sym_noreturn] = ACTIONS(5062), + [anon_sym__Nonnull] = ACTIONS(5062), + [anon_sym_mutable] = ACTIONS(5062), + [anon_sym_constinit] = ACTIONS(5062), + [anon_sym_consteval] = ACTIONS(5062), + [anon_sym_alignas] = ACTIONS(5062), + [anon_sym__Alignas] = ACTIONS(5062), + [anon_sym_asm] = ACTIONS(5062), + [anon_sym___asm__] = ACTIONS(5062), + [anon_sym___asm] = ACTIONS(5062), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5062), + [anon_sym_decltype] = ACTIONS(5062), + [anon_sym_final] = ACTIONS(5062), + [anon_sym_override] = ACTIONS(5062), + [anon_sym_template] = ACTIONS(5062), + [anon_sym_GT2] = ACTIONS(5064), + [anon_sym_operator] = ACTIONS(5062), + [anon_sym_try] = ACTIONS(5062), + [anon_sym_requires] = ACTIONS(5062), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5062), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5062), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5062), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5062), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5062), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5062), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5062), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5062), + [anon_sym_MOZ_COLD] = ACTIONS(5062), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5062), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5062), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5062), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5062), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5062), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5062), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5062), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5062), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5062), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5062), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5062), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5062), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5062), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5062), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5062), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5062), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5062), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5062), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5062), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5062), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5062), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5062), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5062), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5062), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5062), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5062), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5062), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5062), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5062), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5062), + [anon_sym_MOZ_NONNULL] = ACTIONS(5062), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5062), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5062), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5062), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5062), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5062), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5062), + [anon_sym_MOZ_NORETURN] = ACTIONS(5062), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5062), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5062), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5062), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5062), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5062), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5062), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5062), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5062), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5062), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5062), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5062), + [anon_sym_MOZ_RAII] = ACTIONS(5062), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5062), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5062), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5062), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5062), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5062), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5062), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5062), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5062), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5062), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5062), + }, + [STATE(1419)] = { + [sym_identifier] = ACTIONS(5066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(5068), + [anon_sym_TILDE] = ACTIONS(5068), + [anon_sym_STAR] = ACTIONS(5068), + [anon_sym_AMP_AMP] = ACTIONS(5068), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_SEMI] = ACTIONS(5068), + [anon_sym___extension__] = ACTIONS(5066), + [anon_sym_virtual] = ACTIONS(5066), + [anon_sym_extern] = ACTIONS(5066), + [anon_sym___attribute__] = ACTIONS(5066), + [anon_sym___attribute] = ACTIONS(5066), + [anon_sym_COLON_COLON] = ACTIONS(5068), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5068), + [anon_sym___declspec] = ACTIONS(5066), + [anon_sym___based] = ACTIONS(5066), + [anon_sym___cdecl] = ACTIONS(5066), + [anon_sym___clrcall] = ACTIONS(5066), + [anon_sym___stdcall] = ACTIONS(5066), + [anon_sym___fastcall] = ACTIONS(5066), + [anon_sym___thiscall] = ACTIONS(5066), + [anon_sym___vectorcall] = ACTIONS(5066), + [anon_sym_LBRACE] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(5066), + [anon_sym_static] = ACTIONS(5066), + [anon_sym_EQ] = ACTIONS(5068), + [anon_sym_register] = ACTIONS(5066), + [anon_sym_inline] = ACTIONS(5066), + [anon_sym___inline] = ACTIONS(5066), + [anon_sym___inline__] = ACTIONS(5066), + [anon_sym___forceinline] = ACTIONS(5066), + [anon_sym_thread_local] = ACTIONS(5066), + [anon_sym___thread] = ACTIONS(5066), + [anon_sym_const] = ACTIONS(5066), + [anon_sym_constexpr] = ACTIONS(5066), + [anon_sym_volatile] = ACTIONS(5066), + [anon_sym_restrict] = ACTIONS(5066), + [anon_sym___restrict__] = ACTIONS(5066), + [anon_sym__Atomic] = ACTIONS(5066), + [anon_sym__Noreturn] = ACTIONS(5066), + [anon_sym_noreturn] = ACTIONS(5066), + [anon_sym__Nonnull] = ACTIONS(5066), + [anon_sym_mutable] = ACTIONS(5066), + [anon_sym_constinit] = ACTIONS(5066), + [anon_sym_consteval] = ACTIONS(5066), + [anon_sym_alignas] = ACTIONS(5066), + [anon_sym__Alignas] = ACTIONS(5066), + [anon_sym_asm] = ACTIONS(5066), + [anon_sym___asm__] = ACTIONS(5066), + [anon_sym___asm] = ACTIONS(5066), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5066), + [anon_sym_decltype] = ACTIONS(5066), + [anon_sym_final] = ACTIONS(5066), + [anon_sym_override] = ACTIONS(5066), + [anon_sym_template] = ACTIONS(5066), + [anon_sym_GT2] = ACTIONS(5068), + [anon_sym_operator] = ACTIONS(5066), + [anon_sym_try] = ACTIONS(5066), + [anon_sym_requires] = ACTIONS(5066), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5066), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5066), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5066), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5066), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5066), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5066), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5066), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5066), + [anon_sym_MOZ_COLD] = ACTIONS(5066), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5066), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5066), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5066), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5066), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5066), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5066), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5066), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5066), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5066), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5066), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5066), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5066), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5066), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5066), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5066), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5066), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5066), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5066), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5066), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5066), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5066), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5066), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5066), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5066), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5066), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5066), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5066), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5066), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5066), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5066), + [anon_sym_MOZ_NONNULL] = ACTIONS(5066), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5066), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5066), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5066), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5066), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5066), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5066), + [anon_sym_MOZ_NORETURN] = ACTIONS(5066), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5066), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5066), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5066), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5066), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5066), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5066), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5066), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5066), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5066), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5066), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5066), + [anon_sym_MOZ_RAII] = ACTIONS(5066), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5066), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5066), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5066), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5066), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5066), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5066), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5066), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5066), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5066), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5066), + }, + [STATE(1420)] = { + [sym_template_argument_list] = STATE(917), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(5070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_RPAREN] = ACTIONS(5072), + [anon_sym_LPAREN2] = ACTIONS(5072), + [anon_sym_TILDE] = ACTIONS(5072), + [anon_sym_STAR] = ACTIONS(5072), + [anon_sym_AMP_AMP] = ACTIONS(5072), + [anon_sym_AMP] = ACTIONS(5070), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(5072), + [anon_sym___extension__] = ACTIONS(5070), + [anon_sym_virtual] = ACTIONS(5070), + [anon_sym_extern] = ACTIONS(5070), + [anon_sym___attribute__] = ACTIONS(5070), + [anon_sym___attribute] = ACTIONS(5070), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5072), + [anon_sym___declspec] = ACTIONS(5070), + [anon_sym___based] = ACTIONS(5070), + [anon_sym___cdecl] = ACTIONS(5070), + [anon_sym___clrcall] = ACTIONS(5070), + [anon_sym___stdcall] = ACTIONS(5070), + [anon_sym___fastcall] = ACTIONS(5070), + [anon_sym___thiscall] = ACTIONS(5070), + [anon_sym___vectorcall] = ACTIONS(5070), + [anon_sym_LBRACE] = ACTIONS(5072), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(5070), + [anon_sym_static] = ACTIONS(5070), + [anon_sym_EQ] = ACTIONS(5072), + [anon_sym_register] = ACTIONS(5070), + [anon_sym_inline] = ACTIONS(5070), + [anon_sym___inline] = ACTIONS(5070), + [anon_sym___inline__] = ACTIONS(5070), + [anon_sym___forceinline] = ACTIONS(5070), + [anon_sym_thread_local] = ACTIONS(5070), + [anon_sym___thread] = ACTIONS(5070), + [anon_sym_const] = ACTIONS(5070), + [anon_sym_constexpr] = ACTIONS(5070), + [anon_sym_volatile] = ACTIONS(5070), + [anon_sym_restrict] = ACTIONS(5070), + [anon_sym___restrict__] = ACTIONS(5070), + [anon_sym__Atomic] = ACTIONS(5070), + [anon_sym__Noreturn] = ACTIONS(5070), + [anon_sym_noreturn] = ACTIONS(5070), + [anon_sym__Nonnull] = ACTIONS(5070), + [anon_sym_mutable] = ACTIONS(5070), + [anon_sym_constinit] = ACTIONS(5070), + [anon_sym_consteval] = ACTIONS(5070), + [anon_sym_alignas] = ACTIONS(5070), + [anon_sym__Alignas] = ACTIONS(5070), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5070), + [anon_sym_decltype] = ACTIONS(5070), + [anon_sym_template] = ACTIONS(5070), + [anon_sym_GT2] = ACTIONS(5072), + [anon_sym_operator] = ACTIONS(5070), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5070), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5070), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5070), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5070), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5070), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5070), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5070), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5070), + [anon_sym_MOZ_COLD] = ACTIONS(5070), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5070), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5070), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5070), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5070), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5070), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5070), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5070), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5070), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5070), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5070), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5070), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5070), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5070), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5070), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5070), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5070), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5070), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5070), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5070), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5070), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5070), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5070), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5070), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5070), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5070), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5070), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5070), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5070), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5070), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5070), + [anon_sym_MOZ_NONNULL] = ACTIONS(5070), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5070), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5070), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5070), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5070), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5070), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5070), + [anon_sym_MOZ_NORETURN] = ACTIONS(5070), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5070), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5070), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5070), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5070), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5070), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5070), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5070), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5070), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5070), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5070), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5070), + [anon_sym_MOZ_RAII] = ACTIONS(5070), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5070), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5070), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5070), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5070), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5070), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5070), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5070), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5070), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5070), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5070), + }, + [STATE(1421)] = { + [sym__declaration_modifiers] = STATE(1421), + [sym_attribute_specifier] = STATE(1421), + [sym_attribute_declaration] = STATE(1421), + [sym_ms_declspec_modifier] = STATE(1421), + [sym_storage_class_specifier] = STATE(1421), + [sym_type_qualifier] = STATE(1421), + [sym_alignas_qualifier] = STATE(1593), + [sym_macro_annotation] = STATE(1618), + [aux_sym__declaration_specifiers_repeat1] = STATE(1421), + [sym_identifier] = ACTIONS(5076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5078), + [anon_sym_COMMA] = ACTIONS(5078), + [anon_sym_RPAREN] = ACTIONS(5078), + [anon_sym_LPAREN2] = ACTIONS(5078), + [anon_sym_TILDE] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5078), + [anon_sym_AMP_AMP] = ACTIONS(5078), + [anon_sym_AMP] = ACTIONS(5076), + [anon_sym_SEMI] = ACTIONS(5078), + [anon_sym___extension__] = ACTIONS(5080), + [anon_sym_virtual] = ACTIONS(5083), + [anon_sym_extern] = ACTIONS(5086), + [anon_sym___attribute__] = ACTIONS(5089), + [anon_sym___attribute] = ACTIONS(5089), + [anon_sym_COLON_COLON] = ACTIONS(5078), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5092), + [anon_sym___declspec] = ACTIONS(5095), + [anon_sym___based] = ACTIONS(5076), + [anon_sym___cdecl] = ACTIONS(5076), + [anon_sym___clrcall] = ACTIONS(5076), + [anon_sym___stdcall] = ACTIONS(5076), + [anon_sym___fastcall] = ACTIONS(5076), + [anon_sym___thiscall] = ACTIONS(5076), + [anon_sym___vectorcall] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_static] = ACTIONS(5086), + [anon_sym_EQ] = ACTIONS(5078), + [anon_sym_register] = ACTIONS(5086), + [anon_sym_inline] = ACTIONS(5086), + [anon_sym___inline] = ACTIONS(5086), + [anon_sym___inline__] = ACTIONS(5086), + [anon_sym___forceinline] = ACTIONS(5086), + [anon_sym_thread_local] = ACTIONS(5086), + [anon_sym___thread] = ACTIONS(5086), + [anon_sym_const] = ACTIONS(5080), + [anon_sym_constexpr] = ACTIONS(5080), + [anon_sym_volatile] = ACTIONS(5080), + [anon_sym_restrict] = ACTIONS(5080), + [anon_sym___restrict__] = ACTIONS(5080), + [anon_sym__Atomic] = ACTIONS(5080), + [anon_sym__Noreturn] = ACTIONS(5080), + [anon_sym_noreturn] = ACTIONS(5080), + [anon_sym__Nonnull] = ACTIONS(5080), + [anon_sym_mutable] = ACTIONS(5080), + [anon_sym_constinit] = ACTIONS(5080), + [anon_sym_consteval] = ACTIONS(5080), + [anon_sym_alignas] = ACTIONS(5098), + [anon_sym__Alignas] = ACTIONS(5098), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5076), + [anon_sym_template] = ACTIONS(5076), + [anon_sym_GT2] = ACTIONS(5078), + [anon_sym_operator] = ACTIONS(5076), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5101), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5101), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5101), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5101), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5101), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5101), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5101), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5101), + [anon_sym_MOZ_COLD] = ACTIONS(5101), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5101), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5101), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5101), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5101), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5101), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5101), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5101), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5101), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5101), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5101), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5101), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5101), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5101), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5101), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5101), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5101), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5101), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5101), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5101), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5101), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5101), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5101), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5101), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5101), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5101), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5101), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5101), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5101), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5101), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5101), + [anon_sym_MOZ_NONNULL] = ACTIONS(5101), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5101), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5101), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5101), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5101), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5101), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5101), + [anon_sym_MOZ_NORETURN] = ACTIONS(5101), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5101), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5101), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5101), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5101), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5101), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5101), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5101), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5101), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5101), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5101), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5101), + [anon_sym_MOZ_RAII] = ACTIONS(5101), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5101), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5101), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5101), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5101), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5101), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5101), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5101), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5101), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5101), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5101), + }, + [STATE(1422)] = { + [sym_identifier] = ACTIONS(5104), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5106), + [anon_sym_COMMA] = ACTIONS(5106), + [anon_sym_RPAREN] = ACTIONS(5106), + [anon_sym_LPAREN2] = ACTIONS(5106), + [anon_sym_TILDE] = ACTIONS(5106), + [anon_sym_STAR] = ACTIONS(5106), + [anon_sym_AMP_AMP] = ACTIONS(5106), + [anon_sym_AMP] = ACTIONS(5104), + [anon_sym_SEMI] = ACTIONS(5106), + [anon_sym___extension__] = ACTIONS(5104), + [anon_sym_virtual] = ACTIONS(5104), + [anon_sym_extern] = ACTIONS(5104), + [anon_sym___attribute__] = ACTIONS(5104), + [anon_sym___attribute] = ACTIONS(5104), + [anon_sym_COLON_COLON] = ACTIONS(5106), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5106), + [anon_sym___declspec] = ACTIONS(5104), + [anon_sym___based] = ACTIONS(5104), + [anon_sym___cdecl] = ACTIONS(5104), + [anon_sym___clrcall] = ACTIONS(5104), + [anon_sym___stdcall] = ACTIONS(5104), + [anon_sym___fastcall] = ACTIONS(5104), + [anon_sym___thiscall] = ACTIONS(5104), + [anon_sym___vectorcall] = ACTIONS(5104), + [anon_sym_LBRACE] = ACTIONS(5106), + [anon_sym_LBRACK] = ACTIONS(5104), + [anon_sym_static] = ACTIONS(5104), + [anon_sym_EQ] = ACTIONS(5106), + [anon_sym_register] = ACTIONS(5104), + [anon_sym_inline] = ACTIONS(5104), + [anon_sym___inline] = ACTIONS(5104), + [anon_sym___inline__] = ACTIONS(5104), + [anon_sym___forceinline] = ACTIONS(5104), + [anon_sym_thread_local] = ACTIONS(5104), + [anon_sym___thread] = ACTIONS(5104), + [anon_sym_const] = ACTIONS(5104), + [anon_sym_constexpr] = ACTIONS(5104), + [anon_sym_volatile] = ACTIONS(5104), + [anon_sym_restrict] = ACTIONS(5104), + [anon_sym___restrict__] = ACTIONS(5104), + [anon_sym__Atomic] = ACTIONS(5104), + [anon_sym__Noreturn] = ACTIONS(5104), + [anon_sym_noreturn] = ACTIONS(5104), + [anon_sym__Nonnull] = ACTIONS(5104), + [anon_sym_mutable] = ACTIONS(5104), + [anon_sym_constinit] = ACTIONS(5104), + [anon_sym_consteval] = ACTIONS(5104), + [anon_sym_alignas] = ACTIONS(5104), + [anon_sym__Alignas] = ACTIONS(5104), + [anon_sym_asm] = ACTIONS(5104), + [anon_sym___asm__] = ACTIONS(5104), + [anon_sym___asm] = ACTIONS(5104), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5104), + [anon_sym_decltype] = ACTIONS(5104), + [anon_sym_final] = ACTIONS(5104), + [anon_sym_override] = ACTIONS(5104), + [anon_sym_template] = ACTIONS(5104), + [anon_sym_GT2] = ACTIONS(5106), + [anon_sym_operator] = ACTIONS(5104), + [anon_sym_try] = ACTIONS(5104), + [anon_sym_requires] = ACTIONS(5104), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5104), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5104), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5104), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5104), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5104), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5104), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5104), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5104), + [anon_sym_MOZ_COLD] = ACTIONS(5104), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5104), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5104), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5104), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5104), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5104), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5104), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5104), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5104), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5104), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5104), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5104), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5104), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5104), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5104), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5104), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5104), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5104), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5104), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5104), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5104), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5104), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5104), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5104), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5104), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5104), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5104), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5104), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5104), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5104), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5104), + [anon_sym_MOZ_NONNULL] = ACTIONS(5104), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5104), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5104), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5104), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5104), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5104), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5104), + [anon_sym_MOZ_NORETURN] = ACTIONS(5104), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5104), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5104), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5104), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5104), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5104), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5104), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5104), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5104), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5104), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5104), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5104), + [anon_sym_MOZ_RAII] = ACTIONS(5104), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5104), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5104), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5104), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5104), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5104), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5104), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5104), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5104), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5104), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5104), + }, + [STATE(1423)] = { + [sym__declaration_modifiers] = STATE(1421), + [sym_attribute_specifier] = STATE(1421), + [sym_attribute_declaration] = STATE(1421), + [sym_ms_declspec_modifier] = STATE(1421), + [sym_storage_class_specifier] = STATE(1421), + [sym_type_qualifier] = STATE(1421), + [sym_alignas_qualifier] = STATE(1593), + [sym_macro_annotation] = STATE(1618), + [aux_sym__declaration_specifiers_repeat1] = STATE(1421), + [sym_identifier] = ACTIONS(5108), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5110), + [anon_sym_COMMA] = ACTIONS(5110), + [anon_sym_RPAREN] = ACTIONS(5110), + [anon_sym_LPAREN2] = ACTIONS(5110), + [anon_sym_TILDE] = ACTIONS(5110), + [anon_sym_STAR] = ACTIONS(5110), + [anon_sym_AMP_AMP] = ACTIONS(5110), + [anon_sym_AMP] = ACTIONS(5108), + [anon_sym_SEMI] = ACTIONS(5110), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(5000), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(5110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(5108), + [anon_sym___cdecl] = ACTIONS(5108), + [anon_sym___clrcall] = ACTIONS(5108), + [anon_sym___stdcall] = ACTIONS(5108), + [anon_sym___fastcall] = ACTIONS(5108), + [anon_sym___thiscall] = ACTIONS(5108), + [anon_sym___vectorcall] = ACTIONS(5108), + [anon_sym_LBRACK] = ACTIONS(5108), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_EQ] = ACTIONS(5110), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5108), + [anon_sym_template] = ACTIONS(5108), + [anon_sym_GT2] = ACTIONS(5110), + [anon_sym_operator] = ACTIONS(5108), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(1424)] = { + [sym_identifier] = ACTIONS(5112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5114), + [anon_sym_COMMA] = ACTIONS(5114), + [anon_sym_RPAREN] = ACTIONS(5114), + [anon_sym_LPAREN2] = ACTIONS(5114), + [anon_sym_TILDE] = ACTIONS(5114), + [anon_sym_STAR] = ACTIONS(5114), + [anon_sym_AMP_AMP] = ACTIONS(5114), + [anon_sym_AMP] = ACTIONS(5112), + [anon_sym_SEMI] = ACTIONS(5114), + [anon_sym___extension__] = ACTIONS(5112), + [anon_sym_virtual] = ACTIONS(5112), + [anon_sym_extern] = ACTIONS(5112), + [anon_sym___attribute__] = ACTIONS(5112), + [anon_sym___attribute] = ACTIONS(5112), + [anon_sym_COLON_COLON] = ACTIONS(5114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5114), + [anon_sym___declspec] = ACTIONS(5112), + [anon_sym___based] = ACTIONS(5112), + [anon_sym___cdecl] = ACTIONS(5112), + [anon_sym___clrcall] = ACTIONS(5112), + [anon_sym___stdcall] = ACTIONS(5112), + [anon_sym___fastcall] = ACTIONS(5112), + [anon_sym___thiscall] = ACTIONS(5112), + [anon_sym___vectorcall] = ACTIONS(5112), + [anon_sym_LBRACE] = ACTIONS(5114), + [anon_sym_LBRACK] = ACTIONS(5112), + [anon_sym_static] = ACTIONS(5112), + [anon_sym_EQ] = ACTIONS(5114), + [anon_sym_register] = ACTIONS(5112), + [anon_sym_inline] = ACTIONS(5112), + [anon_sym___inline] = ACTIONS(5112), + [anon_sym___inline__] = ACTIONS(5112), + [anon_sym___forceinline] = ACTIONS(5112), + [anon_sym_thread_local] = ACTIONS(5112), + [anon_sym___thread] = ACTIONS(5112), + [anon_sym_const] = ACTIONS(5112), + [anon_sym_constexpr] = ACTIONS(5112), + [anon_sym_volatile] = ACTIONS(5112), + [anon_sym_restrict] = ACTIONS(5112), + [anon_sym___restrict__] = ACTIONS(5112), + [anon_sym__Atomic] = ACTIONS(5112), + [anon_sym__Noreturn] = ACTIONS(5112), + [anon_sym_noreturn] = ACTIONS(5112), + [anon_sym__Nonnull] = ACTIONS(5112), + [anon_sym_mutable] = ACTIONS(5112), + [anon_sym_constinit] = ACTIONS(5112), + [anon_sym_consteval] = ACTIONS(5112), + [anon_sym_alignas] = ACTIONS(5112), + [anon_sym__Alignas] = ACTIONS(5112), + [anon_sym_asm] = ACTIONS(5112), + [anon_sym___asm__] = ACTIONS(5112), + [anon_sym___asm] = ACTIONS(5112), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5112), + [anon_sym_decltype] = ACTIONS(5112), + [anon_sym_final] = ACTIONS(5112), + [anon_sym_override] = ACTIONS(5112), + [anon_sym_template] = ACTIONS(5112), + [anon_sym_GT2] = ACTIONS(5114), + [anon_sym_operator] = ACTIONS(5112), + [anon_sym_try] = ACTIONS(5112), + [anon_sym_requires] = ACTIONS(5112), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5112), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5112), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5112), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5112), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5112), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5112), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5112), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5112), + [anon_sym_MOZ_COLD] = ACTIONS(5112), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5112), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5112), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5112), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5112), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5112), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5112), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5112), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5112), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5112), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5112), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5112), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5112), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5112), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5112), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5112), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5112), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5112), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5112), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5112), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5112), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5112), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5112), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5112), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5112), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5112), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5112), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5112), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5112), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5112), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5112), + [anon_sym_MOZ_NONNULL] = ACTIONS(5112), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5112), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5112), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5112), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5112), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5112), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5112), + [anon_sym_MOZ_NORETURN] = ACTIONS(5112), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5112), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5112), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5112), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5112), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5112), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5112), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5112), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5112), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5112), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5112), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5112), + [anon_sym_MOZ_RAII] = ACTIONS(5112), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5112), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5112), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5112), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5112), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5112), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5112), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5112), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5112), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5112), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5112), + }, + [STATE(1425)] = { + [sym_identifier] = ACTIONS(4898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(4900), + [anon_sym_TILDE] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_AMP_AMP] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym___extension__] = ACTIONS(4898), + [anon_sym_virtual] = ACTIONS(4898), + [anon_sym_extern] = ACTIONS(4898), + [anon_sym___attribute__] = ACTIONS(4898), + [anon_sym___attribute] = ACTIONS(4898), + [anon_sym_COLON_COLON] = ACTIONS(4900), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4900), + [anon_sym___declspec] = ACTIONS(4898), + [anon_sym___based] = ACTIONS(4898), + [anon_sym___cdecl] = ACTIONS(4898), + [anon_sym___clrcall] = ACTIONS(4898), + [anon_sym___stdcall] = ACTIONS(4898), + [anon_sym___fastcall] = ACTIONS(4898), + [anon_sym___thiscall] = ACTIONS(4898), + [anon_sym___vectorcall] = ACTIONS(4898), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_static] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(4900), + [anon_sym_register] = ACTIONS(4898), + [anon_sym_inline] = ACTIONS(4898), + [anon_sym___inline] = ACTIONS(4898), + [anon_sym___inline__] = ACTIONS(4898), + [anon_sym___forceinline] = ACTIONS(4898), + [anon_sym_thread_local] = ACTIONS(4898), + [anon_sym___thread] = ACTIONS(4898), + [anon_sym_const] = ACTIONS(4898), + [anon_sym_constexpr] = ACTIONS(4898), + [anon_sym_volatile] = ACTIONS(4898), + [anon_sym_restrict] = ACTIONS(4898), + [anon_sym___restrict__] = ACTIONS(4898), + [anon_sym__Atomic] = ACTIONS(4898), + [anon_sym__Noreturn] = ACTIONS(4898), + [anon_sym_noreturn] = ACTIONS(4898), + [anon_sym__Nonnull] = ACTIONS(4898), + [anon_sym_mutable] = ACTIONS(4898), + [anon_sym_constinit] = ACTIONS(4898), + [anon_sym_consteval] = ACTIONS(4898), + [anon_sym_alignas] = ACTIONS(4898), + [anon_sym__Alignas] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4898), + [anon_sym___asm__] = ACTIONS(4898), + [anon_sym___asm] = ACTIONS(4898), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4898), + [anon_sym_decltype] = ACTIONS(4898), + [anon_sym_final] = ACTIONS(4898), + [anon_sym_override] = ACTIONS(4898), + [anon_sym_template] = ACTIONS(4898), + [anon_sym_GT2] = ACTIONS(4900), + [anon_sym_operator] = ACTIONS(4898), + [anon_sym_try] = ACTIONS(4898), + [anon_sym_requires] = ACTIONS(4898), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4898), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4898), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4898), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4898), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4898), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4898), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4898), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4898), + [anon_sym_MOZ_COLD] = ACTIONS(4898), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4898), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4898), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4898), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4898), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4898), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4898), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4898), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4898), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4898), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4898), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4898), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4898), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4898), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4898), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4898), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4898), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4898), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4898), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4898), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4898), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4898), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_NONNULL] = ACTIONS(4898), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4898), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4898), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4898), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4898), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4898), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_NORETURN] = ACTIONS(4898), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4898), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4898), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4898), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4898), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4898), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4898), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4898), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4898), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4898), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4898), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4898), + [anon_sym_MOZ_RAII] = ACTIONS(4898), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4898), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4898), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4898), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4898), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4898), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4898), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4898), + }, + [STATE(1426)] = { + [sym_field_declaration_list] = STATE(1409), + [sym_virtual_specifier] = STATE(7344), + [sym_base_class_clause] = STATE(8373), + [sym_identifier] = ACTIONS(5116), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5118), + [anon_sym_COMMA] = ACTIONS(5118), + [anon_sym_RPAREN] = ACTIONS(5118), + [anon_sym_LPAREN2] = ACTIONS(5118), + [anon_sym_TILDE] = ACTIONS(5118), + [anon_sym_STAR] = ACTIONS(5118), + [anon_sym_AMP_AMP] = ACTIONS(5118), + [anon_sym_AMP] = ACTIONS(5116), + [anon_sym_SEMI] = ACTIONS(5118), + [anon_sym___extension__] = ACTIONS(5116), + [anon_sym_virtual] = ACTIONS(5116), + [anon_sym_extern] = ACTIONS(5116), + [anon_sym___attribute__] = ACTIONS(5116), + [anon_sym___attribute] = ACTIONS(5116), + [anon_sym_COLON_COLON] = ACTIONS(5118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5118), + [anon_sym___declspec] = ACTIONS(5116), + [anon_sym___based] = ACTIONS(5116), + [anon_sym___cdecl] = ACTIONS(5116), + [anon_sym___clrcall] = ACTIONS(5116), + [anon_sym___stdcall] = ACTIONS(5116), + [anon_sym___fastcall] = ACTIONS(5116), + [anon_sym___thiscall] = ACTIONS(5116), + [anon_sym___vectorcall] = ACTIONS(5116), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_static] = ACTIONS(5116), + [anon_sym_EQ] = ACTIONS(5118), + [anon_sym_register] = ACTIONS(5116), + [anon_sym_inline] = ACTIONS(5116), + [anon_sym___inline] = ACTIONS(5116), + [anon_sym___inline__] = ACTIONS(5116), + [anon_sym___forceinline] = ACTIONS(5116), + [anon_sym_thread_local] = ACTIONS(5116), + [anon_sym___thread] = ACTIONS(5116), + [anon_sym_const] = ACTIONS(5116), + [anon_sym_constexpr] = ACTIONS(5116), + [anon_sym_volatile] = ACTIONS(5116), + [anon_sym_restrict] = ACTIONS(5116), + [anon_sym___restrict__] = ACTIONS(5116), + [anon_sym__Atomic] = ACTIONS(5116), + [anon_sym__Noreturn] = ACTIONS(5116), + [anon_sym_noreturn] = ACTIONS(5116), + [anon_sym__Nonnull] = ACTIONS(5116), + [anon_sym_mutable] = ACTIONS(5116), + [anon_sym_constinit] = ACTIONS(5116), + [anon_sym_consteval] = ACTIONS(5116), + [anon_sym_alignas] = ACTIONS(5116), + [anon_sym__Alignas] = ACTIONS(5116), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5116), + [anon_sym_decltype] = ACTIONS(5116), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5116), + [anon_sym_GT2] = ACTIONS(5118), + [anon_sym_operator] = ACTIONS(5116), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5116), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5116), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5116), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5116), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5116), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5116), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5116), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5116), + [anon_sym_MOZ_COLD] = ACTIONS(5116), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5116), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5116), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5116), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5116), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5116), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5116), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5116), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5116), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5116), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5116), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5116), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5116), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5116), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5116), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5116), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5116), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5116), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5116), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5116), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5116), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5116), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5116), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5116), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5116), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5116), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5116), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5116), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5116), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5116), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5116), + [anon_sym_MOZ_NONNULL] = ACTIONS(5116), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5116), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5116), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5116), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5116), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5116), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5116), + [anon_sym_MOZ_NORETURN] = ACTIONS(5116), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5116), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5116), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5116), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5116), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5116), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5116), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5116), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5116), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5116), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5116), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5116), + [anon_sym_MOZ_RAII] = ACTIONS(5116), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5116), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5116), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5116), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5116), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5116), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5116), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5116), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5116), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5116), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5116), + }, + [STATE(1427)] = { + [sym_field_declaration_list] = STATE(1406), + [sym_virtual_specifier] = STATE(7390), + [sym_base_class_clause] = STATE(8075), + [sym_identifier] = ACTIONS(5120), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5122), + [anon_sym_COMMA] = ACTIONS(5122), + [anon_sym_RPAREN] = ACTIONS(5122), + [anon_sym_LPAREN2] = ACTIONS(5122), + [anon_sym_TILDE] = ACTIONS(5122), + [anon_sym_STAR] = ACTIONS(5122), + [anon_sym_AMP_AMP] = ACTIONS(5122), + [anon_sym_AMP] = ACTIONS(5120), + [anon_sym_SEMI] = ACTIONS(5122), + [anon_sym___extension__] = ACTIONS(5120), + [anon_sym_virtual] = ACTIONS(5120), + [anon_sym_extern] = ACTIONS(5120), + [anon_sym___attribute__] = ACTIONS(5120), + [anon_sym___attribute] = ACTIONS(5120), + [anon_sym_COLON_COLON] = ACTIONS(5122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5122), + [anon_sym___declspec] = ACTIONS(5120), + [anon_sym___based] = ACTIONS(5120), + [anon_sym___cdecl] = ACTIONS(5120), + [anon_sym___clrcall] = ACTIONS(5120), + [anon_sym___stdcall] = ACTIONS(5120), + [anon_sym___fastcall] = ACTIONS(5120), + [anon_sym___thiscall] = ACTIONS(5120), + [anon_sym___vectorcall] = ACTIONS(5120), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_static] = ACTIONS(5120), + [anon_sym_EQ] = ACTIONS(5122), + [anon_sym_register] = ACTIONS(5120), + [anon_sym_inline] = ACTIONS(5120), + [anon_sym___inline] = ACTIONS(5120), + [anon_sym___inline__] = ACTIONS(5120), + [anon_sym___forceinline] = ACTIONS(5120), + [anon_sym_thread_local] = ACTIONS(5120), + [anon_sym___thread] = ACTIONS(5120), + [anon_sym_const] = ACTIONS(5120), + [anon_sym_constexpr] = ACTIONS(5120), + [anon_sym_volatile] = ACTIONS(5120), + [anon_sym_restrict] = ACTIONS(5120), + [anon_sym___restrict__] = ACTIONS(5120), + [anon_sym__Atomic] = ACTIONS(5120), + [anon_sym__Noreturn] = ACTIONS(5120), + [anon_sym_noreturn] = ACTIONS(5120), + [anon_sym__Nonnull] = ACTIONS(5120), + [anon_sym_mutable] = ACTIONS(5120), + [anon_sym_constinit] = ACTIONS(5120), + [anon_sym_consteval] = ACTIONS(5120), + [anon_sym_alignas] = ACTIONS(5120), + [anon_sym__Alignas] = ACTIONS(5120), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5120), + [anon_sym_decltype] = ACTIONS(5120), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5120), + [anon_sym_GT2] = ACTIONS(5122), + [anon_sym_operator] = ACTIONS(5120), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5120), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5120), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5120), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5120), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5120), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5120), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5120), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5120), + [anon_sym_MOZ_COLD] = ACTIONS(5120), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5120), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5120), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5120), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5120), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5120), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5120), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5120), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5120), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5120), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5120), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5120), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5120), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5120), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5120), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5120), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5120), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5120), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5120), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5120), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5120), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5120), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5120), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5120), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5120), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5120), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5120), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5120), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5120), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5120), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5120), + [anon_sym_MOZ_NONNULL] = ACTIONS(5120), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5120), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5120), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5120), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5120), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5120), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5120), + [anon_sym_MOZ_NORETURN] = ACTIONS(5120), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5120), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5120), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5120), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5120), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5120), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5120), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5120), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5120), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5120), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5120), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5120), + [anon_sym_MOZ_RAII] = ACTIONS(5120), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5120), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5120), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5120), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5120), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5120), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5120), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5120), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5120), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5120), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5120), + }, + [STATE(1428)] = { + [sym_field_declaration_list] = STATE(1401), + [sym_virtual_specifier] = STATE(7276), + [sym_base_class_clause] = STATE(8218), + [sym_identifier] = ACTIONS(5124), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5126), + [anon_sym_COMMA] = ACTIONS(5126), + [anon_sym_RPAREN] = ACTIONS(5126), + [anon_sym_LPAREN2] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(5126), + [anon_sym___extension__] = ACTIONS(5124), + [anon_sym_virtual] = ACTIONS(5124), + [anon_sym_extern] = ACTIONS(5124), + [anon_sym___attribute__] = ACTIONS(5124), + [anon_sym___attribute] = ACTIONS(5124), + [anon_sym_COLON_COLON] = ACTIONS(5126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5126), + [anon_sym___declspec] = ACTIONS(5124), + [anon_sym___based] = ACTIONS(5124), + [anon_sym___cdecl] = ACTIONS(5124), + [anon_sym___clrcall] = ACTIONS(5124), + [anon_sym___stdcall] = ACTIONS(5124), + [anon_sym___fastcall] = ACTIONS(5124), + [anon_sym___thiscall] = ACTIONS(5124), + [anon_sym___vectorcall] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_static] = ACTIONS(5124), + [anon_sym_EQ] = ACTIONS(5126), + [anon_sym_register] = ACTIONS(5124), + [anon_sym_inline] = ACTIONS(5124), + [anon_sym___inline] = ACTIONS(5124), + [anon_sym___inline__] = ACTIONS(5124), + [anon_sym___forceinline] = ACTIONS(5124), + [anon_sym_thread_local] = ACTIONS(5124), + [anon_sym___thread] = ACTIONS(5124), + [anon_sym_const] = ACTIONS(5124), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym_noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_mutable] = ACTIONS(5124), + [anon_sym_constinit] = ACTIONS(5124), + [anon_sym_consteval] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5124), + [anon_sym__Alignas] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5124), + [anon_sym_decltype] = ACTIONS(5124), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5124), + [anon_sym_GT2] = ACTIONS(5126), + [anon_sym_operator] = ACTIONS(5124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5124), + [anon_sym_MOZ_COLD] = ACTIONS(5124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_RAII] = ACTIONS(5124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5124), + }, + [STATE(1429)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(5128), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5131), + [anon_sym_COMMA] = ACTIONS(5131), + [anon_sym_RPAREN] = ACTIONS(5131), + [anon_sym_LPAREN2] = ACTIONS(5131), + [anon_sym_TILDE] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_AMP_AMP] = ACTIONS(5131), + [anon_sym_AMP] = ACTIONS(5128), + [anon_sym_SEMI] = ACTIONS(5131), + [anon_sym___extension__] = ACTIONS(5128), + [anon_sym_virtual] = ACTIONS(5128), + [anon_sym_extern] = ACTIONS(5128), + [anon_sym___attribute__] = ACTIONS(5128), + [anon_sym___attribute] = ACTIONS(5128), + [anon_sym_COLON_COLON] = ACTIONS(5131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5131), + [anon_sym___declspec] = ACTIONS(5128), + [anon_sym___based] = ACTIONS(5128), + [anon_sym___cdecl] = ACTIONS(5128), + [anon_sym___clrcall] = ACTIONS(5128), + [anon_sym___stdcall] = ACTIONS(5128), + [anon_sym___fastcall] = ACTIONS(5128), + [anon_sym___thiscall] = ACTIONS(5128), + [anon_sym___vectorcall] = ACTIONS(5128), + [anon_sym_LBRACE] = ACTIONS(5131), + [anon_sym_signed] = ACTIONS(4524), + [anon_sym_unsigned] = ACTIONS(4524), + [anon_sym_long] = ACTIONS(4524), + [anon_sym_short] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(5128), + [anon_sym_static] = ACTIONS(5128), + [anon_sym_EQ] = ACTIONS(5131), + [anon_sym_register] = ACTIONS(5128), + [anon_sym_inline] = ACTIONS(5128), + [anon_sym___inline] = ACTIONS(5128), + [anon_sym___inline__] = ACTIONS(5128), + [anon_sym___forceinline] = ACTIONS(5128), + [anon_sym_thread_local] = ACTIONS(5128), + [anon_sym___thread] = ACTIONS(5128), + [anon_sym_const] = ACTIONS(5128), + [anon_sym_constexpr] = ACTIONS(5128), + [anon_sym_volatile] = ACTIONS(5128), + [anon_sym_restrict] = ACTIONS(5128), + [anon_sym___restrict__] = ACTIONS(5128), + [anon_sym__Atomic] = ACTIONS(5128), + [anon_sym__Noreturn] = ACTIONS(5128), + [anon_sym_noreturn] = ACTIONS(5128), + [anon_sym__Nonnull] = ACTIONS(5128), + [anon_sym_mutable] = ACTIONS(5128), + [anon_sym_constinit] = ACTIONS(5128), + [anon_sym_consteval] = ACTIONS(5128), + [anon_sym_alignas] = ACTIONS(5128), + [anon_sym__Alignas] = ACTIONS(5128), + [sym_primitive_type] = ACTIONS(4520), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5128), + [anon_sym_decltype] = ACTIONS(5128), + [anon_sym_template] = ACTIONS(5128), + [anon_sym_GT2] = ACTIONS(5131), + [anon_sym_operator] = ACTIONS(5128), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5128), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5128), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5128), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5128), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5128), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5128), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5128), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5128), + [anon_sym_MOZ_COLD] = ACTIONS(5128), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5128), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5128), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5128), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5128), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5128), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5128), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5128), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5128), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5128), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5128), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5128), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5128), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5128), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5128), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5128), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5128), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5128), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5128), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5128), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5128), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5128), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5128), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5128), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5128), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5128), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5128), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5128), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5128), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5128), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5128), + [anon_sym_MOZ_NONNULL] = ACTIONS(5128), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5128), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5128), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5128), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5128), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5128), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5128), + [anon_sym_MOZ_NORETURN] = ACTIONS(5128), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5128), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5128), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5128), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5128), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5128), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5128), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5128), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5128), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5128), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5128), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5128), + [anon_sym_MOZ_RAII] = ACTIONS(5128), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5128), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5128), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5128), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5128), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5128), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5128), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5128), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5128), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5128), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5128), + }, + [STATE(1430)] = { + [sym_field_declaration_list] = STATE(1413), + [sym_virtual_specifier] = STATE(7370), + [sym_base_class_clause] = STATE(8271), + [sym_identifier] = ACTIONS(5134), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5136), + [anon_sym_COMMA] = ACTIONS(5136), + [anon_sym_RPAREN] = ACTIONS(5136), + [anon_sym_LPAREN2] = ACTIONS(5136), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_AMP_AMP] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_SEMI] = ACTIONS(5136), + [anon_sym___extension__] = ACTIONS(5134), + [anon_sym_virtual] = ACTIONS(5134), + [anon_sym_extern] = ACTIONS(5134), + [anon_sym___attribute__] = ACTIONS(5134), + [anon_sym___attribute] = ACTIONS(5134), + [anon_sym_COLON_COLON] = ACTIONS(5136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5136), + [anon_sym___declspec] = ACTIONS(5134), + [anon_sym___based] = ACTIONS(5134), + [anon_sym___cdecl] = ACTIONS(5134), + [anon_sym___clrcall] = ACTIONS(5134), + [anon_sym___stdcall] = ACTIONS(5134), + [anon_sym___fastcall] = ACTIONS(5134), + [anon_sym___thiscall] = ACTIONS(5134), + [anon_sym___vectorcall] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_static] = ACTIONS(5134), + [anon_sym_EQ] = ACTIONS(5136), + [anon_sym_register] = ACTIONS(5134), + [anon_sym_inline] = ACTIONS(5134), + [anon_sym___inline] = ACTIONS(5134), + [anon_sym___inline__] = ACTIONS(5134), + [anon_sym___forceinline] = ACTIONS(5134), + [anon_sym_thread_local] = ACTIONS(5134), + [anon_sym___thread] = ACTIONS(5134), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_constexpr] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_restrict] = ACTIONS(5134), + [anon_sym___restrict__] = ACTIONS(5134), + [anon_sym__Atomic] = ACTIONS(5134), + [anon_sym__Noreturn] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym__Nonnull] = ACTIONS(5134), + [anon_sym_mutable] = ACTIONS(5134), + [anon_sym_constinit] = ACTIONS(5134), + [anon_sym_consteval] = ACTIONS(5134), + [anon_sym_alignas] = ACTIONS(5134), + [anon_sym__Alignas] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5134), + [anon_sym_decltype] = ACTIONS(5134), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5134), + [anon_sym_GT2] = ACTIONS(5136), + [anon_sym_operator] = ACTIONS(5134), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5134), + [anon_sym_MOZ_COLD] = ACTIONS(5134), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5134), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5134), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5134), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5134), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5134), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5134), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5134), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5134), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5134), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5134), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5134), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5134), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_RAII] = ACTIONS(5134), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5134), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5134), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5134), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5134), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5134), + }, + [STATE(1431)] = { + [sym_argument_list] = STATE(2921), + [sym_initializer_list] = STATE(4125), + [aux_sym_sized_type_specifier_repeat1] = STATE(1432), + [sym_identifier] = ACTIONS(4735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4737), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4737), + [anon_sym_LPAREN2] = ACTIONS(5138), + [anon_sym_TILDE] = ACTIONS(4737), + [anon_sym_STAR] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_SEMI] = ACTIONS(4737), + [anon_sym___extension__] = ACTIONS(4735), + [anon_sym_virtual] = ACTIONS(4735), + [anon_sym_extern] = ACTIONS(4735), + [anon_sym___attribute__] = ACTIONS(4735), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_COLON_COLON] = ACTIONS(4737), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4737), + [anon_sym___declspec] = ACTIONS(4735), + [anon_sym___based] = ACTIONS(4735), + [anon_sym___cdecl] = ACTIONS(4735), + [anon_sym___clrcall] = ACTIONS(4735), + [anon_sym___stdcall] = ACTIONS(4735), + [anon_sym___fastcall] = ACTIONS(4735), + [anon_sym___thiscall] = ACTIONS(4735), + [anon_sym___vectorcall] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_signed] = ACTIONS(5141), + [anon_sym_unsigned] = ACTIONS(5141), + [anon_sym_long] = ACTIONS(5141), + [anon_sym_short] = ACTIONS(5141), + [anon_sym_LBRACK] = ACTIONS(4735), + [anon_sym_static] = ACTIONS(4735), + [anon_sym_EQ] = ACTIONS(4737), + [anon_sym_register] = ACTIONS(4735), + [anon_sym_inline] = ACTIONS(4735), + [anon_sym___inline] = ACTIONS(4735), + [anon_sym___inline__] = ACTIONS(4735), + [anon_sym___forceinline] = ACTIONS(4735), + [anon_sym_thread_local] = ACTIONS(4735), + [anon_sym___thread] = ACTIONS(4735), + [anon_sym_const] = ACTIONS(4735), + [anon_sym_constexpr] = ACTIONS(4735), + [anon_sym_volatile] = ACTIONS(4735), + [anon_sym_restrict] = ACTIONS(4735), + [anon_sym___restrict__] = ACTIONS(4735), + [anon_sym__Atomic] = ACTIONS(4735), + [anon_sym__Noreturn] = ACTIONS(4735), + [anon_sym_noreturn] = ACTIONS(4735), + [anon_sym__Nonnull] = ACTIONS(4735), + [anon_sym_mutable] = ACTIONS(4735), + [anon_sym_constinit] = ACTIONS(4735), + [anon_sym_consteval] = ACTIONS(4735), + [anon_sym_alignas] = ACTIONS(4735), + [anon_sym__Alignas] = ACTIONS(4735), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4735), + [anon_sym_decltype] = ACTIONS(4735), + [anon_sym_template] = ACTIONS(4735), + [anon_sym_operator] = ACTIONS(4735), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4735), + [anon_sym_MOZ_COLD] = ACTIONS(4735), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4735), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4735), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4735), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4735), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4735), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4735), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4735), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4735), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4735), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4735), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4735), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4735), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_RAII] = ACTIONS(4735), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4735), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4735), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4735), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4735), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4735), + }, + [STATE(1432)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1434), + [sym_identifier] = ACTIONS(5143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5145), + [anon_sym_COMMA] = ACTIONS(5145), + [anon_sym_RPAREN] = ACTIONS(5145), + [anon_sym_LPAREN2] = ACTIONS(5145), + [anon_sym_TILDE] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_AMP] = ACTIONS(5143), + [anon_sym_SEMI] = ACTIONS(5145), + [anon_sym___extension__] = ACTIONS(5143), + [anon_sym_virtual] = ACTIONS(5143), + [anon_sym_extern] = ACTIONS(5143), + [anon_sym___attribute__] = ACTIONS(5143), + [anon_sym___attribute] = ACTIONS(5143), + [anon_sym_COLON_COLON] = ACTIONS(5145), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5145), + [anon_sym___declspec] = ACTIONS(5143), + [anon_sym___based] = ACTIONS(5143), + [anon_sym___cdecl] = ACTIONS(5143), + [anon_sym___clrcall] = ACTIONS(5143), + [anon_sym___stdcall] = ACTIONS(5143), + [anon_sym___fastcall] = ACTIONS(5143), + [anon_sym___thiscall] = ACTIONS(5143), + [anon_sym___vectorcall] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_signed] = ACTIONS(5147), + [anon_sym_unsigned] = ACTIONS(5147), + [anon_sym_long] = ACTIONS(5147), + [anon_sym_short] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5143), + [anon_sym_static] = ACTIONS(5143), + [anon_sym_EQ] = ACTIONS(5145), + [anon_sym_register] = ACTIONS(5143), + [anon_sym_inline] = ACTIONS(5143), + [anon_sym___inline] = ACTIONS(5143), + [anon_sym___inline__] = ACTIONS(5143), + [anon_sym___forceinline] = ACTIONS(5143), + [anon_sym_thread_local] = ACTIONS(5143), + [anon_sym___thread] = ACTIONS(5143), + [anon_sym_const] = ACTIONS(5143), + [anon_sym_constexpr] = ACTIONS(5143), + [anon_sym_volatile] = ACTIONS(5143), + [anon_sym_restrict] = ACTIONS(5143), + [anon_sym___restrict__] = ACTIONS(5143), + [anon_sym__Atomic] = ACTIONS(5143), + [anon_sym__Noreturn] = ACTIONS(5143), + [anon_sym_noreturn] = ACTIONS(5143), + [anon_sym__Nonnull] = ACTIONS(5143), + [anon_sym_mutable] = ACTIONS(5143), + [anon_sym_constinit] = ACTIONS(5143), + [anon_sym_consteval] = ACTIONS(5143), + [anon_sym_alignas] = ACTIONS(5143), + [anon_sym__Alignas] = ACTIONS(5143), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5143), + [anon_sym_decltype] = ACTIONS(5143), + [anon_sym_template] = ACTIONS(5143), + [anon_sym_GT2] = ACTIONS(5145), + [anon_sym_operator] = ACTIONS(5143), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5143), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5143), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5143), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5143), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5143), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5143), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5143), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5143), + [anon_sym_MOZ_COLD] = ACTIONS(5143), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5143), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5143), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5143), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5143), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5143), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5143), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5143), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5143), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5143), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5143), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5143), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5143), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5143), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5143), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5143), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5143), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5143), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5143), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5143), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5143), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5143), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5143), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5143), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5143), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5143), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5143), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5143), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5143), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5143), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5143), + [anon_sym_MOZ_NONNULL] = ACTIONS(5143), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5143), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5143), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5143), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5143), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5143), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5143), + [anon_sym_MOZ_NORETURN] = ACTIONS(5143), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5143), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5143), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5143), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5143), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5143), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5143), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5143), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5143), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5143), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5143), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5143), + [anon_sym_MOZ_RAII] = ACTIONS(5143), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5143), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5143), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5143), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5143), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5143), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5143), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5143), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5143), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5143), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5143), + }, + [STATE(1433)] = { + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(6763), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6300), + [sym_array_declarator] = STATE(6300), + [sym_expression] = STATE(3454), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3591), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5989), + [sym_qualified_identifier] = STATE(3615), + [sym_qualified_type_identifier] = STATE(8316), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(4021), + [anon_sym_LPAREN2] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(3157), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(3197), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1434)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1434), + [sym_identifier] = ACTIONS(4520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4522), + [anon_sym_COMMA] = ACTIONS(4522), + [anon_sym_RPAREN] = ACTIONS(4522), + [anon_sym_LPAREN2] = ACTIONS(4522), + [anon_sym_TILDE] = ACTIONS(4522), + [anon_sym_STAR] = ACTIONS(4522), + [anon_sym_AMP_AMP] = ACTIONS(4522), + [anon_sym_AMP] = ACTIONS(4520), + [anon_sym_SEMI] = ACTIONS(4522), + [anon_sym___extension__] = ACTIONS(4520), + [anon_sym_virtual] = ACTIONS(4520), + [anon_sym_extern] = ACTIONS(4520), + [anon_sym___attribute__] = ACTIONS(4520), + [anon_sym___attribute] = ACTIONS(4520), + [anon_sym_COLON_COLON] = ACTIONS(4522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4522), + [anon_sym___declspec] = ACTIONS(4520), + [anon_sym___based] = ACTIONS(4520), + [anon_sym___cdecl] = ACTIONS(4520), + [anon_sym___clrcall] = ACTIONS(4520), + [anon_sym___stdcall] = ACTIONS(4520), + [anon_sym___fastcall] = ACTIONS(4520), + [anon_sym___thiscall] = ACTIONS(4520), + [anon_sym___vectorcall] = ACTIONS(4520), + [anon_sym_LBRACE] = ACTIONS(4522), + [anon_sym_signed] = ACTIONS(5149), + [anon_sym_unsigned] = ACTIONS(5149), + [anon_sym_long] = ACTIONS(5149), + [anon_sym_short] = ACTIONS(5149), + [anon_sym_LBRACK] = ACTIONS(4520), + [anon_sym_static] = ACTIONS(4520), + [anon_sym_EQ] = ACTIONS(4522), + [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__Nonnull] = ACTIONS(4520), + [anon_sym_mutable] = ACTIONS(4520), + [anon_sym_constinit] = ACTIONS(4520), + [anon_sym_consteval] = ACTIONS(4520), + [anon_sym_alignas] = ACTIONS(4520), + [anon_sym__Alignas] = ACTIONS(4520), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4520), + [anon_sym_decltype] = ACTIONS(4520), + [anon_sym_template] = ACTIONS(4520), + [anon_sym_GT2] = ACTIONS(4522), + [anon_sym_operator] = ACTIONS(4520), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4520), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4520), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4520), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4520), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4520), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4520), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4520), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4520), + [anon_sym_MOZ_COLD] = ACTIONS(4520), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4520), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4520), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4520), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4520), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4520), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4520), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4520), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4520), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4520), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4520), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4520), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4520), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4520), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4520), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4520), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4520), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4520), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4520), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4520), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4520), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4520), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4520), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4520), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4520), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4520), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4520), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4520), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4520), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4520), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4520), + [anon_sym_MOZ_NONNULL] = ACTIONS(4520), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4520), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4520), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4520), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4520), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4520), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4520), + [anon_sym_MOZ_NORETURN] = ACTIONS(4520), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4520), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4520), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4520), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4520), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4520), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4520), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4520), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4520), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4520), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4520), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4520), + [anon_sym_MOZ_RAII] = ACTIONS(4520), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4520), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4520), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4520), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4520), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4520), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4520), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4520), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4520), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4520), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4520), + }, + [STATE(1435)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1434), + [sym_identifier] = ACTIONS(5152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5154), + [anon_sym_COMMA] = ACTIONS(5154), + [anon_sym_RPAREN] = ACTIONS(5154), + [anon_sym_LPAREN2] = ACTIONS(5154), + [anon_sym_TILDE] = ACTIONS(5154), + [anon_sym_STAR] = ACTIONS(5154), + [anon_sym_AMP_AMP] = ACTIONS(5154), + [anon_sym_AMP] = ACTIONS(5152), + [anon_sym_SEMI] = ACTIONS(5154), + [anon_sym___extension__] = ACTIONS(5152), + [anon_sym_virtual] = ACTIONS(5152), + [anon_sym_extern] = ACTIONS(5152), + [anon_sym___attribute__] = ACTIONS(5152), + [anon_sym___attribute] = ACTIONS(5152), + [anon_sym_COLON_COLON] = ACTIONS(5154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5154), + [anon_sym___declspec] = ACTIONS(5152), + [anon_sym___based] = ACTIONS(5152), + [anon_sym___cdecl] = ACTIONS(5152), + [anon_sym___clrcall] = ACTIONS(5152), + [anon_sym___stdcall] = ACTIONS(5152), + [anon_sym___fastcall] = ACTIONS(5152), + [anon_sym___thiscall] = ACTIONS(5152), + [anon_sym___vectorcall] = ACTIONS(5152), + [anon_sym_LBRACE] = ACTIONS(5154), + [anon_sym_signed] = ACTIONS(5147), + [anon_sym_unsigned] = ACTIONS(5147), + [anon_sym_long] = ACTIONS(5147), + [anon_sym_short] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5152), + [anon_sym_static] = ACTIONS(5152), + [anon_sym_EQ] = ACTIONS(5154), + [anon_sym_register] = ACTIONS(5152), + [anon_sym_inline] = ACTIONS(5152), + [anon_sym___inline] = ACTIONS(5152), + [anon_sym___inline__] = ACTIONS(5152), + [anon_sym___forceinline] = ACTIONS(5152), + [anon_sym_thread_local] = ACTIONS(5152), + [anon_sym___thread] = ACTIONS(5152), + [anon_sym_const] = ACTIONS(5152), + [anon_sym_constexpr] = ACTIONS(5152), + [anon_sym_volatile] = ACTIONS(5152), + [anon_sym_restrict] = ACTIONS(5152), + [anon_sym___restrict__] = ACTIONS(5152), + [anon_sym__Atomic] = ACTIONS(5152), + [anon_sym__Noreturn] = ACTIONS(5152), + [anon_sym_noreturn] = ACTIONS(5152), + [anon_sym__Nonnull] = ACTIONS(5152), + [anon_sym_mutable] = ACTIONS(5152), + [anon_sym_constinit] = ACTIONS(5152), + [anon_sym_consteval] = ACTIONS(5152), + [anon_sym_alignas] = ACTIONS(5152), + [anon_sym__Alignas] = ACTIONS(5152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5152), + [anon_sym_decltype] = ACTIONS(5152), + [anon_sym_template] = ACTIONS(5152), + [anon_sym_GT2] = ACTIONS(5154), + [anon_sym_operator] = ACTIONS(5152), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5152), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5152), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5152), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5152), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5152), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5152), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5152), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5152), + [anon_sym_MOZ_COLD] = ACTIONS(5152), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5152), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5152), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5152), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5152), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5152), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5152), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5152), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5152), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5152), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5152), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5152), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5152), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5152), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5152), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5152), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5152), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5152), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5152), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5152), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5152), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5152), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5152), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5152), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5152), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5152), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5152), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5152), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5152), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5152), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5152), + [anon_sym_MOZ_NONNULL] = ACTIONS(5152), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5152), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5152), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5152), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5152), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5152), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5152), + [anon_sym_MOZ_NORETURN] = ACTIONS(5152), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5152), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5152), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5152), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5152), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5152), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5152), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5152), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5152), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5152), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5152), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5152), + [anon_sym_MOZ_RAII] = ACTIONS(5152), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5152), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5152), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5152), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5152), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5152), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5152), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5152), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5152), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5152), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5152), + }, + [STATE(1436)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1434), + [sym_identifier] = ACTIONS(5156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5158), + [anon_sym_COMMA] = ACTIONS(5158), + [anon_sym_RPAREN] = ACTIONS(5158), + [anon_sym_LPAREN2] = ACTIONS(5158), + [anon_sym_TILDE] = ACTIONS(5158), + [anon_sym_STAR] = ACTIONS(5158), + [anon_sym_AMP_AMP] = ACTIONS(5158), + [anon_sym_AMP] = ACTIONS(5156), + [anon_sym_SEMI] = ACTIONS(5158), + [anon_sym___extension__] = ACTIONS(5156), + [anon_sym_virtual] = ACTIONS(5156), + [anon_sym_extern] = ACTIONS(5156), + [anon_sym___attribute__] = ACTIONS(5156), + [anon_sym___attribute] = ACTIONS(5156), + [anon_sym_COLON_COLON] = ACTIONS(5158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5158), + [anon_sym___declspec] = ACTIONS(5156), + [anon_sym___based] = ACTIONS(5156), + [anon_sym___cdecl] = ACTIONS(5156), + [anon_sym___clrcall] = ACTIONS(5156), + [anon_sym___stdcall] = ACTIONS(5156), + [anon_sym___fastcall] = ACTIONS(5156), + [anon_sym___thiscall] = ACTIONS(5156), + [anon_sym___vectorcall] = ACTIONS(5156), + [anon_sym_LBRACE] = ACTIONS(5158), + [anon_sym_signed] = ACTIONS(5147), + [anon_sym_unsigned] = ACTIONS(5147), + [anon_sym_long] = ACTIONS(5147), + [anon_sym_short] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5156), + [anon_sym_static] = ACTIONS(5156), + [anon_sym_EQ] = ACTIONS(5158), + [anon_sym_register] = ACTIONS(5156), + [anon_sym_inline] = ACTIONS(5156), + [anon_sym___inline] = ACTIONS(5156), + [anon_sym___inline__] = ACTIONS(5156), + [anon_sym___forceinline] = ACTIONS(5156), + [anon_sym_thread_local] = ACTIONS(5156), + [anon_sym___thread] = ACTIONS(5156), + [anon_sym_const] = ACTIONS(5156), + [anon_sym_constexpr] = ACTIONS(5156), + [anon_sym_volatile] = ACTIONS(5156), + [anon_sym_restrict] = ACTIONS(5156), + [anon_sym___restrict__] = ACTIONS(5156), + [anon_sym__Atomic] = ACTIONS(5156), + [anon_sym__Noreturn] = ACTIONS(5156), + [anon_sym_noreturn] = ACTIONS(5156), + [anon_sym__Nonnull] = ACTIONS(5156), + [anon_sym_mutable] = ACTIONS(5156), + [anon_sym_constinit] = ACTIONS(5156), + [anon_sym_consteval] = ACTIONS(5156), + [anon_sym_alignas] = ACTIONS(5156), + [anon_sym__Alignas] = ACTIONS(5156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5156), + [anon_sym_decltype] = ACTIONS(5156), + [anon_sym_template] = ACTIONS(5156), + [anon_sym_GT2] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(5156), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5156), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5156), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5156), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5156), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5156), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5156), + [anon_sym_MOZ_COLD] = ACTIONS(5156), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5156), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5156), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5156), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5156), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5156), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5156), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5156), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5156), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5156), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5156), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5156), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5156), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5156), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5156), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5156), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5156), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5156), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5156), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5156), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5156), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5156), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5156), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5156), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5156), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5156), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5156), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5156), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5156), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5156), + [anon_sym_MOZ_NONNULL] = ACTIONS(5156), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5156), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5156), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5156), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5156), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5156), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5156), + [anon_sym_MOZ_NORETURN] = ACTIONS(5156), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5156), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5156), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5156), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5156), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5156), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5156), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5156), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5156), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5156), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5156), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5156), + [anon_sym_MOZ_RAII] = ACTIONS(5156), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5156), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5156), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5156), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5156), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5156), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5156), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5156), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5156), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5156), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5156), + }, + [STATE(1437)] = { + [sym_identifier] = ACTIONS(3256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3258), + [anon_sym_COMMA] = ACTIONS(3258), + [anon_sym_RPAREN] = ACTIONS(3258), + [anon_sym_LPAREN2] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_STAR] = ACTIONS(3258), + [anon_sym_PIPE_PIPE] = ACTIONS(3258), + [anon_sym_AMP_AMP] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym___extension__] = ACTIONS(3256), + [anon_sym_virtual] = ACTIONS(3256), + [anon_sym_extern] = ACTIONS(3256), + [anon_sym___attribute__] = ACTIONS(3256), + [anon_sym___attribute] = ACTIONS(3256), + [anon_sym_COLON_COLON] = ACTIONS(3258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3258), + [anon_sym___declspec] = ACTIONS(3256), + [anon_sym___based] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_static] = ACTIONS(3256), + [anon_sym_EQ] = ACTIONS(3258), + [anon_sym_register] = ACTIONS(3256), + [anon_sym_inline] = ACTIONS(3256), + [anon_sym___inline] = ACTIONS(3256), + [anon_sym___inline__] = ACTIONS(3256), + [anon_sym___forceinline] = ACTIONS(3256), + [anon_sym_thread_local] = ACTIONS(3256), + [anon_sym___thread] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_constexpr] = ACTIONS(3256), + [anon_sym_volatile] = ACTIONS(3256), + [anon_sym_restrict] = ACTIONS(3256), + [anon_sym___restrict__] = ACTIONS(3256), + [anon_sym__Atomic] = ACTIONS(3256), + [anon_sym__Noreturn] = ACTIONS(3256), + [anon_sym_noreturn] = ACTIONS(3256), + [anon_sym__Nonnull] = ACTIONS(3256), + [anon_sym_mutable] = ACTIONS(3256), + [anon_sym_constinit] = ACTIONS(3256), + [anon_sym_consteval] = ACTIONS(3256), + [anon_sym_alignas] = ACTIONS(3256), + [anon_sym__Alignas] = ACTIONS(3256), + [anon_sym_COLON] = ACTIONS(3256), + [anon_sym_or] = ACTIONS(3256), + [anon_sym_and] = ACTIONS(3256), + [anon_sym_asm] = ACTIONS(3256), + [anon_sym___asm__] = ACTIONS(3256), + [anon_sym___asm] = ACTIONS(3256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3256), + [anon_sym_decltype] = ACTIONS(3256), + [anon_sym_final] = ACTIONS(3256), + [anon_sym_override] = ACTIONS(3256), + [anon_sym_template] = ACTIONS(3256), + [anon_sym_GT2] = ACTIONS(3258), + [anon_sym_operator] = ACTIONS(3256), + [anon_sym_try] = ACTIONS(3256), + [anon_sym_requires] = ACTIONS(3256), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3256), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3256), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3256), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3256), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3256), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3256), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3256), + [anon_sym_MOZ_COLD] = ACTIONS(3256), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3256), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3256), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3256), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3256), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3256), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3256), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3256), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3256), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3256), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3256), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3256), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3256), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3256), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3256), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3256), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3256), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3256), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3256), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3256), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3256), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_NONNULL] = ACTIONS(3256), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3256), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3256), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3256), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3256), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3256), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_NORETURN] = ACTIONS(3256), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3256), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3256), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3256), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3256), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3256), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3256), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3256), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3256), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3256), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3256), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3256), + [anon_sym_MOZ_RAII] = ACTIONS(3256), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3256), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3256), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3256), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3256), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3256), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3256), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3256), + }, + [STATE(1438)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1434), + [sym_identifier] = ACTIONS(5160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5162), + [anon_sym_COMMA] = ACTIONS(5162), + [anon_sym_RPAREN] = ACTIONS(5162), + [anon_sym_LPAREN2] = ACTIONS(5162), + [anon_sym_TILDE] = ACTIONS(5162), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_AMP_AMP] = ACTIONS(5162), + [anon_sym_AMP] = ACTIONS(5160), + [anon_sym_SEMI] = ACTIONS(5162), + [anon_sym___extension__] = ACTIONS(5160), + [anon_sym_virtual] = ACTIONS(5160), + [anon_sym_extern] = ACTIONS(5160), + [anon_sym___attribute__] = ACTIONS(5160), + [anon_sym___attribute] = ACTIONS(5160), + [anon_sym_COLON_COLON] = ACTIONS(5162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5162), + [anon_sym___declspec] = ACTIONS(5160), + [anon_sym___based] = ACTIONS(5160), + [anon_sym___cdecl] = ACTIONS(5160), + [anon_sym___clrcall] = ACTIONS(5160), + [anon_sym___stdcall] = ACTIONS(5160), + [anon_sym___fastcall] = ACTIONS(5160), + [anon_sym___thiscall] = ACTIONS(5160), + [anon_sym___vectorcall] = ACTIONS(5160), + [anon_sym_LBRACE] = ACTIONS(5162), + [anon_sym_signed] = ACTIONS(5147), + [anon_sym_unsigned] = ACTIONS(5147), + [anon_sym_long] = ACTIONS(5147), + [anon_sym_short] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5160), + [anon_sym_static] = ACTIONS(5160), + [anon_sym_EQ] = ACTIONS(5162), + [anon_sym_register] = ACTIONS(5160), + [anon_sym_inline] = ACTIONS(5160), + [anon_sym___inline] = ACTIONS(5160), + [anon_sym___inline__] = ACTIONS(5160), + [anon_sym___forceinline] = ACTIONS(5160), + [anon_sym_thread_local] = ACTIONS(5160), + [anon_sym___thread] = ACTIONS(5160), + [anon_sym_const] = ACTIONS(5160), + [anon_sym_constexpr] = ACTIONS(5160), + [anon_sym_volatile] = ACTIONS(5160), + [anon_sym_restrict] = ACTIONS(5160), + [anon_sym___restrict__] = ACTIONS(5160), + [anon_sym__Atomic] = ACTIONS(5160), + [anon_sym__Noreturn] = ACTIONS(5160), + [anon_sym_noreturn] = ACTIONS(5160), + [anon_sym__Nonnull] = ACTIONS(5160), + [anon_sym_mutable] = ACTIONS(5160), + [anon_sym_constinit] = ACTIONS(5160), + [anon_sym_consteval] = ACTIONS(5160), + [anon_sym_alignas] = ACTIONS(5160), + [anon_sym__Alignas] = ACTIONS(5160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5160), + [anon_sym_decltype] = ACTIONS(5160), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_GT2] = ACTIONS(5162), + [anon_sym_operator] = ACTIONS(5160), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5160), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5160), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5160), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5160), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5160), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5160), + [anon_sym_MOZ_COLD] = ACTIONS(5160), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5160), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5160), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5160), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5160), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5160), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5160), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5160), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5160), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5160), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5160), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5160), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5160), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5160), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5160), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5160), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5160), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5160), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5160), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5160), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5160), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5160), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5160), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5160), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5160), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5160), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5160), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5160), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5160), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5160), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5160), + [anon_sym_MOZ_NONNULL] = ACTIONS(5160), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5160), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5160), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5160), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5160), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5160), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5160), + [anon_sym_MOZ_NORETURN] = ACTIONS(5160), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5160), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5160), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5160), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5160), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5160), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5160), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5160), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5160), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5160), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5160), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5160), + [anon_sym_MOZ_RAII] = ACTIONS(5160), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5160), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5160), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5160), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5160), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5160), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5160), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5160), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5160), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5160), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5160), + }, + [STATE(1439)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1434), + [sym_identifier] = ACTIONS(5164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5166), + [anon_sym_COMMA] = ACTIONS(5166), + [anon_sym_RPAREN] = ACTIONS(5166), + [anon_sym_LPAREN2] = ACTIONS(5166), + [anon_sym_TILDE] = ACTIONS(5166), + [anon_sym_STAR] = ACTIONS(5166), + [anon_sym_AMP_AMP] = ACTIONS(5166), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_SEMI] = ACTIONS(5166), + [anon_sym___extension__] = ACTIONS(5164), + [anon_sym_virtual] = ACTIONS(5164), + [anon_sym_extern] = ACTIONS(5164), + [anon_sym___attribute__] = ACTIONS(5164), + [anon_sym___attribute] = ACTIONS(5164), + [anon_sym_COLON_COLON] = ACTIONS(5166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5166), + [anon_sym___declspec] = ACTIONS(5164), + [anon_sym___based] = ACTIONS(5164), + [anon_sym___cdecl] = ACTIONS(5164), + [anon_sym___clrcall] = ACTIONS(5164), + [anon_sym___stdcall] = ACTIONS(5164), + [anon_sym___fastcall] = ACTIONS(5164), + [anon_sym___thiscall] = ACTIONS(5164), + [anon_sym___vectorcall] = ACTIONS(5164), + [anon_sym_LBRACE] = ACTIONS(5166), + [anon_sym_signed] = ACTIONS(5147), + [anon_sym_unsigned] = ACTIONS(5147), + [anon_sym_long] = ACTIONS(5147), + [anon_sym_short] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5164), + [anon_sym_static] = ACTIONS(5164), + [anon_sym_EQ] = ACTIONS(5166), + [anon_sym_register] = ACTIONS(5164), + [anon_sym_inline] = ACTIONS(5164), + [anon_sym___inline] = ACTIONS(5164), + [anon_sym___inline__] = ACTIONS(5164), + [anon_sym___forceinline] = ACTIONS(5164), + [anon_sym_thread_local] = ACTIONS(5164), + [anon_sym___thread] = ACTIONS(5164), + [anon_sym_const] = ACTIONS(5164), + [anon_sym_constexpr] = ACTIONS(5164), + [anon_sym_volatile] = ACTIONS(5164), + [anon_sym_restrict] = ACTIONS(5164), + [anon_sym___restrict__] = ACTIONS(5164), + [anon_sym__Atomic] = ACTIONS(5164), + [anon_sym__Noreturn] = ACTIONS(5164), + [anon_sym_noreturn] = ACTIONS(5164), + [anon_sym__Nonnull] = ACTIONS(5164), + [anon_sym_mutable] = ACTIONS(5164), + [anon_sym_constinit] = ACTIONS(5164), + [anon_sym_consteval] = ACTIONS(5164), + [anon_sym_alignas] = ACTIONS(5164), + [anon_sym__Alignas] = ACTIONS(5164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5164), + [anon_sym_decltype] = ACTIONS(5164), + [anon_sym_template] = ACTIONS(5164), + [anon_sym_GT2] = ACTIONS(5166), + [anon_sym_operator] = ACTIONS(5164), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5164), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5164), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5164), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5164), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5164), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5164), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5164), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5164), + [anon_sym_MOZ_COLD] = ACTIONS(5164), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5164), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5164), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5164), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5164), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5164), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5164), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5164), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5164), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5164), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5164), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5164), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5164), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5164), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5164), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5164), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5164), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5164), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5164), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5164), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5164), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5164), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5164), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5164), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5164), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5164), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5164), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5164), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5164), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5164), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5164), + [anon_sym_MOZ_NONNULL] = ACTIONS(5164), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5164), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5164), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5164), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5164), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5164), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5164), + [anon_sym_MOZ_NORETURN] = ACTIONS(5164), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5164), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5164), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5164), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5164), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5164), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5164), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5164), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5164), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5164), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5164), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5164), + [anon_sym_MOZ_RAII] = ACTIONS(5164), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5164), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5164), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5164), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5164), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5164), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5164), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5164), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5164), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5164), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5164), + }, + [STATE(1440)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1438), + [sym_identifier] = ACTIONS(5168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5170), + [anon_sym_COMMA] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(5170), + [anon_sym_LPAREN2] = ACTIONS(5170), + [anon_sym_TILDE] = ACTIONS(5170), + [anon_sym_STAR] = ACTIONS(5170), + [anon_sym_AMP_AMP] = ACTIONS(5170), + [anon_sym_AMP] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(5170), + [anon_sym___extension__] = ACTIONS(5168), + [anon_sym_virtual] = ACTIONS(5168), + [anon_sym_extern] = ACTIONS(5168), + [anon_sym___attribute__] = ACTIONS(5168), + [anon_sym___attribute] = ACTIONS(5168), + [anon_sym_COLON_COLON] = ACTIONS(5170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5170), + [anon_sym___declspec] = ACTIONS(5168), + [anon_sym___based] = ACTIONS(5168), + [anon_sym___cdecl] = ACTIONS(5168), + [anon_sym___clrcall] = ACTIONS(5168), + [anon_sym___stdcall] = ACTIONS(5168), + [anon_sym___fastcall] = ACTIONS(5168), + [anon_sym___thiscall] = ACTIONS(5168), + [anon_sym___vectorcall] = ACTIONS(5168), + [anon_sym_LBRACE] = ACTIONS(5170), + [anon_sym_signed] = ACTIONS(5172), + [anon_sym_unsigned] = ACTIONS(5172), + [anon_sym_long] = ACTIONS(5172), + [anon_sym_short] = ACTIONS(5172), + [anon_sym_LBRACK] = ACTIONS(5168), + [anon_sym_static] = ACTIONS(5168), + [anon_sym_EQ] = ACTIONS(5170), + [anon_sym_register] = ACTIONS(5168), + [anon_sym_inline] = ACTIONS(5168), + [anon_sym___inline] = ACTIONS(5168), + [anon_sym___inline__] = ACTIONS(5168), + [anon_sym___forceinline] = ACTIONS(5168), + [anon_sym_thread_local] = ACTIONS(5168), + [anon_sym___thread] = ACTIONS(5168), + [anon_sym_const] = ACTIONS(5168), + [anon_sym_constexpr] = ACTIONS(5168), + [anon_sym_volatile] = ACTIONS(5168), + [anon_sym_restrict] = ACTIONS(5168), + [anon_sym___restrict__] = ACTIONS(5168), + [anon_sym__Atomic] = ACTIONS(5168), + [anon_sym__Noreturn] = ACTIONS(5168), + [anon_sym_noreturn] = ACTIONS(5168), + [anon_sym__Nonnull] = ACTIONS(5168), + [anon_sym_mutable] = ACTIONS(5168), + [anon_sym_constinit] = ACTIONS(5168), + [anon_sym_consteval] = ACTIONS(5168), + [anon_sym_alignas] = ACTIONS(5168), + [anon_sym__Alignas] = ACTIONS(5168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5168), + [anon_sym_decltype] = ACTIONS(5168), + [anon_sym_template] = ACTIONS(5168), + [anon_sym_GT2] = ACTIONS(5170), + [anon_sym_operator] = ACTIONS(5168), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5168), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5168), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5168), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5168), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5168), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5168), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5168), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5168), + [anon_sym_MOZ_COLD] = ACTIONS(5168), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5168), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5168), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5168), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5168), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5168), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5168), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5168), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5168), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5168), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5168), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5168), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5168), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5168), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5168), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5168), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5168), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5168), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5168), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5168), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5168), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5168), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5168), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5168), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5168), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5168), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5168), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5168), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5168), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5168), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5168), + [anon_sym_MOZ_NONNULL] = ACTIONS(5168), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5168), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5168), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5168), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5168), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5168), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5168), + [anon_sym_MOZ_NORETURN] = ACTIONS(5168), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5168), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5168), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5168), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5168), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5168), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5168), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5168), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5168), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5168), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5168), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5168), + [anon_sym_MOZ_RAII] = ACTIONS(5168), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5168), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5168), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5168), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5168), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5168), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5168), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5168), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5168), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5168), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5168), + }, + [STATE(1441)] = { + [sym_identifier] = ACTIONS(3252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LPAREN2] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym___extension__] = ACTIONS(3252), + [anon_sym_virtual] = ACTIONS(3252), + [anon_sym_extern] = ACTIONS(3252), + [anon_sym___attribute__] = ACTIONS(3252), + [anon_sym___attribute] = ACTIONS(3252), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3254), + [anon_sym___declspec] = ACTIONS(3252), + [anon_sym___based] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_EQ] = ACTIONS(3254), + [anon_sym_register] = ACTIONS(3252), + [anon_sym_inline] = ACTIONS(3252), + [anon_sym___inline] = ACTIONS(3252), + [anon_sym___inline__] = ACTIONS(3252), + [anon_sym___forceinline] = ACTIONS(3252), + [anon_sym_thread_local] = ACTIONS(3252), + [anon_sym___thread] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_constexpr] = ACTIONS(3252), + [anon_sym_volatile] = ACTIONS(3252), + [anon_sym_restrict] = ACTIONS(3252), + [anon_sym___restrict__] = ACTIONS(3252), + [anon_sym__Atomic] = ACTIONS(3252), + [anon_sym__Noreturn] = ACTIONS(3252), + [anon_sym_noreturn] = ACTIONS(3252), + [anon_sym__Nonnull] = ACTIONS(3252), + [anon_sym_mutable] = ACTIONS(3252), + [anon_sym_constinit] = ACTIONS(3252), + [anon_sym_consteval] = ACTIONS(3252), + [anon_sym_alignas] = ACTIONS(3252), + [anon_sym__Alignas] = ACTIONS(3252), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_or] = ACTIONS(3252), + [anon_sym_and] = ACTIONS(3252), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3252), + [anon_sym_decltype] = ACTIONS(3252), + [anon_sym_final] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_template] = ACTIONS(3252), + [anon_sym_GT2] = ACTIONS(3254), + [anon_sym_operator] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3252), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3252), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3252), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3252), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3252), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3252), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3252), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3252), + [anon_sym_MOZ_COLD] = ACTIONS(3252), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3252), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3252), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3252), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3252), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3252), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3252), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3252), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3252), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3252), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3252), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3252), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3252), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3252), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3252), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3252), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3252), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3252), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3252), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3252), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3252), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3252), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_NONNULL] = ACTIONS(3252), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3252), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3252), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3252), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3252), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3252), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_NORETURN] = ACTIONS(3252), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3252), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3252), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3252), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3252), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3252), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3252), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3252), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3252), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3252), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3252), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3252), + [anon_sym_MOZ_RAII] = ACTIONS(3252), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3252), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3252), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3252), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3252), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3252), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3252), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3252), + }, + [STATE(1442)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1432), + [sym_identifier] = ACTIONS(4817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4819), + [anon_sym_COMMA] = ACTIONS(4819), + [anon_sym_RPAREN] = ACTIONS(4819), + [anon_sym_LPAREN2] = ACTIONS(4819), + [anon_sym_TILDE] = ACTIONS(4819), + [anon_sym_STAR] = ACTIONS(4819), + [anon_sym_AMP_AMP] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4819), + [anon_sym___extension__] = ACTIONS(4817), + [anon_sym_virtual] = ACTIONS(4817), + [anon_sym_extern] = ACTIONS(4817), + [anon_sym___attribute__] = ACTIONS(4817), + [anon_sym___attribute] = ACTIONS(4817), + [anon_sym_COLON_COLON] = ACTIONS(4819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4819), + [anon_sym___declspec] = ACTIONS(4817), + [anon_sym___based] = ACTIONS(4817), + [anon_sym___cdecl] = ACTIONS(4817), + [anon_sym___clrcall] = ACTIONS(4817), + [anon_sym___stdcall] = ACTIONS(4817), + [anon_sym___fastcall] = ACTIONS(4817), + [anon_sym___thiscall] = ACTIONS(4817), + [anon_sym___vectorcall] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(4819), + [anon_sym_signed] = ACTIONS(5141), + [anon_sym_unsigned] = ACTIONS(5141), + [anon_sym_long] = ACTIONS(5141), + [anon_sym_short] = ACTIONS(5141), + [anon_sym_LBRACK] = ACTIONS(4817), + [anon_sym_static] = ACTIONS(4817), + [anon_sym_EQ] = ACTIONS(4819), + [anon_sym_register] = ACTIONS(4817), + [anon_sym_inline] = ACTIONS(4817), + [anon_sym___inline] = ACTIONS(4817), + [anon_sym___inline__] = ACTIONS(4817), + [anon_sym___forceinline] = ACTIONS(4817), + [anon_sym_thread_local] = ACTIONS(4817), + [anon_sym___thread] = ACTIONS(4817), + [anon_sym_const] = ACTIONS(4817), + [anon_sym_constexpr] = ACTIONS(4817), + [anon_sym_volatile] = ACTIONS(4817), + [anon_sym_restrict] = ACTIONS(4817), + [anon_sym___restrict__] = ACTIONS(4817), + [anon_sym__Atomic] = ACTIONS(4817), + [anon_sym__Noreturn] = ACTIONS(4817), + [anon_sym_noreturn] = ACTIONS(4817), + [anon_sym__Nonnull] = ACTIONS(4817), + [anon_sym_mutable] = ACTIONS(4817), + [anon_sym_constinit] = ACTIONS(4817), + [anon_sym_consteval] = ACTIONS(4817), + [anon_sym_alignas] = ACTIONS(4817), + [anon_sym__Alignas] = ACTIONS(4817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4817), + [anon_sym_decltype] = ACTIONS(4817), + [anon_sym_template] = ACTIONS(4817), + [anon_sym_GT2] = ACTIONS(4819), + [anon_sym_operator] = ACTIONS(4817), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4817), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4817), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4817), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4817), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4817), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4817), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4817), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4817), + [anon_sym_MOZ_COLD] = ACTIONS(4817), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4817), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4817), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4817), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4817), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4817), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4817), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4817), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4817), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4817), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4817), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4817), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4817), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4817), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4817), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4817), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4817), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4817), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4817), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4817), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4817), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4817), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4817), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4817), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4817), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4817), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4817), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4817), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4817), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4817), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4817), + [anon_sym_MOZ_NONNULL] = ACTIONS(4817), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4817), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4817), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4817), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4817), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4817), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4817), + [anon_sym_MOZ_NORETURN] = ACTIONS(4817), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4817), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4817), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4817), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4817), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4817), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4817), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4817), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4817), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4817), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4817), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4817), + [anon_sym_MOZ_RAII] = ACTIONS(4817), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4817), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4817), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4817), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4817), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4817), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4817), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4817), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4817), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4817), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4817), + }, + [STATE(1443)] = { + [sym_identifier] = ACTIONS(3264), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym___extension__] = ACTIONS(3264), + [anon_sym_virtual] = ACTIONS(3264), + [anon_sym_extern] = ACTIONS(3264), + [anon_sym___attribute__] = ACTIONS(3264), + [anon_sym___attribute] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3266), + [anon_sym___declspec] = ACTIONS(3264), + [anon_sym___based] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_static] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3266), + [anon_sym_register] = ACTIONS(3264), + [anon_sym_inline] = ACTIONS(3264), + [anon_sym___inline] = ACTIONS(3264), + [anon_sym___inline__] = ACTIONS(3264), + [anon_sym___forceinline] = ACTIONS(3264), + [anon_sym_thread_local] = ACTIONS(3264), + [anon_sym___thread] = ACTIONS(3264), + [anon_sym_const] = ACTIONS(3264), + [anon_sym_constexpr] = ACTIONS(3264), + [anon_sym_volatile] = ACTIONS(3264), + [anon_sym_restrict] = ACTIONS(3264), + [anon_sym___restrict__] = ACTIONS(3264), + [anon_sym__Atomic] = ACTIONS(3264), + [anon_sym__Noreturn] = ACTIONS(3264), + [anon_sym_noreturn] = ACTIONS(3264), + [anon_sym__Nonnull] = ACTIONS(3264), + [anon_sym_mutable] = ACTIONS(3264), + [anon_sym_constinit] = ACTIONS(3264), + [anon_sym_consteval] = ACTIONS(3264), + [anon_sym_alignas] = ACTIONS(3264), + [anon_sym__Alignas] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3264), + [anon_sym_or] = ACTIONS(3264), + [anon_sym_and] = ACTIONS(3264), + [anon_sym_asm] = ACTIONS(3264), + [anon_sym___asm__] = ACTIONS(3264), + [anon_sym___asm] = ACTIONS(3264), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3264), + [anon_sym_final] = ACTIONS(3264), + [anon_sym_override] = ACTIONS(3264), + [anon_sym_template] = ACTIONS(3264), + [anon_sym_GT2] = ACTIONS(3266), + [anon_sym_operator] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_requires] = ACTIONS(3264), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3264), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3264), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3264), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3264), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3264), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3264), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3264), + [anon_sym_MOZ_COLD] = ACTIONS(3264), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3264), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3264), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3264), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3264), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3264), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3264), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3264), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3264), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3264), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3264), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3264), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3264), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3264), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3264), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3264), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3264), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3264), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3264), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3264), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3264), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_NONNULL] = ACTIONS(3264), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3264), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3264), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3264), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3264), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3264), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_NORETURN] = ACTIONS(3264), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3264), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3264), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3264), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3264), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3264), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3264), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3264), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3264), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3264), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3264), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3264), + [anon_sym_MOZ_RAII] = ACTIONS(3264), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3264), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3264), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3264), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3264), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3264), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3264), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3264), + }, + [STATE(1444)] = { + [sym_identifier] = ACTIONS(3268), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3270), + [anon_sym_COMMA] = ACTIONS(3270), + [anon_sym_RPAREN] = ACTIONS(3270), + [anon_sym_LPAREN2] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_PIPE_PIPE] = ACTIONS(3270), + [anon_sym_AMP_AMP] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym___extension__] = ACTIONS(3268), + [anon_sym_virtual] = ACTIONS(3268), + [anon_sym_extern] = ACTIONS(3268), + [anon_sym___attribute__] = ACTIONS(3268), + [anon_sym___attribute] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3270), + [anon_sym___declspec] = ACTIONS(3268), + [anon_sym___based] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_register] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym___inline] = ACTIONS(3268), + [anon_sym___inline__] = ACTIONS(3268), + [anon_sym___forceinline] = ACTIONS(3268), + [anon_sym_thread_local] = ACTIONS(3268), + [anon_sym___thread] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_constexpr] = ACTIONS(3268), + [anon_sym_volatile] = ACTIONS(3268), + [anon_sym_restrict] = ACTIONS(3268), + [anon_sym___restrict__] = ACTIONS(3268), + [anon_sym__Atomic] = ACTIONS(3268), + [anon_sym__Noreturn] = ACTIONS(3268), + [anon_sym_noreturn] = ACTIONS(3268), + [anon_sym__Nonnull] = ACTIONS(3268), + [anon_sym_mutable] = ACTIONS(3268), + [anon_sym_constinit] = ACTIONS(3268), + [anon_sym_consteval] = ACTIONS(3268), + [anon_sym_alignas] = ACTIONS(3268), + [anon_sym__Alignas] = ACTIONS(3268), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_or] = ACTIONS(3268), + [anon_sym_and] = ACTIONS(3268), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3268), + [anon_sym_decltype] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_requires] = ACTIONS(3268), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3268), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3268), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3268), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3268), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3268), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3268), + [anon_sym_MOZ_COLD] = ACTIONS(3268), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3268), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3268), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3268), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3268), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3268), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3268), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3268), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3268), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3268), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3268), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3268), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3268), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3268), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3268), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3268), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3268), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3268), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3268), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3268), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_NONNULL] = ACTIONS(3268), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3268), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3268), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3268), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3268), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3268), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_NORETURN] = ACTIONS(3268), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3268), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3268), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3268), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3268), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3268), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3268), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3268), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3268), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3268), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3268), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3268), + [anon_sym_MOZ_RAII] = ACTIONS(3268), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3268), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3268), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3268), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3268), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3268), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3268), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3268), + }, + [STATE(1445)] = { + [sym_identifier] = ACTIONS(3260), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym___extension__] = ACTIONS(3260), + [anon_sym_virtual] = ACTIONS(3260), + [anon_sym_extern] = ACTIONS(3260), + [anon_sym___attribute__] = ACTIONS(3260), + [anon_sym___attribute] = ACTIONS(3260), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3262), + [anon_sym___declspec] = ACTIONS(3260), + [anon_sym___based] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_static] = ACTIONS(3260), + [anon_sym_EQ] = ACTIONS(3262), + [anon_sym_register] = ACTIONS(3260), + [anon_sym_inline] = ACTIONS(3260), + [anon_sym___inline] = ACTIONS(3260), + [anon_sym___inline__] = ACTIONS(3260), + [anon_sym___forceinline] = ACTIONS(3260), + [anon_sym_thread_local] = ACTIONS(3260), + [anon_sym___thread] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_constexpr] = ACTIONS(3260), + [anon_sym_volatile] = ACTIONS(3260), + [anon_sym_restrict] = ACTIONS(3260), + [anon_sym___restrict__] = ACTIONS(3260), + [anon_sym__Atomic] = ACTIONS(3260), + [anon_sym__Noreturn] = ACTIONS(3260), + [anon_sym_noreturn] = ACTIONS(3260), + [anon_sym__Nonnull] = ACTIONS(3260), + [anon_sym_mutable] = ACTIONS(3260), + [anon_sym_constinit] = ACTIONS(3260), + [anon_sym_consteval] = ACTIONS(3260), + [anon_sym_alignas] = ACTIONS(3260), + [anon_sym__Alignas] = ACTIONS(3260), + [anon_sym_COLON] = ACTIONS(3260), + [anon_sym_or] = ACTIONS(3260), + [anon_sym_and] = ACTIONS(3260), + [anon_sym_asm] = ACTIONS(3260), + [anon_sym___asm__] = ACTIONS(3260), + [anon_sym___asm] = ACTIONS(3260), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3260), + [anon_sym_decltype] = ACTIONS(3260), + [anon_sym_final] = ACTIONS(3260), + [anon_sym_override] = ACTIONS(3260), + [anon_sym_template] = ACTIONS(3260), + [anon_sym_GT2] = ACTIONS(3262), + [anon_sym_operator] = ACTIONS(3260), + [anon_sym_try] = ACTIONS(3260), + [anon_sym_requires] = ACTIONS(3260), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3260), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3260), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3260), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3260), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3260), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3260), + [anon_sym_MOZ_COLD] = ACTIONS(3260), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3260), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3260), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3260), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3260), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3260), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3260), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3260), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3260), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3260), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3260), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3260), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3260), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3260), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3260), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3260), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3260), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3260), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3260), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3260), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_NONNULL] = ACTIONS(3260), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3260), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3260), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3260), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3260), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3260), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_NORETURN] = ACTIONS(3260), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3260), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3260), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3260), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3260), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3260), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3260), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3260), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3260), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3260), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3260), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3260), + [anon_sym_MOZ_RAII] = ACTIONS(3260), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3260), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3260), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3260), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3260), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3260), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3260), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3260), + }, + [STATE(1446)] = { + [sym_identifier] = ACTIONS(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3250), + [anon_sym_COMMA] = ACTIONS(3250), + [anon_sym_RPAREN] = ACTIONS(3250), + [anon_sym_LPAREN2] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_PIPE_PIPE] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym___extension__] = ACTIONS(3248), + [anon_sym_virtual] = ACTIONS(3248), + [anon_sym_extern] = ACTIONS(3248), + [anon_sym___attribute__] = ACTIONS(3248), + [anon_sym___attribute] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(3250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3250), + [anon_sym___declspec] = ACTIONS(3248), + [anon_sym___based] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_register] = ACTIONS(3248), + [anon_sym_inline] = ACTIONS(3248), + [anon_sym___inline] = ACTIONS(3248), + [anon_sym___inline__] = ACTIONS(3248), + [anon_sym___forceinline] = ACTIONS(3248), + [anon_sym_thread_local] = ACTIONS(3248), + [anon_sym___thread] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_constexpr] = ACTIONS(3248), + [anon_sym_volatile] = ACTIONS(3248), + [anon_sym_restrict] = ACTIONS(3248), + [anon_sym___restrict__] = ACTIONS(3248), + [anon_sym__Atomic] = ACTIONS(3248), + [anon_sym__Noreturn] = ACTIONS(3248), + [anon_sym_noreturn] = ACTIONS(3248), + [anon_sym__Nonnull] = ACTIONS(3248), + [anon_sym_mutable] = ACTIONS(3248), + [anon_sym_constinit] = ACTIONS(3248), + [anon_sym_consteval] = ACTIONS(3248), + [anon_sym_alignas] = ACTIONS(3248), + [anon_sym__Alignas] = ACTIONS(3248), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_or] = ACTIONS(3248), + [anon_sym_and] = ACTIONS(3248), + [anon_sym_asm] = ACTIONS(3248), + [anon_sym___asm__] = ACTIONS(3248), + [anon_sym___asm] = ACTIONS(3248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3248), + [anon_sym_decltype] = ACTIONS(3248), + [anon_sym_final] = ACTIONS(3248), + [anon_sym_override] = ACTIONS(3248), + [anon_sym_template] = ACTIONS(3248), + [anon_sym_GT2] = ACTIONS(3250), + [anon_sym_operator] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_requires] = ACTIONS(3248), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3248), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3248), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3248), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3248), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3248), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3248), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3248), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3248), + [anon_sym_MOZ_COLD] = ACTIONS(3248), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3248), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3248), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3248), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3248), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3248), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3248), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3248), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3248), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3248), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3248), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3248), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3248), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3248), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3248), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3248), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3248), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3248), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3248), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3248), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3248), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3248), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_NONNULL] = ACTIONS(3248), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3248), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3248), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3248), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3248), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3248), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_NORETURN] = ACTIONS(3248), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3248), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3248), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3248), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3248), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3248), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3248), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3248), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3248), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3248), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3248), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3248), + [anon_sym_MOZ_RAII] = ACTIONS(3248), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3248), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3248), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3248), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3248), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3248), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3248), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3248), + }, + [STATE(1447)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1436), + [sym_identifier] = ACTIONS(5174), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5176), + [anon_sym_COMMA] = ACTIONS(5176), + [anon_sym_RPAREN] = ACTIONS(5176), + [anon_sym_LPAREN2] = ACTIONS(5176), + [anon_sym_TILDE] = ACTIONS(5176), + [anon_sym_STAR] = ACTIONS(5176), + [anon_sym_AMP_AMP] = ACTIONS(5176), + [anon_sym_AMP] = ACTIONS(5174), + [anon_sym_SEMI] = ACTIONS(5176), + [anon_sym___extension__] = ACTIONS(5174), + [anon_sym_virtual] = ACTIONS(5174), + [anon_sym_extern] = ACTIONS(5174), + [anon_sym___attribute__] = ACTIONS(5174), + [anon_sym___attribute] = ACTIONS(5174), + [anon_sym_COLON_COLON] = ACTIONS(5176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5176), + [anon_sym___declspec] = ACTIONS(5174), + [anon_sym___based] = ACTIONS(5174), + [anon_sym___cdecl] = ACTIONS(5174), + [anon_sym___clrcall] = ACTIONS(5174), + [anon_sym___stdcall] = ACTIONS(5174), + [anon_sym___fastcall] = ACTIONS(5174), + [anon_sym___thiscall] = ACTIONS(5174), + [anon_sym___vectorcall] = ACTIONS(5174), + [anon_sym_LBRACE] = ACTIONS(5176), + [anon_sym_signed] = ACTIONS(5178), + [anon_sym_unsigned] = ACTIONS(5178), + [anon_sym_long] = ACTIONS(5178), + [anon_sym_short] = ACTIONS(5178), + [anon_sym_LBRACK] = ACTIONS(5174), + [anon_sym_static] = ACTIONS(5174), + [anon_sym_EQ] = ACTIONS(5176), + [anon_sym_register] = ACTIONS(5174), + [anon_sym_inline] = ACTIONS(5174), + [anon_sym___inline] = ACTIONS(5174), + [anon_sym___inline__] = ACTIONS(5174), + [anon_sym___forceinline] = ACTIONS(5174), + [anon_sym_thread_local] = ACTIONS(5174), + [anon_sym___thread] = ACTIONS(5174), + [anon_sym_const] = ACTIONS(5174), + [anon_sym_constexpr] = ACTIONS(5174), + [anon_sym_volatile] = ACTIONS(5174), + [anon_sym_restrict] = ACTIONS(5174), + [anon_sym___restrict__] = ACTIONS(5174), + [anon_sym__Atomic] = ACTIONS(5174), + [anon_sym__Noreturn] = ACTIONS(5174), + [anon_sym_noreturn] = ACTIONS(5174), + [anon_sym__Nonnull] = ACTIONS(5174), + [anon_sym_mutable] = ACTIONS(5174), + [anon_sym_constinit] = ACTIONS(5174), + [anon_sym_consteval] = ACTIONS(5174), + [anon_sym_alignas] = ACTIONS(5174), + [anon_sym__Alignas] = ACTIONS(5174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5174), + [anon_sym_decltype] = ACTIONS(5174), + [anon_sym_template] = ACTIONS(5174), + [anon_sym_GT2] = ACTIONS(5176), + [anon_sym_operator] = ACTIONS(5174), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5174), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5174), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5174), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5174), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5174), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5174), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5174), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5174), + [anon_sym_MOZ_COLD] = ACTIONS(5174), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5174), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5174), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5174), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5174), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5174), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5174), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5174), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5174), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5174), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5174), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5174), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5174), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5174), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5174), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5174), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5174), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5174), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5174), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5174), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5174), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5174), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5174), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5174), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5174), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5174), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5174), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5174), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5174), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5174), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5174), + [anon_sym_MOZ_NONNULL] = ACTIONS(5174), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5174), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5174), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5174), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5174), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5174), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5174), + [anon_sym_MOZ_NORETURN] = ACTIONS(5174), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5174), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5174), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5174), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5174), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5174), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5174), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5174), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5174), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5174), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5174), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5174), + [anon_sym_MOZ_RAII] = ACTIONS(5174), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5174), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5174), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5174), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5174), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5174), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5174), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5174), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5174), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5174), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5174), + }, + [STATE(1448)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1434), + [sym_identifier] = ACTIONS(5180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5182), + [anon_sym_COMMA] = ACTIONS(5182), + [anon_sym_RPAREN] = ACTIONS(5182), + [anon_sym_LPAREN2] = ACTIONS(5182), + [anon_sym_TILDE] = ACTIONS(5182), + [anon_sym_STAR] = ACTIONS(5182), + [anon_sym_AMP_AMP] = ACTIONS(5182), + [anon_sym_AMP] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5182), + [anon_sym___extension__] = ACTIONS(5180), + [anon_sym_virtual] = ACTIONS(5180), + [anon_sym_extern] = ACTIONS(5180), + [anon_sym___attribute__] = ACTIONS(5180), + [anon_sym___attribute] = ACTIONS(5180), + [anon_sym_COLON_COLON] = ACTIONS(5182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5182), + [anon_sym___declspec] = ACTIONS(5180), + [anon_sym___based] = ACTIONS(5180), + [anon_sym___cdecl] = ACTIONS(5180), + [anon_sym___clrcall] = ACTIONS(5180), + [anon_sym___stdcall] = ACTIONS(5180), + [anon_sym___fastcall] = ACTIONS(5180), + [anon_sym___thiscall] = ACTIONS(5180), + [anon_sym___vectorcall] = ACTIONS(5180), + [anon_sym_LBRACE] = ACTIONS(5182), + [anon_sym_signed] = ACTIONS(5147), + [anon_sym_unsigned] = ACTIONS(5147), + [anon_sym_long] = ACTIONS(5147), + [anon_sym_short] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5180), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_EQ] = ACTIONS(5182), + [anon_sym_register] = ACTIONS(5180), + [anon_sym_inline] = ACTIONS(5180), + [anon_sym___inline] = ACTIONS(5180), + [anon_sym___inline__] = ACTIONS(5180), + [anon_sym___forceinline] = ACTIONS(5180), + [anon_sym_thread_local] = ACTIONS(5180), + [anon_sym___thread] = ACTIONS(5180), + [anon_sym_const] = ACTIONS(5180), + [anon_sym_constexpr] = ACTIONS(5180), + [anon_sym_volatile] = ACTIONS(5180), + [anon_sym_restrict] = ACTIONS(5180), + [anon_sym___restrict__] = ACTIONS(5180), + [anon_sym__Atomic] = ACTIONS(5180), + [anon_sym__Noreturn] = ACTIONS(5180), + [anon_sym_noreturn] = ACTIONS(5180), + [anon_sym__Nonnull] = ACTIONS(5180), + [anon_sym_mutable] = ACTIONS(5180), + [anon_sym_constinit] = ACTIONS(5180), + [anon_sym_consteval] = ACTIONS(5180), + [anon_sym_alignas] = ACTIONS(5180), + [anon_sym__Alignas] = ACTIONS(5180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5180), + [anon_sym_decltype] = ACTIONS(5180), + [anon_sym_template] = ACTIONS(5180), + [anon_sym_GT2] = ACTIONS(5182), + [anon_sym_operator] = ACTIONS(5180), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5180), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5180), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5180), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5180), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5180), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5180), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5180), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5180), + [anon_sym_MOZ_COLD] = ACTIONS(5180), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5180), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5180), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5180), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5180), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5180), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5180), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5180), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5180), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5180), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5180), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5180), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5180), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5180), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5180), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5180), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5180), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5180), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5180), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5180), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5180), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5180), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5180), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5180), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5180), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5180), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5180), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5180), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5180), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5180), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5180), + [anon_sym_MOZ_NONNULL] = ACTIONS(5180), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5180), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5180), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5180), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5180), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5180), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5180), + [anon_sym_MOZ_NORETURN] = ACTIONS(5180), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5180), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5180), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5180), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5180), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5180), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5180), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5180), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5180), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5180), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5180), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5180), + [anon_sym_MOZ_RAII] = ACTIONS(5180), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5180), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5180), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5180), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5180), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5180), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5180), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5180), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5180), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5180), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5180), + }, + [STATE(1449)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1435), + [sym_identifier] = ACTIONS(5184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5186), + [anon_sym_COMMA] = ACTIONS(5186), + [anon_sym_RPAREN] = ACTIONS(5186), + [anon_sym_LPAREN2] = ACTIONS(5186), + [anon_sym_TILDE] = ACTIONS(5186), + [anon_sym_STAR] = ACTIONS(5186), + [anon_sym_AMP_AMP] = ACTIONS(5186), + [anon_sym_AMP] = ACTIONS(5184), + [anon_sym_SEMI] = ACTIONS(5186), + [anon_sym___extension__] = ACTIONS(5184), + [anon_sym_virtual] = ACTIONS(5184), + [anon_sym_extern] = ACTIONS(5184), + [anon_sym___attribute__] = ACTIONS(5184), + [anon_sym___attribute] = ACTIONS(5184), + [anon_sym_COLON_COLON] = ACTIONS(5186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5186), + [anon_sym___declspec] = ACTIONS(5184), + [anon_sym___based] = ACTIONS(5184), + [anon_sym___cdecl] = ACTIONS(5184), + [anon_sym___clrcall] = ACTIONS(5184), + [anon_sym___stdcall] = ACTIONS(5184), + [anon_sym___fastcall] = ACTIONS(5184), + [anon_sym___thiscall] = ACTIONS(5184), + [anon_sym___vectorcall] = ACTIONS(5184), + [anon_sym_LBRACE] = ACTIONS(5186), + [anon_sym_signed] = ACTIONS(5188), + [anon_sym_unsigned] = ACTIONS(5188), + [anon_sym_long] = ACTIONS(5188), + [anon_sym_short] = ACTIONS(5188), + [anon_sym_LBRACK] = ACTIONS(5184), + [anon_sym_static] = ACTIONS(5184), + [anon_sym_EQ] = ACTIONS(5186), + [anon_sym_register] = ACTIONS(5184), + [anon_sym_inline] = ACTIONS(5184), + [anon_sym___inline] = ACTIONS(5184), + [anon_sym___inline__] = ACTIONS(5184), + [anon_sym___forceinline] = ACTIONS(5184), + [anon_sym_thread_local] = ACTIONS(5184), + [anon_sym___thread] = ACTIONS(5184), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5184), + [anon_sym_decltype] = ACTIONS(5184), + [anon_sym_template] = ACTIONS(5184), + [anon_sym_GT2] = ACTIONS(5186), + [anon_sym_operator] = ACTIONS(5184), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5184), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5184), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5184), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5184), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5184), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5184), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5184), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5184), + [anon_sym_MOZ_COLD] = ACTIONS(5184), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5184), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5184), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5184), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5184), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5184), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5184), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5184), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5184), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5184), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5184), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5184), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5184), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5184), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5184), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5184), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5184), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5184), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5184), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5184), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5184), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5184), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5184), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5184), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5184), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5184), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5184), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5184), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5184), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5184), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5184), + [anon_sym_MOZ_NONNULL] = ACTIONS(5184), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5184), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5184), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5184), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5184), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5184), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5184), + [anon_sym_MOZ_NORETURN] = ACTIONS(5184), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5184), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5184), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5184), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5184), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5184), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5184), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5184), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5184), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5184), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5184), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5184), + [anon_sym_MOZ_RAII] = ACTIONS(5184), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5184), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5184), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5184), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5184), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5184), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5184), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5184), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5184), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5184), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5184), + }, + [STATE(1450)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1434), + [sym_identifier] = ACTIONS(5190), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5192), + [anon_sym_COMMA] = ACTIONS(5192), + [anon_sym_RPAREN] = ACTIONS(5192), + [anon_sym_LPAREN2] = ACTIONS(5192), + [anon_sym_TILDE] = ACTIONS(5192), + [anon_sym_STAR] = ACTIONS(5192), + [anon_sym_AMP_AMP] = ACTIONS(5192), + [anon_sym_AMP] = ACTIONS(5190), + [anon_sym_SEMI] = ACTIONS(5192), + [anon_sym___extension__] = ACTIONS(5190), + [anon_sym_virtual] = ACTIONS(5190), + [anon_sym_extern] = ACTIONS(5190), + [anon_sym___attribute__] = ACTIONS(5190), + [anon_sym___attribute] = ACTIONS(5190), + [anon_sym_COLON_COLON] = ACTIONS(5192), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5192), + [anon_sym___declspec] = ACTIONS(5190), + [anon_sym___based] = ACTIONS(5190), + [anon_sym___cdecl] = ACTIONS(5190), + [anon_sym___clrcall] = ACTIONS(5190), + [anon_sym___stdcall] = ACTIONS(5190), + [anon_sym___fastcall] = ACTIONS(5190), + [anon_sym___thiscall] = ACTIONS(5190), + [anon_sym___vectorcall] = ACTIONS(5190), + [anon_sym_LBRACE] = ACTIONS(5192), + [anon_sym_signed] = ACTIONS(5147), + [anon_sym_unsigned] = ACTIONS(5147), + [anon_sym_long] = ACTIONS(5147), + [anon_sym_short] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5190), + [anon_sym_static] = ACTIONS(5190), + [anon_sym_EQ] = ACTIONS(5192), + [anon_sym_register] = ACTIONS(5190), + [anon_sym_inline] = ACTIONS(5190), + [anon_sym___inline] = ACTIONS(5190), + [anon_sym___inline__] = ACTIONS(5190), + [anon_sym___forceinline] = ACTIONS(5190), + [anon_sym_thread_local] = ACTIONS(5190), + [anon_sym___thread] = ACTIONS(5190), + [anon_sym_const] = ACTIONS(5190), + [anon_sym_constexpr] = ACTIONS(5190), + [anon_sym_volatile] = ACTIONS(5190), + [anon_sym_restrict] = ACTIONS(5190), + [anon_sym___restrict__] = ACTIONS(5190), + [anon_sym__Atomic] = ACTIONS(5190), + [anon_sym__Noreturn] = ACTIONS(5190), + [anon_sym_noreturn] = ACTIONS(5190), + [anon_sym__Nonnull] = ACTIONS(5190), + [anon_sym_mutable] = ACTIONS(5190), + [anon_sym_constinit] = ACTIONS(5190), + [anon_sym_consteval] = ACTIONS(5190), + [anon_sym_alignas] = ACTIONS(5190), + [anon_sym__Alignas] = ACTIONS(5190), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5190), + [anon_sym_decltype] = ACTIONS(5190), + [anon_sym_template] = ACTIONS(5190), + [anon_sym_GT2] = ACTIONS(5192), + [anon_sym_operator] = ACTIONS(5190), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5190), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5190), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5190), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5190), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5190), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5190), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5190), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5190), + [anon_sym_MOZ_COLD] = ACTIONS(5190), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5190), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5190), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5190), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5190), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5190), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5190), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5190), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5190), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5190), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5190), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5190), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5190), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5190), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5190), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5190), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5190), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5190), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5190), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5190), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5190), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5190), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5190), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5190), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5190), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5190), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5190), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5190), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5190), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5190), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5190), + [anon_sym_MOZ_NONNULL] = ACTIONS(5190), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5190), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5190), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5190), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5190), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5190), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5190), + [anon_sym_MOZ_NORETURN] = ACTIONS(5190), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5190), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5190), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5190), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5190), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5190), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5190), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5190), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5190), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5190), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5190), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5190), + [anon_sym_MOZ_RAII] = ACTIONS(5190), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5190), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5190), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5190), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5190), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5190), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5190), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5190), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5190), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5190), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5190), + }, + [STATE(1451)] = { + [sym_identifier] = ACTIONS(3244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3246), + [anon_sym_COMMA] = ACTIONS(3246), + [anon_sym_RPAREN] = ACTIONS(3246), + [anon_sym_LPAREN2] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_PIPE_PIPE] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym___extension__] = ACTIONS(3244), + [anon_sym_virtual] = ACTIONS(3244), + [anon_sym_extern] = ACTIONS(3244), + [anon_sym___attribute__] = ACTIONS(3244), + [anon_sym___attribute] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3246), + [anon_sym___declspec] = ACTIONS(3244), + [anon_sym___based] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3246), + [anon_sym_register] = ACTIONS(3244), + [anon_sym_inline] = ACTIONS(3244), + [anon_sym___inline] = ACTIONS(3244), + [anon_sym___inline__] = ACTIONS(3244), + [anon_sym___forceinline] = ACTIONS(3244), + [anon_sym_thread_local] = ACTIONS(3244), + [anon_sym___thread] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_constexpr] = ACTIONS(3244), + [anon_sym_volatile] = ACTIONS(3244), + [anon_sym_restrict] = ACTIONS(3244), + [anon_sym___restrict__] = ACTIONS(3244), + [anon_sym__Atomic] = ACTIONS(3244), + [anon_sym__Noreturn] = ACTIONS(3244), + [anon_sym_noreturn] = ACTIONS(3244), + [anon_sym__Nonnull] = ACTIONS(3244), + [anon_sym_mutable] = ACTIONS(3244), + [anon_sym_constinit] = ACTIONS(3244), + [anon_sym_consteval] = ACTIONS(3244), + [anon_sym_alignas] = ACTIONS(3244), + [anon_sym__Alignas] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3244), + [anon_sym_and] = ACTIONS(3244), + [anon_sym_asm] = ACTIONS(3244), + [anon_sym___asm__] = ACTIONS(3244), + [anon_sym___asm] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3244), + [anon_sym_decltype] = ACTIONS(3244), + [anon_sym_final] = ACTIONS(3244), + [anon_sym_override] = ACTIONS(3244), + [anon_sym_template] = ACTIONS(3244), + [anon_sym_GT2] = ACTIONS(3246), + [anon_sym_operator] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_requires] = ACTIONS(3244), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3244), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3244), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3244), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3244), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3244), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3244), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3244), + [anon_sym_MOZ_COLD] = ACTIONS(3244), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3244), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3244), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3244), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3244), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3244), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3244), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3244), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3244), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3244), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3244), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3244), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3244), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3244), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3244), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3244), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3244), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3244), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3244), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3244), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3244), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_NONNULL] = ACTIONS(3244), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3244), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3244), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3244), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3244), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3244), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_NORETURN] = ACTIONS(3244), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3244), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3244), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3244), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3244), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3244), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3244), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3244), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3244), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3244), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3244), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3244), + [anon_sym_MOZ_RAII] = ACTIONS(3244), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3244), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3244), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3244), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3244), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3244), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3244), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3244), + }, + [STATE(1452)] = { + [sym_ms_based_modifier] = STATE(8684), + [sym__declarator] = STATE(6763), + [sym_parenthesized_declarator] = STATE(6300), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_function_declarator] = STATE(6300), + [sym_array_declarator] = STATE(6300), + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_reference_declarator] = STATE(6300), + [sym_structured_binding_declarator] = STATE(6300), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3593), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6019), + [sym_qualified_identifier] = STATE(3606), + [sym_qualified_type_identifier] = STATE(8112), + [sym_operator_name] = STATE(6300), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4033), + [anon_sym_LPAREN2] = ACTIONS(4035), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(4037), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(3157), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(3197), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1453)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1439), + [sym_identifier] = ACTIONS(5194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5196), + [anon_sym_COMMA] = ACTIONS(5196), + [anon_sym_RPAREN] = ACTIONS(5196), + [anon_sym_LPAREN2] = ACTIONS(5196), + [anon_sym_TILDE] = ACTIONS(5196), + [anon_sym_STAR] = ACTIONS(5196), + [anon_sym_AMP_AMP] = ACTIONS(5196), + [anon_sym_AMP] = ACTIONS(5194), + [anon_sym_SEMI] = ACTIONS(5196), + [anon_sym___extension__] = ACTIONS(5194), + [anon_sym_virtual] = ACTIONS(5194), + [anon_sym_extern] = ACTIONS(5194), + [anon_sym___attribute__] = ACTIONS(5194), + [anon_sym___attribute] = ACTIONS(5194), + [anon_sym_COLON_COLON] = ACTIONS(5196), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5196), + [anon_sym___declspec] = ACTIONS(5194), + [anon_sym___based] = ACTIONS(5194), + [anon_sym___cdecl] = ACTIONS(5194), + [anon_sym___clrcall] = ACTIONS(5194), + [anon_sym___stdcall] = ACTIONS(5194), + [anon_sym___fastcall] = ACTIONS(5194), + [anon_sym___thiscall] = ACTIONS(5194), + [anon_sym___vectorcall] = ACTIONS(5194), + [anon_sym_LBRACE] = ACTIONS(5196), + [anon_sym_signed] = ACTIONS(5198), + [anon_sym_unsigned] = ACTIONS(5198), + [anon_sym_long] = ACTIONS(5198), + [anon_sym_short] = ACTIONS(5198), + [anon_sym_LBRACK] = ACTIONS(5194), + [anon_sym_static] = ACTIONS(5194), + [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_register] = ACTIONS(5194), + [anon_sym_inline] = ACTIONS(5194), + [anon_sym___inline] = ACTIONS(5194), + [anon_sym___inline__] = ACTIONS(5194), + [anon_sym___forceinline] = ACTIONS(5194), + [anon_sym_thread_local] = ACTIONS(5194), + [anon_sym___thread] = ACTIONS(5194), + [anon_sym_const] = ACTIONS(5194), + [anon_sym_constexpr] = ACTIONS(5194), + [anon_sym_volatile] = ACTIONS(5194), + [anon_sym_restrict] = ACTIONS(5194), + [anon_sym___restrict__] = ACTIONS(5194), + [anon_sym__Atomic] = ACTIONS(5194), + [anon_sym__Noreturn] = ACTIONS(5194), + [anon_sym_noreturn] = ACTIONS(5194), + [anon_sym__Nonnull] = ACTIONS(5194), + [anon_sym_mutable] = ACTIONS(5194), + [anon_sym_constinit] = ACTIONS(5194), + [anon_sym_consteval] = ACTIONS(5194), + [anon_sym_alignas] = ACTIONS(5194), + [anon_sym__Alignas] = ACTIONS(5194), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5194), + [anon_sym_decltype] = ACTIONS(5194), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5196), + [anon_sym_operator] = ACTIONS(5194), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5194), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5194), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5194), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5194), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5194), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5194), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5194), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5194), + [anon_sym_MOZ_COLD] = ACTIONS(5194), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5194), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5194), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5194), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5194), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5194), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5194), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5194), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5194), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5194), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5194), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5194), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5194), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5194), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5194), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5194), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5194), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5194), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5194), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5194), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5194), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5194), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5194), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5194), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5194), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5194), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5194), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5194), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5194), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5194), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5194), + [anon_sym_MOZ_NONNULL] = ACTIONS(5194), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5194), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5194), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5194), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5194), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5194), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5194), + [anon_sym_MOZ_NORETURN] = ACTIONS(5194), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5194), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5194), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5194), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5194), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5194), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5194), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5194), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5194), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5194), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5194), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5194), + [anon_sym_MOZ_RAII] = ACTIONS(5194), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5194), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5194), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5194), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5194), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5194), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5194), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5194), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5194), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5194), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5194), + }, + [STATE(1454)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1432), + [sym_identifier] = ACTIONS(4735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4737), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4737), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_TILDE] = ACTIONS(4737), + [anon_sym_STAR] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_SEMI] = ACTIONS(4737), + [anon_sym___extension__] = ACTIONS(4735), + [anon_sym_virtual] = ACTIONS(4735), + [anon_sym_extern] = ACTIONS(4735), + [anon_sym___attribute__] = ACTIONS(4735), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_COLON_COLON] = ACTIONS(4737), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4737), + [anon_sym___declspec] = ACTIONS(4735), + [anon_sym___based] = ACTIONS(4735), + [anon_sym___cdecl] = ACTIONS(4735), + [anon_sym___clrcall] = ACTIONS(4735), + [anon_sym___stdcall] = ACTIONS(4735), + [anon_sym___fastcall] = ACTIONS(4735), + [anon_sym___thiscall] = ACTIONS(4735), + [anon_sym___vectorcall] = ACTIONS(4735), + [anon_sym_signed] = ACTIONS(5141), + [anon_sym_unsigned] = ACTIONS(5141), + [anon_sym_long] = ACTIONS(5141), + [anon_sym_short] = ACTIONS(5141), + [anon_sym_LBRACK] = ACTIONS(4735), + [anon_sym_static] = ACTIONS(4735), + [anon_sym_EQ] = ACTIONS(4737), + [anon_sym_register] = ACTIONS(4735), + [anon_sym_inline] = ACTIONS(4735), + [anon_sym___inline] = ACTIONS(4735), + [anon_sym___inline__] = ACTIONS(4735), + [anon_sym___forceinline] = ACTIONS(4735), + [anon_sym_thread_local] = ACTIONS(4735), + [anon_sym___thread] = ACTIONS(4735), + [anon_sym_const] = ACTIONS(4735), + [anon_sym_constexpr] = ACTIONS(4735), + [anon_sym_volatile] = ACTIONS(4735), + [anon_sym_restrict] = ACTIONS(4735), + [anon_sym___restrict__] = ACTIONS(4735), + [anon_sym__Atomic] = ACTIONS(4735), + [anon_sym__Noreturn] = ACTIONS(4735), + [anon_sym_noreturn] = ACTIONS(4735), + [anon_sym__Nonnull] = ACTIONS(4735), + [anon_sym_mutable] = ACTIONS(4735), + [anon_sym_constinit] = ACTIONS(4735), + [anon_sym_consteval] = ACTIONS(4735), + [anon_sym_alignas] = ACTIONS(4735), + [anon_sym__Alignas] = ACTIONS(4735), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4735), + [anon_sym_decltype] = ACTIONS(4735), + [anon_sym_template] = ACTIONS(4735), + [anon_sym_GT2] = ACTIONS(4737), + [anon_sym_operator] = ACTIONS(4735), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4735), + [anon_sym_MOZ_COLD] = ACTIONS(4735), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4735), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4735), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4735), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4735), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4735), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4735), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4735), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4735), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4735), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4735), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4735), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4735), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_RAII] = ACTIONS(4735), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4735), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4735), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4735), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4735), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4735), + }, + [STATE(1455)] = { + [sym__declaration_modifiers] = STATE(1423), + [sym_attribute_specifier] = STATE(1423), + [sym_attribute_declaration] = STATE(1423), + [sym_ms_declspec_modifier] = STATE(1423), + [sym_storage_class_specifier] = STATE(1423), + [sym_type_qualifier] = STATE(1423), + [sym_alignas_qualifier] = STATE(1593), + [sym_decltype_auto] = STATE(1422), + [sym_macro_annotation] = STATE(1618), + [aux_sym__declaration_specifiers_repeat1] = STATE(1423), + [sym_identifier] = ACTIONS(4712), + [anon_sym_LPAREN2] = ACTIONS(4714), + [anon_sym_TILDE] = ACTIONS(4714), + [anon_sym_STAR] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4712), + [anon_sym_SEMI] = ACTIONS(5200), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4716), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4714), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(4712), + [anon_sym___cdecl] = ACTIONS(4712), + [anon_sym___clrcall] = ACTIONS(4712), + [anon_sym___stdcall] = ACTIONS(4712), + [anon_sym___fastcall] = ACTIONS(4712), + [anon_sym___thiscall] = ACTIONS(4712), + [anon_sym___vectorcall] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4708), + [anon_sym_decltype] = ACTIONS(4710), + [anon_sym_template] = ACTIONS(4712), + [anon_sym_operator] = ACTIONS(4712), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(1456)] = { + [sym__declaration_modifiers] = STATE(1423), + [sym_attribute_specifier] = STATE(1423), + [sym_attribute_declaration] = STATE(1423), + [sym_ms_declspec_modifier] = STATE(1423), + [sym_storage_class_specifier] = STATE(1423), + [sym_type_qualifier] = STATE(1423), + [sym_alignas_qualifier] = STATE(1593), + [sym_decltype_auto] = STATE(1422), + [sym_macro_annotation] = STATE(1618), + [aux_sym__declaration_specifiers_repeat1] = STATE(1423), + [sym_identifier] = ACTIONS(4712), + [anon_sym_LPAREN2] = ACTIONS(4714), + [anon_sym_TILDE] = ACTIONS(4714), + [anon_sym_STAR] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4712), + [anon_sym_SEMI] = ACTIONS(5202), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4716), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4714), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(4712), + [anon_sym___cdecl] = ACTIONS(4712), + [anon_sym___clrcall] = ACTIONS(4712), + [anon_sym___stdcall] = ACTIONS(4712), + [anon_sym___fastcall] = ACTIONS(4712), + [anon_sym___thiscall] = ACTIONS(4712), + [anon_sym___vectorcall] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4708), + [anon_sym_decltype] = ACTIONS(4710), + [anon_sym_template] = ACTIONS(4712), + [anon_sym_operator] = ACTIONS(4712), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(1457)] = { + [sym_string_literal] = STATE(915), + [sym_identifier] = ACTIONS(5204), + [anon_sym_LPAREN2] = ACTIONS(5206), + [anon_sym_TILDE] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5204), + [anon_sym___extension__] = ACTIONS(5204), + [anon_sym_virtual] = ACTIONS(5204), + [anon_sym_extern] = ACTIONS(5204), + [anon_sym___attribute__] = ACTIONS(5204), + [anon_sym___attribute] = ACTIONS(5204), + [anon_sym_COLON_COLON] = ACTIONS(5206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5206), + [anon_sym___declspec] = ACTIONS(5204), + [anon_sym___based] = ACTIONS(5204), + [anon_sym_signed] = ACTIONS(5204), + [anon_sym_unsigned] = ACTIONS(5204), + [anon_sym_long] = ACTIONS(5204), + [anon_sym_short] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_static] = ACTIONS(5204), + [anon_sym_register] = ACTIONS(5204), + [anon_sym_inline] = ACTIONS(5204), + [anon_sym___inline] = ACTIONS(5204), + [anon_sym___inline__] = ACTIONS(5204), + [anon_sym___forceinline] = ACTIONS(5204), + [anon_sym_thread_local] = ACTIONS(5204), + [anon_sym___thread] = ACTIONS(5204), + [anon_sym_const] = ACTIONS(5204), + [anon_sym_constexpr] = ACTIONS(5204), + [anon_sym_volatile] = ACTIONS(5204), + [anon_sym_restrict] = ACTIONS(5204), + [anon_sym___restrict__] = ACTIONS(5204), + [anon_sym__Atomic] = ACTIONS(5204), + [anon_sym__Noreturn] = ACTIONS(5204), + [anon_sym_noreturn] = ACTIONS(5204), + [anon_sym__Nonnull] = ACTIONS(5204), + [anon_sym_mutable] = ACTIONS(5204), + [anon_sym_constinit] = ACTIONS(5204), + [anon_sym_consteval] = ACTIONS(5204), + [anon_sym_alignas] = ACTIONS(5204), + [anon_sym__Alignas] = ACTIONS(5204), + [sym_primitive_type] = ACTIONS(5204), + [anon_sym_enum] = ACTIONS(5204), + [anon_sym_class] = ACTIONS(5204), + [anon_sym_struct] = ACTIONS(5204), + [anon_sym_union] = ACTIONS(5204), + [anon_sym_L_DQUOTE] = ACTIONS(5208), + [anon_sym_u_DQUOTE] = ACTIONS(5208), + [anon_sym_U_DQUOTE] = ACTIONS(5208), + [anon_sym_u8_DQUOTE] = ACTIONS(5208), + [anon_sym_DQUOTE] = ACTIONS(5208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5204), + [anon_sym_decltype] = ACTIONS(5204), + [anon_sym_explicit] = ACTIONS(5204), + [anon_sym_typename] = ACTIONS(5204), + [anon_sym_template] = ACTIONS(5204), + [anon_sym_operator] = ACTIONS(5204), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5204), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5204), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5204), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5204), + [anon_sym_MOZ_COLD] = ACTIONS(5204), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5204), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5204), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5204), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5204), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5204), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5204), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5204), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5204), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5204), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5204), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5204), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5204), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5204), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_NONNULL] = ACTIONS(5204), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5204), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5204), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5204), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5204), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5204), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5204), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5204), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5204), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5204), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5204), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5204), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5204), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5204), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5204), + [anon_sym_MOZ_RAII] = ACTIONS(5204), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5204), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5204), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5204), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5204), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5204), + }, + [STATE(1458)] = { + [sym__declaration_modifiers] = STATE(1423), + [sym_attribute_specifier] = STATE(1423), + [sym_attribute_declaration] = STATE(1423), + [sym_ms_declspec_modifier] = STATE(1423), + [sym_storage_class_specifier] = STATE(1423), + [sym_type_qualifier] = STATE(1423), + [sym_alignas_qualifier] = STATE(1593), + [sym_decltype_auto] = STATE(1422), + [sym_macro_annotation] = STATE(1618), + [aux_sym__declaration_specifiers_repeat1] = STATE(1423), + [sym_identifier] = ACTIONS(4712), + [anon_sym_LPAREN2] = ACTIONS(4714), + [anon_sym_TILDE] = ACTIONS(4714), + [anon_sym_STAR] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4712), + [anon_sym_SEMI] = ACTIONS(5210), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4716), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4714), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(4712), + [anon_sym___cdecl] = ACTIONS(4712), + [anon_sym___clrcall] = ACTIONS(4712), + [anon_sym___stdcall] = ACTIONS(4712), + [anon_sym___fastcall] = ACTIONS(4712), + [anon_sym___thiscall] = ACTIONS(4712), + [anon_sym___vectorcall] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4708), + [anon_sym_decltype] = ACTIONS(4710), + [anon_sym_template] = ACTIONS(4712), + [anon_sym_operator] = ACTIONS(4712), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(1459)] = { + [sym__declaration_modifiers] = STATE(1423), + [sym_attribute_specifier] = STATE(1423), + [sym_attribute_declaration] = STATE(1423), + [sym_ms_declspec_modifier] = STATE(1423), + [sym_storage_class_specifier] = STATE(1423), + [sym_type_qualifier] = STATE(1423), + [sym_alignas_qualifier] = STATE(1593), + [sym_decltype_auto] = STATE(1422), + [sym_macro_annotation] = STATE(1618), + [aux_sym__declaration_specifiers_repeat1] = STATE(1423), + [sym_identifier] = ACTIONS(4712), + [anon_sym_LPAREN2] = ACTIONS(4714), + [anon_sym_TILDE] = ACTIONS(4714), + [anon_sym_STAR] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4712), + [anon_sym_SEMI] = ACTIONS(5212), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4716), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4714), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(4712), + [anon_sym___cdecl] = ACTIONS(4712), + [anon_sym___clrcall] = ACTIONS(4712), + [anon_sym___stdcall] = ACTIONS(4712), + [anon_sym___fastcall] = ACTIONS(4712), + [anon_sym___thiscall] = ACTIONS(4712), + [anon_sym___vectorcall] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4708), + [anon_sym_decltype] = ACTIONS(4710), + [anon_sym_template] = ACTIONS(4712), + [anon_sym_operator] = ACTIONS(4712), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(1460)] = { + [sym_string_literal] = STATE(919), + [sym_identifier] = ACTIONS(5204), + [anon_sym_LPAREN2] = ACTIONS(5206), + [anon_sym_TILDE] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5204), + [anon_sym___extension__] = ACTIONS(5204), + [anon_sym_virtual] = ACTIONS(5204), + [anon_sym_extern] = ACTIONS(5204), + [anon_sym___attribute__] = ACTIONS(5204), + [anon_sym___attribute] = ACTIONS(5204), + [anon_sym_COLON_COLON] = ACTIONS(5206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5206), + [anon_sym___declspec] = ACTIONS(5204), + [anon_sym___based] = ACTIONS(5204), + [anon_sym_signed] = ACTIONS(5204), + [anon_sym_unsigned] = ACTIONS(5204), + [anon_sym_long] = ACTIONS(5204), + [anon_sym_short] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_static] = ACTIONS(5204), + [anon_sym_register] = ACTIONS(5204), + [anon_sym_inline] = ACTIONS(5204), + [anon_sym___inline] = ACTIONS(5204), + [anon_sym___inline__] = ACTIONS(5204), + [anon_sym___forceinline] = ACTIONS(5204), + [anon_sym_thread_local] = ACTIONS(5204), + [anon_sym___thread] = ACTIONS(5204), + [anon_sym_const] = ACTIONS(5204), + [anon_sym_constexpr] = ACTIONS(5204), + [anon_sym_volatile] = ACTIONS(5204), + [anon_sym_restrict] = ACTIONS(5204), + [anon_sym___restrict__] = ACTIONS(5204), + [anon_sym__Atomic] = ACTIONS(5204), + [anon_sym__Noreturn] = ACTIONS(5204), + [anon_sym_noreturn] = ACTIONS(5204), + [anon_sym__Nonnull] = ACTIONS(5204), + [anon_sym_mutable] = ACTIONS(5204), + [anon_sym_constinit] = ACTIONS(5204), + [anon_sym_consteval] = ACTIONS(5204), + [anon_sym_alignas] = ACTIONS(5204), + [anon_sym__Alignas] = ACTIONS(5204), + [sym_primitive_type] = ACTIONS(5204), + [anon_sym_enum] = ACTIONS(5204), + [anon_sym_class] = ACTIONS(5204), + [anon_sym_struct] = ACTIONS(5204), + [anon_sym_union] = ACTIONS(5204), + [anon_sym_L_DQUOTE] = ACTIONS(5208), + [anon_sym_u_DQUOTE] = ACTIONS(5208), + [anon_sym_U_DQUOTE] = ACTIONS(5208), + [anon_sym_u8_DQUOTE] = ACTIONS(5208), + [anon_sym_DQUOTE] = ACTIONS(5208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5204), + [anon_sym_decltype] = ACTIONS(5204), + [anon_sym_explicit] = ACTIONS(5204), + [anon_sym_typename] = ACTIONS(5204), + [anon_sym_template] = ACTIONS(5204), + [anon_sym_operator] = ACTIONS(5204), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5204), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5204), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5204), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5204), + [anon_sym_MOZ_COLD] = ACTIONS(5204), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5204), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5204), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5204), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5204), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5204), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5204), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5204), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5204), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5204), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5204), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5204), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5204), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5204), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_NONNULL] = ACTIONS(5204), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5204), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5204), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5204), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5204), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5204), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5204), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5204), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5204), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5204), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5204), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5204), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5204), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5204), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5204), + [anon_sym_MOZ_RAII] = ACTIONS(5204), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5204), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5204), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5204), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5204), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5204), + }, + [STATE(1461)] = { + [sym_string_literal] = STATE(920), + [sym_identifier] = ACTIONS(5204), + [anon_sym_LPAREN2] = ACTIONS(5206), + [anon_sym_TILDE] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5204), + [anon_sym___extension__] = ACTIONS(5204), + [anon_sym_virtual] = ACTIONS(5204), + [anon_sym_extern] = ACTIONS(5204), + [anon_sym___attribute__] = ACTIONS(5204), + [anon_sym___attribute] = ACTIONS(5204), + [anon_sym_COLON_COLON] = ACTIONS(5206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5206), + [anon_sym___declspec] = ACTIONS(5204), + [anon_sym___based] = ACTIONS(5204), + [anon_sym_signed] = ACTIONS(5204), + [anon_sym_unsigned] = ACTIONS(5204), + [anon_sym_long] = ACTIONS(5204), + [anon_sym_short] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_static] = ACTIONS(5204), + [anon_sym_register] = ACTIONS(5204), + [anon_sym_inline] = ACTIONS(5204), + [anon_sym___inline] = ACTIONS(5204), + [anon_sym___inline__] = ACTIONS(5204), + [anon_sym___forceinline] = ACTIONS(5204), + [anon_sym_thread_local] = ACTIONS(5204), + [anon_sym___thread] = ACTIONS(5204), + [anon_sym_const] = ACTIONS(5204), + [anon_sym_constexpr] = ACTIONS(5204), + [anon_sym_volatile] = ACTIONS(5204), + [anon_sym_restrict] = ACTIONS(5204), + [anon_sym___restrict__] = ACTIONS(5204), + [anon_sym__Atomic] = ACTIONS(5204), + [anon_sym__Noreturn] = ACTIONS(5204), + [anon_sym_noreturn] = ACTIONS(5204), + [anon_sym__Nonnull] = ACTIONS(5204), + [anon_sym_mutable] = ACTIONS(5204), + [anon_sym_constinit] = ACTIONS(5204), + [anon_sym_consteval] = ACTIONS(5204), + [anon_sym_alignas] = ACTIONS(5204), + [anon_sym__Alignas] = ACTIONS(5204), + [sym_primitive_type] = ACTIONS(5204), + [anon_sym_enum] = ACTIONS(5204), + [anon_sym_class] = ACTIONS(5204), + [anon_sym_struct] = ACTIONS(5204), + [anon_sym_union] = ACTIONS(5204), + [anon_sym_L_DQUOTE] = ACTIONS(5208), + [anon_sym_u_DQUOTE] = ACTIONS(5208), + [anon_sym_U_DQUOTE] = ACTIONS(5208), + [anon_sym_u8_DQUOTE] = ACTIONS(5208), + [anon_sym_DQUOTE] = ACTIONS(5208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5204), + [anon_sym_decltype] = ACTIONS(5204), + [anon_sym_explicit] = ACTIONS(5204), + [anon_sym_typename] = ACTIONS(5204), + [anon_sym_template] = ACTIONS(5204), + [anon_sym_operator] = ACTIONS(5204), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5204), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5204), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5204), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5204), + [anon_sym_MOZ_COLD] = ACTIONS(5204), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5204), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5204), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5204), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5204), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5204), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5204), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5204), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5204), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5204), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5204), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5204), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5204), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5204), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_NONNULL] = ACTIONS(5204), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5204), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5204), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5204), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5204), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5204), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5204), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5204), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5204), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5204), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5204), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5204), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5204), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5204), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5204), + [anon_sym_MOZ_RAII] = ACTIONS(5204), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5204), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5204), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5204), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5204), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5204), + }, + [STATE(1462)] = { + [sym_type_qualifier] = STATE(1467), + [sym_alignas_qualifier] = STATE(955), + [aux_sym__type_definition_type_repeat1] = STATE(1467), + [aux_sym_sized_type_specifier_repeat1] = STATE(1524), + [sym_identifier] = ACTIONS(5214), + [anon_sym_COMMA] = ACTIONS(4721), + [anon_sym_RPAREN] = ACTIONS(4721), + [anon_sym_LPAREN2] = ACTIONS(4721), + [anon_sym_STAR] = ACTIONS(4721), + [anon_sym_AMP_AMP] = ACTIONS(4721), + [anon_sym_AMP] = ACTIONS(4723), + [anon_sym_SEMI] = ACTIONS(4721), + [anon_sym___extension__] = ACTIONS(4725), + [anon_sym_virtual] = ACTIONS(4723), + [anon_sym_extern] = ACTIONS(4723), + [anon_sym___attribute__] = ACTIONS(4723), + [anon_sym___attribute] = ACTIONS(4723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4721), + [anon_sym___declspec] = ACTIONS(4723), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_signed] = ACTIONS(5216), + [anon_sym_unsigned] = ACTIONS(5216), + [anon_sym_long] = ACTIONS(5216), + [anon_sym_short] = ACTIONS(5216), + [anon_sym_LBRACK] = ACTIONS(4723), + [anon_sym_static] = ACTIONS(4723), + [anon_sym_EQ] = ACTIONS(4721), + [anon_sym_register] = ACTIONS(4723), + [anon_sym_inline] = ACTIONS(4723), + [anon_sym___inline] = ACTIONS(4723), + [anon_sym___inline__] = ACTIONS(4723), + [anon_sym___forceinline] = ACTIONS(4723), + [anon_sym_thread_local] = ACTIONS(4723), + [anon_sym___thread] = ACTIONS(4723), + [anon_sym_const] = ACTIONS(4725), + [anon_sym_constexpr] = ACTIONS(4725), + [anon_sym_volatile] = ACTIONS(4725), + [anon_sym_restrict] = ACTIONS(4725), + [anon_sym___restrict__] = ACTIONS(4725), + [anon_sym__Atomic] = ACTIONS(4725), + [anon_sym__Noreturn] = ACTIONS(4725), + [anon_sym_noreturn] = ACTIONS(4725), + [anon_sym__Nonnull] = ACTIONS(4725), + [anon_sym_mutable] = ACTIONS(4725), + [anon_sym_constinit] = ACTIONS(4725), + [anon_sym_consteval] = ACTIONS(4725), + [anon_sym_alignas] = ACTIONS(4730), + [anon_sym__Alignas] = ACTIONS(4730), + [sym_primitive_type] = ACTIONS(5218), + [anon_sym_asm] = ACTIONS(4723), + [anon_sym___asm__] = ACTIONS(4723), + [anon_sym___asm] = ACTIONS(4723), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4723), + [anon_sym_decltype] = ACTIONS(4723), + [anon_sym_final] = ACTIONS(4723), + [anon_sym_override] = ACTIONS(4723), + [anon_sym_GT2] = ACTIONS(4721), + [anon_sym_try] = ACTIONS(4723), + [anon_sym_requires] = ACTIONS(4723), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4723), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4723), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4723), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4723), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4723), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4723), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4723), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4723), + [anon_sym_MOZ_COLD] = ACTIONS(4723), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4723), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4723), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4723), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4723), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4723), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4723), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4723), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4723), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4723), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4723), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4723), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4723), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4723), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4723), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4723), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4723), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4723), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4723), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4723), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4723), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4723), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4723), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4723), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4723), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4723), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4723), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4723), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4723), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4723), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4723), + [anon_sym_MOZ_NONNULL] = ACTIONS(4723), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4723), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4723), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4723), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4723), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4723), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4723), + [anon_sym_MOZ_NORETURN] = ACTIONS(4723), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4723), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4723), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4723), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4723), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4723), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4723), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4723), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4723), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4723), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4723), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4723), + [anon_sym_MOZ_RAII] = ACTIONS(4723), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4723), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4723), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4723), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4723), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4723), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4723), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4723), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4723), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4723), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4723), + }, + [STATE(1463)] = { + [sym_identifier] = ACTIONS(4490), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4492), + [anon_sym_COMMA] = ACTIONS(4492), + [anon_sym_RPAREN] = ACTIONS(4492), + [anon_sym_LPAREN2] = ACTIONS(4492), + [anon_sym_TILDE] = ACTIONS(4492), + [anon_sym_STAR] = ACTIONS(4492), + [anon_sym_AMP_AMP] = ACTIONS(4492), + [anon_sym_AMP] = ACTIONS(4490), + [anon_sym_SEMI] = ACTIONS(4492), + [anon_sym___extension__] = ACTIONS(4490), + [anon_sym_virtual] = ACTIONS(4490), + [anon_sym_extern] = ACTIONS(4490), + [anon_sym___attribute__] = ACTIONS(4490), + [anon_sym___attribute] = ACTIONS(4490), + [anon_sym_COLON_COLON] = ACTIONS(4492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4492), + [anon_sym___declspec] = ACTIONS(4490), + [anon_sym___based] = ACTIONS(4490), + [anon_sym___cdecl] = ACTIONS(4490), + [anon_sym___clrcall] = ACTIONS(4490), + [anon_sym___stdcall] = ACTIONS(4490), + [anon_sym___fastcall] = ACTIONS(4490), + [anon_sym___thiscall] = ACTIONS(4490), + [anon_sym___vectorcall] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4492), + [anon_sym_LBRACK] = ACTIONS(4490), + [anon_sym_static] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4492), + [anon_sym_register] = ACTIONS(4490), + [anon_sym_inline] = ACTIONS(4490), + [anon_sym___inline] = ACTIONS(4490), + [anon_sym___inline__] = ACTIONS(4490), + [anon_sym___forceinline] = ACTIONS(4490), + [anon_sym_thread_local] = ACTIONS(4490), + [anon_sym___thread] = ACTIONS(4490), + [anon_sym_const] = ACTIONS(4490), + [anon_sym_constexpr] = ACTIONS(4490), + [anon_sym_volatile] = ACTIONS(4490), + [anon_sym_restrict] = ACTIONS(4490), + [anon_sym___restrict__] = ACTIONS(4490), + [anon_sym__Atomic] = ACTIONS(4490), + [anon_sym__Noreturn] = ACTIONS(4490), + [anon_sym_noreturn] = ACTIONS(4490), + [anon_sym__Nonnull] = ACTIONS(4490), + [anon_sym_mutable] = ACTIONS(4490), + [anon_sym_constinit] = ACTIONS(4490), + [anon_sym_consteval] = ACTIONS(4490), + [anon_sym_alignas] = ACTIONS(4490), + [anon_sym__Alignas] = ACTIONS(4490), + [anon_sym_COLON] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4490), + [anon_sym_decltype] = ACTIONS(4490), + [anon_sym_final] = ACTIONS(4490), + [anon_sym_override] = ACTIONS(4490), + [anon_sym_explicit] = ACTIONS(4490), + [anon_sym_template] = ACTIONS(4490), + [anon_sym_GT2] = ACTIONS(4492), + [anon_sym_operator] = ACTIONS(4490), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4490), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4490), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4490), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4490), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4490), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4490), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4490), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4490), + [anon_sym_MOZ_COLD] = ACTIONS(4490), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4490), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4490), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4490), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4490), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4490), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4490), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4490), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4490), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4490), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4490), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4490), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4490), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4490), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4490), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4490), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4490), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4490), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4490), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4490), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4490), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4490), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4490), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4490), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4490), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4490), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4490), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4490), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4490), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4490), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4490), + [anon_sym_MOZ_NONNULL] = ACTIONS(4490), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4490), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4490), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4490), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4490), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4490), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4490), + [anon_sym_MOZ_NORETURN] = ACTIONS(4490), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4490), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4490), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4490), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4490), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4490), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4490), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4490), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4490), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4490), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4490), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4490), + [anon_sym_MOZ_RAII] = ACTIONS(4490), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4490), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4490), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4490), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4490), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4490), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4490), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4490), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4490), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4490), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4490), + }, + [STATE(1464)] = { + [sym__declaration_modifiers] = STATE(1423), + [sym_attribute_specifier] = STATE(1423), + [sym_attribute_declaration] = STATE(1423), + [sym_ms_declspec_modifier] = STATE(1423), + [sym_storage_class_specifier] = STATE(1423), + [sym_type_qualifier] = STATE(1423), + [sym_alignas_qualifier] = STATE(1593), + [sym_decltype_auto] = STATE(1422), + [sym_macro_annotation] = STATE(1618), + [aux_sym__declaration_specifiers_repeat1] = STATE(1423), + [sym_identifier] = ACTIONS(4712), + [anon_sym_LPAREN2] = ACTIONS(4714), + [anon_sym_TILDE] = ACTIONS(4714), + [anon_sym_STAR] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4712), + [anon_sym_SEMI] = ACTIONS(5220), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4716), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4714), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(4712), + [anon_sym___cdecl] = ACTIONS(4712), + [anon_sym___clrcall] = ACTIONS(4712), + [anon_sym___stdcall] = ACTIONS(4712), + [anon_sym___fastcall] = ACTIONS(4712), + [anon_sym___thiscall] = ACTIONS(4712), + [anon_sym___vectorcall] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4708), + [anon_sym_decltype] = ACTIONS(4710), + [anon_sym_template] = ACTIONS(4712), + [anon_sym_operator] = ACTIONS(4712), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(1465)] = { + [sym_string_literal] = STATE(916), + [sym_identifier] = ACTIONS(5204), + [anon_sym_LPAREN2] = ACTIONS(5206), + [anon_sym_TILDE] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5204), + [anon_sym___extension__] = ACTIONS(5204), + [anon_sym_virtual] = ACTIONS(5204), + [anon_sym_extern] = ACTIONS(5204), + [anon_sym___attribute__] = ACTIONS(5204), + [anon_sym___attribute] = ACTIONS(5204), + [anon_sym_COLON_COLON] = ACTIONS(5206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5206), + [anon_sym___declspec] = ACTIONS(5204), + [anon_sym___based] = ACTIONS(5204), + [anon_sym_signed] = ACTIONS(5204), + [anon_sym_unsigned] = ACTIONS(5204), + [anon_sym_long] = ACTIONS(5204), + [anon_sym_short] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_static] = ACTIONS(5204), + [anon_sym_register] = ACTIONS(5204), + [anon_sym_inline] = ACTIONS(5204), + [anon_sym___inline] = ACTIONS(5204), + [anon_sym___inline__] = ACTIONS(5204), + [anon_sym___forceinline] = ACTIONS(5204), + [anon_sym_thread_local] = ACTIONS(5204), + [anon_sym___thread] = ACTIONS(5204), + [anon_sym_const] = ACTIONS(5204), + [anon_sym_constexpr] = ACTIONS(5204), + [anon_sym_volatile] = ACTIONS(5204), + [anon_sym_restrict] = ACTIONS(5204), + [anon_sym___restrict__] = ACTIONS(5204), + [anon_sym__Atomic] = ACTIONS(5204), + [anon_sym__Noreturn] = ACTIONS(5204), + [anon_sym_noreturn] = ACTIONS(5204), + [anon_sym__Nonnull] = ACTIONS(5204), + [anon_sym_mutable] = ACTIONS(5204), + [anon_sym_constinit] = ACTIONS(5204), + [anon_sym_consteval] = ACTIONS(5204), + [anon_sym_alignas] = ACTIONS(5204), + [anon_sym__Alignas] = ACTIONS(5204), + [sym_primitive_type] = ACTIONS(5204), + [anon_sym_enum] = ACTIONS(5204), + [anon_sym_class] = ACTIONS(5204), + [anon_sym_struct] = ACTIONS(5204), + [anon_sym_union] = ACTIONS(5204), + [anon_sym_L_DQUOTE] = ACTIONS(5208), + [anon_sym_u_DQUOTE] = ACTIONS(5208), + [anon_sym_U_DQUOTE] = ACTIONS(5208), + [anon_sym_u8_DQUOTE] = ACTIONS(5208), + [anon_sym_DQUOTE] = ACTIONS(5208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5204), + [anon_sym_decltype] = ACTIONS(5204), + [anon_sym_explicit] = ACTIONS(5204), + [anon_sym_typename] = ACTIONS(5204), + [anon_sym_template] = ACTIONS(5204), + [anon_sym_operator] = ACTIONS(5204), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5204), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5204), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5204), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5204), + [anon_sym_MOZ_COLD] = ACTIONS(5204), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5204), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5204), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5204), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5204), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5204), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5204), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5204), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5204), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5204), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5204), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5204), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5204), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5204), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_NONNULL] = ACTIONS(5204), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5204), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5204), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5204), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5204), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5204), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5204), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5204), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5204), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5204), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5204), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5204), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5204), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5204), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5204), + [anon_sym_MOZ_RAII] = ACTIONS(5204), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5204), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5204), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5204), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5204), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5204), + }, + [STATE(1466)] = { + [sym__declaration_modifiers] = STATE(1423), + [sym_attribute_specifier] = STATE(1423), + [sym_attribute_declaration] = STATE(1423), + [sym_ms_declspec_modifier] = STATE(1423), + [sym_storage_class_specifier] = STATE(1423), + [sym_type_qualifier] = STATE(1423), + [sym_alignas_qualifier] = STATE(1593), + [sym_decltype_auto] = STATE(1422), + [sym_macro_annotation] = STATE(1618), + [aux_sym__declaration_specifiers_repeat1] = STATE(1423), + [sym_identifier] = ACTIONS(4712), + [anon_sym_LPAREN2] = ACTIONS(4714), + [anon_sym_TILDE] = ACTIONS(4714), + [anon_sym_STAR] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4712), + [anon_sym_SEMI] = ACTIONS(5222), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4716), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4714), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(4712), + [anon_sym___cdecl] = ACTIONS(4712), + [anon_sym___clrcall] = ACTIONS(4712), + [anon_sym___stdcall] = ACTIONS(4712), + [anon_sym___fastcall] = ACTIONS(4712), + [anon_sym___thiscall] = ACTIONS(4712), + [anon_sym___vectorcall] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4708), + [anon_sym_decltype] = ACTIONS(4710), + [anon_sym_template] = ACTIONS(4712), + [anon_sym_operator] = ACTIONS(4712), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(1467)] = { + [sym_type_qualifier] = STATE(935), + [sym_alignas_qualifier] = STATE(955), + [aux_sym__type_definition_type_repeat1] = STATE(935), + [aux_sym_sized_type_specifier_repeat1] = STATE(1583), + [sym_identifier] = ACTIONS(5224), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_RPAREN] = ACTIONS(4674), + [anon_sym_LPAREN2] = ACTIONS(4674), + [anon_sym_STAR] = ACTIONS(4674), + [anon_sym_AMP_AMP] = ACTIONS(4674), + [anon_sym_AMP] = ACTIONS(4676), + [anon_sym_SEMI] = ACTIONS(4674), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_virtual] = ACTIONS(4676), + [anon_sym_extern] = ACTIONS(4676), + [anon_sym___attribute__] = ACTIONS(4676), + [anon_sym___attribute] = ACTIONS(4676), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4674), + [anon_sym___declspec] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_signed] = ACTIONS(5226), + [anon_sym_unsigned] = ACTIONS(5226), + [anon_sym_long] = ACTIONS(5226), + [anon_sym_short] = ACTIONS(5226), + [anon_sym_LBRACK] = ACTIONS(4676), + [anon_sym_static] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4674), + [anon_sym_register] = ACTIONS(4676), + [anon_sym_inline] = ACTIONS(4676), + [anon_sym___inline] = ACTIONS(4676), + [anon_sym___inline__] = ACTIONS(4676), + [anon_sym___forceinline] = ACTIONS(4676), + [anon_sym_thread_local] = ACTIONS(4676), + [anon_sym___thread] = ACTIONS(4676), + [anon_sym_const] = ACTIONS(4678), + [anon_sym_constexpr] = ACTIONS(4678), + [anon_sym_volatile] = ACTIONS(4678), + [anon_sym_restrict] = ACTIONS(4678), + [anon_sym___restrict__] = ACTIONS(4678), + [anon_sym__Atomic] = ACTIONS(4678), + [anon_sym__Noreturn] = ACTIONS(4678), + [anon_sym_noreturn] = ACTIONS(4678), + [anon_sym__Nonnull] = ACTIONS(4678), + [anon_sym_mutable] = ACTIONS(4678), + [anon_sym_constinit] = ACTIONS(4678), + [anon_sym_consteval] = ACTIONS(4678), + [anon_sym_alignas] = ACTIONS(4683), + [anon_sym__Alignas] = ACTIONS(4683), + [sym_primitive_type] = ACTIONS(5228), + [anon_sym_asm] = ACTIONS(4676), + [anon_sym___asm__] = ACTIONS(4676), + [anon_sym___asm] = ACTIONS(4676), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4676), + [anon_sym_decltype] = ACTIONS(4676), + [anon_sym_final] = ACTIONS(4676), + [anon_sym_override] = ACTIONS(4676), + [anon_sym_GT2] = ACTIONS(4674), + [anon_sym_try] = ACTIONS(4676), + [anon_sym_requires] = ACTIONS(4676), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4676), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4676), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4676), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4676), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4676), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4676), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4676), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4676), + [anon_sym_MOZ_COLD] = ACTIONS(4676), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4676), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4676), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4676), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4676), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4676), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4676), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4676), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4676), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4676), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4676), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4676), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4676), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4676), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4676), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4676), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4676), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4676), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4676), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4676), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4676), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4676), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4676), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4676), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4676), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4676), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4676), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4676), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4676), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4676), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4676), + [anon_sym_MOZ_NONNULL] = ACTIONS(4676), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4676), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4676), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4676), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4676), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4676), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4676), + [anon_sym_MOZ_NORETURN] = ACTIONS(4676), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4676), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4676), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4676), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4676), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4676), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4676), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4676), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4676), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4676), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4676), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4676), + [anon_sym_MOZ_RAII] = ACTIONS(4676), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4676), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4676), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4676), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4676), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4676), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4676), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4676), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4676), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4676), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4676), + }, + [STATE(1468)] = { + [sym__declaration_modifiers] = STATE(1423), + [sym_attribute_specifier] = STATE(1423), + [sym_attribute_declaration] = STATE(1423), + [sym_ms_declspec_modifier] = STATE(1423), + [sym_storage_class_specifier] = STATE(1423), + [sym_type_qualifier] = STATE(1423), + [sym_alignas_qualifier] = STATE(1593), + [sym_decltype_auto] = STATE(1422), + [sym_macro_annotation] = STATE(1618), + [aux_sym__declaration_specifiers_repeat1] = STATE(1423), + [sym_identifier] = ACTIONS(4712), + [anon_sym_LPAREN2] = ACTIONS(4714), + [anon_sym_TILDE] = ACTIONS(4714), + [anon_sym_STAR] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4712), + [anon_sym_SEMI] = ACTIONS(5230), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4716), + [anon_sym_extern] = ACTIONS(4350), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4714), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4356), + [anon_sym___declspec] = ACTIONS(4358), + [anon_sym___based] = ACTIONS(4712), + [anon_sym___cdecl] = ACTIONS(4712), + [anon_sym___clrcall] = ACTIONS(4712), + [anon_sym___stdcall] = ACTIONS(4712), + [anon_sym___fastcall] = ACTIONS(4712), + [anon_sym___thiscall] = ACTIONS(4712), + [anon_sym___vectorcall] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_static] = ACTIONS(4350), + [anon_sym_register] = ACTIONS(4350), + [anon_sym_inline] = ACTIONS(4350), + [anon_sym___inline] = ACTIONS(4350), + [anon_sym___inline__] = ACTIONS(4350), + [anon_sym___forceinline] = ACTIONS(4350), + [anon_sym_thread_local] = ACTIONS(4350), + [anon_sym___thread] = ACTIONS(4350), + [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__Nonnull] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4360), + [anon_sym__Alignas] = ACTIONS(4360), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4708), + [anon_sym_decltype] = ACTIONS(4710), + [anon_sym_template] = ACTIONS(4712), + [anon_sym_operator] = ACTIONS(4712), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(1469)] = { + [sym_identifier] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_RPAREN] = ACTIONS(3296), + [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(3289), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym___extension__] = ACTIONS(3289), + [anon_sym_virtual] = ACTIONS(3289), + [anon_sym_extern] = ACTIONS(3289), + [anon_sym___attribute__] = ACTIONS(3289), + [anon_sym___attribute] = ACTIONS(3289), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3289), + [anon_sym___based] = ACTIONS(3289), + [anon_sym___cdecl] = ACTIONS(3289), + [anon_sym___clrcall] = ACTIONS(3289), + [anon_sym___stdcall] = ACTIONS(3289), + [anon_sym___fastcall] = ACTIONS(3289), + [anon_sym___thiscall] = ACTIONS(3289), + [anon_sym___vectorcall] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_register] = ACTIONS(3289), + [anon_sym_inline] = ACTIONS(3289), + [anon_sym___inline] = ACTIONS(3289), + [anon_sym___inline__] = ACTIONS(3289), + [anon_sym___forceinline] = ACTIONS(3289), + [anon_sym_thread_local] = ACTIONS(3289), + [anon_sym___thread] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_constexpr] = ACTIONS(3289), + [anon_sym_volatile] = ACTIONS(3289), + [anon_sym_restrict] = ACTIONS(3289), + [anon_sym___restrict__] = ACTIONS(3289), + [anon_sym__Atomic] = ACTIONS(3289), + [anon_sym__Noreturn] = ACTIONS(3289), + [anon_sym_noreturn] = ACTIONS(3289), + [anon_sym__Nonnull] = ACTIONS(3289), + [anon_sym_mutable] = ACTIONS(3289), + [anon_sym_constinit] = ACTIONS(3289), + [anon_sym_consteval] = ACTIONS(3289), + [anon_sym_alignas] = ACTIONS(3289), + [anon_sym__Alignas] = ACTIONS(3289), + [anon_sym_COLON] = ACTIONS(3289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3289), + [anon_sym_decltype] = ACTIONS(3289), + [anon_sym_final] = ACTIONS(3289), + [anon_sym_override] = ACTIONS(3289), + [anon_sym_template] = ACTIONS(3289), + [anon_sym_GT2] = ACTIONS(3296), + [anon_sym_operator] = ACTIONS(3289), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3289), + [anon_sym_MOZ_COLD] = ACTIONS(3289), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3289), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3289), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3289), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3289), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3289), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3289), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3289), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3289), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3289), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3289), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3289), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3289), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_RAII] = ACTIONS(3289), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3289), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3289), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3289), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3289), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3289), + }, + [STATE(1470)] = { + [sym_identifier] = ACTIONS(4478), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4480), + [anon_sym_COMMA] = ACTIONS(4480), + [anon_sym_RPAREN] = ACTIONS(4480), + [anon_sym_LPAREN2] = ACTIONS(4480), + [anon_sym_TILDE] = ACTIONS(4480), + [anon_sym_STAR] = ACTIONS(4480), + [anon_sym_AMP_AMP] = ACTIONS(4480), + [anon_sym_AMP] = ACTIONS(4478), + [anon_sym_SEMI] = ACTIONS(4480), + [anon_sym___extension__] = ACTIONS(4478), + [anon_sym_virtual] = ACTIONS(4478), + [anon_sym_extern] = ACTIONS(4478), + [anon_sym___attribute__] = ACTIONS(4478), + [anon_sym___attribute] = ACTIONS(4478), + [anon_sym_COLON_COLON] = ACTIONS(4480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4480), + [anon_sym___declspec] = ACTIONS(4478), + [anon_sym___based] = ACTIONS(4478), + [anon_sym___cdecl] = ACTIONS(4478), + [anon_sym___clrcall] = ACTIONS(4478), + [anon_sym___stdcall] = ACTIONS(4478), + [anon_sym___fastcall] = ACTIONS(4478), + [anon_sym___thiscall] = ACTIONS(4478), + [anon_sym___vectorcall] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(4480), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_static] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(4480), + [anon_sym_register] = ACTIONS(4478), + [anon_sym_inline] = ACTIONS(4478), + [anon_sym___inline] = ACTIONS(4478), + [anon_sym___inline__] = ACTIONS(4478), + [anon_sym___forceinline] = ACTIONS(4478), + [anon_sym_thread_local] = ACTIONS(4478), + [anon_sym___thread] = ACTIONS(4478), + [anon_sym_const] = ACTIONS(4478), + [anon_sym_constexpr] = ACTIONS(4478), + [anon_sym_volatile] = ACTIONS(4478), + [anon_sym_restrict] = ACTIONS(4478), + [anon_sym___restrict__] = ACTIONS(4478), + [anon_sym__Atomic] = ACTIONS(4478), + [anon_sym__Noreturn] = ACTIONS(4478), + [anon_sym_noreturn] = ACTIONS(4478), + [anon_sym__Nonnull] = ACTIONS(4478), + [anon_sym_mutable] = ACTIONS(4478), + [anon_sym_constinit] = ACTIONS(4478), + [anon_sym_consteval] = ACTIONS(4478), + [anon_sym_alignas] = ACTIONS(4478), + [anon_sym__Alignas] = ACTIONS(4478), + [anon_sym_COLON] = ACTIONS(4478), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(4478), + [anon_sym_final] = ACTIONS(4478), + [anon_sym_override] = ACTIONS(4478), + [anon_sym_explicit] = ACTIONS(4478), + [anon_sym_template] = ACTIONS(4478), + [anon_sym_GT2] = ACTIONS(4480), + [anon_sym_operator] = ACTIONS(4478), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4478), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4478), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4478), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4478), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4478), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4478), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4478), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4478), + [anon_sym_MOZ_COLD] = ACTIONS(4478), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4478), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4478), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4478), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4478), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4478), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4478), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4478), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4478), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4478), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4478), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4478), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4478), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4478), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4478), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4478), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4478), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4478), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4478), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4478), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4478), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4478), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4478), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4478), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4478), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4478), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4478), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4478), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4478), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4478), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4478), + [anon_sym_MOZ_NONNULL] = ACTIONS(4478), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4478), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4478), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4478), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4478), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4478), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4478), + [anon_sym_MOZ_NORETURN] = ACTIONS(4478), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4478), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4478), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4478), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4478), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4478), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4478), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4478), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4478), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4478), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4478), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4478), + [anon_sym_MOZ_RAII] = ACTIONS(4478), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4478), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4478), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4478), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4478), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4478), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4478), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4478), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4478), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4478), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4478), + }, + [STATE(1471)] = { + [sym_identifier] = ACTIONS(4269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_STAR] = ACTIONS(4271), + [anon_sym_AMP_AMP] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym___extension__] = ACTIONS(4269), + [anon_sym_virtual] = ACTIONS(4269), + [anon_sym_extern] = ACTIONS(4269), + [anon_sym___attribute__] = ACTIONS(4269), + [anon_sym___attribute] = ACTIONS(4269), + [anon_sym_COLON_COLON] = ACTIONS(4271), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4271), + [anon_sym___declspec] = ACTIONS(4269), + [anon_sym___based] = ACTIONS(4269), + [anon_sym___cdecl] = ACTIONS(4269), + [anon_sym___clrcall] = ACTIONS(4269), + [anon_sym___stdcall] = ACTIONS(4269), + [anon_sym___fastcall] = ACTIONS(4269), + [anon_sym___thiscall] = ACTIONS(4269), + [anon_sym___vectorcall] = ACTIONS(4269), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_static] = ACTIONS(4269), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_register] = ACTIONS(4269), + [anon_sym_inline] = ACTIONS(4269), + [anon_sym___inline] = ACTIONS(4269), + [anon_sym___inline__] = ACTIONS(4269), + [anon_sym___forceinline] = ACTIONS(4269), + [anon_sym_thread_local] = ACTIONS(4269), + [anon_sym___thread] = ACTIONS(4269), + [anon_sym_const] = ACTIONS(4269), + [anon_sym_constexpr] = ACTIONS(4269), + [anon_sym_volatile] = ACTIONS(4269), + [anon_sym_restrict] = ACTIONS(4269), + [anon_sym___restrict__] = ACTIONS(4269), + [anon_sym__Atomic] = ACTIONS(4269), + [anon_sym__Noreturn] = ACTIONS(4269), + [anon_sym_noreturn] = ACTIONS(4269), + [anon_sym__Nonnull] = ACTIONS(4269), + [anon_sym_mutable] = ACTIONS(4269), + [anon_sym_constinit] = ACTIONS(4269), + [anon_sym_consteval] = ACTIONS(4269), + [anon_sym_alignas] = ACTIONS(4269), + [anon_sym__Alignas] = ACTIONS(4269), + [anon_sym_COLON] = ACTIONS(4269), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(4269), + [anon_sym_final] = ACTIONS(4269), + [anon_sym_override] = ACTIONS(4269), + [anon_sym_explicit] = ACTIONS(4269), + [anon_sym_template] = ACTIONS(4269), + [anon_sym_GT2] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4269), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4269), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4269), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4269), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4269), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4269), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4269), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4269), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4269), + [anon_sym_MOZ_COLD] = ACTIONS(4269), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4269), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4269), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4269), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4269), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4269), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4269), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4269), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4269), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4269), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4269), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4269), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4269), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4269), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4269), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4269), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4269), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4269), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4269), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4269), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4269), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4269), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4269), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4269), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4269), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4269), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4269), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4269), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4269), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4269), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4269), + [anon_sym_MOZ_NONNULL] = ACTIONS(4269), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4269), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4269), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4269), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4269), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4269), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4269), + [anon_sym_MOZ_NORETURN] = ACTIONS(4269), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4269), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4269), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4269), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4269), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4269), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4269), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4269), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4269), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4269), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4269), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4269), + [anon_sym_MOZ_RAII] = ACTIONS(4269), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4269), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4269), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4269), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4269), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4269), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4269), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4269), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4269), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4269), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4269), + }, + [STATE(1472)] = { + [sym_identifier] = ACTIONS(5232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_LPAREN2] = ACTIONS(5234), + [anon_sym_TILDE] = ACTIONS(5234), + [anon_sym_STAR] = ACTIONS(5234), + [anon_sym_AMP_AMP] = ACTIONS(5234), + [anon_sym_AMP] = ACTIONS(5232), + [anon_sym_SEMI] = ACTIONS(5234), + [anon_sym___extension__] = ACTIONS(5232), + [anon_sym_virtual] = ACTIONS(5232), + [anon_sym_extern] = ACTIONS(5232), + [anon_sym___attribute__] = ACTIONS(5232), + [anon_sym___attribute] = ACTIONS(5232), + [anon_sym_COLON_COLON] = ACTIONS(5234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5234), + [anon_sym___declspec] = ACTIONS(5232), + [anon_sym___based] = ACTIONS(5232), + [anon_sym___cdecl] = ACTIONS(5232), + [anon_sym___clrcall] = ACTIONS(5232), + [anon_sym___stdcall] = ACTIONS(5232), + [anon_sym___fastcall] = ACTIONS(5232), + [anon_sym___thiscall] = ACTIONS(5232), + [anon_sym___vectorcall] = ACTIONS(5232), + [anon_sym_LBRACE] = ACTIONS(5234), + [anon_sym_LBRACK] = ACTIONS(5232), + [anon_sym_static] = ACTIONS(5232), + [anon_sym_EQ] = ACTIONS(5234), + [anon_sym_register] = ACTIONS(5232), + [anon_sym_inline] = ACTIONS(5232), + [anon_sym___inline] = ACTIONS(5232), + [anon_sym___inline__] = ACTIONS(5232), + [anon_sym___forceinline] = ACTIONS(5232), + [anon_sym_thread_local] = ACTIONS(5232), + [anon_sym___thread] = ACTIONS(5232), + [anon_sym_const] = ACTIONS(5232), + [anon_sym_constexpr] = ACTIONS(5232), + [anon_sym_volatile] = ACTIONS(5232), + [anon_sym_restrict] = ACTIONS(5232), + [anon_sym___restrict__] = ACTIONS(5232), + [anon_sym__Atomic] = ACTIONS(5232), + [anon_sym__Noreturn] = ACTIONS(5232), + [anon_sym_noreturn] = ACTIONS(5232), + [anon_sym__Nonnull] = ACTIONS(5232), + [anon_sym_mutable] = ACTIONS(5232), + [anon_sym_constinit] = ACTIONS(5232), + [anon_sym_consteval] = ACTIONS(5232), + [anon_sym_alignas] = ACTIONS(5232), + [anon_sym__Alignas] = ACTIONS(5232), + [anon_sym_COLON] = ACTIONS(5232), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5232), + [anon_sym_final] = ACTIONS(5232), + [anon_sym_override] = ACTIONS(5232), + [anon_sym_explicit] = ACTIONS(5232), + [anon_sym_template] = ACTIONS(5232), + [anon_sym_GT2] = ACTIONS(5234), + [anon_sym_operator] = ACTIONS(5232), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5232), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5232), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5232), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5232), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5232), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5232), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5232), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5232), + [anon_sym_MOZ_COLD] = ACTIONS(5232), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5232), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5232), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5232), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5232), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5232), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5232), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5232), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5232), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5232), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5232), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5232), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5232), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5232), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5232), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5232), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5232), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5232), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5232), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5232), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5232), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5232), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5232), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5232), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5232), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5232), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5232), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5232), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5232), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5232), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5232), + [anon_sym_MOZ_NONNULL] = ACTIONS(5232), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5232), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5232), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5232), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5232), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5232), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5232), + [anon_sym_MOZ_NORETURN] = ACTIONS(5232), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5232), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5232), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5232), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5232), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5232), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5232), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5232), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5232), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5232), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5232), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5232), + [anon_sym_MOZ_RAII] = ACTIONS(5232), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5232), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5232), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5232), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5232), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5232), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5232), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5232), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5232), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5232), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5232), + }, + [STATE(1473)] = { + [sym_attribute_specifier] = STATE(1418), + [sym_field_declaration_list] = STATE(1579), + [sym_virtual_specifier] = STATE(7420), + [sym_base_class_clause] = STATE(8312), + [sym_identifier] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(5236), + [anon_sym___extension__] = ACTIONS(4986), + [anon_sym_virtual] = ACTIONS(4986), + [anon_sym_extern] = ACTIONS(4986), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4988), + [anon_sym___declspec] = ACTIONS(4986), + [anon_sym___based] = ACTIONS(4986), + [anon_sym___cdecl] = ACTIONS(4986), + [anon_sym___clrcall] = ACTIONS(4986), + [anon_sym___stdcall] = ACTIONS(4986), + [anon_sym___fastcall] = ACTIONS(4986), + [anon_sym___thiscall] = ACTIONS(4986), + [anon_sym___vectorcall] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_static] = ACTIONS(4986), + [anon_sym_register] = ACTIONS(4986), + [anon_sym_inline] = ACTIONS(4986), + [anon_sym___inline] = ACTIONS(4986), + [anon_sym___inline__] = ACTIONS(4986), + [anon_sym___forceinline] = ACTIONS(4986), + [anon_sym_thread_local] = ACTIONS(4986), + [anon_sym___thread] = ACTIONS(4986), + [anon_sym_const] = ACTIONS(4986), + [anon_sym_constexpr] = ACTIONS(4986), + [anon_sym_volatile] = ACTIONS(4986), + [anon_sym_restrict] = ACTIONS(4986), + [anon_sym___restrict__] = ACTIONS(4986), + [anon_sym__Atomic] = ACTIONS(4986), + [anon_sym__Noreturn] = ACTIONS(4986), + [anon_sym_noreturn] = ACTIONS(4986), + [anon_sym__Nonnull] = ACTIONS(4986), + [anon_sym_mutable] = ACTIONS(4986), + [anon_sym_constinit] = ACTIONS(4986), + [anon_sym_consteval] = ACTIONS(4986), + [anon_sym_alignas] = ACTIONS(4986), + [anon_sym__Alignas] = ACTIONS(4986), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4986), + [anon_sym_decltype] = ACTIONS(4986), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(4986), + [anon_sym_operator] = ACTIONS(4986), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4986), + [anon_sym_MOZ_COLD] = ACTIONS(4986), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4986), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4986), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4986), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4986), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4986), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4986), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4986), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4986), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4986), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4986), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4986), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4986), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_RAII] = ACTIONS(4986), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4986), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4986), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4986), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4986), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4986), + }, + [STATE(1474)] = { + [sym_attribute_specifier] = STATE(1418), + [sym_field_declaration_list] = STATE(1579), + [sym_virtual_specifier] = STATE(7420), + [sym_base_class_clause] = STATE(8312), + [sym_identifier] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(5238), + [anon_sym___extension__] = ACTIONS(4986), + [anon_sym_virtual] = ACTIONS(4986), + [anon_sym_extern] = ACTIONS(4986), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4988), + [anon_sym___declspec] = ACTIONS(4986), + [anon_sym___based] = ACTIONS(4986), + [anon_sym___cdecl] = ACTIONS(4986), + [anon_sym___clrcall] = ACTIONS(4986), + [anon_sym___stdcall] = ACTIONS(4986), + [anon_sym___fastcall] = ACTIONS(4986), + [anon_sym___thiscall] = ACTIONS(4986), + [anon_sym___vectorcall] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_static] = ACTIONS(4986), + [anon_sym_register] = ACTIONS(4986), + [anon_sym_inline] = ACTIONS(4986), + [anon_sym___inline] = ACTIONS(4986), + [anon_sym___inline__] = ACTIONS(4986), + [anon_sym___forceinline] = ACTIONS(4986), + [anon_sym_thread_local] = ACTIONS(4986), + [anon_sym___thread] = ACTIONS(4986), + [anon_sym_const] = ACTIONS(4986), + [anon_sym_constexpr] = ACTIONS(4986), + [anon_sym_volatile] = ACTIONS(4986), + [anon_sym_restrict] = ACTIONS(4986), + [anon_sym___restrict__] = ACTIONS(4986), + [anon_sym__Atomic] = ACTIONS(4986), + [anon_sym__Noreturn] = ACTIONS(4986), + [anon_sym_noreturn] = ACTIONS(4986), + [anon_sym__Nonnull] = ACTIONS(4986), + [anon_sym_mutable] = ACTIONS(4986), + [anon_sym_constinit] = ACTIONS(4986), + [anon_sym_consteval] = ACTIONS(4986), + [anon_sym_alignas] = ACTIONS(4986), + [anon_sym__Alignas] = ACTIONS(4986), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4986), + [anon_sym_decltype] = ACTIONS(4986), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(4986), + [anon_sym_operator] = ACTIONS(4986), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4986), + [anon_sym_MOZ_COLD] = ACTIONS(4986), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4986), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4986), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4986), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4986), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4986), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4986), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4986), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4986), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4986), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4986), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4986), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4986), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_RAII] = ACTIONS(4986), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4986), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4986), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4986), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4986), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4986), + }, + [STATE(1475)] = { + [sym_attribute_specifier] = STATE(1418), + [sym_field_declaration_list] = STATE(1579), + [sym_virtual_specifier] = STATE(7420), + [sym_base_class_clause] = STATE(8312), + [sym_identifier] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(5240), + [anon_sym___extension__] = ACTIONS(4986), + [anon_sym_virtual] = ACTIONS(4986), + [anon_sym_extern] = ACTIONS(4986), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4988), + [anon_sym___declspec] = ACTIONS(4986), + [anon_sym___based] = ACTIONS(4986), + [anon_sym___cdecl] = ACTIONS(4986), + [anon_sym___clrcall] = ACTIONS(4986), + [anon_sym___stdcall] = ACTIONS(4986), + [anon_sym___fastcall] = ACTIONS(4986), + [anon_sym___thiscall] = ACTIONS(4986), + [anon_sym___vectorcall] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_static] = ACTIONS(4986), + [anon_sym_register] = ACTIONS(4986), + [anon_sym_inline] = ACTIONS(4986), + [anon_sym___inline] = ACTIONS(4986), + [anon_sym___inline__] = ACTIONS(4986), + [anon_sym___forceinline] = ACTIONS(4986), + [anon_sym_thread_local] = ACTIONS(4986), + [anon_sym___thread] = ACTIONS(4986), + [anon_sym_const] = ACTIONS(4986), + [anon_sym_constexpr] = ACTIONS(4986), + [anon_sym_volatile] = ACTIONS(4986), + [anon_sym_restrict] = ACTIONS(4986), + [anon_sym___restrict__] = ACTIONS(4986), + [anon_sym__Atomic] = ACTIONS(4986), + [anon_sym__Noreturn] = ACTIONS(4986), + [anon_sym_noreturn] = ACTIONS(4986), + [anon_sym__Nonnull] = ACTIONS(4986), + [anon_sym_mutable] = ACTIONS(4986), + [anon_sym_constinit] = ACTIONS(4986), + [anon_sym_consteval] = ACTIONS(4986), + [anon_sym_alignas] = ACTIONS(4986), + [anon_sym__Alignas] = ACTIONS(4986), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4986), + [anon_sym_decltype] = ACTIONS(4986), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(4986), + [anon_sym_operator] = ACTIONS(4986), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4986), + [anon_sym_MOZ_COLD] = ACTIONS(4986), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4986), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4986), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4986), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4986), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4986), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4986), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4986), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4986), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4986), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4986), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4986), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4986), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_RAII] = ACTIONS(4986), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4986), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4986), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4986), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4986), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4986), + }, + [STATE(1476)] = { + [sym_attribute_specifier] = STATE(1418), + [sym_field_declaration_list] = STATE(1579), + [sym_virtual_specifier] = STATE(7420), + [sym_base_class_clause] = STATE(8312), + [sym_identifier] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(5242), + [anon_sym___extension__] = ACTIONS(4986), + [anon_sym_virtual] = ACTIONS(4986), + [anon_sym_extern] = ACTIONS(4986), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4988), + [anon_sym___declspec] = ACTIONS(4986), + [anon_sym___based] = ACTIONS(4986), + [anon_sym___cdecl] = ACTIONS(4986), + [anon_sym___clrcall] = ACTIONS(4986), + [anon_sym___stdcall] = ACTIONS(4986), + [anon_sym___fastcall] = ACTIONS(4986), + [anon_sym___thiscall] = ACTIONS(4986), + [anon_sym___vectorcall] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_static] = ACTIONS(4986), + [anon_sym_register] = ACTIONS(4986), + [anon_sym_inline] = ACTIONS(4986), + [anon_sym___inline] = ACTIONS(4986), + [anon_sym___inline__] = ACTIONS(4986), + [anon_sym___forceinline] = ACTIONS(4986), + [anon_sym_thread_local] = ACTIONS(4986), + [anon_sym___thread] = ACTIONS(4986), + [anon_sym_const] = ACTIONS(4986), + [anon_sym_constexpr] = ACTIONS(4986), + [anon_sym_volatile] = ACTIONS(4986), + [anon_sym_restrict] = ACTIONS(4986), + [anon_sym___restrict__] = ACTIONS(4986), + [anon_sym__Atomic] = ACTIONS(4986), + [anon_sym__Noreturn] = ACTIONS(4986), + [anon_sym_noreturn] = ACTIONS(4986), + [anon_sym__Nonnull] = ACTIONS(4986), + [anon_sym_mutable] = ACTIONS(4986), + [anon_sym_constinit] = ACTIONS(4986), + [anon_sym_consteval] = ACTIONS(4986), + [anon_sym_alignas] = ACTIONS(4986), + [anon_sym__Alignas] = ACTIONS(4986), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4986), + [anon_sym_decltype] = ACTIONS(4986), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(4986), + [anon_sym_operator] = ACTIONS(4986), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4986), + [anon_sym_MOZ_COLD] = ACTIONS(4986), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4986), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4986), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4986), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4986), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4986), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4986), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4986), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4986), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4986), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4986), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4986), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4986), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_RAII] = ACTIONS(4986), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4986), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4986), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4986), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4986), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4986), + }, + [STATE(1477)] = { + [sym_attribute_specifier] = STATE(1418), + [sym_field_declaration_list] = STATE(1579), + [sym_virtual_specifier] = STATE(7420), + [sym_base_class_clause] = STATE(8312), + [sym_identifier] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(5244), + [anon_sym___extension__] = ACTIONS(4986), + [anon_sym_virtual] = ACTIONS(4986), + [anon_sym_extern] = ACTIONS(4986), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4988), + [anon_sym___declspec] = ACTIONS(4986), + [anon_sym___based] = ACTIONS(4986), + [anon_sym___cdecl] = ACTIONS(4986), + [anon_sym___clrcall] = ACTIONS(4986), + [anon_sym___stdcall] = ACTIONS(4986), + [anon_sym___fastcall] = ACTIONS(4986), + [anon_sym___thiscall] = ACTIONS(4986), + [anon_sym___vectorcall] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_static] = ACTIONS(4986), + [anon_sym_register] = ACTIONS(4986), + [anon_sym_inline] = ACTIONS(4986), + [anon_sym___inline] = ACTIONS(4986), + [anon_sym___inline__] = ACTIONS(4986), + [anon_sym___forceinline] = ACTIONS(4986), + [anon_sym_thread_local] = ACTIONS(4986), + [anon_sym___thread] = ACTIONS(4986), + [anon_sym_const] = ACTIONS(4986), + [anon_sym_constexpr] = ACTIONS(4986), + [anon_sym_volatile] = ACTIONS(4986), + [anon_sym_restrict] = ACTIONS(4986), + [anon_sym___restrict__] = ACTIONS(4986), + [anon_sym__Atomic] = ACTIONS(4986), + [anon_sym__Noreturn] = ACTIONS(4986), + [anon_sym_noreturn] = ACTIONS(4986), + [anon_sym__Nonnull] = ACTIONS(4986), + [anon_sym_mutable] = ACTIONS(4986), + [anon_sym_constinit] = ACTIONS(4986), + [anon_sym_consteval] = ACTIONS(4986), + [anon_sym_alignas] = ACTIONS(4986), + [anon_sym__Alignas] = ACTIONS(4986), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4986), + [anon_sym_decltype] = ACTIONS(4986), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(4986), + [anon_sym_operator] = ACTIONS(4986), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4986), + [anon_sym_MOZ_COLD] = ACTIONS(4986), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4986), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4986), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4986), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4986), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4986), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4986), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4986), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4986), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4986), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4986), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4986), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4986), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_RAII] = ACTIONS(4986), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4986), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4986), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4986), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4986), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4986), + }, + [STATE(1478)] = { + [sym_attribute_specifier] = STATE(1375), + [sym_enumerator_list] = STATE(1568), + [sym_identifier] = ACTIONS(5246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5248), + [anon_sym_COMMA] = ACTIONS(5248), + [anon_sym_RPAREN] = ACTIONS(5248), + [anon_sym_LPAREN2] = ACTIONS(5248), + [anon_sym_TILDE] = ACTIONS(5248), + [anon_sym_STAR] = ACTIONS(5248), + [anon_sym_AMP_AMP] = ACTIONS(5248), + [anon_sym_AMP] = ACTIONS(5246), + [anon_sym_SEMI] = ACTIONS(5248), + [anon_sym___extension__] = ACTIONS(5246), + [anon_sym_virtual] = ACTIONS(5246), + [anon_sym_extern] = ACTIONS(5246), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(5248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5248), + [anon_sym___declspec] = ACTIONS(5246), + [anon_sym___based] = ACTIONS(5246), + [anon_sym___cdecl] = ACTIONS(5246), + [anon_sym___clrcall] = ACTIONS(5246), + [anon_sym___stdcall] = ACTIONS(5246), + [anon_sym___fastcall] = ACTIONS(5246), + [anon_sym___thiscall] = ACTIONS(5246), + [anon_sym___vectorcall] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(5250), + [anon_sym_LBRACK] = ACTIONS(5246), + [anon_sym_static] = ACTIONS(5246), + [anon_sym_EQ] = ACTIONS(5248), + [anon_sym_register] = ACTIONS(5246), + [anon_sym_inline] = ACTIONS(5246), + [anon_sym___inline] = ACTIONS(5246), + [anon_sym___inline__] = ACTIONS(5246), + [anon_sym___forceinline] = ACTIONS(5246), + [anon_sym_thread_local] = ACTIONS(5246), + [anon_sym___thread] = ACTIONS(5246), + [anon_sym_const] = ACTIONS(5246), + [anon_sym_constexpr] = ACTIONS(5246), + [anon_sym_volatile] = ACTIONS(5246), + [anon_sym_restrict] = ACTIONS(5246), + [anon_sym___restrict__] = ACTIONS(5246), + [anon_sym__Atomic] = ACTIONS(5246), + [anon_sym__Noreturn] = ACTIONS(5246), + [anon_sym_noreturn] = ACTIONS(5246), + [anon_sym__Nonnull] = ACTIONS(5246), + [anon_sym_mutable] = ACTIONS(5246), + [anon_sym_constinit] = ACTIONS(5246), + [anon_sym_consteval] = ACTIONS(5246), + [anon_sym_alignas] = ACTIONS(5246), + [anon_sym__Alignas] = ACTIONS(5246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5246), + [anon_sym_decltype] = ACTIONS(5246), + [anon_sym_template] = ACTIONS(5246), + [anon_sym_GT2] = ACTIONS(5248), + [anon_sym_operator] = ACTIONS(5246), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5246), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5246), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5246), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5246), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5246), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5246), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5246), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5246), + [anon_sym_MOZ_COLD] = ACTIONS(5246), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5246), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5246), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5246), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5246), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5246), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5246), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5246), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5246), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5246), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5246), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5246), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5246), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5246), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5246), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5246), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5246), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5246), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5246), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5246), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5246), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5246), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5246), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5246), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5246), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5246), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5246), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5246), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5246), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5246), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5246), + [anon_sym_MOZ_NONNULL] = ACTIONS(5246), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5246), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5246), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5246), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5246), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5246), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5246), + [anon_sym_MOZ_NORETURN] = ACTIONS(5246), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5246), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5246), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5246), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5246), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5246), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5246), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5246), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5246), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5246), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5246), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5246), + [anon_sym_MOZ_RAII] = ACTIONS(5246), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5246), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5246), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5246), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5246), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5246), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5246), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5246), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5246), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5246), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5246), + }, + [STATE(1479)] = { + [sym_attribute_specifier] = STATE(1418), + [sym_field_declaration_list] = STATE(1579), + [sym_virtual_specifier] = STATE(7420), + [sym_base_class_clause] = STATE(8312), + [sym_identifier] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(5252), + [anon_sym___extension__] = ACTIONS(4986), + [anon_sym_virtual] = ACTIONS(4986), + [anon_sym_extern] = ACTIONS(4986), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4988), + [anon_sym___declspec] = ACTIONS(4986), + [anon_sym___based] = ACTIONS(4986), + [anon_sym___cdecl] = ACTIONS(4986), + [anon_sym___clrcall] = ACTIONS(4986), + [anon_sym___stdcall] = ACTIONS(4986), + [anon_sym___fastcall] = ACTIONS(4986), + [anon_sym___thiscall] = ACTIONS(4986), + [anon_sym___vectorcall] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_static] = ACTIONS(4986), + [anon_sym_register] = ACTIONS(4986), + [anon_sym_inline] = ACTIONS(4986), + [anon_sym___inline] = ACTIONS(4986), + [anon_sym___inline__] = ACTIONS(4986), + [anon_sym___forceinline] = ACTIONS(4986), + [anon_sym_thread_local] = ACTIONS(4986), + [anon_sym___thread] = ACTIONS(4986), + [anon_sym_const] = ACTIONS(4986), + [anon_sym_constexpr] = ACTIONS(4986), + [anon_sym_volatile] = ACTIONS(4986), + [anon_sym_restrict] = ACTIONS(4986), + [anon_sym___restrict__] = ACTIONS(4986), + [anon_sym__Atomic] = ACTIONS(4986), + [anon_sym__Noreturn] = ACTIONS(4986), + [anon_sym_noreturn] = ACTIONS(4986), + [anon_sym__Nonnull] = ACTIONS(4986), + [anon_sym_mutable] = ACTIONS(4986), + [anon_sym_constinit] = ACTIONS(4986), + [anon_sym_consteval] = ACTIONS(4986), + [anon_sym_alignas] = ACTIONS(4986), + [anon_sym__Alignas] = ACTIONS(4986), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4986), + [anon_sym_decltype] = ACTIONS(4986), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(4986), + [anon_sym_operator] = ACTIONS(4986), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4986), + [anon_sym_MOZ_COLD] = ACTIONS(4986), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4986), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4986), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4986), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4986), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4986), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4986), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4986), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4986), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4986), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4986), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4986), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4986), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_RAII] = ACTIONS(4986), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4986), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4986), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4986), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4986), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4986), + }, + [STATE(1480)] = { + [sym_attribute_specifier] = STATE(1418), + [sym_field_declaration_list] = STATE(1579), + [sym_virtual_specifier] = STATE(7420), + [sym_base_class_clause] = STATE(8312), + [sym_identifier] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(5254), + [anon_sym___extension__] = ACTIONS(4986), + [anon_sym_virtual] = ACTIONS(4986), + [anon_sym_extern] = ACTIONS(4986), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4988), + [anon_sym___declspec] = ACTIONS(4986), + [anon_sym___based] = ACTIONS(4986), + [anon_sym___cdecl] = ACTIONS(4986), + [anon_sym___clrcall] = ACTIONS(4986), + [anon_sym___stdcall] = ACTIONS(4986), + [anon_sym___fastcall] = ACTIONS(4986), + [anon_sym___thiscall] = ACTIONS(4986), + [anon_sym___vectorcall] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_static] = ACTIONS(4986), + [anon_sym_register] = ACTIONS(4986), + [anon_sym_inline] = ACTIONS(4986), + [anon_sym___inline] = ACTIONS(4986), + [anon_sym___inline__] = ACTIONS(4986), + [anon_sym___forceinline] = ACTIONS(4986), + [anon_sym_thread_local] = ACTIONS(4986), + [anon_sym___thread] = ACTIONS(4986), + [anon_sym_const] = ACTIONS(4986), + [anon_sym_constexpr] = ACTIONS(4986), + [anon_sym_volatile] = ACTIONS(4986), + [anon_sym_restrict] = ACTIONS(4986), + [anon_sym___restrict__] = ACTIONS(4986), + [anon_sym__Atomic] = ACTIONS(4986), + [anon_sym__Noreturn] = ACTIONS(4986), + [anon_sym_noreturn] = ACTIONS(4986), + [anon_sym__Nonnull] = ACTIONS(4986), + [anon_sym_mutable] = ACTIONS(4986), + [anon_sym_constinit] = ACTIONS(4986), + [anon_sym_consteval] = ACTIONS(4986), + [anon_sym_alignas] = ACTIONS(4986), + [anon_sym__Alignas] = ACTIONS(4986), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4986), + [anon_sym_decltype] = ACTIONS(4986), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(4986), + [anon_sym_operator] = ACTIONS(4986), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4986), + [anon_sym_MOZ_COLD] = ACTIONS(4986), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4986), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4986), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4986), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4986), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4986), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4986), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4986), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4986), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4986), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4986), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4986), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4986), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_RAII] = ACTIONS(4986), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4986), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4986), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4986), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4986), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4986), + }, + [STATE(1481)] = { + [sym_attribute_specifier] = STATE(1418), + [sym_field_declaration_list] = STATE(1579), + [sym_virtual_specifier] = STATE(7420), + [sym_base_class_clause] = STATE(8312), + [sym_identifier] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(5256), + [anon_sym___extension__] = ACTIONS(4986), + [anon_sym_virtual] = ACTIONS(4986), + [anon_sym_extern] = ACTIONS(4986), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4988), + [anon_sym___declspec] = ACTIONS(4986), + [anon_sym___based] = ACTIONS(4986), + [anon_sym___cdecl] = ACTIONS(4986), + [anon_sym___clrcall] = ACTIONS(4986), + [anon_sym___stdcall] = ACTIONS(4986), + [anon_sym___fastcall] = ACTIONS(4986), + [anon_sym___thiscall] = ACTIONS(4986), + [anon_sym___vectorcall] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_static] = ACTIONS(4986), + [anon_sym_register] = ACTIONS(4986), + [anon_sym_inline] = ACTIONS(4986), + [anon_sym___inline] = ACTIONS(4986), + [anon_sym___inline__] = ACTIONS(4986), + [anon_sym___forceinline] = ACTIONS(4986), + [anon_sym_thread_local] = ACTIONS(4986), + [anon_sym___thread] = ACTIONS(4986), + [anon_sym_const] = ACTIONS(4986), + [anon_sym_constexpr] = ACTIONS(4986), + [anon_sym_volatile] = ACTIONS(4986), + [anon_sym_restrict] = ACTIONS(4986), + [anon_sym___restrict__] = ACTIONS(4986), + [anon_sym__Atomic] = ACTIONS(4986), + [anon_sym__Noreturn] = ACTIONS(4986), + [anon_sym_noreturn] = ACTIONS(4986), + [anon_sym__Nonnull] = ACTIONS(4986), + [anon_sym_mutable] = ACTIONS(4986), + [anon_sym_constinit] = ACTIONS(4986), + [anon_sym_consteval] = ACTIONS(4986), + [anon_sym_alignas] = ACTIONS(4986), + [anon_sym__Alignas] = ACTIONS(4986), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4986), + [anon_sym_decltype] = ACTIONS(4986), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(4986), + [anon_sym_operator] = ACTIONS(4986), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4986), + [anon_sym_MOZ_COLD] = ACTIONS(4986), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4986), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4986), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4986), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4986), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4986), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4986), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4986), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4986), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4986), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4986), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4986), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4986), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_RAII] = ACTIONS(4986), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4986), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4986), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4986), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4986), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4986), + }, + [STATE(1482)] = { + [sym_identifier] = ACTIONS(4735), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4737), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_STAR] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_SEMI] = ACTIONS(4737), + [anon_sym___extension__] = ACTIONS(4735), + [anon_sym_virtual] = ACTIONS(4735), + [anon_sym_extern] = ACTIONS(4735), + [anon_sym___attribute__] = ACTIONS(4735), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4737), + [anon_sym___declspec] = ACTIONS(4735), + [anon_sym___based] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4737), + [anon_sym_signed] = ACTIONS(4735), + [anon_sym_unsigned] = ACTIONS(4735), + [anon_sym_long] = ACTIONS(4735), + [anon_sym_short] = ACTIONS(4735), + [anon_sym_LBRACK] = ACTIONS(4735), + [anon_sym_static] = ACTIONS(4735), + [anon_sym_EQ] = ACTIONS(4737), + [anon_sym_register] = ACTIONS(4735), + [anon_sym_inline] = ACTIONS(4735), + [anon_sym___inline] = ACTIONS(4735), + [anon_sym___inline__] = ACTIONS(4735), + [anon_sym___forceinline] = ACTIONS(4735), + [anon_sym_thread_local] = ACTIONS(4735), + [anon_sym___thread] = ACTIONS(4735), + [anon_sym_const] = ACTIONS(4735), + [anon_sym_constexpr] = ACTIONS(4735), + [anon_sym_volatile] = ACTIONS(4735), + [anon_sym_restrict] = ACTIONS(4735), + [anon_sym___restrict__] = ACTIONS(4735), + [anon_sym__Atomic] = ACTIONS(4735), + [anon_sym__Noreturn] = ACTIONS(4735), + [anon_sym_noreturn] = ACTIONS(4735), + [anon_sym__Nonnull] = ACTIONS(4735), + [anon_sym_mutable] = ACTIONS(4735), + [anon_sym_constinit] = ACTIONS(4735), + [anon_sym_consteval] = ACTIONS(4735), + [anon_sym_alignas] = ACTIONS(4735), + [anon_sym__Alignas] = ACTIONS(4735), + [sym_primitive_type] = ACTIONS(4735), + [anon_sym_COLON] = ACTIONS(4737), + [anon_sym_asm] = ACTIONS(4735), + [anon_sym___asm__] = ACTIONS(4735), + [anon_sym___asm] = ACTIONS(4735), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4735), + [anon_sym_decltype] = ACTIONS(4735), + [anon_sym_final] = ACTIONS(4735), + [anon_sym_override] = ACTIONS(4735), + [anon_sym_GT2] = ACTIONS(4737), + [anon_sym_try] = ACTIONS(4735), + [anon_sym_requires] = ACTIONS(4735), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4735), + [anon_sym_MOZ_COLD] = ACTIONS(4735), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4735), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4735), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4735), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4735), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4735), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4735), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4735), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4735), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4735), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4735), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4735), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4735), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_RAII] = ACTIONS(4735), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4735), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4735), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4735), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4735), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4735), + }, + [STATE(1483)] = { + [sym_attribute_specifier] = STATE(1418), + [sym_field_declaration_list] = STATE(1579), + [sym_virtual_specifier] = STATE(7420), + [sym_base_class_clause] = STATE(8312), + [sym_identifier] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(5258), + [anon_sym___extension__] = ACTIONS(4986), + [anon_sym_virtual] = ACTIONS(4986), + [anon_sym_extern] = ACTIONS(4986), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4988), + [anon_sym___declspec] = ACTIONS(4986), + [anon_sym___based] = ACTIONS(4986), + [anon_sym___cdecl] = ACTIONS(4986), + [anon_sym___clrcall] = ACTIONS(4986), + [anon_sym___stdcall] = ACTIONS(4986), + [anon_sym___fastcall] = ACTIONS(4986), + [anon_sym___thiscall] = ACTIONS(4986), + [anon_sym___vectorcall] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_static] = ACTIONS(4986), + [anon_sym_register] = ACTIONS(4986), + [anon_sym_inline] = ACTIONS(4986), + [anon_sym___inline] = ACTIONS(4986), + [anon_sym___inline__] = ACTIONS(4986), + [anon_sym___forceinline] = ACTIONS(4986), + [anon_sym_thread_local] = ACTIONS(4986), + [anon_sym___thread] = ACTIONS(4986), + [anon_sym_const] = ACTIONS(4986), + [anon_sym_constexpr] = ACTIONS(4986), + [anon_sym_volatile] = ACTIONS(4986), + [anon_sym_restrict] = ACTIONS(4986), + [anon_sym___restrict__] = ACTIONS(4986), + [anon_sym__Atomic] = ACTIONS(4986), + [anon_sym__Noreturn] = ACTIONS(4986), + [anon_sym_noreturn] = ACTIONS(4986), + [anon_sym__Nonnull] = ACTIONS(4986), + [anon_sym_mutable] = ACTIONS(4986), + [anon_sym_constinit] = ACTIONS(4986), + [anon_sym_consteval] = ACTIONS(4986), + [anon_sym_alignas] = ACTIONS(4986), + [anon_sym__Alignas] = ACTIONS(4986), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4986), + [anon_sym_decltype] = ACTIONS(4986), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(4986), + [anon_sym_operator] = ACTIONS(4986), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4986), + [anon_sym_MOZ_COLD] = ACTIONS(4986), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4986), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4986), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4986), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4986), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4986), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4986), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4986), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4986), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4986), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4986), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4986), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4986), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_RAII] = ACTIONS(4986), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4986), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4986), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4986), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4986), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4986), + }, + [STATE(1484)] = { + [sym_attribute_specifier] = STATE(1418), + [sym_field_declaration_list] = STATE(1579), + [sym_virtual_specifier] = STATE(7420), + [sym_base_class_clause] = STATE(8312), + [sym_identifier] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(5260), + [anon_sym___extension__] = ACTIONS(4986), + [anon_sym_virtual] = ACTIONS(4986), + [anon_sym_extern] = ACTIONS(4986), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4988), + [anon_sym___declspec] = ACTIONS(4986), + [anon_sym___based] = ACTIONS(4986), + [anon_sym___cdecl] = ACTIONS(4986), + [anon_sym___clrcall] = ACTIONS(4986), + [anon_sym___stdcall] = ACTIONS(4986), + [anon_sym___fastcall] = ACTIONS(4986), + [anon_sym___thiscall] = ACTIONS(4986), + [anon_sym___vectorcall] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_static] = ACTIONS(4986), + [anon_sym_register] = ACTIONS(4986), + [anon_sym_inline] = ACTIONS(4986), + [anon_sym___inline] = ACTIONS(4986), + [anon_sym___inline__] = ACTIONS(4986), + [anon_sym___forceinline] = ACTIONS(4986), + [anon_sym_thread_local] = ACTIONS(4986), + [anon_sym___thread] = ACTIONS(4986), + [anon_sym_const] = ACTIONS(4986), + [anon_sym_constexpr] = ACTIONS(4986), + [anon_sym_volatile] = ACTIONS(4986), + [anon_sym_restrict] = ACTIONS(4986), + [anon_sym___restrict__] = ACTIONS(4986), + [anon_sym__Atomic] = ACTIONS(4986), + [anon_sym__Noreturn] = ACTIONS(4986), + [anon_sym_noreturn] = ACTIONS(4986), + [anon_sym__Nonnull] = ACTIONS(4986), + [anon_sym_mutable] = ACTIONS(4986), + [anon_sym_constinit] = ACTIONS(4986), + [anon_sym_consteval] = ACTIONS(4986), + [anon_sym_alignas] = ACTIONS(4986), + [anon_sym__Alignas] = ACTIONS(4986), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4986), + [anon_sym_decltype] = ACTIONS(4986), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(4986), + [anon_sym_operator] = ACTIONS(4986), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4986), + [anon_sym_MOZ_COLD] = ACTIONS(4986), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4986), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4986), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4986), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4986), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4986), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4986), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4986), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4986), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4986), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4986), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4986), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4986), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_RAII] = ACTIONS(4986), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4986), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4986), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4986), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4986), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4986), + }, + [STATE(1485)] = { + [sym_attribute_specifier] = STATE(1418), + [sym_field_declaration_list] = STATE(1579), + [sym_virtual_specifier] = STATE(7420), + [sym_base_class_clause] = STATE(8312), + [sym_identifier] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(5262), + [anon_sym___extension__] = ACTIONS(4986), + [anon_sym_virtual] = ACTIONS(4986), + [anon_sym_extern] = ACTIONS(4986), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4988), + [anon_sym___declspec] = ACTIONS(4986), + [anon_sym___based] = ACTIONS(4986), + [anon_sym___cdecl] = ACTIONS(4986), + [anon_sym___clrcall] = ACTIONS(4986), + [anon_sym___stdcall] = ACTIONS(4986), + [anon_sym___fastcall] = ACTIONS(4986), + [anon_sym___thiscall] = ACTIONS(4986), + [anon_sym___vectorcall] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_static] = ACTIONS(4986), + [anon_sym_register] = ACTIONS(4986), + [anon_sym_inline] = ACTIONS(4986), + [anon_sym___inline] = ACTIONS(4986), + [anon_sym___inline__] = ACTIONS(4986), + [anon_sym___forceinline] = ACTIONS(4986), + [anon_sym_thread_local] = ACTIONS(4986), + [anon_sym___thread] = ACTIONS(4986), + [anon_sym_const] = ACTIONS(4986), + [anon_sym_constexpr] = ACTIONS(4986), + [anon_sym_volatile] = ACTIONS(4986), + [anon_sym_restrict] = ACTIONS(4986), + [anon_sym___restrict__] = ACTIONS(4986), + [anon_sym__Atomic] = ACTIONS(4986), + [anon_sym__Noreturn] = ACTIONS(4986), + [anon_sym_noreturn] = ACTIONS(4986), + [anon_sym__Nonnull] = ACTIONS(4986), + [anon_sym_mutable] = ACTIONS(4986), + [anon_sym_constinit] = ACTIONS(4986), + [anon_sym_consteval] = ACTIONS(4986), + [anon_sym_alignas] = ACTIONS(4986), + [anon_sym__Alignas] = ACTIONS(4986), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4986), + [anon_sym_decltype] = ACTIONS(4986), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(4986), + [anon_sym_operator] = ACTIONS(4986), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4986), + [anon_sym_MOZ_COLD] = ACTIONS(4986), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4986), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4986), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4986), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4986), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4986), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4986), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4986), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4986), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4986), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4986), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4986), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4986), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_RAII] = ACTIONS(4986), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4986), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4986), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4986), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4986), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4986), + }, + [STATE(1486)] = { + [sym_template_argument_list] = STATE(917), + [aux_sym_sized_type_specifier_repeat1] = STATE(1610), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_RPAREN] = ACTIONS(5072), + [anon_sym_LPAREN2] = ACTIONS(5072), + [anon_sym_STAR] = ACTIONS(5072), + [anon_sym_AMP_AMP] = ACTIONS(5072), + [anon_sym_AMP] = ACTIONS(5070), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(5072), + [anon_sym___extension__] = ACTIONS(5072), + [anon_sym_virtual] = ACTIONS(5072), + [anon_sym_extern] = ACTIONS(5072), + [anon_sym___attribute__] = ACTIONS(5072), + [anon_sym___attribute] = ACTIONS(5070), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5072), + [anon_sym___declspec] = ACTIONS(5072), + [anon_sym_LBRACE] = ACTIONS(5072), + [anon_sym_signed] = ACTIONS(5264), + [anon_sym_unsigned] = ACTIONS(5264), + [anon_sym_long] = ACTIONS(5264), + [anon_sym_short] = ACTIONS(5264), + [anon_sym_LBRACK] = ACTIONS(5070), + [anon_sym_static] = ACTIONS(5072), + [anon_sym_EQ] = ACTIONS(5072), + [anon_sym_register] = ACTIONS(5072), + [anon_sym_inline] = ACTIONS(5072), + [anon_sym___inline] = ACTIONS(5070), + [anon_sym___inline__] = ACTIONS(5072), + [anon_sym___forceinline] = ACTIONS(5072), + [anon_sym_thread_local] = ACTIONS(5072), + [anon_sym___thread] = ACTIONS(5072), + [anon_sym_const] = ACTIONS(5070), + [anon_sym_constexpr] = ACTIONS(5072), + [anon_sym_volatile] = ACTIONS(5072), + [anon_sym_restrict] = ACTIONS(5072), + [anon_sym___restrict__] = ACTIONS(5072), + [anon_sym__Atomic] = ACTIONS(5072), + [anon_sym__Noreturn] = ACTIONS(5072), + [anon_sym_noreturn] = ACTIONS(5072), + [anon_sym__Nonnull] = ACTIONS(5072), + [anon_sym_mutable] = ACTIONS(5072), + [anon_sym_constinit] = ACTIONS(5072), + [anon_sym_consteval] = ACTIONS(5072), + [anon_sym_alignas] = ACTIONS(5072), + [anon_sym__Alignas] = ACTIONS(5072), + [anon_sym_asm] = ACTIONS(5072), + [anon_sym___asm__] = ACTIONS(5072), + [anon_sym___asm] = ACTIONS(5070), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5072), + [anon_sym_decltype] = ACTIONS(5072), + [anon_sym_final] = ACTIONS(5072), + [anon_sym_override] = ACTIONS(5072), + [anon_sym_GT2] = ACTIONS(5072), + [anon_sym_try] = ACTIONS(5072), + [anon_sym_requires] = ACTIONS(5072), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5072), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5072), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5070), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5072), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5072), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5070), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5072), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5072), + [anon_sym_MOZ_COLD] = ACTIONS(5072), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5072), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5072), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5072), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5072), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5072), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5070), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5072), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5072), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5072), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5072), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5072), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5072), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5072), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5072), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5072), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5072), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5072), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5072), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5072), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5072), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5072), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5072), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5070), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5072), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5072), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5072), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5072), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5070), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5072), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5072), + [anon_sym_MOZ_NONNULL] = ACTIONS(5070), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5072), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5072), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5072), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5072), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5072), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5072), + [anon_sym_MOZ_NORETURN] = ACTIONS(5070), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5072), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5072), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5072), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5072), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5072), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5072), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5072), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5072), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5072), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5072), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5072), + [anon_sym_MOZ_RAII] = ACTIONS(5072), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5072), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5072), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5072), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5072), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5072), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5072), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5072), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5072), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5072), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5072), + }, + [STATE(1487)] = { + [sym_attribute_specifier] = STATE(1368), + [sym_enumerator_list] = STATE(1572), + [sym_identifier] = ACTIONS(5266), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5268), + [anon_sym_COMMA] = ACTIONS(5268), + [anon_sym_RPAREN] = ACTIONS(5268), + [anon_sym_LPAREN2] = ACTIONS(5268), + [anon_sym_TILDE] = ACTIONS(5268), + [anon_sym_STAR] = ACTIONS(5268), + [anon_sym_AMP_AMP] = ACTIONS(5268), + [anon_sym_AMP] = ACTIONS(5266), + [anon_sym_SEMI] = ACTIONS(5268), + [anon_sym___extension__] = ACTIONS(5266), + [anon_sym_virtual] = ACTIONS(5266), + [anon_sym_extern] = ACTIONS(5266), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(5268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5268), + [anon_sym___declspec] = ACTIONS(5266), + [anon_sym___based] = ACTIONS(5266), + [anon_sym___cdecl] = ACTIONS(5266), + [anon_sym___clrcall] = ACTIONS(5266), + [anon_sym___stdcall] = ACTIONS(5266), + [anon_sym___fastcall] = ACTIONS(5266), + [anon_sym___thiscall] = ACTIONS(5266), + [anon_sym___vectorcall] = ACTIONS(5266), + [anon_sym_LBRACE] = ACTIONS(5250), + [anon_sym_LBRACK] = ACTIONS(5266), + [anon_sym_static] = ACTIONS(5266), + [anon_sym_EQ] = ACTIONS(5268), + [anon_sym_register] = ACTIONS(5266), + [anon_sym_inline] = ACTIONS(5266), + [anon_sym___inline] = ACTIONS(5266), + [anon_sym___inline__] = ACTIONS(5266), + [anon_sym___forceinline] = ACTIONS(5266), + [anon_sym_thread_local] = ACTIONS(5266), + [anon_sym___thread] = ACTIONS(5266), + [anon_sym_const] = ACTIONS(5266), + [anon_sym_constexpr] = ACTIONS(5266), + [anon_sym_volatile] = ACTIONS(5266), + [anon_sym_restrict] = ACTIONS(5266), + [anon_sym___restrict__] = ACTIONS(5266), + [anon_sym__Atomic] = ACTIONS(5266), + [anon_sym__Noreturn] = ACTIONS(5266), + [anon_sym_noreturn] = ACTIONS(5266), + [anon_sym__Nonnull] = ACTIONS(5266), + [anon_sym_mutable] = ACTIONS(5266), + [anon_sym_constinit] = ACTIONS(5266), + [anon_sym_consteval] = ACTIONS(5266), + [anon_sym_alignas] = ACTIONS(5266), + [anon_sym__Alignas] = ACTIONS(5266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5266), + [anon_sym_decltype] = ACTIONS(5266), + [anon_sym_template] = ACTIONS(5266), + [anon_sym_GT2] = ACTIONS(5268), + [anon_sym_operator] = ACTIONS(5266), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5266), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5266), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5266), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5266), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5266), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5266), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5266), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5266), + [anon_sym_MOZ_COLD] = ACTIONS(5266), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5266), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5266), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5266), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5266), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5266), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5266), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5266), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5266), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5266), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5266), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5266), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5266), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5266), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5266), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5266), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5266), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5266), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5266), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5266), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5266), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5266), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5266), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5266), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5266), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5266), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5266), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5266), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5266), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5266), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5266), + [anon_sym_MOZ_NONNULL] = ACTIONS(5266), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5266), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5266), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5266), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5266), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5266), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5266), + [anon_sym_MOZ_NORETURN] = ACTIONS(5266), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5266), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5266), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5266), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5266), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5266), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5266), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5266), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5266), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5266), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5266), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5266), + [anon_sym_MOZ_RAII] = ACTIONS(5266), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5266), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5266), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5266), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5266), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5266), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5266), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5266), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5266), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5266), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5266), + }, + [STATE(1488)] = { + [sym_attribute_specifier] = STATE(1418), + [sym_field_declaration_list] = STATE(1579), + [sym_virtual_specifier] = STATE(7420), + [sym_base_class_clause] = STATE(8312), + [sym_identifier] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(5270), + [anon_sym___extension__] = ACTIONS(4986), + [anon_sym_virtual] = ACTIONS(4986), + [anon_sym_extern] = ACTIONS(4986), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4988), + [anon_sym___declspec] = ACTIONS(4986), + [anon_sym___based] = ACTIONS(4986), + [anon_sym___cdecl] = ACTIONS(4986), + [anon_sym___clrcall] = ACTIONS(4986), + [anon_sym___stdcall] = ACTIONS(4986), + [anon_sym___fastcall] = ACTIONS(4986), + [anon_sym___thiscall] = ACTIONS(4986), + [anon_sym___vectorcall] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_static] = ACTIONS(4986), + [anon_sym_register] = ACTIONS(4986), + [anon_sym_inline] = ACTIONS(4986), + [anon_sym___inline] = ACTIONS(4986), + [anon_sym___inline__] = ACTIONS(4986), + [anon_sym___forceinline] = ACTIONS(4986), + [anon_sym_thread_local] = ACTIONS(4986), + [anon_sym___thread] = ACTIONS(4986), + [anon_sym_const] = ACTIONS(4986), + [anon_sym_constexpr] = ACTIONS(4986), + [anon_sym_volatile] = ACTIONS(4986), + [anon_sym_restrict] = ACTIONS(4986), + [anon_sym___restrict__] = ACTIONS(4986), + [anon_sym__Atomic] = ACTIONS(4986), + [anon_sym__Noreturn] = ACTIONS(4986), + [anon_sym_noreturn] = ACTIONS(4986), + [anon_sym__Nonnull] = ACTIONS(4986), + [anon_sym_mutable] = ACTIONS(4986), + [anon_sym_constinit] = ACTIONS(4986), + [anon_sym_consteval] = ACTIONS(4986), + [anon_sym_alignas] = ACTIONS(4986), + [anon_sym__Alignas] = ACTIONS(4986), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4986), + [anon_sym_decltype] = ACTIONS(4986), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(4986), + [anon_sym_operator] = ACTIONS(4986), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4986), + [anon_sym_MOZ_COLD] = ACTIONS(4986), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4986), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4986), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4986), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4986), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4986), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4986), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4986), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4986), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4986), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4986), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4986), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4986), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_RAII] = ACTIONS(4986), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4986), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4986), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4986), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4986), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4986), + }, + [STATE(1489)] = { + [sym_attribute_specifier] = STATE(1418), + [sym_field_declaration_list] = STATE(1579), + [sym_virtual_specifier] = STATE(7420), + [sym_base_class_clause] = STATE(8312), + [sym_identifier] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(5272), + [anon_sym___extension__] = ACTIONS(4986), + [anon_sym_virtual] = ACTIONS(4986), + [anon_sym_extern] = ACTIONS(4986), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4988), + [anon_sym___declspec] = ACTIONS(4986), + [anon_sym___based] = ACTIONS(4986), + [anon_sym___cdecl] = ACTIONS(4986), + [anon_sym___clrcall] = ACTIONS(4986), + [anon_sym___stdcall] = ACTIONS(4986), + [anon_sym___fastcall] = ACTIONS(4986), + [anon_sym___thiscall] = ACTIONS(4986), + [anon_sym___vectorcall] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_static] = ACTIONS(4986), + [anon_sym_register] = ACTIONS(4986), + [anon_sym_inline] = ACTIONS(4986), + [anon_sym___inline] = ACTIONS(4986), + [anon_sym___inline__] = ACTIONS(4986), + [anon_sym___forceinline] = ACTIONS(4986), + [anon_sym_thread_local] = ACTIONS(4986), + [anon_sym___thread] = ACTIONS(4986), + [anon_sym_const] = ACTIONS(4986), + [anon_sym_constexpr] = ACTIONS(4986), + [anon_sym_volatile] = ACTIONS(4986), + [anon_sym_restrict] = ACTIONS(4986), + [anon_sym___restrict__] = ACTIONS(4986), + [anon_sym__Atomic] = ACTIONS(4986), + [anon_sym__Noreturn] = ACTIONS(4986), + [anon_sym_noreturn] = ACTIONS(4986), + [anon_sym__Nonnull] = ACTIONS(4986), + [anon_sym_mutable] = ACTIONS(4986), + [anon_sym_constinit] = ACTIONS(4986), + [anon_sym_consteval] = ACTIONS(4986), + [anon_sym_alignas] = ACTIONS(4986), + [anon_sym__Alignas] = ACTIONS(4986), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4986), + [anon_sym_decltype] = ACTIONS(4986), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(4986), + [anon_sym_operator] = ACTIONS(4986), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4986), + [anon_sym_MOZ_COLD] = ACTIONS(4986), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4986), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4986), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4986), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4986), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4986), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4986), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4986), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4986), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4986), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4986), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4986), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4986), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_RAII] = ACTIONS(4986), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4986), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4986), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4986), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4986), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4986), + }, + [STATE(1490)] = { + [sym_attribute_specifier] = STATE(1418), + [sym_field_declaration_list] = STATE(1579), + [sym_virtual_specifier] = STATE(7420), + [sym_base_class_clause] = STATE(8312), + [sym_identifier] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(5274), + [anon_sym___extension__] = ACTIONS(4986), + [anon_sym_virtual] = ACTIONS(4986), + [anon_sym_extern] = ACTIONS(4986), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(4988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4988), + [anon_sym___declspec] = ACTIONS(4986), + [anon_sym___based] = ACTIONS(4986), + [anon_sym___cdecl] = ACTIONS(4986), + [anon_sym___clrcall] = ACTIONS(4986), + [anon_sym___stdcall] = ACTIONS(4986), + [anon_sym___fastcall] = ACTIONS(4986), + [anon_sym___thiscall] = ACTIONS(4986), + [anon_sym___vectorcall] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_static] = ACTIONS(4986), + [anon_sym_register] = ACTIONS(4986), + [anon_sym_inline] = ACTIONS(4986), + [anon_sym___inline] = ACTIONS(4986), + [anon_sym___inline__] = ACTIONS(4986), + [anon_sym___forceinline] = ACTIONS(4986), + [anon_sym_thread_local] = ACTIONS(4986), + [anon_sym___thread] = ACTIONS(4986), + [anon_sym_const] = ACTIONS(4986), + [anon_sym_constexpr] = ACTIONS(4986), + [anon_sym_volatile] = ACTIONS(4986), + [anon_sym_restrict] = ACTIONS(4986), + [anon_sym___restrict__] = ACTIONS(4986), + [anon_sym__Atomic] = ACTIONS(4986), + [anon_sym__Noreturn] = ACTIONS(4986), + [anon_sym_noreturn] = ACTIONS(4986), + [anon_sym__Nonnull] = ACTIONS(4986), + [anon_sym_mutable] = ACTIONS(4986), + [anon_sym_constinit] = ACTIONS(4986), + [anon_sym_consteval] = ACTIONS(4986), + [anon_sym_alignas] = ACTIONS(4986), + [anon_sym__Alignas] = ACTIONS(4986), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4986), + [anon_sym_decltype] = ACTIONS(4986), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(4986), + [anon_sym_operator] = ACTIONS(4986), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4986), + [anon_sym_MOZ_COLD] = ACTIONS(4986), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4986), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4986), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4986), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4986), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4986), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4986), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4986), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4986), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4986), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4986), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4986), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4986), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_RAII] = ACTIONS(4986), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4986), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4986), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4986), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4986), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4986), + }, + [STATE(1491)] = { + [sym_template_argument_list] = STATE(1469), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_COMMA] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), + [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_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(1492)] = { + [sym_expression] = STATE(4730), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7856), + [sym_initializer_pair] = STATE(7856), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(5276), + [anon_sym_COMMA] = ACTIONS(5278), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(5280), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1493)] = { + [sym_field_declaration_list] = STATE(1401), + [sym_virtual_specifier] = STATE(7276), + [sym_base_class_clause] = STATE(8218), + [sym_identifier] = ACTIONS(5124), + [anon_sym_LPAREN2] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(5274), + [anon_sym___extension__] = ACTIONS(5124), + [anon_sym_virtual] = ACTIONS(5124), + [anon_sym_extern] = ACTIONS(5124), + [anon_sym___attribute__] = ACTIONS(5124), + [anon_sym___attribute] = ACTIONS(5124), + [anon_sym_COLON_COLON] = ACTIONS(5126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5126), + [anon_sym___declspec] = ACTIONS(5124), + [anon_sym___based] = ACTIONS(5124), + [anon_sym___cdecl] = ACTIONS(5124), + [anon_sym___clrcall] = ACTIONS(5124), + [anon_sym___stdcall] = ACTIONS(5124), + [anon_sym___fastcall] = ACTIONS(5124), + [anon_sym___thiscall] = ACTIONS(5124), + [anon_sym___vectorcall] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_static] = ACTIONS(5124), + [anon_sym_register] = ACTIONS(5124), + [anon_sym_inline] = ACTIONS(5124), + [anon_sym___inline] = ACTIONS(5124), + [anon_sym___inline__] = ACTIONS(5124), + [anon_sym___forceinline] = ACTIONS(5124), + [anon_sym_thread_local] = ACTIONS(5124), + [anon_sym___thread] = ACTIONS(5124), + [anon_sym_const] = ACTIONS(5124), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym_noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_mutable] = ACTIONS(5124), + [anon_sym_constinit] = ACTIONS(5124), + [anon_sym_consteval] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5124), + [anon_sym__Alignas] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5124), + [anon_sym_decltype] = ACTIONS(5124), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5124), + [anon_sym_operator] = ACTIONS(5124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5124), + [anon_sym_MOZ_COLD] = ACTIONS(5124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_RAII] = ACTIONS(5124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5124), + }, + [STATE(1494)] = { + [sym_expression_statement] = STATE(2420), + [sym_expression] = STATE(4879), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8578), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_type_requirement] = STATE(1498), + [sym_compound_requirement] = STATE(1498), + [sym__requirement] = STATE(1498), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_requirement_seq_repeat1] = STATE(1498), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5288), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_typename] = ACTIONS(5290), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1495)] = { + [sym_template_argument_list] = STATE(1469), + [sym_identifier] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym___extension__] = ACTIONS(4529), + [anon_sym_virtual] = ACTIONS(4529), + [anon_sym_extern] = ACTIONS(4529), + [anon_sym___attribute__] = ACTIONS(4529), + [anon_sym___attribute] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3113), + [anon_sym___declspec] = ACTIONS(4529), + [anon_sym___based] = ACTIONS(4529), + [anon_sym___cdecl] = ACTIONS(4529), + [anon_sym___clrcall] = ACTIONS(4529), + [anon_sym___stdcall] = ACTIONS(4529), + [anon_sym___fastcall] = ACTIONS(4529), + [anon_sym___thiscall] = ACTIONS(4529), + [anon_sym___vectorcall] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_static] = ACTIONS(4529), + [anon_sym_register] = ACTIONS(4529), + [anon_sym_inline] = ACTIONS(4529), + [anon_sym___inline] = ACTIONS(4529), + [anon_sym___inline__] = ACTIONS(4529), + [anon_sym___forceinline] = ACTIONS(4529), + [anon_sym_thread_local] = ACTIONS(4529), + [anon_sym___thread] = ACTIONS(4529), + [anon_sym_const] = ACTIONS(4529), + [anon_sym_constexpr] = ACTIONS(4529), + [anon_sym_volatile] = ACTIONS(4529), + [anon_sym_restrict] = ACTIONS(4529), + [anon_sym___restrict__] = ACTIONS(4529), + [anon_sym__Atomic] = ACTIONS(4529), + [anon_sym__Noreturn] = ACTIONS(4529), + [anon_sym_noreturn] = ACTIONS(4529), + [anon_sym__Nonnull] = ACTIONS(4529), + [anon_sym_mutable] = ACTIONS(4529), + [anon_sym_constinit] = ACTIONS(4529), + [anon_sym_consteval] = ACTIONS(4529), + [anon_sym_alignas] = ACTIONS(4529), + [anon_sym__Alignas] = ACTIONS(4529), + [anon_sym_COLON] = ACTIONS(4529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4529), + [anon_sym_decltype] = ACTIONS(4529), + [anon_sym_final] = ACTIONS(4529), + [anon_sym_override] = ACTIONS(4529), + [anon_sym_template] = ACTIONS(4529), + [anon_sym_operator] = ACTIONS(4529), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4529), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4529), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4529), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4529), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4529), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4529), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4529), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4529), + [anon_sym_MOZ_COLD] = ACTIONS(4529), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4529), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4529), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4529), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4529), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4529), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4529), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4529), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4529), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4529), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4529), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4529), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4529), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4529), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4529), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4529), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4529), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4529), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4529), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4529), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4529), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_NONNULL] = ACTIONS(4529), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4529), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4529), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4529), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4529), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4529), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_NORETURN] = ACTIONS(4529), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4529), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4529), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4529), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4529), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4529), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4529), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4529), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4529), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4529), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4529), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4529), + [anon_sym_MOZ_RAII] = ACTIONS(4529), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4529), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4529), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4529), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4529), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4529), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4529), + }, + [STATE(1496)] = { + [sym_expression] = STATE(4725), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7884), + [sym_initializer_pair] = STATE(7884), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(5276), + [anon_sym_COMMA] = ACTIONS(5292), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(5294), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1497)] = { + [sym_expression_statement] = STATE(2420), + [sym_expression] = STATE(4879), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8578), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_type_requirement] = STATE(1550), + [sym_compound_requirement] = STATE(1550), + [sym__requirement] = STATE(1550), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_requirement_seq_repeat1] = STATE(1550), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5296), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_typename] = ACTIONS(5290), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1498)] = { + [sym_expression_statement] = STATE(2420), + [sym_expression] = STATE(4879), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8578), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_type_requirement] = STATE(1550), + [sym_compound_requirement] = STATE(1550), + [sym__requirement] = STATE(1550), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_requirement_seq_repeat1] = STATE(1550), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5298), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_typename] = ACTIONS(5290), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1499)] = { + [sym_field_declaration_list] = STATE(1406), + [sym_virtual_specifier] = STATE(7390), + [sym_base_class_clause] = STATE(8075), + [sym_identifier] = ACTIONS(5120), + [anon_sym_COMMA] = ACTIONS(5122), + [anon_sym_RPAREN] = ACTIONS(5122), + [anon_sym_LPAREN2] = ACTIONS(5122), + [anon_sym_STAR] = ACTIONS(5122), + [anon_sym_AMP_AMP] = ACTIONS(5122), + [anon_sym_AMP] = ACTIONS(5120), + [anon_sym_SEMI] = ACTIONS(5122), + [anon_sym___extension__] = ACTIONS(5120), + [anon_sym_virtual] = ACTIONS(5120), + [anon_sym_extern] = ACTIONS(5120), + [anon_sym___attribute__] = ACTIONS(5120), + [anon_sym___attribute] = ACTIONS(5120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5122), + [anon_sym___declspec] = ACTIONS(5120), + [anon_sym___based] = ACTIONS(5120), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_static] = ACTIONS(5120), + [anon_sym_EQ] = ACTIONS(5122), + [anon_sym_register] = ACTIONS(5120), + [anon_sym_inline] = ACTIONS(5120), + [anon_sym___inline] = ACTIONS(5120), + [anon_sym___inline__] = ACTIONS(5120), + [anon_sym___forceinline] = ACTIONS(5120), + [anon_sym_thread_local] = ACTIONS(5120), + [anon_sym___thread] = ACTIONS(5120), + [anon_sym_const] = ACTIONS(5120), + [anon_sym_constexpr] = ACTIONS(5120), + [anon_sym_volatile] = ACTIONS(5120), + [anon_sym_restrict] = ACTIONS(5120), + [anon_sym___restrict__] = ACTIONS(5120), + [anon_sym__Atomic] = ACTIONS(5120), + [anon_sym__Noreturn] = ACTIONS(5120), + [anon_sym_noreturn] = ACTIONS(5120), + [anon_sym__Nonnull] = ACTIONS(5120), + [anon_sym_mutable] = ACTIONS(5120), + [anon_sym_constinit] = ACTIONS(5120), + [anon_sym_consteval] = ACTIONS(5120), + [anon_sym_alignas] = ACTIONS(5120), + [anon_sym__Alignas] = ACTIONS(5120), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_asm] = ACTIONS(5120), + [anon_sym___asm__] = ACTIONS(5120), + [anon_sym___asm] = ACTIONS(5120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5120), + [anon_sym_decltype] = ACTIONS(5120), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_GT2] = ACTIONS(5122), + [anon_sym_operator] = ACTIONS(5120), + [anon_sym_try] = ACTIONS(5120), + [anon_sym_requires] = ACTIONS(5120), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5120), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5120), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5120), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5120), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5120), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5120), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5120), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5120), + [anon_sym_MOZ_COLD] = ACTIONS(5120), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5120), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5120), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5120), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5120), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5120), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5120), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5120), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5120), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5120), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5120), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5120), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5120), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5120), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5120), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5120), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5120), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5120), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5120), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5120), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5120), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5120), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5120), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5120), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5120), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5120), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5120), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5120), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5120), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5120), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5120), + [anon_sym_MOZ_NONNULL] = ACTIONS(5120), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5120), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5120), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5120), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5120), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5120), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5120), + [anon_sym_MOZ_NORETURN] = ACTIONS(5120), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5120), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5120), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5120), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5120), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5120), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5120), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5120), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5120), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5120), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5120), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5120), + [anon_sym_MOZ_RAII] = ACTIONS(5120), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5120), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5120), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5120), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5120), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5120), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5120), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5120), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5120), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5120), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5120), + }, + [STATE(1500)] = { + [sym_expression_statement] = STATE(2420), + [sym_expression] = STATE(4879), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8578), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_type_requirement] = STATE(1497), + [sym_compound_requirement] = STATE(1497), + [sym__requirement] = STATE(1497), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_requirement_seq_repeat1] = STATE(1497), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5302), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_typename] = ACTIONS(5290), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1501)] = { + [sym_field_declaration_list] = STATE(1401), + [sym_virtual_specifier] = STATE(7276), + [sym_base_class_clause] = STATE(8218), + [sym_identifier] = ACTIONS(5124), + [anon_sym_LPAREN2] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(5262), + [anon_sym___extension__] = ACTIONS(5124), + [anon_sym_virtual] = ACTIONS(5124), + [anon_sym_extern] = ACTIONS(5124), + [anon_sym___attribute__] = ACTIONS(5124), + [anon_sym___attribute] = ACTIONS(5124), + [anon_sym_COLON_COLON] = ACTIONS(5126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5126), + [anon_sym___declspec] = ACTIONS(5124), + [anon_sym___based] = ACTIONS(5124), + [anon_sym___cdecl] = ACTIONS(5124), + [anon_sym___clrcall] = ACTIONS(5124), + [anon_sym___stdcall] = ACTIONS(5124), + [anon_sym___fastcall] = ACTIONS(5124), + [anon_sym___thiscall] = ACTIONS(5124), + [anon_sym___vectorcall] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_static] = ACTIONS(5124), + [anon_sym_register] = ACTIONS(5124), + [anon_sym_inline] = ACTIONS(5124), + [anon_sym___inline] = ACTIONS(5124), + [anon_sym___inline__] = ACTIONS(5124), + [anon_sym___forceinline] = ACTIONS(5124), + [anon_sym_thread_local] = ACTIONS(5124), + [anon_sym___thread] = ACTIONS(5124), + [anon_sym_const] = ACTIONS(5124), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym_noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_mutable] = ACTIONS(5124), + [anon_sym_constinit] = ACTIONS(5124), + [anon_sym_consteval] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5124), + [anon_sym__Alignas] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5124), + [anon_sym_decltype] = ACTIONS(5124), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5124), + [anon_sym_operator] = ACTIONS(5124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5124), + [anon_sym_MOZ_COLD] = ACTIONS(5124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_RAII] = ACTIONS(5124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5124), + }, + [STATE(1502)] = { + [sym_field_declaration_list] = STATE(1413), + [sym_virtual_specifier] = STATE(7370), + [sym_base_class_clause] = STATE(8271), + [sym_identifier] = ACTIONS(5134), + [anon_sym_LPAREN2] = ACTIONS(5136), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_AMP_AMP] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_SEMI] = ACTIONS(5262), + [anon_sym___extension__] = ACTIONS(5134), + [anon_sym_virtual] = ACTIONS(5134), + [anon_sym_extern] = ACTIONS(5134), + [anon_sym___attribute__] = ACTIONS(5134), + [anon_sym___attribute] = ACTIONS(5134), + [anon_sym_COLON_COLON] = ACTIONS(5136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5136), + [anon_sym___declspec] = ACTIONS(5134), + [anon_sym___based] = ACTIONS(5134), + [anon_sym___cdecl] = ACTIONS(5134), + [anon_sym___clrcall] = ACTIONS(5134), + [anon_sym___stdcall] = ACTIONS(5134), + [anon_sym___fastcall] = ACTIONS(5134), + [anon_sym___thiscall] = ACTIONS(5134), + [anon_sym___vectorcall] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_static] = ACTIONS(5134), + [anon_sym_register] = ACTIONS(5134), + [anon_sym_inline] = ACTIONS(5134), + [anon_sym___inline] = ACTIONS(5134), + [anon_sym___inline__] = ACTIONS(5134), + [anon_sym___forceinline] = ACTIONS(5134), + [anon_sym_thread_local] = ACTIONS(5134), + [anon_sym___thread] = ACTIONS(5134), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_constexpr] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_restrict] = ACTIONS(5134), + [anon_sym___restrict__] = ACTIONS(5134), + [anon_sym__Atomic] = ACTIONS(5134), + [anon_sym__Noreturn] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym__Nonnull] = ACTIONS(5134), + [anon_sym_mutable] = ACTIONS(5134), + [anon_sym_constinit] = ACTIONS(5134), + [anon_sym_consteval] = ACTIONS(5134), + [anon_sym_alignas] = ACTIONS(5134), + [anon_sym__Alignas] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5134), + [anon_sym_decltype] = ACTIONS(5134), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5134), + [anon_sym_operator] = ACTIONS(5134), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5134), + [anon_sym_MOZ_COLD] = ACTIONS(5134), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5134), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5134), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5134), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5134), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5134), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5134), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5134), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5134), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5134), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5134), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5134), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5134), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_RAII] = ACTIONS(5134), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5134), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5134), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5134), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5134), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5134), + }, + [STATE(1503)] = { + [sym_field_declaration_list] = STATE(1401), + [sym_virtual_specifier] = STATE(7276), + [sym_base_class_clause] = STATE(8218), + [sym_identifier] = ACTIONS(5124), + [anon_sym_LPAREN2] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(5242), + [anon_sym___extension__] = ACTIONS(5124), + [anon_sym_virtual] = ACTIONS(5124), + [anon_sym_extern] = ACTIONS(5124), + [anon_sym___attribute__] = ACTIONS(5124), + [anon_sym___attribute] = ACTIONS(5124), + [anon_sym_COLON_COLON] = ACTIONS(5126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5126), + [anon_sym___declspec] = ACTIONS(5124), + [anon_sym___based] = ACTIONS(5124), + [anon_sym___cdecl] = ACTIONS(5124), + [anon_sym___clrcall] = ACTIONS(5124), + [anon_sym___stdcall] = ACTIONS(5124), + [anon_sym___fastcall] = ACTIONS(5124), + [anon_sym___thiscall] = ACTIONS(5124), + [anon_sym___vectorcall] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_static] = ACTIONS(5124), + [anon_sym_register] = ACTIONS(5124), + [anon_sym_inline] = ACTIONS(5124), + [anon_sym___inline] = ACTIONS(5124), + [anon_sym___inline__] = ACTIONS(5124), + [anon_sym___forceinline] = ACTIONS(5124), + [anon_sym_thread_local] = ACTIONS(5124), + [anon_sym___thread] = ACTIONS(5124), + [anon_sym_const] = ACTIONS(5124), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym_noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_mutable] = ACTIONS(5124), + [anon_sym_constinit] = ACTIONS(5124), + [anon_sym_consteval] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5124), + [anon_sym__Alignas] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5124), + [anon_sym_decltype] = ACTIONS(5124), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5124), + [anon_sym_operator] = ACTIONS(5124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5124), + [anon_sym_MOZ_COLD] = ACTIONS(5124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_RAII] = ACTIONS(5124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5124), + }, + [STATE(1504)] = { + [sym_field_declaration_list] = STATE(1413), + [sym_virtual_specifier] = STATE(7370), + [sym_base_class_clause] = STATE(8271), + [sym_identifier] = ACTIONS(5134), + [anon_sym_LPAREN2] = ACTIONS(5136), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_AMP_AMP] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_SEMI] = ACTIONS(5242), + [anon_sym___extension__] = ACTIONS(5134), + [anon_sym_virtual] = ACTIONS(5134), + [anon_sym_extern] = ACTIONS(5134), + [anon_sym___attribute__] = ACTIONS(5134), + [anon_sym___attribute] = ACTIONS(5134), + [anon_sym_COLON_COLON] = ACTIONS(5136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5136), + [anon_sym___declspec] = ACTIONS(5134), + [anon_sym___based] = ACTIONS(5134), + [anon_sym___cdecl] = ACTIONS(5134), + [anon_sym___clrcall] = ACTIONS(5134), + [anon_sym___stdcall] = ACTIONS(5134), + [anon_sym___fastcall] = ACTIONS(5134), + [anon_sym___thiscall] = ACTIONS(5134), + [anon_sym___vectorcall] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_static] = ACTIONS(5134), + [anon_sym_register] = ACTIONS(5134), + [anon_sym_inline] = ACTIONS(5134), + [anon_sym___inline] = ACTIONS(5134), + [anon_sym___inline__] = ACTIONS(5134), + [anon_sym___forceinline] = ACTIONS(5134), + [anon_sym_thread_local] = ACTIONS(5134), + [anon_sym___thread] = ACTIONS(5134), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_constexpr] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_restrict] = ACTIONS(5134), + [anon_sym___restrict__] = ACTIONS(5134), + [anon_sym__Atomic] = ACTIONS(5134), + [anon_sym__Noreturn] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym__Nonnull] = ACTIONS(5134), + [anon_sym_mutable] = ACTIONS(5134), + [anon_sym_constinit] = ACTIONS(5134), + [anon_sym_consteval] = ACTIONS(5134), + [anon_sym_alignas] = ACTIONS(5134), + [anon_sym__Alignas] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5134), + [anon_sym_decltype] = ACTIONS(5134), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5134), + [anon_sym_operator] = ACTIONS(5134), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5134), + [anon_sym_MOZ_COLD] = ACTIONS(5134), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5134), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5134), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5134), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5134), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5134), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5134), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5134), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5134), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5134), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5134), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5134), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5134), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_RAII] = ACTIONS(5134), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5134), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5134), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5134), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5134), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5134), + }, + [STATE(1505)] = { + [sym_field_declaration_list] = STATE(1409), + [sym_virtual_specifier] = STATE(7344), + [sym_base_class_clause] = STATE(8373), + [sym_identifier] = ACTIONS(5116), + [anon_sym_COMMA] = ACTIONS(5118), + [anon_sym_RPAREN] = ACTIONS(5118), + [anon_sym_LPAREN2] = ACTIONS(5118), + [anon_sym_STAR] = ACTIONS(5118), + [anon_sym_AMP_AMP] = ACTIONS(5118), + [anon_sym_AMP] = ACTIONS(5116), + [anon_sym_SEMI] = ACTIONS(5118), + [anon_sym___extension__] = ACTIONS(5116), + [anon_sym_virtual] = ACTIONS(5116), + [anon_sym_extern] = ACTIONS(5116), + [anon_sym___attribute__] = ACTIONS(5116), + [anon_sym___attribute] = ACTIONS(5116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5118), + [anon_sym___declspec] = ACTIONS(5116), + [anon_sym___based] = ACTIONS(5116), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_static] = ACTIONS(5116), + [anon_sym_EQ] = ACTIONS(5118), + [anon_sym_register] = ACTIONS(5116), + [anon_sym_inline] = ACTIONS(5116), + [anon_sym___inline] = ACTIONS(5116), + [anon_sym___inline__] = ACTIONS(5116), + [anon_sym___forceinline] = ACTIONS(5116), + [anon_sym_thread_local] = ACTIONS(5116), + [anon_sym___thread] = ACTIONS(5116), + [anon_sym_const] = ACTIONS(5116), + [anon_sym_constexpr] = ACTIONS(5116), + [anon_sym_volatile] = ACTIONS(5116), + [anon_sym_restrict] = ACTIONS(5116), + [anon_sym___restrict__] = ACTIONS(5116), + [anon_sym__Atomic] = ACTIONS(5116), + [anon_sym__Noreturn] = ACTIONS(5116), + [anon_sym_noreturn] = ACTIONS(5116), + [anon_sym__Nonnull] = ACTIONS(5116), + [anon_sym_mutable] = ACTIONS(5116), + [anon_sym_constinit] = ACTIONS(5116), + [anon_sym_consteval] = ACTIONS(5116), + [anon_sym_alignas] = ACTIONS(5116), + [anon_sym__Alignas] = ACTIONS(5116), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_asm] = ACTIONS(5116), + [anon_sym___asm__] = ACTIONS(5116), + [anon_sym___asm] = ACTIONS(5116), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5116), + [anon_sym_decltype] = ACTIONS(5116), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_GT2] = ACTIONS(5118), + [anon_sym_operator] = ACTIONS(5116), + [anon_sym_try] = ACTIONS(5116), + [anon_sym_requires] = ACTIONS(5116), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5116), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5116), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5116), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5116), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5116), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5116), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5116), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5116), + [anon_sym_MOZ_COLD] = ACTIONS(5116), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5116), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5116), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5116), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5116), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5116), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5116), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5116), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5116), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5116), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5116), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5116), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5116), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5116), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5116), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5116), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5116), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5116), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5116), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5116), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5116), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5116), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5116), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5116), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5116), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5116), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5116), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5116), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5116), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5116), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5116), + [anon_sym_MOZ_NONNULL] = ACTIONS(5116), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5116), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5116), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5116), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5116), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5116), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5116), + [anon_sym_MOZ_NORETURN] = ACTIONS(5116), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5116), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5116), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5116), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5116), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5116), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5116), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5116), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5116), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5116), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5116), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5116), + [anon_sym_MOZ_RAII] = ACTIONS(5116), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5116), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5116), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5116), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5116), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5116), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5116), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5116), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5116), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5116), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5116), + }, + [STATE(1506)] = { + [sym_expression_statement] = STATE(2420), + [sym_expression] = STATE(4879), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8578), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_type_requirement] = STATE(1521), + [sym_compound_requirement] = STATE(1521), + [sym__requirement] = STATE(1521), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_requirement_seq_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5304), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_typename] = ACTIONS(5290), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1507)] = { + [sym_expression] = STATE(4655), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7533), + [sym_initializer_pair] = STATE(7533), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(5276), + [anon_sym_COMMA] = ACTIONS(5306), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(5308), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1508)] = { + [sym_template_argument_list] = STATE(1469), + [sym_identifier] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(3279), + [anon_sym_LPAREN2] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3279), + [anon_sym_AMP_AMP] = ACTIONS(3279), + [anon_sym_AMP] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym___extension__] = ACTIONS(3272), + [anon_sym_virtual] = ACTIONS(3272), + [anon_sym_extern] = ACTIONS(3272), + [anon_sym___attribute__] = ACTIONS(3272), + [anon_sym___attribute] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3279), + [anon_sym___declspec] = ACTIONS(3272), + [anon_sym___based] = ACTIONS(3272), + [anon_sym___cdecl] = ACTIONS(3272), + [anon_sym___clrcall] = ACTIONS(3272), + [anon_sym___stdcall] = ACTIONS(3272), + [anon_sym___fastcall] = ACTIONS(3272), + [anon_sym___thiscall] = ACTIONS(3272), + [anon_sym___vectorcall] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_register] = ACTIONS(3272), + [anon_sym_inline] = ACTIONS(3272), + [anon_sym___inline] = ACTIONS(3272), + [anon_sym___inline__] = ACTIONS(3272), + [anon_sym___forceinline] = ACTIONS(3272), + [anon_sym_thread_local] = ACTIONS(3272), + [anon_sym___thread] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_constexpr] = ACTIONS(3272), + [anon_sym_volatile] = ACTIONS(3272), + [anon_sym_restrict] = ACTIONS(3272), + [anon_sym___restrict__] = ACTIONS(3272), + [anon_sym__Atomic] = ACTIONS(3272), + [anon_sym__Noreturn] = ACTIONS(3272), + [anon_sym_noreturn] = ACTIONS(3272), + [anon_sym__Nonnull] = ACTIONS(3272), + [anon_sym_mutable] = ACTIONS(3272), + [anon_sym_constinit] = ACTIONS(3272), + [anon_sym_consteval] = ACTIONS(3272), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3272), + [anon_sym_decltype] = ACTIONS(3272), + [anon_sym_final] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_template] = ACTIONS(3272), + [anon_sym_operator] = ACTIONS(3272), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3272), + [anon_sym_MOZ_COLD] = ACTIONS(3272), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3272), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3272), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3272), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3272), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3272), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3272), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3272), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3272), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3272), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3272), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3272), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3272), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_RAII] = ACTIONS(3272), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3272), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3272), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3272), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3272), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3272), + }, + [STATE(1509)] = { + [sym_expression_statement] = STATE(2420), + [sym_expression] = STATE(4879), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8578), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_type_requirement] = STATE(1511), + [sym_compound_requirement] = STATE(1511), + [sym__requirement] = STATE(1511), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_requirement_seq_repeat1] = STATE(1511), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5310), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_typename] = ACTIONS(5290), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1510)] = { + [sym_expression] = STATE(4667), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(7719), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7964), + [sym_initializer_pair] = STATE(7964), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(5276), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(5312), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1511)] = { + [sym_expression_statement] = STATE(2420), + [sym_expression] = STATE(4879), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8578), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_type_requirement] = STATE(1550), + [sym_compound_requirement] = STATE(1550), + [sym__requirement] = STATE(1550), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_requirement_seq_repeat1] = STATE(1550), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5314), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_typename] = ACTIONS(5290), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1512)] = { + [sym_field_declaration_list] = STATE(1401), + [sym_virtual_specifier] = STATE(7276), + [sym_base_class_clause] = STATE(8218), + [sym_identifier] = ACTIONS(5124), + [anon_sym_LPAREN2] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(5240), + [anon_sym___extension__] = ACTIONS(5124), + [anon_sym_virtual] = ACTIONS(5124), + [anon_sym_extern] = ACTIONS(5124), + [anon_sym___attribute__] = ACTIONS(5124), + [anon_sym___attribute] = ACTIONS(5124), + [anon_sym_COLON_COLON] = ACTIONS(5126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5126), + [anon_sym___declspec] = ACTIONS(5124), + [anon_sym___based] = ACTIONS(5124), + [anon_sym___cdecl] = ACTIONS(5124), + [anon_sym___clrcall] = ACTIONS(5124), + [anon_sym___stdcall] = ACTIONS(5124), + [anon_sym___fastcall] = ACTIONS(5124), + [anon_sym___thiscall] = ACTIONS(5124), + [anon_sym___vectorcall] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_static] = ACTIONS(5124), + [anon_sym_register] = ACTIONS(5124), + [anon_sym_inline] = ACTIONS(5124), + [anon_sym___inline] = ACTIONS(5124), + [anon_sym___inline__] = ACTIONS(5124), + [anon_sym___forceinline] = ACTIONS(5124), + [anon_sym_thread_local] = ACTIONS(5124), + [anon_sym___thread] = ACTIONS(5124), + [anon_sym_const] = ACTIONS(5124), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym_noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_mutable] = ACTIONS(5124), + [anon_sym_constinit] = ACTIONS(5124), + [anon_sym_consteval] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5124), + [anon_sym__Alignas] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5124), + [anon_sym_decltype] = ACTIONS(5124), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5124), + [anon_sym_operator] = ACTIONS(5124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5124), + [anon_sym_MOZ_COLD] = ACTIONS(5124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_RAII] = ACTIONS(5124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5124), + }, + [STATE(1513)] = { + [sym_field_declaration_list] = STATE(1413), + [sym_virtual_specifier] = STATE(7370), + [sym_base_class_clause] = STATE(8271), + [sym_identifier] = ACTIONS(5134), + [anon_sym_LPAREN2] = ACTIONS(5136), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_AMP_AMP] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_SEMI] = ACTIONS(5240), + [anon_sym___extension__] = ACTIONS(5134), + [anon_sym_virtual] = ACTIONS(5134), + [anon_sym_extern] = ACTIONS(5134), + [anon_sym___attribute__] = ACTIONS(5134), + [anon_sym___attribute] = ACTIONS(5134), + [anon_sym_COLON_COLON] = ACTIONS(5136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5136), + [anon_sym___declspec] = ACTIONS(5134), + [anon_sym___based] = ACTIONS(5134), + [anon_sym___cdecl] = ACTIONS(5134), + [anon_sym___clrcall] = ACTIONS(5134), + [anon_sym___stdcall] = ACTIONS(5134), + [anon_sym___fastcall] = ACTIONS(5134), + [anon_sym___thiscall] = ACTIONS(5134), + [anon_sym___vectorcall] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_static] = ACTIONS(5134), + [anon_sym_register] = ACTIONS(5134), + [anon_sym_inline] = ACTIONS(5134), + [anon_sym___inline] = ACTIONS(5134), + [anon_sym___inline__] = ACTIONS(5134), + [anon_sym___forceinline] = ACTIONS(5134), + [anon_sym_thread_local] = ACTIONS(5134), + [anon_sym___thread] = ACTIONS(5134), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_constexpr] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_restrict] = ACTIONS(5134), + [anon_sym___restrict__] = ACTIONS(5134), + [anon_sym__Atomic] = ACTIONS(5134), + [anon_sym__Noreturn] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym__Nonnull] = ACTIONS(5134), + [anon_sym_mutable] = ACTIONS(5134), + [anon_sym_constinit] = ACTIONS(5134), + [anon_sym_consteval] = ACTIONS(5134), + [anon_sym_alignas] = ACTIONS(5134), + [anon_sym__Alignas] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5134), + [anon_sym_decltype] = ACTIONS(5134), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5134), + [anon_sym_operator] = ACTIONS(5134), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5134), + [anon_sym_MOZ_COLD] = ACTIONS(5134), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5134), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5134), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5134), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5134), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5134), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5134), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5134), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5134), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5134), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5134), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5134), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5134), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_RAII] = ACTIONS(5134), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5134), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5134), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5134), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5134), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5134), + }, + [STATE(1514)] = { + [sym_field_declaration_list] = STATE(1401), + [sym_virtual_specifier] = STATE(7276), + [sym_base_class_clause] = STATE(8218), + [sym_identifier] = ACTIONS(5124), + [anon_sym_LPAREN2] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(5258), + [anon_sym___extension__] = ACTIONS(5124), + [anon_sym_virtual] = ACTIONS(5124), + [anon_sym_extern] = ACTIONS(5124), + [anon_sym___attribute__] = ACTIONS(5124), + [anon_sym___attribute] = ACTIONS(5124), + [anon_sym_COLON_COLON] = ACTIONS(5126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5126), + [anon_sym___declspec] = ACTIONS(5124), + [anon_sym___based] = ACTIONS(5124), + [anon_sym___cdecl] = ACTIONS(5124), + [anon_sym___clrcall] = ACTIONS(5124), + [anon_sym___stdcall] = ACTIONS(5124), + [anon_sym___fastcall] = ACTIONS(5124), + [anon_sym___thiscall] = ACTIONS(5124), + [anon_sym___vectorcall] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_static] = ACTIONS(5124), + [anon_sym_register] = ACTIONS(5124), + [anon_sym_inline] = ACTIONS(5124), + [anon_sym___inline] = ACTIONS(5124), + [anon_sym___inline__] = ACTIONS(5124), + [anon_sym___forceinline] = ACTIONS(5124), + [anon_sym_thread_local] = ACTIONS(5124), + [anon_sym___thread] = ACTIONS(5124), + [anon_sym_const] = ACTIONS(5124), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym_noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_mutable] = ACTIONS(5124), + [anon_sym_constinit] = ACTIONS(5124), + [anon_sym_consteval] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5124), + [anon_sym__Alignas] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5124), + [anon_sym_decltype] = ACTIONS(5124), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5124), + [anon_sym_operator] = ACTIONS(5124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5124), + [anon_sym_MOZ_COLD] = ACTIONS(5124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_RAII] = ACTIONS(5124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5124), + }, + [STATE(1515)] = { + [sym_field_declaration_list] = STATE(1413), + [sym_virtual_specifier] = STATE(7370), + [sym_base_class_clause] = STATE(8271), + [sym_identifier] = ACTIONS(5134), + [anon_sym_LPAREN2] = ACTIONS(5136), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_AMP_AMP] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_SEMI] = ACTIONS(5258), + [anon_sym___extension__] = ACTIONS(5134), + [anon_sym_virtual] = ACTIONS(5134), + [anon_sym_extern] = ACTIONS(5134), + [anon_sym___attribute__] = ACTIONS(5134), + [anon_sym___attribute] = ACTIONS(5134), + [anon_sym_COLON_COLON] = ACTIONS(5136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5136), + [anon_sym___declspec] = ACTIONS(5134), + [anon_sym___based] = ACTIONS(5134), + [anon_sym___cdecl] = ACTIONS(5134), + [anon_sym___clrcall] = ACTIONS(5134), + [anon_sym___stdcall] = ACTIONS(5134), + [anon_sym___fastcall] = ACTIONS(5134), + [anon_sym___thiscall] = ACTIONS(5134), + [anon_sym___vectorcall] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_static] = ACTIONS(5134), + [anon_sym_register] = ACTIONS(5134), + [anon_sym_inline] = ACTIONS(5134), + [anon_sym___inline] = ACTIONS(5134), + [anon_sym___inline__] = ACTIONS(5134), + [anon_sym___forceinline] = ACTIONS(5134), + [anon_sym_thread_local] = ACTIONS(5134), + [anon_sym___thread] = ACTIONS(5134), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_constexpr] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_restrict] = ACTIONS(5134), + [anon_sym___restrict__] = ACTIONS(5134), + [anon_sym__Atomic] = ACTIONS(5134), + [anon_sym__Noreturn] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym__Nonnull] = ACTIONS(5134), + [anon_sym_mutable] = ACTIONS(5134), + [anon_sym_constinit] = ACTIONS(5134), + [anon_sym_consteval] = ACTIONS(5134), + [anon_sym_alignas] = ACTIONS(5134), + [anon_sym__Alignas] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5134), + [anon_sym_decltype] = ACTIONS(5134), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5134), + [anon_sym_operator] = ACTIONS(5134), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5134), + [anon_sym_MOZ_COLD] = ACTIONS(5134), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5134), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5134), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5134), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5134), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5134), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5134), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5134), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5134), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5134), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5134), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5134), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5134), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_RAII] = ACTIONS(5134), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5134), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5134), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5134), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5134), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5134), + }, + [STATE(1516)] = { + [sym_expression] = STATE(4664), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7704), + [sym_initializer_pair] = STATE(7704), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(5276), + [anon_sym_COMMA] = ACTIONS(5316), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(5318), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1517)] = { + [sym_expression_statement] = STATE(2420), + [sym_expression] = STATE(4879), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8578), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_type_requirement] = STATE(1518), + [sym_compound_requirement] = STATE(1518), + [sym__requirement] = STATE(1518), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_requirement_seq_repeat1] = STATE(1518), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5320), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_typename] = ACTIONS(5290), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1518)] = { + [sym_expression_statement] = STATE(2420), + [sym_expression] = STATE(4879), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8578), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_type_requirement] = STATE(1550), + [sym_compound_requirement] = STATE(1550), + [sym__requirement] = STATE(1550), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_requirement_seq_repeat1] = STATE(1550), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_typename] = ACTIONS(5290), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1519)] = { + [sym_field_declaration_list] = STATE(1401), + [sym_virtual_specifier] = STATE(7276), + [sym_base_class_clause] = STATE(8218), + [sym_identifier] = ACTIONS(5124), + [anon_sym_LPAREN2] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(5252), + [anon_sym___extension__] = ACTIONS(5124), + [anon_sym_virtual] = ACTIONS(5124), + [anon_sym_extern] = ACTIONS(5124), + [anon_sym___attribute__] = ACTIONS(5124), + [anon_sym___attribute] = ACTIONS(5124), + [anon_sym_COLON_COLON] = ACTIONS(5126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5126), + [anon_sym___declspec] = ACTIONS(5124), + [anon_sym___based] = ACTIONS(5124), + [anon_sym___cdecl] = ACTIONS(5124), + [anon_sym___clrcall] = ACTIONS(5124), + [anon_sym___stdcall] = ACTIONS(5124), + [anon_sym___fastcall] = ACTIONS(5124), + [anon_sym___thiscall] = ACTIONS(5124), + [anon_sym___vectorcall] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_static] = ACTIONS(5124), + [anon_sym_register] = ACTIONS(5124), + [anon_sym_inline] = ACTIONS(5124), + [anon_sym___inline] = ACTIONS(5124), + [anon_sym___inline__] = ACTIONS(5124), + [anon_sym___forceinline] = ACTIONS(5124), + [anon_sym_thread_local] = ACTIONS(5124), + [anon_sym___thread] = ACTIONS(5124), + [anon_sym_const] = ACTIONS(5124), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym_noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_mutable] = ACTIONS(5124), + [anon_sym_constinit] = ACTIONS(5124), + [anon_sym_consteval] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5124), + [anon_sym__Alignas] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5124), + [anon_sym_decltype] = ACTIONS(5124), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5124), + [anon_sym_operator] = ACTIONS(5124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5124), + [anon_sym_MOZ_COLD] = ACTIONS(5124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_RAII] = ACTIONS(5124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5124), + }, + [STATE(1520)] = { + [sym_field_declaration_list] = STATE(1413), + [sym_virtual_specifier] = STATE(7370), + [sym_base_class_clause] = STATE(8271), + [sym_identifier] = ACTIONS(5134), + [anon_sym_LPAREN2] = ACTIONS(5136), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_AMP_AMP] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_SEMI] = ACTIONS(5252), + [anon_sym___extension__] = ACTIONS(5134), + [anon_sym_virtual] = ACTIONS(5134), + [anon_sym_extern] = ACTIONS(5134), + [anon_sym___attribute__] = ACTIONS(5134), + [anon_sym___attribute] = ACTIONS(5134), + [anon_sym_COLON_COLON] = ACTIONS(5136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5136), + [anon_sym___declspec] = ACTIONS(5134), + [anon_sym___based] = ACTIONS(5134), + [anon_sym___cdecl] = ACTIONS(5134), + [anon_sym___clrcall] = ACTIONS(5134), + [anon_sym___stdcall] = ACTIONS(5134), + [anon_sym___fastcall] = ACTIONS(5134), + [anon_sym___thiscall] = ACTIONS(5134), + [anon_sym___vectorcall] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_static] = ACTIONS(5134), + [anon_sym_register] = ACTIONS(5134), + [anon_sym_inline] = ACTIONS(5134), + [anon_sym___inline] = ACTIONS(5134), + [anon_sym___inline__] = ACTIONS(5134), + [anon_sym___forceinline] = ACTIONS(5134), + [anon_sym_thread_local] = ACTIONS(5134), + [anon_sym___thread] = ACTIONS(5134), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_constexpr] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_restrict] = ACTIONS(5134), + [anon_sym___restrict__] = ACTIONS(5134), + [anon_sym__Atomic] = ACTIONS(5134), + [anon_sym__Noreturn] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym__Nonnull] = ACTIONS(5134), + [anon_sym_mutable] = ACTIONS(5134), + [anon_sym_constinit] = ACTIONS(5134), + [anon_sym_consteval] = ACTIONS(5134), + [anon_sym_alignas] = ACTIONS(5134), + [anon_sym__Alignas] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5134), + [anon_sym_decltype] = ACTIONS(5134), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5134), + [anon_sym_operator] = ACTIONS(5134), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5134), + [anon_sym_MOZ_COLD] = ACTIONS(5134), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5134), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5134), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5134), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5134), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5134), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5134), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5134), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5134), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5134), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5134), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5134), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5134), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_RAII] = ACTIONS(5134), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5134), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5134), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5134), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5134), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5134), + }, + [STATE(1521)] = { + [sym_expression_statement] = STATE(2420), + [sym_expression] = STATE(4879), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8578), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_type_requirement] = STATE(1550), + [sym_compound_requirement] = STATE(1550), + [sym__requirement] = STATE(1550), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_requirement_seq_repeat1] = STATE(1550), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5324), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_typename] = ACTIONS(5290), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1522)] = { + [sym_field_declaration_list] = STATE(1401), + [sym_virtual_specifier] = STATE(7276), + [sym_base_class_clause] = STATE(8218), + [sym_identifier] = ACTIONS(5124), + [anon_sym_LPAREN2] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(5254), + [anon_sym___extension__] = ACTIONS(5124), + [anon_sym_virtual] = ACTIONS(5124), + [anon_sym_extern] = ACTIONS(5124), + [anon_sym___attribute__] = ACTIONS(5124), + [anon_sym___attribute] = ACTIONS(5124), + [anon_sym_COLON_COLON] = ACTIONS(5126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5126), + [anon_sym___declspec] = ACTIONS(5124), + [anon_sym___based] = ACTIONS(5124), + [anon_sym___cdecl] = ACTIONS(5124), + [anon_sym___clrcall] = ACTIONS(5124), + [anon_sym___stdcall] = ACTIONS(5124), + [anon_sym___fastcall] = ACTIONS(5124), + [anon_sym___thiscall] = ACTIONS(5124), + [anon_sym___vectorcall] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_static] = ACTIONS(5124), + [anon_sym_register] = ACTIONS(5124), + [anon_sym_inline] = ACTIONS(5124), + [anon_sym___inline] = ACTIONS(5124), + [anon_sym___inline__] = ACTIONS(5124), + [anon_sym___forceinline] = ACTIONS(5124), + [anon_sym_thread_local] = ACTIONS(5124), + [anon_sym___thread] = ACTIONS(5124), + [anon_sym_const] = ACTIONS(5124), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym_noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_mutable] = ACTIONS(5124), + [anon_sym_constinit] = ACTIONS(5124), + [anon_sym_consteval] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5124), + [anon_sym__Alignas] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5124), + [anon_sym_decltype] = ACTIONS(5124), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5124), + [anon_sym_operator] = ACTIONS(5124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5124), + [anon_sym_MOZ_COLD] = ACTIONS(5124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_RAII] = ACTIONS(5124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5124), + }, + [STATE(1523)] = { + [sym_field_declaration_list] = STATE(1413), + [sym_virtual_specifier] = STATE(7370), + [sym_base_class_clause] = STATE(8271), + [sym_identifier] = ACTIONS(5134), + [anon_sym_LPAREN2] = ACTIONS(5136), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_AMP_AMP] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_SEMI] = ACTIONS(5254), + [anon_sym___extension__] = ACTIONS(5134), + [anon_sym_virtual] = ACTIONS(5134), + [anon_sym_extern] = ACTIONS(5134), + [anon_sym___attribute__] = ACTIONS(5134), + [anon_sym___attribute] = ACTIONS(5134), + [anon_sym_COLON_COLON] = ACTIONS(5136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5136), + [anon_sym___declspec] = ACTIONS(5134), + [anon_sym___based] = ACTIONS(5134), + [anon_sym___cdecl] = ACTIONS(5134), + [anon_sym___clrcall] = ACTIONS(5134), + [anon_sym___stdcall] = ACTIONS(5134), + [anon_sym___fastcall] = ACTIONS(5134), + [anon_sym___thiscall] = ACTIONS(5134), + [anon_sym___vectorcall] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_static] = ACTIONS(5134), + [anon_sym_register] = ACTIONS(5134), + [anon_sym_inline] = ACTIONS(5134), + [anon_sym___inline] = ACTIONS(5134), + [anon_sym___inline__] = ACTIONS(5134), + [anon_sym___forceinline] = ACTIONS(5134), + [anon_sym_thread_local] = ACTIONS(5134), + [anon_sym___thread] = ACTIONS(5134), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_constexpr] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_restrict] = ACTIONS(5134), + [anon_sym___restrict__] = ACTIONS(5134), + [anon_sym__Atomic] = ACTIONS(5134), + [anon_sym__Noreturn] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym__Nonnull] = ACTIONS(5134), + [anon_sym_mutable] = ACTIONS(5134), + [anon_sym_constinit] = ACTIONS(5134), + [anon_sym_consteval] = ACTIONS(5134), + [anon_sym_alignas] = ACTIONS(5134), + [anon_sym__Alignas] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5134), + [anon_sym_decltype] = ACTIONS(5134), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5134), + [anon_sym_operator] = ACTIONS(5134), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5134), + [anon_sym_MOZ_COLD] = ACTIONS(5134), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5134), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5134), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5134), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5134), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5134), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5134), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5134), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5134), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5134), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5134), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5134), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5134), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_RAII] = ACTIONS(5134), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5134), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5134), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5134), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5134), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5134), + }, + [STATE(1524)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(4520), + [anon_sym_COMMA] = ACTIONS(5131), + [anon_sym_RPAREN] = ACTIONS(5131), + [anon_sym_LPAREN2] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_AMP_AMP] = ACTIONS(5131), + [anon_sym_AMP] = ACTIONS(5128), + [anon_sym_SEMI] = ACTIONS(5131), + [anon_sym___extension__] = ACTIONS(5128), + [anon_sym_virtual] = ACTIONS(5128), + [anon_sym_extern] = ACTIONS(5128), + [anon_sym___attribute__] = ACTIONS(5128), + [anon_sym___attribute] = ACTIONS(5128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5131), + [anon_sym___declspec] = ACTIONS(5128), + [anon_sym_LBRACE] = ACTIONS(5131), + [anon_sym_signed] = ACTIONS(4524), + [anon_sym_unsigned] = ACTIONS(4524), + [anon_sym_long] = ACTIONS(4524), + [anon_sym_short] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(5128), + [anon_sym_static] = ACTIONS(5128), + [anon_sym_EQ] = ACTIONS(5131), + [anon_sym_register] = ACTIONS(5128), + [anon_sym_inline] = ACTIONS(5128), + [anon_sym___inline] = ACTIONS(5128), + [anon_sym___inline__] = ACTIONS(5128), + [anon_sym___forceinline] = ACTIONS(5128), + [anon_sym_thread_local] = ACTIONS(5128), + [anon_sym___thread] = ACTIONS(5128), + [anon_sym_const] = ACTIONS(5128), + [anon_sym_constexpr] = ACTIONS(5128), + [anon_sym_volatile] = ACTIONS(5128), + [anon_sym_restrict] = ACTIONS(5128), + [anon_sym___restrict__] = ACTIONS(5128), + [anon_sym__Atomic] = ACTIONS(5128), + [anon_sym__Noreturn] = ACTIONS(5128), + [anon_sym_noreturn] = ACTIONS(5128), + [anon_sym__Nonnull] = ACTIONS(5128), + [anon_sym_mutable] = ACTIONS(5128), + [anon_sym_constinit] = ACTIONS(5128), + [anon_sym_consteval] = ACTIONS(5128), + [anon_sym_alignas] = ACTIONS(5128), + [anon_sym__Alignas] = ACTIONS(5128), + [sym_primitive_type] = ACTIONS(4520), + [anon_sym_asm] = ACTIONS(5128), + [anon_sym___asm__] = ACTIONS(5128), + [anon_sym___asm] = ACTIONS(5128), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5128), + [anon_sym_decltype] = ACTIONS(5128), + [anon_sym_final] = ACTIONS(5128), + [anon_sym_override] = ACTIONS(5128), + [anon_sym_GT2] = ACTIONS(5131), + [anon_sym_try] = ACTIONS(5128), + [anon_sym_requires] = ACTIONS(5128), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5128), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5128), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5128), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5128), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5128), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5128), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5128), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5128), + [anon_sym_MOZ_COLD] = ACTIONS(5128), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5128), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5128), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5128), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5128), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5128), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5128), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5128), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5128), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5128), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5128), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5128), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5128), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5128), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5128), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5128), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5128), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5128), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5128), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5128), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5128), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5128), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5128), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5128), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5128), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5128), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5128), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5128), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5128), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5128), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5128), + [anon_sym_MOZ_NONNULL] = ACTIONS(5128), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5128), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5128), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5128), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5128), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5128), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5128), + [anon_sym_MOZ_NORETURN] = ACTIONS(5128), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5128), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5128), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5128), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5128), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5128), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5128), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5128), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5128), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5128), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5128), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5128), + [anon_sym_MOZ_RAII] = ACTIONS(5128), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5128), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5128), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5128), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5128), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5128), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5128), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5128), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5128), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5128), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5128), + }, + [STATE(1525)] = { + [sym_expression_statement] = STATE(2420), + [sym_expression] = STATE(4879), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8578), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_type_requirement] = STATE(1527), + [sym_compound_requirement] = STATE(1527), + [sym__requirement] = STATE(1527), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_requirement_seq_repeat1] = STATE(1527), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_typename] = ACTIONS(5290), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1526)] = { + [sym_field_declaration_list] = STATE(1401), + [sym_virtual_specifier] = STATE(7276), + [sym_base_class_clause] = STATE(8218), + [sym_identifier] = ACTIONS(5124), + [anon_sym_LPAREN2] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(5238), + [anon_sym___extension__] = ACTIONS(5124), + [anon_sym_virtual] = ACTIONS(5124), + [anon_sym_extern] = ACTIONS(5124), + [anon_sym___attribute__] = ACTIONS(5124), + [anon_sym___attribute] = ACTIONS(5124), + [anon_sym_COLON_COLON] = ACTIONS(5126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5126), + [anon_sym___declspec] = ACTIONS(5124), + [anon_sym___based] = ACTIONS(5124), + [anon_sym___cdecl] = ACTIONS(5124), + [anon_sym___clrcall] = ACTIONS(5124), + [anon_sym___stdcall] = ACTIONS(5124), + [anon_sym___fastcall] = ACTIONS(5124), + [anon_sym___thiscall] = ACTIONS(5124), + [anon_sym___vectorcall] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_static] = ACTIONS(5124), + [anon_sym_register] = ACTIONS(5124), + [anon_sym_inline] = ACTIONS(5124), + [anon_sym___inline] = ACTIONS(5124), + [anon_sym___inline__] = ACTIONS(5124), + [anon_sym___forceinline] = ACTIONS(5124), + [anon_sym_thread_local] = ACTIONS(5124), + [anon_sym___thread] = ACTIONS(5124), + [anon_sym_const] = ACTIONS(5124), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym_noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_mutable] = ACTIONS(5124), + [anon_sym_constinit] = ACTIONS(5124), + [anon_sym_consteval] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5124), + [anon_sym__Alignas] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5124), + [anon_sym_decltype] = ACTIONS(5124), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5124), + [anon_sym_operator] = ACTIONS(5124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5124), + [anon_sym_MOZ_COLD] = ACTIONS(5124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_RAII] = ACTIONS(5124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5124), + }, + [STATE(1527)] = { + [sym_expression_statement] = STATE(2420), + [sym_expression] = STATE(4879), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8578), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_type_requirement] = STATE(1550), + [sym_compound_requirement] = STATE(1550), + [sym__requirement] = STATE(1550), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_requirement_seq_repeat1] = STATE(1550), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5328), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_typename] = ACTIONS(5290), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1528)] = { + [sym_field_declaration_list] = STATE(1401), + [sym_virtual_specifier] = STATE(7276), + [sym_base_class_clause] = STATE(8218), + [sym_identifier] = ACTIONS(5124), + [anon_sym_LPAREN2] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(5244), + [anon_sym___extension__] = ACTIONS(5124), + [anon_sym_virtual] = ACTIONS(5124), + [anon_sym_extern] = ACTIONS(5124), + [anon_sym___attribute__] = ACTIONS(5124), + [anon_sym___attribute] = ACTIONS(5124), + [anon_sym_COLON_COLON] = ACTIONS(5126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5126), + [anon_sym___declspec] = ACTIONS(5124), + [anon_sym___based] = ACTIONS(5124), + [anon_sym___cdecl] = ACTIONS(5124), + [anon_sym___clrcall] = ACTIONS(5124), + [anon_sym___stdcall] = ACTIONS(5124), + [anon_sym___fastcall] = ACTIONS(5124), + [anon_sym___thiscall] = ACTIONS(5124), + [anon_sym___vectorcall] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_static] = ACTIONS(5124), + [anon_sym_register] = ACTIONS(5124), + [anon_sym_inline] = ACTIONS(5124), + [anon_sym___inline] = ACTIONS(5124), + [anon_sym___inline__] = ACTIONS(5124), + [anon_sym___forceinline] = ACTIONS(5124), + [anon_sym_thread_local] = ACTIONS(5124), + [anon_sym___thread] = ACTIONS(5124), + [anon_sym_const] = ACTIONS(5124), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym_noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_mutable] = ACTIONS(5124), + [anon_sym_constinit] = ACTIONS(5124), + [anon_sym_consteval] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5124), + [anon_sym__Alignas] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5124), + [anon_sym_decltype] = ACTIONS(5124), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5124), + [anon_sym_operator] = ACTIONS(5124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5124), + [anon_sym_MOZ_COLD] = ACTIONS(5124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_RAII] = ACTIONS(5124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5124), + }, + [STATE(1529)] = { + [sym_field_declaration_list] = STATE(1413), + [sym_virtual_specifier] = STATE(7370), + [sym_base_class_clause] = STATE(8271), + [sym_identifier] = ACTIONS(5134), + [anon_sym_LPAREN2] = ACTIONS(5136), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_AMP_AMP] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_SEMI] = ACTIONS(5244), + [anon_sym___extension__] = ACTIONS(5134), + [anon_sym_virtual] = ACTIONS(5134), + [anon_sym_extern] = ACTIONS(5134), + [anon_sym___attribute__] = ACTIONS(5134), + [anon_sym___attribute] = ACTIONS(5134), + [anon_sym_COLON_COLON] = ACTIONS(5136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5136), + [anon_sym___declspec] = ACTIONS(5134), + [anon_sym___based] = ACTIONS(5134), + [anon_sym___cdecl] = ACTIONS(5134), + [anon_sym___clrcall] = ACTIONS(5134), + [anon_sym___stdcall] = ACTIONS(5134), + [anon_sym___fastcall] = ACTIONS(5134), + [anon_sym___thiscall] = ACTIONS(5134), + [anon_sym___vectorcall] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_static] = ACTIONS(5134), + [anon_sym_register] = ACTIONS(5134), + [anon_sym_inline] = ACTIONS(5134), + [anon_sym___inline] = ACTIONS(5134), + [anon_sym___inline__] = ACTIONS(5134), + [anon_sym___forceinline] = ACTIONS(5134), + [anon_sym_thread_local] = ACTIONS(5134), + [anon_sym___thread] = ACTIONS(5134), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_constexpr] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_restrict] = ACTIONS(5134), + [anon_sym___restrict__] = ACTIONS(5134), + [anon_sym__Atomic] = ACTIONS(5134), + [anon_sym__Noreturn] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym__Nonnull] = ACTIONS(5134), + [anon_sym_mutable] = ACTIONS(5134), + [anon_sym_constinit] = ACTIONS(5134), + [anon_sym_consteval] = ACTIONS(5134), + [anon_sym_alignas] = ACTIONS(5134), + [anon_sym__Alignas] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5134), + [anon_sym_decltype] = ACTIONS(5134), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5134), + [anon_sym_operator] = ACTIONS(5134), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5134), + [anon_sym_MOZ_COLD] = ACTIONS(5134), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5134), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5134), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5134), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5134), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5134), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5134), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5134), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5134), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5134), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5134), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5134), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5134), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_RAII] = ACTIONS(5134), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5134), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5134), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5134), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5134), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5134), + }, + [STATE(1530)] = { + [sym_field_declaration_list] = STATE(1401), + [sym_virtual_specifier] = STATE(7276), + [sym_base_class_clause] = STATE(8218), + [sym_identifier] = ACTIONS(5124), + [anon_sym_LPAREN2] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(5272), + [anon_sym___extension__] = ACTIONS(5124), + [anon_sym_virtual] = ACTIONS(5124), + [anon_sym_extern] = ACTIONS(5124), + [anon_sym___attribute__] = ACTIONS(5124), + [anon_sym___attribute] = ACTIONS(5124), + [anon_sym_COLON_COLON] = ACTIONS(5126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5126), + [anon_sym___declspec] = ACTIONS(5124), + [anon_sym___based] = ACTIONS(5124), + [anon_sym___cdecl] = ACTIONS(5124), + [anon_sym___clrcall] = ACTIONS(5124), + [anon_sym___stdcall] = ACTIONS(5124), + [anon_sym___fastcall] = ACTIONS(5124), + [anon_sym___thiscall] = ACTIONS(5124), + [anon_sym___vectorcall] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_static] = ACTIONS(5124), + [anon_sym_register] = ACTIONS(5124), + [anon_sym_inline] = ACTIONS(5124), + [anon_sym___inline] = ACTIONS(5124), + [anon_sym___inline__] = ACTIONS(5124), + [anon_sym___forceinline] = ACTIONS(5124), + [anon_sym_thread_local] = ACTIONS(5124), + [anon_sym___thread] = ACTIONS(5124), + [anon_sym_const] = ACTIONS(5124), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym_noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_mutable] = ACTIONS(5124), + [anon_sym_constinit] = ACTIONS(5124), + [anon_sym_consteval] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5124), + [anon_sym__Alignas] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5124), + [anon_sym_decltype] = ACTIONS(5124), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5124), + [anon_sym_operator] = ACTIONS(5124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5124), + [anon_sym_MOZ_COLD] = ACTIONS(5124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_RAII] = ACTIONS(5124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5124), + }, + [STATE(1531)] = { + [sym_field_declaration_list] = STATE(1413), + [sym_virtual_specifier] = STATE(7370), + [sym_base_class_clause] = STATE(8271), + [sym_identifier] = ACTIONS(5134), + [anon_sym_LPAREN2] = ACTIONS(5136), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_AMP_AMP] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_SEMI] = ACTIONS(5272), + [anon_sym___extension__] = ACTIONS(5134), + [anon_sym_virtual] = ACTIONS(5134), + [anon_sym_extern] = ACTIONS(5134), + [anon_sym___attribute__] = ACTIONS(5134), + [anon_sym___attribute] = ACTIONS(5134), + [anon_sym_COLON_COLON] = ACTIONS(5136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5136), + [anon_sym___declspec] = ACTIONS(5134), + [anon_sym___based] = ACTIONS(5134), + [anon_sym___cdecl] = ACTIONS(5134), + [anon_sym___clrcall] = ACTIONS(5134), + [anon_sym___stdcall] = ACTIONS(5134), + [anon_sym___fastcall] = ACTIONS(5134), + [anon_sym___thiscall] = ACTIONS(5134), + [anon_sym___vectorcall] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_static] = ACTIONS(5134), + [anon_sym_register] = ACTIONS(5134), + [anon_sym_inline] = ACTIONS(5134), + [anon_sym___inline] = ACTIONS(5134), + [anon_sym___inline__] = ACTIONS(5134), + [anon_sym___forceinline] = ACTIONS(5134), + [anon_sym_thread_local] = ACTIONS(5134), + [anon_sym___thread] = ACTIONS(5134), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_constexpr] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_restrict] = ACTIONS(5134), + [anon_sym___restrict__] = ACTIONS(5134), + [anon_sym__Atomic] = ACTIONS(5134), + [anon_sym__Noreturn] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym__Nonnull] = ACTIONS(5134), + [anon_sym_mutable] = ACTIONS(5134), + [anon_sym_constinit] = ACTIONS(5134), + [anon_sym_consteval] = ACTIONS(5134), + [anon_sym_alignas] = ACTIONS(5134), + [anon_sym__Alignas] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5134), + [anon_sym_decltype] = ACTIONS(5134), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5134), + [anon_sym_operator] = ACTIONS(5134), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5134), + [anon_sym_MOZ_COLD] = ACTIONS(5134), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5134), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5134), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5134), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5134), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5134), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5134), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5134), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5134), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5134), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5134), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5134), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5134), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_RAII] = ACTIONS(5134), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5134), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5134), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5134), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5134), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5134), + }, + [STATE(1532)] = { + [sym_field_declaration_list] = STATE(1413), + [sym_virtual_specifier] = STATE(7370), + [sym_base_class_clause] = STATE(8271), + [sym_identifier] = ACTIONS(5134), + [anon_sym_LPAREN2] = ACTIONS(5136), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_AMP_AMP] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_SEMI] = ACTIONS(5238), + [anon_sym___extension__] = ACTIONS(5134), + [anon_sym_virtual] = ACTIONS(5134), + [anon_sym_extern] = ACTIONS(5134), + [anon_sym___attribute__] = ACTIONS(5134), + [anon_sym___attribute] = ACTIONS(5134), + [anon_sym_COLON_COLON] = ACTIONS(5136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5136), + [anon_sym___declspec] = ACTIONS(5134), + [anon_sym___based] = ACTIONS(5134), + [anon_sym___cdecl] = ACTIONS(5134), + [anon_sym___clrcall] = ACTIONS(5134), + [anon_sym___stdcall] = ACTIONS(5134), + [anon_sym___fastcall] = ACTIONS(5134), + [anon_sym___thiscall] = ACTIONS(5134), + [anon_sym___vectorcall] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_static] = ACTIONS(5134), + [anon_sym_register] = ACTIONS(5134), + [anon_sym_inline] = ACTIONS(5134), + [anon_sym___inline] = ACTIONS(5134), + [anon_sym___inline__] = ACTIONS(5134), + [anon_sym___forceinline] = ACTIONS(5134), + [anon_sym_thread_local] = ACTIONS(5134), + [anon_sym___thread] = ACTIONS(5134), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_constexpr] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_restrict] = ACTIONS(5134), + [anon_sym___restrict__] = ACTIONS(5134), + [anon_sym__Atomic] = ACTIONS(5134), + [anon_sym__Noreturn] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym__Nonnull] = ACTIONS(5134), + [anon_sym_mutable] = ACTIONS(5134), + [anon_sym_constinit] = ACTIONS(5134), + [anon_sym_consteval] = ACTIONS(5134), + [anon_sym_alignas] = ACTIONS(5134), + [anon_sym__Alignas] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5134), + [anon_sym_decltype] = ACTIONS(5134), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5134), + [anon_sym_operator] = ACTIONS(5134), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5134), + [anon_sym_MOZ_COLD] = ACTIONS(5134), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5134), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5134), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5134), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5134), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5134), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5134), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5134), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5134), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5134), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5134), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5134), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5134), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_RAII] = ACTIONS(5134), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5134), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5134), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5134), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5134), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5134), + }, + [STATE(1533)] = { + [sym_expression_statement] = STATE(2420), + [sym_expression] = STATE(4879), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8578), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_type_requirement] = STATE(1534), + [sym_compound_requirement] = STATE(1534), + [sym__requirement] = STATE(1534), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_requirement_seq_repeat1] = STATE(1534), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5330), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_typename] = ACTIONS(5290), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1534)] = { + [sym_expression_statement] = STATE(2420), + [sym_expression] = STATE(4879), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8578), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_type_requirement] = STATE(1550), + [sym_compound_requirement] = STATE(1550), + [sym__requirement] = STATE(1550), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_requirement_seq_repeat1] = STATE(1550), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5332), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_typename] = ACTIONS(5290), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1535)] = { + [sym_field_declaration_list] = STATE(1401), + [sym_virtual_specifier] = STATE(7276), + [sym_base_class_clause] = STATE(8218), + [sym_identifier] = ACTIONS(5124), + [anon_sym_LPAREN2] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(5236), + [anon_sym___extension__] = ACTIONS(5124), + [anon_sym_virtual] = ACTIONS(5124), + [anon_sym_extern] = ACTIONS(5124), + [anon_sym___attribute__] = ACTIONS(5124), + [anon_sym___attribute] = ACTIONS(5124), + [anon_sym_COLON_COLON] = ACTIONS(5126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5126), + [anon_sym___declspec] = ACTIONS(5124), + [anon_sym___based] = ACTIONS(5124), + [anon_sym___cdecl] = ACTIONS(5124), + [anon_sym___clrcall] = ACTIONS(5124), + [anon_sym___stdcall] = ACTIONS(5124), + [anon_sym___fastcall] = ACTIONS(5124), + [anon_sym___thiscall] = ACTIONS(5124), + [anon_sym___vectorcall] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_static] = ACTIONS(5124), + [anon_sym_register] = ACTIONS(5124), + [anon_sym_inline] = ACTIONS(5124), + [anon_sym___inline] = ACTIONS(5124), + [anon_sym___inline__] = ACTIONS(5124), + [anon_sym___forceinline] = ACTIONS(5124), + [anon_sym_thread_local] = ACTIONS(5124), + [anon_sym___thread] = ACTIONS(5124), + [anon_sym_const] = ACTIONS(5124), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym_noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_mutable] = ACTIONS(5124), + [anon_sym_constinit] = ACTIONS(5124), + [anon_sym_consteval] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5124), + [anon_sym__Alignas] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5124), + [anon_sym_decltype] = ACTIONS(5124), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5124), + [anon_sym_operator] = ACTIONS(5124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5124), + [anon_sym_MOZ_COLD] = ACTIONS(5124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_RAII] = ACTIONS(5124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5124), + }, + [STATE(1536)] = { + [sym_expression_statement] = STATE(2420), + [sym_expression] = STATE(4879), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8578), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_type_requirement] = STATE(1538), + [sym_compound_requirement] = STATE(1538), + [sym__requirement] = STATE(1538), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_requirement_seq_repeat1] = STATE(1538), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5334), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_typename] = ACTIONS(5290), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1537)] = { + [sym_field_declaration_list] = STATE(1413), + [sym_virtual_specifier] = STATE(7370), + [sym_base_class_clause] = STATE(8271), + [sym_identifier] = ACTIONS(5134), + [anon_sym_LPAREN2] = ACTIONS(5136), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_AMP_AMP] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_SEMI] = ACTIONS(5236), + [anon_sym___extension__] = ACTIONS(5134), + [anon_sym_virtual] = ACTIONS(5134), + [anon_sym_extern] = ACTIONS(5134), + [anon_sym___attribute__] = ACTIONS(5134), + [anon_sym___attribute] = ACTIONS(5134), + [anon_sym_COLON_COLON] = ACTIONS(5136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5136), + [anon_sym___declspec] = ACTIONS(5134), + [anon_sym___based] = ACTIONS(5134), + [anon_sym___cdecl] = ACTIONS(5134), + [anon_sym___clrcall] = ACTIONS(5134), + [anon_sym___stdcall] = ACTIONS(5134), + [anon_sym___fastcall] = ACTIONS(5134), + [anon_sym___thiscall] = ACTIONS(5134), + [anon_sym___vectorcall] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_static] = ACTIONS(5134), + [anon_sym_register] = ACTIONS(5134), + [anon_sym_inline] = ACTIONS(5134), + [anon_sym___inline] = ACTIONS(5134), + [anon_sym___inline__] = ACTIONS(5134), + [anon_sym___forceinline] = ACTIONS(5134), + [anon_sym_thread_local] = ACTIONS(5134), + [anon_sym___thread] = ACTIONS(5134), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_constexpr] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_restrict] = ACTIONS(5134), + [anon_sym___restrict__] = ACTIONS(5134), + [anon_sym__Atomic] = ACTIONS(5134), + [anon_sym__Noreturn] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym__Nonnull] = ACTIONS(5134), + [anon_sym_mutable] = ACTIONS(5134), + [anon_sym_constinit] = ACTIONS(5134), + [anon_sym_consteval] = ACTIONS(5134), + [anon_sym_alignas] = ACTIONS(5134), + [anon_sym__Alignas] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5134), + [anon_sym_decltype] = ACTIONS(5134), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5134), + [anon_sym_operator] = ACTIONS(5134), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5134), + [anon_sym_MOZ_COLD] = ACTIONS(5134), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5134), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5134), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5134), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5134), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5134), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5134), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5134), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5134), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5134), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5134), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5134), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5134), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_RAII] = ACTIONS(5134), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5134), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5134), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5134), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5134), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5134), + }, + [STATE(1538)] = { + [sym_expression_statement] = STATE(2420), + [sym_expression] = STATE(4879), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8578), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_type_requirement] = STATE(1550), + [sym_compound_requirement] = STATE(1550), + [sym__requirement] = STATE(1550), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_requirement_seq_repeat1] = STATE(1550), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5336), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_typename] = ACTIONS(5290), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1539)] = { + [sym_field_declaration_list] = STATE(1401), + [sym_virtual_specifier] = STATE(7276), + [sym_base_class_clause] = STATE(8218), + [sym_identifier] = ACTIONS(5124), + [anon_sym_LPAREN2] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(5270), + [anon_sym___extension__] = ACTIONS(5124), + [anon_sym_virtual] = ACTIONS(5124), + [anon_sym_extern] = ACTIONS(5124), + [anon_sym___attribute__] = ACTIONS(5124), + [anon_sym___attribute] = ACTIONS(5124), + [anon_sym_COLON_COLON] = ACTIONS(5126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5126), + [anon_sym___declspec] = ACTIONS(5124), + [anon_sym___based] = ACTIONS(5124), + [anon_sym___cdecl] = ACTIONS(5124), + [anon_sym___clrcall] = ACTIONS(5124), + [anon_sym___stdcall] = ACTIONS(5124), + [anon_sym___fastcall] = ACTIONS(5124), + [anon_sym___thiscall] = ACTIONS(5124), + [anon_sym___vectorcall] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_static] = ACTIONS(5124), + [anon_sym_register] = ACTIONS(5124), + [anon_sym_inline] = ACTIONS(5124), + [anon_sym___inline] = ACTIONS(5124), + [anon_sym___inline__] = ACTIONS(5124), + [anon_sym___forceinline] = ACTIONS(5124), + [anon_sym_thread_local] = ACTIONS(5124), + [anon_sym___thread] = ACTIONS(5124), + [anon_sym_const] = ACTIONS(5124), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym_noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_mutable] = ACTIONS(5124), + [anon_sym_constinit] = ACTIONS(5124), + [anon_sym_consteval] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5124), + [anon_sym__Alignas] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5124), + [anon_sym_decltype] = ACTIONS(5124), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5124), + [anon_sym_operator] = ACTIONS(5124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5124), + [anon_sym_MOZ_COLD] = ACTIONS(5124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_RAII] = ACTIONS(5124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5124), + }, + [STATE(1540)] = { + [sym_field_declaration_list] = STATE(1413), + [sym_virtual_specifier] = STATE(7370), + [sym_base_class_clause] = STATE(8271), + [sym_identifier] = ACTIONS(5134), + [anon_sym_LPAREN2] = ACTIONS(5136), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_AMP_AMP] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_SEMI] = ACTIONS(5270), + [anon_sym___extension__] = ACTIONS(5134), + [anon_sym_virtual] = ACTIONS(5134), + [anon_sym_extern] = ACTIONS(5134), + [anon_sym___attribute__] = ACTIONS(5134), + [anon_sym___attribute] = ACTIONS(5134), + [anon_sym_COLON_COLON] = ACTIONS(5136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5136), + [anon_sym___declspec] = ACTIONS(5134), + [anon_sym___based] = ACTIONS(5134), + [anon_sym___cdecl] = ACTIONS(5134), + [anon_sym___clrcall] = ACTIONS(5134), + [anon_sym___stdcall] = ACTIONS(5134), + [anon_sym___fastcall] = ACTIONS(5134), + [anon_sym___thiscall] = ACTIONS(5134), + [anon_sym___vectorcall] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_static] = ACTIONS(5134), + [anon_sym_register] = ACTIONS(5134), + [anon_sym_inline] = ACTIONS(5134), + [anon_sym___inline] = ACTIONS(5134), + [anon_sym___inline__] = ACTIONS(5134), + [anon_sym___forceinline] = ACTIONS(5134), + [anon_sym_thread_local] = ACTIONS(5134), + [anon_sym___thread] = ACTIONS(5134), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_constexpr] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_restrict] = ACTIONS(5134), + [anon_sym___restrict__] = ACTIONS(5134), + [anon_sym__Atomic] = ACTIONS(5134), + [anon_sym__Noreturn] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym__Nonnull] = ACTIONS(5134), + [anon_sym_mutable] = ACTIONS(5134), + [anon_sym_constinit] = ACTIONS(5134), + [anon_sym_consteval] = ACTIONS(5134), + [anon_sym_alignas] = ACTIONS(5134), + [anon_sym__Alignas] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5134), + [anon_sym_decltype] = ACTIONS(5134), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5134), + [anon_sym_operator] = ACTIONS(5134), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5134), + [anon_sym_MOZ_COLD] = ACTIONS(5134), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5134), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5134), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5134), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5134), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5134), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5134), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5134), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5134), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5134), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5134), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5134), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5134), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_RAII] = ACTIONS(5134), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5134), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5134), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5134), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5134), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5134), + }, + [STATE(1541)] = { + [sym_identifier] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_STAR] = ACTIONS(4533), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4533), + [anon_sym___extension__] = ACTIONS(4531), + [anon_sym_virtual] = ACTIONS(4531), + [anon_sym_extern] = ACTIONS(4531), + [anon_sym___attribute__] = ACTIONS(4531), + [anon_sym___attribute] = ACTIONS(4531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4533), + [anon_sym___declspec] = ACTIONS(4531), + [anon_sym___based] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_static] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4533), + [anon_sym_register] = ACTIONS(4531), + [anon_sym_inline] = ACTIONS(4531), + [anon_sym___inline] = ACTIONS(4531), + [anon_sym___inline__] = ACTIONS(4531), + [anon_sym___forceinline] = ACTIONS(4531), + [anon_sym_thread_local] = ACTIONS(4531), + [anon_sym___thread] = ACTIONS(4531), + [anon_sym_const] = ACTIONS(4531), + [anon_sym_constexpr] = ACTIONS(4531), + [anon_sym_volatile] = ACTIONS(4531), + [anon_sym_restrict] = ACTIONS(4531), + [anon_sym___restrict__] = ACTIONS(4531), + [anon_sym__Atomic] = ACTIONS(4531), + [anon_sym__Noreturn] = ACTIONS(4531), + [anon_sym_noreturn] = ACTIONS(4531), + [anon_sym__Nonnull] = ACTIONS(4531), + [anon_sym_mutable] = ACTIONS(4531), + [anon_sym_constinit] = ACTIONS(4531), + [anon_sym_consteval] = ACTIONS(4531), + [anon_sym_alignas] = ACTIONS(4531), + [anon_sym__Alignas] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4533), + [anon_sym_or] = ACTIONS(4531), + [anon_sym_and] = ACTIONS(4531), + [anon_sym_asm] = ACTIONS(4531), + [anon_sym___asm__] = ACTIONS(4531), + [anon_sym___asm] = ACTIONS(4531), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4531), + [anon_sym_decltype] = ACTIONS(4531), + [anon_sym_final] = ACTIONS(4531), + [anon_sym_override] = ACTIONS(4531), + [anon_sym_GT2] = ACTIONS(4533), + [anon_sym_operator] = ACTIONS(4531), + [anon_sym_try] = ACTIONS(4531), + [anon_sym_requires] = ACTIONS(4531), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4531), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4531), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4531), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4531), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4531), + [anon_sym_MOZ_COLD] = ACTIONS(4531), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4531), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4531), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4531), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4531), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4531), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4531), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4531), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4531), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4531), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4531), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4531), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4531), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4531), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4531), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4531), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4531), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_NONNULL] = ACTIONS(4531), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4531), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4531), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4531), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4531), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_NORETURN] = ACTIONS(4531), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4531), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4531), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4531), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4531), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4531), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4531), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4531), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4531), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4531), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4531), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4531), + [anon_sym_MOZ_RAII] = ACTIONS(4531), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4531), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4531), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4531), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4531), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4531), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4531), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4531), + }, + [STATE(1542)] = { + [sym_field_declaration_list] = STATE(1401), + [sym_virtual_specifier] = STATE(7276), + [sym_base_class_clause] = STATE(8218), + [sym_identifier] = ACTIONS(5124), + [anon_sym_LPAREN2] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(5256), + [anon_sym___extension__] = ACTIONS(5124), + [anon_sym_virtual] = ACTIONS(5124), + [anon_sym_extern] = ACTIONS(5124), + [anon_sym___attribute__] = ACTIONS(5124), + [anon_sym___attribute] = ACTIONS(5124), + [anon_sym_COLON_COLON] = ACTIONS(5126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5126), + [anon_sym___declspec] = ACTIONS(5124), + [anon_sym___based] = ACTIONS(5124), + [anon_sym___cdecl] = ACTIONS(5124), + [anon_sym___clrcall] = ACTIONS(5124), + [anon_sym___stdcall] = ACTIONS(5124), + [anon_sym___fastcall] = ACTIONS(5124), + [anon_sym___thiscall] = ACTIONS(5124), + [anon_sym___vectorcall] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_static] = ACTIONS(5124), + [anon_sym_register] = ACTIONS(5124), + [anon_sym_inline] = ACTIONS(5124), + [anon_sym___inline] = ACTIONS(5124), + [anon_sym___inline__] = ACTIONS(5124), + [anon_sym___forceinline] = ACTIONS(5124), + [anon_sym_thread_local] = ACTIONS(5124), + [anon_sym___thread] = ACTIONS(5124), + [anon_sym_const] = ACTIONS(5124), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym_noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_mutable] = ACTIONS(5124), + [anon_sym_constinit] = ACTIONS(5124), + [anon_sym_consteval] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5124), + [anon_sym__Alignas] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5124), + [anon_sym_decltype] = ACTIONS(5124), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5124), + [anon_sym_operator] = ACTIONS(5124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5124), + [anon_sym_MOZ_COLD] = ACTIONS(5124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_RAII] = ACTIONS(5124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5124), + }, + [STATE(1543)] = { + [sym_template_argument_list] = STATE(1469), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), + [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_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(1544)] = { + [sym_expression] = STATE(4670), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7831), + [sym_initializer_pair] = STATE(7831), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(5276), + [anon_sym_COMMA] = ACTIONS(5338), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(5340), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1545)] = { + [sym_field_declaration_list] = STATE(1413), + [sym_virtual_specifier] = STATE(7370), + [sym_base_class_clause] = STATE(8271), + [sym_identifier] = ACTIONS(5134), + [anon_sym_LPAREN2] = ACTIONS(5136), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_AMP_AMP] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_SEMI] = ACTIONS(5256), + [anon_sym___extension__] = ACTIONS(5134), + [anon_sym_virtual] = ACTIONS(5134), + [anon_sym_extern] = ACTIONS(5134), + [anon_sym___attribute__] = ACTIONS(5134), + [anon_sym___attribute] = ACTIONS(5134), + [anon_sym_COLON_COLON] = ACTIONS(5136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5136), + [anon_sym___declspec] = ACTIONS(5134), + [anon_sym___based] = ACTIONS(5134), + [anon_sym___cdecl] = ACTIONS(5134), + [anon_sym___clrcall] = ACTIONS(5134), + [anon_sym___stdcall] = ACTIONS(5134), + [anon_sym___fastcall] = ACTIONS(5134), + [anon_sym___thiscall] = ACTIONS(5134), + [anon_sym___vectorcall] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_static] = ACTIONS(5134), + [anon_sym_register] = ACTIONS(5134), + [anon_sym_inline] = ACTIONS(5134), + [anon_sym___inline] = ACTIONS(5134), + [anon_sym___inline__] = ACTIONS(5134), + [anon_sym___forceinline] = ACTIONS(5134), + [anon_sym_thread_local] = ACTIONS(5134), + [anon_sym___thread] = ACTIONS(5134), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_constexpr] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_restrict] = ACTIONS(5134), + [anon_sym___restrict__] = ACTIONS(5134), + [anon_sym__Atomic] = ACTIONS(5134), + [anon_sym__Noreturn] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym__Nonnull] = ACTIONS(5134), + [anon_sym_mutable] = ACTIONS(5134), + [anon_sym_constinit] = ACTIONS(5134), + [anon_sym_consteval] = ACTIONS(5134), + [anon_sym_alignas] = ACTIONS(5134), + [anon_sym__Alignas] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5134), + [anon_sym_decltype] = ACTIONS(5134), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5134), + [anon_sym_operator] = ACTIONS(5134), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5134), + [anon_sym_MOZ_COLD] = ACTIONS(5134), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5134), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5134), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5134), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5134), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5134), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5134), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5134), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5134), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5134), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5134), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5134), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5134), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_RAII] = ACTIONS(5134), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5134), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5134), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5134), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5134), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5134), + }, + [STATE(1546)] = { + [sym_expression] = STATE(4649), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7698), + [sym_initializer_pair] = STATE(7698), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(5276), + [anon_sym_COMMA] = ACTIONS(175), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(5342), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1547)] = { + [sym_expression_statement] = STATE(2420), + [sym_expression] = STATE(4879), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8578), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_type_requirement] = STATE(1552), + [sym_compound_requirement] = STATE(1552), + [sym__requirement] = STATE(1552), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_requirement_seq_repeat1] = STATE(1552), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5344), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_typename] = ACTIONS(5290), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1548)] = { + [sym_field_declaration_list] = STATE(1401), + [sym_virtual_specifier] = STATE(7276), + [sym_base_class_clause] = STATE(8218), + [sym_identifier] = ACTIONS(5124), + [anon_sym_COMMA] = ACTIONS(5126), + [anon_sym_RPAREN] = ACTIONS(5126), + [anon_sym_LPAREN2] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(5126), + [anon_sym___extension__] = ACTIONS(5124), + [anon_sym_virtual] = ACTIONS(5124), + [anon_sym_extern] = ACTIONS(5124), + [anon_sym___attribute__] = ACTIONS(5124), + [anon_sym___attribute] = ACTIONS(5124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5126), + [anon_sym___declspec] = ACTIONS(5124), + [anon_sym___based] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_static] = ACTIONS(5124), + [anon_sym_EQ] = ACTIONS(5126), + [anon_sym_register] = ACTIONS(5124), + [anon_sym_inline] = ACTIONS(5124), + [anon_sym___inline] = ACTIONS(5124), + [anon_sym___inline__] = ACTIONS(5124), + [anon_sym___forceinline] = ACTIONS(5124), + [anon_sym_thread_local] = ACTIONS(5124), + [anon_sym___thread] = ACTIONS(5124), + [anon_sym_const] = ACTIONS(5124), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym_noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_mutable] = ACTIONS(5124), + [anon_sym_constinit] = ACTIONS(5124), + [anon_sym_consteval] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5124), + [anon_sym__Alignas] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_asm] = ACTIONS(5124), + [anon_sym___asm__] = ACTIONS(5124), + [anon_sym___asm] = ACTIONS(5124), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5124), + [anon_sym_decltype] = ACTIONS(5124), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_GT2] = ACTIONS(5126), + [anon_sym_operator] = ACTIONS(5124), + [anon_sym_try] = ACTIONS(5124), + [anon_sym_requires] = ACTIONS(5124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5124), + [anon_sym_MOZ_COLD] = ACTIONS(5124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_RAII] = ACTIONS(5124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5124), + }, + [STATE(1549)] = { + [sym_field_declaration_list] = STATE(1413), + [sym_virtual_specifier] = STATE(7370), + [sym_base_class_clause] = STATE(8271), + [sym_identifier] = ACTIONS(5134), + [anon_sym_COMMA] = ACTIONS(5136), + [anon_sym_RPAREN] = ACTIONS(5136), + [anon_sym_LPAREN2] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_AMP_AMP] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_SEMI] = ACTIONS(5136), + [anon_sym___extension__] = ACTIONS(5134), + [anon_sym_virtual] = ACTIONS(5134), + [anon_sym_extern] = ACTIONS(5134), + [anon_sym___attribute__] = ACTIONS(5134), + [anon_sym___attribute] = ACTIONS(5134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5136), + [anon_sym___declspec] = ACTIONS(5134), + [anon_sym___based] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_static] = ACTIONS(5134), + [anon_sym_EQ] = ACTIONS(5136), + [anon_sym_register] = ACTIONS(5134), + [anon_sym_inline] = ACTIONS(5134), + [anon_sym___inline] = ACTIONS(5134), + [anon_sym___inline__] = ACTIONS(5134), + [anon_sym___forceinline] = ACTIONS(5134), + [anon_sym_thread_local] = ACTIONS(5134), + [anon_sym___thread] = ACTIONS(5134), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_constexpr] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_restrict] = ACTIONS(5134), + [anon_sym___restrict__] = ACTIONS(5134), + [anon_sym__Atomic] = ACTIONS(5134), + [anon_sym__Noreturn] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym__Nonnull] = ACTIONS(5134), + [anon_sym_mutable] = ACTIONS(5134), + [anon_sym_constinit] = ACTIONS(5134), + [anon_sym_consteval] = ACTIONS(5134), + [anon_sym_alignas] = ACTIONS(5134), + [anon_sym__Alignas] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_asm] = ACTIONS(5134), + [anon_sym___asm__] = ACTIONS(5134), + [anon_sym___asm] = ACTIONS(5134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5134), + [anon_sym_decltype] = ACTIONS(5134), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_GT2] = ACTIONS(5136), + [anon_sym_operator] = ACTIONS(5134), + [anon_sym_try] = ACTIONS(5134), + [anon_sym_requires] = ACTIONS(5134), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5134), + [anon_sym_MOZ_COLD] = ACTIONS(5134), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5134), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5134), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5134), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5134), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5134), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5134), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5134), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5134), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5134), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5134), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5134), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5134), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_RAII] = ACTIONS(5134), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5134), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5134), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5134), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5134), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5134), + }, + [STATE(1550)] = { + [sym_expression_statement] = STATE(2420), + [sym_expression] = STATE(4879), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8578), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_type_requirement] = STATE(1550), + [sym_compound_requirement] = STATE(1550), + [sym__requirement] = STATE(1550), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_requirement_seq_repeat1] = STATE(1550), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(5349), + [anon_sym_BANG] = ACTIONS(5352), + [anon_sym_TILDE] = ACTIONS(5352), + [anon_sym_DASH] = ACTIONS(5355), + [anon_sym_PLUS] = ACTIONS(5355), + [anon_sym_STAR] = ACTIONS(5358), + [anon_sym_AMP] = ACTIONS(5358), + [anon_sym_SEMI] = ACTIONS(5361), + [anon_sym___extension__] = ACTIONS(5364), + [anon_sym_COLON_COLON] = ACTIONS(5367), + [anon_sym_LBRACE] = ACTIONS(5370), + [anon_sym_RBRACE] = ACTIONS(5373), + [anon_sym_LBRACK] = ACTIONS(5375), + [sym_primitive_type] = ACTIONS(5378), + [anon_sym_not] = ACTIONS(5355), + [anon_sym_compl] = ACTIONS(5355), + [anon_sym_DASH_DASH] = ACTIONS(5381), + [anon_sym_PLUS_PLUS] = ACTIONS(5381), + [anon_sym_sizeof] = ACTIONS(5384), + [anon_sym___alignof__] = ACTIONS(5387), + [anon_sym___alignof] = ACTIONS(5387), + [anon_sym__alignof] = ACTIONS(5387), + [anon_sym_alignof] = ACTIONS(5387), + [anon_sym__Alignof] = ACTIONS(5387), + [anon_sym_offsetof] = ACTIONS(5390), + [anon_sym__Generic] = ACTIONS(5393), + [anon_sym_asm] = ACTIONS(5396), + [anon_sym___asm__] = ACTIONS(5396), + [anon_sym___asm] = ACTIONS(5396), + [sym_number_literal] = ACTIONS(5399), + [anon_sym_L_SQUOTE] = ACTIONS(5402), + [anon_sym_u_SQUOTE] = ACTIONS(5402), + [anon_sym_U_SQUOTE] = ACTIONS(5402), + [anon_sym_u8_SQUOTE] = ACTIONS(5402), + [anon_sym_SQUOTE] = ACTIONS(5402), + [anon_sym_L_DQUOTE] = ACTIONS(5405), + [anon_sym_u_DQUOTE] = ACTIONS(5405), + [anon_sym_U_DQUOTE] = ACTIONS(5405), + [anon_sym_u8_DQUOTE] = ACTIONS(5405), + [anon_sym_DQUOTE] = ACTIONS(5405), + [sym_true] = ACTIONS(5408), + [sym_false] = ACTIONS(5408), + [anon_sym_NULL] = ACTIONS(5411), + [anon_sym_nullptr] = ACTIONS(5411), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5414), + [anon_sym_typename] = ACTIONS(5417), + [anon_sym_template] = ACTIONS(5420), + [anon_sym_delete] = ACTIONS(5423), + [anon_sym_R_DQUOTE] = ACTIONS(5426), + [anon_sym_LR_DQUOTE] = ACTIONS(5426), + [anon_sym_uR_DQUOTE] = ACTIONS(5426), + [anon_sym_UR_DQUOTE] = ACTIONS(5426), + [anon_sym_u8R_DQUOTE] = ACTIONS(5426), + [anon_sym_co_await] = ACTIONS(5429), + [anon_sym_new] = ACTIONS(5432), + [anon_sym_requires] = ACTIONS(5435), + [sym_this] = ACTIONS(5408), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(5438), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(5438), + [anon_sym_FORWARD] = ACTIONS(5438), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(5438), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(5438), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(5438), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(5438), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(5438), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(5438), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(5438), + [anon_sym_PS_GET] = ACTIONS(5438), + [anon_sym_PS_GET_AND_SET] = ACTIONS(5438), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(5438), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(5438), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(5438), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(5438), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(5438), + }, + [STATE(1551)] = { + [sym_template_argument_list] = STATE(1716), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3110), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), + [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_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(5441), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(1552)] = { + [sym_expression_statement] = STATE(2420), + [sym_expression] = STATE(4879), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8578), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_type_requirement] = STATE(1550), + [sym_compound_requirement] = STATE(1550), + [sym__requirement] = STATE(1550), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_requirement_seq_repeat1] = STATE(1550), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5444), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_typename] = ACTIONS(5290), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1553)] = { + [sym_field_declaration_list] = STATE(1401), + [sym_virtual_specifier] = STATE(7276), + [sym_base_class_clause] = STATE(8218), + [sym_identifier] = ACTIONS(5124), + [anon_sym_LPAREN2] = ACTIONS(5126), + [anon_sym_TILDE] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(5260), + [anon_sym___extension__] = ACTIONS(5124), + [anon_sym_virtual] = ACTIONS(5124), + [anon_sym_extern] = ACTIONS(5124), + [anon_sym___attribute__] = ACTIONS(5124), + [anon_sym___attribute] = ACTIONS(5124), + [anon_sym_COLON_COLON] = ACTIONS(5126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5126), + [anon_sym___declspec] = ACTIONS(5124), + [anon_sym___based] = ACTIONS(5124), + [anon_sym___cdecl] = ACTIONS(5124), + [anon_sym___clrcall] = ACTIONS(5124), + [anon_sym___stdcall] = ACTIONS(5124), + [anon_sym___fastcall] = ACTIONS(5124), + [anon_sym___thiscall] = ACTIONS(5124), + [anon_sym___vectorcall] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_static] = ACTIONS(5124), + [anon_sym_register] = ACTIONS(5124), + [anon_sym_inline] = ACTIONS(5124), + [anon_sym___inline] = ACTIONS(5124), + [anon_sym___inline__] = ACTIONS(5124), + [anon_sym___forceinline] = ACTIONS(5124), + [anon_sym_thread_local] = ACTIONS(5124), + [anon_sym___thread] = ACTIONS(5124), + [anon_sym_const] = ACTIONS(5124), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym_noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_mutable] = ACTIONS(5124), + [anon_sym_constinit] = ACTIONS(5124), + [anon_sym_consteval] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5124), + [anon_sym__Alignas] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5124), + [anon_sym_decltype] = ACTIONS(5124), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5124), + [anon_sym_operator] = ACTIONS(5124), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5124), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5124), + [anon_sym_MOZ_COLD] = ACTIONS(5124), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5124), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5124), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5124), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5124), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5124), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5124), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5124), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5124), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5124), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5124), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5124), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5124), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL] = ACTIONS(5124), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5124), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5124), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN] = ACTIONS(5124), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5124), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5124), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5124), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5124), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5124), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5124), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5124), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5124), + [anon_sym_MOZ_RAII] = ACTIONS(5124), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5124), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5124), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5124), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5124), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5124), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5124), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5124), + }, + [STATE(1554)] = { + [sym_field_declaration_list] = STATE(1413), + [sym_virtual_specifier] = STATE(7370), + [sym_base_class_clause] = STATE(8271), + [sym_identifier] = ACTIONS(5134), + [anon_sym_LPAREN2] = ACTIONS(5136), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_AMP_AMP] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_SEMI] = ACTIONS(5260), + [anon_sym___extension__] = ACTIONS(5134), + [anon_sym_virtual] = ACTIONS(5134), + [anon_sym_extern] = ACTIONS(5134), + [anon_sym___attribute__] = ACTIONS(5134), + [anon_sym___attribute] = ACTIONS(5134), + [anon_sym_COLON_COLON] = ACTIONS(5136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5136), + [anon_sym___declspec] = ACTIONS(5134), + [anon_sym___based] = ACTIONS(5134), + [anon_sym___cdecl] = ACTIONS(5134), + [anon_sym___clrcall] = ACTIONS(5134), + [anon_sym___stdcall] = ACTIONS(5134), + [anon_sym___fastcall] = ACTIONS(5134), + [anon_sym___thiscall] = ACTIONS(5134), + [anon_sym___vectorcall] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_static] = ACTIONS(5134), + [anon_sym_register] = ACTIONS(5134), + [anon_sym_inline] = ACTIONS(5134), + [anon_sym___inline] = ACTIONS(5134), + [anon_sym___inline__] = ACTIONS(5134), + [anon_sym___forceinline] = ACTIONS(5134), + [anon_sym_thread_local] = ACTIONS(5134), + [anon_sym___thread] = ACTIONS(5134), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_constexpr] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_restrict] = ACTIONS(5134), + [anon_sym___restrict__] = ACTIONS(5134), + [anon_sym__Atomic] = ACTIONS(5134), + [anon_sym__Noreturn] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym__Nonnull] = ACTIONS(5134), + [anon_sym_mutable] = ACTIONS(5134), + [anon_sym_constinit] = ACTIONS(5134), + [anon_sym_consteval] = ACTIONS(5134), + [anon_sym_alignas] = ACTIONS(5134), + [anon_sym__Alignas] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5134), + [anon_sym_decltype] = ACTIONS(5134), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5134), + [anon_sym_operator] = ACTIONS(5134), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5134), + [anon_sym_MOZ_COLD] = ACTIONS(5134), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5134), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5134), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5134), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5134), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5134), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5134), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5134), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5134), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5134), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5134), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5134), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5134), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_RAII] = ACTIONS(5134), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5134), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5134), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5134), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5134), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5134), + }, + [STATE(1555)] = { + [sym_field_declaration_list] = STATE(1413), + [sym_virtual_specifier] = STATE(7370), + [sym_base_class_clause] = STATE(8271), + [sym_identifier] = ACTIONS(5134), + [anon_sym_LPAREN2] = ACTIONS(5136), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_AMP_AMP] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_SEMI] = ACTIONS(5274), + [anon_sym___extension__] = ACTIONS(5134), + [anon_sym_virtual] = ACTIONS(5134), + [anon_sym_extern] = ACTIONS(5134), + [anon_sym___attribute__] = ACTIONS(5134), + [anon_sym___attribute] = ACTIONS(5134), + [anon_sym_COLON_COLON] = ACTIONS(5136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5136), + [anon_sym___declspec] = ACTIONS(5134), + [anon_sym___based] = ACTIONS(5134), + [anon_sym___cdecl] = ACTIONS(5134), + [anon_sym___clrcall] = ACTIONS(5134), + [anon_sym___stdcall] = ACTIONS(5134), + [anon_sym___fastcall] = ACTIONS(5134), + [anon_sym___thiscall] = ACTIONS(5134), + [anon_sym___vectorcall] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_static] = ACTIONS(5134), + [anon_sym_register] = ACTIONS(5134), + [anon_sym_inline] = ACTIONS(5134), + [anon_sym___inline] = ACTIONS(5134), + [anon_sym___inline__] = ACTIONS(5134), + [anon_sym___forceinline] = ACTIONS(5134), + [anon_sym_thread_local] = ACTIONS(5134), + [anon_sym___thread] = ACTIONS(5134), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_constexpr] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_restrict] = ACTIONS(5134), + [anon_sym___restrict__] = ACTIONS(5134), + [anon_sym__Atomic] = ACTIONS(5134), + [anon_sym__Noreturn] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym__Nonnull] = ACTIONS(5134), + [anon_sym_mutable] = ACTIONS(5134), + [anon_sym_constinit] = ACTIONS(5134), + [anon_sym_consteval] = ACTIONS(5134), + [anon_sym_alignas] = ACTIONS(5134), + [anon_sym__Alignas] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5134), + [anon_sym_decltype] = ACTIONS(5134), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(5134), + [anon_sym_operator] = ACTIONS(5134), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5134), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5134), + [anon_sym_MOZ_COLD] = ACTIONS(5134), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5134), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5134), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5134), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5134), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5134), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5134), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5134), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5134), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5134), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5134), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5134), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5134), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL] = ACTIONS(5134), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5134), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5134), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN] = ACTIONS(5134), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5134), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5134), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5134), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5134), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5134), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5134), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5134), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5134), + [anon_sym_MOZ_RAII] = ACTIONS(5134), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5134), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5134), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5134), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5134), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5134), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5134), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5134), + }, + [STATE(1556)] = { + [sym_attribute_specifier] = STATE(1367), + [sym_identifier] = ACTIONS(5446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5448), + [anon_sym_COMMA] = ACTIONS(5448), + [anon_sym_RPAREN] = ACTIONS(5448), + [anon_sym_LPAREN2] = ACTIONS(5448), + [anon_sym_TILDE] = ACTIONS(5448), + [anon_sym_STAR] = ACTIONS(5448), + [anon_sym_AMP_AMP] = ACTIONS(5448), + [anon_sym_AMP] = ACTIONS(5446), + [anon_sym_SEMI] = ACTIONS(5448), + [anon_sym___extension__] = ACTIONS(5446), + [anon_sym_virtual] = ACTIONS(5446), + [anon_sym_extern] = ACTIONS(5446), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(5448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5448), + [anon_sym___declspec] = ACTIONS(5446), + [anon_sym___based] = ACTIONS(5446), + [anon_sym___cdecl] = ACTIONS(5446), + [anon_sym___clrcall] = ACTIONS(5446), + [anon_sym___stdcall] = ACTIONS(5446), + [anon_sym___fastcall] = ACTIONS(5446), + [anon_sym___thiscall] = ACTIONS(5446), + [anon_sym___vectorcall] = ACTIONS(5446), + [anon_sym_LBRACK] = ACTIONS(5446), + [anon_sym_static] = ACTIONS(5446), + [anon_sym_EQ] = ACTIONS(5448), + [anon_sym_register] = ACTIONS(5446), + [anon_sym_inline] = ACTIONS(5446), + [anon_sym___inline] = ACTIONS(5446), + [anon_sym___inline__] = ACTIONS(5446), + [anon_sym___forceinline] = ACTIONS(5446), + [anon_sym_thread_local] = ACTIONS(5446), + [anon_sym___thread] = ACTIONS(5446), + [anon_sym_const] = ACTIONS(5446), + [anon_sym_constexpr] = ACTIONS(5446), + [anon_sym_volatile] = ACTIONS(5446), + [anon_sym_restrict] = ACTIONS(5446), + [anon_sym___restrict__] = ACTIONS(5446), + [anon_sym__Atomic] = ACTIONS(5446), + [anon_sym__Noreturn] = ACTIONS(5446), + [anon_sym_noreturn] = ACTIONS(5446), + [anon_sym__Nonnull] = ACTIONS(5446), + [anon_sym_mutable] = ACTIONS(5446), + [anon_sym_constinit] = ACTIONS(5446), + [anon_sym_consteval] = ACTIONS(5446), + [anon_sym_alignas] = ACTIONS(5446), + [anon_sym__Alignas] = ACTIONS(5446), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5446), + [anon_sym_decltype] = ACTIONS(5446), + [anon_sym_template] = ACTIONS(5446), + [anon_sym_GT2] = ACTIONS(5448), + [anon_sym_operator] = ACTIONS(5446), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5446), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5446), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5446), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5446), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5446), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5446), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5446), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5446), + [anon_sym_MOZ_COLD] = ACTIONS(5446), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5446), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5446), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5446), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5446), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5446), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5446), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5446), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5446), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5446), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5446), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5446), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5446), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5446), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5446), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5446), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5446), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5446), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5446), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5446), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5446), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5446), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5446), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5446), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5446), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5446), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5446), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5446), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5446), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5446), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5446), + [anon_sym_MOZ_NONNULL] = ACTIONS(5446), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5446), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5446), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5446), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5446), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5446), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5446), + [anon_sym_MOZ_NORETURN] = ACTIONS(5446), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5446), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5446), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5446), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5446), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5446), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5446), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5446), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5446), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5446), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5446), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5446), + [anon_sym_MOZ_RAII] = ACTIONS(5446), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5446), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5446), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5446), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5446), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5446), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5446), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5446), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5446), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5446), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5446), + }, + [STATE(1557)] = { + [sym_attribute_specifier] = STATE(1416), + [sym_identifier] = ACTIONS(5450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5452), + [anon_sym_COMMA] = ACTIONS(5452), + [anon_sym_RPAREN] = ACTIONS(5452), + [anon_sym_LPAREN2] = ACTIONS(5452), + [anon_sym_TILDE] = ACTIONS(5452), + [anon_sym_STAR] = ACTIONS(5452), + [anon_sym_AMP_AMP] = ACTIONS(5452), + [anon_sym_AMP] = ACTIONS(5450), + [anon_sym_SEMI] = ACTIONS(5452), + [anon_sym___extension__] = ACTIONS(5450), + [anon_sym_virtual] = ACTIONS(5450), + [anon_sym_extern] = ACTIONS(5450), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(5452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5452), + [anon_sym___declspec] = ACTIONS(5450), + [anon_sym___based] = ACTIONS(5450), + [anon_sym___cdecl] = ACTIONS(5450), + [anon_sym___clrcall] = ACTIONS(5450), + [anon_sym___stdcall] = ACTIONS(5450), + [anon_sym___fastcall] = ACTIONS(5450), + [anon_sym___thiscall] = ACTIONS(5450), + [anon_sym___vectorcall] = ACTIONS(5450), + [anon_sym_LBRACK] = ACTIONS(5450), + [anon_sym_static] = ACTIONS(5450), + [anon_sym_EQ] = ACTIONS(5452), + [anon_sym_register] = ACTIONS(5450), + [anon_sym_inline] = ACTIONS(5450), + [anon_sym___inline] = ACTIONS(5450), + [anon_sym___inline__] = ACTIONS(5450), + [anon_sym___forceinline] = ACTIONS(5450), + [anon_sym_thread_local] = ACTIONS(5450), + [anon_sym___thread] = ACTIONS(5450), + [anon_sym_const] = ACTIONS(5450), + [anon_sym_constexpr] = ACTIONS(5450), + [anon_sym_volatile] = ACTIONS(5450), + [anon_sym_restrict] = ACTIONS(5450), + [anon_sym___restrict__] = ACTIONS(5450), + [anon_sym__Atomic] = ACTIONS(5450), + [anon_sym__Noreturn] = ACTIONS(5450), + [anon_sym_noreturn] = ACTIONS(5450), + [anon_sym__Nonnull] = ACTIONS(5450), + [anon_sym_mutable] = ACTIONS(5450), + [anon_sym_constinit] = ACTIONS(5450), + [anon_sym_consteval] = ACTIONS(5450), + [anon_sym_alignas] = ACTIONS(5450), + [anon_sym__Alignas] = ACTIONS(5450), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5450), + [anon_sym_decltype] = ACTIONS(5450), + [anon_sym_template] = ACTIONS(5450), + [anon_sym_GT2] = ACTIONS(5452), + [anon_sym_operator] = ACTIONS(5450), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5450), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5450), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5450), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5450), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5450), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5450), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5450), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5450), + [anon_sym_MOZ_COLD] = ACTIONS(5450), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5450), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5450), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5450), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5450), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5450), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5450), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5450), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5450), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5450), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5450), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5450), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5450), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5450), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5450), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5450), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5450), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5450), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5450), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5450), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5450), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5450), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5450), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5450), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5450), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5450), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5450), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5450), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5450), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5450), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5450), + [anon_sym_MOZ_NONNULL] = ACTIONS(5450), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5450), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5450), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5450), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5450), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5450), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5450), + [anon_sym_MOZ_NORETURN] = ACTIONS(5450), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5450), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5450), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5450), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5450), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5450), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5450), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5450), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5450), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5450), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5450), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5450), + [anon_sym_MOZ_RAII] = ACTIONS(5450), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5450), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5450), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5450), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5450), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5450), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5450), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5450), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5450), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5450), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5450), + }, + [STATE(1558)] = { + [sym_attribute_specifier] = STATE(1392), + [sym_enumerator_list] = STATE(1556), + [sym__enum_base_clause] = STATE(1487), + [sym_identifier] = ACTIONS(5454), + [anon_sym_COMMA] = ACTIONS(5456), + [anon_sym_LPAREN2] = ACTIONS(5456), + [anon_sym_TILDE] = ACTIONS(5456), + [anon_sym_STAR] = ACTIONS(5456), + [anon_sym_AMP_AMP] = ACTIONS(5456), + [anon_sym_AMP] = ACTIONS(5454), + [anon_sym_SEMI] = ACTIONS(5456), + [anon_sym___extension__] = ACTIONS(5454), + [anon_sym_virtual] = ACTIONS(5454), + [anon_sym_extern] = ACTIONS(5454), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(5456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5456), + [anon_sym___declspec] = ACTIONS(5454), + [anon_sym___based] = ACTIONS(5454), + [anon_sym___cdecl] = ACTIONS(5454), + [anon_sym___clrcall] = ACTIONS(5454), + [anon_sym___stdcall] = ACTIONS(5454), + [anon_sym___fastcall] = ACTIONS(5454), + [anon_sym___thiscall] = ACTIONS(5454), + [anon_sym___vectorcall] = ACTIONS(5454), + [anon_sym_LBRACE] = ACTIONS(5250), + [anon_sym_LBRACK] = ACTIONS(5454), + [anon_sym_static] = ACTIONS(5454), + [anon_sym_register] = ACTIONS(5454), + [anon_sym_inline] = ACTIONS(5454), + [anon_sym___inline] = ACTIONS(5454), + [anon_sym___inline__] = ACTIONS(5454), + [anon_sym___forceinline] = ACTIONS(5454), + [anon_sym_thread_local] = ACTIONS(5454), + [anon_sym___thread] = ACTIONS(5454), + [anon_sym_const] = ACTIONS(5454), + [anon_sym_constexpr] = ACTIONS(5454), + [anon_sym_volatile] = ACTIONS(5454), + [anon_sym_restrict] = ACTIONS(5454), + [anon_sym___restrict__] = ACTIONS(5454), + [anon_sym__Atomic] = ACTIONS(5454), + [anon_sym__Noreturn] = ACTIONS(5454), + [anon_sym_noreturn] = ACTIONS(5454), + [anon_sym__Nonnull] = ACTIONS(5454), + [anon_sym_mutable] = ACTIONS(5454), + [anon_sym_constinit] = ACTIONS(5454), + [anon_sym_consteval] = ACTIONS(5454), + [anon_sym_alignas] = ACTIONS(5454), + [anon_sym__Alignas] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(5458), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5454), + [anon_sym_decltype] = ACTIONS(5454), + [anon_sym_template] = ACTIONS(5454), + [anon_sym_operator] = ACTIONS(5454), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5454), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5454), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5454), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5454), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5454), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5454), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5454), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5454), + [anon_sym_MOZ_COLD] = ACTIONS(5454), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5454), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5454), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5454), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5454), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5454), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5454), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5454), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5454), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5454), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5454), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5454), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5454), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5454), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5454), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5454), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5454), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5454), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5454), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5454), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5454), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_NONNULL] = ACTIONS(5454), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5454), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5454), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5454), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5454), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5454), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_NORETURN] = ACTIONS(5454), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5454), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5454), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5454), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5454), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5454), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5454), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5454), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5454), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5454), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5454), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5454), + [anon_sym_MOZ_RAII] = ACTIONS(5454), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5454), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5454), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5454), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5454), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5454), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5454), + }, + [STATE(1559)] = { + [sym_expression] = STATE(4834), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7964), + [sym_initializer_pair] = STATE(7964), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(5276), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(5460), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1560)] = { + [sym_expression] = STATE(4834), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7964), + [sym_initializer_pair] = STATE(7964), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(5276), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(5312), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1561)] = { + [sym_attribute_specifier] = STATE(1370), + [sym_identifier] = ACTIONS(5462), + [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(5464), + [anon_sym_STAR] = ACTIONS(5464), + [anon_sym_AMP_AMP] = ACTIONS(5464), + [anon_sym_AMP] = ACTIONS(5462), + [anon_sym_SEMI] = ACTIONS(5464), + [anon_sym___extension__] = ACTIONS(5462), + [anon_sym_virtual] = ACTIONS(5462), + [anon_sym_extern] = ACTIONS(5462), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(5464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5464), + [anon_sym___declspec] = ACTIONS(5462), + [anon_sym___based] = ACTIONS(5462), + [anon_sym___cdecl] = ACTIONS(5462), + [anon_sym___clrcall] = ACTIONS(5462), + [anon_sym___stdcall] = ACTIONS(5462), + [anon_sym___fastcall] = ACTIONS(5462), + [anon_sym___thiscall] = ACTIONS(5462), + [anon_sym___vectorcall] = ACTIONS(5462), + [anon_sym_LBRACK] = ACTIONS(5462), + [anon_sym_static] = ACTIONS(5462), + [anon_sym_EQ] = ACTIONS(5464), + [anon_sym_register] = ACTIONS(5462), + [anon_sym_inline] = ACTIONS(5462), + [anon_sym___inline] = ACTIONS(5462), + [anon_sym___inline__] = ACTIONS(5462), + [anon_sym___forceinline] = ACTIONS(5462), + [anon_sym_thread_local] = ACTIONS(5462), + [anon_sym___thread] = ACTIONS(5462), + [anon_sym_const] = ACTIONS(5462), + [anon_sym_constexpr] = ACTIONS(5462), + [anon_sym_volatile] = ACTIONS(5462), + [anon_sym_restrict] = ACTIONS(5462), + [anon_sym___restrict__] = ACTIONS(5462), + [anon_sym__Atomic] = ACTIONS(5462), + [anon_sym__Noreturn] = ACTIONS(5462), + [anon_sym_noreturn] = ACTIONS(5462), + [anon_sym__Nonnull] = ACTIONS(5462), + [anon_sym_mutable] = ACTIONS(5462), + [anon_sym_constinit] = ACTIONS(5462), + [anon_sym_consteval] = ACTIONS(5462), + [anon_sym_alignas] = ACTIONS(5462), + [anon_sym__Alignas] = ACTIONS(5462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5462), + [anon_sym_decltype] = ACTIONS(5462), + [anon_sym_template] = ACTIONS(5462), + [anon_sym_GT2] = ACTIONS(5464), + [anon_sym_operator] = ACTIONS(5462), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5462), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5462), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5462), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5462), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5462), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5462), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5462), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5462), + [anon_sym_MOZ_COLD] = ACTIONS(5462), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5462), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5462), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5462), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5462), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5462), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5462), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5462), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5462), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5462), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5462), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5462), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5462), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5462), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5462), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5462), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5462), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5462), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5462), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5462), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5462), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5462), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5462), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5462), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5462), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5462), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5462), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5462), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5462), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5462), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5462), + [anon_sym_MOZ_NONNULL] = ACTIONS(5462), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5462), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5462), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5462), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5462), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5462), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5462), + [anon_sym_MOZ_NORETURN] = ACTIONS(5462), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5462), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5462), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5462), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5462), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5462), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5462), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5462), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5462), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5462), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5462), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5462), + [anon_sym_MOZ_RAII] = ACTIONS(5462), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5462), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5462), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5462), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5462), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5462), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5462), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5462), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5462), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5462), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5462), + }, + [STATE(1562)] = { + [sym_expression] = STATE(4834), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7964), + [sym_initializer_pair] = STATE(7964), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(5276), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(5466), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1563)] = { + [sym_expression] = STATE(4834), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7964), + [sym_initializer_pair] = STATE(7964), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(5276), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(5468), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1564)] = { + [sym_expression] = STATE(4834), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7964), + [sym_initializer_pair] = STATE(7964), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(5276), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(5470), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1565)] = { + [sym_expression] = STATE(4834), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7964), + [sym_initializer_pair] = STATE(7964), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(5276), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(5472), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1566)] = { + [sym_expression] = STATE(4834), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7964), + [sym_initializer_pair] = STATE(7964), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(5276), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(5474), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1567)] = { + [sym_attribute_specifier] = STATE(1390), + [sym_identifier] = ACTIONS(5476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5478), + [anon_sym_COMMA] = ACTIONS(5478), + [anon_sym_RPAREN] = ACTIONS(5478), + [anon_sym_LPAREN2] = ACTIONS(5478), + [anon_sym_TILDE] = ACTIONS(5478), + [anon_sym_STAR] = ACTIONS(5478), + [anon_sym_AMP_AMP] = ACTIONS(5478), + [anon_sym_AMP] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(5478), + [anon_sym___extension__] = ACTIONS(5476), + [anon_sym_virtual] = ACTIONS(5476), + [anon_sym_extern] = ACTIONS(5476), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(5478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5478), + [anon_sym___declspec] = ACTIONS(5476), + [anon_sym___based] = ACTIONS(5476), + [anon_sym___cdecl] = ACTIONS(5476), + [anon_sym___clrcall] = ACTIONS(5476), + [anon_sym___stdcall] = ACTIONS(5476), + [anon_sym___fastcall] = ACTIONS(5476), + [anon_sym___thiscall] = ACTIONS(5476), + [anon_sym___vectorcall] = ACTIONS(5476), + [anon_sym_LBRACK] = ACTIONS(5476), + [anon_sym_static] = ACTIONS(5476), + [anon_sym_EQ] = ACTIONS(5478), + [anon_sym_register] = ACTIONS(5476), + [anon_sym_inline] = ACTIONS(5476), + [anon_sym___inline] = ACTIONS(5476), + [anon_sym___inline__] = ACTIONS(5476), + [anon_sym___forceinline] = ACTIONS(5476), + [anon_sym_thread_local] = ACTIONS(5476), + [anon_sym___thread] = ACTIONS(5476), + [anon_sym_const] = ACTIONS(5476), + [anon_sym_constexpr] = ACTIONS(5476), + [anon_sym_volatile] = ACTIONS(5476), + [anon_sym_restrict] = ACTIONS(5476), + [anon_sym___restrict__] = ACTIONS(5476), + [anon_sym__Atomic] = ACTIONS(5476), + [anon_sym__Noreturn] = ACTIONS(5476), + [anon_sym_noreturn] = ACTIONS(5476), + [anon_sym__Nonnull] = ACTIONS(5476), + [anon_sym_mutable] = ACTIONS(5476), + [anon_sym_constinit] = ACTIONS(5476), + [anon_sym_consteval] = ACTIONS(5476), + [anon_sym_alignas] = ACTIONS(5476), + [anon_sym__Alignas] = ACTIONS(5476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5476), + [anon_sym_decltype] = ACTIONS(5476), + [anon_sym_template] = ACTIONS(5476), + [anon_sym_GT2] = ACTIONS(5478), + [anon_sym_operator] = ACTIONS(5476), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5476), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5476), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5476), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5476), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5476), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5476), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5476), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5476), + [anon_sym_MOZ_COLD] = ACTIONS(5476), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5476), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5476), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5476), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5476), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5476), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5476), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5476), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5476), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5476), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5476), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5476), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5476), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5476), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5476), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5476), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5476), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5476), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5476), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5476), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5476), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5476), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5476), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5476), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5476), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5476), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5476), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5476), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5476), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5476), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5476), + [anon_sym_MOZ_NONNULL] = ACTIONS(5476), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5476), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5476), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5476), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5476), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5476), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5476), + [anon_sym_MOZ_NORETURN] = ACTIONS(5476), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5476), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5476), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5476), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5476), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5476), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5476), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5476), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5476), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5476), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5476), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5476), + [anon_sym_MOZ_RAII] = ACTIONS(5476), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5476), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5476), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5476), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5476), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5476), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5476), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5476), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5476), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5476), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5476), + }, + [STATE(1568)] = { + [sym_attribute_specifier] = STATE(1369), + [sym_identifier] = ACTIONS(5480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5482), + [anon_sym_COMMA] = ACTIONS(5482), + [anon_sym_RPAREN] = ACTIONS(5482), + [anon_sym_LPAREN2] = ACTIONS(5482), + [anon_sym_TILDE] = ACTIONS(5482), + [anon_sym_STAR] = ACTIONS(5482), + [anon_sym_AMP_AMP] = ACTIONS(5482), + [anon_sym_AMP] = ACTIONS(5480), + [anon_sym_SEMI] = ACTIONS(5482), + [anon_sym___extension__] = ACTIONS(5480), + [anon_sym_virtual] = ACTIONS(5480), + [anon_sym_extern] = ACTIONS(5480), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(5482), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5482), + [anon_sym___declspec] = ACTIONS(5480), + [anon_sym___based] = ACTIONS(5480), + [anon_sym___cdecl] = ACTIONS(5480), + [anon_sym___clrcall] = ACTIONS(5480), + [anon_sym___stdcall] = ACTIONS(5480), + [anon_sym___fastcall] = ACTIONS(5480), + [anon_sym___thiscall] = ACTIONS(5480), + [anon_sym___vectorcall] = ACTIONS(5480), + [anon_sym_LBRACK] = ACTIONS(5480), + [anon_sym_static] = ACTIONS(5480), + [anon_sym_EQ] = ACTIONS(5482), + [anon_sym_register] = ACTIONS(5480), + [anon_sym_inline] = ACTIONS(5480), + [anon_sym___inline] = ACTIONS(5480), + [anon_sym___inline__] = ACTIONS(5480), + [anon_sym___forceinline] = ACTIONS(5480), + [anon_sym_thread_local] = ACTIONS(5480), + [anon_sym___thread] = ACTIONS(5480), + [anon_sym_const] = ACTIONS(5480), + [anon_sym_constexpr] = ACTIONS(5480), + [anon_sym_volatile] = ACTIONS(5480), + [anon_sym_restrict] = ACTIONS(5480), + [anon_sym___restrict__] = ACTIONS(5480), + [anon_sym__Atomic] = ACTIONS(5480), + [anon_sym__Noreturn] = ACTIONS(5480), + [anon_sym_noreturn] = ACTIONS(5480), + [anon_sym__Nonnull] = ACTIONS(5480), + [anon_sym_mutable] = ACTIONS(5480), + [anon_sym_constinit] = ACTIONS(5480), + [anon_sym_consteval] = ACTIONS(5480), + [anon_sym_alignas] = ACTIONS(5480), + [anon_sym__Alignas] = ACTIONS(5480), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5480), + [anon_sym_decltype] = ACTIONS(5480), + [anon_sym_template] = ACTIONS(5480), + [anon_sym_GT2] = ACTIONS(5482), + [anon_sym_operator] = ACTIONS(5480), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5480), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5480), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5480), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5480), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5480), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5480), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5480), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5480), + [anon_sym_MOZ_COLD] = ACTIONS(5480), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5480), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5480), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5480), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5480), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5480), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5480), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5480), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5480), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5480), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5480), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5480), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5480), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5480), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5480), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5480), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5480), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5480), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5480), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5480), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5480), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5480), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5480), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5480), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5480), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5480), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5480), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5480), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5480), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5480), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5480), + [anon_sym_MOZ_NONNULL] = ACTIONS(5480), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5480), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5480), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5480), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5480), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5480), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5480), + [anon_sym_MOZ_NORETURN] = ACTIONS(5480), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5480), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5480), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5480), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5480), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5480), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5480), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5480), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5480), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5480), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5480), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5480), + [anon_sym_MOZ_RAII] = ACTIONS(5480), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5480), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5480), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5480), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5480), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5480), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5480), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5480), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5480), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5480), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5480), + }, + [STATE(1569)] = { + [sym_attribute_specifier] = STATE(1395), + [sym_identifier] = ACTIONS(5484), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5486), + [anon_sym_COMMA] = ACTIONS(5486), + [anon_sym_RPAREN] = ACTIONS(5486), + [anon_sym_LPAREN2] = ACTIONS(5486), + [anon_sym_TILDE] = ACTIONS(5486), + [anon_sym_STAR] = ACTIONS(5486), + [anon_sym_AMP_AMP] = ACTIONS(5486), + [anon_sym_AMP] = ACTIONS(5484), + [anon_sym_SEMI] = ACTIONS(5486), + [anon_sym___extension__] = ACTIONS(5484), + [anon_sym_virtual] = ACTIONS(5484), + [anon_sym_extern] = ACTIONS(5484), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(5486), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5486), + [anon_sym___declspec] = ACTIONS(5484), + [anon_sym___based] = ACTIONS(5484), + [anon_sym___cdecl] = ACTIONS(5484), + [anon_sym___clrcall] = ACTIONS(5484), + [anon_sym___stdcall] = ACTIONS(5484), + [anon_sym___fastcall] = ACTIONS(5484), + [anon_sym___thiscall] = ACTIONS(5484), + [anon_sym___vectorcall] = ACTIONS(5484), + [anon_sym_LBRACK] = ACTIONS(5484), + [anon_sym_static] = ACTIONS(5484), + [anon_sym_EQ] = ACTIONS(5486), + [anon_sym_register] = ACTIONS(5484), + [anon_sym_inline] = ACTIONS(5484), + [anon_sym___inline] = ACTIONS(5484), + [anon_sym___inline__] = ACTIONS(5484), + [anon_sym___forceinline] = ACTIONS(5484), + [anon_sym_thread_local] = ACTIONS(5484), + [anon_sym___thread] = ACTIONS(5484), + [anon_sym_const] = ACTIONS(5484), + [anon_sym_constexpr] = ACTIONS(5484), + [anon_sym_volatile] = ACTIONS(5484), + [anon_sym_restrict] = ACTIONS(5484), + [anon_sym___restrict__] = ACTIONS(5484), + [anon_sym__Atomic] = ACTIONS(5484), + [anon_sym__Noreturn] = ACTIONS(5484), + [anon_sym_noreturn] = ACTIONS(5484), + [anon_sym__Nonnull] = ACTIONS(5484), + [anon_sym_mutable] = ACTIONS(5484), + [anon_sym_constinit] = ACTIONS(5484), + [anon_sym_consteval] = ACTIONS(5484), + [anon_sym_alignas] = ACTIONS(5484), + [anon_sym__Alignas] = ACTIONS(5484), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5484), + [anon_sym_decltype] = ACTIONS(5484), + [anon_sym_template] = ACTIONS(5484), + [anon_sym_GT2] = ACTIONS(5486), + [anon_sym_operator] = ACTIONS(5484), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5484), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5484), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5484), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5484), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5484), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5484), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5484), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5484), + [anon_sym_MOZ_COLD] = ACTIONS(5484), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5484), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5484), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5484), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5484), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5484), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5484), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5484), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5484), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5484), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5484), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5484), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5484), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5484), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5484), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5484), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5484), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5484), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5484), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5484), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5484), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5484), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5484), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5484), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5484), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5484), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5484), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5484), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5484), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5484), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5484), + [anon_sym_MOZ_NONNULL] = ACTIONS(5484), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5484), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5484), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5484), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5484), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5484), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5484), + [anon_sym_MOZ_NORETURN] = ACTIONS(5484), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5484), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5484), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5484), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5484), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5484), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5484), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5484), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5484), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5484), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5484), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5484), + [anon_sym_MOZ_RAII] = ACTIONS(5484), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5484), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5484), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5484), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5484), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5484), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5484), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5484), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5484), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5484), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5484), + }, + [STATE(1570)] = { + [sym_attribute_specifier] = STATE(1374), + [sym_identifier] = ACTIONS(5488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5490), + [anon_sym_COMMA] = ACTIONS(5490), + [anon_sym_RPAREN] = ACTIONS(5490), + [anon_sym_LPAREN2] = ACTIONS(5490), + [anon_sym_TILDE] = ACTIONS(5490), + [anon_sym_STAR] = ACTIONS(5490), + [anon_sym_AMP_AMP] = ACTIONS(5490), + [anon_sym_AMP] = ACTIONS(5488), + [anon_sym_SEMI] = ACTIONS(5490), + [anon_sym___extension__] = ACTIONS(5488), + [anon_sym_virtual] = ACTIONS(5488), + [anon_sym_extern] = ACTIONS(5488), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(5490), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5490), + [anon_sym___declspec] = ACTIONS(5488), + [anon_sym___based] = ACTIONS(5488), + [anon_sym___cdecl] = ACTIONS(5488), + [anon_sym___clrcall] = ACTIONS(5488), + [anon_sym___stdcall] = ACTIONS(5488), + [anon_sym___fastcall] = ACTIONS(5488), + [anon_sym___thiscall] = ACTIONS(5488), + [anon_sym___vectorcall] = ACTIONS(5488), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_static] = ACTIONS(5488), + [anon_sym_EQ] = ACTIONS(5490), + [anon_sym_register] = ACTIONS(5488), + [anon_sym_inline] = ACTIONS(5488), + [anon_sym___inline] = ACTIONS(5488), + [anon_sym___inline__] = ACTIONS(5488), + [anon_sym___forceinline] = ACTIONS(5488), + [anon_sym_thread_local] = ACTIONS(5488), + [anon_sym___thread] = ACTIONS(5488), + [anon_sym_const] = ACTIONS(5488), + [anon_sym_constexpr] = ACTIONS(5488), + [anon_sym_volatile] = ACTIONS(5488), + [anon_sym_restrict] = ACTIONS(5488), + [anon_sym___restrict__] = ACTIONS(5488), + [anon_sym__Atomic] = ACTIONS(5488), + [anon_sym__Noreturn] = ACTIONS(5488), + [anon_sym_noreturn] = ACTIONS(5488), + [anon_sym__Nonnull] = ACTIONS(5488), + [anon_sym_mutable] = ACTIONS(5488), + [anon_sym_constinit] = ACTIONS(5488), + [anon_sym_consteval] = ACTIONS(5488), + [anon_sym_alignas] = ACTIONS(5488), + [anon_sym__Alignas] = ACTIONS(5488), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5488), + [anon_sym_decltype] = ACTIONS(5488), + [anon_sym_template] = ACTIONS(5488), + [anon_sym_GT2] = ACTIONS(5490), + [anon_sym_operator] = ACTIONS(5488), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5488), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5488), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5488), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5488), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5488), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5488), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5488), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5488), + [anon_sym_MOZ_COLD] = ACTIONS(5488), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5488), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5488), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5488), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5488), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5488), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5488), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5488), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5488), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5488), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5488), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5488), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5488), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5488), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5488), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5488), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5488), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5488), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5488), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5488), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5488), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5488), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5488), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5488), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5488), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5488), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5488), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5488), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5488), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5488), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5488), + [anon_sym_MOZ_NONNULL] = ACTIONS(5488), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5488), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5488), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5488), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5488), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5488), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5488), + [anon_sym_MOZ_NORETURN] = ACTIONS(5488), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5488), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5488), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5488), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5488), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5488), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5488), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5488), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5488), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5488), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5488), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5488), + [anon_sym_MOZ_RAII] = ACTIONS(5488), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5488), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5488), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5488), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5488), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5488), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5488), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5488), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5488), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5488), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5488), + }, + [STATE(1571)] = { + [sym_expression] = STATE(4834), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7964), + [sym_initializer_pair] = STATE(7964), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(5276), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(5492), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1572)] = { + [sym_attribute_specifier] = STATE(1394), + [sym_identifier] = ACTIONS(5494), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5496), + [anon_sym_COMMA] = ACTIONS(5496), + [anon_sym_RPAREN] = ACTIONS(5496), + [anon_sym_LPAREN2] = ACTIONS(5496), + [anon_sym_TILDE] = ACTIONS(5496), + [anon_sym_STAR] = ACTIONS(5496), + [anon_sym_AMP_AMP] = ACTIONS(5496), + [anon_sym_AMP] = ACTIONS(5494), + [anon_sym_SEMI] = ACTIONS(5496), + [anon_sym___extension__] = ACTIONS(5494), + [anon_sym_virtual] = ACTIONS(5494), + [anon_sym_extern] = ACTIONS(5494), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(5496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5496), + [anon_sym___declspec] = ACTIONS(5494), + [anon_sym___based] = ACTIONS(5494), + [anon_sym___cdecl] = ACTIONS(5494), + [anon_sym___clrcall] = ACTIONS(5494), + [anon_sym___stdcall] = ACTIONS(5494), + [anon_sym___fastcall] = ACTIONS(5494), + [anon_sym___thiscall] = ACTIONS(5494), + [anon_sym___vectorcall] = ACTIONS(5494), + [anon_sym_LBRACK] = ACTIONS(5494), + [anon_sym_static] = ACTIONS(5494), + [anon_sym_EQ] = ACTIONS(5496), + [anon_sym_register] = ACTIONS(5494), + [anon_sym_inline] = ACTIONS(5494), + [anon_sym___inline] = ACTIONS(5494), + [anon_sym___inline__] = ACTIONS(5494), + [anon_sym___forceinline] = ACTIONS(5494), + [anon_sym_thread_local] = ACTIONS(5494), + [anon_sym___thread] = ACTIONS(5494), + [anon_sym_const] = ACTIONS(5494), + [anon_sym_constexpr] = ACTIONS(5494), + [anon_sym_volatile] = ACTIONS(5494), + [anon_sym_restrict] = ACTIONS(5494), + [anon_sym___restrict__] = ACTIONS(5494), + [anon_sym__Atomic] = ACTIONS(5494), + [anon_sym__Noreturn] = ACTIONS(5494), + [anon_sym_noreturn] = ACTIONS(5494), + [anon_sym__Nonnull] = ACTIONS(5494), + [anon_sym_mutable] = ACTIONS(5494), + [anon_sym_constinit] = ACTIONS(5494), + [anon_sym_consteval] = ACTIONS(5494), + [anon_sym_alignas] = ACTIONS(5494), + [anon_sym__Alignas] = ACTIONS(5494), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5494), + [anon_sym_decltype] = ACTIONS(5494), + [anon_sym_template] = ACTIONS(5494), + [anon_sym_GT2] = ACTIONS(5496), + [anon_sym_operator] = ACTIONS(5494), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5494), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5494), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5494), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5494), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5494), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5494), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5494), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5494), + [anon_sym_MOZ_COLD] = ACTIONS(5494), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5494), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5494), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5494), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5494), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5494), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5494), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5494), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5494), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5494), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5494), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5494), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5494), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5494), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5494), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5494), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5494), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5494), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5494), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5494), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5494), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5494), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5494), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5494), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5494), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5494), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5494), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5494), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5494), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5494), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5494), + [anon_sym_MOZ_NONNULL] = ACTIONS(5494), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5494), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5494), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5494), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5494), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5494), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5494), + [anon_sym_MOZ_NORETURN] = ACTIONS(5494), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5494), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5494), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5494), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5494), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5494), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5494), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5494), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5494), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5494), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5494), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5494), + [anon_sym_MOZ_RAII] = ACTIONS(5494), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5494), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5494), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5494), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5494), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5494), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5494), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5494), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5494), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5494), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5494), + }, + [STATE(1573)] = { + [sym_expression] = STATE(4834), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7964), + [sym_initializer_pair] = STATE(7964), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(5276), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(5498), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1574)] = { + [sym_attribute_specifier] = STATE(1388), + [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_STAR] = ACTIONS(5502), + [anon_sym_AMP_AMP] = ACTIONS(5502), + [anon_sym_AMP] = ACTIONS(5500), + [anon_sym_SEMI] = ACTIONS(5502), + [anon_sym___extension__] = ACTIONS(5500), + [anon_sym_virtual] = ACTIONS(5500), + [anon_sym_extern] = ACTIONS(5500), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(5502), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5502), + [anon_sym___declspec] = ACTIONS(5500), + [anon_sym___based] = ACTIONS(5500), + [anon_sym___cdecl] = ACTIONS(5500), + [anon_sym___clrcall] = ACTIONS(5500), + [anon_sym___stdcall] = ACTIONS(5500), + [anon_sym___fastcall] = ACTIONS(5500), + [anon_sym___thiscall] = ACTIONS(5500), + [anon_sym___vectorcall] = ACTIONS(5500), + [anon_sym_LBRACK] = ACTIONS(5500), + [anon_sym_static] = ACTIONS(5500), + [anon_sym_EQ] = ACTIONS(5502), + [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__Nonnull] = ACTIONS(5500), + [anon_sym_mutable] = ACTIONS(5500), + [anon_sym_constinit] = ACTIONS(5500), + [anon_sym_consteval] = ACTIONS(5500), + [anon_sym_alignas] = ACTIONS(5500), + [anon_sym__Alignas] = ACTIONS(5500), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5500), + [anon_sym_decltype] = ACTIONS(5500), + [anon_sym_template] = ACTIONS(5500), + [anon_sym_GT2] = ACTIONS(5502), + [anon_sym_operator] = ACTIONS(5500), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5500), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5500), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5500), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5500), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5500), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5500), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5500), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5500), + [anon_sym_MOZ_COLD] = ACTIONS(5500), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5500), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5500), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5500), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5500), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5500), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5500), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5500), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5500), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5500), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5500), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5500), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5500), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5500), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5500), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5500), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5500), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5500), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5500), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5500), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5500), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5500), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5500), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5500), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5500), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5500), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5500), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5500), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5500), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5500), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5500), + [anon_sym_MOZ_NONNULL] = ACTIONS(5500), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5500), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5500), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5500), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5500), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5500), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5500), + [anon_sym_MOZ_NORETURN] = ACTIONS(5500), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5500), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5500), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5500), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5500), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5500), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5500), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5500), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5500), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5500), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5500), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5500), + [anon_sym_MOZ_RAII] = ACTIONS(5500), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5500), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5500), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5500), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5500), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5500), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5500), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5500), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5500), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5500), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5500), + }, + [STATE(1575)] = { + [sym_attribute_specifier] = STATE(1371), + [sym_enumerator_list] = STATE(1570), + [sym__enum_base_clause] = STATE(1478), + [sym_identifier] = ACTIONS(5504), + [anon_sym_COMMA] = ACTIONS(5506), + [anon_sym_LPAREN2] = ACTIONS(5506), + [anon_sym_TILDE] = ACTIONS(5506), + [anon_sym_STAR] = ACTIONS(5506), + [anon_sym_AMP_AMP] = ACTIONS(5506), + [anon_sym_AMP] = ACTIONS(5504), + [anon_sym_SEMI] = ACTIONS(5506), + [anon_sym___extension__] = ACTIONS(5504), + [anon_sym_virtual] = ACTIONS(5504), + [anon_sym_extern] = ACTIONS(5504), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(5506), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5506), + [anon_sym___declspec] = ACTIONS(5504), + [anon_sym___based] = ACTIONS(5504), + [anon_sym___cdecl] = ACTIONS(5504), + [anon_sym___clrcall] = ACTIONS(5504), + [anon_sym___stdcall] = ACTIONS(5504), + [anon_sym___fastcall] = ACTIONS(5504), + [anon_sym___thiscall] = ACTIONS(5504), + [anon_sym___vectorcall] = ACTIONS(5504), + [anon_sym_LBRACE] = ACTIONS(5250), + [anon_sym_LBRACK] = ACTIONS(5504), + [anon_sym_static] = ACTIONS(5504), + [anon_sym_register] = ACTIONS(5504), + [anon_sym_inline] = ACTIONS(5504), + [anon_sym___inline] = ACTIONS(5504), + [anon_sym___inline__] = ACTIONS(5504), + [anon_sym___forceinline] = ACTIONS(5504), + [anon_sym_thread_local] = ACTIONS(5504), + [anon_sym___thread] = ACTIONS(5504), + [anon_sym_const] = ACTIONS(5504), + [anon_sym_constexpr] = ACTIONS(5504), + [anon_sym_volatile] = ACTIONS(5504), + [anon_sym_restrict] = ACTIONS(5504), + [anon_sym___restrict__] = ACTIONS(5504), + [anon_sym__Atomic] = ACTIONS(5504), + [anon_sym__Noreturn] = ACTIONS(5504), + [anon_sym_noreturn] = ACTIONS(5504), + [anon_sym__Nonnull] = ACTIONS(5504), + [anon_sym_mutable] = ACTIONS(5504), + [anon_sym_constinit] = ACTIONS(5504), + [anon_sym_consteval] = ACTIONS(5504), + [anon_sym_alignas] = ACTIONS(5504), + [anon_sym__Alignas] = ACTIONS(5504), + [anon_sym_COLON] = ACTIONS(5458), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5504), + [anon_sym_decltype] = ACTIONS(5504), + [anon_sym_template] = ACTIONS(5504), + [anon_sym_operator] = ACTIONS(5504), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5504), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5504), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5504), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5504), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5504), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5504), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5504), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5504), + [anon_sym_MOZ_COLD] = ACTIONS(5504), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5504), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5504), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5504), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5504), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5504), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5504), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5504), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5504), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5504), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5504), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5504), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5504), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5504), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5504), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5504), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5504), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5504), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5504), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5504), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5504), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_NONNULL] = ACTIONS(5504), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5504), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5504), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5504), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5504), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5504), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_NORETURN] = ACTIONS(5504), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5504), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5504), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5504), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5504), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5504), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5504), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5504), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5504), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5504), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5504), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5504), + [anon_sym_MOZ_RAII] = ACTIONS(5504), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5504), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5504), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5504), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5504), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5504), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5504), + }, + [STATE(1576)] = { + [sym_expression] = STATE(4834), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7964), + [sym_initializer_pair] = STATE(7964), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(5276), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(5508), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1577)] = { + [sym_expression] = STATE(4834), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7964), + [sym_initializer_pair] = STATE(7964), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(5276), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1578)] = { + [sym_attribute_specifier] = STATE(1389), + [sym_identifier] = ACTIONS(5512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5514), + [anon_sym_COMMA] = ACTIONS(5514), + [anon_sym_RPAREN] = ACTIONS(5514), + [anon_sym_LPAREN2] = ACTIONS(5514), + [anon_sym_TILDE] = ACTIONS(5514), + [anon_sym_STAR] = ACTIONS(5514), + [anon_sym_AMP_AMP] = ACTIONS(5514), + [anon_sym_AMP] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5514), + [anon_sym___extension__] = ACTIONS(5512), + [anon_sym_virtual] = ACTIONS(5512), + [anon_sym_extern] = ACTIONS(5512), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(5514), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5514), + [anon_sym___declspec] = ACTIONS(5512), + [anon_sym___based] = ACTIONS(5512), + [anon_sym___cdecl] = ACTIONS(5512), + [anon_sym___clrcall] = ACTIONS(5512), + [anon_sym___stdcall] = ACTIONS(5512), + [anon_sym___fastcall] = ACTIONS(5512), + [anon_sym___thiscall] = ACTIONS(5512), + [anon_sym___vectorcall] = ACTIONS(5512), + [anon_sym_LBRACK] = ACTIONS(5512), + [anon_sym_static] = ACTIONS(5512), + [anon_sym_EQ] = ACTIONS(5514), + [anon_sym_register] = ACTIONS(5512), + [anon_sym_inline] = ACTIONS(5512), + [anon_sym___inline] = ACTIONS(5512), + [anon_sym___inline__] = ACTIONS(5512), + [anon_sym___forceinline] = ACTIONS(5512), + [anon_sym_thread_local] = ACTIONS(5512), + [anon_sym___thread] = ACTIONS(5512), + [anon_sym_const] = ACTIONS(5512), + [anon_sym_constexpr] = ACTIONS(5512), + [anon_sym_volatile] = ACTIONS(5512), + [anon_sym_restrict] = ACTIONS(5512), + [anon_sym___restrict__] = ACTIONS(5512), + [anon_sym__Atomic] = ACTIONS(5512), + [anon_sym__Noreturn] = ACTIONS(5512), + [anon_sym_noreturn] = ACTIONS(5512), + [anon_sym__Nonnull] = ACTIONS(5512), + [anon_sym_mutable] = ACTIONS(5512), + [anon_sym_constinit] = ACTIONS(5512), + [anon_sym_consteval] = ACTIONS(5512), + [anon_sym_alignas] = ACTIONS(5512), + [anon_sym__Alignas] = ACTIONS(5512), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5512), + [anon_sym_decltype] = ACTIONS(5512), + [anon_sym_template] = ACTIONS(5512), + [anon_sym_GT2] = ACTIONS(5514), + [anon_sym_operator] = ACTIONS(5512), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5512), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5512), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5512), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5512), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5512), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5512), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5512), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5512), + [anon_sym_MOZ_COLD] = ACTIONS(5512), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5512), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5512), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5512), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5512), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5512), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5512), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5512), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5512), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5512), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5512), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5512), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5512), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5512), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5512), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5512), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5512), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5512), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5512), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5512), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5512), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5512), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5512), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5512), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5512), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5512), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5512), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5512), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5512), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5512), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5512), + [anon_sym_MOZ_NONNULL] = ACTIONS(5512), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5512), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5512), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5512), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5512), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5512), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5512), + [anon_sym_MOZ_NORETURN] = ACTIONS(5512), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5512), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5512), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5512), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5512), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5512), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5512), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5512), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5512), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5512), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5512), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5512), + [anon_sym_MOZ_RAII] = ACTIONS(5512), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5512), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5512), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5512), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5512), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5512), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5512), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5512), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5512), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5512), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5512), + }, + [STATE(1579)] = { + [sym_attribute_specifier] = STATE(1411), + [sym_identifier] = ACTIONS(5516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5518), + [anon_sym_COMMA] = ACTIONS(5518), + [anon_sym_RPAREN] = ACTIONS(5518), + [anon_sym_LPAREN2] = ACTIONS(5518), + [anon_sym_TILDE] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5518), + [anon_sym_AMP_AMP] = ACTIONS(5518), + [anon_sym_AMP] = ACTIONS(5516), + [anon_sym_SEMI] = ACTIONS(5518), + [anon_sym___extension__] = ACTIONS(5516), + [anon_sym_virtual] = ACTIONS(5516), + [anon_sym_extern] = ACTIONS(5516), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(5518), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5518), + [anon_sym___declspec] = ACTIONS(5516), + [anon_sym___based] = ACTIONS(5516), + [anon_sym___cdecl] = ACTIONS(5516), + [anon_sym___clrcall] = ACTIONS(5516), + [anon_sym___stdcall] = ACTIONS(5516), + [anon_sym___fastcall] = ACTIONS(5516), + [anon_sym___thiscall] = ACTIONS(5516), + [anon_sym___vectorcall] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [anon_sym_static] = ACTIONS(5516), + [anon_sym_EQ] = ACTIONS(5518), + [anon_sym_register] = ACTIONS(5516), + [anon_sym_inline] = ACTIONS(5516), + [anon_sym___inline] = ACTIONS(5516), + [anon_sym___inline__] = ACTIONS(5516), + [anon_sym___forceinline] = ACTIONS(5516), + [anon_sym_thread_local] = ACTIONS(5516), + [anon_sym___thread] = ACTIONS(5516), + [anon_sym_const] = ACTIONS(5516), + [anon_sym_constexpr] = ACTIONS(5516), + [anon_sym_volatile] = ACTIONS(5516), + [anon_sym_restrict] = ACTIONS(5516), + [anon_sym___restrict__] = ACTIONS(5516), + [anon_sym__Atomic] = ACTIONS(5516), + [anon_sym__Noreturn] = ACTIONS(5516), + [anon_sym_noreturn] = ACTIONS(5516), + [anon_sym__Nonnull] = ACTIONS(5516), + [anon_sym_mutable] = ACTIONS(5516), + [anon_sym_constinit] = ACTIONS(5516), + [anon_sym_consteval] = ACTIONS(5516), + [anon_sym_alignas] = ACTIONS(5516), + [anon_sym__Alignas] = ACTIONS(5516), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5516), + [anon_sym_decltype] = ACTIONS(5516), + [anon_sym_template] = ACTIONS(5516), + [anon_sym_GT2] = ACTIONS(5518), + [anon_sym_operator] = ACTIONS(5516), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5516), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5516), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5516), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5516), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5516), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5516), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5516), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5516), + [anon_sym_MOZ_COLD] = ACTIONS(5516), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5516), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5516), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5516), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5516), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5516), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5516), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5516), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5516), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5516), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5516), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5516), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5516), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5516), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5516), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5516), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5516), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5516), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5516), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5516), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5516), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5516), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5516), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5516), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5516), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5516), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5516), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5516), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5516), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5516), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5516), + [anon_sym_MOZ_NONNULL] = ACTIONS(5516), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5516), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5516), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5516), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5516), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5516), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5516), + [anon_sym_MOZ_NORETURN] = ACTIONS(5516), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5516), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5516), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5516), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5516), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5516), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5516), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5516), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5516), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5516), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5516), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5516), + [anon_sym_MOZ_RAII] = ACTIONS(5516), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5516), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5516), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5516), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5516), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5516), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5516), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5516), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5516), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5516), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5516), + }, + [STATE(1580)] = { + [sym_expression] = STATE(4834), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7964), + [sym_initializer_pair] = STATE(7964), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(5276), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1581)] = { + [sym_attribute_specifier] = STATE(1412), + [sym_identifier] = ACTIONS(5522), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5524), + [anon_sym_COMMA] = ACTIONS(5524), + [anon_sym_RPAREN] = ACTIONS(5524), + [anon_sym_LPAREN2] = ACTIONS(5524), + [anon_sym_TILDE] = ACTIONS(5524), + [anon_sym_STAR] = ACTIONS(5524), + [anon_sym_AMP_AMP] = ACTIONS(5524), + [anon_sym_AMP] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5524), + [anon_sym___extension__] = ACTIONS(5522), + [anon_sym_virtual] = ACTIONS(5522), + [anon_sym_extern] = ACTIONS(5522), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(5524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5524), + [anon_sym___declspec] = ACTIONS(5522), + [anon_sym___based] = ACTIONS(5522), + [anon_sym___cdecl] = ACTIONS(5522), + [anon_sym___clrcall] = ACTIONS(5522), + [anon_sym___stdcall] = ACTIONS(5522), + [anon_sym___fastcall] = ACTIONS(5522), + [anon_sym___thiscall] = ACTIONS(5522), + [anon_sym___vectorcall] = ACTIONS(5522), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_static] = ACTIONS(5522), + [anon_sym_EQ] = ACTIONS(5524), + [anon_sym_register] = ACTIONS(5522), + [anon_sym_inline] = ACTIONS(5522), + [anon_sym___inline] = ACTIONS(5522), + [anon_sym___inline__] = ACTIONS(5522), + [anon_sym___forceinline] = ACTIONS(5522), + [anon_sym_thread_local] = ACTIONS(5522), + [anon_sym___thread] = ACTIONS(5522), + [anon_sym_const] = ACTIONS(5522), + [anon_sym_constexpr] = ACTIONS(5522), + [anon_sym_volatile] = ACTIONS(5522), + [anon_sym_restrict] = ACTIONS(5522), + [anon_sym___restrict__] = ACTIONS(5522), + [anon_sym__Atomic] = ACTIONS(5522), + [anon_sym__Noreturn] = ACTIONS(5522), + [anon_sym_noreturn] = ACTIONS(5522), + [anon_sym__Nonnull] = ACTIONS(5522), + [anon_sym_mutable] = ACTIONS(5522), + [anon_sym_constinit] = ACTIONS(5522), + [anon_sym_consteval] = ACTIONS(5522), + [anon_sym_alignas] = ACTIONS(5522), + [anon_sym__Alignas] = ACTIONS(5522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5522), + [anon_sym_decltype] = ACTIONS(5522), + [anon_sym_template] = ACTIONS(5522), + [anon_sym_GT2] = ACTIONS(5524), + [anon_sym_operator] = ACTIONS(5522), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5522), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5522), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5522), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5522), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5522), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5522), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5522), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5522), + [anon_sym_MOZ_COLD] = ACTIONS(5522), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5522), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5522), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5522), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5522), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5522), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5522), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5522), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5522), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5522), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5522), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5522), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5522), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5522), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5522), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5522), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5522), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5522), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5522), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5522), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5522), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5522), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5522), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5522), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5522), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5522), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5522), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5522), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5522), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5522), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5522), + [anon_sym_MOZ_NONNULL] = ACTIONS(5522), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5522), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5522), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5522), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5522), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5522), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5522), + [anon_sym_MOZ_NORETURN] = ACTIONS(5522), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5522), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5522), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5522), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5522), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5522), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5522), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5522), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5522), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5522), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5522), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5522), + [anon_sym_MOZ_RAII] = ACTIONS(5522), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5522), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5522), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5522), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5522), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5522), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5522), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5522), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5522), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5522), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5522), + }, + [STATE(1582)] = { + [sym_identifier] = ACTIONS(5204), + [anon_sym_LPAREN2] = ACTIONS(5206), + [anon_sym_TILDE] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5204), + [anon_sym___extension__] = ACTIONS(5204), + [anon_sym_virtual] = ACTIONS(5204), + [anon_sym_extern] = ACTIONS(5204), + [anon_sym___attribute__] = ACTIONS(5204), + [anon_sym___attribute] = ACTIONS(5204), + [anon_sym_COLON_COLON] = ACTIONS(5206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5206), + [anon_sym___declspec] = ACTIONS(5204), + [anon_sym___based] = ACTIONS(5204), + [anon_sym_signed] = ACTIONS(5204), + [anon_sym_unsigned] = ACTIONS(5204), + [anon_sym_long] = ACTIONS(5204), + [anon_sym_short] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_static] = ACTIONS(5204), + [anon_sym_register] = ACTIONS(5204), + [anon_sym_inline] = ACTIONS(5204), + [anon_sym___inline] = ACTIONS(5204), + [anon_sym___inline__] = ACTIONS(5204), + [anon_sym___forceinline] = ACTIONS(5204), + [anon_sym_thread_local] = ACTIONS(5204), + [anon_sym___thread] = ACTIONS(5204), + [anon_sym_const] = ACTIONS(5204), + [anon_sym_constexpr] = ACTIONS(5204), + [anon_sym_volatile] = ACTIONS(5204), + [anon_sym_restrict] = ACTIONS(5204), + [anon_sym___restrict__] = ACTIONS(5204), + [anon_sym__Atomic] = ACTIONS(5204), + [anon_sym__Noreturn] = ACTIONS(5204), + [anon_sym_noreturn] = ACTIONS(5204), + [anon_sym__Nonnull] = ACTIONS(5204), + [anon_sym_mutable] = ACTIONS(5204), + [anon_sym_constinit] = ACTIONS(5204), + [anon_sym_consteval] = ACTIONS(5204), + [anon_sym_alignas] = ACTIONS(5204), + [anon_sym__Alignas] = ACTIONS(5204), + [sym_primitive_type] = ACTIONS(5204), + [anon_sym_enum] = ACTIONS(5204), + [anon_sym_class] = ACTIONS(5204), + [anon_sym_struct] = ACTIONS(5204), + [anon_sym_union] = ACTIONS(5204), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5204), + [anon_sym_decltype] = ACTIONS(5204), + [anon_sym_explicit] = ACTIONS(5204), + [anon_sym_typename] = ACTIONS(5204), + [anon_sym_template] = ACTIONS(5204), + [anon_sym_operator] = ACTIONS(5204), + [anon_sym_namespace] = ACTIONS(5526), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5204), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5204), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5204), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5204), + [anon_sym_MOZ_COLD] = ACTIONS(5204), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5204), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5204), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5204), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5204), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5204), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5204), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5204), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5204), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5204), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5204), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5204), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5204), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5204), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_NONNULL] = ACTIONS(5204), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5204), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5204), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5204), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5204), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5204), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5204), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5204), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5204), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5204), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5204), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5204), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5204), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5204), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5204), + [anon_sym_MOZ_RAII] = ACTIONS(5204), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5204), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5204), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5204), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5204), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5204), + }, + [STATE(1583)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1234), + [anon_sym_COMMA] = ACTIONS(5182), + [anon_sym_RPAREN] = ACTIONS(5182), + [anon_sym_LPAREN2] = ACTIONS(5182), + [anon_sym_STAR] = ACTIONS(5182), + [anon_sym_AMP_AMP] = ACTIONS(5182), + [anon_sym_AMP] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5182), + [anon_sym___extension__] = ACTIONS(5182), + [anon_sym_virtual] = ACTIONS(5182), + [anon_sym_extern] = ACTIONS(5182), + [anon_sym___attribute__] = ACTIONS(5182), + [anon_sym___attribute] = ACTIONS(5180), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5182), + [anon_sym___declspec] = ACTIONS(5182), + [anon_sym_LBRACE] = ACTIONS(5182), + [anon_sym_signed] = ACTIONS(5528), + [anon_sym_unsigned] = ACTIONS(5528), + [anon_sym_long] = ACTIONS(5528), + [anon_sym_short] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5180), + [anon_sym_static] = ACTIONS(5182), + [anon_sym_EQ] = ACTIONS(5182), + [anon_sym_register] = ACTIONS(5182), + [anon_sym_inline] = ACTIONS(5182), + [anon_sym___inline] = ACTIONS(5180), + [anon_sym___inline__] = ACTIONS(5182), + [anon_sym___forceinline] = ACTIONS(5182), + [anon_sym_thread_local] = ACTIONS(5182), + [anon_sym___thread] = ACTIONS(5182), + [anon_sym_const] = ACTIONS(5180), + [anon_sym_constexpr] = ACTIONS(5182), + [anon_sym_volatile] = ACTIONS(5182), + [anon_sym_restrict] = ACTIONS(5182), + [anon_sym___restrict__] = ACTIONS(5182), + [anon_sym__Atomic] = ACTIONS(5182), + [anon_sym__Noreturn] = ACTIONS(5182), + [anon_sym_noreturn] = ACTIONS(5182), + [anon_sym__Nonnull] = ACTIONS(5182), + [anon_sym_mutable] = ACTIONS(5182), + [anon_sym_constinit] = ACTIONS(5182), + [anon_sym_consteval] = ACTIONS(5182), + [anon_sym_alignas] = ACTIONS(5182), + [anon_sym__Alignas] = ACTIONS(5182), + [anon_sym_asm] = ACTIONS(5182), + [anon_sym___asm__] = ACTIONS(5182), + [anon_sym___asm] = ACTIONS(5180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5182), + [anon_sym_decltype] = ACTIONS(5182), + [anon_sym_final] = ACTIONS(5182), + [anon_sym_override] = ACTIONS(5182), + [anon_sym_GT2] = ACTIONS(5182), + [anon_sym_try] = ACTIONS(5182), + [anon_sym_requires] = ACTIONS(5182), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5182), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5182), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5180), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5182), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5182), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5180), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5182), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5182), + [anon_sym_MOZ_COLD] = ACTIONS(5182), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5182), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5182), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5182), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5182), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5182), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5180), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5182), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5182), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5182), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5182), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5182), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5182), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5182), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5182), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5182), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5182), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5182), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5182), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5182), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5182), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5182), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5182), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5180), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5182), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5182), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5182), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5182), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5180), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5182), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5182), + [anon_sym_MOZ_NONNULL] = ACTIONS(5180), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5182), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5182), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5182), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5182), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5182), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5182), + [anon_sym_MOZ_NORETURN] = ACTIONS(5180), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5182), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5182), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5182), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5182), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5182), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5182), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5182), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5182), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5182), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5182), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5182), + [anon_sym_MOZ_RAII] = ACTIONS(5182), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5182), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5182), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5182), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5182), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5182), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5182), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5182), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5182), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5182), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5182), + }, + [STATE(1584)] = { + [sym_template_argument_list] = STATE(1469), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(3095), + [anon_sym_RPAREN] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT] = ACTIONS(5530), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3095), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_GT2] = ACTIONS(3095), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(1585)] = { + [sym_expression] = STATE(5018), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_lambda_default_capture] = STATE(8007), + [sym__lambda_capture_identifier] = STATE(7703), + [sym_lambda_capture_initializer] = STATE(7703), + [sym__lambda_capture] = STATE(7703), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_identifier_parameter_pack_expansion] = STATE(7703), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3968), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5534), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(5538), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(5540), + [anon_sym_EQ] = ACTIONS(5542), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(5544), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1586)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1234), + [anon_sym_COMMA] = ACTIONS(5166), + [anon_sym_RPAREN] = ACTIONS(5166), + [anon_sym_LPAREN2] = ACTIONS(5166), + [anon_sym_STAR] = ACTIONS(5166), + [anon_sym_AMP_AMP] = ACTIONS(5166), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_SEMI] = ACTIONS(5166), + [anon_sym___extension__] = ACTIONS(5166), + [anon_sym_virtual] = ACTIONS(5166), + [anon_sym_extern] = ACTIONS(5166), + [anon_sym___attribute__] = ACTIONS(5166), + [anon_sym___attribute] = ACTIONS(5164), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5166), + [anon_sym___declspec] = ACTIONS(5166), + [anon_sym_LBRACE] = ACTIONS(5166), + [anon_sym_signed] = ACTIONS(5528), + [anon_sym_unsigned] = ACTIONS(5528), + [anon_sym_long] = ACTIONS(5528), + [anon_sym_short] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5164), + [anon_sym_static] = ACTIONS(5166), + [anon_sym_EQ] = ACTIONS(5166), + [anon_sym_register] = ACTIONS(5166), + [anon_sym_inline] = ACTIONS(5166), + [anon_sym___inline] = ACTIONS(5164), + [anon_sym___inline__] = ACTIONS(5166), + [anon_sym___forceinline] = ACTIONS(5166), + [anon_sym_thread_local] = ACTIONS(5166), + [anon_sym___thread] = ACTIONS(5166), + [anon_sym_const] = ACTIONS(5164), + [anon_sym_constexpr] = ACTIONS(5166), + [anon_sym_volatile] = ACTIONS(5166), + [anon_sym_restrict] = ACTIONS(5166), + [anon_sym___restrict__] = ACTIONS(5166), + [anon_sym__Atomic] = ACTIONS(5166), + [anon_sym__Noreturn] = ACTIONS(5166), + [anon_sym_noreturn] = ACTIONS(5166), + [anon_sym__Nonnull] = ACTIONS(5166), + [anon_sym_mutable] = ACTIONS(5166), + [anon_sym_constinit] = ACTIONS(5166), + [anon_sym_consteval] = ACTIONS(5166), + [anon_sym_alignas] = ACTIONS(5166), + [anon_sym__Alignas] = ACTIONS(5166), + [anon_sym_asm] = ACTIONS(5166), + [anon_sym___asm__] = ACTIONS(5166), + [anon_sym___asm] = ACTIONS(5164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5166), + [anon_sym_decltype] = ACTIONS(5166), + [anon_sym_final] = ACTIONS(5166), + [anon_sym_override] = ACTIONS(5166), + [anon_sym_GT2] = ACTIONS(5166), + [anon_sym_try] = ACTIONS(5166), + [anon_sym_requires] = ACTIONS(5166), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5166), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5166), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5164), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5166), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5166), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5164), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5166), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5166), + [anon_sym_MOZ_COLD] = ACTIONS(5166), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5166), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5166), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5166), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5166), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5166), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5164), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5166), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5166), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5166), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5166), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5166), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5166), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5166), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5166), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5166), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5166), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5166), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5166), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5166), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5166), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5166), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5166), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5164), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5166), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5166), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5166), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5166), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5164), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5166), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5166), + [anon_sym_MOZ_NONNULL] = ACTIONS(5164), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5166), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5166), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5166), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5166), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5166), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5166), + [anon_sym_MOZ_NORETURN] = ACTIONS(5164), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5166), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5166), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5166), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5166), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5166), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5166), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5166), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5166), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5166), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5166), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5166), + [anon_sym_MOZ_RAII] = ACTIONS(5166), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5166), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5166), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5166), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5166), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5166), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5166), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5166), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5166), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5166), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5166), + }, + [STATE(1587)] = { + [sym_expression] = STATE(5018), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_lambda_default_capture] = STATE(8007), + [sym__lambda_capture_identifier] = STATE(7703), + [sym_lambda_capture_initializer] = STATE(7703), + [sym__lambda_capture] = STATE(7703), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_identifier_parameter_pack_expansion] = STATE(7703), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3968), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5534), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(5538), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(5540), + [anon_sym_EQ] = ACTIONS(5542), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(5544), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1588)] = { + [sym_expression] = STATE(4834), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7964), + [sym_initializer_pair] = STATE(7964), + [sym_subscript_designator] = STATE(7014), + [sym_subscript_range_designator] = STATE(7014), + [sym_field_designator] = STATE(7014), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [aux_sym_initializer_pair_repeat1] = STATE(7014), + [sym_identifier] = ACTIONS(5276), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(225), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1589)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1234), + [anon_sym_COMMA] = ACTIONS(5158), + [anon_sym_RPAREN] = ACTIONS(5158), + [anon_sym_LPAREN2] = ACTIONS(5158), + [anon_sym_STAR] = ACTIONS(5158), + [anon_sym_AMP_AMP] = ACTIONS(5158), + [anon_sym_AMP] = ACTIONS(5156), + [anon_sym_SEMI] = ACTIONS(5158), + [anon_sym___extension__] = ACTIONS(5158), + [anon_sym_virtual] = ACTIONS(5158), + [anon_sym_extern] = ACTIONS(5158), + [anon_sym___attribute__] = ACTIONS(5158), + [anon_sym___attribute] = ACTIONS(5156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5158), + [anon_sym___declspec] = ACTIONS(5158), + [anon_sym_LBRACE] = ACTIONS(5158), + [anon_sym_signed] = ACTIONS(5528), + [anon_sym_unsigned] = ACTIONS(5528), + [anon_sym_long] = ACTIONS(5528), + [anon_sym_short] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5156), + [anon_sym_static] = ACTIONS(5158), + [anon_sym_EQ] = ACTIONS(5158), + [anon_sym_register] = ACTIONS(5158), + [anon_sym_inline] = ACTIONS(5158), + [anon_sym___inline] = ACTIONS(5156), + [anon_sym___inline__] = ACTIONS(5158), + [anon_sym___forceinline] = ACTIONS(5158), + [anon_sym_thread_local] = ACTIONS(5158), + [anon_sym___thread] = ACTIONS(5158), + [anon_sym_const] = ACTIONS(5156), + [anon_sym_constexpr] = ACTIONS(5158), + [anon_sym_volatile] = ACTIONS(5158), + [anon_sym_restrict] = ACTIONS(5158), + [anon_sym___restrict__] = ACTIONS(5158), + [anon_sym__Atomic] = ACTIONS(5158), + [anon_sym__Noreturn] = ACTIONS(5158), + [anon_sym_noreturn] = ACTIONS(5158), + [anon_sym__Nonnull] = ACTIONS(5158), + [anon_sym_mutable] = ACTIONS(5158), + [anon_sym_constinit] = ACTIONS(5158), + [anon_sym_consteval] = ACTIONS(5158), + [anon_sym_alignas] = ACTIONS(5158), + [anon_sym__Alignas] = ACTIONS(5158), + [anon_sym_asm] = ACTIONS(5158), + [anon_sym___asm__] = ACTIONS(5158), + [anon_sym___asm] = ACTIONS(5156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5158), + [anon_sym_decltype] = ACTIONS(5158), + [anon_sym_final] = ACTIONS(5158), + [anon_sym_override] = ACTIONS(5158), + [anon_sym_GT2] = ACTIONS(5158), + [anon_sym_try] = ACTIONS(5158), + [anon_sym_requires] = ACTIONS(5158), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5158), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5158), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5156), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5158), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5158), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5156), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5158), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5158), + [anon_sym_MOZ_COLD] = ACTIONS(5158), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5158), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5158), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5158), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5158), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5158), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5156), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5158), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5158), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5158), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5158), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5158), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5158), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5158), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5158), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5158), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5158), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5158), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5158), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5158), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5158), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5158), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5158), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5156), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5158), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5158), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5158), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5158), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5156), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5158), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5158), + [anon_sym_MOZ_NONNULL] = ACTIONS(5156), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5158), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5158), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5158), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5158), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5158), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5158), + [anon_sym_MOZ_NORETURN] = ACTIONS(5156), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5158), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5158), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5158), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5158), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5158), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5158), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5158), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5158), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5158), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5158), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5158), + [anon_sym_MOZ_RAII] = ACTIONS(5158), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5158), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5158), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5158), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5158), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5158), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5158), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5158), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5158), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5158), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5158), + }, + [STATE(1590)] = { + [sym_identifier] = ACTIONS(1903), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym___extension__] = ACTIONS(1903), + [anon_sym_typedef] = ACTIONS(5548), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym___based] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1903), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1903), + [anon_sym_operator] = ACTIONS(1903), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), + }, + [STATE(1591)] = { + [sym_identifier] = ACTIONS(5204), + [anon_sym_LPAREN2] = ACTIONS(5206), + [anon_sym_TILDE] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5204), + [anon_sym___extension__] = ACTIONS(5204), + [anon_sym_virtual] = ACTIONS(5204), + [anon_sym_extern] = ACTIONS(5204), + [anon_sym___attribute__] = ACTIONS(5204), + [anon_sym___attribute] = ACTIONS(5204), + [anon_sym_COLON_COLON] = ACTIONS(5206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5206), + [anon_sym___declspec] = ACTIONS(5204), + [anon_sym___based] = ACTIONS(5204), + [anon_sym_signed] = ACTIONS(5204), + [anon_sym_unsigned] = ACTIONS(5204), + [anon_sym_long] = ACTIONS(5204), + [anon_sym_short] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_static] = ACTIONS(5204), + [anon_sym_register] = ACTIONS(5204), + [anon_sym_inline] = ACTIONS(5204), + [anon_sym___inline] = ACTIONS(5204), + [anon_sym___inline__] = ACTIONS(5204), + [anon_sym___forceinline] = ACTIONS(5204), + [anon_sym_thread_local] = ACTIONS(5204), + [anon_sym___thread] = ACTIONS(5204), + [anon_sym_const] = ACTIONS(5204), + [anon_sym_constexpr] = ACTIONS(5204), + [anon_sym_volatile] = ACTIONS(5204), + [anon_sym_restrict] = ACTIONS(5204), + [anon_sym___restrict__] = ACTIONS(5204), + [anon_sym__Atomic] = ACTIONS(5204), + [anon_sym__Noreturn] = ACTIONS(5204), + [anon_sym_noreturn] = ACTIONS(5204), + [anon_sym__Nonnull] = ACTIONS(5204), + [anon_sym_mutable] = ACTIONS(5204), + [anon_sym_constinit] = ACTIONS(5204), + [anon_sym_consteval] = ACTIONS(5204), + [anon_sym_alignas] = ACTIONS(5204), + [anon_sym__Alignas] = ACTIONS(5204), + [sym_primitive_type] = ACTIONS(5204), + [anon_sym_enum] = ACTIONS(5204), + [anon_sym_class] = ACTIONS(5204), + [anon_sym_struct] = ACTIONS(5204), + [anon_sym_union] = ACTIONS(5204), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5204), + [anon_sym_decltype] = ACTIONS(5204), + [anon_sym_explicit] = ACTIONS(5204), + [anon_sym_typename] = ACTIONS(5204), + [anon_sym_template] = ACTIONS(5204), + [anon_sym_operator] = ACTIONS(5204), + [anon_sym_namespace] = ACTIONS(5550), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5204), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5204), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5204), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5204), + [anon_sym_MOZ_COLD] = ACTIONS(5204), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5204), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5204), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5204), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5204), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5204), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5204), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5204), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5204), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5204), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5204), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5204), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5204), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5204), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_NONNULL] = ACTIONS(5204), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5204), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5204), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5204), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5204), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5204), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5204), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5204), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5204), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5204), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5204), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5204), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5204), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5204), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5204), + [anon_sym_MOZ_RAII] = ACTIONS(5204), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5204), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5204), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5204), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5204), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5204), + }, + [STATE(1592)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1234), + [anon_sym_COMMA] = ACTIONS(5154), + [anon_sym_RPAREN] = ACTIONS(5154), + [anon_sym_LPAREN2] = ACTIONS(5154), + [anon_sym_STAR] = ACTIONS(5154), + [anon_sym_AMP_AMP] = ACTIONS(5154), + [anon_sym_AMP] = ACTIONS(5152), + [anon_sym_SEMI] = ACTIONS(5154), + [anon_sym___extension__] = ACTIONS(5154), + [anon_sym_virtual] = ACTIONS(5154), + [anon_sym_extern] = ACTIONS(5154), + [anon_sym___attribute__] = ACTIONS(5154), + [anon_sym___attribute] = ACTIONS(5152), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5154), + [anon_sym___declspec] = ACTIONS(5154), + [anon_sym_LBRACE] = ACTIONS(5154), + [anon_sym_signed] = ACTIONS(5528), + [anon_sym_unsigned] = ACTIONS(5528), + [anon_sym_long] = ACTIONS(5528), + [anon_sym_short] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5152), + [anon_sym_static] = ACTIONS(5154), + [anon_sym_EQ] = ACTIONS(5154), + [anon_sym_register] = ACTIONS(5154), + [anon_sym_inline] = ACTIONS(5154), + [anon_sym___inline] = ACTIONS(5152), + [anon_sym___inline__] = ACTIONS(5154), + [anon_sym___forceinline] = ACTIONS(5154), + [anon_sym_thread_local] = ACTIONS(5154), + [anon_sym___thread] = ACTIONS(5154), + [anon_sym_const] = ACTIONS(5152), + [anon_sym_constexpr] = ACTIONS(5154), + [anon_sym_volatile] = ACTIONS(5154), + [anon_sym_restrict] = ACTIONS(5154), + [anon_sym___restrict__] = ACTIONS(5154), + [anon_sym__Atomic] = ACTIONS(5154), + [anon_sym__Noreturn] = ACTIONS(5154), + [anon_sym_noreturn] = ACTIONS(5154), + [anon_sym__Nonnull] = ACTIONS(5154), + [anon_sym_mutable] = ACTIONS(5154), + [anon_sym_constinit] = ACTIONS(5154), + [anon_sym_consteval] = ACTIONS(5154), + [anon_sym_alignas] = ACTIONS(5154), + [anon_sym__Alignas] = ACTIONS(5154), + [anon_sym_asm] = ACTIONS(5154), + [anon_sym___asm__] = ACTIONS(5154), + [anon_sym___asm] = ACTIONS(5152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5154), + [anon_sym_decltype] = ACTIONS(5154), + [anon_sym_final] = ACTIONS(5154), + [anon_sym_override] = ACTIONS(5154), + [anon_sym_GT2] = ACTIONS(5154), + [anon_sym_try] = ACTIONS(5154), + [anon_sym_requires] = ACTIONS(5154), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5154), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5154), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5152), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5154), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5154), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5152), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5154), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5154), + [anon_sym_MOZ_COLD] = ACTIONS(5154), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5154), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5154), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5154), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5154), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5154), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5152), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5154), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5154), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5154), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5154), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5154), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5154), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5154), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5154), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5154), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5154), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5154), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5154), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5154), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5154), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5154), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5154), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5152), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5154), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5154), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5154), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5154), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5152), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5154), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5154), + [anon_sym_MOZ_NONNULL] = ACTIONS(5152), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5154), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5154), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5154), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5154), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5154), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5154), + [anon_sym_MOZ_NORETURN] = ACTIONS(5152), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5154), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5154), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5154), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5154), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5154), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5154), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5154), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5154), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5154), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5154), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5154), + [anon_sym_MOZ_RAII] = ACTIONS(5154), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5154), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5154), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5154), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5154), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5154), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5154), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5154), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5154), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5154), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5154), + }, + [STATE(1593)] = { + [sym_identifier] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1893), + [anon_sym_COMMA] = ACTIONS(1893), + [anon_sym_RPAREN] = ACTIONS(1893), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym___extension__] = ACTIONS(1903), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym___based] = ACTIONS(1903), + [anon_sym___cdecl] = ACTIONS(1903), + [anon_sym___clrcall] = ACTIONS(1903), + [anon_sym___stdcall] = ACTIONS(1903), + [anon_sym___fastcall] = ACTIONS(1903), + [anon_sym___thiscall] = ACTIONS(1903), + [anon_sym___vectorcall] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_EQ] = ACTIONS(1893), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1903), + [anon_sym_GT2] = ACTIONS(1893), + [anon_sym_operator] = ACTIONS(1903), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), + }, + [STATE(1594)] = { + [sym_identifier] = ACTIONS(1903), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym___extension__] = ACTIONS(1903), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym___based] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1903), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1903), + [anon_sym_operator] = ACTIONS(1903), + [anon_sym_friend] = ACTIONS(5552), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), + }, + [STATE(1595)] = { + [sym_identifier] = ACTIONS(1903), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym___extension__] = ACTIONS(1903), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym___based] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1903), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1903), + [anon_sym_operator] = ACTIONS(1903), + [anon_sym_friend] = ACTIONS(5554), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), + }, + [STATE(1596)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1613), + [anon_sym_COMMA] = ACTIONS(4819), + [anon_sym_RPAREN] = ACTIONS(4819), + [anon_sym_LPAREN2] = ACTIONS(4819), + [anon_sym_STAR] = ACTIONS(4819), + [anon_sym_AMP_AMP] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4819), + [anon_sym___extension__] = ACTIONS(4819), + [anon_sym_virtual] = ACTIONS(4819), + [anon_sym_extern] = ACTIONS(4819), + [anon_sym___attribute__] = ACTIONS(4819), + [anon_sym___attribute] = ACTIONS(4817), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4819), + [anon_sym___declspec] = ACTIONS(4819), + [anon_sym_LBRACE] = ACTIONS(4819), + [anon_sym_signed] = ACTIONS(5556), + [anon_sym_unsigned] = ACTIONS(5556), + [anon_sym_long] = ACTIONS(5556), + [anon_sym_short] = ACTIONS(5556), + [anon_sym_LBRACK] = ACTIONS(4817), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_EQ] = ACTIONS(4819), + [anon_sym_register] = ACTIONS(4819), + [anon_sym_inline] = ACTIONS(4819), + [anon_sym___inline] = ACTIONS(4817), + [anon_sym___inline__] = ACTIONS(4819), + [anon_sym___forceinline] = ACTIONS(4819), + [anon_sym_thread_local] = ACTIONS(4819), + [anon_sym___thread] = ACTIONS(4819), + [anon_sym_const] = ACTIONS(4817), + [anon_sym_constexpr] = ACTIONS(4819), + [anon_sym_volatile] = ACTIONS(4819), + [anon_sym_restrict] = ACTIONS(4819), + [anon_sym___restrict__] = ACTIONS(4819), + [anon_sym__Atomic] = ACTIONS(4819), + [anon_sym__Noreturn] = ACTIONS(4819), + [anon_sym_noreturn] = ACTIONS(4819), + [anon_sym__Nonnull] = ACTIONS(4819), + [anon_sym_mutable] = ACTIONS(4819), + [anon_sym_constinit] = ACTIONS(4819), + [anon_sym_consteval] = ACTIONS(4819), + [anon_sym_alignas] = ACTIONS(4819), + [anon_sym__Alignas] = ACTIONS(4819), + [anon_sym_asm] = ACTIONS(4819), + [anon_sym___asm__] = ACTIONS(4819), + [anon_sym___asm] = ACTIONS(4817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4819), + [anon_sym_decltype] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_override] = ACTIONS(4819), + [anon_sym_GT2] = ACTIONS(4819), + [anon_sym_try] = ACTIONS(4819), + [anon_sym_requires] = ACTIONS(4819), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4819), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4819), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4817), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4819), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4819), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4817), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4819), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4819), + [anon_sym_MOZ_COLD] = ACTIONS(4819), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4819), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4819), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4819), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4819), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4819), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4817), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4819), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4819), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4819), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4819), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4819), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4819), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4819), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4819), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4819), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4819), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4819), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4819), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4819), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4819), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4819), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4819), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4817), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4819), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4819), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4819), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4819), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4817), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4819), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4819), + [anon_sym_MOZ_NONNULL] = ACTIONS(4817), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4819), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4819), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4819), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4819), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4819), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4819), + [anon_sym_MOZ_NORETURN] = ACTIONS(4817), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4819), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4819), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4819), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4819), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4819), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4819), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4819), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4819), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4819), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4819), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4819), + [anon_sym_MOZ_RAII] = ACTIONS(4819), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4819), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4819), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4819), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4819), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4819), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4819), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4819), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4819), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4819), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4819), + }, + [STATE(1597)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1586), + [anon_sym_COMMA] = ACTIONS(5196), + [anon_sym_RPAREN] = ACTIONS(5196), + [anon_sym_LPAREN2] = ACTIONS(5196), + [anon_sym_STAR] = ACTIONS(5196), + [anon_sym_AMP_AMP] = ACTIONS(5196), + [anon_sym_AMP] = ACTIONS(5194), + [anon_sym_SEMI] = ACTIONS(5196), + [anon_sym___extension__] = ACTIONS(5196), + [anon_sym_virtual] = ACTIONS(5196), + [anon_sym_extern] = ACTIONS(5196), + [anon_sym___attribute__] = ACTIONS(5196), + [anon_sym___attribute] = ACTIONS(5194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5196), + [anon_sym___declspec] = ACTIONS(5196), + [anon_sym_LBRACE] = ACTIONS(5196), + [anon_sym_signed] = ACTIONS(5558), + [anon_sym_unsigned] = ACTIONS(5558), + [anon_sym_long] = ACTIONS(5558), + [anon_sym_short] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5194), + [anon_sym_static] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_register] = ACTIONS(5196), + [anon_sym_inline] = ACTIONS(5196), + [anon_sym___inline] = ACTIONS(5194), + [anon_sym___inline__] = ACTIONS(5196), + [anon_sym___forceinline] = ACTIONS(5196), + [anon_sym_thread_local] = ACTIONS(5196), + [anon_sym___thread] = ACTIONS(5196), + [anon_sym_const] = ACTIONS(5194), + [anon_sym_constexpr] = ACTIONS(5196), + [anon_sym_volatile] = ACTIONS(5196), + [anon_sym_restrict] = ACTIONS(5196), + [anon_sym___restrict__] = ACTIONS(5196), + [anon_sym__Atomic] = ACTIONS(5196), + [anon_sym__Noreturn] = ACTIONS(5196), + [anon_sym_noreturn] = ACTIONS(5196), + [anon_sym__Nonnull] = ACTIONS(5196), + [anon_sym_mutable] = ACTIONS(5196), + [anon_sym_constinit] = ACTIONS(5196), + [anon_sym_consteval] = ACTIONS(5196), + [anon_sym_alignas] = ACTIONS(5196), + [anon_sym__Alignas] = ACTIONS(5196), + [anon_sym_asm] = ACTIONS(5196), + [anon_sym___asm__] = ACTIONS(5196), + [anon_sym___asm] = ACTIONS(5194), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5196), + [anon_sym_decltype] = ACTIONS(5196), + [anon_sym_final] = ACTIONS(5196), + [anon_sym_override] = ACTIONS(5196), + [anon_sym_GT2] = ACTIONS(5196), + [anon_sym_try] = ACTIONS(5196), + [anon_sym_requires] = ACTIONS(5196), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5196), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5196), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5194), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5196), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5196), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5194), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5196), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5196), + [anon_sym_MOZ_COLD] = ACTIONS(5196), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5196), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5196), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5196), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5196), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5196), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5194), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5196), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5196), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5196), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5196), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5196), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5196), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5196), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5196), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5196), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5196), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5196), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5196), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5196), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5196), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5196), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5196), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5194), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5196), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5196), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5196), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5196), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5194), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5196), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5196), + [anon_sym_MOZ_NONNULL] = ACTIONS(5194), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5196), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5196), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5196), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5196), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5196), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5196), + [anon_sym_MOZ_NORETURN] = ACTIONS(5194), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5196), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5196), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5196), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5196), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5196), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5196), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5196), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5196), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5196), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5196), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5196), + [anon_sym_MOZ_RAII] = ACTIONS(5196), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5196), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5196), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5196), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5196), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5196), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5196), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5196), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5196), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5196), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5196), + }, + [STATE(1598)] = { + [sym_identifier] = ACTIONS(5204), + [anon_sym_LPAREN2] = ACTIONS(5206), + [anon_sym_TILDE] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5204), + [anon_sym___extension__] = ACTIONS(5204), + [anon_sym_virtual] = ACTIONS(5204), + [anon_sym_extern] = ACTIONS(5204), + [anon_sym___attribute__] = ACTIONS(5204), + [anon_sym___attribute] = ACTIONS(5204), + [anon_sym_COLON_COLON] = ACTIONS(5206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5206), + [anon_sym___declspec] = ACTIONS(5204), + [anon_sym___based] = ACTIONS(5204), + [anon_sym_signed] = ACTIONS(5204), + [anon_sym_unsigned] = ACTIONS(5204), + [anon_sym_long] = ACTIONS(5204), + [anon_sym_short] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_static] = ACTIONS(5204), + [anon_sym_register] = ACTIONS(5204), + [anon_sym_inline] = ACTIONS(5204), + [anon_sym___inline] = ACTIONS(5204), + [anon_sym___inline__] = ACTIONS(5204), + [anon_sym___forceinline] = ACTIONS(5204), + [anon_sym_thread_local] = ACTIONS(5204), + [anon_sym___thread] = ACTIONS(5204), + [anon_sym_const] = ACTIONS(5204), + [anon_sym_constexpr] = ACTIONS(5204), + [anon_sym_volatile] = ACTIONS(5204), + [anon_sym_restrict] = ACTIONS(5204), + [anon_sym___restrict__] = ACTIONS(5204), + [anon_sym__Atomic] = ACTIONS(5204), + [anon_sym__Noreturn] = ACTIONS(5204), + [anon_sym_noreturn] = ACTIONS(5204), + [anon_sym__Nonnull] = ACTIONS(5204), + [anon_sym_mutable] = ACTIONS(5204), + [anon_sym_constinit] = ACTIONS(5204), + [anon_sym_consteval] = ACTIONS(5204), + [anon_sym_alignas] = ACTIONS(5204), + [anon_sym__Alignas] = ACTIONS(5204), + [sym_primitive_type] = ACTIONS(5204), + [anon_sym_enum] = ACTIONS(5204), + [anon_sym_class] = ACTIONS(5204), + [anon_sym_struct] = ACTIONS(5204), + [anon_sym_union] = ACTIONS(5204), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5204), + [anon_sym_decltype] = ACTIONS(5204), + [anon_sym_explicit] = ACTIONS(5204), + [anon_sym_typename] = ACTIONS(5204), + [anon_sym_template] = ACTIONS(5204), + [anon_sym_operator] = ACTIONS(5204), + [anon_sym_namespace] = ACTIONS(5560), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5204), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5204), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5204), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5204), + [anon_sym_MOZ_COLD] = ACTIONS(5204), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5204), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5204), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5204), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5204), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5204), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5204), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5204), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5204), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5204), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5204), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5204), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5204), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5204), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_NONNULL] = ACTIONS(5204), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5204), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5204), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5204), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5204), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5204), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5204), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5204), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5204), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5204), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5204), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5204), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5204), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5204), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5204), + [anon_sym_MOZ_RAII] = ACTIONS(5204), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5204), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5204), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5204), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5204), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5204), + }, + [STATE(1599)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1234), + [anon_sym_COMMA] = ACTIONS(5162), + [anon_sym_RPAREN] = ACTIONS(5162), + [anon_sym_LPAREN2] = ACTIONS(5162), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_AMP_AMP] = ACTIONS(5162), + [anon_sym_AMP] = ACTIONS(5160), + [anon_sym_SEMI] = ACTIONS(5162), + [anon_sym___extension__] = ACTIONS(5162), + [anon_sym_virtual] = ACTIONS(5162), + [anon_sym_extern] = ACTIONS(5162), + [anon_sym___attribute__] = ACTIONS(5162), + [anon_sym___attribute] = ACTIONS(5160), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5162), + [anon_sym___declspec] = ACTIONS(5162), + [anon_sym_LBRACE] = ACTIONS(5162), + [anon_sym_signed] = ACTIONS(5528), + [anon_sym_unsigned] = ACTIONS(5528), + [anon_sym_long] = ACTIONS(5528), + [anon_sym_short] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5160), + [anon_sym_static] = ACTIONS(5162), + [anon_sym_EQ] = ACTIONS(5162), + [anon_sym_register] = ACTIONS(5162), + [anon_sym_inline] = ACTIONS(5162), + [anon_sym___inline] = ACTIONS(5160), + [anon_sym___inline__] = ACTIONS(5162), + [anon_sym___forceinline] = ACTIONS(5162), + [anon_sym_thread_local] = ACTIONS(5162), + [anon_sym___thread] = ACTIONS(5162), + [anon_sym_const] = ACTIONS(5160), + [anon_sym_constexpr] = ACTIONS(5162), + [anon_sym_volatile] = ACTIONS(5162), + [anon_sym_restrict] = ACTIONS(5162), + [anon_sym___restrict__] = ACTIONS(5162), + [anon_sym__Atomic] = ACTIONS(5162), + [anon_sym__Noreturn] = ACTIONS(5162), + [anon_sym_noreturn] = ACTIONS(5162), + [anon_sym__Nonnull] = ACTIONS(5162), + [anon_sym_mutable] = ACTIONS(5162), + [anon_sym_constinit] = ACTIONS(5162), + [anon_sym_consteval] = ACTIONS(5162), + [anon_sym_alignas] = ACTIONS(5162), + [anon_sym__Alignas] = ACTIONS(5162), + [anon_sym_asm] = ACTIONS(5162), + [anon_sym___asm__] = ACTIONS(5162), + [anon_sym___asm] = ACTIONS(5160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5162), + [anon_sym_decltype] = ACTIONS(5162), + [anon_sym_final] = ACTIONS(5162), + [anon_sym_override] = ACTIONS(5162), + [anon_sym_GT2] = ACTIONS(5162), + [anon_sym_try] = ACTIONS(5162), + [anon_sym_requires] = ACTIONS(5162), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5162), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5162), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5160), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5162), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5162), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5162), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5162), + [anon_sym_MOZ_COLD] = ACTIONS(5162), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5162), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5162), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5162), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5162), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5162), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5160), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5162), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5162), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5162), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5162), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5162), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5162), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5162), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5162), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5162), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5162), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5162), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5162), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5162), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5162), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5162), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5162), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5160), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5162), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5162), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5162), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5162), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5160), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5162), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5162), + [anon_sym_MOZ_NONNULL] = ACTIONS(5160), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5162), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5162), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5162), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5162), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5162), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5162), + [anon_sym_MOZ_NORETURN] = ACTIONS(5160), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5162), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5162), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5162), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5162), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5162), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5162), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5162), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5162), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5162), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5162), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5162), + [anon_sym_MOZ_RAII] = ACTIONS(5162), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5162), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5162), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5162), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5162), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5162), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5162), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5162), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5162), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5162), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5162), + }, + [STATE(1600)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1613), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4737), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_STAR] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_SEMI] = ACTIONS(4737), + [anon_sym___extension__] = ACTIONS(4737), + [anon_sym_virtual] = ACTIONS(4737), + [anon_sym_extern] = ACTIONS(4737), + [anon_sym___attribute__] = ACTIONS(4737), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4737), + [anon_sym___declspec] = ACTIONS(4737), + [anon_sym_LBRACE] = ACTIONS(4737), + [anon_sym_signed] = ACTIONS(5556), + [anon_sym_unsigned] = ACTIONS(5556), + [anon_sym_long] = ACTIONS(5556), + [anon_sym_short] = ACTIONS(5556), + [anon_sym_LBRACK] = ACTIONS(4735), + [anon_sym_static] = ACTIONS(4737), + [anon_sym_EQ] = ACTIONS(4737), + [anon_sym_register] = ACTIONS(4737), + [anon_sym_inline] = ACTIONS(4737), + [anon_sym___inline] = ACTIONS(4735), + [anon_sym___inline__] = ACTIONS(4737), + [anon_sym___forceinline] = ACTIONS(4737), + [anon_sym_thread_local] = ACTIONS(4737), + [anon_sym___thread] = ACTIONS(4737), + [anon_sym_const] = ACTIONS(4735), + [anon_sym_constexpr] = ACTIONS(4737), + [anon_sym_volatile] = ACTIONS(4737), + [anon_sym_restrict] = ACTIONS(4737), + [anon_sym___restrict__] = ACTIONS(4737), + [anon_sym__Atomic] = ACTIONS(4737), + [anon_sym__Noreturn] = ACTIONS(4737), + [anon_sym_noreturn] = ACTIONS(4737), + [anon_sym__Nonnull] = ACTIONS(4737), + [anon_sym_mutable] = ACTIONS(4737), + [anon_sym_constinit] = ACTIONS(4737), + [anon_sym_consteval] = ACTIONS(4737), + [anon_sym_alignas] = ACTIONS(4737), + [anon_sym__Alignas] = ACTIONS(4737), + [anon_sym_asm] = ACTIONS(4737), + [anon_sym___asm__] = ACTIONS(4737), + [anon_sym___asm] = ACTIONS(4735), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4737), + [anon_sym_decltype] = ACTIONS(4737), + [anon_sym_final] = ACTIONS(4737), + [anon_sym_override] = ACTIONS(4737), + [anon_sym_GT2] = ACTIONS(4737), + [anon_sym_try] = ACTIONS(4737), + [anon_sym_requires] = ACTIONS(4737), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4737), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4737), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4737), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4737), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4737), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4737), + [anon_sym_MOZ_COLD] = ACTIONS(4737), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4737), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4737), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4737), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4737), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4737), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4737), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4737), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4737), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4737), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4737), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4737), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4737), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4737), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4737), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4737), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4737), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4737), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4737), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4737), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4737), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4737), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4737), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4737), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4737), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4737), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4737), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4737), + [anon_sym_MOZ_NONNULL] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4737), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4737), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4737), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4737), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4737), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4737), + [anon_sym_MOZ_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4737), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4737), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4737), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4737), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4737), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4737), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4737), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4737), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4737), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4737), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4737), + [anon_sym_MOZ_RAII] = ACTIONS(4737), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4737), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4737), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4737), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4737), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4737), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4737), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4737), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4737), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4737), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4737), + }, + [STATE(1601)] = { + [sym_identifier] = ACTIONS(1903), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym___extension__] = ACTIONS(1903), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym___based] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1903), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1903), + [anon_sym_operator] = ACTIONS(1903), + [anon_sym_friend] = ACTIONS(5562), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), + }, + [STATE(1602)] = { + [sym_identifier] = ACTIONS(5204), + [anon_sym_LPAREN2] = ACTIONS(5206), + [anon_sym_TILDE] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5204), + [anon_sym___extension__] = ACTIONS(5204), + [anon_sym_virtual] = ACTIONS(5204), + [anon_sym_extern] = ACTIONS(5204), + [anon_sym___attribute__] = ACTIONS(5204), + [anon_sym___attribute] = ACTIONS(5204), + [anon_sym_COLON_COLON] = ACTIONS(5206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5206), + [anon_sym___declspec] = ACTIONS(5204), + [anon_sym___based] = ACTIONS(5204), + [anon_sym_signed] = ACTIONS(5204), + [anon_sym_unsigned] = ACTIONS(5204), + [anon_sym_long] = ACTIONS(5204), + [anon_sym_short] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_static] = ACTIONS(5204), + [anon_sym_register] = ACTIONS(5204), + [anon_sym_inline] = ACTIONS(5204), + [anon_sym___inline] = ACTIONS(5204), + [anon_sym___inline__] = ACTIONS(5204), + [anon_sym___forceinline] = ACTIONS(5204), + [anon_sym_thread_local] = ACTIONS(5204), + [anon_sym___thread] = ACTIONS(5204), + [anon_sym_const] = ACTIONS(5204), + [anon_sym_constexpr] = ACTIONS(5204), + [anon_sym_volatile] = ACTIONS(5204), + [anon_sym_restrict] = ACTIONS(5204), + [anon_sym___restrict__] = ACTIONS(5204), + [anon_sym__Atomic] = ACTIONS(5204), + [anon_sym__Noreturn] = ACTIONS(5204), + [anon_sym_noreturn] = ACTIONS(5204), + [anon_sym__Nonnull] = ACTIONS(5204), + [anon_sym_mutable] = ACTIONS(5204), + [anon_sym_constinit] = ACTIONS(5204), + [anon_sym_consteval] = ACTIONS(5204), + [anon_sym_alignas] = ACTIONS(5204), + [anon_sym__Alignas] = ACTIONS(5204), + [sym_primitive_type] = ACTIONS(5204), + [anon_sym_enum] = ACTIONS(5204), + [anon_sym_class] = ACTIONS(5204), + [anon_sym_struct] = ACTIONS(5204), + [anon_sym_union] = ACTIONS(5204), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5204), + [anon_sym_decltype] = ACTIONS(5204), + [anon_sym_explicit] = ACTIONS(5204), + [anon_sym_typename] = ACTIONS(5204), + [anon_sym_template] = ACTIONS(5204), + [anon_sym_operator] = ACTIONS(5204), + [anon_sym_namespace] = ACTIONS(5564), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5204), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5204), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5204), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5204), + [anon_sym_MOZ_COLD] = ACTIONS(5204), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5204), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5204), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5204), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5204), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5204), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5204), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5204), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5204), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5204), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5204), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5204), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5204), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5204), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_NONNULL] = ACTIONS(5204), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5204), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5204), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5204), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5204), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5204), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5204), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5204), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5204), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5204), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5204), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5204), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5204), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5204), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5204), + [anon_sym_MOZ_RAII] = ACTIONS(5204), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5204), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5204), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5204), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5204), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5204), + }, + [STATE(1603)] = { + [sym_identifier] = ACTIONS(4735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4737), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4737), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_TILDE] = ACTIONS(4737), + [anon_sym_STAR] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_SEMI] = ACTIONS(4737), + [anon_sym___extension__] = ACTIONS(4735), + [anon_sym_virtual] = ACTIONS(4735), + [anon_sym_extern] = ACTIONS(4735), + [anon_sym___attribute__] = ACTIONS(4735), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_COLON_COLON] = ACTIONS(4737), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4737), + [anon_sym___declspec] = ACTIONS(4735), + [anon_sym___based] = ACTIONS(4735), + [anon_sym___cdecl] = ACTIONS(4735), + [anon_sym___clrcall] = ACTIONS(4735), + [anon_sym___stdcall] = ACTIONS(4735), + [anon_sym___fastcall] = ACTIONS(4735), + [anon_sym___thiscall] = ACTIONS(4735), + [anon_sym___vectorcall] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4735), + [anon_sym_static] = ACTIONS(4735), + [anon_sym_EQ] = ACTIONS(4737), + [anon_sym_register] = ACTIONS(4735), + [anon_sym_inline] = ACTIONS(4735), + [anon_sym___inline] = ACTIONS(4735), + [anon_sym___inline__] = ACTIONS(4735), + [anon_sym___forceinline] = ACTIONS(4735), + [anon_sym_thread_local] = ACTIONS(4735), + [anon_sym___thread] = ACTIONS(4735), + [anon_sym_const] = ACTIONS(4735), + [anon_sym_constexpr] = ACTIONS(4735), + [anon_sym_volatile] = ACTIONS(4735), + [anon_sym_restrict] = ACTIONS(4735), + [anon_sym___restrict__] = ACTIONS(4735), + [anon_sym__Atomic] = ACTIONS(4735), + [anon_sym__Noreturn] = ACTIONS(4735), + [anon_sym_noreturn] = ACTIONS(4735), + [anon_sym__Nonnull] = ACTIONS(4735), + [anon_sym_mutable] = ACTIONS(4735), + [anon_sym_constinit] = ACTIONS(4735), + [anon_sym_consteval] = ACTIONS(4735), + [anon_sym_alignas] = ACTIONS(4735), + [anon_sym__Alignas] = ACTIONS(4735), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4735), + [anon_sym_decltype] = ACTIONS(4735), + [anon_sym_template] = ACTIONS(4735), + [anon_sym_operator] = ACTIONS(4735), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4735), + [anon_sym_MOZ_COLD] = ACTIONS(4735), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4735), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4735), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4735), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4735), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4735), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4735), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4735), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4735), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4735), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4735), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4735), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4735), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_RAII] = ACTIONS(4735), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4735), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4735), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4735), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4735), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4735), + }, + [STATE(1604)] = { + [sym_identifier] = ACTIONS(1903), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym___extension__] = ACTIONS(1903), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym___based] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1903), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1903), + [anon_sym_operator] = ACTIONS(1903), + [anon_sym_friend] = ACTIONS(5566), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), + }, + [STATE(1605)] = { + [sym_identifier] = ACTIONS(4735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4737), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4737), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_TILDE] = ACTIONS(4737), + [anon_sym_STAR] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_SEMI] = ACTIONS(4737), + [anon_sym___extension__] = ACTIONS(4735), + [anon_sym_virtual] = ACTIONS(4735), + [anon_sym_extern] = ACTIONS(4735), + [anon_sym___attribute__] = ACTIONS(4735), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4737), + [anon_sym___declspec] = ACTIONS(4735), + [anon_sym___based] = ACTIONS(4735), + [anon_sym___cdecl] = ACTIONS(4735), + [anon_sym___clrcall] = ACTIONS(4735), + [anon_sym___stdcall] = ACTIONS(4735), + [anon_sym___fastcall] = ACTIONS(4735), + [anon_sym___thiscall] = ACTIONS(4735), + [anon_sym___vectorcall] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4735), + [anon_sym_static] = ACTIONS(4735), + [anon_sym_EQ] = ACTIONS(4737), + [anon_sym_register] = ACTIONS(4735), + [anon_sym_inline] = ACTIONS(4735), + [anon_sym___inline] = ACTIONS(4735), + [anon_sym___inline__] = ACTIONS(4735), + [anon_sym___forceinline] = ACTIONS(4735), + [anon_sym_thread_local] = ACTIONS(4735), + [anon_sym___thread] = ACTIONS(4735), + [anon_sym_const] = ACTIONS(4735), + [anon_sym_constexpr] = ACTIONS(4735), + [anon_sym_volatile] = ACTIONS(4735), + [anon_sym_restrict] = ACTIONS(4735), + [anon_sym___restrict__] = ACTIONS(4735), + [anon_sym__Atomic] = ACTIONS(4735), + [anon_sym__Noreturn] = ACTIONS(4735), + [anon_sym_noreturn] = ACTIONS(4735), + [anon_sym__Nonnull] = ACTIONS(4735), + [anon_sym_mutable] = ACTIONS(4735), + [anon_sym_constinit] = ACTIONS(4735), + [anon_sym_consteval] = ACTIONS(4735), + [anon_sym_alignas] = ACTIONS(4735), + [anon_sym__Alignas] = ACTIONS(4735), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4735), + [anon_sym_decltype] = ACTIONS(4735), + [anon_sym_template] = ACTIONS(4735), + [anon_sym_operator] = ACTIONS(4735), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4735), + [anon_sym_MOZ_COLD] = ACTIONS(4735), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4735), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4735), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4735), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4735), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4735), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4735), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4735), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4735), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4735), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4735), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4735), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4735), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_RAII] = ACTIONS(4735), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4735), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4735), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4735), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4735), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4735), + }, + [STATE(1606)] = { + [sym_identifier] = ACTIONS(1903), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym___extension__] = ACTIONS(1903), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym___based] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1903), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1903), + [anon_sym_operator] = ACTIONS(1903), + [anon_sym_friend] = ACTIONS(5568), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), + }, + [STATE(1607)] = { + [sym_attribute_specifier] = STATE(1418), + [sym_field_declaration_list] = STATE(1676), + [sym_virtual_specifier] = STATE(7477), + [sym_base_class_clause] = STATE(8360), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_RPAREN] = ACTIONS(4988), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(4988), + [anon_sym___extension__] = ACTIONS(4988), + [anon_sym_virtual] = ACTIONS(4988), + [anon_sym_extern] = ACTIONS(4988), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4988), + [anon_sym___declspec] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_static] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_register] = ACTIONS(4988), + [anon_sym_inline] = ACTIONS(4988), + [anon_sym___inline] = ACTIONS(4986), + [anon_sym___inline__] = ACTIONS(4988), + [anon_sym___forceinline] = ACTIONS(4988), + [anon_sym_thread_local] = ACTIONS(4988), + [anon_sym___thread] = ACTIONS(4988), + [anon_sym_const] = ACTIONS(4986), + [anon_sym_constexpr] = ACTIONS(4988), + [anon_sym_volatile] = ACTIONS(4988), + [anon_sym_restrict] = ACTIONS(4988), + [anon_sym___restrict__] = ACTIONS(4988), + [anon_sym__Atomic] = ACTIONS(4988), + [anon_sym__Noreturn] = ACTIONS(4988), + [anon_sym_noreturn] = ACTIONS(4988), + [anon_sym__Nonnull] = ACTIONS(4988), + [anon_sym_mutable] = ACTIONS(4988), + [anon_sym_constinit] = ACTIONS(4988), + [anon_sym_consteval] = ACTIONS(4988), + [anon_sym_alignas] = ACTIONS(4988), + [anon_sym__Alignas] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_asm] = ACTIONS(4988), + [anon_sym___asm__] = ACTIONS(4988), + [anon_sym___asm] = ACTIONS(4986), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4988), + [anon_sym_decltype] = ACTIONS(4988), + [anon_sym_final] = ACTIONS(5572), + [anon_sym_override] = ACTIONS(5572), + [anon_sym_GT2] = ACTIONS(4988), + [anon_sym_try] = ACTIONS(4988), + [anon_sym_requires] = ACTIONS(4988), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4988), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4988), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4988), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4988), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4988), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4988), + [anon_sym_MOZ_COLD] = ACTIONS(4988), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4988), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4988), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4988), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4988), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4988), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4988), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4988), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4988), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4988), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4988), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4988), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4988), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4988), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4988), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4988), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4988), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4988), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4988), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4988), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4988), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4988), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4988), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4988), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4988), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4988), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4988), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4988), + [anon_sym_MOZ_NONNULL] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4988), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4988), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4988), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4988), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4988), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4988), + [anon_sym_MOZ_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4988), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4988), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4988), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4988), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4988), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4988), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4988), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4988), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4988), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4988), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4988), + [anon_sym_MOZ_RAII] = ACTIONS(4988), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4988), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4988), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4988), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4988), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4988), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4988), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4988), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4988), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4988), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4988), + }, + [STATE(1608)] = { + [sym_identifier] = ACTIONS(1903), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym___extension__] = ACTIONS(1903), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym___based] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1903), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1903), + [anon_sym_operator] = ACTIONS(1903), + [anon_sym_friend] = ACTIONS(5574), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), + }, + [STATE(1609)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1592), + [anon_sym_COMMA] = ACTIONS(5186), + [anon_sym_RPAREN] = ACTIONS(5186), + [anon_sym_LPAREN2] = ACTIONS(5186), + [anon_sym_STAR] = ACTIONS(5186), + [anon_sym_AMP_AMP] = ACTIONS(5186), + [anon_sym_AMP] = ACTIONS(5184), + [anon_sym_SEMI] = ACTIONS(5186), + [anon_sym___extension__] = ACTIONS(5186), + [anon_sym_virtual] = ACTIONS(5186), + [anon_sym_extern] = ACTIONS(5186), + [anon_sym___attribute__] = ACTIONS(5186), + [anon_sym___attribute] = ACTIONS(5184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5186), + [anon_sym___declspec] = ACTIONS(5186), + [anon_sym_LBRACE] = ACTIONS(5186), + [anon_sym_signed] = ACTIONS(5576), + [anon_sym_unsigned] = ACTIONS(5576), + [anon_sym_long] = ACTIONS(5576), + [anon_sym_short] = ACTIONS(5576), + [anon_sym_LBRACK] = ACTIONS(5184), + [anon_sym_static] = ACTIONS(5186), + [anon_sym_EQ] = ACTIONS(5186), + [anon_sym_register] = ACTIONS(5186), + [anon_sym_inline] = ACTIONS(5186), + [anon_sym___inline] = ACTIONS(5184), + [anon_sym___inline__] = ACTIONS(5186), + [anon_sym___forceinline] = ACTIONS(5186), + [anon_sym_thread_local] = ACTIONS(5186), + [anon_sym___thread] = ACTIONS(5186), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5186), + [anon_sym_volatile] = ACTIONS(5186), + [anon_sym_restrict] = ACTIONS(5186), + [anon_sym___restrict__] = ACTIONS(5186), + [anon_sym__Atomic] = ACTIONS(5186), + [anon_sym__Noreturn] = ACTIONS(5186), + [anon_sym_noreturn] = ACTIONS(5186), + [anon_sym__Nonnull] = ACTIONS(5186), + [anon_sym_mutable] = ACTIONS(5186), + [anon_sym_constinit] = ACTIONS(5186), + [anon_sym_consteval] = ACTIONS(5186), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [anon_sym_asm] = ACTIONS(5186), + [anon_sym___asm__] = ACTIONS(5186), + [anon_sym___asm] = ACTIONS(5184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5186), + [anon_sym_decltype] = ACTIONS(5186), + [anon_sym_final] = ACTIONS(5186), + [anon_sym_override] = ACTIONS(5186), + [anon_sym_GT2] = ACTIONS(5186), + [anon_sym_try] = ACTIONS(5186), + [anon_sym_requires] = ACTIONS(5186), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5186), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5186), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5184), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5186), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5186), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5184), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5186), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5186), + [anon_sym_MOZ_COLD] = ACTIONS(5186), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5186), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5186), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5186), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5186), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5186), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5184), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5186), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5186), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5186), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5186), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5186), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5186), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5186), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5186), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5186), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5186), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5186), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5186), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5186), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5186), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5186), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5186), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5184), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5186), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5186), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5186), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5186), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5184), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5186), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5186), + [anon_sym_MOZ_NONNULL] = ACTIONS(5184), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5186), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5186), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5186), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5186), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5186), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5186), + [anon_sym_MOZ_NORETURN] = ACTIONS(5184), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5186), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5186), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5186), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5186), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5186), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5186), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5186), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5186), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5186), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5186), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5186), + [anon_sym_MOZ_RAII] = ACTIONS(5186), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5186), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5186), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5186), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5186), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5186), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5186), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5186), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5186), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5186), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5186), + }, + [STATE(1610)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1234), + [anon_sym_COMMA] = ACTIONS(5192), + [anon_sym_RPAREN] = ACTIONS(5192), + [anon_sym_LPAREN2] = ACTIONS(5192), + [anon_sym_STAR] = ACTIONS(5192), + [anon_sym_AMP_AMP] = ACTIONS(5192), + [anon_sym_AMP] = ACTIONS(5190), + [anon_sym_SEMI] = ACTIONS(5192), + [anon_sym___extension__] = ACTIONS(5192), + [anon_sym_virtual] = ACTIONS(5192), + [anon_sym_extern] = ACTIONS(5192), + [anon_sym___attribute__] = ACTIONS(5192), + [anon_sym___attribute] = ACTIONS(5190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5192), + [anon_sym___declspec] = ACTIONS(5192), + [anon_sym_LBRACE] = ACTIONS(5192), + [anon_sym_signed] = ACTIONS(5528), + [anon_sym_unsigned] = ACTIONS(5528), + [anon_sym_long] = ACTIONS(5528), + [anon_sym_short] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5190), + [anon_sym_static] = ACTIONS(5192), + [anon_sym_EQ] = ACTIONS(5192), + [anon_sym_register] = ACTIONS(5192), + [anon_sym_inline] = ACTIONS(5192), + [anon_sym___inline] = ACTIONS(5190), + [anon_sym___inline__] = ACTIONS(5192), + [anon_sym___forceinline] = ACTIONS(5192), + [anon_sym_thread_local] = ACTIONS(5192), + [anon_sym___thread] = ACTIONS(5192), + [anon_sym_const] = ACTIONS(5190), + [anon_sym_constexpr] = ACTIONS(5192), + [anon_sym_volatile] = ACTIONS(5192), + [anon_sym_restrict] = ACTIONS(5192), + [anon_sym___restrict__] = ACTIONS(5192), + [anon_sym__Atomic] = ACTIONS(5192), + [anon_sym__Noreturn] = ACTIONS(5192), + [anon_sym_noreturn] = ACTIONS(5192), + [anon_sym__Nonnull] = ACTIONS(5192), + [anon_sym_mutable] = ACTIONS(5192), + [anon_sym_constinit] = ACTIONS(5192), + [anon_sym_consteval] = ACTIONS(5192), + [anon_sym_alignas] = ACTIONS(5192), + [anon_sym__Alignas] = ACTIONS(5192), + [anon_sym_asm] = ACTIONS(5192), + [anon_sym___asm__] = ACTIONS(5192), + [anon_sym___asm] = ACTIONS(5190), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5192), + [anon_sym_decltype] = ACTIONS(5192), + [anon_sym_final] = ACTIONS(5192), + [anon_sym_override] = ACTIONS(5192), + [anon_sym_GT2] = ACTIONS(5192), + [anon_sym_try] = ACTIONS(5192), + [anon_sym_requires] = ACTIONS(5192), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5192), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5192), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5190), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5192), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5192), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5190), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5192), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5192), + [anon_sym_MOZ_COLD] = ACTIONS(5192), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5192), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5192), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5192), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5192), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5192), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5190), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5192), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5192), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5192), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5192), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5192), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5192), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5192), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5192), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5192), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5192), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5192), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5192), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5192), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5192), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5192), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5192), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5190), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5192), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5192), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5192), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5192), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5190), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5192), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5192), + [anon_sym_MOZ_NONNULL] = ACTIONS(5190), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5192), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5192), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5192), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5192), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5192), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5192), + [anon_sym_MOZ_NORETURN] = ACTIONS(5190), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5192), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5192), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5192), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5192), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5192), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5192), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5192), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5192), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5192), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5192), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5192), + [anon_sym_MOZ_RAII] = ACTIONS(5192), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5192), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5192), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5192), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5192), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5192), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5192), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5192), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5192), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5192), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5192), + }, + [STATE(1611)] = { + [sym_argument_list] = STATE(3777), + [sym_initializer_list] = STATE(4228), + [aux_sym_sized_type_specifier_repeat1] = STATE(1432), + [sym_identifier] = ACTIONS(4735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4737), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4737), + [anon_sym_LPAREN2] = ACTIONS(5578), + [anon_sym_TILDE] = ACTIONS(4737), + [anon_sym_STAR] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym___extension__] = ACTIONS(4735), + [anon_sym_virtual] = ACTIONS(4735), + [anon_sym_extern] = ACTIONS(4735), + [anon_sym___attribute__] = ACTIONS(4735), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_COLON_COLON] = ACTIONS(4737), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4737), + [anon_sym___declspec] = ACTIONS(4735), + [anon_sym___based] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(3919), + [anon_sym_signed] = ACTIONS(5141), + [anon_sym_unsigned] = ACTIONS(5141), + [anon_sym_long] = ACTIONS(5141), + [anon_sym_short] = ACTIONS(5141), + [anon_sym_LBRACK] = ACTIONS(4735), + [anon_sym_static] = ACTIONS(4735), + [anon_sym_EQ] = ACTIONS(4737), + [anon_sym_register] = ACTIONS(4735), + [anon_sym_inline] = ACTIONS(4735), + [anon_sym___inline] = ACTIONS(4735), + [anon_sym___inline__] = ACTIONS(4735), + [anon_sym___forceinline] = ACTIONS(4735), + [anon_sym_thread_local] = ACTIONS(4735), + [anon_sym___thread] = ACTIONS(4735), + [anon_sym_const] = ACTIONS(4735), + [anon_sym_constexpr] = ACTIONS(4735), + [anon_sym_volatile] = ACTIONS(4735), + [anon_sym_restrict] = ACTIONS(4735), + [anon_sym___restrict__] = ACTIONS(4735), + [anon_sym__Atomic] = ACTIONS(4735), + [anon_sym__Noreturn] = ACTIONS(4735), + [anon_sym_noreturn] = ACTIONS(4735), + [anon_sym__Nonnull] = ACTIONS(4735), + [anon_sym_mutable] = ACTIONS(4735), + [anon_sym_constinit] = ACTIONS(4735), + [anon_sym_consteval] = ACTIONS(4735), + [anon_sym_alignas] = ACTIONS(4735), + [anon_sym__Alignas] = ACTIONS(4735), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4735), + [anon_sym_decltype] = ACTIONS(4735), + [anon_sym_template] = ACTIONS(4735), + [anon_sym_operator] = ACTIONS(4735), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4735), + [anon_sym_MOZ_COLD] = ACTIONS(4735), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4735), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4735), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4735), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4735), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4735), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4735), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4735), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4735), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4735), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4735), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4735), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4735), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_RAII] = ACTIONS(4735), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4735), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4735), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4735), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4735), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4735), + }, + [STATE(1612)] = { + [sym_identifier] = ACTIONS(4735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4737), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4737), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_TILDE] = ACTIONS(4737), + [anon_sym_STAR] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_SEMI] = ACTIONS(4737), + [anon_sym___extension__] = ACTIONS(4735), + [anon_sym_virtual] = ACTIONS(4735), + [anon_sym_extern] = ACTIONS(4735), + [anon_sym___attribute__] = ACTIONS(4735), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_COLON_COLON] = ACTIONS(4737), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4737), + [anon_sym___declspec] = ACTIONS(4735), + [anon_sym___based] = ACTIONS(4735), + [anon_sym___cdecl] = ACTIONS(4735), + [anon_sym___clrcall] = ACTIONS(4735), + [anon_sym___stdcall] = ACTIONS(4735), + [anon_sym___fastcall] = ACTIONS(4735), + [anon_sym___thiscall] = ACTIONS(4735), + [anon_sym___vectorcall] = ACTIONS(4735), + [anon_sym_LBRACK] = ACTIONS(4735), + [anon_sym_static] = ACTIONS(4735), + [anon_sym_EQ] = ACTIONS(4737), + [anon_sym_register] = ACTIONS(4735), + [anon_sym_inline] = ACTIONS(4735), + [anon_sym___inline] = ACTIONS(4735), + [anon_sym___inline__] = ACTIONS(4735), + [anon_sym___forceinline] = ACTIONS(4735), + [anon_sym_thread_local] = ACTIONS(4735), + [anon_sym___thread] = ACTIONS(4735), + [anon_sym_const] = ACTIONS(4735), + [anon_sym_constexpr] = ACTIONS(4735), + [anon_sym_volatile] = ACTIONS(4735), + [anon_sym_restrict] = ACTIONS(4735), + [anon_sym___restrict__] = ACTIONS(4735), + [anon_sym__Atomic] = ACTIONS(4735), + [anon_sym__Noreturn] = ACTIONS(4735), + [anon_sym_noreturn] = ACTIONS(4735), + [anon_sym__Nonnull] = ACTIONS(4735), + [anon_sym_mutable] = ACTIONS(4735), + [anon_sym_constinit] = ACTIONS(4735), + [anon_sym_consteval] = ACTIONS(4735), + [anon_sym_alignas] = ACTIONS(4735), + [anon_sym__Alignas] = ACTIONS(4735), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4735), + [anon_sym_decltype] = ACTIONS(4735), + [anon_sym_template] = ACTIONS(4735), + [anon_sym_GT2] = ACTIONS(4737), + [anon_sym_operator] = ACTIONS(4735), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4735), + [anon_sym_MOZ_COLD] = ACTIONS(4735), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4735), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4735), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4735), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4735), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4735), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4735), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4735), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4735), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4735), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4735), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4735), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4735), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_RAII] = ACTIONS(4735), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4735), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4735), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4735), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4735), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4735), + }, + [STATE(1613)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1234), + [anon_sym_COMMA] = ACTIONS(5145), + [anon_sym_RPAREN] = ACTIONS(5145), + [anon_sym_LPAREN2] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_AMP] = ACTIONS(5143), + [anon_sym_SEMI] = ACTIONS(5145), + [anon_sym___extension__] = ACTIONS(5145), + [anon_sym_virtual] = ACTIONS(5145), + [anon_sym_extern] = ACTIONS(5145), + [anon_sym___attribute__] = ACTIONS(5145), + [anon_sym___attribute] = ACTIONS(5143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5145), + [anon_sym___declspec] = ACTIONS(5145), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_signed] = ACTIONS(5528), + [anon_sym_unsigned] = ACTIONS(5528), + [anon_sym_long] = ACTIONS(5528), + [anon_sym_short] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5143), + [anon_sym_static] = ACTIONS(5145), + [anon_sym_EQ] = ACTIONS(5145), + [anon_sym_register] = ACTIONS(5145), + [anon_sym_inline] = ACTIONS(5145), + [anon_sym___inline] = ACTIONS(5143), + [anon_sym___inline__] = ACTIONS(5145), + [anon_sym___forceinline] = ACTIONS(5145), + [anon_sym_thread_local] = ACTIONS(5145), + [anon_sym___thread] = ACTIONS(5145), + [anon_sym_const] = ACTIONS(5143), + [anon_sym_constexpr] = ACTIONS(5145), + [anon_sym_volatile] = ACTIONS(5145), + [anon_sym_restrict] = ACTIONS(5145), + [anon_sym___restrict__] = ACTIONS(5145), + [anon_sym__Atomic] = ACTIONS(5145), + [anon_sym__Noreturn] = ACTIONS(5145), + [anon_sym_noreturn] = ACTIONS(5145), + [anon_sym__Nonnull] = ACTIONS(5145), + [anon_sym_mutable] = ACTIONS(5145), + [anon_sym_constinit] = ACTIONS(5145), + [anon_sym_consteval] = ACTIONS(5145), + [anon_sym_alignas] = ACTIONS(5145), + [anon_sym__Alignas] = ACTIONS(5145), + [anon_sym_asm] = ACTIONS(5145), + [anon_sym___asm__] = ACTIONS(5145), + [anon_sym___asm] = ACTIONS(5143), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5145), + [anon_sym_decltype] = ACTIONS(5145), + [anon_sym_final] = ACTIONS(5145), + [anon_sym_override] = ACTIONS(5145), + [anon_sym_GT2] = ACTIONS(5145), + [anon_sym_try] = ACTIONS(5145), + [anon_sym_requires] = ACTIONS(5145), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5145), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5145), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5143), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5145), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5145), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5143), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5145), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5145), + [anon_sym_MOZ_COLD] = ACTIONS(5145), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5145), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5145), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5145), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5145), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5145), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5143), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5145), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5145), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5145), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5145), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5145), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5145), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5145), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5145), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5145), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5145), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5145), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5145), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5145), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5145), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5145), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5145), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5143), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5145), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5145), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5145), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5145), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5143), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5145), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5145), + [anon_sym_MOZ_NONNULL] = ACTIONS(5143), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5145), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5145), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5145), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5145), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5145), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5145), + [anon_sym_MOZ_NORETURN] = ACTIONS(5143), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5145), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5145), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5145), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5145), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5145), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5145), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5145), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5145), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5145), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5145), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5145), + [anon_sym_MOZ_RAII] = ACTIONS(5145), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5145), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5145), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5145), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5145), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5145), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5145), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5145), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5145), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5145), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5145), + }, + [STATE(1614)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1599), + [anon_sym_COMMA] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(5170), + [anon_sym_LPAREN2] = ACTIONS(5170), + [anon_sym_STAR] = ACTIONS(5170), + [anon_sym_AMP_AMP] = ACTIONS(5170), + [anon_sym_AMP] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(5170), + [anon_sym___extension__] = ACTIONS(5170), + [anon_sym_virtual] = ACTIONS(5170), + [anon_sym_extern] = ACTIONS(5170), + [anon_sym___attribute__] = ACTIONS(5170), + [anon_sym___attribute] = ACTIONS(5168), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5170), + [anon_sym___declspec] = ACTIONS(5170), + [anon_sym_LBRACE] = ACTIONS(5170), + [anon_sym_signed] = ACTIONS(5581), + [anon_sym_unsigned] = ACTIONS(5581), + [anon_sym_long] = ACTIONS(5581), + [anon_sym_short] = ACTIONS(5581), + [anon_sym_LBRACK] = ACTIONS(5168), + [anon_sym_static] = ACTIONS(5170), + [anon_sym_EQ] = ACTIONS(5170), + [anon_sym_register] = ACTIONS(5170), + [anon_sym_inline] = ACTIONS(5170), + [anon_sym___inline] = ACTIONS(5168), + [anon_sym___inline__] = ACTIONS(5170), + [anon_sym___forceinline] = ACTIONS(5170), + [anon_sym_thread_local] = ACTIONS(5170), + [anon_sym___thread] = ACTIONS(5170), + [anon_sym_const] = ACTIONS(5168), + [anon_sym_constexpr] = ACTIONS(5170), + [anon_sym_volatile] = ACTIONS(5170), + [anon_sym_restrict] = ACTIONS(5170), + [anon_sym___restrict__] = ACTIONS(5170), + [anon_sym__Atomic] = ACTIONS(5170), + [anon_sym__Noreturn] = ACTIONS(5170), + [anon_sym_noreturn] = ACTIONS(5170), + [anon_sym__Nonnull] = ACTIONS(5170), + [anon_sym_mutable] = ACTIONS(5170), + [anon_sym_constinit] = ACTIONS(5170), + [anon_sym_consteval] = ACTIONS(5170), + [anon_sym_alignas] = ACTIONS(5170), + [anon_sym__Alignas] = ACTIONS(5170), + [anon_sym_asm] = ACTIONS(5170), + [anon_sym___asm__] = ACTIONS(5170), + [anon_sym___asm] = ACTIONS(5168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5170), + [anon_sym_decltype] = ACTIONS(5170), + [anon_sym_final] = ACTIONS(5170), + [anon_sym_override] = ACTIONS(5170), + [anon_sym_GT2] = ACTIONS(5170), + [anon_sym_try] = ACTIONS(5170), + [anon_sym_requires] = ACTIONS(5170), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5170), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5170), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5168), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5170), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5170), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5168), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5170), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5170), + [anon_sym_MOZ_COLD] = ACTIONS(5170), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5170), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5170), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5170), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5170), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5170), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5168), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5170), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5170), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5170), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5170), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5170), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5170), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5170), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5170), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5170), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5170), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5170), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5170), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5170), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5170), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5170), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5170), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5168), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5170), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5170), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5170), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5170), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5168), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5170), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5170), + [anon_sym_MOZ_NONNULL] = ACTIONS(5168), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5170), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5170), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5170), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5170), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5170), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5170), + [anon_sym_MOZ_NORETURN] = ACTIONS(5168), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5170), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5170), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5170), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5170), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5170), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5170), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5170), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5170), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5170), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5170), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5170), + [anon_sym_MOZ_RAII] = ACTIONS(5170), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5170), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5170), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5170), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5170), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5170), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5170), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5170), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5170), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5170), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5170), + }, + [STATE(1615)] = { + [sym_identifier] = ACTIONS(1903), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym___extension__] = ACTIONS(1903), + [anon_sym_typedef] = ACTIONS(5583), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym___based] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1903), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1903), + [anon_sym_operator] = ACTIONS(1903), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), + }, + [STATE(1616)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1589), + [anon_sym_COMMA] = ACTIONS(5176), + [anon_sym_RPAREN] = ACTIONS(5176), + [anon_sym_LPAREN2] = ACTIONS(5176), + [anon_sym_STAR] = ACTIONS(5176), + [anon_sym_AMP_AMP] = ACTIONS(5176), + [anon_sym_AMP] = ACTIONS(5174), + [anon_sym_SEMI] = ACTIONS(5176), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_virtual] = ACTIONS(5176), + [anon_sym_extern] = ACTIONS(5176), + [anon_sym___attribute__] = ACTIONS(5176), + [anon_sym___attribute] = ACTIONS(5174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5176), + [anon_sym___declspec] = ACTIONS(5176), + [anon_sym_LBRACE] = ACTIONS(5176), + [anon_sym_signed] = ACTIONS(5585), + [anon_sym_unsigned] = ACTIONS(5585), + [anon_sym_long] = ACTIONS(5585), + [anon_sym_short] = ACTIONS(5585), + [anon_sym_LBRACK] = ACTIONS(5174), + [anon_sym_static] = ACTIONS(5176), + [anon_sym_EQ] = ACTIONS(5176), + [anon_sym_register] = ACTIONS(5176), + [anon_sym_inline] = ACTIONS(5176), + [anon_sym___inline] = ACTIONS(5174), + [anon_sym___inline__] = ACTIONS(5176), + [anon_sym___forceinline] = ACTIONS(5176), + [anon_sym_thread_local] = ACTIONS(5176), + [anon_sym___thread] = ACTIONS(5176), + [anon_sym_const] = ACTIONS(5174), + [anon_sym_constexpr] = ACTIONS(5176), + [anon_sym_volatile] = ACTIONS(5176), + [anon_sym_restrict] = ACTIONS(5176), + [anon_sym___restrict__] = ACTIONS(5176), + [anon_sym__Atomic] = ACTIONS(5176), + [anon_sym__Noreturn] = ACTIONS(5176), + [anon_sym_noreturn] = ACTIONS(5176), + [anon_sym__Nonnull] = ACTIONS(5176), + [anon_sym_mutable] = ACTIONS(5176), + [anon_sym_constinit] = ACTIONS(5176), + [anon_sym_consteval] = ACTIONS(5176), + [anon_sym_alignas] = ACTIONS(5176), + [anon_sym__Alignas] = ACTIONS(5176), + [anon_sym_asm] = ACTIONS(5176), + [anon_sym___asm__] = ACTIONS(5176), + [anon_sym___asm] = ACTIONS(5174), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5176), + [anon_sym_decltype] = ACTIONS(5176), + [anon_sym_final] = ACTIONS(5176), + [anon_sym_override] = ACTIONS(5176), + [anon_sym_GT2] = ACTIONS(5176), + [anon_sym_try] = ACTIONS(5176), + [anon_sym_requires] = ACTIONS(5176), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5176), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5176), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5174), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5176), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5176), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5174), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5176), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5176), + [anon_sym_MOZ_COLD] = ACTIONS(5176), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5176), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5176), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5176), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5176), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5176), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5174), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5176), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5176), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5176), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5176), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5176), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5176), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5176), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5176), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5176), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5176), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5176), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5176), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5176), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5176), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5176), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5176), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5174), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5176), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5176), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5176), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5176), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5174), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5176), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5176), + [anon_sym_MOZ_NONNULL] = ACTIONS(5174), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5176), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5176), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5176), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5176), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5176), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5176), + [anon_sym_MOZ_NORETURN] = ACTIONS(5174), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5176), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5176), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5176), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5176), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5176), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5176), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5176), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5176), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5176), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5176), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5176), + [anon_sym_MOZ_RAII] = ACTIONS(5176), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5176), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5176), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5176), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5176), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5176), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5176), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5176), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5176), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5176), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5176), + }, + [STATE(1617)] = { + [sym_identifier] = ACTIONS(1903), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym___extension__] = ACTIONS(1903), + [anon_sym_typedef] = ACTIONS(5587), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym___based] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1903), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1903), + [anon_sym_operator] = ACTIONS(1903), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), + }, + [STATE(1618)] = { + [sym_identifier] = ACTIONS(5204), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5206), + [anon_sym_COMMA] = ACTIONS(5206), + [anon_sym_RPAREN] = ACTIONS(5206), + [anon_sym_LPAREN2] = ACTIONS(5206), + [anon_sym_TILDE] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5204), + [anon_sym_SEMI] = ACTIONS(5206), + [anon_sym___extension__] = ACTIONS(5204), + [anon_sym_virtual] = ACTIONS(5204), + [anon_sym_extern] = ACTIONS(5204), + [anon_sym___attribute__] = ACTIONS(5204), + [anon_sym___attribute] = ACTIONS(5204), + [anon_sym_COLON_COLON] = ACTIONS(5206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5206), + [anon_sym___declspec] = ACTIONS(5204), + [anon_sym___based] = ACTIONS(5204), + [anon_sym___cdecl] = ACTIONS(5204), + [anon_sym___clrcall] = ACTIONS(5204), + [anon_sym___stdcall] = ACTIONS(5204), + [anon_sym___fastcall] = ACTIONS(5204), + [anon_sym___thiscall] = ACTIONS(5204), + [anon_sym___vectorcall] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_static] = ACTIONS(5204), + [anon_sym_EQ] = ACTIONS(5206), + [anon_sym_register] = ACTIONS(5204), + [anon_sym_inline] = ACTIONS(5204), + [anon_sym___inline] = ACTIONS(5204), + [anon_sym___inline__] = ACTIONS(5204), + [anon_sym___forceinline] = ACTIONS(5204), + [anon_sym_thread_local] = ACTIONS(5204), + [anon_sym___thread] = ACTIONS(5204), + [anon_sym_const] = ACTIONS(5204), + [anon_sym_constexpr] = ACTIONS(5204), + [anon_sym_volatile] = ACTIONS(5204), + [anon_sym_restrict] = ACTIONS(5204), + [anon_sym___restrict__] = ACTIONS(5204), + [anon_sym__Atomic] = ACTIONS(5204), + [anon_sym__Noreturn] = ACTIONS(5204), + [anon_sym_noreturn] = ACTIONS(5204), + [anon_sym__Nonnull] = ACTIONS(5204), + [anon_sym_mutable] = ACTIONS(5204), + [anon_sym_constinit] = ACTIONS(5204), + [anon_sym_consteval] = ACTIONS(5204), + [anon_sym_alignas] = ACTIONS(5204), + [anon_sym__Alignas] = ACTIONS(5204), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5204), + [anon_sym_explicit] = ACTIONS(5204), + [anon_sym_template] = ACTIONS(5204), + [anon_sym_GT2] = ACTIONS(5206), + [anon_sym_operator] = ACTIONS(5204), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5204), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5204), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5204), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5204), + [anon_sym_MOZ_COLD] = ACTIONS(5204), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5204), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5204), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5204), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5204), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5204), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5204), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5204), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5204), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5204), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5204), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5204), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5204), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5204), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_NONNULL] = ACTIONS(5204), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5204), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5204), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5204), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5204), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5204), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5204), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5204), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5204), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5204), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5204), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5204), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5204), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5204), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5204), + [anon_sym_MOZ_RAII] = ACTIONS(5204), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5204), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5204), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5204), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5204), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5204), + }, + [STATE(1619)] = { + [sym_identifier] = ACTIONS(1903), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym___extension__] = ACTIONS(1903), + [anon_sym_virtual] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1903), + [anon_sym___based] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1903), + [anon_sym_explicit] = ACTIONS(1903), + [anon_sym_typename] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1903), + [anon_sym_operator] = ACTIONS(1903), + [anon_sym_friend] = ACTIONS(5589), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(1903), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(1903), + [anon_sym_MOZ_COLD] = ACTIONS(1903), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(1903), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(1903), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(1903), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(1903), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(1903), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(1903), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(1903), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(1903), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(1903), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE] = ACTIONS(1903), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(1903), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(1903), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL] = ACTIONS(1903), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(1903), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(1903), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN] = ACTIONS(1903), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(1903), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(1903), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(1903), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(1903), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(1903), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(1903), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(1903), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(1903), + [anon_sym_MOZ_RAII] = ACTIONS(1903), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(1903), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(1903), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(1903), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(1903), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(1903), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(1903), + [anon_sym_JS_PUBLIC_API] = ACTIONS(1903), + }, + [STATE(1620)] = { + [sym_identifier] = ACTIONS(5591), + [anon_sym_LPAREN2] = ACTIONS(5594), + [anon_sym_TILDE] = ACTIONS(5594), + [anon_sym_STAR] = ACTIONS(5594), + [anon_sym_AMP_AMP] = ACTIONS(5594), + [anon_sym_AMP] = ACTIONS(5596), + [anon_sym___extension__] = ACTIONS(5591), + [anon_sym_virtual] = ACTIONS(5591), + [anon_sym_extern] = ACTIONS(5591), + [anon_sym___attribute__] = ACTIONS(5591), + [anon_sym___attribute] = ACTIONS(5591), + [anon_sym_COLON_COLON] = ACTIONS(5598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5598), + [anon_sym___declspec] = ACTIONS(5591), + [anon_sym___based] = ACTIONS(5596), + [anon_sym_signed] = ACTIONS(5601), + [anon_sym_unsigned] = ACTIONS(5601), + [anon_sym_long] = ACTIONS(5601), + [anon_sym_short] = ACTIONS(5601), + [anon_sym_LBRACK] = ACTIONS(5596), + [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__Nonnull] = ACTIONS(5591), + [anon_sym_mutable] = ACTIONS(5591), + [anon_sym_constinit] = ACTIONS(5591), + [anon_sym_consteval] = ACTIONS(5591), + [anon_sym_alignas] = ACTIONS(5591), + [anon_sym__Alignas] = ACTIONS(5591), + [sym_primitive_type] = ACTIONS(5601), + [anon_sym_enum] = ACTIONS(5601), + [anon_sym_class] = ACTIONS(5601), + [anon_sym_struct] = ACTIONS(5601), + [anon_sym_union] = ACTIONS(5601), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5601), + [anon_sym_decltype] = ACTIONS(5591), + [anon_sym_explicit] = ACTIONS(5596), + [anon_sym_typename] = ACTIONS(5601), + [anon_sym_template] = ACTIONS(5591), + [anon_sym_operator] = ACTIONS(5596), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5591), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5591), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5591), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5591), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5591), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5591), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5591), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5591), + [anon_sym_MOZ_COLD] = ACTIONS(5591), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5591), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5591), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5591), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5591), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5591), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5591), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5591), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5591), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5591), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5591), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5591), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5591), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5591), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5591), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5591), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5591), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5591), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5591), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5591), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5591), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5591), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5591), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5591), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5591), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5591), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5591), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5591), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5591), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5591), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5591), + [anon_sym_MOZ_NONNULL] = ACTIONS(5591), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5591), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5591), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5591), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5591), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5591), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5591), + [anon_sym_MOZ_NORETURN] = ACTIONS(5591), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5591), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5591), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5591), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5591), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5591), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5591), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5591), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5591), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5591), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5591), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5591), + [anon_sym_MOZ_RAII] = ACTIONS(5591), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5591), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5591), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5591), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5591), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5591), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5591), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5591), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5591), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5591), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5591), + }, + [STATE(1621)] = { + [sym_identifier] = ACTIONS(2628), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_AMP_AMP] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym___extension__] = ACTIONS(2628), + [anon_sym_virtual] = ACTIONS(2628), + [anon_sym_extern] = ACTIONS(2628), + [anon_sym___attribute__] = ACTIONS(2628), + [anon_sym___attribute] = ACTIONS(2628), + [anon_sym_COLON_COLON] = ACTIONS(2630), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2630), + [anon_sym___declspec] = ACTIONS(2628), + [anon_sym___based] = ACTIONS(2628), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_static] = ACTIONS(2628), + [anon_sym_register] = ACTIONS(2628), + [anon_sym_inline] = ACTIONS(2628), + [anon_sym___inline] = ACTIONS(2628), + [anon_sym___inline__] = ACTIONS(2628), + [anon_sym___forceinline] = ACTIONS(2628), + [anon_sym_thread_local] = ACTIONS(2628), + [anon_sym___thread] = ACTIONS(2628), + [anon_sym_const] = ACTIONS(2628), + [anon_sym_constexpr] = ACTIONS(2628), + [anon_sym_volatile] = ACTIONS(2628), + [anon_sym_restrict] = ACTIONS(2628), + [anon_sym___restrict__] = ACTIONS(2628), + [anon_sym__Atomic] = ACTIONS(2628), + [anon_sym__Noreturn] = ACTIONS(2628), + [anon_sym_noreturn] = ACTIONS(2628), + [anon_sym__Nonnull] = ACTIONS(2628), + [anon_sym_mutable] = ACTIONS(2628), + [anon_sym_constinit] = ACTIONS(2628), + [anon_sym_consteval] = ACTIONS(2628), + [anon_sym_alignas] = ACTIONS(2628), + [anon_sym__Alignas] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2628), + [anon_sym_enum] = ACTIONS(2628), + [anon_sym_class] = ACTIONS(2628), + [anon_sym_struct] = ACTIONS(2628), + [anon_sym_union] = ACTIONS(2628), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2628), + [anon_sym_decltype] = ACTIONS(2628), + [anon_sym_explicit] = ACTIONS(2628), + [anon_sym_typename] = ACTIONS(2628), + [anon_sym_template] = ACTIONS(2628), + [anon_sym_operator] = ACTIONS(2628), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2628), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2628), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2628), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2628), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2628), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2628), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2628), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2628), + [anon_sym_MOZ_COLD] = ACTIONS(2628), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2628), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2628), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2628), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2628), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2628), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2628), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2628), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2628), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2628), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2628), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2628), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2628), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2628), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2628), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2628), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2628), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2628), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2628), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2628), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2628), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2628), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_NONNULL] = ACTIONS(2628), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2628), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2628), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2628), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2628), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2628), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_NORETURN] = ACTIONS(2628), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2628), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2628), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2628), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2628), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2628), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2628), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2628), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2628), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2628), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2628), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2628), + [anon_sym_MOZ_RAII] = ACTIONS(2628), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2628), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2628), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2628), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2628), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2628), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2628), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2628), + }, + [STATE(1622)] = { + [sym_identifier] = ACTIONS(5204), + [anon_sym_LPAREN2] = ACTIONS(5206), + [anon_sym_TILDE] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5204), + [anon_sym___extension__] = ACTIONS(5204), + [anon_sym_virtual] = ACTIONS(5204), + [anon_sym_extern] = ACTIONS(5204), + [anon_sym___attribute__] = ACTIONS(5204), + [anon_sym___attribute] = ACTIONS(5204), + [anon_sym_COLON_COLON] = ACTIONS(5206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5206), + [anon_sym___declspec] = ACTIONS(5204), + [anon_sym___based] = ACTIONS(5204), + [anon_sym_signed] = ACTIONS(5204), + [anon_sym_unsigned] = ACTIONS(5204), + [anon_sym_long] = ACTIONS(5204), + [anon_sym_short] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_static] = ACTIONS(5204), + [anon_sym_register] = ACTIONS(5204), + [anon_sym_inline] = ACTIONS(5204), + [anon_sym___inline] = ACTIONS(5204), + [anon_sym___inline__] = ACTIONS(5204), + [anon_sym___forceinline] = ACTIONS(5204), + [anon_sym_thread_local] = ACTIONS(5204), + [anon_sym___thread] = ACTIONS(5204), + [anon_sym_const] = ACTIONS(5204), + [anon_sym_constexpr] = ACTIONS(5204), + [anon_sym_volatile] = ACTIONS(5204), + [anon_sym_restrict] = ACTIONS(5204), + [anon_sym___restrict__] = ACTIONS(5204), + [anon_sym__Atomic] = ACTIONS(5204), + [anon_sym__Noreturn] = ACTIONS(5204), + [anon_sym_noreturn] = ACTIONS(5204), + [anon_sym__Nonnull] = ACTIONS(5204), + [anon_sym_mutable] = ACTIONS(5204), + [anon_sym_constinit] = ACTIONS(5204), + [anon_sym_consteval] = ACTIONS(5204), + [anon_sym_alignas] = ACTIONS(5204), + [anon_sym__Alignas] = ACTIONS(5204), + [sym_primitive_type] = ACTIONS(5204), + [anon_sym_enum] = ACTIONS(5204), + [anon_sym_class] = ACTIONS(5204), + [anon_sym_struct] = ACTIONS(5204), + [anon_sym_union] = ACTIONS(5204), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5204), + [anon_sym_decltype] = ACTIONS(5204), + [anon_sym_explicit] = ACTIONS(5204), + [anon_sym_typename] = ACTIONS(5204), + [anon_sym_template] = ACTIONS(5204), + [anon_sym_operator] = ACTIONS(5204), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5204), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5204), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5204), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5204), + [anon_sym_MOZ_COLD] = ACTIONS(5204), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5204), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5204), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5204), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5204), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5204), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5204), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5204), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5204), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5204), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5204), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5204), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5204), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5204), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5204), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5204), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5204), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_NONNULL] = ACTIONS(5204), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5204), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5204), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5204), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5204), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_NORETURN] = ACTIONS(5204), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5204), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5204), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5204), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5204), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5204), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5204), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5204), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5204), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5204), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5204), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5204), + [anon_sym_MOZ_RAII] = ACTIONS(5204), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5204), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5204), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5204), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5204), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5204), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5204), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5204), + }, + [STATE(1623)] = { + [sym_macro_annotation] = STATE(3607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4696), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_RPAREN] = ACTIONS(4696), + [anon_sym_LPAREN2] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4694), + [anon_sym_PLUS] = ACTIONS(4694), + [anon_sym_STAR] = ACTIONS(4694), + [anon_sym_SLASH] = ACTIONS(4694), + [anon_sym_PERCENT] = ACTIONS(4694), + [anon_sym_PIPE_PIPE] = ACTIONS(4696), + [anon_sym_AMP_AMP] = ACTIONS(4696), + [anon_sym_PIPE] = ACTIONS(4694), + [anon_sym_CARET] = ACTIONS(4694), + [anon_sym_AMP] = ACTIONS(4694), + [anon_sym_EQ_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ] = ACTIONS(4696), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_LT_EQ] = ACTIONS(4694), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_LT_LT] = ACTIONS(4694), + [anon_sym_GT_GT] = ACTIONS(4694), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4696), + [anon_sym_LBRACK] = ACTIONS(4694), + [anon_sym_EQ] = ACTIONS(4694), + [anon_sym_QMARK] = ACTIONS(4696), + [anon_sym_STAR_EQ] = ACTIONS(4696), + [anon_sym_SLASH_EQ] = ACTIONS(4696), + [anon_sym_PERCENT_EQ] = ACTIONS(4696), + [anon_sym_PLUS_EQ] = ACTIONS(4696), + [anon_sym_DASH_EQ] = ACTIONS(4696), + [anon_sym_LT_LT_EQ] = ACTIONS(4696), + [anon_sym_GT_GT_EQ] = ACTIONS(4696), + [anon_sym_AMP_EQ] = ACTIONS(4696), + [anon_sym_CARET_EQ] = ACTIONS(4696), + [anon_sym_PIPE_EQ] = ACTIONS(4696), + [anon_sym_and_eq] = ACTIONS(4696), + [anon_sym_or_eq] = ACTIONS(4696), + [anon_sym_xor_eq] = ACTIONS(4696), + [anon_sym_LT_EQ_GT] = ACTIONS(4696), + [anon_sym_or] = ACTIONS(4694), + [anon_sym_and] = ACTIONS(4694), + [anon_sym_bitor] = ACTIONS(4696), + [anon_sym_xor] = ACTIONS(4694), + [anon_sym_bitand] = ACTIONS(4696), + [anon_sym_not_eq] = ACTIONS(4696), + [anon_sym_DASH_DASH] = ACTIONS(4696), + [anon_sym_PLUS_PLUS] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_DOT_STAR] = ACTIONS(4696), + [anon_sym_DASH_GT] = ACTIONS(4694), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(4696), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5603), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5603), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5605), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5603), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5603), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5605), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5603), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5603), + [anon_sym_MOZ_COLD] = ACTIONS(5603), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5603), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5605), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5603), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5603), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5603), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5603), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5603), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5603), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5603), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5603), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5603), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5603), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5603), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5603), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5605), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5603), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5603), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5603), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5603), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5605), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5603), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_NONNULL] = ACTIONS(5605), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5603), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5603), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5603), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5603), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5603), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_NORETURN] = ACTIONS(5605), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5603), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5603), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5603), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5603), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5603), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5603), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5603), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5603), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5603), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5603), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5603), + [anon_sym_MOZ_RAII] = ACTIONS(5603), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5603), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5603), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5603), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5603), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5603), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5603), + }, + [STATE(1624)] = { + [sym_template_argument_list] = STATE(1469), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(5607), + [anon_sym_LPAREN2] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT] = ACTIONS(5530), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(5609), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_GT2] = ACTIONS(5607), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(1625)] = { + [sym_identifier] = ACTIONS(5232), + [anon_sym_LPAREN2] = ACTIONS(5234), + [anon_sym_TILDE] = ACTIONS(5234), + [anon_sym_STAR] = ACTIONS(5234), + [anon_sym_AMP_AMP] = ACTIONS(5234), + [anon_sym_AMP] = ACTIONS(5232), + [anon_sym___extension__] = ACTIONS(5232), + [anon_sym_virtual] = ACTIONS(5232), + [anon_sym_extern] = ACTIONS(5232), + [anon_sym___attribute__] = ACTIONS(5232), + [anon_sym___attribute] = ACTIONS(5232), + [anon_sym_COLON_COLON] = ACTIONS(5234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5234), + [anon_sym___declspec] = ACTIONS(5232), + [anon_sym___based] = ACTIONS(5232), + [anon_sym_signed] = ACTIONS(5232), + [anon_sym_unsigned] = ACTIONS(5232), + [anon_sym_long] = ACTIONS(5232), + [anon_sym_short] = ACTIONS(5232), + [anon_sym_LBRACK] = ACTIONS(5232), + [anon_sym_static] = ACTIONS(5232), + [anon_sym_register] = ACTIONS(5232), + [anon_sym_inline] = ACTIONS(5232), + [anon_sym___inline] = ACTIONS(5232), + [anon_sym___inline__] = ACTIONS(5232), + [anon_sym___forceinline] = ACTIONS(5232), + [anon_sym_thread_local] = ACTIONS(5232), + [anon_sym___thread] = ACTIONS(5232), + [anon_sym_const] = ACTIONS(5232), + [anon_sym_constexpr] = ACTIONS(5232), + [anon_sym_volatile] = ACTIONS(5232), + [anon_sym_restrict] = ACTIONS(5232), + [anon_sym___restrict__] = ACTIONS(5232), + [anon_sym__Atomic] = ACTIONS(5232), + [anon_sym__Noreturn] = ACTIONS(5232), + [anon_sym_noreturn] = ACTIONS(5232), + [anon_sym__Nonnull] = ACTIONS(5232), + [anon_sym_mutable] = ACTIONS(5232), + [anon_sym_constinit] = ACTIONS(5232), + [anon_sym_consteval] = ACTIONS(5232), + [anon_sym_alignas] = ACTIONS(5232), + [anon_sym__Alignas] = ACTIONS(5232), + [sym_primitive_type] = ACTIONS(5232), + [anon_sym_enum] = ACTIONS(5232), + [anon_sym_class] = ACTIONS(5232), + [anon_sym_struct] = ACTIONS(5232), + [anon_sym_union] = ACTIONS(5232), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5232), + [anon_sym_decltype] = ACTIONS(5232), + [anon_sym_explicit] = ACTIONS(5232), + [anon_sym_typename] = ACTIONS(5232), + [anon_sym_template] = ACTIONS(5232), + [anon_sym_operator] = ACTIONS(5232), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5232), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5232), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5232), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5232), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5232), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5232), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5232), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5232), + [anon_sym_MOZ_COLD] = ACTIONS(5232), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5232), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5232), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5232), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5232), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5232), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5232), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5232), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5232), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5232), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5232), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5232), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5232), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5232), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5232), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5232), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5232), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5232), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5232), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5232), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5232), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5232), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5232), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5232), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5232), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5232), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5232), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5232), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5232), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5232), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5232), + [anon_sym_MOZ_NONNULL] = ACTIONS(5232), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5232), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5232), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5232), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5232), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5232), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5232), + [anon_sym_MOZ_NORETURN] = ACTIONS(5232), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5232), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5232), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5232), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5232), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5232), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5232), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5232), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5232), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5232), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5232), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5232), + [anon_sym_MOZ_RAII] = ACTIONS(5232), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5232), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5232), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5232), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5232), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5232), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5232), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5232), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5232), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5232), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5232), + }, + [STATE(1626)] = { + [sym_template_argument_list] = STATE(1469), + [sym_identifier] = ACTIONS(4529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3113), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_RPAREN] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_LT] = ACTIONS(5530), + [anon_sym___extension__] = ACTIONS(4529), + [anon_sym_virtual] = ACTIONS(4529), + [anon_sym_extern] = ACTIONS(4529), + [anon_sym___attribute__] = ACTIONS(4529), + [anon_sym___attribute] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3113), + [anon_sym___declspec] = ACTIONS(4529), + [anon_sym___based] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_static] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_register] = ACTIONS(4529), + [anon_sym_inline] = ACTIONS(4529), + [anon_sym___inline] = ACTIONS(4529), + [anon_sym___inline__] = ACTIONS(4529), + [anon_sym___forceinline] = ACTIONS(4529), + [anon_sym_thread_local] = ACTIONS(4529), + [anon_sym___thread] = ACTIONS(4529), + [anon_sym_const] = ACTIONS(4529), + [anon_sym_constexpr] = ACTIONS(4529), + [anon_sym_volatile] = ACTIONS(4529), + [anon_sym_restrict] = ACTIONS(4529), + [anon_sym___restrict__] = ACTIONS(4529), + [anon_sym__Atomic] = ACTIONS(4529), + [anon_sym__Noreturn] = ACTIONS(4529), + [anon_sym_noreturn] = ACTIONS(4529), + [anon_sym__Nonnull] = ACTIONS(4529), + [anon_sym_mutable] = ACTIONS(4529), + [anon_sym_constinit] = ACTIONS(4529), + [anon_sym_consteval] = ACTIONS(4529), + [anon_sym_alignas] = ACTIONS(4529), + [anon_sym__Alignas] = ACTIONS(4529), + [anon_sym_COLON] = ACTIONS(4529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4529), + [anon_sym_decltype] = ACTIONS(4529), + [anon_sym_final] = ACTIONS(4529), + [anon_sym_override] = ACTIONS(4529), + [anon_sym_template] = ACTIONS(4529), + [anon_sym_GT2] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(4529), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4529), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4529), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4529), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4529), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4529), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4529), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4529), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4529), + [anon_sym_MOZ_COLD] = ACTIONS(4529), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4529), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4529), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4529), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4529), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4529), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4529), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4529), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4529), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4529), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4529), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4529), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4529), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4529), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4529), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4529), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4529), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4529), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4529), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4529), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4529), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_NONNULL] = ACTIONS(4529), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4529), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4529), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4529), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4529), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4529), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_NORETURN] = ACTIONS(4529), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4529), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4529), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4529), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4529), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4529), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4529), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4529), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4529), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4529), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4529), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4529), + [anon_sym_MOZ_RAII] = ACTIONS(4529), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4529), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4529), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4529), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4529), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4529), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4529), + }, + [STATE(1627)] = { + [sym__declaration_modifiers] = STATE(1627), + [sym_attribute_specifier] = STATE(1627), + [sym_attribute_declaration] = STATE(1627), + [sym_ms_declspec_modifier] = STATE(1627), + [sym_storage_class_specifier] = STATE(1627), + [sym_type_qualifier] = STATE(1627), + [sym_alignas_qualifier] = STATE(1593), + [sym_explicit_function_specifier] = STATE(1627), + [sym__constructor_specifiers] = STATE(1627), + [sym_macro_annotation] = STATE(1618), + [aux_sym_operator_cast_definition_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5613), + [anon_sym_TILDE] = ACTIONS(5613), + [anon_sym_STAR] = ACTIONS(5613), + [anon_sym_AMP_AMP] = ACTIONS(5613), + [anon_sym_AMP] = ACTIONS(5611), + [anon_sym___extension__] = ACTIONS(5615), + [anon_sym_virtual] = ACTIONS(5618), + [anon_sym_extern] = ACTIONS(5621), + [anon_sym___attribute__] = ACTIONS(5624), + [anon_sym___attribute] = ACTIONS(5624), + [anon_sym_COLON_COLON] = ACTIONS(5613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5627), + [anon_sym___declspec] = ACTIONS(5630), + [anon_sym___based] = ACTIONS(5611), + [anon_sym_LBRACK] = ACTIONS(5611), + [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(5615), + [anon_sym_constexpr] = ACTIONS(5615), + [anon_sym_volatile] = ACTIONS(5615), + [anon_sym_restrict] = ACTIONS(5615), + [anon_sym___restrict__] = ACTIONS(5615), + [anon_sym__Atomic] = ACTIONS(5615), + [anon_sym__Noreturn] = ACTIONS(5615), + [anon_sym_noreturn] = ACTIONS(5615), + [anon_sym__Nonnull] = ACTIONS(5615), + [anon_sym_mutable] = ACTIONS(5615), + [anon_sym_constinit] = ACTIONS(5615), + [anon_sym_consteval] = ACTIONS(5615), + [anon_sym_alignas] = ACTIONS(5633), + [anon_sym__Alignas] = ACTIONS(5633), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5611), + [anon_sym_explicit] = ACTIONS(5636), + [anon_sym_template] = ACTIONS(5611), + [anon_sym_operator] = ACTIONS(5611), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5639), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5639), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5639), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5639), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5639), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5639), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5639), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5639), + [anon_sym_MOZ_COLD] = ACTIONS(5639), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5639), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5639), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5639), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5639), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5639), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5639), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5639), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5639), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5639), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5639), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5639), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5639), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5639), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5639), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5639), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5639), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5639), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5639), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5639), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5639), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5639), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5639), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5639), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5639), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5639), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5639), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5639), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5639), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5639), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5639), + [anon_sym_MOZ_NONNULL] = ACTIONS(5639), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5639), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5639), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5639), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5639), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5639), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5639), + [anon_sym_MOZ_NORETURN] = ACTIONS(5639), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5639), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5639), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5639), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5639), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5639), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5639), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5639), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5639), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5639), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5639), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5639), + [anon_sym_MOZ_RAII] = ACTIONS(5639), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5639), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5639), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5639), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5639), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5639), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5639), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5639), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5639), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5639), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5639), + }, + [STATE(1628)] = { + [sym_identifier] = ACTIONS(2624), + [anon_sym_LPAREN2] = ACTIONS(2626), + [anon_sym_TILDE] = ACTIONS(2626), + [anon_sym_STAR] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2626), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym___extension__] = ACTIONS(2624), + [anon_sym_virtual] = ACTIONS(2624), + [anon_sym_extern] = ACTIONS(2624), + [anon_sym___attribute__] = ACTIONS(2624), + [anon_sym___attribute] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2626), + [anon_sym___declspec] = ACTIONS(2624), + [anon_sym___based] = ACTIONS(2624), + [anon_sym_signed] = ACTIONS(2624), + [anon_sym_unsigned] = ACTIONS(2624), + [anon_sym_long] = ACTIONS(2624), + [anon_sym_short] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_static] = ACTIONS(2624), + [anon_sym_register] = ACTIONS(2624), + [anon_sym_inline] = ACTIONS(2624), + [anon_sym___inline] = ACTIONS(2624), + [anon_sym___inline__] = ACTIONS(2624), + [anon_sym___forceinline] = ACTIONS(2624), + [anon_sym_thread_local] = ACTIONS(2624), + [anon_sym___thread] = ACTIONS(2624), + [anon_sym_const] = ACTIONS(2624), + [anon_sym_constexpr] = ACTIONS(2624), + [anon_sym_volatile] = ACTIONS(2624), + [anon_sym_restrict] = ACTIONS(2624), + [anon_sym___restrict__] = ACTIONS(2624), + [anon_sym__Atomic] = ACTIONS(2624), + [anon_sym__Noreturn] = ACTIONS(2624), + [anon_sym_noreturn] = ACTIONS(2624), + [anon_sym__Nonnull] = ACTIONS(2624), + [anon_sym_mutable] = ACTIONS(2624), + [anon_sym_constinit] = ACTIONS(2624), + [anon_sym_consteval] = ACTIONS(2624), + [anon_sym_alignas] = ACTIONS(2624), + [anon_sym__Alignas] = ACTIONS(2624), + [sym_primitive_type] = ACTIONS(2624), + [anon_sym_enum] = ACTIONS(2624), + [anon_sym_class] = ACTIONS(2624), + [anon_sym_struct] = ACTIONS(2624), + [anon_sym_union] = ACTIONS(2624), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2624), + [anon_sym_decltype] = ACTIONS(2624), + [anon_sym_explicit] = ACTIONS(2624), + [anon_sym_typename] = ACTIONS(2624), + [anon_sym_template] = ACTIONS(2624), + [anon_sym_operator] = ACTIONS(2624), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2624), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2624), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2624), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2624), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2624), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2624), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2624), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2624), + [anon_sym_MOZ_COLD] = ACTIONS(2624), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2624), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2624), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2624), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2624), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2624), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2624), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2624), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2624), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2624), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2624), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2624), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2624), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2624), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2624), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2624), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2624), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2624), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2624), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2624), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2624), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2624), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_NONNULL] = ACTIONS(2624), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2624), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2624), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2624), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2624), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2624), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_NORETURN] = ACTIONS(2624), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2624), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2624), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2624), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2624), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2624), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2624), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2624), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2624), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2624), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2624), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2624), + [anon_sym_MOZ_RAII] = ACTIONS(2624), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2624), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2624), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2624), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2624), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2624), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2624), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2624), + }, + [STATE(1629)] = { + [sym_macro_annotation] = STATE(3563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4688), + [anon_sym_PLUS] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(4688), + [anon_sym_SLASH] = ACTIONS(4688), + [anon_sym_PERCENT] = ACTIONS(4688), + [anon_sym_PIPE_PIPE] = ACTIONS(4690), + [anon_sym_AMP_AMP] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4688), + [anon_sym_CARET] = ACTIONS(4688), + [anon_sym_AMP] = ACTIONS(4688), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4688), + [anon_sym_GT_EQ] = ACTIONS(4690), + [anon_sym_LT_EQ] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4688), + [anon_sym_LT_LT] = ACTIONS(4688), + [anon_sym_GT_GT] = ACTIONS(4688), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4688), + [anon_sym_EQ] = ACTIONS(4688), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_STAR_EQ] = ACTIONS(4690), + [anon_sym_SLASH_EQ] = ACTIONS(4690), + [anon_sym_PERCENT_EQ] = ACTIONS(4690), + [anon_sym_PLUS_EQ] = ACTIONS(4690), + [anon_sym_DASH_EQ] = ACTIONS(4690), + [anon_sym_LT_LT_EQ] = ACTIONS(4690), + [anon_sym_GT_GT_EQ] = ACTIONS(4690), + [anon_sym_AMP_EQ] = ACTIONS(4690), + [anon_sym_CARET_EQ] = ACTIONS(4690), + [anon_sym_PIPE_EQ] = ACTIONS(4690), + [anon_sym_and_eq] = ACTIONS(4690), + [anon_sym_or_eq] = ACTIONS(4690), + [anon_sym_xor_eq] = ACTIONS(4690), + [anon_sym_LT_EQ_GT] = ACTIONS(4690), + [anon_sym_or] = ACTIONS(4688), + [anon_sym_and] = ACTIONS(4688), + [anon_sym_bitor] = ACTIONS(4690), + [anon_sym_xor] = ACTIONS(4688), + [anon_sym_bitand] = ACTIONS(4690), + [anon_sym_not_eq] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4690), + [anon_sym_PLUS_PLUS] = ACTIONS(4690), + [anon_sym_DOT] = ACTIONS(4688), + [anon_sym_DOT_STAR] = ACTIONS(4690), + [anon_sym_DASH_GT] = ACTIONS(4688), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(4690), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5603), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5603), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5605), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5603), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5603), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5605), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5603), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5603), + [anon_sym_MOZ_COLD] = ACTIONS(5603), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5603), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5605), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5603), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5603), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5603), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5603), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5603), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5603), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5603), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5603), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5603), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5603), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5603), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5603), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5605), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5603), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5603), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5603), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5603), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5605), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5603), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_NONNULL] = ACTIONS(5605), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5603), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5603), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5603), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5603), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5603), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_NORETURN] = ACTIONS(5605), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5603), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5603), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5603), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5603), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5603), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5603), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5603), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5603), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5603), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5603), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5603), + [anon_sym_MOZ_RAII] = ACTIONS(5603), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5603), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5603), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5603), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5603), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5603), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5603), + }, + [STATE(1630)] = { + [sym_template_argument_list] = STATE(1469), + [sym_identifier] = ACTIONS(3272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3279), + [anon_sym_COMMA] = ACTIONS(3279), + [anon_sym_RPAREN] = ACTIONS(3279), + [anon_sym_LPAREN2] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3279), + [anon_sym_AMP_AMP] = ACTIONS(3279), + [anon_sym_AMP] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(5530), + [anon_sym___extension__] = ACTIONS(3272), + [anon_sym_virtual] = ACTIONS(3272), + [anon_sym_extern] = ACTIONS(3272), + [anon_sym___attribute__] = ACTIONS(3272), + [anon_sym___attribute] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3279), + [anon_sym___declspec] = ACTIONS(3272), + [anon_sym___based] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3279), + [anon_sym_register] = ACTIONS(3272), + [anon_sym_inline] = ACTIONS(3272), + [anon_sym___inline] = ACTIONS(3272), + [anon_sym___inline__] = ACTIONS(3272), + [anon_sym___forceinline] = ACTIONS(3272), + [anon_sym_thread_local] = ACTIONS(3272), + [anon_sym___thread] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_constexpr] = ACTIONS(3272), + [anon_sym_volatile] = ACTIONS(3272), + [anon_sym_restrict] = ACTIONS(3272), + [anon_sym___restrict__] = ACTIONS(3272), + [anon_sym__Atomic] = ACTIONS(3272), + [anon_sym__Noreturn] = ACTIONS(3272), + [anon_sym_noreturn] = ACTIONS(3272), + [anon_sym__Nonnull] = ACTIONS(3272), + [anon_sym_mutable] = ACTIONS(3272), + [anon_sym_constinit] = ACTIONS(3272), + [anon_sym_consteval] = ACTIONS(3272), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3272), + [anon_sym_decltype] = ACTIONS(3272), + [anon_sym_final] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_template] = ACTIONS(3272), + [anon_sym_GT2] = ACTIONS(3279), + [anon_sym_operator] = ACTIONS(3272), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3272), + [anon_sym_MOZ_COLD] = ACTIONS(3272), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3272), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3272), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3272), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3272), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3272), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3272), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3272), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3272), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3272), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3272), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3272), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3272), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_RAII] = ACTIONS(3272), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3272), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3272), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3272), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3272), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3272), + }, + [STATE(1631)] = { + [sym__declaration_modifiers] = STATE(1631), + [sym_attribute_specifier] = STATE(1631), + [sym_attribute_declaration] = STATE(1631), + [sym_ms_declspec_modifier] = STATE(1631), + [sym_storage_class_specifier] = STATE(1631), + [sym_type_qualifier] = STATE(1631), + [sym_alignas_qualifier] = STATE(955), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(1631), + [sym_identifier] = ACTIONS(5076), + [anon_sym___extension__] = ACTIONS(5642), + [anon_sym_virtual] = ACTIONS(5645), + [anon_sym_extern] = ACTIONS(5648), + [anon_sym___attribute__] = ACTIONS(5651), + [anon_sym___attribute] = ACTIONS(5651), + [anon_sym_COLON_COLON] = ACTIONS(5078), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5654), + [anon_sym___declspec] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(5076), + [anon_sym_unsigned] = ACTIONS(5076), + [anon_sym_long] = ACTIONS(5076), + [anon_sym_short] = ACTIONS(5076), + [anon_sym_static] = ACTIONS(5648), + [anon_sym_register] = ACTIONS(5648), + [anon_sym_inline] = ACTIONS(5648), + [anon_sym___inline] = ACTIONS(5648), + [anon_sym___inline__] = ACTIONS(5648), + [anon_sym___forceinline] = ACTIONS(5648), + [anon_sym_thread_local] = ACTIONS(5648), + [anon_sym___thread] = ACTIONS(5648), + [anon_sym_const] = ACTIONS(5642), + [anon_sym_constexpr] = ACTIONS(5642), + [anon_sym_volatile] = ACTIONS(5642), + [anon_sym_restrict] = ACTIONS(5642), + [anon_sym___restrict__] = ACTIONS(5642), + [anon_sym__Atomic] = ACTIONS(5642), + [anon_sym__Noreturn] = ACTIONS(5642), + [anon_sym_noreturn] = ACTIONS(5642), + [anon_sym__Nonnull] = ACTIONS(5642), + [anon_sym_mutable] = ACTIONS(5642), + [anon_sym_constinit] = ACTIONS(5642), + [anon_sym_consteval] = ACTIONS(5642), + [anon_sym_alignas] = ACTIONS(5660), + [anon_sym__Alignas] = ACTIONS(5660), + [sym_primitive_type] = ACTIONS(5076), + [anon_sym_enum] = ACTIONS(5076), + [anon_sym_class] = ACTIONS(5076), + [anon_sym_struct] = ACTIONS(5076), + [anon_sym_union] = ACTIONS(5076), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5076), + [anon_sym_decltype] = ACTIONS(5076), + [anon_sym_typename] = ACTIONS(5076), + [anon_sym_template] = ACTIONS(5076), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5663), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5663), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5663), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5663), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5663), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5663), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5663), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5663), + [anon_sym_MOZ_COLD] = ACTIONS(5663), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5663), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5663), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5663), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5663), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5663), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5663), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5663), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5663), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5663), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5663), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5663), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5663), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5663), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5663), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5663), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5663), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5663), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5663), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5663), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5663), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5663), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5663), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5663), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5663), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5663), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5663), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5663), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5663), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5663), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5663), + [anon_sym_MOZ_NONNULL] = ACTIONS(5663), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5663), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5663), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5663), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5663), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5663), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5663), + [anon_sym_MOZ_NORETURN] = ACTIONS(5663), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5663), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5663), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5663), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5663), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5663), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5663), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5663), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5663), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5663), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5663), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5663), + [anon_sym_MOZ_RAII] = ACTIONS(5663), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5663), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5663), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5663), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5663), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5663), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5663), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5663), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5663), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5663), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5663), + }, + [STATE(1632)] = { + [sym_macro_annotation] = STATE(3571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_RPAREN] = ACTIONS(4700), + [anon_sym_LPAREN2] = ACTIONS(4700), + [anon_sym_DASH] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_STAR] = ACTIONS(4698), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_PERCENT] = ACTIONS(4698), + [anon_sym_PIPE_PIPE] = ACTIONS(4700), + [anon_sym_AMP_AMP] = ACTIONS(4700), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_CARET] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(4698), + [anon_sym_EQ_EQ] = ACTIONS(4700), + [anon_sym_BANG_EQ] = ACTIONS(4700), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4700), + [anon_sym_LT_EQ] = ACTIONS(4698), + [anon_sym_LT] = ACTIONS(4698), + [anon_sym_LT_LT] = ACTIONS(4698), + [anon_sym_GT_GT] = ACTIONS(4698), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4700), + [anon_sym_LBRACK] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_QMARK] = ACTIONS(4700), + [anon_sym_STAR_EQ] = ACTIONS(4700), + [anon_sym_SLASH_EQ] = ACTIONS(4700), + [anon_sym_PERCENT_EQ] = ACTIONS(4700), + [anon_sym_PLUS_EQ] = ACTIONS(4700), + [anon_sym_DASH_EQ] = ACTIONS(4700), + [anon_sym_LT_LT_EQ] = ACTIONS(4700), + [anon_sym_GT_GT_EQ] = ACTIONS(4700), + [anon_sym_AMP_EQ] = ACTIONS(4700), + [anon_sym_CARET_EQ] = ACTIONS(4700), + [anon_sym_PIPE_EQ] = ACTIONS(4700), + [anon_sym_and_eq] = ACTIONS(4700), + [anon_sym_or_eq] = ACTIONS(4700), + [anon_sym_xor_eq] = ACTIONS(4700), + [anon_sym_LT_EQ_GT] = ACTIONS(4700), + [anon_sym_or] = ACTIONS(4698), + [anon_sym_and] = ACTIONS(4698), + [anon_sym_bitor] = ACTIONS(4700), + [anon_sym_xor] = ACTIONS(4698), + [anon_sym_bitand] = ACTIONS(4700), + [anon_sym_not_eq] = ACTIONS(4700), + [anon_sym_DASH_DASH] = ACTIONS(4700), + [anon_sym_PLUS_PLUS] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_DOT_STAR] = ACTIONS(4700), + [anon_sym_DASH_GT] = ACTIONS(4698), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(4700), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5603), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5603), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5605), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5603), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5603), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5605), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5603), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5603), + [anon_sym_MOZ_COLD] = ACTIONS(5603), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5603), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5605), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5603), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5603), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5603), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5603), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5603), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5603), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5603), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5603), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5603), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5603), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5603), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5603), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5603), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5605), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5603), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5603), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5603), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5603), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5605), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5603), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_NONNULL] = ACTIONS(5605), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5603), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5603), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5603), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5603), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5603), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_NORETURN] = ACTIONS(5605), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5603), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5603), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5603), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5603), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5603), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5603), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5603), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5603), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5603), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5603), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5603), + [anon_sym_MOZ_RAII] = ACTIONS(5603), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5603), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5603), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5603), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5603), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5603), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5603), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5603), + }, + [STATE(1633)] = { + [sym_template_argument_list] = STATE(1873), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(3095), + [anon_sym_RPAREN] = ACTIONS(3110), + [anon_sym_LPAREN2] = ACTIONS(3110), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT] = ACTIONS(5530), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(5441), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3095), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(1634)] = { + [sym_template_argument_list] = STATE(1469), + [sym_identifier] = ACTIONS(4529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3113), + [anon_sym_COMMA] = ACTIONS(5607), + [anon_sym_LPAREN2] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_LT] = ACTIONS(5530), + [anon_sym___extension__] = ACTIONS(4529), + [anon_sym_virtual] = ACTIONS(4529), + [anon_sym_extern] = ACTIONS(4529), + [anon_sym___attribute__] = ACTIONS(4529), + [anon_sym___attribute] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3113), + [anon_sym___declspec] = ACTIONS(4529), + [anon_sym___based] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_static] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(5609), + [anon_sym_register] = ACTIONS(4529), + [anon_sym_inline] = ACTIONS(4529), + [anon_sym___inline] = ACTIONS(4529), + [anon_sym___inline__] = ACTIONS(4529), + [anon_sym___forceinline] = ACTIONS(4529), + [anon_sym_thread_local] = ACTIONS(4529), + [anon_sym___thread] = ACTIONS(4529), + [anon_sym_const] = ACTIONS(4529), + [anon_sym_constexpr] = ACTIONS(4529), + [anon_sym_volatile] = ACTIONS(4529), + [anon_sym_restrict] = ACTIONS(4529), + [anon_sym___restrict__] = ACTIONS(4529), + [anon_sym__Atomic] = ACTIONS(4529), + [anon_sym__Noreturn] = ACTIONS(4529), + [anon_sym_noreturn] = ACTIONS(4529), + [anon_sym__Nonnull] = ACTIONS(4529), + [anon_sym_mutable] = ACTIONS(4529), + [anon_sym_constinit] = ACTIONS(4529), + [anon_sym_consteval] = ACTIONS(4529), + [anon_sym_alignas] = ACTIONS(4529), + [anon_sym__Alignas] = ACTIONS(4529), + [anon_sym_COLON] = ACTIONS(4529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4529), + [anon_sym_decltype] = ACTIONS(4529), + [anon_sym_final] = ACTIONS(4529), + [anon_sym_override] = ACTIONS(4529), + [anon_sym_template] = ACTIONS(4529), + [anon_sym_GT2] = ACTIONS(5607), + [anon_sym_operator] = ACTIONS(4529), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4529), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4529), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4529), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4529), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4529), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4529), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4529), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4529), + [anon_sym_MOZ_COLD] = ACTIONS(4529), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4529), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4529), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4529), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4529), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4529), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4529), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4529), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4529), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4529), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4529), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4529), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4529), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4529), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4529), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4529), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4529), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4529), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4529), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4529), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4529), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_NONNULL] = ACTIONS(4529), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4529), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4529), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4529), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4529), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4529), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_NORETURN] = ACTIONS(4529), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4529), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4529), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4529), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4529), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4529), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4529), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4529), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4529), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4529), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4529), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4529), + [anon_sym_MOZ_RAII] = ACTIONS(4529), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4529), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4529), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4529), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4529), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4529), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4529), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4529), + }, + [STATE(1635)] = { + [sym_attribute_specifier] = STATE(1392), + [sym_enumerator_list] = STATE(1556), + [sym__enum_base_clause] = STATE(1487), + [sym_identifier] = ACTIONS(5454), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5456), + [anon_sym_COMMA] = ACTIONS(5456), + [anon_sym_RPAREN] = ACTIONS(5456), + [anon_sym_LPAREN2] = ACTIONS(5456), + [anon_sym_TILDE] = ACTIONS(5456), + [anon_sym_STAR] = ACTIONS(5456), + [anon_sym_AMP_AMP] = ACTIONS(5456), + [anon_sym_AMP] = ACTIONS(5454), + [anon_sym___extension__] = ACTIONS(5454), + [anon_sym_virtual] = ACTIONS(5454), + [anon_sym_extern] = ACTIONS(5454), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(5456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5456), + [anon_sym___declspec] = ACTIONS(5454), + [anon_sym___based] = ACTIONS(5454), + [anon_sym_LBRACE] = ACTIONS(5250), + [anon_sym_LBRACK] = ACTIONS(5454), + [anon_sym_static] = ACTIONS(5454), + [anon_sym_EQ] = ACTIONS(5456), + [anon_sym_register] = ACTIONS(5454), + [anon_sym_inline] = ACTIONS(5454), + [anon_sym___inline] = ACTIONS(5454), + [anon_sym___inline__] = ACTIONS(5454), + [anon_sym___forceinline] = ACTIONS(5454), + [anon_sym_thread_local] = ACTIONS(5454), + [anon_sym___thread] = ACTIONS(5454), + [anon_sym_const] = ACTIONS(5454), + [anon_sym_constexpr] = ACTIONS(5454), + [anon_sym_volatile] = ACTIONS(5454), + [anon_sym_restrict] = ACTIONS(5454), + [anon_sym___restrict__] = ACTIONS(5454), + [anon_sym__Atomic] = ACTIONS(5454), + [anon_sym__Noreturn] = ACTIONS(5454), + [anon_sym_noreturn] = ACTIONS(5454), + [anon_sym__Nonnull] = ACTIONS(5454), + [anon_sym_mutable] = ACTIONS(5454), + [anon_sym_constinit] = ACTIONS(5454), + [anon_sym_consteval] = ACTIONS(5454), + [anon_sym_alignas] = ACTIONS(5454), + [anon_sym__Alignas] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(5666), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5454), + [anon_sym_decltype] = ACTIONS(5454), + [anon_sym_template] = ACTIONS(5454), + [anon_sym_GT2] = ACTIONS(5456), + [anon_sym_operator] = ACTIONS(5454), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5454), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5454), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5454), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5454), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5454), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5454), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5454), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5454), + [anon_sym_MOZ_COLD] = ACTIONS(5454), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5454), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5454), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5454), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5454), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5454), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5454), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5454), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5454), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5454), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5454), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5454), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5454), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5454), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5454), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5454), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5454), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5454), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5454), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5454), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5454), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_NONNULL] = ACTIONS(5454), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5454), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5454), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5454), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5454), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5454), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_NORETURN] = ACTIONS(5454), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5454), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5454), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5454), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5454), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5454), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5454), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5454), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5454), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5454), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5454), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5454), + [anon_sym_MOZ_RAII] = ACTIONS(5454), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5454), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5454), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5454), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5454), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5454), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5454), + }, + [STATE(1636)] = { + [sym_attribute_specifier] = STATE(1371), + [sym_enumerator_list] = STATE(1570), + [sym__enum_base_clause] = STATE(1478), + [sym_identifier] = ACTIONS(5504), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5506), + [anon_sym_COMMA] = ACTIONS(5506), + [anon_sym_RPAREN] = ACTIONS(5506), + [anon_sym_LPAREN2] = ACTIONS(5506), + [anon_sym_TILDE] = ACTIONS(5506), + [anon_sym_STAR] = ACTIONS(5506), + [anon_sym_AMP_AMP] = ACTIONS(5506), + [anon_sym_AMP] = ACTIONS(5504), + [anon_sym___extension__] = ACTIONS(5504), + [anon_sym_virtual] = ACTIONS(5504), + [anon_sym_extern] = ACTIONS(5504), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_COLON_COLON] = ACTIONS(5506), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5506), + [anon_sym___declspec] = ACTIONS(5504), + [anon_sym___based] = ACTIONS(5504), + [anon_sym_LBRACE] = ACTIONS(5250), + [anon_sym_LBRACK] = ACTIONS(5504), + [anon_sym_static] = ACTIONS(5504), + [anon_sym_EQ] = ACTIONS(5506), + [anon_sym_register] = ACTIONS(5504), + [anon_sym_inline] = ACTIONS(5504), + [anon_sym___inline] = ACTIONS(5504), + [anon_sym___inline__] = ACTIONS(5504), + [anon_sym___forceinline] = ACTIONS(5504), + [anon_sym_thread_local] = ACTIONS(5504), + [anon_sym___thread] = ACTIONS(5504), + [anon_sym_const] = ACTIONS(5504), + [anon_sym_constexpr] = ACTIONS(5504), + [anon_sym_volatile] = ACTIONS(5504), + [anon_sym_restrict] = ACTIONS(5504), + [anon_sym___restrict__] = ACTIONS(5504), + [anon_sym__Atomic] = ACTIONS(5504), + [anon_sym__Noreturn] = ACTIONS(5504), + [anon_sym_noreturn] = ACTIONS(5504), + [anon_sym__Nonnull] = ACTIONS(5504), + [anon_sym_mutable] = ACTIONS(5504), + [anon_sym_constinit] = ACTIONS(5504), + [anon_sym_consteval] = ACTIONS(5504), + [anon_sym_alignas] = ACTIONS(5504), + [anon_sym__Alignas] = ACTIONS(5504), + [anon_sym_COLON] = ACTIONS(5666), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5504), + [anon_sym_decltype] = ACTIONS(5504), + [anon_sym_template] = ACTIONS(5504), + [anon_sym_GT2] = ACTIONS(5506), + [anon_sym_operator] = ACTIONS(5504), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5504), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5504), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5504), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5504), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5504), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5504), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5504), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5504), + [anon_sym_MOZ_COLD] = ACTIONS(5504), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5504), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5504), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5504), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5504), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5504), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5504), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5504), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5504), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5504), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5504), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5504), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5504), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5504), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5504), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5504), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5504), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5504), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5504), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5504), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5504), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_NONNULL] = ACTIONS(5504), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5504), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5504), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5504), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5504), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5504), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_NORETURN] = ACTIONS(5504), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5504), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5504), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5504), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5504), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5504), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5504), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5504), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5504), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5504), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5504), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5504), + [anon_sym_MOZ_RAII] = ACTIONS(5504), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5504), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5504), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5504), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5504), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5504), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5504), + }, + [STATE(1637)] = { + [sym_macro_annotation] = STATE(3719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4688), + [anon_sym_PLUS] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(4688), + [anon_sym_SLASH] = ACTIONS(4688), + [anon_sym_PERCENT] = ACTIONS(4688), + [anon_sym_PIPE_PIPE] = ACTIONS(4690), + [anon_sym_AMP_AMP] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4688), + [anon_sym_CARET] = ACTIONS(4688), + [anon_sym_AMP] = ACTIONS(4688), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4688), + [anon_sym_GT_EQ] = ACTIONS(4688), + [anon_sym_LT_EQ] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4688), + [anon_sym_LT_LT] = ACTIONS(4688), + [anon_sym_GT_GT] = ACTIONS(4688), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4688), + [anon_sym_EQ] = ACTIONS(4688), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_STAR_EQ] = ACTIONS(4690), + [anon_sym_SLASH_EQ] = ACTIONS(4690), + [anon_sym_PERCENT_EQ] = ACTIONS(4690), + [anon_sym_PLUS_EQ] = ACTIONS(4690), + [anon_sym_DASH_EQ] = ACTIONS(4690), + [anon_sym_LT_LT_EQ] = ACTIONS(4690), + [anon_sym_GT_GT_EQ] = ACTIONS(4688), + [anon_sym_AMP_EQ] = ACTIONS(4690), + [anon_sym_CARET_EQ] = ACTIONS(4690), + [anon_sym_PIPE_EQ] = ACTIONS(4690), + [anon_sym_and_eq] = ACTIONS(4690), + [anon_sym_or_eq] = ACTIONS(4690), + [anon_sym_xor_eq] = ACTIONS(4690), + [anon_sym_LT_EQ_GT] = ACTIONS(4690), + [anon_sym_or] = ACTIONS(4688), + [anon_sym_and] = ACTIONS(4688), + [anon_sym_bitor] = ACTIONS(4690), + [anon_sym_xor] = ACTIONS(4688), + [anon_sym_bitand] = ACTIONS(4690), + [anon_sym_not_eq] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(4690), + [anon_sym_PLUS_PLUS] = ACTIONS(4690), + [anon_sym_DOT] = ACTIONS(4688), + [anon_sym_DOT_STAR] = ACTIONS(4690), + [anon_sym_DASH_GT] = ACTIONS(4690), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(4690), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5668), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5668), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5670), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5668), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5668), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5670), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5668), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5668), + [anon_sym_MOZ_COLD] = ACTIONS(5668), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5668), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5670), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5668), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5668), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5668), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5668), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5668), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5668), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5668), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5668), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5668), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5668), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5668), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5668), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5670), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5668), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5668), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5668), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5668), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5670), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5668), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_NONNULL] = ACTIONS(5670), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5668), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5668), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5668), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5668), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5668), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_NORETURN] = ACTIONS(5670), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5668), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5668), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5668), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5668), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5668), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5668), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5668), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5668), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5668), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5668), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5668), + [anon_sym_MOZ_RAII] = ACTIONS(5668), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5668), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5668), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5668), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5668), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5668), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5668), + }, + [STATE(1638)] = { + [sym_macro_annotation] = STATE(3737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_LPAREN2] = ACTIONS(4700), + [anon_sym_DASH] = ACTIONS(4698), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_STAR] = ACTIONS(4698), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_PERCENT] = ACTIONS(4698), + [anon_sym_PIPE_PIPE] = ACTIONS(4700), + [anon_sym_AMP_AMP] = ACTIONS(4700), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_CARET] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(4698), + [anon_sym_EQ_EQ] = ACTIONS(4700), + [anon_sym_BANG_EQ] = ACTIONS(4700), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4698), + [anon_sym_LT_EQ] = ACTIONS(4698), + [anon_sym_LT] = ACTIONS(4698), + [anon_sym_LT_LT] = ACTIONS(4698), + [anon_sym_GT_GT] = ACTIONS(4698), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4700), + [anon_sym_LBRACK] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_QMARK] = ACTIONS(4700), + [anon_sym_STAR_EQ] = ACTIONS(4700), + [anon_sym_SLASH_EQ] = ACTIONS(4700), + [anon_sym_PERCENT_EQ] = ACTIONS(4700), + [anon_sym_PLUS_EQ] = ACTIONS(4700), + [anon_sym_DASH_EQ] = ACTIONS(4700), + [anon_sym_LT_LT_EQ] = ACTIONS(4700), + [anon_sym_GT_GT_EQ] = ACTIONS(4698), + [anon_sym_AMP_EQ] = ACTIONS(4700), + [anon_sym_CARET_EQ] = ACTIONS(4700), + [anon_sym_PIPE_EQ] = ACTIONS(4700), + [anon_sym_and_eq] = ACTIONS(4700), + [anon_sym_or_eq] = ACTIONS(4700), + [anon_sym_xor_eq] = ACTIONS(4700), + [anon_sym_LT_EQ_GT] = ACTIONS(4700), + [anon_sym_or] = ACTIONS(4698), + [anon_sym_and] = ACTIONS(4698), + [anon_sym_bitor] = ACTIONS(4700), + [anon_sym_xor] = ACTIONS(4698), + [anon_sym_bitand] = ACTIONS(4700), + [anon_sym_not_eq] = ACTIONS(4700), + [anon_sym_DASH_DASH] = ACTIONS(4700), + [anon_sym_PLUS_PLUS] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_DOT_STAR] = ACTIONS(4700), + [anon_sym_DASH_GT] = ACTIONS(4700), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(4700), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5668), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5668), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5670), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5668), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5668), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5670), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5668), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5668), + [anon_sym_MOZ_COLD] = ACTIONS(5668), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5668), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5670), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5668), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5668), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5668), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5668), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5668), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5668), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5668), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5668), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5668), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5668), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5668), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5668), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5670), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5668), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5668), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5668), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5668), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5670), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5668), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_NONNULL] = ACTIONS(5670), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5668), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5668), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5668), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5668), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5668), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_NORETURN] = ACTIONS(5670), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5668), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5668), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5668), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5668), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5668), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5668), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5668), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5668), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5668), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5668), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5668), + [anon_sym_MOZ_RAII] = ACTIONS(5668), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5668), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5668), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5668), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5668), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5668), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5668), + }, + [STATE(1639)] = { + [sym_macro_annotation] = STATE(3741), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4696), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_LPAREN2] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4694), + [anon_sym_PLUS] = ACTIONS(4694), + [anon_sym_STAR] = ACTIONS(4694), + [anon_sym_SLASH] = ACTIONS(4694), + [anon_sym_PERCENT] = ACTIONS(4694), + [anon_sym_PIPE_PIPE] = ACTIONS(4696), + [anon_sym_AMP_AMP] = ACTIONS(4696), + [anon_sym_PIPE] = ACTIONS(4694), + [anon_sym_CARET] = ACTIONS(4694), + [anon_sym_AMP] = ACTIONS(4694), + [anon_sym_EQ_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ] = ACTIONS(4696), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_GT_EQ] = ACTIONS(4694), + [anon_sym_LT_EQ] = ACTIONS(4694), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_LT_LT] = ACTIONS(4694), + [anon_sym_GT_GT] = ACTIONS(4694), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4696), + [anon_sym_LBRACK] = ACTIONS(4694), + [anon_sym_EQ] = ACTIONS(4694), + [anon_sym_QMARK] = ACTIONS(4696), + [anon_sym_STAR_EQ] = ACTIONS(4696), + [anon_sym_SLASH_EQ] = ACTIONS(4696), + [anon_sym_PERCENT_EQ] = ACTIONS(4696), + [anon_sym_PLUS_EQ] = ACTIONS(4696), + [anon_sym_DASH_EQ] = ACTIONS(4696), + [anon_sym_LT_LT_EQ] = ACTIONS(4696), + [anon_sym_GT_GT_EQ] = ACTIONS(4694), + [anon_sym_AMP_EQ] = ACTIONS(4696), + [anon_sym_CARET_EQ] = ACTIONS(4696), + [anon_sym_PIPE_EQ] = ACTIONS(4696), + [anon_sym_and_eq] = ACTIONS(4696), + [anon_sym_or_eq] = ACTIONS(4696), + [anon_sym_xor_eq] = ACTIONS(4696), + [anon_sym_LT_EQ_GT] = ACTIONS(4696), + [anon_sym_or] = ACTIONS(4694), + [anon_sym_and] = ACTIONS(4694), + [anon_sym_bitor] = ACTIONS(4696), + [anon_sym_xor] = ACTIONS(4694), + [anon_sym_bitand] = ACTIONS(4696), + [anon_sym_not_eq] = ACTIONS(4696), + [anon_sym_DASH_DASH] = ACTIONS(4696), + [anon_sym_PLUS_PLUS] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_DOT_STAR] = ACTIONS(4696), + [anon_sym_DASH_GT] = ACTIONS(4696), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(4696), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5668), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5668), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5670), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5668), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5668), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5670), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5668), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5668), + [anon_sym_MOZ_COLD] = ACTIONS(5668), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5668), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5670), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5668), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5668), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5668), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5668), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5668), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5668), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5668), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5668), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5668), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5668), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5668), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5668), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5668), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5670), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5668), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5668), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5668), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5668), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5670), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5668), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_NONNULL] = ACTIONS(5670), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5668), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5668), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5668), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5668), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5668), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_NORETURN] = ACTIONS(5670), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5668), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5668), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5668), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5668), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5668), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5668), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5668), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5668), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5668), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5668), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5668), + [anon_sym_MOZ_RAII] = ACTIONS(5668), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5668), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5668), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5668), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5668), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5668), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5668), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5668), + }, + [STATE(1640)] = { + [sym_template_argument_list] = STATE(917), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3113), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_RPAREN] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym___extension__] = ACTIONS(3113), + [anon_sym_virtual] = ACTIONS(3113), + [anon_sym_extern] = ACTIONS(3113), + [anon_sym___attribute__] = ACTIONS(3113), + [anon_sym___attribute] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3113), + [anon_sym___declspec] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_static] = ACTIONS(3113), + [anon_sym_register] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym___inline] = ACTIONS(4529), + [anon_sym___inline__] = ACTIONS(3113), + [anon_sym___forceinline] = ACTIONS(3113), + [anon_sym_thread_local] = ACTIONS(3113), + [anon_sym___thread] = ACTIONS(3113), + [anon_sym_const] = ACTIONS(4529), + [anon_sym_constexpr] = ACTIONS(3113), + [anon_sym_volatile] = ACTIONS(3113), + [anon_sym_restrict] = ACTIONS(3113), + [anon_sym___restrict__] = ACTIONS(3113), + [anon_sym__Atomic] = ACTIONS(3113), + [anon_sym__Noreturn] = ACTIONS(3113), + [anon_sym_noreturn] = ACTIONS(3113), + [anon_sym__Nonnull] = ACTIONS(3113), + [anon_sym_mutable] = ACTIONS(3113), + [anon_sym_constinit] = ACTIONS(3113), + [anon_sym_consteval] = ACTIONS(3113), + [anon_sym_alignas] = ACTIONS(3113), + [anon_sym__Alignas] = ACTIONS(3113), + [anon_sym_COLON] = ACTIONS(4529), + [anon_sym_or] = ACTIONS(3113), + [anon_sym_and] = ACTIONS(3113), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3113), + [anon_sym_decltype] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_requires] = ACTIONS(3113), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3113), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3113), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4529), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3113), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3113), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4529), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3113), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3113), + [anon_sym_MOZ_COLD] = ACTIONS(3113), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3113), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3113), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3113), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3113), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3113), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4529), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3113), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3113), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3113), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3113), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3113), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3113), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3113), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3113), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3113), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3113), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3113), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3113), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3113), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3113), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3113), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3113), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4529), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3113), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3113), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3113), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3113), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4529), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3113), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3113), + [anon_sym_MOZ_NONNULL] = ACTIONS(4529), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3113), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3113), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3113), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3113), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3113), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3113), + [anon_sym_MOZ_NORETURN] = ACTIONS(4529), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3113), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3113), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3113), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3113), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3113), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3113), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3113), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3113), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3113), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3113), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3113), + [anon_sym_MOZ_RAII] = ACTIONS(3113), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3113), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3113), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3113), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3113), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3113), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3113), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3113), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3113), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3113), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3113), + }, + [STATE(1641)] = { + [sym_template_argument_list] = STATE(917), + [aux_sym_sized_type_specifier_repeat1] = STATE(1610), + [anon_sym_COMMA] = ACTIONS(3095), + [anon_sym_RPAREN] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_virtual] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(3095), + [anon_sym___attribute__] = ACTIONS(3095), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), + [anon_sym___declspec] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_signed] = ACTIONS(5264), + [anon_sym_unsigned] = ACTIONS(5264), + [anon_sym_long] = ACTIONS(5264), + [anon_sym_short] = ACTIONS(5264), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_register] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym___inline] = ACTIONS(3087), + [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(3087), + [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__Nonnull] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym__Alignas] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_final] = ACTIONS(3095), + [anon_sym_override] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_requires] = ACTIONS(3095), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3095), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3095), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3095), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3095), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3095), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3095), + [anon_sym_MOZ_COLD] = ACTIONS(3095), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3095), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3095), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3095), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3095), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3095), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3095), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3095), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3095), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3095), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3095), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3095), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3095), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3095), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3095), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3095), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3095), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3095), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3095), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3095), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3095), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3095), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3095), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3095), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3095), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3095), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3095), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3095), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3095), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3095), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3095), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3095), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3095), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3095), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3095), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3095), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3095), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3095), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3095), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3095), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3095), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3095), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3095), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3095), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3095), + [anon_sym_MOZ_RAII] = ACTIONS(3095), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3095), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3095), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3095), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3095), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3095), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3095), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3095), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3095), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3095), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3095), + }, + [STATE(1642)] = { + [sym_template_argument_list] = STATE(917), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3279), + [anon_sym_COMMA] = ACTIONS(3279), + [anon_sym_RPAREN] = ACTIONS(3279), + [anon_sym_LPAREN2] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3279), + [anon_sym_PIPE_PIPE] = ACTIONS(3279), + [anon_sym_AMP_AMP] = ACTIONS(3279), + [anon_sym_AMP] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym___extension__] = ACTIONS(3279), + [anon_sym_virtual] = ACTIONS(3279), + [anon_sym_extern] = ACTIONS(3279), + [anon_sym___attribute__] = ACTIONS(3279), + [anon_sym___attribute] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3279), + [anon_sym___declspec] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3279), + [anon_sym_register] = ACTIONS(3279), + [anon_sym_inline] = ACTIONS(3279), + [anon_sym___inline] = ACTIONS(3272), + [anon_sym___inline__] = ACTIONS(3279), + [anon_sym___forceinline] = ACTIONS(3279), + [anon_sym_thread_local] = ACTIONS(3279), + [anon_sym___thread] = ACTIONS(3279), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_constexpr] = ACTIONS(3279), + [anon_sym_volatile] = ACTIONS(3279), + [anon_sym_restrict] = ACTIONS(3279), + [anon_sym___restrict__] = ACTIONS(3279), + [anon_sym__Atomic] = ACTIONS(3279), + [anon_sym__Noreturn] = ACTIONS(3279), + [anon_sym_noreturn] = ACTIONS(3279), + [anon_sym__Nonnull] = ACTIONS(3279), + [anon_sym_mutable] = ACTIONS(3279), + [anon_sym_constinit] = ACTIONS(3279), + [anon_sym_consteval] = ACTIONS(3279), + [anon_sym_alignas] = ACTIONS(3279), + [anon_sym__Alignas] = ACTIONS(3279), + [anon_sym_COLON] = ACTIONS(3272), + [anon_sym_or] = ACTIONS(3279), + [anon_sym_and] = ACTIONS(3279), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3279), + [anon_sym_decltype] = ACTIONS(3279), + [anon_sym_final] = ACTIONS(3279), + [anon_sym_override] = ACTIONS(3279), + [anon_sym_try] = ACTIONS(3279), + [anon_sym_requires] = ACTIONS(3279), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3279), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3279), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3279), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3279), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3279), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3279), + [anon_sym_MOZ_COLD] = ACTIONS(3279), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3279), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3279), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3279), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3279), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3279), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3279), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3279), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3279), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3279), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3279), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3279), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3279), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3279), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3279), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3279), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3279), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3279), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3279), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3279), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3279), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3279), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3279), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3279), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3279), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3279), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3279), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3279), + [anon_sym_MOZ_NONNULL] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3279), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3279), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3279), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3279), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3279), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3279), + [anon_sym_MOZ_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3279), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3279), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3279), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3279), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3279), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3279), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3279), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3279), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3279), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3279), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3279), + [anon_sym_MOZ_RAII] = ACTIONS(3279), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3279), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3279), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3279), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3279), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3279), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3279), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3279), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3279), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3279), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3279), + }, + [STATE(1643)] = { + [sym_identifier] = ACTIONS(5672), + [anon_sym___extension__] = ACTIONS(5672), + [anon_sym_virtual] = ACTIONS(5672), + [anon_sym_extern] = ACTIONS(5672), + [anon_sym___attribute__] = ACTIONS(5672), + [anon_sym___attribute] = ACTIONS(5672), + [anon_sym_COLON_COLON] = ACTIONS(5674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5674), + [anon_sym___declspec] = ACTIONS(5672), + [anon_sym___cdecl] = ACTIONS(5672), + [anon_sym___clrcall] = ACTIONS(5672), + [anon_sym___stdcall] = ACTIONS(5672), + [anon_sym___fastcall] = ACTIONS(5672), + [anon_sym___thiscall] = ACTIONS(5672), + [anon_sym___vectorcall] = ACTIONS(5672), + [anon_sym_LBRACE] = ACTIONS(5674), + [anon_sym_signed] = ACTIONS(5672), + [anon_sym_unsigned] = ACTIONS(5672), + [anon_sym_long] = ACTIONS(5672), + [anon_sym_short] = ACTIONS(5672), + [anon_sym_static] = ACTIONS(5672), + [anon_sym_register] = ACTIONS(5672), + [anon_sym_inline] = ACTIONS(5672), + [anon_sym___inline] = ACTIONS(5672), + [anon_sym___inline__] = ACTIONS(5672), + [anon_sym___forceinline] = ACTIONS(5672), + [anon_sym_thread_local] = ACTIONS(5672), + [anon_sym___thread] = ACTIONS(5672), + [anon_sym_const] = ACTIONS(5672), + [anon_sym_constexpr] = ACTIONS(5672), + [anon_sym_volatile] = ACTIONS(5672), + [anon_sym_restrict] = ACTIONS(5672), + [anon_sym___restrict__] = ACTIONS(5672), + [anon_sym__Atomic] = ACTIONS(5672), + [anon_sym__Noreturn] = ACTIONS(5672), + [anon_sym_noreturn] = ACTIONS(5672), + [anon_sym__Nonnull] = ACTIONS(5672), + [anon_sym_mutable] = ACTIONS(5672), + [anon_sym_constinit] = ACTIONS(5672), + [anon_sym_consteval] = ACTIONS(5672), + [anon_sym_alignas] = ACTIONS(5672), + [anon_sym__Alignas] = ACTIONS(5672), + [sym_primitive_type] = ACTIONS(5672), + [anon_sym_enum] = ACTIONS(5672), + [anon_sym_class] = ACTIONS(5672), + [anon_sym_struct] = ACTIONS(5672), + [anon_sym_union] = ACTIONS(5672), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5672), + [anon_sym_decltype] = ACTIONS(5672), + [anon_sym_typename] = ACTIONS(5672), + [anon_sym_template] = ACTIONS(5672), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5672), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5672), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5672), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5672), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5672), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5672), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5672), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5672), + [anon_sym_MOZ_COLD] = ACTIONS(5672), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5672), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5672), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5672), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5672), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5672), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5672), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5672), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5672), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5672), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5672), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5672), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5672), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5672), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5672), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5672), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5672), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5672), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5672), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5672), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5672), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5672), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5672), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5672), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5672), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5672), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5672), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5672), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5672), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5672), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5672), + [anon_sym_MOZ_NONNULL] = ACTIONS(5672), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5672), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5672), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5672), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5672), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5672), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5672), + [anon_sym_MOZ_NORETURN] = ACTIONS(5672), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5672), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5672), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5672), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5672), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5672), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5672), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5672), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5672), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5672), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5672), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5672), + [anon_sym_MOZ_RAII] = ACTIONS(5672), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5672), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5672), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5672), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5672), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5672), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5672), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5672), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5672), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5672), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5672), + }, + [STATE(1644)] = { + [sym_template_argument_list] = STATE(1716), + [sym_identifier] = ACTIONS(3272), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3279), + [anon_sym_AMP_AMP] = ACTIONS(3279), + [anon_sym_AMP] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym___extension__] = ACTIONS(3272), + [anon_sym_virtual] = ACTIONS(3272), + [anon_sym_extern] = ACTIONS(3272), + [anon_sym___attribute__] = ACTIONS(3272), + [anon_sym___attribute] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), + [anon_sym___declspec] = ACTIONS(3272), + [anon_sym___based] = ACTIONS(3272), + [anon_sym___cdecl] = ACTIONS(3272), + [anon_sym___clrcall] = ACTIONS(3272), + [anon_sym___stdcall] = ACTIONS(3272), + [anon_sym___fastcall] = ACTIONS(3272), + [anon_sym___thiscall] = ACTIONS(3272), + [anon_sym___vectorcall] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_register] = ACTIONS(3272), + [anon_sym_inline] = ACTIONS(3272), + [anon_sym___inline] = ACTIONS(3272), + [anon_sym___inline__] = ACTIONS(3272), + [anon_sym___forceinline] = ACTIONS(3272), + [anon_sym_thread_local] = ACTIONS(3272), + [anon_sym___thread] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_constexpr] = ACTIONS(3272), + [anon_sym_volatile] = ACTIONS(3272), + [anon_sym_restrict] = ACTIONS(3272), + [anon_sym___restrict__] = ACTIONS(3272), + [anon_sym__Atomic] = ACTIONS(3272), + [anon_sym__Noreturn] = ACTIONS(3272), + [anon_sym_noreturn] = ACTIONS(3272), + [anon_sym__Nonnull] = ACTIONS(3272), + [anon_sym_mutable] = ACTIONS(3272), + [anon_sym_constinit] = ACTIONS(3272), + [anon_sym_consteval] = ACTIONS(3272), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3272), + [anon_sym_decltype] = ACTIONS(3272), + [anon_sym_template] = ACTIONS(3272), + [anon_sym_operator] = ACTIONS(3272), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3272), + [anon_sym_MOZ_COLD] = ACTIONS(3272), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3272), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3272), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3272), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3272), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3272), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3272), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3272), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3272), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3272), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3272), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3272), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3272), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_RAII] = ACTIONS(3272), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3272), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3272), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3272), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3272), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3272), + }, + [STATE(1645)] = { + [sym_attribute_specifier] = STATE(1375), + [sym_enumerator_list] = STATE(1679), + [anon_sym_COMMA] = ACTIONS(5248), + [anon_sym_RPAREN] = ACTIONS(5248), + [anon_sym_LPAREN2] = ACTIONS(5248), + [anon_sym_STAR] = ACTIONS(5248), + [anon_sym_AMP_AMP] = ACTIONS(5248), + [anon_sym_AMP] = ACTIONS(5246), + [anon_sym_SEMI] = ACTIONS(5248), + [anon_sym___extension__] = ACTIONS(5248), + [anon_sym_virtual] = ACTIONS(5248), + [anon_sym_extern] = ACTIONS(5248), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5248), + [anon_sym___declspec] = ACTIONS(5248), + [anon_sym_LBRACE] = ACTIONS(5250), + [anon_sym_LBRACK] = ACTIONS(5246), + [anon_sym_static] = ACTIONS(5248), + [anon_sym_EQ] = ACTIONS(5248), + [anon_sym_register] = ACTIONS(5248), + [anon_sym_inline] = ACTIONS(5248), + [anon_sym___inline] = ACTIONS(5246), + [anon_sym___inline__] = ACTIONS(5248), + [anon_sym___forceinline] = ACTIONS(5248), + [anon_sym_thread_local] = ACTIONS(5248), + [anon_sym___thread] = ACTIONS(5248), + [anon_sym_const] = ACTIONS(5246), + [anon_sym_constexpr] = ACTIONS(5248), + [anon_sym_volatile] = ACTIONS(5248), + [anon_sym_restrict] = ACTIONS(5248), + [anon_sym___restrict__] = ACTIONS(5248), + [anon_sym__Atomic] = ACTIONS(5248), + [anon_sym__Noreturn] = ACTIONS(5248), + [anon_sym_noreturn] = ACTIONS(5248), + [anon_sym__Nonnull] = ACTIONS(5248), + [anon_sym_mutable] = ACTIONS(5248), + [anon_sym_constinit] = ACTIONS(5248), + [anon_sym_consteval] = ACTIONS(5248), + [anon_sym_alignas] = ACTIONS(5248), + [anon_sym__Alignas] = ACTIONS(5248), + [anon_sym_asm] = ACTIONS(5248), + [anon_sym___asm__] = ACTIONS(5248), + [anon_sym___asm] = ACTIONS(5246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5248), + [anon_sym_decltype] = ACTIONS(5248), + [anon_sym_final] = ACTIONS(5248), + [anon_sym_override] = ACTIONS(5248), + [anon_sym_GT2] = ACTIONS(5248), + [anon_sym_try] = ACTIONS(5248), + [anon_sym_requires] = ACTIONS(5248), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5248), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5248), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5246), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5248), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5248), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5246), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5248), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5248), + [anon_sym_MOZ_COLD] = ACTIONS(5248), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5248), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5248), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5248), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5248), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5248), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5246), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5248), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5248), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5248), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5248), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5248), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5248), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5248), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5248), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5248), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5248), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5248), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5248), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5248), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5248), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5248), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5248), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5246), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5248), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5248), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5248), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5248), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5246), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5248), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5248), + [anon_sym_MOZ_NONNULL] = ACTIONS(5246), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5248), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5248), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5248), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5248), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5248), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5248), + [anon_sym_MOZ_NORETURN] = ACTIONS(5246), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5248), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5248), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5248), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5248), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5248), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5248), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5248), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5248), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5248), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5248), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5248), + [anon_sym_MOZ_RAII] = ACTIONS(5248), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5248), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5248), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5248), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5248), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5248), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5248), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5248), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5248), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5248), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5248), + }, + [STATE(1646)] = { + [sym_attribute_specifier] = STATE(1368), + [sym_enumerator_list] = STATE(1682), + [anon_sym_COMMA] = ACTIONS(5268), + [anon_sym_RPAREN] = ACTIONS(5268), + [anon_sym_LPAREN2] = ACTIONS(5268), + [anon_sym_STAR] = ACTIONS(5268), + [anon_sym_AMP_AMP] = ACTIONS(5268), + [anon_sym_AMP] = ACTIONS(5266), + [anon_sym_SEMI] = ACTIONS(5268), + [anon_sym___extension__] = ACTIONS(5268), + [anon_sym_virtual] = ACTIONS(5268), + [anon_sym_extern] = ACTIONS(5268), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5268), + [anon_sym___declspec] = ACTIONS(5268), + [anon_sym_LBRACE] = ACTIONS(5250), + [anon_sym_LBRACK] = ACTIONS(5266), + [anon_sym_static] = ACTIONS(5268), + [anon_sym_EQ] = ACTIONS(5268), + [anon_sym_register] = ACTIONS(5268), + [anon_sym_inline] = ACTIONS(5268), + [anon_sym___inline] = ACTIONS(5266), + [anon_sym___inline__] = ACTIONS(5268), + [anon_sym___forceinline] = ACTIONS(5268), + [anon_sym_thread_local] = ACTIONS(5268), + [anon_sym___thread] = ACTIONS(5268), + [anon_sym_const] = ACTIONS(5266), + [anon_sym_constexpr] = ACTIONS(5268), + [anon_sym_volatile] = ACTIONS(5268), + [anon_sym_restrict] = ACTIONS(5268), + [anon_sym___restrict__] = ACTIONS(5268), + [anon_sym__Atomic] = ACTIONS(5268), + [anon_sym__Noreturn] = ACTIONS(5268), + [anon_sym_noreturn] = ACTIONS(5268), + [anon_sym__Nonnull] = ACTIONS(5268), + [anon_sym_mutable] = ACTIONS(5268), + [anon_sym_constinit] = ACTIONS(5268), + [anon_sym_consteval] = ACTIONS(5268), + [anon_sym_alignas] = ACTIONS(5268), + [anon_sym__Alignas] = ACTIONS(5268), + [anon_sym_asm] = ACTIONS(5268), + [anon_sym___asm__] = ACTIONS(5268), + [anon_sym___asm] = ACTIONS(5266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5268), + [anon_sym_decltype] = ACTIONS(5268), + [anon_sym_final] = ACTIONS(5268), + [anon_sym_override] = ACTIONS(5268), + [anon_sym_GT2] = ACTIONS(5268), + [anon_sym_try] = ACTIONS(5268), + [anon_sym_requires] = ACTIONS(5268), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5268), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5268), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5266), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5268), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5268), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5266), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5268), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5268), + [anon_sym_MOZ_COLD] = ACTIONS(5268), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5268), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5268), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5268), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5268), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5268), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5266), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5268), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5268), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5268), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5268), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5268), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5268), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5268), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5268), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5268), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5268), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5268), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5268), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5268), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5268), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5268), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5268), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5266), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5268), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5268), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5268), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5266), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5268), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5268), + [anon_sym_MOZ_NONNULL] = ACTIONS(5266), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5268), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5268), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5268), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5268), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5268), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5268), + [anon_sym_MOZ_NORETURN] = ACTIONS(5266), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5268), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5268), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5268), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5268), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5268), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5268), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5268), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5268), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5268), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5268), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5268), + [anon_sym_MOZ_RAII] = ACTIONS(5268), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5268), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5268), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5268), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5268), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5268), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5268), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5268), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5268), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5268), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5268), + }, + [STATE(1647)] = { + [sym_identifier] = ACTIONS(5676), + [anon_sym___extension__] = ACTIONS(5676), + [anon_sym_virtual] = ACTIONS(5676), + [anon_sym_extern] = ACTIONS(5676), + [anon_sym___attribute__] = ACTIONS(5676), + [anon_sym___attribute] = ACTIONS(5676), + [anon_sym_COLON_COLON] = ACTIONS(5678), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym___declspec] = ACTIONS(5676), + [anon_sym___cdecl] = ACTIONS(5676), + [anon_sym___clrcall] = ACTIONS(5676), + [anon_sym___stdcall] = ACTIONS(5676), + [anon_sym___fastcall] = ACTIONS(5676), + [anon_sym___thiscall] = ACTIONS(5676), + [anon_sym___vectorcall] = ACTIONS(5676), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_signed] = ACTIONS(5676), + [anon_sym_unsigned] = ACTIONS(5676), + [anon_sym_long] = ACTIONS(5676), + [anon_sym_short] = ACTIONS(5676), + [anon_sym_static] = ACTIONS(5676), + [anon_sym_register] = ACTIONS(5676), + [anon_sym_inline] = ACTIONS(5676), + [anon_sym___inline] = ACTIONS(5676), + [anon_sym___inline__] = ACTIONS(5676), + [anon_sym___forceinline] = ACTIONS(5676), + [anon_sym_thread_local] = ACTIONS(5676), + [anon_sym___thread] = ACTIONS(5676), + [anon_sym_const] = ACTIONS(5676), + [anon_sym_constexpr] = ACTIONS(5676), + [anon_sym_volatile] = ACTIONS(5676), + [anon_sym_restrict] = ACTIONS(5676), + [anon_sym___restrict__] = ACTIONS(5676), + [anon_sym__Atomic] = ACTIONS(5676), + [anon_sym__Noreturn] = ACTIONS(5676), + [anon_sym_noreturn] = ACTIONS(5676), + [anon_sym__Nonnull] = ACTIONS(5676), + [anon_sym_mutable] = ACTIONS(5676), + [anon_sym_constinit] = ACTIONS(5676), + [anon_sym_consteval] = ACTIONS(5676), + [anon_sym_alignas] = ACTIONS(5676), + [anon_sym__Alignas] = ACTIONS(5676), + [sym_primitive_type] = ACTIONS(5676), + [anon_sym_enum] = ACTIONS(5676), + [anon_sym_class] = ACTIONS(5676), + [anon_sym_struct] = ACTIONS(5676), + [anon_sym_union] = ACTIONS(5676), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5676), + [anon_sym_decltype] = ACTIONS(5676), + [anon_sym_typename] = ACTIONS(5676), + [anon_sym_template] = ACTIONS(5676), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5676), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5676), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5676), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5676), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5676), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5676), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5676), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5676), + [anon_sym_MOZ_COLD] = ACTIONS(5676), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5676), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5676), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5676), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5676), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5676), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5676), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5676), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5676), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5676), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5676), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5676), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5676), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5676), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5676), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5676), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5676), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5676), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5676), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5676), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5676), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5676), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5676), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5676), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5676), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5676), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5676), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5676), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5676), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5676), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5676), + [anon_sym_MOZ_NONNULL] = ACTIONS(5676), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5676), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5676), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5676), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5676), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5676), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5676), + [anon_sym_MOZ_NORETURN] = ACTIONS(5676), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5676), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5676), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5676), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5676), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5676), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5676), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5676), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5676), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5676), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5676), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5676), + [anon_sym_MOZ_RAII] = ACTIONS(5676), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5676), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5676), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5676), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5676), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5676), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5676), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5676), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5676), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5676), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5676), + }, + [STATE(1648)] = { + [sym_expression] = STATE(4883), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8722), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8722), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5680), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1649)] = { + [sym_expression] = STATE(4861), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8515), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8515), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1650)] = { + [sym_compound_statement] = STATE(7810), + [sym_expression] = STATE(4729), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7810), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_RPAREN] = ACTIONS(5684), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1651)] = { + [sym_compound_statement] = STATE(7805), + [sym_expression] = STATE(4673), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7805), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_RPAREN] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1652)] = { + [sym_compound_statement] = STATE(7824), + [sym_expression] = STATE(4669), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7824), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_RPAREN] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1653)] = { + [sym_expression] = STATE(3539), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym__unary_left_fold] = STATE(8926), + [sym__unary_right_fold] = STATE(8927), + [sym__binary_fold] = STATE(8928), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1654)] = { + [sym_expression] = STATE(4523), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_initializer_list] = STATE(7138), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_default] = ACTIONS(5694), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(5698), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(5700), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1655)] = { + [sym_expression] = STATE(4901), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8953), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8953), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5702), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1656)] = { + [sym_expression] = STATE(3661), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym__unary_left_fold] = STATE(8486), + [sym__unary_right_fold] = STATE(8489), + [sym__binary_fold] = STATE(8491), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1657)] = { + [sym_compound_statement] = STATE(8544), + [sym_expression] = STATE(3537), + [sym__string] = STATE(3296), + [sym_comma_expression] = STATE(8544), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym__assignment_expression_lhs] = STATE(9263), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1658)] = { + [sym_compound_statement] = STATE(7655), + [sym_expression] = STATE(4717), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7655), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_RPAREN] = ACTIONS(5706), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1659)] = { + [sym_expression] = STATE(3542), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym__unary_left_fold] = STATE(8934), + [sym__unary_right_fold] = STATE(8938), + [sym__binary_fold] = STATE(8482), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1660)] = { + [sym_expression] = STATE(4524), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_initializer_list] = STATE(7131), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_default] = ACTIONS(5708), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(5710), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(5712), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1661)] = { + [sym_compound_statement] = STATE(7702), + [sym_expression] = STATE(4663), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7702), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_RPAREN] = ACTIONS(5714), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1662)] = { + [sym_expression] = STATE(4833), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8420), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8420), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5716), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1663)] = { + [sym_compound_statement] = STATE(7530), + [sym_expression] = STATE(4654), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7530), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_RPAREN] = ACTIONS(5718), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1664)] = { + [sym_template_argument_list] = STATE(1873), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3110), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(5720), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(5441), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(1665)] = { + [sym_expression] = STATE(3612), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym__unary_left_fold] = STATE(8949), + [sym__unary_right_fold] = STATE(8980), + [sym__binary_fold] = STATE(8809), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1666)] = { + [sym_expression] = STATE(3551), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym__unary_left_fold] = STATE(8496), + [sym__unary_right_fold] = STATE(8518), + [sym__binary_fold] = STATE(8534), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1667)] = { + [sym_expression] = STATE(3594), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym__unary_left_fold] = STATE(8863), + [sym__unary_right_fold] = STATE(9117), + [sym__binary_fold] = STATE(8556), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1668)] = { + [sym_expression] = STATE(3532), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym__unary_left_fold] = STATE(8725), + [sym__unary_right_fold] = STATE(8728), + [sym__binary_fold] = STATE(8767), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1669)] = { + [sym_expression] = STATE(3545), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym__unary_left_fold] = STATE(9064), + [sym__unary_right_fold] = STATE(9240), + [sym__binary_fold] = STATE(8466), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1670)] = { + [sym_expression] = STATE(4518), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_initializer_list] = STATE(7116), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_default] = ACTIONS(5722), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(5724), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(5726), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1671)] = { + [sym_attribute_specifier] = STATE(1370), + [anon_sym_COMMA] = ACTIONS(5464), + [anon_sym_RPAREN] = ACTIONS(5464), + [anon_sym_LPAREN2] = ACTIONS(5464), + [anon_sym_STAR] = ACTIONS(5464), + [anon_sym_AMP_AMP] = ACTIONS(5464), + [anon_sym_AMP] = ACTIONS(5462), + [anon_sym_SEMI] = ACTIONS(5464), + [anon_sym___extension__] = ACTIONS(5464), + [anon_sym_virtual] = ACTIONS(5464), + [anon_sym_extern] = ACTIONS(5464), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5464), + [anon_sym___declspec] = ACTIONS(5464), + [anon_sym_LBRACE] = ACTIONS(5464), + [anon_sym_LBRACK] = ACTIONS(5462), + [anon_sym_static] = ACTIONS(5464), + [anon_sym_EQ] = ACTIONS(5464), + [anon_sym_register] = ACTIONS(5464), + [anon_sym_inline] = ACTIONS(5464), + [anon_sym___inline] = ACTIONS(5462), + [anon_sym___inline__] = ACTIONS(5464), + [anon_sym___forceinline] = ACTIONS(5464), + [anon_sym_thread_local] = ACTIONS(5464), + [anon_sym___thread] = ACTIONS(5464), + [anon_sym_const] = ACTIONS(5462), + [anon_sym_constexpr] = ACTIONS(5464), + [anon_sym_volatile] = ACTIONS(5464), + [anon_sym_restrict] = ACTIONS(5464), + [anon_sym___restrict__] = ACTIONS(5464), + [anon_sym__Atomic] = ACTIONS(5464), + [anon_sym__Noreturn] = ACTIONS(5464), + [anon_sym_noreturn] = ACTIONS(5464), + [anon_sym__Nonnull] = ACTIONS(5464), + [anon_sym_mutable] = ACTIONS(5464), + [anon_sym_constinit] = ACTIONS(5464), + [anon_sym_consteval] = ACTIONS(5464), + [anon_sym_alignas] = ACTIONS(5464), + [anon_sym__Alignas] = ACTIONS(5464), + [anon_sym_asm] = ACTIONS(5464), + [anon_sym___asm__] = ACTIONS(5464), + [anon_sym___asm] = ACTIONS(5462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5464), + [anon_sym_decltype] = ACTIONS(5464), + [anon_sym_final] = ACTIONS(5464), + [anon_sym_override] = ACTIONS(5464), + [anon_sym_GT2] = ACTIONS(5464), + [anon_sym_try] = ACTIONS(5464), + [anon_sym_requires] = ACTIONS(5464), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5464), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5464), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5462), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5464), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5464), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5462), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5464), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5464), + [anon_sym_MOZ_COLD] = ACTIONS(5464), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5464), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5464), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5464), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5464), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5464), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5462), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5464), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5464), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5464), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5464), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5464), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5464), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5464), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5464), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5464), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5464), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5464), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5464), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5464), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5464), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5464), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5464), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5462), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5464), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5464), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5464), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5464), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5462), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5464), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5464), + [anon_sym_MOZ_NONNULL] = ACTIONS(5462), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5464), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5464), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5464), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5464), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5464), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5464), + [anon_sym_MOZ_NORETURN] = ACTIONS(5462), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5464), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5464), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5464), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5464), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5464), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5464), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5464), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5464), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5464), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5464), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5464), + [anon_sym_MOZ_RAII] = ACTIONS(5464), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5464), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5464), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5464), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5464), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5464), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5464), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5464), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5464), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5464), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5464), + }, + [STATE(1672)] = { + [sym_compound_statement] = STATE(7871), + [sym_expression] = STATE(4724), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7871), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_RPAREN] = ACTIONS(5728), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1673)] = { + [sym_attribute_specifier] = STATE(1416), + [anon_sym_COMMA] = ACTIONS(5452), + [anon_sym_RPAREN] = ACTIONS(5452), + [anon_sym_LPAREN2] = ACTIONS(5452), + [anon_sym_STAR] = ACTIONS(5452), + [anon_sym_AMP_AMP] = ACTIONS(5452), + [anon_sym_AMP] = ACTIONS(5450), + [anon_sym_SEMI] = ACTIONS(5452), + [anon_sym___extension__] = ACTIONS(5452), + [anon_sym_virtual] = ACTIONS(5452), + [anon_sym_extern] = ACTIONS(5452), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5452), + [anon_sym___declspec] = ACTIONS(5452), + [anon_sym_LBRACE] = ACTIONS(5452), + [anon_sym_LBRACK] = ACTIONS(5450), + [anon_sym_static] = ACTIONS(5452), + [anon_sym_EQ] = ACTIONS(5452), + [anon_sym_register] = ACTIONS(5452), + [anon_sym_inline] = ACTIONS(5452), + [anon_sym___inline] = ACTIONS(5450), + [anon_sym___inline__] = ACTIONS(5452), + [anon_sym___forceinline] = ACTIONS(5452), + [anon_sym_thread_local] = ACTIONS(5452), + [anon_sym___thread] = ACTIONS(5452), + [anon_sym_const] = ACTIONS(5450), + [anon_sym_constexpr] = ACTIONS(5452), + [anon_sym_volatile] = ACTIONS(5452), + [anon_sym_restrict] = ACTIONS(5452), + [anon_sym___restrict__] = ACTIONS(5452), + [anon_sym__Atomic] = ACTIONS(5452), + [anon_sym__Noreturn] = ACTIONS(5452), + [anon_sym_noreturn] = ACTIONS(5452), + [anon_sym__Nonnull] = ACTIONS(5452), + [anon_sym_mutable] = ACTIONS(5452), + [anon_sym_constinit] = ACTIONS(5452), + [anon_sym_consteval] = ACTIONS(5452), + [anon_sym_alignas] = ACTIONS(5452), + [anon_sym__Alignas] = ACTIONS(5452), + [anon_sym_asm] = ACTIONS(5452), + [anon_sym___asm__] = ACTIONS(5452), + [anon_sym___asm] = ACTIONS(5450), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5452), + [anon_sym_decltype] = ACTIONS(5452), + [anon_sym_final] = ACTIONS(5452), + [anon_sym_override] = ACTIONS(5452), + [anon_sym_GT2] = ACTIONS(5452), + [anon_sym_try] = ACTIONS(5452), + [anon_sym_requires] = ACTIONS(5452), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5452), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5452), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5450), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5452), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5452), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5450), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5452), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5452), + [anon_sym_MOZ_COLD] = ACTIONS(5452), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5452), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5452), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5452), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5452), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5452), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5450), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5452), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5452), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5452), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5452), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5452), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5452), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5452), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5452), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5452), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5452), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5452), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5452), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5452), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5452), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5452), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5452), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5450), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5452), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5452), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5452), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5452), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5450), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5452), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5452), + [anon_sym_MOZ_NONNULL] = ACTIONS(5450), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5452), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5452), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5452), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5452), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5452), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5452), + [anon_sym_MOZ_NORETURN] = ACTIONS(5450), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5452), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5452), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5452), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5452), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5452), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5452), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5452), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5452), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5452), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5452), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5452), + [anon_sym_MOZ_RAII] = ACTIONS(5452), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5452), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5452), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5452), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5452), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5452), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5452), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5452), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5452), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5452), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5452), + }, + [STATE(1674)] = { + [sym_attribute_specifier] = STATE(1390), + [anon_sym_COMMA] = ACTIONS(5478), + [anon_sym_RPAREN] = ACTIONS(5478), + [anon_sym_LPAREN2] = ACTIONS(5478), + [anon_sym_STAR] = ACTIONS(5478), + [anon_sym_AMP_AMP] = ACTIONS(5478), + [anon_sym_AMP] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(5478), + [anon_sym___extension__] = ACTIONS(5478), + [anon_sym_virtual] = ACTIONS(5478), + [anon_sym_extern] = ACTIONS(5478), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5478), + [anon_sym___declspec] = ACTIONS(5478), + [anon_sym_LBRACE] = ACTIONS(5478), + [anon_sym_LBRACK] = ACTIONS(5476), + [anon_sym_static] = ACTIONS(5478), + [anon_sym_EQ] = ACTIONS(5478), + [anon_sym_register] = ACTIONS(5478), + [anon_sym_inline] = ACTIONS(5478), + [anon_sym___inline] = ACTIONS(5476), + [anon_sym___inline__] = ACTIONS(5478), + [anon_sym___forceinline] = ACTIONS(5478), + [anon_sym_thread_local] = ACTIONS(5478), + [anon_sym___thread] = ACTIONS(5478), + [anon_sym_const] = ACTIONS(5476), + [anon_sym_constexpr] = ACTIONS(5478), + [anon_sym_volatile] = ACTIONS(5478), + [anon_sym_restrict] = ACTIONS(5478), + [anon_sym___restrict__] = ACTIONS(5478), + [anon_sym__Atomic] = ACTIONS(5478), + [anon_sym__Noreturn] = ACTIONS(5478), + [anon_sym_noreturn] = ACTIONS(5478), + [anon_sym__Nonnull] = ACTIONS(5478), + [anon_sym_mutable] = ACTIONS(5478), + [anon_sym_constinit] = ACTIONS(5478), + [anon_sym_consteval] = ACTIONS(5478), + [anon_sym_alignas] = ACTIONS(5478), + [anon_sym__Alignas] = ACTIONS(5478), + [anon_sym_asm] = ACTIONS(5478), + [anon_sym___asm__] = ACTIONS(5478), + [anon_sym___asm] = ACTIONS(5476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5478), + [anon_sym_decltype] = ACTIONS(5478), + [anon_sym_final] = ACTIONS(5478), + [anon_sym_override] = ACTIONS(5478), + [anon_sym_GT2] = ACTIONS(5478), + [anon_sym_try] = ACTIONS(5478), + [anon_sym_requires] = ACTIONS(5478), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5478), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5478), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5476), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5478), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5478), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5476), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5478), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5478), + [anon_sym_MOZ_COLD] = ACTIONS(5478), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5478), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5478), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5478), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5478), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5478), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5476), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5478), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5478), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5478), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5478), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5478), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5478), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5478), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5478), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5478), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5478), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5478), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5478), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5478), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5478), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5478), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5478), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5476), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5478), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5478), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5478), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5478), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5476), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5478), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5478), + [anon_sym_MOZ_NONNULL] = ACTIONS(5476), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5478), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5478), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5478), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5478), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5478), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5478), + [anon_sym_MOZ_NORETURN] = ACTIONS(5476), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5478), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5478), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5478), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5478), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5478), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5478), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5478), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5478), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5478), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5478), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5478), + [anon_sym_MOZ_RAII] = ACTIONS(5478), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5478), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5478), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5478), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5478), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5478), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5478), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5478), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5478), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5478), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5478), + }, + [STATE(1675)] = { + [sym_attribute_specifier] = STATE(1374), + [anon_sym_COMMA] = ACTIONS(5490), + [anon_sym_RPAREN] = ACTIONS(5490), + [anon_sym_LPAREN2] = ACTIONS(5490), + [anon_sym_STAR] = ACTIONS(5490), + [anon_sym_AMP_AMP] = ACTIONS(5490), + [anon_sym_AMP] = ACTIONS(5488), + [anon_sym_SEMI] = ACTIONS(5490), + [anon_sym___extension__] = ACTIONS(5490), + [anon_sym_virtual] = ACTIONS(5490), + [anon_sym_extern] = ACTIONS(5490), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5490), + [anon_sym___declspec] = ACTIONS(5490), + [anon_sym_LBRACE] = ACTIONS(5490), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_static] = ACTIONS(5490), + [anon_sym_EQ] = ACTIONS(5490), + [anon_sym_register] = ACTIONS(5490), + [anon_sym_inline] = ACTIONS(5490), + [anon_sym___inline] = ACTIONS(5488), + [anon_sym___inline__] = ACTIONS(5490), + [anon_sym___forceinline] = ACTIONS(5490), + [anon_sym_thread_local] = ACTIONS(5490), + [anon_sym___thread] = ACTIONS(5490), + [anon_sym_const] = ACTIONS(5488), + [anon_sym_constexpr] = ACTIONS(5490), + [anon_sym_volatile] = ACTIONS(5490), + [anon_sym_restrict] = ACTIONS(5490), + [anon_sym___restrict__] = ACTIONS(5490), + [anon_sym__Atomic] = ACTIONS(5490), + [anon_sym__Noreturn] = ACTIONS(5490), + [anon_sym_noreturn] = ACTIONS(5490), + [anon_sym__Nonnull] = ACTIONS(5490), + [anon_sym_mutable] = ACTIONS(5490), + [anon_sym_constinit] = ACTIONS(5490), + [anon_sym_consteval] = ACTIONS(5490), + [anon_sym_alignas] = ACTIONS(5490), + [anon_sym__Alignas] = ACTIONS(5490), + [anon_sym_asm] = ACTIONS(5490), + [anon_sym___asm__] = ACTIONS(5490), + [anon_sym___asm] = ACTIONS(5488), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5490), + [anon_sym_decltype] = ACTIONS(5490), + [anon_sym_final] = ACTIONS(5490), + [anon_sym_override] = ACTIONS(5490), + [anon_sym_GT2] = ACTIONS(5490), + [anon_sym_try] = ACTIONS(5490), + [anon_sym_requires] = ACTIONS(5490), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5490), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5490), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5488), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5490), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5490), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5488), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5490), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5490), + [anon_sym_MOZ_COLD] = ACTIONS(5490), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5490), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5490), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5490), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5490), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5490), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5488), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5490), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5490), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5490), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5490), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5490), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5490), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5490), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5490), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5490), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5490), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5490), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5490), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5490), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5490), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5490), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5490), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5488), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5490), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5490), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5490), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5490), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5488), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5490), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5490), + [anon_sym_MOZ_NONNULL] = ACTIONS(5488), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5490), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5490), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5490), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5490), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5490), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5490), + [anon_sym_MOZ_NORETURN] = ACTIONS(5488), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5490), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5490), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5490), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5490), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5490), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5490), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5490), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5490), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5490), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5490), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5490), + [anon_sym_MOZ_RAII] = ACTIONS(5490), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5490), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5490), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5490), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5490), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5490), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5490), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5490), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5490), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5490), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5490), + }, + [STATE(1676)] = { + [sym_attribute_specifier] = STATE(1411), + [anon_sym_COMMA] = ACTIONS(5518), + [anon_sym_RPAREN] = ACTIONS(5518), + [anon_sym_LPAREN2] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5518), + [anon_sym_AMP_AMP] = ACTIONS(5518), + [anon_sym_AMP] = ACTIONS(5516), + [anon_sym_SEMI] = ACTIONS(5518), + [anon_sym___extension__] = ACTIONS(5518), + [anon_sym_virtual] = ACTIONS(5518), + [anon_sym_extern] = ACTIONS(5518), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5518), + [anon_sym___declspec] = ACTIONS(5518), + [anon_sym_LBRACE] = ACTIONS(5518), + [anon_sym_LBRACK] = ACTIONS(5516), + [anon_sym_static] = ACTIONS(5518), + [anon_sym_EQ] = ACTIONS(5518), + [anon_sym_register] = ACTIONS(5518), + [anon_sym_inline] = ACTIONS(5518), + [anon_sym___inline] = ACTIONS(5516), + [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(5516), + [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__Nonnull] = ACTIONS(5518), + [anon_sym_mutable] = ACTIONS(5518), + [anon_sym_constinit] = ACTIONS(5518), + [anon_sym_consteval] = ACTIONS(5518), + [anon_sym_alignas] = ACTIONS(5518), + [anon_sym__Alignas] = ACTIONS(5518), + [anon_sym_asm] = ACTIONS(5518), + [anon_sym___asm__] = ACTIONS(5518), + [anon_sym___asm] = ACTIONS(5516), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5518), + [anon_sym_decltype] = ACTIONS(5518), + [anon_sym_final] = ACTIONS(5518), + [anon_sym_override] = ACTIONS(5518), + [anon_sym_GT2] = ACTIONS(5518), + [anon_sym_try] = ACTIONS(5518), + [anon_sym_requires] = ACTIONS(5518), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5518), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5518), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5516), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5518), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5518), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5516), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5518), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5518), + [anon_sym_MOZ_COLD] = ACTIONS(5518), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5518), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5518), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5518), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5518), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5518), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5516), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5518), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5518), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5518), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5518), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5518), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5518), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5518), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5518), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5518), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5518), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5518), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5518), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5518), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5518), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5518), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5518), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5516), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5518), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5518), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5518), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5518), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5516), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5518), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5518), + [anon_sym_MOZ_NONNULL] = ACTIONS(5516), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5518), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5518), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5518), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5518), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5518), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5518), + [anon_sym_MOZ_NORETURN] = ACTIONS(5516), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5518), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5518), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5518), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5518), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5518), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5518), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5518), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5518), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5518), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5518), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5518), + [anon_sym_MOZ_RAII] = ACTIONS(5518), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5518), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5518), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5518), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5518), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5518), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5518), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5518), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5518), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5518), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5518), + }, + [STATE(1677)] = { + [sym_attribute_specifier] = STATE(1412), + [anon_sym_COMMA] = ACTIONS(5524), + [anon_sym_RPAREN] = ACTIONS(5524), + [anon_sym_LPAREN2] = ACTIONS(5524), + [anon_sym_STAR] = ACTIONS(5524), + [anon_sym_AMP_AMP] = ACTIONS(5524), + [anon_sym_AMP] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5524), + [anon_sym___extension__] = ACTIONS(5524), + [anon_sym_virtual] = ACTIONS(5524), + [anon_sym_extern] = ACTIONS(5524), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5524), + [anon_sym___declspec] = ACTIONS(5524), + [anon_sym_LBRACE] = ACTIONS(5524), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_static] = ACTIONS(5524), + [anon_sym_EQ] = ACTIONS(5524), + [anon_sym_register] = ACTIONS(5524), + [anon_sym_inline] = ACTIONS(5524), + [anon_sym___inline] = ACTIONS(5522), + [anon_sym___inline__] = ACTIONS(5524), + [anon_sym___forceinline] = ACTIONS(5524), + [anon_sym_thread_local] = ACTIONS(5524), + [anon_sym___thread] = ACTIONS(5524), + [anon_sym_const] = ACTIONS(5522), + [anon_sym_constexpr] = ACTIONS(5524), + [anon_sym_volatile] = ACTIONS(5524), + [anon_sym_restrict] = ACTIONS(5524), + [anon_sym___restrict__] = ACTIONS(5524), + [anon_sym__Atomic] = ACTIONS(5524), + [anon_sym__Noreturn] = ACTIONS(5524), + [anon_sym_noreturn] = ACTIONS(5524), + [anon_sym__Nonnull] = ACTIONS(5524), + [anon_sym_mutable] = ACTIONS(5524), + [anon_sym_constinit] = ACTIONS(5524), + [anon_sym_consteval] = ACTIONS(5524), + [anon_sym_alignas] = ACTIONS(5524), + [anon_sym__Alignas] = ACTIONS(5524), + [anon_sym_asm] = ACTIONS(5524), + [anon_sym___asm__] = ACTIONS(5524), + [anon_sym___asm] = ACTIONS(5522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5524), + [anon_sym_decltype] = ACTIONS(5524), + [anon_sym_final] = ACTIONS(5524), + [anon_sym_override] = ACTIONS(5524), + [anon_sym_GT2] = ACTIONS(5524), + [anon_sym_try] = ACTIONS(5524), + [anon_sym_requires] = ACTIONS(5524), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5524), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5524), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5522), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5524), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5524), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5522), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5524), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5524), + [anon_sym_MOZ_COLD] = ACTIONS(5524), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5524), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5524), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5524), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5524), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5524), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5522), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5524), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5524), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5524), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5524), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5524), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5524), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5524), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5524), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5524), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5524), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5524), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5524), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5524), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5524), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5524), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5524), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5522), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5524), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5524), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5524), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5524), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5522), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5524), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5524), + [anon_sym_MOZ_NONNULL] = ACTIONS(5522), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5524), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5524), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5524), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5524), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5524), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5524), + [anon_sym_MOZ_NORETURN] = ACTIONS(5522), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5524), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5524), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5524), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5524), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5524), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5524), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5524), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5524), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5524), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5524), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5524), + [anon_sym_MOZ_RAII] = ACTIONS(5524), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5524), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5524), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5524), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5524), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5524), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5524), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5524), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5524), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5524), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5524), + }, + [STATE(1678)] = { + [sym_attribute_specifier] = STATE(1367), + [anon_sym_COMMA] = ACTIONS(5448), + [anon_sym_RPAREN] = ACTIONS(5448), + [anon_sym_LPAREN2] = ACTIONS(5448), + [anon_sym_STAR] = ACTIONS(5448), + [anon_sym_AMP_AMP] = ACTIONS(5448), + [anon_sym_AMP] = ACTIONS(5446), + [anon_sym_SEMI] = ACTIONS(5448), + [anon_sym___extension__] = ACTIONS(5448), + [anon_sym_virtual] = ACTIONS(5448), + [anon_sym_extern] = ACTIONS(5448), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5448), + [anon_sym___declspec] = ACTIONS(5448), + [anon_sym_LBRACE] = ACTIONS(5448), + [anon_sym_LBRACK] = ACTIONS(5446), + [anon_sym_static] = ACTIONS(5448), + [anon_sym_EQ] = ACTIONS(5448), + [anon_sym_register] = ACTIONS(5448), + [anon_sym_inline] = ACTIONS(5448), + [anon_sym___inline] = ACTIONS(5446), + [anon_sym___inline__] = ACTIONS(5448), + [anon_sym___forceinline] = ACTIONS(5448), + [anon_sym_thread_local] = ACTIONS(5448), + [anon_sym___thread] = ACTIONS(5448), + [anon_sym_const] = ACTIONS(5446), + [anon_sym_constexpr] = ACTIONS(5448), + [anon_sym_volatile] = ACTIONS(5448), + [anon_sym_restrict] = ACTIONS(5448), + [anon_sym___restrict__] = ACTIONS(5448), + [anon_sym__Atomic] = ACTIONS(5448), + [anon_sym__Noreturn] = ACTIONS(5448), + [anon_sym_noreturn] = ACTIONS(5448), + [anon_sym__Nonnull] = ACTIONS(5448), + [anon_sym_mutable] = ACTIONS(5448), + [anon_sym_constinit] = ACTIONS(5448), + [anon_sym_consteval] = ACTIONS(5448), + [anon_sym_alignas] = ACTIONS(5448), + [anon_sym__Alignas] = ACTIONS(5448), + [anon_sym_asm] = ACTIONS(5448), + [anon_sym___asm__] = ACTIONS(5448), + [anon_sym___asm] = ACTIONS(5446), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5448), + [anon_sym_decltype] = ACTIONS(5448), + [anon_sym_final] = ACTIONS(5448), + [anon_sym_override] = ACTIONS(5448), + [anon_sym_GT2] = ACTIONS(5448), + [anon_sym_try] = ACTIONS(5448), + [anon_sym_requires] = ACTIONS(5448), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5448), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5448), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5446), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5448), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5448), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5446), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5448), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5448), + [anon_sym_MOZ_COLD] = ACTIONS(5448), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5448), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5448), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5448), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5448), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5448), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5446), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5448), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5448), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5448), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5448), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5448), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5448), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5448), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5448), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5448), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5448), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5448), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5448), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5448), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5448), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5448), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5448), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5446), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5448), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5448), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5448), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5448), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5446), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5448), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5448), + [anon_sym_MOZ_NONNULL] = ACTIONS(5446), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5448), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5448), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5448), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5448), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5448), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5448), + [anon_sym_MOZ_NORETURN] = ACTIONS(5446), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5448), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5448), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5448), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5448), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5448), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5448), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5448), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5448), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5448), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5448), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5448), + [anon_sym_MOZ_RAII] = ACTIONS(5448), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5448), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5448), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5448), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5448), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5448), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5448), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5448), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5448), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5448), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5448), + }, + [STATE(1679)] = { + [sym_attribute_specifier] = STATE(1369), + [anon_sym_COMMA] = ACTIONS(5482), + [anon_sym_RPAREN] = ACTIONS(5482), + [anon_sym_LPAREN2] = ACTIONS(5482), + [anon_sym_STAR] = ACTIONS(5482), + [anon_sym_AMP_AMP] = ACTIONS(5482), + [anon_sym_AMP] = ACTIONS(5480), + [anon_sym_SEMI] = ACTIONS(5482), + [anon_sym___extension__] = ACTIONS(5482), + [anon_sym_virtual] = ACTIONS(5482), + [anon_sym_extern] = ACTIONS(5482), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5482), + [anon_sym___declspec] = ACTIONS(5482), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_LBRACK] = ACTIONS(5480), + [anon_sym_static] = ACTIONS(5482), + [anon_sym_EQ] = ACTIONS(5482), + [anon_sym_register] = ACTIONS(5482), + [anon_sym_inline] = ACTIONS(5482), + [anon_sym___inline] = ACTIONS(5480), + [anon_sym___inline__] = ACTIONS(5482), + [anon_sym___forceinline] = ACTIONS(5482), + [anon_sym_thread_local] = ACTIONS(5482), + [anon_sym___thread] = ACTIONS(5482), + [anon_sym_const] = ACTIONS(5480), + [anon_sym_constexpr] = ACTIONS(5482), + [anon_sym_volatile] = ACTIONS(5482), + [anon_sym_restrict] = ACTIONS(5482), + [anon_sym___restrict__] = ACTIONS(5482), + [anon_sym__Atomic] = ACTIONS(5482), + [anon_sym__Noreturn] = ACTIONS(5482), + [anon_sym_noreturn] = ACTIONS(5482), + [anon_sym__Nonnull] = ACTIONS(5482), + [anon_sym_mutable] = ACTIONS(5482), + [anon_sym_constinit] = ACTIONS(5482), + [anon_sym_consteval] = ACTIONS(5482), + [anon_sym_alignas] = ACTIONS(5482), + [anon_sym__Alignas] = ACTIONS(5482), + [anon_sym_asm] = ACTIONS(5482), + [anon_sym___asm__] = ACTIONS(5482), + [anon_sym___asm] = ACTIONS(5480), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5482), + [anon_sym_decltype] = ACTIONS(5482), + [anon_sym_final] = ACTIONS(5482), + [anon_sym_override] = ACTIONS(5482), + [anon_sym_GT2] = ACTIONS(5482), + [anon_sym_try] = ACTIONS(5482), + [anon_sym_requires] = ACTIONS(5482), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5482), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5482), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5480), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5482), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5482), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5480), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5482), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5482), + [anon_sym_MOZ_COLD] = ACTIONS(5482), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5482), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5482), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5482), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5482), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5482), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5480), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5482), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5482), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5482), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5482), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5482), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5482), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5482), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5482), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5482), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5482), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5482), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5482), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5482), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5482), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5482), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5482), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5480), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5482), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5482), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5482), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5482), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5480), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5482), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5482), + [anon_sym_MOZ_NONNULL] = ACTIONS(5480), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5482), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5482), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5482), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5482), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5482), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5482), + [anon_sym_MOZ_NORETURN] = ACTIONS(5480), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5482), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5482), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5482), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5482), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5482), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5482), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5482), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5482), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5482), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5482), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5482), + [anon_sym_MOZ_RAII] = ACTIONS(5482), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5482), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5482), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5482), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5482), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5482), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5482), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5482), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5482), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5482), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5482), + }, + [STATE(1680)] = { + [sym_attribute_specifier] = STATE(1388), + [anon_sym_COMMA] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5502), + [anon_sym_LPAREN2] = ACTIONS(5502), + [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_AMP_AMP] = ACTIONS(5502), + [anon_sym_AMP] = ACTIONS(5500), + [anon_sym_SEMI] = ACTIONS(5502), + [anon_sym___extension__] = ACTIONS(5502), + [anon_sym_virtual] = ACTIONS(5502), + [anon_sym_extern] = ACTIONS(5502), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5502), + [anon_sym___declspec] = ACTIONS(5502), + [anon_sym_LBRACE] = ACTIONS(5502), + [anon_sym_LBRACK] = ACTIONS(5500), + [anon_sym_static] = ACTIONS(5502), + [anon_sym_EQ] = ACTIONS(5502), + [anon_sym_register] = ACTIONS(5502), + [anon_sym_inline] = ACTIONS(5502), + [anon_sym___inline] = ACTIONS(5500), + [anon_sym___inline__] = ACTIONS(5502), + [anon_sym___forceinline] = ACTIONS(5502), + [anon_sym_thread_local] = ACTIONS(5502), + [anon_sym___thread] = ACTIONS(5502), + [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__Nonnull] = ACTIONS(5502), + [anon_sym_mutable] = ACTIONS(5502), + [anon_sym_constinit] = ACTIONS(5502), + [anon_sym_consteval] = ACTIONS(5502), + [anon_sym_alignas] = ACTIONS(5502), + [anon_sym__Alignas] = ACTIONS(5502), + [anon_sym_asm] = ACTIONS(5502), + [anon_sym___asm__] = ACTIONS(5502), + [anon_sym___asm] = 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_GT2] = ACTIONS(5502), + [anon_sym_try] = ACTIONS(5502), + [anon_sym_requires] = ACTIONS(5502), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5502), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5502), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5500), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5502), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5502), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5500), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5502), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5502), + [anon_sym_MOZ_COLD] = ACTIONS(5502), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5502), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5502), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5502), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5502), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5502), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5500), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5502), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5502), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5502), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5502), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5502), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5502), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5502), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5502), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5502), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5502), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5502), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5502), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5502), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5502), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5502), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5502), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5500), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5502), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5502), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5502), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5502), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5500), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5502), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5502), + [anon_sym_MOZ_NONNULL] = ACTIONS(5500), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5502), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5502), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5502), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5502), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5502), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5502), + [anon_sym_MOZ_NORETURN] = ACTIONS(5500), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5502), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5502), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5502), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5502), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5502), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5502), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5502), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5502), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5502), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5502), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5502), + [anon_sym_MOZ_RAII] = ACTIONS(5502), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5502), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5502), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5502), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5502), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5502), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5502), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5502), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5502), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5502), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5502), + }, + [STATE(1681)] = { + [sym_attribute_specifier] = STATE(1389), + [anon_sym_COMMA] = ACTIONS(5514), + [anon_sym_RPAREN] = ACTIONS(5514), + [anon_sym_LPAREN2] = ACTIONS(5514), + [anon_sym_STAR] = ACTIONS(5514), + [anon_sym_AMP_AMP] = ACTIONS(5514), + [anon_sym_AMP] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5514), + [anon_sym___extension__] = ACTIONS(5514), + [anon_sym_virtual] = ACTIONS(5514), + [anon_sym_extern] = ACTIONS(5514), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5514), + [anon_sym___declspec] = ACTIONS(5514), + [anon_sym_LBRACE] = ACTIONS(5514), + [anon_sym_LBRACK] = ACTIONS(5512), + [anon_sym_static] = ACTIONS(5514), + [anon_sym_EQ] = ACTIONS(5514), + [anon_sym_register] = ACTIONS(5514), + [anon_sym_inline] = ACTIONS(5514), + [anon_sym___inline] = ACTIONS(5512), + [anon_sym___inline__] = ACTIONS(5514), + [anon_sym___forceinline] = ACTIONS(5514), + [anon_sym_thread_local] = ACTIONS(5514), + [anon_sym___thread] = ACTIONS(5514), + [anon_sym_const] = ACTIONS(5512), + [anon_sym_constexpr] = ACTIONS(5514), + [anon_sym_volatile] = ACTIONS(5514), + [anon_sym_restrict] = ACTIONS(5514), + [anon_sym___restrict__] = ACTIONS(5514), + [anon_sym__Atomic] = ACTIONS(5514), + [anon_sym__Noreturn] = ACTIONS(5514), + [anon_sym_noreturn] = ACTIONS(5514), + [anon_sym__Nonnull] = ACTIONS(5514), + [anon_sym_mutable] = ACTIONS(5514), + [anon_sym_constinit] = ACTIONS(5514), + [anon_sym_consteval] = ACTIONS(5514), + [anon_sym_alignas] = ACTIONS(5514), + [anon_sym__Alignas] = ACTIONS(5514), + [anon_sym_asm] = ACTIONS(5514), + [anon_sym___asm__] = ACTIONS(5514), + [anon_sym___asm] = ACTIONS(5512), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5514), + [anon_sym_decltype] = ACTIONS(5514), + [anon_sym_final] = ACTIONS(5514), + [anon_sym_override] = ACTIONS(5514), + [anon_sym_GT2] = ACTIONS(5514), + [anon_sym_try] = ACTIONS(5514), + [anon_sym_requires] = ACTIONS(5514), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5514), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5514), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5512), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5514), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5514), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5512), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5514), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5514), + [anon_sym_MOZ_COLD] = ACTIONS(5514), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5514), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5514), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5514), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5514), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5514), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5512), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5514), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5514), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5514), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5514), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5514), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5514), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5514), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5514), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5514), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5514), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5514), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5514), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5514), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5514), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5514), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5514), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5512), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5514), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5514), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5514), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5514), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5512), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5514), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5514), + [anon_sym_MOZ_NONNULL] = ACTIONS(5512), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5514), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5514), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5514), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5514), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5514), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5514), + [anon_sym_MOZ_NORETURN] = ACTIONS(5512), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5514), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5514), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5514), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5514), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5514), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5514), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5514), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5514), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5514), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5514), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5514), + [anon_sym_MOZ_RAII] = ACTIONS(5514), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5514), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5514), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5514), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5514), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5514), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5514), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5514), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5514), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5514), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5514), + }, + [STATE(1682)] = { + [sym_attribute_specifier] = STATE(1394), + [anon_sym_COMMA] = ACTIONS(5496), + [anon_sym_RPAREN] = ACTIONS(5496), + [anon_sym_LPAREN2] = ACTIONS(5496), + [anon_sym_STAR] = ACTIONS(5496), + [anon_sym_AMP_AMP] = ACTIONS(5496), + [anon_sym_AMP] = ACTIONS(5494), + [anon_sym_SEMI] = ACTIONS(5496), + [anon_sym___extension__] = ACTIONS(5496), + [anon_sym_virtual] = ACTIONS(5496), + [anon_sym_extern] = ACTIONS(5496), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5496), + [anon_sym___declspec] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_LBRACK] = ACTIONS(5494), + [anon_sym_static] = ACTIONS(5496), + [anon_sym_EQ] = ACTIONS(5496), + [anon_sym_register] = ACTIONS(5496), + [anon_sym_inline] = ACTIONS(5496), + [anon_sym___inline] = ACTIONS(5494), + [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(5494), + [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__Nonnull] = ACTIONS(5496), + [anon_sym_mutable] = ACTIONS(5496), + [anon_sym_constinit] = ACTIONS(5496), + [anon_sym_consteval] = ACTIONS(5496), + [anon_sym_alignas] = ACTIONS(5496), + [anon_sym__Alignas] = ACTIONS(5496), + [anon_sym_asm] = ACTIONS(5496), + [anon_sym___asm__] = ACTIONS(5496), + [anon_sym___asm] = ACTIONS(5494), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5496), + [anon_sym_decltype] = ACTIONS(5496), + [anon_sym_final] = ACTIONS(5496), + [anon_sym_override] = ACTIONS(5496), + [anon_sym_GT2] = ACTIONS(5496), + [anon_sym_try] = ACTIONS(5496), + [anon_sym_requires] = ACTIONS(5496), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5496), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5496), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5494), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5496), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5496), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5494), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5496), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5496), + [anon_sym_MOZ_COLD] = ACTIONS(5496), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5496), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5496), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5496), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5496), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5496), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5494), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5496), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5496), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5496), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5496), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5496), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5496), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5496), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5496), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5496), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5496), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5496), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5496), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5496), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5496), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5496), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5496), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5494), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5496), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5496), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5496), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5496), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5494), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5496), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5496), + [anon_sym_MOZ_NONNULL] = ACTIONS(5494), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5496), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5496), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5496), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5496), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5496), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5496), + [anon_sym_MOZ_NORETURN] = ACTIONS(5494), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5496), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5496), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5496), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5496), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5496), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5496), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5496), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5496), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5496), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5496), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5496), + [anon_sym_MOZ_RAII] = ACTIONS(5496), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5496), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5496), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5496), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5496), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5496), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5496), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5496), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5496), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5496), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5496), + }, + [STATE(1683)] = { + [sym_attribute_specifier] = STATE(1395), + [anon_sym_COMMA] = ACTIONS(5486), + [anon_sym_RPAREN] = ACTIONS(5486), + [anon_sym_LPAREN2] = ACTIONS(5486), + [anon_sym_STAR] = ACTIONS(5486), + [anon_sym_AMP_AMP] = ACTIONS(5486), + [anon_sym_AMP] = ACTIONS(5484), + [anon_sym_SEMI] = ACTIONS(5486), + [anon_sym___extension__] = ACTIONS(5486), + [anon_sym_virtual] = ACTIONS(5486), + [anon_sym_extern] = ACTIONS(5486), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5486), + [anon_sym___declspec] = ACTIONS(5486), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_LBRACK] = ACTIONS(5484), + [anon_sym_static] = ACTIONS(5486), + [anon_sym_EQ] = ACTIONS(5486), + [anon_sym_register] = ACTIONS(5486), + [anon_sym_inline] = ACTIONS(5486), + [anon_sym___inline] = ACTIONS(5484), + [anon_sym___inline__] = ACTIONS(5486), + [anon_sym___forceinline] = ACTIONS(5486), + [anon_sym_thread_local] = ACTIONS(5486), + [anon_sym___thread] = ACTIONS(5486), + [anon_sym_const] = ACTIONS(5484), + [anon_sym_constexpr] = ACTIONS(5486), + [anon_sym_volatile] = ACTIONS(5486), + [anon_sym_restrict] = ACTIONS(5486), + [anon_sym___restrict__] = ACTIONS(5486), + [anon_sym__Atomic] = ACTIONS(5486), + [anon_sym__Noreturn] = ACTIONS(5486), + [anon_sym_noreturn] = ACTIONS(5486), + [anon_sym__Nonnull] = ACTIONS(5486), + [anon_sym_mutable] = ACTIONS(5486), + [anon_sym_constinit] = ACTIONS(5486), + [anon_sym_consteval] = ACTIONS(5486), + [anon_sym_alignas] = ACTIONS(5486), + [anon_sym__Alignas] = ACTIONS(5486), + [anon_sym_asm] = ACTIONS(5486), + [anon_sym___asm__] = ACTIONS(5486), + [anon_sym___asm] = ACTIONS(5484), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5486), + [anon_sym_decltype] = ACTIONS(5486), + [anon_sym_final] = ACTIONS(5486), + [anon_sym_override] = ACTIONS(5486), + [anon_sym_GT2] = ACTIONS(5486), + [anon_sym_try] = ACTIONS(5486), + [anon_sym_requires] = ACTIONS(5486), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5486), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5486), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5484), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5486), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5486), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5484), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5486), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5486), + [anon_sym_MOZ_COLD] = ACTIONS(5486), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5486), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5486), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5486), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5486), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5486), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5484), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5486), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5486), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5486), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5486), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5486), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5486), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5486), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5486), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5486), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5486), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5486), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5486), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5486), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5486), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5486), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5486), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5484), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5486), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5486), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5486), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5486), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5484), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5486), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5486), + [anon_sym_MOZ_NONNULL] = ACTIONS(5484), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5486), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5486), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5486), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5486), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5486), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5486), + [anon_sym_MOZ_NORETURN] = ACTIONS(5484), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5486), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5486), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5486), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5486), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5486), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5486), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5486), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5486), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5486), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5486), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5486), + [anon_sym_MOZ_RAII] = ACTIONS(5486), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5486), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5486), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5486), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5486), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5486), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5486), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5486), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5486), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5486), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5486), + }, + [STATE(1684)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_identifier_parameter_pack_expansion] = STATE(7961), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3928), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5730), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5732), + [anon_sym_COMMA] = ACTIONS(5734), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(5734), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1685)] = { + [sym_expression] = STATE(4826), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8695), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8695), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5736), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1686)] = { + [sym_expression] = STATE(3600), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym__unary_left_fold] = STATE(8423), + [sym__unary_right_fold] = STATE(8424), + [sym__binary_fold] = STATE(8425), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1687)] = { + [sym_expression] = STATE(5090), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8888), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5738), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1688)] = { + [sym_compound_statement] = STATE(8407), + [sym_expression] = STATE(4821), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8407), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1689)] = { + [sym_expression] = STATE(3989), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1690)] = { + [sym_expression] = STATE(4880), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1691)] = { + [sym_expression] = STATE(5090), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8888), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5745), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1692)] = { + [sym_identifier] = ACTIONS(5748), + [anon_sym_LPAREN2] = ACTIONS(5750), + [anon_sym_STAR] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5750), + [anon_sym_AMP] = ACTIONS(5748), + [anon_sym___extension__] = ACTIONS(5748), + [anon_sym_virtual] = ACTIONS(5748), + [anon_sym_extern] = ACTIONS(5748), + [anon_sym___attribute__] = ACTIONS(5748), + [anon_sym___attribute] = ACTIONS(5748), + [anon_sym_COLON_COLON] = ACTIONS(5750), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5750), + [anon_sym___declspec] = ACTIONS(5748), + [anon_sym___based] = ACTIONS(5748), + [anon_sym_signed] = ACTIONS(5748), + [anon_sym_unsigned] = ACTIONS(5748), + [anon_sym_long] = ACTIONS(5748), + [anon_sym_short] = ACTIONS(5748), + [anon_sym_static] = ACTIONS(5748), + [anon_sym_register] = ACTIONS(5748), + [anon_sym_inline] = ACTIONS(5748), + [anon_sym___inline] = ACTIONS(5748), + [anon_sym___inline__] = ACTIONS(5748), + [anon_sym___forceinline] = ACTIONS(5748), + [anon_sym_thread_local] = ACTIONS(5748), + [anon_sym___thread] = ACTIONS(5748), + [anon_sym_const] = ACTIONS(5748), + [anon_sym_constexpr] = ACTIONS(5748), + [anon_sym_volatile] = ACTIONS(5748), + [anon_sym_restrict] = ACTIONS(5748), + [anon_sym___restrict__] = ACTIONS(5748), + [anon_sym__Atomic] = ACTIONS(5748), + [anon_sym__Noreturn] = ACTIONS(5748), + [anon_sym_noreturn] = ACTIONS(5748), + [anon_sym__Nonnull] = ACTIONS(5748), + [anon_sym_mutable] = ACTIONS(5748), + [anon_sym_constinit] = ACTIONS(5748), + [anon_sym_consteval] = ACTIONS(5748), + [anon_sym_alignas] = ACTIONS(5748), + [anon_sym__Alignas] = ACTIONS(5748), + [sym_primitive_type] = ACTIONS(5748), + [anon_sym_enum] = ACTIONS(5748), + [anon_sym_class] = ACTIONS(5748), + [anon_sym_struct] = ACTIONS(5748), + [anon_sym_union] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5748), + [anon_sym_decltype] = ACTIONS(5748), + [anon_sym_typename] = ACTIONS(5748), + [anon_sym_template] = ACTIONS(5748), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5748), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5748), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5748), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5748), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5748), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5748), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5748), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5748), + [anon_sym_MOZ_COLD] = ACTIONS(5748), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5748), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5748), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5748), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5748), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5748), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5748), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5748), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5748), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5748), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5748), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5748), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5748), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5748), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5748), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5748), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5748), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5748), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5748), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5748), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5748), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5748), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5748), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5748), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5748), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5748), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5748), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5748), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5748), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5748), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5748), + [anon_sym_MOZ_NONNULL] = ACTIONS(5748), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5748), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5748), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5748), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5748), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5748), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5748), + [anon_sym_MOZ_NORETURN] = ACTIONS(5748), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5748), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5748), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5748), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5748), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5748), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5748), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5748), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5748), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5748), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5748), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5748), + [anon_sym_MOZ_RAII] = ACTIONS(5748), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5748), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5748), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5748), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5748), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5748), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5748), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5748), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5748), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5748), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5748), + }, + [STATE(1693)] = { + [sym_expression] = STATE(4785), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1694)] = { + [sym_expression] = STATE(5179), + [sym__string] = STATE(4892), + [sym_conditional_expression] = STATE(5004), + [sym_assignment_expression] = STATE(5004), + [sym_pointer_expression] = STATE(3732), + [sym_unary_expression] = STATE(5004), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(5004), + [sym_cast_expression] = STATE(5004), + [sym_sizeof_expression] = STATE(5004), + [sym_alignof_expression] = STATE(5004), + [sym_offsetof_expression] = STATE(5004), + [sym_generic_expression] = STATE(5004), + [sym_subscript_expression] = STATE(3732), + [sym_call_expression] = STATE(3732), + [sym_gnu_asm_expression] = STATE(5004), + [sym_extension_expression] = STATE(5004), + [sym_field_expression] = STATE(3732), + [sym_compound_literal_expression] = STATE(5004), + [sym_parenthesized_expression] = STATE(3732), + [sym_initializer_list] = STATE(7770), + [sym_char_literal] = STATE(4892), + [sym_concatenated_string] = STATE(4892), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(5004), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5004), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(5004), + [sym_new_expression] = STATE(5004), + [sym_delete_expression] = STATE(5004), + [sym_requires_clause] = STATE(5004), + [sym_requires_expression] = STATE(5004), + [sym_lambda_expression] = STATE(5004), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(5004), + [sym_parameter_pack_expansion] = STATE(5004), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3732), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3732), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5754), + [anon_sym_RPAREN] = ACTIONS(5756), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(5758), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(5760), + [sym_false] = ACTIONS(5760), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(5760), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1695)] = { + [sym_expression] = STATE(5090), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8888), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5762), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1696)] = { + [sym_expression] = STATE(4790), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1697)] = { + [sym_expression] = STATE(5090), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8888), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5765), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1698)] = { + [sym_expression] = STATE(5090), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8888), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5768), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1699)] = { + [sym_expression] = STATE(4483), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1700)] = { + [sym_expression] = STATE(4615), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1701)] = { + [sym_expression] = STATE(3305), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1702)] = { + [sym_expression] = STATE(3258), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1703)] = { + [sym_expression] = STATE(3225), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1704)] = { + [sym_expression] = STATE(4728), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_initializer_list] = STATE(7566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(5777), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1705)] = { + [sym_expression] = STATE(3168), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1706)] = { + [sym_expression] = STATE(4702), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_initializer_list] = STATE(7859), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(5781), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1707)] = { + [sym_expression] = STATE(3166), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1708)] = { + [sym_expression] = STATE(3605), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1709)] = { + [sym_expression] = STATE(4647), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1710)] = { + [sym_expression] = STATE(3477), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1711)] = { + [sym_expression] = STATE(3301), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1712)] = { + [sym_expression] = STATE(5179), + [sym__string] = STATE(4919), + [sym_conditional_expression] = STATE(5127), + [sym_assignment_expression] = STATE(5127), + [sym_pointer_expression] = STATE(3690), + [sym_unary_expression] = STATE(5127), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(5127), + [sym_cast_expression] = STATE(5127), + [sym_sizeof_expression] = STATE(5127), + [sym_alignof_expression] = STATE(5127), + [sym_offsetof_expression] = STATE(5127), + [sym_generic_expression] = STATE(5127), + [sym_subscript_expression] = STATE(3690), + [sym_call_expression] = STATE(3690), + [sym_gnu_asm_expression] = STATE(5127), + [sym_extension_expression] = STATE(5127), + [sym_field_expression] = STATE(3690), + [sym_compound_literal_expression] = STATE(5127), + [sym_parenthesized_expression] = STATE(3690), + [sym_initializer_list] = STATE(7676), + [sym_char_literal] = STATE(4919), + [sym_concatenated_string] = STATE(4919), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(5127), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5127), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(5127), + [sym_new_expression] = STATE(5127), + [sym_delete_expression] = STATE(5127), + [sym_requires_clause] = STATE(5127), + [sym_requires_expression] = STATE(5127), + [sym_lambda_expression] = STATE(5127), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(5127), + [sym_parameter_pack_expansion] = STATE(5127), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3690), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3690), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5785), + [anon_sym_RPAREN] = ACTIONS(5787), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(5789), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(5791), + [sym_false] = ACTIONS(5791), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(5791), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1713)] = { + [sym_expression] = STATE(5090), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8888), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5793), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1714)] = { + [sym_expression] = STATE(4491), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1715)] = { + [sym_expression] = STATE(5090), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8888), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5796), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1716)] = { + [sym_identifier] = ACTIONS(3289), + [anon_sym_LPAREN2] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym___extension__] = ACTIONS(3289), + [anon_sym_virtual] = ACTIONS(3289), + [anon_sym_extern] = ACTIONS(3289), + [anon_sym___attribute__] = ACTIONS(3289), + [anon_sym___attribute] = ACTIONS(3289), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3293), + [anon_sym___declspec] = ACTIONS(3289), + [anon_sym___based] = ACTIONS(3289), + [anon_sym___cdecl] = ACTIONS(3289), + [anon_sym___clrcall] = ACTIONS(3289), + [anon_sym___stdcall] = ACTIONS(3289), + [anon_sym___fastcall] = ACTIONS(3289), + [anon_sym___thiscall] = ACTIONS(3289), + [anon_sym___vectorcall] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_register] = ACTIONS(3289), + [anon_sym_inline] = ACTIONS(3289), + [anon_sym___inline] = ACTIONS(3289), + [anon_sym___inline__] = ACTIONS(3289), + [anon_sym___forceinline] = ACTIONS(3289), + [anon_sym_thread_local] = ACTIONS(3289), + [anon_sym___thread] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_constexpr] = ACTIONS(3289), + [anon_sym_volatile] = ACTIONS(3289), + [anon_sym_restrict] = ACTIONS(3289), + [anon_sym___restrict__] = ACTIONS(3289), + [anon_sym__Atomic] = ACTIONS(3289), + [anon_sym__Noreturn] = ACTIONS(3289), + [anon_sym_noreturn] = ACTIONS(3289), + [anon_sym__Nonnull] = ACTIONS(3289), + [anon_sym_mutable] = ACTIONS(3289), + [anon_sym_constinit] = ACTIONS(3289), + [anon_sym_consteval] = ACTIONS(3289), + [anon_sym_alignas] = ACTIONS(3289), + [anon_sym__Alignas] = ACTIONS(3289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3289), + [anon_sym_decltype] = ACTIONS(3289), + [anon_sym_template] = ACTIONS(3289), + [anon_sym_operator] = ACTIONS(3289), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3289), + [anon_sym_MOZ_COLD] = ACTIONS(3289), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3289), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3289), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3289), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3289), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3289), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3289), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3289), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3289), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3289), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3289), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3289), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3289), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_RAII] = ACTIONS(3289), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3289), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3289), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3289), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3289), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3289), + }, + [STATE(1717)] = { + [sym_expression] = STATE(4634), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1718)] = { + [sym_expression] = STATE(4644), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1719)] = { + [sym_expression] = STATE(3469), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1720)] = { + [sym_expression] = STATE(5179), + [sym__string] = STATE(4737), + [sym_conditional_expression] = STATE(5073), + [sym_assignment_expression] = STATE(5073), + [sym_pointer_expression] = STATE(3704), + [sym_unary_expression] = STATE(5073), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(5073), + [sym_cast_expression] = STATE(5073), + [sym_sizeof_expression] = STATE(5073), + [sym_alignof_expression] = STATE(5073), + [sym_offsetof_expression] = STATE(5073), + [sym_generic_expression] = STATE(5073), + [sym_subscript_expression] = STATE(3704), + [sym_call_expression] = STATE(3704), + [sym_gnu_asm_expression] = STATE(5073), + [sym_extension_expression] = STATE(5073), + [sym_field_expression] = STATE(3704), + [sym_compound_literal_expression] = STATE(5073), + [sym_parenthesized_expression] = STATE(3704), + [sym_initializer_list] = STATE(7910), + [sym_char_literal] = STATE(4737), + [sym_concatenated_string] = STATE(4737), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(5073), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5073), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(5073), + [sym_new_expression] = STATE(5073), + [sym_delete_expression] = STATE(5073), + [sym_requires_clause] = STATE(5073), + [sym_requires_expression] = STATE(5073), + [sym_lambda_expression] = STATE(5073), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(5073), + [sym_parameter_pack_expansion] = STATE(5073), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3704), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3704), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5799), + [anon_sym_RPAREN] = ACTIONS(5801), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(5803), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(5805), + [sym_false] = ACTIONS(5805), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(5805), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1721)] = { + [sym_identifier] = ACTIONS(4735), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_TILDE] = ACTIONS(4737), + [anon_sym_STAR] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_SEMI] = ACTIONS(4543), + [anon_sym___extension__] = ACTIONS(4735), + [anon_sym_virtual] = ACTIONS(4735), + [anon_sym_extern] = ACTIONS(4735), + [anon_sym___attribute__] = ACTIONS(4735), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4737), + [anon_sym___declspec] = ACTIONS(4735), + [anon_sym___based] = ACTIONS(4735), + [anon_sym___cdecl] = ACTIONS(4735), + [anon_sym___clrcall] = ACTIONS(4735), + [anon_sym___stdcall] = ACTIONS(4735), + [anon_sym___fastcall] = ACTIONS(4735), + [anon_sym___thiscall] = ACTIONS(4735), + [anon_sym___vectorcall] = ACTIONS(4735), + [anon_sym_LBRACK] = ACTIONS(4735), + [anon_sym_static] = ACTIONS(4735), + [anon_sym_register] = ACTIONS(4735), + [anon_sym_inline] = ACTIONS(4735), + [anon_sym___inline] = ACTIONS(4735), + [anon_sym___inline__] = ACTIONS(4735), + [anon_sym___forceinline] = ACTIONS(4735), + [anon_sym_thread_local] = ACTIONS(4735), + [anon_sym___thread] = ACTIONS(4735), + [anon_sym_const] = ACTIONS(4735), + [anon_sym_constexpr] = ACTIONS(4735), + [anon_sym_volatile] = ACTIONS(4735), + [anon_sym_restrict] = ACTIONS(4735), + [anon_sym___restrict__] = ACTIONS(4735), + [anon_sym__Atomic] = ACTIONS(4735), + [anon_sym__Noreturn] = ACTIONS(4735), + [anon_sym_noreturn] = ACTIONS(4735), + [anon_sym__Nonnull] = ACTIONS(4735), + [anon_sym_mutable] = ACTIONS(4735), + [anon_sym_constinit] = ACTIONS(4735), + [anon_sym_consteval] = ACTIONS(4735), + [anon_sym_alignas] = ACTIONS(4735), + [anon_sym__Alignas] = ACTIONS(4735), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4735), + [anon_sym_decltype] = ACTIONS(4735), + [anon_sym_template] = ACTIONS(4735), + [anon_sym_operator] = ACTIONS(4735), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4735), + [anon_sym_MOZ_COLD] = ACTIONS(4735), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4735), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4735), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4735), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4735), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4735), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4735), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4735), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4735), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4735), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4735), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4735), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4735), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_RAII] = ACTIONS(4735), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4735), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4735), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4735), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4735), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4735), + }, + [STATE(1722)] = { + [sym_expression] = STATE(4716), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_initializer_list] = STATE(7587), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(5807), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1723)] = { + [sym_expression] = STATE(3641), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1724)] = { + [sym_expression] = STATE(3524), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1725)] = { + [sym_expression] = STATE(3984), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1726)] = { + [sym_expression] = STATE(5090), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8888), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5811), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1727)] = { + [sym_expression] = STATE(4747), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1728)] = { + [sym_expression] = STATE(4874), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1729)] = { + [sym_expression] = STATE(4876), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1730)] = { + [sym_expression] = STATE(5090), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8888), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5814), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1731)] = { + [sym_expression] = STATE(5090), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8888), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5817), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1732)] = { + [sym_expression] = STATE(3555), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5741), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT] = ACTIONS(5741), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1733)] = { + [sym_expression] = STATE(5090), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8888), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5820), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1734)] = { + [sym_identifier] = ACTIONS(4735), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_TILDE] = ACTIONS(4737), + [anon_sym_STAR] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_SEMI] = ACTIONS(4543), + [anon_sym___extension__] = ACTIONS(4735), + [anon_sym_virtual] = ACTIONS(4735), + [anon_sym_extern] = ACTIONS(4735), + [anon_sym___attribute__] = ACTIONS(4735), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_COLON_COLON] = ACTIONS(4737), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4737), + [anon_sym___declspec] = ACTIONS(4735), + [anon_sym___based] = ACTIONS(4735), + [anon_sym___cdecl] = ACTIONS(4735), + [anon_sym___clrcall] = ACTIONS(4735), + [anon_sym___stdcall] = ACTIONS(4735), + [anon_sym___fastcall] = ACTIONS(4735), + [anon_sym___thiscall] = ACTIONS(4735), + [anon_sym___vectorcall] = ACTIONS(4735), + [anon_sym_LBRACK] = ACTIONS(4735), + [anon_sym_static] = ACTIONS(4735), + [anon_sym_register] = ACTIONS(4735), + [anon_sym_inline] = ACTIONS(4735), + [anon_sym___inline] = ACTIONS(4735), + [anon_sym___inline__] = ACTIONS(4735), + [anon_sym___forceinline] = ACTIONS(4735), + [anon_sym_thread_local] = ACTIONS(4735), + [anon_sym___thread] = ACTIONS(4735), + [anon_sym_const] = ACTIONS(4735), + [anon_sym_constexpr] = ACTIONS(4735), + [anon_sym_volatile] = ACTIONS(4735), + [anon_sym_restrict] = ACTIONS(4735), + [anon_sym___restrict__] = ACTIONS(4735), + [anon_sym__Atomic] = ACTIONS(4735), + [anon_sym__Noreturn] = ACTIONS(4735), + [anon_sym_noreturn] = ACTIONS(4735), + [anon_sym__Nonnull] = ACTIONS(4735), + [anon_sym_mutable] = ACTIONS(4735), + [anon_sym_constinit] = ACTIONS(4735), + [anon_sym_consteval] = ACTIONS(4735), + [anon_sym_alignas] = ACTIONS(4735), + [anon_sym__Alignas] = ACTIONS(4735), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4735), + [anon_sym_decltype] = ACTIONS(4735), + [anon_sym_template] = ACTIONS(4735), + [anon_sym_operator] = ACTIONS(4735), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4735), + [anon_sym_MOZ_COLD] = ACTIONS(4735), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4735), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4735), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4735), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4735), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4735), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4735), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4735), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4735), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4735), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4735), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4735), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4735), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_RAII] = ACTIONS(4735), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4735), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4735), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4735), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4735), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4735), + }, + [STATE(1735)] = { + [sym_expression] = STATE(4863), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_initializer_list] = STATE(4128), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1736)] = { + [sym_expression] = STATE(2837), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_initializer_list] = STATE(2893), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1737)] = { + [sym_expression] = STATE(4841), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8822), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(5831), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1738)] = { + [sym_expression] = STATE(4768), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(9188), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_RPAREN] = ACTIONS(5833), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1739)] = { + [sym_expression] = STATE(3573), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_initializer_list] = STATE(3902), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(3879), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1740)] = { + [sym_expression] = STATE(4766), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_initializer_list] = STATE(4128), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1741)] = { + [sym_expression] = STATE(4779), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8610), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(5837), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1742)] = { + [sym_expression] = STATE(4060), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(4206), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1743)] = { + [sym_expression] = STATE(4842), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_initializer_list] = STATE(4206), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1744)] = { + [sym_expression] = STATE(3436), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_initializer_list] = STATE(3693), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3647), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1745)] = { + [sym_expression] = STATE(4741), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8679), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(5839), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1746)] = { + [sym_expression] = STATE(4789), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8713), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(5841), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1747)] = { + [sym_expression] = STATE(4752), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8848), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(5843), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1748)] = { + [sym_expression] = STATE(4848), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7967), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1749)] = { + [sym_expression] = STATE(4750), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_initializer_list] = STATE(4128), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1750)] = { + [sym_expression] = STATE(4060), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_initializer_list] = STATE(4206), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1751)] = { + [sym_expression] = STATE(4759), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(9180), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_RPAREN] = ACTIONS(5845), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1752)] = { + [sym_expression] = STATE(4802), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8671), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_RPAREN] = ACTIONS(5847), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1753)] = { + [sym_expression] = STATE(4060), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_initializer_list] = STATE(4206), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1754)] = { + [sym_template_argument_list] = STATE(2255), + [aux_sym_sized_type_specifier_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(5849), + [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__Nonnull] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym__Alignas] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3087), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3087), + [anon_sym_MOZ_COLD] = ACTIONS(3087), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3087), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3087), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3087), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3087), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3087), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3087), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3087), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3087), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3087), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3087), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3087), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3087), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL] = ACTIONS(3087), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3087), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3087), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN] = ACTIONS(3087), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3087), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3087), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3087), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3087), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3087), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3087), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3087), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3087), + [anon_sym_MOZ_RAII] = ACTIONS(3087), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3087), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3087), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3087), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3087), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3087), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3087), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3087), + }, + [STATE(1755)] = { + [sym_expression] = STATE(4890), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8622), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(5851), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1756)] = { + [sym_expression] = STATE(4830), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_initializer_list] = STATE(8157), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1757)] = { + [sym_expression] = STATE(5179), + [sym__string] = STATE(5108), + [sym_conditional_expression] = STATE(5147), + [sym_assignment_expression] = STATE(5147), + [sym_pointer_expression] = STATE(4009), + [sym_unary_expression] = STATE(5147), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(5147), + [sym_cast_expression] = STATE(5147), + [sym_sizeof_expression] = STATE(5147), + [sym_alignof_expression] = STATE(5147), + [sym_offsetof_expression] = STATE(5147), + [sym_generic_expression] = STATE(5147), + [sym_subscript_expression] = STATE(4009), + [sym_call_expression] = STATE(4009), + [sym_gnu_asm_expression] = STATE(5147), + [sym_extension_expression] = STATE(5147), + [sym_field_expression] = STATE(4009), + [sym_compound_literal_expression] = STATE(5147), + [sym_parenthesized_expression] = STATE(4009), + [sym_initializer_list] = STATE(8046), + [sym_char_literal] = STATE(5108), + [sym_concatenated_string] = STATE(5108), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(5147), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5147), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(5147), + [sym_new_expression] = STATE(5147), + [sym_delete_expression] = STATE(5147), + [sym_requires_clause] = STATE(5147), + [sym_requires_expression] = STATE(5147), + [sym_lambda_expression] = STATE(5147), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(5147), + [sym_parameter_pack_expansion] = STATE(5147), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4009), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4009), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5853), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(5855), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(5857), + [sym_false] = ACTIONS(5857), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(5857), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1758)] = { + [sym_expression] = STATE(4921), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8731), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1759)] = { + [sym_expression] = STATE(3949), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_initializer_list] = STATE(4143), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(3919), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1760)] = { + [sym_expression] = STATE(4920), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(7960), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1761)] = { + [sym_attribute_specifier] = STATE(1371), + [sym_enumerator_list] = STATE(1675), + [sym__enum_base_clause] = STATE(1645), + [anon_sym_COMMA] = ACTIONS(5506), + [anon_sym_RPAREN] = ACTIONS(5506), + [anon_sym_LPAREN2] = ACTIONS(5506), + [anon_sym_STAR] = ACTIONS(5506), + [anon_sym_AMP_AMP] = ACTIONS(5506), + [anon_sym_AMP] = ACTIONS(5504), + [anon_sym_SEMI] = ACTIONS(5506), + [anon_sym___extension__] = ACTIONS(5506), + [anon_sym_virtual] = ACTIONS(5506), + [anon_sym_extern] = ACTIONS(5506), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5506), + [anon_sym___declspec] = ACTIONS(5506), + [anon_sym_LBRACE] = ACTIONS(5250), + [anon_sym_LBRACK] = ACTIONS(5504), + [anon_sym_static] = ACTIONS(5506), + [anon_sym_register] = ACTIONS(5506), + [anon_sym_inline] = ACTIONS(5506), + [anon_sym___inline] = ACTIONS(5504), + [anon_sym___inline__] = ACTIONS(5506), + [anon_sym___forceinline] = ACTIONS(5506), + [anon_sym_thread_local] = ACTIONS(5506), + [anon_sym___thread] = ACTIONS(5506), + [anon_sym_const] = ACTIONS(5504), + [anon_sym_constexpr] = ACTIONS(5506), + [anon_sym_volatile] = ACTIONS(5506), + [anon_sym_restrict] = ACTIONS(5506), + [anon_sym___restrict__] = ACTIONS(5506), + [anon_sym__Atomic] = ACTIONS(5506), + [anon_sym__Noreturn] = ACTIONS(5506), + [anon_sym_noreturn] = ACTIONS(5506), + [anon_sym__Nonnull] = ACTIONS(5506), + [anon_sym_mutable] = ACTIONS(5506), + [anon_sym_constinit] = ACTIONS(5506), + [anon_sym_consteval] = ACTIONS(5506), + [anon_sym_alignas] = ACTIONS(5506), + [anon_sym__Alignas] = ACTIONS(5506), + [anon_sym_COLON] = ACTIONS(5859), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5506), + [anon_sym_decltype] = ACTIONS(5506), + [anon_sym_final] = ACTIONS(5506), + [anon_sym_override] = ACTIONS(5506), + [anon_sym_try] = ACTIONS(5506), + [anon_sym_requires] = ACTIONS(5506), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5506), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5506), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5504), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5506), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5506), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5504), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5506), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5506), + [anon_sym_MOZ_COLD] = ACTIONS(5506), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5506), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5506), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5506), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5506), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5506), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5506), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5506), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5506), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5506), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5506), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5506), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5506), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5506), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5506), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5506), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5506), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5506), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5506), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5506), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5506), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5506), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5504), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5506), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5506), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5506), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5506), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5504), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5506), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5506), + [anon_sym_MOZ_NONNULL] = ACTIONS(5504), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5506), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5506), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5506), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5506), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5506), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5506), + [anon_sym_MOZ_NORETURN] = ACTIONS(5504), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5506), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5506), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5506), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5506), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5506), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5506), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5506), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5506), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5506), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5506), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5506), + [anon_sym_MOZ_RAII] = ACTIONS(5506), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5506), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5506), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5506), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5506), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5506), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5506), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5506), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5506), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5506), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5506), + }, + [STATE(1762)] = { + [sym_expression] = STATE(4060), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_initializer_list] = STATE(4206), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1763)] = { + [sym_expression] = STATE(2837), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_initializer_list] = STATE(2893), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1764)] = { + [sym_expression] = STATE(4903), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8495), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(5863), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1765)] = { + [sym_attribute_specifier] = STATE(1392), + [sym_enumerator_list] = STATE(1678), + [sym__enum_base_clause] = STATE(1646), + [anon_sym_COMMA] = ACTIONS(5456), + [anon_sym_RPAREN] = ACTIONS(5456), + [anon_sym_LPAREN2] = ACTIONS(5456), + [anon_sym_STAR] = ACTIONS(5456), + [anon_sym_AMP_AMP] = ACTIONS(5456), + [anon_sym_AMP] = ACTIONS(5454), + [anon_sym_SEMI] = ACTIONS(5456), + [anon_sym___extension__] = ACTIONS(5456), + [anon_sym_virtual] = ACTIONS(5456), + [anon_sym_extern] = ACTIONS(5456), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5456), + [anon_sym___declspec] = ACTIONS(5456), + [anon_sym_LBRACE] = ACTIONS(5250), + [anon_sym_LBRACK] = ACTIONS(5454), + [anon_sym_static] = ACTIONS(5456), + [anon_sym_register] = ACTIONS(5456), + [anon_sym_inline] = ACTIONS(5456), + [anon_sym___inline] = ACTIONS(5454), + [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(5454), + [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__Nonnull] = ACTIONS(5456), + [anon_sym_mutable] = ACTIONS(5456), + [anon_sym_constinit] = ACTIONS(5456), + [anon_sym_consteval] = ACTIONS(5456), + [anon_sym_alignas] = ACTIONS(5456), + [anon_sym__Alignas] = ACTIONS(5456), + [anon_sym_COLON] = ACTIONS(5859), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5456), + [anon_sym_decltype] = ACTIONS(5456), + [anon_sym_final] = ACTIONS(5456), + [anon_sym_override] = ACTIONS(5456), + [anon_sym_try] = ACTIONS(5456), + [anon_sym_requires] = ACTIONS(5456), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5456), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5456), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5454), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5456), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5456), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5454), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5456), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5456), + [anon_sym_MOZ_COLD] = ACTIONS(5456), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5456), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5456), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5456), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5456), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5456), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5456), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5456), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5456), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5456), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5456), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5456), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5456), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5456), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5456), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5456), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5456), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5456), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5456), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5456), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5456), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5456), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5454), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5456), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5456), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5456), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5456), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5454), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5456), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5456), + [anon_sym_MOZ_NONNULL] = ACTIONS(5454), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5456), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5456), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5456), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5456), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5456), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5456), + [anon_sym_MOZ_NORETURN] = ACTIONS(5454), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5456), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5456), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5456), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5456), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5456), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5456), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5456), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5456), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5456), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5456), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5456), + [anon_sym_MOZ_RAII] = ACTIONS(5456), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5456), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5456), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5456), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5456), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5456), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5456), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5456), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5456), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5456), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5456), + }, + [STATE(1766)] = { + [sym_expression] = STATE(4915), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8094), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1767)] = { + [sym_expression] = STATE(4909), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8579), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_RPAREN] = ACTIONS(5865), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1768)] = { + [sym_expression] = STATE(4843), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(9141), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(5867), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1769)] = { + [sym_expression] = STATE(3640), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_initializer_list] = STATE(2893), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1770)] = { + [sym_expression] = STATE(4981), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(9186), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1771)] = { + [sym_expression] = STATE(3967), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_initializer_list] = STATE(4178), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(3919), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1772)] = { + [sym_expression] = STATE(4803), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8720), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_RPAREN] = ACTIONS(5871), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1773)] = { + [sym_expression] = STATE(4851), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(8560), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(5873), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1774)] = { + [sym_expression] = STATE(4906), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(9163), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(5875), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1775)] = { + [sym_template_argument_list] = STATE(1873), + [sym_identifier] = ACTIONS(3272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3279), + [anon_sym_COMMA] = ACTIONS(3279), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3279), + [anon_sym_AMP_AMP] = ACTIONS(3279), + [anon_sym_AMP] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(5530), + [anon_sym___extension__] = ACTIONS(3272), + [anon_sym_virtual] = ACTIONS(3272), + [anon_sym_extern] = ACTIONS(3272), + [anon_sym___attribute__] = ACTIONS(3272), + [anon_sym___attribute] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), + [anon_sym___declspec] = ACTIONS(3272), + [anon_sym___based] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3279), + [anon_sym_register] = ACTIONS(3272), + [anon_sym_inline] = ACTIONS(3272), + [anon_sym___inline] = ACTIONS(3272), + [anon_sym___inline__] = ACTIONS(3272), + [anon_sym___forceinline] = ACTIONS(3272), + [anon_sym_thread_local] = ACTIONS(3272), + [anon_sym___thread] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_constexpr] = ACTIONS(3272), + [anon_sym_volatile] = ACTIONS(3272), + [anon_sym_restrict] = ACTIONS(3272), + [anon_sym___restrict__] = ACTIONS(3272), + [anon_sym__Atomic] = ACTIONS(3272), + [anon_sym__Noreturn] = ACTIONS(3272), + [anon_sym_noreturn] = ACTIONS(3272), + [anon_sym__Nonnull] = ACTIONS(3272), + [anon_sym_mutable] = ACTIONS(3272), + [anon_sym_constinit] = ACTIONS(3272), + [anon_sym_consteval] = ACTIONS(3272), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3272), + [anon_sym_decltype] = ACTIONS(3272), + [anon_sym_template] = ACTIONS(3272), + [anon_sym_operator] = ACTIONS(3272), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3272), + [anon_sym_MOZ_COLD] = ACTIONS(3272), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3272), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3272), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3272), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3272), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3272), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3272), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3272), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3272), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3272), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3272), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3272), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3272), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_RAII] = ACTIONS(3272), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3272), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3272), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3272), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3272), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3272), + }, + [STATE(1776)] = { + [sym_expression] = STATE(4705), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8094), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1777)] = { + [sym_expression] = STATE(4468), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_initializer_list] = STATE(4128), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1778)] = { + [sym_expression] = STATE(4913), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(9193), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(5877), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1779)] = { + [sym_expression] = STATE(4626), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_initializer_list] = STATE(4128), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1780)] = { + [sym_expression] = STATE(4601), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(4128), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1781)] = { + [sym_expression] = STATE(4800), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_initializer_list] = STATE(5199), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1782)] = { + [sym_expression] = STATE(4781), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(9222), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(5879), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1783)] = { + [sym_expression] = STATE(5090), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_initializer_list] = STATE(8888), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1784)] = { + [sym_expression] = STATE(4620), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_initializer_list] = STATE(7442), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1785)] = { + [sym_expression] = STATE(4806), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(9230), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(5881), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1786)] = { + [sym_expression] = STATE(4756), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_initializer_list] = STATE(5180), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1787)] = { + [sym_expression] = STATE(2837), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_initializer_list] = STATE(2893), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1788)] = { + [sym_expression] = STATE(4662), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(7719), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5885), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1789)] = { + [sym_expression] = STATE(4760), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(9182), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_RPAREN] = ACTIONS(5888), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1790)] = { + [sym_expression] = STATE(3421), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5890), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1791)] = { + [sym_expression] = STATE(3956), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5893), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1792)] = { + [sym_expression] = STATE(3956), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5896), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1793)] = { + [sym_expression] = STATE(3957), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5899), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1794)] = { + [sym_expression] = STATE(3958), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5902), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1795)] = { + [sym_expression] = STATE(3959), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5905), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1796)] = { + [sym_expression] = STATE(3960), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5908), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1797)] = { + [sym_expression] = STATE(3961), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5911), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1798)] = { + [sym_expression] = STATE(3962), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5914), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1799)] = { + [sym_expression] = STATE(3962), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5917), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1800)] = { + [sym_expression] = STATE(3963), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5920), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1801)] = { + [sym_expression] = STATE(3963), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5923), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1802)] = { + [sym_expression] = STATE(3963), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5926), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1803)] = { + [sym_expression] = STATE(3963), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5929), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1804)] = { + [sym_expression] = STATE(3964), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5932), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1805)] = { + [sym_expression] = STATE(3964), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5935), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1806)] = { + [sym_expression] = STATE(3957), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5938), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1807)] = { + [sym_expression] = STATE(3958), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5941), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1808)] = { + [sym_expression] = STATE(3959), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5944), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1809)] = { + [sym_expression] = STATE(3960), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5890), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1810)] = { + [sym_expression] = STATE(3961), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5947), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1811)] = { + [sym_expression] = STATE(3962), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5950), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1812)] = { + [sym_expression] = STATE(3418), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5899), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1813)] = { + [sym_expression] = STATE(3419), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5902), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1814)] = { + [sym_expression] = STATE(3420), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5905), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1815)] = { + [sym_expression] = STATE(3421), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5908), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1816)] = { + [sym_expression] = STATE(3422), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5911), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1817)] = { + [sym_expression] = STATE(3423), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5914), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1818)] = { + [sym_expression] = STATE(3956), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5953), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1819)] = { + [sym_expression] = STATE(3423), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5917), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1820)] = { + [sym_expression] = STATE(3425), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5920), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1821)] = { + [sym_expression] = STATE(3425), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5923), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1822)] = { + [sym_expression] = STATE(3425), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5926), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1823)] = { + [sym_expression] = STATE(3425), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5929), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1824)] = { + [sym_expression] = STATE(3426), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5932), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1825)] = { + [sym_expression] = STATE(3426), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5935), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1826)] = { + [sym_expression] = STATE(4042), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5956), + [anon_sym_LPAREN2] = ACTIONS(5958), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1827)] = { + [sym_expression] = STATE(3418), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5938), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1828)] = { + [sym_expression] = STATE(3419), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5941), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1829)] = { + [sym_expression] = STATE(3420), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5944), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1830)] = { + [sym_expression] = STATE(3422), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5947), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1831)] = { + [sym_expression] = STATE(3423), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5950), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1832)] = { + [sym_expression] = STATE(3450), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5960), + [anon_sym_LPAREN2] = ACTIONS(5962), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1833)] = { + [sym_expression] = STATE(5046), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5964), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1834)] = { + [sym_expression] = STATE(5047), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(5966), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1835)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(5968), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1836)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(5970), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1837)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(5972), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1838)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(5974), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1839)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(5976), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1840)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(5978), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1841)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(5980), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1842)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(5982), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1843)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(5984), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1844)] = { + [sym_expression] = STATE(4604), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym_SEMI] = ACTIONS(5986), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(5988), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1845)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(5990), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1846)] = { + [sym_expression] = STATE(3955), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5992), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1847)] = { + [sym_expression] = STATE(4604), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym_SEMI] = ACTIONS(5995), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(5988), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1848)] = { + [sym_expression] = STATE(2808), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5997), + [anon_sym_LPAREN2] = ACTIONS(5999), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1849)] = { + [sym_expression] = STATE(5024), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(6001), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1850)] = { + [sym_expression] = STATE(5051), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(6003), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1851)] = { + [sym_expression] = STATE(4662), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(7719), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1852)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(6005), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1853)] = { + [sym_expression] = STATE(5029), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_RPAREN] = ACTIONS(6007), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1854)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(6009), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1855)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(6011), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1856)] = { + [sym_expression] = STATE(4604), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym_SEMI] = ACTIONS(6013), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(5988), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1857)] = { + [sym_expression] = STATE(4828), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6015), + [anon_sym_LPAREN2] = ACTIONS(6017), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1858)] = { + [sym_expression] = STATE(4967), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(6019), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1859)] = { + [sym_expression] = STATE(4968), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(6021), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1860)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(6023), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1861)] = { + [sym_expression] = STATE(5072), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6025), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1862)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(6027), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1863)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(6029), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1864)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(6031), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1865)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(6033), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1866)] = { + [sym_expression] = STATE(3927), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6035), + [anon_sym_LPAREN2] = ACTIONS(6037), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1867)] = { + [sym_expression] = STATE(5043), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(6039), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1868)] = { + [sym_expression] = STATE(5044), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(6041), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1869)] = { + [sym_expression] = STATE(3604), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6043), + [anon_sym_LPAREN2] = ACTIONS(6045), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1870)] = { + [sym_expression] = STATE(5017), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1871)] = { + [sym_expression] = STATE(4042), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5956), + [anon_sym_LPAREN2] = ACTIONS(6049), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1872)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(6051), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1873)] = { + [sym_identifier] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_RPAREN] = ACTIONS(3293), + [anon_sym_LPAREN2] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_SEMI] = ACTIONS(3291), + [anon_sym___extension__] = ACTIONS(3289), + [anon_sym_virtual] = ACTIONS(3289), + [anon_sym_extern] = ACTIONS(3289), + [anon_sym___attribute__] = ACTIONS(3289), + [anon_sym___attribute] = ACTIONS(3289), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3293), + [anon_sym___declspec] = ACTIONS(3289), + [anon_sym___based] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_register] = ACTIONS(3289), + [anon_sym_inline] = ACTIONS(3289), + [anon_sym___inline] = ACTIONS(3289), + [anon_sym___inline__] = ACTIONS(3289), + [anon_sym___forceinline] = ACTIONS(3289), + [anon_sym_thread_local] = ACTIONS(3289), + [anon_sym___thread] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_constexpr] = ACTIONS(3289), + [anon_sym_volatile] = ACTIONS(3289), + [anon_sym_restrict] = ACTIONS(3289), + [anon_sym___restrict__] = ACTIONS(3289), + [anon_sym__Atomic] = ACTIONS(3289), + [anon_sym__Noreturn] = ACTIONS(3289), + [anon_sym_noreturn] = ACTIONS(3289), + [anon_sym__Nonnull] = ACTIONS(3289), + [anon_sym_mutable] = ACTIONS(3289), + [anon_sym_constinit] = ACTIONS(3289), + [anon_sym_consteval] = ACTIONS(3289), + [anon_sym_alignas] = ACTIONS(3289), + [anon_sym__Alignas] = ACTIONS(3289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3289), + [anon_sym_decltype] = ACTIONS(3289), + [anon_sym_template] = ACTIONS(3289), + [anon_sym_operator] = ACTIONS(3289), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3289), + [anon_sym_MOZ_COLD] = ACTIONS(3289), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3289), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3289), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3289), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3289), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3289), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3289), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3289), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3289), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3289), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3289), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3289), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3289), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_RAII] = ACTIONS(3289), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3289), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3289), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3289), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3289), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3289), + }, + [STATE(1874)] = { + [sym_expression] = STATE(4042), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5956), + [anon_sym_LPAREN2] = ACTIONS(6053), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1875)] = { + [sym_expression] = STATE(2808), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5997), + [anon_sym_LPAREN2] = ACTIONS(6055), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1876)] = { + [sym_expression] = STATE(2808), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5997), + [anon_sym_LPAREN2] = ACTIONS(6057), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1877)] = { + [sym_expression] = STATE(5025), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(6059), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1878)] = { + [sym_expression] = STATE(5074), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6061), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1879)] = { + [sym_expression] = STATE(4782), + [sym__string] = STATE(4532), + [sym_comma_expression] = STATE(7719), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1880)] = { + [sym_expression] = STATE(4964), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6063), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1881)] = { + [sym_expression] = STATE(4976), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6065), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1882)] = { + [sym_expression] = STATE(5059), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6067), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1883)] = { + [sym_expression] = STATE(5109), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6069), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1884)] = { + [sym_expression] = STATE(5072), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6071), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1885)] = { + [sym_expression] = STATE(4930), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6073), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1886)] = { + [sym_expression] = STATE(4941), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6075), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1887)] = { + [sym_expression] = STATE(4949), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6077), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1888)] = { + [sym_expression] = STATE(4897), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5956), + [anon_sym_LPAREN2] = ACTIONS(6079), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1889)] = { + [sym_expression] = STATE(3416), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6081), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1890)] = { + [sym_expression] = STATE(3416), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5992), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1891)] = { + [sym_expression] = STATE(3417), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5953), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1892)] = { + [sym_attribute_specifier] = STATE(1418), + [sym_field_declaration_list] = STATE(1579), + [sym_virtual_specifier] = STATE(7420), + [sym_base_class_clause] = STATE(8312), + [sym_identifier] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(4988), + [anon_sym___extension__] = ACTIONS(4986), + [anon_sym_virtual] = ACTIONS(4986), + [anon_sym_extern] = ACTIONS(4986), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4988), + [anon_sym___declspec] = ACTIONS(4986), + [anon_sym___based] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_static] = ACTIONS(4986), + [anon_sym_register] = ACTIONS(4986), + [anon_sym_inline] = ACTIONS(4986), + [anon_sym___inline] = ACTIONS(4986), + [anon_sym___inline__] = ACTIONS(4986), + [anon_sym___forceinline] = ACTIONS(4986), + [anon_sym_thread_local] = ACTIONS(4986), + [anon_sym___thread] = ACTIONS(4986), + [anon_sym_const] = ACTIONS(4986), + [anon_sym_constexpr] = ACTIONS(4986), + [anon_sym_volatile] = ACTIONS(4986), + [anon_sym_restrict] = ACTIONS(4986), + [anon_sym___restrict__] = ACTIONS(4986), + [anon_sym__Atomic] = ACTIONS(4986), + [anon_sym__Noreturn] = ACTIONS(4986), + [anon_sym_noreturn] = ACTIONS(4986), + [anon_sym__Nonnull] = ACTIONS(4986), + [anon_sym_mutable] = ACTIONS(4986), + [anon_sym_constinit] = ACTIONS(4986), + [anon_sym_consteval] = ACTIONS(4986), + [anon_sym_alignas] = ACTIONS(4986), + [anon_sym__Alignas] = ACTIONS(4986), + [anon_sym_COLON] = ACTIONS(5300), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4986), + [anon_sym_decltype] = ACTIONS(4986), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_operator] = ACTIONS(4986), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4986), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4986), + [anon_sym_MOZ_COLD] = ACTIONS(4986), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4986), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4986), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4986), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4986), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4986), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4986), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4986), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4986), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4986), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4986), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4986), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4986), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL] = ACTIONS(4986), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4986), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4986), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN] = ACTIONS(4986), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4986), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4986), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4986), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4986), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4986), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4986), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4986), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4986), + [anon_sym_MOZ_RAII] = ACTIONS(4986), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4986), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4986), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4986), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4986), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4986), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4986), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4986), + }, + [STATE(1893)] = { + [sym_expression] = STATE(3624), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5997), + [anon_sym_LPAREN2] = ACTIONS(6084), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1894)] = { + [sym_expression] = STATE(3417), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5893), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1895)] = { + [sym_expression] = STATE(3417), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5896), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1896)] = { + [sym_expression] = STATE(4042), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5956), + [anon_sym_LPAREN2] = ACTIONS(6086), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1897)] = { + [sym_expression] = STATE(3955), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6081), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1898)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(6088), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1899)] = { + [sym_expression] = STATE(4600), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1900)] = { + [sym_expression] = STATE(5133), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1901)] = { + [sym_expression] = STATE(3227), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1902)] = { + [sym_expression] = STATE(3302), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1903)] = { + [sym_expression] = STATE(4621), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1904)] = { + [sym_expression] = STATE(4063), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1905)] = { + [sym_expression] = STATE(4584), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1906)] = { + [sym_expression] = STATE(3329), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1907)] = { + [sym_expression] = STATE(4597), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1908)] = { + [sym_expression] = STATE(4622), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1909)] = { + [sym_expression] = STATE(4592), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1910)] = { + [sym_expression] = STATE(4596), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1911)] = { + [sym_expression] = STATE(4608), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1912)] = { + [sym_expression] = STATE(4609), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1913)] = { + [sym_expression] = STATE(5107), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1914)] = { + [sym_expression] = STATE(4927), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1915)] = { + [sym_expression] = STATE(3474), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1916)] = { + [sym_expression] = STATE(4807), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1917)] = { + [sym_expression] = STATE(4808), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1918)] = { + [sym_expression] = STATE(4971), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1919)] = { + [sym_expression] = STATE(5135), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1920)] = { + [sym_expression] = STATE(5092), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1921)] = { + [sym_expression] = STATE(4648), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1922)] = { + [sym_expression] = STATE(5036), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1923)] = { + [sym_expression] = STATE(4832), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(6090), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1924)] = { + [sym_expression] = STATE(4835), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1925)] = { + [sym_expression] = STATE(3920), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1926)] = { + [sym_expression] = STATE(4917), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(6092), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1927)] = { + [sym_expression] = STATE(3518), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1928)] = { + [sym_expression] = STATE(3518), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(6094), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1929)] = { + [sym_expression] = STATE(3449), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1930)] = { + [sym_expression] = STATE(3249), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1931)] = { + [sym_expression] = STATE(4604), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(5988), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1932)] = { + [sym_expression] = STATE(4028), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1933)] = { + [sym_expression] = STATE(3580), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1934)] = { + [sym_expression] = STATE(3622), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1935)] = { + [sym_expression] = STATE(4603), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1936)] = { + [sym_expression] = STATE(4624), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(6096), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1937)] = { + [sym_expression] = STATE(5072), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1938)] = { + [sym_expression] = STATE(3955), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1939)] = { + [sym_expression] = STATE(3956), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1940)] = { + [sym_expression] = STATE(3957), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1941)] = { + [sym_expression] = STATE(3958), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1942)] = { + [sym_expression] = STATE(3959), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1943)] = { + [sym_expression] = STATE(3960), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1944)] = { + [sym_expression] = STATE(3961), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1945)] = { + [sym_expression] = STATE(3962), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1946)] = { + [sym_expression] = STATE(3963), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1947)] = { + [sym_expression] = STATE(3964), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1948)] = { + [sym_expression] = STATE(4629), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1949)] = { + [sym_expression] = STATE(4063), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1950)] = { + [sym_expression] = STATE(4630), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1951)] = { + [sym_expression] = STATE(4631), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1952)] = { + [sym_expression] = STATE(4632), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1953)] = { + [sym_expression] = STATE(4633), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1954)] = { + [sym_expression] = STATE(4580), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1955)] = { + [sym_expression] = STATE(4635), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1956)] = { + [sym_expression] = STATE(4636), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1957)] = { + [sym_expression] = STATE(4637), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1958)] = { + [sym_expression] = STATE(4749), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1959)] = { + [sym_expression] = STATE(4638), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1960)] = { + [sym_expression] = STATE(4645), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1961)] = { + [sym_expression] = STATE(3570), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1962)] = { + [sym_expression] = STATE(4844), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1963)] = { + [sym_expression] = STATE(4602), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1964)] = { + [sym_expression] = STATE(4465), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1965)] = { + [sym_expression] = STATE(4639), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1966)] = { + [sym_expression] = STATE(4816), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1967)] = { + [sym_expression] = STATE(4856), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1968)] = { + [sym_expression] = STATE(4860), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1969)] = { + [sym_expression] = STATE(4878), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1970)] = { + [sym_expression] = STATE(4885), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1971)] = { + [sym_expression] = STATE(4886), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1972)] = { + [sym_expression] = STATE(4887), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1973)] = { + [sym_expression] = STATE(4891), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1974)] = { + [sym_expression] = STATE(4911), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1975)] = { + [sym_expression] = STATE(4916), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1976)] = { + [sym_expression] = STATE(4918), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1977)] = { + [sym_expression] = STATE(4793), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1978)] = { + [sym_expression] = STATE(3393), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(6098), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1979)] = { + [sym_expression] = STATE(2822), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1980)] = { + [sym_expression] = STATE(3157), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(6100), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1981)] = { + [sym_expression] = STATE(3182), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1982)] = { + [sym_expression] = STATE(4642), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1983)] = { + [sym_expression] = STATE(3167), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1984)] = { + [sym_expression] = STATE(3169), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1985)] = { + [sym_expression] = STATE(2802), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1986)] = { + [sym_expression] = STATE(2802), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(6102), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1987)] = { + [sym_expression] = STATE(2807), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1988)] = { + [sym_expression] = STATE(4494), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(6104), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1989)] = { + [sym_expression] = STATE(4028), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1990)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1991)] = { + [sym_expression] = STATE(4482), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1992)] = { + [sym_expression] = STATE(4496), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(6106), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1993)] = { + [sym_expression] = STATE(4925), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1994)] = { + [sym_expression] = STATE(3496), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(1995)] = { + [sym_expression] = STATE(4910), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(1996)] = { + [sym_expression] = STATE(5112), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1997)] = { + [sym_expression] = STATE(5006), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1998)] = { + [sym_expression] = STATE(4735), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(1999)] = { + [sym_expression] = STATE(5128), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2000)] = { + [sym_expression] = STATE(4755), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2001)] = { + [sym_expression] = STATE(5055), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2002)] = { + [sym_expression] = STATE(4437), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2003)] = { + [sym_expression] = STATE(4063), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2004)] = { + [sym_expression] = STATE(4451), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2005)] = { + [sym_expression] = STATE(4459), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2006)] = { + [sym_expression] = STATE(4475), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2007)] = { + [sym_expression] = STATE(4444), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2008)] = { + [sym_expression] = STATE(4454), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2009)] = { + [sym_expression] = STATE(4470), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2010)] = { + [sym_expression] = STATE(4478), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2011)] = { + [sym_expression] = STATE(4487), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2012)] = { + [sym_expression] = STATE(4438), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2013)] = { + [sym_expression] = STATE(4486), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2014)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2015)] = { + [sym_expression] = STATE(4436), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2016)] = { + [sym_expression] = STATE(3660), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(2017)] = { + [sym_expression] = STATE(3538), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(2018)] = { + [sym_expression] = STATE(3544), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(2019)] = { + [sym_expression] = STATE(3553), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(2020)] = { + [sym_expression] = STATE(3561), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(2021)] = { + [sym_expression] = STATE(3562), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(2022)] = { + [sym_expression] = STATE(3565), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(2023)] = { + [sym_expression] = STATE(3569), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(2024)] = { + [sym_expression] = STATE(3572), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(2025)] = { + [sym_expression] = STATE(3581), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(2026)] = { + [sym_expression] = STATE(3585), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(2027)] = { + [sym_expression] = STATE(3174), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(6108), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2028)] = { + [sym_expression] = STATE(2822), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2029)] = { + [sym_expression] = STATE(4815), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(2030)] = { + [sym_expression] = STATE(4827), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(2031)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2032)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2033)] = { + [sym_expression] = STATE(4926), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2034)] = { + [sym_expression] = STATE(4763), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2035)] = { + [sym_expression] = STATE(4765), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2036)] = { + [sym_expression] = STATE(4587), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2037)] = { + [sym_expression] = STATE(4881), + [sym__string] = STATE(5021), + [sym_conditional_expression] = STATE(5200), + [sym_assignment_expression] = STATE(5200), + [sym_pointer_expression] = STATE(3918), + [sym_unary_expression] = STATE(5200), + [sym_binary_expression] = STATE(5200), + [sym_update_expression] = STATE(5200), + [sym_cast_expression] = STATE(5200), + [sym_sizeof_expression] = STATE(5200), + [sym_alignof_expression] = STATE(5200), + [sym_offsetof_expression] = STATE(5200), + [sym_generic_expression] = STATE(5200), + [sym_subscript_expression] = STATE(3918), + [sym_call_expression] = STATE(3918), + [sym_gnu_asm_expression] = STATE(5200), + [sym_extension_expression] = STATE(5200), + [sym_field_expression] = STATE(3918), + [sym_compound_literal_expression] = STATE(5200), + [sym_parenthesized_expression] = STATE(3918), + [sym_char_literal] = STATE(5021), + [sym_concatenated_string] = STATE(5021), + [sym_string_literal] = STATE(4021), + [sym_null] = STATE(5200), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8367), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(5200), + [sym_raw_string_literal] = STATE(4021), + [sym_co_await_expression] = STATE(5200), + [sym_new_expression] = STATE(5200), + [sym_delete_expression] = STATE(5200), + [sym_requires_clause] = STATE(5200), + [sym_requires_expression] = STATE(5200), + [sym_lambda_expression] = STATE(5200), + [sym_lambda_capture_specifier] = STATE(6217), + [sym_fold_expression] = STATE(5200), + [sym_parameter_pack_expansion] = STATE(5200), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(3918), + [sym_qualified_type_identifier] = STATE(8367), + [sym_user_defined_literal] = STATE(3918), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3927), + [anon_sym_TILDE] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_compl] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3949), + [anon_sym_sizeof] = ACTIONS(3951), + [anon_sym___alignof__] = ACTIONS(3953), + [anon_sym___alignof] = ACTIONS(3953), + [anon_sym__alignof] = ACTIONS(3953), + [anon_sym_alignof] = ACTIONS(3953), + [anon_sym__Alignof] = ACTIONS(3953), + [anon_sym_offsetof] = ACTIONS(3955), + [anon_sym__Generic] = ACTIONS(3957), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3963), + [anon_sym_u_SQUOTE] = ACTIONS(3963), + [anon_sym_U_SQUOTE] = ACTIONS(3963), + [anon_sym_u8_SQUOTE] = ACTIONS(3963), + [anon_sym_SQUOTE] = ACTIONS(3963), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3979), + [anon_sym_R_DQUOTE] = ACTIONS(3981), + [anon_sym_LR_DQUOTE] = ACTIONS(3981), + [anon_sym_uR_DQUOTE] = ACTIONS(3981), + [anon_sym_UR_DQUOTE] = ACTIONS(3981), + [anon_sym_u8R_DQUOTE] = ACTIONS(3981), + [anon_sym_co_await] = ACTIONS(3983), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3987), + [sym_this] = ACTIONS(3967), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(2038)] = { + [sym_expression] = STATE(5103), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2039)] = { + [sym_expression] = STATE(4035), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(6110), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2040)] = { + [sym_expression] = STATE(3391), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2041)] = { + [sym_expression] = STATE(3398), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2042)] = { + [sym_expression] = STATE(2834), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2043)] = { + [sym_expression] = STATE(3334), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2044)] = { + [sym_expression] = STATE(3348), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2045)] = { + [sym_expression] = STATE(3377), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2046)] = { + [sym_expression] = STATE(3396), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2047)] = { + [sym_expression] = STATE(3315), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2048)] = { + [sym_expression] = STATE(3322), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2049)] = { + [sym_expression] = STATE(3323), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2050)] = { + [sym_expression] = STATE(3400), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2051)] = { + [sym_expression] = STATE(3919), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2052)] = { + [sym_expression] = STATE(3926), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2053)] = { + [sym_expression] = STATE(4946), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2054)] = { + [sym_expression] = STATE(4858), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2055)] = { + [sym_expression] = STATE(4951), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2056)] = { + [sym_expression] = STATE(3452), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(6112), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2057)] = { + [sym_expression] = STATE(3453), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2058)] = { + [sym_expression] = STATE(4607), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(6114), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2059)] = { + [sym_expression] = STATE(3128), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2060)] = { + [sym_expression] = STATE(3180), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2061)] = { + [sym_expression] = STATE(2834), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2062)] = { + [sym_expression] = STATE(3159), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2063)] = { + [sym_expression] = STATE(3160), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2064)] = { + [sym_expression] = STATE(3161), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2065)] = { + [sym_expression] = STATE(3162), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2066)] = { + [sym_expression] = STATE(3163), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2067)] = { + [sym_expression] = STATE(5134), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2068)] = { + [sym_expression] = STATE(3165), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2069)] = { + [sym_expression] = STATE(3181), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2070)] = { + [sym_expression] = STATE(3659), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(2071)] = { + [sym_expression] = STATE(3531), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(2072)] = { + [sym_expression] = STATE(3454), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2073)] = { + [sym_expression] = STATE(3297), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2074)] = { + [sym_expression] = STATE(4846), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2075)] = { + [sym_expression] = STATE(3929), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(6116), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2076)] = { + [sym_expression] = STATE(3930), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2077)] = { + [sym_expression] = STATE(4605), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(6118), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2078)] = { + [sym_expression] = STATE(3938), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(6120), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2079)] = { + [sym_expression] = STATE(3514), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(6122), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2080)] = { + [sym_expression] = STATE(4035), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2081)] = { + [sym_expression] = STATE(4087), + [sym__string] = STATE(4721), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3611), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3611), + [sym_call_expression] = STATE(3611), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3611), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3611), + [sym_char_literal] = STATE(4721), + [sym_concatenated_string] = STATE(4721), + [sym_string_literal] = STATE(3720), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3720), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3611), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3611), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(5690), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(4191), + [anon_sym_COLON_COLON] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4187), + [anon_sym_compl] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(5696), + [anon_sym_PLUS_PLUS] = ACTIONS(5696), + [anon_sym_sizeof] = ACTIONS(4195), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4197), + [anon_sym_L_SQUOTE] = ACTIONS(4199), + [anon_sym_u_SQUOTE] = ACTIONS(4199), + [anon_sym_U_SQUOTE] = ACTIONS(4199), + [anon_sym_u8_SQUOTE] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4199), + [anon_sym_L_DQUOTE] = ACTIONS(4201), + [anon_sym_u_DQUOTE] = ACTIONS(4201), + [anon_sym_U_DQUOTE] = ACTIONS(4201), + [anon_sym_u8_DQUOTE] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4203), + [anon_sym_R_DQUOTE] = ACTIONS(4205), + [anon_sym_LR_DQUOTE] = ACTIONS(4205), + [anon_sym_uR_DQUOTE] = ACTIONS(4205), + [anon_sym_UR_DQUOTE] = ACTIONS(4205), + [anon_sym_u8R_DQUOTE] = ACTIONS(4205), + [anon_sym_co_await] = ACTIONS(4207), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2082)] = { + [sym_expression] = STATE(4822), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2083)] = { + [sym_expression] = STATE(3328), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(6124), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2084)] = { + [sym_expression] = STATE(3245), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(6126), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2085)] = { + [sym_expression] = STATE(2822), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2086)] = { + [sym_expression] = STATE(3965), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2087)] = { + [sym_expression] = STATE(4035), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2088)] = { + [sym_expression] = STATE(4087), + [sym__string] = STATE(4504), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3259), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3259), + [sym_call_expression] = STATE(3259), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3259), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3259), + [sym_char_literal] = STATE(4504), + [sym_concatenated_string] = STATE(4504), + [sym_string_literal] = STATE(3379), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3379), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3259), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3259), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(5771), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_PLUS] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(4061), + [anon_sym_COLON_COLON] = ACTIONS(4063), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4057), + [anon_sym_compl] = ACTIONS(4057), + [anon_sym_DASH_DASH] = ACTIONS(5773), + [anon_sym_PLUS_PLUS] = ACTIONS(5773), + [anon_sym_sizeof] = ACTIONS(4067), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(4069), + [anon_sym_L_SQUOTE] = ACTIONS(4071), + [anon_sym_u_SQUOTE] = ACTIONS(4071), + [anon_sym_U_SQUOTE] = ACTIONS(4071), + [anon_sym_u8_SQUOTE] = ACTIONS(4071), + [anon_sym_SQUOTE] = ACTIONS(4071), + [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(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4073), + [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(4075), + [anon_sym_new] = ACTIONS(4077), + [anon_sym_requires] = ACTIONS(4079), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2089)] = { + [sym_expression] = STATE(3457), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2090)] = { + [sym_expression] = STATE(2802), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2091)] = { + [sym_expression] = STATE(2807), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2092)] = { + [sym_expression] = STATE(3216), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(6128), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2093)] = { + [sym_expression] = STATE(2802), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2094)] = { + [sym_expression] = STATE(2807), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2095)] = { + [sym_expression] = STATE(4748), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2096)] = { + [sym_expression] = STATE(5028), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2097)] = { + [sym_expression] = STATE(2824), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(6130), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2098)] = { + [sym_expression] = STATE(3988), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2099)] = { + [sym_expression] = STATE(5039), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2100)] = { + [sym_expression] = STATE(5048), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2101)] = { + [sym_expression] = STATE(4837), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2102)] = { + [sym_expression] = STATE(4764), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(6132), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2103)] = { + [sym_expression] = STATE(4028), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2104)] = { + [sym_expression] = STATE(3416), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2105)] = { + [sym_expression] = STATE(3417), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2106)] = { + [sym_expression] = STATE(3418), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2107)] = { + [sym_expression] = STATE(4770), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2108)] = { + [sym_expression] = STATE(4840), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2109)] = { + [sym_expression] = STATE(4771), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2110)] = { + [sym_expression] = STATE(4772), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2111)] = { + [sym_expression] = STATE(4773), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2112)] = { + [sym_expression] = STATE(4774), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2113)] = { + [sym_expression] = STATE(4775), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2114)] = { + [sym_expression] = STATE(4776), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2115)] = { + [sym_expression] = STATE(4777), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2116)] = { + [sym_expression] = STATE(4778), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2117)] = { + [sym_expression] = STATE(3419), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2118)] = { + [sym_expression] = STATE(4780), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2119)] = { + [sym_expression] = STATE(5099), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2120)] = { + [sym_expression] = STATE(3420), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2121)] = { + [sym_expression] = STATE(3421), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2122)] = { + [sym_expression] = STATE(3422), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2123)] = { + [sym_expression] = STATE(3423), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2124)] = { + [sym_expression] = STATE(5116), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2125)] = { + [sym_expression] = STATE(5117), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2126)] = { + [sym_expression] = STATE(4787), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2127)] = { + [sym_expression] = STATE(5126), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2128)] = { + [sym_expression] = STATE(3425), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2129)] = { + [sym_expression] = STATE(3426), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2130)] = { + [sym_expression] = STATE(3230), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2131)] = { + [sym_expression] = STATE(4791), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2132)] = { + [sym_expression] = STATE(4714), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2133)] = { + [sym__declaration_modifiers] = STATE(2248), + [sym_attribute_specifier] = STATE(2248), + [sym_attribute_declaration] = STATE(2248), + [sym_ms_declspec_modifier] = STATE(2248), + [sym_storage_class_specifier] = STATE(2248), + [sym_type_qualifier] = STATE(2248), + [sym_alignas_qualifier] = STATE(955), + [sym_decltype_auto] = STATE(1422), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(2248), + [anon_sym_LPAREN2] = ACTIONS(4714), + [anon_sym_STAR] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4712), + [anon_sym___extension__] = ACTIONS(6134), + [anon_sym_virtual] = ACTIONS(6136), + [anon_sym_extern] = ACTIONS(6138), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(47), + [anon_sym___declspec] = ACTIONS(6140), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_static] = ACTIONS(6138), + [anon_sym_register] = ACTIONS(6138), + [anon_sym_inline] = ACTIONS(6138), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(6138), + [anon_sym___forceinline] = ACTIONS(6138), + [anon_sym_thread_local] = ACTIONS(6138), + [anon_sym___thread] = ACTIONS(6138), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(6134), + [anon_sym_volatile] = ACTIONS(6134), + [anon_sym_restrict] = ACTIONS(6134), + [anon_sym___restrict__] = ACTIONS(6134), + [anon_sym__Atomic] = ACTIONS(6134), + [anon_sym__Noreturn] = ACTIONS(6134), + [anon_sym_noreturn] = ACTIONS(6134), + [anon_sym__Nonnull] = ACTIONS(6134), + [anon_sym_mutable] = ACTIONS(6134), + [anon_sym_constinit] = ACTIONS(6134), + [anon_sym_consteval] = ACTIONS(6134), + [anon_sym_alignas] = ACTIONS(6142), + [anon_sym__Alignas] = ACTIONS(6142), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6144), + [anon_sym_decltype] = ACTIONS(6146), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(6148), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(6148), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(6148), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(6148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(6148), + [anon_sym_MOZ_COLD] = ACTIONS(6148), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(6148), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(6148), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(6148), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(6148), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(6148), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(6148), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(6148), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(6148), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(6148), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(6148), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(6148), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(6148), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(6148), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(6148), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(6148), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(6148), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(6148), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(6148), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(6148), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(6148), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(6148), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(6148), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(6148), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6148), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(6148), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6148), + [anon_sym_MOZ_RAII] = ACTIONS(6148), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(6148), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(6148), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(6148), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(6148), + [anon_sym_JS_PUBLIC_API] = ACTIONS(6148), + }, + [STATE(2134)] = { + [sym_expression] = STATE(4965), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2135)] = { + [sym_expression] = STATE(5052), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2136)] = { + [sym_expression] = STATE(4995), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2137)] = { + [sym_expression] = STATE(5038), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2138)] = { + [sym_expression] = STATE(5040), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2139)] = { + [sym_expression] = STATE(5058), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2140)] = { + [sym_expression] = STATE(5085), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2141)] = { + [sym_expression] = STATE(4718), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2142)] = { + [sym_expression] = STATE(5018), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2143)] = { + [sym_expression] = STATE(4035), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2144)] = { + [sym_expression] = STATE(4961), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2145)] = { + [sym_expression] = STATE(4969), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2146)] = { + [sym_expression] = STATE(4985), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2147)] = { + [sym_expression] = STATE(4006), + [sym__string] = STATE(4098), + [sym_conditional_expression] = STATE(4217), + [sym_assignment_expression] = STATE(4217), + [sym_pointer_expression] = STATE(3747), + [sym_unary_expression] = STATE(4217), + [sym_binary_expression] = STATE(4217), + [sym_update_expression] = STATE(4217), + [sym_cast_expression] = STATE(4217), + [sym_sizeof_expression] = STATE(4217), + [sym_alignof_expression] = STATE(4217), + [sym_offsetof_expression] = STATE(4217), + [sym_generic_expression] = STATE(4217), + [sym_subscript_expression] = STATE(3747), + [sym_call_expression] = STATE(3747), + [sym_gnu_asm_expression] = STATE(4217), + [sym_extension_expression] = STATE(4217), + [sym_field_expression] = STATE(3747), + [sym_compound_literal_expression] = STATE(4217), + [sym_parenthesized_expression] = STATE(3747), + [sym_char_literal] = STATE(4098), + [sym_concatenated_string] = STATE(4098), + [sym_string_literal] = STATE(2949), + [sym_null] = STATE(4217), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8201), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4217), + [sym_raw_string_literal] = STATE(2949), + [sym_co_await_expression] = STATE(4217), + [sym_new_expression] = STATE(4217), + [sym_delete_expression] = STATE(4217), + [sym_requires_clause] = STATE(4217), + [sym_requires_expression] = STATE(4217), + [sym_lambda_expression] = STATE(4217), + [sym_lambda_capture_specifier] = STATE(6295), + [sym_fold_expression] = STATE(4217), + [sym_parameter_pack_expansion] = STATE(4217), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3747), + [sym_qualified_type_identifier] = STATE(8201), + [sym_user_defined_literal] = STATE(3747), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3915), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_compl] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1827), + [anon_sym___alignof__] = ACTIONS(1829), + [anon_sym___alignof] = ACTIONS(1829), + [anon_sym__alignof] = ACTIONS(1829), + [anon_sym_alignof] = ACTIONS(1829), + [anon_sym__Alignof] = ACTIONS(1829), + [anon_sym_offsetof] = ACTIONS(1831), + [anon_sym__Generic] = ACTIONS(1833), + [anon_sym_asm] = ACTIONS(1835), + [anon_sym___asm__] = ACTIONS(1835), + [anon_sym___asm] = ACTIONS(1835), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(1839), + [anon_sym_u_SQUOTE] = ACTIONS(1839), + [anon_sym_U_SQUOTE] = ACTIONS(1839), + [anon_sym_u8_SQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_L_DQUOTE] = ACTIONS(1841), + [anon_sym_u_DQUOTE] = ACTIONS(1841), + [anon_sym_U_DQUOTE] = ACTIONS(1841), + [anon_sym_u8_DQUOTE] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1845), + [anon_sym_nullptr] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(1849), + [anon_sym_R_DQUOTE] = ACTIONS(1851), + [anon_sym_LR_DQUOTE] = ACTIONS(1851), + [anon_sym_uR_DQUOTE] = ACTIONS(1851), + [anon_sym_UR_DQUOTE] = ACTIONS(1851), + [anon_sym_u8R_DQUOTE] = ACTIONS(1851), + [anon_sym_co_await] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_requires] = ACTIONS(1857), + [sym_this] = ACTIONS(1843), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2148)] = { + [sym_expression] = STATE(4987), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2149)] = { + [sym_expression] = STATE(4988), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2150)] = { + [sym_expression] = STATE(4991), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2151)] = { + [sym_expression] = STATE(4809), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2152)] = { + [sym_expression] = STATE(4650), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2153)] = { + [sym_expression] = STATE(5033), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2154)] = { + [sym_expression] = STATE(5045), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2155)] = { + [sym_expression] = STATE(5065), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2156)] = { + [sym_expression] = STATE(5066), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2157)] = { + [sym_expression] = STATE(5067), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2158)] = { + [sym_expression] = STATE(5070), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2159)] = { + [sym_expression] = STATE(4660), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2160)] = { + [sym_expression] = STATE(5114), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2161)] = { + [sym_expression] = STATE(3217), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2162)] = { + [sym_expression] = STATE(5118), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2163)] = { + [sym_expression] = STATE(5119), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2164)] = { + [sym_expression] = STATE(5120), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2165)] = { + [sym_expression] = STATE(2834), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2166)] = { + [sym_expression] = STATE(4668), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2167)] = { + [sym_expression] = STATE(3218), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2168)] = { + [sym_expression] = STATE(4932), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2169)] = { + [sym_expression] = STATE(3219), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2170)] = { + [sym_expression] = STATE(4934), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2171)] = { + [sym_expression] = STATE(4935), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2172)] = { + [sym_expression] = STATE(3220), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2173)] = { + [sym_expression] = STATE(3221), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2174)] = { + [sym_expression] = STATE(3401), + [sym__string] = STATE(3470), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3470), + [sym_concatenated_string] = STATE(3470), + [sym_string_literal] = STATE(2722), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2722), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3405), + [anon_sym_LPAREN2] = ACTIONS(5883), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AMP] = ACTIONS(5692), + [anon_sym___extension__] = ACTIONS(3411), + [anon_sym_COLON_COLON] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_compl] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(5775), + [anon_sym_PLUS_PLUS] = ACTIONS(5775), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3419), + [anon_sym_u_SQUOTE] = ACTIONS(3419), + [anon_sym_U_SQUOTE] = ACTIONS(3419), + [anon_sym_u8_SQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_R_DQUOTE] = ACTIONS(3425), + [anon_sym_LR_DQUOTE] = ACTIONS(3425), + [anon_sym_uR_DQUOTE] = ACTIONS(3425), + [anon_sym_UR_DQUOTE] = ACTIONS(3425), + [anon_sym_u8R_DQUOTE] = ACTIONS(3425), + [anon_sym_co_await] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2175)] = { + [sym_expression] = STATE(3222), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2176)] = { + [sym_expression] = STATE(3223), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2177)] = { + [sym_expression] = STATE(4894), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2178)] = { + [sym_expression] = STATE(4896), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2179)] = { + [sym_expression] = STATE(4839), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(6150), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2180)] = { + [sym_expression] = STATE(4899), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3951), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(5827), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_compl] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_sizeof] = ACTIONS(4291), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4295), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2181)] = { + [sym_expression] = STATE(3228), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2182)] = { + [sym_expression] = STATE(3229), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5704), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3369), + [anon_sym_compl] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(4041), + [anon_sym_PLUS_PLUS] = ACTIONS(4041), + [anon_sym_sizeof] = ACTIONS(3377), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2183)] = { + [sym_expression] = STATE(3428), + [sym__string] = STATE(3576), + [sym_conditional_expression] = STATE(3803), + [sym_assignment_expression] = STATE(3803), + [sym_pointer_expression] = STATE(3794), + [sym_unary_expression] = STATE(3803), + [sym_binary_expression] = STATE(3803), + [sym_update_expression] = STATE(3803), + [sym_cast_expression] = STATE(3803), + [sym_sizeof_expression] = STATE(3803), + [sym_alignof_expression] = STATE(3803), + [sym_offsetof_expression] = STATE(3803), + [sym_generic_expression] = STATE(3803), + [sym_subscript_expression] = STATE(3794), + [sym_call_expression] = STATE(3794), + [sym_gnu_asm_expression] = STATE(3803), + [sym_extension_expression] = STATE(3803), + [sym_field_expression] = STATE(3794), + [sym_compound_literal_expression] = STATE(3803), + [sym_parenthesized_expression] = STATE(3794), + [sym_char_literal] = STATE(3576), + [sym_concatenated_string] = STATE(3576), + [sym_string_literal] = STATE(2771), + [sym_null] = STATE(3803), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8316), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(3803), + [sym_raw_string_literal] = STATE(2771), + [sym_co_await_expression] = STATE(3803), + [sym_new_expression] = STATE(3803), + [sym_delete_expression] = STATE(3803), + [sym_requires_clause] = STATE(3803), + [sym_requires_expression] = STATE(3803), + [sym_lambda_expression] = STATE(3803), + [sym_lambda_capture_specifier] = STATE(6240), + [sym_fold_expression] = STATE(3803), + [sym_parameter_pack_expansion] = STATE(3803), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5986), + [sym_qualified_identifier] = STATE(3794), + [sym_qualified_type_identifier] = STATE(8316), + [sym_user_defined_literal] = STATE(3794), + [sym__call_macro_with_decl_first_arg] = STATE(3813), + [sym_identifier] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym___extension__] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3173), + [anon_sym___alignof] = ACTIONS(3173), + [anon_sym__alignof] = ACTIONS(3173), + [anon_sym_alignof] = ACTIONS(3173), + [anon_sym__Alignof] = ACTIONS(3173), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [anon_sym___asm] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [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(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(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3187), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_FORWARD] = ACTIONS(1859), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1859), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_PS_GET] = ACTIONS(1859), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1859), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1859), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1859), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1859), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1859), + }, + [STATE(2184)] = { + [sym_expression] = STATE(4087), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2185)] = { + [sym_expression] = STATE(4767), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2186)] = { + [sym__declaration_modifiers] = STATE(2250), + [sym_attribute_specifier] = STATE(2250), + [sym_attribute_declaration] = STATE(2250), + [sym_ms_declspec_modifier] = STATE(2250), + [sym_storage_class_specifier] = STATE(2250), + [sym_type_qualifier] = STATE(2250), + [sym_alignas_qualifier] = STATE(955), + [sym_decltype_auto] = STATE(1422), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(2250), + [anon_sym_LPAREN2] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4704), + [anon_sym_AMP_AMP] = ACTIONS(4704), + [anon_sym_AMP] = ACTIONS(4702), + [anon_sym___extension__] = ACTIONS(6134), + [anon_sym_virtual] = ACTIONS(6152), + [anon_sym_extern] = ACTIONS(6138), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(47), + [anon_sym___declspec] = ACTIONS(6140), + [anon_sym_LBRACK] = ACTIONS(4702), + [anon_sym_static] = ACTIONS(6138), + [anon_sym_register] = ACTIONS(6138), + [anon_sym_inline] = ACTIONS(6138), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(6138), + [anon_sym___forceinline] = ACTIONS(6138), + [anon_sym_thread_local] = ACTIONS(6138), + [anon_sym___thread] = ACTIONS(6138), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(6134), + [anon_sym_volatile] = ACTIONS(6134), + [anon_sym_restrict] = ACTIONS(6134), + [anon_sym___restrict__] = ACTIONS(6134), + [anon_sym__Atomic] = ACTIONS(6134), + [anon_sym__Noreturn] = ACTIONS(6134), + [anon_sym_noreturn] = ACTIONS(6134), + [anon_sym__Nonnull] = ACTIONS(6134), + [anon_sym_mutable] = ACTIONS(6134), + [anon_sym_constinit] = ACTIONS(6134), + [anon_sym_consteval] = ACTIONS(6134), + [anon_sym_alignas] = ACTIONS(6142), + [anon_sym__Alignas] = ACTIONS(6142), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6144), + [anon_sym_decltype] = ACTIONS(6146), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(6148), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(6148), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(6148), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(6148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(6148), + [anon_sym_MOZ_COLD] = ACTIONS(6148), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(6148), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(6148), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(6148), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(6148), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(6148), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(6148), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(6148), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(6148), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(6148), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(6148), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(6148), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(6148), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(6148), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(6148), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(6148), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(6148), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(6148), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(6148), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(6148), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(6148), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(6148), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(6148), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(6148), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6148), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(6148), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6148), + [anon_sym_MOZ_RAII] = ACTIONS(6148), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(6148), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(6148), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(6148), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(6148), + [anon_sym_JS_PUBLIC_API] = ACTIONS(6148), + }, + [STATE(2187)] = { + [sym_expression] = STATE(3595), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(6154), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(2188)] = { + [sym_expression] = STATE(3608), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(2189)] = { + [sym_expression] = STATE(3620), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2190)] = { + [sym_expression] = STATE(3623), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2191)] = { + [sym_expression] = STATE(4063), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2192)] = { + [sym_expression] = STATE(3529), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(6156), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(2193)] = { + [sym_expression] = STATE(4804), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2194)] = { + [sym_expression] = STATE(4813), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2195)] = { + [sym_expression] = STATE(4820), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2196)] = { + [sym_expression] = STATE(4824), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2197)] = { + [sym_expression] = STATE(4829), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2198)] = { + [sym_expression] = STATE(3651), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2199)] = { + [sym_expression] = STATE(3590), + [sym__string] = STATE(3867), + [sym_conditional_expression] = STATE(4014), + [sym_assignment_expression] = STATE(4014), + [sym_pointer_expression] = STATE(4016), + [sym_unary_expression] = STATE(4014), + [sym_binary_expression] = STATE(4014), + [sym_update_expression] = STATE(4014), + [sym_cast_expression] = STATE(4014), + [sym_sizeof_expression] = STATE(4014), + [sym_alignof_expression] = STATE(4014), + [sym_offsetof_expression] = STATE(4014), + [sym_generic_expression] = STATE(4014), + [sym_subscript_expression] = STATE(4016), + [sym_call_expression] = STATE(4016), + [sym_gnu_asm_expression] = STATE(4014), + [sym_extension_expression] = STATE(4014), + [sym_field_expression] = STATE(4016), + [sym_compound_literal_expression] = STATE(4014), + [sym_parenthesized_expression] = STATE(4016), + [sym_char_literal] = STATE(3867), + [sym_concatenated_string] = STATE(3867), + [sym_string_literal] = STATE(2796), + [sym_null] = STATE(4014), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(7953), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4014), + [sym_raw_string_literal] = STATE(2796), + [sym_co_await_expression] = STATE(4014), + [sym_new_expression] = STATE(4014), + [sym_delete_expression] = STATE(4014), + [sym_requires_clause] = STATE(4014), + [sym_requires_expression] = STATE(4014), + [sym_lambda_expression] = STATE(4014), + [sym_lambda_capture_specifier] = STATE(6221), + [sym_fold_expression] = STATE(4014), + [sym_parameter_pack_expansion] = STATE(4014), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6029), + [sym_qualified_identifier] = STATE(4016), + [sym_qualified_type_identifier] = STATE(7953), + [sym_user_defined_literal] = STATE(4016), + [sym__call_macro_with_decl_first_arg] = STATE(3987), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(5835), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym___extension__] = ACTIONS(3875), + [anon_sym_COLON_COLON] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3871), + [anon_sym_compl] = ACTIONS(3871), + [anon_sym_DASH_DASH] = ACTIONS(5783), + [anon_sym_PLUS_PLUS] = ACTIONS(5783), + [anon_sym_sizeof] = ACTIONS(3883), + [anon_sym___alignof__] = ACTIONS(3885), + [anon_sym___alignof] = ACTIONS(3885), + [anon_sym__alignof] = ACTIONS(3885), + [anon_sym_alignof] = ACTIONS(3885), + [anon_sym__Alignof] = ACTIONS(3885), + [anon_sym_offsetof] = ACTIONS(3887), + [anon_sym__Generic] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3891), + [anon_sym___asm__] = ACTIONS(3891), + [anon_sym___asm] = ACTIONS(3891), + [sym_number_literal] = ACTIONS(3893), + [anon_sym_L_SQUOTE] = ACTIONS(3895), + [anon_sym_u_SQUOTE] = ACTIONS(3895), + [anon_sym_U_SQUOTE] = ACTIONS(3895), + [anon_sym_u8_SQUOTE] = ACTIONS(3895), + [anon_sym_SQUOTE] = ACTIONS(3895), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_true] = ACTIONS(3899), + [sym_false] = ACTIONS(3899), + [anon_sym_NULL] = ACTIONS(3901), + [anon_sym_nullptr] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_R_DQUOTE] = ACTIONS(3905), + [anon_sym_LR_DQUOTE] = ACTIONS(3905), + [anon_sym_uR_DQUOTE] = ACTIONS(3905), + [anon_sym_UR_DQUOTE] = ACTIONS(3905), + [anon_sym_u8R_DQUOTE] = ACTIONS(3905), + [anon_sym_co_await] = ACTIONS(3907), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3911), + [sym_this] = ACTIONS(3899), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_FORWARD] = ACTIONS(3913), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3913), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_PS_GET] = ACTIONS(3913), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3913), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3913), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3913), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3913), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3913), + }, + [STATE(2200)] = { + [sym_expression] = STATE(3621), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2201)] = { + [sym_expression] = STATE(3629), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2202)] = { + [sym_expression] = STATE(3630), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2203)] = { + [sym_expression] = STATE(3631), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2204)] = { + [sym_expression] = STATE(3632), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2205)] = { + [sym_expression] = STATE(3633), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2206)] = { + [sym_expression] = STATE(3634), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2207)] = { + [sym_expression] = STATE(3635), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2208)] = { + [sym_expression] = STATE(3636), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2209)] = { + [sym_expression] = STATE(3637), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2210)] = { + [sym_expression] = STATE(3638), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2211)] = { + [sym_expression] = STATE(3625), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(6158), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2212)] = { + [sym_expression] = STATE(3626), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2213)] = { + [sym_expression] = STATE(3627), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(6160), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2214)] = { + [sym_expression] = STATE(3639), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2215)] = { + [sym_expression] = STATE(3642), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2216)] = { + [sym_expression] = STATE(3644), + [sym__string] = STATE(3296), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3296), + [sym_concatenated_string] = STATE(3296), + [sym_string_literal] = STATE(2590), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2590), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3855), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3855), + [anon_sym_compl] = ACTIONS(3855), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(3863), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_L_SQUOTE] = ACTIONS(3381), + [anon_sym_u_SQUOTE] = ACTIONS(3381), + [anon_sym_U_SQUOTE] = ACTIONS(3381), + [anon_sym_u8_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_L_DQUOTE] = ACTIONS(3383), + [anon_sym_u_DQUOTE] = ACTIONS(3383), + [anon_sym_U_DQUOTE] = ACTIONS(3383), + [anon_sym_u8_DQUOTE] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3865), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3867), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2217)] = { + [sym_expression] = STATE(4882), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2218)] = { + [sym_expression] = STATE(4862), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(6162), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2219)] = { + [sym_expression] = STATE(4864), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2220)] = { + [sym_expression] = STATE(4865), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2221)] = { + [sym_expression] = STATE(4866), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2222)] = { + [sym_expression] = STATE(4867), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2223)] = { + [sym_expression] = STATE(4868), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2224)] = { + [sym_expression] = STATE(4869), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2225)] = { + [sym_expression] = STATE(4870), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2226)] = { + [sym_expression] = STATE(4871), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2227)] = { + [sym_expression] = STATE(4872), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2228)] = { + [sym_expression] = STATE(4873), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2229)] = { + [sym_expression] = STATE(4875), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2230)] = { + [sym_expression] = STATE(4877), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2231)] = { + [sym_expression] = STATE(4035), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2232)] = { + [sym_expression] = STATE(4087), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2233)] = { + [sym_expression] = STATE(4884), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(6164), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2234)] = { + [sym_expression] = STATE(4028), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(4013), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(4013), + [sym_call_expression] = STATE(4013), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(4013), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(4013), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(4013), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(4013), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LPAREN2] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_PLUS_PLUS] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(4311), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2235)] = { + [sym_expression] = STATE(5131), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2236)] = { + [sym_expression] = STATE(5132), + [sym__string] = STATE(4532), + [sym_conditional_expression] = STATE(4199), + [sym_assignment_expression] = STATE(4199), + [sym_pointer_expression] = STATE(3566), + [sym_unary_expression] = STATE(4199), + [sym_binary_expression] = STATE(4199), + [sym_update_expression] = STATE(4199), + [sym_cast_expression] = STATE(4199), + [sym_sizeof_expression] = STATE(4199), + [sym_alignof_expression] = STATE(4199), + [sym_offsetof_expression] = STATE(4199), + [sym_generic_expression] = STATE(4199), + [sym_subscript_expression] = STATE(3566), + [sym_call_expression] = STATE(3566), + [sym_gnu_asm_expression] = STATE(4199), + [sym_extension_expression] = STATE(4199), + [sym_field_expression] = STATE(3566), + [sym_compound_literal_expression] = STATE(4199), + [sym_parenthesized_expression] = STATE(3566), + [sym_char_literal] = STATE(4532), + [sym_concatenated_string] = STATE(4532), + [sym_string_literal] = STATE(3517), + [sym_null] = STATE(4199), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8004), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(4199), + [sym_raw_string_literal] = STATE(3517), + [sym_co_await_expression] = STATE(4199), + [sym_new_expression] = STATE(4199), + [sym_delete_expression] = STATE(4199), + [sym_requires_clause] = STATE(4199), + [sym_requires_expression] = STATE(4199), + [sym_lambda_expression] = STATE(4199), + [sym_lambda_capture_specifier] = STATE(6238), + [sym_fold_expression] = STATE(4199), + [sym_parameter_pack_expansion] = STATE(4199), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(3566), + [sym_qualified_type_identifier] = STATE(8004), + [sym_user_defined_literal] = STATE(3566), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(4241), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3433), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(101), + [anon_sym_PLUS_PLUS] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(103), + [anon_sym___alignof__] = ACTIONS(105), + [anon_sym___alignof] = ACTIONS(105), + [anon_sym__alignof] = ACTIONS(105), + [anon_sym_alignof] = ACTIONS(105), + [anon_sym__Alignof] = ACTIONS(105), + [anon_sym_offsetof] = ACTIONS(107), + [anon_sym__Generic] = ACTIONS(109), + [anon_sym_asm] = ACTIONS(111), + [anon_sym___asm__] = ACTIONS(111), + [anon_sym___asm] = ACTIONS(111), + [sym_number_literal] = ACTIONS(227), + [anon_sym_L_SQUOTE] = ACTIONS(115), + [anon_sym_u_SQUOTE] = ACTIONS(115), + [anon_sym_U_SQUOTE] = ACTIONS(115), + [anon_sym_u8_SQUOTE] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(115), + [anon_sym_L_DQUOTE] = ACTIONS(117), + [anon_sym_u_DQUOTE] = ACTIONS(117), + [anon_sym_U_DQUOTE] = ACTIONS(117), + [anon_sym_u8_DQUOTE] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [anon_sym_NULL] = ACTIONS(121), + [anon_sym_nullptr] = ACTIONS(121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(137), + [anon_sym_R_DQUOTE] = ACTIONS(153), + [anon_sym_LR_DQUOTE] = ACTIONS(153), + [anon_sym_uR_DQUOTE] = ACTIONS(153), + [anon_sym_UR_DQUOTE] = ACTIONS(153), + [anon_sym_u8R_DQUOTE] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_requires] = ACTIONS(159), + [sym_this] = ACTIONS(229), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2237)] = { + [sym_expression] = STATE(3164), + [sym__string] = STATE(3205), + [sym_conditional_expression] = STATE(2924), + [sym_assignment_expression] = STATE(2924), + [sym_pointer_expression] = STATE(2846), + [sym_unary_expression] = STATE(2924), + [sym_binary_expression] = STATE(2924), + [sym_update_expression] = STATE(2924), + [sym_cast_expression] = STATE(2924), + [sym_sizeof_expression] = STATE(2924), + [sym_alignof_expression] = STATE(2924), + [sym_offsetof_expression] = STATE(2924), + [sym_generic_expression] = STATE(2924), + [sym_subscript_expression] = STATE(2846), + [sym_call_expression] = STATE(2846), + [sym_gnu_asm_expression] = STATE(2924), + [sym_extension_expression] = STATE(2924), + [sym_field_expression] = STATE(2846), + [sym_compound_literal_expression] = STATE(2924), + [sym_parenthesized_expression] = STATE(2846), + [sym_char_literal] = STATE(3205), + [sym_concatenated_string] = STATE(3205), + [sym_string_literal] = STATE(2559), + [sym_null] = STATE(2924), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(8112), + [sym_template_type] = STATE(1312), + [sym_template_function] = STATE(2924), + [sym_raw_string_literal] = STATE(2559), + [sym_co_await_expression] = STATE(2924), + [sym_new_expression] = STATE(2924), + [sym_delete_expression] = STATE(2924), + [sym_requires_clause] = STATE(2924), + [sym_requires_expression] = STATE(2924), + [sym_lambda_expression] = STATE(2924), + [sym_lambda_capture_specifier] = STATE(6225), + [sym_fold_expression] = STATE(2924), + [sym_parameter_pack_expansion] = STATE(2924), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(5931), + [sym_qualified_identifier] = STATE(2846), + [sym_qualified_type_identifier] = STATE(8112), + [sym_user_defined_literal] = STATE(2846), + [sym__call_macro_with_decl_first_arg] = STATE(2887), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(3327), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3323), + [anon_sym_compl] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(5779), + [anon_sym_PLUS_PLUS] = ACTIONS(5779), + [anon_sym_sizeof] = ACTIONS(3335), + [anon_sym___alignof__] = ACTIONS(3337), + [anon_sym___alignof] = ACTIONS(3337), + [anon_sym__alignof] = ACTIONS(3337), + [anon_sym_alignof] = ACTIONS(3337), + [anon_sym__Alignof] = ACTIONS(3337), + [anon_sym_offsetof] = ACTIONS(3339), + [anon_sym__Generic] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym___asm__] = ACTIONS(3343), + [anon_sym___asm] = ACTIONS(3343), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [anon_sym_NULL] = ACTIONS(3353), + [anon_sym_nullptr] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [anon_sym_co_await] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_requires] = ACTIONS(3365), + [sym_this] = ACTIONS(3351), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(165), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_FORWARD] = ACTIONS(165), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(165), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(165), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(165), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_PS_GET] = ACTIONS(165), + [anon_sym_PS_GET_AND_SET] = ACTIONS(165), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(165), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(165), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(165), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(165), + }, + [STATE(2238)] = { + [sym_template_argument_list] = STATE(1873), + [sym_identifier] = ACTIONS(3272), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3279), + [anon_sym_AMP_AMP] = ACTIONS(3279), + [anon_sym_AMP] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym___extension__] = ACTIONS(3272), + [anon_sym_virtual] = ACTIONS(3272), + [anon_sym_extern] = ACTIONS(3272), + [anon_sym___attribute__] = ACTIONS(3272), + [anon_sym___attribute] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), + [anon_sym___declspec] = ACTIONS(3272), + [anon_sym___based] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_register] = ACTIONS(3272), + [anon_sym_inline] = ACTIONS(3272), + [anon_sym___inline] = ACTIONS(3272), + [anon_sym___inline__] = ACTIONS(3272), + [anon_sym___forceinline] = ACTIONS(3272), + [anon_sym_thread_local] = ACTIONS(3272), + [anon_sym___thread] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_constexpr] = ACTIONS(3272), + [anon_sym_volatile] = ACTIONS(3272), + [anon_sym_restrict] = ACTIONS(3272), + [anon_sym___restrict__] = ACTIONS(3272), + [anon_sym__Atomic] = ACTIONS(3272), + [anon_sym__Noreturn] = ACTIONS(3272), + [anon_sym_noreturn] = ACTIONS(3272), + [anon_sym__Nonnull] = ACTIONS(3272), + [anon_sym_mutable] = ACTIONS(3272), + [anon_sym_constinit] = ACTIONS(3272), + [anon_sym_consteval] = ACTIONS(3272), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3272), + [anon_sym_decltype] = ACTIONS(3272), + [anon_sym_template] = ACTIONS(3272), + [anon_sym_operator] = ACTIONS(3272), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3272), + [anon_sym_MOZ_COLD] = ACTIONS(3272), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3272), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3272), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3272), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3272), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3272), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3272), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3272), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3272), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3272), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3272), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3272), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3272), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_RAII] = ACTIONS(3272), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3272), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3272), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3272), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3272), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3272), + }, + [STATE(2239)] = { + [sym_identifier] = ACTIONS(2080), + [anon_sym___extension__] = ACTIONS(2080), + [anon_sym_virtual] = ACTIONS(2080), + [anon_sym_extern] = ACTIONS(2080), + [anon_sym___attribute__] = ACTIONS(2080), + [anon_sym___attribute] = ACTIONS(2080), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2085), + [anon_sym___declspec] = ACTIONS(2080), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_register] = ACTIONS(2080), + [anon_sym_inline] = ACTIONS(2080), + [anon_sym___inline] = ACTIONS(2080), + [anon_sym___inline__] = ACTIONS(2080), + [anon_sym___forceinline] = ACTIONS(2080), + [anon_sym_thread_local] = ACTIONS(2080), + [anon_sym___thread] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_constexpr] = ACTIONS(2080), + [anon_sym_volatile] = ACTIONS(2080), + [anon_sym_restrict] = ACTIONS(2080), + [anon_sym___restrict__] = ACTIONS(2080), + [anon_sym__Atomic] = ACTIONS(2080), + [anon_sym__Noreturn] = ACTIONS(2080), + [anon_sym_noreturn] = ACTIONS(2080), + [anon_sym__Nonnull] = ACTIONS(2080), + [anon_sym_mutable] = ACTIONS(2080), + [anon_sym_constinit] = ACTIONS(2080), + [anon_sym_consteval] = ACTIONS(2080), + [anon_sym_alignas] = ACTIONS(2080), + [anon_sym__Alignas] = ACTIONS(2080), + [sym_primitive_type] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), + [anon_sym_class] = ACTIONS(2080), + [anon_sym_struct] = ACTIONS(2080), + [anon_sym_union] = ACTIONS(2080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2080), + [anon_sym_decltype] = ACTIONS(2080), + [anon_sym_typename] = ACTIONS(2080), + [anon_sym_template] = ACTIONS(2080), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2080), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2080), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2080), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2080), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2080), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2080), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2080), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2080), + [anon_sym_MOZ_COLD] = ACTIONS(2080), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2080), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2080), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2080), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2080), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2080), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2080), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2080), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2080), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2080), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2080), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2080), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2080), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2080), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2080), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2080), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2080), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2080), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2080), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2080), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2080), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2080), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_NONNULL] = ACTIONS(2080), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2080), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2080), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2080), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2080), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2080), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_NORETURN] = ACTIONS(2080), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2080), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2080), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2080), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2080), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2080), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2080), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2080), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2080), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2080), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2080), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2080), + [anon_sym_MOZ_RAII] = ACTIONS(2080), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2080), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2080), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2080), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2080), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2080), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2080), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2080), + }, + [STATE(2240)] = { + [sym_identifier] = ACTIONS(2436), + [anon_sym___extension__] = ACTIONS(2436), + [anon_sym_virtual] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym___attribute__] = ACTIONS(2436), + [anon_sym___attribute] = ACTIONS(2436), + [anon_sym_COLON_COLON] = ACTIONS(2438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2438), + [anon_sym___declspec] = ACTIONS(2436), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym___inline] = ACTIONS(2436), + [anon_sym___inline__] = ACTIONS(2436), + [anon_sym___forceinline] = ACTIONS(2436), + [anon_sym_thread_local] = ACTIONS(2436), + [anon_sym___thread] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_constexpr] = ACTIONS(2436), + [anon_sym_volatile] = ACTIONS(2436), + [anon_sym_restrict] = ACTIONS(2436), + [anon_sym___restrict__] = ACTIONS(2436), + [anon_sym__Atomic] = ACTIONS(2436), + [anon_sym__Noreturn] = ACTIONS(2436), + [anon_sym_noreturn] = ACTIONS(2436), + [anon_sym__Nonnull] = ACTIONS(2436), + [anon_sym_mutable] = ACTIONS(2436), + [anon_sym_constinit] = ACTIONS(2436), + [anon_sym_consteval] = ACTIONS(2436), + [anon_sym_alignas] = ACTIONS(2436), + [anon_sym__Alignas] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_class] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2436), + [anon_sym_decltype] = ACTIONS(2436), + [anon_sym_typename] = ACTIONS(2436), + [anon_sym_template] = ACTIONS(2436), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2436), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2436), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2436), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2436), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2436), + [anon_sym_MOZ_COLD] = ACTIONS(2436), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2436), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2436), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2436), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2436), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2436), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2436), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2436), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2436), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2436), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2436), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2436), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2436), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2436), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2436), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2436), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2436), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_NONNULL] = ACTIONS(2436), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2436), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2436), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2436), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2436), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_NORETURN] = ACTIONS(2436), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2436), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2436), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2436), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2436), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2436), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2436), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2436), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2436), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2436), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2436), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2436), + [anon_sym_MOZ_RAII] = ACTIONS(2436), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2436), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2436), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2436), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2436), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2436), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2436), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2436), + }, + [STATE(2241)] = { + [sym_identifier] = ACTIONS(2108), + [anon_sym___extension__] = ACTIONS(2108), + [anon_sym_virtual] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym_COLON_COLON] = ACTIONS(2110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2110), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [anon_sym___inline] = ACTIONS(2108), + [anon_sym___inline__] = ACTIONS(2108), + [anon_sym___forceinline] = ACTIONS(2108), + [anon_sym_thread_local] = ACTIONS(2108), + [anon_sym___thread] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_constexpr] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym___restrict__] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym__Noreturn] = ACTIONS(2108), + [anon_sym_noreturn] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym_mutable] = ACTIONS(2108), + [anon_sym_constinit] = ACTIONS(2108), + [anon_sym_consteval] = ACTIONS(2108), + [anon_sym_alignas] = ACTIONS(2108), + [anon_sym__Alignas] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_class] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2108), + [anon_sym_decltype] = ACTIONS(2108), + [anon_sym_typename] = ACTIONS(2108), + [anon_sym_template] = ACTIONS(2108), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2108), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2108), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2108), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2108), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2108), + [anon_sym_MOZ_COLD] = ACTIONS(2108), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2108), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2108), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2108), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2108), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2108), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2108), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2108), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2108), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2108), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2108), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2108), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2108), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2108), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2108), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2108), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2108), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_NONNULL] = ACTIONS(2108), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2108), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2108), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2108), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2108), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_NORETURN] = ACTIONS(2108), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2108), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2108), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2108), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2108), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2108), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2108), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2108), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2108), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2108), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2108), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2108), + [anon_sym_MOZ_RAII] = ACTIONS(2108), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2108), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2108), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2108), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2108), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2108), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2108), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2108), + }, + [STATE(2242)] = { + [sym_identifier] = ACTIONS(2112), + [anon_sym___extension__] = ACTIONS(2112), + [anon_sym_virtual] = ACTIONS(2112), + [anon_sym_extern] = ACTIONS(2112), + [anon_sym___attribute__] = ACTIONS(2112), + [anon_sym___attribute] = ACTIONS(2112), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2114), + [anon_sym___declspec] = ACTIONS(2112), + [anon_sym_signed] = ACTIONS(2112), + [anon_sym_unsigned] = ACTIONS(2112), + [anon_sym_long] = ACTIONS(2112), + [anon_sym_short] = ACTIONS(2112), + [anon_sym_static] = ACTIONS(2112), + [anon_sym_register] = ACTIONS(2112), + [anon_sym_inline] = ACTIONS(2112), + [anon_sym___inline] = ACTIONS(2112), + [anon_sym___inline__] = ACTIONS(2112), + [anon_sym___forceinline] = ACTIONS(2112), + [anon_sym_thread_local] = ACTIONS(2112), + [anon_sym___thread] = ACTIONS(2112), + [anon_sym_const] = ACTIONS(2112), + [anon_sym_constexpr] = ACTIONS(2112), + [anon_sym_volatile] = ACTIONS(2112), + [anon_sym_restrict] = ACTIONS(2112), + [anon_sym___restrict__] = ACTIONS(2112), + [anon_sym__Atomic] = ACTIONS(2112), + [anon_sym__Noreturn] = ACTIONS(2112), + [anon_sym_noreturn] = ACTIONS(2112), + [anon_sym__Nonnull] = ACTIONS(2112), + [anon_sym_mutable] = ACTIONS(2112), + [anon_sym_constinit] = ACTIONS(2112), + [anon_sym_consteval] = ACTIONS(2112), + [anon_sym_alignas] = ACTIONS(2112), + [anon_sym__Alignas] = ACTIONS(2112), + [sym_primitive_type] = ACTIONS(2112), + [anon_sym_enum] = ACTIONS(2112), + [anon_sym_class] = ACTIONS(2112), + [anon_sym_struct] = ACTIONS(2112), + [anon_sym_union] = ACTIONS(2112), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2112), + [anon_sym_decltype] = ACTIONS(2112), + [anon_sym_typename] = ACTIONS(2112), + [anon_sym_template] = ACTIONS(2112), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2112), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2112), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2112), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2112), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2112), + [anon_sym_MOZ_COLD] = ACTIONS(2112), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2112), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2112), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2112), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2112), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2112), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2112), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2112), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2112), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2112), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2112), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2112), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2112), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2112), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2112), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2112), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2112), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_NONNULL] = ACTIONS(2112), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2112), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2112), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2112), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2112), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_NORETURN] = ACTIONS(2112), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2112), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2112), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2112), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2112), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2112), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2112), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2112), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2112), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2112), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2112), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2112), + [anon_sym_MOZ_RAII] = ACTIONS(2112), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2112), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2112), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2112), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2112), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2112), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2112), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2112), + }, + [STATE(2243)] = { + [sym_identifier] = ACTIONS(2148), + [anon_sym___extension__] = ACTIONS(2148), + [anon_sym_virtual] = ACTIONS(2148), + [anon_sym_extern] = ACTIONS(2148), + [anon_sym___attribute__] = ACTIONS(2148), + [anon_sym___attribute] = ACTIONS(2148), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2150), + [anon_sym___declspec] = ACTIONS(2148), + [anon_sym_signed] = ACTIONS(2148), + [anon_sym_unsigned] = ACTIONS(2148), + [anon_sym_long] = ACTIONS(2148), + [anon_sym_short] = ACTIONS(2148), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_register] = ACTIONS(2148), + [anon_sym_inline] = ACTIONS(2148), + [anon_sym___inline] = ACTIONS(2148), + [anon_sym___inline__] = ACTIONS(2148), + [anon_sym___forceinline] = ACTIONS(2148), + [anon_sym_thread_local] = ACTIONS(2148), + [anon_sym___thread] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_constexpr] = ACTIONS(2148), + [anon_sym_volatile] = ACTIONS(2148), + [anon_sym_restrict] = ACTIONS(2148), + [anon_sym___restrict__] = ACTIONS(2148), + [anon_sym__Atomic] = ACTIONS(2148), + [anon_sym__Noreturn] = ACTIONS(2148), + [anon_sym_noreturn] = ACTIONS(2148), + [anon_sym__Nonnull] = ACTIONS(2148), + [anon_sym_mutable] = ACTIONS(2148), + [anon_sym_constinit] = ACTIONS(2148), + [anon_sym_consteval] = ACTIONS(2148), + [anon_sym_alignas] = ACTIONS(2148), + [anon_sym__Alignas] = ACTIONS(2148), + [sym_primitive_type] = ACTIONS(2148), + [anon_sym_enum] = ACTIONS(2148), + [anon_sym_class] = ACTIONS(2148), + [anon_sym_struct] = ACTIONS(2148), + [anon_sym_union] = ACTIONS(2148), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2148), + [anon_sym_decltype] = ACTIONS(2148), + [anon_sym_typename] = ACTIONS(2148), + [anon_sym_template] = ACTIONS(2148), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2148), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2148), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2148), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2148), + [anon_sym_MOZ_COLD] = ACTIONS(2148), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2148), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2148), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2148), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2148), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2148), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2148), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2148), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2148), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2148), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2148), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2148), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2148), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2148), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2148), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2148), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2148), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_NONNULL] = ACTIONS(2148), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2148), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2148), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2148), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2148), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_NORETURN] = ACTIONS(2148), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2148), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2148), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2148), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2148), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2148), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2148), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2148), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2148), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2148), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2148), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2148), + [anon_sym_MOZ_RAII] = ACTIONS(2148), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2148), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2148), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2148), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2148), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2148), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2148), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2148), + }, + [STATE(2244)] = { + [sym_identifier] = ACTIONS(2260), + [anon_sym___extension__] = ACTIONS(2260), + [anon_sym_virtual] = ACTIONS(2260), + [anon_sym_extern] = ACTIONS(2260), + [anon_sym___attribute__] = ACTIONS(2260), + [anon_sym___attribute] = ACTIONS(2260), + [anon_sym_COLON_COLON] = ACTIONS(2262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2262), + [anon_sym___declspec] = ACTIONS(2260), + [anon_sym_signed] = ACTIONS(2260), + [anon_sym_unsigned] = ACTIONS(2260), + [anon_sym_long] = ACTIONS(2260), + [anon_sym_short] = ACTIONS(2260), + [anon_sym_static] = ACTIONS(2260), + [anon_sym_register] = ACTIONS(2260), + [anon_sym_inline] = ACTIONS(2260), + [anon_sym___inline] = ACTIONS(2260), + [anon_sym___inline__] = ACTIONS(2260), + [anon_sym___forceinline] = ACTIONS(2260), + [anon_sym_thread_local] = ACTIONS(2260), + [anon_sym___thread] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [anon_sym_constexpr] = ACTIONS(2260), + [anon_sym_volatile] = ACTIONS(2260), + [anon_sym_restrict] = ACTIONS(2260), + [anon_sym___restrict__] = ACTIONS(2260), + [anon_sym__Atomic] = ACTIONS(2260), + [anon_sym__Noreturn] = ACTIONS(2260), + [anon_sym_noreturn] = ACTIONS(2260), + [anon_sym__Nonnull] = ACTIONS(2260), + [anon_sym_mutable] = ACTIONS(2260), + [anon_sym_constinit] = ACTIONS(2260), + [anon_sym_consteval] = ACTIONS(2260), + [anon_sym_alignas] = ACTIONS(2260), + [anon_sym__Alignas] = ACTIONS(2260), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), + [anon_sym_class] = ACTIONS(2260), + [anon_sym_struct] = ACTIONS(2260), + [anon_sym_union] = ACTIONS(2260), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2260), + [anon_sym_decltype] = ACTIONS(2260), + [anon_sym_typename] = ACTIONS(2260), + [anon_sym_template] = ACTIONS(2260), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2260), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2260), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2260), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2260), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2260), + [anon_sym_MOZ_COLD] = ACTIONS(2260), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2260), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2260), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2260), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2260), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2260), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2260), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2260), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2260), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2260), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2260), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2260), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2260), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2260), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2260), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2260), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2260), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_NONNULL] = ACTIONS(2260), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2260), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2260), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2260), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2260), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_NORETURN] = ACTIONS(2260), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2260), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2260), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2260), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2260), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2260), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2260), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2260), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2260), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2260), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2260), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2260), + [anon_sym_MOZ_RAII] = ACTIONS(2260), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2260), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2260), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2260), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2260), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2260), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2260), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2260), + }, + [STATE(2245)] = { + [sym_attribute_specifier] = STATE(1371), + [sym_enumerator_list] = STATE(1570), + [sym__enum_base_clause] = STATE(1478), + [sym_identifier] = ACTIONS(5504), + [anon_sym_LPAREN2] = ACTIONS(5506), + [anon_sym_STAR] = ACTIONS(5506), + [anon_sym_AMP_AMP] = ACTIONS(5506), + [anon_sym_AMP] = ACTIONS(5504), + [anon_sym_SEMI] = ACTIONS(5506), + [anon_sym___extension__] = ACTIONS(5504), + [anon_sym_virtual] = ACTIONS(5504), + [anon_sym_extern] = ACTIONS(5504), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5506), + [anon_sym___declspec] = ACTIONS(5504), + [anon_sym___based] = ACTIONS(5504), + [anon_sym_LBRACE] = ACTIONS(5250), + [anon_sym_static] = ACTIONS(5504), + [anon_sym_register] = ACTIONS(5504), + [anon_sym_inline] = ACTIONS(5504), + [anon_sym___inline] = ACTIONS(5504), + [anon_sym___inline__] = ACTIONS(5504), + [anon_sym___forceinline] = ACTIONS(5504), + [anon_sym_thread_local] = ACTIONS(5504), + [anon_sym___thread] = ACTIONS(5504), + [anon_sym_const] = ACTIONS(5504), + [anon_sym_constexpr] = ACTIONS(5504), + [anon_sym_volatile] = ACTIONS(5504), + [anon_sym_restrict] = ACTIONS(5504), + [anon_sym___restrict__] = ACTIONS(5504), + [anon_sym__Atomic] = ACTIONS(5504), + [anon_sym__Noreturn] = ACTIONS(5504), + [anon_sym_noreturn] = ACTIONS(5504), + [anon_sym__Nonnull] = ACTIONS(5504), + [anon_sym_mutable] = ACTIONS(5504), + [anon_sym_constinit] = ACTIONS(5504), + [anon_sym_consteval] = ACTIONS(5504), + [anon_sym_alignas] = ACTIONS(5504), + [anon_sym__Alignas] = ACTIONS(5504), + [anon_sym_COLON] = ACTIONS(6166), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5504), + [anon_sym_decltype] = ACTIONS(5504), + [anon_sym_operator] = ACTIONS(5504), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5504), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5504), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5504), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5504), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5504), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5504), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5504), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5504), + [anon_sym_MOZ_COLD] = ACTIONS(5504), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5504), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5504), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5504), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5504), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5504), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5504), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5504), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5504), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5504), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5504), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5504), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5504), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5504), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5504), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5504), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5504), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5504), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5504), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5504), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5504), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5504), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_NONNULL] = ACTIONS(5504), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5504), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5504), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5504), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5504), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5504), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_NORETURN] = ACTIONS(5504), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5504), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5504), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5504), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5504), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5504), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5504), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5504), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5504), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5504), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5504), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5504), + [anon_sym_MOZ_RAII] = ACTIONS(5504), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5504), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5504), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5504), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5504), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5504), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5504), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5504), + }, + [STATE(2246)] = { + [sym_identifier] = ACTIONS(2160), + [anon_sym___extension__] = ACTIONS(2160), + [anon_sym_virtual] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2160), + [anon_sym___attribute__] = ACTIONS(2160), + [anon_sym___attribute] = ACTIONS(2160), + [anon_sym_COLON_COLON] = ACTIONS(2162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2162), + [anon_sym___declspec] = ACTIONS(2160), + [anon_sym_signed] = ACTIONS(2160), + [anon_sym_unsigned] = ACTIONS(2160), + [anon_sym_long] = ACTIONS(2160), + [anon_sym_short] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_register] = ACTIONS(2160), + [anon_sym_inline] = ACTIONS(2160), + [anon_sym___inline] = ACTIONS(2160), + [anon_sym___inline__] = ACTIONS(2160), + [anon_sym___forceinline] = ACTIONS(2160), + [anon_sym_thread_local] = ACTIONS(2160), + [anon_sym___thread] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_constexpr] = ACTIONS(2160), + [anon_sym_volatile] = ACTIONS(2160), + [anon_sym_restrict] = ACTIONS(2160), + [anon_sym___restrict__] = ACTIONS(2160), + [anon_sym__Atomic] = ACTIONS(2160), + [anon_sym__Noreturn] = ACTIONS(2160), + [anon_sym_noreturn] = ACTIONS(2160), + [anon_sym__Nonnull] = ACTIONS(2160), + [anon_sym_mutable] = ACTIONS(2160), + [anon_sym_constinit] = ACTIONS(2160), + [anon_sym_consteval] = ACTIONS(2160), + [anon_sym_alignas] = ACTIONS(2160), + [anon_sym__Alignas] = ACTIONS(2160), + [sym_primitive_type] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_struct] = ACTIONS(2160), + [anon_sym_union] = ACTIONS(2160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2160), + [anon_sym_decltype] = ACTIONS(2160), + [anon_sym_typename] = ACTIONS(2160), + [anon_sym_template] = ACTIONS(2160), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(2160), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(2160), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(2160), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(2160), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(2160), + [anon_sym_MOZ_COLD] = ACTIONS(2160), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(2160), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(2160), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(2160), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(2160), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(2160), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(2160), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(2160), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(2160), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(2160), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(2160), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(2160), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(2160), + [anon_sym_MOZ_MUST_USE] = ACTIONS(2160), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(2160), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(2160), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(2160), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_NONNULL] = ACTIONS(2160), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(2160), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(2160), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(2160), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(2160), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_NORETURN] = ACTIONS(2160), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(2160), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(2160), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(2160), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(2160), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(2160), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(2160), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(2160), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(2160), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2160), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(2160), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(2160), + [anon_sym_MOZ_RAII] = ACTIONS(2160), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(2160), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(2160), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(2160), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(2160), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(2160), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(2160), + [anon_sym_JS_PUBLIC_API] = ACTIONS(2160), + }, + [STATE(2247)] = { + [sym_attribute_specifier] = STATE(1392), + [sym_enumerator_list] = STATE(1556), + [sym__enum_base_clause] = STATE(1487), + [sym_identifier] = ACTIONS(5454), + [anon_sym_LPAREN2] = ACTIONS(5456), + [anon_sym_STAR] = ACTIONS(5456), + [anon_sym_AMP_AMP] = ACTIONS(5456), + [anon_sym_AMP] = ACTIONS(5454), + [anon_sym_SEMI] = ACTIONS(5456), + [anon_sym___extension__] = ACTIONS(5454), + [anon_sym_virtual] = ACTIONS(5454), + [anon_sym_extern] = ACTIONS(5454), + [anon_sym___attribute__] = ACTIONS(4352), + [anon_sym___attribute] = ACTIONS(4352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5456), + [anon_sym___declspec] = ACTIONS(5454), + [anon_sym___based] = ACTIONS(5454), + [anon_sym_LBRACE] = ACTIONS(5250), + [anon_sym_static] = ACTIONS(5454), + [anon_sym_register] = ACTIONS(5454), + [anon_sym_inline] = ACTIONS(5454), + [anon_sym___inline] = ACTIONS(5454), + [anon_sym___inline__] = ACTIONS(5454), + [anon_sym___forceinline] = ACTIONS(5454), + [anon_sym_thread_local] = ACTIONS(5454), + [anon_sym___thread] = ACTIONS(5454), + [anon_sym_const] = ACTIONS(5454), + [anon_sym_constexpr] = ACTIONS(5454), + [anon_sym_volatile] = ACTIONS(5454), + [anon_sym_restrict] = ACTIONS(5454), + [anon_sym___restrict__] = ACTIONS(5454), + [anon_sym__Atomic] = ACTIONS(5454), + [anon_sym__Noreturn] = ACTIONS(5454), + [anon_sym_noreturn] = ACTIONS(5454), + [anon_sym__Nonnull] = ACTIONS(5454), + [anon_sym_mutable] = ACTIONS(5454), + [anon_sym_constinit] = ACTIONS(5454), + [anon_sym_consteval] = ACTIONS(5454), + [anon_sym_alignas] = ACTIONS(5454), + [anon_sym__Alignas] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(6166), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5454), + [anon_sym_decltype] = ACTIONS(5454), + [anon_sym_operator] = ACTIONS(5454), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(5454), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(5454), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5454), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(5454), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(5454), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5454), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(5454), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(5454), + [anon_sym_MOZ_COLD] = ACTIONS(5454), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(5454), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5454), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(5454), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(5454), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(5454), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(5454), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(5454), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(5454), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(5454), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(5454), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(5454), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(5454), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(5454), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(5454), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5454), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(5454), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(5454), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(5454), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(5454), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5454), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(5454), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_NONNULL] = ACTIONS(5454), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(5454), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(5454), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(5454), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(5454), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(5454), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_NORETURN] = ACTIONS(5454), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(5454), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(5454), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(5454), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(5454), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(5454), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(5454), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(5454), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(5454), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5454), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(5454), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(5454), + [anon_sym_MOZ_RAII] = ACTIONS(5454), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(5454), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(5454), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(5454), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(5454), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(5454), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(5454), + [anon_sym_JS_PUBLIC_API] = ACTIONS(5454), + }, + [STATE(2248)] = { + [sym__declaration_modifiers] = STATE(2249), + [sym_attribute_specifier] = STATE(2249), + [sym_attribute_declaration] = STATE(2249), + [sym_ms_declspec_modifier] = STATE(2249), + [sym_storage_class_specifier] = STATE(2249), + [sym_type_qualifier] = STATE(2249), + [sym_alignas_qualifier] = STATE(955), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(2249), + [anon_sym_LPAREN2] = ACTIONS(5110), + [anon_sym_STAR] = ACTIONS(5110), + [anon_sym_AMP_AMP] = ACTIONS(5110), + [anon_sym_AMP] = ACTIONS(5108), + [anon_sym___extension__] = ACTIONS(6134), + [anon_sym_virtual] = ACTIONS(6168), + [anon_sym_extern] = ACTIONS(6138), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(47), + [anon_sym___declspec] = ACTIONS(6140), + [anon_sym_LBRACK] = ACTIONS(5108), + [anon_sym_static] = ACTIONS(6138), + [anon_sym_register] = ACTIONS(6138), + [anon_sym_inline] = ACTIONS(6138), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(6138), + [anon_sym___forceinline] = ACTIONS(6138), + [anon_sym_thread_local] = ACTIONS(6138), + [anon_sym___thread] = ACTIONS(6138), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(6134), + [anon_sym_volatile] = ACTIONS(6134), + [anon_sym_restrict] = ACTIONS(6134), + [anon_sym___restrict__] = ACTIONS(6134), + [anon_sym__Atomic] = ACTIONS(6134), + [anon_sym__Noreturn] = ACTIONS(6134), + [anon_sym_noreturn] = ACTIONS(6134), + [anon_sym__Nonnull] = ACTIONS(6134), + [anon_sym_mutable] = ACTIONS(6134), + [anon_sym_constinit] = ACTIONS(6134), + [anon_sym_consteval] = ACTIONS(6134), + [anon_sym_alignas] = ACTIONS(6142), + [anon_sym__Alignas] = ACTIONS(6142), + [sym_comment] = ACTIONS(3), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(6148), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(6148), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(6148), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(6148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(6148), + [anon_sym_MOZ_COLD] = ACTIONS(6148), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(6148), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(6148), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(6148), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(6148), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(6148), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(6148), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(6148), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(6148), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(6148), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(6148), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(6148), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(6148), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(6148), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(6148), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(6148), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(6148), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(6148), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(6148), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(6148), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(6148), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(6148), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(6148), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(6148), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6148), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(6148), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6148), + [anon_sym_MOZ_RAII] = ACTIONS(6148), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(6148), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(6148), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(6148), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(6148), + [anon_sym_JS_PUBLIC_API] = ACTIONS(6148), + }, + [STATE(2249)] = { + [sym__declaration_modifiers] = STATE(2249), + [sym_attribute_specifier] = STATE(2249), + [sym_attribute_declaration] = STATE(2249), + [sym_ms_declspec_modifier] = STATE(2249), + [sym_storage_class_specifier] = STATE(2249), + [sym_type_qualifier] = STATE(2249), + [sym_alignas_qualifier] = STATE(955), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(2249), + [anon_sym_LPAREN2] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5078), + [anon_sym_AMP_AMP] = ACTIONS(5078), + [anon_sym_AMP] = ACTIONS(5076), + [anon_sym___extension__] = ACTIONS(6170), + [anon_sym_virtual] = ACTIONS(6173), + [anon_sym_extern] = ACTIONS(6176), + [anon_sym___attribute__] = ACTIONS(6179), + [anon_sym___attribute] = ACTIONS(5651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6182), + [anon_sym___declspec] = ACTIONS(6185), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_static] = ACTIONS(6176), + [anon_sym_register] = ACTIONS(6176), + [anon_sym_inline] = ACTIONS(6176), + [anon_sym___inline] = ACTIONS(5648), + [anon_sym___inline__] = ACTIONS(6176), + [anon_sym___forceinline] = ACTIONS(6176), + [anon_sym_thread_local] = ACTIONS(6176), + [anon_sym___thread] = ACTIONS(6176), + [anon_sym_const] = ACTIONS(5642), + [anon_sym_constexpr] = ACTIONS(6170), + [anon_sym_volatile] = ACTIONS(6170), + [anon_sym_restrict] = ACTIONS(6170), + [anon_sym___restrict__] = ACTIONS(6170), + [anon_sym__Atomic] = ACTIONS(6170), + [anon_sym__Noreturn] = ACTIONS(6170), + [anon_sym_noreturn] = ACTIONS(6170), + [anon_sym__Nonnull] = ACTIONS(6170), + [anon_sym_mutable] = ACTIONS(6170), + [anon_sym_constinit] = ACTIONS(6170), + [anon_sym_consteval] = ACTIONS(6170), + [anon_sym_alignas] = ACTIONS(6188), + [anon_sym__Alignas] = ACTIONS(6188), + [sym_comment] = ACTIONS(3), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(6191), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(6191), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(5663), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(6191), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(6191), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(5663), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(6191), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(6191), + [anon_sym_MOZ_COLD] = ACTIONS(6191), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(6191), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(6191), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(6191), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(6191), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(6191), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(5663), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(6191), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(6191), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6191), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6191), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(6191), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(6191), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(6191), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(6191), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(6191), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(6191), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(6191), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(6191), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(6191), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(6191), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(6191), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(6191), + [anon_sym_MOZ_MUST_USE] = ACTIONS(5663), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(6191), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(6191), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(6191), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(6191), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(5663), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(6191), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(6191), + [anon_sym_MOZ_NONNULL] = ACTIONS(5663), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(6191), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(6191), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(6191), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(6191), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(6191), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(6191), + [anon_sym_MOZ_NORETURN] = ACTIONS(5663), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(6191), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(6191), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(6191), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(6191), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(6191), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(6191), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(6191), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(6191), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6191), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(6191), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6191), + [anon_sym_MOZ_RAII] = ACTIONS(6191), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(6191), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(6191), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(6191), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(6191), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(6191), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(6191), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(6191), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(6191), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(6191), + [anon_sym_JS_PUBLIC_API] = ACTIONS(6191), + }, + [STATE(2250)] = { + [sym__declaration_modifiers] = STATE(2249), + [sym_attribute_specifier] = STATE(2249), + [sym_attribute_declaration] = STATE(2249), + [sym_ms_declspec_modifier] = STATE(2249), + [sym_storage_class_specifier] = STATE(2249), + [sym_type_qualifier] = STATE(2249), + [sym_alignas_qualifier] = STATE(955), + [sym_macro_annotation] = STATE(1622), + [aux_sym__declaration_specifiers_repeat1] = STATE(2249), + [anon_sym_LPAREN2] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(4998), + [anon_sym_AMP_AMP] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(4996), + [anon_sym___extension__] = ACTIONS(6134), + [anon_sym_virtual] = ACTIONS(6168), + [anon_sym_extern] = ACTIONS(6138), + [anon_sym___attribute__] = ACTIONS(5570), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_LBRACK_LBRACK] = ACTIONS(47), + [anon_sym___declspec] = ACTIONS(6140), + [anon_sym_LBRACK] = ACTIONS(4996), + [anon_sym_static] = ACTIONS(6138), + [anon_sym_register] = ACTIONS(6138), + [anon_sym_inline] = ACTIONS(6138), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(6138), + [anon_sym___forceinline] = ACTIONS(6138), + [anon_sym_thread_local] = ACTIONS(6138), + [anon_sym___thread] = ACTIONS(6138), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(6134), + [anon_sym_volatile] = ACTIONS(6134), + [anon_sym_restrict] = ACTIONS(6134), + [anon_sym___restrict__] = ACTIONS(6134), + [anon_sym__Atomic] = ACTIONS(6134), + [anon_sym__Noreturn] = ACTIONS(6134), + [anon_sym_noreturn] = ACTIONS(6134), + [anon_sym__Nonnull] = ACTIONS(6134), + [anon_sym_mutable] = ACTIONS(6134), + [anon_sym_constinit] = ACTIONS(6134), + [anon_sym_consteval] = ACTIONS(6134), + [anon_sym_alignas] = ACTIONS(6142), + [anon_sym__Alignas] = ACTIONS(6142), + [sym_comment] = ACTIONS(3), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(6148), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(6148), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(6148), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(6148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(6148), + [anon_sym_MOZ_COLD] = ACTIONS(6148), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(6148), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(6148), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(6148), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(6148), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(6148), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(6148), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(6148), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(6148), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(6148), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(6148), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(6148), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(6148), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(6148), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(6148), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(6148), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(6148), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(6148), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(6148), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(6148), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(6148), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(6148), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(6148), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(6148), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6148), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(6148), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6148), + [anon_sym_MOZ_RAII] = ACTIONS(6148), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(6148), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(6148), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(6148), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(6148), + [anon_sym_JS_PUBLIC_API] = ACTIONS(6148), + }, + [STATE(2251)] = { + [sym_template_argument_list] = STATE(2255), + [sym_identifier] = ACTIONS(3272), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3279), + [anon_sym_AMP_AMP] = ACTIONS(3279), + [anon_sym_AMP] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym___extension__] = ACTIONS(3272), + [anon_sym_virtual] = ACTIONS(3272), + [anon_sym_extern] = ACTIONS(3272), + [anon_sym___attribute__] = ACTIONS(3272), + [anon_sym___attribute] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), + [anon_sym___declspec] = ACTIONS(3272), + [anon_sym___based] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_register] = ACTIONS(3272), + [anon_sym_inline] = ACTIONS(3272), + [anon_sym___inline] = ACTIONS(3272), + [anon_sym___inline__] = ACTIONS(3272), + [anon_sym___forceinline] = ACTIONS(3272), + [anon_sym_thread_local] = ACTIONS(3272), + [anon_sym___thread] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_constexpr] = ACTIONS(3272), + [anon_sym_volatile] = ACTIONS(3272), + [anon_sym_restrict] = ACTIONS(3272), + [anon_sym___restrict__] = ACTIONS(3272), + [anon_sym__Atomic] = ACTIONS(3272), + [anon_sym__Noreturn] = ACTIONS(3272), + [anon_sym_noreturn] = ACTIONS(3272), + [anon_sym__Nonnull] = ACTIONS(3272), + [anon_sym_mutable] = ACTIONS(3272), + [anon_sym_constinit] = ACTIONS(3272), + [anon_sym_consteval] = ACTIONS(3272), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3272), + [anon_sym_decltype] = ACTIONS(3272), + [anon_sym_operator] = ACTIONS(3272), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3272), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3272), + [anon_sym_MOZ_COLD] = ACTIONS(3272), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3272), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3272), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3272), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3272), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3272), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3272), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3272), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3272), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3272), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3272), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3272), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3272), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL] = ACTIONS(3272), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3272), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3272), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN] = ACTIONS(3272), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3272), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3272), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3272), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3272), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3272), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3272), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3272), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3272), + [anon_sym_MOZ_RAII] = ACTIONS(3272), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3272), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3272), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3272), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3272), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3272), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3272), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3272), + }, + [STATE(2252)] = { + [sym_identifier] = ACTIONS(6194), + [anon_sym_LPAREN2] = ACTIONS(6196), + [anon_sym_TILDE] = ACTIONS(6196), + [anon_sym_STAR] = ACTIONS(6196), + [anon_sym_AMP_AMP] = ACTIONS(6196), + [anon_sym_AMP] = ACTIONS(6194), + [anon_sym___extension__] = ACTIONS(6194), + [anon_sym_virtual] = ACTIONS(6194), + [anon_sym_extern] = ACTIONS(6194), + [anon_sym___attribute__] = ACTIONS(6194), + [anon_sym___attribute] = ACTIONS(6194), + [anon_sym_COLON_COLON] = ACTIONS(6196), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6196), + [anon_sym___declspec] = ACTIONS(6194), + [anon_sym___based] = ACTIONS(6194), + [anon_sym_LBRACK] = ACTIONS(6194), + [anon_sym_static] = ACTIONS(6194), + [anon_sym_register] = ACTIONS(6194), + [anon_sym_inline] = ACTIONS(6194), + [anon_sym___inline] = ACTIONS(6194), + [anon_sym___inline__] = ACTIONS(6194), + [anon_sym___forceinline] = ACTIONS(6194), + [anon_sym_thread_local] = ACTIONS(6194), + [anon_sym___thread] = ACTIONS(6194), + [anon_sym_const] = ACTIONS(6194), + [anon_sym_constexpr] = ACTIONS(6194), + [anon_sym_volatile] = ACTIONS(6194), + [anon_sym_restrict] = ACTIONS(6194), + [anon_sym___restrict__] = ACTIONS(6194), + [anon_sym__Atomic] = ACTIONS(6194), + [anon_sym__Noreturn] = ACTIONS(6194), + [anon_sym_noreturn] = ACTIONS(6194), + [anon_sym__Nonnull] = ACTIONS(6194), + [anon_sym_mutable] = ACTIONS(6194), + [anon_sym_constinit] = ACTIONS(6194), + [anon_sym_consteval] = ACTIONS(6194), + [anon_sym_alignas] = ACTIONS(6194), + [anon_sym__Alignas] = ACTIONS(6194), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6194), + [anon_sym_explicit] = ACTIONS(6194), + [anon_sym_template] = ACTIONS(6194), + [anon_sym_operator] = ACTIONS(6194), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(6194), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(6194), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(6194), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(6194), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(6194), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(6194), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(6194), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(6194), + [anon_sym_MOZ_COLD] = ACTIONS(6194), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(6194), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(6194), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(6194), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(6194), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(6194), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(6194), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(6194), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(6194), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6194), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6194), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(6194), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(6194), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(6194), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(6194), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(6194), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(6194), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(6194), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(6194), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(6194), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(6194), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(6194), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(6194), + [anon_sym_MOZ_MUST_USE] = ACTIONS(6194), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(6194), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(6194), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(6194), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(6194), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(6194), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(6194), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(6194), + [anon_sym_MOZ_NONNULL] = ACTIONS(6194), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(6194), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(6194), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(6194), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(6194), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(6194), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(6194), + [anon_sym_MOZ_NORETURN] = ACTIONS(6194), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(6194), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(6194), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(6194), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(6194), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(6194), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(6194), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(6194), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(6194), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6194), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(6194), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6194), + [anon_sym_MOZ_RAII] = ACTIONS(6194), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(6194), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(6194), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(6194), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(6194), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(6194), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(6194), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(6194), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(6194), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(6194), + [anon_sym_JS_PUBLIC_API] = ACTIONS(6194), + }, + [STATE(2253)] = { + [sym_identifier] = ACTIONS(4735), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_TILDE] = ACTIONS(4737), + [anon_sym_STAR] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym___extension__] = ACTIONS(4735), + [anon_sym_virtual] = ACTIONS(4735), + [anon_sym_extern] = ACTIONS(4735), + [anon_sym___attribute__] = ACTIONS(4735), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4737), + [anon_sym___declspec] = ACTIONS(4735), + [anon_sym___based] = ACTIONS(4735), + [anon_sym_LBRACK] = ACTIONS(4735), + [anon_sym_static] = ACTIONS(4735), + [anon_sym_register] = ACTIONS(4735), + [anon_sym_inline] = ACTIONS(4735), + [anon_sym___inline] = ACTIONS(4735), + [anon_sym___inline__] = ACTIONS(4735), + [anon_sym___forceinline] = ACTIONS(4735), + [anon_sym_thread_local] = ACTIONS(4735), + [anon_sym___thread] = ACTIONS(4735), + [anon_sym_const] = ACTIONS(4735), + [anon_sym_constexpr] = ACTIONS(4735), + [anon_sym_volatile] = ACTIONS(4735), + [anon_sym_restrict] = ACTIONS(4735), + [anon_sym___restrict__] = ACTIONS(4735), + [anon_sym__Atomic] = ACTIONS(4735), + [anon_sym__Noreturn] = ACTIONS(4735), + [anon_sym_noreturn] = ACTIONS(4735), + [anon_sym__Nonnull] = ACTIONS(4735), + [anon_sym_mutable] = ACTIONS(4735), + [anon_sym_constinit] = ACTIONS(4735), + [anon_sym_consteval] = ACTIONS(4735), + [anon_sym_alignas] = ACTIONS(4735), + [anon_sym__Alignas] = ACTIONS(4735), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4735), + [anon_sym_decltype] = ACTIONS(4735), + [anon_sym_template] = ACTIONS(4735), + [anon_sym_operator] = ACTIONS(4735), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4735), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4735), + [anon_sym_MOZ_COLD] = ACTIONS(4735), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4735), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4735), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4735), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4735), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4735), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4735), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4735), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4735), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4735), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4735), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4735), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4735), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL] = ACTIONS(4735), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4735), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4735), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN] = ACTIONS(4735), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4735), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4735), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4735), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4735), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4735), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4735), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4735), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4735), + [anon_sym_MOZ_RAII] = ACTIONS(4735), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4735), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4735), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4735), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4735), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4735), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4735), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4735), + }, + [STATE(2254)] = { + [sym_identifier] = ACTIONS(6198), + [anon_sym_LPAREN2] = ACTIONS(6200), + [anon_sym_TILDE] = ACTIONS(6202), + [anon_sym_STAR] = ACTIONS(6202), + [anon_sym_AMP_AMP] = ACTIONS(6202), + [anon_sym_AMP] = ACTIONS(6198), + [anon_sym___extension__] = ACTIONS(6198), + [anon_sym_virtual] = ACTIONS(6198), + [anon_sym_extern] = ACTIONS(6198), + [anon_sym___attribute__] = ACTIONS(6198), + [anon_sym___attribute] = ACTIONS(6198), + [anon_sym_COLON_COLON] = ACTIONS(6202), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6202), + [anon_sym___declspec] = ACTIONS(6198), + [anon_sym___based] = ACTIONS(6198), + [anon_sym_LBRACK] = ACTIONS(6198), + [anon_sym_static] = ACTIONS(6198), + [anon_sym_register] = ACTIONS(6198), + [anon_sym_inline] = ACTIONS(6198), + [anon_sym___inline] = ACTIONS(6198), + [anon_sym___inline__] = ACTIONS(6198), + [anon_sym___forceinline] = ACTIONS(6198), + [anon_sym_thread_local] = ACTIONS(6198), + [anon_sym___thread] = ACTIONS(6198), + [anon_sym_const] = ACTIONS(6198), + [anon_sym_constexpr] = ACTIONS(6198), + [anon_sym_volatile] = ACTIONS(6198), + [anon_sym_restrict] = ACTIONS(6198), + [anon_sym___restrict__] = ACTIONS(6198), + [anon_sym__Atomic] = ACTIONS(6198), + [anon_sym__Noreturn] = ACTIONS(6198), + [anon_sym_noreturn] = ACTIONS(6198), + [anon_sym__Nonnull] = ACTIONS(6198), + [anon_sym_mutable] = ACTIONS(6198), + [anon_sym_constinit] = ACTIONS(6198), + [anon_sym_consteval] = ACTIONS(6198), + [anon_sym_alignas] = ACTIONS(6198), + [anon_sym__Alignas] = ACTIONS(6198), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6198), + [anon_sym_explicit] = ACTIONS(6198), + [anon_sym_template] = ACTIONS(6198), + [anon_sym_operator] = ACTIONS(6198), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(6198), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(6198), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(6198), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(6198), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(6198), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(6198), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(6198), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(6198), + [anon_sym_MOZ_COLD] = ACTIONS(6198), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(6198), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(6198), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(6198), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(6198), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(6198), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(6198), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(6198), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(6198), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6198), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6198), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(6198), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(6198), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(6198), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(6198), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(6198), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(6198), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(6198), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(6198), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(6198), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(6198), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(6198), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(6198), + [anon_sym_MOZ_MUST_USE] = ACTIONS(6198), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(6198), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(6198), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(6198), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(6198), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(6198), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(6198), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(6198), + [anon_sym_MOZ_NONNULL] = ACTIONS(6198), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(6198), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(6198), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(6198), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(6198), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(6198), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(6198), + [anon_sym_MOZ_NORETURN] = ACTIONS(6198), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(6198), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(6198), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(6198), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(6198), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(6198), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(6198), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(6198), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(6198), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6198), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(6198), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6198), + [anon_sym_MOZ_RAII] = ACTIONS(6198), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(6198), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(6198), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(6198), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(6198), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(6198), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(6198), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(6198), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(6198), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(6198), + [anon_sym_JS_PUBLIC_API] = ACTIONS(6198), + }, + [STATE(2255)] = { + [sym_identifier] = ACTIONS(3289), + [anon_sym_LPAREN2] = ACTIONS(3293), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym___extension__] = ACTIONS(3289), + [anon_sym_virtual] = ACTIONS(3289), + [anon_sym_extern] = ACTIONS(3289), + [anon_sym___attribute__] = ACTIONS(3289), + [anon_sym___attribute] = ACTIONS(3289), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3293), + [anon_sym___declspec] = ACTIONS(3289), + [anon_sym___based] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_register] = ACTIONS(3289), + [anon_sym_inline] = ACTIONS(3289), + [anon_sym___inline] = ACTIONS(3289), + [anon_sym___inline__] = ACTIONS(3289), + [anon_sym___forceinline] = ACTIONS(3289), + [anon_sym_thread_local] = ACTIONS(3289), + [anon_sym___thread] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_constexpr] = ACTIONS(3289), + [anon_sym_volatile] = ACTIONS(3289), + [anon_sym_restrict] = ACTIONS(3289), + [anon_sym___restrict__] = ACTIONS(3289), + [anon_sym__Atomic] = ACTIONS(3289), + [anon_sym__Noreturn] = ACTIONS(3289), + [anon_sym_noreturn] = ACTIONS(3289), + [anon_sym__Nonnull] = ACTIONS(3289), + [anon_sym_mutable] = ACTIONS(3289), + [anon_sym_constinit] = ACTIONS(3289), + [anon_sym_consteval] = ACTIONS(3289), + [anon_sym_alignas] = ACTIONS(3289), + [anon_sym__Alignas] = ACTIONS(3289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3289), + [anon_sym_decltype] = ACTIONS(3289), + [anon_sym_operator] = ACTIONS(3289), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(3289), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(3289), + [anon_sym_MOZ_COLD] = ACTIONS(3289), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(3289), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(3289), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(3289), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(3289), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(3289), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(3289), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(3289), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(3289), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(3289), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE] = ACTIONS(3289), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(3289), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(3289), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL] = ACTIONS(3289), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(3289), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(3289), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN] = ACTIONS(3289), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(3289), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(3289), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(3289), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(3289), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(3289), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(3289), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(3289), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(3289), + [anon_sym_MOZ_RAII] = ACTIONS(3289), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(3289), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(3289), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(3289), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(3289), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(3289), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(3289), + [anon_sym_JS_PUBLIC_API] = ACTIONS(3289), + }, + [STATE(2256)] = { + [sym_macro_annotation] = STATE(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_RPAREN] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(4690), + [anon_sym_AMP_AMP] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4688), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym___extension__] = ACTIONS(4690), + [anon_sym___attribute__] = ACTIONS(4690), + [anon_sym___attribute] = ACTIONS(4688), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4688), + [anon_sym_RBRACK] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_const] = ACTIONS(4688), + [anon_sym_constexpr] = ACTIONS(4690), + [anon_sym_volatile] = ACTIONS(4690), + [anon_sym_restrict] = ACTIONS(4690), + [anon_sym___restrict__] = ACTIONS(4690), + [anon_sym__Atomic] = ACTIONS(4690), + [anon_sym__Noreturn] = ACTIONS(4690), + [anon_sym_noreturn] = ACTIONS(4690), + [anon_sym__Nonnull] = ACTIONS(4690), + [anon_sym_mutable] = ACTIONS(4690), + [anon_sym_constinit] = ACTIONS(4690), + [anon_sym_consteval] = ACTIONS(4690), + [anon_sym_alignas] = ACTIONS(4690), + [anon_sym__Alignas] = ACTIONS(4690), + [anon_sym_asm] = ACTIONS(4690), + [anon_sym___asm__] = ACTIONS(4690), + [anon_sym___asm] = ACTIONS(4688), + [anon_sym_DASH_GT] = ACTIONS(4690), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_GT2] = ACTIONS(4690), + [anon_sym_try] = ACTIONS(4690), + [anon_sym_noexcept] = ACTIONS(4690), + [anon_sym_throw] = ACTIONS(4690), + [anon_sym_requires] = ACTIONS(4690), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(6148), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(6148), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(6148), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(6148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(6148), + [anon_sym_MOZ_COLD] = ACTIONS(6148), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(6148), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(6148), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(6148), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(6148), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(6148), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(6148), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(6148), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(6148), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(6148), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(6148), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(6148), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(6148), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(6148), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(6148), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(6148), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(6148), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(6148), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(6148), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(6148), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(6148), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(6148), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(6148), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(6148), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6148), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(6148), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6148), + [anon_sym_MOZ_RAII] = ACTIONS(6148), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(6148), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(6148), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(6148), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(6148), + [anon_sym_JS_PUBLIC_API] = ACTIONS(6148), + }, + [STATE(2257)] = { + [sym_macro_annotation] = STATE(4572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4696), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_RPAREN] = ACTIONS(4696), + [anon_sym_LPAREN2] = ACTIONS(4696), + [anon_sym_AMP_AMP] = ACTIONS(4696), + [anon_sym_AMP] = ACTIONS(4694), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym___attribute__] = ACTIONS(4696), + [anon_sym___attribute] = ACTIONS(4694), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4696), + [anon_sym_LBRACK] = ACTIONS(4694), + [anon_sym_RBRACK] = ACTIONS(4696), + [anon_sym_EQ] = ACTIONS(4696), + [anon_sym_const] = ACTIONS(4694), + [anon_sym_constexpr] = ACTIONS(4696), + [anon_sym_volatile] = ACTIONS(4696), + [anon_sym_restrict] = ACTIONS(4696), + [anon_sym___restrict__] = ACTIONS(4696), + [anon_sym__Atomic] = ACTIONS(4696), + [anon_sym__Noreturn] = ACTIONS(4696), + [anon_sym_noreturn] = ACTIONS(4696), + [anon_sym__Nonnull] = ACTIONS(4696), + [anon_sym_mutable] = ACTIONS(4696), + [anon_sym_constinit] = ACTIONS(4696), + [anon_sym_consteval] = ACTIONS(4696), + [anon_sym_alignas] = ACTIONS(4696), + [anon_sym__Alignas] = ACTIONS(4696), + [anon_sym_asm] = ACTIONS(4696), + [anon_sym___asm__] = ACTIONS(4696), + [anon_sym___asm] = ACTIONS(4694), + [anon_sym_DASH_GT] = ACTIONS(4696), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(4696), + [anon_sym_override] = ACTIONS(4696), + [anon_sym_GT2] = ACTIONS(4696), + [anon_sym_try] = ACTIONS(4696), + [anon_sym_noexcept] = ACTIONS(4696), + [anon_sym_throw] = ACTIONS(4696), + [anon_sym_requires] = ACTIONS(4696), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(6148), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(6148), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(6148), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(6148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(6148), + [anon_sym_MOZ_COLD] = ACTIONS(6148), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(6148), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(6148), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(6148), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(6148), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(6148), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(6148), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(6148), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(6148), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(6148), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(6148), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(6148), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(6148), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(6148), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(6148), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(6148), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(6148), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(6148), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(6148), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(6148), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(6148), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(6148), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(6148), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(6148), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6148), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(6148), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6148), + [anon_sym_MOZ_RAII] = ACTIONS(6148), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(6148), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(6148), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(6148), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(6148), + [anon_sym_JS_PUBLIC_API] = ACTIONS(6148), + }, + [STATE(2258)] = { + [sym_macro_annotation] = STATE(4561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_RPAREN] = ACTIONS(4700), + [anon_sym_LPAREN2] = ACTIONS(4700), + [anon_sym_AMP_AMP] = ACTIONS(4700), + [anon_sym_AMP] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym___extension__] = ACTIONS(4700), + [anon_sym___attribute__] = ACTIONS(4700), + [anon_sym___attribute] = ACTIONS(4698), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4700), + [anon_sym_LBRACE] = ACTIONS(4700), + [anon_sym_LBRACK] = ACTIONS(4698), + [anon_sym_RBRACK] = ACTIONS(4700), + [anon_sym_EQ] = ACTIONS(4700), + [anon_sym_const] = ACTIONS(4698), + [anon_sym_constexpr] = ACTIONS(4700), + [anon_sym_volatile] = ACTIONS(4700), + [anon_sym_restrict] = ACTIONS(4700), + [anon_sym___restrict__] = ACTIONS(4700), + [anon_sym__Atomic] = ACTIONS(4700), + [anon_sym__Noreturn] = ACTIONS(4700), + [anon_sym_noreturn] = ACTIONS(4700), + [anon_sym__Nonnull] = ACTIONS(4700), + [anon_sym_mutable] = ACTIONS(4700), + [anon_sym_constinit] = ACTIONS(4700), + [anon_sym_consteval] = ACTIONS(4700), + [anon_sym_alignas] = ACTIONS(4700), + [anon_sym__Alignas] = ACTIONS(4700), + [anon_sym_asm] = ACTIONS(4700), + [anon_sym___asm__] = ACTIONS(4700), + [anon_sym___asm] = ACTIONS(4698), + [anon_sym_DASH_GT] = ACTIONS(4700), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(4700), + [anon_sym_override] = ACTIONS(4700), + [anon_sym_GT2] = ACTIONS(4700), + [anon_sym_try] = ACTIONS(4700), + [anon_sym_noexcept] = ACTIONS(4700), + [anon_sym_throw] = ACTIONS(4700), + [anon_sym_requires] = ACTIONS(4700), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(6148), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(6148), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(6148), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(6148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(6148), + [anon_sym_MOZ_COLD] = ACTIONS(6148), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(6148), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(6148), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(6148), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(6148), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(6148), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(6148), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(6148), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(6148), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(6148), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(6148), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(6148), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(6148), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(6148), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(6148), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(6148), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(6148), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(6148), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(6148), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(6148), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(6148), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(6148), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(6148), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(6148), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6148), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(6148), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6148), + [anon_sym_MOZ_RAII] = ACTIONS(6148), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(6148), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(6148), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(6148), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(6148), + [anon_sym_JS_PUBLIC_API] = ACTIONS(6148), + }, + [STATE(2259)] = { + [sym_macro_annotation] = STATE(4561), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_LPAREN2] = ACTIONS(4700), + [anon_sym_AMP_AMP] = ACTIONS(4700), + [anon_sym_AMP] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym___extension__] = ACTIONS(4700), + [anon_sym___attribute__] = ACTIONS(4700), + [anon_sym___attribute] = ACTIONS(4698), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4700), + [anon_sym_LBRACE] = ACTIONS(4700), + [anon_sym_LBRACK] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4700), + [anon_sym_const] = ACTIONS(4698), + [anon_sym_constexpr] = ACTIONS(4700), + [anon_sym_volatile] = ACTIONS(4700), + [anon_sym_restrict] = ACTIONS(4700), + [anon_sym___restrict__] = ACTIONS(4700), + [anon_sym__Atomic] = ACTIONS(4700), + [anon_sym__Noreturn] = ACTIONS(4700), + [anon_sym_noreturn] = ACTIONS(4700), + [anon_sym__Nonnull] = ACTIONS(4700), + [anon_sym_mutable] = ACTIONS(4700), + [anon_sym_constinit] = ACTIONS(4700), + [anon_sym_consteval] = ACTIONS(4700), + [anon_sym_alignas] = ACTIONS(4700), + [anon_sym__Alignas] = ACTIONS(4700), + [anon_sym_COLON] = ACTIONS(4700), + [anon_sym_asm] = ACTIONS(4700), + [anon_sym___asm__] = ACTIONS(4700), + [anon_sym___asm] = ACTIONS(4698), + [anon_sym_DASH_GT] = ACTIONS(4700), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(4700), + [anon_sym_override] = ACTIONS(4700), + [anon_sym_try] = ACTIONS(4700), + [anon_sym_noexcept] = ACTIONS(4700), + [anon_sym_throw] = ACTIONS(4700), + [anon_sym_requires] = ACTIONS(4700), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(6204), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(6204), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(6206), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(6204), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(6204), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(6206), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(6204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(6204), + [anon_sym_MOZ_COLD] = ACTIONS(6204), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(6204), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(6206), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6204), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(6204), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(6204), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(6204), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(6204), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(6204), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(6204), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(6204), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(6204), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(6204), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(6204), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(6204), + [anon_sym_MOZ_MUST_USE] = ACTIONS(6206), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(6204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(6204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(6204), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(6204), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(6206), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(6204), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_NONNULL] = ACTIONS(6206), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(6204), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(6204), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(6204), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(6204), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(6204), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_NORETURN] = ACTIONS(6206), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(6204), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(6204), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(6204), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(6204), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(6204), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(6204), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(6204), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(6204), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6204), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(6204), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6204), + [anon_sym_MOZ_RAII] = ACTIONS(6204), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(6204), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(6204), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(6204), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(6204), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(6204), + [anon_sym_JS_PUBLIC_API] = ACTIONS(6204), + }, + [STATE(2260)] = { + [sym_macro_annotation] = STATE(4572), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_LPAREN2] = ACTIONS(4696), + [anon_sym_AMP_AMP] = ACTIONS(4696), + [anon_sym_AMP] = ACTIONS(4694), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym___attribute__] = ACTIONS(4696), + [anon_sym___attribute] = ACTIONS(4694), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4696), + [anon_sym_LBRACK] = ACTIONS(4694), + [anon_sym_EQ] = ACTIONS(4696), + [anon_sym_const] = ACTIONS(4694), + [anon_sym_constexpr] = ACTIONS(4696), + [anon_sym_volatile] = ACTIONS(4696), + [anon_sym_restrict] = ACTIONS(4696), + [anon_sym___restrict__] = ACTIONS(4696), + [anon_sym__Atomic] = ACTIONS(4696), + [anon_sym__Noreturn] = ACTIONS(4696), + [anon_sym_noreturn] = ACTIONS(4696), + [anon_sym__Nonnull] = ACTIONS(4696), + [anon_sym_mutable] = ACTIONS(4696), + [anon_sym_constinit] = ACTIONS(4696), + [anon_sym_consteval] = ACTIONS(4696), + [anon_sym_alignas] = ACTIONS(4696), + [anon_sym__Alignas] = ACTIONS(4696), + [anon_sym_COLON] = ACTIONS(4696), + [anon_sym_asm] = ACTIONS(4696), + [anon_sym___asm__] = ACTIONS(4696), + [anon_sym___asm] = ACTIONS(4694), + [anon_sym_DASH_GT] = ACTIONS(4696), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(4696), + [anon_sym_override] = ACTIONS(4696), + [anon_sym_try] = ACTIONS(4696), + [anon_sym_noexcept] = ACTIONS(4696), + [anon_sym_throw] = ACTIONS(4696), + [anon_sym_requires] = ACTIONS(4696), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(6204), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(6204), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(6206), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(6204), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(6204), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(6206), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(6204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(6204), + [anon_sym_MOZ_COLD] = ACTIONS(6204), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(6204), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(6206), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6204), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(6204), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(6204), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(6204), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(6204), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(6204), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(6204), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(6204), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(6204), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(6204), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(6204), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(6204), + [anon_sym_MOZ_MUST_USE] = ACTIONS(6206), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(6204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(6204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(6204), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(6204), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(6206), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(6204), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_NONNULL] = ACTIONS(6206), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(6204), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(6204), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(6204), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(6204), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(6204), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_NORETURN] = ACTIONS(6206), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(6204), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(6204), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(6204), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(6204), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(6204), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(6204), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(6204), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(6204), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6204), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(6204), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6204), + [anon_sym_MOZ_RAII] = ACTIONS(6204), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(6204), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(6204), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(6204), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(6204), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(6204), + [anon_sym_JS_PUBLIC_API] = ACTIONS(6204), + }, + [STATE(2261)] = { + [sym_macro_annotation] = STATE(4550), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(4690), + [anon_sym_AMP_AMP] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4688), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym___extension__] = ACTIONS(4690), + [anon_sym___attribute__] = ACTIONS(4690), + [anon_sym___attribute] = ACTIONS(4688), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4688), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_const] = ACTIONS(4688), + [anon_sym_constexpr] = ACTIONS(4690), + [anon_sym_volatile] = ACTIONS(4690), + [anon_sym_restrict] = ACTIONS(4690), + [anon_sym___restrict__] = ACTIONS(4690), + [anon_sym__Atomic] = ACTIONS(4690), + [anon_sym__Noreturn] = ACTIONS(4690), + [anon_sym_noreturn] = ACTIONS(4690), + [anon_sym__Nonnull] = ACTIONS(4690), + [anon_sym_mutable] = ACTIONS(4690), + [anon_sym_constinit] = ACTIONS(4690), + [anon_sym_consteval] = ACTIONS(4690), + [anon_sym_alignas] = ACTIONS(4690), + [anon_sym__Alignas] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_asm] = ACTIONS(4690), + [anon_sym___asm__] = ACTIONS(4690), + [anon_sym___asm] = ACTIONS(4688), + [anon_sym_DASH_GT] = ACTIONS(4690), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_try] = ACTIONS(4690), + [anon_sym_noexcept] = ACTIONS(4690), + [anon_sym_throw] = ACTIONS(4690), + [anon_sym_requires] = ACTIONS(4690), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(6204), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(6204), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(6206), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(6204), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(6204), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(6206), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(6204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(6204), + [anon_sym_MOZ_COLD] = ACTIONS(6204), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(6204), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(6206), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6204), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(6204), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(6204), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(6204), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(6204), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(6204), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(6204), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(6204), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(6204), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(6204), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(6204), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(6204), + [anon_sym_MOZ_MUST_USE] = ACTIONS(6206), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(6204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(6204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(6204), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(6204), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(6206), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(6204), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_NONNULL] = ACTIONS(6206), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(6204), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(6204), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(6204), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(6204), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(6204), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_NORETURN] = ACTIONS(6206), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(6204), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(6204), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(6204), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(6204), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(6204), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(6204), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(6204), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(6204), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6204), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(6204), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6204), + [anon_sym_MOZ_RAII] = ACTIONS(6204), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(6204), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(6204), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(6204), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(6204), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(6204), + [anon_sym_JS_PUBLIC_API] = ACTIONS(6204), + }, + [STATE(2262)] = { + [sym_macro_annotation] = STATE(4550), + [anon_sym_COMMA] = ACTIONS(6208), + [anon_sym_LPAREN2] = ACTIONS(4690), + [anon_sym_AMP_AMP] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4688), + [anon_sym_SEMI] = ACTIONS(6208), + [anon_sym___extension__] = ACTIONS(4690), + [anon_sym___attribute__] = ACTIONS(4690), + [anon_sym___attribute] = ACTIONS(4688), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4688), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_const] = ACTIONS(4688), + [anon_sym_constexpr] = ACTIONS(4690), + [anon_sym_volatile] = ACTIONS(4690), + [anon_sym_restrict] = ACTIONS(4690), + [anon_sym___restrict__] = ACTIONS(4690), + [anon_sym__Atomic] = ACTIONS(4690), + [anon_sym__Noreturn] = ACTIONS(4690), + [anon_sym_noreturn] = ACTIONS(4690), + [anon_sym__Nonnull] = ACTIONS(4690), + [anon_sym_mutable] = ACTIONS(4690), + [anon_sym_constinit] = ACTIONS(4690), + [anon_sym_consteval] = ACTIONS(4690), + [anon_sym_alignas] = ACTIONS(4690), + [anon_sym__Alignas] = ACTIONS(4690), + [anon_sym_asm] = ACTIONS(4690), + [anon_sym___asm__] = ACTIONS(4690), + [anon_sym___asm] = ACTIONS(4688), + [anon_sym_DASH_GT] = ACTIONS(4690), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_try] = ACTIONS(4690), + [anon_sym_noexcept] = ACTIONS(4690), + [anon_sym_throw] = ACTIONS(4690), + [anon_sym_requires] = ACTIONS(4690), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(6148), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(6148), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(167), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(6148), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(167), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(6148), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(6148), + [anon_sym_MOZ_COLD] = ACTIONS(6148), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(6148), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6148), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(6148), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(6148), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(6148), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(6148), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(6148), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(6148), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(6148), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(6148), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(6148), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(6148), + [anon_sym_MOZ_MUST_USE] = ACTIONS(167), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(6148), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(167), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(6148), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_NONNULL] = ACTIONS(167), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(6148), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(6148), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(6148), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(6148), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_NORETURN] = ACTIONS(167), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(6148), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(6148), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(6148), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(6148), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(6148), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(6148), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(6148), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(6148), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6148), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(6148), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6148), + [anon_sym_MOZ_RAII] = ACTIONS(6148), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(6148), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(6148), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(6148), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(6148), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(6148), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(6148), + [anon_sym_JS_PUBLIC_API] = ACTIONS(6148), + }, + [STATE(2263)] = { + [sym_macro_annotation] = STATE(4550), + [anon_sym_COMMA] = ACTIONS(6208), + [anon_sym_LPAREN2] = ACTIONS(4690), + [anon_sym_AMP_AMP] = ACTIONS(4690), + [anon_sym_AMP] = ACTIONS(4688), + [anon_sym_SEMI] = ACTIONS(6208), + [anon_sym___extension__] = ACTIONS(4690), + [anon_sym___attribute__] = ACTIONS(4690), + [anon_sym___attribute] = ACTIONS(4688), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4688), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_const] = ACTIONS(4688), + [anon_sym_constexpr] = ACTIONS(4690), + [anon_sym_volatile] = ACTIONS(4690), + [anon_sym_restrict] = ACTIONS(4690), + [anon_sym___restrict__] = ACTIONS(4690), + [anon_sym__Atomic] = ACTIONS(4690), + [anon_sym__Noreturn] = ACTIONS(4690), + [anon_sym_noreturn] = ACTIONS(4690), + [anon_sym__Nonnull] = ACTIONS(4690), + [anon_sym_mutable] = ACTIONS(4690), + [anon_sym_constinit] = ACTIONS(4690), + [anon_sym_consteval] = ACTIONS(4690), + [anon_sym_alignas] = ACTIONS(4690), + [anon_sym__Alignas] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_asm] = ACTIONS(4690), + [anon_sym___asm__] = ACTIONS(4690), + [anon_sym___asm] = ACTIONS(4688), + [anon_sym_DASH_GT] = ACTIONS(4690), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_noexcept] = ACTIONS(4690), + [anon_sym_throw] = ACTIONS(4690), + [anon_sym_requires] = ACTIONS(4690), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(6204), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(6204), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(6206), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(6204), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(6204), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(6206), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(6204), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(6204), + [anon_sym_MOZ_COLD] = ACTIONS(6204), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(6204), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(6206), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6204), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6204), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(6204), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(6204), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(6204), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(6204), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(6204), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(6204), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(6204), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(6204), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(6204), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(6204), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(6204), + [anon_sym_MOZ_MUST_USE] = ACTIONS(6206), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(6204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(6204), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(6204), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(6204), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(6206), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(6204), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_NONNULL] = ACTIONS(6206), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(6204), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(6204), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(6204), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(6204), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(6204), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_NORETURN] = ACTIONS(6206), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(6204), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(6204), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(6204), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(6204), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(6204), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(6204), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(6204), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(6204), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6204), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(6204), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6204), + [anon_sym_MOZ_RAII] = ACTIONS(6204), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(6204), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(6204), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(6204), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(6204), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(6204), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(6204), + [anon_sym_JS_PUBLIC_API] = ACTIONS(6204), + }, + [STATE(2264)] = { + [sym_field_declaration_list] = STATE(1396), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1428), + [sym_virtual_specifier] = STATE(7279), + [sym_base_class_clause] = STATE(8358), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6924), + [sym_qualified_type_identifier] = STATE(1428), + [sym_macro_annotation] = STATE(2313), + [aux_sym_class_specifier_repeat1] = STATE(2313), + [sym_identifier] = ACTIONS(6211), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6213), + [anon_sym_COMMA] = ACTIONS(6215), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_EQ] = ACTIONS(6217), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(6215), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2265)] = { + [sym_identifier] = ACTIONS(6219), + [anon_sym_LPAREN2] = ACTIONS(6221), + [anon_sym_BANG] = ACTIONS(6221), + [anon_sym_TILDE] = ACTIONS(6221), + [anon_sym_DASH] = ACTIONS(6219), + [anon_sym_PLUS] = ACTIONS(6219), + [anon_sym_STAR] = ACTIONS(6221), + [anon_sym_AMP] = ACTIONS(6221), + [anon_sym_SEMI] = ACTIONS(6221), + [anon_sym___extension__] = ACTIONS(6219), + [anon_sym_COLON_COLON] = ACTIONS(6221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6221), + [anon_sym_LBRACE] = ACTIONS(6221), + [anon_sym_LBRACK] = ACTIONS(6219), + [sym_primitive_type] = ACTIONS(6219), + [anon_sym_if] = ACTIONS(6219), + [anon_sym_switch] = ACTIONS(6219), + [anon_sym_case] = ACTIONS(6219), + [anon_sym_default] = ACTIONS(6219), + [anon_sym_while] = ACTIONS(6219), + [anon_sym_do] = ACTIONS(6219), + [anon_sym_for] = ACTIONS(6219), + [anon_sym_return] = ACTIONS(6219), + [anon_sym_break] = ACTIONS(6219), + [anon_sym_continue] = ACTIONS(6219), + [anon_sym_goto] = ACTIONS(6219), + [anon_sym___try] = ACTIONS(6219), + [anon_sym___leave] = ACTIONS(6219), + [anon_sym_not] = ACTIONS(6219), + [anon_sym_compl] = ACTIONS(6219), + [anon_sym_DASH_DASH] = ACTIONS(6221), + [anon_sym_PLUS_PLUS] = ACTIONS(6221), + [anon_sym_sizeof] = ACTIONS(6219), + [anon_sym___alignof__] = ACTIONS(6219), + [anon_sym___alignof] = ACTIONS(6219), + [anon_sym__alignof] = ACTIONS(6219), + [anon_sym_alignof] = ACTIONS(6219), + [anon_sym__Alignof] = ACTIONS(6219), + [anon_sym_offsetof] = ACTIONS(6219), + [anon_sym__Generic] = ACTIONS(6219), + [anon_sym_asm] = ACTIONS(6219), + [anon_sym___asm__] = ACTIONS(6219), + [anon_sym___asm] = ACTIONS(6219), + [sym_number_literal] = ACTIONS(6221), + [anon_sym_L_SQUOTE] = ACTIONS(6221), + [anon_sym_u_SQUOTE] = ACTIONS(6221), + [anon_sym_U_SQUOTE] = ACTIONS(6221), + [anon_sym_u8_SQUOTE] = ACTIONS(6221), + [anon_sym_SQUOTE] = ACTIONS(6221), + [anon_sym_L_DQUOTE] = ACTIONS(6221), + [anon_sym_u_DQUOTE] = ACTIONS(6221), + [anon_sym_U_DQUOTE] = ACTIONS(6221), + [anon_sym_u8_DQUOTE] = ACTIONS(6221), + [anon_sym_DQUOTE] = ACTIONS(6221), + [sym_true] = ACTIONS(6219), + [sym_false] = ACTIONS(6219), + [anon_sym_NULL] = ACTIONS(6219), + [anon_sym_nullptr] = ACTIONS(6219), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6219), + [anon_sym_template] = ACTIONS(6219), + [anon_sym_try] = ACTIONS(6219), + [anon_sym_delete] = ACTIONS(6219), + [anon_sym_throw] = ACTIONS(6219), + [anon_sym_co_return] = ACTIONS(6219), + [anon_sym_co_yield] = ACTIONS(6219), + [anon_sym_R_DQUOTE] = ACTIONS(6221), + [anon_sym_LR_DQUOTE] = ACTIONS(6221), + [anon_sym_uR_DQUOTE] = ACTIONS(6221), + [anon_sym_UR_DQUOTE] = ACTIONS(6221), + [anon_sym_u8R_DQUOTE] = ACTIONS(6221), + [anon_sym_co_await] = ACTIONS(6219), + [anon_sym_new] = ACTIONS(6219), + [anon_sym_requires] = ACTIONS(6219), + [sym_this] = ACTIONS(6219), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(6219), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(6219), + [anon_sym_FORWARD] = ACTIONS(6219), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(6219), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(6219), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(6219), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(6219), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(6219), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(6219), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(6219), + [anon_sym_PS_GET] = ACTIONS(6219), + [anon_sym_PS_GET_AND_SET] = ACTIONS(6219), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(6219), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(6219), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(6219), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(6219), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(6219), + }, + [STATE(2266)] = { + [sym_identifier] = ACTIONS(6223), + [anon_sym_LPAREN2] = ACTIONS(6225), + [anon_sym_BANG] = ACTIONS(6225), + [anon_sym_TILDE] = ACTIONS(6225), + [anon_sym_DASH] = ACTIONS(6223), + [anon_sym_PLUS] = ACTIONS(6223), + [anon_sym_STAR] = ACTIONS(6225), + [anon_sym_AMP] = ACTIONS(6225), + [anon_sym_SEMI] = ACTIONS(6225), + [anon_sym___extension__] = ACTIONS(6223), + [anon_sym_COLON_COLON] = ACTIONS(6225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6225), + [anon_sym_LBRACE] = ACTIONS(6225), + [anon_sym_LBRACK] = ACTIONS(6223), + [sym_primitive_type] = ACTIONS(6223), + [anon_sym_if] = ACTIONS(6223), + [anon_sym_switch] = ACTIONS(6223), + [anon_sym_case] = ACTIONS(6223), + [anon_sym_default] = ACTIONS(6223), + [anon_sym_while] = ACTIONS(6223), + [anon_sym_do] = ACTIONS(6223), + [anon_sym_for] = ACTIONS(6223), + [anon_sym_return] = ACTIONS(6223), + [anon_sym_break] = ACTIONS(6223), + [anon_sym_continue] = ACTIONS(6223), + [anon_sym_goto] = ACTIONS(6223), + [anon_sym___try] = ACTIONS(6223), + [anon_sym___leave] = ACTIONS(6223), + [anon_sym_not] = ACTIONS(6223), + [anon_sym_compl] = ACTIONS(6223), + [anon_sym_DASH_DASH] = ACTIONS(6225), + [anon_sym_PLUS_PLUS] = ACTIONS(6225), + [anon_sym_sizeof] = ACTIONS(6223), + [anon_sym___alignof__] = ACTIONS(6223), + [anon_sym___alignof] = ACTIONS(6223), + [anon_sym__alignof] = ACTIONS(6223), + [anon_sym_alignof] = ACTIONS(6223), + [anon_sym__Alignof] = ACTIONS(6223), + [anon_sym_offsetof] = ACTIONS(6223), + [anon_sym__Generic] = ACTIONS(6223), + [anon_sym_asm] = ACTIONS(6223), + [anon_sym___asm__] = ACTIONS(6223), + [anon_sym___asm] = ACTIONS(6223), + [sym_number_literal] = ACTIONS(6225), + [anon_sym_L_SQUOTE] = ACTIONS(6225), + [anon_sym_u_SQUOTE] = ACTIONS(6225), + [anon_sym_U_SQUOTE] = ACTIONS(6225), + [anon_sym_u8_SQUOTE] = ACTIONS(6225), + [anon_sym_SQUOTE] = ACTIONS(6225), + [anon_sym_L_DQUOTE] = ACTIONS(6225), + [anon_sym_u_DQUOTE] = ACTIONS(6225), + [anon_sym_U_DQUOTE] = ACTIONS(6225), + [anon_sym_u8_DQUOTE] = ACTIONS(6225), + [anon_sym_DQUOTE] = ACTIONS(6225), + [sym_true] = ACTIONS(6223), + [sym_false] = ACTIONS(6223), + [anon_sym_NULL] = ACTIONS(6223), + [anon_sym_nullptr] = ACTIONS(6223), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6223), + [anon_sym_template] = ACTIONS(6223), + [anon_sym_try] = ACTIONS(6223), + [anon_sym_delete] = ACTIONS(6223), + [anon_sym_throw] = ACTIONS(6223), + [anon_sym_co_return] = ACTIONS(6223), + [anon_sym_co_yield] = ACTIONS(6223), + [anon_sym_R_DQUOTE] = ACTIONS(6225), + [anon_sym_LR_DQUOTE] = ACTIONS(6225), + [anon_sym_uR_DQUOTE] = ACTIONS(6225), + [anon_sym_UR_DQUOTE] = ACTIONS(6225), + [anon_sym_u8R_DQUOTE] = ACTIONS(6225), + [anon_sym_co_await] = ACTIONS(6223), + [anon_sym_new] = ACTIONS(6223), + [anon_sym_requires] = ACTIONS(6223), + [sym_this] = ACTIONS(6223), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(6223), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(6223), + [anon_sym_FORWARD] = ACTIONS(6223), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(6223), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(6223), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(6223), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(6223), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(6223), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(6223), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(6223), + [anon_sym_PS_GET] = ACTIONS(6223), + [anon_sym_PS_GET_AND_SET] = ACTIONS(6223), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(6223), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(6223), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(6223), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(6223), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(6223), + }, + [STATE(2267)] = { + [sym_type_qualifier] = STATE(2267), + [sym_alignas_qualifier] = STATE(2346), + [aux_sym_array_declarator_repeat1] = STATE(2267), + [sym_identifier] = ACTIONS(6227), + [anon_sym_LPAREN2] = ACTIONS(6229), + [anon_sym_BANG] = ACTIONS(6229), + [anon_sym_TILDE] = ACTIONS(6229), + [anon_sym_DASH] = ACTIONS(6227), + [anon_sym_PLUS] = ACTIONS(6227), + [anon_sym_STAR] = ACTIONS(6229), + [anon_sym_AMP] = ACTIONS(6229), + [anon_sym___extension__] = ACTIONS(6231), + [anon_sym_COLON_COLON] = ACTIONS(6229), + [anon_sym_LBRACK] = ACTIONS(6229), + [anon_sym_static] = ACTIONS(6234), + [anon_sym_RBRACK] = ACTIONS(6229), + [anon_sym_const] = ACTIONS(6231), + [anon_sym_constexpr] = ACTIONS(6231), + [anon_sym_volatile] = ACTIONS(6231), + [anon_sym_restrict] = ACTIONS(6231), + [anon_sym___restrict__] = ACTIONS(6231), + [anon_sym__Atomic] = ACTIONS(6231), + [anon_sym__Noreturn] = ACTIONS(6231), + [anon_sym_noreturn] = ACTIONS(6231), + [anon_sym__Nonnull] = ACTIONS(6231), + [anon_sym_mutable] = ACTIONS(6231), + [anon_sym_constinit] = ACTIONS(6231), + [anon_sym_consteval] = ACTIONS(6231), + [anon_sym_alignas] = ACTIONS(6237), + [anon_sym__Alignas] = ACTIONS(6237), + [sym_primitive_type] = ACTIONS(6227), + [anon_sym_not] = ACTIONS(6227), + [anon_sym_compl] = ACTIONS(6227), + [anon_sym_DASH_DASH] = ACTIONS(6229), + [anon_sym_PLUS_PLUS] = ACTIONS(6229), + [anon_sym_sizeof] = ACTIONS(6227), + [anon_sym___alignof__] = ACTIONS(6227), + [anon_sym___alignof] = ACTIONS(6227), + [anon_sym__alignof] = ACTIONS(6227), + [anon_sym_alignof] = ACTIONS(6227), + [anon_sym__Alignof] = ACTIONS(6227), + [anon_sym_offsetof] = ACTIONS(6227), + [anon_sym__Generic] = ACTIONS(6227), + [anon_sym_asm] = ACTIONS(6227), + [anon_sym___asm__] = ACTIONS(6227), + [anon_sym___asm] = ACTIONS(6227), + [sym_number_literal] = ACTIONS(6229), + [anon_sym_L_SQUOTE] = ACTIONS(6229), + [anon_sym_u_SQUOTE] = ACTIONS(6229), + [anon_sym_U_SQUOTE] = ACTIONS(6229), + [anon_sym_u8_SQUOTE] = ACTIONS(6229), + [anon_sym_SQUOTE] = ACTIONS(6229), + [anon_sym_L_DQUOTE] = ACTIONS(6229), + [anon_sym_u_DQUOTE] = ACTIONS(6229), + [anon_sym_U_DQUOTE] = ACTIONS(6229), + [anon_sym_u8_DQUOTE] = ACTIONS(6229), + [anon_sym_DQUOTE] = ACTIONS(6229), + [sym_true] = ACTIONS(6227), + [sym_false] = ACTIONS(6227), + [anon_sym_NULL] = ACTIONS(6227), + [anon_sym_nullptr] = ACTIONS(6227), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6227), + [anon_sym_template] = ACTIONS(6227), + [anon_sym_delete] = ACTIONS(6227), + [anon_sym_R_DQUOTE] = ACTIONS(6229), + [anon_sym_LR_DQUOTE] = ACTIONS(6229), + [anon_sym_uR_DQUOTE] = ACTIONS(6229), + [anon_sym_UR_DQUOTE] = ACTIONS(6229), + [anon_sym_u8R_DQUOTE] = ACTIONS(6229), + [anon_sym_co_await] = ACTIONS(6227), + [anon_sym_new] = ACTIONS(6227), + [anon_sym_requires] = ACTIONS(6227), + [sym_this] = ACTIONS(6227), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(6227), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(6227), + [anon_sym_FORWARD] = ACTIONS(6227), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(6227), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(6227), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(6227), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(6227), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(6227), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(6227), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(6227), + [anon_sym_PS_GET] = ACTIONS(6227), + [anon_sym_PS_GET_AND_SET] = ACTIONS(6227), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(6227), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(6227), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(6227), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(6227), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(6227), + }, + [STATE(2268)] = { + [sym_string_literal] = STATE(2593), + [sym_template_argument_list] = STATE(2444), + [sym_raw_string_literal] = STATE(2593), + [aux_sym_sized_type_specifier_repeat1] = STATE(2546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6240), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5720), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(6243), + [anon_sym_unsigned] = ACTIONS(6243), + [anon_sym_long] = ACTIONS(6243), + [anon_sym_short] = ACTIONS(6243), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_const] = ACTIONS(3087), + [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__Nonnull] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym__Alignas] = ACTIONS(3095), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3089), + [anon_sym_SLASH_EQ] = ACTIONS(3089), + [anon_sym_PERCENT_EQ] = ACTIONS(3089), + [anon_sym_PLUS_EQ] = ACTIONS(3089), + [anon_sym_DASH_EQ] = ACTIONS(3089), + [anon_sym_LT_LT_EQ] = ACTIONS(3089), + [anon_sym_GT_GT_EQ] = ACTIONS(3089), + [anon_sym_AMP_EQ] = ACTIONS(3089), + [anon_sym_CARET_EQ] = ACTIONS(3089), + [anon_sym_PIPE_EQ] = ACTIONS(3089), + [anon_sym_and_eq] = ACTIONS(3089), + [anon_sym_or_eq] = ACTIONS(3089), + [anon_sym_xor_eq] = ACTIONS(3089), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(6245), + [anon_sym_u_DQUOTE] = ACTIONS(6245), + [anon_sym_U_DQUOTE] = ACTIONS(6245), + [anon_sym_u8_DQUOTE] = ACTIONS(6245), + [anon_sym_DQUOTE] = ACTIONS(6245), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_R_DQUOTE] = ACTIONS(6247), + [anon_sym_LR_DQUOTE] = ACTIONS(6247), + [anon_sym_uR_DQUOTE] = ACTIONS(6247), + [anon_sym_UR_DQUOTE] = ACTIONS(6247), + [anon_sym_u8R_DQUOTE] = ACTIONS(6247), + [anon_sym_DASH_GT_STAR] = ACTIONS(3089), + }, + [STATE(2269)] = { + [sym_field_declaration_list] = STATE(1402), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1499), + [sym_virtual_specifier] = STATE(7334), + [sym_base_class_clause] = STATE(8226), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6901), + [sym_qualified_type_identifier] = STATE(1499), + [sym_macro_annotation] = STATE(2378), + [aux_sym_class_specifier_repeat1] = STATE(2378), + [sym_identifier] = ACTIONS(6249), + [anon_sym_COLON_COLON] = ACTIONS(6251), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2270)] = { + [sym_field_declaration_list] = STATE(2516), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(2439), + [sym_virtual_specifier] = STATE(7248), + [sym_base_class_clause] = STATE(8010), + [sym_template_type] = STATE(2448), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6918), + [sym_qualified_type_identifier] = STATE(2439), + [sym_macro_annotation] = STATE(2290), + [aux_sym_class_specifier_repeat1] = STATE(2290), + [sym_identifier] = ACTIONS(6253), + [anon_sym_COLON_COLON] = ACTIONS(6255), + [anon_sym_LBRACE] = ACTIONS(6257), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2271)] = { + [sym_field_declaration_list] = STATE(3407), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(3000), + [sym_virtual_specifier] = STATE(7518), + [sym_base_class_clause] = STATE(8138), + [sym_template_type] = STATE(2972), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6912), + [sym_qualified_type_identifier] = STATE(3000), + [sym_macro_annotation] = STATE(2280), + [aux_sym_class_specifier_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(6259), + [anon_sym_COLON_COLON] = ACTIONS(6261), + [anon_sym_LBRACE] = ACTIONS(6263), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2272)] = { + [sym_field_declaration_list] = STATE(1396), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1526), + [sym_virtual_specifier] = STATE(7279), + [sym_base_class_clause] = STATE(8358), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1526), + [sym_macro_annotation] = STATE(2315), + [aux_sym_class_specifier_repeat1] = STATE(2315), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2273)] = { + [sym_field_declaration_list] = STATE(1396), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1501), + [sym_virtual_specifier] = STATE(7279), + [sym_base_class_clause] = STATE(8358), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1501), + [sym_macro_annotation] = STATE(2315), + [aux_sym_class_specifier_repeat1] = STATE(2315), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2274)] = { + [sym_field_declaration_list] = STATE(1396), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1503), + [sym_virtual_specifier] = STATE(7279), + [sym_base_class_clause] = STATE(8358), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1503), + [sym_macro_annotation] = STATE(2315), + [aux_sym_class_specifier_repeat1] = STATE(2315), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2275)] = { + [sym_field_declaration_list] = STATE(2514), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(2441), + [sym_virtual_specifier] = STATE(7283), + [sym_base_class_clause] = STATE(8331), + [sym_template_type] = STATE(2448), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6917), + [sym_qualified_type_identifier] = STATE(2441), + [sym_macro_annotation] = STATE(2378), + [aux_sym_class_specifier_repeat1] = STATE(2378), + [sym_identifier] = ACTIONS(6267), + [anon_sym_COLON_COLON] = ACTIONS(6269), + [anon_sym_LBRACE] = ACTIONS(6257), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2276)] = { + [sym_field_declaration_list] = STATE(4943), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(4585), + [sym_virtual_specifier] = STATE(7460), + [sym_base_class_clause] = STATE(8195), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6933), + [sym_qualified_type_identifier] = STATE(4585), + [sym_macro_annotation] = STATE(2378), + [aux_sym_class_specifier_repeat1] = STATE(2378), + [sym_identifier] = ACTIONS(6271), + [anon_sym_COLON_COLON] = ACTIONS(6273), + [anon_sym_LBRACE] = ACTIONS(6275), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2277)] = { + [sym_field_declaration_list] = STATE(2516), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(2439), + [sym_virtual_specifier] = STATE(7248), + [sym_base_class_clause] = STATE(8010), + [sym_template_type] = STATE(2448), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6899), + [sym_qualified_type_identifier] = STATE(2439), + [sym_macro_annotation] = STATE(2301), + [aux_sym_class_specifier_repeat1] = STATE(2301), + [sym_identifier] = ACTIONS(6277), + [anon_sym_COLON_COLON] = ACTIONS(6279), + [anon_sym_LBRACE] = ACTIONS(6257), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2278)] = { + [sym_field_declaration_list] = STATE(1396), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1512), + [sym_virtual_specifier] = STATE(7279), + [sym_base_class_clause] = STATE(8358), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1512), + [sym_macro_annotation] = STATE(2315), + [aux_sym_class_specifier_repeat1] = STATE(2315), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2279)] = { + [sym_field_declaration_list] = STATE(1396), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1514), + [sym_virtual_specifier] = STATE(7279), + [sym_base_class_clause] = STATE(8358), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1514), + [sym_macro_annotation] = STATE(2315), + [aux_sym_class_specifier_repeat1] = STATE(2315), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2280)] = { + [sym_field_declaration_list] = STATE(3321), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(2976), + [sym_virtual_specifier] = STATE(7318), + [sym_base_class_clause] = STATE(8241), + [sym_template_type] = STATE(2972), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6912), + [sym_qualified_type_identifier] = STATE(2976), + [sym_macro_annotation] = STATE(2378), + [aux_sym_class_specifier_repeat1] = STATE(2378), + [sym_identifier] = ACTIONS(6259), + [anon_sym_COLON_COLON] = ACTIONS(6261), + [anon_sym_LBRACE] = ACTIONS(6263), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2281)] = { + [sym_field_declaration_list] = STATE(1396), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1535), + [sym_virtual_specifier] = STATE(7279), + [sym_base_class_clause] = STATE(8358), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1535), + [sym_macro_annotation] = STATE(2315), + [aux_sym_class_specifier_repeat1] = STATE(2315), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2282)] = { + [sym_field_declaration_list] = STATE(3050), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(2836), + [sym_virtual_specifier] = STATE(7363), + [sym_base_class_clause] = STATE(8069), + [sym_template_type] = STATE(2938), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6895), + [sym_qualified_type_identifier] = STATE(2836), + [sym_macro_annotation] = STATE(2378), + [aux_sym_class_specifier_repeat1] = STATE(2378), + [sym_identifier] = ACTIONS(6281), + [anon_sym_COLON_COLON] = ACTIONS(6283), + [anon_sym_LBRACE] = ACTIONS(6285), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2283)] = { + [sym_field_declaration_list] = STATE(2707), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(2507), + [sym_virtual_specifier] = STATE(7258), + [sym_base_class_clause] = STATE(8304), + [sym_template_type] = STATE(2550), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6911), + [sym_qualified_type_identifier] = STATE(2507), + [sym_macro_annotation] = STATE(2316), + [aux_sym_class_specifier_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(6287), + [anon_sym_COLON_COLON] = ACTIONS(6289), + [anon_sym_LBRACE] = ACTIONS(6291), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2284)] = { + [sym_field_declaration_list] = STATE(1396), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1519), + [sym_virtual_specifier] = STATE(7279), + [sym_base_class_clause] = STATE(8358), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1519), + [sym_macro_annotation] = STATE(2315), + [aux_sym_class_specifier_repeat1] = STATE(2315), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2285)] = { + [sym_field_declaration_list] = STATE(1396), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1522), + [sym_virtual_specifier] = STATE(7279), + [sym_base_class_clause] = STATE(8358), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1522), + [sym_macro_annotation] = STATE(2315), + [aux_sym_class_specifier_repeat1] = STATE(2315), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2286)] = { + [sym_field_declaration_list] = STATE(1396), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1539), + [sym_virtual_specifier] = STATE(7279), + [sym_base_class_clause] = STATE(8358), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1539), + [sym_macro_annotation] = STATE(2315), + [aux_sym_class_specifier_repeat1] = STATE(2315), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2287)] = { + [sym_field_declaration_list] = STATE(1396), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1528), + [sym_virtual_specifier] = STATE(7279), + [sym_base_class_clause] = STATE(8358), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1528), + [sym_macro_annotation] = STATE(2315), + [aux_sym_class_specifier_repeat1] = STATE(2315), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2288)] = { + [sym_field_declaration_list] = STATE(1396), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1530), + [sym_virtual_specifier] = STATE(7279), + [sym_base_class_clause] = STATE(8358), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1530), + [sym_macro_annotation] = STATE(2315), + [aux_sym_class_specifier_repeat1] = STATE(2315), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2289)] = { + [sym_field_declaration_list] = STATE(3780), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(3142), + [sym_virtual_specifier] = STATE(7378), + [sym_base_class_clause] = STATE(8021), + [sym_template_type] = STATE(3178), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6893), + [sym_qualified_type_identifier] = STATE(3142), + [sym_macro_annotation] = STATE(2378), + [aux_sym_class_specifier_repeat1] = STATE(2378), + [sym_identifier] = ACTIONS(6293), + [anon_sym_COLON_COLON] = ACTIONS(6295), + [anon_sym_LBRACE] = ACTIONS(6297), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2290)] = { + [sym_field_declaration_list] = STATE(2514), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(2441), + [sym_virtual_specifier] = STATE(7283), + [sym_base_class_clause] = STATE(8331), + [sym_template_type] = STATE(2448), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6918), + [sym_qualified_type_identifier] = STATE(2441), + [sym_macro_annotation] = STATE(2378), + [aux_sym_class_specifier_repeat1] = STATE(2378), + [sym_identifier] = ACTIONS(6253), + [anon_sym_COLON_COLON] = ACTIONS(6255), + [anon_sym_LBRACE] = ACTIONS(6257), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2291)] = { + [sym_field_declaration_list] = STATE(1396), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1548), + [sym_virtual_specifier] = STATE(7279), + [sym_base_class_clause] = STATE(8358), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6946), + [sym_qualified_type_identifier] = STATE(1548), + [sym_macro_annotation] = STATE(2293), + [aux_sym_class_specifier_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(6299), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2292)] = { + [sym_field_declaration_list] = STATE(1402), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1499), + [sym_virtual_specifier] = STATE(7334), + [sym_base_class_clause] = STATE(8226), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6933), + [sym_qualified_type_identifier] = STATE(1499), + [sym_macro_annotation] = STATE(2378), + [aux_sym_class_specifier_repeat1] = STATE(2378), + [sym_identifier] = ACTIONS(6271), + [anon_sym_COLON_COLON] = ACTIONS(6273), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2293)] = { + [sym_field_declaration_list] = STATE(1402), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1499), + [sym_virtual_specifier] = STATE(7334), + [sym_base_class_clause] = STATE(8226), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6946), + [sym_qualified_type_identifier] = STATE(1499), + [sym_macro_annotation] = STATE(2378), + [aux_sym_class_specifier_repeat1] = STATE(2378), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(6299), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2294)] = { + [sym_field_declaration_list] = STATE(3485), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(3027), + [sym_virtual_specifier] = STATE(7290), + [sym_base_class_clause] = STATE(8343), + [sym_template_type] = STATE(3037), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6904), + [sym_qualified_type_identifier] = STATE(3027), + [sym_macro_annotation] = STATE(2378), + [aux_sym_class_specifier_repeat1] = STATE(2378), + [sym_identifier] = ACTIONS(6301), + [anon_sym_COLON_COLON] = ACTIONS(6303), + [anon_sym_LBRACE] = ACTIONS(6305), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2295)] = { + [sym_field_declaration_list] = STATE(3039), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(2816), + [sym_virtual_specifier] = STATE(7489), + [sym_base_class_clause] = STATE(8275), + [sym_template_type] = STATE(2938), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6909), + [sym_qualified_type_identifier] = STATE(2816), + [sym_macro_annotation] = STATE(2307), + [aux_sym_class_specifier_repeat1] = STATE(2307), + [sym_identifier] = ACTIONS(6307), + [anon_sym_COLON_COLON] = ACTIONS(6309), + [anon_sym_LBRACE] = ACTIONS(6285), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2296)] = { + [sym_field_declaration_list] = STATE(1396), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1548), + [sym_virtual_specifier] = STATE(7279), + [sym_base_class_clause] = STATE(8358), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6933), + [sym_qualified_type_identifier] = STATE(1548), + [sym_macro_annotation] = STATE(2292), + [aux_sym_class_specifier_repeat1] = STATE(2292), + [sym_identifier] = ACTIONS(6271), + [anon_sym_COLON_COLON] = ACTIONS(6273), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2297)] = { + [sym_field_declaration_list] = STATE(5266), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(4811), + [sym_virtual_specifier] = STATE(7408), + [sym_base_class_clause] = STATE(8068), + [sym_template_type] = STATE(4653), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6906), + [sym_qualified_type_identifier] = STATE(4811), + [sym_macro_annotation] = STATE(2378), + [aux_sym_class_specifier_repeat1] = STATE(2378), + [sym_identifier] = ACTIONS(6311), + [anon_sym_COLON_COLON] = ACTIONS(6313), + [anon_sym_LBRACE] = ACTIONS(6315), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2298)] = { + [sym_field_declaration_list] = STATE(3039), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(2816), + [sym_virtual_specifier] = STATE(7489), + [sym_base_class_clause] = STATE(8275), + [sym_template_type] = STATE(2938), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6895), + [sym_qualified_type_identifier] = STATE(2816), + [sym_macro_annotation] = STATE(2282), + [aux_sym_class_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(6281), + [anon_sym_COLON_COLON] = ACTIONS(6283), + [anon_sym_LBRACE] = ACTIONS(6285), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2299)] = { + [sym_field_declaration_list] = STATE(3755), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(3184), + [sym_virtual_specifier] = STATE(7506), + [sym_base_class_clause] = STATE(7978), + [sym_template_type] = STATE(3178), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6893), + [sym_qualified_type_identifier] = STATE(3184), + [sym_macro_annotation] = STATE(2289), + [aux_sym_class_specifier_repeat1] = STATE(2289), + [sym_identifier] = ACTIONS(6293), + [anon_sym_COLON_COLON] = ACTIONS(6295), + [anon_sym_LBRACE] = ACTIONS(6297), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2300)] = { + [sym_field_declaration_list] = STATE(1396), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1542), + [sym_virtual_specifier] = STATE(7279), + [sym_base_class_clause] = STATE(8358), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1542), + [sym_macro_annotation] = STATE(2315), + [aux_sym_class_specifier_repeat1] = STATE(2315), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2301)] = { + [sym_field_declaration_list] = STATE(2514), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(2441), + [sym_virtual_specifier] = STATE(7283), + [sym_base_class_clause] = STATE(8331), + [sym_template_type] = STATE(2448), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6899), + [sym_qualified_type_identifier] = STATE(2441), + [sym_macro_annotation] = STATE(2378), + [aux_sym_class_specifier_repeat1] = STATE(2378), + [sym_identifier] = ACTIONS(6277), + [anon_sym_COLON_COLON] = ACTIONS(6279), + [anon_sym_LBRACE] = ACTIONS(6257), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2302)] = { + [sym_field_declaration_list] = STATE(5003), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(4646), + [sym_virtual_specifier] = STATE(7356), + [sym_base_class_clause] = STATE(8160), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6901), + [sym_qualified_type_identifier] = STATE(4646), + [sym_macro_annotation] = STATE(2303), + [aux_sym_class_specifier_repeat1] = STATE(2303), + [sym_identifier] = ACTIONS(6249), + [anon_sym_COLON_COLON] = ACTIONS(6251), + [anon_sym_LBRACE] = ACTIONS(6275), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2303)] = { + [sym_field_declaration_list] = STATE(4943), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(4585), + [sym_virtual_specifier] = STATE(7460), + [sym_base_class_clause] = STATE(8195), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6901), + [sym_qualified_type_identifier] = STATE(4585), + [sym_macro_annotation] = STATE(2378), + [aux_sym_class_specifier_repeat1] = STATE(2378), + [sym_identifier] = ACTIONS(6249), + [anon_sym_COLON_COLON] = ACTIONS(6251), + [anon_sym_LBRACE] = ACTIONS(6275), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2304)] = { + [sym_field_declaration_list] = STATE(3430), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(3024), + [sym_virtual_specifier] = STATE(7271), + [sym_base_class_clause] = STATE(8309), + [sym_template_type] = STATE(3037), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6904), + [sym_qualified_type_identifier] = STATE(3024), + [sym_macro_annotation] = STATE(2294), + [aux_sym_class_specifier_repeat1] = STATE(2294), + [sym_identifier] = ACTIONS(6301), + [anon_sym_COLON_COLON] = ACTIONS(6303), + [anon_sym_LBRACE] = ACTIONS(6305), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2305)] = { + [sym_field_declaration_list] = STATE(1396), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1428), + [sym_virtual_specifier] = STATE(7279), + [sym_base_class_clause] = STATE(8358), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1428), + [sym_macro_annotation] = STATE(2315), + [aux_sym_class_specifier_repeat1] = STATE(2315), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2306)] = { + [sym_field_declaration_list] = STATE(1396), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1548), + [sym_virtual_specifier] = STATE(7279), + [sym_base_class_clause] = STATE(8358), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6901), + [sym_qualified_type_identifier] = STATE(1548), + [sym_macro_annotation] = STATE(2269), + [aux_sym_class_specifier_repeat1] = STATE(2269), + [sym_identifier] = ACTIONS(6249), + [anon_sym_COLON_COLON] = ACTIONS(6251), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2307)] = { + [sym_field_declaration_list] = STATE(3050), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(2836), + [sym_virtual_specifier] = STATE(7363), + [sym_base_class_clause] = STATE(8069), + [sym_template_type] = STATE(2938), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6909), + [sym_qualified_type_identifier] = STATE(2836), + [sym_macro_annotation] = STATE(2378), + [aux_sym_class_specifier_repeat1] = STATE(2378), + [sym_identifier] = ACTIONS(6307), + [anon_sym_COLON_COLON] = ACTIONS(6309), + [anon_sym_LBRACE] = ACTIONS(6285), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2308)] = { + [sym_field_declaration_list] = STATE(5311), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(4812), + [sym_virtual_specifier] = STATE(7376), + [sym_base_class_clause] = STATE(8268), + [sym_template_type] = STATE(4653), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6906), + [sym_qualified_type_identifier] = STATE(4812), + [sym_macro_annotation] = STATE(2297), + [aux_sym_class_specifier_repeat1] = STATE(2297), + [sym_identifier] = ACTIONS(6311), + [anon_sym_COLON_COLON] = ACTIONS(6313), + [anon_sym_LBRACE] = ACTIONS(6315), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2309)] = { + [sym_field_declaration_list] = STATE(4399), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(4017), + [sym_virtual_specifier] = STATE(7501), + [sym_base_class_clause] = STATE(8370), + [sym_template_type] = STATE(3981), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6907), + [sym_qualified_type_identifier] = STATE(4017), + [sym_macro_annotation] = STATE(2320), + [aux_sym_class_specifier_repeat1] = STATE(2320), + [sym_identifier] = ACTIONS(6317), + [anon_sym_COLON_COLON] = ACTIONS(6319), + [anon_sym_LBRACE] = ACTIONS(6321), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2310)] = { + [sym_field_declaration_list] = STATE(5003), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(4646), + [sym_virtual_specifier] = STATE(7356), + [sym_base_class_clause] = STATE(8160), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6933), + [sym_qualified_type_identifier] = STATE(4646), + [sym_macro_annotation] = STATE(2276), + [aux_sym_class_specifier_repeat1] = STATE(2276), + [sym_identifier] = ACTIONS(6271), + [anon_sym_COLON_COLON] = ACTIONS(6273), + [anon_sym_LBRACE] = ACTIONS(6275), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2311)] = { + [sym_field_declaration_list] = STATE(1396), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1428), + [sym_virtual_specifier] = STATE(7279), + [sym_base_class_clause] = STATE(8358), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6924), + [sym_qualified_type_identifier] = STATE(1428), + [sym_macro_annotation] = STATE(2313), + [aux_sym_class_specifier_repeat1] = STATE(2313), + [sym_identifier] = ACTIONS(6323), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2312)] = { + [sym_field_declaration_list] = STATE(2516), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(2439), + [sym_virtual_specifier] = STATE(7248), + [sym_base_class_clause] = STATE(8010), + [sym_template_type] = STATE(2448), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6917), + [sym_qualified_type_identifier] = STATE(2439), + [sym_macro_annotation] = STATE(2275), + [aux_sym_class_specifier_repeat1] = STATE(2275), + [sym_identifier] = ACTIONS(6267), + [anon_sym_COLON_COLON] = ACTIONS(6269), + [anon_sym_LBRACE] = ACTIONS(6257), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2313)] = { + [sym_field_declaration_list] = STATE(1402), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1427), + [sym_virtual_specifier] = STATE(7334), + [sym_base_class_clause] = STATE(8226), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6924), + [sym_qualified_type_identifier] = STATE(1427), + [sym_macro_annotation] = STATE(2378), + [aux_sym_class_specifier_repeat1] = STATE(2378), + [sym_identifier] = ACTIONS(6323), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2314)] = { + [sym_string_literal] = STATE(2593), + [sym_template_argument_list] = STATE(2467), + [sym_raw_string_literal] = STATE(2593), + [aux_sym_sized_type_specifier_repeat1] = STATE(2546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(3102), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6325), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(6243), + [anon_sym_unsigned] = ACTIONS(6243), + [anon_sym_long] = ACTIONS(6243), + [anon_sym_short] = ACTIONS(6243), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_const] = ACTIONS(3087), + [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__Nonnull] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym__Alignas] = ACTIONS(3095), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3089), + [anon_sym_SLASH_EQ] = ACTIONS(3089), + [anon_sym_PERCENT_EQ] = ACTIONS(3089), + [anon_sym_PLUS_EQ] = ACTIONS(3089), + [anon_sym_DASH_EQ] = ACTIONS(3089), + [anon_sym_LT_LT_EQ] = ACTIONS(3089), + [anon_sym_GT_GT_EQ] = ACTIONS(3089), + [anon_sym_AMP_EQ] = ACTIONS(3089), + [anon_sym_CARET_EQ] = ACTIONS(3089), + [anon_sym_PIPE_EQ] = ACTIONS(3089), + [anon_sym_and_eq] = ACTIONS(3089), + [anon_sym_or_eq] = ACTIONS(3089), + [anon_sym_xor_eq] = ACTIONS(3089), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(6245), + [anon_sym_u_DQUOTE] = ACTIONS(6245), + [anon_sym_U_DQUOTE] = ACTIONS(6245), + [anon_sym_u8_DQUOTE] = ACTIONS(6245), + [anon_sym_DQUOTE] = ACTIONS(6245), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_R_DQUOTE] = ACTIONS(6247), + [anon_sym_LR_DQUOTE] = ACTIONS(6247), + [anon_sym_uR_DQUOTE] = ACTIONS(6247), + [anon_sym_UR_DQUOTE] = ACTIONS(6247), + [anon_sym_u8R_DQUOTE] = ACTIONS(6247), + [anon_sym_DASH_GT_STAR] = ACTIONS(3089), + }, + [STATE(2315)] = { + [sym_field_declaration_list] = STATE(1402), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1427), + [sym_virtual_specifier] = STATE(7334), + [sym_base_class_clause] = STATE(8226), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1427), + [sym_macro_annotation] = STATE(2378), + [aux_sym_class_specifier_repeat1] = STATE(2378), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2316)] = { + [sym_field_declaration_list] = STATE(2673), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(2478), + [sym_virtual_specifier] = STATE(7256), + [sym_base_class_clause] = STATE(8321), + [sym_template_type] = STATE(2550), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6911), + [sym_qualified_type_identifier] = STATE(2478), + [sym_macro_annotation] = STATE(2378), + [aux_sym_class_specifier_repeat1] = STATE(2378), + [sym_identifier] = ACTIONS(6287), + [anon_sym_COLON_COLON] = ACTIONS(6289), + [anon_sym_LBRACE] = ACTIONS(6291), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2317)] = { + [sym_field_declaration_list] = STATE(1396), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1553), + [sym_virtual_specifier] = STATE(7279), + [sym_base_class_clause] = STATE(8358), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1553), + [sym_macro_annotation] = STATE(2315), + [aux_sym_class_specifier_repeat1] = STATE(2315), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2318)] = { + [sym_field_declaration_list] = STATE(1396), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1493), + [sym_virtual_specifier] = STATE(7279), + [sym_base_class_clause] = STATE(8358), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1493), + [sym_macro_annotation] = STATE(2315), + [aux_sym_class_specifier_repeat1] = STATE(2315), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2319)] = { + [sym_type_qualifier] = STATE(2319), + [sym_alignas_qualifier] = STATE(2359), + [aux_sym__type_definition_type_repeat1] = STATE(2319), + [sym_identifier] = ACTIONS(4171), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4173), + [anon_sym_COMMA] = ACTIONS(4173), + [anon_sym_RPAREN] = ACTIONS(4173), + [aux_sym_preproc_if_token2] = ACTIONS(4173), + [aux_sym_preproc_else_token1] = ACTIONS(4173), + [aux_sym_preproc_elif_token1] = ACTIONS(4171), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4173), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4173), + [anon_sym_LPAREN2] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_PERCENT] = ACTIONS(4171), + [anon_sym_PIPE_PIPE] = ACTIONS(4173), + [anon_sym_AMP_AMP] = ACTIONS(4173), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4171), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_GT_EQ] = ACTIONS(4173), + [anon_sym_LT_EQ] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_LT_LT] = ACTIONS(4171), + [anon_sym_GT_GT] = ACTIONS(4171), + [anon_sym_SEMI] = ACTIONS(4173), + [anon_sym___extension__] = ACTIONS(6328), + [anon_sym___attribute__] = ACTIONS(4171), + [anon_sym___attribute] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_RBRACE] = ACTIONS(4173), + [anon_sym_signed] = ACTIONS(4171), + [anon_sym_unsigned] = ACTIONS(4171), + [anon_sym_long] = ACTIONS(4171), + [anon_sym_short] = ACTIONS(4171), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(4171), + [anon_sym_const] = ACTIONS(6328), + [anon_sym_constexpr] = ACTIONS(6328), + [anon_sym_volatile] = ACTIONS(6328), + [anon_sym_restrict] = ACTIONS(6328), + [anon_sym___restrict__] = ACTIONS(6328), + [anon_sym__Atomic] = ACTIONS(6328), + [anon_sym__Noreturn] = ACTIONS(6328), + [anon_sym_noreturn] = ACTIONS(6328), + [anon_sym__Nonnull] = ACTIONS(6328), + [anon_sym_mutable] = ACTIONS(6328), + [anon_sym_constinit] = ACTIONS(6328), + [anon_sym_consteval] = ACTIONS(6328), + [anon_sym_alignas] = ACTIONS(6331), + [anon_sym__Alignas] = ACTIONS(6331), + [sym_primitive_type] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4173), + [anon_sym_QMARK] = ACTIONS(4173), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4171), + [anon_sym_or_eq] = ACTIONS(4171), + [anon_sym_xor_eq] = ACTIONS(4171), + [anon_sym_LT_EQ_GT] = ACTIONS(4173), + [anon_sym_or] = ACTIONS(4171), + [anon_sym_and] = ACTIONS(4171), + [anon_sym_bitor] = ACTIONS(4171), + [anon_sym_xor] = ACTIONS(4171), + [anon_sym_bitand] = ACTIONS(4171), + [anon_sym_not_eq] = ACTIONS(4171), + [anon_sym_DASH_DASH] = ACTIONS(4173), + [anon_sym_PLUS_PLUS] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4171), + [anon_sym_DOT_STAR] = ACTIONS(4173), + [anon_sym_DASH_GT] = ACTIONS(4173), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4171), + [anon_sym_decltype] = ACTIONS(4171), + }, + [STATE(2320)] = { + [sym_field_declaration_list] = STATE(4409), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(3907), + [sym_virtual_specifier] = STATE(7512), + [sym_base_class_clause] = STATE(7974), + [sym_template_type] = STATE(3981), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6907), + [sym_qualified_type_identifier] = STATE(3907), + [sym_macro_annotation] = STATE(2378), + [aux_sym_class_specifier_repeat1] = STATE(2378), + [sym_identifier] = ACTIONS(6317), + [anon_sym_COLON_COLON] = ACTIONS(6319), + [anon_sym_LBRACE] = ACTIONS(6321), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2321)] = { + [sym_field_declaration_list] = STATE(3040), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(2818), + [sym_virtual_specifier] = STATE(7498), + [sym_base_class_clause] = STATE(8277), + [sym_template_type] = STATE(2938), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6895), + [sym_qualified_type_identifier] = STATE(2818), + [sym_macro_annotation] = STATE(6262), + [sym_identifier] = ACTIONS(6281), + [anon_sym_COLON_COLON] = ACTIONS(6283), + [anon_sym_LBRACE] = ACTIONS(6285), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2322)] = { + [sym_field_declaration_list] = STATE(1379), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1502), + [sym_virtual_specifier] = STATE(7495), + [sym_base_class_clause] = STATE(7947), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1502), + [sym_macro_annotation] = STATE(6283), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2323)] = { + [sym_field_declaration_list] = STATE(1379), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1540), + [sym_virtual_specifier] = STATE(7495), + [sym_base_class_clause] = STATE(7947), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1540), + [sym_macro_annotation] = STATE(6283), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2324)] = { + [sym_field_declaration_list] = STATE(1379), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1515), + [sym_virtual_specifier] = STATE(7495), + [sym_base_class_clause] = STATE(7947), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1515), + [sym_macro_annotation] = STATE(6283), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2325)] = { + [sym_field_declaration_list] = STATE(3040), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(2818), + [sym_virtual_specifier] = STATE(7498), + [sym_base_class_clause] = STATE(8277), + [sym_template_type] = STATE(2938), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6909), + [sym_qualified_type_identifier] = STATE(2818), + [sym_macro_annotation] = STATE(6265), + [sym_identifier] = ACTIONS(6307), + [anon_sym_COLON_COLON] = ACTIONS(6309), + [anon_sym_LBRACE] = ACTIONS(6285), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2326)] = { + [sym_field_declaration_list] = STATE(1379), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1537), + [sym_virtual_specifier] = STATE(7495), + [sym_base_class_clause] = STATE(7947), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1537), + [sym_macro_annotation] = STATE(6283), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2327)] = { + [sym_field_declaration_list] = STATE(1379), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1549), + [sym_virtual_specifier] = STATE(7495), + [sym_base_class_clause] = STATE(7947), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6933), + [sym_qualified_type_identifier] = STATE(1549), + [sym_macro_annotation] = STATE(6236), + [sym_identifier] = ACTIONS(6271), + [anon_sym_COLON_COLON] = ACTIONS(6273), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2328)] = { + [sym_field_declaration_list] = STATE(1379), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1504), + [sym_virtual_specifier] = STATE(7495), + [sym_base_class_clause] = STATE(7947), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1504), + [sym_macro_annotation] = STATE(6283), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2329)] = { + [sym_field_declaration_list] = STATE(3756), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(3173), + [sym_virtual_specifier] = STATE(7475), + [sym_base_class_clause] = STATE(7981), + [sym_template_type] = STATE(3178), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6893), + [sym_qualified_type_identifier] = STATE(3173), + [sym_macro_annotation] = STATE(6242), + [sym_identifier] = ACTIONS(6293), + [anon_sym_COLON_COLON] = ACTIONS(6295), + [anon_sym_LBRACE] = ACTIONS(6297), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2330)] = { + [sym_string_literal] = STATE(3759), + [sym_template_argument_list] = STATE(3232), + [sym_raw_string_literal] = STATE(3759), + [aux_sym_sized_type_specifier_repeat1] = STATE(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(3102), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3097), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6334), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(6337), + [anon_sym_unsigned] = ACTIONS(6337), + [anon_sym_long] = ACTIONS(6337), + [anon_sym_short] = ACTIONS(6337), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(6339), + [anon_sym_const] = ACTIONS(3087), + [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__Nonnull] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym__Alignas] = ACTIONS(3095), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(6341), + [anon_sym_SLASH_EQ] = ACTIONS(6341), + [anon_sym_PERCENT_EQ] = ACTIONS(6341), + [anon_sym_PLUS_EQ] = ACTIONS(6341), + [anon_sym_DASH_EQ] = ACTIONS(6341), + [anon_sym_LT_LT_EQ] = ACTIONS(6341), + [anon_sym_GT_GT_EQ] = ACTIONS(6339), + [anon_sym_AMP_EQ] = ACTIONS(6341), + [anon_sym_CARET_EQ] = ACTIONS(6341), + [anon_sym_PIPE_EQ] = ACTIONS(6341), + [anon_sym_and_eq] = ACTIONS(6341), + [anon_sym_or_eq] = ACTIONS(6341), + [anon_sym_xor_eq] = ACTIONS(6341), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(6343), + [anon_sym_u_DQUOTE] = ACTIONS(6343), + [anon_sym_U_DQUOTE] = ACTIONS(6343), + [anon_sym_u8_DQUOTE] = ACTIONS(6343), + [anon_sym_DQUOTE] = ACTIONS(6343), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_GT2] = ACTIONS(3102), + [anon_sym_R_DQUOTE] = ACTIONS(6345), + [anon_sym_LR_DQUOTE] = ACTIONS(6345), + [anon_sym_uR_DQUOTE] = ACTIONS(6345), + [anon_sym_UR_DQUOTE] = ACTIONS(6345), + [anon_sym_u8R_DQUOTE] = ACTIONS(6345), + }, + [STATE(2331)] = { + [sym_field_declaration_list] = STATE(3408), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(2989), + [sym_virtual_specifier] = STATE(7218), + [sym_base_class_clause] = STATE(8141), + [sym_template_type] = STATE(2972), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6912), + [sym_qualified_type_identifier] = STATE(2989), + [sym_macro_annotation] = STATE(6275), + [sym_identifier] = ACTIONS(6259), + [anon_sym_COLON_COLON] = ACTIONS(6261), + [anon_sym_LBRACE] = ACTIONS(6263), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2332)] = { + [sym_field_declaration_list] = STATE(1379), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1520), + [sym_virtual_specifier] = STATE(7495), + [sym_base_class_clause] = STATE(7947), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1520), + [sym_macro_annotation] = STATE(6283), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2333)] = { + [sym_field_declaration_list] = STATE(5113), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(4581), + [sym_virtual_specifier] = STATE(7357), + [sym_base_class_clause] = STATE(8162), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6901), + [sym_qualified_type_identifier] = STATE(4581), + [sym_macro_annotation] = STATE(6297), + [sym_identifier] = ACTIONS(6249), + [anon_sym_COLON_COLON] = ACTIONS(6251), + [anon_sym_LBRACE] = ACTIONS(6275), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2334)] = { + [sym_field_declaration_list] = STATE(1379), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1545), + [sym_virtual_specifier] = STATE(7495), + [sym_base_class_clause] = STATE(7947), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1545), + [sym_macro_annotation] = STATE(6283), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2335)] = { + [sym_field_declaration_list] = STATE(2642), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(2509), + [sym_virtual_specifier] = STATE(7354), + [sym_base_class_clause] = STATE(8349), + [sym_template_type] = STATE(2550), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6911), + [sym_qualified_type_identifier] = STATE(2509), + [sym_macro_annotation] = STATE(6293), + [sym_identifier] = ACTIONS(6287), + [anon_sym_COLON_COLON] = ACTIONS(6289), + [anon_sym_LBRACE] = ACTIONS(6291), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2336)] = { + [sym_field_declaration_list] = STATE(3444), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(3025), + [sym_virtual_specifier] = STATE(7272), + [sym_base_class_clause] = STATE(8313), + [sym_template_type] = STATE(3037), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6904), + [sym_qualified_type_identifier] = STATE(3025), + [sym_macro_annotation] = STATE(6261), + [sym_identifier] = ACTIONS(6301), + [anon_sym_COLON_COLON] = ACTIONS(6303), + [anon_sym_LBRACE] = ACTIONS(6305), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2337)] = { + [sym_field_declaration_list] = STATE(1379), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1523), + [sym_virtual_specifier] = STATE(7495), + [sym_base_class_clause] = STATE(7947), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1523), + [sym_macro_annotation] = STATE(6283), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2338)] = { + [sym_field_declaration_list] = STATE(2471), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(2440), + [sym_virtual_specifier] = STATE(7266), + [sym_base_class_clause] = STATE(8016), + [sym_template_type] = STATE(2448), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6899), + [sym_qualified_type_identifier] = STATE(2440), + [sym_macro_annotation] = STATE(6230), + [sym_identifier] = ACTIONS(6277), + [anon_sym_COLON_COLON] = ACTIONS(6279), + [anon_sym_LBRACE] = ACTIONS(6257), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2339)] = { + [sym_field_declaration_list] = STATE(1379), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1549), + [sym_virtual_specifier] = STATE(7495), + [sym_base_class_clause] = STATE(7947), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6901), + [sym_qualified_type_identifier] = STATE(1549), + [sym_macro_annotation] = STATE(6244), + [sym_identifier] = ACTIONS(6249), + [anon_sym_COLON_COLON] = ACTIONS(6251), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2340)] = { + [sym_identifier] = ACTIONS(4269), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_PLUS] = ACTIONS(4269), + [anon_sym_STAR] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4271), + [anon_sym___extension__] = ACTIONS(4269), + [anon_sym_COLON_COLON] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_static] = ACTIONS(4269), + [anon_sym_RBRACK] = ACTIONS(4271), + [anon_sym_const] = ACTIONS(4269), + [anon_sym_constexpr] = ACTIONS(4269), + [anon_sym_volatile] = ACTIONS(4269), + [anon_sym_restrict] = ACTIONS(4269), + [anon_sym___restrict__] = ACTIONS(4269), + [anon_sym__Atomic] = ACTIONS(4269), + [anon_sym__Noreturn] = ACTIONS(4269), + [anon_sym_noreturn] = ACTIONS(4269), + [anon_sym__Nonnull] = ACTIONS(4269), + [anon_sym_mutable] = ACTIONS(4269), + [anon_sym_constinit] = ACTIONS(4269), + [anon_sym_consteval] = ACTIONS(4269), + [anon_sym_alignas] = ACTIONS(4269), + [anon_sym__Alignas] = ACTIONS(4269), + [sym_primitive_type] = ACTIONS(4269), + [anon_sym_not] = ACTIONS(4269), + [anon_sym_compl] = ACTIONS(4269), + [anon_sym_DASH_DASH] = ACTIONS(4271), + [anon_sym_PLUS_PLUS] = ACTIONS(4271), + [anon_sym_sizeof] = ACTIONS(4269), + [anon_sym___alignof__] = ACTIONS(4269), + [anon_sym___alignof] = ACTIONS(4269), + [anon_sym__alignof] = ACTIONS(4269), + [anon_sym_alignof] = ACTIONS(4269), + [anon_sym__Alignof] = ACTIONS(4269), + [anon_sym_offsetof] = ACTIONS(4269), + [anon_sym__Generic] = ACTIONS(4269), + [anon_sym_asm] = ACTIONS(4269), + [anon_sym___asm__] = ACTIONS(4269), + [anon_sym___asm] = ACTIONS(4269), + [sym_number_literal] = ACTIONS(4271), + [anon_sym_L_SQUOTE] = ACTIONS(4271), + [anon_sym_u_SQUOTE] = ACTIONS(4271), + [anon_sym_U_SQUOTE] = ACTIONS(4271), + [anon_sym_u8_SQUOTE] = ACTIONS(4271), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_L_DQUOTE] = ACTIONS(4271), + [anon_sym_u_DQUOTE] = ACTIONS(4271), + [anon_sym_U_DQUOTE] = ACTIONS(4271), + [anon_sym_u8_DQUOTE] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [sym_true] = ACTIONS(4269), + [sym_false] = ACTIONS(4269), + [anon_sym_NULL] = ACTIONS(4269), + [anon_sym_nullptr] = ACTIONS(4269), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(4269), + [anon_sym_template] = ACTIONS(4269), + [anon_sym_delete] = ACTIONS(4269), + [anon_sym_R_DQUOTE] = ACTIONS(4271), + [anon_sym_LR_DQUOTE] = ACTIONS(4271), + [anon_sym_uR_DQUOTE] = ACTIONS(4271), + [anon_sym_UR_DQUOTE] = ACTIONS(4271), + [anon_sym_u8R_DQUOTE] = ACTIONS(4271), + [anon_sym_co_await] = ACTIONS(4269), + [anon_sym_new] = ACTIONS(4269), + [anon_sym_requires] = ACTIONS(4269), + [sym_this] = ACTIONS(4269), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(4269), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(4269), + [anon_sym_FORWARD] = ACTIONS(4269), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(4269), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(4269), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(4269), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(4269), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(4269), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(4269), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(4269), + [anon_sym_PS_GET] = ACTIONS(4269), + [anon_sym_PS_GET_AND_SET] = ACTIONS(4269), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(4269), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(4269), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(4269), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(4269), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(4269), + }, + [STATE(2341)] = { + [sym_field_declaration_list] = STATE(5269), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(4814), + [sym_virtual_specifier] = STATE(7382), + [sym_base_class_clause] = STATE(8282), + [sym_template_type] = STATE(4653), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6906), + [sym_qualified_type_identifier] = STATE(4814), + [sym_macro_annotation] = STATE(6263), + [sym_identifier] = ACTIONS(6311), + [anon_sym_COLON_COLON] = ACTIONS(6313), + [anon_sym_LBRACE] = ACTIONS(6315), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2342)] = { + [sym_field_declaration_list] = STATE(4434), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(3996), + [sym_virtual_specifier] = STATE(7502), + [sym_base_class_clause] = STATE(7938), + [sym_template_type] = STATE(3981), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6907), + [sym_qualified_type_identifier] = STATE(3996), + [sym_macro_annotation] = STATE(6252), + [sym_identifier] = ACTIONS(6317), + [anon_sym_COLON_COLON] = ACTIONS(6319), + [anon_sym_LBRACE] = ACTIONS(6321), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2343)] = { + [sym_field_declaration_list] = STATE(5113), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(4581), + [sym_virtual_specifier] = STATE(7357), + [sym_base_class_clause] = STATE(8162), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6933), + [sym_qualified_type_identifier] = STATE(4581), + [sym_macro_annotation] = STATE(6282), + [sym_identifier] = ACTIONS(6271), + [anon_sym_COLON_COLON] = ACTIONS(6273), + [anon_sym_LBRACE] = ACTIONS(6275), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2344)] = { + [sym_field_declaration_list] = STATE(2471), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(2440), + [sym_virtual_specifier] = STATE(7266), + [sym_base_class_clause] = STATE(8016), + [sym_template_type] = STATE(2448), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6918), + [sym_qualified_type_identifier] = STATE(2440), + [sym_macro_annotation] = STATE(6289), + [sym_identifier] = ACTIONS(6253), + [anon_sym_COLON_COLON] = ACTIONS(6255), + [anon_sym_LBRACE] = ACTIONS(6257), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2345)] = { + [sym_field_declaration_list] = STATE(1379), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1430), + [sym_virtual_specifier] = STATE(7495), + [sym_base_class_clause] = STATE(7947), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6924), + [sym_qualified_type_identifier] = STATE(1430), + [sym_macro_annotation] = STATE(6250), + [sym_identifier] = ACTIONS(6323), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2346)] = { + [sym_identifier] = ACTIONS(1903), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_PLUS] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1893), + [anon_sym___extension__] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1893), + [anon_sym_LBRACK] = ACTIONS(1893), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_RBRACK] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1903), + [anon_sym_not] = ACTIONS(1903), + [anon_sym_compl] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1893), + [anon_sym_PLUS_PLUS] = ACTIONS(1893), + [anon_sym_sizeof] = ACTIONS(1903), + [anon_sym___alignof__] = ACTIONS(1903), + [anon_sym___alignof] = ACTIONS(1903), + [anon_sym__alignof] = ACTIONS(1903), + [anon_sym_alignof] = ACTIONS(1903), + [anon_sym__Alignof] = ACTIONS(1903), + [anon_sym_offsetof] = ACTIONS(1903), + [anon_sym__Generic] = ACTIONS(1903), + [anon_sym_asm] = ACTIONS(1903), + [anon_sym___asm__] = ACTIONS(1903), + [anon_sym___asm] = ACTIONS(1903), + [sym_number_literal] = ACTIONS(1893), + [anon_sym_L_SQUOTE] = ACTIONS(1893), + [anon_sym_u_SQUOTE] = ACTIONS(1893), + [anon_sym_U_SQUOTE] = ACTIONS(1893), + [anon_sym_u8_SQUOTE] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_L_DQUOTE] = ACTIONS(1893), + [anon_sym_u_DQUOTE] = ACTIONS(1893), + [anon_sym_U_DQUOTE] = ACTIONS(1893), + [anon_sym_u8_DQUOTE] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1893), + [sym_true] = ACTIONS(1903), + [sym_false] = ACTIONS(1903), + [anon_sym_NULL] = ACTIONS(1903), + [anon_sym_nullptr] = ACTIONS(1903), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1903), + [anon_sym_template] = ACTIONS(1903), + [anon_sym_delete] = ACTIONS(1903), + [anon_sym_R_DQUOTE] = ACTIONS(1893), + [anon_sym_LR_DQUOTE] = ACTIONS(1893), + [anon_sym_uR_DQUOTE] = ACTIONS(1893), + [anon_sym_UR_DQUOTE] = ACTIONS(1893), + [anon_sym_u8R_DQUOTE] = ACTIONS(1893), + [anon_sym_co_await] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1903), + [anon_sym_requires] = ACTIONS(1903), + [sym_this] = ACTIONS(1903), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1903), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1903), + [anon_sym_FORWARD] = ACTIONS(1903), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1903), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1903), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1903), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1903), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1903), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1903), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1903), + [anon_sym_PS_GET] = ACTIONS(1903), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1903), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1903), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1903), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1903), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1903), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1903), + }, + [STATE(2347)] = { + [sym_field_declaration_list] = STATE(2471), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(2440), + [sym_virtual_specifier] = STATE(7266), + [sym_base_class_clause] = STATE(8016), + [sym_template_type] = STATE(2448), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6917), + [sym_qualified_type_identifier] = STATE(2440), + [sym_macro_annotation] = STATE(6253), + [sym_identifier] = ACTIONS(6267), + [anon_sym_COLON_COLON] = ACTIONS(6269), + [anon_sym_LBRACE] = ACTIONS(6257), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2348)] = { + [sym_field_declaration_list] = STATE(1379), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1529), + [sym_virtual_specifier] = STATE(7495), + [sym_base_class_clause] = STATE(7947), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1529), + [sym_macro_annotation] = STATE(6283), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2349)] = { + [sym_field_declaration_list] = STATE(1379), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1430), + [sym_virtual_specifier] = STATE(7495), + [sym_base_class_clause] = STATE(7947), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1430), + [sym_macro_annotation] = STATE(6283), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2350)] = { + [sym_field_declaration_list] = STATE(1379), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1531), + [sym_virtual_specifier] = STATE(7495), + [sym_base_class_clause] = STATE(7947), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1531), + [sym_macro_annotation] = STATE(6283), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2351)] = { + [sym_field_declaration_list] = STATE(1379), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1554), + [sym_virtual_specifier] = STATE(7495), + [sym_base_class_clause] = STATE(7947), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1554), + [sym_macro_annotation] = STATE(6283), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2352)] = { + [sym_field_declaration_list] = STATE(1379), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1555), + [sym_virtual_specifier] = STATE(7495), + [sym_base_class_clause] = STATE(7947), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1555), + [sym_macro_annotation] = STATE(6283), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2353)] = { + [sym_field_declaration_list] = STATE(1379), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1513), + [sym_virtual_specifier] = STATE(7495), + [sym_base_class_clause] = STATE(7947), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1513), + [sym_macro_annotation] = STATE(6283), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2354)] = { + [sym_field_declaration_list] = STATE(1379), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1549), + [sym_virtual_specifier] = STATE(7495), + [sym_base_class_clause] = STATE(7947), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6946), + [sym_qualified_type_identifier] = STATE(1549), + [sym_macro_annotation] = STATE(6270), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(6299), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2355)] = { + [sym_field_declaration_list] = STATE(1379), + [sym_decltype] = STATE(8447), + [sym__class_name] = STATE(1532), + [sym_virtual_specifier] = STATE(7495), + [sym_base_class_clause] = STATE(7947), + [sym_template_type] = STATE(1312), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6944), + [sym_qualified_type_identifier] = STATE(1532), + [sym_macro_annotation] = STATE(6283), + [sym_identifier] = ACTIONS(6265), + [anon_sym_COLON_COLON] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_COLON] = ACTIONS(4992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(4362), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(4362), + [anon_sym_MOZ_COLD] = ACTIONS(4362), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(4362), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(4362), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(4362), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(4362), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(4362), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(4362), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(4362), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(4362), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(4362), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE] = ACTIONS(4362), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(4362), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(4362), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL] = ACTIONS(4362), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(4362), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(4362), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN] = ACTIONS(4362), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(4362), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(4362), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(4362), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(4362), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(4362), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(4362), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(4362), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(4362), + [anon_sym_MOZ_RAII] = ACTIONS(4362), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(4362), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(4362), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(4362), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(4362), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(4362), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(4362), + [anon_sym_JS_PUBLIC_API] = ACTIONS(4362), + }, + [STATE(2356)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(3307), + [sym_raw_string_literal] = STATE(3007), + [aux_sym_sized_type_specifier_repeat1] = STATE(2546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(3102), + [anon_sym_LPAREN2] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(6243), + [anon_sym_unsigned] = ACTIONS(6243), + [anon_sym_long] = ACTIONS(6243), + [anon_sym_short] = ACTIONS(6243), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_const] = ACTIONS(3087), + [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__Nonnull] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym__Alignas] = ACTIONS(3095), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3125), + [anon_sym_or_eq] = ACTIONS(3125), + [anon_sym_xor_eq] = ACTIONS(3125), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [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), + }, + [STATE(2357)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2357), + [sym_identifier] = ACTIONS(4520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4522), + [anon_sym_COMMA] = ACTIONS(4522), + [anon_sym_RPAREN] = ACTIONS(4522), + [aux_sym_preproc_if_token2] = ACTIONS(4522), + [aux_sym_preproc_else_token1] = ACTIONS(4522), + [aux_sym_preproc_elif_token1] = ACTIONS(4520), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4522), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4522), + [anon_sym_LPAREN2] = ACTIONS(4522), + [anon_sym_DASH] = ACTIONS(4520), + [anon_sym_PLUS] = ACTIONS(4520), + [anon_sym_STAR] = ACTIONS(4520), + [anon_sym_SLASH] = ACTIONS(4520), + [anon_sym_PERCENT] = ACTIONS(4520), + [anon_sym_PIPE_PIPE] = ACTIONS(4522), + [anon_sym_AMP_AMP] = ACTIONS(4522), + [anon_sym_PIPE] = ACTIONS(4520), + [anon_sym_CARET] = ACTIONS(4520), + [anon_sym_AMP] = ACTIONS(4520), + [anon_sym_EQ_EQ] = ACTIONS(4522), + [anon_sym_BANG_EQ] = ACTIONS(4522), + [anon_sym_GT] = ACTIONS(4520), + [anon_sym_GT_EQ] = ACTIONS(4522), + [anon_sym_LT_EQ] = ACTIONS(4520), + [anon_sym_LT] = ACTIONS(4520), + [anon_sym_LT_LT] = ACTIONS(4520), + [anon_sym_GT_GT] = ACTIONS(4520), + [anon_sym_SEMI] = ACTIONS(4522), + [anon_sym___extension__] = ACTIONS(4520), + [anon_sym___attribute__] = ACTIONS(4520), + [anon_sym___attribute] = ACTIONS(4520), + [anon_sym_LBRACE] = ACTIONS(4522), + [anon_sym_RBRACE] = ACTIONS(4522), + [anon_sym_signed] = ACTIONS(6350), + [anon_sym_unsigned] = ACTIONS(6350), + [anon_sym_long] = ACTIONS(6350), + [anon_sym_short] = ACTIONS(6350), + [anon_sym_LBRACK] = ACTIONS(4522), + [anon_sym_RBRACK] = ACTIONS(4522), + [anon_sym_EQ] = 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__Nonnull] = ACTIONS(4520), + [anon_sym_mutable] = ACTIONS(4520), + [anon_sym_constinit] = ACTIONS(4520), + [anon_sym_consteval] = ACTIONS(4520), + [anon_sym_alignas] = ACTIONS(4520), + [anon_sym__Alignas] = ACTIONS(4520), + [sym_primitive_type] = ACTIONS(4520), + [anon_sym_COLON] = ACTIONS(4522), + [anon_sym_QMARK] = ACTIONS(4522), + [anon_sym_STAR_EQ] = ACTIONS(4522), + [anon_sym_SLASH_EQ] = ACTIONS(4522), + [anon_sym_PERCENT_EQ] = ACTIONS(4522), + [anon_sym_PLUS_EQ] = ACTIONS(4522), + [anon_sym_DASH_EQ] = ACTIONS(4522), + [anon_sym_LT_LT_EQ] = ACTIONS(4522), + [anon_sym_GT_GT_EQ] = ACTIONS(4522), + [anon_sym_AMP_EQ] = ACTIONS(4522), + [anon_sym_CARET_EQ] = ACTIONS(4522), + [anon_sym_PIPE_EQ] = ACTIONS(4522), + [anon_sym_and_eq] = ACTIONS(4520), + [anon_sym_or_eq] = ACTIONS(4520), + [anon_sym_xor_eq] = ACTIONS(4520), + [anon_sym_LT_EQ_GT] = ACTIONS(4522), + [anon_sym_or] = ACTIONS(4520), + [anon_sym_and] = ACTIONS(4520), + [anon_sym_bitor] = ACTIONS(4520), + [anon_sym_xor] = ACTIONS(4520), + [anon_sym_bitand] = ACTIONS(4520), + [anon_sym_not_eq] = ACTIONS(4520), + [anon_sym_DASH_DASH] = ACTIONS(4522), + [anon_sym_PLUS_PLUS] = ACTIONS(4522), + [anon_sym_DOT] = ACTIONS(4520), + [anon_sym_DOT_STAR] = ACTIONS(4522), + [anon_sym_DASH_GT] = ACTIONS(4522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4520), + [anon_sym_decltype] = ACTIONS(4520), + }, + [STATE(2358)] = { + [sym_identifier] = ACTIONS(4269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [aux_sym_preproc_if_token2] = ACTIONS(4271), + [aux_sym_preproc_else_token1] = ACTIONS(4271), + [aux_sym_preproc_elif_token1] = ACTIONS(4269), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_PLUS] = ACTIONS(4269), + [anon_sym_STAR] = ACTIONS(4269), + [anon_sym_SLASH] = ACTIONS(4269), + [anon_sym_PERCENT] = ACTIONS(4269), + [anon_sym_PIPE_PIPE] = ACTIONS(4271), + [anon_sym_AMP_AMP] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4269), + [anon_sym_CARET] = ACTIONS(4269), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_EQ_EQ] = ACTIONS(4271), + [anon_sym_BANG_EQ] = ACTIONS(4271), + [anon_sym_GT] = ACTIONS(4269), + [anon_sym_GT_EQ] = ACTIONS(4271), + [anon_sym_LT_EQ] = ACTIONS(4269), + [anon_sym_LT] = ACTIONS(4269), + [anon_sym_LT_LT] = ACTIONS(4269), + [anon_sym_GT_GT] = ACTIONS(4269), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym___extension__] = ACTIONS(4269), + [anon_sym___attribute__] = ACTIONS(4269), + [anon_sym___attribute] = ACTIONS(4269), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_RBRACE] = ACTIONS(4271), + [anon_sym_signed] = ACTIONS(4269), + [anon_sym_unsigned] = ACTIONS(4269), + [anon_sym_long] = ACTIONS(4269), + [anon_sym_short] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_RBRACK] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4269), + [anon_sym_const] = ACTIONS(4269), + [anon_sym_constexpr] = ACTIONS(4269), + [anon_sym_volatile] = ACTIONS(4269), + [anon_sym_restrict] = ACTIONS(4269), + [anon_sym___restrict__] = ACTIONS(4269), + [anon_sym__Atomic] = ACTIONS(4269), + [anon_sym__Noreturn] = ACTIONS(4269), + [anon_sym_noreturn] = ACTIONS(4269), + [anon_sym__Nonnull] = ACTIONS(4269), + [anon_sym_mutable] = ACTIONS(4269), + [anon_sym_constinit] = ACTIONS(4269), + [anon_sym_consteval] = ACTIONS(4269), + [anon_sym_alignas] = ACTIONS(4269), + [anon_sym__Alignas] = ACTIONS(4269), + [sym_primitive_type] = ACTIONS(4269), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_STAR_EQ] = ACTIONS(4271), + [anon_sym_SLASH_EQ] = ACTIONS(4271), + [anon_sym_PERCENT_EQ] = ACTIONS(4271), + [anon_sym_PLUS_EQ] = ACTIONS(4271), + [anon_sym_DASH_EQ] = ACTIONS(4271), + [anon_sym_LT_LT_EQ] = ACTIONS(4271), + [anon_sym_GT_GT_EQ] = ACTIONS(4271), + [anon_sym_AMP_EQ] = ACTIONS(4271), + [anon_sym_CARET_EQ] = ACTIONS(4271), + [anon_sym_PIPE_EQ] = ACTIONS(4271), + [anon_sym_and_eq] = ACTIONS(4269), + [anon_sym_or_eq] = ACTIONS(4269), + [anon_sym_xor_eq] = ACTIONS(4269), + [anon_sym_LT_EQ_GT] = ACTIONS(4271), + [anon_sym_or] = ACTIONS(4269), + [anon_sym_and] = ACTIONS(4269), + [anon_sym_bitor] = ACTIONS(4269), + [anon_sym_xor] = ACTIONS(4269), + [anon_sym_bitand] = ACTIONS(4269), + [anon_sym_not_eq] = ACTIONS(4269), + [anon_sym_DASH_DASH] = ACTIONS(4271), + [anon_sym_PLUS_PLUS] = ACTIONS(4271), + [anon_sym_DOT] = ACTIONS(4269), + [anon_sym_DOT_STAR] = ACTIONS(4271), + [anon_sym_DASH_GT] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4269), + [anon_sym_decltype] = ACTIONS(4269), + }, + [STATE(2359)] = { + [sym_identifier] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1893), + [anon_sym_COMMA] = ACTIONS(1893), + [anon_sym_RPAREN] = ACTIONS(1893), + [aux_sym_preproc_if_token2] = ACTIONS(1893), + [aux_sym_preproc_else_token1] = ACTIONS(1893), + [aux_sym_preproc_elif_token1] = ACTIONS(1903), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1893), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1893), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_PLUS] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1903), + [anon_sym_SLASH] = ACTIONS(1903), + [anon_sym_PERCENT] = ACTIONS(1903), + [anon_sym_PIPE_PIPE] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_EQ_EQ] = ACTIONS(1893), + [anon_sym_BANG_EQ] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(1893), + [anon_sym_LT_EQ] = ACTIONS(1903), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_LT_LT] = ACTIONS(1903), + [anon_sym_GT_GT] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym___extension__] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1893), + [anon_sym_RBRACK] = ACTIONS(1893), + [anon_sym_EQ] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_QMARK] = ACTIONS(1893), + [anon_sym_STAR_EQ] = ACTIONS(1893), + [anon_sym_SLASH_EQ] = ACTIONS(1893), + [anon_sym_PERCENT_EQ] = ACTIONS(1893), + [anon_sym_PLUS_EQ] = ACTIONS(1893), + [anon_sym_DASH_EQ] = ACTIONS(1893), + [anon_sym_LT_LT_EQ] = ACTIONS(1893), + [anon_sym_GT_GT_EQ] = ACTIONS(1893), + [anon_sym_AMP_EQ] = ACTIONS(1893), + [anon_sym_CARET_EQ] = ACTIONS(1893), + [anon_sym_PIPE_EQ] = ACTIONS(1893), + [anon_sym_and_eq] = ACTIONS(1903), + [anon_sym_or_eq] = ACTIONS(1903), + [anon_sym_xor_eq] = ACTIONS(1903), + [anon_sym_LT_EQ_GT] = ACTIONS(1893), + [anon_sym_or] = ACTIONS(1903), + [anon_sym_and] = ACTIONS(1903), + [anon_sym_bitor] = ACTIONS(1903), + [anon_sym_xor] = ACTIONS(1903), + [anon_sym_bitand] = ACTIONS(1903), + [anon_sym_not_eq] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1893), + [anon_sym_PLUS_PLUS] = ACTIONS(1893), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_STAR] = ACTIONS(1893), + [anon_sym_DASH_GT] = ACTIONS(1893), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1903), + }, + [STATE(2360)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2359), + [aux_sym__type_definition_type_repeat1] = STATE(2363), + [aux_sym_sized_type_specifier_repeat1] = STATE(2374), + [sym_identifier] = ACTIONS(6353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4721), + [anon_sym_COMMA] = ACTIONS(4721), + [anon_sym_RPAREN] = ACTIONS(4721), + [anon_sym_LPAREN2] = ACTIONS(4721), + [anon_sym_DASH] = ACTIONS(4723), + [anon_sym_PLUS] = ACTIONS(4723), + [anon_sym_STAR] = ACTIONS(4723), + [anon_sym_SLASH] = ACTIONS(4723), + [anon_sym_PERCENT] = ACTIONS(4723), + [anon_sym_PIPE_PIPE] = ACTIONS(4721), + [anon_sym_AMP_AMP] = ACTIONS(4721), + [anon_sym_PIPE] = ACTIONS(4723), + [anon_sym_CARET] = ACTIONS(4723), + [anon_sym_AMP] = ACTIONS(4723), + [anon_sym_EQ_EQ] = ACTIONS(4721), + [anon_sym_BANG_EQ] = ACTIONS(4721), + [anon_sym_GT] = ACTIONS(4723), + [anon_sym_GT_EQ] = ACTIONS(4721), + [anon_sym_LT_EQ] = ACTIONS(4723), + [anon_sym_LT] = ACTIONS(4723), + [anon_sym_LT_LT] = ACTIONS(4723), + [anon_sym_GT_GT] = ACTIONS(4723), + [anon_sym_SEMI] = ACTIONS(4721), + [anon_sym___extension__] = ACTIONS(6355), + [anon_sym___attribute__] = ACTIONS(4723), + [anon_sym___attribute] = ACTIONS(4723), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_RBRACE] = ACTIONS(4721), + [anon_sym_signed] = ACTIONS(6357), + [anon_sym_unsigned] = ACTIONS(6357), + [anon_sym_long] = ACTIONS(6357), + [anon_sym_short] = ACTIONS(6357), + [anon_sym_LBRACK] = ACTIONS(4721), + [anon_sym_RBRACK] = ACTIONS(4721), + [anon_sym_EQ] = ACTIONS(4723), + [anon_sym_const] = ACTIONS(6355), + [anon_sym_constexpr] = ACTIONS(6355), + [anon_sym_volatile] = ACTIONS(6355), + [anon_sym_restrict] = ACTIONS(6355), + [anon_sym___restrict__] = ACTIONS(6355), + [anon_sym__Atomic] = ACTIONS(6355), + [anon_sym__Noreturn] = ACTIONS(6355), + [anon_sym_noreturn] = ACTIONS(6355), + [anon_sym__Nonnull] = ACTIONS(6355), + [anon_sym_mutable] = ACTIONS(6355), + [anon_sym_constinit] = ACTIONS(6355), + [anon_sym_consteval] = ACTIONS(6355), + [anon_sym_alignas] = ACTIONS(6359), + [anon_sym__Alignas] = ACTIONS(6359), + [sym_primitive_type] = ACTIONS(6361), + [anon_sym_COLON] = ACTIONS(4721), + [anon_sym_QMARK] = ACTIONS(4721), + [anon_sym_STAR_EQ] = ACTIONS(4721), + [anon_sym_SLASH_EQ] = ACTIONS(4721), + [anon_sym_PERCENT_EQ] = ACTIONS(4721), + [anon_sym_PLUS_EQ] = ACTIONS(4721), + [anon_sym_DASH_EQ] = ACTIONS(4721), + [anon_sym_LT_LT_EQ] = ACTIONS(4721), + [anon_sym_GT_GT_EQ] = ACTIONS(4721), + [anon_sym_AMP_EQ] = ACTIONS(4721), + [anon_sym_CARET_EQ] = ACTIONS(4721), + [anon_sym_PIPE_EQ] = ACTIONS(4721), + [anon_sym_and_eq] = ACTIONS(4723), + [anon_sym_or_eq] = ACTIONS(4723), + [anon_sym_xor_eq] = ACTIONS(4723), + [anon_sym_LT_EQ_GT] = ACTIONS(4721), + [anon_sym_or] = ACTIONS(4723), + [anon_sym_and] = ACTIONS(4723), + [anon_sym_bitor] = ACTIONS(4723), + [anon_sym_xor] = ACTIONS(4723), + [anon_sym_bitand] = ACTIONS(4723), + [anon_sym_not_eq] = ACTIONS(4723), + [anon_sym_DASH_DASH] = ACTIONS(4721), + [anon_sym_PLUS_PLUS] = ACTIONS(4721), + [anon_sym_DOT] = ACTIONS(4723), + [anon_sym_DOT_STAR] = ACTIONS(4721), + [anon_sym_DASH_GT] = ACTIONS(4721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4723), + [anon_sym_decltype] = ACTIONS(4723), + }, + [STATE(2361)] = { + [sym_type_qualifier] = STATE(2362), + [sym_alignas_qualifier] = STATE(2359), + [aux_sym__type_definition_type_repeat1] = STATE(2362), + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [sym_identifier] = ACTIONS(6363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4721), + [anon_sym_COMMA] = ACTIONS(4721), + [aux_sym_preproc_if_token2] = ACTIONS(4721), + [aux_sym_preproc_else_token1] = ACTIONS(4721), + [aux_sym_preproc_elif_token1] = ACTIONS(4723), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4721), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4721), + [anon_sym_LPAREN2] = ACTIONS(4721), + [anon_sym_DASH] = ACTIONS(4723), + [anon_sym_PLUS] = ACTIONS(4723), + [anon_sym_STAR] = ACTIONS(4723), + [anon_sym_SLASH] = ACTIONS(4723), + [anon_sym_PERCENT] = ACTIONS(4723), + [anon_sym_PIPE_PIPE] = ACTIONS(4721), + [anon_sym_AMP_AMP] = ACTIONS(4721), + [anon_sym_PIPE] = ACTIONS(4723), + [anon_sym_CARET] = ACTIONS(4723), + [anon_sym_AMP] = ACTIONS(4723), + [anon_sym_EQ_EQ] = ACTIONS(4721), + [anon_sym_BANG_EQ] = ACTIONS(4721), + [anon_sym_GT] = ACTIONS(4723), + [anon_sym_GT_EQ] = ACTIONS(4721), + [anon_sym_LT_EQ] = ACTIONS(4723), + [anon_sym_LT] = ACTIONS(4723), + [anon_sym_LT_LT] = ACTIONS(4723), + [anon_sym_GT_GT] = ACTIONS(4723), + [anon_sym___extension__] = ACTIONS(6355), + [anon_sym___attribute__] = ACTIONS(4723), + [anon_sym___attribute] = ACTIONS(4723), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_signed] = ACTIONS(6366), + [anon_sym_unsigned] = ACTIONS(6366), + [anon_sym_long] = ACTIONS(6366), + [anon_sym_short] = ACTIONS(6366), + [anon_sym_LBRACK] = ACTIONS(4721), + [anon_sym_EQ] = ACTIONS(4723), + [anon_sym_const] = ACTIONS(6355), + [anon_sym_constexpr] = ACTIONS(6355), + [anon_sym_volatile] = ACTIONS(6355), + [anon_sym_restrict] = ACTIONS(6355), + [anon_sym___restrict__] = ACTIONS(6355), + [anon_sym__Atomic] = ACTIONS(6355), + [anon_sym__Noreturn] = ACTIONS(6355), + [anon_sym_noreturn] = ACTIONS(6355), + [anon_sym__Nonnull] = ACTIONS(6355), + [anon_sym_mutable] = ACTIONS(6355), + [anon_sym_constinit] = ACTIONS(6355), + [anon_sym_consteval] = ACTIONS(6355), + [anon_sym_alignas] = ACTIONS(6359), + [anon_sym__Alignas] = ACTIONS(6359), + [sym_primitive_type] = ACTIONS(6368), + [anon_sym_QMARK] = ACTIONS(4721), + [anon_sym_STAR_EQ] = ACTIONS(4721), + [anon_sym_SLASH_EQ] = ACTIONS(4721), + [anon_sym_PERCENT_EQ] = ACTIONS(4721), + [anon_sym_PLUS_EQ] = ACTIONS(4721), + [anon_sym_DASH_EQ] = ACTIONS(4721), + [anon_sym_LT_LT_EQ] = ACTIONS(4721), + [anon_sym_GT_GT_EQ] = ACTIONS(4721), + [anon_sym_AMP_EQ] = ACTIONS(4721), + [anon_sym_CARET_EQ] = ACTIONS(4721), + [anon_sym_PIPE_EQ] = ACTIONS(4721), + [anon_sym_and_eq] = ACTIONS(4723), + [anon_sym_or_eq] = ACTIONS(4723), + [anon_sym_xor_eq] = ACTIONS(4723), + [anon_sym_LT_EQ_GT] = ACTIONS(4721), + [anon_sym_or] = ACTIONS(4723), + [anon_sym_and] = ACTIONS(4723), + [anon_sym_bitor] = ACTIONS(4723), + [anon_sym_xor] = ACTIONS(4723), + [anon_sym_bitand] = ACTIONS(4723), + [anon_sym_not_eq] = ACTIONS(4723), + [anon_sym_DASH_DASH] = ACTIONS(4721), + [anon_sym_PLUS_PLUS] = ACTIONS(4721), + [anon_sym_DOT] = ACTIONS(4723), + [anon_sym_DOT_STAR] = ACTIONS(4721), + [anon_sym_DASH_GT] = ACTIONS(4721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4723), + [anon_sym_decltype] = ACTIONS(4723), + }, + [STATE(2362)] = { + [sym_type_qualifier] = STATE(2319), + [sym_alignas_qualifier] = STATE(2359), + [aux_sym__type_definition_type_repeat1] = STATE(2319), + [aux_sym_sized_type_specifier_repeat1] = STATE(2644), + [sym_identifier] = ACTIONS(6370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [aux_sym_preproc_if_token2] = ACTIONS(4674), + [aux_sym_preproc_else_token1] = ACTIONS(4674), + [aux_sym_preproc_elif_token1] = ACTIONS(4676), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4674), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4674), + [anon_sym_LPAREN2] = ACTIONS(4674), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_PLUS] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4676), + [anon_sym_SLASH] = ACTIONS(4676), + [anon_sym_PERCENT] = ACTIONS(4676), + [anon_sym_PIPE_PIPE] = ACTIONS(4674), + [anon_sym_AMP_AMP] = ACTIONS(4674), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4676), + [anon_sym_AMP] = ACTIONS(4676), + [anon_sym_EQ_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4674), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4674), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_LT_LT] = ACTIONS(4676), + [anon_sym_GT_GT] = ACTIONS(4676), + [anon_sym___extension__] = ACTIONS(6355), + [anon_sym___attribute__] = ACTIONS(4676), + [anon_sym___attribute] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_signed] = ACTIONS(6373), + [anon_sym_unsigned] = ACTIONS(6373), + [anon_sym_long] = ACTIONS(6373), + [anon_sym_short] = ACTIONS(6373), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_const] = ACTIONS(6355), + [anon_sym_constexpr] = ACTIONS(6355), + [anon_sym_volatile] = ACTIONS(6355), + [anon_sym_restrict] = ACTIONS(6355), + [anon_sym___restrict__] = ACTIONS(6355), + [anon_sym__Atomic] = ACTIONS(6355), + [anon_sym__Noreturn] = ACTIONS(6355), + [anon_sym_noreturn] = ACTIONS(6355), + [anon_sym__Nonnull] = ACTIONS(6355), + [anon_sym_mutable] = ACTIONS(6355), + [anon_sym_constinit] = ACTIONS(6355), + [anon_sym_consteval] = ACTIONS(6355), + [anon_sym_alignas] = ACTIONS(6359), + [anon_sym__Alignas] = ACTIONS(6359), + [sym_primitive_type] = ACTIONS(6375), + [anon_sym_QMARK] = ACTIONS(4674), + [anon_sym_STAR_EQ] = ACTIONS(4674), + [anon_sym_SLASH_EQ] = ACTIONS(4674), + [anon_sym_PERCENT_EQ] = ACTIONS(4674), + [anon_sym_PLUS_EQ] = ACTIONS(4674), + [anon_sym_DASH_EQ] = ACTIONS(4674), + [anon_sym_LT_LT_EQ] = ACTIONS(4674), + [anon_sym_GT_GT_EQ] = ACTIONS(4674), + [anon_sym_AMP_EQ] = ACTIONS(4674), + [anon_sym_CARET_EQ] = ACTIONS(4674), + [anon_sym_PIPE_EQ] = ACTIONS(4674), + [anon_sym_and_eq] = ACTIONS(4676), + [anon_sym_or_eq] = ACTIONS(4676), + [anon_sym_xor_eq] = ACTIONS(4676), + [anon_sym_LT_EQ_GT] = ACTIONS(4674), + [anon_sym_or] = ACTIONS(4676), + [anon_sym_and] = ACTIONS(4676), + [anon_sym_bitor] = ACTIONS(4676), + [anon_sym_xor] = ACTIONS(4676), + [anon_sym_bitand] = ACTIONS(4676), + [anon_sym_not_eq] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4674), + [anon_sym_PLUS_PLUS] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_DOT_STAR] = ACTIONS(4674), + [anon_sym_DASH_GT] = ACTIONS(4674), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4676), + [anon_sym_decltype] = ACTIONS(4676), + }, + [STATE(2363)] = { + [sym_type_qualifier] = STATE(2319), + [sym_alignas_qualifier] = STATE(2359), + [aux_sym__type_definition_type_repeat1] = STATE(2319), + [aux_sym_sized_type_specifier_repeat1] = STATE(2754), + [sym_identifier] = ACTIONS(6377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_RPAREN] = ACTIONS(4674), + [anon_sym_LPAREN2] = ACTIONS(4674), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_PLUS] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4676), + [anon_sym_SLASH] = ACTIONS(4676), + [anon_sym_PERCENT] = ACTIONS(4676), + [anon_sym_PIPE_PIPE] = ACTIONS(4674), + [anon_sym_AMP_AMP] = ACTIONS(4674), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4676), + [anon_sym_AMP] = ACTIONS(4676), + [anon_sym_EQ_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4674), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4674), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_LT_LT] = ACTIONS(4676), + [anon_sym_GT_GT] = ACTIONS(4676), + [anon_sym_SEMI] = ACTIONS(4674), + [anon_sym___extension__] = ACTIONS(6355), + [anon_sym___attribute__] = ACTIONS(4676), + [anon_sym___attribute] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(4674), + [anon_sym_signed] = ACTIONS(6379), + [anon_sym_unsigned] = ACTIONS(6379), + [anon_sym_long] = ACTIONS(6379), + [anon_sym_short] = ACTIONS(6379), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_RBRACK] = ACTIONS(4674), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_const] = ACTIONS(6355), + [anon_sym_constexpr] = ACTIONS(6355), + [anon_sym_volatile] = ACTIONS(6355), + [anon_sym_restrict] = ACTIONS(6355), + [anon_sym___restrict__] = ACTIONS(6355), + [anon_sym__Atomic] = ACTIONS(6355), + [anon_sym__Noreturn] = ACTIONS(6355), + [anon_sym_noreturn] = ACTIONS(6355), + [anon_sym__Nonnull] = ACTIONS(6355), + [anon_sym_mutable] = ACTIONS(6355), + [anon_sym_constinit] = ACTIONS(6355), + [anon_sym_consteval] = ACTIONS(6355), + [anon_sym_alignas] = ACTIONS(6359), + [anon_sym__Alignas] = ACTIONS(6359), + [sym_primitive_type] = ACTIONS(6381), + [anon_sym_COLON] = ACTIONS(4674), + [anon_sym_QMARK] = ACTIONS(4674), + [anon_sym_STAR_EQ] = ACTIONS(4674), + [anon_sym_SLASH_EQ] = ACTIONS(4674), + [anon_sym_PERCENT_EQ] = ACTIONS(4674), + [anon_sym_PLUS_EQ] = ACTIONS(4674), + [anon_sym_DASH_EQ] = ACTIONS(4674), + [anon_sym_LT_LT_EQ] = ACTIONS(4674), + [anon_sym_GT_GT_EQ] = ACTIONS(4674), + [anon_sym_AMP_EQ] = ACTIONS(4674), + [anon_sym_CARET_EQ] = ACTIONS(4674), + [anon_sym_PIPE_EQ] = ACTIONS(4674), + [anon_sym_and_eq] = ACTIONS(4676), + [anon_sym_or_eq] = ACTIONS(4676), + [anon_sym_xor_eq] = ACTIONS(4676), + [anon_sym_LT_EQ_GT] = ACTIONS(4674), + [anon_sym_or] = ACTIONS(4676), + [anon_sym_and] = ACTIONS(4676), + [anon_sym_bitor] = ACTIONS(4676), + [anon_sym_xor] = ACTIONS(4676), + [anon_sym_bitand] = ACTIONS(4676), + [anon_sym_not_eq] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4674), + [anon_sym_PLUS_PLUS] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_DOT_STAR] = ACTIONS(4674), + [anon_sym_DASH_GT] = ACTIONS(4674), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4676), + [anon_sym_decltype] = ACTIONS(4676), + }, + [STATE(2364)] = { + [sym_identifier] = ACTIONS(3268), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3270), + [anon_sym_COMMA] = ACTIONS(3270), + [anon_sym_RPAREN] = ACTIONS(3270), + [aux_sym_preproc_if_token2] = ACTIONS(3270), + [aux_sym_preproc_else_token1] = ACTIONS(3270), + [aux_sym_preproc_elif_token1] = ACTIONS(3268), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3270), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3270), + [anon_sym_LPAREN2] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_PIPE_PIPE] = ACTIONS(3270), + [anon_sym_AMP_AMP] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3268), + [anon_sym_CARET] = ACTIONS(3268), + [anon_sym_AMP] = ACTIONS(3268), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_GT_EQ] = ACTIONS(3270), + [anon_sym_LT_EQ] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_LT_LT] = ACTIONS(3268), + [anon_sym_GT_GT] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym___extension__] = ACTIONS(3268), + [anon_sym___attribute__] = ACTIONS(3268), + [anon_sym___attribute] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_RBRACE] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_RBRACK] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_constexpr] = ACTIONS(3268), + [anon_sym_volatile] = ACTIONS(3268), + [anon_sym_restrict] = ACTIONS(3268), + [anon_sym___restrict__] = ACTIONS(3268), + [anon_sym__Atomic] = ACTIONS(3268), + [anon_sym__Noreturn] = ACTIONS(3268), + [anon_sym_noreturn] = ACTIONS(3268), + [anon_sym__Nonnull] = ACTIONS(3268), + [anon_sym_mutable] = ACTIONS(3268), + [anon_sym_constinit] = ACTIONS(3268), + [anon_sym_consteval] = ACTIONS(3268), + [anon_sym_alignas] = ACTIONS(3268), + [anon_sym__Alignas] = ACTIONS(3268), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_QMARK] = ACTIONS(3270), + [anon_sym_STAR_EQ] = ACTIONS(3270), + [anon_sym_SLASH_EQ] = ACTIONS(3270), + [anon_sym_PERCENT_EQ] = ACTIONS(3270), + [anon_sym_PLUS_EQ] = ACTIONS(3270), + [anon_sym_DASH_EQ] = ACTIONS(3270), + [anon_sym_LT_LT_EQ] = ACTIONS(3270), + [anon_sym_GT_GT_EQ] = ACTIONS(3270), + [anon_sym_AMP_EQ] = ACTIONS(3270), + [anon_sym_CARET_EQ] = ACTIONS(3270), + [anon_sym_PIPE_EQ] = ACTIONS(3270), + [anon_sym_and_eq] = ACTIONS(3268), + [anon_sym_or_eq] = ACTIONS(3268), + [anon_sym_xor_eq] = ACTIONS(3268), + [anon_sym_LT_EQ_GT] = ACTIONS(3270), + [anon_sym_or] = ACTIONS(3268), + [anon_sym_and] = ACTIONS(3268), + [anon_sym_bitor] = ACTIONS(3268), + [anon_sym_xor] = ACTIONS(3268), + [anon_sym_bitand] = ACTIONS(3268), + [anon_sym_not_eq] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_DOT_STAR] = ACTIONS(3270), + [anon_sym_DASH_GT] = ACTIONS(3270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3268), + [anon_sym_decltype] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + }, + [STATE(2365)] = { + [sym_identifier] = ACTIONS(3260), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [aux_sym_preproc_if_token2] = ACTIONS(3262), + [aux_sym_preproc_else_token1] = ACTIONS(3262), + [aux_sym_preproc_elif_token1] = ACTIONS(3260), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3262), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_STAR] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3260), + [anon_sym_PERCENT] = ACTIONS(3260), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE] = ACTIONS(3260), + [anon_sym_CARET] = ACTIONS(3260), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3260), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_LT_LT] = ACTIONS(3260), + [anon_sym_GT_GT] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym___extension__] = ACTIONS(3260), + [anon_sym___attribute__] = ACTIONS(3260), + [anon_sym___attribute] = ACTIONS(3260), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_RBRACK] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_constexpr] = ACTIONS(3260), + [anon_sym_volatile] = ACTIONS(3260), + [anon_sym_restrict] = ACTIONS(3260), + [anon_sym___restrict__] = ACTIONS(3260), + [anon_sym__Atomic] = ACTIONS(3260), + [anon_sym__Noreturn] = ACTIONS(3260), + [anon_sym_noreturn] = ACTIONS(3260), + [anon_sym__Nonnull] = ACTIONS(3260), + [anon_sym_mutable] = ACTIONS(3260), + [anon_sym_constinit] = ACTIONS(3260), + [anon_sym_consteval] = ACTIONS(3260), + [anon_sym_alignas] = ACTIONS(3260), + [anon_sym__Alignas] = ACTIONS(3260), + [anon_sym_COLON] = ACTIONS(3260), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_STAR_EQ] = ACTIONS(3262), + [anon_sym_SLASH_EQ] = ACTIONS(3262), + [anon_sym_PERCENT_EQ] = ACTIONS(3262), + [anon_sym_PLUS_EQ] = ACTIONS(3262), + [anon_sym_DASH_EQ] = ACTIONS(3262), + [anon_sym_LT_LT_EQ] = ACTIONS(3262), + [anon_sym_GT_GT_EQ] = ACTIONS(3262), + [anon_sym_AMP_EQ] = ACTIONS(3262), + [anon_sym_CARET_EQ] = ACTIONS(3262), + [anon_sym_PIPE_EQ] = ACTIONS(3262), + [anon_sym_and_eq] = ACTIONS(3260), + [anon_sym_or_eq] = ACTIONS(3260), + [anon_sym_xor_eq] = ACTIONS(3260), + [anon_sym_LT_EQ_GT] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3260), + [anon_sym_and] = ACTIONS(3260), + [anon_sym_bitor] = ACTIONS(3260), + [anon_sym_xor] = ACTIONS(3260), + [anon_sym_bitand] = ACTIONS(3260), + [anon_sym_not_eq] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3260), + [anon_sym_DOT_STAR] = ACTIONS(3262), + [anon_sym_DASH_GT] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3260), + [anon_sym_decltype] = ACTIONS(3260), + [anon_sym_final] = ACTIONS(3260), + [anon_sym_override] = ACTIONS(3260), + }, + [STATE(2366)] = { + [sym_identifier] = ACTIONS(3264), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [aux_sym_preproc_if_token2] = ACTIONS(3266), + [aux_sym_preproc_else_token1] = ACTIONS(3266), + [aux_sym_preproc_elif_token1] = ACTIONS(3264), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3266), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_CARET] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3264), + [anon_sym_EQ_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3266), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_LT_LT] = ACTIONS(3264), + [anon_sym_GT_GT] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym___extension__] = ACTIONS(3264), + [anon_sym___attribute__] = ACTIONS(3264), + [anon_sym___attribute] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_const] = ACTIONS(3264), + [anon_sym_constexpr] = ACTIONS(3264), + [anon_sym_volatile] = ACTIONS(3264), + [anon_sym_restrict] = ACTIONS(3264), + [anon_sym___restrict__] = ACTIONS(3264), + [anon_sym__Atomic] = ACTIONS(3264), + [anon_sym__Noreturn] = ACTIONS(3264), + [anon_sym_noreturn] = ACTIONS(3264), + [anon_sym__Nonnull] = ACTIONS(3264), + [anon_sym_mutable] = ACTIONS(3264), + [anon_sym_constinit] = ACTIONS(3264), + [anon_sym_consteval] = ACTIONS(3264), + [anon_sym_alignas] = ACTIONS(3264), + [anon_sym__Alignas] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3264), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_LT_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_GT_EQ] = ACTIONS(3266), + [anon_sym_AMP_EQ] = ACTIONS(3266), + [anon_sym_CARET_EQ] = ACTIONS(3266), + [anon_sym_PIPE_EQ] = ACTIONS(3266), + [anon_sym_and_eq] = ACTIONS(3264), + [anon_sym_or_eq] = ACTIONS(3264), + [anon_sym_xor_eq] = ACTIONS(3264), + [anon_sym_LT_EQ_GT] = ACTIONS(3266), + [anon_sym_or] = ACTIONS(3264), + [anon_sym_and] = ACTIONS(3264), + [anon_sym_bitor] = ACTIONS(3264), + [anon_sym_xor] = ACTIONS(3264), + [anon_sym_bitand] = ACTIONS(3264), + [anon_sym_not_eq] = ACTIONS(3264), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_DOT_STAR] = ACTIONS(3266), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3264), + [anon_sym_final] = ACTIONS(3264), + [anon_sym_override] = ACTIONS(3264), + }, + [STATE(2367)] = { + [sym_identifier] = ACTIONS(3244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3246), + [anon_sym_COMMA] = ACTIONS(3246), + [anon_sym_RPAREN] = ACTIONS(3246), + [aux_sym_preproc_if_token2] = ACTIONS(3246), + [aux_sym_preproc_else_token1] = ACTIONS(3246), + [aux_sym_preproc_elif_token1] = ACTIONS(3244), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3246), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3246), + [anon_sym_LPAREN2] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_PIPE_PIPE] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3244), + [anon_sym_CARET] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3244), + [anon_sym_EQ_EQ] = ACTIONS(3246), + [anon_sym_BANG_EQ] = ACTIONS(3246), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_GT_EQ] = ACTIONS(3246), + [anon_sym_LT_EQ] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_LT_LT] = ACTIONS(3244), + [anon_sym_GT_GT] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym___extension__] = ACTIONS(3244), + [anon_sym___attribute__] = ACTIONS(3244), + [anon_sym___attribute] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3246), + [anon_sym_RBRACK] = ACTIONS(3246), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_constexpr] = ACTIONS(3244), + [anon_sym_volatile] = ACTIONS(3244), + [anon_sym_restrict] = ACTIONS(3244), + [anon_sym___restrict__] = ACTIONS(3244), + [anon_sym__Atomic] = ACTIONS(3244), + [anon_sym__Noreturn] = ACTIONS(3244), + [anon_sym_noreturn] = ACTIONS(3244), + [anon_sym__Nonnull] = ACTIONS(3244), + [anon_sym_mutable] = ACTIONS(3244), + [anon_sym_constinit] = ACTIONS(3244), + [anon_sym_consteval] = ACTIONS(3244), + [anon_sym_alignas] = ACTIONS(3244), + [anon_sym__Alignas] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_STAR_EQ] = ACTIONS(3246), + [anon_sym_SLASH_EQ] = ACTIONS(3246), + [anon_sym_PERCENT_EQ] = ACTIONS(3246), + [anon_sym_PLUS_EQ] = ACTIONS(3246), + [anon_sym_DASH_EQ] = ACTIONS(3246), + [anon_sym_LT_LT_EQ] = ACTIONS(3246), + [anon_sym_GT_GT_EQ] = ACTIONS(3246), + [anon_sym_AMP_EQ] = ACTIONS(3246), + [anon_sym_CARET_EQ] = ACTIONS(3246), + [anon_sym_PIPE_EQ] = ACTIONS(3246), + [anon_sym_and_eq] = ACTIONS(3244), + [anon_sym_or_eq] = ACTIONS(3244), + [anon_sym_xor_eq] = ACTIONS(3244), + [anon_sym_LT_EQ_GT] = ACTIONS(3246), + [anon_sym_or] = ACTIONS(3244), + [anon_sym_and] = ACTIONS(3244), + [anon_sym_bitor] = ACTIONS(3244), + [anon_sym_xor] = ACTIONS(3244), + [anon_sym_bitand] = ACTIONS(3244), + [anon_sym_not_eq] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_DOT_STAR] = ACTIONS(3246), + [anon_sym_DASH_GT] = ACTIONS(3246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3244), + [anon_sym_decltype] = ACTIONS(3244), + [anon_sym_final] = ACTIONS(3244), + [anon_sym_override] = ACTIONS(3244), + }, + [STATE(2368)] = { + [sym_identifier] = ACTIONS(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3250), + [anon_sym_COMMA] = ACTIONS(3250), + [anon_sym_RPAREN] = ACTIONS(3250), + [aux_sym_preproc_if_token2] = ACTIONS(3250), + [aux_sym_preproc_else_token1] = ACTIONS(3250), + [aux_sym_preproc_elif_token1] = ACTIONS(3248), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3250), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3250), + [anon_sym_LPAREN2] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3248), + [anon_sym_CARET] = ACTIONS(3248), + [anon_sym_AMP] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3250), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_LT_LT] = ACTIONS(3248), + [anon_sym_GT_GT] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym___extension__] = ACTIONS(3248), + [anon_sym___attribute__] = ACTIONS(3248), + [anon_sym___attribute] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3250), + [anon_sym_RBRACK] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_constexpr] = ACTIONS(3248), + [anon_sym_volatile] = ACTIONS(3248), + [anon_sym_restrict] = ACTIONS(3248), + [anon_sym___restrict__] = ACTIONS(3248), + [anon_sym__Atomic] = ACTIONS(3248), + [anon_sym__Noreturn] = ACTIONS(3248), + [anon_sym_noreturn] = ACTIONS(3248), + [anon_sym__Nonnull] = ACTIONS(3248), + [anon_sym_mutable] = ACTIONS(3248), + [anon_sym_constinit] = ACTIONS(3248), + [anon_sym_consteval] = ACTIONS(3248), + [anon_sym_alignas] = ACTIONS(3248), + [anon_sym__Alignas] = ACTIONS(3248), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_QMARK] = ACTIONS(3250), + [anon_sym_STAR_EQ] = ACTIONS(3250), + [anon_sym_SLASH_EQ] = ACTIONS(3250), + [anon_sym_PERCENT_EQ] = ACTIONS(3250), + [anon_sym_PLUS_EQ] = ACTIONS(3250), + [anon_sym_DASH_EQ] = ACTIONS(3250), + [anon_sym_LT_LT_EQ] = ACTIONS(3250), + [anon_sym_GT_GT_EQ] = ACTIONS(3250), + [anon_sym_AMP_EQ] = ACTIONS(3250), + [anon_sym_CARET_EQ] = ACTIONS(3250), + [anon_sym_PIPE_EQ] = ACTIONS(3250), + [anon_sym_and_eq] = ACTIONS(3248), + [anon_sym_or_eq] = ACTIONS(3248), + [anon_sym_xor_eq] = ACTIONS(3248), + [anon_sym_LT_EQ_GT] = ACTIONS(3250), + [anon_sym_or] = ACTIONS(3248), + [anon_sym_and] = ACTIONS(3248), + [anon_sym_bitor] = ACTIONS(3248), + [anon_sym_xor] = ACTIONS(3248), + [anon_sym_bitand] = ACTIONS(3248), + [anon_sym_not_eq] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DOT] = ACTIONS(3248), + [anon_sym_DOT_STAR] = ACTIONS(3250), + [anon_sym_DASH_GT] = ACTIONS(3250), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3248), + [anon_sym_decltype] = ACTIONS(3248), + [anon_sym_final] = ACTIONS(3248), + [anon_sym_override] = ACTIONS(3248), + }, + [STATE(2369)] = { + [sym_identifier] = ACTIONS(3256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3258), + [anon_sym_COMMA] = ACTIONS(3258), + [anon_sym_RPAREN] = ACTIONS(3258), + [aux_sym_preproc_if_token2] = ACTIONS(3258), + [aux_sym_preproc_else_token1] = ACTIONS(3258), + [aux_sym_preproc_elif_token1] = ACTIONS(3256), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3258), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3258), + [anon_sym_LPAREN2] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3256), + [anon_sym_SLASH] = ACTIONS(3256), + [anon_sym_PERCENT] = ACTIONS(3256), + [anon_sym_PIPE_PIPE] = ACTIONS(3258), + [anon_sym_AMP_AMP] = ACTIONS(3258), + [anon_sym_PIPE] = ACTIONS(3256), + [anon_sym_CARET] = ACTIONS(3256), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym_EQ_EQ] = ACTIONS(3258), + [anon_sym_BANG_EQ] = ACTIONS(3258), + [anon_sym_GT] = ACTIONS(3256), + [anon_sym_GT_EQ] = ACTIONS(3258), + [anon_sym_LT_EQ] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3256), + [anon_sym_LT_LT] = ACTIONS(3256), + [anon_sym_GT_GT] = ACTIONS(3256), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym___extension__] = ACTIONS(3256), + [anon_sym___attribute__] = ACTIONS(3256), + [anon_sym___attribute] = ACTIONS(3256), + [anon_sym_COLON_COLON] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3258), + [anon_sym_RBRACK] = ACTIONS(3258), + [anon_sym_EQ] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_constexpr] = ACTIONS(3256), + [anon_sym_volatile] = ACTIONS(3256), + [anon_sym_restrict] = ACTIONS(3256), + [anon_sym___restrict__] = ACTIONS(3256), + [anon_sym__Atomic] = ACTIONS(3256), + [anon_sym__Noreturn] = ACTIONS(3256), + [anon_sym_noreturn] = ACTIONS(3256), + [anon_sym__Nonnull] = ACTIONS(3256), + [anon_sym_mutable] = ACTIONS(3256), + [anon_sym_constinit] = ACTIONS(3256), + [anon_sym_consteval] = ACTIONS(3256), + [anon_sym_alignas] = ACTIONS(3256), + [anon_sym__Alignas] = ACTIONS(3256), + [anon_sym_COLON] = ACTIONS(3256), + [anon_sym_QMARK] = ACTIONS(3258), + [anon_sym_STAR_EQ] = ACTIONS(3258), + [anon_sym_SLASH_EQ] = ACTIONS(3258), + [anon_sym_PERCENT_EQ] = ACTIONS(3258), + [anon_sym_PLUS_EQ] = ACTIONS(3258), + [anon_sym_DASH_EQ] = ACTIONS(3258), + [anon_sym_LT_LT_EQ] = ACTIONS(3258), + [anon_sym_GT_GT_EQ] = ACTIONS(3258), + [anon_sym_AMP_EQ] = ACTIONS(3258), + [anon_sym_CARET_EQ] = ACTIONS(3258), + [anon_sym_PIPE_EQ] = ACTIONS(3258), + [anon_sym_and_eq] = ACTIONS(3256), + [anon_sym_or_eq] = ACTIONS(3256), + [anon_sym_xor_eq] = ACTIONS(3256), + [anon_sym_LT_EQ_GT] = ACTIONS(3258), + [anon_sym_or] = ACTIONS(3256), + [anon_sym_and] = ACTIONS(3256), + [anon_sym_bitor] = ACTIONS(3256), + [anon_sym_xor] = ACTIONS(3256), + [anon_sym_bitand] = ACTIONS(3256), + [anon_sym_not_eq] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DOT] = ACTIONS(3256), + [anon_sym_DOT_STAR] = ACTIONS(3258), + [anon_sym_DASH_GT] = ACTIONS(3258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3256), + [anon_sym_decltype] = ACTIONS(3256), + [anon_sym_final] = ACTIONS(3256), + [anon_sym_override] = ACTIONS(3256), + }, + [STATE(2370)] = { + [sym_identifier] = ACTIONS(3252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_RPAREN] = ACTIONS(3254), + [aux_sym_preproc_if_token2] = ACTIONS(3254), + [aux_sym_preproc_else_token1] = ACTIONS(3254), + [aux_sym_preproc_elif_token1] = ACTIONS(3252), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3254), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3254), + [anon_sym_LPAREN2] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3252), + [anon_sym_CARET] = ACTIONS(3252), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3254), + [anon_sym_GT] = ACTIONS(3252), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_LT_LT] = ACTIONS(3252), + [anon_sym_GT_GT] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym___extension__] = ACTIONS(3252), + [anon_sym___attribute__] = ACTIONS(3252), + [anon_sym___attribute] = ACTIONS(3252), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_RBRACK] = ACTIONS(3254), + [anon_sym_EQ] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_constexpr] = ACTIONS(3252), + [anon_sym_volatile] = ACTIONS(3252), + [anon_sym_restrict] = ACTIONS(3252), + [anon_sym___restrict__] = ACTIONS(3252), + [anon_sym__Atomic] = ACTIONS(3252), + [anon_sym__Noreturn] = ACTIONS(3252), + [anon_sym_noreturn] = ACTIONS(3252), + [anon_sym__Nonnull] = ACTIONS(3252), + [anon_sym_mutable] = ACTIONS(3252), + [anon_sym_constinit] = ACTIONS(3252), + [anon_sym_consteval] = ACTIONS(3252), + [anon_sym_alignas] = ACTIONS(3252), + [anon_sym__Alignas] = ACTIONS(3252), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_LT_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_GT_EQ] = ACTIONS(3254), + [anon_sym_AMP_EQ] = ACTIONS(3254), + [anon_sym_CARET_EQ] = ACTIONS(3254), + [anon_sym_PIPE_EQ] = ACTIONS(3254), + [anon_sym_and_eq] = ACTIONS(3252), + [anon_sym_or_eq] = ACTIONS(3252), + [anon_sym_xor_eq] = ACTIONS(3252), + [anon_sym_LT_EQ_GT] = ACTIONS(3254), + [anon_sym_or] = ACTIONS(3252), + [anon_sym_and] = ACTIONS(3252), + [anon_sym_bitor] = ACTIONS(3252), + [anon_sym_xor] = ACTIONS(3252), + [anon_sym_bitand] = ACTIONS(3252), + [anon_sym_not_eq] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3252), + [anon_sym_DOT_STAR] = ACTIONS(3254), + [anon_sym_DASH_GT] = ACTIONS(3254), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3252), + [anon_sym_decltype] = ACTIONS(3252), + [anon_sym_final] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + }, + [STATE(2371)] = { + [sym_type_qualifier] = STATE(2375), + [sym_alignas_qualifier] = STATE(2387), + [aux_sym__type_definition_type_repeat1] = STATE(2375), + [aux_sym_sized_type_specifier_repeat1] = STATE(2929), + [sym_identifier] = ACTIONS(6383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_RPAREN] = ACTIONS(4674), + [anon_sym_LPAREN2] = ACTIONS(4674), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_PLUS] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4676), + [anon_sym_SLASH] = ACTIONS(4676), + [anon_sym_PERCENT] = ACTIONS(4676), + [anon_sym_PIPE_PIPE] = ACTIONS(4674), + [anon_sym_AMP_AMP] = ACTIONS(4674), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4676), + [anon_sym_AMP] = ACTIONS(4676), + [anon_sym_EQ_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4674), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4674), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_LT_LT] = ACTIONS(4676), + [anon_sym_GT_GT] = ACTIONS(4676), + [anon_sym___extension__] = ACTIONS(6385), + [anon_sym___attribute__] = ACTIONS(4676), + [anon_sym___attribute] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_signed] = ACTIONS(6387), + [anon_sym_unsigned] = ACTIONS(6387), + [anon_sym_long] = ACTIONS(6387), + [anon_sym_short] = ACTIONS(6387), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_const] = ACTIONS(6385), + [anon_sym_constexpr] = ACTIONS(6385), + [anon_sym_volatile] = ACTIONS(6385), + [anon_sym_restrict] = ACTIONS(6385), + [anon_sym___restrict__] = ACTIONS(6385), + [anon_sym__Atomic] = ACTIONS(6385), + [anon_sym__Noreturn] = ACTIONS(6385), + [anon_sym_noreturn] = ACTIONS(6385), + [anon_sym__Nonnull] = ACTIONS(6385), + [anon_sym_mutable] = ACTIONS(6385), + [anon_sym_constinit] = ACTIONS(6385), + [anon_sym_consteval] = ACTIONS(6385), + [anon_sym_alignas] = ACTIONS(6389), + [anon_sym__Alignas] = ACTIONS(6389), + [sym_primitive_type] = ACTIONS(6391), + [anon_sym_QMARK] = ACTIONS(4674), + [anon_sym_STAR_EQ] = ACTIONS(4674), + [anon_sym_SLASH_EQ] = ACTIONS(4674), + [anon_sym_PERCENT_EQ] = ACTIONS(4674), + [anon_sym_PLUS_EQ] = ACTIONS(4674), + [anon_sym_DASH_EQ] = ACTIONS(4674), + [anon_sym_LT_LT_EQ] = ACTIONS(4674), + [anon_sym_GT_GT_EQ] = ACTIONS(4674), + [anon_sym_AMP_EQ] = ACTIONS(4674), + [anon_sym_CARET_EQ] = ACTIONS(4674), + [anon_sym_PIPE_EQ] = ACTIONS(4674), + [anon_sym_and_eq] = ACTIONS(4676), + [anon_sym_or_eq] = ACTIONS(4676), + [anon_sym_xor_eq] = ACTIONS(4676), + [anon_sym_LT_EQ_GT] = ACTIONS(4674), + [anon_sym_or] = ACTIONS(4676), + [anon_sym_and] = ACTIONS(4676), + [anon_sym_bitor] = ACTIONS(4676), + [anon_sym_xor] = ACTIONS(4676), + [anon_sym_bitand] = ACTIONS(4676), + [anon_sym_not_eq] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4674), + [anon_sym_PLUS_PLUS] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_DOT_STAR] = ACTIONS(4674), + [anon_sym_DASH_GT] = ACTIONS(4676), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4676), + [anon_sym_decltype] = ACTIONS(4676), + [anon_sym_DASH_GT_STAR] = ACTIONS(4674), + }, + [STATE(2372)] = { + [sym_type_qualifier] = STATE(2371), + [sym_alignas_qualifier] = STATE(2387), + [aux_sym__type_definition_type_repeat1] = STATE(2371), + [aux_sym_sized_type_specifier_repeat1] = STATE(2380), + [sym_identifier] = ACTIONS(6393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4721), + [anon_sym_COMMA] = ACTIONS(4721), + [anon_sym_RPAREN] = ACTIONS(4721), + [anon_sym_LPAREN2] = ACTIONS(4721), + [anon_sym_DASH] = ACTIONS(4723), + [anon_sym_PLUS] = ACTIONS(4723), + [anon_sym_STAR] = ACTIONS(4723), + [anon_sym_SLASH] = ACTIONS(4723), + [anon_sym_PERCENT] = ACTIONS(4723), + [anon_sym_PIPE_PIPE] = ACTIONS(4721), + [anon_sym_AMP_AMP] = ACTIONS(4721), + [anon_sym_PIPE] = ACTIONS(4723), + [anon_sym_CARET] = ACTIONS(4723), + [anon_sym_AMP] = ACTIONS(4723), + [anon_sym_EQ_EQ] = ACTIONS(4721), + [anon_sym_BANG_EQ] = ACTIONS(4721), + [anon_sym_GT] = ACTIONS(4723), + [anon_sym_GT_EQ] = ACTIONS(4721), + [anon_sym_LT_EQ] = ACTIONS(4723), + [anon_sym_LT] = ACTIONS(4723), + [anon_sym_LT_LT] = ACTIONS(4723), + [anon_sym_GT_GT] = ACTIONS(4723), + [anon_sym___extension__] = ACTIONS(6385), + [anon_sym___attribute__] = ACTIONS(4723), + [anon_sym___attribute] = ACTIONS(4723), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_signed] = ACTIONS(6395), + [anon_sym_unsigned] = ACTIONS(6395), + [anon_sym_long] = ACTIONS(6395), + [anon_sym_short] = ACTIONS(6395), + [anon_sym_LBRACK] = ACTIONS(4721), + [anon_sym_EQ] = ACTIONS(4723), + [anon_sym_const] = ACTIONS(6385), + [anon_sym_constexpr] = ACTIONS(6385), + [anon_sym_volatile] = ACTIONS(6385), + [anon_sym_restrict] = ACTIONS(6385), + [anon_sym___restrict__] = ACTIONS(6385), + [anon_sym__Atomic] = ACTIONS(6385), + [anon_sym__Noreturn] = ACTIONS(6385), + [anon_sym_noreturn] = ACTIONS(6385), + [anon_sym__Nonnull] = ACTIONS(6385), + [anon_sym_mutable] = ACTIONS(6385), + [anon_sym_constinit] = ACTIONS(6385), + [anon_sym_consteval] = ACTIONS(6385), + [anon_sym_alignas] = ACTIONS(6389), + [anon_sym__Alignas] = ACTIONS(6389), + [sym_primitive_type] = ACTIONS(6397), + [anon_sym_QMARK] = ACTIONS(4721), + [anon_sym_STAR_EQ] = ACTIONS(4721), + [anon_sym_SLASH_EQ] = ACTIONS(4721), + [anon_sym_PERCENT_EQ] = ACTIONS(4721), + [anon_sym_PLUS_EQ] = ACTIONS(4721), + [anon_sym_DASH_EQ] = ACTIONS(4721), + [anon_sym_LT_LT_EQ] = ACTIONS(4721), + [anon_sym_GT_GT_EQ] = ACTIONS(4721), + [anon_sym_AMP_EQ] = ACTIONS(4721), + [anon_sym_CARET_EQ] = ACTIONS(4721), + [anon_sym_PIPE_EQ] = ACTIONS(4721), + [anon_sym_and_eq] = ACTIONS(4723), + [anon_sym_or_eq] = ACTIONS(4723), + [anon_sym_xor_eq] = ACTIONS(4723), + [anon_sym_LT_EQ_GT] = ACTIONS(4721), + [anon_sym_or] = ACTIONS(4723), + [anon_sym_and] = ACTIONS(4723), + [anon_sym_bitor] = ACTIONS(4723), + [anon_sym_xor] = ACTIONS(4723), + [anon_sym_bitand] = ACTIONS(4723), + [anon_sym_not_eq] = ACTIONS(4723), + [anon_sym_DASH_DASH] = ACTIONS(4721), + [anon_sym_PLUS_PLUS] = ACTIONS(4721), + [anon_sym_DOT] = ACTIONS(4723), + [anon_sym_DOT_STAR] = ACTIONS(4721), + [anon_sym_DASH_GT] = ACTIONS(4723), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4723), + [anon_sym_decltype] = ACTIONS(4723), + [anon_sym_DASH_GT_STAR] = ACTIONS(4721), + }, + [STATE(2373)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2357), + [sym_identifier] = ACTIONS(5128), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5131), + [anon_sym_COMMA] = ACTIONS(5131), + [aux_sym_preproc_if_token2] = ACTIONS(5131), + [aux_sym_preproc_else_token1] = ACTIONS(5131), + [aux_sym_preproc_elif_token1] = ACTIONS(5128), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5131), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5131), + [anon_sym_LPAREN2] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_STAR] = ACTIONS(5128), + [anon_sym_SLASH] = ACTIONS(5128), + [anon_sym_PERCENT] = ACTIONS(5128), + [anon_sym_PIPE_PIPE] = ACTIONS(5131), + [anon_sym_AMP_AMP] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5128), + [anon_sym_CARET] = ACTIONS(5128), + [anon_sym_AMP] = ACTIONS(5128), + [anon_sym_EQ_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5128), + [anon_sym_GT_EQ] = ACTIONS(5131), + [anon_sym_LT_EQ] = ACTIONS(5128), + [anon_sym_LT] = ACTIONS(5128), + [anon_sym_LT_LT] = ACTIONS(5128), + [anon_sym_GT_GT] = ACTIONS(5128), + [anon_sym___extension__] = ACTIONS(4520), + [anon_sym___attribute__] = ACTIONS(5128), + [anon_sym___attribute] = ACTIONS(5128), + [anon_sym_LBRACE] = ACTIONS(5131), + [anon_sym_signed] = ACTIONS(6350), + [anon_sym_unsigned] = ACTIONS(6350), + [anon_sym_long] = ACTIONS(6350), + [anon_sym_short] = ACTIONS(6350), + [anon_sym_LBRACK] = ACTIONS(5131), + [anon_sym_EQ] = ACTIONS(5128), + [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__Nonnull] = ACTIONS(4520), + [anon_sym_mutable] = ACTIONS(4520), + [anon_sym_constinit] = ACTIONS(4520), + [anon_sym_consteval] = ACTIONS(4520), + [anon_sym_alignas] = ACTIONS(4520), + [anon_sym__Alignas] = ACTIONS(4520), + [sym_primitive_type] = ACTIONS(4520), + [anon_sym_QMARK] = ACTIONS(5131), + [anon_sym_STAR_EQ] = ACTIONS(5131), + [anon_sym_SLASH_EQ] = ACTIONS(5131), + [anon_sym_PERCENT_EQ] = ACTIONS(5131), + [anon_sym_PLUS_EQ] = ACTIONS(5131), + [anon_sym_DASH_EQ] = ACTIONS(5131), + [anon_sym_LT_LT_EQ] = ACTIONS(5131), + [anon_sym_GT_GT_EQ] = ACTIONS(5131), + [anon_sym_AMP_EQ] = ACTIONS(5131), + [anon_sym_CARET_EQ] = ACTIONS(5131), + [anon_sym_PIPE_EQ] = ACTIONS(5131), + [anon_sym_and_eq] = ACTIONS(5128), + [anon_sym_or_eq] = ACTIONS(5128), + [anon_sym_xor_eq] = ACTIONS(5128), + [anon_sym_LT_EQ_GT] = ACTIONS(5131), + [anon_sym_or] = ACTIONS(5128), + [anon_sym_and] = ACTIONS(5128), + [anon_sym_bitor] = ACTIONS(5128), + [anon_sym_xor] = ACTIONS(5128), + [anon_sym_bitand] = ACTIONS(5128), + [anon_sym_not_eq] = ACTIONS(5128), + [anon_sym_DASH_DASH] = ACTIONS(5131), + [anon_sym_PLUS_PLUS] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5128), + [anon_sym_DOT_STAR] = ACTIONS(5131), + [anon_sym_DASH_GT] = ACTIONS(5131), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5128), + [anon_sym_decltype] = ACTIONS(5128), + }, + [STATE(2374)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2357), + [sym_identifier] = ACTIONS(4520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5131), + [anon_sym_COMMA] = ACTIONS(5131), + [anon_sym_RPAREN] = ACTIONS(5131), + [anon_sym_LPAREN2] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_STAR] = ACTIONS(5128), + [anon_sym_SLASH] = ACTIONS(5128), + [anon_sym_PERCENT] = ACTIONS(5128), + [anon_sym_PIPE_PIPE] = ACTIONS(5131), + [anon_sym_AMP_AMP] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5128), + [anon_sym_CARET] = ACTIONS(5128), + [anon_sym_AMP] = ACTIONS(5128), + [anon_sym_EQ_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5128), + [anon_sym_GT_EQ] = ACTIONS(5131), + [anon_sym_LT_EQ] = ACTIONS(5128), + [anon_sym_LT] = ACTIONS(5128), + [anon_sym_LT_LT] = ACTIONS(5128), + [anon_sym_GT_GT] = ACTIONS(5128), + [anon_sym_SEMI] = ACTIONS(5131), + [anon_sym___extension__] = ACTIONS(4520), + [anon_sym___attribute__] = ACTIONS(5128), + [anon_sym___attribute] = ACTIONS(5128), + [anon_sym_LBRACE] = ACTIONS(5131), + [anon_sym_RBRACE] = ACTIONS(5131), + [anon_sym_signed] = ACTIONS(6350), + [anon_sym_unsigned] = ACTIONS(6350), + [anon_sym_long] = ACTIONS(6350), + [anon_sym_short] = ACTIONS(6350), + [anon_sym_LBRACK] = ACTIONS(5131), + [anon_sym_RBRACK] = ACTIONS(5131), + [anon_sym_EQ] = ACTIONS(5128), + [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__Nonnull] = ACTIONS(4520), + [anon_sym_mutable] = ACTIONS(4520), + [anon_sym_constinit] = ACTIONS(4520), + [anon_sym_consteval] = ACTIONS(4520), + [anon_sym_alignas] = ACTIONS(4520), + [anon_sym__Alignas] = ACTIONS(4520), + [sym_primitive_type] = ACTIONS(4520), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_QMARK] = ACTIONS(5131), + [anon_sym_STAR_EQ] = ACTIONS(5131), + [anon_sym_SLASH_EQ] = ACTIONS(5131), + [anon_sym_PERCENT_EQ] = ACTIONS(5131), + [anon_sym_PLUS_EQ] = ACTIONS(5131), + [anon_sym_DASH_EQ] = ACTIONS(5131), + [anon_sym_LT_LT_EQ] = ACTIONS(5131), + [anon_sym_GT_GT_EQ] = ACTIONS(5131), + [anon_sym_AMP_EQ] = ACTIONS(5131), + [anon_sym_CARET_EQ] = ACTIONS(5131), + [anon_sym_PIPE_EQ] = ACTIONS(5131), + [anon_sym_and_eq] = ACTIONS(5128), + [anon_sym_or_eq] = ACTIONS(5128), + [anon_sym_xor_eq] = ACTIONS(5128), + [anon_sym_LT_EQ_GT] = ACTIONS(5131), + [anon_sym_or] = ACTIONS(5128), + [anon_sym_and] = ACTIONS(5128), + [anon_sym_bitor] = ACTIONS(5128), + [anon_sym_xor] = ACTIONS(5128), + [anon_sym_bitand] = ACTIONS(5128), + [anon_sym_not_eq] = ACTIONS(5128), + [anon_sym_DASH_DASH] = ACTIONS(5131), + [anon_sym_PLUS_PLUS] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5128), + [anon_sym_DOT_STAR] = ACTIONS(5131), + [anon_sym_DASH_GT] = ACTIONS(5131), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5128), + [anon_sym_decltype] = ACTIONS(5128), + }, + [STATE(2375)] = { + [sym_type_qualifier] = STATE(2375), + [sym_alignas_qualifier] = STATE(2387), + [aux_sym__type_definition_type_repeat1] = STATE(2375), + [sym_identifier] = ACTIONS(4171), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4173), + [anon_sym_COMMA] = ACTIONS(4173), + [anon_sym_RPAREN] = ACTIONS(4173), + [anon_sym_LPAREN2] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_PERCENT] = ACTIONS(4171), + [anon_sym_PIPE_PIPE] = ACTIONS(4173), + [anon_sym_AMP_AMP] = ACTIONS(4173), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4171), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_GT_EQ] = ACTIONS(4173), + [anon_sym_LT_EQ] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_LT_LT] = ACTIONS(4171), + [anon_sym_GT_GT] = ACTIONS(4171), + [anon_sym___extension__] = ACTIONS(6399), + [anon_sym___attribute__] = ACTIONS(4171), + [anon_sym___attribute] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_signed] = ACTIONS(4171), + [anon_sym_unsigned] = ACTIONS(4171), + [anon_sym_long] = ACTIONS(4171), + [anon_sym_short] = ACTIONS(4171), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(4171), + [anon_sym_const] = ACTIONS(6399), + [anon_sym_constexpr] = ACTIONS(6399), + [anon_sym_volatile] = ACTIONS(6399), + [anon_sym_restrict] = ACTIONS(6399), + [anon_sym___restrict__] = ACTIONS(6399), + [anon_sym__Atomic] = ACTIONS(6399), + [anon_sym__Noreturn] = ACTIONS(6399), + [anon_sym_noreturn] = ACTIONS(6399), + [anon_sym__Nonnull] = ACTIONS(6399), + [anon_sym_mutable] = ACTIONS(6399), + [anon_sym_constinit] = ACTIONS(6399), + [anon_sym_consteval] = ACTIONS(6399), + [anon_sym_alignas] = ACTIONS(6402), + [anon_sym__Alignas] = ACTIONS(6402), + [sym_primitive_type] = ACTIONS(4171), + [anon_sym_QMARK] = ACTIONS(4173), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4171), + [anon_sym_or_eq] = ACTIONS(4171), + [anon_sym_xor_eq] = ACTIONS(4171), + [anon_sym_LT_EQ_GT] = ACTIONS(4173), + [anon_sym_or] = ACTIONS(4171), + [anon_sym_and] = ACTIONS(4171), + [anon_sym_bitor] = ACTIONS(4171), + [anon_sym_xor] = ACTIONS(4171), + [anon_sym_bitand] = ACTIONS(4171), + [anon_sym_not_eq] = ACTIONS(4171), + [anon_sym_DASH_DASH] = ACTIONS(4173), + [anon_sym_PLUS_PLUS] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4171), + [anon_sym_DOT_STAR] = ACTIONS(4173), + [anon_sym_DASH_GT] = ACTIONS(4171), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4171), + [anon_sym_decltype] = ACTIONS(4171), + [anon_sym_DASH_GT_STAR] = ACTIONS(4173), + }, + [STATE(2376)] = { + [sym_type_qualifier] = STATE(2379), + [sym_alignas_qualifier] = STATE(2393), + [aux_sym__type_definition_type_repeat1] = STATE(2379), + [aux_sym_sized_type_specifier_repeat1] = STATE(2975), + [sym_identifier] = ACTIONS(6405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_LPAREN2] = ACTIONS(4674), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_PLUS] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4676), + [anon_sym_SLASH] = ACTIONS(4676), + [anon_sym_PERCENT] = ACTIONS(4676), + [anon_sym_PIPE_PIPE] = ACTIONS(4674), + [anon_sym_AMP_AMP] = ACTIONS(4674), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4676), + [anon_sym_AMP] = ACTIONS(4676), + [anon_sym_EQ_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4674), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_LT_LT] = ACTIONS(4676), + [anon_sym_GT_GT] = ACTIONS(4676), + [anon_sym___extension__] = ACTIONS(6407), + [anon_sym___attribute__] = ACTIONS(4676), + [anon_sym___attribute] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_signed] = ACTIONS(6409), + [anon_sym_unsigned] = ACTIONS(6409), + [anon_sym_long] = ACTIONS(6409), + [anon_sym_short] = ACTIONS(6409), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_const] = ACTIONS(6407), + [anon_sym_constexpr] = ACTIONS(6407), + [anon_sym_volatile] = ACTIONS(6407), + [anon_sym_restrict] = ACTIONS(6407), + [anon_sym___restrict__] = ACTIONS(6407), + [anon_sym__Atomic] = ACTIONS(6407), + [anon_sym__Noreturn] = ACTIONS(6407), + [anon_sym_noreturn] = ACTIONS(6407), + [anon_sym__Nonnull] = ACTIONS(6407), + [anon_sym_mutable] = ACTIONS(6407), + [anon_sym_constinit] = ACTIONS(6407), + [anon_sym_consteval] = ACTIONS(6407), + [anon_sym_alignas] = ACTIONS(6411), + [anon_sym__Alignas] = ACTIONS(6411), + [sym_primitive_type] = ACTIONS(6413), + [anon_sym_QMARK] = ACTIONS(4674), + [anon_sym_STAR_EQ] = ACTIONS(4674), + [anon_sym_SLASH_EQ] = ACTIONS(4674), + [anon_sym_PERCENT_EQ] = ACTIONS(4674), + [anon_sym_PLUS_EQ] = ACTIONS(4674), + [anon_sym_DASH_EQ] = ACTIONS(4674), + [anon_sym_LT_LT_EQ] = ACTIONS(4674), + [anon_sym_GT_GT_EQ] = ACTIONS(4676), + [anon_sym_AMP_EQ] = ACTIONS(4674), + [anon_sym_CARET_EQ] = ACTIONS(4674), + [anon_sym_PIPE_EQ] = ACTIONS(4674), + [anon_sym_and_eq] = ACTIONS(4676), + [anon_sym_or_eq] = ACTIONS(4676), + [anon_sym_xor_eq] = ACTIONS(4676), + [anon_sym_LT_EQ_GT] = ACTIONS(4674), + [anon_sym_or] = ACTIONS(4676), + [anon_sym_and] = ACTIONS(4676), + [anon_sym_bitor] = ACTIONS(4676), + [anon_sym_xor] = ACTIONS(4676), + [anon_sym_bitand] = ACTIONS(4676), + [anon_sym_not_eq] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4674), + [anon_sym_PLUS_PLUS] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_DOT_STAR] = ACTIONS(4674), + [anon_sym_DASH_GT] = ACTIONS(4674), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4676), + [anon_sym_decltype] = ACTIONS(4676), + [anon_sym_GT2] = ACTIONS(4674), + }, + [STATE(2377)] = { + [sym_type_qualifier] = STATE(2376), + [sym_alignas_qualifier] = STATE(2393), + [aux_sym__type_definition_type_repeat1] = STATE(2376), + [aux_sym_sized_type_specifier_repeat1] = STATE(2391), + [sym_identifier] = ACTIONS(6415), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4721), + [anon_sym_COMMA] = ACTIONS(4721), + [anon_sym_LPAREN2] = ACTIONS(4721), + [anon_sym_DASH] = ACTIONS(4723), + [anon_sym_PLUS] = ACTIONS(4723), + [anon_sym_STAR] = ACTIONS(4723), + [anon_sym_SLASH] = ACTIONS(4723), + [anon_sym_PERCENT] = ACTIONS(4723), + [anon_sym_PIPE_PIPE] = ACTIONS(4721), + [anon_sym_AMP_AMP] = ACTIONS(4721), + [anon_sym_PIPE] = ACTIONS(4723), + [anon_sym_CARET] = ACTIONS(4723), + [anon_sym_AMP] = ACTIONS(4723), + [anon_sym_EQ_EQ] = ACTIONS(4721), + [anon_sym_BANG_EQ] = ACTIONS(4721), + [anon_sym_GT] = ACTIONS(4723), + [anon_sym_GT_EQ] = ACTIONS(4723), + [anon_sym_LT_EQ] = ACTIONS(4723), + [anon_sym_LT] = ACTIONS(4723), + [anon_sym_LT_LT] = ACTIONS(4723), + [anon_sym_GT_GT] = ACTIONS(4723), + [anon_sym___extension__] = ACTIONS(6407), + [anon_sym___attribute__] = ACTIONS(4723), + [anon_sym___attribute] = ACTIONS(4723), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_signed] = ACTIONS(6417), + [anon_sym_unsigned] = ACTIONS(6417), + [anon_sym_long] = ACTIONS(6417), + [anon_sym_short] = ACTIONS(6417), + [anon_sym_LBRACK] = ACTIONS(4721), + [anon_sym_EQ] = ACTIONS(4723), + [anon_sym_const] = ACTIONS(6407), + [anon_sym_constexpr] = ACTIONS(6407), + [anon_sym_volatile] = ACTIONS(6407), + [anon_sym_restrict] = ACTIONS(6407), + [anon_sym___restrict__] = ACTIONS(6407), + [anon_sym__Atomic] = ACTIONS(6407), + [anon_sym__Noreturn] = ACTIONS(6407), + [anon_sym_noreturn] = ACTIONS(6407), + [anon_sym__Nonnull] = ACTIONS(6407), + [anon_sym_mutable] = ACTIONS(6407), + [anon_sym_constinit] = ACTIONS(6407), + [anon_sym_consteval] = ACTIONS(6407), + [anon_sym_alignas] = ACTIONS(6411), + [anon_sym__Alignas] = ACTIONS(6411), + [sym_primitive_type] = ACTIONS(6419), + [anon_sym_QMARK] = ACTIONS(4721), + [anon_sym_STAR_EQ] = ACTIONS(4721), + [anon_sym_SLASH_EQ] = ACTIONS(4721), + [anon_sym_PERCENT_EQ] = ACTIONS(4721), + [anon_sym_PLUS_EQ] = ACTIONS(4721), + [anon_sym_DASH_EQ] = ACTIONS(4721), + [anon_sym_LT_LT_EQ] = ACTIONS(4721), + [anon_sym_GT_GT_EQ] = ACTIONS(4723), + [anon_sym_AMP_EQ] = ACTIONS(4721), + [anon_sym_CARET_EQ] = ACTIONS(4721), + [anon_sym_PIPE_EQ] = ACTIONS(4721), + [anon_sym_and_eq] = ACTIONS(4723), + [anon_sym_or_eq] = ACTIONS(4723), + [anon_sym_xor_eq] = ACTIONS(4723), + [anon_sym_LT_EQ_GT] = ACTIONS(4721), + [anon_sym_or] = ACTIONS(4723), + [anon_sym_and] = ACTIONS(4723), + [anon_sym_bitor] = ACTIONS(4723), + [anon_sym_xor] = ACTIONS(4723), + [anon_sym_bitand] = ACTIONS(4723), + [anon_sym_not_eq] = ACTIONS(4723), + [anon_sym_DASH_DASH] = ACTIONS(4721), + [anon_sym_PLUS_PLUS] = ACTIONS(4721), + [anon_sym_DOT] = ACTIONS(4723), + [anon_sym_DOT_STAR] = ACTIONS(4721), + [anon_sym_DASH_GT] = ACTIONS(4721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4723), + [anon_sym_decltype] = ACTIONS(4723), + [anon_sym_GT2] = ACTIONS(4721), + }, + [STATE(2378)] = { + [sym_macro_annotation] = STATE(2378), + [aux_sym_class_specifier_repeat1] = STATE(2378), + [sym_identifier] = ACTIONS(6421), + [anon_sym_COLON_COLON] = ACTIONS(6423), + [anon_sym_LBRACE] = ACTIONS(6423), + [anon_sym_COLON] = ACTIONS(6421), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6421), + [anon_sym_final] = ACTIONS(6421), + [anon_sym_override] = ACTIONS(6421), + [anon_sym_template] = ACTIONS(6421), + [anon_sym_MOZ_ALLOCATOR] = ACTIONS(6425), + [anon_sym_MOZ_ALLOW_TEMPORARY] = ACTIONS(6425), + [anon_sym_MOZ_ALWAYS_INLINE] = ACTIONS(6425), + [anon_sym_MOZ_ALWAYS_INLINE_EVEN_DEBUG] = ACTIONS(6425), + [anon_sym_MOZ_ASAN_BLACKLIST] = ACTIONS(6425), + [anon_sym_MOZ_CAN_RUN_SCRIPT] = ACTIONS(6425), + [anon_sym_MOZ_CAN_RUN_SCRIPT_BOUNDARY] = ACTIONS(6425), + [anon_sym_MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION] = ACTIONS(6425), + [anon_sym_MOZ_COLD] = ACTIONS(6425), + [anon_sym_MOZ_FALLTHROUGH] = ACTIONS(6425), + [anon_sym_MOZ_FORMAT_PRINTF] = ACTIONS(6425), + [anon_sym_MOZ_HAVE_ANALYZER_NORETURN] = ACTIONS(6425), + [anon_sym_MOZ_HAVE_ASAN_BLACKLIST] = ACTIONS(6425), + [anon_sym_MOZ_HAVE_NEVER_INLINE] = ACTIONS(6425), + [anon_sym_MOZ_HAVE_NORETURN] = ACTIONS(6425), + [anon_sym_MOZ_HAVE_NORETURN_PTR] = ACTIONS(6425), + [anon_sym_MOZ_HAVE_NO_SANITIZE_ATTR] = ACTIONS(6425), + [anon_sym_MOZ_HAVE_SIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6425), + [anon_sym_MOZ_HAVE_UNSIGNED_OVERFLOW_SANITIZE_ATTR] = ACTIONS(6425), + [anon_sym_MOZ_HEAP_ALLOCATOR] = ACTIONS(6425), + [anon_sym_MOZ_HEAP_CLASS] = ACTIONS(6425), + [anon_sym_MOZ_IMPLICIT] = ACTIONS(6425), + [anon_sym_MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS] = ACTIONS(6425), + [anon_sym_MOZ_INIT_OUTSIDE_CTOR] = ACTIONS(6425), + [anon_sym_MOZ_IS_CLASS_INIT] = ACTIONS(6425), + [anon_sym_MOZ_IS_REFPTR] = ACTIONS(6425), + [anon_sym_MOZ_IS_SMARTPTR_TO_REFCOUNTED] = ACTIONS(6425), + [anon_sym_MOZ_MAYBE_UNUSED] = ACTIONS(6425), + [anon_sym_MOZ_MAY_CALL_AFTER_MUST_RETURN] = ACTIONS(6425), + [anon_sym_MOZ_MUST_OVERRIDE] = ACTIONS(6425), + [anon_sym_MOZ_MUST_RETURN_FROM_CALLER_IF_THIS_IS_ARG] = ACTIONS(6425), + [anon_sym_MOZ_MUST_USE] = ACTIONS(6425), + [anon_sym_MOZ_MUST_USE_TYPE] = ACTIONS(6425), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_MEMBERS] = ACTIONS(6425), + [anon_sym_MOZ_NEEDS_MEMMOVABLE_TYPE] = ACTIONS(6425), + [anon_sym_MOZ_NEEDS_NO_VTABLE_TYPE] = ACTIONS(6425), + [anon_sym_MOZ_NEVER_INLINE] = ACTIONS(6425), + [anon_sym_MOZ_NEVER_INLINE_DEBUG] = ACTIONS(6425), + [anon_sym_MOZ_NONHEAP_CLASS] = ACTIONS(6425), + [anon_sym_MOZ_NONNULL] = ACTIONS(6425), + [anon_sym_MOZ_NONNULL_RETURN] = ACTIONS(6425), + [anon_sym_MOZ_NON_AUTOABLE] = ACTIONS(6425), + [anon_sym_MOZ_NON_MEMMOVABLE] = ACTIONS(6425), + [anon_sym_MOZ_NON_OWNING_REF] = ACTIONS(6425), + [anon_sym_MOZ_NON_PARAM] = ACTIONS(6425), + [anon_sym_MOZ_NON_TEMPORARY_CLASS] = ACTIONS(6425), + [anon_sym_MOZ_NORETURN] = ACTIONS(6425), + [anon_sym_MOZ_NORETURN_PTR] = ACTIONS(6425), + [anon_sym_MOZ_NO_ADDREF_RELEASE_ON_RETURN] = ACTIONS(6425), + [anon_sym_MOZ_NO_ARITHMETIC_EXPR_IN_ARGUMENT] = ACTIONS(6425), + [anon_sym_MOZ_NO_DANGLING_ON_TEMPORARIES] = ACTIONS(6425), + [anon_sym_MOZ_NO_SANITIZE_SIGNED_OVERFLOW] = ACTIONS(6425), + [anon_sym_MOZ_NO_SANITIZE_UNSIGNED_OVERFLOW] = ACTIONS(6425), + [anon_sym_MOZ_ONLY_USED_TO_AVOID_STATIC_CONSTRUCTORS] = ACTIONS(6425), + [anon_sym_MOZ_OWNING_REF] = ACTIONS(6425), + [anon_sym_MOZ_POP_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6425), + [anon_sym_MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS] = ACTIONS(6425), + [anon_sym_MOZ_PUSH_DISABLE_NONTRIVIAL_UNION_WARNINGS] = ACTIONS(6425), + [anon_sym_MOZ_RAII] = ACTIONS(6425), + [anon_sym_MOZ_REQUIRED_BASE_METHOD] = ACTIONS(6425), + [anon_sym_MOZ_STACK_CLASS] = ACTIONS(6425), + [anon_sym_MOZ_STATIC_CLASS] = ACTIONS(6425), + [anon_sym_MOZ_STATIC_LOCAL_CLASS] = ACTIONS(6425), + [anon_sym_MOZ_TEMPORARY_CLASS] = ACTIONS(6425), + [anon_sym_MOZ_TRIVIAL_CTOR_DTOR] = ACTIONS(6425), + [anon_sym_MOZ_TSAN_BLACKLIST] = ACTIONS(6425), + [anon_sym_MOZ_UNSAFE_REF] = ACTIONS(6425), + [anon_sym_MOZ_XPCOM_ABI] = ACTIONS(6425), + [anon_sym_JS_PUBLIC_API] = ACTIONS(6425), + }, + [STATE(2379)] = { + [sym_type_qualifier] = STATE(2379), + [sym_alignas_qualifier] = STATE(2393), + [aux_sym__type_definition_type_repeat1] = STATE(2379), + [sym_identifier] = ACTIONS(4171), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4173), + [anon_sym_COMMA] = ACTIONS(4173), + [anon_sym_LPAREN2] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_PERCENT] = ACTIONS(4171), + [anon_sym_PIPE_PIPE] = ACTIONS(4173), + [anon_sym_AMP_AMP] = ACTIONS(4173), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4171), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_GT_EQ] = ACTIONS(4171), + [anon_sym_LT_EQ] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_LT_LT] = ACTIONS(4171), + [anon_sym_GT_GT] = ACTIONS(4171), + [anon_sym___extension__] = ACTIONS(6428), + [anon_sym___attribute__] = ACTIONS(4171), + [anon_sym___attribute] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_signed] = ACTIONS(4171), + [anon_sym_unsigned] = ACTIONS(4171), + [anon_sym_long] = ACTIONS(4171), + [anon_sym_short] = ACTIONS(4171), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(4171), + [anon_sym_const] = ACTIONS(6428), + [anon_sym_constexpr] = ACTIONS(6428), + [anon_sym_volatile] = ACTIONS(6428), + [anon_sym_restrict] = ACTIONS(6428), + [anon_sym___restrict__] = ACTIONS(6428), + [anon_sym__Atomic] = ACTIONS(6428), + [anon_sym__Noreturn] = ACTIONS(6428), + [anon_sym_noreturn] = ACTIONS(6428), + [anon_sym__Nonnull] = ACTIONS(6428), + [anon_sym_mutable] = ACTIONS(6428), + [anon_sym_constinit] = ACTIONS(6428), + [anon_sym_consteval] = ACTIONS(6428), + [anon_sym_alignas] = ACTIONS(6431), + [anon_sym__Alignas] = ACTIONS(6431), + [sym_primitive_type] = ACTIONS(4171), + [anon_sym_QMARK] = ACTIONS(4173), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4171), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4171), + [anon_sym_or_eq] = ACTIONS(4171), + [anon_sym_xor_eq] = ACTIONS(4171), + [anon_sym_LT_EQ_GT] = ACTIONS(4173), + [anon_sym_or] = ACTIONS(4171), + [anon_sym_and] = ACTIONS(4171), + [anon_sym_bitor] = ACTIONS(4171), + [anon_sym_xor] = ACTIONS(4171), + [anon_sym_bitand] = ACTIONS(4171), + [anon_sym_not_eq] = ACTIONS(4171), + [anon_sym_DASH_DASH] = ACTIONS(4173), + [anon_sym_PLUS_PLUS] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4171), + [anon_sym_DOT_STAR] = ACTIONS(4173), + [anon_sym_DASH_GT] = ACTIONS(4173), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4171), + [anon_sym_decltype] = ACTIONS(4171), + [anon_sym_GT2] = ACTIONS(4173), + }, + [STATE(2380)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2383), + [sym_identifier] = ACTIONS(4520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5131), + [anon_sym_COMMA] = ACTIONS(5131), + [anon_sym_RPAREN] = ACTIONS(5131), + [anon_sym_LPAREN2] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_STAR] = ACTIONS(5128), + [anon_sym_SLASH] = ACTIONS(5128), + [anon_sym_PERCENT] = ACTIONS(5128), + [anon_sym_PIPE_PIPE] = ACTIONS(5131), + [anon_sym_AMP_AMP] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5128), + [anon_sym_CARET] = ACTIONS(5128), + [anon_sym_AMP] = ACTIONS(5128), + [anon_sym_EQ_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5128), + [anon_sym_GT_EQ] = ACTIONS(5131), + [anon_sym_LT_EQ] = ACTIONS(5128), + [anon_sym_LT] = ACTIONS(5128), + [anon_sym_LT_LT] = ACTIONS(5128), + [anon_sym_GT_GT] = ACTIONS(5128), + [anon_sym___extension__] = ACTIONS(4520), + [anon_sym___attribute__] = ACTIONS(5128), + [anon_sym___attribute] = ACTIONS(5128), + [anon_sym_LBRACE] = ACTIONS(5131), + [anon_sym_signed] = ACTIONS(6434), + [anon_sym_unsigned] = ACTIONS(6434), + [anon_sym_long] = ACTIONS(6434), + [anon_sym_short] = ACTIONS(6434), + [anon_sym_LBRACK] = ACTIONS(5131), + [anon_sym_EQ] = ACTIONS(5128), + [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__Nonnull] = ACTIONS(4520), + [anon_sym_mutable] = ACTIONS(4520), + [anon_sym_constinit] = ACTIONS(4520), + [anon_sym_consteval] = ACTIONS(4520), + [anon_sym_alignas] = ACTIONS(4520), + [anon_sym__Alignas] = ACTIONS(4520), + [sym_primitive_type] = ACTIONS(4520), + [anon_sym_QMARK] = ACTIONS(5131), + [anon_sym_STAR_EQ] = ACTIONS(5131), + [anon_sym_SLASH_EQ] = ACTIONS(5131), + [anon_sym_PERCENT_EQ] = ACTIONS(5131), + [anon_sym_PLUS_EQ] = ACTIONS(5131), + [anon_sym_DASH_EQ] = ACTIONS(5131), + [anon_sym_LT_LT_EQ] = ACTIONS(5131), + [anon_sym_GT_GT_EQ] = ACTIONS(5131), + [anon_sym_AMP_EQ] = ACTIONS(5131), + [anon_sym_CARET_EQ] = ACTIONS(5131), + [anon_sym_PIPE_EQ] = ACTIONS(5131), + [anon_sym_and_eq] = ACTIONS(5128), + [anon_sym_or_eq] = ACTIONS(5128), + [anon_sym_xor_eq] = ACTIONS(5128), + [anon_sym_LT_EQ_GT] = ACTIONS(5131), + [anon_sym_or] = ACTIONS(5128), + [anon_sym_and] = ACTIONS(5128), + [anon_sym_bitor] = ACTIONS(5128), + [anon_sym_xor] = ACTIONS(5128), + [anon_sym_bitand] = ACTIONS(5128), + [anon_sym_not_eq] = ACTIONS(5128), + [anon_sym_DASH_DASH] = ACTIONS(5131), + [anon_sym_PLUS_PLUS] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5128), + [anon_sym_DOT_STAR] = ACTIONS(5131), + [anon_sym_DASH_GT] = ACTIONS(5128), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5128), + [anon_sym_decltype] = ACTIONS(5128), + [anon_sym_DASH_GT_STAR] = ACTIONS(5131), + }, + [STATE(2381)] = { + [sym_type_qualifier] = STATE(2386), + [sym_alignas_qualifier] = STATE(2426), + [aux_sym__type_definition_type_repeat1] = STATE(2386), + [aux_sym_sized_type_specifier_repeat1] = STATE(3104), + [sym_identifier] = ACTIONS(6437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_RPAREN] = ACTIONS(4674), + [anon_sym_LPAREN2] = ACTIONS(4674), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_PLUS] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4676), + [anon_sym_SLASH] = ACTIONS(4676), + [anon_sym_PERCENT] = ACTIONS(4676), + [anon_sym_PIPE_PIPE] = ACTIONS(4674), + [anon_sym_AMP_AMP] = ACTIONS(4674), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4676), + [anon_sym_AMP] = ACTIONS(4676), + [anon_sym_EQ_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4674), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4674), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_LT_LT] = ACTIONS(4676), + [anon_sym_GT_GT] = ACTIONS(4676), + [anon_sym___extension__] = ACTIONS(6439), + [anon_sym___attribute__] = ACTIONS(4676), + [anon_sym___attribute] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_signed] = ACTIONS(6441), + [anon_sym_unsigned] = ACTIONS(6441), + [anon_sym_long] = ACTIONS(6441), + [anon_sym_short] = ACTIONS(6441), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_const] = ACTIONS(6439), + [anon_sym_constexpr] = ACTIONS(6439), + [anon_sym_volatile] = ACTIONS(6439), + [anon_sym_restrict] = ACTIONS(6439), + [anon_sym___restrict__] = ACTIONS(6439), + [anon_sym__Atomic] = ACTIONS(6439), + [anon_sym__Noreturn] = ACTIONS(6439), + [anon_sym_noreturn] = ACTIONS(6439), + [anon_sym__Nonnull] = ACTIONS(6439), + [anon_sym_mutable] = ACTIONS(6439), + [anon_sym_constinit] = ACTIONS(6439), + [anon_sym_consteval] = ACTIONS(6439), + [anon_sym_alignas] = ACTIONS(6443), + [anon_sym__Alignas] = ACTIONS(6443), + [sym_primitive_type] = ACTIONS(6445), + [anon_sym_QMARK] = ACTIONS(4674), + [anon_sym_STAR_EQ] = ACTIONS(4674), + [anon_sym_SLASH_EQ] = ACTIONS(4674), + [anon_sym_PERCENT_EQ] = ACTIONS(4674), + [anon_sym_PLUS_EQ] = ACTIONS(4674), + [anon_sym_DASH_EQ] = ACTIONS(4674), + [anon_sym_LT_LT_EQ] = ACTIONS(4674), + [anon_sym_GT_GT_EQ] = ACTIONS(4674), + [anon_sym_AMP_EQ] = ACTIONS(4674), + [anon_sym_CARET_EQ] = ACTIONS(4674), + [anon_sym_PIPE_EQ] = ACTIONS(4674), + [anon_sym_LT_EQ_GT] = ACTIONS(4674), + [anon_sym_or] = ACTIONS(4676), + [anon_sym_and] = ACTIONS(4676), + [anon_sym_bitor] = ACTIONS(4676), + [anon_sym_xor] = ACTIONS(4676), + [anon_sym_bitand] = ACTIONS(4676), + [anon_sym_not_eq] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4674), + [anon_sym_PLUS_PLUS] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_DOT_STAR] = ACTIONS(4674), + [anon_sym_DASH_GT] = ACTIONS(4676), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4676), + [anon_sym_decltype] = ACTIONS(4676), + [anon_sym_DASH_GT_STAR] = ACTIONS(4674), + }, + [STATE(2382)] = { + [sym_type_qualifier] = STATE(2381), + [sym_alignas_qualifier] = STATE(2426), + [aux_sym__type_definition_type_repeat1] = STATE(2381), + [aux_sym_sized_type_specifier_repeat1] = STATE(2397), + [sym_identifier] = ACTIONS(6447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4721), + [anon_sym_COMMA] = ACTIONS(4721), + [anon_sym_RPAREN] = ACTIONS(4721), + [anon_sym_LPAREN2] = ACTIONS(4721), + [anon_sym_DASH] = ACTIONS(4723), + [anon_sym_PLUS] = ACTIONS(4723), + [anon_sym_STAR] = ACTIONS(4723), + [anon_sym_SLASH] = ACTIONS(4723), + [anon_sym_PERCENT] = ACTIONS(4723), + [anon_sym_PIPE_PIPE] = ACTIONS(4721), + [anon_sym_AMP_AMP] = ACTIONS(4721), + [anon_sym_PIPE] = ACTIONS(4723), + [anon_sym_CARET] = ACTIONS(4723), + [anon_sym_AMP] = ACTIONS(4723), + [anon_sym_EQ_EQ] = ACTIONS(4721), + [anon_sym_BANG_EQ] = ACTIONS(4721), + [anon_sym_GT] = ACTIONS(4723), + [anon_sym_GT_EQ] = ACTIONS(4721), + [anon_sym_LT_EQ] = ACTIONS(4723), + [anon_sym_LT] = ACTIONS(4723), + [anon_sym_LT_LT] = ACTIONS(4723), + [anon_sym_GT_GT] = ACTIONS(4723), + [anon_sym___extension__] = ACTIONS(6439), + [anon_sym___attribute__] = ACTIONS(4723), + [anon_sym___attribute] = ACTIONS(4723), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_signed] = ACTIONS(6449), + [anon_sym_unsigned] = ACTIONS(6449), + [anon_sym_long] = ACTIONS(6449), + [anon_sym_short] = ACTIONS(6449), + [anon_sym_LBRACK] = ACTIONS(4721), + [anon_sym_EQ] = ACTIONS(4723), + [anon_sym_const] = ACTIONS(6439), + [anon_sym_constexpr] = ACTIONS(6439), + [anon_sym_volatile] = ACTIONS(6439), + [anon_sym_restrict] = ACTIONS(6439), + [anon_sym___restrict__] = ACTIONS(6439), + [anon_sym__Atomic] = ACTIONS(6439), + [anon_sym__Noreturn] = ACTIONS(6439), + [anon_sym_noreturn] = ACTIONS(6439), + [anon_sym__Nonnull] = ACTIONS(6439), + [anon_sym_mutable] = ACTIONS(6439), + [anon_sym_constinit] = ACTIONS(6439), + [anon_sym_consteval] = ACTIONS(6439), + [anon_sym_alignas] = ACTIONS(6443), + [anon_sym__Alignas] = ACTIONS(6443), + [sym_primitive_type] = ACTIONS(6451), + [anon_sym_QMARK] = ACTIONS(4721), + [anon_sym_STAR_EQ] = ACTIONS(4721), + [anon_sym_SLASH_EQ] = ACTIONS(4721), + [anon_sym_PERCENT_EQ] = ACTIONS(4721), + [anon_sym_PLUS_EQ] = ACTIONS(4721), + [anon_sym_DASH_EQ] = ACTIONS(4721), + [anon_sym_LT_LT_EQ] = ACTIONS(4721), + [anon_sym_GT_GT_EQ] = ACTIONS(4721), + [anon_sym_AMP_EQ] = ACTIONS(4721), + [anon_sym_CARET_EQ] = ACTIONS(4721), + [anon_sym_PIPE_EQ] = ACTIONS(4721), + [anon_sym_LT_EQ_GT] = ACTIONS(4721), + [anon_sym_or] = ACTIONS(4723), + [anon_sym_and] = ACTIONS(4723), + [anon_sym_bitor] = ACTIONS(4723), + [anon_sym_xor] = ACTIONS(4723), + [anon_sym_bitand] = ACTIONS(4723), + [anon_sym_not_eq] = ACTIONS(4723), + [anon_sym_DASH_DASH] = ACTIONS(4721), + [anon_sym_PLUS_PLUS] = ACTIONS(4721), + [anon_sym_DOT] = ACTIONS(4723), + [anon_sym_DOT_STAR] = ACTIONS(4721), + [anon_sym_DASH_GT] = ACTIONS(4723), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4723), + [anon_sym_decltype] = ACTIONS(4723), + [anon_sym_DASH_GT_STAR] = ACTIONS(4721), + }, + [STATE(2383)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2383), + [sym_identifier] = ACTIONS(4520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4522), + [anon_sym_COMMA] = ACTIONS(4522), + [anon_sym_RPAREN] = ACTIONS(4522), + [anon_sym_LPAREN2] = ACTIONS(4522), + [anon_sym_DASH] = ACTIONS(4520), + [anon_sym_PLUS] = ACTIONS(4520), + [anon_sym_STAR] = ACTIONS(4520), + [anon_sym_SLASH] = ACTIONS(4520), + [anon_sym_PERCENT] = ACTIONS(4520), + [anon_sym_PIPE_PIPE] = ACTIONS(4522), + [anon_sym_AMP_AMP] = ACTIONS(4522), + [anon_sym_PIPE] = ACTIONS(4520), + [anon_sym_CARET] = ACTIONS(4520), + [anon_sym_AMP] = ACTIONS(4520), + [anon_sym_EQ_EQ] = ACTIONS(4522), + [anon_sym_BANG_EQ] = ACTIONS(4522), + [anon_sym_GT] = ACTIONS(4520), + [anon_sym_GT_EQ] = ACTIONS(4522), + [anon_sym_LT_EQ] = ACTIONS(4520), + [anon_sym_LT] = ACTIONS(4520), + [anon_sym_LT_LT] = ACTIONS(4520), + [anon_sym_GT_GT] = ACTIONS(4520), + [anon_sym___extension__] = ACTIONS(4520), + [anon_sym___attribute__] = ACTIONS(4520), + [anon_sym___attribute] = ACTIONS(4520), + [anon_sym_LBRACE] = ACTIONS(4522), + [anon_sym_signed] = ACTIONS(6434), + [anon_sym_unsigned] = ACTIONS(6434), + [anon_sym_long] = ACTIONS(6434), + [anon_sym_short] = ACTIONS(6434), + [anon_sym_LBRACK] = ACTIONS(4522), + [anon_sym_EQ] = 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__Nonnull] = ACTIONS(4520), + [anon_sym_mutable] = ACTIONS(4520), + [anon_sym_constinit] = ACTIONS(4520), + [anon_sym_consteval] = ACTIONS(4520), + [anon_sym_alignas] = ACTIONS(4520), + [anon_sym__Alignas] = ACTIONS(4520), + [sym_primitive_type] = ACTIONS(4520), + [anon_sym_QMARK] = ACTIONS(4522), + [anon_sym_STAR_EQ] = ACTIONS(4522), + [anon_sym_SLASH_EQ] = ACTIONS(4522), + [anon_sym_PERCENT_EQ] = ACTIONS(4522), + [anon_sym_PLUS_EQ] = ACTIONS(4522), + [anon_sym_DASH_EQ] = ACTIONS(4522), + [anon_sym_LT_LT_EQ] = ACTIONS(4522), + [anon_sym_GT_GT_EQ] = ACTIONS(4522), + [anon_sym_AMP_EQ] = ACTIONS(4522), + [anon_sym_CARET_EQ] = ACTIONS(4522), + [anon_sym_PIPE_EQ] = ACTIONS(4522), + [anon_sym_and_eq] = ACTIONS(4520), + [anon_sym_or_eq] = ACTIONS(4520), + [anon_sym_xor_eq] = ACTIONS(4520), + [anon_sym_LT_EQ_GT] = ACTIONS(4522), + [anon_sym_or] = ACTIONS(4520), + [anon_sym_and] = ACTIONS(4520), + [anon_sym_bitor] = ACTIONS(4520), + [anon_sym_xor] = ACTIONS(4520), + [anon_sym_bitand] = ACTIONS(4520), + [anon_sym_not_eq] = ACTIONS(4520), + [anon_sym_DASH_DASH] = ACTIONS(4522), + [anon_sym_PLUS_PLUS] = ACTIONS(4522), + [anon_sym_DOT] = ACTIONS(4520), + [anon_sym_DOT_STAR] = ACTIONS(4522), + [anon_sym_DASH_GT] = ACTIONS(4520), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4520), + [anon_sym_decltype] = ACTIONS(4520), + [anon_sym_DASH_GT_STAR] = ACTIONS(4522), + }, + [STATE(2384)] = { + [sym_template_argument_list] = STATE(2396), + [sym_identifier] = ACTIONS(3272), + [anon_sym_LPAREN2] = ACTIONS(3279), + [anon_sym_BANG] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3279), + [anon_sym_AMP] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(6453), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym___extension__] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3279), + [sym_primitive_type] = ACTIONS(3272), + [anon_sym_not] = ACTIONS(3272), + [anon_sym_compl] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_sizeof] = ACTIONS(3272), + [anon_sym___alignof__] = ACTIONS(3272), + [anon_sym___alignof] = ACTIONS(3272), + [anon_sym__alignof] = ACTIONS(3272), + [anon_sym_alignof] = ACTIONS(3272), + [anon_sym__Alignof] = ACTIONS(3272), + [anon_sym_offsetof] = ACTIONS(3272), + [anon_sym__Generic] = ACTIONS(3272), + [anon_sym_asm] = ACTIONS(3272), + [anon_sym___asm__] = ACTIONS(3272), + [anon_sym___asm] = ACTIONS(3272), + [sym_number_literal] = ACTIONS(3279), + [anon_sym_L_SQUOTE] = ACTIONS(3279), + [anon_sym_u_SQUOTE] = ACTIONS(3279), + [anon_sym_U_SQUOTE] = ACTIONS(3279), + [anon_sym_u8_SQUOTE] = ACTIONS(3279), + [anon_sym_SQUOTE] = ACTIONS(3279), + [anon_sym_L_DQUOTE] = ACTIONS(3279), + [anon_sym_u_DQUOTE] = ACTIONS(3279), + [anon_sym_U_DQUOTE] = ACTIONS(3279), + [anon_sym_u8_DQUOTE] = ACTIONS(3279), + [anon_sym_DQUOTE] = ACTIONS(3279), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [anon_sym_NULL] = ACTIONS(3272), + [anon_sym_nullptr] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3272), + [anon_sym_typename] = ACTIONS(3272), + [anon_sym_template] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3279), + [anon_sym_LR_DQUOTE] = ACTIONS(3279), + [anon_sym_uR_DQUOTE] = ACTIONS(3279), + [anon_sym_UR_DQUOTE] = ACTIONS(3279), + [anon_sym_u8R_DQUOTE] = ACTIONS(3279), + [anon_sym_co_await] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_requires] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3272), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3272), + [anon_sym_FORWARD] = ACTIONS(3272), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3272), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3272), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3272), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3272), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3272), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3272), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3272), + [anon_sym_PS_GET] = ACTIONS(3272), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3272), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3272), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3272), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3272), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3272), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3272), + }, + [STATE(2385)] = { + [sym_template_argument_list] = STATE(2396), + [sym_identifier] = ACTIONS(4529), + [anon_sym_LPAREN2] = ACTIONS(3113), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_PLUS] = ACTIONS(4529), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(6453), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym___extension__] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [sym_primitive_type] = ACTIONS(4529), + [anon_sym_not] = ACTIONS(4529), + [anon_sym_compl] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(3113), + [anon_sym_PLUS_PLUS] = ACTIONS(3113), + [anon_sym_sizeof] = ACTIONS(4529), + [anon_sym___alignof__] = ACTIONS(4529), + [anon_sym___alignof] = ACTIONS(4529), + [anon_sym__alignof] = ACTIONS(4529), + [anon_sym_alignof] = ACTIONS(4529), + [anon_sym__Alignof] = ACTIONS(4529), + [anon_sym_offsetof] = ACTIONS(4529), + [anon_sym__Generic] = ACTIONS(4529), + [anon_sym_asm] = ACTIONS(4529), + [anon_sym___asm__] = ACTIONS(4529), + [anon_sym___asm] = ACTIONS(4529), + [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(4529), + [sym_false] = ACTIONS(4529), + [anon_sym_NULL] = ACTIONS(4529), + [anon_sym_nullptr] = ACTIONS(4529), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(4529), + [anon_sym_typename] = ACTIONS(4529), + [anon_sym_template] = ACTIONS(4529), + [anon_sym_delete] = ACTIONS(4529), + [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(4529), + [anon_sym_new] = ACTIONS(4529), + [anon_sym_requires] = ACTIONS(4529), + [sym_this] = ACTIONS(4529), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(4529), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(4529), + [anon_sym_FORWARD] = ACTIONS(4529), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(4529), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(4529), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(4529), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(4529), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(4529), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(4529), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(4529), + [anon_sym_PS_GET] = ACTIONS(4529), + [anon_sym_PS_GET_AND_SET] = ACTIONS(4529), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(4529), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(4529), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(4529), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(4529), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(4529), + }, + [STATE(2386)] = { + [sym_type_qualifier] = STATE(2386), + [sym_alignas_qualifier] = STATE(2426), + [aux_sym__type_definition_type_repeat1] = STATE(2386), + [sym_identifier] = ACTIONS(4171), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4173), + [anon_sym_COMMA] = ACTIONS(4173), + [anon_sym_RPAREN] = ACTIONS(4173), + [anon_sym_LPAREN2] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_PERCENT] = ACTIONS(4171), + [anon_sym_PIPE_PIPE] = ACTIONS(4173), + [anon_sym_AMP_AMP] = ACTIONS(4173), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4171), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_GT_EQ] = ACTIONS(4173), + [anon_sym_LT_EQ] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_LT_LT] = ACTIONS(4171), + [anon_sym_GT_GT] = ACTIONS(4171), + [anon_sym___extension__] = ACTIONS(6455), + [anon_sym___attribute__] = ACTIONS(4171), + [anon_sym___attribute] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_signed] = ACTIONS(4171), + [anon_sym_unsigned] = ACTIONS(4171), + [anon_sym_long] = ACTIONS(4171), + [anon_sym_short] = ACTIONS(4171), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(4171), + [anon_sym_const] = ACTIONS(6455), + [anon_sym_constexpr] = ACTIONS(6455), + [anon_sym_volatile] = ACTIONS(6455), + [anon_sym_restrict] = ACTIONS(6455), + [anon_sym___restrict__] = ACTIONS(6455), + [anon_sym__Atomic] = ACTIONS(6455), + [anon_sym__Noreturn] = ACTIONS(6455), + [anon_sym_noreturn] = ACTIONS(6455), + [anon_sym__Nonnull] = ACTIONS(6455), + [anon_sym_mutable] = ACTIONS(6455), + [anon_sym_constinit] = ACTIONS(6455), + [anon_sym_consteval] = ACTIONS(6455), + [anon_sym_alignas] = ACTIONS(6458), + [anon_sym__Alignas] = ACTIONS(6458), + [sym_primitive_type] = ACTIONS(4171), + [anon_sym_QMARK] = ACTIONS(4173), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_LT_EQ_GT] = ACTIONS(4173), + [anon_sym_or] = ACTIONS(4171), + [anon_sym_and] = ACTIONS(4171), + [anon_sym_bitor] = ACTIONS(4171), + [anon_sym_xor] = ACTIONS(4171), + [anon_sym_bitand] = ACTIONS(4171), + [anon_sym_not_eq] = ACTIONS(4171), + [anon_sym_DASH_DASH] = ACTIONS(4173), + [anon_sym_PLUS_PLUS] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4171), + [anon_sym_DOT_STAR] = ACTIONS(4173), + [anon_sym_DASH_GT] = ACTIONS(4171), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4171), + [anon_sym_decltype] = ACTIONS(4171), + [anon_sym_DASH_GT_STAR] = ACTIONS(4173), + }, + [STATE(2387)] = { + [sym_identifier] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1893), + [anon_sym_COMMA] = ACTIONS(1893), + [anon_sym_RPAREN] = ACTIONS(1893), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_PLUS] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1903), + [anon_sym_SLASH] = ACTIONS(1903), + [anon_sym_PERCENT] = ACTIONS(1903), + [anon_sym_PIPE_PIPE] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_EQ_EQ] = ACTIONS(1893), + [anon_sym_BANG_EQ] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(1893), + [anon_sym_LT_EQ] = ACTIONS(1903), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_LT_LT] = ACTIONS(1903), + [anon_sym_GT_GT] = ACTIONS(1903), + [anon_sym___extension__] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1893), + [anon_sym_EQ] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1903), + [anon_sym_QMARK] = ACTIONS(1893), + [anon_sym_STAR_EQ] = ACTIONS(1893), + [anon_sym_SLASH_EQ] = ACTIONS(1893), + [anon_sym_PERCENT_EQ] = ACTIONS(1893), + [anon_sym_PLUS_EQ] = ACTIONS(1893), + [anon_sym_DASH_EQ] = ACTIONS(1893), + [anon_sym_LT_LT_EQ] = ACTIONS(1893), + [anon_sym_GT_GT_EQ] = ACTIONS(1893), + [anon_sym_AMP_EQ] = ACTIONS(1893), + [anon_sym_CARET_EQ] = ACTIONS(1893), + [anon_sym_PIPE_EQ] = ACTIONS(1893), + [anon_sym_and_eq] = ACTIONS(1903), + [anon_sym_or_eq] = ACTIONS(1903), + [anon_sym_xor_eq] = ACTIONS(1903), + [anon_sym_LT_EQ_GT] = ACTIONS(1893), + [anon_sym_or] = ACTIONS(1903), + [anon_sym_and] = ACTIONS(1903), + [anon_sym_bitor] = ACTIONS(1903), + [anon_sym_xor] = ACTIONS(1903), + [anon_sym_bitand] = ACTIONS(1903), + [anon_sym_not_eq] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1893), + [anon_sym_PLUS_PLUS] = ACTIONS(1893), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_STAR] = ACTIONS(1893), + [anon_sym_DASH_GT] = ACTIONS(1903), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1903), + [anon_sym_DASH_GT_STAR] = ACTIONS(1893), + }, + [STATE(2388)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2388), + [sym_identifier] = ACTIONS(4520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4522), + [anon_sym_COMMA] = ACTIONS(4522), + [anon_sym_LPAREN2] = ACTIONS(4522), + [anon_sym_DASH] = ACTIONS(4520), + [anon_sym_PLUS] = ACTIONS(4520), + [anon_sym_STAR] = ACTIONS(4520), + [anon_sym_SLASH] = ACTIONS(4520), + [anon_sym_PERCENT] = ACTIONS(4520), + [anon_sym_PIPE_PIPE] = ACTIONS(4522), + [anon_sym_AMP_AMP] = ACTIONS(4522), + [anon_sym_PIPE] = ACTIONS(4520), + [anon_sym_CARET] = ACTIONS(4520), + [anon_sym_AMP] = ACTIONS(4520), + [anon_sym_EQ_EQ] = ACTIONS(4522), + [anon_sym_BANG_EQ] = ACTIONS(4522), + [anon_sym_GT] = ACTIONS(4520), + [anon_sym_GT_EQ] = ACTIONS(4520), + [anon_sym_LT_EQ] = ACTIONS(4520), + [anon_sym_LT] = ACTIONS(4520), + [anon_sym_LT_LT] = ACTIONS(4520), + [anon_sym_GT_GT] = ACTIONS(4520), + [anon_sym___extension__] = ACTIONS(4520), + [anon_sym___attribute__] = ACTIONS(4520), + [anon_sym___attribute] = ACTIONS(4520), + [anon_sym_LBRACE] = ACTIONS(4522), + [anon_sym_signed] = ACTIONS(6461), + [anon_sym_unsigned] = ACTIONS(6461), + [anon_sym_long] = ACTIONS(6461), + [anon_sym_short] = ACTIONS(6461), + [anon_sym_LBRACK] = ACTIONS(4522), + [anon_sym_EQ] = 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__Nonnull] = ACTIONS(4520), + [anon_sym_mutable] = ACTIONS(4520), + [anon_sym_constinit] = ACTIONS(4520), + [anon_sym_consteval] = ACTIONS(4520), + [anon_sym_alignas] = ACTIONS(4520), + [anon_sym__Alignas] = ACTIONS(4520), + [sym_primitive_type] = ACTIONS(4520), + [anon_sym_QMARK] = ACTIONS(4522), + [anon_sym_STAR_EQ] = ACTIONS(4522), + [anon_sym_SLASH_EQ] = ACTIONS(4522), + [anon_sym_PERCENT_EQ] = ACTIONS(4522), + [anon_sym_PLUS_EQ] = ACTIONS(4522), + [anon_sym_DASH_EQ] = ACTIONS(4522), + [anon_sym_LT_LT_EQ] = ACTIONS(4522), + [anon_sym_GT_GT_EQ] = ACTIONS(4520), + [anon_sym_AMP_EQ] = ACTIONS(4522), + [anon_sym_CARET_EQ] = ACTIONS(4522), + [anon_sym_PIPE_EQ] = ACTIONS(4522), + [anon_sym_and_eq] = ACTIONS(4520), + [anon_sym_or_eq] = ACTIONS(4520), + [anon_sym_xor_eq] = ACTIONS(4520), + [anon_sym_LT_EQ_GT] = ACTIONS(4522), + [anon_sym_or] = ACTIONS(4520), + [anon_sym_and] = ACTIONS(4520), + [anon_sym_bitor] = ACTIONS(4520), + [anon_sym_xor] = ACTIONS(4520), + [anon_sym_bitand] = ACTIONS(4520), + [anon_sym_not_eq] = ACTIONS(4520), + [anon_sym_DASH_DASH] = ACTIONS(4522), + [anon_sym_PLUS_PLUS] = ACTIONS(4522), + [anon_sym_DOT] = ACTIONS(4520), + [anon_sym_DOT_STAR] = ACTIONS(4522), + [anon_sym_DASH_GT] = ACTIONS(4522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4520), + [anon_sym_decltype] = ACTIONS(4520), + [anon_sym_GT2] = ACTIONS(4522), + }, + [STATE(2389)] = { + [sym_identifier] = ACTIONS(4269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_PLUS] = ACTIONS(4269), + [anon_sym_STAR] = ACTIONS(4269), + [anon_sym_SLASH] = ACTIONS(4269), + [anon_sym_PERCENT] = ACTIONS(4269), + [anon_sym_PIPE_PIPE] = ACTIONS(4271), + [anon_sym_AMP_AMP] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4269), + [anon_sym_CARET] = ACTIONS(4269), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_EQ_EQ] = ACTIONS(4271), + [anon_sym_BANG_EQ] = ACTIONS(4271), + [anon_sym_GT] = ACTIONS(4269), + [anon_sym_GT_EQ] = ACTIONS(4271), + [anon_sym_LT_EQ] = ACTIONS(4269), + [anon_sym_LT] = ACTIONS(4269), + [anon_sym_LT_LT] = ACTIONS(4269), + [anon_sym_GT_GT] = ACTIONS(4269), + [anon_sym___extension__] = ACTIONS(4269), + [anon_sym___attribute__] = ACTIONS(4269), + [anon_sym___attribute] = ACTIONS(4269), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_signed] = ACTIONS(4269), + [anon_sym_unsigned] = ACTIONS(4269), + [anon_sym_long] = ACTIONS(4269), + [anon_sym_short] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4269), + [anon_sym_const] = ACTIONS(4269), + [anon_sym_constexpr] = ACTIONS(4269), + [anon_sym_volatile] = ACTIONS(4269), + [anon_sym_restrict] = ACTIONS(4269), + [anon_sym___restrict__] = ACTIONS(4269), + [anon_sym__Atomic] = ACTIONS(4269), + [anon_sym__Noreturn] = ACTIONS(4269), + [anon_sym_noreturn] = ACTIONS(4269), + [anon_sym__Nonnull] = ACTIONS(4269), + [anon_sym_mutable] = ACTIONS(4269), + [anon_sym_constinit] = ACTIONS(4269), + [anon_sym_consteval] = ACTIONS(4269), + [anon_sym_alignas] = ACTIONS(4269), + [anon_sym__Alignas] = ACTIONS(4269), + [sym_primitive_type] = ACTIONS(4269), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_STAR_EQ] = ACTIONS(4271), + [anon_sym_SLASH_EQ] = ACTIONS(4271), + [anon_sym_PERCENT_EQ] = ACTIONS(4271), + [anon_sym_PLUS_EQ] = ACTIONS(4271), + [anon_sym_DASH_EQ] = ACTIONS(4271), + [anon_sym_LT_LT_EQ] = ACTIONS(4271), + [anon_sym_GT_GT_EQ] = ACTIONS(4271), + [anon_sym_AMP_EQ] = ACTIONS(4271), + [anon_sym_CARET_EQ] = ACTIONS(4271), + [anon_sym_PIPE_EQ] = ACTIONS(4271), + [anon_sym_and_eq] = ACTIONS(4269), + [anon_sym_or_eq] = ACTIONS(4269), + [anon_sym_xor_eq] = ACTIONS(4269), + [anon_sym_LT_EQ_GT] = ACTIONS(4271), + [anon_sym_or] = ACTIONS(4269), + [anon_sym_and] = ACTIONS(4269), + [anon_sym_bitor] = ACTIONS(4269), + [anon_sym_xor] = ACTIONS(4269), + [anon_sym_bitand] = ACTIONS(4269), + [anon_sym_not_eq] = ACTIONS(4269), + [anon_sym_DASH_DASH] = ACTIONS(4271), + [anon_sym_PLUS_PLUS] = ACTIONS(4271), + [anon_sym_DOT] = ACTIONS(4269), + [anon_sym_DOT_STAR] = ACTIONS(4271), + [anon_sym_DASH_GT] = ACTIONS(4269), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4269), + [anon_sym_decltype] = ACTIONS(4269), + [anon_sym_DASH_GT_STAR] = ACTIONS(4271), + }, + [STATE(2390)] = { + [sym_type_qualifier] = STATE(2390), + [sym_alignas_qualifier] = STATE(2434), + [aux_sym__type_definition_type_repeat1] = STATE(2390), + [sym_identifier] = ACTIONS(4171), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4173), + [anon_sym_COMMA] = ACTIONS(4173), + [anon_sym_RPAREN] = ACTIONS(4173), + [aux_sym_preproc_if_token2] = ACTIONS(4173), + [aux_sym_preproc_else_token1] = ACTIONS(4173), + [aux_sym_preproc_elif_token1] = ACTIONS(4171), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4173), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4173), + [anon_sym_LPAREN2] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_PIPE_PIPE] = ACTIONS(4173), + [anon_sym_AMP_AMP] = ACTIONS(4173), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4173), + [anon_sym_AMP] = ACTIONS(4171), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_GT_EQ] = ACTIONS(4173), + [anon_sym_LT_EQ] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_LT_LT] = ACTIONS(4173), + [anon_sym_GT_GT] = ACTIONS(4173), + [anon_sym_SEMI] = ACTIONS(4173), + [anon_sym___extension__] = ACTIONS(6464), + [anon_sym___attribute__] = ACTIONS(4171), + [anon_sym___attribute] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_RBRACE] = ACTIONS(4173), + [anon_sym_signed] = ACTIONS(4171), + [anon_sym_unsigned] = ACTIONS(4171), + [anon_sym_long] = ACTIONS(4171), + [anon_sym_short] = ACTIONS(4171), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4173), + [anon_sym_const] = ACTIONS(6464), + [anon_sym_constexpr] = ACTIONS(6464), + [anon_sym_volatile] = ACTIONS(6464), + [anon_sym_restrict] = ACTIONS(6464), + [anon_sym___restrict__] = ACTIONS(6464), + [anon_sym__Atomic] = ACTIONS(6464), + [anon_sym__Noreturn] = ACTIONS(6464), + [anon_sym_noreturn] = ACTIONS(6464), + [anon_sym__Nonnull] = ACTIONS(6464), + [anon_sym_mutable] = ACTIONS(6464), + [anon_sym_constinit] = ACTIONS(6464), + [anon_sym_consteval] = ACTIONS(6464), + [anon_sym_alignas] = ACTIONS(6467), + [anon_sym__Alignas] = ACTIONS(6467), + [sym_primitive_type] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(4173), + [anon_sym_QMARK] = ACTIONS(4173), + [anon_sym_LT_EQ_GT] = ACTIONS(4173), + [anon_sym_or] = ACTIONS(4171), + [anon_sym_and] = ACTIONS(4171), + [anon_sym_bitor] = ACTIONS(4171), + [anon_sym_xor] = ACTIONS(4171), + [anon_sym_bitand] = ACTIONS(4171), + [anon_sym_not_eq] = ACTIONS(4171), + [anon_sym_DASH_DASH] = ACTIONS(4173), + [anon_sym_PLUS_PLUS] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4171), + [anon_sym_DOT_STAR] = ACTIONS(4173), + [anon_sym_DASH_GT] = ACTIONS(4173), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4171), + [anon_sym_decltype] = ACTIONS(4171), + [anon_sym_final] = ACTIONS(4171), + [anon_sym_override] = ACTIONS(4171), + [anon_sym_requires] = ACTIONS(4171), + }, + [STATE(2391)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2388), + [sym_identifier] = ACTIONS(4520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5131), + [anon_sym_COMMA] = ACTIONS(5131), + [anon_sym_LPAREN2] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_STAR] = ACTIONS(5128), + [anon_sym_SLASH] = ACTIONS(5128), + [anon_sym_PERCENT] = ACTIONS(5128), + [anon_sym_PIPE_PIPE] = ACTIONS(5131), + [anon_sym_AMP_AMP] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5128), + [anon_sym_CARET] = ACTIONS(5128), + [anon_sym_AMP] = ACTIONS(5128), + [anon_sym_EQ_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5128), + [anon_sym_GT_EQ] = ACTIONS(5128), + [anon_sym_LT_EQ] = ACTIONS(5128), + [anon_sym_LT] = ACTIONS(5128), + [anon_sym_LT_LT] = ACTIONS(5128), + [anon_sym_GT_GT] = ACTIONS(5128), + [anon_sym___extension__] = ACTIONS(4520), + [anon_sym___attribute__] = ACTIONS(5128), + [anon_sym___attribute] = ACTIONS(5128), + [anon_sym_LBRACE] = ACTIONS(5131), + [anon_sym_signed] = ACTIONS(6461), + [anon_sym_unsigned] = ACTIONS(6461), + [anon_sym_long] = ACTIONS(6461), + [anon_sym_short] = ACTIONS(6461), + [anon_sym_LBRACK] = ACTIONS(5131), + [anon_sym_EQ] = ACTIONS(5128), + [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__Nonnull] = ACTIONS(4520), + [anon_sym_mutable] = ACTIONS(4520), + [anon_sym_constinit] = ACTIONS(4520), + [anon_sym_consteval] = ACTIONS(4520), + [anon_sym_alignas] = ACTIONS(4520), + [anon_sym__Alignas] = ACTIONS(4520), + [sym_primitive_type] = ACTIONS(4520), + [anon_sym_QMARK] = ACTIONS(5131), + [anon_sym_STAR_EQ] = ACTIONS(5131), + [anon_sym_SLASH_EQ] = ACTIONS(5131), + [anon_sym_PERCENT_EQ] = ACTIONS(5131), + [anon_sym_PLUS_EQ] = ACTIONS(5131), + [anon_sym_DASH_EQ] = ACTIONS(5131), + [anon_sym_LT_LT_EQ] = ACTIONS(5131), + [anon_sym_GT_GT_EQ] = ACTIONS(5128), + [anon_sym_AMP_EQ] = ACTIONS(5131), + [anon_sym_CARET_EQ] = ACTIONS(5131), + [anon_sym_PIPE_EQ] = ACTIONS(5131), + [anon_sym_and_eq] = ACTIONS(5128), + [anon_sym_or_eq] = ACTIONS(5128), + [anon_sym_xor_eq] = ACTIONS(5128), + [anon_sym_LT_EQ_GT] = ACTIONS(5131), + [anon_sym_or] = ACTIONS(5128), + [anon_sym_and] = ACTIONS(5128), + [anon_sym_bitor] = ACTIONS(5128), + [anon_sym_xor] = ACTIONS(5128), + [anon_sym_bitand] = ACTIONS(5128), + [anon_sym_not_eq] = ACTIONS(5128), + [anon_sym_DASH_DASH] = ACTIONS(5131), + [anon_sym_PLUS_PLUS] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5128), + [anon_sym_DOT_STAR] = ACTIONS(5131), + [anon_sym_DASH_GT] = ACTIONS(5131), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5128), + [anon_sym_decltype] = ACTIONS(5128), + [anon_sym_GT2] = ACTIONS(5131), + }, + [STATE(2392)] = { + [sym_identifier] = ACTIONS(4269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_PLUS] = ACTIONS(4269), + [anon_sym_STAR] = ACTIONS(4269), + [anon_sym_SLASH] = ACTIONS(4269), + [anon_sym_PERCENT] = ACTIONS(4269), + [anon_sym_PIPE_PIPE] = ACTIONS(4271), + [anon_sym_AMP_AMP] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4269), + [anon_sym_CARET] = ACTIONS(4269), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_EQ_EQ] = ACTIONS(4271), + [anon_sym_BANG_EQ] = ACTIONS(4271), + [anon_sym_GT] = ACTIONS(4269), + [anon_sym_GT_EQ] = ACTIONS(4269), + [anon_sym_LT_EQ] = ACTIONS(4269), + [anon_sym_LT] = ACTIONS(4269), + [anon_sym_LT_LT] = ACTIONS(4269), + [anon_sym_GT_GT] = ACTIONS(4269), + [anon_sym___extension__] = ACTIONS(4269), + [anon_sym___attribute__] = ACTIONS(4269), + [anon_sym___attribute] = ACTIONS(4269), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_signed] = ACTIONS(4269), + [anon_sym_unsigned] = ACTIONS(4269), + [anon_sym_long] = ACTIONS(4269), + [anon_sym_short] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4269), + [anon_sym_const] = ACTIONS(4269), + [anon_sym_constexpr] = ACTIONS(4269), + [anon_sym_volatile] = ACTIONS(4269), + [anon_sym_restrict] = ACTIONS(4269), + [anon_sym___restrict__] = ACTIONS(4269), + [anon_sym__Atomic] = ACTIONS(4269), + [anon_sym__Noreturn] = ACTIONS(4269), + [anon_sym_noreturn] = ACTIONS(4269), + [anon_sym__Nonnull] = ACTIONS(4269), + [anon_sym_mutable] = ACTIONS(4269), + [anon_sym_constinit] = ACTIONS(4269), + [anon_sym_consteval] = ACTIONS(4269), + [anon_sym_alignas] = ACTIONS(4269), + [anon_sym__Alignas] = ACTIONS(4269), + [sym_primitive_type] = ACTIONS(4269), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_STAR_EQ] = ACTIONS(4271), + [anon_sym_SLASH_EQ] = ACTIONS(4271), + [anon_sym_PERCENT_EQ] = ACTIONS(4271), + [anon_sym_PLUS_EQ] = ACTIONS(4271), + [anon_sym_DASH_EQ] = ACTIONS(4271), + [anon_sym_LT_LT_EQ] = ACTIONS(4271), + [anon_sym_GT_GT_EQ] = ACTIONS(4269), + [anon_sym_AMP_EQ] = ACTIONS(4271), + [anon_sym_CARET_EQ] = ACTIONS(4271), + [anon_sym_PIPE_EQ] = ACTIONS(4271), + [anon_sym_and_eq] = ACTIONS(4269), + [anon_sym_or_eq] = ACTIONS(4269), + [anon_sym_xor_eq] = ACTIONS(4269), + [anon_sym_LT_EQ_GT] = ACTIONS(4271), + [anon_sym_or] = ACTIONS(4269), + [anon_sym_and] = ACTIONS(4269), + [anon_sym_bitor] = ACTIONS(4269), + [anon_sym_xor] = ACTIONS(4269), + [anon_sym_bitand] = ACTIONS(4269), + [anon_sym_not_eq] = ACTIONS(4269), + [anon_sym_DASH_DASH] = ACTIONS(4271), + [anon_sym_PLUS_PLUS] = ACTIONS(4271), + [anon_sym_DOT] = ACTIONS(4269), + [anon_sym_DOT_STAR] = ACTIONS(4271), + [anon_sym_DASH_GT] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4269), + [anon_sym_decltype] = ACTIONS(4269), + [anon_sym_GT2] = ACTIONS(4271), + }, + [STATE(2393)] = { + [sym_identifier] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1893), + [anon_sym_COMMA] = ACTIONS(1893), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_PLUS] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1903), + [anon_sym_SLASH] = ACTIONS(1903), + [anon_sym_PERCENT] = ACTIONS(1903), + [anon_sym_PIPE_PIPE] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_EQ_EQ] = ACTIONS(1893), + [anon_sym_BANG_EQ] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(1903), + [anon_sym_LT_EQ] = ACTIONS(1903), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_LT_LT] = ACTIONS(1903), + [anon_sym_GT_GT] = ACTIONS(1903), + [anon_sym___extension__] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1893), + [anon_sym_EQ] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1903), + [anon_sym_QMARK] = ACTIONS(1893), + [anon_sym_STAR_EQ] = ACTIONS(1893), + [anon_sym_SLASH_EQ] = ACTIONS(1893), + [anon_sym_PERCENT_EQ] = ACTIONS(1893), + [anon_sym_PLUS_EQ] = ACTIONS(1893), + [anon_sym_DASH_EQ] = ACTIONS(1893), + [anon_sym_LT_LT_EQ] = ACTIONS(1893), + [anon_sym_GT_GT_EQ] = ACTIONS(1903), + [anon_sym_AMP_EQ] = ACTIONS(1893), + [anon_sym_CARET_EQ] = ACTIONS(1893), + [anon_sym_PIPE_EQ] = ACTIONS(1893), + [anon_sym_and_eq] = ACTIONS(1903), + [anon_sym_or_eq] = ACTIONS(1903), + [anon_sym_xor_eq] = ACTIONS(1903), + [anon_sym_LT_EQ_GT] = ACTIONS(1893), + [anon_sym_or] = ACTIONS(1903), + [anon_sym_and] = ACTIONS(1903), + [anon_sym_bitor] = ACTIONS(1903), + [anon_sym_xor] = ACTIONS(1903), + [anon_sym_bitand] = ACTIONS(1903), + [anon_sym_not_eq] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1893), + [anon_sym_PLUS_PLUS] = ACTIONS(1893), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_STAR] = ACTIONS(1893), + [anon_sym_DASH_GT] = ACTIONS(1893), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1903), + [anon_sym_GT2] = ACTIONS(1893), + }, + [STATE(2394)] = { + [sym_identifier] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_BANG] = ACTIONS(4537), + [anon_sym_TILDE] = ACTIONS(4537), + [anon_sym_DASH] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4537), + [anon_sym_AMP] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(4537), + [anon_sym___extension__] = ACTIONS(4535), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(4537), + [anon_sym_RBRACE] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(4537), + [sym_primitive_type] = ACTIONS(4535), + [anon_sym_not] = ACTIONS(4535), + [anon_sym_compl] = ACTIONS(4535), + [anon_sym_DASH_DASH] = ACTIONS(4537), + [anon_sym_PLUS_PLUS] = ACTIONS(4537), + [anon_sym_sizeof] = ACTIONS(4535), + [anon_sym___alignof__] = ACTIONS(4535), + [anon_sym___alignof] = ACTIONS(4535), + [anon_sym__alignof] = ACTIONS(4535), + [anon_sym_alignof] = ACTIONS(4535), + [anon_sym__Alignof] = ACTIONS(4535), + [anon_sym_offsetof] = ACTIONS(4535), + [anon_sym__Generic] = ACTIONS(4535), + [anon_sym_asm] = ACTIONS(4535), + [anon_sym___asm__] = ACTIONS(4535), + [anon_sym___asm] = ACTIONS(4535), + [sym_number_literal] = ACTIONS(4537), + [anon_sym_L_SQUOTE] = ACTIONS(4537), + [anon_sym_u_SQUOTE] = ACTIONS(4537), + [anon_sym_U_SQUOTE] = ACTIONS(4537), + [anon_sym_u8_SQUOTE] = ACTIONS(4537), + [anon_sym_SQUOTE] = ACTIONS(4537), + [anon_sym_L_DQUOTE] = ACTIONS(4537), + [anon_sym_u_DQUOTE] = ACTIONS(4537), + [anon_sym_U_DQUOTE] = ACTIONS(4537), + [anon_sym_u8_DQUOTE] = ACTIONS(4537), + [anon_sym_DQUOTE] = ACTIONS(4537), + [sym_true] = ACTIONS(4535), + [sym_false] = ACTIONS(4535), + [anon_sym_NULL] = ACTIONS(4535), + [anon_sym_nullptr] = ACTIONS(4535), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(4535), + [anon_sym_typename] = ACTIONS(4535), + [anon_sym_template] = ACTIONS(4535), + [anon_sym_delete] = ACTIONS(4535), + [anon_sym_R_DQUOTE] = ACTIONS(4537), + [anon_sym_LR_DQUOTE] = ACTIONS(4537), + [anon_sym_uR_DQUOTE] = ACTIONS(4537), + [anon_sym_UR_DQUOTE] = ACTIONS(4537), + [anon_sym_u8R_DQUOTE] = ACTIONS(4537), + [anon_sym_co_await] = ACTIONS(4535), + [anon_sym_new] = ACTIONS(4535), + [anon_sym_requires] = ACTIONS(4535), + [sym_this] = ACTIONS(4535), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(4535), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(4535), + [anon_sym_FORWARD] = ACTIONS(4535), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(4535), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(4535), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(4535), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(4535), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(4535), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(4535), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(4535), + [anon_sym_PS_GET] = ACTIONS(4535), + [anon_sym_PS_GET_AND_SET] = ACTIONS(4535), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(4535), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(4535), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(4535), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(4535), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(4535), + }, + [STATE(2395)] = { + [sym_identifier] = ACTIONS(6470), + [anon_sym_LPAREN2] = ACTIONS(6472), + [anon_sym_BANG] = ACTIONS(6472), + [anon_sym_TILDE] = ACTIONS(6472), + [anon_sym_DASH] = ACTIONS(6470), + [anon_sym_PLUS] = ACTIONS(6470), + [anon_sym_STAR] = ACTIONS(6472), + [anon_sym_AMP] = ACTIONS(6472), + [anon_sym_SEMI] = ACTIONS(6472), + [anon_sym___extension__] = ACTIONS(6470), + [anon_sym_COLON_COLON] = ACTIONS(6472), + [anon_sym_LBRACE] = ACTIONS(6472), + [anon_sym_RBRACE] = ACTIONS(6472), + [anon_sym_LBRACK] = ACTIONS(6472), + [sym_primitive_type] = ACTIONS(6470), + [anon_sym_not] = ACTIONS(6470), + [anon_sym_compl] = ACTIONS(6470), + [anon_sym_DASH_DASH] = ACTIONS(6472), + [anon_sym_PLUS_PLUS] = ACTIONS(6472), + [anon_sym_sizeof] = ACTIONS(6470), + [anon_sym___alignof__] = ACTIONS(6470), + [anon_sym___alignof] = ACTIONS(6470), + [anon_sym__alignof] = ACTIONS(6470), + [anon_sym_alignof] = ACTIONS(6470), + [anon_sym__Alignof] = ACTIONS(6470), + [anon_sym_offsetof] = ACTIONS(6470), + [anon_sym__Generic] = ACTIONS(6470), + [anon_sym_asm] = ACTIONS(6470), + [anon_sym___asm__] = ACTIONS(6470), + [anon_sym___asm] = ACTIONS(6470), + [sym_number_literal] = ACTIONS(6472), + [anon_sym_L_SQUOTE] = ACTIONS(6472), + [anon_sym_u_SQUOTE] = ACTIONS(6472), + [anon_sym_U_SQUOTE] = ACTIONS(6472), + [anon_sym_u8_SQUOTE] = ACTIONS(6472), + [anon_sym_SQUOTE] = ACTIONS(6472), + [anon_sym_L_DQUOTE] = ACTIONS(6472), + [anon_sym_u_DQUOTE] = ACTIONS(6472), + [anon_sym_U_DQUOTE] = ACTIONS(6472), + [anon_sym_u8_DQUOTE] = ACTIONS(6472), + [anon_sym_DQUOTE] = ACTIONS(6472), + [sym_true] = ACTIONS(6470), + [sym_false] = ACTIONS(6470), + [anon_sym_NULL] = ACTIONS(6470), + [anon_sym_nullptr] = ACTIONS(6470), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6470), + [anon_sym_typename] = ACTIONS(6470), + [anon_sym_template] = ACTIONS(6470), + [anon_sym_delete] = ACTIONS(6470), + [anon_sym_R_DQUOTE] = ACTIONS(6472), + [anon_sym_LR_DQUOTE] = ACTIONS(6472), + [anon_sym_uR_DQUOTE] = ACTIONS(6472), + [anon_sym_UR_DQUOTE] = ACTIONS(6472), + [anon_sym_u8R_DQUOTE] = ACTIONS(6472), + [anon_sym_co_await] = ACTIONS(6470), + [anon_sym_new] = ACTIONS(6470), + [anon_sym_requires] = ACTIONS(6470), + [sym_this] = ACTIONS(6470), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(6470), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(6470), + [anon_sym_FORWARD] = ACTIONS(6470), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(6470), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(6470), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(6470), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(6470), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(6470), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(6470), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(6470), + [anon_sym_PS_GET] = ACTIONS(6470), + [anon_sym_PS_GET_AND_SET] = ACTIONS(6470), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(6470), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(6470), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(6470), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(6470), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(6470), + }, + [STATE(2396)] = { + [sym_identifier] = ACTIONS(3289), + [anon_sym_LPAREN2] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym___extension__] = ACTIONS(3289), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [sym_primitive_type] = ACTIONS(3289), + [anon_sym_not] = ACTIONS(3289), + [anon_sym_compl] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_sizeof] = ACTIONS(3289), + [anon_sym___alignof__] = ACTIONS(3289), + [anon_sym___alignof] = ACTIONS(3289), + [anon_sym__alignof] = ACTIONS(3289), + [anon_sym_alignof] = ACTIONS(3289), + [anon_sym__Alignof] = ACTIONS(3289), + [anon_sym_offsetof] = ACTIONS(3289), + [anon_sym__Generic] = ACTIONS(3289), + [anon_sym_asm] = ACTIONS(3289), + [anon_sym___asm__] = ACTIONS(3289), + [anon_sym___asm] = ACTIONS(3289), + [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(3289), + [sym_false] = ACTIONS(3289), + [anon_sym_NULL] = ACTIONS(3289), + [anon_sym_nullptr] = ACTIONS(3289), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3289), + [anon_sym_typename] = ACTIONS(3289), + [anon_sym_template] = ACTIONS(3289), + [anon_sym_delete] = ACTIONS(3289), + [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(3289), + [anon_sym_new] = ACTIONS(3289), + [anon_sym_requires] = ACTIONS(3289), + [sym_this] = ACTIONS(3289), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3289), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3289), + [anon_sym_FORWARD] = ACTIONS(3289), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3289), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3289), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3289), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3289), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3289), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3289), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3289), + [anon_sym_PS_GET] = ACTIONS(3289), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3289), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3289), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3289), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3289), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3289), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3289), + }, + [STATE(2397)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2419), + [sym_identifier] = ACTIONS(4520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5131), + [anon_sym_COMMA] = ACTIONS(5131), + [anon_sym_RPAREN] = ACTIONS(5131), + [anon_sym_LPAREN2] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_STAR] = ACTIONS(5128), + [anon_sym_SLASH] = ACTIONS(5128), + [anon_sym_PERCENT] = ACTIONS(5128), + [anon_sym_PIPE_PIPE] = ACTIONS(5131), + [anon_sym_AMP_AMP] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5128), + [anon_sym_CARET] = ACTIONS(5128), + [anon_sym_AMP] = ACTIONS(5128), + [anon_sym_EQ_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5128), + [anon_sym_GT_EQ] = ACTIONS(5131), + [anon_sym_LT_EQ] = ACTIONS(5128), + [anon_sym_LT] = ACTIONS(5128), + [anon_sym_LT_LT] = ACTIONS(5128), + [anon_sym_GT_GT] = ACTIONS(5128), + [anon_sym___extension__] = ACTIONS(4520), + [anon_sym___attribute__] = ACTIONS(5128), + [anon_sym___attribute] = ACTIONS(5128), + [anon_sym_LBRACE] = ACTIONS(5131), + [anon_sym_signed] = ACTIONS(6474), + [anon_sym_unsigned] = ACTIONS(6474), + [anon_sym_long] = ACTIONS(6474), + [anon_sym_short] = ACTIONS(6474), + [anon_sym_LBRACK] = ACTIONS(5131), + [anon_sym_EQ] = ACTIONS(5128), + [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__Nonnull] = ACTIONS(4520), + [anon_sym_mutable] = ACTIONS(4520), + [anon_sym_constinit] = ACTIONS(4520), + [anon_sym_consteval] = ACTIONS(4520), + [anon_sym_alignas] = ACTIONS(4520), + [anon_sym__Alignas] = ACTIONS(4520), + [sym_primitive_type] = ACTIONS(4520), + [anon_sym_QMARK] = ACTIONS(5131), + [anon_sym_STAR_EQ] = ACTIONS(5131), + [anon_sym_SLASH_EQ] = ACTIONS(5131), + [anon_sym_PERCENT_EQ] = ACTIONS(5131), + [anon_sym_PLUS_EQ] = ACTIONS(5131), + [anon_sym_DASH_EQ] = ACTIONS(5131), + [anon_sym_LT_LT_EQ] = ACTIONS(5131), + [anon_sym_GT_GT_EQ] = ACTIONS(5131), + [anon_sym_AMP_EQ] = ACTIONS(5131), + [anon_sym_CARET_EQ] = ACTIONS(5131), + [anon_sym_PIPE_EQ] = ACTIONS(5131), + [anon_sym_LT_EQ_GT] = ACTIONS(5131), + [anon_sym_or] = ACTIONS(5128), + [anon_sym_and] = ACTIONS(5128), + [anon_sym_bitor] = ACTIONS(5128), + [anon_sym_xor] = ACTIONS(5128), + [anon_sym_bitand] = ACTIONS(5128), + [anon_sym_not_eq] = ACTIONS(5128), + [anon_sym_DASH_DASH] = ACTIONS(5131), + [anon_sym_PLUS_PLUS] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5128), + [anon_sym_DOT_STAR] = ACTIONS(5131), + [anon_sym_DASH_GT] = ACTIONS(5128), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5128), + [anon_sym_decltype] = ACTIONS(5128), + [anon_sym_DASH_GT_STAR] = ACTIONS(5131), + }, + [STATE(2398)] = { + [sym_identifier] = ACTIONS(6477), + [anon_sym_LPAREN2] = ACTIONS(6479), + [anon_sym_BANG] = ACTIONS(6479), + [anon_sym_TILDE] = ACTIONS(6479), + [anon_sym_DASH] = ACTIONS(6477), + [anon_sym_PLUS] = ACTIONS(6477), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_AMP] = ACTIONS(6479), + [anon_sym_SEMI] = ACTIONS(6479), + [anon_sym___extension__] = ACTIONS(6477), + [anon_sym_COLON_COLON] = ACTIONS(6479), + [anon_sym_LBRACE] = ACTIONS(6479), + [anon_sym_RBRACE] = ACTIONS(6479), + [anon_sym_LBRACK] = ACTIONS(6479), + [sym_primitive_type] = ACTIONS(6477), + [anon_sym_not] = ACTIONS(6477), + [anon_sym_compl] = ACTIONS(6477), + [anon_sym_DASH_DASH] = ACTIONS(6479), + [anon_sym_PLUS_PLUS] = ACTIONS(6479), + [anon_sym_sizeof] = ACTIONS(6477), + [anon_sym___alignof__] = ACTIONS(6477), + [anon_sym___alignof] = ACTIONS(6477), + [anon_sym__alignof] = ACTIONS(6477), + [anon_sym_alignof] = ACTIONS(6477), + [anon_sym__Alignof] = ACTIONS(6477), + [anon_sym_offsetof] = ACTIONS(6477), + [anon_sym__Generic] = ACTIONS(6477), + [anon_sym_asm] = ACTIONS(6477), + [anon_sym___asm__] = ACTIONS(6477), + [anon_sym___asm] = ACTIONS(6477), + [sym_number_literal] = ACTIONS(6479), + [anon_sym_L_SQUOTE] = ACTIONS(6479), + [anon_sym_u_SQUOTE] = ACTIONS(6479), + [anon_sym_U_SQUOTE] = ACTIONS(6479), + [anon_sym_u8_SQUOTE] = ACTIONS(6479), + [anon_sym_SQUOTE] = ACTIONS(6479), + [anon_sym_L_DQUOTE] = ACTIONS(6479), + [anon_sym_u_DQUOTE] = ACTIONS(6479), + [anon_sym_U_DQUOTE] = ACTIONS(6479), + [anon_sym_u8_DQUOTE] = ACTIONS(6479), + [anon_sym_DQUOTE] = ACTIONS(6479), + [sym_true] = ACTIONS(6477), + [sym_false] = ACTIONS(6477), + [anon_sym_NULL] = ACTIONS(6477), + [anon_sym_nullptr] = ACTIONS(6477), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6477), + [anon_sym_typename] = ACTIONS(6477), + [anon_sym_template] = ACTIONS(6477), + [anon_sym_delete] = ACTIONS(6477), + [anon_sym_R_DQUOTE] = ACTIONS(6479), + [anon_sym_LR_DQUOTE] = ACTIONS(6479), + [anon_sym_uR_DQUOTE] = ACTIONS(6479), + [anon_sym_UR_DQUOTE] = ACTIONS(6479), + [anon_sym_u8R_DQUOTE] = ACTIONS(6479), + [anon_sym_co_await] = ACTIONS(6477), + [anon_sym_new] = ACTIONS(6477), + [anon_sym_requires] = ACTIONS(6477), + [sym_this] = ACTIONS(6477), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(6477), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(6477), + [anon_sym_FORWARD] = ACTIONS(6477), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(6477), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(6477), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(6477), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(6477), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(6477), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(6477), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(6477), + [anon_sym_PS_GET] = ACTIONS(6477), + [anon_sym_PS_GET_AND_SET] = ACTIONS(6477), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(6477), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(6477), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(6477), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(6477), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(6477), + }, + [STATE(2399)] = { + [sym_identifier] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6483), + [anon_sym_BANG] = ACTIONS(6483), + [anon_sym_TILDE] = ACTIONS(6483), + [anon_sym_DASH] = ACTIONS(6481), + [anon_sym_PLUS] = ACTIONS(6481), + [anon_sym_STAR] = ACTIONS(6483), + [anon_sym_AMP] = ACTIONS(6483), + [anon_sym_SEMI] = ACTIONS(6483), + [anon_sym___extension__] = ACTIONS(6481), + [anon_sym_COLON_COLON] = ACTIONS(6483), + [anon_sym_LBRACE] = ACTIONS(6483), + [anon_sym_RBRACE] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(6483), + [sym_primitive_type] = ACTIONS(6481), + [anon_sym_not] = ACTIONS(6481), + [anon_sym_compl] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6483), + [anon_sym_PLUS_PLUS] = ACTIONS(6483), + [anon_sym_sizeof] = ACTIONS(6481), + [anon_sym___alignof__] = ACTIONS(6481), + [anon_sym___alignof] = ACTIONS(6481), + [anon_sym__alignof] = ACTIONS(6481), + [anon_sym_alignof] = ACTIONS(6481), + [anon_sym__Alignof] = ACTIONS(6481), + [anon_sym_offsetof] = ACTIONS(6481), + [anon_sym__Generic] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6481), + [anon_sym___asm__] = ACTIONS(6481), + [anon_sym___asm] = ACTIONS(6481), + [sym_number_literal] = ACTIONS(6483), + [anon_sym_L_SQUOTE] = ACTIONS(6483), + [anon_sym_u_SQUOTE] = ACTIONS(6483), + [anon_sym_U_SQUOTE] = ACTIONS(6483), + [anon_sym_u8_SQUOTE] = ACTIONS(6483), + [anon_sym_SQUOTE] = ACTIONS(6483), + [anon_sym_L_DQUOTE] = ACTIONS(6483), + [anon_sym_u_DQUOTE] = ACTIONS(6483), + [anon_sym_U_DQUOTE] = ACTIONS(6483), + [anon_sym_u8_DQUOTE] = ACTIONS(6483), + [anon_sym_DQUOTE] = ACTIONS(6483), + [sym_true] = ACTIONS(6481), + [sym_false] = ACTIONS(6481), + [anon_sym_NULL] = ACTIONS(6481), + [anon_sym_nullptr] = ACTIONS(6481), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6481), + [anon_sym_typename] = ACTIONS(6481), + [anon_sym_template] = ACTIONS(6481), + [anon_sym_delete] = ACTIONS(6481), + [anon_sym_R_DQUOTE] = ACTIONS(6483), + [anon_sym_LR_DQUOTE] = ACTIONS(6483), + [anon_sym_uR_DQUOTE] = ACTIONS(6483), + [anon_sym_UR_DQUOTE] = ACTIONS(6483), + [anon_sym_u8R_DQUOTE] = ACTIONS(6483), + [anon_sym_co_await] = ACTIONS(6481), + [anon_sym_new] = ACTIONS(6481), + [anon_sym_requires] = ACTIONS(6481), + [sym_this] = ACTIONS(6481), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(6481), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(6481), + [anon_sym_FORWARD] = ACTIONS(6481), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(6481), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(6481), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(6481), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(6481), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(6481), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(6481), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(6481), + [anon_sym_PS_GET] = ACTIONS(6481), + [anon_sym_PS_GET_AND_SET] = ACTIONS(6481), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(6481), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(6481), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(6481), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(6481), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(6481), + }, + [STATE(2400)] = { + [sym_identifier] = ACTIONS(1974), + [anon_sym_LPAREN2] = ACTIONS(1976), + [anon_sym_BANG] = ACTIONS(1976), + [anon_sym_TILDE] = ACTIONS(1976), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1974), + [anon_sym_COLON_COLON] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1976), + [anon_sym_RBRACE] = ACTIONS(1976), + [anon_sym_LBRACK] = ACTIONS(1976), + [sym_primitive_type] = ACTIONS(1974), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1976), + [anon_sym_PLUS_PLUS] = ACTIONS(1976), + [anon_sym_sizeof] = ACTIONS(1974), + [anon_sym___alignof__] = ACTIONS(1974), + [anon_sym___alignof] = ACTIONS(1974), + [anon_sym__alignof] = ACTIONS(1974), + [anon_sym_alignof] = ACTIONS(1974), + [anon_sym__Alignof] = ACTIONS(1974), + [anon_sym_offsetof] = ACTIONS(1974), + [anon_sym__Generic] = ACTIONS(1974), + [anon_sym_asm] = ACTIONS(1974), + [anon_sym___asm__] = ACTIONS(1974), + [anon_sym___asm] = ACTIONS(1974), + [sym_number_literal] = ACTIONS(1976), + [anon_sym_L_SQUOTE] = ACTIONS(1976), + [anon_sym_u_SQUOTE] = ACTIONS(1976), + [anon_sym_U_SQUOTE] = ACTIONS(1976), + [anon_sym_u8_SQUOTE] = ACTIONS(1976), + [anon_sym_SQUOTE] = ACTIONS(1976), + [anon_sym_L_DQUOTE] = ACTIONS(1976), + [anon_sym_u_DQUOTE] = ACTIONS(1976), + [anon_sym_U_DQUOTE] = ACTIONS(1976), + [anon_sym_u8_DQUOTE] = ACTIONS(1976), + [anon_sym_DQUOTE] = ACTIONS(1976), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1974), + [anon_sym_nullptr] = ACTIONS(1974), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1974), + [anon_sym_typename] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1974), + [anon_sym_delete] = ACTIONS(1974), + [anon_sym_R_DQUOTE] = ACTIONS(1976), + [anon_sym_LR_DQUOTE] = ACTIONS(1976), + [anon_sym_uR_DQUOTE] = ACTIONS(1976), + [anon_sym_UR_DQUOTE] = ACTIONS(1976), + [anon_sym_u8R_DQUOTE] = ACTIONS(1976), + [anon_sym_co_await] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1974), + [anon_sym_requires] = ACTIONS(1974), + [sym_this] = ACTIONS(1974), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_FORWARD] = ACTIONS(1974), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(1974), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_PS_GET] = ACTIONS(1974), + [anon_sym_PS_GET_AND_SET] = ACTIONS(1974), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(1974), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(1974), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(1974), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(1974), + }, + [STATE(2401)] = { + [sym_identifier] = ACTIONS(3256), + [anon_sym_LPAREN2] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym___extension__] = ACTIONS(3256), + [anon_sym_COLON_COLON] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3258), + [sym_primitive_type] = ACTIONS(3256), + [anon_sym_not] = ACTIONS(3256), + [anon_sym_compl] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_sizeof] = ACTIONS(3256), + [anon_sym___alignof__] = ACTIONS(3256), + [anon_sym___alignof] = ACTIONS(3256), + [anon_sym__alignof] = ACTIONS(3256), + [anon_sym_alignof] = ACTIONS(3256), + [anon_sym__Alignof] = ACTIONS(3256), + [anon_sym_offsetof] = ACTIONS(3256), + [anon_sym__Generic] = ACTIONS(3256), + [anon_sym_asm] = ACTIONS(3256), + [anon_sym___asm__] = ACTIONS(3256), + [anon_sym___asm] = ACTIONS(3256), + [sym_number_literal] = ACTIONS(3258), + [anon_sym_L_SQUOTE] = ACTIONS(3258), + [anon_sym_u_SQUOTE] = ACTIONS(3258), + [anon_sym_U_SQUOTE] = ACTIONS(3258), + [anon_sym_u8_SQUOTE] = ACTIONS(3258), + [anon_sym_SQUOTE] = ACTIONS(3258), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3256), + [sym_false] = ACTIONS(3256), + [anon_sym_NULL] = ACTIONS(3256), + [anon_sym_nullptr] = ACTIONS(3256), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3256), + [anon_sym_typename] = ACTIONS(3256), + [anon_sym_template] = ACTIONS(3256), + [anon_sym_delete] = ACTIONS(3256), + [anon_sym_R_DQUOTE] = ACTIONS(3258), + [anon_sym_LR_DQUOTE] = ACTIONS(3258), + [anon_sym_uR_DQUOTE] = ACTIONS(3258), + [anon_sym_UR_DQUOTE] = ACTIONS(3258), + [anon_sym_u8R_DQUOTE] = ACTIONS(3258), + [anon_sym_co_await] = ACTIONS(3256), + [anon_sym_new] = ACTIONS(3256), + [anon_sym_requires] = ACTIONS(3256), + [sym_this] = ACTIONS(3256), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3256), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3256), + [anon_sym_FORWARD] = ACTIONS(3256), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3256), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3256), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3256), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3256), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3256), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3256), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3256), + [anon_sym_PS_GET] = ACTIONS(3256), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3256), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3256), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3256), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3256), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3256), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3256), + }, + [STATE(2402)] = { + [sym_identifier] = ACTIONS(3252), + [anon_sym_LPAREN2] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_AMP] = ACTIONS(3254), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym___extension__] = ACTIONS(3252), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [sym_primitive_type] = ACTIONS(3252), + [anon_sym_not] = ACTIONS(3252), + [anon_sym_compl] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_sizeof] = ACTIONS(3252), + [anon_sym___alignof__] = ACTIONS(3252), + [anon_sym___alignof] = ACTIONS(3252), + [anon_sym__alignof] = ACTIONS(3252), + [anon_sym_alignof] = ACTIONS(3252), + [anon_sym__Alignof] = ACTIONS(3252), + [anon_sym_offsetof] = ACTIONS(3252), + [anon_sym__Generic] = ACTIONS(3252), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3254), + [anon_sym_u_SQUOTE] = ACTIONS(3254), + [anon_sym_U_SQUOTE] = ACTIONS(3254), + [anon_sym_u8_SQUOTE] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_L_DQUOTE] = ACTIONS(3254), + [anon_sym_u_DQUOTE] = ACTIONS(3254), + [anon_sym_U_DQUOTE] = ACTIONS(3254), + [anon_sym_u8_DQUOTE] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [anon_sym_NULL] = ACTIONS(3252), + [anon_sym_nullptr] = ACTIONS(3252), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3252), + [anon_sym_typename] = ACTIONS(3252), + [anon_sym_template] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_R_DQUOTE] = ACTIONS(3254), + [anon_sym_LR_DQUOTE] = ACTIONS(3254), + [anon_sym_uR_DQUOTE] = ACTIONS(3254), + [anon_sym_UR_DQUOTE] = ACTIONS(3254), + [anon_sym_u8R_DQUOTE] = ACTIONS(3254), + [anon_sym_co_await] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_requires] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3252), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3252), + [anon_sym_FORWARD] = ACTIONS(3252), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3252), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3252), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3252), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3252), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3252), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3252), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3252), + [anon_sym_PS_GET] = ACTIONS(3252), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3252), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3252), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3252), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3252), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3252), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3252), + }, + [STATE(2403)] = { + [sym_identifier] = ACTIONS(3248), + [anon_sym_LPAREN2] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym___extension__] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3250), + [sym_primitive_type] = ACTIONS(3248), + [anon_sym_not] = ACTIONS(3248), + [anon_sym_compl] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_sizeof] = ACTIONS(3248), + [anon_sym___alignof__] = ACTIONS(3248), + [anon_sym___alignof] = ACTIONS(3248), + [anon_sym__alignof] = ACTIONS(3248), + [anon_sym_alignof] = ACTIONS(3248), + [anon_sym__Alignof] = ACTIONS(3248), + [anon_sym_offsetof] = ACTIONS(3248), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_asm] = ACTIONS(3248), + [anon_sym___asm__] = ACTIONS(3248), + [anon_sym___asm] = ACTIONS(3248), + [sym_number_literal] = ACTIONS(3250), + [anon_sym_L_SQUOTE] = ACTIONS(3250), + [anon_sym_u_SQUOTE] = ACTIONS(3250), + [anon_sym_U_SQUOTE] = ACTIONS(3250), + [anon_sym_u8_SQUOTE] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_L_DQUOTE] = ACTIONS(3250), + [anon_sym_u_DQUOTE] = ACTIONS(3250), + [anon_sym_U_DQUOTE] = ACTIONS(3250), + [anon_sym_u8_DQUOTE] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [anon_sym_NULL] = ACTIONS(3248), + [anon_sym_nullptr] = ACTIONS(3248), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3248), + [anon_sym_template] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_R_DQUOTE] = ACTIONS(3250), + [anon_sym_LR_DQUOTE] = ACTIONS(3250), + [anon_sym_uR_DQUOTE] = ACTIONS(3250), + [anon_sym_UR_DQUOTE] = ACTIONS(3250), + [anon_sym_u8R_DQUOTE] = ACTIONS(3250), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_requires] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3248), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3248), + [anon_sym_FORWARD] = ACTIONS(3248), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3248), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3248), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3248), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3248), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3248), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3248), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3248), + [anon_sym_PS_GET] = ACTIONS(3248), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3248), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3248), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3248), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3248), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3248), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3248), + }, + [STATE(2404)] = { + [sym_identifier] = ACTIONS(3244), + [anon_sym_LPAREN2] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym___extension__] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3246), + [sym_primitive_type] = ACTIONS(3244), + [anon_sym_not] = ACTIONS(3244), + [anon_sym_compl] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_sizeof] = ACTIONS(3244), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3244), + [anon_sym__Generic] = ACTIONS(3244), + [anon_sym_asm] = ACTIONS(3244), + [anon_sym___asm__] = ACTIONS(3244), + [anon_sym___asm] = ACTIONS(3244), + [sym_number_literal] = ACTIONS(3246), + [anon_sym_L_SQUOTE] = ACTIONS(3246), + [anon_sym_u_SQUOTE] = ACTIONS(3246), + [anon_sym_U_SQUOTE] = ACTIONS(3246), + [anon_sym_u8_SQUOTE] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_L_DQUOTE] = ACTIONS(3246), + [anon_sym_u_DQUOTE] = ACTIONS(3246), + [anon_sym_U_DQUOTE] = ACTIONS(3246), + [anon_sym_u8_DQUOTE] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [anon_sym_NULL] = ACTIONS(3244), + [anon_sym_nullptr] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3244), + [anon_sym_typename] = ACTIONS(3244), + [anon_sym_template] = ACTIONS(3244), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3244), + [anon_sym_requires] = ACTIONS(3244), + [sym_this] = ACTIONS(3244), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3244), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3244), + [anon_sym_FORWARD] = ACTIONS(3244), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3244), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3244), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3244), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3244), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3244), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3244), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3244), + [anon_sym_PS_GET] = ACTIONS(3244), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3244), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3244), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3244), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3244), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3244), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3244), + }, + [STATE(2405)] = { + [sym_identifier] = ACTIONS(3264), + [anon_sym_LPAREN2] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym___extension__] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3266), + [sym_primitive_type] = ACTIONS(3264), + [anon_sym_not] = ACTIONS(3264), + [anon_sym_compl] = ACTIONS(3264), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_sizeof] = ACTIONS(3264), + [anon_sym___alignof__] = ACTIONS(3264), + [anon_sym___alignof] = ACTIONS(3264), + [anon_sym__alignof] = ACTIONS(3264), + [anon_sym_alignof] = ACTIONS(3264), + [anon_sym__Alignof] = ACTIONS(3264), + [anon_sym_offsetof] = ACTIONS(3264), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_asm] = ACTIONS(3264), + [anon_sym___asm__] = ACTIONS(3264), + [anon_sym___asm] = ACTIONS(3264), + [sym_number_literal] = ACTIONS(3266), + [anon_sym_L_SQUOTE] = ACTIONS(3266), + [anon_sym_u_SQUOTE] = ACTIONS(3266), + [anon_sym_U_SQUOTE] = ACTIONS(3266), + [anon_sym_u8_SQUOTE] = ACTIONS(3266), + [anon_sym_SQUOTE] = ACTIONS(3266), + [anon_sym_L_DQUOTE] = ACTIONS(3266), + [anon_sym_u_DQUOTE] = ACTIONS(3266), + [anon_sym_U_DQUOTE] = ACTIONS(3266), + [anon_sym_u8_DQUOTE] = ACTIONS(3266), + [anon_sym_DQUOTE] = ACTIONS(3266), + [sym_true] = ACTIONS(3264), + [sym_false] = ACTIONS(3264), + [anon_sym_NULL] = ACTIONS(3264), + [anon_sym_nullptr] = ACTIONS(3264), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3264), + [anon_sym_template] = ACTIONS(3264), + [anon_sym_delete] = ACTIONS(3264), + [anon_sym_R_DQUOTE] = ACTIONS(3266), + [anon_sym_LR_DQUOTE] = ACTIONS(3266), + [anon_sym_uR_DQUOTE] = ACTIONS(3266), + [anon_sym_UR_DQUOTE] = ACTIONS(3266), + [anon_sym_u8R_DQUOTE] = ACTIONS(3266), + [anon_sym_co_await] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3264), + [anon_sym_requires] = ACTIONS(3264), + [sym_this] = ACTIONS(3264), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3264), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3264), + [anon_sym_FORWARD] = ACTIONS(3264), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3264), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3264), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3264), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3264), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3264), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3264), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3264), + [anon_sym_PS_GET] = ACTIONS(3264), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3264), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3264), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3264), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3264), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3264), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3264), + }, + [STATE(2406)] = { + [sym_identifier] = ACTIONS(3268), + [anon_sym_LPAREN2] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym___extension__] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_RBRACE] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3270), + [sym_primitive_type] = ACTIONS(3268), + [anon_sym_not] = ACTIONS(3268), + [anon_sym_compl] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_sizeof] = ACTIONS(3268), + [anon_sym___alignof__] = ACTIONS(3268), + [anon_sym___alignof] = ACTIONS(3268), + [anon_sym__alignof] = ACTIONS(3268), + [anon_sym_alignof] = ACTIONS(3268), + [anon_sym__Alignof] = ACTIONS(3268), + [anon_sym_offsetof] = ACTIONS(3268), + [anon_sym__Generic] = ACTIONS(3268), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3270), + [anon_sym_u_SQUOTE] = ACTIONS(3270), + [anon_sym_U_SQUOTE] = ACTIONS(3270), + [anon_sym_u8_SQUOTE] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3270), + [anon_sym_L_DQUOTE] = ACTIONS(3270), + [anon_sym_u_DQUOTE] = ACTIONS(3270), + [anon_sym_U_DQUOTE] = ACTIONS(3270), + [anon_sym_u8_DQUOTE] = ACTIONS(3270), + [anon_sym_DQUOTE] = ACTIONS(3270), + [sym_true] = ACTIONS(3268), + [sym_false] = ACTIONS(3268), + [anon_sym_NULL] = ACTIONS(3268), + [anon_sym_nullptr] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3268), + [anon_sym_typename] = ACTIONS(3268), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3268), + [anon_sym_R_DQUOTE] = ACTIONS(3270), + [anon_sym_LR_DQUOTE] = ACTIONS(3270), + [anon_sym_uR_DQUOTE] = ACTIONS(3270), + [anon_sym_UR_DQUOTE] = ACTIONS(3270), + [anon_sym_u8R_DQUOTE] = ACTIONS(3270), + [anon_sym_co_await] = ACTIONS(3268), + [anon_sym_new] = ACTIONS(3268), + [anon_sym_requires] = ACTIONS(3268), + [sym_this] = ACTIONS(3268), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3268), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3268), + [anon_sym_FORWARD] = ACTIONS(3268), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3268), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3268), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3268), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3268), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3268), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3268), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3268), + [anon_sym_PS_GET] = ACTIONS(3268), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3268), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3268), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3268), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3268), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3268), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3268), + }, + [STATE(2407)] = { + [sym_identifier] = ACTIONS(3260), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_BANG] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym___extension__] = ACTIONS(3260), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3262), + [sym_primitive_type] = ACTIONS(3260), + [anon_sym_not] = ACTIONS(3260), + [anon_sym_compl] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_sizeof] = ACTIONS(3260), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3260), + [anon_sym__Generic] = ACTIONS(3260), + [anon_sym_asm] = ACTIONS(3260), + [anon_sym___asm__] = ACTIONS(3260), + [anon_sym___asm] = ACTIONS(3260), + [sym_number_literal] = ACTIONS(3262), + [anon_sym_L_SQUOTE] = ACTIONS(3262), + [anon_sym_u_SQUOTE] = ACTIONS(3262), + [anon_sym_U_SQUOTE] = ACTIONS(3262), + [anon_sym_u8_SQUOTE] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_L_DQUOTE] = ACTIONS(3262), + [anon_sym_u_DQUOTE] = ACTIONS(3262), + [anon_sym_U_DQUOTE] = ACTIONS(3262), + [anon_sym_u8_DQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3260), + [anon_sym_nullptr] = ACTIONS(3260), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3260), + [anon_sym_typename] = ACTIONS(3260), + [anon_sym_template] = ACTIONS(3260), + [anon_sym_delete] = ACTIONS(3260), + [anon_sym_R_DQUOTE] = ACTIONS(3262), + [anon_sym_LR_DQUOTE] = ACTIONS(3262), + [anon_sym_uR_DQUOTE] = ACTIONS(3262), + [anon_sym_UR_DQUOTE] = ACTIONS(3262), + [anon_sym_u8R_DQUOTE] = ACTIONS(3262), + [anon_sym_co_await] = ACTIONS(3260), + [anon_sym_new] = ACTIONS(3260), + [anon_sym_requires] = ACTIONS(3260), + [sym_this] = ACTIONS(3260), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(3260), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(3260), + [anon_sym_FORWARD] = ACTIONS(3260), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(3260), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(3260), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(3260), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(3260), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(3260), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(3260), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(3260), + [anon_sym_PS_GET] = ACTIONS(3260), + [anon_sym_PS_GET_AND_SET] = ACTIONS(3260), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(3260), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(3260), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(3260), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(3260), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(3260), + }, + [STATE(2408)] = { + [sym_string_literal] = STATE(2436), + [sym_template_argument_list] = STATE(2749), + [sym_raw_string_literal] = STATE(2436), + [sym_identifier] = ACTIONS(3097), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(3089), + [aux_sym_preproc_if_token2] = ACTIONS(3089), + [aux_sym_preproc_else_token1] = ACTIONS(3089), + [aux_sym_preproc_elif_token1] = ACTIONS(3097), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3089), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6485), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_RBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_COLON] = ACTIONS(3097), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3089), + [anon_sym_SLASH_EQ] = ACTIONS(3089), + [anon_sym_PERCENT_EQ] = ACTIONS(3089), + [anon_sym_PLUS_EQ] = ACTIONS(3089), + [anon_sym_DASH_EQ] = ACTIONS(3089), + [anon_sym_LT_LT_EQ] = ACTIONS(3089), + [anon_sym_GT_GT_EQ] = ACTIONS(3089), + [anon_sym_AMP_EQ] = ACTIONS(3089), + [anon_sym_CARET_EQ] = ACTIONS(3089), + [anon_sym_PIPE_EQ] = ACTIONS(3089), + [anon_sym_and_eq] = ACTIONS(3097), + [anon_sym_or_eq] = ACTIONS(3097), + [anon_sym_xor_eq] = ACTIONS(3097), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3097), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3097), + [anon_sym_not_eq] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + }, + [STATE(2409)] = { + [sym_identifier] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym___extension__] = ACTIONS(2016), + [anon_sym_COLON_COLON] = ACTIONS(2018), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_not] = ACTIONS(2016), + [anon_sym_compl] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [anon_sym___alignof__] = ACTIONS(2016), + [anon_sym___alignof] = ACTIONS(2016), + [anon_sym__alignof] = ACTIONS(2016), + [anon_sym_alignof] = ACTIONS(2016), + [anon_sym__Alignof] = ACTIONS(2016), + [anon_sym_offsetof] = ACTIONS(2016), + [anon_sym__Generic] = ACTIONS(2016), + [anon_sym_asm] = ACTIONS(2016), + [anon_sym___asm__] = ACTIONS(2016), + [anon_sym___asm] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [anon_sym_NULL] = ACTIONS(2016), + [anon_sym_nullptr] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2016), + [anon_sym_typename] = ACTIONS(2016), + [anon_sym_template] = ACTIONS(2016), + [anon_sym_delete] = ACTIONS(2016), + [anon_sym_R_DQUOTE] = ACTIONS(2018), + [anon_sym_LR_DQUOTE] = ACTIONS(2018), + [anon_sym_uR_DQUOTE] = ACTIONS(2018), + [anon_sym_UR_DQUOTE] = ACTIONS(2018), + [anon_sym_u8R_DQUOTE] = ACTIONS(2018), + [anon_sym_co_await] = ACTIONS(2016), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2016), + [sym_this] = ACTIONS(2016), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_FORWARD] = ACTIONS(2016), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_PS_GET] = ACTIONS(2016), + [anon_sym_PS_GET_AND_SET] = ACTIONS(2016), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(2016), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(2016), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(2016), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(2016), + }, + [STATE(2410)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3258), + [anon_sym_COMMA] = ACTIONS(3258), + [anon_sym_RPAREN] = ACTIONS(3258), + [anon_sym_LPAREN2] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3256), + [anon_sym_SLASH] = ACTIONS(3256), + [anon_sym_PERCENT] = ACTIONS(3256), + [anon_sym_PIPE_PIPE] = ACTIONS(3258), + [anon_sym_AMP_AMP] = ACTIONS(3258), + [anon_sym_PIPE] = ACTIONS(3256), + [anon_sym_CARET] = ACTIONS(3256), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym_EQ_EQ] = ACTIONS(3258), + [anon_sym_BANG_EQ] = ACTIONS(3258), + [anon_sym_GT] = ACTIONS(3256), + [anon_sym_GT_EQ] = ACTIONS(3258), + [anon_sym_LT_EQ] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3256), + [anon_sym_LT_LT] = ACTIONS(3256), + [anon_sym_GT_GT] = ACTIONS(3256), + [anon_sym___extension__] = ACTIONS(3258), + [anon_sym___attribute__] = ACTIONS(3258), + [anon_sym___attribute] = ACTIONS(3256), + [anon_sym_COLON_COLON] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3258), + [anon_sym_EQ] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_constexpr] = ACTIONS(3258), + [anon_sym_volatile] = ACTIONS(3258), + [anon_sym_restrict] = ACTIONS(3258), + [anon_sym___restrict__] = ACTIONS(3258), + [anon_sym__Atomic] = ACTIONS(3258), + [anon_sym__Noreturn] = ACTIONS(3258), + [anon_sym_noreturn] = ACTIONS(3258), + [anon_sym__Nonnull] = ACTIONS(3258), + [anon_sym_mutable] = ACTIONS(3258), + [anon_sym_constinit] = ACTIONS(3258), + [anon_sym_consteval] = ACTIONS(3258), + [anon_sym_alignas] = ACTIONS(3258), + [anon_sym__Alignas] = ACTIONS(3258), + [anon_sym_COLON] = ACTIONS(3256), + [anon_sym_QMARK] = ACTIONS(3258), + [anon_sym_STAR_EQ] = ACTIONS(3258), + [anon_sym_SLASH_EQ] = ACTIONS(3258), + [anon_sym_PERCENT_EQ] = ACTIONS(3258), + [anon_sym_PLUS_EQ] = ACTIONS(3258), + [anon_sym_DASH_EQ] = ACTIONS(3258), + [anon_sym_LT_LT_EQ] = ACTIONS(3258), + [anon_sym_GT_GT_EQ] = ACTIONS(3258), + [anon_sym_AMP_EQ] = ACTIONS(3258), + [anon_sym_CARET_EQ] = ACTIONS(3258), + [anon_sym_PIPE_EQ] = ACTIONS(3258), + [anon_sym_and_eq] = ACTIONS(3258), + [anon_sym_or_eq] = ACTIONS(3258), + [anon_sym_xor_eq] = ACTIONS(3258), + [anon_sym_LT_EQ_GT] = ACTIONS(3258), + [anon_sym_or] = ACTIONS(3256), + [anon_sym_and] = ACTIONS(3256), + [anon_sym_bitor] = ACTIONS(3258), + [anon_sym_xor] = ACTIONS(3256), + [anon_sym_bitand] = ACTIONS(3258), + [anon_sym_not_eq] = ACTIONS(3258), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DOT] = ACTIONS(3256), + [anon_sym_DOT_STAR] = ACTIONS(3258), + [anon_sym_DASH_GT] = ACTIONS(3256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3258), + [anon_sym_decltype] = ACTIONS(3258), + [anon_sym_final] = ACTIONS(3258), + [anon_sym_override] = ACTIONS(3258), + [anon_sym_DASH_GT_STAR] = ACTIONS(3258), + }, + [STATE(2411)] = { + [sym_identifier] = ACTIONS(4541), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_BANG] = ACTIONS(4543), + [anon_sym_TILDE] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_PLUS] = ACTIONS(4541), + [anon_sym_STAR] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4543), + [anon_sym_SEMI] = ACTIONS(4543), + [anon_sym___extension__] = ACTIONS(4541), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4543), + [anon_sym_RBRACE] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4543), + [sym_primitive_type] = ACTIONS(4541), + [anon_sym_not] = ACTIONS(4541), + [anon_sym_compl] = ACTIONS(4541), + [anon_sym_DASH_DASH] = ACTIONS(4543), + [anon_sym_PLUS_PLUS] = ACTIONS(4543), + [anon_sym_sizeof] = ACTIONS(4541), + [anon_sym___alignof__] = ACTIONS(4541), + [anon_sym___alignof] = ACTIONS(4541), + [anon_sym__alignof] = ACTIONS(4541), + [anon_sym_alignof] = ACTIONS(4541), + [anon_sym__Alignof] = ACTIONS(4541), + [anon_sym_offsetof] = ACTIONS(4541), + [anon_sym__Generic] = ACTIONS(4541), + [anon_sym_asm] = ACTIONS(4541), + [anon_sym___asm__] = ACTIONS(4541), + [anon_sym___asm] = ACTIONS(4541), + [sym_number_literal] = ACTIONS(4543), + [anon_sym_L_SQUOTE] = ACTIONS(4543), + [anon_sym_u_SQUOTE] = ACTIONS(4543), + [anon_sym_U_SQUOTE] = ACTIONS(4543), + [anon_sym_u8_SQUOTE] = ACTIONS(4543), + [anon_sym_SQUOTE] = ACTIONS(4543), + [anon_sym_L_DQUOTE] = ACTIONS(4543), + [anon_sym_u_DQUOTE] = ACTIONS(4543), + [anon_sym_U_DQUOTE] = ACTIONS(4543), + [anon_sym_u8_DQUOTE] = ACTIONS(4543), + [anon_sym_DQUOTE] = ACTIONS(4543), + [sym_true] = ACTIONS(4541), + [sym_false] = ACTIONS(4541), + [anon_sym_NULL] = ACTIONS(4541), + [anon_sym_nullptr] = ACTIONS(4541), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(4541), + [anon_sym_typename] = ACTIONS(4541), + [anon_sym_template] = ACTIONS(4541), + [anon_sym_delete] = ACTIONS(4541), + [anon_sym_R_DQUOTE] = ACTIONS(4543), + [anon_sym_LR_DQUOTE] = ACTIONS(4543), + [anon_sym_uR_DQUOTE] = ACTIONS(4543), + [anon_sym_UR_DQUOTE] = ACTIONS(4543), + [anon_sym_u8R_DQUOTE] = ACTIONS(4543), + [anon_sym_co_await] = ACTIONS(4541), + [anon_sym_new] = ACTIONS(4541), + [anon_sym_requires] = ACTIONS(4541), + [sym_this] = ACTIONS(4541), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(4541), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(4541), + [anon_sym_FORWARD] = ACTIONS(4541), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(4541), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(4541), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(4541), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(4541), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(4541), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(4541), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(4541), + [anon_sym_PS_GET] = ACTIONS(4541), + [anon_sym_PS_GET_AND_SET] = ACTIONS(4541), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(4541), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(4541), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(4541), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(4541), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(4541), + }, + [STATE(2412)] = { + [sym_identifier] = ACTIONS(4531), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_BANG] = ACTIONS(4533), + [anon_sym_TILDE] = ACTIONS(4533), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4533), + [anon_sym_AMP] = ACTIONS(4533), + [anon_sym_SEMI] = ACTIONS(4533), + [anon_sym___extension__] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4533), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [sym_primitive_type] = ACTIONS(4531), + [anon_sym_not] = ACTIONS(4531), + [anon_sym_compl] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_PLUS_PLUS] = ACTIONS(4533), + [anon_sym_sizeof] = ACTIONS(4531), + [anon_sym___alignof__] = ACTIONS(4531), + [anon_sym___alignof] = ACTIONS(4531), + [anon_sym__alignof] = ACTIONS(4531), + [anon_sym_alignof] = ACTIONS(4531), + [anon_sym__Alignof] = ACTIONS(4531), + [anon_sym_offsetof] = ACTIONS(4531), + [anon_sym__Generic] = ACTIONS(4531), + [anon_sym_asm] = ACTIONS(4531), + [anon_sym___asm__] = ACTIONS(4531), + [anon_sym___asm] = ACTIONS(4531), + [sym_number_literal] = ACTIONS(4533), + [anon_sym_L_SQUOTE] = ACTIONS(4533), + [anon_sym_u_SQUOTE] = ACTIONS(4533), + [anon_sym_U_SQUOTE] = ACTIONS(4533), + [anon_sym_u8_SQUOTE] = ACTIONS(4533), + [anon_sym_SQUOTE] = ACTIONS(4533), + [anon_sym_L_DQUOTE] = ACTIONS(4533), + [anon_sym_u_DQUOTE] = ACTIONS(4533), + [anon_sym_U_DQUOTE] = ACTIONS(4533), + [anon_sym_u8_DQUOTE] = ACTIONS(4533), + [anon_sym_DQUOTE] = ACTIONS(4533), + [sym_true] = ACTIONS(4531), + [sym_false] = ACTIONS(4531), + [anon_sym_NULL] = ACTIONS(4531), + [anon_sym_nullptr] = ACTIONS(4531), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(4531), + [anon_sym_typename] = ACTIONS(4531), + [anon_sym_template] = ACTIONS(4531), + [anon_sym_delete] = ACTIONS(4531), + [anon_sym_R_DQUOTE] = ACTIONS(4533), + [anon_sym_LR_DQUOTE] = ACTIONS(4533), + [anon_sym_uR_DQUOTE] = ACTIONS(4533), + [anon_sym_UR_DQUOTE] = ACTIONS(4533), + [anon_sym_u8R_DQUOTE] = ACTIONS(4533), + [anon_sym_co_await] = ACTIONS(4531), + [anon_sym_new] = ACTIONS(4531), + [anon_sym_requires] = ACTIONS(4531), + [sym_this] = ACTIONS(4531), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(4531), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(4531), + [anon_sym_FORWARD] = ACTIONS(4531), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(4531), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(4531), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(4531), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(4531), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(4531), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(4531), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(4531), + [anon_sym_PS_GET] = ACTIONS(4531), + [anon_sym_PS_GET_AND_SET] = ACTIONS(4531), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(4531), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(4531), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(4531), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(4531), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(4531), + }, + [STATE(2413)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2413), + [sym_identifier] = ACTIONS(4520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4522), + [anon_sym_COMMA] = ACTIONS(4522), + [anon_sym_RPAREN] = ACTIONS(4522), + [aux_sym_preproc_if_token2] = ACTIONS(4522), + [aux_sym_preproc_else_token1] = ACTIONS(4522), + [aux_sym_preproc_elif_token1] = ACTIONS(4520), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4522), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4522), + [anon_sym_LPAREN2] = ACTIONS(4522), + [anon_sym_DASH] = ACTIONS(4520), + [anon_sym_PLUS] = ACTIONS(4520), + [anon_sym_STAR] = ACTIONS(4522), + [anon_sym_SLASH] = ACTIONS(4520), + [anon_sym_PERCENT] = ACTIONS(4522), + [anon_sym_PIPE_PIPE] = ACTIONS(4522), + [anon_sym_AMP_AMP] = ACTIONS(4522), + [anon_sym_PIPE] = ACTIONS(4520), + [anon_sym_CARET] = ACTIONS(4522), + [anon_sym_AMP] = ACTIONS(4520), + [anon_sym_EQ_EQ] = ACTIONS(4522), + [anon_sym_BANG_EQ] = ACTIONS(4522), + [anon_sym_GT] = ACTIONS(4520), + [anon_sym_GT_EQ] = ACTIONS(4522), + [anon_sym_LT_EQ] = ACTIONS(4520), + [anon_sym_LT] = ACTIONS(4520), + [anon_sym_LT_LT] = ACTIONS(4522), + [anon_sym_GT_GT] = ACTIONS(4522), + [anon_sym_SEMI] = ACTIONS(4522), + [anon_sym___extension__] = ACTIONS(4520), + [anon_sym___attribute__] = ACTIONS(4520), + [anon_sym___attribute] = ACTIONS(4520), + [anon_sym_LBRACE] = ACTIONS(4522), + [anon_sym_RBRACE] = ACTIONS(4522), + [anon_sym_signed] = ACTIONS(6488), + [anon_sym_unsigned] = ACTIONS(6488), + [anon_sym_long] = ACTIONS(6488), + [anon_sym_short] = ACTIONS(6488), + [anon_sym_LBRACK] = ACTIONS(4522), + [anon_sym_RBRACK] = ACTIONS(4522), + [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__Nonnull] = ACTIONS(4520), + [anon_sym_mutable] = ACTIONS(4520), + [anon_sym_constinit] = ACTIONS(4520), + [anon_sym_consteval] = ACTIONS(4520), + [anon_sym_alignas] = ACTIONS(4520), + [anon_sym__Alignas] = ACTIONS(4520), + [sym_primitive_type] = ACTIONS(4520), + [anon_sym_COLON] = ACTIONS(4522), + [anon_sym_QMARK] = ACTIONS(4522), + [anon_sym_LT_EQ_GT] = ACTIONS(4522), + [anon_sym_or] = ACTIONS(4520), + [anon_sym_and] = ACTIONS(4520), + [anon_sym_bitor] = ACTIONS(4520), + [anon_sym_xor] = ACTIONS(4520), + [anon_sym_bitand] = ACTIONS(4520), + [anon_sym_not_eq] = ACTIONS(4520), + [anon_sym_DASH_DASH] = ACTIONS(4522), + [anon_sym_PLUS_PLUS] = ACTIONS(4522), + [anon_sym_DOT] = ACTIONS(4520), + [anon_sym_DOT_STAR] = ACTIONS(4522), + [anon_sym_DASH_GT] = ACTIONS(4522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4520), + [anon_sym_decltype] = ACTIONS(4520), + [anon_sym_final] = ACTIONS(4520), + [anon_sym_override] = ACTIONS(4520), + [anon_sym_requires] = ACTIONS(4520), + }, + [STATE(2414)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3250), + [anon_sym_COMMA] = ACTIONS(3250), + [anon_sym_RPAREN] = ACTIONS(3250), + [anon_sym_LPAREN2] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3248), + [anon_sym_CARET] = ACTIONS(3248), + [anon_sym_AMP] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3250), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_LT_LT] = ACTIONS(3248), + [anon_sym_GT_GT] = ACTIONS(3248), + [anon_sym___extension__] = ACTIONS(3250), + [anon_sym___attribute__] = ACTIONS(3250), + [anon_sym___attribute] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_constexpr] = ACTIONS(3250), + [anon_sym_volatile] = ACTIONS(3250), + [anon_sym_restrict] = ACTIONS(3250), + [anon_sym___restrict__] = ACTIONS(3250), + [anon_sym__Atomic] = ACTIONS(3250), + [anon_sym__Noreturn] = ACTIONS(3250), + [anon_sym_noreturn] = ACTIONS(3250), + [anon_sym__Nonnull] = ACTIONS(3250), + [anon_sym_mutable] = ACTIONS(3250), + [anon_sym_constinit] = ACTIONS(3250), + [anon_sym_consteval] = ACTIONS(3250), + [anon_sym_alignas] = ACTIONS(3250), + [anon_sym__Alignas] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_QMARK] = ACTIONS(3250), + [anon_sym_STAR_EQ] = ACTIONS(3250), + [anon_sym_SLASH_EQ] = ACTIONS(3250), + [anon_sym_PERCENT_EQ] = ACTIONS(3250), + [anon_sym_PLUS_EQ] = ACTIONS(3250), + [anon_sym_DASH_EQ] = ACTIONS(3250), + [anon_sym_LT_LT_EQ] = ACTIONS(3250), + [anon_sym_GT_GT_EQ] = ACTIONS(3250), + [anon_sym_AMP_EQ] = ACTIONS(3250), + [anon_sym_CARET_EQ] = ACTIONS(3250), + [anon_sym_PIPE_EQ] = ACTIONS(3250), + [anon_sym_and_eq] = ACTIONS(3250), + [anon_sym_or_eq] = ACTIONS(3250), + [anon_sym_xor_eq] = ACTIONS(3250), + [anon_sym_LT_EQ_GT] = ACTIONS(3250), + [anon_sym_or] = ACTIONS(3248), + [anon_sym_and] = ACTIONS(3248), + [anon_sym_bitor] = ACTIONS(3250), + [anon_sym_xor] = ACTIONS(3248), + [anon_sym_bitand] = ACTIONS(3250), + [anon_sym_not_eq] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DOT] = ACTIONS(3248), + [anon_sym_DOT_STAR] = ACTIONS(3250), + [anon_sym_DASH_GT] = ACTIONS(3248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3250), + [anon_sym_decltype] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_DASH_GT_STAR] = ACTIONS(3250), + }, + [STATE(2415)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LPAREN2] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3252), + [anon_sym_CARET] = ACTIONS(3252), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3254), + [anon_sym_GT] = ACTIONS(3252), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_LT_LT] = ACTIONS(3252), + [anon_sym_GT_GT] = ACTIONS(3252), + [anon_sym___extension__] = ACTIONS(3254), + [anon_sym___attribute__] = ACTIONS(3254), + [anon_sym___attribute] = ACTIONS(3252), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_EQ] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_constexpr] = ACTIONS(3254), + [anon_sym_volatile] = ACTIONS(3254), + [anon_sym_restrict] = ACTIONS(3254), + [anon_sym___restrict__] = ACTIONS(3254), + [anon_sym__Atomic] = ACTIONS(3254), + [anon_sym__Noreturn] = ACTIONS(3254), + [anon_sym_noreturn] = ACTIONS(3254), + [anon_sym__Nonnull] = ACTIONS(3254), + [anon_sym_mutable] = ACTIONS(3254), + [anon_sym_constinit] = ACTIONS(3254), + [anon_sym_consteval] = ACTIONS(3254), + [anon_sym_alignas] = ACTIONS(3254), + [anon_sym__Alignas] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_LT_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_GT_EQ] = ACTIONS(3254), + [anon_sym_AMP_EQ] = ACTIONS(3254), + [anon_sym_CARET_EQ] = ACTIONS(3254), + [anon_sym_PIPE_EQ] = ACTIONS(3254), + [anon_sym_and_eq] = ACTIONS(3254), + [anon_sym_or_eq] = ACTIONS(3254), + [anon_sym_xor_eq] = ACTIONS(3254), + [anon_sym_LT_EQ_GT] = ACTIONS(3254), + [anon_sym_or] = ACTIONS(3252), + [anon_sym_and] = ACTIONS(3252), + [anon_sym_bitor] = ACTIONS(3254), + [anon_sym_xor] = ACTIONS(3252), + [anon_sym_bitand] = ACTIONS(3254), + [anon_sym_not_eq] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3252), + [anon_sym_DOT_STAR] = ACTIONS(3254), + [anon_sym_DASH_GT] = ACTIONS(3252), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3254), + [anon_sym_decltype] = ACTIONS(3254), + [anon_sym_final] = ACTIONS(3254), + [anon_sym_override] = ACTIONS(3254), + [anon_sym_DASH_GT_STAR] = ACTIONS(3254), + }, + [STATE(2416)] = { + [sym_identifier] = ACTIONS(4531), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_BANG] = ACTIONS(4533), + [anon_sym_TILDE] = ACTIONS(4533), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4533), + [anon_sym_AMP] = ACTIONS(4533), + [anon_sym_SEMI] = ACTIONS(4533), + [anon_sym___extension__] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [sym_primitive_type] = ACTIONS(4531), + [anon_sym_not] = ACTIONS(4531), + [anon_sym_compl] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_PLUS_PLUS] = ACTIONS(4533), + [anon_sym_sizeof] = ACTIONS(4531), + [anon_sym___alignof__] = ACTIONS(4531), + [anon_sym___alignof] = ACTIONS(4531), + [anon_sym__alignof] = ACTIONS(4531), + [anon_sym_alignof] = ACTIONS(4531), + [anon_sym__Alignof] = ACTIONS(4531), + [anon_sym_offsetof] = ACTIONS(4531), + [anon_sym__Generic] = ACTIONS(4531), + [anon_sym_asm] = ACTIONS(4531), + [anon_sym___asm__] = ACTIONS(4531), + [anon_sym___asm] = ACTIONS(4531), + [sym_number_literal] = ACTIONS(4533), + [anon_sym_L_SQUOTE] = ACTIONS(4533), + [anon_sym_u_SQUOTE] = ACTIONS(4533), + [anon_sym_U_SQUOTE] = ACTIONS(4533), + [anon_sym_u8_SQUOTE] = ACTIONS(4533), + [anon_sym_SQUOTE] = ACTIONS(4533), + [anon_sym_L_DQUOTE] = ACTIONS(4533), + [anon_sym_u_DQUOTE] = ACTIONS(4533), + [anon_sym_U_DQUOTE] = ACTIONS(4533), + [anon_sym_u8_DQUOTE] = ACTIONS(4533), + [anon_sym_DQUOTE] = ACTIONS(4533), + [sym_true] = ACTIONS(4531), + [sym_false] = ACTIONS(4531), + [anon_sym_NULL] = ACTIONS(4531), + [anon_sym_nullptr] = ACTIONS(4531), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(4531), + [anon_sym_typename] = ACTIONS(4531), + [anon_sym_template] = ACTIONS(4531), + [anon_sym_delete] = ACTIONS(4531), + [anon_sym_R_DQUOTE] = ACTIONS(4533), + [anon_sym_LR_DQUOTE] = ACTIONS(4533), + [anon_sym_uR_DQUOTE] = ACTIONS(4533), + [anon_sym_UR_DQUOTE] = ACTIONS(4533), + [anon_sym_u8R_DQUOTE] = ACTIONS(4533), + [anon_sym_co_await] = ACTIONS(4531), + [anon_sym_new] = ACTIONS(4531), + [anon_sym_requires] = ACTIONS(4531), + [sym_this] = ACTIONS(4531), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(4531), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(4531), + [anon_sym_FORWARD] = ACTIONS(4531), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(4531), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(4531), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(4531), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(4531), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(4531), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(4531), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(4531), + [anon_sym_PS_GET] = ACTIONS(4531), + [anon_sym_PS_GET_AND_SET] = ACTIONS(4531), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(4531), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(4531), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(4531), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(4531), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(4531), + }, + [STATE(2417)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3246), + [anon_sym_COMMA] = ACTIONS(3246), + [anon_sym_RPAREN] = ACTIONS(3246), + [anon_sym_LPAREN2] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_PIPE_PIPE] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3244), + [anon_sym_CARET] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3244), + [anon_sym_EQ_EQ] = ACTIONS(3246), + [anon_sym_BANG_EQ] = ACTIONS(3246), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_GT_EQ] = ACTIONS(3246), + [anon_sym_LT_EQ] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_LT_LT] = ACTIONS(3244), + [anon_sym_GT_GT] = ACTIONS(3244), + [anon_sym___extension__] = ACTIONS(3246), + [anon_sym___attribute__] = ACTIONS(3246), + [anon_sym___attribute] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3246), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_constexpr] = ACTIONS(3246), + [anon_sym_volatile] = ACTIONS(3246), + [anon_sym_restrict] = ACTIONS(3246), + [anon_sym___restrict__] = ACTIONS(3246), + [anon_sym__Atomic] = ACTIONS(3246), + [anon_sym__Noreturn] = ACTIONS(3246), + [anon_sym_noreturn] = ACTIONS(3246), + [anon_sym__Nonnull] = ACTIONS(3246), + [anon_sym_mutable] = ACTIONS(3246), + [anon_sym_constinit] = ACTIONS(3246), + [anon_sym_consteval] = ACTIONS(3246), + [anon_sym_alignas] = ACTIONS(3246), + [anon_sym__Alignas] = ACTIONS(3246), + [anon_sym_COLON] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_STAR_EQ] = ACTIONS(3246), + [anon_sym_SLASH_EQ] = ACTIONS(3246), + [anon_sym_PERCENT_EQ] = ACTIONS(3246), + [anon_sym_PLUS_EQ] = ACTIONS(3246), + [anon_sym_DASH_EQ] = ACTIONS(3246), + [anon_sym_LT_LT_EQ] = ACTIONS(3246), + [anon_sym_GT_GT_EQ] = ACTIONS(3246), + [anon_sym_AMP_EQ] = ACTIONS(3246), + [anon_sym_CARET_EQ] = ACTIONS(3246), + [anon_sym_PIPE_EQ] = ACTIONS(3246), + [anon_sym_and_eq] = ACTIONS(3246), + [anon_sym_or_eq] = ACTIONS(3246), + [anon_sym_xor_eq] = ACTIONS(3246), + [anon_sym_LT_EQ_GT] = ACTIONS(3246), + [anon_sym_or] = ACTIONS(3244), + [anon_sym_and] = ACTIONS(3244), + [anon_sym_bitor] = ACTIONS(3246), + [anon_sym_xor] = ACTIONS(3244), + [anon_sym_bitand] = ACTIONS(3246), + [anon_sym_not_eq] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_DOT_STAR] = ACTIONS(3246), + [anon_sym_DASH_GT] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3246), + [anon_sym_decltype] = ACTIONS(3246), + [anon_sym_final] = ACTIONS(3246), + [anon_sym_override] = ACTIONS(3246), + [anon_sym_DASH_GT_STAR] = ACTIONS(3246), + }, + [STATE(2418)] = { + [sym_identifier] = ACTIONS(4531), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_BANG] = ACTIONS(4533), + [anon_sym_TILDE] = ACTIONS(4533), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4533), + [anon_sym_AMP] = ACTIONS(4533), + [anon_sym_SEMI] = ACTIONS(4533), + [anon_sym___extension__] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [sym_primitive_type] = ACTIONS(4531), + [anon_sym_not] = ACTIONS(4531), + [anon_sym_compl] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_PLUS_PLUS] = ACTIONS(4533), + [anon_sym_sizeof] = ACTIONS(4531), + [anon_sym___alignof__] = ACTIONS(4531), + [anon_sym___alignof] = ACTIONS(4531), + [anon_sym__alignof] = ACTIONS(4531), + [anon_sym_alignof] = ACTIONS(4531), + [anon_sym__Alignof] = ACTIONS(4531), + [anon_sym_offsetof] = ACTIONS(4531), + [anon_sym__Generic] = ACTIONS(4531), + [anon_sym_asm] = ACTIONS(4531), + [anon_sym___asm__] = ACTIONS(4531), + [anon_sym___asm] = ACTIONS(4531), + [sym_number_literal] = ACTIONS(4533), + [anon_sym_L_SQUOTE] = ACTIONS(4533), + [anon_sym_u_SQUOTE] = ACTIONS(4533), + [anon_sym_U_SQUOTE] = ACTIONS(4533), + [anon_sym_u8_SQUOTE] = ACTIONS(4533), + [anon_sym_SQUOTE] = ACTIONS(4533), + [anon_sym_L_DQUOTE] = ACTIONS(4533), + [anon_sym_u_DQUOTE] = ACTIONS(4533), + [anon_sym_U_DQUOTE] = ACTIONS(4533), + [anon_sym_u8_DQUOTE] = ACTIONS(4533), + [anon_sym_DQUOTE] = ACTIONS(4533), + [sym_true] = ACTIONS(4531), + [sym_false] = ACTIONS(4531), + [anon_sym_NULL] = ACTIONS(4531), + [anon_sym_nullptr] = ACTIONS(4531), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(4531), + [anon_sym_typename] = ACTIONS(4531), + [anon_sym_template] = ACTIONS(4531), + [anon_sym_delete] = ACTIONS(4531), + [anon_sym_R_DQUOTE] = ACTIONS(4533), + [anon_sym_LR_DQUOTE] = ACTIONS(4533), + [anon_sym_uR_DQUOTE] = ACTIONS(4533), + [anon_sym_UR_DQUOTE] = ACTIONS(4533), + [anon_sym_u8R_DQUOTE] = ACTIONS(4533), + [anon_sym_co_await] = ACTIONS(4531), + [anon_sym_new] = ACTIONS(4531), + [anon_sym_requires] = ACTIONS(4531), + [sym_this] = ACTIONS(4531), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(4531), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(4531), + [anon_sym_FORWARD] = ACTIONS(4531), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(4531), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(4531), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(4531), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(4531), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(4531), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(4531), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(4531), + [anon_sym_PS_GET] = ACTIONS(4531), + [anon_sym_PS_GET_AND_SET] = ACTIONS(4531), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(4531), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(4531), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(4531), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(4531), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(4531), + }, + [STATE(2419)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2419), + [sym_identifier] = ACTIONS(4520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4522), + [anon_sym_COMMA] = ACTIONS(4522), + [anon_sym_RPAREN] = ACTIONS(4522), + [anon_sym_LPAREN2] = ACTIONS(4522), + [anon_sym_DASH] = ACTIONS(4520), + [anon_sym_PLUS] = ACTIONS(4520), + [anon_sym_STAR] = ACTIONS(4520), + [anon_sym_SLASH] = ACTIONS(4520), + [anon_sym_PERCENT] = ACTIONS(4520), + [anon_sym_PIPE_PIPE] = ACTIONS(4522), + [anon_sym_AMP_AMP] = ACTIONS(4522), + [anon_sym_PIPE] = ACTIONS(4520), + [anon_sym_CARET] = ACTIONS(4520), + [anon_sym_AMP] = ACTIONS(4520), + [anon_sym_EQ_EQ] = ACTIONS(4522), + [anon_sym_BANG_EQ] = ACTIONS(4522), + [anon_sym_GT] = ACTIONS(4520), + [anon_sym_GT_EQ] = ACTIONS(4522), + [anon_sym_LT_EQ] = ACTIONS(4520), + [anon_sym_LT] = ACTIONS(4520), + [anon_sym_LT_LT] = ACTIONS(4520), + [anon_sym_GT_GT] = ACTIONS(4520), + [anon_sym___extension__] = ACTIONS(4520), + [anon_sym___attribute__] = ACTIONS(4520), + [anon_sym___attribute] = ACTIONS(4520), + [anon_sym_LBRACE] = ACTIONS(4522), + [anon_sym_signed] = ACTIONS(6474), + [anon_sym_unsigned] = ACTIONS(6474), + [anon_sym_long] = ACTIONS(6474), + [anon_sym_short] = ACTIONS(6474), + [anon_sym_LBRACK] = ACTIONS(4522), + [anon_sym_EQ] = 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__Nonnull] = ACTIONS(4520), + [anon_sym_mutable] = ACTIONS(4520), + [anon_sym_constinit] = ACTIONS(4520), + [anon_sym_consteval] = ACTIONS(4520), + [anon_sym_alignas] = ACTIONS(4520), + [anon_sym__Alignas] = ACTIONS(4520), + [sym_primitive_type] = ACTIONS(4520), + [anon_sym_QMARK] = ACTIONS(4522), + [anon_sym_STAR_EQ] = ACTIONS(4522), + [anon_sym_SLASH_EQ] = ACTIONS(4522), + [anon_sym_PERCENT_EQ] = ACTIONS(4522), + [anon_sym_PLUS_EQ] = ACTIONS(4522), + [anon_sym_DASH_EQ] = ACTIONS(4522), + [anon_sym_LT_LT_EQ] = ACTIONS(4522), + [anon_sym_GT_GT_EQ] = ACTIONS(4522), + [anon_sym_AMP_EQ] = ACTIONS(4522), + [anon_sym_CARET_EQ] = ACTIONS(4522), + [anon_sym_PIPE_EQ] = ACTIONS(4522), + [anon_sym_LT_EQ_GT] = ACTIONS(4522), + [anon_sym_or] = ACTIONS(4520), + [anon_sym_and] = ACTIONS(4520), + [anon_sym_bitor] = ACTIONS(4520), + [anon_sym_xor] = ACTIONS(4520), + [anon_sym_bitand] = ACTIONS(4520), + [anon_sym_not_eq] = ACTIONS(4520), + [anon_sym_DASH_DASH] = ACTIONS(4522), + [anon_sym_PLUS_PLUS] = ACTIONS(4522), + [anon_sym_DOT] = ACTIONS(4520), + [anon_sym_DOT_STAR] = ACTIONS(4522), + [anon_sym_DASH_GT] = ACTIONS(4520), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4520), + [anon_sym_decltype] = ACTIONS(4520), + [anon_sym_DASH_GT_STAR] = ACTIONS(4522), + }, + [STATE(2420)] = { + [sym_identifier] = ACTIONS(6491), + [anon_sym_LPAREN2] = ACTIONS(6493), + [anon_sym_BANG] = ACTIONS(6493), + [anon_sym_TILDE] = ACTIONS(6493), + [anon_sym_DASH] = ACTIONS(6491), + [anon_sym_PLUS] = ACTIONS(6491), + [anon_sym_STAR] = ACTIONS(6493), + [anon_sym_AMP] = ACTIONS(6493), + [anon_sym_SEMI] = ACTIONS(6493), + [anon_sym___extension__] = ACTIONS(6491), + [anon_sym_COLON_COLON] = ACTIONS(6493), + [anon_sym_LBRACE] = ACTIONS(6493), + [anon_sym_RBRACE] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(6493), + [sym_primitive_type] = ACTIONS(6491), + [anon_sym_not] = ACTIONS(6491), + [anon_sym_compl] = ACTIONS(6491), + [anon_sym_DASH_DASH] = ACTIONS(6493), + [anon_sym_PLUS_PLUS] = ACTIONS(6493), + [anon_sym_sizeof] = ACTIONS(6491), + [anon_sym___alignof__] = ACTIONS(6491), + [anon_sym___alignof] = ACTIONS(6491), + [anon_sym__alignof] = ACTIONS(6491), + [anon_sym_alignof] = ACTIONS(6491), + [anon_sym__Alignof] = ACTIONS(6491), + [anon_sym_offsetof] = ACTIONS(6491), + [anon_sym__Generic] = ACTIONS(6491), + [anon_sym_asm] = ACTIONS(6491), + [anon_sym___asm__] = ACTIONS(6491), + [anon_sym___asm] = ACTIONS(6491), + [sym_number_literal] = ACTIONS(6493), + [anon_sym_L_SQUOTE] = ACTIONS(6493), + [anon_sym_u_SQUOTE] = ACTIONS(6493), + [anon_sym_U_SQUOTE] = ACTIONS(6493), + [anon_sym_u8_SQUOTE] = ACTIONS(6493), + [anon_sym_SQUOTE] = ACTIONS(6493), + [anon_sym_L_DQUOTE] = ACTIONS(6493), + [anon_sym_u_DQUOTE] = ACTIONS(6493), + [anon_sym_U_DQUOTE] = ACTIONS(6493), + [anon_sym_u8_DQUOTE] = ACTIONS(6493), + [anon_sym_DQUOTE] = ACTIONS(6493), + [sym_true] = ACTIONS(6491), + [sym_false] = ACTIONS(6491), + [anon_sym_NULL] = ACTIONS(6491), + [anon_sym_nullptr] = ACTIONS(6491), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6491), + [anon_sym_typename] = ACTIONS(6491), + [anon_sym_template] = ACTIONS(6491), + [anon_sym_delete] = ACTIONS(6491), + [anon_sym_R_DQUOTE] = ACTIONS(6493), + [anon_sym_LR_DQUOTE] = ACTIONS(6493), + [anon_sym_uR_DQUOTE] = ACTIONS(6493), + [anon_sym_UR_DQUOTE] = ACTIONS(6493), + [anon_sym_u8R_DQUOTE] = ACTIONS(6493), + [anon_sym_co_await] = ACTIONS(6491), + [anon_sym_new] = ACTIONS(6491), + [anon_sym_requires] = ACTIONS(6491), + [sym_this] = ACTIONS(6491), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(6491), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(6491), + [anon_sym_FORWARD] = ACTIONS(6491), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(6491), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(6491), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(6491), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(6491), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(6491), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(6491), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(6491), + [anon_sym_PS_GET] = ACTIONS(6491), + [anon_sym_PS_GET_AND_SET] = ACTIONS(6491), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(6491), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(6491), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(6491), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(6491), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(6491), + }, + [STATE(2421)] = { + [sym_identifier] = ACTIONS(6495), + [anon_sym_LPAREN2] = ACTIONS(6497), + [anon_sym_BANG] = ACTIONS(6497), + [anon_sym_TILDE] = ACTIONS(6497), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6497), + [anon_sym_AMP] = ACTIONS(6497), + [anon_sym_SEMI] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(6495), + [anon_sym_COLON_COLON] = ACTIONS(6497), + [anon_sym_LBRACE] = ACTIONS(6497), + [anon_sym_RBRACE] = ACTIONS(6497), + [anon_sym_LBRACK] = ACTIONS(6497), + [sym_primitive_type] = ACTIONS(6495), + [anon_sym_not] = ACTIONS(6495), + [anon_sym_compl] = ACTIONS(6495), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_sizeof] = ACTIONS(6495), + [anon_sym___alignof__] = ACTIONS(6495), + [anon_sym___alignof] = ACTIONS(6495), + [anon_sym__alignof] = ACTIONS(6495), + [anon_sym_alignof] = ACTIONS(6495), + [anon_sym__Alignof] = ACTIONS(6495), + [anon_sym_offsetof] = ACTIONS(6495), + [anon_sym__Generic] = ACTIONS(6495), + [anon_sym_asm] = ACTIONS(6495), + [anon_sym___asm__] = ACTIONS(6495), + [anon_sym___asm] = ACTIONS(6495), + [sym_number_literal] = ACTIONS(6497), + [anon_sym_L_SQUOTE] = ACTIONS(6497), + [anon_sym_u_SQUOTE] = ACTIONS(6497), + [anon_sym_U_SQUOTE] = ACTIONS(6497), + [anon_sym_u8_SQUOTE] = ACTIONS(6497), + [anon_sym_SQUOTE] = ACTIONS(6497), + [anon_sym_L_DQUOTE] = ACTIONS(6497), + [anon_sym_u_DQUOTE] = ACTIONS(6497), + [anon_sym_U_DQUOTE] = ACTIONS(6497), + [anon_sym_u8_DQUOTE] = ACTIONS(6497), + [anon_sym_DQUOTE] = ACTIONS(6497), + [sym_true] = ACTIONS(6495), + [sym_false] = ACTIONS(6495), + [anon_sym_NULL] = ACTIONS(6495), + [anon_sym_nullptr] = ACTIONS(6495), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6495), + [anon_sym_typename] = ACTIONS(6495), + [anon_sym_template] = ACTIONS(6495), + [anon_sym_delete] = ACTIONS(6495), + [anon_sym_R_DQUOTE] = ACTIONS(6497), + [anon_sym_LR_DQUOTE] = ACTIONS(6497), + [anon_sym_uR_DQUOTE] = ACTIONS(6497), + [anon_sym_UR_DQUOTE] = ACTIONS(6497), + [anon_sym_u8R_DQUOTE] = ACTIONS(6497), + [anon_sym_co_await] = ACTIONS(6495), + [anon_sym_new] = ACTIONS(6495), + [anon_sym_requires] = ACTIONS(6495), + [sym_this] = ACTIONS(6495), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(6495), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(6495), + [anon_sym_FORWARD] = ACTIONS(6495), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(6495), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(6495), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(6495), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(6495), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(6495), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(6495), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(6495), + [anon_sym_PS_GET] = ACTIONS(6495), + [anon_sym_PS_GET_AND_SET] = ACTIONS(6495), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(6495), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(6495), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(6495), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(6495), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(6495), + }, + [STATE(2422)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_CARET] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3264), + [anon_sym_EQ_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3266), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_LT_LT] = ACTIONS(3264), + [anon_sym_GT_GT] = ACTIONS(3264), + [anon_sym___extension__] = ACTIONS(3266), + [anon_sym___attribute__] = ACTIONS(3266), + [anon_sym___attribute] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_const] = ACTIONS(3264), + [anon_sym_constexpr] = ACTIONS(3266), + [anon_sym_volatile] = ACTIONS(3266), + [anon_sym_restrict] = ACTIONS(3266), + [anon_sym___restrict__] = ACTIONS(3266), + [anon_sym__Atomic] = ACTIONS(3266), + [anon_sym__Noreturn] = ACTIONS(3266), + [anon_sym_noreturn] = ACTIONS(3266), + [anon_sym__Nonnull] = ACTIONS(3266), + [anon_sym_mutable] = ACTIONS(3266), + [anon_sym_constinit] = ACTIONS(3266), + [anon_sym_consteval] = ACTIONS(3266), + [anon_sym_alignas] = ACTIONS(3266), + [anon_sym__Alignas] = ACTIONS(3266), + [anon_sym_COLON] = ACTIONS(3264), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_LT_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_GT_EQ] = ACTIONS(3266), + [anon_sym_AMP_EQ] = ACTIONS(3266), + [anon_sym_CARET_EQ] = ACTIONS(3266), + [anon_sym_PIPE_EQ] = ACTIONS(3266), + [anon_sym_and_eq] = ACTIONS(3266), + [anon_sym_or_eq] = ACTIONS(3266), + [anon_sym_xor_eq] = ACTIONS(3266), + [anon_sym_LT_EQ_GT] = ACTIONS(3266), + [anon_sym_or] = ACTIONS(3264), + [anon_sym_and] = ACTIONS(3264), + [anon_sym_bitor] = ACTIONS(3266), + [anon_sym_xor] = ACTIONS(3264), + [anon_sym_bitand] = ACTIONS(3266), + [anon_sym_not_eq] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_DOT_STAR] = ACTIONS(3266), + [anon_sym_DASH_GT] = ACTIONS(3264), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3266), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_final] = ACTIONS(3266), + [anon_sym_override] = ACTIONS(3266), + [anon_sym_DASH_GT_STAR] = ACTIONS(3266), + }, + [STATE(2423)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3270), + [anon_sym_COMMA] = ACTIONS(3270), + [anon_sym_RPAREN] = ACTIONS(3270), + [anon_sym_LPAREN2] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_PIPE_PIPE] = ACTIONS(3270), + [anon_sym_AMP_AMP] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3268), + [anon_sym_CARET] = ACTIONS(3268), + [anon_sym_AMP] = ACTIONS(3268), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_GT_EQ] = ACTIONS(3270), + [anon_sym_LT_EQ] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_LT_LT] = ACTIONS(3268), + [anon_sym_GT_GT] = ACTIONS(3268), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(3270), + [anon_sym___attribute] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_constexpr] = ACTIONS(3270), + [anon_sym_volatile] = ACTIONS(3270), + [anon_sym_restrict] = ACTIONS(3270), + [anon_sym___restrict__] = ACTIONS(3270), + [anon_sym__Atomic] = ACTIONS(3270), + [anon_sym__Noreturn] = ACTIONS(3270), + [anon_sym_noreturn] = ACTIONS(3270), + [anon_sym__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3270), + [anon_sym__Alignas] = ACTIONS(3270), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_QMARK] = ACTIONS(3270), + [anon_sym_STAR_EQ] = ACTIONS(3270), + [anon_sym_SLASH_EQ] = ACTIONS(3270), + [anon_sym_PERCENT_EQ] = ACTIONS(3270), + [anon_sym_PLUS_EQ] = ACTIONS(3270), + [anon_sym_DASH_EQ] = ACTIONS(3270), + [anon_sym_LT_LT_EQ] = ACTIONS(3270), + [anon_sym_GT_GT_EQ] = ACTIONS(3270), + [anon_sym_AMP_EQ] = ACTIONS(3270), + [anon_sym_CARET_EQ] = ACTIONS(3270), + [anon_sym_PIPE_EQ] = ACTIONS(3270), + [anon_sym_and_eq] = ACTIONS(3270), + [anon_sym_or_eq] = ACTIONS(3270), + [anon_sym_xor_eq] = ACTIONS(3270), + [anon_sym_LT_EQ_GT] = ACTIONS(3270), + [anon_sym_or] = ACTIONS(3268), + [anon_sym_and] = ACTIONS(3268), + [anon_sym_bitor] = ACTIONS(3270), + [anon_sym_xor] = ACTIONS(3268), + [anon_sym_bitand] = ACTIONS(3270), + [anon_sym_not_eq] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_DOT_STAR] = ACTIONS(3270), + [anon_sym_DASH_GT] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3270), + [anon_sym_decltype] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_DASH_GT_STAR] = ACTIONS(3270), + }, + [STATE(2424)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_STAR] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3260), + [anon_sym_PERCENT] = ACTIONS(3260), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE] = ACTIONS(3260), + [anon_sym_CARET] = ACTIONS(3260), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3260), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_LT_LT] = ACTIONS(3260), + [anon_sym_GT_GT] = ACTIONS(3260), + [anon_sym___extension__] = ACTIONS(3262), + [anon_sym___attribute__] = ACTIONS(3262), + [anon_sym___attribute] = ACTIONS(3260), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_constexpr] = ACTIONS(3262), + [anon_sym_volatile] = ACTIONS(3262), + [anon_sym_restrict] = ACTIONS(3262), + [anon_sym___restrict__] = ACTIONS(3262), + [anon_sym__Atomic] = ACTIONS(3262), + [anon_sym__Noreturn] = ACTIONS(3262), + [anon_sym_noreturn] = ACTIONS(3262), + [anon_sym__Nonnull] = ACTIONS(3262), + [anon_sym_mutable] = ACTIONS(3262), + [anon_sym_constinit] = ACTIONS(3262), + [anon_sym_consteval] = ACTIONS(3262), + [anon_sym_alignas] = ACTIONS(3262), + [anon_sym__Alignas] = ACTIONS(3262), + [anon_sym_COLON] = ACTIONS(3260), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_STAR_EQ] = ACTIONS(3262), + [anon_sym_SLASH_EQ] = ACTIONS(3262), + [anon_sym_PERCENT_EQ] = ACTIONS(3262), + [anon_sym_PLUS_EQ] = ACTIONS(3262), + [anon_sym_DASH_EQ] = ACTIONS(3262), + [anon_sym_LT_LT_EQ] = ACTIONS(3262), + [anon_sym_GT_GT_EQ] = ACTIONS(3262), + [anon_sym_AMP_EQ] = ACTIONS(3262), + [anon_sym_CARET_EQ] = ACTIONS(3262), + [anon_sym_PIPE_EQ] = ACTIONS(3262), + [anon_sym_and_eq] = ACTIONS(3262), + [anon_sym_or_eq] = ACTIONS(3262), + [anon_sym_xor_eq] = ACTIONS(3262), + [anon_sym_LT_EQ_GT] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3260), + [anon_sym_and] = ACTIONS(3260), + [anon_sym_bitor] = ACTIONS(3262), + [anon_sym_xor] = ACTIONS(3260), + [anon_sym_bitand] = ACTIONS(3262), + [anon_sym_not_eq] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3260), + [anon_sym_DOT_STAR] = ACTIONS(3262), + [anon_sym_DASH_GT] = ACTIONS(3260), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3262), + [anon_sym_decltype] = ACTIONS(3262), + [anon_sym_final] = ACTIONS(3262), + [anon_sym_override] = ACTIONS(3262), + [anon_sym_DASH_GT_STAR] = ACTIONS(3262), + }, + [STATE(2425)] = { + [sym_identifier] = ACTIONS(4269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [aux_sym_preproc_if_token2] = ACTIONS(4271), + [aux_sym_preproc_else_token1] = ACTIONS(4271), + [aux_sym_preproc_elif_token1] = ACTIONS(4269), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_PLUS] = ACTIONS(4269), + [anon_sym_STAR] = ACTIONS(4271), + [anon_sym_SLASH] = ACTIONS(4269), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_PIPE_PIPE] = ACTIONS(4271), + [anon_sym_AMP_AMP] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4269), + [anon_sym_CARET] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_EQ_EQ] = ACTIONS(4271), + [anon_sym_BANG_EQ] = ACTIONS(4271), + [anon_sym_GT] = ACTIONS(4269), + [anon_sym_GT_EQ] = ACTIONS(4271), + [anon_sym_LT_EQ] = ACTIONS(4269), + [anon_sym_LT] = ACTIONS(4269), + [anon_sym_LT_LT] = ACTIONS(4271), + [anon_sym_GT_GT] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym___extension__] = ACTIONS(4269), + [anon_sym___attribute__] = ACTIONS(4269), + [anon_sym___attribute] = ACTIONS(4269), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_RBRACE] = ACTIONS(4271), + [anon_sym_signed] = ACTIONS(4269), + [anon_sym_unsigned] = ACTIONS(4269), + [anon_sym_long] = ACTIONS(4269), + [anon_sym_short] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_RBRACK] = ACTIONS(4271), + [anon_sym_const] = ACTIONS(4269), + [anon_sym_constexpr] = ACTIONS(4269), + [anon_sym_volatile] = ACTIONS(4269), + [anon_sym_restrict] = ACTIONS(4269), + [anon_sym___restrict__] = ACTIONS(4269), + [anon_sym__Atomic] = ACTIONS(4269), + [anon_sym__Noreturn] = ACTIONS(4269), + [anon_sym_noreturn] = ACTIONS(4269), + [anon_sym__Nonnull] = ACTIONS(4269), + [anon_sym_mutable] = ACTIONS(4269), + [anon_sym_constinit] = ACTIONS(4269), + [anon_sym_consteval] = ACTIONS(4269), + [anon_sym_alignas] = ACTIONS(4269), + [anon_sym__Alignas] = ACTIONS(4269), + [sym_primitive_type] = ACTIONS(4269), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LT_EQ_GT] = ACTIONS(4271), + [anon_sym_or] = ACTIONS(4269), + [anon_sym_and] = ACTIONS(4269), + [anon_sym_bitor] = ACTIONS(4269), + [anon_sym_xor] = ACTIONS(4269), + [anon_sym_bitand] = ACTIONS(4269), + [anon_sym_not_eq] = ACTIONS(4269), + [anon_sym_DASH_DASH] = ACTIONS(4271), + [anon_sym_PLUS_PLUS] = ACTIONS(4271), + [anon_sym_DOT] = ACTIONS(4269), + [anon_sym_DOT_STAR] = ACTIONS(4271), + [anon_sym_DASH_GT] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4269), + [anon_sym_decltype] = ACTIONS(4269), + [anon_sym_final] = ACTIONS(4269), + [anon_sym_override] = ACTIONS(4269), + [anon_sym_requires] = ACTIONS(4269), + }, + [STATE(2426)] = { + [sym_identifier] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1893), + [anon_sym_COMMA] = ACTIONS(1893), + [anon_sym_RPAREN] = ACTIONS(1893), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_PLUS] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1903), + [anon_sym_SLASH] = ACTIONS(1903), + [anon_sym_PERCENT] = ACTIONS(1903), + [anon_sym_PIPE_PIPE] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_EQ_EQ] = ACTIONS(1893), + [anon_sym_BANG_EQ] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(1893), + [anon_sym_LT_EQ] = ACTIONS(1903), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_LT_LT] = ACTIONS(1903), + [anon_sym_GT_GT] = ACTIONS(1903), + [anon_sym___extension__] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1893), + [anon_sym_EQ] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1903), + [anon_sym_QMARK] = ACTIONS(1893), + [anon_sym_STAR_EQ] = ACTIONS(1893), + [anon_sym_SLASH_EQ] = ACTIONS(1893), + [anon_sym_PERCENT_EQ] = ACTIONS(1893), + [anon_sym_PLUS_EQ] = ACTIONS(1893), + [anon_sym_DASH_EQ] = ACTIONS(1893), + [anon_sym_LT_LT_EQ] = ACTIONS(1893), + [anon_sym_GT_GT_EQ] = ACTIONS(1893), + [anon_sym_AMP_EQ] = ACTIONS(1893), + [anon_sym_CARET_EQ] = ACTIONS(1893), + [anon_sym_PIPE_EQ] = ACTIONS(1893), + [anon_sym_LT_EQ_GT] = ACTIONS(1893), + [anon_sym_or] = ACTIONS(1903), + [anon_sym_and] = ACTIONS(1903), + [anon_sym_bitor] = ACTIONS(1903), + [anon_sym_xor] = ACTIONS(1903), + [anon_sym_bitand] = ACTIONS(1903), + [anon_sym_not_eq] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1893), + [anon_sym_PLUS_PLUS] = ACTIONS(1893), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_STAR] = ACTIONS(1893), + [anon_sym_DASH_GT] = ACTIONS(1903), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1903), + [anon_sym_DASH_GT_STAR] = ACTIONS(1893), + }, + [STATE(2427)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3258), + [anon_sym_COMMA] = ACTIONS(3258), + [anon_sym_LPAREN2] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3256), + [anon_sym_SLASH] = ACTIONS(3256), + [anon_sym_PERCENT] = ACTIONS(3256), + [anon_sym_PIPE_PIPE] = ACTIONS(3258), + [anon_sym_AMP_AMP] = ACTIONS(3258), + [anon_sym_PIPE] = ACTIONS(3256), + [anon_sym_CARET] = ACTIONS(3256), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym_EQ_EQ] = ACTIONS(3258), + [anon_sym_BANG_EQ] = ACTIONS(3258), + [anon_sym_GT] = ACTIONS(3256), + [anon_sym_GT_EQ] = ACTIONS(3256), + [anon_sym_LT_EQ] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3256), + [anon_sym_LT_LT] = ACTIONS(3256), + [anon_sym_GT_GT] = ACTIONS(3256), + [anon_sym___extension__] = ACTIONS(3258), + [anon_sym___attribute__] = ACTIONS(3258), + [anon_sym___attribute] = ACTIONS(3256), + [anon_sym_COLON_COLON] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3258), + [anon_sym_EQ] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_constexpr] = ACTIONS(3258), + [anon_sym_volatile] = ACTIONS(3258), + [anon_sym_restrict] = ACTIONS(3258), + [anon_sym___restrict__] = ACTIONS(3258), + [anon_sym__Atomic] = ACTIONS(3258), + [anon_sym__Noreturn] = ACTIONS(3258), + [anon_sym_noreturn] = ACTIONS(3258), + [anon_sym__Nonnull] = ACTIONS(3258), + [anon_sym_mutable] = ACTIONS(3258), + [anon_sym_constinit] = ACTIONS(3258), + [anon_sym_consteval] = ACTIONS(3258), + [anon_sym_alignas] = ACTIONS(3258), + [anon_sym__Alignas] = ACTIONS(3258), + [anon_sym_COLON] = ACTIONS(3256), + [anon_sym_QMARK] = ACTIONS(3258), + [anon_sym_STAR_EQ] = ACTIONS(3258), + [anon_sym_SLASH_EQ] = ACTIONS(3258), + [anon_sym_PERCENT_EQ] = ACTIONS(3258), + [anon_sym_PLUS_EQ] = ACTIONS(3258), + [anon_sym_DASH_EQ] = ACTIONS(3258), + [anon_sym_LT_LT_EQ] = ACTIONS(3258), + [anon_sym_GT_GT_EQ] = ACTIONS(3256), + [anon_sym_AMP_EQ] = ACTIONS(3258), + [anon_sym_CARET_EQ] = ACTIONS(3258), + [anon_sym_PIPE_EQ] = ACTIONS(3258), + [anon_sym_and_eq] = ACTIONS(3258), + [anon_sym_or_eq] = ACTIONS(3258), + [anon_sym_xor_eq] = ACTIONS(3258), + [anon_sym_LT_EQ_GT] = ACTIONS(3258), + [anon_sym_or] = ACTIONS(3256), + [anon_sym_and] = ACTIONS(3256), + [anon_sym_bitor] = ACTIONS(3258), + [anon_sym_xor] = ACTIONS(3256), + [anon_sym_bitand] = ACTIONS(3258), + [anon_sym_not_eq] = ACTIONS(3258), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DOT] = ACTIONS(3256), + [anon_sym_DOT_STAR] = ACTIONS(3258), + [anon_sym_DASH_GT] = ACTIONS(3258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3258), + [anon_sym_decltype] = ACTIONS(3258), + [anon_sym_final] = ACTIONS(3258), + [anon_sym_override] = ACTIONS(3258), + [anon_sym_GT2] = ACTIONS(3258), + }, + [STATE(2428)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LPAREN2] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3252), + [anon_sym_CARET] = ACTIONS(3252), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3254), + [anon_sym_GT] = ACTIONS(3252), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_LT_LT] = ACTIONS(3252), + [anon_sym_GT_GT] = ACTIONS(3252), + [anon_sym___extension__] = ACTIONS(3254), + [anon_sym___attribute__] = ACTIONS(3254), + [anon_sym___attribute] = ACTIONS(3252), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_EQ] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_constexpr] = ACTIONS(3254), + [anon_sym_volatile] = ACTIONS(3254), + [anon_sym_restrict] = ACTIONS(3254), + [anon_sym___restrict__] = ACTIONS(3254), + [anon_sym__Atomic] = ACTIONS(3254), + [anon_sym__Noreturn] = ACTIONS(3254), + [anon_sym_noreturn] = ACTIONS(3254), + [anon_sym__Nonnull] = ACTIONS(3254), + [anon_sym_mutable] = ACTIONS(3254), + [anon_sym_constinit] = ACTIONS(3254), + [anon_sym_consteval] = ACTIONS(3254), + [anon_sym_alignas] = ACTIONS(3254), + [anon_sym__Alignas] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_LT_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_GT_EQ] = ACTIONS(3252), + [anon_sym_AMP_EQ] = ACTIONS(3254), + [anon_sym_CARET_EQ] = ACTIONS(3254), + [anon_sym_PIPE_EQ] = ACTIONS(3254), + [anon_sym_and_eq] = ACTIONS(3254), + [anon_sym_or_eq] = ACTIONS(3254), + [anon_sym_xor_eq] = ACTIONS(3254), + [anon_sym_LT_EQ_GT] = ACTIONS(3254), + [anon_sym_or] = ACTIONS(3252), + [anon_sym_and] = ACTIONS(3252), + [anon_sym_bitor] = ACTIONS(3254), + [anon_sym_xor] = ACTIONS(3252), + [anon_sym_bitand] = ACTIONS(3254), + [anon_sym_not_eq] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3252), + [anon_sym_DOT_STAR] = ACTIONS(3254), + [anon_sym_DASH_GT] = ACTIONS(3254), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3254), + [anon_sym_decltype] = ACTIONS(3254), + [anon_sym_final] = ACTIONS(3254), + [anon_sym_override] = ACTIONS(3254), + [anon_sym_GT2] = ACTIONS(3254), + }, + [STATE(2429)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3250), + [anon_sym_COMMA] = ACTIONS(3250), + [anon_sym_LPAREN2] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3248), + [anon_sym_CARET] = ACTIONS(3248), + [anon_sym_AMP] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_LT_LT] = ACTIONS(3248), + [anon_sym_GT_GT] = ACTIONS(3248), + [anon_sym___extension__] = ACTIONS(3250), + [anon_sym___attribute__] = ACTIONS(3250), + [anon_sym___attribute] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_constexpr] = ACTIONS(3250), + [anon_sym_volatile] = ACTIONS(3250), + [anon_sym_restrict] = ACTIONS(3250), + [anon_sym___restrict__] = ACTIONS(3250), + [anon_sym__Atomic] = ACTIONS(3250), + [anon_sym__Noreturn] = ACTIONS(3250), + [anon_sym_noreturn] = ACTIONS(3250), + [anon_sym__Nonnull] = ACTIONS(3250), + [anon_sym_mutable] = ACTIONS(3250), + [anon_sym_constinit] = ACTIONS(3250), + [anon_sym_consteval] = ACTIONS(3250), + [anon_sym_alignas] = ACTIONS(3250), + [anon_sym__Alignas] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_QMARK] = ACTIONS(3250), + [anon_sym_STAR_EQ] = ACTIONS(3250), + [anon_sym_SLASH_EQ] = ACTIONS(3250), + [anon_sym_PERCENT_EQ] = ACTIONS(3250), + [anon_sym_PLUS_EQ] = ACTIONS(3250), + [anon_sym_DASH_EQ] = ACTIONS(3250), + [anon_sym_LT_LT_EQ] = ACTIONS(3250), + [anon_sym_GT_GT_EQ] = ACTIONS(3248), + [anon_sym_AMP_EQ] = ACTIONS(3250), + [anon_sym_CARET_EQ] = ACTIONS(3250), + [anon_sym_PIPE_EQ] = ACTIONS(3250), + [anon_sym_and_eq] = ACTIONS(3250), + [anon_sym_or_eq] = ACTIONS(3250), + [anon_sym_xor_eq] = ACTIONS(3250), + [anon_sym_LT_EQ_GT] = ACTIONS(3250), + [anon_sym_or] = ACTIONS(3248), + [anon_sym_and] = ACTIONS(3248), + [anon_sym_bitor] = ACTIONS(3250), + [anon_sym_xor] = ACTIONS(3248), + [anon_sym_bitand] = ACTIONS(3250), + [anon_sym_not_eq] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DOT] = ACTIONS(3248), + [anon_sym_DOT_STAR] = ACTIONS(3250), + [anon_sym_DASH_GT] = ACTIONS(3250), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3250), + [anon_sym_decltype] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_GT2] = ACTIONS(3250), + }, + [STATE(2430)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3246), + [anon_sym_COMMA] = ACTIONS(3246), + [anon_sym_LPAREN2] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_PIPE_PIPE] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3244), + [anon_sym_CARET] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3244), + [anon_sym_EQ_EQ] = ACTIONS(3246), + [anon_sym_BANG_EQ] = ACTIONS(3246), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_GT_EQ] = ACTIONS(3244), + [anon_sym_LT_EQ] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_LT_LT] = ACTIONS(3244), + [anon_sym_GT_GT] = ACTIONS(3244), + [anon_sym___extension__] = ACTIONS(3246), + [anon_sym___attribute__] = ACTIONS(3246), + [anon_sym___attribute] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3246), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_constexpr] = ACTIONS(3246), + [anon_sym_volatile] = ACTIONS(3246), + [anon_sym_restrict] = ACTIONS(3246), + [anon_sym___restrict__] = ACTIONS(3246), + [anon_sym__Atomic] = ACTIONS(3246), + [anon_sym__Noreturn] = ACTIONS(3246), + [anon_sym_noreturn] = ACTIONS(3246), + [anon_sym__Nonnull] = ACTIONS(3246), + [anon_sym_mutable] = ACTIONS(3246), + [anon_sym_constinit] = ACTIONS(3246), + [anon_sym_consteval] = ACTIONS(3246), + [anon_sym_alignas] = ACTIONS(3246), + [anon_sym__Alignas] = ACTIONS(3246), + [anon_sym_COLON] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_STAR_EQ] = ACTIONS(3246), + [anon_sym_SLASH_EQ] = ACTIONS(3246), + [anon_sym_PERCENT_EQ] = ACTIONS(3246), + [anon_sym_PLUS_EQ] = ACTIONS(3246), + [anon_sym_DASH_EQ] = ACTIONS(3246), + [anon_sym_LT_LT_EQ] = ACTIONS(3246), + [anon_sym_GT_GT_EQ] = ACTIONS(3244), + [anon_sym_AMP_EQ] = ACTIONS(3246), + [anon_sym_CARET_EQ] = ACTIONS(3246), + [anon_sym_PIPE_EQ] = ACTIONS(3246), + [anon_sym_and_eq] = ACTIONS(3246), + [anon_sym_or_eq] = ACTIONS(3246), + [anon_sym_xor_eq] = ACTIONS(3246), + [anon_sym_LT_EQ_GT] = ACTIONS(3246), + [anon_sym_or] = ACTIONS(3244), + [anon_sym_and] = ACTIONS(3244), + [anon_sym_bitor] = ACTIONS(3246), + [anon_sym_xor] = ACTIONS(3244), + [anon_sym_bitand] = ACTIONS(3246), + [anon_sym_not_eq] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_DOT_STAR] = ACTIONS(3246), + [anon_sym_DASH_GT] = ACTIONS(3246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3246), + [anon_sym_decltype] = ACTIONS(3246), + [anon_sym_final] = ACTIONS(3246), + [anon_sym_override] = ACTIONS(3246), + [anon_sym_GT2] = ACTIONS(3246), + }, + [STATE(2431)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_CARET] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3264), + [anon_sym_EQ_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3266), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3264), + [anon_sym_LT_EQ] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_LT_LT] = ACTIONS(3264), + [anon_sym_GT_GT] = ACTIONS(3264), + [anon_sym___extension__] = ACTIONS(3266), + [anon_sym___attribute__] = ACTIONS(3266), + [anon_sym___attribute] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_const] = ACTIONS(3264), + [anon_sym_constexpr] = ACTIONS(3266), + [anon_sym_volatile] = ACTIONS(3266), + [anon_sym_restrict] = ACTIONS(3266), + [anon_sym___restrict__] = ACTIONS(3266), + [anon_sym__Atomic] = ACTIONS(3266), + [anon_sym__Noreturn] = ACTIONS(3266), + [anon_sym_noreturn] = ACTIONS(3266), + [anon_sym__Nonnull] = ACTIONS(3266), + [anon_sym_mutable] = ACTIONS(3266), + [anon_sym_constinit] = ACTIONS(3266), + [anon_sym_consteval] = ACTIONS(3266), + [anon_sym_alignas] = ACTIONS(3266), + [anon_sym__Alignas] = ACTIONS(3266), + [anon_sym_COLON] = ACTIONS(3264), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_LT_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_GT_EQ] = ACTIONS(3264), + [anon_sym_AMP_EQ] = ACTIONS(3266), + [anon_sym_CARET_EQ] = ACTIONS(3266), + [anon_sym_PIPE_EQ] = ACTIONS(3266), + [anon_sym_and_eq] = ACTIONS(3266), + [anon_sym_or_eq] = ACTIONS(3266), + [anon_sym_xor_eq] = ACTIONS(3266), + [anon_sym_LT_EQ_GT] = ACTIONS(3266), + [anon_sym_or] = ACTIONS(3264), + [anon_sym_and] = ACTIONS(3264), + [anon_sym_bitor] = ACTIONS(3266), + [anon_sym_xor] = ACTIONS(3264), + [anon_sym_bitand] = ACTIONS(3266), + [anon_sym_not_eq] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_DOT_STAR] = ACTIONS(3266), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3266), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_final] = ACTIONS(3266), + [anon_sym_override] = ACTIONS(3266), + [anon_sym_GT2] = ACTIONS(3266), + }, + [STATE(2432)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3270), + [anon_sym_COMMA] = ACTIONS(3270), + [anon_sym_LPAREN2] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_PIPE_PIPE] = ACTIONS(3270), + [anon_sym_AMP_AMP] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3268), + [anon_sym_CARET] = ACTIONS(3268), + [anon_sym_AMP] = ACTIONS(3268), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_GT_EQ] = ACTIONS(3268), + [anon_sym_LT_EQ] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_LT_LT] = ACTIONS(3268), + [anon_sym_GT_GT] = ACTIONS(3268), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(3270), + [anon_sym___attribute] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_constexpr] = ACTIONS(3270), + [anon_sym_volatile] = ACTIONS(3270), + [anon_sym_restrict] = ACTIONS(3270), + [anon_sym___restrict__] = ACTIONS(3270), + [anon_sym__Atomic] = ACTIONS(3270), + [anon_sym__Noreturn] = ACTIONS(3270), + [anon_sym_noreturn] = ACTIONS(3270), + [anon_sym__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3270), + [anon_sym__Alignas] = ACTIONS(3270), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_QMARK] = ACTIONS(3270), + [anon_sym_STAR_EQ] = ACTIONS(3270), + [anon_sym_SLASH_EQ] = ACTIONS(3270), + [anon_sym_PERCENT_EQ] = ACTIONS(3270), + [anon_sym_PLUS_EQ] = ACTIONS(3270), + [anon_sym_DASH_EQ] = ACTIONS(3270), + [anon_sym_LT_LT_EQ] = ACTIONS(3270), + [anon_sym_GT_GT_EQ] = ACTIONS(3268), + [anon_sym_AMP_EQ] = ACTIONS(3270), + [anon_sym_CARET_EQ] = ACTIONS(3270), + [anon_sym_PIPE_EQ] = ACTIONS(3270), + [anon_sym_and_eq] = ACTIONS(3270), + [anon_sym_or_eq] = ACTIONS(3270), + [anon_sym_xor_eq] = ACTIONS(3270), + [anon_sym_LT_EQ_GT] = ACTIONS(3270), + [anon_sym_or] = ACTIONS(3268), + [anon_sym_and] = ACTIONS(3268), + [anon_sym_bitor] = ACTIONS(3270), + [anon_sym_xor] = ACTIONS(3268), + [anon_sym_bitand] = ACTIONS(3270), + [anon_sym_not_eq] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_DOT_STAR] = ACTIONS(3270), + [anon_sym_DASH_GT] = ACTIONS(3270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3270), + [anon_sym_decltype] = ACTIONS(3270), + [anon_sym_final] = ACTIONS(3270), + [anon_sym_override] = ACTIONS(3270), + [anon_sym_GT2] = ACTIONS(3270), + }, + [STATE(2433)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_STAR] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3260), + [anon_sym_PERCENT] = ACTIONS(3260), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE] = ACTIONS(3260), + [anon_sym_CARET] = ACTIONS(3260), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3260), + [anon_sym_GT_EQ] = ACTIONS(3260), + [anon_sym_LT_EQ] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_LT_LT] = ACTIONS(3260), + [anon_sym_GT_GT] = ACTIONS(3260), + [anon_sym___extension__] = ACTIONS(3262), + [anon_sym___attribute__] = ACTIONS(3262), + [anon_sym___attribute] = ACTIONS(3260), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_constexpr] = ACTIONS(3262), + [anon_sym_volatile] = ACTIONS(3262), + [anon_sym_restrict] = ACTIONS(3262), + [anon_sym___restrict__] = ACTIONS(3262), + [anon_sym__Atomic] = ACTIONS(3262), + [anon_sym__Noreturn] = ACTIONS(3262), + [anon_sym_noreturn] = ACTIONS(3262), + [anon_sym__Nonnull] = ACTIONS(3262), + [anon_sym_mutable] = ACTIONS(3262), + [anon_sym_constinit] = ACTIONS(3262), + [anon_sym_consteval] = ACTIONS(3262), + [anon_sym_alignas] = ACTIONS(3262), + [anon_sym__Alignas] = ACTIONS(3262), + [anon_sym_COLON] = ACTIONS(3260), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_STAR_EQ] = ACTIONS(3262), + [anon_sym_SLASH_EQ] = ACTIONS(3262), + [anon_sym_PERCENT_EQ] = ACTIONS(3262), + [anon_sym_PLUS_EQ] = ACTIONS(3262), + [anon_sym_DASH_EQ] = ACTIONS(3262), + [anon_sym_LT_LT_EQ] = ACTIONS(3262), + [anon_sym_GT_GT_EQ] = ACTIONS(3260), + [anon_sym_AMP_EQ] = ACTIONS(3262), + [anon_sym_CARET_EQ] = ACTIONS(3262), + [anon_sym_PIPE_EQ] = ACTIONS(3262), + [anon_sym_and_eq] = ACTIONS(3262), + [anon_sym_or_eq] = ACTIONS(3262), + [anon_sym_xor_eq] = ACTIONS(3262), + [anon_sym_LT_EQ_GT] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3260), + [anon_sym_and] = ACTIONS(3260), + [anon_sym_bitor] = ACTIONS(3262), + [anon_sym_xor] = ACTIONS(3260), + [anon_sym_bitand] = ACTIONS(3262), + [anon_sym_not_eq] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3260), + [anon_sym_DOT_STAR] = ACTIONS(3262), + [anon_sym_DASH_GT] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3262), + [anon_sym_decltype] = ACTIONS(3262), + [anon_sym_final] = ACTIONS(3262), + [anon_sym_override] = ACTIONS(3262), + [anon_sym_GT2] = ACTIONS(3262), + }, + [STATE(2434)] = { + [sym_identifier] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1893), + [anon_sym_COMMA] = ACTIONS(1893), + [anon_sym_RPAREN] = ACTIONS(1893), + [aux_sym_preproc_if_token2] = ACTIONS(1893), + [aux_sym_preproc_else_token1] = ACTIONS(1893), + [aux_sym_preproc_elif_token1] = ACTIONS(1903), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1893), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1893), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_PLUS] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1903), + [anon_sym_PERCENT] = ACTIONS(1893), + [anon_sym_PIPE_PIPE] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_EQ_EQ] = ACTIONS(1893), + [anon_sym_BANG_EQ] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(1893), + [anon_sym_LT_EQ] = ACTIONS(1903), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_LT_LT] = ACTIONS(1893), + [anon_sym_GT_GT] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym___extension__] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1893), + [anon_sym_RBRACK] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_QMARK] = ACTIONS(1893), + [anon_sym_LT_EQ_GT] = ACTIONS(1893), + [anon_sym_or] = ACTIONS(1903), + [anon_sym_and] = ACTIONS(1903), + [anon_sym_bitor] = ACTIONS(1903), + [anon_sym_xor] = ACTIONS(1903), + [anon_sym_bitand] = ACTIONS(1903), + [anon_sym_not_eq] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1893), + [anon_sym_PLUS_PLUS] = ACTIONS(1893), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_STAR] = ACTIONS(1893), + [anon_sym_DASH_GT] = ACTIONS(1893), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1903), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_requires] = ACTIONS(1903), + }, + [STATE(2435)] = { + [sym_identifier] = ACTIONS(4269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_PLUS] = ACTIONS(4269), + [anon_sym_STAR] = ACTIONS(4269), + [anon_sym_SLASH] = ACTIONS(4269), + [anon_sym_PERCENT] = ACTIONS(4269), + [anon_sym_PIPE_PIPE] = ACTIONS(4271), + [anon_sym_AMP_AMP] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4269), + [anon_sym_CARET] = ACTIONS(4269), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_EQ_EQ] = ACTIONS(4271), + [anon_sym_BANG_EQ] = ACTIONS(4271), + [anon_sym_GT] = ACTIONS(4269), + [anon_sym_GT_EQ] = ACTIONS(4271), + [anon_sym_LT_EQ] = ACTIONS(4269), + [anon_sym_LT] = ACTIONS(4269), + [anon_sym_LT_LT] = ACTIONS(4269), + [anon_sym_GT_GT] = ACTIONS(4269), + [anon_sym___extension__] = ACTIONS(4269), + [anon_sym___attribute__] = ACTIONS(4269), + [anon_sym___attribute] = ACTIONS(4269), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_signed] = ACTIONS(4269), + [anon_sym_unsigned] = ACTIONS(4269), + [anon_sym_long] = ACTIONS(4269), + [anon_sym_short] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4269), + [anon_sym_const] = ACTIONS(4269), + [anon_sym_constexpr] = ACTIONS(4269), + [anon_sym_volatile] = ACTIONS(4269), + [anon_sym_restrict] = ACTIONS(4269), + [anon_sym___restrict__] = ACTIONS(4269), + [anon_sym__Atomic] = ACTIONS(4269), + [anon_sym__Noreturn] = ACTIONS(4269), + [anon_sym_noreturn] = ACTIONS(4269), + [anon_sym__Nonnull] = ACTIONS(4269), + [anon_sym_mutable] = ACTIONS(4269), + [anon_sym_constinit] = ACTIONS(4269), + [anon_sym_consteval] = ACTIONS(4269), + [anon_sym_alignas] = ACTIONS(4269), + [anon_sym__Alignas] = ACTIONS(4269), + [sym_primitive_type] = ACTIONS(4269), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_STAR_EQ] = ACTIONS(4271), + [anon_sym_SLASH_EQ] = ACTIONS(4271), + [anon_sym_PERCENT_EQ] = ACTIONS(4271), + [anon_sym_PLUS_EQ] = ACTIONS(4271), + [anon_sym_DASH_EQ] = ACTIONS(4271), + [anon_sym_LT_LT_EQ] = ACTIONS(4271), + [anon_sym_GT_GT_EQ] = ACTIONS(4271), + [anon_sym_AMP_EQ] = ACTIONS(4271), + [anon_sym_CARET_EQ] = ACTIONS(4271), + [anon_sym_PIPE_EQ] = ACTIONS(4271), + [anon_sym_LT_EQ_GT] = ACTIONS(4271), + [anon_sym_or] = ACTIONS(4269), + [anon_sym_and] = ACTIONS(4269), + [anon_sym_bitor] = ACTIONS(4269), + [anon_sym_xor] = ACTIONS(4269), + [anon_sym_bitand] = ACTIONS(4269), + [anon_sym_not_eq] = ACTIONS(4269), + [anon_sym_DASH_DASH] = ACTIONS(4271), + [anon_sym_PLUS_PLUS] = ACTIONS(4271), + [anon_sym_DOT] = ACTIONS(4269), + [anon_sym_DOT_STAR] = ACTIONS(4271), + [anon_sym_DASH_GT] = ACTIONS(4269), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4269), + [anon_sym_decltype] = ACTIONS(4269), + [anon_sym_DASH_GT_STAR] = ACTIONS(4271), + }, + [STATE(2436)] = { + [sym_string_literal] = STATE(2438), + [sym_raw_string_literal] = STATE(2438), + [aux_sym_concatenated_string_repeat1] = STATE(2438), + [sym_identifier] = ACTIONS(6499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6501), + [anon_sym_COMMA] = ACTIONS(6501), + [anon_sym_RPAREN] = ACTIONS(6501), + [aux_sym_preproc_if_token2] = ACTIONS(6501), + [aux_sym_preproc_else_token1] = ACTIONS(6501), + [aux_sym_preproc_elif_token1] = ACTIONS(6503), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6501), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6501), + [anon_sym_LPAREN2] = ACTIONS(6501), + [anon_sym_DASH] = ACTIONS(6503), + [anon_sym_PLUS] = ACTIONS(6503), + [anon_sym_STAR] = ACTIONS(6503), + [anon_sym_SLASH] = ACTIONS(6503), + [anon_sym_PERCENT] = ACTIONS(6503), + [anon_sym_PIPE_PIPE] = ACTIONS(6501), + [anon_sym_AMP_AMP] = ACTIONS(6501), + [anon_sym_PIPE] = ACTIONS(6503), + [anon_sym_CARET] = ACTIONS(6503), + [anon_sym_AMP] = ACTIONS(6503), + [anon_sym_EQ_EQ] = ACTIONS(6501), + [anon_sym_BANG_EQ] = ACTIONS(6501), + [anon_sym_GT] = ACTIONS(6503), + [anon_sym_GT_EQ] = ACTIONS(6501), + [anon_sym_LT_EQ] = ACTIONS(6503), + [anon_sym_LT] = ACTIONS(6503), + [anon_sym_LT_LT] = ACTIONS(6503), + [anon_sym_GT_GT] = ACTIONS(6503), + [anon_sym_SEMI] = ACTIONS(6501), + [anon_sym_RBRACE] = ACTIONS(6501), + [anon_sym_LBRACK] = ACTIONS(6501), + [anon_sym_RBRACK] = ACTIONS(6501), + [anon_sym_EQ] = ACTIONS(6503), + [anon_sym_COLON] = ACTIONS(6501), + [anon_sym_QMARK] = ACTIONS(6501), + [anon_sym_STAR_EQ] = ACTIONS(6501), + [anon_sym_SLASH_EQ] = ACTIONS(6501), + [anon_sym_PERCENT_EQ] = ACTIONS(6501), + [anon_sym_PLUS_EQ] = ACTIONS(6501), + [anon_sym_DASH_EQ] = ACTIONS(6501), + [anon_sym_LT_LT_EQ] = ACTIONS(6501), + [anon_sym_GT_GT_EQ] = ACTIONS(6501), + [anon_sym_AMP_EQ] = ACTIONS(6501), + [anon_sym_CARET_EQ] = ACTIONS(6501), + [anon_sym_PIPE_EQ] = ACTIONS(6501), + [anon_sym_and_eq] = ACTIONS(6503), + [anon_sym_or_eq] = ACTIONS(6503), + [anon_sym_xor_eq] = ACTIONS(6503), + [anon_sym_LT_EQ_GT] = ACTIONS(6501), + [anon_sym_or] = ACTIONS(6503), + [anon_sym_and] = ACTIONS(6503), + [anon_sym_bitor] = ACTIONS(6503), + [anon_sym_xor] = ACTIONS(6503), + [anon_sym_bitand] = ACTIONS(6503), + [anon_sym_not_eq] = ACTIONS(6503), + [anon_sym_DASH_DASH] = ACTIONS(6501), + [anon_sym_PLUS_PLUS] = ACTIONS(6501), + [anon_sym_DOT] = ACTIONS(6503), + [anon_sym_DOT_STAR] = ACTIONS(6501), + [anon_sym_DASH_GT] = ACTIONS(6501), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [sym_literal_suffix] = ACTIONS(6503), + }, + [STATE(2437)] = { + [sym_string_literal] = STATE(2437), + [sym_raw_string_literal] = STATE(2437), + [aux_sym_concatenated_string_repeat1] = STATE(2437), + [sym_identifier] = ACTIONS(6505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6508), + [anon_sym_COMMA] = ACTIONS(6508), + [anon_sym_RPAREN] = ACTIONS(6508), + [aux_sym_preproc_if_token2] = ACTIONS(6508), + [aux_sym_preproc_else_token1] = ACTIONS(6508), + [aux_sym_preproc_elif_token1] = ACTIONS(6510), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6508), + [anon_sym_LPAREN2] = ACTIONS(6508), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_STAR] = ACTIONS(6510), + [anon_sym_SLASH] = ACTIONS(6510), + [anon_sym_PERCENT] = ACTIONS(6510), + [anon_sym_PIPE_PIPE] = ACTIONS(6508), + [anon_sym_AMP_AMP] = ACTIONS(6508), + [anon_sym_PIPE] = ACTIONS(6510), + [anon_sym_CARET] = ACTIONS(6510), + [anon_sym_AMP] = ACTIONS(6510), + [anon_sym_EQ_EQ] = ACTIONS(6508), + [anon_sym_BANG_EQ] = ACTIONS(6508), + [anon_sym_GT] = ACTIONS(6510), + [anon_sym_GT_EQ] = ACTIONS(6508), + [anon_sym_LT_EQ] = ACTIONS(6510), + [anon_sym_LT] = ACTIONS(6510), + [anon_sym_LT_LT] = ACTIONS(6510), + [anon_sym_GT_GT] = ACTIONS(6510), + [anon_sym_SEMI] = ACTIONS(6508), + [anon_sym_RBRACE] = ACTIONS(6508), + [anon_sym_LBRACK] = ACTIONS(6508), + [anon_sym_RBRACK] = ACTIONS(6508), + [anon_sym_EQ] = ACTIONS(6510), + [anon_sym_COLON] = ACTIONS(6508), + [anon_sym_QMARK] = ACTIONS(6508), + [anon_sym_STAR_EQ] = ACTIONS(6508), + [anon_sym_SLASH_EQ] = ACTIONS(6508), + [anon_sym_PERCENT_EQ] = ACTIONS(6508), + [anon_sym_PLUS_EQ] = ACTIONS(6508), + [anon_sym_DASH_EQ] = ACTIONS(6508), + [anon_sym_LT_LT_EQ] = ACTIONS(6508), + [anon_sym_GT_GT_EQ] = ACTIONS(6508), + [anon_sym_AMP_EQ] = ACTIONS(6508), + [anon_sym_CARET_EQ] = ACTIONS(6508), + [anon_sym_PIPE_EQ] = ACTIONS(6508), + [anon_sym_and_eq] = ACTIONS(6510), + [anon_sym_or_eq] = ACTIONS(6510), + [anon_sym_xor_eq] = ACTIONS(6510), + [anon_sym_LT_EQ_GT] = ACTIONS(6508), + [anon_sym_or] = ACTIONS(6510), + [anon_sym_and] = ACTIONS(6510), + [anon_sym_bitor] = ACTIONS(6510), + [anon_sym_xor] = ACTIONS(6510), + [anon_sym_bitand] = ACTIONS(6510), + [anon_sym_not_eq] = ACTIONS(6510), + [anon_sym_DASH_DASH] = ACTIONS(6508), + [anon_sym_PLUS_PLUS] = ACTIONS(6508), + [anon_sym_DOT] = ACTIONS(6510), + [anon_sym_DOT_STAR] = ACTIONS(6508), + [anon_sym_DASH_GT] = ACTIONS(6508), + [anon_sym_L_DQUOTE] = ACTIONS(6512), + [anon_sym_u_DQUOTE] = ACTIONS(6512), + [anon_sym_U_DQUOTE] = ACTIONS(6512), + [anon_sym_u8_DQUOTE] = ACTIONS(6512), + [anon_sym_DQUOTE] = ACTIONS(6512), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6515), + [anon_sym_LR_DQUOTE] = ACTIONS(6515), + [anon_sym_uR_DQUOTE] = ACTIONS(6515), + [anon_sym_UR_DQUOTE] = ACTIONS(6515), + [anon_sym_u8R_DQUOTE] = ACTIONS(6515), + [sym_literal_suffix] = ACTIONS(6510), + }, + [STATE(2438)] = { + [sym_string_literal] = STATE(2437), + [sym_raw_string_literal] = STATE(2437), + [aux_sym_concatenated_string_repeat1] = STATE(2437), + [sym_identifier] = ACTIONS(6518), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6520), + [anon_sym_COMMA] = ACTIONS(6520), + [anon_sym_RPAREN] = ACTIONS(6520), + [aux_sym_preproc_if_token2] = ACTIONS(6520), + [aux_sym_preproc_else_token1] = ACTIONS(6520), + [aux_sym_preproc_elif_token1] = ACTIONS(6522), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6520), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6520), + [anon_sym_LPAREN2] = ACTIONS(6520), + [anon_sym_DASH] = ACTIONS(6522), + [anon_sym_PLUS] = ACTIONS(6522), + [anon_sym_STAR] = ACTIONS(6522), + [anon_sym_SLASH] = ACTIONS(6522), + [anon_sym_PERCENT] = ACTIONS(6522), + [anon_sym_PIPE_PIPE] = ACTIONS(6520), + [anon_sym_AMP_AMP] = ACTIONS(6520), + [anon_sym_PIPE] = ACTIONS(6522), + [anon_sym_CARET] = ACTIONS(6522), + [anon_sym_AMP] = ACTIONS(6522), + [anon_sym_EQ_EQ] = ACTIONS(6520), + [anon_sym_BANG_EQ] = ACTIONS(6520), + [anon_sym_GT] = ACTIONS(6522), + [anon_sym_GT_EQ] = ACTIONS(6520), + [anon_sym_LT_EQ] = ACTIONS(6522), + [anon_sym_LT] = ACTIONS(6522), + [anon_sym_LT_LT] = ACTIONS(6522), + [anon_sym_GT_GT] = ACTIONS(6522), + [anon_sym_SEMI] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(6520), + [anon_sym_LBRACK] = ACTIONS(6520), + [anon_sym_RBRACK] = ACTIONS(6520), + [anon_sym_EQ] = ACTIONS(6522), + [anon_sym_COLON] = ACTIONS(6520), + [anon_sym_QMARK] = ACTIONS(6520), + [anon_sym_STAR_EQ] = ACTIONS(6520), + [anon_sym_SLASH_EQ] = ACTIONS(6520), + [anon_sym_PERCENT_EQ] = ACTIONS(6520), + [anon_sym_PLUS_EQ] = ACTIONS(6520), + [anon_sym_DASH_EQ] = ACTIONS(6520), + [anon_sym_LT_LT_EQ] = ACTIONS(6520), + [anon_sym_GT_GT_EQ] = ACTIONS(6520), + [anon_sym_AMP_EQ] = ACTIONS(6520), + [anon_sym_CARET_EQ] = ACTIONS(6520), + [anon_sym_PIPE_EQ] = ACTIONS(6520), + [anon_sym_and_eq] = ACTIONS(6522), + [anon_sym_or_eq] = ACTIONS(6522), + [anon_sym_xor_eq] = ACTIONS(6522), + [anon_sym_LT_EQ_GT] = ACTIONS(6520), + [anon_sym_or] = ACTIONS(6522), + [anon_sym_and] = ACTIONS(6522), + [anon_sym_bitor] = ACTIONS(6522), + [anon_sym_xor] = ACTIONS(6522), + [anon_sym_bitand] = ACTIONS(6522), + [anon_sym_not_eq] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6520), + [anon_sym_PLUS_PLUS] = ACTIONS(6520), + [anon_sym_DOT] = ACTIONS(6522), + [anon_sym_DOT_STAR] = ACTIONS(6520), + [anon_sym_DASH_GT] = ACTIONS(6520), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [sym_literal_suffix] = ACTIONS(6522), + }, + [STATE(2439)] = { + [sym_field_declaration_list] = STATE(2501), + [sym_virtual_specifier] = STATE(7280), + [sym_base_class_clause] = STATE(8327), + [sym_identifier] = ACTIONS(5124), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5126), + [anon_sym_COMMA] = ACTIONS(5126), + [anon_sym_RPAREN] = ACTIONS(5126), + [anon_sym_LPAREN2] = ACTIONS(5126), + [anon_sym_DASH] = ACTIONS(5124), + [anon_sym_PLUS] = ACTIONS(5124), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_SLASH] = ACTIONS(5124), + [anon_sym_PERCENT] = ACTIONS(5126), + [anon_sym_PIPE_PIPE] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_PIPE] = ACTIONS(5124), + [anon_sym_CARET] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_EQ_EQ] = ACTIONS(5126), + [anon_sym_BANG_EQ] = ACTIONS(5126), + [anon_sym_GT] = ACTIONS(5124), + [anon_sym_GT_EQ] = ACTIONS(5126), + [anon_sym_LT_EQ] = ACTIONS(5124), + [anon_sym_LT] = ACTIONS(5124), + [anon_sym_LT_LT] = ACTIONS(5126), + [anon_sym_GT_GT] = ACTIONS(5126), + [anon_sym_SEMI] = ACTIONS(5126), + [anon_sym___extension__] = ACTIONS(5124), + [anon_sym___attribute__] = ACTIONS(5124), + [anon_sym___attribute] = ACTIONS(5124), + [anon_sym___based] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(6257), + [anon_sym_RBRACE] = ACTIONS(5126), + [anon_sym_signed] = ACTIONS(5124), + [anon_sym_unsigned] = ACTIONS(5124), + [anon_sym_long] = ACTIONS(5124), + [anon_sym_short] = ACTIONS(5124), + [anon_sym_LBRACK] = ACTIONS(5126), + [anon_sym_RBRACK] = ACTIONS(5126), + [anon_sym_const] = ACTIONS(5124), + [anon_sym_constexpr] = ACTIONS(5124), + [anon_sym_volatile] = ACTIONS(5124), + [anon_sym_restrict] = ACTIONS(5124), + [anon_sym___restrict__] = ACTIONS(5124), + [anon_sym__Atomic] = ACTIONS(5124), + [anon_sym__Noreturn] = ACTIONS(5124), + [anon_sym_noreturn] = ACTIONS(5124), + [anon_sym__Nonnull] = ACTIONS(5124), + [anon_sym_mutable] = ACTIONS(5124), + [anon_sym_constinit] = ACTIONS(5124), + [anon_sym_consteval] = ACTIONS(5124), + [anon_sym_alignas] = ACTIONS(5124), + [anon_sym__Alignas] = ACTIONS(5124), + [sym_primitive_type] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5126), + [anon_sym_LT_EQ_GT] = ACTIONS(5126), + [anon_sym_or] = ACTIONS(5124), + [anon_sym_and] = ACTIONS(5124), + [anon_sym_bitor] = ACTIONS(5124), + [anon_sym_xor] = ACTIONS(5124), + [anon_sym_bitand] = ACTIONS(5124), + [anon_sym_not_eq] = ACTIONS(5124), + [anon_sym_DASH_DASH] = ACTIONS(5126), + [anon_sym_PLUS_PLUS] = ACTIONS(5126), + [anon_sym_DOT] = ACTIONS(5124), + [anon_sym_DOT_STAR] = ACTIONS(5126), + [anon_sym_DASH_GT] = ACTIONS(5126), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5124), + [anon_sym_decltype] = ACTIONS(5124), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_requires] = ACTIONS(5124), + }, + [STATE(2440)] = { + [sym_field_declaration_list] = STATE(2474), + [sym_virtual_specifier] = STATE(7285), + [sym_base_class_clause] = STATE(8333), + [sym_identifier] = ACTIONS(5134), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5136), + [anon_sym_COMMA] = ACTIONS(5136), + [anon_sym_RPAREN] = ACTIONS(5136), + [anon_sym_LPAREN2] = ACTIONS(5136), + [anon_sym_DASH] = ACTIONS(5134), + [anon_sym_PLUS] = ACTIONS(5134), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_SLASH] = ACTIONS(5134), + [anon_sym_PERCENT] = ACTIONS(5136), + [anon_sym_PIPE_PIPE] = ACTIONS(5136), + [anon_sym_AMP_AMP] = ACTIONS(5136), + [anon_sym_PIPE] = ACTIONS(5134), + [anon_sym_CARET] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_EQ_EQ] = ACTIONS(5136), + [anon_sym_BANG_EQ] = ACTIONS(5136), + [anon_sym_GT] = ACTIONS(5134), + [anon_sym_GT_EQ] = ACTIONS(5136), + [anon_sym_LT_EQ] = ACTIONS(5134), + [anon_sym_LT] = ACTIONS(5134), + [anon_sym_LT_LT] = ACTIONS(5136), + [anon_sym_GT_GT] = ACTIONS(5136), + [anon_sym_SEMI] = ACTIONS(5136), + [anon_sym___extension__] = ACTIONS(5134), + [anon_sym___attribute__] = ACTIONS(5134), + [anon_sym___attribute] = ACTIONS(5134), + [anon_sym___based] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(6257), + [anon_sym_RBRACE] = ACTIONS(5136), + [anon_sym_signed] = ACTIONS(5134), + [anon_sym_unsigned] = ACTIONS(5134), + [anon_sym_long] = ACTIONS(5134), + [anon_sym_short] = ACTIONS(5134), + [anon_sym_LBRACK] = ACTIONS(5136), + [anon_sym_RBRACK] = ACTIONS(5136), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_constexpr] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_restrict] = ACTIONS(5134), + [anon_sym___restrict__] = ACTIONS(5134), + [anon_sym__Atomic] = ACTIONS(5134), + [anon_sym__Noreturn] = ACTIONS(5134), + [anon_sym_noreturn] = ACTIONS(5134), + [anon_sym__Nonnull] = ACTIONS(5134), + [anon_sym_mutable] = ACTIONS(5134), + [anon_sym_constinit] = ACTIONS(5134), + [anon_sym_consteval] = ACTIONS(5134), + [anon_sym_alignas] = ACTIONS(5134), + [anon_sym__Alignas] = ACTIONS(5134), + [sym_primitive_type] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5136), + [anon_sym_LT_EQ_GT] = ACTIONS(5136), + [anon_sym_or] = ACTIONS(5134), + [anon_sym_and] = ACTIONS(5134), + [anon_sym_bitor] = ACTIONS(5134), + [anon_sym_xor] = ACTIONS(5134), + [anon_sym_bitand] = ACTIONS(5134), + [anon_sym_not_eq] = ACTIONS(5134), + [anon_sym_DASH_DASH] = ACTIONS(5136), + [anon_sym_PLUS_PLUS] = ACTIONS(5136), + [anon_sym_DOT] = ACTIONS(5134), + [anon_sym_DOT_STAR] = ACTIONS(5136), + [anon_sym_DASH_GT] = ACTIONS(5136), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5134), + [anon_sym_decltype] = ACTIONS(5134), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_requires] = ACTIONS(5134), + }, + [STATE(2441)] = { + [sym_field_declaration_list] = STATE(2492), + [sym_virtual_specifier] = STATE(7367), + [sym_base_class_clause] = STATE(8308), + [sym_identifier] = ACTIONS(5120), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5122), + [anon_sym_COMMA] = ACTIONS(5122), + [anon_sym_RPAREN] = ACTIONS(5122), + [anon_sym_LPAREN2] = ACTIONS(5122), + [anon_sym_DASH] = ACTIONS(5120), + [anon_sym_PLUS] = ACTIONS(5120), + [anon_sym_STAR] = ACTIONS(5122), + [anon_sym_SLASH] = ACTIONS(5120), + [anon_sym_PERCENT] = ACTIONS(5122), + [anon_sym_PIPE_PIPE] = ACTIONS(5122), + [anon_sym_AMP_AMP] = ACTIONS(5122), + [anon_sym_PIPE] = ACTIONS(5120), + [anon_sym_CARET] = ACTIONS(5122), + [anon_sym_AMP] = ACTIONS(5120), + [anon_sym_EQ_EQ] = ACTIONS(5122), + [anon_sym_BANG_EQ] = ACTIONS(5122), + [anon_sym_GT] = ACTIONS(5120), + [anon_sym_GT_EQ] = ACTIONS(5122), + [anon_sym_LT_EQ] = ACTIONS(5120), + [anon_sym_LT] = ACTIONS(5120), + [anon_sym_LT_LT] = ACTIONS(5122), + [anon_sym_GT_GT] = ACTIONS(5122), + [anon_sym_SEMI] = ACTIONS(5122), + [anon_sym___extension__] = ACTIONS(5120), + [anon_sym___attribute__] = ACTIONS(5120), + [anon_sym___attribute] = ACTIONS(5120), + [anon_sym___based] = ACTIONS(5120), + [anon_sym_LBRACE] = ACTIONS(6257), + [anon_sym_RBRACE] = ACTIONS(5122), + [anon_sym_signed] = ACTIONS(5120), + [anon_sym_unsigned] = ACTIONS(5120), + [anon_sym_long] = ACTIONS(5120), + [anon_sym_short] = ACTIONS(5120), + [anon_sym_LBRACK] = ACTIONS(5122), + [anon_sym_RBRACK] = ACTIONS(5122), + [anon_sym_const] = ACTIONS(5120), + [anon_sym_constexpr] = ACTIONS(5120), + [anon_sym_volatile] = ACTIONS(5120), + [anon_sym_restrict] = ACTIONS(5120), + [anon_sym___restrict__] = ACTIONS(5120), + [anon_sym__Atomic] = ACTIONS(5120), + [anon_sym__Noreturn] = ACTIONS(5120), + [anon_sym_noreturn] = ACTIONS(5120), + [anon_sym__Nonnull] = ACTIONS(5120), + [anon_sym_mutable] = ACTIONS(5120), + [anon_sym_constinit] = ACTIONS(5120), + [anon_sym_consteval] = ACTIONS(5120), + [anon_sym_alignas] = ACTIONS(5120), + [anon_sym__Alignas] = ACTIONS(5120), + [sym_primitive_type] = ACTIONS(5120), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5122), + [anon_sym_LT_EQ_GT] = ACTIONS(5122), + [anon_sym_or] = ACTIONS(5120), + [anon_sym_and] = ACTIONS(5120), + [anon_sym_bitor] = ACTIONS(5120), + [anon_sym_xor] = ACTIONS(5120), + [anon_sym_bitand] = ACTIONS(5120), + [anon_sym_not_eq] = ACTIONS(5120), + [anon_sym_DASH_DASH] = ACTIONS(5122), + [anon_sym_PLUS_PLUS] = ACTIONS(5122), + [anon_sym_DOT] = ACTIONS(5120), + [anon_sym_DOT_STAR] = ACTIONS(5122), + [anon_sym_DASH_GT] = ACTIONS(5122), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5120), + [anon_sym_decltype] = ACTIONS(5120), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_requires] = ACTIONS(5120), + }, + [STATE(2442)] = { + [sym_field_declaration_list] = STATE(2495), + [sym_virtual_specifier] = STATE(7379), + [sym_base_class_clause] = STATE(8320), + [sym_identifier] = ACTIONS(5116), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5118), + [anon_sym_COMMA] = ACTIONS(5118), + [anon_sym_RPAREN] = ACTIONS(5118), + [anon_sym_LPAREN2] = ACTIONS(5118), + [anon_sym_DASH] = ACTIONS(5116), + [anon_sym_PLUS] = ACTIONS(5116), + [anon_sym_STAR] = ACTIONS(5118), + [anon_sym_SLASH] = ACTIONS(5116), + [anon_sym_PERCENT] = ACTIONS(5118), + [anon_sym_PIPE_PIPE] = ACTIONS(5118), + [anon_sym_AMP_AMP] = ACTIONS(5118), + [anon_sym_PIPE] = ACTIONS(5116), + [anon_sym_CARET] = ACTIONS(5118), + [anon_sym_AMP] = ACTIONS(5116), + [anon_sym_EQ_EQ] = ACTIONS(5118), + [anon_sym_BANG_EQ] = ACTIONS(5118), + [anon_sym_GT] = ACTIONS(5116), + [anon_sym_GT_EQ] = ACTIONS(5118), + [anon_sym_LT_EQ] = ACTIONS(5116), + [anon_sym_LT] = ACTIONS(5116), + [anon_sym_LT_LT] = ACTIONS(5118), + [anon_sym_GT_GT] = ACTIONS(5118), + [anon_sym_SEMI] = ACTIONS(5118), + [anon_sym___extension__] = ACTIONS(5116), + [anon_sym___attribute__] = ACTIONS(5116), + [anon_sym___attribute] = ACTIONS(5116), + [anon_sym___based] = ACTIONS(5116), + [anon_sym_LBRACE] = ACTIONS(6257), + [anon_sym_RBRACE] = ACTIONS(5118), + [anon_sym_signed] = ACTIONS(5116), + [anon_sym_unsigned] = ACTIONS(5116), + [anon_sym_long] = ACTIONS(5116), + [anon_sym_short] = ACTIONS(5116), + [anon_sym_LBRACK] = ACTIONS(5118), + [anon_sym_RBRACK] = ACTIONS(5118), + [anon_sym_const] = ACTIONS(5116), + [anon_sym_constexpr] = ACTIONS(5116), + [anon_sym_volatile] = ACTIONS(5116), + [anon_sym_restrict] = ACTIONS(5116), + [anon_sym___restrict__] = ACTIONS(5116), + [anon_sym__Atomic] = ACTIONS(5116), + [anon_sym__Noreturn] = ACTIONS(5116), + [anon_sym_noreturn] = ACTIONS(5116), + [anon_sym__Nonnull] = ACTIONS(5116), + [anon_sym_mutable] = ACTIONS(5116), + [anon_sym_constinit] = ACTIONS(5116), + [anon_sym_consteval] = ACTIONS(5116), + [anon_sym_alignas] = ACTIONS(5116), + [anon_sym__Alignas] = ACTIONS(5116), + [sym_primitive_type] = ACTIONS(5116), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5118), + [anon_sym_LT_EQ_GT] = ACTIONS(5118), + [anon_sym_or] = ACTIONS(5116), + [anon_sym_and] = ACTIONS(5116), + [anon_sym_bitor] = ACTIONS(5116), + [anon_sym_xor] = ACTIONS(5116), + [anon_sym_bitand] = ACTIONS(5116), + [anon_sym_not_eq] = ACTIONS(5116), + [anon_sym_DASH_DASH] = ACTIONS(5118), + [anon_sym_PLUS_PLUS] = ACTIONS(5118), + [anon_sym_DOT] = ACTIONS(5116), + [anon_sym_DOT_STAR] = ACTIONS(5118), + [anon_sym_DASH_GT] = ACTIONS(5118), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5116), + [anon_sym_decltype] = ACTIONS(5116), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_requires] = ACTIONS(5116), + }, + [STATE(2443)] = { + [sym_template_argument_list] = STATE(2444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3283), + [anon_sym_EQ_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3852), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3281), + [anon_sym___extension__] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_EQ] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_constexpr] = ACTIONS(3279), + [anon_sym_volatile] = ACTIONS(3279), + [anon_sym_restrict] = ACTIONS(3279), + [anon_sym___restrict__] = ACTIONS(3279), + [anon_sym__Atomic] = ACTIONS(3279), + [anon_sym__Noreturn] = ACTIONS(3279), + [anon_sym_noreturn] = ACTIONS(3279), + [anon_sym__Nonnull] = ACTIONS(3279), + [anon_sym_mutable] = ACTIONS(3279), + [anon_sym_constinit] = ACTIONS(3279), + [anon_sym_consteval] = ACTIONS(3279), + [anon_sym_alignas] = ACTIONS(3279), + [anon_sym__Alignas] = ACTIONS(3279), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_LT_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_GT_EQ] = ACTIONS(3274), + [anon_sym_AMP_EQ] = ACTIONS(3274), + [anon_sym_CARET_EQ] = ACTIONS(3274), + [anon_sym_PIPE_EQ] = ACTIONS(3274), + [anon_sym_and_eq] = ACTIONS(3274), + [anon_sym_or_eq] = ACTIONS(3274), + [anon_sym_xor_eq] = ACTIONS(3274), + [anon_sym_LT_EQ_GT] = ACTIONS(3274), + [anon_sym_or] = ACTIONS(3281), + [anon_sym_and] = ACTIONS(3281), + [anon_sym_bitor] = ACTIONS(3274), + [anon_sym_xor] = ACTIONS(3281), + [anon_sym_bitand] = ACTIONS(3274), + [anon_sym_not_eq] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_DOT_STAR] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3281), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3279), + [anon_sym_decltype] = ACTIONS(3279), + [anon_sym_DASH_GT_STAR] = ACTIONS(3274), + }, + [STATE(2444)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3291), + [anon_sym_COMMA] = ACTIONS(3291), + [anon_sym_RPAREN] = ACTIONS(3293), + [anon_sym_LPAREN2] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3291), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_CARET] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_EQ_EQ] = ACTIONS(3291), + [anon_sym_BANG_EQ] = ACTIONS(3291), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3291), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_LT_LT] = ACTIONS(3298), + [anon_sym_GT_GT] = ACTIONS(3298), + [anon_sym_SEMI] = ACTIONS(3291), + [anon_sym___extension__] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3291), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_constexpr] = ACTIONS(3296), + [anon_sym_volatile] = ACTIONS(3296), + [anon_sym_restrict] = ACTIONS(3296), + [anon_sym___restrict__] = ACTIONS(3296), + [anon_sym__Atomic] = ACTIONS(3296), + [anon_sym__Noreturn] = ACTIONS(3296), + [anon_sym_noreturn] = ACTIONS(3296), + [anon_sym__Nonnull] = ACTIONS(3296), + [anon_sym_mutable] = ACTIONS(3296), + [anon_sym_constinit] = ACTIONS(3296), + [anon_sym_consteval] = ACTIONS(3296), + [anon_sym_alignas] = ACTIONS(3296), + [anon_sym__Alignas] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3291), + [anon_sym_STAR_EQ] = ACTIONS(3291), + [anon_sym_SLASH_EQ] = ACTIONS(3291), + [anon_sym_PERCENT_EQ] = ACTIONS(3291), + [anon_sym_PLUS_EQ] = ACTIONS(3291), + [anon_sym_DASH_EQ] = ACTIONS(3291), + [anon_sym_LT_LT_EQ] = ACTIONS(3291), + [anon_sym_GT_GT_EQ] = ACTIONS(3291), + [anon_sym_AMP_EQ] = ACTIONS(3291), + [anon_sym_CARET_EQ] = ACTIONS(3291), + [anon_sym_PIPE_EQ] = ACTIONS(3291), + [anon_sym_and_eq] = ACTIONS(3291), + [anon_sym_or_eq] = ACTIONS(3291), + [anon_sym_xor_eq] = ACTIONS(3291), + [anon_sym_LT_EQ_GT] = ACTIONS(3291), + [anon_sym_or] = ACTIONS(3298), + [anon_sym_and] = ACTIONS(3298), + [anon_sym_bitor] = ACTIONS(3291), + [anon_sym_xor] = ACTIONS(3298), + [anon_sym_bitand] = ACTIONS(3291), + [anon_sym_not_eq] = ACTIONS(3291), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DOT] = ACTIONS(3298), + [anon_sym_DOT_STAR] = ACTIONS(3291), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3296), + [anon_sym_decltype] = ACTIONS(3296), + [anon_sym_DASH_GT_STAR] = ACTIONS(3291), + }, + [STATE(2445)] = { + [sym_identifier] = ACTIONS(6524), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6526), + [anon_sym_COMMA] = ACTIONS(6526), + [anon_sym_RPAREN] = ACTIONS(6526), + [aux_sym_preproc_if_token2] = ACTIONS(6526), + [aux_sym_preproc_else_token1] = ACTIONS(6526), + [aux_sym_preproc_elif_token1] = ACTIONS(6524), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6526), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6526), + [anon_sym_LPAREN2] = ACTIONS(6526), + [anon_sym_DASH] = ACTIONS(6524), + [anon_sym_PLUS] = ACTIONS(6524), + [anon_sym_STAR] = ACTIONS(6524), + [anon_sym_SLASH] = ACTIONS(6524), + [anon_sym_PERCENT] = ACTIONS(6524), + [anon_sym_PIPE_PIPE] = ACTIONS(6526), + [anon_sym_AMP_AMP] = ACTIONS(6526), + [anon_sym_PIPE] = ACTIONS(6524), + [anon_sym_CARET] = ACTIONS(6524), + [anon_sym_AMP] = ACTIONS(6524), + [anon_sym_EQ_EQ] = ACTIONS(6526), + [anon_sym_BANG_EQ] = ACTIONS(6526), + [anon_sym_GT] = ACTIONS(6524), + [anon_sym_GT_EQ] = ACTIONS(6526), + [anon_sym_LT_EQ] = ACTIONS(6524), + [anon_sym_LT] = ACTIONS(6524), + [anon_sym_LT_LT] = ACTIONS(6524), + [anon_sym_GT_GT] = ACTIONS(6524), + [anon_sym_SEMI] = ACTIONS(6526), + [anon_sym_RBRACE] = ACTIONS(6526), + [anon_sym_LBRACK] = ACTIONS(6526), + [anon_sym_RBRACK] = ACTIONS(6526), + [anon_sym_EQ] = ACTIONS(6524), + [anon_sym_COLON] = ACTIONS(6526), + [anon_sym_QMARK] = ACTIONS(6526), + [anon_sym_STAR_EQ] = ACTIONS(6526), + [anon_sym_SLASH_EQ] = ACTIONS(6526), + [anon_sym_PERCENT_EQ] = ACTIONS(6526), + [anon_sym_PLUS_EQ] = ACTIONS(6526), + [anon_sym_DASH_EQ] = ACTIONS(6526), + [anon_sym_LT_LT_EQ] = ACTIONS(6526), + [anon_sym_GT_GT_EQ] = ACTIONS(6526), + [anon_sym_AMP_EQ] = ACTIONS(6526), + [anon_sym_CARET_EQ] = ACTIONS(6526), + [anon_sym_PIPE_EQ] = ACTIONS(6526), + [anon_sym_and_eq] = ACTIONS(6524), + [anon_sym_or_eq] = ACTIONS(6524), + [anon_sym_xor_eq] = ACTIONS(6524), + [anon_sym_LT_EQ_GT] = ACTIONS(6526), + [anon_sym_or] = ACTIONS(6524), + [anon_sym_and] = ACTIONS(6524), + [anon_sym_bitor] = ACTIONS(6524), + [anon_sym_xor] = ACTIONS(6524), + [anon_sym_bitand] = ACTIONS(6524), + [anon_sym_not_eq] = ACTIONS(6524), + [anon_sym_DASH_DASH] = ACTIONS(6526), + [anon_sym_PLUS_PLUS] = ACTIONS(6526), + [anon_sym_DOT] = ACTIONS(6524), + [anon_sym_DOT_STAR] = ACTIONS(6526), + [anon_sym_DASH_GT] = ACTIONS(6526), + [anon_sym_L_DQUOTE] = ACTIONS(6526), + [anon_sym_u_DQUOTE] = ACTIONS(6526), + [anon_sym_U_DQUOTE] = ACTIONS(6526), + [anon_sym_u8_DQUOTE] = ACTIONS(6526), + [anon_sym_DQUOTE] = ACTIONS(6526), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6526), + [anon_sym_LR_DQUOTE] = ACTIONS(6526), + [anon_sym_uR_DQUOTE] = ACTIONS(6526), + [anon_sym_UR_DQUOTE] = ACTIONS(6526), + [anon_sym_u8R_DQUOTE] = ACTIONS(6526), + [sym_literal_suffix] = ACTIONS(6524), + }, + [STATE(2446)] = { + [sym_identifier] = ACTIONS(4735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4737), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4737), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_DASH] = ACTIONS(4735), + [anon_sym_PLUS] = ACTIONS(4735), + [anon_sym_STAR] = ACTIONS(4737), + [anon_sym_SLASH] = ACTIONS(4735), + [anon_sym_PERCENT] = ACTIONS(4737), + [anon_sym_PIPE_PIPE] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_PIPE] = ACTIONS(4735), + [anon_sym_CARET] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_EQ_EQ] = ACTIONS(4737), + [anon_sym_BANG_EQ] = ACTIONS(4737), + [anon_sym_GT] = ACTIONS(4735), + [anon_sym_GT_EQ] = ACTIONS(4737), + [anon_sym_LT_EQ] = ACTIONS(4735), + [anon_sym_LT] = ACTIONS(4735), + [anon_sym_LT_LT] = ACTIONS(4737), + [anon_sym_GT_GT] = ACTIONS(4737), + [anon_sym_SEMI] = ACTIONS(4737), + [anon_sym___extension__] = ACTIONS(4735), + [anon_sym___attribute__] = ACTIONS(4735), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym___based] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4737), + [anon_sym_RBRACE] = ACTIONS(4737), + [anon_sym_signed] = ACTIONS(4735), + [anon_sym_unsigned] = ACTIONS(4735), + [anon_sym_long] = ACTIONS(4735), + [anon_sym_short] = ACTIONS(4735), + [anon_sym_LBRACK] = ACTIONS(4737), + [anon_sym_RBRACK] = ACTIONS(4737), + [anon_sym_const] = ACTIONS(4735), + [anon_sym_constexpr] = ACTIONS(4735), + [anon_sym_volatile] = ACTIONS(4735), + [anon_sym_restrict] = ACTIONS(4735), + [anon_sym___restrict__] = ACTIONS(4735), + [anon_sym__Atomic] = ACTIONS(4735), + [anon_sym__Noreturn] = ACTIONS(4735), + [anon_sym_noreturn] = ACTIONS(4735), + [anon_sym__Nonnull] = ACTIONS(4735), + [anon_sym_mutable] = ACTIONS(4735), + [anon_sym_constinit] = ACTIONS(4735), + [anon_sym_consteval] = ACTIONS(4735), + [anon_sym_alignas] = ACTIONS(4735), + [anon_sym__Alignas] = ACTIONS(4735), + [sym_primitive_type] = ACTIONS(4735), + [anon_sym_COLON] = ACTIONS(4735), + [anon_sym_QMARK] = ACTIONS(4737), + [anon_sym_LT_EQ_GT] = ACTIONS(4737), + [anon_sym_or] = ACTIONS(4735), + [anon_sym_and] = ACTIONS(4735), + [anon_sym_bitor] = ACTIONS(4735), + [anon_sym_xor] = ACTIONS(4735), + [anon_sym_bitand] = ACTIONS(4735), + [anon_sym_not_eq] = ACTIONS(4735), + [anon_sym_DASH_DASH] = ACTIONS(4737), + [anon_sym_PLUS_PLUS] = ACTIONS(4737), + [anon_sym_DOT] = ACTIONS(4735), + [anon_sym_DOT_STAR] = ACTIONS(4737), + [anon_sym_DASH_GT] = ACTIONS(4737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4735), + [anon_sym_decltype] = ACTIONS(4735), + [anon_sym_final] = ACTIONS(4735), + [anon_sym_override] = ACTIONS(4735), + [anon_sym_requires] = ACTIONS(4735), + }, + [STATE(2447)] = { + [sym_identifier] = ACTIONS(3260), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3260), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE] = ACTIONS(3260), + [anon_sym_CARET] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3260), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_LT_LT] = ACTIONS(3262), + [anon_sym_GT_GT] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym___extension__] = ACTIONS(3260), + [anon_sym___attribute__] = ACTIONS(3260), + [anon_sym___attribute] = ACTIONS(3260), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym___based] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_signed] = ACTIONS(3260), + [anon_sym_unsigned] = ACTIONS(3260), + [anon_sym_long] = ACTIONS(3260), + [anon_sym_short] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_RBRACK] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_constexpr] = ACTIONS(3260), + [anon_sym_volatile] = ACTIONS(3260), + [anon_sym_restrict] = ACTIONS(3260), + [anon_sym___restrict__] = ACTIONS(3260), + [anon_sym__Atomic] = ACTIONS(3260), + [anon_sym__Noreturn] = ACTIONS(3260), + [anon_sym_noreturn] = ACTIONS(3260), + [anon_sym__Nonnull] = ACTIONS(3260), + [anon_sym_mutable] = ACTIONS(3260), + [anon_sym_constinit] = ACTIONS(3260), + [anon_sym_consteval] = ACTIONS(3260), + [anon_sym_alignas] = ACTIONS(3260), + [anon_sym__Alignas] = ACTIONS(3260), + [sym_primitive_type] = ACTIONS(3260), + [anon_sym_COLON] = ACTIONS(3260), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_LT_EQ_GT] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3260), + [anon_sym_and] = ACTIONS(3260), + [anon_sym_bitor] = ACTIONS(3260), + [anon_sym_xor] = ACTIONS(3260), + [anon_sym_bitand] = ACTIONS(3260), + [anon_sym_not_eq] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3260), + [anon_sym_DOT_STAR] = ACTIONS(3262), + [anon_sym_DASH_GT] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3260), + [anon_sym_decltype] = ACTIONS(3260), + [anon_sym_final] = ACTIONS(3260), + [anon_sym_override] = ACTIONS(3260), + [anon_sym_requires] = ACTIONS(3260), + }, + [STATE(2448)] = { + [sym_identifier] = ACTIONS(4541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4543), + [anon_sym_COMMA] = ACTIONS(4543), + [anon_sym_RPAREN] = ACTIONS(4543), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_PLUS] = ACTIONS(4541), + [anon_sym_STAR] = ACTIONS(4543), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_PIPE_PIPE] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4543), + [anon_sym_PIPE] = ACTIONS(4541), + [anon_sym_CARET] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4541), + [anon_sym_EQ_EQ] = ACTIONS(4543), + [anon_sym_BANG_EQ] = ACTIONS(4543), + [anon_sym_GT] = ACTIONS(4541), + [anon_sym_GT_EQ] = ACTIONS(4543), + [anon_sym_LT_EQ] = ACTIONS(4541), + [anon_sym_LT] = ACTIONS(4541), + [anon_sym_LT_LT] = ACTIONS(4543), + [anon_sym_GT_GT] = ACTIONS(4543), + [anon_sym_SEMI] = ACTIONS(4543), + [anon_sym___extension__] = ACTIONS(4541), + [anon_sym___attribute__] = ACTIONS(4541), + [anon_sym___attribute] = ACTIONS(4541), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym___based] = ACTIONS(4541), + [anon_sym_LBRACE] = ACTIONS(4543), + [anon_sym_RBRACE] = ACTIONS(4543), + [anon_sym_signed] = ACTIONS(4541), + [anon_sym_unsigned] = ACTIONS(4541), + [anon_sym_long] = ACTIONS(4541), + [anon_sym_short] = ACTIONS(4541), + [anon_sym_LBRACK] = ACTIONS(4543), + [anon_sym_RBRACK] = ACTIONS(4543), + [anon_sym_const] = ACTIONS(4541), + [anon_sym_constexpr] = ACTIONS(4541), + [anon_sym_volatile] = ACTIONS(4541), + [anon_sym_restrict] = ACTIONS(4541), + [anon_sym___restrict__] = ACTIONS(4541), + [anon_sym__Atomic] = ACTIONS(4541), + [anon_sym__Noreturn] = ACTIONS(4541), + [anon_sym_noreturn] = ACTIONS(4541), + [anon_sym__Nonnull] = ACTIONS(4541), + [anon_sym_mutable] = ACTIONS(4541), + [anon_sym_constinit] = ACTIONS(4541), + [anon_sym_consteval] = ACTIONS(4541), + [anon_sym_alignas] = ACTIONS(4541), + [anon_sym__Alignas] = ACTIONS(4541), + [sym_primitive_type] = ACTIONS(4541), + [anon_sym_COLON] = ACTIONS(4541), + [anon_sym_QMARK] = ACTIONS(4543), + [anon_sym_LT_EQ_GT] = ACTIONS(4543), + [anon_sym_or] = ACTIONS(4541), + [anon_sym_and] = ACTIONS(4541), + [anon_sym_bitor] = ACTIONS(4541), + [anon_sym_xor] = ACTIONS(4541), + [anon_sym_bitand] = ACTIONS(4541), + [anon_sym_not_eq] = ACTIONS(4541), + [anon_sym_DASH_DASH] = ACTIONS(4543), + [anon_sym_PLUS_PLUS] = ACTIONS(4543), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_DOT_STAR] = ACTIONS(4543), + [anon_sym_DASH_GT] = ACTIONS(4543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4541), + [anon_sym_decltype] = ACTIONS(4541), + [anon_sym_final] = ACTIONS(4541), + [anon_sym_override] = ACTIONS(4541), + [anon_sym_requires] = ACTIONS(4541), + }, + [STATE(2449)] = { + [sym_identifier] = ACTIONS(6528), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6530), + [anon_sym_COMMA] = ACTIONS(6530), + [anon_sym_RPAREN] = ACTIONS(6530), + [aux_sym_preproc_if_token2] = ACTIONS(6530), + [aux_sym_preproc_else_token1] = ACTIONS(6530), + [aux_sym_preproc_elif_token1] = ACTIONS(6528), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6530), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6530), + [anon_sym_LPAREN2] = ACTIONS(6530), + [anon_sym_DASH] = ACTIONS(6528), + [anon_sym_PLUS] = ACTIONS(6528), + [anon_sym_STAR] = ACTIONS(6528), + [anon_sym_SLASH] = ACTIONS(6528), + [anon_sym_PERCENT] = ACTIONS(6528), + [anon_sym_PIPE_PIPE] = ACTIONS(6530), + [anon_sym_AMP_AMP] = ACTIONS(6530), + [anon_sym_PIPE] = ACTIONS(6528), + [anon_sym_CARET] = ACTIONS(6528), + [anon_sym_AMP] = ACTIONS(6528), + [anon_sym_EQ_EQ] = ACTIONS(6530), + [anon_sym_BANG_EQ] = ACTIONS(6530), + [anon_sym_GT] = ACTIONS(6528), + [anon_sym_GT_EQ] = ACTIONS(6530), + [anon_sym_LT_EQ] = ACTIONS(6528), + [anon_sym_LT] = ACTIONS(6528), + [anon_sym_LT_LT] = ACTIONS(6528), + [anon_sym_GT_GT] = ACTIONS(6528), + [anon_sym_SEMI] = ACTIONS(6530), + [anon_sym_RBRACE] = ACTIONS(6530), + [anon_sym_LBRACK] = ACTIONS(6530), + [anon_sym_RBRACK] = ACTIONS(6530), + [anon_sym_EQ] = ACTIONS(6528), + [anon_sym_COLON] = ACTIONS(6530), + [anon_sym_QMARK] = ACTIONS(6530), + [anon_sym_STAR_EQ] = ACTIONS(6530), + [anon_sym_SLASH_EQ] = ACTIONS(6530), + [anon_sym_PERCENT_EQ] = ACTIONS(6530), + [anon_sym_PLUS_EQ] = ACTIONS(6530), + [anon_sym_DASH_EQ] = ACTIONS(6530), + [anon_sym_LT_LT_EQ] = ACTIONS(6530), + [anon_sym_GT_GT_EQ] = ACTIONS(6530), + [anon_sym_AMP_EQ] = ACTIONS(6530), + [anon_sym_CARET_EQ] = ACTIONS(6530), + [anon_sym_PIPE_EQ] = ACTIONS(6530), + [anon_sym_and_eq] = ACTIONS(6528), + [anon_sym_or_eq] = ACTIONS(6528), + [anon_sym_xor_eq] = ACTIONS(6528), + [anon_sym_LT_EQ_GT] = ACTIONS(6530), + [anon_sym_or] = ACTIONS(6528), + [anon_sym_and] = ACTIONS(6528), + [anon_sym_bitor] = ACTIONS(6528), + [anon_sym_xor] = ACTIONS(6528), + [anon_sym_bitand] = ACTIONS(6528), + [anon_sym_not_eq] = ACTIONS(6528), + [anon_sym_DASH_DASH] = ACTIONS(6530), + [anon_sym_PLUS_PLUS] = ACTIONS(6530), + [anon_sym_DOT] = ACTIONS(6528), + [anon_sym_DOT_STAR] = ACTIONS(6530), + [anon_sym_DASH_GT] = ACTIONS(6530), + [anon_sym_L_DQUOTE] = ACTIONS(6530), + [anon_sym_u_DQUOTE] = ACTIONS(6530), + [anon_sym_U_DQUOTE] = ACTIONS(6530), + [anon_sym_u8_DQUOTE] = ACTIONS(6530), + [anon_sym_DQUOTE] = ACTIONS(6530), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6530), + [anon_sym_LR_DQUOTE] = ACTIONS(6530), + [anon_sym_uR_DQUOTE] = ACTIONS(6530), + [anon_sym_UR_DQUOTE] = ACTIONS(6530), + [anon_sym_u8R_DQUOTE] = ACTIONS(6530), + [sym_literal_suffix] = ACTIONS(6528), + }, + [STATE(2450)] = { + [sym_attribute_specifier] = STATE(2683), + [sym_field_declaration_list] = STATE(2614), + [sym_virtual_specifier] = STATE(7349), + [sym_base_class_clause] = STATE(8368), + [sym_identifier] = ACTIONS(4986), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4988), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_RPAREN] = ACTIONS(4988), + [aux_sym_preproc_if_token2] = ACTIONS(4988), + [aux_sym_preproc_else_token1] = ACTIONS(4988), + [aux_sym_preproc_elif_token1] = ACTIONS(4986), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4988), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4988), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4986), + [anon_sym_STAR] = ACTIONS(4986), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_PERCENT] = ACTIONS(4986), + [anon_sym_PIPE_PIPE] = ACTIONS(4988), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4986), + [anon_sym_CARET] = ACTIONS(4986), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_EQ_EQ] = ACTIONS(4988), + [anon_sym_BANG_EQ] = ACTIONS(4988), + [anon_sym_GT] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4988), + [anon_sym_LT_EQ] = ACTIONS(4986), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_LT_LT] = ACTIONS(4986), + [anon_sym_GT_GT] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(4988), + [anon_sym___attribute__] = ACTIONS(6532), + [anon_sym___attribute] = ACTIONS(6532), + [anon_sym_LBRACE] = ACTIONS(6291), + [anon_sym_RBRACE] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4988), + [anon_sym_RBRACK] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4986), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(4988), + [anon_sym_STAR_EQ] = ACTIONS(4988), + [anon_sym_SLASH_EQ] = ACTIONS(4988), + [anon_sym_PERCENT_EQ] = ACTIONS(4988), + [anon_sym_PLUS_EQ] = ACTIONS(4988), + [anon_sym_DASH_EQ] = ACTIONS(4988), + [anon_sym_LT_LT_EQ] = ACTIONS(4988), + [anon_sym_GT_GT_EQ] = ACTIONS(4988), + [anon_sym_AMP_EQ] = ACTIONS(4988), + [anon_sym_CARET_EQ] = ACTIONS(4988), + [anon_sym_PIPE_EQ] = ACTIONS(4988), + [anon_sym_and_eq] = ACTIONS(4986), + [anon_sym_or_eq] = ACTIONS(4986), + [anon_sym_xor_eq] = ACTIONS(4986), + [anon_sym_LT_EQ_GT] = ACTIONS(4988), + [anon_sym_or] = ACTIONS(4986), + [anon_sym_and] = ACTIONS(4986), + [anon_sym_bitor] = ACTIONS(4986), + [anon_sym_xor] = ACTIONS(4986), + [anon_sym_bitand] = ACTIONS(4986), + [anon_sym_not_eq] = ACTIONS(4986), + [anon_sym_DASH_DASH] = ACTIONS(4988), + [anon_sym_PLUS_PLUS] = ACTIONS(4988), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_DOT_STAR] = ACTIONS(4988), + [anon_sym_DASH_GT] = ACTIONS(4988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4986), + [anon_sym_decltype] = ACTIONS(4986), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + }, + [STATE(2451)] = { + [sym_identifier] = ACTIONS(3252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LPAREN2] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3252), + [anon_sym_CARET] = ACTIONS(3254), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3254), + [anon_sym_GT] = ACTIONS(3252), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_LT_LT] = ACTIONS(3254), + [anon_sym_GT_GT] = ACTIONS(3254), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym___extension__] = ACTIONS(3252), + [anon_sym___attribute__] = ACTIONS(3252), + [anon_sym___attribute] = ACTIONS(3252), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym___based] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_signed] = ACTIONS(3252), + [anon_sym_unsigned] = ACTIONS(3252), + [anon_sym_long] = ACTIONS(3252), + [anon_sym_short] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_RBRACK] = ACTIONS(3254), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_constexpr] = ACTIONS(3252), + [anon_sym_volatile] = ACTIONS(3252), + [anon_sym_restrict] = ACTIONS(3252), + [anon_sym___restrict__] = ACTIONS(3252), + [anon_sym__Atomic] = ACTIONS(3252), + [anon_sym__Noreturn] = ACTIONS(3252), + [anon_sym_noreturn] = ACTIONS(3252), + [anon_sym__Nonnull] = ACTIONS(3252), + [anon_sym_mutable] = ACTIONS(3252), + [anon_sym_constinit] = ACTIONS(3252), + [anon_sym_consteval] = ACTIONS(3252), + [anon_sym_alignas] = ACTIONS(3252), + [anon_sym__Alignas] = ACTIONS(3252), + [sym_primitive_type] = ACTIONS(3252), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_LT_EQ_GT] = ACTIONS(3254), + [anon_sym_or] = ACTIONS(3252), + [anon_sym_and] = ACTIONS(3252), + [anon_sym_bitor] = ACTIONS(3252), + [anon_sym_xor] = ACTIONS(3252), + [anon_sym_bitand] = ACTIONS(3252), + [anon_sym_not_eq] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3252), + [anon_sym_DOT_STAR] = ACTIONS(3254), + [anon_sym_DASH_GT] = ACTIONS(3254), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3252), + [anon_sym_decltype] = ACTIONS(3252), + [anon_sym_final] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_requires] = ACTIONS(3252), + }, + [STATE(2452)] = { + [sym_decltype_auto] = STATE(2508), + [sym_identifier] = ACTIONS(4785), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4787), + [anon_sym_COMMA] = ACTIONS(4787), + [anon_sym_RPAREN] = ACTIONS(4787), + [anon_sym_LPAREN2] = ACTIONS(4787), + [anon_sym_DASH] = ACTIONS(4785), + [anon_sym_PLUS] = ACTIONS(4785), + [anon_sym_STAR] = ACTIONS(4787), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4787), + [anon_sym_PIPE_PIPE] = ACTIONS(4787), + [anon_sym_AMP_AMP] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4785), + [anon_sym_CARET] = ACTIONS(4787), + [anon_sym_AMP] = ACTIONS(4785), + [anon_sym_EQ_EQ] = ACTIONS(4787), + [anon_sym_BANG_EQ] = ACTIONS(4787), + [anon_sym_GT] = ACTIONS(4785), + [anon_sym_GT_EQ] = ACTIONS(4787), + [anon_sym_LT_EQ] = ACTIONS(4785), + [anon_sym_LT] = ACTIONS(4785), + [anon_sym_LT_LT] = ACTIONS(4787), + [anon_sym_GT_GT] = ACTIONS(4787), + [anon_sym_SEMI] = ACTIONS(4787), + [anon_sym___extension__] = ACTIONS(4785), + [anon_sym___attribute__] = ACTIONS(4785), + [anon_sym___attribute] = ACTIONS(4785), + [anon_sym___based] = ACTIONS(4785), + [anon_sym_LBRACE] = ACTIONS(4787), + [anon_sym_RBRACE] = ACTIONS(4787), + [anon_sym_signed] = ACTIONS(4785), + [anon_sym_unsigned] = ACTIONS(4785), + [anon_sym_long] = ACTIONS(4785), + [anon_sym_short] = ACTIONS(4785), + [anon_sym_LBRACK] = ACTIONS(4787), + [anon_sym_RBRACK] = ACTIONS(4787), + [anon_sym_const] = ACTIONS(4785), + [anon_sym_constexpr] = ACTIONS(4785), + [anon_sym_volatile] = ACTIONS(4785), + [anon_sym_restrict] = ACTIONS(4785), + [anon_sym___restrict__] = ACTIONS(4785), + [anon_sym__Atomic] = ACTIONS(4785), + [anon_sym__Noreturn] = ACTIONS(4785), + [anon_sym_noreturn] = ACTIONS(4785), + [anon_sym__Nonnull] = ACTIONS(4785), + [anon_sym_mutable] = ACTIONS(4785), + [anon_sym_constinit] = ACTIONS(4785), + [anon_sym_consteval] = ACTIONS(4785), + [anon_sym_alignas] = ACTIONS(4785), + [anon_sym__Alignas] = ACTIONS(4785), + [sym_primitive_type] = ACTIONS(4785), + [anon_sym_COLON] = ACTIONS(4787), + [anon_sym_QMARK] = ACTIONS(4787), + [anon_sym_LT_EQ_GT] = ACTIONS(4787), + [anon_sym_or] = ACTIONS(4785), + [anon_sym_and] = ACTIONS(4785), + [anon_sym_bitor] = ACTIONS(4785), + [anon_sym_xor] = ACTIONS(4785), + [anon_sym_bitand] = ACTIONS(4785), + [anon_sym_not_eq] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DOT] = ACTIONS(4785), + [anon_sym_DOT_STAR] = ACTIONS(4787), + [anon_sym_DASH_GT] = ACTIONS(4787), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6534), + [anon_sym_decltype] = ACTIONS(6536), + [anon_sym_final] = ACTIONS(4785), + [anon_sym_override] = ACTIONS(4785), + [anon_sym_requires] = ACTIONS(4785), + }, + [STATE(2453)] = { + [sym_identifier] = ACTIONS(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3250), + [anon_sym_COMMA] = ACTIONS(3250), + [anon_sym_RPAREN] = ACTIONS(3250), + [anon_sym_LPAREN2] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_PIPE_PIPE] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3248), + [anon_sym_CARET] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3250), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_LT_LT] = ACTIONS(3250), + [anon_sym_GT_GT] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym___extension__] = ACTIONS(3248), + [anon_sym___attribute__] = ACTIONS(3248), + [anon_sym___attribute] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(3250), + [anon_sym___based] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_signed] = ACTIONS(3248), + [anon_sym_unsigned] = ACTIONS(3248), + [anon_sym_long] = ACTIONS(3248), + [anon_sym_short] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3250), + [anon_sym_RBRACK] = ACTIONS(3250), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_constexpr] = ACTIONS(3248), + [anon_sym_volatile] = ACTIONS(3248), + [anon_sym_restrict] = ACTIONS(3248), + [anon_sym___restrict__] = ACTIONS(3248), + [anon_sym__Atomic] = ACTIONS(3248), + [anon_sym__Noreturn] = ACTIONS(3248), + [anon_sym_noreturn] = ACTIONS(3248), + [anon_sym__Nonnull] = ACTIONS(3248), + [anon_sym_mutable] = ACTIONS(3248), + [anon_sym_constinit] = ACTIONS(3248), + [anon_sym_consteval] = ACTIONS(3248), + [anon_sym_alignas] = ACTIONS(3248), + [anon_sym__Alignas] = ACTIONS(3248), + [sym_primitive_type] = ACTIONS(3248), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_QMARK] = ACTIONS(3250), + [anon_sym_LT_EQ_GT] = ACTIONS(3250), + [anon_sym_or] = ACTIONS(3248), + [anon_sym_and] = ACTIONS(3248), + [anon_sym_bitor] = ACTIONS(3248), + [anon_sym_xor] = ACTIONS(3248), + [anon_sym_bitand] = ACTIONS(3248), + [anon_sym_not_eq] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DOT] = ACTIONS(3248), + [anon_sym_DOT_STAR] = ACTIONS(3250), + [anon_sym_DASH_GT] = ACTIONS(3250), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3248), + [anon_sym_decltype] = ACTIONS(3248), + [anon_sym_final] = ACTIONS(3248), + [anon_sym_override] = ACTIONS(3248), + [anon_sym_requires] = ACTIONS(3248), + }, + [STATE(2454)] = { + [sym_identifier] = ACTIONS(5672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5674), + [anon_sym_COMMA] = ACTIONS(5674), + [anon_sym_RPAREN] = ACTIONS(5674), + [aux_sym_preproc_if_token2] = ACTIONS(5674), + [aux_sym_preproc_else_token1] = ACTIONS(5674), + [aux_sym_preproc_elif_token1] = ACTIONS(5672), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5674), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5674), + [anon_sym_LPAREN2] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5672), + [anon_sym_STAR] = ACTIONS(5672), + [anon_sym_SLASH] = ACTIONS(5672), + [anon_sym_PERCENT] = ACTIONS(5672), + [anon_sym_PIPE_PIPE] = ACTIONS(5674), + [anon_sym_AMP_AMP] = ACTIONS(5674), + [anon_sym_PIPE] = ACTIONS(5672), + [anon_sym_CARET] = ACTIONS(5672), + [anon_sym_AMP] = ACTIONS(5672), + [anon_sym_EQ_EQ] = ACTIONS(5674), + [anon_sym_BANG_EQ] = ACTIONS(5674), + [anon_sym_GT] = ACTIONS(5672), + [anon_sym_GT_EQ] = ACTIONS(5674), + [anon_sym_LT_EQ] = ACTIONS(5672), + [anon_sym_LT] = ACTIONS(5672), + [anon_sym_LT_LT] = ACTIONS(5672), + [anon_sym_GT_GT] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [anon_sym_RBRACE] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [anon_sym_RBRACK] = ACTIONS(5674), + [anon_sym_EQ] = ACTIONS(5672), + [anon_sym_COLON] = ACTIONS(5674), + [anon_sym_QMARK] = ACTIONS(5674), + [anon_sym_STAR_EQ] = ACTIONS(5674), + [anon_sym_SLASH_EQ] = ACTIONS(5674), + [anon_sym_PERCENT_EQ] = ACTIONS(5674), + [anon_sym_PLUS_EQ] = ACTIONS(5674), + [anon_sym_DASH_EQ] = ACTIONS(5674), + [anon_sym_LT_LT_EQ] = ACTIONS(5674), + [anon_sym_GT_GT_EQ] = ACTIONS(5674), + [anon_sym_AMP_EQ] = ACTIONS(5674), + [anon_sym_CARET_EQ] = ACTIONS(5674), + [anon_sym_PIPE_EQ] = ACTIONS(5674), + [anon_sym_and_eq] = ACTIONS(5672), + [anon_sym_or_eq] = ACTIONS(5672), + [anon_sym_xor_eq] = ACTIONS(5672), + [anon_sym_LT_EQ_GT] = ACTIONS(5674), + [anon_sym_or] = ACTIONS(5672), + [anon_sym_and] = ACTIONS(5672), + [anon_sym_bitor] = ACTIONS(5672), + [anon_sym_xor] = ACTIONS(5672), + [anon_sym_bitand] = ACTIONS(5672), + [anon_sym_not_eq] = ACTIONS(5672), + [anon_sym_DASH_DASH] = ACTIONS(5674), + [anon_sym_PLUS_PLUS] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_DOT_STAR] = ACTIONS(5674), + [anon_sym_DASH_GT] = ACTIONS(5674), + [anon_sym_L_DQUOTE] = ACTIONS(5674), + [anon_sym_u_DQUOTE] = ACTIONS(5674), + [anon_sym_U_DQUOTE] = ACTIONS(5674), + [anon_sym_u8_DQUOTE] = ACTIONS(5674), + [anon_sym_DQUOTE] = ACTIONS(5674), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5674), + [anon_sym_LR_DQUOTE] = ACTIONS(5674), + [anon_sym_uR_DQUOTE] = ACTIONS(5674), + [anon_sym_UR_DQUOTE] = ACTIONS(5674), + [anon_sym_u8R_DQUOTE] = ACTIONS(5674), + [sym_literal_suffix] = ACTIONS(5672), + }, + [STATE(2455)] = { + [sym_template_argument_list] = STATE(2467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3283), + [anon_sym_EQ_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(6538), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3281), + [anon_sym___extension__] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_constexpr] = ACTIONS(3279), + [anon_sym_volatile] = ACTIONS(3279), + [anon_sym_restrict] = ACTIONS(3279), + [anon_sym___restrict__] = ACTIONS(3279), + [anon_sym__Atomic] = ACTIONS(3279), + [anon_sym__Noreturn] = ACTIONS(3279), + [anon_sym_noreturn] = ACTIONS(3279), + [anon_sym__Nonnull] = ACTIONS(3279), + [anon_sym_mutable] = ACTIONS(3279), + [anon_sym_constinit] = ACTIONS(3279), + [anon_sym_consteval] = ACTIONS(3279), + [anon_sym_alignas] = ACTIONS(3279), + [anon_sym__Alignas] = ACTIONS(3279), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_LT_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_GT_EQ] = ACTIONS(3274), + [anon_sym_AMP_EQ] = ACTIONS(3274), + [anon_sym_CARET_EQ] = ACTIONS(3274), + [anon_sym_PIPE_EQ] = ACTIONS(3274), + [anon_sym_and_eq] = ACTIONS(3274), + [anon_sym_or_eq] = ACTIONS(3274), + [anon_sym_xor_eq] = ACTIONS(3274), + [anon_sym_LT_EQ_GT] = ACTIONS(3274), + [anon_sym_or] = ACTIONS(3281), + [anon_sym_and] = ACTIONS(3281), + [anon_sym_bitor] = ACTIONS(3274), + [anon_sym_xor] = ACTIONS(3281), + [anon_sym_bitand] = ACTIONS(3274), + [anon_sym_not_eq] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_DOT_STAR] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3281), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3279), + [anon_sym_decltype] = ACTIONS(3279), + [anon_sym_DASH_GT_STAR] = ACTIONS(3274), + }, + [STATE(2456)] = { + [sym_identifier] = ACTIONS(3244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3246), + [anon_sym_COMMA] = ACTIONS(3246), + [anon_sym_RPAREN] = ACTIONS(3246), + [anon_sym_LPAREN2] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_SLASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3246), + [anon_sym_PIPE_PIPE] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3244), + [anon_sym_CARET] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3244), + [anon_sym_EQ_EQ] = ACTIONS(3246), + [anon_sym_BANG_EQ] = ACTIONS(3246), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_GT_EQ] = ACTIONS(3246), + [anon_sym_LT_EQ] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_LT_LT] = ACTIONS(3246), + [anon_sym_GT_GT] = ACTIONS(3246), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym___extension__] = ACTIONS(3244), + [anon_sym___attribute__] = ACTIONS(3244), + [anon_sym___attribute] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3246), + [anon_sym___based] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3246), + [anon_sym_RBRACK] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_constexpr] = ACTIONS(3244), + [anon_sym_volatile] = ACTIONS(3244), + [anon_sym_restrict] = ACTIONS(3244), + [anon_sym___restrict__] = ACTIONS(3244), + [anon_sym__Atomic] = ACTIONS(3244), + [anon_sym__Noreturn] = ACTIONS(3244), + [anon_sym_noreturn] = ACTIONS(3244), + [anon_sym__Nonnull] = ACTIONS(3244), + [anon_sym_mutable] = ACTIONS(3244), + [anon_sym_constinit] = ACTIONS(3244), + [anon_sym_consteval] = ACTIONS(3244), + [anon_sym_alignas] = ACTIONS(3244), + [anon_sym__Alignas] = ACTIONS(3244), + [sym_primitive_type] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_LT_EQ_GT] = ACTIONS(3246), + [anon_sym_or] = ACTIONS(3244), + [anon_sym_and] = ACTIONS(3244), + [anon_sym_bitor] = ACTIONS(3244), + [anon_sym_xor] = ACTIONS(3244), + [anon_sym_bitand] = ACTIONS(3244), + [anon_sym_not_eq] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_DOT_STAR] = ACTIONS(3246), + [anon_sym_DASH_GT] = ACTIONS(3246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3244), + [anon_sym_decltype] = ACTIONS(3244), + [anon_sym_final] = ACTIONS(3244), + [anon_sym_override] = ACTIONS(3244), + [anon_sym_requires] = ACTIONS(3244), + }, + [STATE(2457)] = { + [sym_identifier] = ACTIONS(5676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5678), + [anon_sym_COMMA] = ACTIONS(5678), + [anon_sym_RPAREN] = ACTIONS(5678), + [aux_sym_preproc_if_token2] = ACTIONS(5678), + [aux_sym_preproc_else_token1] = ACTIONS(5678), + [aux_sym_preproc_elif_token1] = ACTIONS(5676), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5678), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5678), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_DASH] = ACTIONS(5676), + [anon_sym_PLUS] = ACTIONS(5676), + [anon_sym_STAR] = ACTIONS(5676), + [anon_sym_SLASH] = ACTIONS(5676), + [anon_sym_PERCENT] = ACTIONS(5676), + [anon_sym_PIPE_PIPE] = ACTIONS(5678), + [anon_sym_AMP_AMP] = ACTIONS(5678), + [anon_sym_PIPE] = ACTIONS(5676), + [anon_sym_CARET] = ACTIONS(5676), + [anon_sym_AMP] = ACTIONS(5676), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_GT] = ACTIONS(5676), + [anon_sym_GT_EQ] = ACTIONS(5678), + [anon_sym_LT_EQ] = ACTIONS(5676), + [anon_sym_LT] = ACTIONS(5676), + [anon_sym_LT_LT] = ACTIONS(5676), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_SEMI] = ACTIONS(5678), + [anon_sym_RBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_RBRACK] = ACTIONS(5678), + [anon_sym_EQ] = ACTIONS(5676), + [anon_sym_COLON] = ACTIONS(5678), + [anon_sym_QMARK] = ACTIONS(5678), + [anon_sym_STAR_EQ] = ACTIONS(5678), + [anon_sym_SLASH_EQ] = ACTIONS(5678), + [anon_sym_PERCENT_EQ] = ACTIONS(5678), + [anon_sym_PLUS_EQ] = ACTIONS(5678), + [anon_sym_DASH_EQ] = ACTIONS(5678), + [anon_sym_LT_LT_EQ] = ACTIONS(5678), + [anon_sym_GT_GT_EQ] = ACTIONS(5678), + [anon_sym_AMP_EQ] = ACTIONS(5678), + [anon_sym_CARET_EQ] = ACTIONS(5678), + [anon_sym_PIPE_EQ] = ACTIONS(5678), + [anon_sym_and_eq] = ACTIONS(5676), + [anon_sym_or_eq] = ACTIONS(5676), + [anon_sym_xor_eq] = ACTIONS(5676), + [anon_sym_LT_EQ_GT] = ACTIONS(5678), + [anon_sym_or] = ACTIONS(5676), + [anon_sym_and] = ACTIONS(5676), + [anon_sym_bitor] = ACTIONS(5676), + [anon_sym_xor] = ACTIONS(5676), + [anon_sym_bitand] = ACTIONS(5676), + [anon_sym_not_eq] = ACTIONS(5676), + [anon_sym_DASH_DASH] = ACTIONS(5678), + [anon_sym_PLUS_PLUS] = ACTIONS(5678), + [anon_sym_DOT] = ACTIONS(5676), + [anon_sym_DOT_STAR] = ACTIONS(5678), + [anon_sym_DASH_GT] = ACTIONS(5678), + [anon_sym_L_DQUOTE] = ACTIONS(5678), + [anon_sym_u_DQUOTE] = ACTIONS(5678), + [anon_sym_U_DQUOTE] = ACTIONS(5678), + [anon_sym_u8_DQUOTE] = ACTIONS(5678), + [anon_sym_DQUOTE] = ACTIONS(5678), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5678), + [anon_sym_LR_DQUOTE] = ACTIONS(5678), + [anon_sym_uR_DQUOTE] = ACTIONS(5678), + [anon_sym_UR_DQUOTE] = ACTIONS(5678), + [anon_sym_u8R_DQUOTE] = ACTIONS(5678), + [sym_literal_suffix] = ACTIONS(5676), + }, + [STATE(2458)] = { + [sym_identifier] = ACTIONS(6541), + [anon_sym_LPAREN2] = ACTIONS(6543), + [anon_sym_BANG] = ACTIONS(6543), + [anon_sym_TILDE] = ACTIONS(6543), + [anon_sym_DASH] = ACTIONS(6541), + [anon_sym_PLUS] = ACTIONS(6541), + [anon_sym_STAR] = ACTIONS(6543), + [anon_sym_AMP] = ACTIONS(6543), + [anon_sym___extension__] = ACTIONS(6541), + [anon_sym_COLON_COLON] = ACTIONS(6543), + [anon_sym_LBRACK] = ACTIONS(6543), + [sym_primitive_type] = ACTIONS(6541), + [anon_sym_not] = ACTIONS(6541), + [anon_sym_compl] = ACTIONS(6541), + [anon_sym_DASH_DASH] = ACTIONS(6543), + [anon_sym_PLUS_PLUS] = ACTIONS(6543), + [anon_sym_sizeof] = ACTIONS(6541), + [anon_sym___alignof__] = ACTIONS(6541), + [anon_sym___alignof] = ACTIONS(6541), + [anon_sym__alignof] = ACTIONS(6541), + [anon_sym_alignof] = ACTIONS(6541), + [anon_sym__Alignof] = ACTIONS(6541), + [anon_sym_offsetof] = ACTIONS(6541), + [anon_sym__Generic] = ACTIONS(6541), + [anon_sym_asm] = ACTIONS(6541), + [anon_sym___asm__] = ACTIONS(6541), + [anon_sym___asm] = ACTIONS(6541), + [sym_number_literal] = ACTIONS(6543), + [anon_sym_L_SQUOTE] = ACTIONS(6543), + [anon_sym_u_SQUOTE] = ACTIONS(6543), + [anon_sym_U_SQUOTE] = ACTIONS(6543), + [anon_sym_u8_SQUOTE] = ACTIONS(6543), + [anon_sym_SQUOTE] = ACTIONS(6543), + [anon_sym_L_DQUOTE] = ACTIONS(6543), + [anon_sym_u_DQUOTE] = ACTIONS(6543), + [anon_sym_U_DQUOTE] = ACTIONS(6543), + [anon_sym_u8_DQUOTE] = ACTIONS(6543), + [anon_sym_DQUOTE] = ACTIONS(6543), + [sym_true] = ACTIONS(6541), + [sym_false] = ACTIONS(6541), + [anon_sym_NULL] = ACTIONS(6541), + [anon_sym_nullptr] = ACTIONS(6541), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6541), + [anon_sym_template] = ACTIONS(6541), + [anon_sym_delete] = ACTIONS(6541), + [anon_sym_R_DQUOTE] = ACTIONS(6543), + [anon_sym_LR_DQUOTE] = ACTIONS(6543), + [anon_sym_uR_DQUOTE] = ACTIONS(6543), + [anon_sym_UR_DQUOTE] = ACTIONS(6543), + [anon_sym_u8R_DQUOTE] = ACTIONS(6543), + [anon_sym_co_await] = ACTIONS(6541), + [anon_sym_new] = ACTIONS(6541), + [anon_sym_requires] = ACTIONS(6541), + [sym_this] = ACTIONS(6541), + [anon_sym_CACHE_TRY_INSPECT] = ACTIONS(6541), + [anon_sym_CACHE_TRY_UNWRAP] = ACTIONS(6541), + [anon_sym_FORWARD] = ACTIONS(6541), + [anon_sym_FORWARD_SET_ATTRIBUTE] = ACTIONS(6541), + [anon_sym_IDB_TRY_INSPECT] = ACTIONS(6541), + [anon_sym_IDB_TRY_UNWRAP] = ACTIONS(6541), + [anon_sym_LS_TRY_INSPECT] = ACTIONS(6541), + [anon_sym_LS_TRY_UNWRAP] = ACTIONS(6541), + [anon_sym_SDB_TRY_INSPECT] = ACTIONS(6541), + [anon_sym_SDB_TRY_UNWRAP] = ACTIONS(6541), + [anon_sym_PS_GET] = ACTIONS(6541), + [anon_sym_PS_GET_AND_SET] = ACTIONS(6541), + [anon_sym_PS_GET_LOCKLESS] = ACTIONS(6541), + [anon_sym_QM_TRY_INSPECT] = ACTIONS(6541), + [anon_sym_QM_NOTEONLY_TRY_UNWRAP] = ACTIONS(6541), + [anon_sym_QM_TRY_UNWRAP] = ACTIONS(6541), + [anon_sym_QM_WARNONLY_TRY_UNWRAP] = ACTIONS(6541), + }, + [STATE(2459)] = { + [sym_identifier] = ACTIONS(4754), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4756), + [anon_sym_COMMA] = ACTIONS(4756), + [anon_sym_RPAREN] = ACTIONS(4756), + [anon_sym_LPAREN2] = ACTIONS(4756), + [anon_sym_DASH] = ACTIONS(4754), + [anon_sym_PLUS] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4756), + [anon_sym_SLASH] = ACTIONS(4754), + [anon_sym_PERCENT] = ACTIONS(4756), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_AMP_AMP] = ACTIONS(4756), + [anon_sym_PIPE] = ACTIONS(4754), + [anon_sym_CARET] = ACTIONS(4756), + [anon_sym_AMP] = ACTIONS(4754), + [anon_sym_EQ_EQ] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4756), + [anon_sym_GT] = ACTIONS(4754), + [anon_sym_GT_EQ] = ACTIONS(4756), + [anon_sym_LT_EQ] = ACTIONS(4754), + [anon_sym_LT] = ACTIONS(4754), + [anon_sym_LT_LT] = ACTIONS(4756), + [anon_sym_GT_GT] = ACTIONS(4756), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym___extension__] = ACTIONS(4754), + [anon_sym___attribute__] = ACTIONS(4754), + [anon_sym___attribute] = ACTIONS(4754), + [anon_sym_COLON_COLON] = ACTIONS(4756), + [anon_sym___based] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4756), + [anon_sym_RBRACE] = ACTIONS(4756), + [anon_sym_signed] = ACTIONS(4754), + [anon_sym_unsigned] = ACTIONS(4754), + [anon_sym_long] = ACTIONS(4754), + [anon_sym_short] = ACTIONS(4754), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_RBRACK] = ACTIONS(4756), + [anon_sym_const] = ACTIONS(4754), + [anon_sym_constexpr] = ACTIONS(4754), + [anon_sym_volatile] = ACTIONS(4754), + [anon_sym_restrict] = ACTIONS(4754), + [anon_sym___restrict__] = ACTIONS(4754), + [anon_sym__Atomic] = ACTIONS(4754), + [anon_sym__Noreturn] = ACTIONS(4754), + [anon_sym_noreturn] = ACTIONS(4754), + [anon_sym__Nonnull] = ACTIONS(4754), + [anon_sym_mutable] = ACTIONS(4754), + [anon_sym_constinit] = ACTIONS(4754), + [anon_sym_consteval] = ACTIONS(4754), + [anon_sym_alignas] = ACTIONS(4754), + [anon_sym__Alignas] = ACTIONS(4754), + [sym_primitive_type] = ACTIONS(4754), + [anon_sym_COLON] = ACTIONS(4754), + [anon_sym_QMARK] = ACTIONS(4756), + [anon_sym_LT_EQ_GT] = ACTIONS(4756), + [anon_sym_or] = ACTIONS(4754), + [anon_sym_and] = ACTIONS(4754), + [anon_sym_bitor] = ACTIONS(4754), + [anon_sym_xor] = ACTIONS(4754), + [anon_sym_bitand] = ACTIONS(4754), + [anon_sym_not_eq] = ACTIONS(4754), + [anon_sym_DASH_DASH] = ACTIONS(4756), + [anon_sym_PLUS_PLUS] = ACTIONS(4756), + [anon_sym_DOT] = ACTIONS(4754), + [anon_sym_DOT_STAR] = ACTIONS(4756), + [anon_sym_DASH_GT] = ACTIONS(4756), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4754), + [anon_sym_decltype] = ACTIONS(4754), + [anon_sym_final] = ACTIONS(4754), + [anon_sym_override] = ACTIONS(4754), + [anon_sym_requires] = ACTIONS(4754), + }, + [STATE(2460)] = { + [sym_identifier] = ACTIONS(3256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3258), + [anon_sym_COMMA] = ACTIONS(3258), + [anon_sym_RPAREN] = ACTIONS(3258), + [anon_sym_LPAREN2] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3258), + [anon_sym_SLASH] = ACTIONS(3256), + [anon_sym_PERCENT] = ACTIONS(3258), + [anon_sym_PIPE_PIPE] = ACTIONS(3258), + [anon_sym_AMP_AMP] = ACTIONS(3258), + [anon_sym_PIPE] = ACTIONS(3256), + [anon_sym_CARET] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym_EQ_EQ] = ACTIONS(3258), + [anon_sym_BANG_EQ] = ACTIONS(3258), + [anon_sym_GT] = ACTIONS(3256), + [anon_sym_GT_EQ] = ACTIONS(3258), + [anon_sym_LT_EQ] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3256), + [anon_sym_LT_LT] = ACTIONS(3258), + [anon_sym_GT_GT] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym___extension__] = ACTIONS(3256), + [anon_sym___attribute__] = ACTIONS(3256), + [anon_sym___attribute] = ACTIONS(3256), + [anon_sym_COLON_COLON] = ACTIONS(3258), + [anon_sym___based] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_signed] = ACTIONS(3256), + [anon_sym_unsigned] = ACTIONS(3256), + [anon_sym_long] = ACTIONS(3256), + [anon_sym_short] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(3258), + [anon_sym_RBRACK] = ACTIONS(3258), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_constexpr] = ACTIONS(3256), + [anon_sym_volatile] = ACTIONS(3256), + [anon_sym_restrict] = ACTIONS(3256), + [anon_sym___restrict__] = ACTIONS(3256), + [anon_sym__Atomic] = ACTIONS(3256), + [anon_sym__Noreturn] = ACTIONS(3256), + [anon_sym_noreturn] = ACTIONS(3256), + [anon_sym__Nonnull] = ACTIONS(3256), + [anon_sym_mutable] = ACTIONS(3256), + [anon_sym_constinit] = ACTIONS(3256), + [anon_sym_consteval] = ACTIONS(3256), + [anon_sym_alignas] = ACTIONS(3256), + [anon_sym__Alignas] = ACTIONS(3256), + [sym_primitive_type] = ACTIONS(3256), + [anon_sym_COLON] = ACTIONS(3256), + [anon_sym_QMARK] = ACTIONS(3258), + [anon_sym_LT_EQ_GT] = ACTIONS(3258), + [anon_sym_or] = ACTIONS(3256), + [anon_sym_and] = ACTIONS(3256), + [anon_sym_bitor] = ACTIONS(3256), + [anon_sym_xor] = ACTIONS(3256), + [anon_sym_bitand] = ACTIONS(3256), + [anon_sym_not_eq] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DOT] = ACTIONS(3256), + [anon_sym_DOT_STAR] = ACTIONS(3258), + [anon_sym_DASH_GT] = ACTIONS(3258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3256), + [anon_sym_decltype] = ACTIONS(3256), + [anon_sym_final] = ACTIONS(3256), + [anon_sym_override] = ACTIONS(3256), + [anon_sym_requires] = ACTIONS(3256), + }, + [STATE(2461)] = { + [sym_identifier] = ACTIONS(4535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(4537), + [anon_sym_RPAREN] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_DASH] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4537), + [anon_sym_SLASH] = ACTIONS(4535), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_PIPE_PIPE] = ACTIONS(4537), + [anon_sym_AMP_AMP] = ACTIONS(4537), + [anon_sym_PIPE] = ACTIONS(4535), + [anon_sym_CARET] = ACTIONS(4537), + [anon_sym_AMP] = ACTIONS(4535), + [anon_sym_EQ_EQ] = ACTIONS(4537), + [anon_sym_BANG_EQ] = ACTIONS(4537), + [anon_sym_GT] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4537), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym_LT_LT] = ACTIONS(4537), + [anon_sym_GT_GT] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(4537), + [anon_sym___extension__] = ACTIONS(4535), + [anon_sym___attribute__] = ACTIONS(4535), + [anon_sym___attribute] = ACTIONS(4535), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym___based] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4537), + [anon_sym_RBRACE] = ACTIONS(4537), + [anon_sym_signed] = ACTIONS(4535), + [anon_sym_unsigned] = ACTIONS(4535), + [anon_sym_long] = ACTIONS(4535), + [anon_sym_short] = ACTIONS(4535), + [anon_sym_LBRACK] = ACTIONS(4537), + [anon_sym_RBRACK] = ACTIONS(4537), + [anon_sym_const] = ACTIONS(4535), + [anon_sym_constexpr] = ACTIONS(4535), + [anon_sym_volatile] = ACTIONS(4535), + [anon_sym_restrict] = ACTIONS(4535), + [anon_sym___restrict__] = ACTIONS(4535), + [anon_sym__Atomic] = ACTIONS(4535), + [anon_sym__Noreturn] = ACTIONS(4535), + [anon_sym_noreturn] = ACTIONS(4535), + [anon_sym__Nonnull] = ACTIONS(4535), + [anon_sym_mutable] = ACTIONS(4535), + [anon_sym_constinit] = ACTIONS(4535), + [anon_sym_consteval] = ACTIONS(4535), + [anon_sym_alignas] = ACTIONS(4535), + [anon_sym__Alignas] = ACTIONS(4535), + [sym_primitive_type] = ACTIONS(4535), + [anon_sym_COLON] = ACTIONS(4535), + [anon_sym_QMARK] = ACTIONS(4537), + [anon_sym_LT_EQ_GT] = ACTIONS(4537), + [anon_sym_or] = ACTIONS(4535), + [anon_sym_and] = ACTIONS(4535), + [anon_sym_bitor] = ACTIONS(4535), + [anon_sym_xor] = ACTIONS(4535), + [anon_sym_bitand] = ACTIONS(4535), + [anon_sym_not_eq] = ACTIONS(4535), + [anon_sym_DASH_DASH] = ACTIONS(4537), + [anon_sym_PLUS_PLUS] = ACTIONS(4537), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_DOT_STAR] = ACTIONS(4537), + [anon_sym_DASH_GT] = ACTIONS(4537), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4535), + [anon_sym_decltype] = ACTIONS(4535), + [anon_sym_final] = ACTIONS(4535), + [anon_sym_override] = ACTIONS(4535), + [anon_sym_requires] = ACTIONS(4535), + }, + [STATE(2462)] = { + [sym_identifier] = ACTIONS(3264), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_CARET] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3264), + [anon_sym_EQ_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3266), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_LT_LT] = ACTIONS(3266), + [anon_sym_GT_GT] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym___extension__] = ACTIONS(3264), + [anon_sym___attribute__] = ACTIONS(3264), + [anon_sym___attribute] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym___based] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_signed] = ACTIONS(3264), + [anon_sym_unsigned] = ACTIONS(3264), + [anon_sym_long] = ACTIONS(3264), + [anon_sym_short] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_RBRACK] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3264), + [anon_sym_constexpr] = ACTIONS(3264), + [anon_sym_volatile] = ACTIONS(3264), + [anon_sym_restrict] = ACTIONS(3264), + [anon_sym___restrict__] = ACTIONS(3264), + [anon_sym__Atomic] = ACTIONS(3264), + [anon_sym__Noreturn] = ACTIONS(3264), + [anon_sym_noreturn] = ACTIONS(3264), + [anon_sym__Nonnull] = ACTIONS(3264), + [anon_sym_mutable] = ACTIONS(3264), + [anon_sym_constinit] = ACTIONS(3264), + [anon_sym_consteval] = ACTIONS(3264), + [anon_sym_alignas] = ACTIONS(3264), + [anon_sym__Alignas] = ACTIONS(3264), + [sym_primitive_type] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3264), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_LT_EQ_GT] = ACTIONS(3266), + [anon_sym_or] = ACTIONS(3264), + [anon_sym_and] = ACTIONS(3264), + [anon_sym_bitor] = ACTIONS(3264), + [anon_sym_xor] = ACTIONS(3264), + [anon_sym_bitand] = ACTIONS(3264), + [anon_sym_not_eq] = ACTIONS(3264), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_DOT_STAR] = ACTIONS(3266), + [anon_sym_DASH_GT] = ACTIONS(3266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3264), + [anon_sym_final] = ACTIONS(3264), + [anon_sym_override] = ACTIONS(3264), + [anon_sym_requires] = ACTIONS(3264), + }, + [STATE(2463)] = { + [sym_identifier] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4533), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4533), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_CARET] = ACTIONS(4533), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4533), + [anon_sym_BANG_EQ] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4531), + [anon_sym_LT_LT] = ACTIONS(4533), + [anon_sym_GT_GT] = ACTIONS(4533), + [anon_sym_SEMI] = ACTIONS(4533), + [anon_sym___extension__] = ACTIONS(4531), + [anon_sym___attribute__] = ACTIONS(4531), + [anon_sym___attribute] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym___based] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_signed] = ACTIONS(4531), + [anon_sym_unsigned] = ACTIONS(4531), + [anon_sym_long] = ACTIONS(4531), + [anon_sym_short] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_RBRACK] = ACTIONS(4533), + [anon_sym_const] = ACTIONS(4531), + [anon_sym_constexpr] = ACTIONS(4531), + [anon_sym_volatile] = ACTIONS(4531), + [anon_sym_restrict] = ACTIONS(4531), + [anon_sym___restrict__] = ACTIONS(4531), + [anon_sym__Atomic] = ACTIONS(4531), + [anon_sym__Noreturn] = ACTIONS(4531), + [anon_sym_noreturn] = ACTIONS(4531), + [anon_sym__Nonnull] = ACTIONS(4531), + [anon_sym_mutable] = ACTIONS(4531), + [anon_sym_constinit] = ACTIONS(4531), + [anon_sym_consteval] = ACTIONS(4531), + [anon_sym_alignas] = ACTIONS(4531), + [anon_sym__Alignas] = ACTIONS(4531), + [sym_primitive_type] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4533), + [anon_sym_LT_EQ_GT] = ACTIONS(4533), + [anon_sym_or] = ACTIONS(4531), + [anon_sym_and] = ACTIONS(4531), + [anon_sym_bitor] = ACTIONS(4531), + [anon_sym_xor] = ACTIONS(4531), + [anon_sym_bitand] = ACTIONS(4531), + [anon_sym_not_eq] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_PLUS_PLUS] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_DOT_STAR] = ACTIONS(4533), + [anon_sym_DASH_GT] = ACTIONS(4533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4531), + [anon_sym_decltype] = ACTIONS(4531), + [anon_sym_final] = ACTIONS(4531), + [anon_sym_override] = ACTIONS(4531), + [anon_sym_requires] = ACTIONS(4531), + }, + [STATE(2464)] = { + [sym_identifier] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4533), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4533), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_CARET] = ACTIONS(4533), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4533), + [anon_sym_BANG_EQ] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4531), + [anon_sym_LT_LT] = ACTIONS(4533), + [anon_sym_GT_GT] = ACTIONS(4533), + [anon_sym_SEMI] = ACTIONS(4533), + [anon_sym___extension__] = ACTIONS(4531), + [anon_sym___attribute__] = ACTIONS(4531), + [anon_sym___attribute] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym___based] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_signed] = ACTIONS(4531), + [anon_sym_unsigned] = ACTIONS(4531), + [anon_sym_long] = ACTIONS(4531), + [anon_sym_short] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_RBRACK] = ACTIONS(4533), + [anon_sym_const] = ACTIONS(4531), + [anon_sym_constexpr] = ACTIONS(4531), + [anon_sym_volatile] = ACTIONS(4531), + [anon_sym_restrict] = ACTIONS(4531), + [anon_sym___restrict__] = ACTIONS(4531), + [anon_sym__Atomic] = ACTIONS(4531), + [anon_sym__Noreturn] = ACTIONS(4531), + [anon_sym_noreturn] = ACTIONS(4531), + [anon_sym__Nonnull] = ACTIONS(4531), + [anon_sym_mutable] = ACTIONS(4531), + [anon_sym_constinit] = ACTIONS(4531), + [anon_sym_consteval] = ACTIONS(4531), + [anon_sym_alignas] = ACTIONS(4531), + [anon_sym__Alignas] = ACTIONS(4531), + [sym_primitive_type] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4533), + [anon_sym_LT_EQ_GT] = ACTIONS(4533), + [anon_sym_or] = ACTIONS(4531), + [anon_sym_and] = ACTIONS(4531), + [anon_sym_bitor] = ACTIONS(4531), + [anon_sym_xor] = ACTIONS(4531), + [anon_sym_bitand] = ACTIONS(4531), + [anon_sym_not_eq] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_PLUS_PLUS] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_DOT_STAR] = ACTIONS(4533), + [anon_sym_DASH_GT] = ACTIONS(4533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4531), + [anon_sym_decltype] = ACTIONS(4531), + [anon_sym_final] = ACTIONS(4531), + [anon_sym_override] = ACTIONS(4531), + [anon_sym_requires] = ACTIONS(4531), + }, + [STATE(2465)] = { + [sym_identifier] = ACTIONS(3268), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3270), + [anon_sym_COMMA] = ACTIONS(3270), + [anon_sym_RPAREN] = ACTIONS(3270), + [anon_sym_LPAREN2] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_PIPE_PIPE] = ACTIONS(3270), + [anon_sym_AMP_AMP] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3268), + [anon_sym_CARET] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3268), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_GT_EQ] = ACTIONS(3270), + [anon_sym_LT_EQ] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_LT_LT] = ACTIONS(3270), + [anon_sym_GT_GT] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym___extension__] = ACTIONS(3268), + [anon_sym___attribute__] = ACTIONS(3268), + [anon_sym___attribute] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3270), + [anon_sym___based] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_RBRACE] = ACTIONS(3270), + [anon_sym_signed] = ACTIONS(3268), + [anon_sym_unsigned] = ACTIONS(3268), + [anon_sym_long] = ACTIONS(3268), + [anon_sym_short] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_RBRACK] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_constexpr] = ACTIONS(3268), + [anon_sym_volatile] = ACTIONS(3268), + [anon_sym_restrict] = ACTIONS(3268), + [anon_sym___restrict__] = ACTIONS(3268), + [anon_sym__Atomic] = ACTIONS(3268), + [anon_sym__Noreturn] = ACTIONS(3268), + [anon_sym_noreturn] = ACTIONS(3268), + [anon_sym__Nonnull] = ACTIONS(3268), + [anon_sym_mutable] = ACTIONS(3268), + [anon_sym_constinit] = ACTIONS(3268), + [anon_sym_consteval] = ACTIONS(3268), + [anon_sym_alignas] = ACTIONS(3268), + [anon_sym__Alignas] = ACTIONS(3268), + [sym_primitive_type] = ACTIONS(3268), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_QMARK] = ACTIONS(3270), + [anon_sym_LT_EQ_GT] = ACTIONS(3270), + [anon_sym_or] = ACTIONS(3268), + [anon_sym_and] = ACTIONS(3268), + [anon_sym_bitor] = ACTIONS(3268), + [anon_sym_xor] = ACTIONS(3268), + [anon_sym_bitand] = ACTIONS(3268), + [anon_sym_not_eq] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_DOT_STAR] = ACTIONS(3270), + [anon_sym_DASH_GT] = ACTIONS(3270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3268), + [anon_sym_decltype] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_requires] = ACTIONS(3268), + }, + [STATE(2466)] = { + [sym_identifier] = ACTIONS(4946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_RPAREN] = ACTIONS(4948), + [anon_sym_LPAREN2] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_PLUS] = ACTIONS(4946), + [anon_sym_STAR] = ACTIONS(4948), + [anon_sym_SLASH] = ACTIONS(4946), + [anon_sym_PERCENT] = ACTIONS(4948), + [anon_sym_PIPE_PIPE] = ACTIONS(4948), + [anon_sym_AMP_AMP] = ACTIONS(4948), + [anon_sym_PIPE] = ACTIONS(4946), + [anon_sym_CARET] = ACTIONS(4948), + [anon_sym_AMP] = ACTIONS(4946), + [anon_sym_EQ_EQ] = ACTIONS(4948), + [anon_sym_BANG_EQ] = ACTIONS(4948), + [anon_sym_GT] = ACTIONS(4946), + [anon_sym_GT_EQ] = ACTIONS(4948), + [anon_sym_LT_EQ] = ACTIONS(4946), + [anon_sym_LT] = ACTIONS(4946), + [anon_sym_LT_LT] = ACTIONS(4948), + [anon_sym_GT_GT] = ACTIONS(4948), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym___extension__] = ACTIONS(4946), + [anon_sym___attribute__] = ACTIONS(4946), + [anon_sym___attribute] = ACTIONS(4946), + [anon_sym___based] = ACTIONS(4946), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_RBRACE] = ACTIONS(4948), + [anon_sym_signed] = ACTIONS(4946), + [anon_sym_unsigned] = ACTIONS(4946), + [anon_sym_long] = ACTIONS(4946), + [anon_sym_short] = ACTIONS(4946), + [anon_sym_LBRACK] = ACTIONS(4948), + [anon_sym_RBRACK] = ACTIONS(4948), + [anon_sym_const] = ACTIONS(4946), + [anon_sym_constexpr] = ACTIONS(4946), + [anon_sym_volatile] = ACTIONS(4946), + [anon_sym_restrict] = ACTIONS(4946), + [anon_sym___restrict__] = ACTIONS(4946), + [anon_sym__Atomic] = ACTIONS(4946), + [anon_sym__Noreturn] = ACTIONS(4946), + [anon_sym_noreturn] = ACTIONS(4946), + [anon_sym__Nonnull] = ACTIONS(4946), + [anon_sym_mutable] = ACTIONS(4946), + [anon_sym_constinit] = ACTIONS(4946), + [anon_sym_consteval] = ACTIONS(4946), + [anon_sym_alignas] = ACTIONS(4946), + [anon_sym__Alignas] = ACTIONS(4946), + [sym_primitive_type] = ACTIONS(4946), + [anon_sym_COLON] = ACTIONS(4948), + [anon_sym_QMARK] = ACTIONS(4948), + [anon_sym_LT_EQ_GT] = ACTIONS(4948), + [anon_sym_or] = ACTIONS(4946), + [anon_sym_and] = ACTIONS(4946), + [anon_sym_bitor] = ACTIONS(4946), + [anon_sym_xor] = ACTIONS(4946), + [anon_sym_bitand] = ACTIONS(4946), + [anon_sym_not_eq] = ACTIONS(4946), + [anon_sym_DASH_DASH] = ACTIONS(4948), + [anon_sym_PLUS_PLUS] = ACTIONS(4948), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_DOT_STAR] = ACTIONS(4948), + [anon_sym_DASH_GT] = ACTIONS(4948), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4946), + [anon_sym_decltype] = ACTIONS(4946), + [anon_sym_final] = ACTIONS(4946), + [anon_sym_override] = ACTIONS(4946), + [anon_sym_requires] = ACTIONS(4946), + }, + [STATE(2467)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3291), + [anon_sym_COMMA] = ACTIONS(3291), + [anon_sym_RPAREN] = ACTIONS(3293), + [anon_sym_LPAREN2] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3291), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_CARET] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_EQ_EQ] = ACTIONS(3291), + [anon_sym_BANG_EQ] = ACTIONS(3291), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3291), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_LT_LT] = ACTIONS(3298), + [anon_sym_GT_GT] = ACTIONS(3298), + [anon_sym___extension__] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_constexpr] = ACTIONS(3296), + [anon_sym_volatile] = ACTIONS(3296), + [anon_sym_restrict] = ACTIONS(3296), + [anon_sym___restrict__] = ACTIONS(3296), + [anon_sym__Atomic] = ACTIONS(3296), + [anon_sym__Noreturn] = ACTIONS(3296), + [anon_sym_noreturn] = ACTIONS(3296), + [anon_sym__Nonnull] = ACTIONS(3296), + [anon_sym_mutable] = ACTIONS(3296), + [anon_sym_constinit] = ACTIONS(3296), + [anon_sym_consteval] = ACTIONS(3296), + [anon_sym_alignas] = ACTIONS(3296), + [anon_sym__Alignas] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3291), + [anon_sym_STAR_EQ] = ACTIONS(3291), + [anon_sym_SLASH_EQ] = ACTIONS(3291), + [anon_sym_PERCENT_EQ] = ACTIONS(3291), + [anon_sym_PLUS_EQ] = ACTIONS(3291), + [anon_sym_DASH_EQ] = ACTIONS(3291), + [anon_sym_LT_LT_EQ] = ACTIONS(3291), + [anon_sym_GT_GT_EQ] = ACTIONS(3291), + [anon_sym_AMP_EQ] = ACTIONS(3291), + [anon_sym_CARET_EQ] = ACTIONS(3291), + [anon_sym_PIPE_EQ] = ACTIONS(3291), + [anon_sym_and_eq] = ACTIONS(3291), + [anon_sym_or_eq] = ACTIONS(3291), + [anon_sym_xor_eq] = ACTIONS(3291), + [anon_sym_LT_EQ_GT] = ACTIONS(3291), + [anon_sym_or] = ACTIONS(3298), + [anon_sym_and] = ACTIONS(3298), + [anon_sym_bitor] = ACTIONS(3291), + [anon_sym_xor] = ACTIONS(3298), + [anon_sym_bitand] = ACTIONS(3291), + [anon_sym_not_eq] = ACTIONS(3291), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DOT] = ACTIONS(3298), + [anon_sym_DOT_STAR] = ACTIONS(3291), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3296), + [anon_sym_decltype] = ACTIONS(3296), + [anon_sym_DASH_GT_STAR] = ACTIONS(3291), + }, + [STATE(2468)] = { + [sym_type_qualifier] = STATE(2390), + [sym_alignas_qualifier] = STATE(2434), + [aux_sym__type_definition_type_repeat1] = STATE(2390), + [aux_sym_sized_type_specifier_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(6545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_RPAREN] = ACTIONS(4674), + [anon_sym_LPAREN2] = ACTIONS(4674), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_PLUS] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4674), + [anon_sym_SLASH] = ACTIONS(4676), + [anon_sym_PERCENT] = ACTIONS(4674), + [anon_sym_PIPE_PIPE] = ACTIONS(4674), + [anon_sym_AMP_AMP] = ACTIONS(4674), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4674), + [anon_sym_AMP] = ACTIONS(4676), + [anon_sym_EQ_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4674), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4674), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_LT_LT] = ACTIONS(4674), + [anon_sym_GT_GT] = ACTIONS(4674), + [anon_sym_SEMI] = ACTIONS(4674), + [anon_sym___extension__] = ACTIONS(6547), + [anon_sym___attribute__] = ACTIONS(4676), + [anon_sym___attribute] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(4674), + [anon_sym_signed] = ACTIONS(6549), + [anon_sym_unsigned] = ACTIONS(6549), + [anon_sym_long] = ACTIONS(6549), + [anon_sym_short] = ACTIONS(6549), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_RBRACK] = ACTIONS(4674), + [anon_sym_const] = ACTIONS(6547), + [anon_sym_constexpr] = ACTIONS(6547), + [anon_sym_volatile] = ACTIONS(6547), + [anon_sym_restrict] = ACTIONS(6547), + [anon_sym___restrict__] = ACTIONS(6547), + [anon_sym__Atomic] = ACTIONS(6547), + [anon_sym__Noreturn] = ACTIONS(6547), + [anon_sym_noreturn] = ACTIONS(6547), + [anon_sym__Nonnull] = ACTIONS(6547), + [anon_sym_mutable] = ACTIONS(6547), + [anon_sym_constinit] = ACTIONS(6547), + [anon_sym_consteval] = ACTIONS(6547), + [anon_sym_alignas] = ACTIONS(6551), + [anon_sym__Alignas] = ACTIONS(6551), + [sym_primitive_type] = ACTIONS(6553), + [anon_sym_COLON] = ACTIONS(4674), + [anon_sym_QMARK] = ACTIONS(4674), + [anon_sym_LT_EQ_GT] = ACTIONS(4674), + [anon_sym_or] = ACTIONS(4676), + [anon_sym_and] = ACTIONS(4676), + [anon_sym_bitor] = ACTIONS(4676), + [anon_sym_xor] = ACTIONS(4676), + [anon_sym_bitand] = ACTIONS(4676), + [anon_sym_not_eq] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4674), + [anon_sym_PLUS_PLUS] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_DOT_STAR] = ACTIONS(4674), + [anon_sym_DASH_GT] = ACTIONS(4674), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4676), + [anon_sym_decltype] = ACTIONS(4676), + }, + [STATE(2469)] = { + [sym_identifier] = ACTIONS(4974), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_RPAREN] = ACTIONS(4976), + [anon_sym_LPAREN2] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_PLUS] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4974), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_PIPE_PIPE] = ACTIONS(4976), + [anon_sym_AMP_AMP] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4974), + [anon_sym_CARET] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(4974), + [anon_sym_EQ_EQ] = ACTIONS(4976), + [anon_sym_BANG_EQ] = ACTIONS(4976), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_GT_EQ] = ACTIONS(4976), + [anon_sym_LT_EQ] = ACTIONS(4974), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_LT_LT] = ACTIONS(4976), + [anon_sym_GT_GT] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym___extension__] = ACTIONS(4974), + [anon_sym___attribute__] = ACTIONS(4974), + [anon_sym___attribute] = ACTIONS(4974), + [anon_sym___based] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_RBRACE] = ACTIONS(4976), + [anon_sym_signed] = ACTIONS(4974), + [anon_sym_unsigned] = ACTIONS(4974), + [anon_sym_long] = ACTIONS(4974), + [anon_sym_short] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_RBRACK] = ACTIONS(4976), + [anon_sym_const] = ACTIONS(4974), + [anon_sym_constexpr] = ACTIONS(4974), + [anon_sym_volatile] = ACTIONS(4974), + [anon_sym_restrict] = ACTIONS(4974), + [anon_sym___restrict__] = ACTIONS(4974), + [anon_sym__Atomic] = ACTIONS(4974), + [anon_sym__Noreturn] = ACTIONS(4974), + [anon_sym_noreturn] = ACTIONS(4974), + [anon_sym__Nonnull] = ACTIONS(4974), + [anon_sym_mutable] = ACTIONS(4974), + [anon_sym_constinit] = ACTIONS(4974), + [anon_sym_consteval] = ACTIONS(4974), + [anon_sym_alignas] = ACTIONS(4974), + [anon_sym__Alignas] = ACTIONS(4974), + [sym_primitive_type] = ACTIONS(4974), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4976), + [anon_sym_LT_EQ_GT] = ACTIONS(4976), + [anon_sym_or] = ACTIONS(4974), + [anon_sym_and] = ACTIONS(4974), + [anon_sym_bitor] = ACTIONS(4974), + [anon_sym_xor] = ACTIONS(4974), + [anon_sym_bitand] = ACTIONS(4974), + [anon_sym_not_eq] = ACTIONS(4974), + [anon_sym_DASH_DASH] = ACTIONS(4976), + [anon_sym_PLUS_PLUS] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_DOT_STAR] = ACTIONS(4976), + [anon_sym_DASH_GT] = ACTIONS(4976), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4974), + [anon_sym_decltype] = ACTIONS(4974), + [anon_sym_final] = ACTIONS(4974), + [anon_sym_override] = ACTIONS(4974), + [anon_sym_requires] = ACTIONS(4974), + }, + [STATE(2470)] = { + [sym_identifier] = ACTIONS(5054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_RPAREN] = ACTIONS(5056), + [anon_sym_LPAREN2] = ACTIONS(5056), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_PLUS] = ACTIONS(5054), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5054), + [anon_sym_PERCENT] = ACTIONS(5056), + [anon_sym_PIPE_PIPE] = ACTIONS(5056), + [anon_sym_AMP_AMP] = ACTIONS(5056), + [anon_sym_PIPE] = ACTIONS(5054), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5054), + [anon_sym_EQ_EQ] = ACTIONS(5056), + [anon_sym_BANG_EQ] = ACTIONS(5056), + [anon_sym_GT] = ACTIONS(5054), + [anon_sym_GT_EQ] = ACTIONS(5056), + [anon_sym_LT_EQ] = ACTIONS(5054), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_LT_LT] = ACTIONS(5056), + [anon_sym_GT_GT] = ACTIONS(5056), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym___extension__] = ACTIONS(5054), + [anon_sym___attribute__] = ACTIONS(5054), + [anon_sym___attribute] = ACTIONS(5054), + [anon_sym___based] = ACTIONS(5054), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_RBRACE] = ACTIONS(5056), + [anon_sym_signed] = ACTIONS(5054), + [anon_sym_unsigned] = ACTIONS(5054), + [anon_sym_long] = ACTIONS(5054), + [anon_sym_short] = ACTIONS(5054), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_RBRACK] = ACTIONS(5056), + [anon_sym_const] = ACTIONS(5054), + [anon_sym_constexpr] = ACTIONS(5054), + [anon_sym_volatile] = ACTIONS(5054), + [anon_sym_restrict] = ACTIONS(5054), + [anon_sym___restrict__] = ACTIONS(5054), + [anon_sym__Atomic] = ACTIONS(5054), + [anon_sym__Noreturn] = ACTIONS(5054), + [anon_sym_noreturn] = ACTIONS(5054), + [anon_sym__Nonnull] = ACTIONS(5054), + [anon_sym_mutable] = ACTIONS(5054), + [anon_sym_constinit] = ACTIONS(5054), + [anon_sym_consteval] = ACTIONS(5054), + [anon_sym_alignas] = ACTIONS(5054), + [anon_sym__Alignas] = ACTIONS(5054), + [sym_primitive_type] = ACTIONS(5054), + [anon_sym_COLON] = ACTIONS(5056), + [anon_sym_QMARK] = ACTIONS(5056), + [anon_sym_LT_EQ_GT] = ACTIONS(5056), + [anon_sym_or] = ACTIONS(5054), + [anon_sym_and] = ACTIONS(5054), + [anon_sym_bitor] = ACTIONS(5054), + [anon_sym_xor] = ACTIONS(5054), + [anon_sym_bitand] = ACTIONS(5054), + [anon_sym_not_eq] = ACTIONS(5054), + [anon_sym_DASH_DASH] = ACTIONS(5056), + [anon_sym_PLUS_PLUS] = ACTIONS(5056), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_DOT_STAR] = ACTIONS(5056), + [anon_sym_DASH_GT] = ACTIONS(5056), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5054), + [anon_sym_decltype] = ACTIONS(5054), + [anon_sym_final] = ACTIONS(5054), + [anon_sym_override] = ACTIONS(5054), + [anon_sym_requires] = ACTIONS(5054), + }, + [STATE(2471)] = { + [sym_identifier] = ACTIONS(4910), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_RPAREN] = ACTIONS(4912), + [anon_sym_LPAREN2] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_PLUS] = ACTIONS(4910), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_SLASH] = ACTIONS(4910), + [anon_sym_PERCENT] = ACTIONS(4912), + [anon_sym_PIPE_PIPE] = ACTIONS(4912), + [anon_sym_AMP_AMP] = ACTIONS(4912), + [anon_sym_PIPE] = ACTIONS(4910), + [anon_sym_CARET] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_EQ_EQ] = ACTIONS(4912), + [anon_sym_BANG_EQ] = ACTIONS(4912), + [anon_sym_GT] = ACTIONS(4910), + [anon_sym_GT_EQ] = ACTIONS(4912), + [anon_sym_LT_EQ] = ACTIONS(4910), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_LT_LT] = ACTIONS(4912), + [anon_sym_GT_GT] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym___attribute__] = ACTIONS(4910), + [anon_sym___attribute] = ACTIONS(4910), + [anon_sym___based] = ACTIONS(4910), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_RBRACE] = ACTIONS(4912), + [anon_sym_signed] = ACTIONS(4910), + [anon_sym_unsigned] = ACTIONS(4910), + [anon_sym_long] = ACTIONS(4910), + [anon_sym_short] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(4912), + [anon_sym_RBRACK] = ACTIONS(4912), + [anon_sym_const] = ACTIONS(4910), + [anon_sym_constexpr] = ACTIONS(4910), + [anon_sym_volatile] = ACTIONS(4910), + [anon_sym_restrict] = ACTIONS(4910), + [anon_sym___restrict__] = ACTIONS(4910), + [anon_sym__Atomic] = ACTIONS(4910), + [anon_sym__Noreturn] = ACTIONS(4910), + [anon_sym_noreturn] = ACTIONS(4910), + [anon_sym__Nonnull] = ACTIONS(4910), + [anon_sym_mutable] = ACTIONS(4910), + [anon_sym_constinit] = ACTIONS(4910), + [anon_sym_consteval] = ACTIONS(4910), + [anon_sym_alignas] = ACTIONS(4910), + [anon_sym__Alignas] = ACTIONS(4910), + [sym_primitive_type] = ACTIONS(4910), + [anon_sym_COLON] = ACTIONS(4912), + [anon_sym_QMARK] = ACTIONS(4912), + [anon_sym_LT_EQ_GT] = ACTIONS(4912), + [anon_sym_or] = ACTIONS(4910), + [anon_sym_and] = ACTIONS(4910), + [anon_sym_bitor] = ACTIONS(4910), + [anon_sym_xor] = ACTIONS(4910), + [anon_sym_bitand] = ACTIONS(4910), + [anon_sym_not_eq] = ACTIONS(4910), + [anon_sym_DASH_DASH] = ACTIONS(4912), + [anon_sym_PLUS_PLUS] = ACTIONS(4912), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_DOT_STAR] = ACTIONS(4912), + [anon_sym_DASH_GT] = ACTIONS(4912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4910), + [anon_sym_decltype] = ACTIONS(4910), + [anon_sym_final] = ACTIONS(4910), + [anon_sym_override] = ACTIONS(4910), + [anon_sym_requires] = ACTIONS(4910), + }, + [STATE(2472)] = { + [sym_identifier] = ACTIONS(4801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4803), + [anon_sym_COMMA] = ACTIONS(4803), + [anon_sym_RPAREN] = ACTIONS(4803), + [anon_sym_LPAREN2] = ACTIONS(4803), + [anon_sym_DASH] = ACTIONS(4801), + [anon_sym_PLUS] = ACTIONS(4801), + [anon_sym_STAR] = ACTIONS(4803), + [anon_sym_SLASH] = ACTIONS(4801), + [anon_sym_PERCENT] = ACTIONS(4803), + [anon_sym_PIPE_PIPE] = ACTIONS(4803), + [anon_sym_AMP_AMP] = ACTIONS(4803), + [anon_sym_PIPE] = ACTIONS(4801), + [anon_sym_CARET] = ACTIONS(4803), + [anon_sym_AMP] = ACTIONS(4801), + [anon_sym_EQ_EQ] = ACTIONS(4803), + [anon_sym_BANG_EQ] = ACTIONS(4803), + [anon_sym_GT] = ACTIONS(4801), + [anon_sym_GT_EQ] = ACTIONS(4803), + [anon_sym_LT_EQ] = ACTIONS(4801), + [anon_sym_LT] = ACTIONS(4801), + [anon_sym_LT_LT] = ACTIONS(4803), + [anon_sym_GT_GT] = ACTIONS(4803), + [anon_sym_SEMI] = ACTIONS(4803), + [anon_sym___extension__] = ACTIONS(4801), + [anon_sym___attribute__] = ACTIONS(4801), + [anon_sym___attribute] = ACTIONS(4801), + [anon_sym___based] = ACTIONS(4801), + [anon_sym_LBRACE] = ACTIONS(4803), + [anon_sym_RBRACE] = ACTIONS(4803), + [anon_sym_signed] = ACTIONS(4801), + [anon_sym_unsigned] = ACTIONS(4801), + [anon_sym_long] = ACTIONS(4801), + [anon_sym_short] = ACTIONS(4801), + [anon_sym_LBRACK] = ACTIONS(4803), + [anon_sym_RBRACK] = ACTIONS(4803), + [anon_sym_const] = ACTIONS(4801), + [anon_sym_constexpr] = ACTIONS(4801), + [anon_sym_volatile] = ACTIONS(4801), + [anon_sym_restrict] = ACTIONS(4801), + [anon_sym___restrict__] = ACTIONS(4801), + [anon_sym__Atomic] = ACTIONS(4801), + [anon_sym__Noreturn] = ACTIONS(4801), + [anon_sym_noreturn] = ACTIONS(4801), + [anon_sym__Nonnull] = ACTIONS(4801), + [anon_sym_mutable] = ACTIONS(4801), + [anon_sym_constinit] = ACTIONS(4801), + [anon_sym_consteval] = ACTIONS(4801), + [anon_sym_alignas] = ACTIONS(4801), + [anon_sym__Alignas] = ACTIONS(4801), + [sym_primitive_type] = ACTIONS(4801), + [anon_sym_COLON] = ACTIONS(4803), + [anon_sym_QMARK] = ACTIONS(4803), + [anon_sym_LT_EQ_GT] = ACTIONS(4803), + [anon_sym_or] = ACTIONS(4801), + [anon_sym_and] = ACTIONS(4801), + [anon_sym_bitor] = ACTIONS(4801), + [anon_sym_xor] = ACTIONS(4801), + [anon_sym_bitand] = ACTIONS(4801), + [anon_sym_not_eq] = ACTIONS(4801), + [anon_sym_DASH_DASH] = ACTIONS(4803), + [anon_sym_PLUS_PLUS] = ACTIONS(4803), + [anon_sym_DOT] = ACTIONS(4801), + [anon_sym_DOT_STAR] = ACTIONS(4803), + [anon_sym_DASH_GT] = ACTIONS(4803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4801), + [anon_sym_decltype] = ACTIONS(4801), + [anon_sym_final] = ACTIONS(4801), + [anon_sym_override] = ACTIONS(4801), + [anon_sym_requires] = ACTIONS(4801), + }, + [STATE(2473)] = { + [sym_identifier] = ACTIONS(4735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4737), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4737), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_DASH] = ACTIONS(4735), + [anon_sym_PLUS] = ACTIONS(4735), + [anon_sym_STAR] = ACTIONS(4737), + [anon_sym_SLASH] = ACTIONS(4735), + [anon_sym_PERCENT] = ACTIONS(4737), + [anon_sym_PIPE_PIPE] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_PIPE] = ACTIONS(4735), + [anon_sym_CARET] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_EQ_EQ] = ACTIONS(4737), + [anon_sym_BANG_EQ] = ACTIONS(4737), + [anon_sym_GT] = ACTIONS(4735), + [anon_sym_GT_EQ] = ACTIONS(4737), + [anon_sym_LT_EQ] = ACTIONS(4735), + [anon_sym_LT] = ACTIONS(4735), + [anon_sym_LT_LT] = ACTIONS(4737), + [anon_sym_GT_GT] = ACTIONS(4737), + [anon_sym_SEMI] = ACTIONS(4737), + [anon_sym___extension__] = ACTIONS(4735), + [anon_sym___attribute__] = ACTIONS(4735), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym___based] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4737), + [anon_sym_RBRACE] = ACTIONS(4737), + [anon_sym_signed] = ACTIONS(4735), + [anon_sym_unsigned] = ACTIONS(4735), + [anon_sym_long] = ACTIONS(4735), + [anon_sym_short] = ACTIONS(4735), + [anon_sym_LBRACK] = ACTIONS(4737), + [anon_sym_RBRACK] = ACTIONS(4737), + [anon_sym_const] = ACTIONS(4735), + [anon_sym_constexpr] = ACTIONS(4735), + [anon_sym_volatile] = ACTIONS(4735), + [anon_sym_restrict] = ACTIONS(4735), + [anon_sym___restrict__] = ACTIONS(4735), + [anon_sym__Atomic] = ACTIONS(4735), + [anon_sym__Noreturn] = ACTIONS(4735), + [anon_sym_noreturn] = ACTIONS(4735), + [anon_sym__Nonnull] = ACTIONS(4735), + [anon_sym_mutable] = ACTIONS(4735), + [anon_sym_constinit] = ACTIONS(4735), + [anon_sym_consteval] = ACTIONS(4735), + [anon_sym_alignas] = ACTIONS(4735), + [anon_sym__Alignas] = ACTIONS(4735), + [sym_primitive_type] = ACTIONS(4735), + [anon_sym_COLON] = ACTIONS(4737), + [anon_sym_QMARK] = ACTIONS(4737), + [anon_sym_LT_EQ_GT] = ACTIONS(4737), + [anon_sym_or] = ACTIONS(4735), + [anon_sym_and] = ACTIONS(4735), + [anon_sym_bitor] = ACTIONS(4735), + [anon_sym_xor] = ACTIONS(4735), + [anon_sym_bitand] = ACTIONS(4735), + [anon_sym_not_eq] = ACTIONS(4735), + [anon_sym_DASH_DASH] = ACTIONS(4737), + [anon_sym_PLUS_PLUS] = ACTIONS(4737), + [anon_sym_DOT] = ACTIONS(4735), + [anon_sym_DOT_STAR] = ACTIONS(4737), + [anon_sym_DASH_GT] = ACTIONS(4737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4735), + [anon_sym_decltype] = ACTIONS(4735), + [anon_sym_final] = ACTIONS(4735), + [anon_sym_override] = ACTIONS(4735), + [anon_sym_requires] = ACTIONS(4735), + }, + [STATE(2474)] = { + [sym_identifier] = ACTIONS(5050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(5052), + [anon_sym_LPAREN2] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_SLASH] = ACTIONS(5050), + [anon_sym_PERCENT] = ACTIONS(5052), + [anon_sym_PIPE_PIPE] = ACTIONS(5052), + [anon_sym_AMP_AMP] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5050), + [anon_sym_CARET] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_EQ_EQ] = ACTIONS(5052), + [anon_sym_BANG_EQ] = ACTIONS(5052), + [anon_sym_GT] = ACTIONS(5050), + [anon_sym_GT_EQ] = ACTIONS(5052), + [anon_sym_LT_EQ] = ACTIONS(5050), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym_LT_LT] = ACTIONS(5052), + [anon_sym_GT_GT] = ACTIONS(5052), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym___extension__] = ACTIONS(5050), + [anon_sym___attribute__] = ACTIONS(5050), + [anon_sym___attribute] = ACTIONS(5050), + [anon_sym___based] = ACTIONS(5050), + [anon_sym_LBRACE] = ACTIONS(5052), + [anon_sym_RBRACE] = ACTIONS(5052), + [anon_sym_signed] = ACTIONS(5050), + [anon_sym_unsigned] = ACTIONS(5050), + [anon_sym_long] = ACTIONS(5050), + [anon_sym_short] = ACTIONS(5050), + [anon_sym_LBRACK] = ACTIONS(5052), + [anon_sym_RBRACK] = ACTIONS(5052), + [anon_sym_const] = ACTIONS(5050), + [anon_sym_constexpr] = ACTIONS(5050), + [anon_sym_volatile] = ACTIONS(5050), + [anon_sym_restrict] = ACTIONS(5050), + [anon_sym___restrict__] = ACTIONS(5050), + [anon_sym__Atomic] = ACTIONS(5050), + [anon_sym__Noreturn] = ACTIONS(5050), + [anon_sym_noreturn] = ACTIONS(5050), + [anon_sym__Nonnull] = ACTIONS(5050), + [anon_sym_mutable] = ACTIONS(5050), + [anon_sym_constinit] = ACTIONS(5050), + [anon_sym_consteval] = ACTIONS(5050), + [anon_sym_alignas] = ACTIONS(5050), + [anon_sym__Alignas] = ACTIONS(5050), + [sym_primitive_type] = ACTIONS(5050), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_QMARK] = ACTIONS(5052), + [anon_sym_LT_EQ_GT] = ACTIONS(5052), + [anon_sym_or] = ACTIONS(5050), + [anon_sym_and] = ACTIONS(5050), + [anon_sym_bitor] = ACTIONS(5050), + [anon_sym_xor] = ACTIONS(5050), + [anon_sym_bitand] = ACTIONS(5050), + [anon_sym_not_eq] = ACTIONS(5050), + [anon_sym_DASH_DASH] = ACTIONS(5052), + [anon_sym_PLUS_PLUS] = ACTIONS(5052), + [anon_sym_DOT] = ACTIONS(5050), + [anon_sym_DOT_STAR] = ACTIONS(5052), + [anon_sym_DASH_GT] = ACTIONS(5052), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5050), + [anon_sym_decltype] = ACTIONS(5050), + [anon_sym_final] = ACTIONS(5050), + [anon_sym_override] = ACTIONS(5050), + [anon_sym_requires] = ACTIONS(5050), + }, + [STATE(2475)] = { + [sym_identifier] = ACTIONS(4817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4819), + [anon_sym_COMMA] = ACTIONS(4819), + [anon_sym_RPAREN] = ACTIONS(4819), + [anon_sym_LPAREN2] = ACTIONS(4819), + [anon_sym_DASH] = ACTIONS(4817), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_STAR] = ACTIONS(4819), + [anon_sym_SLASH] = ACTIONS(4817), + [anon_sym_PERCENT] = ACTIONS(4819), + [anon_sym_PIPE_PIPE] = ACTIONS(4819), + [anon_sym_AMP_AMP] = ACTIONS(4819), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_CARET] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4817), + [anon_sym_EQ_EQ] = ACTIONS(4819), + [anon_sym_BANG_EQ] = ACTIONS(4819), + [anon_sym_GT] = ACTIONS(4817), + [anon_sym_GT_EQ] = ACTIONS(4819), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4817), + [anon_sym_LT_LT] = ACTIONS(4819), + [anon_sym_GT_GT] = ACTIONS(4819), + [anon_sym_SEMI] = ACTIONS(4819), + [anon_sym___extension__] = ACTIONS(4817), + [anon_sym___attribute__] = ACTIONS(4817), + [anon_sym___attribute] = ACTIONS(4817), + [anon_sym___based] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(4819), + [anon_sym_RBRACE] = ACTIONS(4819), + [anon_sym_signed] = ACTIONS(4817), + [anon_sym_unsigned] = ACTIONS(4817), + [anon_sym_long] = ACTIONS(4817), + [anon_sym_short] = ACTIONS(4817), + [anon_sym_LBRACK] = ACTIONS(4819), + [anon_sym_RBRACK] = ACTIONS(4819), + [anon_sym_const] = ACTIONS(4817), + [anon_sym_constexpr] = ACTIONS(4817), + [anon_sym_volatile] = ACTIONS(4817), + [anon_sym_restrict] = ACTIONS(4817), + [anon_sym___restrict__] = ACTIONS(4817), + [anon_sym__Atomic] = ACTIONS(4817), + [anon_sym__Noreturn] = ACTIONS(4817), + [anon_sym_noreturn] = ACTIONS(4817), + [anon_sym__Nonnull] = ACTIONS(4817), + [anon_sym_mutable] = ACTIONS(4817), + [anon_sym_constinit] = ACTIONS(4817), + [anon_sym_consteval] = ACTIONS(4817), + [anon_sym_alignas] = ACTIONS(4817), + [anon_sym__Alignas] = ACTIONS(4817), + [sym_primitive_type] = ACTIONS(4817), + [anon_sym_COLON] = ACTIONS(4819), + [anon_sym_QMARK] = ACTIONS(4819), + [anon_sym_LT_EQ_GT] = ACTIONS(4819), + [anon_sym_or] = ACTIONS(4817), + [anon_sym_and] = ACTIONS(4817), + [anon_sym_bitor] = ACTIONS(4817), + [anon_sym_xor] = ACTIONS(4817), + [anon_sym_bitand] = ACTIONS(4817), + [anon_sym_not_eq] = ACTIONS(4817), + [anon_sym_DASH_DASH] = ACTIONS(4819), + [anon_sym_PLUS_PLUS] = ACTIONS(4819), + [anon_sym_DOT] = ACTIONS(4817), + [anon_sym_DOT_STAR] = ACTIONS(4819), + [anon_sym_DASH_GT] = ACTIONS(4819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4817), + [anon_sym_decltype] = ACTIONS(4817), + [anon_sym_final] = ACTIONS(4817), + [anon_sym_override] = ACTIONS(4817), + [anon_sym_requires] = ACTIONS(4817), + }, + [STATE(2476)] = { + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_RPAREN] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4890), + [anon_sym_PLUS] = ACTIONS(4890), + [anon_sym_STAR] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_PIPE_PIPE] = ACTIONS(4892), + [anon_sym_AMP_AMP] = ACTIONS(4892), + [anon_sym_PIPE] = ACTIONS(4890), + [anon_sym_CARET] = ACTIONS(4892), + [anon_sym_AMP] = ACTIONS(4890), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_GT_EQ] = ACTIONS(4892), + [anon_sym_LT_EQ] = ACTIONS(4890), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_LT_LT] = ACTIONS(4892), + [anon_sym_GT_GT] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4892), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym___attribute__] = ACTIONS(4890), + [anon_sym___attribute] = ACTIONS(4890), + [anon_sym___based] = ACTIONS(4890), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_RBRACE] = ACTIONS(4892), + [anon_sym_signed] = ACTIONS(4890), + [anon_sym_unsigned] = ACTIONS(4890), + [anon_sym_long] = ACTIONS(4890), + [anon_sym_short] = ACTIONS(4890), + [anon_sym_LBRACK] = ACTIONS(4892), + [anon_sym_RBRACK] = ACTIONS(4892), + [anon_sym_const] = ACTIONS(4890), + [anon_sym_constexpr] = ACTIONS(4890), + [anon_sym_volatile] = ACTIONS(4890), + [anon_sym_restrict] = ACTIONS(4890), + [anon_sym___restrict__] = ACTIONS(4890), + [anon_sym__Atomic] = ACTIONS(4890), + [anon_sym__Noreturn] = ACTIONS(4890), + [anon_sym_noreturn] = ACTIONS(4890), + [anon_sym__Nonnull] = ACTIONS(4890), + [anon_sym_mutable] = ACTIONS(4890), + [anon_sym_constinit] = ACTIONS(4890), + [anon_sym_consteval] = ACTIONS(4890), + [anon_sym_alignas] = ACTIONS(4890), + [anon_sym__Alignas] = ACTIONS(4890), + [sym_primitive_type] = ACTIONS(4890), + [anon_sym_COLON] = ACTIONS(4892), + [anon_sym_QMARK] = ACTIONS(4892), + [anon_sym_LT_EQ_GT] = ACTIONS(4892), + [anon_sym_or] = ACTIONS(4890), + [anon_sym_and] = ACTIONS(4890), + [anon_sym_bitor] = ACTIONS(4890), + [anon_sym_xor] = ACTIONS(4890), + [anon_sym_bitand] = ACTIONS(4890), + [anon_sym_not_eq] = ACTIONS(4890), + [anon_sym_DASH_DASH] = ACTIONS(4892), + [anon_sym_PLUS_PLUS] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_DOT_STAR] = ACTIONS(4892), + [anon_sym_DASH_GT] = ACTIONS(4892), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4890), + [anon_sym_decltype] = ACTIONS(4890), + [anon_sym_final] = ACTIONS(4890), + [anon_sym_override] = ACTIONS(4890), + [anon_sym_requires] = ACTIONS(4890), + }, + [STATE(2477)] = { + [sym_identifier] = ACTIONS(4894), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4896), + [anon_sym_COMMA] = ACTIONS(4896), + [anon_sym_RPAREN] = ACTIONS(4896), + [anon_sym_LPAREN2] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4894), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_PIPE_PIPE] = ACTIONS(4896), + [anon_sym_AMP_AMP] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4894), + [anon_sym_CARET] = ACTIONS(4896), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4896), + [anon_sym_BANG_EQ] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4896), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_LT_LT] = ACTIONS(4896), + [anon_sym_GT_GT] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4896), + [anon_sym___extension__] = ACTIONS(4894), + [anon_sym___attribute__] = ACTIONS(4894), + [anon_sym___attribute] = ACTIONS(4894), + [anon_sym___based] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_RBRACE] = ACTIONS(4896), + [anon_sym_signed] = ACTIONS(4894), + [anon_sym_unsigned] = ACTIONS(4894), + [anon_sym_long] = ACTIONS(4894), + [anon_sym_short] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4896), + [anon_sym_RBRACK] = ACTIONS(4896), + [anon_sym_const] = ACTIONS(4894), + [anon_sym_constexpr] = ACTIONS(4894), + [anon_sym_volatile] = ACTIONS(4894), + [anon_sym_restrict] = ACTIONS(4894), + [anon_sym___restrict__] = ACTIONS(4894), + [anon_sym__Atomic] = ACTIONS(4894), + [anon_sym__Noreturn] = ACTIONS(4894), + [anon_sym_noreturn] = ACTIONS(4894), + [anon_sym__Nonnull] = ACTIONS(4894), + [anon_sym_mutable] = ACTIONS(4894), + [anon_sym_constinit] = ACTIONS(4894), + [anon_sym_consteval] = ACTIONS(4894), + [anon_sym_alignas] = ACTIONS(4894), + [anon_sym__Alignas] = ACTIONS(4894), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_LT_EQ_GT] = ACTIONS(4896), + [anon_sym_or] = ACTIONS(4894), + [anon_sym_and] = ACTIONS(4894), + [anon_sym_bitor] = ACTIONS(4894), + [anon_sym_xor] = ACTIONS(4894), + [anon_sym_bitand] = ACTIONS(4894), + [anon_sym_not_eq] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4896), + [anon_sym_PLUS_PLUS] = ACTIONS(4896), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_DOT_STAR] = ACTIONS(4896), + [anon_sym_DASH_GT] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4894), + [anon_sym_decltype] = ACTIONS(4894), + [anon_sym_final] = ACTIONS(4894), + [anon_sym_override] = ACTIONS(4894), + [anon_sym_requires] = ACTIONS(4894), + }, + [STATE(2478)] = { + [sym_field_declaration_list] = STATE(2665), + [sym_virtual_specifier] = STATE(7488), + [sym_base_class_clause] = STATE(7943), + [sym_identifier] = ACTIONS(5120), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5122), + [anon_sym_COMMA] = ACTIONS(5122), + [anon_sym_RPAREN] = ACTIONS(5122), + [aux_sym_preproc_if_token2] = ACTIONS(5122), + [aux_sym_preproc_else_token1] = ACTIONS(5122), + [aux_sym_preproc_elif_token1] = ACTIONS(5120), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5122), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5122), + [anon_sym_LPAREN2] = ACTIONS(5122), + [anon_sym_DASH] = ACTIONS(5120), + [anon_sym_PLUS] = ACTIONS(5120), + [anon_sym_STAR] = ACTIONS(5120), + [anon_sym_SLASH] = ACTIONS(5120), + [anon_sym_PERCENT] = ACTIONS(5120), + [anon_sym_PIPE_PIPE] = ACTIONS(5122), + [anon_sym_AMP_AMP] = ACTIONS(5122), + [anon_sym_PIPE] = ACTIONS(5120), + [anon_sym_CARET] = ACTIONS(5120), + [anon_sym_AMP] = ACTIONS(5120), + [anon_sym_EQ_EQ] = ACTIONS(5122), + [anon_sym_BANG_EQ] = ACTIONS(5122), + [anon_sym_GT] = ACTIONS(5120), + [anon_sym_GT_EQ] = ACTIONS(5122), + [anon_sym_LT_EQ] = ACTIONS(5120), + [anon_sym_LT] = ACTIONS(5120), + [anon_sym_LT_LT] = ACTIONS(5120), + [anon_sym_GT_GT] = ACTIONS(5120), + [anon_sym_SEMI] = ACTIONS(5122), + [anon_sym___attribute__] = ACTIONS(5120), + [anon_sym___attribute] = ACTIONS(5120), + [anon_sym_LBRACE] = ACTIONS(6291), + [anon_sym_RBRACE] = ACTIONS(5122), + [anon_sym_LBRACK] = ACTIONS(5122), + [anon_sym_RBRACK] = ACTIONS(5122), + [anon_sym_EQ] = ACTIONS(5120), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5122), + [anon_sym_STAR_EQ] = ACTIONS(5122), + [anon_sym_SLASH_EQ] = ACTIONS(5122), + [anon_sym_PERCENT_EQ] = ACTIONS(5122), + [anon_sym_PLUS_EQ] = ACTIONS(5122), + [anon_sym_DASH_EQ] = ACTIONS(5122), + [anon_sym_LT_LT_EQ] = ACTIONS(5122), + [anon_sym_GT_GT_EQ] = ACTIONS(5122), + [anon_sym_AMP_EQ] = ACTIONS(5122), + [anon_sym_CARET_EQ] = ACTIONS(5122), + [anon_sym_PIPE_EQ] = ACTIONS(5122), + [anon_sym_and_eq] = ACTIONS(5120), + [anon_sym_or_eq] = ACTIONS(5120), + [anon_sym_xor_eq] = ACTIONS(5120), + [anon_sym_LT_EQ_GT] = ACTIONS(5122), + [anon_sym_or] = ACTIONS(5120), + [anon_sym_and] = ACTIONS(5120), + [anon_sym_bitor] = ACTIONS(5120), + [anon_sym_xor] = ACTIONS(5120), + [anon_sym_bitand] = ACTIONS(5120), + [anon_sym_not_eq] = ACTIONS(5120), + [anon_sym_DASH_DASH] = ACTIONS(5122), + [anon_sym_PLUS_PLUS] = ACTIONS(5122), + [anon_sym_DOT] = ACTIONS(5120), + [anon_sym_DOT_STAR] = ACTIONS(5122), + [anon_sym_DASH_GT] = ACTIONS(5122), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5120), + [anon_sym_decltype] = ACTIONS(5120), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + }, + [STATE(2479)] = { + [sym_field_declaration_list] = STATE(2726), + [sym_virtual_specifier] = STATE(7496), + [sym_base_class_clause] = STATE(7950), + [sym_identifier] = ACTIONS(5116), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5118), + [anon_sym_COMMA] = ACTIONS(5118), + [anon_sym_RPAREN] = ACTIONS(5118), + [aux_sym_preproc_if_token2] = ACTIONS(5118), + [aux_sym_preproc_else_token1] = ACTIONS(5118), + [aux_sym_preproc_elif_token1] = ACTIONS(5116), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5118), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5118), + [anon_sym_LPAREN2] = ACTIONS(5118), + [anon_sym_DASH] = ACTIONS(5116), + [anon_sym_PLUS] = ACTIONS(5116), + [anon_sym_STAR] = ACTIONS(5116), + [anon_sym_SLASH] = ACTIONS(5116), + [anon_sym_PERCENT] = ACTIONS(5116), + [anon_sym_PIPE_PIPE] = ACTIONS(5118), + [anon_sym_AMP_AMP] = ACTIONS(5118), + [anon_sym_PIPE] = ACTIONS(5116), + [anon_sym_CARET] = ACTIONS(5116), + [anon_sym_AMP] = ACTIONS(5116), + [anon_sym_EQ_EQ] = ACTIONS(5118), + [anon_sym_BANG_EQ] = ACTIONS(5118), + [anon_sym_GT] = ACTIONS(5116), + [anon_sym_GT_EQ] = ACTIONS(5118), + [anon_sym_LT_EQ] = ACTIONS(5116), + [anon_sym_LT] = ACTIONS(5116), + [anon_sym_LT_LT] = ACTIONS(5116), + [anon_sym_GT_GT] = ACTIONS(5116), + [anon_sym_SEMI] = ACTIONS(5118), + [anon_sym___attribute__] = ACTIONS(5116), + [anon_sym___attribute] = ACTIONS(5116), + [anon_sym_LBRACE] = ACTIONS(6291), + [anon_sym_RBRACE] = ACTIONS(5118), + [anon_sym_LBRACK] = ACTIONS(5118), + [anon_sym_RBRACK] = ACTIONS(5118), + [anon_sym_EQ] = ACTIONS(5116), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5118), + [anon_sym_STAR_EQ] = ACTIONS(5118), + [anon_sym_SLASH_EQ] = ACTIONS(5118), + [anon_sym_PERCENT_EQ] = ACTIONS(5118), + [anon_sym_PLUS_EQ] = ACTIONS(5118), + [anon_sym_DASH_EQ] = ACTIONS(5118), + [anon_sym_LT_LT_EQ] = ACTIONS(5118), + [anon_sym_GT_GT_EQ] = ACTIONS(5118), + [anon_sym_AMP_EQ] = ACTIONS(5118), + [anon_sym_CARET_EQ] = ACTIONS(5118), + [anon_sym_PIPE_EQ] = ACTIONS(5118), + [anon_sym_and_eq] = ACTIONS(5116), + [anon_sym_or_eq] = ACTIONS(5116), + [anon_sym_xor_eq] = ACTIONS(5116), + [anon_sym_LT_EQ_GT] = ACTIONS(5118), + [anon_sym_or] = ACTIONS(5116), + [anon_sym_and] = ACTIONS(5116), + [anon_sym_bitor] = ACTIONS(5116), + [anon_sym_xor] = ACTIONS(5116), + [anon_sym_bitand] = ACTIONS(5116), + [anon_sym_not_eq] = ACTIONS(5116), + [anon_sym_DASH_DASH] = ACTIONS(5118), + [anon_sym_PLUS_PLUS] = ACTIONS(5118), + [anon_sym_DOT] = ACTIONS(5116), + [anon_sym_DOT_STAR] = ACTIONS(5118), + [anon_sym_DASH_GT] = ACTIONS(5118), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5116), + [anon_sym_decltype] = ACTIONS(5116), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + }, + [STATE(2480)] = { + [sym_identifier] = ACTIONS(4926), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_RPAREN] = ACTIONS(4928), + [anon_sym_LPAREN2] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_PLUS] = ACTIONS(4926), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_SLASH] = ACTIONS(4926), + [anon_sym_PERCENT] = ACTIONS(4928), + [anon_sym_PIPE_PIPE] = ACTIONS(4928), + [anon_sym_AMP_AMP] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4926), + [anon_sym_CARET] = ACTIONS(4928), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4926), + [anon_sym_GT_EQ] = ACTIONS(4928), + [anon_sym_LT_EQ] = ACTIONS(4926), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_LT_LT] = ACTIONS(4928), + [anon_sym_GT_GT] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym___extension__] = ACTIONS(4926), + [anon_sym___attribute__] = ACTIONS(4926), + [anon_sym___attribute] = ACTIONS(4926), + [anon_sym___based] = ACTIONS(4926), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_RBRACE] = ACTIONS(4928), + [anon_sym_signed] = ACTIONS(4926), + [anon_sym_unsigned] = ACTIONS(4926), + [anon_sym_long] = ACTIONS(4926), + [anon_sym_short] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4928), + [anon_sym_RBRACK] = ACTIONS(4928), + [anon_sym_const] = ACTIONS(4926), + [anon_sym_constexpr] = ACTIONS(4926), + [anon_sym_volatile] = ACTIONS(4926), + [anon_sym_restrict] = ACTIONS(4926), + [anon_sym___restrict__] = ACTIONS(4926), + [anon_sym__Atomic] = ACTIONS(4926), + [anon_sym__Noreturn] = ACTIONS(4926), + [anon_sym_noreturn] = ACTIONS(4926), + [anon_sym__Nonnull] = ACTIONS(4926), + [anon_sym_mutable] = ACTIONS(4926), + [anon_sym_constinit] = ACTIONS(4926), + [anon_sym_consteval] = ACTIONS(4926), + [anon_sym_alignas] = ACTIONS(4926), + [anon_sym__Alignas] = ACTIONS(4926), + [sym_primitive_type] = ACTIONS(4926), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_QMARK] = ACTIONS(4928), + [anon_sym_LT_EQ_GT] = ACTIONS(4928), + [anon_sym_or] = ACTIONS(4926), + [anon_sym_and] = ACTIONS(4926), + [anon_sym_bitor] = ACTIONS(4926), + [anon_sym_xor] = ACTIONS(4926), + [anon_sym_bitand] = ACTIONS(4926), + [anon_sym_not_eq] = ACTIONS(4926), + [anon_sym_DASH_DASH] = ACTIONS(4928), + [anon_sym_PLUS_PLUS] = ACTIONS(4928), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_DOT_STAR] = ACTIONS(4928), + [anon_sym_DASH_GT] = ACTIONS(4928), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4926), + [anon_sym_decltype] = ACTIONS(4926), + [anon_sym_final] = ACTIONS(4926), + [anon_sym_override] = ACTIONS(4926), + [anon_sym_requires] = ACTIONS(4926), + }, + [STATE(2481)] = { + [sym_identifier] = ACTIONS(4982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4984), + [anon_sym_COMMA] = ACTIONS(4984), + [anon_sym_RPAREN] = ACTIONS(4984), + [anon_sym_LPAREN2] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4982), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4982), + [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_PIPE_PIPE] = ACTIONS(4984), + [anon_sym_AMP_AMP] = ACTIONS(4984), + [anon_sym_PIPE] = ACTIONS(4982), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(4982), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4982), + [anon_sym_GT_EQ] = ACTIONS(4984), + [anon_sym_LT_EQ] = ACTIONS(4982), + [anon_sym_LT] = ACTIONS(4982), + [anon_sym_LT_LT] = ACTIONS(4984), + [anon_sym_GT_GT] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4984), + [anon_sym___extension__] = ACTIONS(4982), + [anon_sym___attribute__] = ACTIONS(4982), + [anon_sym___attribute] = ACTIONS(4982), + [anon_sym___based] = ACTIONS(4982), + [anon_sym_LBRACE] = ACTIONS(4984), + [anon_sym_RBRACE] = ACTIONS(4984), + [anon_sym_signed] = ACTIONS(4982), + [anon_sym_unsigned] = ACTIONS(4982), + [anon_sym_long] = ACTIONS(4982), + [anon_sym_short] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4984), + [anon_sym_RBRACK] = ACTIONS(4984), + [anon_sym_const] = ACTIONS(4982), + [anon_sym_constexpr] = ACTIONS(4982), + [anon_sym_volatile] = ACTIONS(4982), + [anon_sym_restrict] = ACTIONS(4982), + [anon_sym___restrict__] = ACTIONS(4982), + [anon_sym__Atomic] = ACTIONS(4982), + [anon_sym__Noreturn] = ACTIONS(4982), + [anon_sym_noreturn] = ACTIONS(4982), + [anon_sym__Nonnull] = ACTIONS(4982), + [anon_sym_mutable] = ACTIONS(4982), + [anon_sym_constinit] = ACTIONS(4982), + [anon_sym_consteval] = ACTIONS(4982), + [anon_sym_alignas] = ACTIONS(4982), + [anon_sym__Alignas] = ACTIONS(4982), + [sym_primitive_type] = ACTIONS(4982), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_QMARK] = ACTIONS(4984), + [anon_sym_LT_EQ_GT] = ACTIONS(4984), + [anon_sym_or] = ACTIONS(4982), + [anon_sym_and] = ACTIONS(4982), + [anon_sym_bitor] = ACTIONS(4982), + [anon_sym_xor] = ACTIONS(4982), + [anon_sym_bitand] = ACTIONS(4982), + [anon_sym_not_eq] = ACTIONS(4982), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_DOT_STAR] = ACTIONS(4984), + [anon_sym_DASH_GT] = ACTIONS(4984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4982), + [anon_sym_decltype] = ACTIONS(4982), + [anon_sym_final] = ACTIONS(4982), + [anon_sym_override] = ACTIONS(4982), + [anon_sym_requires] = ACTIONS(4982), + }, + [STATE(2482)] = { + [sym_type_qualifier] = STATE(2468), + [sym_alignas_qualifier] = STATE(2434), + [aux_sym__type_definition_type_repeat1] = STATE(2468), + [aux_sym_sized_type_specifier_repeat1] = STATE(2583), + [sym_identifier] = ACTIONS(6555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4721), + [anon_sym_COMMA] = ACTIONS(4721), + [anon_sym_RPAREN] = ACTIONS(4721), + [anon_sym_LPAREN2] = ACTIONS(4721), + [anon_sym_DASH] = ACTIONS(4723), + [anon_sym_PLUS] = ACTIONS(4723), + [anon_sym_STAR] = ACTIONS(4721), + [anon_sym_SLASH] = ACTIONS(4723), + [anon_sym_PERCENT] = ACTIONS(4721), + [anon_sym_PIPE_PIPE] = ACTIONS(4721), + [anon_sym_AMP_AMP] = ACTIONS(4721), + [anon_sym_PIPE] = ACTIONS(4723), + [anon_sym_CARET] = ACTIONS(4721), + [anon_sym_AMP] = ACTIONS(4723), + [anon_sym_EQ_EQ] = ACTIONS(4721), + [anon_sym_BANG_EQ] = ACTIONS(4721), + [anon_sym_GT] = ACTIONS(4723), + [anon_sym_GT_EQ] = ACTIONS(4721), + [anon_sym_LT_EQ] = ACTIONS(4723), + [anon_sym_LT] = ACTIONS(4723), + [anon_sym_LT_LT] = ACTIONS(4721), + [anon_sym_GT_GT] = ACTIONS(4721), + [anon_sym_SEMI] = ACTIONS(4721), + [anon_sym___extension__] = ACTIONS(6547), + [anon_sym___attribute__] = ACTIONS(4723), + [anon_sym___attribute] = ACTIONS(4723), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_RBRACE] = ACTIONS(4721), + [anon_sym_signed] = ACTIONS(6557), + [anon_sym_unsigned] = ACTIONS(6557), + [anon_sym_long] = ACTIONS(6557), + [anon_sym_short] = ACTIONS(6557), + [anon_sym_LBRACK] = ACTIONS(4721), + [anon_sym_RBRACK] = ACTIONS(4721), + [anon_sym_const] = ACTIONS(6547), + [anon_sym_constexpr] = ACTIONS(6547), + [anon_sym_volatile] = ACTIONS(6547), + [anon_sym_restrict] = ACTIONS(6547), + [anon_sym___restrict__] = ACTIONS(6547), + [anon_sym__Atomic] = ACTIONS(6547), + [anon_sym__Noreturn] = ACTIONS(6547), + [anon_sym_noreturn] = ACTIONS(6547), + [anon_sym__Nonnull] = ACTIONS(6547), + [anon_sym_mutable] = ACTIONS(6547), + [anon_sym_constinit] = ACTIONS(6547), + [anon_sym_consteval] = ACTIONS(6547), + [anon_sym_alignas] = ACTIONS(6551), + [anon_sym__Alignas] = ACTIONS(6551), + [sym_primitive_type] = ACTIONS(6559), + [anon_sym_COLON] = ACTIONS(4721), + [anon_sym_QMARK] = ACTIONS(4721), + [anon_sym_LT_EQ_GT] = ACTIONS(4721), + [anon_sym_or] = ACTIONS(4723), + [anon_sym_and] = ACTIONS(4723), + [anon_sym_bitor] = ACTIONS(4723), + [anon_sym_xor] = ACTIONS(4723), + [anon_sym_bitand] = ACTIONS(4723), + [anon_sym_not_eq] = ACTIONS(4723), + [anon_sym_DASH_DASH] = ACTIONS(4721), + [anon_sym_PLUS_PLUS] = ACTIONS(4721), + [anon_sym_DOT] = ACTIONS(4723), + [anon_sym_DOT_STAR] = ACTIONS(4721), + [anon_sym_DASH_GT] = ACTIONS(4721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4723), + [anon_sym_decltype] = ACTIONS(4723), + }, + [STATE(2483)] = { + [sym_identifier] = ACTIONS(4898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4898), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4898), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_PIPE_PIPE] = ACTIONS(4900), + [anon_sym_AMP_AMP] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4900), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym___extension__] = ACTIONS(4898), + [anon_sym___attribute__] = ACTIONS(4898), + [anon_sym___attribute] = ACTIONS(4898), + [anon_sym___based] = ACTIONS(4898), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_RBRACE] = ACTIONS(4900), + [anon_sym_signed] = ACTIONS(4898), + [anon_sym_unsigned] = ACTIONS(4898), + [anon_sym_long] = ACTIONS(4898), + [anon_sym_short] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_RBRACK] = ACTIONS(4900), + [anon_sym_const] = ACTIONS(4898), + [anon_sym_constexpr] = ACTIONS(4898), + [anon_sym_volatile] = ACTIONS(4898), + [anon_sym_restrict] = ACTIONS(4898), + [anon_sym___restrict__] = ACTIONS(4898), + [anon_sym__Atomic] = ACTIONS(4898), + [anon_sym__Noreturn] = ACTIONS(4898), + [anon_sym_noreturn] = ACTIONS(4898), + [anon_sym__Nonnull] = ACTIONS(4898), + [anon_sym_mutable] = ACTIONS(4898), + [anon_sym_constinit] = ACTIONS(4898), + [anon_sym_consteval] = ACTIONS(4898), + [anon_sym_alignas] = ACTIONS(4898), + [anon_sym__Alignas] = ACTIONS(4898), + [sym_primitive_type] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_LT_EQ_GT] = ACTIONS(4900), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_bitor] = ACTIONS(4898), + [anon_sym_xor] = ACTIONS(4898), + [anon_sym_bitand] = ACTIONS(4898), + [anon_sym_not_eq] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4900), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_DOT_STAR] = ACTIONS(4900), + [anon_sym_DASH_GT] = ACTIONS(4900), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4898), + [anon_sym_decltype] = ACTIONS(4898), + [anon_sym_final] = ACTIONS(4898), + [anon_sym_override] = ACTIONS(4898), + [anon_sym_requires] = ACTIONS(4898), + }, + [STATE(2484)] = { + [sym_identifier] = ACTIONS(4805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4807), + [anon_sym_COMMA] = ACTIONS(4807), + [anon_sym_RPAREN] = ACTIONS(4807), + [anon_sym_LPAREN2] = ACTIONS(4807), + [anon_sym_DASH] = ACTIONS(4805), + [anon_sym_PLUS] = ACTIONS(4805), + [anon_sym_STAR] = ACTIONS(4807), + [anon_sym_SLASH] = ACTIONS(4805), + [anon_sym_PERCENT] = ACTIONS(4807), + [anon_sym_PIPE_PIPE] = ACTIONS(4807), + [anon_sym_AMP_AMP] = ACTIONS(4807), + [anon_sym_PIPE] = ACTIONS(4805), + [anon_sym_CARET] = ACTIONS(4807), + [anon_sym_AMP] = ACTIONS(4805), + [anon_sym_EQ_EQ] = ACTIONS(4807), + [anon_sym_BANG_EQ] = ACTIONS(4807), + [anon_sym_GT] = ACTIONS(4805), + [anon_sym_GT_EQ] = ACTIONS(4807), + [anon_sym_LT_EQ] = ACTIONS(4805), + [anon_sym_LT] = ACTIONS(4805), + [anon_sym_LT_LT] = ACTIONS(4807), + [anon_sym_GT_GT] = ACTIONS(4807), + [anon_sym_SEMI] = ACTIONS(4807), + [anon_sym___extension__] = ACTIONS(4805), + [anon_sym___attribute__] = ACTIONS(4805), + [anon_sym___attribute] = ACTIONS(4805), + [anon_sym___based] = ACTIONS(4805), + [anon_sym_LBRACE] = ACTIONS(4807), + [anon_sym_RBRACE] = ACTIONS(4807), + [anon_sym_signed] = ACTIONS(4805), + [anon_sym_unsigned] = ACTIONS(4805), + [anon_sym_long] = ACTIONS(4805), + [anon_sym_short] = ACTIONS(4805), + [anon_sym_LBRACK] = ACTIONS(4807), + [anon_sym_RBRACK] = ACTIONS(4807), + [anon_sym_const] = ACTIONS(4805), + [anon_sym_constexpr] = ACTIONS(4805), + [anon_sym_volatile] = ACTIONS(4805), + [anon_sym_restrict] = ACTIONS(4805), + [anon_sym___restrict__] = ACTIONS(4805), + [anon_sym__Atomic] = ACTIONS(4805), + [anon_sym__Noreturn] = ACTIONS(4805), + [anon_sym_noreturn] = ACTIONS(4805), + [anon_sym__Nonnull] = ACTIONS(4805), + [anon_sym_mutable] = ACTIONS(4805), + [anon_sym_constinit] = ACTIONS(4805), + [anon_sym_consteval] = ACTIONS(4805), + [anon_sym_alignas] = ACTIONS(4805), + [anon_sym__Alignas] = ACTIONS(4805), + [sym_primitive_type] = ACTIONS(4805), + [anon_sym_COLON] = ACTIONS(4807), + [anon_sym_QMARK] = ACTIONS(4807), + [anon_sym_LT_EQ_GT] = ACTIONS(4807), + [anon_sym_or] = ACTIONS(4805), + [anon_sym_and] = ACTIONS(4805), + [anon_sym_bitor] = ACTIONS(4805), + [anon_sym_xor] = ACTIONS(4805), + [anon_sym_bitand] = ACTIONS(4805), + [anon_sym_not_eq] = ACTIONS(4805), + [anon_sym_DASH_DASH] = ACTIONS(4807), + [anon_sym_PLUS_PLUS] = ACTIONS(4807), + [anon_sym_DOT] = ACTIONS(4805), + [anon_sym_DOT_STAR] = ACTIONS(4807), + [anon_sym_DASH_GT] = ACTIONS(4807), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4805), + [anon_sym_decltype] = ACTIONS(4805), + [anon_sym_final] = ACTIONS(4805), + [anon_sym_override] = ACTIONS(4805), + [anon_sym_requires] = ACTIONS(4805), + }, + [STATE(2485)] = { + [sym_identifier] = ACTIONS(4970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_RPAREN] = ACTIONS(4972), + [anon_sym_LPAREN2] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_PLUS] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4972), + [anon_sym_SLASH] = ACTIONS(4970), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_PIPE_PIPE] = ACTIONS(4972), + [anon_sym_AMP_AMP] = ACTIONS(4972), + [anon_sym_PIPE] = ACTIONS(4970), + [anon_sym_CARET] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4970), + [anon_sym_EQ_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ] = ACTIONS(4972), + [anon_sym_GT] = ACTIONS(4970), + [anon_sym_GT_EQ] = ACTIONS(4972), + [anon_sym_LT_EQ] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_LT_LT] = ACTIONS(4972), + [anon_sym_GT_GT] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym___attribute__] = ACTIONS(4970), + [anon_sym___attribute] = ACTIONS(4970), + [anon_sym___based] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_RBRACE] = ACTIONS(4972), + [anon_sym_signed] = ACTIONS(4970), + [anon_sym_unsigned] = ACTIONS(4970), + [anon_sym_long] = ACTIONS(4970), + [anon_sym_short] = ACTIONS(4970), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_RBRACK] = ACTIONS(4972), + [anon_sym_const] = ACTIONS(4970), + [anon_sym_constexpr] = ACTIONS(4970), + [anon_sym_volatile] = ACTIONS(4970), + [anon_sym_restrict] = ACTIONS(4970), + [anon_sym___restrict__] = ACTIONS(4970), + [anon_sym__Atomic] = ACTIONS(4970), + [anon_sym__Noreturn] = ACTIONS(4970), + [anon_sym_noreturn] = ACTIONS(4970), + [anon_sym__Nonnull] = ACTIONS(4970), + [anon_sym_mutable] = ACTIONS(4970), + [anon_sym_constinit] = ACTIONS(4970), + [anon_sym_consteval] = ACTIONS(4970), + [anon_sym_alignas] = ACTIONS(4970), + [anon_sym__Alignas] = ACTIONS(4970), + [sym_primitive_type] = ACTIONS(4970), + [anon_sym_COLON] = ACTIONS(4972), + [anon_sym_QMARK] = ACTIONS(4972), + [anon_sym_LT_EQ_GT] = ACTIONS(4972), + [anon_sym_or] = ACTIONS(4970), + [anon_sym_and] = ACTIONS(4970), + [anon_sym_bitor] = ACTIONS(4970), + [anon_sym_xor] = ACTIONS(4970), + [anon_sym_bitand] = ACTIONS(4970), + [anon_sym_not_eq] = ACTIONS(4970), + [anon_sym_DASH_DASH] = ACTIONS(4972), + [anon_sym_PLUS_PLUS] = ACTIONS(4972), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_DOT_STAR] = ACTIONS(4972), + [anon_sym_DASH_GT] = ACTIONS(4972), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4970), + [anon_sym_decltype] = ACTIONS(4970), + [anon_sym_final] = ACTIONS(4970), + [anon_sym_override] = ACTIONS(4970), + [anon_sym_requires] = ACTIONS(4970), + }, + [STATE(2486)] = { + [sym_identifier] = ACTIONS(5058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5060), + [anon_sym_COMMA] = ACTIONS(5060), + [anon_sym_RPAREN] = ACTIONS(5060), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_PLUS] = ACTIONS(5058), + [anon_sym_STAR] = ACTIONS(5060), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_PERCENT] = ACTIONS(5060), + [anon_sym_PIPE_PIPE] = ACTIONS(5060), + [anon_sym_AMP_AMP] = ACTIONS(5060), + [anon_sym_PIPE] = ACTIONS(5058), + [anon_sym_CARET] = ACTIONS(5060), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_EQ_EQ] = ACTIONS(5060), + [anon_sym_BANG_EQ] = ACTIONS(5060), + [anon_sym_GT] = ACTIONS(5058), + [anon_sym_GT_EQ] = ACTIONS(5060), + [anon_sym_LT_EQ] = ACTIONS(5058), + [anon_sym_LT] = ACTIONS(5058), + [anon_sym_LT_LT] = ACTIONS(5060), + [anon_sym_GT_GT] = ACTIONS(5060), + [anon_sym_SEMI] = ACTIONS(5060), + [anon_sym___extension__] = ACTIONS(5058), + [anon_sym___attribute__] = ACTIONS(5058), + [anon_sym___attribute] = ACTIONS(5058), + [anon_sym___based] = ACTIONS(5058), + [anon_sym_LBRACE] = ACTIONS(5060), + [anon_sym_RBRACE] = ACTIONS(5060), + [anon_sym_signed] = ACTIONS(5058), + [anon_sym_unsigned] = ACTIONS(5058), + [anon_sym_long] = ACTIONS(5058), + [anon_sym_short] = ACTIONS(5058), + [anon_sym_LBRACK] = ACTIONS(5060), + [anon_sym_RBRACK] = ACTIONS(5060), + [anon_sym_const] = ACTIONS(5058), + [anon_sym_constexpr] = ACTIONS(5058), + [anon_sym_volatile] = ACTIONS(5058), + [anon_sym_restrict] = ACTIONS(5058), + [anon_sym___restrict__] = ACTIONS(5058), + [anon_sym__Atomic] = ACTIONS(5058), + [anon_sym__Noreturn] = ACTIONS(5058), + [anon_sym_noreturn] = ACTIONS(5058), + [anon_sym__Nonnull] = ACTIONS(5058), + [anon_sym_mutable] = ACTIONS(5058), + [anon_sym_constinit] = ACTIONS(5058), + [anon_sym_consteval] = ACTIONS(5058), + [anon_sym_alignas] = ACTIONS(5058), + [anon_sym__Alignas] = ACTIONS(5058), + [sym_primitive_type] = ACTIONS(5058), + [anon_sym_COLON] = ACTIONS(5060), + [anon_sym_QMARK] = ACTIONS(5060), + [anon_sym_LT_EQ_GT] = ACTIONS(5060), + [anon_sym_or] = ACTIONS(5058), + [anon_sym_and] = ACTIONS(5058), + [anon_sym_bitor] = ACTIONS(5058), + [anon_sym_xor] = ACTIONS(5058), + [anon_sym_bitand] = ACTIONS(5058), + [anon_sym_not_eq] = ACTIONS(5058), + [anon_sym_DASH_DASH] = ACTIONS(5060), + [anon_sym_PLUS_PLUS] = ACTIONS(5060), + [anon_sym_DOT] = ACTIONS(5058), + [anon_sym_DOT_STAR] = ACTIONS(5060), + [anon_sym_DASH_GT] = ACTIONS(5060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5058), + [anon_sym_decltype] = ACTIONS(5058), + [anon_sym_final] = ACTIONS(5058), + [anon_sym_override] = ACTIONS(5058), + [anon_sym_requires] = ACTIONS(5058), + }, + [STATE(2487)] = { + [sym_identifier] = ACTIONS(5062), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [anon_sym_LPAREN2] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_PLUS] = ACTIONS(5062), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_PERCENT] = ACTIONS(5064), + [anon_sym_PIPE_PIPE] = ACTIONS(5064), + [anon_sym_AMP_AMP] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5062), + [anon_sym_CARET] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5062), + [anon_sym_EQ_EQ] = ACTIONS(5064), + [anon_sym_BANG_EQ] = ACTIONS(5064), + [anon_sym_GT] = ACTIONS(5062), + [anon_sym_GT_EQ] = ACTIONS(5064), + [anon_sym_LT_EQ] = ACTIONS(5062), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_LT_LT] = ACTIONS(5064), + [anon_sym_GT_GT] = ACTIONS(5064), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym___extension__] = ACTIONS(5062), + [anon_sym___attribute__] = ACTIONS(5062), + [anon_sym___attribute] = ACTIONS(5062), + [anon_sym___based] = ACTIONS(5062), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_RBRACE] = ACTIONS(5064), + [anon_sym_signed] = ACTIONS(5062), + [anon_sym_unsigned] = ACTIONS(5062), + [anon_sym_long] = ACTIONS(5062), + [anon_sym_short] = ACTIONS(5062), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_RBRACK] = ACTIONS(5064), + [anon_sym_const] = ACTIONS(5062), + [anon_sym_constexpr] = ACTIONS(5062), + [anon_sym_volatile] = ACTIONS(5062), + [anon_sym_restrict] = ACTIONS(5062), + [anon_sym___restrict__] = ACTIONS(5062), + [anon_sym__Atomic] = ACTIONS(5062), + [anon_sym__Noreturn] = ACTIONS(5062), + [anon_sym_noreturn] = ACTIONS(5062), + [anon_sym__Nonnull] = ACTIONS(5062), + [anon_sym_mutable] = ACTIONS(5062), + [anon_sym_constinit] = ACTIONS(5062), + [anon_sym_consteval] = ACTIONS(5062), + [anon_sym_alignas] = ACTIONS(5062), + [anon_sym__Alignas] = ACTIONS(5062), + [sym_primitive_type] = ACTIONS(5062), + [anon_sym_COLON] = ACTIONS(5064), + [anon_sym_QMARK] = ACTIONS(5064), + [anon_sym_LT_EQ_GT] = ACTIONS(5064), + [anon_sym_or] = ACTIONS(5062), + [anon_sym_and] = ACTIONS(5062), + [anon_sym_bitor] = ACTIONS(5062), + [anon_sym_xor] = ACTIONS(5062), + [anon_sym_bitand] = ACTIONS(5062), + [anon_sym_not_eq] = ACTIONS(5062), + [anon_sym_DASH_DASH] = ACTIONS(5064), + [anon_sym_PLUS_PLUS] = ACTIONS(5064), + [anon_sym_DOT] = ACTIONS(5062), + [anon_sym_DOT_STAR] = ACTIONS(5064), + [anon_sym_DASH_GT] = ACTIONS(5064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5062), + [anon_sym_decltype] = ACTIONS(5062), + [anon_sym_final] = ACTIONS(5062), + [anon_sym_override] = ACTIONS(5062), + [anon_sym_requires] = ACTIONS(5062), + }, + [STATE(2488)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(4020), + [sym_raw_string_literal] = STATE(3007), + [sym_identifier] = ACTIONS(3097), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [aux_sym_preproc_if_token2] = ACTIONS(3089), + [aux_sym_preproc_else_token1] = ACTIONS(3089), + [aux_sym_preproc_elif_token1] = ACTIONS(3097), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3089), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6561), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(6564), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(6566), + [anon_sym_SLASH_EQ] = ACTIONS(6566), + [anon_sym_PERCENT_EQ] = ACTIONS(6566), + [anon_sym_PLUS_EQ] = ACTIONS(6566), + [anon_sym_DASH_EQ] = ACTIONS(6566), + [anon_sym_LT_LT_EQ] = ACTIONS(6566), + [anon_sym_GT_GT_EQ] = ACTIONS(6566), + [anon_sym_AMP_EQ] = ACTIONS(6566), + [anon_sym_CARET_EQ] = ACTIONS(6566), + [anon_sym_PIPE_EQ] = ACTIONS(6566), + [anon_sym_and_eq] = ACTIONS(6564), + [anon_sym_or_eq] = ACTIONS(6564), + [anon_sym_xor_eq] = ACTIONS(6564), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3097), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3097), + [anon_sym_not_eq] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [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), + }, + [STATE(2489)] = { + [sym_identifier] = ACTIONS(5010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [anon_sym_LPAREN2] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(5012), + [anon_sym_PIPE_PIPE] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5010), + [anon_sym_CARET] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_EQ_EQ] = ACTIONS(5012), + [anon_sym_BANG_EQ] = ACTIONS(5012), + [anon_sym_GT] = ACTIONS(5010), + [anon_sym_GT_EQ] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5010), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_LT_LT] = ACTIONS(5012), + [anon_sym_GT_GT] = ACTIONS(5012), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym___extension__] = ACTIONS(5010), + [anon_sym___attribute__] = ACTIONS(5010), + [anon_sym___attribute] = ACTIONS(5010), + [anon_sym___based] = ACTIONS(5010), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_RBRACE] = ACTIONS(5012), + [anon_sym_signed] = ACTIONS(5010), + [anon_sym_unsigned] = ACTIONS(5010), + [anon_sym_long] = ACTIONS(5010), + [anon_sym_short] = ACTIONS(5010), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_RBRACK] = ACTIONS(5012), + [anon_sym_const] = ACTIONS(5010), + [anon_sym_constexpr] = ACTIONS(5010), + [anon_sym_volatile] = ACTIONS(5010), + [anon_sym_restrict] = ACTIONS(5010), + [anon_sym___restrict__] = ACTIONS(5010), + [anon_sym__Atomic] = ACTIONS(5010), + [anon_sym__Noreturn] = ACTIONS(5010), + [anon_sym_noreturn] = ACTIONS(5010), + [anon_sym__Nonnull] = ACTIONS(5010), + [anon_sym_mutable] = ACTIONS(5010), + [anon_sym_constinit] = ACTIONS(5010), + [anon_sym_consteval] = ACTIONS(5010), + [anon_sym_alignas] = ACTIONS(5010), + [anon_sym__Alignas] = ACTIONS(5010), + [sym_primitive_type] = ACTIONS(5010), + [anon_sym_COLON] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_LT_EQ_GT] = ACTIONS(5012), + [anon_sym_or] = ACTIONS(5010), + [anon_sym_and] = ACTIONS(5010), + [anon_sym_bitor] = ACTIONS(5010), + [anon_sym_xor] = ACTIONS(5010), + [anon_sym_bitand] = ACTIONS(5010), + [anon_sym_not_eq] = ACTIONS(5010), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_DOT_STAR] = ACTIONS(5012), + [anon_sym_DASH_GT] = ACTIONS(5012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5010), + [anon_sym_decltype] = ACTIONS(5010), + [anon_sym_final] = ACTIONS(5010), + [anon_sym_override] = ACTIONS(5010), + [anon_sym_requires] = ACTIONS(5010), + }, + [STATE(2490)] = { + [sym_identifier] = ACTIONS(5014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [anon_sym_LPAREN2] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5016), + [anon_sym_PIPE_PIPE] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_EQ_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ] = ACTIONS(5016), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_LT_LT] = ACTIONS(5016), + [anon_sym_GT_GT] = ACTIONS(5016), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym___extension__] = ACTIONS(5014), + [anon_sym___attribute__] = ACTIONS(5014), + [anon_sym___attribute] = ACTIONS(5014), + [anon_sym___based] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_RBRACE] = ACTIONS(5016), + [anon_sym_signed] = ACTIONS(5014), + [anon_sym_unsigned] = ACTIONS(5014), + [anon_sym_long] = ACTIONS(5014), + [anon_sym_short] = ACTIONS(5014), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_RBRACK] = ACTIONS(5016), + [anon_sym_const] = ACTIONS(5014), + [anon_sym_constexpr] = ACTIONS(5014), + [anon_sym_volatile] = ACTIONS(5014), + [anon_sym_restrict] = ACTIONS(5014), + [anon_sym___restrict__] = ACTIONS(5014), + [anon_sym__Atomic] = ACTIONS(5014), + [anon_sym__Noreturn] = ACTIONS(5014), + [anon_sym_noreturn] = ACTIONS(5014), + [anon_sym__Nonnull] = ACTIONS(5014), + [anon_sym_mutable] = ACTIONS(5014), + [anon_sym_constinit] = ACTIONS(5014), + [anon_sym_consteval] = ACTIONS(5014), + [anon_sym_alignas] = ACTIONS(5014), + [anon_sym__Alignas] = ACTIONS(5014), + [sym_primitive_type] = ACTIONS(5014), + [anon_sym_COLON] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_LT_EQ_GT] = ACTIONS(5016), + [anon_sym_or] = ACTIONS(5014), + [anon_sym_and] = ACTIONS(5014), + [anon_sym_bitor] = ACTIONS(5014), + [anon_sym_xor] = ACTIONS(5014), + [anon_sym_bitand] = ACTIONS(5014), + [anon_sym_not_eq] = ACTIONS(5014), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_DOT_STAR] = ACTIONS(5016), + [anon_sym_DASH_GT] = ACTIONS(5016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5014), + [anon_sym_decltype] = ACTIONS(5014), + [anon_sym_final] = ACTIONS(5014), + [anon_sym_override] = ACTIONS(5014), + [anon_sym_requires] = ACTIONS(5014), + }, + [STATE(2491)] = { + [sym_identifier] = ACTIONS(5018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_LPAREN2] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_PIPE_PIPE] = ACTIONS(5020), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_GT_EQ] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_LT_LT] = ACTIONS(5020), + [anon_sym_GT_GT] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym___extension__] = ACTIONS(5018), + [anon_sym___attribute__] = ACTIONS(5018), + [anon_sym___attribute] = ACTIONS(5018), + [anon_sym___based] = ACTIONS(5018), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_signed] = ACTIONS(5018), + [anon_sym_unsigned] = ACTIONS(5018), + [anon_sym_long] = ACTIONS(5018), + [anon_sym_short] = ACTIONS(5018), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_RBRACK] = ACTIONS(5020), + [anon_sym_const] = ACTIONS(5018), + [anon_sym_constexpr] = ACTIONS(5018), + [anon_sym_volatile] = ACTIONS(5018), + [anon_sym_restrict] = ACTIONS(5018), + [anon_sym___restrict__] = ACTIONS(5018), + [anon_sym__Atomic] = ACTIONS(5018), + [anon_sym__Noreturn] = ACTIONS(5018), + [anon_sym_noreturn] = ACTIONS(5018), + [anon_sym__Nonnull] = ACTIONS(5018), + [anon_sym_mutable] = ACTIONS(5018), + [anon_sym_constinit] = ACTIONS(5018), + [anon_sym_consteval] = ACTIONS(5018), + [anon_sym_alignas] = ACTIONS(5018), + [anon_sym__Alignas] = ACTIONS(5018), + [sym_primitive_type] = ACTIONS(5018), + [anon_sym_COLON] = ACTIONS(5020), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_LT_EQ_GT] = ACTIONS(5020), + [anon_sym_or] = ACTIONS(5018), + [anon_sym_and] = ACTIONS(5018), + [anon_sym_bitor] = ACTIONS(5018), + [anon_sym_xor] = ACTIONS(5018), + [anon_sym_bitand] = ACTIONS(5018), + [anon_sym_not_eq] = ACTIONS(5018), + [anon_sym_DASH_DASH] = ACTIONS(5020), + [anon_sym_PLUS_PLUS] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_DOT_STAR] = ACTIONS(5020), + [anon_sym_DASH_GT] = ACTIONS(5020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5018), + [anon_sym_decltype] = ACTIONS(5018), + [anon_sym_final] = ACTIONS(5018), + [anon_sym_override] = ACTIONS(5018), + [anon_sym_requires] = ACTIONS(5018), + }, + [STATE(2492)] = { + [sym_identifier] = ACTIONS(5022), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [anon_sym_LPAREN2] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_PIPE_PIPE] = ACTIONS(5024), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_LT_LT] = ACTIONS(5024), + [anon_sym_GT_GT] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym___extension__] = ACTIONS(5022), + [anon_sym___attribute__] = ACTIONS(5022), + [anon_sym___attribute] = ACTIONS(5022), + [anon_sym___based] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_RBRACE] = ACTIONS(5024), + [anon_sym_signed] = ACTIONS(5022), + [anon_sym_unsigned] = ACTIONS(5022), + [anon_sym_long] = ACTIONS(5022), + [anon_sym_short] = ACTIONS(5022), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_RBRACK] = ACTIONS(5024), + [anon_sym_const] = ACTIONS(5022), + [anon_sym_constexpr] = ACTIONS(5022), + [anon_sym_volatile] = ACTIONS(5022), + [anon_sym_restrict] = ACTIONS(5022), + [anon_sym___restrict__] = ACTIONS(5022), + [anon_sym__Atomic] = ACTIONS(5022), + [anon_sym__Noreturn] = ACTIONS(5022), + [anon_sym_noreturn] = ACTIONS(5022), + [anon_sym__Nonnull] = ACTIONS(5022), + [anon_sym_mutable] = ACTIONS(5022), + [anon_sym_constinit] = ACTIONS(5022), + [anon_sym_consteval] = ACTIONS(5022), + [anon_sym_alignas] = ACTIONS(5022), + [anon_sym__Alignas] = ACTIONS(5022), + [sym_primitive_type] = ACTIONS(5022), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5024), + [anon_sym_LT_EQ_GT] = ACTIONS(5024), + [anon_sym_or] = ACTIONS(5022), + [anon_sym_and] = ACTIONS(5022), + [anon_sym_bitor] = ACTIONS(5022), + [anon_sym_xor] = ACTIONS(5022), + [anon_sym_bitand] = ACTIONS(5022), + [anon_sym_not_eq] = ACTIONS(5022), + [anon_sym_DASH_DASH] = ACTIONS(5024), + [anon_sym_PLUS_PLUS] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_DOT_STAR] = ACTIONS(5024), + [anon_sym_DASH_GT] = ACTIONS(5024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5022), + [anon_sym_decltype] = ACTIONS(5022), + [anon_sym_final] = ACTIONS(5022), + [anon_sym_override] = ACTIONS(5022), + [anon_sym_requires] = ACTIONS(5022), + }, + [STATE(2493)] = { + [sym_identifier] = ACTIONS(5026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [anon_sym_LPAREN2] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_PIPE_PIPE] = ACTIONS(5028), + [anon_sym_AMP_AMP] = ACTIONS(5028), + [anon_sym_PIPE] = ACTIONS(5026), + [anon_sym_CARET] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_EQ_EQ] = ACTIONS(5028), + [anon_sym_BANG_EQ] = ACTIONS(5028), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_GT_EQ] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_LT_LT] = ACTIONS(5028), + [anon_sym_GT_GT] = ACTIONS(5028), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym___extension__] = ACTIONS(5026), + [anon_sym___attribute__] = ACTIONS(5026), + [anon_sym___attribute] = ACTIONS(5026), + [anon_sym___based] = ACTIONS(5026), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_RBRACE] = ACTIONS(5028), + [anon_sym_signed] = ACTIONS(5026), + [anon_sym_unsigned] = ACTIONS(5026), + [anon_sym_long] = ACTIONS(5026), + [anon_sym_short] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_RBRACK] = ACTIONS(5028), + [anon_sym_const] = ACTIONS(5026), + [anon_sym_constexpr] = ACTIONS(5026), + [anon_sym_volatile] = ACTIONS(5026), + [anon_sym_restrict] = ACTIONS(5026), + [anon_sym___restrict__] = ACTIONS(5026), + [anon_sym__Atomic] = ACTIONS(5026), + [anon_sym__Noreturn] = ACTIONS(5026), + [anon_sym_noreturn] = ACTIONS(5026), + [anon_sym__Nonnull] = ACTIONS(5026), + [anon_sym_mutable] = ACTIONS(5026), + [anon_sym_constinit] = ACTIONS(5026), + [anon_sym_consteval] = ACTIONS(5026), + [anon_sym_alignas] = ACTIONS(5026), + [anon_sym__Alignas] = ACTIONS(5026), + [sym_primitive_type] = ACTIONS(5026), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5028), + [anon_sym_LT_EQ_GT] = ACTIONS(5028), + [anon_sym_or] = ACTIONS(5026), + [anon_sym_and] = ACTIONS(5026), + [anon_sym_bitor] = ACTIONS(5026), + [anon_sym_xor] = ACTIONS(5026), + [anon_sym_bitand] = ACTIONS(5026), + [anon_sym_not_eq] = ACTIONS(5026), + [anon_sym_DASH_DASH] = ACTIONS(5028), + [anon_sym_PLUS_PLUS] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_DOT_STAR] = ACTIONS(5028), + [anon_sym_DASH_GT] = ACTIONS(5028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5026), + [anon_sym_decltype] = ACTIONS(5026), + [anon_sym_final] = ACTIONS(5026), + [anon_sym_override] = ACTIONS(5026), + [anon_sym_requires] = ACTIONS(5026), + }, + [STATE(2494)] = { + [sym_identifier] = ACTIONS(5030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_PLUS] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_SLASH] = ACTIONS(5030), + [anon_sym_PERCENT] = ACTIONS(5032), + [anon_sym_PIPE_PIPE] = ACTIONS(5032), + [anon_sym_AMP_AMP] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5032), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_EQ_EQ] = ACTIONS(5032), + [anon_sym_BANG_EQ] = ACTIONS(5032), + [anon_sym_GT] = ACTIONS(5030), + [anon_sym_GT_EQ] = ACTIONS(5032), + [anon_sym_LT_EQ] = ACTIONS(5030), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_LT_LT] = ACTIONS(5032), + [anon_sym_GT_GT] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5032), + [anon_sym___extension__] = ACTIONS(5030), + [anon_sym___attribute__] = ACTIONS(5030), + [anon_sym___attribute] = ACTIONS(5030), + [anon_sym___based] = ACTIONS(5030), + [anon_sym_LBRACE] = ACTIONS(5032), + [anon_sym_RBRACE] = ACTIONS(5032), + [anon_sym_signed] = ACTIONS(5030), + [anon_sym_unsigned] = ACTIONS(5030), + [anon_sym_long] = ACTIONS(5030), + [anon_sym_short] = ACTIONS(5030), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym_RBRACK] = ACTIONS(5032), + [anon_sym_const] = ACTIONS(5030), + [anon_sym_constexpr] = ACTIONS(5030), + [anon_sym_volatile] = ACTIONS(5030), + [anon_sym_restrict] = ACTIONS(5030), + [anon_sym___restrict__] = ACTIONS(5030), + [anon_sym__Atomic] = ACTIONS(5030), + [anon_sym__Noreturn] = ACTIONS(5030), + [anon_sym_noreturn] = ACTIONS(5030), + [anon_sym__Nonnull] = ACTIONS(5030), + [anon_sym_mutable] = ACTIONS(5030), + [anon_sym_constinit] = ACTIONS(5030), + [anon_sym_consteval] = ACTIONS(5030), + [anon_sym_alignas] = ACTIONS(5030), + [anon_sym__Alignas] = ACTIONS(5030), + [sym_primitive_type] = ACTIONS(5030), + [anon_sym_COLON] = ACTIONS(5032), + [anon_sym_QMARK] = ACTIONS(5032), + [anon_sym_LT_EQ_GT] = ACTIONS(5032), + [anon_sym_or] = ACTIONS(5030), + [anon_sym_and] = ACTIONS(5030), + [anon_sym_bitor] = ACTIONS(5030), + [anon_sym_xor] = ACTIONS(5030), + [anon_sym_bitand] = ACTIONS(5030), + [anon_sym_not_eq] = ACTIONS(5030), + [anon_sym_DASH_DASH] = ACTIONS(5032), + [anon_sym_PLUS_PLUS] = ACTIONS(5032), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_DOT_STAR] = ACTIONS(5032), + [anon_sym_DASH_GT] = ACTIONS(5032), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5030), + [anon_sym_decltype] = ACTIONS(5030), + [anon_sym_final] = ACTIONS(5030), + [anon_sym_override] = ACTIONS(5030), + [anon_sym_requires] = ACTIONS(5030), + }, + [STATE(2495)] = { + [sym_identifier] = ACTIONS(5034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_SLASH] = ACTIONS(5034), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_PIPE_PIPE] = ACTIONS(5036), + [anon_sym_AMP_AMP] = ACTIONS(5036), + [anon_sym_PIPE] = ACTIONS(5034), + [anon_sym_CARET] = ACTIONS(5036), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_EQ_EQ] = ACTIONS(5036), + [anon_sym_BANG_EQ] = ACTIONS(5036), + [anon_sym_GT] = ACTIONS(5034), + [anon_sym_GT_EQ] = ACTIONS(5036), + [anon_sym_LT_EQ] = ACTIONS(5034), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_LT_LT] = ACTIONS(5036), + [anon_sym_GT_GT] = ACTIONS(5036), + [anon_sym_SEMI] = ACTIONS(5036), + [anon_sym___extension__] = ACTIONS(5034), + [anon_sym___attribute__] = ACTIONS(5034), + [anon_sym___attribute] = ACTIONS(5034), + [anon_sym___based] = ACTIONS(5034), + [anon_sym_LBRACE] = ACTIONS(5036), + [anon_sym_RBRACE] = ACTIONS(5036), + [anon_sym_signed] = ACTIONS(5034), + [anon_sym_unsigned] = ACTIONS(5034), + [anon_sym_long] = ACTIONS(5034), + [anon_sym_short] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5036), + [anon_sym_RBRACK] = ACTIONS(5036), + [anon_sym_const] = ACTIONS(5034), + [anon_sym_constexpr] = ACTIONS(5034), + [anon_sym_volatile] = ACTIONS(5034), + [anon_sym_restrict] = ACTIONS(5034), + [anon_sym___restrict__] = ACTIONS(5034), + [anon_sym__Atomic] = ACTIONS(5034), + [anon_sym__Noreturn] = ACTIONS(5034), + [anon_sym_noreturn] = ACTIONS(5034), + [anon_sym__Nonnull] = ACTIONS(5034), + [anon_sym_mutable] = ACTIONS(5034), + [anon_sym_constinit] = ACTIONS(5034), + [anon_sym_consteval] = ACTIONS(5034), + [anon_sym_alignas] = ACTIONS(5034), + [anon_sym__Alignas] = ACTIONS(5034), + [sym_primitive_type] = ACTIONS(5034), + [anon_sym_COLON] = ACTIONS(5036), + [anon_sym_QMARK] = ACTIONS(5036), + [anon_sym_LT_EQ_GT] = ACTIONS(5036), + [anon_sym_or] = ACTIONS(5034), + [anon_sym_and] = ACTIONS(5034), + [anon_sym_bitor] = ACTIONS(5034), + [anon_sym_xor] = ACTIONS(5034), + [anon_sym_bitand] = ACTIONS(5034), + [anon_sym_not_eq] = ACTIONS(5034), + [anon_sym_DASH_DASH] = ACTIONS(5036), + [anon_sym_PLUS_PLUS] = ACTIONS(5036), + [anon_sym_DOT] = ACTIONS(5034), + [anon_sym_DOT_STAR] = ACTIONS(5036), + [anon_sym_DASH_GT] = ACTIONS(5036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5034), + [anon_sym_decltype] = ACTIONS(5034), + [anon_sym_final] = ACTIONS(5034), + [anon_sym_override] = ACTIONS(5034), + [anon_sym_requires] = ACTIONS(5034), + }, + [STATE(2496)] = { + [sym_identifier] = ACTIONS(4898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4898), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4898), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_PIPE_PIPE] = ACTIONS(4900), + [anon_sym_AMP_AMP] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4900), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym___extension__] = ACTIONS(4898), + [anon_sym___attribute__] = ACTIONS(4898), + [anon_sym___attribute] = ACTIONS(4898), + [anon_sym___based] = ACTIONS(4898), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_RBRACE] = ACTIONS(4900), + [anon_sym_signed] = ACTIONS(4898), + [anon_sym_unsigned] = ACTIONS(4898), + [anon_sym_long] = ACTIONS(4898), + [anon_sym_short] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_RBRACK] = ACTIONS(4900), + [anon_sym_const] = ACTIONS(4898), + [anon_sym_constexpr] = ACTIONS(4898), + [anon_sym_volatile] = ACTIONS(4898), + [anon_sym_restrict] = ACTIONS(4898), + [anon_sym___restrict__] = ACTIONS(4898), + [anon_sym__Atomic] = ACTIONS(4898), + [anon_sym__Noreturn] = ACTIONS(4898), + [anon_sym_noreturn] = ACTIONS(4898), + [anon_sym__Nonnull] = ACTIONS(4898), + [anon_sym_mutable] = ACTIONS(4898), + [anon_sym_constinit] = ACTIONS(4898), + [anon_sym_consteval] = ACTIONS(4898), + [anon_sym_alignas] = ACTIONS(4898), + [anon_sym__Alignas] = ACTIONS(4898), + [sym_primitive_type] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_LT_EQ_GT] = ACTIONS(4900), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_bitor] = ACTIONS(4898), + [anon_sym_xor] = ACTIONS(4898), + [anon_sym_bitand] = ACTIONS(4898), + [anon_sym_not_eq] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4900), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_DOT_STAR] = ACTIONS(4900), + [anon_sym_DASH_GT] = ACTIONS(4900), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4898), + [anon_sym_decltype] = ACTIONS(4898), + [anon_sym_final] = ACTIONS(4898), + [anon_sym_override] = ACTIONS(4898), + [anon_sym_requires] = ACTIONS(4898), + }, + [STATE(2497)] = { + [sym_identifier] = ACTIONS(4962), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [anon_sym_LPAREN2] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_PLUS] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4964), + [anon_sym_SLASH] = ACTIONS(4962), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_PIPE_PIPE] = ACTIONS(4964), + [anon_sym_AMP_AMP] = ACTIONS(4964), + [anon_sym_PIPE] = ACTIONS(4962), + [anon_sym_CARET] = ACTIONS(4964), + [anon_sym_AMP] = ACTIONS(4962), + [anon_sym_EQ_EQ] = ACTIONS(4964), + [anon_sym_BANG_EQ] = ACTIONS(4964), + [anon_sym_GT] = ACTIONS(4962), + [anon_sym_GT_EQ] = ACTIONS(4964), + [anon_sym_LT_EQ] = ACTIONS(4962), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_LT_LT] = ACTIONS(4964), + [anon_sym_GT_GT] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym___extension__] = ACTIONS(4962), + [anon_sym___attribute__] = ACTIONS(4962), + [anon_sym___attribute] = ACTIONS(4962), + [anon_sym___based] = ACTIONS(4962), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_RBRACE] = ACTIONS(4964), + [anon_sym_signed] = ACTIONS(4962), + [anon_sym_unsigned] = ACTIONS(4962), + [anon_sym_long] = ACTIONS(4962), + [anon_sym_short] = ACTIONS(4962), + [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_RBRACK] = ACTIONS(4964), + [anon_sym_const] = ACTIONS(4962), + [anon_sym_constexpr] = ACTIONS(4962), + [anon_sym_volatile] = ACTIONS(4962), + [anon_sym_restrict] = ACTIONS(4962), + [anon_sym___restrict__] = ACTIONS(4962), + [anon_sym__Atomic] = ACTIONS(4962), + [anon_sym__Noreturn] = ACTIONS(4962), + [anon_sym_noreturn] = ACTIONS(4962), + [anon_sym__Nonnull] = ACTIONS(4962), + [anon_sym_mutable] = ACTIONS(4962), + [anon_sym_constinit] = ACTIONS(4962), + [anon_sym_consteval] = ACTIONS(4962), + [anon_sym_alignas] = ACTIONS(4962), + [anon_sym__Alignas] = ACTIONS(4962), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_COLON] = ACTIONS(4964), + [anon_sym_QMARK] = ACTIONS(4964), + [anon_sym_LT_EQ_GT] = ACTIONS(4964), + [anon_sym_or] = ACTIONS(4962), + [anon_sym_and] = ACTIONS(4962), + [anon_sym_bitor] = ACTIONS(4962), + [anon_sym_xor] = ACTIONS(4962), + [anon_sym_bitand] = ACTIONS(4962), + [anon_sym_not_eq] = ACTIONS(4962), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_DOT_STAR] = ACTIONS(4964), + [anon_sym_DASH_GT] = ACTIONS(4964), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4962), + [anon_sym_decltype] = ACTIONS(4962), + [anon_sym_final] = ACTIONS(4962), + [anon_sym_override] = ACTIONS(4962), + [anon_sym_requires] = ACTIONS(4962), + }, + [STATE(2498)] = { + [sym_template_argument_list] = STATE(2536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3283), + [anon_sym_EQ_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(6568), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3281), + [anon_sym___extension__] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_constexpr] = ACTIONS(3279), + [anon_sym_volatile] = ACTIONS(3279), + [anon_sym_restrict] = ACTIONS(3279), + [anon_sym___restrict__] = ACTIONS(3279), + [anon_sym__Atomic] = ACTIONS(3279), + [anon_sym__Noreturn] = ACTIONS(3279), + [anon_sym_noreturn] = ACTIONS(3279), + [anon_sym__Nonnull] = ACTIONS(3279), + [anon_sym_mutable] = ACTIONS(3279), + [anon_sym_constinit] = ACTIONS(3279), + [anon_sym_consteval] = ACTIONS(3279), + [anon_sym_alignas] = ACTIONS(3279), + [anon_sym__Alignas] = ACTIONS(3279), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_LT_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_GT_EQ] = ACTIONS(3281), + [anon_sym_AMP_EQ] = ACTIONS(3274), + [anon_sym_CARET_EQ] = ACTIONS(3274), + [anon_sym_PIPE_EQ] = ACTIONS(3274), + [anon_sym_and_eq] = ACTIONS(3274), + [anon_sym_or_eq] = ACTIONS(3274), + [anon_sym_xor_eq] = ACTIONS(3274), + [anon_sym_LT_EQ_GT] = ACTIONS(3274), + [anon_sym_or] = ACTIONS(3281), + [anon_sym_and] = ACTIONS(3281), + [anon_sym_bitor] = ACTIONS(3274), + [anon_sym_xor] = ACTIONS(3281), + [anon_sym_bitand] = ACTIONS(3274), + [anon_sym_not_eq] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_DOT_STAR] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3279), + [anon_sym_decltype] = ACTIONS(3279), + [anon_sym_GT2] = ACTIONS(3276), + }, + [STATE(2499)] = { + [sym_identifier] = ACTIONS(4906), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_RPAREN] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_PLUS] = ACTIONS(4906), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4906), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_PIPE_PIPE] = ACTIONS(4908), + [anon_sym_AMP_AMP] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4906), + [anon_sym_CARET] = ACTIONS(4908), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_EQ_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ] = ACTIONS(4908), + [anon_sym_GT] = ACTIONS(4906), + [anon_sym_GT_EQ] = ACTIONS(4908), + [anon_sym_LT_EQ] = ACTIONS(4906), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_LT_LT] = ACTIONS(4908), + [anon_sym_GT_GT] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym___extension__] = ACTIONS(4906), + [anon_sym___attribute__] = ACTIONS(4906), + [anon_sym___attribute] = ACTIONS(4906), + [anon_sym___based] = ACTIONS(4906), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_RBRACE] = ACTIONS(4908), + [anon_sym_signed] = ACTIONS(4906), + [anon_sym_unsigned] = ACTIONS(4906), + [anon_sym_long] = ACTIONS(4906), + [anon_sym_short] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym_RBRACK] = ACTIONS(4908), + [anon_sym_const] = ACTIONS(4906), + [anon_sym_constexpr] = ACTIONS(4906), + [anon_sym_volatile] = ACTIONS(4906), + [anon_sym_restrict] = ACTIONS(4906), + [anon_sym___restrict__] = ACTIONS(4906), + [anon_sym__Atomic] = ACTIONS(4906), + [anon_sym__Noreturn] = ACTIONS(4906), + [anon_sym_noreturn] = ACTIONS(4906), + [anon_sym__Nonnull] = ACTIONS(4906), + [anon_sym_mutable] = ACTIONS(4906), + [anon_sym_constinit] = ACTIONS(4906), + [anon_sym_consteval] = ACTIONS(4906), + [anon_sym_alignas] = ACTIONS(4906), + [anon_sym__Alignas] = ACTIONS(4906), + [sym_primitive_type] = ACTIONS(4906), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_QMARK] = ACTIONS(4908), + [anon_sym_LT_EQ_GT] = ACTIONS(4908), + [anon_sym_or] = ACTIONS(4906), + [anon_sym_and] = ACTIONS(4906), + [anon_sym_bitor] = ACTIONS(4906), + [anon_sym_xor] = ACTIONS(4906), + [anon_sym_bitand] = ACTIONS(4906), + [anon_sym_not_eq] = ACTIONS(4906), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_DOT_STAR] = ACTIONS(4908), + [anon_sym_DASH_GT] = ACTIONS(4908), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4906), + [anon_sym_decltype] = ACTIONS(4906), + [anon_sym_final] = ACTIONS(4906), + [anon_sym_override] = ACTIONS(4906), + [anon_sym_requires] = ACTIONS(4906), + }, + [STATE(2500)] = { + [sym_identifier] = ACTIONS(4954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_PLUS] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4956), + [anon_sym_SLASH] = ACTIONS(4954), + [anon_sym_PERCENT] = ACTIONS(4956), + [anon_sym_PIPE_PIPE] = ACTIONS(4956), + [anon_sym_AMP_AMP] = ACTIONS(4956), + [anon_sym_PIPE] = ACTIONS(4954), + [anon_sym_CARET] = ACTIONS(4956), + [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_EQ_EQ] = ACTIONS(4956), + [anon_sym_BANG_EQ] = ACTIONS(4956), + [anon_sym_GT] = ACTIONS(4954), + [anon_sym_GT_EQ] = ACTIONS(4956), + [anon_sym_LT_EQ] = ACTIONS(4954), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_LT_LT] = ACTIONS(4956), + [anon_sym_GT_GT] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym___extension__] = ACTIONS(4954), + [anon_sym___attribute__] = ACTIONS(4954), + [anon_sym___attribute] = ACTIONS(4954), + [anon_sym___based] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_signed] = ACTIONS(4954), + [anon_sym_unsigned] = ACTIONS(4954), + [anon_sym_long] = ACTIONS(4954), + [anon_sym_short] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(4956), + [anon_sym_RBRACK] = ACTIONS(4956), + [anon_sym_const] = ACTIONS(4954), + [anon_sym_constexpr] = ACTIONS(4954), + [anon_sym_volatile] = ACTIONS(4954), + [anon_sym_restrict] = ACTIONS(4954), + [anon_sym___restrict__] = ACTIONS(4954), + [anon_sym__Atomic] = ACTIONS(4954), + [anon_sym__Noreturn] = ACTIONS(4954), + [anon_sym_noreturn] = ACTIONS(4954), + [anon_sym__Nonnull] = ACTIONS(4954), + [anon_sym_mutable] = ACTIONS(4954), + [anon_sym_constinit] = ACTIONS(4954), + [anon_sym_consteval] = ACTIONS(4954), + [anon_sym_alignas] = ACTIONS(4954), + [anon_sym__Alignas] = ACTIONS(4954), + [sym_primitive_type] = ACTIONS(4954), + [anon_sym_COLON] = ACTIONS(4956), + [anon_sym_QMARK] = ACTIONS(4956), + [anon_sym_LT_EQ_GT] = ACTIONS(4956), + [anon_sym_or] = ACTIONS(4954), + [anon_sym_and] = ACTIONS(4954), + [anon_sym_bitor] = ACTIONS(4954), + [anon_sym_xor] = ACTIONS(4954), + [anon_sym_bitand] = ACTIONS(4954), + [anon_sym_not_eq] = ACTIONS(4954), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_DOT_STAR] = ACTIONS(4956), + [anon_sym_DASH_GT] = ACTIONS(4956), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4954), + [anon_sym_decltype] = ACTIONS(4954), + [anon_sym_final] = ACTIONS(4954), + [anon_sym_override] = ACTIONS(4954), + [anon_sym_requires] = ACTIONS(4954), + }, + [STATE(2501)] = { + [sym_identifier] = ACTIONS(5002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5002), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5002), + [anon_sym_PERCENT] = ACTIONS(5004), + [anon_sym_PIPE_PIPE] = ACTIONS(5004), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5002), + [anon_sym_CARET] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(5004), + [anon_sym_BANG_EQ] = ACTIONS(5004), + [anon_sym_GT] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5004), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_LT_LT] = ACTIONS(5004), + [anon_sym_GT_GT] = ACTIONS(5004), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym___extension__] = ACTIONS(5002), + [anon_sym___attribute__] = ACTIONS(5002), + [anon_sym___attribute] = ACTIONS(5002), + [anon_sym___based] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_RBRACE] = ACTIONS(5004), + [anon_sym_signed] = ACTIONS(5002), + [anon_sym_unsigned] = ACTIONS(5002), + [anon_sym_long] = ACTIONS(5002), + [anon_sym_short] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5004), + [anon_sym_RBRACK] = ACTIONS(5004), + [anon_sym_const] = ACTIONS(5002), + [anon_sym_constexpr] = ACTIONS(5002), + [anon_sym_volatile] = ACTIONS(5002), + [anon_sym_restrict] = ACTIONS(5002), + [anon_sym___restrict__] = ACTIONS(5002), + [anon_sym__Atomic] = ACTIONS(5002), + [anon_sym__Noreturn] = ACTIONS(5002), + [anon_sym_noreturn] = ACTIONS(5002), + [anon_sym__Nonnull] = ACTIONS(5002), + [anon_sym_mutable] = ACTIONS(5002), + [anon_sym_constinit] = ACTIONS(5002), + [anon_sym_consteval] = ACTIONS(5002), + [anon_sym_alignas] = ACTIONS(5002), + [anon_sym__Alignas] = ACTIONS(5002), + [sym_primitive_type] = ACTIONS(5002), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_QMARK] = ACTIONS(5004), + [anon_sym_LT_EQ_GT] = ACTIONS(5004), + [anon_sym_or] = ACTIONS(5002), + [anon_sym_and] = ACTIONS(5002), + [anon_sym_bitor] = ACTIONS(5002), + [anon_sym_xor] = ACTIONS(5002), + [anon_sym_bitand] = ACTIONS(5002), + [anon_sym_not_eq] = ACTIONS(5002), + [anon_sym_DASH_DASH] = ACTIONS(5004), + [anon_sym_PLUS_PLUS] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_DOT_STAR] = ACTIONS(5004), + [anon_sym_DASH_GT] = ACTIONS(5004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5002), + [anon_sym_decltype] = ACTIONS(5002), + [anon_sym_final] = ACTIONS(5002), + [anon_sym_override] = ACTIONS(5002), + [anon_sym_requires] = ACTIONS(5002), + }, + [STATE(2502)] = { + [sym_identifier] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_RPAREN] = ACTIONS(3296), + [aux_sym_preproc_if_token2] = ACTIONS(3296), + [aux_sym_preproc_else_token1] = ACTIONS(3296), + [aux_sym_preproc_elif_token1] = ACTIONS(3289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3296), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3289), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_CARET] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3289), + [anon_sym_GT_EQ] = ACTIONS(3296), + [anon_sym_LT_EQ] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_LT_LT] = ACTIONS(3296), + [anon_sym_GT_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym___extension__] = ACTIONS(3289), + [anon_sym___attribute__] = ACTIONS(3289), + [anon_sym___attribute] = ACTIONS(3289), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_constexpr] = ACTIONS(3289), + [anon_sym_volatile] = ACTIONS(3289), + [anon_sym_restrict] = ACTIONS(3289), + [anon_sym___restrict__] = ACTIONS(3289), + [anon_sym__Atomic] = ACTIONS(3289), + [anon_sym__Noreturn] = ACTIONS(3289), + [anon_sym_noreturn] = ACTIONS(3289), + [anon_sym__Nonnull] = ACTIONS(3289), + [anon_sym_mutable] = ACTIONS(3289), + [anon_sym_constinit] = ACTIONS(3289), + [anon_sym_consteval] = ACTIONS(3289), + [anon_sym_alignas] = ACTIONS(3289), + [anon_sym__Alignas] = ACTIONS(3289), + [anon_sym_COLON] = ACTIONS(3289), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_LT_EQ_GT] = ACTIONS(3296), + [anon_sym_or] = ACTIONS(3289), + [anon_sym_and] = ACTIONS(3289), + [anon_sym_bitor] = ACTIONS(3289), + [anon_sym_xor] = ACTIONS(3289), + [anon_sym_bitand] = ACTIONS(3289), + [anon_sym_not_eq] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3289), + [anon_sym_DOT_STAR] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3289), + [anon_sym_decltype] = ACTIONS(3289), + [anon_sym_final] = ACTIONS(3289), + [anon_sym_override] = ACTIONS(3289), + [anon_sym_requires] = ACTIONS(3289), + }, + [STATE(2503)] = { + [sym_identifier] = ACTIONS(5038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_SLASH] = ACTIONS(5038), + [anon_sym_PERCENT] = ACTIONS(5040), + [anon_sym_PIPE_PIPE] = ACTIONS(5040), + [anon_sym_AMP_AMP] = ACTIONS(5040), + [anon_sym_PIPE] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5040), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_EQ_EQ] = ACTIONS(5040), + [anon_sym_BANG_EQ] = ACTIONS(5040), + [anon_sym_GT] = ACTIONS(5038), + [anon_sym_GT_EQ] = ACTIONS(5040), + [anon_sym_LT_EQ] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_LT_LT] = ACTIONS(5040), + [anon_sym_GT_GT] = ACTIONS(5040), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym___extension__] = ACTIONS(5038), + [anon_sym___attribute__] = ACTIONS(5038), + [anon_sym___attribute] = ACTIONS(5038), + [anon_sym___based] = ACTIONS(5038), + [anon_sym_LBRACE] = ACTIONS(5040), + [anon_sym_RBRACE] = ACTIONS(5040), + [anon_sym_signed] = ACTIONS(5038), + [anon_sym_unsigned] = ACTIONS(5038), + [anon_sym_long] = ACTIONS(5038), + [anon_sym_short] = ACTIONS(5038), + [anon_sym_LBRACK] = ACTIONS(5040), + [anon_sym_RBRACK] = ACTIONS(5040), + [anon_sym_const] = ACTIONS(5038), + [anon_sym_constexpr] = ACTIONS(5038), + [anon_sym_volatile] = ACTIONS(5038), + [anon_sym_restrict] = ACTIONS(5038), + [anon_sym___restrict__] = ACTIONS(5038), + [anon_sym__Atomic] = ACTIONS(5038), + [anon_sym__Noreturn] = ACTIONS(5038), + [anon_sym_noreturn] = ACTIONS(5038), + [anon_sym__Nonnull] = ACTIONS(5038), + [anon_sym_mutable] = ACTIONS(5038), + [anon_sym_constinit] = ACTIONS(5038), + [anon_sym_consteval] = ACTIONS(5038), + [anon_sym_alignas] = ACTIONS(5038), + [anon_sym__Alignas] = ACTIONS(5038), + [sym_primitive_type] = ACTIONS(5038), + [anon_sym_COLON] = ACTIONS(5040), + [anon_sym_QMARK] = ACTIONS(5040), + [anon_sym_LT_EQ_GT] = ACTIONS(5040), + [anon_sym_or] = ACTIONS(5038), + [anon_sym_and] = ACTIONS(5038), + [anon_sym_bitor] = ACTIONS(5038), + [anon_sym_xor] = ACTIONS(5038), + [anon_sym_bitand] = ACTIONS(5038), + [anon_sym_not_eq] = ACTIONS(5038), + [anon_sym_DASH_DASH] = ACTIONS(5040), + [anon_sym_PLUS_PLUS] = ACTIONS(5040), + [anon_sym_DOT] = ACTIONS(5038), + [anon_sym_DOT_STAR] = ACTIONS(5040), + [anon_sym_DASH_GT] = ACTIONS(5040), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5038), + [anon_sym_decltype] = ACTIONS(5038), + [anon_sym_final] = ACTIONS(5038), + [anon_sym_override] = ACTIONS(5038), + [anon_sym_requires] = ACTIONS(5038), + }, + [STATE(2504)] = { + [sym_identifier] = ACTIONS(5042), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(5044), + [anon_sym_RPAREN] = ACTIONS(5044), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_PLUS] = ACTIONS(5042), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_PERCENT] = ACTIONS(5044), + [anon_sym_PIPE_PIPE] = ACTIONS(5044), + [anon_sym_AMP_AMP] = ACTIONS(5044), + [anon_sym_PIPE] = ACTIONS(5042), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_EQ_EQ] = ACTIONS(5044), + [anon_sym_BANG_EQ] = ACTIONS(5044), + [anon_sym_GT] = ACTIONS(5042), + [anon_sym_GT_EQ] = ACTIONS(5044), + [anon_sym_LT_EQ] = ACTIONS(5042), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_LT_LT] = ACTIONS(5044), + [anon_sym_GT_GT] = ACTIONS(5044), + [anon_sym_SEMI] = ACTIONS(5044), + [anon_sym___extension__] = ACTIONS(5042), + [anon_sym___attribute__] = ACTIONS(5042), + [anon_sym___attribute] = ACTIONS(5042), + [anon_sym___based] = ACTIONS(5042), + [anon_sym_LBRACE] = ACTIONS(5044), + [anon_sym_RBRACE] = ACTIONS(5044), + [anon_sym_signed] = ACTIONS(5042), + [anon_sym_unsigned] = ACTIONS(5042), + [anon_sym_long] = ACTIONS(5042), + [anon_sym_short] = ACTIONS(5042), + [anon_sym_LBRACK] = ACTIONS(5044), + [anon_sym_RBRACK] = ACTIONS(5044), + [anon_sym_const] = ACTIONS(5042), + [anon_sym_constexpr] = ACTIONS(5042), + [anon_sym_volatile] = ACTIONS(5042), + [anon_sym_restrict] = ACTIONS(5042), + [anon_sym___restrict__] = ACTIONS(5042), + [anon_sym__Atomic] = ACTIONS(5042), + [anon_sym__Noreturn] = ACTIONS(5042), + [anon_sym_noreturn] = ACTIONS(5042), + [anon_sym__Nonnull] = ACTIONS(5042), + [anon_sym_mutable] = ACTIONS(5042), + [anon_sym_constinit] = ACTIONS(5042), + [anon_sym_consteval] = ACTIONS(5042), + [anon_sym_alignas] = ACTIONS(5042), + [anon_sym__Alignas] = ACTIONS(5042), + [sym_primitive_type] = ACTIONS(5042), + [anon_sym_COLON] = ACTIONS(5044), + [anon_sym_QMARK] = ACTIONS(5044), + [anon_sym_LT_EQ_GT] = ACTIONS(5044), + [anon_sym_or] = ACTIONS(5042), + [anon_sym_and] = ACTIONS(5042), + [anon_sym_bitor] = ACTIONS(5042), + [anon_sym_xor] = ACTIONS(5042), + [anon_sym_bitand] = ACTIONS(5042), + [anon_sym_not_eq] = ACTIONS(5042), + [anon_sym_DASH_DASH] = ACTIONS(5044), + [anon_sym_PLUS_PLUS] = ACTIONS(5044), + [anon_sym_DOT] = ACTIONS(5042), + [anon_sym_DOT_STAR] = ACTIONS(5044), + [anon_sym_DASH_GT] = ACTIONS(5044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5042), + [anon_sym_decltype] = ACTIONS(5042), + [anon_sym_final] = ACTIONS(5042), + [anon_sym_override] = ACTIONS(5042), + [anon_sym_requires] = ACTIONS(5042), + }, + [STATE(2505)] = { + [sym_identifier] = ACTIONS(5046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_RPAREN] = ACTIONS(5048), + [anon_sym_LPAREN2] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_PLUS] = ACTIONS(5046), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_SLASH] = ACTIONS(5046), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_PIPE_PIPE] = ACTIONS(5048), + [anon_sym_AMP_AMP] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5046), + [anon_sym_CARET] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_EQ_EQ] = ACTIONS(5048), + [anon_sym_BANG_EQ] = ACTIONS(5048), + [anon_sym_GT] = ACTIONS(5046), + [anon_sym_GT_EQ] = ACTIONS(5048), + [anon_sym_LT_EQ] = ACTIONS(5046), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_LT_LT] = ACTIONS(5048), + [anon_sym_GT_GT] = ACTIONS(5048), + [anon_sym_SEMI] = ACTIONS(5048), + [anon_sym___extension__] = ACTIONS(5046), + [anon_sym___attribute__] = ACTIONS(5046), + [anon_sym___attribute] = ACTIONS(5046), + [anon_sym___based] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5048), + [anon_sym_RBRACE] = ACTIONS(5048), + [anon_sym_signed] = ACTIONS(5046), + [anon_sym_unsigned] = ACTIONS(5046), + [anon_sym_long] = ACTIONS(5046), + [anon_sym_short] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5048), + [anon_sym_RBRACK] = ACTIONS(5048), + [anon_sym_const] = ACTIONS(5046), + [anon_sym_constexpr] = ACTIONS(5046), + [anon_sym_volatile] = ACTIONS(5046), + [anon_sym_restrict] = ACTIONS(5046), + [anon_sym___restrict__] = ACTIONS(5046), + [anon_sym__Atomic] = ACTIONS(5046), + [anon_sym__Noreturn] = ACTIONS(5046), + [anon_sym_noreturn] = ACTIONS(5046), + [anon_sym__Nonnull] = ACTIONS(5046), + [anon_sym_mutable] = ACTIONS(5046), + [anon_sym_constinit] = ACTIONS(5046), + [anon_sym_consteval] = ACTIONS(5046), + [anon_sym_alignas] = ACTIONS(5046), + [anon_sym__Alignas] = ACTIONS(5046), + [sym_primitive_type] = ACTIONS(5046), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_QMARK] = ACTIONS(5048), + [anon_sym_LT_EQ_GT] = ACTIONS(5048), + [anon_sym_or] = ACTIONS(5046), + [anon_sym_and] = ACTIONS(5046), + [anon_sym_bitor] = ACTIONS(5046), + [anon_sym_xor] = ACTIONS(5046), + [anon_sym_bitand] = ACTIONS(5046), + [anon_sym_not_eq] = ACTIONS(5046), + [anon_sym_DASH_DASH] = ACTIONS(5048), + [anon_sym_PLUS_PLUS] = ACTIONS(5048), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_DOT_STAR] = ACTIONS(5048), + [anon_sym_DASH_GT] = ACTIONS(5048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5046), + [anon_sym_decltype] = ACTIONS(5046), + [anon_sym_final] = ACTIONS(5046), + [anon_sym_override] = ACTIONS(5046), + [anon_sym_requires] = ACTIONS(5046), + }, + [STATE(2506)] = { + [sym_identifier] = ACTIONS(5038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_SLASH] = ACTIONS(5038), + [anon_sym_PERCENT] = ACTIONS(5040), + [anon_sym_PIPE_PIPE] = ACTIONS(5040), + [anon_sym_AMP_AMP] = ACTIONS(5040), + [anon_sym_PIPE] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5040), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_EQ_EQ] = ACTIONS(5040), + [anon_sym_BANG_EQ] = ACTIONS(5040), + [anon_sym_GT] = ACTIONS(5038), + [anon_sym_GT_EQ] = ACTIONS(5040), + [anon_sym_LT_EQ] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_LT_LT] = ACTIONS(5040), + [anon_sym_GT_GT] = ACTIONS(5040), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym___extension__] = ACTIONS(5038), + [anon_sym___attribute__] = ACTIONS(5038), + [anon_sym___attribute] = ACTIONS(5038), + [anon_sym___based] = ACTIONS(5038), + [anon_sym_LBRACE] = ACTIONS(5040), + [anon_sym_RBRACE] = ACTIONS(5040), + [anon_sym_signed] = ACTIONS(5038), + [anon_sym_unsigned] = ACTIONS(5038), + [anon_sym_long] = ACTIONS(5038), + [anon_sym_short] = ACTIONS(5038), + [anon_sym_LBRACK] = ACTIONS(5040), + [anon_sym_RBRACK] = ACTIONS(5040), + [anon_sym_const] = ACTIONS(5038), + [anon_sym_constexpr] = ACTIONS(5038), + [anon_sym_volatile] = ACTIONS(5038), + [anon_sym_restrict] = ACTIONS(5038), + [anon_sym___restrict__] = ACTIONS(5038), + [anon_sym__Atomic] = ACTIONS(5038), + [anon_sym__Noreturn] = ACTIONS(5038), + [anon_sym_noreturn] = ACTIONS(5038), + [anon_sym__Nonnull] = ACTIONS(5038), + [anon_sym_mutable] = ACTIONS(5038), + [anon_sym_constinit] = ACTIONS(5038), + [anon_sym_consteval] = ACTIONS(5038), + [anon_sym_alignas] = ACTIONS(5038), + [anon_sym__Alignas] = ACTIONS(5038), + [sym_primitive_type] = ACTIONS(5038), + [anon_sym_COLON] = ACTIONS(5040), + [anon_sym_QMARK] = ACTIONS(5040), + [anon_sym_LT_EQ_GT] = ACTIONS(5040), + [anon_sym_or] = ACTIONS(5038), + [anon_sym_and] = ACTIONS(5038), + [anon_sym_bitor] = ACTIONS(5038), + [anon_sym_xor] = ACTIONS(5038), + [anon_sym_bitand] = ACTIONS(5038), + [anon_sym_not_eq] = ACTIONS(5038), + [anon_sym_DASH_DASH] = ACTIONS(5040), + [anon_sym_PLUS_PLUS] = ACTIONS(5040), + [anon_sym_DOT] = ACTIONS(5038), + [anon_sym_DOT_STAR] = ACTIONS(5040), + [anon_sym_DASH_GT] = ACTIONS(5040), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5038), + [anon_sym_decltype] = ACTIONS(5038), + [anon_sym_final] = ACTIONS(5038), + [anon_sym_override] = ACTIONS(5038), + [anon_sym_requires] = ACTIONS(5038), + }, + [STATE(2507)] = { + [sym_field_declaration_list] = STATE(2672), + [sym_virtual_specifier] = STATE(7249), + [sym_base_class_clause] = STATE(8317), + [sym_identifier] = ACTIONS(5124), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5126), + [anon_sym_COMMA] = ACTIONS(5126), + [anon_sym_RPAREN] = ACTIONS(5126), + [aux_sym_preproc_if_token2] = ACTIONS(5126), + [aux_sym_preproc_else_token1] = ACTIONS(5126), + [aux_sym_preproc_elif_token1] = ACTIONS(5124), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5126), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5126), + [anon_sym_LPAREN2] = ACTIONS(5126), + [anon_sym_DASH] = ACTIONS(5124), + [anon_sym_PLUS] = ACTIONS(5124), + [anon_sym_STAR] = ACTIONS(5124), + [anon_sym_SLASH] = ACTIONS(5124), + [anon_sym_PERCENT] = ACTIONS(5124), + [anon_sym_PIPE_PIPE] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_PIPE] = ACTIONS(5124), + [anon_sym_CARET] = ACTIONS(5124), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_EQ_EQ] = ACTIONS(5126), + [anon_sym_BANG_EQ] = ACTIONS(5126), + [anon_sym_GT] = ACTIONS(5124), + [anon_sym_GT_EQ] = ACTIONS(5126), + [anon_sym_LT_EQ] = ACTIONS(5124), + [anon_sym_LT] = ACTIONS(5124), + [anon_sym_LT_LT] = ACTIONS(5124), + [anon_sym_GT_GT] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(5126), + [anon_sym___attribute__] = ACTIONS(5124), + [anon_sym___attribute] = ACTIONS(5124), + [anon_sym_LBRACE] = ACTIONS(6291), + [anon_sym_RBRACE] = ACTIONS(5126), + [anon_sym_LBRACK] = ACTIONS(5126), + [anon_sym_RBRACK] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5126), + [anon_sym_STAR_EQ] = ACTIONS(5126), + [anon_sym_SLASH_EQ] = ACTIONS(5126), + [anon_sym_PERCENT_EQ] = ACTIONS(5126), + [anon_sym_PLUS_EQ] = ACTIONS(5126), + [anon_sym_DASH_EQ] = ACTIONS(5126), + [anon_sym_LT_LT_EQ] = ACTIONS(5126), + [anon_sym_GT_GT_EQ] = ACTIONS(5126), + [anon_sym_AMP_EQ] = ACTIONS(5126), + [anon_sym_CARET_EQ] = ACTIONS(5126), + [anon_sym_PIPE_EQ] = ACTIONS(5126), + [anon_sym_and_eq] = ACTIONS(5124), + [anon_sym_or_eq] = ACTIONS(5124), + [anon_sym_xor_eq] = ACTIONS(5124), + [anon_sym_LT_EQ_GT] = ACTIONS(5126), + [anon_sym_or] = ACTIONS(5124), + [anon_sym_and] = ACTIONS(5124), + [anon_sym_bitor] = ACTIONS(5124), + [anon_sym_xor] = ACTIONS(5124), + [anon_sym_bitand] = ACTIONS(5124), + [anon_sym_not_eq] = ACTIONS(5124), + [anon_sym_DASH_DASH] = ACTIONS(5126), + [anon_sym_PLUS_PLUS] = ACTIONS(5126), + [anon_sym_DOT] = ACTIONS(5124), + [anon_sym_DOT_STAR] = ACTIONS(5126), + [anon_sym_DASH_GT] = ACTIONS(5126), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5124), + [anon_sym_decltype] = ACTIONS(5124), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + }, + [STATE(2508)] = { + [sym_identifier] = ACTIONS(5104), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5106), + [anon_sym_COMMA] = ACTIONS(5106), + [anon_sym_RPAREN] = ACTIONS(5106), + [anon_sym_LPAREN2] = ACTIONS(5106), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_PLUS] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5106), + [anon_sym_SLASH] = ACTIONS(5104), + [anon_sym_PERCENT] = ACTIONS(5106), + [anon_sym_PIPE_PIPE] = ACTIONS(5106), + [anon_sym_AMP_AMP] = ACTIONS(5106), + [anon_sym_PIPE] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5106), + [anon_sym_AMP] = ACTIONS(5104), + [anon_sym_EQ_EQ] = ACTIONS(5106), + [anon_sym_BANG_EQ] = ACTIONS(5106), + [anon_sym_GT] = ACTIONS(5104), + [anon_sym_GT_EQ] = ACTIONS(5106), + [anon_sym_LT_EQ] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5104), + [anon_sym_LT_LT] = ACTIONS(5106), + [anon_sym_GT_GT] = ACTIONS(5106), + [anon_sym_SEMI] = ACTIONS(5106), + [anon_sym___extension__] = ACTIONS(5104), + [anon_sym___attribute__] = ACTIONS(5104), + [anon_sym___attribute] = ACTIONS(5104), + [anon_sym___based] = ACTIONS(5104), + [anon_sym_LBRACE] = ACTIONS(5106), + [anon_sym_RBRACE] = ACTIONS(5106), + [anon_sym_signed] = ACTIONS(5104), + [anon_sym_unsigned] = ACTIONS(5104), + [anon_sym_long] = ACTIONS(5104), + [anon_sym_short] = ACTIONS(5104), + [anon_sym_LBRACK] = ACTIONS(5106), + [anon_sym_RBRACK] = ACTIONS(5106), + [anon_sym_const] = ACTIONS(5104), + [anon_sym_constexpr] = ACTIONS(5104), + [anon_sym_volatile] = ACTIONS(5104), + [anon_sym_restrict] = ACTIONS(5104), + [anon_sym___restrict__] = ACTIONS(5104), + [anon_sym__Atomic] = ACTIONS(5104), + [anon_sym__Noreturn] = ACTIONS(5104), + [anon_sym_noreturn] = ACTIONS(5104), + [anon_sym__Nonnull] = ACTIONS(5104), + [anon_sym_mutable] = ACTIONS(5104), + [anon_sym_constinit] = ACTIONS(5104), + [anon_sym_consteval] = ACTIONS(5104), + [anon_sym_alignas] = ACTIONS(5104), + [anon_sym__Alignas] = ACTIONS(5104), + [sym_primitive_type] = ACTIONS(5104), + [anon_sym_COLON] = ACTIONS(5106), + [anon_sym_QMARK] = ACTIONS(5106), + [anon_sym_LT_EQ_GT] = ACTIONS(5106), + [anon_sym_or] = ACTIONS(5104), + [anon_sym_and] = ACTIONS(5104), + [anon_sym_bitor] = ACTIONS(5104), + [anon_sym_xor] = ACTIONS(5104), + [anon_sym_bitand] = ACTIONS(5104), + [anon_sym_not_eq] = ACTIONS(5104), + [anon_sym_DASH_DASH] = ACTIONS(5106), + [anon_sym_PLUS_PLUS] = ACTIONS(5106), + [anon_sym_DOT] = ACTIONS(5104), + [anon_sym_DOT_STAR] = ACTIONS(5106), + [anon_sym_DASH_GT] = ACTIONS(5106), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5104), + [anon_sym_decltype] = ACTIONS(5104), + [anon_sym_final] = ACTIONS(5104), + [anon_sym_override] = ACTIONS(5104), + [anon_sym_requires] = ACTIONS(5104), + }, + [STATE(2509)] = { + [sym_field_declaration_list] = STATE(2674), + [sym_virtual_specifier] = STATE(7269), + [sym_base_class_clause] = STATE(8336), + [sym_identifier] = ACTIONS(5134), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5136), + [anon_sym_COMMA] = ACTIONS(5136), + [anon_sym_RPAREN] = ACTIONS(5136), + [aux_sym_preproc_if_token2] = ACTIONS(5136), + [aux_sym_preproc_else_token1] = ACTIONS(5136), + [aux_sym_preproc_elif_token1] = ACTIONS(5134), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5136), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5136), + [anon_sym_LPAREN2] = ACTIONS(5136), + [anon_sym_DASH] = ACTIONS(5134), + [anon_sym_PLUS] = ACTIONS(5134), + [anon_sym_STAR] = ACTIONS(5134), + [anon_sym_SLASH] = ACTIONS(5134), + [anon_sym_PERCENT] = ACTIONS(5134), + [anon_sym_PIPE_PIPE] = ACTIONS(5136), + [anon_sym_AMP_AMP] = ACTIONS(5136), + [anon_sym_PIPE] = ACTIONS(5134), + [anon_sym_CARET] = ACTIONS(5134), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_EQ_EQ] = ACTIONS(5136), + [anon_sym_BANG_EQ] = ACTIONS(5136), + [anon_sym_GT] = ACTIONS(5134), + [anon_sym_GT_EQ] = ACTIONS(5136), + [anon_sym_LT_EQ] = ACTIONS(5134), + [anon_sym_LT] = ACTIONS(5134), + [anon_sym_LT_LT] = ACTIONS(5134), + [anon_sym_GT_GT] = ACTIONS(5134), + [anon_sym_SEMI] = ACTIONS(5136), + [anon_sym___attribute__] = ACTIONS(5134), + [anon_sym___attribute] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(6291), + [anon_sym_RBRACE] = ACTIONS(5136), + [anon_sym_LBRACK] = ACTIONS(5136), + [anon_sym_RBRACK] = ACTIONS(5136), + [anon_sym_EQ] = ACTIONS(5134), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5136), + [anon_sym_STAR_EQ] = ACTIONS(5136), + [anon_sym_SLASH_EQ] = ACTIONS(5136), + [anon_sym_PERCENT_EQ] = ACTIONS(5136), + [anon_sym_PLUS_EQ] = ACTIONS(5136), + [anon_sym_DASH_EQ] = ACTIONS(5136), + [anon_sym_LT_LT_EQ] = ACTIONS(5136), + [anon_sym_GT_GT_EQ] = ACTIONS(5136), + [anon_sym_AMP_EQ] = ACTIONS(5136), + [anon_sym_CARET_EQ] = ACTIONS(5136), + [anon_sym_PIPE_EQ] = ACTIONS(5136), + [anon_sym_and_eq] = ACTIONS(5134), + [anon_sym_or_eq] = ACTIONS(5134), + [anon_sym_xor_eq] = ACTIONS(5134), + [anon_sym_LT_EQ_GT] = ACTIONS(5136), + [anon_sym_or] = ACTIONS(5134), + [anon_sym_and] = ACTIONS(5134), + [anon_sym_bitor] = ACTIONS(5134), + [anon_sym_xor] = ACTIONS(5134), + [anon_sym_bitand] = ACTIONS(5134), + [anon_sym_not_eq] = ACTIONS(5134), + [anon_sym_DASH_DASH] = ACTIONS(5136), + [anon_sym_PLUS_PLUS] = ACTIONS(5136), + [anon_sym_DOT] = ACTIONS(5134), + [anon_sym_DOT_STAR] = ACTIONS(5136), + [anon_sym_DASH_GT] = ACTIONS(5136), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5134), + [anon_sym_decltype] = ACTIONS(5134), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + }, + [STATE(2510)] = { + [sym_identifier] = ACTIONS(4914), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_RPAREN] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_PLUS] = ACTIONS(4914), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_SLASH] = ACTIONS(4914), + [anon_sym_PERCENT] = ACTIONS(4916), + [anon_sym_PIPE_PIPE] = ACTIONS(4916), + [anon_sym_AMP_AMP] = ACTIONS(4916), + [anon_sym_PIPE] = ACTIONS(4914), + [anon_sym_CARET] = ACTIONS(4916), + [anon_sym_AMP] = ACTIONS(4914), + [anon_sym_EQ_EQ] = ACTIONS(4916), + [anon_sym_BANG_EQ] = ACTIONS(4916), + [anon_sym_GT] = ACTIONS(4914), + [anon_sym_GT_EQ] = ACTIONS(4916), + [anon_sym_LT_EQ] = ACTIONS(4914), + [anon_sym_LT] = ACTIONS(4914), + [anon_sym_LT_LT] = ACTIONS(4916), + [anon_sym_GT_GT] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym___extension__] = ACTIONS(4914), + [anon_sym___attribute__] = ACTIONS(4914), + [anon_sym___attribute] = ACTIONS(4914), + [anon_sym___based] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_RBRACE] = ACTIONS(4916), + [anon_sym_signed] = ACTIONS(4914), + [anon_sym_unsigned] = ACTIONS(4914), + [anon_sym_long] = ACTIONS(4914), + [anon_sym_short] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym_RBRACK] = ACTIONS(4916), + [anon_sym_const] = ACTIONS(4914), + [anon_sym_constexpr] = ACTIONS(4914), + [anon_sym_volatile] = ACTIONS(4914), + [anon_sym_restrict] = ACTIONS(4914), + [anon_sym___restrict__] = ACTIONS(4914), + [anon_sym__Atomic] = ACTIONS(4914), + [anon_sym__Noreturn] = ACTIONS(4914), + [anon_sym_noreturn] = ACTIONS(4914), + [anon_sym__Nonnull] = ACTIONS(4914), + [anon_sym_mutable] = ACTIONS(4914), + [anon_sym_constinit] = ACTIONS(4914), + [anon_sym_consteval] = ACTIONS(4914), + [anon_sym_alignas] = ACTIONS(4914), + [anon_sym__Alignas] = ACTIONS(4914), + [sym_primitive_type] = ACTIONS(4914), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_QMARK] = ACTIONS(4916), + [anon_sym_LT_EQ_GT] = ACTIONS(4916), + [anon_sym_or] = ACTIONS(4914), + [anon_sym_and] = ACTIONS(4914), + [anon_sym_bitor] = ACTIONS(4914), + [anon_sym_xor] = ACTIONS(4914), + [anon_sym_bitand] = ACTIONS(4914), + [anon_sym_not_eq] = ACTIONS(4914), + [anon_sym_DASH_DASH] = ACTIONS(4916), + [anon_sym_PLUS_PLUS] = ACTIONS(4916), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_DOT_STAR] = ACTIONS(4916), + [anon_sym_DASH_GT] = ACTIONS(4916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4914), + [anon_sym_decltype] = ACTIONS(4914), + [anon_sym_final] = ACTIONS(4914), + [anon_sym_override] = ACTIONS(4914), + [anon_sym_requires] = ACTIONS(4914), + }, + [STATE(2511)] = { + [sym_identifier] = ACTIONS(4918), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4918), + [anon_sym_PLUS] = ACTIONS(4918), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4918), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_PIPE_PIPE] = ACTIONS(4920), + [anon_sym_AMP_AMP] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4918), + [anon_sym_CARET] = ACTIONS(4920), + [anon_sym_AMP] = ACTIONS(4918), + [anon_sym_EQ_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4918), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_LT_EQ] = ACTIONS(4918), + [anon_sym_LT] = ACTIONS(4918), + [anon_sym_LT_LT] = ACTIONS(4920), + [anon_sym_GT_GT] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym___attribute__] = ACTIONS(4918), + [anon_sym___attribute] = ACTIONS(4918), + [anon_sym___based] = ACTIONS(4918), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_signed] = ACTIONS(4918), + [anon_sym_unsigned] = ACTIONS(4918), + [anon_sym_long] = ACTIONS(4918), + [anon_sym_short] = ACTIONS(4918), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_RBRACK] = ACTIONS(4920), + [anon_sym_const] = ACTIONS(4918), + [anon_sym_constexpr] = ACTIONS(4918), + [anon_sym_volatile] = ACTIONS(4918), + [anon_sym_restrict] = ACTIONS(4918), + [anon_sym___restrict__] = ACTIONS(4918), + [anon_sym__Atomic] = ACTIONS(4918), + [anon_sym__Noreturn] = ACTIONS(4918), + [anon_sym_noreturn] = ACTIONS(4918), + [anon_sym__Nonnull] = ACTIONS(4918), + [anon_sym_mutable] = ACTIONS(4918), + [anon_sym_constinit] = ACTIONS(4918), + [anon_sym_consteval] = ACTIONS(4918), + [anon_sym_alignas] = ACTIONS(4918), + [anon_sym__Alignas] = ACTIONS(4918), + [sym_primitive_type] = ACTIONS(4918), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_QMARK] = ACTIONS(4920), + [anon_sym_LT_EQ_GT] = ACTIONS(4920), + [anon_sym_or] = ACTIONS(4918), + [anon_sym_and] = ACTIONS(4918), + [anon_sym_bitor] = ACTIONS(4918), + [anon_sym_xor] = ACTIONS(4918), + [anon_sym_bitand] = ACTIONS(4918), + [anon_sym_not_eq] = ACTIONS(4918), + [anon_sym_DASH_DASH] = ACTIONS(4920), + [anon_sym_PLUS_PLUS] = ACTIONS(4920), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_DOT_STAR] = ACTIONS(4920), + [anon_sym_DASH_GT] = ACTIONS(4920), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4918), + [anon_sym_decltype] = ACTIONS(4918), + [anon_sym_final] = ACTIONS(4918), + [anon_sym_override] = ACTIONS(4918), + [anon_sym_requires] = ACTIONS(4918), + }, + [STATE(2512)] = { + [sym_identifier] = ACTIONS(4902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [anon_sym_LPAREN2] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_PLUS] = ACTIONS(4902), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4902), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_PIPE_PIPE] = ACTIONS(4904), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4902), + [anon_sym_CARET] = ACTIONS(4904), + [anon_sym_AMP] = ACTIONS(4902), + [anon_sym_EQ_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ] = ACTIONS(4904), + [anon_sym_GT] = ACTIONS(4902), + [anon_sym_GT_EQ] = ACTIONS(4904), + [anon_sym_LT_EQ] = ACTIONS(4902), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_LT_LT] = ACTIONS(4904), + [anon_sym_GT_GT] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym___attribute__] = ACTIONS(4902), + [anon_sym___attribute] = ACTIONS(4902), + [anon_sym___based] = ACTIONS(4902), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_RBRACE] = ACTIONS(4904), + [anon_sym_signed] = ACTIONS(4902), + [anon_sym_unsigned] = ACTIONS(4902), + [anon_sym_long] = ACTIONS(4902), + [anon_sym_short] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_RBRACK] = ACTIONS(4904), + [anon_sym_const] = ACTIONS(4902), + [anon_sym_constexpr] = ACTIONS(4902), + [anon_sym_volatile] = ACTIONS(4902), + [anon_sym_restrict] = ACTIONS(4902), + [anon_sym___restrict__] = ACTIONS(4902), + [anon_sym__Atomic] = ACTIONS(4902), + [anon_sym__Noreturn] = ACTIONS(4902), + [anon_sym_noreturn] = ACTIONS(4902), + [anon_sym__Nonnull] = ACTIONS(4902), + [anon_sym_mutable] = ACTIONS(4902), + [anon_sym_constinit] = ACTIONS(4902), + [anon_sym_consteval] = ACTIONS(4902), + [anon_sym_alignas] = ACTIONS(4902), + [anon_sym__Alignas] = ACTIONS(4902), + [sym_primitive_type] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_QMARK] = ACTIONS(4904), + [anon_sym_LT_EQ_GT] = ACTIONS(4904), + [anon_sym_or] = ACTIONS(4902), + [anon_sym_and] = ACTIONS(4902), + [anon_sym_bitor] = ACTIONS(4902), + [anon_sym_xor] = ACTIONS(4902), + [anon_sym_bitand] = ACTIONS(4902), + [anon_sym_not_eq] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(4904), + [anon_sym_PLUS_PLUS] = ACTIONS(4904), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_DOT_STAR] = ACTIONS(4904), + [anon_sym_DASH_GT] = ACTIONS(4904), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4902), + [anon_sym_decltype] = ACTIONS(4902), + [anon_sym_final] = ACTIONS(4902), + [anon_sym_override] = ACTIONS(4902), + [anon_sym_requires] = ACTIONS(4902), + }, + [STATE(2513)] = { + [sym_identifier] = ACTIONS(5112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5114), + [anon_sym_COMMA] = ACTIONS(5114), + [anon_sym_RPAREN] = ACTIONS(5114), + [anon_sym_LPAREN2] = ACTIONS(5114), + [anon_sym_DASH] = ACTIONS(5112), + [anon_sym_PLUS] = ACTIONS(5112), + [anon_sym_STAR] = ACTIONS(5114), + [anon_sym_SLASH] = ACTIONS(5112), + [anon_sym_PERCENT] = ACTIONS(5114), + [anon_sym_PIPE_PIPE] = ACTIONS(5114), + [anon_sym_AMP_AMP] = ACTIONS(5114), + [anon_sym_PIPE] = ACTIONS(5112), + [anon_sym_CARET] = ACTIONS(5114), + [anon_sym_AMP] = ACTIONS(5112), + [anon_sym_EQ_EQ] = ACTIONS(5114), + [anon_sym_BANG_EQ] = ACTIONS(5114), + [anon_sym_GT] = ACTIONS(5112), + [anon_sym_GT_EQ] = ACTIONS(5114), + [anon_sym_LT_EQ] = ACTIONS(5112), + [anon_sym_LT] = ACTIONS(5112), + [anon_sym_LT_LT] = ACTIONS(5114), + [anon_sym_GT_GT] = ACTIONS(5114), + [anon_sym_SEMI] = ACTIONS(5114), + [anon_sym___extension__] = ACTIONS(5112), + [anon_sym___attribute__] = ACTIONS(5112), + [anon_sym___attribute] = ACTIONS(5112), + [anon_sym___based] = ACTIONS(5112), + [anon_sym_LBRACE] = ACTIONS(5114), + [anon_sym_RBRACE] = ACTIONS(5114), + [anon_sym_signed] = ACTIONS(5112), + [anon_sym_unsigned] = ACTIONS(5112), + [anon_sym_long] = ACTIONS(5112), + [anon_sym_short] = ACTIONS(5112), + [anon_sym_LBRACK] = ACTIONS(5114), + [anon_sym_RBRACK] = ACTIONS(5114), + [anon_sym_const] = ACTIONS(5112), + [anon_sym_constexpr] = ACTIONS(5112), + [anon_sym_volatile] = ACTIONS(5112), + [anon_sym_restrict] = ACTIONS(5112), + [anon_sym___restrict__] = ACTIONS(5112), + [anon_sym__Atomic] = ACTIONS(5112), + [anon_sym__Noreturn] = ACTIONS(5112), + [anon_sym_noreturn] = ACTIONS(5112), + [anon_sym__Nonnull] = ACTIONS(5112), + [anon_sym_mutable] = ACTIONS(5112), + [anon_sym_constinit] = ACTIONS(5112), + [anon_sym_consteval] = ACTIONS(5112), + [anon_sym_alignas] = ACTIONS(5112), + [anon_sym__Alignas] = ACTIONS(5112), + [sym_primitive_type] = ACTIONS(5112), + [anon_sym_COLON] = ACTIONS(5114), + [anon_sym_QMARK] = ACTIONS(5114), + [anon_sym_LT_EQ_GT] = ACTIONS(5114), + [anon_sym_or] = ACTIONS(5112), + [anon_sym_and] = ACTIONS(5112), + [anon_sym_bitor] = ACTIONS(5112), + [anon_sym_xor] = ACTIONS(5112), + [anon_sym_bitand] = ACTIONS(5112), + [anon_sym_not_eq] = ACTIONS(5112), + [anon_sym_DASH_DASH] = ACTIONS(5114), + [anon_sym_PLUS_PLUS] = ACTIONS(5114), + [anon_sym_DOT] = ACTIONS(5112), + [anon_sym_DOT_STAR] = ACTIONS(5114), + [anon_sym_DASH_GT] = ACTIONS(5114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5112), + [anon_sym_decltype] = ACTIONS(5112), + [anon_sym_final] = ACTIONS(5112), + [anon_sym_override] = ACTIONS(5112), + [anon_sym_requires] = ACTIONS(5112), + }, + [STATE(2514)] = { + [sym_identifier] = ACTIONS(5006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [anon_sym_LPAREN2] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_SLASH] = ACTIONS(5006), + [anon_sym_PERCENT] = ACTIONS(5008), + [anon_sym_PIPE_PIPE] = ACTIONS(5008), + [anon_sym_AMP_AMP] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_EQ_EQ] = ACTIONS(5008), + [anon_sym_BANG_EQ] = ACTIONS(5008), + [anon_sym_GT] = ACTIONS(5006), + [anon_sym_GT_EQ] = ACTIONS(5008), + [anon_sym_LT_EQ] = ACTIONS(5006), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_LT_LT] = ACTIONS(5008), + [anon_sym_GT_GT] = ACTIONS(5008), + [anon_sym_SEMI] = ACTIONS(5008), + [anon_sym___extension__] = ACTIONS(5006), + [anon_sym___attribute__] = ACTIONS(5006), + [anon_sym___attribute] = ACTIONS(5006), + [anon_sym___based] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_RBRACE] = ACTIONS(5008), + [anon_sym_signed] = ACTIONS(5006), + [anon_sym_unsigned] = ACTIONS(5006), + [anon_sym_long] = ACTIONS(5006), + [anon_sym_short] = ACTIONS(5006), + [anon_sym_LBRACK] = ACTIONS(5008), + [anon_sym_RBRACK] = ACTIONS(5008), + [anon_sym_const] = ACTIONS(5006), + [anon_sym_constexpr] = ACTIONS(5006), + [anon_sym_volatile] = ACTIONS(5006), + [anon_sym_restrict] = ACTIONS(5006), + [anon_sym___restrict__] = ACTIONS(5006), + [anon_sym__Atomic] = ACTIONS(5006), + [anon_sym__Noreturn] = ACTIONS(5006), + [anon_sym_noreturn] = ACTIONS(5006), + [anon_sym__Nonnull] = ACTIONS(5006), + [anon_sym_mutable] = ACTIONS(5006), + [anon_sym_constinit] = ACTIONS(5006), + [anon_sym_consteval] = ACTIONS(5006), + [anon_sym_alignas] = ACTIONS(5006), + [anon_sym__Alignas] = ACTIONS(5006), + [sym_primitive_type] = ACTIONS(5006), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_QMARK] = ACTIONS(5008), + [anon_sym_LT_EQ_GT] = ACTIONS(5008), + [anon_sym_or] = ACTIONS(5006), + [anon_sym_and] = ACTIONS(5006), + [anon_sym_bitor] = ACTIONS(5006), + [anon_sym_xor] = ACTIONS(5006), + [anon_sym_bitand] = ACTIONS(5006), + [anon_sym_not_eq] = ACTIONS(5006), + [anon_sym_DASH_DASH] = ACTIONS(5008), + [anon_sym_PLUS_PLUS] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_DOT_STAR] = ACTIONS(5008), + [anon_sym_DASH_GT] = ACTIONS(5008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5006), + [anon_sym_decltype] = ACTIONS(5006), + [anon_sym_final] = ACTIONS(5006), + [anon_sym_override] = ACTIONS(5006), + [anon_sym_requires] = ACTIONS(5006), + }, + [STATE(2515)] = { + [sym_type_qualifier] = STATE(2517), + [sym_alignas_qualifier] = STATE(2434), + [aux_sym__type_definition_type_repeat1] = STATE(2517), + [aux_sym_sized_type_specifier_repeat1] = STATE(2585), + [sym_identifier] = ACTIONS(6571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4721), + [anon_sym_COMMA] = ACTIONS(4721), + [aux_sym_preproc_if_token2] = ACTIONS(4721), + [aux_sym_preproc_else_token1] = ACTIONS(4721), + [aux_sym_preproc_elif_token1] = ACTIONS(4723), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4721), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4721), + [anon_sym_LPAREN2] = ACTIONS(4721), + [anon_sym_DASH] = ACTIONS(4723), + [anon_sym_PLUS] = ACTIONS(4723), + [anon_sym_STAR] = ACTIONS(4721), + [anon_sym_SLASH] = ACTIONS(4723), + [anon_sym_PERCENT] = ACTIONS(4721), + [anon_sym_PIPE_PIPE] = ACTIONS(4721), + [anon_sym_AMP_AMP] = ACTIONS(4721), + [anon_sym_PIPE] = ACTIONS(4723), + [anon_sym_CARET] = ACTIONS(4721), + [anon_sym_AMP] = ACTIONS(4723), + [anon_sym_EQ_EQ] = ACTIONS(4721), + [anon_sym_BANG_EQ] = ACTIONS(4721), + [anon_sym_GT] = ACTIONS(4723), + [anon_sym_GT_EQ] = ACTIONS(4721), + [anon_sym_LT_EQ] = ACTIONS(4723), + [anon_sym_LT] = ACTIONS(4723), + [anon_sym_LT_LT] = ACTIONS(4721), + [anon_sym_GT_GT] = ACTIONS(4721), + [anon_sym___extension__] = ACTIONS(6547), + [anon_sym___attribute__] = ACTIONS(4723), + [anon_sym___attribute] = ACTIONS(4723), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_signed] = ACTIONS(6574), + [anon_sym_unsigned] = ACTIONS(6574), + [anon_sym_long] = ACTIONS(6574), + [anon_sym_short] = ACTIONS(6574), + [anon_sym_LBRACK] = ACTIONS(4721), + [anon_sym_const] = ACTIONS(6547), + [anon_sym_constexpr] = ACTIONS(6547), + [anon_sym_volatile] = ACTIONS(6547), + [anon_sym_restrict] = ACTIONS(6547), + [anon_sym___restrict__] = ACTIONS(6547), + [anon_sym__Atomic] = ACTIONS(6547), + [anon_sym__Noreturn] = ACTIONS(6547), + [anon_sym_noreturn] = ACTIONS(6547), + [anon_sym__Nonnull] = ACTIONS(6547), + [anon_sym_mutable] = ACTIONS(6547), + [anon_sym_constinit] = ACTIONS(6547), + [anon_sym_consteval] = ACTIONS(6547), + [anon_sym_alignas] = ACTIONS(6551), + [anon_sym__Alignas] = ACTIONS(6551), + [sym_primitive_type] = ACTIONS(6576), + [anon_sym_QMARK] = ACTIONS(4721), + [anon_sym_LT_EQ_GT] = ACTIONS(4721), + [anon_sym_or] = ACTIONS(4723), + [anon_sym_and] = ACTIONS(4723), + [anon_sym_bitor] = ACTIONS(4723), + [anon_sym_xor] = ACTIONS(4723), + [anon_sym_bitand] = ACTIONS(4723), + [anon_sym_not_eq] = ACTIONS(4723), + [anon_sym_DASH_DASH] = ACTIONS(4721), + [anon_sym_PLUS_PLUS] = ACTIONS(4721), + [anon_sym_DOT] = ACTIONS(4723), + [anon_sym_DOT_STAR] = ACTIONS(4721), + [anon_sym_DASH_GT] = ACTIONS(4721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4723), + [anon_sym_decltype] = ACTIONS(4723), + }, + [STATE(2516)] = { + [sym_identifier] = ACTIONS(4978), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4980), + [anon_sym_COMMA] = ACTIONS(4980), + [anon_sym_RPAREN] = ACTIONS(4980), + [anon_sym_LPAREN2] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4978), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4978), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_PIPE_PIPE] = ACTIONS(4980), + [anon_sym_AMP_AMP] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4978), + [anon_sym_CARET] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(4978), + [anon_sym_EQ_EQ] = ACTIONS(4980), + [anon_sym_BANG_EQ] = ACTIONS(4980), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_GT_EQ] = ACTIONS(4980), + [anon_sym_LT_EQ] = ACTIONS(4978), + [anon_sym_LT] = ACTIONS(4978), + [anon_sym_LT_LT] = ACTIONS(4980), + [anon_sym_GT_GT] = ACTIONS(4980), + [anon_sym_SEMI] = ACTIONS(4980), + [anon_sym___extension__] = ACTIONS(4978), + [anon_sym___attribute__] = ACTIONS(4978), + [anon_sym___attribute] = ACTIONS(4978), + [anon_sym___based] = ACTIONS(4978), + [anon_sym_LBRACE] = ACTIONS(4980), + [anon_sym_RBRACE] = ACTIONS(4980), + [anon_sym_signed] = ACTIONS(4978), + [anon_sym_unsigned] = ACTIONS(4978), + [anon_sym_long] = ACTIONS(4978), + [anon_sym_short] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4980), + [anon_sym_RBRACK] = ACTIONS(4980), + [anon_sym_const] = ACTIONS(4978), + [anon_sym_constexpr] = ACTIONS(4978), + [anon_sym_volatile] = ACTIONS(4978), + [anon_sym_restrict] = ACTIONS(4978), + [anon_sym___restrict__] = ACTIONS(4978), + [anon_sym__Atomic] = ACTIONS(4978), + [anon_sym__Noreturn] = ACTIONS(4978), + [anon_sym_noreturn] = ACTIONS(4978), + [anon_sym__Nonnull] = ACTIONS(4978), + [anon_sym_mutable] = ACTIONS(4978), + [anon_sym_constinit] = ACTIONS(4978), + [anon_sym_consteval] = ACTIONS(4978), + [anon_sym_alignas] = ACTIONS(4978), + [anon_sym__Alignas] = ACTIONS(4978), + [sym_primitive_type] = ACTIONS(4978), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_QMARK] = ACTIONS(4980), + [anon_sym_LT_EQ_GT] = ACTIONS(4980), + [anon_sym_or] = ACTIONS(4978), + [anon_sym_and] = ACTIONS(4978), + [anon_sym_bitor] = ACTIONS(4978), + [anon_sym_xor] = ACTIONS(4978), + [anon_sym_bitand] = ACTIONS(4978), + [anon_sym_not_eq] = ACTIONS(4978), + [anon_sym_DASH_DASH] = ACTIONS(4980), + [anon_sym_PLUS_PLUS] = ACTIONS(4980), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_DOT_STAR] = ACTIONS(4980), + [anon_sym_DASH_GT] = ACTIONS(4980), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4978), + [anon_sym_decltype] = ACTIONS(4978), + [anon_sym_final] = ACTIONS(4978), + [anon_sym_override] = ACTIONS(4978), + [anon_sym_requires] = ACTIONS(4978), + }, + [STATE(2517)] = { + [sym_type_qualifier] = STATE(2390), + [sym_alignas_qualifier] = STATE(2434), + [aux_sym__type_definition_type_repeat1] = STATE(2390), + [aux_sym_sized_type_specifier_repeat1] = STATE(3858), + [sym_identifier] = ACTIONS(6578), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [aux_sym_preproc_if_token2] = ACTIONS(4674), + [aux_sym_preproc_else_token1] = ACTIONS(4674), + [aux_sym_preproc_elif_token1] = ACTIONS(4676), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4674), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4674), + [anon_sym_LPAREN2] = ACTIONS(4674), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_PLUS] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4674), + [anon_sym_SLASH] = ACTIONS(4676), + [anon_sym_PERCENT] = ACTIONS(4674), + [anon_sym_PIPE_PIPE] = ACTIONS(4674), + [anon_sym_AMP_AMP] = ACTIONS(4674), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4674), + [anon_sym_AMP] = ACTIONS(4676), + [anon_sym_EQ_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4674), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4674), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_LT_LT] = ACTIONS(4674), + [anon_sym_GT_GT] = ACTIONS(4674), + [anon_sym___extension__] = ACTIONS(6547), + [anon_sym___attribute__] = ACTIONS(4676), + [anon_sym___attribute] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_signed] = ACTIONS(6581), + [anon_sym_unsigned] = ACTIONS(6581), + [anon_sym_long] = ACTIONS(6581), + [anon_sym_short] = ACTIONS(6581), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_const] = ACTIONS(6547), + [anon_sym_constexpr] = ACTIONS(6547), + [anon_sym_volatile] = ACTIONS(6547), + [anon_sym_restrict] = ACTIONS(6547), + [anon_sym___restrict__] = ACTIONS(6547), + [anon_sym__Atomic] = ACTIONS(6547), + [anon_sym__Noreturn] = ACTIONS(6547), + [anon_sym_noreturn] = ACTIONS(6547), + [anon_sym__Nonnull] = ACTIONS(6547), + [anon_sym_mutable] = ACTIONS(6547), + [anon_sym_constinit] = ACTIONS(6547), + [anon_sym_consteval] = ACTIONS(6547), + [anon_sym_alignas] = ACTIONS(6551), + [anon_sym__Alignas] = ACTIONS(6551), + [sym_primitive_type] = ACTIONS(6583), + [anon_sym_QMARK] = ACTIONS(4674), + [anon_sym_LT_EQ_GT] = ACTIONS(4674), + [anon_sym_or] = ACTIONS(4676), + [anon_sym_and] = ACTIONS(4676), + [anon_sym_bitor] = ACTIONS(4676), + [anon_sym_xor] = ACTIONS(4676), + [anon_sym_bitand] = ACTIONS(4676), + [anon_sym_not_eq] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4674), + [anon_sym_PLUS_PLUS] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_DOT_STAR] = ACTIONS(4674), + [anon_sym_DASH_GT] = ACTIONS(4674), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4676), + [anon_sym_decltype] = ACTIONS(4676), + }, + [STATE(2518)] = { + [sym_identifier] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4533), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4533), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_CARET] = ACTIONS(4533), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4533), + [anon_sym_BANG_EQ] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4531), + [anon_sym_LT_LT] = ACTIONS(4533), + [anon_sym_GT_GT] = ACTIONS(4533), + [anon_sym_SEMI] = ACTIONS(4533), + [anon_sym___extension__] = ACTIONS(4531), + [anon_sym___attribute__] = ACTIONS(4531), + [anon_sym___attribute] = ACTIONS(4531), + [anon_sym___based] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_signed] = ACTIONS(4531), + [anon_sym_unsigned] = ACTIONS(4531), + [anon_sym_long] = ACTIONS(4531), + [anon_sym_short] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_RBRACK] = ACTIONS(4533), + [anon_sym_const] = ACTIONS(4531), + [anon_sym_constexpr] = ACTIONS(4531), + [anon_sym_volatile] = ACTIONS(4531), + [anon_sym_restrict] = ACTIONS(4531), + [anon_sym___restrict__] = ACTIONS(4531), + [anon_sym__Atomic] = ACTIONS(4531), + [anon_sym__Noreturn] = ACTIONS(4531), + [anon_sym_noreturn] = ACTIONS(4531), + [anon_sym__Nonnull] = ACTIONS(4531), + [anon_sym_mutable] = ACTIONS(4531), + [anon_sym_constinit] = ACTIONS(4531), + [anon_sym_consteval] = ACTIONS(4531), + [anon_sym_alignas] = ACTIONS(4531), + [anon_sym__Alignas] = ACTIONS(4531), + [sym_primitive_type] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4533), + [anon_sym_QMARK] = ACTIONS(4533), + [anon_sym_LT_EQ_GT] = ACTIONS(4533), + [anon_sym_or] = ACTIONS(4531), + [anon_sym_and] = ACTIONS(4531), + [anon_sym_bitor] = ACTIONS(4531), + [anon_sym_xor] = ACTIONS(4531), + [anon_sym_bitand] = ACTIONS(4531), + [anon_sym_not_eq] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_PLUS_PLUS] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_DOT_STAR] = ACTIONS(4533), + [anon_sym_DASH_GT] = ACTIONS(4533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4531), + [anon_sym_decltype] = ACTIONS(4531), + [anon_sym_final] = ACTIONS(4531), + [anon_sym_override] = ACTIONS(4531), + [anon_sym_requires] = ACTIONS(4531), + }, + [STATE(2519)] = { + [sym_identifier] = ACTIONS(4966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_PLUS] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4968), + [anon_sym_SLASH] = ACTIONS(4966), + [anon_sym_PERCENT] = ACTIONS(4968), + [anon_sym_PIPE_PIPE] = ACTIONS(4968), + [anon_sym_AMP_AMP] = ACTIONS(4968), + [anon_sym_PIPE] = ACTIONS(4966), + [anon_sym_CARET] = ACTIONS(4968), + [anon_sym_AMP] = ACTIONS(4966), + [anon_sym_EQ_EQ] = ACTIONS(4968), + [anon_sym_BANG_EQ] = ACTIONS(4968), + [anon_sym_GT] = ACTIONS(4966), + [anon_sym_GT_EQ] = ACTIONS(4968), + [anon_sym_LT_EQ] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_LT_LT] = ACTIONS(4968), + [anon_sym_GT_GT] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym___extension__] = ACTIONS(4966), + [anon_sym___attribute__] = ACTIONS(4966), + [anon_sym___attribute] = ACTIONS(4966), + [anon_sym___based] = ACTIONS(4966), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_RBRACE] = ACTIONS(4968), + [anon_sym_signed] = ACTIONS(4966), + [anon_sym_unsigned] = ACTIONS(4966), + [anon_sym_long] = ACTIONS(4966), + [anon_sym_short] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_RBRACK] = ACTIONS(4968), + [anon_sym_const] = ACTIONS(4966), + [anon_sym_constexpr] = ACTIONS(4966), + [anon_sym_volatile] = ACTIONS(4966), + [anon_sym_restrict] = ACTIONS(4966), + [anon_sym___restrict__] = ACTIONS(4966), + [anon_sym__Atomic] = ACTIONS(4966), + [anon_sym__Noreturn] = ACTIONS(4966), + [anon_sym_noreturn] = ACTIONS(4966), + [anon_sym__Nonnull] = ACTIONS(4966), + [anon_sym_mutable] = ACTIONS(4966), + [anon_sym_constinit] = ACTIONS(4966), + [anon_sym_consteval] = ACTIONS(4966), + [anon_sym_alignas] = ACTIONS(4966), + [anon_sym__Alignas] = ACTIONS(4966), + [sym_primitive_type] = ACTIONS(4966), + [anon_sym_COLON] = ACTIONS(4968), + [anon_sym_QMARK] = ACTIONS(4968), + [anon_sym_LT_EQ_GT] = ACTIONS(4968), + [anon_sym_or] = ACTIONS(4966), + [anon_sym_and] = ACTIONS(4966), + [anon_sym_bitor] = ACTIONS(4966), + [anon_sym_xor] = ACTIONS(4966), + [anon_sym_bitand] = ACTIONS(4966), + [anon_sym_not_eq] = ACTIONS(4966), + [anon_sym_DASH_DASH] = ACTIONS(4968), + [anon_sym_PLUS_PLUS] = ACTIONS(4968), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_DOT_STAR] = ACTIONS(4968), + [anon_sym_DASH_GT] = ACTIONS(4968), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4966), + [anon_sym_decltype] = ACTIONS(4966), + [anon_sym_final] = ACTIONS(4966), + [anon_sym_override] = ACTIONS(4966), + [anon_sym_requires] = ACTIONS(4966), + }, + [STATE(2520)] = { + [sym_identifier] = ACTIONS(4922), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_RPAREN] = ACTIONS(4924), + [anon_sym_LPAREN2] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_PLUS] = ACTIONS(4922), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_SLASH] = ACTIONS(4922), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_PIPE_PIPE] = ACTIONS(4924), + [anon_sym_AMP_AMP] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4922), + [anon_sym_CARET] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4922), + [anon_sym_EQ_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ] = ACTIONS(4924), + [anon_sym_GT] = ACTIONS(4922), + [anon_sym_GT_EQ] = ACTIONS(4924), + [anon_sym_LT_EQ] = ACTIONS(4922), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_LT_LT] = ACTIONS(4924), + [anon_sym_GT_GT] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym___attribute__] = ACTIONS(4922), + [anon_sym___attribute] = ACTIONS(4922), + [anon_sym___based] = ACTIONS(4922), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_RBRACE] = ACTIONS(4924), + [anon_sym_signed] = ACTIONS(4922), + [anon_sym_unsigned] = ACTIONS(4922), + [anon_sym_long] = ACTIONS(4922), + [anon_sym_short] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym_RBRACK] = ACTIONS(4924), + [anon_sym_const] = ACTIONS(4922), + [anon_sym_constexpr] = ACTIONS(4922), + [anon_sym_volatile] = ACTIONS(4922), + [anon_sym_restrict] = ACTIONS(4922), + [anon_sym___restrict__] = ACTIONS(4922), + [anon_sym__Atomic] = ACTIONS(4922), + [anon_sym__Noreturn] = ACTIONS(4922), + [anon_sym_noreturn] = ACTIONS(4922), + [anon_sym__Nonnull] = ACTIONS(4922), + [anon_sym_mutable] = ACTIONS(4922), + [anon_sym_constinit] = ACTIONS(4922), + [anon_sym_consteval] = ACTIONS(4922), + [anon_sym_alignas] = ACTIONS(4922), + [anon_sym__Alignas] = ACTIONS(4922), + [sym_primitive_type] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_QMARK] = ACTIONS(4924), + [anon_sym_LT_EQ_GT] = ACTIONS(4924), + [anon_sym_or] = ACTIONS(4922), + [anon_sym_and] = ACTIONS(4922), + [anon_sym_bitor] = ACTIONS(4922), + [anon_sym_xor] = ACTIONS(4922), + [anon_sym_bitand] = ACTIONS(4922), + [anon_sym_not_eq] = ACTIONS(4922), + [anon_sym_DASH_DASH] = ACTIONS(4924), + [anon_sym_PLUS_PLUS] = ACTIONS(4924), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_DOT_STAR] = ACTIONS(4924), + [anon_sym_DASH_GT] = ACTIONS(4924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4922), + [anon_sym_decltype] = ACTIONS(4922), + [anon_sym_final] = ACTIONS(4922), + [anon_sym_override] = ACTIONS(4922), + [anon_sym_requires] = ACTIONS(4922), + }, + [STATE(2521)] = { + [sym_identifier] = ACTIONS(4930), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_RPAREN] = ACTIONS(4932), + [anon_sym_LPAREN2] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_PLUS] = ACTIONS(4930), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_SLASH] = ACTIONS(4930), + [anon_sym_PERCENT] = ACTIONS(4932), + [anon_sym_PIPE_PIPE] = ACTIONS(4932), + [anon_sym_AMP_AMP] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4930), + [anon_sym_CARET] = ACTIONS(4932), + [anon_sym_AMP] = ACTIONS(4930), + [anon_sym_EQ_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ] = ACTIONS(4932), + [anon_sym_GT] = ACTIONS(4930), + [anon_sym_GT_EQ] = ACTIONS(4932), + [anon_sym_LT_EQ] = ACTIONS(4930), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_LT_LT] = ACTIONS(4932), + [anon_sym_GT_GT] = ACTIONS(4932), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym___extension__] = ACTIONS(4930), + [anon_sym___attribute__] = ACTIONS(4930), + [anon_sym___attribute] = ACTIONS(4930), + [anon_sym___based] = ACTIONS(4930), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_signed] = ACTIONS(4930), + [anon_sym_unsigned] = ACTIONS(4930), + [anon_sym_long] = ACTIONS(4930), + [anon_sym_short] = ACTIONS(4930), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_RBRACK] = ACTIONS(4932), + [anon_sym_const] = ACTIONS(4930), + [anon_sym_constexpr] = ACTIONS(4930), + [anon_sym_volatile] = ACTIONS(4930), + [anon_sym_restrict] = ACTIONS(4930), + [anon_sym___restrict__] = ACTIONS(4930), + [anon_sym__Atomic] = ACTIONS(4930), + [anon_sym__Noreturn] = ACTIONS(4930), + [anon_sym_noreturn] = ACTIONS(4930), + [anon_sym__Nonnull] = ACTIONS(4930), + [anon_sym_mutable] = ACTIONS(4930), + [anon_sym_constinit] = ACTIONS(4930), + [anon_sym_consteval] = ACTIONS(4930), + [anon_sym_alignas] = ACTIONS(4930), + [anon_sym__Alignas] = ACTIONS(4930), + [sym_primitive_type] = ACTIONS(4930), + [anon_sym_COLON] = ACTIONS(4932), + [anon_sym_QMARK] = ACTIONS(4932), + [anon_sym_LT_EQ_GT] = ACTIONS(4932), + [anon_sym_or] = ACTIONS(4930), + [anon_sym_and] = ACTIONS(4930), + [anon_sym_bitor] = ACTIONS(4930), + [anon_sym_xor] = ACTIONS(4930), + [anon_sym_bitand] = ACTIONS(4930), + [anon_sym_not_eq] = ACTIONS(4930), + [anon_sym_DASH_DASH] = ACTIONS(4932), + [anon_sym_PLUS_PLUS] = ACTIONS(4932), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_DOT_STAR] = ACTIONS(4932), + [anon_sym_DASH_GT] = ACTIONS(4932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4930), + [anon_sym_decltype] = ACTIONS(4930), + [anon_sym_final] = ACTIONS(4930), + [anon_sym_override] = ACTIONS(4930), + [anon_sym_requires] = ACTIONS(4930), + }, + [STATE(2522)] = { + [sym_identifier] = ACTIONS(4938), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_RPAREN] = ACTIONS(4940), + [anon_sym_LPAREN2] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_PLUS] = ACTIONS(4938), + [anon_sym_STAR] = ACTIONS(4940), + [anon_sym_SLASH] = ACTIONS(4938), + [anon_sym_PERCENT] = ACTIONS(4940), + [anon_sym_PIPE_PIPE] = ACTIONS(4940), + [anon_sym_AMP_AMP] = ACTIONS(4940), + [anon_sym_PIPE] = ACTIONS(4938), + [anon_sym_CARET] = ACTIONS(4940), + [anon_sym_AMP] = ACTIONS(4938), + [anon_sym_EQ_EQ] = ACTIONS(4940), + [anon_sym_BANG_EQ] = ACTIONS(4940), + [anon_sym_GT] = ACTIONS(4938), + [anon_sym_GT_EQ] = ACTIONS(4940), + [anon_sym_LT_EQ] = ACTIONS(4938), + [anon_sym_LT] = ACTIONS(4938), + [anon_sym_LT_LT] = ACTIONS(4940), + [anon_sym_GT_GT] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym___extension__] = ACTIONS(4938), + [anon_sym___attribute__] = ACTIONS(4938), + [anon_sym___attribute] = ACTIONS(4938), + [anon_sym___based] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_RBRACE] = ACTIONS(4940), + [anon_sym_signed] = ACTIONS(4938), + [anon_sym_unsigned] = ACTIONS(4938), + [anon_sym_long] = ACTIONS(4938), + [anon_sym_short] = ACTIONS(4938), + [anon_sym_LBRACK] = ACTIONS(4940), + [anon_sym_RBRACK] = ACTIONS(4940), + [anon_sym_const] = ACTIONS(4938), + [anon_sym_constexpr] = ACTIONS(4938), + [anon_sym_volatile] = ACTIONS(4938), + [anon_sym_restrict] = ACTIONS(4938), + [anon_sym___restrict__] = ACTIONS(4938), + [anon_sym__Atomic] = ACTIONS(4938), + [anon_sym__Noreturn] = ACTIONS(4938), + [anon_sym_noreturn] = ACTIONS(4938), + [anon_sym__Nonnull] = ACTIONS(4938), + [anon_sym_mutable] = ACTIONS(4938), + [anon_sym_constinit] = ACTIONS(4938), + [anon_sym_consteval] = ACTIONS(4938), + [anon_sym_alignas] = ACTIONS(4938), + [anon_sym__Alignas] = ACTIONS(4938), + [sym_primitive_type] = ACTIONS(4938), + [anon_sym_COLON] = ACTIONS(4940), + [anon_sym_QMARK] = ACTIONS(4940), + [anon_sym_LT_EQ_GT] = ACTIONS(4940), + [anon_sym_or] = ACTIONS(4938), + [anon_sym_and] = ACTIONS(4938), + [anon_sym_bitor] = ACTIONS(4938), + [anon_sym_xor] = ACTIONS(4938), + [anon_sym_bitand] = ACTIONS(4938), + [anon_sym_not_eq] = ACTIONS(4938), + [anon_sym_DASH_DASH] = ACTIONS(4940), + [anon_sym_PLUS_PLUS] = ACTIONS(4940), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_DOT_STAR] = ACTIONS(4940), + [anon_sym_DASH_GT] = ACTIONS(4940), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4938), + [anon_sym_decltype] = ACTIONS(4938), + [anon_sym_final] = ACTIONS(4938), + [anon_sym_override] = ACTIONS(4938), + [anon_sym_requires] = ACTIONS(4938), + }, + [STATE(2523)] = { + [sym_identifier] = ACTIONS(4942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_RPAREN] = ACTIONS(4944), + [anon_sym_LPAREN2] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_PLUS] = ACTIONS(4942), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_SLASH] = ACTIONS(4942), + [anon_sym_PERCENT] = ACTIONS(4944), + [anon_sym_PIPE_PIPE] = ACTIONS(4944), + [anon_sym_AMP_AMP] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4942), + [anon_sym_CARET] = ACTIONS(4944), + [anon_sym_AMP] = ACTIONS(4942), + [anon_sym_EQ_EQ] = ACTIONS(4944), + [anon_sym_BANG_EQ] = ACTIONS(4944), + [anon_sym_GT] = ACTIONS(4942), + [anon_sym_GT_EQ] = ACTIONS(4944), + [anon_sym_LT_EQ] = ACTIONS(4942), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_LT_LT] = ACTIONS(4944), + [anon_sym_GT_GT] = ACTIONS(4944), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym___extension__] = ACTIONS(4942), + [anon_sym___attribute__] = ACTIONS(4942), + [anon_sym___attribute] = ACTIONS(4942), + [anon_sym___based] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_RBRACE] = ACTIONS(4944), + [anon_sym_signed] = ACTIONS(4942), + [anon_sym_unsigned] = ACTIONS(4942), + [anon_sym_long] = ACTIONS(4942), + [anon_sym_short] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4944), + [anon_sym_RBRACK] = ACTIONS(4944), + [anon_sym_const] = ACTIONS(4942), + [anon_sym_constexpr] = ACTIONS(4942), + [anon_sym_volatile] = ACTIONS(4942), + [anon_sym_restrict] = ACTIONS(4942), + [anon_sym___restrict__] = ACTIONS(4942), + [anon_sym__Atomic] = ACTIONS(4942), + [anon_sym__Noreturn] = ACTIONS(4942), + [anon_sym_noreturn] = ACTIONS(4942), + [anon_sym__Nonnull] = ACTIONS(4942), + [anon_sym_mutable] = ACTIONS(4942), + [anon_sym_constinit] = ACTIONS(4942), + [anon_sym_consteval] = ACTIONS(4942), + [anon_sym_alignas] = ACTIONS(4942), + [anon_sym__Alignas] = ACTIONS(4942), + [sym_primitive_type] = ACTIONS(4942), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_QMARK] = ACTIONS(4944), + [anon_sym_LT_EQ_GT] = ACTIONS(4944), + [anon_sym_or] = ACTIONS(4942), + [anon_sym_and] = ACTIONS(4942), + [anon_sym_bitor] = ACTIONS(4942), + [anon_sym_xor] = ACTIONS(4942), + [anon_sym_bitand] = ACTIONS(4942), + [anon_sym_not_eq] = ACTIONS(4942), + [anon_sym_DASH_DASH] = ACTIONS(4944), + [anon_sym_PLUS_PLUS] = ACTIONS(4944), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_DOT_STAR] = ACTIONS(4944), + [anon_sym_DASH_GT] = ACTIONS(4944), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4942), + [anon_sym_decltype] = ACTIONS(4942), + [anon_sym_final] = ACTIONS(4942), + [anon_sym_override] = ACTIONS(4942), + [anon_sym_requires] = ACTIONS(4942), + }, + [STATE(2524)] = { + [sym_identifier] = ACTIONS(4797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4799), + [anon_sym_COMMA] = ACTIONS(4799), + [anon_sym_RPAREN] = ACTIONS(4799), + [anon_sym_LPAREN2] = ACTIONS(4799), + [anon_sym_DASH] = ACTIONS(4797), + [anon_sym_PLUS] = ACTIONS(4797), + [anon_sym_STAR] = ACTIONS(4799), + [anon_sym_SLASH] = ACTIONS(4797), + [anon_sym_PERCENT] = ACTIONS(4799), + [anon_sym_PIPE_PIPE] = ACTIONS(4799), + [anon_sym_AMP_AMP] = ACTIONS(4799), + [anon_sym_PIPE] = ACTIONS(4797), + [anon_sym_CARET] = ACTIONS(4799), + [anon_sym_AMP] = ACTIONS(4797), + [anon_sym_EQ_EQ] = ACTIONS(4799), + [anon_sym_BANG_EQ] = ACTIONS(4799), + [anon_sym_GT] = ACTIONS(4797), + [anon_sym_GT_EQ] = ACTIONS(4799), + [anon_sym_LT_EQ] = ACTIONS(4797), + [anon_sym_LT] = ACTIONS(4797), + [anon_sym_LT_LT] = ACTIONS(4799), + [anon_sym_GT_GT] = ACTIONS(4799), + [anon_sym_SEMI] = ACTIONS(4799), + [anon_sym___extension__] = ACTIONS(4797), + [anon_sym___attribute__] = ACTIONS(4797), + [anon_sym___attribute] = ACTIONS(4797), + [anon_sym___based] = ACTIONS(4797), + [anon_sym_LBRACE] = ACTIONS(4799), + [anon_sym_RBRACE] = ACTIONS(4799), + [anon_sym_signed] = ACTIONS(4797), + [anon_sym_unsigned] = ACTIONS(4797), + [anon_sym_long] = ACTIONS(4797), + [anon_sym_short] = ACTIONS(4797), + [anon_sym_LBRACK] = ACTIONS(4799), + [anon_sym_RBRACK] = ACTIONS(4799), + [anon_sym_const] = ACTIONS(4797), + [anon_sym_constexpr] = ACTIONS(4797), + [anon_sym_volatile] = ACTIONS(4797), + [anon_sym_restrict] = ACTIONS(4797), + [anon_sym___restrict__] = ACTIONS(4797), + [anon_sym__Atomic] = ACTIONS(4797), + [anon_sym__Noreturn] = ACTIONS(4797), + [anon_sym_noreturn] = ACTIONS(4797), + [anon_sym__Nonnull] = ACTIONS(4797), + [anon_sym_mutable] = ACTIONS(4797), + [anon_sym_constinit] = ACTIONS(4797), + [anon_sym_consteval] = ACTIONS(4797), + [anon_sym_alignas] = ACTIONS(4797), + [anon_sym__Alignas] = ACTIONS(4797), + [sym_primitive_type] = ACTIONS(4797), + [anon_sym_COLON] = ACTIONS(4799), + [anon_sym_QMARK] = ACTIONS(4799), + [anon_sym_LT_EQ_GT] = ACTIONS(4799), + [anon_sym_or] = ACTIONS(4797), + [anon_sym_and] = ACTIONS(4797), + [anon_sym_bitor] = ACTIONS(4797), + [anon_sym_xor] = ACTIONS(4797), + [anon_sym_bitand] = ACTIONS(4797), + [anon_sym_not_eq] = ACTIONS(4797), + [anon_sym_DASH_DASH] = ACTIONS(4799), + [anon_sym_PLUS_PLUS] = ACTIONS(4799), + [anon_sym_DOT] = ACTIONS(4797), + [anon_sym_DOT_STAR] = ACTIONS(4799), + [anon_sym_DASH_GT] = ACTIONS(4799), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4797), + [anon_sym_decltype] = ACTIONS(4797), + [anon_sym_final] = ACTIONS(4797), + [anon_sym_override] = ACTIONS(4797), + [anon_sym_requires] = ACTIONS(4797), + }, + [STATE(2525)] = { + [sym_identifier] = ACTIONS(4813), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4815), + [anon_sym_COMMA] = ACTIONS(4815), + [anon_sym_RPAREN] = ACTIONS(4815), + [anon_sym_LPAREN2] = ACTIONS(4815), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4815), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4815), + [anon_sym_PIPE_PIPE] = ACTIONS(4815), + [anon_sym_AMP_AMP] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4815), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_EQ_EQ] = ACTIONS(4815), + [anon_sym_BANG_EQ] = ACTIONS(4815), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_GT_EQ] = ACTIONS(4815), + [anon_sym_LT_EQ] = ACTIONS(4813), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4815), + [anon_sym_GT_GT] = ACTIONS(4815), + [anon_sym_SEMI] = ACTIONS(4815), + [anon_sym___extension__] = ACTIONS(4813), + [anon_sym___attribute__] = ACTIONS(4813), + [anon_sym___attribute] = ACTIONS(4813), + [anon_sym___based] = ACTIONS(4813), + [anon_sym_LBRACE] = ACTIONS(4815), + [anon_sym_RBRACE] = ACTIONS(4815), + [anon_sym_signed] = ACTIONS(4813), + [anon_sym_unsigned] = ACTIONS(4813), + [anon_sym_long] = ACTIONS(4813), + [anon_sym_short] = ACTIONS(4813), + [anon_sym_LBRACK] = ACTIONS(4815), + [anon_sym_RBRACK] = ACTIONS(4815), + [anon_sym_const] = ACTIONS(4813), + [anon_sym_constexpr] = ACTIONS(4813), + [anon_sym_volatile] = ACTIONS(4813), + [anon_sym_restrict] = ACTIONS(4813), + [anon_sym___restrict__] = ACTIONS(4813), + [anon_sym__Atomic] = ACTIONS(4813), + [anon_sym__Noreturn] = ACTIONS(4813), + [anon_sym_noreturn] = ACTIONS(4813), + [anon_sym__Nonnull] = ACTIONS(4813), + [anon_sym_mutable] = ACTIONS(4813), + [anon_sym_constinit] = ACTIONS(4813), + [anon_sym_consteval] = ACTIONS(4813), + [anon_sym_alignas] = ACTIONS(4813), + [anon_sym__Alignas] = ACTIONS(4813), + [sym_primitive_type] = ACTIONS(4813), + [anon_sym_COLON] = ACTIONS(4815), + [anon_sym_QMARK] = ACTIONS(4815), + [anon_sym_LT_EQ_GT] = ACTIONS(4815), + [anon_sym_or] = ACTIONS(4813), + [anon_sym_and] = ACTIONS(4813), + [anon_sym_bitor] = ACTIONS(4813), + [anon_sym_xor] = ACTIONS(4813), + [anon_sym_bitand] = ACTIONS(4813), + [anon_sym_not_eq] = ACTIONS(4813), + [anon_sym_DASH_DASH] = ACTIONS(4815), + [anon_sym_PLUS_PLUS] = ACTIONS(4815), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_STAR] = ACTIONS(4815), + [anon_sym_DASH_GT] = ACTIONS(4815), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4813), + [anon_sym_decltype] = ACTIONS(4813), + [anon_sym_final] = ACTIONS(4813), + [anon_sym_override] = ACTIONS(4813), + [anon_sym_requires] = ACTIONS(4813), + }, + [STATE(2526)] = { + [sym_identifier] = ACTIONS(4950), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [anon_sym_LPAREN2] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_PLUS] = ACTIONS(4950), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_SLASH] = ACTIONS(4950), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_PIPE_PIPE] = ACTIONS(4952), + [anon_sym_AMP_AMP] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4950), + [anon_sym_CARET] = ACTIONS(4952), + [anon_sym_AMP] = ACTIONS(4950), + [anon_sym_EQ_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ] = ACTIONS(4952), + [anon_sym_GT] = ACTIONS(4950), + [anon_sym_GT_EQ] = ACTIONS(4952), + [anon_sym_LT_EQ] = ACTIONS(4950), + [anon_sym_LT] = ACTIONS(4950), + [anon_sym_LT_LT] = ACTIONS(4952), + [anon_sym_GT_GT] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym___extension__] = ACTIONS(4950), + [anon_sym___attribute__] = ACTIONS(4950), + [anon_sym___attribute] = ACTIONS(4950), + [anon_sym___based] = ACTIONS(4950), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_RBRACE] = ACTIONS(4952), + [anon_sym_signed] = ACTIONS(4950), + [anon_sym_unsigned] = ACTIONS(4950), + [anon_sym_long] = ACTIONS(4950), + [anon_sym_short] = ACTIONS(4950), + [anon_sym_LBRACK] = ACTIONS(4952), + [anon_sym_RBRACK] = ACTIONS(4952), + [anon_sym_const] = ACTIONS(4950), + [anon_sym_constexpr] = ACTIONS(4950), + [anon_sym_volatile] = ACTIONS(4950), + [anon_sym_restrict] = ACTIONS(4950), + [anon_sym___restrict__] = ACTIONS(4950), + [anon_sym__Atomic] = ACTIONS(4950), + [anon_sym__Noreturn] = ACTIONS(4950), + [anon_sym_noreturn] = ACTIONS(4950), + [anon_sym__Nonnull] = ACTIONS(4950), + [anon_sym_mutable] = ACTIONS(4950), + [anon_sym_constinit] = ACTIONS(4950), + [anon_sym_consteval] = ACTIONS(4950), + [anon_sym_alignas] = ACTIONS(4950), + [anon_sym__Alignas] = ACTIONS(4950), + [sym_primitive_type] = ACTIONS(4950), + [anon_sym_COLON] = ACTIONS(4952), + [anon_sym_QMARK] = ACTIONS(4952), + [anon_sym_LT_EQ_GT] = ACTIONS(4952), + [anon_sym_or] = ACTIONS(4950), + [anon_sym_and] = ACTIONS(4950), + [anon_sym_bitor] = ACTIONS(4950), + [anon_sym_xor] = ACTIONS(4950), + [anon_sym_bitand] = ACTIONS(4950), + [anon_sym_not_eq] = ACTIONS(4950), + [anon_sym_DASH_DASH] = ACTIONS(4952), + [anon_sym_PLUS_PLUS] = ACTIONS(4952), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_DOT_STAR] = ACTIONS(4952), + [anon_sym_DASH_GT] = ACTIONS(4952), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4950), + [anon_sym_decltype] = ACTIONS(4950), + [anon_sym_final] = ACTIONS(4950), + [anon_sym_override] = ACTIONS(4950), + [anon_sym_requires] = ACTIONS(4950), + }, + [STATE(2527)] = { + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4936), + [anon_sym_COMMA] = ACTIONS(4936), + [anon_sym_RPAREN] = ACTIONS(4936), + [anon_sym_LPAREN2] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4934), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4934), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_PIPE_PIPE] = ACTIONS(4936), + [anon_sym_AMP_AMP] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4936), + [anon_sym_AMP] = ACTIONS(4934), + [anon_sym_EQ_EQ] = ACTIONS(4936), + [anon_sym_BANG_EQ] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4936), + [anon_sym_LT_EQ] = ACTIONS(4934), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_LT_LT] = ACTIONS(4936), + [anon_sym_GT_GT] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym___extension__] = ACTIONS(4934), + [anon_sym___attribute__] = ACTIONS(4934), + [anon_sym___attribute] = ACTIONS(4934), + [anon_sym___based] = ACTIONS(4934), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_RBRACE] = ACTIONS(4936), + [anon_sym_signed] = ACTIONS(4934), + [anon_sym_unsigned] = ACTIONS(4934), + [anon_sym_long] = ACTIONS(4934), + [anon_sym_short] = ACTIONS(4934), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_RBRACK] = ACTIONS(4936), + [anon_sym_const] = ACTIONS(4934), + [anon_sym_constexpr] = ACTIONS(4934), + [anon_sym_volatile] = ACTIONS(4934), + [anon_sym_restrict] = ACTIONS(4934), + [anon_sym___restrict__] = ACTIONS(4934), + [anon_sym__Atomic] = ACTIONS(4934), + [anon_sym__Noreturn] = ACTIONS(4934), + [anon_sym_noreturn] = ACTIONS(4934), + [anon_sym__Nonnull] = ACTIONS(4934), + [anon_sym_mutable] = ACTIONS(4934), + [anon_sym_constinit] = ACTIONS(4934), + [anon_sym_consteval] = ACTIONS(4934), + [anon_sym_alignas] = ACTIONS(4934), + [anon_sym__Alignas] = ACTIONS(4934), + [sym_primitive_type] = ACTIONS(4934), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_QMARK] = ACTIONS(4936), + [anon_sym_LT_EQ_GT] = ACTIONS(4936), + [anon_sym_or] = ACTIONS(4934), + [anon_sym_and] = ACTIONS(4934), + [anon_sym_bitor] = ACTIONS(4934), + [anon_sym_xor] = ACTIONS(4934), + [anon_sym_bitand] = ACTIONS(4934), + [anon_sym_not_eq] = ACTIONS(4934), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_DOT_STAR] = ACTIONS(4936), + [anon_sym_DASH_GT] = ACTIONS(4936), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4934), + [anon_sym_decltype] = ACTIONS(4934), + [anon_sym_final] = ACTIONS(4934), + [anon_sym_override] = ACTIONS(4934), + [anon_sym_requires] = ACTIONS(4934), + }, + [STATE(2528)] = { + [sym_identifier] = ACTIONS(4958), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_LPAREN2] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4960), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_PERCENT] = ACTIONS(4960), + [anon_sym_PIPE_PIPE] = ACTIONS(4960), + [anon_sym_AMP_AMP] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4960), + [anon_sym_AMP] = ACTIONS(4958), + [anon_sym_EQ_EQ] = ACTIONS(4960), + [anon_sym_BANG_EQ] = ACTIONS(4960), + [anon_sym_GT] = ACTIONS(4958), + [anon_sym_GT_EQ] = ACTIONS(4960), + [anon_sym_LT_EQ] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_LT_LT] = ACTIONS(4960), + [anon_sym_GT_GT] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym___attribute__] = ACTIONS(4958), + [anon_sym___attribute] = ACTIONS(4958), + [anon_sym___based] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_signed] = ACTIONS(4958), + [anon_sym_unsigned] = ACTIONS(4958), + [anon_sym_long] = ACTIONS(4958), + [anon_sym_short] = ACTIONS(4958), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_RBRACK] = ACTIONS(4960), + [anon_sym_const] = ACTIONS(4958), + [anon_sym_constexpr] = ACTIONS(4958), + [anon_sym_volatile] = ACTIONS(4958), + [anon_sym_restrict] = ACTIONS(4958), + [anon_sym___restrict__] = ACTIONS(4958), + [anon_sym__Atomic] = ACTIONS(4958), + [anon_sym__Noreturn] = ACTIONS(4958), + [anon_sym_noreturn] = ACTIONS(4958), + [anon_sym__Nonnull] = ACTIONS(4958), + [anon_sym_mutable] = ACTIONS(4958), + [anon_sym_constinit] = ACTIONS(4958), + [anon_sym_consteval] = ACTIONS(4958), + [anon_sym_alignas] = ACTIONS(4958), + [anon_sym__Alignas] = ACTIONS(4958), + [sym_primitive_type] = ACTIONS(4958), + [anon_sym_COLON] = ACTIONS(4960), + [anon_sym_QMARK] = ACTIONS(4960), + [anon_sym_LT_EQ_GT] = ACTIONS(4960), + [anon_sym_or] = ACTIONS(4958), + [anon_sym_and] = ACTIONS(4958), + [anon_sym_bitor] = ACTIONS(4958), + [anon_sym_xor] = ACTIONS(4958), + [anon_sym_bitand] = ACTIONS(4958), + [anon_sym_not_eq] = ACTIONS(4958), + [anon_sym_DASH_DASH] = ACTIONS(4960), + [anon_sym_PLUS_PLUS] = ACTIONS(4960), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_DOT_STAR] = ACTIONS(4960), + [anon_sym_DASH_GT] = ACTIONS(4960), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4958), + [anon_sym_decltype] = ACTIONS(4958), + [anon_sym_final] = ACTIONS(4958), + [anon_sym_override] = ACTIONS(4958), + [anon_sym_requires] = ACTIONS(4958), + }, + [STATE(2529)] = { + [sym_identifier] = ACTIONS(4789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4791), + [anon_sym_COMMA] = ACTIONS(4791), + [anon_sym_RPAREN] = ACTIONS(4791), + [anon_sym_LPAREN2] = ACTIONS(4791), + [anon_sym_DASH] = ACTIONS(4789), + [anon_sym_PLUS] = ACTIONS(4789), + [anon_sym_STAR] = ACTIONS(4791), + [anon_sym_SLASH] = ACTIONS(4789), + [anon_sym_PERCENT] = ACTIONS(4791), + [anon_sym_PIPE_PIPE] = ACTIONS(4791), + [anon_sym_AMP_AMP] = ACTIONS(4791), + [anon_sym_PIPE] = ACTIONS(4789), + [anon_sym_CARET] = ACTIONS(4791), + [anon_sym_AMP] = ACTIONS(4789), + [anon_sym_EQ_EQ] = ACTIONS(4791), + [anon_sym_BANG_EQ] = ACTIONS(4791), + [anon_sym_GT] = ACTIONS(4789), + [anon_sym_GT_EQ] = ACTIONS(4791), + [anon_sym_LT_EQ] = ACTIONS(4789), + [anon_sym_LT] = ACTIONS(4789), + [anon_sym_LT_LT] = ACTIONS(4791), + [anon_sym_GT_GT] = ACTIONS(4791), + [anon_sym_SEMI] = ACTIONS(4791), + [anon_sym___extension__] = ACTIONS(4789), + [anon_sym___attribute__] = ACTIONS(4789), + [anon_sym___attribute] = ACTIONS(4789), + [anon_sym___based] = ACTIONS(4789), + [anon_sym_LBRACE] = ACTIONS(4791), + [anon_sym_RBRACE] = ACTIONS(4791), + [anon_sym_signed] = ACTIONS(4789), + [anon_sym_unsigned] = ACTIONS(4789), + [anon_sym_long] = ACTIONS(4789), + [anon_sym_short] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4791), + [anon_sym_RBRACK] = ACTIONS(4791), + [anon_sym_const] = ACTIONS(4789), + [anon_sym_constexpr] = ACTIONS(4789), + [anon_sym_volatile] = ACTIONS(4789), + [anon_sym_restrict] = ACTIONS(4789), + [anon_sym___restrict__] = ACTIONS(4789), + [anon_sym__Atomic] = ACTIONS(4789), + [anon_sym__Noreturn] = ACTIONS(4789), + [anon_sym_noreturn] = ACTIONS(4789), + [anon_sym__Nonnull] = ACTIONS(4789), + [anon_sym_mutable] = ACTIONS(4789), + [anon_sym_constinit] = ACTIONS(4789), + [anon_sym_consteval] = ACTIONS(4789), + [anon_sym_alignas] = ACTIONS(4789), + [anon_sym__Alignas] = ACTIONS(4789), + [sym_primitive_type] = ACTIONS(4789), + [anon_sym_COLON] = ACTIONS(4791), + [anon_sym_QMARK] = ACTIONS(4791), + [anon_sym_LT_EQ_GT] = ACTIONS(4791), + [anon_sym_or] = ACTIONS(4789), + [anon_sym_and] = ACTIONS(4789), + [anon_sym_bitor] = ACTIONS(4789), + [anon_sym_xor] = ACTIONS(4789), + [anon_sym_bitand] = ACTIONS(4789), + [anon_sym_not_eq] = ACTIONS(4789), + [anon_sym_DASH_DASH] = ACTIONS(4791), + [anon_sym_PLUS_PLUS] = ACTIONS(4791), + [anon_sym_DOT] = ACTIONS(4789), + [anon_sym_DOT_STAR] = ACTIONS(4791), + [anon_sym_DASH_GT] = ACTIONS(4791), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4789), + [anon_sym_decltype] = ACTIONS(4789), + [anon_sym_final] = ACTIONS(4789), + [anon_sym_override] = ACTIONS(4789), + [anon_sym_requires] = ACTIONS(4789), + }, + [STATE(2530)] = { + [sym_identifier] = ACTIONS(4793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4795), + [anon_sym_COMMA] = ACTIONS(4795), + [anon_sym_RPAREN] = ACTIONS(4795), + [anon_sym_LPAREN2] = ACTIONS(4795), + [anon_sym_DASH] = ACTIONS(4793), + [anon_sym_PLUS] = ACTIONS(4793), + [anon_sym_STAR] = ACTIONS(4795), + [anon_sym_SLASH] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4795), + [anon_sym_PIPE_PIPE] = ACTIONS(4795), + [anon_sym_AMP_AMP] = ACTIONS(4795), + [anon_sym_PIPE] = ACTIONS(4793), + [anon_sym_CARET] = ACTIONS(4795), + [anon_sym_AMP] = ACTIONS(4793), + [anon_sym_EQ_EQ] = ACTIONS(4795), + [anon_sym_BANG_EQ] = ACTIONS(4795), + [anon_sym_GT] = ACTIONS(4793), + [anon_sym_GT_EQ] = ACTIONS(4795), + [anon_sym_LT_EQ] = ACTIONS(4793), + [anon_sym_LT] = ACTIONS(4793), + [anon_sym_LT_LT] = ACTIONS(4795), + [anon_sym_GT_GT] = ACTIONS(4795), + [anon_sym_SEMI] = ACTIONS(4795), + [anon_sym___extension__] = ACTIONS(4793), + [anon_sym___attribute__] = ACTIONS(4793), + [anon_sym___attribute] = ACTIONS(4793), + [anon_sym___based] = ACTIONS(4793), + [anon_sym_LBRACE] = ACTIONS(4795), + [anon_sym_RBRACE] = ACTIONS(4795), + [anon_sym_signed] = ACTIONS(4793), + [anon_sym_unsigned] = ACTIONS(4793), + [anon_sym_long] = ACTIONS(4793), + [anon_sym_short] = ACTIONS(4793), + [anon_sym_LBRACK] = ACTIONS(4795), + [anon_sym_RBRACK] = ACTIONS(4795), + [anon_sym_const] = ACTIONS(4793), + [anon_sym_constexpr] = ACTIONS(4793), + [anon_sym_volatile] = ACTIONS(4793), + [anon_sym_restrict] = ACTIONS(4793), + [anon_sym___restrict__] = ACTIONS(4793), + [anon_sym__Atomic] = ACTIONS(4793), + [anon_sym__Noreturn] = ACTIONS(4793), + [anon_sym_noreturn] = ACTIONS(4793), + [anon_sym__Nonnull] = ACTIONS(4793), + [anon_sym_mutable] = ACTIONS(4793), + [anon_sym_constinit] = ACTIONS(4793), + [anon_sym_consteval] = ACTIONS(4793), + [anon_sym_alignas] = ACTIONS(4793), + [anon_sym__Alignas] = ACTIONS(4793), + [sym_primitive_type] = ACTIONS(4793), + [anon_sym_COLON] = ACTIONS(4795), + [anon_sym_QMARK] = ACTIONS(4795), + [anon_sym_LT_EQ_GT] = ACTIONS(4795), + [anon_sym_or] = ACTIONS(4793), + [anon_sym_and] = ACTIONS(4793), + [anon_sym_bitor] = ACTIONS(4793), + [anon_sym_xor] = ACTIONS(4793), + [anon_sym_bitand] = ACTIONS(4793), + [anon_sym_not_eq] = ACTIONS(4793), + [anon_sym_DASH_DASH] = ACTIONS(4795), + [anon_sym_PLUS_PLUS] = ACTIONS(4795), + [anon_sym_DOT] = ACTIONS(4793), + [anon_sym_DOT_STAR] = ACTIONS(4795), + [anon_sym_DASH_GT] = ACTIONS(4795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4793), + [anon_sym_decltype] = ACTIONS(4793), + [anon_sym_final] = ACTIONS(4793), + [anon_sym_override] = ACTIONS(4793), + [anon_sym_requires] = ACTIONS(4793), + }, + [STATE(2531)] = { + [sym_identifier] = ACTIONS(5066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(5068), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_STAR] = ACTIONS(5068), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_PERCENT] = ACTIONS(5068), + [anon_sym_PIPE_PIPE] = ACTIONS(5068), + [anon_sym_AMP_AMP] = ACTIONS(5068), + [anon_sym_PIPE] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5068), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_EQ_EQ] = ACTIONS(5068), + [anon_sym_BANG_EQ] = ACTIONS(5068), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_GT_EQ] = ACTIONS(5068), + [anon_sym_LT_EQ] = ACTIONS(5066), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_LT_LT] = ACTIONS(5068), + [anon_sym_GT_GT] = ACTIONS(5068), + [anon_sym_SEMI] = ACTIONS(5068), + [anon_sym___extension__] = ACTIONS(5066), + [anon_sym___attribute__] = ACTIONS(5066), + [anon_sym___attribute] = ACTIONS(5066), + [anon_sym___based] = ACTIONS(5066), + [anon_sym_LBRACE] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_signed] = ACTIONS(5066), + [anon_sym_unsigned] = ACTIONS(5066), + [anon_sym_long] = ACTIONS(5066), + [anon_sym_short] = ACTIONS(5066), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_const] = ACTIONS(5066), + [anon_sym_constexpr] = ACTIONS(5066), + [anon_sym_volatile] = ACTIONS(5066), + [anon_sym_restrict] = ACTIONS(5066), + [anon_sym___restrict__] = ACTIONS(5066), + [anon_sym__Atomic] = ACTIONS(5066), + [anon_sym__Noreturn] = ACTIONS(5066), + [anon_sym_noreturn] = ACTIONS(5066), + [anon_sym__Nonnull] = ACTIONS(5066), + [anon_sym_mutable] = ACTIONS(5066), + [anon_sym_constinit] = ACTIONS(5066), + [anon_sym_consteval] = ACTIONS(5066), + [anon_sym_alignas] = ACTIONS(5066), + [anon_sym__Alignas] = ACTIONS(5066), + [sym_primitive_type] = ACTIONS(5066), + [anon_sym_COLON] = ACTIONS(5068), + [anon_sym_QMARK] = ACTIONS(5068), + [anon_sym_LT_EQ_GT] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5066), + [anon_sym_and] = ACTIONS(5066), + [anon_sym_bitor] = ACTIONS(5066), + [anon_sym_xor] = ACTIONS(5066), + [anon_sym_bitand] = ACTIONS(5066), + [anon_sym_not_eq] = ACTIONS(5066), + [anon_sym_DASH_DASH] = ACTIONS(5068), + [anon_sym_PLUS_PLUS] = ACTIONS(5068), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_DOT_STAR] = ACTIONS(5068), + [anon_sym_DASH_GT] = ACTIONS(5068), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5066), + [anon_sym_decltype] = ACTIONS(5066), + [anon_sym_final] = ACTIONS(5066), + [anon_sym_override] = ACTIONS(5066), + [anon_sym_requires] = ACTIONS(5066), + }, + [STATE(2532)] = { + [sym_identifier] = ACTIONS(4809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_LPAREN2] = ACTIONS(4811), + [anon_sym_DASH] = ACTIONS(4809), + [anon_sym_PLUS] = ACTIONS(4809), + [anon_sym_STAR] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4809), + [anon_sym_PERCENT] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE] = ACTIONS(4809), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_AMP] = ACTIONS(4809), + [anon_sym_EQ_EQ] = ACTIONS(4811), + [anon_sym_BANG_EQ] = ACTIONS(4811), + [anon_sym_GT] = ACTIONS(4809), + [anon_sym_GT_EQ] = ACTIONS(4811), + [anon_sym_LT_EQ] = ACTIONS(4809), + [anon_sym_LT] = ACTIONS(4809), + [anon_sym_LT_LT] = ACTIONS(4811), + [anon_sym_GT_GT] = ACTIONS(4811), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym___extension__] = ACTIONS(4809), + [anon_sym___attribute__] = ACTIONS(4809), + [anon_sym___attribute] = ACTIONS(4809), + [anon_sym___based] = ACTIONS(4809), + [anon_sym_LBRACE] = ACTIONS(4811), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_signed] = ACTIONS(4809), + [anon_sym_unsigned] = ACTIONS(4809), + [anon_sym_long] = ACTIONS(4809), + [anon_sym_short] = ACTIONS(4809), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_RBRACK] = ACTIONS(4811), + [anon_sym_const] = ACTIONS(4809), + [anon_sym_constexpr] = ACTIONS(4809), + [anon_sym_volatile] = ACTIONS(4809), + [anon_sym_restrict] = ACTIONS(4809), + [anon_sym___restrict__] = ACTIONS(4809), + [anon_sym__Atomic] = ACTIONS(4809), + [anon_sym__Noreturn] = ACTIONS(4809), + [anon_sym_noreturn] = ACTIONS(4809), + [anon_sym__Nonnull] = ACTIONS(4809), + [anon_sym_mutable] = ACTIONS(4809), + [anon_sym_constinit] = ACTIONS(4809), + [anon_sym_consteval] = ACTIONS(4809), + [anon_sym_alignas] = ACTIONS(4809), + [anon_sym__Alignas] = ACTIONS(4809), + [sym_primitive_type] = ACTIONS(4809), + [anon_sym_COLON] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4811), + [anon_sym_LT_EQ_GT] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4809), + [anon_sym_and] = ACTIONS(4809), + [anon_sym_bitor] = ACTIONS(4809), + [anon_sym_xor] = ACTIONS(4809), + [anon_sym_bitand] = ACTIONS(4809), + [anon_sym_not_eq] = ACTIONS(4809), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DOT] = ACTIONS(4809), + [anon_sym_DOT_STAR] = ACTIONS(4811), + [anon_sym_DASH_GT] = ACTIONS(4811), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4809), + [anon_sym_decltype] = ACTIONS(4809), + [anon_sym_final] = ACTIONS(4809), + [anon_sym_override] = ACTIONS(4809), + [anon_sym_requires] = ACTIONS(4809), + }, + [STATE(2533)] = { + [sym_identifier] = ACTIONS(4898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4898), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4898), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_PIPE_PIPE] = ACTIONS(4900), + [anon_sym_AMP_AMP] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4900), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_LT_LT] = ACTIONS(4900), + [anon_sym_GT_GT] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym___extension__] = ACTIONS(4898), + [anon_sym___attribute__] = ACTIONS(4898), + [anon_sym___attribute] = ACTIONS(4898), + [anon_sym___based] = ACTIONS(4898), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_RBRACE] = ACTIONS(4900), + [anon_sym_signed] = ACTIONS(4898), + [anon_sym_unsigned] = ACTIONS(4898), + [anon_sym_long] = ACTIONS(4898), + [anon_sym_short] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_RBRACK] = ACTIONS(4900), + [anon_sym_const] = ACTIONS(4898), + [anon_sym_constexpr] = ACTIONS(4898), + [anon_sym_volatile] = ACTIONS(4898), + [anon_sym_restrict] = ACTIONS(4898), + [anon_sym___restrict__] = ACTIONS(4898), + [anon_sym__Atomic] = ACTIONS(4898), + [anon_sym__Noreturn] = ACTIONS(4898), + [anon_sym_noreturn] = ACTIONS(4898), + [anon_sym__Nonnull] = ACTIONS(4898), + [anon_sym_mutable] = ACTIONS(4898), + [anon_sym_constinit] = ACTIONS(4898), + [anon_sym_consteval] = ACTIONS(4898), + [anon_sym_alignas] = ACTIONS(4898), + [anon_sym__Alignas] = ACTIONS(4898), + [sym_primitive_type] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_LT_EQ_GT] = ACTIONS(4900), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_bitor] = ACTIONS(4898), + [anon_sym_xor] = ACTIONS(4898), + [anon_sym_bitand] = ACTIONS(4898), + [anon_sym_not_eq] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4900), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_DOT_STAR] = ACTIONS(4900), + [anon_sym_DASH_GT] = ACTIONS(4900), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4898), + [anon_sym_decltype] = ACTIONS(4898), + [anon_sym_final] = ACTIONS(4898), + [anon_sym_override] = ACTIONS(4898), + [anon_sym_requires] = ACTIONS(4898), + }, + [STATE(2534)] = { + [sym_argument_list] = STATE(2900), + [sym_initializer_list] = STATE(2900), + [sym_decltype_auto] = STATE(2714), + [sym_new_declarator] = STATE(2724), + [sym_identifier] = ACTIONS(6585), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6587), + [anon_sym_COMMA] = ACTIONS(6587), + [anon_sym_RPAREN] = ACTIONS(6587), + [aux_sym_preproc_if_token2] = ACTIONS(6587), + [aux_sym_preproc_else_token1] = ACTIONS(6587), + [aux_sym_preproc_elif_token1] = ACTIONS(6585), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6587), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6587), + [anon_sym_LPAREN2] = ACTIONS(6589), + [anon_sym_DASH] = ACTIONS(6585), + [anon_sym_PLUS] = ACTIONS(6585), + [anon_sym_STAR] = ACTIONS(6585), + [anon_sym_SLASH] = ACTIONS(6585), + [anon_sym_PERCENT] = ACTIONS(6585), + [anon_sym_PIPE_PIPE] = ACTIONS(6587), + [anon_sym_AMP_AMP] = ACTIONS(6587), + [anon_sym_PIPE] = ACTIONS(6585), + [anon_sym_CARET] = ACTIONS(6585), + [anon_sym_AMP] = ACTIONS(6585), + [anon_sym_EQ_EQ] = ACTIONS(6587), + [anon_sym_BANG_EQ] = ACTIONS(6587), + [anon_sym_GT] = ACTIONS(6585), + [anon_sym_GT_EQ] = ACTIONS(6587), + [anon_sym_LT_EQ] = ACTIONS(6585), + [anon_sym_LT] = ACTIONS(6585), + [anon_sym_LT_LT] = ACTIONS(6585), + [anon_sym_GT_GT] = ACTIONS(6585), + [anon_sym_SEMI] = ACTIONS(6587), + [anon_sym___attribute__] = ACTIONS(6585), + [anon_sym___attribute] = ACTIONS(6585), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_RBRACE] = ACTIONS(6587), + [anon_sym_LBRACK] = ACTIONS(6591), + [anon_sym_RBRACK] = ACTIONS(6587), + [anon_sym_EQ] = ACTIONS(6585), + [anon_sym_COLON] = ACTIONS(6587), + [anon_sym_QMARK] = ACTIONS(6587), + [anon_sym_STAR_EQ] = ACTIONS(6587), + [anon_sym_SLASH_EQ] = ACTIONS(6587), + [anon_sym_PERCENT_EQ] = ACTIONS(6587), + [anon_sym_PLUS_EQ] = ACTIONS(6587), + [anon_sym_DASH_EQ] = ACTIONS(6587), + [anon_sym_LT_LT_EQ] = ACTIONS(6587), + [anon_sym_GT_GT_EQ] = ACTIONS(6587), + [anon_sym_AMP_EQ] = ACTIONS(6587), + [anon_sym_CARET_EQ] = ACTIONS(6587), + [anon_sym_PIPE_EQ] = ACTIONS(6587), + [anon_sym_and_eq] = ACTIONS(6585), + [anon_sym_or_eq] = ACTIONS(6585), + [anon_sym_xor_eq] = ACTIONS(6585), + [anon_sym_LT_EQ_GT] = ACTIONS(6587), + [anon_sym_or] = ACTIONS(6585), + [anon_sym_and] = ACTIONS(6585), + [anon_sym_bitor] = ACTIONS(6585), + [anon_sym_xor] = ACTIONS(6585), + [anon_sym_bitand] = ACTIONS(6585), + [anon_sym_not_eq] = ACTIONS(6585), + [anon_sym_DASH_DASH] = ACTIONS(6587), + [anon_sym_PLUS_PLUS] = ACTIONS(6587), + [anon_sym_DOT] = ACTIONS(6585), + [anon_sym_DOT_STAR] = ACTIONS(6587), + [anon_sym_DASH_GT] = ACTIONS(6587), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6593), + [anon_sym_decltype] = ACTIONS(6595), + }, + [STATE(2535)] = { + [sym_argument_list] = STATE(2897), + [sym_initializer_list] = STATE(2897), + [sym_decltype_auto] = STATE(2714), + [sym_new_declarator] = STATE(2717), + [sym_identifier] = ACTIONS(6597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6599), + [anon_sym_COMMA] = ACTIONS(6599), + [anon_sym_RPAREN] = ACTIONS(6599), + [aux_sym_preproc_if_token2] = ACTIONS(6599), + [aux_sym_preproc_else_token1] = ACTIONS(6599), + [aux_sym_preproc_elif_token1] = ACTIONS(6597), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6599), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6599), + [anon_sym_LPAREN2] = ACTIONS(6589), + [anon_sym_DASH] = ACTIONS(6597), + [anon_sym_PLUS] = ACTIONS(6597), + [anon_sym_STAR] = ACTIONS(6597), + [anon_sym_SLASH] = ACTIONS(6597), + [anon_sym_PERCENT] = ACTIONS(6597), + [anon_sym_PIPE_PIPE] = ACTIONS(6599), + [anon_sym_AMP_AMP] = ACTIONS(6599), + [anon_sym_PIPE] = ACTIONS(6597), + [anon_sym_CARET] = ACTIONS(6597), + [anon_sym_AMP] = ACTIONS(6597), + [anon_sym_EQ_EQ] = ACTIONS(6599), + [anon_sym_BANG_EQ] = ACTIONS(6599), + [anon_sym_GT] = ACTIONS(6597), + [anon_sym_GT_EQ] = ACTIONS(6599), + [anon_sym_LT_EQ] = ACTIONS(6597), + [anon_sym_LT] = ACTIONS(6597), + [anon_sym_LT_LT] = ACTIONS(6597), + [anon_sym_GT_GT] = ACTIONS(6597), + [anon_sym_SEMI] = ACTIONS(6599), + [anon_sym___attribute__] = ACTIONS(6597), + [anon_sym___attribute] = ACTIONS(6597), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_RBRACE] = ACTIONS(6599), + [anon_sym_LBRACK] = ACTIONS(6591), + [anon_sym_RBRACK] = ACTIONS(6599), + [anon_sym_EQ] = ACTIONS(6597), + [anon_sym_COLON] = ACTIONS(6599), + [anon_sym_QMARK] = ACTIONS(6599), + [anon_sym_STAR_EQ] = ACTIONS(6599), + [anon_sym_SLASH_EQ] = ACTIONS(6599), + [anon_sym_PERCENT_EQ] = ACTIONS(6599), + [anon_sym_PLUS_EQ] = ACTIONS(6599), + [anon_sym_DASH_EQ] = ACTIONS(6599), + [anon_sym_LT_LT_EQ] = ACTIONS(6599), + [anon_sym_GT_GT_EQ] = ACTIONS(6599), + [anon_sym_AMP_EQ] = ACTIONS(6599), + [anon_sym_CARET_EQ] = ACTIONS(6599), + [anon_sym_PIPE_EQ] = ACTIONS(6599), + [anon_sym_and_eq] = ACTIONS(6597), + [anon_sym_or_eq] = ACTIONS(6597), + [anon_sym_xor_eq] = ACTIONS(6597), + [anon_sym_LT_EQ_GT] = ACTIONS(6599), + [anon_sym_or] = ACTIONS(6597), + [anon_sym_and] = ACTIONS(6597), + [anon_sym_bitor] = ACTIONS(6597), + [anon_sym_xor] = ACTIONS(6597), + [anon_sym_bitand] = ACTIONS(6597), + [anon_sym_not_eq] = ACTIONS(6597), + [anon_sym_DASH_DASH] = ACTIONS(6599), + [anon_sym_PLUS_PLUS] = ACTIONS(6599), + [anon_sym_DOT] = ACTIONS(6597), + [anon_sym_DOT_STAR] = ACTIONS(6599), + [anon_sym_DASH_GT] = ACTIONS(6599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6593), + [anon_sym_decltype] = ACTIONS(6595), + }, + [STATE(2536)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3293), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_LPAREN2] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3291), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_CARET] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_EQ_EQ] = ACTIONS(3291), + [anon_sym_BANG_EQ] = ACTIONS(3291), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_LT_LT] = ACTIONS(3298), + [anon_sym_GT_GT] = ACTIONS(3298), + [anon_sym___extension__] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_constexpr] = ACTIONS(3296), + [anon_sym_volatile] = ACTIONS(3296), + [anon_sym_restrict] = ACTIONS(3296), + [anon_sym___restrict__] = ACTIONS(3296), + [anon_sym__Atomic] = ACTIONS(3296), + [anon_sym__Noreturn] = ACTIONS(3296), + [anon_sym_noreturn] = ACTIONS(3296), + [anon_sym__Nonnull] = ACTIONS(3296), + [anon_sym_mutable] = ACTIONS(3296), + [anon_sym_constinit] = ACTIONS(3296), + [anon_sym_consteval] = ACTIONS(3296), + [anon_sym_alignas] = ACTIONS(3296), + [anon_sym__Alignas] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3291), + [anon_sym_STAR_EQ] = ACTIONS(3291), + [anon_sym_SLASH_EQ] = ACTIONS(3291), + [anon_sym_PERCENT_EQ] = ACTIONS(3291), + [anon_sym_PLUS_EQ] = ACTIONS(3291), + [anon_sym_DASH_EQ] = ACTIONS(3291), + [anon_sym_LT_LT_EQ] = ACTIONS(3291), + [anon_sym_GT_GT_EQ] = ACTIONS(3298), + [anon_sym_AMP_EQ] = ACTIONS(3291), + [anon_sym_CARET_EQ] = ACTIONS(3291), + [anon_sym_PIPE_EQ] = ACTIONS(3291), + [anon_sym_and_eq] = ACTIONS(3291), + [anon_sym_or_eq] = ACTIONS(3291), + [anon_sym_xor_eq] = ACTIONS(3291), + [anon_sym_LT_EQ_GT] = ACTIONS(3291), + [anon_sym_or] = ACTIONS(3298), + [anon_sym_and] = ACTIONS(3298), + [anon_sym_bitor] = ACTIONS(3291), + [anon_sym_xor] = ACTIONS(3298), + [anon_sym_bitand] = ACTIONS(3291), + [anon_sym_not_eq] = ACTIONS(3291), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DOT] = ACTIONS(3298), + [anon_sym_DOT_STAR] = ACTIONS(3291), + [anon_sym_DASH_GT] = ACTIONS(3291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3296), + [anon_sym_decltype] = ACTIONS(3296), + [anon_sym_GT2] = ACTIONS(3293), + }, + [STATE(2537)] = { + [sym_identifier] = ACTIONS(4490), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4492), + [anon_sym_COMMA] = ACTIONS(4492), + [anon_sym_RPAREN] = ACTIONS(4492), + [aux_sym_preproc_if_token2] = ACTIONS(4492), + [aux_sym_preproc_else_token1] = ACTIONS(4492), + [aux_sym_preproc_elif_token1] = ACTIONS(4490), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4492), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4492), + [anon_sym_LPAREN2] = ACTIONS(4492), + [anon_sym_DASH] = ACTIONS(4490), + [anon_sym_PLUS] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(4492), + [anon_sym_SLASH] = ACTIONS(4490), + [anon_sym_PERCENT] = ACTIONS(4492), + [anon_sym_PIPE_PIPE] = ACTIONS(4492), + [anon_sym_AMP_AMP] = ACTIONS(4492), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_CARET] = ACTIONS(4492), + [anon_sym_AMP] = ACTIONS(4490), + [anon_sym_EQ_EQ] = ACTIONS(4492), + [anon_sym_BANG_EQ] = ACTIONS(4492), + [anon_sym_GT] = ACTIONS(4490), + [anon_sym_GT_EQ] = ACTIONS(4492), + [anon_sym_LT_EQ] = ACTIONS(4490), + [anon_sym_LT] = ACTIONS(4490), + [anon_sym_LT_LT] = ACTIONS(4492), + [anon_sym_GT_GT] = ACTIONS(4492), + [anon_sym_SEMI] = ACTIONS(4492), + [anon_sym___extension__] = ACTIONS(4490), + [anon_sym___attribute__] = ACTIONS(4490), + [anon_sym___attribute] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4492), + [anon_sym_RBRACE] = ACTIONS(4492), + [anon_sym_LBRACK] = ACTIONS(4492), + [anon_sym_RBRACK] = ACTIONS(4492), + [anon_sym_const] = ACTIONS(4490), + [anon_sym_constexpr] = ACTIONS(4490), + [anon_sym_volatile] = ACTIONS(4490), + [anon_sym_restrict] = ACTIONS(4490), + [anon_sym___restrict__] = ACTIONS(4490), + [anon_sym__Atomic] = ACTIONS(4490), + [anon_sym__Noreturn] = ACTIONS(4490), + [anon_sym_noreturn] = ACTIONS(4490), + [anon_sym__Nonnull] = ACTIONS(4490), + [anon_sym_mutable] = ACTIONS(4490), + [anon_sym_constinit] = ACTIONS(4490), + [anon_sym_consteval] = ACTIONS(4490), + [anon_sym_alignas] = ACTIONS(4490), + [anon_sym__Alignas] = ACTIONS(4490), + [anon_sym_COLON] = ACTIONS(4492), + [anon_sym_QMARK] = ACTIONS(4492), + [anon_sym_LT_EQ_GT] = ACTIONS(4492), + [anon_sym_or] = ACTIONS(4490), + [anon_sym_and] = ACTIONS(4490), + [anon_sym_bitor] = ACTIONS(4490), + [anon_sym_xor] = ACTIONS(4490), + [anon_sym_bitand] = ACTIONS(4490), + [anon_sym_not_eq] = ACTIONS(4490), + [anon_sym_DASH_DASH] = ACTIONS(4492), + [anon_sym_PLUS_PLUS] = ACTIONS(4492), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_DOT_STAR] = ACTIONS(4492), + [anon_sym_DASH_GT] = ACTIONS(4492), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4490), + [anon_sym_decltype] = ACTIONS(4490), + [anon_sym_final] = ACTIONS(4490), + [anon_sym_override] = ACTIONS(4490), + [anon_sym_requires] = ACTIONS(4490), + }, + [STATE(2538)] = { + [sym_template_argument_list] = STATE(2558), + [sym_identifier] = ACTIONS(4529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3113), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_RPAREN] = ACTIONS(3113), + [aux_sym_preproc_if_token2] = ACTIONS(3113), + [aux_sym_preproc_else_token1] = ACTIONS(3113), + [aux_sym_preproc_elif_token1] = ACTIONS(4529), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3113), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_PLUS] = ACTIONS(4529), + [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4529), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_PIPE] = ACTIONS(4529), + [anon_sym_CARET] = ACTIONS(4529), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_EQ_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(3113), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_GT_EQ] = ACTIONS(3113), + [anon_sym_LT_EQ] = ACTIONS(4529), + [anon_sym_LT] = ACTIONS(6601), + [anon_sym_LT_LT] = ACTIONS(4529), + [anon_sym_GT_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym___attribute__] = ACTIONS(4529), + [anon_sym___attribute] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_RBRACK] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(4529), + [anon_sym_COLON] = ACTIONS(4529), + [anon_sym_QMARK] = ACTIONS(3113), + [anon_sym_STAR_EQ] = ACTIONS(3113), + [anon_sym_SLASH_EQ] = ACTIONS(3113), + [anon_sym_PERCENT_EQ] = ACTIONS(3113), + [anon_sym_PLUS_EQ] = ACTIONS(3113), + [anon_sym_DASH_EQ] = ACTIONS(3113), + [anon_sym_LT_LT_EQ] = ACTIONS(3113), + [anon_sym_GT_GT_EQ] = ACTIONS(3113), + [anon_sym_AMP_EQ] = ACTIONS(3113), + [anon_sym_CARET_EQ] = ACTIONS(3113), + [anon_sym_PIPE_EQ] = ACTIONS(3113), + [anon_sym_and_eq] = ACTIONS(4529), + [anon_sym_or_eq] = ACTIONS(4529), + [anon_sym_xor_eq] = ACTIONS(4529), + [anon_sym_LT_EQ_GT] = ACTIONS(3113), + [anon_sym_or] = ACTIONS(4529), + [anon_sym_and] = ACTIONS(4529), + [anon_sym_bitor] = ACTIONS(4529), + [anon_sym_xor] = ACTIONS(4529), + [anon_sym_bitand] = ACTIONS(4529), + [anon_sym_not_eq] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(3113), + [anon_sym_PLUS_PLUS] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_DOT_STAR] = ACTIONS(3113), + [anon_sym_DASH_GT] = ACTIONS(3113), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4529), + [anon_sym_decltype] = ACTIONS(4529), + [anon_sym_final] = ACTIONS(4529), + [anon_sym_override] = ACTIONS(4529), + }, + [STATE(2539)] = { + [sym_argument_list] = STATE(2871), + [sym_initializer_list] = STATE(2871), + [sym_decltype_auto] = STATE(2714), + [sym_new_declarator] = STATE(2739), + [sym_identifier] = ACTIONS(6603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6605), + [anon_sym_COMMA] = ACTIONS(6605), + [anon_sym_RPAREN] = ACTIONS(6605), + [aux_sym_preproc_if_token2] = ACTIONS(6605), + [aux_sym_preproc_else_token1] = ACTIONS(6605), + [aux_sym_preproc_elif_token1] = ACTIONS(6603), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6605), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6605), + [anon_sym_LPAREN2] = ACTIONS(6589), + [anon_sym_DASH] = ACTIONS(6603), + [anon_sym_PLUS] = ACTIONS(6603), + [anon_sym_STAR] = ACTIONS(6603), + [anon_sym_SLASH] = ACTIONS(6603), + [anon_sym_PERCENT] = ACTIONS(6603), + [anon_sym_PIPE_PIPE] = ACTIONS(6605), + [anon_sym_AMP_AMP] = ACTIONS(6605), + [anon_sym_PIPE] = ACTIONS(6603), + [anon_sym_CARET] = ACTIONS(6603), + [anon_sym_AMP] = ACTIONS(6603), + [anon_sym_EQ_EQ] = ACTIONS(6605), + [anon_sym_BANG_EQ] = ACTIONS(6605), + [anon_sym_GT] = ACTIONS(6603), + [anon_sym_GT_EQ] = ACTIONS(6605), + [anon_sym_LT_EQ] = ACTIONS(6603), + [anon_sym_LT] = ACTIONS(6603), + [anon_sym_LT_LT] = ACTIONS(6603), + [anon_sym_GT_GT] = ACTIONS(6603), + [anon_sym_SEMI] = ACTIONS(6605), + [anon_sym___attribute__] = ACTIONS(6603), + [anon_sym___attribute] = ACTIONS(6603), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_RBRACE] = ACTIONS(6605), + [anon_sym_LBRACK] = ACTIONS(6591), + [anon_sym_RBRACK] = ACTIONS(6605), + [anon_sym_EQ] = ACTIONS(6603), + [anon_sym_COLON] = ACTIONS(6605), + [anon_sym_QMARK] = ACTIONS(6605), + [anon_sym_STAR_EQ] = ACTIONS(6605), + [anon_sym_SLASH_EQ] = ACTIONS(6605), + [anon_sym_PERCENT_EQ] = ACTIONS(6605), + [anon_sym_PLUS_EQ] = ACTIONS(6605), + [anon_sym_DASH_EQ] = ACTIONS(6605), + [anon_sym_LT_LT_EQ] = ACTIONS(6605), + [anon_sym_GT_GT_EQ] = ACTIONS(6605), + [anon_sym_AMP_EQ] = ACTIONS(6605), + [anon_sym_CARET_EQ] = ACTIONS(6605), + [anon_sym_PIPE_EQ] = ACTIONS(6605), + [anon_sym_and_eq] = ACTIONS(6603), + [anon_sym_or_eq] = ACTIONS(6603), + [anon_sym_xor_eq] = ACTIONS(6603), + [anon_sym_LT_EQ_GT] = ACTIONS(6605), + [anon_sym_or] = ACTIONS(6603), + [anon_sym_and] = ACTIONS(6603), + [anon_sym_bitor] = ACTIONS(6603), + [anon_sym_xor] = ACTIONS(6603), + [anon_sym_bitand] = ACTIONS(6603), + [anon_sym_not_eq] = ACTIONS(6603), + [anon_sym_DASH_DASH] = ACTIONS(6605), + [anon_sym_PLUS_PLUS] = ACTIONS(6605), + [anon_sym_DOT] = ACTIONS(6603), + [anon_sym_DOT_STAR] = ACTIONS(6605), + [anon_sym_DASH_GT] = ACTIONS(6605), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6593), + [anon_sym_decltype] = ACTIONS(6595), + }, + [STATE(2540)] = { + [sym_template_argument_list] = STATE(2558), + [sym_identifier] = ACTIONS(3272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3279), + [anon_sym_COMMA] = ACTIONS(3279), + [anon_sym_RPAREN] = ACTIONS(3279), + [aux_sym_preproc_if_token2] = ACTIONS(3279), + [aux_sym_preproc_else_token1] = ACTIONS(3279), + [aux_sym_preproc_elif_token1] = ACTIONS(3272), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3279), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3279), + [anon_sym_LPAREN2] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3279), + [anon_sym_AMP_AMP] = ACTIONS(3279), + [anon_sym_PIPE] = ACTIONS(3272), + [anon_sym_CARET] = ACTIONS(3272), + [anon_sym_AMP] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3279), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(6607), + [anon_sym_LT_LT] = ACTIONS(3272), + [anon_sym_GT_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym___attribute__] = ACTIONS(3272), + [anon_sym___attribute] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3279), + [anon_sym_RBRACK] = ACTIONS(3279), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(3272), + [anon_sym_QMARK] = ACTIONS(3279), + [anon_sym_STAR_EQ] = ACTIONS(3279), + [anon_sym_SLASH_EQ] = ACTIONS(3279), + [anon_sym_PERCENT_EQ] = ACTIONS(3279), + [anon_sym_PLUS_EQ] = ACTIONS(3279), + [anon_sym_DASH_EQ] = ACTIONS(3279), + [anon_sym_LT_LT_EQ] = ACTIONS(3279), + [anon_sym_GT_GT_EQ] = ACTIONS(3279), + [anon_sym_AMP_EQ] = ACTIONS(3279), + [anon_sym_CARET_EQ] = ACTIONS(3279), + [anon_sym_PIPE_EQ] = ACTIONS(3279), + [anon_sym_and_eq] = ACTIONS(3272), + [anon_sym_or_eq] = ACTIONS(3272), + [anon_sym_xor_eq] = ACTIONS(3272), + [anon_sym_LT_EQ_GT] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3272), + [anon_sym_and] = ACTIONS(3272), + [anon_sym_bitor] = ACTIONS(3272), + [anon_sym_xor] = ACTIONS(3272), + [anon_sym_bitand] = ACTIONS(3272), + [anon_sym_not_eq] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_DOT_STAR] = ACTIONS(3279), + [anon_sym_DASH_GT] = ACTIONS(3279), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3272), + [anon_sym_decltype] = ACTIONS(3272), + [anon_sym_final] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + }, + [STATE(2541)] = { + [sym_identifier] = ACTIONS(4735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4737), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4737), + [aux_sym_preproc_if_token2] = ACTIONS(4737), + [aux_sym_preproc_else_token1] = ACTIONS(4737), + [aux_sym_preproc_elif_token1] = ACTIONS(4735), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4737), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4737), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_DASH] = ACTIONS(4735), + [anon_sym_PLUS] = ACTIONS(4735), + [anon_sym_STAR] = ACTIONS(4737), + [anon_sym_SLASH] = ACTIONS(4735), + [anon_sym_PERCENT] = ACTIONS(4737), + [anon_sym_PIPE_PIPE] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_PIPE] = ACTIONS(4735), + [anon_sym_CARET] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_EQ_EQ] = ACTIONS(4737), + [anon_sym_BANG_EQ] = ACTIONS(4737), + [anon_sym_GT] = ACTIONS(4735), + [anon_sym_GT_EQ] = ACTIONS(4737), + [anon_sym_LT_EQ] = ACTIONS(4735), + [anon_sym_LT] = ACTIONS(4735), + [anon_sym_LT_LT] = ACTIONS(4737), + [anon_sym_GT_GT] = ACTIONS(4737), + [anon_sym_SEMI] = ACTIONS(4737), + [anon_sym___extension__] = ACTIONS(4735), + [anon_sym___attribute__] = ACTIONS(4735), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4737), + [anon_sym_RBRACE] = ACTIONS(4737), + [anon_sym_LBRACK] = ACTIONS(4737), + [anon_sym_RBRACK] = ACTIONS(4737), + [anon_sym_const] = ACTIONS(4735), + [anon_sym_constexpr] = ACTIONS(4735), + [anon_sym_volatile] = ACTIONS(4735), + [anon_sym_restrict] = ACTIONS(4735), + [anon_sym___restrict__] = ACTIONS(4735), + [anon_sym__Atomic] = ACTIONS(4735), + [anon_sym__Noreturn] = ACTIONS(4735), + [anon_sym_noreturn] = ACTIONS(4735), + [anon_sym__Nonnull] = ACTIONS(4735), + [anon_sym_mutable] = ACTIONS(4735), + [anon_sym_constinit] = ACTIONS(4735), + [anon_sym_consteval] = ACTIONS(4735), + [anon_sym_alignas] = ACTIONS(4735), + [anon_sym__Alignas] = ACTIONS(4735), + [anon_sym_COLON] = ACTIONS(4737), + [anon_sym_QMARK] = ACTIONS(4737), + [anon_sym_LT_EQ_GT] = ACTIONS(4737), + [anon_sym_or] = ACTIONS(4735), + [anon_sym_and] = ACTIONS(4735), + [anon_sym_bitor] = ACTIONS(4735), + [anon_sym_xor] = ACTIONS(4735), + [anon_sym_bitand] = ACTIONS(4735), + [anon_sym_not_eq] = ACTIONS(4735), + [anon_sym_DASH_DASH] = ACTIONS(4737), + [anon_sym_PLUS_PLUS] = ACTIONS(4737), + [anon_sym_DOT] = ACTIONS(4735), + [anon_sym_DOT_STAR] = ACTIONS(4737), + [anon_sym_DASH_GT] = ACTIONS(4737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4735), + [anon_sym_decltype] = ACTIONS(4735), + [anon_sym_final] = ACTIONS(4735), + [anon_sym_override] = ACTIONS(4735), + [anon_sym_requires] = ACTIONS(4735), + }, + [STATE(2542)] = { + [sym_ms_based_modifier] = STATE(8558), + [sym_ms_unaligned_ptr_modifier] = STATE(4347), + [sym_ms_pointer_modifier] = STATE(2544), + [sym__declarator] = STATE(6655), + [sym__abstract_declarator] = STATE(6865), + [sym_parenthesized_declarator] = STATE(6300), + [sym_abstract_parenthesized_declarator] = STATE(6365), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_abstract_pointer_declarator] = STATE(6365), + [sym_function_declarator] = STATE(6300), + [sym_abstract_function_declarator] = STATE(6365), + [sym_array_declarator] = STATE(6300), + [sym_abstract_array_declarator] = STATE(6365), + [sym_type_qualifier] = STATE(2952), + [sym_alignas_qualifier] = STATE(4606), + [sym_parameter_list] = STATE(3376), + [sym_decltype] = STATE(8447), + [sym_reference_declarator] = STATE(6300), + [sym_abstract_reference_declarator] = STATE(6365), + [sym_structured_binding_declarator] = STATE(6300), + [sym__function_declarator_seq] = STATE(6368), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6082), + [sym_qualified_identifier] = STATE(6300), + [sym_operator_name] = STATE(6300), + [aux_sym__type_definition_type_repeat1] = STATE(2952), + [aux_sym_pointer_declarator_repeat1] = STATE(2544), + [sym_identifier] = ACTIONS(6610), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_RPAREN] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(6614), + [anon_sym_AMP_AMP] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(6618), + [anon_sym___extension__] = ACTIONS(4029), + [anon_sym___attribute__] = ACTIONS(6620), + [anon_sym___attribute] = ACTIONS(6620), + [anon_sym_COLON_COLON] = ACTIONS(6622), + [anon_sym___based] = ACTIONS(51), + [sym_ms_restrict_modifier] = ACTIONS(4025), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(4025), + [sym_ms_signed_ptr_modifier] = ACTIONS(4025), + [anon_sym__unaligned] = ACTIONS(4027), + [anon_sym___unaligned] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(6624), + [anon_sym_EQ] = ACTIONS(6612), + [anon_sym_const] = ACTIONS(4029), + [anon_sym_constexpr] = ACTIONS(4029), + [anon_sym_volatile] = ACTIONS(4029), + [anon_sym_restrict] = ACTIONS(4029), + [anon_sym___restrict__] = ACTIONS(4029), + [anon_sym__Atomic] = ACTIONS(4029), + [anon_sym__Noreturn] = ACTIONS(4029), + [anon_sym_noreturn] = ACTIONS(4029), + [anon_sym__Nonnull] = ACTIONS(4029), + [anon_sym_mutable] = ACTIONS(4029), + [anon_sym_constinit] = ACTIONS(4029), + [anon_sym_consteval] = ACTIONS(4029), + [anon_sym_alignas] = ACTIONS(4031), + [anon_sym__Alignas] = ACTIONS(4031), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(6612), + [anon_sym_operator] = ACTIONS(3197), + }, + [STATE(2543)] = { + [sym_template_argument_list] = STATE(2552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3283), + [anon_sym_EQ_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(6626), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3281), + [anon_sym___extension__] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_constexpr] = ACTIONS(3279), + [anon_sym_volatile] = ACTIONS(3279), + [anon_sym_restrict] = ACTIONS(3279), + [anon_sym___restrict__] = ACTIONS(3279), + [anon_sym__Atomic] = ACTIONS(3279), + [anon_sym__Noreturn] = ACTIONS(3279), + [anon_sym_noreturn] = ACTIONS(3279), + [anon_sym__Nonnull] = ACTIONS(3279), + [anon_sym_mutable] = ACTIONS(3279), + [anon_sym_constinit] = ACTIONS(3279), + [anon_sym_consteval] = ACTIONS(3279), + [anon_sym_alignas] = ACTIONS(3279), + [anon_sym__Alignas] = ACTIONS(3279), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_LT_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_GT_EQ] = ACTIONS(3274), + [anon_sym_AMP_EQ] = ACTIONS(3274), + [anon_sym_CARET_EQ] = ACTIONS(3274), + [anon_sym_PIPE_EQ] = ACTIONS(3274), + [anon_sym_and_eq] = ACTIONS(3274), + [anon_sym_or_eq] = ACTIONS(3274), + [anon_sym_xor_eq] = ACTIONS(3274), + [anon_sym_LT_EQ_GT] = ACTIONS(3274), + [anon_sym_or] = ACTIONS(3281), + [anon_sym_and] = ACTIONS(3281), + [anon_sym_bitor] = ACTIONS(3274), + [anon_sym_xor] = ACTIONS(3281), + [anon_sym_bitand] = ACTIONS(3274), + [anon_sym_not_eq] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_DOT_STAR] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3279), + [anon_sym_decltype] = ACTIONS(3279), + }, + [STATE(2544)] = { + [sym_ms_based_modifier] = STATE(8558), + [sym_ms_unaligned_ptr_modifier] = STATE(4347), + [sym_ms_pointer_modifier] = STATE(4194), + [sym__declarator] = STATE(6666), + [sym__abstract_declarator] = STATE(6866), + [sym_parenthesized_declarator] = STATE(6300), + [sym_abstract_parenthesized_declarator] = STATE(6365), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_abstract_pointer_declarator] = STATE(6365), + [sym_function_declarator] = STATE(6300), + [sym_abstract_function_declarator] = STATE(6365), + [sym_array_declarator] = STATE(6300), + [sym_abstract_array_declarator] = STATE(6365), + [sym_type_qualifier] = STATE(2957), + [sym_alignas_qualifier] = STATE(4606), + [sym_parameter_list] = STATE(3376), + [sym_decltype] = STATE(8447), + [sym_reference_declarator] = STATE(6300), + [sym_abstract_reference_declarator] = STATE(6365), + [sym_structured_binding_declarator] = STATE(6300), + [sym__function_declarator_seq] = STATE(6368), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6082), + [sym_qualified_identifier] = STATE(6300), + [sym_operator_name] = STATE(6300), + [aux_sym__type_definition_type_repeat1] = STATE(2957), + [aux_sym_pointer_declarator_repeat1] = STATE(4194), + [sym_identifier] = ACTIONS(6610), + [anon_sym_COMMA] = ACTIONS(6629), + [anon_sym_RPAREN] = ACTIONS(6629), + [anon_sym_LPAREN2] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(6614), + [anon_sym_AMP_AMP] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(6618), + [anon_sym___extension__] = ACTIONS(4029), + [anon_sym___attribute__] = ACTIONS(6631), + [anon_sym___attribute] = ACTIONS(6631), + [anon_sym_COLON_COLON] = ACTIONS(6622), + [anon_sym___based] = ACTIONS(51), + [sym_ms_restrict_modifier] = ACTIONS(4025), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(4025), + [sym_ms_signed_ptr_modifier] = ACTIONS(4025), + [anon_sym__unaligned] = ACTIONS(4027), + [anon_sym___unaligned] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(6624), + [anon_sym_EQ] = ACTIONS(6629), + [anon_sym_const] = ACTIONS(4029), + [anon_sym_constexpr] = ACTIONS(4029), + [anon_sym_volatile] = ACTIONS(4029), + [anon_sym_restrict] = ACTIONS(4029), + [anon_sym___restrict__] = ACTIONS(4029), + [anon_sym__Atomic] = ACTIONS(4029), + [anon_sym__Noreturn] = ACTIONS(4029), + [anon_sym_noreturn] = ACTIONS(4029), + [anon_sym__Nonnull] = ACTIONS(4029), + [anon_sym_mutable] = ACTIONS(4029), + [anon_sym_constinit] = ACTIONS(4029), + [anon_sym_consteval] = ACTIONS(4029), + [anon_sym_alignas] = ACTIONS(4031), + [anon_sym__Alignas] = ACTIONS(4031), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(6629), + [anon_sym_operator] = ACTIONS(3197), + }, + [STATE(2545)] = { + [sym_argument_list] = STATE(2858), + [sym_initializer_list] = STATE(2858), + [sym_decltype_auto] = STATE(2714), + [sym_new_declarator] = STATE(2725), + [sym_identifier] = ACTIONS(6633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6635), + [anon_sym_COMMA] = ACTIONS(6635), + [anon_sym_RPAREN] = ACTIONS(6635), + [aux_sym_preproc_if_token2] = ACTIONS(6635), + [aux_sym_preproc_else_token1] = ACTIONS(6635), + [aux_sym_preproc_elif_token1] = ACTIONS(6633), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6635), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6635), + [anon_sym_LPAREN2] = ACTIONS(6589), + [anon_sym_DASH] = ACTIONS(6633), + [anon_sym_PLUS] = ACTIONS(6633), + [anon_sym_STAR] = ACTIONS(6633), + [anon_sym_SLASH] = ACTIONS(6633), + [anon_sym_PERCENT] = ACTIONS(6633), + [anon_sym_PIPE_PIPE] = ACTIONS(6635), + [anon_sym_AMP_AMP] = ACTIONS(6635), + [anon_sym_PIPE] = ACTIONS(6633), + [anon_sym_CARET] = ACTIONS(6633), + [anon_sym_AMP] = ACTIONS(6633), + [anon_sym_EQ_EQ] = ACTIONS(6635), + [anon_sym_BANG_EQ] = ACTIONS(6635), + [anon_sym_GT] = ACTIONS(6633), + [anon_sym_GT_EQ] = ACTIONS(6635), + [anon_sym_LT_EQ] = ACTIONS(6633), + [anon_sym_LT] = ACTIONS(6633), + [anon_sym_LT_LT] = ACTIONS(6633), + [anon_sym_GT_GT] = ACTIONS(6633), + [anon_sym_SEMI] = ACTIONS(6635), + [anon_sym___attribute__] = ACTIONS(6633), + [anon_sym___attribute] = ACTIONS(6633), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_RBRACE] = ACTIONS(6635), + [anon_sym_LBRACK] = ACTIONS(6591), + [anon_sym_RBRACK] = ACTIONS(6635), + [anon_sym_EQ] = ACTIONS(6633), + [anon_sym_COLON] = ACTIONS(6635), + [anon_sym_QMARK] = ACTIONS(6635), + [anon_sym_STAR_EQ] = ACTIONS(6635), + [anon_sym_SLASH_EQ] = ACTIONS(6635), + [anon_sym_PERCENT_EQ] = ACTIONS(6635), + [anon_sym_PLUS_EQ] = ACTIONS(6635), + [anon_sym_DASH_EQ] = ACTIONS(6635), + [anon_sym_LT_LT_EQ] = ACTIONS(6635), + [anon_sym_GT_GT_EQ] = ACTIONS(6635), + [anon_sym_AMP_EQ] = ACTIONS(6635), + [anon_sym_CARET_EQ] = ACTIONS(6635), + [anon_sym_PIPE_EQ] = ACTIONS(6635), + [anon_sym_and_eq] = ACTIONS(6633), + [anon_sym_or_eq] = ACTIONS(6633), + [anon_sym_xor_eq] = ACTIONS(6633), + [anon_sym_LT_EQ_GT] = ACTIONS(6635), + [anon_sym_or] = ACTIONS(6633), + [anon_sym_and] = ACTIONS(6633), + [anon_sym_bitor] = ACTIONS(6633), + [anon_sym_xor] = ACTIONS(6633), + [anon_sym_bitand] = ACTIONS(6633), + [anon_sym_not_eq] = ACTIONS(6633), + [anon_sym_DASH_DASH] = ACTIONS(6635), + [anon_sym_PLUS_PLUS] = ACTIONS(6635), + [anon_sym_DOT] = ACTIONS(6633), + [anon_sym_DOT_STAR] = ACTIONS(6635), + [anon_sym_DASH_GT] = ACTIONS(6635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6593), + [anon_sym_decltype] = ACTIONS(6595), + }, + [STATE(2546)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5192), + [anon_sym_COMMA] = ACTIONS(5192), + [anon_sym_RPAREN] = ACTIONS(5192), + [anon_sym_LPAREN2] = ACTIONS(5192), + [anon_sym_DASH] = ACTIONS(5190), + [anon_sym_PLUS] = ACTIONS(5190), + [anon_sym_STAR] = ACTIONS(5192), + [anon_sym_SLASH] = ACTIONS(5190), + [anon_sym_PERCENT] = ACTIONS(5192), + [anon_sym_PIPE_PIPE] = ACTIONS(5192), + [anon_sym_AMP_AMP] = ACTIONS(5192), + [anon_sym_PIPE] = ACTIONS(5190), + [anon_sym_CARET] = ACTIONS(5192), + [anon_sym_AMP] = ACTIONS(5190), + [anon_sym_EQ_EQ] = ACTIONS(5192), + [anon_sym_BANG_EQ] = ACTIONS(5192), + [anon_sym_GT] = ACTIONS(5190), + [anon_sym_GT_EQ] = ACTIONS(5192), + [anon_sym_LT_EQ] = ACTIONS(5190), + [anon_sym_LT] = ACTIONS(5190), + [anon_sym_LT_LT] = ACTIONS(5192), + [anon_sym_GT_GT] = ACTIONS(5192), + [anon_sym_SEMI] = ACTIONS(5192), + [anon_sym___extension__] = ACTIONS(5192), + [anon_sym___attribute__] = ACTIONS(5192), + [anon_sym___attribute] = ACTIONS(5190), + [anon_sym_LBRACE] = ACTIONS(5192), + [anon_sym_RBRACE] = ACTIONS(5192), + [anon_sym_signed] = ACTIONS(6637), + [anon_sym_unsigned] = ACTIONS(6637), + [anon_sym_long] = ACTIONS(6637), + [anon_sym_short] = ACTIONS(6637), + [anon_sym_LBRACK] = ACTIONS(5192), + [anon_sym_RBRACK] = ACTIONS(5192), + [anon_sym_const] = ACTIONS(5190), + [anon_sym_constexpr] = ACTIONS(5192), + [anon_sym_volatile] = ACTIONS(5192), + [anon_sym_restrict] = ACTIONS(5192), + [anon_sym___restrict__] = ACTIONS(5192), + [anon_sym__Atomic] = ACTIONS(5192), + [anon_sym__Noreturn] = ACTIONS(5192), + [anon_sym_noreturn] = ACTIONS(5192), + [anon_sym__Nonnull] = ACTIONS(5192), + [anon_sym_mutable] = ACTIONS(5192), + [anon_sym_constinit] = ACTIONS(5192), + [anon_sym_consteval] = ACTIONS(5192), + [anon_sym_alignas] = ACTIONS(5192), + [anon_sym__Alignas] = ACTIONS(5192), + [anon_sym_COLON] = ACTIONS(5192), + [anon_sym_QMARK] = ACTIONS(5192), + [anon_sym_LT_EQ_GT] = ACTIONS(5192), + [anon_sym_or] = ACTIONS(5192), + [anon_sym_and] = ACTIONS(5192), + [anon_sym_bitor] = ACTIONS(5192), + [anon_sym_xor] = ACTIONS(5192), + [anon_sym_bitand] = ACTIONS(5192), + [anon_sym_not_eq] = ACTIONS(5192), + [anon_sym_DASH_DASH] = ACTIONS(5192), + [anon_sym_PLUS_PLUS] = ACTIONS(5192), + [anon_sym_DOT] = ACTIONS(5190), + [anon_sym_DOT_STAR] = ACTIONS(5192), + [anon_sym_DASH_GT] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5192), + [anon_sym_decltype] = ACTIONS(5192), + [anon_sym_final] = ACTIONS(5192), + [anon_sym_override] = ACTIONS(5192), + [anon_sym_requires] = ACTIONS(5192), + }, + [STATE(2547)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5166), + [anon_sym_COMMA] = ACTIONS(5166), + [anon_sym_RPAREN] = ACTIONS(5166), + [anon_sym_LPAREN2] = ACTIONS(5166), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5166), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_PERCENT] = ACTIONS(5166), + [anon_sym_PIPE_PIPE] = ACTIONS(5166), + [anon_sym_AMP_AMP] = ACTIONS(5166), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_CARET] = ACTIONS(5166), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_EQ_EQ] = ACTIONS(5166), + [anon_sym_BANG_EQ] = ACTIONS(5166), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_GT_EQ] = ACTIONS(5166), + [anon_sym_LT_EQ] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_LT_LT] = ACTIONS(5166), + [anon_sym_GT_GT] = ACTIONS(5166), + [anon_sym_SEMI] = ACTIONS(5166), + [anon_sym___extension__] = ACTIONS(5166), + [anon_sym___attribute__] = ACTIONS(5166), + [anon_sym___attribute] = ACTIONS(5164), + [anon_sym_LBRACE] = ACTIONS(5166), + [anon_sym_RBRACE] = ACTIONS(5166), + [anon_sym_signed] = ACTIONS(6637), + [anon_sym_unsigned] = ACTIONS(6637), + [anon_sym_long] = ACTIONS(6637), + [anon_sym_short] = ACTIONS(6637), + [anon_sym_LBRACK] = ACTIONS(5166), + [anon_sym_RBRACK] = ACTIONS(5166), + [anon_sym_const] = ACTIONS(5164), + [anon_sym_constexpr] = ACTIONS(5166), + [anon_sym_volatile] = ACTIONS(5166), + [anon_sym_restrict] = ACTIONS(5166), + [anon_sym___restrict__] = ACTIONS(5166), + [anon_sym__Atomic] = ACTIONS(5166), + [anon_sym__Noreturn] = ACTIONS(5166), + [anon_sym_noreturn] = ACTIONS(5166), + [anon_sym__Nonnull] = ACTIONS(5166), + [anon_sym_mutable] = ACTIONS(5166), + [anon_sym_constinit] = ACTIONS(5166), + [anon_sym_consteval] = ACTIONS(5166), + [anon_sym_alignas] = ACTIONS(5166), + [anon_sym__Alignas] = ACTIONS(5166), + [anon_sym_COLON] = ACTIONS(5166), + [anon_sym_QMARK] = ACTIONS(5166), + [anon_sym_LT_EQ_GT] = ACTIONS(5166), + [anon_sym_or] = ACTIONS(5166), + [anon_sym_and] = ACTIONS(5166), + [anon_sym_bitor] = ACTIONS(5166), + [anon_sym_xor] = ACTIONS(5166), + [anon_sym_bitand] = ACTIONS(5166), + [anon_sym_not_eq] = ACTIONS(5166), + [anon_sym_DASH_DASH] = ACTIONS(5166), + [anon_sym_PLUS_PLUS] = ACTIONS(5166), + [anon_sym_DOT] = ACTIONS(5164), + [anon_sym_DOT_STAR] = ACTIONS(5166), + [anon_sym_DASH_GT] = ACTIONS(5166), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5166), + [anon_sym_decltype] = ACTIONS(5166), + [anon_sym_final] = ACTIONS(5166), + [anon_sym_override] = ACTIONS(5166), + [anon_sym_requires] = ACTIONS(5166), + }, + [STATE(2548)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5145), + [anon_sym_COMMA] = ACTIONS(5145), + [anon_sym_RPAREN] = ACTIONS(5145), + [anon_sym_LPAREN2] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5143), + [anon_sym_PLUS] = ACTIONS(5143), + [anon_sym_STAR] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5143), + [anon_sym_PERCENT] = ACTIONS(5145), + [anon_sym_PIPE_PIPE] = ACTIONS(5145), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_PIPE] = ACTIONS(5143), + [anon_sym_CARET] = ACTIONS(5145), + [anon_sym_AMP] = ACTIONS(5143), + [anon_sym_EQ_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5143), + [anon_sym_GT_EQ] = ACTIONS(5145), + [anon_sym_LT_EQ] = ACTIONS(5143), + [anon_sym_LT] = ACTIONS(5143), + [anon_sym_LT_LT] = ACTIONS(5145), + [anon_sym_GT_GT] = ACTIONS(5145), + [anon_sym_SEMI] = ACTIONS(5145), + [anon_sym___extension__] = ACTIONS(5145), + [anon_sym___attribute__] = ACTIONS(5145), + [anon_sym___attribute] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(5145), + [anon_sym_signed] = ACTIONS(6637), + [anon_sym_unsigned] = ACTIONS(6637), + [anon_sym_long] = ACTIONS(6637), + [anon_sym_short] = ACTIONS(6637), + [anon_sym_LBRACK] = ACTIONS(5145), + [anon_sym_RBRACK] = ACTIONS(5145), + [anon_sym_const] = ACTIONS(5143), + [anon_sym_constexpr] = ACTIONS(5145), + [anon_sym_volatile] = ACTIONS(5145), + [anon_sym_restrict] = ACTIONS(5145), + [anon_sym___restrict__] = ACTIONS(5145), + [anon_sym__Atomic] = ACTIONS(5145), + [anon_sym__Noreturn] = ACTIONS(5145), + [anon_sym_noreturn] = ACTIONS(5145), + [anon_sym__Nonnull] = ACTIONS(5145), + [anon_sym_mutable] = ACTIONS(5145), + [anon_sym_constinit] = ACTIONS(5145), + [anon_sym_consteval] = ACTIONS(5145), + [anon_sym_alignas] = ACTIONS(5145), + [anon_sym__Alignas] = ACTIONS(5145), + [anon_sym_COLON] = ACTIONS(5145), + [anon_sym_QMARK] = ACTIONS(5145), + [anon_sym_LT_EQ_GT] = ACTIONS(5145), + [anon_sym_or] = ACTIONS(5145), + [anon_sym_and] = ACTIONS(5145), + [anon_sym_bitor] = ACTIONS(5145), + [anon_sym_xor] = ACTIONS(5145), + [anon_sym_bitand] = ACTIONS(5145), + [anon_sym_not_eq] = ACTIONS(5145), + [anon_sym_DASH_DASH] = ACTIONS(5145), + [anon_sym_PLUS_PLUS] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5143), + [anon_sym_DOT_STAR] = ACTIONS(5145), + [anon_sym_DASH_GT] = ACTIONS(5145), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5145), + [anon_sym_decltype] = ACTIONS(5145), + [anon_sym_final] = ACTIONS(5145), + [anon_sym_override] = ACTIONS(5145), + [anon_sym_requires] = ACTIONS(5145), + }, + [STATE(2549)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2548), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4819), + [anon_sym_COMMA] = ACTIONS(4819), + [anon_sym_RPAREN] = ACTIONS(4819), + [anon_sym_LPAREN2] = ACTIONS(4819), + [anon_sym_DASH] = ACTIONS(4817), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_STAR] = ACTIONS(4819), + [anon_sym_SLASH] = ACTIONS(4817), + [anon_sym_PERCENT] = ACTIONS(4819), + [anon_sym_PIPE_PIPE] = ACTIONS(4819), + [anon_sym_AMP_AMP] = ACTIONS(4819), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_CARET] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4817), + [anon_sym_EQ_EQ] = ACTIONS(4819), + [anon_sym_BANG_EQ] = ACTIONS(4819), + [anon_sym_GT] = ACTIONS(4817), + [anon_sym_GT_EQ] = ACTIONS(4819), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4817), + [anon_sym_LT_LT] = ACTIONS(4819), + [anon_sym_GT_GT] = ACTIONS(4819), + [anon_sym_SEMI] = ACTIONS(4819), + [anon_sym___extension__] = ACTIONS(4819), + [anon_sym___attribute__] = ACTIONS(4819), + [anon_sym___attribute] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(4819), + [anon_sym_RBRACE] = ACTIONS(4819), + [anon_sym_signed] = ACTIONS(6639), + [anon_sym_unsigned] = ACTIONS(6639), + [anon_sym_long] = ACTIONS(6639), + [anon_sym_short] = ACTIONS(6639), + [anon_sym_LBRACK] = ACTIONS(4819), + [anon_sym_RBRACK] = ACTIONS(4819), + [anon_sym_const] = ACTIONS(4817), + [anon_sym_constexpr] = ACTIONS(4819), + [anon_sym_volatile] = ACTIONS(4819), + [anon_sym_restrict] = ACTIONS(4819), + [anon_sym___restrict__] = ACTIONS(4819), + [anon_sym__Atomic] = ACTIONS(4819), + [anon_sym__Noreturn] = ACTIONS(4819), + [anon_sym_noreturn] = ACTIONS(4819), + [anon_sym__Nonnull] = ACTIONS(4819), + [anon_sym_mutable] = ACTIONS(4819), + [anon_sym_constinit] = ACTIONS(4819), + [anon_sym_consteval] = ACTIONS(4819), + [anon_sym_alignas] = ACTIONS(4819), + [anon_sym__Alignas] = ACTIONS(4819), + [anon_sym_COLON] = ACTIONS(4819), + [anon_sym_QMARK] = ACTIONS(4819), + [anon_sym_LT_EQ_GT] = ACTIONS(4819), + [anon_sym_or] = ACTIONS(4819), + [anon_sym_and] = ACTIONS(4819), + [anon_sym_bitor] = ACTIONS(4819), + [anon_sym_xor] = ACTIONS(4819), + [anon_sym_bitand] = ACTIONS(4819), + [anon_sym_not_eq] = ACTIONS(4819), + [anon_sym_DASH_DASH] = ACTIONS(4819), + [anon_sym_PLUS_PLUS] = ACTIONS(4819), + [anon_sym_DOT] = ACTIONS(4817), + [anon_sym_DOT_STAR] = ACTIONS(4819), + [anon_sym_DASH_GT] = ACTIONS(4819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4819), + [anon_sym_decltype] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_override] = ACTIONS(4819), + [anon_sym_requires] = ACTIONS(4819), + }, + [STATE(2550)] = { + [sym_identifier] = ACTIONS(4541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4543), + [anon_sym_COMMA] = ACTIONS(4543), + [anon_sym_RPAREN] = ACTIONS(4543), + [aux_sym_preproc_if_token2] = ACTIONS(4543), + [aux_sym_preproc_else_token1] = ACTIONS(4543), + [aux_sym_preproc_elif_token1] = ACTIONS(4541), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4543), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4543), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_PLUS] = ACTIONS(4541), + [anon_sym_STAR] = ACTIONS(4541), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4541), + [anon_sym_PIPE_PIPE] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4543), + [anon_sym_PIPE] = ACTIONS(4541), + [anon_sym_CARET] = ACTIONS(4541), + [anon_sym_AMP] = ACTIONS(4541), + [anon_sym_EQ_EQ] = ACTIONS(4543), + [anon_sym_BANG_EQ] = ACTIONS(4543), + [anon_sym_GT] = ACTIONS(4541), + [anon_sym_GT_EQ] = ACTIONS(4543), + [anon_sym_LT_EQ] = ACTIONS(4541), + [anon_sym_LT] = ACTIONS(4541), + [anon_sym_LT_LT] = ACTIONS(4541), + [anon_sym_GT_GT] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(4543), + [anon_sym___attribute__] = ACTIONS(4541), + [anon_sym___attribute] = ACTIONS(4541), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4543), + [anon_sym_RBRACE] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4543), + [anon_sym_RBRACK] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4541), + [anon_sym_COLON] = ACTIONS(4541), + [anon_sym_QMARK] = ACTIONS(4543), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_and_eq] = ACTIONS(4541), + [anon_sym_or_eq] = ACTIONS(4541), + [anon_sym_xor_eq] = ACTIONS(4541), + [anon_sym_LT_EQ_GT] = ACTIONS(4543), + [anon_sym_or] = ACTIONS(4541), + [anon_sym_and] = ACTIONS(4541), + [anon_sym_bitor] = ACTIONS(4541), + [anon_sym_xor] = ACTIONS(4541), + [anon_sym_bitand] = ACTIONS(4541), + [anon_sym_not_eq] = ACTIONS(4541), + [anon_sym_DASH_DASH] = ACTIONS(4543), + [anon_sym_PLUS_PLUS] = ACTIONS(4543), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_DOT_STAR] = ACTIONS(4543), + [anon_sym_DASH_GT] = ACTIONS(4543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4541), + [anon_sym_decltype] = ACTIONS(4541), + [anon_sym_final] = ACTIONS(4541), + [anon_sym_override] = ACTIONS(4541), + }, + [STATE(2551)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2548), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4737), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4737), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_DASH] = ACTIONS(4735), + [anon_sym_PLUS] = ACTIONS(4735), + [anon_sym_STAR] = ACTIONS(4737), + [anon_sym_SLASH] = ACTIONS(4735), + [anon_sym_PERCENT] = ACTIONS(4737), + [anon_sym_PIPE_PIPE] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_PIPE] = ACTIONS(4735), + [anon_sym_CARET] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_EQ_EQ] = ACTIONS(4737), + [anon_sym_BANG_EQ] = ACTIONS(4737), + [anon_sym_GT] = ACTIONS(4735), + [anon_sym_GT_EQ] = ACTIONS(4737), + [anon_sym_LT_EQ] = ACTIONS(4735), + [anon_sym_LT] = ACTIONS(4735), + [anon_sym_LT_LT] = ACTIONS(4737), + [anon_sym_GT_GT] = ACTIONS(4737), + [anon_sym_SEMI] = ACTIONS(4737), + [anon_sym___extension__] = ACTIONS(4737), + [anon_sym___attribute__] = ACTIONS(4737), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4737), + [anon_sym_RBRACE] = ACTIONS(4737), + [anon_sym_signed] = ACTIONS(6639), + [anon_sym_unsigned] = ACTIONS(6639), + [anon_sym_long] = ACTIONS(6639), + [anon_sym_short] = ACTIONS(6639), + [anon_sym_LBRACK] = ACTIONS(4737), + [anon_sym_RBRACK] = ACTIONS(4737), + [anon_sym_const] = ACTIONS(4735), + [anon_sym_constexpr] = ACTIONS(4737), + [anon_sym_volatile] = ACTIONS(4737), + [anon_sym_restrict] = ACTIONS(4737), + [anon_sym___restrict__] = ACTIONS(4737), + [anon_sym__Atomic] = ACTIONS(4737), + [anon_sym__Noreturn] = ACTIONS(4737), + [anon_sym_noreturn] = ACTIONS(4737), + [anon_sym__Nonnull] = ACTIONS(4737), + [anon_sym_mutable] = ACTIONS(4737), + [anon_sym_constinit] = ACTIONS(4737), + [anon_sym_consteval] = ACTIONS(4737), + [anon_sym_alignas] = ACTIONS(4737), + [anon_sym__Alignas] = ACTIONS(4737), + [anon_sym_COLON] = ACTIONS(4737), + [anon_sym_QMARK] = ACTIONS(4737), + [anon_sym_LT_EQ_GT] = ACTIONS(4737), + [anon_sym_or] = ACTIONS(4737), + [anon_sym_and] = ACTIONS(4737), + [anon_sym_bitor] = ACTIONS(4737), + [anon_sym_xor] = ACTIONS(4737), + [anon_sym_bitand] = ACTIONS(4737), + [anon_sym_not_eq] = ACTIONS(4737), + [anon_sym_DASH_DASH] = ACTIONS(4737), + [anon_sym_PLUS_PLUS] = ACTIONS(4737), + [anon_sym_DOT] = ACTIONS(4735), + [anon_sym_DOT_STAR] = ACTIONS(4737), + [anon_sym_DASH_GT] = ACTIONS(4737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4737), + [anon_sym_decltype] = ACTIONS(4737), + [anon_sym_final] = ACTIONS(4737), + [anon_sym_override] = ACTIONS(4737), + [anon_sym_requires] = ACTIONS(4737), + }, + [STATE(2552)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3291), + [anon_sym_RPAREN] = ACTIONS(3293), + [anon_sym_LPAREN2] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3291), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_CARET] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_EQ_EQ] = ACTIONS(3291), + [anon_sym_BANG_EQ] = ACTIONS(3291), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3291), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_LT_LT] = ACTIONS(3298), + [anon_sym_GT_GT] = ACTIONS(3298), + [anon_sym___extension__] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_constexpr] = ACTIONS(3296), + [anon_sym_volatile] = ACTIONS(3296), + [anon_sym_restrict] = ACTIONS(3296), + [anon_sym___restrict__] = ACTIONS(3296), + [anon_sym__Atomic] = ACTIONS(3296), + [anon_sym__Noreturn] = ACTIONS(3296), + [anon_sym_noreturn] = ACTIONS(3296), + [anon_sym__Nonnull] = ACTIONS(3296), + [anon_sym_mutable] = ACTIONS(3296), + [anon_sym_constinit] = ACTIONS(3296), + [anon_sym_consteval] = ACTIONS(3296), + [anon_sym_alignas] = ACTIONS(3296), + [anon_sym__Alignas] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3291), + [anon_sym_STAR_EQ] = ACTIONS(3291), + [anon_sym_SLASH_EQ] = ACTIONS(3291), + [anon_sym_PERCENT_EQ] = ACTIONS(3291), + [anon_sym_PLUS_EQ] = ACTIONS(3291), + [anon_sym_DASH_EQ] = ACTIONS(3291), + [anon_sym_LT_LT_EQ] = ACTIONS(3291), + [anon_sym_GT_GT_EQ] = ACTIONS(3291), + [anon_sym_AMP_EQ] = ACTIONS(3291), + [anon_sym_CARET_EQ] = ACTIONS(3291), + [anon_sym_PIPE_EQ] = ACTIONS(3291), + [anon_sym_and_eq] = ACTIONS(3291), + [anon_sym_or_eq] = ACTIONS(3291), + [anon_sym_xor_eq] = ACTIONS(3291), + [anon_sym_LT_EQ_GT] = ACTIONS(3291), + [anon_sym_or] = ACTIONS(3298), + [anon_sym_and] = ACTIONS(3298), + [anon_sym_bitor] = ACTIONS(3291), + [anon_sym_xor] = ACTIONS(3298), + [anon_sym_bitand] = ACTIONS(3291), + [anon_sym_not_eq] = ACTIONS(3291), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DOT] = ACTIONS(3298), + [anon_sym_DOT_STAR] = ACTIONS(3291), + [anon_sym_DASH_GT] = ACTIONS(3291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3296), + [anon_sym_decltype] = ACTIONS(3296), + }, + [STATE(2553)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5154), + [anon_sym_COMMA] = ACTIONS(5154), + [anon_sym_RPAREN] = ACTIONS(5154), + [anon_sym_LPAREN2] = ACTIONS(5154), + [anon_sym_DASH] = ACTIONS(5152), + [anon_sym_PLUS] = ACTIONS(5152), + [anon_sym_STAR] = ACTIONS(5154), + [anon_sym_SLASH] = ACTIONS(5152), + [anon_sym_PERCENT] = ACTIONS(5154), + [anon_sym_PIPE_PIPE] = ACTIONS(5154), + [anon_sym_AMP_AMP] = ACTIONS(5154), + [anon_sym_PIPE] = ACTIONS(5152), + [anon_sym_CARET] = ACTIONS(5154), + [anon_sym_AMP] = ACTIONS(5152), + [anon_sym_EQ_EQ] = ACTIONS(5154), + [anon_sym_BANG_EQ] = ACTIONS(5154), + [anon_sym_GT] = ACTIONS(5152), + [anon_sym_GT_EQ] = ACTIONS(5154), + [anon_sym_LT_EQ] = ACTIONS(5152), + [anon_sym_LT] = ACTIONS(5152), + [anon_sym_LT_LT] = ACTIONS(5154), + [anon_sym_GT_GT] = ACTIONS(5154), + [anon_sym_SEMI] = ACTIONS(5154), + [anon_sym___extension__] = ACTIONS(5154), + [anon_sym___attribute__] = ACTIONS(5154), + [anon_sym___attribute] = ACTIONS(5152), + [anon_sym_LBRACE] = ACTIONS(5154), + [anon_sym_RBRACE] = ACTIONS(5154), + [anon_sym_signed] = ACTIONS(6637), + [anon_sym_unsigned] = ACTIONS(6637), + [anon_sym_long] = ACTIONS(6637), + [anon_sym_short] = ACTIONS(6637), + [anon_sym_LBRACK] = ACTIONS(5154), + [anon_sym_RBRACK] = ACTIONS(5154), + [anon_sym_const] = ACTIONS(5152), + [anon_sym_constexpr] = ACTIONS(5154), + [anon_sym_volatile] = ACTIONS(5154), + [anon_sym_restrict] = ACTIONS(5154), + [anon_sym___restrict__] = ACTIONS(5154), + [anon_sym__Atomic] = ACTIONS(5154), + [anon_sym__Noreturn] = ACTIONS(5154), + [anon_sym_noreturn] = ACTIONS(5154), + [anon_sym__Nonnull] = ACTIONS(5154), + [anon_sym_mutable] = ACTIONS(5154), + [anon_sym_constinit] = ACTIONS(5154), + [anon_sym_consteval] = ACTIONS(5154), + [anon_sym_alignas] = ACTIONS(5154), + [anon_sym__Alignas] = ACTIONS(5154), + [anon_sym_COLON] = ACTIONS(5154), + [anon_sym_QMARK] = ACTIONS(5154), + [anon_sym_LT_EQ_GT] = ACTIONS(5154), + [anon_sym_or] = ACTIONS(5154), + [anon_sym_and] = ACTIONS(5154), + [anon_sym_bitor] = ACTIONS(5154), + [anon_sym_xor] = ACTIONS(5154), + [anon_sym_bitand] = ACTIONS(5154), + [anon_sym_not_eq] = ACTIONS(5154), + [anon_sym_DASH_DASH] = ACTIONS(5154), + [anon_sym_PLUS_PLUS] = ACTIONS(5154), + [anon_sym_DOT] = ACTIONS(5152), + [anon_sym_DOT_STAR] = ACTIONS(5154), + [anon_sym_DASH_GT] = ACTIONS(5154), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5154), + [anon_sym_decltype] = ACTIONS(5154), + [anon_sym_final] = ACTIONS(5154), + [anon_sym_override] = ACTIONS(5154), + [anon_sym_requires] = ACTIONS(5154), + }, + [STATE(2554)] = { + [sym_identifier] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [aux_sym_preproc_if_token2] = ACTIONS(4533), + [aux_sym_preproc_else_token1] = ACTIONS(4533), + [aux_sym_preproc_elif_token1] = ACTIONS(4531), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4533), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4531), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_CARET] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4533), + [anon_sym_BANG_EQ] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4531), + [anon_sym_LT_LT] = ACTIONS(4531), + [anon_sym_GT_GT] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4533), + [anon_sym___attribute__] = ACTIONS(4531), + [anon_sym___attribute] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_RBRACK] = ACTIONS(4533), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4533), + [anon_sym_STAR_EQ] = ACTIONS(4533), + [anon_sym_SLASH_EQ] = ACTIONS(4533), + [anon_sym_PERCENT_EQ] = ACTIONS(4533), + [anon_sym_PLUS_EQ] = ACTIONS(4533), + [anon_sym_DASH_EQ] = ACTIONS(4533), + [anon_sym_LT_LT_EQ] = ACTIONS(4533), + [anon_sym_GT_GT_EQ] = ACTIONS(4533), + [anon_sym_AMP_EQ] = ACTIONS(4533), + [anon_sym_CARET_EQ] = ACTIONS(4533), + [anon_sym_PIPE_EQ] = ACTIONS(4533), + [anon_sym_and_eq] = ACTIONS(4531), + [anon_sym_or_eq] = ACTIONS(4531), + [anon_sym_xor_eq] = ACTIONS(4531), + [anon_sym_LT_EQ_GT] = ACTIONS(4533), + [anon_sym_or] = ACTIONS(4531), + [anon_sym_and] = ACTIONS(4531), + [anon_sym_bitor] = ACTIONS(4531), + [anon_sym_xor] = ACTIONS(4531), + [anon_sym_bitand] = ACTIONS(4531), + [anon_sym_not_eq] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_PLUS_PLUS] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_DOT_STAR] = ACTIONS(4533), + [anon_sym_DASH_GT] = ACTIONS(4533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4531), + [anon_sym_decltype] = ACTIONS(4531), + [anon_sym_final] = ACTIONS(4531), + [anon_sym_override] = ACTIONS(4531), + }, + [STATE(2555)] = { + [sym_identifier] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [aux_sym_preproc_if_token2] = ACTIONS(4533), + [aux_sym_preproc_else_token1] = ACTIONS(4533), + [aux_sym_preproc_elif_token1] = ACTIONS(4531), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4533), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4531), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_CARET] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4533), + [anon_sym_BANG_EQ] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4531), + [anon_sym_LT_LT] = ACTIONS(4531), + [anon_sym_GT_GT] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4533), + [anon_sym___attribute__] = ACTIONS(4531), + [anon_sym___attribute] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_RBRACK] = ACTIONS(4533), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4533), + [anon_sym_STAR_EQ] = ACTIONS(4533), + [anon_sym_SLASH_EQ] = ACTIONS(4533), + [anon_sym_PERCENT_EQ] = ACTIONS(4533), + [anon_sym_PLUS_EQ] = ACTIONS(4533), + [anon_sym_DASH_EQ] = ACTIONS(4533), + [anon_sym_LT_LT_EQ] = ACTIONS(4533), + [anon_sym_GT_GT_EQ] = ACTIONS(4533), + [anon_sym_AMP_EQ] = ACTIONS(4533), + [anon_sym_CARET_EQ] = ACTIONS(4533), + [anon_sym_PIPE_EQ] = ACTIONS(4533), + [anon_sym_and_eq] = ACTIONS(4531), + [anon_sym_or_eq] = ACTIONS(4531), + [anon_sym_xor_eq] = ACTIONS(4531), + [anon_sym_LT_EQ_GT] = ACTIONS(4533), + [anon_sym_or] = ACTIONS(4531), + [anon_sym_and] = ACTIONS(4531), + [anon_sym_bitor] = ACTIONS(4531), + [anon_sym_xor] = ACTIONS(4531), + [anon_sym_bitand] = ACTIONS(4531), + [anon_sym_not_eq] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_PLUS_PLUS] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_DOT_STAR] = ACTIONS(4533), + [anon_sym_DASH_GT] = ACTIONS(4533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4531), + [anon_sym_decltype] = ACTIONS(4531), + [anon_sym_final] = ACTIONS(4531), + [anon_sym_override] = ACTIONS(4531), + }, + [STATE(2556)] = { + [sym_identifier] = ACTIONS(4535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(4537), + [anon_sym_RPAREN] = ACTIONS(4537), + [aux_sym_preproc_if_token2] = ACTIONS(4537), + [aux_sym_preproc_else_token1] = ACTIONS(4537), + [aux_sym_preproc_elif_token1] = ACTIONS(4535), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_DASH] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4535), + [anon_sym_SLASH] = ACTIONS(4535), + [anon_sym_PERCENT] = ACTIONS(4535), + [anon_sym_PIPE_PIPE] = ACTIONS(4537), + [anon_sym_AMP_AMP] = ACTIONS(4537), + [anon_sym_PIPE] = ACTIONS(4535), + [anon_sym_CARET] = ACTIONS(4535), + [anon_sym_AMP] = ACTIONS(4535), + [anon_sym_EQ_EQ] = ACTIONS(4537), + [anon_sym_BANG_EQ] = ACTIONS(4537), + [anon_sym_GT] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4537), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym_LT_LT] = ACTIONS(4535), + [anon_sym_GT_GT] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4537), + [anon_sym___attribute__] = ACTIONS(4535), + [anon_sym___attribute] = ACTIONS(4535), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(4537), + [anon_sym_RBRACE] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(4537), + [anon_sym_RBRACK] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(4535), + [anon_sym_COLON] = ACTIONS(4535), + [anon_sym_QMARK] = ACTIONS(4537), + [anon_sym_STAR_EQ] = ACTIONS(4537), + [anon_sym_SLASH_EQ] = ACTIONS(4537), + [anon_sym_PERCENT_EQ] = ACTIONS(4537), + [anon_sym_PLUS_EQ] = ACTIONS(4537), + [anon_sym_DASH_EQ] = ACTIONS(4537), + [anon_sym_LT_LT_EQ] = ACTIONS(4537), + [anon_sym_GT_GT_EQ] = ACTIONS(4537), + [anon_sym_AMP_EQ] = ACTIONS(4537), + [anon_sym_CARET_EQ] = ACTIONS(4537), + [anon_sym_PIPE_EQ] = ACTIONS(4537), + [anon_sym_and_eq] = ACTIONS(4535), + [anon_sym_or_eq] = ACTIONS(4535), + [anon_sym_xor_eq] = ACTIONS(4535), + [anon_sym_LT_EQ_GT] = ACTIONS(4537), + [anon_sym_or] = ACTIONS(4535), + [anon_sym_and] = ACTIONS(4535), + [anon_sym_bitor] = ACTIONS(4535), + [anon_sym_xor] = ACTIONS(4535), + [anon_sym_bitand] = ACTIONS(4535), + [anon_sym_not_eq] = ACTIONS(4535), + [anon_sym_DASH_DASH] = ACTIONS(4537), + [anon_sym_PLUS_PLUS] = ACTIONS(4537), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_DOT_STAR] = ACTIONS(4537), + [anon_sym_DASH_GT] = ACTIONS(4537), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4535), + [anon_sym_decltype] = ACTIONS(4535), + [anon_sym_final] = ACTIONS(4535), + [anon_sym_override] = ACTIONS(4535), + }, + [STATE(2557)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5162), + [anon_sym_COMMA] = ACTIONS(5162), + [anon_sym_RPAREN] = ACTIONS(5162), + [anon_sym_LPAREN2] = ACTIONS(5162), + [anon_sym_DASH] = ACTIONS(5160), + [anon_sym_PLUS] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_SLASH] = ACTIONS(5160), + [anon_sym_PERCENT] = ACTIONS(5162), + [anon_sym_PIPE_PIPE] = ACTIONS(5162), + [anon_sym_AMP_AMP] = ACTIONS(5162), + [anon_sym_PIPE] = ACTIONS(5160), + [anon_sym_CARET] = ACTIONS(5162), + [anon_sym_AMP] = ACTIONS(5160), + [anon_sym_EQ_EQ] = ACTIONS(5162), + [anon_sym_BANG_EQ] = ACTIONS(5162), + [anon_sym_GT] = ACTIONS(5160), + [anon_sym_GT_EQ] = ACTIONS(5162), + [anon_sym_LT_EQ] = ACTIONS(5160), + [anon_sym_LT] = ACTIONS(5160), + [anon_sym_LT_LT] = ACTIONS(5162), + [anon_sym_GT_GT] = ACTIONS(5162), + [anon_sym_SEMI] = ACTIONS(5162), + [anon_sym___extension__] = ACTIONS(5162), + [anon_sym___attribute__] = ACTIONS(5162), + [anon_sym___attribute] = ACTIONS(5160), + [anon_sym_LBRACE] = ACTIONS(5162), + [anon_sym_RBRACE] = ACTIONS(5162), + [anon_sym_signed] = ACTIONS(6637), + [anon_sym_unsigned] = ACTIONS(6637), + [anon_sym_long] = ACTIONS(6637), + [anon_sym_short] = ACTIONS(6637), + [anon_sym_LBRACK] = ACTIONS(5162), + [anon_sym_RBRACK] = ACTIONS(5162), + [anon_sym_const] = ACTIONS(5160), + [anon_sym_constexpr] = ACTIONS(5162), + [anon_sym_volatile] = ACTIONS(5162), + [anon_sym_restrict] = ACTIONS(5162), + [anon_sym___restrict__] = ACTIONS(5162), + [anon_sym__Atomic] = ACTIONS(5162), + [anon_sym__Noreturn] = ACTIONS(5162), + [anon_sym_noreturn] = ACTIONS(5162), + [anon_sym__Nonnull] = ACTIONS(5162), + [anon_sym_mutable] = ACTIONS(5162), + [anon_sym_constinit] = ACTIONS(5162), + [anon_sym_consteval] = ACTIONS(5162), + [anon_sym_alignas] = ACTIONS(5162), + [anon_sym__Alignas] = ACTIONS(5162), + [anon_sym_COLON] = ACTIONS(5162), + [anon_sym_QMARK] = ACTIONS(5162), + [anon_sym_LT_EQ_GT] = ACTIONS(5162), + [anon_sym_or] = ACTIONS(5162), + [anon_sym_and] = ACTIONS(5162), + [anon_sym_bitor] = ACTIONS(5162), + [anon_sym_xor] = ACTIONS(5162), + [anon_sym_bitand] = ACTIONS(5162), + [anon_sym_not_eq] = ACTIONS(5162), + [anon_sym_DASH_DASH] = ACTIONS(5162), + [anon_sym_PLUS_PLUS] = ACTIONS(5162), + [anon_sym_DOT] = ACTIONS(5160), + [anon_sym_DOT_STAR] = ACTIONS(5162), + [anon_sym_DASH_GT] = ACTIONS(5162), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5162), + [anon_sym_decltype] = ACTIONS(5162), + [anon_sym_final] = ACTIONS(5162), + [anon_sym_override] = ACTIONS(5162), + [anon_sym_requires] = ACTIONS(5162), + }, + [STATE(2558)] = { + [sym_identifier] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_RPAREN] = ACTIONS(3296), + [aux_sym_preproc_if_token2] = ACTIONS(3296), + [aux_sym_preproc_else_token1] = ACTIONS(3296), + [aux_sym_preproc_elif_token1] = ACTIONS(3289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3296), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3289), + [anon_sym_SLASH] = ACTIONS(3289), + [anon_sym_PERCENT] = ACTIONS(3289), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_CARET] = ACTIONS(3289), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3289), + [anon_sym_GT_EQ] = ACTIONS(3296), + [anon_sym_LT_EQ] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_LT_LT] = ACTIONS(3289), + [anon_sym_GT_GT] = ACTIONS(3289), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym___attribute__] = ACTIONS(3289), + [anon_sym___attribute] = ACTIONS(3289), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3289), + [anon_sym_COLON] = ACTIONS(3289), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_STAR_EQ] = ACTIONS(3296), + [anon_sym_SLASH_EQ] = ACTIONS(3296), + [anon_sym_PERCENT_EQ] = ACTIONS(3296), + [anon_sym_PLUS_EQ] = ACTIONS(3296), + [anon_sym_DASH_EQ] = ACTIONS(3296), + [anon_sym_LT_LT_EQ] = ACTIONS(3296), + [anon_sym_GT_GT_EQ] = ACTIONS(3296), + [anon_sym_AMP_EQ] = ACTIONS(3296), + [anon_sym_CARET_EQ] = ACTIONS(3296), + [anon_sym_PIPE_EQ] = ACTIONS(3296), + [anon_sym_and_eq] = ACTIONS(3289), + [anon_sym_or_eq] = ACTIONS(3289), + [anon_sym_xor_eq] = ACTIONS(3289), + [anon_sym_LT_EQ_GT] = ACTIONS(3296), + [anon_sym_or] = ACTIONS(3289), + [anon_sym_and] = ACTIONS(3289), + [anon_sym_bitor] = ACTIONS(3289), + [anon_sym_xor] = ACTIONS(3289), + [anon_sym_bitand] = ACTIONS(3289), + [anon_sym_not_eq] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3289), + [anon_sym_DOT_STAR] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3289), + [anon_sym_decltype] = ACTIONS(3289), + [anon_sym_final] = ACTIONS(3289), + [anon_sym_override] = ACTIONS(3289), + }, + [STATE(2559)] = { + [sym_string_literal] = STATE(2436), + [sym_raw_string_literal] = STATE(2436), + [sym_identifier] = ACTIONS(6641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6643), + [anon_sym_COMMA] = ACTIONS(6643), + [aux_sym_preproc_if_token2] = ACTIONS(6643), + [aux_sym_preproc_else_token1] = ACTIONS(6643), + [aux_sym_preproc_elif_token1] = ACTIONS(6641), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6643), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6643), + [anon_sym_LPAREN2] = ACTIONS(6643), + [anon_sym_DASH] = ACTIONS(6641), + [anon_sym_PLUS] = ACTIONS(6641), + [anon_sym_STAR] = ACTIONS(6641), + [anon_sym_SLASH] = ACTIONS(6641), + [anon_sym_PERCENT] = ACTIONS(6641), + [anon_sym_PIPE_PIPE] = ACTIONS(6643), + [anon_sym_AMP_AMP] = ACTIONS(6643), + [anon_sym_PIPE] = ACTIONS(6641), + [anon_sym_CARET] = ACTIONS(6641), + [anon_sym_AMP] = ACTIONS(6641), + [anon_sym_EQ_EQ] = ACTIONS(6643), + [anon_sym_BANG_EQ] = ACTIONS(6643), + [anon_sym_GT] = ACTIONS(6641), + [anon_sym_GT_EQ] = ACTIONS(6643), + [anon_sym_LT_EQ] = ACTIONS(6641), + [anon_sym_LT] = ACTIONS(6641), + [anon_sym_LT_LT] = ACTIONS(6641), + [anon_sym_GT_GT] = ACTIONS(6641), + [anon_sym_LBRACK] = ACTIONS(6643), + [anon_sym_EQ] = ACTIONS(6641), + [anon_sym_QMARK] = ACTIONS(6643), + [anon_sym_STAR_EQ] = ACTIONS(6643), + [anon_sym_SLASH_EQ] = ACTIONS(6643), + [anon_sym_PERCENT_EQ] = ACTIONS(6643), + [anon_sym_PLUS_EQ] = ACTIONS(6643), + [anon_sym_DASH_EQ] = ACTIONS(6643), + [anon_sym_LT_LT_EQ] = ACTIONS(6643), + [anon_sym_GT_GT_EQ] = ACTIONS(6643), + [anon_sym_AMP_EQ] = ACTIONS(6643), + [anon_sym_CARET_EQ] = ACTIONS(6643), + [anon_sym_PIPE_EQ] = ACTIONS(6643), + [anon_sym_and_eq] = ACTIONS(6641), + [anon_sym_or_eq] = ACTIONS(6641), + [anon_sym_xor_eq] = ACTIONS(6641), + [anon_sym_LT_EQ_GT] = ACTIONS(6643), + [anon_sym_or] = ACTIONS(6641), + [anon_sym_and] = ACTIONS(6641), + [anon_sym_bitor] = ACTIONS(6641), + [anon_sym_xor] = ACTIONS(6641), + [anon_sym_bitand] = ACTIONS(6641), + [anon_sym_not_eq] = ACTIONS(6641), + [anon_sym_DASH_DASH] = ACTIONS(6643), + [anon_sym_PLUS_PLUS] = ACTIONS(6643), + [anon_sym_DOT] = ACTIONS(6641), + [anon_sym_DOT_STAR] = ACTIONS(6643), + [anon_sym_DASH_GT] = ACTIONS(6643), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [sym_literal_suffix] = ACTIONS(6641), + }, + [STATE(2560)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5196), + [anon_sym_COMMA] = ACTIONS(5196), + [anon_sym_RPAREN] = ACTIONS(5196), + [anon_sym_LPAREN2] = ACTIONS(5196), + [anon_sym_DASH] = ACTIONS(5194), + [anon_sym_PLUS] = ACTIONS(5194), + [anon_sym_STAR] = ACTIONS(5196), + [anon_sym_SLASH] = ACTIONS(5194), + [anon_sym_PERCENT] = ACTIONS(5196), + [anon_sym_PIPE_PIPE] = ACTIONS(5196), + [anon_sym_AMP_AMP] = ACTIONS(5196), + [anon_sym_PIPE] = ACTIONS(5194), + [anon_sym_CARET] = ACTIONS(5196), + [anon_sym_AMP] = ACTIONS(5194), + [anon_sym_EQ_EQ] = ACTIONS(5196), + [anon_sym_BANG_EQ] = ACTIONS(5196), + [anon_sym_GT] = ACTIONS(5194), + [anon_sym_GT_EQ] = ACTIONS(5196), + [anon_sym_LT_EQ] = ACTIONS(5194), + [anon_sym_LT] = ACTIONS(5194), + [anon_sym_LT_LT] = ACTIONS(5196), + [anon_sym_GT_GT] = ACTIONS(5196), + [anon_sym_SEMI] = ACTIONS(5196), + [anon_sym___extension__] = ACTIONS(5196), + [anon_sym___attribute__] = ACTIONS(5196), + [anon_sym___attribute] = ACTIONS(5194), + [anon_sym_LBRACE] = ACTIONS(5196), + [anon_sym_RBRACE] = ACTIONS(5196), + [anon_sym_signed] = ACTIONS(6645), + [anon_sym_unsigned] = ACTIONS(6645), + [anon_sym_long] = ACTIONS(6645), + [anon_sym_short] = ACTIONS(6645), + [anon_sym_LBRACK] = ACTIONS(5196), + [anon_sym_RBRACK] = ACTIONS(5196), + [anon_sym_const] = ACTIONS(5194), + [anon_sym_constexpr] = ACTIONS(5196), + [anon_sym_volatile] = ACTIONS(5196), + [anon_sym_restrict] = ACTIONS(5196), + [anon_sym___restrict__] = ACTIONS(5196), + [anon_sym__Atomic] = ACTIONS(5196), + [anon_sym__Noreturn] = ACTIONS(5196), + [anon_sym_noreturn] = ACTIONS(5196), + [anon_sym__Nonnull] = ACTIONS(5196), + [anon_sym_mutable] = ACTIONS(5196), + [anon_sym_constinit] = ACTIONS(5196), + [anon_sym_consteval] = ACTIONS(5196), + [anon_sym_alignas] = ACTIONS(5196), + [anon_sym__Alignas] = ACTIONS(5196), + [anon_sym_COLON] = ACTIONS(5196), + [anon_sym_QMARK] = ACTIONS(5196), + [anon_sym_LT_EQ_GT] = ACTIONS(5196), + [anon_sym_or] = ACTIONS(5196), + [anon_sym_and] = ACTIONS(5196), + [anon_sym_bitor] = ACTIONS(5196), + [anon_sym_xor] = ACTIONS(5196), + [anon_sym_bitand] = ACTIONS(5196), + [anon_sym_not_eq] = ACTIONS(5196), + [anon_sym_DASH_DASH] = ACTIONS(5196), + [anon_sym_PLUS_PLUS] = ACTIONS(5196), + [anon_sym_DOT] = ACTIONS(5194), + [anon_sym_DOT_STAR] = ACTIONS(5196), + [anon_sym_DASH_GT] = ACTIONS(5196), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5196), + [anon_sym_decltype] = ACTIONS(5196), + [anon_sym_final] = ACTIONS(5196), + [anon_sym_override] = ACTIONS(5196), + [anon_sym_requires] = ACTIONS(5196), + }, + [STATE(2561)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5176), + [anon_sym_COMMA] = ACTIONS(5176), + [anon_sym_RPAREN] = ACTIONS(5176), + [anon_sym_LPAREN2] = ACTIONS(5176), + [anon_sym_DASH] = ACTIONS(5174), + [anon_sym_PLUS] = ACTIONS(5174), + [anon_sym_STAR] = ACTIONS(5176), + [anon_sym_SLASH] = ACTIONS(5174), + [anon_sym_PERCENT] = ACTIONS(5176), + [anon_sym_PIPE_PIPE] = ACTIONS(5176), + [anon_sym_AMP_AMP] = ACTIONS(5176), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_CARET] = ACTIONS(5176), + [anon_sym_AMP] = ACTIONS(5174), + [anon_sym_EQ_EQ] = ACTIONS(5176), + [anon_sym_BANG_EQ] = ACTIONS(5176), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_EQ] = ACTIONS(5176), + [anon_sym_LT_EQ] = ACTIONS(5174), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_LT_LT] = ACTIONS(5176), + [anon_sym_GT_GT] = ACTIONS(5176), + [anon_sym_SEMI] = ACTIONS(5176), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym___attribute__] = ACTIONS(5176), + [anon_sym___attribute] = ACTIONS(5174), + [anon_sym_LBRACE] = ACTIONS(5176), + [anon_sym_RBRACE] = ACTIONS(5176), + [anon_sym_signed] = ACTIONS(6647), + [anon_sym_unsigned] = ACTIONS(6647), + [anon_sym_long] = ACTIONS(6647), + [anon_sym_short] = ACTIONS(6647), + [anon_sym_LBRACK] = ACTIONS(5176), + [anon_sym_RBRACK] = ACTIONS(5176), + [anon_sym_const] = ACTIONS(5174), + [anon_sym_constexpr] = ACTIONS(5176), + [anon_sym_volatile] = ACTIONS(5176), + [anon_sym_restrict] = ACTIONS(5176), + [anon_sym___restrict__] = ACTIONS(5176), + [anon_sym__Atomic] = ACTIONS(5176), + [anon_sym__Noreturn] = ACTIONS(5176), + [anon_sym_noreturn] = ACTIONS(5176), + [anon_sym__Nonnull] = ACTIONS(5176), + [anon_sym_mutable] = ACTIONS(5176), + [anon_sym_constinit] = ACTIONS(5176), + [anon_sym_consteval] = ACTIONS(5176), + [anon_sym_alignas] = ACTIONS(5176), + [anon_sym__Alignas] = ACTIONS(5176), + [anon_sym_COLON] = ACTIONS(5176), + [anon_sym_QMARK] = ACTIONS(5176), + [anon_sym_LT_EQ_GT] = ACTIONS(5176), + [anon_sym_or] = ACTIONS(5176), + [anon_sym_and] = ACTIONS(5176), + [anon_sym_bitor] = ACTIONS(5176), + [anon_sym_xor] = ACTIONS(5176), + [anon_sym_bitand] = ACTIONS(5176), + [anon_sym_not_eq] = ACTIONS(5176), + [anon_sym_DASH_DASH] = ACTIONS(5176), + [anon_sym_PLUS_PLUS] = ACTIONS(5176), + [anon_sym_DOT] = ACTIONS(5174), + [anon_sym_DOT_STAR] = ACTIONS(5176), + [anon_sym_DASH_GT] = ACTIONS(5176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5176), + [anon_sym_decltype] = ACTIONS(5176), + [anon_sym_final] = ACTIONS(5176), + [anon_sym_override] = ACTIONS(5176), + [anon_sym_requires] = ACTIONS(5176), + }, + [STATE(2562)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5182), + [anon_sym_COMMA] = ACTIONS(5182), + [anon_sym_RPAREN] = ACTIONS(5182), + [anon_sym_LPAREN2] = ACTIONS(5182), + [anon_sym_DASH] = ACTIONS(5180), + [anon_sym_PLUS] = ACTIONS(5180), + [anon_sym_STAR] = ACTIONS(5182), + [anon_sym_SLASH] = ACTIONS(5180), + [anon_sym_PERCENT] = ACTIONS(5182), + [anon_sym_PIPE_PIPE] = ACTIONS(5182), + [anon_sym_AMP_AMP] = ACTIONS(5182), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_CARET] = ACTIONS(5182), + [anon_sym_AMP] = ACTIONS(5180), + [anon_sym_EQ_EQ] = ACTIONS(5182), + [anon_sym_BANG_EQ] = ACTIONS(5182), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_GT_EQ] = ACTIONS(5182), + [anon_sym_LT_EQ] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_LT_LT] = ACTIONS(5182), + [anon_sym_GT_GT] = ACTIONS(5182), + [anon_sym_SEMI] = ACTIONS(5182), + [anon_sym___extension__] = ACTIONS(5182), + [anon_sym___attribute__] = ACTIONS(5182), + [anon_sym___attribute] = ACTIONS(5180), + [anon_sym_LBRACE] = ACTIONS(5182), + [anon_sym_RBRACE] = ACTIONS(5182), + [anon_sym_signed] = ACTIONS(6637), + [anon_sym_unsigned] = ACTIONS(6637), + [anon_sym_long] = ACTIONS(6637), + [anon_sym_short] = ACTIONS(6637), + [anon_sym_LBRACK] = ACTIONS(5182), + [anon_sym_RBRACK] = ACTIONS(5182), + [anon_sym_const] = ACTIONS(5180), + [anon_sym_constexpr] = ACTIONS(5182), + [anon_sym_volatile] = ACTIONS(5182), + [anon_sym_restrict] = ACTIONS(5182), + [anon_sym___restrict__] = ACTIONS(5182), + [anon_sym__Atomic] = ACTIONS(5182), + [anon_sym__Noreturn] = ACTIONS(5182), + [anon_sym_noreturn] = ACTIONS(5182), + [anon_sym__Nonnull] = ACTIONS(5182), + [anon_sym_mutable] = ACTIONS(5182), + [anon_sym_constinit] = ACTIONS(5182), + [anon_sym_consteval] = ACTIONS(5182), + [anon_sym_alignas] = ACTIONS(5182), + [anon_sym__Alignas] = ACTIONS(5182), + [anon_sym_COLON] = ACTIONS(5182), + [anon_sym_QMARK] = ACTIONS(5182), + [anon_sym_LT_EQ_GT] = ACTIONS(5182), + [anon_sym_or] = ACTIONS(5182), + [anon_sym_and] = ACTIONS(5182), + [anon_sym_bitor] = ACTIONS(5182), + [anon_sym_xor] = ACTIONS(5182), + [anon_sym_bitand] = ACTIONS(5182), + [anon_sym_not_eq] = ACTIONS(5182), + [anon_sym_DASH_DASH] = ACTIONS(5182), + [anon_sym_PLUS_PLUS] = ACTIONS(5182), + [anon_sym_DOT] = ACTIONS(5180), + [anon_sym_DOT_STAR] = ACTIONS(5182), + [anon_sym_DASH_GT] = ACTIONS(5182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5182), + [anon_sym_decltype] = ACTIONS(5182), + [anon_sym_final] = ACTIONS(5182), + [anon_sym_override] = ACTIONS(5182), + [anon_sym_requires] = ACTIONS(5182), + }, + [STATE(2563)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2553), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5186), + [anon_sym_COMMA] = ACTIONS(5186), + [anon_sym_RPAREN] = ACTIONS(5186), + [anon_sym_LPAREN2] = ACTIONS(5186), + [anon_sym_DASH] = ACTIONS(5184), + [anon_sym_PLUS] = ACTIONS(5184), + [anon_sym_STAR] = ACTIONS(5186), + [anon_sym_SLASH] = ACTIONS(5184), + [anon_sym_PERCENT] = ACTIONS(5186), + [anon_sym_PIPE_PIPE] = ACTIONS(5186), + [anon_sym_AMP_AMP] = ACTIONS(5186), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_CARET] = ACTIONS(5186), + [anon_sym_AMP] = ACTIONS(5184), + [anon_sym_EQ_EQ] = ACTIONS(5186), + [anon_sym_BANG_EQ] = ACTIONS(5186), + [anon_sym_GT] = ACTIONS(5184), + [anon_sym_GT_EQ] = ACTIONS(5186), + [anon_sym_LT_EQ] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5184), + [anon_sym_LT_LT] = ACTIONS(5186), + [anon_sym_GT_GT] = ACTIONS(5186), + [anon_sym_SEMI] = ACTIONS(5186), + [anon_sym___extension__] = ACTIONS(5186), + [anon_sym___attribute__] = ACTIONS(5186), + [anon_sym___attribute] = ACTIONS(5184), + [anon_sym_LBRACE] = ACTIONS(5186), + [anon_sym_RBRACE] = ACTIONS(5186), + [anon_sym_signed] = ACTIONS(6649), + [anon_sym_unsigned] = ACTIONS(6649), + [anon_sym_long] = ACTIONS(6649), + [anon_sym_short] = ACTIONS(6649), + [anon_sym_LBRACK] = ACTIONS(5186), + [anon_sym_RBRACK] = ACTIONS(5186), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5186), + [anon_sym_volatile] = ACTIONS(5186), + [anon_sym_restrict] = ACTIONS(5186), + [anon_sym___restrict__] = ACTIONS(5186), + [anon_sym__Atomic] = ACTIONS(5186), + [anon_sym__Noreturn] = ACTIONS(5186), + [anon_sym_noreturn] = ACTIONS(5186), + [anon_sym__Nonnull] = ACTIONS(5186), + [anon_sym_mutable] = ACTIONS(5186), + [anon_sym_constinit] = ACTIONS(5186), + [anon_sym_consteval] = ACTIONS(5186), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [anon_sym_COLON] = ACTIONS(5186), + [anon_sym_QMARK] = ACTIONS(5186), + [anon_sym_LT_EQ_GT] = ACTIONS(5186), + [anon_sym_or] = ACTIONS(5186), + [anon_sym_and] = ACTIONS(5186), + [anon_sym_bitor] = ACTIONS(5186), + [anon_sym_xor] = ACTIONS(5186), + [anon_sym_bitand] = ACTIONS(5186), + [anon_sym_not_eq] = ACTIONS(5186), + [anon_sym_DASH_DASH] = ACTIONS(5186), + [anon_sym_PLUS_PLUS] = ACTIONS(5186), + [anon_sym_DOT] = ACTIONS(5184), + [anon_sym_DOT_STAR] = ACTIONS(5186), + [anon_sym_DASH_GT] = ACTIONS(5186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5186), + [anon_sym_decltype] = ACTIONS(5186), + [anon_sym_final] = ACTIONS(5186), + [anon_sym_override] = ACTIONS(5186), + [anon_sym_requires] = ACTIONS(5186), + }, + [STATE(2564)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2557), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5170), + [anon_sym_COMMA] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(5170), + [anon_sym_LPAREN2] = ACTIONS(5170), + [anon_sym_DASH] = ACTIONS(5168), + [anon_sym_PLUS] = ACTIONS(5168), + [anon_sym_STAR] = ACTIONS(5170), + [anon_sym_SLASH] = ACTIONS(5168), + [anon_sym_PERCENT] = ACTIONS(5170), + [anon_sym_PIPE_PIPE] = ACTIONS(5170), + [anon_sym_AMP_AMP] = ACTIONS(5170), + [anon_sym_PIPE] = ACTIONS(5168), + [anon_sym_CARET] = ACTIONS(5170), + [anon_sym_AMP] = ACTIONS(5168), + [anon_sym_EQ_EQ] = ACTIONS(5170), + [anon_sym_BANG_EQ] = ACTIONS(5170), + [anon_sym_GT] = ACTIONS(5168), + [anon_sym_GT_EQ] = ACTIONS(5170), + [anon_sym_LT_EQ] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5168), + [anon_sym_LT_LT] = ACTIONS(5170), + [anon_sym_GT_GT] = ACTIONS(5170), + [anon_sym_SEMI] = ACTIONS(5170), + [anon_sym___extension__] = ACTIONS(5170), + [anon_sym___attribute__] = ACTIONS(5170), + [anon_sym___attribute] = ACTIONS(5168), + [anon_sym_LBRACE] = ACTIONS(5170), + [anon_sym_RBRACE] = ACTIONS(5170), + [anon_sym_signed] = ACTIONS(6651), + [anon_sym_unsigned] = ACTIONS(6651), + [anon_sym_long] = ACTIONS(6651), + [anon_sym_short] = ACTIONS(6651), + [anon_sym_LBRACK] = ACTIONS(5170), + [anon_sym_RBRACK] = ACTIONS(5170), + [anon_sym_const] = ACTIONS(5168), + [anon_sym_constexpr] = ACTIONS(5170), + [anon_sym_volatile] = ACTIONS(5170), + [anon_sym_restrict] = ACTIONS(5170), + [anon_sym___restrict__] = ACTIONS(5170), + [anon_sym__Atomic] = ACTIONS(5170), + [anon_sym__Noreturn] = ACTIONS(5170), + [anon_sym_noreturn] = ACTIONS(5170), + [anon_sym__Nonnull] = ACTIONS(5170), + [anon_sym_mutable] = ACTIONS(5170), + [anon_sym_constinit] = ACTIONS(5170), + [anon_sym_consteval] = ACTIONS(5170), + [anon_sym_alignas] = ACTIONS(5170), + [anon_sym__Alignas] = ACTIONS(5170), + [anon_sym_COLON] = ACTIONS(5170), + [anon_sym_QMARK] = ACTIONS(5170), + [anon_sym_LT_EQ_GT] = ACTIONS(5170), + [anon_sym_or] = ACTIONS(5170), + [anon_sym_and] = ACTIONS(5170), + [anon_sym_bitor] = ACTIONS(5170), + [anon_sym_xor] = ACTIONS(5170), + [anon_sym_bitand] = ACTIONS(5170), + [anon_sym_not_eq] = ACTIONS(5170), + [anon_sym_DASH_DASH] = ACTIONS(5170), + [anon_sym_PLUS_PLUS] = ACTIONS(5170), + [anon_sym_DOT] = ACTIONS(5168), + [anon_sym_DOT_STAR] = ACTIONS(5170), + [anon_sym_DASH_GT] = ACTIONS(5170), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5170), + [anon_sym_decltype] = ACTIONS(5170), + [anon_sym_final] = ACTIONS(5170), + [anon_sym_override] = ACTIONS(5170), + [anon_sym_requires] = ACTIONS(5170), + }, + [STATE(2565)] = { + [sym_type_qualifier] = STATE(2565), + [sym_alignas_qualifier] = STATE(2677), + [aux_sym__type_definition_type_repeat1] = STATE(2565), + [sym_identifier] = ACTIONS(4171), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4173), + [anon_sym_COMMA] = ACTIONS(4173), + [anon_sym_LPAREN2] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4173), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_PIPE_PIPE] = ACTIONS(4173), + [anon_sym_AMP_AMP] = ACTIONS(4173), + [anon_sym_PIPE] = ACTIONS(4171), + [anon_sym_CARET] = ACTIONS(4173), + [anon_sym_AMP] = ACTIONS(4171), + [anon_sym_EQ_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ] = ACTIONS(4173), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_GT_EQ] = ACTIONS(4171), + [anon_sym_LT_EQ] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_LT_LT] = ACTIONS(4173), + [anon_sym_GT_GT] = ACTIONS(4171), + [anon_sym___extension__] = ACTIONS(6653), + [anon_sym___attribute__] = ACTIONS(4171), + [anon_sym___attribute] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_signed] = ACTIONS(4171), + [anon_sym_unsigned] = ACTIONS(4171), + [anon_sym_long] = ACTIONS(4171), + [anon_sym_short] = ACTIONS(4171), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_const] = ACTIONS(6653), + [anon_sym_constexpr] = ACTIONS(6653), + [anon_sym_volatile] = ACTIONS(6653), + [anon_sym_restrict] = ACTIONS(6653), + [anon_sym___restrict__] = ACTIONS(6653), + [anon_sym__Atomic] = ACTIONS(6653), + [anon_sym__Noreturn] = ACTIONS(6653), + [anon_sym_noreturn] = ACTIONS(6653), + [anon_sym__Nonnull] = ACTIONS(6653), + [anon_sym_mutable] = ACTIONS(6653), + [anon_sym_constinit] = ACTIONS(6653), + [anon_sym_consteval] = ACTIONS(6653), + [anon_sym_alignas] = ACTIONS(6656), + [anon_sym__Alignas] = ACTIONS(6656), + [sym_primitive_type] = ACTIONS(4171), + [anon_sym_QMARK] = ACTIONS(4173), + [anon_sym_LT_EQ_GT] = ACTIONS(4173), + [anon_sym_or] = ACTIONS(4171), + [anon_sym_and] = ACTIONS(4171), + [anon_sym_bitor] = ACTIONS(4171), + [anon_sym_xor] = ACTIONS(4171), + [anon_sym_bitand] = ACTIONS(4171), + [anon_sym_not_eq] = ACTIONS(4171), + [anon_sym_DASH_DASH] = ACTIONS(4173), + [anon_sym_PLUS_PLUS] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4171), + [anon_sym_DOT_STAR] = ACTIONS(4173), + [anon_sym_DASH_GT] = ACTIONS(4173), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4171), + [anon_sym_decltype] = ACTIONS(4171), + [anon_sym_final] = ACTIONS(4171), + [anon_sym_override] = ACTIONS(4171), + [anon_sym_GT2] = ACTIONS(4173), + [anon_sym_requires] = ACTIONS(4171), + }, + [STATE(2566)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5158), + [anon_sym_COMMA] = ACTIONS(5158), + [anon_sym_RPAREN] = ACTIONS(5158), + [anon_sym_LPAREN2] = ACTIONS(5158), + [anon_sym_DASH] = ACTIONS(5156), + [anon_sym_PLUS] = ACTIONS(5156), + [anon_sym_STAR] = ACTIONS(5158), + [anon_sym_SLASH] = ACTIONS(5156), + [anon_sym_PERCENT] = ACTIONS(5158), + [anon_sym_PIPE_PIPE] = ACTIONS(5158), + [anon_sym_AMP_AMP] = ACTIONS(5158), + [anon_sym_PIPE] = ACTIONS(5156), + [anon_sym_CARET] = ACTIONS(5158), + [anon_sym_AMP] = ACTIONS(5156), + [anon_sym_EQ_EQ] = ACTIONS(5158), + [anon_sym_BANG_EQ] = ACTIONS(5158), + [anon_sym_GT] = ACTIONS(5156), + [anon_sym_GT_EQ] = ACTIONS(5158), + [anon_sym_LT_EQ] = ACTIONS(5156), + [anon_sym_LT] = ACTIONS(5156), + [anon_sym_LT_LT] = ACTIONS(5158), + [anon_sym_GT_GT] = ACTIONS(5158), + [anon_sym_SEMI] = ACTIONS(5158), + [anon_sym___extension__] = ACTIONS(5158), + [anon_sym___attribute__] = ACTIONS(5158), + [anon_sym___attribute] = ACTIONS(5156), + [anon_sym_LBRACE] = ACTIONS(5158), + [anon_sym_RBRACE] = ACTIONS(5158), + [anon_sym_signed] = ACTIONS(6637), + [anon_sym_unsigned] = ACTIONS(6637), + [anon_sym_long] = ACTIONS(6637), + [anon_sym_short] = ACTIONS(6637), + [anon_sym_LBRACK] = ACTIONS(5158), + [anon_sym_RBRACK] = ACTIONS(5158), + [anon_sym_const] = ACTIONS(5156), + [anon_sym_constexpr] = ACTIONS(5158), + [anon_sym_volatile] = ACTIONS(5158), + [anon_sym_restrict] = ACTIONS(5158), + [anon_sym___restrict__] = ACTIONS(5158), + [anon_sym__Atomic] = ACTIONS(5158), + [anon_sym__Noreturn] = ACTIONS(5158), + [anon_sym_noreturn] = ACTIONS(5158), + [anon_sym__Nonnull] = ACTIONS(5158), + [anon_sym_mutable] = ACTIONS(5158), + [anon_sym_constinit] = ACTIONS(5158), + [anon_sym_consteval] = ACTIONS(5158), + [anon_sym_alignas] = ACTIONS(5158), + [anon_sym__Alignas] = ACTIONS(5158), + [anon_sym_COLON] = ACTIONS(5158), + [anon_sym_QMARK] = ACTIONS(5158), + [anon_sym_LT_EQ_GT] = ACTIONS(5158), + [anon_sym_or] = ACTIONS(5158), + [anon_sym_and] = ACTIONS(5158), + [anon_sym_bitor] = ACTIONS(5158), + [anon_sym_xor] = ACTIONS(5158), + [anon_sym_bitand] = ACTIONS(5158), + [anon_sym_not_eq] = ACTIONS(5158), + [anon_sym_DASH_DASH] = ACTIONS(5158), + [anon_sym_PLUS_PLUS] = ACTIONS(5158), + [anon_sym_DOT] = ACTIONS(5156), + [anon_sym_DOT_STAR] = ACTIONS(5158), + [anon_sym_DASH_GT] = ACTIONS(5158), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5158), + [anon_sym_decltype] = ACTIONS(5158), + [anon_sym_final] = ACTIONS(5158), + [anon_sym_override] = ACTIONS(5158), + [anon_sym_requires] = ACTIONS(5158), + }, + [STATE(2567)] = { + [sym_string_literal] = STATE(2575), + [sym_raw_string_literal] = STATE(2575), + [aux_sym_concatenated_string_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(6659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6520), + [anon_sym_COMMA] = ACTIONS(6520), + [anon_sym_LPAREN2] = ACTIONS(6520), + [anon_sym_DASH] = ACTIONS(6522), + [anon_sym_PLUS] = ACTIONS(6522), + [anon_sym_STAR] = ACTIONS(6522), + [anon_sym_SLASH] = ACTIONS(6522), + [anon_sym_PERCENT] = ACTIONS(6522), + [anon_sym_PIPE_PIPE] = ACTIONS(6520), + [anon_sym_AMP_AMP] = ACTIONS(6520), + [anon_sym_PIPE] = ACTIONS(6522), + [anon_sym_CARET] = ACTIONS(6522), + [anon_sym_AMP] = ACTIONS(6522), + [anon_sym_EQ_EQ] = ACTIONS(6520), + [anon_sym_BANG_EQ] = ACTIONS(6520), + [anon_sym_GT] = ACTIONS(6522), + [anon_sym_GT_EQ] = ACTIONS(6520), + [anon_sym_LT_EQ] = ACTIONS(6522), + [anon_sym_LT] = ACTIONS(6522), + [anon_sym_LT_LT] = ACTIONS(6522), + [anon_sym_GT_GT] = ACTIONS(6522), + [anon_sym_SEMI] = ACTIONS(6520), + [anon_sym___attribute__] = ACTIONS(6522), + [anon_sym___attribute] = ACTIONS(6522), + [anon_sym_LBRACK] = ACTIONS(6520), + [anon_sym_EQ] = ACTIONS(6522), + [anon_sym_QMARK] = ACTIONS(6520), + [anon_sym_STAR_EQ] = ACTIONS(6520), + [anon_sym_SLASH_EQ] = ACTIONS(6520), + [anon_sym_PERCENT_EQ] = ACTIONS(6520), + [anon_sym_PLUS_EQ] = ACTIONS(6520), + [anon_sym_DASH_EQ] = ACTIONS(6520), + [anon_sym_LT_LT_EQ] = ACTIONS(6520), + [anon_sym_GT_GT_EQ] = ACTIONS(6520), + [anon_sym_AMP_EQ] = ACTIONS(6520), + [anon_sym_CARET_EQ] = ACTIONS(6520), + [anon_sym_PIPE_EQ] = ACTIONS(6520), + [anon_sym_and_eq] = ACTIONS(6522), + [anon_sym_or_eq] = ACTIONS(6522), + [anon_sym_xor_eq] = ACTIONS(6522), + [anon_sym_LT_EQ_GT] = ACTIONS(6520), + [anon_sym_or] = ACTIONS(6522), + [anon_sym_and] = ACTIONS(6522), + [anon_sym_bitor] = ACTIONS(6522), + [anon_sym_xor] = ACTIONS(6522), + [anon_sym_bitand] = ACTIONS(6522), + [anon_sym_not_eq] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6520), + [anon_sym_PLUS_PLUS] = ACTIONS(6520), + [anon_sym_DOT] = ACTIONS(6522), + [anon_sym_DOT_STAR] = ACTIONS(6520), + [anon_sym_DASH_GT] = ACTIONS(6520), + [anon_sym_L_DQUOTE] = ACTIONS(6661), + [anon_sym_u_DQUOTE] = ACTIONS(6661), + [anon_sym_U_DQUOTE] = ACTIONS(6661), + [anon_sym_u8_DQUOTE] = ACTIONS(6661), + [anon_sym_DQUOTE] = ACTIONS(6661), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6663), + [anon_sym_LR_DQUOTE] = ACTIONS(6663), + [anon_sym_uR_DQUOTE] = ACTIONS(6663), + [anon_sym_UR_DQUOTE] = ACTIONS(6663), + [anon_sym_u8R_DQUOTE] = ACTIONS(6663), + [sym_literal_suffix] = ACTIONS(6522), + }, + [STATE(2568)] = { + [sym_ms_based_modifier] = STATE(8558), + [sym_ms_unaligned_ptr_modifier] = STATE(4347), + [sym_ms_pointer_modifier] = STATE(2573), + [sym__declarator] = STATE(6655), + [sym__abstract_declarator] = STATE(6983), + [sym_parenthesized_declarator] = STATE(6300), + [sym_abstract_parenthesized_declarator] = STATE(6365), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_abstract_pointer_declarator] = STATE(6365), + [sym_function_declarator] = STATE(6300), + [sym_abstract_function_declarator] = STATE(6365), + [sym_array_declarator] = STATE(6300), + [sym_abstract_array_declarator] = STATE(6365), + [sym_type_qualifier] = STATE(3098), + [sym_alignas_qualifier] = STATE(4606), + [sym_parameter_list] = STATE(3560), + [sym_decltype] = STATE(8447), + [sym_reference_declarator] = STATE(6300), + [sym_abstract_reference_declarator] = STATE(6365), + [sym_structured_binding_declarator] = STATE(6300), + [sym__function_declarator_seq] = STATE(6368), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6082), + [sym_qualified_identifier] = STATE(6300), + [sym_operator_name] = STATE(6300), + [aux_sym__type_definition_type_repeat1] = STATE(3098), + [aux_sym_pointer_declarator_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(6610), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(6665), + [anon_sym_AMP_AMP] = ACTIONS(6667), + [anon_sym_AMP] = ACTIONS(6669), + [anon_sym___extension__] = ACTIONS(4029), + [anon_sym___attribute__] = ACTIONS(6620), + [anon_sym___attribute] = ACTIONS(6620), + [anon_sym_COLON_COLON] = ACTIONS(6622), + [anon_sym___based] = ACTIONS(51), + [sym_ms_restrict_modifier] = ACTIONS(4025), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(4025), + [sym_ms_signed_ptr_modifier] = ACTIONS(4025), + [anon_sym__unaligned] = ACTIONS(4027), + [anon_sym___unaligned] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(6624), + [anon_sym_const] = ACTIONS(4029), + [anon_sym_constexpr] = ACTIONS(4029), + [anon_sym_volatile] = ACTIONS(4029), + [anon_sym_restrict] = ACTIONS(4029), + [anon_sym___restrict__] = ACTIONS(4029), + [anon_sym__Atomic] = ACTIONS(4029), + [anon_sym__Noreturn] = ACTIONS(4029), + [anon_sym_noreturn] = ACTIONS(4029), + [anon_sym__Nonnull] = ACTIONS(4029), + [anon_sym_mutable] = ACTIONS(4029), + [anon_sym_constinit] = ACTIONS(4029), + [anon_sym_consteval] = ACTIONS(4029), + [anon_sym_alignas] = ACTIONS(4031), + [anon_sym__Alignas] = ACTIONS(4031), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(6612), + [anon_sym_operator] = ACTIONS(3197), + }, + [STATE(2569)] = { + [sym_attribute_specifier] = STATE(2487), + [sym_field_declaration_list] = STATE(2743), + [sym_virtual_specifier] = STATE(7298), + [sym_base_class_clause] = STATE(8356), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4988), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_RPAREN] = ACTIONS(4988), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4986), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_PERCENT] = ACTIONS(4988), + [anon_sym_PIPE_PIPE] = ACTIONS(4988), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4986), + [anon_sym_CARET] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_EQ_EQ] = ACTIONS(4988), + [anon_sym_BANG_EQ] = ACTIONS(4988), + [anon_sym_GT] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4988), + [anon_sym_LT_EQ] = ACTIONS(4986), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_LT_LT] = ACTIONS(4988), + [anon_sym_GT_GT] = ACTIONS(4988), + [anon_sym_SEMI] = ACTIONS(4988), + [anon_sym___extension__] = ACTIONS(4988), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6673), + [anon_sym_LBRACE] = ACTIONS(6257), + [anon_sym_RBRACE] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4988), + [anon_sym_RBRACK] = ACTIONS(4988), + [anon_sym_const] = ACTIONS(4986), + [anon_sym_constexpr] = ACTIONS(4988), + [anon_sym_volatile] = ACTIONS(4988), + [anon_sym_restrict] = ACTIONS(4988), + [anon_sym___restrict__] = ACTIONS(4988), + [anon_sym__Atomic] = ACTIONS(4988), + [anon_sym__Noreturn] = ACTIONS(4988), + [anon_sym_noreturn] = ACTIONS(4988), + [anon_sym__Nonnull] = ACTIONS(4988), + [anon_sym_mutable] = ACTIONS(4988), + [anon_sym_constinit] = ACTIONS(4988), + [anon_sym_consteval] = ACTIONS(4988), + [anon_sym_alignas] = ACTIONS(4988), + [anon_sym__Alignas] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(4988), + [anon_sym_LT_EQ_GT] = ACTIONS(4988), + [anon_sym_or] = ACTIONS(4988), + [anon_sym_and] = ACTIONS(4988), + [anon_sym_bitor] = ACTIONS(4988), + [anon_sym_xor] = ACTIONS(4988), + [anon_sym_bitand] = ACTIONS(4988), + [anon_sym_not_eq] = ACTIONS(4988), + [anon_sym_DASH_DASH] = ACTIONS(4988), + [anon_sym_PLUS_PLUS] = ACTIONS(4988), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_DOT_STAR] = ACTIONS(4988), + [anon_sym_DASH_GT] = ACTIONS(4988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4988), + [anon_sym_decltype] = ACTIONS(4988), + [anon_sym_final] = ACTIONS(5572), + [anon_sym_override] = ACTIONS(5572), + [anon_sym_requires] = ACTIONS(4988), + }, + [STATE(2570)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(4020), + [sym_raw_string_literal] = STATE(3007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(6675), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_LBRACK] = ACTIONS(6677), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3125), + [anon_sym_or_eq] = ACTIONS(3125), + [anon_sym_xor_eq] = ACTIONS(3125), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [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), + }, + [STATE(2571)] = { + [sym_string_literal] = STATE(3492), + [sym_template_argument_list] = STATE(4020), + [sym_raw_string_literal] = STATE(3492), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___attribute__] = ACTIONS(3089), + [anon_sym___attribute] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(6679), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(6681), + [anon_sym_SLASH_EQ] = ACTIONS(6681), + [anon_sym_PERCENT_EQ] = ACTIONS(6681), + [anon_sym_PLUS_EQ] = ACTIONS(6681), + [anon_sym_DASH_EQ] = ACTIONS(6681), + [anon_sym_LT_LT_EQ] = ACTIONS(6681), + [anon_sym_GT_GT_EQ] = ACTIONS(6681), + [anon_sym_AMP_EQ] = ACTIONS(6681), + [anon_sym_CARET_EQ] = ACTIONS(6681), + [anon_sym_PIPE_EQ] = ACTIONS(6681), + [anon_sym_and_eq] = ACTIONS(6681), + [anon_sym_or_eq] = ACTIONS(6681), + [anon_sym_xor_eq] = ACTIONS(6681), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(6683), + [anon_sym_u_DQUOTE] = ACTIONS(6683), + [anon_sym_U_DQUOTE] = ACTIONS(6683), + [anon_sym_u8_DQUOTE] = ACTIONS(6683), + [anon_sym_DQUOTE] = ACTIONS(6683), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6685), + [anon_sym_LR_DQUOTE] = ACTIONS(6685), + [anon_sym_uR_DQUOTE] = ACTIONS(6685), + [anon_sym_UR_DQUOTE] = ACTIONS(6685), + [anon_sym_u8R_DQUOTE] = ACTIONS(6685), + }, + [STATE(2572)] = { + [sym_string_literal] = STATE(2436), + [sym_template_argument_list] = STATE(3118), + [sym_raw_string_literal] = STATE(2436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(6687), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6690), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5720), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_LBRACK] = ACTIONS(6693), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3089), + [anon_sym_SLASH_EQ] = ACTIONS(3089), + [anon_sym_PERCENT_EQ] = ACTIONS(3089), + [anon_sym_PLUS_EQ] = ACTIONS(3089), + [anon_sym_DASH_EQ] = ACTIONS(3089), + [anon_sym_LT_LT_EQ] = ACTIONS(3089), + [anon_sym_GT_GT_EQ] = ACTIONS(3089), + [anon_sym_AMP_EQ] = ACTIONS(3089), + [anon_sym_CARET_EQ] = ACTIONS(3089), + [anon_sym_PIPE_EQ] = ACTIONS(3089), + [anon_sym_and_eq] = ACTIONS(3089), + [anon_sym_or_eq] = ACTIONS(3089), + [anon_sym_xor_eq] = ACTIONS(3089), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + }, + [STATE(2573)] = { + [sym_ms_based_modifier] = STATE(8558), + [sym_ms_unaligned_ptr_modifier] = STATE(4347), + [sym_ms_pointer_modifier] = STATE(4194), + [sym__declarator] = STATE(6666), + [sym__abstract_declarator] = STATE(6996), + [sym_parenthesized_declarator] = STATE(6300), + [sym_abstract_parenthesized_declarator] = STATE(6365), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_abstract_pointer_declarator] = STATE(6365), + [sym_function_declarator] = STATE(6300), + [sym_abstract_function_declarator] = STATE(6365), + [sym_array_declarator] = STATE(6300), + [sym_abstract_array_declarator] = STATE(6365), + [sym_type_qualifier] = STATE(3053), + [sym_alignas_qualifier] = STATE(4606), + [sym_parameter_list] = STATE(3560), + [sym_decltype] = STATE(8447), + [sym_reference_declarator] = STATE(6300), + [sym_abstract_reference_declarator] = STATE(6365), + [sym_structured_binding_declarator] = STATE(6300), + [sym__function_declarator_seq] = STATE(6368), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6082), + [sym_qualified_identifier] = STATE(6300), + [sym_operator_name] = STATE(6300), + [aux_sym__type_definition_type_repeat1] = STATE(3053), + [aux_sym_pointer_declarator_repeat1] = STATE(4194), + [sym_identifier] = ACTIONS(6610), + [anon_sym_COMMA] = ACTIONS(6629), + [anon_sym_LPAREN2] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(6665), + [anon_sym_AMP_AMP] = ACTIONS(6667), + [anon_sym_AMP] = ACTIONS(6669), + [anon_sym___extension__] = ACTIONS(4029), + [anon_sym___attribute__] = ACTIONS(6631), + [anon_sym___attribute] = ACTIONS(6631), + [anon_sym_COLON_COLON] = ACTIONS(6622), + [anon_sym___based] = ACTIONS(51), + [sym_ms_restrict_modifier] = ACTIONS(4025), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(4025), + [sym_ms_signed_ptr_modifier] = ACTIONS(4025), + [anon_sym__unaligned] = ACTIONS(4027), + [anon_sym___unaligned] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(6624), + [anon_sym_const] = ACTIONS(4029), + [anon_sym_constexpr] = ACTIONS(4029), + [anon_sym_volatile] = ACTIONS(4029), + [anon_sym_restrict] = ACTIONS(4029), + [anon_sym___restrict__] = ACTIONS(4029), + [anon_sym__Atomic] = ACTIONS(4029), + [anon_sym__Noreturn] = ACTIONS(4029), + [anon_sym_noreturn] = ACTIONS(4029), + [anon_sym__Nonnull] = ACTIONS(4029), + [anon_sym_mutable] = ACTIONS(4029), + [anon_sym_constinit] = ACTIONS(4029), + [anon_sym_consteval] = ACTIONS(4029), + [anon_sym_alignas] = ACTIONS(4031), + [anon_sym__Alignas] = ACTIONS(4031), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_GT2] = ACTIONS(6629), + [anon_sym_operator] = ACTIONS(3197), + }, + [STATE(2574)] = { + [sym_string_literal] = STATE(2436), + [sym_template_argument_list] = STATE(2749), + [sym_raw_string_literal] = STATE(2436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(6675), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6485), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_LBRACK] = ACTIONS(6677), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3089), + [anon_sym_SLASH_EQ] = ACTIONS(3089), + [anon_sym_PERCENT_EQ] = ACTIONS(3089), + [anon_sym_PLUS_EQ] = ACTIONS(3089), + [anon_sym_DASH_EQ] = ACTIONS(3089), + [anon_sym_LT_LT_EQ] = ACTIONS(3089), + [anon_sym_GT_GT_EQ] = ACTIONS(3089), + [anon_sym_AMP_EQ] = ACTIONS(3089), + [anon_sym_CARET_EQ] = ACTIONS(3089), + [anon_sym_PIPE_EQ] = ACTIONS(3089), + [anon_sym_and_eq] = ACTIONS(3089), + [anon_sym_or_eq] = ACTIONS(3089), + [anon_sym_xor_eq] = ACTIONS(3089), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + }, + [STATE(2575)] = { + [sym_string_literal] = STATE(2575), + [sym_raw_string_literal] = STATE(2575), + [aux_sym_concatenated_string_repeat1] = STATE(2575), + [sym_identifier] = ACTIONS(6696), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6508), + [anon_sym_COMMA] = ACTIONS(6508), + [anon_sym_LPAREN2] = ACTIONS(6508), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_STAR] = ACTIONS(6510), + [anon_sym_SLASH] = ACTIONS(6510), + [anon_sym_PERCENT] = ACTIONS(6510), + [anon_sym_PIPE_PIPE] = ACTIONS(6508), + [anon_sym_AMP_AMP] = ACTIONS(6508), + [anon_sym_PIPE] = ACTIONS(6510), + [anon_sym_CARET] = ACTIONS(6510), + [anon_sym_AMP] = ACTIONS(6510), + [anon_sym_EQ_EQ] = ACTIONS(6508), + [anon_sym_BANG_EQ] = ACTIONS(6508), + [anon_sym_GT] = ACTIONS(6510), + [anon_sym_GT_EQ] = ACTIONS(6508), + [anon_sym_LT_EQ] = ACTIONS(6510), + [anon_sym_LT] = ACTIONS(6510), + [anon_sym_LT_LT] = ACTIONS(6510), + [anon_sym_GT_GT] = ACTIONS(6510), + [anon_sym_SEMI] = ACTIONS(6508), + [anon_sym___attribute__] = ACTIONS(6510), + [anon_sym___attribute] = ACTIONS(6510), + [anon_sym_LBRACK] = ACTIONS(6508), + [anon_sym_EQ] = ACTIONS(6510), + [anon_sym_QMARK] = ACTIONS(6508), + [anon_sym_STAR_EQ] = ACTIONS(6508), + [anon_sym_SLASH_EQ] = ACTIONS(6508), + [anon_sym_PERCENT_EQ] = ACTIONS(6508), + [anon_sym_PLUS_EQ] = ACTIONS(6508), + [anon_sym_DASH_EQ] = ACTIONS(6508), + [anon_sym_LT_LT_EQ] = ACTIONS(6508), + [anon_sym_GT_GT_EQ] = ACTIONS(6508), + [anon_sym_AMP_EQ] = ACTIONS(6508), + [anon_sym_CARET_EQ] = ACTIONS(6508), + [anon_sym_PIPE_EQ] = ACTIONS(6508), + [anon_sym_and_eq] = ACTIONS(6510), + [anon_sym_or_eq] = ACTIONS(6510), + [anon_sym_xor_eq] = ACTIONS(6510), + [anon_sym_LT_EQ_GT] = ACTIONS(6508), + [anon_sym_or] = ACTIONS(6510), + [anon_sym_and] = ACTIONS(6510), + [anon_sym_bitor] = ACTIONS(6510), + [anon_sym_xor] = ACTIONS(6510), + [anon_sym_bitand] = ACTIONS(6510), + [anon_sym_not_eq] = ACTIONS(6510), + [anon_sym_DASH_DASH] = ACTIONS(6508), + [anon_sym_PLUS_PLUS] = ACTIONS(6508), + [anon_sym_DOT] = ACTIONS(6510), + [anon_sym_DOT_STAR] = ACTIONS(6508), + [anon_sym_DASH_GT] = ACTIONS(6508), + [anon_sym_L_DQUOTE] = ACTIONS(6699), + [anon_sym_u_DQUOTE] = ACTIONS(6699), + [anon_sym_U_DQUOTE] = ACTIONS(6699), + [anon_sym_u8_DQUOTE] = ACTIONS(6699), + [anon_sym_DQUOTE] = ACTIONS(6699), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6702), + [anon_sym_LR_DQUOTE] = ACTIONS(6702), + [anon_sym_uR_DQUOTE] = ACTIONS(6702), + [anon_sym_UR_DQUOTE] = ACTIONS(6702), + [anon_sym_u8R_DQUOTE] = ACTIONS(6702), + [sym_literal_suffix] = ACTIONS(6510), + }, + [STATE(2576)] = { + [sym_ms_based_modifier] = STATE(8558), + [sym_ms_unaligned_ptr_modifier] = STATE(4347), + [sym_ms_pointer_modifier] = STATE(2578), + [sym__declarator] = STATE(6655), + [sym__abstract_declarator] = STATE(7005), + [sym_parenthesized_declarator] = STATE(6300), + [sym_abstract_parenthesized_declarator] = STATE(6365), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_abstract_pointer_declarator] = STATE(6365), + [sym_function_declarator] = STATE(6300), + [sym_abstract_function_declarator] = STATE(6365), + [sym_array_declarator] = STATE(6300), + [sym_abstract_array_declarator] = STATE(6365), + [sym_type_qualifier] = STATE(3095), + [sym_alignas_qualifier] = STATE(4606), + [sym_parameter_list] = STATE(3525), + [sym_decltype] = STATE(8447), + [sym_reference_declarator] = STATE(6300), + [sym_abstract_reference_declarator] = STATE(6365), + [sym_structured_binding_declarator] = STATE(6300), + [sym__function_declarator_seq] = STATE(6368), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6082), + [sym_qualified_identifier] = STATE(6300), + [sym_operator_name] = STATE(6300), + [aux_sym__type_definition_type_repeat1] = STATE(3095), + [aux_sym_pointer_declarator_repeat1] = STATE(2578), + [sym_identifier] = ACTIONS(6610), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_RPAREN] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(6705), + [anon_sym_AMP_AMP] = ACTIONS(6707), + [anon_sym_AMP] = ACTIONS(6709), + [anon_sym___extension__] = ACTIONS(4029), + [anon_sym___attribute__] = ACTIONS(6620), + [anon_sym___attribute] = ACTIONS(6620), + [anon_sym_COLON_COLON] = ACTIONS(6622), + [anon_sym___based] = ACTIONS(51), + [sym_ms_restrict_modifier] = ACTIONS(4025), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(4025), + [sym_ms_signed_ptr_modifier] = ACTIONS(4025), + [anon_sym__unaligned] = ACTIONS(4027), + [anon_sym___unaligned] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(6624), + [anon_sym_const] = ACTIONS(4029), + [anon_sym_constexpr] = ACTIONS(4029), + [anon_sym_volatile] = ACTIONS(4029), + [anon_sym_restrict] = ACTIONS(4029), + [anon_sym___restrict__] = ACTIONS(4029), + [anon_sym__Atomic] = ACTIONS(4029), + [anon_sym__Noreturn] = ACTIONS(4029), + [anon_sym_noreturn] = ACTIONS(4029), + [anon_sym__Nonnull] = ACTIONS(4029), + [anon_sym_mutable] = ACTIONS(4029), + [anon_sym_constinit] = ACTIONS(4029), + [anon_sym_consteval] = ACTIONS(4029), + [anon_sym_alignas] = ACTIONS(4031), + [anon_sym__Alignas] = ACTIONS(4031), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(3197), + }, + [STATE(2577)] = { + [sym_attribute_specifier] = STATE(2735), + [sym_enumerator_list] = STATE(2631), + [sym_identifier] = ACTIONS(5246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5248), + [anon_sym_COMMA] = ACTIONS(5248), + [anon_sym_RPAREN] = ACTIONS(5248), + [aux_sym_preproc_if_token2] = ACTIONS(5248), + [aux_sym_preproc_else_token1] = ACTIONS(5248), + [aux_sym_preproc_elif_token1] = ACTIONS(5246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5248), + [anon_sym_LPAREN2] = ACTIONS(5248), + [anon_sym_DASH] = ACTIONS(5246), + [anon_sym_PLUS] = ACTIONS(5246), + [anon_sym_STAR] = ACTIONS(5246), + [anon_sym_SLASH] = ACTIONS(5246), + [anon_sym_PERCENT] = ACTIONS(5246), + [anon_sym_PIPE_PIPE] = ACTIONS(5248), + [anon_sym_AMP_AMP] = ACTIONS(5248), + [anon_sym_PIPE] = ACTIONS(5246), + [anon_sym_CARET] = ACTIONS(5246), + [anon_sym_AMP] = ACTIONS(5246), + [anon_sym_EQ_EQ] = ACTIONS(5248), + [anon_sym_BANG_EQ] = ACTIONS(5248), + [anon_sym_GT] = ACTIONS(5246), + [anon_sym_GT_EQ] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5246), + [anon_sym_LT] = ACTIONS(5246), + [anon_sym_LT_LT] = ACTIONS(5246), + [anon_sym_GT_GT] = ACTIONS(5246), + [anon_sym_SEMI] = ACTIONS(5248), + [anon_sym___attribute__] = ACTIONS(6532), + [anon_sym___attribute] = ACTIONS(6532), + [anon_sym_LBRACE] = ACTIONS(6711), + [anon_sym_RBRACE] = ACTIONS(5248), + [anon_sym_LBRACK] = ACTIONS(5248), + [anon_sym_RBRACK] = ACTIONS(5248), + [anon_sym_EQ] = ACTIONS(5246), + [anon_sym_COLON] = ACTIONS(5248), + [anon_sym_QMARK] = ACTIONS(5248), + [anon_sym_STAR_EQ] = ACTIONS(5248), + [anon_sym_SLASH_EQ] = ACTIONS(5248), + [anon_sym_PERCENT_EQ] = ACTIONS(5248), + [anon_sym_PLUS_EQ] = ACTIONS(5248), + [anon_sym_DASH_EQ] = ACTIONS(5248), + [anon_sym_LT_LT_EQ] = ACTIONS(5248), + [anon_sym_GT_GT_EQ] = ACTIONS(5248), + [anon_sym_AMP_EQ] = ACTIONS(5248), + [anon_sym_CARET_EQ] = ACTIONS(5248), + [anon_sym_PIPE_EQ] = ACTIONS(5248), + [anon_sym_and_eq] = ACTIONS(5246), + [anon_sym_or_eq] = ACTIONS(5246), + [anon_sym_xor_eq] = ACTIONS(5246), + [anon_sym_LT_EQ_GT] = ACTIONS(5248), + [anon_sym_or] = ACTIONS(5246), + [anon_sym_and] = ACTIONS(5246), + [anon_sym_bitor] = ACTIONS(5246), + [anon_sym_xor] = ACTIONS(5246), + [anon_sym_bitand] = ACTIONS(5246), + [anon_sym_not_eq] = ACTIONS(5246), + [anon_sym_DASH_DASH] = ACTIONS(5248), + [anon_sym_PLUS_PLUS] = ACTIONS(5248), + [anon_sym_DOT] = ACTIONS(5246), + [anon_sym_DOT_STAR] = ACTIONS(5248), + [anon_sym_DASH_GT] = ACTIONS(5248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5246), + [anon_sym_decltype] = ACTIONS(5246), + }, + [STATE(2578)] = { + [sym_ms_based_modifier] = STATE(8558), + [sym_ms_unaligned_ptr_modifier] = STATE(4347), + [sym_ms_pointer_modifier] = STATE(4194), + [sym__declarator] = STATE(6666), + [sym__abstract_declarator] = STATE(6949), + [sym_parenthesized_declarator] = STATE(6300), + [sym_abstract_parenthesized_declarator] = STATE(6365), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_abstract_pointer_declarator] = STATE(6365), + [sym_function_declarator] = STATE(6300), + [sym_abstract_function_declarator] = STATE(6365), + [sym_array_declarator] = STATE(6300), + [sym_abstract_array_declarator] = STATE(6365), + [sym_type_qualifier] = STATE(3096), + [sym_alignas_qualifier] = STATE(4606), + [sym_parameter_list] = STATE(3525), + [sym_decltype] = STATE(8447), + [sym_reference_declarator] = STATE(6300), + [sym_abstract_reference_declarator] = STATE(6365), + [sym_structured_binding_declarator] = STATE(6300), + [sym__function_declarator_seq] = STATE(6368), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6082), + [sym_qualified_identifier] = STATE(6300), + [sym_operator_name] = STATE(6300), + [aux_sym__type_definition_type_repeat1] = STATE(3096), + [aux_sym_pointer_declarator_repeat1] = STATE(4194), + [sym_identifier] = ACTIONS(6610), + [anon_sym_COMMA] = ACTIONS(6629), + [anon_sym_RPAREN] = ACTIONS(6629), + [anon_sym_LPAREN2] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(6705), + [anon_sym_AMP_AMP] = ACTIONS(6707), + [anon_sym_AMP] = ACTIONS(6709), + [anon_sym___extension__] = ACTIONS(4029), + [anon_sym___attribute__] = ACTIONS(6631), + [anon_sym___attribute] = ACTIONS(6631), + [anon_sym_COLON_COLON] = ACTIONS(6622), + [anon_sym___based] = ACTIONS(51), + [sym_ms_restrict_modifier] = ACTIONS(4025), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(4025), + [sym_ms_signed_ptr_modifier] = ACTIONS(4025), + [anon_sym__unaligned] = ACTIONS(4027), + [anon_sym___unaligned] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(6624), + [anon_sym_const] = ACTIONS(4029), + [anon_sym_constexpr] = ACTIONS(4029), + [anon_sym_volatile] = ACTIONS(4029), + [anon_sym_restrict] = ACTIONS(4029), + [anon_sym___restrict__] = ACTIONS(4029), + [anon_sym__Atomic] = ACTIONS(4029), + [anon_sym__Noreturn] = ACTIONS(4029), + [anon_sym_noreturn] = ACTIONS(4029), + [anon_sym__Nonnull] = ACTIONS(4029), + [anon_sym_mutable] = ACTIONS(4029), + [anon_sym_constinit] = ACTIONS(4029), + [anon_sym_consteval] = ACTIONS(4029), + [anon_sym_alignas] = ACTIONS(4031), + [anon_sym__Alignas] = ACTIONS(4031), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(3197), + }, + [STATE(2579)] = { + [sym_template_argument_list] = STATE(917), + [aux_sym_sized_type_specifier_repeat1] = STATE(2732), + [sym_identifier] = ACTIONS(5070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [aux_sym_preproc_if_token2] = ACTIONS(5072), + [aux_sym_preproc_else_token1] = ACTIONS(5072), + [aux_sym_preproc_elif_token1] = ACTIONS(5070), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5072), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5072), + [anon_sym_LPAREN2] = ACTIONS(5072), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_STAR] = ACTIONS(5070), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_PERCENT] = ACTIONS(5070), + [anon_sym_PIPE_PIPE] = ACTIONS(5072), + [anon_sym_AMP_AMP] = ACTIONS(5072), + [anon_sym_PIPE] = ACTIONS(5070), + [anon_sym_CARET] = ACTIONS(5070), + [anon_sym_AMP] = ACTIONS(5070), + [anon_sym_EQ_EQ] = ACTIONS(5072), + [anon_sym_BANG_EQ] = ACTIONS(5072), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_GT_EQ] = ACTIONS(5072), + [anon_sym_LT_EQ] = ACTIONS(5070), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_LT_LT] = ACTIONS(5070), + [anon_sym_GT_GT] = ACTIONS(5070), + [anon_sym___attribute__] = ACTIONS(5070), + [anon_sym___attribute] = ACTIONS(5070), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(5072), + [anon_sym_signed] = ACTIONS(6713), + [anon_sym_unsigned] = ACTIONS(6713), + [anon_sym_long] = ACTIONS(6713), + [anon_sym_short] = ACTIONS(6713), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_EQ] = ACTIONS(5070), + [anon_sym_QMARK] = ACTIONS(5072), + [anon_sym_STAR_EQ] = ACTIONS(5072), + [anon_sym_SLASH_EQ] = ACTIONS(5072), + [anon_sym_PERCENT_EQ] = ACTIONS(5072), + [anon_sym_PLUS_EQ] = ACTIONS(5072), + [anon_sym_DASH_EQ] = ACTIONS(5072), + [anon_sym_LT_LT_EQ] = ACTIONS(5072), + [anon_sym_GT_GT_EQ] = ACTIONS(5072), + [anon_sym_AMP_EQ] = ACTIONS(5072), + [anon_sym_CARET_EQ] = ACTIONS(5072), + [anon_sym_PIPE_EQ] = ACTIONS(5072), + [anon_sym_and_eq] = ACTIONS(5070), + [anon_sym_or_eq] = ACTIONS(5070), + [anon_sym_xor_eq] = ACTIONS(5070), + [anon_sym_LT_EQ_GT] = ACTIONS(5072), + [anon_sym_or] = ACTIONS(5070), + [anon_sym_and] = ACTIONS(5070), + [anon_sym_bitor] = ACTIONS(5070), + [anon_sym_xor] = ACTIONS(5070), + [anon_sym_bitand] = ACTIONS(5070), + [anon_sym_not_eq] = ACTIONS(5070), + [anon_sym_DASH_DASH] = ACTIONS(5072), + [anon_sym_PLUS_PLUS] = ACTIONS(5072), + [anon_sym_DOT] = ACTIONS(5070), + [anon_sym_DOT_STAR] = ACTIONS(5072), + [anon_sym_DASH_GT] = ACTIONS(5072), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5070), + [anon_sym_decltype] = ACTIONS(5070), + }, + [STATE(2580)] = { + [sym_string_literal] = STATE(2593), + [sym_template_argument_list] = STATE(3495), + [sym_raw_string_literal] = STATE(2593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(6675), + [anon_sym_LPAREN2] = ACTIONS(6675), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6325), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6675), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(6677), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3089), + [anon_sym_SLASH_EQ] = ACTIONS(3089), + [anon_sym_PERCENT_EQ] = ACTIONS(3089), + [anon_sym_PLUS_EQ] = ACTIONS(3089), + [anon_sym_DASH_EQ] = ACTIONS(3089), + [anon_sym_LT_LT_EQ] = ACTIONS(3089), + [anon_sym_GT_GT_EQ] = ACTIONS(3089), + [anon_sym_AMP_EQ] = ACTIONS(3089), + [anon_sym_CARET_EQ] = ACTIONS(3089), + [anon_sym_PIPE_EQ] = ACTIONS(3089), + [anon_sym_and_eq] = ACTIONS(3089), + [anon_sym_or_eq] = ACTIONS(3089), + [anon_sym_xor_eq] = ACTIONS(3089), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(6245), + [anon_sym_u_DQUOTE] = ACTIONS(6245), + [anon_sym_U_DQUOTE] = ACTIONS(6245), + [anon_sym_u8_DQUOTE] = ACTIONS(6245), + [anon_sym_DQUOTE] = ACTIONS(6245), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6247), + [anon_sym_LR_DQUOTE] = ACTIONS(6247), + [anon_sym_uR_DQUOTE] = ACTIONS(6247), + [anon_sym_UR_DQUOTE] = ACTIONS(6247), + [anon_sym_u8R_DQUOTE] = ACTIONS(6247), + [anon_sym_DASH_GT_STAR] = ACTIONS(3089), + }, + [STATE(2581)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(4020), + [sym_raw_string_literal] = STATE(3007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3125), + [anon_sym_or_eq] = ACTIONS(3125), + [anon_sym_xor_eq] = ACTIONS(3125), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [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), + }, + [STATE(2582)] = { + [sym_string_literal] = STATE(2593), + [sym_template_argument_list] = STATE(3368), + [sym_raw_string_literal] = STATE(2593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(6687), + [anon_sym_LPAREN2] = ACTIONS(6687), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6240), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5720), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(6693), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3089), + [anon_sym_SLASH_EQ] = ACTIONS(3089), + [anon_sym_PERCENT_EQ] = ACTIONS(3089), + [anon_sym_PLUS_EQ] = ACTIONS(3089), + [anon_sym_DASH_EQ] = ACTIONS(3089), + [anon_sym_LT_LT_EQ] = ACTIONS(3089), + [anon_sym_GT_GT_EQ] = ACTIONS(3089), + [anon_sym_AMP_EQ] = ACTIONS(3089), + [anon_sym_CARET_EQ] = ACTIONS(3089), + [anon_sym_PIPE_EQ] = ACTIONS(3089), + [anon_sym_and_eq] = ACTIONS(3089), + [anon_sym_or_eq] = ACTIONS(3089), + [anon_sym_xor_eq] = ACTIONS(3089), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(6245), + [anon_sym_u_DQUOTE] = ACTIONS(6245), + [anon_sym_U_DQUOTE] = ACTIONS(6245), + [anon_sym_u8_DQUOTE] = ACTIONS(6245), + [anon_sym_DQUOTE] = ACTIONS(6245), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6247), + [anon_sym_LR_DQUOTE] = ACTIONS(6247), + [anon_sym_uR_DQUOTE] = ACTIONS(6247), + [anon_sym_UR_DQUOTE] = ACTIONS(6247), + [anon_sym_u8R_DQUOTE] = ACTIONS(6247), + [anon_sym_DASH_GT_STAR] = ACTIONS(3089), + }, + [STATE(2583)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2413), + [sym_identifier] = ACTIONS(4520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5131), + [anon_sym_COMMA] = ACTIONS(5131), + [anon_sym_RPAREN] = ACTIONS(5131), + [anon_sym_LPAREN2] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5128), + [anon_sym_PERCENT] = ACTIONS(5131), + [anon_sym_PIPE_PIPE] = ACTIONS(5131), + [anon_sym_AMP_AMP] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5128), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym_AMP] = ACTIONS(5128), + [anon_sym_EQ_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5128), + [anon_sym_GT_EQ] = ACTIONS(5131), + [anon_sym_LT_EQ] = ACTIONS(5128), + [anon_sym_LT] = ACTIONS(5128), + [anon_sym_LT_LT] = ACTIONS(5131), + [anon_sym_GT_GT] = ACTIONS(5131), + [anon_sym_SEMI] = ACTIONS(5131), + [anon_sym___extension__] = ACTIONS(4520), + [anon_sym___attribute__] = ACTIONS(5128), + [anon_sym___attribute] = ACTIONS(5128), + [anon_sym_LBRACE] = ACTIONS(5131), + [anon_sym_RBRACE] = ACTIONS(5131), + [anon_sym_signed] = ACTIONS(6488), + [anon_sym_unsigned] = ACTIONS(6488), + [anon_sym_long] = ACTIONS(6488), + [anon_sym_short] = ACTIONS(6488), + [anon_sym_LBRACK] = ACTIONS(5131), + [anon_sym_RBRACK] = ACTIONS(5131), + [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__Nonnull] = ACTIONS(4520), + [anon_sym_mutable] = ACTIONS(4520), + [anon_sym_constinit] = ACTIONS(4520), + [anon_sym_consteval] = ACTIONS(4520), + [anon_sym_alignas] = ACTIONS(4520), + [anon_sym__Alignas] = ACTIONS(4520), + [sym_primitive_type] = ACTIONS(4520), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_QMARK] = ACTIONS(5131), + [anon_sym_LT_EQ_GT] = ACTIONS(5131), + [anon_sym_or] = ACTIONS(5128), + [anon_sym_and] = ACTIONS(5128), + [anon_sym_bitor] = ACTIONS(5128), + [anon_sym_xor] = ACTIONS(5128), + [anon_sym_bitand] = ACTIONS(5128), + [anon_sym_not_eq] = ACTIONS(5128), + [anon_sym_DASH_DASH] = ACTIONS(5131), + [anon_sym_PLUS_PLUS] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5128), + [anon_sym_DOT_STAR] = ACTIONS(5131), + [anon_sym_DASH_GT] = ACTIONS(5131), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5128), + [anon_sym_decltype] = ACTIONS(5128), + }, + [STATE(2584)] = { + [sym_string_literal] = STATE(2587), + [sym_template_argument_list] = STATE(2749), + [sym_raw_string_literal] = STATE(2587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6485), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___attribute__] = ACTIONS(3089), + [anon_sym___attribute] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3089), + [anon_sym_SLASH_EQ] = ACTIONS(3089), + [anon_sym_PERCENT_EQ] = ACTIONS(3089), + [anon_sym_PLUS_EQ] = ACTIONS(3089), + [anon_sym_DASH_EQ] = ACTIONS(3089), + [anon_sym_LT_LT_EQ] = ACTIONS(3089), + [anon_sym_GT_GT_EQ] = ACTIONS(3089), + [anon_sym_AMP_EQ] = ACTIONS(3089), + [anon_sym_CARET_EQ] = ACTIONS(3089), + [anon_sym_PIPE_EQ] = ACTIONS(3089), + [anon_sym_and_eq] = ACTIONS(3089), + [anon_sym_or_eq] = ACTIONS(3089), + [anon_sym_xor_eq] = ACTIONS(3089), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(6661), + [anon_sym_u_DQUOTE] = ACTIONS(6661), + [anon_sym_U_DQUOTE] = ACTIONS(6661), + [anon_sym_u8_DQUOTE] = ACTIONS(6661), + [anon_sym_DQUOTE] = ACTIONS(6661), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6663), + [anon_sym_LR_DQUOTE] = ACTIONS(6663), + [anon_sym_uR_DQUOTE] = ACTIONS(6663), + [anon_sym_UR_DQUOTE] = ACTIONS(6663), + [anon_sym_u8R_DQUOTE] = ACTIONS(6663), + }, + [STATE(2585)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2413), + [sym_identifier] = ACTIONS(5128), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5131), + [anon_sym_COMMA] = ACTIONS(5131), + [aux_sym_preproc_if_token2] = ACTIONS(5131), + [aux_sym_preproc_else_token1] = ACTIONS(5131), + [aux_sym_preproc_elif_token1] = ACTIONS(5128), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5131), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5131), + [anon_sym_LPAREN2] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_PLUS] = ACTIONS(5128), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5128), + [anon_sym_PERCENT] = ACTIONS(5131), + [anon_sym_PIPE_PIPE] = ACTIONS(5131), + [anon_sym_AMP_AMP] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5128), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym_AMP] = ACTIONS(5128), + [anon_sym_EQ_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5128), + [anon_sym_GT_EQ] = ACTIONS(5131), + [anon_sym_LT_EQ] = ACTIONS(5128), + [anon_sym_LT] = ACTIONS(5128), + [anon_sym_LT_LT] = ACTIONS(5131), + [anon_sym_GT_GT] = ACTIONS(5131), + [anon_sym___extension__] = ACTIONS(4520), + [anon_sym___attribute__] = ACTIONS(5128), + [anon_sym___attribute] = ACTIONS(5128), + [anon_sym_LBRACE] = ACTIONS(5131), + [anon_sym_signed] = ACTIONS(6488), + [anon_sym_unsigned] = ACTIONS(6488), + [anon_sym_long] = ACTIONS(6488), + [anon_sym_short] = ACTIONS(6488), + [anon_sym_LBRACK] = ACTIONS(5131), + [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__Nonnull] = ACTIONS(4520), + [anon_sym_mutable] = ACTIONS(4520), + [anon_sym_constinit] = ACTIONS(4520), + [anon_sym_consteval] = ACTIONS(4520), + [anon_sym_alignas] = ACTIONS(4520), + [anon_sym__Alignas] = ACTIONS(4520), + [sym_primitive_type] = ACTIONS(4520), + [anon_sym_QMARK] = ACTIONS(5131), + [anon_sym_LT_EQ_GT] = ACTIONS(5131), + [anon_sym_or] = ACTIONS(5128), + [anon_sym_and] = ACTIONS(5128), + [anon_sym_bitor] = ACTIONS(5128), + [anon_sym_xor] = ACTIONS(5128), + [anon_sym_bitand] = ACTIONS(5128), + [anon_sym_not_eq] = ACTIONS(5128), + [anon_sym_DASH_DASH] = ACTIONS(5131), + [anon_sym_PLUS_PLUS] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5128), + [anon_sym_DOT_STAR] = ACTIONS(5131), + [anon_sym_DASH_GT] = ACTIONS(5131), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5128), + [anon_sym_decltype] = ACTIONS(5128), + }, + [STATE(2586)] = { + [sym_attribute_specifier] = STATE(2664), + [sym_enumerator_list] = STATE(2619), + [sym_identifier] = ACTIONS(5266), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5268), + [anon_sym_COMMA] = ACTIONS(5268), + [anon_sym_RPAREN] = ACTIONS(5268), + [aux_sym_preproc_if_token2] = ACTIONS(5268), + [aux_sym_preproc_else_token1] = ACTIONS(5268), + [aux_sym_preproc_elif_token1] = ACTIONS(5266), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5268), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5268), + [anon_sym_LPAREN2] = ACTIONS(5268), + [anon_sym_DASH] = ACTIONS(5266), + [anon_sym_PLUS] = ACTIONS(5266), + [anon_sym_STAR] = ACTIONS(5266), + [anon_sym_SLASH] = ACTIONS(5266), + [anon_sym_PERCENT] = ACTIONS(5266), + [anon_sym_PIPE_PIPE] = ACTIONS(5268), + [anon_sym_AMP_AMP] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(5266), + [anon_sym_CARET] = ACTIONS(5266), + [anon_sym_AMP] = ACTIONS(5266), + [anon_sym_EQ_EQ] = ACTIONS(5268), + [anon_sym_BANG_EQ] = ACTIONS(5268), + [anon_sym_GT] = ACTIONS(5266), + [anon_sym_GT_EQ] = ACTIONS(5268), + [anon_sym_LT_EQ] = ACTIONS(5266), + [anon_sym_LT] = ACTIONS(5266), + [anon_sym_LT_LT] = ACTIONS(5266), + [anon_sym_GT_GT] = ACTIONS(5266), + [anon_sym_SEMI] = ACTIONS(5268), + [anon_sym___attribute__] = ACTIONS(6532), + [anon_sym___attribute] = ACTIONS(6532), + [anon_sym_LBRACE] = ACTIONS(6711), + [anon_sym_RBRACE] = ACTIONS(5268), + [anon_sym_LBRACK] = ACTIONS(5268), + [anon_sym_RBRACK] = ACTIONS(5268), + [anon_sym_EQ] = ACTIONS(5266), + [anon_sym_COLON] = ACTIONS(5268), + [anon_sym_QMARK] = ACTIONS(5268), + [anon_sym_STAR_EQ] = ACTIONS(5268), + [anon_sym_SLASH_EQ] = ACTIONS(5268), + [anon_sym_PERCENT_EQ] = ACTIONS(5268), + [anon_sym_PLUS_EQ] = ACTIONS(5268), + [anon_sym_DASH_EQ] = ACTIONS(5268), + [anon_sym_LT_LT_EQ] = ACTIONS(5268), + [anon_sym_GT_GT_EQ] = ACTIONS(5268), + [anon_sym_AMP_EQ] = ACTIONS(5268), + [anon_sym_CARET_EQ] = ACTIONS(5268), + [anon_sym_PIPE_EQ] = ACTIONS(5268), + [anon_sym_and_eq] = ACTIONS(5266), + [anon_sym_or_eq] = ACTIONS(5266), + [anon_sym_xor_eq] = ACTIONS(5266), + [anon_sym_LT_EQ_GT] = ACTIONS(5268), + [anon_sym_or] = ACTIONS(5266), + [anon_sym_and] = ACTIONS(5266), + [anon_sym_bitor] = ACTIONS(5266), + [anon_sym_xor] = ACTIONS(5266), + [anon_sym_bitand] = ACTIONS(5266), + [anon_sym_not_eq] = ACTIONS(5266), + [anon_sym_DASH_DASH] = ACTIONS(5268), + [anon_sym_PLUS_PLUS] = ACTIONS(5268), + [anon_sym_DOT] = ACTIONS(5266), + [anon_sym_DOT_STAR] = ACTIONS(5268), + [anon_sym_DASH_GT] = ACTIONS(5268), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5266), + [anon_sym_decltype] = ACTIONS(5266), + }, + [STATE(2587)] = { + [sym_string_literal] = STATE(2567), + [sym_raw_string_literal] = STATE(2567), + [aux_sym_concatenated_string_repeat1] = STATE(2567), + [sym_identifier] = ACTIONS(6715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6501), + [anon_sym_COMMA] = ACTIONS(6501), + [anon_sym_LPAREN2] = ACTIONS(6501), + [anon_sym_DASH] = ACTIONS(6503), + [anon_sym_PLUS] = ACTIONS(6503), + [anon_sym_STAR] = ACTIONS(6503), + [anon_sym_SLASH] = ACTIONS(6503), + [anon_sym_PERCENT] = ACTIONS(6503), + [anon_sym_PIPE_PIPE] = ACTIONS(6501), + [anon_sym_AMP_AMP] = ACTIONS(6501), + [anon_sym_PIPE] = ACTIONS(6503), + [anon_sym_CARET] = ACTIONS(6503), + [anon_sym_AMP] = ACTIONS(6503), + [anon_sym_EQ_EQ] = ACTIONS(6501), + [anon_sym_BANG_EQ] = ACTIONS(6501), + [anon_sym_GT] = ACTIONS(6503), + [anon_sym_GT_EQ] = ACTIONS(6501), + [anon_sym_LT_EQ] = ACTIONS(6503), + [anon_sym_LT] = ACTIONS(6503), + [anon_sym_LT_LT] = ACTIONS(6503), + [anon_sym_GT_GT] = ACTIONS(6503), + [anon_sym_SEMI] = ACTIONS(6501), + [anon_sym___attribute__] = ACTIONS(6503), + [anon_sym___attribute] = ACTIONS(6503), + [anon_sym_LBRACK] = ACTIONS(6501), + [anon_sym_EQ] = ACTIONS(6503), + [anon_sym_QMARK] = ACTIONS(6501), + [anon_sym_STAR_EQ] = ACTIONS(6501), + [anon_sym_SLASH_EQ] = ACTIONS(6501), + [anon_sym_PERCENT_EQ] = ACTIONS(6501), + [anon_sym_PLUS_EQ] = ACTIONS(6501), + [anon_sym_DASH_EQ] = ACTIONS(6501), + [anon_sym_LT_LT_EQ] = ACTIONS(6501), + [anon_sym_GT_GT_EQ] = ACTIONS(6501), + [anon_sym_AMP_EQ] = ACTIONS(6501), + [anon_sym_CARET_EQ] = ACTIONS(6501), + [anon_sym_PIPE_EQ] = ACTIONS(6501), + [anon_sym_and_eq] = ACTIONS(6503), + [anon_sym_or_eq] = ACTIONS(6503), + [anon_sym_xor_eq] = ACTIONS(6503), + [anon_sym_LT_EQ_GT] = ACTIONS(6501), + [anon_sym_or] = ACTIONS(6503), + [anon_sym_and] = ACTIONS(6503), + [anon_sym_bitor] = ACTIONS(6503), + [anon_sym_xor] = ACTIONS(6503), + [anon_sym_bitand] = ACTIONS(6503), + [anon_sym_not_eq] = ACTIONS(6503), + [anon_sym_DASH_DASH] = ACTIONS(6501), + [anon_sym_PLUS_PLUS] = ACTIONS(6501), + [anon_sym_DOT] = ACTIONS(6503), + [anon_sym_DOT_STAR] = ACTIONS(6501), + [anon_sym_DASH_GT] = ACTIONS(6501), + [anon_sym_L_DQUOTE] = ACTIONS(6661), + [anon_sym_u_DQUOTE] = ACTIONS(6661), + [anon_sym_U_DQUOTE] = ACTIONS(6661), + [anon_sym_u8_DQUOTE] = ACTIONS(6661), + [anon_sym_DQUOTE] = ACTIONS(6661), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6663), + [anon_sym_LR_DQUOTE] = ACTIONS(6663), + [anon_sym_uR_DQUOTE] = ACTIONS(6663), + [anon_sym_UR_DQUOTE] = ACTIONS(6663), + [anon_sym_u8R_DQUOTE] = ACTIONS(6663), + [sym_literal_suffix] = ACTIONS(6503), + }, + [STATE(2588)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(4020), + [sym_raw_string_literal] = STATE(3007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_COLON] = ACTIONS(6717), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3125), + [anon_sym_or_eq] = ACTIONS(3125), + [anon_sym_xor_eq] = ACTIONS(3125), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [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), + }, + [STATE(2589)] = { + [sym_identifier] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [aux_sym_preproc_if_token2] = ACTIONS(4533), + [aux_sym_preproc_else_token1] = ACTIONS(4533), + [aux_sym_preproc_elif_token1] = ACTIONS(4531), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4533), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4531), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_CARET] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4533), + [anon_sym_BANG_EQ] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4531), + [anon_sym_LT_LT] = ACTIONS(4531), + [anon_sym_GT_GT] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4533), + [anon_sym___attribute__] = ACTIONS(4531), + [anon_sym___attribute] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_RBRACK] = ACTIONS(4533), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4533), + [anon_sym_QMARK] = ACTIONS(4533), + [anon_sym_STAR_EQ] = ACTIONS(4533), + [anon_sym_SLASH_EQ] = ACTIONS(4533), + [anon_sym_PERCENT_EQ] = ACTIONS(4533), + [anon_sym_PLUS_EQ] = ACTIONS(4533), + [anon_sym_DASH_EQ] = ACTIONS(4533), + [anon_sym_LT_LT_EQ] = ACTIONS(4533), + [anon_sym_GT_GT_EQ] = ACTIONS(4533), + [anon_sym_AMP_EQ] = ACTIONS(4533), + [anon_sym_CARET_EQ] = ACTIONS(4533), + [anon_sym_PIPE_EQ] = ACTIONS(4533), + [anon_sym_and_eq] = ACTIONS(4531), + [anon_sym_or_eq] = ACTIONS(4531), + [anon_sym_xor_eq] = ACTIONS(4531), + [anon_sym_LT_EQ_GT] = ACTIONS(4533), + [anon_sym_or] = ACTIONS(4531), + [anon_sym_and] = ACTIONS(4531), + [anon_sym_bitor] = ACTIONS(4531), + [anon_sym_xor] = ACTIONS(4531), + [anon_sym_bitand] = ACTIONS(4531), + [anon_sym_not_eq] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_PLUS_PLUS] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_DOT_STAR] = ACTIONS(4533), + [anon_sym_DASH_GT] = ACTIONS(4533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4531), + [anon_sym_decltype] = ACTIONS(4531), + [anon_sym_final] = ACTIONS(4531), + [anon_sym_override] = ACTIONS(4531), + }, + [STATE(2590)] = { + [sym_string_literal] = STATE(2436), + [sym_raw_string_literal] = STATE(2436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6643), + [anon_sym_COMMA] = ACTIONS(6643), + [anon_sym_RPAREN] = ACTIONS(6643), + [anon_sym_LPAREN2] = ACTIONS(6643), + [anon_sym_DASH] = ACTIONS(6641), + [anon_sym_PLUS] = ACTIONS(6641), + [anon_sym_STAR] = ACTIONS(6641), + [anon_sym_SLASH] = ACTIONS(6641), + [anon_sym_PERCENT] = ACTIONS(6641), + [anon_sym_PIPE_PIPE] = ACTIONS(6643), + [anon_sym_AMP_AMP] = ACTIONS(6643), + [anon_sym_PIPE] = ACTIONS(6641), + [anon_sym_CARET] = ACTIONS(6641), + [anon_sym_AMP] = ACTIONS(6641), + [anon_sym_EQ_EQ] = ACTIONS(6643), + [anon_sym_BANG_EQ] = ACTIONS(6643), + [anon_sym_GT] = ACTIONS(6641), + [anon_sym_GT_EQ] = ACTIONS(6643), + [anon_sym_LT_EQ] = ACTIONS(6641), + [anon_sym_LT] = ACTIONS(6641), + [anon_sym_LT_LT] = ACTIONS(6641), + [anon_sym_GT_GT] = ACTIONS(6641), + [anon_sym_SEMI] = ACTIONS(6643), + [anon_sym_RBRACE] = ACTIONS(6643), + [anon_sym_LBRACK] = ACTIONS(6643), + [anon_sym_RBRACK] = ACTIONS(6643), + [anon_sym_EQ] = ACTIONS(6641), + [anon_sym_COLON] = ACTIONS(6643), + [anon_sym_QMARK] = ACTIONS(6643), + [anon_sym_STAR_EQ] = ACTIONS(6643), + [anon_sym_SLASH_EQ] = ACTIONS(6643), + [anon_sym_PERCENT_EQ] = ACTIONS(6643), + [anon_sym_PLUS_EQ] = ACTIONS(6643), + [anon_sym_DASH_EQ] = ACTIONS(6643), + [anon_sym_LT_LT_EQ] = ACTIONS(6643), + [anon_sym_GT_GT_EQ] = ACTIONS(6643), + [anon_sym_AMP_EQ] = ACTIONS(6643), + [anon_sym_CARET_EQ] = ACTIONS(6643), + [anon_sym_PIPE_EQ] = ACTIONS(6643), + [anon_sym_and_eq] = ACTIONS(6641), + [anon_sym_or_eq] = ACTIONS(6641), + [anon_sym_xor_eq] = ACTIONS(6641), + [anon_sym_LT_EQ_GT] = ACTIONS(6643), + [anon_sym_or] = ACTIONS(6641), + [anon_sym_and] = ACTIONS(6641), + [anon_sym_bitor] = ACTIONS(6641), + [anon_sym_xor] = ACTIONS(6641), + [anon_sym_bitand] = ACTIONS(6641), + [anon_sym_not_eq] = ACTIONS(6641), + [anon_sym_DASH_DASH] = ACTIONS(6643), + [anon_sym_PLUS_PLUS] = ACTIONS(6643), + [anon_sym_DOT] = ACTIONS(6641), + [anon_sym_DOT_STAR] = ACTIONS(6643), + [anon_sym_DASH_GT] = ACTIONS(6643), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + [sym_literal_suffix] = ACTIONS(6641), + }, + [STATE(2591)] = { + [sym_attribute_declaration] = STATE(2658), + [sym_parameter_list] = STATE(2650), + [aux_sym_attributed_declarator_repeat1] = STATE(2658), + [sym_identifier] = ACTIONS(6719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6721), + [anon_sym_COMMA] = ACTIONS(6721), + [anon_sym_RPAREN] = ACTIONS(6721), + [aux_sym_preproc_if_token2] = ACTIONS(6721), + [aux_sym_preproc_else_token1] = ACTIONS(6721), + [aux_sym_preproc_elif_token1] = ACTIONS(6719), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6721), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6721), + [anon_sym_LPAREN2] = ACTIONS(6723), + [anon_sym_DASH] = ACTIONS(6719), + [anon_sym_PLUS] = ACTIONS(6719), + [anon_sym_STAR] = ACTIONS(6719), + [anon_sym_SLASH] = ACTIONS(6719), + [anon_sym_PERCENT] = ACTIONS(6719), + [anon_sym_PIPE_PIPE] = ACTIONS(6721), + [anon_sym_AMP_AMP] = ACTIONS(6721), + [anon_sym_PIPE] = ACTIONS(6719), + [anon_sym_CARET] = ACTIONS(6719), + [anon_sym_AMP] = ACTIONS(6719), + [anon_sym_EQ_EQ] = ACTIONS(6721), + [anon_sym_BANG_EQ] = ACTIONS(6721), + [anon_sym_GT] = ACTIONS(6719), + [anon_sym_GT_EQ] = ACTIONS(6721), + [anon_sym_LT_EQ] = ACTIONS(6719), + [anon_sym_LT] = ACTIONS(6719), + [anon_sym_LT_LT] = ACTIONS(6719), + [anon_sym_GT_GT] = ACTIONS(6719), + [anon_sym_SEMI] = ACTIONS(6721), + [anon_sym___attribute__] = ACTIONS(6719), + [anon_sym___attribute] = ACTIONS(6719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6725), + [anon_sym_RBRACE] = ACTIONS(6721), + [anon_sym_LBRACK] = ACTIONS(6727), + [anon_sym_RBRACK] = ACTIONS(6721), + [anon_sym_EQ] = ACTIONS(6719), + [anon_sym_COLON] = ACTIONS(6721), + [anon_sym_QMARK] = ACTIONS(6721), + [anon_sym_STAR_EQ] = ACTIONS(6721), + [anon_sym_SLASH_EQ] = ACTIONS(6721), + [anon_sym_PERCENT_EQ] = ACTIONS(6721), + [anon_sym_PLUS_EQ] = ACTIONS(6721), + [anon_sym_DASH_EQ] = ACTIONS(6721), + [anon_sym_LT_LT_EQ] = ACTIONS(6721), + [anon_sym_GT_GT_EQ] = ACTIONS(6721), + [anon_sym_AMP_EQ] = ACTIONS(6721), + [anon_sym_CARET_EQ] = ACTIONS(6721), + [anon_sym_PIPE_EQ] = ACTIONS(6721), + [anon_sym_and_eq] = ACTIONS(6719), + [anon_sym_or_eq] = ACTIONS(6719), + [anon_sym_xor_eq] = ACTIONS(6719), + [anon_sym_LT_EQ_GT] = ACTIONS(6721), + [anon_sym_or] = ACTIONS(6719), + [anon_sym_and] = ACTIONS(6719), + [anon_sym_bitor] = ACTIONS(6719), + [anon_sym_xor] = ACTIONS(6719), + [anon_sym_bitand] = ACTIONS(6719), + [anon_sym_not_eq] = ACTIONS(6719), + [anon_sym_DASH_DASH] = ACTIONS(6721), + [anon_sym_PLUS_PLUS] = ACTIONS(6721), + [anon_sym_DOT] = ACTIONS(6719), + [anon_sym_DOT_STAR] = ACTIONS(6721), + [anon_sym_DASH_GT] = ACTIONS(6721), + [sym_comment] = ACTIONS(3), + }, + [STATE(2592)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(4020), + [sym_raw_string_literal] = STATE(3007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_COLON] = ACTIONS(3209), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3125), + [anon_sym_or_eq] = ACTIONS(3125), + [anon_sym_xor_eq] = ACTIONS(3125), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [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), + }, + [STATE(2593)] = { + [sym_string_literal] = STATE(2618), + [sym_raw_string_literal] = STATE(2618), + [aux_sym_concatenated_string_repeat1] = STATE(2618), + [sym_identifier] = ACTIONS(6729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6501), + [anon_sym_COMMA] = ACTIONS(6501), + [anon_sym_RPAREN] = ACTIONS(6501), + [anon_sym_LPAREN2] = ACTIONS(6501), + [anon_sym_DASH] = ACTIONS(6503), + [anon_sym_PLUS] = ACTIONS(6503), + [anon_sym_STAR] = ACTIONS(6503), + [anon_sym_SLASH] = ACTIONS(6503), + [anon_sym_PERCENT] = ACTIONS(6503), + [anon_sym_PIPE_PIPE] = ACTIONS(6501), + [anon_sym_AMP_AMP] = ACTIONS(6501), + [anon_sym_PIPE] = ACTIONS(6503), + [anon_sym_CARET] = ACTIONS(6503), + [anon_sym_AMP] = ACTIONS(6503), + [anon_sym_EQ_EQ] = ACTIONS(6501), + [anon_sym_BANG_EQ] = ACTIONS(6501), + [anon_sym_GT] = ACTIONS(6503), + [anon_sym_GT_EQ] = ACTIONS(6501), + [anon_sym_LT_EQ] = ACTIONS(6503), + [anon_sym_LT] = ACTIONS(6503), + [anon_sym_LT_LT] = ACTIONS(6503), + [anon_sym_GT_GT] = ACTIONS(6503), + [anon_sym_LBRACK] = ACTIONS(6501), + [anon_sym_EQ] = ACTIONS(6503), + [anon_sym_QMARK] = ACTIONS(6501), + [anon_sym_STAR_EQ] = ACTIONS(6501), + [anon_sym_SLASH_EQ] = ACTIONS(6501), + [anon_sym_PERCENT_EQ] = ACTIONS(6501), + [anon_sym_PLUS_EQ] = ACTIONS(6501), + [anon_sym_DASH_EQ] = ACTIONS(6501), + [anon_sym_LT_LT_EQ] = ACTIONS(6501), + [anon_sym_GT_GT_EQ] = ACTIONS(6501), + [anon_sym_AMP_EQ] = ACTIONS(6501), + [anon_sym_CARET_EQ] = ACTIONS(6501), + [anon_sym_PIPE_EQ] = ACTIONS(6501), + [anon_sym_and_eq] = ACTIONS(6503), + [anon_sym_or_eq] = ACTIONS(6503), + [anon_sym_xor_eq] = ACTIONS(6503), + [anon_sym_LT_EQ_GT] = ACTIONS(6501), + [anon_sym_or] = ACTIONS(6503), + [anon_sym_and] = ACTIONS(6503), + [anon_sym_bitor] = ACTIONS(6503), + [anon_sym_xor] = ACTIONS(6503), + [anon_sym_bitand] = ACTIONS(6503), + [anon_sym_not_eq] = ACTIONS(6503), + [anon_sym_DASH_DASH] = ACTIONS(6501), + [anon_sym_PLUS_PLUS] = ACTIONS(6501), + [anon_sym_DOT] = ACTIONS(6503), + [anon_sym_DOT_STAR] = ACTIONS(6501), + [anon_sym_DASH_GT] = ACTIONS(6503), + [anon_sym_L_DQUOTE] = ACTIONS(6245), + [anon_sym_u_DQUOTE] = ACTIONS(6245), + [anon_sym_U_DQUOTE] = ACTIONS(6245), + [anon_sym_u8_DQUOTE] = ACTIONS(6245), + [anon_sym_DQUOTE] = ACTIONS(6245), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6247), + [anon_sym_LR_DQUOTE] = ACTIONS(6247), + [anon_sym_uR_DQUOTE] = ACTIONS(6247), + [anon_sym_UR_DQUOTE] = ACTIONS(6247), + [anon_sym_u8R_DQUOTE] = ACTIONS(6247), + [anon_sym_DASH_GT_STAR] = ACTIONS(6501), + [sym_literal_suffix] = ACTIONS(6503), + }, + [STATE(2594)] = { + [sym_attribute_specifier] = STATE(2681), + [sym_identifier] = ACTIONS(5450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5452), + [anon_sym_COMMA] = ACTIONS(5452), + [anon_sym_RPAREN] = ACTIONS(5452), + [aux_sym_preproc_if_token2] = ACTIONS(5452), + [aux_sym_preproc_else_token1] = ACTIONS(5452), + [aux_sym_preproc_elif_token1] = ACTIONS(5450), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5452), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5452), + [anon_sym_LPAREN2] = ACTIONS(5452), + [anon_sym_DASH] = ACTIONS(5450), + [anon_sym_PLUS] = ACTIONS(5450), + [anon_sym_STAR] = ACTIONS(5450), + [anon_sym_SLASH] = ACTIONS(5450), + [anon_sym_PERCENT] = ACTIONS(5450), + [anon_sym_PIPE_PIPE] = ACTIONS(5452), + [anon_sym_AMP_AMP] = ACTIONS(5452), + [anon_sym_PIPE] = ACTIONS(5450), + [anon_sym_CARET] = ACTIONS(5450), + [anon_sym_AMP] = ACTIONS(5450), + [anon_sym_EQ_EQ] = ACTIONS(5452), + [anon_sym_BANG_EQ] = ACTIONS(5452), + [anon_sym_GT] = ACTIONS(5450), + [anon_sym_GT_EQ] = ACTIONS(5452), + [anon_sym_LT_EQ] = ACTIONS(5450), + [anon_sym_LT] = ACTIONS(5450), + [anon_sym_LT_LT] = ACTIONS(5450), + [anon_sym_GT_GT] = ACTIONS(5450), + [anon_sym_SEMI] = ACTIONS(5452), + [anon_sym___attribute__] = ACTIONS(6532), + [anon_sym___attribute] = ACTIONS(6532), + [anon_sym_LBRACE] = ACTIONS(5452), + [anon_sym_RBRACE] = ACTIONS(5452), + [anon_sym_LBRACK] = ACTIONS(5452), + [anon_sym_RBRACK] = ACTIONS(5452), + [anon_sym_EQ] = ACTIONS(5450), + [anon_sym_COLON] = ACTIONS(5452), + [anon_sym_QMARK] = ACTIONS(5452), + [anon_sym_STAR_EQ] = ACTIONS(5452), + [anon_sym_SLASH_EQ] = ACTIONS(5452), + [anon_sym_PERCENT_EQ] = ACTIONS(5452), + [anon_sym_PLUS_EQ] = ACTIONS(5452), + [anon_sym_DASH_EQ] = ACTIONS(5452), + [anon_sym_LT_LT_EQ] = ACTIONS(5452), + [anon_sym_GT_GT_EQ] = ACTIONS(5452), + [anon_sym_AMP_EQ] = ACTIONS(5452), + [anon_sym_CARET_EQ] = ACTIONS(5452), + [anon_sym_PIPE_EQ] = ACTIONS(5452), + [anon_sym_and_eq] = ACTIONS(5450), + [anon_sym_or_eq] = ACTIONS(5450), + [anon_sym_xor_eq] = ACTIONS(5450), + [anon_sym_LT_EQ_GT] = ACTIONS(5452), + [anon_sym_or] = ACTIONS(5450), + [anon_sym_and] = ACTIONS(5450), + [anon_sym_bitor] = ACTIONS(5450), + [anon_sym_xor] = ACTIONS(5450), + [anon_sym_bitand] = ACTIONS(5450), + [anon_sym_not_eq] = ACTIONS(5450), + [anon_sym_DASH_DASH] = ACTIONS(5452), + [anon_sym_PLUS_PLUS] = ACTIONS(5452), + [anon_sym_DOT] = ACTIONS(5450), + [anon_sym_DOT_STAR] = ACTIONS(5452), + [anon_sym_DASH_GT] = ACTIONS(5452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5450), + [anon_sym_decltype] = ACTIONS(5450), + }, + [STATE(2595)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(4020), + [sym_raw_string_literal] = STATE(3007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_COLON] = ACTIONS(3233), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3125), + [anon_sym_or_eq] = ACTIONS(3125), + [anon_sym_xor_eq] = ACTIONS(3125), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [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), + }, + [STATE(2596)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(4020), + [sym_raw_string_literal] = STATE(3007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_COLON] = ACTIONS(3131), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3125), + [anon_sym_or_eq] = ACTIONS(3125), + [anon_sym_xor_eq] = ACTIONS(3125), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [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), + }, + [STATE(2597)] = { + [sym_attribute_declaration] = STATE(2658), + [sym_parameter_list] = STATE(2650), + [aux_sym_attributed_declarator_repeat1] = STATE(2658), + [sym_identifier] = ACTIONS(6731), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6733), + [anon_sym_COMMA] = ACTIONS(6733), + [anon_sym_RPAREN] = ACTIONS(6733), + [aux_sym_preproc_if_token2] = ACTIONS(6733), + [aux_sym_preproc_else_token1] = ACTIONS(6733), + [aux_sym_preproc_elif_token1] = ACTIONS(6731), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6733), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6733), + [anon_sym_LPAREN2] = ACTIONS(6723), + [anon_sym_DASH] = ACTIONS(6731), + [anon_sym_PLUS] = ACTIONS(6731), + [anon_sym_STAR] = ACTIONS(6731), + [anon_sym_SLASH] = ACTIONS(6731), + [anon_sym_PERCENT] = ACTIONS(6731), + [anon_sym_PIPE_PIPE] = ACTIONS(6733), + [anon_sym_AMP_AMP] = ACTIONS(6733), + [anon_sym_PIPE] = ACTIONS(6731), + [anon_sym_CARET] = ACTIONS(6731), + [anon_sym_AMP] = ACTIONS(6731), + [anon_sym_EQ_EQ] = ACTIONS(6733), + [anon_sym_BANG_EQ] = ACTIONS(6733), + [anon_sym_GT] = ACTIONS(6731), + [anon_sym_GT_EQ] = ACTIONS(6733), + [anon_sym_LT_EQ] = ACTIONS(6731), + [anon_sym_LT] = ACTIONS(6731), + [anon_sym_LT_LT] = ACTIONS(6731), + [anon_sym_GT_GT] = ACTIONS(6731), + [anon_sym_SEMI] = ACTIONS(6733), + [anon_sym___attribute__] = ACTIONS(6731), + [anon_sym___attribute] = ACTIONS(6731), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6725), + [anon_sym_RBRACE] = ACTIONS(6733), + [anon_sym_LBRACK] = ACTIONS(6727), + [anon_sym_RBRACK] = ACTIONS(6733), + [anon_sym_EQ] = ACTIONS(6731), + [anon_sym_COLON] = ACTIONS(6733), + [anon_sym_QMARK] = ACTIONS(6733), + [anon_sym_STAR_EQ] = ACTIONS(6733), + [anon_sym_SLASH_EQ] = ACTIONS(6733), + [anon_sym_PERCENT_EQ] = ACTIONS(6733), + [anon_sym_PLUS_EQ] = ACTIONS(6733), + [anon_sym_DASH_EQ] = ACTIONS(6733), + [anon_sym_LT_LT_EQ] = ACTIONS(6733), + [anon_sym_GT_GT_EQ] = ACTIONS(6733), + [anon_sym_AMP_EQ] = ACTIONS(6733), + [anon_sym_CARET_EQ] = ACTIONS(6733), + [anon_sym_PIPE_EQ] = ACTIONS(6733), + [anon_sym_and_eq] = ACTIONS(6731), + [anon_sym_or_eq] = ACTIONS(6731), + [anon_sym_xor_eq] = ACTIONS(6731), + [anon_sym_LT_EQ_GT] = ACTIONS(6733), + [anon_sym_or] = ACTIONS(6731), + [anon_sym_and] = ACTIONS(6731), + [anon_sym_bitor] = ACTIONS(6731), + [anon_sym_xor] = ACTIONS(6731), + [anon_sym_bitand] = ACTIONS(6731), + [anon_sym_not_eq] = ACTIONS(6731), + [anon_sym_DASH_DASH] = ACTIONS(6733), + [anon_sym_PLUS_PLUS] = ACTIONS(6733), + [anon_sym_DOT] = ACTIONS(6731), + [anon_sym_DOT_STAR] = ACTIONS(6733), + [anon_sym_DASH_GT] = ACTIONS(6733), + [sym_comment] = ACTIONS(3), + }, + [STATE(2598)] = { + [sym_decltype_auto] = STATE(2714), + [sym_identifier] = ACTIONS(4785), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4787), + [anon_sym_COMMA] = ACTIONS(4787), + [anon_sym_RPAREN] = ACTIONS(4787), + [aux_sym_preproc_if_token2] = ACTIONS(4787), + [aux_sym_preproc_else_token1] = ACTIONS(4787), + [aux_sym_preproc_elif_token1] = ACTIONS(4785), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4787), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4787), + [anon_sym_LPAREN2] = ACTIONS(4787), + [anon_sym_DASH] = ACTIONS(4785), + [anon_sym_PLUS] = ACTIONS(4785), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PIPE_PIPE] = ACTIONS(4787), + [anon_sym_AMP_AMP] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4785), + [anon_sym_CARET] = ACTIONS(4785), + [anon_sym_AMP] = ACTIONS(4785), + [anon_sym_EQ_EQ] = ACTIONS(4787), + [anon_sym_BANG_EQ] = ACTIONS(4787), + [anon_sym_GT] = ACTIONS(4785), + [anon_sym_GT_EQ] = ACTIONS(4787), + [anon_sym_LT_EQ] = ACTIONS(4785), + [anon_sym_LT] = ACTIONS(4785), + [anon_sym_LT_LT] = ACTIONS(4785), + [anon_sym_GT_GT] = ACTIONS(4785), + [anon_sym_SEMI] = ACTIONS(4787), + [anon_sym___attribute__] = ACTIONS(4785), + [anon_sym___attribute] = ACTIONS(4785), + [anon_sym_LBRACE] = ACTIONS(4787), + [anon_sym_RBRACE] = ACTIONS(4787), + [anon_sym_LBRACK] = ACTIONS(4787), + [anon_sym_RBRACK] = ACTIONS(4787), + [anon_sym_EQ] = ACTIONS(4785), + [anon_sym_COLON] = ACTIONS(4787), + [anon_sym_QMARK] = ACTIONS(4787), + [anon_sym_STAR_EQ] = ACTIONS(4787), + [anon_sym_SLASH_EQ] = ACTIONS(4787), + [anon_sym_PERCENT_EQ] = ACTIONS(4787), + [anon_sym_PLUS_EQ] = ACTIONS(4787), + [anon_sym_DASH_EQ] = ACTIONS(4787), + [anon_sym_LT_LT_EQ] = ACTIONS(4787), + [anon_sym_GT_GT_EQ] = ACTIONS(4787), + [anon_sym_AMP_EQ] = ACTIONS(4787), + [anon_sym_CARET_EQ] = ACTIONS(4787), + [anon_sym_PIPE_EQ] = ACTIONS(4787), + [anon_sym_and_eq] = ACTIONS(4785), + [anon_sym_or_eq] = ACTIONS(4785), + [anon_sym_xor_eq] = ACTIONS(4785), + [anon_sym_LT_EQ_GT] = ACTIONS(4787), + [anon_sym_or] = ACTIONS(4785), + [anon_sym_and] = ACTIONS(4785), + [anon_sym_bitor] = ACTIONS(4785), + [anon_sym_xor] = ACTIONS(4785), + [anon_sym_bitand] = ACTIONS(4785), + [anon_sym_not_eq] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DOT] = ACTIONS(4785), + [anon_sym_DOT_STAR] = ACTIONS(4787), + [anon_sym_DASH_GT] = ACTIONS(4787), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6593), + [anon_sym_decltype] = ACTIONS(6595), + }, + [STATE(2599)] = { + [sym_attribute_specifier] = STATE(2703), + [sym_identifier] = ACTIONS(5484), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5486), + [anon_sym_COMMA] = ACTIONS(5486), + [anon_sym_RPAREN] = ACTIONS(5486), + [aux_sym_preproc_if_token2] = ACTIONS(5486), + [aux_sym_preproc_else_token1] = ACTIONS(5486), + [aux_sym_preproc_elif_token1] = ACTIONS(5484), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5486), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5486), + [anon_sym_LPAREN2] = ACTIONS(5486), + [anon_sym_DASH] = ACTIONS(5484), + [anon_sym_PLUS] = ACTIONS(5484), + [anon_sym_STAR] = ACTIONS(5484), + [anon_sym_SLASH] = ACTIONS(5484), + [anon_sym_PERCENT] = ACTIONS(5484), + [anon_sym_PIPE_PIPE] = ACTIONS(5486), + [anon_sym_AMP_AMP] = ACTIONS(5486), + [anon_sym_PIPE] = ACTIONS(5484), + [anon_sym_CARET] = ACTIONS(5484), + [anon_sym_AMP] = ACTIONS(5484), + [anon_sym_EQ_EQ] = ACTIONS(5486), + [anon_sym_BANG_EQ] = ACTIONS(5486), + [anon_sym_GT] = ACTIONS(5484), + [anon_sym_GT_EQ] = ACTIONS(5486), + [anon_sym_LT_EQ] = ACTIONS(5484), + [anon_sym_LT] = ACTIONS(5484), + [anon_sym_LT_LT] = ACTIONS(5484), + [anon_sym_GT_GT] = ACTIONS(5484), + [anon_sym_SEMI] = ACTIONS(5486), + [anon_sym___attribute__] = ACTIONS(6532), + [anon_sym___attribute] = ACTIONS(6532), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(5486), + [anon_sym_LBRACK] = ACTIONS(5486), + [anon_sym_RBRACK] = ACTIONS(5486), + [anon_sym_EQ] = ACTIONS(5484), + [anon_sym_COLON] = ACTIONS(5486), + [anon_sym_QMARK] = ACTIONS(5486), + [anon_sym_STAR_EQ] = ACTIONS(5486), + [anon_sym_SLASH_EQ] = ACTIONS(5486), + [anon_sym_PERCENT_EQ] = ACTIONS(5486), + [anon_sym_PLUS_EQ] = ACTIONS(5486), + [anon_sym_DASH_EQ] = ACTIONS(5486), + [anon_sym_LT_LT_EQ] = ACTIONS(5486), + [anon_sym_GT_GT_EQ] = ACTIONS(5486), + [anon_sym_AMP_EQ] = ACTIONS(5486), + [anon_sym_CARET_EQ] = ACTIONS(5486), + [anon_sym_PIPE_EQ] = ACTIONS(5486), + [anon_sym_and_eq] = ACTIONS(5484), + [anon_sym_or_eq] = ACTIONS(5484), + [anon_sym_xor_eq] = ACTIONS(5484), + [anon_sym_LT_EQ_GT] = ACTIONS(5486), + [anon_sym_or] = ACTIONS(5484), + [anon_sym_and] = ACTIONS(5484), + [anon_sym_bitor] = ACTIONS(5484), + [anon_sym_xor] = ACTIONS(5484), + [anon_sym_bitand] = ACTIONS(5484), + [anon_sym_not_eq] = ACTIONS(5484), + [anon_sym_DASH_DASH] = ACTIONS(5486), + [anon_sym_PLUS_PLUS] = ACTIONS(5486), + [anon_sym_DOT] = ACTIONS(5484), + [anon_sym_DOT_STAR] = ACTIONS(5486), + [anon_sym_DASH_GT] = ACTIONS(5486), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5484), + [anon_sym_decltype] = ACTIONS(5484), + }, + [STATE(2600)] = { + [sym_identifier] = ACTIONS(4735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4737), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4737), + [aux_sym_preproc_if_token2] = ACTIONS(4737), + [aux_sym_preproc_else_token1] = ACTIONS(4737), + [aux_sym_preproc_elif_token1] = ACTIONS(4735), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4737), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4737), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_DASH] = ACTIONS(4735), + [anon_sym_PLUS] = ACTIONS(4735), + [anon_sym_STAR] = ACTIONS(4735), + [anon_sym_SLASH] = ACTIONS(4735), + [anon_sym_PERCENT] = ACTIONS(4735), + [anon_sym_PIPE_PIPE] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_PIPE] = ACTIONS(4735), + [anon_sym_CARET] = ACTIONS(4735), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_EQ_EQ] = ACTIONS(4737), + [anon_sym_BANG_EQ] = ACTIONS(4737), + [anon_sym_GT] = ACTIONS(4735), + [anon_sym_GT_EQ] = ACTIONS(4737), + [anon_sym_LT_EQ] = ACTIONS(4735), + [anon_sym_LT] = ACTIONS(4735), + [anon_sym_LT_LT] = ACTIONS(4735), + [anon_sym_GT_GT] = ACTIONS(4735), + [anon_sym_SEMI] = ACTIONS(4737), + [anon_sym___attribute__] = ACTIONS(4735), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_COLON_COLON] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4737), + [anon_sym_RBRACE] = ACTIONS(4737), + [anon_sym_LBRACK] = ACTIONS(4737), + [anon_sym_RBRACK] = ACTIONS(4737), + [anon_sym_EQ] = ACTIONS(4735), + [anon_sym_COLON] = ACTIONS(4735), + [anon_sym_QMARK] = ACTIONS(4737), + [anon_sym_STAR_EQ] = ACTIONS(4737), + [anon_sym_SLASH_EQ] = ACTIONS(4737), + [anon_sym_PERCENT_EQ] = ACTIONS(4737), + [anon_sym_PLUS_EQ] = ACTIONS(4737), + [anon_sym_DASH_EQ] = ACTIONS(4737), + [anon_sym_LT_LT_EQ] = ACTIONS(4737), + [anon_sym_GT_GT_EQ] = ACTIONS(4737), + [anon_sym_AMP_EQ] = ACTIONS(4737), + [anon_sym_CARET_EQ] = ACTIONS(4737), + [anon_sym_PIPE_EQ] = ACTIONS(4737), + [anon_sym_and_eq] = ACTIONS(4735), + [anon_sym_or_eq] = ACTIONS(4735), + [anon_sym_xor_eq] = ACTIONS(4735), + [anon_sym_LT_EQ_GT] = ACTIONS(4737), + [anon_sym_or] = ACTIONS(4735), + [anon_sym_and] = ACTIONS(4735), + [anon_sym_bitor] = ACTIONS(4735), + [anon_sym_xor] = ACTIONS(4735), + [anon_sym_bitand] = ACTIONS(4735), + [anon_sym_not_eq] = ACTIONS(4735), + [anon_sym_DASH_DASH] = ACTIONS(4737), + [anon_sym_PLUS_PLUS] = ACTIONS(4737), + [anon_sym_DOT] = ACTIONS(4735), + [anon_sym_DOT_STAR] = ACTIONS(4737), + [anon_sym_DASH_GT] = ACTIONS(4737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4735), + [anon_sym_decltype] = ACTIONS(4735), + }, + [STATE(2601)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(4020), + [sym_raw_string_literal] = STATE(3007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_COLON] = ACTIONS(3213), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3125), + [anon_sym_or_eq] = ACTIONS(3125), + [anon_sym_xor_eq] = ACTIONS(3125), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [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), + }, + [STATE(2602)] = { + [sym_attribute_specifier] = STATE(2678), + [sym_identifier] = ACTIONS(5500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5502), + [anon_sym_COMMA] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5502), + [aux_sym_preproc_if_token2] = ACTIONS(5502), + [aux_sym_preproc_else_token1] = ACTIONS(5502), + [aux_sym_preproc_elif_token1] = ACTIONS(5500), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5502), + [aux_sym_preproc_elifdef_token2] = 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___attribute__] = ACTIONS(6532), + [anon_sym___attribute] = ACTIONS(6532), + [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_COLON] = 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(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), + }, + [STATE(2603)] = { + [sym_attribute_declaration] = STATE(2658), + [sym_parameter_list] = STATE(2650), + [aux_sym_attributed_declarator_repeat1] = STATE(2658), + [sym_identifier] = ACTIONS(6735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6737), + [anon_sym_COMMA] = ACTIONS(6737), + [anon_sym_RPAREN] = ACTIONS(6737), + [aux_sym_preproc_if_token2] = ACTIONS(6737), + [aux_sym_preproc_else_token1] = ACTIONS(6737), + [aux_sym_preproc_elif_token1] = ACTIONS(6735), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6737), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6737), + [anon_sym_LPAREN2] = ACTIONS(6723), + [anon_sym_DASH] = ACTIONS(6735), + [anon_sym_PLUS] = ACTIONS(6735), + [anon_sym_STAR] = ACTIONS(6735), + [anon_sym_SLASH] = ACTIONS(6735), + [anon_sym_PERCENT] = ACTIONS(6735), + [anon_sym_PIPE_PIPE] = ACTIONS(6737), + [anon_sym_AMP_AMP] = ACTIONS(6737), + [anon_sym_PIPE] = ACTIONS(6735), + [anon_sym_CARET] = ACTIONS(6735), + [anon_sym_AMP] = ACTIONS(6735), + [anon_sym_EQ_EQ] = ACTIONS(6737), + [anon_sym_BANG_EQ] = ACTIONS(6737), + [anon_sym_GT] = ACTIONS(6735), + [anon_sym_GT_EQ] = ACTIONS(6737), + [anon_sym_LT_EQ] = ACTIONS(6735), + [anon_sym_LT] = ACTIONS(6735), + [anon_sym_LT_LT] = ACTIONS(6735), + [anon_sym_GT_GT] = ACTIONS(6735), + [anon_sym_SEMI] = ACTIONS(6737), + [anon_sym___attribute__] = ACTIONS(6735), + [anon_sym___attribute] = ACTIONS(6735), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6725), + [anon_sym_RBRACE] = ACTIONS(6737), + [anon_sym_LBRACK] = ACTIONS(6727), + [anon_sym_RBRACK] = ACTIONS(6737), + [anon_sym_EQ] = ACTIONS(6735), + [anon_sym_COLON] = ACTIONS(6737), + [anon_sym_QMARK] = ACTIONS(6737), + [anon_sym_STAR_EQ] = ACTIONS(6737), + [anon_sym_SLASH_EQ] = ACTIONS(6737), + [anon_sym_PERCENT_EQ] = ACTIONS(6737), + [anon_sym_PLUS_EQ] = ACTIONS(6737), + [anon_sym_DASH_EQ] = ACTIONS(6737), + [anon_sym_LT_LT_EQ] = ACTIONS(6737), + [anon_sym_GT_GT_EQ] = ACTIONS(6737), + [anon_sym_AMP_EQ] = ACTIONS(6737), + [anon_sym_CARET_EQ] = ACTIONS(6737), + [anon_sym_PIPE_EQ] = ACTIONS(6737), + [anon_sym_and_eq] = ACTIONS(6735), + [anon_sym_or_eq] = ACTIONS(6735), + [anon_sym_xor_eq] = ACTIONS(6735), + [anon_sym_LT_EQ_GT] = ACTIONS(6737), + [anon_sym_or] = ACTIONS(6735), + [anon_sym_and] = ACTIONS(6735), + [anon_sym_bitor] = ACTIONS(6735), + [anon_sym_xor] = ACTIONS(6735), + [anon_sym_bitand] = ACTIONS(6735), + [anon_sym_not_eq] = ACTIONS(6735), + [anon_sym_DASH_DASH] = ACTIONS(6737), + [anon_sym_PLUS_PLUS] = ACTIONS(6737), + [anon_sym_DOT] = ACTIONS(6735), + [anon_sym_DOT_STAR] = ACTIONS(6737), + [anon_sym_DASH_GT] = ACTIONS(6737), + [sym_comment] = ACTIONS(3), + }, + [STATE(2604)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(4020), + [sym_raw_string_literal] = STATE(3007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_COLON] = ACTIONS(3231), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3125), + [anon_sym_or_eq] = ACTIONS(3125), + [anon_sym_xor_eq] = ACTIONS(3125), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [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), + }, + [STATE(2605)] = { + [sym_attribute_declaration] = STATE(2658), + [sym_parameter_list] = STATE(2650), + [aux_sym_attributed_declarator_repeat1] = STATE(2658), + [sym_identifier] = ACTIONS(6739), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6741), + [anon_sym_COMMA] = ACTIONS(6741), + [anon_sym_RPAREN] = ACTIONS(6741), + [aux_sym_preproc_if_token2] = ACTIONS(6741), + [aux_sym_preproc_else_token1] = ACTIONS(6741), + [aux_sym_preproc_elif_token1] = ACTIONS(6739), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6741), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6741), + [anon_sym_LPAREN2] = ACTIONS(6723), + [anon_sym_DASH] = ACTIONS(6739), + [anon_sym_PLUS] = ACTIONS(6739), + [anon_sym_STAR] = ACTIONS(6739), + [anon_sym_SLASH] = ACTIONS(6739), + [anon_sym_PERCENT] = ACTIONS(6739), + [anon_sym_PIPE_PIPE] = ACTIONS(6741), + [anon_sym_AMP_AMP] = ACTIONS(6741), + [anon_sym_PIPE] = ACTIONS(6739), + [anon_sym_CARET] = ACTIONS(6739), + [anon_sym_AMP] = ACTIONS(6739), + [anon_sym_EQ_EQ] = ACTIONS(6741), + [anon_sym_BANG_EQ] = ACTIONS(6741), + [anon_sym_GT] = ACTIONS(6739), + [anon_sym_GT_EQ] = ACTIONS(6741), + [anon_sym_LT_EQ] = ACTIONS(6739), + [anon_sym_LT] = ACTIONS(6739), + [anon_sym_LT_LT] = ACTIONS(6739), + [anon_sym_GT_GT] = ACTIONS(6739), + [anon_sym_SEMI] = ACTIONS(6741), + [anon_sym___attribute__] = ACTIONS(6739), + [anon_sym___attribute] = ACTIONS(6739), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6725), + [anon_sym_RBRACE] = ACTIONS(6741), + [anon_sym_LBRACK] = ACTIONS(6727), + [anon_sym_RBRACK] = ACTIONS(6741), + [anon_sym_EQ] = ACTIONS(6739), + [anon_sym_COLON] = ACTIONS(6741), + [anon_sym_QMARK] = ACTIONS(6741), + [anon_sym_STAR_EQ] = ACTIONS(6741), + [anon_sym_SLASH_EQ] = ACTIONS(6741), + [anon_sym_PERCENT_EQ] = ACTIONS(6741), + [anon_sym_PLUS_EQ] = ACTIONS(6741), + [anon_sym_DASH_EQ] = ACTIONS(6741), + [anon_sym_LT_LT_EQ] = ACTIONS(6741), + [anon_sym_GT_GT_EQ] = ACTIONS(6741), + [anon_sym_AMP_EQ] = ACTIONS(6741), + [anon_sym_CARET_EQ] = ACTIONS(6741), + [anon_sym_PIPE_EQ] = ACTIONS(6741), + [anon_sym_and_eq] = ACTIONS(6739), + [anon_sym_or_eq] = ACTIONS(6739), + [anon_sym_xor_eq] = ACTIONS(6739), + [anon_sym_LT_EQ_GT] = ACTIONS(6741), + [anon_sym_or] = ACTIONS(6739), + [anon_sym_and] = ACTIONS(6739), + [anon_sym_bitor] = ACTIONS(6739), + [anon_sym_xor] = ACTIONS(6739), + [anon_sym_bitand] = ACTIONS(6739), + [anon_sym_not_eq] = ACTIONS(6739), + [anon_sym_DASH_DASH] = ACTIONS(6741), + [anon_sym_PLUS_PLUS] = ACTIONS(6741), + [anon_sym_DOT] = ACTIONS(6739), + [anon_sym_DOT_STAR] = ACTIONS(6741), + [anon_sym_DASH_GT] = ACTIONS(6741), + [sym_comment] = ACTIONS(3), + }, + [STATE(2606)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(4020), + [sym_raw_string_literal] = STATE(3007), + [aux_sym_structured_binding_declarator_repeat1] = STATE(7681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6743), + [anon_sym_COMMA] = ACTIONS(6746), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_RBRACK] = ACTIONS(6749), + [anon_sym_EQ] = ACTIONS(6753), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(6755), + [anon_sym_SLASH_EQ] = ACTIONS(6755), + [anon_sym_PERCENT_EQ] = ACTIONS(6755), + [anon_sym_PLUS_EQ] = ACTIONS(6755), + [anon_sym_DASH_EQ] = ACTIONS(6755), + [anon_sym_LT_LT_EQ] = ACTIONS(6755), + [anon_sym_GT_GT_EQ] = ACTIONS(6755), + [anon_sym_AMP_EQ] = ACTIONS(6755), + [anon_sym_CARET_EQ] = ACTIONS(6755), + [anon_sym_PIPE_EQ] = ACTIONS(6755), + [anon_sym_and_eq] = ACTIONS(6755), + [anon_sym_or_eq] = ACTIONS(6755), + [anon_sym_xor_eq] = ACTIONS(6755), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [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), + }, + [STATE(2607)] = { + [sym_ms_based_modifier] = STATE(8621), + [sym_ms_unaligned_ptr_modifier] = STATE(4347), + [sym_ms_pointer_modifier] = STATE(2626), + [sym__declarator] = STATE(6892), + [sym__abstract_declarator] = STATE(7005), + [sym_parenthesized_declarator] = STATE(6300), + [sym_abstract_parenthesized_declarator] = STATE(6365), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_abstract_pointer_declarator] = STATE(6365), + [sym_function_declarator] = STATE(6300), + [sym_abstract_function_declarator] = STATE(6365), + [sym_array_declarator] = STATE(6300), + [sym_abstract_array_declarator] = STATE(6365), + [sym_type_qualifier] = STATE(3123), + [sym_alignas_qualifier] = STATE(4606), + [sym_parameter_list] = STATE(3525), + [sym_decltype] = STATE(8447), + [sym_reference_declarator] = STATE(6300), + [sym_abstract_reference_declarator] = STATE(6365), + [sym_structured_binding_declarator] = STATE(6300), + [sym__function_declarator_seq] = STATE(6368), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6154), + [sym_qualified_identifier] = STATE(6300), + [sym_operator_name] = STATE(6300), + [aux_sym__type_definition_type_repeat1] = STATE(3123), + [aux_sym_pointer_declarator_repeat1] = STATE(2626), + [sym_identifier] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(6757), + [anon_sym_AMP_AMP] = ACTIONS(6759), + [anon_sym_AMP] = ACTIONS(6761), + [anon_sym___extension__] = ACTIONS(4029), + [anon_sym___attribute__] = ACTIONS(6620), + [anon_sym___attribute] = ACTIONS(6620), + [anon_sym_COLON_COLON] = ACTIONS(6763), + [anon_sym___based] = ACTIONS(51), + [sym_ms_restrict_modifier] = ACTIONS(4025), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(4025), + [sym_ms_signed_ptr_modifier] = ACTIONS(4025), + [anon_sym__unaligned] = ACTIONS(4027), + [anon_sym___unaligned] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(6624), + [anon_sym_const] = ACTIONS(4029), + [anon_sym_constexpr] = ACTIONS(4029), + [anon_sym_volatile] = ACTIONS(4029), + [anon_sym_restrict] = ACTIONS(4029), + [anon_sym___restrict__] = ACTIONS(4029), + [anon_sym__Atomic] = ACTIONS(4029), + [anon_sym__Noreturn] = ACTIONS(4029), + [anon_sym_noreturn] = ACTIONS(4029), + [anon_sym__Nonnull] = ACTIONS(4029), + [anon_sym_mutable] = ACTIONS(4029), + [anon_sym_constinit] = ACTIONS(4029), + [anon_sym_consteval] = ACTIONS(4029), + [anon_sym_alignas] = ACTIONS(4031), + [anon_sym__Alignas] = ACTIONS(4031), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(3197), + }, + [STATE(2608)] = { + [sym_attribute_declaration] = STATE(2658), + [sym_parameter_list] = STATE(2650), + [aux_sym_attributed_declarator_repeat1] = STATE(2658), + [sym_identifier] = ACTIONS(6765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6767), + [anon_sym_COMMA] = ACTIONS(6767), + [anon_sym_RPAREN] = ACTIONS(6767), + [aux_sym_preproc_if_token2] = ACTIONS(6767), + [aux_sym_preproc_else_token1] = ACTIONS(6767), + [aux_sym_preproc_elif_token1] = ACTIONS(6765), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6767), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6767), + [anon_sym_LPAREN2] = ACTIONS(6723), + [anon_sym_DASH] = ACTIONS(6765), + [anon_sym_PLUS] = ACTIONS(6765), + [anon_sym_STAR] = ACTIONS(6765), + [anon_sym_SLASH] = ACTIONS(6765), + [anon_sym_PERCENT] = ACTIONS(6765), + [anon_sym_PIPE_PIPE] = ACTIONS(6767), + [anon_sym_AMP_AMP] = ACTIONS(6767), + [anon_sym_PIPE] = ACTIONS(6765), + [anon_sym_CARET] = ACTIONS(6765), + [anon_sym_AMP] = ACTIONS(6765), + [anon_sym_EQ_EQ] = ACTIONS(6767), + [anon_sym_BANG_EQ] = ACTIONS(6767), + [anon_sym_GT] = ACTIONS(6765), + [anon_sym_GT_EQ] = ACTIONS(6767), + [anon_sym_LT_EQ] = ACTIONS(6765), + [anon_sym_LT] = ACTIONS(6765), + [anon_sym_LT_LT] = ACTIONS(6765), + [anon_sym_GT_GT] = ACTIONS(6765), + [anon_sym_SEMI] = ACTIONS(6767), + [anon_sym___attribute__] = ACTIONS(6765), + [anon_sym___attribute] = ACTIONS(6765), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6725), + [anon_sym_RBRACE] = ACTIONS(6767), + [anon_sym_LBRACK] = ACTIONS(6727), + [anon_sym_RBRACK] = ACTIONS(6767), + [anon_sym_EQ] = ACTIONS(6765), + [anon_sym_COLON] = ACTIONS(6767), + [anon_sym_QMARK] = ACTIONS(6767), + [anon_sym_STAR_EQ] = ACTIONS(6767), + [anon_sym_SLASH_EQ] = ACTIONS(6767), + [anon_sym_PERCENT_EQ] = ACTIONS(6767), + [anon_sym_PLUS_EQ] = ACTIONS(6767), + [anon_sym_DASH_EQ] = ACTIONS(6767), + [anon_sym_LT_LT_EQ] = ACTIONS(6767), + [anon_sym_GT_GT_EQ] = ACTIONS(6767), + [anon_sym_AMP_EQ] = ACTIONS(6767), + [anon_sym_CARET_EQ] = ACTIONS(6767), + [anon_sym_PIPE_EQ] = ACTIONS(6767), + [anon_sym_and_eq] = ACTIONS(6765), + [anon_sym_or_eq] = ACTIONS(6765), + [anon_sym_xor_eq] = ACTIONS(6765), + [anon_sym_LT_EQ_GT] = ACTIONS(6767), + [anon_sym_or] = ACTIONS(6765), + [anon_sym_and] = ACTIONS(6765), + [anon_sym_bitor] = ACTIONS(6765), + [anon_sym_xor] = ACTIONS(6765), + [anon_sym_bitand] = ACTIONS(6765), + [anon_sym_not_eq] = ACTIONS(6765), + [anon_sym_DASH_DASH] = ACTIONS(6767), + [anon_sym_PLUS_PLUS] = ACTIONS(6767), + [anon_sym_DOT] = ACTIONS(6765), + [anon_sym_DOT_STAR] = ACTIONS(6767), + [anon_sym_DASH_GT] = ACTIONS(6767), + [sym_comment] = ACTIONS(3), + }, + [STATE(2609)] = { + [sym_string_literal] = STATE(2609), + [sym_raw_string_literal] = STATE(2609), + [aux_sym_concatenated_string_repeat1] = STATE(2609), + [sym_identifier] = ACTIONS(6769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6508), + [anon_sym_COMMA] = ACTIONS(6508), + [anon_sym_RPAREN] = ACTIONS(6508), + [anon_sym_LPAREN2] = ACTIONS(6508), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_STAR] = ACTIONS(6510), + [anon_sym_SLASH] = ACTIONS(6510), + [anon_sym_PERCENT] = ACTIONS(6510), + [anon_sym_PIPE_PIPE] = ACTIONS(6508), + [anon_sym_AMP_AMP] = ACTIONS(6508), + [anon_sym_PIPE] = ACTIONS(6510), + [anon_sym_CARET] = ACTIONS(6510), + [anon_sym_AMP] = ACTIONS(6510), + [anon_sym_EQ_EQ] = ACTIONS(6508), + [anon_sym_BANG_EQ] = ACTIONS(6508), + [anon_sym_GT] = ACTIONS(6510), + [anon_sym_GT_EQ] = ACTIONS(6508), + [anon_sym_LT_EQ] = ACTIONS(6510), + [anon_sym_LT] = ACTIONS(6510), + [anon_sym_LT_LT] = ACTIONS(6510), + [anon_sym_GT_GT] = ACTIONS(6510), + [anon_sym_LBRACK] = ACTIONS(6508), + [anon_sym_EQ] = ACTIONS(6510), + [anon_sym_QMARK] = ACTIONS(6508), + [anon_sym_STAR_EQ] = ACTIONS(6508), + [anon_sym_SLASH_EQ] = ACTIONS(6508), + [anon_sym_PERCENT_EQ] = ACTIONS(6508), + [anon_sym_PLUS_EQ] = ACTIONS(6508), + [anon_sym_DASH_EQ] = ACTIONS(6508), + [anon_sym_LT_LT_EQ] = ACTIONS(6508), + [anon_sym_GT_GT_EQ] = ACTIONS(6508), + [anon_sym_AMP_EQ] = ACTIONS(6508), + [anon_sym_CARET_EQ] = ACTIONS(6508), + [anon_sym_PIPE_EQ] = ACTIONS(6508), + [anon_sym_and_eq] = ACTIONS(6510), + [anon_sym_or_eq] = ACTIONS(6510), + [anon_sym_xor_eq] = ACTIONS(6510), + [anon_sym_LT_EQ_GT] = ACTIONS(6508), + [anon_sym_or] = ACTIONS(6510), + [anon_sym_and] = ACTIONS(6510), + [anon_sym_bitor] = ACTIONS(6510), + [anon_sym_xor] = ACTIONS(6510), + [anon_sym_bitand] = ACTIONS(6510), + [anon_sym_not_eq] = ACTIONS(6510), + [anon_sym_DASH_DASH] = ACTIONS(6508), + [anon_sym_PLUS_PLUS] = ACTIONS(6508), + [anon_sym_DOT] = ACTIONS(6510), + [anon_sym_DOT_STAR] = ACTIONS(6508), + [anon_sym_DASH_GT] = ACTIONS(6510), + [anon_sym_L_DQUOTE] = ACTIONS(6772), + [anon_sym_u_DQUOTE] = ACTIONS(6772), + [anon_sym_U_DQUOTE] = ACTIONS(6772), + [anon_sym_u8_DQUOTE] = ACTIONS(6772), + [anon_sym_DQUOTE] = ACTIONS(6772), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6775), + [anon_sym_LR_DQUOTE] = ACTIONS(6775), + [anon_sym_uR_DQUOTE] = ACTIONS(6775), + [anon_sym_UR_DQUOTE] = ACTIONS(6775), + [anon_sym_u8R_DQUOTE] = ACTIONS(6775), + [anon_sym_DASH_GT_STAR] = ACTIONS(6508), + [sym_literal_suffix] = ACTIONS(6510), + }, + [STATE(2610)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(4020), + [sym_raw_string_literal] = STATE(3007), + [aux_sym_structured_binding_declarator_repeat1] = STATE(7681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(6778), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_RBRACK] = ACTIONS(6780), + [anon_sym_EQ] = ACTIONS(6783), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(6755), + [anon_sym_SLASH_EQ] = ACTIONS(6755), + [anon_sym_PERCENT_EQ] = ACTIONS(6755), + [anon_sym_PLUS_EQ] = ACTIONS(6755), + [anon_sym_DASH_EQ] = ACTIONS(6755), + [anon_sym_LT_LT_EQ] = ACTIONS(6755), + [anon_sym_GT_GT_EQ] = ACTIONS(6755), + [anon_sym_AMP_EQ] = ACTIONS(6755), + [anon_sym_CARET_EQ] = ACTIONS(6755), + [anon_sym_PIPE_EQ] = ACTIONS(6755), + [anon_sym_and_eq] = ACTIONS(6755), + [anon_sym_or_eq] = ACTIONS(6755), + [anon_sym_xor_eq] = ACTIONS(6755), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [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), + }, + [STATE(2611)] = { + [sym_attribute_specifier] = STATE(2693), + [sym_identifier] = ACTIONS(5476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5478), + [anon_sym_COMMA] = ACTIONS(5478), + [anon_sym_RPAREN] = ACTIONS(5478), + [aux_sym_preproc_if_token2] = ACTIONS(5478), + [aux_sym_preproc_else_token1] = ACTIONS(5478), + [aux_sym_preproc_elif_token1] = ACTIONS(5476), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5478), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5478), + [anon_sym_LPAREN2] = ACTIONS(5478), + [anon_sym_DASH] = ACTIONS(5476), + [anon_sym_PLUS] = ACTIONS(5476), + [anon_sym_STAR] = ACTIONS(5476), + [anon_sym_SLASH] = ACTIONS(5476), + [anon_sym_PERCENT] = ACTIONS(5476), + [anon_sym_PIPE_PIPE] = ACTIONS(5478), + [anon_sym_AMP_AMP] = ACTIONS(5478), + [anon_sym_PIPE] = ACTIONS(5476), + [anon_sym_CARET] = ACTIONS(5476), + [anon_sym_AMP] = ACTIONS(5476), + [anon_sym_EQ_EQ] = ACTIONS(5478), + [anon_sym_BANG_EQ] = ACTIONS(5478), + [anon_sym_GT] = ACTIONS(5476), + [anon_sym_GT_EQ] = ACTIONS(5478), + [anon_sym_LT_EQ] = ACTIONS(5476), + [anon_sym_LT] = ACTIONS(5476), + [anon_sym_LT_LT] = ACTIONS(5476), + [anon_sym_GT_GT] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(5478), + [anon_sym___attribute__] = ACTIONS(6532), + [anon_sym___attribute] = ACTIONS(6532), + [anon_sym_LBRACE] = ACTIONS(5478), + [anon_sym_RBRACE] = ACTIONS(5478), + [anon_sym_LBRACK] = ACTIONS(5478), + [anon_sym_RBRACK] = ACTIONS(5478), + [anon_sym_EQ] = ACTIONS(5476), + [anon_sym_COLON] = ACTIONS(5478), + [anon_sym_QMARK] = ACTIONS(5478), + [anon_sym_STAR_EQ] = ACTIONS(5478), + [anon_sym_SLASH_EQ] = ACTIONS(5478), + [anon_sym_PERCENT_EQ] = ACTIONS(5478), + [anon_sym_PLUS_EQ] = ACTIONS(5478), + [anon_sym_DASH_EQ] = ACTIONS(5478), + [anon_sym_LT_LT_EQ] = ACTIONS(5478), + [anon_sym_GT_GT_EQ] = ACTIONS(5478), + [anon_sym_AMP_EQ] = ACTIONS(5478), + [anon_sym_CARET_EQ] = ACTIONS(5478), + [anon_sym_PIPE_EQ] = ACTIONS(5478), + [anon_sym_and_eq] = ACTIONS(5476), + [anon_sym_or_eq] = ACTIONS(5476), + [anon_sym_xor_eq] = ACTIONS(5476), + [anon_sym_LT_EQ_GT] = ACTIONS(5478), + [anon_sym_or] = ACTIONS(5476), + [anon_sym_and] = ACTIONS(5476), + [anon_sym_bitor] = ACTIONS(5476), + [anon_sym_xor] = ACTIONS(5476), + [anon_sym_bitand] = ACTIONS(5476), + [anon_sym_not_eq] = ACTIONS(5476), + [anon_sym_DASH_DASH] = ACTIONS(5478), + [anon_sym_PLUS_PLUS] = ACTIONS(5478), + [anon_sym_DOT] = ACTIONS(5476), + [anon_sym_DOT_STAR] = ACTIONS(5478), + [anon_sym_DASH_GT] = ACTIONS(5478), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5476), + [anon_sym_decltype] = ACTIONS(5476), + }, + [STATE(2612)] = { + [sym_attribute_specifier] = STATE(2730), + [sym_identifier] = ACTIONS(5488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5490), + [anon_sym_COMMA] = ACTIONS(5490), + [anon_sym_RPAREN] = ACTIONS(5490), + [aux_sym_preproc_if_token2] = ACTIONS(5490), + [aux_sym_preproc_else_token1] = ACTIONS(5490), + [aux_sym_preproc_elif_token1] = ACTIONS(5488), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5490), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5490), + [anon_sym_LPAREN2] = ACTIONS(5490), + [anon_sym_DASH] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5488), + [anon_sym_STAR] = ACTIONS(5488), + [anon_sym_SLASH] = ACTIONS(5488), + [anon_sym_PERCENT] = ACTIONS(5488), + [anon_sym_PIPE_PIPE] = ACTIONS(5490), + [anon_sym_AMP_AMP] = ACTIONS(5490), + [anon_sym_PIPE] = ACTIONS(5488), + [anon_sym_CARET] = ACTIONS(5488), + [anon_sym_AMP] = ACTIONS(5488), + [anon_sym_EQ_EQ] = ACTIONS(5490), + [anon_sym_BANG_EQ] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(5488), + [anon_sym_GT_EQ] = ACTIONS(5490), + [anon_sym_LT_EQ] = ACTIONS(5488), + [anon_sym_LT] = ACTIONS(5488), + [anon_sym_LT_LT] = ACTIONS(5488), + [anon_sym_GT_GT] = ACTIONS(5488), + [anon_sym_SEMI] = ACTIONS(5490), + [anon_sym___attribute__] = ACTIONS(6532), + [anon_sym___attribute] = ACTIONS(6532), + [anon_sym_LBRACE] = ACTIONS(5490), + [anon_sym_RBRACE] = ACTIONS(5490), + [anon_sym_LBRACK] = ACTIONS(5490), + [anon_sym_RBRACK] = ACTIONS(5490), + [anon_sym_EQ] = ACTIONS(5488), + [anon_sym_COLON] = ACTIONS(5490), + [anon_sym_QMARK] = ACTIONS(5490), + [anon_sym_STAR_EQ] = ACTIONS(5490), + [anon_sym_SLASH_EQ] = ACTIONS(5490), + [anon_sym_PERCENT_EQ] = ACTIONS(5490), + [anon_sym_PLUS_EQ] = ACTIONS(5490), + [anon_sym_DASH_EQ] = ACTIONS(5490), + [anon_sym_LT_LT_EQ] = ACTIONS(5490), + [anon_sym_GT_GT_EQ] = ACTIONS(5490), + [anon_sym_AMP_EQ] = ACTIONS(5490), + [anon_sym_CARET_EQ] = ACTIONS(5490), + [anon_sym_PIPE_EQ] = ACTIONS(5490), + [anon_sym_and_eq] = ACTIONS(5488), + [anon_sym_or_eq] = ACTIONS(5488), + [anon_sym_xor_eq] = ACTIONS(5488), + [anon_sym_LT_EQ_GT] = ACTIONS(5490), + [anon_sym_or] = ACTIONS(5488), + [anon_sym_and] = ACTIONS(5488), + [anon_sym_bitor] = ACTIONS(5488), + [anon_sym_xor] = ACTIONS(5488), + [anon_sym_bitand] = ACTIONS(5488), + [anon_sym_not_eq] = ACTIONS(5488), + [anon_sym_DASH_DASH] = ACTIONS(5490), + [anon_sym_PLUS_PLUS] = ACTIONS(5490), + [anon_sym_DOT] = ACTIONS(5488), + [anon_sym_DOT_STAR] = ACTIONS(5490), + [anon_sym_DASH_GT] = ACTIONS(5490), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5488), + [anon_sym_decltype] = ACTIONS(5488), + }, + [STATE(2613)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(4020), + [sym_raw_string_literal] = STATE(3007), + [aux_sym__call_macro_with_decl_first_arg_repeat1] = STATE(7685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(6785), + [anon_sym_RPAREN] = ACTIONS(6787), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3125), + [anon_sym_or_eq] = ACTIONS(3125), + [anon_sym_xor_eq] = ACTIONS(3125), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [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), + }, + [STATE(2614)] = { + [sym_attribute_specifier] = STATE(2731), + [sym_identifier] = ACTIONS(5516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5518), + [anon_sym_COMMA] = ACTIONS(5518), + [anon_sym_RPAREN] = ACTIONS(5518), + [aux_sym_preproc_if_token2] = ACTIONS(5518), + [aux_sym_preproc_else_token1] = ACTIONS(5518), + [aux_sym_preproc_elif_token1] = ACTIONS(5516), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5518), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5518), + [anon_sym_LPAREN2] = ACTIONS(5518), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_STAR] = ACTIONS(5516), + [anon_sym_SLASH] = ACTIONS(5516), + [anon_sym_PERCENT] = ACTIONS(5516), + [anon_sym_PIPE_PIPE] = ACTIONS(5518), + [anon_sym_AMP_AMP] = ACTIONS(5518), + [anon_sym_PIPE] = ACTIONS(5516), + [anon_sym_CARET] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5516), + [anon_sym_EQ_EQ] = ACTIONS(5518), + [anon_sym_BANG_EQ] = ACTIONS(5518), + [anon_sym_GT] = ACTIONS(5516), + [anon_sym_GT_EQ] = ACTIONS(5518), + [anon_sym_LT_EQ] = ACTIONS(5516), + [anon_sym_LT] = ACTIONS(5516), + [anon_sym_LT_LT] = ACTIONS(5516), + [anon_sym_GT_GT] = ACTIONS(5516), + [anon_sym_SEMI] = ACTIONS(5518), + [anon_sym___attribute__] = ACTIONS(6532), + [anon_sym___attribute] = ACTIONS(6532), + [anon_sym_LBRACE] = ACTIONS(5518), + [anon_sym_RBRACE] = ACTIONS(5518), + [anon_sym_LBRACK] = ACTIONS(5518), + [anon_sym_RBRACK] = ACTIONS(5518), + [anon_sym_EQ] = ACTIONS(5516), + [anon_sym_COLON] = ACTIONS(5518), + [anon_sym_QMARK] = ACTIONS(5518), + [anon_sym_STAR_EQ] = ACTIONS(5518), + [anon_sym_SLASH_EQ] = ACTIONS(5518), + [anon_sym_PERCENT_EQ] = ACTIONS(5518), + [anon_sym_PLUS_EQ] = ACTIONS(5518), + [anon_sym_DASH_EQ] = ACTIONS(5518), + [anon_sym_LT_LT_EQ] = ACTIONS(5518), + [anon_sym_GT_GT_EQ] = ACTIONS(5518), + [anon_sym_AMP_EQ] = ACTIONS(5518), + [anon_sym_CARET_EQ] = ACTIONS(5518), + [anon_sym_PIPE_EQ] = ACTIONS(5518), + [anon_sym_and_eq] = ACTIONS(5516), + [anon_sym_or_eq] = ACTIONS(5516), + [anon_sym_xor_eq] = ACTIONS(5516), + [anon_sym_LT_EQ_GT] = ACTIONS(5518), + [anon_sym_or] = ACTIONS(5516), + [anon_sym_and] = ACTIONS(5516), + [anon_sym_bitor] = ACTIONS(5516), + [anon_sym_xor] = ACTIONS(5516), + [anon_sym_bitand] = ACTIONS(5516), + [anon_sym_not_eq] = ACTIONS(5516), + [anon_sym_DASH_DASH] = ACTIONS(5518), + [anon_sym_PLUS_PLUS] = ACTIONS(5518), + [anon_sym_DOT] = ACTIONS(5516), + [anon_sym_DOT_STAR] = ACTIONS(5518), + [anon_sym_DASH_GT] = ACTIONS(5518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5516), + [anon_sym_decltype] = ACTIONS(5516), + }, + [STATE(2615)] = { + [sym_attribute_specifier] = STATE(2686), + [sym_identifier] = ACTIONS(5522), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5524), + [anon_sym_COMMA] = ACTIONS(5524), + [anon_sym_RPAREN] = ACTIONS(5524), + [aux_sym_preproc_if_token2] = ACTIONS(5524), + [aux_sym_preproc_else_token1] = ACTIONS(5524), + [aux_sym_preproc_elif_token1] = ACTIONS(5522), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5524), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5524), + [anon_sym_LPAREN2] = ACTIONS(5524), + [anon_sym_DASH] = ACTIONS(5522), + [anon_sym_PLUS] = ACTIONS(5522), + [anon_sym_STAR] = ACTIONS(5522), + [anon_sym_SLASH] = ACTIONS(5522), + [anon_sym_PERCENT] = ACTIONS(5522), + [anon_sym_PIPE_PIPE] = ACTIONS(5524), + [anon_sym_AMP_AMP] = ACTIONS(5524), + [anon_sym_PIPE] = ACTIONS(5522), + [anon_sym_CARET] = ACTIONS(5522), + [anon_sym_AMP] = ACTIONS(5522), + [anon_sym_EQ_EQ] = ACTIONS(5524), + [anon_sym_BANG_EQ] = ACTIONS(5524), + [anon_sym_GT] = ACTIONS(5522), + [anon_sym_GT_EQ] = ACTIONS(5524), + [anon_sym_LT_EQ] = ACTIONS(5522), + [anon_sym_LT] = ACTIONS(5522), + [anon_sym_LT_LT] = ACTIONS(5522), + [anon_sym_GT_GT] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5524), + [anon_sym___attribute__] = ACTIONS(6532), + [anon_sym___attribute] = ACTIONS(6532), + [anon_sym_LBRACE] = ACTIONS(5524), + [anon_sym_RBRACE] = ACTIONS(5524), + [anon_sym_LBRACK] = ACTIONS(5524), + [anon_sym_RBRACK] = ACTIONS(5524), + [anon_sym_EQ] = ACTIONS(5522), + [anon_sym_COLON] = ACTIONS(5524), + [anon_sym_QMARK] = ACTIONS(5524), + [anon_sym_STAR_EQ] = ACTIONS(5524), + [anon_sym_SLASH_EQ] = ACTIONS(5524), + [anon_sym_PERCENT_EQ] = ACTIONS(5524), + [anon_sym_PLUS_EQ] = ACTIONS(5524), + [anon_sym_DASH_EQ] = ACTIONS(5524), + [anon_sym_LT_LT_EQ] = ACTIONS(5524), + [anon_sym_GT_GT_EQ] = ACTIONS(5524), + [anon_sym_AMP_EQ] = ACTIONS(5524), + [anon_sym_CARET_EQ] = ACTIONS(5524), + [anon_sym_PIPE_EQ] = ACTIONS(5524), + [anon_sym_and_eq] = ACTIONS(5522), + [anon_sym_or_eq] = ACTIONS(5522), + [anon_sym_xor_eq] = ACTIONS(5522), + [anon_sym_LT_EQ_GT] = ACTIONS(5524), + [anon_sym_or] = ACTIONS(5522), + [anon_sym_and] = ACTIONS(5522), + [anon_sym_bitor] = ACTIONS(5522), + [anon_sym_xor] = ACTIONS(5522), + [anon_sym_bitand] = ACTIONS(5522), + [anon_sym_not_eq] = ACTIONS(5522), + [anon_sym_DASH_DASH] = ACTIONS(5524), + [anon_sym_PLUS_PLUS] = ACTIONS(5524), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_DOT_STAR] = ACTIONS(5524), + [anon_sym_DASH_GT] = ACTIONS(5524), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5522), + [anon_sym_decltype] = ACTIONS(5522), + }, + [STATE(2616)] = { + [sym_attribute_specifier] = STATE(2691), + [sym_identifier] = ACTIONS(5512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5514), + [anon_sym_COMMA] = ACTIONS(5514), + [anon_sym_RPAREN] = ACTIONS(5514), + [aux_sym_preproc_if_token2] = ACTIONS(5514), + [aux_sym_preproc_else_token1] = ACTIONS(5514), + [aux_sym_preproc_elif_token1] = ACTIONS(5512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5514), + [anon_sym_LPAREN2] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_STAR] = ACTIONS(5512), + [anon_sym_SLASH] = ACTIONS(5512), + [anon_sym_PERCENT] = ACTIONS(5512), + [anon_sym_PIPE_PIPE] = ACTIONS(5514), + [anon_sym_AMP_AMP] = ACTIONS(5514), + [anon_sym_PIPE] = ACTIONS(5512), + [anon_sym_CARET] = ACTIONS(5512), + [anon_sym_AMP] = ACTIONS(5512), + [anon_sym_EQ_EQ] = ACTIONS(5514), + [anon_sym_BANG_EQ] = ACTIONS(5514), + [anon_sym_GT] = ACTIONS(5512), + [anon_sym_GT_EQ] = ACTIONS(5514), + [anon_sym_LT_EQ] = ACTIONS(5512), + [anon_sym_LT] = ACTIONS(5512), + [anon_sym_LT_LT] = ACTIONS(5512), + [anon_sym_GT_GT] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5514), + [anon_sym___attribute__] = ACTIONS(6532), + [anon_sym___attribute] = ACTIONS(6532), + [anon_sym_LBRACE] = ACTIONS(5514), + [anon_sym_RBRACE] = ACTIONS(5514), + [anon_sym_LBRACK] = ACTIONS(5514), + [anon_sym_RBRACK] = ACTIONS(5514), + [anon_sym_EQ] = ACTIONS(5512), + [anon_sym_COLON] = ACTIONS(5514), + [anon_sym_QMARK] = ACTIONS(5514), + [anon_sym_STAR_EQ] = ACTIONS(5514), + [anon_sym_SLASH_EQ] = ACTIONS(5514), + [anon_sym_PERCENT_EQ] = ACTIONS(5514), + [anon_sym_PLUS_EQ] = ACTIONS(5514), + [anon_sym_DASH_EQ] = ACTIONS(5514), + [anon_sym_LT_LT_EQ] = ACTIONS(5514), + [anon_sym_GT_GT_EQ] = ACTIONS(5514), + [anon_sym_AMP_EQ] = ACTIONS(5514), + [anon_sym_CARET_EQ] = ACTIONS(5514), + [anon_sym_PIPE_EQ] = ACTIONS(5514), + [anon_sym_and_eq] = ACTIONS(5512), + [anon_sym_or_eq] = ACTIONS(5512), + [anon_sym_xor_eq] = ACTIONS(5512), + [anon_sym_LT_EQ_GT] = ACTIONS(5514), + [anon_sym_or] = ACTIONS(5512), + [anon_sym_and] = ACTIONS(5512), + [anon_sym_bitor] = ACTIONS(5512), + [anon_sym_xor] = ACTIONS(5512), + [anon_sym_bitand] = ACTIONS(5512), + [anon_sym_not_eq] = ACTIONS(5512), + [anon_sym_DASH_DASH] = ACTIONS(5514), + [anon_sym_PLUS_PLUS] = ACTIONS(5514), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_DOT_STAR] = ACTIONS(5514), + [anon_sym_DASH_GT] = ACTIONS(5514), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5512), + [anon_sym_decltype] = ACTIONS(5512), + }, + [STATE(2617)] = { + [sym_string_literal] = STATE(2593), + [sym_template_argument_list] = STATE(3495), + [sym_raw_string_literal] = STATE(2593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6325), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3089), + [anon_sym_SLASH_EQ] = ACTIONS(3089), + [anon_sym_PERCENT_EQ] = ACTIONS(3089), + [anon_sym_PLUS_EQ] = ACTIONS(3089), + [anon_sym_DASH_EQ] = ACTIONS(3089), + [anon_sym_LT_LT_EQ] = ACTIONS(3089), + [anon_sym_GT_GT_EQ] = ACTIONS(3089), + [anon_sym_AMP_EQ] = ACTIONS(3089), + [anon_sym_CARET_EQ] = ACTIONS(3089), + [anon_sym_PIPE_EQ] = ACTIONS(3089), + [anon_sym_and_eq] = ACTIONS(3089), + [anon_sym_or_eq] = ACTIONS(3089), + [anon_sym_xor_eq] = ACTIONS(3089), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(6245), + [anon_sym_u_DQUOTE] = ACTIONS(6245), + [anon_sym_U_DQUOTE] = ACTIONS(6245), + [anon_sym_u8_DQUOTE] = ACTIONS(6245), + [anon_sym_DQUOTE] = ACTIONS(6245), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6247), + [anon_sym_LR_DQUOTE] = ACTIONS(6247), + [anon_sym_uR_DQUOTE] = ACTIONS(6247), + [anon_sym_UR_DQUOTE] = ACTIONS(6247), + [anon_sym_u8R_DQUOTE] = ACTIONS(6247), + [anon_sym_DASH_GT_STAR] = ACTIONS(3089), + }, + [STATE(2618)] = { + [sym_string_literal] = STATE(2609), + [sym_raw_string_literal] = STATE(2609), + [aux_sym_concatenated_string_repeat1] = STATE(2609), + [sym_identifier] = ACTIONS(6789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6520), + [anon_sym_COMMA] = ACTIONS(6520), + [anon_sym_RPAREN] = ACTIONS(6520), + [anon_sym_LPAREN2] = ACTIONS(6520), + [anon_sym_DASH] = ACTIONS(6522), + [anon_sym_PLUS] = ACTIONS(6522), + [anon_sym_STAR] = ACTIONS(6522), + [anon_sym_SLASH] = ACTIONS(6522), + [anon_sym_PERCENT] = ACTIONS(6522), + [anon_sym_PIPE_PIPE] = ACTIONS(6520), + [anon_sym_AMP_AMP] = ACTIONS(6520), + [anon_sym_PIPE] = ACTIONS(6522), + [anon_sym_CARET] = ACTIONS(6522), + [anon_sym_AMP] = ACTIONS(6522), + [anon_sym_EQ_EQ] = ACTIONS(6520), + [anon_sym_BANG_EQ] = ACTIONS(6520), + [anon_sym_GT] = ACTIONS(6522), + [anon_sym_GT_EQ] = ACTIONS(6520), + [anon_sym_LT_EQ] = ACTIONS(6522), + [anon_sym_LT] = ACTIONS(6522), + [anon_sym_LT_LT] = ACTIONS(6522), + [anon_sym_GT_GT] = ACTIONS(6522), + [anon_sym_LBRACK] = ACTIONS(6520), + [anon_sym_EQ] = ACTIONS(6522), + [anon_sym_QMARK] = ACTIONS(6520), + [anon_sym_STAR_EQ] = ACTIONS(6520), + [anon_sym_SLASH_EQ] = ACTIONS(6520), + [anon_sym_PERCENT_EQ] = ACTIONS(6520), + [anon_sym_PLUS_EQ] = ACTIONS(6520), + [anon_sym_DASH_EQ] = ACTIONS(6520), + [anon_sym_LT_LT_EQ] = ACTIONS(6520), + [anon_sym_GT_GT_EQ] = ACTIONS(6520), + [anon_sym_AMP_EQ] = ACTIONS(6520), + [anon_sym_CARET_EQ] = ACTIONS(6520), + [anon_sym_PIPE_EQ] = ACTIONS(6520), + [anon_sym_and_eq] = ACTIONS(6522), + [anon_sym_or_eq] = ACTIONS(6522), + [anon_sym_xor_eq] = ACTIONS(6522), + [anon_sym_LT_EQ_GT] = ACTIONS(6520), + [anon_sym_or] = ACTIONS(6522), + [anon_sym_and] = ACTIONS(6522), + [anon_sym_bitor] = ACTIONS(6522), + [anon_sym_xor] = ACTIONS(6522), + [anon_sym_bitand] = ACTIONS(6522), + [anon_sym_not_eq] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6520), + [anon_sym_PLUS_PLUS] = ACTIONS(6520), + [anon_sym_DOT] = ACTIONS(6522), + [anon_sym_DOT_STAR] = ACTIONS(6520), + [anon_sym_DASH_GT] = ACTIONS(6522), + [anon_sym_L_DQUOTE] = ACTIONS(6245), + [anon_sym_u_DQUOTE] = ACTIONS(6245), + [anon_sym_U_DQUOTE] = ACTIONS(6245), + [anon_sym_u8_DQUOTE] = ACTIONS(6245), + [anon_sym_DQUOTE] = ACTIONS(6245), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6247), + [anon_sym_LR_DQUOTE] = ACTIONS(6247), + [anon_sym_uR_DQUOTE] = ACTIONS(6247), + [anon_sym_UR_DQUOTE] = ACTIONS(6247), + [anon_sym_u8R_DQUOTE] = ACTIONS(6247), + [anon_sym_DASH_GT_STAR] = ACTIONS(6520), + [sym_literal_suffix] = ACTIONS(6522), + }, + [STATE(2619)] = { + [sym_attribute_specifier] = STATE(2699), + [sym_identifier] = ACTIONS(5494), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5496), + [anon_sym_COMMA] = ACTIONS(5496), + [anon_sym_RPAREN] = ACTIONS(5496), + [aux_sym_preproc_if_token2] = ACTIONS(5496), + [aux_sym_preproc_else_token1] = ACTIONS(5496), + [aux_sym_preproc_elif_token1] = ACTIONS(5494), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5496), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5496), + [anon_sym_LPAREN2] = ACTIONS(5496), + [anon_sym_DASH] = ACTIONS(5494), + [anon_sym_PLUS] = ACTIONS(5494), + [anon_sym_STAR] = ACTIONS(5494), + [anon_sym_SLASH] = ACTIONS(5494), + [anon_sym_PERCENT] = ACTIONS(5494), + [anon_sym_PIPE_PIPE] = ACTIONS(5496), + [anon_sym_AMP_AMP] = ACTIONS(5496), + [anon_sym_PIPE] = ACTIONS(5494), + [anon_sym_CARET] = ACTIONS(5494), + [anon_sym_AMP] = ACTIONS(5494), + [anon_sym_EQ_EQ] = ACTIONS(5496), + [anon_sym_BANG_EQ] = ACTIONS(5496), + [anon_sym_GT] = ACTIONS(5494), + [anon_sym_GT_EQ] = ACTIONS(5496), + [anon_sym_LT_EQ] = ACTIONS(5494), + [anon_sym_LT] = ACTIONS(5494), + [anon_sym_LT_LT] = ACTIONS(5494), + [anon_sym_GT_GT] = ACTIONS(5494), + [anon_sym_SEMI] = ACTIONS(5496), + [anon_sym___attribute__] = ACTIONS(6532), + [anon_sym___attribute] = ACTIONS(6532), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(5496), + [anon_sym_LBRACK] = ACTIONS(5496), + [anon_sym_RBRACK] = ACTIONS(5496), + [anon_sym_EQ] = ACTIONS(5494), + [anon_sym_COLON] = ACTIONS(5496), + [anon_sym_QMARK] = ACTIONS(5496), + [anon_sym_STAR_EQ] = ACTIONS(5496), + [anon_sym_SLASH_EQ] = ACTIONS(5496), + [anon_sym_PERCENT_EQ] = ACTIONS(5496), + [anon_sym_PLUS_EQ] = ACTIONS(5496), + [anon_sym_DASH_EQ] = ACTIONS(5496), + [anon_sym_LT_LT_EQ] = ACTIONS(5496), + [anon_sym_GT_GT_EQ] = ACTIONS(5496), + [anon_sym_AMP_EQ] = ACTIONS(5496), + [anon_sym_CARET_EQ] = ACTIONS(5496), + [anon_sym_PIPE_EQ] = ACTIONS(5496), + [anon_sym_and_eq] = ACTIONS(5494), + [anon_sym_or_eq] = ACTIONS(5494), + [anon_sym_xor_eq] = ACTIONS(5494), + [anon_sym_LT_EQ_GT] = ACTIONS(5496), + [anon_sym_or] = ACTIONS(5494), + [anon_sym_and] = ACTIONS(5494), + [anon_sym_bitor] = ACTIONS(5494), + [anon_sym_xor] = ACTIONS(5494), + [anon_sym_bitand] = ACTIONS(5494), + [anon_sym_not_eq] = ACTIONS(5494), + [anon_sym_DASH_DASH] = ACTIONS(5496), + [anon_sym_PLUS_PLUS] = ACTIONS(5496), + [anon_sym_DOT] = ACTIONS(5494), + [anon_sym_DOT_STAR] = ACTIONS(5496), + [anon_sym_DASH_GT] = ACTIONS(5496), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5494), + [anon_sym_decltype] = ACTIONS(5494), + }, + [STATE(2620)] = { + [sym_string_literal] = STATE(2809), + [sym_template_argument_list] = STATE(3915), + [sym_raw_string_literal] = STATE(2809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6791), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3089), + [anon_sym_SLASH_EQ] = ACTIONS(3089), + [anon_sym_PERCENT_EQ] = ACTIONS(3089), + [anon_sym_PLUS_EQ] = ACTIONS(3089), + [anon_sym_DASH_EQ] = ACTIONS(3089), + [anon_sym_LT_LT_EQ] = ACTIONS(3089), + [anon_sym_GT_GT_EQ] = ACTIONS(3089), + [anon_sym_AMP_EQ] = ACTIONS(3089), + [anon_sym_CARET_EQ] = ACTIONS(3089), + [anon_sym_PIPE_EQ] = ACTIONS(3089), + [anon_sym_and_eq] = ACTIONS(6794), + [anon_sym_or_eq] = ACTIONS(6794), + [anon_sym_xor_eq] = ACTIONS(6794), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(3240), + [anon_sym_u_DQUOTE] = ACTIONS(3240), + [anon_sym_U_DQUOTE] = ACTIONS(3240), + [anon_sym_u8_DQUOTE] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3242), + [anon_sym_LR_DQUOTE] = ACTIONS(3242), + [anon_sym_uR_DQUOTE] = ACTIONS(3242), + [anon_sym_UR_DQUOTE] = ACTIONS(3242), + [anon_sym_u8R_DQUOTE] = ACTIONS(3242), + [anon_sym_DASH_GT_STAR] = ACTIONS(3089), + }, + [STATE(2621)] = { + [sym_template_argument_list] = STATE(2558), + [aux_sym_sized_type_specifier_repeat1] = STATE(2782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(3095), + [anon_sym_RPAREN] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_SLASH] = ACTIONS(3087), + [anon_sym_PERCENT] = ACTIONS(3087), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_CARET] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_EQ_EQ] = ACTIONS(3095), + [anon_sym_BANG_EQ] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3087), + [anon_sym_GT_EQ] = ACTIONS(3095), + [anon_sym_LT_EQ] = ACTIONS(3087), + [anon_sym_LT] = ACTIONS(6601), + [anon_sym_LT_LT] = ACTIONS(3087), + [anon_sym_GT_GT] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym___attribute__] = ACTIONS(3095), + [anon_sym___attribute] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_RBRACE] = ACTIONS(3095), + [anon_sym_signed] = ACTIONS(6796), + [anon_sym_unsigned] = ACTIONS(6796), + [anon_sym_long] = ACTIONS(6796), + [anon_sym_short] = ACTIONS(6796), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_RBRACK] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3087), + [anon_sym_QMARK] = ACTIONS(3095), + [anon_sym_STAR_EQ] = ACTIONS(3095), + [anon_sym_SLASH_EQ] = ACTIONS(3095), + [anon_sym_PERCENT_EQ] = ACTIONS(3095), + [anon_sym_PLUS_EQ] = ACTIONS(3095), + [anon_sym_DASH_EQ] = ACTIONS(3095), + [anon_sym_LT_LT_EQ] = ACTIONS(3095), + [anon_sym_GT_GT_EQ] = ACTIONS(3095), + [anon_sym_AMP_EQ] = ACTIONS(3095), + [anon_sym_CARET_EQ] = ACTIONS(3095), + [anon_sym_PIPE_EQ] = ACTIONS(3095), + [anon_sym_and_eq] = ACTIONS(3095), + [anon_sym_or_eq] = ACTIONS(3095), + [anon_sym_xor_eq] = ACTIONS(3095), + [anon_sym_LT_EQ_GT] = ACTIONS(3095), + [anon_sym_or] = ACTIONS(3087), + [anon_sym_and] = ACTIONS(3087), + [anon_sym_bitor] = ACTIONS(3095), + [anon_sym_xor] = ACTIONS(3087), + [anon_sym_bitand] = ACTIONS(3095), + [anon_sym_not_eq] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_DOT] = ACTIONS(3087), + [anon_sym_DOT_STAR] = ACTIONS(3095), + [anon_sym_DASH_GT] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + }, + [STATE(2622)] = { + [sym_template_argument_list] = STATE(917), + [aux_sym_sized_type_specifier_repeat1] = STATE(2782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_RPAREN] = ACTIONS(5072), + [anon_sym_LPAREN2] = ACTIONS(5072), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_STAR] = ACTIONS(5070), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_PERCENT] = ACTIONS(5070), + [anon_sym_PIPE_PIPE] = ACTIONS(5072), + [anon_sym_AMP_AMP] = ACTIONS(5072), + [anon_sym_PIPE] = ACTIONS(5070), + [anon_sym_CARET] = ACTIONS(5070), + [anon_sym_AMP] = ACTIONS(5070), + [anon_sym_EQ_EQ] = ACTIONS(5072), + [anon_sym_BANG_EQ] = ACTIONS(5072), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_GT_EQ] = ACTIONS(5072), + [anon_sym_LT_EQ] = ACTIONS(5070), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_LT_LT] = ACTIONS(5070), + [anon_sym_GT_GT] = ACTIONS(5070), + [anon_sym_SEMI] = ACTIONS(5072), + [anon_sym___attribute__] = ACTIONS(5072), + [anon_sym___attribute] = ACTIONS(5070), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(5072), + [anon_sym_RBRACE] = ACTIONS(5072), + [anon_sym_signed] = ACTIONS(6796), + [anon_sym_unsigned] = ACTIONS(6796), + [anon_sym_long] = ACTIONS(6796), + [anon_sym_short] = ACTIONS(6796), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_RBRACK] = ACTIONS(5072), + [anon_sym_EQ] = ACTIONS(5070), + [anon_sym_COLON] = ACTIONS(5070), + [anon_sym_QMARK] = ACTIONS(5072), + [anon_sym_STAR_EQ] = ACTIONS(5072), + [anon_sym_SLASH_EQ] = ACTIONS(5072), + [anon_sym_PERCENT_EQ] = ACTIONS(5072), + [anon_sym_PLUS_EQ] = ACTIONS(5072), + [anon_sym_DASH_EQ] = ACTIONS(5072), + [anon_sym_LT_LT_EQ] = ACTIONS(5072), + [anon_sym_GT_GT_EQ] = ACTIONS(5072), + [anon_sym_AMP_EQ] = ACTIONS(5072), + [anon_sym_CARET_EQ] = ACTIONS(5072), + [anon_sym_PIPE_EQ] = ACTIONS(5072), + [anon_sym_and_eq] = ACTIONS(5072), + [anon_sym_or_eq] = ACTIONS(5072), + [anon_sym_xor_eq] = ACTIONS(5072), + [anon_sym_LT_EQ_GT] = ACTIONS(5072), + [anon_sym_or] = ACTIONS(5070), + [anon_sym_and] = ACTIONS(5070), + [anon_sym_bitor] = ACTIONS(5072), + [anon_sym_xor] = ACTIONS(5070), + [anon_sym_bitand] = ACTIONS(5072), + [anon_sym_not_eq] = ACTIONS(5072), + [anon_sym_DASH_DASH] = ACTIONS(5072), + [anon_sym_PLUS_PLUS] = ACTIONS(5072), + [anon_sym_DOT] = ACTIONS(5070), + [anon_sym_DOT_STAR] = ACTIONS(5072), + [anon_sym_DASH_GT] = ACTIONS(5072), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5072), + [anon_sym_decltype] = ACTIONS(5072), + }, + [STATE(2623)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(4020), + [sym_raw_string_literal] = STATE(3007), + [aux_sym__call_macro_with_decl_first_arg_repeat1] = STATE(7878), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(6785), + [anon_sym_RPAREN] = ACTIONS(6798), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3125), + [anon_sym_or_eq] = ACTIONS(3125), + [anon_sym_xor_eq] = ACTIONS(3125), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [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), + }, + [STATE(2624)] = { + [sym_type_qualifier] = STATE(2628), + [sym_alignas_qualifier] = STATE(2677), + [aux_sym__type_definition_type_repeat1] = STATE(2628), + [aux_sym_sized_type_specifier_repeat1] = STATE(2827), + [sym_identifier] = ACTIONS(6800), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4721), + [anon_sym_COMMA] = ACTIONS(4721), + [anon_sym_LPAREN2] = ACTIONS(4721), + [anon_sym_DASH] = ACTIONS(4723), + [anon_sym_PLUS] = ACTIONS(4723), + [anon_sym_STAR] = ACTIONS(4721), + [anon_sym_SLASH] = ACTIONS(4723), + [anon_sym_PERCENT] = ACTIONS(4721), + [anon_sym_PIPE_PIPE] = ACTIONS(4721), + [anon_sym_AMP_AMP] = ACTIONS(4721), + [anon_sym_PIPE] = ACTIONS(4723), + [anon_sym_CARET] = ACTIONS(4721), + [anon_sym_AMP] = ACTIONS(4723), + [anon_sym_EQ_EQ] = ACTIONS(4721), + [anon_sym_BANG_EQ] = ACTIONS(4721), + [anon_sym_GT] = ACTIONS(4723), + [anon_sym_GT_EQ] = ACTIONS(4723), + [anon_sym_LT_EQ] = ACTIONS(4723), + [anon_sym_LT] = ACTIONS(4723), + [anon_sym_LT_LT] = ACTIONS(4721), + [anon_sym_GT_GT] = ACTIONS(4723), + [anon_sym___extension__] = ACTIONS(6802), + [anon_sym___attribute__] = ACTIONS(4723), + [anon_sym___attribute] = ACTIONS(4723), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_signed] = ACTIONS(6804), + [anon_sym_unsigned] = ACTIONS(6804), + [anon_sym_long] = ACTIONS(6804), + [anon_sym_short] = ACTIONS(6804), + [anon_sym_LBRACK] = ACTIONS(4721), + [anon_sym_const] = ACTIONS(6802), + [anon_sym_constexpr] = ACTIONS(6802), + [anon_sym_volatile] = ACTIONS(6802), + [anon_sym_restrict] = ACTIONS(6802), + [anon_sym___restrict__] = ACTIONS(6802), + [anon_sym__Atomic] = ACTIONS(6802), + [anon_sym__Noreturn] = ACTIONS(6802), + [anon_sym_noreturn] = ACTIONS(6802), + [anon_sym__Nonnull] = ACTIONS(6802), + [anon_sym_mutable] = ACTIONS(6802), + [anon_sym_constinit] = ACTIONS(6802), + [anon_sym_consteval] = ACTIONS(6802), + [anon_sym_alignas] = ACTIONS(6806), + [anon_sym__Alignas] = ACTIONS(6806), + [sym_primitive_type] = ACTIONS(6808), + [anon_sym_QMARK] = ACTIONS(4721), + [anon_sym_LT_EQ_GT] = ACTIONS(4721), + [anon_sym_or] = ACTIONS(4723), + [anon_sym_and] = ACTIONS(4723), + [anon_sym_bitor] = ACTIONS(4723), + [anon_sym_xor] = ACTIONS(4723), + [anon_sym_bitand] = ACTIONS(4723), + [anon_sym_not_eq] = ACTIONS(4723), + [anon_sym_DASH_DASH] = ACTIONS(4721), + [anon_sym_PLUS_PLUS] = ACTIONS(4721), + [anon_sym_DOT] = ACTIONS(4723), + [anon_sym_DOT_STAR] = ACTIONS(4721), + [anon_sym_DASH_GT] = ACTIONS(4721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4723), + [anon_sym_decltype] = ACTIONS(4723), + [anon_sym_GT2] = ACTIONS(4721), + }, + [STATE(2625)] = { + [sym_attribute_specifier] = STATE(2661), + [sym_identifier] = ACTIONS(5446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5448), + [anon_sym_COMMA] = ACTIONS(5448), + [anon_sym_RPAREN] = ACTIONS(5448), + [aux_sym_preproc_if_token2] = ACTIONS(5448), + [aux_sym_preproc_else_token1] = ACTIONS(5448), + [aux_sym_preproc_elif_token1] = ACTIONS(5446), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5448), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5448), + [anon_sym_LPAREN2] = ACTIONS(5448), + [anon_sym_DASH] = ACTIONS(5446), + [anon_sym_PLUS] = ACTIONS(5446), + [anon_sym_STAR] = ACTIONS(5446), + [anon_sym_SLASH] = ACTIONS(5446), + [anon_sym_PERCENT] = ACTIONS(5446), + [anon_sym_PIPE_PIPE] = ACTIONS(5448), + [anon_sym_AMP_AMP] = ACTIONS(5448), + [anon_sym_PIPE] = ACTIONS(5446), + [anon_sym_CARET] = ACTIONS(5446), + [anon_sym_AMP] = ACTIONS(5446), + [anon_sym_EQ_EQ] = ACTIONS(5448), + [anon_sym_BANG_EQ] = ACTIONS(5448), + [anon_sym_GT] = ACTIONS(5446), + [anon_sym_GT_EQ] = ACTIONS(5448), + [anon_sym_LT_EQ] = ACTIONS(5446), + [anon_sym_LT] = ACTIONS(5446), + [anon_sym_LT_LT] = ACTIONS(5446), + [anon_sym_GT_GT] = ACTIONS(5446), + [anon_sym_SEMI] = ACTIONS(5448), + [anon_sym___attribute__] = ACTIONS(6532), + [anon_sym___attribute] = ACTIONS(6532), + [anon_sym_LBRACE] = ACTIONS(5448), + [anon_sym_RBRACE] = ACTIONS(5448), + [anon_sym_LBRACK] = ACTIONS(5448), + [anon_sym_RBRACK] = ACTIONS(5448), + [anon_sym_EQ] = ACTIONS(5446), + [anon_sym_COLON] = ACTIONS(5448), + [anon_sym_QMARK] = ACTIONS(5448), + [anon_sym_STAR_EQ] = ACTIONS(5448), + [anon_sym_SLASH_EQ] = ACTIONS(5448), + [anon_sym_PERCENT_EQ] = ACTIONS(5448), + [anon_sym_PLUS_EQ] = ACTIONS(5448), + [anon_sym_DASH_EQ] = ACTIONS(5448), + [anon_sym_LT_LT_EQ] = ACTIONS(5448), + [anon_sym_GT_GT_EQ] = ACTIONS(5448), + [anon_sym_AMP_EQ] = ACTIONS(5448), + [anon_sym_CARET_EQ] = ACTIONS(5448), + [anon_sym_PIPE_EQ] = ACTIONS(5448), + [anon_sym_and_eq] = ACTIONS(5446), + [anon_sym_or_eq] = ACTIONS(5446), + [anon_sym_xor_eq] = ACTIONS(5446), + [anon_sym_LT_EQ_GT] = ACTIONS(5448), + [anon_sym_or] = ACTIONS(5446), + [anon_sym_and] = ACTIONS(5446), + [anon_sym_bitor] = ACTIONS(5446), + [anon_sym_xor] = ACTIONS(5446), + [anon_sym_bitand] = ACTIONS(5446), + [anon_sym_not_eq] = ACTIONS(5446), + [anon_sym_DASH_DASH] = ACTIONS(5448), + [anon_sym_PLUS_PLUS] = ACTIONS(5448), + [anon_sym_DOT] = ACTIONS(5446), + [anon_sym_DOT_STAR] = ACTIONS(5448), + [anon_sym_DASH_GT] = ACTIONS(5448), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5446), + [anon_sym_decltype] = ACTIONS(5446), + }, + [STATE(2626)] = { + [sym_ms_based_modifier] = STATE(8621), + [sym_ms_unaligned_ptr_modifier] = STATE(4347), + [sym_ms_pointer_modifier] = STATE(4194), + [sym__declarator] = STATE(6870), + [sym__abstract_declarator] = STATE(6949), + [sym_parenthesized_declarator] = STATE(6300), + [sym_abstract_parenthesized_declarator] = STATE(6365), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_abstract_pointer_declarator] = STATE(6365), + [sym_function_declarator] = STATE(6300), + [sym_abstract_function_declarator] = STATE(6365), + [sym_array_declarator] = STATE(6300), + [sym_abstract_array_declarator] = STATE(6365), + [sym_type_qualifier] = STATE(3124), + [sym_alignas_qualifier] = STATE(4606), + [sym_parameter_list] = STATE(3525), + [sym_decltype] = STATE(8447), + [sym_reference_declarator] = STATE(6300), + [sym_abstract_reference_declarator] = STATE(6365), + [sym_structured_binding_declarator] = STATE(6300), + [sym__function_declarator_seq] = STATE(6368), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6154), + [sym_qualified_identifier] = STATE(6300), + [sym_operator_name] = STATE(6300), + [aux_sym__type_definition_type_repeat1] = STATE(3124), + [aux_sym_pointer_declarator_repeat1] = STATE(4194), + [sym_identifier] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(6629), + [anon_sym_LPAREN2] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(6757), + [anon_sym_AMP_AMP] = ACTIONS(6759), + [anon_sym_AMP] = ACTIONS(6761), + [anon_sym___extension__] = ACTIONS(4029), + [anon_sym___attribute__] = ACTIONS(6631), + [anon_sym___attribute] = ACTIONS(6631), + [anon_sym_COLON_COLON] = ACTIONS(6763), + [anon_sym___based] = ACTIONS(51), + [sym_ms_restrict_modifier] = ACTIONS(4025), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(4025), + [sym_ms_signed_ptr_modifier] = ACTIONS(4025), + [anon_sym__unaligned] = ACTIONS(4027), + [anon_sym___unaligned] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(6624), + [anon_sym_const] = ACTIONS(4029), + [anon_sym_constexpr] = ACTIONS(4029), + [anon_sym_volatile] = ACTIONS(4029), + [anon_sym_restrict] = ACTIONS(4029), + [anon_sym___restrict__] = ACTIONS(4029), + [anon_sym__Atomic] = ACTIONS(4029), + [anon_sym__Noreturn] = ACTIONS(4029), + [anon_sym_noreturn] = ACTIONS(4029), + [anon_sym__Nonnull] = ACTIONS(4029), + [anon_sym_mutable] = ACTIONS(4029), + [anon_sym_constinit] = ACTIONS(4029), + [anon_sym_consteval] = ACTIONS(4029), + [anon_sym_alignas] = ACTIONS(4031), + [anon_sym__Alignas] = ACTIONS(4031), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(3197), + }, + [STATE(2627)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(4020), + [sym_raw_string_literal] = STATE(3007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_COLON] = ACTIONS(3133), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3125), + [anon_sym_or_eq] = ACTIONS(3125), + [anon_sym_xor_eq] = ACTIONS(3125), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [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), + }, + [STATE(2628)] = { + [sym_type_qualifier] = STATE(2565), + [sym_alignas_qualifier] = STATE(2677), + [aux_sym__type_definition_type_repeat1] = STATE(2565), + [aux_sym_sized_type_specifier_repeat1] = STATE(2753), + [sym_identifier] = ACTIONS(6810), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_LPAREN2] = ACTIONS(4674), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_PLUS] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4674), + [anon_sym_SLASH] = ACTIONS(4676), + [anon_sym_PERCENT] = ACTIONS(4674), + [anon_sym_PIPE_PIPE] = ACTIONS(4674), + [anon_sym_AMP_AMP] = ACTIONS(4674), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4674), + [anon_sym_AMP] = ACTIONS(4676), + [anon_sym_EQ_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4674), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_LT_LT] = ACTIONS(4674), + [anon_sym_GT_GT] = ACTIONS(4676), + [anon_sym___extension__] = ACTIONS(6802), + [anon_sym___attribute__] = ACTIONS(4676), + [anon_sym___attribute] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_signed] = ACTIONS(6812), + [anon_sym_unsigned] = ACTIONS(6812), + [anon_sym_long] = ACTIONS(6812), + [anon_sym_short] = ACTIONS(6812), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_const] = ACTIONS(6802), + [anon_sym_constexpr] = ACTIONS(6802), + [anon_sym_volatile] = ACTIONS(6802), + [anon_sym_restrict] = ACTIONS(6802), + [anon_sym___restrict__] = ACTIONS(6802), + [anon_sym__Atomic] = ACTIONS(6802), + [anon_sym__Noreturn] = ACTIONS(6802), + [anon_sym_noreturn] = ACTIONS(6802), + [anon_sym__Nonnull] = ACTIONS(6802), + [anon_sym_mutable] = ACTIONS(6802), + [anon_sym_constinit] = ACTIONS(6802), + [anon_sym_consteval] = ACTIONS(6802), + [anon_sym_alignas] = ACTIONS(6806), + [anon_sym__Alignas] = ACTIONS(6806), + [sym_primitive_type] = ACTIONS(6814), + [anon_sym_QMARK] = ACTIONS(4674), + [anon_sym_LT_EQ_GT] = ACTIONS(4674), + [anon_sym_or] = ACTIONS(4676), + [anon_sym_and] = ACTIONS(4676), + [anon_sym_bitor] = ACTIONS(4676), + [anon_sym_xor] = ACTIONS(4676), + [anon_sym_bitand] = ACTIONS(4676), + [anon_sym_not_eq] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4674), + [anon_sym_PLUS_PLUS] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_DOT_STAR] = ACTIONS(4674), + [anon_sym_DASH_GT] = ACTIONS(4674), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4676), + [anon_sym_decltype] = ACTIONS(4676), + [anon_sym_GT2] = ACTIONS(4674), + }, + [STATE(2629)] = { + [sym_attribute_specifier] = STATE(2666), + [sym_identifier] = ACTIONS(5462), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5464), + [anon_sym_COMMA] = ACTIONS(5464), + [anon_sym_RPAREN] = ACTIONS(5464), + [aux_sym_preproc_if_token2] = ACTIONS(5464), + [aux_sym_preproc_else_token1] = ACTIONS(5464), + [aux_sym_preproc_elif_token1] = ACTIONS(5462), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5464), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5464), + [anon_sym_LPAREN2] = ACTIONS(5464), + [anon_sym_DASH] = ACTIONS(5462), + [anon_sym_PLUS] = ACTIONS(5462), + [anon_sym_STAR] = ACTIONS(5462), + [anon_sym_SLASH] = ACTIONS(5462), + [anon_sym_PERCENT] = ACTIONS(5462), + [anon_sym_PIPE_PIPE] = ACTIONS(5464), + [anon_sym_AMP_AMP] = ACTIONS(5464), + [anon_sym_PIPE] = ACTIONS(5462), + [anon_sym_CARET] = ACTIONS(5462), + [anon_sym_AMP] = ACTIONS(5462), + [anon_sym_EQ_EQ] = ACTIONS(5464), + [anon_sym_BANG_EQ] = ACTIONS(5464), + [anon_sym_GT] = ACTIONS(5462), + [anon_sym_GT_EQ] = ACTIONS(5464), + [anon_sym_LT_EQ] = ACTIONS(5462), + [anon_sym_LT] = ACTIONS(5462), + [anon_sym_LT_LT] = ACTIONS(5462), + [anon_sym_GT_GT] = ACTIONS(5462), + [anon_sym_SEMI] = ACTIONS(5464), + [anon_sym___attribute__] = ACTIONS(6532), + [anon_sym___attribute] = ACTIONS(6532), + [anon_sym_LBRACE] = ACTIONS(5464), + [anon_sym_RBRACE] = ACTIONS(5464), + [anon_sym_LBRACK] = ACTIONS(5464), + [anon_sym_RBRACK] = ACTIONS(5464), + [anon_sym_EQ] = ACTIONS(5462), + [anon_sym_COLON] = ACTIONS(5464), + [anon_sym_QMARK] = ACTIONS(5464), + [anon_sym_STAR_EQ] = ACTIONS(5464), + [anon_sym_SLASH_EQ] = ACTIONS(5464), + [anon_sym_PERCENT_EQ] = ACTIONS(5464), + [anon_sym_PLUS_EQ] = ACTIONS(5464), + [anon_sym_DASH_EQ] = ACTIONS(5464), + [anon_sym_LT_LT_EQ] = ACTIONS(5464), + [anon_sym_GT_GT_EQ] = ACTIONS(5464), + [anon_sym_AMP_EQ] = ACTIONS(5464), + [anon_sym_CARET_EQ] = ACTIONS(5464), + [anon_sym_PIPE_EQ] = ACTIONS(5464), + [anon_sym_and_eq] = ACTIONS(5462), + [anon_sym_or_eq] = ACTIONS(5462), + [anon_sym_xor_eq] = ACTIONS(5462), + [anon_sym_LT_EQ_GT] = ACTIONS(5464), + [anon_sym_or] = ACTIONS(5462), + [anon_sym_and] = ACTIONS(5462), + [anon_sym_bitor] = ACTIONS(5462), + [anon_sym_xor] = ACTIONS(5462), + [anon_sym_bitand] = ACTIONS(5462), + [anon_sym_not_eq] = ACTIONS(5462), + [anon_sym_DASH_DASH] = ACTIONS(5464), + [anon_sym_PLUS_PLUS] = ACTIONS(5464), + [anon_sym_DOT] = ACTIONS(5462), + [anon_sym_DOT_STAR] = ACTIONS(5464), + [anon_sym_DASH_GT] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5462), + [anon_sym_decltype] = ACTIONS(5462), + }, + [STATE(2630)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(4020), + [sym_raw_string_literal] = STATE(3007), + [aux_sym__call_macro_with_decl_first_arg_repeat1] = STATE(7921), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(6785), + [anon_sym_RPAREN] = ACTIONS(6816), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3125), + [anon_sym_or_eq] = ACTIONS(3125), + [anon_sym_xor_eq] = ACTIONS(3125), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [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), + }, + [STATE(2631)] = { + [sym_attribute_specifier] = STATE(2718), + [sym_identifier] = ACTIONS(5480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5482), + [anon_sym_COMMA] = ACTIONS(5482), + [anon_sym_RPAREN] = ACTIONS(5482), + [aux_sym_preproc_if_token2] = ACTIONS(5482), + [aux_sym_preproc_else_token1] = ACTIONS(5482), + [aux_sym_preproc_elif_token1] = ACTIONS(5480), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5482), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5482), + [anon_sym_LPAREN2] = ACTIONS(5482), + [anon_sym_DASH] = ACTIONS(5480), + [anon_sym_PLUS] = ACTIONS(5480), + [anon_sym_STAR] = ACTIONS(5480), + [anon_sym_SLASH] = ACTIONS(5480), + [anon_sym_PERCENT] = ACTIONS(5480), + [anon_sym_PIPE_PIPE] = ACTIONS(5482), + [anon_sym_AMP_AMP] = ACTIONS(5482), + [anon_sym_PIPE] = ACTIONS(5480), + [anon_sym_CARET] = ACTIONS(5480), + [anon_sym_AMP] = ACTIONS(5480), + [anon_sym_EQ_EQ] = ACTIONS(5482), + [anon_sym_BANG_EQ] = ACTIONS(5482), + [anon_sym_GT] = ACTIONS(5480), + [anon_sym_GT_EQ] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5480), + [anon_sym_LT] = ACTIONS(5480), + [anon_sym_LT_LT] = ACTIONS(5480), + [anon_sym_GT_GT] = ACTIONS(5480), + [anon_sym_SEMI] = ACTIONS(5482), + [anon_sym___attribute__] = ACTIONS(6532), + [anon_sym___attribute] = ACTIONS(6532), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(5482), + [anon_sym_LBRACK] = ACTIONS(5482), + [anon_sym_RBRACK] = ACTIONS(5482), + [anon_sym_EQ] = ACTIONS(5480), + [anon_sym_COLON] = ACTIONS(5482), + [anon_sym_QMARK] = ACTIONS(5482), + [anon_sym_STAR_EQ] = ACTIONS(5482), + [anon_sym_SLASH_EQ] = ACTIONS(5482), + [anon_sym_PERCENT_EQ] = ACTIONS(5482), + [anon_sym_PLUS_EQ] = ACTIONS(5482), + [anon_sym_DASH_EQ] = ACTIONS(5482), + [anon_sym_LT_LT_EQ] = ACTIONS(5482), + [anon_sym_GT_GT_EQ] = ACTIONS(5482), + [anon_sym_AMP_EQ] = ACTIONS(5482), + [anon_sym_CARET_EQ] = ACTIONS(5482), + [anon_sym_PIPE_EQ] = ACTIONS(5482), + [anon_sym_and_eq] = ACTIONS(5480), + [anon_sym_or_eq] = ACTIONS(5480), + [anon_sym_xor_eq] = ACTIONS(5480), + [anon_sym_LT_EQ_GT] = ACTIONS(5482), + [anon_sym_or] = ACTIONS(5480), + [anon_sym_and] = ACTIONS(5480), + [anon_sym_bitor] = ACTIONS(5480), + [anon_sym_xor] = ACTIONS(5480), + [anon_sym_bitand] = ACTIONS(5480), + [anon_sym_not_eq] = ACTIONS(5480), + [anon_sym_DASH_DASH] = ACTIONS(5482), + [anon_sym_PLUS_PLUS] = ACTIONS(5482), + [anon_sym_DOT] = ACTIONS(5480), + [anon_sym_DOT_STAR] = ACTIONS(5482), + [anon_sym_DASH_GT] = ACTIONS(5482), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5480), + [anon_sym_decltype] = ACTIONS(5480), + }, + [STATE(2632)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2632), + [sym_identifier] = ACTIONS(4520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4522), + [anon_sym_COMMA] = ACTIONS(4522), + [anon_sym_LPAREN2] = ACTIONS(4522), + [anon_sym_DASH] = ACTIONS(4520), + [anon_sym_PLUS] = ACTIONS(4520), + [anon_sym_STAR] = ACTIONS(4522), + [anon_sym_SLASH] = ACTIONS(4520), + [anon_sym_PERCENT] = ACTIONS(4522), + [anon_sym_PIPE_PIPE] = ACTIONS(4522), + [anon_sym_AMP_AMP] = ACTIONS(4522), + [anon_sym_PIPE] = ACTIONS(4520), + [anon_sym_CARET] = ACTIONS(4522), + [anon_sym_AMP] = ACTIONS(4520), + [anon_sym_EQ_EQ] = ACTIONS(4522), + [anon_sym_BANG_EQ] = ACTIONS(4522), + [anon_sym_GT] = ACTIONS(4520), + [anon_sym_GT_EQ] = ACTIONS(4520), + [anon_sym_LT_EQ] = ACTIONS(4520), + [anon_sym_LT] = ACTIONS(4520), + [anon_sym_LT_LT] = ACTIONS(4522), + [anon_sym_GT_GT] = ACTIONS(4520), + [anon_sym___extension__] = ACTIONS(4520), + [anon_sym___attribute__] = ACTIONS(4520), + [anon_sym___attribute] = ACTIONS(4520), + [anon_sym_LBRACE] = ACTIONS(4522), + [anon_sym_signed] = ACTIONS(6818), + [anon_sym_unsigned] = ACTIONS(6818), + [anon_sym_long] = ACTIONS(6818), + [anon_sym_short] = ACTIONS(6818), + [anon_sym_LBRACK] = ACTIONS(4522), + [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__Nonnull] = ACTIONS(4520), + [anon_sym_mutable] = ACTIONS(4520), + [anon_sym_constinit] = ACTIONS(4520), + [anon_sym_consteval] = ACTIONS(4520), + [anon_sym_alignas] = ACTIONS(4520), + [anon_sym__Alignas] = ACTIONS(4520), + [sym_primitive_type] = ACTIONS(4520), + [anon_sym_QMARK] = ACTIONS(4522), + [anon_sym_LT_EQ_GT] = ACTIONS(4522), + [anon_sym_or] = ACTIONS(4520), + [anon_sym_and] = ACTIONS(4520), + [anon_sym_bitor] = ACTIONS(4520), + [anon_sym_xor] = ACTIONS(4520), + [anon_sym_bitand] = ACTIONS(4520), + [anon_sym_not_eq] = ACTIONS(4520), + [anon_sym_DASH_DASH] = ACTIONS(4522), + [anon_sym_PLUS_PLUS] = ACTIONS(4522), + [anon_sym_DOT] = ACTIONS(4520), + [anon_sym_DOT_STAR] = ACTIONS(4522), + [anon_sym_DASH_GT] = ACTIONS(4522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4520), + [anon_sym_decltype] = ACTIONS(4520), + [anon_sym_final] = ACTIONS(4520), + [anon_sym_override] = ACTIONS(4520), + [anon_sym_GT2] = ACTIONS(4522), + [anon_sym_requires] = ACTIONS(4520), + }, + [STATE(2633)] = { + [sym_identifier] = ACTIONS(4754), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4756), + [anon_sym_COMMA] = ACTIONS(4756), + [anon_sym_RPAREN] = ACTIONS(4756), + [aux_sym_preproc_if_token2] = ACTIONS(4756), + [aux_sym_preproc_else_token1] = ACTIONS(4756), + [aux_sym_preproc_elif_token1] = ACTIONS(4754), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4756), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4756), + [anon_sym_LPAREN2] = ACTIONS(4756), + [anon_sym_DASH] = ACTIONS(4754), + [anon_sym_PLUS] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4754), + [anon_sym_SLASH] = ACTIONS(4754), + [anon_sym_PERCENT] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_AMP_AMP] = ACTIONS(4756), + [anon_sym_PIPE] = ACTIONS(4754), + [anon_sym_CARET] = ACTIONS(4754), + [anon_sym_AMP] = ACTIONS(4754), + [anon_sym_EQ_EQ] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4756), + [anon_sym_GT] = ACTIONS(4754), + [anon_sym_GT_EQ] = ACTIONS(4756), + [anon_sym_LT_EQ] = ACTIONS(4754), + [anon_sym_LT] = ACTIONS(4754), + [anon_sym_LT_LT] = ACTIONS(4754), + [anon_sym_GT_GT] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym___attribute__] = ACTIONS(4754), + [anon_sym___attribute] = ACTIONS(4754), + [anon_sym_COLON_COLON] = ACTIONS(4756), + [anon_sym_LBRACE] = ACTIONS(4756), + [anon_sym_RBRACE] = ACTIONS(4756), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_RBRACK] = ACTIONS(4756), + [anon_sym_EQ] = ACTIONS(4754), + [anon_sym_COLON] = ACTIONS(4754), + [anon_sym_QMARK] = ACTIONS(4756), + [anon_sym_STAR_EQ] = ACTIONS(4756), + [anon_sym_SLASH_EQ] = ACTIONS(4756), + [anon_sym_PERCENT_EQ] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4756), + [anon_sym_DASH_EQ] = ACTIONS(4756), + [anon_sym_LT_LT_EQ] = ACTIONS(4756), + [anon_sym_GT_GT_EQ] = ACTIONS(4756), + [anon_sym_AMP_EQ] = ACTIONS(4756), + [anon_sym_CARET_EQ] = ACTIONS(4756), + [anon_sym_PIPE_EQ] = ACTIONS(4756), + [anon_sym_and_eq] = ACTIONS(4754), + [anon_sym_or_eq] = ACTIONS(4754), + [anon_sym_xor_eq] = ACTIONS(4754), + [anon_sym_LT_EQ_GT] = ACTIONS(4756), + [anon_sym_or] = ACTIONS(4754), + [anon_sym_and] = ACTIONS(4754), + [anon_sym_bitor] = ACTIONS(4754), + [anon_sym_xor] = ACTIONS(4754), + [anon_sym_bitand] = ACTIONS(4754), + [anon_sym_not_eq] = ACTIONS(4754), + [anon_sym_DASH_DASH] = ACTIONS(4756), + [anon_sym_PLUS_PLUS] = ACTIONS(4756), + [anon_sym_DOT] = ACTIONS(4754), + [anon_sym_DOT_STAR] = ACTIONS(4756), + [anon_sym_DASH_GT] = ACTIONS(4756), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4754), + [anon_sym_decltype] = ACTIONS(4754), + }, + [STATE(2634)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(4020), + [sym_raw_string_literal] = STATE(3007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_COLON] = ACTIONS(3097), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [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), + }, + [STATE(2635)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2696), + [sym_identifier] = ACTIONS(5152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5154), + [anon_sym_COMMA] = ACTIONS(5154), + [aux_sym_preproc_if_token2] = ACTIONS(5154), + [aux_sym_preproc_else_token1] = ACTIONS(5154), + [aux_sym_preproc_elif_token1] = ACTIONS(5152), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5154), + [anon_sym_LPAREN2] = ACTIONS(5154), + [anon_sym_DASH] = ACTIONS(5152), + [anon_sym_PLUS] = ACTIONS(5152), + [anon_sym_STAR] = ACTIONS(5152), + [anon_sym_SLASH] = ACTIONS(5152), + [anon_sym_PERCENT] = ACTIONS(5152), + [anon_sym_PIPE_PIPE] = ACTIONS(5154), + [anon_sym_AMP_AMP] = ACTIONS(5154), + [anon_sym_PIPE] = ACTIONS(5152), + [anon_sym_CARET] = ACTIONS(5152), + [anon_sym_AMP] = ACTIONS(5152), + [anon_sym_EQ_EQ] = ACTIONS(5154), + [anon_sym_BANG_EQ] = ACTIONS(5154), + [anon_sym_GT] = ACTIONS(5152), + [anon_sym_GT_EQ] = ACTIONS(5154), + [anon_sym_LT_EQ] = ACTIONS(5152), + [anon_sym_LT] = ACTIONS(5152), + [anon_sym_LT_LT] = ACTIONS(5152), + [anon_sym_GT_GT] = ACTIONS(5152), + [anon_sym___attribute__] = ACTIONS(5152), + [anon_sym___attribute] = ACTIONS(5152), + [anon_sym_LBRACE] = ACTIONS(5154), + [anon_sym_signed] = ACTIONS(6825), + [anon_sym_unsigned] = ACTIONS(6825), + [anon_sym_long] = ACTIONS(6825), + [anon_sym_short] = ACTIONS(6825), + [anon_sym_LBRACK] = ACTIONS(5154), + [anon_sym_EQ] = ACTIONS(5152), + [anon_sym_QMARK] = ACTIONS(5154), + [anon_sym_STAR_EQ] = ACTIONS(5154), + [anon_sym_SLASH_EQ] = ACTIONS(5154), + [anon_sym_PERCENT_EQ] = ACTIONS(5154), + [anon_sym_PLUS_EQ] = ACTIONS(5154), + [anon_sym_DASH_EQ] = ACTIONS(5154), + [anon_sym_LT_LT_EQ] = ACTIONS(5154), + [anon_sym_GT_GT_EQ] = ACTIONS(5154), + [anon_sym_AMP_EQ] = ACTIONS(5154), + [anon_sym_CARET_EQ] = ACTIONS(5154), + [anon_sym_PIPE_EQ] = ACTIONS(5154), + [anon_sym_and_eq] = ACTIONS(5152), + [anon_sym_or_eq] = ACTIONS(5152), + [anon_sym_xor_eq] = ACTIONS(5152), + [anon_sym_LT_EQ_GT] = ACTIONS(5154), + [anon_sym_or] = ACTIONS(5152), + [anon_sym_and] = ACTIONS(5152), + [anon_sym_bitor] = ACTIONS(5152), + [anon_sym_xor] = ACTIONS(5152), + [anon_sym_bitand] = ACTIONS(5152), + [anon_sym_not_eq] = ACTIONS(5152), + [anon_sym_DASH_DASH] = ACTIONS(5154), + [anon_sym_PLUS_PLUS] = ACTIONS(5154), + [anon_sym_DOT] = ACTIONS(5152), + [anon_sym_DOT_STAR] = ACTIONS(5154), + [anon_sym_DASH_GT] = ACTIONS(5154), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5152), + [anon_sym_decltype] = ACTIONS(5152), + }, + [STATE(2636)] = { + [sym_identifier] = ACTIONS(6827), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6829), + [anon_sym_COMMA] = ACTIONS(6829), + [anon_sym_RPAREN] = ACTIONS(6829), + [aux_sym_preproc_if_token2] = ACTIONS(6829), + [aux_sym_preproc_else_token1] = ACTIONS(6829), + [aux_sym_preproc_elif_token1] = ACTIONS(6827), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6829), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6829), + [anon_sym_LPAREN2] = ACTIONS(6829), + [anon_sym_DASH] = ACTIONS(6827), + [anon_sym_PLUS] = ACTIONS(6827), + [anon_sym_STAR] = ACTIONS(6827), + [anon_sym_SLASH] = ACTIONS(6827), + [anon_sym_PERCENT] = ACTIONS(6827), + [anon_sym_PIPE_PIPE] = ACTIONS(6829), + [anon_sym_AMP_AMP] = ACTIONS(6829), + [anon_sym_PIPE] = ACTIONS(6827), + [anon_sym_CARET] = ACTIONS(6827), + [anon_sym_AMP] = ACTIONS(6827), + [anon_sym_EQ_EQ] = ACTIONS(6829), + [anon_sym_BANG_EQ] = ACTIONS(6829), + [anon_sym_GT] = ACTIONS(6827), + [anon_sym_GT_EQ] = ACTIONS(6829), + [anon_sym_LT_EQ] = ACTIONS(6827), + [anon_sym_LT] = ACTIONS(6827), + [anon_sym_LT_LT] = ACTIONS(6827), + [anon_sym_GT_GT] = ACTIONS(6827), + [anon_sym_SEMI] = ACTIONS(6829), + [anon_sym___attribute__] = ACTIONS(6827), + [anon_sym___attribute] = ACTIONS(6827), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6829), + [anon_sym_LBRACE] = ACTIONS(6829), + [anon_sym_RBRACE] = ACTIONS(6829), + [anon_sym_LBRACK] = ACTIONS(6827), + [anon_sym_RBRACK] = ACTIONS(6829), + [anon_sym_EQ] = ACTIONS(6827), + [anon_sym_COLON] = ACTIONS(6829), + [anon_sym_QMARK] = ACTIONS(6829), + [anon_sym_STAR_EQ] = ACTIONS(6829), + [anon_sym_SLASH_EQ] = ACTIONS(6829), + [anon_sym_PERCENT_EQ] = ACTIONS(6829), + [anon_sym_PLUS_EQ] = ACTIONS(6829), + [anon_sym_DASH_EQ] = ACTIONS(6829), + [anon_sym_LT_LT_EQ] = ACTIONS(6829), + [anon_sym_GT_GT_EQ] = ACTIONS(6829), + [anon_sym_AMP_EQ] = ACTIONS(6829), + [anon_sym_CARET_EQ] = ACTIONS(6829), + [anon_sym_PIPE_EQ] = ACTIONS(6829), + [anon_sym_and_eq] = ACTIONS(6827), + [anon_sym_or_eq] = ACTIONS(6827), + [anon_sym_xor_eq] = ACTIONS(6827), + [anon_sym_LT_EQ_GT] = ACTIONS(6829), + [anon_sym_or] = ACTIONS(6827), + [anon_sym_and] = ACTIONS(6827), + [anon_sym_bitor] = ACTIONS(6827), + [anon_sym_xor] = ACTIONS(6827), + [anon_sym_bitand] = ACTIONS(6827), + [anon_sym_not_eq] = ACTIONS(6827), + [anon_sym_DASH_DASH] = ACTIONS(6829), + [anon_sym_PLUS_PLUS] = ACTIONS(6829), + [anon_sym_DOT] = ACTIONS(6827), + [anon_sym_DOT_STAR] = ACTIONS(6829), + [anon_sym_DASH_GT] = ACTIONS(6829), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6827), + }, + [STATE(2637)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2696), + [sym_identifier] = ACTIONS(5160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5162), + [anon_sym_COMMA] = ACTIONS(5162), + [aux_sym_preproc_if_token2] = ACTIONS(5162), + [aux_sym_preproc_else_token1] = ACTIONS(5162), + [aux_sym_preproc_elif_token1] = ACTIONS(5160), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5162), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5162), + [anon_sym_LPAREN2] = ACTIONS(5162), + [anon_sym_DASH] = ACTIONS(5160), + [anon_sym_PLUS] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5160), + [anon_sym_SLASH] = ACTIONS(5160), + [anon_sym_PERCENT] = ACTIONS(5160), + [anon_sym_PIPE_PIPE] = ACTIONS(5162), + [anon_sym_AMP_AMP] = ACTIONS(5162), + [anon_sym_PIPE] = ACTIONS(5160), + [anon_sym_CARET] = ACTIONS(5160), + [anon_sym_AMP] = ACTIONS(5160), + [anon_sym_EQ_EQ] = ACTIONS(5162), + [anon_sym_BANG_EQ] = ACTIONS(5162), + [anon_sym_GT] = ACTIONS(5160), + [anon_sym_GT_EQ] = ACTIONS(5162), + [anon_sym_LT_EQ] = ACTIONS(5160), + [anon_sym_LT] = ACTIONS(5160), + [anon_sym_LT_LT] = ACTIONS(5160), + [anon_sym_GT_GT] = ACTIONS(5160), + [anon_sym___attribute__] = ACTIONS(5160), + [anon_sym___attribute] = ACTIONS(5160), + [anon_sym_LBRACE] = ACTIONS(5162), + [anon_sym_signed] = ACTIONS(6825), + [anon_sym_unsigned] = ACTIONS(6825), + [anon_sym_long] = ACTIONS(6825), + [anon_sym_short] = ACTIONS(6825), + [anon_sym_LBRACK] = ACTIONS(5162), + [anon_sym_EQ] = ACTIONS(5160), + [anon_sym_QMARK] = ACTIONS(5162), + [anon_sym_STAR_EQ] = ACTIONS(5162), + [anon_sym_SLASH_EQ] = ACTIONS(5162), + [anon_sym_PERCENT_EQ] = ACTIONS(5162), + [anon_sym_PLUS_EQ] = ACTIONS(5162), + [anon_sym_DASH_EQ] = ACTIONS(5162), + [anon_sym_LT_LT_EQ] = ACTIONS(5162), + [anon_sym_GT_GT_EQ] = ACTIONS(5162), + [anon_sym_AMP_EQ] = ACTIONS(5162), + [anon_sym_CARET_EQ] = ACTIONS(5162), + [anon_sym_PIPE_EQ] = ACTIONS(5162), + [anon_sym_and_eq] = ACTIONS(5160), + [anon_sym_or_eq] = ACTIONS(5160), + [anon_sym_xor_eq] = ACTIONS(5160), + [anon_sym_LT_EQ_GT] = ACTIONS(5162), + [anon_sym_or] = ACTIONS(5160), + [anon_sym_and] = ACTIONS(5160), + [anon_sym_bitor] = ACTIONS(5160), + [anon_sym_xor] = ACTIONS(5160), + [anon_sym_bitand] = ACTIONS(5160), + [anon_sym_not_eq] = ACTIONS(5160), + [anon_sym_DASH_DASH] = ACTIONS(5162), + [anon_sym_PLUS_PLUS] = ACTIONS(5162), + [anon_sym_DOT] = ACTIONS(5160), + [anon_sym_DOT_STAR] = ACTIONS(5162), + [anon_sym_DASH_GT] = ACTIONS(5162), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5160), + [anon_sym_decltype] = ACTIONS(5160), + }, + [STATE(2638)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2679), + [sym_identifier] = ACTIONS(5194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5196), + [anon_sym_COMMA] = ACTIONS(5196), + [aux_sym_preproc_if_token2] = ACTIONS(5196), + [aux_sym_preproc_else_token1] = ACTIONS(5196), + [aux_sym_preproc_elif_token1] = ACTIONS(5194), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5196), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5196), + [anon_sym_LPAREN2] = ACTIONS(5196), + [anon_sym_DASH] = ACTIONS(5194), + [anon_sym_PLUS] = ACTIONS(5194), + [anon_sym_STAR] = ACTIONS(5194), + [anon_sym_SLASH] = ACTIONS(5194), + [anon_sym_PERCENT] = ACTIONS(5194), + [anon_sym_PIPE_PIPE] = ACTIONS(5196), + [anon_sym_AMP_AMP] = ACTIONS(5196), + [anon_sym_PIPE] = ACTIONS(5194), + [anon_sym_CARET] = ACTIONS(5194), + [anon_sym_AMP] = ACTIONS(5194), + [anon_sym_EQ_EQ] = ACTIONS(5196), + [anon_sym_BANG_EQ] = ACTIONS(5196), + [anon_sym_GT] = ACTIONS(5194), + [anon_sym_GT_EQ] = ACTIONS(5196), + [anon_sym_LT_EQ] = ACTIONS(5194), + [anon_sym_LT] = ACTIONS(5194), + [anon_sym_LT_LT] = ACTIONS(5194), + [anon_sym_GT_GT] = ACTIONS(5194), + [anon_sym___attribute__] = ACTIONS(5194), + [anon_sym___attribute] = ACTIONS(5194), + [anon_sym_LBRACE] = ACTIONS(5196), + [anon_sym_signed] = ACTIONS(6831), + [anon_sym_unsigned] = ACTIONS(6831), + [anon_sym_long] = ACTIONS(6831), + [anon_sym_short] = ACTIONS(6831), + [anon_sym_LBRACK] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(5194), + [anon_sym_QMARK] = ACTIONS(5196), + [anon_sym_STAR_EQ] = ACTIONS(5196), + [anon_sym_SLASH_EQ] = ACTIONS(5196), + [anon_sym_PERCENT_EQ] = ACTIONS(5196), + [anon_sym_PLUS_EQ] = ACTIONS(5196), + [anon_sym_DASH_EQ] = ACTIONS(5196), + [anon_sym_LT_LT_EQ] = ACTIONS(5196), + [anon_sym_GT_GT_EQ] = ACTIONS(5196), + [anon_sym_AMP_EQ] = ACTIONS(5196), + [anon_sym_CARET_EQ] = ACTIONS(5196), + [anon_sym_PIPE_EQ] = ACTIONS(5196), + [anon_sym_and_eq] = ACTIONS(5194), + [anon_sym_or_eq] = ACTIONS(5194), + [anon_sym_xor_eq] = ACTIONS(5194), + [anon_sym_LT_EQ_GT] = ACTIONS(5196), + [anon_sym_or] = ACTIONS(5194), + [anon_sym_and] = ACTIONS(5194), + [anon_sym_bitor] = ACTIONS(5194), + [anon_sym_xor] = ACTIONS(5194), + [anon_sym_bitand] = ACTIONS(5194), + [anon_sym_not_eq] = ACTIONS(5194), + [anon_sym_DASH_DASH] = ACTIONS(5196), + [anon_sym_PLUS_PLUS] = ACTIONS(5196), + [anon_sym_DOT] = ACTIONS(5194), + [anon_sym_DOT_STAR] = ACTIONS(5196), + [anon_sym_DASH_GT] = ACTIONS(5196), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5194), + [anon_sym_decltype] = ACTIONS(5194), + }, + [STATE(2639)] = { + [sym_identifier] = ACTIONS(4926), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4928), + [anon_sym_COMMA] = ACTIONS(4928), + [anon_sym_RPAREN] = ACTIONS(4928), + [aux_sym_preproc_if_token2] = ACTIONS(4928), + [aux_sym_preproc_else_token1] = ACTIONS(4928), + [aux_sym_preproc_elif_token1] = ACTIONS(4926), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4928), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4928), + [anon_sym_LPAREN2] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4926), + [anon_sym_PLUS] = ACTIONS(4926), + [anon_sym_STAR] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4926), + [anon_sym_PERCENT] = ACTIONS(4926), + [anon_sym_PIPE_PIPE] = ACTIONS(4928), + [anon_sym_AMP_AMP] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4926), + [anon_sym_CARET] = ACTIONS(4926), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4926), + [anon_sym_GT_EQ] = ACTIONS(4928), + [anon_sym_LT_EQ] = ACTIONS(4926), + [anon_sym_LT] = ACTIONS(4926), + [anon_sym_LT_LT] = ACTIONS(4926), + [anon_sym_GT_GT] = ACTIONS(4926), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym___attribute__] = ACTIONS(4926), + [anon_sym___attribute] = ACTIONS(4926), + [anon_sym_LBRACE] = ACTIONS(4928), + [anon_sym_RBRACE] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4928), + [anon_sym_RBRACK] = ACTIONS(4928), + [anon_sym_EQ] = ACTIONS(4926), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_QMARK] = ACTIONS(4928), + [anon_sym_STAR_EQ] = ACTIONS(4928), + [anon_sym_SLASH_EQ] = ACTIONS(4928), + [anon_sym_PERCENT_EQ] = ACTIONS(4928), + [anon_sym_PLUS_EQ] = ACTIONS(4928), + [anon_sym_DASH_EQ] = ACTIONS(4928), + [anon_sym_LT_LT_EQ] = ACTIONS(4928), + [anon_sym_GT_GT_EQ] = ACTIONS(4928), + [anon_sym_AMP_EQ] = ACTIONS(4928), + [anon_sym_CARET_EQ] = ACTIONS(4928), + [anon_sym_PIPE_EQ] = ACTIONS(4928), + [anon_sym_and_eq] = ACTIONS(4926), + [anon_sym_or_eq] = ACTIONS(4926), + [anon_sym_xor_eq] = ACTIONS(4926), + [anon_sym_LT_EQ_GT] = ACTIONS(4928), + [anon_sym_or] = ACTIONS(4926), + [anon_sym_and] = ACTIONS(4926), + [anon_sym_bitor] = ACTIONS(4926), + [anon_sym_xor] = ACTIONS(4926), + [anon_sym_bitand] = ACTIONS(4926), + [anon_sym_not_eq] = ACTIONS(4926), + [anon_sym_DASH_DASH] = ACTIONS(4928), + [anon_sym_PLUS_PLUS] = ACTIONS(4928), + [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_DOT_STAR] = ACTIONS(4928), + [anon_sym_DASH_GT] = ACTIONS(4928), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4926), + [anon_sym_decltype] = ACTIONS(4926), + }, + [STATE(2640)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2680), + [sym_identifier] = ACTIONS(5174), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5176), + [anon_sym_COMMA] = ACTIONS(5176), + [aux_sym_preproc_if_token2] = ACTIONS(5176), + [aux_sym_preproc_else_token1] = ACTIONS(5176), + [aux_sym_preproc_elif_token1] = ACTIONS(5174), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5176), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5176), + [anon_sym_LPAREN2] = ACTIONS(5176), + [anon_sym_DASH] = ACTIONS(5174), + [anon_sym_PLUS] = ACTIONS(5174), + [anon_sym_STAR] = ACTIONS(5174), + [anon_sym_SLASH] = ACTIONS(5174), + [anon_sym_PERCENT] = ACTIONS(5174), + [anon_sym_PIPE_PIPE] = ACTIONS(5176), + [anon_sym_AMP_AMP] = ACTIONS(5176), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_CARET] = ACTIONS(5174), + [anon_sym_AMP] = ACTIONS(5174), + [anon_sym_EQ_EQ] = ACTIONS(5176), + [anon_sym_BANG_EQ] = ACTIONS(5176), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_EQ] = ACTIONS(5176), + [anon_sym_LT_EQ] = ACTIONS(5174), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_LT_LT] = ACTIONS(5174), + [anon_sym_GT_GT] = ACTIONS(5174), + [anon_sym___attribute__] = ACTIONS(5174), + [anon_sym___attribute] = ACTIONS(5174), + [anon_sym_LBRACE] = ACTIONS(5176), + [anon_sym_signed] = ACTIONS(6833), + [anon_sym_unsigned] = ACTIONS(6833), + [anon_sym_long] = ACTIONS(6833), + [anon_sym_short] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(5176), + [anon_sym_EQ] = ACTIONS(5174), + [anon_sym_QMARK] = ACTIONS(5176), + [anon_sym_STAR_EQ] = ACTIONS(5176), + [anon_sym_SLASH_EQ] = ACTIONS(5176), + [anon_sym_PERCENT_EQ] = ACTIONS(5176), + [anon_sym_PLUS_EQ] = ACTIONS(5176), + [anon_sym_DASH_EQ] = ACTIONS(5176), + [anon_sym_LT_LT_EQ] = ACTIONS(5176), + [anon_sym_GT_GT_EQ] = ACTIONS(5176), + [anon_sym_AMP_EQ] = ACTIONS(5176), + [anon_sym_CARET_EQ] = ACTIONS(5176), + [anon_sym_PIPE_EQ] = ACTIONS(5176), + [anon_sym_and_eq] = ACTIONS(5174), + [anon_sym_or_eq] = ACTIONS(5174), + [anon_sym_xor_eq] = ACTIONS(5174), + [anon_sym_LT_EQ_GT] = ACTIONS(5176), + [anon_sym_or] = ACTIONS(5174), + [anon_sym_and] = ACTIONS(5174), + [anon_sym_bitor] = ACTIONS(5174), + [anon_sym_xor] = ACTIONS(5174), + [anon_sym_bitand] = ACTIONS(5174), + [anon_sym_not_eq] = ACTIONS(5174), + [anon_sym_DASH_DASH] = ACTIONS(5176), + [anon_sym_PLUS_PLUS] = ACTIONS(5176), + [anon_sym_DOT] = ACTIONS(5174), + [anon_sym_DOT_STAR] = ACTIONS(5176), + [anon_sym_DASH_GT] = ACTIONS(5176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5174), + [anon_sym_decltype] = ACTIONS(5174), + }, + [STATE(2641)] = { + [sym_identifier] = ACTIONS(5026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [aux_sym_preproc_if_token2] = ACTIONS(5028), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_elif_token1] = ACTIONS(5026), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5028), + [anon_sym_LPAREN2] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_PERCENT] = ACTIONS(5026), + [anon_sym_PIPE_PIPE] = ACTIONS(5028), + [anon_sym_AMP_AMP] = ACTIONS(5028), + [anon_sym_PIPE] = ACTIONS(5026), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_EQ_EQ] = ACTIONS(5028), + [anon_sym_BANG_EQ] = ACTIONS(5028), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_GT_EQ] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5026), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_LT_LT] = ACTIONS(5026), + [anon_sym_GT_GT] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym___attribute__] = ACTIONS(5026), + [anon_sym___attribute] = ACTIONS(5026), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_RBRACE] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_RBRACK] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5026), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5028), + [anon_sym_STAR_EQ] = ACTIONS(5028), + [anon_sym_SLASH_EQ] = ACTIONS(5028), + [anon_sym_PERCENT_EQ] = ACTIONS(5028), + [anon_sym_PLUS_EQ] = ACTIONS(5028), + [anon_sym_DASH_EQ] = ACTIONS(5028), + [anon_sym_LT_LT_EQ] = ACTIONS(5028), + [anon_sym_GT_GT_EQ] = ACTIONS(5028), + [anon_sym_AMP_EQ] = ACTIONS(5028), + [anon_sym_CARET_EQ] = ACTIONS(5028), + [anon_sym_PIPE_EQ] = ACTIONS(5028), + [anon_sym_and_eq] = ACTIONS(5026), + [anon_sym_or_eq] = ACTIONS(5026), + [anon_sym_xor_eq] = ACTIONS(5026), + [anon_sym_LT_EQ_GT] = ACTIONS(5028), + [anon_sym_or] = ACTIONS(5026), + [anon_sym_and] = ACTIONS(5026), + [anon_sym_bitor] = ACTIONS(5026), + [anon_sym_xor] = ACTIONS(5026), + [anon_sym_bitand] = ACTIONS(5026), + [anon_sym_not_eq] = ACTIONS(5026), + [anon_sym_DASH_DASH] = ACTIONS(5028), + [anon_sym_PLUS_PLUS] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_DOT_STAR] = ACTIONS(5028), + [anon_sym_DASH_GT] = ACTIONS(5028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5026), + [anon_sym_decltype] = ACTIONS(5026), + }, + [STATE(2642)] = { + [sym_identifier] = ACTIONS(4910), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4912), + [anon_sym_COMMA] = ACTIONS(4912), + [anon_sym_RPAREN] = ACTIONS(4912), + [aux_sym_preproc_if_token2] = ACTIONS(4912), + [aux_sym_preproc_else_token1] = ACTIONS(4912), + [aux_sym_preproc_elif_token1] = ACTIONS(4910), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4912), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4912), + [anon_sym_LPAREN2] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4910), + [anon_sym_PLUS] = ACTIONS(4910), + [anon_sym_STAR] = ACTIONS(4910), + [anon_sym_SLASH] = ACTIONS(4910), + [anon_sym_PERCENT] = ACTIONS(4910), + [anon_sym_PIPE_PIPE] = ACTIONS(4912), + [anon_sym_AMP_AMP] = ACTIONS(4912), + [anon_sym_PIPE] = ACTIONS(4910), + [anon_sym_CARET] = ACTIONS(4910), + [anon_sym_AMP] = ACTIONS(4910), + [anon_sym_EQ_EQ] = ACTIONS(4912), + [anon_sym_BANG_EQ] = ACTIONS(4912), + [anon_sym_GT] = ACTIONS(4910), + [anon_sym_GT_EQ] = ACTIONS(4912), + [anon_sym_LT_EQ] = ACTIONS(4910), + [anon_sym_LT] = ACTIONS(4910), + [anon_sym_LT_LT] = ACTIONS(4910), + [anon_sym_GT_GT] = ACTIONS(4910), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym___attribute__] = ACTIONS(4910), + [anon_sym___attribute] = ACTIONS(4910), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_RBRACE] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4912), + [anon_sym_RBRACK] = ACTIONS(4912), + [anon_sym_EQ] = ACTIONS(4910), + [anon_sym_COLON] = ACTIONS(4912), + [anon_sym_QMARK] = ACTIONS(4912), + [anon_sym_STAR_EQ] = ACTIONS(4912), + [anon_sym_SLASH_EQ] = ACTIONS(4912), + [anon_sym_PERCENT_EQ] = ACTIONS(4912), + [anon_sym_PLUS_EQ] = ACTIONS(4912), + [anon_sym_DASH_EQ] = ACTIONS(4912), + [anon_sym_LT_LT_EQ] = ACTIONS(4912), + [anon_sym_GT_GT_EQ] = ACTIONS(4912), + [anon_sym_AMP_EQ] = ACTIONS(4912), + [anon_sym_CARET_EQ] = ACTIONS(4912), + [anon_sym_PIPE_EQ] = ACTIONS(4912), + [anon_sym_and_eq] = ACTIONS(4910), + [anon_sym_or_eq] = ACTIONS(4910), + [anon_sym_xor_eq] = ACTIONS(4910), + [anon_sym_LT_EQ_GT] = ACTIONS(4912), + [anon_sym_or] = ACTIONS(4910), + [anon_sym_and] = ACTIONS(4910), + [anon_sym_bitor] = ACTIONS(4910), + [anon_sym_xor] = ACTIONS(4910), + [anon_sym_bitand] = ACTIONS(4910), + [anon_sym_not_eq] = ACTIONS(4910), + [anon_sym_DASH_DASH] = ACTIONS(4912), + [anon_sym_PLUS_PLUS] = ACTIONS(4912), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_DOT_STAR] = ACTIONS(4912), + [anon_sym_DASH_GT] = ACTIONS(4912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4910), + [anon_sym_decltype] = ACTIONS(4910), + }, + [STATE(2643)] = { + [sym_identifier] = ACTIONS(5010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [aux_sym_preproc_if_token2] = ACTIONS(5012), + [aux_sym_preproc_else_token1] = ACTIONS(5012), + [aux_sym_preproc_elif_token1] = ACTIONS(5010), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5012), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5012), + [anon_sym_LPAREN2] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(5010), + [anon_sym_PIPE_PIPE] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5010), + [anon_sym_CARET] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_EQ_EQ] = ACTIONS(5012), + [anon_sym_BANG_EQ] = ACTIONS(5012), + [anon_sym_GT] = ACTIONS(5010), + [anon_sym_GT_EQ] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5010), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_LT_LT] = ACTIONS(5010), + [anon_sym_GT_GT] = ACTIONS(5010), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym___attribute__] = ACTIONS(5010), + [anon_sym___attribute] = ACTIONS(5010), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_RBRACE] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_RBRACK] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5010), + [anon_sym_COLON] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_STAR_EQ] = ACTIONS(5012), + [anon_sym_SLASH_EQ] = ACTIONS(5012), + [anon_sym_PERCENT_EQ] = ACTIONS(5012), + [anon_sym_PLUS_EQ] = ACTIONS(5012), + [anon_sym_DASH_EQ] = ACTIONS(5012), + [anon_sym_LT_LT_EQ] = ACTIONS(5012), + [anon_sym_GT_GT_EQ] = ACTIONS(5012), + [anon_sym_AMP_EQ] = ACTIONS(5012), + [anon_sym_CARET_EQ] = ACTIONS(5012), + [anon_sym_PIPE_EQ] = ACTIONS(5012), + [anon_sym_and_eq] = ACTIONS(5010), + [anon_sym_or_eq] = ACTIONS(5010), + [anon_sym_xor_eq] = ACTIONS(5010), + [anon_sym_LT_EQ_GT] = ACTIONS(5012), + [anon_sym_or] = ACTIONS(5010), + [anon_sym_and] = ACTIONS(5010), + [anon_sym_bitor] = ACTIONS(5010), + [anon_sym_xor] = ACTIONS(5010), + [anon_sym_bitand] = ACTIONS(5010), + [anon_sym_not_eq] = ACTIONS(5010), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_DOT_STAR] = ACTIONS(5012), + [anon_sym_DASH_GT] = ACTIONS(5012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5010), + [anon_sym_decltype] = ACTIONS(5010), + }, + [STATE(2644)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2696), + [sym_identifier] = ACTIONS(5180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5182), + [anon_sym_COMMA] = ACTIONS(5182), + [aux_sym_preproc_if_token2] = ACTIONS(5182), + [aux_sym_preproc_else_token1] = ACTIONS(5182), + [aux_sym_preproc_elif_token1] = ACTIONS(5180), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5182), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5182), + [anon_sym_LPAREN2] = ACTIONS(5182), + [anon_sym_DASH] = ACTIONS(5180), + [anon_sym_PLUS] = ACTIONS(5180), + [anon_sym_STAR] = ACTIONS(5180), + [anon_sym_SLASH] = ACTIONS(5180), + [anon_sym_PERCENT] = ACTIONS(5180), + [anon_sym_PIPE_PIPE] = ACTIONS(5182), + [anon_sym_AMP_AMP] = ACTIONS(5182), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_CARET] = ACTIONS(5180), + [anon_sym_AMP] = ACTIONS(5180), + [anon_sym_EQ_EQ] = ACTIONS(5182), + [anon_sym_BANG_EQ] = ACTIONS(5182), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_GT_EQ] = ACTIONS(5182), + [anon_sym_LT_EQ] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_LT_LT] = ACTIONS(5180), + [anon_sym_GT_GT] = ACTIONS(5180), + [anon_sym___attribute__] = ACTIONS(5180), + [anon_sym___attribute] = ACTIONS(5180), + [anon_sym_LBRACE] = ACTIONS(5182), + [anon_sym_signed] = ACTIONS(6825), + [anon_sym_unsigned] = ACTIONS(6825), + [anon_sym_long] = ACTIONS(6825), + [anon_sym_short] = ACTIONS(6825), + [anon_sym_LBRACK] = ACTIONS(5182), + [anon_sym_EQ] = ACTIONS(5180), + [anon_sym_QMARK] = ACTIONS(5182), + [anon_sym_STAR_EQ] = ACTIONS(5182), + [anon_sym_SLASH_EQ] = ACTIONS(5182), + [anon_sym_PERCENT_EQ] = ACTIONS(5182), + [anon_sym_PLUS_EQ] = ACTIONS(5182), + [anon_sym_DASH_EQ] = ACTIONS(5182), + [anon_sym_LT_LT_EQ] = ACTIONS(5182), + [anon_sym_GT_GT_EQ] = ACTIONS(5182), + [anon_sym_AMP_EQ] = ACTIONS(5182), + [anon_sym_CARET_EQ] = ACTIONS(5182), + [anon_sym_PIPE_EQ] = ACTIONS(5182), + [anon_sym_and_eq] = ACTIONS(5180), + [anon_sym_or_eq] = ACTIONS(5180), + [anon_sym_xor_eq] = ACTIONS(5180), + [anon_sym_LT_EQ_GT] = ACTIONS(5182), + [anon_sym_or] = ACTIONS(5180), + [anon_sym_and] = ACTIONS(5180), + [anon_sym_bitor] = ACTIONS(5180), + [anon_sym_xor] = ACTIONS(5180), + [anon_sym_bitand] = ACTIONS(5180), + [anon_sym_not_eq] = ACTIONS(5180), + [anon_sym_DASH_DASH] = ACTIONS(5182), + [anon_sym_PLUS_PLUS] = ACTIONS(5182), + [anon_sym_DOT] = ACTIONS(5180), + [anon_sym_DOT_STAR] = ACTIONS(5182), + [anon_sym_DASH_GT] = ACTIONS(5182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5180), + [anon_sym_decltype] = ACTIONS(5180), + }, + [STATE(2645)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2720), + [sym_identifier] = ACTIONS(4817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4819), + [anon_sym_COMMA] = ACTIONS(4819), + [aux_sym_preproc_if_token2] = ACTIONS(4819), + [aux_sym_preproc_else_token1] = ACTIONS(4819), + [aux_sym_preproc_elif_token1] = ACTIONS(4817), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4819), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4819), + [anon_sym_LPAREN2] = ACTIONS(4819), + [anon_sym_DASH] = ACTIONS(4817), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_STAR] = ACTIONS(4817), + [anon_sym_SLASH] = ACTIONS(4817), + [anon_sym_PERCENT] = ACTIONS(4817), + [anon_sym_PIPE_PIPE] = ACTIONS(4819), + [anon_sym_AMP_AMP] = ACTIONS(4819), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_CARET] = ACTIONS(4817), + [anon_sym_AMP] = ACTIONS(4817), + [anon_sym_EQ_EQ] = ACTIONS(4819), + [anon_sym_BANG_EQ] = ACTIONS(4819), + [anon_sym_GT] = ACTIONS(4817), + [anon_sym_GT_EQ] = ACTIONS(4819), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4817), + [anon_sym_LT_LT] = ACTIONS(4817), + [anon_sym_GT_GT] = ACTIONS(4817), + [anon_sym___attribute__] = ACTIONS(4817), + [anon_sym___attribute] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(4819), + [anon_sym_signed] = ACTIONS(6835), + [anon_sym_unsigned] = ACTIONS(6835), + [anon_sym_long] = ACTIONS(6835), + [anon_sym_short] = ACTIONS(6835), + [anon_sym_LBRACK] = ACTIONS(4819), + [anon_sym_EQ] = ACTIONS(4817), + [anon_sym_QMARK] = ACTIONS(4819), + [anon_sym_STAR_EQ] = ACTIONS(4819), + [anon_sym_SLASH_EQ] = ACTIONS(4819), + [anon_sym_PERCENT_EQ] = ACTIONS(4819), + [anon_sym_PLUS_EQ] = ACTIONS(4819), + [anon_sym_DASH_EQ] = ACTIONS(4819), + [anon_sym_LT_LT_EQ] = ACTIONS(4819), + [anon_sym_GT_GT_EQ] = ACTIONS(4819), + [anon_sym_AMP_EQ] = ACTIONS(4819), + [anon_sym_CARET_EQ] = ACTIONS(4819), + [anon_sym_PIPE_EQ] = ACTIONS(4819), + [anon_sym_and_eq] = ACTIONS(4817), + [anon_sym_or_eq] = ACTIONS(4817), + [anon_sym_xor_eq] = ACTIONS(4817), + [anon_sym_LT_EQ_GT] = ACTIONS(4819), + [anon_sym_or] = ACTIONS(4817), + [anon_sym_and] = ACTIONS(4817), + [anon_sym_bitor] = ACTIONS(4817), + [anon_sym_xor] = ACTIONS(4817), + [anon_sym_bitand] = ACTIONS(4817), + [anon_sym_not_eq] = ACTIONS(4817), + [anon_sym_DASH_DASH] = ACTIONS(4819), + [anon_sym_PLUS_PLUS] = ACTIONS(4819), + [anon_sym_DOT] = ACTIONS(4817), + [anon_sym_DOT_STAR] = ACTIONS(4819), + [anon_sym_DASH_GT] = ACTIONS(4819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4817), + [anon_sym_decltype] = ACTIONS(4817), + }, + [STATE(2646)] = { + [sym_identifier] = ACTIONS(6837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6839), + [anon_sym_COMMA] = ACTIONS(6839), + [anon_sym_RPAREN] = ACTIONS(6839), + [aux_sym_preproc_if_token2] = ACTIONS(6839), + [aux_sym_preproc_else_token1] = ACTIONS(6839), + [aux_sym_preproc_elif_token1] = ACTIONS(6837), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6839), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6839), + [anon_sym_LPAREN2] = ACTIONS(6839), + [anon_sym_DASH] = ACTIONS(6837), + [anon_sym_PLUS] = ACTIONS(6837), + [anon_sym_STAR] = ACTIONS(6837), + [anon_sym_SLASH] = ACTIONS(6837), + [anon_sym_PERCENT] = ACTIONS(6837), + [anon_sym_PIPE_PIPE] = ACTIONS(6839), + [anon_sym_AMP_AMP] = ACTIONS(6839), + [anon_sym_PIPE] = ACTIONS(6837), + [anon_sym_CARET] = ACTIONS(6837), + [anon_sym_AMP] = ACTIONS(6837), + [anon_sym_EQ_EQ] = ACTIONS(6839), + [anon_sym_BANG_EQ] = ACTIONS(6839), + [anon_sym_GT] = ACTIONS(6837), + [anon_sym_GT_EQ] = ACTIONS(6839), + [anon_sym_LT_EQ] = ACTIONS(6837), + [anon_sym_LT] = ACTIONS(6837), + [anon_sym_LT_LT] = ACTIONS(6837), + [anon_sym_GT_GT] = ACTIONS(6837), + [anon_sym_SEMI] = ACTIONS(6839), + [anon_sym___attribute__] = ACTIONS(6837), + [anon_sym___attribute] = ACTIONS(6837), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6839), + [anon_sym_LBRACE] = ACTIONS(6839), + [anon_sym_RBRACE] = ACTIONS(6839), + [anon_sym_LBRACK] = ACTIONS(6837), + [anon_sym_RBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(6837), + [anon_sym_COLON] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(6839), + [anon_sym_STAR_EQ] = ACTIONS(6839), + [anon_sym_SLASH_EQ] = ACTIONS(6839), + [anon_sym_PERCENT_EQ] = ACTIONS(6839), + [anon_sym_PLUS_EQ] = ACTIONS(6839), + [anon_sym_DASH_EQ] = ACTIONS(6839), + [anon_sym_LT_LT_EQ] = ACTIONS(6839), + [anon_sym_GT_GT_EQ] = ACTIONS(6839), + [anon_sym_AMP_EQ] = ACTIONS(6839), + [anon_sym_CARET_EQ] = ACTIONS(6839), + [anon_sym_PIPE_EQ] = ACTIONS(6839), + [anon_sym_and_eq] = ACTIONS(6837), + [anon_sym_or_eq] = ACTIONS(6837), + [anon_sym_xor_eq] = ACTIONS(6837), + [anon_sym_LT_EQ_GT] = ACTIONS(6839), + [anon_sym_or] = ACTIONS(6837), + [anon_sym_and] = ACTIONS(6837), + [anon_sym_bitor] = ACTIONS(6837), + [anon_sym_xor] = ACTIONS(6837), + [anon_sym_bitand] = ACTIONS(6837), + [anon_sym_not_eq] = ACTIONS(6837), + [anon_sym_DASH_DASH] = ACTIONS(6839), + [anon_sym_PLUS_PLUS] = ACTIONS(6839), + [anon_sym_DOT] = ACTIONS(6837), + [anon_sym_DOT_STAR] = ACTIONS(6839), + [anon_sym_DASH_GT] = ACTIONS(6839), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6837), + }, + [STATE(2647)] = { + [sym_identifier] = ACTIONS(6841), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [aux_sym_preproc_if_token2] = ACTIONS(6843), + [aux_sym_preproc_else_token1] = ACTIONS(6843), + [aux_sym_preproc_elif_token1] = ACTIONS(6841), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6843), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(6843), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(6841), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(6843), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(6841), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym_SEMI] = ACTIONS(6843), + [anon_sym___attribute__] = ACTIONS(6841), + [anon_sym___attribute] = ACTIONS(6841), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6843), + [anon_sym_LBRACE] = ACTIONS(6843), + [anon_sym_RBRACE] = ACTIONS(6843), + [anon_sym_LBRACK] = ACTIONS(6841), + [anon_sym_RBRACK] = ACTIONS(6843), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_COLON] = ACTIONS(6843), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6841), + [anon_sym_or_eq] = ACTIONS(6841), + [anon_sym_xor_eq] = ACTIONS(6841), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6841), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6841), + [anon_sym_not_eq] = ACTIONS(6841), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6841), + }, + [STATE(2648)] = { + [sym_identifier] = ACTIONS(4490), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4492), + [anon_sym_COMMA] = ACTIONS(4492), + [anon_sym_RPAREN] = ACTIONS(4492), + [aux_sym_preproc_if_token2] = ACTIONS(4492), + [aux_sym_preproc_else_token1] = ACTIONS(4492), + [aux_sym_preproc_elif_token1] = ACTIONS(4490), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4492), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4492), + [anon_sym_LPAREN2] = ACTIONS(4492), + [anon_sym_DASH] = ACTIONS(4490), + [anon_sym_PLUS] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(4490), + [anon_sym_SLASH] = ACTIONS(4490), + [anon_sym_PERCENT] = ACTIONS(4490), + [anon_sym_PIPE_PIPE] = ACTIONS(4492), + [anon_sym_AMP_AMP] = ACTIONS(4492), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_CARET] = ACTIONS(4490), + [anon_sym_AMP] = ACTIONS(4490), + [anon_sym_EQ_EQ] = ACTIONS(4492), + [anon_sym_BANG_EQ] = ACTIONS(4492), + [anon_sym_GT] = ACTIONS(4490), + [anon_sym_GT_EQ] = ACTIONS(4492), + [anon_sym_LT_EQ] = ACTIONS(4490), + [anon_sym_LT] = ACTIONS(4490), + [anon_sym_LT_LT] = ACTIONS(4490), + [anon_sym_GT_GT] = ACTIONS(4490), + [anon_sym_SEMI] = ACTIONS(4492), + [anon_sym___attribute__] = ACTIONS(4490), + [anon_sym___attribute] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4492), + [anon_sym_RBRACE] = ACTIONS(4492), + [anon_sym_LBRACK] = ACTIONS(4492), + [anon_sym_RBRACK] = ACTIONS(4492), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_COLON] = ACTIONS(4492), + [anon_sym_QMARK] = ACTIONS(4492), + [anon_sym_STAR_EQ] = ACTIONS(4492), + [anon_sym_SLASH_EQ] = ACTIONS(4492), + [anon_sym_PERCENT_EQ] = ACTIONS(4492), + [anon_sym_PLUS_EQ] = ACTIONS(4492), + [anon_sym_DASH_EQ] = ACTIONS(4492), + [anon_sym_LT_LT_EQ] = ACTIONS(4492), + [anon_sym_GT_GT_EQ] = ACTIONS(4492), + [anon_sym_AMP_EQ] = ACTIONS(4492), + [anon_sym_CARET_EQ] = ACTIONS(4492), + [anon_sym_PIPE_EQ] = ACTIONS(4492), + [anon_sym_and_eq] = ACTIONS(4490), + [anon_sym_or_eq] = ACTIONS(4490), + [anon_sym_xor_eq] = ACTIONS(4490), + [anon_sym_LT_EQ_GT] = ACTIONS(4492), + [anon_sym_or] = ACTIONS(4490), + [anon_sym_and] = ACTIONS(4490), + [anon_sym_bitor] = ACTIONS(4490), + [anon_sym_xor] = ACTIONS(4490), + [anon_sym_bitand] = ACTIONS(4490), + [anon_sym_not_eq] = ACTIONS(4490), + [anon_sym_DASH_DASH] = ACTIONS(4492), + [anon_sym_PLUS_PLUS] = ACTIONS(4492), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_DOT_STAR] = ACTIONS(4492), + [anon_sym_DASH_GT] = ACTIONS(4492), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4490), + [anon_sym_decltype] = ACTIONS(4490), + }, + [STATE(2649)] = { + [sym_identifier] = ACTIONS(6845), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6847), + [anon_sym_COMMA] = ACTIONS(6847), + [anon_sym_RPAREN] = ACTIONS(6847), + [aux_sym_preproc_if_token2] = ACTIONS(6847), + [aux_sym_preproc_else_token1] = ACTIONS(6847), + [aux_sym_preproc_elif_token1] = ACTIONS(6845), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6847), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6847), + [anon_sym_LPAREN2] = ACTIONS(6847), + [anon_sym_DASH] = ACTIONS(6845), + [anon_sym_PLUS] = ACTIONS(6845), + [anon_sym_STAR] = ACTIONS(6845), + [anon_sym_SLASH] = ACTIONS(6845), + [anon_sym_PERCENT] = ACTIONS(6845), + [anon_sym_PIPE_PIPE] = ACTIONS(6847), + [anon_sym_AMP_AMP] = ACTIONS(6847), + [anon_sym_PIPE] = ACTIONS(6845), + [anon_sym_CARET] = ACTIONS(6845), + [anon_sym_AMP] = ACTIONS(6845), + [anon_sym_EQ_EQ] = ACTIONS(6847), + [anon_sym_BANG_EQ] = ACTIONS(6847), + [anon_sym_GT] = ACTIONS(6845), + [anon_sym_GT_EQ] = ACTIONS(6847), + [anon_sym_LT_EQ] = ACTIONS(6845), + [anon_sym_LT] = ACTIONS(6845), + [anon_sym_LT_LT] = ACTIONS(6845), + [anon_sym_GT_GT] = ACTIONS(6845), + [anon_sym_SEMI] = ACTIONS(6847), + [anon_sym___attribute__] = ACTIONS(6845), + [anon_sym___attribute] = ACTIONS(6845), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6847), + [anon_sym_LBRACE] = ACTIONS(6847), + [anon_sym_RBRACE] = ACTIONS(6847), + [anon_sym_LBRACK] = ACTIONS(6845), + [anon_sym_RBRACK] = ACTIONS(6847), + [anon_sym_EQ] = ACTIONS(6845), + [anon_sym_COLON] = ACTIONS(6847), + [anon_sym_QMARK] = ACTIONS(6847), + [anon_sym_STAR_EQ] = ACTIONS(6847), + [anon_sym_SLASH_EQ] = ACTIONS(6847), + [anon_sym_PERCENT_EQ] = ACTIONS(6847), + [anon_sym_PLUS_EQ] = ACTIONS(6847), + [anon_sym_DASH_EQ] = ACTIONS(6847), + [anon_sym_LT_LT_EQ] = ACTIONS(6847), + [anon_sym_GT_GT_EQ] = ACTIONS(6847), + [anon_sym_AMP_EQ] = ACTIONS(6847), + [anon_sym_CARET_EQ] = ACTIONS(6847), + [anon_sym_PIPE_EQ] = ACTIONS(6847), + [anon_sym_and_eq] = ACTIONS(6845), + [anon_sym_or_eq] = ACTIONS(6845), + [anon_sym_xor_eq] = ACTIONS(6845), + [anon_sym_LT_EQ_GT] = ACTIONS(6847), + [anon_sym_or] = ACTIONS(6845), + [anon_sym_and] = ACTIONS(6845), + [anon_sym_bitor] = ACTIONS(6845), + [anon_sym_xor] = ACTIONS(6845), + [anon_sym_bitand] = ACTIONS(6845), + [anon_sym_not_eq] = ACTIONS(6845), + [anon_sym_DASH_DASH] = ACTIONS(6847), + [anon_sym_PLUS_PLUS] = ACTIONS(6847), + [anon_sym_DOT] = ACTIONS(6845), + [anon_sym_DOT_STAR] = ACTIONS(6847), + [anon_sym_DASH_GT] = ACTIONS(6847), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6845), + }, + [STATE(2650)] = { + [sym_identifier] = ACTIONS(6849), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6851), + [anon_sym_COMMA] = ACTIONS(6851), + [anon_sym_RPAREN] = ACTIONS(6851), + [aux_sym_preproc_if_token2] = ACTIONS(6851), + [aux_sym_preproc_else_token1] = ACTIONS(6851), + [aux_sym_preproc_elif_token1] = ACTIONS(6849), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6851), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6851), + [anon_sym_LPAREN2] = ACTIONS(6851), + [anon_sym_DASH] = ACTIONS(6849), + [anon_sym_PLUS] = ACTIONS(6849), + [anon_sym_STAR] = ACTIONS(6849), + [anon_sym_SLASH] = ACTIONS(6849), + [anon_sym_PERCENT] = ACTIONS(6849), + [anon_sym_PIPE_PIPE] = ACTIONS(6851), + [anon_sym_AMP_AMP] = ACTIONS(6851), + [anon_sym_PIPE] = ACTIONS(6849), + [anon_sym_CARET] = ACTIONS(6849), + [anon_sym_AMP] = ACTIONS(6849), + [anon_sym_EQ_EQ] = ACTIONS(6851), + [anon_sym_BANG_EQ] = ACTIONS(6851), + [anon_sym_GT] = ACTIONS(6849), + [anon_sym_GT_EQ] = ACTIONS(6851), + [anon_sym_LT_EQ] = ACTIONS(6849), + [anon_sym_LT] = ACTIONS(6849), + [anon_sym_LT_LT] = ACTIONS(6849), + [anon_sym_GT_GT] = ACTIONS(6849), + [anon_sym_SEMI] = ACTIONS(6851), + [anon_sym___attribute__] = ACTIONS(6849), + [anon_sym___attribute] = ACTIONS(6849), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6851), + [anon_sym_LBRACE] = ACTIONS(6851), + [anon_sym_RBRACE] = ACTIONS(6851), + [anon_sym_LBRACK] = ACTIONS(6849), + [anon_sym_RBRACK] = ACTIONS(6851), + [anon_sym_EQ] = ACTIONS(6849), + [anon_sym_COLON] = ACTIONS(6851), + [anon_sym_QMARK] = ACTIONS(6851), + [anon_sym_STAR_EQ] = ACTIONS(6851), + [anon_sym_SLASH_EQ] = ACTIONS(6851), + [anon_sym_PERCENT_EQ] = ACTIONS(6851), + [anon_sym_PLUS_EQ] = ACTIONS(6851), + [anon_sym_DASH_EQ] = ACTIONS(6851), + [anon_sym_LT_LT_EQ] = ACTIONS(6851), + [anon_sym_GT_GT_EQ] = ACTIONS(6851), + [anon_sym_AMP_EQ] = ACTIONS(6851), + [anon_sym_CARET_EQ] = ACTIONS(6851), + [anon_sym_PIPE_EQ] = ACTIONS(6851), + [anon_sym_and_eq] = ACTIONS(6849), + [anon_sym_or_eq] = ACTIONS(6849), + [anon_sym_xor_eq] = ACTIONS(6849), + [anon_sym_LT_EQ_GT] = ACTIONS(6851), + [anon_sym_or] = ACTIONS(6849), + [anon_sym_and] = ACTIONS(6849), + [anon_sym_bitor] = ACTIONS(6849), + [anon_sym_xor] = ACTIONS(6849), + [anon_sym_bitand] = ACTIONS(6849), + [anon_sym_not_eq] = ACTIONS(6849), + [anon_sym_DASH_DASH] = ACTIONS(6851), + [anon_sym_PLUS_PLUS] = ACTIONS(6851), + [anon_sym_DOT] = ACTIONS(6849), + [anon_sym_DOT_STAR] = ACTIONS(6851), + [anon_sym_DASH_GT] = ACTIONS(6851), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6849), + }, + [STATE(2651)] = { + [sym_identifier] = ACTIONS(4942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4944), + [anon_sym_COMMA] = ACTIONS(4944), + [anon_sym_RPAREN] = ACTIONS(4944), + [aux_sym_preproc_if_token2] = ACTIONS(4944), + [aux_sym_preproc_else_token1] = ACTIONS(4944), + [aux_sym_preproc_elif_token1] = ACTIONS(4942), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4944), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4944), + [anon_sym_LPAREN2] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_PLUS] = ACTIONS(4942), + [anon_sym_STAR] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4942), + [anon_sym_PERCENT] = ACTIONS(4942), + [anon_sym_PIPE_PIPE] = ACTIONS(4944), + [anon_sym_AMP_AMP] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4942), + [anon_sym_CARET] = ACTIONS(4942), + [anon_sym_AMP] = ACTIONS(4942), + [anon_sym_EQ_EQ] = ACTIONS(4944), + [anon_sym_BANG_EQ] = ACTIONS(4944), + [anon_sym_GT] = ACTIONS(4942), + [anon_sym_GT_EQ] = ACTIONS(4944), + [anon_sym_LT_EQ] = ACTIONS(4942), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_LT_LT] = ACTIONS(4942), + [anon_sym_GT_GT] = ACTIONS(4942), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym___attribute__] = ACTIONS(4942), + [anon_sym___attribute] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4944), + [anon_sym_RBRACE] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4944), + [anon_sym_RBRACK] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4942), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_QMARK] = ACTIONS(4944), + [anon_sym_STAR_EQ] = ACTIONS(4944), + [anon_sym_SLASH_EQ] = ACTIONS(4944), + [anon_sym_PERCENT_EQ] = ACTIONS(4944), + [anon_sym_PLUS_EQ] = ACTIONS(4944), + [anon_sym_DASH_EQ] = ACTIONS(4944), + [anon_sym_LT_LT_EQ] = ACTIONS(4944), + [anon_sym_GT_GT_EQ] = ACTIONS(4944), + [anon_sym_AMP_EQ] = ACTIONS(4944), + [anon_sym_CARET_EQ] = ACTIONS(4944), + [anon_sym_PIPE_EQ] = ACTIONS(4944), + [anon_sym_and_eq] = ACTIONS(4942), + [anon_sym_or_eq] = ACTIONS(4942), + [anon_sym_xor_eq] = ACTIONS(4942), + [anon_sym_LT_EQ_GT] = ACTIONS(4944), + [anon_sym_or] = ACTIONS(4942), + [anon_sym_and] = ACTIONS(4942), + [anon_sym_bitor] = ACTIONS(4942), + [anon_sym_xor] = ACTIONS(4942), + [anon_sym_bitand] = ACTIONS(4942), + [anon_sym_not_eq] = ACTIONS(4942), + [anon_sym_DASH_DASH] = ACTIONS(4944), + [anon_sym_PLUS_PLUS] = ACTIONS(4944), + [anon_sym_DOT] = ACTIONS(4942), + [anon_sym_DOT_STAR] = ACTIONS(4944), + [anon_sym_DASH_GT] = ACTIONS(4944), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4942), + [anon_sym_decltype] = ACTIONS(4942), + }, + [STATE(2652)] = { + [sym_identifier] = ACTIONS(5030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [aux_sym_preproc_if_token2] = ACTIONS(5032), + [aux_sym_preproc_else_token1] = ACTIONS(5032), + [aux_sym_preproc_elif_token1] = ACTIONS(5030), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_PLUS] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5030), + [anon_sym_PERCENT] = ACTIONS(5030), + [anon_sym_PIPE_PIPE] = ACTIONS(5032), + [anon_sym_AMP_AMP] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(5030), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_EQ_EQ] = ACTIONS(5032), + [anon_sym_BANG_EQ] = ACTIONS(5032), + [anon_sym_GT] = ACTIONS(5030), + [anon_sym_GT_EQ] = ACTIONS(5032), + [anon_sym_LT_EQ] = ACTIONS(5030), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_LT_LT] = ACTIONS(5030), + [anon_sym_GT_GT] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5032), + [anon_sym___attribute__] = ACTIONS(5030), + [anon_sym___attribute] = ACTIONS(5030), + [anon_sym_LBRACE] = ACTIONS(5032), + [anon_sym_RBRACE] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym_RBRACK] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5030), + [anon_sym_COLON] = ACTIONS(5032), + [anon_sym_QMARK] = ACTIONS(5032), + [anon_sym_STAR_EQ] = ACTIONS(5032), + [anon_sym_SLASH_EQ] = ACTIONS(5032), + [anon_sym_PERCENT_EQ] = ACTIONS(5032), + [anon_sym_PLUS_EQ] = ACTIONS(5032), + [anon_sym_DASH_EQ] = ACTIONS(5032), + [anon_sym_LT_LT_EQ] = ACTIONS(5032), + [anon_sym_GT_GT_EQ] = ACTIONS(5032), + [anon_sym_AMP_EQ] = ACTIONS(5032), + [anon_sym_CARET_EQ] = ACTIONS(5032), + [anon_sym_PIPE_EQ] = ACTIONS(5032), + [anon_sym_and_eq] = ACTIONS(5030), + [anon_sym_or_eq] = ACTIONS(5030), + [anon_sym_xor_eq] = ACTIONS(5030), + [anon_sym_LT_EQ_GT] = ACTIONS(5032), + [anon_sym_or] = ACTIONS(5030), + [anon_sym_and] = ACTIONS(5030), + [anon_sym_bitor] = ACTIONS(5030), + [anon_sym_xor] = ACTIONS(5030), + [anon_sym_bitand] = ACTIONS(5030), + [anon_sym_not_eq] = ACTIONS(5030), + [anon_sym_DASH_DASH] = ACTIONS(5032), + [anon_sym_PLUS_PLUS] = ACTIONS(5032), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_DOT_STAR] = ACTIONS(5032), + [anon_sym_DASH_GT] = ACTIONS(5032), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5030), + [anon_sym_decltype] = ACTIONS(5030), + }, + [STATE(2653)] = { + [sym_string_literal] = STATE(3759), + [sym_template_argument_list] = STATE(4805), + [sym_raw_string_literal] = STATE(3759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3097), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6334), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(6339), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(6341), + [anon_sym_SLASH_EQ] = ACTIONS(6341), + [anon_sym_PERCENT_EQ] = ACTIONS(6341), + [anon_sym_PLUS_EQ] = ACTIONS(6341), + [anon_sym_DASH_EQ] = ACTIONS(6341), + [anon_sym_LT_LT_EQ] = ACTIONS(6341), + [anon_sym_GT_GT_EQ] = ACTIONS(6339), + [anon_sym_AMP_EQ] = ACTIONS(6341), + [anon_sym_CARET_EQ] = ACTIONS(6341), + [anon_sym_PIPE_EQ] = ACTIONS(6341), + [anon_sym_and_eq] = ACTIONS(6341), + [anon_sym_or_eq] = ACTIONS(6341), + [anon_sym_xor_eq] = ACTIONS(6341), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(6343), + [anon_sym_u_DQUOTE] = ACTIONS(6343), + [anon_sym_U_DQUOTE] = ACTIONS(6343), + [anon_sym_u8_DQUOTE] = ACTIONS(6343), + [anon_sym_DQUOTE] = ACTIONS(6343), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(3089), + [anon_sym_R_DQUOTE] = ACTIONS(6345), + [anon_sym_LR_DQUOTE] = ACTIONS(6345), + [anon_sym_uR_DQUOTE] = ACTIONS(6345), + [anon_sym_UR_DQUOTE] = ACTIONS(6345), + [anon_sym_u8R_DQUOTE] = ACTIONS(6345), + }, + [STATE(2654)] = { + [sym_identifier] = ACTIONS(4982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4984), + [anon_sym_COMMA] = ACTIONS(4984), + [anon_sym_RPAREN] = ACTIONS(4984), + [aux_sym_preproc_if_token2] = ACTIONS(4984), + [aux_sym_preproc_else_token1] = ACTIONS(4984), + [aux_sym_preproc_elif_token1] = ACTIONS(4982), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4984), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4984), + [anon_sym_LPAREN2] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4982), + [anon_sym_STAR] = ACTIONS(4982), + [anon_sym_SLASH] = ACTIONS(4982), + [anon_sym_PERCENT] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4984), + [anon_sym_AMP_AMP] = ACTIONS(4984), + [anon_sym_PIPE] = ACTIONS(4982), + [anon_sym_CARET] = ACTIONS(4982), + [anon_sym_AMP] = ACTIONS(4982), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4982), + [anon_sym_GT_EQ] = ACTIONS(4984), + [anon_sym_LT_EQ] = ACTIONS(4982), + [anon_sym_LT] = ACTIONS(4982), + [anon_sym_LT_LT] = ACTIONS(4982), + [anon_sym_GT_GT] = ACTIONS(4982), + [anon_sym_SEMI] = ACTIONS(4984), + [anon_sym___attribute__] = ACTIONS(4982), + [anon_sym___attribute] = ACTIONS(4982), + [anon_sym_LBRACE] = ACTIONS(4984), + [anon_sym_RBRACE] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4984), + [anon_sym_RBRACK] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4982), + [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_QMARK] = ACTIONS(4984), + [anon_sym_STAR_EQ] = ACTIONS(4984), + [anon_sym_SLASH_EQ] = ACTIONS(4984), + [anon_sym_PERCENT_EQ] = ACTIONS(4984), + [anon_sym_PLUS_EQ] = ACTIONS(4984), + [anon_sym_DASH_EQ] = ACTIONS(4984), + [anon_sym_LT_LT_EQ] = ACTIONS(4984), + [anon_sym_GT_GT_EQ] = ACTIONS(4984), + [anon_sym_AMP_EQ] = ACTIONS(4984), + [anon_sym_CARET_EQ] = ACTIONS(4984), + [anon_sym_PIPE_EQ] = ACTIONS(4984), + [anon_sym_and_eq] = ACTIONS(4982), + [anon_sym_or_eq] = ACTIONS(4982), + [anon_sym_xor_eq] = ACTIONS(4982), + [anon_sym_LT_EQ_GT] = ACTIONS(4984), + [anon_sym_or] = ACTIONS(4982), + [anon_sym_and] = ACTIONS(4982), + [anon_sym_bitor] = ACTIONS(4982), + [anon_sym_xor] = ACTIONS(4982), + [anon_sym_bitand] = ACTIONS(4982), + [anon_sym_not_eq] = ACTIONS(4982), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_DOT_STAR] = ACTIONS(4984), + [anon_sym_DASH_GT] = ACTIONS(4984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4982), + [anon_sym_decltype] = ACTIONS(4982), + }, + [STATE(2655)] = { + [sym_identifier] = ACTIONS(4793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4795), + [anon_sym_COMMA] = ACTIONS(4795), + [anon_sym_RPAREN] = ACTIONS(4795), + [aux_sym_preproc_if_token2] = ACTIONS(4795), + [aux_sym_preproc_else_token1] = ACTIONS(4795), + [aux_sym_preproc_elif_token1] = ACTIONS(4793), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4795), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4795), + [anon_sym_LPAREN2] = ACTIONS(4795), + [anon_sym_DASH] = ACTIONS(4793), + [anon_sym_PLUS] = ACTIONS(4793), + [anon_sym_STAR] = ACTIONS(4793), + [anon_sym_SLASH] = ACTIONS(4793), + [anon_sym_PERCENT] = ACTIONS(4793), + [anon_sym_PIPE_PIPE] = ACTIONS(4795), + [anon_sym_AMP_AMP] = ACTIONS(4795), + [anon_sym_PIPE] = ACTIONS(4793), + [anon_sym_CARET] = ACTIONS(4793), + [anon_sym_AMP] = ACTIONS(4793), + [anon_sym_EQ_EQ] = ACTIONS(4795), + [anon_sym_BANG_EQ] = ACTIONS(4795), + [anon_sym_GT] = ACTIONS(4793), + [anon_sym_GT_EQ] = ACTIONS(4795), + [anon_sym_LT_EQ] = ACTIONS(4793), + [anon_sym_LT] = ACTIONS(4793), + [anon_sym_LT_LT] = ACTIONS(4793), + [anon_sym_GT_GT] = ACTIONS(4793), + [anon_sym_SEMI] = ACTIONS(4795), + [anon_sym___attribute__] = ACTIONS(4793), + [anon_sym___attribute] = ACTIONS(4793), + [anon_sym_LBRACE] = ACTIONS(4795), + [anon_sym_RBRACE] = ACTIONS(4795), + [anon_sym_LBRACK] = ACTIONS(4795), + [anon_sym_RBRACK] = ACTIONS(4795), + [anon_sym_EQ] = ACTIONS(4793), + [anon_sym_COLON] = ACTIONS(4795), + [anon_sym_QMARK] = ACTIONS(4795), + [anon_sym_STAR_EQ] = ACTIONS(4795), + [anon_sym_SLASH_EQ] = ACTIONS(4795), + [anon_sym_PERCENT_EQ] = ACTIONS(4795), + [anon_sym_PLUS_EQ] = ACTIONS(4795), + [anon_sym_DASH_EQ] = ACTIONS(4795), + [anon_sym_LT_LT_EQ] = ACTIONS(4795), + [anon_sym_GT_GT_EQ] = ACTIONS(4795), + [anon_sym_AMP_EQ] = ACTIONS(4795), + [anon_sym_CARET_EQ] = ACTIONS(4795), + [anon_sym_PIPE_EQ] = ACTIONS(4795), + [anon_sym_and_eq] = ACTIONS(4793), + [anon_sym_or_eq] = ACTIONS(4793), + [anon_sym_xor_eq] = ACTIONS(4793), + [anon_sym_LT_EQ_GT] = ACTIONS(4795), + [anon_sym_or] = ACTIONS(4793), + [anon_sym_and] = ACTIONS(4793), + [anon_sym_bitor] = ACTIONS(4793), + [anon_sym_xor] = ACTIONS(4793), + [anon_sym_bitand] = ACTIONS(4793), + [anon_sym_not_eq] = ACTIONS(4793), + [anon_sym_DASH_DASH] = ACTIONS(4795), + [anon_sym_PLUS_PLUS] = ACTIONS(4795), + [anon_sym_DOT] = ACTIONS(4793), + [anon_sym_DOT_STAR] = ACTIONS(4795), + [anon_sym_DASH_GT] = ACTIONS(4795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4793), + [anon_sym_decltype] = ACTIONS(4793), + }, + [STATE(2656)] = { + [sym_identifier] = ACTIONS(5014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [aux_sym_preproc_if_token2] = ACTIONS(5016), + [aux_sym_preproc_else_token1] = ACTIONS(5016), + [aux_sym_preproc_elif_token1] = ACTIONS(5014), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5016), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5016), + [anon_sym_LPAREN2] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_EQ_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ] = ACTIONS(5016), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_LT_LT] = ACTIONS(5014), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym___attribute__] = ACTIONS(5014), + [anon_sym___attribute] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_RBRACE] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_RBRACK] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5014), + [anon_sym_COLON] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_STAR_EQ] = ACTIONS(5016), + [anon_sym_SLASH_EQ] = ACTIONS(5016), + [anon_sym_PERCENT_EQ] = ACTIONS(5016), + [anon_sym_PLUS_EQ] = ACTIONS(5016), + [anon_sym_DASH_EQ] = ACTIONS(5016), + [anon_sym_LT_LT_EQ] = ACTIONS(5016), + [anon_sym_GT_GT_EQ] = ACTIONS(5016), + [anon_sym_AMP_EQ] = ACTIONS(5016), + [anon_sym_CARET_EQ] = ACTIONS(5016), + [anon_sym_PIPE_EQ] = ACTIONS(5016), + [anon_sym_and_eq] = ACTIONS(5014), + [anon_sym_or_eq] = ACTIONS(5014), + [anon_sym_xor_eq] = ACTIONS(5014), + [anon_sym_LT_EQ_GT] = ACTIONS(5016), + [anon_sym_or] = ACTIONS(5014), + [anon_sym_and] = ACTIONS(5014), + [anon_sym_bitor] = ACTIONS(5014), + [anon_sym_xor] = ACTIONS(5014), + [anon_sym_bitand] = ACTIONS(5014), + [anon_sym_not_eq] = ACTIONS(5014), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_DOT_STAR] = ACTIONS(5016), + [anon_sym_DASH_GT] = ACTIONS(5016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5014), + [anon_sym_decltype] = ACTIONS(5014), + }, + [STATE(2657)] = { + [sym_string_literal] = STATE(2436), + [sym_template_argument_list] = STATE(2749), + [sym_raw_string_literal] = STATE(2436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6743), + [anon_sym_COMMA] = ACTIONS(6853), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6485), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_RBRACK] = ACTIONS(6855), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3089), + [anon_sym_SLASH_EQ] = ACTIONS(3089), + [anon_sym_PERCENT_EQ] = ACTIONS(3089), + [anon_sym_PLUS_EQ] = ACTIONS(3089), + [anon_sym_DASH_EQ] = ACTIONS(3089), + [anon_sym_LT_LT_EQ] = ACTIONS(3089), + [anon_sym_GT_GT_EQ] = ACTIONS(3089), + [anon_sym_AMP_EQ] = ACTIONS(3089), + [anon_sym_CARET_EQ] = ACTIONS(3089), + [anon_sym_PIPE_EQ] = ACTIONS(3089), + [anon_sym_and_eq] = ACTIONS(3089), + [anon_sym_or_eq] = ACTIONS(3089), + [anon_sym_xor_eq] = ACTIONS(3089), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(3349), + [anon_sym_u_DQUOTE] = ACTIONS(3349), + [anon_sym_U_DQUOTE] = ACTIONS(3349), + [anon_sym_u8_DQUOTE] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3359), + [anon_sym_LR_DQUOTE] = ACTIONS(3359), + [anon_sym_uR_DQUOTE] = ACTIONS(3359), + [anon_sym_UR_DQUOTE] = ACTIONS(3359), + [anon_sym_u8R_DQUOTE] = ACTIONS(3359), + }, + [STATE(2658)] = { + [sym_attribute_declaration] = STATE(2682), + [aux_sym_attributed_declarator_repeat1] = STATE(2682), + [sym_identifier] = ACTIONS(6858), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6860), + [anon_sym_COMMA] = ACTIONS(6860), + [anon_sym_RPAREN] = ACTIONS(6860), + [aux_sym_preproc_if_token2] = ACTIONS(6860), + [aux_sym_preproc_else_token1] = ACTIONS(6860), + [aux_sym_preproc_elif_token1] = ACTIONS(6858), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6860), + [anon_sym_LPAREN2] = ACTIONS(6860), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_PLUS] = ACTIONS(6858), + [anon_sym_STAR] = ACTIONS(6858), + [anon_sym_SLASH] = ACTIONS(6858), + [anon_sym_PERCENT] = ACTIONS(6858), + [anon_sym_PIPE_PIPE] = ACTIONS(6860), + [anon_sym_AMP_AMP] = ACTIONS(6860), + [anon_sym_PIPE] = ACTIONS(6858), + [anon_sym_CARET] = ACTIONS(6858), + [anon_sym_AMP] = ACTIONS(6858), + [anon_sym_EQ_EQ] = ACTIONS(6860), + [anon_sym_BANG_EQ] = ACTIONS(6860), + [anon_sym_GT] = ACTIONS(6858), + [anon_sym_GT_EQ] = ACTIONS(6860), + [anon_sym_LT_EQ] = ACTIONS(6858), + [anon_sym_LT] = ACTIONS(6858), + [anon_sym_LT_LT] = ACTIONS(6858), + [anon_sym_GT_GT] = ACTIONS(6858), + [anon_sym_SEMI] = ACTIONS(6860), + [anon_sym___attribute__] = ACTIONS(6858), + [anon_sym___attribute] = ACTIONS(6858), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6725), + [anon_sym_RBRACE] = ACTIONS(6860), + [anon_sym_LBRACK] = ACTIONS(6858), + [anon_sym_RBRACK] = ACTIONS(6860), + [anon_sym_EQ] = ACTIONS(6858), + [anon_sym_COLON] = ACTIONS(6860), + [anon_sym_QMARK] = ACTIONS(6860), + [anon_sym_STAR_EQ] = ACTIONS(6860), + [anon_sym_SLASH_EQ] = ACTIONS(6860), + [anon_sym_PERCENT_EQ] = ACTIONS(6860), + [anon_sym_PLUS_EQ] = ACTIONS(6860), + [anon_sym_DASH_EQ] = ACTIONS(6860), + [anon_sym_LT_LT_EQ] = ACTIONS(6860), + [anon_sym_GT_GT_EQ] = ACTIONS(6860), + [anon_sym_AMP_EQ] = ACTIONS(6860), + [anon_sym_CARET_EQ] = ACTIONS(6860), + [anon_sym_PIPE_EQ] = ACTIONS(6860), + [anon_sym_and_eq] = ACTIONS(6858), + [anon_sym_or_eq] = ACTIONS(6858), + [anon_sym_xor_eq] = ACTIONS(6858), + [anon_sym_LT_EQ_GT] = ACTIONS(6860), + [anon_sym_or] = ACTIONS(6858), + [anon_sym_and] = ACTIONS(6858), + [anon_sym_bitor] = ACTIONS(6858), + [anon_sym_xor] = ACTIONS(6858), + [anon_sym_bitand] = ACTIONS(6858), + [anon_sym_not_eq] = ACTIONS(6858), + [anon_sym_DASH_DASH] = ACTIONS(6860), + [anon_sym_PLUS_PLUS] = ACTIONS(6860), + [anon_sym_DOT] = ACTIONS(6858), + [anon_sym_DOT_STAR] = ACTIONS(6860), + [anon_sym_DASH_GT] = ACTIONS(6860), + [sym_comment] = ACTIONS(3), + }, + [STATE(2659)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6530), + [anon_sym_COMMA] = ACTIONS(6530), + [anon_sym_RPAREN] = ACTIONS(6530), + [anon_sym_LPAREN2] = ACTIONS(6530), + [anon_sym_DASH] = ACTIONS(6528), + [anon_sym_PLUS] = ACTIONS(6528), + [anon_sym_STAR] = ACTIONS(6528), + [anon_sym_SLASH] = ACTIONS(6528), + [anon_sym_PERCENT] = ACTIONS(6528), + [anon_sym_PIPE_PIPE] = ACTIONS(6530), + [anon_sym_AMP_AMP] = ACTIONS(6530), + [anon_sym_PIPE] = ACTIONS(6528), + [anon_sym_CARET] = ACTIONS(6528), + [anon_sym_AMP] = ACTIONS(6528), + [anon_sym_EQ_EQ] = ACTIONS(6530), + [anon_sym_BANG_EQ] = ACTIONS(6530), + [anon_sym_GT] = ACTIONS(6528), + [anon_sym_GT_EQ] = ACTIONS(6530), + [anon_sym_LT_EQ] = ACTIONS(6528), + [anon_sym_LT] = ACTIONS(6528), + [anon_sym_LT_LT] = ACTIONS(6528), + [anon_sym_GT_GT] = ACTIONS(6528), + [anon_sym_SEMI] = ACTIONS(6530), + [anon_sym_RBRACE] = ACTIONS(6530), + [anon_sym_LBRACK] = ACTIONS(6530), + [anon_sym_RBRACK] = ACTIONS(6530), + [anon_sym_EQ] = ACTIONS(6528), + [anon_sym_COLON] = ACTIONS(6530), + [anon_sym_QMARK] = ACTIONS(6530), + [anon_sym_STAR_EQ] = ACTIONS(6530), + [anon_sym_SLASH_EQ] = ACTIONS(6530), + [anon_sym_PERCENT_EQ] = ACTIONS(6530), + [anon_sym_PLUS_EQ] = ACTIONS(6530), + [anon_sym_DASH_EQ] = ACTIONS(6530), + [anon_sym_LT_LT_EQ] = ACTIONS(6530), + [anon_sym_GT_GT_EQ] = ACTIONS(6530), + [anon_sym_AMP_EQ] = ACTIONS(6530), + [anon_sym_CARET_EQ] = ACTIONS(6530), + [anon_sym_PIPE_EQ] = ACTIONS(6530), + [anon_sym_and_eq] = ACTIONS(6528), + [anon_sym_or_eq] = ACTIONS(6528), + [anon_sym_xor_eq] = ACTIONS(6528), + [anon_sym_LT_EQ_GT] = ACTIONS(6530), + [anon_sym_or] = ACTIONS(6528), + [anon_sym_and] = ACTIONS(6528), + [anon_sym_bitor] = ACTIONS(6528), + [anon_sym_xor] = ACTIONS(6528), + [anon_sym_bitand] = ACTIONS(6528), + [anon_sym_not_eq] = ACTIONS(6528), + [anon_sym_DASH_DASH] = ACTIONS(6530), + [anon_sym_PLUS_PLUS] = ACTIONS(6530), + [anon_sym_DOT] = ACTIONS(6528), + [anon_sym_DOT_STAR] = ACTIONS(6530), + [anon_sym_DASH_GT] = ACTIONS(6530), + [anon_sym_L_DQUOTE] = ACTIONS(6530), + [anon_sym_u_DQUOTE] = ACTIONS(6530), + [anon_sym_U_DQUOTE] = ACTIONS(6530), + [anon_sym_u8_DQUOTE] = ACTIONS(6530), + [anon_sym_DQUOTE] = ACTIONS(6530), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6530), + [anon_sym_LR_DQUOTE] = ACTIONS(6530), + [anon_sym_uR_DQUOTE] = ACTIONS(6530), + [anon_sym_UR_DQUOTE] = ACTIONS(6530), + [anon_sym_u8R_DQUOTE] = ACTIONS(6530), + [sym_literal_suffix] = ACTIONS(6528), + }, + [STATE(2660)] = { + [sym_string_literal] = STATE(2695), + [sym_raw_string_literal] = STATE(2695), + [aux_sym_concatenated_string_repeat1] = STATE(2695), + [sym_identifier] = ACTIONS(6862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6520), + [anon_sym_COMMA] = ACTIONS(6520), + [anon_sym_LPAREN2] = ACTIONS(6520), + [anon_sym_DASH] = ACTIONS(6522), + [anon_sym_PLUS] = ACTIONS(6522), + [anon_sym_STAR] = ACTIONS(6522), + [anon_sym_SLASH] = ACTIONS(6522), + [anon_sym_PERCENT] = ACTIONS(6522), + [anon_sym_PIPE_PIPE] = ACTIONS(6520), + [anon_sym_AMP_AMP] = ACTIONS(6520), + [anon_sym_PIPE] = ACTIONS(6522), + [anon_sym_CARET] = ACTIONS(6522), + [anon_sym_AMP] = ACTIONS(6522), + [anon_sym_EQ_EQ] = ACTIONS(6520), + [anon_sym_BANG_EQ] = ACTIONS(6520), + [anon_sym_GT] = ACTIONS(6522), + [anon_sym_GT_EQ] = ACTIONS(6522), + [anon_sym_LT_EQ] = ACTIONS(6522), + [anon_sym_LT] = ACTIONS(6522), + [anon_sym_LT_LT] = ACTIONS(6522), + [anon_sym_GT_GT] = ACTIONS(6522), + [anon_sym_LBRACK] = ACTIONS(6520), + [anon_sym_EQ] = ACTIONS(6522), + [anon_sym_QMARK] = ACTIONS(6520), + [anon_sym_STAR_EQ] = ACTIONS(6520), + [anon_sym_SLASH_EQ] = ACTIONS(6520), + [anon_sym_PERCENT_EQ] = ACTIONS(6520), + [anon_sym_PLUS_EQ] = ACTIONS(6520), + [anon_sym_DASH_EQ] = ACTIONS(6520), + [anon_sym_LT_LT_EQ] = ACTIONS(6520), + [anon_sym_GT_GT_EQ] = ACTIONS(6522), + [anon_sym_AMP_EQ] = ACTIONS(6520), + [anon_sym_CARET_EQ] = ACTIONS(6520), + [anon_sym_PIPE_EQ] = ACTIONS(6520), + [anon_sym_and_eq] = ACTIONS(6522), + [anon_sym_or_eq] = ACTIONS(6522), + [anon_sym_xor_eq] = ACTIONS(6522), + [anon_sym_LT_EQ_GT] = ACTIONS(6520), + [anon_sym_or] = ACTIONS(6522), + [anon_sym_and] = ACTIONS(6522), + [anon_sym_bitor] = ACTIONS(6522), + [anon_sym_xor] = ACTIONS(6522), + [anon_sym_bitand] = ACTIONS(6522), + [anon_sym_not_eq] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6520), + [anon_sym_PLUS_PLUS] = ACTIONS(6520), + [anon_sym_DOT] = ACTIONS(6522), + [anon_sym_DOT_STAR] = ACTIONS(6520), + [anon_sym_DASH_GT] = ACTIONS(6520), + [anon_sym_L_DQUOTE] = ACTIONS(6864), + [anon_sym_u_DQUOTE] = ACTIONS(6864), + [anon_sym_U_DQUOTE] = ACTIONS(6864), + [anon_sym_u8_DQUOTE] = ACTIONS(6864), + [anon_sym_DQUOTE] = ACTIONS(6864), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6520), + [anon_sym_R_DQUOTE] = ACTIONS(6866), + [anon_sym_LR_DQUOTE] = ACTIONS(6866), + [anon_sym_uR_DQUOTE] = ACTIONS(6866), + [anon_sym_UR_DQUOTE] = ACTIONS(6866), + [anon_sym_u8R_DQUOTE] = ACTIONS(6866), + [sym_literal_suffix] = ACTIONS(6522), + }, + [STATE(2661)] = { + [sym_identifier] = ACTIONS(4797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4799), + [anon_sym_COMMA] = ACTIONS(4799), + [anon_sym_RPAREN] = ACTIONS(4799), + [aux_sym_preproc_if_token2] = ACTIONS(4799), + [aux_sym_preproc_else_token1] = ACTIONS(4799), + [aux_sym_preproc_elif_token1] = ACTIONS(4797), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4799), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4799), + [anon_sym_LPAREN2] = ACTIONS(4799), + [anon_sym_DASH] = ACTIONS(4797), + [anon_sym_PLUS] = ACTIONS(4797), + [anon_sym_STAR] = ACTIONS(4797), + [anon_sym_SLASH] = ACTIONS(4797), + [anon_sym_PERCENT] = ACTIONS(4797), + [anon_sym_PIPE_PIPE] = ACTIONS(4799), + [anon_sym_AMP_AMP] = ACTIONS(4799), + [anon_sym_PIPE] = ACTIONS(4797), + [anon_sym_CARET] = ACTIONS(4797), + [anon_sym_AMP] = ACTIONS(4797), + [anon_sym_EQ_EQ] = ACTIONS(4799), + [anon_sym_BANG_EQ] = ACTIONS(4799), + [anon_sym_GT] = ACTIONS(4797), + [anon_sym_GT_EQ] = ACTIONS(4799), + [anon_sym_LT_EQ] = ACTIONS(4797), + [anon_sym_LT] = ACTIONS(4797), + [anon_sym_LT_LT] = ACTIONS(4797), + [anon_sym_GT_GT] = ACTIONS(4797), + [anon_sym_SEMI] = ACTIONS(4799), + [anon_sym___attribute__] = ACTIONS(4797), + [anon_sym___attribute] = ACTIONS(4797), + [anon_sym_LBRACE] = ACTIONS(4799), + [anon_sym_RBRACE] = ACTIONS(4799), + [anon_sym_LBRACK] = ACTIONS(4799), + [anon_sym_RBRACK] = ACTIONS(4799), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_COLON] = ACTIONS(4799), + [anon_sym_QMARK] = ACTIONS(4799), + [anon_sym_STAR_EQ] = ACTIONS(4799), + [anon_sym_SLASH_EQ] = ACTIONS(4799), + [anon_sym_PERCENT_EQ] = ACTIONS(4799), + [anon_sym_PLUS_EQ] = ACTIONS(4799), + [anon_sym_DASH_EQ] = ACTIONS(4799), + [anon_sym_LT_LT_EQ] = ACTIONS(4799), + [anon_sym_GT_GT_EQ] = ACTIONS(4799), + [anon_sym_AMP_EQ] = ACTIONS(4799), + [anon_sym_CARET_EQ] = ACTIONS(4799), + [anon_sym_PIPE_EQ] = ACTIONS(4799), + [anon_sym_and_eq] = ACTIONS(4797), + [anon_sym_or_eq] = ACTIONS(4797), + [anon_sym_xor_eq] = ACTIONS(4797), + [anon_sym_LT_EQ_GT] = ACTIONS(4799), + [anon_sym_or] = ACTIONS(4797), + [anon_sym_and] = ACTIONS(4797), + [anon_sym_bitor] = ACTIONS(4797), + [anon_sym_xor] = ACTIONS(4797), + [anon_sym_bitand] = ACTIONS(4797), + [anon_sym_not_eq] = ACTIONS(4797), + [anon_sym_DASH_DASH] = ACTIONS(4799), + [anon_sym_PLUS_PLUS] = ACTIONS(4799), + [anon_sym_DOT] = ACTIONS(4797), + [anon_sym_DOT_STAR] = ACTIONS(4799), + [anon_sym_DASH_GT] = ACTIONS(4799), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4797), + [anon_sym_decltype] = ACTIONS(4797), + }, + [STATE(2662)] = { + [sym_identifier] = ACTIONS(4914), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4916), + [anon_sym_COMMA] = ACTIONS(4916), + [anon_sym_RPAREN] = ACTIONS(4916), + [aux_sym_preproc_if_token2] = ACTIONS(4916), + [aux_sym_preproc_else_token1] = ACTIONS(4916), + [aux_sym_preproc_elif_token1] = ACTIONS(4914), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4916), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4914), + [anon_sym_PLUS] = ACTIONS(4914), + [anon_sym_STAR] = ACTIONS(4914), + [anon_sym_SLASH] = ACTIONS(4914), + [anon_sym_PERCENT] = ACTIONS(4914), + [anon_sym_PIPE_PIPE] = ACTIONS(4916), + [anon_sym_AMP_AMP] = ACTIONS(4916), + [anon_sym_PIPE] = ACTIONS(4914), + [anon_sym_CARET] = ACTIONS(4914), + [anon_sym_AMP] = ACTIONS(4914), + [anon_sym_EQ_EQ] = ACTIONS(4916), + [anon_sym_BANG_EQ] = ACTIONS(4916), + [anon_sym_GT] = ACTIONS(4914), + [anon_sym_GT_EQ] = ACTIONS(4916), + [anon_sym_LT_EQ] = ACTIONS(4914), + [anon_sym_LT] = ACTIONS(4914), + [anon_sym_LT_LT] = ACTIONS(4914), + [anon_sym_GT_GT] = ACTIONS(4914), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym___attribute__] = ACTIONS(4914), + [anon_sym___attribute] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4916), + [anon_sym_RBRACE] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym_RBRACK] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4914), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_QMARK] = ACTIONS(4916), + [anon_sym_STAR_EQ] = ACTIONS(4916), + [anon_sym_SLASH_EQ] = ACTIONS(4916), + [anon_sym_PERCENT_EQ] = ACTIONS(4916), + [anon_sym_PLUS_EQ] = ACTIONS(4916), + [anon_sym_DASH_EQ] = ACTIONS(4916), + [anon_sym_LT_LT_EQ] = ACTIONS(4916), + [anon_sym_GT_GT_EQ] = ACTIONS(4916), + [anon_sym_AMP_EQ] = ACTIONS(4916), + [anon_sym_CARET_EQ] = ACTIONS(4916), + [anon_sym_PIPE_EQ] = ACTIONS(4916), + [anon_sym_and_eq] = ACTIONS(4914), + [anon_sym_or_eq] = ACTIONS(4914), + [anon_sym_xor_eq] = ACTIONS(4914), + [anon_sym_LT_EQ_GT] = ACTIONS(4916), + [anon_sym_or] = ACTIONS(4914), + [anon_sym_and] = ACTIONS(4914), + [anon_sym_bitor] = ACTIONS(4914), + [anon_sym_xor] = ACTIONS(4914), + [anon_sym_bitand] = ACTIONS(4914), + [anon_sym_not_eq] = ACTIONS(4914), + [anon_sym_DASH_DASH] = ACTIONS(4916), + [anon_sym_PLUS_PLUS] = ACTIONS(4916), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_DOT_STAR] = ACTIONS(4916), + [anon_sym_DASH_GT] = ACTIONS(4916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4914), + [anon_sym_decltype] = ACTIONS(4914), + }, + [STATE(2663)] = { + [sym_identifier] = ACTIONS(4966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [aux_sym_preproc_if_token2] = ACTIONS(4968), + [aux_sym_preproc_else_token1] = ACTIONS(4968), + [aux_sym_preproc_elif_token1] = ACTIONS(4966), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4968), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4966), + [anon_sym_PLUS] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4966), + [anon_sym_SLASH] = ACTIONS(4966), + [anon_sym_PERCENT] = ACTIONS(4966), + [anon_sym_PIPE_PIPE] = ACTIONS(4968), + [anon_sym_AMP_AMP] = ACTIONS(4968), + [anon_sym_PIPE] = ACTIONS(4966), + [anon_sym_CARET] = ACTIONS(4966), + [anon_sym_AMP] = ACTIONS(4966), + [anon_sym_EQ_EQ] = ACTIONS(4968), + [anon_sym_BANG_EQ] = ACTIONS(4968), + [anon_sym_GT] = ACTIONS(4966), + [anon_sym_GT_EQ] = ACTIONS(4968), + [anon_sym_LT_EQ] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4966), + [anon_sym_LT_LT] = ACTIONS(4966), + [anon_sym_GT_GT] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym___attribute__] = ACTIONS(4966), + [anon_sym___attribute] = ACTIONS(4966), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_RBRACE] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_RBRACK] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4966), + [anon_sym_COLON] = ACTIONS(4968), + [anon_sym_QMARK] = ACTIONS(4968), + [anon_sym_STAR_EQ] = ACTIONS(4968), + [anon_sym_SLASH_EQ] = ACTIONS(4968), + [anon_sym_PERCENT_EQ] = ACTIONS(4968), + [anon_sym_PLUS_EQ] = ACTIONS(4968), + [anon_sym_DASH_EQ] = ACTIONS(4968), + [anon_sym_LT_LT_EQ] = ACTIONS(4968), + [anon_sym_GT_GT_EQ] = ACTIONS(4968), + [anon_sym_AMP_EQ] = ACTIONS(4968), + [anon_sym_CARET_EQ] = ACTIONS(4968), + [anon_sym_PIPE_EQ] = ACTIONS(4968), + [anon_sym_and_eq] = ACTIONS(4966), + [anon_sym_or_eq] = ACTIONS(4966), + [anon_sym_xor_eq] = ACTIONS(4966), + [anon_sym_LT_EQ_GT] = ACTIONS(4968), + [anon_sym_or] = ACTIONS(4966), + [anon_sym_and] = ACTIONS(4966), + [anon_sym_bitor] = ACTIONS(4966), + [anon_sym_xor] = ACTIONS(4966), + [anon_sym_bitand] = ACTIONS(4966), + [anon_sym_not_eq] = ACTIONS(4966), + [anon_sym_DASH_DASH] = ACTIONS(4968), + [anon_sym_PLUS_PLUS] = ACTIONS(4968), + [anon_sym_DOT] = ACTIONS(4966), + [anon_sym_DOT_STAR] = ACTIONS(4968), + [anon_sym_DASH_GT] = ACTIONS(4968), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4966), + [anon_sym_decltype] = ACTIONS(4966), + }, + [STATE(2664)] = { + [sym_identifier] = ACTIONS(4801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4803), + [anon_sym_COMMA] = ACTIONS(4803), + [anon_sym_RPAREN] = ACTIONS(4803), + [aux_sym_preproc_if_token2] = ACTIONS(4803), + [aux_sym_preproc_else_token1] = ACTIONS(4803), + [aux_sym_preproc_elif_token1] = ACTIONS(4801), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4803), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4803), + [anon_sym_LPAREN2] = ACTIONS(4803), + [anon_sym_DASH] = ACTIONS(4801), + [anon_sym_PLUS] = ACTIONS(4801), + [anon_sym_STAR] = ACTIONS(4801), + [anon_sym_SLASH] = ACTIONS(4801), + [anon_sym_PERCENT] = ACTIONS(4801), + [anon_sym_PIPE_PIPE] = ACTIONS(4803), + [anon_sym_AMP_AMP] = ACTIONS(4803), + [anon_sym_PIPE] = ACTIONS(4801), + [anon_sym_CARET] = ACTIONS(4801), + [anon_sym_AMP] = ACTIONS(4801), + [anon_sym_EQ_EQ] = ACTIONS(4803), + [anon_sym_BANG_EQ] = ACTIONS(4803), + [anon_sym_GT] = ACTIONS(4801), + [anon_sym_GT_EQ] = ACTIONS(4803), + [anon_sym_LT_EQ] = ACTIONS(4801), + [anon_sym_LT] = ACTIONS(4801), + [anon_sym_LT_LT] = ACTIONS(4801), + [anon_sym_GT_GT] = ACTIONS(4801), + [anon_sym_SEMI] = ACTIONS(4803), + [anon_sym___attribute__] = ACTIONS(4801), + [anon_sym___attribute] = ACTIONS(4801), + [anon_sym_LBRACE] = ACTIONS(4803), + [anon_sym_RBRACE] = ACTIONS(4803), + [anon_sym_LBRACK] = ACTIONS(4803), + [anon_sym_RBRACK] = ACTIONS(4803), + [anon_sym_EQ] = ACTIONS(4801), + [anon_sym_COLON] = ACTIONS(4803), + [anon_sym_QMARK] = ACTIONS(4803), + [anon_sym_STAR_EQ] = ACTIONS(4803), + [anon_sym_SLASH_EQ] = ACTIONS(4803), + [anon_sym_PERCENT_EQ] = ACTIONS(4803), + [anon_sym_PLUS_EQ] = ACTIONS(4803), + [anon_sym_DASH_EQ] = ACTIONS(4803), + [anon_sym_LT_LT_EQ] = ACTIONS(4803), + [anon_sym_GT_GT_EQ] = ACTIONS(4803), + [anon_sym_AMP_EQ] = ACTIONS(4803), + [anon_sym_CARET_EQ] = ACTIONS(4803), + [anon_sym_PIPE_EQ] = ACTIONS(4803), + [anon_sym_and_eq] = ACTIONS(4801), + [anon_sym_or_eq] = ACTIONS(4801), + [anon_sym_xor_eq] = ACTIONS(4801), + [anon_sym_LT_EQ_GT] = ACTIONS(4803), + [anon_sym_or] = ACTIONS(4801), + [anon_sym_and] = ACTIONS(4801), + [anon_sym_bitor] = ACTIONS(4801), + [anon_sym_xor] = ACTIONS(4801), + [anon_sym_bitand] = ACTIONS(4801), + [anon_sym_not_eq] = ACTIONS(4801), + [anon_sym_DASH_DASH] = ACTIONS(4803), + [anon_sym_PLUS_PLUS] = ACTIONS(4803), + [anon_sym_DOT] = ACTIONS(4801), + [anon_sym_DOT_STAR] = ACTIONS(4803), + [anon_sym_DASH_GT] = ACTIONS(4803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4801), + [anon_sym_decltype] = ACTIONS(4801), + }, + [STATE(2665)] = { + [sym_identifier] = ACTIONS(5022), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [aux_sym_preproc_if_token2] = ACTIONS(5024), + [aux_sym_preproc_else_token1] = ACTIONS(5024), + [aux_sym_preproc_elif_token1] = ACTIONS(5022), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5024), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5024), + [anon_sym_LPAREN2] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5022), + [anon_sym_PIPE_PIPE] = ACTIONS(5024), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_LT_LT] = ACTIONS(5022), + [anon_sym_GT_GT] = ACTIONS(5022), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym___attribute__] = ACTIONS(5022), + [anon_sym___attribute] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_RBRACE] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_RBRACK] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5022), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5024), + [anon_sym_STAR_EQ] = ACTIONS(5024), + [anon_sym_SLASH_EQ] = ACTIONS(5024), + [anon_sym_PERCENT_EQ] = ACTIONS(5024), + [anon_sym_PLUS_EQ] = ACTIONS(5024), + [anon_sym_DASH_EQ] = ACTIONS(5024), + [anon_sym_LT_LT_EQ] = ACTIONS(5024), + [anon_sym_GT_GT_EQ] = ACTIONS(5024), + [anon_sym_AMP_EQ] = ACTIONS(5024), + [anon_sym_CARET_EQ] = ACTIONS(5024), + [anon_sym_PIPE_EQ] = ACTIONS(5024), + [anon_sym_and_eq] = ACTIONS(5022), + [anon_sym_or_eq] = ACTIONS(5022), + [anon_sym_xor_eq] = ACTIONS(5022), + [anon_sym_LT_EQ_GT] = ACTIONS(5024), + [anon_sym_or] = ACTIONS(5022), + [anon_sym_and] = ACTIONS(5022), + [anon_sym_bitor] = ACTIONS(5022), + [anon_sym_xor] = ACTIONS(5022), + [anon_sym_bitand] = ACTIONS(5022), + [anon_sym_not_eq] = ACTIONS(5022), + [anon_sym_DASH_DASH] = ACTIONS(5024), + [anon_sym_PLUS_PLUS] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_DOT_STAR] = ACTIONS(5024), + [anon_sym_DASH_GT] = ACTIONS(5024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5022), + [anon_sym_decltype] = ACTIONS(5022), + }, + [STATE(2666)] = { + [sym_identifier] = ACTIONS(4809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [aux_sym_preproc_if_token2] = ACTIONS(4811), + [aux_sym_preproc_else_token1] = ACTIONS(4811), + [aux_sym_preproc_elif_token1] = ACTIONS(4809), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4811), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4811), + [anon_sym_LPAREN2] = ACTIONS(4811), + [anon_sym_DASH] = ACTIONS(4809), + [anon_sym_PLUS] = ACTIONS(4809), + [anon_sym_STAR] = ACTIONS(4809), + [anon_sym_SLASH] = ACTIONS(4809), + [anon_sym_PERCENT] = ACTIONS(4809), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE] = ACTIONS(4809), + [anon_sym_CARET] = ACTIONS(4809), + [anon_sym_AMP] = ACTIONS(4809), + [anon_sym_EQ_EQ] = ACTIONS(4811), + [anon_sym_BANG_EQ] = ACTIONS(4811), + [anon_sym_GT] = ACTIONS(4809), + [anon_sym_GT_EQ] = ACTIONS(4811), + [anon_sym_LT_EQ] = ACTIONS(4809), + [anon_sym_LT] = ACTIONS(4809), + [anon_sym_LT_LT] = ACTIONS(4809), + [anon_sym_GT_GT] = ACTIONS(4809), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym___attribute__] = ACTIONS(4809), + [anon_sym___attribute] = ACTIONS(4809), + [anon_sym_LBRACE] = ACTIONS(4811), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_RBRACK] = ACTIONS(4811), + [anon_sym_EQ] = ACTIONS(4809), + [anon_sym_COLON] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4811), + [anon_sym_STAR_EQ] = ACTIONS(4811), + [anon_sym_SLASH_EQ] = ACTIONS(4811), + [anon_sym_PERCENT_EQ] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(4811), + [anon_sym_DASH_EQ] = ACTIONS(4811), + [anon_sym_LT_LT_EQ] = ACTIONS(4811), + [anon_sym_GT_GT_EQ] = ACTIONS(4811), + [anon_sym_AMP_EQ] = ACTIONS(4811), + [anon_sym_CARET_EQ] = ACTIONS(4811), + [anon_sym_PIPE_EQ] = ACTIONS(4811), + [anon_sym_and_eq] = ACTIONS(4809), + [anon_sym_or_eq] = ACTIONS(4809), + [anon_sym_xor_eq] = ACTIONS(4809), + [anon_sym_LT_EQ_GT] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4809), + [anon_sym_and] = ACTIONS(4809), + [anon_sym_bitor] = ACTIONS(4809), + [anon_sym_xor] = ACTIONS(4809), + [anon_sym_bitand] = ACTIONS(4809), + [anon_sym_not_eq] = ACTIONS(4809), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DOT] = ACTIONS(4809), + [anon_sym_DOT_STAR] = ACTIONS(4811), + [anon_sym_DASH_GT] = ACTIONS(4811), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4809), + [anon_sym_decltype] = ACTIONS(4809), + }, + [STATE(2667)] = { + [sym_identifier] = ACTIONS(4813), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4815), + [anon_sym_COMMA] = ACTIONS(4815), + [anon_sym_RPAREN] = ACTIONS(4815), + [aux_sym_preproc_if_token2] = ACTIONS(4815), + [aux_sym_preproc_else_token1] = ACTIONS(4815), + [aux_sym_preproc_elif_token1] = ACTIONS(4813), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4815), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4815), + [anon_sym_LPAREN2] = ACTIONS(4815), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_PIPE_PIPE] = ACTIONS(4815), + [anon_sym_AMP_AMP] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_EQ_EQ] = ACTIONS(4815), + [anon_sym_BANG_EQ] = ACTIONS(4815), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_GT_EQ] = ACTIONS(4815), + [anon_sym_LT_EQ] = ACTIONS(4813), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_SEMI] = ACTIONS(4815), + [anon_sym___attribute__] = ACTIONS(4813), + [anon_sym___attribute] = ACTIONS(4813), + [anon_sym_LBRACE] = ACTIONS(4815), + [anon_sym_RBRACE] = ACTIONS(4815), + [anon_sym_LBRACK] = ACTIONS(4815), + [anon_sym_RBRACK] = ACTIONS(4815), + [anon_sym_EQ] = ACTIONS(4813), + [anon_sym_COLON] = ACTIONS(4815), + [anon_sym_QMARK] = ACTIONS(4815), + [anon_sym_STAR_EQ] = ACTIONS(4815), + [anon_sym_SLASH_EQ] = ACTIONS(4815), + [anon_sym_PERCENT_EQ] = ACTIONS(4815), + [anon_sym_PLUS_EQ] = ACTIONS(4815), + [anon_sym_DASH_EQ] = ACTIONS(4815), + [anon_sym_LT_LT_EQ] = ACTIONS(4815), + [anon_sym_GT_GT_EQ] = ACTIONS(4815), + [anon_sym_AMP_EQ] = ACTIONS(4815), + [anon_sym_CARET_EQ] = ACTIONS(4815), + [anon_sym_PIPE_EQ] = ACTIONS(4815), + [anon_sym_and_eq] = ACTIONS(4813), + [anon_sym_or_eq] = ACTIONS(4813), + [anon_sym_xor_eq] = ACTIONS(4813), + [anon_sym_LT_EQ_GT] = ACTIONS(4815), + [anon_sym_or] = ACTIONS(4813), + [anon_sym_and] = ACTIONS(4813), + [anon_sym_bitor] = ACTIONS(4813), + [anon_sym_xor] = ACTIONS(4813), + [anon_sym_bitand] = ACTIONS(4813), + [anon_sym_not_eq] = ACTIONS(4813), + [anon_sym_DASH_DASH] = ACTIONS(4815), + [anon_sym_PLUS_PLUS] = ACTIONS(4815), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_STAR] = ACTIONS(4815), + [anon_sym_DASH_GT] = ACTIONS(4815), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4813), + [anon_sym_decltype] = ACTIONS(4813), + }, + [STATE(2668)] = { + [sym_identifier] = ACTIONS(4735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4737), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4737), + [aux_sym_preproc_if_token2] = ACTIONS(4737), + [aux_sym_preproc_else_token1] = ACTIONS(4737), + [aux_sym_preproc_elif_token1] = ACTIONS(4735), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4737), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4737), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_DASH] = ACTIONS(4735), + [anon_sym_PLUS] = ACTIONS(4735), + [anon_sym_STAR] = ACTIONS(4735), + [anon_sym_SLASH] = ACTIONS(4735), + [anon_sym_PERCENT] = ACTIONS(4735), + [anon_sym_PIPE_PIPE] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_PIPE] = ACTIONS(4735), + [anon_sym_CARET] = ACTIONS(4735), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_EQ_EQ] = ACTIONS(4737), + [anon_sym_BANG_EQ] = ACTIONS(4737), + [anon_sym_GT] = ACTIONS(4735), + [anon_sym_GT_EQ] = ACTIONS(4737), + [anon_sym_LT_EQ] = ACTIONS(4735), + [anon_sym_LT] = ACTIONS(4735), + [anon_sym_LT_LT] = ACTIONS(4735), + [anon_sym_GT_GT] = ACTIONS(4735), + [anon_sym_SEMI] = ACTIONS(4737), + [anon_sym___attribute__] = ACTIONS(4735), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4737), + [anon_sym_RBRACE] = ACTIONS(4737), + [anon_sym_LBRACK] = ACTIONS(4737), + [anon_sym_RBRACK] = ACTIONS(4737), + [anon_sym_EQ] = ACTIONS(4735), + [anon_sym_COLON] = ACTIONS(4737), + [anon_sym_QMARK] = ACTIONS(4737), + [anon_sym_STAR_EQ] = ACTIONS(4737), + [anon_sym_SLASH_EQ] = ACTIONS(4737), + [anon_sym_PERCENT_EQ] = ACTIONS(4737), + [anon_sym_PLUS_EQ] = ACTIONS(4737), + [anon_sym_DASH_EQ] = ACTIONS(4737), + [anon_sym_LT_LT_EQ] = ACTIONS(4737), + [anon_sym_GT_GT_EQ] = ACTIONS(4737), + [anon_sym_AMP_EQ] = ACTIONS(4737), + [anon_sym_CARET_EQ] = ACTIONS(4737), + [anon_sym_PIPE_EQ] = ACTIONS(4737), + [anon_sym_and_eq] = ACTIONS(4735), + [anon_sym_or_eq] = ACTIONS(4735), + [anon_sym_xor_eq] = ACTIONS(4735), + [anon_sym_LT_EQ_GT] = ACTIONS(4737), + [anon_sym_or] = ACTIONS(4735), + [anon_sym_and] = ACTIONS(4735), + [anon_sym_bitor] = ACTIONS(4735), + [anon_sym_xor] = ACTIONS(4735), + [anon_sym_bitand] = ACTIONS(4735), + [anon_sym_not_eq] = ACTIONS(4735), + [anon_sym_DASH_DASH] = ACTIONS(4737), + [anon_sym_PLUS_PLUS] = ACTIONS(4737), + [anon_sym_DOT] = ACTIONS(4735), + [anon_sym_DOT_STAR] = ACTIONS(4737), + [anon_sym_DASH_GT] = ACTIONS(4737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4735), + [anon_sym_decltype] = ACTIONS(4735), + }, + [STATE(2669)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5674), + [anon_sym_COMMA] = ACTIONS(5674), + [anon_sym_RPAREN] = ACTIONS(5674), + [anon_sym_LPAREN2] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5672), + [anon_sym_STAR] = ACTIONS(5672), + [anon_sym_SLASH] = ACTIONS(5672), + [anon_sym_PERCENT] = ACTIONS(5672), + [anon_sym_PIPE_PIPE] = ACTIONS(5674), + [anon_sym_AMP_AMP] = ACTIONS(5674), + [anon_sym_PIPE] = ACTIONS(5672), + [anon_sym_CARET] = ACTIONS(5672), + [anon_sym_AMP] = ACTIONS(5672), + [anon_sym_EQ_EQ] = ACTIONS(5674), + [anon_sym_BANG_EQ] = ACTIONS(5674), + [anon_sym_GT] = ACTIONS(5672), + [anon_sym_GT_EQ] = ACTIONS(5674), + [anon_sym_LT_EQ] = ACTIONS(5672), + [anon_sym_LT] = ACTIONS(5672), + [anon_sym_LT_LT] = ACTIONS(5672), + [anon_sym_GT_GT] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [anon_sym_RBRACE] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [anon_sym_RBRACK] = ACTIONS(5674), + [anon_sym_EQ] = ACTIONS(5672), + [anon_sym_COLON] = ACTIONS(5674), + [anon_sym_QMARK] = ACTIONS(5674), + [anon_sym_STAR_EQ] = ACTIONS(5674), + [anon_sym_SLASH_EQ] = ACTIONS(5674), + [anon_sym_PERCENT_EQ] = ACTIONS(5674), + [anon_sym_PLUS_EQ] = ACTIONS(5674), + [anon_sym_DASH_EQ] = ACTIONS(5674), + [anon_sym_LT_LT_EQ] = ACTIONS(5674), + [anon_sym_GT_GT_EQ] = ACTIONS(5674), + [anon_sym_AMP_EQ] = ACTIONS(5674), + [anon_sym_CARET_EQ] = ACTIONS(5674), + [anon_sym_PIPE_EQ] = ACTIONS(5674), + [anon_sym_and_eq] = ACTIONS(5672), + [anon_sym_or_eq] = ACTIONS(5672), + [anon_sym_xor_eq] = ACTIONS(5672), + [anon_sym_LT_EQ_GT] = ACTIONS(5674), + [anon_sym_or] = ACTIONS(5672), + [anon_sym_and] = ACTIONS(5672), + [anon_sym_bitor] = ACTIONS(5672), + [anon_sym_xor] = ACTIONS(5672), + [anon_sym_bitand] = ACTIONS(5672), + [anon_sym_not_eq] = ACTIONS(5672), + [anon_sym_DASH_DASH] = ACTIONS(5674), + [anon_sym_PLUS_PLUS] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_DOT_STAR] = ACTIONS(5674), + [anon_sym_DASH_GT] = ACTIONS(5674), + [anon_sym_L_DQUOTE] = ACTIONS(5674), + [anon_sym_u_DQUOTE] = ACTIONS(5674), + [anon_sym_U_DQUOTE] = ACTIONS(5674), + [anon_sym_u8_DQUOTE] = ACTIONS(5674), + [anon_sym_DQUOTE] = ACTIONS(5674), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5674), + [anon_sym_LR_DQUOTE] = ACTIONS(5674), + [anon_sym_uR_DQUOTE] = ACTIONS(5674), + [anon_sym_UR_DQUOTE] = ACTIONS(5674), + [anon_sym_u8R_DQUOTE] = ACTIONS(5674), + [sym_literal_suffix] = ACTIONS(5672), + }, + [STATE(2670)] = { + [sym_identifier] = ACTIONS(4735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4737), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4737), + [aux_sym_preproc_if_token2] = ACTIONS(4737), + [aux_sym_preproc_else_token1] = ACTIONS(4737), + [aux_sym_preproc_elif_token1] = ACTIONS(4735), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4737), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4737), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_DASH] = ACTIONS(4735), + [anon_sym_PLUS] = ACTIONS(4735), + [anon_sym_STAR] = ACTIONS(4735), + [anon_sym_SLASH] = ACTIONS(4735), + [anon_sym_PERCENT] = ACTIONS(4735), + [anon_sym_PIPE_PIPE] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_PIPE] = ACTIONS(4735), + [anon_sym_CARET] = ACTIONS(4735), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_EQ_EQ] = ACTIONS(4737), + [anon_sym_BANG_EQ] = ACTIONS(4737), + [anon_sym_GT] = ACTIONS(4735), + [anon_sym_GT_EQ] = ACTIONS(4737), + [anon_sym_LT_EQ] = ACTIONS(4735), + [anon_sym_LT] = ACTIONS(4735), + [anon_sym_LT_LT] = ACTIONS(4735), + [anon_sym_GT_GT] = ACTIONS(4735), + [anon_sym_SEMI] = ACTIONS(4737), + [anon_sym___attribute__] = ACTIONS(4735), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4737), + [anon_sym_RBRACE] = ACTIONS(4737), + [anon_sym_LBRACK] = ACTIONS(4737), + [anon_sym_RBRACK] = ACTIONS(4737), + [anon_sym_EQ] = ACTIONS(4735), + [anon_sym_COLON] = ACTIONS(4737), + [anon_sym_QMARK] = ACTIONS(4737), + [anon_sym_STAR_EQ] = ACTIONS(4737), + [anon_sym_SLASH_EQ] = ACTIONS(4737), + [anon_sym_PERCENT_EQ] = ACTIONS(4737), + [anon_sym_PLUS_EQ] = ACTIONS(4737), + [anon_sym_DASH_EQ] = ACTIONS(4737), + [anon_sym_LT_LT_EQ] = ACTIONS(4737), + [anon_sym_GT_GT_EQ] = ACTIONS(4737), + [anon_sym_AMP_EQ] = ACTIONS(4737), + [anon_sym_CARET_EQ] = ACTIONS(4737), + [anon_sym_PIPE_EQ] = ACTIONS(4737), + [anon_sym_and_eq] = ACTIONS(4735), + [anon_sym_or_eq] = ACTIONS(4735), + [anon_sym_xor_eq] = ACTIONS(4735), + [anon_sym_LT_EQ_GT] = ACTIONS(4737), + [anon_sym_or] = ACTIONS(4735), + [anon_sym_and] = ACTIONS(4735), + [anon_sym_bitor] = ACTIONS(4735), + [anon_sym_xor] = ACTIONS(4735), + [anon_sym_bitand] = ACTIONS(4735), + [anon_sym_not_eq] = ACTIONS(4735), + [anon_sym_DASH_DASH] = ACTIONS(4737), + [anon_sym_PLUS_PLUS] = ACTIONS(4737), + [anon_sym_DOT] = ACTIONS(4735), + [anon_sym_DOT_STAR] = ACTIONS(4737), + [anon_sym_DASH_GT] = ACTIONS(4737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4735), + [anon_sym_decltype] = ACTIONS(4735), + }, + [STATE(2671)] = { + [sym_identifier] = ACTIONS(4789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4791), + [anon_sym_COMMA] = ACTIONS(4791), + [anon_sym_RPAREN] = ACTIONS(4791), + [aux_sym_preproc_if_token2] = ACTIONS(4791), + [aux_sym_preproc_else_token1] = ACTIONS(4791), + [aux_sym_preproc_elif_token1] = ACTIONS(4789), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4791), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4791), + [anon_sym_LPAREN2] = ACTIONS(4791), + [anon_sym_DASH] = ACTIONS(4789), + [anon_sym_PLUS] = ACTIONS(4789), + [anon_sym_STAR] = ACTIONS(4789), + [anon_sym_SLASH] = ACTIONS(4789), + [anon_sym_PERCENT] = ACTIONS(4789), + [anon_sym_PIPE_PIPE] = ACTIONS(4791), + [anon_sym_AMP_AMP] = ACTIONS(4791), + [anon_sym_PIPE] = ACTIONS(4789), + [anon_sym_CARET] = ACTIONS(4789), + [anon_sym_AMP] = ACTIONS(4789), + [anon_sym_EQ_EQ] = ACTIONS(4791), + [anon_sym_BANG_EQ] = ACTIONS(4791), + [anon_sym_GT] = ACTIONS(4789), + [anon_sym_GT_EQ] = ACTIONS(4791), + [anon_sym_LT_EQ] = ACTIONS(4789), + [anon_sym_LT] = ACTIONS(4789), + [anon_sym_LT_LT] = ACTIONS(4789), + [anon_sym_GT_GT] = ACTIONS(4789), + [anon_sym_SEMI] = ACTIONS(4791), + [anon_sym___attribute__] = ACTIONS(4789), + [anon_sym___attribute] = ACTIONS(4789), + [anon_sym_LBRACE] = ACTIONS(4791), + [anon_sym_RBRACE] = ACTIONS(4791), + [anon_sym_LBRACK] = ACTIONS(4791), + [anon_sym_RBRACK] = ACTIONS(4791), + [anon_sym_EQ] = ACTIONS(4789), + [anon_sym_COLON] = ACTIONS(4791), + [anon_sym_QMARK] = ACTIONS(4791), + [anon_sym_STAR_EQ] = ACTIONS(4791), + [anon_sym_SLASH_EQ] = ACTIONS(4791), + [anon_sym_PERCENT_EQ] = ACTIONS(4791), + [anon_sym_PLUS_EQ] = ACTIONS(4791), + [anon_sym_DASH_EQ] = ACTIONS(4791), + [anon_sym_LT_LT_EQ] = ACTIONS(4791), + [anon_sym_GT_GT_EQ] = ACTIONS(4791), + [anon_sym_AMP_EQ] = ACTIONS(4791), + [anon_sym_CARET_EQ] = ACTIONS(4791), + [anon_sym_PIPE_EQ] = ACTIONS(4791), + [anon_sym_and_eq] = ACTIONS(4789), + [anon_sym_or_eq] = ACTIONS(4789), + [anon_sym_xor_eq] = ACTIONS(4789), + [anon_sym_LT_EQ_GT] = ACTIONS(4791), + [anon_sym_or] = ACTIONS(4789), + [anon_sym_and] = ACTIONS(4789), + [anon_sym_bitor] = ACTIONS(4789), + [anon_sym_xor] = ACTIONS(4789), + [anon_sym_bitand] = ACTIONS(4789), + [anon_sym_not_eq] = ACTIONS(4789), + [anon_sym_DASH_DASH] = ACTIONS(4791), + [anon_sym_PLUS_PLUS] = ACTIONS(4791), + [anon_sym_DOT] = ACTIONS(4789), + [anon_sym_DOT_STAR] = ACTIONS(4791), + [anon_sym_DASH_GT] = ACTIONS(4791), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4789), + [anon_sym_decltype] = ACTIONS(4789), + }, + [STATE(2672)] = { + [sym_identifier] = ACTIONS(5002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [aux_sym_preproc_if_token2] = ACTIONS(5004), + [aux_sym_preproc_else_token1] = ACTIONS(5004), + [aux_sym_preproc_elif_token1] = ACTIONS(5002), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5004), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5004), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5002), + [anon_sym_STAR] = ACTIONS(5002), + [anon_sym_SLASH] = ACTIONS(5002), + [anon_sym_PERCENT] = ACTIONS(5002), + [anon_sym_PIPE_PIPE] = ACTIONS(5004), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5002), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym_AMP] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(5004), + [anon_sym_BANG_EQ] = ACTIONS(5004), + [anon_sym_GT] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5004), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_LT] = ACTIONS(5002), + [anon_sym_LT_LT] = ACTIONS(5002), + [anon_sym_GT_GT] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym___attribute__] = ACTIONS(5002), + [anon_sym___attribute] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_RBRACE] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5004), + [anon_sym_RBRACK] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5002), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_QMARK] = ACTIONS(5004), + [anon_sym_STAR_EQ] = ACTIONS(5004), + [anon_sym_SLASH_EQ] = ACTIONS(5004), + [anon_sym_PERCENT_EQ] = ACTIONS(5004), + [anon_sym_PLUS_EQ] = ACTIONS(5004), + [anon_sym_DASH_EQ] = ACTIONS(5004), + [anon_sym_LT_LT_EQ] = ACTIONS(5004), + [anon_sym_GT_GT_EQ] = ACTIONS(5004), + [anon_sym_AMP_EQ] = ACTIONS(5004), + [anon_sym_CARET_EQ] = ACTIONS(5004), + [anon_sym_PIPE_EQ] = ACTIONS(5004), + [anon_sym_and_eq] = ACTIONS(5002), + [anon_sym_or_eq] = ACTIONS(5002), + [anon_sym_xor_eq] = ACTIONS(5002), + [anon_sym_LT_EQ_GT] = ACTIONS(5004), + [anon_sym_or] = ACTIONS(5002), + [anon_sym_and] = ACTIONS(5002), + [anon_sym_bitor] = ACTIONS(5002), + [anon_sym_xor] = ACTIONS(5002), + [anon_sym_bitand] = ACTIONS(5002), + [anon_sym_not_eq] = ACTIONS(5002), + [anon_sym_DASH_DASH] = ACTIONS(5004), + [anon_sym_PLUS_PLUS] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_DOT_STAR] = ACTIONS(5004), + [anon_sym_DASH_GT] = ACTIONS(5004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5002), + [anon_sym_decltype] = ACTIONS(5002), + }, + [STATE(2673)] = { + [sym_identifier] = ACTIONS(5006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [aux_sym_preproc_if_token2] = ACTIONS(5008), + [aux_sym_preproc_else_token1] = ACTIONS(5008), + [aux_sym_preproc_elif_token1] = ACTIONS(5006), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5008), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5008), + [anon_sym_LPAREN2] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5006), + [anon_sym_PERCENT] = ACTIONS(5006), + [anon_sym_PIPE_PIPE] = ACTIONS(5008), + [anon_sym_AMP_AMP] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_EQ_EQ] = ACTIONS(5008), + [anon_sym_BANG_EQ] = ACTIONS(5008), + [anon_sym_GT] = ACTIONS(5006), + [anon_sym_GT_EQ] = ACTIONS(5008), + [anon_sym_LT_EQ] = ACTIONS(5006), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_LT_LT] = ACTIONS(5006), + [anon_sym_GT_GT] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(5008), + [anon_sym___attribute__] = ACTIONS(5006), + [anon_sym___attribute] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_RBRACE] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5008), + [anon_sym_RBRACK] = ACTIONS(5008), + [anon_sym_EQ] = ACTIONS(5006), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_QMARK] = ACTIONS(5008), + [anon_sym_STAR_EQ] = ACTIONS(5008), + [anon_sym_SLASH_EQ] = ACTIONS(5008), + [anon_sym_PERCENT_EQ] = ACTIONS(5008), + [anon_sym_PLUS_EQ] = ACTIONS(5008), + [anon_sym_DASH_EQ] = ACTIONS(5008), + [anon_sym_LT_LT_EQ] = ACTIONS(5008), + [anon_sym_GT_GT_EQ] = ACTIONS(5008), + [anon_sym_AMP_EQ] = ACTIONS(5008), + [anon_sym_CARET_EQ] = ACTIONS(5008), + [anon_sym_PIPE_EQ] = ACTIONS(5008), + [anon_sym_and_eq] = ACTIONS(5006), + [anon_sym_or_eq] = ACTIONS(5006), + [anon_sym_xor_eq] = ACTIONS(5006), + [anon_sym_LT_EQ_GT] = ACTIONS(5008), + [anon_sym_or] = ACTIONS(5006), + [anon_sym_and] = ACTIONS(5006), + [anon_sym_bitor] = ACTIONS(5006), + [anon_sym_xor] = ACTIONS(5006), + [anon_sym_bitand] = ACTIONS(5006), + [anon_sym_not_eq] = ACTIONS(5006), + [anon_sym_DASH_DASH] = ACTIONS(5008), + [anon_sym_PLUS_PLUS] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_DOT_STAR] = ACTIONS(5008), + [anon_sym_DASH_GT] = ACTIONS(5008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5006), + [anon_sym_decltype] = ACTIONS(5006), + }, + [STATE(2674)] = { + [sym_identifier] = ACTIONS(5050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(5052), + [aux_sym_preproc_if_token2] = ACTIONS(5052), + [aux_sym_preproc_else_token1] = ACTIONS(5052), + [aux_sym_preproc_elif_token1] = ACTIONS(5050), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5052), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5052), + [anon_sym_LPAREN2] = ACTIONS(5052), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_STAR] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5050), + [anon_sym_PERCENT] = ACTIONS(5050), + [anon_sym_PIPE_PIPE] = ACTIONS(5052), + [anon_sym_AMP_AMP] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5050), + [anon_sym_CARET] = ACTIONS(5050), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_EQ_EQ] = ACTIONS(5052), + [anon_sym_BANG_EQ] = ACTIONS(5052), + [anon_sym_GT] = ACTIONS(5050), + [anon_sym_GT_EQ] = ACTIONS(5052), + [anon_sym_LT_EQ] = ACTIONS(5050), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym_LT_LT] = ACTIONS(5050), + [anon_sym_GT_GT] = ACTIONS(5050), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym___attribute__] = ACTIONS(5050), + [anon_sym___attribute] = ACTIONS(5050), + [anon_sym_LBRACE] = ACTIONS(5052), + [anon_sym_RBRACE] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5052), + [anon_sym_RBRACK] = ACTIONS(5052), + [anon_sym_EQ] = ACTIONS(5050), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_QMARK] = ACTIONS(5052), + [anon_sym_STAR_EQ] = ACTIONS(5052), + [anon_sym_SLASH_EQ] = ACTIONS(5052), + [anon_sym_PERCENT_EQ] = ACTIONS(5052), + [anon_sym_PLUS_EQ] = ACTIONS(5052), + [anon_sym_DASH_EQ] = ACTIONS(5052), + [anon_sym_LT_LT_EQ] = ACTIONS(5052), + [anon_sym_GT_GT_EQ] = ACTIONS(5052), + [anon_sym_AMP_EQ] = ACTIONS(5052), + [anon_sym_CARET_EQ] = ACTIONS(5052), + [anon_sym_PIPE_EQ] = ACTIONS(5052), + [anon_sym_and_eq] = ACTIONS(5050), + [anon_sym_or_eq] = ACTIONS(5050), + [anon_sym_xor_eq] = ACTIONS(5050), + [anon_sym_LT_EQ_GT] = ACTIONS(5052), + [anon_sym_or] = ACTIONS(5050), + [anon_sym_and] = ACTIONS(5050), + [anon_sym_bitor] = ACTIONS(5050), + [anon_sym_xor] = ACTIONS(5050), + [anon_sym_bitand] = ACTIONS(5050), + [anon_sym_not_eq] = ACTIONS(5050), + [anon_sym_DASH_DASH] = ACTIONS(5052), + [anon_sym_PLUS_PLUS] = ACTIONS(5052), + [anon_sym_DOT] = ACTIONS(5050), + [anon_sym_DOT_STAR] = ACTIONS(5052), + [anon_sym_DASH_GT] = ACTIONS(5052), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5050), + [anon_sym_decltype] = ACTIONS(5050), + }, + [STATE(2675)] = { + [sym_identifier] = ACTIONS(5054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_RPAREN] = ACTIONS(5056), + [aux_sym_preproc_if_token2] = ACTIONS(5056), + [aux_sym_preproc_else_token1] = ACTIONS(5056), + [aux_sym_preproc_elif_token1] = ACTIONS(5054), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5056), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5056), + [anon_sym_LPAREN2] = ACTIONS(5056), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_PLUS] = ACTIONS(5054), + [anon_sym_STAR] = ACTIONS(5054), + [anon_sym_SLASH] = ACTIONS(5054), + [anon_sym_PERCENT] = ACTIONS(5054), + [anon_sym_PIPE_PIPE] = ACTIONS(5056), + [anon_sym_AMP_AMP] = ACTIONS(5056), + [anon_sym_PIPE] = ACTIONS(5054), + [anon_sym_CARET] = ACTIONS(5054), + [anon_sym_AMP] = ACTIONS(5054), + [anon_sym_EQ_EQ] = ACTIONS(5056), + [anon_sym_BANG_EQ] = ACTIONS(5056), + [anon_sym_GT] = ACTIONS(5054), + [anon_sym_GT_EQ] = ACTIONS(5056), + [anon_sym_LT_EQ] = ACTIONS(5054), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_LT_LT] = ACTIONS(5054), + [anon_sym_GT_GT] = ACTIONS(5054), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym___attribute__] = ACTIONS(5054), + [anon_sym___attribute] = ACTIONS(5054), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_RBRACE] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_RBRACK] = ACTIONS(5056), + [anon_sym_EQ] = ACTIONS(5054), + [anon_sym_COLON] = ACTIONS(5056), + [anon_sym_QMARK] = ACTIONS(5056), + [anon_sym_STAR_EQ] = ACTIONS(5056), + [anon_sym_SLASH_EQ] = ACTIONS(5056), + [anon_sym_PERCENT_EQ] = ACTIONS(5056), + [anon_sym_PLUS_EQ] = ACTIONS(5056), + [anon_sym_DASH_EQ] = ACTIONS(5056), + [anon_sym_LT_LT_EQ] = ACTIONS(5056), + [anon_sym_GT_GT_EQ] = ACTIONS(5056), + [anon_sym_AMP_EQ] = ACTIONS(5056), + [anon_sym_CARET_EQ] = ACTIONS(5056), + [anon_sym_PIPE_EQ] = ACTIONS(5056), + [anon_sym_and_eq] = ACTIONS(5054), + [anon_sym_or_eq] = ACTIONS(5054), + [anon_sym_xor_eq] = ACTIONS(5054), + [anon_sym_LT_EQ_GT] = ACTIONS(5056), + [anon_sym_or] = ACTIONS(5054), + [anon_sym_and] = ACTIONS(5054), + [anon_sym_bitor] = ACTIONS(5054), + [anon_sym_xor] = ACTIONS(5054), + [anon_sym_bitand] = ACTIONS(5054), + [anon_sym_not_eq] = ACTIONS(5054), + [anon_sym_DASH_DASH] = ACTIONS(5056), + [anon_sym_PLUS_PLUS] = ACTIONS(5056), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_DOT_STAR] = ACTIONS(5056), + [anon_sym_DASH_GT] = ACTIONS(5056), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5054), + [anon_sym_decltype] = ACTIONS(5054), + }, + [STATE(2676)] = { + [sym_identifier] = ACTIONS(4898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [aux_sym_preproc_if_token2] = ACTIONS(4900), + [aux_sym_preproc_else_token1] = ACTIONS(4900), + [aux_sym_preproc_elif_token1] = ACTIONS(4898), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4900), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4898), + [anon_sym_STAR] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4898), + [anon_sym_PERCENT] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4900), + [anon_sym_AMP_AMP] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4900), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_LT_LT] = ACTIONS(4898), + [anon_sym_GT_GT] = ACTIONS(4898), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym___attribute__] = ACTIONS(4898), + [anon_sym___attribute] = ACTIONS(4898), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_RBRACE] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_RBRACK] = ACTIONS(4900), + [anon_sym_EQ] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_STAR_EQ] = ACTIONS(4900), + [anon_sym_SLASH_EQ] = ACTIONS(4900), + [anon_sym_PERCENT_EQ] = ACTIONS(4900), + [anon_sym_PLUS_EQ] = ACTIONS(4900), + [anon_sym_DASH_EQ] = ACTIONS(4900), + [anon_sym_LT_LT_EQ] = ACTIONS(4900), + [anon_sym_GT_GT_EQ] = ACTIONS(4900), + [anon_sym_AMP_EQ] = ACTIONS(4900), + [anon_sym_CARET_EQ] = ACTIONS(4900), + [anon_sym_PIPE_EQ] = ACTIONS(4900), + [anon_sym_and_eq] = ACTIONS(4898), + [anon_sym_or_eq] = ACTIONS(4898), + [anon_sym_xor_eq] = ACTIONS(4898), + [anon_sym_LT_EQ_GT] = ACTIONS(4900), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_bitor] = ACTIONS(4898), + [anon_sym_xor] = ACTIONS(4898), + [anon_sym_bitand] = ACTIONS(4898), + [anon_sym_not_eq] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4900), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_DOT_STAR] = ACTIONS(4900), + [anon_sym_DASH_GT] = ACTIONS(4900), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4898), + [anon_sym_decltype] = ACTIONS(4898), + }, + [STATE(2677)] = { + [sym_identifier] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1893), + [anon_sym_COMMA] = ACTIONS(1893), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_PLUS] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1903), + [anon_sym_PERCENT] = ACTIONS(1893), + [anon_sym_PIPE_PIPE] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_EQ_EQ] = ACTIONS(1893), + [anon_sym_BANG_EQ] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(1903), + [anon_sym_LT_EQ] = ACTIONS(1903), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_LT_LT] = ACTIONS(1893), + [anon_sym_GT_GT] = ACTIONS(1903), + [anon_sym___extension__] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1903), + [anon_sym___attribute] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_constexpr] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_restrict] = ACTIONS(1903), + [anon_sym___restrict__] = ACTIONS(1903), + [anon_sym__Atomic] = ACTIONS(1903), + [anon_sym__Noreturn] = ACTIONS(1903), + [anon_sym_noreturn] = ACTIONS(1903), + [anon_sym__Nonnull] = ACTIONS(1903), + [anon_sym_mutable] = ACTIONS(1903), + [anon_sym_constinit] = ACTIONS(1903), + [anon_sym_consteval] = ACTIONS(1903), + [anon_sym_alignas] = ACTIONS(1903), + [anon_sym__Alignas] = ACTIONS(1903), + [sym_primitive_type] = ACTIONS(1903), + [anon_sym_QMARK] = ACTIONS(1893), + [anon_sym_LT_EQ_GT] = ACTIONS(1893), + [anon_sym_or] = ACTIONS(1903), + [anon_sym_and] = ACTIONS(1903), + [anon_sym_bitor] = ACTIONS(1903), + [anon_sym_xor] = ACTIONS(1903), + [anon_sym_bitand] = ACTIONS(1903), + [anon_sym_not_eq] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1893), + [anon_sym_PLUS_PLUS] = ACTIONS(1893), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_STAR] = ACTIONS(1893), + [anon_sym_DASH_GT] = ACTIONS(1893), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1903), + [anon_sym_decltype] = ACTIONS(1903), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_GT2] = ACTIONS(1893), + [anon_sym_requires] = ACTIONS(1903), + }, + [STATE(2678)] = { + [sym_identifier] = ACTIONS(4946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4948), + [anon_sym_COMMA] = ACTIONS(4948), + [anon_sym_RPAREN] = ACTIONS(4948), + [aux_sym_preproc_if_token2] = ACTIONS(4948), + [aux_sym_preproc_else_token1] = ACTIONS(4948), + [aux_sym_preproc_elif_token1] = ACTIONS(4946), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4948), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4948), + [anon_sym_LPAREN2] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4946), + [anon_sym_PLUS] = ACTIONS(4946), + [anon_sym_STAR] = ACTIONS(4946), + [anon_sym_SLASH] = ACTIONS(4946), + [anon_sym_PERCENT] = ACTIONS(4946), + [anon_sym_PIPE_PIPE] = ACTIONS(4948), + [anon_sym_AMP_AMP] = ACTIONS(4948), + [anon_sym_PIPE] = ACTIONS(4946), + [anon_sym_CARET] = ACTIONS(4946), + [anon_sym_AMP] = ACTIONS(4946), + [anon_sym_EQ_EQ] = ACTIONS(4948), + [anon_sym_BANG_EQ] = ACTIONS(4948), + [anon_sym_GT] = ACTIONS(4946), + [anon_sym_GT_EQ] = ACTIONS(4948), + [anon_sym_LT_EQ] = ACTIONS(4946), + [anon_sym_LT] = ACTIONS(4946), + [anon_sym_LT_LT] = ACTIONS(4946), + [anon_sym_GT_GT] = ACTIONS(4946), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym___attribute__] = ACTIONS(4946), + [anon_sym___attribute] = ACTIONS(4946), + [anon_sym_LBRACE] = ACTIONS(4948), + [anon_sym_RBRACE] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4948), + [anon_sym_RBRACK] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4946), + [anon_sym_COLON] = ACTIONS(4948), + [anon_sym_QMARK] = ACTIONS(4948), + [anon_sym_STAR_EQ] = ACTIONS(4948), + [anon_sym_SLASH_EQ] = ACTIONS(4948), + [anon_sym_PERCENT_EQ] = ACTIONS(4948), + [anon_sym_PLUS_EQ] = ACTIONS(4948), + [anon_sym_DASH_EQ] = ACTIONS(4948), + [anon_sym_LT_LT_EQ] = ACTIONS(4948), + [anon_sym_GT_GT_EQ] = ACTIONS(4948), + [anon_sym_AMP_EQ] = ACTIONS(4948), + [anon_sym_CARET_EQ] = ACTIONS(4948), + [anon_sym_PIPE_EQ] = ACTIONS(4948), + [anon_sym_and_eq] = ACTIONS(4946), + [anon_sym_or_eq] = ACTIONS(4946), + [anon_sym_xor_eq] = ACTIONS(4946), + [anon_sym_LT_EQ_GT] = ACTIONS(4948), + [anon_sym_or] = ACTIONS(4946), + [anon_sym_and] = ACTIONS(4946), + [anon_sym_bitor] = ACTIONS(4946), + [anon_sym_xor] = ACTIONS(4946), + [anon_sym_bitand] = ACTIONS(4946), + [anon_sym_not_eq] = ACTIONS(4946), + [anon_sym_DASH_DASH] = ACTIONS(4948), + [anon_sym_PLUS_PLUS] = ACTIONS(4948), + [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_DOT_STAR] = ACTIONS(4948), + [anon_sym_DASH_GT] = ACTIONS(4948), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4946), + [anon_sym_decltype] = ACTIONS(4946), + }, + [STATE(2679)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2696), + [sym_identifier] = ACTIONS(5164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5166), + [anon_sym_COMMA] = ACTIONS(5166), + [aux_sym_preproc_if_token2] = ACTIONS(5166), + [aux_sym_preproc_else_token1] = ACTIONS(5166), + [aux_sym_preproc_elif_token1] = ACTIONS(5164), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5166), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5166), + [anon_sym_LPAREN2] = ACTIONS(5166), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5164), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_PERCENT] = ACTIONS(5164), + [anon_sym_PIPE_PIPE] = ACTIONS(5166), + [anon_sym_AMP_AMP] = ACTIONS(5166), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_CARET] = ACTIONS(5164), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_EQ_EQ] = ACTIONS(5166), + [anon_sym_BANG_EQ] = ACTIONS(5166), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_GT_EQ] = ACTIONS(5166), + [anon_sym_LT_EQ] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_LT_LT] = ACTIONS(5164), + [anon_sym_GT_GT] = ACTIONS(5164), + [anon_sym___attribute__] = ACTIONS(5164), + [anon_sym___attribute] = ACTIONS(5164), + [anon_sym_LBRACE] = ACTIONS(5166), + [anon_sym_signed] = ACTIONS(6825), + [anon_sym_unsigned] = ACTIONS(6825), + [anon_sym_long] = ACTIONS(6825), + [anon_sym_short] = ACTIONS(6825), + [anon_sym_LBRACK] = ACTIONS(5166), + [anon_sym_EQ] = ACTIONS(5164), + [anon_sym_QMARK] = ACTIONS(5166), + [anon_sym_STAR_EQ] = ACTIONS(5166), + [anon_sym_SLASH_EQ] = ACTIONS(5166), + [anon_sym_PERCENT_EQ] = ACTIONS(5166), + [anon_sym_PLUS_EQ] = ACTIONS(5166), + [anon_sym_DASH_EQ] = ACTIONS(5166), + [anon_sym_LT_LT_EQ] = ACTIONS(5166), + [anon_sym_GT_GT_EQ] = ACTIONS(5166), + [anon_sym_AMP_EQ] = ACTIONS(5166), + [anon_sym_CARET_EQ] = ACTIONS(5166), + [anon_sym_PIPE_EQ] = ACTIONS(5166), + [anon_sym_and_eq] = ACTIONS(5164), + [anon_sym_or_eq] = ACTIONS(5164), + [anon_sym_xor_eq] = ACTIONS(5164), + [anon_sym_LT_EQ_GT] = ACTIONS(5166), + [anon_sym_or] = ACTIONS(5164), + [anon_sym_and] = ACTIONS(5164), + [anon_sym_bitor] = ACTIONS(5164), + [anon_sym_xor] = ACTIONS(5164), + [anon_sym_bitand] = ACTIONS(5164), + [anon_sym_not_eq] = ACTIONS(5164), + [anon_sym_DASH_DASH] = ACTIONS(5166), + [anon_sym_PLUS_PLUS] = ACTIONS(5166), + [anon_sym_DOT] = ACTIONS(5164), + [anon_sym_DOT_STAR] = ACTIONS(5166), + [anon_sym_DASH_GT] = ACTIONS(5166), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5164), + [anon_sym_decltype] = ACTIONS(5164), + }, + [STATE(2680)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2696), + [sym_identifier] = ACTIONS(5156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5158), + [anon_sym_COMMA] = ACTIONS(5158), + [aux_sym_preproc_if_token2] = ACTIONS(5158), + [aux_sym_preproc_else_token1] = ACTIONS(5158), + [aux_sym_preproc_elif_token1] = ACTIONS(5156), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5158), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5158), + [anon_sym_LPAREN2] = ACTIONS(5158), + [anon_sym_DASH] = ACTIONS(5156), + [anon_sym_PLUS] = ACTIONS(5156), + [anon_sym_STAR] = ACTIONS(5156), + [anon_sym_SLASH] = ACTIONS(5156), + [anon_sym_PERCENT] = ACTIONS(5156), + [anon_sym_PIPE_PIPE] = ACTIONS(5158), + [anon_sym_AMP_AMP] = ACTIONS(5158), + [anon_sym_PIPE] = ACTIONS(5156), + [anon_sym_CARET] = ACTIONS(5156), + [anon_sym_AMP] = ACTIONS(5156), + [anon_sym_EQ_EQ] = ACTIONS(5158), + [anon_sym_BANG_EQ] = ACTIONS(5158), + [anon_sym_GT] = ACTIONS(5156), + [anon_sym_GT_EQ] = ACTIONS(5158), + [anon_sym_LT_EQ] = ACTIONS(5156), + [anon_sym_LT] = ACTIONS(5156), + [anon_sym_LT_LT] = ACTIONS(5156), + [anon_sym_GT_GT] = ACTIONS(5156), + [anon_sym___attribute__] = ACTIONS(5156), + [anon_sym___attribute] = ACTIONS(5156), + [anon_sym_LBRACE] = ACTIONS(5158), + [anon_sym_signed] = ACTIONS(6825), + [anon_sym_unsigned] = ACTIONS(6825), + [anon_sym_long] = ACTIONS(6825), + [anon_sym_short] = ACTIONS(6825), + [anon_sym_LBRACK] = ACTIONS(5158), + [anon_sym_EQ] = ACTIONS(5156), + [anon_sym_QMARK] = ACTIONS(5158), + [anon_sym_STAR_EQ] = ACTIONS(5158), + [anon_sym_SLASH_EQ] = ACTIONS(5158), + [anon_sym_PERCENT_EQ] = ACTIONS(5158), + [anon_sym_PLUS_EQ] = ACTIONS(5158), + [anon_sym_DASH_EQ] = ACTIONS(5158), + [anon_sym_LT_LT_EQ] = ACTIONS(5158), + [anon_sym_GT_GT_EQ] = ACTIONS(5158), + [anon_sym_AMP_EQ] = ACTIONS(5158), + [anon_sym_CARET_EQ] = ACTIONS(5158), + [anon_sym_PIPE_EQ] = ACTIONS(5158), + [anon_sym_and_eq] = ACTIONS(5156), + [anon_sym_or_eq] = ACTIONS(5156), + [anon_sym_xor_eq] = ACTIONS(5156), + [anon_sym_LT_EQ_GT] = ACTIONS(5158), + [anon_sym_or] = ACTIONS(5156), + [anon_sym_and] = ACTIONS(5156), + [anon_sym_bitor] = ACTIONS(5156), + [anon_sym_xor] = ACTIONS(5156), + [anon_sym_bitand] = ACTIONS(5156), + [anon_sym_not_eq] = ACTIONS(5156), + [anon_sym_DASH_DASH] = ACTIONS(5158), + [anon_sym_PLUS_PLUS] = ACTIONS(5158), + [anon_sym_DOT] = ACTIONS(5156), + [anon_sym_DOT_STAR] = ACTIONS(5158), + [anon_sym_DASH_GT] = ACTIONS(5158), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5156), + [anon_sym_decltype] = ACTIONS(5156), + }, + [STATE(2681)] = { + [sym_identifier] = ACTIONS(5058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5060), + [anon_sym_COMMA] = ACTIONS(5060), + [anon_sym_RPAREN] = ACTIONS(5060), + [aux_sym_preproc_if_token2] = ACTIONS(5060), + [aux_sym_preproc_else_token1] = ACTIONS(5060), + [aux_sym_preproc_elif_token1] = ACTIONS(5058), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5060), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5060), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_PLUS] = ACTIONS(5058), + [anon_sym_STAR] = ACTIONS(5058), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_PERCENT] = ACTIONS(5058), + [anon_sym_PIPE_PIPE] = ACTIONS(5060), + [anon_sym_AMP_AMP] = ACTIONS(5060), + [anon_sym_PIPE] = ACTIONS(5058), + [anon_sym_CARET] = ACTIONS(5058), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_EQ_EQ] = ACTIONS(5060), + [anon_sym_BANG_EQ] = ACTIONS(5060), + [anon_sym_GT] = ACTIONS(5058), + [anon_sym_GT_EQ] = ACTIONS(5060), + [anon_sym_LT_EQ] = ACTIONS(5058), + [anon_sym_LT] = ACTIONS(5058), + [anon_sym_LT_LT] = ACTIONS(5058), + [anon_sym_GT_GT] = ACTIONS(5058), + [anon_sym_SEMI] = ACTIONS(5060), + [anon_sym___attribute__] = ACTIONS(5058), + [anon_sym___attribute] = ACTIONS(5058), + [anon_sym_LBRACE] = ACTIONS(5060), + [anon_sym_RBRACE] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5060), + [anon_sym_RBRACK] = ACTIONS(5060), + [anon_sym_EQ] = ACTIONS(5058), + [anon_sym_COLON] = ACTIONS(5060), + [anon_sym_QMARK] = ACTIONS(5060), + [anon_sym_STAR_EQ] = ACTIONS(5060), + [anon_sym_SLASH_EQ] = ACTIONS(5060), + [anon_sym_PERCENT_EQ] = ACTIONS(5060), + [anon_sym_PLUS_EQ] = ACTIONS(5060), + [anon_sym_DASH_EQ] = ACTIONS(5060), + [anon_sym_LT_LT_EQ] = ACTIONS(5060), + [anon_sym_GT_GT_EQ] = ACTIONS(5060), + [anon_sym_AMP_EQ] = ACTIONS(5060), + [anon_sym_CARET_EQ] = ACTIONS(5060), + [anon_sym_PIPE_EQ] = ACTIONS(5060), + [anon_sym_and_eq] = ACTIONS(5058), + [anon_sym_or_eq] = ACTIONS(5058), + [anon_sym_xor_eq] = ACTIONS(5058), + [anon_sym_LT_EQ_GT] = ACTIONS(5060), + [anon_sym_or] = ACTIONS(5058), + [anon_sym_and] = ACTIONS(5058), + [anon_sym_bitor] = ACTIONS(5058), + [anon_sym_xor] = ACTIONS(5058), + [anon_sym_bitand] = ACTIONS(5058), + [anon_sym_not_eq] = ACTIONS(5058), + [anon_sym_DASH_DASH] = ACTIONS(5060), + [anon_sym_PLUS_PLUS] = ACTIONS(5060), + [anon_sym_DOT] = ACTIONS(5058), + [anon_sym_DOT_STAR] = ACTIONS(5060), + [anon_sym_DASH_GT] = ACTIONS(5060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5058), + [anon_sym_decltype] = ACTIONS(5058), + }, + [STATE(2682)] = { + [sym_attribute_declaration] = STATE(2682), + [aux_sym_attributed_declarator_repeat1] = STATE(2682), + [sym_identifier] = ACTIONS(6868), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6870), + [anon_sym_COMMA] = ACTIONS(6870), + [anon_sym_RPAREN] = ACTIONS(6870), + [aux_sym_preproc_if_token2] = ACTIONS(6870), + [aux_sym_preproc_else_token1] = ACTIONS(6870), + [aux_sym_preproc_elif_token1] = ACTIONS(6868), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6870), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6870), + [anon_sym_LPAREN2] = ACTIONS(6870), + [anon_sym_DASH] = ACTIONS(6868), + [anon_sym_PLUS] = ACTIONS(6868), + [anon_sym_STAR] = ACTIONS(6868), + [anon_sym_SLASH] = ACTIONS(6868), + [anon_sym_PERCENT] = ACTIONS(6868), + [anon_sym_PIPE_PIPE] = ACTIONS(6870), + [anon_sym_AMP_AMP] = ACTIONS(6870), + [anon_sym_PIPE] = ACTIONS(6868), + [anon_sym_CARET] = ACTIONS(6868), + [anon_sym_AMP] = ACTIONS(6868), + [anon_sym_EQ_EQ] = ACTIONS(6870), + [anon_sym_BANG_EQ] = ACTIONS(6870), + [anon_sym_GT] = ACTIONS(6868), + [anon_sym_GT_EQ] = ACTIONS(6870), + [anon_sym_LT_EQ] = ACTIONS(6868), + [anon_sym_LT] = ACTIONS(6868), + [anon_sym_LT_LT] = ACTIONS(6868), + [anon_sym_GT_GT] = ACTIONS(6868), + [anon_sym_SEMI] = ACTIONS(6870), + [anon_sym___attribute__] = ACTIONS(6868), + [anon_sym___attribute] = ACTIONS(6868), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6872), + [anon_sym_RBRACE] = ACTIONS(6870), + [anon_sym_LBRACK] = ACTIONS(6868), + [anon_sym_RBRACK] = ACTIONS(6870), + [anon_sym_EQ] = ACTIONS(6868), + [anon_sym_COLON] = ACTIONS(6870), + [anon_sym_QMARK] = ACTIONS(6870), + [anon_sym_STAR_EQ] = ACTIONS(6870), + [anon_sym_SLASH_EQ] = ACTIONS(6870), + [anon_sym_PERCENT_EQ] = ACTIONS(6870), + [anon_sym_PLUS_EQ] = ACTIONS(6870), + [anon_sym_DASH_EQ] = ACTIONS(6870), + [anon_sym_LT_LT_EQ] = ACTIONS(6870), + [anon_sym_GT_GT_EQ] = ACTIONS(6870), + [anon_sym_AMP_EQ] = ACTIONS(6870), + [anon_sym_CARET_EQ] = ACTIONS(6870), + [anon_sym_PIPE_EQ] = ACTIONS(6870), + [anon_sym_and_eq] = ACTIONS(6868), + [anon_sym_or_eq] = ACTIONS(6868), + [anon_sym_xor_eq] = ACTIONS(6868), + [anon_sym_LT_EQ_GT] = ACTIONS(6870), + [anon_sym_or] = ACTIONS(6868), + [anon_sym_and] = ACTIONS(6868), + [anon_sym_bitor] = ACTIONS(6868), + [anon_sym_xor] = ACTIONS(6868), + [anon_sym_bitand] = ACTIONS(6868), + [anon_sym_not_eq] = ACTIONS(6868), + [anon_sym_DASH_DASH] = ACTIONS(6870), + [anon_sym_PLUS_PLUS] = ACTIONS(6870), + [anon_sym_DOT] = ACTIONS(6868), + [anon_sym_DOT_STAR] = ACTIONS(6870), + [anon_sym_DASH_GT] = ACTIONS(6870), + [sym_comment] = ACTIONS(3), + }, + [STATE(2683)] = { + [sym_identifier] = ACTIONS(5062), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [aux_sym_preproc_if_token2] = ACTIONS(5064), + [aux_sym_preproc_else_token1] = ACTIONS(5064), + [aux_sym_preproc_elif_token1] = ACTIONS(5062), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5064), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5064), + [anon_sym_LPAREN2] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_PLUS] = ACTIONS(5062), + [anon_sym_STAR] = ACTIONS(5062), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_PERCENT] = ACTIONS(5062), + [anon_sym_PIPE_PIPE] = ACTIONS(5064), + [anon_sym_AMP_AMP] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5062), + [anon_sym_CARET] = ACTIONS(5062), + [anon_sym_AMP] = ACTIONS(5062), + [anon_sym_EQ_EQ] = ACTIONS(5064), + [anon_sym_BANG_EQ] = ACTIONS(5064), + [anon_sym_GT] = ACTIONS(5062), + [anon_sym_GT_EQ] = ACTIONS(5064), + [anon_sym_LT_EQ] = ACTIONS(5062), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_LT_LT] = ACTIONS(5062), + [anon_sym_GT_GT] = ACTIONS(5062), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym___attribute__] = ACTIONS(5062), + [anon_sym___attribute] = ACTIONS(5062), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_RBRACE] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_RBRACK] = ACTIONS(5064), + [anon_sym_EQ] = ACTIONS(5062), + [anon_sym_COLON] = ACTIONS(5064), + [anon_sym_QMARK] = ACTIONS(5064), + [anon_sym_STAR_EQ] = ACTIONS(5064), + [anon_sym_SLASH_EQ] = ACTIONS(5064), + [anon_sym_PERCENT_EQ] = ACTIONS(5064), + [anon_sym_PLUS_EQ] = ACTIONS(5064), + [anon_sym_DASH_EQ] = ACTIONS(5064), + [anon_sym_LT_LT_EQ] = ACTIONS(5064), + [anon_sym_GT_GT_EQ] = ACTIONS(5064), + [anon_sym_AMP_EQ] = ACTIONS(5064), + [anon_sym_CARET_EQ] = ACTIONS(5064), + [anon_sym_PIPE_EQ] = ACTIONS(5064), + [anon_sym_and_eq] = ACTIONS(5062), + [anon_sym_or_eq] = ACTIONS(5062), + [anon_sym_xor_eq] = ACTIONS(5062), + [anon_sym_LT_EQ_GT] = ACTIONS(5064), + [anon_sym_or] = ACTIONS(5062), + [anon_sym_and] = ACTIONS(5062), + [anon_sym_bitor] = ACTIONS(5062), + [anon_sym_xor] = ACTIONS(5062), + [anon_sym_bitand] = ACTIONS(5062), + [anon_sym_not_eq] = ACTIONS(5062), + [anon_sym_DASH_DASH] = ACTIONS(5064), + [anon_sym_PLUS_PLUS] = ACTIONS(5064), + [anon_sym_DOT] = ACTIONS(5062), + [anon_sym_DOT_STAR] = ACTIONS(5064), + [anon_sym_DASH_GT] = ACTIONS(5064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5062), + [anon_sym_decltype] = ACTIONS(5062), + }, + [STATE(2684)] = { + [sym_identifier] = ACTIONS(4918), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_COMMA] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [aux_sym_preproc_if_token2] = ACTIONS(4920), + [aux_sym_preproc_else_token1] = ACTIONS(4920), + [aux_sym_preproc_elif_token1] = ACTIONS(4918), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4920), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4918), + [anon_sym_PLUS] = ACTIONS(4918), + [anon_sym_STAR] = ACTIONS(4918), + [anon_sym_SLASH] = ACTIONS(4918), + [anon_sym_PERCENT] = ACTIONS(4918), + [anon_sym_PIPE_PIPE] = ACTIONS(4920), + [anon_sym_AMP_AMP] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4918), + [anon_sym_CARET] = ACTIONS(4918), + [anon_sym_AMP] = ACTIONS(4918), + [anon_sym_EQ_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4918), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_LT_EQ] = ACTIONS(4918), + [anon_sym_LT] = ACTIONS(4918), + [anon_sym_LT_LT] = ACTIONS(4918), + [anon_sym_GT_GT] = ACTIONS(4918), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym___attribute__] = ACTIONS(4918), + [anon_sym___attribute] = ACTIONS(4918), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_RBRACK] = ACTIONS(4920), + [anon_sym_EQ] = ACTIONS(4918), + [anon_sym_COLON] = ACTIONS(4920), + [anon_sym_QMARK] = ACTIONS(4920), + [anon_sym_STAR_EQ] = ACTIONS(4920), + [anon_sym_SLASH_EQ] = ACTIONS(4920), + [anon_sym_PERCENT_EQ] = ACTIONS(4920), + [anon_sym_PLUS_EQ] = ACTIONS(4920), + [anon_sym_DASH_EQ] = ACTIONS(4920), + [anon_sym_LT_LT_EQ] = ACTIONS(4920), + [anon_sym_GT_GT_EQ] = ACTIONS(4920), + [anon_sym_AMP_EQ] = ACTIONS(4920), + [anon_sym_CARET_EQ] = ACTIONS(4920), + [anon_sym_PIPE_EQ] = ACTIONS(4920), + [anon_sym_and_eq] = ACTIONS(4918), + [anon_sym_or_eq] = ACTIONS(4918), + [anon_sym_xor_eq] = ACTIONS(4918), + [anon_sym_LT_EQ_GT] = ACTIONS(4920), + [anon_sym_or] = ACTIONS(4918), + [anon_sym_and] = ACTIONS(4918), + [anon_sym_bitor] = ACTIONS(4918), + [anon_sym_xor] = ACTIONS(4918), + [anon_sym_bitand] = ACTIONS(4918), + [anon_sym_not_eq] = ACTIONS(4918), + [anon_sym_DASH_DASH] = ACTIONS(4920), + [anon_sym_PLUS_PLUS] = ACTIONS(4920), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_DOT_STAR] = ACTIONS(4920), + [anon_sym_DASH_GT] = ACTIONS(4920), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4918), + [anon_sym_decltype] = ACTIONS(4918), + }, + [STATE(2685)] = { + [sym_identifier] = ACTIONS(4922), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_RPAREN] = ACTIONS(4924), + [aux_sym_preproc_if_token2] = ACTIONS(4924), + [aux_sym_preproc_else_token1] = ACTIONS(4924), + [aux_sym_preproc_elif_token1] = ACTIONS(4922), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4924), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4924), + [anon_sym_LPAREN2] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4922), + [anon_sym_PLUS] = ACTIONS(4922), + [anon_sym_STAR] = ACTIONS(4922), + [anon_sym_SLASH] = ACTIONS(4922), + [anon_sym_PERCENT] = ACTIONS(4922), + [anon_sym_PIPE_PIPE] = ACTIONS(4924), + [anon_sym_AMP_AMP] = ACTIONS(4924), + [anon_sym_PIPE] = ACTIONS(4922), + [anon_sym_CARET] = ACTIONS(4922), + [anon_sym_AMP] = ACTIONS(4922), + [anon_sym_EQ_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ] = ACTIONS(4924), + [anon_sym_GT] = ACTIONS(4922), + [anon_sym_GT_EQ] = ACTIONS(4924), + [anon_sym_LT_EQ] = ACTIONS(4922), + [anon_sym_LT] = ACTIONS(4922), + [anon_sym_LT_LT] = ACTIONS(4922), + [anon_sym_GT_GT] = ACTIONS(4922), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym___attribute__] = ACTIONS(4922), + [anon_sym___attribute] = ACTIONS(4922), + [anon_sym_LBRACE] = ACTIONS(4924), + [anon_sym_RBRACE] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym_RBRACK] = ACTIONS(4924), + [anon_sym_EQ] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_QMARK] = ACTIONS(4924), + [anon_sym_STAR_EQ] = ACTIONS(4924), + [anon_sym_SLASH_EQ] = ACTIONS(4924), + [anon_sym_PERCENT_EQ] = ACTIONS(4924), + [anon_sym_PLUS_EQ] = ACTIONS(4924), + [anon_sym_DASH_EQ] = ACTIONS(4924), + [anon_sym_LT_LT_EQ] = ACTIONS(4924), + [anon_sym_GT_GT_EQ] = ACTIONS(4924), + [anon_sym_AMP_EQ] = ACTIONS(4924), + [anon_sym_CARET_EQ] = ACTIONS(4924), + [anon_sym_PIPE_EQ] = ACTIONS(4924), + [anon_sym_and_eq] = ACTIONS(4922), + [anon_sym_or_eq] = ACTIONS(4922), + [anon_sym_xor_eq] = ACTIONS(4922), + [anon_sym_LT_EQ_GT] = ACTIONS(4924), + [anon_sym_or] = ACTIONS(4922), + [anon_sym_and] = ACTIONS(4922), + [anon_sym_bitor] = ACTIONS(4922), + [anon_sym_xor] = ACTIONS(4922), + [anon_sym_bitand] = ACTIONS(4922), + [anon_sym_not_eq] = ACTIONS(4922), + [anon_sym_DASH_DASH] = ACTIONS(4924), + [anon_sym_PLUS_PLUS] = ACTIONS(4924), + [anon_sym_DOT] = ACTIONS(4922), + [anon_sym_DOT_STAR] = ACTIONS(4924), + [anon_sym_DASH_GT] = ACTIONS(4924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4922), + [anon_sym_decltype] = ACTIONS(4922), + }, + [STATE(2686)] = { + [sym_identifier] = ACTIONS(5046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_RPAREN] = ACTIONS(5048), + [aux_sym_preproc_if_token2] = ACTIONS(5048), + [aux_sym_preproc_else_token1] = ACTIONS(5048), + [aux_sym_preproc_elif_token1] = ACTIONS(5046), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5048), + [anon_sym_LPAREN2] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_PLUS] = ACTIONS(5046), + [anon_sym_STAR] = ACTIONS(5046), + [anon_sym_SLASH] = ACTIONS(5046), + [anon_sym_PERCENT] = ACTIONS(5046), + [anon_sym_PIPE_PIPE] = ACTIONS(5048), + [anon_sym_AMP_AMP] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5046), + [anon_sym_CARET] = ACTIONS(5046), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_EQ_EQ] = ACTIONS(5048), + [anon_sym_BANG_EQ] = ACTIONS(5048), + [anon_sym_GT] = ACTIONS(5046), + [anon_sym_GT_EQ] = ACTIONS(5048), + [anon_sym_LT_EQ] = ACTIONS(5046), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_LT_LT] = ACTIONS(5046), + [anon_sym_GT_GT] = ACTIONS(5046), + [anon_sym_SEMI] = ACTIONS(5048), + [anon_sym___attribute__] = ACTIONS(5046), + [anon_sym___attribute] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5048), + [anon_sym_RBRACE] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5048), + [anon_sym_RBRACK] = ACTIONS(5048), + [anon_sym_EQ] = ACTIONS(5046), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_QMARK] = ACTIONS(5048), + [anon_sym_STAR_EQ] = ACTIONS(5048), + [anon_sym_SLASH_EQ] = ACTIONS(5048), + [anon_sym_PERCENT_EQ] = ACTIONS(5048), + [anon_sym_PLUS_EQ] = ACTIONS(5048), + [anon_sym_DASH_EQ] = ACTIONS(5048), + [anon_sym_LT_LT_EQ] = ACTIONS(5048), + [anon_sym_GT_GT_EQ] = ACTIONS(5048), + [anon_sym_AMP_EQ] = ACTIONS(5048), + [anon_sym_CARET_EQ] = ACTIONS(5048), + [anon_sym_PIPE_EQ] = ACTIONS(5048), + [anon_sym_and_eq] = ACTIONS(5046), + [anon_sym_or_eq] = ACTIONS(5046), + [anon_sym_xor_eq] = ACTIONS(5046), + [anon_sym_LT_EQ_GT] = ACTIONS(5048), + [anon_sym_or] = ACTIONS(5046), + [anon_sym_and] = ACTIONS(5046), + [anon_sym_bitor] = ACTIONS(5046), + [anon_sym_xor] = ACTIONS(5046), + [anon_sym_bitand] = ACTIONS(5046), + [anon_sym_not_eq] = ACTIONS(5046), + [anon_sym_DASH_DASH] = ACTIONS(5048), + [anon_sym_PLUS_PLUS] = ACTIONS(5048), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_DOT_STAR] = ACTIONS(5048), + [anon_sym_DASH_GT] = ACTIONS(5048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5046), + [anon_sym_decltype] = ACTIONS(5046), + }, + [STATE(2687)] = { + [sym_identifier] = ACTIONS(4898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [aux_sym_preproc_if_token2] = ACTIONS(4900), + [aux_sym_preproc_else_token1] = ACTIONS(4900), + [aux_sym_preproc_elif_token1] = ACTIONS(4898), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4900), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4898), + [anon_sym_STAR] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4898), + [anon_sym_PERCENT] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4900), + [anon_sym_AMP_AMP] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4900), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_LT_LT] = ACTIONS(4898), + [anon_sym_GT_GT] = ACTIONS(4898), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym___attribute__] = ACTIONS(4898), + [anon_sym___attribute] = ACTIONS(4898), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_RBRACE] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_RBRACK] = ACTIONS(4900), + [anon_sym_EQ] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_STAR_EQ] = ACTIONS(4900), + [anon_sym_SLASH_EQ] = ACTIONS(4900), + [anon_sym_PERCENT_EQ] = ACTIONS(4900), + [anon_sym_PLUS_EQ] = ACTIONS(4900), + [anon_sym_DASH_EQ] = ACTIONS(4900), + [anon_sym_LT_LT_EQ] = ACTIONS(4900), + [anon_sym_GT_GT_EQ] = ACTIONS(4900), + [anon_sym_AMP_EQ] = ACTIONS(4900), + [anon_sym_CARET_EQ] = ACTIONS(4900), + [anon_sym_PIPE_EQ] = ACTIONS(4900), + [anon_sym_and_eq] = ACTIONS(4898), + [anon_sym_or_eq] = ACTIONS(4898), + [anon_sym_xor_eq] = ACTIONS(4898), + [anon_sym_LT_EQ_GT] = ACTIONS(4900), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_bitor] = ACTIONS(4898), + [anon_sym_xor] = ACTIONS(4898), + [anon_sym_bitand] = ACTIONS(4898), + [anon_sym_not_eq] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4900), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_DOT_STAR] = ACTIONS(4900), + [anon_sym_DASH_GT] = ACTIONS(4900), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4898), + [anon_sym_decltype] = ACTIONS(4898), + }, + [STATE(2688)] = { + [sym_identifier] = ACTIONS(4898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [aux_sym_preproc_if_token2] = ACTIONS(4900), + [aux_sym_preproc_else_token1] = ACTIONS(4900), + [aux_sym_preproc_elif_token1] = ACTIONS(4898), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4900), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4898), + [anon_sym_STAR] = ACTIONS(4898), + [anon_sym_SLASH] = ACTIONS(4898), + [anon_sym_PERCENT] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4900), + [anon_sym_AMP_AMP] = ACTIONS(4900), + [anon_sym_PIPE] = ACTIONS(4898), + [anon_sym_CARET] = ACTIONS(4898), + [anon_sym_AMP] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4900), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4898), + [anon_sym_LT_LT] = ACTIONS(4898), + [anon_sym_GT_GT] = ACTIONS(4898), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym___attribute__] = ACTIONS(4898), + [anon_sym___attribute] = ACTIONS(4898), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_RBRACE] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_RBRACK] = ACTIONS(4900), + [anon_sym_EQ] = ACTIONS(4898), + [anon_sym_COLON] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4900), + [anon_sym_STAR_EQ] = ACTIONS(4900), + [anon_sym_SLASH_EQ] = ACTIONS(4900), + [anon_sym_PERCENT_EQ] = ACTIONS(4900), + [anon_sym_PLUS_EQ] = ACTIONS(4900), + [anon_sym_DASH_EQ] = ACTIONS(4900), + [anon_sym_LT_LT_EQ] = ACTIONS(4900), + [anon_sym_GT_GT_EQ] = ACTIONS(4900), + [anon_sym_AMP_EQ] = ACTIONS(4900), + [anon_sym_CARET_EQ] = ACTIONS(4900), + [anon_sym_PIPE_EQ] = ACTIONS(4900), + [anon_sym_and_eq] = ACTIONS(4898), + [anon_sym_or_eq] = ACTIONS(4898), + [anon_sym_xor_eq] = ACTIONS(4898), + [anon_sym_LT_EQ_GT] = ACTIONS(4900), + [anon_sym_or] = ACTIONS(4898), + [anon_sym_and] = ACTIONS(4898), + [anon_sym_bitor] = ACTIONS(4898), + [anon_sym_xor] = ACTIONS(4898), + [anon_sym_bitand] = ACTIONS(4898), + [anon_sym_not_eq] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4900), + [anon_sym_PLUS_PLUS] = ACTIONS(4900), + [anon_sym_DOT] = ACTIONS(4898), + [anon_sym_DOT_STAR] = ACTIONS(4900), + [anon_sym_DASH_GT] = ACTIONS(4900), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4898), + [anon_sym_decltype] = ACTIONS(4898), + }, + [STATE(2689)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(4020), + [sym_raw_string_literal] = STATE(3007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(6875), + [anon_sym_RPAREN] = ACTIONS(6875), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_and_eq] = ACTIONS(3125), + [anon_sym_or_eq] = ACTIONS(3125), + [anon_sym_xor_eq] = ACTIONS(3125), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [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), + }, + [STATE(2690)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(4020), + [sym_raw_string_literal] = STATE(3007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6743), + [anon_sym_COMMA] = ACTIONS(6877), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_RBRACK] = ACTIONS(6879), + [anon_sym_EQ] = ACTIONS(6753), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(6755), + [anon_sym_SLASH_EQ] = ACTIONS(6755), + [anon_sym_PERCENT_EQ] = ACTIONS(6755), + [anon_sym_PLUS_EQ] = ACTIONS(6755), + [anon_sym_DASH_EQ] = ACTIONS(6755), + [anon_sym_LT_LT_EQ] = ACTIONS(6755), + [anon_sym_GT_GT_EQ] = ACTIONS(6755), + [anon_sym_AMP_EQ] = ACTIONS(6755), + [anon_sym_CARET_EQ] = ACTIONS(6755), + [anon_sym_PIPE_EQ] = ACTIONS(6755), + [anon_sym_and_eq] = ACTIONS(6755), + [anon_sym_or_eq] = ACTIONS(6755), + [anon_sym_xor_eq] = ACTIONS(6755), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [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), + }, + [STATE(2691)] = { + [sym_identifier] = ACTIONS(4950), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4952), + [anon_sym_COMMA] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [aux_sym_preproc_if_token2] = ACTIONS(4952), + [aux_sym_preproc_else_token1] = ACTIONS(4952), + [aux_sym_preproc_elif_token1] = ACTIONS(4950), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4952), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4952), + [anon_sym_LPAREN2] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_PLUS] = ACTIONS(4950), + [anon_sym_STAR] = ACTIONS(4950), + [anon_sym_SLASH] = ACTIONS(4950), + [anon_sym_PERCENT] = ACTIONS(4950), + [anon_sym_PIPE_PIPE] = ACTIONS(4952), + [anon_sym_AMP_AMP] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4950), + [anon_sym_CARET] = ACTIONS(4950), + [anon_sym_AMP] = ACTIONS(4950), + [anon_sym_EQ_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ] = ACTIONS(4952), + [anon_sym_GT] = ACTIONS(4950), + [anon_sym_GT_EQ] = ACTIONS(4952), + [anon_sym_LT_EQ] = ACTIONS(4950), + [anon_sym_LT] = ACTIONS(4950), + [anon_sym_LT_LT] = ACTIONS(4950), + [anon_sym_GT_GT] = ACTIONS(4950), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym___attribute__] = ACTIONS(4950), + [anon_sym___attribute] = ACTIONS(4950), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_RBRACE] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4952), + [anon_sym_RBRACK] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4950), + [anon_sym_COLON] = ACTIONS(4952), + [anon_sym_QMARK] = ACTIONS(4952), + [anon_sym_STAR_EQ] = ACTIONS(4952), + [anon_sym_SLASH_EQ] = ACTIONS(4952), + [anon_sym_PERCENT_EQ] = ACTIONS(4952), + [anon_sym_PLUS_EQ] = ACTIONS(4952), + [anon_sym_DASH_EQ] = ACTIONS(4952), + [anon_sym_LT_LT_EQ] = ACTIONS(4952), + [anon_sym_GT_GT_EQ] = ACTIONS(4952), + [anon_sym_AMP_EQ] = ACTIONS(4952), + [anon_sym_CARET_EQ] = ACTIONS(4952), + [anon_sym_PIPE_EQ] = ACTIONS(4952), + [anon_sym_and_eq] = ACTIONS(4950), + [anon_sym_or_eq] = ACTIONS(4950), + [anon_sym_xor_eq] = ACTIONS(4950), + [anon_sym_LT_EQ_GT] = ACTIONS(4952), + [anon_sym_or] = ACTIONS(4950), + [anon_sym_and] = ACTIONS(4950), + [anon_sym_bitor] = ACTIONS(4950), + [anon_sym_xor] = ACTIONS(4950), + [anon_sym_bitand] = ACTIONS(4950), + [anon_sym_not_eq] = ACTIONS(4950), + [anon_sym_DASH_DASH] = ACTIONS(4952), + [anon_sym_PLUS_PLUS] = ACTIONS(4952), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_DOT_STAR] = ACTIONS(4952), + [anon_sym_DASH_GT] = ACTIONS(4952), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4950), + [anon_sym_decltype] = ACTIONS(4950), + }, + [STATE(2692)] = { + [sym_identifier] = ACTIONS(4906), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4908), + [anon_sym_COMMA] = ACTIONS(4908), + [anon_sym_RPAREN] = ACTIONS(4908), + [aux_sym_preproc_if_token2] = ACTIONS(4908), + [aux_sym_preproc_else_token1] = ACTIONS(4908), + [aux_sym_preproc_elif_token1] = ACTIONS(4906), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4908), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4906), + [anon_sym_PLUS] = ACTIONS(4906), + [anon_sym_STAR] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4906), + [anon_sym_PERCENT] = ACTIONS(4906), + [anon_sym_PIPE_PIPE] = ACTIONS(4908), + [anon_sym_AMP_AMP] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4906), + [anon_sym_CARET] = ACTIONS(4906), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_EQ_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ] = ACTIONS(4908), + [anon_sym_GT] = ACTIONS(4906), + [anon_sym_GT_EQ] = ACTIONS(4908), + [anon_sym_LT_EQ] = ACTIONS(4906), + [anon_sym_LT] = ACTIONS(4906), + [anon_sym_LT_LT] = ACTIONS(4906), + [anon_sym_GT_GT] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym___attribute__] = ACTIONS(4906), + [anon_sym___attribute] = ACTIONS(4906), + [anon_sym_LBRACE] = ACTIONS(4908), + [anon_sym_RBRACE] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym_RBRACK] = ACTIONS(4908), + [anon_sym_EQ] = ACTIONS(4906), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_QMARK] = ACTIONS(4908), + [anon_sym_STAR_EQ] = ACTIONS(4908), + [anon_sym_SLASH_EQ] = ACTIONS(4908), + [anon_sym_PERCENT_EQ] = ACTIONS(4908), + [anon_sym_PLUS_EQ] = ACTIONS(4908), + [anon_sym_DASH_EQ] = ACTIONS(4908), + [anon_sym_LT_LT_EQ] = ACTIONS(4908), + [anon_sym_GT_GT_EQ] = ACTIONS(4908), + [anon_sym_AMP_EQ] = ACTIONS(4908), + [anon_sym_CARET_EQ] = ACTIONS(4908), + [anon_sym_PIPE_EQ] = ACTIONS(4908), + [anon_sym_and_eq] = ACTIONS(4906), + [anon_sym_or_eq] = ACTIONS(4906), + [anon_sym_xor_eq] = ACTIONS(4906), + [anon_sym_LT_EQ_GT] = ACTIONS(4908), + [anon_sym_or] = ACTIONS(4906), + [anon_sym_and] = ACTIONS(4906), + [anon_sym_bitor] = ACTIONS(4906), + [anon_sym_xor] = ACTIONS(4906), + [anon_sym_bitand] = ACTIONS(4906), + [anon_sym_not_eq] = ACTIONS(4906), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_DOT] = ACTIONS(4906), + [anon_sym_DOT_STAR] = ACTIONS(4908), + [anon_sym_DASH_GT] = ACTIONS(4908), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4906), + [anon_sym_decltype] = ACTIONS(4906), + }, + [STATE(2693)] = { + [sym_identifier] = ACTIONS(4954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4956), + [anon_sym_COMMA] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [aux_sym_preproc_if_token2] = ACTIONS(4956), + [aux_sym_preproc_else_token1] = ACTIONS(4956), + [aux_sym_preproc_elif_token1] = ACTIONS(4954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4954), + [anon_sym_PLUS] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4954), + [anon_sym_SLASH] = ACTIONS(4954), + [anon_sym_PERCENT] = ACTIONS(4954), + [anon_sym_PIPE_PIPE] = ACTIONS(4956), + [anon_sym_AMP_AMP] = ACTIONS(4956), + [anon_sym_PIPE] = ACTIONS(4954), + [anon_sym_CARET] = ACTIONS(4954), + [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_EQ_EQ] = ACTIONS(4956), + [anon_sym_BANG_EQ] = ACTIONS(4956), + [anon_sym_GT] = ACTIONS(4954), + [anon_sym_GT_EQ] = ACTIONS(4956), + [anon_sym_LT_EQ] = ACTIONS(4954), + [anon_sym_LT] = ACTIONS(4954), + [anon_sym_LT_LT] = ACTIONS(4954), + [anon_sym_GT_GT] = ACTIONS(4954), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym___attribute__] = ACTIONS(4954), + [anon_sym___attribute] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4956), + [anon_sym_RBRACK] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4954), + [anon_sym_COLON] = ACTIONS(4956), + [anon_sym_QMARK] = ACTIONS(4956), + [anon_sym_STAR_EQ] = ACTIONS(4956), + [anon_sym_SLASH_EQ] = ACTIONS(4956), + [anon_sym_PERCENT_EQ] = ACTIONS(4956), + [anon_sym_PLUS_EQ] = ACTIONS(4956), + [anon_sym_DASH_EQ] = ACTIONS(4956), + [anon_sym_LT_LT_EQ] = ACTIONS(4956), + [anon_sym_GT_GT_EQ] = ACTIONS(4956), + [anon_sym_AMP_EQ] = ACTIONS(4956), + [anon_sym_CARET_EQ] = ACTIONS(4956), + [anon_sym_PIPE_EQ] = ACTIONS(4956), + [anon_sym_and_eq] = ACTIONS(4954), + [anon_sym_or_eq] = ACTIONS(4954), + [anon_sym_xor_eq] = ACTIONS(4954), + [anon_sym_LT_EQ_GT] = ACTIONS(4956), + [anon_sym_or] = ACTIONS(4954), + [anon_sym_and] = ACTIONS(4954), + [anon_sym_bitor] = ACTIONS(4954), + [anon_sym_xor] = ACTIONS(4954), + [anon_sym_bitand] = ACTIONS(4954), + [anon_sym_not_eq] = ACTIONS(4954), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_DOT] = ACTIONS(4954), + [anon_sym_DOT_STAR] = ACTIONS(4956), + [anon_sym_DASH_GT] = ACTIONS(4956), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4954), + [anon_sym_decltype] = ACTIONS(4954), + }, + [STATE(2694)] = { + [sym_identifier] = ACTIONS(5112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5114), + [anon_sym_COMMA] = ACTIONS(5114), + [anon_sym_RPAREN] = ACTIONS(5114), + [aux_sym_preproc_if_token2] = ACTIONS(5114), + [aux_sym_preproc_else_token1] = ACTIONS(5114), + [aux_sym_preproc_elif_token1] = ACTIONS(5112), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5114), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5114), + [anon_sym_LPAREN2] = ACTIONS(5114), + [anon_sym_DASH] = ACTIONS(5112), + [anon_sym_PLUS] = ACTIONS(5112), + [anon_sym_STAR] = ACTIONS(5112), + [anon_sym_SLASH] = ACTIONS(5112), + [anon_sym_PERCENT] = ACTIONS(5112), + [anon_sym_PIPE_PIPE] = ACTIONS(5114), + [anon_sym_AMP_AMP] = ACTIONS(5114), + [anon_sym_PIPE] = ACTIONS(5112), + [anon_sym_CARET] = ACTIONS(5112), + [anon_sym_AMP] = ACTIONS(5112), + [anon_sym_EQ_EQ] = ACTIONS(5114), + [anon_sym_BANG_EQ] = ACTIONS(5114), + [anon_sym_GT] = ACTIONS(5112), + [anon_sym_GT_EQ] = ACTIONS(5114), + [anon_sym_LT_EQ] = ACTIONS(5112), + [anon_sym_LT] = ACTIONS(5112), + [anon_sym_LT_LT] = ACTIONS(5112), + [anon_sym_GT_GT] = ACTIONS(5112), + [anon_sym_SEMI] = ACTIONS(5114), + [anon_sym___attribute__] = ACTIONS(5112), + [anon_sym___attribute] = ACTIONS(5112), + [anon_sym_LBRACE] = ACTIONS(5114), + [anon_sym_RBRACE] = ACTIONS(5114), + [anon_sym_LBRACK] = ACTIONS(5114), + [anon_sym_RBRACK] = ACTIONS(5114), + [anon_sym_EQ] = ACTIONS(5112), + [anon_sym_COLON] = ACTIONS(5114), + [anon_sym_QMARK] = ACTIONS(5114), + [anon_sym_STAR_EQ] = ACTIONS(5114), + [anon_sym_SLASH_EQ] = ACTIONS(5114), + [anon_sym_PERCENT_EQ] = ACTIONS(5114), + [anon_sym_PLUS_EQ] = ACTIONS(5114), + [anon_sym_DASH_EQ] = ACTIONS(5114), + [anon_sym_LT_LT_EQ] = ACTIONS(5114), + [anon_sym_GT_GT_EQ] = ACTIONS(5114), + [anon_sym_AMP_EQ] = ACTIONS(5114), + [anon_sym_CARET_EQ] = ACTIONS(5114), + [anon_sym_PIPE_EQ] = ACTIONS(5114), + [anon_sym_and_eq] = ACTIONS(5112), + [anon_sym_or_eq] = ACTIONS(5112), + [anon_sym_xor_eq] = ACTIONS(5112), + [anon_sym_LT_EQ_GT] = ACTIONS(5114), + [anon_sym_or] = ACTIONS(5112), + [anon_sym_and] = ACTIONS(5112), + [anon_sym_bitor] = ACTIONS(5112), + [anon_sym_xor] = ACTIONS(5112), + [anon_sym_bitand] = ACTIONS(5112), + [anon_sym_not_eq] = ACTIONS(5112), + [anon_sym_DASH_DASH] = ACTIONS(5114), + [anon_sym_PLUS_PLUS] = ACTIONS(5114), + [anon_sym_DOT] = ACTIONS(5112), + [anon_sym_DOT_STAR] = ACTIONS(5114), + [anon_sym_DASH_GT] = ACTIONS(5114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5112), + [anon_sym_decltype] = ACTIONS(5112), + }, + [STATE(2695)] = { + [sym_string_literal] = STATE(2695), + [sym_raw_string_literal] = STATE(2695), + [aux_sym_concatenated_string_repeat1] = STATE(2695), + [sym_identifier] = ACTIONS(6882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6508), + [anon_sym_COMMA] = ACTIONS(6508), + [anon_sym_LPAREN2] = ACTIONS(6508), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_STAR] = ACTIONS(6510), + [anon_sym_SLASH] = ACTIONS(6510), + [anon_sym_PERCENT] = ACTIONS(6510), + [anon_sym_PIPE_PIPE] = ACTIONS(6508), + [anon_sym_AMP_AMP] = ACTIONS(6508), + [anon_sym_PIPE] = ACTIONS(6510), + [anon_sym_CARET] = ACTIONS(6510), + [anon_sym_AMP] = ACTIONS(6510), + [anon_sym_EQ_EQ] = ACTIONS(6508), + [anon_sym_BANG_EQ] = ACTIONS(6508), + [anon_sym_GT] = ACTIONS(6510), + [anon_sym_GT_EQ] = ACTIONS(6510), + [anon_sym_LT_EQ] = ACTIONS(6510), + [anon_sym_LT] = ACTIONS(6510), + [anon_sym_LT_LT] = ACTIONS(6510), + [anon_sym_GT_GT] = ACTIONS(6510), + [anon_sym_LBRACK] = ACTIONS(6508), + [anon_sym_EQ] = ACTIONS(6510), + [anon_sym_QMARK] = ACTIONS(6508), + [anon_sym_STAR_EQ] = ACTIONS(6508), + [anon_sym_SLASH_EQ] = ACTIONS(6508), + [anon_sym_PERCENT_EQ] = ACTIONS(6508), + [anon_sym_PLUS_EQ] = ACTIONS(6508), + [anon_sym_DASH_EQ] = ACTIONS(6508), + [anon_sym_LT_LT_EQ] = ACTIONS(6508), + [anon_sym_GT_GT_EQ] = ACTIONS(6510), + [anon_sym_AMP_EQ] = ACTIONS(6508), + [anon_sym_CARET_EQ] = ACTIONS(6508), + [anon_sym_PIPE_EQ] = ACTIONS(6508), + [anon_sym_and_eq] = ACTIONS(6510), + [anon_sym_or_eq] = ACTIONS(6510), + [anon_sym_xor_eq] = ACTIONS(6510), + [anon_sym_LT_EQ_GT] = ACTIONS(6508), + [anon_sym_or] = ACTIONS(6510), + [anon_sym_and] = ACTIONS(6510), + [anon_sym_bitor] = ACTIONS(6510), + [anon_sym_xor] = ACTIONS(6510), + [anon_sym_bitand] = ACTIONS(6510), + [anon_sym_not_eq] = ACTIONS(6510), + [anon_sym_DASH_DASH] = ACTIONS(6508), + [anon_sym_PLUS_PLUS] = ACTIONS(6508), + [anon_sym_DOT] = ACTIONS(6510), + [anon_sym_DOT_STAR] = ACTIONS(6508), + [anon_sym_DASH_GT] = ACTIONS(6508), + [anon_sym_L_DQUOTE] = ACTIONS(6885), + [anon_sym_u_DQUOTE] = ACTIONS(6885), + [anon_sym_U_DQUOTE] = ACTIONS(6885), + [anon_sym_u8_DQUOTE] = ACTIONS(6885), + [anon_sym_DQUOTE] = ACTIONS(6885), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6508), + [anon_sym_R_DQUOTE] = ACTIONS(6888), + [anon_sym_LR_DQUOTE] = ACTIONS(6888), + [anon_sym_uR_DQUOTE] = ACTIONS(6888), + [anon_sym_UR_DQUOTE] = ACTIONS(6888), + [anon_sym_u8R_DQUOTE] = ACTIONS(6888), + [sym_literal_suffix] = ACTIONS(6510), + }, + [STATE(2696)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2696), + [sym_identifier] = ACTIONS(4520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4522), + [anon_sym_COMMA] = ACTIONS(4522), + [aux_sym_preproc_if_token2] = ACTIONS(4522), + [aux_sym_preproc_else_token1] = ACTIONS(4522), + [aux_sym_preproc_elif_token1] = ACTIONS(4520), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4522), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4522), + [anon_sym_LPAREN2] = ACTIONS(4522), + [anon_sym_DASH] = ACTIONS(4520), + [anon_sym_PLUS] = ACTIONS(4520), + [anon_sym_STAR] = ACTIONS(4520), + [anon_sym_SLASH] = ACTIONS(4520), + [anon_sym_PERCENT] = ACTIONS(4520), + [anon_sym_PIPE_PIPE] = ACTIONS(4522), + [anon_sym_AMP_AMP] = ACTIONS(4522), + [anon_sym_PIPE] = ACTIONS(4520), + [anon_sym_CARET] = ACTIONS(4520), + [anon_sym_AMP] = ACTIONS(4520), + [anon_sym_EQ_EQ] = ACTIONS(4522), + [anon_sym_BANG_EQ] = ACTIONS(4522), + [anon_sym_GT] = ACTIONS(4520), + [anon_sym_GT_EQ] = ACTIONS(4522), + [anon_sym_LT_EQ] = ACTIONS(4520), + [anon_sym_LT] = ACTIONS(4520), + [anon_sym_LT_LT] = ACTIONS(4520), + [anon_sym_GT_GT] = ACTIONS(4520), + [anon_sym___attribute__] = ACTIONS(4520), + [anon_sym___attribute] = ACTIONS(4520), + [anon_sym_LBRACE] = ACTIONS(4522), + [anon_sym_signed] = ACTIONS(6891), + [anon_sym_unsigned] = ACTIONS(6891), + [anon_sym_long] = ACTIONS(6891), + [anon_sym_short] = ACTIONS(6891), + [anon_sym_LBRACK] = ACTIONS(4522), + [anon_sym_EQ] = ACTIONS(4520), + [anon_sym_QMARK] = ACTIONS(4522), + [anon_sym_STAR_EQ] = ACTIONS(4522), + [anon_sym_SLASH_EQ] = ACTIONS(4522), + [anon_sym_PERCENT_EQ] = ACTIONS(4522), + [anon_sym_PLUS_EQ] = ACTIONS(4522), + [anon_sym_DASH_EQ] = ACTIONS(4522), + [anon_sym_LT_LT_EQ] = ACTIONS(4522), + [anon_sym_GT_GT_EQ] = ACTIONS(4522), + [anon_sym_AMP_EQ] = ACTIONS(4522), + [anon_sym_CARET_EQ] = ACTIONS(4522), + [anon_sym_PIPE_EQ] = ACTIONS(4522), + [anon_sym_and_eq] = ACTIONS(4520), + [anon_sym_or_eq] = ACTIONS(4520), + [anon_sym_xor_eq] = ACTIONS(4520), + [anon_sym_LT_EQ_GT] = ACTIONS(4522), + [anon_sym_or] = ACTIONS(4520), + [anon_sym_and] = ACTIONS(4520), + [anon_sym_bitor] = ACTIONS(4520), + [anon_sym_xor] = ACTIONS(4520), + [anon_sym_bitand] = ACTIONS(4520), + [anon_sym_not_eq] = ACTIONS(4520), + [anon_sym_DASH_DASH] = ACTIONS(4522), + [anon_sym_PLUS_PLUS] = ACTIONS(4522), + [anon_sym_DOT] = ACTIONS(4520), + [anon_sym_DOT_STAR] = ACTIONS(4522), + [anon_sym_DASH_GT] = ACTIONS(4522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4520), + [anon_sym_decltype] = ACTIONS(4520), + }, + [STATE(2697)] = { + [sym_identifier] = ACTIONS(4958), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4960), + [anon_sym_COMMA] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [aux_sym_preproc_if_token2] = ACTIONS(4960), + [aux_sym_preproc_else_token1] = ACTIONS(4960), + [aux_sym_preproc_elif_token1] = ACTIONS(4958), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4960), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4960), + [anon_sym_LPAREN2] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4958), + [anon_sym_SLASH] = ACTIONS(4958), + [anon_sym_PERCENT] = ACTIONS(4958), + [anon_sym_PIPE_PIPE] = ACTIONS(4960), + [anon_sym_AMP_AMP] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4958), + [anon_sym_CARET] = ACTIONS(4958), + [anon_sym_AMP] = ACTIONS(4958), + [anon_sym_EQ_EQ] = ACTIONS(4960), + [anon_sym_BANG_EQ] = ACTIONS(4960), + [anon_sym_GT] = ACTIONS(4958), + [anon_sym_GT_EQ] = ACTIONS(4960), + [anon_sym_LT_EQ] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4958), + [anon_sym_LT_LT] = ACTIONS(4958), + [anon_sym_GT_GT] = ACTIONS(4958), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym___attribute__] = ACTIONS(4958), + [anon_sym___attribute] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_RBRACK] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4958), + [anon_sym_COLON] = ACTIONS(4960), + [anon_sym_QMARK] = ACTIONS(4960), + [anon_sym_STAR_EQ] = ACTIONS(4960), + [anon_sym_SLASH_EQ] = ACTIONS(4960), + [anon_sym_PERCENT_EQ] = ACTIONS(4960), + [anon_sym_PLUS_EQ] = ACTIONS(4960), + [anon_sym_DASH_EQ] = ACTIONS(4960), + [anon_sym_LT_LT_EQ] = ACTIONS(4960), + [anon_sym_GT_GT_EQ] = ACTIONS(4960), + [anon_sym_AMP_EQ] = ACTIONS(4960), + [anon_sym_CARET_EQ] = ACTIONS(4960), + [anon_sym_PIPE_EQ] = ACTIONS(4960), + [anon_sym_and_eq] = ACTIONS(4958), + [anon_sym_or_eq] = ACTIONS(4958), + [anon_sym_xor_eq] = ACTIONS(4958), + [anon_sym_LT_EQ_GT] = ACTIONS(4960), + [anon_sym_or] = ACTIONS(4958), + [anon_sym_and] = ACTIONS(4958), + [anon_sym_bitor] = ACTIONS(4958), + [anon_sym_xor] = ACTIONS(4958), + [anon_sym_bitand] = ACTIONS(4958), + [anon_sym_not_eq] = ACTIONS(4958), + [anon_sym_DASH_DASH] = ACTIONS(4960), + [anon_sym_PLUS_PLUS] = ACTIONS(4960), + [anon_sym_DOT] = ACTIONS(4958), + [anon_sym_DOT_STAR] = ACTIONS(4960), + [anon_sym_DASH_GT] = ACTIONS(4960), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4958), + [anon_sym_decltype] = ACTIONS(4958), + }, + [STATE(2698)] = { + [sym_identifier] = ACTIONS(5038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [aux_sym_preproc_if_token2] = ACTIONS(5040), + [aux_sym_preproc_else_token1] = ACTIONS(5040), + [aux_sym_preproc_elif_token1] = ACTIONS(5038), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5040), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5040), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5038), + [anon_sym_PERCENT] = ACTIONS(5038), + [anon_sym_PIPE_PIPE] = ACTIONS(5040), + [anon_sym_AMP_AMP] = ACTIONS(5040), + [anon_sym_PIPE] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_EQ_EQ] = ACTIONS(5040), + [anon_sym_BANG_EQ] = ACTIONS(5040), + [anon_sym_GT] = ACTIONS(5038), + [anon_sym_GT_EQ] = ACTIONS(5040), + [anon_sym_LT_EQ] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_LT_LT] = ACTIONS(5038), + [anon_sym_GT_GT] = ACTIONS(5038), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym___attribute__] = ACTIONS(5038), + [anon_sym___attribute] = ACTIONS(5038), + [anon_sym_LBRACE] = ACTIONS(5040), + [anon_sym_RBRACE] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5040), + [anon_sym_RBRACK] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5038), + [anon_sym_COLON] = ACTIONS(5040), + [anon_sym_QMARK] = ACTIONS(5040), + [anon_sym_STAR_EQ] = ACTIONS(5040), + [anon_sym_SLASH_EQ] = ACTIONS(5040), + [anon_sym_PERCENT_EQ] = ACTIONS(5040), + [anon_sym_PLUS_EQ] = ACTIONS(5040), + [anon_sym_DASH_EQ] = ACTIONS(5040), + [anon_sym_LT_LT_EQ] = ACTIONS(5040), + [anon_sym_GT_GT_EQ] = ACTIONS(5040), + [anon_sym_AMP_EQ] = ACTIONS(5040), + [anon_sym_CARET_EQ] = ACTIONS(5040), + [anon_sym_PIPE_EQ] = ACTIONS(5040), + [anon_sym_and_eq] = ACTIONS(5038), + [anon_sym_or_eq] = ACTIONS(5038), + [anon_sym_xor_eq] = ACTIONS(5038), + [anon_sym_LT_EQ_GT] = ACTIONS(5040), + [anon_sym_or] = ACTIONS(5038), + [anon_sym_and] = ACTIONS(5038), + [anon_sym_bitor] = ACTIONS(5038), + [anon_sym_xor] = ACTIONS(5038), + [anon_sym_bitand] = ACTIONS(5038), + [anon_sym_not_eq] = ACTIONS(5038), + [anon_sym_DASH_DASH] = ACTIONS(5040), + [anon_sym_PLUS_PLUS] = ACTIONS(5040), + [anon_sym_DOT] = ACTIONS(5038), + [anon_sym_DOT_STAR] = ACTIONS(5040), + [anon_sym_DASH_GT] = ACTIONS(5040), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5038), + [anon_sym_decltype] = ACTIONS(5038), + }, + [STATE(2699)] = { + [sym_identifier] = ACTIONS(4970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), + [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_RPAREN] = ACTIONS(4972), + [aux_sym_preproc_if_token2] = ACTIONS(4972), + [aux_sym_preproc_else_token1] = ACTIONS(4972), + [aux_sym_preproc_elif_token1] = ACTIONS(4970), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4972), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4972), + [anon_sym_LPAREN2] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_PLUS] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4970), + [anon_sym_SLASH] = ACTIONS(4970), + [anon_sym_PERCENT] = ACTIONS(4970), + [anon_sym_PIPE_PIPE] = ACTIONS(4972), + [anon_sym_AMP_AMP] = ACTIONS(4972), + [anon_sym_PIPE] = ACTIONS(4970), + [anon_sym_CARET] = ACTIONS(4970), + [anon_sym_AMP] = ACTIONS(4970), + [anon_sym_EQ_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ] = ACTIONS(4972), + [anon_sym_GT] = ACTIONS(4970), + [anon_sym_GT_EQ] = ACTIONS(4972), + [anon_sym_LT_EQ] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4970), + [anon_sym_LT_LT] = ACTIONS(4970), + [anon_sym_GT_GT] = ACTIONS(4970), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym___attribute__] = ACTIONS(4970), + [anon_sym___attribute] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4972), + [anon_sym_RBRACE] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_RBRACK] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4970), + [anon_sym_COLON] = ACTIONS(4972), + [anon_sym_QMARK] = ACTIONS(4972), + [anon_sym_STAR_EQ] = ACTIONS(4972), + [anon_sym_SLASH_EQ] = ACTIONS(4972), + [anon_sym_PERCENT_EQ] = ACTIONS(4972), + [anon_sym_PLUS_EQ] = ACTIONS(4972), + [anon_sym_DASH_EQ] = ACTIONS(4972), + [anon_sym_LT_LT_EQ] = ACTIONS(4972), + [anon_sym_GT_GT_EQ] = ACTIONS(4972), + [anon_sym_AMP_EQ] = ACTIONS(4972), + [anon_sym_CARET_EQ] = ACTIONS(4972), + [anon_sym_PIPE_EQ] = ACTIONS(4972), + [anon_sym_and_eq] = ACTIONS(4970), + [anon_sym_or_eq] = ACTIONS(4970), + [anon_sym_xor_eq] = ACTIONS(4970), + [anon_sym_LT_EQ_GT] = ACTIONS(4972), + [anon_sym_or] = ACTIONS(4970), + [anon_sym_and] = ACTIONS(4970), + [anon_sym_bitor] = ACTIONS(4970), + [anon_sym_xor] = ACTIONS(4970), + [anon_sym_bitand] = ACTIONS(4970), + [anon_sym_not_eq] = ACTIONS(4970), + [anon_sym_DASH_DASH] = ACTIONS(4972), + [anon_sym_PLUS_PLUS] = ACTIONS(4972), + [anon_sym_DOT] = ACTIONS(4970), + [anon_sym_DOT_STAR] = ACTIONS(4972), + [anon_sym_DASH_GT] = ACTIONS(4972), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4970), + [anon_sym_decltype] = ACTIONS(4970), + }, + [STATE(2700)] = { + [sym_identifier] = ACTIONS(4269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_PLUS] = ACTIONS(4269), + [anon_sym_STAR] = ACTIONS(4271), + [anon_sym_SLASH] = ACTIONS(4269), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_PIPE_PIPE] = ACTIONS(4271), + [anon_sym_AMP_AMP] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4269), + [anon_sym_CARET] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_EQ_EQ] = ACTIONS(4271), + [anon_sym_BANG_EQ] = ACTIONS(4271), + [anon_sym_GT] = ACTIONS(4269), + [anon_sym_GT_EQ] = ACTIONS(4269), + [anon_sym_LT_EQ] = ACTIONS(4269), + [anon_sym_LT] = ACTIONS(4269), + [anon_sym_LT_LT] = ACTIONS(4271), + [anon_sym_GT_GT] = ACTIONS(4269), + [anon_sym___extension__] = ACTIONS(4269), + [anon_sym___attribute__] = ACTIONS(4269), + [anon_sym___attribute] = ACTIONS(4269), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_signed] = ACTIONS(4269), + [anon_sym_unsigned] = ACTIONS(4269), + [anon_sym_long] = ACTIONS(4269), + [anon_sym_short] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_const] = ACTIONS(4269), + [anon_sym_constexpr] = ACTIONS(4269), + [anon_sym_volatile] = ACTIONS(4269), + [anon_sym_restrict] = ACTIONS(4269), + [anon_sym___restrict__] = ACTIONS(4269), + [anon_sym__Atomic] = ACTIONS(4269), + [anon_sym__Noreturn] = ACTIONS(4269), + [anon_sym_noreturn] = ACTIONS(4269), + [anon_sym__Nonnull] = ACTIONS(4269), + [anon_sym_mutable] = ACTIONS(4269), + [anon_sym_constinit] = ACTIONS(4269), + [anon_sym_consteval] = ACTIONS(4269), + [anon_sym_alignas] = ACTIONS(4269), + [anon_sym__Alignas] = ACTIONS(4269), + [sym_primitive_type] = ACTIONS(4269), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LT_EQ_GT] = ACTIONS(4271), + [anon_sym_or] = ACTIONS(4269), + [anon_sym_and] = ACTIONS(4269), + [anon_sym_bitor] = ACTIONS(4269), + [anon_sym_xor] = ACTIONS(4269), + [anon_sym_bitand] = ACTIONS(4269), + [anon_sym_not_eq] = ACTIONS(4269), + [anon_sym_DASH_DASH] = ACTIONS(4271), + [anon_sym_PLUS_PLUS] = ACTIONS(4271), + [anon_sym_DOT] = ACTIONS(4269), + [anon_sym_DOT_STAR] = ACTIONS(4271), + [anon_sym_DASH_GT] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4269), + [anon_sym_decltype] = ACTIONS(4269), + [anon_sym_final] = ACTIONS(4269), + [anon_sym_override] = ACTIONS(4269), + [anon_sym_GT2] = ACTIONS(4271), + [anon_sym_requires] = ACTIONS(4269), + }, + [STATE(2701)] = { + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4936), + [anon_sym_COMMA] = ACTIONS(4936), + [anon_sym_RPAREN] = ACTIONS(4936), + [aux_sym_preproc_if_token2] = ACTIONS(4936), + [aux_sym_preproc_else_token1] = ACTIONS(4936), + [aux_sym_preproc_elif_token1] = ACTIONS(4934), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4936), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4936), + [anon_sym_LPAREN2] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4934), + [anon_sym_STAR] = ACTIONS(4934), + [anon_sym_SLASH] = ACTIONS(4934), + [anon_sym_PERCENT] = ACTIONS(4934), + [anon_sym_PIPE_PIPE] = ACTIONS(4936), + [anon_sym_AMP_AMP] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4934), + [anon_sym_CARET] = ACTIONS(4934), + [anon_sym_AMP] = ACTIONS(4934), + [anon_sym_EQ_EQ] = ACTIONS(4936), + [anon_sym_BANG_EQ] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4936), + [anon_sym_LT_EQ] = ACTIONS(4934), + [anon_sym_LT] = ACTIONS(4934), + [anon_sym_LT_LT] = ACTIONS(4934), + [anon_sym_GT_GT] = ACTIONS(4934), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym___attribute__] = ACTIONS(4934), + [anon_sym___attribute] = ACTIONS(4934), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_RBRACE] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_RBRACK] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_QMARK] = ACTIONS(4936), + [anon_sym_STAR_EQ] = ACTIONS(4936), + [anon_sym_SLASH_EQ] = ACTIONS(4936), + [anon_sym_PERCENT_EQ] = ACTIONS(4936), + [anon_sym_PLUS_EQ] = ACTIONS(4936), + [anon_sym_DASH_EQ] = ACTIONS(4936), + [anon_sym_LT_LT_EQ] = ACTIONS(4936), + [anon_sym_GT_GT_EQ] = ACTIONS(4936), + [anon_sym_AMP_EQ] = ACTIONS(4936), + [anon_sym_CARET_EQ] = ACTIONS(4936), + [anon_sym_PIPE_EQ] = ACTIONS(4936), + [anon_sym_and_eq] = ACTIONS(4934), + [anon_sym_or_eq] = ACTIONS(4934), + [anon_sym_xor_eq] = ACTIONS(4934), + [anon_sym_LT_EQ_GT] = ACTIONS(4936), + [anon_sym_or] = ACTIONS(4934), + [anon_sym_and] = ACTIONS(4934), + [anon_sym_bitor] = ACTIONS(4934), + [anon_sym_xor] = ACTIONS(4934), + [anon_sym_bitand] = ACTIONS(4934), + [anon_sym_not_eq] = ACTIONS(4934), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_DOT_STAR] = ACTIONS(4936), + [anon_sym_DASH_GT] = ACTIONS(4936), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4934), + [anon_sym_decltype] = ACTIONS(4934), + }, + [STATE(2702)] = { + [sym_identifier] = ACTIONS(5066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_RPAREN] = ACTIONS(5068), + [aux_sym_preproc_if_token2] = ACTIONS(5068), + [aux_sym_preproc_else_token1] = ACTIONS(5068), + [aux_sym_preproc_elif_token1] = ACTIONS(5066), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5068), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(5068), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_STAR] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_PERCENT] = ACTIONS(5066), + [anon_sym_PIPE_PIPE] = ACTIONS(5068), + [anon_sym_AMP_AMP] = ACTIONS(5068), + [anon_sym_PIPE] = ACTIONS(5066), + [anon_sym_CARET] = ACTIONS(5066), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_EQ_EQ] = ACTIONS(5068), + [anon_sym_BANG_EQ] = ACTIONS(5068), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_GT_EQ] = ACTIONS(5068), + [anon_sym_LT_EQ] = ACTIONS(5066), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_LT_LT] = ACTIONS(5066), + [anon_sym_GT_GT] = ACTIONS(5066), + [anon_sym_SEMI] = ACTIONS(5068), + [anon_sym___attribute__] = ACTIONS(5066), + [anon_sym___attribute] = ACTIONS(5066), + [anon_sym_LBRACE] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_EQ] = ACTIONS(5066), + [anon_sym_COLON] = ACTIONS(5068), + [anon_sym_QMARK] = ACTIONS(5068), + [anon_sym_STAR_EQ] = ACTIONS(5068), + [anon_sym_SLASH_EQ] = ACTIONS(5068), + [anon_sym_PERCENT_EQ] = ACTIONS(5068), + [anon_sym_PLUS_EQ] = ACTIONS(5068), + [anon_sym_DASH_EQ] = ACTIONS(5068), + [anon_sym_LT_LT_EQ] = ACTIONS(5068), + [anon_sym_GT_GT_EQ] = ACTIONS(5068), + [anon_sym_AMP_EQ] = ACTIONS(5068), + [anon_sym_CARET_EQ] = ACTIONS(5068), + [anon_sym_PIPE_EQ] = ACTIONS(5068), + [anon_sym_and_eq] = ACTIONS(5066), + [anon_sym_or_eq] = ACTIONS(5066), + [anon_sym_xor_eq] = ACTIONS(5066), + [anon_sym_LT_EQ_GT] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5066), + [anon_sym_and] = ACTIONS(5066), + [anon_sym_bitor] = ACTIONS(5066), + [anon_sym_xor] = ACTIONS(5066), + [anon_sym_bitand] = ACTIONS(5066), + [anon_sym_not_eq] = ACTIONS(5066), + [anon_sym_DASH_DASH] = ACTIONS(5068), + [anon_sym_PLUS_PLUS] = ACTIONS(5068), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_DOT_STAR] = ACTIONS(5068), + [anon_sym_DASH_GT] = ACTIONS(5068), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5066), + [anon_sym_decltype] = ACTIONS(5066), + }, + [STATE(2703)] = { + [sym_identifier] = ACTIONS(4974), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4976), + [anon_sym_COMMA] = ACTIONS(4976), + [anon_sym_RPAREN] = ACTIONS(4976), + [aux_sym_preproc_if_token2] = ACTIONS(4976), + [aux_sym_preproc_else_token1] = ACTIONS(4976), + [aux_sym_preproc_elif_token1] = ACTIONS(4974), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4976), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4976), + [anon_sym_LPAREN2] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_PLUS] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4974), + [anon_sym_SLASH] = ACTIONS(4974), + [anon_sym_PERCENT] = ACTIONS(4974), + [anon_sym_PIPE_PIPE] = ACTIONS(4976), + [anon_sym_AMP_AMP] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4974), + [anon_sym_CARET] = ACTIONS(4974), + [anon_sym_AMP] = ACTIONS(4974), + [anon_sym_EQ_EQ] = ACTIONS(4976), + [anon_sym_BANG_EQ] = ACTIONS(4976), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_GT_EQ] = ACTIONS(4976), + [anon_sym_LT_EQ] = ACTIONS(4974), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_LT_LT] = ACTIONS(4974), + [anon_sym_GT_GT] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym___attribute__] = ACTIONS(4974), + [anon_sym___attribute] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_RBRACE] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_RBRACK] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4974), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(4976), + [anon_sym_STAR_EQ] = ACTIONS(4976), + [anon_sym_SLASH_EQ] = ACTIONS(4976), + [anon_sym_PERCENT_EQ] = ACTIONS(4976), + [anon_sym_PLUS_EQ] = ACTIONS(4976), + [anon_sym_DASH_EQ] = ACTIONS(4976), + [anon_sym_LT_LT_EQ] = ACTIONS(4976), + [anon_sym_GT_GT_EQ] = ACTIONS(4976), + [anon_sym_AMP_EQ] = ACTIONS(4976), + [anon_sym_CARET_EQ] = ACTIONS(4976), + [anon_sym_PIPE_EQ] = ACTIONS(4976), + [anon_sym_and_eq] = ACTIONS(4974), + [anon_sym_or_eq] = ACTIONS(4974), + [anon_sym_xor_eq] = ACTIONS(4974), + [anon_sym_LT_EQ_GT] = ACTIONS(4976), + [anon_sym_or] = ACTIONS(4974), + [anon_sym_and] = ACTIONS(4974), + [anon_sym_bitor] = ACTIONS(4974), + [anon_sym_xor] = ACTIONS(4974), + [anon_sym_bitand] = ACTIONS(4974), + [anon_sym_not_eq] = ACTIONS(4974), + [anon_sym_DASH_DASH] = ACTIONS(4976), + [anon_sym_PLUS_PLUS] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_DOT_STAR] = ACTIONS(4976), + [anon_sym_DASH_GT] = ACTIONS(4976), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4974), + [anon_sym_decltype] = ACTIONS(4974), + }, + [STATE(2704)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2635), + [sym_identifier] = ACTIONS(5184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5186), + [anon_sym_COMMA] = ACTIONS(5186), + [aux_sym_preproc_if_token2] = ACTIONS(5186), + [aux_sym_preproc_else_token1] = ACTIONS(5186), + [aux_sym_preproc_elif_token1] = ACTIONS(5184), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5186), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5186), + [anon_sym_LPAREN2] = ACTIONS(5186), + [anon_sym_DASH] = ACTIONS(5184), + [anon_sym_PLUS] = ACTIONS(5184), + [anon_sym_STAR] = ACTIONS(5184), + [anon_sym_SLASH] = ACTIONS(5184), + [anon_sym_PERCENT] = ACTIONS(5184), + [anon_sym_PIPE_PIPE] = ACTIONS(5186), + [anon_sym_AMP_AMP] = ACTIONS(5186), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_CARET] = ACTIONS(5184), + [anon_sym_AMP] = ACTIONS(5184), + [anon_sym_EQ_EQ] = ACTIONS(5186), + [anon_sym_BANG_EQ] = ACTIONS(5186), + [anon_sym_GT] = ACTIONS(5184), + [anon_sym_GT_EQ] = ACTIONS(5186), + [anon_sym_LT_EQ] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5184), + [anon_sym_LT_LT] = ACTIONS(5184), + [anon_sym_GT_GT] = ACTIONS(5184), + [anon_sym___attribute__] = ACTIONS(5184), + [anon_sym___attribute] = ACTIONS(5184), + [anon_sym_LBRACE] = ACTIONS(5186), + [anon_sym_signed] = ACTIONS(6894), + [anon_sym_unsigned] = ACTIONS(6894), + [anon_sym_long] = ACTIONS(6894), + [anon_sym_short] = ACTIONS(6894), + [anon_sym_LBRACK] = ACTIONS(5186), + [anon_sym_EQ] = ACTIONS(5184), + [anon_sym_QMARK] = ACTIONS(5186), + [anon_sym_STAR_EQ] = ACTIONS(5186), + [anon_sym_SLASH_EQ] = ACTIONS(5186), + [anon_sym_PERCENT_EQ] = ACTIONS(5186), + [anon_sym_PLUS_EQ] = ACTIONS(5186), + [anon_sym_DASH_EQ] = ACTIONS(5186), + [anon_sym_LT_LT_EQ] = ACTIONS(5186), + [anon_sym_GT_GT_EQ] = ACTIONS(5186), + [anon_sym_AMP_EQ] = ACTIONS(5186), + [anon_sym_CARET_EQ] = ACTIONS(5186), + [anon_sym_PIPE_EQ] = ACTIONS(5186), + [anon_sym_and_eq] = ACTIONS(5184), + [anon_sym_or_eq] = ACTIONS(5184), + [anon_sym_xor_eq] = ACTIONS(5184), + [anon_sym_LT_EQ_GT] = ACTIONS(5186), + [anon_sym_or] = ACTIONS(5184), + [anon_sym_and] = ACTIONS(5184), + [anon_sym_bitor] = ACTIONS(5184), + [anon_sym_xor] = ACTIONS(5184), + [anon_sym_bitand] = ACTIONS(5184), + [anon_sym_not_eq] = ACTIONS(5184), + [anon_sym_DASH_DASH] = ACTIONS(5186), + [anon_sym_PLUS_PLUS] = ACTIONS(5186), + [anon_sym_DOT] = ACTIONS(5184), + [anon_sym_DOT_STAR] = ACTIONS(5186), + [anon_sym_DASH_GT] = ACTIONS(5186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5184), + [anon_sym_decltype] = ACTIONS(5184), + }, + [STATE(2705)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2637), + [sym_identifier] = ACTIONS(5168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5170), + [anon_sym_COMMA] = ACTIONS(5170), + [aux_sym_preproc_if_token2] = ACTIONS(5170), + [aux_sym_preproc_else_token1] = ACTIONS(5170), + [aux_sym_preproc_elif_token1] = ACTIONS(5168), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5170), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5170), + [anon_sym_LPAREN2] = ACTIONS(5170), + [anon_sym_DASH] = ACTIONS(5168), + [anon_sym_PLUS] = ACTIONS(5168), + [anon_sym_STAR] = ACTIONS(5168), + [anon_sym_SLASH] = ACTIONS(5168), + [anon_sym_PERCENT] = ACTIONS(5168), + [anon_sym_PIPE_PIPE] = ACTIONS(5170), + [anon_sym_AMP_AMP] = ACTIONS(5170), + [anon_sym_PIPE] = ACTIONS(5168), + [anon_sym_CARET] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5168), + [anon_sym_EQ_EQ] = ACTIONS(5170), + [anon_sym_BANG_EQ] = ACTIONS(5170), + [anon_sym_GT] = ACTIONS(5168), + [anon_sym_GT_EQ] = ACTIONS(5170), + [anon_sym_LT_EQ] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5168), + [anon_sym_LT_LT] = ACTIONS(5168), + [anon_sym_GT_GT] = ACTIONS(5168), + [anon_sym___attribute__] = ACTIONS(5168), + [anon_sym___attribute] = ACTIONS(5168), + [anon_sym_LBRACE] = ACTIONS(5170), + [anon_sym_signed] = ACTIONS(6896), + [anon_sym_unsigned] = ACTIONS(6896), + [anon_sym_long] = ACTIONS(6896), + [anon_sym_short] = ACTIONS(6896), + [anon_sym_LBRACK] = ACTIONS(5170), + [anon_sym_EQ] = ACTIONS(5168), + [anon_sym_QMARK] = ACTIONS(5170), + [anon_sym_STAR_EQ] = ACTIONS(5170), + [anon_sym_SLASH_EQ] = ACTIONS(5170), + [anon_sym_PERCENT_EQ] = ACTIONS(5170), + [anon_sym_PLUS_EQ] = ACTIONS(5170), + [anon_sym_DASH_EQ] = ACTIONS(5170), + [anon_sym_LT_LT_EQ] = ACTIONS(5170), + [anon_sym_GT_GT_EQ] = ACTIONS(5170), + [anon_sym_AMP_EQ] = ACTIONS(5170), + [anon_sym_CARET_EQ] = ACTIONS(5170), + [anon_sym_PIPE_EQ] = ACTIONS(5170), + [anon_sym_and_eq] = ACTIONS(5168), + [anon_sym_or_eq] = ACTIONS(5168), + [anon_sym_xor_eq] = ACTIONS(5168), + [anon_sym_LT_EQ_GT] = ACTIONS(5170), + [anon_sym_or] = ACTIONS(5168), + [anon_sym_and] = ACTIONS(5168), + [anon_sym_bitor] = ACTIONS(5168), + [anon_sym_xor] = ACTIONS(5168), + [anon_sym_bitand] = ACTIONS(5168), + [anon_sym_not_eq] = ACTIONS(5168), + [anon_sym_DASH_DASH] = ACTIONS(5170), + [anon_sym_PLUS_PLUS] = ACTIONS(5170), + [anon_sym_DOT] = ACTIONS(5168), + [anon_sym_DOT_STAR] = ACTIONS(5170), + [anon_sym_DASH_GT] = ACTIONS(5170), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5168), + [anon_sym_decltype] = ACTIONS(5168), + }, + [STATE(2706)] = { + [sym_identifier] = ACTIONS(4962), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4964), + [anon_sym_COMMA] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4964), + [aux_sym_preproc_if_token2] = ACTIONS(4964), + [aux_sym_preproc_else_token1] = ACTIONS(4964), + [aux_sym_preproc_elif_token1] = ACTIONS(4962), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4964), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4964), + [anon_sym_LPAREN2] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_PLUS] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4962), + [anon_sym_SLASH] = ACTIONS(4962), + [anon_sym_PERCENT] = ACTIONS(4962), + [anon_sym_PIPE_PIPE] = ACTIONS(4964), + [anon_sym_AMP_AMP] = ACTIONS(4964), + [anon_sym_PIPE] = ACTIONS(4962), + [anon_sym_CARET] = ACTIONS(4962), + [anon_sym_AMP] = ACTIONS(4962), + [anon_sym_EQ_EQ] = ACTIONS(4964), + [anon_sym_BANG_EQ] = ACTIONS(4964), + [anon_sym_GT] = ACTIONS(4962), + [anon_sym_GT_EQ] = ACTIONS(4964), + [anon_sym_LT_EQ] = ACTIONS(4962), + [anon_sym_LT] = ACTIONS(4962), + [anon_sym_LT_LT] = ACTIONS(4962), + [anon_sym_GT_GT] = ACTIONS(4962), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym___attribute__] = ACTIONS(4962), + [anon_sym___attribute] = ACTIONS(4962), + [anon_sym_LBRACE] = ACTIONS(4964), + [anon_sym_RBRACE] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_RBRACK] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4962), + [anon_sym_COLON] = ACTIONS(4964), + [anon_sym_QMARK] = ACTIONS(4964), + [anon_sym_STAR_EQ] = ACTIONS(4964), + [anon_sym_SLASH_EQ] = ACTIONS(4964), + [anon_sym_PERCENT_EQ] = ACTIONS(4964), + [anon_sym_PLUS_EQ] = ACTIONS(4964), + [anon_sym_DASH_EQ] = ACTIONS(4964), + [anon_sym_LT_LT_EQ] = ACTIONS(4964), + [anon_sym_GT_GT_EQ] = ACTIONS(4964), + [anon_sym_AMP_EQ] = ACTIONS(4964), + [anon_sym_CARET_EQ] = ACTIONS(4964), + [anon_sym_PIPE_EQ] = ACTIONS(4964), + [anon_sym_and_eq] = ACTIONS(4962), + [anon_sym_or_eq] = ACTIONS(4962), + [anon_sym_xor_eq] = ACTIONS(4962), + [anon_sym_LT_EQ_GT] = ACTIONS(4964), + [anon_sym_or] = ACTIONS(4962), + [anon_sym_and] = ACTIONS(4962), + [anon_sym_bitor] = ACTIONS(4962), + [anon_sym_xor] = ACTIONS(4962), + [anon_sym_bitand] = ACTIONS(4962), + [anon_sym_not_eq] = ACTIONS(4962), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_DOT] = ACTIONS(4962), + [anon_sym_DOT_STAR] = ACTIONS(4964), + [anon_sym_DASH_GT] = ACTIONS(4964), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4962), + [anon_sym_decltype] = ACTIONS(4962), + }, + [STATE(2707)] = { + [sym_identifier] = ACTIONS(4978), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4980), + [anon_sym_COMMA] = ACTIONS(4980), + [anon_sym_RPAREN] = ACTIONS(4980), + [aux_sym_preproc_if_token2] = ACTIONS(4980), + [aux_sym_preproc_else_token1] = ACTIONS(4980), + [aux_sym_preproc_elif_token1] = ACTIONS(4978), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4980), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4980), + [anon_sym_LPAREN2] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4978), + [anon_sym_STAR] = ACTIONS(4978), + [anon_sym_SLASH] = ACTIONS(4978), + [anon_sym_PERCENT] = ACTIONS(4978), + [anon_sym_PIPE_PIPE] = ACTIONS(4980), + [anon_sym_AMP_AMP] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4978), + [anon_sym_CARET] = ACTIONS(4978), + [anon_sym_AMP] = ACTIONS(4978), + [anon_sym_EQ_EQ] = ACTIONS(4980), + [anon_sym_BANG_EQ] = ACTIONS(4980), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_GT_EQ] = ACTIONS(4980), + [anon_sym_LT_EQ] = ACTIONS(4978), + [anon_sym_LT] = ACTIONS(4978), + [anon_sym_LT_LT] = ACTIONS(4978), + [anon_sym_GT_GT] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(4980), + [anon_sym___attribute__] = ACTIONS(4978), + [anon_sym___attribute] = ACTIONS(4978), + [anon_sym_LBRACE] = ACTIONS(4980), + [anon_sym_RBRACE] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4980), + [anon_sym_RBRACK] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4978), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_QMARK] = ACTIONS(4980), + [anon_sym_STAR_EQ] = ACTIONS(4980), + [anon_sym_SLASH_EQ] = ACTIONS(4980), + [anon_sym_PERCENT_EQ] = ACTIONS(4980), + [anon_sym_PLUS_EQ] = ACTIONS(4980), + [anon_sym_DASH_EQ] = ACTIONS(4980), + [anon_sym_LT_LT_EQ] = ACTIONS(4980), + [anon_sym_GT_GT_EQ] = ACTIONS(4980), + [anon_sym_AMP_EQ] = ACTIONS(4980), + [anon_sym_CARET_EQ] = ACTIONS(4980), + [anon_sym_PIPE_EQ] = ACTIONS(4980), + [anon_sym_and_eq] = ACTIONS(4978), + [anon_sym_or_eq] = ACTIONS(4978), + [anon_sym_xor_eq] = ACTIONS(4978), + [anon_sym_LT_EQ_GT] = ACTIONS(4980), + [anon_sym_or] = ACTIONS(4978), + [anon_sym_and] = ACTIONS(4978), + [anon_sym_bitor] = ACTIONS(4978), + [anon_sym_xor] = ACTIONS(4978), + [anon_sym_bitand] = ACTIONS(4978), + [anon_sym_not_eq] = ACTIONS(4978), + [anon_sym_DASH_DASH] = ACTIONS(4980), + [anon_sym_PLUS_PLUS] = ACTIONS(4980), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_DOT_STAR] = ACTIONS(4980), + [anon_sym_DASH_GT] = ACTIONS(4980), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4978), + [anon_sym_decltype] = ACTIONS(4978), + }, + [STATE(2708)] = { + [sym_template_argument_list] = STATE(2558), + [aux_sym_sized_type_specifier_repeat1] = STATE(2732), + [sym_identifier] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(3095), + [aux_sym_preproc_if_token2] = ACTIONS(3095), + [aux_sym_preproc_else_token1] = ACTIONS(3095), + [aux_sym_preproc_elif_token1] = ACTIONS(3087), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_SLASH] = ACTIONS(3087), + [anon_sym_PERCENT] = ACTIONS(3087), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_CARET] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_EQ_EQ] = ACTIONS(3095), + [anon_sym_BANG_EQ] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3087), + [anon_sym_GT_EQ] = ACTIONS(3095), + [anon_sym_LT_EQ] = ACTIONS(3087), + [anon_sym_LT] = ACTIONS(6601), + [anon_sym_LT_LT] = ACTIONS(3087), + [anon_sym_GT_GT] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_signed] = ACTIONS(6713), + [anon_sym_unsigned] = ACTIONS(6713), + [anon_sym_long] = ACTIONS(6713), + [anon_sym_short] = ACTIONS(6713), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(3087), + [anon_sym_QMARK] = ACTIONS(3095), + [anon_sym_STAR_EQ] = ACTIONS(3095), + [anon_sym_SLASH_EQ] = ACTIONS(3095), + [anon_sym_PERCENT_EQ] = ACTIONS(3095), + [anon_sym_PLUS_EQ] = ACTIONS(3095), + [anon_sym_DASH_EQ] = ACTIONS(3095), + [anon_sym_LT_LT_EQ] = ACTIONS(3095), + [anon_sym_GT_GT_EQ] = ACTIONS(3095), + [anon_sym_AMP_EQ] = ACTIONS(3095), + [anon_sym_CARET_EQ] = ACTIONS(3095), + [anon_sym_PIPE_EQ] = ACTIONS(3095), + [anon_sym_and_eq] = ACTIONS(3087), + [anon_sym_or_eq] = ACTIONS(3087), + [anon_sym_xor_eq] = ACTIONS(3087), + [anon_sym_LT_EQ_GT] = ACTIONS(3095), + [anon_sym_or] = ACTIONS(3087), + [anon_sym_and] = ACTIONS(3087), + [anon_sym_bitor] = ACTIONS(3087), + [anon_sym_xor] = ACTIONS(3087), + [anon_sym_bitand] = ACTIONS(3087), + [anon_sym_not_eq] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_DOT] = ACTIONS(3087), + [anon_sym_DOT_STAR] = ACTIONS(3095), + [anon_sym_DASH_GT] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + }, + [STATE(2709)] = { + [sym_identifier] = ACTIONS(4930), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4932), + [anon_sym_COMMA] = ACTIONS(4932), + [anon_sym_RPAREN] = ACTIONS(4932), + [aux_sym_preproc_if_token2] = ACTIONS(4932), + [aux_sym_preproc_else_token1] = ACTIONS(4932), + [aux_sym_preproc_elif_token1] = ACTIONS(4930), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4932), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4932), + [anon_sym_LPAREN2] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4930), + [anon_sym_PLUS] = ACTIONS(4930), + [anon_sym_STAR] = ACTIONS(4930), + [anon_sym_SLASH] = ACTIONS(4930), + [anon_sym_PERCENT] = ACTIONS(4930), + [anon_sym_PIPE_PIPE] = ACTIONS(4932), + [anon_sym_AMP_AMP] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4930), + [anon_sym_CARET] = ACTIONS(4930), + [anon_sym_AMP] = ACTIONS(4930), + [anon_sym_EQ_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ] = ACTIONS(4932), + [anon_sym_GT] = ACTIONS(4930), + [anon_sym_GT_EQ] = ACTIONS(4932), + [anon_sym_LT_EQ] = ACTIONS(4930), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_LT_LT] = ACTIONS(4930), + [anon_sym_GT_GT] = ACTIONS(4930), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym___attribute__] = ACTIONS(4930), + [anon_sym___attribute] = ACTIONS(4930), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_RBRACK] = ACTIONS(4932), + [anon_sym_EQ] = ACTIONS(4930), + [anon_sym_COLON] = ACTIONS(4932), + [anon_sym_QMARK] = ACTIONS(4932), + [anon_sym_STAR_EQ] = ACTIONS(4932), + [anon_sym_SLASH_EQ] = ACTIONS(4932), + [anon_sym_PERCENT_EQ] = ACTIONS(4932), + [anon_sym_PLUS_EQ] = ACTIONS(4932), + [anon_sym_DASH_EQ] = ACTIONS(4932), + [anon_sym_LT_LT_EQ] = ACTIONS(4932), + [anon_sym_GT_GT_EQ] = ACTIONS(4932), + [anon_sym_AMP_EQ] = ACTIONS(4932), + [anon_sym_CARET_EQ] = ACTIONS(4932), + [anon_sym_PIPE_EQ] = ACTIONS(4932), + [anon_sym_and_eq] = ACTIONS(4930), + [anon_sym_or_eq] = ACTIONS(4930), + [anon_sym_xor_eq] = ACTIONS(4930), + [anon_sym_LT_EQ_GT] = ACTIONS(4932), + [anon_sym_or] = ACTIONS(4930), + [anon_sym_and] = ACTIONS(4930), + [anon_sym_bitor] = ACTIONS(4930), + [anon_sym_xor] = ACTIONS(4930), + [anon_sym_bitand] = ACTIONS(4930), + [anon_sym_not_eq] = ACTIONS(4930), + [anon_sym_DASH_DASH] = ACTIONS(4932), + [anon_sym_PLUS_PLUS] = ACTIONS(4932), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_DOT_STAR] = ACTIONS(4932), + [anon_sym_DASH_GT] = ACTIONS(4932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4930), + [anon_sym_decltype] = ACTIONS(4930), + }, + [STATE(2710)] = { + [sym_identifier] = ACTIONS(6898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6900), + [anon_sym_COMMA] = ACTIONS(6900), + [anon_sym_RPAREN] = ACTIONS(6900), + [aux_sym_preproc_if_token2] = ACTIONS(6900), + [aux_sym_preproc_else_token1] = ACTIONS(6900), + [aux_sym_preproc_elif_token1] = ACTIONS(6898), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6900), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6900), + [anon_sym_LPAREN2] = ACTIONS(6900), + [anon_sym_DASH] = ACTIONS(6898), + [anon_sym_PLUS] = ACTIONS(6898), + [anon_sym_STAR] = ACTIONS(6898), + [anon_sym_SLASH] = ACTIONS(6898), + [anon_sym_PERCENT] = ACTIONS(6898), + [anon_sym_PIPE_PIPE] = ACTIONS(6900), + [anon_sym_AMP_AMP] = ACTIONS(6900), + [anon_sym_PIPE] = ACTIONS(6898), + [anon_sym_CARET] = ACTIONS(6898), + [anon_sym_AMP] = ACTIONS(6898), + [anon_sym_EQ_EQ] = ACTIONS(6900), + [anon_sym_BANG_EQ] = ACTIONS(6900), + [anon_sym_GT] = ACTIONS(6898), + [anon_sym_GT_EQ] = ACTIONS(6900), + [anon_sym_LT_EQ] = ACTIONS(6898), + [anon_sym_LT] = ACTIONS(6898), + [anon_sym_LT_LT] = ACTIONS(6898), + [anon_sym_GT_GT] = ACTIONS(6898), + [anon_sym_SEMI] = ACTIONS(6900), + [anon_sym___attribute__] = ACTIONS(6898), + [anon_sym___attribute] = ACTIONS(6898), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6900), + [anon_sym_LBRACE] = ACTIONS(6900), + [anon_sym_RBRACE] = ACTIONS(6900), + [anon_sym_LBRACK] = ACTIONS(6898), + [anon_sym_RBRACK] = ACTIONS(6900), + [anon_sym_EQ] = ACTIONS(6898), + [anon_sym_COLON] = ACTIONS(6900), + [anon_sym_QMARK] = ACTIONS(6900), + [anon_sym_STAR_EQ] = ACTIONS(6900), + [anon_sym_SLASH_EQ] = ACTIONS(6900), + [anon_sym_PERCENT_EQ] = ACTIONS(6900), + [anon_sym_PLUS_EQ] = ACTIONS(6900), + [anon_sym_DASH_EQ] = ACTIONS(6900), + [anon_sym_LT_LT_EQ] = ACTIONS(6900), + [anon_sym_GT_GT_EQ] = ACTIONS(6900), + [anon_sym_AMP_EQ] = ACTIONS(6900), + [anon_sym_CARET_EQ] = ACTIONS(6900), + [anon_sym_PIPE_EQ] = ACTIONS(6900), + [anon_sym_and_eq] = ACTIONS(6898), + [anon_sym_or_eq] = ACTIONS(6898), + [anon_sym_xor_eq] = ACTIONS(6898), + [anon_sym_LT_EQ_GT] = ACTIONS(6900), + [anon_sym_or] = ACTIONS(6898), + [anon_sym_and] = ACTIONS(6898), + [anon_sym_bitor] = ACTIONS(6898), + [anon_sym_xor] = ACTIONS(6898), + [anon_sym_bitand] = ACTIONS(6898), + [anon_sym_not_eq] = ACTIONS(6898), + [anon_sym_DASH_DASH] = ACTIONS(6900), + [anon_sym_PLUS_PLUS] = ACTIONS(6900), + [anon_sym_DOT] = ACTIONS(6898), + [anon_sym_DOT_STAR] = ACTIONS(6900), + [anon_sym_DASH_GT] = ACTIONS(6900), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6898), + }, + [STATE(2711)] = { + [sym_string_literal] = STATE(2660), + [sym_raw_string_literal] = STATE(2660), + [aux_sym_concatenated_string_repeat1] = STATE(2660), + [sym_identifier] = ACTIONS(6902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6501), + [anon_sym_COMMA] = ACTIONS(6501), + [anon_sym_LPAREN2] = ACTIONS(6501), + [anon_sym_DASH] = ACTIONS(6503), + [anon_sym_PLUS] = ACTIONS(6503), + [anon_sym_STAR] = ACTIONS(6503), + [anon_sym_SLASH] = ACTIONS(6503), + [anon_sym_PERCENT] = ACTIONS(6503), + [anon_sym_PIPE_PIPE] = ACTIONS(6501), + [anon_sym_AMP_AMP] = ACTIONS(6501), + [anon_sym_PIPE] = ACTIONS(6503), + [anon_sym_CARET] = ACTIONS(6503), + [anon_sym_AMP] = ACTIONS(6503), + [anon_sym_EQ_EQ] = ACTIONS(6501), + [anon_sym_BANG_EQ] = ACTIONS(6501), + [anon_sym_GT] = ACTIONS(6503), + [anon_sym_GT_EQ] = ACTIONS(6503), + [anon_sym_LT_EQ] = ACTIONS(6503), + [anon_sym_LT] = ACTIONS(6503), + [anon_sym_LT_LT] = ACTIONS(6503), + [anon_sym_GT_GT] = ACTIONS(6503), + [anon_sym_LBRACK] = ACTIONS(6501), + [anon_sym_EQ] = ACTIONS(6503), + [anon_sym_QMARK] = ACTIONS(6501), + [anon_sym_STAR_EQ] = ACTIONS(6501), + [anon_sym_SLASH_EQ] = ACTIONS(6501), + [anon_sym_PERCENT_EQ] = ACTIONS(6501), + [anon_sym_PLUS_EQ] = ACTIONS(6501), + [anon_sym_DASH_EQ] = ACTIONS(6501), + [anon_sym_LT_LT_EQ] = ACTIONS(6501), + [anon_sym_GT_GT_EQ] = ACTIONS(6503), + [anon_sym_AMP_EQ] = ACTIONS(6501), + [anon_sym_CARET_EQ] = ACTIONS(6501), + [anon_sym_PIPE_EQ] = ACTIONS(6501), + [anon_sym_and_eq] = ACTIONS(6503), + [anon_sym_or_eq] = ACTIONS(6503), + [anon_sym_xor_eq] = ACTIONS(6503), + [anon_sym_LT_EQ_GT] = ACTIONS(6501), + [anon_sym_or] = ACTIONS(6503), + [anon_sym_and] = ACTIONS(6503), + [anon_sym_bitor] = ACTIONS(6503), + [anon_sym_xor] = ACTIONS(6503), + [anon_sym_bitand] = ACTIONS(6503), + [anon_sym_not_eq] = ACTIONS(6503), + [anon_sym_DASH_DASH] = ACTIONS(6501), + [anon_sym_PLUS_PLUS] = ACTIONS(6501), + [anon_sym_DOT] = ACTIONS(6503), + [anon_sym_DOT_STAR] = ACTIONS(6501), + [anon_sym_DASH_GT] = ACTIONS(6501), + [anon_sym_L_DQUOTE] = ACTIONS(6864), + [anon_sym_u_DQUOTE] = ACTIONS(6864), + [anon_sym_U_DQUOTE] = ACTIONS(6864), + [anon_sym_u8_DQUOTE] = ACTIONS(6864), + [anon_sym_DQUOTE] = ACTIONS(6864), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6501), + [anon_sym_R_DQUOTE] = ACTIONS(6866), + [anon_sym_LR_DQUOTE] = ACTIONS(6866), + [anon_sym_uR_DQUOTE] = ACTIONS(6866), + [anon_sym_UR_DQUOTE] = ACTIONS(6866), + [anon_sym_u8R_DQUOTE] = ACTIONS(6866), + [sym_literal_suffix] = ACTIONS(6503), + }, + [STATE(2712)] = { + [sym_identifier] = ACTIONS(6904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6906), + [anon_sym_COMMA] = ACTIONS(6906), + [anon_sym_RPAREN] = ACTIONS(6906), + [aux_sym_preproc_if_token2] = ACTIONS(6906), + [aux_sym_preproc_else_token1] = ACTIONS(6906), + [aux_sym_preproc_elif_token1] = ACTIONS(6904), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6906), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6906), + [anon_sym_LPAREN2] = ACTIONS(6906), + [anon_sym_DASH] = ACTIONS(6904), + [anon_sym_PLUS] = ACTIONS(6904), + [anon_sym_STAR] = ACTIONS(6904), + [anon_sym_SLASH] = ACTIONS(6904), + [anon_sym_PERCENT] = ACTIONS(6904), + [anon_sym_PIPE_PIPE] = ACTIONS(6906), + [anon_sym_AMP_AMP] = ACTIONS(6906), + [anon_sym_PIPE] = ACTIONS(6904), + [anon_sym_CARET] = ACTIONS(6904), + [anon_sym_AMP] = ACTIONS(6904), + [anon_sym_EQ_EQ] = ACTIONS(6906), + [anon_sym_BANG_EQ] = ACTIONS(6906), + [anon_sym_GT] = ACTIONS(6904), + [anon_sym_GT_EQ] = ACTIONS(6906), + [anon_sym_LT_EQ] = ACTIONS(6904), + [anon_sym_LT] = ACTIONS(6904), + [anon_sym_LT_LT] = ACTIONS(6904), + [anon_sym_GT_GT] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(6906), + [anon_sym___attribute__] = ACTIONS(6904), + [anon_sym___attribute] = ACTIONS(6904), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6906), + [anon_sym_RBRACE] = ACTIONS(6906), + [anon_sym_LBRACK] = ACTIONS(6904), + [anon_sym_RBRACK] = ACTIONS(6906), + [anon_sym_EQ] = ACTIONS(6904), + [anon_sym_COLON] = ACTIONS(6906), + [anon_sym_QMARK] = ACTIONS(6906), + [anon_sym_STAR_EQ] = ACTIONS(6906), + [anon_sym_SLASH_EQ] = ACTIONS(6906), + [anon_sym_PERCENT_EQ] = ACTIONS(6906), + [anon_sym_PLUS_EQ] = ACTIONS(6906), + [anon_sym_DASH_EQ] = ACTIONS(6906), + [anon_sym_LT_LT_EQ] = ACTIONS(6906), + [anon_sym_GT_GT_EQ] = ACTIONS(6906), + [anon_sym_AMP_EQ] = ACTIONS(6906), + [anon_sym_CARET_EQ] = ACTIONS(6906), + [anon_sym_PIPE_EQ] = ACTIONS(6906), + [anon_sym_and_eq] = ACTIONS(6904), + [anon_sym_or_eq] = ACTIONS(6904), + [anon_sym_xor_eq] = ACTIONS(6904), + [anon_sym_LT_EQ_GT] = ACTIONS(6906), + [anon_sym_or] = ACTIONS(6904), + [anon_sym_and] = ACTIONS(6904), + [anon_sym_bitor] = ACTIONS(6904), + [anon_sym_xor] = ACTIONS(6904), + [anon_sym_bitand] = ACTIONS(6904), + [anon_sym_not_eq] = ACTIONS(6904), + [anon_sym_DASH_DASH] = ACTIONS(6906), + [anon_sym_PLUS_PLUS] = ACTIONS(6906), + [anon_sym_DOT] = ACTIONS(6904), + [anon_sym_DOT_STAR] = ACTIONS(6906), + [anon_sym_DASH_GT] = ACTIONS(6906), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6904), + }, + [STATE(2713)] = { + [sym_identifier] = ACTIONS(6908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6910), + [anon_sym_COMMA] = ACTIONS(6910), + [anon_sym_RPAREN] = ACTIONS(6910), + [aux_sym_preproc_if_token2] = ACTIONS(6910), + [aux_sym_preproc_else_token1] = ACTIONS(6910), + [aux_sym_preproc_elif_token1] = ACTIONS(6908), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6910), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6910), + [anon_sym_LPAREN2] = ACTIONS(6910), + [anon_sym_DASH] = ACTIONS(6908), + [anon_sym_PLUS] = ACTIONS(6908), + [anon_sym_STAR] = ACTIONS(6908), + [anon_sym_SLASH] = ACTIONS(6908), + [anon_sym_PERCENT] = ACTIONS(6908), + [anon_sym_PIPE_PIPE] = ACTIONS(6910), + [anon_sym_AMP_AMP] = ACTIONS(6910), + [anon_sym_PIPE] = ACTIONS(6908), + [anon_sym_CARET] = ACTIONS(6908), + [anon_sym_AMP] = ACTIONS(6908), + [anon_sym_EQ_EQ] = ACTIONS(6910), + [anon_sym_BANG_EQ] = ACTIONS(6910), + [anon_sym_GT] = ACTIONS(6908), + [anon_sym_GT_EQ] = ACTIONS(6910), + [anon_sym_LT_EQ] = ACTIONS(6908), + [anon_sym_LT] = ACTIONS(6908), + [anon_sym_LT_LT] = ACTIONS(6908), + [anon_sym_GT_GT] = ACTIONS(6908), + [anon_sym_SEMI] = ACTIONS(6910), + [anon_sym___attribute__] = ACTIONS(6908), + [anon_sym___attribute] = ACTIONS(6908), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6910), + [anon_sym_LBRACE] = ACTIONS(6910), + [anon_sym_RBRACE] = ACTIONS(6910), + [anon_sym_LBRACK] = ACTIONS(6908), + [anon_sym_RBRACK] = ACTIONS(6910), + [anon_sym_EQ] = ACTIONS(6908), + [anon_sym_COLON] = ACTIONS(6910), + [anon_sym_QMARK] = ACTIONS(6910), + [anon_sym_STAR_EQ] = ACTIONS(6910), + [anon_sym_SLASH_EQ] = ACTIONS(6910), + [anon_sym_PERCENT_EQ] = ACTIONS(6910), + [anon_sym_PLUS_EQ] = ACTIONS(6910), + [anon_sym_DASH_EQ] = ACTIONS(6910), + [anon_sym_LT_LT_EQ] = ACTIONS(6910), + [anon_sym_GT_GT_EQ] = ACTIONS(6910), + [anon_sym_AMP_EQ] = ACTIONS(6910), + [anon_sym_CARET_EQ] = ACTIONS(6910), + [anon_sym_PIPE_EQ] = ACTIONS(6910), + [anon_sym_and_eq] = ACTIONS(6908), + [anon_sym_or_eq] = ACTIONS(6908), + [anon_sym_xor_eq] = ACTIONS(6908), + [anon_sym_LT_EQ_GT] = ACTIONS(6910), + [anon_sym_or] = ACTIONS(6908), + [anon_sym_and] = ACTIONS(6908), + [anon_sym_bitor] = ACTIONS(6908), + [anon_sym_xor] = ACTIONS(6908), + [anon_sym_bitand] = ACTIONS(6908), + [anon_sym_not_eq] = ACTIONS(6908), + [anon_sym_DASH_DASH] = ACTIONS(6910), + [anon_sym_PLUS_PLUS] = ACTIONS(6910), + [anon_sym_DOT] = ACTIONS(6908), + [anon_sym_DOT_STAR] = ACTIONS(6910), + [anon_sym_DASH_GT] = ACTIONS(6910), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6908), + }, + [STATE(2714)] = { + [sym_identifier] = ACTIONS(5104), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5106), + [anon_sym_COMMA] = ACTIONS(5106), + [anon_sym_RPAREN] = ACTIONS(5106), + [aux_sym_preproc_if_token2] = ACTIONS(5106), + [aux_sym_preproc_else_token1] = ACTIONS(5106), + [aux_sym_preproc_elif_token1] = ACTIONS(5104), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5106), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5106), + [anon_sym_LPAREN2] = ACTIONS(5106), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_PLUS] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5104), + [anon_sym_PERCENT] = ACTIONS(5104), + [anon_sym_PIPE_PIPE] = ACTIONS(5106), + [anon_sym_AMP_AMP] = ACTIONS(5106), + [anon_sym_PIPE] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym_AMP] = ACTIONS(5104), + [anon_sym_EQ_EQ] = ACTIONS(5106), + [anon_sym_BANG_EQ] = ACTIONS(5106), + [anon_sym_GT] = ACTIONS(5104), + [anon_sym_GT_EQ] = ACTIONS(5106), + [anon_sym_LT_EQ] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5104), + [anon_sym_LT_LT] = ACTIONS(5104), + [anon_sym_GT_GT] = ACTIONS(5104), + [anon_sym_SEMI] = ACTIONS(5106), + [anon_sym___attribute__] = ACTIONS(5104), + [anon_sym___attribute] = ACTIONS(5104), + [anon_sym_LBRACE] = ACTIONS(5106), + [anon_sym_RBRACE] = ACTIONS(5106), + [anon_sym_LBRACK] = ACTIONS(5106), + [anon_sym_RBRACK] = ACTIONS(5106), + [anon_sym_EQ] = ACTIONS(5104), + [anon_sym_COLON] = ACTIONS(5106), + [anon_sym_QMARK] = ACTIONS(5106), + [anon_sym_STAR_EQ] = ACTIONS(5106), + [anon_sym_SLASH_EQ] = ACTIONS(5106), + [anon_sym_PERCENT_EQ] = ACTIONS(5106), + [anon_sym_PLUS_EQ] = ACTIONS(5106), + [anon_sym_DASH_EQ] = ACTIONS(5106), + [anon_sym_LT_LT_EQ] = ACTIONS(5106), + [anon_sym_GT_GT_EQ] = ACTIONS(5106), + [anon_sym_AMP_EQ] = ACTIONS(5106), + [anon_sym_CARET_EQ] = ACTIONS(5106), + [anon_sym_PIPE_EQ] = ACTIONS(5106), + [anon_sym_and_eq] = ACTIONS(5104), + [anon_sym_or_eq] = ACTIONS(5104), + [anon_sym_xor_eq] = ACTIONS(5104), + [anon_sym_LT_EQ_GT] = ACTIONS(5106), + [anon_sym_or] = ACTIONS(5104), + [anon_sym_and] = ACTIONS(5104), + [anon_sym_bitor] = ACTIONS(5104), + [anon_sym_xor] = ACTIONS(5104), + [anon_sym_bitand] = ACTIONS(5104), + [anon_sym_not_eq] = ACTIONS(5104), + [anon_sym_DASH_DASH] = ACTIONS(5106), + [anon_sym_PLUS_PLUS] = ACTIONS(5106), + [anon_sym_DOT] = ACTIONS(5104), + [anon_sym_DOT_STAR] = ACTIONS(5106), + [anon_sym_DASH_GT] = ACTIONS(5106), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5104), + [anon_sym_decltype] = ACTIONS(5104), + }, + [STATE(2715)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5678), + [anon_sym_COMMA] = ACTIONS(5678), + [anon_sym_RPAREN] = ACTIONS(5678), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_DASH] = ACTIONS(5676), + [anon_sym_PLUS] = ACTIONS(5676), + [anon_sym_STAR] = ACTIONS(5676), + [anon_sym_SLASH] = ACTIONS(5676), + [anon_sym_PERCENT] = ACTIONS(5676), + [anon_sym_PIPE_PIPE] = ACTIONS(5678), + [anon_sym_AMP_AMP] = ACTIONS(5678), + [anon_sym_PIPE] = ACTIONS(5676), + [anon_sym_CARET] = ACTIONS(5676), + [anon_sym_AMP] = ACTIONS(5676), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_GT] = ACTIONS(5676), + [anon_sym_GT_EQ] = ACTIONS(5678), + [anon_sym_LT_EQ] = ACTIONS(5676), + [anon_sym_LT] = ACTIONS(5676), + [anon_sym_LT_LT] = ACTIONS(5676), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_SEMI] = ACTIONS(5678), + [anon_sym_RBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_RBRACK] = ACTIONS(5678), + [anon_sym_EQ] = ACTIONS(5676), + [anon_sym_COLON] = ACTIONS(5678), + [anon_sym_QMARK] = ACTIONS(5678), + [anon_sym_STAR_EQ] = ACTIONS(5678), + [anon_sym_SLASH_EQ] = ACTIONS(5678), + [anon_sym_PERCENT_EQ] = ACTIONS(5678), + [anon_sym_PLUS_EQ] = ACTIONS(5678), + [anon_sym_DASH_EQ] = ACTIONS(5678), + [anon_sym_LT_LT_EQ] = ACTIONS(5678), + [anon_sym_GT_GT_EQ] = ACTIONS(5678), + [anon_sym_AMP_EQ] = ACTIONS(5678), + [anon_sym_CARET_EQ] = ACTIONS(5678), + [anon_sym_PIPE_EQ] = ACTIONS(5678), + [anon_sym_and_eq] = ACTIONS(5676), + [anon_sym_or_eq] = ACTIONS(5676), + [anon_sym_xor_eq] = ACTIONS(5676), + [anon_sym_LT_EQ_GT] = ACTIONS(5678), + [anon_sym_or] = ACTIONS(5676), + [anon_sym_and] = ACTIONS(5676), + [anon_sym_bitor] = ACTIONS(5676), + [anon_sym_xor] = ACTIONS(5676), + [anon_sym_bitand] = ACTIONS(5676), + [anon_sym_not_eq] = ACTIONS(5676), + [anon_sym_DASH_DASH] = ACTIONS(5678), + [anon_sym_PLUS_PLUS] = ACTIONS(5678), + [anon_sym_DOT] = ACTIONS(5676), + [anon_sym_DOT_STAR] = ACTIONS(5678), + [anon_sym_DASH_GT] = ACTIONS(5678), + [anon_sym_L_DQUOTE] = ACTIONS(5678), + [anon_sym_u_DQUOTE] = ACTIONS(5678), + [anon_sym_U_DQUOTE] = ACTIONS(5678), + [anon_sym_u8_DQUOTE] = ACTIONS(5678), + [anon_sym_DQUOTE] = ACTIONS(5678), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5678), + [anon_sym_LR_DQUOTE] = ACTIONS(5678), + [anon_sym_uR_DQUOTE] = ACTIONS(5678), + [anon_sym_UR_DQUOTE] = ACTIONS(5678), + [anon_sym_u8R_DQUOTE] = ACTIONS(5678), + [sym_literal_suffix] = ACTIONS(5676), + }, + [STATE(2716)] = { + [sym_identifier] = ACTIONS(6912), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6914), + [anon_sym_COMMA] = ACTIONS(6914), + [anon_sym_RPAREN] = ACTIONS(6914), + [aux_sym_preproc_if_token2] = ACTIONS(6914), + [aux_sym_preproc_else_token1] = ACTIONS(6914), + [aux_sym_preproc_elif_token1] = ACTIONS(6912), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6914), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6914), + [anon_sym_LPAREN2] = ACTIONS(6914), + [anon_sym_DASH] = ACTIONS(6912), + [anon_sym_PLUS] = ACTIONS(6912), + [anon_sym_STAR] = ACTIONS(6912), + [anon_sym_SLASH] = ACTIONS(6912), + [anon_sym_PERCENT] = ACTIONS(6912), + [anon_sym_PIPE_PIPE] = ACTIONS(6914), + [anon_sym_AMP_AMP] = ACTIONS(6914), + [anon_sym_PIPE] = ACTIONS(6912), + [anon_sym_CARET] = ACTIONS(6912), + [anon_sym_AMP] = ACTIONS(6912), + [anon_sym_EQ_EQ] = ACTIONS(6914), + [anon_sym_BANG_EQ] = ACTIONS(6914), + [anon_sym_GT] = ACTIONS(6912), + [anon_sym_GT_EQ] = ACTIONS(6914), + [anon_sym_LT_EQ] = ACTIONS(6912), + [anon_sym_LT] = ACTIONS(6912), + [anon_sym_LT_LT] = ACTIONS(6912), + [anon_sym_GT_GT] = ACTIONS(6912), + [anon_sym_SEMI] = ACTIONS(6914), + [anon_sym___attribute__] = ACTIONS(6912), + [anon_sym___attribute] = ACTIONS(6912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6914), + [anon_sym_LBRACE] = ACTIONS(6914), + [anon_sym_RBRACE] = ACTIONS(6914), + [anon_sym_LBRACK] = ACTIONS(6912), + [anon_sym_RBRACK] = ACTIONS(6914), + [anon_sym_EQ] = ACTIONS(6912), + [anon_sym_COLON] = ACTIONS(6914), + [anon_sym_QMARK] = ACTIONS(6914), + [anon_sym_STAR_EQ] = ACTIONS(6914), + [anon_sym_SLASH_EQ] = ACTIONS(6914), + [anon_sym_PERCENT_EQ] = ACTIONS(6914), + [anon_sym_PLUS_EQ] = ACTIONS(6914), + [anon_sym_DASH_EQ] = ACTIONS(6914), + [anon_sym_LT_LT_EQ] = ACTIONS(6914), + [anon_sym_GT_GT_EQ] = ACTIONS(6914), + [anon_sym_AMP_EQ] = ACTIONS(6914), + [anon_sym_CARET_EQ] = ACTIONS(6914), + [anon_sym_PIPE_EQ] = ACTIONS(6914), + [anon_sym_and_eq] = ACTIONS(6912), + [anon_sym_or_eq] = ACTIONS(6912), + [anon_sym_xor_eq] = ACTIONS(6912), + [anon_sym_LT_EQ_GT] = ACTIONS(6914), + [anon_sym_or] = ACTIONS(6912), + [anon_sym_and] = ACTIONS(6912), + [anon_sym_bitor] = ACTIONS(6912), + [anon_sym_xor] = ACTIONS(6912), + [anon_sym_bitand] = ACTIONS(6912), + [anon_sym_not_eq] = ACTIONS(6912), + [anon_sym_DASH_DASH] = ACTIONS(6914), + [anon_sym_PLUS_PLUS] = ACTIONS(6914), + [anon_sym_DOT] = ACTIONS(6912), + [anon_sym_DOT_STAR] = ACTIONS(6914), + [anon_sym_DASH_GT] = ACTIONS(6914), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6912), + }, + [STATE(2717)] = { + [sym_argument_list] = STATE(2845), + [sym_initializer_list] = STATE(2845), + [sym_identifier] = ACTIONS(6916), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6918), + [anon_sym_COMMA] = ACTIONS(6918), + [anon_sym_RPAREN] = ACTIONS(6918), + [aux_sym_preproc_if_token2] = ACTIONS(6918), + [aux_sym_preproc_else_token1] = ACTIONS(6918), + [aux_sym_preproc_elif_token1] = ACTIONS(6916), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6918), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6918), + [anon_sym_LPAREN2] = ACTIONS(6589), + [anon_sym_DASH] = ACTIONS(6916), + [anon_sym_PLUS] = ACTIONS(6916), + [anon_sym_STAR] = ACTIONS(6916), + [anon_sym_SLASH] = ACTIONS(6916), + [anon_sym_PERCENT] = ACTIONS(6916), + [anon_sym_PIPE_PIPE] = ACTIONS(6918), + [anon_sym_AMP_AMP] = ACTIONS(6918), + [anon_sym_PIPE] = ACTIONS(6916), + [anon_sym_CARET] = ACTIONS(6916), + [anon_sym_AMP] = ACTIONS(6916), + [anon_sym_EQ_EQ] = ACTIONS(6918), + [anon_sym_BANG_EQ] = ACTIONS(6918), + [anon_sym_GT] = ACTIONS(6916), + [anon_sym_GT_EQ] = ACTIONS(6918), + [anon_sym_LT_EQ] = ACTIONS(6916), + [anon_sym_LT] = ACTIONS(6916), + [anon_sym_LT_LT] = ACTIONS(6916), + [anon_sym_GT_GT] = ACTIONS(6916), + [anon_sym_SEMI] = ACTIONS(6918), + [anon_sym___attribute__] = ACTIONS(6916), + [anon_sym___attribute] = ACTIONS(6916), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_RBRACE] = ACTIONS(6918), + [anon_sym_LBRACK] = ACTIONS(6918), + [anon_sym_RBRACK] = ACTIONS(6918), + [anon_sym_EQ] = ACTIONS(6916), + [anon_sym_COLON] = ACTIONS(6918), + [anon_sym_QMARK] = ACTIONS(6918), + [anon_sym_STAR_EQ] = ACTIONS(6918), + [anon_sym_SLASH_EQ] = ACTIONS(6918), + [anon_sym_PERCENT_EQ] = ACTIONS(6918), + [anon_sym_PLUS_EQ] = ACTIONS(6918), + [anon_sym_DASH_EQ] = ACTIONS(6918), + [anon_sym_LT_LT_EQ] = ACTIONS(6918), + [anon_sym_GT_GT_EQ] = ACTIONS(6918), + [anon_sym_AMP_EQ] = ACTIONS(6918), + [anon_sym_CARET_EQ] = ACTIONS(6918), + [anon_sym_PIPE_EQ] = ACTIONS(6918), + [anon_sym_and_eq] = ACTIONS(6916), + [anon_sym_or_eq] = ACTIONS(6916), + [anon_sym_xor_eq] = ACTIONS(6916), + [anon_sym_LT_EQ_GT] = ACTIONS(6918), + [anon_sym_or] = ACTIONS(6916), + [anon_sym_and] = ACTIONS(6916), + [anon_sym_bitor] = ACTIONS(6916), + [anon_sym_xor] = ACTIONS(6916), + [anon_sym_bitand] = ACTIONS(6916), + [anon_sym_not_eq] = ACTIONS(6916), + [anon_sym_DASH_DASH] = ACTIONS(6918), + [anon_sym_PLUS_PLUS] = ACTIONS(6918), + [anon_sym_DOT] = ACTIONS(6916), + [anon_sym_DOT_STAR] = ACTIONS(6918), + [anon_sym_DASH_GT] = ACTIONS(6918), + [sym_comment] = ACTIONS(3), + }, + [STATE(2718)] = { + [sym_identifier] = ACTIONS(4805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4807), + [anon_sym_COMMA] = ACTIONS(4807), + [anon_sym_RPAREN] = ACTIONS(4807), + [aux_sym_preproc_if_token2] = ACTIONS(4807), + [aux_sym_preproc_else_token1] = ACTIONS(4807), + [aux_sym_preproc_elif_token1] = ACTIONS(4805), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4807), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4807), + [anon_sym_LPAREN2] = ACTIONS(4807), + [anon_sym_DASH] = ACTIONS(4805), + [anon_sym_PLUS] = ACTIONS(4805), + [anon_sym_STAR] = ACTIONS(4805), + [anon_sym_SLASH] = ACTIONS(4805), + [anon_sym_PERCENT] = ACTIONS(4805), + [anon_sym_PIPE_PIPE] = ACTIONS(4807), + [anon_sym_AMP_AMP] = ACTIONS(4807), + [anon_sym_PIPE] = ACTIONS(4805), + [anon_sym_CARET] = ACTIONS(4805), + [anon_sym_AMP] = ACTIONS(4805), + [anon_sym_EQ_EQ] = ACTIONS(4807), + [anon_sym_BANG_EQ] = ACTIONS(4807), + [anon_sym_GT] = ACTIONS(4805), + [anon_sym_GT_EQ] = ACTIONS(4807), + [anon_sym_LT_EQ] = ACTIONS(4805), + [anon_sym_LT] = ACTIONS(4805), + [anon_sym_LT_LT] = ACTIONS(4805), + [anon_sym_GT_GT] = ACTIONS(4805), + [anon_sym_SEMI] = ACTIONS(4807), + [anon_sym___attribute__] = ACTIONS(4805), + [anon_sym___attribute] = ACTIONS(4805), + [anon_sym_LBRACE] = ACTIONS(4807), + [anon_sym_RBRACE] = ACTIONS(4807), + [anon_sym_LBRACK] = ACTIONS(4807), + [anon_sym_RBRACK] = ACTIONS(4807), + [anon_sym_EQ] = ACTIONS(4805), + [anon_sym_COLON] = ACTIONS(4807), + [anon_sym_QMARK] = ACTIONS(4807), + [anon_sym_STAR_EQ] = ACTIONS(4807), + [anon_sym_SLASH_EQ] = ACTIONS(4807), + [anon_sym_PERCENT_EQ] = ACTIONS(4807), + [anon_sym_PLUS_EQ] = ACTIONS(4807), + [anon_sym_DASH_EQ] = ACTIONS(4807), + [anon_sym_LT_LT_EQ] = ACTIONS(4807), + [anon_sym_GT_GT_EQ] = ACTIONS(4807), + [anon_sym_AMP_EQ] = ACTIONS(4807), + [anon_sym_CARET_EQ] = ACTIONS(4807), + [anon_sym_PIPE_EQ] = ACTIONS(4807), + [anon_sym_and_eq] = ACTIONS(4805), + [anon_sym_or_eq] = ACTIONS(4805), + [anon_sym_xor_eq] = ACTIONS(4805), + [anon_sym_LT_EQ_GT] = ACTIONS(4807), + [anon_sym_or] = ACTIONS(4805), + [anon_sym_and] = ACTIONS(4805), + [anon_sym_bitor] = ACTIONS(4805), + [anon_sym_xor] = ACTIONS(4805), + [anon_sym_bitand] = ACTIONS(4805), + [anon_sym_not_eq] = ACTIONS(4805), + [anon_sym_DASH_DASH] = ACTIONS(4807), + [anon_sym_PLUS_PLUS] = ACTIONS(4807), + [anon_sym_DOT] = ACTIONS(4805), + [anon_sym_DOT_STAR] = ACTIONS(4807), + [anon_sym_DASH_GT] = ACTIONS(4807), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4805), + [anon_sym_decltype] = ACTIONS(4805), + }, + [STATE(2719)] = { + [sym_identifier] = ACTIONS(6920), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6922), + [anon_sym_COMMA] = ACTIONS(6922), + [anon_sym_RPAREN] = ACTIONS(6922), + [aux_sym_preproc_if_token2] = ACTIONS(6922), + [aux_sym_preproc_else_token1] = ACTIONS(6922), + [aux_sym_preproc_elif_token1] = ACTIONS(6920), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6922), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6922), + [anon_sym_LPAREN2] = ACTIONS(6922), + [anon_sym_DASH] = ACTIONS(6920), + [anon_sym_PLUS] = ACTIONS(6920), + [anon_sym_STAR] = ACTIONS(6920), + [anon_sym_SLASH] = ACTIONS(6920), + [anon_sym_PERCENT] = ACTIONS(6920), + [anon_sym_PIPE_PIPE] = ACTIONS(6922), + [anon_sym_AMP_AMP] = ACTIONS(6922), + [anon_sym_PIPE] = ACTIONS(6920), + [anon_sym_CARET] = ACTIONS(6920), + [anon_sym_AMP] = ACTIONS(6920), + [anon_sym_EQ_EQ] = ACTIONS(6922), + [anon_sym_BANG_EQ] = ACTIONS(6922), + [anon_sym_GT] = ACTIONS(6920), + [anon_sym_GT_EQ] = ACTIONS(6922), + [anon_sym_LT_EQ] = ACTIONS(6920), + [anon_sym_LT] = ACTIONS(6920), + [anon_sym_LT_LT] = ACTIONS(6920), + [anon_sym_GT_GT] = ACTIONS(6920), + [anon_sym_SEMI] = ACTIONS(6922), + [anon_sym___attribute__] = ACTIONS(6920), + [anon_sym___attribute] = ACTIONS(6920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6922), + [anon_sym_LBRACE] = ACTIONS(6922), + [anon_sym_RBRACE] = ACTIONS(6922), + [anon_sym_LBRACK] = ACTIONS(6920), + [anon_sym_RBRACK] = ACTIONS(6922), + [anon_sym_EQ] = ACTIONS(6920), + [anon_sym_COLON] = ACTIONS(6922), + [anon_sym_QMARK] = ACTIONS(6922), + [anon_sym_STAR_EQ] = ACTIONS(6922), + [anon_sym_SLASH_EQ] = ACTIONS(6922), + [anon_sym_PERCENT_EQ] = ACTIONS(6922), + [anon_sym_PLUS_EQ] = ACTIONS(6922), + [anon_sym_DASH_EQ] = ACTIONS(6922), + [anon_sym_LT_LT_EQ] = ACTIONS(6922), + [anon_sym_GT_GT_EQ] = ACTIONS(6922), + [anon_sym_AMP_EQ] = ACTIONS(6922), + [anon_sym_CARET_EQ] = ACTIONS(6922), + [anon_sym_PIPE_EQ] = ACTIONS(6922), + [anon_sym_and_eq] = ACTIONS(6920), + [anon_sym_or_eq] = ACTIONS(6920), + [anon_sym_xor_eq] = ACTIONS(6920), + [anon_sym_LT_EQ_GT] = ACTIONS(6922), + [anon_sym_or] = ACTIONS(6920), + [anon_sym_and] = ACTIONS(6920), + [anon_sym_bitor] = ACTIONS(6920), + [anon_sym_xor] = ACTIONS(6920), + [anon_sym_bitand] = ACTIONS(6920), + [anon_sym_not_eq] = ACTIONS(6920), + [anon_sym_DASH_DASH] = ACTIONS(6922), + [anon_sym_PLUS_PLUS] = ACTIONS(6922), + [anon_sym_DOT] = ACTIONS(6920), + [anon_sym_DOT_STAR] = ACTIONS(6922), + [anon_sym_DASH_GT] = ACTIONS(6922), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6920), + }, + [STATE(2720)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2696), + [sym_identifier] = ACTIONS(5143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5145), + [anon_sym_COMMA] = ACTIONS(5145), + [aux_sym_preproc_if_token2] = ACTIONS(5145), + [aux_sym_preproc_else_token1] = ACTIONS(5145), + [aux_sym_preproc_elif_token1] = ACTIONS(5143), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5145), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5145), + [anon_sym_LPAREN2] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5143), + [anon_sym_PLUS] = ACTIONS(5143), + [anon_sym_STAR] = ACTIONS(5143), + [anon_sym_SLASH] = ACTIONS(5143), + [anon_sym_PERCENT] = ACTIONS(5143), + [anon_sym_PIPE_PIPE] = ACTIONS(5145), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_PIPE] = ACTIONS(5143), + [anon_sym_CARET] = ACTIONS(5143), + [anon_sym_AMP] = ACTIONS(5143), + [anon_sym_EQ_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5143), + [anon_sym_GT_EQ] = ACTIONS(5145), + [anon_sym_LT_EQ] = ACTIONS(5143), + [anon_sym_LT] = ACTIONS(5143), + [anon_sym_LT_LT] = ACTIONS(5143), + [anon_sym_GT_GT] = ACTIONS(5143), + [anon_sym___attribute__] = ACTIONS(5143), + [anon_sym___attribute] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_signed] = ACTIONS(6825), + [anon_sym_unsigned] = ACTIONS(6825), + [anon_sym_long] = ACTIONS(6825), + [anon_sym_short] = ACTIONS(6825), + [anon_sym_LBRACK] = ACTIONS(5145), + [anon_sym_EQ] = ACTIONS(5143), + [anon_sym_QMARK] = ACTIONS(5145), + [anon_sym_STAR_EQ] = ACTIONS(5145), + [anon_sym_SLASH_EQ] = ACTIONS(5145), + [anon_sym_PERCENT_EQ] = ACTIONS(5145), + [anon_sym_PLUS_EQ] = ACTIONS(5145), + [anon_sym_DASH_EQ] = ACTIONS(5145), + [anon_sym_LT_LT_EQ] = ACTIONS(5145), + [anon_sym_GT_GT_EQ] = ACTIONS(5145), + [anon_sym_AMP_EQ] = ACTIONS(5145), + [anon_sym_CARET_EQ] = ACTIONS(5145), + [anon_sym_PIPE_EQ] = ACTIONS(5145), + [anon_sym_and_eq] = ACTIONS(5143), + [anon_sym_or_eq] = ACTIONS(5143), + [anon_sym_xor_eq] = ACTIONS(5143), + [anon_sym_LT_EQ_GT] = ACTIONS(5145), + [anon_sym_or] = ACTIONS(5143), + [anon_sym_and] = ACTIONS(5143), + [anon_sym_bitor] = ACTIONS(5143), + [anon_sym_xor] = ACTIONS(5143), + [anon_sym_bitand] = ACTIONS(5143), + [anon_sym_not_eq] = ACTIONS(5143), + [anon_sym_DASH_DASH] = ACTIONS(5145), + [anon_sym_PLUS_PLUS] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5143), + [anon_sym_DOT_STAR] = ACTIONS(5145), + [anon_sym_DASH_GT] = ACTIONS(5145), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5143), + [anon_sym_decltype] = ACTIONS(5143), + }, + [STATE(2721)] = { + [sym_string_literal] = STATE(2711), + [sym_template_argument_list] = STATE(3655), + [sym_raw_string_literal] = STATE(2711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3097), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6924), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(3089), + [anon_sym_SLASH_EQ] = ACTIONS(3089), + [anon_sym_PERCENT_EQ] = ACTIONS(3089), + [anon_sym_PLUS_EQ] = ACTIONS(3089), + [anon_sym_DASH_EQ] = ACTIONS(3089), + [anon_sym_LT_LT_EQ] = ACTIONS(3089), + [anon_sym_GT_GT_EQ] = ACTIONS(3097), + [anon_sym_AMP_EQ] = ACTIONS(3089), + [anon_sym_CARET_EQ] = ACTIONS(3089), + [anon_sym_PIPE_EQ] = ACTIONS(3089), + [anon_sym_and_eq] = ACTIONS(3089), + [anon_sym_or_eq] = ACTIONS(3089), + [anon_sym_xor_eq] = ACTIONS(3089), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(6864), + [anon_sym_u_DQUOTE] = ACTIONS(6864), + [anon_sym_U_DQUOTE] = ACTIONS(6864), + [anon_sym_u8_DQUOTE] = ACTIONS(6864), + [anon_sym_DQUOTE] = ACTIONS(6864), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(3089), + [anon_sym_R_DQUOTE] = ACTIONS(6866), + [anon_sym_LR_DQUOTE] = ACTIONS(6866), + [anon_sym_uR_DQUOTE] = ACTIONS(6866), + [anon_sym_UR_DQUOTE] = ACTIONS(6866), + [anon_sym_u8R_DQUOTE] = ACTIONS(6866), + }, + [STATE(2722)] = { + [sym_string_literal] = STATE(2587), + [sym_raw_string_literal] = STATE(2587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6643), + [anon_sym_COMMA] = ACTIONS(6643), + [anon_sym_LPAREN2] = ACTIONS(6643), + [anon_sym_DASH] = ACTIONS(6641), + [anon_sym_PLUS] = ACTIONS(6641), + [anon_sym_STAR] = ACTIONS(6641), + [anon_sym_SLASH] = ACTIONS(6641), + [anon_sym_PERCENT] = ACTIONS(6641), + [anon_sym_PIPE_PIPE] = ACTIONS(6643), + [anon_sym_AMP_AMP] = ACTIONS(6643), + [anon_sym_PIPE] = ACTIONS(6641), + [anon_sym_CARET] = ACTIONS(6641), + [anon_sym_AMP] = ACTIONS(6641), + [anon_sym_EQ_EQ] = ACTIONS(6643), + [anon_sym_BANG_EQ] = ACTIONS(6643), + [anon_sym_GT] = ACTIONS(6641), + [anon_sym_GT_EQ] = ACTIONS(6643), + [anon_sym_LT_EQ] = ACTIONS(6641), + [anon_sym_LT] = ACTIONS(6641), + [anon_sym_LT_LT] = ACTIONS(6641), + [anon_sym_GT_GT] = ACTIONS(6641), + [anon_sym_SEMI] = ACTIONS(6643), + [anon_sym___attribute__] = ACTIONS(6641), + [anon_sym___attribute] = ACTIONS(6641), + [anon_sym_LBRACK] = ACTIONS(6643), + [anon_sym_EQ] = ACTIONS(6641), + [anon_sym_QMARK] = ACTIONS(6643), + [anon_sym_STAR_EQ] = ACTIONS(6643), + [anon_sym_SLASH_EQ] = ACTIONS(6643), + [anon_sym_PERCENT_EQ] = ACTIONS(6643), + [anon_sym_PLUS_EQ] = ACTIONS(6643), + [anon_sym_DASH_EQ] = ACTIONS(6643), + [anon_sym_LT_LT_EQ] = ACTIONS(6643), + [anon_sym_GT_GT_EQ] = ACTIONS(6643), + [anon_sym_AMP_EQ] = ACTIONS(6643), + [anon_sym_CARET_EQ] = ACTIONS(6643), + [anon_sym_PIPE_EQ] = ACTIONS(6643), + [anon_sym_and_eq] = ACTIONS(6641), + [anon_sym_or_eq] = ACTIONS(6641), + [anon_sym_xor_eq] = ACTIONS(6641), + [anon_sym_LT_EQ_GT] = ACTIONS(6643), + [anon_sym_or] = ACTIONS(6641), + [anon_sym_and] = ACTIONS(6641), + [anon_sym_bitor] = ACTIONS(6641), + [anon_sym_xor] = ACTIONS(6641), + [anon_sym_bitand] = ACTIONS(6641), + [anon_sym_not_eq] = ACTIONS(6641), + [anon_sym_DASH_DASH] = ACTIONS(6643), + [anon_sym_PLUS_PLUS] = ACTIONS(6643), + [anon_sym_DOT] = ACTIONS(6641), + [anon_sym_DOT_STAR] = ACTIONS(6643), + [anon_sym_DASH_GT] = ACTIONS(6643), + [anon_sym_L_DQUOTE] = ACTIONS(6661), + [anon_sym_u_DQUOTE] = ACTIONS(6661), + [anon_sym_U_DQUOTE] = ACTIONS(6661), + [anon_sym_u8_DQUOTE] = ACTIONS(6661), + [anon_sym_DQUOTE] = ACTIONS(6661), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6663), + [anon_sym_LR_DQUOTE] = ACTIONS(6663), + [anon_sym_uR_DQUOTE] = ACTIONS(6663), + [anon_sym_UR_DQUOTE] = ACTIONS(6663), + [anon_sym_u8R_DQUOTE] = ACTIONS(6663), + [sym_literal_suffix] = ACTIONS(6641), + }, + [STATE(2723)] = { + [sym_identifier] = ACTIONS(6927), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6929), + [anon_sym_COMMA] = ACTIONS(6929), + [anon_sym_RPAREN] = ACTIONS(6929), + [aux_sym_preproc_if_token2] = ACTIONS(6929), + [aux_sym_preproc_else_token1] = ACTIONS(6929), + [aux_sym_preproc_elif_token1] = ACTIONS(6927), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6929), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6929), + [anon_sym_LPAREN2] = ACTIONS(6929), + [anon_sym_DASH] = ACTIONS(6927), + [anon_sym_PLUS] = ACTIONS(6927), + [anon_sym_STAR] = ACTIONS(6927), + [anon_sym_SLASH] = ACTIONS(6927), + [anon_sym_PERCENT] = ACTIONS(6927), + [anon_sym_PIPE_PIPE] = ACTIONS(6929), + [anon_sym_AMP_AMP] = ACTIONS(6929), + [anon_sym_PIPE] = ACTIONS(6927), + [anon_sym_CARET] = ACTIONS(6927), + [anon_sym_AMP] = ACTIONS(6927), + [anon_sym_EQ_EQ] = ACTIONS(6929), + [anon_sym_BANG_EQ] = ACTIONS(6929), + [anon_sym_GT] = ACTIONS(6927), + [anon_sym_GT_EQ] = ACTIONS(6929), + [anon_sym_LT_EQ] = ACTIONS(6927), + [anon_sym_LT] = ACTIONS(6927), + [anon_sym_LT_LT] = ACTIONS(6927), + [anon_sym_GT_GT] = ACTIONS(6927), + [anon_sym_SEMI] = ACTIONS(6929), + [anon_sym___attribute__] = ACTIONS(6927), + [anon_sym___attribute] = ACTIONS(6927), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6929), + [anon_sym_LBRACE] = ACTIONS(6929), + [anon_sym_RBRACE] = ACTIONS(6929), + [anon_sym_LBRACK] = ACTIONS(6927), + [anon_sym_RBRACK] = ACTIONS(6929), + [anon_sym_EQ] = ACTIONS(6927), + [anon_sym_COLON] = ACTIONS(6929), + [anon_sym_QMARK] = ACTIONS(6929), + [anon_sym_STAR_EQ] = ACTIONS(6929), + [anon_sym_SLASH_EQ] = ACTIONS(6929), + [anon_sym_PERCENT_EQ] = ACTIONS(6929), + [anon_sym_PLUS_EQ] = ACTIONS(6929), + [anon_sym_DASH_EQ] = ACTIONS(6929), + [anon_sym_LT_LT_EQ] = ACTIONS(6929), + [anon_sym_GT_GT_EQ] = ACTIONS(6929), + [anon_sym_AMP_EQ] = ACTIONS(6929), + [anon_sym_CARET_EQ] = ACTIONS(6929), + [anon_sym_PIPE_EQ] = ACTIONS(6929), + [anon_sym_and_eq] = ACTIONS(6927), + [anon_sym_or_eq] = ACTIONS(6927), + [anon_sym_xor_eq] = ACTIONS(6927), + [anon_sym_LT_EQ_GT] = ACTIONS(6929), + [anon_sym_or] = ACTIONS(6927), + [anon_sym_and] = ACTIONS(6927), + [anon_sym_bitor] = ACTIONS(6927), + [anon_sym_xor] = ACTIONS(6927), + [anon_sym_bitand] = ACTIONS(6927), + [anon_sym_not_eq] = ACTIONS(6927), + [anon_sym_DASH_DASH] = ACTIONS(6929), + [anon_sym_PLUS_PLUS] = ACTIONS(6929), + [anon_sym_DOT] = ACTIONS(6927), + [anon_sym_DOT_STAR] = ACTIONS(6929), + [anon_sym_DASH_GT] = ACTIONS(6929), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6927), + }, + [STATE(2724)] = { + [sym_argument_list] = STATE(2855), + [sym_initializer_list] = STATE(2855), + [sym_identifier] = ACTIONS(6931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6933), + [anon_sym_COMMA] = ACTIONS(6933), + [anon_sym_RPAREN] = ACTIONS(6933), + [aux_sym_preproc_if_token2] = ACTIONS(6933), + [aux_sym_preproc_else_token1] = ACTIONS(6933), + [aux_sym_preproc_elif_token1] = ACTIONS(6931), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6933), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6933), + [anon_sym_LPAREN2] = ACTIONS(6589), + [anon_sym_DASH] = ACTIONS(6931), + [anon_sym_PLUS] = ACTIONS(6931), + [anon_sym_STAR] = ACTIONS(6931), + [anon_sym_SLASH] = ACTIONS(6931), + [anon_sym_PERCENT] = ACTIONS(6931), + [anon_sym_PIPE_PIPE] = ACTIONS(6933), + [anon_sym_AMP_AMP] = ACTIONS(6933), + [anon_sym_PIPE] = ACTIONS(6931), + [anon_sym_CARET] = ACTIONS(6931), + [anon_sym_AMP] = ACTIONS(6931), + [anon_sym_EQ_EQ] = ACTIONS(6933), + [anon_sym_BANG_EQ] = ACTIONS(6933), + [anon_sym_GT] = ACTIONS(6931), + [anon_sym_GT_EQ] = ACTIONS(6933), + [anon_sym_LT_EQ] = ACTIONS(6931), + [anon_sym_LT] = ACTIONS(6931), + [anon_sym_LT_LT] = ACTIONS(6931), + [anon_sym_GT_GT] = ACTIONS(6931), + [anon_sym_SEMI] = ACTIONS(6933), + [anon_sym___attribute__] = ACTIONS(6931), + [anon_sym___attribute] = ACTIONS(6931), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_RBRACE] = ACTIONS(6933), + [anon_sym_LBRACK] = ACTIONS(6933), + [anon_sym_RBRACK] = ACTIONS(6933), + [anon_sym_EQ] = ACTIONS(6931), + [anon_sym_COLON] = ACTIONS(6933), + [anon_sym_QMARK] = ACTIONS(6933), + [anon_sym_STAR_EQ] = ACTIONS(6933), + [anon_sym_SLASH_EQ] = ACTIONS(6933), + [anon_sym_PERCENT_EQ] = ACTIONS(6933), + [anon_sym_PLUS_EQ] = ACTIONS(6933), + [anon_sym_DASH_EQ] = ACTIONS(6933), + [anon_sym_LT_LT_EQ] = ACTIONS(6933), + [anon_sym_GT_GT_EQ] = ACTIONS(6933), + [anon_sym_AMP_EQ] = ACTIONS(6933), + [anon_sym_CARET_EQ] = ACTIONS(6933), + [anon_sym_PIPE_EQ] = ACTIONS(6933), + [anon_sym_and_eq] = ACTIONS(6931), + [anon_sym_or_eq] = ACTIONS(6931), + [anon_sym_xor_eq] = ACTIONS(6931), + [anon_sym_LT_EQ_GT] = ACTIONS(6933), + [anon_sym_or] = ACTIONS(6931), + [anon_sym_and] = ACTIONS(6931), + [anon_sym_bitor] = ACTIONS(6931), + [anon_sym_xor] = ACTIONS(6931), + [anon_sym_bitand] = ACTIONS(6931), + [anon_sym_not_eq] = ACTIONS(6931), + [anon_sym_DASH_DASH] = ACTIONS(6933), + [anon_sym_PLUS_PLUS] = ACTIONS(6933), + [anon_sym_DOT] = ACTIONS(6931), + [anon_sym_DOT_STAR] = ACTIONS(6933), + [anon_sym_DASH_GT] = ACTIONS(6933), + [sym_comment] = ACTIONS(3), + }, + [STATE(2725)] = { + [sym_argument_list] = STATE(2861), + [sym_initializer_list] = STATE(2861), + [sym_identifier] = ACTIONS(6935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6937), + [anon_sym_COMMA] = ACTIONS(6937), + [anon_sym_RPAREN] = ACTIONS(6937), + [aux_sym_preproc_if_token2] = ACTIONS(6937), + [aux_sym_preproc_else_token1] = ACTIONS(6937), + [aux_sym_preproc_elif_token1] = ACTIONS(6935), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6937), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6937), + [anon_sym_LPAREN2] = ACTIONS(6589), + [anon_sym_DASH] = ACTIONS(6935), + [anon_sym_PLUS] = ACTIONS(6935), + [anon_sym_STAR] = ACTIONS(6935), + [anon_sym_SLASH] = ACTIONS(6935), + [anon_sym_PERCENT] = ACTIONS(6935), + [anon_sym_PIPE_PIPE] = ACTIONS(6937), + [anon_sym_AMP_AMP] = ACTIONS(6937), + [anon_sym_PIPE] = ACTIONS(6935), + [anon_sym_CARET] = ACTIONS(6935), + [anon_sym_AMP] = ACTIONS(6935), + [anon_sym_EQ_EQ] = ACTIONS(6937), + [anon_sym_BANG_EQ] = ACTIONS(6937), + [anon_sym_GT] = ACTIONS(6935), + [anon_sym_GT_EQ] = ACTIONS(6937), + [anon_sym_LT_EQ] = ACTIONS(6935), + [anon_sym_LT] = ACTIONS(6935), + [anon_sym_LT_LT] = ACTIONS(6935), + [anon_sym_GT_GT] = ACTIONS(6935), + [anon_sym_SEMI] = ACTIONS(6937), + [anon_sym___attribute__] = ACTIONS(6935), + [anon_sym___attribute] = ACTIONS(6935), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_RBRACE] = ACTIONS(6937), + [anon_sym_LBRACK] = ACTIONS(6937), + [anon_sym_RBRACK] = ACTIONS(6937), + [anon_sym_EQ] = ACTIONS(6935), + [anon_sym_COLON] = ACTIONS(6937), + [anon_sym_QMARK] = ACTIONS(6937), + [anon_sym_STAR_EQ] = ACTIONS(6937), + [anon_sym_SLASH_EQ] = ACTIONS(6937), + [anon_sym_PERCENT_EQ] = ACTIONS(6937), + [anon_sym_PLUS_EQ] = ACTIONS(6937), + [anon_sym_DASH_EQ] = ACTIONS(6937), + [anon_sym_LT_LT_EQ] = ACTIONS(6937), + [anon_sym_GT_GT_EQ] = ACTIONS(6937), + [anon_sym_AMP_EQ] = ACTIONS(6937), + [anon_sym_CARET_EQ] = ACTIONS(6937), + [anon_sym_PIPE_EQ] = ACTIONS(6937), + [anon_sym_and_eq] = ACTIONS(6935), + [anon_sym_or_eq] = ACTIONS(6935), + [anon_sym_xor_eq] = ACTIONS(6935), + [anon_sym_LT_EQ_GT] = ACTIONS(6937), + [anon_sym_or] = ACTIONS(6935), + [anon_sym_and] = ACTIONS(6935), + [anon_sym_bitor] = ACTIONS(6935), + [anon_sym_xor] = ACTIONS(6935), + [anon_sym_bitand] = ACTIONS(6935), + [anon_sym_not_eq] = ACTIONS(6935), + [anon_sym_DASH_DASH] = ACTIONS(6937), + [anon_sym_PLUS_PLUS] = ACTIONS(6937), + [anon_sym_DOT] = ACTIONS(6935), + [anon_sym_DOT_STAR] = ACTIONS(6937), + [anon_sym_DASH_GT] = ACTIONS(6937), + [sym_comment] = ACTIONS(3), + }, + [STATE(2726)] = { + [sym_identifier] = ACTIONS(5034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [aux_sym_preproc_if_token2] = ACTIONS(5036), + [aux_sym_preproc_else_token1] = ACTIONS(5036), + [aux_sym_preproc_elif_token1] = ACTIONS(5034), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5036), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5036), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_STAR] = ACTIONS(5034), + [anon_sym_SLASH] = ACTIONS(5034), + [anon_sym_PERCENT] = ACTIONS(5034), + [anon_sym_PIPE_PIPE] = ACTIONS(5036), + [anon_sym_AMP_AMP] = ACTIONS(5036), + [anon_sym_PIPE] = ACTIONS(5034), + [anon_sym_CARET] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_EQ_EQ] = ACTIONS(5036), + [anon_sym_BANG_EQ] = ACTIONS(5036), + [anon_sym_GT] = ACTIONS(5034), + [anon_sym_GT_EQ] = ACTIONS(5036), + [anon_sym_LT_EQ] = ACTIONS(5034), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_LT_LT] = ACTIONS(5034), + [anon_sym_GT_GT] = ACTIONS(5034), + [anon_sym_SEMI] = ACTIONS(5036), + [anon_sym___attribute__] = ACTIONS(5034), + [anon_sym___attribute] = ACTIONS(5034), + [anon_sym_LBRACE] = ACTIONS(5036), + [anon_sym_RBRACE] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5036), + [anon_sym_RBRACK] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5034), + [anon_sym_COLON] = ACTIONS(5036), + [anon_sym_QMARK] = ACTIONS(5036), + [anon_sym_STAR_EQ] = ACTIONS(5036), + [anon_sym_SLASH_EQ] = ACTIONS(5036), + [anon_sym_PERCENT_EQ] = ACTIONS(5036), + [anon_sym_PLUS_EQ] = ACTIONS(5036), + [anon_sym_DASH_EQ] = ACTIONS(5036), + [anon_sym_LT_LT_EQ] = ACTIONS(5036), + [anon_sym_GT_GT_EQ] = ACTIONS(5036), + [anon_sym_AMP_EQ] = ACTIONS(5036), + [anon_sym_CARET_EQ] = ACTIONS(5036), + [anon_sym_PIPE_EQ] = ACTIONS(5036), + [anon_sym_and_eq] = ACTIONS(5034), + [anon_sym_or_eq] = ACTIONS(5034), + [anon_sym_xor_eq] = ACTIONS(5034), + [anon_sym_LT_EQ_GT] = ACTIONS(5036), + [anon_sym_or] = ACTIONS(5034), + [anon_sym_and] = ACTIONS(5034), + [anon_sym_bitor] = ACTIONS(5034), + [anon_sym_xor] = ACTIONS(5034), + [anon_sym_bitand] = ACTIONS(5034), + [anon_sym_not_eq] = ACTIONS(5034), + [anon_sym_DASH_DASH] = ACTIONS(5036), + [anon_sym_PLUS_PLUS] = ACTIONS(5036), + [anon_sym_DOT] = ACTIONS(5034), + [anon_sym_DOT_STAR] = ACTIONS(5036), + [anon_sym_DASH_GT] = ACTIONS(5036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5034), + [anon_sym_decltype] = ACTIONS(5034), + }, + [STATE(2727)] = { + [sym_identifier] = ACTIONS(5038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [aux_sym_preproc_if_token2] = ACTIONS(5040), + [aux_sym_preproc_else_token1] = ACTIONS(5040), + [aux_sym_preproc_elif_token1] = ACTIONS(5038), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5040), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5040), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_SLASH] = ACTIONS(5038), + [anon_sym_PERCENT] = ACTIONS(5038), + [anon_sym_PIPE_PIPE] = ACTIONS(5040), + [anon_sym_AMP_AMP] = ACTIONS(5040), + [anon_sym_PIPE] = ACTIONS(5038), + [anon_sym_CARET] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_EQ_EQ] = ACTIONS(5040), + [anon_sym_BANG_EQ] = ACTIONS(5040), + [anon_sym_GT] = ACTIONS(5038), + [anon_sym_GT_EQ] = ACTIONS(5040), + [anon_sym_LT_EQ] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_LT_LT] = ACTIONS(5038), + [anon_sym_GT_GT] = ACTIONS(5038), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym___attribute__] = ACTIONS(5038), + [anon_sym___attribute] = ACTIONS(5038), + [anon_sym_LBRACE] = ACTIONS(5040), + [anon_sym_RBRACE] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5040), + [anon_sym_RBRACK] = ACTIONS(5040), + [anon_sym_EQ] = ACTIONS(5038), + [anon_sym_COLON] = ACTIONS(5040), + [anon_sym_QMARK] = ACTIONS(5040), + [anon_sym_STAR_EQ] = ACTIONS(5040), + [anon_sym_SLASH_EQ] = ACTIONS(5040), + [anon_sym_PERCENT_EQ] = ACTIONS(5040), + [anon_sym_PLUS_EQ] = ACTIONS(5040), + [anon_sym_DASH_EQ] = ACTIONS(5040), + [anon_sym_LT_LT_EQ] = ACTIONS(5040), + [anon_sym_GT_GT_EQ] = ACTIONS(5040), + [anon_sym_AMP_EQ] = ACTIONS(5040), + [anon_sym_CARET_EQ] = ACTIONS(5040), + [anon_sym_PIPE_EQ] = ACTIONS(5040), + [anon_sym_and_eq] = ACTIONS(5038), + [anon_sym_or_eq] = ACTIONS(5038), + [anon_sym_xor_eq] = ACTIONS(5038), + [anon_sym_LT_EQ_GT] = ACTIONS(5040), + [anon_sym_or] = ACTIONS(5038), + [anon_sym_and] = ACTIONS(5038), + [anon_sym_bitor] = ACTIONS(5038), + [anon_sym_xor] = ACTIONS(5038), + [anon_sym_bitand] = ACTIONS(5038), + [anon_sym_not_eq] = ACTIONS(5038), + [anon_sym_DASH_DASH] = ACTIONS(5040), + [anon_sym_PLUS_PLUS] = ACTIONS(5040), + [anon_sym_DOT] = ACTIONS(5038), + [anon_sym_DOT_STAR] = ACTIONS(5040), + [anon_sym_DASH_GT] = ACTIONS(5040), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5038), + [anon_sym_decltype] = ACTIONS(5038), + }, + [STATE(2728)] = { + [sym_identifier] = ACTIONS(5018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [aux_sym_preproc_if_token2] = ACTIONS(5020), + [aux_sym_preproc_else_token1] = ACTIONS(5020), + [aux_sym_preproc_elif_token1] = ACTIONS(5018), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5020), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5020), + [anon_sym_LPAREN2] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_PERCENT] = ACTIONS(5018), + [anon_sym_PIPE_PIPE] = ACTIONS(5020), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_GT_EQ] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_LT_LT] = ACTIONS(5018), + [anon_sym_GT_GT] = ACTIONS(5018), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym___attribute__] = ACTIONS(5018), + [anon_sym___attribute] = ACTIONS(5018), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_RBRACK] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5018), + [anon_sym_COLON] = ACTIONS(5020), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_STAR_EQ] = ACTIONS(5020), + [anon_sym_SLASH_EQ] = ACTIONS(5020), + [anon_sym_PERCENT_EQ] = ACTIONS(5020), + [anon_sym_PLUS_EQ] = ACTIONS(5020), + [anon_sym_DASH_EQ] = ACTIONS(5020), + [anon_sym_LT_LT_EQ] = ACTIONS(5020), + [anon_sym_GT_GT_EQ] = ACTIONS(5020), + [anon_sym_AMP_EQ] = ACTIONS(5020), + [anon_sym_CARET_EQ] = ACTIONS(5020), + [anon_sym_PIPE_EQ] = ACTIONS(5020), + [anon_sym_and_eq] = ACTIONS(5018), + [anon_sym_or_eq] = ACTIONS(5018), + [anon_sym_xor_eq] = ACTIONS(5018), + [anon_sym_LT_EQ_GT] = ACTIONS(5020), + [anon_sym_or] = ACTIONS(5018), + [anon_sym_and] = ACTIONS(5018), + [anon_sym_bitor] = ACTIONS(5018), + [anon_sym_xor] = ACTIONS(5018), + [anon_sym_bitand] = ACTIONS(5018), + [anon_sym_not_eq] = ACTIONS(5018), + [anon_sym_DASH_DASH] = ACTIONS(5020), + [anon_sym_PLUS_PLUS] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_DOT_STAR] = ACTIONS(5020), + [anon_sym_DASH_GT] = ACTIONS(5020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5018), + [anon_sym_decltype] = ACTIONS(5018), + }, + [STATE(2729)] = { + [sym_identifier] = ACTIONS(4817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4819), + [anon_sym_COMMA] = ACTIONS(4819), + [anon_sym_RPAREN] = ACTIONS(4819), + [aux_sym_preproc_if_token2] = ACTIONS(4819), + [aux_sym_preproc_else_token1] = ACTIONS(4819), + [aux_sym_preproc_elif_token1] = ACTIONS(4817), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4819), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4819), + [anon_sym_LPAREN2] = ACTIONS(4819), + [anon_sym_DASH] = ACTIONS(4817), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_STAR] = ACTIONS(4817), + [anon_sym_SLASH] = ACTIONS(4817), + [anon_sym_PERCENT] = ACTIONS(4817), + [anon_sym_PIPE_PIPE] = ACTIONS(4819), + [anon_sym_AMP_AMP] = ACTIONS(4819), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_CARET] = ACTIONS(4817), + [anon_sym_AMP] = ACTIONS(4817), + [anon_sym_EQ_EQ] = ACTIONS(4819), + [anon_sym_BANG_EQ] = ACTIONS(4819), + [anon_sym_GT] = ACTIONS(4817), + [anon_sym_GT_EQ] = ACTIONS(4819), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4817), + [anon_sym_LT_LT] = ACTIONS(4817), + [anon_sym_GT_GT] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4819), + [anon_sym___attribute__] = ACTIONS(4817), + [anon_sym___attribute] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(4819), + [anon_sym_RBRACE] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(4819), + [anon_sym_RBRACK] = ACTIONS(4819), + [anon_sym_EQ] = ACTIONS(4817), + [anon_sym_COLON] = ACTIONS(4819), + [anon_sym_QMARK] = ACTIONS(4819), + [anon_sym_STAR_EQ] = ACTIONS(4819), + [anon_sym_SLASH_EQ] = ACTIONS(4819), + [anon_sym_PERCENT_EQ] = ACTIONS(4819), + [anon_sym_PLUS_EQ] = ACTIONS(4819), + [anon_sym_DASH_EQ] = ACTIONS(4819), + [anon_sym_LT_LT_EQ] = ACTIONS(4819), + [anon_sym_GT_GT_EQ] = ACTIONS(4819), + [anon_sym_AMP_EQ] = ACTIONS(4819), + [anon_sym_CARET_EQ] = ACTIONS(4819), + [anon_sym_PIPE_EQ] = ACTIONS(4819), + [anon_sym_and_eq] = ACTIONS(4817), + [anon_sym_or_eq] = ACTIONS(4817), + [anon_sym_xor_eq] = ACTIONS(4817), + [anon_sym_LT_EQ_GT] = ACTIONS(4819), + [anon_sym_or] = ACTIONS(4817), + [anon_sym_and] = ACTIONS(4817), + [anon_sym_bitor] = ACTIONS(4817), + [anon_sym_xor] = ACTIONS(4817), + [anon_sym_bitand] = ACTIONS(4817), + [anon_sym_not_eq] = ACTIONS(4817), + [anon_sym_DASH_DASH] = ACTIONS(4819), + [anon_sym_PLUS_PLUS] = ACTIONS(4819), + [anon_sym_DOT] = ACTIONS(4817), + [anon_sym_DOT_STAR] = ACTIONS(4819), + [anon_sym_DASH_GT] = ACTIONS(4819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4817), + [anon_sym_decltype] = ACTIONS(4817), + }, + [STATE(2730)] = { + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_RPAREN] = ACTIONS(4892), + [aux_sym_preproc_if_token2] = ACTIONS(4892), + [aux_sym_preproc_else_token1] = ACTIONS(4892), + [aux_sym_preproc_elif_token1] = ACTIONS(4890), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4892), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4890), + [anon_sym_PLUS] = ACTIONS(4890), + [anon_sym_STAR] = ACTIONS(4890), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4890), + [anon_sym_PIPE_PIPE] = ACTIONS(4892), + [anon_sym_AMP_AMP] = ACTIONS(4892), + [anon_sym_PIPE] = ACTIONS(4890), + [anon_sym_CARET] = ACTIONS(4890), + [anon_sym_AMP] = ACTIONS(4890), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_GT_EQ] = ACTIONS(4892), + [anon_sym_LT_EQ] = ACTIONS(4890), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_LT_LT] = ACTIONS(4890), + [anon_sym_GT_GT] = ACTIONS(4890), + [anon_sym_SEMI] = ACTIONS(4892), + [anon_sym___attribute__] = ACTIONS(4890), + [anon_sym___attribute] = ACTIONS(4890), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_RBRACE] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4892), + [anon_sym_RBRACK] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4890), + [anon_sym_COLON] = ACTIONS(4892), + [anon_sym_QMARK] = ACTIONS(4892), + [anon_sym_STAR_EQ] = ACTIONS(4892), + [anon_sym_SLASH_EQ] = ACTIONS(4892), + [anon_sym_PERCENT_EQ] = ACTIONS(4892), + [anon_sym_PLUS_EQ] = ACTIONS(4892), + [anon_sym_DASH_EQ] = ACTIONS(4892), + [anon_sym_LT_LT_EQ] = ACTIONS(4892), + [anon_sym_GT_GT_EQ] = ACTIONS(4892), + [anon_sym_AMP_EQ] = ACTIONS(4892), + [anon_sym_CARET_EQ] = ACTIONS(4892), + [anon_sym_PIPE_EQ] = ACTIONS(4892), + [anon_sym_and_eq] = ACTIONS(4890), + [anon_sym_or_eq] = ACTIONS(4890), + [anon_sym_xor_eq] = ACTIONS(4890), + [anon_sym_LT_EQ_GT] = ACTIONS(4892), + [anon_sym_or] = ACTIONS(4890), + [anon_sym_and] = ACTIONS(4890), + [anon_sym_bitor] = ACTIONS(4890), + [anon_sym_xor] = ACTIONS(4890), + [anon_sym_bitand] = ACTIONS(4890), + [anon_sym_not_eq] = ACTIONS(4890), + [anon_sym_DASH_DASH] = ACTIONS(4892), + [anon_sym_PLUS_PLUS] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_DOT_STAR] = ACTIONS(4892), + [anon_sym_DASH_GT] = ACTIONS(4892), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4890), + [anon_sym_decltype] = ACTIONS(4890), + }, + [STATE(2731)] = { + [sym_identifier] = ACTIONS(5042), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(5044), + [anon_sym_RPAREN] = ACTIONS(5044), + [aux_sym_preproc_if_token2] = ACTIONS(5044), + [aux_sym_preproc_else_token1] = ACTIONS(5044), + [aux_sym_preproc_elif_token1] = ACTIONS(5042), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5044), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5044), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_PLUS] = ACTIONS(5042), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_PERCENT] = ACTIONS(5042), + [anon_sym_PIPE_PIPE] = ACTIONS(5044), + [anon_sym_AMP_AMP] = ACTIONS(5044), + [anon_sym_PIPE] = ACTIONS(5042), + [anon_sym_CARET] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_EQ_EQ] = ACTIONS(5044), + [anon_sym_BANG_EQ] = ACTIONS(5044), + [anon_sym_GT] = ACTIONS(5042), + [anon_sym_GT_EQ] = ACTIONS(5044), + [anon_sym_LT_EQ] = ACTIONS(5042), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_LT_LT] = ACTIONS(5042), + [anon_sym_GT_GT] = ACTIONS(5042), + [anon_sym_SEMI] = ACTIONS(5044), + [anon_sym___attribute__] = ACTIONS(5042), + [anon_sym___attribute] = ACTIONS(5042), + [anon_sym_LBRACE] = ACTIONS(5044), + [anon_sym_RBRACE] = ACTIONS(5044), + [anon_sym_LBRACK] = ACTIONS(5044), + [anon_sym_RBRACK] = ACTIONS(5044), + [anon_sym_EQ] = ACTIONS(5042), + [anon_sym_COLON] = ACTIONS(5044), + [anon_sym_QMARK] = ACTIONS(5044), + [anon_sym_STAR_EQ] = ACTIONS(5044), + [anon_sym_SLASH_EQ] = ACTIONS(5044), + [anon_sym_PERCENT_EQ] = ACTIONS(5044), + [anon_sym_PLUS_EQ] = ACTIONS(5044), + [anon_sym_DASH_EQ] = ACTIONS(5044), + [anon_sym_LT_LT_EQ] = ACTIONS(5044), + [anon_sym_GT_GT_EQ] = ACTIONS(5044), + [anon_sym_AMP_EQ] = ACTIONS(5044), + [anon_sym_CARET_EQ] = ACTIONS(5044), + [anon_sym_PIPE_EQ] = ACTIONS(5044), + [anon_sym_and_eq] = ACTIONS(5042), + [anon_sym_or_eq] = ACTIONS(5042), + [anon_sym_xor_eq] = ACTIONS(5042), + [anon_sym_LT_EQ_GT] = ACTIONS(5044), + [anon_sym_or] = ACTIONS(5042), + [anon_sym_and] = ACTIONS(5042), + [anon_sym_bitor] = ACTIONS(5042), + [anon_sym_xor] = ACTIONS(5042), + [anon_sym_bitand] = ACTIONS(5042), + [anon_sym_not_eq] = ACTIONS(5042), + [anon_sym_DASH_DASH] = ACTIONS(5044), + [anon_sym_PLUS_PLUS] = ACTIONS(5044), + [anon_sym_DOT] = ACTIONS(5042), + [anon_sym_DOT_STAR] = ACTIONS(5044), + [anon_sym_DASH_GT] = ACTIONS(5044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5042), + [anon_sym_decltype] = ACTIONS(5042), + }, + [STATE(2732)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2696), + [sym_identifier] = ACTIONS(5190), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5192), + [anon_sym_COMMA] = ACTIONS(5192), + [aux_sym_preproc_if_token2] = ACTIONS(5192), + [aux_sym_preproc_else_token1] = ACTIONS(5192), + [aux_sym_preproc_elif_token1] = ACTIONS(5190), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5192), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5192), + [anon_sym_LPAREN2] = ACTIONS(5192), + [anon_sym_DASH] = ACTIONS(5190), + [anon_sym_PLUS] = ACTIONS(5190), + [anon_sym_STAR] = ACTIONS(5190), + [anon_sym_SLASH] = ACTIONS(5190), + [anon_sym_PERCENT] = ACTIONS(5190), + [anon_sym_PIPE_PIPE] = ACTIONS(5192), + [anon_sym_AMP_AMP] = ACTIONS(5192), + [anon_sym_PIPE] = ACTIONS(5190), + [anon_sym_CARET] = ACTIONS(5190), + [anon_sym_AMP] = ACTIONS(5190), + [anon_sym_EQ_EQ] = ACTIONS(5192), + [anon_sym_BANG_EQ] = ACTIONS(5192), + [anon_sym_GT] = ACTIONS(5190), + [anon_sym_GT_EQ] = ACTIONS(5192), + [anon_sym_LT_EQ] = ACTIONS(5190), + [anon_sym_LT] = ACTIONS(5190), + [anon_sym_LT_LT] = ACTIONS(5190), + [anon_sym_GT_GT] = ACTIONS(5190), + [anon_sym___attribute__] = ACTIONS(5190), + [anon_sym___attribute] = ACTIONS(5190), + [anon_sym_LBRACE] = ACTIONS(5192), + [anon_sym_signed] = ACTIONS(6825), + [anon_sym_unsigned] = ACTIONS(6825), + [anon_sym_long] = ACTIONS(6825), + [anon_sym_short] = ACTIONS(6825), + [anon_sym_LBRACK] = ACTIONS(5192), + [anon_sym_EQ] = ACTIONS(5190), + [anon_sym_QMARK] = ACTIONS(5192), + [anon_sym_STAR_EQ] = ACTIONS(5192), + [anon_sym_SLASH_EQ] = ACTIONS(5192), + [anon_sym_PERCENT_EQ] = ACTIONS(5192), + [anon_sym_PLUS_EQ] = ACTIONS(5192), + [anon_sym_DASH_EQ] = ACTIONS(5192), + [anon_sym_LT_LT_EQ] = ACTIONS(5192), + [anon_sym_GT_GT_EQ] = ACTIONS(5192), + [anon_sym_AMP_EQ] = ACTIONS(5192), + [anon_sym_CARET_EQ] = ACTIONS(5192), + [anon_sym_PIPE_EQ] = ACTIONS(5192), + [anon_sym_and_eq] = ACTIONS(5190), + [anon_sym_or_eq] = ACTIONS(5190), + [anon_sym_xor_eq] = ACTIONS(5190), + [anon_sym_LT_EQ_GT] = ACTIONS(5192), + [anon_sym_or] = ACTIONS(5190), + [anon_sym_and] = ACTIONS(5190), + [anon_sym_bitor] = ACTIONS(5190), + [anon_sym_xor] = ACTIONS(5190), + [anon_sym_bitand] = ACTIONS(5190), + [anon_sym_not_eq] = ACTIONS(5190), + [anon_sym_DASH_DASH] = ACTIONS(5192), + [anon_sym_PLUS_PLUS] = ACTIONS(5192), + [anon_sym_DOT] = ACTIONS(5190), + [anon_sym_DOT_STAR] = ACTIONS(5192), + [anon_sym_DASH_GT] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5190), + [anon_sym_decltype] = ACTIONS(5190), + }, + [STATE(2733)] = { + [sym_template_argument_list] = STATE(2749), + [sym_identifier] = ACTIONS(3281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3274), + [aux_sym_preproc_if_token2] = ACTIONS(3274), + [aux_sym_preproc_else_token1] = ACTIONS(3274), + [aux_sym_preproc_elif_token1] = ACTIONS(3281), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3274), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_EQ_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(6626), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym___attribute__] = ACTIONS(3281), + [anon_sym___attribute] = ACTIONS(3281), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_RBRACK] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3281), + [anon_sym_COLON] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_STAR_EQ] = ACTIONS(3274), + [anon_sym_SLASH_EQ] = ACTIONS(3274), + [anon_sym_PERCENT_EQ] = ACTIONS(3274), + [anon_sym_PLUS_EQ] = ACTIONS(3274), + [anon_sym_DASH_EQ] = ACTIONS(3274), + [anon_sym_LT_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_GT_EQ] = ACTIONS(3274), + [anon_sym_AMP_EQ] = ACTIONS(3274), + [anon_sym_CARET_EQ] = ACTIONS(3274), + [anon_sym_PIPE_EQ] = ACTIONS(3274), + [anon_sym_and_eq] = ACTIONS(3281), + [anon_sym_or_eq] = ACTIONS(3281), + [anon_sym_xor_eq] = ACTIONS(3281), + [anon_sym_LT_EQ_GT] = ACTIONS(3274), + [anon_sym_or] = ACTIONS(3281), + [anon_sym_and] = ACTIONS(3281), + [anon_sym_bitor] = ACTIONS(3281), + [anon_sym_xor] = ACTIONS(3281), + [anon_sym_bitand] = ACTIONS(3281), + [anon_sym_not_eq] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_DOT_STAR] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [sym_comment] = ACTIONS(3), + }, + [STATE(2734)] = { + [sym_string_literal] = STATE(3007), + [sym_template_argument_list] = STATE(4020), + [sym_raw_string_literal] = STATE(3007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(6347), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_RBRACK] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(6783), + [anon_sym_QMARK] = ACTIONS(3089), + [anon_sym_STAR_EQ] = ACTIONS(6755), + [anon_sym_SLASH_EQ] = ACTIONS(6755), + [anon_sym_PERCENT_EQ] = ACTIONS(6755), + [anon_sym_PLUS_EQ] = ACTIONS(6755), + [anon_sym_DASH_EQ] = ACTIONS(6755), + [anon_sym_LT_LT_EQ] = ACTIONS(6755), + [anon_sym_GT_GT_EQ] = ACTIONS(6755), + [anon_sym_AMP_EQ] = ACTIONS(6755), + [anon_sym_CARET_EQ] = ACTIONS(6755), + [anon_sym_PIPE_EQ] = ACTIONS(6755), + [anon_sym_and_eq] = ACTIONS(6755), + [anon_sym_or_eq] = ACTIONS(6755), + [anon_sym_xor_eq] = ACTIONS(6755), + [anon_sym_LT_EQ_GT] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3097), + [anon_sym_and] = ACTIONS(3097), + [anon_sym_bitor] = ACTIONS(3089), + [anon_sym_xor] = ACTIONS(3097), + [anon_sym_bitand] = ACTIONS(3089), + [anon_sym_not_eq] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(3097), + [anon_sym_DOT_STAR] = ACTIONS(3089), + [anon_sym_DASH_GT] = ACTIONS(3089), + [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_comment] = ACTIONS(3), + [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), + }, + [STATE(2735)] = { + [sym_identifier] = ACTIONS(4894), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4896), + [anon_sym_COMMA] = ACTIONS(4896), + [anon_sym_RPAREN] = ACTIONS(4896), + [aux_sym_preproc_if_token2] = ACTIONS(4896), + [aux_sym_preproc_else_token1] = ACTIONS(4896), + [aux_sym_preproc_elif_token1] = ACTIONS(4894), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4896), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4896), + [anon_sym_LPAREN2] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4894), + [anon_sym_SLASH] = ACTIONS(4894), + [anon_sym_PERCENT] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4896), + [anon_sym_AMP_AMP] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4894), + [anon_sym_CARET] = ACTIONS(4894), + [anon_sym_AMP] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4896), + [anon_sym_BANG_EQ] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4896), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4894), + [anon_sym_LT_LT] = ACTIONS(4894), + [anon_sym_GT_GT] = ACTIONS(4894), + [anon_sym_SEMI] = ACTIONS(4896), + [anon_sym___attribute__] = ACTIONS(4894), + [anon_sym___attribute] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_RBRACE] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4896), + [anon_sym_RBRACK] = ACTIONS(4896), + [anon_sym_EQ] = ACTIONS(4894), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_STAR_EQ] = ACTIONS(4896), + [anon_sym_SLASH_EQ] = ACTIONS(4896), + [anon_sym_PERCENT_EQ] = ACTIONS(4896), + [anon_sym_PLUS_EQ] = ACTIONS(4896), + [anon_sym_DASH_EQ] = ACTIONS(4896), + [anon_sym_LT_LT_EQ] = ACTIONS(4896), + [anon_sym_GT_GT_EQ] = ACTIONS(4896), + [anon_sym_AMP_EQ] = ACTIONS(4896), + [anon_sym_CARET_EQ] = ACTIONS(4896), + [anon_sym_PIPE_EQ] = ACTIONS(4896), + [anon_sym_and_eq] = ACTIONS(4894), + [anon_sym_or_eq] = ACTIONS(4894), + [anon_sym_xor_eq] = ACTIONS(4894), + [anon_sym_LT_EQ_GT] = ACTIONS(4896), + [anon_sym_or] = ACTIONS(4894), + [anon_sym_and] = ACTIONS(4894), + [anon_sym_bitor] = ACTIONS(4894), + [anon_sym_xor] = ACTIONS(4894), + [anon_sym_bitand] = ACTIONS(4894), + [anon_sym_not_eq] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4896), + [anon_sym_PLUS_PLUS] = ACTIONS(4896), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_DOT_STAR] = ACTIONS(4896), + [anon_sym_DASH_GT] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4894), + [anon_sym_decltype] = ACTIONS(4894), + }, + [STATE(2736)] = { + [sym_attribute_specifier] = STATE(2472), + [sym_enumerator_list] = STATE(2751), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5268), + [anon_sym_COMMA] = ACTIONS(5268), + [anon_sym_RPAREN] = ACTIONS(5268), + [anon_sym_LPAREN2] = ACTIONS(5268), + [anon_sym_DASH] = ACTIONS(5266), + [anon_sym_PLUS] = ACTIONS(5266), + [anon_sym_STAR] = ACTIONS(5268), + [anon_sym_SLASH] = ACTIONS(5266), + [anon_sym_PERCENT] = ACTIONS(5268), + [anon_sym_PIPE_PIPE] = ACTIONS(5268), + [anon_sym_AMP_AMP] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(5266), + [anon_sym_CARET] = ACTIONS(5268), + [anon_sym_AMP] = ACTIONS(5266), + [anon_sym_EQ_EQ] = ACTIONS(5268), + [anon_sym_BANG_EQ] = ACTIONS(5268), + [anon_sym_GT] = ACTIONS(5266), + [anon_sym_GT_EQ] = ACTIONS(5268), + [anon_sym_LT_EQ] = ACTIONS(5266), + [anon_sym_LT] = ACTIONS(5266), + [anon_sym_LT_LT] = ACTIONS(5268), + [anon_sym_GT_GT] = ACTIONS(5268), + [anon_sym_SEMI] = ACTIONS(5268), + [anon_sym___extension__] = ACTIONS(5268), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6673), + [anon_sym_LBRACE] = ACTIONS(6939), + [anon_sym_RBRACE] = ACTIONS(5268), + [anon_sym_LBRACK] = ACTIONS(5268), + [anon_sym_RBRACK] = ACTIONS(5268), + [anon_sym_const] = ACTIONS(5266), + [anon_sym_constexpr] = ACTIONS(5268), + [anon_sym_volatile] = ACTIONS(5268), + [anon_sym_restrict] = ACTIONS(5268), + [anon_sym___restrict__] = ACTIONS(5268), + [anon_sym__Atomic] = ACTIONS(5268), + [anon_sym__Noreturn] = ACTIONS(5268), + [anon_sym_noreturn] = ACTIONS(5268), + [anon_sym__Nonnull] = ACTIONS(5268), + [anon_sym_mutable] = ACTIONS(5268), + [anon_sym_constinit] = ACTIONS(5268), + [anon_sym_consteval] = ACTIONS(5268), + [anon_sym_alignas] = ACTIONS(5268), + [anon_sym__Alignas] = ACTIONS(5268), + [anon_sym_COLON] = ACTIONS(5268), + [anon_sym_QMARK] = ACTIONS(5268), + [anon_sym_LT_EQ_GT] = ACTIONS(5268), + [anon_sym_or] = ACTIONS(5268), + [anon_sym_and] = ACTIONS(5268), + [anon_sym_bitor] = ACTIONS(5268), + [anon_sym_xor] = ACTIONS(5268), + [anon_sym_bitand] = ACTIONS(5268), + [anon_sym_not_eq] = ACTIONS(5268), + [anon_sym_DASH_DASH] = ACTIONS(5268), + [anon_sym_PLUS_PLUS] = ACTIONS(5268), + [anon_sym_DOT] = ACTIONS(5266), + [anon_sym_DOT_STAR] = ACTIONS(5268), + [anon_sym_DASH_GT] = ACTIONS(5268), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5268), + [anon_sym_decltype] = ACTIONS(5268), + [anon_sym_final] = ACTIONS(5268), + [anon_sym_override] = ACTIONS(5268), + [anon_sym_requires] = ACTIONS(5268), + }, + [STATE(2737)] = { + [sym_identifier] = ACTIONS(4938), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4940), + [anon_sym_COMMA] = ACTIONS(4940), + [anon_sym_RPAREN] = ACTIONS(4940), + [aux_sym_preproc_if_token2] = ACTIONS(4940), + [aux_sym_preproc_else_token1] = ACTIONS(4940), + [aux_sym_preproc_elif_token1] = ACTIONS(4938), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4940), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4940), + [anon_sym_LPAREN2] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4938), + [anon_sym_PLUS] = ACTIONS(4938), + [anon_sym_STAR] = ACTIONS(4938), + [anon_sym_SLASH] = ACTIONS(4938), + [anon_sym_PERCENT] = ACTIONS(4938), + [anon_sym_PIPE_PIPE] = ACTIONS(4940), + [anon_sym_AMP_AMP] = ACTIONS(4940), + [anon_sym_PIPE] = ACTIONS(4938), + [anon_sym_CARET] = ACTIONS(4938), + [anon_sym_AMP] = ACTIONS(4938), + [anon_sym_EQ_EQ] = ACTIONS(4940), + [anon_sym_BANG_EQ] = ACTIONS(4940), + [anon_sym_GT] = ACTIONS(4938), + [anon_sym_GT_EQ] = ACTIONS(4940), + [anon_sym_LT_EQ] = ACTIONS(4938), + [anon_sym_LT] = ACTIONS(4938), + [anon_sym_LT_LT] = ACTIONS(4938), + [anon_sym_GT_GT] = ACTIONS(4938), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym___attribute__] = ACTIONS(4938), + [anon_sym___attribute] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_RBRACE] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4940), + [anon_sym_RBRACK] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4938), + [anon_sym_COLON] = ACTIONS(4940), + [anon_sym_QMARK] = ACTIONS(4940), + [anon_sym_STAR_EQ] = ACTIONS(4940), + [anon_sym_SLASH_EQ] = ACTIONS(4940), + [anon_sym_PERCENT_EQ] = ACTIONS(4940), + [anon_sym_PLUS_EQ] = ACTIONS(4940), + [anon_sym_DASH_EQ] = ACTIONS(4940), + [anon_sym_LT_LT_EQ] = ACTIONS(4940), + [anon_sym_GT_GT_EQ] = ACTIONS(4940), + [anon_sym_AMP_EQ] = ACTIONS(4940), + [anon_sym_CARET_EQ] = ACTIONS(4940), + [anon_sym_PIPE_EQ] = ACTIONS(4940), + [anon_sym_and_eq] = ACTIONS(4938), + [anon_sym_or_eq] = ACTIONS(4938), + [anon_sym_xor_eq] = ACTIONS(4938), + [anon_sym_LT_EQ_GT] = ACTIONS(4940), + [anon_sym_or] = ACTIONS(4938), + [anon_sym_and] = ACTIONS(4938), + [anon_sym_bitor] = ACTIONS(4938), + [anon_sym_xor] = ACTIONS(4938), + [anon_sym_bitand] = ACTIONS(4938), + [anon_sym_not_eq] = ACTIONS(4938), + [anon_sym_DASH_DASH] = ACTIONS(4940), + [anon_sym_PLUS_PLUS] = ACTIONS(4940), + [anon_sym_DOT] = ACTIONS(4938), + [anon_sym_DOT_STAR] = ACTIONS(4940), + [anon_sym_DASH_GT] = ACTIONS(4940), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4938), + [anon_sym_decltype] = ACTIONS(4938), + }, + [STATE(2738)] = { + [sym_identifier] = ACTIONS(4902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4904), + [anon_sym_COMMA] = ACTIONS(4904), + [anon_sym_RPAREN] = ACTIONS(4904), + [aux_sym_preproc_if_token2] = ACTIONS(4904), + [aux_sym_preproc_else_token1] = ACTIONS(4904), + [aux_sym_preproc_elif_token1] = ACTIONS(4902), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4904), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4904), + [anon_sym_LPAREN2] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4902), + [anon_sym_PLUS] = ACTIONS(4902), + [anon_sym_STAR] = ACTIONS(4902), + [anon_sym_SLASH] = ACTIONS(4902), + [anon_sym_PERCENT] = ACTIONS(4902), + [anon_sym_PIPE_PIPE] = ACTIONS(4904), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_PIPE] = ACTIONS(4902), + [anon_sym_CARET] = ACTIONS(4902), + [anon_sym_AMP] = ACTIONS(4902), + [anon_sym_EQ_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ] = ACTIONS(4904), + [anon_sym_GT] = ACTIONS(4902), + [anon_sym_GT_EQ] = ACTIONS(4904), + [anon_sym_LT_EQ] = ACTIONS(4902), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_GT_GT] = ACTIONS(4902), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym___attribute__] = ACTIONS(4902), + [anon_sym___attribute] = ACTIONS(4902), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_RBRACE] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_RBRACK] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(4904), + [anon_sym_QMARK] = ACTIONS(4904), + [anon_sym_STAR_EQ] = ACTIONS(4904), + [anon_sym_SLASH_EQ] = ACTIONS(4904), + [anon_sym_PERCENT_EQ] = ACTIONS(4904), + [anon_sym_PLUS_EQ] = ACTIONS(4904), + [anon_sym_DASH_EQ] = ACTIONS(4904), + [anon_sym_LT_LT_EQ] = ACTIONS(4904), + [anon_sym_GT_GT_EQ] = ACTIONS(4904), + [anon_sym_AMP_EQ] = ACTIONS(4904), + [anon_sym_CARET_EQ] = ACTIONS(4904), + [anon_sym_PIPE_EQ] = ACTIONS(4904), + [anon_sym_and_eq] = ACTIONS(4902), + [anon_sym_or_eq] = ACTIONS(4902), + [anon_sym_xor_eq] = ACTIONS(4902), + [anon_sym_LT_EQ_GT] = ACTIONS(4904), + [anon_sym_or] = ACTIONS(4902), + [anon_sym_and] = ACTIONS(4902), + [anon_sym_bitor] = ACTIONS(4902), + [anon_sym_xor] = ACTIONS(4902), + [anon_sym_bitand] = ACTIONS(4902), + [anon_sym_not_eq] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(4904), + [anon_sym_PLUS_PLUS] = ACTIONS(4904), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_DOT_STAR] = ACTIONS(4904), + [anon_sym_DASH_GT] = ACTIONS(4904), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4902), + [anon_sym_decltype] = ACTIONS(4902), + }, + [STATE(2739)] = { + [sym_argument_list] = STATE(2892), + [sym_initializer_list] = STATE(2892), + [sym_identifier] = ACTIONS(6941), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6943), + [anon_sym_COMMA] = ACTIONS(6943), + [anon_sym_RPAREN] = ACTIONS(6943), + [aux_sym_preproc_if_token2] = ACTIONS(6943), + [aux_sym_preproc_else_token1] = ACTIONS(6943), + [aux_sym_preproc_elif_token1] = ACTIONS(6941), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6943), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6943), + [anon_sym_LPAREN2] = ACTIONS(6589), + [anon_sym_DASH] = ACTIONS(6941), + [anon_sym_PLUS] = ACTIONS(6941), + [anon_sym_STAR] = ACTIONS(6941), + [anon_sym_SLASH] = ACTIONS(6941), + [anon_sym_PERCENT] = ACTIONS(6941), + [anon_sym_PIPE_PIPE] = ACTIONS(6943), + [anon_sym_AMP_AMP] = ACTIONS(6943), + [anon_sym_PIPE] = ACTIONS(6941), + [anon_sym_CARET] = ACTIONS(6941), + [anon_sym_AMP] = ACTIONS(6941), + [anon_sym_EQ_EQ] = ACTIONS(6943), + [anon_sym_BANG_EQ] = ACTIONS(6943), + [anon_sym_GT] = ACTIONS(6941), + [anon_sym_GT_EQ] = ACTIONS(6943), + [anon_sym_LT_EQ] = ACTIONS(6941), + [anon_sym_LT] = ACTIONS(6941), + [anon_sym_LT_LT] = ACTIONS(6941), + [anon_sym_GT_GT] = ACTIONS(6941), + [anon_sym_SEMI] = ACTIONS(6943), + [anon_sym___attribute__] = ACTIONS(6941), + [anon_sym___attribute] = ACTIONS(6941), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_RBRACE] = ACTIONS(6943), + [anon_sym_LBRACK] = ACTIONS(6943), + [anon_sym_RBRACK] = ACTIONS(6943), + [anon_sym_EQ] = ACTIONS(6941), + [anon_sym_COLON] = ACTIONS(6943), + [anon_sym_QMARK] = ACTIONS(6943), + [anon_sym_STAR_EQ] = ACTIONS(6943), + [anon_sym_SLASH_EQ] = ACTIONS(6943), + [anon_sym_PERCENT_EQ] = ACTIONS(6943), + [anon_sym_PLUS_EQ] = ACTIONS(6943), + [anon_sym_DASH_EQ] = ACTIONS(6943), + [anon_sym_LT_LT_EQ] = ACTIONS(6943), + [anon_sym_GT_GT_EQ] = ACTIONS(6943), + [anon_sym_AMP_EQ] = ACTIONS(6943), + [anon_sym_CARET_EQ] = ACTIONS(6943), + [anon_sym_PIPE_EQ] = ACTIONS(6943), + [anon_sym_and_eq] = ACTIONS(6941), + [anon_sym_or_eq] = ACTIONS(6941), + [anon_sym_xor_eq] = ACTIONS(6941), + [anon_sym_LT_EQ_GT] = ACTIONS(6943), + [anon_sym_or] = ACTIONS(6941), + [anon_sym_and] = ACTIONS(6941), + [anon_sym_bitor] = ACTIONS(6941), + [anon_sym_xor] = ACTIONS(6941), + [anon_sym_bitand] = ACTIONS(6941), + [anon_sym_not_eq] = ACTIONS(6941), + [anon_sym_DASH_DASH] = ACTIONS(6943), + [anon_sym_PLUS_PLUS] = ACTIONS(6943), + [anon_sym_DOT] = ACTIONS(6941), + [anon_sym_DOT_STAR] = ACTIONS(6943), + [anon_sym_DASH_GT] = ACTIONS(6943), + [sym_comment] = ACTIONS(3), + }, + [STATE(2740)] = { + [sym_attribute_specifier] = STATE(2477), + [sym_enumerator_list] = STATE(2776), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5248), + [anon_sym_COMMA] = ACTIONS(5248), + [anon_sym_RPAREN] = ACTIONS(5248), + [anon_sym_LPAREN2] = ACTIONS(5248), + [anon_sym_DASH] = ACTIONS(5246), + [anon_sym_PLUS] = ACTIONS(5246), + [anon_sym_STAR] = ACTIONS(5248), + [anon_sym_SLASH] = ACTIONS(5246), + [anon_sym_PERCENT] = ACTIONS(5248), + [anon_sym_PIPE_PIPE] = ACTIONS(5248), + [anon_sym_AMP_AMP] = ACTIONS(5248), + [anon_sym_PIPE] = ACTIONS(5246), + [anon_sym_CARET] = ACTIONS(5248), + [anon_sym_AMP] = ACTIONS(5246), + [anon_sym_EQ_EQ] = ACTIONS(5248), + [anon_sym_BANG_EQ] = ACTIONS(5248), + [anon_sym_GT] = ACTIONS(5246), + [anon_sym_GT_EQ] = ACTIONS(5248), + [anon_sym_LT_EQ] = ACTIONS(5246), + [anon_sym_LT] = ACTIONS(5246), + [anon_sym_LT_LT] = ACTIONS(5248), + [anon_sym_GT_GT] = ACTIONS(5248), + [anon_sym_SEMI] = ACTIONS(5248), + [anon_sym___extension__] = ACTIONS(5248), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6673), + [anon_sym_LBRACE] = ACTIONS(6939), + [anon_sym_RBRACE] = ACTIONS(5248), + [anon_sym_LBRACK] = ACTIONS(5248), + [anon_sym_RBRACK] = ACTIONS(5248), + [anon_sym_const] = ACTIONS(5246), + [anon_sym_constexpr] = ACTIONS(5248), + [anon_sym_volatile] = ACTIONS(5248), + [anon_sym_restrict] = ACTIONS(5248), + [anon_sym___restrict__] = ACTIONS(5248), + [anon_sym__Atomic] = ACTIONS(5248), + [anon_sym__Noreturn] = ACTIONS(5248), + [anon_sym_noreturn] = ACTIONS(5248), + [anon_sym__Nonnull] = ACTIONS(5248), + [anon_sym_mutable] = ACTIONS(5248), + [anon_sym_constinit] = ACTIONS(5248), + [anon_sym_consteval] = ACTIONS(5248), + [anon_sym_alignas] = ACTIONS(5248), + [anon_sym__Alignas] = ACTIONS(5248), + [anon_sym_COLON] = ACTIONS(5248), + [anon_sym_QMARK] = ACTIONS(5248), + [anon_sym_LT_EQ_GT] = ACTIONS(5248), + [anon_sym_or] = ACTIONS(5248), + [anon_sym_and] = ACTIONS(5248), + [anon_sym_bitor] = ACTIONS(5248), + [anon_sym_xor] = ACTIONS(5248), + [anon_sym_bitand] = ACTIONS(5248), + [anon_sym_not_eq] = ACTIONS(5248), + [anon_sym_DASH_DASH] = ACTIONS(5248), + [anon_sym_PLUS_PLUS] = ACTIONS(5248), + [anon_sym_DOT] = ACTIONS(5246), + [anon_sym_DOT_STAR] = ACTIONS(5248), + [anon_sym_DASH_GT] = ACTIONS(5248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5248), + [anon_sym_decltype] = ACTIONS(5248), + [anon_sym_final] = ACTIONS(5248), + [anon_sym_override] = ACTIONS(5248), + [anon_sym_requires] = ACTIONS(5248), + }, + [STATE(2741)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6526), + [anon_sym_COMMA] = ACTIONS(6526), + [anon_sym_RPAREN] = ACTIONS(6526), + [anon_sym_LPAREN2] = ACTIONS(6526), + [anon_sym_DASH] = ACTIONS(6524), + [anon_sym_PLUS] = ACTIONS(6524), + [anon_sym_STAR] = ACTIONS(6524), + [anon_sym_SLASH] = ACTIONS(6524), + [anon_sym_PERCENT] = ACTIONS(6524), + [anon_sym_PIPE_PIPE] = ACTIONS(6526), + [anon_sym_AMP_AMP] = ACTIONS(6526), + [anon_sym_PIPE] = ACTIONS(6524), + [anon_sym_CARET] = ACTIONS(6524), + [anon_sym_AMP] = ACTIONS(6524), + [anon_sym_EQ_EQ] = ACTIONS(6526), + [anon_sym_BANG_EQ] = ACTIONS(6526), + [anon_sym_GT] = ACTIONS(6524), + [anon_sym_GT_EQ] = ACTIONS(6526), + [anon_sym_LT_EQ] = ACTIONS(6524), + [anon_sym_LT] = ACTIONS(6524), + [anon_sym_LT_LT] = ACTIONS(6524), + [anon_sym_GT_GT] = ACTIONS(6524), + [anon_sym_SEMI] = ACTIONS(6526), + [anon_sym_RBRACE] = ACTIONS(6526), + [anon_sym_LBRACK] = ACTIONS(6526), + [anon_sym_RBRACK] = ACTIONS(6526), + [anon_sym_EQ] = ACTIONS(6524), + [anon_sym_COLON] = ACTIONS(6526), + [anon_sym_QMARK] = ACTIONS(6526), + [anon_sym_STAR_EQ] = ACTIONS(6526), + [anon_sym_SLASH_EQ] = ACTIONS(6526), + [anon_sym_PERCENT_EQ] = ACTIONS(6526), + [anon_sym_PLUS_EQ] = ACTIONS(6526), + [anon_sym_DASH_EQ] = ACTIONS(6526), + [anon_sym_LT_LT_EQ] = ACTIONS(6526), + [anon_sym_GT_GT_EQ] = ACTIONS(6526), + [anon_sym_AMP_EQ] = ACTIONS(6526), + [anon_sym_CARET_EQ] = ACTIONS(6526), + [anon_sym_PIPE_EQ] = ACTIONS(6526), + [anon_sym_and_eq] = ACTIONS(6524), + [anon_sym_or_eq] = ACTIONS(6524), + [anon_sym_xor_eq] = ACTIONS(6524), + [anon_sym_LT_EQ_GT] = ACTIONS(6526), + [anon_sym_or] = ACTIONS(6524), + [anon_sym_and] = ACTIONS(6524), + [anon_sym_bitor] = ACTIONS(6524), + [anon_sym_xor] = ACTIONS(6524), + [anon_sym_bitand] = ACTIONS(6524), + [anon_sym_not_eq] = ACTIONS(6524), + [anon_sym_DASH_DASH] = ACTIONS(6526), + [anon_sym_PLUS_PLUS] = ACTIONS(6526), + [anon_sym_DOT] = ACTIONS(6524), + [anon_sym_DOT_STAR] = ACTIONS(6526), + [anon_sym_DASH_GT] = ACTIONS(6526), + [anon_sym_L_DQUOTE] = ACTIONS(6526), + [anon_sym_u_DQUOTE] = ACTIONS(6526), + [anon_sym_U_DQUOTE] = ACTIONS(6526), + [anon_sym_u8_DQUOTE] = ACTIONS(6526), + [anon_sym_DQUOTE] = ACTIONS(6526), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6526), + [anon_sym_LR_DQUOTE] = ACTIONS(6526), + [anon_sym_uR_DQUOTE] = ACTIONS(6526), + [anon_sym_UR_DQUOTE] = ACTIONS(6526), + [anon_sym_u8R_DQUOTE] = ACTIONS(6526), + [sym_literal_suffix] = ACTIONS(6524), + }, + [STATE(2742)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5145), + [anon_sym_COMMA] = ACTIONS(5145), + [anon_sym_RPAREN] = ACTIONS(5145), + [anon_sym_LPAREN2] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5143), + [anon_sym_PLUS] = ACTIONS(5143), + [anon_sym_STAR] = ACTIONS(5143), + [anon_sym_SLASH] = ACTIONS(5143), + [anon_sym_PERCENT] = ACTIONS(5143), + [anon_sym_PIPE_PIPE] = ACTIONS(5145), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_PIPE] = ACTIONS(5143), + [anon_sym_CARET] = ACTIONS(5143), + [anon_sym_AMP] = ACTIONS(5143), + [anon_sym_EQ_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5143), + [anon_sym_GT_EQ] = ACTIONS(5145), + [anon_sym_LT_EQ] = ACTIONS(5143), + [anon_sym_LT] = ACTIONS(5143), + [anon_sym_LT_LT] = ACTIONS(5143), + [anon_sym_GT_GT] = ACTIONS(5143), + [anon_sym_SEMI] = ACTIONS(5145), + [anon_sym___attribute__] = ACTIONS(5145), + [anon_sym___attribute] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(5145), + [anon_sym_signed] = ACTIONS(6945), + [anon_sym_unsigned] = ACTIONS(6945), + [anon_sym_long] = ACTIONS(6945), + [anon_sym_short] = ACTIONS(6945), + [anon_sym_LBRACK] = ACTIONS(5145), + [anon_sym_RBRACK] = ACTIONS(5145), + [anon_sym_EQ] = ACTIONS(5143), + [anon_sym_COLON] = ACTIONS(5145), + [anon_sym_QMARK] = ACTIONS(5145), + [anon_sym_STAR_EQ] = ACTIONS(5145), + [anon_sym_SLASH_EQ] = ACTIONS(5145), + [anon_sym_PERCENT_EQ] = ACTIONS(5145), + [anon_sym_PLUS_EQ] = ACTIONS(5145), + [anon_sym_DASH_EQ] = ACTIONS(5145), + [anon_sym_LT_LT_EQ] = ACTIONS(5145), + [anon_sym_GT_GT_EQ] = ACTIONS(5145), + [anon_sym_AMP_EQ] = ACTIONS(5145), + [anon_sym_CARET_EQ] = ACTIONS(5145), + [anon_sym_PIPE_EQ] = ACTIONS(5145), + [anon_sym_and_eq] = ACTIONS(5145), + [anon_sym_or_eq] = ACTIONS(5145), + [anon_sym_xor_eq] = ACTIONS(5145), + [anon_sym_LT_EQ_GT] = ACTIONS(5145), + [anon_sym_or] = ACTIONS(5143), + [anon_sym_and] = ACTIONS(5143), + [anon_sym_bitor] = ACTIONS(5145), + [anon_sym_xor] = ACTIONS(5143), + [anon_sym_bitand] = ACTIONS(5145), + [anon_sym_not_eq] = ACTIONS(5145), + [anon_sym_DASH_DASH] = ACTIONS(5145), + [anon_sym_PLUS_PLUS] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5143), + [anon_sym_DOT_STAR] = ACTIONS(5145), + [anon_sym_DASH_GT] = ACTIONS(5145), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5145), + [anon_sym_decltype] = ACTIONS(5145), + }, + [STATE(2743)] = { + [sym_attribute_specifier] = STATE(2504), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5518), + [anon_sym_COMMA] = ACTIONS(5518), + [anon_sym_RPAREN] = ACTIONS(5518), + [anon_sym_LPAREN2] = ACTIONS(5518), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_STAR] = ACTIONS(5518), + [anon_sym_SLASH] = ACTIONS(5516), + [anon_sym_PERCENT] = ACTIONS(5518), + [anon_sym_PIPE_PIPE] = ACTIONS(5518), + [anon_sym_AMP_AMP] = ACTIONS(5518), + [anon_sym_PIPE] = ACTIONS(5516), + [anon_sym_CARET] = ACTIONS(5518), + [anon_sym_AMP] = ACTIONS(5516), + [anon_sym_EQ_EQ] = ACTIONS(5518), + [anon_sym_BANG_EQ] = ACTIONS(5518), + [anon_sym_GT] = ACTIONS(5516), + [anon_sym_GT_EQ] = ACTIONS(5518), + [anon_sym_LT_EQ] = ACTIONS(5516), + [anon_sym_LT] = ACTIONS(5516), + [anon_sym_LT_LT] = ACTIONS(5518), + [anon_sym_GT_GT] = ACTIONS(5518), + [anon_sym_SEMI] = ACTIONS(5518), + [anon_sym___extension__] = ACTIONS(5518), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6673), + [anon_sym_LBRACE] = ACTIONS(5518), + [anon_sym_RBRACE] = ACTIONS(5518), + [anon_sym_LBRACK] = ACTIONS(5518), + [anon_sym_RBRACK] = ACTIONS(5518), + [anon_sym_const] = ACTIONS(5516), + [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__Nonnull] = ACTIONS(5518), + [anon_sym_mutable] = ACTIONS(5518), + [anon_sym_constinit] = ACTIONS(5518), + [anon_sym_consteval] = ACTIONS(5518), + [anon_sym_alignas] = ACTIONS(5518), + [anon_sym__Alignas] = ACTIONS(5518), + [anon_sym_COLON] = ACTIONS(5518), + [anon_sym_QMARK] = ACTIONS(5518), + [anon_sym_LT_EQ_GT] = ACTIONS(5518), + [anon_sym_or] = ACTIONS(5518), + [anon_sym_and] = ACTIONS(5518), + [anon_sym_bitor] = ACTIONS(5518), + [anon_sym_xor] = ACTIONS(5518), + [anon_sym_bitand] = ACTIONS(5518), + [anon_sym_not_eq] = ACTIONS(5518), + [anon_sym_DASH_DASH] = ACTIONS(5518), + [anon_sym_PLUS_PLUS] = ACTIONS(5518), + [anon_sym_DOT] = ACTIONS(5516), + [anon_sym_DOT_STAR] = ACTIONS(5518), + [anon_sym_DASH_GT] = ACTIONS(5518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5518), + [anon_sym_decltype] = ACTIONS(5518), + [anon_sym_final] = ACTIONS(5518), + [anon_sym_override] = ACTIONS(5518), + [anon_sym_requires] = ACTIONS(5518), + }, + [STATE(2744)] = { + [sym_new_declarator] = STATE(2797), + [sym_identifier] = ACTIONS(6947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6949), + [anon_sym_COMMA] = ACTIONS(6949), + [anon_sym_RPAREN] = ACTIONS(6949), + [aux_sym_preproc_if_token2] = ACTIONS(6949), + [aux_sym_preproc_else_token1] = ACTIONS(6949), + [aux_sym_preproc_elif_token1] = ACTIONS(6947), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6949), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6949), + [anon_sym_LPAREN2] = ACTIONS(6949), + [anon_sym_DASH] = ACTIONS(6947), + [anon_sym_PLUS] = ACTIONS(6947), + [anon_sym_STAR] = ACTIONS(6947), + [anon_sym_SLASH] = ACTIONS(6947), + [anon_sym_PERCENT] = ACTIONS(6947), + [anon_sym_PIPE_PIPE] = ACTIONS(6949), + [anon_sym_AMP_AMP] = ACTIONS(6949), + [anon_sym_PIPE] = ACTIONS(6947), + [anon_sym_CARET] = ACTIONS(6947), + [anon_sym_AMP] = ACTIONS(6947), + [anon_sym_EQ_EQ] = ACTIONS(6949), + [anon_sym_BANG_EQ] = ACTIONS(6949), + [anon_sym_GT] = ACTIONS(6947), + [anon_sym_GT_EQ] = ACTIONS(6949), + [anon_sym_LT_EQ] = ACTIONS(6947), + [anon_sym_LT] = ACTIONS(6947), + [anon_sym_LT_LT] = ACTIONS(6947), + [anon_sym_GT_GT] = ACTIONS(6947), + [anon_sym_SEMI] = ACTIONS(6949), + [anon_sym___attribute__] = ACTIONS(6947), + [anon_sym___attribute] = ACTIONS(6947), + [anon_sym_LBRACE] = ACTIONS(6949), + [anon_sym_RBRACE] = ACTIONS(6949), + [anon_sym_LBRACK] = ACTIONS(6591), + [anon_sym_RBRACK] = ACTIONS(6949), + [anon_sym_EQ] = ACTIONS(6947), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_QMARK] = ACTIONS(6949), + [anon_sym_STAR_EQ] = ACTIONS(6949), + [anon_sym_SLASH_EQ] = ACTIONS(6949), + [anon_sym_PERCENT_EQ] = ACTIONS(6949), + [anon_sym_PLUS_EQ] = ACTIONS(6949), + [anon_sym_DASH_EQ] = ACTIONS(6949), + [anon_sym_LT_LT_EQ] = ACTIONS(6949), + [anon_sym_GT_GT_EQ] = ACTIONS(6949), + [anon_sym_AMP_EQ] = ACTIONS(6949), + [anon_sym_CARET_EQ] = ACTIONS(6949), + [anon_sym_PIPE_EQ] = ACTIONS(6949), + [anon_sym_and_eq] = ACTIONS(6947), + [anon_sym_or_eq] = ACTIONS(6947), + [anon_sym_xor_eq] = ACTIONS(6947), + [anon_sym_LT_EQ_GT] = ACTIONS(6949), + [anon_sym_or] = ACTIONS(6947), + [anon_sym_and] = ACTIONS(6947), + [anon_sym_bitor] = ACTIONS(6947), + [anon_sym_xor] = ACTIONS(6947), + [anon_sym_bitand] = ACTIONS(6947), + [anon_sym_not_eq] = ACTIONS(6947), + [anon_sym_DASH_DASH] = ACTIONS(6949), + [anon_sym_PLUS_PLUS] = ACTIONS(6949), + [anon_sym_DOT] = ACTIONS(6947), + [anon_sym_DOT_STAR] = ACTIONS(6949), + [anon_sym_DASH_GT] = ACTIONS(6949), + [sym_comment] = ACTIONS(3), + }, + [STATE(2745)] = { + [sym_attribute_specifier] = STATE(2505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5524), + [anon_sym_COMMA] = ACTIONS(5524), + [anon_sym_RPAREN] = ACTIONS(5524), + [anon_sym_LPAREN2] = ACTIONS(5524), + [anon_sym_DASH] = ACTIONS(5522), + [anon_sym_PLUS] = ACTIONS(5522), + [anon_sym_STAR] = ACTIONS(5524), + [anon_sym_SLASH] = ACTIONS(5522), + [anon_sym_PERCENT] = ACTIONS(5524), + [anon_sym_PIPE_PIPE] = ACTIONS(5524), + [anon_sym_AMP_AMP] = ACTIONS(5524), + [anon_sym_PIPE] = ACTIONS(5522), + [anon_sym_CARET] = ACTIONS(5524), + [anon_sym_AMP] = ACTIONS(5522), + [anon_sym_EQ_EQ] = ACTIONS(5524), + [anon_sym_BANG_EQ] = ACTIONS(5524), + [anon_sym_GT] = ACTIONS(5522), + [anon_sym_GT_EQ] = ACTIONS(5524), + [anon_sym_LT_EQ] = ACTIONS(5522), + [anon_sym_LT] = ACTIONS(5522), + [anon_sym_LT_LT] = ACTIONS(5524), + [anon_sym_GT_GT] = ACTIONS(5524), + [anon_sym_SEMI] = ACTIONS(5524), + [anon_sym___extension__] = ACTIONS(5524), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6673), + [anon_sym_LBRACE] = ACTIONS(5524), + [anon_sym_RBRACE] = ACTIONS(5524), + [anon_sym_LBRACK] = ACTIONS(5524), + [anon_sym_RBRACK] = ACTIONS(5524), + [anon_sym_const] = ACTIONS(5522), + [anon_sym_constexpr] = ACTIONS(5524), + [anon_sym_volatile] = ACTIONS(5524), + [anon_sym_restrict] = ACTIONS(5524), + [anon_sym___restrict__] = ACTIONS(5524), + [anon_sym__Atomic] = ACTIONS(5524), + [anon_sym__Noreturn] = ACTIONS(5524), + [anon_sym_noreturn] = ACTIONS(5524), + [anon_sym__Nonnull] = ACTIONS(5524), + [anon_sym_mutable] = ACTIONS(5524), + [anon_sym_constinit] = ACTIONS(5524), + [anon_sym_consteval] = ACTIONS(5524), + [anon_sym_alignas] = ACTIONS(5524), + [anon_sym__Alignas] = ACTIONS(5524), + [anon_sym_COLON] = ACTIONS(5524), + [anon_sym_QMARK] = ACTIONS(5524), + [anon_sym_LT_EQ_GT] = ACTIONS(5524), + [anon_sym_or] = ACTIONS(5524), + [anon_sym_and] = ACTIONS(5524), + [anon_sym_bitor] = ACTIONS(5524), + [anon_sym_xor] = ACTIONS(5524), + [anon_sym_bitand] = ACTIONS(5524), + [anon_sym_not_eq] = ACTIONS(5524), + [anon_sym_DASH_DASH] = ACTIONS(5524), + [anon_sym_PLUS_PLUS] = ACTIONS(5524), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_DOT_STAR] = ACTIONS(5524), + [anon_sym_DASH_GT] = ACTIONS(5524), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5524), + [anon_sym_decltype] = ACTIONS(5524), + [anon_sym_final] = ACTIONS(5524), + [anon_sym_override] = ACTIONS(5524), + [anon_sym_requires] = ACTIONS(5524), + }, + [STATE(2746)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5154), + [anon_sym_COMMA] = ACTIONS(5154), + [anon_sym_LPAREN2] = ACTIONS(5154), + [anon_sym_DASH] = ACTIONS(5152), + [anon_sym_PLUS] = ACTIONS(5152), + [anon_sym_STAR] = ACTIONS(5154), + [anon_sym_SLASH] = ACTIONS(5152), + [anon_sym_PERCENT] = ACTIONS(5154), + [anon_sym_PIPE_PIPE] = ACTIONS(5154), + [anon_sym_AMP_AMP] = ACTIONS(5154), + [anon_sym_PIPE] = ACTIONS(5152), + [anon_sym_CARET] = ACTIONS(5154), + [anon_sym_AMP] = ACTIONS(5152), + [anon_sym_EQ_EQ] = ACTIONS(5154), + [anon_sym_BANG_EQ] = ACTIONS(5154), + [anon_sym_GT] = ACTIONS(5152), + [anon_sym_GT_EQ] = ACTIONS(5152), + [anon_sym_LT_EQ] = ACTIONS(5152), + [anon_sym_LT] = ACTIONS(5152), + [anon_sym_LT_LT] = ACTIONS(5154), + [anon_sym_GT_GT] = ACTIONS(5152), + [anon_sym___extension__] = ACTIONS(5154), + [anon_sym___attribute__] = ACTIONS(5154), + [anon_sym___attribute] = ACTIONS(5152), + [anon_sym_LBRACE] = ACTIONS(5154), + [anon_sym_signed] = ACTIONS(6951), + [anon_sym_unsigned] = ACTIONS(6951), + [anon_sym_long] = ACTIONS(6951), + [anon_sym_short] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(5154), + [anon_sym_const] = ACTIONS(5152), + [anon_sym_constexpr] = ACTIONS(5154), + [anon_sym_volatile] = ACTIONS(5154), + [anon_sym_restrict] = ACTIONS(5154), + [anon_sym___restrict__] = ACTIONS(5154), + [anon_sym__Atomic] = ACTIONS(5154), + [anon_sym__Noreturn] = ACTIONS(5154), + [anon_sym_noreturn] = ACTIONS(5154), + [anon_sym__Nonnull] = ACTIONS(5154), + [anon_sym_mutable] = ACTIONS(5154), + [anon_sym_constinit] = ACTIONS(5154), + [anon_sym_consteval] = ACTIONS(5154), + [anon_sym_alignas] = ACTIONS(5154), + [anon_sym__Alignas] = ACTIONS(5154), + [anon_sym_QMARK] = ACTIONS(5154), + [anon_sym_LT_EQ_GT] = ACTIONS(5154), + [anon_sym_or] = ACTIONS(5154), + [anon_sym_and] = ACTIONS(5154), + [anon_sym_bitor] = ACTIONS(5154), + [anon_sym_xor] = ACTIONS(5154), + [anon_sym_bitand] = ACTIONS(5154), + [anon_sym_not_eq] = ACTIONS(5154), + [anon_sym_DASH_DASH] = ACTIONS(5154), + [anon_sym_PLUS_PLUS] = ACTIONS(5154), + [anon_sym_DOT] = ACTIONS(5152), + [anon_sym_DOT_STAR] = ACTIONS(5154), + [anon_sym_DASH_GT] = ACTIONS(5154), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5154), + [anon_sym_decltype] = ACTIONS(5154), + [anon_sym_final] = ACTIONS(5154), + [anon_sym_override] = ACTIONS(5154), + [anon_sym_GT2] = ACTIONS(5154), + [anon_sym_requires] = ACTIONS(5154), + }, + [STATE(2747)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5162), + [anon_sym_COMMA] = ACTIONS(5162), + [anon_sym_LPAREN2] = ACTIONS(5162), + [anon_sym_DASH] = ACTIONS(5160), + [anon_sym_PLUS] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_SLASH] = ACTIONS(5160), + [anon_sym_PERCENT] = ACTIONS(5162), + [anon_sym_PIPE_PIPE] = ACTIONS(5162), + [anon_sym_AMP_AMP] = ACTIONS(5162), + [anon_sym_PIPE] = ACTIONS(5160), + [anon_sym_CARET] = ACTIONS(5162), + [anon_sym_AMP] = ACTIONS(5160), + [anon_sym_EQ_EQ] = ACTIONS(5162), + [anon_sym_BANG_EQ] = ACTIONS(5162), + [anon_sym_GT] = ACTIONS(5160), + [anon_sym_GT_EQ] = ACTIONS(5160), + [anon_sym_LT_EQ] = ACTIONS(5160), + [anon_sym_LT] = ACTIONS(5160), + [anon_sym_LT_LT] = ACTIONS(5162), + [anon_sym_GT_GT] = ACTIONS(5160), + [anon_sym___extension__] = ACTIONS(5162), + [anon_sym___attribute__] = ACTIONS(5162), + [anon_sym___attribute] = ACTIONS(5160), + [anon_sym_LBRACE] = ACTIONS(5162), + [anon_sym_signed] = ACTIONS(6951), + [anon_sym_unsigned] = ACTIONS(6951), + [anon_sym_long] = ACTIONS(6951), + [anon_sym_short] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(5162), + [anon_sym_const] = ACTIONS(5160), + [anon_sym_constexpr] = ACTIONS(5162), + [anon_sym_volatile] = ACTIONS(5162), + [anon_sym_restrict] = ACTIONS(5162), + [anon_sym___restrict__] = ACTIONS(5162), + [anon_sym__Atomic] = ACTIONS(5162), + [anon_sym__Noreturn] = ACTIONS(5162), + [anon_sym_noreturn] = ACTIONS(5162), + [anon_sym__Nonnull] = ACTIONS(5162), + [anon_sym_mutable] = ACTIONS(5162), + [anon_sym_constinit] = ACTIONS(5162), + [anon_sym_consteval] = ACTIONS(5162), + [anon_sym_alignas] = ACTIONS(5162), + [anon_sym__Alignas] = ACTIONS(5162), + [anon_sym_QMARK] = ACTIONS(5162), + [anon_sym_LT_EQ_GT] = ACTIONS(5162), + [anon_sym_or] = ACTIONS(5162), + [anon_sym_and] = ACTIONS(5162), + [anon_sym_bitor] = ACTIONS(5162), + [anon_sym_xor] = ACTIONS(5162), + [anon_sym_bitand] = ACTIONS(5162), + [anon_sym_not_eq] = ACTIONS(5162), + [anon_sym_DASH_DASH] = ACTIONS(5162), + [anon_sym_PLUS_PLUS] = ACTIONS(5162), + [anon_sym_DOT] = ACTIONS(5160), + [anon_sym_DOT_STAR] = ACTIONS(5162), + [anon_sym_DASH_GT] = ACTIONS(5162), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5162), + [anon_sym_decltype] = ACTIONS(5162), + [anon_sym_final] = ACTIONS(5162), + [anon_sym_override] = ACTIONS(5162), + [anon_sym_GT2] = ACTIONS(5162), + [anon_sym_requires] = ACTIONS(5162), + }, + [STATE(2748)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2783), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5196), + [anon_sym_COMMA] = ACTIONS(5196), + [anon_sym_LPAREN2] = ACTIONS(5196), + [anon_sym_DASH] = ACTIONS(5194), + [anon_sym_PLUS] = ACTIONS(5194), + [anon_sym_STAR] = ACTIONS(5196), + [anon_sym_SLASH] = ACTIONS(5194), + [anon_sym_PERCENT] = ACTIONS(5196), + [anon_sym_PIPE_PIPE] = ACTIONS(5196), + [anon_sym_AMP_AMP] = ACTIONS(5196), + [anon_sym_PIPE] = ACTIONS(5194), + [anon_sym_CARET] = ACTIONS(5196), + [anon_sym_AMP] = ACTIONS(5194), + [anon_sym_EQ_EQ] = ACTIONS(5196), + [anon_sym_BANG_EQ] = ACTIONS(5196), + [anon_sym_GT] = ACTIONS(5194), + [anon_sym_GT_EQ] = ACTIONS(5194), + [anon_sym_LT_EQ] = ACTIONS(5194), + [anon_sym_LT] = ACTIONS(5194), + [anon_sym_LT_LT] = ACTIONS(5196), + [anon_sym_GT_GT] = ACTIONS(5194), + [anon_sym___extension__] = ACTIONS(5196), + [anon_sym___attribute__] = ACTIONS(5196), + [anon_sym___attribute] = ACTIONS(5194), + [anon_sym_LBRACE] = ACTIONS(5196), + [anon_sym_signed] = ACTIONS(6953), + [anon_sym_unsigned] = ACTIONS(6953), + [anon_sym_long] = ACTIONS(6953), + [anon_sym_short] = ACTIONS(6953), + [anon_sym_LBRACK] = ACTIONS(5196), + [anon_sym_const] = ACTIONS(5194), + [anon_sym_constexpr] = ACTIONS(5196), + [anon_sym_volatile] = ACTIONS(5196), + [anon_sym_restrict] = ACTIONS(5196), + [anon_sym___restrict__] = ACTIONS(5196), + [anon_sym__Atomic] = ACTIONS(5196), + [anon_sym__Noreturn] = ACTIONS(5196), + [anon_sym_noreturn] = ACTIONS(5196), + [anon_sym__Nonnull] = ACTIONS(5196), + [anon_sym_mutable] = ACTIONS(5196), + [anon_sym_constinit] = ACTIONS(5196), + [anon_sym_consteval] = ACTIONS(5196), + [anon_sym_alignas] = ACTIONS(5196), + [anon_sym__Alignas] = ACTIONS(5196), + [anon_sym_QMARK] = ACTIONS(5196), + [anon_sym_LT_EQ_GT] = ACTIONS(5196), + [anon_sym_or] = ACTIONS(5196), + [anon_sym_and] = ACTIONS(5196), + [anon_sym_bitor] = ACTIONS(5196), + [anon_sym_xor] = ACTIONS(5196), + [anon_sym_bitand] = ACTIONS(5196), + [anon_sym_not_eq] = ACTIONS(5196), + [anon_sym_DASH_DASH] = ACTIONS(5196), + [anon_sym_PLUS_PLUS] = ACTIONS(5196), + [anon_sym_DOT] = ACTIONS(5194), + [anon_sym_DOT_STAR] = ACTIONS(5196), + [anon_sym_DASH_GT] = ACTIONS(5196), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5196), + [anon_sym_decltype] = ACTIONS(5196), + [anon_sym_final] = ACTIONS(5196), + [anon_sym_override] = ACTIONS(5196), + [anon_sym_GT2] = ACTIONS(5196), + [anon_sym_requires] = ACTIONS(5196), + }, + [STATE(2749)] = { + [sym_identifier] = ACTIONS(3298), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3291), + [anon_sym_COMMA] = ACTIONS(3291), + [anon_sym_RPAREN] = ACTIONS(3291), + [aux_sym_preproc_if_token2] = ACTIONS(3291), + [aux_sym_preproc_else_token1] = ACTIONS(3291), + [aux_sym_preproc_elif_token1] = ACTIONS(3298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3291), + [anon_sym_LPAREN2] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3291), + [anon_sym_AMP_AMP] = ACTIONS(3291), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_CARET] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3291), + [anon_sym_BANG_EQ] = ACTIONS(3291), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3291), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_LT_LT] = ACTIONS(3298), + [anon_sym_GT_GT] = ACTIONS(3298), + [anon_sym_SEMI] = ACTIONS(3291), + [anon_sym___attribute__] = ACTIONS(3298), + [anon_sym___attribute] = ACTIONS(3298), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(3291), + [anon_sym_RBRACK] = ACTIONS(3291), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_COLON] = ACTIONS(3298), + [anon_sym_QMARK] = ACTIONS(3291), + [anon_sym_STAR_EQ] = ACTIONS(3291), + [anon_sym_SLASH_EQ] = ACTIONS(3291), + [anon_sym_PERCENT_EQ] = ACTIONS(3291), + [anon_sym_PLUS_EQ] = ACTIONS(3291), + [anon_sym_DASH_EQ] = ACTIONS(3291), + [anon_sym_LT_LT_EQ] = ACTIONS(3291), + [anon_sym_GT_GT_EQ] = ACTIONS(3291), + [anon_sym_AMP_EQ] = ACTIONS(3291), + [anon_sym_CARET_EQ] = ACTIONS(3291), + [anon_sym_PIPE_EQ] = ACTIONS(3291), + [anon_sym_and_eq] = ACTIONS(3298), + [anon_sym_or_eq] = ACTIONS(3298), + [anon_sym_xor_eq] = ACTIONS(3298), + [anon_sym_LT_EQ_GT] = ACTIONS(3291), + [anon_sym_or] = ACTIONS(3298), + [anon_sym_and] = ACTIONS(3298), + [anon_sym_bitor] = ACTIONS(3298), + [anon_sym_xor] = ACTIONS(3298), + [anon_sym_bitand] = ACTIONS(3298), + [anon_sym_not_eq] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DOT] = ACTIONS(3298), + [anon_sym_DOT_STAR] = ACTIONS(3291), + [anon_sym_DASH_GT] = ACTIONS(3291), + [sym_comment] = ACTIONS(3), + }, + [STATE(2750)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5176), + [anon_sym_COMMA] = ACTIONS(5176), + [anon_sym_LPAREN2] = ACTIONS(5176), + [anon_sym_DASH] = ACTIONS(5174), + [anon_sym_PLUS] = ACTIONS(5174), + [anon_sym_STAR] = ACTIONS(5176), + [anon_sym_SLASH] = ACTIONS(5174), + [anon_sym_PERCENT] = ACTIONS(5176), + [anon_sym_PIPE_PIPE] = ACTIONS(5176), + [anon_sym_AMP_AMP] = ACTIONS(5176), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_CARET] = ACTIONS(5176), + [anon_sym_AMP] = ACTIONS(5174), + [anon_sym_EQ_EQ] = ACTIONS(5176), + [anon_sym_BANG_EQ] = ACTIONS(5176), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_EQ] = ACTIONS(5174), + [anon_sym_LT_EQ] = ACTIONS(5174), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_LT_LT] = ACTIONS(5176), + [anon_sym_GT_GT] = ACTIONS(5174), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym___attribute__] = ACTIONS(5176), + [anon_sym___attribute] = ACTIONS(5174), + [anon_sym_LBRACE] = ACTIONS(5176), + [anon_sym_signed] = ACTIONS(6955), + [anon_sym_unsigned] = ACTIONS(6955), + [anon_sym_long] = ACTIONS(6955), + [anon_sym_short] = ACTIONS(6955), + [anon_sym_LBRACK] = ACTIONS(5176), + [anon_sym_const] = ACTIONS(5174), + [anon_sym_constexpr] = ACTIONS(5176), + [anon_sym_volatile] = ACTIONS(5176), + [anon_sym_restrict] = ACTIONS(5176), + [anon_sym___restrict__] = ACTIONS(5176), + [anon_sym__Atomic] = ACTIONS(5176), + [anon_sym__Noreturn] = ACTIONS(5176), + [anon_sym_noreturn] = ACTIONS(5176), + [anon_sym__Nonnull] = ACTIONS(5176), + [anon_sym_mutable] = ACTIONS(5176), + [anon_sym_constinit] = ACTIONS(5176), + [anon_sym_consteval] = ACTIONS(5176), + [anon_sym_alignas] = ACTIONS(5176), + [anon_sym__Alignas] = ACTIONS(5176), + [anon_sym_QMARK] = ACTIONS(5176), + [anon_sym_LT_EQ_GT] = ACTIONS(5176), + [anon_sym_or] = ACTIONS(5176), + [anon_sym_and] = ACTIONS(5176), + [anon_sym_bitor] = ACTIONS(5176), + [anon_sym_xor] = ACTIONS(5176), + [anon_sym_bitand] = ACTIONS(5176), + [anon_sym_not_eq] = ACTIONS(5176), + [anon_sym_DASH_DASH] = ACTIONS(5176), + [anon_sym_PLUS_PLUS] = ACTIONS(5176), + [anon_sym_DOT] = ACTIONS(5174), + [anon_sym_DOT_STAR] = ACTIONS(5176), + [anon_sym_DASH_GT] = ACTIONS(5176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5176), + [anon_sym_decltype] = ACTIONS(5176), + [anon_sym_final] = ACTIONS(5176), + [anon_sym_override] = ACTIONS(5176), + [anon_sym_GT2] = ACTIONS(5176), + [anon_sym_requires] = ACTIONS(5176), + }, + [STATE(2751)] = { + [sym_attribute_specifier] = STATE(2485), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5496), + [anon_sym_COMMA] = ACTIONS(5496), + [anon_sym_RPAREN] = ACTIONS(5496), + [anon_sym_LPAREN2] = ACTIONS(5496), + [anon_sym_DASH] = ACTIONS(5494), + [anon_sym_PLUS] = ACTIONS(5494), + [anon_sym_STAR] = ACTIONS(5496), + [anon_sym_SLASH] = ACTIONS(5494), + [anon_sym_PERCENT] = ACTIONS(5496), + [anon_sym_PIPE_PIPE] = ACTIONS(5496), + [anon_sym_AMP_AMP] = ACTIONS(5496), + [anon_sym_PIPE] = ACTIONS(5494), + [anon_sym_CARET] = ACTIONS(5496), + [anon_sym_AMP] = ACTIONS(5494), + [anon_sym_EQ_EQ] = ACTIONS(5496), + [anon_sym_BANG_EQ] = ACTIONS(5496), + [anon_sym_GT] = ACTIONS(5494), + [anon_sym_GT_EQ] = ACTIONS(5496), + [anon_sym_LT_EQ] = ACTIONS(5494), + [anon_sym_LT] = ACTIONS(5494), + [anon_sym_LT_LT] = ACTIONS(5496), + [anon_sym_GT_GT] = ACTIONS(5496), + [anon_sym_SEMI] = ACTIONS(5496), + [anon_sym___extension__] = ACTIONS(5496), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6673), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(5496), + [anon_sym_LBRACK] = ACTIONS(5496), + [anon_sym_RBRACK] = ACTIONS(5496), + [anon_sym_const] = ACTIONS(5494), + [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__Nonnull] = ACTIONS(5496), + [anon_sym_mutable] = ACTIONS(5496), + [anon_sym_constinit] = ACTIONS(5496), + [anon_sym_consteval] = ACTIONS(5496), + [anon_sym_alignas] = ACTIONS(5496), + [anon_sym__Alignas] = ACTIONS(5496), + [anon_sym_COLON] = ACTIONS(5496), + [anon_sym_QMARK] = ACTIONS(5496), + [anon_sym_LT_EQ_GT] = ACTIONS(5496), + [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(5496), + [anon_sym_PLUS_PLUS] = ACTIONS(5496), + [anon_sym_DOT] = ACTIONS(5494), + [anon_sym_DOT_STAR] = ACTIONS(5496), + [anon_sym_DASH_GT] = ACTIONS(5496), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5496), + [anon_sym_decltype] = ACTIONS(5496), + [anon_sym_final] = ACTIONS(5496), + [anon_sym_override] = ACTIONS(5496), + [anon_sym_requires] = ACTIONS(5496), + }, + [STATE(2752)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5176), + [anon_sym_COMMA] = ACTIONS(5176), + [anon_sym_RPAREN] = ACTIONS(5176), + [anon_sym_LPAREN2] = ACTIONS(5176), + [anon_sym_DASH] = ACTIONS(5174), + [anon_sym_PLUS] = ACTIONS(5174), + [anon_sym_STAR] = ACTIONS(5174), + [anon_sym_SLASH] = ACTIONS(5174), + [anon_sym_PERCENT] = ACTIONS(5174), + [anon_sym_PIPE_PIPE] = ACTIONS(5176), + [anon_sym_AMP_AMP] = ACTIONS(5176), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_CARET] = ACTIONS(5174), + [anon_sym_AMP] = ACTIONS(5174), + [anon_sym_EQ_EQ] = ACTIONS(5176), + [anon_sym_BANG_EQ] = ACTIONS(5176), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_EQ] = ACTIONS(5176), + [anon_sym_LT_EQ] = ACTIONS(5174), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_LT_LT] = ACTIONS(5174), + [anon_sym_GT_GT] = ACTIONS(5174), + [anon_sym_SEMI] = ACTIONS(5176), + [anon_sym___attribute__] = ACTIONS(5176), + [anon_sym___attribute] = ACTIONS(5174), + [anon_sym_LBRACE] = ACTIONS(5176), + [anon_sym_RBRACE] = ACTIONS(5176), + [anon_sym_signed] = ACTIONS(6957), + [anon_sym_unsigned] = ACTIONS(6957), + [anon_sym_long] = ACTIONS(6957), + [anon_sym_short] = ACTIONS(6957), + [anon_sym_LBRACK] = ACTIONS(5176), + [anon_sym_RBRACK] = ACTIONS(5176), + [anon_sym_EQ] = ACTIONS(5174), + [anon_sym_COLON] = ACTIONS(5176), + [anon_sym_QMARK] = ACTIONS(5176), + [anon_sym_STAR_EQ] = ACTIONS(5176), + [anon_sym_SLASH_EQ] = ACTIONS(5176), + [anon_sym_PERCENT_EQ] = ACTIONS(5176), + [anon_sym_PLUS_EQ] = ACTIONS(5176), + [anon_sym_DASH_EQ] = ACTIONS(5176), + [anon_sym_LT_LT_EQ] = ACTIONS(5176), + [anon_sym_GT_GT_EQ] = ACTIONS(5176), + [anon_sym_AMP_EQ] = ACTIONS(5176), + [anon_sym_CARET_EQ] = ACTIONS(5176), + [anon_sym_PIPE_EQ] = ACTIONS(5176), + [anon_sym_and_eq] = ACTIONS(5176), + [anon_sym_or_eq] = ACTIONS(5176), + [anon_sym_xor_eq] = ACTIONS(5176), + [anon_sym_LT_EQ_GT] = ACTIONS(5176), + [anon_sym_or] = ACTIONS(5174), + [anon_sym_and] = ACTIONS(5174), + [anon_sym_bitor] = ACTIONS(5176), + [anon_sym_xor] = ACTIONS(5174), + [anon_sym_bitand] = ACTIONS(5176), + [anon_sym_not_eq] = ACTIONS(5176), + [anon_sym_DASH_DASH] = ACTIONS(5176), + [anon_sym_PLUS_PLUS] = ACTIONS(5176), + [anon_sym_DOT] = ACTIONS(5174), + [anon_sym_DOT_STAR] = ACTIONS(5176), + [anon_sym_DASH_GT] = ACTIONS(5176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5176), + [anon_sym_decltype] = ACTIONS(5176), + }, + [STATE(2753)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5182), + [anon_sym_COMMA] = ACTIONS(5182), + [anon_sym_LPAREN2] = ACTIONS(5182), + [anon_sym_DASH] = ACTIONS(5180), + [anon_sym_PLUS] = ACTIONS(5180), + [anon_sym_STAR] = ACTIONS(5182), + [anon_sym_SLASH] = ACTIONS(5180), + [anon_sym_PERCENT] = ACTIONS(5182), + [anon_sym_PIPE_PIPE] = ACTIONS(5182), + [anon_sym_AMP_AMP] = ACTIONS(5182), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_CARET] = ACTIONS(5182), + [anon_sym_AMP] = ACTIONS(5180), + [anon_sym_EQ_EQ] = ACTIONS(5182), + [anon_sym_BANG_EQ] = ACTIONS(5182), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_GT_EQ] = ACTIONS(5180), + [anon_sym_LT_EQ] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_LT_LT] = ACTIONS(5182), + [anon_sym_GT_GT] = ACTIONS(5180), + [anon_sym___extension__] = ACTIONS(5182), + [anon_sym___attribute__] = ACTIONS(5182), + [anon_sym___attribute] = ACTIONS(5180), + [anon_sym_LBRACE] = ACTIONS(5182), + [anon_sym_signed] = ACTIONS(6951), + [anon_sym_unsigned] = ACTIONS(6951), + [anon_sym_long] = ACTIONS(6951), + [anon_sym_short] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(5182), + [anon_sym_const] = ACTIONS(5180), + [anon_sym_constexpr] = ACTIONS(5182), + [anon_sym_volatile] = ACTIONS(5182), + [anon_sym_restrict] = ACTIONS(5182), + [anon_sym___restrict__] = ACTIONS(5182), + [anon_sym__Atomic] = ACTIONS(5182), + [anon_sym__Noreturn] = ACTIONS(5182), + [anon_sym_noreturn] = ACTIONS(5182), + [anon_sym__Nonnull] = ACTIONS(5182), + [anon_sym_mutable] = ACTIONS(5182), + [anon_sym_constinit] = ACTIONS(5182), + [anon_sym_consteval] = ACTIONS(5182), + [anon_sym_alignas] = ACTIONS(5182), + [anon_sym__Alignas] = ACTIONS(5182), + [anon_sym_QMARK] = ACTIONS(5182), + [anon_sym_LT_EQ_GT] = ACTIONS(5182), + [anon_sym_or] = ACTIONS(5182), + [anon_sym_and] = ACTIONS(5182), + [anon_sym_bitor] = ACTIONS(5182), + [anon_sym_xor] = ACTIONS(5182), + [anon_sym_bitand] = ACTIONS(5182), + [anon_sym_not_eq] = ACTIONS(5182), + [anon_sym_DASH_DASH] = ACTIONS(5182), + [anon_sym_PLUS_PLUS] = ACTIONS(5182), + [anon_sym_DOT] = ACTIONS(5180), + [anon_sym_DOT_STAR] = ACTIONS(5182), + [anon_sym_DASH_GT] = ACTIONS(5182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5182), + [anon_sym_decltype] = ACTIONS(5182), + [anon_sym_final] = ACTIONS(5182), + [anon_sym_override] = ACTIONS(5182), + [anon_sym_GT2] = ACTIONS(5182), + [anon_sym_requires] = ACTIONS(5182), + }, + [STATE(2754)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5182), + [anon_sym_COMMA] = ACTIONS(5182), + [anon_sym_RPAREN] = ACTIONS(5182), + [anon_sym_LPAREN2] = ACTIONS(5182), + [anon_sym_DASH] = ACTIONS(5180), + [anon_sym_PLUS] = ACTIONS(5180), + [anon_sym_STAR] = ACTIONS(5180), + [anon_sym_SLASH] = ACTIONS(5180), + [anon_sym_PERCENT] = ACTIONS(5180), + [anon_sym_PIPE_PIPE] = ACTIONS(5182), + [anon_sym_AMP_AMP] = ACTIONS(5182), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_CARET] = ACTIONS(5180), + [anon_sym_AMP] = ACTIONS(5180), + [anon_sym_EQ_EQ] = ACTIONS(5182), + [anon_sym_BANG_EQ] = ACTIONS(5182), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_GT_EQ] = ACTIONS(5182), + [anon_sym_LT_EQ] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_LT_LT] = ACTIONS(5180), + [anon_sym_GT_GT] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5182), + [anon_sym___attribute__] = ACTIONS(5182), + [anon_sym___attribute] = ACTIONS(5180), + [anon_sym_LBRACE] = ACTIONS(5182), + [anon_sym_RBRACE] = ACTIONS(5182), + [anon_sym_signed] = ACTIONS(6945), + [anon_sym_unsigned] = ACTIONS(6945), + [anon_sym_long] = ACTIONS(6945), + [anon_sym_short] = ACTIONS(6945), + [anon_sym_LBRACK] = ACTIONS(5182), + [anon_sym_RBRACK] = ACTIONS(5182), + [anon_sym_EQ] = ACTIONS(5180), + [anon_sym_COLON] = ACTIONS(5182), + [anon_sym_QMARK] = ACTIONS(5182), + [anon_sym_STAR_EQ] = ACTIONS(5182), + [anon_sym_SLASH_EQ] = ACTIONS(5182), + [anon_sym_PERCENT_EQ] = ACTIONS(5182), + [anon_sym_PLUS_EQ] = ACTIONS(5182), + [anon_sym_DASH_EQ] = ACTIONS(5182), + [anon_sym_LT_LT_EQ] = ACTIONS(5182), + [anon_sym_GT_GT_EQ] = ACTIONS(5182), + [anon_sym_AMP_EQ] = ACTIONS(5182), + [anon_sym_CARET_EQ] = ACTIONS(5182), + [anon_sym_PIPE_EQ] = ACTIONS(5182), + [anon_sym_and_eq] = ACTIONS(5182), + [anon_sym_or_eq] = ACTIONS(5182), + [anon_sym_xor_eq] = ACTIONS(5182), + [anon_sym_LT_EQ_GT] = ACTIONS(5182), + [anon_sym_or] = ACTIONS(5180), + [anon_sym_and] = ACTIONS(5180), + [anon_sym_bitor] = ACTIONS(5182), + [anon_sym_xor] = ACTIONS(5180), + [anon_sym_bitand] = ACTIONS(5182), + [anon_sym_not_eq] = ACTIONS(5182), + [anon_sym_DASH_DASH] = ACTIONS(5182), + [anon_sym_PLUS_PLUS] = ACTIONS(5182), + [anon_sym_DOT] = ACTIONS(5180), + [anon_sym_DOT_STAR] = ACTIONS(5182), + [anon_sym_DASH_GT] = ACTIONS(5182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5182), + [anon_sym_decltype] = ACTIONS(5182), + }, + [STATE(2755)] = { + [sym_attribute_specifier] = STATE(2667), + [sym_enumerator_list] = STATE(2612), + [sym__enum_base_clause] = STATE(2577), + [sym_identifier] = ACTIONS(5504), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5506), + [anon_sym_COMMA] = ACTIONS(5506), + [aux_sym_preproc_if_token2] = ACTIONS(5506), + [aux_sym_preproc_else_token1] = ACTIONS(5506), + [aux_sym_preproc_elif_token1] = ACTIONS(5504), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5506), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5506), + [anon_sym_LPAREN2] = ACTIONS(5506), + [anon_sym_DASH] = ACTIONS(5504), + [anon_sym_PLUS] = ACTIONS(5504), + [anon_sym_STAR] = ACTIONS(5504), + [anon_sym_SLASH] = ACTIONS(5504), + [anon_sym_PERCENT] = ACTIONS(5504), + [anon_sym_PIPE_PIPE] = ACTIONS(5506), + [anon_sym_AMP_AMP] = ACTIONS(5506), + [anon_sym_PIPE] = ACTIONS(5504), + [anon_sym_CARET] = ACTIONS(5504), + [anon_sym_AMP] = ACTIONS(5504), + [anon_sym_EQ_EQ] = ACTIONS(5506), + [anon_sym_BANG_EQ] = ACTIONS(5506), + [anon_sym_GT] = ACTIONS(5504), + [anon_sym_GT_EQ] = ACTIONS(5506), + [anon_sym_LT_EQ] = ACTIONS(5504), + [anon_sym_LT] = ACTIONS(5504), + [anon_sym_LT_LT] = ACTIONS(5504), + [anon_sym_GT_GT] = ACTIONS(5504), + [anon_sym___attribute__] = ACTIONS(6532), + [anon_sym___attribute] = ACTIONS(6532), + [anon_sym_LBRACE] = ACTIONS(6711), + [anon_sym_LBRACK] = ACTIONS(5506), + [anon_sym_EQ] = ACTIONS(5504), + [anon_sym_COLON] = ACTIONS(6959), + [anon_sym_QMARK] = ACTIONS(5506), + [anon_sym_STAR_EQ] = ACTIONS(5506), + [anon_sym_SLASH_EQ] = ACTIONS(5506), + [anon_sym_PERCENT_EQ] = ACTIONS(5506), + [anon_sym_PLUS_EQ] = ACTIONS(5506), + [anon_sym_DASH_EQ] = ACTIONS(5506), + [anon_sym_LT_LT_EQ] = ACTIONS(5506), + [anon_sym_GT_GT_EQ] = ACTIONS(5506), + [anon_sym_AMP_EQ] = ACTIONS(5506), + [anon_sym_CARET_EQ] = ACTIONS(5506), + [anon_sym_PIPE_EQ] = ACTIONS(5506), + [anon_sym_and_eq] = ACTIONS(5504), + [anon_sym_or_eq] = ACTIONS(5504), + [anon_sym_xor_eq] = ACTIONS(5504), + [anon_sym_LT_EQ_GT] = ACTIONS(5506), + [anon_sym_or] = ACTIONS(5504), + [anon_sym_and] = ACTIONS(5504), + [anon_sym_bitor] = ACTIONS(5504), + [anon_sym_xor] = ACTIONS(5504), + [anon_sym_bitand] = ACTIONS(5504), + [anon_sym_not_eq] = ACTIONS(5504), + [anon_sym_DASH_DASH] = ACTIONS(5506), + [anon_sym_PLUS_PLUS] = ACTIONS(5506), + [anon_sym_DOT] = ACTIONS(5504), + [anon_sym_DOT_STAR] = ACTIONS(5506), + [anon_sym_DASH_GT] = ACTIONS(5506), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5504), + [anon_sym_decltype] = ACTIONS(5504), + }, + [STATE(2756)] = { + [sym_attribute_specifier] = STATE(2706), + [sym_enumerator_list] = STATE(2625), + [sym__enum_base_clause] = STATE(2586), + [sym_identifier] = ACTIONS(5454), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5456), + [anon_sym_COMMA] = ACTIONS(5456), + [aux_sym_preproc_if_token2] = ACTIONS(5456), + [aux_sym_preproc_else_token1] = ACTIONS(5456), + [aux_sym_preproc_elif_token1] = ACTIONS(5454), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5456), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5456), + [anon_sym_LPAREN2] = ACTIONS(5456), + [anon_sym_DASH] = ACTIONS(5454), + [anon_sym_PLUS] = ACTIONS(5454), + [anon_sym_STAR] = ACTIONS(5454), + [anon_sym_SLASH] = ACTIONS(5454), + [anon_sym_PERCENT] = ACTIONS(5454), + [anon_sym_PIPE_PIPE] = ACTIONS(5456), + [anon_sym_AMP_AMP] = ACTIONS(5456), + [anon_sym_PIPE] = ACTIONS(5454), + [anon_sym_CARET] = ACTIONS(5454), + [anon_sym_AMP] = ACTIONS(5454), + [anon_sym_EQ_EQ] = ACTIONS(5456), + [anon_sym_BANG_EQ] = ACTIONS(5456), + [anon_sym_GT] = ACTIONS(5454), + [anon_sym_GT_EQ] = ACTIONS(5456), + [anon_sym_LT_EQ] = ACTIONS(5454), + [anon_sym_LT] = ACTIONS(5454), + [anon_sym_LT_LT] = ACTIONS(5454), + [anon_sym_GT_GT] = ACTIONS(5454), + [anon_sym___attribute__] = ACTIONS(6532), + [anon_sym___attribute] = ACTIONS(6532), + [anon_sym_LBRACE] = ACTIONS(6711), + [anon_sym_LBRACK] = ACTIONS(5456), + [anon_sym_EQ] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(6959), + [anon_sym_QMARK] = ACTIONS(5456), + [anon_sym_STAR_EQ] = ACTIONS(5456), + [anon_sym_SLASH_EQ] = ACTIONS(5456), + [anon_sym_PERCENT_EQ] = ACTIONS(5456), + [anon_sym_PLUS_EQ] = ACTIONS(5456), + [anon_sym_DASH_EQ] = ACTIONS(5456), + [anon_sym_LT_LT_EQ] = ACTIONS(5456), + [anon_sym_GT_GT_EQ] = ACTIONS(5456), + [anon_sym_AMP_EQ] = ACTIONS(5456), + [anon_sym_CARET_EQ] = ACTIONS(5456), + [anon_sym_PIPE_EQ] = ACTIONS(5456), + [anon_sym_and_eq] = ACTIONS(5454), + [anon_sym_or_eq] = ACTIONS(5454), + [anon_sym_xor_eq] = ACTIONS(5454), + [anon_sym_LT_EQ_GT] = ACTIONS(5456), + [anon_sym_or] = ACTIONS(5454), + [anon_sym_and] = ACTIONS(5454), + [anon_sym_bitor] = ACTIONS(5454), + [anon_sym_xor] = ACTIONS(5454), + [anon_sym_bitand] = ACTIONS(5454), + [anon_sym_not_eq] = ACTIONS(5454), + [anon_sym_DASH_DASH] = ACTIONS(5456), + [anon_sym_PLUS_PLUS] = ACTIONS(5456), + [anon_sym_DOT] = ACTIONS(5454), + [anon_sym_DOT_STAR] = ACTIONS(5456), + [anon_sym_DASH_GT] = ACTIONS(5456), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5454), + [anon_sym_decltype] = ACTIONS(5454), + }, + [STATE(2757)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2768), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4737), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_DASH] = ACTIONS(4735), + [anon_sym_PLUS] = ACTIONS(4735), + [anon_sym_STAR] = ACTIONS(4737), + [anon_sym_SLASH] = ACTIONS(4735), + [anon_sym_PERCENT] = ACTIONS(4737), + [anon_sym_PIPE_PIPE] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_PIPE] = ACTIONS(4735), + [anon_sym_CARET] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_EQ_EQ] = ACTIONS(4737), + [anon_sym_BANG_EQ] = ACTIONS(4737), + [anon_sym_GT] = ACTIONS(4735), + [anon_sym_GT_EQ] = ACTIONS(4735), + [anon_sym_LT_EQ] = ACTIONS(4735), + [anon_sym_LT] = ACTIONS(4735), + [anon_sym_LT_LT] = ACTIONS(4737), + [anon_sym_GT_GT] = ACTIONS(4735), + [anon_sym___extension__] = ACTIONS(4737), + [anon_sym___attribute__] = ACTIONS(4737), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4737), + [anon_sym_signed] = ACTIONS(6961), + [anon_sym_unsigned] = ACTIONS(6961), + [anon_sym_long] = ACTIONS(6961), + [anon_sym_short] = ACTIONS(6961), + [anon_sym_LBRACK] = ACTIONS(4737), + [anon_sym_const] = ACTIONS(4735), + [anon_sym_constexpr] = ACTIONS(4737), + [anon_sym_volatile] = ACTIONS(4737), + [anon_sym_restrict] = ACTIONS(4737), + [anon_sym___restrict__] = ACTIONS(4737), + [anon_sym__Atomic] = ACTIONS(4737), + [anon_sym__Noreturn] = ACTIONS(4737), + [anon_sym_noreturn] = ACTIONS(4737), + [anon_sym__Nonnull] = ACTIONS(4737), + [anon_sym_mutable] = ACTIONS(4737), + [anon_sym_constinit] = ACTIONS(4737), + [anon_sym_consteval] = ACTIONS(4737), + [anon_sym_alignas] = ACTIONS(4737), + [anon_sym__Alignas] = ACTIONS(4737), + [anon_sym_QMARK] = ACTIONS(4737), + [anon_sym_LT_EQ_GT] = ACTIONS(4737), + [anon_sym_or] = ACTIONS(4737), + [anon_sym_and] = ACTIONS(4737), + [anon_sym_bitor] = ACTIONS(4737), + [anon_sym_xor] = ACTIONS(4737), + [anon_sym_bitand] = ACTIONS(4737), + [anon_sym_not_eq] = ACTIONS(4737), + [anon_sym_DASH_DASH] = ACTIONS(4737), + [anon_sym_PLUS_PLUS] = ACTIONS(4737), + [anon_sym_DOT] = ACTIONS(4735), + [anon_sym_DOT_STAR] = ACTIONS(4737), + [anon_sym_DASH_GT] = ACTIONS(4737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4737), + [anon_sym_decltype] = ACTIONS(4737), + [anon_sym_final] = ACTIONS(4737), + [anon_sym_override] = ACTIONS(4737), + [anon_sym_GT2] = ACTIONS(4737), + [anon_sym_requires] = ACTIONS(4737), + }, + [STATE(2758)] = { + [sym_attribute_specifier] = STATE(2466), + [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(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(5502), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6673), + [anon_sym_LBRACE] = ACTIONS(5502), + [anon_sym_RBRACE] = ACTIONS(5502), + [anon_sym_LBRACK] = ACTIONS(5502), + [anon_sym_RBRACK] = ACTIONS(5502), + [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__Nonnull] = ACTIONS(5502), + [anon_sym_mutable] = ACTIONS(5502), + [anon_sym_constinit] = ACTIONS(5502), + [anon_sym_consteval] = ACTIONS(5502), + [anon_sym_alignas] = ACTIONS(5502), + [anon_sym__Alignas] = ACTIONS(5502), + [anon_sym_COLON] = ACTIONS(5502), + [anon_sym_QMARK] = ACTIONS(5502), + [anon_sym_LT_EQ_GT] = ACTIONS(5502), + [anon_sym_or] = ACTIONS(5502), + [anon_sym_and] = ACTIONS(5502), + [anon_sym_bitor] = ACTIONS(5502), + [anon_sym_xor] = ACTIONS(5502), + [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_requires] = ACTIONS(5502), + }, + [STATE(2759)] = { + [sym_attribute_specifier] = STATE(2526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5514), + [anon_sym_COMMA] = ACTIONS(5514), + [anon_sym_RPAREN] = ACTIONS(5514), + [anon_sym_LPAREN2] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5512), + [anon_sym_STAR] = ACTIONS(5514), + [anon_sym_SLASH] = ACTIONS(5512), + [anon_sym_PERCENT] = ACTIONS(5514), + [anon_sym_PIPE_PIPE] = ACTIONS(5514), + [anon_sym_AMP_AMP] = ACTIONS(5514), + [anon_sym_PIPE] = ACTIONS(5512), + [anon_sym_CARET] = ACTIONS(5514), + [anon_sym_AMP] = ACTIONS(5512), + [anon_sym_EQ_EQ] = ACTIONS(5514), + [anon_sym_BANG_EQ] = ACTIONS(5514), + [anon_sym_GT] = ACTIONS(5512), + [anon_sym_GT_EQ] = ACTIONS(5514), + [anon_sym_LT_EQ] = ACTIONS(5512), + [anon_sym_LT] = ACTIONS(5512), + [anon_sym_LT_LT] = ACTIONS(5514), + [anon_sym_GT_GT] = ACTIONS(5514), + [anon_sym_SEMI] = ACTIONS(5514), + [anon_sym___extension__] = ACTIONS(5514), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6673), + [anon_sym_LBRACE] = ACTIONS(5514), + [anon_sym_RBRACE] = ACTIONS(5514), + [anon_sym_LBRACK] = ACTIONS(5514), + [anon_sym_RBRACK] = ACTIONS(5514), + [anon_sym_const] = ACTIONS(5512), + [anon_sym_constexpr] = ACTIONS(5514), + [anon_sym_volatile] = ACTIONS(5514), + [anon_sym_restrict] = ACTIONS(5514), + [anon_sym___restrict__] = ACTIONS(5514), + [anon_sym__Atomic] = ACTIONS(5514), + [anon_sym__Noreturn] = ACTIONS(5514), + [anon_sym_noreturn] = ACTIONS(5514), + [anon_sym__Nonnull] = ACTIONS(5514), + [anon_sym_mutable] = ACTIONS(5514), + [anon_sym_constinit] = ACTIONS(5514), + [anon_sym_consteval] = ACTIONS(5514), + [anon_sym_alignas] = ACTIONS(5514), + [anon_sym__Alignas] = ACTIONS(5514), + [anon_sym_COLON] = ACTIONS(5514), + [anon_sym_QMARK] = ACTIONS(5514), + [anon_sym_LT_EQ_GT] = ACTIONS(5514), + [anon_sym_or] = ACTIONS(5514), + [anon_sym_and] = ACTIONS(5514), + [anon_sym_bitor] = ACTIONS(5514), + [anon_sym_xor] = ACTIONS(5514), + [anon_sym_bitand] = ACTIONS(5514), + [anon_sym_not_eq] = ACTIONS(5514), + [anon_sym_DASH_DASH] = ACTIONS(5514), + [anon_sym_PLUS_PLUS] = ACTIONS(5514), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_DOT_STAR] = ACTIONS(5514), + [anon_sym_DASH_GT] = ACTIONS(5514), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5514), + [anon_sym_decltype] = ACTIONS(5514), + [anon_sym_final] = ACTIONS(5514), + [anon_sym_override] = ACTIONS(5514), + [anon_sym_requires] = ACTIONS(5514), + }, + [STATE(2760)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5192), + [anon_sym_COMMA] = ACTIONS(5192), + [anon_sym_LPAREN2] = ACTIONS(5192), + [anon_sym_DASH] = ACTIONS(5190), + [anon_sym_PLUS] = ACTIONS(5190), + [anon_sym_STAR] = ACTIONS(5192), + [anon_sym_SLASH] = ACTIONS(5190), + [anon_sym_PERCENT] = ACTIONS(5192), + [anon_sym_PIPE_PIPE] = ACTIONS(5192), + [anon_sym_AMP_AMP] = ACTIONS(5192), + [anon_sym_PIPE] = ACTIONS(5190), + [anon_sym_CARET] = ACTIONS(5192), + [anon_sym_AMP] = ACTIONS(5190), + [anon_sym_EQ_EQ] = ACTIONS(5192), + [anon_sym_BANG_EQ] = ACTIONS(5192), + [anon_sym_GT] = ACTIONS(5190), + [anon_sym_GT_EQ] = ACTIONS(5190), + [anon_sym_LT_EQ] = ACTIONS(5190), + [anon_sym_LT] = ACTIONS(5190), + [anon_sym_LT_LT] = ACTIONS(5192), + [anon_sym_GT_GT] = ACTIONS(5190), + [anon_sym___extension__] = ACTIONS(5192), + [anon_sym___attribute__] = ACTIONS(5192), + [anon_sym___attribute] = ACTIONS(5190), + [anon_sym_LBRACE] = ACTIONS(5192), + [anon_sym_signed] = ACTIONS(6951), + [anon_sym_unsigned] = ACTIONS(6951), + [anon_sym_long] = ACTIONS(6951), + [anon_sym_short] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(5192), + [anon_sym_const] = ACTIONS(5190), + [anon_sym_constexpr] = ACTIONS(5192), + [anon_sym_volatile] = ACTIONS(5192), + [anon_sym_restrict] = ACTIONS(5192), + [anon_sym___restrict__] = ACTIONS(5192), + [anon_sym__Atomic] = ACTIONS(5192), + [anon_sym__Noreturn] = ACTIONS(5192), + [anon_sym_noreturn] = ACTIONS(5192), + [anon_sym__Nonnull] = ACTIONS(5192), + [anon_sym_mutable] = ACTIONS(5192), + [anon_sym_constinit] = ACTIONS(5192), + [anon_sym_consteval] = ACTIONS(5192), + [anon_sym_alignas] = ACTIONS(5192), + [anon_sym__Alignas] = ACTIONS(5192), + [anon_sym_QMARK] = ACTIONS(5192), + [anon_sym_LT_EQ_GT] = ACTIONS(5192), + [anon_sym_or] = ACTIONS(5192), + [anon_sym_and] = ACTIONS(5192), + [anon_sym_bitor] = ACTIONS(5192), + [anon_sym_xor] = ACTIONS(5192), + [anon_sym_bitand] = ACTIONS(5192), + [anon_sym_not_eq] = ACTIONS(5192), + [anon_sym_DASH_DASH] = ACTIONS(5192), + [anon_sym_PLUS_PLUS] = ACTIONS(5192), + [anon_sym_DOT] = ACTIONS(5190), + [anon_sym_DOT_STAR] = ACTIONS(5192), + [anon_sym_DASH_GT] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5192), + [anon_sym_decltype] = ACTIONS(5192), + [anon_sym_final] = ACTIONS(5192), + [anon_sym_override] = ACTIONS(5192), + [anon_sym_GT2] = ACTIONS(5192), + [anon_sym_requires] = ACTIONS(5192), + }, + [STATE(2761)] = { + [sym_attribute_specifier] = STATE(2532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5464), + [anon_sym_COMMA] = ACTIONS(5464), + [anon_sym_RPAREN] = ACTIONS(5464), + [anon_sym_LPAREN2] = ACTIONS(5464), + [anon_sym_DASH] = ACTIONS(5462), + [anon_sym_PLUS] = ACTIONS(5462), + [anon_sym_STAR] = ACTIONS(5464), + [anon_sym_SLASH] = ACTIONS(5462), + [anon_sym_PERCENT] = ACTIONS(5464), + [anon_sym_PIPE_PIPE] = ACTIONS(5464), + [anon_sym_AMP_AMP] = ACTIONS(5464), + [anon_sym_PIPE] = ACTIONS(5462), + [anon_sym_CARET] = ACTIONS(5464), + [anon_sym_AMP] = ACTIONS(5462), + [anon_sym_EQ_EQ] = ACTIONS(5464), + [anon_sym_BANG_EQ] = ACTIONS(5464), + [anon_sym_GT] = ACTIONS(5462), + [anon_sym_GT_EQ] = ACTIONS(5464), + [anon_sym_LT_EQ] = ACTIONS(5462), + [anon_sym_LT] = ACTIONS(5462), + [anon_sym_LT_LT] = ACTIONS(5464), + [anon_sym_GT_GT] = ACTIONS(5464), + [anon_sym_SEMI] = ACTIONS(5464), + [anon_sym___extension__] = ACTIONS(5464), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6673), + [anon_sym_LBRACE] = ACTIONS(5464), + [anon_sym_RBRACE] = ACTIONS(5464), + [anon_sym_LBRACK] = ACTIONS(5464), + [anon_sym_RBRACK] = ACTIONS(5464), + [anon_sym_const] = ACTIONS(5462), + [anon_sym_constexpr] = ACTIONS(5464), + [anon_sym_volatile] = ACTIONS(5464), + [anon_sym_restrict] = ACTIONS(5464), + [anon_sym___restrict__] = ACTIONS(5464), + [anon_sym__Atomic] = ACTIONS(5464), + [anon_sym__Noreturn] = ACTIONS(5464), + [anon_sym_noreturn] = ACTIONS(5464), + [anon_sym__Nonnull] = ACTIONS(5464), + [anon_sym_mutable] = ACTIONS(5464), + [anon_sym_constinit] = ACTIONS(5464), + [anon_sym_consteval] = ACTIONS(5464), + [anon_sym_alignas] = ACTIONS(5464), + [anon_sym__Alignas] = ACTIONS(5464), + [anon_sym_COLON] = ACTIONS(5464), + [anon_sym_QMARK] = ACTIONS(5464), + [anon_sym_LT_EQ_GT] = ACTIONS(5464), + [anon_sym_or] = ACTIONS(5464), + [anon_sym_and] = ACTIONS(5464), + [anon_sym_bitor] = ACTIONS(5464), + [anon_sym_xor] = ACTIONS(5464), + [anon_sym_bitand] = ACTIONS(5464), + [anon_sym_not_eq] = ACTIONS(5464), + [anon_sym_DASH_DASH] = ACTIONS(5464), + [anon_sym_PLUS_PLUS] = ACTIONS(5464), + [anon_sym_DOT] = ACTIONS(5462), + [anon_sym_DOT_STAR] = ACTIONS(5464), + [anon_sym_DASH_GT] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5464), + [anon_sym_decltype] = ACTIONS(5464), + [anon_sym_final] = ACTIONS(5464), + [anon_sym_override] = ACTIONS(5464), + [anon_sym_requires] = ACTIONS(5464), + }, + [STATE(2762)] = { + [sym_attribute_specifier] = STATE(2469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5486), + [anon_sym_COMMA] = ACTIONS(5486), + [anon_sym_RPAREN] = ACTIONS(5486), + [anon_sym_LPAREN2] = ACTIONS(5486), + [anon_sym_DASH] = ACTIONS(5484), + [anon_sym_PLUS] = ACTIONS(5484), + [anon_sym_STAR] = ACTIONS(5486), + [anon_sym_SLASH] = ACTIONS(5484), + [anon_sym_PERCENT] = ACTIONS(5486), + [anon_sym_PIPE_PIPE] = ACTIONS(5486), + [anon_sym_AMP_AMP] = ACTIONS(5486), + [anon_sym_PIPE] = ACTIONS(5484), + [anon_sym_CARET] = ACTIONS(5486), + [anon_sym_AMP] = ACTIONS(5484), + [anon_sym_EQ_EQ] = ACTIONS(5486), + [anon_sym_BANG_EQ] = ACTIONS(5486), + [anon_sym_GT] = ACTIONS(5484), + [anon_sym_GT_EQ] = ACTIONS(5486), + [anon_sym_LT_EQ] = ACTIONS(5484), + [anon_sym_LT] = ACTIONS(5484), + [anon_sym_LT_LT] = ACTIONS(5486), + [anon_sym_GT_GT] = ACTIONS(5486), + [anon_sym_SEMI] = ACTIONS(5486), + [anon_sym___extension__] = ACTIONS(5486), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6673), + [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_RBRACE] = ACTIONS(5486), + [anon_sym_LBRACK] = ACTIONS(5486), + [anon_sym_RBRACK] = ACTIONS(5486), + [anon_sym_const] = ACTIONS(5484), + [anon_sym_constexpr] = ACTIONS(5486), + [anon_sym_volatile] = ACTIONS(5486), + [anon_sym_restrict] = ACTIONS(5486), + [anon_sym___restrict__] = ACTIONS(5486), + [anon_sym__Atomic] = ACTIONS(5486), + [anon_sym__Noreturn] = ACTIONS(5486), + [anon_sym_noreturn] = ACTIONS(5486), + [anon_sym__Nonnull] = ACTIONS(5486), + [anon_sym_mutable] = ACTIONS(5486), + [anon_sym_constinit] = ACTIONS(5486), + [anon_sym_consteval] = ACTIONS(5486), + [anon_sym_alignas] = ACTIONS(5486), + [anon_sym__Alignas] = ACTIONS(5486), + [anon_sym_COLON] = ACTIONS(5486), + [anon_sym_QMARK] = ACTIONS(5486), + [anon_sym_LT_EQ_GT] = ACTIONS(5486), + [anon_sym_or] = ACTIONS(5486), + [anon_sym_and] = ACTIONS(5486), + [anon_sym_bitor] = ACTIONS(5486), + [anon_sym_xor] = ACTIONS(5486), + [anon_sym_bitand] = ACTIONS(5486), + [anon_sym_not_eq] = ACTIONS(5486), + [anon_sym_DASH_DASH] = ACTIONS(5486), + [anon_sym_PLUS_PLUS] = ACTIONS(5486), + [anon_sym_DOT] = ACTIONS(5484), + [anon_sym_DOT_STAR] = ACTIONS(5486), + [anon_sym_DASH_GT] = ACTIONS(5486), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5486), + [anon_sym_decltype] = ACTIONS(5486), + [anon_sym_final] = ACTIONS(5486), + [anon_sym_override] = ACTIONS(5486), + [anon_sym_requires] = ACTIONS(5486), + }, + [STATE(2763)] = { + [sym_template_argument_list] = STATE(2770), + [sym_identifier] = ACTIONS(6963), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6965), + [anon_sym_COMMA] = ACTIONS(6965), + [anon_sym_RPAREN] = ACTIONS(6965), + [aux_sym_preproc_if_token2] = ACTIONS(6965), + [aux_sym_preproc_else_token1] = ACTIONS(6965), + [aux_sym_preproc_elif_token1] = ACTIONS(6963), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6965), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6965), + [anon_sym_LPAREN2] = ACTIONS(6965), + [anon_sym_DASH] = ACTIONS(6963), + [anon_sym_PLUS] = ACTIONS(6963), + [anon_sym_STAR] = ACTIONS(6963), + [anon_sym_SLASH] = ACTIONS(6963), + [anon_sym_PERCENT] = ACTIONS(6963), + [anon_sym_PIPE_PIPE] = ACTIONS(6965), + [anon_sym_AMP_AMP] = ACTIONS(6965), + [anon_sym_PIPE] = ACTIONS(6963), + [anon_sym_CARET] = ACTIONS(6963), + [anon_sym_AMP] = ACTIONS(6963), + [anon_sym_EQ_EQ] = ACTIONS(6965), + [anon_sym_BANG_EQ] = ACTIONS(6965), + [anon_sym_GT] = ACTIONS(6963), + [anon_sym_GT_EQ] = ACTIONS(6965), + [anon_sym_LT_EQ] = ACTIONS(6963), + [anon_sym_LT] = ACTIONS(6967), + [anon_sym_LT_LT] = ACTIONS(6963), + [anon_sym_GT_GT] = ACTIONS(6963), + [anon_sym_SEMI] = ACTIONS(6965), + [anon_sym___attribute__] = ACTIONS(6963), + [anon_sym___attribute] = ACTIONS(6963), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_RBRACE] = ACTIONS(6965), + [anon_sym_LBRACK] = ACTIONS(6965), + [anon_sym_RBRACK] = ACTIONS(6965), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_COLON] = ACTIONS(6963), + [anon_sym_QMARK] = ACTIONS(6965), + [anon_sym_STAR_EQ] = ACTIONS(6965), + [anon_sym_SLASH_EQ] = ACTIONS(6965), + [anon_sym_PERCENT_EQ] = ACTIONS(6965), + [anon_sym_PLUS_EQ] = ACTIONS(6965), + [anon_sym_DASH_EQ] = ACTIONS(6965), + [anon_sym_LT_LT_EQ] = ACTIONS(6965), + [anon_sym_GT_GT_EQ] = ACTIONS(6965), + [anon_sym_AMP_EQ] = ACTIONS(6965), + [anon_sym_CARET_EQ] = ACTIONS(6965), + [anon_sym_PIPE_EQ] = ACTIONS(6965), + [anon_sym_and_eq] = ACTIONS(6963), + [anon_sym_or_eq] = ACTIONS(6963), + [anon_sym_xor_eq] = ACTIONS(6963), + [anon_sym_LT_EQ_GT] = ACTIONS(6965), + [anon_sym_or] = ACTIONS(6963), + [anon_sym_and] = ACTIONS(6963), + [anon_sym_bitor] = ACTIONS(6963), + [anon_sym_xor] = ACTIONS(6963), + [anon_sym_bitand] = ACTIONS(6963), + [anon_sym_not_eq] = ACTIONS(6963), + [anon_sym_DASH_DASH] = ACTIONS(6965), + [anon_sym_PLUS_PLUS] = ACTIONS(6965), + [anon_sym_DOT] = ACTIONS(6963), + [anon_sym_DOT_STAR] = ACTIONS(6965), + [anon_sym_DASH_GT] = ACTIONS(6965), + [sym_comment] = ACTIONS(3), + }, + [STATE(2764)] = { + [sym_attribute_specifier] = STATE(2524), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5448), + [anon_sym_COMMA] = ACTIONS(5448), + [anon_sym_RPAREN] = ACTIONS(5448), + [anon_sym_LPAREN2] = ACTIONS(5448), + [anon_sym_DASH] = ACTIONS(5446), + [anon_sym_PLUS] = ACTIONS(5446), + [anon_sym_STAR] = ACTIONS(5448), + [anon_sym_SLASH] = ACTIONS(5446), + [anon_sym_PERCENT] = ACTIONS(5448), + [anon_sym_PIPE_PIPE] = ACTIONS(5448), + [anon_sym_AMP_AMP] = ACTIONS(5448), + [anon_sym_PIPE] = ACTIONS(5446), + [anon_sym_CARET] = ACTIONS(5448), + [anon_sym_AMP] = ACTIONS(5446), + [anon_sym_EQ_EQ] = ACTIONS(5448), + [anon_sym_BANG_EQ] = ACTIONS(5448), + [anon_sym_GT] = ACTIONS(5446), + [anon_sym_GT_EQ] = ACTIONS(5448), + [anon_sym_LT_EQ] = ACTIONS(5446), + [anon_sym_LT] = ACTIONS(5446), + [anon_sym_LT_LT] = ACTIONS(5448), + [anon_sym_GT_GT] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(5448), + [anon_sym___extension__] = ACTIONS(5448), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6673), + [anon_sym_LBRACE] = ACTIONS(5448), + [anon_sym_RBRACE] = ACTIONS(5448), + [anon_sym_LBRACK] = ACTIONS(5448), + [anon_sym_RBRACK] = ACTIONS(5448), + [anon_sym_const] = ACTIONS(5446), + [anon_sym_constexpr] = ACTIONS(5448), + [anon_sym_volatile] = ACTIONS(5448), + [anon_sym_restrict] = ACTIONS(5448), + [anon_sym___restrict__] = ACTIONS(5448), + [anon_sym__Atomic] = ACTIONS(5448), + [anon_sym__Noreturn] = ACTIONS(5448), + [anon_sym_noreturn] = ACTIONS(5448), + [anon_sym__Nonnull] = ACTIONS(5448), + [anon_sym_mutable] = ACTIONS(5448), + [anon_sym_constinit] = ACTIONS(5448), + [anon_sym_consteval] = ACTIONS(5448), + [anon_sym_alignas] = ACTIONS(5448), + [anon_sym__Alignas] = ACTIONS(5448), + [anon_sym_COLON] = ACTIONS(5448), + [anon_sym_QMARK] = ACTIONS(5448), + [anon_sym_LT_EQ_GT] = ACTIONS(5448), + [anon_sym_or] = ACTIONS(5448), + [anon_sym_and] = ACTIONS(5448), + [anon_sym_bitor] = ACTIONS(5448), + [anon_sym_xor] = ACTIONS(5448), + [anon_sym_bitand] = ACTIONS(5448), + [anon_sym_not_eq] = ACTIONS(5448), + [anon_sym_DASH_DASH] = ACTIONS(5448), + [anon_sym_PLUS_PLUS] = ACTIONS(5448), + [anon_sym_DOT] = ACTIONS(5446), + [anon_sym_DOT_STAR] = ACTIONS(5448), + [anon_sym_DASH_GT] = ACTIONS(5448), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5448), + [anon_sym_decltype] = ACTIONS(5448), + [anon_sym_final] = ACTIONS(5448), + [anon_sym_override] = ACTIONS(5448), + [anon_sym_requires] = ACTIONS(5448), + }, + [STATE(2765)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5154), + [anon_sym_COMMA] = ACTIONS(5154), + [anon_sym_RPAREN] = ACTIONS(5154), + [anon_sym_LPAREN2] = ACTIONS(5154), + [anon_sym_DASH] = ACTIONS(5152), + [anon_sym_PLUS] = ACTIONS(5152), + [anon_sym_STAR] = ACTIONS(5152), + [anon_sym_SLASH] = ACTIONS(5152), + [anon_sym_PERCENT] = ACTIONS(5152), + [anon_sym_PIPE_PIPE] = ACTIONS(5154), + [anon_sym_AMP_AMP] = ACTIONS(5154), + [anon_sym_PIPE] = ACTIONS(5152), + [anon_sym_CARET] = ACTIONS(5152), + [anon_sym_AMP] = ACTIONS(5152), + [anon_sym_EQ_EQ] = ACTIONS(5154), + [anon_sym_BANG_EQ] = ACTIONS(5154), + [anon_sym_GT] = ACTIONS(5152), + [anon_sym_GT_EQ] = ACTIONS(5154), + [anon_sym_LT_EQ] = ACTIONS(5152), + [anon_sym_LT] = ACTIONS(5152), + [anon_sym_LT_LT] = ACTIONS(5152), + [anon_sym_GT_GT] = ACTIONS(5152), + [anon_sym_SEMI] = ACTIONS(5154), + [anon_sym___attribute__] = ACTIONS(5154), + [anon_sym___attribute] = ACTIONS(5152), + [anon_sym_LBRACE] = ACTIONS(5154), + [anon_sym_RBRACE] = ACTIONS(5154), + [anon_sym_signed] = ACTIONS(6945), + [anon_sym_unsigned] = ACTIONS(6945), + [anon_sym_long] = ACTIONS(6945), + [anon_sym_short] = ACTIONS(6945), + [anon_sym_LBRACK] = ACTIONS(5154), + [anon_sym_RBRACK] = ACTIONS(5154), + [anon_sym_EQ] = ACTIONS(5152), + [anon_sym_COLON] = ACTIONS(5154), + [anon_sym_QMARK] = ACTIONS(5154), + [anon_sym_STAR_EQ] = ACTIONS(5154), + [anon_sym_SLASH_EQ] = ACTIONS(5154), + [anon_sym_PERCENT_EQ] = ACTIONS(5154), + [anon_sym_PLUS_EQ] = ACTIONS(5154), + [anon_sym_DASH_EQ] = ACTIONS(5154), + [anon_sym_LT_LT_EQ] = ACTIONS(5154), + [anon_sym_GT_GT_EQ] = ACTIONS(5154), + [anon_sym_AMP_EQ] = ACTIONS(5154), + [anon_sym_CARET_EQ] = ACTIONS(5154), + [anon_sym_PIPE_EQ] = ACTIONS(5154), + [anon_sym_and_eq] = ACTIONS(5154), + [anon_sym_or_eq] = ACTIONS(5154), + [anon_sym_xor_eq] = ACTIONS(5154), + [anon_sym_LT_EQ_GT] = ACTIONS(5154), + [anon_sym_or] = ACTIONS(5152), + [anon_sym_and] = ACTIONS(5152), + [anon_sym_bitor] = ACTIONS(5154), + [anon_sym_xor] = ACTIONS(5152), + [anon_sym_bitand] = ACTIONS(5154), + [anon_sym_not_eq] = ACTIONS(5154), + [anon_sym_DASH_DASH] = ACTIONS(5154), + [anon_sym_PLUS_PLUS] = ACTIONS(5154), + [anon_sym_DOT] = ACTIONS(5152), + [anon_sym_DOT_STAR] = ACTIONS(5154), + [anon_sym_DASH_GT] = ACTIONS(5154), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5154), + [anon_sym_decltype] = ACTIONS(5154), + }, + [STATE(2766)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5166), + [anon_sym_COMMA] = ACTIONS(5166), + [anon_sym_RPAREN] = ACTIONS(5166), + [anon_sym_LPAREN2] = ACTIONS(5166), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5164), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_PERCENT] = ACTIONS(5164), + [anon_sym_PIPE_PIPE] = ACTIONS(5166), + [anon_sym_AMP_AMP] = ACTIONS(5166), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_CARET] = ACTIONS(5164), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_EQ_EQ] = ACTIONS(5166), + [anon_sym_BANG_EQ] = ACTIONS(5166), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_GT_EQ] = ACTIONS(5166), + [anon_sym_LT_EQ] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_LT_LT] = ACTIONS(5164), + [anon_sym_GT_GT] = ACTIONS(5164), + [anon_sym_SEMI] = ACTIONS(5166), + [anon_sym___attribute__] = ACTIONS(5166), + [anon_sym___attribute] = ACTIONS(5164), + [anon_sym_LBRACE] = ACTIONS(5166), + [anon_sym_RBRACE] = ACTIONS(5166), + [anon_sym_signed] = ACTIONS(6945), + [anon_sym_unsigned] = ACTIONS(6945), + [anon_sym_long] = ACTIONS(6945), + [anon_sym_short] = ACTIONS(6945), + [anon_sym_LBRACK] = ACTIONS(5166), + [anon_sym_RBRACK] = ACTIONS(5166), + [anon_sym_EQ] = ACTIONS(5164), + [anon_sym_COLON] = ACTIONS(5166), + [anon_sym_QMARK] = ACTIONS(5166), + [anon_sym_STAR_EQ] = ACTIONS(5166), + [anon_sym_SLASH_EQ] = ACTIONS(5166), + [anon_sym_PERCENT_EQ] = ACTIONS(5166), + [anon_sym_PLUS_EQ] = ACTIONS(5166), + [anon_sym_DASH_EQ] = ACTIONS(5166), + [anon_sym_LT_LT_EQ] = ACTIONS(5166), + [anon_sym_GT_GT_EQ] = ACTIONS(5166), + [anon_sym_AMP_EQ] = ACTIONS(5166), + [anon_sym_CARET_EQ] = ACTIONS(5166), + [anon_sym_PIPE_EQ] = ACTIONS(5166), + [anon_sym_and_eq] = ACTIONS(5166), + [anon_sym_or_eq] = ACTIONS(5166), + [anon_sym_xor_eq] = ACTIONS(5166), + [anon_sym_LT_EQ_GT] = ACTIONS(5166), + [anon_sym_or] = ACTIONS(5164), + [anon_sym_and] = ACTIONS(5164), + [anon_sym_bitor] = ACTIONS(5166), + [anon_sym_xor] = ACTIONS(5164), + [anon_sym_bitand] = ACTIONS(5166), + [anon_sym_not_eq] = ACTIONS(5166), + [anon_sym_DASH_DASH] = ACTIONS(5166), + [anon_sym_PLUS_PLUS] = ACTIONS(5166), + [anon_sym_DOT] = ACTIONS(5164), + [anon_sym_DOT_STAR] = ACTIONS(5166), + [anon_sym_DASH_GT] = ACTIONS(5166), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5166), + [anon_sym_decltype] = ACTIONS(5166), + }, + [STATE(2767)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5158), + [anon_sym_COMMA] = ACTIONS(5158), + [anon_sym_RPAREN] = ACTIONS(5158), + [anon_sym_LPAREN2] = ACTIONS(5158), + [anon_sym_DASH] = ACTIONS(5156), + [anon_sym_PLUS] = ACTIONS(5156), + [anon_sym_STAR] = ACTIONS(5156), + [anon_sym_SLASH] = ACTIONS(5156), + [anon_sym_PERCENT] = ACTIONS(5156), + [anon_sym_PIPE_PIPE] = ACTIONS(5158), + [anon_sym_AMP_AMP] = ACTIONS(5158), + [anon_sym_PIPE] = ACTIONS(5156), + [anon_sym_CARET] = ACTIONS(5156), + [anon_sym_AMP] = ACTIONS(5156), + [anon_sym_EQ_EQ] = ACTIONS(5158), + [anon_sym_BANG_EQ] = ACTIONS(5158), + [anon_sym_GT] = ACTIONS(5156), + [anon_sym_GT_EQ] = ACTIONS(5158), + [anon_sym_LT_EQ] = ACTIONS(5156), + [anon_sym_LT] = ACTIONS(5156), + [anon_sym_LT_LT] = ACTIONS(5156), + [anon_sym_GT_GT] = ACTIONS(5156), + [anon_sym_SEMI] = ACTIONS(5158), + [anon_sym___attribute__] = ACTIONS(5158), + [anon_sym___attribute] = ACTIONS(5156), + [anon_sym_LBRACE] = ACTIONS(5158), + [anon_sym_RBRACE] = ACTIONS(5158), + [anon_sym_signed] = ACTIONS(6945), + [anon_sym_unsigned] = ACTIONS(6945), + [anon_sym_long] = ACTIONS(6945), + [anon_sym_short] = ACTIONS(6945), + [anon_sym_LBRACK] = ACTIONS(5158), + [anon_sym_RBRACK] = ACTIONS(5158), + [anon_sym_EQ] = ACTIONS(5156), + [anon_sym_COLON] = ACTIONS(5158), + [anon_sym_QMARK] = ACTIONS(5158), + [anon_sym_STAR_EQ] = ACTIONS(5158), + [anon_sym_SLASH_EQ] = ACTIONS(5158), + [anon_sym_PERCENT_EQ] = ACTIONS(5158), + [anon_sym_PLUS_EQ] = ACTIONS(5158), + [anon_sym_DASH_EQ] = ACTIONS(5158), + [anon_sym_LT_LT_EQ] = ACTIONS(5158), + [anon_sym_GT_GT_EQ] = ACTIONS(5158), + [anon_sym_AMP_EQ] = ACTIONS(5158), + [anon_sym_CARET_EQ] = ACTIONS(5158), + [anon_sym_PIPE_EQ] = ACTIONS(5158), + [anon_sym_and_eq] = ACTIONS(5158), + [anon_sym_or_eq] = ACTIONS(5158), + [anon_sym_xor_eq] = ACTIONS(5158), + [anon_sym_LT_EQ_GT] = ACTIONS(5158), + [anon_sym_or] = ACTIONS(5156), + [anon_sym_and] = ACTIONS(5156), + [anon_sym_bitor] = ACTIONS(5158), + [anon_sym_xor] = ACTIONS(5156), + [anon_sym_bitand] = ACTIONS(5158), + [anon_sym_not_eq] = ACTIONS(5158), + [anon_sym_DASH_DASH] = ACTIONS(5158), + [anon_sym_PLUS_PLUS] = ACTIONS(5158), + [anon_sym_DOT] = ACTIONS(5156), + [anon_sym_DOT_STAR] = ACTIONS(5158), + [anon_sym_DASH_GT] = ACTIONS(5158), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5158), + [anon_sym_decltype] = ACTIONS(5158), + }, + [STATE(2768)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5145), + [anon_sym_COMMA] = ACTIONS(5145), + [anon_sym_LPAREN2] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5143), + [anon_sym_PLUS] = ACTIONS(5143), + [anon_sym_STAR] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5143), + [anon_sym_PERCENT] = ACTIONS(5145), + [anon_sym_PIPE_PIPE] = ACTIONS(5145), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_PIPE] = ACTIONS(5143), + [anon_sym_CARET] = ACTIONS(5145), + [anon_sym_AMP] = ACTIONS(5143), + [anon_sym_EQ_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5143), + [anon_sym_GT_EQ] = ACTIONS(5143), + [anon_sym_LT_EQ] = ACTIONS(5143), + [anon_sym_LT] = ACTIONS(5143), + [anon_sym_LT_LT] = ACTIONS(5145), + [anon_sym_GT_GT] = ACTIONS(5143), + [anon_sym___extension__] = ACTIONS(5145), + [anon_sym___attribute__] = ACTIONS(5145), + [anon_sym___attribute] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_signed] = ACTIONS(6951), + [anon_sym_unsigned] = ACTIONS(6951), + [anon_sym_long] = ACTIONS(6951), + [anon_sym_short] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(5145), + [anon_sym_const] = ACTIONS(5143), + [anon_sym_constexpr] = ACTIONS(5145), + [anon_sym_volatile] = ACTIONS(5145), + [anon_sym_restrict] = ACTIONS(5145), + [anon_sym___restrict__] = ACTIONS(5145), + [anon_sym__Atomic] = ACTIONS(5145), + [anon_sym__Noreturn] = ACTIONS(5145), + [anon_sym_noreturn] = ACTIONS(5145), + [anon_sym__Nonnull] = ACTIONS(5145), + [anon_sym_mutable] = ACTIONS(5145), + [anon_sym_constinit] = ACTIONS(5145), + [anon_sym_consteval] = ACTIONS(5145), + [anon_sym_alignas] = ACTIONS(5145), + [anon_sym__Alignas] = ACTIONS(5145), + [anon_sym_QMARK] = ACTIONS(5145), + [anon_sym_LT_EQ_GT] = ACTIONS(5145), + [anon_sym_or] = ACTIONS(5145), + [anon_sym_and] = ACTIONS(5145), + [anon_sym_bitor] = ACTIONS(5145), + [anon_sym_xor] = ACTIONS(5145), + [anon_sym_bitand] = ACTIONS(5145), + [anon_sym_not_eq] = ACTIONS(5145), + [anon_sym_DASH_DASH] = ACTIONS(5145), + [anon_sym_PLUS_PLUS] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5143), + [anon_sym_DOT_STAR] = ACTIONS(5145), + [anon_sym_DASH_GT] = ACTIONS(5145), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5145), + [anon_sym_decltype] = ACTIONS(5145), + [anon_sym_final] = ACTIONS(5145), + [anon_sym_override] = ACTIONS(5145), + [anon_sym_GT2] = ACTIONS(5145), + [anon_sym_requires] = ACTIONS(5145), + }, + [STATE(2769)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5196), + [anon_sym_COMMA] = ACTIONS(5196), + [anon_sym_RPAREN] = ACTIONS(5196), + [anon_sym_LPAREN2] = ACTIONS(5196), + [anon_sym_DASH] = ACTIONS(5194), + [anon_sym_PLUS] = ACTIONS(5194), + [anon_sym_STAR] = ACTIONS(5194), + [anon_sym_SLASH] = ACTIONS(5194), + [anon_sym_PERCENT] = ACTIONS(5194), + [anon_sym_PIPE_PIPE] = ACTIONS(5196), + [anon_sym_AMP_AMP] = ACTIONS(5196), + [anon_sym_PIPE] = ACTIONS(5194), + [anon_sym_CARET] = ACTIONS(5194), + [anon_sym_AMP] = ACTIONS(5194), + [anon_sym_EQ_EQ] = ACTIONS(5196), + [anon_sym_BANG_EQ] = ACTIONS(5196), + [anon_sym_GT] = ACTIONS(5194), + [anon_sym_GT_EQ] = ACTIONS(5196), + [anon_sym_LT_EQ] = ACTIONS(5194), + [anon_sym_LT] = ACTIONS(5194), + [anon_sym_LT_LT] = ACTIONS(5194), + [anon_sym_GT_GT] = ACTIONS(5194), + [anon_sym_SEMI] = ACTIONS(5196), + [anon_sym___attribute__] = ACTIONS(5196), + [anon_sym___attribute] = ACTIONS(5194), + [anon_sym_LBRACE] = ACTIONS(5196), + [anon_sym_RBRACE] = ACTIONS(5196), + [anon_sym_signed] = ACTIONS(6970), + [anon_sym_unsigned] = ACTIONS(6970), + [anon_sym_long] = ACTIONS(6970), + [anon_sym_short] = ACTIONS(6970), + [anon_sym_LBRACK] = ACTIONS(5196), + [anon_sym_RBRACK] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(5194), + [anon_sym_COLON] = ACTIONS(5196), + [anon_sym_QMARK] = ACTIONS(5196), + [anon_sym_STAR_EQ] = ACTIONS(5196), + [anon_sym_SLASH_EQ] = ACTIONS(5196), + [anon_sym_PERCENT_EQ] = ACTIONS(5196), + [anon_sym_PLUS_EQ] = ACTIONS(5196), + [anon_sym_DASH_EQ] = ACTIONS(5196), + [anon_sym_LT_LT_EQ] = ACTIONS(5196), + [anon_sym_GT_GT_EQ] = ACTIONS(5196), + [anon_sym_AMP_EQ] = ACTIONS(5196), + [anon_sym_CARET_EQ] = ACTIONS(5196), + [anon_sym_PIPE_EQ] = ACTIONS(5196), + [anon_sym_and_eq] = ACTIONS(5196), + [anon_sym_or_eq] = ACTIONS(5196), + [anon_sym_xor_eq] = ACTIONS(5196), + [anon_sym_LT_EQ_GT] = ACTIONS(5196), + [anon_sym_or] = ACTIONS(5194), + [anon_sym_and] = ACTIONS(5194), + [anon_sym_bitor] = ACTIONS(5196), + [anon_sym_xor] = ACTIONS(5194), + [anon_sym_bitand] = ACTIONS(5196), + [anon_sym_not_eq] = ACTIONS(5196), + [anon_sym_DASH_DASH] = ACTIONS(5196), + [anon_sym_PLUS_PLUS] = ACTIONS(5196), + [anon_sym_DOT] = ACTIONS(5194), + [anon_sym_DOT_STAR] = ACTIONS(5196), + [anon_sym_DASH_GT] = ACTIONS(5196), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5196), + [anon_sym_decltype] = ACTIONS(5196), + }, + [STATE(2770)] = { + [sym_identifier] = ACTIONS(6972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6974), + [anon_sym_COMMA] = ACTIONS(6974), + [anon_sym_RPAREN] = ACTIONS(6974), + [aux_sym_preproc_if_token2] = ACTIONS(6974), + [aux_sym_preproc_else_token1] = ACTIONS(6974), + [aux_sym_preproc_elif_token1] = ACTIONS(6972), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6974), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6974), + [anon_sym_LPAREN2] = ACTIONS(6974), + [anon_sym_DASH] = ACTIONS(6972), + [anon_sym_PLUS] = ACTIONS(6972), + [anon_sym_STAR] = ACTIONS(6972), + [anon_sym_SLASH] = ACTIONS(6972), + [anon_sym_PERCENT] = ACTIONS(6972), + [anon_sym_PIPE_PIPE] = ACTIONS(6974), + [anon_sym_AMP_AMP] = ACTIONS(6974), + [anon_sym_PIPE] = ACTIONS(6972), + [anon_sym_CARET] = ACTIONS(6972), + [anon_sym_AMP] = ACTIONS(6972), + [anon_sym_EQ_EQ] = ACTIONS(6974), + [anon_sym_BANG_EQ] = ACTIONS(6974), + [anon_sym_GT] = ACTIONS(6972), + [anon_sym_GT_EQ] = ACTIONS(6974), + [anon_sym_LT_EQ] = ACTIONS(6972), + [anon_sym_LT] = ACTIONS(6972), + [anon_sym_LT_LT] = ACTIONS(6972), + [anon_sym_GT_GT] = ACTIONS(6972), + [anon_sym_SEMI] = ACTIONS(6974), + [anon_sym___attribute__] = ACTIONS(6972), + [anon_sym___attribute] = ACTIONS(6972), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(6974), + [anon_sym_RBRACE] = ACTIONS(6974), + [anon_sym_LBRACK] = ACTIONS(6974), + [anon_sym_RBRACK] = ACTIONS(6974), + [anon_sym_EQ] = ACTIONS(6972), + [anon_sym_COLON] = ACTIONS(6972), + [anon_sym_QMARK] = ACTIONS(6974), + [anon_sym_STAR_EQ] = ACTIONS(6974), + [anon_sym_SLASH_EQ] = ACTIONS(6974), + [anon_sym_PERCENT_EQ] = ACTIONS(6974), + [anon_sym_PLUS_EQ] = ACTIONS(6974), + [anon_sym_DASH_EQ] = ACTIONS(6974), + [anon_sym_LT_LT_EQ] = ACTIONS(6974), + [anon_sym_GT_GT_EQ] = ACTIONS(6974), + [anon_sym_AMP_EQ] = ACTIONS(6974), + [anon_sym_CARET_EQ] = ACTIONS(6974), + [anon_sym_PIPE_EQ] = ACTIONS(6974), + [anon_sym_and_eq] = ACTIONS(6972), + [anon_sym_or_eq] = ACTIONS(6972), + [anon_sym_xor_eq] = ACTIONS(6972), + [anon_sym_LT_EQ_GT] = ACTIONS(6974), + [anon_sym_or] = ACTIONS(6972), + [anon_sym_and] = ACTIONS(6972), + [anon_sym_bitor] = ACTIONS(6972), + [anon_sym_xor] = ACTIONS(6972), + [anon_sym_bitand] = ACTIONS(6972), + [anon_sym_not_eq] = ACTIONS(6972), + [anon_sym_DASH_DASH] = ACTIONS(6974), + [anon_sym_PLUS_PLUS] = ACTIONS(6974), + [anon_sym_DOT] = ACTIONS(6972), + [anon_sym_DOT_STAR] = ACTIONS(6974), + [anon_sym_DASH_GT] = ACTIONS(6974), + [sym_comment] = ACTIONS(3), + }, + [STATE(2771)] = { + [sym_string_literal] = STATE(2593), + [sym_raw_string_literal] = STATE(2593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6643), + [anon_sym_COMMA] = ACTIONS(6643), + [anon_sym_RPAREN] = ACTIONS(6643), + [anon_sym_LPAREN2] = ACTIONS(6643), + [anon_sym_DASH] = ACTIONS(6641), + [anon_sym_PLUS] = ACTIONS(6641), + [anon_sym_STAR] = ACTIONS(6641), + [anon_sym_SLASH] = ACTIONS(6641), + [anon_sym_PERCENT] = ACTIONS(6641), + [anon_sym_PIPE_PIPE] = ACTIONS(6643), + [anon_sym_AMP_AMP] = ACTIONS(6643), + [anon_sym_PIPE] = ACTIONS(6641), + [anon_sym_CARET] = ACTIONS(6641), + [anon_sym_AMP] = ACTIONS(6641), + [anon_sym_EQ_EQ] = ACTIONS(6643), + [anon_sym_BANG_EQ] = ACTIONS(6643), + [anon_sym_GT] = ACTIONS(6641), + [anon_sym_GT_EQ] = ACTIONS(6643), + [anon_sym_LT_EQ] = ACTIONS(6641), + [anon_sym_LT] = ACTIONS(6641), + [anon_sym_LT_LT] = ACTIONS(6641), + [anon_sym_GT_GT] = ACTIONS(6641), + [anon_sym_LBRACK] = ACTIONS(6643), + [anon_sym_EQ] = ACTIONS(6641), + [anon_sym_QMARK] = ACTIONS(6643), + [anon_sym_STAR_EQ] = ACTIONS(6643), + [anon_sym_SLASH_EQ] = ACTIONS(6643), + [anon_sym_PERCENT_EQ] = ACTIONS(6643), + [anon_sym_PLUS_EQ] = ACTIONS(6643), + [anon_sym_DASH_EQ] = ACTIONS(6643), + [anon_sym_LT_LT_EQ] = ACTIONS(6643), + [anon_sym_GT_GT_EQ] = ACTIONS(6643), + [anon_sym_AMP_EQ] = ACTIONS(6643), + [anon_sym_CARET_EQ] = ACTIONS(6643), + [anon_sym_PIPE_EQ] = ACTIONS(6643), + [anon_sym_and_eq] = ACTIONS(6641), + [anon_sym_or_eq] = ACTIONS(6641), + [anon_sym_xor_eq] = ACTIONS(6641), + [anon_sym_LT_EQ_GT] = ACTIONS(6643), + [anon_sym_or] = ACTIONS(6641), + [anon_sym_and] = ACTIONS(6641), + [anon_sym_bitor] = ACTIONS(6641), + [anon_sym_xor] = ACTIONS(6641), + [anon_sym_bitand] = ACTIONS(6641), + [anon_sym_not_eq] = ACTIONS(6641), + [anon_sym_DASH_DASH] = ACTIONS(6643), + [anon_sym_PLUS_PLUS] = ACTIONS(6643), + [anon_sym_DOT] = ACTIONS(6641), + [anon_sym_DOT_STAR] = ACTIONS(6643), + [anon_sym_DASH_GT] = ACTIONS(6641), + [anon_sym_L_DQUOTE] = ACTIONS(6245), + [anon_sym_u_DQUOTE] = ACTIONS(6245), + [anon_sym_U_DQUOTE] = ACTIONS(6245), + [anon_sym_u8_DQUOTE] = ACTIONS(6245), + [anon_sym_DQUOTE] = ACTIONS(6245), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6247), + [anon_sym_LR_DQUOTE] = ACTIONS(6247), + [anon_sym_uR_DQUOTE] = ACTIONS(6247), + [anon_sym_UR_DQUOTE] = ACTIONS(6247), + [anon_sym_u8R_DQUOTE] = ACTIONS(6247), + [anon_sym_DASH_GT_STAR] = ACTIONS(6643), + [sym_literal_suffix] = ACTIONS(6641), + }, + [STATE(2772)] = { + [sym_identifier] = ACTIONS(6528), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6530), + [anon_sym_COMMA] = ACTIONS(6530), + [anon_sym_LPAREN2] = ACTIONS(6530), + [anon_sym_DASH] = ACTIONS(6528), + [anon_sym_PLUS] = ACTIONS(6528), + [anon_sym_STAR] = ACTIONS(6528), + [anon_sym_SLASH] = ACTIONS(6528), + [anon_sym_PERCENT] = ACTIONS(6528), + [anon_sym_PIPE_PIPE] = ACTIONS(6530), + [anon_sym_AMP_AMP] = ACTIONS(6530), + [anon_sym_PIPE] = ACTIONS(6528), + [anon_sym_CARET] = ACTIONS(6528), + [anon_sym_AMP] = ACTIONS(6528), + [anon_sym_EQ_EQ] = ACTIONS(6530), + [anon_sym_BANG_EQ] = ACTIONS(6530), + [anon_sym_GT] = ACTIONS(6528), + [anon_sym_GT_EQ] = ACTIONS(6530), + [anon_sym_LT_EQ] = ACTIONS(6528), + [anon_sym_LT] = ACTIONS(6528), + [anon_sym_LT_LT] = ACTIONS(6528), + [anon_sym_GT_GT] = ACTIONS(6528), + [anon_sym_SEMI] = ACTIONS(6530), + [anon_sym___attribute__] = ACTIONS(6528), + [anon_sym___attribute] = ACTIONS(6528), + [anon_sym_LBRACK] = ACTIONS(6530), + [anon_sym_EQ] = ACTIONS(6528), + [anon_sym_QMARK] = ACTIONS(6530), + [anon_sym_STAR_EQ] = ACTIONS(6530), + [anon_sym_SLASH_EQ] = ACTIONS(6530), + [anon_sym_PERCENT_EQ] = ACTIONS(6530), + [anon_sym_PLUS_EQ] = ACTIONS(6530), + [anon_sym_DASH_EQ] = ACTIONS(6530), + [anon_sym_LT_LT_EQ] = ACTIONS(6530), + [anon_sym_GT_GT_EQ] = ACTIONS(6530), + [anon_sym_AMP_EQ] = ACTIONS(6530), + [anon_sym_CARET_EQ] = ACTIONS(6530), + [anon_sym_PIPE_EQ] = ACTIONS(6530), + [anon_sym_and_eq] = ACTIONS(6528), + [anon_sym_or_eq] = ACTIONS(6528), + [anon_sym_xor_eq] = ACTIONS(6528), + [anon_sym_LT_EQ_GT] = ACTIONS(6530), + [anon_sym_or] = ACTIONS(6528), + [anon_sym_and] = ACTIONS(6528), + [anon_sym_bitor] = ACTIONS(6528), + [anon_sym_xor] = ACTIONS(6528), + [anon_sym_bitand] = ACTIONS(6528), + [anon_sym_not_eq] = ACTIONS(6528), + [anon_sym_DASH_DASH] = ACTIONS(6530), + [anon_sym_PLUS_PLUS] = ACTIONS(6530), + [anon_sym_DOT] = ACTIONS(6528), + [anon_sym_DOT_STAR] = ACTIONS(6530), + [anon_sym_DASH_GT] = ACTIONS(6530), + [anon_sym_L_DQUOTE] = ACTIONS(6530), + [anon_sym_u_DQUOTE] = ACTIONS(6530), + [anon_sym_U_DQUOTE] = ACTIONS(6530), + [anon_sym_u8_DQUOTE] = ACTIONS(6530), + [anon_sym_DQUOTE] = ACTIONS(6530), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6530), + [anon_sym_LR_DQUOTE] = ACTIONS(6530), + [anon_sym_uR_DQUOTE] = ACTIONS(6530), + [anon_sym_UR_DQUOTE] = ACTIONS(6530), + [anon_sym_u8R_DQUOTE] = ACTIONS(6530), + [sym_literal_suffix] = ACTIONS(6528), + }, + [STATE(2773)] = { + [sym_identifier] = ACTIONS(6524), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6526), + [anon_sym_COMMA] = ACTIONS(6526), + [anon_sym_LPAREN2] = ACTIONS(6526), + [anon_sym_DASH] = ACTIONS(6524), + [anon_sym_PLUS] = ACTIONS(6524), + [anon_sym_STAR] = ACTIONS(6524), + [anon_sym_SLASH] = ACTIONS(6524), + [anon_sym_PERCENT] = ACTIONS(6524), + [anon_sym_PIPE_PIPE] = ACTIONS(6526), + [anon_sym_AMP_AMP] = ACTIONS(6526), + [anon_sym_PIPE] = ACTIONS(6524), + [anon_sym_CARET] = ACTIONS(6524), + [anon_sym_AMP] = ACTIONS(6524), + [anon_sym_EQ_EQ] = ACTIONS(6526), + [anon_sym_BANG_EQ] = ACTIONS(6526), + [anon_sym_GT] = ACTIONS(6524), + [anon_sym_GT_EQ] = ACTIONS(6526), + [anon_sym_LT_EQ] = ACTIONS(6524), + [anon_sym_LT] = ACTIONS(6524), + [anon_sym_LT_LT] = ACTIONS(6524), + [anon_sym_GT_GT] = ACTIONS(6524), + [anon_sym_SEMI] = ACTIONS(6526), + [anon_sym___attribute__] = ACTIONS(6524), + [anon_sym___attribute] = ACTIONS(6524), + [anon_sym_LBRACK] = ACTIONS(6526), + [anon_sym_EQ] = ACTIONS(6524), + [anon_sym_QMARK] = ACTIONS(6526), + [anon_sym_STAR_EQ] = ACTIONS(6526), + [anon_sym_SLASH_EQ] = ACTIONS(6526), + [anon_sym_PERCENT_EQ] = ACTIONS(6526), + [anon_sym_PLUS_EQ] = ACTIONS(6526), + [anon_sym_DASH_EQ] = ACTIONS(6526), + [anon_sym_LT_LT_EQ] = ACTIONS(6526), + [anon_sym_GT_GT_EQ] = ACTIONS(6526), + [anon_sym_AMP_EQ] = ACTIONS(6526), + [anon_sym_CARET_EQ] = ACTIONS(6526), + [anon_sym_PIPE_EQ] = ACTIONS(6526), + [anon_sym_and_eq] = ACTIONS(6524), + [anon_sym_or_eq] = ACTIONS(6524), + [anon_sym_xor_eq] = ACTIONS(6524), + [anon_sym_LT_EQ_GT] = ACTIONS(6526), + [anon_sym_or] = ACTIONS(6524), + [anon_sym_and] = ACTIONS(6524), + [anon_sym_bitor] = ACTIONS(6524), + [anon_sym_xor] = ACTIONS(6524), + [anon_sym_bitand] = ACTIONS(6524), + [anon_sym_not_eq] = ACTIONS(6524), + [anon_sym_DASH_DASH] = ACTIONS(6526), + [anon_sym_PLUS_PLUS] = ACTIONS(6526), + [anon_sym_DOT] = ACTIONS(6524), + [anon_sym_DOT_STAR] = ACTIONS(6526), + [anon_sym_DASH_GT] = ACTIONS(6526), + [anon_sym_L_DQUOTE] = ACTIONS(6526), + [anon_sym_u_DQUOTE] = ACTIONS(6526), + [anon_sym_U_DQUOTE] = ACTIONS(6526), + [anon_sym_u8_DQUOTE] = ACTIONS(6526), + [anon_sym_DQUOTE] = ACTIONS(6526), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6526), + [anon_sym_LR_DQUOTE] = ACTIONS(6526), + [anon_sym_uR_DQUOTE] = ACTIONS(6526), + [anon_sym_UR_DQUOTE] = ACTIONS(6526), + [anon_sym_u8R_DQUOTE] = ACTIONS(6526), + [sym_literal_suffix] = ACTIONS(6524), + }, + [STATE(2774)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5186), + [anon_sym_COMMA] = ACTIONS(5186), + [anon_sym_LPAREN2] = ACTIONS(5186), + [anon_sym_DASH] = ACTIONS(5184), + [anon_sym_PLUS] = ACTIONS(5184), + [anon_sym_STAR] = ACTIONS(5186), + [anon_sym_SLASH] = ACTIONS(5184), + [anon_sym_PERCENT] = ACTIONS(5186), + [anon_sym_PIPE_PIPE] = ACTIONS(5186), + [anon_sym_AMP_AMP] = ACTIONS(5186), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_CARET] = ACTIONS(5186), + [anon_sym_AMP] = ACTIONS(5184), + [anon_sym_EQ_EQ] = ACTIONS(5186), + [anon_sym_BANG_EQ] = ACTIONS(5186), + [anon_sym_GT] = ACTIONS(5184), + [anon_sym_GT_EQ] = ACTIONS(5184), + [anon_sym_LT_EQ] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5184), + [anon_sym_LT_LT] = ACTIONS(5186), + [anon_sym_GT_GT] = ACTIONS(5184), + [anon_sym___extension__] = ACTIONS(5186), + [anon_sym___attribute__] = ACTIONS(5186), + [anon_sym___attribute] = ACTIONS(5184), + [anon_sym_LBRACE] = ACTIONS(5186), + [anon_sym_signed] = ACTIONS(6976), + [anon_sym_unsigned] = ACTIONS(6976), + [anon_sym_long] = ACTIONS(6976), + [anon_sym_short] = ACTIONS(6976), + [anon_sym_LBRACK] = ACTIONS(5186), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5186), + [anon_sym_volatile] = ACTIONS(5186), + [anon_sym_restrict] = ACTIONS(5186), + [anon_sym___restrict__] = ACTIONS(5186), + [anon_sym__Atomic] = ACTIONS(5186), + [anon_sym__Noreturn] = ACTIONS(5186), + [anon_sym_noreturn] = ACTIONS(5186), + [anon_sym__Nonnull] = ACTIONS(5186), + [anon_sym_mutable] = ACTIONS(5186), + [anon_sym_constinit] = ACTIONS(5186), + [anon_sym_consteval] = ACTIONS(5186), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [anon_sym_QMARK] = ACTIONS(5186), + [anon_sym_LT_EQ_GT] = ACTIONS(5186), + [anon_sym_or] = ACTIONS(5186), + [anon_sym_and] = ACTIONS(5186), + [anon_sym_bitor] = ACTIONS(5186), + [anon_sym_xor] = ACTIONS(5186), + [anon_sym_bitand] = ACTIONS(5186), + [anon_sym_not_eq] = ACTIONS(5186), + [anon_sym_DASH_DASH] = ACTIONS(5186), + [anon_sym_PLUS_PLUS] = ACTIONS(5186), + [anon_sym_DOT] = ACTIONS(5184), + [anon_sym_DOT_STAR] = ACTIONS(5186), + [anon_sym_DASH_GT] = ACTIONS(5186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5186), + [anon_sym_decltype] = ACTIONS(5186), + [anon_sym_final] = ACTIONS(5186), + [anon_sym_override] = ACTIONS(5186), + [anon_sym_GT2] = ACTIONS(5186), + [anon_sym_requires] = ACTIONS(5186), + }, + [STATE(2775)] = { + [sym_identifier] = ACTIONS(5672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5674), + [anon_sym_COMMA] = ACTIONS(5674), + [anon_sym_LPAREN2] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5672), + [anon_sym_STAR] = ACTIONS(5672), + [anon_sym_SLASH] = ACTIONS(5672), + [anon_sym_PERCENT] = ACTIONS(5672), + [anon_sym_PIPE_PIPE] = ACTIONS(5674), + [anon_sym_AMP_AMP] = ACTIONS(5674), + [anon_sym_PIPE] = ACTIONS(5672), + [anon_sym_CARET] = ACTIONS(5672), + [anon_sym_AMP] = ACTIONS(5672), + [anon_sym_EQ_EQ] = ACTIONS(5674), + [anon_sym_BANG_EQ] = ACTIONS(5674), + [anon_sym_GT] = ACTIONS(5672), + [anon_sym_GT_EQ] = ACTIONS(5674), + [anon_sym_LT_EQ] = ACTIONS(5672), + [anon_sym_LT] = ACTIONS(5672), + [anon_sym_LT_LT] = ACTIONS(5672), + [anon_sym_GT_GT] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [anon_sym___attribute__] = ACTIONS(5672), + [anon_sym___attribute] = ACTIONS(5672), + [anon_sym_LBRACK] = ACTIONS(5674), + [anon_sym_EQ] = ACTIONS(5672), + [anon_sym_QMARK] = ACTIONS(5674), + [anon_sym_STAR_EQ] = ACTIONS(5674), + [anon_sym_SLASH_EQ] = ACTIONS(5674), + [anon_sym_PERCENT_EQ] = ACTIONS(5674), + [anon_sym_PLUS_EQ] = ACTIONS(5674), + [anon_sym_DASH_EQ] = ACTIONS(5674), + [anon_sym_LT_LT_EQ] = ACTIONS(5674), + [anon_sym_GT_GT_EQ] = ACTIONS(5674), + [anon_sym_AMP_EQ] = ACTIONS(5674), + [anon_sym_CARET_EQ] = ACTIONS(5674), + [anon_sym_PIPE_EQ] = ACTIONS(5674), + [anon_sym_and_eq] = ACTIONS(5672), + [anon_sym_or_eq] = ACTIONS(5672), + [anon_sym_xor_eq] = ACTIONS(5672), + [anon_sym_LT_EQ_GT] = ACTIONS(5674), + [anon_sym_or] = ACTIONS(5672), + [anon_sym_and] = ACTIONS(5672), + [anon_sym_bitor] = ACTIONS(5672), + [anon_sym_xor] = ACTIONS(5672), + [anon_sym_bitand] = ACTIONS(5672), + [anon_sym_not_eq] = ACTIONS(5672), + [anon_sym_DASH_DASH] = ACTIONS(5674), + [anon_sym_PLUS_PLUS] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_DOT_STAR] = ACTIONS(5674), + [anon_sym_DASH_GT] = ACTIONS(5674), + [anon_sym_L_DQUOTE] = ACTIONS(5674), + [anon_sym_u_DQUOTE] = ACTIONS(5674), + [anon_sym_U_DQUOTE] = ACTIONS(5674), + [anon_sym_u8_DQUOTE] = ACTIONS(5674), + [anon_sym_DQUOTE] = ACTIONS(5674), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5674), + [anon_sym_LR_DQUOTE] = ACTIONS(5674), + [anon_sym_uR_DQUOTE] = ACTIONS(5674), + [anon_sym_UR_DQUOTE] = ACTIONS(5674), + [anon_sym_u8R_DQUOTE] = ACTIONS(5674), + [sym_literal_suffix] = ACTIONS(5672), + }, + [STATE(2776)] = { + [sym_attribute_specifier] = STATE(2484), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5482), + [anon_sym_COMMA] = ACTIONS(5482), + [anon_sym_RPAREN] = ACTIONS(5482), + [anon_sym_LPAREN2] = ACTIONS(5482), + [anon_sym_DASH] = ACTIONS(5480), + [anon_sym_PLUS] = ACTIONS(5480), + [anon_sym_STAR] = ACTIONS(5482), + [anon_sym_SLASH] = ACTIONS(5480), + [anon_sym_PERCENT] = ACTIONS(5482), + [anon_sym_PIPE_PIPE] = ACTIONS(5482), + [anon_sym_AMP_AMP] = ACTIONS(5482), + [anon_sym_PIPE] = ACTIONS(5480), + [anon_sym_CARET] = ACTIONS(5482), + [anon_sym_AMP] = ACTIONS(5480), + [anon_sym_EQ_EQ] = ACTIONS(5482), + [anon_sym_BANG_EQ] = ACTIONS(5482), + [anon_sym_GT] = ACTIONS(5480), + [anon_sym_GT_EQ] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5480), + [anon_sym_LT] = ACTIONS(5480), + [anon_sym_LT_LT] = ACTIONS(5482), + [anon_sym_GT_GT] = ACTIONS(5482), + [anon_sym_SEMI] = ACTIONS(5482), + [anon_sym___extension__] = ACTIONS(5482), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6673), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(5482), + [anon_sym_LBRACK] = ACTIONS(5482), + [anon_sym_RBRACK] = ACTIONS(5482), + [anon_sym_const] = ACTIONS(5480), + [anon_sym_constexpr] = ACTIONS(5482), + [anon_sym_volatile] = ACTIONS(5482), + [anon_sym_restrict] = ACTIONS(5482), + [anon_sym___restrict__] = ACTIONS(5482), + [anon_sym__Atomic] = ACTIONS(5482), + [anon_sym__Noreturn] = ACTIONS(5482), + [anon_sym_noreturn] = ACTIONS(5482), + [anon_sym__Nonnull] = ACTIONS(5482), + [anon_sym_mutable] = ACTIONS(5482), + [anon_sym_constinit] = ACTIONS(5482), + [anon_sym_consteval] = ACTIONS(5482), + [anon_sym_alignas] = ACTIONS(5482), + [anon_sym__Alignas] = ACTIONS(5482), + [anon_sym_COLON] = ACTIONS(5482), + [anon_sym_QMARK] = ACTIONS(5482), + [anon_sym_LT_EQ_GT] = ACTIONS(5482), + [anon_sym_or] = ACTIONS(5482), + [anon_sym_and] = ACTIONS(5482), + [anon_sym_bitor] = ACTIONS(5482), + [anon_sym_xor] = ACTIONS(5482), + [anon_sym_bitand] = ACTIONS(5482), + [anon_sym_not_eq] = ACTIONS(5482), + [anon_sym_DASH_DASH] = ACTIONS(5482), + [anon_sym_PLUS_PLUS] = ACTIONS(5482), + [anon_sym_DOT] = ACTIONS(5480), + [anon_sym_DOT_STAR] = ACTIONS(5482), + [anon_sym_DASH_GT] = ACTIONS(5482), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5482), + [anon_sym_decltype] = ACTIONS(5482), + [anon_sym_final] = ACTIONS(5482), + [anon_sym_override] = ACTIONS(5482), + [anon_sym_requires] = ACTIONS(5482), + }, + [STATE(2777)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2768), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4819), + [anon_sym_COMMA] = ACTIONS(4819), + [anon_sym_LPAREN2] = ACTIONS(4819), + [anon_sym_DASH] = ACTIONS(4817), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_STAR] = ACTIONS(4819), + [anon_sym_SLASH] = ACTIONS(4817), + [anon_sym_PERCENT] = ACTIONS(4819), + [anon_sym_PIPE_PIPE] = ACTIONS(4819), + [anon_sym_AMP_AMP] = ACTIONS(4819), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_CARET] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4817), + [anon_sym_EQ_EQ] = ACTIONS(4819), + [anon_sym_BANG_EQ] = ACTIONS(4819), + [anon_sym_GT] = ACTIONS(4817), + [anon_sym_GT_EQ] = ACTIONS(4817), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4817), + [anon_sym_LT_LT] = ACTIONS(4819), + [anon_sym_GT_GT] = ACTIONS(4817), + [anon_sym___extension__] = ACTIONS(4819), + [anon_sym___attribute__] = ACTIONS(4819), + [anon_sym___attribute] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(4819), + [anon_sym_signed] = ACTIONS(6961), + [anon_sym_unsigned] = ACTIONS(6961), + [anon_sym_long] = ACTIONS(6961), + [anon_sym_short] = ACTIONS(6961), + [anon_sym_LBRACK] = ACTIONS(4819), + [anon_sym_const] = ACTIONS(4817), + [anon_sym_constexpr] = ACTIONS(4819), + [anon_sym_volatile] = ACTIONS(4819), + [anon_sym_restrict] = ACTIONS(4819), + [anon_sym___restrict__] = ACTIONS(4819), + [anon_sym__Atomic] = ACTIONS(4819), + [anon_sym__Noreturn] = ACTIONS(4819), + [anon_sym_noreturn] = ACTIONS(4819), + [anon_sym__Nonnull] = ACTIONS(4819), + [anon_sym_mutable] = ACTIONS(4819), + [anon_sym_constinit] = ACTIONS(4819), + [anon_sym_consteval] = ACTIONS(4819), + [anon_sym_alignas] = ACTIONS(4819), + [anon_sym__Alignas] = ACTIONS(4819), + [anon_sym_QMARK] = ACTIONS(4819), + [anon_sym_LT_EQ_GT] = ACTIONS(4819), + [anon_sym_or] = ACTIONS(4819), + [anon_sym_and] = ACTIONS(4819), + [anon_sym_bitor] = ACTIONS(4819), + [anon_sym_xor] = ACTIONS(4819), + [anon_sym_bitand] = ACTIONS(4819), + [anon_sym_not_eq] = ACTIONS(4819), + [anon_sym_DASH_DASH] = ACTIONS(4819), + [anon_sym_PLUS_PLUS] = ACTIONS(4819), + [anon_sym_DOT] = ACTIONS(4817), + [anon_sym_DOT_STAR] = ACTIONS(4819), + [anon_sym_DASH_GT] = ACTIONS(4819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4819), + [anon_sym_decltype] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_override] = ACTIONS(4819), + [anon_sym_GT2] = ACTIONS(4819), + [anon_sym_requires] = ACTIONS(4819), + }, + [STATE(2778)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2747), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5170), + [anon_sym_COMMA] = ACTIONS(5170), + [anon_sym_LPAREN2] = ACTIONS(5170), + [anon_sym_DASH] = ACTIONS(5168), + [anon_sym_PLUS] = ACTIONS(5168), + [anon_sym_STAR] = ACTIONS(5170), + [anon_sym_SLASH] = ACTIONS(5168), + [anon_sym_PERCENT] = ACTIONS(5170), + [anon_sym_PIPE_PIPE] = ACTIONS(5170), + [anon_sym_AMP_AMP] = ACTIONS(5170), + [anon_sym_PIPE] = ACTIONS(5168), + [anon_sym_CARET] = ACTIONS(5170), + [anon_sym_AMP] = ACTIONS(5168), + [anon_sym_EQ_EQ] = ACTIONS(5170), + [anon_sym_BANG_EQ] = ACTIONS(5170), + [anon_sym_GT] = ACTIONS(5168), + [anon_sym_GT_EQ] = ACTIONS(5168), + [anon_sym_LT_EQ] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5168), + [anon_sym_LT_LT] = ACTIONS(5170), + [anon_sym_GT_GT] = ACTIONS(5168), + [anon_sym___extension__] = ACTIONS(5170), + [anon_sym___attribute__] = ACTIONS(5170), + [anon_sym___attribute] = ACTIONS(5168), + [anon_sym_LBRACE] = ACTIONS(5170), + [anon_sym_signed] = ACTIONS(6978), + [anon_sym_unsigned] = ACTIONS(6978), + [anon_sym_long] = ACTIONS(6978), + [anon_sym_short] = ACTIONS(6978), + [anon_sym_LBRACK] = ACTIONS(5170), + [anon_sym_const] = ACTIONS(5168), + [anon_sym_constexpr] = ACTIONS(5170), + [anon_sym_volatile] = ACTIONS(5170), + [anon_sym_restrict] = ACTIONS(5170), + [anon_sym___restrict__] = ACTIONS(5170), + [anon_sym__Atomic] = ACTIONS(5170), + [anon_sym__Noreturn] = ACTIONS(5170), + [anon_sym_noreturn] = ACTIONS(5170), + [anon_sym__Nonnull] = ACTIONS(5170), + [anon_sym_mutable] = ACTIONS(5170), + [anon_sym_constinit] = ACTIONS(5170), + [anon_sym_consteval] = ACTIONS(5170), + [anon_sym_alignas] = ACTIONS(5170), + [anon_sym__Alignas] = ACTIONS(5170), + [anon_sym_QMARK] = ACTIONS(5170), + [anon_sym_LT_EQ_GT] = ACTIONS(5170), + [anon_sym_or] = ACTIONS(5170), + [anon_sym_and] = ACTIONS(5170), + [anon_sym_bitor] = ACTIONS(5170), + [anon_sym_xor] = ACTIONS(5170), + [anon_sym_bitand] = ACTIONS(5170), + [anon_sym_not_eq] = ACTIONS(5170), + [anon_sym_DASH_DASH] = ACTIONS(5170), + [anon_sym_PLUS_PLUS] = ACTIONS(5170), + [anon_sym_DOT] = ACTIONS(5168), + [anon_sym_DOT_STAR] = ACTIONS(5170), + [anon_sym_DASH_GT] = ACTIONS(5170), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5170), + [anon_sym_decltype] = ACTIONS(5170), + [anon_sym_final] = ACTIONS(5170), + [anon_sym_override] = ACTIONS(5170), + [anon_sym_GT2] = ACTIONS(5170), + [anon_sym_requires] = ACTIONS(5170), + }, + [STATE(2779)] = { + [sym_identifier] = ACTIONS(5676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5678), + [anon_sym_COMMA] = ACTIONS(5678), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_DASH] = ACTIONS(5676), + [anon_sym_PLUS] = ACTIONS(5676), + [anon_sym_STAR] = ACTIONS(5676), + [anon_sym_SLASH] = ACTIONS(5676), + [anon_sym_PERCENT] = ACTIONS(5676), + [anon_sym_PIPE_PIPE] = ACTIONS(5678), + [anon_sym_AMP_AMP] = ACTIONS(5678), + [anon_sym_PIPE] = ACTIONS(5676), + [anon_sym_CARET] = ACTIONS(5676), + [anon_sym_AMP] = ACTIONS(5676), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_GT] = ACTIONS(5676), + [anon_sym_GT_EQ] = ACTIONS(5678), + [anon_sym_LT_EQ] = ACTIONS(5676), + [anon_sym_LT] = ACTIONS(5676), + [anon_sym_LT_LT] = ACTIONS(5676), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_SEMI] = ACTIONS(5678), + [anon_sym___attribute__] = ACTIONS(5676), + [anon_sym___attribute] = ACTIONS(5676), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_EQ] = ACTIONS(5676), + [anon_sym_QMARK] = ACTIONS(5678), + [anon_sym_STAR_EQ] = ACTIONS(5678), + [anon_sym_SLASH_EQ] = ACTIONS(5678), + [anon_sym_PERCENT_EQ] = ACTIONS(5678), + [anon_sym_PLUS_EQ] = ACTIONS(5678), + [anon_sym_DASH_EQ] = ACTIONS(5678), + [anon_sym_LT_LT_EQ] = ACTIONS(5678), + [anon_sym_GT_GT_EQ] = ACTIONS(5678), + [anon_sym_AMP_EQ] = ACTIONS(5678), + [anon_sym_CARET_EQ] = ACTIONS(5678), + [anon_sym_PIPE_EQ] = ACTIONS(5678), + [anon_sym_and_eq] = ACTIONS(5676), + [anon_sym_or_eq] = ACTIONS(5676), + [anon_sym_xor_eq] = ACTIONS(5676), + [anon_sym_LT_EQ_GT] = ACTIONS(5678), + [anon_sym_or] = ACTIONS(5676), + [anon_sym_and] = ACTIONS(5676), + [anon_sym_bitor] = ACTIONS(5676), + [anon_sym_xor] = ACTIONS(5676), + [anon_sym_bitand] = ACTIONS(5676), + [anon_sym_not_eq] = ACTIONS(5676), + [anon_sym_DASH_DASH] = ACTIONS(5678), + [anon_sym_PLUS_PLUS] = ACTIONS(5678), + [anon_sym_DOT] = ACTIONS(5676), + [anon_sym_DOT_STAR] = ACTIONS(5678), + [anon_sym_DASH_GT] = ACTIONS(5678), + [anon_sym_L_DQUOTE] = ACTIONS(5678), + [anon_sym_u_DQUOTE] = ACTIONS(5678), + [anon_sym_U_DQUOTE] = ACTIONS(5678), + [anon_sym_u8_DQUOTE] = ACTIONS(5678), + [anon_sym_DQUOTE] = ACTIONS(5678), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5678), + [anon_sym_LR_DQUOTE] = ACTIONS(5678), + [anon_sym_uR_DQUOTE] = ACTIONS(5678), + [anon_sym_UR_DQUOTE] = ACTIONS(5678), + [anon_sym_u8R_DQUOTE] = ACTIONS(5678), + [sym_literal_suffix] = ACTIONS(5676), + }, + [STATE(2780)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4737), + [anon_sym_COMMA] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4737), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_DASH] = ACTIONS(4735), + [anon_sym_PLUS] = ACTIONS(4735), + [anon_sym_STAR] = ACTIONS(4735), + [anon_sym_SLASH] = ACTIONS(4735), + [anon_sym_PERCENT] = ACTIONS(4735), + [anon_sym_PIPE_PIPE] = ACTIONS(4737), + [anon_sym_AMP_AMP] = ACTIONS(4737), + [anon_sym_PIPE] = ACTIONS(4735), + [anon_sym_CARET] = ACTIONS(4735), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_EQ_EQ] = ACTIONS(4737), + [anon_sym_BANG_EQ] = ACTIONS(4737), + [anon_sym_GT] = ACTIONS(4735), + [anon_sym_GT_EQ] = ACTIONS(4737), + [anon_sym_LT_EQ] = ACTIONS(4735), + [anon_sym_LT] = ACTIONS(4735), + [anon_sym_LT_LT] = ACTIONS(4735), + [anon_sym_GT_GT] = ACTIONS(4735), + [anon_sym_SEMI] = ACTIONS(4737), + [anon_sym___attribute__] = ACTIONS(4737), + [anon_sym___attribute] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4737), + [anon_sym_RBRACE] = ACTIONS(4737), + [anon_sym_signed] = ACTIONS(6980), + [anon_sym_unsigned] = ACTIONS(6980), + [anon_sym_long] = ACTIONS(6980), + [anon_sym_short] = ACTIONS(6980), + [anon_sym_LBRACK] = ACTIONS(4737), + [anon_sym_RBRACK] = ACTIONS(4737), + [anon_sym_EQ] = ACTIONS(4735), + [anon_sym_COLON] = ACTIONS(4737), + [anon_sym_QMARK] = ACTIONS(4737), + [anon_sym_STAR_EQ] = ACTIONS(4737), + [anon_sym_SLASH_EQ] = ACTIONS(4737), + [anon_sym_PERCENT_EQ] = ACTIONS(4737), + [anon_sym_PLUS_EQ] = ACTIONS(4737), + [anon_sym_DASH_EQ] = ACTIONS(4737), + [anon_sym_LT_LT_EQ] = ACTIONS(4737), + [anon_sym_GT_GT_EQ] = ACTIONS(4737), + [anon_sym_AMP_EQ] = ACTIONS(4737), + [anon_sym_CARET_EQ] = ACTIONS(4737), + [anon_sym_PIPE_EQ] = ACTIONS(4737), + [anon_sym_and_eq] = ACTIONS(4737), + [anon_sym_or_eq] = ACTIONS(4737), + [anon_sym_xor_eq] = ACTIONS(4737), + [anon_sym_LT_EQ_GT] = ACTIONS(4737), + [anon_sym_or] = ACTIONS(4735), + [anon_sym_and] = ACTIONS(4735), + [anon_sym_bitor] = ACTIONS(4737), + [anon_sym_xor] = ACTIONS(4735), + [anon_sym_bitand] = ACTIONS(4737), + [anon_sym_not_eq] = ACTIONS(4737), + [anon_sym_DASH_DASH] = ACTIONS(4737), + [anon_sym_PLUS_PLUS] = ACTIONS(4737), + [anon_sym_DOT] = ACTIONS(4735), + [anon_sym_DOT_STAR] = ACTIONS(4737), + [anon_sym_DASH_GT] = ACTIONS(4737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4737), + [anon_sym_decltype] = ACTIONS(4737), + }, + [STATE(2781)] = { + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_unaligned_ptr_modifier] = STATE(4347), + [sym_ms_pointer_modifier] = STATE(2788), + [sym__declarator] = STATE(6842), + [sym__abstract_declarator] = STATE(7026), + [sym_parenthesized_declarator] = STATE(6300), + [sym_abstract_parenthesized_declarator] = STATE(6365), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_abstract_pointer_declarator] = STATE(6365), + [sym_function_declarator] = STATE(6300), + [sym_abstract_function_declarator] = STATE(6365), + [sym_array_declarator] = STATE(6300), + [sym_abstract_array_declarator] = STATE(6365), + [sym_type_qualifier] = STATE(3199), + [sym_alignas_qualifier] = STATE(4606), + [sym_parameter_list] = STATE(3336), + [sym_decltype] = STATE(8447), + [sym_reference_declarator] = STATE(6300), + [sym_abstract_reference_declarator] = STATE(6365), + [sym_structured_binding_declarator] = STATE(6300), + [sym__function_declarator_seq] = STATE(6368), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6154), + [sym_qualified_identifier] = STATE(6300), + [sym_operator_name] = STATE(6300), + [aux_sym__type_definition_type_repeat1] = STATE(3199), + [aux_sym_pointer_declarator_repeat1] = STATE(2788), + [sym_identifier] = ACTIONS(4344), + [anon_sym_RPAREN] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3223), + [anon_sym_AMP] = ACTIONS(3225), + [anon_sym___extension__] = ACTIONS(4029), + [anon_sym_COLON_COLON] = ACTIONS(6763), + [anon_sym___based] = ACTIONS(51), + [sym_ms_restrict_modifier] = ACTIONS(4025), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(4025), + [sym_ms_signed_ptr_modifier] = ACTIONS(4025), + [anon_sym__unaligned] = ACTIONS(4027), + [anon_sym___unaligned] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(6624), + [anon_sym_const] = ACTIONS(4029), + [anon_sym_constexpr] = ACTIONS(4029), + [anon_sym_volatile] = ACTIONS(4029), + [anon_sym_restrict] = ACTIONS(4029), + [anon_sym___restrict__] = ACTIONS(4029), + [anon_sym__Atomic] = ACTIONS(4029), + [anon_sym__Noreturn] = ACTIONS(4029), + [anon_sym_noreturn] = ACTIONS(4029), + [anon_sym__Nonnull] = ACTIONS(4029), + [anon_sym_mutable] = ACTIONS(4029), + [anon_sym_constinit] = ACTIONS(4029), + [anon_sym_consteval] = ACTIONS(4029), + [anon_sym_alignas] = ACTIONS(4031), + [anon_sym__Alignas] = ACTIONS(4031), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(3197), + }, + [STATE(2782)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5192), + [anon_sym_COMMA] = ACTIONS(5192), + [anon_sym_RPAREN] = ACTIONS(5192), + [anon_sym_LPAREN2] = ACTIONS(5192), + [anon_sym_DASH] = ACTIONS(5190), + [anon_sym_PLUS] = ACTIONS(5190), + [anon_sym_STAR] = ACTIONS(5190), + [anon_sym_SLASH] = ACTIONS(5190), + [anon_sym_PERCENT] = ACTIONS(5190), + [anon_sym_PIPE_PIPE] = ACTIONS(5192), + [anon_sym_AMP_AMP] = ACTIONS(5192), + [anon_sym_PIPE] = ACTIONS(5190), + [anon_sym_CARET] = ACTIONS(5190), + [anon_sym_AMP] = ACTIONS(5190), + [anon_sym_EQ_EQ] = ACTIONS(5192), + [anon_sym_BANG_EQ] = ACTIONS(5192), + [anon_sym_GT] = ACTIONS(5190), + [anon_sym_GT_EQ] = ACTIONS(5192), + [anon_sym_LT_EQ] = ACTIONS(5190), + [anon_sym_LT] = ACTIONS(5190), + [anon_sym_LT_LT] = ACTIONS(5190), + [anon_sym_GT_GT] = ACTIONS(5190), + [anon_sym_SEMI] = ACTIONS(5192), + [anon_sym___attribute__] = ACTIONS(5192), + [anon_sym___attribute] = ACTIONS(5190), + [anon_sym_LBRACE] = ACTIONS(5192), + [anon_sym_RBRACE] = ACTIONS(5192), + [anon_sym_signed] = ACTIONS(6945), + [anon_sym_unsigned] = ACTIONS(6945), + [anon_sym_long] = ACTIONS(6945), + [anon_sym_short] = ACTIONS(6945), + [anon_sym_LBRACK] = ACTIONS(5192), + [anon_sym_RBRACK] = ACTIONS(5192), + [anon_sym_EQ] = ACTIONS(5190), + [anon_sym_COLON] = ACTIONS(5192), + [anon_sym_QMARK] = ACTIONS(5192), + [anon_sym_STAR_EQ] = ACTIONS(5192), + [anon_sym_SLASH_EQ] = ACTIONS(5192), + [anon_sym_PERCENT_EQ] = ACTIONS(5192), + [anon_sym_PLUS_EQ] = ACTIONS(5192), + [anon_sym_DASH_EQ] = ACTIONS(5192), + [anon_sym_LT_LT_EQ] = ACTIONS(5192), + [anon_sym_GT_GT_EQ] = ACTIONS(5192), + [anon_sym_AMP_EQ] = ACTIONS(5192), + [anon_sym_CARET_EQ] = ACTIONS(5192), + [anon_sym_PIPE_EQ] = ACTIONS(5192), + [anon_sym_and_eq] = ACTIONS(5192), + [anon_sym_or_eq] = ACTIONS(5192), + [anon_sym_xor_eq] = ACTIONS(5192), + [anon_sym_LT_EQ_GT] = ACTIONS(5192), + [anon_sym_or] = ACTIONS(5190), + [anon_sym_and] = ACTIONS(5190), + [anon_sym_bitor] = ACTIONS(5192), + [anon_sym_xor] = ACTIONS(5190), + [anon_sym_bitand] = ACTIONS(5192), + [anon_sym_not_eq] = ACTIONS(5192), + [anon_sym_DASH_DASH] = ACTIONS(5192), + [anon_sym_PLUS_PLUS] = ACTIONS(5192), + [anon_sym_DOT] = ACTIONS(5190), + [anon_sym_DOT_STAR] = ACTIONS(5192), + [anon_sym_DASH_GT] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5192), + [anon_sym_decltype] = ACTIONS(5192), + }, + [STATE(2783)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5166), + [anon_sym_COMMA] = ACTIONS(5166), + [anon_sym_LPAREN2] = ACTIONS(5166), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5166), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_PERCENT] = ACTIONS(5166), + [anon_sym_PIPE_PIPE] = ACTIONS(5166), + [anon_sym_AMP_AMP] = ACTIONS(5166), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_CARET] = ACTIONS(5166), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_EQ_EQ] = ACTIONS(5166), + [anon_sym_BANG_EQ] = ACTIONS(5166), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_GT_EQ] = ACTIONS(5164), + [anon_sym_LT_EQ] = ACTIONS(5164), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_LT_LT] = ACTIONS(5166), + [anon_sym_GT_GT] = ACTIONS(5164), + [anon_sym___extension__] = ACTIONS(5166), + [anon_sym___attribute__] = ACTIONS(5166), + [anon_sym___attribute] = ACTIONS(5164), + [anon_sym_LBRACE] = ACTIONS(5166), + [anon_sym_signed] = ACTIONS(6951), + [anon_sym_unsigned] = ACTIONS(6951), + [anon_sym_long] = ACTIONS(6951), + [anon_sym_short] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(5166), + [anon_sym_const] = ACTIONS(5164), + [anon_sym_constexpr] = ACTIONS(5166), + [anon_sym_volatile] = ACTIONS(5166), + [anon_sym_restrict] = ACTIONS(5166), + [anon_sym___restrict__] = ACTIONS(5166), + [anon_sym__Atomic] = ACTIONS(5166), + [anon_sym__Noreturn] = ACTIONS(5166), + [anon_sym_noreturn] = ACTIONS(5166), + [anon_sym__Nonnull] = ACTIONS(5166), + [anon_sym_mutable] = ACTIONS(5166), + [anon_sym_constinit] = ACTIONS(5166), + [anon_sym_consteval] = ACTIONS(5166), + [anon_sym_alignas] = ACTIONS(5166), + [anon_sym__Alignas] = ACTIONS(5166), + [anon_sym_QMARK] = ACTIONS(5166), + [anon_sym_LT_EQ_GT] = ACTIONS(5166), + [anon_sym_or] = ACTIONS(5166), + [anon_sym_and] = ACTIONS(5166), + [anon_sym_bitor] = ACTIONS(5166), + [anon_sym_xor] = ACTIONS(5166), + [anon_sym_bitand] = ACTIONS(5166), + [anon_sym_not_eq] = ACTIONS(5166), + [anon_sym_DASH_DASH] = ACTIONS(5166), + [anon_sym_PLUS_PLUS] = ACTIONS(5166), + [anon_sym_DOT] = ACTIONS(5164), + [anon_sym_DOT_STAR] = ACTIONS(5166), + [anon_sym_DASH_GT] = ACTIONS(5166), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5166), + [anon_sym_decltype] = ACTIONS(5166), + [anon_sym_final] = ACTIONS(5166), + [anon_sym_override] = ACTIONS(5166), + [anon_sym_GT2] = ACTIONS(5166), + [anon_sym_requires] = ACTIONS(5166), + }, + [STATE(2784)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5186), + [anon_sym_COMMA] = ACTIONS(5186), + [anon_sym_RPAREN] = ACTIONS(5186), + [anon_sym_LPAREN2] = ACTIONS(5186), + [anon_sym_DASH] = ACTIONS(5184), + [anon_sym_PLUS] = ACTIONS(5184), + [anon_sym_STAR] = ACTIONS(5184), + [anon_sym_SLASH] = ACTIONS(5184), + [anon_sym_PERCENT] = ACTIONS(5184), + [anon_sym_PIPE_PIPE] = ACTIONS(5186), + [anon_sym_AMP_AMP] = ACTIONS(5186), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_CARET] = ACTIONS(5184), + [anon_sym_AMP] = ACTIONS(5184), + [anon_sym_EQ_EQ] = ACTIONS(5186), + [anon_sym_BANG_EQ] = ACTIONS(5186), + [anon_sym_GT] = ACTIONS(5184), + [anon_sym_GT_EQ] = ACTIONS(5186), + [anon_sym_LT_EQ] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5184), + [anon_sym_LT_LT] = ACTIONS(5184), + [anon_sym_GT_GT] = ACTIONS(5184), + [anon_sym_SEMI] = ACTIONS(5186), + [anon_sym___attribute__] = ACTIONS(5186), + [anon_sym___attribute] = ACTIONS(5184), + [anon_sym_LBRACE] = ACTIONS(5186), + [anon_sym_RBRACE] = ACTIONS(5186), + [anon_sym_signed] = ACTIONS(6982), + [anon_sym_unsigned] = ACTIONS(6982), + [anon_sym_long] = ACTIONS(6982), + [anon_sym_short] = ACTIONS(6982), + [anon_sym_LBRACK] = ACTIONS(5186), + [anon_sym_RBRACK] = ACTIONS(5186), + [anon_sym_EQ] = ACTIONS(5184), + [anon_sym_COLON] = ACTIONS(5186), + [anon_sym_QMARK] = ACTIONS(5186), + [anon_sym_STAR_EQ] = ACTIONS(5186), + [anon_sym_SLASH_EQ] = ACTIONS(5186), + [anon_sym_PERCENT_EQ] = ACTIONS(5186), + [anon_sym_PLUS_EQ] = ACTIONS(5186), + [anon_sym_DASH_EQ] = ACTIONS(5186), + [anon_sym_LT_LT_EQ] = ACTIONS(5186), + [anon_sym_GT_GT_EQ] = ACTIONS(5186), + [anon_sym_AMP_EQ] = ACTIONS(5186), + [anon_sym_CARET_EQ] = ACTIONS(5186), + [anon_sym_PIPE_EQ] = ACTIONS(5186), + [anon_sym_and_eq] = ACTIONS(5186), + [anon_sym_or_eq] = ACTIONS(5186), + [anon_sym_xor_eq] = ACTIONS(5186), + [anon_sym_LT_EQ_GT] = ACTIONS(5186), + [anon_sym_or] = ACTIONS(5184), + [anon_sym_and] = ACTIONS(5184), + [anon_sym_bitor] = ACTIONS(5186), + [anon_sym_xor] = ACTIONS(5184), + [anon_sym_bitand] = ACTIONS(5186), + [anon_sym_not_eq] = ACTIONS(5186), + [anon_sym_DASH_DASH] = ACTIONS(5186), + [anon_sym_PLUS_PLUS] = ACTIONS(5186), + [anon_sym_DOT] = ACTIONS(5184), + [anon_sym_DOT_STAR] = ACTIONS(5186), + [anon_sym_DASH_GT] = ACTIONS(5186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5186), + [anon_sym_decltype] = ACTIONS(5186), + }, + [STATE(2785)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5170), + [anon_sym_COMMA] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(5170), + [anon_sym_LPAREN2] = ACTIONS(5170), + [anon_sym_DASH] = ACTIONS(5168), + [anon_sym_PLUS] = ACTIONS(5168), + [anon_sym_STAR] = ACTIONS(5168), + [anon_sym_SLASH] = ACTIONS(5168), + [anon_sym_PERCENT] = ACTIONS(5168), + [anon_sym_PIPE_PIPE] = ACTIONS(5170), + [anon_sym_AMP_AMP] = ACTIONS(5170), + [anon_sym_PIPE] = ACTIONS(5168), + [anon_sym_CARET] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5168), + [anon_sym_EQ_EQ] = ACTIONS(5170), + [anon_sym_BANG_EQ] = ACTIONS(5170), + [anon_sym_GT] = ACTIONS(5168), + [anon_sym_GT_EQ] = ACTIONS(5170), + [anon_sym_LT_EQ] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5168), + [anon_sym_LT_LT] = ACTIONS(5168), + [anon_sym_GT_GT] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(5170), + [anon_sym___attribute__] = ACTIONS(5170), + [anon_sym___attribute] = ACTIONS(5168), + [anon_sym_LBRACE] = ACTIONS(5170), + [anon_sym_RBRACE] = ACTIONS(5170), + [anon_sym_signed] = ACTIONS(6984), + [anon_sym_unsigned] = ACTIONS(6984), + [anon_sym_long] = ACTIONS(6984), + [anon_sym_short] = ACTIONS(6984), + [anon_sym_LBRACK] = ACTIONS(5170), + [anon_sym_RBRACK] = ACTIONS(5170), + [anon_sym_EQ] = ACTIONS(5168), + [anon_sym_COLON] = ACTIONS(5170), + [anon_sym_QMARK] = ACTIONS(5170), + [anon_sym_STAR_EQ] = ACTIONS(5170), + [anon_sym_SLASH_EQ] = ACTIONS(5170), + [anon_sym_PERCENT_EQ] = ACTIONS(5170), + [anon_sym_PLUS_EQ] = ACTIONS(5170), + [anon_sym_DASH_EQ] = ACTIONS(5170), + [anon_sym_LT_LT_EQ] = ACTIONS(5170), + [anon_sym_GT_GT_EQ] = ACTIONS(5170), + [anon_sym_AMP_EQ] = ACTIONS(5170), + [anon_sym_CARET_EQ] = ACTIONS(5170), + [anon_sym_PIPE_EQ] = ACTIONS(5170), + [anon_sym_and_eq] = ACTIONS(5170), + [anon_sym_or_eq] = ACTIONS(5170), + [anon_sym_xor_eq] = ACTIONS(5170), + [anon_sym_LT_EQ_GT] = ACTIONS(5170), + [anon_sym_or] = ACTIONS(5168), + [anon_sym_and] = ACTIONS(5168), + [anon_sym_bitor] = ACTIONS(5170), + [anon_sym_xor] = ACTIONS(5168), + [anon_sym_bitand] = ACTIONS(5170), + [anon_sym_not_eq] = ACTIONS(5170), + [anon_sym_DASH_DASH] = ACTIONS(5170), + [anon_sym_PLUS_PLUS] = ACTIONS(5170), + [anon_sym_DOT] = ACTIONS(5168), + [anon_sym_DOT_STAR] = ACTIONS(5170), + [anon_sym_DASH_GT] = ACTIONS(5170), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5170), + [anon_sym_decltype] = ACTIONS(5170), + }, + [STATE(2786)] = { + [sym_attribute_specifier] = STATE(3055), + [sym_field_declaration_list] = STATE(3014), + [sym_virtual_specifier] = STATE(7393), + [sym_base_class_clause] = STATE(8158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4988), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_LPAREN2] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4986), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_PERCENT] = ACTIONS(4988), + [anon_sym_PIPE_PIPE] = ACTIONS(4988), + [anon_sym_AMP_AMP] = ACTIONS(4988), + [anon_sym_PIPE] = ACTIONS(4986), + [anon_sym_CARET] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_EQ_EQ] = ACTIONS(4988), + [anon_sym_BANG_EQ] = ACTIONS(4988), + [anon_sym_GT] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_LT_EQ] = ACTIONS(4986), + [anon_sym_LT] = ACTIONS(4986), + [anon_sym_LT_LT] = ACTIONS(4988), + [anon_sym_GT_GT] = ACTIONS(4986), + [anon_sym___extension__] = ACTIONS(4988), + [anon_sym___attribute__] = ACTIONS(6986), + [anon_sym___attribute] = ACTIONS(6988), + [anon_sym_LBRACE] = ACTIONS(6285), + [anon_sym_LBRACK] = ACTIONS(4988), + [anon_sym_const] = ACTIONS(4986), + [anon_sym_constexpr] = ACTIONS(4988), + [anon_sym_volatile] = ACTIONS(4988), + [anon_sym_restrict] = ACTIONS(4988), + [anon_sym___restrict__] = ACTIONS(4988), + [anon_sym__Atomic] = ACTIONS(4988), + [anon_sym__Noreturn] = ACTIONS(4988), + [anon_sym_noreturn] = ACTIONS(4988), + [anon_sym__Nonnull] = ACTIONS(4988), + [anon_sym_mutable] = ACTIONS(4988), + [anon_sym_constinit] = ACTIONS(4988), + [anon_sym_consteval] = ACTIONS(4988), + [anon_sym_alignas] = ACTIONS(4988), + [anon_sym__Alignas] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(4988), + [anon_sym_LT_EQ_GT] = ACTIONS(4988), + [anon_sym_or] = ACTIONS(4988), + [anon_sym_and] = ACTIONS(4988), + [anon_sym_bitor] = ACTIONS(4988), + [anon_sym_xor] = ACTIONS(4988), + [anon_sym_bitand] = ACTIONS(4988), + [anon_sym_not_eq] = ACTIONS(4988), + [anon_sym_DASH_DASH] = ACTIONS(4988), + [anon_sym_PLUS_PLUS] = ACTIONS(4988), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_DOT_STAR] = ACTIONS(4988), + [anon_sym_DASH_GT] = ACTIONS(4988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4988), + [anon_sym_decltype] = ACTIONS(4988), + [anon_sym_final] = ACTIONS(5572), + [anon_sym_override] = ACTIONS(5572), + [anon_sym_GT2] = ACTIONS(4988), + [anon_sym_requires] = ACTIONS(4988), + }, + [STATE(2787)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5158), + [anon_sym_COMMA] = ACTIONS(5158), + [anon_sym_LPAREN2] = ACTIONS(5158), + [anon_sym_DASH] = ACTIONS(5156), + [anon_sym_PLUS] = ACTIONS(5156), + [anon_sym_STAR] = ACTIONS(5158), + [anon_sym_SLASH] = ACTIONS(5156), + [anon_sym_PERCENT] = ACTIONS(5158), + [anon_sym_PIPE_PIPE] = ACTIONS(5158), + [anon_sym_AMP_AMP] = ACTIONS(5158), + [anon_sym_PIPE] = ACTIONS(5156), + [anon_sym_CARET] = ACTIONS(5158), + [anon_sym_AMP] = ACTIONS(5156), + [anon_sym_EQ_EQ] = ACTIONS(5158), + [anon_sym_BANG_EQ] = ACTIONS(5158), + [anon_sym_GT] = ACTIONS(5156), + [anon_sym_GT_EQ] = ACTIONS(5156), + [anon_sym_LT_EQ] = ACTIONS(5156), + [anon_sym_LT] = ACTIONS(5156), + [anon_sym_LT_LT] = ACTIONS(5158), + [anon_sym_GT_GT] = ACTIONS(5156), + [anon_sym___extension__] = ACTIONS(5158), + [anon_sym___attribute__] = ACTIONS(5158), + [anon_sym___attribute] = ACTIONS(5156), + [anon_sym_LBRACE] = ACTIONS(5158), + [anon_sym_signed] = ACTIONS(6951), + [anon_sym_unsigned] = ACTIONS(6951), + [anon_sym_long] = ACTIONS(6951), + [anon_sym_short] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(5158), + [anon_sym_const] = ACTIONS(5156), + [anon_sym_constexpr] = ACTIONS(5158), + [anon_sym_volatile] = ACTIONS(5158), + [anon_sym_restrict] = ACTIONS(5158), + [anon_sym___restrict__] = ACTIONS(5158), + [anon_sym__Atomic] = ACTIONS(5158), + [anon_sym__Noreturn] = ACTIONS(5158), + [anon_sym_noreturn] = ACTIONS(5158), + [anon_sym__Nonnull] = ACTIONS(5158), + [anon_sym_mutable] = ACTIONS(5158), + [anon_sym_constinit] = ACTIONS(5158), + [anon_sym_consteval] = ACTIONS(5158), + [anon_sym_alignas] = ACTIONS(5158), + [anon_sym__Alignas] = ACTIONS(5158), + [anon_sym_QMARK] = ACTIONS(5158), + [anon_sym_LT_EQ_GT] = ACTIONS(5158), + [anon_sym_or] = ACTIONS(5158), + [anon_sym_and] = ACTIONS(5158), + [anon_sym_bitor] = ACTIONS(5158), + [anon_sym_xor] = ACTIONS(5158), + [anon_sym_bitand] = ACTIONS(5158), + [anon_sym_not_eq] = ACTIONS(5158), + [anon_sym_DASH_DASH] = ACTIONS(5158), + [anon_sym_PLUS_PLUS] = ACTIONS(5158), + [anon_sym_DOT] = ACTIONS(5156), + [anon_sym_DOT_STAR] = ACTIONS(5158), + [anon_sym_DASH_GT] = ACTIONS(5158), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5158), + [anon_sym_decltype] = ACTIONS(5158), + [anon_sym_final] = ACTIONS(5158), + [anon_sym_override] = ACTIONS(5158), + [anon_sym_GT2] = ACTIONS(5158), + [anon_sym_requires] = ACTIONS(5158), + }, + [STATE(2788)] = { + [sym_ms_based_modifier] = STATE(8684), + [sym_ms_unaligned_ptr_modifier] = STATE(4347), + [sym_ms_pointer_modifier] = STATE(4194), + [sym__declarator] = STATE(6745), + [sym__abstract_declarator] = STATE(7056), + [sym_parenthesized_declarator] = STATE(6300), + [sym_abstract_parenthesized_declarator] = STATE(6365), + [sym_attributed_declarator] = STATE(6300), + [sym_pointer_declarator] = STATE(6300), + [sym_abstract_pointer_declarator] = STATE(6365), + [sym_function_declarator] = STATE(6300), + [sym_abstract_function_declarator] = STATE(6365), + [sym_array_declarator] = STATE(6300), + [sym_abstract_array_declarator] = STATE(6365), + [sym_type_qualifier] = STATE(3200), + [sym_alignas_qualifier] = STATE(4606), + [sym_parameter_list] = STATE(3336), + [sym_decltype] = STATE(8447), + [sym_reference_declarator] = STATE(6300), + [sym_abstract_reference_declarator] = STATE(6365), + [sym_structured_binding_declarator] = STATE(6300), + [sym__function_declarator_seq] = STATE(6368), + [sym_template_type] = STATE(8447), + [sym_template_function] = STATE(6300), + [sym_destructor_name] = STATE(6300), + [sym_dependent_type_identifier] = STATE(8447), + [sym__scope_resolution] = STATE(6154), + [sym_qualified_identifier] = STATE(6300), + [sym_operator_name] = STATE(6300), + [aux_sym__type_definition_type_repeat1] = STATE(3200), + [aux_sym_pointer_declarator_repeat1] = STATE(4194), + [sym_identifier] = ACTIONS(4344), + [anon_sym_RPAREN] = ACTIONS(6629), + [anon_sym_LPAREN2] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3223), + [anon_sym_AMP] = ACTIONS(3225), + [anon_sym___extension__] = ACTIONS(4029), + [anon_sym_COLON_COLON] = ACTIONS(6763), + [anon_sym___based] = ACTIONS(51), + [sym_ms_restrict_modifier] = ACTIONS(4025), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(4025), + [sym_ms_signed_ptr_modifier] = ACTIONS(4025), + [anon_sym__unaligned] = ACTIONS(4027), + [anon_sym___unaligned] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(6624), + [anon_sym_const] = ACTIONS(4029), + [anon_sym_constexpr] = ACTIONS(4029), + [anon_sym_volatile] = ACTIONS(4029), + [anon_sym_restrict] = ACTIONS(4029), + [anon_sym___restrict__] = ACTIONS(4029), + [anon_sym__Atomic] = ACTIONS(4029), + [anon_sym__Noreturn] = ACTIONS(4029), + [anon_sym_noreturn] = ACTIONS(4029), + [anon_sym__Nonnull] = ACTIONS(4029), + [anon_sym_mutable] = ACTIONS(4029), + [anon_sym_constinit] = ACTIONS(4029), + [anon_sym_consteval] = ACTIONS(4029), + [anon_sym_alignas] = ACTIONS(4031), + [anon_sym__Alignas] = ACTIONS(4031), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(1263), + [anon_sym_operator] = ACTIONS(3197), + }, + [STATE(2789)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4819), + [anon_sym_COMMA] = ACTIONS(4819), + [anon_sym_RPAREN] = ACTIONS(4819), + [anon_sym_LPAREN2] = ACTIONS(4819), + [anon_sym_DASH] = ACTIONS(4817), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_STAR] = ACTIONS(4817), + [anon_sym_SLASH] = ACTIONS(4817), + [anon_sym_PERCENT] = ACTIONS(4817), + [anon_sym_PIPE_PIPE] = ACTIONS(4819), + [anon_sym_AMP_AMP] = ACTIONS(4819), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_CARET] = ACTIONS(4817), + [anon_sym_AMP] = ACTIONS(4817), + [anon_sym_EQ_EQ] = ACTIONS(4819), + [anon_sym_BANG_EQ] = ACTIONS(4819), + [anon_sym_GT] = ACTIONS(4817), + [anon_sym_GT_EQ] = ACTIONS(4819), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4817), + [anon_sym_LT_LT] = ACTIONS(4817), + [anon_sym_GT_GT] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4819), + [anon_sym___attribute__] = ACTIONS(4819), + [anon_sym___attribute] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(4819), + [anon_sym_RBRACE] = ACTIONS(4819), + [anon_sym_signed] = ACTIONS(6980), + [anon_sym_unsigned] = ACTIONS(6980), + [anon_sym_long] = ACTIONS(6980), + [anon_sym_short] = ACTIONS(6980), + [anon_sym_LBRACK] = ACTIONS(4819), + [anon_sym_RBRACK] = ACTIONS(4819), + [anon_sym_EQ] = ACTIONS(4817), + [anon_sym_COLON] = ACTIONS(4819), + [anon_sym_QMARK] = ACTIONS(4819), + [anon_sym_STAR_EQ] = ACTIONS(4819), + [anon_sym_SLASH_EQ] = ACTIONS(4819), + [anon_sym_PERCENT_EQ] = ACTIONS(4819), + [anon_sym_PLUS_EQ] = ACTIONS(4819), + [anon_sym_DASH_EQ] = ACTIONS(4819), + [anon_sym_LT_LT_EQ] = ACTIONS(4819), + [anon_sym_GT_GT_EQ] = ACTIONS(4819), + [anon_sym_AMP_EQ] = ACTIONS(4819), + [anon_sym_CARET_EQ] = ACTIONS(4819), + [anon_sym_PIPE_EQ] = ACTIONS(4819), + [anon_sym_and_eq] = ACTIONS(4819), + [anon_sym_or_eq] = ACTIONS(4819), + [anon_sym_xor_eq] = ACTIONS(4819), + [anon_sym_LT_EQ_GT] = ACTIONS(4819), + [anon_sym_or] = ACTIONS(4817), + [anon_sym_and] = ACTIONS(4817), + [anon_sym_bitor] = ACTIONS(4819), + [anon_sym_xor] = ACTIONS(4817), + [anon_sym_bitand] = ACTIONS(4819), + [anon_sym_not_eq] = ACTIONS(4819), + [anon_sym_DASH_DASH] = ACTIONS(4819), + [anon_sym_PLUS_PLUS] = ACTIONS(4819), + [anon_sym_DOT] = ACTIONS(4817), + [anon_sym_DOT_STAR] = ACTIONS(4819), + [anon_sym_DASH_GT] = ACTIONS(4819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4819), + [anon_sym_decltype] = ACTIONS(4819), + }, + [STATE(2790)] = { + [sym_template_argument_list] = STATE(2770), + [sym_identifier] = ACTIONS(6990), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6992), + [anon_sym_COMMA] = ACTIONS(6992), + [anon_sym_RPAREN] = ACTIONS(6992), + [aux_sym_preproc_if_token2] = ACTIONS(6992), + [aux_sym_preproc_else_token1] = ACTIONS(6992), + [aux_sym_preproc_elif_token1] = ACTIONS(6990), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6992), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6992), + [anon_sym_LPAREN2] = ACTIONS(6992), + [anon_sym_DASH] = ACTIONS(6990), + [anon_sym_PLUS] = ACTIONS(6990), + [anon_sym_STAR] = ACTIONS(6990), + [anon_sym_SLASH] = ACTIONS(6990), + [anon_sym_PERCENT] = ACTIONS(6990), + [anon_sym_PIPE_PIPE] = ACTIONS(6992), + [anon_sym_AMP_AMP] = ACTIONS(6992), + [anon_sym_PIPE] = ACTIONS(6990), + [anon_sym_CARET] = ACTIONS(6990), + [anon_sym_AMP] = ACTIONS(6990), + [anon_sym_EQ_EQ] = ACTIONS(6992), + [anon_sym_BANG_EQ] = ACTIONS(6992), + [anon_sym_GT] = ACTIONS(6990), + [anon_sym_GT_EQ] = ACTIONS(6992), + [anon_sym_LT_EQ] = ACTIONS(6990), + [anon_sym_LT] = ACTIONS(6994), + [anon_sym_LT_LT] = ACTIONS(6990), + [anon_sym_GT_GT] = ACTIONS(6990), + [anon_sym_SEMI] = ACTIONS(6992), + [anon_sym___attribute__] = ACTIONS(6990), + [anon_sym___attribute] = ACTIONS(6990), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_RBRACE] = ACTIONS(6992), + [anon_sym_LBRACK] = ACTIONS(6992), + [anon_sym_RBRACK] = ACTIONS(6992), + [anon_sym_EQ] = ACTIONS(6990), + [anon_sym_COLON] = ACTIONS(6990), + [anon_sym_QMARK] = ACTIONS(6992), + [anon_sym_STAR_EQ] = ACTIONS(6992), + [anon_sym_SLASH_EQ] = ACTIONS(6992), + [anon_sym_PERCENT_EQ] = ACTIONS(6992), + [anon_sym_PLUS_EQ] = ACTIONS(6992), + [anon_sym_DASH_EQ] = ACTIONS(6992), + [anon_sym_LT_LT_EQ] = ACTIONS(6992), + [anon_sym_GT_GT_EQ] = ACTIONS(6992), + [anon_sym_AMP_EQ] = ACTIONS(6992), + [anon_sym_CARET_EQ] = ACTIONS(6992), + [anon_sym_PIPE_EQ] = ACTIONS(6992), + [anon_sym_and_eq] = ACTIONS(6990), + [anon_sym_or_eq] = ACTIONS(6990), + [anon_sym_xor_eq] = ACTIONS(6990), + [anon_sym_LT_EQ_GT] = ACTIONS(6992), + [anon_sym_or] = ACTIONS(6990), + [anon_sym_and] = ACTIONS(6990), + [anon_sym_bitor] = ACTIONS(6990), + [anon_sym_xor] = ACTIONS(6990), + [anon_sym_bitand] = ACTIONS(6990), + [anon_sym_not_eq] = ACTIONS(6990), + [anon_sym_DASH_DASH] = ACTIONS(6992), + [anon_sym_PLUS_PLUS] = ACTIONS(6992), + [anon_sym_DOT] = ACTIONS(6990), + [anon_sym_DOT_STAR] = ACTIONS(6992), + [anon_sym_DASH_GT] = ACTIONS(6992), + [sym_comment] = ACTIONS(3), + }, + [STATE(2791)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5162), + [anon_sym_COMMA] = ACTIONS(5162), + [anon_sym_RPAREN] = ACTIONS(5162), + [anon_sym_LPAREN2] = ACTIONS(5162), + [anon_sym_DASH] = ACTIONS(5160), + [anon_sym_PLUS] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5160), + [anon_sym_SLASH] = ACTIONS(5160), + [anon_sym_PERCENT] = ACTIONS(5160), + [anon_sym_PIPE_PIPE] = ACTIONS(5162), + [anon_sym_AMP_AMP] = ACTIONS(5162), + [anon_sym_PIPE] = ACTIONS(5160), + [anon_sym_CARET] = ACTIONS(5160), + [anon_sym_AMP] = ACTIONS(5160), + [anon_sym_EQ_EQ] = ACTIONS(5162), + [anon_sym_BANG_EQ] = ACTIONS(5162), + [anon_sym_GT] = ACTIONS(5160), + [anon_sym_GT_EQ] = ACTIONS(5162), + [anon_sym_LT_EQ] = ACTIONS(5160), + [anon_sym_LT] = ACTIONS(5160), + [anon_sym_LT_LT] = ACTIONS(5160), + [anon_sym_GT_GT] = ACTIONS(5160), + [anon_sym_SEMI] = ACTIONS(5162), + [anon_sym___attribute__] = ACTIONS(5162), + [anon_sym___attribute] = ACTIONS(5160), + [anon_sym_LBRACE] = ACTIONS(5162), + [anon_sym_RBRACE] = ACTIONS(5162), + [anon_sym_signed] = ACTIONS(6945), + [anon_sym_unsigned] = ACTIONS(6945), + [anon_sym_long] = ACTIONS(6945), + [anon_sym_short] = ACTIONS(6945), + [anon_sym_LBRACK] = ACTIONS(5162), + [anon_sym_RBRACK] = ACTIONS(5162), + [anon_sym_EQ] = ACTIONS(5160), + [anon_sym_COLON] = ACTIONS(5162), + [anon_sym_QMARK] = ACTIONS(5162), + [anon_sym_STAR_EQ] = ACTIONS(5162), + [anon_sym_SLASH_EQ] = ACTIONS(5162), + [anon_sym_PERCENT_EQ] = ACTIONS(5162), + [anon_sym_PLUS_EQ] = ACTIONS(5162), + [anon_sym_DASH_EQ] = ACTIONS(5162), + [anon_sym_LT_LT_EQ] = ACTIONS(5162), + [anon_sym_GT_GT_EQ] = ACTIONS(5162), + [anon_sym_AMP_EQ] = ACTIONS(5162), + [anon_sym_CARET_EQ] = ACTIONS(5162), + [anon_sym_PIPE_EQ] = ACTIONS(5162), + [anon_sym_and_eq] = ACTIONS(5162), + [anon_sym_or_eq] = ACTIONS(5162), + [anon_sym_xor_eq] = ACTIONS(5162), + [anon_sym_LT_EQ_GT] = ACTIONS(5162), + [anon_sym_or] = ACTIONS(5160), + [anon_sym_and] = ACTIONS(5160), + [anon_sym_bitor] = ACTIONS(5162), + [anon_sym_xor] = ACTIONS(5160), + [anon_sym_bitand] = ACTIONS(5162), + [anon_sym_not_eq] = ACTIONS(5162), + [anon_sym_DASH_DASH] = ACTIONS(5162), + [anon_sym_PLUS_PLUS] = ACTIONS(5162), + [anon_sym_DOT] = ACTIONS(5160), + [anon_sym_DOT_STAR] = ACTIONS(5162), + [anon_sym_DASH_GT] = ACTIONS(5162), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5162), + [anon_sym_decltype] = ACTIONS(5162), + }, + [STATE(2792)] = { + [sym_attribute_specifier] = STATE(2500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5478), + [anon_sym_COMMA] = ACTIONS(5478), + [anon_sym_RPAREN] = ACTIONS(5478), + [anon_sym_LPAREN2] = ACTIONS(5478), + [anon_sym_DASH] = ACTIONS(5476), + [anon_sym_PLUS] = ACTIONS(5476), + [anon_sym_STAR] = ACTIONS(5478), + [anon_sym_SLASH] = ACTIONS(5476), + [anon_sym_PERCENT] = ACTIONS(5478), + [anon_sym_PIPE_PIPE] = ACTIONS(5478), + [anon_sym_AMP_AMP] = ACTIONS(5478), + [anon_sym_PIPE] = ACTIONS(5476), + [anon_sym_CARET] = ACTIONS(5478), + [anon_sym_AMP] = ACTIONS(5476), + [anon_sym_EQ_EQ] = ACTIONS(5478), + [anon_sym_BANG_EQ] = ACTIONS(5478), + [anon_sym_GT] = ACTIONS(5476), + [anon_sym_GT_EQ] = ACTIONS(5478), + [anon_sym_LT_EQ] = ACTIONS(5476), + [anon_sym_LT] = ACTIONS(5476), + [anon_sym_LT_LT] = ACTIONS(5478), + [anon_sym_GT_GT] = ACTIONS(5478), + [anon_sym_SEMI] = ACTIONS(5478), + [anon_sym___extension__] = ACTIONS(5478), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6673), + [anon_sym_LBRACE] = ACTIONS(5478), + [anon_sym_RBRACE] = ACTIONS(5478), + [anon_sym_LBRACK] = ACTIONS(5478), + [anon_sym_RBRACK] = ACTIONS(5478), + [anon_sym_const] = ACTIONS(5476), + [anon_sym_constexpr] = ACTIONS(5478), + [anon_sym_volatile] = ACTIONS(5478), + [anon_sym_restrict] = ACTIONS(5478), + [anon_sym___restrict__] = ACTIONS(5478), + [anon_sym__Atomic] = ACTIONS(5478), + [anon_sym__Noreturn] = ACTIONS(5478), + [anon_sym_noreturn] = ACTIONS(5478), + [anon_sym__Nonnull] = ACTIONS(5478), + [anon_sym_mutable] = ACTIONS(5478), + [anon_sym_constinit] = ACTIONS(5478), + [anon_sym_consteval] = ACTIONS(5478), + [anon_sym_alignas] = ACTIONS(5478), + [anon_sym__Alignas] = ACTIONS(5478), + [anon_sym_COLON] = ACTIONS(5478), + [anon_sym_QMARK] = ACTIONS(5478), + [anon_sym_LT_EQ_GT] = ACTIONS(5478), + [anon_sym_or] = ACTIONS(5478), + [anon_sym_and] = ACTIONS(5478), + [anon_sym_bitor] = ACTIONS(5478), + [anon_sym_xor] = ACTIONS(5478), + [anon_sym_bitand] = ACTIONS(5478), + [anon_sym_not_eq] = ACTIONS(5478), + [anon_sym_DASH_DASH] = ACTIONS(5478), + [anon_sym_PLUS_PLUS] = ACTIONS(5478), + [anon_sym_DOT] = ACTIONS(5476), + [anon_sym_DOT_STAR] = ACTIONS(5478), + [anon_sym_DASH_GT] = ACTIONS(5478), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5478), + [anon_sym_decltype] = ACTIONS(5478), + [anon_sym_final] = ACTIONS(5478), + [anon_sym_override] = ACTIONS(5478), + [anon_sym_requires] = ACTIONS(5478), + }, + [STATE(2793)] = { + [sym_attribute_specifier] = STATE(2476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5490), + [anon_sym_COMMA] = ACTIONS(5490), + [anon_sym_RPAREN] = ACTIONS(5490), + [anon_sym_LPAREN2] = ACTIONS(5490), + [anon_sym_DASH] = ACTIONS(5488), + [anon_sym_PLUS] = ACTIONS(5488), + [anon_sym_STAR] = ACTIONS(5490), + [anon_sym_SLASH] = ACTIONS(5488), + [anon_sym_PERCENT] = ACTIONS(5490), + [anon_sym_PIPE_PIPE] = ACTIONS(5490), + [anon_sym_AMP_AMP] = ACTIONS(5490), + [anon_sym_PIPE] = ACTIONS(5488), + [anon_sym_CARET] = ACTIONS(5490), + [anon_sym_AMP] = ACTIONS(5488), + [anon_sym_EQ_EQ] = ACTIONS(5490), + [anon_sym_BANG_EQ] = ACTIONS(5490), + [anon_sym_GT] = ACTIONS(5488), + [anon_sym_GT_EQ] = ACTIONS(5490), + [anon_sym_LT_EQ] = ACTIONS(5488), + [anon_sym_LT] = ACTIONS(5488), + [anon_sym_LT_LT] = ACTIONS(5490), + [anon_sym_GT_GT] = ACTIONS(5490), + [anon_sym_SEMI] = ACTIONS(5490), + [anon_sym___extension__] = ACTIONS(5490), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6673), + [anon_sym_LBRACE] = ACTIONS(5490), + [anon_sym_RBRACE] = ACTIONS(5490), + [anon_sym_LBRACK] = ACTIONS(5490), + [anon_sym_RBRACK] = ACTIONS(5490), + [anon_sym_const] = ACTIONS(5488), + [anon_sym_constexpr] = ACTIONS(5490), + [anon_sym_volatile] = ACTIONS(5490), + [anon_sym_restrict] = ACTIONS(5490), + [anon_sym___restrict__] = ACTIONS(5490), + [anon_sym__Atomic] = ACTIONS(5490), + [anon_sym__Noreturn] = ACTIONS(5490), + [anon_sym_noreturn] = ACTIONS(5490), + [anon_sym__Nonnull] = ACTIONS(5490), + [anon_sym_mutable] = ACTIONS(5490), + [anon_sym_constinit] = ACTIONS(5490), + [anon_sym_consteval] = ACTIONS(5490), + [anon_sym_alignas] = ACTIONS(5490), + [anon_sym__Alignas] = ACTIONS(5490), + [anon_sym_COLON] = ACTIONS(5490), + [anon_sym_QMARK] = ACTIONS(5490), + [anon_sym_LT_EQ_GT] = ACTIONS(5490), + [anon_sym_or] = ACTIONS(5490), + [anon_sym_and] = ACTIONS(5490), + [anon_sym_bitor] = ACTIONS(5490), + [anon_sym_xor] = ACTIONS(5490), + [anon_sym_bitand] = ACTIONS(5490), + [anon_sym_not_eq] = ACTIONS(5490), + [anon_sym_DASH_DASH] = ACTIONS(5490), + [anon_sym_PLUS_PLUS] = ACTIONS(5490), + [anon_sym_DOT] = ACTIONS(5488), + [anon_sym_DOT_STAR] = ACTIONS(5490), + [anon_sym_DASH_GT] = ACTIONS(5490), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5490), + [anon_sym_decltype] = ACTIONS(5490), + [anon_sym_final] = ACTIONS(5490), + [anon_sym_override] = ACTIONS(5490), + [anon_sym_requires] = ACTIONS(5490), + }, + [STATE(2794)] = { + [sym_attribute_specifier] = STATE(2486), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5452), + [anon_sym_COMMA] = ACTIONS(5452), + [anon_sym_RPAREN] = ACTIONS(5452), + [anon_sym_LPAREN2] = ACTIONS(5452), + [anon_sym_DASH] = ACTIONS(5450), + [anon_sym_PLUS] = ACTIONS(5450), + [anon_sym_STAR] = ACTIONS(5452), + [anon_sym_SLASH] = ACTIONS(5450), + [anon_sym_PERCENT] = ACTIONS(5452), + [anon_sym_PIPE_PIPE] = ACTIONS(5452), + [anon_sym_AMP_AMP] = ACTIONS(5452), + [anon_sym_PIPE] = ACTIONS(5450), + [anon_sym_CARET] = ACTIONS(5452), + [anon_sym_AMP] = ACTIONS(5450), + [anon_sym_EQ_EQ] = ACTIONS(5452), + [anon_sym_BANG_EQ] = ACTIONS(5452), + [anon_sym_GT] = ACTIONS(5450), + [anon_sym_GT_EQ] = ACTIONS(5452), + [anon_sym_LT_EQ] = ACTIONS(5450), + [anon_sym_LT] = ACTIONS(5450), + [anon_sym_LT_LT] = ACTIONS(5452), + [anon_sym_GT_GT] = ACTIONS(5452), + [anon_sym_SEMI] = ACTIONS(5452), + [anon_sym___extension__] = ACTIONS(5452), + [anon_sym___attribute__] = ACTIONS(6671), + [anon_sym___attribute] = ACTIONS(6673), + [anon_sym_LBRACE] = ACTIONS(5452), + [anon_sym_RBRACE] = ACTIONS(5452), + [anon_sym_LBRACK] = ACTIONS(5452), + [anon_sym_RBRACK] = ACTIONS(5452), + [anon_sym_const] = ACTIONS(5450), + [anon_sym_constexpr] = ACTIONS(5452), + [anon_sym_volatile] = ACTIONS(5452), + [anon_sym_restrict] = ACTIONS(5452), + [anon_sym___restrict__] = ACTIONS(5452), + [anon_sym__Atomic] = ACTIONS(5452), + [anon_sym__Noreturn] = ACTIONS(5452), + [anon_sym_noreturn] = ACTIONS(5452), + [anon_sym__Nonnull] = ACTIONS(5452), + [anon_sym_mutable] = ACTIONS(5452), + [anon_sym_constinit] = ACTIONS(5452), + [anon_sym_consteval] = ACTIONS(5452), + [anon_sym_alignas] = ACTIONS(5452), + [anon_sym__Alignas] = ACTIONS(5452), + [anon_sym_COLON] = ACTIONS(5452), + [anon_sym_QMARK] = ACTIONS(5452), + [anon_sym_LT_EQ_GT] = ACTIONS(5452), + [anon_sym_or] = ACTIONS(5452), + [anon_sym_and] = ACTIONS(5452), + [anon_sym_bitor] = ACTIONS(5452), + [anon_sym_xor] = ACTIONS(5452), + [anon_sym_bitand] = ACTIONS(5452), + [anon_sym_not_eq] = ACTIONS(5452), + [anon_sym_DASH_DASH] = ACTIONS(5452), + [anon_sym_PLUS_PLUS] = ACTIONS(5452), + [anon_sym_DOT] = ACTIONS(5450), + [anon_sym_DOT_STAR] = ACTIONS(5452), + [anon_sym_DASH_GT] = ACTIONS(5452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5452), + [anon_sym_decltype] = ACTIONS(5452), + [anon_sym_final] = ACTIONS(5452), + [anon_sym_override] = ACTIONS(5452), + [anon_sym_requires] = ACTIONS(5452), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6997), 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___attribute__, + 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(6999), 35, + 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [71] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2711), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6864), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6866), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(6643), 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(6641), 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, + [148] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7001), 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___attribute__, + 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(7003), 35, + 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [219] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4694), 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___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(4696), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [290] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6263), 1, + anon_sym_LBRACE, + ACTIONS(7005), 1, + anon_sym___attribute__, + ACTIONS(7007), 1, + anon_sym___attribute, + STATE(3172), 1, + sym_field_declaration_list, + STATE(3331), 1, + sym_attribute_specifier, + STATE(7322), 1, + sym_virtual_specifier, + STATE(8250), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4986), 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(4988), 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, + [379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7009), 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___attribute__, + 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(7011), 35, + 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7013), 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___attribute__, + 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(7015), 35, + 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [521] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7017), 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___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, + sym_identifier, + ACTIONS(7019), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [604] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5672), 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(5674), 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, + [675] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2720), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6835), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4735), 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(4737), 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, + [750] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4478), 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___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(4480), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [821] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5672), 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___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(5674), 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, + [892] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7027), 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___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, + sym_identifier, + ACTIONS(7029), 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_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_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + [977] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7033), 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___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, + sym_identifier, + ACTIONS(7035), 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_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_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + [1062] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7037), 1, + sym_identifier, + STATE(2835), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3240), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3242), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(6503), 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(6501), 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, + [1141] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7043), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(7039), 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___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(7041), 33, + 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_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, + [1214] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7049), 1, + anon_sym_LT, + STATE(2749), 1, + sym_template_argument_list, + ACTIONS(7045), 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___attribute__, + 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(7047), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [1289] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7052), 1, + sym_identifier, + STATE(2812), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(7055), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7058), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(6510), 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(6508), 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, + [1368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2628), 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___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(2630), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [1439] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7009), 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___attribute__, + 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(7011), 35, + 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [1510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6524), 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(6526), 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, + [1581] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6285), 1, + anon_sym_LBRACE, + STATE(3049), 1, + sym_field_declaration_list, + STATE(7362), 1, + sym_virtual_specifier, + STATE(8043), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5124), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5126), 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_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [1664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5676), 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___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(5678), 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, + [1735] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6285), 1, + anon_sym_LBRACE, + STATE(3051), 1, + sym_field_declaration_list, + STATE(7372), 1, + sym_virtual_specifier, + STATE(8096), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5134), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5136), 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_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [1818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7009), 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___attribute__, + 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(7011), 35, + 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [1889] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + STATE(917), 1, + sym_template_argument_list, + STATE(2951), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7061), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5070), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5072), 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, + [1968] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6285), 1, + anon_sym_LBRACE, + STATE(3070), 1, + sym_field_declaration_list, + STATE(7270), 1, + sym_virtual_specifier, + STATE(8082), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5116), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5118), 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_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [2051] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7063), 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___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, + sym_identifier, + ACTIONS(7065), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [2134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7067), 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___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(7069), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [2205] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7071), 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___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, + sym_identifier, + ACTIONS(7073), 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_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_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + [2290] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4698), 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___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(4700), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [2361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 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___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(6530), 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, + [2432] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2632), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6818), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4520), 17, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + ACTIONS(5131), 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(5128), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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___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, + [2509] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7075), 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___attribute__, + 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(7077), 35, + 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [2580] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5676), 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(5678), 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, + [2651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 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(6530), 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, + [2722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7079), 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___attribute__, + 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(7081), 35, + 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [2793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6524), 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___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(6526), 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, + [2864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 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___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(2626), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [2935] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7083), 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___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, + sym_identifier, + ACTIONS(7085), 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_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_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + [3020] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7087), 1, + sym_identifier, + STATE(2812), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3240), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3242), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(6522), 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(6520), 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, + [3099] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6285), 1, + anon_sym_LBRACE, + STATE(3067), 1, + sym_field_declaration_list, + STATE(7380), 1, + sym_virtual_specifier, + STATE(8064), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5120), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5122), 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_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [3182] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7089), 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___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, + sym_identifier, + ACTIONS(7091), 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_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_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + [3267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4233), 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___attribute__, + 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(4235), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [3337] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7093), 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___attribute__, + 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), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [3407] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7097), 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___attribute__, + 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(7099), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [3477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7101), 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___attribute__, + 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(7103), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [3547] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4217), 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___attribute__, + 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(4219), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [3617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5676), 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(5678), 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, + [3687] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7105), 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___attribute__, + 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(7107), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [3757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7109), 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___attribute__, + 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(7111), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [3827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3097), 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___attribute__, + 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(3089), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [3897] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4243), 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___attribute__, + 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(4245), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [3967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4336), 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___attribute__, + 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(4332), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [4037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7113), 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___attribute__, + 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(7115), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [4107] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7117), 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___attribute__, + 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(7119), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [4177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7121), 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___attribute__, + 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(7123), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [4247] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 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___attribute__, + 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(4257), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [4317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4237), 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___attribute__, + 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(4239), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [4387] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4247), 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___attribute__, + 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(4249), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [4457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7125), 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___attribute__, + 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(7127), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [4527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7129), 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___attribute__, + 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(7131), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [4597] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7133), 1, + anon_sym_AMP_AMP, + ACTIONS(7135), 1, + anon_sym_and, + ACTIONS(4647), 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___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(4649), 33, + 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_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, + [4671] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7137), 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___attribute__, + 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(7139), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [4741] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4251), 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___attribute__, + 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(4253), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [4811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4340), 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___attribute__, + 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(1978), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [4881] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7141), 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___attribute__, + 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(7143), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [4951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 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___attribute__, + 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(4223), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [5021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6677), 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___attribute__, + 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(6675), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [5091] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7145), 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___attribute__, + 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(7147), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [5161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7149), 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___attribute__, + 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(7151), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [5231] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + STATE(917), 1, + sym_template_argument_list, + STATE(2981), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7153), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5070), 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___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5072), 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, + [5309] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7155), 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___attribute__, + 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(7157), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [5379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7159), 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___attribute__, + 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(7161), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [5449] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7163), 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___attribute__, + 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(7165), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [5519] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6524), 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(6526), 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, + [5589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7167), 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___attribute__, + 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(7169), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [5659] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5676), 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(5678), 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, + [5729] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7171), 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___attribute__, + 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(7173), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [5799] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6532), 1, + anon_sym___attribute, + ACTIONS(6711), 1, + anon_sym_LBRACE, + ACTIONS(7175), 1, + anon_sym___attribute__, + ACTIONS(7177), 1, + anon_sym_COLON, + STATE(2586), 1, + sym__enum_base_clause, + STATE(2625), 1, + sym_enumerator_list, + STATE(2706), 1, + sym_attribute_specifier, + ACTIONS(5454), 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(5456), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_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, + [5883] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 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(6530), 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, + [5953] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7179), 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___attribute__, + 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(7181), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [6023] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7183), 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___attribute__, + 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(7185), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [6093] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7039), 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___attribute__, + 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(7041), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [6163] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4209), 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___attribute__, + 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(4211), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [6233] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7187), 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___attribute__, + 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(7189), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [6303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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___attribute__, + 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(3274), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [6373] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(7191), 1, + anon_sym___attribute__, + ACTIONS(7193), 1, + anon_sym___attribute, + STATE(3204), 1, + sym_field_declaration_list, + STATE(3490), 1, + sym_attribute_specifier, + STATE(7297), 1, + sym_virtual_specifier, + STATE(8351), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4986), 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(4988), 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, + [6461] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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___attribute__, + 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(3274), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [6531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6524), 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(6526), 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, + [6601] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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___attribute__, + 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(3274), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [6671] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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___attribute__, + 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(3274), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [6741] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7195), 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___attribute__, + 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(7197), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [6811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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___attribute__, + 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(3274), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [6881] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7199), 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___attribute__, + 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(7201), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [6951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1875), 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___attribute__, + 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(1873), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [7021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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___attribute__, + 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(3274), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [7091] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7203), 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___attribute__, + 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(7205), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [7161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7207), 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___attribute__, + 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(7209), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [7231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7211), 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___attribute__, + 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(7213), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [7301] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6532), 1, + anon_sym___attribute, + ACTIONS(6711), 1, + anon_sym_LBRACE, + ACTIONS(7175), 1, + anon_sym___attribute__, + ACTIONS(7177), 1, + anon_sym_COLON, + STATE(2577), 1, + sym__enum_base_clause, + STATE(2612), 1, + sym_enumerator_list, + STATE(2667), 1, + sym_attribute_specifier, + ACTIONS(5504), 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(5506), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_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, + [7385] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5672), 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(5674), 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, + [7455] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7215), 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___attribute__, + 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(7217), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [7525] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7219), 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___attribute__, + 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(7221), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [7595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 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___attribute__, + 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(7225), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [7665] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 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___attribute__, + 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(7229), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [7735] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7231), 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___attribute__, + 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(7233), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [7805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7235), 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___attribute__, + 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(7237), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [7875] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7239), 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___attribute__, + 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(7241), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [7945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7243), 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___attribute__, + 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(7245), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [8015] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7247), 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___attribute__, + 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(7249), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [8085] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4225), 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___attribute__, + 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(4227), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [8155] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7251), 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___attribute__, + 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(7253), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [8225] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4229), 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___attribute__, + 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(4231), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [8295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7255), 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___attribute__, + 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(7257), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [8365] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7259), 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___attribute__, + 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(7261), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [8435] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7263), 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___attribute__, + 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(7265), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [8505] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 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___attribute__, + 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(4183), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [8575] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 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___attribute__, + 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(4215), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [8645] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7267), 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___attribute__, + 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(7269), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [8715] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7271), 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___attribute__, + 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(7273), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [8785] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 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___attribute__, + 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(4215), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [8855] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7133), 1, + anon_sym_AMP_AMP, + ACTIONS(7135), 1, + anon_sym_and, + ACTIONS(7275), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7277), 1, + anon_sym_or, + ACTIONS(4561), 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___attribute__, + anon_sym___attribute, + 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_DOT, + sym_identifier, + ACTIONS(4563), 32, + 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_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, + [8933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 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___attribute__, + 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(4215), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [9003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7279), 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___attribute__, + 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(7281), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [9073] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7283), 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___attribute__, + 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(7285), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [9143] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7247), 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___attribute__, + 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(7249), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [9213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7287), 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___attribute__, + 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(7289), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [9283] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5672), 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(5674), 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, + [9353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3097), 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___attribute__, + 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(3089), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [9423] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7291), 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___attribute__, + 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(7293), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [9493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 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___attribute__, + 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(1877), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [9563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 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(6530), 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, + [9633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7295), 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___attribute__, + 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(7297), 34, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [9703] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2383), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7299), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5180), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5182), 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, + [9776] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(7301), 1, + anon_sym_LT, + STATE(2987), 1, + sym_template_argument_list, + ACTIONS(4529), 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_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, + anon_sym_DASH_GT, + ACTIONS(3113), 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, + [9851] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3264), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3266), 47, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [9920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3268), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3270), 47, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [9989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3260), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3262), 47, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [10058] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4531), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4533), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [10129] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2383), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7299), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5164), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5166), 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, + [10202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3254), 47, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [10271] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3248), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3250), 47, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [10340] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4541), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4543), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [10411] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(7301), 1, + anon_sym_LT, + STATE(2951), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2987), 1, + sym_template_argument_list, + ACTIONS(7061), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3087), 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(3095), 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, + [10490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5672), 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(5674), 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, + [10559] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6986), 1, + anon_sym___attribute__, + ACTIONS(6988), 1, + anon_sym___attribute, + ACTIONS(7303), 1, + anon_sym_LBRACE, + STATE(3011), 1, + sym_enumerator_list, + STATE(3078), 1, + sym_attribute_specifier, + ACTIONS(5266), 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(5268), 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_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [10638] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2948), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7305), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4817), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4819), 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, + [10711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3244), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3246), 47, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [10780] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2953), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7307), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5184), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5186), 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, + [10853] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2954), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7309), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5168), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5170), 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, + [10926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 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(6530), 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, + [10995] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4537), 47, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [11064] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2383), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7299), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5143), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5145), 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, + [11137] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2809), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(3240), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3242), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(6641), 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(6643), 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, + [11212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3289), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3296), 47, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [11281] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2383), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7299), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5190), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5192), 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, + [11354] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6614), 1, + anon_sym_STAR, + ACTIONS(6616), 1, + anon_sym_AMP_AMP, + ACTIONS(6618), 1, + anon_sym_AMP, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(6624), 1, + anon_sym_LBRACK, + STATE(3376), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6666), 1, + sym__declarator, + STATE(6866), 1, + sym__abstract_declarator, + STATE(8558), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6631), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(6629), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [11473] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2383), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7299), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5152), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5154), 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, + [11546] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2383), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7299), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5160), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5162), 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, + [11619] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4531), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4533), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [11690] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(7311), 1, + anon_sym_LT, + STATE(2987), 1, + sym_template_argument_list, + ACTIONS(3272), 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_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, + anon_sym_DASH_GT, + ACTIONS(3279), 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, + [11765] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6614), 1, + anon_sym_STAR, + ACTIONS(6616), 1, + anon_sym_AMP_AMP, + ACTIONS(6618), 1, + anon_sym_AMP, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(6624), 1, + anon_sym_LBRACK, + STATE(3376), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6659), 1, + sym__declarator, + STATE(6867), 1, + sym__abstract_declarator, + STATE(8558), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7316), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(7314), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [11884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5676), 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(5678), 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, + [11953] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2935), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5194), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5196), 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, + [12026] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2964), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7320), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5174), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5176), 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, + [12099] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6524), 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(6526), 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, + [12168] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6986), 1, + anon_sym___attribute__, + ACTIONS(6988), 1, + anon_sym___attribute, + ACTIONS(7303), 1, + anon_sym_LBRACE, + STATE(2970), 1, + sym_enumerator_list, + STATE(3063), 1, + sym_attribute_specifier, + ACTIONS(5246), 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(5248), 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_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [12247] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3256), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3258), 47, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [12316] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2383), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7299), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5156), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 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, + [12389] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6986), 1, + anon_sym___attribute__, + ACTIONS(6988), 1, + anon_sym___attribute, + STATE(3077), 1, + sym_attribute_specifier, + ACTIONS(5446), 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(5448), 45, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [12463] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6986), 1, + anon_sym___attribute__, + ACTIONS(6988), 1, + anon_sym___attribute, + STATE(3046), 1, + sym_attribute_specifier, + ACTIONS(5462), 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(5464), 45, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [12537] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2388), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7322), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5156), 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___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5158), 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, + [12609] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6297), 1, + anon_sym_LBRACE, + ACTIONS(7324), 1, + anon_sym___attribute__, + ACTIONS(7326), 1, + anon_sym___attribute, + STATE(3372), 1, + sym_field_declaration_list, + STATE(3785), 1, + sym_attribute_specifier, + STATE(7430), 1, + sym_virtual_specifier, + STATE(8025), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4986), 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(4988), 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, + [12695] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6986), 1, + anon_sym___attribute__, + ACTIONS(6988), 1, + anon_sym___attribute, + STATE(3092), 1, + sym_attribute_specifier, + ACTIONS(5484), 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(5486), 45, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [12769] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6986), 1, + anon_sym___attribute__, + ACTIONS(6988), 1, + anon_sym___attribute, + STATE(3079), 1, + sym_attribute_specifier, + ACTIONS(5480), 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(5482), 45, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [12843] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2388), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7322), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5160), 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___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5162), 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, + [12915] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4541), 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___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4543), 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, + [12985] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6986), 1, + anon_sym___attribute__, + ACTIONS(6988), 1, + anon_sym___attribute, + STATE(3054), 1, + sym_attribute_specifier, + ACTIONS(5450), 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(5452), 45, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [13059] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2971), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7328), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5168), 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___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5170), 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, + [13131] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2388), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7322), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5180), 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___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5182), 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, + [13203] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3363), 1, + sym_field_declaration_list, + STATE(7400), 1, + sym_virtual_specifier, + STATE(8287), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5120), 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(5122), 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, + [13283] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 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___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4537), 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, + [13351] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2388), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7322), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5164), 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___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5166), 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, + [13423] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + STATE(917), 1, + sym_template_argument_list, + STATE(3111), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7330), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5070), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5072), 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, + [13499] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2978), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7332), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5194), 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___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5196), 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, + [13571] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2388), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7322), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5190), 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___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5192), 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, + [13643] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7334), 1, + sym_auto, + ACTIONS(7336), 1, + anon_sym_decltype, + STATE(3043), 1, + sym_decltype_auto, + ACTIONS(4785), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4787), 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_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [13717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4754), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4756), 47, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [13785] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3381), 1, + sym_field_declaration_list, + STATE(7401), 1, + sym_virtual_specifier, + STATE(8290), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5116), 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(5118), 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, + [13865] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4531), 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___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4533), 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, + [13935] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(7338), 1, + anon_sym_LT, + STATE(2981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3026), 1, + sym_template_argument_list, + ACTIONS(7153), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3087), 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(3095), 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, + [14013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3289), 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___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3296), 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, + [14081] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2388), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7322), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5143), 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___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5145), 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, + [14153] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3324), 1, + sym_field_declaration_list, + STATE(7319), 1, + sym_virtual_specifier, + STATE(8245), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5134), 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(5136), 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, + [14233] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3006), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7340), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5184), 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___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5186), 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, + [14305] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6986), 1, + anon_sym___attribute__, + ACTIONS(6988), 1, + anon_sym___attribute, + STATE(3087), 1, + sym_attribute_specifier, + ACTIONS(5512), 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(5514), 45, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [14379] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(7342), 1, + anon_sym_LT, + STATE(3026), 1, + sym_template_argument_list, + ACTIONS(3272), 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_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3279), 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, + [14453] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7005), 1, + anon_sym___attribute__, + ACTIONS(7007), 1, + anon_sym___attribute, + ACTIONS(7345), 1, + anon_sym_LBRACE, + ACTIONS(7347), 1, + anon_sym_COLON, + STATE(3122), 1, + sym__enum_base_clause, + STATE(3141), 1, + sym_enumerator_list, + STATE(3312), 1, + sym_attribute_specifier, + ACTIONS(5454), 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(5456), 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, + [14535] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4531), 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___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4533), 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, + [14605] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2988), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4817), 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___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4819), 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, + [14677] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7351), 1, + sym_identifier, + STATE(3001), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3127), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3129), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(6522), 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(6520), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [14753] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6986), 1, + anon_sym___attribute__, + ACTIONS(6988), 1, + anon_sym___attribute, + STATE(3060), 1, + sym_attribute_specifier, + ACTIONS(5476), 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(5478), 45, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [14827] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6986), 1, + anon_sym___attribute__, + ACTIONS(6988), 1, + anon_sym___attribute, + STATE(3062), 1, + sym_attribute_specifier, + ACTIONS(5488), 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(5490), 45, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [14901] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4735), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4737), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [14971] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3313), 1, + sym_field_declaration_list, + STATE(7317), 1, + sym_virtual_specifier, + STATE(8240), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5124), 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(5126), 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, + [15051] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7353), 1, + sym_identifier, + STATE(3001), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(7356), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7359), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(6510), 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(6508), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [15127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 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(6530), 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, + [15195] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6986), 1, + anon_sym___attribute__, + ACTIONS(6988), 1, + anon_sym___attribute, + STATE(3086), 1, + sym_attribute_specifier, + ACTIONS(5500), 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(5502), 45, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [15269] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2967), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7362), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5174), 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___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5176), 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, + [15341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6524), 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(6526), 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, + [15409] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2388), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7322), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5152), 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___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5154), 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, + [15481] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7364), 1, + sym_identifier, + STATE(2996), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3127), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3129), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(6503), 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(6501), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [15557] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6986), 1, + anon_sym___attribute__, + ACTIONS(6988), 1, + anon_sym___attribute, + STATE(3073), 1, + sym_attribute_specifier, + ACTIONS(5522), 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(5524), 45, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [15631] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7005), 1, + anon_sym___attribute__, + ACTIONS(7007), 1, + anon_sym___attribute, + ACTIONS(7345), 1, + anon_sym_LBRACE, + ACTIONS(7347), 1, + anon_sym_COLON, + STATE(3108), 1, + sym__enum_base_clause, + STATE(3156), 1, + sym_enumerator_list, + STATE(3362), 1, + sym_attribute_specifier, + ACTIONS(5504), 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(5506), 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, + [15713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4531), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4533), 47, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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_GT2, + anon_sym_requires, + [15781] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6986), 1, + anon_sym___attribute__, + ACTIONS(6988), 1, + anon_sym___attribute, + STATE(3089), 1, + sym_attribute_specifier, + ACTIONS(5494), 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(5496), 45, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [15855] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5672), 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(5674), 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, + [15923] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5676), 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(5678), 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, + [15991] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6986), 1, + anon_sym___attribute__, + ACTIONS(6988), 1, + anon_sym___attribute, + STATE(3072), 1, + sym_attribute_specifier, + ACTIONS(5516), 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(5518), 45, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [16065] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(7338), 1, + anon_sym_LT, + STATE(3026), 1, + sym_template_argument_list, + ACTIONS(4529), 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_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3113), 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, + [16139] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4962), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4964), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [16206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3274), 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_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, + [16273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3274), 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_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, + [16340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3274), 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_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, + [16407] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4531), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4533), 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, + [16474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3274), 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_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, + [16541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3274), 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_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, + [16608] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3274), 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_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, + [16675] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3484), 1, + sym_field_declaration_list, + STATE(7288), 1, + sym_virtual_specifier, + STATE(8342), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5124), 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(5126), 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, + [16754] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3486), 1, + sym_field_declaration_list, + STATE(7293), 1, + sym_virtual_specifier, + STATE(8347), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5134), 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(5136), 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, + [16833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3289), 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_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_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3296), 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, + [16900] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3437), 1, + sym_field_declaration_list, + STATE(7316), 1, + sym_virtual_specifier, + STATE(8376), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5120), 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(5122), 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, + [16979] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3441), 1, + sym_field_declaration_list, + STATE(7321), 1, + sym_virtual_specifier, + STATE(8380), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5116), 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(5118), 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, + [17058] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4735), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4737), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [17125] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4531), 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_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_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4533), 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, + [17194] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4531), 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_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_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4533), 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, + [17263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 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_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_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4537), 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, + [17330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 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(6530), 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, + [17397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6524), 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(6526), 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, + [17464] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5112), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5114), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [17531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4735), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4737), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [17598] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4541), 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_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_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4543), 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, + [17667] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7191), 1, + anon_sym___attribute__, + ACTIONS(7193), 1, + anon_sym___attribute, + ACTIONS(7366), 1, + anon_sym_LBRACE, + ACTIONS(7368), 1, + anon_sym_COLON, + STATE(3136), 1, + sym__enum_base_clause, + STATE(3211), 1, + sym_enumerator_list, + STATE(3476), 1, + sym_attribute_specifier, + ACTIONS(5504), 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(5506), 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, + [17748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4980), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [17815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4910), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4912), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [17882] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4928), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [17949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4982), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4984), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [18016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5104), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5106), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [18083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4966), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4968), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [18150] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7191), 1, + anon_sym___attribute__, + ACTIONS(7193), 1, + anon_sym___attribute, + ACTIONS(7366), 1, + anon_sym_LBRACE, + ACTIONS(7368), 1, + anon_sym_COLON, + STATE(3139), 1, + sym__enum_base_clause, + STATE(3209), 1, + sym_enumerator_list, + STATE(3520), 1, + sym_attribute_specifier, + ACTIONS(5454), 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(5456), 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, + [18231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4809), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4811), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [18298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4813), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4815), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [18365] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4789), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4791), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [18432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5004), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [18499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5006), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5008), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [18566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5050), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5052), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [18633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5054), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5056), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [18700] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(6624), 1, + anon_sym_LBRACK, + ACTIONS(6665), 1, + anon_sym_STAR, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + STATE(3560), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6659), 1, + sym__declarator, + STATE(6998), 1, + sym__abstract_declarator, + STATE(8558), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7314), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7316), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [18817] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5058), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5060), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [18884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5064), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [18951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4900), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [19018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4900), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [19085] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4492), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [19152] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4906), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4908), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [19219] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4954), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4956), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [19286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4817), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4819), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [19353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4890), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4892), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [19420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4896), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [19487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5010), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5012), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [19554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5014), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5016), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [19621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5018), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5020), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [19688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5022), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5024), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [19755] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5026), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5028), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [19822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5030), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5032), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [19889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5036), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [19956] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5038), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5040), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [20023] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5042), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5044), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [20090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5046), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5048), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [20157] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5038), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5040), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [20224] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4904), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [20291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4793), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4795), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [20358] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4797), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4799), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [20425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4801), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4803), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [20492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4805), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4807), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [20559] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4914), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4916), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [20626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4918), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4920), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [20693] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4922), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4924), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [20760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4932), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [20827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4938), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4940), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [20894] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4942), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4944), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [20961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4946), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4948), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [21028] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4950), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4952), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [21095] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4958), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4960), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [21162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4970), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4972), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [21229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4934), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4936), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [21296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5066), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5068), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [21363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4974), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4976), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [21430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5672), 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(5674), 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, + [21497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5676), 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(5678), 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, + [21564] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(6624), 1, + anon_sym_LBRACK, + ACTIONS(6705), 1, + anon_sym_STAR, + ACTIONS(6707), 1, + anon_sym_AMP_AMP, + ACTIONS(6709), 1, + anon_sym_AMP, + STATE(3525), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6666), 1, + sym__declarator, + STATE(6949), 1, + sym__abstract_declarator, + STATE(8558), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6629), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(6631), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [21681] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(6624), 1, + anon_sym_LBRACK, + ACTIONS(6705), 1, + anon_sym_STAR, + ACTIONS(6707), 1, + anon_sym_AMP_AMP, + ACTIONS(6709), 1, + anon_sym_AMP, + STATE(3525), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6659), 1, + sym__declarator, + STATE(6976), 1, + sym__abstract_declarator, + STATE(8558), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7314), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(7316), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [21798] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7219), 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___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7221), 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_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, + [21865] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(6624), 1, + anon_sym_LBRACK, + ACTIONS(6665), 1, + anon_sym_STAR, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + STATE(3560), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6666), 1, + sym__declarator, + STATE(6996), 1, + sym__abstract_declarator, + STATE(8558), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6629), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(6631), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [21982] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2948), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7305), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4735), 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(4737), 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, + [22053] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3289), 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___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3296), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [22120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4900), 46, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [22187] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3106), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7370), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5194), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5196), 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, + [22257] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3107), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7372), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5174), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5176), 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, + [22327] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2419), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7374), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5180), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5182), 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, + [22397] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3109), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7376), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4817), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4819), 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, + [22467] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2419), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7374), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5164), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5166), 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, + [22537] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2419), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7374), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5156), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 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, + [22607] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7005), 1, + anon_sym___attribute__, + ACTIONS(7007), 1, + anon_sym___attribute, + ACTIONS(7345), 1, + anon_sym_LBRACE, + STATE(3144), 1, + sym_enumerator_list, + STATE(3327), 1, + sym_attribute_specifier, + ACTIONS(5246), 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(5248), 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, + [22683] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2419), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7374), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5143), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5145), 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, + [22753] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(7378), 1, + anon_sym_LT, + STATE(3100), 1, + sym_template_argument_list, + ACTIONS(4529), 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___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3113), 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_or, + anon_sym_and, + anon_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, + [22825] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2419), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7374), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5190), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5192), 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, + [22895] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(7380), 1, + anon_sym_LT, + STATE(3100), 1, + sym_template_argument_list, + ACTIONS(3272), 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___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3279), 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_or, + anon_sym_and, + anon_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, + [22967] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2988), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4735), 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(4737), 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, + [23037] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(7378), 1, + anon_sym_LT, + STATE(3100), 1, + sym_template_argument_list, + STATE(3111), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7330), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3087), 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(3095), 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, + [23113] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3647), 1, + anon_sym_LBRACE, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7385), 1, + anon_sym_LBRACK, + ACTIONS(7387), 1, + sym_auto, + ACTIONS(7389), 1, + anon_sym_decltype, + STATE(3337), 1, + sym_decltype_auto, + STATE(3364), 1, + sym_new_declarator, + STATE(3674), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6597), 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(6599), 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, + [23195] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3647), 1, + anon_sym_LBRACE, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7385), 1, + anon_sym_LBRACK, + ACTIONS(7387), 1, + sym_auto, + ACTIONS(7389), 1, + anon_sym_decltype, + STATE(3310), 1, + sym_new_declarator, + STATE(3337), 1, + sym_decltype_auto, + STATE(3698), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6585), 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(6587), 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, + [23277] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3647), 1, + anon_sym_LBRACE, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7385), 1, + anon_sym_LBRACK, + ACTIONS(7387), 1, + sym_auto, + ACTIONS(7389), 1, + anon_sym_decltype, + STATE(3330), 1, + sym_new_declarator, + STATE(3337), 1, + sym_decltype_auto, + STATE(3713), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6603), 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(6605), 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, + [23359] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3296), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3298), 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___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3291), 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___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [23427] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3125), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7391), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5184), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5186), 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, + [23497] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3126), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7393), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5168), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5170), 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, + [23567] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3647), 1, + anon_sym_LBRACE, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7385), 1, + anon_sym_LBRACK, + ACTIONS(7387), 1, + sym_auto, + ACTIONS(7389), 1, + anon_sym_decltype, + STATE(3337), 1, + sym_decltype_auto, + STATE(3341), 1, + sym_new_declarator, + STATE(3734), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6633), 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(6635), 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, + [23649] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7005), 1, + anon_sym___attribute__, + ACTIONS(7007), 1, + anon_sym___attribute, + ACTIONS(7345), 1, + anon_sym_LBRACE, + STATE(3143), 1, + sym_enumerator_list, + STATE(3344), 1, + sym_attribute_specifier, + ACTIONS(5266), 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(5268), 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, + [23725] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6624), 1, + anon_sym_LBRACK, + ACTIONS(6629), 1, + anon_sym_COMMA, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6759), 1, + anon_sym_AMP_AMP, + ACTIONS(6761), 1, + anon_sym_AMP, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + STATE(3525), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6154), 1, + sym__scope_resolution, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6870), 1, + sym__declarator, + STATE(6949), 1, + sym__abstract_declarator, + STATE(8621), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6631), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [23841] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6624), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6759), 1, + anon_sym_AMP_AMP, + ACTIONS(6761), 1, + anon_sym_AMP, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7314), 1, + anon_sym_COMMA, + STATE(3525), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6154), 1, + sym__scope_resolution, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6871), 1, + sym__declarator, + STATE(6976), 1, + sym__abstract_declarator, + STATE(8621), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7316), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [23957] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2419), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7374), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5152), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5154), 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, + [24027] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2419), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7374), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5160), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5162), 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, + [24097] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4531), 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___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4533), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [24163] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7403), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7405), 1, + anon_sym_AMP_AMP, + ACTIONS(7417), 1, + anon_sym_GT_EQ, + ACTIONS(7421), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7423), 1, + anon_sym_or, + ACTIONS(7425), 1, + anon_sym_and, + ACTIONS(7427), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7399), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7407), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7409), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7411), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7401), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7415), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7395), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(7397), 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, + [24272] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7005), 1, + anon_sym___attribute__, + ACTIONS(7007), 1, + anon_sym___attribute, + STATE(3409), 1, + sym_attribute_specifier, + ACTIONS(5450), 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(5452), 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, + [24343] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym___attribute__, + ACTIONS(7326), 1, + anon_sym___attribute, + ACTIONS(7429), 1, + anon_sym_LBRACE, + ACTIONS(7431), 1, + anon_sym_COLON, + STATE(3280), 1, + sym__enum_base_clause, + STATE(3367), 1, + sym_enumerator_list, + STATE(3776), 1, + sym_attribute_specifier, + ACTIONS(5504), 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(5506), 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, + [24422] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3879), 1, + anon_sym_LBRACE, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7435), 1, + anon_sym_LBRACK, + ACTIONS(7437), 1, + sym_auto, + ACTIONS(7439), 1, + anon_sym_decltype, + STATE(3459), 1, + sym_decltype_auto, + STATE(3483), 1, + sym_new_declarator, + STATE(3993), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6597), 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(6599), 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, + anon_sym_DASH_GT, + anon_sym_GT2, + [24503] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5672), 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(5674), 39, + 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, + [24568] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4531), 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___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4533), 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_or, + anon_sym_and, + anon_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, + [24635] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4531), 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___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4533), 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_or, + anon_sym_and, + anon_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, + [24702] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym___attribute__, + ACTIONS(7326), 1, + anon_sym___attribute, + ACTIONS(7429), 1, + anon_sym_LBRACE, + ACTIONS(7431), 1, + anon_sym_COLON, + STATE(3290), 1, + sym__enum_base_clause, + STATE(3389), 1, + sym_enumerator_list, + STATE(3811), 1, + sym_attribute_specifier, + ACTIONS(5454), 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(5456), 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, + [24781] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7191), 1, + anon_sym___attribute__, + ACTIONS(7193), 1, + anon_sym___attribute, + ACTIONS(7366), 1, + anon_sym_LBRACE, + STATE(3212), 1, + sym_enumerator_list, + STATE(3424), 1, + sym_attribute_specifier, + ACTIONS(5246), 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(5248), 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, + [24856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 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___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4537), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_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, + [24921] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3879), 1, + anon_sym_LBRACE, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7435), 1, + anon_sym_LBRACK, + ACTIONS(7437), 1, + sym_auto, + ACTIONS(7439), 1, + anon_sym_decltype, + STATE(3432), 1, + sym_new_declarator, + STATE(3459), 1, + sym_decltype_auto, + STATE(3910), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6585), 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(6587), 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, + anon_sym_DASH_GT, + anon_sym_GT2, + [25002] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7191), 1, + anon_sym___attribute__, + ACTIONS(7193), 1, + anon_sym___attribute, + ACTIONS(7366), 1, + anon_sym_LBRACE, + STATE(3191), 1, + sym_enumerator_list, + STATE(3456), 1, + sym_attribute_specifier, + ACTIONS(5266), 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(5268), 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, + [25077] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3879), 1, + anon_sym_LBRACE, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7435), 1, + anon_sym_LBRACK, + ACTIONS(7437), 1, + sym_auto, + ACTIONS(7439), 1, + anon_sym_decltype, + STATE(3459), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_new_declarator, + STATE(3932), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6633), 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(6635), 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, + anon_sym_DASH_GT, + anon_sym_GT2, + [25158] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7005), 1, + anon_sym___attribute__, + ACTIONS(7007), 1, + anon_sym___attribute, + STATE(3316), 1, + sym_attribute_specifier, + ACTIONS(5446), 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(5448), 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, + [25229] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6297), 1, + anon_sym_LBRACE, + STATE(3819), 1, + sym_field_declaration_list, + STATE(7348), 1, + sym_virtual_specifier, + STATE(8055), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5120), 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(5122), 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, + [25306] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7005), 1, + anon_sym___attribute__, + ACTIONS(7007), 1, + anon_sym___attribute, + STATE(3317), 1, + sym_attribute_specifier, + ACTIONS(5494), 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(5496), 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, + [25377] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7005), 1, + anon_sym___attribute__, + ACTIONS(7007), 1, + anon_sym___attribute, + STATE(3350), 1, + sym_attribute_specifier, + ACTIONS(5480), 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(5482), 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, + [25448] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7005), 1, + anon_sym___attribute__, + ACTIONS(7007), 1, + anon_sym___attribute, + STATE(3342), 1, + sym_attribute_specifier, + ACTIONS(5484), 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(5486), 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, + [25519] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3256), 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___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3258), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_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, + [25584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 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___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3254), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_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, + [25649] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3248), 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___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3250), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_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, + [25714] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3244), 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___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3246), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_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, + [25779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3264), 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___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3266), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_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, + [25844] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3268), 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___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3270), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_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, + [25909] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3260), 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___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3262), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_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, + [25974] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7225), 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, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + ACTIONS(7223), 31, + anon_sym_DASH, + 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___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, + [26039] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6297), 1, + anon_sym_LBRACE, + STATE(3822), 1, + sym_field_declaration_list, + STATE(7353), 1, + sym_virtual_specifier, + STATE(8059), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5116), 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(5118), 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, + [26116] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7005), 1, + anon_sym___attribute__, + ACTIONS(7007), 1, + anon_sym___attribute, + STATE(3309), 1, + sym_attribute_specifier, + ACTIONS(5476), 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(5478), 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, + [26187] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7005), 1, + anon_sym___attribute__, + ACTIONS(7007), 1, + anon_sym___attribute, + STATE(3325), 1, + sym_attribute_specifier, + ACTIONS(5488), 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(5490), 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, + [26258] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7403), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7405), 1, + anon_sym_AMP_AMP, + ACTIONS(7417), 1, + anon_sym_GT_EQ, + ACTIONS(7421), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7423), 1, + anon_sym_or, + ACTIONS(7425), 1, + anon_sym_and, + ACTIONS(7427), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7399), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7407), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7409), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7411), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7401), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7415), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7441), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(7443), 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, + [26367] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7403), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7405), 1, + anon_sym_AMP_AMP, + ACTIONS(7417), 1, + anon_sym_GT_EQ, + ACTIONS(7421), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7423), 1, + anon_sym_or, + ACTIONS(7425), 1, + anon_sym_and, + ACTIONS(7427), 1, + anon_sym_not_eq, + ACTIONS(7445), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7447), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7399), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7407), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7409), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7411), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7401), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7415), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7171), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(7173), 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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [26480] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7405), 1, + anon_sym_AMP_AMP, + ACTIONS(7417), 1, + anon_sym_GT_EQ, + ACTIONS(7421), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7425), 1, + anon_sym_and, + ACTIONS(7427), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7399), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7407), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7409), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7411), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7401), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7415), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 7, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + sym_identifier, + ACTIONS(7085), 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_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, + [26585] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7417), 1, + anon_sym_GT_EQ, + ACTIONS(7421), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7427), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7399), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7407), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7409), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7411), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7401), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7415), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 8, + 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, + sym_identifier, + ACTIONS(7085), 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, + [26686] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7417), 1, + anon_sym_GT_EQ, + ACTIONS(7421), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7427), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7399), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7409), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7411), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7401), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7415), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 10, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + 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(7085), 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, + [26785] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7417), 1, + anon_sym_GT_EQ, + ACTIONS(7421), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7427), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7399), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7411), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7401), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7415), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 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(7085), 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, + [26882] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7417), 1, + anon_sym_GT_EQ, + ACTIONS(7421), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7427), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7399), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7401), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7415), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 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_bitand, + sym_identifier, + ACTIONS(7085), 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, + [26977] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7417), 1, + anon_sym_GT_EQ, + ACTIONS(7421), 1, + anon_sym_LT_EQ_GT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7399), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7401), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7415), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 15, + 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_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(7085), 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_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, + [27068] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7421), 1, + anon_sym_LT_EQ_GT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7399), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7401), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 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_EQ, + anon_sym_and_eq, + anon_sym_or_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(7085), 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_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, + [27155] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7403), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7405), 1, + anon_sym_AMP_AMP, + ACTIONS(7417), 1, + anon_sym_GT_EQ, + ACTIONS(7421), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7423), 1, + anon_sym_or, + ACTIONS(7425), 1, + anon_sym_and, + ACTIONS(7427), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7399), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7407), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7409), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7411), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7401), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7415), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7449), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(7451), 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, + [27264] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7403), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7405), 1, + anon_sym_AMP_AMP, + ACTIONS(7417), 1, + anon_sym_GT_EQ, + ACTIONS(7421), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7423), 1, + anon_sym_or, + ACTIONS(7425), 1, + anon_sym_and, + ACTIONS(7427), 1, + anon_sym_not_eq, + ACTIONS(7445), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7447), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7399), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7407), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7409), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7411), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7401), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7415), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7453), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(7455), 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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27377] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7403), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7405), 1, + anon_sym_AMP_AMP, + ACTIONS(7417), 1, + anon_sym_GT_EQ, + ACTIONS(7421), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7423), 1, + anon_sym_or, + ACTIONS(7425), 1, + anon_sym_and, + ACTIONS(7427), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7399), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7407), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7409), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7411), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7401), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7415), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7457), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(7459), 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, + [27486] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7403), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7405), 1, + anon_sym_AMP_AMP, + ACTIONS(7417), 1, + anon_sym_GT_EQ, + ACTIONS(7421), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7423), 1, + anon_sym_or, + ACTIONS(7425), 1, + anon_sym_and, + ACTIONS(7427), 1, + anon_sym_not_eq, + ACTIONS(7445), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7447), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7399), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7407), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7409), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7411), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7401), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7415), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7461), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(7463), 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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27599] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7005), 1, + anon_sym___attribute__, + ACTIONS(7007), 1, + anon_sym___attribute, + STATE(3390), 1, + sym_attribute_specifier, + ACTIONS(5500), 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(5502), 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, + [27670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5676), 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(5678), 39, + 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, + [27735] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7005), 1, + anon_sym___attribute__, + ACTIONS(7007), 1, + anon_sym___attribute, + STATE(3359), 1, + sym_attribute_specifier, + ACTIONS(5516), 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(5518), 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, + [27806] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6297), 1, + anon_sym_LBRACE, + STATE(3781), 1, + sym_field_declaration_list, + STATE(7398), 1, + sym_virtual_specifier, + STATE(8022), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5134), 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(5136), 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, + [27883] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7403), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7405), 1, + anon_sym_AMP_AMP, + ACTIONS(7417), 1, + anon_sym_GT_EQ, + ACTIONS(7421), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7423), 1, + anon_sym_or, + ACTIONS(7425), 1, + anon_sym_and, + ACTIONS(7427), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7399), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7407), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7409), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7411), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7413), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7401), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7415), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7465), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(7467), 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, + [27992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 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(6530), 39, + 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, + [28057] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6524), 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(6526), 39, + 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, + [28122] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7005), 1, + anon_sym___attribute__, + ACTIONS(7007), 1, + anon_sym___attribute, + STATE(3306), 1, + sym_attribute_specifier, + ACTIONS(5522), 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(5524), 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, + [28193] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4541), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4543), 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_or, + anon_sym_and, + anon_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, + [28260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7201), 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, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + ACTIONS(7199), 31, + anon_sym_DASH, + 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___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, + [28325] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7401), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 22, + aux_sym_preproc_elif_token1, + 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(7085), 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, + [28406] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7399), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7401), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 20, + 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(7085), 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, + [28489] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7399), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7401), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 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_EQ, + anon_sym_and_eq, + anon_sym_or_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(7085), 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, + [28574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7181), 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, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + ACTIONS(7179), 31, + anon_sym_DASH, + 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___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, + [28639] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6297), 1, + anon_sym_LBRACE, + STATE(3779), 1, + sym_field_declaration_list, + STATE(7294), 1, + sym_virtual_specifier, + STATE(8020), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5124), 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(5126), 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, + [28716] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7005), 1, + anon_sym___attribute__, + ACTIONS(7007), 1, + anon_sym___attribute, + STATE(3300), 1, + sym_attribute_specifier, + ACTIONS(5512), 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(5514), 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, + [28787] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7005), 1, + anon_sym___attribute__, + ACTIONS(7007), 1, + anon_sym___attribute, + STATE(3343), 1, + sym_attribute_specifier, + ACTIONS(5462), 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(5464), 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, + [28858] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3879), 1, + anon_sym_LBRACE, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7435), 1, + anon_sym_LBRACK, + ACTIONS(7437), 1, + sym_auto, + ACTIONS(7439), 1, + anon_sym_decltype, + STATE(3459), 1, + sym_decltype_auto, + STATE(3473), 1, + sym_new_declarator, + STATE(3950), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6603), 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(6605), 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, + anon_sym_DASH_GT, + anon_sym_GT2, + [28939] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7191), 1, + anon_sym___attribute__, + ACTIONS(7193), 1, + anon_sym___attribute, + STATE(3475), 1, + sym_attribute_specifier, + ACTIONS(5462), 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(5464), 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, + [29009] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7191), 1, + anon_sym___attribute__, + ACTIONS(7193), 1, + anon_sym___attribute, + STATE(3523), 1, + sym_attribute_specifier, + ACTIONS(5512), 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(5514), 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, + [29079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4531), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4533), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_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, + [29143] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7191), 1, + anon_sym___attribute__, + ACTIONS(7193), 1, + anon_sym___attribute, + STATE(3478), 1, + sym_attribute_specifier, + ACTIONS(5494), 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(5496), 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, + [29213] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7477), 1, + anon_sym___attribute__, + ACTIONS(7480), 1, + anon_sym___attribute, + ACTIONS(7483), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7496), 1, + anon_sym_DASH_GT, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7502), 1, + anon_sym_requires, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(5110), 1, + sym__function_attributes_start, + STATE(5291), 1, + sym_ref_qualifier, + STATE(5915), 1, + sym_trailing_return_type, + STATE(5962), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4429), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4616), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6093), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5573), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7469), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + ACTIONS(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [29331] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4793), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4795), 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, + [29395] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3109), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7376), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4735), 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(4737), 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, + [29463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4789), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4791), 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, + [29527] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7477), 1, + anon_sym___attribute__, + ACTIONS(7480), 1, + anon_sym___attribute, + ACTIONS(7483), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7496), 1, + anon_sym_DASH_GT, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7507), 1, + anon_sym_requires, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(5012), 1, + sym__function_attributes_start, + STATE(5295), 1, + sym_ref_qualifier, + STATE(5916), 1, + sym_trailing_return_type, + STATE(6062), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7504), 2, + anon_sym_final, + anon_sym_override, + STATE(4429), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4616), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6093), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5562), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7469), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + ACTIONS(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [29645] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4906), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4908), 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, + [29709] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7191), 1, + anon_sym___attribute__, + ACTIONS(7193), 1, + anon_sym___attribute, + STATE(3481), 1, + sym_attribute_specifier, + ACTIONS(5484), 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(5486), 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, + [29779] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3221), 1, + anon_sym_STAR, + ACTIONS(3223), 1, + anon_sym_AMP_AMP, + ACTIONS(3225), 1, + anon_sym_AMP, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6624), 1, + anon_sym_LBRACK, + ACTIONS(6629), 1, + anon_sym_RPAREN, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + STATE(3336), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6154), 1, + sym__scope_resolution, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6745), 1, + sym__declarator, + STATE(7056), 1, + sym__abstract_declarator, + STATE(8684), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [29891] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3221), 1, + anon_sym_STAR, + ACTIONS(3223), 1, + anon_sym_AMP_AMP, + ACTIONS(3225), 1, + anon_sym_AMP, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6624), 1, + anon_sym_LBRACK, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7314), 1, + anon_sym_RPAREN, + STATE(3336), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6154), 1, + sym__scope_resolution, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6827), 1, + sym__declarator, + STATE(7041), 1, + sym__abstract_declarator, + STATE(8684), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [30003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4966), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4968), 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, + [30067] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7191), 1, + anon_sym___attribute__, + ACTIONS(7193), 1, + anon_sym___attribute, + STATE(3519), 1, + sym_attribute_specifier, + ACTIONS(5476), 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(5478), 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, + [30137] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7191), 1, + anon_sym___attribute__, + ACTIONS(7193), 1, + anon_sym___attribute, + STATE(3489), 1, + sym_attribute_specifier, + ACTIONS(5450), 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(5452), 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, + [30207] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7191), 1, + anon_sym___attribute__, + ACTIONS(7193), 1, + anon_sym___attribute, + STATE(3443), 1, + sym_attribute_specifier, + ACTIONS(5516), 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(5518), 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, + [30277] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7510), 1, + sym_literal_suffix, + ACTIONS(3097), 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(3089), 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, + [30343] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4817), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4819), 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, + [30407] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7191), 1, + anon_sym___attribute__, + ACTIONS(7193), 1, + anon_sym___attribute, + STATE(3445), 1, + sym_attribute_specifier, + ACTIONS(5522), 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(5524), 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, + [30477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5010), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5012), 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, + [30541] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7191), 1, + anon_sym___attribute__, + ACTIONS(7193), 1, + anon_sym___attribute, + STATE(3455), 1, + sym_attribute_specifier, + ACTIONS(5446), 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(5448), 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, + [30611] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7512), 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_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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(7514), 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, + [30675] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7191), 1, + anon_sym___attribute__, + ACTIONS(7193), 1, + anon_sym___attribute, + STATE(3415), 1, + sym_attribute_specifier, + ACTIONS(5488), 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(5490), 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, + [30745] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7191), 1, + anon_sym___attribute__, + ACTIONS(7193), 1, + anon_sym___attribute, + STATE(3458), 1, + sym_attribute_specifier, + ACTIONS(5480), 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(5482), 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, + [30815] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7191), 1, + anon_sym___attribute__, + ACTIONS(7193), 1, + anon_sym___attribute, + STATE(3468), 1, + sym_attribute_specifier, + ACTIONS(5500), 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(5502), 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, + [30885] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, + anon_sym_STAR, + ACTIONS(7520), 1, + anon_sym_AMP_AMP, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6141), 1, + sym__scope_resolution, + STATE(6745), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4250), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [30994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4789), 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___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4791), 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, + [31057] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7441), 1, + anon_sym_EQ, + ACTIONS(7532), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7534), 1, + anon_sym_AMP_AMP, + ACTIONS(7536), 1, + anon_sym_PIPE, + ACTIONS(7540), 1, + anon_sym_AMP, + ACTIONS(7546), 1, + anon_sym_GT_EQ, + ACTIONS(7550), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7552), 1, + anon_sym_or, + ACTIONS(7554), 1, + anon_sym_and, + ACTIONS(7556), 1, + anon_sym_bitor, + ACTIONS(7558), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7538), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7548), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7530), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7542), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7544), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7443), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [31166] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7530), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 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(7085), 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_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [31245] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7534), 1, + anon_sym_AMP_AMP, + ACTIONS(7536), 1, + anon_sym_PIPE, + ACTIONS(7540), 1, + anon_sym_AMP, + ACTIONS(7546), 1, + anon_sym_GT_EQ, + ACTIONS(7550), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7554), 1, + anon_sym_and, + ACTIONS(7556), 1, + anon_sym_bitor, + ACTIONS(7558), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7083), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(7528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7538), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7548), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7530), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7542), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7544), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 21, + 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [31350] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7536), 1, + anon_sym_PIPE, + ACTIONS(7540), 1, + anon_sym_AMP, + ACTIONS(7546), 1, + anon_sym_GT_EQ, + ACTIONS(7550), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7556), 1, + anon_sym_bitor, + ACTIONS(7558), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7538), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7548), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7083), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(7530), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7542), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7544), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 22, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [31451] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7540), 1, + anon_sym_AMP, + ACTIONS(7546), 1, + anon_sym_GT_EQ, + ACTIONS(7550), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7558), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7538), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7548), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7530), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7542), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7544), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(7085), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [31548] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7540), 1, + anon_sym_AMP, + ACTIONS(7546), 1, + anon_sym_GT_EQ, + ACTIONS(7550), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7558), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7548), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7530), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7542), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7544), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [31643] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7546), 1, + anon_sym_GT_EQ, + ACTIONS(7550), 1, + anon_sym_LT_EQ_GT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7548), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7530), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7542), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7544), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [31734] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7546), 1, + anon_sym_GT_EQ, + ACTIONS(7550), 1, + anon_sym_LT_EQ_GT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7548), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7530), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7544), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 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_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [31823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4754), 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(4756), 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_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_DASH_GT_STAR, + [31886] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7449), 1, + anon_sym_EQ, + ACTIONS(7532), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7534), 1, + anon_sym_AMP_AMP, + ACTIONS(7536), 1, + anon_sym_PIPE, + ACTIONS(7540), 1, + anon_sym_AMP, + ACTIONS(7546), 1, + anon_sym_GT_EQ, + ACTIONS(7550), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7552), 1, + anon_sym_or, + ACTIONS(7554), 1, + anon_sym_and, + ACTIONS(7556), 1, + anon_sym_bitor, + ACTIONS(7558), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7538), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7548), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7530), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7542), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7544), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7451), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [31995] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7483), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7507), 1, + anon_sym_requires, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7564), 1, + anon_sym_DASH_GT, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(5172), 1, + sym__function_attributes_start, + STATE(5328), 1, + sym_ref_qualifier, + STATE(5916), 1, + sym_trailing_return_type, + STATE(6226), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7504), 2, + anon_sym_final, + anon_sym_override, + STATE(4429), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4616), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6093), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5607), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7469), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + ACTIONS(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [32112] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7445), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7461), 1, + anon_sym_EQ, + ACTIONS(7532), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7534), 1, + anon_sym_AMP_AMP, + ACTIONS(7536), 1, + anon_sym_PIPE, + ACTIONS(7540), 1, + anon_sym_AMP, + ACTIONS(7546), 1, + anon_sym_GT_EQ, + ACTIONS(7550), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7552), 1, + anon_sym_or, + ACTIONS(7554), 1, + anon_sym_and, + ACTIONS(7556), 1, + anon_sym_bitor, + ACTIONS(7558), 1, + anon_sym_bitand, + ACTIONS(7566), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7538), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7548), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7530), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7542), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7544), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7463), 18, + 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, + [32225] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7550), 1, + anon_sym_LT_EQ_GT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7548), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7530), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [32310] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7530), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 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(7085), 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_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [32391] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7548), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7530), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 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_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [32474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4906), 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___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4908), 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, + [32537] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3289), 1, + anon_sym_const, + ACTIONS(3300), 1, + anon_sym_AMP, + ACTIONS(3293), 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(3298), 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(3291), 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, + ACTIONS(3296), 18, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + [32608] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7568), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7574), 1, + anon_sym___asm, + ACTIONS(7577), 1, + anon_sym_DASH_GT, + ACTIONS(7579), 1, + anon_sym_requires, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5154), 1, + sym__function_attributes_start, + STATE(5332), 1, + sym_ref_qualifier, + STATE(5745), 1, + sym_trailing_return_type, + STATE(5928), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7504), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7571), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6093), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5610), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7469), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [32725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4817), 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___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4819), 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, + [32788] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7483), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7507), 1, + anon_sym_requires, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7574), 1, + anon_sym___asm, + ACTIONS(7582), 1, + anon_sym_DASH_GT, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(5186), 1, + sym__function_attributes_start, + STATE(5324), 1, + sym_ref_qualifier, + STATE(5916), 1, + sym_trailing_return_type, + STATE(6032), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7504), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7571), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4429), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4616), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6093), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5603), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7469), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [32905] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(2522), 1, + anon_sym_STAR, + ACTIONS(2524), 1, + anon_sym_AMP, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6154), 1, + sym__scope_resolution, + STATE(6827), 1, + sym__declarator, + STATE(8684), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4283), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [33014] = 52, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7584), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7586), 1, + anon_sym_COMMA, + ACTIONS(7588), 1, + anon_sym_RPAREN, + ACTIONS(7590), 1, + anon_sym_DASH, + ACTIONS(7592), 1, + anon_sym_PLUS, + ACTIONS(7594), 1, + anon_sym_STAR, + ACTIONS(7596), 1, + anon_sym_SLASH, + ACTIONS(7598), 1, + anon_sym_PERCENT, + ACTIONS(7600), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7602), 1, + anon_sym_AMP_AMP, + ACTIONS(7604), 1, + anon_sym_PIPE, + ACTIONS(7606), 1, + anon_sym_CARET, + ACTIONS(7608), 1, + anon_sym_AMP, + ACTIONS(7610), 1, + anon_sym_EQ_EQ, + ACTIONS(7612), 1, + anon_sym_BANG_EQ, + ACTIONS(7614), 1, + anon_sym_GT, + ACTIONS(7616), 1, + anon_sym_GT_EQ, + ACTIONS(7618), 1, + anon_sym_LT_EQ, + ACTIONS(7620), 1, + anon_sym_LT, + ACTIONS(7622), 1, + anon_sym_LT_LT, + ACTIONS(7624), 1, + anon_sym_GT_GT, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7628), 1, + anon_sym_EQ, + ACTIONS(7630), 1, + anon_sym_QMARK, + ACTIONS(7632), 1, + anon_sym_STAR_EQ, + ACTIONS(7634), 1, + anon_sym_SLASH_EQ, + ACTIONS(7636), 1, + anon_sym_PERCENT_EQ, + ACTIONS(7638), 1, + anon_sym_PLUS_EQ, + ACTIONS(7640), 1, + anon_sym_DASH_EQ, + ACTIONS(7642), 1, + anon_sym_LT_LT_EQ, + ACTIONS(7644), 1, + anon_sym_GT_GT_EQ, + ACTIONS(7646), 1, + anon_sym_AMP_EQ, + ACTIONS(7648), 1, + anon_sym_CARET_EQ, + ACTIONS(7650), 1, + anon_sym_PIPE_EQ, + ACTIONS(7654), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7656), 1, + anon_sym_or, + ACTIONS(7658), 1, + anon_sym_and, + ACTIONS(7660), 1, + anon_sym_bitor, + ACTIONS(7662), 1, + anon_sym_xor, + ACTIONS(7664), 1, + anon_sym_bitand, + ACTIONS(7666), 1, + anon_sym_not_eq, + ACTIONS(7672), 1, + anon_sym_DOT_STAR, + ACTIONS(7674), 1, + anon_sym_DASH_GT_STAR, + STATE(1920), 1, + sym__binary_fold_operator, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + STATE(8469), 1, + sym__fold_operator, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7652), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [33175] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7676), 1, + anon_sym_STAR, + ACTIONS(7678), 1, + anon_sym_AMP_AMP, + ACTIONS(7680), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6507), 1, + sym__declarator, + STATE(9116), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3282), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4256), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [33284] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7483), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7574), 1, + anon_sym___asm, + ACTIONS(7582), 1, + anon_sym_DASH_GT, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(5197), 1, + sym__function_attributes_start, + STATE(5336), 1, + sym_ref_qualifier, + STATE(5915), 1, + sym_trailing_return_type, + STATE(6009), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7571), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4429), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4616), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6093), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5611), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7469), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [33401] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7676), 1, + anon_sym_STAR, + ACTIONS(7678), 1, + anon_sym_AMP_AMP, + ACTIONS(7680), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6470), 1, + sym__declarator, + STATE(9116), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3241), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4290), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [33510] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7676), 1, + anon_sym_STAR, + ACTIONS(7678), 1, + anon_sym_AMP_AMP, + ACTIONS(7680), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6418), 1, + sym__declarator, + STATE(9116), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4247), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [33619] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(3279), 1, + anon_sym_LBRACE, + ACTIONS(3286), 1, + anon_sym_LT, + STATE(3118), 1, + sym_template_argument_list, + ACTIONS(3281), 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(3274), 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_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [33690] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7682), 1, + anon_sym_LPAREN2, + ACTIONS(7684), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7686), 1, + anon_sym_LBRACK, + STATE(3541), 1, + sym_parameter_list, + STATE(3404), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6719), 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(6721), 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, + [33763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5010), 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___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5012), 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, + [33826] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7465), 1, + anon_sym_EQ, + ACTIONS(7532), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7534), 1, + anon_sym_AMP_AMP, + ACTIONS(7536), 1, + anon_sym_PIPE, + ACTIONS(7540), 1, + anon_sym_AMP, + ACTIONS(7546), 1, + anon_sym_GT_EQ, + ACTIONS(7550), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7552), 1, + anon_sym_or, + ACTIONS(7554), 1, + anon_sym_and, + ACTIONS(7556), 1, + anon_sym_bitor, + ACTIONS(7558), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7538), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7548), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7530), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7542), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7544), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7467), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [33935] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7682), 1, + anon_sym_LPAREN2, + ACTIONS(7684), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7686), 1, + anon_sym_LBRACK, + STATE(3541), 1, + sym_parameter_list, + STATE(3404), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6765), 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(6767), 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, + [34008] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7512), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(7514), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_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, + [34071] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(2522), 1, + anon_sym_STAR, + ACTIONS(2524), 1, + anon_sym_AMP, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6154), 1, + sym__scope_resolution, + STATE(6745), 1, + sym__declarator, + STATE(8684), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [34180] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7445), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7453), 1, + anon_sym_EQ, + ACTIONS(7532), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7534), 1, + anon_sym_AMP_AMP, + ACTIONS(7536), 1, + anon_sym_PIPE, + ACTIONS(7540), 1, + anon_sym_AMP, + ACTIONS(7546), 1, + anon_sym_GT_EQ, + ACTIONS(7550), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7552), 1, + anon_sym_or, + ACTIONS(7554), 1, + anon_sym_and, + ACTIONS(7556), 1, + anon_sym_bitor, + ACTIONS(7558), 1, + anon_sym_bitand, + ACTIONS(7566), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7538), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7548), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7530), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7542), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7544), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7455), 18, + 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, + [34293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4793), 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___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4795), 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, + [34356] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7171), 1, + anon_sym_EQ, + ACTIONS(7445), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7532), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7534), 1, + anon_sym_AMP_AMP, + ACTIONS(7536), 1, + anon_sym_PIPE, + ACTIONS(7540), 1, + anon_sym_AMP, + ACTIONS(7546), 1, + anon_sym_GT_EQ, + ACTIONS(7550), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7552), 1, + anon_sym_or, + ACTIONS(7554), 1, + anon_sym_and, + ACTIONS(7556), 1, + anon_sym_bitor, + ACTIONS(7558), 1, + anon_sym_bitand, + ACTIONS(7566), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7538), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7548), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7530), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7542), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7544), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7173), 18, + 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, + [34469] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(3279), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_LT, + STATE(3368), 1, + sym_template_argument_list, + ACTIONS(3281), 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_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3274), 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, + [34540] = 52, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7584), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7586), 1, + anon_sym_COMMA, + ACTIONS(7590), 1, + anon_sym_DASH, + ACTIONS(7592), 1, + anon_sym_PLUS, + ACTIONS(7594), 1, + anon_sym_STAR, + ACTIONS(7596), 1, + anon_sym_SLASH, + ACTIONS(7598), 1, + anon_sym_PERCENT, + ACTIONS(7600), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7602), 1, + anon_sym_AMP_AMP, + ACTIONS(7604), 1, + anon_sym_PIPE, + ACTIONS(7606), 1, + anon_sym_CARET, + ACTIONS(7608), 1, + anon_sym_AMP, + ACTIONS(7610), 1, + anon_sym_EQ_EQ, + ACTIONS(7612), 1, + anon_sym_BANG_EQ, + ACTIONS(7614), 1, + anon_sym_GT, + ACTIONS(7616), 1, + anon_sym_GT_EQ, + ACTIONS(7618), 1, + anon_sym_LT_EQ, + ACTIONS(7620), 1, + anon_sym_LT, + ACTIONS(7622), 1, + anon_sym_LT_LT, + ACTIONS(7624), 1, + anon_sym_GT_GT, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7628), 1, + anon_sym_EQ, + ACTIONS(7630), 1, + anon_sym_QMARK, + ACTIONS(7632), 1, + anon_sym_STAR_EQ, + ACTIONS(7634), 1, + anon_sym_SLASH_EQ, + ACTIONS(7636), 1, + anon_sym_PERCENT_EQ, + ACTIONS(7638), 1, + anon_sym_PLUS_EQ, + ACTIONS(7640), 1, + anon_sym_DASH_EQ, + ACTIONS(7642), 1, + anon_sym_LT_LT_EQ, + ACTIONS(7644), 1, + anon_sym_GT_GT_EQ, + ACTIONS(7646), 1, + anon_sym_AMP_EQ, + ACTIONS(7648), 1, + anon_sym_CARET_EQ, + ACTIONS(7650), 1, + anon_sym_PIPE_EQ, + ACTIONS(7654), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7656), 1, + anon_sym_or, + ACTIONS(7658), 1, + anon_sym_and, + ACTIONS(7660), 1, + anon_sym_bitor, + ACTIONS(7662), 1, + anon_sym_xor, + ACTIONS(7664), 1, + anon_sym_bitand, + ACTIONS(7666), 1, + anon_sym_not_eq, + ACTIONS(7672), 1, + anon_sym_DOT_STAR, + ACTIONS(7674), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7688), 1, + anon_sym_RPAREN, + STATE(1920), 1, + sym__binary_fold_operator, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + STATE(8469), 1, + sym__fold_operator, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7652), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [34701] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7690), 1, + anon_sym_STAR, + ACTIONS(7692), 1, + anon_sym_AMP_AMP, + ACTIONS(7694), 1, + anon_sym_AMP, + ACTIONS(7696), 1, + anon_sym_COLON_COLON, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6120), 1, + sym__scope_resolution, + STATE(6430), 1, + sym__declarator, + STATE(8470), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3288), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4291), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [34810] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, + anon_sym_STAR, + ACTIONS(7520), 1, + anon_sym_AMP_AMP, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6141), 1, + sym__scope_resolution, + STATE(6745), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3256), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4250), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [34919] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, + anon_sym_STAR, + ACTIONS(7520), 1, + anon_sym_AMP_AMP, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6141), 1, + sym__scope_resolution, + STATE(6827), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4292), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [35028] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(2522), 1, + anon_sym_STAR, + ACTIONS(2524), 1, + anon_sym_AMP, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6154), 1, + sym__scope_resolution, + STATE(6745), 1, + sym__declarator, + STATE(8684), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3236), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [35137] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7457), 1, + anon_sym_EQ, + ACTIONS(7532), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7534), 1, + anon_sym_AMP_AMP, + ACTIONS(7536), 1, + anon_sym_PIPE, + ACTIONS(7540), 1, + anon_sym_AMP, + ACTIONS(7546), 1, + anon_sym_GT_EQ, + ACTIONS(7550), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7552), 1, + anon_sym_or, + ACTIONS(7554), 1, + anon_sym_and, + ACTIONS(7556), 1, + anon_sym_bitor, + ACTIONS(7558), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7538), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7548), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7530), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7542), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7544), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7459), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [35246] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6564), 4, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(6566), 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(3089), 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(3097), 22, + 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + [35313] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7698), 1, + anon_sym_STAR, + ACTIONS(7700), 1, + anon_sym_AMP_AMP, + ACTIONS(7702), 1, + anon_sym_AMP, + ACTIONS(7704), 1, + anon_sym_COLON_COLON, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__scope_resolution, + STATE(6993), 1, + sym__declarator, + STATE(8410), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3292), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4255), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [35422] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7690), 1, + anon_sym_STAR, + ACTIONS(7692), 1, + anon_sym_AMP_AMP, + ACTIONS(7694), 1, + anon_sym_AMP, + ACTIONS(7696), 1, + anon_sym_COLON_COLON, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6120), 1, + sym__scope_resolution, + STATE(6466), 1, + sym__declarator, + STATE(8470), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3262), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4273), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [35531] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7690), 1, + anon_sym_STAR, + ACTIONS(7692), 1, + anon_sym_AMP_AMP, + ACTIONS(7694), 1, + anon_sym_AMP, + ACTIONS(7696), 1, + anon_sym_COLON_COLON, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6120), 1, + sym__scope_resolution, + STATE(6480), 1, + sym__declarator, + STATE(8470), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4289), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [35640] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(2522), 1, + anon_sym_STAR, + ACTIONS(2524), 1, + anon_sym_AMP, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6154), 1, + sym__scope_resolution, + STATE(6842), 1, + sym__declarator, + STATE(8684), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3248), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4266), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [35749] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7682), 1, + anon_sym_LPAREN2, + ACTIONS(7684), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7686), 1, + anon_sym_LBRACK, + STATE(3541), 1, + sym_parameter_list, + STATE(3404), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6739), 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(6741), 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, + [35822] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7706), 1, + anon_sym_STAR, + ACTIONS(7708), 1, + anon_sym_AMP_AMP, + ACTIONS(7710), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6655), 1, + sym__declarator, + STATE(8558), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3293), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4259), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [35931] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7706), 1, + anon_sym_STAR, + ACTIONS(7708), 1, + anon_sym_AMP_AMP, + ACTIONS(7710), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6666), 1, + sym__declarator, + STATE(8558), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3267), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4257), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [36040] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7706), 1, + anon_sym_STAR, + ACTIONS(7708), 1, + anon_sym_AMP_AMP, + ACTIONS(7710), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6659), 1, + sym__declarator, + STATE(8558), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4264), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [36149] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4966), 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___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4968), 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, + [36212] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7712), 1, + anon_sym_STAR, + ACTIONS(7714), 1, + anon_sym_AMP_AMP, + ACTIONS(7716), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6154), 1, + sym__scope_resolution, + STATE(6892), 1, + sym__declarator, + STATE(8621), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3294), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4263), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [36321] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7712), 1, + anon_sym_STAR, + ACTIONS(7714), 1, + anon_sym_AMP_AMP, + ACTIONS(7716), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6154), 1, + sym__scope_resolution, + STATE(6870), 1, + sym__declarator, + STATE(8621), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3271), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4296), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [36430] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7712), 1, + anon_sym_STAR, + ACTIONS(7714), 1, + anon_sym_AMP_AMP, + ACTIONS(7716), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6154), 1, + sym__scope_resolution, + STATE(6871), 1, + sym__declarator, + STATE(8621), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4280), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [36539] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7718), 1, + anon_sym_STAR, + ACTIONS(7720), 1, + anon_sym_AMP_AMP, + ACTIONS(7722), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6930), 1, + sym__declarator, + STATE(8672), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3273), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4282), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [36648] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7718), 1, + anon_sym_STAR, + ACTIONS(7720), 1, + anon_sym_AMP_AMP, + ACTIONS(7722), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6931), 1, + sym__declarator, + STATE(8672), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4286), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [36757] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7698), 1, + anon_sym_STAR, + ACTIONS(7700), 1, + anon_sym_AMP_AMP, + ACTIONS(7702), 1, + anon_sym_AMP, + ACTIONS(7704), 1, + anon_sym_COLON_COLON, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__scope_resolution, + STATE(6961), 1, + sym__declarator, + STATE(8410), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3275), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4294), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [36866] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7698), 1, + anon_sym_STAR, + ACTIONS(7700), 1, + anon_sym_AMP_AMP, + ACTIONS(7702), 1, + anon_sym_AMP, + ACTIONS(7704), 1, + anon_sym_COLON_COLON, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__scope_resolution, + STATE(7002), 1, + sym__declarator, + STATE(8410), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4271), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [36975] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3919), 1, + anon_sym_LBRACE, + ACTIONS(7724), 1, + anon_sym_LPAREN2, + ACTIONS(7726), 1, + anon_sym_LBRACK, + ACTIONS(7728), 1, + sym_auto, + ACTIONS(7730), 1, + anon_sym_decltype, + STATE(3762), 1, + sym_decltype_auto, + STATE(3793), 1, + sym_new_declarator, + STATE(4144), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6597), 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(6599), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [37054] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7568), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7574), 1, + anon_sym___asm, + ACTIONS(7577), 1, + anon_sym_DASH_GT, + ACTIONS(7732), 1, + anon_sym_requires, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5167), 1, + sym__function_attributes_start, + STATE(5341), 1, + sym_ref_qualifier, + STATE(5749), 1, + sym_trailing_return_type, + STATE(6022), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7571), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6093), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5608), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7469), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [37171] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7682), 1, + anon_sym_LPAREN2, + ACTIONS(7684), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7686), 1, + anon_sym_LBRACK, + STATE(3541), 1, + sym_parameter_list, + STATE(3404), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + 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_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(6733), 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, + [37244] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3919), 1, + anon_sym_LBRACE, + ACTIONS(7724), 1, + anon_sym_LPAREN2, + ACTIONS(7726), 1, + anon_sym_LBRACK, + ACTIONS(7728), 1, + sym_auto, + ACTIONS(7730), 1, + anon_sym_decltype, + STATE(3762), 1, + sym_decltype_auto, + STATE(3809), 1, + sym_new_declarator, + STATE(4179), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6585), 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(6587), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [37323] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym___attribute__, + ACTIONS(7326), 1, + anon_sym___attribute, + ACTIONS(7429), 1, + anon_sym_LBRACE, + STATE(3392), 1, + sym_enumerator_list, + STATE(3815), 1, + sym_attribute_specifier, + ACTIONS(5246), 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(5248), 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, + [37396] = 52, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7584), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7586), 1, + anon_sym_COMMA, + ACTIONS(7590), 1, + anon_sym_DASH, + ACTIONS(7592), 1, + anon_sym_PLUS, + ACTIONS(7594), 1, + anon_sym_STAR, + ACTIONS(7596), 1, + anon_sym_SLASH, + ACTIONS(7598), 1, + anon_sym_PERCENT, + ACTIONS(7600), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7602), 1, + anon_sym_AMP_AMP, + ACTIONS(7604), 1, + anon_sym_PIPE, + ACTIONS(7606), 1, + anon_sym_CARET, + ACTIONS(7608), 1, + anon_sym_AMP, + ACTIONS(7610), 1, + anon_sym_EQ_EQ, + ACTIONS(7612), 1, + anon_sym_BANG_EQ, + ACTIONS(7614), 1, + anon_sym_GT, + ACTIONS(7616), 1, + anon_sym_GT_EQ, + ACTIONS(7618), 1, + anon_sym_LT_EQ, + ACTIONS(7620), 1, + anon_sym_LT, + ACTIONS(7622), 1, + anon_sym_LT_LT, + ACTIONS(7624), 1, + anon_sym_GT_GT, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7628), 1, + anon_sym_EQ, + ACTIONS(7630), 1, + anon_sym_QMARK, + ACTIONS(7632), 1, + anon_sym_STAR_EQ, + ACTIONS(7634), 1, + anon_sym_SLASH_EQ, + ACTIONS(7636), 1, + anon_sym_PERCENT_EQ, + ACTIONS(7638), 1, + anon_sym_PLUS_EQ, + ACTIONS(7640), 1, + anon_sym_DASH_EQ, + ACTIONS(7642), 1, + anon_sym_LT_LT_EQ, + ACTIONS(7644), 1, + anon_sym_GT_GT_EQ, + ACTIONS(7646), 1, + anon_sym_AMP_EQ, + ACTIONS(7648), 1, + anon_sym_CARET_EQ, + ACTIONS(7650), 1, + anon_sym_PIPE_EQ, + ACTIONS(7654), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7656), 1, + anon_sym_or, + ACTIONS(7658), 1, + anon_sym_and, + ACTIONS(7660), 1, + anon_sym_bitor, + ACTIONS(7662), 1, + anon_sym_xor, + ACTIONS(7664), 1, + anon_sym_bitand, + ACTIONS(7666), 1, + anon_sym_not_eq, + ACTIONS(7672), 1, + anon_sym_DOT_STAR, + ACTIONS(7674), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7734), 1, + anon_sym_RPAREN, + STATE(1920), 1, + sym__binary_fold_operator, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + STATE(8469), 1, + sym__fold_operator, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7652), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [37557] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7676), 1, + anon_sym_STAR, + ACTIONS(7678), 1, + anon_sym_AMP_AMP, + ACTIONS(7680), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6470), 1, + sym__declarator, + STATE(9116), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4290), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [37666] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, + anon_sym_STAR, + ACTIONS(7520), 1, + anon_sym_AMP_AMP, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6141), 1, + sym__scope_resolution, + STATE(6842), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3214), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4277), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [37775] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3919), 1, + anon_sym_LBRACE, + ACTIONS(7724), 1, + anon_sym_LPAREN2, + ACTIONS(7726), 1, + anon_sym_LBRACK, + ACTIONS(7728), 1, + sym_auto, + ACTIONS(7730), 1, + anon_sym_decltype, + STATE(3762), 1, + sym_decltype_auto, + STATE(3833), 1, + sym_new_declarator, + STATE(4192), 2, + sym_argument_list, + sym_initializer_list, + 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(6605), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [37854] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7682), 1, + anon_sym_LPAREN2, + ACTIONS(7684), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7686), 1, + anon_sym_LBRACK, + STATE(3541), 1, + sym_parameter_list, + STATE(3404), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6735), 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(6737), 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, + [37927] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7387), 1, + sym_auto, + ACTIONS(7389), 1, + anon_sym_decltype, + STATE(3337), 1, + sym_decltype_auto, + ACTIONS(4785), 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(4787), 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, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [37996] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7718), 1, + anon_sym_STAR, + ACTIONS(7720), 1, + anon_sym_AMP_AMP, + ACTIONS(7722), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6928), 1, + sym__declarator, + STATE(8672), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3291), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4249), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [38105] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7690), 1, + anon_sym_STAR, + ACTIONS(7692), 1, + anon_sym_AMP_AMP, + ACTIONS(7694), 1, + anon_sym_AMP, + ACTIONS(7696), 1, + anon_sym_COLON_COLON, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6120), 1, + sym__scope_resolution, + STATE(6466), 1, + sym__declarator, + STATE(8470), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4273), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [38214] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3919), 1, + anon_sym_LBRACE, + ACTIONS(7724), 1, + anon_sym_LPAREN2, + ACTIONS(7726), 1, + anon_sym_LBRACK, + ACTIONS(7728), 1, + sym_auto, + ACTIONS(7730), 1, + anon_sym_decltype, + STATE(3762), 1, + sym_decltype_auto, + STATE(3836), 1, + sym_new_declarator, + STATE(4201), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6633), 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(6635), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [38293] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym___attribute__, + ACTIONS(7326), 1, + anon_sym___attribute, + ACTIONS(7429), 1, + anon_sym_LBRACE, + STATE(3402), 1, + sym_enumerator_list, + STATE(3838), 1, + sym_attribute_specifier, + ACTIONS(5266), 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(5268), 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, + [38366] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7718), 1, + anon_sym_STAR, + ACTIONS(7720), 1, + anon_sym_AMP_AMP, + ACTIONS(7722), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6930), 1, + sym__declarator, + STATE(8672), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4282), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [38475] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7698), 1, + anon_sym_STAR, + ACTIONS(7700), 1, + anon_sym_AMP_AMP, + ACTIONS(7702), 1, + anon_sym_AMP, + ACTIONS(7704), 1, + anon_sym_COLON_COLON, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__scope_resolution, + STATE(6961), 1, + sym__declarator, + STATE(8410), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4294), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [38584] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7706), 1, + anon_sym_STAR, + ACTIONS(7708), 1, + anon_sym_AMP_AMP, + ACTIONS(7710), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6666), 1, + sym__declarator, + STATE(8558), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4257), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [38693] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7712), 1, + anon_sym_STAR, + ACTIONS(7714), 1, + anon_sym_AMP_AMP, + ACTIONS(7716), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6154), 1, + sym__scope_resolution, + STATE(6870), 1, + sym__declarator, + STATE(8621), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4296), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [38802] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4735), 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(4737), 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, + [38867] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7510), 1, + sym_literal_suffix, + ACTIONS(3097), 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(3089), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_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, + [38932] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7395), 1, + anon_sym_EQ, + ACTIONS(7532), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7534), 1, + anon_sym_AMP_AMP, + ACTIONS(7536), 1, + anon_sym_PIPE, + ACTIONS(7540), 1, + anon_sym_AMP, + ACTIONS(7546), 1, + anon_sym_GT_EQ, + ACTIONS(7550), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7552), 1, + anon_sym_or, + ACTIONS(7554), 1, + anon_sym_and, + ACTIONS(7556), 1, + anon_sym_bitor, + ACTIONS(7558), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7538), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7548), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7530), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7542), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7544), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7397), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [39041] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7483), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7564), 1, + anon_sym_DASH_GT, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(5144), 1, + sym__function_attributes_start, + STATE(5338), 1, + sym_ref_qualifier, + STATE(5915), 1, + sym_trailing_return_type, + STATE(6247), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4429), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4616), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6093), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5614), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7469), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + ACTIONS(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [39158] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3035), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7736), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(3031), 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(3029), 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, + [39224] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4950), 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(4952), 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, + [39286] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7742), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7744), 1, + anon_sym_AMP_AMP, + ACTIONS(7746), 1, + anon_sym_PIPE, + ACTIONS(7750), 1, + anon_sym_AMP, + ACTIONS(7756), 1, + anon_sym_GT_EQ, + ACTIONS(7760), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7762), 1, + anon_sym_or, + ACTIONS(7764), 1, + anon_sym_and, + ACTIONS(7766), 1, + anon_sym_bitor, + ACTIONS(7768), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7449), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7738), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7748), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7758), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7740), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7752), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7754), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7451), 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, + [39394] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7445), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7742), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7744), 1, + anon_sym_AMP_AMP, + ACTIONS(7746), 1, + anon_sym_PIPE, + ACTIONS(7750), 1, + anon_sym_AMP, + ACTIONS(7756), 1, + anon_sym_GT_EQ, + ACTIONS(7760), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7762), 1, + anon_sym_or, + ACTIONS(7764), 1, + anon_sym_and, + ACTIONS(7766), 1, + anon_sym_bitor, + ACTIONS(7768), 1, + anon_sym_bitand, + ACTIONS(7770), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7453), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7738), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7748), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7758), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7740), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7752), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7754), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7455), 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, + [39506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4958), 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(4960), 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, + [39568] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4754), 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(4756), 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_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_GT2, + [39630] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7742), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7744), 1, + anon_sym_AMP_AMP, + ACTIONS(7746), 1, + anon_sym_PIPE, + ACTIONS(7750), 1, + anon_sym_AMP, + ACTIONS(7756), 1, + anon_sym_GT_EQ, + ACTIONS(7760), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7762), 1, + anon_sym_or, + ACTIONS(7764), 1, + anon_sym_and, + ACTIONS(7766), 1, + anon_sym_bitor, + ACTIONS(7768), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7457), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7738), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7748), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7758), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7740), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7752), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7754), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7459), 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, + [39738] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5046), 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(5048), 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, + [39800] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3289), 1, + anon_sym_const, + ACTIONS(3300), 1, + anon_sym_AMP, + ACTIONS(3293), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + ACTIONS(3298), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(3296), 18, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + ACTIONS(3291), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [39870] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7437), 1, + sym_auto, + ACTIONS(7439), 1, + anon_sym_decltype, + STATE(3459), 1, + sym_decltype_auto, + ACTIONS(4785), 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(4787), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_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, + [39938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4954), 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(4956), 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, + [40000] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3647), 1, + anon_sym_LBRACE, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + STATE(3733), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6931), 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(6933), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [40068] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7772), 1, + anon_sym_DASH_GT, + ACTIONS(7777), 1, + anon_sym_requires, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5205), 1, + sym__function_attributes_start, + STATE(5349), 1, + sym_ref_qualifier, + STATE(6353), 1, + sym_trailing_return_type, + STATE(6472), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7774), 2, + anon_sym_final, + anon_sym_override, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6370), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5634), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7469), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [40184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4962), 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(4964), 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, + [40246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 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(5004), 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, + [40308] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7786), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7784), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(7782), 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(7780), 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, + [40374] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7756), 1, + anon_sym_GT_EQ, + ACTIONS(7760), 1, + anon_sym_LT_EQ_GT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7738), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7758), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7740), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7752), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7754), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [40464] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4797), 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(4799), 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, + [40526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4970), 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(4972), 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, + [40588] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7788), 1, + anon_sym_LPAREN2, + ACTIONS(7790), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7792), 1, + anon_sym_LBRACK, + STATE(3702), 1, + sym_parameter_list, + STATE(3460), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6719), 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(6721), 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, + anon_sym_DASH_GT, + anon_sym_GT2, + [40660] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7788), 1, + anon_sym_LPAREN2, + ACTIONS(7790), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7792), 1, + anon_sym_LBRACK, + STATE(3702), 1, + sym_parameter_list, + STATE(3460), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6765), 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(6767), 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, + anon_sym_DASH_GT, + anon_sym_GT2, + [40732] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7568), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7794), 1, + anon_sym_DASH_GT, + ACTIONS(7796), 1, + anon_sym_requires, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5225), 1, + sym__function_attributes_start, + STATE(5358), 1, + sym_ref_qualifier, + STATE(6278), 1, + sym_trailing_return_type, + STATE(6318), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7504), 2, + anon_sym_final, + anon_sym_override, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6093), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5627), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7469), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [40848] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5006), 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(5008), 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, + [40910] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7756), 1, + anon_sym_GT_EQ, + ACTIONS(7760), 1, + anon_sym_LT_EQ_GT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7738), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7758), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7740), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7754), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 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_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, + anon_sym_bitand, + anon_sym_not_eq, + [40998] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7760), 1, + anon_sym_LT_EQ_GT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7738), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7758), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7740), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 11, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [41082] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5050), 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(5052), 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, + [41144] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4890), 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(4892), 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, + [41206] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7445), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7742), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7744), 1, + anon_sym_AMP_AMP, + ACTIONS(7746), 1, + anon_sym_PIPE, + ACTIONS(7750), 1, + anon_sym_AMP, + ACTIONS(7756), 1, + anon_sym_GT_EQ, + ACTIONS(7760), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7762), 1, + anon_sym_or, + ACTIONS(7764), 1, + anon_sym_and, + ACTIONS(7766), 1, + anon_sym_bitor, + ACTIONS(7768), 1, + anon_sym_bitand, + ACTIONS(7770), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7171), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7738), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7748), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7758), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7740), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7752), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7754), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7173), 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, + [41318] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 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(4896), 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, + [41380] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7742), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7744), 1, + anon_sym_AMP_AMP, + ACTIONS(7746), 1, + anon_sym_PIPE, + ACTIONS(7750), 1, + anon_sym_AMP, + ACTIONS(7756), 1, + anon_sym_GT_EQ, + ACTIONS(7760), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7762), 1, + anon_sym_or, + ACTIONS(7764), 1, + anon_sym_and, + ACTIONS(7766), 1, + anon_sym_bitor, + ACTIONS(7768), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7441), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7738), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7748), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7758), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7740), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7752), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7754), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7443), 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, + [41488] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7445), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7742), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7744), 1, + anon_sym_AMP_AMP, + ACTIONS(7746), 1, + anon_sym_PIPE, + ACTIONS(7750), 1, + anon_sym_AMP, + ACTIONS(7756), 1, + anon_sym_GT_EQ, + ACTIONS(7760), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7762), 1, + anon_sym_or, + ACTIONS(7764), 1, + anon_sym_and, + ACTIONS(7766), 1, + anon_sym_bitor, + ACTIONS(7768), 1, + anon_sym_bitand, + ACTIONS(7770), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7461), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7738), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7748), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7758), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7740), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7752), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7754), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7463), 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, + [41600] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3647), 1, + anon_sym_LBRACE, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + STATE(3760), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6941), 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(6943), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 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(5064), 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, + [41730] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7568), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7794), 1, + anon_sym_DASH_GT, + ACTIONS(7799), 1, + anon_sym_requires, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5208), 1, + sym__function_attributes_start, + STATE(5390), 1, + sym_ref_qualifier, + STATE(6219), 1, + sym_trailing_return_type, + STATE(6336), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6093), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5618), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7469), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [41846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 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(4900), 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, + [41908] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7744), 1, + anon_sym_AMP_AMP, + ACTIONS(7746), 1, + anon_sym_PIPE, + ACTIONS(7750), 1, + anon_sym_AMP, + ACTIONS(7756), 1, + anon_sym_GT_EQ, + ACTIONS(7760), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7764), 1, + anon_sym_and, + ACTIONS(7766), 1, + anon_sym_bitor, + ACTIONS(7768), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7738), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7748), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7758), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7083), 3, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + ACTIONS(7740), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7752), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7754), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + 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, + [42012] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7788), 1, + anon_sym_LPAREN2, + ACTIONS(7790), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7792), 1, + anon_sym_LBRACK, + STATE(3702), 1, + sym_parameter_list, + STATE(3460), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6739), 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(6741), 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, + anon_sym_DASH_GT, + anon_sym_GT2, + [42084] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7772), 1, + anon_sym_DASH_GT, + ACTIONS(7803), 1, + anon_sym_requires, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5248), 1, + sym__function_attributes_start, + STATE(5397), 1, + sym_ref_qualifier, + STATE(6371), 1, + sym_trailing_return_type, + STATE(6502), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6370), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5632), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7469), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [42200] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5104), 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(5106), 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, + [42262] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4934), 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(4936), 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, + [42324] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7811), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7809), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(7807), 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(7805), 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, + [42390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5066), 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(5068), 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, + [42452] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3647), 1, + anon_sym_LBRACE, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + STATE(3771), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6935), 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(6937), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4974), 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(4976), 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, + [42582] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4809), 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(4811), 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, + [42644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4801), 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(4803), 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, + [42706] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7788), 1, + anon_sym_LPAREN2, + ACTIONS(7790), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7792), 1, + anon_sym_LBRACK, + STATE(3702), 1, + sym_parameter_list, + STATE(3460), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6731), 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(6733), 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, + anon_sym_DASH_GT, + anon_sym_GT2, + [42778] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7819), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7817), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(7815), 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(7813), 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, + [42844] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7821), 1, + anon_sym_DASH_GT, + ACTIONS(7823), 1, + anon_sym_requires, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5241), 1, + sym__function_attributes_start, + STATE(5369), 1, + sym_ref_qualifier, + STATE(6158), 1, + sym_trailing_return_type, + STATE(6421), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7774), 2, + anon_sym_final, + anon_sym_override, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6370), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5620), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7469), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [42960] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7746), 1, + anon_sym_PIPE, + ACTIONS(7750), 1, + anon_sym_AMP, + ACTIONS(7756), 1, + anon_sym_GT_EQ, + ACTIONS(7760), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7766), 1, + anon_sym_bitor, + ACTIONS(7768), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7738), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7748), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7758), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7740), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7752), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7754), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 4, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(7085), 20, + 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [43060] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7788), 1, + anon_sym_LPAREN2, + ACTIONS(7790), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7792), 1, + anon_sym_LBRACK, + STATE(3702), 1, + sym_parameter_list, + STATE(3460), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6735), 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(6737), 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, + anon_sym_DASH_GT, + anon_sym_GT2, + [43132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4805), 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(4807), 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, + [43194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5014), 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(5016), 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, + [43256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 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(4904), 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, + [43318] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5018), 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(5020), 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, + [43380] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7568), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7579), 1, + anon_sym_requires, + ACTIONS(7826), 1, + anon_sym___attribute__, + ACTIONS(7829), 1, + anon_sym___attribute, + ACTIONS(7832), 1, + anon_sym_DASH_GT, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5238), 1, + sym__function_attributes_start, + STATE(5388), 1, + sym_ref_qualifier, + STATE(5745), 1, + sym_trailing_return_type, + STATE(6182), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7504), 2, + anon_sym_final, + anon_sym_override, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6093), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5638), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7469), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [43496] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym___attribute__, + ACTIONS(7326), 1, + anon_sym___attribute, + STATE(3868), 1, + sym_attribute_specifier, + ACTIONS(5462), 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(5464), 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, + [43564] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3027), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7834), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(3005), 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(3003), 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, + [43630] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym___attribute__, + ACTIONS(7326), 1, + anon_sym___attribute, + STATE(3784), 1, + sym_attribute_specifier, + ACTIONS(5450), 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(5452), 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, + [43698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 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(4900), 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, + [43760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5042), 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(5044), 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, + [43822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5038), 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(5040), 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, + [43884] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7568), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(7826), 1, + anon_sym___attribute__, + ACTIONS(7829), 1, + anon_sym___attribute, + ACTIONS(7832), 1, + anon_sym_DASH_GT, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5207), 1, + sym__function_attributes_start, + STATE(5402), 1, + sym_ref_qualifier, + STATE(5749), 1, + sym_trailing_return_type, + STATE(6175), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6093), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5643), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7469), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [44000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4813), 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(4815), 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, + [44062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5022), 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(5024), 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, + [44124] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3647), 1, + anon_sym_LBRACE, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + STATE(3711), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6916), 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(6918), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [44192] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5026), 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(5028), 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, + [44254] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym___attribute__, + ACTIONS(7326), 1, + anon_sym___attribute, + STATE(3810), 1, + sym_attribute_specifier, + ACTIONS(5476), 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(5478), 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, + [44322] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym___attribute__, + ACTIONS(7326), 1, + anon_sym___attribute, + STATE(3814), 1, + sym_attribute_specifier, + ACTIONS(5488), 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(5490), 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, + [44390] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3296), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3298), 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(3291), 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, + [44454] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4914), 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(4916), 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, + [44516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4918), 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(4920), 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, + [44578] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7821), 1, + anon_sym_DASH_GT, + ACTIONS(7836), 1, + anon_sym_requires, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5212), 1, + sym__function_attributes_start, + STATE(5411), 1, + sym_ref_qualifier, + STATE(6159), 1, + sym_trailing_return_type, + STATE(6497), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6370), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5645), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7469), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [44694] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym___attribute__, + ACTIONS(7326), 1, + anon_sym___attribute, + STATE(3823), 1, + sym_attribute_specifier, + ACTIONS(5516), 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(5518), 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, + [44762] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym___attribute__, + ACTIONS(7326), 1, + anon_sym___attribute, + STATE(3824), 1, + sym_attribute_specifier, + ACTIONS(5522), 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(5524), 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, + [44830] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4922), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_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(4924), 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, + [44892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 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(4932), 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, + [44954] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7826), 1, + anon_sym___attribute__, + ACTIONS(7829), 1, + anon_sym___attribute, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(7838), 1, + anon_sym_DASH_GT, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5221), 1, + sym__function_attributes_start, + STATE(5379), 1, + sym_ref_qualifier, + STATE(6159), 1, + sym_trailing_return_type, + STATE(6254), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6370), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5640), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7469), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [45070] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7750), 1, + anon_sym_AMP, + ACTIONS(7756), 1, + anon_sym_GT_EQ, + ACTIONS(7760), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7768), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7738), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7748), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7758), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7740), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7752), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7754), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 5, + anon_sym_PIPE, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(7085), 21, + 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [45166] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7823), 1, + anon_sym_requires, + ACTIONS(7826), 1, + anon_sym___attribute__, + ACTIONS(7829), 1, + anon_sym___attribute, + ACTIONS(7838), 1, + anon_sym_DASH_GT, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5223), 1, + sym__function_attributes_start, + STATE(5413), 1, + sym_ref_qualifier, + STATE(6158), 1, + sym_trailing_return_type, + STATE(6266), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7774), 2, + anon_sym_final, + anon_sym_override, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6370), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5621), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7469), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [45282] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(3007), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(3127), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3129), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(6641), 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(6643), 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, + [45350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5030), 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(5032), 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, + [45412] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 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(5036), 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, + [45474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5054), 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(5056), 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, + [45536] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 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(4900), 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, + [45598] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4938), 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(4940), 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, + [45660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5038), 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(5040), 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, + [45722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 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(4492), 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, + [45784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4942), 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(4944), 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, + [45846] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7840), 1, + anon_sym_LBRACK_LBRACK, + STATE(3388), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6868), 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(6870), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [45912] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym___attribute__, + ACTIONS(7326), 1, + anon_sym___attribute, + STATE(3837), 1, + sym_attribute_specifier, + ACTIONS(5446), 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(5448), 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, + [45980] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4946), 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(4948), 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, + [46042] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7742), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7744), 1, + anon_sym_AMP_AMP, + ACTIONS(7746), 1, + anon_sym_PIPE, + ACTIONS(7750), 1, + anon_sym_AMP, + ACTIONS(7756), 1, + anon_sym_GT_EQ, + ACTIONS(7760), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7762), 1, + anon_sym_or, + ACTIONS(7764), 1, + anon_sym_and, + ACTIONS(7766), 1, + anon_sym_bitor, + ACTIONS(7768), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7395), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7738), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7748), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7758), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7740), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7752), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7754), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7397), 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, + [46150] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym___attribute__, + ACTIONS(7326), 1, + anon_sym___attribute, + STATE(3839), 1, + sym_attribute_specifier, + ACTIONS(5480), 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(5482), 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, + [46218] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7742), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7744), 1, + anon_sym_AMP_AMP, + ACTIONS(7746), 1, + anon_sym_PIPE, + ACTIONS(7750), 1, + anon_sym_AMP, + ACTIONS(7756), 1, + anon_sym_GT_EQ, + ACTIONS(7760), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7762), 1, + anon_sym_or, + ACTIONS(7764), 1, + anon_sym_and, + ACTIONS(7766), 1, + anon_sym_bitor, + ACTIONS(7768), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7465), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7738), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7748), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7758), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7740), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7752), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7754), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7467), 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, + [46326] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym___attribute__, + ACTIONS(7326), 1, + anon_sym___attribute, + STATE(3854), 1, + sym_attribute_specifier, + ACTIONS(5500), 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(5502), 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, + [46394] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym___attribute__, + ACTIONS(7326), 1, + anon_sym___attribute, + STATE(3856), 1, + sym_attribute_specifier, + ACTIONS(5512), 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(5514), 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, + [46462] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7750), 1, + anon_sym_AMP, + ACTIONS(7756), 1, + anon_sym_GT_EQ, + ACTIONS(7760), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7768), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7738), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7758), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7740), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7752), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7754), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 21, + 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [46556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5112), 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(5114), 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, + [46618] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7740), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 15, + 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 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, + [46696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4735), 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(4737), 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, + [46758] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7738), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7740), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 13, + anon_sym_PIPE, + anon_sym_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_xor, + ACTIONS(7085), 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, + [46838] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7738), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7758), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7740), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 11, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 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, + [46920] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym___attribute__, + ACTIONS(7326), 1, + anon_sym___attribute, + STATE(3862), 1, + sym_attribute_specifier, + ACTIONS(5494), 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(5496), 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, + [46988] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym___attribute__, + ACTIONS(7326), 1, + anon_sym___attribute, + STATE(3865), 1, + sym_attribute_specifier, + ACTIONS(5484), 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(5486), 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, + [47056] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7684), 1, + anon_sym_LBRACK_LBRACK, + STATE(3388), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6858), 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(6860), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [47122] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4735), 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(4737), 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, + [47184] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(3279), 1, + anon_sym_LBRACE, + ACTIONS(6538), 1, + anon_sym_LT, + STATE(3495), 1, + sym_template_argument_list, + ACTIONS(3281), 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(3274), 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, + [47254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 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(4980), 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, + [47316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4910), 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(4912), 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, + [47378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5058), 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(5060), 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, + [47440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 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(4928), 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, + [47502] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4982), 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(4984), 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, + [47564] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4735), 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(4737), 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, + [47628] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7849), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7847), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(7845), 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(7843), 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, + [47694] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7851), 1, + anon_sym_DASH_GT, + ACTIONS(7853), 1, + anon_sym_requires, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5254), 1, + sym__function_attributes_start, + STATE(5423), 1, + sym_ref_qualifier, + STATE(6544), 1, + sym_trailing_return_type, + STATE(6550), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7774), 2, + anon_sym_final, + anon_sym_override, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6370), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5646), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7469), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [47809] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4890), 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(4892), 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, + [47870] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 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(7085), 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_and_eq, + anon_sym_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, + [47947] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7083), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 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_and_eq, + anon_sym_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, + [48022] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7654), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(7862), 1, + anon_sym_AMP_AMP, + ACTIONS(7864), 1, + anon_sym_PIPE, + ACTIONS(7868), 1, + anon_sym_AMP, + ACTIONS(7874), 1, + anon_sym_GT_EQ, + ACTIONS(7878), 1, + anon_sym_and, + ACTIONS(7880), 1, + anon_sym_bitor, + ACTIONS(7882), 1, + anon_sym_bitand, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7083), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7860), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7866), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7876), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7870), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7872), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DASH_GT_STAR, + [48125] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7654), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(7864), 1, + anon_sym_PIPE, + ACTIONS(7868), 1, + anon_sym_AMP, + ACTIONS(7874), 1, + anon_sym_GT_EQ, + ACTIONS(7880), 1, + anon_sym_bitor, + ACTIONS(7882), 1, + anon_sym_bitand, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7860), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7866), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7876), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7083), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(7856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7870), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7872), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DASH_GT_STAR, + [48224] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7654), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(7868), 1, + anon_sym_AMP, + ACTIONS(7874), 1, + anon_sym_GT_EQ, + ACTIONS(7882), 1, + anon_sym_bitand, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7860), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7866), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7876), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7870), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7872), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(7085), 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_DASH_GT_STAR, + [48319] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7654), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(7868), 1, + anon_sym_AMP, + ACTIONS(7874), 1, + anon_sym_GT_EQ, + ACTIONS(7882), 1, + anon_sym_bitand, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7860), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7876), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7870), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7872), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_DASH_GT_STAR, + [48412] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7654), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(7874), 1, + anon_sym_GT_EQ, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7860), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7876), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7870), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7872), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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_DASH_GT_STAR, + [48501] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7654), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(7874), 1, + anon_sym_GT_EQ, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7860), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7876), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7872), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [48588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 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(4896), 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, + [48649] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7654), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7860), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7876), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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_DASH_GT_STAR, + [48732] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7860), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 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(7085), 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_and_eq, + anon_sym_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, + [48811] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7884), 1, + anon_sym_LT, + STATE(3118), 1, + sym_template_argument_list, + ACTIONS(7045), 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(7047), 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_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [48876] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7860), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7876), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 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_and_eq, + anon_sym_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, + [48957] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(7887), 1, + anon_sym_LT, + STATE(3588), 1, + sym_template_argument_list, + ACTIONS(6963), 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(6965), 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, + [49024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 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(4980), 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, + [49085] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7890), 1, + anon_sym_LT, + STATE(2444), 1, + sym_template_argument_list, + ACTIONS(7045), 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_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7047), 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, + [49150] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3879), 1, + anon_sym_LBRACE, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + STATE(3995), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6931), 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(6933), 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, + 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, + [49217] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5014), 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(5016), 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, + [49278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5018), 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(5020), 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, + [49339] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7890), 1, + anon_sym_LT, + STATE(3368), 1, + sym_template_argument_list, + ACTIONS(7045), 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_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7047), 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, + [49404] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7089), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7091), 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_and_eq, + anon_sym_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, + [49479] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5022), 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(5024), 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, + [49540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5026), 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(5028), 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, + [49601] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(7893), 1, + anon_sym_LT, + STATE(3588), 1, + sym_template_argument_list, + 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_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(6992), 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, + [49668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5030), 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(5032), 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, + [49729] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 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(5036), 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, + [49790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5038), 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(5040), 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, + [49851] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5042), 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(5044), 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, + [49912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4910), 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(4912), 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, + [49973] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5046), 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(5048), 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, + [50034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5038), 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(5040), 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, + [50095] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 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(4904), 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, + [50156] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 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(4928), 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, + [50217] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7027), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(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, + 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_GT_STAR, + [50292] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7033), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7035), 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_and_eq, + anon_sym_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, + [50367] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4982), 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(4984), 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, + [50428] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7465), 1, + anon_sym_EQ, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7654), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(7862), 1, + anon_sym_AMP_AMP, + ACTIONS(7864), 1, + anon_sym_PIPE, + ACTIONS(7868), 1, + anon_sym_AMP, + ACTIONS(7874), 1, + anon_sym_GT_EQ, + ACTIONS(7878), 1, + anon_sym_and, + ACTIONS(7880), 1, + anon_sym_bitor, + ACTIONS(7882), 1, + anon_sym_bitand, + ACTIONS(7896), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7898), 1, + anon_sym_or, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7860), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7866), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7876), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7870), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7872), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7467), 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, + [50535] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7063), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7065), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT_STAR, + [50608] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7071), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7073), 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_and_eq, + anon_sym_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, + [50683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4797), 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(4799), 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, + [50744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4801), 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(4803), 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, + [50805] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7395), 1, + anon_sym_EQ, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7654), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(7862), 1, + anon_sym_AMP_AMP, + ACTIONS(7864), 1, + anon_sym_PIPE, + ACTIONS(7868), 1, + anon_sym_AMP, + ACTIONS(7874), 1, + anon_sym_GT_EQ, + ACTIONS(7878), 1, + anon_sym_and, + ACTIONS(7880), 1, + anon_sym_bitor, + ACTIONS(7882), 1, + anon_sym_bitand, + ACTIONS(7896), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7898), 1, + anon_sym_or, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7860), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7866), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7876), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7870), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7872), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7397), 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, + [50912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4805), 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(4807), 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, + [50973] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5104), 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(5106), 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, + [51034] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7790), 1, + anon_sym_LBRACK_LBRACK, + STATE(3502), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6858), 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, + ACTIONS(6860), 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_QMARK, + anon_sym_STAR_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, + [51099] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7884), 1, + anon_sym_LT, + STATE(759), 1, + sym_template_argument_list, + ACTIONS(7045), 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(7047), 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_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [51164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4914), 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(4916), 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, + [51225] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4918), 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(4920), 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, + [51286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4922), 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(4924), 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, + [51347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 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(4932), 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, + [51408] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4938), 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(4940), 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, + [51469] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4942), 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(4944), 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, + [51530] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4946), 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(4948), 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, + [51591] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7449), 1, + anon_sym_EQ, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7654), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(7862), 1, + anon_sym_AMP_AMP, + ACTIONS(7864), 1, + anon_sym_PIPE, + ACTIONS(7868), 1, + anon_sym_AMP, + ACTIONS(7874), 1, + anon_sym_GT_EQ, + ACTIONS(7878), 1, + anon_sym_and, + ACTIONS(7880), 1, + anon_sym_bitor, + ACTIONS(7882), 1, + anon_sym_bitand, + ACTIONS(7896), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7898), 1, + anon_sym_or, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7860), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7866), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7876), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7870), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7872), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7451), 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, + [51698] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7510), 1, + sym_literal_suffix, + ACTIONS(3089), 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_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(3097), 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___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, + [51761] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7884), 1, + anon_sym_LT, + STATE(853), 1, + sym_template_argument_list, + ACTIONS(7045), 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(7047), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [51826] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4958), 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(4960), 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, + [51887] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3879), 1, + anon_sym_LBRACE, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + STATE(3941), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6941), 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(6943), 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, + 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, + [51954] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7453), 1, + anon_sym_EQ, + ACTIONS(7584), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7630), 1, + anon_sym_QMARK, + ACTIONS(7654), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(7862), 1, + anon_sym_AMP_AMP, + ACTIONS(7864), 1, + anon_sym_PIPE, + ACTIONS(7868), 1, + anon_sym_AMP, + ACTIONS(7874), 1, + anon_sym_GT_EQ, + ACTIONS(7878), 1, + anon_sym_and, + ACTIONS(7880), 1, + anon_sym_bitor, + ACTIONS(7882), 1, + anon_sym_bitand, + ACTIONS(7896), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7898), 1, + anon_sym_or, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7860), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7866), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7876), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7870), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7872), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7455), 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, + [52065] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4809), 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(4811), 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, + [52126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4813), 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(4815), 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, + [52187] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7457), 1, + anon_sym_EQ, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7654), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(7862), 1, + anon_sym_AMP_AMP, + ACTIONS(7864), 1, + anon_sym_PIPE, + ACTIONS(7868), 1, + anon_sym_AMP, + ACTIONS(7874), 1, + anon_sym_GT_EQ, + ACTIONS(7878), 1, + anon_sym_and, + ACTIONS(7880), 1, + anon_sym_bitor, + ACTIONS(7882), 1, + anon_sym_bitand, + ACTIONS(7896), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7898), 1, + anon_sym_or, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7860), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7866), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7876), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7870), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7872), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7459), 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, + [52294] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4970), 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(4972), 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, + [52355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4934), 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(4936), 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, + [52416] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5066), 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(5068), 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, + [52477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4974), 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(4976), 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, + [52538] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3879), 1, + anon_sym_LBRACE, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + STATE(3877), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6935), 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(6937), 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, + 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, + [52605] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3879), 1, + anon_sym_LBRACE, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + STATE(3940), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6916), 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(6918), 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, + 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, + [52672] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 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(5004), 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, + [52733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5006), 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(5008), 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, + [52794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5050), 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(5052), 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, + [52855] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5054), 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(5056), 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, + [52916] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 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(4900), 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, + [52977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5058), 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(5060), 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, + [53038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 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(5064), 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, + [53099] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(4285), 1, + sym_field_declaration_list, + STATE(4415), 1, + sym_attribute_specifier, + STATE(7517), 1, + sym_virtual_specifier, + STATE(7987), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6673), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4986), 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(4988), 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, + [53176] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7900), 1, + sym_identifier, + STATE(3503), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6683), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6685), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(6503), 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___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(6501), 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, + [53245] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7385), 1, + anon_sym_LBRACK, + STATE(3575), 1, + sym_new_declarator, + ACTIONS(6947), 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(6949), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [53310] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7902), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(7039), 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(7041), 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_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [53373] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3296), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3298), 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(3291), 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, + [53436] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7461), 1, + anon_sym_EQ, + ACTIONS(7584), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7630), 1, + anon_sym_QMARK, + ACTIONS(7654), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(7862), 1, + anon_sym_AMP_AMP, + ACTIONS(7864), 1, + anon_sym_PIPE, + ACTIONS(7868), 1, + anon_sym_AMP, + ACTIONS(7874), 1, + anon_sym_GT_EQ, + ACTIONS(7878), 1, + anon_sym_and, + ACTIONS(7880), 1, + anon_sym_bitor, + ACTIONS(7882), 1, + anon_sym_bitand, + ACTIONS(7896), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7898), 1, + anon_sym_or, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7860), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7866), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7876), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7870), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7872), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7463), 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, + [53547] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 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(4900), 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, + [53608] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 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(4900), 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, + [53669] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4966), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4968), 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, + [53730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4789), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4791), 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, + [53791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7514), 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_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(7512), 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___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, + [53852] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7904), 1, + anon_sym_LBRACK_LBRACK, + STATE(3502), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6868), 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, + ACTIONS(6870), 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_QMARK, + anon_sym_STAR_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, + [53917] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7907), 1, + sym_identifier, + STATE(3510), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6683), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6685), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(6522), 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___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(6520), 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, + [53986] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + STATE(917), 1, + sym_template_argument_list, + STATE(3842), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7909), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5070), 21, + 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___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(5072), 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, + [54055] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7851), 1, + anon_sym_DASH_GT, + ACTIONS(7911), 1, + anon_sym_requires, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5317), 1, + sym__function_attributes_start, + STATE(5418), 1, + sym_ref_qualifier, + STATE(6533), 1, + sym_trailing_return_type, + STATE(6538), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6370), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5650), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7469), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [54170] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7913), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(7039), 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(7041), 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, + [54233] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 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(4492), 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, + [54294] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4906), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4908), 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, + [54355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5112), 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(5114), 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, + [54416] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7915), 1, + sym_identifier, + STATE(3510), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(7918), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7921), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(6510), 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___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(6508), 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, + [54485] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4735), 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(4737), 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, + [54546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4817), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4819), 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, + [54607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5010), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5012), 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, + [54668] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7441), 1, + anon_sym_EQ, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7654), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(7862), 1, + anon_sym_AMP_AMP, + ACTIONS(7864), 1, + anon_sym_PIPE, + ACTIONS(7868), 1, + anon_sym_AMP, + ACTIONS(7874), 1, + anon_sym_GT_EQ, + ACTIONS(7878), 1, + anon_sym_and, + ACTIONS(7880), 1, + anon_sym_bitor, + ACTIONS(7882), 1, + anon_sym_bitand, + ACTIONS(7896), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7898), 1, + anon_sym_or, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7860), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7866), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7876), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7870), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7872), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7443), 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, + [54775] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(3279), 1, + anon_sym_LBRACE, + ACTIONS(6568), 1, + anon_sym_LT, + STATE(3655), 1, + sym_template_argument_list, + ACTIONS(3281), 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(3274), 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, + [54844] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4793), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4795), 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, + [54905] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(3007), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(3127), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3129), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(6641), 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(6643), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_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, + [54972] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7017), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7019), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT_STAR, + [55045] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4954), 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(4956), 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, + [55106] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4962), 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(4964), 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, + [55167] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7171), 1, + anon_sym_EQ, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7584), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7630), 1, + anon_sym_QMARK, + ACTIONS(7654), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(7862), 1, + anon_sym_AMP_AMP, + ACTIONS(7864), 1, + anon_sym_PIPE, + ACTIONS(7868), 1, + anon_sym_AMP, + ACTIONS(7874), 1, + anon_sym_GT_EQ, + ACTIONS(7878), 1, + anon_sym_and, + ACTIONS(7880), 1, + anon_sym_bitor, + ACTIONS(7882), 1, + anon_sym_bitand, + ACTIONS(7896), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7898), 1, + anon_sym_or, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7668), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7860), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7866), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7876), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7870), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7872), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7173), 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, + [55278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4735), 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(4737), 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, + [55339] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4950), 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(4952), 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, + [55400] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7457), 1, + anon_sym_EQ, + ACTIONS(7928), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7930), 1, + anon_sym_AMP_AMP, + ACTIONS(7932), 1, + anon_sym_PIPE, + ACTIONS(7936), 1, + anon_sym_AMP, + ACTIONS(7942), 1, + anon_sym_GT_EQ, + ACTIONS(7946), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7948), 1, + anon_sym_or, + ACTIONS(7950), 1, + anon_sym_and, + ACTIONS(7952), 1, + anon_sym_bitor, + ACTIONS(7954), 1, + anon_sym_bitand, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7934), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7944), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7938), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7940), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7459), 17, + 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, + [55506] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(7826), 1, + anon_sym___attribute__, + ACTIONS(7829), 1, + anon_sym___attribute, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5334), 1, + sym__function_attributes_start, + STATE(5508), 1, + sym_ref_qualifier, + STATE(6371), 1, + sym_trailing_return_type, + STATE(6479), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6370), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7469), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(5677), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [55620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 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_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(4257), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [55680] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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(3274), 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, + [55740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7235), 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(7237), 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, + [55800] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7966), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7968), 1, + anon_sym_AMP_AMP, + ACTIONS(7970), 1, + anon_sym_PIPE, + ACTIONS(7974), 1, + anon_sym_AMP, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7984), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7986), 1, + anon_sym_or, + ACTIONS(7988), 1, + anon_sym_and, + ACTIONS(7990), 1, + anon_sym_bitor, + ACTIONS(7992), 1, + anon_sym_bitand, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7441), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7972), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7980), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7964), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7976), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7978), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7443), 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, + [55904] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6677), 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(6675), 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, + [55964] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7027), 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(7029), 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, + [56038] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7672), 1, + anon_sym_DOT_STAR, + ACTIONS(7674), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(8000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8002), 1, + anon_sym_COMMA, + ACTIONS(8004), 1, + anon_sym_RPAREN, + ACTIONS(8006), 1, + anon_sym_DASH, + ACTIONS(8008), 1, + anon_sym_PLUS, + ACTIONS(8010), 1, + anon_sym_STAR, + ACTIONS(8012), 1, + anon_sym_SLASH, + ACTIONS(8014), 1, + anon_sym_PERCENT, + ACTIONS(8016), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8018), 1, + anon_sym_AMP_AMP, + ACTIONS(8020), 1, + anon_sym_PIPE, + ACTIONS(8022), 1, + anon_sym_CARET, + ACTIONS(8024), 1, + anon_sym_AMP, + ACTIONS(8026), 1, + anon_sym_EQ_EQ, + ACTIONS(8028), 1, + anon_sym_BANG_EQ, + ACTIONS(8030), 1, + anon_sym_GT, + ACTIONS(8032), 1, + anon_sym_GT_EQ, + ACTIONS(8034), 1, + anon_sym_LT_EQ, + ACTIONS(8036), 1, + anon_sym_LT, + ACTIONS(8038), 1, + anon_sym_LT_LT, + ACTIONS(8040), 1, + anon_sym_GT_GT, + ACTIONS(8042), 1, + anon_sym_EQ, + ACTIONS(8044), 1, + anon_sym_QMARK, + ACTIONS(8046), 1, + anon_sym_STAR_EQ, + ACTIONS(8048), 1, + anon_sym_SLASH_EQ, + ACTIONS(8050), 1, + anon_sym_PERCENT_EQ, + ACTIONS(8052), 1, + anon_sym_PLUS_EQ, + ACTIONS(8054), 1, + anon_sym_DASH_EQ, + ACTIONS(8056), 1, + anon_sym_LT_LT_EQ, + ACTIONS(8058), 1, + anon_sym_GT_GT_EQ, + ACTIONS(8060), 1, + anon_sym_AMP_EQ, + ACTIONS(8062), 1, + anon_sym_CARET_EQ, + ACTIONS(8064), 1, + anon_sym_PIPE_EQ, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8068), 1, + anon_sym_or, + ACTIONS(8070), 1, + anon_sym_and, + ACTIONS(8072), 1, + anon_sym_bitor, + ACTIONS(8074), 1, + anon_sym_xor, + ACTIONS(8076), 1, + anon_sym_bitand, + ACTIONS(8078), 1, + anon_sym_not_eq, + STATE(1920), 1, + sym__binary_fold_operator, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + STATE(8469), 1, + sym__fold_operator, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [56194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7039), 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(7041), 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, + [56254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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(3274), 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, + [56314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4478), 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(4480), 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, + [56374] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4735), 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(4737), 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, + [56436] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7445), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7532), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7534), 1, + anon_sym_AMP_AMP, + ACTIONS(7536), 1, + anon_sym_PIPE, + ACTIONS(7540), 1, + anon_sym_AMP, + ACTIONS(7546), 1, + anon_sym_GT_EQ, + ACTIONS(7550), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7552), 1, + anon_sym_or, + ACTIONS(7554), 1, + anon_sym_and, + ACTIONS(7556), 1, + anon_sym_bitor, + ACTIONS(7558), 1, + anon_sym_bitand, + ACTIONS(7566), 1, + anon_sym_QMARK, + ACTIONS(7734), 1, + anon_sym_RPAREN, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8084), 1, + anon_sym_EQ, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7538), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7548), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7530), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7542), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7544), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7652), 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, + [56550] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7964), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 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, + ACTIONS(7085), 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, + [56626] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7672), 1, + anon_sym_DOT_STAR, + ACTIONS(7674), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(8000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8002), 1, + anon_sym_COMMA, + ACTIONS(8006), 1, + anon_sym_DASH, + ACTIONS(8008), 1, + anon_sym_PLUS, + ACTIONS(8010), 1, + anon_sym_STAR, + ACTIONS(8012), 1, + anon_sym_SLASH, + ACTIONS(8014), 1, + anon_sym_PERCENT, + ACTIONS(8016), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8018), 1, + anon_sym_AMP_AMP, + ACTIONS(8020), 1, + anon_sym_PIPE, + ACTIONS(8022), 1, + anon_sym_CARET, + ACTIONS(8024), 1, + anon_sym_AMP, + ACTIONS(8026), 1, + anon_sym_EQ_EQ, + ACTIONS(8028), 1, + anon_sym_BANG_EQ, + ACTIONS(8030), 1, + anon_sym_GT, + ACTIONS(8032), 1, + anon_sym_GT_EQ, + ACTIONS(8034), 1, + anon_sym_LT_EQ, + ACTIONS(8036), 1, + anon_sym_LT, + ACTIONS(8038), 1, + anon_sym_LT_LT, + ACTIONS(8040), 1, + anon_sym_GT_GT, + ACTIONS(8042), 1, + anon_sym_EQ, + ACTIONS(8044), 1, + anon_sym_QMARK, + ACTIONS(8046), 1, + anon_sym_STAR_EQ, + ACTIONS(8048), 1, + anon_sym_SLASH_EQ, + ACTIONS(8050), 1, + anon_sym_PERCENT_EQ, + ACTIONS(8052), 1, + anon_sym_PLUS_EQ, + ACTIONS(8054), 1, + anon_sym_DASH_EQ, + ACTIONS(8056), 1, + anon_sym_LT_LT_EQ, + ACTIONS(8058), 1, + anon_sym_GT_GT_EQ, + ACTIONS(8060), 1, + anon_sym_AMP_EQ, + ACTIONS(8062), 1, + anon_sym_CARET_EQ, + ACTIONS(8064), 1, + anon_sym_PIPE_EQ, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8068), 1, + anon_sym_or, + ACTIONS(8070), 1, + anon_sym_and, + ACTIONS(8072), 1, + anon_sym_bitor, + ACTIONS(8074), 1, + anon_sym_xor, + ACTIONS(8076), 1, + anon_sym_bitand, + ACTIONS(8078), 1, + anon_sym_not_eq, + ACTIONS(8086), 1, + anon_sym_RPAREN, + STATE(1920), 1, + sym__binary_fold_operator, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + STATE(8469), 1, + sym__fold_operator, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [56782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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(3274), 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, + [56842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6849), 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(6851), 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, + [56902] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7672), 1, + anon_sym_DOT_STAR, + ACTIONS(7674), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(8000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8002), 1, + anon_sym_COMMA, + ACTIONS(8006), 1, + anon_sym_DASH, + ACTIONS(8008), 1, + anon_sym_PLUS, + ACTIONS(8010), 1, + anon_sym_STAR, + ACTIONS(8012), 1, + anon_sym_SLASH, + ACTIONS(8014), 1, + anon_sym_PERCENT, + ACTIONS(8016), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8018), 1, + anon_sym_AMP_AMP, + ACTIONS(8020), 1, + anon_sym_PIPE, + ACTIONS(8022), 1, + anon_sym_CARET, + ACTIONS(8024), 1, + anon_sym_AMP, + ACTIONS(8026), 1, + anon_sym_EQ_EQ, + ACTIONS(8028), 1, + anon_sym_BANG_EQ, + ACTIONS(8030), 1, + anon_sym_GT, + ACTIONS(8032), 1, + anon_sym_GT_EQ, + ACTIONS(8034), 1, + anon_sym_LT_EQ, + ACTIONS(8036), 1, + anon_sym_LT, + ACTIONS(8038), 1, + anon_sym_LT_LT, + ACTIONS(8040), 1, + anon_sym_GT_GT, + ACTIONS(8042), 1, + anon_sym_EQ, + ACTIONS(8044), 1, + anon_sym_QMARK, + ACTIONS(8046), 1, + anon_sym_STAR_EQ, + ACTIONS(8048), 1, + anon_sym_SLASH_EQ, + ACTIONS(8050), 1, + anon_sym_PERCENT_EQ, + ACTIONS(8052), 1, + anon_sym_PLUS_EQ, + ACTIONS(8054), 1, + anon_sym_DASH_EQ, + ACTIONS(8056), 1, + anon_sym_LT_LT_EQ, + ACTIONS(8058), 1, + anon_sym_GT_GT_EQ, + ACTIONS(8060), 1, + anon_sym_AMP_EQ, + ACTIONS(8062), 1, + anon_sym_CARET_EQ, + ACTIONS(8064), 1, + anon_sym_PIPE_EQ, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8068), 1, + anon_sym_or, + ACTIONS(8070), 1, + anon_sym_and, + ACTIONS(8072), 1, + anon_sym_bitor, + ACTIONS(8074), 1, + anon_sym_xor, + ACTIONS(8076), 1, + anon_sym_bitand, + ACTIONS(8078), 1, + anon_sym_not_eq, + ACTIONS(8088), 1, + anon_sym_RPAREN, + STATE(1920), 1, + sym__binary_fold_operator, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + STATE(8469), 1, + sym__fold_operator, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [57058] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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(3274), 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, + [57118] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7083), 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(7085), 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, + [57192] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7672), 1, + anon_sym_DOT_STAR, + ACTIONS(7674), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(8000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8002), 1, + anon_sym_COMMA, + ACTIONS(8006), 1, + anon_sym_DASH, + ACTIONS(8008), 1, + anon_sym_PLUS, + ACTIONS(8010), 1, + anon_sym_STAR, + ACTIONS(8012), 1, + anon_sym_SLASH, + ACTIONS(8014), 1, + anon_sym_PERCENT, + ACTIONS(8016), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8018), 1, + anon_sym_AMP_AMP, + ACTIONS(8020), 1, + anon_sym_PIPE, + ACTIONS(8022), 1, + anon_sym_CARET, + ACTIONS(8024), 1, + anon_sym_AMP, + ACTIONS(8026), 1, + anon_sym_EQ_EQ, + ACTIONS(8028), 1, + anon_sym_BANG_EQ, + ACTIONS(8030), 1, + anon_sym_GT, + ACTIONS(8032), 1, + anon_sym_GT_EQ, + ACTIONS(8034), 1, + anon_sym_LT_EQ, + ACTIONS(8036), 1, + anon_sym_LT, + ACTIONS(8038), 1, + anon_sym_LT_LT, + ACTIONS(8040), 1, + anon_sym_GT_GT, + ACTIONS(8042), 1, + anon_sym_EQ, + ACTIONS(8044), 1, + anon_sym_QMARK, + ACTIONS(8046), 1, + anon_sym_STAR_EQ, + ACTIONS(8048), 1, + anon_sym_SLASH_EQ, + ACTIONS(8050), 1, + anon_sym_PERCENT_EQ, + ACTIONS(8052), 1, + anon_sym_PLUS_EQ, + ACTIONS(8054), 1, + anon_sym_DASH_EQ, + ACTIONS(8056), 1, + anon_sym_LT_LT_EQ, + ACTIONS(8058), 1, + anon_sym_GT_GT_EQ, + ACTIONS(8060), 1, + anon_sym_AMP_EQ, + ACTIONS(8062), 1, + anon_sym_CARET_EQ, + ACTIONS(8064), 1, + anon_sym_PIPE_EQ, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8068), 1, + anon_sym_or, + ACTIONS(8070), 1, + anon_sym_and, + ACTIONS(8072), 1, + anon_sym_bitor, + ACTIONS(8074), 1, + anon_sym_xor, + ACTIONS(8076), 1, + anon_sym_bitand, + ACTIONS(8078), 1, + anon_sym_not_eq, + ACTIONS(8090), 1, + anon_sym_RPAREN, + STATE(1920), 1, + sym__binary_fold_operator, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + STATE(8469), 1, + sym__fold_operator, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [57348] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 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_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(4215), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [57408] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 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_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(4215), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [57468] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7728), 1, + sym_auto, + ACTIONS(7730), 1, + anon_sym_decltype, + STATE(3762), 1, + sym_decltype_auto, + ACTIONS(4785), 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(4787), 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, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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, + [57534] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7039), 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(7041), 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_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [57594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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(3274), 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, + [57654] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7672), 1, + anon_sym_DOT_STAR, + ACTIONS(7674), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(8000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8002), 1, + anon_sym_COMMA, + ACTIONS(8006), 1, + anon_sym_DASH, + ACTIONS(8008), 1, + anon_sym_PLUS, + ACTIONS(8010), 1, + anon_sym_STAR, + ACTIONS(8012), 1, + anon_sym_SLASH, + ACTIONS(8014), 1, + anon_sym_PERCENT, + ACTIONS(8016), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8018), 1, + anon_sym_AMP_AMP, + ACTIONS(8020), 1, + anon_sym_PIPE, + ACTIONS(8022), 1, + anon_sym_CARET, + ACTIONS(8024), 1, + anon_sym_AMP, + ACTIONS(8026), 1, + anon_sym_EQ_EQ, + ACTIONS(8028), 1, + anon_sym_BANG_EQ, + ACTIONS(8030), 1, + anon_sym_GT, + ACTIONS(8032), 1, + anon_sym_GT_EQ, + ACTIONS(8034), 1, + anon_sym_LT_EQ, + ACTIONS(8036), 1, + anon_sym_LT, + ACTIONS(8038), 1, + anon_sym_LT_LT, + ACTIONS(8040), 1, + anon_sym_GT_GT, + ACTIONS(8042), 1, + anon_sym_EQ, + ACTIONS(8044), 1, + anon_sym_QMARK, + ACTIONS(8046), 1, + anon_sym_STAR_EQ, + ACTIONS(8048), 1, + anon_sym_SLASH_EQ, + ACTIONS(8050), 1, + anon_sym_PERCENT_EQ, + ACTIONS(8052), 1, + anon_sym_PLUS_EQ, + ACTIONS(8054), 1, + anon_sym_DASH_EQ, + ACTIONS(8056), 1, + anon_sym_LT_LT_EQ, + ACTIONS(8058), 1, + anon_sym_GT_GT_EQ, + ACTIONS(8060), 1, + anon_sym_AMP_EQ, + ACTIONS(8062), 1, + anon_sym_CARET_EQ, + ACTIONS(8064), 1, + anon_sym_PIPE_EQ, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8068), 1, + anon_sym_or, + ACTIONS(8070), 1, + anon_sym_and, + ACTIONS(8072), 1, + anon_sym_bitor, + ACTIONS(8074), 1, + anon_sym_xor, + ACTIONS(8076), 1, + anon_sym_bitand, + ACTIONS(8078), 1, + anon_sym_not_eq, + ACTIONS(8092), 1, + anon_sym_RPAREN, + STATE(1920), 1, + sym__binary_fold_operator, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + STATE(8469), 1, + sym__fold_operator, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [57810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7219), 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(7221), 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, + [57870] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7968), 1, + anon_sym_AMP_AMP, + ACTIONS(7970), 1, + anon_sym_PIPE, + ACTIONS(7974), 1, + anon_sym_AMP, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7984), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7988), 1, + anon_sym_and, + ACTIONS(7990), 1, + anon_sym_bitor, + ACTIONS(7992), 1, + anon_sym_bitand, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7972), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7980), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7083), 3, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + ACTIONS(7964), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7976), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7978), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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_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, + [57970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 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_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(4215), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [58030] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7966), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7968), 1, + anon_sym_AMP_AMP, + ACTIONS(7970), 1, + anon_sym_PIPE, + ACTIONS(7974), 1, + anon_sym_AMP, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7984), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7986), 1, + anon_sym_or, + ACTIONS(7988), 1, + anon_sym_and, + ACTIONS(7990), 1, + anon_sym_bitor, + ACTIONS(7992), 1, + anon_sym_bitand, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7449), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7972), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7980), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7964), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7976), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7978), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7451), 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, + [58134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6837), 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(6839), 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, + [58194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6841), 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(6843), 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, + [58254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6845), 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(6847), 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, + [58314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6677), 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(6675), 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_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [58374] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7826), 1, + anon_sym___attribute__, + ACTIONS(7829), 1, + anon_sym___attribute, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(8094), 1, + anon_sym_DASH_GT, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5329), 1, + sym__function_attributes_start, + STATE(5477), 1, + sym_ref_qualifier, + STATE(6426), 1, + sym__function_attributes_end, + STATE(6533), 1, + sym_trailing_return_type, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6370), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7469), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + STATE(5661), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [58488] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7970), 1, + anon_sym_PIPE, + ACTIONS(7974), 1, + anon_sym_AMP, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7984), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7990), 1, + anon_sym_bitor, + ACTIONS(7992), 1, + anon_sym_bitand, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7972), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7980), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7964), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7976), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7083), 4, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(7978), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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, + [58584] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7974), 1, + anon_sym_AMP, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7984), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7992), 1, + anon_sym_bitand, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7972), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7980), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7964), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7976), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7978), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(7085), 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, + [58676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4698), 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(4700), 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, + [58736] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7435), 1, + anon_sym_LBRACK, + STATE(3708), 1, + sym_new_declarator, + ACTIONS(6947), 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(6949), 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_LBRACE, + anon_sym_QMARK, + anon_sym_STAR_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, + [58800] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7974), 1, + anon_sym_AMP, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7984), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7992), 1, + anon_sym_bitand, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7980), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7964), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7976), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7978), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 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(7085), 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, + [58890] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3125), 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(3097), 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(3089), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [58954] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7890), 1, + anon_sym_LT, + STATE(865), 1, + sym_template_argument_list, + ACTIONS(7045), 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(7047), 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, + [59018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4209), 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_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(4211), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [59078] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7984), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7980), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7964), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7976), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7978), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 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(7085), 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, + [59164] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7966), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7968), 1, + anon_sym_AMP_AMP, + ACTIONS(7970), 1, + anon_sym_PIPE, + ACTIONS(7974), 1, + anon_sym_AMP, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7984), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7986), 1, + anon_sym_or, + ACTIONS(7988), 1, + anon_sym_and, + ACTIONS(7990), 1, + anon_sym_bitor, + ACTIONS(7992), 1, + anon_sym_bitand, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8096), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8098), 1, + anon_sym_QMARK, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7461), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7972), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7980), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7964), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7976), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7978), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7463), 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, + [59272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4694), 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(4696), 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, + [59332] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7984), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7980), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7964), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7978), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 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(7085), 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, + [59416] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 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, + [59490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7235), 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(7237), 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_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [59550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7001), 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(7003), 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, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [59610] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8100), 1, + sym_literal_suffix, + ACTIONS(3097), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3089), 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, + [59672] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8102), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(7039), 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(7041), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [59734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6827), 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(6829), 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, + [59794] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7568), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(8104), 1, + anon_sym_DASH_GT, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5346), 1, + sym__function_attributes_start, + STATE(5485), 1, + sym_ref_qualifier, + STATE(5749), 1, + sym_trailing_return_type, + STATE(6584), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6093), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7469), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(5663), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [59908] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7966), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7968), 1, + anon_sym_AMP_AMP, + ACTIONS(7970), 1, + anon_sym_PIPE, + ACTIONS(7974), 1, + anon_sym_AMP, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7984), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7986), 1, + anon_sym_or, + ACTIONS(7988), 1, + anon_sym_and, + ACTIONS(7990), 1, + anon_sym_bitor, + ACTIONS(7992), 1, + anon_sym_bitand, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8096), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8098), 1, + anon_sym_QMARK, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7453), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7972), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7980), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7964), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7976), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7978), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7455), 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, + [60016] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7984), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7980), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7964), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 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(7085), 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, + [60098] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7568), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7579), 1, + anon_sym_requires, + ACTIONS(8104), 1, + anon_sym_DASH_GT, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5330), 1, + sym__function_attributes_start, + STATE(5478), 1, + sym_ref_qualifier, + STATE(5745), 1, + sym_trailing_return_type, + STATE(6588), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7504), 2, + anon_sym_final, + anon_sym_override, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6093), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7469), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(5682), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [60212] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(8113), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(8110), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8108), 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(8106), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [60280] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6904), 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(6906), 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, + [60340] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7964), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 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(7085), 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, + [60418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6908), 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(6910), 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, + [60478] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6912), 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(6914), 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, + [60538] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3296), 1, + anon_sym_COLON_COLON, + ACTIONS(6972), 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(6974), 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, + [60600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6920), 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(6922), 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, + [60660] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7980), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7964), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 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(7085), 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, + [60740] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5720), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6693), 1, + anon_sym_LBRACK, + ACTIONS(6687), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(3097), 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(3089), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [60806] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8116), 1, + anon_sym_LT, + STATE(3495), 1, + sym_template_argument_list, + ACTIONS(7045), 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(7047), 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, + [60870] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5720), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6687), 1, + anon_sym_LPAREN2, + ACTIONS(6693), 1, + anon_sym_LBRACK, + ACTIONS(3097), 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(3089), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [60936] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7672), 1, + anon_sym_DOT_STAR, + ACTIONS(7674), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(8000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8002), 1, + anon_sym_COMMA, + ACTIONS(8006), 1, + anon_sym_DASH, + ACTIONS(8008), 1, + anon_sym_PLUS, + ACTIONS(8010), 1, + anon_sym_STAR, + ACTIONS(8012), 1, + anon_sym_SLASH, + ACTIONS(8014), 1, + anon_sym_PERCENT, + ACTIONS(8016), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8018), 1, + anon_sym_AMP_AMP, + ACTIONS(8020), 1, + anon_sym_PIPE, + ACTIONS(8022), 1, + anon_sym_CARET, + ACTIONS(8024), 1, + anon_sym_AMP, + ACTIONS(8026), 1, + anon_sym_EQ_EQ, + ACTIONS(8028), 1, + anon_sym_BANG_EQ, + ACTIONS(8030), 1, + anon_sym_GT, + ACTIONS(8032), 1, + anon_sym_GT_EQ, + ACTIONS(8034), 1, + anon_sym_LT_EQ, + ACTIONS(8036), 1, + anon_sym_LT, + ACTIONS(8038), 1, + anon_sym_LT_LT, + ACTIONS(8040), 1, + anon_sym_GT_GT, + ACTIONS(8042), 1, + anon_sym_EQ, + ACTIONS(8044), 1, + anon_sym_QMARK, + ACTIONS(8046), 1, + anon_sym_STAR_EQ, + ACTIONS(8048), 1, + anon_sym_SLASH_EQ, + ACTIONS(8050), 1, + anon_sym_PERCENT_EQ, + ACTIONS(8052), 1, + anon_sym_PLUS_EQ, + ACTIONS(8054), 1, + anon_sym_DASH_EQ, + ACTIONS(8056), 1, + anon_sym_LT_LT_EQ, + ACTIONS(8058), 1, + anon_sym_GT_GT_EQ, + ACTIONS(8060), 1, + anon_sym_AMP_EQ, + ACTIONS(8062), 1, + anon_sym_CARET_EQ, + ACTIONS(8064), 1, + anon_sym_PIPE_EQ, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8068), 1, + anon_sym_or, + ACTIONS(8070), 1, + anon_sym_and, + ACTIONS(8072), 1, + anon_sym_bitor, + ACTIONS(8074), 1, + anon_sym_xor, + ACTIONS(8076), 1, + anon_sym_bitand, + ACTIONS(8078), 1, + anon_sym_not_eq, + ACTIONS(8119), 1, + anon_sym_RPAREN, + STATE(1920), 1, + sym__binary_fold_operator, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + STATE(8469), 1, + sym__fold_operator, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [61092] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7966), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7968), 1, + anon_sym_AMP_AMP, + ACTIONS(7970), 1, + anon_sym_PIPE, + ACTIONS(7974), 1, + anon_sym_AMP, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7984), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7986), 1, + anon_sym_or, + ACTIONS(7988), 1, + anon_sym_and, + ACTIONS(7990), 1, + anon_sym_bitor, + ACTIONS(7992), 1, + anon_sym_bitand, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7465), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7972), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7980), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7964), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7976), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7978), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7467), 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, + [61196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4217), 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_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(4219), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [61256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 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_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(1877), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [61316] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8121), 1, + anon_sym_LT, + STATE(3735), 1, + sym_template_argument_list, + ACTIONS(6990), 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(6992), 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, + [61382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 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(2626), 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, + [61442] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7672), 1, + anon_sym_DOT_STAR, + ACTIONS(7674), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(8000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8002), 1, + anon_sym_COMMA, + ACTIONS(8006), 1, + anon_sym_DASH, + ACTIONS(8008), 1, + anon_sym_PLUS, + ACTIONS(8010), 1, + anon_sym_STAR, + ACTIONS(8012), 1, + anon_sym_SLASH, + ACTIONS(8014), 1, + anon_sym_PERCENT, + ACTIONS(8016), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8018), 1, + anon_sym_AMP_AMP, + ACTIONS(8020), 1, + anon_sym_PIPE, + ACTIONS(8022), 1, + anon_sym_CARET, + ACTIONS(8024), 1, + anon_sym_AMP, + ACTIONS(8026), 1, + anon_sym_EQ_EQ, + ACTIONS(8028), 1, + anon_sym_BANG_EQ, + ACTIONS(8030), 1, + anon_sym_GT, + ACTIONS(8032), 1, + anon_sym_GT_EQ, + ACTIONS(8034), 1, + anon_sym_LT_EQ, + ACTIONS(8036), 1, + anon_sym_LT, + ACTIONS(8038), 1, + anon_sym_LT_LT, + ACTIONS(8040), 1, + anon_sym_GT_GT, + ACTIONS(8042), 1, + anon_sym_EQ, + ACTIONS(8044), 1, + anon_sym_QMARK, + ACTIONS(8046), 1, + anon_sym_STAR_EQ, + ACTIONS(8048), 1, + anon_sym_SLASH_EQ, + ACTIONS(8050), 1, + anon_sym_PERCENT_EQ, + ACTIONS(8052), 1, + anon_sym_PLUS_EQ, + ACTIONS(8054), 1, + anon_sym_DASH_EQ, + ACTIONS(8056), 1, + anon_sym_LT_LT_EQ, + ACTIONS(8058), 1, + anon_sym_GT_GT_EQ, + ACTIONS(8060), 1, + anon_sym_AMP_EQ, + ACTIONS(8062), 1, + anon_sym_CARET_EQ, + ACTIONS(8064), 1, + anon_sym_PIPE_EQ, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8068), 1, + anon_sym_or, + ACTIONS(8070), 1, + anon_sym_and, + ACTIONS(8072), 1, + anon_sym_bitor, + ACTIONS(8074), 1, + anon_sym_xor, + ACTIONS(8076), 1, + anon_sym_bitand, + ACTIONS(8078), 1, + anon_sym_not_eq, + ACTIONS(8124), 1, + anon_sym_RPAREN, + STATE(1920), 1, + sym__binary_fold_operator, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + STATE(8469), 1, + sym__fold_operator, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [61598] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7966), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7968), 1, + anon_sym_AMP_AMP, + ACTIONS(7970), 1, + anon_sym_PIPE, + ACTIONS(7974), 1, + anon_sym_AMP, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7984), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7986), 1, + anon_sym_or, + ACTIONS(7988), 1, + anon_sym_and, + ACTIONS(7990), 1, + anon_sym_bitor, + ACTIONS(7992), 1, + anon_sym_bitand, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8096), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8098), 1, + anon_sym_QMARK, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7171), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7972), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7980), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7964), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7976), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7978), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7173), 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, + [61706] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8116), 1, + anon_sym_LT, + STATE(2467), 1, + sym_template_argument_list, + ACTIONS(7045), 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(7047), 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, + [61770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4243), 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_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(4245), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [61830] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7033), 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(7035), 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, + [61904] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7966), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7968), 1, + anon_sym_AMP_AMP, + ACTIONS(7970), 1, + anon_sym_PIPE, + ACTIONS(7974), 1, + anon_sym_AMP, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7984), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7986), 1, + anon_sym_or, + ACTIONS(7988), 1, + anon_sym_and, + ACTIONS(7990), 1, + anon_sym_bitor, + ACTIONS(7992), 1, + anon_sym_bitand, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7457), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7972), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7980), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7964), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7976), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7978), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7459), 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, + [62008] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5720), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6687), 1, + anon_sym_LPAREN2, + ACTIONS(6693), 1, + anon_sym_LBRACK, + ACTIONS(3097), 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(3089), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [62074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7067), 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(7069), 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, + [62134] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7063), 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(7065), 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_QMARK, + anon_sym_STAR_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_GT2, + [62206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4754), 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(4756), 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_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, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [62266] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8126), 1, + anon_sym_LT, + STATE(3735), 1, + sym_template_argument_list, + ACTIONS(6963), 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(6965), 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, + [62332] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6679), 1, + anon_sym_EQ, + ACTIONS(6681), 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(3097), 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___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3089), 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_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, + [62396] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7672), 1, + anon_sym_DOT_STAR, + ACTIONS(7674), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(8000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8002), 1, + anon_sym_COMMA, + ACTIONS(8006), 1, + anon_sym_DASH, + ACTIONS(8008), 1, + anon_sym_PLUS, + ACTIONS(8010), 1, + anon_sym_STAR, + ACTIONS(8012), 1, + anon_sym_SLASH, + ACTIONS(8014), 1, + anon_sym_PERCENT, + ACTIONS(8016), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8018), 1, + anon_sym_AMP_AMP, + ACTIONS(8020), 1, + anon_sym_PIPE, + ACTIONS(8022), 1, + anon_sym_CARET, + ACTIONS(8024), 1, + anon_sym_AMP, + ACTIONS(8026), 1, + anon_sym_EQ_EQ, + ACTIONS(8028), 1, + anon_sym_BANG_EQ, + ACTIONS(8030), 1, + anon_sym_GT, + ACTIONS(8032), 1, + anon_sym_GT_EQ, + ACTIONS(8034), 1, + anon_sym_LT_EQ, + ACTIONS(8036), 1, + anon_sym_LT, + ACTIONS(8038), 1, + anon_sym_LT_LT, + ACTIONS(8040), 1, + anon_sym_GT_GT, + ACTIONS(8042), 1, + anon_sym_EQ, + ACTIONS(8044), 1, + anon_sym_QMARK, + ACTIONS(8046), 1, + anon_sym_STAR_EQ, + ACTIONS(8048), 1, + anon_sym_SLASH_EQ, + ACTIONS(8050), 1, + anon_sym_PERCENT_EQ, + ACTIONS(8052), 1, + anon_sym_PLUS_EQ, + ACTIONS(8054), 1, + anon_sym_DASH_EQ, + ACTIONS(8056), 1, + anon_sym_LT_LT_EQ, + ACTIONS(8058), 1, + anon_sym_GT_GT_EQ, + ACTIONS(8060), 1, + anon_sym_AMP_EQ, + ACTIONS(8062), 1, + anon_sym_CARET_EQ, + ACTIONS(8064), 1, + anon_sym_PIPE_EQ, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8068), 1, + anon_sym_or, + ACTIONS(8070), 1, + anon_sym_and, + ACTIONS(8072), 1, + anon_sym_bitor, + ACTIONS(8074), 1, + anon_sym_xor, + ACTIONS(8076), 1, + anon_sym_bitand, + ACTIONS(8078), 1, + anon_sym_not_eq, + ACTIONS(8129), 1, + anon_sym_RPAREN, + STATE(1920), 1, + sym__binary_fold_operator, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + STATE(8469), 1, + sym__fold_operator, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [62552] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7171), 1, + anon_sym_EQ, + ACTIONS(7445), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7532), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7534), 1, + anon_sym_AMP_AMP, + ACTIONS(7536), 1, + anon_sym_PIPE, + ACTIONS(7540), 1, + anon_sym_AMP, + ACTIONS(7546), 1, + anon_sym_GT_EQ, + ACTIONS(7550), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7552), 1, + anon_sym_or, + ACTIONS(7554), 1, + anon_sym_and, + ACTIONS(7556), 1, + anon_sym_bitor, + ACTIONS(7558), 1, + anon_sym_bitand, + ACTIONS(7566), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7538), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7548), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8131), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(7530), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7542), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7544), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7173), 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, + [62664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4247), 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_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(4249), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [62724] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5720), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6693), 1, + anon_sym_LBRACK, + ACTIONS(6687), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(3097), 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(3089), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4251), 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_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(4253), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [62850] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(5720), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6687), 1, + anon_sym_LPAREN2, + ACTIONS(6693), 1, + anon_sym_LBRACK, + ACTIONS(3125), 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(3097), 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(3089), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [62920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7512), 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(7514), 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, + [62980] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 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_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(4223), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [63040] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7017), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7019), 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_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [63112] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7395), 1, + anon_sym_EQ, + ACTIONS(7928), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7930), 1, + anon_sym_AMP_AMP, + ACTIONS(7932), 1, + anon_sym_PIPE, + ACTIONS(7936), 1, + anon_sym_AMP, + ACTIONS(7942), 1, + anon_sym_GT_EQ, + ACTIONS(7946), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7948), 1, + anon_sym_or, + ACTIONS(7950), 1, + anon_sym_and, + ACTIONS(7952), 1, + anon_sym_bitor, + ACTIONS(7954), 1, + anon_sym_bitand, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7934), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7944), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7938), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7940), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7397), 17, + 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, + [63218] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7071), 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(7073), 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, + [63292] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7027), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7029), 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [63366] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7033), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7035), 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [63440] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7465), 1, + anon_sym_EQ, + ACTIONS(7928), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7930), 1, + anon_sym_AMP_AMP, + ACTIONS(7932), 1, + anon_sym_PIPE, + ACTIONS(7936), 1, + anon_sym_AMP, + ACTIONS(7942), 1, + anon_sym_GT_EQ, + ACTIONS(7946), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7948), 1, + anon_sym_or, + ACTIONS(7950), 1, + anon_sym_and, + ACTIONS(7952), 1, + anon_sym_bitor, + ACTIONS(7954), 1, + anon_sym_bitand, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7934), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7944), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7938), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7940), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7467), 17, + 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, + [63546] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7063), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7065), 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_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [63618] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7441), 1, + anon_sym_EQ, + ACTIONS(7928), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7930), 1, + anon_sym_AMP_AMP, + ACTIONS(7932), 1, + anon_sym_PIPE, + ACTIONS(7936), 1, + anon_sym_AMP, + ACTIONS(7942), 1, + anon_sym_GT_EQ, + ACTIONS(7946), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7948), 1, + anon_sym_or, + ACTIONS(7950), 1, + anon_sym_and, + ACTIONS(7952), 1, + anon_sym_bitor, + ACTIONS(7954), 1, + anon_sym_bitand, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7934), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7944), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7938), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7940), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7443), 17, + 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, + [63724] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7171), 1, + anon_sym_EQ, + ACTIONS(7445), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7928), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7930), 1, + anon_sym_AMP_AMP, + ACTIONS(7932), 1, + anon_sym_PIPE, + ACTIONS(7936), 1, + anon_sym_AMP, + ACTIONS(7942), 1, + anon_sym_GT_EQ, + ACTIONS(7946), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7948), 1, + anon_sym_or, + ACTIONS(7950), 1, + anon_sym_and, + ACTIONS(7952), 1, + anon_sym_bitor, + ACTIONS(7954), 1, + anon_sym_bitand, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8133), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7934), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7944), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7938), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7940), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7173), 15, + anon_sym_COMMA, + 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, + [63834] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 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(7085), 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [63910] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7083), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [63984] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7930), 1, + anon_sym_AMP_AMP, + ACTIONS(7932), 1, + anon_sym_PIPE, + ACTIONS(7936), 1, + anon_sym_AMP, + ACTIONS(7942), 1, + anon_sym_GT_EQ, + ACTIONS(7946), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7950), 1, + anon_sym_and, + ACTIONS(7952), 1, + anon_sym_bitor, + ACTIONS(7954), 1, + anon_sym_bitand, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7083), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(7924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7934), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7944), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7938), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7940), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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, + [64086] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7932), 1, + anon_sym_PIPE, + ACTIONS(7936), 1, + anon_sym_AMP, + ACTIONS(7942), 1, + anon_sym_GT_EQ, + ACTIONS(7946), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7952), 1, + anon_sym_bitor, + ACTIONS(7954), 1, + anon_sym_bitand, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7934), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7944), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7083), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(7926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7938), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7940), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [64184] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7936), 1, + anon_sym_AMP, + ACTIONS(7942), 1, + anon_sym_GT_EQ, + ACTIONS(7946), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7954), 1, + anon_sym_bitand, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7934), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7944), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7938), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7940), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(7085), 20, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [64278] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7936), 1, + anon_sym_AMP, + ACTIONS(7942), 1, + anon_sym_GT_EQ, + ACTIONS(7946), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7954), 1, + anon_sym_bitand, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7944), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7938), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7940), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 20, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [64370] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7942), 1, + anon_sym_GT_EQ, + ACTIONS(7946), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7944), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7938), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7940), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 21, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [64458] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7942), 1, + anon_sym_GT_EQ, + ACTIONS(7946), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7944), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7940), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 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_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [64544] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7946), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7944), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [64626] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 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(7085), 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [64704] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7944), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7085), 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [64784] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7089), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7091), 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [64858] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7449), 1, + anon_sym_EQ, + ACTIONS(7928), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7930), 1, + anon_sym_AMP_AMP, + ACTIONS(7932), 1, + anon_sym_PIPE, + ACTIONS(7936), 1, + anon_sym_AMP, + ACTIONS(7942), 1, + anon_sym_GT_EQ, + ACTIONS(7946), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7948), 1, + anon_sym_or, + ACTIONS(7950), 1, + anon_sym_and, + ACTIONS(7952), 1, + anon_sym_bitor, + ACTIONS(7954), 1, + anon_sym_bitand, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7934), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7944), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7938), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7940), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7451), 17, + 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, + [64964] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7445), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7453), 1, + anon_sym_EQ, + ACTIONS(7928), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7930), 1, + anon_sym_AMP_AMP, + ACTIONS(7932), 1, + anon_sym_PIPE, + ACTIONS(7936), 1, + anon_sym_AMP, + ACTIONS(7942), 1, + anon_sym_GT_EQ, + ACTIONS(7946), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7948), 1, + anon_sym_or, + ACTIONS(7950), 1, + anon_sym_and, + ACTIONS(7952), 1, + anon_sym_bitor, + ACTIONS(7954), 1, + anon_sym_bitand, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8133), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7934), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7944), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7938), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7940), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7455), 15, + anon_sym_COMMA, + 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, + [65074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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(3274), 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, + [65134] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7445), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7461), 1, + anon_sym_EQ, + ACTIONS(7928), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7930), 1, + anon_sym_AMP_AMP, + ACTIONS(7932), 1, + anon_sym_PIPE, + ACTIONS(7936), 1, + anon_sym_AMP, + ACTIONS(7942), 1, + anon_sym_GT_EQ, + ACTIONS(7946), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7948), 1, + anon_sym_or, + ACTIONS(7950), 1, + anon_sym_and, + ACTIONS(7952), 1, + anon_sym_bitor, + ACTIONS(7954), 1, + anon_sym_bitand, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8133), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7934), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7944), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7938), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7940), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7463), 15, + anon_sym_COMMA, + 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, + [65244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4225), 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_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(4227), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [65304] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7826), 1, + anon_sym___attribute__, + ACTIONS(7829), 1, + anon_sym___attribute, + ACTIONS(7853), 1, + anon_sym_requires, + ACTIONS(8094), 1, + anon_sym_DASH_GT, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5333), 1, + sym__function_attributes_start, + STATE(5492), 1, + sym_ref_qualifier, + STATE(6432), 1, + sym__function_attributes_end, + STATE(6544), 1, + sym_trailing_return_type, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7774), 2, + anon_sym_final, + anon_sym_override, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6370), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7469), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + STATE(5667), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [65418] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8135), 1, + anon_sym_LT, + STATE(2502), 1, + sym_template_argument_list, + STATE(2546), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6243), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3087), 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___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3095), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___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, + [65488] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4229), 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_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(4231), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [65548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1875), 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_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(1873), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [65608] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6898), 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(6900), 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, + [65668] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7031), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7071), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7073), 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [65742] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7777), 1, + anon_sym_requires, + ACTIONS(7826), 1, + anon_sym___attribute__, + ACTIONS(7829), 1, + anon_sym___attribute, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5337), 1, + sym__function_attributes_start, + STATE(5497), 1, + sym_ref_qualifier, + STATE(6353), 1, + sym_trailing_return_type, + STATE(6484), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7774), 2, + anon_sym_final, + anon_sym_override, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6370), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7469), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(5669), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [65856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2628), 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(2630), 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, + [65916] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6927), 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(6929), 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, + [65976] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3296), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3298), 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(3291), 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, + [66038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 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_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(4183), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [66098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4233), 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_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(4235), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [66158] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4237), 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_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(4239), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [66218] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7017), 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(7019), 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_QMARK, + anon_sym_STAR_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_GT2, + [66290] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7966), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7968), 1, + anon_sym_AMP_AMP, + ACTIONS(7970), 1, + anon_sym_PIPE, + ACTIONS(7974), 1, + anon_sym_AMP, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7984), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7986), 1, + anon_sym_or, + ACTIONS(7988), 1, + anon_sym_and, + ACTIONS(7990), 1, + anon_sym_bitor, + ACTIONS(7992), 1, + anon_sym_bitand, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7395), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7972), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7980), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7994), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7964), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7976), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7978), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7397), 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, + [66394] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7672), 1, + anon_sym_DOT_STAR, + ACTIONS(7674), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(8000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8002), 1, + anon_sym_COMMA, + ACTIONS(8006), 1, + anon_sym_DASH, + ACTIONS(8008), 1, + anon_sym_PLUS, + ACTIONS(8010), 1, + anon_sym_STAR, + ACTIONS(8012), 1, + anon_sym_SLASH, + ACTIONS(8014), 1, + anon_sym_PERCENT, + ACTIONS(8016), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8018), 1, + anon_sym_AMP_AMP, + ACTIONS(8020), 1, + anon_sym_PIPE, + ACTIONS(8022), 1, + anon_sym_CARET, + ACTIONS(8024), 1, + anon_sym_AMP, + ACTIONS(8026), 1, + anon_sym_EQ_EQ, + ACTIONS(8028), 1, + anon_sym_BANG_EQ, + ACTIONS(8030), 1, + anon_sym_GT, + ACTIONS(8032), 1, + anon_sym_GT_EQ, + ACTIONS(8034), 1, + anon_sym_LT_EQ, + ACTIONS(8036), 1, + anon_sym_LT, + ACTIONS(8038), 1, + anon_sym_LT_LT, + ACTIONS(8040), 1, + anon_sym_GT_GT, + ACTIONS(8042), 1, + anon_sym_EQ, + ACTIONS(8044), 1, + anon_sym_QMARK, + ACTIONS(8046), 1, + anon_sym_STAR_EQ, + ACTIONS(8048), 1, + anon_sym_SLASH_EQ, + ACTIONS(8050), 1, + anon_sym_PERCENT_EQ, + ACTIONS(8052), 1, + anon_sym_PLUS_EQ, + ACTIONS(8054), 1, + anon_sym_DASH_EQ, + ACTIONS(8056), 1, + anon_sym_LT_LT_EQ, + ACTIONS(8058), 1, + anon_sym_GT_GT_EQ, + ACTIONS(8060), 1, + anon_sym_AMP_EQ, + ACTIONS(8062), 1, + anon_sym_CARET_EQ, + ACTIONS(8064), 1, + anon_sym_PIPE_EQ, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8068), 1, + anon_sym_or, + ACTIONS(8070), 1, + anon_sym_and, + ACTIONS(8072), 1, + anon_sym_bitor, + ACTIONS(8074), 1, + anon_sym_xor, + ACTIONS(8076), 1, + anon_sym_bitand, + ACTIONS(8078), 1, + anon_sym_not_eq, + ACTIONS(8137), 1, + anon_sym_RPAREN, + STATE(1920), 1, + sym__binary_fold_operator, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + STATE(8469), 1, + sym__fold_operator, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [66550] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + STATE(917), 1, + sym_template_argument_list, + STATE(2546), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6243), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5070), 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___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(5072), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___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, + [66618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5038), 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(5040), 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, + [66677] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 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(4215), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + 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, + [66736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 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(4215), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + 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, + [66795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 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(4215), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + 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, + [66854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6997), 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(6999), 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, + [66913] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8141), 1, + anon_sym_DASH_GT, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(5400), 1, + sym__function_attributes_start, + STATE(5564), 1, + sym_ref_qualifier, + STATE(6371), 1, + sym_trailing_return_type, + STATE(6696), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7469), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(4429), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4616), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6370), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5690), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [67026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 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, + ACTIONS(2626), 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, + [67085] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5676), 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(5678), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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, + [67144] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4340), 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(1978), 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, + [67203] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7777), 1, + anon_sym_requires, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8141), 1, + anon_sym_DASH_GT, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(5395), 1, + sym__function_attributes_start, + STATE(5585), 1, + sym_ref_qualifier, + STATE(6353), 1, + sym_trailing_return_type, + STATE(6726), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7469), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7774), 2, + anon_sym_final, + anon_sym_override, + STATE(4429), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4616), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6370), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5707), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [67316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7171), 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(7173), 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, + [67375] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7215), 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(7217), 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, + [67434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7514), 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(7512), 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, + [67493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4225), 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(4227), 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, + [67552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4229), 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(4231), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_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, + [67611] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4336), 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(4332), 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, + [67670] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8143), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(7039), 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, + ACTIONS(7041), 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_QMARK, + anon_sym_STAR_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, + [67731] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2628), 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, + ACTIONS(2630), 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, + [67790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7097), 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(7099), 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, + [67849] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7039), 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(7041), 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, + [67908] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7105), 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(7107), 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, + [67967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4233), 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(4235), 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, + [68026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4237), 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(4239), 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, + [68085] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6904), 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, + ACTIONS(6906), 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, + [68144] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6908), 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, + ACTIONS(6910), 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, + [68203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6912), 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, + ACTIONS(6914), 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, + [68262] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6920), 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, + ACTIONS(6922), 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, + [68321] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(6785), 1, + anon_sym_COMMA, + ACTIONS(6787), 1, + anon_sym_RPAREN, + STATE(7685), 1, + aux_sym__call_macro_with_decl_first_arg_repeat1, + ACTIONS(3125), 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(3089), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(3097), 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, + [68390] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6620), 1, + anon_sym___attribute, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_STAR, + ACTIONS(8149), 1, + anon_sym_AMP_AMP, + ACTIONS(8151), 1, + anon_sym_AMP, + ACTIONS(8153), 1, + sym_ms_restrict_modifier, + ACTIONS(8159), 1, + anon_sym_LBRACK, + STATE(3196), 1, + sym_parameter_list, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6310), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8155), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8157), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3692), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4492), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6612), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [68487] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6631), 1, + anon_sym___attribute, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_STAR, + ACTIONS(8149), 1, + anon_sym_AMP_AMP, + ACTIONS(8151), 1, + anon_sym_AMP, + ACTIONS(8153), 1, + sym_ms_restrict_modifier, + ACTIONS(8159), 1, + anon_sym_LBRACK, + STATE(3196), 1, + sym_parameter_list, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6314), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8155), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8157), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4440), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [68584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7207), 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(7209), 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, + [68643] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(6620), 1, + anon_sym___asm, + ACTIONS(8153), 1, + sym_ms_restrict_modifier, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8163), 1, + anon_sym_STAR, + ACTIONS(8165), 1, + anon_sym_AMP_AMP, + ACTIONS(8167), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3233), 1, + sym_parameter_list, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6409), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8155), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8157), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3695), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4466), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6612), 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(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [68740] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(6631), 1, + anon_sym___asm, + ACTIONS(8153), 1, + sym_ms_restrict_modifier, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8163), 1, + anon_sym_STAR, + ACTIONS(8165), 1, + anon_sym_AMP_AMP, + ACTIONS(8167), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3233), 1, + sym_parameter_list, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6413), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8155), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8157), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4485), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 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(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [68837] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8169), 1, + anon_sym_LT, + STATE(3655), 1, + sym_template_argument_list, + ACTIONS(7045), 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(7047), 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, + [68900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 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(4492), 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, + [68959] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 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(7229), 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, + [69018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7159), 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(7161), 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, + [69077] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7113), 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(7115), 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, + [69136] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7247), 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(7249), 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, + [69195] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6849), 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, + ACTIONS(6851), 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, + [69254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7259), 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(7261), 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, + [69313] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(6785), 1, + anon_sym_COMMA, + ACTIONS(6816), 1, + anon_sym_RPAREN, + STATE(7921), 1, + aux_sym__call_macro_with_decl_first_arg_repeat1, + ACTIONS(3125), 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(3089), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(3097), 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, + [69382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7117), 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(7119), 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, + [69441] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7243), 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(7245), 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, + [69500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4209), 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(4211), 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, + [69559] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7001), 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(7003), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_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, + [69618] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6620), 1, + anon_sym___asm, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8153), 1, + sym_ms_restrict_modifier, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8172), 1, + anon_sym_STAR, + ACTIONS(8174), 1, + anon_sym_AMP_AMP, + ACTIONS(8176), 1, + anon_sym_AMP, + STATE(3235), 1, + sym_parameter_list, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6326), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8155), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8157), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3710), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4441), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6612), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [69715] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6631), 1, + anon_sym___asm, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8153), 1, + sym_ms_restrict_modifier, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8172), 1, + anon_sym_STAR, + ACTIONS(8174), 1, + anon_sym_AMP_AMP, + ACTIONS(8176), 1, + anon_sym_AMP, + STATE(3235), 1, + sym_parameter_list, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6330), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8155), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8157), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4450), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [69812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7109), 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(7111), 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, + [69871] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8169), 1, + anon_sym_LT, + STATE(2536), 1, + sym_template_argument_list, + ACTIONS(7045), 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(7047), 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, + [69934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7167), 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(7169), 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, + [69993] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4217), 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(4219), 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, + [70052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4243), 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(4245), 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, + [70111] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8178), 1, + anon_sym_AMP_AMP, + ACTIONS(8180), 1, + anon_sym_and, + ACTIONS(4647), 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_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4649), 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, + [70174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_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(4223), 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, + [70233] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 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(6530), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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, + [70292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4698), 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, + ACTIONS(4700), 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, + [70351] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(3492), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6683), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6685), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(6641), 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___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(6643), 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, + [70416] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7009), 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(7011), 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, + [70475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7009), 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(7011), 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, + [70534] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7009), 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(7011), 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, + [70593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7013), 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(7015), 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, + [70652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7129), 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(7131), 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, + [70711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7079), 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(7081), 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, + [70770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6898), 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, + ACTIONS(6900), 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, + [70829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6927), 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, + ACTIONS(6929), 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, + [70888] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4247), 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(4249), 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, + [70947] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7884), 1, + anon_sym_LT, + STATE(872), 1, + sym_template_argument_list, + ACTIONS(7045), 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(7047), 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, + [71010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4251), 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(4253), 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, + [71069] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(6785), 1, + anon_sym_COMMA, + ACTIONS(6798), 1, + anon_sym_RPAREN, + STATE(7878), 1, + aux_sym__call_macro_with_decl_first_arg_repeat1, + ACTIONS(3125), 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(3089), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(3097), 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, + [71138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7125), 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(7127), 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, + [71197] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7137), 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(7139), 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, + [71256] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3296), 1, + anon_sym_COLON_COLON, + ACTIONS(6972), 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(6974), 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, + [71317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7239), 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(7241), 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, + [71376] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4694), 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, + ACTIONS(4696), 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, + [71435] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6837), 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, + ACTIONS(6839), 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, + [71494] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6841), 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, + ACTIONS(6843), 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, + [71553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6845), 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, + ACTIONS(6847), 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, + [71612] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7067), 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, + ACTIONS(7069), 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, + [71671] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5672), 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(5674), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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, + [71730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6827), 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, + ACTIONS(6829), 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, + [71789] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5112), 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(5114), 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, + [71848] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7271), 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(7273), 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, + [71907] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4735), 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(4737), 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, + [71966] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6794), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3097), 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(3089), 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, + [72027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7279), 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(7281), 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, + [72086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7199), 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(7201), 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, + [72145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7255), 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(7257), 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, + [72204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4735), 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(4737), 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, + [72263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7101), 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(7103), 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, + [72322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1875), 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(1873), 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, + [72381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7263), 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(7265), 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, + [72440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 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(4980), 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, + [72499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4910), 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(4912), 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, + [72558] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 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(4928), 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, + [72617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4982), 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(4984), 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, + [72676] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8182), 1, + sym_identifier, + STATE(3791), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6343), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6345), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(6503), 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(6501), 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, + [72743] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7203), 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(7205), 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, + [72802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7283), 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(7285), 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, + [72861] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5104), 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(5106), 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, + [72920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7251), 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(7253), 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, + [72979] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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(3274), 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, + [73038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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(3274), 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, + [73097] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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(3274), 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, + [73156] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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(3274), 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, + [73215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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(3274), 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, + [73274] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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(3274), 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, + [73333] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 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(4257), 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, + [73392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7141), 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(7143), 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, + [73451] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7235), 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(7237), 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, + [73510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7145), 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(7147), 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, + [73569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 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(1877), 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, + [73628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6524), 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(6526), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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, + [73687] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4813), 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(4815), 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, + [73746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7247), 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(7249), 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, + [73805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7183), 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(7185), 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, + [73864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 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(5004), 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, + [73923] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5006), 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(5008), 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, + [73982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5050), 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(5052), 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, + [74041] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5054), 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(5056), 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, + [74100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 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(4900), 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, + [74159] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5058), 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(5060), 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, + [74218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 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(5064), 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, + [74277] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 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(4900), 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, + [74336] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 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(4900), 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, + [74395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7121), 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(7123), 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, + [74454] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7155), 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(7157), 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, + [74513] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7187), 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(7189), 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, + [74572] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8184), 1, + sym_identifier, + STATE(3830), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6343), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6345), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(6522), 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(6520), 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, + [74639] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7267), 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(7269), 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, + [74698] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3919), 1, + anon_sym_LBRACE, + ACTIONS(7724), 1, + anon_sym_LPAREN2, + STATE(4191), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6916), 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(6918), 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, + [74763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3097), 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(3089), 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, + [74822] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8186), 1, + anon_sym_LT, + STATE(2502), 1, + sym_template_argument_list, + ACTIONS(4529), 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___attribute__, + 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(3113), 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, + [74887] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8188), 1, + anon_sym_LT, + STATE(2502), 1, + sym_template_argument_list, + ACTIONS(3272), 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___attribute__, + 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(3279), 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, + [74952] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7568), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(7826), 1, + anon_sym___attribute__, + ACTIONS(7829), 1, + anon_sym___attribute, + ACTIONS(8191), 1, + anon_sym_DASH_GT, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5381), 1, + sym__function_attributes_start, + STATE(5560), 1, + sym_ref_qualifier, + STATE(6219), 1, + sym_trailing_return_type, + STATE(6439), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7469), 2, + anon_sym_COMMA, + anon_sym_LPAREN2, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6093), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5697), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [75065] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7483), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8193), 1, + anon_sym_DASH_GT, + ACTIONS(8195), 1, + anon_sym_requires, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(5382), 1, + sym__function_attributes_start, + STATE(5591), 1, + sym_ref_qualifier, + STATE(6616), 1, + sym__function_attributes_end, + STATE(6766), 1, + sym_trailing_return_type, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7469), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7504), 2, + anon_sym_final, + anon_sym_override, + STATE(4429), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4616), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6093), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5705), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [75178] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7568), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7796), 1, + anon_sym_requires, + ACTIONS(7826), 1, + anon_sym___attribute__, + ACTIONS(7829), 1, + anon_sym___attribute, + ACTIONS(8191), 1, + anon_sym_DASH_GT, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5385), 1, + sym__function_attributes_start, + STATE(5577), 1, + sym_ref_qualifier, + STATE(6278), 1, + sym_trailing_return_type, + STATE(6443), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7469), 2, + anon_sym_COMMA, + anon_sym_LPAREN2, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7504), 2, + anon_sym_final, + anon_sym_override, + STATE(4319), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4522), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6093), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5687), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [75291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 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(7225), 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, + [75350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 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(4183), 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, + [75409] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8178), 1, + anon_sym_AMP_AMP, + ACTIONS(8180), 1, + anon_sym_and, + ACTIONS(8198), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8200), 1, + anon_sym_or, + ACTIONS(4561), 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_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4563), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [75476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3097), 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(3089), 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, + [75535] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6677), 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(6675), 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, + [75594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7219), 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(7221), 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, + [75653] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7231), 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(7233), 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, + [75712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7211), 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(7213), 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, + [75771] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7163), 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(7165), 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, + [75830] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3919), 1, + anon_sym_LBRACE, + ACTIONS(7724), 1, + anon_sym_LPAREN2, + STATE(4200), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6931), 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(6933), 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, + [75895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4954), 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(4956), 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, + [75954] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4962), 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(4964), 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, + [76013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7179), 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(7181), 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, + [76072] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7195), 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(7197), 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, + [76131] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4890), 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(4892), 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, + [76190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 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(4896), 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, + [76249] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7287), 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(7289), 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, + [76308] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5014), 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(5016), 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, + [76367] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5018), 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(5020), 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, + [76426] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5022), 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(5024), 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, + [76485] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5026), 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(5028), 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, + [76544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5030), 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(5032), 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, + [76603] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 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(5036), 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, + [76662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5042), 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(5044), 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, + [76721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5046), 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(5048), 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, + [76780] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5038), 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(5040), 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, + [76839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7291), 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(7293), 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, + [76898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7093), 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(7095), 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, + [76957] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7295), 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(7297), 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, + [77016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7149), 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(7151), 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, + [77075] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8202), 1, + sym_identifier, + STATE(3830), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(8205), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(8208), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(6510), 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(6508), 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, + [77142] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 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(4904), 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, + [77201] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7075), 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(7077), 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, + [77260] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3919), 1, + anon_sym_LBRACE, + ACTIONS(7724), 1, + anon_sym_LPAREN2, + STATE(4223), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6941), 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(6943), 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, + [77325] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7483), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7486), 1, + anon_sym_LBRACK, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8193), 1, + anon_sym_DASH_GT, + ACTIONS(8211), 1, + anon_sym_requires, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(5377), 1, + sym__function_attributes_start, + STATE(5544), 1, + sym_ref_qualifier, + STATE(6611), 1, + sym__function_attributes_end, + STATE(6774), 1, + sym_trailing_return_type, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7469), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4429), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4616), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6093), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5686), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [77438] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3835), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8213), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4520), 21, + 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___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(4522), 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, + [77501] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3919), 1, + anon_sym_LBRACE, + ACTIONS(7724), 1, + anon_sym_LPAREN2, + STATE(4225), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6935), 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(6937), 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, + [77566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4797), 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(4799), 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, + [77625] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4801), 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(4803), 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, + [77684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4805), 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(4807), 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, + [77743] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8186), 1, + anon_sym_LT, + STATE(2502), 1, + sym_template_argument_list, + STATE(3842), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7909), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3087), 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_or, + anon_sym_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(3095), 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, + [77812] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3835), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8216), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5143), 21, + 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___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(5145), 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, + [77875] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3835), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8216), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5190), 21, + 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___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(5192), 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, + [77938] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3846), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8218), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5184), 21, + 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___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(5186), 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, + [78001] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3847), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8220), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5168), 21, + 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___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(5170), 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, + [78064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4914), 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(4916), 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, + [78123] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3835), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8216), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5152), 21, + 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___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(5154), 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, + [78186] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3835), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8216), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5160), 21, + 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___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(5162), 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, + [78249] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3860), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8222), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5194), 21, + 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___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(5196), 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, + [78312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4918), 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(4920), 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, + [78371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4922), 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(4924), 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, + [78430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 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(4932), 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, + [78489] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4938), 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(4940), 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, + [78548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4942), 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(4944), 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, + [78607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4946), 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(4948), 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, + [78666] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3861), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8224), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5174), 21, + 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___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(5176), 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, + [78729] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4950), 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(4952), 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, + [78788] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4958), 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(4960), 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, + [78847] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3835), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8216), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5180), 21, + 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___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(5182), 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, + [78910] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3841), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8226), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4817), 21, + 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___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(4819), 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, + [78973] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3835), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8216), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5164), 21, + 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___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(5166), 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, + [79036] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3835), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8216), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5156), 21, + 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___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(5158), 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, + [79099] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4970), 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(4972), 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, + [79158] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4934), 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(4936), 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, + [79217] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5066), 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(5068), 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, + [79276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4974), 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(4976), 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, + [79335] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4478), 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, + ACTIONS(4480), 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, + [79394] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8228), 1, + sym_literal_suffix, + ACTIONS(3089), 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(3097), 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, + [79455] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4809), 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(4811), 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, + [79514] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8232), 1, + anon_sym_RPAREN, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(7777), 1, + sym_type_descriptor, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [79620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7105), 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(7107), 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, + [79678] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7159), 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(7161), 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, + [79736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4217), 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(4219), 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, + [79794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 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(4223), 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, + [79852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4209), 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(4211), 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, + [79910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7235), 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(7237), 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, + [79968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7267), 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(7269), 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, + [80026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7141), 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(7143), 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, + [80084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7199), 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(7201), 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, + [80142] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7145), 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(7147), 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, + [80200] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 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(4183), 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, + [80258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7121), 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(7123), 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, + [80316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4233), 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(4235), 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, + [80374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7251), 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(7253), 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, + [80432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4237), 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(4239), 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, + [80490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7287), 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(7289), 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, + [80548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7295), 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(7297), 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, + [80606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7219), 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(7221), 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, + [80664] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8236), 1, + anon_sym_LBRACK, + STATE(4108), 1, + sym_new_declarator, + ACTIONS(6947), 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___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(6949), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [80726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3256), 24, + 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___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(3258), 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [80784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 24, + 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___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(3254), 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [80842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3248), 24, + 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___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(3250), 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [80900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7013), 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(7015), 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, + [80958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3244), 24, + 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___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(3246), 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [81016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3264), 24, + 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___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(3266), 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [81074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3268), 24, + 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___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(3270), 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [81132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4340), 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(1978), 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, + [81190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3260), 24, + 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___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(3262), 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [81248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 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___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(6530), 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, + [81306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6524), 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___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(6526), 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, + [81364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 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(7225), 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, + [81422] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7163), 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(7165), 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, + [81480] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7207), 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(7209), 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, + [81538] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4531), 24, + 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___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(4533), 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, + [81598] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4531), 24, + 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___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(4533), 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, + [81658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7243), 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(7245), 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, + [81716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5672), 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___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(5674), 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, + [81774] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(4385), 1, + sym_field_declaration_list, + STATE(7509), 1, + sym_virtual_specifier, + STATE(8006), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5120), 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(5122), 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, + [81844] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5676), 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___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(5678), 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, + [81902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 24, + 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___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(4537), 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [81960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 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(7229), 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, + [82018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7009), 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(7011), 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, + [82076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7009), 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(7011), 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, + [82134] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(4402), 1, + sym_field_declaration_list, + STATE(7242), 1, + sym_virtual_specifier, + STATE(8011), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5116), 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(5118), 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, + [82204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7009), 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(7011), 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, + [82262] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3296), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3298), 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(3291), 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, + [82322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7129), 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(7131), 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, + [82380] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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(3274), 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, + [82438] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6339), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(6341), 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(3089), 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_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(3097), 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, + [82500] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7017), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(7019), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT_STAR, + [82570] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7395), 1, + anon_sym_EQ, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8246), 1, + anon_sym_PIPE, + ACTIONS(8248), 1, + anon_sym_CARET, + ACTIONS(8250), 1, + anon_sym_AMP, + ACTIONS(8256), 1, + anon_sym_GT_EQ, + ACTIONS(8260), 1, + anon_sym_bitor, + ACTIONS(8262), 1, + anon_sym_xor, + ACTIONS(8264), 1, + anon_sym_bitand, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8238), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8242), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8244), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8258), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8240), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8252), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8254), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7397), 15, + 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_DASH_GT_STAR, + [82672] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7079), 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(7081), 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, + [82730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7113), 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(7115), 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, + [82788] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7075), 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(7077), 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, + [82846] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8266), 1, + anon_sym_COMMA, + ACTIONS(8268), 1, + anon_sym_RBRACK, + ACTIONS(3097), 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(3089), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [82908] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7117), 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(7119), 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, + [82966] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7027), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(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, + 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, + [83038] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7033), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(7035), 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, + [83110] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6853), 1, + anon_sym_COMMA, + ACTIONS(6855), 1, + anon_sym_RBRACK, + ACTIONS(3097), 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(3089), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [83172] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7465), 1, + anon_sym_EQ, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8246), 1, + anon_sym_PIPE, + ACTIONS(8248), 1, + anon_sym_CARET, + ACTIONS(8250), 1, + anon_sym_AMP, + ACTIONS(8256), 1, + anon_sym_GT_EQ, + ACTIONS(8260), 1, + anon_sym_bitor, + ACTIONS(8262), 1, + anon_sym_xor, + ACTIONS(8264), 1, + anon_sym_bitand, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8238), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8242), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8244), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8258), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8240), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8252), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8254), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7467), 15, + 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_DASH_GT_STAR, + [83274] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7063), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(7065), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT_STAR, + [83344] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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(3274), 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, + [83402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7137), 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(7139), 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, + [83460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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(3274), 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, + [83518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7039), 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(7041), 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, + [83576] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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(3274), 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, + [83634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6997), 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(6999), 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, + [83692] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 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(4215), 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, + [83750] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7441), 1, + anon_sym_EQ, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8246), 1, + anon_sym_PIPE, + ACTIONS(8248), 1, + anon_sym_CARET, + ACTIONS(8250), 1, + anon_sym_AMP, + ACTIONS(8256), 1, + anon_sym_GT_EQ, + ACTIONS(8260), 1, + anon_sym_bitor, + ACTIONS(8262), 1, + anon_sym_xor, + ACTIONS(8264), 1, + anon_sym_bitand, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8238), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8242), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8244), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8258), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8240), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8252), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8254), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7443), 15, + 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_DASH_GT_STAR, + [83852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7171), 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(7173), 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, + [83910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7109), 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(7111), 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, + [83968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7203), 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(7205), 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, + [84026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 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(4215), 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, + [84084] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3211), 1, + anon_sym_SEMI, + ACTIONS(5720), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6687), 1, + anon_sym_LPAREN2, + ACTIONS(6693), 1, + anon_sym_LBRACK, + ACTIONS(3125), 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(3089), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_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, + ACTIONS(3097), 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, + [84154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7255), 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(7257), 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, + [84212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 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(4215), 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, + [84270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7097), 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(7099), 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, + [84328] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7101), 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(7103), 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, + [84386] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 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(1877), 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, + [84444] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7171), 1, + anon_sym_EQ, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(8000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8044), 1, + anon_sym_QMARK, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8246), 1, + anon_sym_PIPE, + ACTIONS(8248), 1, + anon_sym_CARET, + ACTIONS(8250), 1, + anon_sym_AMP, + ACTIONS(8256), 1, + anon_sym_GT_EQ, + ACTIONS(8260), 1, + anon_sym_bitor, + ACTIONS(8262), 1, + anon_sym_xor, + ACTIONS(8264), 1, + anon_sym_bitand, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8238), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8242), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8244), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8258), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8240), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8252), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8254), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7173), 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, + [84550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7167), 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(7169), 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, + [84608] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6821), 1, + anon_sym_EQ, + ACTIONS(6823), 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(3097), 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(3089), 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_GT_EQ, + 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, + [84670] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8271), 1, + anon_sym_AMP_AMP, + ACTIONS(8273), 1, + anon_sym_and, + ACTIONS(4647), 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_xor, + anon_sym_DOT, + ACTIONS(4649), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_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, + [84732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7239), 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(7241), 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, + [84790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4243), 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(4245), 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, + [84848] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8240), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(7085), 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, + [84922] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7083), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(7085), 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, + [84994] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7083), 1, + anon_sym_EQ, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8246), 1, + anon_sym_PIPE, + ACTIONS(8248), 1, + anon_sym_CARET, + ACTIONS(8250), 1, + anon_sym_AMP, + ACTIONS(8256), 1, + anon_sym_GT_EQ, + ACTIONS(8260), 1, + anon_sym_bitor, + ACTIONS(8262), 1, + anon_sym_xor, + ACTIONS(8264), 1, + anon_sym_bitand, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8238), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8244), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8258), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8240), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8252), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8254), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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, + [85094] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7083), 1, + anon_sym_EQ, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8246), 1, + anon_sym_PIPE, + ACTIONS(8248), 1, + anon_sym_CARET, + ACTIONS(8250), 1, + anon_sym_AMP, + ACTIONS(8256), 1, + anon_sym_GT_EQ, + ACTIONS(8260), 1, + anon_sym_bitor, + ACTIONS(8262), 1, + anon_sym_xor, + ACTIONS(8264), 1, + anon_sym_bitand, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8238), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8258), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8240), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8252), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8254), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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, + [85192] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8248), 1, + anon_sym_CARET, + ACTIONS(8250), 1, + anon_sym_AMP, + ACTIONS(8256), 1, + anon_sym_GT_EQ, + ACTIONS(8262), 1, + anon_sym_xor, + ACTIONS(8264), 1, + anon_sym_bitand, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7083), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8238), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8258), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8240), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8252), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8254), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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, + [85286] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8250), 1, + anon_sym_AMP, + ACTIONS(8256), 1, + anon_sym_GT_EQ, + ACTIONS(8264), 1, + anon_sym_bitand, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8238), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8258), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7083), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(8240), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8252), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8254), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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, + [85376] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8256), 1, + anon_sym_GT_EQ, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8238), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8258), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8240), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8252), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8254), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(7085), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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_DASH_GT_STAR, + [85462] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8256), 1, + anon_sym_GT_EQ, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8238), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8258), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8240), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8254), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(7085), 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_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [85546] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8238), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8258), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8240), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(7085), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, + [85626] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8238), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8240), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 9, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(7085), 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, + [85702] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8238), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8258), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8240), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7083), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(7085), 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, + [85780] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8271), 1, + anon_sym_AMP_AMP, + ACTIONS(8273), 1, + anon_sym_and, + ACTIONS(8275), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8277), 1, + anon_sym_or, + ACTIONS(4561), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4563), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [85846] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7089), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(7091), 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, + [85918] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6783), 1, + anon_sym_EQ, + ACTIONS(6877), 1, + anon_sym_COMMA, + ACTIONS(6879), 1, + anon_sym_RBRACK, + ACTIONS(6755), 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(3089), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(3097), 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, + [85984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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(3274), 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, + [86042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7155), 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(7157), 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, + [86100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7187), 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(7189), 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, + [86158] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6677), 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(6675), 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, + [86216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7231), 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(7233), 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, + [86274] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7211), 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(7213), 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, + [86332] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4225), 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(4227), 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, + [86390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7291), 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(7293), 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, + [86448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7279), 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(7281), 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, + [86506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4229), 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(4231), 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, + [86564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7183), 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(7185), 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, + [86622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7093), 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(7095), 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, + [86680] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4541), 24, + 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___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(4543), 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, + [86740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7149), 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(7151), 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, + [86798] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7179), 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(7181), 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, + [86856] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7449), 1, + anon_sym_EQ, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8246), 1, + anon_sym_PIPE, + ACTIONS(8248), 1, + anon_sym_CARET, + ACTIONS(8250), 1, + anon_sym_AMP, + ACTIONS(8256), 1, + anon_sym_GT_EQ, + ACTIONS(8260), 1, + anon_sym_bitor, + ACTIONS(8262), 1, + anon_sym_xor, + ACTIONS(8264), 1, + anon_sym_bitand, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8238), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8242), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8244), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8258), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8240), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8252), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8254), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7451), 15, + 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_DASH_GT_STAR, + [86958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7247), 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(7249), 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, + [87016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4247), 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(4249), 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, + [87074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7195), 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(7197), 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, + [87132] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7453), 1, + anon_sym_EQ, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(8000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8044), 1, + anon_sym_QMARK, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8246), 1, + anon_sym_PIPE, + ACTIONS(8248), 1, + anon_sym_CARET, + ACTIONS(8250), 1, + anon_sym_AMP, + ACTIONS(8256), 1, + anon_sym_GT_EQ, + ACTIONS(8260), 1, + anon_sym_bitor, + ACTIONS(8262), 1, + anon_sym_xor, + ACTIONS(8264), 1, + anon_sym_bitand, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8238), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8242), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8244), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8258), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8240), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8252), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8254), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7455), 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, + [87238] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7457), 1, + anon_sym_EQ, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8246), 1, + anon_sym_PIPE, + ACTIONS(8248), 1, + anon_sym_CARET, + ACTIONS(8250), 1, + anon_sym_AMP, + ACTIONS(8256), 1, + anon_sym_GT_EQ, + ACTIONS(8260), 1, + anon_sym_bitor, + ACTIONS(8262), 1, + anon_sym_xor, + ACTIONS(8264), 1, + anon_sym_bitand, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8238), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8242), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8244), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8258), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8240), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8252), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8254), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7459), 15, + 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_DASH_GT_STAR, + [87340] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8279), 1, + anon_sym_LBRACE, + ACTIONS(8281), 1, + anon_sym_COLON, + STATE(4153), 1, + sym__enum_base_clause, + STATE(4288), 1, + sym_enumerator_list, + STATE(4423), 1, + sym_attribute_specifier, + ACTIONS(6673), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5504), 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(5506), 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, + [87410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4251), 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(4253), 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, + [87468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7259), 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(7261), 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, + [87526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7215), 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(7217), 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, + [87584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 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(3274), 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, + [87642] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7125), 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(7127), 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, + [87700] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(4431), 1, + sym_field_declaration_list, + STATE(7513), 1, + sym_virtual_specifier, + STATE(7977), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5134), 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(5136), 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, + [87770] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8279), 1, + anon_sym_LBRACE, + ACTIONS(8281), 1, + anon_sym_COLON, + STATE(4154), 1, + sym__enum_base_clause, + STATE(4252), 1, + sym_enumerator_list, + STATE(4381), 1, + sym_attribute_specifier, + ACTIONS(6673), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5454), 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(5456), 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, + [87840] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3256), 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(3258), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_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, + [87898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4336), 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(4332), 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, + [87956] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 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(3254), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_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, + [88014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3248), 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(3250), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_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, + [88072] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7247), 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(7249), 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, + [88130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3244), 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(3246), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_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, + [88188] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7726), 1, + anon_sym_LBRACK, + STATE(4105), 1, + sym_new_declarator, + ACTIONS(6947), 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(6949), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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, + [88250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3264), 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(3266), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_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, + [88308] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_LPAREN2, + ACTIONS(7461), 1, + anon_sym_EQ, + ACTIONS(7626), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + anon_sym_DOT_STAR, + ACTIONS(8000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8044), 1, + anon_sym_QMARK, + ACTIONS(8066), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8246), 1, + anon_sym_PIPE, + ACTIONS(8248), 1, + anon_sym_CARET, + ACTIONS(8250), 1, + anon_sym_AMP, + ACTIONS(8256), 1, + anon_sym_GT_EQ, + ACTIONS(8260), 1, + anon_sym_bitor, + ACTIONS(8262), 1, + anon_sym_xor, + ACTIONS(8264), 1, + anon_sym_bitand, + STATE(3701), 1, + sym_argument_list, + STATE(3703), 1, + sym_subscript_argument_list, + ACTIONS(7670), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8080), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8238), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8242), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8244), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8258), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8240), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8252), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8254), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7463), 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, + [88414] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3268), 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(3270), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_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, + [88472] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 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(4257), 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, + [88530] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(6875), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3125), 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(3089), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(3097), 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, + [88594] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7049), 1, + anon_sym_LT, + STATE(2552), 1, + sym_template_argument_list, + ACTIONS(7045), 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(7047), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_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, + [88656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3260), 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(3262), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_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, + [88714] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7263), 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(7265), 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, + [88772] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6783), 1, + anon_sym_EQ, + ACTIONS(6755), 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(3097), 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(3089), 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_GT_EQ, + 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, + [88834] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3097), 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(3089), 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, + [88892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1875), 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(1873), 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, + [88950] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3097), 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(3089), 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, + [89008] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(4374), 1, + sym_field_declaration_list, + STATE(7511), 1, + sym_virtual_specifier, + STATE(7973), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5124), 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(5126), 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, + [89078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7283), 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(7285), 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, + [89136] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7271), 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(7273), 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, + [89194] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3296), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3298), 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___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(3291), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [89254] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(3759), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6343), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6345), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(6641), 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(6643), 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, + [89317] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + ACTIONS(8283), 1, + sym_identifier, + ACTIONS(8287), 1, + sym_primitive_type, + ACTIONS(8289), 1, + anon_sym_enum, + ACTIONS(8291), 1, + anon_sym_class, + ACTIONS(8293), 1, + anon_sym_struct, + ACTIONS(8295), 1, + anon_sym_union, + ACTIONS(8297), 1, + sym_auto, + ACTIONS(8299), 1, + anon_sym_decltype, + ACTIONS(8301), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(4272), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4722), 1, + sym_type_specifier, + STATE(5123), 1, + sym_decltype_auto, + STATE(6153), 1, + sym_type_descriptor, + STATE(6933), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1357), 2, + sym_decltype, + sym_template_type, + STATE(4159), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8285), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5125), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [89420] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3941), 1, + anon_sym_enum, + ACTIONS(3943), 1, + anon_sym_class, + ACTIONS(3945), 1, + anon_sym_struct, + ACTIONS(3947), 1, + anon_sym_union, + ACTIONS(3971), 1, + sym_auto, + ACTIONS(3973), 1, + anon_sym_decltype, + ACTIONS(3975), 1, + anon_sym_typename, + ACTIONS(6309), 1, + anon_sym_COLON_COLON, + ACTIONS(8303), 1, + sym_identifier, + ACTIONS(8305), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3029), 1, + sym_qualified_type_identifier, + STATE(3035), 1, + sym_decltype_auto, + STATE(4533), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4590), 1, + sym_type_specifier, + STATE(6390), 1, + sym_type_descriptor, + STATE(6909), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2999), 2, + sym_decltype, + sym_template_type, + STATE(4157), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3937), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3036), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [89523] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8774), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [89626] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(4324), 1, + sym_alignas_qualifier, + ACTIONS(8310), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4173), 10, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_GT, + ACTIONS(8307), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(4171), 21, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [89691] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8135), 1, + anon_sym_LT, + STATE(2502), 1, + sym_template_argument_list, + ACTIONS(4529), 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___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3113), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [89754] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + sym_auto, + ACTIONS(125), 1, + anon_sym_decltype, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3009), 1, + anon_sym_COLON_COLON, + ACTIONS(3013), 1, + sym_primitive_type, + ACTIONS(3015), 1, + anon_sym_enum, + ACTIONS(3017), 1, + anon_sym_class, + ACTIONS(3019), 1, + anon_sym_struct, + ACTIONS(3021), 1, + anon_sym_union, + ACTIONS(3023), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1424), 1, + sym_decltype_auto, + STATE(1462), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(4569), 1, + sym_type_specifier, + STATE(6153), 1, + sym_type_descriptor, + STATE(6919), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1357), 2, + sym_decltype, + sym_template_type, + STATE(4182), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3011), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1397), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [89857] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7063), 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___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(7065), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [89926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8315), 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(8313), 38, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + 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_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [89983] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8583), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [90086] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8058), 1, + sym_type_descriptor, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [90189] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8477), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [90292] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + ACTIONS(8287), 1, + sym_primitive_type, + ACTIONS(8297), 1, + sym_auto, + ACTIONS(8299), 1, + anon_sym_decltype, + ACTIONS(8317), 1, + sym_identifier, + ACTIONS(8319), 1, + anon_sym_enum, + ACTIONS(8321), 1, + anon_sym_class, + ACTIONS(8323), 1, + anon_sym_struct, + ACTIONS(8325), 1, + anon_sym_union, + ACTIONS(8327), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(4272), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4467), 1, + sym_type_specifier, + STATE(5123), 1, + sym_decltype_auto, + STATE(6153), 1, + sym_type_descriptor, + STATE(6901), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1357), 2, + sym_decltype, + sym_template_type, + STATE(4165), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8285), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5125), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [90395] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6313), 1, + anon_sym_COLON_COLON, + ACTIONS(8329), 1, + sym_identifier, + ACTIONS(8333), 1, + sym_primitive_type, + ACTIONS(8335), 1, + anon_sym_enum, + ACTIONS(8337), 1, + anon_sym_class, + ACTIONS(8339), 1, + anon_sym_struct, + ACTIONS(8341), 1, + anon_sym_union, + ACTIONS(8343), 1, + sym_auto, + ACTIONS(8345), 1, + anon_sym_decltype, + ACTIONS(8347), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(4406), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4560), 1, + sym_type_specifier, + STATE(5300), 1, + sym_decltype_auto, + STATE(5318), 1, + sym_qualified_type_identifier, + STATE(6390), 1, + sym_type_descriptor, + STATE(6906), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4185), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5220), 2, + sym_decltype, + sym_template_type, + ACTIONS(8331), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5304), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [90498] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7017), 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___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(7019), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [90567] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8351), 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(8349), 38, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + 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_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [90624] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8733), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [90727] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8681), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [90830] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + sym_auto, + ACTIONS(125), 1, + anon_sym_decltype, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3013), 1, + sym_primitive_type, + ACTIONS(8353), 1, + sym_identifier, + ACTIONS(8355), 1, + anon_sym_COLON_COLON, + ACTIONS(8357), 1, + anon_sym_enum, + ACTIONS(8359), 1, + anon_sym_class, + ACTIONS(8361), 1, + anon_sym_struct, + ACTIONS(8363), 1, + anon_sym_union, + ACTIONS(8365), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1424), 1, + sym_decltype_auto, + STATE(1462), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(4623), 1, + sym_type_specifier, + STATE(6153), 1, + sym_type_descriptor, + STATE(6905), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1357), 2, + sym_decltype, + sym_template_type, + STATE(4187), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3011), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1397), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [90933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 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___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(6530), 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, + [90990] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8575), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [91093] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7033), 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___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(7035), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [91164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5676), 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___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(5678), 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, + [91221] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8907), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [91324] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8473), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [91427] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(9034), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [91530] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8818), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [91633] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + ACTIONS(8287), 1, + sym_primitive_type, + ACTIONS(8297), 1, + sym_auto, + ACTIONS(8299), 1, + anon_sym_decltype, + ACTIONS(8317), 1, + sym_identifier, + ACTIONS(8319), 1, + anon_sym_enum, + ACTIONS(8321), 1, + anon_sym_class, + ACTIONS(8323), 1, + anon_sym_struct, + ACTIONS(8325), 1, + anon_sym_union, + ACTIONS(8327), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(4272), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4321), 1, + sym_type_specifier, + STATE(5123), 1, + sym_decltype_auto, + STATE(6153), 1, + sym_type_descriptor, + STATE(6901), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1357), 2, + sym_decltype, + sym_template_type, + STATE(4204), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8285), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5125), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [91736] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8854), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [91839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4531), 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___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, + anon_sym_final, + anon_sym_override, + ACTIONS(4533), 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_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, + [91896] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(9209), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [91999] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(9287), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [92102] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8683), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [92205] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8802), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [92308] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4537), 1, + sym_type_specifier, + STATE(6390), 1, + sym_type_descriptor, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4141), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [92411] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8589), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [92514] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(8369), 1, + sym_identifier, + ACTIONS(8373), 1, + sym_primitive_type, + ACTIONS(8375), 1, + anon_sym_enum, + ACTIONS(8377), 1, + anon_sym_class, + ACTIONS(8379), 1, + anon_sym_struct, + ACTIONS(8381), 1, + anon_sym_union, + ACTIONS(8383), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5383), 1, + sym_type_specifier, + STATE(6027), 1, + sym__type_definition_type, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4213), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [92617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7113), 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___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(7115), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [92674] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(8369), 1, + sym_identifier, + ACTIONS(8373), 1, + sym_primitive_type, + ACTIONS(8375), 1, + anon_sym_enum, + ACTIONS(8377), 1, + anon_sym_class, + ACTIONS(8379), 1, + anon_sym_struct, + ACTIONS(8381), 1, + anon_sym_union, + ACTIONS(8383), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5383), 1, + sym_type_specifier, + STATE(5947), 1, + sym__type_definition_type, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4213), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [92777] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7089), 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___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(7091), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [92848] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + sym_auto, + ACTIONS(125), 1, + anon_sym_decltype, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3013), 1, + sym_primitive_type, + ACTIONS(8353), 1, + sym_identifier, + ACTIONS(8355), 1, + anon_sym_COLON_COLON, + ACTIONS(8357), 1, + anon_sym_enum, + ACTIONS(8359), 1, + anon_sym_class, + ACTIONS(8361), 1, + anon_sym_struct, + ACTIONS(8363), 1, + anon_sym_union, + ACTIONS(8365), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1424), 1, + sym_decltype_auto, + STATE(1462), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(4304), 1, + sym_type_specifier, + STATE(6153), 1, + sym_type_descriptor, + STATE(6905), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1357), 2, + sym_decltype, + sym_template_type, + STATE(4150), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3011), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1397), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [92951] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8921), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [93054] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7083), 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___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(7085), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [93125] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(6620), 1, + anon_sym___attribute, + ACTIONS(8153), 1, + sym_ms_restrict_modifier, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8385), 1, + anon_sym_STAR, + ACTIONS(8387), 1, + anon_sym_AMP_AMP, + ACTIONS(8389), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3354), 1, + sym_parameter_list, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6568), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8155), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8157), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4065), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4547), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6612), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [93220] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(6631), 1, + anon_sym___attribute, + ACTIONS(8153), 1, + sym_ms_restrict_modifier, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8385), 1, + anon_sym_STAR, + ACTIONS(8387), 1, + anon_sym_AMP_AMP, + ACTIONS(8389), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3354), 1, + sym_parameter_list, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6572), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8155), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8157), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4549), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [93315] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4568), 1, + sym_type_specifier, + STATE(6390), 1, + sym_type_descriptor, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4164), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [93418] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5242), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8855), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4155), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [93521] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6313), 1, + anon_sym_COLON_COLON, + ACTIONS(8329), 1, + sym_identifier, + ACTIONS(8333), 1, + sym_primitive_type, + ACTIONS(8335), 1, + anon_sym_enum, + ACTIONS(8337), 1, + anon_sym_class, + ACTIONS(8339), 1, + anon_sym_struct, + ACTIONS(8341), 1, + anon_sym_union, + ACTIONS(8343), 1, + sym_auto, + ACTIONS(8345), 1, + anon_sym_decltype, + ACTIONS(8347), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(4406), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4442), 1, + sym_type_specifier, + STATE(5300), 1, + sym_decltype_auto, + STATE(5318), 1, + sym_qualified_type_identifier, + STATE(6390), 1, + sym_type_descriptor, + STATE(6906), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4241), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5220), 2, + sym_decltype, + sym_template_type, + ACTIONS(8331), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5304), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [93624] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(8369), 1, + sym_identifier, + ACTIONS(8373), 1, + sym_primitive_type, + ACTIONS(8375), 1, + anon_sym_enum, + ACTIONS(8377), 1, + anon_sym_class, + ACTIONS(8379), 1, + anon_sym_struct, + ACTIONS(8381), 1, + anon_sym_union, + ACTIONS(8383), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5383), 1, + sym_type_specifier, + STATE(6046), 1, + sym__type_definition_type, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4213), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [93727] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3941), 1, + anon_sym_enum, + ACTIONS(3943), 1, + anon_sym_class, + ACTIONS(3945), 1, + anon_sym_struct, + ACTIONS(3947), 1, + anon_sym_union, + ACTIONS(3971), 1, + sym_auto, + ACTIONS(3973), 1, + anon_sym_decltype, + ACTIONS(3975), 1, + anon_sym_typename, + ACTIONS(6309), 1, + anon_sym_COLON_COLON, + ACTIONS(8303), 1, + sym_identifier, + ACTIONS(8305), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3029), 1, + sym_qualified_type_identifier, + STATE(3035), 1, + sym_decltype_auto, + STATE(4533), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4565), 1, + sym_type_specifier, + STATE(6390), 1, + sym_type_descriptor, + STATE(6909), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2999), 2, + sym_decltype, + sym_template_type, + STATE(4176), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3937), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3036), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [93830] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3841), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8226), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4735), 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(4737), 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, + [93891] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3211), 1, + anon_sym_SEMI, + ACTIONS(3125), 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(3089), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(3097), 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, + [93954] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8978), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94057] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(9158), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6524), 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___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(6526), 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, + [94217] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(8369), 1, + sym_identifier, + ACTIONS(8373), 1, + sym_primitive_type, + ACTIONS(8375), 1, + anon_sym_enum, + ACTIONS(8377), 1, + anon_sym_class, + ACTIONS(8379), 1, + anon_sym_struct, + ACTIONS(8381), 1, + anon_sym_union, + ACTIONS(8383), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5383), 1, + sym_type_specifier, + STATE(5995), 1, + sym__type_definition_type, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4213), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94320] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(8369), 1, + sym_identifier, + ACTIONS(8373), 1, + sym_primitive_type, + ACTIONS(8375), 1, + anon_sym_enum, + ACTIONS(8377), 1, + anon_sym_class, + ACTIONS(8379), 1, + anon_sym_struct, + ACTIONS(8381), 1, + anon_sym_union, + ACTIONS(8383), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5383), 1, + sym_type_specifier, + STATE(6002), 1, + sym__type_definition_type, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4213), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94423] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(8369), 1, + sym_identifier, + ACTIONS(8373), 1, + sym_primitive_type, + ACTIONS(8375), 1, + anon_sym_enum, + ACTIONS(8377), 1, + anon_sym_class, + ACTIONS(8379), 1, + anon_sym_struct, + ACTIONS(8381), 1, + anon_sym_union, + ACTIONS(8383), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5383), 1, + sym_type_specifier, + STATE(6051), 1, + sym__type_definition_type, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4213), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94526] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(8369), 1, + sym_identifier, + ACTIONS(8373), 1, + sym_primitive_type, + ACTIONS(8375), 1, + anon_sym_enum, + ACTIONS(8377), 1, + anon_sym_class, + ACTIONS(8379), 1, + anon_sym_struct, + ACTIONS(8381), 1, + anon_sym_union, + ACTIONS(8383), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5383), 1, + sym_type_specifier, + STATE(6059), 1, + sym__type_definition_type, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4213), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94629] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4889), 1, + sym_type_specifier, + STATE(6390), 1, + sym_type_descriptor, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4124), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4340), 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___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(1978), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [94789] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(8369), 1, + sym_identifier, + ACTIONS(8373), 1, + sym_primitive_type, + ACTIONS(8375), 1, + anon_sym_enum, + ACTIONS(8377), 1, + anon_sym_class, + ACTIONS(8379), 1, + anon_sym_struct, + ACTIONS(8381), 1, + anon_sym_union, + ACTIONS(8383), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5383), 1, + sym_type_specifier, + STATE(5925), 1, + sym__type_definition_type, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4213), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94892] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(8369), 1, + sym_identifier, + ACTIONS(8373), 1, + sym_primitive_type, + ACTIONS(8375), 1, + anon_sym_enum, + ACTIONS(8377), 1, + anon_sym_class, + ACTIONS(8379), 1, + anon_sym_struct, + ACTIONS(8381), 1, + anon_sym_union, + ACTIONS(8383), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5383), 1, + sym_type_specifier, + STATE(6071), 1, + sym__type_definition_type, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4213), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94995] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(8369), 1, + sym_identifier, + ACTIONS(8373), 1, + sym_primitive_type, + ACTIONS(8375), 1, + anon_sym_enum, + ACTIONS(8377), 1, + anon_sym_class, + ACTIONS(8379), 1, + anon_sym_struct, + ACTIONS(8381), 1, + anon_sym_union, + ACTIONS(8383), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5383), 1, + sym_type_specifier, + STATE(5944), 1, + sym__type_definition_type, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4213), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [95098] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(8369), 1, + sym_identifier, + ACTIONS(8373), 1, + sym_primitive_type, + ACTIONS(8375), 1, + anon_sym_enum, + ACTIONS(8377), 1, + anon_sym_class, + ACTIONS(8379), 1, + anon_sym_struct, + ACTIONS(8381), 1, + anon_sym_union, + ACTIONS(8383), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5383), 1, + sym_type_specifier, + STATE(5945), 1, + sym__type_definition_type, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4213), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [95201] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(8369), 1, + sym_identifier, + ACTIONS(8373), 1, + sym_primitive_type, + ACTIONS(8375), 1, + anon_sym_enum, + ACTIONS(8377), 1, + anon_sym_class, + ACTIONS(8379), 1, + anon_sym_struct, + ACTIONS(8381), 1, + anon_sym_union, + ACTIONS(8383), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5383), 1, + sym_type_specifier, + STATE(5954), 1, + sym__type_definition_type, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4213), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [95304] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7027), 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___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(7029), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [95375] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(8369), 1, + sym_identifier, + ACTIONS(8373), 1, + sym_primitive_type, + ACTIONS(8375), 1, + anon_sym_enum, + ACTIONS(8377), 1, + anon_sym_class, + ACTIONS(8379), 1, + anon_sym_struct, + ACTIONS(8381), 1, + anon_sym_union, + ACTIONS(8383), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5383), 1, + sym_type_specifier, + STATE(5957), 1, + sym__type_definition_type, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4213), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [95478] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(8369), 1, + sym_identifier, + ACTIONS(8373), 1, + sym_primitive_type, + ACTIONS(8375), 1, + anon_sym_enum, + ACTIONS(8377), 1, + anon_sym_class, + ACTIONS(8379), 1, + anon_sym_struct, + ACTIONS(8381), 1, + anon_sym_union, + ACTIONS(8383), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5383), 1, + sym_type_specifier, + STATE(5963), 1, + sym__type_definition_type, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4213), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [95581] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(8369), 1, + sym_identifier, + ACTIONS(8373), 1, + sym_primitive_type, + ACTIONS(8375), 1, + anon_sym_enum, + ACTIONS(8377), 1, + anon_sym_class, + ACTIONS(8379), 1, + anon_sym_struct, + ACTIONS(8381), 1, + anon_sym_union, + ACTIONS(8383), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5383), 1, + sym_type_specifier, + STATE(5965), 1, + sym__type_definition_type, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4213), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [95684] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(8369), 1, + sym_identifier, + ACTIONS(8373), 1, + sym_primitive_type, + ACTIONS(8375), 1, + anon_sym_enum, + ACTIONS(8377), 1, + anon_sym_class, + ACTIONS(8379), 1, + anon_sym_struct, + ACTIONS(8381), 1, + anon_sym_union, + ACTIONS(8383), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5383), 1, + sym_type_specifier, + STATE(5967), 1, + sym__type_definition_type, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4213), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [95787] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(8369), 1, + sym_identifier, + ACTIONS(8373), 1, + sym_primitive_type, + ACTIONS(8375), 1, + anon_sym_enum, + ACTIONS(8377), 1, + anon_sym_class, + ACTIONS(8379), 1, + anon_sym_struct, + ACTIONS(8381), 1, + anon_sym_union, + ACTIONS(8383), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5383), 1, + sym_type_specifier, + STATE(5968), 1, + sym__type_definition_type, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4213), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [95890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7512), 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(7514), 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, + [95947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7239), 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___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(7241), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [96004] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8817), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96107] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5242), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8839), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4155), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7145), 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___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(7147), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [96267] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8100), 1, + sym_literal_suffix, + ACTIONS(3097), 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(3089), 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, + [96326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5672), 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___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(5674), 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, + [96383] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8763), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96486] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5242), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8913), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4155), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96589] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8940), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96692] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + ACTIONS(8287), 1, + sym_primitive_type, + ACTIONS(8297), 1, + sym_auto, + ACTIONS(8299), 1, + anon_sym_decltype, + ACTIONS(8317), 1, + sym_identifier, + ACTIONS(8319), 1, + anon_sym_enum, + ACTIONS(8321), 1, + anon_sym_class, + ACTIONS(8323), 1, + anon_sym_struct, + ACTIONS(8325), 1, + anon_sym_union, + ACTIONS(8327), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(4272), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4317), 1, + sym_type_specifier, + STATE(5123), 1, + sym_decltype_auto, + STATE(6153), 1, + sym_type_descriptor, + STATE(6901), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1357), 2, + sym_decltype, + sym_template_type, + STATE(4219), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8285), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5125), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96795] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(9075), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7001), 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(7003), 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, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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, + [96955] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + sym_auto, + ACTIONS(125), 1, + anon_sym_decltype, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3009), 1, + anon_sym_COLON_COLON, + ACTIONS(3013), 1, + sym_primitive_type, + ACTIONS(3015), 1, + anon_sym_enum, + ACTIONS(3017), 1, + anon_sym_class, + ACTIONS(3019), 1, + anon_sym_struct, + ACTIONS(3021), 1, + anon_sym_union, + ACTIONS(3023), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1424), 1, + sym_decltype_auto, + STATE(1462), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(4520), 1, + sym_type_specifier, + STATE(6153), 1, + sym_type_descriptor, + STATE(6919), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1357), 2, + sym_decltype, + sym_template_type, + STATE(4172), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3011), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1397), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97058] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + sym_auto, + ACTIONS(125), 1, + anon_sym_decltype, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3013), 1, + sym_primitive_type, + ACTIONS(8353), 1, + sym_identifier, + ACTIONS(8355), 1, + anon_sym_COLON_COLON, + ACTIONS(8357), 1, + anon_sym_enum, + ACTIONS(8359), 1, + anon_sym_class, + ACTIONS(8361), 1, + anon_sym_struct, + ACTIONS(8363), 1, + anon_sym_union, + ACTIONS(8365), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1424), 1, + sym_decltype_auto, + STATE(1462), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(4392), 1, + sym_type_specifier, + STATE(6153), 1, + sym_type_descriptor, + STATE(6905), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1357), 2, + sym_decltype, + sym_template_type, + STATE(4175), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3011), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1397), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7001), 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___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(7003), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [97218] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8505), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97321] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8989), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97424] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5242), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8994), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4155), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97527] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8391), 1, + anon_sym_LT, + STATE(2502), 1, + sym_template_argument_list, + ACTIONS(3272), 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___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3279), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [97590] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8487), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97693] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(9011), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97796] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5242), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(9016), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4155), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97899] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6153), 1, + sym_type_descriptor, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98002] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(9031), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98105] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5242), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(9036), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4155), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98208] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(8682), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98311] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4950), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(9050), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4196), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98414] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5242), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(9055), 1, + sym_type_descriptor, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4155), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98517] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(8369), 1, + sym_identifier, + ACTIONS(8373), 1, + sym_primitive_type, + ACTIONS(8375), 1, + anon_sym_enum, + ACTIONS(8377), 1, + anon_sym_class, + ACTIONS(8379), 1, + anon_sym_struct, + ACTIONS(8381), 1, + anon_sym_union, + ACTIONS(8383), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5383), 1, + sym_type_specifier, + STATE(6064), 1, + sym__type_definition_type, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_decltype, + sym_template_type, + STATE(4213), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7167), 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___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(7169), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [98676] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4831), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2446), 2, + sym_decltype, + sym_template_type, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98776] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7183), 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___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(7185), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [98832] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7279), 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___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(7281), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [98888] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 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(4183), 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, + [98944] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7171), 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___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(7173), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [99000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4336), 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(4332), 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, + [99056] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7159), 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(7161), 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, + [99112] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4209), 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(4211), 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, + [99168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5672), 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, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5674), 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, + [99224] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7291), 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___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(7293), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [99280] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4215), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + 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, + [99336] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4215), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + 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, + [99392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4215), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + 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, + [99448] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + STATE(917), 1, + sym_template_argument_list, + STATE(2760), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6337), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5070), 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___attribute, + anon_sym_DOT, + ACTIONS(5072), 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, + [99512] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7101), 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___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(7103), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [99568] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7179), 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(7181), 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, + [99624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4340), 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(1978), 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, + [99680] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4542), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2446), 2, + sym_decltype, + sym_template_type, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [99780] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7109), 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___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(7111), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [99836] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7171), 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(7173), 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, + [99892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7215), 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(7217), 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, + [99948] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4225), 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(4227), 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, + [100004] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4229), 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(4231), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_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, + [100060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7093), 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___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(7095), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [100116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4217), 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(4219), 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, + [100172] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7121), 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___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(7123), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [100228] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + sym_auto, + ACTIONS(125), 1, + anon_sym_decltype, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3013), 1, + sym_primitive_type, + ACTIONS(8353), 1, + sym_identifier, + ACTIONS(8355), 1, + anon_sym_COLON_COLON, + ACTIONS(8357), 1, + anon_sym_enum, + ACTIONS(8359), 1, + anon_sym_class, + ACTIONS(8361), 1, + anon_sym_struct, + ACTIONS(8363), 1, + anon_sym_union, + ACTIONS(8365), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1424), 1, + sym_decltype_auto, + STATE(1462), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(4308), 1, + sym_type_specifier, + STATE(6905), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1357), 2, + sym_decltype, + sym_template_type, + ACTIONS(3011), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1397), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [100328] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6671), 1, + anon_sym___attribute__, + ACTIONS(6673), 1, + anon_sym___attribute, + ACTIONS(6939), 1, + anon_sym_LBRACE, + ACTIONS(8394), 1, + anon_sym_COLON, + STATE(2525), 1, + sym_attribute_specifier, + STATE(2740), 1, + sym__enum_base_clause, + STATE(2793), 1, + sym_enumerator_list, + ACTIONS(5504), 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(5506), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [100398] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6671), 1, + anon_sym___attribute__, + ACTIONS(6673), 1, + anon_sym___attribute, + ACTIONS(6939), 1, + anon_sym_LBRACE, + ACTIONS(8394), 1, + anon_sym_COLON, + STATE(2497), 1, + sym_attribute_specifier, + STATE(2736), 1, + sym__enum_base_clause, + STATE(2764), 1, + sym_enumerator_list, + ACTIONS(5454), 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(5456), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [100468] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8279), 1, + anon_sym_LBRACE, + STATE(4253), 1, + sym_enumerator_list, + STATE(4398), 1, + sym_attribute_specifier, + ACTIONS(6673), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5246), 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(5248), 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, + [100532] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8279), 1, + anon_sym_LBRACE, + STATE(4268), 1, + sym_enumerator_list, + STATE(4393), 1, + sym_attribute_specifier, + ACTIONS(6673), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5266), 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(5268), 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, + [100596] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5234), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2446), 2, + sym_decltype, + sym_template_type, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [100696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7117), 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___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(7119), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [100752] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3941), 1, + anon_sym_enum, + ACTIONS(3943), 1, + anon_sym_class, + ACTIONS(3945), 1, + anon_sym_struct, + ACTIONS(3947), 1, + anon_sym_union, + ACTIONS(3971), 1, + sym_auto, + ACTIONS(3973), 1, + anon_sym_decltype, + ACTIONS(3975), 1, + anon_sym_typename, + ACTIONS(6309), 1, + anon_sym_COLON_COLON, + ACTIONS(8303), 1, + sym_identifier, + ACTIONS(8305), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3029), 1, + sym_qualified_type_identifier, + STATE(3035), 1, + sym_decltype_auto, + STATE(4533), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4586), 1, + sym_type_specifier, + STATE(6909), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2999), 2, + sym_decltype, + sym_template_type, + ACTIONS(3937), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3036), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [100852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7149), 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___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(7151), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [100908] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + ACTIONS(8283), 1, + sym_identifier, + ACTIONS(8287), 1, + sym_primitive_type, + ACTIONS(8289), 1, + anon_sym_enum, + ACTIONS(8291), 1, + anon_sym_class, + ACTIONS(8293), 1, + anon_sym_struct, + ACTIONS(8295), 1, + anon_sym_union, + ACTIONS(8297), 1, + sym_auto, + ACTIONS(8299), 1, + anon_sym_decltype, + ACTIONS(8301), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(4272), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4723), 1, + sym_type_specifier, + STATE(5123), 1, + sym_decltype_auto, + STATE(6933), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1357), 2, + sym_decltype, + sym_template_type, + ACTIONS(8285), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5125), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [101008] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5676), 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, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5678), 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, + [101064] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4025), 1, + sym_ms_restrict_modifier, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(6620), 1, + anon_sym___attribute, + ACTIONS(8396), 1, + anon_sym_STAR, + ACTIONS(8398), 1, + anon_sym_AMP_AMP, + ACTIONS(8400), 1, + anon_sym_AMP, + ACTIONS(8408), 1, + anon_sym_LBRACK, + STATE(3378), 1, + sym_parameter_list, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6640), 1, + sym__abstract_declarator, + ACTIONS(8404), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8406), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4162), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4611), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6612), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [101158] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4025), 1, + sym_ms_restrict_modifier, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(6631), 1, + anon_sym___attribute, + ACTIONS(8396), 1, + anon_sym_STAR, + ACTIONS(8398), 1, + anon_sym_AMP_AMP, + ACTIONS(8400), 1, + anon_sym_AMP, + ACTIONS(8408), 1, + anon_sym_LBRACK, + STATE(3378), 1, + sym_parameter_list, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6642), 1, + sym__abstract_declarator, + ACTIONS(8404), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8406), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4613), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [101252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7203), 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___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(7205), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [101308] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4566), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2446), 2, + sym_decltype, + sym_template_type, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [101408] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + ACTIONS(8287), 1, + sym_primitive_type, + ACTIONS(8297), 1, + sym_auto, + ACTIONS(8299), 1, + anon_sym_decltype, + ACTIONS(8317), 1, + sym_identifier, + ACTIONS(8319), 1, + anon_sym_enum, + ACTIONS(8321), 1, + anon_sym_class, + ACTIONS(8323), 1, + anon_sym_struct, + ACTIONS(8325), 1, + anon_sym_union, + ACTIONS(8327), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(4272), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4461), 1, + sym_type_specifier, + STATE(5123), 1, + sym_decltype_auto, + STATE(6901), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1357), 2, + sym_decltype, + sym_template_type, + ACTIONS(8285), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5125), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [101508] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8412), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(4647), 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(4649), 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, + [101566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 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(4223), 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, + [101622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4233), 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(4235), 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, + [101678] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4237), 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(4239), 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, + [101734] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8153), 1, + sym_ms_restrict_modifier, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8414), 1, + anon_sym_STAR, + ACTIONS(8416), 1, + anon_sym_AMP_AMP, + ACTIONS(8418), 1, + anon_sym_AMP, + STATE(3226), 1, + sym_parameter_list, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6644), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8155), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8157), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4582), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [101826] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7155), 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___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(7157), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [101882] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + sym_auto, + ACTIONS(125), 1, + anon_sym_decltype, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3009), 1, + anon_sym_COLON_COLON, + ACTIONS(3013), 1, + sym_primitive_type, + ACTIONS(3015), 1, + anon_sym_enum, + ACTIONS(3017), 1, + anon_sym_class, + ACTIONS(3019), 1, + anon_sym_struct, + ACTIONS(3021), 1, + anon_sym_union, + ACTIONS(3023), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1424), 1, + sym_decltype_auto, + STATE(1462), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(4499), 1, + sym_type_specifier, + STATE(6919), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1357), 2, + sym_decltype, + sym_template_type, + ACTIONS(3011), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1397), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [101982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7187), 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___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(7189), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [102038] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8236), 1, + anon_sym_LBRACK, + ACTIONS(8420), 1, + anon_sym_LPAREN2, + ACTIONS(8422), 1, + sym_auto, + ACTIONS(8424), 1, + anon_sym_decltype, + STATE(4327), 1, + sym_new_declarator, + STATE(4412), 1, + sym_decltype_auto, + STATE(4220), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6597), 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(6599), 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, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + [102110] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + sym_auto, + ACTIONS(125), 1, + anon_sym_decltype, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3013), 1, + sym_primitive_type, + ACTIONS(8353), 1, + sym_identifier, + ACTIONS(8355), 1, + anon_sym_COLON_COLON, + ACTIONS(8357), 1, + anon_sym_enum, + ACTIONS(8359), 1, + anon_sym_class, + ACTIONS(8361), 1, + anon_sym_struct, + ACTIONS(8363), 1, + anon_sym_union, + ACTIONS(8365), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1424), 1, + sym_decltype_auto, + STATE(1462), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(4410), 1, + sym_type_specifier, + STATE(6905), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1357), 2, + sym_decltype, + sym_template_type, + ACTIONS(3011), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1397), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [102210] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3941), 1, + anon_sym_enum, + ACTIONS(3943), 1, + anon_sym_class, + ACTIONS(3945), 1, + anon_sym_struct, + ACTIONS(3947), 1, + anon_sym_union, + ACTIONS(3971), 1, + sym_auto, + ACTIONS(3973), 1, + anon_sym_decltype, + ACTIONS(3975), 1, + anon_sym_typename, + ACTIONS(6309), 1, + anon_sym_COLON_COLON, + ACTIONS(8303), 1, + sym_identifier, + ACTIONS(8305), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3029), 1, + sym_qualified_type_identifier, + STATE(3035), 1, + sym_decltype_auto, + STATE(4533), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4564), 1, + sym_type_specifier, + STATE(6909), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2999), 2, + sym_decltype, + sym_template_type, + ACTIONS(3937), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3036), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [102310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7243), 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___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(7245), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [102366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7207), 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(7209), 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, + [102422] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 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(7229), 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, + [102478] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7199), 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(7201), 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, + [102534] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7113), 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(7115), 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, + [102590] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + sym_auto, + ACTIONS(125), 1, + anon_sym_decltype, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3009), 1, + anon_sym_COLON_COLON, + ACTIONS(3013), 1, + sym_primitive_type, + ACTIONS(3015), 1, + anon_sym_enum, + ACTIONS(3017), 1, + anon_sym_class, + ACTIONS(3019), 1, + anon_sym_struct, + ACTIONS(3021), 1, + anon_sym_union, + ACTIONS(3023), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1424), 1, + sym_decltype_auto, + STATE(1462), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(4570), 1, + sym_type_specifier, + STATE(6919), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1357), 2, + sym_decltype, + sym_template_type, + ACTIONS(3011), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1397), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [102690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4336), 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___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(4332), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [102746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7287), 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___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(7289), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [102802] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6313), 1, + anon_sym_COLON_COLON, + ACTIONS(8329), 1, + sym_identifier, + ACTIONS(8333), 1, + sym_primitive_type, + ACTIONS(8335), 1, + anon_sym_enum, + ACTIONS(8337), 1, + anon_sym_class, + ACTIONS(8339), 1, + anon_sym_struct, + ACTIONS(8341), 1, + anon_sym_union, + ACTIONS(8343), 1, + sym_auto, + ACTIONS(8345), 1, + anon_sym_decltype, + ACTIONS(8347), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(4406), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4554), 1, + sym_type_specifier, + STATE(5300), 1, + sym_decltype_auto, + STATE(5318), 1, + sym_qualified_type_identifier, + STATE(6906), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5220), 2, + sym_decltype, + sym_template_type, + ACTIONS(8331), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5304), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [102902] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8236), 1, + anon_sym_LBRACK, + ACTIONS(8420), 1, + anon_sym_LPAREN2, + ACTIONS(8422), 1, + sym_auto, + ACTIONS(8424), 1, + anon_sym_decltype, + STATE(4311), 1, + sym_new_declarator, + STATE(4412), 1, + sym_decltype_auto, + STATE(4244), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6585), 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(6587), 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, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + [102974] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + sym_auto, + ACTIONS(125), 1, + anon_sym_decltype, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3013), 1, + sym_primitive_type, + ACTIONS(8353), 1, + sym_identifier, + ACTIONS(8355), 1, + anon_sym_COLON_COLON, + ACTIONS(8357), 1, + anon_sym_enum, + ACTIONS(8359), 1, + anon_sym_class, + ACTIONS(8361), 1, + anon_sym_struct, + ACTIONS(8363), 1, + anon_sym_union, + ACTIONS(8365), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1424), 1, + sym_decltype_auto, + STATE(1462), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(4625), 1, + sym_type_specifier, + STATE(6905), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1357), 2, + sym_decltype, + sym_template_type, + ACTIONS(3011), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1397), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [103074] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8236), 1, + anon_sym_LBRACK, + ACTIONS(8420), 1, + anon_sym_LPAREN2, + ACTIONS(8422), 1, + sym_auto, + ACTIONS(8424), 1, + anon_sym_decltype, + STATE(4329), 1, + sym_new_declarator, + STATE(4412), 1, + sym_decltype_auto, + STATE(4123), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6603), 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(6605), 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, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + [103146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7117), 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(7119), 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, + [103202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7243), 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(7245), 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, + [103258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7109), 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(7111), 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, + [103314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7167), 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(7169), 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, + [103370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4243), 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(4245), 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, + [103426] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(8429), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(8426), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8108), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(8106), 27, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [103490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7159), 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___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(7161), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [103546] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4952), 1, + sym_type_specifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2446), 2, + sym_decltype, + sym_template_type, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [103646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4247), 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(4249), 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, + [103702] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4251), 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(4253), 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, + [103758] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3097), 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___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(3089), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [103814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7125), 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(7127), 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, + [103870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7137), 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(7139), 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, + [103926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 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(7225), 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, + [103982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7239), 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(7241), 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, + [104038] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + ACTIONS(8287), 1, + sym_primitive_type, + ACTIONS(8297), 1, + sym_auto, + ACTIONS(8299), 1, + anon_sym_decltype, + ACTIONS(8317), 1, + sym_identifier, + ACTIONS(8319), 1, + anon_sym_enum, + ACTIONS(8321), 1, + anon_sym_class, + ACTIONS(8323), 1, + anon_sym_struct, + ACTIONS(8325), 1, + anon_sym_union, + ACTIONS(8327), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(4272), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4301), 1, + sym_type_specifier, + STATE(5123), 1, + sym_decltype_auto, + STATE(6901), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1357), 2, + sym_decltype, + sym_template_type, + ACTIONS(8285), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5125), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [104138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7295), 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___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(7297), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [104194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7207), 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___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(7209), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [104250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7263), 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___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(7265), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [104306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1875), 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(1873), 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, + [104362] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 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(1877), 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, + [104418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7141), 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___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(7143), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [104474] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8412), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8432), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(4561), 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(4563), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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_STAR, + [104534] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7263), 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(7265), 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, + [104590] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(8369), 1, + sym_identifier, + ACTIONS(8373), 1, + sym_primitive_type, + ACTIONS(8375), 1, + anon_sym_enum, + ACTIONS(8377), 1, + anon_sym_class, + ACTIONS(8379), 1, + anon_sym_struct, + ACTIONS(8381), 1, + anon_sym_union, + ACTIONS(8383), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5366), 1, + sym_type_specifier, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2446), 2, + sym_decltype, + sym_template_type, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [104690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7279), 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(7281), 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, + [104746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7125), 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___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(7127), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [104802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7255), 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(7257), 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, + [104858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3097), 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(3089), 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, + [104914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7101), 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(7103), 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, + [104970] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + ACTIONS(8287), 1, + sym_primitive_type, + ACTIONS(8297), 1, + sym_auto, + ACTIONS(8299), 1, + anon_sym_decltype, + ACTIONS(8317), 1, + sym_identifier, + ACTIONS(8319), 1, + anon_sym_enum, + ACTIONS(8321), 1, + anon_sym_class, + ACTIONS(8323), 1, + anon_sym_struct, + ACTIONS(8325), 1, + anon_sym_union, + ACTIONS(8327), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(4272), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4328), 1, + sym_type_specifier, + STATE(5123), 1, + sym_decltype_auto, + STATE(6901), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1357), 2, + sym_decltype, + sym_template_type, + ACTIONS(8285), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5125), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [105070] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7215), 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___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(7217), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [105126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7137), 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___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(7139), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [105182] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8236), 1, + anon_sym_LBRACK, + ACTIONS(8420), 1, + anon_sym_LPAREN2, + ACTIONS(8422), 1, + sym_auto, + ACTIONS(8424), 1, + anon_sym_decltype, + STATE(4303), 1, + sym_new_declarator, + STATE(4412), 1, + sym_decltype_auto, + STATE(4221), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6633), 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(6635), 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, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + [105254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7203), 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(7205), 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, + [105310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 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(4257), 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, + [105366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7141), 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(7143), 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, + [105422] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7145), 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(7147), 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, + [105478] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3941), 1, + anon_sym_enum, + ACTIONS(3943), 1, + anon_sym_class, + ACTIONS(3945), 1, + anon_sym_struct, + ACTIONS(3947), 1, + anon_sym_union, + ACTIONS(3971), 1, + sym_auto, + ACTIONS(3973), 1, + anon_sym_decltype, + ACTIONS(3975), 1, + anon_sym_typename, + ACTIONS(6309), 1, + anon_sym_COLON_COLON, + ACTIONS(8303), 1, + sym_identifier, + ACTIONS(8305), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3029), 1, + sym_qualified_type_identifier, + STATE(3035), 1, + sym_decltype_auto, + STATE(4533), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5062), 1, + sym_type_specifier, + STATE(6909), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2999), 2, + sym_decltype, + sym_template_type, + ACTIONS(3937), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3036), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [105578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7183), 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(7185), 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, + [105634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7121), 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(7123), 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, + [105690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7155), 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(7157), 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, + [105746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7187), 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(7189), 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, + [105802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 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, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(6530), 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, + [105858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7231), 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(7233), 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, + [105914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7211), 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(7213), 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, + [105970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6524), 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, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(6526), 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, + [106026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7287), 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(7289), 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, + [106082] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7291), 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(7293), 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, + [106138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7093), 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(7095), 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, + [106194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7295), 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(7297), 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, + [106250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7149), 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(7151), 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, + [106306] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6313), 1, + anon_sym_COLON_COLON, + ACTIONS(8329), 1, + sym_identifier, + ACTIONS(8333), 1, + sym_primitive_type, + ACTIONS(8335), 1, + anon_sym_enum, + ACTIONS(8337), 1, + anon_sym_class, + ACTIONS(8339), 1, + anon_sym_struct, + ACTIONS(8341), 1, + anon_sym_union, + ACTIONS(8343), 1, + sym_auto, + ACTIONS(8345), 1, + anon_sym_decltype, + ACTIONS(8347), 1, + anon_sym_typename, + STATE(955), 1, + sym_alignas_qualifier, + STATE(4406), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4488), 1, + sym_type_specifier, + STATE(5300), 1, + sym_decltype_auto, + STATE(5318), 1, + sym_qualified_type_identifier, + STATE(6906), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5220), 2, + sym_decltype, + sym_template_type, + ACTIONS(8331), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5304), 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), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106406] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8153), 1, + sym_ms_restrict_modifier, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8414), 1, + anon_sym_STAR, + ACTIONS(8416), 1, + anon_sym_AMP_AMP, + ACTIONS(8418), 1, + anon_sym_AMP, + STATE(3226), 1, + sym_parameter_list, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6604), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8155), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8157), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4170), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4640), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6612), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106498] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7231), 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___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(7233), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [106554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 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___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(7229), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [106610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7211), 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___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(7213), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [106666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7255), 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___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(7257), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [106722] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7676), 1, + anon_sym_STAR, + ACTIONS(7678), 1, + anon_sym_AMP_AMP, + ACTIONS(7680), 1, + anon_sym_AMP, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6460), 1, + sym__declarator, + STATE(9116), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106815] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4417), 1, + sym_attribute_specifier, + ACTIONS(6673), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5476), 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(5478), 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, + [106874] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7718), 1, + anon_sym_STAR, + ACTIONS(7720), 1, + anon_sym_AMP_AMP, + ACTIONS(7722), 1, + anon_sym_AMP, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6930), 1, + sym__declarator, + STATE(8672), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106967] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, + anon_sym_STAR, + ACTIONS(7520), 1, + anon_sym_AMP_AMP, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6141), 1, + sym__scope_resolution, + STATE(6827), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6524), 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(6526), 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, + [107115] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4387), 1, + sym_attribute_specifier, + ACTIONS(6673), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5446), 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(5448), 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, + [107174] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4378), 1, + sym_attribute_specifier, + ACTIONS(6673), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5480), 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(5482), 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, + [107233] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4383), 1, + sym_attribute_specifier, + ACTIONS(6673), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5484), 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(5486), 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, + [107292] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7698), 1, + anon_sym_STAR, + ACTIONS(7700), 1, + anon_sym_AMP_AMP, + ACTIONS(7702), 1, + anon_sym_AMP, + ACTIONS(7704), 1, + anon_sym_COLON_COLON, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__scope_resolution, + STATE(6961), 1, + sym__declarator, + STATE(8410), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107385] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7676), 1, + anon_sym_STAR, + ACTIONS(7678), 1, + anon_sym_AMP_AMP, + ACTIONS(7680), 1, + anon_sym_AMP, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6470), 1, + sym__declarator, + STATE(9116), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107478] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7706), 1, + anon_sym_STAR, + ACTIONS(7708), 1, + anon_sym_AMP_AMP, + ACTIONS(7710), 1, + anon_sym_AMP, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6659), 1, + sym__declarator, + STATE(8558), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107571] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8153), 1, + sym_ms_restrict_modifier, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8434), 1, + anon_sym_STAR, + ACTIONS(8436), 1, + anon_sym_AMP_AMP, + ACTIONS(8438), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3320), 1, + sym_parameter_list, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6687), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8155), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8157), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4261), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4675), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6612), 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(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107662] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7706), 1, + anon_sym_STAR, + ACTIONS(7708), 1, + anon_sym_AMP_AMP, + ACTIONS(7710), 1, + anon_sym_AMP, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6666), 1, + sym__declarator, + STATE(8558), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107755] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 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(6530), 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, + [107810] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8153), 1, + sym_ms_restrict_modifier, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8434), 1, + anon_sym_STAR, + ACTIONS(8436), 1, + anon_sym_AMP_AMP, + ACTIONS(8438), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3320), 1, + sym_parameter_list, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6694), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8155), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8157), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4733), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 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(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107901] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(6624), 1, + anon_sym_LBRACK, + ACTIONS(6705), 1, + anon_sym_STAR, + ACTIONS(8440), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8444), 1, + anon_sym_AMP_AMP, + ACTIONS(8446), 1, + anon_sym_AMP, + ACTIONS(8448), 1, + anon_sym_EQ, + STATE(3525), 1, + sym_parameter_list, + STATE(6082), 1, + sym__scope_resolution, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6524), 1, + sym__declarator, + STATE(6848), 1, + sym__abstract_declarator, + STATE(7030), 1, + sym_abstract_reference_declarator, + STATE(7567), 1, + sym_variadic_declarator, + STATE(7568), 1, + sym_variadic_reference_declarator, + STATE(8558), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8442), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7017), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [108010] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7712), 1, + anon_sym_STAR, + ACTIONS(7714), 1, + anon_sym_AMP_AMP, + ACTIONS(7716), 1, + anon_sym_AMP, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6154), 1, + sym__scope_resolution, + STATE(6870), 1, + sym__declarator, + STATE(8621), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108103] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7706), 1, + anon_sym_STAR, + ACTIONS(7708), 1, + anon_sym_AMP_AMP, + ACTIONS(7710), 1, + anon_sym_AMP, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6629), 1, + sym__declarator, + STATE(8558), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108196] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(2522), 1, + anon_sym_STAR, + ACTIONS(2524), 1, + anon_sym_AMP, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6154), 1, + sym__scope_resolution, + STATE(6827), 1, + sym__declarator, + STATE(8684), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108289] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(2522), 1, + anon_sym_STAR, + ACTIONS(2524), 1, + anon_sym_AMP, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6154), 1, + sym__scope_resolution, + STATE(6745), 1, + sym__declarator, + STATE(8684), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108382] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8236), 1, + anon_sym_LBRACK, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + ACTIONS(8452), 1, + sym_auto, + ACTIONS(8454), 1, + anon_sym_decltype, + STATE(2508), 1, + sym_decltype_auto, + STATE(4490), 1, + sym_new_declarator, + STATE(4244), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6585), 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___attribute, + anon_sym_DOT, + ACTIONS(6587), 28, + 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, + [108453] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4432), 1, + sym_attribute_specifier, + ACTIONS(6673), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5494), 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(5496), 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, + [108512] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8236), 1, + anon_sym_LBRACK, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + ACTIONS(8452), 1, + sym_auto, + ACTIONS(8454), 1, + anon_sym_decltype, + STATE(2508), 1, + sym_decltype_auto, + STATE(4493), 1, + sym_new_declarator, + STATE(4220), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6597), 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___attribute, + anon_sym_DOT, + ACTIONS(6599), 28, + 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, + [108583] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8236), 1, + anon_sym_LBRACK, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + ACTIONS(8452), 1, + sym_auto, + ACTIONS(8454), 1, + anon_sym_decltype, + STATE(2508), 1, + sym_decltype_auto, + STATE(4462), 1, + sym_new_declarator, + STATE(4123), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6603), 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___attribute, + anon_sym_DOT, + ACTIONS(6605), 28, + 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, + [108654] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7698), 1, + anon_sym_STAR, + ACTIONS(7700), 1, + anon_sym_AMP_AMP, + ACTIONS(7702), 1, + anon_sym_AMP, + ACTIONS(7704), 1, + anon_sym_COLON_COLON, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__scope_resolution, + STATE(6960), 1, + sym__declarator, + STATE(8410), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108747] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8456), 1, + sym_identifier, + ACTIONS(8466), 1, + sym_primitive_type, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(4396), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8463), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4275), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8461), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4721), 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(4723), 13, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8458), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108818] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7690), 1, + anon_sym_STAR, + ACTIONS(7692), 1, + anon_sym_AMP_AMP, + ACTIONS(7694), 1, + anon_sym_AMP, + ACTIONS(7696), 1, + anon_sym_COLON_COLON, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6120), 1, + sym__scope_resolution, + STATE(6480), 1, + sym__declarator, + STATE(8470), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108911] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4394), 1, + sym_attribute_specifier, + ACTIONS(6673), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5462), 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(5464), 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, + [108970] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8468), 1, + sym_identifier, + ACTIONS(8478), 1, + sym_primitive_type, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(4515), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8475), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8473), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4674), 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(4676), 13, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8470), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109041] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(6624), 1, + anon_sym_LBRACK, + ACTIONS(6665), 1, + anon_sym_STAR, + ACTIONS(8440), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8444), 1, + anon_sym_AMP_AMP, + ACTIONS(8446), 1, + anon_sym_AMP, + ACTIONS(8480), 1, + anon_sym_EQ, + STATE(3560), 1, + sym_parameter_list, + STATE(6082), 1, + sym__scope_resolution, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6526), 1, + sym__declarator, + STATE(6890), 1, + sym__abstract_declarator, + STATE(7049), 1, + sym_abstract_reference_declarator, + STATE(7567), 1, + sym_variadic_declarator, + STATE(7568), 1, + sym_variadic_reference_declarator, + STATE(8558), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8442), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(7017), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [109150] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, + anon_sym_STAR, + ACTIONS(7520), 1, + anon_sym_AMP_AMP, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6141), 1, + sym__scope_resolution, + STATE(6745), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109243] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4416), 1, + sym_attribute_specifier, + ACTIONS(6673), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 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(5502), 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, + [109302] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4427), 1, + sym_attribute_specifier, + ACTIONS(6673), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5512), 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(5514), 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, + [109361] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7712), 1, + anon_sym_STAR, + ACTIONS(7714), 1, + anon_sym_AMP_AMP, + ACTIONS(7716), 1, + anon_sym_AMP, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6154), 1, + sym__scope_resolution, + STATE(6872), 1, + sym__declarator, + STATE(8621), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109454] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5676), 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(5678), 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, + [109509] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7718), 1, + anon_sym_STAR, + ACTIONS(7720), 1, + anon_sym_AMP_AMP, + ACTIONS(7722), 1, + anon_sym_AMP, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6931), 1, + sym__declarator, + STATE(8672), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109602] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(2522), 1, + anon_sym_STAR, + ACTIONS(2524), 1, + anon_sym_AMP, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6154), 1, + sym__scope_resolution, + STATE(6817), 1, + sym__declarator, + STATE(8684), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109695] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4408), 1, + sym_attribute_specifier, + ACTIONS(6673), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5450), 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(5452), 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, + [109754] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4404), 1, + sym_attribute_specifier, + ACTIONS(6673), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5516), 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(5518), 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, + [109813] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7718), 1, + anon_sym_STAR, + ACTIONS(7720), 1, + anon_sym_AMP_AMP, + ACTIONS(7722), 1, + anon_sym_AMP, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6932), 1, + sym__declarator, + STATE(8672), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109906] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4405), 1, + sym_attribute_specifier, + ACTIONS(6673), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5522), 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(5524), 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, + [109965] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4407), 1, + sym_attribute_specifier, + ACTIONS(6673), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5488), 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(5490), 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, + [110024] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7690), 1, + anon_sym_STAR, + ACTIONS(7692), 1, + anon_sym_AMP_AMP, + ACTIONS(7694), 1, + anon_sym_AMP, + ACTIONS(7696), 1, + anon_sym_COLON_COLON, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6120), 1, + sym__scope_resolution, + STATE(6496), 1, + sym__declarator, + STATE(8470), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110117] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7676), 1, + anon_sym_STAR, + ACTIONS(7678), 1, + anon_sym_AMP_AMP, + ACTIONS(7680), 1, + anon_sym_AMP, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6082), 1, + sym__scope_resolution, + STATE(6418), 1, + sym__declarator, + STATE(9116), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110210] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7690), 1, + anon_sym_STAR, + ACTIONS(7692), 1, + anon_sym_AMP_AMP, + ACTIONS(7694), 1, + anon_sym_AMP, + ACTIONS(7696), 1, + anon_sym_COLON_COLON, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6120), 1, + sym__scope_resolution, + STATE(6466), 1, + sym__declarator, + STATE(8470), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110303] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, + anon_sym_STAR, + ACTIONS(7520), 1, + anon_sym_AMP_AMP, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6141), 1, + sym__scope_resolution, + STATE(6817), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5672), 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(5674), 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, + [110451] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7698), 1, + anon_sym_STAR, + ACTIONS(7700), 1, + anon_sym_AMP_AMP, + ACTIONS(7702), 1, + anon_sym_AMP, + ACTIONS(7704), 1, + anon_sym_COLON_COLON, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__scope_resolution, + STATE(7002), 1, + sym__declarator, + STATE(8410), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110544] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8236), 1, + anon_sym_LBRACK, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + ACTIONS(8452), 1, + sym_auto, + ACTIONS(8454), 1, + anon_sym_decltype, + STATE(2508), 1, + sym_decltype_auto, + STATE(4458), 1, + sym_new_declarator, + STATE(4221), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6633), 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___attribute, + anon_sym_DOT, + ACTIONS(6635), 28, + 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, + [110615] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7712), 1, + anon_sym_STAR, + ACTIONS(7714), 1, + anon_sym_AMP_AMP, + ACTIONS(7716), 1, + anon_sym_AMP, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6154), 1, + sym__scope_resolution, + STATE(6871), 1, + sym__declarator, + STATE(8621), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4789), 21, + 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___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(4791), 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, + [110762] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4025), 1, + sym_ms_restrict_modifier, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8482), 1, + anon_sym_STAR, + ACTIONS(8484), 1, + anon_sym_AMP_AMP, + ACTIONS(8486), 1, + anon_sym_AMP, + STATE(3347), 1, + sym_parameter_list, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6750), 1, + sym__abstract_declarator, + ACTIONS(8404), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8406), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4313), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4904), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6612), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110852] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8488), 1, + anon_sym_LT, + STATE(2760), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2950), 1, + sym_template_argument_list, + ACTIONS(6337), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3087), 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(3095), 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, + [110916] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4025), 1, + sym_ms_restrict_modifier, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(6620), 1, + anon_sym___attribute, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8490), 1, + anon_sym_STAR, + ACTIONS(8492), 1, + anon_sym_AMP_AMP, + ACTIONS(8494), 1, + anon_sym_AMP, + STATE(3652), 1, + sym_parameter_list, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6834), 1, + sym__abstract_declarator, + ACTIONS(8404), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8406), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4307), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4742), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6612), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [111008] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_STAR, + ACTIONS(8149), 1, + anon_sym_AMP_AMP, + ACTIONS(8151), 1, + anon_sym_AMP, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8498), 1, + anon_sym___attribute, + ACTIONS(8500), 1, + sym_auto, + ACTIONS(8502), 1, + anon_sym_decltype, + STATE(3196), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(4963), 1, + sym_decltype_auto, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6313), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8496), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [111096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4906), 21, + 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___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(4908), 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, + [111150] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8420), 1, + anon_sym_LPAREN2, + STATE(4210), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6935), 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(6937), 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, + [111210] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(6144), 1, + sym_auto, + ACTIONS(6146), 1, + anon_sym_decltype, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8163), 1, + anon_sym_STAR, + ACTIONS(8165), 1, + anon_sym_AMP_AMP, + ACTIONS(8167), 1, + anon_sym_AMP, + ACTIONS(8506), 1, + anon_sym___asm, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1422), 1, + sym_decltype_auto, + STATE(3233), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6406), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4445), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8504), 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(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [111298] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8488), 1, + anon_sym_LT, + STATE(2950), 1, + sym_template_argument_list, + ACTIONS(4529), 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_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3113), 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_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_final, + anon_sym_override, + anon_sym_GT2, + [111358] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4025), 1, + sym_ms_restrict_modifier, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8508), 1, + anon_sym_STAR, + ACTIONS(8510), 1, + anon_sym_AMP_AMP, + ACTIONS(8512), 1, + anon_sym_AMP, + STATE(3311), 1, + sym_parameter_list, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6753), 1, + sym__abstract_declarator, + ACTIONS(8404), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8406), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4801), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [111448] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4025), 1, + sym_ms_restrict_modifier, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(6631), 1, + anon_sym___attribute, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8490), 1, + anon_sym_STAR, + ACTIONS(8492), 1, + anon_sym_AMP_AMP, + ACTIONS(8494), 1, + anon_sym_AMP, + STATE(3652), 1, + sym_parameter_list, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6837), 1, + sym__abstract_declarator, + ACTIONS(8404), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8406), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4745), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [111540] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(6144), 1, + sym_auto, + ACTIONS(6146), 1, + anon_sym_decltype, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8163), 1, + anon_sym_STAR, + ACTIONS(8165), 1, + anon_sym_AMP_AMP, + ACTIONS(8167), 1, + anon_sym_AMP, + ACTIONS(8498), 1, + anon_sym___asm, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1422), 1, + sym_decltype_auto, + STATE(3233), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6412), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4481), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8496), 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(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [111628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5010), 21, + 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___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(5012), 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, + [111682] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4025), 1, + sym_ms_restrict_modifier, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(6631), 1, + anon_sym___attribute, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8514), 1, + anon_sym_STAR, + ACTIONS(8516), 1, + anon_sym_AMP_AMP, + ACTIONS(8518), 1, + anon_sym_AMP, + STATE(3646), 1, + sym_parameter_list, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6806), 1, + sym__abstract_declarator, + ACTIONS(8404), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8406), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4794), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [111774] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8420), 1, + anon_sym_LPAREN2, + STATE(4215), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6931), 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(6933), 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, + [111834] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5530), 1, + anon_sym_LT, + STATE(917), 1, + sym_template_argument_list, + STATE(1610), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5264), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3087), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(3095), 33, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [111898] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4025), 1, + sym_ms_restrict_modifier, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8482), 1, + anon_sym_STAR, + ACTIONS(8484), 1, + anon_sym_AMP_AMP, + ACTIONS(8486), 1, + anon_sym_AMP, + STATE(3347), 1, + sym_parameter_list, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6770), 1, + sym__abstract_declarator, + ACTIONS(8404), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8406), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4738), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [111988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4271), 10, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_GT, + ACTIONS(4269), 36, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [112042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4817), 21, + 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___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(4819), 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, + [112096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4793), 21, + 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___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(4795), 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, + [112150] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8172), 1, + anon_sym_STAR, + ACTIONS(8174), 1, + anon_sym_AMP_AMP, + ACTIONS(8176), 1, + anon_sym_AMP, + ACTIONS(8500), 1, + sym_auto, + ACTIONS(8502), 1, + anon_sym_decltype, + ACTIONS(8506), 1, + anon_sym___asm, + STATE(3235), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(4963), 1, + sym_decltype_auto, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6325), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4456), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8504), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [112238] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4966), 21, + 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___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(4968), 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, + [112292] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + STATE(955), 1, + sym_alignas_qualifier, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4512), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5750), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8522), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8520), 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, + [112360] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4025), 1, + sym_ms_restrict_modifier, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(6620), 1, + anon_sym___attribute, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8514), 1, + anon_sym_STAR, + ACTIONS(8516), 1, + anon_sym_AMP_AMP, + ACTIONS(8518), 1, + anon_sym_AMP, + STATE(3646), 1, + sym_parameter_list, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6798), 1, + sym__abstract_declarator, + ACTIONS(8404), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8406), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4310), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4783), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6612), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [112452] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_STAR, + ACTIONS(8149), 1, + anon_sym_AMP_AMP, + ACTIONS(8151), 1, + anon_sym_AMP, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8500), 1, + sym_auto, + ACTIONS(8502), 1, + anon_sym_decltype, + ACTIONS(8506), 1, + anon_sym___attribute, + STATE(3196), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(4963), 1, + sym_decltype_auto, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6309), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4479), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8504), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [112540] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(6620), 1, + anon_sym___attribute, + ACTIONS(8153), 1, + sym_ms_restrict_modifier, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8524), 1, + anon_sym_STAR, + ACTIONS(8526), 1, + anon_sym_AMP_AMP, + ACTIONS(8528), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3799), 1, + sym_parameter_list, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6792), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8155), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8157), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4323), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4797), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6612), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [112632] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(6631), 1, + anon_sym___attribute, + ACTIONS(8153), 1, + sym_ms_restrict_modifier, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8524), 1, + anon_sym_STAR, + ACTIONS(8526), 1, + anon_sym_AMP_AMP, + ACTIONS(8528), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3799), 1, + sym_parameter_list, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6801), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8155), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8157), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4799), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [112724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 10, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_GT, + ACTIONS(1903), 36, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [112778] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8530), 1, + anon_sym_LT, + STATE(2950), 1, + sym_template_argument_list, + ACTIONS(3272), 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_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3279), 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_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_final, + anon_sym_override, + anon_sym_GT2, + [112838] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4025), 1, + sym_ms_restrict_modifier, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8508), 1, + anon_sym_STAR, + ACTIONS(8510), 1, + anon_sym_AMP_AMP, + ACTIONS(8512), 1, + anon_sym_AMP, + STATE(3311), 1, + sym_parameter_list, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6760), 1, + sym__abstract_declarator, + ACTIONS(8404), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8406), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4306), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4753), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6612), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [112928] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8420), 1, + anon_sym_LPAREN2, + STATE(4142), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6916), 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(6918), 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, + [112988] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8172), 1, + anon_sym_STAR, + ACTIONS(8174), 1, + anon_sym_AMP_AMP, + ACTIONS(8176), 1, + anon_sym_AMP, + ACTIONS(8498), 1, + anon_sym___asm, + ACTIONS(8500), 1, + sym_auto, + ACTIONS(8502), 1, + anon_sym_decltype, + STATE(3235), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(4963), 1, + sym_decltype_auto, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6329), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4448), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8496), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [113076] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8420), 1, + anon_sym_LPAREN2, + STATE(4163), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6941), 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(6943), 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, + [113136] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8537), 1, + anon_sym_STAR, + ACTIONS(8539), 1, + anon_sym_AMP_AMP, + ACTIONS(8541), 1, + anon_sym_AMP, + ACTIONS(8547), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7079), 1, + sym__type_declarator, + STATE(8986), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5016), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [113225] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6614), 1, + anon_sym_STAR, + ACTIONS(6616), 1, + anon_sym_AMP_AMP, + ACTIONS(6618), 1, + anon_sym_AMP, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(6624), 1, + anon_sym_LBRACK, + ACTIONS(8440), 1, + anon_sym_DOT_DOT_DOT, + STATE(3376), 1, + sym_parameter_list, + STATE(6082), 1, + sym__scope_resolution, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6626), 1, + sym__declarator, + STATE(6844), 1, + sym__abstract_declarator, + STATE(7753), 1, + sym_variadic_declarator, + STATE(8558), 1, + sym_ms_based_modifier, + ACTIONS(8551), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8549), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [113324] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, + anon_sym_AMP_AMP, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6528), 1, + sym__type_declarator, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4352), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4994), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [113413] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8559), 1, + anon_sym_STAR, + ACTIONS(8561), 1, + anon_sym_AMP_AMP, + ACTIONS(8563), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2605), 1, + sym__type_declarator, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8607), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4998), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [113502] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8153), 1, + sym_ms_restrict_modifier, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8565), 1, + anon_sym_STAR, + ACTIONS(8567), 1, + anon_sym_AMP_AMP, + ACTIONS(8569), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3582), 1, + sym_parameter_list, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6861), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8155), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8157), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5079), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [113591] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, + anon_sym_AMP_AMP, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6515), 1, + sym__type_declarator, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4369), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4989), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [113680] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8571), 1, + sym_identifier, + ACTIONS(8573), 1, + anon_sym_LPAREN2, + ACTIONS(8575), 1, + anon_sym_STAR, + ACTIONS(8577), 1, + anon_sym_AMP_AMP, + ACTIONS(8579), 1, + anon_sym_AMP, + ACTIONS(8583), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3278), 1, + sym__type_declarator, + STATE(3589), 1, + sym_pointer_type_declarator, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8597), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4959), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8581), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3586), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [113769] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6986), 1, + anon_sym___attribute__, + ACTIONS(6988), 1, + anon_sym___attribute, + ACTIONS(7303), 1, + anon_sym_LBRACE, + ACTIONS(8585), 1, + anon_sym_COLON, + STATE(2962), 1, + sym__enum_base_clause, + STATE(2998), 1, + sym_enumerator_list, + STATE(3047), 1, + sym_attribute_specifier, + ACTIONS(5504), 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(5506), 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, + [113836] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8587), 1, + sym_identifier, + ACTIONS(8589), 1, + anon_sym_LPAREN2, + ACTIONS(8591), 1, + anon_sym_STAR, + ACTIONS(8593), 1, + anon_sym_AMP_AMP, + ACTIONS(8595), 1, + anon_sym_AMP, + ACTIONS(8599), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6183), 1, + sym__type_declarator, + STATE(6322), 1, + sym_pointer_type_declarator, + STATE(8631), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4942), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6320), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [113925] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8571), 1, + sym_identifier, + ACTIONS(8573), 1, + anon_sym_LPAREN2, + ACTIONS(8575), 1, + anon_sym_STAR, + ACTIONS(8577), 1, + anon_sym_AMP_AMP, + ACTIONS(8579), 1, + anon_sym_AMP, + ACTIONS(8583), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3264), 1, + sym__type_declarator, + STATE(3589), 1, + sym_pointer_type_declarator, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8597), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5022), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8581), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3586), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114014] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8587), 1, + sym_identifier, + ACTIONS(8589), 1, + anon_sym_LPAREN2, + ACTIONS(8599), 1, + sym_primitive_type, + ACTIONS(8601), 1, + anon_sym_STAR, + ACTIONS(8603), 1, + anon_sym_AMP_AMP, + ACTIONS(8605), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6322), 1, + sym_pointer_type_declarator, + STATE(6558), 1, + sym__type_declarator, + STATE(8727), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5001), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6320), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114103] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8351), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(8349), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [114156] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8153), 1, + sym_ms_restrict_modifier, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8565), 1, + anon_sym_STAR, + ACTIONS(8567), 1, + anon_sym_AMP_AMP, + ACTIONS(8569), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3582), 1, + sym_parameter_list, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6857), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8155), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8157), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4334), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5075), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6612), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114245] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8537), 1, + anon_sym_STAR, + ACTIONS(8539), 1, + anon_sym_AMP_AMP, + ACTIONS(8541), 1, + anon_sym_AMP, + ACTIONS(8547), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7066), 1, + sym__type_declarator, + STATE(8986), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5015), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114334] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8537), 1, + anon_sym_STAR, + ACTIONS(8539), 1, + anon_sym_AMP_AMP, + ACTIONS(8541), 1, + anon_sym_AMP, + ACTIONS(8547), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7066), 1, + sym__type_declarator, + STATE(8986), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4330), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5015), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114423] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8559), 1, + anon_sym_STAR, + ACTIONS(8561), 1, + anon_sym_AMP_AMP, + ACTIONS(8563), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2597), 1, + sym__type_declarator, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8607), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114512] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8587), 1, + sym_identifier, + ACTIONS(8589), 1, + anon_sym_LPAREN2, + ACTIONS(8591), 1, + anon_sym_STAR, + ACTIONS(8593), 1, + anon_sym_AMP_AMP, + ACTIONS(8595), 1, + anon_sym_AMP, + ACTIONS(8599), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6214), 1, + sym__type_declarator, + STATE(6322), 1, + sym_pointer_type_declarator, + STATE(8631), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4360), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4938), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6320), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114601] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8315), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(8313), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [114654] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5530), 1, + anon_sym_LT, + STATE(917), 1, + sym_template_argument_list, + ACTIONS(4529), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_COLON, + anon_sym___asm, + ACTIONS(3113), 36, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [114713] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8537), 1, + anon_sym_STAR, + ACTIONS(8539), 1, + anon_sym_AMP_AMP, + ACTIONS(8541), 1, + anon_sym_AMP, + ACTIONS(8547), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7058), 1, + sym__type_declarator, + STATE(8986), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4343), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5014), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114802] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5530), 1, + anon_sym_LT, + STATE(917), 1, + sym_template_argument_list, + ACTIONS(3272), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_COLON, + anon_sym___asm, + ACTIONS(3279), 36, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [114861] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8559), 1, + anon_sym_STAR, + ACTIONS(8561), 1, + anon_sym_AMP_AMP, + ACTIONS(8563), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2605), 1, + sym__type_declarator, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8607), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4345), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4998), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114950] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, + anon_sym_AMP_AMP, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6531), 1, + sym__type_declarator, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4996), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [115039] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8571), 1, + sym_identifier, + ACTIONS(8573), 1, + anon_sym_LPAREN2, + ACTIONS(8575), 1, + anon_sym_STAR, + ACTIONS(8577), 1, + anon_sym_AMP_AMP, + ACTIONS(8579), 1, + anon_sym_AMP, + ACTIONS(8583), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3243), 1, + sym__type_declarator, + STATE(3589), 1, + sym_pointer_type_declarator, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8597), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4339), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5121), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8581), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3586), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [115128] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6986), 1, + anon_sym___attribute__, + ACTIONS(6988), 1, + anon_sym___attribute, + ACTIONS(7303), 1, + anon_sym_LBRACE, + ACTIONS(8585), 1, + anon_sym_COLON, + STATE(2941), 1, + sym__enum_base_clause, + STATE(2965), 1, + sym_enumerator_list, + STATE(3016), 1, + sym_attribute_specifier, + ACTIONS(5454), 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(5456), 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, + [115195] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8559), 1, + anon_sym_STAR, + ACTIONS(8561), 1, + anon_sym_AMP_AMP, + ACTIONS(8563), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2591), 1, + sym__type_declarator, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8607), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4333), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4990), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [115284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4754), 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(4756), 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [115337] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8587), 1, + sym_identifier, + ACTIONS(8589), 1, + anon_sym_LPAREN2, + ACTIONS(8599), 1, + sym_primitive_type, + ACTIONS(8601), 1, + anon_sym_STAR, + ACTIONS(8603), 1, + anon_sym_AMP_AMP, + ACTIONS(8605), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6322), 1, + sym_pointer_type_declarator, + STATE(6557), 1, + sym__type_declarator, + STATE(8727), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5000), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6320), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [115426] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8607), 1, + sym_identifier, + ACTIONS(8609), 1, + anon_sym_LPAREN2, + ACTIONS(8611), 1, + anon_sym_STAR, + ACTIONS(8613), 1, + anon_sym_AMP_AMP, + ACTIONS(8615), 1, + anon_sym_AMP, + ACTIONS(8619), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3335), 1, + sym__type_declarator, + STATE(3689), 1, + sym_pointer_type_declarator, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8431), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4993), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8617), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3687), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [115515] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8607), 1, + sym_identifier, + ACTIONS(8609), 1, + anon_sym_LPAREN2, + ACTIONS(8611), 1, + anon_sym_STAR, + ACTIONS(8613), 1, + anon_sym_AMP_AMP, + ACTIONS(8615), 1, + anon_sym_AMP, + ACTIONS(8619), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3345), 1, + sym__type_declarator, + STATE(3689), 1, + sym_pointer_type_declarator, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8431), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5089), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8617), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3687), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [115604] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8587), 1, + sym_identifier, + ACTIONS(8589), 1, + anon_sym_LPAREN2, + ACTIONS(8591), 1, + anon_sym_STAR, + ACTIONS(8593), 1, + anon_sym_AMP_AMP, + ACTIONS(8595), 1, + anon_sym_AMP, + ACTIONS(8599), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6203), 1, + sym__type_declarator, + STATE(6322), 1, + sym_pointer_type_declarator, + STATE(8631), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5088), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6320), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [115693] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8422), 1, + sym_auto, + ACTIONS(8424), 1, + anon_sym_decltype, + STATE(4412), 1, + sym_decltype_auto, + ACTIONS(4785), 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(4787), 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, + [115752] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4735), 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(4737), 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, + [115807] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8607), 1, + sym_identifier, + ACTIONS(8609), 1, + anon_sym_LPAREN2, + ACTIONS(8611), 1, + anon_sym_STAR, + ACTIONS(8613), 1, + anon_sym_AMP_AMP, + ACTIONS(8615), 1, + anon_sym_AMP, + ACTIONS(8619), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3335), 1, + sym__type_declarator, + STATE(3689), 1, + sym_pointer_type_declarator, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8431), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4359), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4993), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8617), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3687), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [115896] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5530), 1, + anon_sym_LT, + STATE(917), 1, + sym_template_argument_list, + STATE(4521), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8621), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3087), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_COLON, + anon_sym___asm, + ACTIONS(3095), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [115959] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4025), 1, + sym_ms_restrict_modifier, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8623), 1, + anon_sym_STAR, + ACTIONS(8625), 1, + anon_sym_AMP_AMP, + ACTIONS(8627), 1, + anon_sym_AMP, + STATE(3414), 1, + sym_parameter_list, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6878), 1, + sym__abstract_declarator, + ACTIONS(8404), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8406), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4366), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5008), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6612), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116048] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4025), 1, + sym_ms_restrict_modifier, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8623), 1, + anon_sym_STAR, + ACTIONS(8625), 1, + anon_sym_AMP_AMP, + ACTIONS(8627), 1, + anon_sym_AMP, + STATE(3414), 1, + sym_parameter_list, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6880), 1, + sym__abstract_declarator, + ACTIONS(8404), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8406), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5010), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116137] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8587), 1, + sym_identifier, + ACTIONS(8589), 1, + anon_sym_LPAREN2, + ACTIONS(8599), 1, + sym_primitive_type, + ACTIONS(8601), 1, + anon_sym_STAR, + ACTIONS(8603), 1, + anon_sym_AMP_AMP, + ACTIONS(8605), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6322), 1, + sym_pointer_type_declarator, + STATE(6557), 1, + sym__type_declarator, + STATE(8727), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4340), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5000), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6320), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116226] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8607), 1, + sym_identifier, + ACTIONS(8609), 1, + anon_sym_LPAREN2, + ACTIONS(8611), 1, + anon_sym_STAR, + ACTIONS(8613), 1, + anon_sym_AMP_AMP, + ACTIONS(8615), 1, + anon_sym_AMP, + ACTIONS(8619), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3318), 1, + sym__type_declarator, + STATE(3689), 1, + sym_pointer_type_declarator, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8431), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4358), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5096), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8617), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3687), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116315] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, + anon_sym_AMP_AMP, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6528), 1, + sym__type_declarator, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4994), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116404] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8587), 1, + sym_identifier, + ACTIONS(8589), 1, + anon_sym_LPAREN2, + ACTIONS(8599), 1, + sym_primitive_type, + ACTIONS(8601), 1, + anon_sym_STAR, + ACTIONS(8603), 1, + anon_sym_AMP_AMP, + ACTIONS(8605), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6322), 1, + sym_pointer_type_declarator, + STATE(6555), 1, + sym__type_declarator, + STATE(8727), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4357), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4999), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6320), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116493] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8587), 1, + sym_identifier, + ACTIONS(8589), 1, + anon_sym_LPAREN2, + ACTIONS(8591), 1, + anon_sym_STAR, + ACTIONS(8593), 1, + anon_sym_AMP_AMP, + ACTIONS(8595), 1, + anon_sym_AMP, + ACTIONS(8599), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6203), 1, + sym__type_declarator, + STATE(6322), 1, + sym_pointer_type_declarator, + STATE(8631), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4338), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5088), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6320), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116582] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8571), 1, + sym_identifier, + ACTIONS(8573), 1, + anon_sym_LPAREN2, + ACTIONS(8575), 1, + anon_sym_STAR, + ACTIONS(8577), 1, + anon_sym_AMP_AMP, + ACTIONS(8579), 1, + anon_sym_AMP, + ACTIONS(8583), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3264), 1, + sym__type_declarator, + STATE(3589), 1, + sym_pointer_type_declarator, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8597), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8543), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4336), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5022), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8153), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8581), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3586), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116671] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, + anon_sym_LT, + STATE(917), 1, + sym_template_argument_list, + STATE(4521), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8621), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5070), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_COLON, + anon_sym___asm, + ACTIONS(5072), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [116734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 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(5004), 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, + [116786] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4934), 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(4936), 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, + [116838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5018), 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(5020), 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, + [116890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4735), 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(4737), 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, + [116942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4805), 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(4807), 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, + [116994] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8236), 1, + anon_sym_LBRACK, + ACTIONS(8420), 1, + anon_sym_LPAREN2, + ACTIONS(8452), 1, + sym_auto, + ACTIONS(8454), 1, + anon_sym_decltype, + STATE(2508), 1, + sym_decltype_auto, + STATE(4303), 1, + sym_new_declarator, + STATE(4221), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6633), 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(6635), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [117062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5054), 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(5056), 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, + [117114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4962), 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(4964), 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, + [117166] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 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(4900), 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, + [117218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4974), 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(4976), 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, + [117270] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8236), 1, + anon_sym_LBRACK, + ACTIONS(8420), 1, + anon_sym_LPAREN2, + ACTIONS(8452), 1, + sym_auto, + ACTIONS(8454), 1, + anon_sym_decltype, + STATE(2508), 1, + sym_decltype_auto, + STATE(4311), 1, + sym_new_declarator, + STATE(4244), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6585), 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(6587), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [117338] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5022), 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(5024), 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, + [117390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 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(4928), 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, + [117442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4797), 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(4799), 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, + [117494] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8153), 1, + sym_ms_restrict_modifier, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8629), 1, + anon_sym_STAR, + ACTIONS(8631), 1, + anon_sym_AMP_AMP, + ACTIONS(8633), 1, + anon_sym_AMP, + STATE(3798), 1, + sym_parameter_list, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6935), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8155), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8157), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4389), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5160), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6612), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [117582] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8153), 1, + sym_ms_restrict_modifier, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8629), 1, + anon_sym_STAR, + ACTIONS(8631), 1, + anon_sym_AMP_AMP, + ACTIONS(8633), 1, + anon_sym_AMP, + STATE(3798), 1, + sym_parameter_list, + STATE(4029), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6939), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8155), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8157), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5162), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6629), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [117670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 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(4932), 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, + [117722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4938), 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(4940), 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, + [117774] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(6144), 1, + sym_auto, + ACTIONS(6146), 1, + anon_sym_decltype, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8385), 1, + anon_sym_STAR, + ACTIONS(8387), 1, + anon_sym_AMP_AMP, + ACTIONS(8389), 1, + anon_sym_AMP, + ACTIONS(8506), 1, + anon_sym___attribute, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1422), 1, + sym_decltype_auto, + STATE(3354), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6567), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4546), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8504), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [117860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4801), 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(4803), 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, + [117912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4809), 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(4811), 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, + [117964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5026), 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(5028), 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, + [118016] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(4424), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4520), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(8635), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5131), 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(5128), 28, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [118074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 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(4904), 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, + [118126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 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(4896), 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, + [118178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 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(4980), 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, + [118230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4942), 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(4944), 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, + [118282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5030), 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(5032), 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, + [118334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 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(5036), 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, + [118386] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5038), 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(5040), 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, + [118438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5042), 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(5044), 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, + [118490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5046), 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(5048), 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, + [118542] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8638), 1, + sym_identifier, + ACTIONS(8648), 1, + sym_primitive_type, + STATE(4535), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4593), 1, + sym_alignas_qualifier, + ACTIONS(8645), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4413), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8643), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4723), 9, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(4721), 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(8640), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4890), 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(4892), 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, + [118662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5058), 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(5060), 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, + [118714] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5006), 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(5008), 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, + [118766] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(6144), 1, + sym_auto, + ACTIONS(6146), 1, + anon_sym_decltype, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8385), 1, + anon_sym_STAR, + ACTIONS(8387), 1, + anon_sym_AMP_AMP, + ACTIONS(8389), 1, + anon_sym_AMP, + ACTIONS(8498), 1, + anon_sym___attribute, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1422), 1, + sym_decltype_auto, + STATE(3354), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6571), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4548), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8496), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118852] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8236), 1, + anon_sym_LBRACK, + ACTIONS(8420), 1, + anon_sym_LPAREN2, + ACTIONS(8452), 1, + sym_auto, + ACTIONS(8454), 1, + anon_sym_decltype, + STATE(2508), 1, + sym_decltype_auto, + STATE(4329), 1, + sym_new_declarator, + STATE(4123), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6603), 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(6605), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [118920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5104), 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(5106), 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, + [118972] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8650), 1, + sym_identifier, + ACTIONS(8660), 1, + sym_primitive_type, + STATE(4593), 1, + sym_alignas_qualifier, + STATE(4695), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8657), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4477), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8655), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4676), 9, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(4674), 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(8652), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [119040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5038), 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(5040), 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, + [119092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 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(5064), 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, + [119144] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4946), 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(4948), 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, + [119196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4954), 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(4956), 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, + [119248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4914), 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(4916), 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, + [119300] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4918), 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(4920), 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, + [119352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 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(4900), 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, + [119404] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8236), 1, + anon_sym_LBRACK, + ACTIONS(8420), 1, + anon_sym_LPAREN2, + ACTIONS(8452), 1, + sym_auto, + ACTIONS(8454), 1, + anon_sym_decltype, + STATE(2508), 1, + sym_decltype_auto, + STATE(4327), 1, + sym_new_declarator, + STATE(4220), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6597), 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(6599), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [119472] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5014), 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(5016), 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, + [119524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4813), 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(4815), 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, + [119576] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4424), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8635), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4522), 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(4520), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_asm, + 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, + [119632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5066), 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(5068), 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, + [119684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 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(4900), 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, + [119736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4950), 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(4952), 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, + [119788] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4982), 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(4984), 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, + [119840] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + STATE(4324), 1, + sym_alignas_qualifier, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4595), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4671), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5934), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8522), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8520), 18, + anon_sym_COMMA, + 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, + [119906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5112), 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(5114), 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, + [119958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5050), 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(5052), 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, + [120010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4970), 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(4972), 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, + [120062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4958), 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(4960), 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, + [120114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4910), 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(4912), 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, + [120166] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4922), 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(4924), 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, + [120218] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8668), 1, + anon_sym_SLASH, + ACTIONS(8670), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8672), 1, + anon_sym_AMP_AMP, + ACTIONS(8676), 1, + anon_sym_CARET, + ACTIONS(8684), 1, + anon_sym_GT_EQ, + ACTIONS(8688), 1, + anon_sym_QMARK, + ACTIONS(8690), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8692), 1, + anon_sym_or, + ACTIONS(8694), 1, + anon_sym_and, + ACTIONS(8696), 1, + anon_sym_xor, + ACTIONS(8698), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7461), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8666), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8674), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8678), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8686), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8682), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7463), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [120321] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8668), 1, + anon_sym_SLASH, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8666), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7083), 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(7085), 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, + [120390] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8668), 1, + anon_sym_SLASH, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8666), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8686), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7083), 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(7085), 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, + [120463] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_STAR, + ACTIONS(8149), 1, + anon_sym_AMP_AMP, + ACTIONS(8151), 1, + anon_sym_AMP, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8702), 1, + anon_sym___attribute, + STATE(3196), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6315), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8700), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [120542] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7316), 1, + anon_sym___attribute, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_STAR, + ACTIONS(8149), 1, + anon_sym_AMP_AMP, + ACTIONS(8151), 1, + anon_sym_AMP, + ACTIONS(8159), 1, + anon_sym_LBRACK, + STATE(3196), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6316), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7314), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [120621] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6631), 1, + anon_sym___asm, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8172), 1, + anon_sym_STAR, + ACTIONS(8174), 1, + anon_sym_AMP_AMP, + ACTIONS(8176), 1, + anon_sym_AMP, + STATE(3235), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6330), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [120700] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8396), 1, + anon_sym_STAR, + ACTIONS(8398), 1, + anon_sym_AMP_AMP, + ACTIONS(8400), 1, + anon_sym_AMP, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8506), 1, + anon_sym___attribute, + ACTIONS(8704), 1, + sym_auto, + ACTIONS(8706), 1, + anon_sym_decltype, + STATE(3378), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(5278), 1, + sym_decltype_auto, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6635), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4610), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8504), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [120785] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(8708), 1, + sym_identifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8712), 1, + anon_sym_STAR, + ACTIONS(8714), 1, + anon_sym_AMP_AMP, + ACTIONS(8716), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6488), 1, + sym__field_declarator, + STATE(6652), 1, + sym_operator_name, + STATE(8436), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4455), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6712), 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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [120870] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8668), 1, + anon_sym_SLASH, + ACTIONS(8684), 1, + anon_sym_GT_EQ, + ACTIONS(8690), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8698), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8666), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8678), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8686), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8682), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 7, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + sym_identifier, + ACTIONS(7085), 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, + [120955] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8163), 1, + anon_sym_STAR, + ACTIONS(8165), 1, + anon_sym_AMP_AMP, + ACTIONS(8167), 1, + anon_sym_AMP, + ACTIONS(8720), 1, + anon_sym___asm, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3233), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6411), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8718), 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(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [121034] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(7334), 1, + sym_auto, + ACTIONS(7336), 1, + anon_sym_decltype, + ACTIONS(8722), 1, + anon_sym_LPAREN2, + ACTIONS(8724), 1, + anon_sym_LBRACK, + STATE(3043), 1, + sym_decltype_auto, + STATE(4661), 1, + sym_new_declarator, + STATE(5176), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6597), 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(6599), 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, + [121101] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7199), 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(7201), 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_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, + [121152] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8172), 1, + anon_sym_STAR, + ACTIONS(8174), 1, + anon_sym_AMP_AMP, + ACTIONS(8176), 1, + anon_sym_AMP, + ACTIONS(8702), 1, + anon_sym___asm, + STATE(3235), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6331), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8700), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [121231] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6547), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8726), 1, + anon_sym_LPAREN2, + ACTIONS(8728), 1, + anon_sym_STAR, + ACTIONS(8730), 1, + anon_sym_AMP_AMP, + ACTIONS(8732), 1, + anon_sym_AMP, + ACTIONS(8736), 1, + sym_ms_restrict_modifier, + STATE(2434), 1, + sym_alignas_qualifier, + STATE(3672), 1, + sym_parameter_list, + STATE(5549), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6950), 1, + sym__abstract_declarator, + ACTIONS(8738), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8740), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8742), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5235), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5393), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(6629), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8734), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [121318] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7316), 1, + anon_sym___asm, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8172), 1, + anon_sym_STAR, + ACTIONS(8174), 1, + anon_sym_AMP_AMP, + ACTIONS(8176), 1, + anon_sym_AMP, + STATE(3235), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6332), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7314), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [121397] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8668), 1, + anon_sym_SLASH, + ACTIONS(8672), 1, + anon_sym_AMP_AMP, + ACTIONS(8676), 1, + anon_sym_CARET, + ACTIONS(8684), 1, + anon_sym_GT_EQ, + ACTIONS(8690), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8694), 1, + anon_sym_and, + ACTIONS(8696), 1, + anon_sym_xor, + ACTIONS(8698), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8666), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8674), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8678), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8686), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7083), 3, + aux_sym_preproc_elif_token1, + anon_sym_or, + sym_identifier, + ACTIONS(8682), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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, + [121492] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(7334), 1, + sym_auto, + ACTIONS(7336), 1, + anon_sym_decltype, + ACTIONS(8722), 1, + anon_sym_LPAREN2, + ACTIONS(8724), 1, + anon_sym_LBRACK, + STATE(3043), 1, + sym_decltype_auto, + STATE(4727), 1, + sym_new_declarator, + STATE(5157), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6603), 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(6605), 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, + [121559] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6614), 1, + anon_sym_STAR, + ACTIONS(6616), 1, + anon_sym_AMP_AMP, + ACTIONS(6618), 1, + anon_sym_AMP, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(6624), 1, + anon_sym_LBRACK, + STATE(3376), 1, + sym_parameter_list, + STATE(6082), 1, + sym__scope_resolution, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6626), 1, + sym__declarator, + STATE(6844), 1, + sym__abstract_declarator, + STATE(8558), 1, + sym_ms_based_modifier, + ACTIONS(8551), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8549), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [121652] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8668), 1, + anon_sym_SLASH, + ACTIONS(8684), 1, + anon_sym_GT_EQ, + ACTIONS(8690), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8698), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8666), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8686), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8682), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 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(7085), 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, + [121735] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(8708), 1, + sym_identifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8712), 1, + anon_sym_STAR, + ACTIONS(8714), 1, + anon_sym_AMP_AMP, + ACTIONS(8716), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6499), 1, + sym__field_declarator, + STATE(6652), 1, + sym_operator_name, + STATE(8436), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5226), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6712), 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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [121820] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8172), 1, + anon_sym_STAR, + ACTIONS(8174), 1, + anon_sym_AMP_AMP, + ACTIONS(8176), 1, + anon_sym_AMP, + ACTIONS(8720), 1, + anon_sym___asm, + STATE(3235), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6328), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8718), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [121899] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7179), 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(7181), 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_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, + [121950] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + STATE(4210), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6935), 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___attribute, + anon_sym_DOT, + ACTIONS(6937), 29, + 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_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, + [122007] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8668), 1, + anon_sym_SLASH, + ACTIONS(8676), 1, + anon_sym_CARET, + ACTIONS(8684), 1, + anon_sym_GT_EQ, + ACTIONS(8690), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8696), 1, + anon_sym_xor, + ACTIONS(8698), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8666), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8674), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8678), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8686), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8682), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 4, + aux_sym_preproc_elif_token1, + anon_sym_or, + anon_sym_and, + sym_identifier, + ACTIONS(7085), 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, + [122098] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(7334), 1, + sym_auto, + ACTIONS(7336), 1, + anon_sym_decltype, + ACTIONS(8722), 1, + anon_sym_LPAREN2, + ACTIONS(8724), 1, + anon_sym_LBRACK, + STATE(3043), 1, + sym_decltype_auto, + STATE(4651), 1, + sym_new_declarator, + STATE(5188), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6633), 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(6635), 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, + [122165] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8414), 1, + anon_sym_STAR, + ACTIONS(8416), 1, + anon_sym_AMP_AMP, + ACTIONS(8418), 1, + anon_sym_AMP, + ACTIONS(8500), 1, + sym_auto, + ACTIONS(8502), 1, + anon_sym_decltype, + STATE(3226), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(4963), 1, + sym_decltype_auto, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6647), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4617), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8496), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [122248] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + STATE(4163), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6941), 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___attribute, + anon_sym_DOT, + ACTIONS(6943), 29, + 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_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, + [122305] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(4606), 1, + sym_alignas_qualifier, + ACTIONS(8747), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4171), 12, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + ACTIONS(4173), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(8744), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [122364] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4025), 1, + sym_ms_restrict_modifier, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8750), 1, + anon_sym_STAR, + ACTIONS(8752), 1, + anon_sym_AMP_AMP, + ACTIONS(8754), 1, + anon_sym_AMP, + STATE(3371), 1, + sym_parameter_list, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6967), 1, + sym__abstract_declarator, + ACTIONS(8404), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8406), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5236), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6629), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [122451] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8668), 1, + anon_sym_SLASH, + ACTIONS(8670), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8672), 1, + anon_sym_AMP_AMP, + ACTIONS(8676), 1, + anon_sym_CARET, + ACTIONS(8684), 1, + anon_sym_GT_EQ, + ACTIONS(8688), 1, + anon_sym_QMARK, + ACTIONS(8690), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8692), 1, + anon_sym_or, + ACTIONS(8694), 1, + anon_sym_and, + ACTIONS(8696), 1, + anon_sym_xor, + ACTIONS(8698), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8666), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8674), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8678), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8686), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8756), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8682), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(8758), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [122554] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(6631), 1, + anon_sym___asm, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8163), 1, + anon_sym_STAR, + ACTIONS(8165), 1, + anon_sym_AMP_AMP, + ACTIONS(8167), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3233), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6413), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 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(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [122633] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8414), 1, + anon_sym_STAR, + ACTIONS(8416), 1, + anon_sym_AMP_AMP, + ACTIONS(8418), 1, + anon_sym_AMP, + ACTIONS(8500), 1, + sym_auto, + ACTIONS(8502), 1, + anon_sym_decltype, + STATE(3226), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(4963), 1, + sym_decltype_auto, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6674), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4589), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8504), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [122716] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8668), 1, + anon_sym_SLASH, + ACTIONS(8670), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8672), 1, + anon_sym_AMP_AMP, + ACTIONS(8676), 1, + anon_sym_CARET, + ACTIONS(8684), 1, + anon_sym_GT_EQ, + ACTIONS(8688), 1, + anon_sym_QMARK, + ACTIONS(8690), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8692), 1, + anon_sym_or, + ACTIONS(8694), 1, + anon_sym_and, + ACTIONS(8696), 1, + anon_sym_xor, + ACTIONS(8698), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7171), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8666), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8674), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8678), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8686), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8682), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7173), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [122819] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4025), 1, + sym_ms_restrict_modifier, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8750), 1, + anon_sym_STAR, + ACTIONS(8752), 1, + anon_sym_AMP_AMP, + ACTIONS(8754), 1, + anon_sym_AMP, + STATE(3371), 1, + sym_parameter_list, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6973), 1, + sym__abstract_declarator, + ACTIONS(8404), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8406), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4464), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5251), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6612), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [122906] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8668), 1, + anon_sym_SLASH, + ACTIONS(8684), 1, + anon_sym_GT_EQ, + ACTIONS(8690), 1, + anon_sym_LT_EQ_GT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8666), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8686), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8682), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 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(7085), 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, + [122985] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(7334), 1, + sym_auto, + ACTIONS(7336), 1, + anon_sym_decltype, + ACTIONS(8722), 1, + anon_sym_LPAREN2, + ACTIONS(8724), 1, + anon_sym_LBRACK, + STATE(3043), 1, + sym_decltype_auto, + STATE(4704), 1, + sym_new_declarator, + STATE(5140), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6585), 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(6587), 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, + [123052] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8760), 1, + sym_identifier, + ACTIONS(8762), 1, + anon_sym_STAR, + ACTIONS(8764), 1, + anon_sym_AMP_AMP, + ACTIONS(8766), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6948), 1, + sym__field_declarator, + STATE(7110), 1, + sym_operator_name, + STATE(8704), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5203), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6712), 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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [123137] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(8708), 1, + sym_identifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8712), 1, + anon_sym_STAR, + ACTIONS(8714), 1, + anon_sym_AMP_AMP, + ACTIONS(8716), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6477), 1, + sym__field_declarator, + STATE(6652), 1, + sym_operator_name, + STATE(8436), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4480), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5210), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6712), 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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [123222] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8760), 1, + sym_identifier, + ACTIONS(8762), 1, + anon_sym_STAR, + ACTIONS(8764), 1, + anon_sym_AMP_AMP, + ACTIONS(8766), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6948), 1, + sym__field_declarator, + STATE(7110), 1, + sym_operator_name, + STATE(8704), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4489), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5203), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6712), 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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [123307] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8668), 1, + anon_sym_SLASH, + ACTIONS(8676), 1, + anon_sym_CARET, + ACTIONS(8684), 1, + anon_sym_GT_EQ, + ACTIONS(8690), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8696), 1, + anon_sym_xor, + ACTIONS(8698), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8666), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8678), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8686), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8682), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7083), 6, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + sym_identifier, + ACTIONS(7085), 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, + [123396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 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(7225), 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_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, + [123447] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(4593), 1, + sym_alignas_qualifier, + ACTIONS(8771), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4477), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4173), 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(8768), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(4171), 15, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [123506] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8668), 1, + anon_sym_SLASH, + ACTIONS(8690), 1, + anon_sym_LT_EQ_GT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8666), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8686), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7083), 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(7085), 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, + [123581] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_STAR, + ACTIONS(8149), 1, + anon_sym_AMP_AMP, + ACTIONS(8151), 1, + anon_sym_AMP, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8720), 1, + anon_sym___attribute, + STATE(3196), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6312), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8718), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [123660] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(8708), 1, + sym_identifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8712), 1, + anon_sym_STAR, + ACTIONS(8714), 1, + anon_sym_AMP_AMP, + ACTIONS(8716), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6488), 1, + sym__field_declarator, + STATE(6652), 1, + sym_operator_name, + STATE(8436), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6712), 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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [123745] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8163), 1, + anon_sym_STAR, + ACTIONS(8165), 1, + anon_sym_AMP_AMP, + ACTIONS(8167), 1, + anon_sym_AMP, + ACTIONS(8702), 1, + anon_sym___asm, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3233), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6414), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8700), 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(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [123824] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8668), 1, + anon_sym_SLASH, + ACTIONS(8670), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8672), 1, + anon_sym_AMP_AMP, + ACTIONS(8676), 1, + anon_sym_CARET, + ACTIONS(8684), 1, + anon_sym_GT_EQ, + ACTIONS(8690), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8692), 1, + anon_sym_or, + ACTIONS(8694), 1, + anon_sym_and, + ACTIONS(8696), 1, + anon_sym_xor, + ACTIONS(8698), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7395), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8666), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8674), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8678), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8686), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8682), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7397), 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, + [123923] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8668), 1, + anon_sym_SLASH, + ACTIONS(8670), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8672), 1, + anon_sym_AMP_AMP, + ACTIONS(8676), 1, + anon_sym_CARET, + ACTIONS(8684), 1, + anon_sym_GT_EQ, + ACTIONS(8690), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8692), 1, + anon_sym_or, + ACTIONS(8694), 1, + anon_sym_and, + ACTIONS(8696), 1, + anon_sym_xor, + ACTIONS(8698), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7449), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8666), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8674), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8678), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8686), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8682), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7451), 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, + [124022] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8760), 1, + sym_identifier, + ACTIONS(8762), 1, + anon_sym_STAR, + ACTIONS(8764), 1, + anon_sym_AMP_AMP, + ACTIONS(8766), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6977), 1, + sym__field_declarator, + STATE(7110), 1, + sym_operator_name, + STATE(8704), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4472), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5245), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6712), 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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [124107] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(7316), 1, + anon_sym___asm, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8163), 1, + anon_sym_STAR, + ACTIONS(8165), 1, + anon_sym_AMP_AMP, + ACTIONS(8167), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3233), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6307), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7314), 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(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [124186] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8668), 1, + anon_sym_SLASH, + ACTIONS(8670), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8672), 1, + anon_sym_AMP_AMP, + ACTIONS(8676), 1, + anon_sym_CARET, + ACTIONS(8684), 1, + anon_sym_GT_EQ, + ACTIONS(8688), 1, + anon_sym_QMARK, + ACTIONS(8690), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8692), 1, + anon_sym_or, + ACTIONS(8694), 1, + anon_sym_and, + ACTIONS(8696), 1, + anon_sym_xor, + ACTIONS(8698), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7453), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8666), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8674), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8678), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8686), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8682), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7455), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [124289] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8668), 1, + anon_sym_SLASH, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8666), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7083), 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(7085), 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, + [124360] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8396), 1, + anon_sym_STAR, + ACTIONS(8398), 1, + anon_sym_AMP_AMP, + ACTIONS(8400), 1, + anon_sym_AMP, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8498), 1, + anon_sym___attribute, + ACTIONS(8704), 1, + sym_auto, + ACTIONS(8706), 1, + anon_sym_decltype, + STATE(3378), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(5278), 1, + sym_decltype_auto, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6637), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4612), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8496), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [124445] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8760), 1, + sym_identifier, + ACTIONS(8762), 1, + anon_sym_STAR, + ACTIONS(8764), 1, + anon_sym_AMP_AMP, + ACTIONS(8766), 1, + anon_sym_AMP, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6958), 1, + sym__field_declarator, + STATE(7110), 1, + sym_operator_name, + STATE(8704), 1, + sym_ms_based_modifier, + ACTIONS(4027), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5206), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4025), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6712), 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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [124530] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + STATE(4215), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6931), 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___attribute, + anon_sym_DOT, + ACTIONS(6933), 29, + 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_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, + [124587] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8668), 1, + anon_sym_SLASH, + ACTIONS(8670), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8672), 1, + anon_sym_AMP_AMP, + ACTIONS(8676), 1, + anon_sym_CARET, + ACTIONS(8684), 1, + anon_sym_GT_EQ, + ACTIONS(8690), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8692), 1, + anon_sym_or, + ACTIONS(8694), 1, + anon_sym_and, + ACTIONS(8696), 1, + anon_sym_xor, + ACTIONS(8698), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7457), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8666), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8674), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8678), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8686), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8682), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7459), 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, + [124686] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6631), 1, + anon_sym___attribute, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8147), 1, + anon_sym_STAR, + ACTIONS(8149), 1, + anon_sym_AMP_AMP, + ACTIONS(8151), 1, + anon_sym_AMP, + ACTIONS(8159), 1, + anon_sym_LBRACK, + STATE(3196), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6314), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [124765] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + STATE(4142), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6916), 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___attribute, + anon_sym_DOT, + ACTIONS(6918), 29, + 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_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, + [124822] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8668), 1, + anon_sym_SLASH, + ACTIONS(8670), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8672), 1, + anon_sym_AMP_AMP, + ACTIONS(8676), 1, + anon_sym_CARET, + ACTIONS(8684), 1, + anon_sym_GT_EQ, + ACTIONS(8690), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8692), 1, + anon_sym_or, + ACTIONS(8694), 1, + anon_sym_and, + ACTIONS(8696), 1, + anon_sym_xor, + ACTIONS(8698), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7465), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8666), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8674), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8678), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8686), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8682), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7467), 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, + [124921] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6547), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8726), 1, + anon_sym_LPAREN2, + ACTIONS(8728), 1, + anon_sym_STAR, + ACTIONS(8730), 1, + anon_sym_AMP_AMP, + ACTIONS(8732), 1, + anon_sym_AMP, + ACTIONS(8736), 1, + sym_ms_restrict_modifier, + STATE(2434), 1, + sym_alignas_qualifier, + STATE(3672), 1, + sym_parameter_list, + STATE(5549), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6953), 1, + sym__abstract_declarator, + ACTIONS(8738), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8740), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8742), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4449), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5216), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6612), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8734), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [125008] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8668), 1, + anon_sym_SLASH, + ACTIONS(8670), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8672), 1, + anon_sym_AMP_AMP, + ACTIONS(8676), 1, + anon_sym_CARET, + ACTIONS(8684), 1, + anon_sym_GT_EQ, + ACTIONS(8690), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8692), 1, + anon_sym_or, + ACTIONS(8694), 1, + anon_sym_and, + ACTIONS(8696), 1, + anon_sym_xor, + ACTIONS(8698), 1, + anon_sym_not_eq, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7441), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8666), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8674), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8678), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8686), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8682), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7443), 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, + [125107] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8774), 1, + anon_sym_COLON, + STATE(1371), 1, + sym_attribute_specifier, + STATE(1645), 1, + sym__enum_base_clause, + STATE(1675), 1, + sym_enumerator_list, + ACTIONS(5504), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5506), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [125171] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4525), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8776), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5168), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5170), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [125225] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(6144), 1, + sym_auto, + ACTIONS(6146), 1, + anon_sym_decltype, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8434), 1, + anon_sym_STAR, + ACTIONS(8436), 1, + anon_sym_AMP_AMP, + ACTIONS(8438), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1422), 1, + sym_decltype_auto, + STATE(3320), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6692), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4713), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8496), 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(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [125307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7512), 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(7514), 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, + [125357] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8778), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(4647), 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___attribute, + anon_sym_DOT, + ACTIONS(4649), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_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, + [125409] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4424), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8780), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5156), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5158), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [125463] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8778), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8782), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(4561), 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___attribute, + anon_sym_DOT, + ACTIONS(4563), 28, + 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, + 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, + [125517] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7510), 1, + sym_literal_suffix, + ACTIONS(3097), 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(3089), 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, + [125569] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4531), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8784), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5194), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5196), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [125623] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4025), 1, + sym_ms_restrict_modifier, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8786), 1, + anon_sym_STAR, + ACTIONS(8788), 1, + anon_sym_AMP_AMP, + ACTIONS(8790), 1, + anon_sym_AMP, + STATE(3505), 1, + sym_parameter_list, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7021), 1, + sym__abstract_declarator, + ACTIONS(8404), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8406), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4509), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5260), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6612), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [125709] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, + anon_sym_LT, + STATE(917), 1, + sym_template_argument_list, + STATE(4682), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5070), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(8792), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5072), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [125769] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4530), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8794), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4817), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4819), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [125823] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4025), 1, + sym_ms_restrict_modifier, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8786), 1, + anon_sym_STAR, + ACTIONS(8788), 1, + anon_sym_AMP_AMP, + ACTIONS(8790), 1, + anon_sym_AMP, + STATE(3505), 1, + sym_parameter_list, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7023), 1, + sym__abstract_declarator, + ACTIONS(8404), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8406), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5262), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6629), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [125909] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4502), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8796), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5174), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5176), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [125963] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4424), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8780), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5152), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5154), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [126017] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + STATE(955), 1, + sym_alignas_qualifier, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8800), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8798), 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, + [126077] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4511), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8802), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5184), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5186), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [126131] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6545), 1, + sym_identifier, + ACTIONS(6553), 1, + sym_primitive_type, + STATE(2434), 1, + sym_alignas_qualifier, + STATE(2562), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8807), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2390), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6549), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4676), 8, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(4674), 9, + 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(8804), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [126197] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4424), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8780), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5180), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5182), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [126251] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6555), 1, + sym_identifier, + ACTIONS(6559), 1, + sym_primitive_type, + STATE(2434), 1, + sym_alignas_qualifier, + STATE(4693), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8815), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4514), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8813), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4723), 8, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(4721), 9, + 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(8810), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [126317] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4530), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8794), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4735), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4737), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [126371] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8818), 1, + anon_sym_COMMA, + 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(8844), 1, + anon_sym_SEMI, + 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(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7087), 1, + aux_sym_field_declaration_repeat1, + STATE(8615), 1, + sym_attribute_specifier, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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, + [126477] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8774), 1, + anon_sym_COLON, + STATE(1392), 1, + sym_attribute_specifier, + STATE(1646), 1, + sym__enum_base_clause, + STATE(1678), 1, + sym_enumerator_list, + ACTIONS(5454), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5456), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [126541] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(6144), 1, + sym_auto, + ACTIONS(6146), 1, + anon_sym_decltype, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8434), 1, + anon_sym_STAR, + ACTIONS(8436), 1, + anon_sym_AMP_AMP, + ACTIONS(8438), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1422), 1, + sym_decltype_auto, + STATE(3320), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6678), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4731), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8504), 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(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [126623] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4424), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8780), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5190), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5192), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [126677] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + STATE(955), 1, + sym_alignas_qualifier, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8522), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8520), 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, + [126737] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8818), 1, + anon_sym_COMMA, + 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, + ACTIONS(8854), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7136), 1, + aux_sym_field_declaration_repeat1, + STATE(8974), 1, + sym_attribute_specifier, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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, + [126843] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8818), 1, + anon_sym_COMMA, + 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, + ACTIONS(8856), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7135), 1, + aux_sym_field_declaration_repeat1, + STATE(9153), 1, + sym_attribute_specifier, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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, + [126949] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4424), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8780), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5160), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5162), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [127003] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6624), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6759), 1, + anon_sym_AMP_AMP, + ACTIONS(6761), 1, + anon_sym_AMP, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(8442), 1, + anon_sym_COMMA, + STATE(3525), 1, + sym_parameter_list, + STATE(6154), 1, + sym__scope_resolution, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6679), 1, + sym__declarator, + STATE(6848), 1, + sym__abstract_declarator, + STATE(8621), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(7017), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [127097] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, + anon_sym_AMP_AMP, + ACTIONS(3311), 1, + anon_sym_AMP, + ACTIONS(4025), 1, + sym_ms_restrict_modifier, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + STATE(3336), 1, + sym_parameter_list, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7026), 1, + sym__abstract_declarator, + ACTIONS(8404), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8406), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4529), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5312), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6612), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [127183] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8858), 1, + anon_sym_LT, + STATE(4682), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4715), 1, + sym_template_argument_list, + ACTIONS(3087), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(8792), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3095), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [127243] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, + anon_sym_AMP_AMP, + ACTIONS(3311), 1, + anon_sym_AMP, + ACTIONS(4025), 1, + sym_ms_restrict_modifier, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + STATE(3336), 1, + sym_parameter_list, + STATE(4347), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7056), 1, + sym__abstract_declarator, + ACTIONS(8404), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8406), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4194), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5310), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6629), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [127329] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4424), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8780), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5143), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5145), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [127383] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4424), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8780), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5164), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5166), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [127437] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7510), 1, + sym_literal_suffix, + ACTIONS(3097), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3089), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_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, + [127488] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6800), 1, + sym_identifier, + ACTIONS(6808), 1, + sym_primitive_type, + STATE(2677), 1, + sym_alignas_qualifier, + STATE(4902), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8865), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4541), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8863), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4721), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(4723), 8, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8860), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [127553] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6275), 1, + anon_sym_LBRACE, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + STATE(4751), 1, + sym_field_declaration_list, + STATE(4970), 1, + sym_attribute_specifier, + STATE(7469), 1, + sym_virtual_specifier, + STATE(8206), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4986), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4988), 27, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [127620] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(4567), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4520), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(8868), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5131), 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(5128), 24, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [127675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4225), 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___attribute, + anon_sym_DOT, + ACTIONS(4227), 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_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, + [127724] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8452), 1, + sym_auto, + ACTIONS(8454), 1, + anon_sym_decltype, + ACTIONS(8508), 1, + anon_sym_STAR, + ACTIONS(8510), 1, + anon_sym_AMP_AMP, + ACTIONS(8512), 1, + anon_sym_AMP, + STATE(2508), 1, + sym_decltype_auto, + STATE(3311), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6751), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4907), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8504), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [127805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4229), 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___attribute, + anon_sym_DOT, + ACTIONS(4231), 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_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, + [127854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4233), 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___attribute, + anon_sym_DOT, + ACTIONS(4235), 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_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, + [127903] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4237), 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___attribute, + anon_sym_DOT, + ACTIONS(4239), 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_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, + [127952] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6810), 1, + sym_identifier, + ACTIONS(6814), 1, + sym_primitive_type, + STATE(2677), 1, + sym_alignas_qualifier, + STATE(2753), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8874), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2565), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6812), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4674), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(4676), 8, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8871), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [128017] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8452), 1, + sym_auto, + ACTIONS(8454), 1, + anon_sym_decltype, + ACTIONS(8508), 1, + anon_sym_STAR, + ACTIONS(8510), 1, + anon_sym_AMP_AMP, + ACTIONS(8512), 1, + anon_sym_AMP, + STATE(2508), 1, + sym_decltype_auto, + STATE(3311), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6787), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4754), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8496), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [128098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1875), 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___attribute, + anon_sym_DOT, + ACTIONS(1873), 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_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, + [128147] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(6624), 1, + anon_sym_LBRACK, + ACTIONS(6665), 1, + anon_sym_STAR, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_AMP, + STATE(3560), 1, + sym_parameter_list, + STATE(6082), 1, + sym__scope_resolution, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6626), 1, + sym__declarator, + STATE(6990), 1, + sym__abstract_declarator, + STATE(8558), 1, + sym_ms_based_modifier, + ACTIONS(8549), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8551), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [128238] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 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___attribute, + anon_sym_DOT, + ACTIONS(1877), 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_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, + [128287] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8385), 1, + anon_sym_STAR, + ACTIONS(8387), 1, + anon_sym_AMP_AMP, + ACTIONS(8389), 1, + anon_sym_AMP, + ACTIONS(8720), 1, + anon_sym___attribute, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3354), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6570), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8718), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [128364] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(6631), 1, + anon_sym___attribute, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8385), 1, + anon_sym_STAR, + ACTIONS(8387), 1, + anon_sym_AMP_AMP, + ACTIONS(8389), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3354), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6572), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [128441] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8385), 1, + anon_sym_STAR, + ACTIONS(8387), 1, + anon_sym_AMP_AMP, + ACTIONS(8389), 1, + anon_sym_AMP, + ACTIONS(8702), 1, + anon_sym___attribute, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3354), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6574), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8700), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [128518] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(7316), 1, + anon_sym___attribute, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8385), 1, + anon_sym_STAR, + ACTIONS(8387), 1, + anon_sym_AMP_AMP, + ACTIONS(8389), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3354), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6575), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7314), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [128595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4698), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4700), 36, + 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_RBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [128644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4217), 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___attribute, + anon_sym_DOT, + ACTIONS(4219), 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_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, + [128693] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7512), 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(7514), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_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, + [128742] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 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___attribute, + anon_sym_DOT, + ACTIONS(4223), 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_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, + [128791] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8482), 1, + anon_sym_STAR, + ACTIONS(8484), 1, + anon_sym_AMP_AMP, + ACTIONS(8486), 1, + anon_sym_AMP, + ACTIONS(8704), 1, + sym_auto, + ACTIONS(8706), 1, + anon_sym_decltype, + STATE(3347), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(5278), 1, + sym_decltype_auto, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6836), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4905), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8496), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [128872] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4247), 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___attribute, + anon_sym_DOT, + ACTIONS(4249), 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_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, + [128921] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8877), 1, + anon_sym_AMP_AMP, + ACTIONS(8879), 1, + anon_sym_and, + ACTIONS(4647), 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_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(4649), 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, + anon_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, + [128974] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(6624), 1, + anon_sym_LBRACK, + ACTIONS(6705), 1, + anon_sym_STAR, + ACTIONS(6707), 1, + anon_sym_AMP_AMP, + ACTIONS(6709), 1, + anon_sym_AMP, + STATE(3525), 1, + sym_parameter_list, + STATE(6082), 1, + sym__scope_resolution, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6626), 1, + sym__declarator, + STATE(6987), 1, + sym__abstract_declarator, + STATE(8558), 1, + sym_ms_based_modifier, + ACTIONS(8549), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8551), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [129065] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4251), 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___attribute, + anon_sym_DOT, + ACTIONS(4253), 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_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, + [129114] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8858), 1, + anon_sym_LT, + STATE(4715), 1, + sym_template_argument_list, + ACTIONS(3272), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3279), 34, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [129169] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8482), 1, + anon_sym_STAR, + ACTIONS(8484), 1, + anon_sym_AMP_AMP, + ACTIONS(8486), 1, + anon_sym_AMP, + ACTIONS(8704), 1, + sym_auto, + ACTIONS(8706), 1, + anon_sym_decltype, + STATE(3347), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(5278), 1, + sym_decltype_auto, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6758), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4888), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8504), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [129250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4694), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4696), 36, + 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_RBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [129299] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 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___attribute, + anon_sym_DOT, + ACTIONS(4257), 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_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, + [129348] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8858), 1, + anon_sym_LT, + STATE(4715), 1, + sym_template_argument_list, + ACTIONS(4529), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3113), 34, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [129403] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(7334), 1, + sym_auto, + ACTIONS(7336), 1, + anon_sym_decltype, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8498), 1, + anon_sym___attribute, + ACTIONS(8514), 1, + anon_sym_STAR, + ACTIONS(8516), 1, + anon_sym_AMP_AMP, + ACTIONS(8518), 1, + anon_sym_AMP, + STATE(3043), 1, + sym_decltype_auto, + STATE(3646), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6729), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4784), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8496), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [129486] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(7334), 1, + sym_auto, + ACTIONS(7336), 1, + anon_sym_decltype, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8506), 1, + anon_sym___attribute, + ACTIONS(8514), 1, + anon_sym_STAR, + ACTIONS(8516), 1, + anon_sym_AMP_AMP, + ACTIONS(8518), 1, + anon_sym_AMP, + STATE(3043), 1, + sym_decltype_auto, + STATE(3646), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6737), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4740), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8504), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [129569] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8452), 1, + sym_auto, + ACTIONS(8454), 1, + anon_sym_decltype, + ACTIONS(8490), 1, + anon_sym_STAR, + ACTIONS(8492), 1, + anon_sym_AMP_AMP, + ACTIONS(8494), 1, + anon_sym_AMP, + ACTIONS(8498), 1, + anon_sym___attribute, + STATE(2508), 1, + sym_decltype_auto, + STATE(3652), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6759), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4743), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8496), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [129652] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4567), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8868), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4522), 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(4520), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [129705] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8452), 1, + sym_auto, + ACTIONS(8454), 1, + anon_sym_decltype, + ACTIONS(8490), 1, + anon_sym_STAR, + ACTIONS(8492), 1, + anon_sym_AMP_AMP, + ACTIONS(8494), 1, + anon_sym_AMP, + ACTIONS(8506), 1, + anon_sym___attribute, + STATE(2508), 1, + sym_decltype_auto, + STATE(3652), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6732), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4914), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8504), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [129788] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(6144), 1, + sym_auto, + ACTIONS(6146), 1, + anon_sym_decltype, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8506), 1, + anon_sym___attribute, + ACTIONS(8524), 1, + anon_sym_STAR, + ACTIONS(8526), 1, + anon_sym_AMP_AMP, + ACTIONS(8528), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1422), 1, + sym_decltype_auto, + STATE(3799), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6791), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4795), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8504), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [129871] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(6144), 1, + sym_auto, + ACTIONS(6146), 1, + anon_sym_decltype, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8498), 1, + anon_sym___attribute, + ACTIONS(8524), 1, + anon_sym_STAR, + ACTIONS(8526), 1, + anon_sym_AMP_AMP, + ACTIONS(8528), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1422), 1, + sym_decltype_auto, + STATE(3799), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6797), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4798), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8496), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [129954] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8877), 1, + anon_sym_AMP_AMP, + ACTIONS(8879), 1, + anon_sym_and, + ACTIONS(8881), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8883), 1, + anon_sym_or, + ACTIONS(4561), 15, + 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_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(4563), 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_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, + [130011] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7067), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(7069), 36, + 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_RBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [130060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 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___attribute, + anon_sym_DOT, + ACTIONS(4183), 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_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, + [130109] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8889), 1, + anon_sym___attribute__, + ACTIONS(8892), 1, + anon_sym___attribute, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(8887), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(8885), 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_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [130164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4209), 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___attribute, + anon_sym_DOT, + ACTIONS(4211), 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_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, + [130213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 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___attribute, + anon_sym_DOT, + ACTIONS(4215), 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_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, + [130262] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 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___attribute, + anon_sym_DOT, + ACTIONS(4215), 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_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, + [130311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 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___attribute, + anon_sym_DOT, + ACTIONS(4215), 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_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, + [130360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4243), 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___attribute, + anon_sym_DOT, + ACTIONS(4245), 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_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, + [130409] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 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(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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(7083), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym___attribute, + 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(7085), 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, + [130487] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(4944), 1, + sym_field_declaration_list, + STATE(7461), 1, + sym_virtual_specifier, + STATE(8409), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5134), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5136), 28, + 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_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [130547] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8414), 1, + anon_sym_STAR, + ACTIONS(8416), 1, + anon_sym_AMP_AMP, + ACTIONS(8418), 1, + anon_sym_AMP, + STATE(3226), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6670), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7314), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [130621] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, + anon_sym_LT, + STATE(917), 1, + sym_template_argument_list, + STATE(2546), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5070), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + anon_sym_COLON, + ACTIONS(6243), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5072), 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_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [130679] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + [130767] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(5081), 1, + sym_field_declaration_list, + STATE(7231), 1, + sym_virtual_specifier, + STATE(8258), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5120), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5122), 28, + 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_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [130827] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(7334), 1, + sym_auto, + ACTIONS(7336), 1, + anon_sym_decltype, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8623), 1, + anon_sym_STAR, + ACTIONS(8625), 1, + anon_sym_AMP_AMP, + ACTIONS(8627), 1, + anon_sym_AMP, + STATE(3043), 1, + sym_decltype_auto, + STATE(3414), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6876), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5009), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8496), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [130907] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7463), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [131001] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(5100), 1, + sym_field_declaration_list, + STATE(7233), 1, + sym_virtual_specifier, + STATE(8261), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5116), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5118), 28, + 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_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [131061] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8414), 1, + anon_sym_STAR, + ACTIONS(8416), 1, + anon_sym_AMP_AMP, + ACTIONS(8418), 1, + anon_sym_AMP, + STATE(3226), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6634), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8718), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [131135] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(7334), 1, + sym_auto, + ACTIONS(7336), 1, + anon_sym_decltype, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8623), 1, + anon_sym_STAR, + ACTIONS(8625), 1, + anon_sym_AMP_AMP, + ACTIONS(8627), 1, + anon_sym_AMP, + STATE(3043), 1, + sym_decltype_auto, + STATE(3414), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6873), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5007), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8504), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [131215] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8927), 1, + anon_sym_LBRACE, + ACTIONS(8929), 1, + anon_sym_COLON, + STATE(4652), 1, + sym__enum_base_clause, + STATE(4859), 1, + sym_enumerator_list, + STATE(4933), 1, + sym_attribute_specifier, + ACTIONS(5504), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5506), 29, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [131277] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7083), 1, + anon_sym_PIPE, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8921), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 13, + 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, + [131359] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 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(1903), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [131407] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8927), 1, + anon_sym_LBRACE, + ACTIONS(8929), 1, + anon_sym_COLON, + STATE(4719), 1, + sym__enum_base_clause, + STATE(4825), 1, + sym_enumerator_list, + STATE(5037), 1, + sym_attribute_specifier, + ACTIONS(5454), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5456), 29, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [131469] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + STATE(4324), 1, + sym_alignas_qualifier, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8800), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8798), 18, + anon_sym_COMMA, + 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, + [131527] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7083), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 14, + 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, + [131605] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [131691] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4271), 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(4269), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [131739] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(8931), 1, + anon_sym_COMMA, + ACTIONS(8933), 1, + anon_sym_SEMI, + ACTIONS(8935), 1, + anon_sym_RBRACE, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7877), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131839] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 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, + ACTIONS(8939), 1, + anon_sym___attribute, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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(8937), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [131935] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7173), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [132029] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7455), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [132123] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7395), 1, + anon_sym___attribute, + 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(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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(7397), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [132215] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7465), 1, + anon_sym___attribute, + 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(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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(7467), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [132307] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7443), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [132397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(1903), 27, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [132445] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7467), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [132535] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7083), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 17, + 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_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [132611] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7083), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 18, + 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_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [132683] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8396), 1, + anon_sym_STAR, + ACTIONS(8398), 1, + anon_sym_AMP_AMP, + ACTIONS(8400), 1, + anon_sym_AMP, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8720), 1, + anon_sym___attribute, + STATE(3378), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6636), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8718), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [132759] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(6631), 1, + anon_sym___attribute, + ACTIONS(8396), 1, + anon_sym_STAR, + ACTIONS(8398), 1, + anon_sym_AMP_AMP, + ACTIONS(8400), 1, + anon_sym_AMP, + ACTIONS(8408), 1, + anon_sym_LBRACK, + STATE(3378), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6642), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [132835] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8396), 1, + anon_sym_STAR, + ACTIONS(8398), 1, + anon_sym_AMP_AMP, + ACTIONS(8400), 1, + anon_sym_AMP, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8702), 1, + anon_sym___attribute, + STATE(3378), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6638), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8700), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [132911] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(7316), 1, + anon_sym___attribute, + ACTIONS(8396), 1, + anon_sym_STAR, + ACTIONS(8398), 1, + anon_sym_AMP_AMP, + ACTIONS(8400), 1, + anon_sym_AMP, + ACTIONS(8408), 1, + anon_sym_LBRACK, + STATE(3378), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6646), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7314), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [132987] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4492), 35, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [133035] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7459), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [133125] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + STATE(4324), 1, + sym_alignas_qualifier, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8522), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8520), 18, + anon_sym_COMMA, + 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, + [133183] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8414), 1, + anon_sym_STAR, + ACTIONS(8416), 1, + anon_sym_AMP_AMP, + ACTIONS(8418), 1, + anon_sym_AMP, + STATE(3226), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6649), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8700), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [133257] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8941), 1, + anon_sym_LT, + STATE(2502), 1, + sym_template_argument_list, + STATE(2546), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3087), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + anon_sym_COLON, + ACTIONS(6243), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3095), 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_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [133315] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6624), 1, + anon_sym_LBRACK, + ACTIONS(6757), 1, + anon_sym_STAR, + ACTIONS(6759), 1, + anon_sym_AMP_AMP, + ACTIONS(6761), 1, + anon_sym_AMP, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(8549), 1, + anon_sym_COMMA, + STATE(3525), 1, + sym_parameter_list, + STATE(6154), 1, + sym__scope_resolution, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6869), 1, + sym__declarator, + STATE(6987), 1, + sym__abstract_declarator, + STATE(8621), 1, + sym_ms_based_modifier, + ACTIONS(8551), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [133405] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 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, + ACTIONS(8945), 1, + anon_sym___attribute, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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(8943), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [133501] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7083), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [133567] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7083), 1, + anon_sym_PIPE, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8921), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [133651] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(6144), 1, + sym_auto, + ACTIONS(6146), 1, + anon_sym_decltype, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8565), 1, + anon_sym_STAR, + ACTIONS(8567), 1, + anon_sym_AMP_AMP, + ACTIONS(8569), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1422), 1, + sym_decltype_auto, + STATE(3582), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6856), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5071), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8504), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [133731] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7441), 1, + anon_sym___attribute, + 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(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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(7443), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [133823] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(6144), 1, + sym_auto, + ACTIONS(6146), 1, + anon_sym_decltype, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8565), 1, + anon_sym_STAR, + ACTIONS(8567), 1, + anon_sym_AMP_AMP, + ACTIONS(8569), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1422), 1, + sym_decltype_auto, + STATE(3582), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6860), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5076), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8496), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [133903] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7171), 1, + anon_sym___attribute, + ACTIONS(8662), 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(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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(7173), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [133999] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6547), 1, + anon_sym_const, + ACTIONS(6612), 1, + anon_sym_COLON, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8726), 1, + anon_sym_LPAREN2, + ACTIONS(8736), 1, + sym_ms_restrict_modifier, + ACTIONS(8947), 1, + anon_sym_STAR, + ACTIONS(8949), 1, + anon_sym_AMP_AMP, + ACTIONS(8951), 1, + anon_sym_AMP, + STATE(2434), 1, + sym_alignas_qualifier, + STATE(3668), 1, + sym_parameter_list, + STATE(5549), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7156), 1, + sym__abstract_declarator, + ACTIONS(8738), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8740), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8742), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4643), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5360), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8734), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [134083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4271), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4269), 27, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [134131] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8824), 1, + anon_sym_SLASH, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8822), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7083), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(7085), 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, + anon_sym_GT_GT, + 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, + [134197] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7083), 1, + anon_sym___attribute, + 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(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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(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(7085), 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, + [134287] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7083), 1, + anon_sym___attribute, + 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(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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(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(7085), 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, + [134375] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + 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(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7083), 2, + anon_sym_PIPE, + anon_sym___attribute, + ACTIONS(8367), 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(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(7085), 10, + 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, + anon_sym_bitor, + [134459] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + 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(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7083), 2, + anon_sym_PIPE, + anon_sym___attribute, + ACTIONS(8367), 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, + ACTIONS(7085), 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, + [134541] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7451), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [134631] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 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(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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(7083), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym___attribute, + ACTIONS(8838), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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_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, + [134707] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8824), 1, + anon_sym_SLASH, + ACTIONS(8848), 1, + anon_sym_LT_EQ_GT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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(7083), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(7085), 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, + [134779] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8824), 1, + anon_sym_SLASH, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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(7083), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(7085), 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, + anon_sym_GT_GT, + 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, + [134847] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8824), 1, + anon_sym_SLASH, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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(7083), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(7085), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_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, + [134917] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7461), 1, + anon_sym___attribute, + ACTIONS(8662), 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(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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(7463), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [135013] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8414), 1, + anon_sym_STAR, + ACTIONS(8416), 1, + anon_sym_AMP_AMP, + ACTIONS(8418), 1, + anon_sym_AMP, + STATE(3226), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6644), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 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(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [135087] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7397), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [135177] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7083), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 19, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [135247] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6547), 1, + anon_sym_const, + ACTIONS(6629), 1, + anon_sym_COLON, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8726), 1, + anon_sym_LPAREN2, + ACTIONS(8736), 1, + sym_ms_restrict_modifier, + ACTIONS(8947), 1, + anon_sym_STAR, + ACTIONS(8949), 1, + anon_sym_AMP_AMP, + ACTIONS(8951), 1, + anon_sym_AMP, + STATE(2434), 1, + sym_alignas_qualifier, + STATE(3668), 1, + sym_parameter_list, + STATE(5549), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7154), 1, + sym__abstract_declarator, + ACTIONS(8738), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8740), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8742), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5376), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5393), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8734), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [135331] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7449), 1, + anon_sym___attribute, + 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(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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(7451), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [135423] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7453), 1, + anon_sym___attribute, + ACTIONS(8662), 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(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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(7455), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [135519] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(5084), 1, + sym_field_declaration_list, + STATE(7456), 1, + sym_virtual_specifier, + STATE(8194), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5124), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5126), 28, + 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_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [135579] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7457), 1, + anon_sym___attribute, + 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(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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(7459), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [135671] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7083), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [135739] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(8935), 1, + anon_sym_RBRACE, + ACTIONS(8953), 1, + anon_sym_COMMA, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7877), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135836] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(8955), 1, + anon_sym_COMMA, + ACTIONS(8957), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7765), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135933] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(8722), 1, + anon_sym_LPAREN2, + STATE(5170), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6935), 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(6937), 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, + [135986] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8927), 1, + anon_sym_LBRACE, + STATE(4853), 1, + sym_enumerator_list, + STATE(5061), 1, + sym_attribute_specifier, + ACTIONS(5246), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5248), 30, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [136043] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4541), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4543), 34, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [136092] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(8961), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7575), 1, + aux_sym_argument_list_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136189] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(8963), 1, + anon_sym_COMMA, + ACTIONS(8965), 1, + anon_sym_RBRACE, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7577), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136286] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + ACTIONS(9005), 1, + anon_sym_GT2, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + STATE(7588), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [136383] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4531), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4533), 34, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [136432] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4531), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4533), 34, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [136481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4537), 35, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [136528] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(8955), 1, + anon_sym_COMMA, + ACTIONS(9007), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7631), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136625] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(8722), 1, + anon_sym_LPAREN2, + STATE(5150), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6916), 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(6918), 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, + [136678] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9009), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136773] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(9011), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7726), 1, + aux_sym_argument_list_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136870] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9013), 1, + anon_sym_COMMA, + ACTIONS(9015), 1, + anon_sym_RBRACE, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7728), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136967] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + ACTIONS(9017), 1, + anon_sym_GT2, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + STATE(7733), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [137064] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(8933), 1, + anon_sym_SEMI, + ACTIONS(9019), 1, + anon_sym_COMMA, + ACTIONS(9022), 1, + anon_sym_RBRACE, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137161] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9009), 1, + anon_sym_SEMI, + ACTIONS(9024), 1, + anon_sym_COMMA, + ACTIONS(9027), 1, + anon_sym_RBRACE, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137258] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(8955), 1, + anon_sym_COMMA, + ACTIONS(9029), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7761), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137355] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(9031), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7873), 1, + aux_sym_argument_list_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137452] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9033), 1, + anon_sym_COMMA, + ACTIONS(9035), 1, + anon_sym_RBRACE, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7876), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137549] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9037), 1, + anon_sym___attribute__, + ACTIONS(9040), 1, + anon_sym___attribute, + STATE(4671), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(8887), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(8885), 31, + anon_sym_COMMA, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [137602] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + ACTIONS(9043), 1, + anon_sym_GT2, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [137699] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(9045), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7844), 1, + aux_sym_argument_list_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137796] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + ACTIONS(9047), 1, + anon_sym_GT2, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + STATE(7850), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [137893] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8434), 1, + anon_sym_STAR, + ACTIONS(8436), 1, + anon_sym_AMP_AMP, + ACTIONS(8438), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3320), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6694), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 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(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [137966] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9049), 1, + anon_sym_RPAREN, + ACTIONS(9051), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138063] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + ACTIONS(9053), 1, + anon_sym_GT2, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + STATE(7927), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [138160] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, + anon_sym_LT, + STATE(917), 1, + sym_template_argument_list, + STATE(2760), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5070), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(6337), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5072), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [138217] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + ACTIONS(9055), 1, + anon_sym_GT2, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + STATE(7546), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [138314] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4681), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4735), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(9057), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4737), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [138365] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4567), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5143), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(9059), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5145), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [138416] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4567), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5190), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(9059), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5192), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [138467] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4688), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5184), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(9061), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5186), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [138518] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4691), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5168), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(9063), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5170), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [138569] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + ACTIONS(9065), 1, + anon_sym_GT2, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + STATE(7572), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [138666] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + ACTIONS(9067), 1, + anon_sym_GT2, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + STATE(7580), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [138763] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + ACTIONS(9069), 1, + anon_sym_GT2, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + STATE(7590), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [138860] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4567), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5152), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(9059), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5154), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [138911] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + ACTIONS(9071), 1, + anon_sym_GT2, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + STATE(7597), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [139008] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6315), 1, + anon_sym_LBRACE, + ACTIONS(9073), 1, + anon_sym___attribute__, + ACTIONS(9075), 1, + anon_sym___attribute, + STATE(5243), 1, + sym_field_declaration_list, + STATE(5305), 1, + sym_attribute_specifier, + STATE(7414), 1, + sym_virtual_specifier, + STATE(8098), 1, + sym_base_class_clause, + ACTIONS(4986), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4988), 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_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [139073] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4567), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5160), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(9059), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5162), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [139124] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4699), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5194), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(9077), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5196), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [139175] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2413), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4520), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(6488), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5131), 9, + 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(5128), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [139228] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + ACTIONS(9079), 1, + anon_sym_GT2, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + STATE(7609), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [139325] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4567), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5180), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(9059), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5182), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [139376] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4681), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4817), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(9057), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4819), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [139427] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + ACTIONS(9081), 1, + anon_sym_GT2, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + STATE(7616), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [139524] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + ACTIONS(9083), 1, + anon_sym_GT2, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + STATE(7906), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [139621] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4567), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5164), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(9059), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5166), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [139672] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + ACTIONS(9085), 1, + anon_sym_GT2, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + STATE(7625), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [139769] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4567), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5156), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(9059), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5158), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [139820] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9087), 1, + anon_sym_COMMA, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9113), 1, + anon_sym_RBRACK, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7892), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139917] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + ACTIONS(9123), 1, + anon_sym_GT2, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + STATE(7634), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [140014] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(8722), 1, + anon_sym_LPAREN2, + STATE(5183), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6931), 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(6933), 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, + [140067] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9127), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9125), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3256), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3258), 35, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [140209] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3254), 35, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [140256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3248), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3250), 35, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [140303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3244), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3246), 35, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [140350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3264), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3266), 35, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [140397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3268), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3270), 35, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [140444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3260), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3262), 35, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [140491] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8434), 1, + anon_sym_STAR, + ACTIONS(8436), 1, + anon_sym_AMP_AMP, + ACTIONS(8438), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3320), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6698), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8700), 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(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [140564] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(8955), 1, + anon_sym_COMMA, + ACTIONS(9129), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7689), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3289), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3296), 35, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [140708] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9087), 1, + anon_sym_COMMA, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + ACTIONS(9131), 1, + anon_sym_RBRACK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7903), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140805] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(9133), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7818), 1, + aux_sym_argument_list_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140902] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(8955), 1, + anon_sym_COMMA, + ACTIONS(9135), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7923), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140999] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8927), 1, + anon_sym_LBRACE, + STATE(4788), 1, + sym_enumerator_list, + STATE(5060), 1, + sym_attribute_specifier, + ACTIONS(5266), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5268), 30, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [141056] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2140), 1, + sym__fold_operator, + ACTIONS(9139), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(9137), 25, + 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_LT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_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, + [141105] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7510), 1, + sym_literal_suffix, + ACTIONS(3097), 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___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3089), 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, + [141154] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8500), 1, + sym_auto, + ACTIONS(8502), 1, + anon_sym_decltype, + ACTIONS(8629), 1, + anon_sym_STAR, + ACTIONS(8631), 1, + anon_sym_AMP_AMP, + ACTIONS(8633), 1, + anon_sym_AMP, + STATE(3798), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(4963), 1, + sym_decltype_auto, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6934), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5158), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8504), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [141233] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8500), 1, + sym_auto, + ACTIONS(8502), 1, + anon_sym_decltype, + ACTIONS(8629), 1, + anon_sym_STAR, + ACTIONS(8631), 1, + anon_sym_AMP_AMP, + ACTIONS(8633), 1, + anon_sym_AMP, + STATE(3798), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(4963), 1, + sym_decltype_auto, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6938), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5161), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8496), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [141312] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(9141), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7612), 1, + aux_sym_argument_list_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141409] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9143), 1, + anon_sym_COMMA, + ACTIONS(9145), 1, + anon_sym_RBRACE, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7621), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141506] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + ACTIONS(9147), 1, + anon_sym_GT2, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + STATE(7652), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [141603] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(8722), 1, + anon_sym_LPAREN2, + STATE(5201), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6941), 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(6943), 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, + [141656] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9087), 1, + anon_sym_COMMA, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + ACTIONS(9149), 1, + anon_sym_RBRACK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7663), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141753] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(9151), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7644), 1, + aux_sym_argument_list_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141850] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9153), 1, + anon_sym_COMMA, + ACTIONS(9155), 1, + anon_sym_RBRACE, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7649), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141947] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8434), 1, + anon_sym_STAR, + ACTIONS(8436), 1, + anon_sym_AMP_AMP, + ACTIONS(8438), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3320), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6691), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8718), 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(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [142020] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + ACTIONS(9157), 1, + anon_sym_GT2, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + STATE(7678), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [142117] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8434), 1, + anon_sym_STAR, + ACTIONS(8436), 1, + anon_sym_AMP_AMP, + ACTIONS(8438), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3320), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6699), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7314), 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(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [142190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7512), 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___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(7514), 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, + [142237] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(8955), 1, + anon_sym_COMMA, + ACTIONS(9159), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + STATE(7806), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142334] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4701), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5174), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(9161), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5176), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [142385] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6785), 1, + anon_sym_COMMA, + ACTIONS(6816), 1, + anon_sym_RPAREN, + ACTIONS(7510), 1, + sym_literal_suffix, + STATE(7921), 1, + aux_sym__call_macro_with_decl_first_arg_repeat1, + ACTIONS(3097), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3089), 19, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [142439] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8482), 1, + anon_sym_STAR, + ACTIONS(8484), 1, + anon_sym_AMP_AMP, + ACTIONS(8486), 1, + anon_sym_AMP, + STATE(3347), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6777), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7314), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [142511] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9073), 1, + anon_sym___attribute__, + ACTIONS(9075), 1, + anon_sym___attribute, + ACTIONS(9163), 1, + anon_sym_LBRACE, + ACTIONS(9165), 1, + anon_sym_COLON, + STATE(5168), 1, + sym__enum_base_clause, + STATE(5222), 1, + sym_enumerator_list, + STATE(5321), 1, + sym_attribute_specifier, + ACTIONS(5504), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5506), 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_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [142571] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8514), 1, + anon_sym_STAR, + ACTIONS(8516), 1, + anon_sym_AMP_AMP, + ACTIONS(8518), 1, + anon_sym_AMP, + ACTIONS(8720), 1, + anon_sym___attribute, + STATE(3646), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6841), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8718), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [142645] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9167), 1, + anon_sym_COMMA, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9193), 1, + anon_sym_COLON, + ACTIONS(9195), 1, + anon_sym_QMARK, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142739] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(6631), 1, + anon_sym___attribute, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8490), 1, + anon_sym_STAR, + ACTIONS(8492), 1, + anon_sym_AMP_AMP, + ACTIONS(8494), 1, + anon_sym_AMP, + STATE(3652), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6837), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [142813] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8490), 1, + anon_sym_STAR, + ACTIONS(8492), 1, + anon_sym_AMP_AMP, + ACTIONS(8494), 1, + anon_sym_AMP, + ACTIONS(8702), 1, + anon_sym___attribute, + STATE(3652), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6775), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8700), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [142887] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(8933), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142981] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(7316), 1, + anon_sym___attribute, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8490), 1, + anon_sym_STAR, + ACTIONS(8492), 1, + anon_sym_AMP_AMP, + ACTIONS(8494), 1, + anon_sym_AMP, + STATE(3652), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6838), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7314), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [143055] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(9203), 1, + anon_sym_LT, + STATE(2950), 1, + sym_template_argument_list, + ACTIONS(3272), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3279), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [143107] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7459), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [143195] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9205), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143287] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7083), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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_QMARK, + anon_sym_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, + [143357] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9207), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143449] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + STATE(5104), 1, + sym_attribute_specifier, + ACTIONS(5516), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5518), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [143501] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9167), 1, + anon_sym_COMMA, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 1, + anon_sym_QMARK, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + ACTIONS(9209), 1, + anon_sym_COLON, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143595] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8508), 1, + anon_sym_STAR, + ACTIONS(8510), 1, + anon_sym_AMP_AMP, + ACTIONS(8512), 1, + anon_sym_AMP, + STATE(3311), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6753), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [143667] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8508), 1, + anon_sym_STAR, + ACTIONS(8510), 1, + anon_sym_AMP_AMP, + ACTIONS(8512), 1, + anon_sym_AMP, + STATE(3311), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6808), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8700), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [143739] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9207), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143831] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7173), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [143923] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + STATE(4966), 1, + sym_attribute_specifier, + ACTIONS(5450), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5452), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [143975] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9211), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144069] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9213), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144163] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9215), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144257] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + STATE(5032), 1, + sym_attribute_specifier, + ACTIONS(5476), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5478), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [144309] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + STATE(5106), 1, + sym_attribute_specifier, + ACTIONS(5522), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5524), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [144361] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9217), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144453] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7443), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [144541] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9217), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144633] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 1, + anon_sym_QMARK, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7173), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144725] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9219), 1, + anon_sym_COMMA, + ACTIONS(9221), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144819] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9223), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144913] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9225), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145007] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7083), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [145071] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + [145157] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [145241] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7083), 1, + anon_sym_PIPE, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9201), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [145323] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7083), 1, + anon_sym_PIPE, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9201), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [145403] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7083), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [145479] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7083), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [145553] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7083), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [145623] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7083), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [145689] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9167), 1, + anon_sym_COMMA, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 1, + anon_sym_QMARK, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + ACTIONS(9227), 1, + anon_sym_COLON, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145783] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7083), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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_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, + [145851] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9167), 1, + anon_sym_COMMA, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 1, + anon_sym_QMARK, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + ACTIONS(9229), 1, + anon_sym_COLON, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145945] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9009), 1, + anon_sym_COLON, + ACTIONS(9167), 1, + anon_sym_COMMA, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 1, + anon_sym_QMARK, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146039] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(6631), 1, + anon_sym___attribute, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8514), 1, + anon_sym_STAR, + ACTIONS(8516), 1, + anon_sym_AMP_AMP, + ACTIONS(8518), 1, + anon_sym_AMP, + STATE(3646), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6806), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [146113] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8514), 1, + anon_sym_STAR, + ACTIONS(8516), 1, + anon_sym_AMP_AMP, + ACTIONS(8518), 1, + anon_sym_AMP, + ACTIONS(8702), 1, + anon_sym___attribute, + STATE(3646), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6826), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8700), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [146187] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7451), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [146275] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + STATE(4997), 1, + sym_attribute_specifier, + ACTIONS(5484), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5486), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [146327] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 1, + anon_sym_QMARK, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7455), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146419] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + STATE(4978), 1, + sym_attribute_specifier, + ACTIONS(5494), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5496), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [146471] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9167), 1, + anon_sym_COMMA, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 1, + anon_sym_QMARK, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + ACTIONS(9231), 1, + anon_sym_COLON, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146565] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7459), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [146653] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 1, + anon_sym_QMARK, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7463), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4531), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4533), 35, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [146791] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9233), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146883] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(7316), 1, + anon_sym___attribute, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8514), 1, + anon_sym_STAR, + ACTIONS(8516), 1, + anon_sym_AMP_AMP, + ACTIONS(8518), 1, + anon_sym_AMP, + STATE(3646), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6810), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7314), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [146957] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8524), 1, + anon_sym_STAR, + ACTIONS(8526), 1, + anon_sym_AMP_AMP, + ACTIONS(8528), 1, + anon_sym_AMP, + ACTIONS(8720), 1, + anon_sym___attribute, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3799), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6796), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8718), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [147031] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8941), 1, + anon_sym_LT, + STATE(2502), 1, + sym_template_argument_list, + ACTIONS(3272), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3279), 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_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [147083] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(6631), 1, + anon_sym___attribute, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8524), 1, + anon_sym_STAR, + ACTIONS(8526), 1, + anon_sym_AMP_AMP, + ACTIONS(8528), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3799), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6801), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [147157] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8524), 1, + anon_sym_STAR, + ACTIONS(8526), 1, + anon_sym_AMP_AMP, + ACTIONS(8528), 1, + anon_sym_AMP, + ACTIONS(8702), 1, + anon_sym___attribute, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3799), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6802), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8700), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [147231] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(7316), 1, + anon_sym___attribute, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8524), 1, + anon_sym_STAR, + ACTIONS(8526), 1, + anon_sym_AMP_AMP, + ACTIONS(8528), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3799), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6804), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7314), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [147305] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7089), 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(7091), 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, + [147365] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8508), 1, + anon_sym_STAR, + ACTIONS(8510), 1, + anon_sym_AMP_AMP, + ACTIONS(8512), 1, + anon_sym_AMP, + STATE(3311), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6818), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7314), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [147437] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9235), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147531] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9237), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147625] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9239), 1, + anon_sym_COMMA, + ACTIONS(9241), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147719] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3296), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3298), 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(3291), 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, + [147767] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9167), 1, + anon_sym_COMMA, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 1, + anon_sym_QMARK, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + ACTIONS(9243), 1, + anon_sym_COLON, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147861] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9217), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [147953] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9217), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [148045] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8758), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148137] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9245), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148231] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(5283), 1, + sym_field_declaration_list, + STATE(7439), 1, + sym_virtual_specifier, + STATE(8189), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5120), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5122), 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_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [148289] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(5264), 1, + sym_field_declaration_list, + STATE(7407), 1, + sym_virtual_specifier, + STATE(8062), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5124), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5126), 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_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [148347] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9247), 1, + anon_sym_COMMA, + ACTIONS(9249), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148441] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(5275), 1, + sym_field_declaration_list, + STATE(7409), 1, + sym_virtual_specifier, + STATE(8070), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5134), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5136), 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_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [148499] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7017), 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(7019), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_GT2, + [148557] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7397), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [148645] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(5313), 1, + sym_field_declaration_list, + STATE(7441), 1, + sym_virtual_specifier, + STATE(8193), 1, + sym_base_class_clause, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5116), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5118), 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_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [148703] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9251), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148797] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9253), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [148889] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9255), 1, + anon_sym_COMMA, + ACTIONS(9257), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148983] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9259), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149075] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8131), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149167] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9261), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149261] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9263), 1, + anon_sym_COMMA, + ACTIONS(9265), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149355] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + STATE(5053), 1, + sym_attribute_specifier, + ACTIONS(5446), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5448), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [149407] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9267), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149501] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7027), 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(7029), 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, + [149561] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7033), 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(7035), 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, + [149621] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9269), 1, + anon_sym_COMMA, + ACTIONS(9271), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149715] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9273), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149807] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6547), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8452), 1, + sym_auto, + ACTIONS(8454), 1, + anon_sym_decltype, + ACTIONS(8726), 1, + anon_sym_LPAREN2, + ACTIONS(8728), 1, + anon_sym_STAR, + ACTIONS(8730), 1, + anon_sym_AMP_AMP, + ACTIONS(8732), 1, + anon_sym_AMP, + STATE(2434), 1, + sym_alignas_qualifier, + STATE(2508), 1, + sym_decltype_auto, + STATE(3672), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6969), 1, + sym__abstract_declarator, + ACTIONS(8742), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5229), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8496), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8734), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [149885] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7467), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [149973] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9275), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150067] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9027), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150159] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7063), 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(7065), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_GT2, + [150217] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9277), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150311] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7397), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [150399] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5720), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6687), 1, + anon_sym_LPAREN2, + ACTIONS(6693), 1, + anon_sym_LBRACK, + ACTIONS(3097), 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(3089), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [150451] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7467), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [150539] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7083), 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(7085), 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_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, + [150599] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9167), 1, + anon_sym_COMMA, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 1, + anon_sym_QMARK, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + ACTIONS(9279), 1, + anon_sym_COLON, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150693] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 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), 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_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, + [150753] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9167), 1, + anon_sym_COMMA, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 1, + anon_sym_QMARK, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + ACTIONS(9281), 1, + anon_sym_COLON, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150847] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9233), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [150939] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9283), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151033] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9285), 1, + anon_sym_COMMA, + ACTIONS(9287), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151127] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2487), 1, + sym_attribute_specifier, + STATE(5452), 1, + sym_field_declaration_list, + STATE(7413), 1, + sym_virtual_specifier, + STATE(8302), 1, + sym_base_class_clause, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4988), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(4986), 25, + anon_sym_AMP, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [151189] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9289), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151281] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8724), 1, + anon_sym_LBRACK, + STATE(5095), 1, + sym_new_declarator, + ACTIONS(6947), 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(6949), 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [151331] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(9203), 1, + anon_sym_LT, + STATE(2950), 1, + sym_template_argument_list, + ACTIONS(4529), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3113), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [151383] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9167), 1, + anon_sym_COMMA, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 1, + anon_sym_QMARK, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + ACTIONS(9291), 1, + anon_sym_COLON, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151477] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(9203), 1, + anon_sym_LT, + STATE(2760), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2950), 1, + sym_template_argument_list, + ACTIONS(3087), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(6337), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3095), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [151533] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + STATE(5068), 1, + sym_attribute_specifier, + ACTIONS(5480), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5482), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [151585] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8500), 1, + sym_auto, + ACTIONS(8502), 1, + anon_sym_decltype, + STATE(4963), 1, + sym_decltype_auto, + ACTIONS(4785), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4787), 30, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [151637] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9293), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151731] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7083), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(7085), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [151795] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + STATE(4928), 1, + sym_attribute_specifier, + ACTIONS(5462), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5464), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [151847] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9295), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151939] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + STATE(5054), 1, + sym_attribute_specifier, + ACTIONS(5488), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5490), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [151991] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7083), 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(7085), 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, + [152051] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9297), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [152145] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7443), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [152233] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7173), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [152325] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7083), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [152389] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + [152475] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 8, + 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, + [152559] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7083), 1, + anon_sym_PIPE, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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, + [152641] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7083), 1, + anon_sym_PIPE, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 11, + 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, + [152721] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7083), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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, + [152797] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7083), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [152871] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7083), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [152941] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7083), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [153007] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7083), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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_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, + [153075] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7451), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [153163] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7455), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [153255] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7459), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [153343] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7463), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [153435] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_GT2, + [153521] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9299), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [153615] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7451), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [153703] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7463), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [153795] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7397), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [153883] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9301), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [153977] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7467), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [154065] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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, + [154149] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7083), 1, + anon_sym_PIPE, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9001), 1, + anon_sym_bitand, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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, + [154231] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7083), 1, + anon_sym_PIPE, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9001), 1, + anon_sym_bitand, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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, + [154311] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8482), 1, + anon_sym_STAR, + ACTIONS(8484), 1, + anon_sym_AMP_AMP, + ACTIONS(8486), 1, + anon_sym_AMP, + STATE(3347), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6821), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8718), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [154383] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6547), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8452), 1, + sym_auto, + ACTIONS(8454), 1, + anon_sym_decltype, + ACTIONS(8726), 1, + anon_sym_LPAREN2, + ACTIONS(8728), 1, + anon_sym_STAR, + ACTIONS(8730), 1, + anon_sym_AMP_AMP, + ACTIONS(8732), 1, + anon_sym_AMP, + STATE(2434), 1, + sym_alignas_qualifier, + STATE(2508), 1, + sym_decltype_auto, + STATE(3672), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6962), 1, + sym__abstract_declarator, + ACTIONS(8742), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5224), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8504), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8734), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [154461] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9167), 1, + anon_sym_COMMA, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 1, + anon_sym_QMARK, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + ACTIONS(9303), 1, + anon_sym_COLON, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [154555] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7083), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 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, + [154631] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6785), 1, + anon_sym_COMMA, + ACTIONS(6798), 1, + anon_sym_RPAREN, + ACTIONS(7510), 1, + sym_literal_suffix, + STATE(7878), 1, + aux_sym__call_macro_with_decl_first_arg_repeat1, + ACTIONS(3097), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3089), 19, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [154685] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + STATE(4931), 1, + sym_attribute_specifier, + ACTIONS(5500), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5502), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [154737] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7017), 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(7019), 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_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, + [154795] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9073), 1, + anon_sym___attribute__, + ACTIONS(9075), 1, + anon_sym___attribute, + ACTIONS(9163), 1, + anon_sym_LBRACE, + ACTIONS(9165), 1, + anon_sym_COLON, + STATE(5155), 1, + sym__enum_base_clause, + STATE(5246), 1, + sym_enumerator_list, + STATE(5265), 1, + sym_attribute_specifier, + ACTIONS(5454), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5456), 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_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [154855] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7027), 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(7029), 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_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, + [154915] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7033), 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(7035), 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_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, + [154975] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + STATE(4936), 1, + sym_attribute_specifier, + ACTIONS(5512), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5514), 31, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [155027] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7063), 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(7065), 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_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, + [155085] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8941), 1, + anon_sym_LT, + STATE(2502), 1, + sym_template_argument_list, + ACTIONS(4529), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3113), 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_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [155137] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9305), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155231] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2632), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4520), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(6818), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5131), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(5128), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [155283] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9167), 1, + anon_sym_COMMA, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 1, + anon_sym_QMARK, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + ACTIONS(9307), 1, + anon_sym_COLON, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155377] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8482), 1, + anon_sym_STAR, + ACTIONS(8484), 1, + anon_sym_AMP_AMP, + ACTIONS(8486), 1, + anon_sym_AMP, + STATE(3347), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6770), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [155449] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8482), 1, + anon_sym_STAR, + ACTIONS(8484), 1, + anon_sym_AMP_AMP, + ACTIONS(8486), 1, + anon_sym_AMP, + STATE(3347), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6794), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8700), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [155521] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9167), 1, + anon_sym_COMMA, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 1, + anon_sym_QMARK, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + ACTIONS(9309), 1, + anon_sym_COLON, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155615] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8508), 1, + anon_sym_STAR, + ACTIONS(8510), 1, + anon_sym_AMP_AMP, + ACTIONS(8512), 1, + anon_sym_AMP, + STATE(3311), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6786), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8718), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [155687] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3221), 1, + anon_sym_STAR, + ACTIONS(3223), 1, + anon_sym_AMP_AMP, + ACTIONS(3225), 1, + anon_sym_AMP, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6624), 1, + anon_sym_LBRACK, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(8549), 1, + anon_sym_RPAREN, + STATE(3336), 1, + sym_parameter_list, + STATE(6154), 1, + sym__scope_resolution, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6763), 1, + sym__declarator, + STATE(7029), 1, + sym__abstract_declarator, + STATE(8684), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [155773] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9311), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155867] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8967), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8995), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7455), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [155959] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7083), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [156033] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_COMMA, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9051), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156127] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9167), 1, + anon_sym_COMMA, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 1, + anon_sym_QMARK, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + ACTIONS(9313), 1, + anon_sym_COLON, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156221] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8490), 1, + anon_sym_STAR, + ACTIONS(8492), 1, + anon_sym_AMP_AMP, + ACTIONS(8494), 1, + anon_sym_AMP, + ACTIONS(8720), 1, + anon_sym___attribute, + STATE(3652), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6757), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8718), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [156295] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9125), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156387] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7083), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7085), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [156459] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + ACTIONS(8981), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + ACTIONS(8991), 1, + anon_sym_LT_LT, + ACTIONS(8993), 1, + anon_sym_GT_GT, + ACTIONS(8997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8999), 1, + anon_sym_bitor, + ACTIONS(9001), 1, + anon_sym_bitand, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8977), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8979), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8983), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8987), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7443), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8989), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [156547] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, + anon_sym_DOT, + ACTIONS(8975), 1, + anon_sym_SLASH, + STATE(3985), 1, + sym_argument_list, + STATE(3992), 1, + sym_subscript_argument_list, + ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8973), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9003), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7083), 7, + 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(7085), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [156613] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6785), 1, + anon_sym_COMMA, + ACTIONS(6787), 1, + anon_sym_RPAREN, + ACTIONS(7510), 1, + sym_literal_suffix, + STATE(7685), 1, + aux_sym__call_macro_with_decl_first_arg_repeat1, + ACTIONS(3097), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3089), 19, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [156667] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9022), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156759] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9315), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4938), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4940), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [156895] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + ACTIONS(9317), 1, + anon_sym_RBRACK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156986] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4942), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4944), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [157031] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9319), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157122] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9321), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157213] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + ACTIONS(9323), 1, + anon_sym_RBRACK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4809), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4811), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [157349] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9325), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157440] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9327), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4946), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4948), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [157576] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9329), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157667] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4813), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4815), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [157712] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9331), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157803] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9333), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157894] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4950), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4952), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [157939] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5990), 1, + anon_sym_RBRACK, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [158030] = 17, ACTIONS(3), 1, sym_comment, - STATE(1949), 2, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8587), 1, + sym_identifier, + ACTIONS(8589), 1, + anon_sym_LPAREN2, + ACTIONS(8591), 1, + anon_sym_STAR, + ACTIONS(8593), 1, + anon_sym_AMP_AMP, + ACTIONS(8595), 1, + anon_sym_AMP, + ACTIONS(8599), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(6203), 1, + sym__type_declarator, + STATE(6322), 1, + sym_pointer_type_declarator, + STATE(8631), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4389), 6, + aux_sym__type_definition_type_repeat1, + ACTIONS(8597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6320), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(4387), 22, - sym_raw_string_literal, + anon_sym_constinit, + anon_sym_consteval, + [158103] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4958), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4960), 32, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, - anon_sym_COLON_COLON, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [158148] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9335), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4385), 31, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - sym_this, - sym_nullptr, - anon_sym_CACHE_TRY_INSPECT, - anon_sym_CACHE_TRY_UNWRAP, - anon_sym_FORWARD, - anon_sym_FORWARD_SET_ATTRIBUTE, - anon_sym_IDB_TRY_INSPECT, - anon_sym_IDB_TRY_UNWRAP, - anon_sym_LS_TRY_INSPECT, - anon_sym_LS_TRY_UNWRAP, - anon_sym_SDB_TRY_INSPECT, - anon_sym_SDB_TRY_UNWRAP, - anon_sym_PS_GET, - anon_sym_PS_GET_AND_SET, - anon_sym_PS_GET_LOCKLESS, - anon_sym_QM_TRY_INSPECT, - anon_sym_QM_NOTEONLY_TRY_UNWRAP, - anon_sym_QM_TRY_UNWRAP, - anon_sym_QM_WARNONLY_TRY_UNWRAP, - [73] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3152), 22, - sym_raw_string_literal, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_AMP, - anon_sym_COLON_COLON, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [158239] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9337), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3150), 37, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [158330] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8587), 1, + sym_identifier, + ACTIONS(8589), 1, + anon_sym_LPAREN2, + ACTIONS(8591), 1, + anon_sym_STAR, + ACTIONS(8593), 1, + anon_sym_AMP_AMP, + ACTIONS(8595), 1, + anon_sym_AMP, + ACTIONS(8599), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(6205), 1, + sym__type_declarator, + STATE(6322), 1, + sym_pointer_type_declarator, + STATE(8631), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6320), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [158403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5006), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5008), 32, + 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, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - sym_this, - sym_nullptr, - anon_sym_CACHE_TRY_INSPECT, - anon_sym_CACHE_TRY_UNWRAP, - anon_sym_FORWARD, - anon_sym_FORWARD_SET_ATTRIBUTE, - anon_sym_IDB_TRY_INSPECT, - anon_sym_IDB_TRY_UNWRAP, - anon_sym_LS_TRY_INSPECT, - anon_sym_LS_TRY_UNWRAP, - anon_sym_SDB_TRY_INSPECT, - anon_sym_SDB_TRY_UNWRAP, - anon_sym_PS_GET, - anon_sym_PS_GET_AND_SET, - anon_sym_PS_GET_LOCKLESS, - anon_sym_QM_TRY_INSPECT, - anon_sym_QM_NOTEONLY_TRY_UNWRAP, - anon_sym_QM_TRY_UNWRAP, - anon_sym_QM_WARNONLY_TRY_UNWRAP, - [140] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1669), 22, - sym_raw_string_literal, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [158448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5050), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5052), 32, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [158493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5054), 5, anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5056), 32, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [158538] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9339), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1667), 31, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - sym_this, - sym_nullptr, - anon_sym_CACHE_TRY_INSPECT, - anon_sym_CACHE_TRY_UNWRAP, - anon_sym_FORWARD, - anon_sym_FORWARD_SET_ATTRIBUTE, - anon_sym_IDB_TRY_INSPECT, - anon_sym_IDB_TRY_UNWRAP, - anon_sym_LS_TRY_INSPECT, - anon_sym_LS_TRY_UNWRAP, - anon_sym_SDB_TRY_INSPECT, - anon_sym_SDB_TRY_UNWRAP, - anon_sym_PS_GET, - anon_sym_PS_GET_AND_SET, - anon_sym_PS_GET_LOCKLESS, - anon_sym_QM_TRY_INSPECT, - anon_sym_QM_NOTEONLY_TRY_UNWRAP, - anon_sym_QM_TRY_UNWRAP, - anon_sym_QM_WARNONLY_TRY_UNWRAP, - [201] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4392), 1, - sym_identifier, - ACTIONS(4398), 1, - sym_raw_string_literal, - STATE(1954), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3138), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4396), 15, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, + [158629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4982), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4984), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [158674] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9341), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [158765] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4394), 29, + ACTIONS(8662), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9343), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [158856] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, + anon_sym_AMP_AMP, + ACTIONS(3311), 1, + anon_sym_AMP, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8452), 1, + sym_auto, + ACTIONS(8454), 1, + anon_sym_decltype, + STATE(2508), 1, + sym_decltype_auto, + STATE(3336), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7019), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5257), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8504), 3, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [158933] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9345), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [159024] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, + anon_sym_AMP_AMP, + ACTIONS(3311), 1, + anon_sym_AMP, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8452), 1, + sym_auto, + ACTIONS(8454), 1, + anon_sym_decltype, + STATE(2508), 1, + sym_decltype_auto, + STATE(3336), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7032), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5267), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8496), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_RBRACE, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [159101] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9347), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [270] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4400), 1, - sym_identifier, - ACTIONS(4402), 1, - sym_literal_suffix, - ACTIONS(4404), 1, - sym_raw_string_literal, - STATE(1952), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3138), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2407), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2399), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT, + [159192] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9349), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [341] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4406), 1, - sym_identifier, - ACTIONS(4416), 1, - sym_raw_string_literal, - STATE(1954), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4413), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4411), 15, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4409), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT, + [159283] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 5, + anon_sym_AMP, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4928), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [410] = 3, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [159328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4898), 5, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2449), 37, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(4900), 32, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - [471] = 3, + anon_sym_try, + anon_sym_requires, + [159373] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 16, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9351), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [159464] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, anon_sym_DOT, - ACTIONS(2510), 37, + ACTIONS(8662), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9353), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LT, + [159555] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8571), 1, + sym_identifier, + ACTIONS(8573), 1, + anon_sym_LPAREN2, + ACTIONS(8575), 1, + anon_sym_STAR, + ACTIONS(8577), 1, + anon_sym_AMP_AMP, + ACTIONS(8579), 1, + anon_sym_AMP, + ACTIONS(8583), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3285), 1, + sym__type_declarator, + STATE(3589), 1, + sym_pointer_type_declarator, + STATE(8597), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8581), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3586), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [532] = 3, + anon_sym_constinit, + anon_sym_consteval, + [159628] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1669), 22, - sym_raw_string_literal, + ACTIONS(6088), 1, + anon_sym_RBRACK, + ACTIONS(6589), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, + ACTIONS(7021), 1, anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1667), 31, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - sym_this, - sym_nullptr, - anon_sym_CACHE_TRY_INSPECT, - anon_sym_CACHE_TRY_UNWRAP, - anon_sym_FORWARD, - anon_sym_FORWARD_SET_ATTRIBUTE, - anon_sym_IDB_TRY_INSPECT, - anon_sym_IDB_TRY_UNWRAP, - anon_sym_LS_TRY_INSPECT, - anon_sym_LS_TRY_UNWRAP, - anon_sym_SDB_TRY_INSPECT, - anon_sym_SDB_TRY_UNWRAP, - anon_sym_PS_GET, - anon_sym_PS_GET_AND_SET, - anon_sym_PS_GET_LOCKLESS, - anon_sym_QM_TRY_INSPECT, - anon_sym_QM_NOTEONLY_TRY_UNWRAP, - anon_sym_QM_TRY_UNWRAP, - anon_sym_QM_WARNONLY_TRY_UNWRAP, - [593] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 16, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [159719] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, anon_sym_DOT, - ACTIONS(2478), 37, + ACTIONS(8662), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 1, + anon_sym_QMARK, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + ACTIONS(9355), 1, + anon_sym_COLON, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9175), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, + anon_sym_LT, + [159810] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, anon_sym_COLON_COLON, + ACTIONS(8941), 1, + anon_sym_LT, + STATE(917), 1, + sym_template_argument_list, + ACTIONS(3279), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3272), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - [654] = 3, + [159861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 22, - sym_raw_string_literal, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(5104), 5, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym___attribute, 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, - ACTIONS(1593), 31, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - sym_this, - sym_nullptr, - anon_sym_CACHE_TRY_INSPECT, - anon_sym_CACHE_TRY_UNWRAP, - anon_sym_FORWARD, - anon_sym_FORWARD_SET_ATTRIBUTE, - anon_sym_IDB_TRY_INSPECT, - anon_sym_IDB_TRY_UNWRAP, - anon_sym_LS_TRY_INSPECT, - anon_sym_LS_TRY_UNWRAP, - anon_sym_SDB_TRY_INSPECT, - anon_sym_SDB_TRY_UNWRAP, - anon_sym_PS_GET, - anon_sym_PS_GET_AND_SET, - anon_sym_PS_GET_LOCKLESS, - anon_sym_QM_TRY_INSPECT, - anon_sym_QM_NOTEONLY_TRY_UNWRAP, - anon_sym_QM_TRY_UNWRAP, - anon_sym_QM_WARNONLY_TRY_UNWRAP, - [715] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1595), 22, - sym_raw_string_literal, + anon_sym_const, + anon_sym___asm, + ACTIONS(5106), 32, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym___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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [159906] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9357), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1593), 31, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - sym_this, - sym_nullptr, - anon_sym_CACHE_TRY_INSPECT, - anon_sym_CACHE_TRY_UNWRAP, - anon_sym_FORWARD, - anon_sym_FORWARD_SET_ATTRIBUTE, - anon_sym_IDB_TRY_INSPECT, - anon_sym_IDB_TRY_UNWRAP, - anon_sym_LS_TRY_INSPECT, - anon_sym_LS_TRY_UNWRAP, - anon_sym_SDB_TRY_INSPECT, - anon_sym_SDB_TRY_UNWRAP, - anon_sym_PS_GET, - anon_sym_PS_GET_AND_SET, - anon_sym_PS_GET_LOCKLESS, - anon_sym_QM_TRY_INSPECT, - anon_sym_QM_NOTEONLY_TRY_UNWRAP, - anon_sym_QM_TRY_UNWRAP, - anon_sym_QM_WARNONLY_TRY_UNWRAP, - [776] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2504), 16, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2506), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT, + [159997] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 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, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + ACTIONS(9359), 1, + anon_sym_COLON, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [837] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2494), 16, + ACTIONS(9169), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9171), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9191), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(9185), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [160088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5058), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2496), 37, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(5060), 32, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - [898] = 3, + anon_sym_try, + anon_sym_requires, + [160133] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2451), 16, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9361), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2453), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT, + [160224] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9363), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [959] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 16, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2490), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [1020] = 3, + anon_sym_LT, + [160315] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1575), 21, - sym_raw_string_literal, + ACTIONS(6589), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_COLON_COLON, + ACTIONS(7021), 1, anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9365), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1573), 31, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - sym_this, - sym_nullptr, - anon_sym_CACHE_TRY_INSPECT, - anon_sym_CACHE_TRY_UNWRAP, - anon_sym_FORWARD, - anon_sym_FORWARD_SET_ATTRIBUTE, - anon_sym_IDB_TRY_INSPECT, - anon_sym_IDB_TRY_UNWRAP, - anon_sym_LS_TRY_INSPECT, - anon_sym_LS_TRY_UNWRAP, - anon_sym_SDB_TRY_INSPECT, - anon_sym_SDB_TRY_UNWRAP, - anon_sym_PS_GET, - anon_sym_PS_GET_AND_SET, - anon_sym_PS_GET_LOCKLESS, - anon_sym_QM_TRY_INSPECT, - anon_sym_QM_NOTEONLY_TRY_UNWRAP, - anon_sym_QM_TRY_UNWRAP, - anon_sym_QM_WARNONLY_TRY_UNWRAP, - [1080] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2355), 1, - anon_sym_LPAREN2, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4423), 1, + ACTIONS(8897), 2, anon_sym_STAR, - ACTIONS(4425), 1, + anon_sym_PERCENT, + ACTIONS(8901), 2, anon_sym_AMP_AMP, - ACTIONS(4427), 1, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [160406] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 5, anon_sym_AMP, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4431), 1, + anon_sym___attribute, anon_sym_LBRACK, - STATE(3270), 1, - sym_parameter_list, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3552), 1, - sym__scope_resolution, - STATE(3712), 1, - sym__declarator, - STATE(3935), 1, - sym__abstract_declarator, - STATE(5266), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(4421), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(2076), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(2143), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(3320), 6, anon_sym_const, + anon_sym___asm, + ACTIONS(5064), 32, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [1188] = 3, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [160451] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1643), 21, - sym_raw_string_literal, + ACTIONS(6589), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_COLON_COLON, + ACTIONS(7021), 1, anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9367), 1, + anon_sym_RBRACE, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1641), 31, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - sym_this, - sym_nullptr, - anon_sym_CACHE_TRY_INSPECT, - anon_sym_CACHE_TRY_UNWRAP, - anon_sym_FORWARD, - anon_sym_FORWARD_SET_ATTRIBUTE, - anon_sym_IDB_TRY_INSPECT, - anon_sym_IDB_TRY_UNWRAP, - anon_sym_LS_TRY_INSPECT, - anon_sym_LS_TRY_UNWRAP, - anon_sym_SDB_TRY_INSPECT, - anon_sym_SDB_TRY_UNWRAP, - anon_sym_PS_GET, - anon_sym_PS_GET_AND_SET, - anon_sym_PS_GET_LOCKLESS, - anon_sym_QM_TRY_INSPECT, - anon_sym_QM_NOTEONLY_TRY_UNWRAP, - anon_sym_QM_TRY_UNWRAP, - anon_sym_QM_WARNONLY_TRY_UNWRAP, - [1248] = 27, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [160542] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(51), 1, anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2355), 1, + ACTIONS(2518), 1, anon_sym_LPAREN2, - ACTIONS(2367), 1, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, sym_identifier, - ACTIONS(4429), 1, + ACTIONS(6622), 1, anon_sym_COLON_COLON, - ACTIONS(4431), 1, + ACTIONS(7526), 1, anon_sym_LBRACK, - ACTIONS(4433), 1, + ACTIONS(7676), 1, anon_sym_STAR, - ACTIONS(4435), 1, + ACTIONS(7678), 1, anon_sym_AMP_AMP, - ACTIONS(4437), 1, + ACTIONS(7680), 1, anon_sym_AMP, - STATE(3266), 1, - sym_parameter_list, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3552), 1, - sym__scope_resolution, - STATE(3712), 1, + STATE(5593), 1, + sym_ms_call_modifier, + STATE(5888), 1, sym__declarator, - STATE(3950), 1, - sym__abstract_declarator, - STATE(5266), 1, + STATE(6082), 1, + sym__scope_resolution, + STATE(7772), 1, + sym_init_declarator, + STATE(9116), 1, sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(4421), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2082), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(2143), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4853), 2, + STATE(8447), 3, + sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, + ACTIONS(3153), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6300), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -313876,76 +596259,55 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [1356] = 27, + [160623] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(51), 1, anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2355), 1, + ACTIONS(2518), 1, anon_sym_LPAREN2, - ACTIONS(2357), 1, - anon_sym_STAR, - ACTIONS(2359), 1, - anon_sym_AMP_AMP, - ACTIONS(2361), 1, - anon_sym_AMP, - ACTIONS(2367), 1, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, anon_sym_operator, - ACTIONS(2558), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, sym_identifier, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4439), 1, + ACTIONS(6622), 1, anon_sym_COLON_COLON, - STATE(3266), 1, - sym_parameter_list, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3538), 1, - sym__scope_resolution, - STATE(3743), 1, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7676), 1, + anon_sym_STAR, + ACTIONS(7678), 1, + anon_sym_AMP_AMP, + ACTIONS(7680), 1, + anon_sym_AMP, + STATE(5556), 1, + sym_ms_call_modifier, + STATE(5869), 1, sym__declarator, - STATE(3950), 1, - sym__abstract_declarator, - STATE(4944), 1, + STATE(6082), 1, + sym__scope_resolution, + STATE(7738), 1, + sym_init_declarator, + STATE(9116), 1, sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(4421), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2111), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(2228), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4853), 2, + STATE(8447), 3, + sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, + ACTIONS(3153), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6300), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -313954,5794 +596316,8871 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_declarator, sym_structured_binding_declarator, sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [1464] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1970), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4441), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3322), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - sym_primitive_type, - anon_sym_DOT, - sym_identifier, - ACTIONS(3324), 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_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [160704] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9369), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [1527] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4444), 1, - sym_identifier, - ACTIONS(4448), 1, - sym_primitive_type, - STATE(1970), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4446), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3465), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3463), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LT, + [160795] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5984), 1, anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 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, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [1594] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3741), 16, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(3743), 35, - sym_raw_string_literal, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT, + [160886] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9371), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [1653] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3713), 16, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(3715), 35, - sym_raw_string_literal, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [1712] = 3, + anon_sym_LT, + [160977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2494), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4898), 5, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, - anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2496), 32, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(4900), 32, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_COLON_COLON, + 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, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_STAR_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [1770] = 3, + anon_sym_try, + anon_sym_requires, + [161022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4970), 5, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, - anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2449), 32, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(4972), 32, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_COLON_COLON, + 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, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_STAR_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [1828] = 3, + anon_sym_try, + anon_sym_requires, + [161067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4898), 5, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, - anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2510), 32, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(4900), 32, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_COLON_COLON, + 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, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_STAR_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [1886] = 3, + anon_sym_try, + anon_sym_requires, + [161112] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 18, + ACTIONS(6027), 1, + anon_sym_RBRACK, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2506), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_LT, + [161203] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9373), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [1944] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 18, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2478), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_LT, + [161294] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4934), 5, + anon_sym_AMP, + anon_sym___attribute, anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4936), 32, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_STAR_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [2002] = 3, + anon_sym_try, + anon_sym_requires, + [161339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2488), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5066), 5, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, - anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2490), 32, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(5068), 32, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_COLON_COLON, + 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, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_STAR_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [2060] = 3, + anon_sym_try, + anon_sym_requires, + [161384] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2451), 18, + ACTIONS(6029), 1, + anon_sym_RBRACK, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2453), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_LT, + [161475] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9375), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [2118] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2071), 1, - sym_field_declaration_list, - STATE(4177), 1, - sym_virtual_specifier, - STATE(4601), 1, - sym_base_class_clause, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3491), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3493), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LT, + [161566] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6005), 1, anon_sym_RBRACK, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 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, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [2187] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4450), 1, - sym_identifier, - ACTIONS(4452), 1, - sym_literal_suffix, - ACTIONS(4454), 1, - sym_raw_string_literal, - STATE(1989), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3186), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2407), 16, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2399), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [161657] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9377), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [2254] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2098), 1, - sym_field_declaration_list, - STATE(4072), 1, - sym_virtual_specifier, - STATE(4643), 1, - sym_base_class_clause, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3471), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3473), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT, + [161748] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 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, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + ACTIONS(9379), 1, + anon_sym_RBRACK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [2323] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2100), 1, - sym_field_declaration_list, - STATE(4056), 1, - sym_virtual_specifier, - STATE(4645), 1, - sym_base_class_clause, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3423), 14, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3425), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [2392] = 16, + anon_sym_LT, + [161839] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, - anon_sym_const, - ACTIONS(2412), 1, - anon_sym_AMP_AMP, - ACTIONS(2415), 1, - anon_sym_LT, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2423), 1, - anon_sym_LBRACE, - ACTIONS(2425), 1, - anon_sym_LBRACK, - ACTIONS(2429), 1, - anon_sym_EQ, - ACTIONS(3877), 1, - anon_sym_LBRACK_LBRACK, - STATE(2509), 1, - sym_template_argument_list, - ACTIONS(2401), 2, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, anon_sym_LPAREN2, - ACTIONS(2409), 2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, anon_sym_STAR, + ACTIONS(8555), 1, + anon_sym_AMP_AMP, + ACTIONS(8557), 1, anon_sym_AMP, - ACTIONS(2405), 5, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6528), 1, + sym__type_declarator, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [161912] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8559), 1, + anon_sym_STAR, + ACTIONS(8561), 1, + anon_sym_AMP_AMP, + ACTIONS(8563), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2605), 1, + sym__type_declarator, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(8607), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, - ACTIONS(2407), 10, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [161985] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9381), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8897), 2, + anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_GT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2433), 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(2399), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [162076] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6031), 1, + anon_sym_RBRACK, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [2475] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4456), 1, - sym_identifier, - ACTIONS(4462), 1, - sym_raw_string_literal, - STATE(1986), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4459), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4411), 17, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4409), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [2540] = 9, + anon_sym_LT, + [162167] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2074), 1, - sym_field_declaration_list, - STATE(4173), 1, - sym_virtual_specifier, - STATE(4607), 1, - sym_base_class_clause, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3442), 14, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8607), 1, + sym_identifier, + ACTIONS(8609), 1, + anon_sym_LPAREN2, + ACTIONS(8611), 1, + anon_sym_STAR, + ACTIONS(8613), 1, + anon_sym_AMP_AMP, + ACTIONS(8615), 1, + anon_sym_AMP, + ACTIONS(8619), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3345), 1, + sym__type_declarator, + STATE(3689), 1, + sym_pointer_type_declarator, + STATE(8431), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8617), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3687), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [162240] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, + anon_sym_AMP_AMP, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6531), 1, + sym__type_declarator, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [162313] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9383), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3444), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [2609] = 9, + anon_sym_LT, + [162404] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4178), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, + anon_sym_AMP_AMP, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6532), 1, + sym__type_declarator, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [162477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4974), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4976), 32, + 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, - STATE(2094), 1, - sym_field_declaration_list, - STATE(4092), 1, - sym_virtual_specifier, - STATE(4640), 1, - sym_base_class_clause, - ACTIONS(3810), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(3483), 14, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_try, + anon_sym_requires, + [162522] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8559), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8561), 1, + anon_sym_AMP_AMP, + ACTIONS(8563), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3485), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2597), 1, + sym__type_declarator, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(8607), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [162595] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8587), 1, + sym_identifier, + ACTIONS(8589), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(8599), 1, + sym_primitive_type, + ACTIONS(8601), 1, + anon_sym_STAR, + ACTIONS(8603), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [2678] = 7, + ACTIONS(8605), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(6322), 1, + sym_pointer_type_declarator, + STATE(6557), 1, + sym__type_declarator, + STATE(8727), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6320), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [162668] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8587), 1, sym_identifier, - ACTIONS(4467), 1, - sym_raw_string_literal, - STATE(1986), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3186), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4396), 17, + ACTIONS(8589), 1, + anon_sym_LPAREN2, + ACTIONS(8599), 1, + sym_primitive_type, + ACTIONS(8601), 1, + anon_sym_STAR, + ACTIONS(8603), 1, + anon_sym_AMP_AMP, + ACTIONS(8605), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(6322), 1, + sym_pointer_type_declarator, + STATE(6558), 1, + sym__type_declarator, + STATE(8727), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6320), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [162741] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8587), 1, + sym_identifier, + ACTIONS(8589), 1, + anon_sym_LPAREN2, + ACTIONS(8599), 1, + sym_primitive_type, + ACTIONS(8601), 1, + anon_sym_STAR, + ACTIONS(8603), 1, + anon_sym_AMP_AMP, + ACTIONS(8605), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(6322), 1, + sym_pointer_type_declarator, + STATE(6559), 1, + sym__type_declarator, + STATE(8727), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6320), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [162814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7512), 18, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(4394), 23, + ACTIONS(7514), 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_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [2743] = 9, + [162859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4178), 1, + ACTIONS(4978), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4980), 32, + 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, - STATE(2070), 1, - sym_field_declaration_list, - STATE(4180), 1, - sym_virtual_specifier, - STATE(4599), 1, - sym_base_class_clause, - ACTIONS(3810), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(3436), 14, + anon_sym_try, + anon_sym_requires, + [162904] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6785), 1, + anon_sym_COMMA, + ACTIONS(6798), 1, + anon_sym_RPAREN, + STATE(7878), 1, + aux_sym__call_macro_with_decl_first_arg_repeat1, + ACTIONS(3097), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3438), 28, + ACTIONS(3089), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, 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, - [2812] = 10, + [162955] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2459), 1, - anon_sym_const, - ACTIONS(2473), 1, - anon_sym_LT, - STATE(1995), 1, - sym_template_argument_list, - ACTIONS(2463), 3, - anon_sym_RPAREN, + ACTIONS(6033), 1, + anon_sym_RBRACK, + ACTIONS(6589), 1, anon_sym_LPAREN2, - anon_sym_AMP_AMP, - ACTIONS(2470), 3, - anon_sym_STAR, - anon_sym_AMP, + ACTIONS(7021), 1, anon_sym_LBRACK, - ACTIONS(2466), 6, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(2468), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(7023), 1, anon_sym_DOT, - ACTIONS(2461), 22, + ACTIONS(8662), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK_LBRACK, + ACTIONS(9115), 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, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [2883] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(4469), 1, - anon_sym_LT, - STATE(2003), 1, - sym_template_argument_list, - ACTIONS(3356), 14, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2423), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [2945] = 10, + anon_sym_LT, + [163046] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2459), 1, - anon_sym_const, - ACTIONS(4471), 1, - anon_sym_LT, - STATE(2007), 1, - sym_template_argument_list, - ACTIONS(2470), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2463), 4, - anon_sym_RPAREN, + ACTIONS(6589), 1, anon_sym_LPAREN2, - anon_sym_AMP_AMP, + ACTIONS(7021), 1, anon_sym_LBRACK, - ACTIONS(2466), 6, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(2468), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(7023), 1, anon_sym_DOT, - ACTIONS(2461), 21, + ACTIONS(8662), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9385), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [3015] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2459), 1, - anon_sym_const, - ACTIONS(4474), 1, - anon_sym_LT, - STATE(2010), 1, - sym_template_argument_list, - ACTIONS(2470), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2463), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(2466), 6, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(2468), 13, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8897), 2, + anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_GT, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2461), 17, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [3085] = 7, + anon_sym_LT, + [163137] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 1, - anon_sym_const, - ACTIONS(2516), 3, - anon_sym_RPAREN, + ACTIONS(3305), 1, anon_sym_LPAREN2, - anon_sym_AMP_AMP, - ACTIONS(2523), 3, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8623), 1, anon_sym_STAR, + ACTIONS(8625), 1, + anon_sym_AMP_AMP, + ACTIONS(8627), 1, anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(2519), 7, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + STATE(3414), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6875), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8718), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(2521), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2514), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [3149] = 13, + anon_sym_constinit, + anon_sym_consteval, + [163208] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, anon_sym_const, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2423), 1, - anon_sym_LBRACE, - ACTIONS(4477), 1, - anon_sym_LT, - STATE(2527), 1, - sym_template_argument_list, - ACTIONS(2409), 2, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8623), 1, anon_sym_STAR, + ACTIONS(8625), 1, + anon_sym_AMP_AMP, + ACTIONS(8627), 1, anon_sym_AMP, - ACTIONS(4480), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(2405), 5, + STATE(3414), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6880), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(2412), 6, + anon_sym_constinit, + anon_sym_consteval, + [163279] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8623), 1, + anon_sym_STAR, + ACTIONS(8625), 1, + anon_sym_AMP_AMP, + ACTIONS(8627), 1, + anon_sym_AMP, + STATE(3414), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6877), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8700), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [163350] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, anon_sym_LPAREN2, - anon_sym_AMP_AMP, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, anon_sym_LBRACK, + ACTIONS(8623), 1, + anon_sym_STAR, + ACTIONS(8625), 1, + anon_sym_AMP_AMP, + ACTIONS(8627), 1, + anon_sym_AMP, + STATE(3414), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6881), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7314), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(2399), 8, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(4482), 9, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(2407), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [3225] = 6, + anon_sym_requires, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [163421] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, anon_sym_COLON_COLON, - ACTIONS(4484), 1, - anon_sym_LT, - STATE(2003), 1, - sym_template_argument_list, - ACTIONS(2459), 14, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7676), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7678), 1, + anon_sym_AMP_AMP, + ACTIONS(7680), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(5570), 1, + sym_ms_call_modifier, + STATE(5889), 1, + sym__declarator, + STATE(6082), 1, + sym__scope_resolution, + STATE(7802), 1, + sym_init_declarator, + STATE(9116), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3153), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [163502] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7496), 1, + anon_sym_DASH_GT, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(9389), 1, + anon_sym___attribute__, + ACTIONS(9392), 1, + anon_sym___attribute, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9403), 1, + anon_sym_requires, + STATE(5297), 1, + sym_ref_qualifier, + STATE(5825), 1, + sym_trailing_return_type, + STATE(6065), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5565), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2466), 31, - anon_sym_DOT_DOT_DOT, + anon_sym_try, + [163589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4966), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4968), 32, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - [3287] = 13, + anon_sym_try, + anon_sym_requires, + [163634] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, - anon_sym_const, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2423), 1, - anon_sym_LBRACE, - ACTIONS(2429), 1, - anon_sym_EQ, - ACTIONS(4487), 1, - anon_sym_LT, - STATE(2546), 1, - sym_template_argument_list, - ACTIONS(2409), 2, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8537), 1, anon_sym_STAR, + ACTIONS(8539), 1, + anon_sym_AMP_AMP, + ACTIONS(8541), 1, anon_sym_AMP, - ACTIONS(2412), 4, - anon_sym_RPAREN, + ACTIONS(8547), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(7066), 1, + sym__type_declarator, + STATE(8986), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [163707] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, anon_sym_LPAREN2, + ACTIONS(8537), 1, + anon_sym_STAR, + ACTIONS(8539), 1, anon_sym_AMP_AMP, - anon_sym_LBRACK, - ACTIONS(2405), 5, + ACTIONS(8541), 1, + anon_sym_AMP, + ACTIONS(8547), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(7079), 1, + sym__type_declarator, + STATE(8986), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(2407), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2433), 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(2399), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [3363] = 5, + anon_sym_constinit, + anon_sym_consteval, + [163780] = 17, ACTIONS(3), 1, sym_comment, - STATE(1999), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4490), 4, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8537), 1, + anon_sym_STAR, + ACTIONS(8539), 1, + anon_sym_AMP_AMP, + ACTIONS(8541), 1, + anon_sym_AMP, + ACTIONS(8547), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(7081), 1, + sym__type_declarator, + STATE(8986), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8545), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3322), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [163853] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(8903), 1, anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8907), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(8913), 1, anon_sym_GT_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_DOT, - sym_identifier, - ACTIONS(3324), 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_LT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9406), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [3422] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3405), 15, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3407), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT, + [163944] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 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, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + ACTIONS(9408), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9410), 1, + anon_sym_RBRACK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [3479] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3475), 15, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3477), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT, + [164035] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [3536] = 8, + ACTIONS(7676), 1, + anon_sym_STAR, + ACTIONS(7678), 1, + anon_sym_AMP_AMP, + ACTIONS(7680), 1, + anon_sym_AMP, + STATE(5554), 1, + sym_ms_call_modifier, + STATE(5879), 1, + sym__declarator, + STATE(6082), 1, + sym__scope_resolution, + STATE(7908), 1, + sym_init_declarator, + STATE(9116), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3153), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [164116] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 1, - anon_sym_LBRACE, - ACTIONS(4495), 1, + ACTIONS(6051), 1, + anon_sym_RBRACK, + ACTIONS(6589), 1, anon_sym_LPAREN2, - ACTIONS(4499), 1, + ACTIONS(7021), 1, anon_sym_LBRACK, - STATE(2023), 1, - sym_new_declarator, - STATE(2188), 2, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4497), 14, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4493), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [3601] = 3, + anon_sym_LT, + [164207] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 15, + ACTIONS(8228), 1, + sym_literal_suffix, + ACTIONS(3097), 17, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(2519), 32, + ACTIONS(3089), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [3656] = 7, + anon_sym_GT2, + [164254] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4501), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8571), 1, sym_identifier, - ACTIONS(4505), 1, + ACTIONS(8573), 1, + anon_sym_LPAREN2, + ACTIONS(8575), 1, + anon_sym_STAR, + ACTIONS(8577), 1, + anon_sym_AMP_AMP, + ACTIONS(8579), 1, + anon_sym_AMP, + ACTIONS(8583), 1, sym_primitive_type, - STATE(1999), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4503), 4, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3278), 1, + sym__type_declarator, + STATE(3589), 1, + sym_pointer_type_declarator, + STATE(8597), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8581), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3465), 16, - anon_sym_DASH, - anon_sym_PLUS, + STATE(3586), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [164327] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7676), 1, anon_sym_STAR, + ACTIONS(7678), 1, + anon_sym_AMP_AMP, + ACTIONS(7680), 1, + anon_sym_AMP, + STATE(5566), 1, + sym_ms_call_modifier, + STATE(5902), 1, + sym__declarator, + STATE(6082), 1, + sym__scope_resolution, + STATE(7692), 1, + sym_init_declarator, + STATE(9116), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3153), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [164408] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(8903), 1, anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8907), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(8913), 1, anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3463), 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_LT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9412), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [3719] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3126), 1, - anon_sym_LBRACE, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4499), 1, - anon_sym_LBRACK, - STATE(2019), 1, - sym_new_declarator, - STATE(2150), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4509), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4507), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [3784] = 8, + anon_sym_LT, + [164499] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 1, - anon_sym_LBRACE, - ACTIONS(4495), 1, + ACTIONS(6589), 1, anon_sym_LPAREN2, - ACTIONS(4499), 1, + ACTIONS(7021), 1, anon_sym_LBRACK, - STATE(2029), 1, - sym_new_declarator, - STATE(2199), 2, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9414), 1, + anon_sym_SEMI, + STATE(2905), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4513), 14, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4511), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [3849] = 7, + anon_sym_LT, + [164590] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 1, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, anon_sym_const, - ACTIONS(2523), 2, + ACTIONS(7334), 1, + sym_auto, + ACTIONS(7336), 1, + anon_sym_decltype, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8786), 1, anon_sym_STAR, + ACTIONS(8788), 1, + anon_sym_AMP_AMP, + ACTIONS(8790), 1, anon_sym_AMP, - ACTIONS(2516), 4, - anon_sym_RPAREN, + STATE(3043), 1, + sym_decltype_auto, + STATE(3505), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7036), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5256), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8504), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [164667] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8941), 1, + anon_sym_LT, + STATE(917), 1, + sym_template_argument_list, + ACTIONS(3113), 4, anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK, - ACTIONS(2519), 7, - anon_sym_COLON_COLON, anon_sym_LBRACE, + ACTIONS(4529), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(2521), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [164718] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, anon_sym_DOT, - ACTIONS(2514), 21, + ACTIONS(8662), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9416), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [3912] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3479), 15, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3481), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT, + [164809] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(9418), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [3967] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3713), 18, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(3715), 29, - sym_raw_string_literal, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [164900] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5970), 1, + anon_sym_RBRACK, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 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, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - [4022] = 7, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [164991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 1, + ACTIONS(4906), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(2523), 2, + anon_sym___asm, + ACTIONS(4908), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [165036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4954), 5, anon_sym_AMP, - ACTIONS(2516), 6, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4956), 32, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(2519), 7, - anon_sym_COLON_COLON, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(2521), 14, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [165081] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 1, + anon_sym_QMARK, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + ACTIONS(9420), 1, + anon_sym_COLON, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(9171), 2, + anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, anon_sym_CARET, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9191), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2514), 17, - anon_sym_PIPE_PIPE, + ACTIONS(9185), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [4085] = 8, + anon_sym_LT, + [165172] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7676), 1, + anon_sym_STAR, + ACTIONS(7678), 1, + anon_sym_AMP_AMP, + ACTIONS(7680), 1, + anon_sym_AMP, + STATE(5576), 1, + sym_ms_call_modifier, + STATE(5814), 1, + sym__declarator, + STATE(6082), 1, + sym__scope_resolution, + STATE(7796), 1, + sym_init_declarator, + STATE(9116), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3153), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [165253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 1, + ACTIONS(4789), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4791), 32, + 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, - ACTIONS(4495), 1, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [165298] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, anon_sym_LPAREN2, - ACTIONS(4499), 1, + ACTIONS(7021), 1, anon_sym_LBRACK, - STATE(2033), 1, - sym_new_declarator, - STATE(2200), 2, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9422), 1, + anon_sym_COMMA, + STATE(2905), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4517), 14, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4515), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [165389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4962), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4964), 32, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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, + [165434] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9424), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [4150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3741), 18, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(3743), 29, - sym_raw_string_literal, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [165525] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 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, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + ACTIONS(9426), 1, + anon_sym_COLON, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - [4205] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3405), 15, + ACTIONS(9169), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9171), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9175), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9191), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3407), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9185), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT, + [165616] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 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, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + ACTIONS(9428), 1, + anon_sym_RBRACK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [4262] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2423), 1, - anon_sym_LBRACE, - ACTIONS(4519), 1, - anon_sym_LT, - STATE(2038), 1, - sym_template_argument_list, - ACTIONS(2407), 14, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2399), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [4324] = 3, + anon_sym_LT, + [165707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 22, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(4793), 5, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_DOT, - sym_identifier, - anon_sym_decltype, - sym_auto, - anon_sym_typename, - anon_sym_template, - ACTIONS(4524), 24, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4795), 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [165752] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7676), 1, + anon_sym_STAR, + ACTIONS(7678), 1, + anon_sym_AMP_AMP, + ACTIONS(7680), 1, + anon_sym_AMP, + STATE(5584), 1, + sym_ms_call_modifier, + STATE(5891), 1, + sym__declarator, + STATE(6082), 1, + sym__scope_resolution, + STATE(7897), 1, + sym_init_declarator, + STATE(9116), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3153), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [165833] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, anon_sym_QMARK, + ACTIONS(9430), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [4378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3405), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3407), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT, + [165924] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9432), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [4432] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4526), 22, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_DOT, - sym_identifier, - anon_sym_decltype, - sym_auto, - anon_sym_typename, - anon_sym_template, - ACTIONS(4528), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8897), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8901), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LT, + [166015] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, anon_sym_QMARK, + ACTIONS(9434), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [4486] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2018), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4530), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3322), 16, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - sym_primitive_type, - anon_sym_DOT, - sym_identifier, - ACTIONS(3324), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8897), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8901), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [4544] = 6, + anon_sym_LT, + [166106] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 1, - anon_sym_LBRACE, - ACTIONS(4495), 1, + ACTIONS(6589), 1, anon_sym_LPAREN2, - STATE(2194), 2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9436), 1, + anon_sym_SEMI, + STATE(2905), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4535), 14, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4533), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT, + [166197] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9438), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [4604] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2466), 1, - anon_sym_LBRACE, - ACTIONS(4471), 1, - anon_sym_LT, - STATE(2038), 1, - sym_template_argument_list, - ACTIONS(2468), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2461), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT, + [166288] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9440), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [4666] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(4469), 1, - anon_sym_LT, - STATE(2003), 1, - sym_template_argument_list, - ACTIONS(2397), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2405), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [166379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4478), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4480), 32, + anon_sym_COMMA, + 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, - [4726] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [166424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4126), 1, + ACTIONS(4817), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4819), 32, + 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, - STATE(2300), 1, - sym_field_declaration_list, - STATE(4115), 1, - sym_virtual_specifier, - STATE(4729), 1, - sym_base_class_clause, - ACTIONS(3810), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(3423), 16, + anon_sym_try, + anon_sym_requires, + [166469] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9442), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3425), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [4792] = 6, + anon_sym_LT, + [166560] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 1, - anon_sym_LBRACE, - ACTIONS(4495), 1, + ACTIONS(6589), 1, anon_sym_LPAREN2, - STATE(2218), 2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9444), 1, + anon_sym_SEMI, + STATE(2905), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4539), 14, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4537), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT, + [166651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4797), 5, + anon_sym_AMP, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4799), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [4852] = 3, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [166696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 22, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(4890), 5, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_DOT, - sym_identifier, - anon_sym_decltype, - sym_auto, - anon_sym_typename, - anon_sym_template, - ACTIONS(4543), 24, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4892), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [166741] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7956), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9173), 1, + anon_sym_SLASH, + ACTIONS(9179), 1, + anon_sym_PIPE, + ACTIONS(9183), 1, + anon_sym_AMP, + ACTIONS(9189), 1, + anon_sym_GT_EQ, + ACTIONS(9195), 1, + anon_sym_QMARK, + ACTIONS(9197), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9199), 1, + anon_sym_bitor, + ACTIONS(9201), 1, + anon_sym_bitand, + ACTIONS(9446), 1, + anon_sym_COLON, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7958), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9169), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9171), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(9175), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9177), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9181), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(9191), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9185), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9187), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LT, + [166832] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, anon_sym_QMARK, + ACTIONS(9448), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [4906] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2305), 1, - sym_field_declaration_list, - STATE(4108), 1, - sym_virtual_specifier, - STATE(4764), 1, - sym_base_class_clause, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3483), 16, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3485), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [166923] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9450), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [4972] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4545), 1, - anon_sym_COLON, - STATE(2037), 1, - sym__enum_base_clause, - STATE(2083), 1, - sym_enumerator_list, - ACTIONS(3832), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3834), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT, + [167014] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9452), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [5032] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4547), 1, - sym_identifier, - ACTIONS(4551), 1, - sym_primitive_type, - STATE(2018), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4549), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3465), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + [167105] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, anon_sym_DOT, - ACTIONS(3463), 25, + ACTIONS(8662), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9454), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8901), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT, + [167196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4801), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4803), 32, + 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [5094] = 9, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [167241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4126), 1, + ACTIONS(4894), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4896), 32, + 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, - STATE(2302), 1, - sym_field_declaration_list, - STATE(4112), 1, - sym_virtual_specifier, - STATE(4737), 1, - sym_base_class_clause, - ACTIONS(3810), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(3471), 16, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_try, + anon_sym_requires, + [167286] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(7334), 1, + sym_auto, + ACTIONS(7336), 1, + anon_sym_decltype, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8786), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8788), 1, + anon_sym_AMP_AMP, + ACTIONS(8790), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3473), 23, + STATE(3043), 1, + sym_decltype_auto, + STATE(3505), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7065), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5282), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8496), 3, 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, anon_sym_GT2, - [5160] = 6, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [167363] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 1, - anon_sym_LBRACE, - ACTIONS(4495), 1, + ACTIONS(6009), 1, + anon_sym_RBRACK, + ACTIONS(6589), 1, anon_sym_LPAREN2, - STATE(2187), 2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4555), 14, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4553), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LT, + [167454] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5982), 1, anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 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, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [5220] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - STATE(1294), 1, - sym_template_argument_list, - ACTIONS(3358), 15, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3360), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT, + [167545] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9456), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [5278] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4545), 1, - anon_sym_COLON, - STATE(2036), 1, - sym__enum_base_clause, - STATE(2103), 1, - sym_enumerator_list, - ACTIONS(3826), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3828), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT, + [167636] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9458), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [5338] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2326), 1, - sym_field_declaration_list, - STATE(4082), 1, - sym_virtual_specifier, - STATE(4821), 1, - sym_base_class_clause, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3442), 16, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3444), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [167727] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 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, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + ACTIONS(9460), 1, + anon_sym_RBRACK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [5404] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3126), 1, - anon_sym_LBRACE, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - STATE(2152), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4559), 14, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4557), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [5464] = 9, + anon_sym_LT, + [167818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4126), 1, + ACTIONS(4805), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4807), 32, + 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, - STATE(2330), 1, - sym_field_declaration_list, - STATE(4078), 1, - sym_virtual_specifier, - STATE(4817), 1, - sym_base_class_clause, - ACTIONS(3810), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(3436), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, + anon_sym_try, + anon_sym_requires, + [167863] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(8903), 1, anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8907), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(8913), 1, anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3438), 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_LT_EQ, - anon_sym_LBRACK, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9462), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [5530] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2329), 1, - sym_field_declaration_list, - STATE(4080), 1, - sym_virtual_specifier, - STATE(4833), 1, - sym_base_class_clause, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3491), 16, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3493), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [167954] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9464), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [5596] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2080), 1, - sym_enumerator_list, - ACTIONS(3446), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3448), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, + anon_sym_LT, + [168045] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8565), 1, + anon_sym_STAR, + ACTIONS(8567), 1, + anon_sym_AMP_AMP, + ACTIONS(8569), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3582), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6859), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8718), 6, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [168116] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9466), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [5651] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2051), 1, - sym_enumerator_list, - ACTIONS(3487), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3489), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [5706] = 4, + anon_sym_LT, + [168207] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(2521), 15, + ACTIONS(6785), 1, + anon_sym_COMMA, + ACTIONS(6816), 1, + anon_sym_RPAREN, + STATE(7921), 1, + aux_sym__call_macro_with_decl_first_arg_repeat1, + ACTIONS(3097), 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_COLON, anon_sym_DOT, - ACTIONS(2514), 28, + ACTIONS(3089), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, 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, - [5761] = 10, + [168258] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2423), 1, - anon_sym_LBRACE, - ACTIONS(3877), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4564), 1, - anon_sym_LT, - ACTIONS(4567), 1, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - STATE(2085), 1, - sym_template_argument_list, - ACTIONS(4561), 2, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9468), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(2407), 13, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2399), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [168349] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8565), 1, + anon_sym_STAR, + ACTIONS(8567), 1, + anon_sym_AMP_AMP, + ACTIONS(8569), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3582), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6861), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6629), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [168420] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8565), 1, + anon_sym_STAR, + ACTIONS(8567), 1, + anon_sym_AMP_AMP, + ACTIONS(8569), 1, + anon_sym_AMP, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3582), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6862), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8700), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [168491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5010), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5012), 32, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [5828] = 6, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [168536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(4570), 1, - anon_sym_LT, - STATE(2107), 1, - sym_template_argument_list, - ACTIONS(3356), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5014), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5016), 32, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [168581] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8565), 1, + anon_sym_STAR, + ACTIONS(8567), 1, + anon_sym_AMP_AMP, + ACTIONS(8569), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3582), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6863), 1, + sym__abstract_declarator, + ACTIONS(6142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7314), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6134), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [168652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5018), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5020), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2423), 26, - anon_sym_DOT_DOT_DOT, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [168697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5022), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5024), 32, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [5887] = 4, + anon_sym_try, + anon_sym_requires, + [168742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3452), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5026), 5, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3454), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5028), 32, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [5942] = 9, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [168787] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2423), 1, - anon_sym_LBRACE, - ACTIONS(4519), 1, - anon_sym_LT, - ACTIONS(4574), 1, - anon_sym_LBRACK, - STATE(2038), 1, - sym_template_argument_list, - ACTIONS(4572), 3, - anon_sym_RPAREN, + ACTIONS(5968), 1, + anon_sym_RBRACK, + ACTIONS(6589), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(2407), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(9099), 1, anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(9103), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2399), 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, + ACTIONS(9109), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(9115), 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, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [6007] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2423), 1, - anon_sym_LBRACE, - ACTIONS(2429), 1, - anon_sym_EQ, - ACTIONS(4487), 1, - anon_sym_LT, - ACTIONS(4574), 1, - anon_sym_LBRACK, - STATE(2634), 1, - sym_template_argument_list, - ACTIONS(4572), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(2433), 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(2407), 12, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2399), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [6076] = 7, + anon_sym_LT, + [168878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2466), 1, - anon_sym_LBRACE, - ACTIONS(2473), 1, - anon_sym_LT, - STATE(2085), 1, - sym_template_argument_list, - ACTIONS(2468), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5002), 5, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2461), 27, - anon_sym_DOT_DOT_DOT, + anon_sym_const, + anon_sym___asm, + ACTIONS(5004), 32, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [6137] = 6, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [168923] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(4576), 1, - anon_sym_LT, - STATE(2107), 1, - sym_template_argument_list, - ACTIONS(2459), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(8903), 1, anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8907), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(8913), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2466), 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_LT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9470), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [6196] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4499), 1, - anon_sym_LBRACK, - STATE(2101), 1, - sym_new_declarator, - ACTIONS(4581), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4579), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [6253] = 9, + anon_sym_LT, + [169014] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2467), 1, - sym_field_declaration_list, - STATE(4063), 1, - sym_virtual_specifier, - STATE(4809), 1, - sym_base_class_clause, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3442), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8559), 1, + anon_sym_STAR, + ACTIONS(8561), 1, + anon_sym_AMP_AMP, + ACTIONS(8563), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2603), 1, + sym__type_declarator, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(8607), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [169087] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6011), 1, + anon_sym_RBRACK, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, anon_sym_DOT, - ACTIONS(3444), 28, + ACTIONS(8662), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(9095), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LT, + [169178] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8587), 1, + sym_identifier, + ACTIONS(8589), 1, + anon_sym_LPAREN2, + ACTIONS(8591), 1, + anon_sym_STAR, + ACTIONS(8593), 1, + anon_sym_AMP_AMP, + ACTIONS(8595), 1, + anon_sym_AMP, + ACTIONS(8599), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(6183), 1, + sym__type_declarator, + STATE(6322), 1, + sym_pointer_type_declarator, + STATE(8631), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6320), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [6317] = 3, + anon_sym_constinit, + anon_sym_consteval, + [169251] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3627), 14, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8607), 1, + sym_identifier, + ACTIONS(8609), 1, + anon_sym_LPAREN2, + ACTIONS(8611), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8613), 1, + anon_sym_AMP_AMP, + ACTIONS(8615), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3629), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8619), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3349), 1, + sym__type_declarator, + STATE(3689), 1, + sym_pointer_type_declarator, + STATE(8431), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8617), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3687), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [169324] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 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_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9472), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [6369] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3633), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3635), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [169415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4914), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4916), 32, + 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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, + [169460] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9474), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [6421] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3645), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3647), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LT, + [169551] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6023), 1, anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 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, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [6473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 14, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3557), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LT, + [169642] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5972), 1, anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 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, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [6525] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3475), 17, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3477), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [6579] = 4, + anon_sym_LT, + [169733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4583), 1, - sym_literal_suffix, - ACTIONS(2407), 14, + ACTIONS(7001), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(2399), 29, + ACTIONS(7003), 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, 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_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_LBRACE, 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, - [6633] = 3, + anon_sym_GT2, + [169778] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3575), 14, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8607), 1, + sym_identifier, + ACTIONS(8609), 1, + anon_sym_LPAREN2, + ACTIONS(8611), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8613), 1, + anon_sym_AMP_AMP, + ACTIONS(8615), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3577), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(8619), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3335), 1, + sym__type_declarator, + STATE(3689), 1, + sym_pointer_type_declarator, + STATE(8431), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8617), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3687), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [169851] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5030), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5032), 32, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [6685] = 3, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3587), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4918), 5, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3589), 30, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4920), 32, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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, + [169941] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9476), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [6737] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3599), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3601), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [170032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5036), 32, + 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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, + [170077] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5974), 1, + anon_sym_RBRACK, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 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, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [6789] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3591), 14, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3593), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [170168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5038), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5040), 32, + 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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, + [170213] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9478), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [6841] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3595), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3597), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [170304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5042), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5044), 32, + 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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, + [170349] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9480), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [6893] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3607), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3609), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [170440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5046), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5048), 32, + 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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, + [170485] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9482), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [6945] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3611), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3613), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [6997] = 3, + anon_sym_LT, + [170576] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 14, + ACTIONS(7510), 1, + sym_literal_suffix, + ACTIONS(6875), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3097), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(3617), 30, + ACTIONS(3089), 19, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, 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, - [7049] = 3, + [170625] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3619), 14, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9484), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3621), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [170716] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7496), 1, + anon_sym_DASH_GT, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(9389), 1, + anon_sym___attribute__, + ACTIONS(9392), 1, + anon_sym___attribute, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(5322), 1, + sym_ref_qualifier, + STATE(5826), 1, + sym_trailing_return_type, + STATE(5993), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5588), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [7101] = 3, + anon_sym_try, + [170803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4587), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5038), 5, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4585), 30, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5040), 32, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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, + [170848] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9127), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [7153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3661), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3663), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [170939] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4910), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4912), 32, + 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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, + [170984] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9486), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [7205] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3623), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3625), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [7257] = 9, + anon_sym_LT, + [171075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4106), 1, + ACTIONS(4902), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4904), 32, + 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, - STATE(2379), 1, - sym_field_declaration_list, - STATE(4022), 1, - sym_virtual_specifier, - STATE(4813), 1, - sym_base_class_clause, - ACTIONS(3810), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(3483), 9, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_try, + anon_sym_requires, + [171120] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, anon_sym_SLASH, + ACTIONS(8903), 1, anon_sym_PIPE, + ACTIONS(8907), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3485), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9488), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8901), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT, + [171211] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + ACTIONS(9490), 1, + anon_sym_RBRACK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [7321] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3689), 14, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3691), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT, + [171302] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9492), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [7373] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3503), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3505), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT, + [171393] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 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, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + ACTIONS(9494), 1, + anon_sym_RBRACK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [7425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3511), 14, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3513), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT, + [171484] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9496), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [7477] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3563), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3565), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LT, + [171575] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8571), 1, + sym_identifier, + ACTIONS(8573), 1, + anon_sym_LPAREN2, + ACTIONS(8575), 1, + anon_sym_STAR, + ACTIONS(8577), 1, + anon_sym_AMP_AMP, + ACTIONS(8579), 1, + anon_sym_AMP, + ACTIONS(8583), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(3264), 1, + sym__type_declarator, + STATE(3589), 1, + sym_pointer_type_declarator, + STATE(8597), 1, + sym_ms_based_modifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8581), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3586), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [171648] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5976), 1, anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 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, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [7529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3567), 14, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3569), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [171739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5112), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5114), 32, + 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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, + [171784] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5978), 1, + anon_sym_RBRACK, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 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, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [7581] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3499), 14, + ACTIONS(9089), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9091), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(9095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(9111), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3501), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [171875] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4735), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4737), 32, + 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, 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, + [171920] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9498), 1, + anon_sym_SEMI, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [7633] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3649), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3651), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [7685] = 3, + anon_sym_LT, + [172011] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3665), 14, + ACTIONS(6785), 1, + anon_sym_COMMA, + ACTIONS(6787), 1, + anon_sym_RPAREN, + STATE(7685), 1, + aux_sym__call_macro_with_decl_first_arg_repeat1, + ACTIONS(3097), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3667), 30, + ACTIONS(3089), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, 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, - [7737] = 3, + [172062] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 14, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9500), 1, + anon_sym_RPAREN, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [172153] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5980), 1, + anon_sym_RBRACK, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, anon_sym_DOT, - ACTIONS(3675), 30, + ACTIONS(8662), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(9093), 1, + anon_sym_SLASH, + ACTIONS(9099), 1, + anon_sym_PIPE, + ACTIONS(9103), 1, + anon_sym_AMP, + ACTIONS(9109), 1, + anon_sym_GT_EQ, + ACTIONS(9115), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9119), 1, + anon_sym_bitor, + ACTIONS(9121), 1, + anon_sym_bitand, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9089), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9091), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9095), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9097), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9101), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9111), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9105), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(9107), 3, + anon_sym_GT, anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [7789] = 23, + anon_sym_LT, + [172244] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(51), 1, anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1925), 1, + ACTIONS(2520), 1, anon_sym_TILDE, - ACTIONS(2355), 1, - anon_sym_LPAREN2, - ACTIONS(2367), 1, + ACTIONS(3197), 1, anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4423), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN2, + ACTIONS(3221), 1, anon_sym_STAR, - ACTIONS(4425), 1, + ACTIONS(3223), 1, anon_sym_AMP_AMP, - ACTIONS(4427), 1, + ACTIONS(3225), 1, anon_sym_AMP, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4431), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6624), 1, anon_sym_LBRACK, - STATE(3270), 1, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + STATE(3336), 1, sym_parameter_list, - STATE(3552), 1, + STATE(6154), 1, sym__scope_resolution, - STATE(3702), 1, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6951), 1, sym__declarator, - STATE(3943), 1, + STATE(7209), 1, sym__abstract_declarator, - STATE(5266), 1, + STATE(8684), 1, sym_ms_based_modifier, - ACTIONS(4589), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, + STATE(8447), 3, + sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(3728), 5, + STATE(6365), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, + STATE(6300), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -319753,309 +605192,503 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [7881] = 3, + [172327] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 14, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9502), 1, + anon_sym_COMMA, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3683), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT, + [172418] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9504), 1, + anon_sym_COMMA, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [7933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3452), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3454), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT, + [172509] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9506), 1, + anon_sym_COMMA, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [7985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3685), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3687), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8923), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT, + [172600] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 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, + ACTIONS(9508), 1, + anon_sym_COMMA, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [8037] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3697), 14, + ACTIONS(8895), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(8901), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(8915), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [172691] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6589), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, anon_sym_DOT, - ACTIONS(3699), 30, + ACTIONS(8662), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + ACTIONS(9510), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8901), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + [172782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4922), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4924), 32, + 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_RBRACE, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + [172827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 5, + anon_sym_AMP, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4932), 32, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [8089] = 3, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [172872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 14, + ACTIONS(7121), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3497), 30, + ACTIONS(7123), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [8141] = 23, + anon_sym_GT2, + [172916] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(51), 1, anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2355), 1, + ACTIONS(2518), 1, anon_sym_LPAREN2, - ACTIONS(2367), 1, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4433), 1, + ACTIONS(7518), 1, anon_sym_STAR, - ACTIONS(4435), 1, + ACTIONS(7520), 1, anon_sym_AMP_AMP, - ACTIONS(4437), 1, + ACTIONS(7522), 1, anon_sym_AMP, - STATE(3266), 1, - sym_parameter_list, - STATE(3552), 1, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(5557), 1, + sym_ms_call_modifier, + STATE(6141), 1, sym__scope_resolution, - STATE(3702), 1, + STATE(6790), 1, sym__declarator, - STATE(3969), 1, - sym__abstract_declarator, - STATE(5266), 1, + STATE(9008), 1, sym_ms_based_modifier, - ACTIONS(4589), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, + STATE(8447), 3, + sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, + ACTIONS(3153), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6300), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -320067,184 +605700,123 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [8233] = 3, + [172994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3693), 14, + ACTIONS(7227), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3695), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [8285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3653), 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, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3655), 30, + ACTIONS(7229), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [8337] = 4, + anon_sym_GT2, + [173038] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(2521), 15, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7520), 1, + anon_sym_AMP_AMP, + ACTIONS(7522), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2514), 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_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [8391] = 9, + STATE(5569), 1, + sym_ms_call_modifier, + STATE(6141), 1, + sym__scope_resolution, + STATE(6749), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3153), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [173116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2409), 1, - sym_field_declaration_list, - STATE(4024), 1, - sym_virtual_specifier, - STATE(4796), 1, - sym_base_class_clause, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3423), 9, + ACTIONS(7183), 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_const, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3425), 28, + ACTIONS(7185), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -320253,53 +605825,159 @@ 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_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8455] = 9, + anon_sym_GT2, + [173160] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2365), 1, - sym_field_declaration_list, - STATE(4042), 1, - sym_virtual_specifier, - STATE(4804), 1, - sym_base_class_clause, - ACTIONS(3810), 2, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, + anon_sym_STAR, + ACTIONS(7520), 1, + anon_sym_AMP_AMP, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(5543), 1, + sym_ms_call_modifier, + STATE(6141), 1, + sym__scope_resolution, + STATE(6831), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3153), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [173238] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7564), 1, + anon_sym_DASH_GT, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(5325), 1, + sym_ref_qualifier, + STATE(5826), 1, + sym_trailing_return_type, + STATE(6273), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, anon_sym_final, anon_sym_override, - ACTIONS(3471), 9, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5605), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [173324] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 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_const, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3473), 28, + ACTIONS(7225), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -320308,152 +605986,180 @@ 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_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8519] = 3, + anon_sym_GT2, + [173368] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, + anon_sym_STAR, + ACTIONS(7520), 1, + anon_sym_AMP_AMP, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(5586), 1, + sym_ms_call_modifier, + STATE(6141), 1, + sym__scope_resolution, + STATE(6748), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3153), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [173446] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 14, + ACTIONS(6875), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3097), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3521), 30, + ACTIONS(3089), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, 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, - [8571] = 4, + [173492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4593), 15, + ACTIONS(7279), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(4591), 28, + ACTIONS(7281), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_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, - [8625] = 9, + anon_sym_GT2, + [173536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2423), 1, - sym_field_declaration_list, - STATE(4069), 1, - sym_virtual_specifier, - STATE(4802), 1, - sym_base_class_clause, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3436), 9, + ACTIONS(7255), 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_const, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3438), 28, + ACTIONS(7257), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -320462,300 +606168,371 @@ 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_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8689] = 4, + anon_sym_GT2, + [173580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3405), 17, + ACTIONS(7109), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(3407), 26, + ACTIONS(7111), 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_EQ, - anon_sym_LBRACE, + anon_sym_LT_LT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, - [8743] = 3, + [173624] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4599), 14, + ACTIONS(9512), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9514), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(4561), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(4597), 30, + ACTIONS(4563), 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_STAR, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_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_literal_suffix, - [8795] = 4, + anon_sym_GT2, + [173672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3405), 17, + ACTIONS(7101), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(3407), 26, + ACTIONS(7103), 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_EQ, - anon_sym_LBRACE, + anon_sym_LT_LT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, - [8849] = 3, + [173716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3657), 14, + ACTIONS(4336), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3659), 30, + ACTIONS(4332), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [8901] = 3, + anon_sym_GT2, + [173760] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3677), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3679), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7577), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9522), 1, + anon_sym___asm, + ACTIONS(9525), 1, + anon_sym_requires, + STATE(5335), 1, + sym_ref_qualifier, + STATE(5746), 1, + sym_trailing_return_type, + STATE(5929), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9519), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5596), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [8953] = 9, + anon_sym_EQ, + anon_sym_try, + [173846] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4106), 1, + ACTIONS(9073), 1, + anon_sym___attribute__, + ACTIONS(9075), 1, + anon_sym___attribute, + ACTIONS(9163), 1, anon_sym_LBRACE, - STATE(2417), 1, - sym_field_declaration_list, - STATE(4065), 1, - sym_virtual_specifier, - STATE(4805), 1, - sym_base_class_clause, - ACTIONS(3810), 2, + STATE(5211), 1, + sym_enumerator_list, + STATE(5279), 1, + sym_attribute_specifier, + ACTIONS(5266), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5268), 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_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(3491), 9, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [173900] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, + anon_sym_STAR, + ACTIONS(7520), 1, + anon_sym_AMP_AMP, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(5550), 1, + sym_ms_call_modifier, + STATE(6141), 1, + sym__scope_resolution, + STATE(6730), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3153), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [173978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7167), 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_const, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3493), 28, + ACTIONS(7169), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -320764,1086 +606541,1316 @@ 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_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, + anon_sym_GT2, + [174022] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8629), 1, + anon_sym_STAR, + ACTIONS(8631), 1, + anon_sym_AMP_AMP, + ACTIONS(8633), 1, + anon_sym_AMP, + STATE(3798), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6937), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8718), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7475), 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [9017] = 3, + anon_sym_constinit, + anon_sym_consteval, + [174092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3705), 14, + ACTIONS(7113), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3707), 30, + ACTIONS(7115), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [9069] = 3, + anon_sym_GT2, + [174136] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8629), 1, + anon_sym_STAR, + ACTIONS(8631), 1, + anon_sym_AMP_AMP, + ACTIONS(8633), 1, + anon_sym_AMP, + STATE(3798), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6939), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6629), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [174206] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3669), 14, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8629), 1, + anon_sym_STAR, + ACTIONS(8631), 1, + anon_sym_AMP_AMP, + ACTIONS(8633), 1, + anon_sym_AMP, + STATE(3798), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6940), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8700), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [174276] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, + anon_sym_const, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8629), 1, + anon_sym_STAR, + ACTIONS(8631), 1, + anon_sym_AMP_AMP, + ACTIONS(8633), 1, + anon_sym_AMP, + STATE(3798), 1, + sym_parameter_list, + STATE(4324), 1, + sym_alignas_qualifier, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6941), 1, + sym__abstract_declarator, + ACTIONS(7490), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7314), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7475), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [174346] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7199), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3671), 30, + ACTIONS(7201), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [9121] = 3, + anon_sym_GT2, + [174390] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 14, + ACTIONS(9514), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(4647), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3561), 30, + ACTIONS(4649), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, 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_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - [9173] = 3, + anon_sym_GT2, + [174436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 14, + ACTIONS(7159), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3525), 30, + ACTIONS(7161), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [9225] = 3, + anon_sym_GT2, + [174480] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 14, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7520), 1, + anon_sym_AMP_AMP, + ACTIONS(7522), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(5582), 1, + sym_ms_call_modifier, + STATE(6141), 1, + sym__scope_resolution, + STATE(6839), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3153), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [174558] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7577), 1, + anon_sym_DASH_GT, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9522), 1, + anon_sym___asm, + STATE(5331), 1, + sym_ref_qualifier, + STATE(5718), 1, + sym_trailing_return_type, + STATE(6030), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9519), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5597), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4601), 30, - anon_sym_DOT_DOT_DOT, + anon_sym_try, + [174644] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9073), 1, + anon_sym___attribute__, + ACTIONS(9075), 1, + anon_sym___attribute, + ACTIONS(9163), 1, + anon_sym_LBRACE, + STATE(5219), 1, + sym_enumerator_list, + STATE(5255), 1, + sym_attribute_specifier, + ACTIONS(5246), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5248), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym___extension__, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [9277] = 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [174698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3515), 14, + ACTIONS(7117), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3517), 30, + ACTIONS(7119), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [9329] = 3, + anon_sym_GT2, + [174742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3507), 14, + ACTIONS(7141), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3509), 30, + ACTIONS(7143), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [9381] = 3, + anon_sym_GT2, + [174786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 14, + ACTIONS(7145), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3581), 30, + ACTIONS(7147), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [9433] = 3, + anon_sym_GT2, + [174830] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7564), 1, + anon_sym_DASH_GT, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9403), 1, + anon_sym_requires, + STATE(5327), 1, + sym_ref_qualifier, + STATE(5825), 1, + sym_trailing_return_type, + STATE(6237), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5599), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [174916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3637), 14, + ACTIONS(7239), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3639), 30, + ACTIONS(7241), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [9485] = 9, + anon_sym_GT2, + [174960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2423), 1, - anon_sym_LBRACE, - ACTIONS(2429), 1, - anon_sym_EQ, - ACTIONS(4487), 1, - anon_sym_LT, - STATE(2634), 1, - sym_template_argument_list, - ACTIONS(2433), 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(2407), 12, + ACTIONS(7155), 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_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2399), 17, + ACTIONS(7157), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + 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, - [9549] = 3, + anon_sym_GT2, + [175004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 17, + ACTIONS(7187), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(2519), 27, + ACTIONS(7189), 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_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_LT_LT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, - [9601] = 3, + [175048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3603), 14, + ACTIONS(7215), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3605), 30, + ACTIONS(7217), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [9653] = 3, + anon_sym_GT2, + [175092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3641), 14, + ACTIONS(4340), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3643), 30, + ACTIONS(1978), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [9705] = 3, + anon_sym_GT2, + [175136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3479), 17, + ACTIONS(7243), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(3481), 27, + ACTIONS(7245), 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_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_LT_LT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, - [9757] = 23, + [175180] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2355), 1, + ACTIONS(6589), 1, anon_sym_LPAREN2, - ACTIONS(2357), 1, + ACTIONS(7021), 1, + anon_sym_LBRACK, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(8662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8899), 1, + anon_sym_SLASH, + ACTIONS(8903), 1, + anon_sym_PIPE, + ACTIONS(8907), 1, + anon_sym_AMP, + ACTIONS(8913), 1, + anon_sym_GT_EQ, + ACTIONS(8917), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8919), 1, + anon_sym_bitor, + ACTIONS(8921), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_QMARK, + STATE(2905), 1, + sym_argument_list, + STATE(2910), 1, + sym_subscript_argument_list, + ACTIONS(7025), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8897), 2, anon_sym_STAR, - ACTIONS(2359), 1, + anon_sym_PERCENT, + ACTIONS(8901), 2, anon_sym_AMP_AMP, - ACTIONS(2361), 1, - anon_sym_AMP, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(2558), 1, - sym_identifier, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4439), 1, - anon_sym_COLON_COLON, - STATE(3266), 1, - sym_parameter_list, - STATE(3538), 1, - sym__scope_resolution, - STATE(3763), 1, - sym__declarator, - STATE(3969), 1, - sym__abstract_declarator, - STATE(4944), 1, - sym_ms_based_modifier, - ACTIONS(4589), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [9849] = 3, + anon_sym_and, + ACTIONS(8905), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8915), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8923), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8909), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8911), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [175268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 14, + ACTIONS(7171), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3454), 30, + ACTIONS(7173), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [9901] = 3, + anon_sym_GT2, + [175312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 14, + ACTIONS(7231), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3585), 30, + ACTIONS(7233), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [9953] = 3, + anon_sym_GT2, + [175356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 14, + ACTIONS(7211), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3703), 30, + ACTIONS(7213), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [10005] = 3, + anon_sym_GT2, + [175400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3709), 14, + ACTIONS(7125), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3711), 30, + ACTIONS(7127), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [10057] = 3, + anon_sym_GT2, + [175444] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3571), 14, + ACTIONS(3211), 1, + anon_sym_SEMI, + ACTIONS(7510), 1, + sym_literal_suffix, + ACTIONS(3097), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(3573), 30, + ACTIONS(3089), 19, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, 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, - [10109] = 23, + [175492] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(51), 1, anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(2518), 1, anon_sym_LPAREN2, - ACTIONS(1925), 1, + ACTIONS(2520), 1, anon_sym_TILDE, - ACTIONS(2367), 1, + ACTIONS(3197), 1, anon_sym_operator, - ACTIONS(4605), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, sym_identifier, - ACTIONS(4607), 1, + ACTIONS(7518), 1, anon_sym_STAR, - ACTIONS(4609), 1, + ACTIONS(7520), 1, anon_sym_AMP_AMP, - ACTIONS(4611), 1, + ACTIONS(7522), 1, anon_sym_AMP, - ACTIONS(4613), 1, + ACTIONS(7524), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, + ACTIONS(7526), 1, anon_sym_LBRACK, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3560), 1, + STATE(5579), 1, + sym_ms_call_modifier, + STATE(6141), 1, sym__scope_resolution, - STATE(3915), 1, + STATE(6771), 1, sym__declarator, - STATE(4981), 1, + STATE(9008), 1, sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2579), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3193), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4853), 2, + STATE(8447), 3, + sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, + ACTIONS(3153), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6300), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -321855,63 +607862,115 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [10200] = 23, + [175570] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7582), 1, + anon_sym_DASH_GT, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9403), 1, + anon_sym_requires, + ACTIONS(9522), 1, + anon_sym___asm, + STATE(5326), 1, + sym_ref_qualifier, + STATE(5825), 1, + sym_trailing_return_type, + STATE(6033), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9519), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5602), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [175656] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(2518), 1, anon_sym_LPAREN2, - ACTIONS(1925), 1, + ACTIONS(2520), 1, anon_sym_TILDE, - ACTIONS(2367), 1, + ACTIONS(2522), 1, + anon_sym_STAR, + ACTIONS(2524), 1, + anon_sym_AMP, + ACTIONS(3197), 1, anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, sym_identifier, - ACTIONS(4429), 1, + ACTIONS(6763), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, + ACTIONS(7526), 1, anon_sym_LBRACK, - ACTIONS(4617), 1, - anon_sym_STAR, - ACTIONS(4619), 1, - anon_sym_AMP_AMP, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3552), 1, + STATE(5581), 1, + sym_ms_call_modifier, + STATE(6154), 1, sym__scope_resolution, - STATE(3689), 1, + STATE(7000), 1, sym__declarator, - STATE(5210), 1, + STATE(8684), 1, sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2198), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(2587), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, + STATE(8447), 3, + sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, + ACTIONS(3153), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6300), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -321923,278 +607982,357 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [10291] = 3, + [175734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4625), 14, + ACTIONS(7137), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(7139), 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, + [175778] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7287), 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_EQ, anon_sym_DOT, - ACTIONS(4623), 29, + ACTIONS(7289), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_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, + [175822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7291), 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(7293), 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, + [175866] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3211), 1, anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(5720), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6687), 1, + anon_sym_LPAREN2, + ACTIONS(6693), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(3097), 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(3089), 23, + 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, - [10342] = 3, + [175918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 14, + ACTIONS(7093), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(4627), 29, + ACTIONS(7095), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [10393] = 3, + anon_sym_GT2, + [175962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 14, + ACTIONS(7295), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(2461), 29, + ACTIONS(7297), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [10444] = 3, + anon_sym_GT2, + [176006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 14, + ACTIONS(7263), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(4631), 29, + ACTIONS(7265), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [10495] = 9, + anon_sym_GT2, + [176050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4637), 13, + ACTIONS(7149), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(4635), 23, + anon_sym_DOT, + ACTIONS(7151), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [10558] = 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, + anon_sym_GT2, + [176094] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 18, + ACTIONS(9528), 1, + anon_sym_COMMA, + ACTIONS(9530), 1, + anon_sym_RBRACK, + ACTIONS(3097), 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___based, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - ACTIONS(3407), 25, + ACTIONS(3089), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -322204,19365 +608342,26458 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - [10609] = 10, + [176142] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2423), 1, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7582), 1, + anon_sym_DASH_GT, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9522), 1, + anon_sym___asm, + STATE(5340), 1, + sym_ref_qualifier, + STATE(5826), 1, + sym_trailing_return_type, + STATE(6017), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9519), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5601), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(2429), 1, anon_sym_EQ, - ACTIONS(2492), 1, anon_sym_COLON, - ACTIONS(4487), 1, - anon_sym_LT, - STATE(2634), 1, - sym_template_argument_list, - ACTIONS(2433), 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(2407), 12, + [176228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7179), 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_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2399), 15, + ACTIONS(7181), 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, + 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, - [10674] = 3, + anon_sym_GT2, + [176272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4649), 14, + ACTIONS(7207), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(4647), 29, + ACTIONS(7209), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [10725] = 3, + anon_sym_GT2, + [176316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 14, + ACTIONS(3097), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(2461), 29, + ACTIONS(3089), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [10776] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4605), 1, - sym_identifier, - ACTIONS(4607), 1, - anon_sym_STAR, - ACTIONS(4609), 1, - anon_sym_AMP_AMP, - ACTIONS(4611), 1, - anon_sym_AMP, - ACTIONS(4613), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3560), 1, - sym__scope_resolution, - STATE(3890), 1, - sym__declarator, - STATE(4981), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2557), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3193), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [10867] = 3, + anon_sym_GT2, + [176360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4653), 14, + ACTIONS(7203), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(4651), 29, + ACTIONS(7205), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, 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, - [10918] = 10, + anon_sym_GT2, + [176404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, + ACTIONS(4754), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4756), 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_COLON_COLON, - ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(2429), 1, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(4487), 1, - anon_sym_LT, - ACTIONS(4655), 1, - anon_sym_COLON, - STATE(2634), 1, - sym_template_argument_list, - ACTIONS(2433), 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(2407), 12, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [176447] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8760), 1, + sym_identifier, + ACTIONS(8762), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8764), 1, + anon_sym_AMP_AMP, + ACTIONS(8766), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2399), 15, - anon_sym_DOT_DOT_DOT, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6958), 1, + sym__field_declarator, + STATE(7110), 1, + sym_operator_name, + STATE(8704), 1, + sym_ms_based_modifier, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6712), 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(4029), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176516] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6671), 1, + anon_sym___attribute__, + ACTIONS(6673), 1, + anon_sym___attribute, + ACTIONS(6939), 1, + anon_sym_LBRACE, + ACTIONS(9533), 1, + anon_sym_COLON, + STATE(2525), 1, + sym_attribute_specifier, + STATE(2740), 1, + sym__enum_base_clause, + STATE(2793), 1, + sym_enumerator_list, + ACTIONS(5504), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5506), 26, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [176573] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7772), 1, anon_sym_DASH_GT, - [10983] = 23, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9538), 1, + anon_sym_requires, + STATE(5352), 1, + sym_ref_qualifier, + STATE(6366), 1, + sym_trailing_return_type, + STATE(6509), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5628), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [176658] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(51), 1, anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, + ACTIONS(3197), 1, anon_sym_operator, - ACTIONS(4605), 1, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8760), 1, sym_identifier, - ACTIONS(4607), 1, + ACTIONS(8762), 1, anon_sym_STAR, - ACTIONS(4609), 1, + ACTIONS(8764), 1, anon_sym_AMP_AMP, - ACTIONS(4611), 1, + ACTIONS(8766), 1, anon_sym_AMP, - ACTIONS(4613), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3560), 1, - sym__scope_resolution, - STATE(3906), 1, - sym__declarator, - STATE(4981), 1, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6970), 1, + sym__field_declarator, + STATE(7110), 1, + sym_operator_name, + STATE(8704), 1, sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2128), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(2562), 2, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, + aux_sym__type_definition_type_repeat1, + STATE(6712), 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(4029), 13, + anon_sym___extension__, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [11074] = 3, + anon_sym_constinit, + anon_sym_consteval, + [176727] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2461), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(7832), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(5375), 1, + sym_ref_qualifier, + STATE(5718), 1, + sym_trailing_return_type, + STATE(6176), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5637), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_GT2, + [176812] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7794), 1, anon_sym_DASH_GT, - [11125] = 3, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + STATE(5396), 1, + sym_ref_qualifier, + STATE(6251), 1, + sym_trailing_return_type, + STATE(6355), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5624), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [176897] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(9073), 1, + anon_sym___attribute__, + ACTIONS(9075), 1, + anon_sym___attribute, + STATE(5309), 1, + sym_attribute_specifier, + ACTIONS(5500), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2461), 29, - anon_sym_DOT_DOT_DOT, + anon_sym_const, + ACTIONS(5502), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [11176] = 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [176946] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(51), 1, anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, + ACTIONS(3197), 1, anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(8708), 1, sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4657), 1, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8712), 1, anon_sym_STAR, - ACTIONS(4659), 1, + ACTIONS(8714), 1, anon_sym_AMP_AMP, - ACTIONS(4661), 1, + ACTIONS(8716), 1, anon_sym_AMP, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3552), 1, - sym__scope_resolution, - STATE(3712), 1, - sym__declarator, - STATE(5266), 1, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6488), 1, + sym__field_declarator, + STATE(6652), 1, + sym_operator_name, + STATE(8436), 1, sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2143), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(2569), 2, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, + aux_sym__type_definition_type_repeat1, + STATE(6712), 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(4029), 13, + anon_sym___extension__, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [11267] = 3, + anon_sym_constinit, + anon_sym_consteval, + [177015] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(9073), 1, + anon_sym___attribute__, + ACTIONS(9075), 1, + anon_sym___attribute, + STATE(5293), 1, + sym_attribute_specifier, + ACTIONS(5494), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2461), 29, - anon_sym_DOT_DOT_DOT, + anon_sym_const, + ACTIONS(5496), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [11318] = 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [177064] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7821), 1, + anon_sym_DASH_GT, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(5368), 1, + sym_ref_qualifier, + STATE(6161), 1, + sym_trailing_return_type, + STATE(6505), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5633), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3407), 27, - anon_sym_DOT_DOT_DOT, + anon_sym_try, + [177149] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9073), 1, + anon_sym___attribute__, + ACTIONS(9075), 1, + anon_sym___attribute, + STATE(5263), 1, + sym_attribute_specifier, + ACTIONS(5476), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5478), 30, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, - [11369] = 3, + anon_sym_try, + anon_sym_requires, + [177198] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(6671), 1, + anon_sym___attribute__, + ACTIONS(6673), 1, + anon_sym___attribute, + ACTIONS(6939), 1, + anon_sym_LBRACE, + ACTIONS(9533), 1, + anon_sym_COLON, + STATE(2497), 1, + sym_attribute_specifier, + STATE(2736), 1, + sym__enum_base_clause, + STATE(2764), 1, + sym_enumerator_list, + ACTIONS(5454), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4663), 29, - anon_sym_DOT_DOT_DOT, + anon_sym_const, + ACTIONS(5456), 26, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [11420] = 3, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [177255] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(6986), 1, + anon_sym___attribute__, + ACTIONS(6988), 1, + anon_sym___attribute, + ACTIONS(7303), 1, + anon_sym_LBRACE, + ACTIONS(9547), 1, + anon_sym_COLON, + STATE(2941), 1, + sym__enum_base_clause, + STATE(2965), 1, + sym_enumerator_list, + STATE(3016), 1, + sym_attribute_specifier, + ACTIONS(5454), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4528), 29, + anon_sym_const, + ACTIONS(5456), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [11471] = 23, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [177312] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + ACTIONS(6547), 1, + anon_sym_const, + ACTIONS(8408), 1, anon_sym_LBRACK, - ACTIONS(4667), 1, + ACTIONS(8726), 1, + anon_sym_LPAREN2, + ACTIONS(8728), 1, anon_sym_STAR, - ACTIONS(4669), 1, + ACTIONS(8730), 1, anon_sym_AMP_AMP, - ACTIONS(4671), 1, + ACTIONS(8732), 1, anon_sym_AMP, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3552), 1, - sym__scope_resolution, - STATE(3641), 1, - sym__declarator, - STATE(5052), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2577), 2, + STATE(2434), 1, + sym_alignas_qualifier, + STATE(3672), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6950), 1, + sym__abstract_declarator, + ACTIONS(8742), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2390), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3193), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, + aux_sym__type_definition_type_repeat1, + ACTIONS(6629), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8734), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [177381] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6939), 1, + anon_sym_LBRACE, + ACTIONS(9549), 1, + anon_sym_COLON, + STATE(2497), 1, + sym_attribute_specifier, + STATE(5344), 1, + sym__enum_base_clause, + STATE(5454), 1, + sym_enumerator_list, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5456), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(5454), 25, + anon_sym_AMP, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [177436] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9073), 1, + anon_sym___attribute__, + ACTIONS(9075), 1, + anon_sym___attribute, + STATE(5314), 1, + sym_attribute_specifier, + ACTIONS(5512), 2, + anon_sym_AMP, anon_sym_const, + ACTIONS(5514), 30, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [11562] = 10, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [177485] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2423), 1, - anon_sym_LBRACE, - ACTIONS(2429), 1, - anon_sym_EQ, - ACTIONS(2455), 1, - anon_sym_COLON, - ACTIONS(4487), 1, - anon_sym_LT, - STATE(2634), 1, - sym_template_argument_list, - ACTIONS(2433), 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(2407), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(9073), 1, + anon_sym___attribute__, + ACTIONS(9075), 1, + anon_sym___attribute, + STATE(5280), 1, + sym_attribute_specifier, + ACTIONS(5480), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2399), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_const, + ACTIONS(5482), 30, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [11627] = 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [177534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4735), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4673), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4737), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [11678] = 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [177579] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(7838), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(5380), 1, + sym_ref_qualifier, + STATE(6161), 1, + sym_trailing_return_type, + STATE(6256), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5641), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4677), 29, - anon_sym_DOT_DOT_DOT, + anon_sym_GT2, + [177664] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9073), 1, + anon_sym___attribute__, + ACTIONS(9075), 1, + anon_sym___attribute, + STATE(5281), 1, + sym_attribute_specifier, + ACTIONS(5488), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5490), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [11729] = 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [177713] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7838), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + ACTIONS(9551), 1, + anon_sym_requires, + STATE(5384), 1, + sym_ref_qualifier, + STATE(6195), 1, + sym_trailing_return_type, + STATE(6268), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5622), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + anon_sym_EQ, + anon_sym_GT2, + [177798] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6547), 1, + anon_sym_const, + ACTIONS(8408), 1, anon_sym_LBRACK, - ACTIONS(4657), 1, + ACTIONS(8726), 1, + anon_sym_LPAREN2, + ACTIONS(8728), 1, anon_sym_STAR, - ACTIONS(4659), 1, + ACTIONS(8730), 1, anon_sym_AMP_AMP, - ACTIONS(4661), 1, + ACTIONS(8732), 1, anon_sym_AMP, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3552), 1, - sym__scope_resolution, - STATE(3702), 1, - sym__declarator, - STATE(5266), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2619), 2, + STATE(2434), 1, + sym_alignas_qualifier, + STATE(3672), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6968), 1, + sym__abstract_declarator, + ACTIONS(8742), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2390), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3193), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, - anon_sym_const, + aux_sym__type_definition_type_repeat1, + ACTIONS(8718), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8734), 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [11820] = 3, + anon_sym_constinit, + anon_sym_consteval, + [177867] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4683), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4681), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7794), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9554), 1, + anon_sym_requires, + STATE(5363), 1, + sym_ref_qualifier, + STATE(6299), 1, + sym_trailing_return_type, + STATE(6334), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5617), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 5, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [11871] = 23, + anon_sym_LBRACE, + anon_sym_try, + [177952] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, + ACTIONS(51), 1, anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(8708), 1, + sym_identifier, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(1927), 1, + ACTIONS(8712), 1, anon_sym_STAR, - ACTIONS(1929), 1, + ACTIONS(8714), 1, + anon_sym_AMP_AMP, + ACTIONS(8716), 1, anon_sym_AMP, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(2558), 1, - sym_identifier, - ACTIONS(4439), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3538), 1, - sym__scope_resolution, - STATE(3763), 1, - sym__declarator, - STATE(4944), 1, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6451), 1, + sym__field_declarator, + STATE(6652), 1, + sym_operator_name, + STATE(8436), 1, sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2153), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(2581), 2, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, + aux_sym__type_definition_type_repeat1, + STATE(6712), 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(4029), 13, + anon_sym___extension__, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [11962] = 3, + anon_sym_constinit, + anon_sym_consteval, + [178021] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4574), 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, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4572), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(917), 1, + sym_template_argument_list, + STATE(5392), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5072), 4, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [12013] = 3, + anon_sym_LBRACE, + ACTIONS(5070), 27, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [178072] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4687), 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, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4685), 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_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + STATE(917), 1, + sym_template_argument_list, + STATE(4521), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3087), 4, + anon_sym_AMP, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_const, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [12064] = 9, + ACTIONS(8621), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3095), 23, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [178125] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(6547), 1, + anon_sym_const, + ACTIONS(8408), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4691), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8726), 1, + anon_sym_LPAREN2, + ACTIONS(8728), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8730), 1, + anon_sym_AMP_AMP, + ACTIONS(8732), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(4689), 23, - anon_sym_DOT_DOT_DOT, + STATE(2434), 1, + sym_alignas_qualifier, + STATE(3672), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6974), 1, + sym__abstract_declarator, + ACTIONS(8742), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2390), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8700), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8734), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [178194] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9073), 1, + anon_sym___attribute__, + ACTIONS(9075), 1, + anon_sym___attribute, + STATE(5298), 1, + sym_attribute_specifier, + ACTIONS(5450), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5452), 30, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [12127] = 23, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [178243] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(51), 1, anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, + ACTIONS(3197), 1, anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(8708), 1, sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4657), 1, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8712), 1, anon_sym_STAR, - ACTIONS(4659), 1, + ACTIONS(8714), 1, anon_sym_AMP_AMP, - ACTIONS(4661), 1, + ACTIONS(8716), 1, anon_sym_AMP, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3552), 1, - sym__scope_resolution, - STATE(3696), 1, - sym__declarator, - STATE(5266), 1, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6499), 1, + sym__field_declarator, + STATE(6652), 1, + sym_operator_name, + STATE(8436), 1, sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2580), 2, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3193), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, + aux_sym__type_definition_type_repeat1, + STATE(6712), 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(4029), 13, + anon_sym___extension__, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [12218] = 3, + anon_sym_constinit, + anon_sym_consteval, + [178312] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4695), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4693), 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_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(6939), 1, + anon_sym_LBRACE, + ACTIONS(9549), 1, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [12269] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4495), 1, + STATE(2525), 1, + sym_attribute_specifier, + STATE(5339), 1, + sym__enum_base_clause, + STATE(5451), 1, + sym_enumerator_list, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5506), 3, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(4703), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4705), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(4707), 1, - anon_sym_PIPE, - ACTIONS(4709), 1, - anon_sym_CARET, - ACTIONS(4711), 1, + ACTIONS(5504), 25, anon_sym_AMP, - ACTIONS(4721), 1, - anon_sym_EQ, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4699), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4715), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4717), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4701), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4697), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [12354] = 3, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [178367] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4725), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(6986), 1, + anon_sym___attribute__, + ACTIONS(6988), 1, + anon_sym___attribute, + ACTIONS(7303), 1, + anon_sym_LBRACE, + ACTIONS(9547), 1, + anon_sym_COLON, + STATE(2962), 1, + sym__enum_base_clause, + STATE(2998), 1, + sym_enumerator_list, + STATE(3047), 1, + sym_attribute_specifier, + ACTIONS(5504), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4723), 29, + anon_sym_const, + ACTIONS(5506), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [12405] = 23, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [178424] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(6547), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8452), 1, + sym_auto, + ACTIONS(8454), 1, + anon_sym_decltype, + ACTIONS(8496), 1, + anon_sym_COLON, + ACTIONS(8726), 1, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(1927), 1, + ACTIONS(8947), 1, anon_sym_STAR, - ACTIONS(1929), 1, + ACTIONS(8949), 1, + anon_sym_AMP_AMP, + ACTIONS(8951), 1, anon_sym_AMP, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(2558), 1, - sym_identifier, - ACTIONS(4439), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3538), 1, - sym__scope_resolution, - STATE(3773), 1, - sym__declarator, - STATE(4944), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2599), 2, + STATE(2434), 1, + sym_alignas_qualifier, + STATE(2508), 1, + sym_decltype_auto, + STATE(3668), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7212), 1, + sym__abstract_declarator, + ACTIONS(8742), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5378), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3193), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, - anon_sym_const, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8734), 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__Nonnull, anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [178499] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6547), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8726), 1, + anon_sym_LPAREN2, + ACTIONS(8728), 1, + anon_sym_STAR, + ACTIONS(8730), 1, + anon_sym_AMP_AMP, + ACTIONS(8732), 1, + anon_sym_AMP, + STATE(2434), 1, + sym_alignas_qualifier, + STATE(3672), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6952), 1, + sym__abstract_declarator, + ACTIONS(8742), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2390), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7314), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8734), 12, + anon_sym___extension__, anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [12496] = 8, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [178568] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 1, - anon_sym_LBRACE, - ACTIONS(4727), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4729), 1, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, anon_sym_LBRACK, - STATE(2243), 1, - sym_new_declarator, - STATE(2391), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4509), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8750), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8752), 1, + anon_sym_AMP_AMP, + ACTIONS(8754), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(3371), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6988), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7314), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4507), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [12557] = 3, + anon_sym_try, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [178637] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 14, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9557), 1, + sym_identifier, + ACTIONS(9563), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5364), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4683), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4674), 4, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(9560), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4676), 6, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2399), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + sym_auto, + anon_sym_decltype, + ACTIONS(4678), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [178696] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7471), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7832), 1, anon_sym_DASH_GT, - [12608] = 20, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9525), 1, + anon_sym_requires, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(5389), 1, + sym_ref_qualifier, + STATE(5746), 1, + sym_trailing_return_type, + STATE(6215), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5639), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [178781] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(4703), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4705), 1, - anon_sym_AMP_AMP, - ACTIONS(4707), 1, - anon_sym_PIPE, - ACTIONS(4709), 1, - anon_sym_CARET, - ACTIONS(4711), 1, + ACTIONS(9073), 1, + anon_sym___attribute__, + ACTIONS(9075), 1, + anon_sym___attribute, + STATE(5290), 1, + sym_attribute_specifier, + ACTIONS(5484), 2, anon_sym_AMP, - ACTIONS(4733), 1, - anon_sym_EQ, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4699), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4715), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4717), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4701), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4731), 17, - anon_sym_DOT_DOT_DOT, + anon_sym_const, + ACTIONS(5486), 30, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + 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, - [12693] = 8, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [178830] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 1, - anon_sym_LBRACE, - ACTIONS(4727), 1, + ACTIONS(9566), 1, + sym_identifier, + ACTIONS(9572), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5373), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4730), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5237), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4721), 4, anon_sym_LPAREN2, - ACTIONS(4729), 1, - anon_sym_LBRACK, - STATE(2242), 1, - sym_new_declarator, - STATE(2428), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4513), 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_AMP, + anon_sym_LBRACE, + ACTIONS(9569), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4723), 6, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4511), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + sym_auto, + anon_sym_decltype, + ACTIONS(4725), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [178889] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7821), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [12754] = 11, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9551), 1, + anon_sym_requires, + STATE(5374), 1, + sym_ref_qualifier, + STATE(6195), 1, + sym_trailing_return_type, + STATE(6463), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5630), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [178974] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(6547), 1, + anon_sym_const, + ACTIONS(8408), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4699), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4701), 3, + ACTIONS(8452), 1, + sym_auto, + ACTIONS(8454), 1, + anon_sym_decltype, + ACTIONS(8504), 1, + anon_sym_COLON, + ACTIONS(8726), 1, + anon_sym_LPAREN2, + ACTIONS(8947), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4691), 8, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8949), 1, + anon_sym_AMP_AMP, + ACTIONS(8951), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(4689), 23, - anon_sym_DOT_DOT_DOT, + STATE(2434), 1, + sym_alignas_qualifier, + STATE(2508), 1, + sym_decltype_auto, + STATE(3668), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7182), 1, + sym__abstract_declarator, + ACTIONS(8742), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8734), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [179049] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9073), 1, + anon_sym___attribute__, + ACTIONS(9075), 1, + anon_sym___attribute, + STATE(5252), 1, + sym_attribute_specifier, + ACTIONS(5516), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5518), 30, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [12821] = 3, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [179098] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8704), 1, + sym_auto, + ACTIONS(8706), 1, + anon_sym_decltype, + STATE(5278), 1, + sym_decltype_auto, + ACTIONS(4785), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2399), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4787), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [12872] = 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [179147] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(51), 1, anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, + ACTIONS(3197), 1, anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8760), 1, sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4667), 1, + ACTIONS(8762), 1, anon_sym_STAR, - ACTIONS(4669), 1, + ACTIONS(8764), 1, anon_sym_AMP_AMP, - ACTIONS(4671), 1, + ACTIONS(8766), 1, anon_sym_AMP, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3552), 1, - sym__scope_resolution, - STATE(3598), 1, - sym__declarator, - STATE(5052), 1, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6948), 1, + sym__field_declarator, + STATE(7110), 1, + sym_operator_name, + STATE(8704), 1, sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2139), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(2555), 2, + ACTIONS(4031), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, + aux_sym__type_definition_type_repeat1, + STATE(6712), 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(4029), 13, + anon_sym___extension__, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [12963] = 3, + anon_sym_constinit, + anon_sym_consteval, + [179216] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(9073), 1, + anon_sym___attribute__, + ACTIONS(9075), 1, + anon_sym___attribute, + STATE(5320), 1, + sym_attribute_specifier, + ACTIONS(5446), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4524), 29, - anon_sym_DOT_DOT_DOT, + anon_sym_const, + ACTIONS(5448), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [13014] = 10, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [179265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2423), 1, - anon_sym_LBRACE, - ACTIONS(2429), 1, - anon_sym_EQ, - ACTIONS(2431), 1, - anon_sym_COLON, - ACTIONS(4487), 1, - anon_sym_LT, - STATE(2634), 1, - sym_template_argument_list, - ACTIONS(2433), 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(2407), 12, + ACTIONS(3211), 1, + anon_sym_SEMI, + ACTIONS(3097), 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_LT, - anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2399), 15, + ACTIONS(3089), 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, + 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, - [13079] = 3, + [179310] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4735), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7772), 1, + anon_sym_DASH_GT, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(5359), 1, + sym_ref_qualifier, + STATE(6393), 1, + sym_trailing_return_type, + STATE(6454), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5619), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [13130] = 12, + anon_sym_LBRACE, + [179395] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9073), 1, + anon_sym___attribute__, + ACTIONS(9075), 1, + anon_sym___attribute, + STATE(5319), 1, + sym_attribute_specifier, + ACTIONS(5462), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5464), 30, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4699), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4701), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4691), 6, - anon_sym_PIPE, - anon_sym_CARET, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [179444] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9073), 1, + anon_sym___attribute__, + ACTIONS(9075), 1, + anon_sym___attribute, + STATE(5276), 1, + sym_attribute_specifier, + ACTIONS(5522), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(4689), 23, - anon_sym_DOT_DOT_DOT, + anon_sym_const, + ACTIONS(5524), 30, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [13199] = 3, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [179493] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 14, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8750), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8752), 1, + anon_sym_AMP_AMP, + ACTIONS(8754), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(3371), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6967), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6629), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4627), 29, - anon_sym_DOT_DOT_DOT, + anon_sym_try, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [179562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5042), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5044), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [13250] = 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [179604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4741), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5010), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4739), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5012), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [13301] = 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [179646] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4745), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4743), 29, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7851), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9575), 1, + anon_sym_requires, + STATE(5424), 1, + sym_ref_qualifier, + STATE(6545), 1, + sym_trailing_return_type, + STATE(6551), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5654), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 4, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [179730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4896), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [13352] = 14, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [179772] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4699), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4715), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4717), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4701), 3, + ACTIONS(8786), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4691), 4, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8788), 1, + anon_sym_AMP_AMP, + ACTIONS(8790), 1, anon_sym_AMP, - anon_sym_EQ, - ACTIONS(4689), 21, + STATE(3505), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7062), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8718), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_GT2, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [179840] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3311), 1, + anon_sym_AMP, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + STATE(3336), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7020), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8718), 3, + 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, - [13425] = 3, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [179908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4749), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4789), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4747), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4791), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [13476] = 10, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [179950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2423), 1, + ACTIONS(5038), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5040), 31, + 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, - ACTIONS(2429), 1, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2457), 1, - anon_sym_COLON, - ACTIONS(4487), 1, - anon_sym_LT, - STATE(2634), 1, - sym_template_argument_list, - ACTIONS(2433), 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(2407), 12, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [179992] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8786), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8788), 1, + anon_sym_AMP_AMP, + ACTIONS(8790), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2399), 15, + STATE(3505), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7023), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6629), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_GT2, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [180060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4934), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4936), 31, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [13541] = 12, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [180102] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2423), 1, - anon_sym_LBRACE, - ACTIONS(4487), 1, - anon_sym_LT, - ACTIONS(4751), 1, - anon_sym_COMMA, - ACTIONS(4754), 1, - anon_sym_RBRACK, - ACTIONS(4757), 1, - anon_sym_EQ, - STATE(2634), 1, - sym_template_argument_list, - STATE(4345), 1, - aux_sym_structured_binding_declarator_repeat1, - ACTIONS(4759), 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(2407), 12, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8786), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8788), 1, + anon_sym_AMP_AMP, + ACTIONS(8790), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2399), 13, + STATE(3505), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7024), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7314), 3, anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [13610] = 3, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [180170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4763), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4954), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4761), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4956), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [13661] = 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [180212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5002), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2461), 28, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5004), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [13712] = 3, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [180254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4962), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2461), 28, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4964), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [13763] = 3, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [180296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5006), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2461), 28, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5008), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [13814] = 15, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [180338] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4699), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4715), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4717), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4701), 3, + ACTIONS(3307), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4691), 4, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3309), 1, + anon_sym_AMP_AMP, + ACTIONS(3311), 1, anon_sym_AMP, - anon_sym_EQ, - ACTIONS(4689), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + STATE(3336), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7080), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8700), 3, 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, - [13889] = 3, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [180406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4902), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2461), 28, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4904), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [13940] = 16, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [180448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(4910), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4912), 31, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(4711), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4699), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4715), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4717), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4691), 3, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_EQ, - ACTIONS(4701), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4689), 19, - anon_sym_DOT_DOT_DOT, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [180490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5066), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5068), 31, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, + anon_sym_STAR, 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, - [14017] = 8, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [180532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(4918), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4920), 31, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4767), 13, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(4765), 25, - anon_sym_DOT_DOT_DOT, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [180574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5014), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5016), 31, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [14078] = 17, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [180616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(4922), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4924), 31, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(4709), 1, - anon_sym_CARET, - ACTIONS(4711), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4691), 2, - anon_sym_PIPE, anon_sym_EQ, - ACTIONS(4699), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4715), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4717), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4701), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4689), 19, - anon_sym_DOT_DOT_DOT, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [180658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4932), 31, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, + anon_sym_STAR, 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, - [14157] = 3, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [180700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5050), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2461), 28, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5052), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [14208] = 18, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [180742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(5046), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5048), 31, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(4691), 1, anon_sym_EQ, - ACTIONS(4707), 1, - anon_sym_PIPE, - ACTIONS(4709), 1, - anon_sym_CARET, - ACTIONS(4711), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [180784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5018), 3, anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4699), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4715), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4717), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4701), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4689), 19, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5020), 31, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, + anon_sym_STAR, 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, - [14289] = 19, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [180826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(5104), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5106), 31, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(4691), 1, anon_sym_EQ, - ACTIONS(4705), 1, - anon_sym_AMP_AMP, - ACTIONS(4707), 1, - anon_sym_PIPE, - ACTIONS(4709), 1, - anon_sym_CARET, - ACTIONS(4711), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [180868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4801), 3, anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4699), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4715), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4717), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4701), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4689), 18, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4803), 31, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, + anon_sym_STAR, + 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, - [14372] = 23, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [180910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(4805), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4807), 31, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4657), 1, anon_sym_STAR, - ACTIONS(4659), 1, anon_sym_AMP_AMP, - ACTIONS(4661), 1, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [180952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4890), 3, anon_sym_AMP, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3552), 1, - sym__scope_resolution, - STATE(3702), 1, - sym__declarator, - STATE(5266), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2149), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(2619), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, + anon_sym___attribute, anon_sym_const, + ACTIONS(4892), 31, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [14463] = 23, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [180994] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, anon_sym_LBRACK, - ACTIONS(4617), 1, + ACTIONS(8786), 1, anon_sym_STAR, - ACTIONS(4619), 1, + ACTIONS(8788), 1, anon_sym_AMP_AMP, - ACTIONS(4621), 1, + ACTIONS(8790), 1, anon_sym_AMP, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3552), 1, - sym__scope_resolution, - STATE(3670), 1, - sym__declarator, - STATE(5210), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2607), 2, + STATE(3505), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7047), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3193), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, - anon_sym_const, + aux_sym__type_definition_type_repeat1, + ACTIONS(8700), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8402), 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [14554] = 20, + anon_sym_constinit, + anon_sym_consteval, + [181062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(5022), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5024), 31, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(4703), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4705), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(4707), 1, - anon_sym_PIPE, - ACTIONS(4709), 1, - anon_sym_CARET, - ACTIONS(4711), 1, - anon_sym_AMP, - ACTIONS(4771), 1, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4699), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4715), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4717), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4701), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4769), 17, - anon_sym_DOT_DOT_DOT, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [181104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4958), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4960), 31, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + 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, - [14639] = 3, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [181146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4775), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5054), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4773), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5056), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [14690] = 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [181188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4779), 14, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4906), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4908), 31, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [181230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4938), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4777), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4940), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [14741] = 10, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [181272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4701), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4691), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4942), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(4689), 23, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4944), 31, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [14806] = 3, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [181314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1529), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4914), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(1531), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4916), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [14857] = 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [181356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4974), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4543), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4976), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [181398] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7496), 1, anon_sym_DASH_GT, - [14908] = 23, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(9389), 1, + anon_sym___attribute__, + ACTIONS(9392), 1, + anon_sym___attribute, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(5826), 1, + sym_trailing_return_type, + STATE(5993), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5588), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [181476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(4926), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4928), 31, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4667), 1, anon_sym_STAR, - ACTIONS(4669), 1, anon_sym_AMP_AMP, - ACTIONS(4671), 1, - anon_sym_AMP, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3552), 1, - sym__scope_resolution, - STATE(3598), 1, - sym__declarator, - STATE(5052), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2555), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3193), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, - anon_sym_const, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [14999] = 3, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [181518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1518), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4970), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(1520), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4972), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [15050] = 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [181560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4783), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4898), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4781), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4900), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [181602] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7496), 1, anon_sym_DASH_GT, - [15101] = 23, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(9389), 1, + anon_sym___attribute__, + ACTIONS(9392), 1, + anon_sym___attribute, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9403), 1, + anon_sym_requires, + STATE(5825), 1, + sym_trailing_return_type, + STATE(6065), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5565), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [181680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(5026), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5028), 31, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4605), 1, - sym_identifier, - ACTIONS(4607), 1, anon_sym_STAR, - ACTIONS(4609), 1, anon_sym_AMP_AMP, - ACTIONS(4611), 1, - anon_sym_AMP, - ACTIONS(4613), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3560), 1, - sym__scope_resolution, - STATE(3890), 1, - sym__declarator, - STATE(4981), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2117), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(2557), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, - anon_sym_const, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [15192] = 12, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [181722] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2423), 1, - anon_sym_LBRACE, - ACTIONS(4487), 1, - anon_sym_LT, - ACTIONS(4754), 1, - anon_sym_RBRACK, - ACTIONS(4757), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_COMMA, - STATE(2634), 1, - sym_template_argument_list, - STATE(4345), 1, - aux_sym_structured_binding_declarator_repeat1, - ACTIONS(4759), 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(2407), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2399), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7496), 1, anon_sym_DASH_GT, - [15261] = 8, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(9580), 1, + anon_sym___attribute__, + ACTIONS(9583), 1, + anon_sym___attribute, + ACTIONS(9586), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9594), 1, + anon_sym_requires, + STATE(5890), 1, + sym_trailing_return_type, + STATE(6068), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5567), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9578), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [181800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 1, - anon_sym_LBRACE, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4729), 1, - anon_sym_LBRACK, - STATE(2251), 1, - sym_new_declarator, - STATE(2399), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4497), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5058), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4493), 21, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5060), 31, anon_sym_COMMA, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [15322] = 23, + anon_sym_try, + anon_sym_requires, + [181842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(4982), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4984), 31, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4617), 1, anon_sym_STAR, - ACTIONS(4619), 1, anon_sym_AMP_AMP, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3552), 1, - sym__scope_resolution, - STATE(3671), 1, - sym__declarator, - STATE(5210), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2551), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3193), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, - anon_sym_const, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [15413] = 3, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [181884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4789), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5112), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4787), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5114), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [15464] = 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [181926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4793), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4490), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4791), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4492), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [15515] = 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [181968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(4793), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4795), 31, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4617), 1, anon_sym_STAR, - ACTIONS(4619), 1, anon_sym_AMP_AMP, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3552), 1, - sym__scope_resolution, - STATE(3671), 1, - sym__declarator, - STATE(5210), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2185), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(2551), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, - anon_sym_const, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [15606] = 4, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [182010] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4795), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4593), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4591), 27, + ACTIONS(123), 1, + sym_auto, + ACTIONS(125), 1, + anon_sym_decltype, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(1817), 1, + anon_sym_enum, + ACTIONS(1819), 1, + anon_sym_class, + ACTIONS(1821), 1, + anon_sym_struct, + ACTIONS(1823), 1, + anon_sym_union, + ACTIONS(1847), 1, + anon_sym_typename, + ACTIONS(2538), 1, + sym_primitive_type, + ACTIONS(3313), 1, + anon_sym_COLON_COLON, + ACTIONS(6213), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6217), 1, + anon_sym_EQ, + ACTIONS(9597), 1, + sym_identifier, + STATE(1356), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1364), 1, + sym_type_specifier, + STATE(1424), 1, + sym_decltype_auto, + STATE(1612), 1, + sym_qualified_type_identifier, + STATE(6924), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + ACTIONS(6215), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(1357), 2, + sym_decltype, + sym_template_type, + ACTIONS(57), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1397), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [182094] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4735), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4737), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [15659] = 3, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [182136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5062), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4631), 28, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5064), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [15710] = 3, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [182178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4799), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4817), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4797), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4819), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [15761] = 21, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [182220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(4703), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4705), 1, - anon_sym_AMP_AMP, - ACTIONS(4707), 1, - anon_sym_PIPE, - ACTIONS(4709), 1, - anon_sym_CARET, - ACTIONS(4711), 1, + ACTIONS(4898), 3, anon_sym_AMP, - ACTIONS(4801), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4805), 1, - anon_sym_EQ, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4699), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4715), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4717), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4701), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4803), 16, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4900), 31, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + 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, - [15848] = 3, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [182262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4809), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5030), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4807), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5032), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [15899] = 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [182304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4813), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4946), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4811), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4948), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [15950] = 8, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [182346] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 1, - anon_sym_LBRACE, - ACTIONS(4727), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4729), 1, - anon_sym_LBRACK, - STATE(2259), 1, - sym_new_declarator, - STATE(2485), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4517), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3307), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3309), 1, + anon_sym_AMP_AMP, + ACTIONS(3311), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4515), 21, - anon_sym_DOT_DOT_DOT, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + STATE(3336), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7041), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7314), 3, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [16011] = 3, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [182414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4817), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4978), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4815), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4980), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [16062] = 9, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [182456] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4821), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3307), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3309), 1, + anon_sym_AMP_AMP, + ACTIONS(3311), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(4819), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(4029), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + STATE(3336), 1, + sym_parameter_list, + STATE(4606), 1, + sym_alignas_qualifier, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7056), 1, + sym__abstract_declarator, + ACTIONS(8410), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4463), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6629), 3, 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_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [16125] = 3, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8402), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [182524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4823), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5034), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(1613), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5036), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [16176] = 12, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [182566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4699), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4701), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4827), 6, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4950), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(4825), 23, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4952), 31, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [16245] = 3, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [182608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4831), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5038), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4829), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5040), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [16296] = 9, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [182650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4835), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4898), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(4833), 23, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4900), 31, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [16359] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2423), 1, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, - ACTIONS(2429), 1, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2486), 1, - anon_sym_COLON, - ACTIONS(4487), 1, - anon_sym_LT, - STATE(2634), 1, - sym_template_argument_list, - ACTIONS(2433), 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(2407), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [182692] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2399), 15, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7851), 1, + anon_sym_DASH_GT, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(5419), 1, + sym_ref_qualifier, + STATE(6534), 1, + sym_trailing_return_type, + STATE(6539), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5651), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 4, 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_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [16424] = 23, + anon_sym_GT2, + [182776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(4735), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4737), 31, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4667), 1, anon_sym_STAR, - ACTIONS(4669), 1, anon_sym_AMP_AMP, - ACTIONS(4671), 1, - anon_sym_AMP, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3552), 1, - sym__scope_resolution, - STATE(3627), 1, - sym__declarator, - STATE(5052), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2192), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(2610), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, - anon_sym_const, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [16515] = 3, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [182818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4809), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4837), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4811), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [16566] = 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [182860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4843), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4797), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4841), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4799), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [16617] = 5, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [182902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4849), 1, - anon_sym_LT, - STATE(2147), 1, - sym_template_argument_list, - ACTIONS(4847), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4813), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4845), 28, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4815), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [16672] = 6, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [182944] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 1, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7496), 1, + anon_sym_DASH_GT, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(9580), 1, + anon_sym___attribute__, + ACTIONS(9583), 1, + anon_sym___attribute, + ACTIONS(9586), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9589), 1, + anon_sym_LBRACK, + STATE(5809), 1, + sym_trailing_return_type, + STATE(6003), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5559), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9578), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - STATE(2278), 1, - sym__enum_base_clause, - STATE(2298), 1, - sym_enumerator_list, - ACTIONS(3826), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_try, + [183022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4966), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3828), 24, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(4968), 31, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___extension__, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [16729] = 6, + anon_sym_try, + anon_sym_requires, + [183064] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 1, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7582), 1, + anon_sym_DASH_GT, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9403), 1, + anon_sym_requires, + ACTIONS(9522), 1, + anon_sym___asm, + STATE(5825), 1, + sym_trailing_return_type, + STATE(6033), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9519), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5602), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - STATE(2279), 1, - sym__enum_base_clause, - STATE(2309), 1, - sym_enumerator_list, - ACTIONS(3832), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, + [183141] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7564), 1, + anon_sym_DASH_GT, + ACTIONS(9586), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9589), 1, + anon_sym_LBRACK, + STATE(5809), 1, + sym_trailing_return_type, + STATE(6223), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5612), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9578), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3834), 24, - anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_try, + [183218] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7582), 1, + anon_sym_DASH_GT, + ACTIONS(9586), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9594), 1, + anon_sym_requires, + ACTIONS(9602), 1, + anon_sym___asm, + STATE(5890), 1, + sym_trailing_return_type, + STATE(6034), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9599), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5604), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9578), 6, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [183295] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7564), 1, + anon_sym_DASH_GT, + ACTIONS(9586), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9589), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(9594), 1, + anon_sym_requires, + STATE(5890), 1, + sym_trailing_return_type, + STATE(6222), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5598), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9578), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [183372] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7564), 1, + anon_sym_DASH_GT, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9403), 1, + anon_sym_requires, + STATE(5825), 1, + sym_trailing_return_type, + STATE(6237), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5599), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [183449] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(8094), 1, anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(5482), 1, + sym_ref_qualifier, + STATE(6427), 1, + sym__function_attributes_end, + STATE(6534), 1, + sym_trailing_return_type, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_GT2, - [16786] = 3, + STATE(5658), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [183532] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4856), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(8104), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9525), 1, + anon_sym_requires, + STATE(5480), 1, + sym_ref_qualifier, + STATE(5746), 1, + sym_trailing_return_type, + STATE(6589), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4854), 29, - anon_sym_DOT_DOT_DOT, + STATE(5664), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [183615] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7577), 1, + anon_sym_DASH_GT, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9602), 1, + anon_sym___asm, + ACTIONS(9605), 1, + anon_sym_LBRACK_LBRACK, + STATE(5730), 1, + sym_trailing_return_type, + STATE(6049), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9599), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5609), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9578), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [16837] = 3, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [183692] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4593), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4591), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7577), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9522), 1, + anon_sym___asm, + ACTIONS(9525), 1, + anon_sym_requires, + STATE(5746), 1, + sym_trailing_return_type, + STATE(5929), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9519), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5596), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [16888] = 23, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [183769] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7471), 1, anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(1927), 1, - anon_sym_STAR, - ACTIONS(1929), 1, + ACTIONS(7473), 1, anon_sym_AMP, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(2558), 1, - sym_identifier, - ACTIONS(4439), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(8094), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, anon_sym_LBRACK, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3538), 1, - sym__scope_resolution, - STATE(3743), 1, - sym__declarator, - STATE(4944), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2228), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(2608), 2, - sym_type_qualifier, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + ACTIONS(9575), 1, + anon_sym_requires, + STATE(5475), 1, + sym_ref_qualifier, + STATE(6433), 1, + sym__function_attributes_end, + STATE(6545), 1, + sym_trailing_return_type, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [16979] = 20, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + STATE(5680), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [183852] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(4703), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4705), 1, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7471), 1, anon_sym_AMP_AMP, - ACTIONS(4707), 1, - anon_sym_PIPE, - ACTIONS(4709), 1, - anon_sym_CARET, - ACTIONS(4711), 1, + ACTIONS(7473), 1, anon_sym_AMP, - ACTIONS(4860), 1, - anon_sym_EQ, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4699), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4715), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4717), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4701), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4858), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(5525), 1, + sym_ref_qualifier, + STATE(6393), 1, + sym_trailing_return_type, + STATE(6481), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, 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, - [17064] = 22, + anon_sym_LPAREN2, + STATE(5675), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [183935] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7577), 1, anon_sym_DASH_GT, - ACTIONS(4703), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4705), 1, - anon_sym_AMP_AMP, - ACTIONS(4707), 1, - anon_sym_PIPE, - ACTIONS(4709), 1, - anon_sym_CARET, - ACTIONS(4711), 1, - anon_sym_AMP, - ACTIONS(4801), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4864), 1, - anon_sym_EQ, - ACTIONS(4866), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4699), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4715), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4717), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4701), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4862), 15, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9602), 1, + anon_sym___asm, + ACTIONS(9605), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9608), 1, + anon_sym_requires, + STATE(5747), 1, + sym_trailing_return_type, + STATE(5932), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9599), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5600), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9578), 6, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, 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, - [17153] = 8, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [184012] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7582), 1, anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4870), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9522), 1, + anon_sym___asm, + STATE(5826), 1, + sym_trailing_return_type, + STATE(6017), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9519), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5601), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(4868), 25, - anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + [184089] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9538), 1, + anon_sym_requires, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(5502), 1, + sym_ref_qualifier, + STATE(6366), 1, + sym_trailing_return_type, + STATE(6485), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, 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_LT_EQ, + anon_sym_LPAREN2, + STATE(5681), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [184172] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7564), 1, + anon_sym_DASH_GT, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(5826), 1, + sym_trailing_return_type, + STATE(6273), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5605), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 6, + anon_sym_LPAREN2, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - [17214] = 23, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [184249] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(6939), 1, + anon_sym_LBRACE, + STATE(2477), 1, + sym_attribute_specifier, + STATE(5455), 1, + sym_enumerator_list, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5248), 3, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(1927), 1, anon_sym_STAR, - ACTIONS(1929), 1, + anon_sym_AMP_AMP, + ACTIONS(5246), 25, anon_sym_AMP, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(2558), 1, - sym_identifier, - ACTIONS(4439), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3538), 1, - sym__scope_resolution, - STATE(3763), 1, - sym__declarator, - STATE(4944), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2581), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3193), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [17305] = 6, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [184298] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3877), 1, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7582), 1, + anon_sym_DASH_GT, + ACTIONS(9586), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4567), 1, + ACTIONS(9589), 1, anon_sym_LBRACK, - ACTIONS(4561), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(2407), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2399), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(9602), 1, + anon_sym___asm, + STATE(5809), 1, + sym_trailing_return_type, + STATE(6024), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9599), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5606), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9578), 6, 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_LT_EQ, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [184375] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7577), 1, anon_sym_DASH_GT, - [17361] = 8, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9522), 1, + anon_sym___asm, + STATE(5718), 1, + sym_trailing_return_type, + STATE(6030), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9519), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5597), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [184452] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, - anon_sym_EQ, - ACTIONS(3877), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4567), 1, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8927), 1, + anon_sym_LBRACE, + ACTIONS(9611), 1, + anon_sym_COLON, + STATE(4719), 1, + sym__enum_base_clause, + STATE(4825), 1, + sym_enumerator_list, + STATE(5037), 1, + sym_attribute_specifier, + ACTIONS(5454), 3, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(4561), 2, - anon_sym_RPAREN, + anon_sym_const, + ACTIONS(5456), 23, anon_sym_LPAREN2, - ACTIONS(2433), 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(2407), 13, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2399), 14, - 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_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [17421] = 7, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [184507] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2466), 1, + ACTIONS(4277), 1, anon_sym_LBRACE, - ACTIONS(4474), 1, - anon_sym_LT, - STATE(2276), 1, - sym_template_argument_list, - ACTIONS(2468), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(9613), 1, + anon_sym_LPAREN2, + STATE(2768), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4002), 1, + sym_argument_list, + STATE(5142), 1, + sym_initializer_list, + ACTIONS(4735), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2461), 23, + anon_sym_const, + ACTIONS(6961), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4737), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + anon_sym___extension__, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [17479] = 5, + [184560] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2335), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(4872), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(2317), 15, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6939), 1, + anon_sym_LBRACE, + STATE(2472), 1, + sym_attribute_specifier, + STATE(5458), 1, + sym_enumerator_list, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5268), 3, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(2315), 24, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [17533] = 3, + ACTIONS(5266), 25, + anon_sym_AMP, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [184609] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4574), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8927), 1, + anon_sym_LBRACE, + ACTIONS(9611), 1, + anon_sym_COLON, + STATE(4652), 1, + sym__enum_base_clause, + STATE(4859), 1, + sym_enumerator_list, + STATE(4933), 1, + sym_attribute_specifier, + ACTIONS(5504), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4572), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_const, + ACTIONS(5506), 23, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [17583] = 3, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [184664] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4799), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(8104), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + STATE(5498), 1, + sym_ref_qualifier, + STATE(5718), 1, + sym_trailing_return_type, + STATE(6585), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4797), 27, - anon_sym_DOT_DOT_DOT, + STATE(5665), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [184747] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6279), 1, + anon_sym_COLON_COLON, + ACTIONS(8234), 1, + sym_primitive_type, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + ACTIONS(9616), 1, + sym_identifier, + ACTIONS(9620), 1, + anon_sym_enum, + ACTIONS(9622), 1, + anon_sym_class, + ACTIONS(9624), 1, + anon_sym_struct, + ACTIONS(9626), 1, + anon_sym_union, + ACTIONS(9628), 1, + anon_sym_typename, + STATE(2482), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4269), 1, + sym_type_specifier, + STATE(5528), 1, + sym_argument_list, + STATE(6899), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2446), 2, + sym_decltype, + sym_template_type, + ACTIONS(9618), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [184827] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + ACTIONS(9630), 1, + sym_identifier, + ACTIONS(9634), 1, + sym_primitive_type, + ACTIONS(9636), 1, + anon_sym_enum, + ACTIONS(9638), 1, + anon_sym_class, + ACTIONS(9640), 1, + anon_sym_struct, + ACTIONS(9642), 1, + anon_sym_union, + ACTIONS(9644), 1, + sym_auto, + ACTIONS(9646), 1, + anon_sym_decltype, + ACTIONS(9648), 1, + anon_sym_typename, + STATE(2361), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2535), 1, + sym_type_specifier, + STATE(2670), 1, + sym_qualified_type_identifier, + STATE(2694), 1, + sym_decltype_auto, + STATE(5487), 1, + sym_argument_list, + STATE(6911), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2600), 2, + sym_decltype, + sym_template_type, + ACTIONS(9632), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2668), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [184907] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7772), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9538), 1, + anon_sym_requires, + STATE(6366), 1, + sym_trailing_return_type, + STATE(6509), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5628), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [17633] = 3, + anon_sym_LBRACE, + [184983] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2449), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + ACTIONS(9630), 1, + sym_identifier, + ACTIONS(9634), 1, + sym_primitive_type, + ACTIONS(9636), 1, + anon_sym_enum, + ACTIONS(9638), 1, + anon_sym_class, + ACTIONS(9640), 1, + anon_sym_struct, + ACTIONS(9642), 1, + anon_sym_union, + ACTIONS(9644), 1, + sym_auto, + ACTIONS(9646), 1, + anon_sym_decltype, + ACTIONS(9648), 1, + anon_sym_typename, + STATE(2361), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2534), 1, + sym_type_specifier, + STATE(2670), 1, + sym_qualified_type_identifier, + STATE(2694), 1, + sym_decltype_auto, + STATE(5501), 1, + sym_argument_list, + STATE(6911), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2600), 2, + sym_decltype, + sym_template_type, + ACTIONS(9632), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2668), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [185063] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3971), 1, + sym_auto, + ACTIONS(3973), 1, + anon_sym_decltype, + ACTIONS(6283), 1, + anon_sym_COLON_COLON, + ACTIONS(8305), 1, + sym_primitive_type, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + ACTIONS(9650), 1, + sym_identifier, + ACTIONS(9654), 1, + anon_sym_enum, + ACTIONS(9656), 1, + anon_sym_class, + ACTIONS(9658), 1, + anon_sym_struct, + ACTIONS(9660), 1, + anon_sym_union, + ACTIONS(9662), 1, + anon_sym_typename, + STATE(2624), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3029), 1, + sym_qualified_type_identifier, + STATE(3035), 1, + sym_decltype_auto, + STATE(4471), 1, + sym_type_specifier, + STATE(5468), 1, + sym_argument_list, + STATE(6895), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2999), 2, + sym_decltype, + sym_template_type, + ACTIONS(9652), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3036), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [185143] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7772), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9667), 1, + anon_sym_requires, + STATE(6378), 1, + sym_trailing_return_type, + STATE(6448), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5615), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9578), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [185219] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1234), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5154), 4, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(9670), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5152), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [185263] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5214), 1, + sym_identifier, + ACTIONS(5218), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(5580), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5356), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4721), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(4723), 4, + anon_sym___attribute__, + anon_sym___attribute, + sym_auto, + anon_sym_decltype, + ACTIONS(9673), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [17683] = 3, + anon_sym_constinit, + anon_sym_consteval, + [185319] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2510), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(1234), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5162), 4, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(9675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5160), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [17733] = 3, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [185363] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2506), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(5224), 1, + sym_identifier, + ACTIONS(5228), 1, + sym_primitive_type, + STATE(955), 1, + sym_alignas_qualifier, + STATE(1583), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4674), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_GT2, + ACTIONS(4676), 4, + anon_sym___attribute__, + anon_sym___attribute, + sym_auto, + anon_sym_decltype, + ACTIONS(5226), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [17783] = 3, + anon_sym_constinit, + anon_sym_consteval, + [185419] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2478), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(5410), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5196), 4, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(9678), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5194), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [17833] = 3, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [185463] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4593), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7794), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4591), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9554), 1, + anon_sym_requires, + STATE(6299), 1, + sym_trailing_return_type, + STATE(6334), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5617), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 5, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [17883] = 5, + anon_sym_LBRACE, + anon_sym_try, + [185539] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2347), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(4874), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(2343), 15, - 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7772), 1, anon_sym_DASH_GT, - ACTIONS(2341), 24, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [17937] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(4570), 1, - anon_sym_LT, - STATE(2107), 1, - sym_template_argument_list, - ACTIONS(2397), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2405), 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_LT_EQ, - anon_sym_LBRACE, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(9589), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [17993] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3174), 1, - anon_sym_LBRACE, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - STATE(2398), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4555), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4553), 22, - anon_sym_DOT_DOT_DOT, + STATE(6405), 1, + sym_trailing_return_type, + STATE(6498), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5616), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9578), 5, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [18049] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3174), 1, - anon_sym_LBRACE, - ACTIONS(4727), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(2426), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4535), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4533), 22, - 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [18105] = 3, + anon_sym_SEMI, + anon_sym_LBRACE, + [185615] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(6547), 1, anon_sym_const, + ACTIONS(6629), 1, anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2519), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8726), 1, anon_sym_LPAREN2, + ACTIONS(8947), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8949), 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, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(8951), 1, + anon_sym_AMP, + STATE(2434), 1, + sym_alignas_qualifier, + STATE(3668), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7154), 1, + sym__abstract_declarator, + ACTIONS(8742), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2390), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8734), 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [18155] = 7, + anon_sym_constinit, + anon_sym_consteval, + [185681] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4876), 1, - sym_identifier, - ACTIONS(4882), 1, - sym_raw_string_literal, - STATE(2245), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4879), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4411), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4409), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(5353), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5186), 4, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [18213] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3475), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(9681), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5184), 23, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3477), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [185725] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5371), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5176), 4, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(9684), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5174), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [185769] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7794), 1, anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9605), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9687), 1, + anon_sym_requires, + STATE(6292), 1, + sym_trailing_return_type, + STATE(6339), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9591), 2, anon_sym_final, anon_sym_override, - [18265] = 5, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5636), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9578), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [185845] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4891), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(4889), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(4887), 15, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, + STATE(1234), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5182), 4, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(4885), 24, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [18319] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(4487), 1, - anon_sym_LT, - ACTIONS(4757), 1, - anon_sym_EQ, - STATE(2634), 1, - sym_template_argument_list, - ACTIONS(4759), 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(2407), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(9690), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5180), 23, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2399), 15, - 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_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [18381] = 7, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [185889] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2423), 1, - anon_sym_LBRACE, - ACTIONS(4893), 1, - anon_sym_LT, - STATE(2276), 1, - sym_template_argument_list, - ACTIONS(2407), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2399), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(5355), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5170), 4, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [18439] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_LBRACE, + ACTIONS(9693), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5168), 23, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2490), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [185933] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6534), 1, + sym_auto, + ACTIONS(6536), 1, + anon_sym_decltype, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2508), 1, + sym_decltype_auto, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5578), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9698), 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(9696), 8, + anon_sym_AMP, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [18489] = 6, + anon_sym_constinit, + anon_sym_consteval, + [185987] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 1, - anon_sym_LBRACE, - ACTIONS(4727), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6279), 1, + anon_sym_COLON_COLON, + ACTIONS(8234), 1, + sym_primitive_type, + ACTIONS(8450), 1, anon_sym_LPAREN2, - STATE(2432), 2, + ACTIONS(9616), 1, + sym_identifier, + ACTIONS(9620), 1, + anon_sym_enum, + ACTIONS(9622), 1, + anon_sym_class, + ACTIONS(9624), 1, + anon_sym_struct, + ACTIONS(9626), 1, + anon_sym_union, + ACTIONS(9628), 1, + anon_sym_typename, + STATE(2482), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4421), 1, + sym_type_specifier, + STATE(5537), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4539), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4537), 22, - 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [18545] = 6, + STATE(6899), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2446), 2, + sym_decltype, + sym_template_type, + ACTIONS(9618), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [186067] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3877), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4567), 1, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7821), 1, + anon_sym_DASH_GT, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(9589), 1, anon_sym_LBRACK, - ACTIONS(4561), 2, - anon_sym_RPAREN, + STATE(6166), 1, + sym_trailing_return_type, + STATE(6453), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5629), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9578), 5, anon_sym_LPAREN2, - ACTIONS(2407), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2399), 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_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [18601] = 9, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [186143] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2423), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7821), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9551), 1, + anon_sym_requires, + STATE(6195), 1, + sym_trailing_return_type, + STATE(6463), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5630), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4477), 1, - anon_sym_LT, - STATE(2742), 1, - sym_template_argument_list, - ACTIONS(4480), 2, anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4482), 9, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(2407), 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_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2399), 14, - 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_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [18663] = 4, + anon_sym_try, + [186219] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6279), 1, anon_sym_COLON_COLON, - ACTIONS(3405), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3407), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8234), 1, + sym_primitive_type, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + ACTIONS(9616), 1, + sym_identifier, + ACTIONS(9620), 1, + anon_sym_enum, + ACTIONS(9622), 1, + anon_sym_class, + ACTIONS(9624), 1, + anon_sym_struct, + ACTIONS(9626), 1, + anon_sym_union, + ACTIONS(9628), 1, + anon_sym_typename, + STATE(2482), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4384), 1, + sym_type_specifier, + STATE(5504), 1, + sym_argument_list, + STATE(6899), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2446), 2, + sym_decltype, + sym_template_type, + ACTIONS(9618), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [186299] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1234), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5158), 4, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(9700), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5156), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [18715] = 7, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [186343] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, - sym_identifier, - ACTIONS(4900), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6279), 1, + anon_sym_COLON_COLON, + ACTIONS(8234), 1, sym_primitive_type, - STATE(2265), 1, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + ACTIONS(9616), 1, + sym_identifier, + ACTIONS(9620), 1, + anon_sym_enum, + ACTIONS(9622), 1, + anon_sym_class, + ACTIONS(9624), 1, + anon_sym_struct, + ACTIONS(9626), 1, + anon_sym_union, + ACTIONS(9628), 1, + anon_sym_typename, + STATE(2482), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(4898), 4, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4267), 1, + sym_type_specifier, + STATE(5540), 1, + sym_argument_list, + STATE(6899), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2446), 2, + sym_decltype, + sym_template_type, + ACTIONS(9618), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3465), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + STATE(2473), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [186423] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1234), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5131), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(9703), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5128), 23, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_GT_GT, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DOT, - ACTIONS(3463), 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_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [18773] = 5, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [186467] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - STATE(1294), 1, - sym_template_argument_list, - ACTIONS(3358), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3360), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7821), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [18827] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4902), 1, - sym_identifier, - ACTIONS(4904), 1, - sym_raw_string_literal, - STATE(2245), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4396), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4394), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9707), 1, + anon_sym_requires, + STATE(6172), 1, + sym_trailing_return_type, + STATE(6500), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5635), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9578), 5, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [18885] = 5, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [186543] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(4910), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(4908), 15, - 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(7832), 1, anon_sym_DASH_GT, - ACTIONS(4906), 24, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9605), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9710), 1, + anon_sym___attribute__, + ACTIONS(9713), 1, + anon_sym___attribute, + STATE(5730), 1, + sym_trailing_return_type, + STATE(6177), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5626), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9578), 5, 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_LT_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [18939] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3174), 1, - anon_sym_LBRACE, - ACTIONS(4727), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(2390), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4559), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4557), 22, - 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, anon_sym_GT2, - [18995] = 4, + [186619] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3405), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(6547), 1, anon_sym_const, + ACTIONS(7314), 1, anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3407), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8726), 1, anon_sym_LPAREN2, + ACTIONS(8947), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8949), 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, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(8951), 1, + anon_sym_AMP, + STATE(2434), 1, + sym_alignas_qualifier, + STATE(3668), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7204), 1, + sym__abstract_declarator, + ACTIONS(8742), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2390), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8734), 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [19047] = 8, + anon_sym_constinit, + anon_sym_consteval, + [186685] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4914), 1, - sym_identifier, - ACTIONS(4916), 1, - sym_literal_suffix, - ACTIONS(4918), 1, - sym_raw_string_literal, - STATE(2257), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2407), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(2399), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7471), 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, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8193), 1, + anon_sym_DASH_GT, + ACTIONS(8211), 1, + anon_sym_requires, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + STATE(5555), 1, + sym_ref_qualifier, + STATE(6612), 1, + sym__function_attributes_end, + STATE(6776), 1, + sym_trailing_return_type, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9387), 2, + anon_sym_LPAREN2, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [19107] = 3, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5698), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [186767] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3479), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(6547), 1, anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8700), 1, anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3481), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8726), 1, anon_sym_LPAREN2, + ACTIONS(8947), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8949), 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, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(8951), 1, + anon_sym_AMP, + STATE(2434), 1, + sym_alignas_qualifier, + STATE(3668), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7188), 1, + sym__abstract_declarator, + ACTIONS(8742), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2390), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8734), 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_constinit, + anon_sym_consteval, + [186833] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(7838), 1, anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(6161), 1, + sym_trailing_return_type, + STATE(6256), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, anon_sym_final, anon_sym_override, - [19157] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2494), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2496), 32, - anon_sym_DOT_DOT_DOT, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5641), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_EQ, + anon_sym_GT2, + [186909] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(7838), 1, anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9710), 1, + anon_sym___attribute__, + ACTIONS(9713), 1, + anon_sym___attribute, + STATE(6166), 1, + sym_trailing_return_type, + STATE(6257), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, anon_sym_final, anon_sym_override, - [19207] = 3, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5644), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9578), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [186985] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2451), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7471), 1, + anon_sym_AMP_AMP, + ACTIONS(7473), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2453), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(8191), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(5571), 1, + sym_ref_qualifier, + STATE(6251), 1, + sym_trailing_return_type, + STATE(6440), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9387), 2, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5684), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [187067] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7471), 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, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8193), 1, anon_sym_DASH_GT, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9716), 1, + anon_sym_requires, + STATE(5594), 1, + sym_ref_qualifier, + STATE(6617), 1, + sym__function_attributes_end, + STATE(6784), 1, + sym_trailing_return_type, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9387), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9400), 2, anon_sym_final, anon_sym_override, - [19257] = 5, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5706), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [187149] = 10, ACTIONS(3), 1, sym_comment, - STATE(2265), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4920), 4, + ACTIONS(6534), 1, + sym_auto, + ACTIONS(6536), 1, + anon_sym_decltype, + STATE(955), 1, + sym_alignas_qualifier, + STATE(2508), 1, + sym_decltype_auto, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5574), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9721), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(9719), 8, + anon_sym_AMP, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3322), 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, - anon_sym_GT_GT, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 13, + anon_sym___extension__, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - sym_primitive_type, - anon_sym_DOT, - sym_identifier, - ACTIONS(3324), 19, - anon_sym_DOT_DOT_DOT, + anon_sym_constinit, + anon_sym_consteval, + [187203] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7838), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9707), 1, + anon_sym_requires, + ACTIONS(9710), 1, + anon_sym___attribute__, + ACTIONS(9713), 1, + anon_sym___attribute, + STATE(6172), 1, + sym_trailing_return_type, + STATE(6269), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5623), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9578), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - 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_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_EQ, anon_sym_GT2, - [19311] = 5, + [187279] = 24, ACTIONS(3), 1, sym_comment, - STATE(2037), 1, - sym__enum_base_clause, - STATE(2083), 1, - sym_enumerator_list, - ACTIONS(3832), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3834), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(8191), 1, anon_sym_DASH_GT, - [19364] = 5, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + ACTIONS(9554), 1, + anon_sym_requires, + STATE(5589), 1, + sym_ref_qualifier, + STATE(6299), 1, + sym_trailing_return_type, + STATE(6444), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9387), 2, + anon_sym_COMMA, + anon_sym_LPAREN2, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5689), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [187361] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, - anon_sym_EQ, - ACTIONS(2433), 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(2407), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2399), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6295), 1, + anon_sym_COLON_COLON, + ACTIONS(8450), 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_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [19417] = 9, + ACTIONS(9723), 1, + sym_identifier, + ACTIONS(9727), 1, + sym_primitive_type, + ACTIONS(9729), 1, + anon_sym_enum, + ACTIONS(9731), 1, + anon_sym_class, + ACTIONS(9733), 1, + anon_sym_struct, + ACTIONS(9735), 1, + anon_sym_union, + ACTIONS(9737), 1, + sym_auto, + ACTIONS(9739), 1, + anon_sym_decltype, + ACTIONS(9741), 1, + anon_sym_typename, + STATE(2382), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3276), 1, + sym_type_specifier, + STATE(3744), 1, + sym_decltype_auto, + STATE(3751), 1, + sym_qualified_type_identifier, + STATE(5517), 1, + sym_argument_list, + STATE(6893), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(3536), 2, + sym_decltype, + sym_template_type, + ACTIONS(9725), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3746), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [187441] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2626), 1, - sym_field_declaration_list, - STATE(4162), 1, - sym_virtual_specifier, - STATE(4657), 1, - sym_base_class_clause, - ACTIONS(3810), 2, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6295), 1, + anon_sym_COLON_COLON, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + ACTIONS(9723), 1, + sym_identifier, + ACTIONS(9727), 1, + sym_primitive_type, + ACTIONS(9729), 1, + anon_sym_enum, + ACTIONS(9731), 1, + anon_sym_class, + ACTIONS(9733), 1, + anon_sym_struct, + ACTIONS(9735), 1, + anon_sym_union, + ACTIONS(9737), 1, + sym_auto, + ACTIONS(9739), 1, + anon_sym_decltype, + ACTIONS(9741), 1, + anon_sym_typename, + STATE(2382), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3279), 1, + sym_type_specifier, + STATE(3744), 1, + sym_decltype_auto, + STATE(3751), 1, + sym_qualified_type_identifier, + STATE(5467), 1, + sym_argument_list, + STATE(6893), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(3536), 2, + sym_decltype, + sym_template_type, + ACTIONS(9725), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3746), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [187521] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7832), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9525), 1, + anon_sym_requires, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(5746), 1, + sym_trailing_return_type, + STATE(6215), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9400), 2, anon_sym_final, anon_sym_override, - ACTIONS(3491), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3493), 23, - anon_sym_DOT_DOT_DOT, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5639), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - 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_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_EQ, anon_sym_GT2, - [19478] = 9, + [187597] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2616), 1, - sym_field_declaration_list, - STATE(4158), 1, - sym_virtual_specifier, - STATE(4443), 1, - sym_base_class_clause, - ACTIONS(3810), 2, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7832), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9605), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9608), 1, + anon_sym_requires, + ACTIONS(9710), 1, + anon_sym___attribute__, + ACTIONS(9713), 1, + anon_sym___attribute, + STATE(5747), 1, + sym_trailing_return_type, + STATE(6184), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9591), 2, anon_sym_final, anon_sym_override, - ACTIONS(3442), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3444), 23, - anon_sym_DOT_DOT_DOT, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5642), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9578), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - 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_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_EQ, anon_sym_GT2, - [19539] = 9, + [187673] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2550), 1, - sym_field_declaration_list, - STATE(4123), 1, - sym_virtual_specifier, - STATE(4719), 1, - sym_base_class_clause, - ACTIONS(3810), 2, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7794), 1, + anon_sym_DASH_GT, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + STATE(6251), 1, + sym_trailing_return_type, + STATE(6355), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, anon_sym_final, anon_sym_override, - ACTIONS(3471), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3473), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5624), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 5, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - 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_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [19600] = 9, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [187749] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6261), 1, + anon_sym_COLON_COLON, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + ACTIONS(9743), 1, + sym_identifier, + ACTIONS(9747), 1, + sym_primitive_type, + ACTIONS(9749), 1, + anon_sym_enum, + ACTIONS(9751), 1, + anon_sym_class, + ACTIONS(9753), 1, + anon_sym_struct, + ACTIONS(9755), 1, + anon_sym_union, + ACTIONS(9757), 1, + sym_auto, + ACTIONS(9759), 1, + anon_sym_decltype, + ACTIONS(9761), 1, + anon_sym_typename, + STATE(2372), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3115), 1, + sym_type_specifier, + STATE(3397), 1, + sym_decltype_auto, + STATE(3405), 1, + sym_qualified_type_identifier, + STATE(5489), 1, + sym_argument_list, + STATE(6912), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(3295), 2, + sym_decltype, + sym_template_type, + ACTIONS(9745), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3399), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [187829] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2627), 1, - sym_field_declaration_list, - STATE(4165), 1, - sym_virtual_specifier, - STATE(4651), 1, - sym_base_class_clause, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3436), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3438), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(1234), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5192), 4, anon_sym_LPAREN2, anon_sym_STAR, - 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_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(9763), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5190), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [19661] = 9, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [187873] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2565), 1, - sym_field_declaration_list, - STATE(4129), 1, - sym_virtual_specifier, - STATE(4698), 1, - sym_base_class_clause, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3483), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(9766), 1, + sym_ms_restrict_modifier, + STATE(5549), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(8106), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_GT_GT, anon_sym_const, - anon_sym_DOT, - ACTIONS(3485), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9769), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9772), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5393), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(8108), 22, anon_sym_LPAREN2, anon_sym_STAR, - 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_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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [19722] = 5, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [187923] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4729), 1, - anon_sym_LBRACK, - STATE(2325), 1, - sym_new_declarator, - ACTIONS(4581), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4579), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6261), 1, + anon_sym_COLON_COLON, + ACTIONS(8450), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_STAR_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [19775] = 5, + ACTIONS(9743), 1, + sym_identifier, + ACTIONS(9747), 1, + sym_primitive_type, + ACTIONS(9749), 1, + anon_sym_enum, + ACTIONS(9751), 1, + anon_sym_class, + ACTIONS(9753), 1, + anon_sym_struct, + ACTIONS(9755), 1, + anon_sym_union, + ACTIONS(9757), 1, + sym_auto, + ACTIONS(9759), 1, + anon_sym_decltype, + ACTIONS(9761), 1, + anon_sym_typename, + STATE(2372), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3116), 1, + sym_type_specifier, + STATE(3397), 1, + sym_decltype_auto, + STATE(3405), 1, + sym_qualified_type_identifier, + STATE(5511), 1, + sym_argument_list, + STATE(6912), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(3295), 2, + sym_decltype, + sym_template_type, + ACTIONS(9745), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3399), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [188003] = 24, ACTIONS(3), 1, sym_comment, - STATE(2036), 1, - sym__enum_base_clause, - STATE(2103), 1, - sym_enumerator_list, - ACTIONS(3826), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3828), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACE, + ACTIONS(7473), 1, + anon_sym_AMP, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8141), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, anon_sym_LBRACK, + ACTIONS(9538), 1, + anon_sym_requires, + STATE(5545), 1, + sym_ref_qualifier, + STATE(6366), 1, + sym_trailing_return_type, + STATE(6680), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9387), 2, + anon_sym_LPAREN2, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [19828] = 9, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5688), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [188085] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2554), 1, - sym_field_declaration_list, - STATE(4119), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7794), 1, + anon_sym_DASH_GT, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9605), 1, + anon_sym_LBRACK_LBRACK, + STATE(6298), 1, + sym_trailing_return_type, + STATE(6372), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, sym_virtual_specifier, - STATE(4721), 1, - sym_base_class_clause, - ACTIONS(3810), 2, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5631), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9578), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [188161] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7772), 1, + anon_sym_DASH_GT, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(6393), 1, + sym_trailing_return_type, + STATE(6454), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, anon_sym_final, anon_sym_override, - ACTIONS(3423), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3425), 23, - anon_sym_DOT_DOT_DOT, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5619), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - 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_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [19889] = 4, + anon_sym_SEMI, + anon_sym_LBRACE, + [188237] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 2, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6303), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(2521), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2514), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8450), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [19940] = 9, + ACTIONS(9775), 1, + sym_identifier, + ACTIONS(9779), 1, + sym_primitive_type, + ACTIONS(9781), 1, + anon_sym_enum, + ACTIONS(9783), 1, + anon_sym_class, + ACTIONS(9785), 1, + anon_sym_struct, + ACTIONS(9787), 1, + anon_sym_union, + ACTIONS(9789), 1, + sym_auto, + ACTIONS(9791), 1, + anon_sym_decltype, + ACTIONS(9793), 1, + anon_sym_typename, + STATE(2377), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3131), 1, + sym_type_specifier, + STATE(3509), 1, + sym_decltype_auto, + STATE(3522), 1, + sym_qualified_type_identifier, + STATE(5516), 1, + sym_argument_list, + STATE(6904), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(3412), 2, + sym_decltype, + sym_template_type, + ACTIONS(9777), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3511), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [188317] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6303), 1, anon_sym_COLON_COLON, - ACTIONS(2423), 1, - anon_sym_LBRACE, - ACTIONS(4487), 1, - anon_sym_LT, - ACTIONS(4923), 1, - anon_sym_EQ, - STATE(2634), 1, - sym_template_argument_list, - ACTIONS(4925), 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(2399), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(8450), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(9775), 1, + sym_identifier, + ACTIONS(9779), 1, + sym_primitive_type, + ACTIONS(9781), 1, + anon_sym_enum, + ACTIONS(9783), 1, + anon_sym_class, + ACTIONS(9785), 1, + anon_sym_struct, + ACTIONS(9787), 1, + anon_sym_union, + ACTIONS(9789), 1, + sym_auto, + ACTIONS(9791), 1, + anon_sym_decltype, + ACTIONS(9793), 1, + anon_sym_typename, + STATE(2377), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3138), 1, + sym_type_specifier, + STATE(3509), 1, + sym_decltype_auto, + STATE(3522), 1, + sym_qualified_type_identifier, + STATE(5519), 1, + sym_argument_list, + STATE(6904), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(3412), 2, + sym_decltype, + sym_template_type, + ACTIONS(9777), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3511), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [188397] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7471), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(2407), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7473), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8141), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(5575), 1, + sym_ref_qualifier, + STATE(6393), 1, + sym_trailing_return_type, + STATE(6700), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9387), 2, + anon_sym_LPAREN2, anon_sym_COLON, - anon_sym_DOT, - [20001] = 4, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5703), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [188479] = 23, ACTIONS(3), 1, sym_comment, - STATE(2321), 1, - sym_enumerator_list, - ACTIONS(3446), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3448), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + ACTIONS(9638), 1, + anon_sym_class, + ACTIONS(9640), 1, + anon_sym_struct, + ACTIONS(9642), 1, + anon_sym_union, + ACTIONS(9644), 1, + sym_auto, + ACTIONS(9646), 1, + anon_sym_decltype, + ACTIONS(9795), 1, + sym_identifier, + ACTIONS(9799), 1, + sym_primitive_type, + ACTIONS(9801), 1, + anon_sym_enum, + ACTIONS(9803), 1, + anon_sym_typename, + STATE(2360), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2535), 1, + sym_type_specifier, + STATE(2670), 1, + sym_qualified_type_identifier, + STATE(2694), 1, + sym_decltype_auto, + STATE(5526), 1, + sym_argument_list, + STATE(6911), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2600), 2, + sym_decltype, + sym_template_type, + ACTIONS(9797), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2668), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [188559] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(7832), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(5718), 1, + sym_trailing_return_type, + STATE(6176), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5637), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_EQ, anon_sym_GT2, - [20052] = 4, + [188635] = 4, ACTIONS(3), 1, sym_comment, - STATE(2356), 1, - sym_enumerator_list, - ACTIONS(3487), 16, - anon_sym_DASH, - anon_sym_PLUS, + STATE(5404), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4819), 4, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(4817), 27, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3489), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [188677] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1234), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5145), 4, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [20103] = 4, + ACTIONS(9805), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5143), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [188721] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6319), 1, anon_sym_COLON_COLON, - ACTIONS(3452), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3454), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8450), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [20154] = 3, + ACTIONS(9808), 1, + sym_identifier, + ACTIONS(9812), 1, + sym_primitive_type, + ACTIONS(9814), 1, + anon_sym_enum, + ACTIONS(9816), 1, + anon_sym_class, + ACTIONS(9818), 1, + anon_sym_struct, + ACTIONS(9820), 1, + anon_sym_union, + ACTIONS(9822), 1, + sym_auto, + ACTIONS(9824), 1, + anon_sym_decltype, + ACTIONS(9826), 1, + anon_sym_typename, + STATE(2515), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4174), 1, + sym_type_specifier, + STATE(4430), 1, + sym_decltype_auto, + STATE(5530), 1, + sym_argument_list, + STATE(6907), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(4362), 2, + sym_decltype, + sym_template_type, + ACTIONS(9810), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4377), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [188801] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6547), 1, + anon_sym_const, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8718), 1, + anon_sym_COLON, + ACTIONS(8726), 1, + anon_sym_LPAREN2, + ACTIONS(8947), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8949), 1, + anon_sym_AMP_AMP, + ACTIONS(8951), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3625), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(2434), 1, + sym_alignas_qualifier, + STATE(3668), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7161), 1, + sym__abstract_declarator, + ACTIONS(8742), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2390), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8734), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [188867] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6319), 1, + anon_sym_COLON_COLON, + ACTIONS(8450), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [20202] = 4, + ACTIONS(9808), 1, + sym_identifier, + ACTIONS(9812), 1, + sym_primitive_type, + ACTIONS(9814), 1, + anon_sym_enum, + ACTIONS(9816), 1, + anon_sym_class, + ACTIONS(9818), 1, + anon_sym_struct, + ACTIONS(9820), 1, + anon_sym_union, + ACTIONS(9822), 1, + sym_auto, + ACTIONS(9824), 1, + anon_sym_decltype, + ACTIONS(9826), 1, + anon_sym_typename, + STATE(2515), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4186), 1, + sym_type_specifier, + STATE(4430), 1, + sym_decltype_auto, + STATE(5534), 1, + sym_argument_list, + STATE(6907), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(4362), 2, + sym_decltype, + sym_template_type, + ACTIONS(9810), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4377), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [188947] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4927), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4593), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4591), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(8450), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [20252] = 3, + ACTIONS(9638), 1, + anon_sym_class, + ACTIONS(9640), 1, + anon_sym_struct, + ACTIONS(9642), 1, + anon_sym_union, + ACTIONS(9644), 1, + sym_auto, + ACTIONS(9646), 1, + anon_sym_decltype, + ACTIONS(9795), 1, + sym_identifier, + ACTIONS(9799), 1, + sym_primitive_type, + ACTIONS(9801), 1, + anon_sym_enum, + ACTIONS(9803), 1, + anon_sym_typename, + STATE(2360), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2534), 1, + sym_type_specifier, + STATE(2670), 1, + sym_qualified_type_identifier, + STATE(2694), 1, + sym_decltype_auto, + STATE(5507), 1, + sym_argument_list, + STATE(6911), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2600), 2, + sym_decltype, + sym_template_type, + ACTIONS(9797), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2668), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [189027] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3571), 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, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8941), 1, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3573), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(917), 1, + sym_template_argument_list, + STATE(5392), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3095), 3, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [20300] = 3, + ACTIONS(9828), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3087), 21, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [189077] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3521), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(1234), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5166), 4, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(9830), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5164), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [189121] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7821), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [20348] = 3, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(6161), 1, + sym_trailing_return_type, + STATE(6505), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5633), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [189197] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3971), 1, + sym_auto, + ACTIONS(3973), 1, + anon_sym_decltype, + ACTIONS(6283), 1, + anon_sym_COLON_COLON, + ACTIONS(8305), 1, + sym_primitive_type, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + ACTIONS(9650), 1, + sym_identifier, + ACTIONS(9654), 1, + anon_sym_enum, + ACTIONS(9656), 1, + anon_sym_class, + ACTIONS(9658), 1, + anon_sym_struct, + ACTIONS(9660), 1, + anon_sym_union, + ACTIONS(9662), 1, + anon_sym_typename, + STATE(2624), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3029), 1, + sym_qualified_type_identifier, + STATE(3035), 1, + sym_decltype_auto, + STATE(4446), 1, + sym_type_specifier, + STATE(5488), 1, + sym_argument_list, + STATE(6895), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2999), 2, + sym_decltype, + sym_template_type, + ACTIONS(9652), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3036), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [189277] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3585), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7838), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + ACTIONS(9551), 1, + anon_sym_requires, + STATE(6195), 1, + sym_trailing_return_type, + STATE(6268), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5622), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_EQ, anon_sym_GT2, - [20396] = 3, + [189353] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3709), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3711), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6293), 1, + sym_identifier, + ACTIONS(6295), 1, + anon_sym_COLON_COLON, + ACTIONS(6297), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [20444] = 3, + STATE(3178), 1, + sym_template_type, + STATE(3357), 1, + sym_field_declaration_list, + STATE(3757), 1, + sym__class_declaration, + STATE(3758), 1, + sym__class_declaration_item, + STATE(5854), 1, + sym_ms_declspec_modifier, + STATE(6893), 1, + sym__scope_resolution, + STATE(7220), 1, + sym_virtual_specifier, + STATE(7985), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2968), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5785), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5535), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [189434] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3454), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [20492] = 3, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1383), 1, + sym__class_declaration, + STATE(1398), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(5886), 1, + sym_ms_declspec_modifier, + STATE(6944), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1481), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5919), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5521), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [189515] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3454), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [20540] = 21, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1383), 1, + sym__class_declaration, + STATE(1398), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(5886), 1, + sym_ms_declspec_modifier, + STATE(6944), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1473), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5919), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5521), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [189596] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(3647), 1, + anon_sym_LBRACE, + ACTIONS(5578), 1, anon_sym_LPAREN2, - ACTIONS(4929), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4935), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4937), 1, - anon_sym_AMP_AMP, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_CARET, - ACTIONS(4943), 1, - anon_sym_AMP, - ACTIONS(4949), 1, - anon_sym_LT_EQ, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, + STATE(2548), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3777), 1, sym_argument_list, - ACTIONS(4805), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4931), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4945), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4955), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4933), 3, + STATE(3778), 1, + sym_initializer_list, + ACTIONS(4735), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6639), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4737), 20, + anon_sym_RPAREN, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4947), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4803), 12, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [20624] = 3, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + [189647] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4599), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4597), 24, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7851), 1, + anon_sym_DASH_GT, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(6534), 1, + sym_trailing_return_type, + STATE(6539), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5651), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 4, 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, anon_sym_GT2, - sym_literal_suffix, - [20672] = 3, + [189722] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3641), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3643), 24, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7851), 1, + anon_sym_DASH_GT, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(9589), 1, + anon_sym_LBRACK, + STATE(6535), 1, + sym_trailing_return_type, + STATE(6540), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5652), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9578), 4, 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, anon_sym_GT2, - [20720] = 3, + [189797] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3603), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3605), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + ACTIONS(6275), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [20768] = 25, + STATE(1312), 1, + sym_template_type, + STATE(4757), 1, + sym_field_declaration_list, + STATE(4947), 1, + sym__class_declaration_item, + STATE(4955), 1, + sym__class_declaration, + STATE(5805), 1, + sym_ms_declspec_modifier, + STATE(6901), 1, + sym__scope_resolution, + STATE(7360), 1, + sym_virtual_specifier, + STATE(8163), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5815), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5479), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [189878] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6303), 1, + anon_sym_COLON_COLON, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3037), 1, + sym_template_type, + STATE(3203), 1, + sym_field_declaration_list, + STATE(3448), 1, + sym__class_declaration, + STATE(3451), 1, + sym__class_declaration_item, + STATE(5817), 1, + sym_ms_declspec_modifier, + STATE(6904), 1, + sym__scope_resolution, + STATE(7273), 1, + sym_virtual_specifier, + STATE(8315), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2882), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5469), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [189959] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2355), 1, - anon_sym_LPAREN2, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6249), 1, sym_identifier, - ACTIONS(4423), 1, - anon_sym_STAR, - ACTIONS(4429), 1, + ACTIONS(6251), 1, anon_sym_COLON_COLON, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4961), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4965), 1, - anon_sym_AMP_AMP, - ACTIONS(4967), 1, - anon_sym_AMP, - ACTIONS(4969), 1, - anon_sym_EQ, - STATE(3270), 1, - sym_parameter_list, - STATE(3552), 1, - sym__scope_resolution, - STATE(3726), 1, - sym__declarator, - STATE(3995), 1, - sym__abstract_declarator, - STATE(4242), 1, - sym_variadic_reference_declarator, - STATE(4243), 1, - sym_variadic_declarator, - STATE(5266), 1, - sym_ms_based_modifier, - ACTIONS(4963), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(4853), 2, + STATE(1312), 1, sym_template_type, + STATE(1383), 1, + sym__class_declaration, + STATE(1398), 1, + sym__class_declaration_item, + STATE(1673), 1, + sym_field_declaration_list, + STATE(5834), 1, + sym_ms_declspec_modifier, + STATE(6901), 1, + sym__scope_resolution, + STATE(7473), 1, + sym_virtual_specifier, + STATE(8355), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1607), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5840), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [20860] = 5, + STATE(5542), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [190040] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4971), 1, - anon_sym_LT, - STATE(2461), 1, - sym_template_argument_list, - ACTIONS(4847), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4845), 23, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7851), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9575), 1, + anon_sym_requires, + STATE(6545), 1, + sym_trailing_return_type, + STATE(6551), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5654), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9387), 4, 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, anon_sym_GT2, - [20912] = 3, + [190115] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3713), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(3715), 30, - sym_raw_string_literal, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7851), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9833), 1, + anon_sym_requires, + STATE(6546), 1, + sym_trailing_return_type, + STATE(6552), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5648), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9578), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_GT2, + [190190] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [20960] = 3, + ACTIONS(6257), 1, + anon_sym_LBRACE, + ACTIONS(6277), 1, + sym_identifier, + ACTIONS(6279), 1, + anon_sym_COLON_COLON, + STATE(2448), 1, + sym_template_type, + STATE(2480), 1, + sym__class_declaration, + STATE(2481), 1, + sym__class_declaration_item, + STATE(2794), 1, + sym_field_declaration_list, + STATE(5878), 1, + sym_ms_declspec_modifier, + STATE(6899), 1, + sym__scope_resolution, + STATE(7434), 1, + sym_virtual_specifier, + STATE(8027), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2569), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5897), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5533), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [190271] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3637), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3639), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6311), 1, + sym_identifier, + ACTIONS(6313), 1, + anon_sym_COLON_COLON, + ACTIONS(6315), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [21008] = 3, + STATE(4653), 1, + sym_template_type, + STATE(5230), 1, + sym_field_declaration_list, + STATE(5292), 1, + sym__class_declaration, + STATE(5299), 1, + sym__class_declaration_item, + STATE(5882), 1, + sym_ms_declspec_modifier, + STATE(6906), 1, + sym__scope_resolution, + STATE(7383), 1, + sym_virtual_specifier, + STATE(8295), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4690), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5887), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5465), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [190352] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3581), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6285), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [21056] = 3, + ACTIONS(6307), 1, + sym_identifier, + ACTIONS(6309), 1, + anon_sym_COLON_COLON, + STATE(2938), 1, + sym_template_type, + STATE(2973), 1, + sym_field_declaration_list, + STATE(3041), 1, + sym__class_declaration, + STATE(3042), 1, + sym__class_declaration_item, + STATE(5880), 1, + sym_ms_declspec_modifier, + STATE(6909), 1, + sym__scope_resolution, + STATE(7499), 1, + sym_virtual_specifier, + STATE(8301), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2786), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5881), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5490), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [190433] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3507), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3509), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(5138), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + STATE(2548), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2921), 1, + sym_argument_list, + STATE(4125), 1, + sym_initializer_list, + ACTIONS(4735), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6639), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4737), 20, + anon_sym_RPAREN, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACE, + anon_sym___extension__, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [21104] = 3, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + [190484] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3515), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3517), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6317), 1, + sym_identifier, + ACTIONS(6319), 1, + anon_sym_COLON_COLON, + ACTIONS(6321), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [21152] = 3, + STATE(3981), 1, + sym_template_type, + STATE(4284), 1, + sym_field_declaration_list, + STATE(4386), 1, + sym__class_declaration, + STATE(4428), 1, + sym__class_declaration_item, + STATE(5885), 1, + sym_ms_declspec_modifier, + STATE(6907), 1, + sym__scope_resolution, + STATE(7503), 1, + sym_virtual_specifier, + STATE(7940), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(3491), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5898), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5491), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [190565] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3525), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [21200] = 3, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1383), 1, + sym__class_declaration, + STATE(1398), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(5886), 1, + sym_ms_declspec_modifier, + STATE(6944), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1484), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5919), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5521), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [190646] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3561), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [21248] = 3, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1383), 1, + sym__class_declaration, + STATE(1398), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(5886), 1, + sym_ms_declspec_modifier, + STATE(6944), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1490), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5919), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5521), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [190727] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3669), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3671), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6253), 1, + sym_identifier, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(6257), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [21296] = 3, + STATE(2448), 1, + sym_template_type, + STATE(2480), 1, + sym__class_declaration, + STATE(2481), 1, + sym__class_declaration_item, + STATE(2794), 1, + sym_field_declaration_list, + STATE(5848), 1, + sym_ms_declspec_modifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(7434), 1, + sym_virtual_specifier, + STATE(8027), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2569), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5841), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5483), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [190808] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3705), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3707), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [21344] = 3, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1383), 1, + sym__class_declaration, + STATE(1398), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(5886), 1, + sym_ms_declspec_modifier, + STATE(6944), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1485), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5919), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5521), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [190889] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3677), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3679), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [21392] = 3, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1383), 1, + sym__class_declaration, + STATE(1398), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(5886), 1, + sym_ms_declspec_modifier, + STATE(6944), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1476), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5919), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5521), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [190970] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3657), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3659), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [21440] = 25, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1383), 1, + sym__class_declaration, + STATE(1398), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(5886), 1, + sym_ms_declspec_modifier, + STATE(6944), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1474), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5919), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5521), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [191051] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2355), 1, - anon_sym_LPAREN2, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6271), 1, sym_identifier, - ACTIONS(4429), 1, + ACTIONS(6273), 1, anon_sym_COLON_COLON, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4433), 1, - anon_sym_STAR, - ACTIONS(4961), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4974), 1, - anon_sym_AMP_AMP, - ACTIONS(4976), 1, - anon_sym_AMP, - ACTIONS(4978), 1, - anon_sym_EQ, - STATE(3266), 1, - sym_parameter_list, - STATE(3552), 1, - sym__scope_resolution, - STATE(3779), 1, - sym__declarator, - STATE(3988), 1, - sym__abstract_declarator, - STATE(4242), 1, - sym_variadic_reference_declarator, - STATE(4243), 1, - sym_variadic_declarator, - STATE(5266), 1, - sym_ms_based_modifier, - ACTIONS(4963), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4853), 2, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(1312), 1, sym_template_type, + STATE(4757), 1, + sym_field_declaration_list, + STATE(4947), 1, + sym__class_declaration_item, + STATE(4955), 1, + sym__class_declaration, + STATE(5798), 1, + sym_ms_declspec_modifier, + STATE(6933), 1, + sym__scope_resolution, + STATE(7360), 1, + sym_virtual_specifier, + STATE(8163), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5799), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [21532] = 20, + STATE(5512), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [191132] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4935), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4937), 1, - anon_sym_AMP_AMP, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_CARET, - ACTIONS(4943), 1, - anon_sym_AMP, - ACTIONS(4949), 1, - anon_sym_LT_EQ, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4733), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4931), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4945), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4955), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4933), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4947), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4731), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [21614] = 3, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1383), 1, + sym__class_declaration, + STATE(1398), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(5886), 1, + sym_ms_declspec_modifier, + STATE(6944), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1475), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5919), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5521), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [191213] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3655), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [21662] = 3, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1383), 1, + sym__class_declaration, + STATE(1398), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(5886), 1, + sym_ms_declspec_modifier, + STATE(6944), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1483), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5919), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5521), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [191294] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3693), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3695), 24, + ACTIONS(9836), 1, + anon_sym_LBRACK_LBRACK, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6870), 10, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, - [21710] = 3, + ACTIONS(6868), 18, + anon_sym_virtual, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_requires, + [191337] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3497), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [21758] = 10, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1383), 1, + sym__class_declaration, + STATE(1398), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(5886), 1, + sym_ms_declspec_modifier, + STATE(6944), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1479), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5919), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5521), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [191418] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4955), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4933), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4691), 12, - 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4689), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [21820] = 9, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1383), 1, + sym__class_declaration, + STATE(1398), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(5886), 1, + sym_ms_declspec_modifier, + STATE(6944), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1480), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5919), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5521), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [191499] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4955), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4691), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4689), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [21880] = 19, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1383), 1, + sym__class_declaration, + STATE(1398), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(5886), 1, + sym_ms_declspec_modifier, + STATE(6944), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1477), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5919), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5521), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [191580] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4937), 1, - anon_sym_AMP_AMP, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_CARET, - ACTIONS(4943), 1, - anon_sym_AMP, - ACTIONS(4949), 1, - anon_sym_LT_EQ, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4691), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4931), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4945), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4955), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4933), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4947), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4689), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [21960] = 18, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1383), 1, + sym__class_declaration, + STATE(1398), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(5886), 1, + sym_ms_declspec_modifier, + STATE(6944), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1489), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5919), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5521), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [191661] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_CARET, - ACTIONS(4943), 1, - anon_sym_AMP, - ACTIONS(4949), 1, - anon_sym_LT_EQ, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4691), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4931), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4945), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4955), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4933), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4947), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4689), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [22038] = 17, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1383), 1, + sym__class_declaration, + STATE(1398), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(5886), 1, + sym_ms_declspec_modifier, + STATE(6944), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1399), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5919), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5521), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [191742] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4941), 1, - anon_sym_CARET, - ACTIONS(4943), 1, - anon_sym_AMP, - ACTIONS(4949), 1, - anon_sym_LT_EQ, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4931), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4945), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4955), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4691), 3, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4933), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4947), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4689), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [22114] = 16, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3313), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6323), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1383), 1, + sym__class_declaration, + STATE(1398), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(5900), 1, + sym_ms_declspec_modifier, + STATE(6924), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1399), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5906), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5529), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [191823] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6259), 1, + sym_identifier, + ACTIONS(6261), 1, + anon_sym_COLON_COLON, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(2972), 1, + sym_template_type, + STATE(3129), 1, + sym_field_declaration_list, + STATE(3410), 1, + sym__class_declaration, + STATE(3411), 1, + sym__class_declaration_item, + STATE(5802), 1, + sym_ms_declspec_modifier, + STATE(6912), 1, + sym__scope_resolution, + STATE(7222), 1, + sym_virtual_specifier, + STATE(8142), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2799), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5803), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5514), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [191904] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6257), 1, + anon_sym_LBRACE, + ACTIONS(6267), 1, + sym_identifier, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + STATE(2448), 1, + sym_template_type, + STATE(2480), 1, + sym__class_declaration, + STATE(2481), 1, + sym__class_declaration_item, + STATE(5449), 1, + sym_field_declaration_list, + STATE(5776), 1, + sym_ms_declspec_modifier, + STATE(6917), 1, + sym__scope_resolution, + STATE(7412), 1, + sym_virtual_specifier, + STATE(8300), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4847), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5778), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5524), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [191985] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + STATE(2532), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5464), 3, anon_sym_LPAREN2, - ACTIONS(4943), 1, - anon_sym_AMP, - ACTIONS(4949), 1, - anon_sym_LT_EQ, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4931), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4945), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4955), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4933), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4947), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4691), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4689), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [22188] = 15, + ACTIONS(5462), 25, + anon_sym_AMP, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [192028] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + STATE(2486), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5452), 3, anon_sym_LPAREN2, - ACTIONS(4949), 1, - anon_sym_LT_EQ, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4931), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4945), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4955), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4933), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4947), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4691), 5, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4689), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [22260] = 14, + ACTIONS(5450), 25, + anon_sym_AMP, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [192071] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + STATE(2500), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5478), 3, anon_sym_LPAREN2, - ACTIONS(4949), 1, - anon_sym_LT_EQ, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4931), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4955), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4933), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4947), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4691), 5, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4689), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [22330] = 12, + ACTIONS(5476), 25, + anon_sym_AMP, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [192114] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + STATE(2476), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5490), 3, anon_sym_LPAREN2, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4931), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4955), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4933), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4691), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4689), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [22396] = 11, + ACTIONS(5488), 25, + anon_sym_AMP, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [192157] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + STATE(2504), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5518), 3, anon_sym_LPAREN2, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4931), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4955), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4933), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4691), 10, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4689), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [22460] = 3, + ACTIONS(5516), 25, + anon_sym_AMP, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [192200] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3697), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3699), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(2505), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5524), 3, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [22508] = 3, + ACTIONS(5522), 25, + anon_sym_AMP, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [192243] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3687), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(2524), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5448), 3, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [22556] = 3, + ACTIONS(5446), 25, + anon_sym_AMP, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [192286] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3683), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(2484), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5482), 3, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [22604] = 3, + ACTIONS(5480), 25, + anon_sym_AMP, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [192329] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3675), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(2466), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5502), 3, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [22652] = 3, + ACTIONS(5500), 25, + anon_sym_AMP, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [192372] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4601), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(2526), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5514), 3, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [22700] = 3, + ACTIONS(5512), 25, + anon_sym_AMP, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [192415] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3665), 16, - anon_sym_DASH, - anon_sym_PLUS, + STATE(2485), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5496), 3, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + ACTIONS(5494), 25, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3667), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [192458] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2469), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5486), 3, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(5484), 25, + anon_sym_AMP, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [192501] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6281), 1, + sym_identifier, + ACTIONS(6283), 1, + anon_sym_COLON_COLON, + ACTIONS(6285), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [22748] = 3, + STATE(2938), 1, + sym_template_type, + STATE(2973), 1, + sym_field_declaration_list, + STATE(3041), 1, + sym__class_declaration, + STATE(3042), 1, + sym__class_declaration_item, + STATE(5856), 1, + sym_ms_declspec_modifier, + STATE(6895), 1, + sym__scope_resolution, + STATE(7499), 1, + sym_virtual_specifier, + STATE(8301), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2786), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5859), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5522), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [192582] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3649), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3651), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6287), 1, + sym_identifier, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(6291), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [22796] = 3, + STATE(2550), 1, + sym_template_type, + STATE(2594), 1, + sym_field_declaration_list, + STATE(2639), 1, + sym__class_declaration, + STATE(2654), 1, + sym__class_declaration_item, + STATE(5892), 1, + sym_ms_declspec_modifier, + STATE(6911), 1, + sym__scope_resolution, + STATE(7240), 1, + sym_virtual_specifier, + STATE(8364), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2450), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5895), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5474), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [192663] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3501), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [22844] = 3, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + ACTIONS(6299), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, + sym_template_type, + STATE(1383), 1, + sym__class_declaration, + STATE(1398), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(5793), 1, + sym_ms_declspec_modifier, + STATE(6946), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1892), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5813), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5470), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [192744] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3567), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3569), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [22892] = 3, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, + sym_template_type, + STATE(1383), 1, + sym__class_declaration, + STATE(1398), 1, + sym__class_declaration_item, + STATE(1673), 1, + sym_field_declaration_list, + STATE(5838), 1, + sym_ms_declspec_modifier, + STATE(6933), 1, + sym__scope_resolution, + STATE(7473), 1, + sym_virtual_specifier, + STATE(8355), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1607), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5839), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5481), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [192825] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1383), 1, + sym__class_declaration, + STATE(1398), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(5886), 1, + sym_ms_declspec_modifier, + STATE(6944), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1488), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5919), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5521), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [192906] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6311), 1, + sym_identifier, + ACTIONS(6313), 1, + anon_sym_COLON_COLON, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(4653), 1, + sym_template_type, + STATE(5230), 1, + sym_field_declaration_list, + STATE(5316), 1, + sym__class_declaration_item, + STATE(5908), 1, + sym_ms_declspec_modifier, + STATE(6906), 1, + sym__scope_resolution, + STATE(7383), 1, + sym_virtual_specifier, + STATE(8295), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4690), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5899), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6294), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [192984] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + sym_auto, + ACTIONS(125), 1, + anon_sym_decltype, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3009), 1, + anon_sym_COLON_COLON, + ACTIONS(3013), 1, + sym_primitive_type, + ACTIONS(3015), 1, + anon_sym_enum, + ACTIONS(3017), 1, + anon_sym_class, + ACTIONS(3019), 1, + anon_sym_struct, + ACTIONS(3021), 1, + anon_sym_union, + ACTIONS(3023), 1, + anon_sym_typename, + STATE(1364), 1, + sym_type_specifier, + STATE(1424), 1, + sym_decltype_auto, + STATE(1462), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(6919), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(1357), 2, + sym_decltype, + sym_template_type, + ACTIONS(3011), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1397), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [193058] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6295), 1, + anon_sym_COLON_COLON, + ACTIONS(9723), 1, + sym_identifier, + ACTIONS(9727), 1, + sym_primitive_type, + ACTIONS(9729), 1, + anon_sym_enum, + ACTIONS(9731), 1, + anon_sym_class, + ACTIONS(9733), 1, + anon_sym_struct, + ACTIONS(9735), 1, + anon_sym_union, + ACTIONS(9737), 1, + sym_auto, + ACTIONS(9739), 1, + anon_sym_decltype, + ACTIONS(9741), 1, + anon_sym_typename, + STATE(2382), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3289), 1, + sym_type_specifier, + STATE(3744), 1, + sym_decltype_auto, + STATE(3751), 1, + sym_qualified_type_identifier, + STATE(6893), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(3536), 2, + sym_decltype, + sym_template_type, + ACTIONS(9725), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3746), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [193132] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3971), 1, + sym_auto, + ACTIONS(3973), 1, + anon_sym_decltype, + ACTIONS(6283), 1, + anon_sym_COLON_COLON, + ACTIONS(8305), 1, + sym_primitive_type, + ACTIONS(9650), 1, + sym_identifier, + ACTIONS(9654), 1, + anon_sym_enum, + ACTIONS(9656), 1, + anon_sym_class, + ACTIONS(9658), 1, + anon_sym_struct, + ACTIONS(9660), 1, + anon_sym_union, + ACTIONS(9662), 1, + anon_sym_typename, + STATE(2624), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3029), 1, + sym_qualified_type_identifier, + STATE(3035), 1, + sym_decltype_auto, + STATE(4460), 1, + sym_type_specifier, + STATE(6895), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2999), 2, + sym_decltype, + sym_template_type, + ACTIONS(9652), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3036), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [193206] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6303), 1, + anon_sym_COLON_COLON, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3037), 1, + sym_template_type, + STATE(3203), 1, + sym_field_declaration_list, + STATE(3498), 1, + sym__class_declaration_item, + STATE(5896), 1, + sym_ms_declspec_modifier, + STATE(6904), 1, + sym__scope_resolution, + STATE(7273), 1, + sym_virtual_specifier, + STATE(8315), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2882), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5871), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6294), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [193284] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3563), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3565), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [22940] = 3, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + ACTIONS(6299), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, + sym_template_type, + STATE(1376), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(5868), 1, + sym_ms_declspec_modifier, + STATE(6946), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1892), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5866), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6294), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [193362] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3513), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [22988] = 9, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + ACTIONS(8283), 1, + sym_identifier, + ACTIONS(8287), 1, + sym_primitive_type, + ACTIONS(8289), 1, + anon_sym_enum, + ACTIONS(8291), 1, + anon_sym_class, + ACTIONS(8293), 1, + anon_sym_struct, + ACTIONS(8295), 1, + anon_sym_union, + ACTIONS(8297), 1, + sym_auto, + ACTIONS(8299), 1, + anon_sym_decltype, + ACTIONS(8301), 1, + anon_sym_typename, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(4272), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4854), 1, + sym_type_specifier, + STATE(5123), 1, + sym_decltype_auto, + STATE(6933), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(1357), 2, + sym_decltype, + sym_template_type, + ACTIONS(8285), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5125), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [193436] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, - ACTIONS(4953), 1, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(7526), 1, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4955), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4637), 15, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7690), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4635), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + ACTIONS(7692), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [23048] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3503), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7694), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3505), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [23096] = 3, + ACTIONS(7696), 1, + anon_sym_COLON_COLON, + STATE(6115), 1, + sym__declarator, + STATE(6120), 1, + sym__scope_resolution, + STATE(7709), 1, + sym_init_declarator, + STATE(8470), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [193506] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(3743), 30, - sym_raw_string_literal, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7676), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7678), 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, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(7680), 1, + anon_sym_AMP, + STATE(6082), 1, + sym__scope_resolution, + STATE(6186), 1, + sym__declarator, + STATE(7908), 1, + sym_init_declarator, + STATE(9116), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [193576] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [23144] = 22, + ACTIONS(6287), 1, + sym_identifier, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2550), 1, + sym_template_type, + STATE(2594), 1, + sym_field_declaration_list, + STATE(2688), 1, + sym__class_declaration_item, + STATE(5782), 1, + sym_ms_declspec_modifier, + STATE(6911), 1, + sym__scope_resolution, + STATE(7240), 1, + sym_virtual_specifier, + STATE(8364), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2450), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5780), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6294), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [193654] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4929), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4935), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4937), 1, - anon_sym_AMP_AMP, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_CARET, - ACTIONS(4943), 1, - anon_sym_AMP, - ACTIONS(4949), 1, - anon_sym_LT_EQ, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(8094), 1, anon_sym_DASH_GT, - ACTIONS(4980), 1, - anon_sym_QMARK, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4864), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4931), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4945), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4955), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4933), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4947), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4862), 11, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9710), 1, + anon_sym___attribute__, + ACTIONS(9713), 1, + anon_sym___attribute, + ACTIONS(9833), 1, + anon_sym_requires, + STATE(6434), 1, + sym__function_attributes_end, + STATE(6546), 1, + sym_trailing_return_type, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 3, 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_LPAREN2, anon_sym_GT2, - [23230] = 3, + STATE(5656), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [193728] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3689), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3691), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [23278] = 4, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + ACTIONS(8287), 1, + sym_primitive_type, + ACTIONS(8297), 1, + sym_auto, + ACTIONS(8299), 1, + anon_sym_decltype, + ACTIONS(8317), 1, + sym_identifier, + ACTIONS(8319), 1, + anon_sym_enum, + ACTIONS(8321), 1, + anon_sym_class, + ACTIONS(8323), 1, + anon_sym_struct, + ACTIONS(8325), 1, + anon_sym_union, + ACTIONS(8327), 1, + anon_sym_typename, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(4272), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4854), 1, + sym_type_specifier, + STATE(5123), 1, + sym_decltype_auto, + STATE(6901), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(1357), 2, + sym_decltype, + sym_template_type, + ACTIONS(8285), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5125), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [193802] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4982), 1, - sym_literal_suffix, - ACTIONS(2407), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2399), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(8094), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(6427), 1, + sym__function_attributes_end, + STATE(6534), 1, + sym_trailing_return_type, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, anon_sym_GT2, - [23328] = 3, + STATE(5658), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [193876] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3703), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(8104), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9525), 1, + anon_sym_requires, + STATE(5746), 1, + sym_trailing_return_type, + STATE(6589), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [23376] = 3, + anon_sym_EQ, + STATE(5664), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [193950] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3587), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3589), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + ACTIONS(6275), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [23424] = 3, + STATE(1312), 1, + sym_template_type, + STATE(4757), 1, + sym_field_declaration_list, + STATE(4979), 1, + sym__class_declaration_item, + STATE(5876), 1, + sym_ms_declspec_modifier, + STATE(6901), 1, + sym__scope_resolution, + STATE(7360), 1, + sym_virtual_specifier, + STATE(8163), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5872), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6294), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [194028] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3575), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3577), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(8104), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9605), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9608), 1, + anon_sym_requires, + STATE(5747), 1, + sym_trailing_return_type, + STATE(6590), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 3, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [23472] = 3, + anon_sym_EQ, + STATE(5670), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [194102] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3619), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3621), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [23520] = 8, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, + sym_template_type, + STATE(1376), 1, + sym__class_declaration_item, + STATE(1673), 1, + sym_field_declaration_list, + STATE(5808), 1, + sym_ms_declspec_modifier, + STATE(6933), 1, + sym__scope_resolution, + STATE(7473), 1, + sym_virtual_specifier, + STATE(8355), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1607), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5807), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6294), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [194180] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(8094), 1, anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4870), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4868), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9710), 1, + anon_sym___attribute__, + ACTIONS(9713), 1, + anon_sym___attribute, + STATE(6428), 1, + sym__function_attributes_end, + STATE(6535), 1, + sym_trailing_return_type, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 3, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_LPAREN2, anon_sym_GT2, - [23578] = 3, + STATE(5676), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [194254] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3617), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6253), 1, + sym_identifier, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(6257), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(2448), 1, + sym_template_type, + STATE(2533), 1, + sym__class_declaration_item, + STATE(2794), 1, + sym_field_declaration_list, + STATE(5847), 1, + sym_ms_declspec_modifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(7434), 1, + sym_virtual_specifier, + STATE(8027), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2569), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5812), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6294), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [194332] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6295), 1, + anon_sym_COLON_COLON, + ACTIONS(9723), 1, + sym_identifier, + ACTIONS(9727), 1, + sym_primitive_type, + ACTIONS(9729), 1, + anon_sym_enum, + ACTIONS(9731), 1, + anon_sym_class, + ACTIONS(9733), 1, + anon_sym_struct, + ACTIONS(9735), 1, + anon_sym_union, + ACTIONS(9737), 1, + sym_auto, + ACTIONS(9739), 1, + anon_sym_decltype, + ACTIONS(9741), 1, + anon_sym_typename, + STATE(2382), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3548), 1, + sym_type_specifier, + STATE(3744), 1, + sym_decltype_auto, + STATE(3751), 1, + sym_qualified_type_identifier, + STATE(6893), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(3536), 2, + sym_decltype, + sym_template_type, + ACTIONS(9725), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3746), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [194406] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(8104), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [23626] = 3, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + STATE(5718), 1, + sym_trailing_return_type, + STATE(6585), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(5665), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [194480] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(8369), 1, + sym_identifier, + ACTIONS(8373), 1, + sym_primitive_type, + ACTIONS(8375), 1, + anon_sym_enum, + ACTIONS(8377), 1, + anon_sym_class, + ACTIONS(8379), 1, + anon_sym_struct, + ACTIONS(8381), 1, + anon_sym_union, + ACTIONS(8383), 1, + anon_sym_typename, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(2452), 1, + sym_type_specifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2446), 2, + sym_decltype, + sym_template_type, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [194554] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(9630), 1, + sym_identifier, + ACTIONS(9634), 1, + sym_primitive_type, + ACTIONS(9636), 1, + anon_sym_enum, + ACTIONS(9638), 1, + anon_sym_class, + ACTIONS(9640), 1, + anon_sym_struct, + ACTIONS(9642), 1, + anon_sym_union, + ACTIONS(9644), 1, + sym_auto, + ACTIONS(9646), 1, + anon_sym_decltype, + ACTIONS(9648), 1, + anon_sym_typename, + STATE(2361), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2539), 1, + sym_type_specifier, + STATE(2670), 1, + sym_qualified_type_identifier, + STATE(2694), 1, + sym_decltype_auto, + STATE(6911), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2600), 2, + sym_decltype, + sym_template_type, + ACTIONS(9632), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2668), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [194628] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3661), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3663), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [23674] = 3, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3971), 1, + sym_auto, + ACTIONS(3973), 1, + anon_sym_decltype, + ACTIONS(6283), 1, + anon_sym_COLON_COLON, + ACTIONS(8305), 1, + sym_primitive_type, + ACTIONS(9650), 1, + sym_identifier, + ACTIONS(9654), 1, + anon_sym_enum, + ACTIONS(9656), 1, + anon_sym_class, + ACTIONS(9658), 1, + anon_sym_struct, + ACTIONS(9660), 1, + anon_sym_union, + ACTIONS(9662), 1, + anon_sym_typename, + STATE(2624), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3029), 1, + sym_qualified_type_identifier, + STATE(3035), 1, + sym_decltype_auto, + STATE(4452), 1, + sym_type_specifier, + STATE(6895), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2999), 2, + sym_decltype, + sym_template_type, + ACTIONS(9652), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3036), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [194702] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3611), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3613), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [23722] = 20, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6261), 1, + anon_sym_COLON_COLON, + ACTIONS(9743), 1, + sym_identifier, + ACTIONS(9747), 1, + sym_primitive_type, + ACTIONS(9749), 1, + anon_sym_enum, + ACTIONS(9751), 1, + anon_sym_class, + ACTIONS(9753), 1, + anon_sym_struct, + ACTIONS(9755), 1, + anon_sym_union, + ACTIONS(9757), 1, + sym_auto, + ACTIONS(9759), 1, + anon_sym_decltype, + ACTIONS(9761), 1, + anon_sym_typename, + STATE(2372), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3117), 1, + sym_type_specifier, + STATE(3397), 1, + sym_decltype_auto, + STATE(3405), 1, + sym_qualified_type_identifier, + STATE(6912), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(3295), 2, + sym_decltype, + sym_template_type, + ACTIONS(9745), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3399), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [194776] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4935), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4937), 1, - anon_sym_AMP_AMP, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_CARET, - ACTIONS(4943), 1, - anon_sym_AMP, - ACTIONS(4949), 1, - anon_sym_LT_EQ, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4721), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4931), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4945), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4955), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4933), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4947), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4697), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [23804] = 3, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6285), 1, + anon_sym_LBRACE, + ACTIONS(6307), 1, + sym_identifier, + ACTIONS(6309), 1, + anon_sym_COLON_COLON, + STATE(2938), 1, + sym_template_type, + STATE(2973), 1, + sym_field_declaration_list, + STATE(3057), 1, + sym__class_declaration_item, + STATE(5905), 1, + sym_ms_declspec_modifier, + STATE(6909), 1, + sym__scope_resolution, + STATE(7499), 1, + sym_virtual_specifier, + STATE(8301), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2786), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5904), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6294), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [194854] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3607), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3609), 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_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6317), 1, + sym_identifier, + ACTIONS(6319), 1, + anon_sym_COLON_COLON, + ACTIONS(6321), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [23852] = 3, + STATE(3981), 1, + sym_template_type, + STATE(4284), 1, + sym_field_declaration_list, + STATE(4426), 1, + sym__class_declaration_item, + STATE(5787), 1, + sym_ms_declspec_modifier, + STATE(6907), 1, + sym__scope_resolution, + STATE(7503), 1, + sym_virtual_specifier, + STATE(7940), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(3491), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5783), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6294), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [194932] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3597), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(8094), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + ACTIONS(9575), 1, + anon_sym_requires, + STATE(6433), 1, + sym__function_attributes_end, + STATE(6545), 1, + sym_trailing_return_type, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, anon_sym_GT2, - [23900] = 20, + STATE(5680), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [195006] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4935), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4937), 1, - anon_sym_AMP_AMP, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_CARET, - ACTIONS(4943), 1, - anon_sym_AMP, - ACTIONS(4949), 1, - anon_sym_LT_EQ, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4860), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4931), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4945), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4955), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4933), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4947), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4858), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [23982] = 3, + ACTIONS(123), 1, + sym_auto, + ACTIONS(125), 1, + anon_sym_decltype, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3013), 1, + sym_primitive_type, + ACTIONS(8353), 1, + sym_identifier, + ACTIONS(8355), 1, + anon_sym_COLON_COLON, + ACTIONS(8357), 1, + anon_sym_enum, + ACTIONS(8359), 1, + anon_sym_class, + ACTIONS(8361), 1, + anon_sym_struct, + ACTIONS(8363), 1, + anon_sym_union, + ACTIONS(8365), 1, + anon_sym_typename, + STATE(1364), 1, + sym_type_specifier, + STATE(1424), 1, + sym_decltype_auto, + STATE(1462), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(6905), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(1357), 2, + sym_decltype, + sym_template_type, + ACTIONS(3011), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1397), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [195080] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3591), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3593), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [24030] = 8, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6279), 1, + anon_sym_COLON_COLON, + ACTIONS(8234), 1, + sym_primitive_type, + ACTIONS(9616), 1, + sym_identifier, + ACTIONS(9620), 1, + anon_sym_enum, + ACTIONS(9622), 1, + anon_sym_class, + ACTIONS(9624), 1, + anon_sym_struct, + ACTIONS(9626), 1, + anon_sym_union, + ACTIONS(9628), 1, + anon_sym_typename, + STATE(2452), 1, + sym_type_specifier, + STATE(2482), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(6899), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2446), 2, + sym_decltype, + sym_template_type, + ACTIONS(9618), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [195154] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4767), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4765), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_GT2, - [24088] = 12, + ACTIONS(123), 1, + sym_auto, + ACTIONS(125), 1, + anon_sym_decltype, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(1817), 1, + anon_sym_enum, + ACTIONS(1819), 1, + anon_sym_class, + ACTIONS(1821), 1, + anon_sym_struct, + ACTIONS(1823), 1, + anon_sym_union, + ACTIONS(1847), 1, + anon_sym_typename, + ACTIONS(2538), 1, + sym_primitive_type, + ACTIONS(3303), 1, + sym_identifier, + ACTIONS(3313), 1, + anon_sym_COLON_COLON, + STATE(1356), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1364), 1, + sym_type_specifier, + STATE(1424), 1, + sym_decltype_auto, + STATE(1612), 1, + sym_qualified_type_identifier, + STATE(6924), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(1357), 2, + sym_decltype, + sym_template_type, + ACTIONS(57), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1397), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [195228] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, - ACTIONS(4953), 1, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4931), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4955), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4933), 3, + ACTIONS(7676), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4827), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4825), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + ACTIONS(7678), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [24154] = 9, + ACTIONS(7680), 1, + anon_sym_AMP, + STATE(6082), 1, + sym__scope_resolution, + STATE(6200), 1, + sym__declarator, + STATE(7738), 1, + sym_init_declarator, + STATE(9116), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [195298] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, + ACTIONS(9538), 1, + anon_sym_requires, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(6366), 1, + sym_trailing_return_type, + STATE(6485), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(5681), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [195372] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(8104), 1, anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4955), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4821), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9605), 1, + anon_sym_LBRACK_LBRACK, + STATE(5730), 1, + sym_trailing_return_type, + STATE(6586), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4819), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [24214] = 4, + STATE(5666), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [195446] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, + ACTIONS(123), 1, + sym_auto, + ACTIONS(125), 1, + anon_sym_decltype, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2538), 1, + sym_primitive_type, + ACTIONS(2540), 1, + anon_sym_enum, + ACTIONS(2542), 1, + anon_sym_class, + ACTIONS(2544), 1, + anon_sym_struct, + ACTIONS(2546), 1, + anon_sym_union, + ACTIONS(2548), 1, + anon_sym_typename, + ACTIONS(4049), 1, + sym_identifier, + ACTIONS(4051), 1, anon_sym_COLON_COLON, - ACTIONS(3452), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3454), 29, - anon_sym_DOT_DOT_DOT, + STATE(1356), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1364), 1, + sym_type_specifier, + STATE(1424), 1, + sym_decltype_auto, + STATE(1612), 1, + sym_qualified_type_identifier, + STATE(6944), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(1357), 2, + sym_decltype, + sym_template_type, + ACTIONS(57), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1397), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [195520] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(9630), 1, + sym_identifier, + ACTIONS(9634), 1, + sym_primitive_type, + ACTIONS(9636), 1, + anon_sym_enum, + ACTIONS(9638), 1, + anon_sym_class, + ACTIONS(9640), 1, + anon_sym_struct, + ACTIONS(9642), 1, + anon_sym_union, + ACTIONS(9644), 1, + sym_auto, + ACTIONS(9646), 1, + anon_sym_decltype, + ACTIONS(9648), 1, + anon_sym_typename, + STATE(2361), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2598), 1, + sym_type_specifier, + STATE(2670), 1, + sym_qualified_type_identifier, + STATE(2694), 1, + sym_decltype_auto, + STATE(6911), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2600), 2, + sym_decltype, + sym_template_type, + ACTIONS(9632), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2668), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [195594] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(9630), 1, + sym_identifier, + ACTIONS(9634), 1, + sym_primitive_type, + ACTIONS(9636), 1, + anon_sym_enum, + ACTIONS(9638), 1, + anon_sym_class, + ACTIONS(9640), 1, + anon_sym_struct, + ACTIONS(9642), 1, + anon_sym_union, + ACTIONS(9644), 1, + sym_auto, + ACTIONS(9646), 1, + anon_sym_decltype, + ACTIONS(9648), 1, + anon_sym_typename, + STATE(2361), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2545), 1, + sym_type_specifier, + STATE(2670), 1, + sym_qualified_type_identifier, + STATE(2694), 1, + sym_decltype_auto, + STATE(6911), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2600), 2, + sym_decltype, + sym_template_type, + ACTIONS(9632), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2668), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [195668] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9667), 1, + anon_sym_requires, + ACTIONS(9710), 1, + anon_sym___attribute__, + ACTIONS(9713), 1, + anon_sym___attribute, + STATE(6378), 1, + sym_trailing_return_type, + STATE(6486), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [24264] = 3, + STATE(5662), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [195742] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3599), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3601), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACE, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [24312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7676), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3557), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(7678), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [24360] = 3, + ACTIONS(7680), 1, + anon_sym_AMP, + STATE(6082), 1, + sym__scope_resolution, + STATE(6218), 1, + sym__declarator, + STATE(8071), 1, + sym_init_declarator, + STATE(9116), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [195812] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3645), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3647), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [24408] = 20, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6279), 1, + anon_sym_COLON_COLON, + ACTIONS(8234), 1, + sym_primitive_type, + ACTIONS(9616), 1, + sym_identifier, + ACTIONS(9620), 1, + anon_sym_enum, + ACTIONS(9622), 1, + anon_sym_class, + ACTIONS(9624), 1, + anon_sym_struct, + ACTIONS(9626), 1, + anon_sym_union, + ACTIONS(9628), 1, + anon_sym_typename, + STATE(2482), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4379), 1, + sym_type_specifier, + STATE(6899), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2446), 2, + sym_decltype, + sym_template_type, + ACTIONS(9618), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [195886] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6313), 1, + anon_sym_COLON_COLON, + ACTIONS(8329), 1, + sym_identifier, + ACTIONS(8333), 1, + sym_primitive_type, + ACTIONS(8335), 1, + anon_sym_enum, + ACTIONS(8337), 1, + anon_sym_class, + ACTIONS(8339), 1, + anon_sym_struct, + ACTIONS(8341), 1, + anon_sym_union, + ACTIONS(8343), 1, + sym_auto, + ACTIONS(8345), 1, + anon_sym_decltype, + ACTIONS(8347), 1, + anon_sym_typename, + STATE(4406), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5244), 1, + sym_type_specifier, + STATE(5300), 1, + sym_decltype_auto, + STATE(5318), 1, + sym_qualified_type_identifier, + STATE(6906), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(5220), 2, + sym_decltype, + sym_template_type, + ACTIONS(8331), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5304), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [195960] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4935), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4937), 1, - anon_sym_AMP_AMP, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_CARET, - ACTIONS(4943), 1, - anon_sym_AMP, - ACTIONS(4949), 1, - anon_sym_LT_EQ, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4771), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4931), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4945), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4955), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4933), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4947), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4769), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [24490] = 3, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3971), 1, + sym_auto, + ACTIONS(3973), 1, + anon_sym_decltype, + ACTIONS(6283), 1, + anon_sym_COLON_COLON, + ACTIONS(8305), 1, + sym_primitive_type, + ACTIONS(9650), 1, + sym_identifier, + ACTIONS(9654), 1, + anon_sym_enum, + ACTIONS(9656), 1, + anon_sym_class, + ACTIONS(9658), 1, + anon_sym_struct, + ACTIONS(9660), 1, + anon_sym_union, + ACTIONS(9662), 1, + anon_sym_typename, + STATE(2624), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2982), 1, + sym_type_specifier, + STATE(3029), 1, + sym_qualified_type_identifier, + STATE(3035), 1, + sym_decltype_auto, + STATE(6895), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2999), 2, + sym_decltype, + sym_template_type, + ACTIONS(9652), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3036), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [196034] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3635), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [24538] = 3, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(9638), 1, + anon_sym_class, + ACTIONS(9640), 1, + anon_sym_struct, + ACTIONS(9642), 1, + anon_sym_union, + ACTIONS(9644), 1, + sym_auto, + ACTIONS(9646), 1, + anon_sym_decltype, + ACTIONS(9795), 1, + sym_identifier, + ACTIONS(9799), 1, + sym_primitive_type, + ACTIONS(9801), 1, + anon_sym_enum, + ACTIONS(9803), 1, + anon_sym_typename, + STATE(2360), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2545), 1, + sym_type_specifier, + STATE(2670), 1, + sym_qualified_type_identifier, + STATE(2694), 1, + sym_decltype_auto, + STATE(6911), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2600), 2, + sym_decltype, + sym_template_type, + ACTIONS(9797), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2668), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [196108] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3627), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3629), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(6393), 1, + sym_trailing_return_type, + STATE(6481), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [24586] = 9, + STATE(5675), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [196182] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, - ACTIONS(4953), 1, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4955), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4835), 15, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7676), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4833), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + ACTIONS(7678), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [24646] = 3, + ACTIONS(7680), 1, + anon_sym_AMP, + STATE(6082), 1, + sym__scope_resolution, + STATE(6213), 1, + sym__declarator, + STATE(7709), 1, + sym_init_declarator, + STATE(9116), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [196252] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2399), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [24693] = 20, + ACTIONS(123), 1, + sym_auto, + ACTIONS(125), 1, + anon_sym_decltype, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3013), 1, + sym_primitive_type, + ACTIONS(8353), 1, + sym_identifier, + ACTIONS(8355), 1, + anon_sym_COLON_COLON, + ACTIONS(8359), 1, + anon_sym_class, + ACTIONS(8361), 1, + anon_sym_struct, + ACTIONS(8363), 1, + anon_sym_union, + ACTIONS(9841), 1, + anon_sym_enum, + ACTIONS(9843), 1, + anon_sym_typename, + STATE(1424), 1, + sym_decltype_auto, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(5354), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6905), 1, + sym__scope_resolution, + STATE(7142), 1, + sym_type_specifier, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(1357), 2, + sym_decltype, + sym_template_type, + ACTIONS(9839), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1397), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [196326] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4733), 1, - anon_sym_EQ, - ACTIONS(4988), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4990), 1, - anon_sym_AMP_AMP, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6261), 1, + anon_sym_COLON_COLON, + ACTIONS(9743), 1, + sym_identifier, + ACTIONS(9747), 1, + sym_primitive_type, + ACTIONS(9749), 1, + anon_sym_enum, + ACTIONS(9751), 1, + anon_sym_class, + ACTIONS(9753), 1, + anon_sym_struct, + ACTIONS(9755), 1, + anon_sym_union, + ACTIONS(9757), 1, + sym_auto, + ACTIONS(9759), 1, + anon_sym_decltype, + ACTIONS(9761), 1, + anon_sym_typename, + STATE(2372), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3121), 1, + sym_type_specifier, + STATE(3397), 1, + sym_decltype_auto, + STATE(3405), 1, + sym_qualified_type_identifier, + STATE(6912), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(3295), 2, + sym_decltype, + sym_template_type, + ACTIONS(9745), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3399), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [196400] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, ACTIONS(4992), 1, - anon_sym_PIPE, - ACTIONS(4994), 1, - anon_sym_CARET, - ACTIONS(4996), 1, - anon_sym_AMP, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4984), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4998), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4986), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4731), 13, - anon_sym_DOT_DOT_DOT, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24774] = 3, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(1312), 1, + sym_template_type, + STATE(4757), 1, + sym_field_declaration_list, + STATE(4979), 1, + sym__class_declaration_item, + STATE(5829), 1, + sym_ms_declspec_modifier, + STATE(6933), 1, + sym__scope_resolution, + STATE(7360), 1, + sym_virtual_specifier, + STATE(8163), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5828), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6294), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [196478] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4683), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4681), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [24821] = 3, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3161), 1, + anon_sym_enum, + ACTIONS(3163), 1, + anon_sym_class, + ACTIONS(3165), 1, + anon_sym_struct, + ACTIONS(3167), 1, + anon_sym_union, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(3195), 1, + anon_sym_typename, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(8230), 1, + sym_identifier, + ACTIONS(8234), 1, + sym_primitive_type, + STATE(2452), 1, + sym_type_specifier, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2446), 2, + sym_decltype, + sym_template_type, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [196552] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6259), 1, + sym_identifier, + ACTIONS(6261), 1, + anon_sym_COLON_COLON, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(2972), 1, + sym_template_type, + STATE(3129), 1, + sym_field_declaration_list, + STATE(3358), 1, + sym__class_declaration_item, + STATE(5837), 1, + sym_ms_declspec_modifier, + STATE(6912), 1, + sym__scope_resolution, + STATE(7222), 1, + sym_virtual_specifier, + STATE(8142), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2799), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6294), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [196630] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3669), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3671), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7676), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7678), 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, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [24868] = 3, + ACTIONS(7680), 1, + anon_sym_AMP, + STATE(6082), 1, + sym__scope_resolution, + STATE(6171), 1, + sym__declarator, + STATE(7772), 1, + sym_init_declarator, + STATE(9116), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [196700] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3705), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3707), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6303), 1, + anon_sym_COLON_COLON, + ACTIONS(9775), 1, + sym_identifier, + ACTIONS(9779), 1, + sym_primitive_type, + ACTIONS(9781), 1, + anon_sym_enum, + ACTIONS(9783), 1, + anon_sym_class, + ACTIONS(9785), 1, + anon_sym_struct, + ACTIONS(9787), 1, + anon_sym_union, + ACTIONS(9789), 1, + sym_auto, + ACTIONS(9791), 1, + anon_sym_decltype, + ACTIONS(9793), 1, + anon_sym_typename, + STATE(2377), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3187), 1, + sym_type_specifier, + STATE(3509), 1, + sym_decltype_auto, + STATE(3522), 1, + sym_qualified_type_identifier, + STATE(6904), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(3412), 2, + sym_decltype, + sym_template_type, + ACTIONS(9777), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3511), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [196774] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6295), 1, + anon_sym_COLON_COLON, + ACTIONS(9723), 1, + sym_identifier, + ACTIONS(9727), 1, + sym_primitive_type, + ACTIONS(9729), 1, + anon_sym_enum, + ACTIONS(9731), 1, + anon_sym_class, + ACTIONS(9733), 1, + anon_sym_struct, + ACTIONS(9735), 1, + anon_sym_union, + ACTIONS(9737), 1, + sym_auto, + ACTIONS(9739), 1, + anon_sym_decltype, + ACTIONS(9741), 1, + anon_sym_typename, + STATE(2382), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3284), 1, + sym_type_specifier, + STATE(3744), 1, + sym_decltype_auto, + STATE(3751), 1, + sym_qualified_type_identifier, + STATE(6893), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(3536), 2, + sym_decltype, + sym_template_type, + ACTIONS(9725), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3746), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [196848] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7676), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7678), 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, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [24915] = 3, + ACTIONS(7680), 1, + anon_sym_AMP, + STATE(6082), 1, + sym__scope_resolution, + STATE(6199), 1, + sym__declarator, + STATE(7802), 1, + sym_init_declarator, + STATE(9116), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [196918] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2461), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [24962] = 3, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6303), 1, + anon_sym_COLON_COLON, + ACTIONS(9775), 1, + sym_identifier, + ACTIONS(9779), 1, + sym_primitive_type, + ACTIONS(9781), 1, + anon_sym_enum, + ACTIONS(9783), 1, + anon_sym_class, + ACTIONS(9785), 1, + anon_sym_struct, + ACTIONS(9787), 1, + anon_sym_union, + ACTIONS(9789), 1, + sym_auto, + ACTIONS(9791), 1, + anon_sym_decltype, + ACTIONS(9793), 1, + anon_sym_typename, + STATE(2377), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3140), 1, + sym_type_specifier, + STATE(3509), 1, + sym_decltype_auto, + STATE(3522), 1, + sym_qualified_type_identifier, + STATE(6904), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(3412), 2, + sym_decltype, + sym_template_type, + ACTIONS(9777), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3511), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [196992] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2461), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [25009] = 3, + ACTIONS(123), 1, + sym_auto, + ACTIONS(125), 1, + anon_sym_decltype, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3013), 1, + sym_primitive_type, + ACTIONS(8353), 1, + sym_identifier, + ACTIONS(8355), 1, + anon_sym_COLON_COLON, + ACTIONS(8359), 1, + anon_sym_class, + ACTIONS(8361), 1, + anon_sym_struct, + ACTIONS(8363), 1, + anon_sym_union, + ACTIONS(9841), 1, + anon_sym_enum, + ACTIONS(9843), 1, + anon_sym_typename, + STATE(1424), 1, + sym_decltype_auto, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(5354), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6905), 1, + sym__scope_resolution, + STATE(7214), 1, + sym_type_specifier, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(1357), 2, + sym_decltype, + sym_template_type, + ACTIONS(9839), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1397), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [197066] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2461), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [25056] = 3, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1376), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(5909), 1, + sym_ms_declspec_modifier, + STATE(6944), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1399), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5806), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6294), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [197144] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2461), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [25103] = 3, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6281), 1, + sym_identifier, + ACTIONS(6283), 1, + anon_sym_COLON_COLON, + ACTIONS(6285), 1, + anon_sym_LBRACE, + STATE(2938), 1, + sym_template_type, + STATE(2973), 1, + sym_field_declaration_list, + STATE(3057), 1, + sym__class_declaration_item, + STATE(5862), 1, + sym_ms_declspec_modifier, + STATE(6895), 1, + sym__scope_resolution, + STATE(7499), 1, + sym_virtual_specifier, + STATE(8301), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2786), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5861), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6294), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [197222] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(9638), 1, + anon_sym_class, + ACTIONS(9640), 1, + anon_sym_struct, + ACTIONS(9642), 1, + anon_sym_union, + ACTIONS(9644), 1, + sym_auto, + ACTIONS(9646), 1, + anon_sym_decltype, + ACTIONS(9795), 1, + sym_identifier, + ACTIONS(9799), 1, + sym_primitive_type, + ACTIONS(9801), 1, + anon_sym_enum, + ACTIONS(9803), 1, + anon_sym_typename, + STATE(2360), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2598), 1, + sym_type_specifier, + STATE(2670), 1, + sym_qualified_type_identifier, + STATE(2694), 1, + sym_decltype_auto, + STATE(6911), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2600), 2, + sym_decltype, + sym_template_type, + ACTIONS(9797), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2668), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [197296] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 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, - anon_sym_GT_GT, - anon_sym_const, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2449), 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_EQ, - anon_sym_LT_LT, - anon_sym_COLON_COLON, + ACTIONS(6257), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + ACTIONS(6267), 1, + sym_identifier, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + STATE(2448), 1, + sym_template_type, + STATE(2533), 1, + sym__class_declaration_item, + STATE(5449), 1, + sym_field_declaration_list, + STATE(5867), 1, + sym_ms_declspec_modifier, + STATE(6917), 1, + sym__scope_resolution, + STATE(7412), 1, + sym_virtual_specifier, + STATE(8300), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [25150] = 3, + STATE(4847), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5865), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6294), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [197374] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2461), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9710), 1, + anon_sym___attribute__, + ACTIONS(9713), 1, + anon_sym___attribute, + STATE(6405), 1, + sym_trailing_return_type, + STATE(6482), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [25197] = 3, + STATE(5678), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [197448] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4735), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [25244] = 3, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(9638), 1, + anon_sym_class, + ACTIONS(9640), 1, + anon_sym_struct, + ACTIONS(9642), 1, + anon_sym_union, + ACTIONS(9644), 1, + sym_auto, + ACTIONS(9646), 1, + anon_sym_decltype, + ACTIONS(9795), 1, + sym_identifier, + ACTIONS(9799), 1, + sym_primitive_type, + ACTIONS(9801), 1, + anon_sym_enum, + ACTIONS(9803), 1, + anon_sym_typename, + STATE(2360), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2539), 1, + sym_type_specifier, + STATE(2670), 1, + sym_qualified_type_identifier, + STATE(2694), 1, + sym_decltype_auto, + STATE(6911), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2600), 2, + sym_decltype, + sym_template_type, + ACTIONS(9797), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2668), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [197522] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3677), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3679), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7676), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7678), 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, - anon_sym_SEMI, + ACTIONS(7680), 1, + anon_sym_AMP, + STATE(6082), 1, + sym__scope_resolution, + STATE(6207), 1, + sym__declarator, + STATE(7709), 1, + sym_init_declarator, + STATE(9116), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [197592] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6279), 1, + anon_sym_COLON_COLON, + ACTIONS(8234), 1, + sym_primitive_type, + ACTIONS(9616), 1, + sym_identifier, + ACTIONS(9620), 1, + anon_sym_enum, + ACTIONS(9622), 1, + anon_sym_class, + ACTIONS(9624), 1, + anon_sym_struct, + ACTIONS(9626), 1, + anon_sym_union, + ACTIONS(9628), 1, + anon_sym_typename, + STATE(2482), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4270), 1, + sym_type_specifier, + STATE(6899), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2446), 2, + sym_decltype, + sym_template_type, + ACTIONS(9618), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [197666] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3313), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + ACTIONS(4992), 1, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [25291] = 3, + ACTIONS(6323), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1376), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(5820), 1, + sym_ms_declspec_modifier, + STATE(6924), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1399), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5819), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6294), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [197744] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4741), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4739), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [25338] = 3, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6319), 1, + anon_sym_COLON_COLON, + ACTIONS(9808), 1, + sym_identifier, + ACTIONS(9812), 1, + sym_primitive_type, + ACTIONS(9814), 1, + anon_sym_enum, + ACTIONS(9816), 1, + anon_sym_class, + ACTIONS(9818), 1, + anon_sym_struct, + ACTIONS(9820), 1, + anon_sym_union, + ACTIONS(9822), 1, + sym_auto, + ACTIONS(9824), 1, + anon_sym_decltype, + ACTIONS(9826), 1, + anon_sym_typename, + STATE(2515), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4188), 1, + sym_type_specifier, + STATE(4430), 1, + sym_decltype_auto, + STATE(6907), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(4362), 2, + sym_decltype, + sym_template_type, + ACTIONS(9810), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4377), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [197818] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4745), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4743), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [25385] = 3, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6303), 1, + anon_sym_COLON_COLON, + ACTIONS(9775), 1, + sym_identifier, + ACTIONS(9779), 1, + sym_primitive_type, + ACTIONS(9781), 1, + anon_sym_enum, + ACTIONS(9783), 1, + anon_sym_class, + ACTIONS(9785), 1, + anon_sym_struct, + ACTIONS(9787), 1, + anon_sym_union, + ACTIONS(9789), 1, + sym_auto, + ACTIONS(9791), 1, + anon_sym_decltype, + ACTIONS(9793), 1, + anon_sym_typename, + STATE(2377), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3308), 1, + sym_type_specifier, + STATE(3509), 1, + sym_decltype_auto, + STATE(3522), 1, + sym_qualified_type_identifier, + STATE(6904), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(3412), 2, + sym_decltype, + sym_template_type, + ACTIONS(9777), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3511), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [197892] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3585), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [25432] = 9, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3941), 1, + anon_sym_enum, + ACTIONS(3943), 1, + anon_sym_class, + ACTIONS(3945), 1, + anon_sym_struct, + ACTIONS(3947), 1, + anon_sym_union, + ACTIONS(3971), 1, + sym_auto, + ACTIONS(3973), 1, + anon_sym_decltype, + ACTIONS(3975), 1, + anon_sym_typename, + ACTIONS(6309), 1, + anon_sym_COLON_COLON, + ACTIONS(8303), 1, + sym_identifier, + ACTIONS(8305), 1, + sym_primitive_type, + STATE(2982), 1, + sym_type_specifier, + STATE(3029), 1, + sym_qualified_type_identifier, + STATE(3035), 1, + sym_decltype_auto, + STATE(4533), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6909), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2999), 2, + sym_decltype, + sym_template_type, + ACTIONS(3937), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3036), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [197966] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4835), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(4833), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [25491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3657), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3659), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + ACTIONS(6257), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [25538] = 3, + ACTIONS(6277), 1, + sym_identifier, + ACTIONS(6279), 1, + anon_sym_COLON_COLON, + STATE(2448), 1, + sym_template_type, + STATE(2533), 1, + sym__class_declaration_item, + STATE(2794), 1, + sym_field_declaration_list, + STATE(5917), 1, + sym_ms_declspec_modifier, + STATE(6899), 1, + sym__scope_resolution, + STATE(7434), 1, + sym_virtual_specifier, + STATE(8027), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2569), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5846), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6294), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [198044] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4856), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4854), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [25585] = 3, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6319), 1, + anon_sym_COLON_COLON, + ACTIONS(9808), 1, + sym_identifier, + ACTIONS(9812), 1, + sym_primitive_type, + ACTIONS(9814), 1, + anon_sym_enum, + ACTIONS(9816), 1, + anon_sym_class, + ACTIONS(9818), 1, + anon_sym_struct, + ACTIONS(9820), 1, + anon_sym_union, + ACTIONS(9822), 1, + sym_auto, + ACTIONS(9824), 1, + anon_sym_decltype, + ACTIONS(9826), 1, + anon_sym_typename, + STATE(2515), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4222), 1, + sym_type_specifier, + STATE(4430), 1, + sym_decltype_auto, + STATE(6907), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(4362), 2, + sym_decltype, + sym_template_type, + ACTIONS(9810), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4377), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [198118] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 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, - anon_sym_GT_GT, - anon_sym_const, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4992), 1, anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2510), 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_EQ, - anon_sym_LT_LT, + ACTIONS(6293), 1, + sym_identifier, + ACTIONS(6295), 1, anon_sym_COLON_COLON, + ACTIONS(6297), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + STATE(3178), 1, + sym_template_type, + STATE(3357), 1, + sym_field_declaration_list, + STATE(3787), 1, + sym__class_declaration_item, + STATE(5795), 1, + sym_ms_declspec_modifier, + STATE(6893), 1, + sym__scope_resolution, + STATE(7220), 1, + sym_virtual_specifier, + STATE(7985), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [25632] = 3, + STATE(2968), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5792), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6294), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [198196] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3703), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [25679] = 3, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6261), 1, + anon_sym_COLON_COLON, + ACTIONS(9743), 1, + sym_identifier, + ACTIONS(9747), 1, + sym_primitive_type, + ACTIONS(9749), 1, + anon_sym_enum, + ACTIONS(9751), 1, + anon_sym_class, + ACTIONS(9753), 1, + anon_sym_struct, + ACTIONS(9755), 1, + anon_sym_union, + ACTIONS(9757), 1, + sym_auto, + ACTIONS(9759), 1, + anon_sym_decltype, + ACTIONS(9761), 1, + anon_sym_typename, + STATE(2372), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3286), 1, + sym_type_specifier, + STATE(3397), 1, + sym_decltype_auto, + STATE(3405), 1, + sym_qualified_type_identifier, + STATE(6912), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(3295), 2, + sym_decltype, + sym_template_type, + ACTIONS(9745), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3399), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [198270] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4593), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4591), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [25726] = 3, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6279), 1, + anon_sym_COLON_COLON, + ACTIONS(8234), 1, + sym_primitive_type, + ACTIONS(9616), 1, + sym_identifier, + ACTIONS(9620), 1, + anon_sym_enum, + ACTIONS(9622), 1, + anon_sym_class, + ACTIONS(9624), 1, + anon_sym_struct, + ACTIONS(9626), 1, + anon_sym_union, + ACTIONS(9628), 1, + anon_sym_typename, + STATE(2482), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4411), 1, + sym_type_specifier, + STATE(6899), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2446), 2, + sym_decltype, + sym_template_type, + ACTIONS(9618), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [198344] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(6319), 1, + anon_sym_COLON_COLON, + ACTIONS(9808), 1, + sym_identifier, + ACTIONS(9812), 1, + sym_primitive_type, + ACTIONS(9814), 1, + anon_sym_enum, + ACTIONS(9816), 1, + anon_sym_class, + ACTIONS(9818), 1, + anon_sym_struct, + ACTIONS(9820), 1, + anon_sym_union, + ACTIONS(9822), 1, + sym_auto, + ACTIONS(9824), 1, + anon_sym_decltype, + ACTIONS(9826), 1, + anon_sym_typename, + STATE(2515), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4361), 1, + sym_type_specifier, + STATE(4430), 1, + sym_decltype_auto, + STATE(6907), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(4362), 2, + sym_decltype, + sym_template_type, + ACTIONS(9810), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4377), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [198418] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + sym_auto, + ACTIONS(125), 1, + anon_sym_decltype, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3013), 1, + sym_primitive_type, + ACTIONS(8353), 1, + sym_identifier, + ACTIONS(8355), 1, + anon_sym_COLON_COLON, + ACTIONS(8359), 1, + anon_sym_class, + ACTIONS(8361), 1, + anon_sym_struct, + ACTIONS(8363), 1, + anon_sym_union, + ACTIONS(9841), 1, + anon_sym_enum, + ACTIONS(9843), 1, + anon_sym_typename, + STATE(1364), 1, + sym_type_specifier, + STATE(1424), 1, + sym_decltype_auto, + STATE(1482), 1, + sym_qualified_type_identifier, + STATE(5354), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6905), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(1357), 2, + sym_decltype, + sym_template_type, + ACTIONS(9839), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1397), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [198492] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3191), 1, + sym_auto, + ACTIONS(3193), 1, + anon_sym_decltype, + ACTIONS(6279), 1, + anon_sym_COLON_COLON, + ACTIONS(8234), 1, + sym_primitive_type, + ACTIONS(9616), 1, + sym_identifier, + ACTIONS(9620), 1, + anon_sym_enum, + ACTIONS(9622), 1, + anon_sym_class, + ACTIONS(9624), 1, + anon_sym_struct, + ACTIONS(9626), 1, + anon_sym_union, + ACTIONS(9628), 1, + anon_sym_typename, + STATE(2482), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2513), 1, + sym_decltype_auto, + STATE(2541), 1, + sym_qualified_type_identifier, + STATE(4295), 1, + sym_type_specifier, + STATE(6899), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(2446), 2, + sym_decltype, + sym_template_type, + ACTIONS(9618), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2473), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [198566] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_enum, + ACTIONS(73), 1, + anon_sym_class, + ACTIONS(75), 1, + anon_sym_struct, + ACTIONS(77), 1, + anon_sym_union, + ACTIONS(123), 1, + sym_auto, + ACTIONS(125), 1, + anon_sym_decltype, + ACTIONS(129), 1, + anon_sym_typename, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2538), 1, + sym_primitive_type, + ACTIONS(4049), 1, + sym_identifier, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + STATE(1356), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1364), 1, + sym_type_specifier, + STATE(1424), 1, + sym_decltype_auto, + STATE(1612), 1, + sym_qualified_type_identifier, + STATE(6944), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_dependent_type_identifier, + STATE(1357), 2, + sym_decltype, + sym_template_type, + ACTIONS(57), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1397), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [198640] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4358), 1, + anon_sym___declspec, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, + sym_template_type, + STATE(1376), 1, + sym__class_declaration_item, + STATE(1673), 1, + sym_field_declaration_list, + STATE(5774), 1, + sym_ms_declspec_modifier, + STATE(6901), 1, + sym__scope_resolution, + STATE(7473), 1, + sym_virtual_specifier, + STATE(8355), 1, + sym_base_class_clause, + ACTIONS(4352), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(4360), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1607), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5796), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6294), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [198718] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2506), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7520), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(7526), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(6141), 1, + sym__scope_resolution, + STATE(6761), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [198785] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8193), 1, anon_sym_DASH_GT, + ACTIONS(8211), 1, + anon_sym_requires, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(6612), 1, + sym__function_attributes_end, + STATE(6776), 1, + sym_trailing_return_type, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [25773] = 3, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9387), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5698), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [198858] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3709), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3711), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8141), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + ACTIONS(9667), 1, + anon_sym_requires, + STATE(6378), 1, + sym_trailing_return_type, + STATE(6682), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9578), 2, + anon_sym_LPAREN2, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [25820] = 3, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5685), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [198931] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3571), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3573), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7690), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7692), 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, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [25867] = 3, + ACTIONS(7694), 1, + anon_sym_AMP, + ACTIONS(7696), 1, + anon_sym_COLON_COLON, + STATE(6120), 1, + sym__scope_resolution, + STATE(6431), 1, + sym__declarator, + STATE(8470), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [198998] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3521), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7718), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7720), 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, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(7722), 1, + anon_sym_AMP, + STATE(6082), 1, + sym__scope_resolution, + STATE(6854), 1, + sym__declarator, + STATE(8672), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [199065] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(2522), 1, + anon_sym_STAR, + ACTIONS(2524), 1, + anon_sym_AMP, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [25914] = 3, + STATE(6154), 1, + sym__scope_resolution, + STATE(6763), 1, + sym__declarator, + STATE(8684), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [199132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8313), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + sym_ms_restrict_modifier, anon_sym_const, - anon_sym_DOT, - ACTIONS(3617), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8315), 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym___extension__, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [25961] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [199169] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4627), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [26008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4725), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4723), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(7520), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [26055] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4695), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7522), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4693), 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_LT_EQ, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [26102] = 3, + STATE(6141), 1, + sym__scope_resolution, + STATE(6740), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [199236] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3619), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3621), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(5404), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4737), 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(9845), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4735), 21, + 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [26149] = 3, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [199277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3689), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8349), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + sym_ms_restrict_modifier, anon_sym_const, - anon_sym_DOT, - ACTIONS(3691), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8351), 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym___extension__, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [26196] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [199314] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4813), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(2522), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2524), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4811), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(6154), 1, + sym__scope_resolution, + STATE(6994), 1, + sym__declarator, + STATE(8684), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [199381] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, + anon_sym_STAR, + ACTIONS(7520), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(6141), 1, + sym__scope_resolution, + STATE(6741), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [199448] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8193), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [26243] = 10, + ACTIONS(8211), 1, + anon_sym_requires, + ACTIONS(9586), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9589), 1, + anon_sym_LBRACK, + STATE(6613), 1, + sym__function_attributes_end, + STATE(6779), 1, + sym_trailing_return_type, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9578), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5702), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [199521] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4986), 3, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4691), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(4689), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + ACTIONS(7520), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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, - [26304] = 3, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(6141), 1, + sym__scope_resolution, + STATE(6772), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [199588] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3454), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7520), 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, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [26351] = 3, + STATE(6141), 1, + sym__scope_resolution, + STATE(6803), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [199655] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4749), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7520), 1, + anon_sym_AMP_AMP, + ACTIONS(7522), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4747), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(6141), 1, + sym__scope_resolution, + STATE(6763), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [199722] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7496), 1, + anon_sym_DASH_GT, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(9850), 1, + anon_sym___attribute__, + ACTIONS(9853), 1, + anon_sym___attribute, + ACTIONS(9856), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9859), 1, + anon_sym_LBRACK, + STATE(5857), 1, + sym_trailing_return_type, + STATE(6008), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 7, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [199789] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(8191), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [26398] = 3, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(6251), 1, + sym_trailing_return_type, + STATE(6440), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9387), 2, + anon_sym_COMMA, + anon_sym_LPAREN2, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5684), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [199862] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4775), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7718), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7720), 1, + anon_sym_AMP_AMP, + ACTIONS(7722), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4773), 23, - anon_sym_DOT_DOT_DOT, + STATE(6082), 1, + sym__scope_resolution, + STATE(6929), 1, + sym__declarator, + STATE(8672), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [199929] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7496), 1, + anon_sym_DASH_GT, + ACTIONS(9389), 1, + anon_sym___attribute__, + ACTIONS(9392), 1, + anon_sym___attribute, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9403), 1, + anon_sym_requires, + STATE(5825), 1, + sym_trailing_return_type, + STATE(6065), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 7, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [199996] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(7526), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [26445] = 3, + ACTIONS(7698), 1, + anon_sym_STAR, + ACTIONS(7700), 1, + anon_sym_AMP_AMP, + ACTIONS(7702), 1, + anon_sym_AMP, + ACTIONS(7704), 1, + anon_sym_COLON_COLON, + STATE(6134), 1, + sym__scope_resolution, + STATE(6954), 1, + sym__declarator, + STATE(8410), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [200063] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4779), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4777), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8141), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [26492] = 3, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(6393), 1, + sym_trailing_return_type, + STATE(6700), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9387), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5703), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [200136] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3649), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3651), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7496), 1, + anon_sym_DASH_GT, + ACTIONS(9580), 1, + anon_sym___attribute__, + ACTIONS(9583), 1, + anon_sym___attribute, + ACTIONS(9586), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9594), 1, + anon_sym_requires, + STATE(5890), 1, + sym_trailing_return_type, + STATE(6068), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [26539] = 3, + anon_sym_try, + [200203] = 18, ACTIONS(3), 1, sym_comment, - 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_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4761), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, + anon_sym_STAR, + ACTIONS(7520), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [26586] = 3, + STATE(6141), 1, + sym__scope_resolution, + STATE(6744), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [200270] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3501), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7496), 1, + anon_sym_DASH_GT, + ACTIONS(9850), 1, + anon_sym___attribute__, + ACTIONS(9853), 1, + anon_sym___attribute, + ACTIONS(9856), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9864), 1, + anon_sym_requires, + STATE(5816), 1, + sym_trailing_return_type, + STATE(6070), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9861), 2, + anon_sym_final, + anon_sym_override, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [26633] = 9, + anon_sym_try, + [200337] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4691), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(2522), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2524), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(4689), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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, - [26692] = 8, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(6154), 1, + sym__scope_resolution, + STATE(6971), 1, + sym__declarator, + STATE(8684), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [200404] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4767), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(4765), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + ACTIONS(7520), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - [26749] = 19, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(6141), 1, + sym__scope_resolution, + STATE(6738), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [200471] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4691), 1, - anon_sym_EQ, - ACTIONS(4990), 1, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, + anon_sym_STAR, + ACTIONS(7520), 1, anon_sym_AMP_AMP, - ACTIONS(4992), 1, - anon_sym_PIPE, - ACTIONS(4994), 1, - anon_sym_CARET, - ACTIONS(4996), 1, + ACTIONS(7522), 1, anon_sym_AMP, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4984), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4998), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4986), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4689), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26828] = 3, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(6141), 1, + sym__scope_resolution, + STATE(6769), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [200538] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2399), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(8191), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9605), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9710), 1, + anon_sym___attribute__, + ACTIONS(9713), 1, + anon_sym___attribute, + STATE(6298), 1, + sym_trailing_return_type, + STATE(6441), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9578), 2, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [26875] = 3, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5700), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [200611] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4799), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(2522), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2524), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4797), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [26922] = 3, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(6154), 1, + sym__scope_resolution, + STATE(6995), 1, + sym__declarator, + STATE(8684), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [200678] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3454), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7496), 1, + anon_sym_DASH_GT, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(9389), 1, + anon_sym___attribute__, + ACTIONS(9392), 1, + anon_sym___attribute, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(5826), 1, + sym_trailing_return_type, + STATE(5993), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [26969] = 3, + anon_sym_try, + [200745] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3525), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(955), 1, + sym_alignas_qualifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9869), 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(9867), 8, + anon_sym_AMP, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [27016] = 3, + anon_sym_constinit, + anon_sym_consteval, + [200790] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4837), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8141), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [27063] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(9589), 1, anon_sym_LBRACK, - ACTIONS(4691), 1, - anon_sym_EQ, - ACTIONS(4992), 1, - anon_sym_PIPE, - ACTIONS(4994), 1, - anon_sym_CARET, - ACTIONS(4996), 1, - anon_sym_AMP, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4984), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4998), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4986), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4689), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(6405), 1, + sym_trailing_return_type, + STATE(6702), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9578), 2, + anon_sym_LPAREN2, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27140] = 17, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5701), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [200863] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4994), 1, - anon_sym_CARET, - ACTIONS(4996), 1, - anon_sym_AMP, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4691), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(4984), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4998), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4986), 3, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4689), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + ACTIONS(7520), 1, anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27215] = 16, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(6141), 1, + sym__scope_resolution, + STATE(6773), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [200930] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4996), 1, - anon_sym_AMP, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(8191), 1, anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4984), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4998), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4691), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(4986), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4689), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27288] = 15, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + ACTIONS(9554), 1, + anon_sym_requires, + STATE(6299), 1, + sym_trailing_return_type, + STATE(6444), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9387), 2, + anon_sym_COMMA, + anon_sym_LPAREN2, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5689), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [201003] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + STATE(955), 1, + sym_alignas_qualifier, + ACTIONS(67), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9873), 3, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4984), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4998), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4986), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4691), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(4689), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27359] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4541), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(9871), 8, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4543), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [27406] = 14, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [201048] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4984), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4986), 3, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4691), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(4689), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + ACTIONS(7520), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27475] = 3, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(6141), 1, + sym__scope_resolution, + STATE(6807), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [201115] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3567), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3569), 30, - anon_sym_DOT_DOT_DOT, + STATE(1234), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5131), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_GT2, + ACTIONS(4524), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5128), 4, + anon_sym___attribute__, + anon_sym___attribute, + sym_auto, + anon_sym_decltype, + ACTIONS(4520), 17, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [27522] = 3, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [201158] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4817), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(2522), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2524), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4815), 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_LT_EQ, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [27569] = 5, + STATE(6154), 1, + sym__scope_resolution, + STATE(6951), 1, + sym__declarator, + STATE(8684), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [201225] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4480), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4482), 9, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(2399), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(2407), 14, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7520), 1, + anon_sym_AMP_AMP, + ACTIONS(7522), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [27620] = 12, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(6141), 1, + sym__scope_resolution, + STATE(6762), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [201292] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4984), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4986), 3, + ACTIONS(7706), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4691), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(4689), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + ACTIONS(7708), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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, - [27685] = 3, + ACTIONS(7710), 1, + anon_sym_AMP, + STATE(6082), 1, + sym__scope_resolution, + STATE(6626), 1, + sym__declarator, + STATE(8558), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [201359] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4528), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, + anon_sym_STAR, + ACTIONS(7520), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(6141), 1, + sym__scope_resolution, + STATE(6747), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [201426] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8141), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [27732] = 3, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9538), 1, + anon_sym_requires, + STATE(6366), 1, + sym_trailing_return_type, + STATE(6680), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9387), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5688), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [201499] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3515), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3517), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7520), 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, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [27779] = 3, + STATE(6141), 1, + sym__scope_resolution, + STATE(6767), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [201566] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3563), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3565), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6622), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7676), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7678), 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, + ACTIONS(7680), 1, + anon_sym_AMP, + STATE(6082), 1, + sym__scope_resolution, + STATE(6508), 1, + sym__declarator, + STATE(9116), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [201633] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7496), 1, + anon_sym_DASH_GT, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(9580), 1, + anon_sym___attribute__, + ACTIONS(9583), 1, + anon_sym___attribute, + ACTIONS(9586), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9589), 1, + anon_sym_LBRACK, + STATE(5809), 1, + sym_trailing_return_type, + STATE(6003), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [27826] = 4, + anon_sym_try, + [201700] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3475), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3477), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(8191), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9605), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9687), 1, + anon_sym_requires, + ACTIONS(9710), 1, + anon_sym___attribute__, + ACTIONS(9713), 1, + anon_sym___attribute, + STATE(6292), 1, + sym_trailing_return_type, + STATE(6445), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9578), 2, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5704), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [201773] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(2522), 1, + anon_sym_STAR, + ACTIONS(2524), 1, + anon_sym_AMP, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(6154), 1, + sym__scope_resolution, + STATE(6979), 1, + sym__declarator, + STATE(8684), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [201840] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8193), 1, anon_sym_DASH_GT, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9716), 1, + anon_sym_requires, + STATE(6617), 1, + sym__function_attributes_end, + STATE(6784), 1, + sym_trailing_return_type, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9387), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9400), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [27875] = 4, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5706), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [201913] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, + anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(6763), 1, anon_sym_COLON_COLON, - ACTIONS(3405), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(7712), 1, + anon_sym_STAR, + ACTIONS(7714), 1, + anon_sym_AMP_AMP, + ACTIONS(7716), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3407), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(6154), 1, + sym__scope_resolution, + STATE(6869), 1, + sym__declarator, + STATE(8621), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [201980] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7516), 1, + sym_identifier, + ACTIONS(7518), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7520), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + ACTIONS(7522), 1, + anon_sym_AMP, + ACTIONS(7524), 1, + anon_sym_COLON_COLON, + ACTIONS(7526), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(6141), 1, + sym__scope_resolution, + STATE(6833), 1, + sym__declarator, + STATE(9008), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [202047] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7498), 1, + anon_sym_noexcept, + ACTIONS(7500), 1, + anon_sym_throw, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8193), 1, anon_sym_DASH_GT, + ACTIONS(9586), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9875), 1, + anon_sym_requires, + STATE(6618), 1, + sym__function_attributes_end, + STATE(6789), 1, + sym_trailing_return_type, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9578), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9591), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [27924] = 3, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5696), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [202120] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4783), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4781), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(2518), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4344), 1, + sym_identifier, + ACTIONS(7526), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [27971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7698), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4673), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(7700), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [28018] = 3, + ACTIONS(7702), 1, + anon_sym_AMP, + ACTIONS(7704), 1, + anon_sym_COLON_COLON, + STATE(6134), 1, + sym__scope_resolution, + STATE(6997), 1, + sym__declarator, + STATE(8410), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6300), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [202187] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4789), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4787), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7577), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9602), 1, + anon_sym___asm, + ACTIONS(9605), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9608), 1, + anon_sym_requires, + STATE(5747), 1, + sym_trailing_return_type, + STATE(5932), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9599), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 6, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [28065] = 11, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [202253] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7577), 1, anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4984), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4986), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4691), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9602), 1, + anon_sym___asm, + ACTIONS(9605), 1, + anon_sym_LBRACK_LBRACK, + STATE(5730), 1, + sym_trailing_return_type, + STATE(6049), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9599), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(4689), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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, - [28128] = 3, + anon_sym_try, + [202319] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3645), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3647), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7564), 1, + anon_sym_DASH_GT, + ACTIONS(9856), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9864), 1, + anon_sym_requires, + STATE(5816), 1, + sym_trailing_return_type, + STATE(6245), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9861), 2, + anon_sym_final, + anon_sym_override, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 6, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [28175] = 9, + anon_sym_try, + [202385] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7564), 1, anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4637), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9586), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9594), 1, + anon_sym_requires, + STATE(5890), 1, + sym_trailing_return_type, + STATE(6222), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(4635), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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, - [28234] = 3, + anon_sym_try, + [202451] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4843), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4841), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7577), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9884), 1, + anon_sym___asm, + ACTIONS(9887), 1, + anon_sym_requires, + STATE(5751), 1, + sym_trailing_return_type, + STATE(5935), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(9861), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9881), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 6, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [28281] = 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [202517] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3513), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7582), 1, + anon_sym_DASH_GT, + ACTIONS(9586), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9602), 1, + anon_sym___asm, + STATE(5809), 1, + sym_trailing_return_type, + STATE(6024), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9599), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [28328] = 21, + [202583] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7582), 1, + anon_sym_DASH_GT, + ACTIONS(9586), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9589), 1, anon_sym_LBRACK, - ACTIONS(4801), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4805), 1, + ACTIONS(9594), 1, + anon_sym_requires, + ACTIONS(9602), 1, + anon_sym___asm, + STATE(5890), 1, + sym_trailing_return_type, + STATE(6034), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9599), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(4988), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4990), 1, - anon_sym_AMP_AMP, - ACTIONS(4992), 1, - anon_sym_PIPE, - ACTIONS(4994), 1, - anon_sym_CARET, - ACTIONS(4996), 1, - anon_sym_AMP, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4984), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4998), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4986), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4803), 12, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [28411] = 3, + [202649] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2488), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2490), 27, - anon_sym_DOT_DOT_DOT, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7582), 1, + anon_sym_DASH_GT, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9403), 1, + anon_sym_requires, + ACTIONS(9522), 1, + anon_sym___asm, + STATE(5825), 1, + sym_trailing_return_type, + STATE(6033), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9519), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 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_LT_EQ, - anon_sym_LT_LT, - anon_sym_COLON_COLON, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_EQ, + anon_sym_COLON, + [202715] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7582), 1, anon_sym_DASH_GT, + ACTIONS(9856), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9864), 1, + anon_sym_requires, + ACTIONS(9884), 1, + anon_sym___asm, + STATE(5816), 1, + sym_trailing_return_type, + STATE(6036), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(9861), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [28458] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2451), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2453), 27, - anon_sym_DOT_DOT_DOT, + ACTIONS(9881), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 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_LT_EQ, - anon_sym_LT_LT, - anon_sym_COLON_COLON, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_EQ, + anon_sym_COLON, + [202781] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7564), 1, anon_sym_DASH_GT, + ACTIONS(9586), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9589), 1, + anon_sym_LBRACK, + STATE(5809), 1, + sym_trailing_return_type, + STATE(6223), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [28505] = 3, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [202847] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2494), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2496), 27, - anon_sym_DOT_DOT_DOT, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7582), 1, + anon_sym_DASH_GT, + ACTIONS(9856), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9884), 1, + anon_sym___asm, + STATE(5857), 1, + sym_trailing_return_type, + STATE(6028), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9881), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 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_LT_EQ, - anon_sym_LT_LT, - anon_sym_COLON_COLON, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_EQ, + anon_sym_COLON, + [202913] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7564), 1, anon_sym_DASH_GT, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9403), 1, + anon_sym_requires, + STATE(5825), 1, + sym_trailing_return_type, + STATE(6237), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9400), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [28552] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3557), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 6, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [28599] = 3, + anon_sym_try, + [202979] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3507), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3509), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7577), 1, + anon_sym_DASH_GT, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9522), 1, + anon_sym___asm, + STATE(5718), 1, + sym_trailing_return_type, + STATE(6030), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9519), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [28646] = 3, + anon_sym_EQ, + anon_sym_try, + [203045] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4625), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4623), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7577), 1, + anon_sym_DASH_GT, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9884), 1, + anon_sym___asm, + STATE(5731), 1, + sym_trailing_return_type, + STATE(6050), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9881), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 6, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [28693] = 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [203111] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3561), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7577), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9522), 1, + anon_sym___asm, + ACTIONS(9525), 1, + anon_sym_requires, + STATE(5746), 1, + sym_trailing_return_type, + STATE(5929), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9519), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [28740] = 3, + anon_sym_EQ, + anon_sym_try, + [203177] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4831), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4829), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7582), 1, + anon_sym_DASH_GT, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9522), 1, + anon_sym___asm, + STATE(5826), 1, + sym_trailing_return_type, + STATE(6017), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9519), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 6, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [28787] = 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [203243] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3581), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7564), 1, + anon_sym_DASH_GT, + ACTIONS(9856), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9859), 1, + anon_sym_LBRACK, + STATE(5857), 1, + sym_trailing_return_type, + STATE(6291), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 6, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [28834] = 3, + anon_sym_try, + [203309] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4543), 1, + anon_sym_LBRACE, + ACTIONS(4735), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, anon_sym_const, - anon_sym_DOT, - ACTIONS(3655), 30, + ACTIONS(4737), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym___extension__, 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [28881] = 3, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [203349] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4627), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7564), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [28928] = 3, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(5826), 1, + sym_trailing_return_type, + STATE(6273), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [203415] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3637), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3639), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7772), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9893), 1, + anon_sym_requires, + STATE(6382), 1, + sym_trailing_return_type, + STATE(6474), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9890), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [28975] = 3, + [203480] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3693), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3695), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7772), 1, + anon_sym_DASH_GT, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(9859), 1, + anon_sym_LBRACK, + STATE(6302), 1, + sym_trailing_return_type, + STATE(6459), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [29022] = 3, + [203545] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4653), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4651), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7794), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [29069] = 3, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9605), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9687), 1, + anon_sym_requires, + STATE(6292), 1, + sym_trailing_return_type, + STATE(6339), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [203610] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1518), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(1520), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7794), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [29116] = 4, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + STATE(6251), 1, + sym_trailing_return_type, + STATE(6355), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [203675] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3405), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3407), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7772), 1, + anon_sym_DASH_GT, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(9589), 1, + anon_sym_LBRACK, + STATE(6405), 1, + sym_trailing_return_type, + STATE(6498), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, anon_sym_LBRACE, + [203740] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7821), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(9551), 1, + anon_sym_requires, + STATE(6195), 1, + sym_trailing_return_type, + STATE(6463), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [203805] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7838), 1, anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + ACTIONS(9551), 1, + anon_sym_requires, + STATE(6195), 1, + sym_trailing_return_type, + STATE(6268), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9535), 2, anon_sym_final, anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, anon_sym_GT2, - [29165] = 3, + [203870] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4631), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7838), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9707), 1, + anon_sym_requires, + ACTIONS(9710), 1, + anon_sym___attribute__, + ACTIONS(9713), 1, + anon_sym___attribute, + STATE(6172), 1, + sym_trailing_return_type, + STATE(6269), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_EQ, anon_sym_GT2, - [29212] = 3, + [203935] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4649), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4647), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7838), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9896), 1, + anon_sym___attribute__, + ACTIONS(9899), 1, + anon_sym___attribute, + ACTIONS(9902), 1, + anon_sym_requires, + STATE(6188), 1, + sym_trailing_return_type, + STATE(6280), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9890), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_EQ, anon_sym_GT2, - [29259] = 3, + [204000] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7794), 1, + anon_sym_DASH_GT, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9605), 1, + anon_sym_LBRACK_LBRACK, + STATE(6298), 1, + sym_trailing_return_type, + STATE(6372), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [204065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3599), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(4543), 1, + anon_sym_LBRACE, + ACTIONS(4735), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, anon_sym_const, - anon_sym_DOT, - ACTIONS(3601), 30, + ACTIONS(4737), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym___extension__, 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__Nonnull, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [29306] = 3, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [204102] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3497), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(7832), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9896), 1, + anon_sym___attribute__, + ACTIONS(9899), 1, + anon_sym___attribute, + STATE(5731), 1, + sym_trailing_return_type, + STATE(6178), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, + anon_sym_EQ, + anon_sym_GT2, + [204167] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7794), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9554), 1, + anon_sym_requires, + STATE(6299), 1, + sym_trailing_return_type, + STATE(6334), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [29353] = 3, + anon_sym_try, + [204232] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3587), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3589), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7772), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9667), 1, + anon_sym_requires, + STATE(6378), 1, + sym_trailing_return_type, + STATE(6448), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [29400] = 8, + [204297] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7821), 1, anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4870), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(9859), 1, + anon_sym_LBRACK, + STATE(6201), 1, + sym_trailing_return_type, + STATE(6416), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(4868), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - [29457] = 20, + anon_sym_try, + [204362] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7821), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, + ACTIONS(9707), 1, + anon_sym_requires, + STATE(6172), 1, + sym_trailing_return_type, + STATE(6500), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(4988), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4990), 1, - anon_sym_AMP_AMP, - ACTIONS(4992), 1, - anon_sym_PIPE, - ACTIONS(4994), 1, - anon_sym_CARET, - ACTIONS(4996), 1, - anon_sym_AMP, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, + anon_sym_try, + [204427] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7794), 1, anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4984), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4998), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4986), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4697), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [29538] = 3, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9878), 1, + anon_sym_LBRACK_LBRACK, + STATE(6233), 1, + sym_trailing_return_type, + STATE(6380), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [204492] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4524), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7772), 1, + anon_sym_DASH_GT, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(6393), 1, + sym_trailing_return_type, + STATE(6454), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_SEMI, + anon_sym_LBRACE, + [204557] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7821), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [29585] = 3, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(9589), 1, + anon_sym_LBRACK, + STATE(6166), 1, + sym_trailing_return_type, + STATE(6453), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [204622] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3503), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3505), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7772), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9538), 1, + anon_sym_requires, + STATE(6366), 1, + sym_trailing_return_type, + STATE(6509), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, + [204687] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7821), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(9902), 1, + anon_sym_requires, + STATE(6188), 1, + sym_trailing_return_type, + STATE(6503), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9890), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [204752] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7794), 1, anon_sym_DASH_GT, - [29632] = 3, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9905), 1, + anon_sym_requires, + STATE(6234), 1, + sym_trailing_return_type, + STATE(6343), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9861), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [204817] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(7832), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9605), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9710), 1, + anon_sym___attribute__, + ACTIONS(9713), 1, + anon_sym___attribute, + STATE(5730), 1, + sym_trailing_return_type, + STATE(6177), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4677), 23, - anon_sym_DOT_DOT_DOT, + anon_sym_GT2, + [204882] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7832), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9525), 1, + anon_sym_requires, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(5746), 1, + sym_trailing_return_type, + STATE(6215), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_GT2, + [204947] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7832), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(9605), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9608), 1, + anon_sym_requires, + ACTIONS(9710), 1, + anon_sym___attribute__, + ACTIONS(9713), 1, + anon_sym___attribute, + STATE(5747), 1, + sym_trailing_return_type, + STATE(6184), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [205012] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(7838), 1, anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(6161), 1, + sym_trailing_return_type, + STATE(6256), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, anon_sym_GT2, - [29679] = 3, + [205077] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4687), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4685), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(7838), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9710), 1, + anon_sym___attribute__, + ACTIONS(9713), 1, + anon_sym___attribute, + STATE(6166), 1, + sym_trailing_return_type, + STATE(6257), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_EQ, anon_sym_GT2, - [29726] = 3, + [205142] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4663), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7832), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9887), 1, + anon_sym_requires, + ACTIONS(9896), 1, + anon_sym___attribute__, + ACTIONS(9899), 1, + anon_sym___attribute, + STATE(5751), 1, + sym_trailing_return_type, + STATE(6185), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9861), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_EQ, anon_sym_GT2, - [29773] = 20, + [205207] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(7832), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, anon_sym_LBRACK, - ACTIONS(4771), 1, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(5718), 1, + sym_trailing_return_type, + STATE(6176), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_EQ, - ACTIONS(4988), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4990), 1, - anon_sym_AMP_AMP, - ACTIONS(4992), 1, - anon_sym_PIPE, - ACTIONS(4994), 1, - anon_sym_CARET, - ACTIONS(4996), 1, - anon_sym_AMP, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4984), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4998), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4986), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4769), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [29854] = 3, + anon_sym_GT2, + [205272] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3603), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3605), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(7838), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9896), 1, + anon_sym___attribute__, + ACTIONS(9899), 1, + anon_sym___attribute, + STATE(6201), 1, + sym_trailing_return_type, + STATE(6264), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, + anon_sym_EQ, + anon_sym_GT2, + [205337] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7821), 1, + anon_sym_DASH_GT, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(6161), 1, + sym_trailing_return_type, + STATE(6505), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 5, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [29901] = 3, + anon_sym_EQ, + anon_sym_try, + [205402] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3641), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3643), 30, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7851), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9575), 1, + anon_sym_requires, + STATE(6545), 1, + sym_trailing_return_type, + STATE(6551), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_GT2, + [205466] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8555), 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, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6150), 1, + sym_ms_call_modifier, + STATE(7031), 1, + sym__type_declarator, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(53), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [205524] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7851), 1, anon_sym_DASH_GT, - [29948] = 22, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9908), 1, + anon_sym_requires, + STATE(6547), 1, + sym_trailing_return_type, + STATE(6553), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9890), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [205588] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4801), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4864), 1, - anon_sym_EQ, - ACTIONS(4988), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4990), 1, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, anon_sym_AMP_AMP, - ACTIONS(4992), 1, - anon_sym_PIPE, - ACTIONS(4994), 1, - anon_sym_CARET, - ACTIONS(4996), 1, + ACTIONS(8557), 1, anon_sym_AMP, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6110), 1, + sym_ms_call_modifier, + STATE(7060), 1, + sym__type_declarator, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(53), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [205646] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7851), 1, anon_sym_DASH_GT, - ACTIONS(5010), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4984), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4998), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4986), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4862), 11, - anon_sym_COLON, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30033] = 3, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(6534), 1, + sym_trailing_return_type, + STATE(6539), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [205710] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3665), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3667), 30, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7851), 1, + anon_sym_DASH_GT, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(9589), 1, + anon_sym_LBRACK, + STATE(6535), 1, + sym_trailing_return_type, + STATE(6540), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [30080] = 3, + anon_sym_GT2, + [205774] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1529), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(1531), 23, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7851), 1, + anon_sym_DASH_GT, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(9859), 1, + anon_sym_LBRACK, + STATE(6536), 1, + sym_trailing_return_type, + STATE(6542), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_GT2, + [205838] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6087), 1, + sym_ms_call_modifier, + STATE(7033), 1, + sym__type_declarator, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(53), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [205896] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7851), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [30127] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3633), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3635), 30, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9833), 1, + anon_sym_requires, + STATE(6546), 1, + sym_trailing_return_type, + STATE(6552), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [30174] = 3, + anon_sym_GT2, + [205960] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4823), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8555), 1, + anon_sym_AMP_AMP, + ACTIONS(8557), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(1613), 23, - anon_sym_DOT_DOT_DOT, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6079), 1, + sym_ms_call_modifier, + STATE(7012), 1, + sym__type_declarator, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(53), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [206018] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(8094), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9896), 1, + anon_sym___attribute__, + ACTIONS(9899), 1, + anon_sym___attribute, + ACTIONS(9908), 1, + anon_sym_requires, + STATE(6435), 1, + sym__function_attributes_end, + STATE(6547), 1, + sym_trailing_return_type, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9890), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 3, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, anon_sym_GT2, - [30221] = 3, + [206081] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3479), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3481), 27, - anon_sym_DOT_DOT_DOT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6281), 1, + sym_identifier, + ACTIONS(6283), 1, + anon_sym_COLON_COLON, + ACTIONS(9911), 1, + anon_sym_LPAREN2, + ACTIONS(9913), 1, + anon_sym_LBRACE, + ACTIONS(9917), 1, + anon_sym_requires, + STATE(2938), 1, + sym_template_type, + STATE(4573), 1, + sym_requirement_seq, + STATE(6217), 1, + sym_lambda_capture_specifier, + STATE(6895), 1, + sym__scope_resolution, + STATE(8019), 1, + sym_requires_parameter_list, + ACTIONS(9915), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5151), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [206142] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(8094), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9710), 1, + anon_sym___attribute__, + ACTIONS(9713), 1, + anon_sym___attribute, + STATE(6428), 1, + sym__function_attributes_end, + STATE(6535), 1, + sym_trailing_return_type, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 3, 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_EQ, - anon_sym_LT_LT, + anon_sym_GT2, + [206205] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6277), 1, + sym_identifier, + ACTIONS(6279), 1, anon_sym_COLON_COLON, + ACTIONS(9919), 1, + anon_sym_LPAREN2, + ACTIONS(9921), 1, anon_sym_LBRACE, + ACTIONS(9925), 1, + anon_sym_requires, + STATE(2448), 1, + sym_template_type, + STATE(3656), 1, + sym_requirement_seq, + STATE(6238), 1, + sym_lambda_capture_specifier, + STATE(6899), 1, + sym__scope_resolution, + STATE(8017), 1, + sym_requires_parameter_list, + ACTIONS(9923), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4503), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [206266] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6303), 1, + anon_sym_COLON_COLON, + ACTIONS(9927), 1, + anon_sym_LPAREN2, + ACTIONS(9929), 1, + anon_sym_LBRACE, + ACTIONS(9933), 1, + anon_sym_requires, + STATE(3037), 1, + sym_template_type, + STATE(3880), 1, + sym_requirement_seq, + STATE(6221), 1, + sym_lambda_capture_specifier, + STATE(6904), 1, + sym__scope_resolution, + STATE(7995), 1, + sym_requires_parameter_list, + ACTIONS(9931), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3966), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [206327] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(8094), 1, anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(6427), 1, + sym__function_attributes_end, + STATE(6534), 1, + sym_trailing_return_type, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, anon_sym_final, anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_GT2, - [30268] = 3, + [206390] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3627), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3629), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9893), 1, + anon_sym_requires, + ACTIONS(9896), 1, + anon_sym___attribute__, + ACTIONS(9899), 1, + anon_sym___attribute, + STATE(6382), 1, + sym_trailing_return_type, + STATE(6487), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9890), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + [206453] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(8104), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + STATE(5718), 1, + sym_trailing_return_type, + STATE(6585), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + [206516] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(8104), 1, anon_sym_DASH_GT, - [30315] = 3, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9605), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9608), 1, + anon_sym_requires, + STATE(5747), 1, + sym_trailing_return_type, + STATE(6590), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + [206579] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2519), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(8104), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9605), 1, + anon_sym_LBRACK_LBRACK, + STATE(5730), 1, + sym_trailing_return_type, + STATE(6586), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 3, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_EQ, + [206642] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(8104), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(9878), 1, + anon_sym_LBRACK_LBRACK, + STATE(5731), 1, + sym_trailing_return_type, + STATE(6587), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + [206705] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(8094), 1, anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + ACTIONS(9575), 1, + anon_sym_requires, + STATE(6433), 1, + sym__function_attributes_end, + STATE(6545), 1, + sym_trailing_return_type, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9535), 2, anon_sym_final, anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_GT2, - [30362] = 9, + [206768] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6293), 1, + sym_identifier, + ACTIONS(6295), 1, + anon_sym_COLON_COLON, + ACTIONS(9935), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(9937), 1, + anon_sym_LBRACE, + ACTIONS(9941), 1, + anon_sym_requires, + STATE(3178), 1, + sym_template_type, + STATE(4127), 1, + sym_requirement_seq, + STATE(6295), 1, + sym_lambda_capture_specifier, + STATE(6893), 1, + sym__scope_resolution, + STATE(8350), 1, + sym_requires_parameter_list, + ACTIONS(9939), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4211), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [206829] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, + ACTIONS(9538), 1, + anon_sym_requires, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(6366), 1, + sym_trailing_return_type, + STATE(6485), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [206892] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(8104), 1, anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4821), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9887), 1, + anon_sym_requires, + STATE(5751), 1, + sym_trailing_return_type, + STATE(6591), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9861), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(4819), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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, - [30421] = 3, + [206955] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8163), 1, + anon_sym_STAR, + ACTIONS(8165), 1, + anon_sym_AMP_AMP, + ACTIONS(8167), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3683), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(8551), 1, + anon_sym___asm, + STATE(3233), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6410), 1, + sym__abstract_declarator, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8549), 11, 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_try, + anon_sym_requires, + [207006] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6287), 1, + sym_identifier, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(9943), 1, + anon_sym_LPAREN2, + ACTIONS(9945), 1, + anon_sym_LBRACE, + ACTIONS(9949), 1, + anon_sym_requires, + STATE(2550), 1, + sym_template_type, + STATE(2912), 1, + sym_requirement_seq, + STATE(6225), 1, + sym_lambda_capture_specifier, + STATE(6911), 1, + sym__scope_resolution, + STATE(8178), 1, + sym_requires_parameter_list, + ACTIONS(9947), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(2917), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [207067] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8145), 1, anon_sym_LPAREN2, + ACTIONS(8147), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8149), 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, + ACTIONS(8151), 1, + anon_sym_AMP, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8551), 1, + anon_sym___attribute, + STATE(3196), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6311), 1, + sym__abstract_declarator, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8549), 11, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [30468] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [207118] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3625), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8145), 1, anon_sym_LPAREN2, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8172), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8174), 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, + ACTIONS(8176), 1, + anon_sym_AMP, + ACTIONS(8551), 1, + anon_sym___asm, + STATE(3235), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6327), 1, + sym__abstract_declarator, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8549), 11, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [30515] = 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [207169] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3697), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3699), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9710), 1, + anon_sym___attribute__, + ACTIONS(9713), 1, + anon_sym___attribute, + STATE(6405), 1, + sym_trailing_return_type, + STATE(6482), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + [207232] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(8094), 1, anon_sym_DASH_GT, - [30562] = 3, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9896), 1, + anon_sym___attribute__, + ACTIONS(9899), 1, + anon_sym___attribute, + STATE(6429), 1, + sym__function_attributes_end, + STATE(6536), 1, + sym_trailing_return_type, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [207295] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3591), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3593), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(6393), 1, + sym_trailing_return_type, + STATE(6481), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [30609] = 3, + [207358] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4574), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4572), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9896), 1, + anon_sym___attribute__, + ACTIONS(9899), 1, + anon_sym___attribute, + STATE(6302), 1, + sym_trailing_return_type, + STATE(6483), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + [207421] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(6317), 1, + sym_identifier, + ACTIONS(6319), 1, + anon_sym_COLON_COLON, + ACTIONS(9919), 1, + anon_sym_LPAREN2, + ACTIONS(9921), 1, + anon_sym_LBRACE, + ACTIONS(9925), 1, + anon_sym_requires, + STATE(3656), 1, + sym_requirement_seq, + STATE(3981), 1, + sym_template_type, + STATE(6238), 1, + sym_lambda_capture_specifier, + STATE(6907), 1, + sym__scope_resolution, + STATE(8017), 1, + sym_requires_parameter_list, + ACTIONS(9951), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4571), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [207482] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(8094), 1, anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9710), 1, + anon_sym___attribute__, + ACTIONS(9713), 1, + anon_sym___attribute, + ACTIONS(9833), 1, + anon_sym_requires, + STATE(6434), 1, + sym__function_attributes_end, + STATE(6546), 1, + sym_trailing_return_type, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_GT2, - [30656] = 5, + [207545] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, - anon_sym_LT, - STATE(2147), 1, - sym_template_argument_list, - ACTIONS(4847), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4845), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, 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_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(9667), 1, + anon_sym_requires, + ACTIONS(9710), 1, + anon_sym___attribute__, + ACTIONS(9713), 1, + anon_sym___attribute, + STATE(6378), 1, + sym_trailing_return_type, + STATE(6486), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [207608] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(8104), 1, anon_sym_DASH_GT, - [30707] = 3, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9525), 1, + anon_sym_requires, + STATE(5746), 1, + sym_trailing_return_type, + STATE(6589), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + [207671] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3597), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6259), 1, + sym_identifier, + ACTIONS(6261), 1, + anon_sym_COLON_COLON, + ACTIONS(9953), 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + ACTIONS(9955), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(9959), 1, + anon_sym_requires, + STATE(2972), 1, + sym_template_type, + STATE(3801), 1, + sym_requirement_seq, + STATE(6240), 1, + sym_lambda_capture_specifier, + STATE(6912), 1, + sym__scope_resolution, + STATE(8121), 1, + sym_requires_parameter_list, + ACTIONS(9957), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3802), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [207732] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(8191), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(9605), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9710), 1, + anon_sym___attribute__, + ACTIONS(9713), 1, + anon_sym___attribute, + STATE(6298), 1, + sym_trailing_return_type, + STATE(6441), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9578), 2, + anon_sym_COMMA, + anon_sym_LPAREN2, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + [207794] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8141), 1, anon_sym_DASH_GT, - [30754] = 3, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9893), 1, + anon_sym_requires, + STATE(6382), 1, + sym_trailing_return_type, + STATE(6683), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9848), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9890), 2, + anon_sym_final, + anon_sym_override, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + [207856] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 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, - anon_sym_GT_GT, - anon_sym_const, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8193), 1, + anon_sym_DASH_GT, + ACTIONS(8211), 1, + anon_sym_requires, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(6612), 1, + sym__function_attributes_end, + STATE(6776), 1, + sym_trailing_return_type, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9387), 2, + anon_sym_LPAREN2, anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2478), 27, - anon_sym_DOT_DOT_DOT, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + [207918] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(8191), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + ACTIONS(9554), 1, + anon_sym_requires, + STATE(6299), 1, + sym_trailing_return_type, + STATE(6444), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9387), 2, 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_EQ, - anon_sym_LT_LT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + [207980] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8141), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(9667), 1, + anon_sym_requires, + STATE(6378), 1, + sym_trailing_return_type, + STATE(6682), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9578), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + [208042] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(8191), 1, anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9605), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9687), 1, + anon_sym_requires, + ACTIONS(9710), 1, + anon_sym___attribute__, + ACTIONS(9713), 1, + anon_sym___attribute, + STATE(6292), 1, + sym_trailing_return_type, + STATE(6445), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9578), 2, + anon_sym_COMMA, + anon_sym_LPAREN2, + ACTIONS(9591), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [30801] = 20, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + [208104] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4860), 1, - anon_sym_EQ, - ACTIONS(4988), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4990), 1, - anon_sym_AMP_AMP, - ACTIONS(4992), 1, - anon_sym_PIPE, - ACTIONS(4994), 1, - anon_sym_CARET, - ACTIONS(4996), 1, - anon_sym_AMP, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8141), 1, anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4984), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4998), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4986), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4858), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(6393), 1, + sym_trailing_return_type, + STATE(6700), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9387), 2, + anon_sym_LPAREN2, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30882] = 3, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + [208166] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3687), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8818), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9961), 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9963), 1, anon_sym_SEMI, + ACTIONS(9965), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(9967), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + ACTIONS(9969), 1, + anon_sym_EQ, + ACTIONS(9971), 1, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [30929] = 3, + ACTIONS(9973), 1, + anon_sym_try, + STATE(1009), 1, + sym_compound_statement, + STATE(1012), 1, + sym_default_method_clause, + STATE(1014), 1, + sym_delete_method_clause, + STATE(1026), 1, + sym_pure_virtual_clause, + STATE(1028), 1, + sym_try_statement, + STATE(3192), 1, + sym_parameter_list, + STATE(6689), 1, + sym__function_declarator_seq, + STATE(7105), 1, + sym_bitfield_clause, + STATE(7107), 1, + sym_initializer_list, + STATE(7109), 1, + aux_sym_field_declaration_repeat1, + STATE(8526), 1, + sym_attribute_specifier, + STATE(6664), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [208240] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4793), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4791), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8818), 1, anon_sym_COMMA, + ACTIONS(9961), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(9967), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [30976] = 3, + ACTIONS(9971), 1, + anon_sym_COLON, + ACTIONS(9975), 1, + anon_sym_SEMI, + ACTIONS(9977), 1, + anon_sym_LBRACE, + ACTIONS(9979), 1, + anon_sym_EQ, + ACTIONS(9981), 1, + anon_sym_try, + STATE(1297), 1, + sym_compound_statement, + STATE(1298), 1, + sym_default_method_clause, + STATE(1299), 1, + sym_delete_method_clause, + STATE(1300), 1, + sym_pure_virtual_clause, + STATE(1302), 1, + sym_try_statement, + STATE(3192), 1, + sym_parameter_list, + STATE(6689), 1, + sym__function_declarator_seq, + STATE(7122), 1, + sym_bitfield_clause, + STATE(7123), 1, + sym_initializer_list, + STATE(7125), 1, + aux_sym_field_declaration_repeat1, + STATE(9024), 1, + sym_attribute_specifier, + STATE(6664), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [208314] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4809), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4807), 23, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(9985), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5724), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9983), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, + 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, - [31023] = 3, + anon_sym_try, + anon_sym_requires, + [208356] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3607), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3609), 30, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(9989), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5750), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9987), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, - [31070] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [208398] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3611), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3613), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8818), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9961), 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9967), 1, + anon_sym_LBRACK, + ACTIONS(9971), 1, + anon_sym_COLON, + ACTIONS(9991), 1, anon_sym_SEMI, + ACTIONS(9993), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(9995), 1, + anon_sym_EQ, + ACTIONS(9997), 1, + anon_sym_try, + STATE(1267), 1, + sym_compound_statement, + STATE(1268), 1, + sym_default_method_clause, + STATE(1270), 1, + sym_delete_method_clause, + STATE(1271), 1, + sym_pure_virtual_clause, + STATE(1272), 1, + sym_try_statement, + STATE(3192), 1, + sym_parameter_list, + STATE(6689), 1, + sym__function_declarator_seq, + STATE(7089), 1, + aux_sym_field_declaration_repeat1, + STATE(7129), 1, + sym_bitfield_clause, + STATE(7134), 1, + sym_initializer_list, + STATE(8512), 1, + sym_attribute_specifier, + STATE(6664), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [208472] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8193), 1, + anon_sym_DASH_GT, + ACTIONS(9856), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9859), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + ACTIONS(9999), 1, + anon_sym_requires, + STATE(6619), 1, + sym__function_attributes_end, + STATE(6815), 1, + sym_trailing_return_type, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9848), 2, + anon_sym_LPAREN2, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [31117] = 3, + ACTIONS(9861), 2, + anon_sym_final, + anon_sym_override, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + [208534] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3675), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(8191), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9516), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9541), 1, + anon_sym___attribute__, + ACTIONS(9544), 1, + anon_sym___attribute, + STATE(6251), 1, + sym_trailing_return_type, + STATE(6440), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9387), 2, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + [208596] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8193), 1, + anon_sym_DASH_GT, + ACTIONS(8211), 1, + anon_sym_requires, + ACTIONS(9586), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9589), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + STATE(6613), 1, + sym__function_attributes_end, + STATE(6779), 1, + sym_trailing_return_type, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9578), 2, + anon_sym_LPAREN2, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [31164] = 5, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + [208658] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4757), 1, - anon_sym_EQ, - ACTIONS(4759), 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(2407), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2399), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(8710), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(8760), 1, + sym_identifier, + ACTIONS(8762), 1, + anon_sym_STAR, + ACTIONS(8764), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [31215] = 3, + ACTIONS(8766), 1, + anon_sym_AMP, + STATE(6290), 1, + sym_ms_call_modifier, + STATE(7001), 1, + sym__field_declarator, + STATE(7110), 1, + sym_operator_name, + STATE(8704), 1, + sym_ms_based_modifier, + ACTIONS(3153), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6712), 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, + [208712] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3661), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3663), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(8191), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9896), 1, + anon_sym___attribute__, + ACTIONS(9899), 1, + anon_sym___attribute, + STATE(6233), 1, + sym_trailing_return_type, + STATE(6442), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9848), 2, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + [208774] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8141), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + STATE(6302), 1, + sym_trailing_return_type, + STATE(6703), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9848), 2, + anon_sym_LPAREN2, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + [208836] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8193), 1, anon_sym_DASH_GT, - [31262] = 3, + ACTIONS(8211), 1, + anon_sym_requires, + ACTIONS(9856), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9859), 1, + anon_sym_LBRACK, + STATE(6614), 1, + sym__function_attributes_end, + STATE(6780), 1, + sym_trailing_return_type, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9848), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + [208898] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4587), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4585), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8141), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [31309] = 3, + ACTIONS(9589), 1, + anon_sym_LBRACK, + STATE(6405), 1, + sym_trailing_return_type, + STATE(6702), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9578), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + [208960] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3575), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3577), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(8191), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9896), 1, + anon_sym___attribute__, + ACTIONS(9899), 1, + anon_sym___attribute, + ACTIONS(9905), 1, + anon_sym_requires, + STATE(6234), 1, + sym_trailing_return_type, + STATE(6446), 1, + sym__function_attributes_end, + STATE(7009), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9848), 2, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(9861), 2, + anon_sym_final, + anon_sym_override, + STATE(5694), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5714), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + [209022] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8193), 1, + anon_sym_DASH_GT, + ACTIONS(9395), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + ACTIONS(9716), 1, + anon_sym_requires, + STATE(6617), 1, + sym__function_attributes_end, + STATE(6784), 1, + sym_trailing_return_type, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9387), 2, + anon_sym_LPAREN2, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [31356] = 12, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + [209084] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8193), 1, + anon_sym_DASH_GT, + ACTIONS(9586), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9589), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, + ACTIONS(9875), 1, + anon_sym_requires, + STATE(6618), 1, + sym__function_attributes_end, + STATE(6789), 1, + sym_trailing_return_type, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9578), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + [209146] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym___asm, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8141), 1, anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4641), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4984), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4986), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4827), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(4825), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9538), 1, + anon_sym_requires, + STATE(6366), 1, + sym_trailing_return_type, + STATE(6680), 1, + sym__function_attributes_end, + STATE(7038), 1, + sym_gnu_asm_expression, + ACTIONS(7492), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9387), 2, + anon_sym_LPAREN2, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [31421] = 3, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(5713), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + [209208] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 14, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8385), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8387), 1, + anon_sym_AMP_AMP, + ACTIONS(8389), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(8551), 1, + anon_sym___attribute, + STATE(3354), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6569), 1, + sym__abstract_declarator, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8549), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2510), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [31467] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [209257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3407), 27, + ACTIONS(10004), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10002), 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_LT_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, - [31513] = 7, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [209288] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5015), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6287), 1, sym_identifier, - ACTIONS(5021), 1, - sym_raw_string_literal, - STATE(2497), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5018), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4411), 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, - anon_sym_GT_GT, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4409), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(9949), 1, + anon_sym_requires, + ACTIONS(10006), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [31567] = 23, + STATE(2550), 1, + sym_template_type, + STATE(6225), 1, + sym_lambda_capture_specifier, + STATE(6911), 1, + sym__scope_resolution, + ACTIONS(10008), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(2862), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [209340] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(51), 1, anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2355), 1, - anon_sym_LPAREN2, - ACTIONS(2367), 1, + ACTIONS(133), 1, anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4423), 1, - anon_sym_STAR, - ACTIONS(4425), 1, - anon_sym_AMP_AMP, - ACTIONS(4427), 1, - anon_sym_AMP, - ACTIONS(4429), 1, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3039), 1, anon_sym_COLON_COLON, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4961), 1, - anon_sym_DOT_DOT_DOT, - STATE(3270), 1, - sym_parameter_list, - STATE(3552), 1, - sym__scope_resolution, - STATE(3708), 1, - sym__declarator, - STATE(3944), 1, - sym__abstract_declarator, - STATE(4214), 1, - sym_variadic_declarator, - STATE(5266), 1, - sym_ms_based_modifier, - ACTIONS(5024), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(4853), 2, - sym_template_type, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(10010), 1, + sym_identifier, + ACTIONS(10012), 1, + anon_sym_template, + STATE(1308), 1, + sym_qualified_type_identifier, + STATE(1310), 1, sym_dependent_type_identifier, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, + STATE(1311), 1, + sym_template_type, + STATE(3017), 1, + sym_pointer_type_declarator, + STATE(3018), 1, sym_template_function, + STATE(3019), 1, sym_destructor_name, + STATE(3021), 1, + sym_dependent_identifier, + STATE(3022), 1, sym_qualified_identifier, + STATE(3023), 1, sym_operator_name, - [31653] = 7, + STATE(5711), 1, + sym__scope_resolution, + STATE(7217), 1, + sym_qualified_operator_cast_identifier, + STATE(7323), 1, + sym_operator_cast, + STATE(8447), 1, + sym_decltype, + STATE(8805), 1, + sym_ms_based_modifier, + [209410] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6281), 1, sym_identifier, - ACTIONS(5028), 1, - sym_raw_string_literal, - STATE(2497), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3252), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4396), 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, - anon_sym_GT_GT, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4394), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(6283), 1, + anon_sym_COLON_COLON, + ACTIONS(9917), 1, + anon_sym_requires, + ACTIONS(10014), 1, + anon_sym_LPAREN2, + STATE(2938), 1, + sym_template_type, + STATE(6217), 1, + sym_lambda_capture_specifier, + STATE(6895), 1, + sym__scope_resolution, + ACTIONS(10016), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5164), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [209462] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9989), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(4671), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5934), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9987), 13, 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_EQ, - anon_sym_LT_LT, + 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, + [209502] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9989), 3, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym___asm, + ACTIONS(9987), 16, + 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_asm, + anon_sym___asm__, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [31707] = 5, + anon_sym_try, + anon_sym_requires, + [209536] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4923), 1, - anon_sym_EQ, - ACTIONS(4925), 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(2407), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2399), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6253), 1, + sym_identifier, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(9925), 1, + anon_sym_requires, + ACTIONS(10018), 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_LT_EQ, + STATE(2448), 1, + sym_template_type, + STATE(6238), 1, + sym_lambda_capture_specifier, + STATE(6918), 1, + sym__scope_resolution, + ACTIONS(10020), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3619), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [209588] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [31757] = 3, + ACTIONS(6311), 1, + sym_identifier, + ACTIONS(6313), 1, + anon_sym_COLON_COLON, + ACTIONS(10022), 1, + anon_sym_LPAREN2, + ACTIONS(10026), 1, + anon_sym_requires, + STATE(4653), 1, + sym_template_type, + STATE(6235), 1, + sym_lambda_capture_specifier, + STATE(6906), 1, + sym__scope_resolution, + ACTIONS(10024), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6155), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [209640] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2449), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [31803] = 8, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(8355), 1, + anon_sym_COLON_COLON, + ACTIONS(10028), 1, + anon_sym_LPAREN2, + ACTIONS(10032), 1, + anon_sym_requires, + STATE(1312), 1, + sym_template_type, + STATE(6229), 1, + sym_lambda_capture_specifier, + STATE(6905), 1, + sym__scope_resolution, + ACTIONS(10030), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5770), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [209692] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 1, - sym_identifier, - ACTIONS(5032), 1, - sym_literal_suffix, - ACTIONS(5034), 1, - sym_raw_string_literal, - STATE(2499), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3252), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2407), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2399), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9589), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9578), 12, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - 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_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, - [31859] = 3, + anon_sym_try, + [209730] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2478), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [31905] = 3, + ACTIONS(6311), 1, + sym_identifier, + ACTIONS(6313), 1, + anon_sym_COLON_COLON, + ACTIONS(10022), 1, + anon_sym_LPAREN2, + ACTIONS(10026), 1, + anon_sym_requires, + STATE(4653), 1, + sym_template_type, + STATE(6235), 1, + sym_lambda_capture_specifier, + STATE(6906), 1, + sym__scope_resolution, + ACTIONS(10034), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6194), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [209782] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2494), 14, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(8396), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8398), 1, + anon_sym_AMP_AMP, + ACTIONS(8400), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8551), 1, + anon_sym___attribute, + STATE(3378), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6641), 1, + sym__abstract_declarator, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8549), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2496), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [209830] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [31951] = 3, + ACTIONS(6253), 1, + sym_identifier, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(9925), 1, + anon_sym_requires, + ACTIONS(10018), 1, + anon_sym_LPAREN2, + STATE(2448), 1, + sym_template_type, + STATE(6238), 1, + sym_lambda_capture_specifier, + STATE(6918), 1, + sym__scope_resolution, + ACTIONS(10036), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6943), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [209882] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2451), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2453), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6281), 1, + sym_identifier, + ACTIONS(6283), 1, + anon_sym_COLON_COLON, + ACTIONS(9917), 1, + anon_sym_requires, + ACTIONS(10014), 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_LT_EQ, + STATE(2938), 1, + sym_template_type, + STATE(6217), 1, + sym_lambda_capture_specifier, + STATE(6895), 1, + sym__scope_resolution, + ACTIONS(10038), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4553), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [209934] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [31997] = 3, + ACTIONS(6259), 1, + sym_identifier, + ACTIONS(6261), 1, + anon_sym_COLON_COLON, + ACTIONS(9959), 1, + anon_sym_requires, + ACTIONS(10040), 1, + anon_sym_LPAREN2, + STATE(2972), 1, + sym_template_type, + STATE(6240), 1, + sym_lambda_capture_specifier, + STATE(6912), 1, + sym__scope_resolution, + ACTIONS(10042), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3716), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [209986] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2488), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2490), 24, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10046), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10044), 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_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, - [32043] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [210020] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2506), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [32089] = 23, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + ACTIONS(10048), 1, + anon_sym_LPAREN2, + ACTIONS(10052), 1, + anon_sym_requires, + STATE(1312), 1, + sym_template_type, + STATE(6227), 1, + sym_lambda_capture_specifier, + STATE(6901), 1, + sym__scope_resolution, + ACTIONS(10050), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5911), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [210072] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2542), 1, - anon_sym_enum, - ACTIONS(2544), 1, - anon_sym_class, - ACTIONS(2546), 1, - anon_sym_struct, - ACTIONS(2548), 1, - anon_sym_union, - ACTIONS(2550), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(2554), 1, - anon_sym_typename, - ACTIONS(4142), 1, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6251), 1, anon_sym_COLON_COLON, - ACTIONS(5036), 1, + ACTIONS(10048), 1, + anon_sym_LPAREN2, + ACTIONS(10052), 1, + anon_sym_requires, + STATE(1312), 1, + sym_template_type, + STATE(6227), 1, + sym_lambda_capture_specifier, + STATE(6901), 1, + sym__scope_resolution, + ACTIONS(10054), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5777), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [210124] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6317), 1, sym_identifier, - ACTIONS(5038), 1, - anon_sym_RPAREN, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, + ACTIONS(6319), 1, + anon_sym_COLON_COLON, + ACTIONS(9925), 1, + anon_sym_requires, + ACTIONS(10018), 1, + anon_sym_LPAREN2, + STATE(3981), 1, sym_template_type, - STATE(2396), 1, + STATE(6238), 1, + sym_lambda_capture_specifier, + STATE(6907), 1, + sym__scope_resolution, + ACTIONS(10020), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3619), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, sym_qualified_type_identifier, - STATE(3254), 1, - sym__type_specifier, - STATE(3923), 1, + [210176] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6259), 1, + sym_identifier, + ACTIONS(6261), 1, + anon_sym_COLON_COLON, + ACTIONS(9959), 1, + anon_sym_requires, + ACTIONS(10040), 1, + anon_sym_LPAREN2, + STATE(2972), 1, + sym_template_type, + STATE(6240), 1, + sym_lambda_capture_specifier, + STATE(6912), 1, sym__scope_resolution, - STATE(4338), 1, - sym_type_descriptor, - STATE(4853), 1, + ACTIONS(10056), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - STATE(2532), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(3717), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [210228] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + ACTIONS(10048), 1, + anon_sym_LPAREN2, + ACTIONS(10052), 1, + anon_sym_requires, + STATE(1312), 1, + sym_template_type, + STATE(6227), 1, + sym_lambda_capture_specifier, + STATE(6933), 1, + sym__scope_resolution, + ACTIONS(10058), 2, + sym_true, + sym_false, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [32175] = 7, + sym_dependent_type_identifier, + STATE(6816), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [210280] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 1, - anon_sym_const, - ACTIONS(2523), 2, - anon_sym_AMP, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9859), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(2516), 4, + anon_sym___asm, + ACTIONS(9848), 12, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(2519), 7, - anon_sym_COLON_COLON, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(2521), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(2514), 17, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [210318] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10062), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10060), 12, + 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_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [210356] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6105), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10066), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10064), 12, anon_sym_COMMA, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [32229] = 23, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [210394] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2542), 1, - anon_sym_enum, - ACTIONS(2544), 1, - anon_sym_class, - ACTIONS(2546), 1, - anon_sym_struct, - ACTIONS(2548), 1, - anon_sym_union, - ACTIONS(2550), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(2554), 1, - anon_sym_typename, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - ACTIONS(5036), 1, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6277), 1, sym_identifier, - ACTIONS(5040), 1, - anon_sym_RPAREN, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, + ACTIONS(6279), 1, + anon_sym_COLON_COLON, + ACTIONS(9925), 1, + anon_sym_requires, + ACTIONS(10018), 1, + anon_sym_LPAREN2, + STATE(2448), 1, sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(3254), 1, - sym__type_specifier, - STATE(3923), 1, + STATE(6238), 1, + sym_lambda_capture_specifier, + STATE(6899), 1, sym__scope_resolution, - STATE(4209), 1, - sym_type_descriptor, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - STATE(2532), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + ACTIONS(10020), 2, + sym_true, + sym_false, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [32315] = 23, + sym_dependent_type_identifier, + STATE(3619), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [210446] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2355), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + ACTIONS(10048), 1, anon_sym_LPAREN2, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(10052), 1, + anon_sym_requires, + STATE(1312), 1, + sym_template_type, + STATE(6227), 1, + sym_lambda_capture_specifier, + STATE(6933), 1, + sym__scope_resolution, + ACTIONS(10054), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5777), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [210498] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6287), 1, sym_identifier, - ACTIONS(4429), 1, + ACTIONS(6289), 1, anon_sym_COLON_COLON, - ACTIONS(4431), 1, + ACTIONS(9949), 1, + anon_sym_requires, + ACTIONS(10006), 1, + anon_sym_LPAREN2, + STATE(2550), 1, + sym_template_type, + STATE(6225), 1, + sym_lambda_capture_specifier, + STATE(6911), 1, + sym__scope_resolution, + ACTIONS(10068), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(2857), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [210550] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8145), 1, + anon_sym_LPAREN2, + ACTIONS(8159), 1, anon_sym_LBRACK, - ACTIONS(4433), 1, + ACTIONS(8414), 1, anon_sym_STAR, - ACTIONS(4435), 1, + ACTIONS(8416), 1, anon_sym_AMP_AMP, - ACTIONS(4437), 1, + ACTIONS(8418), 1, anon_sym_AMP, - ACTIONS(4961), 1, - anon_sym_DOT_DOT_DOT, - STATE(3266), 1, + STATE(3226), 1, sym_parameter_list, - STATE(3552), 1, - sym__scope_resolution, - STATE(3708), 1, - sym__declarator, - STATE(3948), 1, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6608), 1, sym__abstract_declarator, - STATE(4214), 1, - sym_variadic_declarator, - STATE(5266), 1, - sym_ms_based_modifier, - ACTIONS(5024), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3728), 5, + STATE(6090), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [32401] = 22, + ACTIONS(8549), 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, + [210596] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2542), 1, - anon_sym_enum, - ACTIONS(2544), 1, - anon_sym_class, - ACTIONS(2546), 1, - anon_sym_struct, - ACTIONS(2548), 1, - anon_sym_union, - ACTIONS(2550), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(2554), 1, - anon_sym_typename, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - ACTIONS(5036), 1, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6277), 1, sym_identifier, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, + ACTIONS(6279), 1, + anon_sym_COLON_COLON, + ACTIONS(9925), 1, + anon_sym_requires, + ACTIONS(10018), 1, + anon_sym_LPAREN2, + STATE(2448), 1, sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(3254), 1, - sym__type_specifier, - STATE(3923), 1, + STATE(6238), 1, + sym_lambda_capture_specifier, + STATE(6899), 1, sym__scope_resolution, - STATE(4612), 1, - sym_type_descriptor, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - STATE(2532), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + ACTIONS(10070), 2, + sym_true, + sym_false, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [32484] = 22, + sym_dependent_type_identifier, + STATE(4501), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [210648] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2542), 1, - anon_sym_enum, - ACTIONS(2544), 1, - anon_sym_class, - ACTIONS(2546), 1, - anon_sym_struct, - ACTIONS(2548), 1, - anon_sym_union, - ACTIONS(2550), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(2554), 1, - anon_sym_typename, - ACTIONS(4142), 1, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(10028), 1, + anon_sym_LPAREN2, + ACTIONS(10032), 1, + anon_sym_requires, + ACTIONS(10072), 1, + sym_identifier, + ACTIONS(10074), 1, anon_sym_COLON_COLON, - ACTIONS(5036), 1, + STATE(1329), 1, + sym_template_type, + STATE(6228), 1, + sym_lambda_capture_specifier, + STATE(6898), 1, + sym__scope_resolution, + ACTIONS(10076), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(943), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [210700] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(9925), 1, + anon_sym_requires, + ACTIONS(10018), 1, + anon_sym_LPAREN2, + ACTIONS(10078), 1, sym_identifier, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, + ACTIONS(10080), 1, + anon_sym_COLON_COLON, + STATE(2448), 1, sym_template_type, - STATE(2396), 1, + STATE(6238), 1, + sym_lambda_capture_specifier, + STATE(6902), 1, + sym__scope_resolution, + ACTIONS(10082), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6357), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, sym_qualified_type_identifier, - STATE(3254), 1, - sym__type_specifier, - STATE(3923), 1, + [210752] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(8355), 1, + anon_sym_COLON_COLON, + ACTIONS(10028), 1, + anon_sym_LPAREN2, + ACTIONS(10032), 1, + anon_sym_requires, + STATE(1312), 1, + sym_template_type, + STATE(6229), 1, + sym_lambda_capture_specifier, + STATE(6905), 1, sym__scope_resolution, - STATE(4853), 1, + ACTIONS(10076), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - STATE(4872), 1, - sym_type_descriptor, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - STATE(2532), 2, - sym_type_qualifier, + STATE(943), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [210804] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9985), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(4671), 2, + sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [32567] = 22, + STATE(6026), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9983), 13, + 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_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [210844] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10084), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(4647), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4649), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [210876] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2542), 1, - anon_sym_enum, - ACTIONS(2544), 1, - anon_sym_class, - ACTIONS(2546), 1, - anon_sym_struct, - ACTIONS(2548), 1, - anon_sym_union, - ACTIONS(2550), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(2554), 1, - anon_sym_typename, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - ACTIONS(5036), 1, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6307), 1, sym_identifier, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, + ACTIONS(6309), 1, + anon_sym_COLON_COLON, + ACTIONS(9917), 1, + anon_sym_requires, + ACTIONS(10014), 1, + anon_sym_LPAREN2, + STATE(2938), 1, sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(3254), 1, - sym__type_specifier, - STATE(3923), 1, + STATE(6217), 1, + sym_lambda_capture_specifier, + STATE(6909), 1, sym__scope_resolution, - STATE(4853), 1, + ACTIONS(10038), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - STATE(5035), 1, - sym_type_descriptor, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - STATE(2532), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(4553), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [210928] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6253), 1, + sym_identifier, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(9925), 1, + anon_sym_requires, + ACTIONS(10018), 1, + anon_sym_LPAREN2, + STATE(2448), 1, + sym_template_type, + STATE(6238), 1, + sym_lambda_capture_specifier, + STATE(6918), 1, + sym__scope_resolution, + ACTIONS(10086), 2, + sym_true, + sym_false, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [32650] = 6, + sym_dependent_type_identifier, + STATE(6916), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [210980] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9525), 1, + anon_sym_requires, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9398), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9387), 12, + 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_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [211018] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9608), 1, + anon_sym_requires, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9589), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9578), 12, + 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_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [211056] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9887), 1, + anon_sym_requires, + ACTIONS(9861), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9859), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9848), 12, + 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_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [211094] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6293), 1, + sym_identifier, + ACTIONS(6295), 1, anon_sym_COLON_COLON, - ACTIONS(5042), 1, - anon_sym_LT, - STATE(2244), 1, - sym_template_argument_list, - ACTIONS(3356), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9941), 1, + anon_sym_requires, + ACTIONS(10088), 1, + anon_sym_LPAREN2, + STATE(3178), 1, + sym_template_type, + STATE(6295), 1, + sym_lambda_capture_specifier, + STATE(6893), 1, + sym__scope_resolution, + ACTIONS(10090), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4166), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [211146] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9398), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9387), 12, + 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_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [211184] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9985), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9983), 16, + 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_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [211218] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10095), 1, + anon_sym_requires, + ACTIONS(10092), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10062), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10060), 12, + 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_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [211256] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10100), 1, + anon_sym_LPAREN2, + STATE(6020), 1, + sym_preproc_argument_list, + ACTIONS(10102), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2423), 26, - anon_sym_DOT_DOT_DOT, + anon_sym_LT, + ACTIONS(10098), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -341574,5554 +634805,6280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + [211290] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10107), 1, + anon_sym_requires, + ACTIONS(10104), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6105), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10066), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10064), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [211328] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [32701] = 22, + ACTIONS(10028), 1, + anon_sym_LPAREN2, + ACTIONS(10032), 1, + anon_sym_requires, + ACTIONS(10072), 1, + sym_identifier, + ACTIONS(10074), 1, + anon_sym_COLON_COLON, + STATE(1329), 1, + sym_template_type, + STATE(6228), 1, + sym_lambda_capture_specifier, + STATE(6898), 1, + sym__scope_resolution, + ACTIONS(10110), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(1315), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [211380] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + ACTIONS(10048), 1, + anon_sym_LPAREN2, + ACTIONS(10052), 1, + anon_sym_requires, + STATE(1312), 1, + sym_template_type, + STATE(6227), 1, + sym_lambda_capture_specifier, + STATE(6933), 1, + sym__scope_resolution, + ACTIONS(10112), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6799), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [211432] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2542), 1, - anon_sym_enum, - ACTIONS(2544), 1, - anon_sym_class, - ACTIONS(2546), 1, - anon_sym_struct, - ACTIONS(2548), 1, - anon_sym_union, - ACTIONS(2550), 1, - anon_sym_decltype, - ACTIONS(2554), 1, - anon_sym_typename, - ACTIONS(4142), 1, + ACTIONS(3009), 1, anon_sym_COLON_COLON, - ACTIONS(5036), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6271), 1, sym_identifier, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, + ACTIONS(10028), 1, + anon_sym_LPAREN2, + ACTIONS(10032), 1, + anon_sym_requires, + STATE(1312), 1, sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(3254), 1, - sym__type_specifier, - STATE(3923), 1, + STATE(6229), 1, + sym_lambda_capture_specifier, + STATE(6919), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(5175), 1, - sym_type_descriptor, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - STATE(2532), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + ACTIONS(10114), 2, + sym_true, + sym_false, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [32784] = 22, + sym_dependent_type_identifier, + STATE(6285), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [211484] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2542), 1, - anon_sym_enum, - ACTIONS(2544), 1, - anon_sym_class, - ACTIONS(2546), 1, - anon_sym_struct, - ACTIONS(2548), 1, - anon_sym_union, - ACTIONS(2550), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(2554), 1, - anon_sym_typename, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - ACTIONS(5036), 1, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6317), 1, sym_identifier, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, + ACTIONS(6319), 1, + anon_sym_COLON_COLON, + ACTIONS(9925), 1, + anon_sym_requires, + ACTIONS(10018), 1, + anon_sym_LPAREN2, + STATE(3981), 1, sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(3254), 1, - sym__type_specifier, - STATE(3923), 1, + STATE(6238), 1, + sym_lambda_capture_specifier, + STATE(6907), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(5162), 1, - sym_type_descriptor, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - STATE(2532), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + ACTIONS(10116), 2, + sym_true, + sym_false, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [32867] = 22, + sym_dependent_type_identifier, + STATE(4556), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [211536] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2542), 1, - anon_sym_enum, - ACTIONS(2544), 1, - anon_sym_class, - ACTIONS(2546), 1, - anon_sym_struct, - ACTIONS(2548), 1, - anon_sym_union, - ACTIONS(2550), 1, - anon_sym_decltype, - ACTIONS(2554), 1, - anon_sym_typename, - ACTIONS(4142), 1, + ACTIONS(3009), 1, anon_sym_COLON_COLON, - ACTIONS(5036), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6271), 1, sym_identifier, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, + ACTIONS(10028), 1, + anon_sym_LPAREN2, + ACTIONS(10032), 1, + anon_sym_requires, + STATE(1312), 1, sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(3254), 1, - sym__type_specifier, - STATE(3923), 1, + STATE(6229), 1, + sym_lambda_capture_specifier, + STATE(6919), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(5265), 1, - sym_type_descriptor, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - STATE(2532), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + ACTIONS(10118), 2, + sym_true, + sym_false, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [32950] = 22, + sym_dependent_type_identifier, + STATE(6296), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [211588] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2542), 1, - anon_sym_enum, - ACTIONS(2544), 1, - anon_sym_class, - ACTIONS(2546), 1, - anon_sym_struct, - ACTIONS(2548), 1, - anon_sym_union, - ACTIONS(2550), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(2554), 1, - anon_sym_typename, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - ACTIONS(5036), 1, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6311), 1, sym_identifier, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, + ACTIONS(6313), 1, + anon_sym_COLON_COLON, + ACTIONS(10022), 1, + anon_sym_LPAREN2, + ACTIONS(10026), 1, + anon_sym_requires, + STATE(4653), 1, sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(3254), 1, - sym__type_specifier, - STATE(3923), 1, + STATE(6235), 1, + sym_lambda_capture_specifier, + STATE(6906), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(4881), 1, - sym_type_descriptor, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - STATE(2532), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + ACTIONS(10120), 2, + sym_true, + sym_false, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [33033] = 22, + sym_dependent_type_identifier, + STATE(6193), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [211640] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2542), 1, - anon_sym_enum, - ACTIONS(2544), 1, - anon_sym_class, - ACTIONS(2546), 1, - anon_sym_struct, - ACTIONS(2548), 1, - anon_sym_union, - ACTIONS(2550), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(2554), 1, - anon_sym_typename, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - ACTIONS(5036), 1, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6293), 1, sym_identifier, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, + ACTIONS(6295), 1, + anon_sym_COLON_COLON, + ACTIONS(9941), 1, + anon_sym_requires, + ACTIONS(10088), 1, + anon_sym_LPAREN2, + STATE(3178), 1, sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(3254), 1, - sym__type_specifier, - STATE(3923), 1, + STATE(6295), 1, + sym_lambda_capture_specifier, + STATE(6893), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(4862), 1, - sym_type_descriptor, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - STATE(2532), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + ACTIONS(10122), 2, + sym_true, + sym_false, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [33116] = 6, + sym_dependent_type_identifier, + STATE(4167), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [211692] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3009), 1, anon_sym_COLON_COLON, - ACTIONS(5044), 1, - anon_sym_LT, - STATE(2244), 1, - sym_template_argument_list, - ACTIONS(2459), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2466), 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, - 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, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - [33167] = 21, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(10028), 1, + anon_sym_LPAREN2, + ACTIONS(10032), 1, + anon_sym_requires, + STATE(1312), 1, + sym_template_type, + STATE(6229), 1, + sym_lambda_capture_specifier, + STATE(6919), 1, + sym__scope_resolution, + ACTIONS(10076), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(943), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [211744] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(8559), 1, + anon_sym_STAR, + ACTIONS(10124), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(10126), 1, + anon_sym_TILDE, + ACTIONS(10128), 1, anon_sym_COLON_COLON, - ACTIONS(5047), 1, - anon_sym_enum, - ACTIONS(5049), 1, - anon_sym_class, - ACTIONS(5051), 1, - anon_sym_struct, - ACTIONS(5053), 1, - anon_sym_union, - ACTIONS(5055), 1, - anon_sym_typename, - STATE(1298), 1, - sym_template_type, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, + ACTIONS(10130), 1, + anon_sym_template, + ACTIONS(10132), 1, + anon_sym_operator, + STATE(1308), 1, sym_qualified_type_identifier, - STATE(3624), 1, - sym__type_specifier, - STATE(3912), 1, - sym__scope_resolution, - STATE(4853), 1, + STATE(1310), 1, sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - STATE(3248), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(1311), 1, + sym_template_type, + STATE(3017), 1, + sym_pointer_type_declarator, + STATE(3018), 1, + sym_template_function, + STATE(3019), 1, + sym_destructor_name, + STATE(3021), 1, + sym_dependent_identifier, + STATE(3022), 1, + sym_qualified_identifier, + STATE(3023), 1, + sym_operator_name, + STATE(5762), 1, + sym__scope_resolution, + STATE(7217), 1, + sym_qualified_operator_cast_identifier, + STATE(7323), 1, + sym_operator_cast, + STATE(8447), 1, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [33247] = 4, + STATE(8607), 1, + sym_ms_based_modifier, + [211814] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6307), 1, + sym_identifier, + ACTIONS(6309), 1, anon_sym_COLON_COLON, - ACTIONS(3452), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3454), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9917), 1, + anon_sym_requires, + ACTIONS(10014), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [33293] = 21, + STATE(2938), 1, + sym_template_type, + STATE(6217), 1, + sym_lambda_capture_specifier, + STATE(6909), 1, + sym__scope_resolution, + ACTIONS(10134), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6512), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [211866] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(6303), 1, anon_sym_COLON_COLON, - ACTIONS(5047), 1, - anon_sym_enum, - ACTIONS(5049), 1, - anon_sym_class, - ACTIONS(5051), 1, - anon_sym_struct, - ACTIONS(5053), 1, - anon_sym_union, - ACTIONS(5055), 1, - anon_sym_typename, - STATE(1298), 1, + ACTIONS(9933), 1, + anon_sym_requires, + ACTIONS(10136), 1, + anon_sym_LPAREN2, + STATE(3037), 1, sym_template_type, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3600), 1, - sym__type_specifier, - STATE(3912), 1, + STATE(6221), 1, + sym_lambda_capture_specifier, + STATE(6904), 1, sym__scope_resolution, - STATE(4853), 1, + ACTIONS(10138), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - STATE(2525), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(3952), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [211918] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6303), 1, + anon_sym_COLON_COLON, + ACTIONS(9933), 1, + anon_sym_requires, + ACTIONS(10136), 1, + anon_sym_LPAREN2, + STATE(3037), 1, + sym_template_type, + STATE(6221), 1, + sym_lambda_capture_specifier, + STATE(6904), 1, + sym__scope_resolution, + ACTIONS(10140), 2, + sym_true, + sym_false, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [33373] = 21, + sym_dependent_type_identifier, + STATE(3873), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [211970] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(133), 1, + anon_sym_operator, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(2532), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(10142), 1, + sym_identifier, + ACTIONS(10144), 1, + anon_sym_template, + STATE(1308), 1, + sym_qualified_type_identifier, + STATE(1310), 1, + sym_dependent_type_identifier, + STATE(1311), 1, + sym_template_type, + STATE(3017), 1, + sym_pointer_type_declarator, + STATE(3018), 1, + sym_template_function, + STATE(3019), 1, + sym_destructor_name, + STATE(3021), 1, + sym_dependent_identifier, + STATE(3022), 1, + sym_qualified_identifier, + STATE(3023), 1, + sym_operator_name, + STATE(5766), 1, + sym__scope_resolution, + STATE(7217), 1, + sym_qualified_operator_cast_identifier, + STATE(7323), 1, + sym_operator_cast, + STATE(8447), 1, + sym_decltype, + STATE(8805), 1, + sym_ms_based_modifier, + [212040] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6249), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(6251), 1, anon_sym_COLON_COLON, - ACTIONS(5047), 1, - anon_sym_enum, - ACTIONS(5049), 1, - anon_sym_class, - ACTIONS(5051), 1, - anon_sym_struct, - ACTIONS(5053), 1, - anon_sym_union, - ACTIONS(5055), 1, - anon_sym_typename, - STATE(1298), 1, + ACTIONS(10048), 1, + anon_sym_LPAREN2, + ACTIONS(10052), 1, + anon_sym_requires, + STATE(1312), 1, sym_template_type, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3611), 1, - sym__type_specifier, - STATE(3912), 1, + STATE(6227), 1, + sym_lambda_capture_specifier, + STATE(6901), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - STATE(3248), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + ACTIONS(10146), 2, + sym_true, + sym_false, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [33453] = 21, + sym_dependent_type_identifier, + STATE(5894), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [212092] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(9925), 1, + anon_sym_requires, + ACTIONS(10018), 1, + anon_sym_LPAREN2, + ACTIONS(10078), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(10080), 1, anon_sym_COLON_COLON, - ACTIONS(5047), 1, - anon_sym_enum, - ACTIONS(5049), 1, - anon_sym_class, - ACTIONS(5051), 1, - anon_sym_struct, - ACTIONS(5053), 1, - anon_sym_union, - ACTIONS(5055), 1, - anon_sym_typename, - STATE(1298), 1, + STATE(2448), 1, sym_template_type, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3625), 1, - sym__type_specifier, - STATE(3912), 1, + STATE(6238), 1, + sym_lambda_capture_specifier, + STATE(6902), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - STATE(2528), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + ACTIONS(10148), 2, + sym_true, + sym_false, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [33533] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2512), 1, - anon_sym_const, - ACTIONS(2523), 1, - anon_sym_AMP, - ACTIONS(2516), 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(2519), 7, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(2521), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2514), 11, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [33585] = 21, + sym_dependent_type_identifier, + STATE(6356), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [212144] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(9925), 1, + anon_sym_requires, + ACTIONS(10018), 1, + anon_sym_LPAREN2, + ACTIONS(10078), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(10080), 1, anon_sym_COLON_COLON, - ACTIONS(5047), 1, - anon_sym_enum, - ACTIONS(5049), 1, - anon_sym_class, - ACTIONS(5051), 1, - anon_sym_struct, - ACTIONS(5053), 1, - anon_sym_union, - ACTIONS(5055), 1, - anon_sym_typename, - STATE(1298), 1, + STATE(2448), 1, sym_template_type, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3597), 1, - sym__type_specifier, - STATE(3912), 1, + STATE(6238), 1, + sym_lambda_capture_specifier, + STATE(6902), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - STATE(3248), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + ACTIONS(10020), 2, + sym_true, + sym_false, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [33665] = 21, + sym_dependent_type_identifier, + STATE(3619), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [212196] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(10084), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(10150), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(4561), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4563), 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_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [212230] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6307), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(6309), 1, anon_sym_COLON_COLON, - ACTIONS(5047), 1, - anon_sym_enum, - ACTIONS(5049), 1, - anon_sym_class, - ACTIONS(5051), 1, - anon_sym_struct, - ACTIONS(5053), 1, - anon_sym_union, - ACTIONS(5055), 1, - anon_sym_typename, - STATE(1298), 1, + ACTIONS(9917), 1, + anon_sym_requires, + ACTIONS(10014), 1, + anon_sym_LPAREN2, + STATE(2938), 1, sym_template_type, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3602), 1, - sym__type_specifier, - STATE(3912), 1, + STATE(6217), 1, + sym_lambda_capture_specifier, + STATE(6909), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - STATE(3248), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + ACTIONS(10152), 2, + sym_true, + sym_false, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [33745] = 21, + sym_dependent_type_identifier, + STATE(6602), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [212282] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2355), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(10028), 1, anon_sym_LPAREN2, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(10032), 1, + anon_sym_requires, + ACTIONS(10072), 1, sym_identifier, - ACTIONS(4423), 1, - anon_sym_STAR, - ACTIONS(4425), 1, - anon_sym_AMP_AMP, - ACTIONS(4427), 1, - anon_sym_AMP, - ACTIONS(4429), 1, + ACTIONS(10074), 1, anon_sym_COLON_COLON, - ACTIONS(4431), 1, - anon_sym_LBRACK, - STATE(3270), 1, - sym_parameter_list, - STATE(3552), 1, - sym__scope_resolution, - STATE(3708), 1, - sym__declarator, - STATE(3944), 1, - sym__abstract_declarator, - STATE(5266), 1, - sym_ms_based_modifier, - ACTIONS(5024), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(4853), 2, + STATE(1329), 1, sym_template_type, + STATE(6228), 1, + sym_lambda_capture_specifier, + STATE(6898), 1, + sym__scope_resolution, + ACTIONS(10154), 2, + sym_true, + sym_false, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [33825] = 21, + STATE(1344), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [212334] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_LBRACK, + ACTIONS(6249), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(8355), 1, anon_sym_COLON_COLON, - ACTIONS(5047), 1, - anon_sym_enum, - ACTIONS(5049), 1, - anon_sym_class, - ACTIONS(5051), 1, - anon_sym_struct, - ACTIONS(5053), 1, - anon_sym_union, - ACTIONS(5055), 1, - anon_sym_typename, - STATE(1298), 1, + ACTIONS(10028), 1, + anon_sym_LPAREN2, + ACTIONS(10032), 1, + anon_sym_requires, + STATE(1312), 1, sym_template_type, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3651), 1, - sym__type_specifier, - STATE(3912), 1, + STATE(6229), 1, + sym_lambda_capture_specifier, + STATE(6905), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - STATE(3248), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + ACTIONS(10156), 2, + sym_true, + sym_false, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [33905] = 21, + sym_dependent_type_identifier, + STATE(5742), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [212386] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2542), 1, - anon_sym_enum, - ACTIONS(2544), 1, - anon_sym_class, - ACTIONS(2546), 1, - anon_sym_struct, - ACTIONS(2548), 1, - anon_sym_union, - ACTIONS(2550), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(2554), 1, - anon_sym_typename, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - ACTIONS(5036), 1, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6249), 1, sym_identifier, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(3260), 1, - sym__type_specifier, - STATE(3923), 1, + STATE(1417), 1, + sym__class_declaration_item, + STATE(1673), 1, + sym_field_declaration_list, + STATE(6901), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - STATE(3248), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7473), 1, + sym_virtual_specifier, + STATE(8355), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1607), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5832), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [33985] = 21, + sym_dependent_type_identifier, + [212445] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(10158), 1, + sym_identifier, + ACTIONS(10160), 1, + anon_sym_RPAREN, + ACTIONS(10162), 1, + anon_sym_LPAREN2, + ACTIONS(10164), 1, + anon_sym_defined, + ACTIONS(10170), 1, + sym_number_literal, + ACTIONS(10166), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10168), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10172), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5827), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [212488] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6257), 1, + anon_sym_LBRACE, + ACTIONS(6267), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(6269), 1, anon_sym_COLON_COLON, - ACTIONS(5047), 1, - anon_sym_enum, - ACTIONS(5049), 1, - anon_sym_class, - ACTIONS(5051), 1, - anon_sym_struct, - ACTIONS(5053), 1, - anon_sym_union, - ACTIONS(5055), 1, - anon_sym_typename, - STATE(1298), 1, + STATE(2448), 1, sym_template_type, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3654), 1, - sym__type_specifier, - STATE(3912), 1, + STATE(2483), 1, + sym__class_declaration_item, + STATE(5449), 1, + sym_field_declaration_list, + STATE(6917), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - STATE(2531), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7412), 1, + sym_virtual_specifier, + STATE(8300), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4847), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5865), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [34065] = 21, + sym_dependent_type_identifier, + [212547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(4221), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4223), 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, + [212576] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6257), 1, + anon_sym_LBRACE, + ACTIONS(6267), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(6269), 1, anon_sym_COLON_COLON, - ACTIONS(5047), 1, - anon_sym_enum, - ACTIONS(5049), 1, - anon_sym_class, - ACTIONS(5051), 1, - anon_sym_struct, - ACTIONS(5053), 1, - anon_sym_union, - ACTIONS(5055), 1, - anon_sym_typename, - STATE(1298), 1, + STATE(2448), 1, sym_template_type, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3603), 1, - sym__type_specifier, - STATE(3912), 1, + STATE(2496), 1, + sym__class_declaration_item, + STATE(5449), 1, + sym_field_declaration_list, + STATE(6917), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - STATE(2540), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7412), 1, + sym_virtual_specifier, + STATE(8300), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4847), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [34145] = 21, + sym_dependent_type_identifier, + [212635] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(6299), 1, anon_sym_COLON_COLON, - ACTIONS(5047), 1, - anon_sym_enum, - ACTIONS(5049), 1, - anon_sym_class, - ACTIONS(5051), 1, - anon_sym_struct, - ACTIONS(5053), 1, - anon_sym_union, - ACTIONS(5055), 1, - anon_sym_typename, - STATE(1298), 1, + STATE(1312), 1, sym_template_type, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3604), 1, - sym__type_specifier, - STATE(3912), 1, + STATE(1391), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(6946), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - STATE(2529), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1892), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [34225] = 21, + sym_dependent_type_identifier, + [212694] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6287), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(6289), 1, anon_sym_COLON_COLON, - ACTIONS(5047), 1, - anon_sym_enum, - ACTIONS(5049), 1, - anon_sym_class, - ACTIONS(5051), 1, - anon_sym_struct, - ACTIONS(5053), 1, - anon_sym_union, - ACTIONS(5055), 1, - anon_sym_typename, - STATE(1298), 1, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2550), 1, sym_template_type, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3633), 1, - sym__type_specifier, - STATE(3912), 1, + STATE(2594), 1, + sym_field_declaration_list, + STATE(2727), 1, + sym__class_declaration_item, + STATE(6911), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - STATE(3248), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7240), 1, + sym_virtual_specifier, + STATE(8364), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2450), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [34305] = 3, + sym_dependent_type_identifier, + [212753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3713), 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, - anon_sym_GT_GT, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(3715), 24, - sym_raw_string_literal, - anon_sym_DOT_DOT_DOT, + ACTIONS(4247), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4249), 18, 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_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - [34349] = 21, + 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, + [212782] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2355), 1, - anon_sym_LPAREN2, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6287), 1, sym_identifier, - ACTIONS(4429), 1, + ACTIONS(6289), 1, anon_sym_COLON_COLON, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4433), 1, - anon_sym_STAR, - ACTIONS(4435), 1, - anon_sym_AMP_AMP, - ACTIONS(4437), 1, - anon_sym_AMP, - STATE(3266), 1, - sym_parameter_list, - STATE(3552), 1, - sym__scope_resolution, - STATE(3708), 1, - sym__declarator, - STATE(3948), 1, - sym__abstract_declarator, - STATE(5266), 1, - sym_ms_based_modifier, - ACTIONS(5024), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4853), 2, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2550), 1, sym_template_type, + STATE(2594), 1, + sym_field_declaration_list, + STATE(2698), 1, + sym__class_declaration_item, + STATE(6911), 1, + sym__scope_resolution, + STATE(7240), 1, + sym_virtual_specifier, + STATE(8364), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2450), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5786), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [34429] = 21, + [212841] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6317), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(6319), 1, anon_sym_COLON_COLON, - ACTIONS(5047), 1, - anon_sym_enum, - ACTIONS(5049), 1, - anon_sym_class, - ACTIONS(5051), 1, - anon_sym_struct, - ACTIONS(5053), 1, - anon_sym_union, - ACTIONS(5055), 1, - anon_sym_typename, - STATE(1298), 1, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(3981), 1, sym_template_type, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3621), 1, - sym__type_specifier, - STATE(3912), 1, + STATE(4284), 1, + sym_field_declaration_list, + STATE(4403), 1, + sym__class_declaration_item, + STATE(6907), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - STATE(3248), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7503), 1, + sym_virtual_specifier, + STATE(7940), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(3491), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [34509] = 21, + sym_dependent_type_identifier, + [212900] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6257), 1, + anon_sym_LBRACE, + ACTIONS(6277), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(6279), 1, anon_sym_COLON_COLON, - ACTIONS(5047), 1, - anon_sym_enum, - ACTIONS(5049), 1, - anon_sym_class, - ACTIONS(5051), 1, - anon_sym_struct, - ACTIONS(5053), 1, - anon_sym_union, - ACTIONS(5055), 1, - anon_sym_typename, - STATE(1298), 1, + STATE(2448), 1, sym_template_type, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3609), 1, - sym__type_specifier, - STATE(3912), 1, + STATE(2528), 1, + sym__class_declaration_item, + STATE(2794), 1, + sym_field_declaration_list, + STATE(6899), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - STATE(3248), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7434), 1, + sym_virtual_specifier, + STATE(8027), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2569), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [34589] = 21, + sym_dependent_type_identifier, + [212959] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6293), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(6295), 1, anon_sym_COLON_COLON, - ACTIONS(5047), 1, - anon_sym_enum, - ACTIONS(5049), 1, - anon_sym_class, - ACTIONS(5051), 1, - anon_sym_struct, - ACTIONS(5053), 1, - anon_sym_union, - ACTIONS(5055), 1, - anon_sym_typename, - STATE(1298), 1, + ACTIONS(6297), 1, + anon_sym_LBRACE, + STATE(3178), 1, sym_template_type, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3599), 1, - sym__type_specifier, - STATE(3912), 1, + STATE(3357), 1, + sym_field_declaration_list, + STATE(3786), 1, + sym__class_declaration_item, + STATE(6893), 1, sym__scope_resolution, - STATE(4853), 1, + STATE(7220), 1, + sym_virtual_specifier, + STATE(7985), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2968), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - STATE(2539), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + [213018] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6287), 1, + sym_identifier, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2550), 1, + sym_template_type, + STATE(2594), 1, + sym_field_declaration_list, + STATE(2697), 1, + sym__class_declaration_item, + STATE(6911), 1, + sym__scope_resolution, + STATE(7240), 1, + sym_virtual_specifier, + STATE(8364), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2450), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [34669] = 3, + sym_dependent_type_identifier, + [213077] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 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, - anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6317), 1, sym_identifier, - sym_literal_suffix, - ACTIONS(3743), 24, - sym_raw_string_literal, - anon_sym_DOT_DOT_DOT, + ACTIONS(6319), 1, + anon_sym_COLON_COLON, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(3981), 1, + sym_template_type, + STATE(4284), 1, + sym_field_declaration_list, + STATE(4414), 1, + sym__class_declaration_item, + STATE(6907), 1, + sym__scope_resolution, + STATE(7503), 1, + sym_virtual_specifier, + STATE(7940), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(3491), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5852), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [213136] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6105), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10066), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10064), 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, + [213173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4225), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4227), 18, 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_EQ, - anon_sym_LT_LT, + 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, + [213202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4251), 3, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - [34713] = 21, + anon_sym___asm, + ACTIONS(4253), 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, + [213231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2355), 1, + ACTIONS(4213), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4215), 18, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2357), 1, - anon_sym_STAR, - ACTIONS(2359), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(2361), 1, - anon_sym_AMP, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(2558), 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, + [213260] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6293), 1, sym_identifier, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4439), 1, + ACTIONS(6295), 1, anon_sym_COLON_COLON, - STATE(3266), 1, - sym_parameter_list, - STATE(3538), 1, - sym__scope_resolution, - STATE(3778), 1, - sym__declarator, - STATE(3948), 1, - sym__abstract_declarator, - STATE(4944), 1, - sym_ms_based_modifier, - ACTIONS(5024), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4853), 2, + ACTIONS(6297), 1, + anon_sym_LBRACE, + STATE(3178), 1, sym_template_type, + STATE(3357), 1, + sym_field_declaration_list, + STATE(3663), 1, + sym__class_declaration_item, + STATE(6893), 1, + sym__scope_resolution, + STATE(7220), 1, + sym_virtual_specifier, + STATE(7985), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2968), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [34793] = 21, + [213319] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(3236), 1, - anon_sym_enum, - ACTIONS(3238), 1, - anon_sym_class, - ACTIONS(3240), 1, - anon_sym_struct, - ACTIONS(3242), 1, - anon_sym_union, - ACTIONS(3256), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + ACTIONS(6299), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, + sym_template_type, + STATE(1415), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(6946), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1892), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5866), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [213378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10176), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10174), 18, + 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, + [213407] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(3260), 1, - anon_sym_typename, - ACTIONS(4194), 1, - anon_sym_COLON_COLON, - ACTIONS(5057), 1, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6293), 1, sym_identifier, - STATE(2255), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2523), 1, + ACTIONS(6295), 1, + anon_sym_COLON_COLON, + ACTIONS(6297), 1, + anon_sym_LBRACE, + STATE(3178), 1, sym_template_type, - STATE(2603), 1, - sym_qualified_type_identifier, - STATE(3257), 1, - sym__type_specifier, - STATE(3876), 1, + STATE(3357), 1, + sym_field_declaration_list, + STATE(3825), 1, + sym__class_declaration_item, + STATE(6893), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3258), 2, - sym_primitive_type, - sym_auto, - STATE(3248), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3232), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(2558), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7220), 1, + sym_virtual_specifier, + STATE(7985), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2968), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5800), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [34873] = 21, + sym_dependent_type_identifier, + [213466] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6249), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(6251), 1, anon_sym_COLON_COLON, - ACTIONS(5047), 1, - anon_sym_enum, - ACTIONS(5049), 1, - anon_sym_class, - ACTIONS(5051), 1, - anon_sym_struct, - ACTIONS(5053), 1, - anon_sym_union, - ACTIONS(5055), 1, - anon_sym_typename, - STATE(1298), 1, + STATE(1312), 1, sym_template_type, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3637), 1, - sym__type_specifier, - STATE(3912), 1, + STATE(1410), 1, + sym__class_declaration_item, + STATE(1673), 1, + sym_field_declaration_list, + STATE(6901), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - STATE(2536), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7473), 1, + sym_virtual_specifier, + STATE(8355), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1607), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [34953] = 7, + sym_dependent_type_identifier, + [213525] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 1, - anon_sym_const, - ACTIONS(2523), 1, - anon_sym_AMP, - ACTIONS(2516), 5, - anon_sym_RPAREN, + ACTIONS(10158), 1, + sym_identifier, + ACTIONS(10162), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - ACTIONS(2519), 7, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(2521), 7, + ACTIONS(10164), 1, + anon_sym_defined, + ACTIONS(10178), 1, + anon_sym_RPAREN, + ACTIONS(10180), 1, + sym_number_literal, + ACTIONS(10166), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(2514), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [35005] = 21, + ACTIONS(10172), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5870), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [213568] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6271), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(6273), 1, anon_sym_COLON_COLON, - ACTIONS(5047), 1, - anon_sym_enum, - ACTIONS(5049), 1, - anon_sym_class, - ACTIONS(5051), 1, - anon_sym_struct, - ACTIONS(5053), 1, - anon_sym_union, - ACTIONS(5055), 1, - anon_sym_typename, - STATE(1298), 1, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(1312), 1, sym_template_type, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3649), 1, - sym__type_specifier, - STATE(3912), 1, + STATE(4757), 1, + sym_field_declaration_list, + STATE(4956), 1, + sym__class_declaration_item, + STATE(6933), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - STATE(2522), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7360), 1, + sym_virtual_specifier, + STATE(8163), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5828), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [35085] = 21, + sym_dependent_type_identifier, + [213627] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1941), 1, - anon_sym_enum, - ACTIONS(1943), 1, - anon_sym_class, - ACTIONS(1945), 1, - anon_sym_struct, - ACTIONS(1947), 1, - anon_sym_union, - ACTIONS(1949), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(2375), 1, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6271), 1, sym_identifier, - ACTIONS(3110), 1, + ACTIONS(6273), 1, anon_sym_COLON_COLON, - ACTIONS(5061), 1, - anon_sym_typename, - STATE(1298), 1, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(1312), 1, sym_template_type, - STATE(1454), 1, - sym_qualified_type_identifier, - STATE(2785), 1, - sym__type_specifier, - STATE(2900), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3101), 1, - sym_type_qualifier, - STATE(3895), 1, + STATE(4757), 1, + sym_field_declaration_list, + STATE(4977), 1, + sym__class_declaration_item, + STATE(6933), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(1939), 2, - sym_primitive_type, - sym_auto, - ACTIONS(5059), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1410), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7360), 1, + sym_virtual_specifier, + STATE(8163), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [35164] = 21, + sym_dependent_type_identifier, + [213686] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6293), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(6295), 1, anon_sym_COLON_COLON, - ACTIONS(2325), 1, - anon_sym_class, - ACTIONS(2327), 1, - anon_sym_struct, - ACTIONS(2329), 1, - anon_sym_union, - ACTIONS(5063), 1, - anon_sym_enum, - ACTIONS(5065), 1, - anon_sym_typename, - STATE(1298), 1, + ACTIONS(6297), 1, + anon_sym_LBRACE, + STATE(3178), 1, sym_template_type, - STATE(1338), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3039), 1, - sym_type_qualifier, - STATE(3208), 1, - sym__type_specifier, - STATE(3912), 1, + STATE(3357), 1, + sym_field_declaration_list, + STATE(3857), 1, + sym__class_declaration_item, + STATE(6893), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2321), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7220), 1, + sym_virtual_specifier, + STATE(7985), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2968), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [35243] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3669), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3671), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [35286] = 19, + sym_dependent_type_identifier, + [213745] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6249), 1, sym_identifier, - ACTIONS(4429), 1, + ACTIONS(6251), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4617), 1, - anon_sym_STAR, - ACTIONS(4619), 1, - anon_sym_AMP_AMP, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(3552), 1, - sym__scope_resolution, - STATE(3670), 1, - sym__declarator, - STATE(5210), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(1312), 1, sym_template_type, + STATE(4757), 1, + sym_field_declaration_list, + STATE(4939), 1, + sym__class_declaration_item, + STATE(6901), 1, + sym__scope_resolution, + STATE(7360), 1, + sym_virtual_specifier, + STATE(8163), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [35361] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3697), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3699), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [35404] = 3, + [213804] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3561), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6259), 1, + sym_identifier, + ACTIONS(6261), 1, + anon_sym_COLON_COLON, + ACTIONS(6263), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [35447] = 3, + STATE(2972), 1, + sym_template_type, + STATE(3129), 1, + sym_field_declaration_list, + STATE(3383), 1, + sym__class_declaration_item, + STATE(6912), 1, + sym__scope_resolution, + STATE(7222), 1, + sym_virtual_specifier, + STATE(8142), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2799), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [213863] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3525), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [35490] = 19, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6259), 1, + sym_identifier, + ACTIONS(6261), 1, + anon_sym_COLON_COLON, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(2972), 1, + sym_template_type, + STATE(3129), 1, + sym_field_declaration_list, + STATE(3333), 1, + sym__class_declaration_item, + STATE(6912), 1, + sym__scope_resolution, + STATE(7222), 1, + sym_virtual_specifier, + STATE(8142), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2799), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [213922] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(51), 1, anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, + ACTIONS(3197), 1, anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(8708), 1, sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4667), 1, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8712), 1, anon_sym_STAR, - ACTIONS(4669), 1, + ACTIONS(8714), 1, anon_sym_AMP_AMP, - ACTIONS(4671), 1, + ACTIONS(8716), 1, anon_sym_AMP, - STATE(3552), 1, - sym__scope_resolution, - STATE(3641), 1, - sym__declarator, - STATE(5052), 1, + ACTIONS(10182), 1, + anon_sym_SEMI, + STATE(5691), 1, + sym__field_declarator, + STATE(6652), 1, + sym_operator_name, + STATE(8436), 1, sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, + STATE(8833), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(6712), 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, + [213975] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(1312), 1, sym_template_type, + STATE(4757), 1, + sym_field_declaration_list, + STATE(4956), 1, + sym__class_declaration_item, + STATE(6901), 1, + sym__scope_resolution, + STATE(7360), 1, + sym_virtual_specifier, + STATE(8163), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5872), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [35565] = 3, + [214034] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3515), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3517), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [35608] = 19, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1410), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(6944), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1399), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [214093] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4605), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6271), 1, sym_identifier, - ACTIONS(4607), 1, - anon_sym_STAR, - ACTIONS(4609), 1, - anon_sym_AMP_AMP, - ACTIONS(4611), 1, - anon_sym_AMP, - ACTIONS(4613), 1, + ACTIONS(6273), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - STATE(3560), 1, + STATE(1312), 1, + sym_template_type, + STATE(1410), 1, + sym__class_declaration_item, + STATE(1673), 1, + sym_field_declaration_list, + STATE(6933), 1, sym__scope_resolution, - STATE(3915), 1, - sym__declarator, - STATE(4981), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, + STATE(7473), 1, + sym_virtual_specifier, + STATE(8355), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1607), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [214152] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, sym_template_type, + STATE(1417), 1, + sym__class_declaration_item, + STATE(1673), 1, + sym_field_declaration_list, + STATE(6933), 1, + sym__scope_resolution, + STATE(7473), 1, + sym_virtual_specifier, + STATE(8355), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1607), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5874), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [35683] = 3, + [214211] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3454), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9859), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9848), 11, 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [35726] = 3, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [214248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1529), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1531), 27, + ACTIONS(10186), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10184), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_else, - anon_sym_while, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, - anon_sym_catch, - [35769] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [214277] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3507), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3509), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8159), 1, + anon_sym_LBRACK, + ACTIONS(8161), 1, anon_sym_LPAREN2, + ACTIONS(8434), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8436), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(8438), 1, + anon_sym_AMP, + STATE(3320), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6690), 1, + sym__abstract_declarator, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8549), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [35812] = 21, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [214322] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(3236), 1, - anon_sym_enum, - ACTIONS(3238), 1, - anon_sym_class, - ACTIONS(3240), 1, - anon_sym_struct, - ACTIONS(3242), 1, - anon_sym_union, - ACTIONS(3256), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(3260), 1, - anon_sym_typename, - ACTIONS(4194), 1, - anon_sym_COLON_COLON, - ACTIONS(5057), 1, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6253), 1, sym_identifier, - STATE(2255), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2523), 1, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2448), 1, sym_template_type, - STATE(2603), 1, - sym_qualified_type_identifier, - STATE(2930), 1, - sym_type_qualifier, - STATE(3481), 1, - sym__type_specifier, - STATE(3876), 1, + STATE(2503), 1, + sym__class_declaration_item, + STATE(2794), 1, + sym_field_declaration_list, + STATE(6918), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3258), 2, - sym_primitive_type, - sym_auto, - ACTIONS(3232), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(2558), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7434), 1, + sym_virtual_specifier, + STATE(8027), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2569), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [35891] = 19, + sym_dependent_type_identifier, + [214381] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4605), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, sym_identifier, - ACTIONS(4607), 1, - anon_sym_STAR, - ACTIONS(4609), 1, - anon_sym_AMP_AMP, - ACTIONS(4611), 1, - anon_sym_AMP, - ACTIONS(4613), 1, + ACTIONS(6299), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - STATE(3560), 1, - sym__scope_resolution, - STATE(3890), 1, - sym__declarator, - STATE(4981), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, + STATE(1312), 1, sym_template_type, + STATE(1425), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(6946), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1892), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [35966] = 3, + [214440] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1518), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1520), 27, - anon_sym_DOT_DOT_DOT, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(111), 1, + anon_sym___asm, + ACTIONS(9973), 1, + anon_sym_try, + ACTIONS(10188), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10190), 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10192), 1, anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(10194), 1, + anon_sym_LBRACE, + ACTIONS(10196), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_else, - anon_sym_while, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_catch, - [36009] = 6, + ACTIONS(10198), 1, + anon_sym_EQ, + STATE(1034), 1, + sym_compound_statement, + STATE(1035), 1, + sym_try_statement, + STATE(3277), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(7825), 1, + sym_gnu_asm_expression, + STATE(7826), 1, + aux_sym_declaration_repeat1, + ACTIONS(10200), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8148), 2, + sym_argument_list, + sym_initializer_list, + [214501] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5067), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, anon_sym_COLON, - STATE(2447), 1, - sym_enumerator_list, - STATE(2635), 1, - sym__enum_base_clause, - ACTIONS(3832), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(3834), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(1312), 1, + sym_template_type, + STATE(4757), 1, + sym_field_declaration_list, + STATE(4977), 1, + sym__class_declaration_item, + STATE(6901), 1, + sym__scope_resolution, + STATE(7360), 1, + sym_virtual_specifier, + STATE(8163), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [214560] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10202), 1, + anon_sym_requires, + ACTIONS(10092), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10062), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10060), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [36058] = 3, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [214597] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3657), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3659), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6303), 1, + anon_sym_COLON_COLON, + ACTIONS(6305), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [36101] = 3, + STATE(3037), 1, + sym_template_type, + STATE(3203), 1, + sym_field_declaration_list, + STATE(3488), 1, + sym__class_declaration_item, + STATE(6904), 1, + sym__scope_resolution, + STATE(7273), 1, + sym_virtual_specifier, + STATE(8315), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2882), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5871), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [214656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3581), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(4229), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4231), 18, 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [36144] = 3, + 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, + [214685] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3637), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3639), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3313), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [36187] = 21, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6323), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1410), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(6924), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1399), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [214744] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(4136), 1, + ACTIONS(3313), 1, anon_sym_COLON_COLON, - ACTIONS(5069), 1, - sym_identifier, - ACTIONS(5075), 1, - anon_sym_enum, - ACTIONS(5077), 1, - anon_sym_class, - ACTIONS(5079), 1, - anon_sym_struct, - ACTIONS(5081), 1, - anon_sym_union, - ACTIONS(5083), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(5085), 1, - anon_sym_typename, - STATE(2958), 1, - sym_type_qualifier, - STATE(3478), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3491), 1, - sym__type_specifier, - STATE(3761), 1, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6323), 1, + sym_identifier, + STATE(1312), 1, sym_template_type, - STATE(3863), 1, - sym_qualified_type_identifier, - STATE(3878), 1, + STATE(1417), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(6924), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(5073), 2, - sym_primitive_type, - sym_auto, - ACTIONS(5071), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3872), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1399), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5883), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [36266] = 19, + sym_dependent_type_identifier, + [214803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(4255), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4257), 18, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + 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, + [214832] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4657), 1, - anon_sym_STAR, - ACTIONS(4659), 1, + anon_sym___asm, + ACTIONS(4215), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4661), 1, - anon_sym_AMP, - STATE(3552), 1, - sym__scope_resolution, - STATE(3702), 1, - sym__declarator, - STATE(5266), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [36341] = 21, + 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, + [214861] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(6303), 1, anon_sym_COLON_COLON, - ACTIONS(2323), 1, - anon_sym_enum, - ACTIONS(2325), 1, - anon_sym_class, - ACTIONS(2327), 1, - anon_sym_struct, - ACTIONS(2329), 1, - anon_sym_union, - ACTIONS(2331), 1, - anon_sym_typename, - STATE(1298), 1, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3037), 1, sym_template_type, - STATE(1338), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(2928), 1, - sym_type_qualifier, - STATE(3168), 1, - sym__type_specifier, - STATE(3912), 1, + STATE(3203), 1, + sym_field_declaration_list, + STATE(3497), 1, + sym__class_declaration_item, + STATE(6904), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2321), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7273), 1, + sym_virtual_specifier, + STATE(8315), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2882), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [36420] = 3, + sym_dependent_type_identifier, + [214920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3599), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3601), 24, + ACTIONS(10207), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10205), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + 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, - [36463] = 3, + anon_sym_try, + anon_sym_requires, + [214949] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3587), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3589), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(9594), 1, + anon_sym_requires, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9589), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9578), 11, 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [36506] = 3, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [214986] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3677), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3679), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9589), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9578), 11, 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [36549] = 3, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [215023] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3575), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10209), 1, + anon_sym_COMMA, + ACTIONS(10211), 1, + anon_sym_RPAREN, + ACTIONS(10217), 1, anon_sym_SLASH, + ACTIONS(10219), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10221), 1, + anon_sym_AMP_AMP, + ACTIONS(10223), 1, anon_sym_PIPE, + ACTIONS(10225), 1, + anon_sym_CARET, + ACTIONS(10227), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3577), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + STATE(7565), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(10213), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10215), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(10229), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10231), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10233), 2, + anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(10235), 2, anon_sym_LT_LT, + anon_sym_GT_GT, + [215078] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(1312), 1, + sym_template_type, + STATE(4757), 1, + sym_field_declaration_list, + STATE(5102), 1, + sym__class_declaration_item, + STATE(6933), 1, + sym__scope_resolution, + STATE(7360), 1, + sym_virtual_specifier, + STATE(8163), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [215137] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + ACTIONS(6275), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [36592] = 3, + STATE(1312), 1, + sym_template_type, + STATE(4757), 1, + sym_field_declaration_list, + STATE(5111), 1, + sym__class_declaration_item, + STATE(6933), 1, + sym__scope_resolution, + STATE(7360), 1, + sym_virtual_specifier, + STATE(8163), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5843), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [215196] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3661), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3663), 24, + ACTIONS(10239), 1, + anon_sym_LPAREN2, + ACTIONS(10241), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10237), 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_EQ, - anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + 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, - [36635] = 5, + anon_sym_try, + anon_sym_requires, + [215227] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, anon_sym_COLON_COLON, - STATE(1294), 1, - sym_template_argument_list, - ACTIONS(3358), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3360), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1391), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(6944), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1399), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [215286] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, + sym_template_type, + STATE(1391), 1, + sym__class_declaration_item, + STATE(1673), 1, + sym_field_declaration_list, + STATE(6901), 1, + sym__scope_resolution, + STATE(7473), 1, + sym_virtual_specifier, + STATE(8355), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1607), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [215345] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5901), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(10245), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10243), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [36682] = 19, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [215378] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6249), 1, sym_identifier, - ACTIONS(4429), 1, + ACTIONS(6251), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4667), 1, - anon_sym_STAR, - ACTIONS(4669), 1, - anon_sym_AMP_AMP, - ACTIONS(4671), 1, - anon_sym_AMP, - STATE(3552), 1, - sym__scope_resolution, - STATE(3608), 1, - sym__declarator, - STATE(5052), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, + STATE(1312), 1, sym_template_type, + STATE(1415), 1, + sym__class_declaration_item, + STATE(1673), 1, + sym_field_declaration_list, + STATE(6901), 1, + sym__scope_resolution, + STATE(7473), 1, + sym_virtual_specifier, + STATE(8355), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1607), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5796), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [36757] = 3, + [215437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3635), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(1875), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(1873), 18, 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [36800] = 19, + 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, + [215466] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4605), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6259), 1, sym_identifier, - ACTIONS(4607), 1, - anon_sym_STAR, - ACTIONS(4609), 1, - anon_sym_AMP_AMP, - ACTIONS(4611), 1, - anon_sym_AMP, - ACTIONS(4613), 1, + ACTIONS(6261), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - STATE(3560), 1, - sym__scope_resolution, - STATE(3877), 1, - sym__declarator, - STATE(4981), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(2972), 1, sym_template_type, + STATE(3129), 1, + sym_field_declaration_list, + STATE(3385), 1, + sym__class_declaration_item, + STATE(6912), 1, + sym__scope_resolution, + STATE(7222), 1, + sym_virtual_specifier, + STATE(8142), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2799), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [36875] = 19, + [215525] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6259), 1, sym_identifier, - ACTIONS(4429), 1, + ACTIONS(6261), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4657), 1, - anon_sym_STAR, - ACTIONS(4659), 1, - anon_sym_AMP_AMP, - ACTIONS(4661), 1, - anon_sym_AMP, - STATE(3552), 1, - sym__scope_resolution, - STATE(3684), 1, - sym__declarator, - STATE(5266), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(2972), 1, sym_template_type, + STATE(3129), 1, + sym_field_declaration_list, + STATE(3360), 1, + sym__class_declaration_item, + STATE(6912), 1, + sym__scope_resolution, + STATE(7222), 1, + sym_virtual_specifier, + STATE(8142), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2799), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5845), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [36950] = 19, + [215584] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(1927), 1, - anon_sym_STAR, - ACTIONS(1929), 1, - anon_sym_AMP, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(2558), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6271), 1, sym_identifier, - ACTIONS(4439), 1, + ACTIONS(6273), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - STATE(3538), 1, + STATE(1312), 1, + sym_template_type, + STATE(1415), 1, + sym__class_declaration_item, + STATE(1673), 1, + sym_field_declaration_list, + STATE(6933), 1, sym__scope_resolution, - STATE(3773), 1, - sym__declarator, - STATE(4944), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, + STATE(7473), 1, + sym_virtual_specifier, + STATE(8355), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1607), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5807), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [215643] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, sym_template_type, + STATE(1425), 1, + sym__class_declaration_item, + STATE(1673), 1, + sym_field_declaration_list, + STATE(6933), 1, + sym__scope_resolution, + STATE(7473), 1, + sym_virtual_specifier, + STATE(8355), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1607), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [37025] = 3, + [215702] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3627), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3629), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [37068] = 3, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, + sym_template_type, + STATE(1425), 1, + sym__class_declaration_item, + STATE(1673), 1, + sym_field_declaration_list, + STATE(6901), 1, + sym__scope_resolution, + STATE(7473), 1, + sym_virtual_specifier, + STATE(8355), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1607), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [215761] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 11, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6253), 1, + sym_identifier, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2448), 1, + sym_template_type, + STATE(2496), 1, + sym__class_declaration_item, + STATE(2794), 1, + sym_field_declaration_list, + STATE(6918), 1, + sym__scope_resolution, + STATE(7434), 1, + sym_virtual_specifier, + STATE(8027), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2569), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [215820] = 5, + ACTIONS(10098), 1, + anon_sym_LF, + ACTIONS(10247), 1, + anon_sym_LPAREN2, + ACTIONS(10249), 1, + sym_comment, + STATE(6074), 1, + sym_preproc_argument_list, + ACTIONS(10102), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3625), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, 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, + [215853] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + ACTIONS(6275), 1, anon_sym_LBRACE, + STATE(1312), 1, + sym_template_type, + STATE(4757), 1, + sym_field_declaration_list, + STATE(4939), 1, + sym__class_declaration_item, + STATE(6933), 1, + sym__scope_resolution, + STATE(7360), 1, + sym_virtual_specifier, + STATE(8163), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [215912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10253), 3, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym___asm, + ACTIONS(10251), 18, + 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, - [37111] = 21, + anon_sym_try, + anon_sym_requires, + [215941] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2544), 1, - anon_sym_class, - ACTIONS(2546), 1, - anon_sym_struct, - ACTIONS(2548), 1, - anon_sym_union, - ACTIONS(2550), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(4142), 1, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6259), 1, + sym_identifier, + ACTIONS(6261), 1, anon_sym_COLON_COLON, - ACTIONS(5036), 1, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(2972), 1, + sym_template_type, + STATE(3129), 1, + sym_field_declaration_list, + STATE(3303), 1, + sym__class_declaration_item, + STATE(6912), 1, + sym__scope_resolution, + STATE(7222), 1, + sym_virtual_specifier, + STATE(8142), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2799), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [216000] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6257), 1, + anon_sym_LBRACE, + ACTIONS(6277), 1, sym_identifier, - ACTIONS(5087), 1, - anon_sym_enum, - ACTIONS(5089), 1, - anon_sym_typename, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, + ACTIONS(6279), 1, + anon_sym_COLON_COLON, + STATE(2448), 1, sym_template_type, - STATE(2396), 1, + STATE(2503), 1, + sym__class_declaration_item, + STATE(2794), 1, + sym_field_declaration_list, + STATE(6899), 1, + sym__scope_resolution, + STATE(7434), 1, + sym_virtual_specifier, + STATE(8027), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2569), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(3023), 1, - sym_type_qualifier, - STATE(3562), 1, - sym__type_specifier, - STATE(3923), 1, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [216059] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6253), 1, + sym_identifier, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2448), 1, + sym_template_type, + STATE(2506), 1, + sym__class_declaration_item, + STATE(2794), 1, + sym_field_declaration_list, + STATE(6918), 1, sym__scope_resolution, - STATE(4853), 1, + STATE(7434), 1, + sym_virtual_specifier, + STATE(8027), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2569), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5851), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + [216118] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6253), 1, + sym_identifier, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2448), 1, + sym_template_type, + STATE(2483), 1, + sym__class_declaration_item, + STATE(2794), 1, + sym_field_declaration_list, + STATE(6918), 1, + sym__scope_resolution, + STATE(7434), 1, + sym_virtual_specifier, + STATE(8027), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2569), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5812), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [37190] = 3, + sym_dependent_type_identifier, + [216177] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3619), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3621), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(10255), 1, + anon_sym_requires, + ACTIONS(10104), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6105), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10066), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10064), 11, 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [37233] = 3, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [216214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3617), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(4213), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4215), 18, 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [37276] = 19, + 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, + [216243] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6253), 1, sym_identifier, - ACTIONS(4429), 1, + ACTIONS(6255), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4617), 1, - anon_sym_STAR, - ACTIONS(4619), 1, - anon_sym_AMP_AMP, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(3552), 1, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2448), 1, + sym_template_type, + STATE(2528), 1, + sym__class_declaration_item, + STATE(2794), 1, + sym_field_declaration_list, + STATE(6918), 1, sym__scope_resolution, - STATE(3671), 1, - sym__declarator, - STATE(5210), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, + STATE(7434), 1, + sym_virtual_specifier, + STATE(8027), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2569), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [216302] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6317), 1, + sym_identifier, + ACTIONS(6319), 1, + anon_sym_COLON_COLON, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(3981), 1, sym_template_type, + STATE(4284), 1, + sym_field_declaration_list, + STATE(4433), 1, + sym__class_declaration_item, + STATE(6907), 1, + sym__scope_resolution, + STATE(7503), 1, + sym_virtual_specifier, + STATE(7940), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(3491), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [37351] = 3, + [216361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3655), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(4243), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4245), 18, 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [37394] = 3, + 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, + [216390] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3693), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3695), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6293), 1, + sym_identifier, + ACTIONS(6295), 1, + anon_sym_COLON_COLON, + ACTIONS(6297), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [37437] = 3, + STATE(3178), 1, + sym_template_type, + STATE(3357), 1, + sym_field_declaration_list, + STATE(3783), 1, + sym__class_declaration_item, + STATE(6893), 1, + sym__scope_resolution, + STATE(7220), 1, + sym_virtual_specifier, + STATE(7985), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2968), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5792), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [216449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3497), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(4233), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4235), 18, 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [37480] = 3, + 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, + [216478] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3603), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3605), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6281), 1, + sym_identifier, + ACTIONS(6283), 1, + anon_sym_COLON_COLON, + ACTIONS(6285), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [37523] = 3, + STATE(2938), 1, + sym_template_type, + STATE(2973), 1, + sym_field_declaration_list, + STATE(3101), 1, + sym__class_declaration_item, + STATE(6895), 1, + sym__scope_resolution, + STATE(7499), 1, + sym_virtual_specifier, + STATE(8301), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2786), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5861), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [216537] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10062), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10060), 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, + [216574] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3641), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10209), 1, + anon_sym_COMMA, + ACTIONS(10217), 1, anon_sym_SLASH, + ACTIONS(10219), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10221), 1, + anon_sym_AMP_AMP, + ACTIONS(10223), 1, anon_sym_PIPE, + ACTIONS(10225), 1, + anon_sym_CARET, + ACTIONS(10227), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3643), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(10258), 1, + anon_sym_RPAREN, + STATE(7667), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(10213), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10215), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(10229), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10231), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10233), 2, + anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(10235), 2, anon_sym_LT_LT, + anon_sym_GT_GT, + [216629] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6281), 1, + sym_identifier, + ACTIONS(6283), 1, + anon_sym_COLON_COLON, + ACTIONS(6285), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [37566] = 21, + STATE(2938), 1, + sym_template_type, + STATE(2973), 1, + sym_field_declaration_list, + STATE(3056), 1, + sym__class_declaration_item, + STATE(6895), 1, + sym__scope_resolution, + STATE(7499), 1, + sym_virtual_specifier, + STATE(8301), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2786), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [216688] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(51), 1, anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2355), 1, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(8708), 1, + sym_identifier, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(2357), 1, + ACTIONS(8712), 1, anon_sym_STAR, - ACTIONS(2359), 1, + ACTIONS(8714), 1, anon_sym_AMP_AMP, - ACTIONS(2361), 1, + ACTIONS(8716), 1, anon_sym_AMP, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(2558), 1, + ACTIONS(10260), 1, + anon_sym_SEMI, + STATE(5692), 1, + sym__field_declarator, + STATE(6652), 1, + sym_operator_name, + STATE(8436), 1, + sym_ms_based_modifier, + STATE(8900), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(6712), 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, + [216741] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6281), 1, sym_identifier, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4439), 1, + ACTIONS(6283), 1, anon_sym_COLON_COLON, - ACTIONS(4963), 1, - anon_sym_COMMA, - STATE(3266), 1, - sym_parameter_list, - STATE(3538), 1, - sym__scope_resolution, - STATE(3922), 1, - sym__declarator, - STATE(3988), 1, - sym__abstract_declarator, - STATE(4944), 1, - sym_ms_based_modifier, - STATE(4853), 2, + ACTIONS(6285), 1, + anon_sym_LBRACE, + STATE(2938), 1, sym_template_type, + STATE(2973), 1, + sym_field_declaration_list, + STATE(3071), 1, + sym__class_declaration_item, + STATE(6895), 1, + sym__scope_resolution, + STATE(7499), 1, + sym_virtual_specifier, + STATE(8301), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2786), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [37645] = 6, + [216800] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6281), 1, + sym_identifier, + ACTIONS(6283), 1, anon_sym_COLON_COLON, - ACTIONS(5042), 1, - anon_sym_LT, - STATE(2244), 1, - sym_template_argument_list, - ACTIONS(2397), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(6285), 1, + anon_sym_LBRACE, + STATE(2938), 1, + sym_template_type, + STATE(2973), 1, + sym_field_declaration_list, + STATE(3074), 1, + sym__class_declaration_item, + STATE(6895), 1, + sym__scope_resolution, + STATE(7499), 1, + sym_virtual_specifier, + STATE(8301), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2786), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5863), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [216859] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2405), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(6281), 1, + sym_identifier, + ACTIONS(6283), 1, + anon_sym_COLON_COLON, + ACTIONS(6285), 1, + anon_sym_LBRACE, + STATE(2938), 1, + sym_template_type, + STATE(2973), 1, + sym_field_declaration_list, + STATE(3088), 1, + sym__class_declaration_item, + STATE(6895), 1, + sym__scope_resolution, + STATE(7499), 1, + sym_virtual_specifier, + STATE(8301), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2786), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [216918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4237), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4239), 18, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [37694] = 3, + 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, + [216947] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3611), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3613), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6257), 1, + anon_sym_LBRACE, + ACTIONS(6267), 1, + sym_identifier, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + STATE(2448), 1, + sym_template_type, + STATE(2503), 1, + sym__class_declaration_item, + STATE(5449), 1, + sym_field_declaration_list, + STATE(6917), 1, + sym__scope_resolution, + STATE(7412), 1, + sym_virtual_specifier, + STATE(8300), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4847), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [217006] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + ACTIONS(6299), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, + sym_template_type, + STATE(1410), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(6946), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1892), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [217065] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6257), 1, + anon_sym_LBRACE, + ACTIONS(6267), 1, + sym_identifier, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + STATE(2448), 1, + sym_template_type, + STATE(2506), 1, + sym__class_declaration_item, + STATE(5449), 1, + sym_field_declaration_list, + STATE(6917), 1, + sym__scope_resolution, + STATE(7412), 1, + sym_virtual_specifier, + STATE(8300), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4847), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [217124] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + ACTIONS(6299), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, + sym_template_type, + STATE(1417), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(6946), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1892), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5779), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [217183] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(111), 1, + anon_sym___asm, + ACTIONS(1867), 1, + anon_sym_LBRACE, + ACTIONS(10188), 1, anon_sym_COMMA, + ACTIONS(10190), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + ACTIONS(10196), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [37737] = 3, + ACTIONS(10198), 1, + anon_sym_EQ, + ACTIONS(10262), 1, + anon_sym_SEMI, + ACTIONS(10264), 1, + anon_sym_try, + STATE(438), 1, + sym_compound_statement, + STATE(439), 1, + sym_try_statement, + STATE(3277), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(7780), 1, + sym_gnu_asm_expression, + STATE(7786), 1, + aux_sym_declaration_repeat1, + ACTIONS(10200), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8148), 2, + sym_argument_list, + sym_initializer_list, + [217244] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3607), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10209), 1, + anon_sym_COMMA, + ACTIONS(10217), 1, anon_sym_SLASH, + ACTIONS(10219), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10221), 1, + anon_sym_AMP_AMP, + ACTIONS(10223), 1, anon_sym_PIPE, + ACTIONS(10225), 1, + anon_sym_CARET, + ACTIONS(10227), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3609), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(10266), 1, + anon_sym_RPAREN, + STATE(7894), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(10213), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10215), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(10229), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10231), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10233), 2, + anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(10235), 2, anon_sym_LT_LT, + anon_sym_GT_GT, + [217299] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6303), 1, + anon_sym_COLON_COLON, + ACTIONS(6305), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [37780] = 3, + STATE(3037), 1, + sym_template_type, + STATE(3203), 1, + sym_field_declaration_list, + STATE(3442), 1, + sym__class_declaration_item, + STATE(6904), 1, + sym__scope_resolution, + STATE(7273), 1, + sym_virtual_specifier, + STATE(8315), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2882), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [217358] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3597), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(1312), 1, + sym_template_type, + STATE(4757), 1, + sym_field_declaration_list, + STATE(5102), 1, + sym__class_declaration_item, + STATE(6901), 1, + sym__scope_resolution, + STATE(7360), 1, + sym_virtual_specifier, + STATE(8163), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [217417] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4217), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4219), 18, 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [37823] = 3, + 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, + [217446] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3687), 24, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, + sym_template_type, + STATE(1391), 1, + sym__class_declaration_item, + STATE(1673), 1, + sym_field_declaration_list, + STATE(6933), 1, + sym__scope_resolution, + STATE(7473), 1, + sym_virtual_specifier, + STATE(8355), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1607), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [217505] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10270), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10268), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + 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, - [37866] = 19, + anon_sym_try, + anon_sym_requires, + [217534] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(1927), 1, - anon_sym_STAR, - ACTIONS(1929), 1, - anon_sym_AMP, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(2558), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6249), 1, sym_identifier, - ACTIONS(4439), 1, + ACTIONS(6251), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - STATE(3538), 1, - sym__scope_resolution, - STATE(3752), 1, - sym__declarator, - STATE(4944), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(1312), 1, sym_template_type, + STATE(4757), 1, + sym_field_declaration_list, + STATE(5111), 1, + sym__class_declaration_item, + STATE(6901), 1, + sym__scope_resolution, + STATE(7360), 1, + sym_virtual_specifier, + STATE(8163), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5801), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [37941] = 6, + [217593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5067), 1, - anon_sym_COLON, - STATE(2439), 1, - sym_enumerator_list, - STATE(2630), 1, - sym__enum_base_clause, - ACTIONS(3826), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(3828), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(4209), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4211), 18, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [37990] = 3, + 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, + [217622] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3591), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3593), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6257), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [38033] = 3, + ACTIONS(6277), 1, + sym_identifier, + ACTIONS(6279), 1, + anon_sym_COLON_COLON, + STATE(2448), 1, + sym_template_type, + STATE(2483), 1, + sym__class_declaration_item, + STATE(2794), 1, + sym_field_declaration_list, + STATE(6899), 1, + sym__scope_resolution, + STATE(7434), 1, + sym_virtual_specifier, + STATE(8027), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2569), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5846), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [217681] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3683), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(111), 1, + anon_sym___asm, + ACTIONS(10188), 1, anon_sym_COMMA, + ACTIONS(10190), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + ACTIONS(10196), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [38076] = 3, + ACTIONS(10198), 1, + anon_sym_EQ, + ACTIONS(10272), 1, + anon_sym_SEMI, + ACTIONS(10274), 1, + anon_sym_LBRACE, + ACTIONS(10276), 1, + anon_sym_try, + STATE(450), 1, + sym_compound_statement, + STATE(451), 1, + sym_try_statement, + STATE(3277), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(7558), 1, + sym_gnu_asm_expression, + STATE(7559), 1, + aux_sym_declaration_repeat1, + ACTIONS(10200), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8148), 2, + sym_argument_list, + sym_initializer_list, + [217742] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3454), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6285), 1, + anon_sym_LBRACE, + ACTIONS(6307), 1, + sym_identifier, + ACTIONS(6309), 1, + anon_sym_COLON_COLON, + STATE(2938), 1, + sym_template_type, + STATE(2973), 1, + sym_field_declaration_list, + STATE(3101), 1, + sym__class_declaration_item, + STATE(6909), 1, + sym__scope_resolution, + STATE(7499), 1, + sym_virtual_specifier, + STATE(8301), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2786), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5904), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [217801] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6285), 1, + anon_sym_LBRACE, + ACTIONS(6307), 1, + sym_identifier, + ACTIONS(6309), 1, + anon_sym_COLON_COLON, + STATE(2938), 1, + sym_template_type, + STATE(2973), 1, + sym_field_declaration_list, + STATE(3056), 1, + sym__class_declaration_item, + STATE(6909), 1, + sym__scope_resolution, + STATE(7499), 1, + sym_virtual_specifier, + STATE(8301), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2786), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [217860] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6311), 1, + sym_identifier, + ACTIONS(6313), 1, + anon_sym_COLON_COLON, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(4653), 1, + sym_template_type, + STATE(5230), 1, + sym_field_declaration_list, + STATE(5294), 1, + sym__class_declaration_item, + STATE(6906), 1, + sym__scope_resolution, + STATE(7383), 1, + sym_virtual_specifier, + STATE(8295), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4690), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5899), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [217919] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3313), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6323), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1391), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(6924), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1399), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [217978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(1877), 18, 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [38119] = 3, + 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, + [218007] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3585), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6317), 1, + sym_identifier, + ACTIONS(6319), 1, + anon_sym_COLON_COLON, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(3981), 1, + sym_template_type, + STATE(4284), 1, + sym_field_declaration_list, + STATE(4382), 1, + sym__class_declaration_item, + STATE(6907), 1, + sym__scope_resolution, + STATE(7503), 1, + sym_virtual_specifier, + STATE(7940), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(3491), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5783), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [218066] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1415), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(6944), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1399), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5806), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [218125] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6311), 1, + sym_identifier, + ACTIONS(6313), 1, + anon_sym_COLON_COLON, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(4653), 1, + sym_template_type, + STATE(5230), 1, + sym_field_declaration_list, + STATE(5307), 1, + sym__class_declaration_item, + STATE(6906), 1, + sym__scope_resolution, + STATE(7383), 1, + sym_virtual_specifier, + STATE(8295), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4690), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [218184] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(111), 1, + anon_sym___asm, + ACTIONS(10188), 1, anon_sym_COMMA, + ACTIONS(10190), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + ACTIONS(10196), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [38162] = 3, + ACTIONS(10198), 1, + anon_sym_EQ, + ACTIONS(10278), 1, + anon_sym_SEMI, + ACTIONS(10280), 1, + anon_sym_LBRACE, + ACTIONS(10282), 1, + anon_sym_try, + STATE(587), 1, + sym_compound_statement, + STATE(588), 1, + sym_try_statement, + STATE(3277), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(7541), 1, + sym_gnu_asm_expression, + STATE(7542), 1, + aux_sym_declaration_repeat1, + ACTIONS(10200), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8148), 2, + sym_argument_list, + sym_initializer_list, + [218245] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3557), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(111), 1, + anon_sym___asm, + ACTIONS(10188), 1, anon_sym_COMMA, + ACTIONS(10190), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + ACTIONS(10196), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [38205] = 3, + ACTIONS(10198), 1, + anon_sym_EQ, + ACTIONS(10284), 1, + anon_sym_SEMI, + ACTIONS(10286), 1, + anon_sym_LBRACE, + ACTIONS(10288), 1, + anon_sym_try, + STATE(229), 1, + sym_compound_statement, + STATE(230), 1, + sym_try_statement, + STATE(3277), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(7845), 1, + sym_gnu_asm_expression, + STATE(7846), 1, + aux_sym_declaration_repeat1, + ACTIONS(10200), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8148), 2, + sym_argument_list, + sym_initializer_list, + [218306] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3645), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3647), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(9864), 1, + anon_sym_requires, + ACTIONS(9861), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9859), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9848), 11, 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [38248] = 19, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [218343] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(111), 1, + anon_sym___asm, + ACTIONS(9981), 1, + anon_sym_try, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(10190), 1, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(4617), 1, - anon_sym_STAR, - ACTIONS(4619), 1, - anon_sym_AMP_AMP, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(3552), 1, - sym__scope_resolution, - STATE(3669), 1, - sym__declarator, - STATE(5210), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [38323] = 19, + ACTIONS(10198), 1, + anon_sym_EQ, + ACTIONS(10290), 1, + anon_sym_SEMI, + ACTIONS(10292), 1, + anon_sym_LBRACE, + STATE(1167), 1, + sym_compound_statement, + STATE(1168), 1, + sym_try_statement, + STATE(3277), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(7914), 1, + sym_gnu_asm_expression, + STATE(7915), 1, + aux_sym_declaration_repeat1, + ACTIONS(10200), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8148), 2, + sym_argument_list, + sym_initializer_list, + [218404] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(1927), 1, - anon_sym_STAR, - ACTIONS(1929), 1, - anon_sym_AMP, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(2558), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6287), 1, sym_identifier, - ACTIONS(4439), 1, + ACTIONS(6289), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - STATE(3538), 1, - sym__scope_resolution, - STATE(3763), 1, - sym__declarator, - STATE(4944), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2550), 1, sym_template_type, + STATE(2594), 1, + sym_field_declaration_list, + STATE(2676), 1, + sym__class_declaration_item, + STATE(6911), 1, + sym__scope_resolution, + STATE(7240), 1, + sym_virtual_specifier, + STATE(8364), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2450), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5780), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [38398] = 21, + [218463] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2375), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6257), 1, + anon_sym_LBRACE, + ACTIONS(6267), 1, sym_identifier, - ACTIONS(2385), 1, + ACTIONS(6269), 1, anon_sym_COLON_COLON, - ACTIONS(5091), 1, - anon_sym_enum, - ACTIONS(5093), 1, - anon_sym_class, - ACTIONS(5095), 1, - anon_sym_struct, - ACTIONS(5097), 1, - anon_sym_union, - ACTIONS(5099), 1, - anon_sym_typename, - STATE(1298), 1, + STATE(2448), 1, sym_template_type, - STATE(1338), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3040), 1, - sym__type_specifier, - STATE(3132), 1, - sym_type_qualifier, - STATE(3908), 1, + STATE(2528), 1, + sym__class_declaration_item, + STATE(5449), 1, + sym_field_declaration_list, + STATE(6917), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2321), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7412), 1, + sym_virtual_specifier, + STATE(8300), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4847), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [38477] = 19, + sym_dependent_type_identifier, + [218522] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(10294), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(10296), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(4561), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4563), 14, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 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_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [218555] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6287), 1, sym_identifier, - ACTIONS(4429), 1, + ACTIONS(6289), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4667), 1, - anon_sym_STAR, - ACTIONS(4669), 1, - anon_sym_AMP_AMP, - ACTIONS(4671), 1, - anon_sym_AMP, - STATE(3552), 1, - sym__scope_resolution, - STATE(3598), 1, - sym__declarator, - STATE(5052), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2550), 1, sym_template_type, + STATE(2594), 1, + sym_field_declaration_list, + STATE(2687), 1, + sym__class_declaration_item, + STATE(6911), 1, + sym__scope_resolution, + STATE(7240), 1, + sym_virtual_specifier, + STATE(8364), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2450), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [38552] = 3, + [218614] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3703), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6303), 1, + anon_sym_COLON_COLON, + ACTIONS(6305), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [38595] = 3, + STATE(3037), 1, + sym_template_type, + STATE(3203), 1, + sym_field_declaration_list, + STATE(3446), 1, + sym__class_declaration_item, + STATE(6904), 1, + sym__scope_resolution, + STATE(7273), 1, + sym_virtual_specifier, + STATE(8315), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2882), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5918), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [218673] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3675), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6257), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [38638] = 3, + ACTIONS(6277), 1, + sym_identifier, + ACTIONS(6279), 1, + anon_sym_COLON_COLON, + STATE(2448), 1, + sym_template_type, + STATE(2496), 1, + sym__class_declaration_item, + STATE(2794), 1, + sym_field_declaration_list, + STATE(6899), 1, + sym__scope_resolution, + STATE(7434), 1, + sym_virtual_specifier, + STATE(8027), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2569), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [218732] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3521), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6317), 1, + sym_identifier, + ACTIONS(6319), 1, + anon_sym_COLON_COLON, + ACTIONS(6321), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [38681] = 3, + STATE(3981), 1, + sym_template_type, + STATE(4284), 1, + sym_field_declaration_list, + STATE(4420), 1, + sym__class_declaration_item, + STATE(6907), 1, + sym__scope_resolution, + STATE(7503), 1, + sym_virtual_specifier, + STATE(7940), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(3491), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [218791] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3571), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3573), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6311), 1, + sym_identifier, + ACTIONS(6313), 1, + anon_sym_COLON_COLON, + ACTIONS(6315), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [38724] = 21, + STATE(4653), 1, + sym_template_type, + STATE(5230), 1, + sym_field_declaration_list, + STATE(5315), 1, + sym__class_declaration_item, + STATE(6906), 1, + sym__scope_resolution, + STATE(7383), 1, + sym_virtual_specifier, + STATE(8295), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4690), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [218850] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2542), 1, - anon_sym_enum, - ACTIONS(2544), 1, - anon_sym_class, - ACTIONS(2546), 1, - anon_sym_struct, - ACTIONS(2548), 1, - anon_sym_union, - ACTIONS(2550), 1, - anon_sym_decltype, - ACTIONS(2554), 1, - anon_sym_typename, - ACTIONS(4142), 1, + ACTIONS(3313), 1, anon_sym_COLON_COLON, - ACTIONS(5036), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6323), 1, sym_identifier, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, + STATE(1312), 1, sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(3053), 1, - sym_type_qualifier, - STATE(3499), 1, - sym__type_specifier, - STATE(3923), 1, + STATE(1415), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(6924), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1399), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5819), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [38803] = 3, + sym_dependent_type_identifier, + [218909] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3665), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3667), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(10302), 2, + anon_sym_final, + anon_sym_override, + STATE(5901), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(10300), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10298), 14, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, - [38846] = 3, + anon_sym_try, + anon_sym_requires, + [218942] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3513), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(111), 1, + anon_sym___asm, + ACTIONS(9997), 1, + anon_sym_try, + ACTIONS(10188), 1, anon_sym_COMMA, + ACTIONS(10190), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + ACTIONS(10196), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [38889] = 3, + ACTIONS(10198), 1, + anon_sym_EQ, + ACTIONS(10305), 1, + anon_sym_SEMI, + ACTIONS(10307), 1, + anon_sym_LBRACE, + STATE(1252), 1, + sym_compound_statement, + STATE(1253), 1, + sym_try_statement, + STATE(3277), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(7716), 1, + sym_gnu_asm_expression, + STATE(7717), 1, + aux_sym_declaration_repeat1, + ACTIONS(10200), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8148), 2, + sym_argument_list, + sym_initializer_list, + [219003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3503), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3505), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(4181), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4183), 18, 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [38932] = 19, + 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, + [219032] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6285), 1, + anon_sym_LBRACE, + ACTIONS(6307), 1, sym_identifier, - ACTIONS(4429), 1, + ACTIONS(6309), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4657), 1, - anon_sym_STAR, - ACTIONS(4659), 1, - anon_sym_AMP_AMP, - ACTIONS(4661), 1, - anon_sym_AMP, - STATE(3552), 1, - sym__scope_resolution, - STATE(3696), 1, - sym__declarator, - STATE(5266), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4853), 2, + STATE(2938), 1, sym_template_type, + STATE(2973), 1, + sym_field_declaration_list, + STATE(3071), 1, + sym__class_declaration_item, + STATE(6909), 1, + sym__scope_resolution, + STATE(7499), 1, + sym_virtual_specifier, + STATE(8301), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2786), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [39007] = 3, + [219091] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3705), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3707), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6285), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [39050] = 3, + ACTIONS(6307), 1, + sym_identifier, + ACTIONS(6309), 1, + anon_sym_COLON_COLON, + STATE(2938), 1, + sym_template_type, + STATE(2973), 1, + sym_field_declaration_list, + STATE(3074), 1, + sym__class_declaration_item, + STATE(6909), 1, + sym__scope_resolution, + STATE(7499), 1, + sym_virtual_specifier, + STATE(8301), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2786), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5907), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [219150] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3649), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3651), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3313), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [39093] = 21, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6323), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1425), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(6924), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1399), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [219209] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6285), 1, + anon_sym_LBRACE, + ACTIONS(6307), 1, + sym_identifier, + ACTIONS(6309), 1, + anon_sym_COLON_COLON, + STATE(2938), 1, + sym_template_type, + STATE(2973), 1, + sym_field_declaration_list, + STATE(3088), 1, + sym__class_declaration_item, + STATE(6909), 1, + sym__scope_resolution, + STATE(7499), 1, + sym_virtual_specifier, + STATE(8301), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2786), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [219268] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2375), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6311), 1, sym_identifier, - ACTIONS(2385), 1, + ACTIONS(6313), 1, anon_sym_COLON_COLON, - ACTIONS(5093), 1, - anon_sym_class, - ACTIONS(5095), 1, - anon_sym_struct, - ACTIONS(5097), 1, - anon_sym_union, - ACTIONS(5101), 1, - anon_sym_enum, - ACTIONS(5103), 1, - anon_sym_typename, - STATE(1298), 1, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(4653), 1, sym_template_type, - STATE(1338), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, + STATE(5230), 1, + sym_field_declaration_list, + STATE(5259), 1, + sym__class_declaration_item, + STATE(6906), 1, + sym__scope_resolution, + STATE(7383), 1, + sym_virtual_specifier, + STATE(8295), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4690), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(3036), 1, - sym_type_qualifier, - STATE(3136), 1, - sym__type_specifier, - STATE(3908), 1, + STATE(5910), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [219327] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1417), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(6944), 1, sym__scope_resolution, - STATE(4853), 1, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1399), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2321), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + [219386] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6311), 1, + sym_identifier, + ACTIONS(6313), 1, + anon_sym_COLON_COLON, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(4653), 1, + sym_template_type, + STATE(5230), 1, + sym_field_declaration_list, + STATE(5284), 1, + sym__class_declaration_item, + STATE(6906), 1, + sym__scope_resolution, + STATE(7383), 1, + sym_virtual_specifier, + STATE(8295), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4690), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [39172] = 3, + sym_dependent_type_identifier, + [219445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3501), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(10296), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(4647), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4649), 16, 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [39215] = 3, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [219476] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3709), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3711), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(133), 1, + anon_sym_operator, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4354), 1, + anon_sym_COLON_COLON, + ACTIONS(8553), 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_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [39258] = 3, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_template, + STATE(3017), 1, + sym_pointer_type_declarator, + STATE(3018), 1, + sym_template_function, + STATE(3019), 1, + sym_destructor_name, + STATE(3021), 1, + sym_dependent_identifier, + STATE(3022), 1, + sym_qualified_identifier, + STATE(3023), 1, + sym_operator_name, + STATE(5912), 1, + sym__scope_resolution, + STATE(7217), 1, + sym_qualified_operator_cast_identifier, + STATE(7323), 1, + sym_operator_cast, + STATE(8805), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [219539] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3689), 11, + ACTIONS(10158), 1, + sym_identifier, + ACTIONS(10162), 1, + anon_sym_LPAREN2, + ACTIONS(10164), 1, + anon_sym_defined, + ACTIONS(10313), 1, + anon_sym_RPAREN, + ACTIONS(10315), 1, + sym_number_literal, + ACTIONS(10166), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10168), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3691), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10172), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5858), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [219582] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(8708), 1, + sym_identifier, + ACTIONS(8710), 1, anon_sym_LPAREN2, + ACTIONS(8712), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8714), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [39301] = 3, + ACTIONS(8716), 1, + anon_sym_AMP, + ACTIONS(10317), 1, + anon_sym_SEMI, + STATE(5695), 1, + sym__field_declarator, + STATE(6652), 1, + sym_operator_name, + STATE(8436), 1, + sym_ms_based_modifier, + STATE(9139), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(6712), 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, + [219635] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3567), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3569), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9398), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9387), 11, 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [39344] = 3, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [219672] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3563), 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, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(3565), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(9403), 1, + anon_sym_requires, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9398), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9387), 11, 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [39387] = 6, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [219709] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6257), 1, + anon_sym_LBRACE, + ACTIONS(6277), 1, + sym_identifier, + ACTIONS(6279), 1, anon_sym_COLON_COLON, - ACTIONS(5105), 1, - anon_sym_LT, - STATE(2473), 1, - sym_template_argument_list, - ACTIONS(3356), 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_GT_GT, + STATE(2448), 1, + sym_template_type, + STATE(2506), 1, + sym__class_declaration_item, + STATE(2794), 1, + sym_field_declaration_list, + STATE(6899), 1, + sym__scope_resolution, + STATE(7434), 1, + sym_virtual_specifier, + STATE(8027), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2569), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5784), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [219768] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4992), 1, anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2423), 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_EQ, - anon_sym_LT_LT, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6303), 1, + anon_sym_COLON_COLON, + ACTIONS(6305), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + STATE(3037), 1, + sym_template_type, + STATE(3203), 1, + sym_field_declaration_list, + STATE(3472), 1, + sym__class_declaration_item, + STATE(6904), 1, + sym__scope_resolution, + STATE(7273), 1, + sym_virtual_specifier, + STATE(8315), 1, + sym_base_class_clause, + ACTIONS(4994), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [39435] = 6, + STATE(2882), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [219827] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, anon_sym_COLON_COLON, - ACTIONS(5107), 1, - anon_sym_LT, - STATE(2473), 1, - sym_template_argument_list, - ACTIONS(2459), 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_GT_GT, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2466), 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_EQ, - anon_sym_LT_LT, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4990), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1425), 1, + sym__class_declaration_item, + STATE(1557), 1, + sym_field_declaration_list, + STATE(6944), 1, + sym__scope_resolution, + STATE(7424), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(4994), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [39483] = 4, + STATE(1399), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [219886] = 9, ACTIONS(3), 1, sym_comment, - STATE(2477), 1, - sym_enumerator_list, - ACTIONS(3446), 8, + ACTIONS(10158), 1, + sym_identifier, + ACTIONS(10162), 1, + anon_sym_LPAREN2, + ACTIONS(10164), 1, + anon_sym_defined, + ACTIONS(10319), 1, + sym_number_literal, + ACTIONS(10166), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10172), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6013), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [219926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10323), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - ACTIONS(3448), 25, - anon_sym_DOT_DOT_DOT, + ACTIONS(10321), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -347133,166 +641090,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [39527] = 5, + [219954] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, - anon_sym_LBRACK, - STATE(2652), 1, - sym_new_declarator, - ACTIONS(4581), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4579), 24, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 1, + anon_sym_STAR, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10333), 1, + anon_sym_RBRACK, + ACTIONS(10335), 1, + sym_this, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [220006] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, anon_sym_LPAREN2, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8482), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8484), 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, + ACTIONS(8486), 1, + anon_sym_AMP, + STATE(3347), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6752), 1, + sym__abstract_declarator, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8549), 7, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [39573] = 8, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [220050] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(5110), 1, - anon_sym_LBRACK, - ACTIONS(5112), 1, + ACTIONS(10158), 1, + sym_identifier, + ACTIONS(10162), 1, anon_sym_LPAREN2, - STATE(2644), 1, - sym_new_declarator, - STATE(2665), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4517), 8, + ACTIONS(10164), 1, + anon_sym_defined, + ACTIONS(10337), 1, + sym_number_literal, + ACTIONS(10166), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4515), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10172), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5930), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [220090] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8555), 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, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [39625] = 8, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6765), 1, + sym__type_declarator, + STATE(7179), 1, + sym__type_definition_declarators, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [220140] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(5110), 1, - anon_sym_LBRACK, - ACTIONS(5112), 1, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, anon_sym_LPAREN2, - STATE(2639), 1, - sym_new_declarator, - STATE(2675), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4513), 8, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10349), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4511), 20, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6144), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [220180] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10353), 1, + anon_sym_RBRACK, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [220232] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7577), 1, + anon_sym_DASH_GT, + ACTIONS(9525), 1, + anon_sym_requires, + STATE(5746), 1, + sym_trailing_return_type, + ACTIONS(9398), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [220272] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7577), 1, anon_sym_DASH_GT, - [39677] = 4, + ACTIONS(9608), 1, + anon_sym_requires, + STATE(5747), 1, + sym_trailing_return_type, + ACTIONS(9589), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 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, + [220312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(2521), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10357), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(2514), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(10355), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -347304,206 +641382,355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, + [220340] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(8559), 1, + anon_sym_STAR, + ACTIONS(10359), 1, + sym_identifier, + ACTIONS(10361), 1, + anon_sym_TILDE, + ACTIONS(10363), 1, + anon_sym_COLON_COLON, + ACTIONS(10365), 1, + anon_sym_template, + ACTIONS(10367), 1, + anon_sym_operator, + STATE(1308), 1, + sym_qualified_type_identifier, + STATE(1310), 1, + sym_dependent_type_identifier, + STATE(1311), 1, + sym_template_type, + STATE(2881), 1, + sym_pointer_type_declarator, + STATE(2883), 1, + sym_template_function, + STATE(2885), 1, + sym_destructor_name, + STATE(2886), 1, + sym_dependent_identifier, + STATE(2888), 1, + sym_qualified_identifier, + STATE(2891), 1, + sym_operator_name, + STATE(5931), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + STATE(8607), 1, + sym_ms_based_modifier, + [220404] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7577), 1, anon_sym_DASH_GT, - [39721] = 4, + ACTIONS(9887), 1, + anon_sym_requires, + STATE(5751), 1, + sym_trailing_return_type, + ACTIONS(9859), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9861), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 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, + [220444] = 9, ACTIONS(3), 1, sym_comment, - STATE(2438), 1, - sym_enumerator_list, - ACTIONS(3487), 8, + ACTIONS(10158), 1, + sym_identifier, + ACTIONS(10162), 1, + anon_sym_LPAREN2, + ACTIONS(10164), 1, + anon_sym_defined, + ACTIONS(10369), 1, + sym_number_literal, + ACTIONS(10166), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(3489), 25, - anon_sym_DOT_DOT_DOT, + ACTIONS(10172), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5964), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [220484] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + STATE(5997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9985), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9983), 14, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, - [39765] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [220516] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(5110), 1, + ACTIONS(7577), 1, + anon_sym_DASH_GT, + ACTIONS(10095), 1, + anon_sym_requires, + STATE(5753), 1, + sym_trailing_return_type, + ACTIONS(10062), 2, anon_sym_LBRACK, - ACTIONS(5112), 1, + anon_sym___asm, + ACTIONS(10092), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - STATE(2649), 1, - sym_new_declarator, - STATE(2668), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4509), 8, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [220556] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10217), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(10227), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4507), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10373), 1, + anon_sym_PIPE, + ACTIONS(10213), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10215), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(10229), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10231), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10233), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(10235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [39817] = 8, + ACTIONS(10371), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [220600] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(5110), 1, - anon_sym_LBRACK, - ACTIONS(5112), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3227), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(10375), 1, + sym_identifier, + ACTIONS(10377), 1, + anon_sym_template, + STATE(1308), 1, + sym_qualified_type_identifier, + STATE(1310), 1, + sym_dependent_type_identifier, + STATE(1311), 1, + sym_template_type, + STATE(3017), 1, + sym_pointer_type_declarator, + STATE(3018), 1, + sym_template_function, + STATE(3019), 1, + sym_destructor_name, + STATE(3021), 1, + sym_dependent_identifier, + STATE(3022), 1, + sym_qualified_identifier, + STATE(3023), 1, + sym_operator_name, + STATE(5937), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + STATE(8805), 1, + sym_ms_based_modifier, + [220664] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, anon_sym_LPAREN2, - STATE(2638), 1, - sym_new_declarator, - STATE(2689), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4497), 8, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10379), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6091), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [220704] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10217), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4493), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10213), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10215), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(10229), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10231), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10233), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(10235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [39869] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(5112), 1, - anon_sym_LPAREN2, - STATE(2692), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4539), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(10373), 2, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4537), 21, - anon_sym_DOT_DOT_DOT, + ACTIONS(10371), 5, 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [39916] = 6, + [220746] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - STATE(2658), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4555), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8508), 1, + anon_sym_STAR, + ACTIONS(8510), 1, + anon_sym_AMP_AMP, + ACTIONS(8512), 1, + anon_sym_AMP, + STATE(3311), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6783), 1, + sym__abstract_declarator, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8549), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [220790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7512), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4553), 21, - anon_sym_DOT_DOT_DOT, + ACTIONS(7514), 15, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -347515,301 +641742,528 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [39963] = 8, + [220818] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(5110), 1, - anon_sym_LBRACK, - ACTIONS(5114), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(3403), 1, + anon_sym_COLON_COLON, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(10381), 1, + sym_identifier, + ACTIONS(10383), 1, + anon_sym_template, + STATE(1308), 1, + sym_qualified_type_identifier, + STATE(1310), 1, + sym_dependent_type_identifier, + STATE(1311), 1, + sym_template_type, + STATE(3017), 1, + sym_pointer_type_declarator, + STATE(3018), 1, + sym_template_function, + STATE(3019), 1, + sym_destructor_name, + STATE(3021), 1, + sym_dependent_identifier, + STATE(3022), 1, + sym_qualified_identifier, + STATE(3023), 1, + sym_operator_name, + STATE(5942), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + STATE(8805), 1, + sym_ms_based_modifier, + [220882] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, anon_sym_LPAREN2, - STATE(2666), 1, - sym_new_declarator, - STATE(2665), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4517), 8, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10385), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6119), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [220922] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, + anon_sym_AMP_AMP, + ACTIONS(8557), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4515), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6765), 1, + sym__type_declarator, + STATE(7159), 1, + sym__type_definition_declarators, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [220972] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8555), 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, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [40014] = 3, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6765), 1, + sym__type_declarator, + STATE(7213), 1, + sym__type_definition_declarators, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [221022] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4599), 8, + ACTIONS(10158), 1, + sym_identifier, + ACTIONS(10162), 1, + anon_sym_LPAREN2, + ACTIONS(10164), 1, + anon_sym_defined, + ACTIONS(10387), 1, + sym_number_literal, + ACTIONS(10166), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4597), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10172), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5936), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [221062] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8555), 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, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6765), 1, + sym__type_declarator, + STATE(7153), 1, + sym__type_definition_declarators, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [221112] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(8559), 1, + anon_sym_STAR, + ACTIONS(10361), 1, + anon_sym_TILDE, + ACTIONS(10367), 1, + anon_sym_operator, + ACTIONS(10389), 1, + sym_identifier, + ACTIONS(10391), 1, + anon_sym_COLON_COLON, + ACTIONS(10393), 1, + anon_sym_template, + STATE(2463), 1, + sym_template_type, + STATE(2464), 1, + sym_dependent_type_identifier, + STATE(2518), 1, + sym_qualified_type_identifier, + STATE(2881), 1, + sym_pointer_type_declarator, + STATE(2883), 1, + sym_template_function, + STATE(2885), 1, + sym_destructor_name, + STATE(2886), 1, + sym_dependent_identifier, + STATE(2888), 1, + sym_qualified_identifier, + STATE(2891), 1, + sym_operator_name, + STATE(5948), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + STATE(8607), 1, + sym_ms_based_modifier, + [221176] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 1, + anon_sym_STAR, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10395), 1, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_literal_suffix, - [40055] = 17, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [221228] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(5116), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, sym_identifier, - ACTIONS(5118), 1, - anon_sym_LPAREN2, - ACTIONS(5120), 1, + ACTIONS(10327), 1, anon_sym_STAR, - ACTIONS(5122), 1, - anon_sym_AMP_AMP, - ACTIONS(5124), 1, + ACTIONS(10329), 1, anon_sym_AMP, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3892), 1, - sym__field_declarator, - STATE(5085), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2655), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3197), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [40124] = 17, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10397), 1, + anon_sym_RBRACK, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [221280] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(5118), 1, - anon_sym_LPAREN2, - ACTIONS(5126), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, sym_identifier, - ACTIONS(5128), 1, + ACTIONS(10327), 1, anon_sym_STAR, - ACTIONS(5130), 1, - anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(10329), 1, anon_sym_AMP, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3635), 1, - sym__field_declarator, - STATE(4991), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2647), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3205), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [40193] = 6, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10399), 1, + anon_sym_RBRACK, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [221332] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, anon_sym_LPAREN2, - STATE(2686), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4559), 8, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10401), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4557), 21, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6073), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [221372] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5540), 1, + anon_sym_RBRACK, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10327), 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [40240] = 8, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10403), 1, + sym_identifier, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [221424] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(5110), 1, - anon_sym_LBRACK, - ACTIONS(5114), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, anon_sym_LPAREN2, - STATE(2690), 1, - sym_new_declarator, - STATE(2689), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4497), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, + anon_sym_AMP_AMP, + ACTIONS(8557), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4493), 19, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6765), 1, + sym__type_declarator, + STATE(7192), 1, + sym__type_definition_declarators, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [221474] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10405), 1, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [40291] = 4, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [221526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, - sym_literal_suffix, - ACTIONS(2407), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10409), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - ACTIONS(2399), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(10407), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -347821,283 +642275,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [40334] = 17, + [221554] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(51), 1, anon_sym___based, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(5118), 1, - anon_sym_LPAREN2, - ACTIONS(5126), 1, + ACTIONS(8533), 1, sym_identifier, - ACTIONS(5128), 1, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, anon_sym_STAR, - ACTIONS(5130), 1, + ACTIONS(8555), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(8557), 1, anon_sym_AMP, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3620), 1, - sym__field_declarator, - STATE(4991), 1, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6765), 1, + sym__type_declarator, + STATE(7190), 1, + sym__type_definition_declarators, + STATE(8805), 1, sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3193), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3207), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [40403] = 17, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [221604] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(5116), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, sym_identifier, - ACTIONS(5118), 1, - anon_sym_LPAREN2, - ACTIONS(5120), 1, + ACTIONS(10327), 1, anon_sym_STAR, - ACTIONS(5122), 1, - anon_sym_AMP_AMP, - ACTIONS(5124), 1, + ACTIONS(10329), 1, anon_sym_AMP, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3899), 1, - sym__field_declarator, - STATE(5085), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3193), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3209), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [40472] = 6, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10411), 1, + anon_sym_RBRACK, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [221656] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 1, + anon_sym_STAR, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10413), 1, + anon_sym_RBRACK, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [221708] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10158), 1, + sym_identifier, + ACTIONS(10162), 1, anon_sym_LPAREN2, - STATE(2674), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4535), 8, + ACTIONS(10164), 1, + anon_sym_defined, + ACTIONS(10415), 1, + sym_number_literal, + ACTIONS(10166), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4533), 21, - 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [40519] = 17, + ACTIONS(10172), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5939), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [221748] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(51), 1, anon_sym___based, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(5118), 1, - anon_sym_LPAREN2, - ACTIONS(5126), 1, - sym_identifier, - ACTIONS(5128), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(8611), 1, anon_sym_STAR, - ACTIONS(5130), 1, - anon_sym_AMP_AMP, - ACTIONS(5132), 1, - anon_sym_AMP, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3648), 1, - sym__field_declarator, - STATE(4991), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2654), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3195), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, + ACTIONS(10417), 1, + sym_identifier, + ACTIONS(10419), 1, + anon_sym_TILDE, + ACTIONS(10421), 1, + anon_sym_COLON_COLON, + ACTIONS(10423), 1, + anon_sym_template, + ACTIONS(10425), 1, + anon_sym_operator, + STATE(2934), 1, + sym_dependent_type_identifier, + STATE(2955), 1, + sym_template_type, + STATE(3010), 1, + sym_qualified_type_identifier, + STATE(3917), 1, + sym_pointer_type_declarator, + STATE(3931), 1, + sym_template_function, + STATE(3933), 1, sym_operator_name, - [40588] = 17, + STATE(3935), 1, + sym_destructor_name, + STATE(3969), 1, + sym_dependent_identifier, + STATE(3994), 1, + sym_qualified_identifier, + STATE(5961), 1, + sym__scope_resolution, + STATE(8431), 1, + sym_ms_based_modifier, + STATE(8447), 1, + sym_decltype, + [221812] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(7496), 1, + anon_sym_DASH_GT, + ACTIONS(7502), 1, + anon_sym_requires, + STATE(5826), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9398), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 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, + [221852] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, anon_sym___based, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(5116), 1, + ACTIONS(8533), 1, sym_identifier, - ACTIONS(5118), 1, + ACTIONS(8535), 1, anon_sym_LPAREN2, - ACTIONS(5120), 1, - anon_sym_STAR, - ACTIONS(5122), 1, - anon_sym_AMP_AMP, - ACTIONS(5124), 1, - anon_sym_AMP, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3903), 1, - sym__field_declarator, - STATE(5085), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2648), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3196), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [40657] = 3, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, + anon_sym_AMP_AMP, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6765), 1, + sym__type_declarator, + STATE(7169), 1, + sym__type_definition_declarators, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [221902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10217), 1, anon_sym_SLASH, + ACTIONS(10215), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10373), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4601), 25, - anon_sym_DOT_DOT_DOT, + ACTIONS(10371), 13, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -348107,225 +642553,527 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [40698] = 8, + [221934] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(5110), 1, - anon_sym_LBRACK, - ACTIONS(5114), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, anon_sym_LPAREN2, - STATE(2664), 1, - sym_new_declarator, - STATE(2675), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4513), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4511), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8555), 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, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [40749] = 17, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6765), 1, + sym__type_declarator, + STATE(7185), 1, + sym__type_definition_declarators, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [221984] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(51), 1, anon_sym___based, - ACTIONS(2367), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(8575), 1, + anon_sym_STAR, + ACTIONS(10427), 1, + sym_identifier, + ACTIONS(10429), 1, + anon_sym_TILDE, + ACTIONS(10431), 1, + anon_sym_COLON_COLON, + ACTIONS(10433), 1, + anon_sym_template, + ACTIONS(10435), 1, anon_sym_operator, - ACTIONS(5118), 1, - anon_sym_LPAREN2, - ACTIONS(5126), 1, + STATE(2463), 1, + sym_template_type, + STATE(2464), 1, + sym_dependent_type_identifier, + STATE(2518), 1, + sym_qualified_type_identifier, + STATE(3527), 1, + sym_dependent_identifier, + STATE(3534), 1, + sym_template_function, + STATE(3540), 1, + sym_qualified_identifier, + STATE(3543), 1, + sym_destructor_name, + STATE(3550), 1, + sym_operator_name, + STATE(3643), 1, + sym_pointer_type_declarator, + STATE(5966), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + STATE(8597), 1, + sym_ms_based_modifier, + [222048] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, sym_identifier, - ACTIONS(5128), 1, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, anon_sym_STAR, - ACTIONS(5130), 1, + ACTIONS(8555), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(8557), 1, anon_sym_AMP, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3635), 1, - sym__field_declarator, - STATE(4991), 1, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6765), 1, + sym__type_declarator, + STATE(7164), 1, + sym__type_definition_declarators, + STATE(8805), 1, sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3193), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3205), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [40818] = 17, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [222098] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(51), 1, anon_sym___based, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(5116), 1, + ACTIONS(8533), 1, sym_identifier, - ACTIONS(5118), 1, + ACTIONS(8535), 1, anon_sym_LPAREN2, - ACTIONS(5120), 1, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, anon_sym_STAR, - ACTIONS(5122), 1, + ACTIONS(8555), 1, anon_sym_AMP_AMP, - ACTIONS(5124), 1, + ACTIONS(8557), 1, anon_sym_AMP, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3903), 1, - sym__field_declarator, - STATE(5085), 1, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6765), 1, + sym__type_declarator, + STATE(7177), 1, + sym__type_definition_declarators, + STATE(8805), 1, sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3193), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3196), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [40887] = 8, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [222148] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(5110), 1, - anon_sym_LBRACK, - ACTIONS(5114), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 1, + anon_sym_STAR, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10437), 1, + anon_sym_RBRACK, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [222200] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, anon_sym_LPAREN2, - STATE(2687), 1, - sym_new_declarator, - STATE(2668), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4509), 8, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10439), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6135), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [222240] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, + anon_sym_LPAREN2, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10441), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6095), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [222280] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, + anon_sym_LPAREN2, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10443), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6084), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [222320] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(8559), 1, + anon_sym_STAR, + ACTIONS(10361), 1, + anon_sym_TILDE, + ACTIONS(10367), 1, + anon_sym_operator, + ACTIONS(10445), 1, + sym_identifier, + ACTIONS(10447), 1, + anon_sym_COLON_COLON, + ACTIONS(10449), 1, + anon_sym_template, + STATE(1308), 1, + sym_qualified_type_identifier, + STATE(1310), 1, + sym_dependent_type_identifier, + STATE(1311), 1, + sym_template_type, + STATE(2881), 1, + sym_pointer_type_declarator, + STATE(2883), 1, + sym_template_function, + STATE(2885), 1, + sym_destructor_name, + STATE(2886), 1, + sym_dependent_identifier, + STATE(2888), 1, + sym_qualified_identifier, + STATE(2891), 1, + sym_operator_name, + STATE(5973), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + STATE(8607), 1, + sym_ms_based_modifier, + [222384] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 1, + anon_sym_STAR, + ACTIONS(10329), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4507), 19, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10451), 1, + anon_sym_RBRACK, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [222436] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 1, anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10453), 1, + anon_sym_RBRACK, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [222488] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10158), 1, + sym_identifier, + ACTIONS(10162), 1, + anon_sym_LPAREN2, + ACTIONS(10164), 1, + anon_sym_defined, + ACTIONS(10455), 1, + sym_number_literal, + ACTIONS(10166), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10168), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10172), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6000), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [222528] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10217), 1, + anon_sym_SLASH, + ACTIONS(10219), 1, anon_sym_PIPE_PIPE, + ACTIONS(10221), 1, anon_sym_AMP_AMP, + ACTIONS(10223), 1, + anon_sym_PIPE, + ACTIONS(10225), 1, anon_sym_CARET, + ACTIONS(10227), 1, + anon_sym_AMP, + ACTIONS(10213), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10215), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10229), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10231), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10233), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(10235), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(10457), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [222578] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 1, + anon_sym_STAR, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10459), 1, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [40938] = 3, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [222630] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4856), 8, + ACTIONS(10217), 1, + anon_sym_SLASH, + ACTIONS(10213), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(10215), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10373), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4854), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(10371), 11, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -348335,32 +643083,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + [222664] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, + anon_sym_LPAREN2, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10461), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6080), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [222704] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10158), 1, + sym_identifier, + ACTIONS(10162), 1, + anon_sym_LPAREN2, + ACTIONS(10164), 1, + anon_sym_defined, + ACTIONS(10463), 1, + sym_number_literal, + ACTIONS(10166), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10168), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10172), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6037), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [222744] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, + anon_sym_LPAREN2, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10465), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6130), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [222784] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8159), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [40978] = 3, + ACTIONS(8161), 1, + anon_sym_LPAREN2, + ACTIONS(8524), 1, + anon_sym_STAR, + ACTIONS(8526), 1, + anon_sym_AMP_AMP, + ACTIONS(8528), 1, + anon_sym_AMP, + ACTIONS(8551), 1, + anon_sym___attribute, + STATE(3799), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6793), 1, + sym__abstract_declarator, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8549), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [222830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4775), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10469), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4773), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(10467), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -348372,356 +643235,540 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [41018] = 3, + [222858] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4813), 8, + ACTIONS(10158), 1, + sym_identifier, + ACTIONS(10162), 1, + anon_sym_LPAREN2, + ACTIONS(10164), 1, + anon_sym_defined, + ACTIONS(10471), 1, + sym_number_literal, + ACTIONS(10166), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4811), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(10172), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5979), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [222898] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(8575), 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [41058] = 3, + ACTIONS(10473), 1, + sym_identifier, + ACTIONS(10475), 1, + anon_sym_TILDE, + ACTIONS(10477), 1, + anon_sym_COLON_COLON, + ACTIONS(10479), 1, + anon_sym_template, + ACTIONS(10481), 1, + anon_sym_operator, + STATE(1308), 1, + sym_qualified_type_identifier, + STATE(1310), 1, + sym_dependent_type_identifier, + STATE(1311), 1, + sym_template_type, + STATE(3764), 1, + sym_pointer_type_declarator, + STATE(3765), 1, + sym_template_function, + STATE(3766), 1, + sym_destructor_name, + STATE(3767), 1, + sym_dependent_identifier, + STATE(3768), 1, + sym_qualified_identifier, + STATE(3769), 1, + sym_operator_name, + STATE(5986), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + STATE(8597), 1, + sym_ms_based_modifier, + [222962] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4823), 8, + ACTIONS(10158), 1, + sym_identifier, + ACTIONS(10162), 1, + anon_sym_LPAREN2, + ACTIONS(10164), 1, + anon_sym_defined, + ACTIONS(10483), 1, + sym_number_literal, + ACTIONS(10166), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1613), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10172), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5977), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [223002] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [41098] = 22, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10485), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6081), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [223042] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1463), 1, - anon_sym_enum, - ACTIONS(1465), 1, - anon_sym_class, - ACTIONS(1467), 1, - anon_sym_struct, - ACTIONS(1469), 1, - anon_sym_union, - ACTIONS(1471), 1, - anon_sym_typename, - ACTIONS(2385), 1, + ACTIONS(8575), 1, + anon_sym_STAR, + ACTIONS(10429), 1, + anon_sym_TILDE, + ACTIONS(10435), 1, + anon_sym_operator, + ACTIONS(10487), 1, + sym_identifier, + ACTIONS(10489), 1, anon_sym_COLON_COLON, - ACTIONS(4008), 1, + ACTIONS(10491), 1, + anon_sym_template, + STATE(1308), 1, + sym_qualified_type_identifier, + STATE(1310), 1, + sym_dependent_type_identifier, + STATE(1311), 1, + sym_template_type, + STATE(3527), 1, + sym_dependent_identifier, + STATE(3534), 1, + sym_template_function, + STATE(3540), 1, + sym_qualified_identifier, + STATE(3543), 1, + sym_destructor_name, + STATE(3550), 1, + sym_operator_name, + STATE(3643), 1, + sym_pointer_type_declarator, + STATE(5989), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + STATE(8597), 1, + sym_ms_based_modifier, + [223106] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10158), 1, + sym_identifier, + ACTIONS(10162), 1, + anon_sym_LPAREN2, + ACTIONS(10164), 1, + anon_sym_defined, + ACTIONS(10493), 1, + sym_number_literal, + ACTIONS(10166), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10168), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10172), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6069), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [223146] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4012), 1, + ACTIONS(5542), 1, anon_sym_EQ, - ACTIONS(5136), 1, + ACTIONS(10325), 1, sym_identifier, - STATE(1298), 1, + ACTIONS(10327), 1, + anon_sym_STAR, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10495), 1, + anon_sym_RBRACK, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, sym_template_type, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1326), 1, - sym__type_specifier, - STATE(1357), 1, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [223198] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(8575), 1, + anon_sym_STAR, + ACTIONS(10475), 1, + anon_sym_TILDE, + ACTIONS(10481), 1, + anon_sym_operator, + ACTIONS(10497), 1, + sym_identifier, + ACTIONS(10499), 1, + anon_sym_COLON_COLON, + ACTIONS(10501), 1, + anon_sym_template, + STATE(1308), 1, sym_qualified_type_identifier, - STATE(3908), 1, - sym__scope_resolution, - STATE(4853), 1, + STATE(1310), 1, sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - ACTIONS(4010), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(1311), 1, + sym_template_type, + STATE(3764), 1, + sym_pointer_type_declarator, + STATE(3765), 1, + sym_template_function, + STATE(3766), 1, + sym_destructor_name, + STATE(3767), 1, + sym_dependent_identifier, + STATE(3768), 1, + sym_qualified_identifier, + STATE(3769), 1, + sym_operator_name, + STATE(5992), 1, + sym__scope_resolution, + STATE(8447), 1, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [41176] = 3, + STATE(8597), 1, + sym_ms_based_modifier, + [223262] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4831), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4829), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(7496), 1, + anon_sym_DASH_GT, + ACTIONS(7502), 1, + anon_sym_requires, + STATE(5809), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9589), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [41216] = 6, + anon_sym_try, + [223302] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5138), 1, - anon_sym_COLON, - STATE(2589), 1, - sym_enumerator_list, - STATE(2760), 1, - sym__enum_base_clause, - ACTIONS(3832), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3834), 19, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 1, + anon_sym_STAR, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10503), 1, + anon_sym_RBRACK, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [223354] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8555), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [41262] = 6, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6765), 1, + sym__type_declarator, + STATE(7176), 1, + sym__type_definition_declarators, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [223404] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(5114), 1, + ACTIONS(10158), 1, + sym_identifier, + ACTIONS(10162), 1, anon_sym_LPAREN2, - STATE(2658), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4555), 8, + ACTIONS(10164), 1, + anon_sym_defined, + ACTIONS(10505), 1, + sym_number_literal, + ACTIONS(10166), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4553), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10172), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6072), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [223444] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10507), 1, + anon_sym_LBRACK_LBRACK, + STATE(5997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6868), 3, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym___asm, + ACTIONS(6870), 14, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, - [41308] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [223476] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4793), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4791), 24, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10510), 1, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [41348] = 6, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [223528] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(5114), 1, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, anon_sym_LPAREN2, - STATE(2686), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4559), 8, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10512), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4557), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [41394] = 3, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6099), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [223568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4649), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10373), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4647), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(10371), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -348733,268 +643780,391 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [41434] = 3, + [223596] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4695), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8490), 1, + anon_sym_STAR, + ACTIONS(8492), 1, + anon_sym_AMP_AMP, + ACTIONS(8494), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4693), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(8551), 1, + anon_sym___attribute, + STATE(3652), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6835), 1, + sym__abstract_declarator, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8549), 6, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [223642] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8555), 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, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6765), 1, + sym__type_declarator, + STATE(7157), 1, + sym__type_definition_declarators, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [223692] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7496), 1, + anon_sym_DASH_GT, + ACTIONS(7502), 1, + anon_sym_requires, + STATE(5857), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9859), 2, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_RBRACK, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 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_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [41474] = 6, + anon_sym_try, + [223732] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5138), 1, - anon_sym_COLON, - STATE(2560), 1, - sym_enumerator_list, - STATE(2777), 1, - sym__enum_base_clause, - ACTIONS(3826), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3828), 19, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 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_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [41520] = 9, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10514), 1, + anon_sym_RBRACK, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [223784] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10158), 1, + sym_identifier, + ACTIONS(10162), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4821), 7, + ACTIONS(10164), 1, + anon_sym_defined, + ACTIONS(10516), 1, + sym_number_literal, + ACTIONS(10166), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4819), 18, + ACTIONS(10172), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6007), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [223824] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10518), 1, anon_sym_RBRACK, - anon_sym_QMARK, - [41572] = 3, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [223876] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10217), 1, anon_sym_SLASH, + ACTIONS(10221), 1, + anon_sym_AMP_AMP, + ACTIONS(10223), 1, anon_sym_PIPE, + ACTIONS(10225), 1, + anon_sym_CARET, + ACTIONS(10227), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4673), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(10213), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10215), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(10229), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10231), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10233), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(10235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(10371), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [223924] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7496), 1, + anon_sym_DASH_GT, + ACTIONS(7502), 1, + anon_sym_requires, + STATE(5788), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10062), 2, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_RBRACK, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 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_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [41612] = 3, + anon_sym_try, + [223964] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4763), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4761), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7582), 1, + anon_sym_DASH_GT, + STATE(5826), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9398), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [41652] = 8, + anon_sym_asm, + anon_sym___asm__, + [224004] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3719), 1, - anon_sym_LBRACE, - ACTIONS(5142), 1, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, anon_sym_LPAREN2, - ACTIONS(5144), 1, - anon_sym_LBRACK, - STATE(2698), 1, - sym_new_declarator, - STATE(3050), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4517), 10, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10520), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4515), 16, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6088), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [224044] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 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_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [41702] = 3, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10522), 1, + anon_sym_RBRACK, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [224096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4783), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10526), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4781), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(10524), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -349006,77 +644176,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [41742] = 3, + [224124] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4789), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10217), 1, anon_sym_SLASH, + ACTIONS(10223), 1, anon_sym_PIPE, + ACTIONS(10225), 1, + anon_sym_CARET, + ACTIONS(10227), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4787), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(10213), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10215), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(10229), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10231), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10233), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(10235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(10371), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [224170] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, + anon_sym_LPAREN2, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10528), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6111), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [224210] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, + anon_sym_LPAREN2, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10530), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6138), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [224250] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, + anon_sym_LPAREN2, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10532), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6137), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [224290] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7582), 1, + anon_sym_DASH_GT, + STATE(5809), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9589), 2, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym___asm, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 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_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [41782] = 8, + anon_sym_asm, + anon_sym___asm__, + [224330] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10158), 1, + sym_identifier, + ACTIONS(10162), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4870), 7, + ACTIONS(10164), 1, + anon_sym_defined, + ACTIONS(10534), 1, + sym_number_literal, + ACTIONS(10166), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10172), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6061), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [224370] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(8559), 1, + anon_sym_STAR, + ACTIONS(10126), 1, + anon_sym_TILDE, + ACTIONS(10536), 1, + sym_identifier, + ACTIONS(10538), 1, + anon_sym_COLON_COLON, + ACTIONS(10540), 1, + anon_sym_template, + ACTIONS(10542), 1, + anon_sym_operator, + STATE(1308), 1, + sym_qualified_type_identifier, + STATE(1310), 1, + sym_dependent_type_identifier, + STATE(1311), 1, + sym_template_type, + STATE(3017), 1, + sym_pointer_type_declarator, + STATE(3018), 1, + sym_template_function, + STATE(3019), 1, + sym_destructor_name, + STATE(3021), 1, + sym_dependent_identifier, + STATE(3022), 1, + sym_qualified_identifier, + STATE(3023), 1, + sym_operator_name, + STATE(6019), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + STATE(8607), 1, + sym_ms_based_modifier, + [224434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10546), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(4868), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(10544), 15, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -349088,498 +644433,609 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [41832] = 3, + [224462] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(2399), 24, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5540), 1, + anon_sym_RBRACK, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 1, + anon_sym_STAR, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [224514] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7577), 1, + anon_sym_DASH_GT, + ACTIONS(7732), 1, + anon_sym_requires, + STATE(5718), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9398), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [41872] = 3, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [224554] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4741), 8, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, + anon_sym_LPAREN2, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10548), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4739), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6152), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [224594] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7582), 1, + anon_sym_DASH_GT, + STATE(5857), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9859), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [41912] = 8, + anon_sym_asm, + anon_sym___asm__, + [224634] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3719), 1, - anon_sym_LBRACE, - ACTIONS(5142), 1, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, anon_sym_LPAREN2, - ACTIONS(5144), 1, - anon_sym_LBRACK, - STATE(2695), 1, - sym_new_declarator, - STATE(2937), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4497), 10, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10550), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4493), 16, - anon_sym_DOT_DOT_DOT, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6140), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [224674] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + STATE(5997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10046), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10044), 14, 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_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + 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_GT2, - [41962] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [224706] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4691), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4689), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8555), 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, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - [42014] = 3, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6765), 1, + sym__type_declarator, + STATE(7149), 1, + sym__type_definition_declarators, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [224756] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4735), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7582), 1, + anon_sym_DASH_GT, + STATE(5788), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10062), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [42054] = 3, + anon_sym_asm, + anon_sym___asm__, + [224796] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4625), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4623), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(8611), 1, + anon_sym_STAR, + ACTIONS(10419), 1, + anon_sym_TILDE, + ACTIONS(10425), 1, + anon_sym_operator, + ACTIONS(10552), 1, + sym_identifier, + ACTIONS(10554), 1, + anon_sym_COLON_COLON, + ACTIONS(10556), 1, + anon_sym_template, + STATE(1308), 1, + sym_qualified_type_identifier, + STATE(1310), 1, + sym_dependent_type_identifier, + STATE(1311), 1, + sym_template_type, + STATE(3917), 1, + sym_pointer_type_declarator, + STATE(3931), 1, + sym_template_function, + STATE(3933), 1, + sym_operator_name, + STATE(3935), 1, + sym_destructor_name, + STATE(3969), 1, + sym_dependent_identifier, + STATE(3994), 1, + sym_qualified_identifier, + STATE(6029), 1, + sym__scope_resolution, + STATE(8431), 1, + sym_ms_based_modifier, + STATE(8447), 1, + sym_decltype, + [224860] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7577), 1, + anon_sym_DASH_GT, + ACTIONS(7732), 1, + anon_sym_requires, + STATE(5730), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9589), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [42094] = 3, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [224900] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4817), 8, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, + anon_sym_LPAREN2, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10558), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4815), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6098), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [224940] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7582), 1, + anon_sym_DASH_GT, + ACTIONS(9403), 1, + anon_sym_requires, + STATE(5825), 1, + sym_trailing_return_type, + ACTIONS(9398), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [42134] = 8, + anon_sym_asm, + anon_sym___asm__, + [224980] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(7582), 1, anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4767), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4765), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(9594), 1, + anon_sym_requires, + STATE(5890), 1, + sym_trailing_return_type, + ACTIONS(9589), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 9, 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [42184] = 9, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [225020] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(7582), 1, anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4637), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4635), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(9864), 1, + anon_sym_requires, + STATE(5816), 1, + sym_trailing_return_type, + ACTIONS(9859), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9861), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 9, 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - [42236] = 3, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [225060] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4725), 8, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, + anon_sym_LPAREN2, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10560), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4723), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6131), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [225100] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7582), 1, + anon_sym_DASH_GT, + ACTIONS(10202), 1, + anon_sym_requires, + STATE(5849), 1, + sym_trailing_return_type, + ACTIONS(10062), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10092), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [42276] = 6, + anon_sym_asm, + anon_sym___asm__, + [225140] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(5114), 1, - anon_sym_LPAREN2, - STATE(2674), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4535), 8, + ACTIONS(10217), 1, + anon_sym_SLASH, + ACTIONS(10213), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4533), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10215), 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, + ACTIONS(10231), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10233), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(10235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [42322] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4745), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(10373), 2, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4743), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(10371), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_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, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [42362] = 3, + [225180] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4779), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(8575), 1, + anon_sym_STAR, + ACTIONS(10475), 1, + anon_sym_TILDE, + ACTIONS(10481), 1, + anon_sym_operator, + ACTIONS(10562), 1, + sym_identifier, + ACTIONS(10564), 1, + anon_sym_COLON_COLON, + ACTIONS(10566), 1, + anon_sym_template, + STATE(2463), 1, + sym_template_type, + STATE(2464), 1, + sym_dependent_type_identifier, + STATE(2518), 1, + sym_qualified_type_identifier, + STATE(3764), 1, + sym_pointer_type_declarator, + STATE(3765), 1, + sym_template_function, + STATE(3766), 1, + sym_destructor_name, + STATE(3767), 1, + sym_dependent_identifier, + STATE(3768), 1, + sym_qualified_identifier, + STATE(3769), 1, + sym_operator_name, + STATE(6038), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + STATE(8597), 1, + sym_ms_based_modifier, + [225244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10570), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4777), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(10568), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -349591,114 +645047,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [42402] = 6, + [225272] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(5114), 1, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, anon_sym_LPAREN2, - STATE(2692), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4539), 8, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10572), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4537), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6122), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [225312] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + STATE(5997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9989), 3, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym___asm, + ACTIONS(9987), 14, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, - [42448] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [225344] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3719), 1, - anon_sym_LBRACE, - ACTIONS(5142), 1, - anon_sym_LPAREN2, - ACTIONS(5144), 1, - anon_sym_LBRACK, - STATE(2700), 1, - sym_new_declarator, - STATE(3074), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4513), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4511), 16, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 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_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [42498] = 3, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10574), 1, + anon_sym_RBRACK, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [225396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4843), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10578), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4841), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(10576), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -349710,59256 +645167,54382 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, + [225424] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 1, + anon_sym_STAR, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10580), 1, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [42538] = 8, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [225476] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3719), 1, - anon_sym_LBRACE, - ACTIONS(5142), 1, + ACTIONS(10158), 1, + sym_identifier, + ACTIONS(10162), 1, anon_sym_LPAREN2, - ACTIONS(5144), 1, - anon_sym_LBRACK, - STATE(2713), 1, - sym_new_declarator, - STATE(2948), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4509), 10, + ACTIONS(10164), 1, + anon_sym_defined, + ACTIONS(10582), 1, + sym_number_literal, + ACTIONS(10166), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(10172), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6106), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [225516] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, + anon_sym_AMP_AMP, + ACTIONS(8557), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4507), 16, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6765), 1, + sym__type_declarator, + STATE(7168), 1, + sym__type_definition_declarators, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [225566] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 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_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [42588] = 14, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10584), 1, + anon_sym_RBRACK, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [225618] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_const, - ACTIONS(5148), 1, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8514), 1, + anon_sym_STAR, + ACTIONS(8516), 1, anon_sym_AMP_AMP, - ACTIONS(5150), 1, + ACTIONS(8518), 1, anon_sym_AMP, - ACTIONS(5152), 1, + ACTIONS(8551), 1, + anon_sym___attribute, + STATE(3646), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6800), 1, + sym__abstract_declarator, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8549), 6, + anon_sym_COMMA, anon_sym___attribute__, - ACTIONS(5154), 1, - anon_sym_LBRACK, - ACTIONS(5158), 1, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [225664] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7577), 1, anon_sym_DASH_GT, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(3810), 2, + ACTIONS(7732), 1, + anon_sym_requires, + STATE(5731), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, anon_sym_final, anon_sym_override, - STATE(2709), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(5156), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5146), 7, + ACTIONS(9859), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - STATE(3044), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [42649] = 6, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [225704] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3719), 1, + ACTIONS(7577), 1, + anon_sym_DASH_GT, + ACTIONS(7732), 1, + anon_sym_requires, + STATE(5732), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10062), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(5142), 1, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [225744] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, anon_sym_LPAREN2, - STATE(3117), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4539), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4537), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8555), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [42694] = 11, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6765), 1, + sym__type_declarator, + STATE(7165), 1, + sym__type_definition_declarators, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [225794] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4691), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, + ACTIONS(10329), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4689), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [42749] = 13, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10586), 1, + anon_sym_RBRACK, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [225846] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4691), 4, - anon_sym_PIPE, + ACTIONS(10329), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4689), 13, - 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_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [42808] = 6, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10588), 1, + anon_sym_RBRACK, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [225898] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(8559), 1, + anon_sym_STAR, + ACTIONS(10361), 1, + anon_sym_TILDE, + ACTIONS(10367), 1, + anon_sym_operator, + ACTIONS(10590), 1, + sym_identifier, + ACTIONS(10592), 1, + anon_sym_COLON_COLON, + ACTIONS(10594), 1, + anon_sym_template, + STATE(1308), 1, + sym_qualified_type_identifier, + STATE(1310), 1, + sym_dependent_type_identifier, + STATE(1311), 1, + sym_template_type, + STATE(2881), 1, + sym_pointer_type_declarator, + STATE(2883), 1, + sym_template_function, + STATE(2885), 1, + sym_destructor_name, + STATE(2886), 1, + sym_dependent_identifier, + STATE(2888), 1, + sym_qualified_identifier, + STATE(2891), 1, + sym_operator_name, + STATE(6054), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + STATE(8607), 1, + sym_ms_based_modifier, + [225962] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3719), 1, - anon_sym_LBRACE, - ACTIONS(5142), 1, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, anon_sym_LPAREN2, - STATE(2949), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4559), 10, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10596), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4557), 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [42853] = 13, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6109), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [226002] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_const, - ACTIONS(5172), 1, - anon_sym_LPAREN2, - ACTIONS(5174), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 1, anon_sym_STAR, - ACTIONS(5176), 1, - anon_sym_AMP_AMP, - ACTIONS(5178), 1, + ACTIONS(10329), 1, anon_sym_AMP, - ACTIONS(5180), 1, - anon_sym_LBRACK, - STATE(3140), 1, - sym_parameter_list, - STATE(3283), 1, - sym__abstract_declarator, - STATE(2705), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5156), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3227), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(4421), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [42912] = 6, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10598), 1, + anon_sym_RBRACK, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [226054] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3719), 1, - anon_sym_LBRACE, - ACTIONS(5142), 1, - anon_sym_LPAREN2, - STATE(3047), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4555), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4553), 17, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 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_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [42957] = 13, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10600), 1, + anon_sym_RBRACK, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [226106] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10602), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4827), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4825), 13, - 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_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [43016] = 22, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6133), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [226146] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(8557), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4862), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - [43093] = 6, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6765), 1, + sym__type_declarator, + STATE(7191), 1, + sym__type_definition_declarators, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [226196] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3877), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4567), 1, - anon_sym_LBRACK, - ACTIONS(4561), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(2407), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(2399), 19, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [43138] = 18, + ACTIONS(10329), 1, + anon_sym_AMP, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10335), 1, + sym_this, + ACTIONS(10604), 1, + anon_sym_RBRACK, + STATE(6117), 1, + sym__scope_resolution, + STATE(8007), 1, + sym_lambda_default_capture, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7703), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [226248] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, + ACTIONS(10217), 1, anon_sym_SLASH, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, + ACTIONS(10225), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(10227), 1, anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, + ACTIONS(10373), 1, + anon_sym_PIPE, + ACTIONS(10213), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, + ACTIONS(10215), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10229), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 2, + ACTIONS(10231), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(5198), 2, + ACTIONS(10233), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4689), 8, - anon_sym_DOT_DOT_DOT, + ACTIONS(10235), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10371), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [43207] = 13, + [226294] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_const, - ACTIONS(5172), 1, - anon_sym_LPAREN2, - ACTIONS(5174), 1, - anon_sym_STAR, - ACTIONS(5176), 1, - anon_sym_AMP_AMP, - ACTIONS(5178), 1, - anon_sym_AMP, - ACTIONS(5180), 1, + ACTIONS(7496), 1, + anon_sym_DASH_GT, + ACTIONS(9403), 1, + anon_sym_requires, + STATE(5825), 1, + sym_trailing_return_type, + ACTIONS(9398), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(3140), 1, - sym_parameter_list, - STATE(3271), 1, - sym__abstract_declarator, - STATE(3210), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5156), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3227), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(4589), 11, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 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_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [43266] = 16, + anon_sym_try, + [226334] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4691), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10606), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4689), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6113), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [226374] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6765), 1, + sym__type_declarator, + STATE(7207), 1, + sym__type_definition_declarators, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [226424] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7496), 1, + anon_sym_DASH_GT, + ACTIONS(9594), 1, + anon_sym_requires, + STATE(5890), 1, + sym_trailing_return_type, + ACTIONS(9589), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [43331] = 15, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [226464] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4691), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10608), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4689), 11, - 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_QMARK, - [43394] = 20, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6126), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [226504] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10339), 1, + sym_identifier, + ACTIONS(10341), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, + ACTIONS(10343), 1, + anon_sym_defined, + ACTIONS(10610), 1, + sym_number_literal, + ACTIONS(10345), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10347), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4769), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [43467] = 14, + ACTIONS(10351), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6128), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [226544] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5152), 1, - anon_sym___attribute__, - ACTIONS(5158), 1, + ACTIONS(7496), 1, anon_sym_DASH_GT, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5204), 1, + ACTIONS(9864), 1, + anon_sym_requires, + STATE(5816), 1, + sym_trailing_return_type, + ACTIONS(9859), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(3810), 2, + ACTIONS(9861), 2, anon_sym_final, anon_sym_override, - STATE(3212), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(5156), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5202), 7, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 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, - STATE(3105), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [43528] = 5, + anon_sym_try, + [226584] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - STATE(1294), 1, - sym_template_argument_list, - ACTIONS(3358), 10, + ACTIONS(10217), 1, + anon_sym_SLASH, + ACTIONS(10213), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(10215), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10235), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10373), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3360), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(10371), 9, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [43571] = 20, + [226620] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(7496), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4697), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(10202), 1, + anon_sym_requires, + STATE(5849), 1, + sym_trailing_return_type, + ACTIONS(10062), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(10092), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 9, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [43644] = 25, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [226660] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, + anon_sym_AMP_AMP, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6765), 1, + sym__type_declarator, + STATE(7170), 1, + sym__type_definition_declarators, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [226710] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10217), 1, anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, + ACTIONS(10219), 1, anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(10221), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, + ACTIONS(10223), 1, anon_sym_PIPE, - ACTIONS(5190), 1, + ACTIONS(10225), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(10227), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5206), 1, - anon_sym_COMMA, - ACTIONS(5208), 1, - anon_sym_SEMI, - ACTIONS(5210), 1, - anon_sym_RBRACE, - STATE(2120), 1, - sym_argument_list, - STATE(4251), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, + ACTIONS(10612), 1, + anon_sym_RPAREN, + ACTIONS(10213), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, + ACTIONS(10215), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10229), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 2, + ACTIONS(10231), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(5198), 2, + ACTIONS(10233), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43727] = 6, - ACTIONS(3), 1, + ACTIONS(10235), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [226759] = 7, + ACTIONS(10249), 1, sym_comment, - ACTIONS(3719), 1, - anon_sym_LBRACE, - ACTIONS(5142), 1, - anon_sym_LPAREN2, - STATE(3115), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4535), 10, + ACTIONS(10371), 1, + anon_sym_LF, + ACTIONS(10614), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10616), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(10618), 4, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4533), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(10373), 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, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [43772] = 20, - ACTIONS(3), 1, + [226794] = 3, + ACTIONS(10249), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, + ACTIONS(10544), 1, + anon_sym_LF, + ACTIONS(10546), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5184), 1, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, anon_sym_PIPE, - ACTIONS(5190), 1, anon_sym_CARET, - ACTIONS(5192), 1, anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4858), 6, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [226821] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8571), 1, + sym_identifier, + ACTIONS(8573), 1, + anon_sym_LPAREN2, + ACTIONS(8575), 1, + anon_sym_STAR, + ACTIONS(8577), 1, + anon_sym_AMP_AMP, + ACTIONS(8579), 1, + anon_sym_AMP, + ACTIONS(8583), 1, + sym_primitive_type, + STATE(3246), 1, + sym__type_declarator, + STATE(3589), 1, + sym_pointer_type_declarator, + STATE(8597), 1, + sym_ms_based_modifier, + ACTIONS(8581), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3586), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [226868] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8623), 1, + anon_sym_STAR, + ACTIONS(8625), 1, + anon_sym_AMP_AMP, + ACTIONS(8627), 1, + anon_sym_AMP, + STATE(3414), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6879), 1, + sym__abstract_declarator, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8549), 6, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [226911] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10624), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10622), 16, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [43845] = 20, + 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, + [226938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10628), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5184), 1, + anon_sym___asm, + ACTIONS(10626), 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, + [226965] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, + anon_sym_AMP_AMP, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(7051), 1, + sym__type_declarator, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [227012] = 12, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10630), 1, + anon_sym_LF, + ACTIONS(10632), 1, anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(10634), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, + ACTIONS(10636), 1, anon_sym_PIPE, - ACTIONS(5190), 1, + ACTIONS(10638), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(10640), 1, anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, + ACTIONS(10614), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5170), 2, + ACTIONS(10620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5194), 2, + ACTIONS(10642), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 2, + ACTIONS(10616), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10618), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4731), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [43918] = 18, - ACTIONS(3), 1, + anon_sym_LT, + [227057] = 12, + ACTIONS(10249), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(4691), 1, + ACTIONS(10632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10634), 1, + anon_sym_AMP_AMP, + ACTIONS(10636), 1, anon_sym_PIPE, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5190), 1, + ACTIONS(10638), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(10640), 1, anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, + ACTIONS(10644), 1, + anon_sym_LF, + ACTIONS(10614), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5170), 2, + ACTIONS(10620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5194), 2, + ACTIONS(10642), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 2, + ACTIONS(10616), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10618), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4689), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [43987] = 6, + anon_sym_LT, + [227102] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6622), 1, anon_sym_COLON_COLON, - ACTIONS(5105), 1, - anon_sym_LT, - STATE(2473), 1, - sym_template_argument_list, - ACTIONS(2397), 9, + ACTIONS(8591), 1, + anon_sym_STAR, + ACTIONS(10646), 1, + sym_identifier, + ACTIONS(10648), 1, + anon_sym_template, + STATE(6082), 1, + sym__scope_resolution, + STATE(6392), 1, + sym_pointer_type_declarator, + STATE(6394), 1, + sym_template_function, + STATE(6395), 1, + sym_destructor_name, + STATE(6396), 1, + sym_dependent_identifier, + STATE(6397), 1, + sym_qualified_identifier, + STATE(6398), 1, + sym_operator_name, + STATE(8631), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [227159] = 3, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10467), 1, + anon_sym_LF, + ACTIONS(10469), 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_GT_GT, - anon_sym_DOT, - ACTIONS(2405), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [44032] = 17, - ACTIONS(3), 1, + anon_sym_GT_GT, + [227186] = 4, + ACTIONS(10249), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(4691), 1, - anon_sym_PIPE, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5192), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, + ACTIONS(10371), 1, + anon_sym_LF, + ACTIONS(10616), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5168), 2, + ACTIONS(10373), 15, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4689), 9, - 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, - [44099] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, anon_sym_PIPE, - ACTIONS(5190), 1, anon_sym_CARET, - ACTIONS(5192), 1, anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4689), 7, - anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [227215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10652), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10650), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [44170] = 12, + 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, + [227242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10656), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4691), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4689), 15, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(10654), 16, 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, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [44227] = 21, + 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, + [227269] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, + anon_sym_AMP_AMP, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(7015), 1, + sym__type_declarator, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [227316] = 12, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10632), 1, anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(10634), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, + ACTIONS(10636), 1, anon_sym_PIPE, - ACTIONS(5190), 1, + ACTIONS(10638), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(10640), 1, anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, + ACTIONS(10658), 1, + anon_sym_LF, + ACTIONS(10614), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5170), 2, + ACTIONS(10620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5194), 2, + ACTIONS(10642), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 2, + ACTIONS(10616), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10618), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4803), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [44302] = 13, + anon_sym_LT, + [227361] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5180), 1, + ACTIONS(8159), 1, anon_sym_LBRACK, - ACTIONS(5212), 1, + ACTIONS(8161), 1, anon_sym_LPAREN2, - ACTIONS(5214), 1, + ACTIONS(8565), 1, anon_sym_STAR, - ACTIONS(5216), 1, + ACTIONS(8567), 1, anon_sym_AMP_AMP, - ACTIONS(5218), 1, + ACTIONS(8569), 1, anon_sym_AMP, - STATE(3187), 1, + STATE(3582), 1, sym_parameter_list, - STATE(3298), 1, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6858), 1, sym__abstract_declarator, - STATE(3192), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3227), 5, + STATE(6090), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(4589), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8549), 6, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [44360] = 13, + anon_sym_requires, + [227404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5180), 1, + ACTIONS(10662), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(5212), 1, + anon_sym___asm, + ACTIONS(10660), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5220), 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [227431] = 9, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10371), 1, + anon_sym_LF, + ACTIONS(10640), 1, + anon_sym_AMP, + ACTIONS(10614), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10642), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10616), 3, anon_sym_STAR, - ACTIONS(5222), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10373), 4, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(5224), 1, - anon_sym_AMP, - STATE(3182), 1, - sym_parameter_list, - STATE(3302), 1, - sym__abstract_declarator, - STATE(2756), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3227), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(4421), 10, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(10618), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [227470] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(10664), 1, + sym_identifier, + ACTIONS(10666), 1, + anon_sym_COLON_COLON, + ACTIONS(10668), 1, + anon_sym_template, + STATE(3017), 1, + sym_pointer_type_declarator, + STATE(3018), 1, + sym_template_function, + STATE(3019), 1, + sym_destructor_name, + STATE(3021), 1, + sym_dependent_identifier, + STATE(3022), 1, + sym_qualified_identifier, + STATE(3023), 1, + sym_operator_name, + STATE(6092), 1, + sym__scope_resolution, + STATE(8805), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [227527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9398), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9387), 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_DASH_GT, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [44418] = 24, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [227554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(9859), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5226), 1, + anon_sym___asm, + ACTIONS(9848), 16, anon_sym_COMMA, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, + 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, + [227581] = 12, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10632), 1, anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, + ACTIONS(10634), 1, anon_sym_AMP_AMP, - ACTIONS(5238), 1, + ACTIONS(10636), 1, anon_sym_PIPE, - ACTIONS(5240), 1, + ACTIONS(10638), 1, anon_sym_CARET, - ACTIONS(5242), 1, + ACTIONS(10640), 1, anon_sym_AMP, - ACTIONS(5252), 1, - anon_sym_RBRACK, - ACTIONS(5254), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - STATE(4344), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, + ACTIONS(10670), 1, + anon_sym_LF, + ACTIONS(10614), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, + ACTIONS(10620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10642), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5246), 2, + ACTIONS(10616), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10618), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44498] = 14, + anon_sym_LT, + [227626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(3867), 1, - anon_sym___attribute__, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5204), 1, + ACTIONS(10674), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(5256), 1, - anon_sym_DASH_GT, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - STATE(3204), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5202), 6, + anon_sym___asm, + ACTIONS(10672), 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, - STATE(3142), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [44558] = 21, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [227653] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2550), 1, - anon_sym_decltype, - ACTIONS(4104), 1, - anon_sym_COLON_COLON, - ACTIONS(5112), 1, - anon_sym_LPAREN2, - ACTIONS(5258), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8587), 1, sym_identifier, - ACTIONS(5260), 1, - anon_sym_enum, - ACTIONS(5262), 1, - anon_sym_class, - ACTIONS(5264), 1, - anon_sym_struct, - ACTIONS(5266), 1, - anon_sym_union, - ACTIONS(5268), 1, - anon_sym_typename, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, - sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(2632), 1, - sym__type_specifier, - STATE(2964), 1, - sym_argument_list, - STATE(3909), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [44632] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2550), 1, - anon_sym_decltype, - ACTIONS(4104), 1, - anon_sym_COLON_COLON, - ACTIONS(5112), 1, + ACTIONS(8589), 1, anon_sym_LPAREN2, - ACTIONS(5258), 1, - sym_identifier, - ACTIONS(5262), 1, - anon_sym_class, - ACTIONS(5264), 1, - anon_sym_struct, - ACTIONS(5266), 1, - anon_sym_union, - ACTIONS(5270), 1, - anon_sym_enum, - ACTIONS(5272), 1, - anon_sym_typename, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, - sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(2640), 1, - sym__type_specifier, - STATE(2939), 1, - sym_argument_list, - STATE(3909), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(2552), 2, + ACTIONS(8591), 1, + anon_sym_STAR, + ACTIONS(8593), 1, + anon_sym_AMP_AMP, + ACTIONS(8595), 1, + anon_sym_AMP, + ACTIONS(8599), 1, sym_primitive_type, - sym_auto, - ACTIONS(2538), 4, + STATE(6167), 1, + sym__type_declarator, + STATE(6322), 1, + sym_pointer_type_declarator, + STATE(8631), 1, + sym_ms_based_modifier, + ACTIONS(8597), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [44706] = 24, - ACTIONS(3), 1, + STATE(6320), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [227700] = 12, + ACTIONS(10249), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5226), 1, - anon_sym_COMMA, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, + ACTIONS(10632), 1, anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, + ACTIONS(10634), 1, anon_sym_AMP_AMP, - ACTIONS(5238), 1, + ACTIONS(10636), 1, anon_sym_PIPE, - ACTIONS(5240), 1, + ACTIONS(10638), 1, anon_sym_CARET, - ACTIONS(5242), 1, + ACTIONS(10640), 1, anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - ACTIONS(5274), 1, - anon_sym_RBRACK, - STATE(2120), 1, - sym_argument_list, - STATE(4227), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, + ACTIONS(10676), 1, + anon_sym_LF, + ACTIONS(10614), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10642), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10616), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10618), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [227745] = 3, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10371), 1, + anon_sym_LF, + ACTIONS(10373), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5230), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5244), 2, + 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(5246), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5250), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [44786] = 21, + [227772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3256), 1, - anon_sym_decltype, - ACTIONS(4156), 1, - anon_sym_COLON_COLON, - ACTIONS(5112), 1, + ACTIONS(10680), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10678), 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, + [227799] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10684), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10682), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5276), 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [227826] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, sym_identifier, - ACTIONS(5278), 1, - anon_sym_enum, - ACTIONS(5280), 1, - anon_sym_class, - ACTIONS(5282), 1, - anon_sym_struct, - ACTIONS(5284), 1, - anon_sym_union, - ACTIONS(5286), 1, - anon_sym_typename, - STATE(2255), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2523), 1, - sym_template_type, - STATE(2603), 1, - sym_qualified_type_identifier, - STATE(2673), 1, - sym__type_specifier, - STATE(3083), 1, - sym_argument_list, - STATE(3918), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3258), 2, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8537), 1, + anon_sym_STAR, + ACTIONS(8539), 1, + anon_sym_AMP_AMP, + ACTIONS(8541), 1, + anon_sym_AMP, + ACTIONS(8547), 1, sym_primitive_type, - sym_auto, - ACTIONS(3232), 4, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(7061), 1, + sym__type_declarator, + STATE(8986), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2558), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [44860] = 25, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [227873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, + ACTIONS(9589), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5288), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5290), 1, + anon_sym___asm, + ACTIONS(9578), 16, anon_sym_COMMA, - ACTIONS(5296), 1, + 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, + [227900] = 3, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10524), 1, + anon_sym_LF, + ACTIONS(10526), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5298), 1, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5302), 1, anon_sym_PIPE, - ACTIONS(5304), 1, anon_sym_CARET, - ACTIONS(5306), 1, anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - ACTIONS(5318), 1, - anon_sym_QMARK, - ACTIONS(5322), 1, - anon_sym_GT2, - STATE(2445), 1, - sym_argument_list, - STATE(4437), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - [44942] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(5112), 1, - anon_sym_LPAREN2, - ACTIONS(5324), 1, - sym_identifier, - ACTIONS(5330), 1, - anon_sym_enum, - ACTIONS(5332), 1, - anon_sym_class, - ACTIONS(5334), 1, - anon_sym_struct, - ACTIONS(5336), 1, - anon_sym_union, - ACTIONS(5338), 1, - anon_sym_decltype, - ACTIONS(5340), 1, - anon_sym_typename, - STATE(2004), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2157), 1, - sym__type_specifier, - STATE(2280), 1, - sym_template_type, - STATE(2287), 1, - sym_qualified_type_identifier, - STATE(3076), 1, - sym_argument_list, - STATE(3902), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(5328), 2, - sym_primitive_type, - sym_auto, - ACTIONS(5326), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2288), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [45016] = 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + [227927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2550), 1, - anon_sym_decltype, - ACTIONS(4104), 1, - anon_sym_COLON_COLON, - ACTIONS(5112), 1, + ACTIONS(10688), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10686), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5258), 1, - sym_identifier, - ACTIONS(5262), 1, - anon_sym_class, - ACTIONS(5264), 1, - anon_sym_struct, - ACTIONS(5266), 1, - anon_sym_union, - ACTIONS(5270), 1, - anon_sym_enum, - ACTIONS(5272), 1, - anon_sym_typename, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, - sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(2653), 1, - sym__type_specifier, - STATE(2975), 1, - sym_argument_list, - STATE(3909), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [45090] = 24, + 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, + [227954] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, + ACTIONS(10217), 1, anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, + ACTIONS(10219), 1, anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(10221), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, + ACTIONS(10223), 1, anon_sym_PIPE, - ACTIONS(5190), 1, + ACTIONS(10225), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(10227), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5344), 1, + ACTIONS(10690), 1, anon_sym_RPAREN, - ACTIONS(5346), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, + ACTIONS(10213), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10215), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5168), 2, + ACTIONS(10229), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10231), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10233), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10235), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [228003] = 3, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10321), 1, + anon_sym_LF, + ACTIONS(10323), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5170), 2, + 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, - ACTIONS(5194), 2, + [228030] = 3, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10407), 1, + anon_sym_LF, + ACTIONS(10409), 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, - ACTIONS(5196), 2, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5198), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [228057] = 3, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10355), 1, + anon_sym_LF, + ACTIONS(10357), 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, - [45170] = 24, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [228084] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, + anon_sym_AMP_AMP, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(7068), 1, + sym__type_declarator, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [228131] = 12, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10632), 1, anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(10634), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, + ACTIONS(10636), 1, anon_sym_PIPE, - ACTIONS(5190), 1, + ACTIONS(10638), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(10640), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5348), 1, - anon_sym_COMMA, - ACTIONS(5350), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - STATE(4339), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, + ACTIONS(10692), 1, + anon_sym_LF, + ACTIONS(10614), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5170), 2, + ACTIONS(10620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5194), 2, + ACTIONS(10642), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 2, + ACTIONS(10616), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10618), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [45250] = 24, + anon_sym_LT, + [228176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10066), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, + anon_sym___asm, + ACTIONS(10064), 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, + [228203] = 11, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10371), 1, + anon_sym_LF, + ACTIONS(10636), 1, anon_sym_PIPE, - ACTIONS(5190), 1, + ACTIONS(10638), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(10640), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5348), 1, - anon_sym_COMMA, - ACTIONS(5352), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - STATE(4265), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, + ACTIONS(10373), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(10614), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5170), 2, + ACTIONS(10620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5194), 2, + ACTIONS(10642), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 2, + ACTIONS(10616), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10618), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [45330] = 21, + anon_sym_LT, + [228246] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(5112), 1, - anon_sym_LPAREN2, - ACTIONS(5324), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, sym_identifier, - ACTIONS(5330), 1, - anon_sym_enum, - ACTIONS(5332), 1, - anon_sym_class, - ACTIONS(5334), 1, - anon_sym_struct, - ACTIONS(5336), 1, - anon_sym_union, - ACTIONS(5338), 1, - anon_sym_decltype, - ACTIONS(5340), 1, - anon_sym_typename, - STATE(2004), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2208), 1, - sym__type_specifier, - STATE(2280), 1, - sym_template_type, - STATE(2287), 1, - sym_qualified_type_identifier, - STATE(3011), 1, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, + anon_sym_AMP_AMP, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6565), 1, + sym__type_declarator, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [228293] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym___asm, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10198), 1, + anon_sym_EQ, + ACTIONS(10694), 1, + anon_sym_LPAREN2, + ACTIONS(10696), 1, + anon_sym_SEMI, + ACTIONS(10698), 1, + anon_sym_COLON, + STATE(3239), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(7549), 1, + sym_gnu_asm_expression, + STATE(7550), 1, + aux_sym_declaration_repeat1, + ACTIONS(10200), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6621), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8148), 2, sym_argument_list, - STATE(3902), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(5328), 2, + sym_initializer_list, + [228348] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8607), 1, + sym_identifier, + ACTIONS(8609), 1, + anon_sym_LPAREN2, + ACTIONS(8611), 1, + anon_sym_STAR, + ACTIONS(8613), 1, + anon_sym_AMP_AMP, + ACTIONS(8615), 1, + anon_sym_AMP, + ACTIONS(8619), 1, sym_primitive_type, - sym_auto, - ACTIONS(5326), 4, + STATE(3319), 1, + sym__type_declarator, + STATE(3689), 1, + sym_pointer_type_declarator, + STATE(8431), 1, + sym_ms_based_modifier, + ACTIONS(8617), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2288), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(3687), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [228395] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(10702), 1, + anon_sym_template, + STATE(3017), 1, + sym_pointer_type_declarator, + STATE(3018), 1, + sym_template_function, + STATE(3019), 1, + sym_destructor_name, + STATE(3021), 1, + sym_dependent_identifier, + STATE(3022), 1, + sym_qualified_identifier, + STATE(3023), 1, + sym_operator_name, + STATE(6117), 1, + sym__scope_resolution, + STATE(8805), 1, + sym_ms_based_modifier, + STATE(8447), 3, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [45404] = 5, + sym_template_type, + sym_dependent_type_identifier, + [228452] = 3, ACTIONS(3), 1, sym_comment, - STATE(2439), 1, - sym_enumerator_list, - STATE(2630), 1, - sym__enum_base_clause, - ACTIONS(3826), 8, + ACTIONS(10706), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10704), 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, + [228479] = 8, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10371), 1, + anon_sym_LF, + ACTIONS(10614), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10642), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10616), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(10618), 4, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(3828), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(10373), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, 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, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [45446] = 23, + anon_sym_AMP, + [228516] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(7696), 1, + anon_sym_COLON_COLON, + ACTIONS(8601), 1, + anon_sym_STAR, + ACTIONS(10646), 1, + sym_identifier, + ACTIONS(10648), 1, + anon_sym_template, + STATE(6120), 1, + sym__scope_resolution, + STATE(6392), 1, + sym_pointer_type_declarator, + STATE(6394), 1, + sym_template_function, + STATE(6395), 1, + sym_destructor_name, + STATE(6396), 1, + sym_dependent_identifier, + STATE(6397), 1, + sym_qualified_identifier, + STATE(6398), 1, + sym_operator_name, + STATE(8727), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [228573] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10710), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, + anon_sym___asm, + ACTIONS(10708), 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, + [228600] = 12, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10371), 1, + anon_sym_LF, + ACTIONS(10373), 1, anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(10634), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, + ACTIONS(10636), 1, anon_sym_PIPE, - ACTIONS(5190), 1, + ACTIONS(10638), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(10640), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, + ACTIONS(10614), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5170), 2, + ACTIONS(10620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5194), 2, + ACTIONS(10642), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 2, + ACTIONS(10616), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10618), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5354), 2, + anon_sym_LT, + [228645] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5530), 1, + anon_sym_LT, + STATE(6287), 1, + sym_template_argument_list, + ACTIONS(3281), 4, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym___asm, + ACTIONS(3274), 12, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - [45524] = 24, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [228678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10714), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, + anon_sym___asm, + ACTIONS(10712), 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, + [228705] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, + anon_sym_AMP_AMP, + ACTIONS(8557), 1, + anon_sym_AMP, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(6846), 1, + sym__type_declarator, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [228752] = 12, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10632), 1, anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(10634), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, + ACTIONS(10636), 1, anon_sym_PIPE, - ACTIONS(5190), 1, + ACTIONS(10638), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(10640), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5210), 1, - anon_sym_RBRACE, - ACTIONS(5356), 1, - anon_sym_COMMA, - STATE(2120), 1, - sym_argument_list, - STATE(4251), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, + ACTIONS(10716), 1, + anon_sym_LF, + ACTIONS(10614), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5170), 2, + ACTIONS(10620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5194), 2, + ACTIONS(10642), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 2, + ACTIONS(10616), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10618), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [45604] = 24, + anon_sym_LT, + [228797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10720), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5226), 1, + anon_sym___asm, + ACTIONS(10718), 16, anon_sym_COMMA, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, + 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, + [228824] = 12, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10632), 1, anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, + ACTIONS(10634), 1, anon_sym_AMP_AMP, - ACTIONS(5238), 1, + ACTIONS(10636), 1, anon_sym_PIPE, - ACTIONS(5240), 1, + ACTIONS(10638), 1, anon_sym_CARET, - ACTIONS(5242), 1, + ACTIONS(10640), 1, anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - ACTIONS(5358), 1, - anon_sym_RBRACK, - STATE(2120), 1, - sym_argument_list, - STATE(4344), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, + ACTIONS(10722), 1, + anon_sym_LF, + ACTIONS(10614), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, + ACTIONS(10620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10642), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5246), 2, + ACTIONS(10616), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10618), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45684] = 14, + anon_sym_LT, + [228869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(3867), 1, - anon_sym___attribute__, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5154), 1, + ACTIONS(10726), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5360), 1, - anon_sym_DASH_GT, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - STATE(2743), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5146), 6, + anon_sym___asm, + ACTIONS(10724), 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, - STATE(3166), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [45744] = 4, - ACTIONS(3), 1, + anon_sym_try, + anon_sym_requires, + [228896] = 12, + ACTIONS(10249), 1, sym_comment, - ACTIONS(2519), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(2521), 10, + ACTIONS(10632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10634), 1, + anon_sym_AMP_AMP, + ACTIONS(10636), 1, + anon_sym_PIPE, + ACTIONS(10638), 1, + anon_sym_CARET, + ACTIONS(10640), 1, + anon_sym_AMP, + ACTIONS(10728), 1, + anon_sym_LF, + ACTIONS(10614), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10642), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10616), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(10618), 4, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2514), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + [228941] = 12, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10632), 1, anon_sym_PIPE_PIPE, + ACTIONS(10634), 1, anon_sym_AMP_AMP, + ACTIONS(10636), 1, + anon_sym_PIPE, + ACTIONS(10638), 1, anon_sym_CARET, + ACTIONS(10640), 1, + anon_sym_AMP, + ACTIONS(10730), 1, + anon_sym_LF, + ACTIONS(10614), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10642), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10616), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10618), 4, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [45784] = 14, + anon_sym_LT, + [228986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(3867), 1, - anon_sym___attribute__, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5204), 1, + ACTIONS(10734), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(5360), 1, - anon_sym_DASH_GT, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - STATE(3204), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5202), 6, + anon_sym___asm, + ACTIONS(10732), 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, - STATE(3139), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [45844] = 21, + anon_sym_try, + anon_sym_requires, + [229013] = 6, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10371), 1, + anon_sym_LF, + ACTIONS(10614), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10616), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10373), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [229046] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2550), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(4104), 1, + ACTIONS(7704), 1, anon_sym_COLON_COLON, - ACTIONS(5112), 1, - anon_sym_LPAREN2, - ACTIONS(5258), 1, + ACTIONS(8537), 1, + anon_sym_STAR, + ACTIONS(10309), 1, sym_identifier, - ACTIONS(5260), 1, - anon_sym_enum, - ACTIONS(5262), 1, - anon_sym_class, - ACTIONS(5264), 1, - anon_sym_struct, - ACTIONS(5266), 1, - anon_sym_union, - ACTIONS(5268), 1, - anon_sym_typename, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, - sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(2633), 1, - sym__type_specifier, - STATE(2935), 1, - sym_argument_list, - STATE(3909), 1, + ACTIONS(10311), 1, + anon_sym_template, + STATE(3017), 1, + sym_pointer_type_declarator, + STATE(3018), 1, + sym_template_function, + STATE(3019), 1, + sym_destructor_name, + STATE(3021), 1, + sym_dependent_identifier, + STATE(3022), 1, + sym_qualified_identifier, + STATE(3023), 1, + sym_operator_name, + STATE(6134), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(8986), 1, + sym_ms_based_modifier, + STATE(8447), 3, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [45918] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3256), 1, - anon_sym_decltype, - ACTIONS(4156), 1, - anon_sym_COLON_COLON, - ACTIONS(5112), 1, - anon_sym_LPAREN2, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5278), 1, - anon_sym_enum, - ACTIONS(5280), 1, - anon_sym_class, - ACTIONS(5282), 1, - anon_sym_struct, - ACTIONS(5284), 1, - anon_sym_union, - ACTIONS(5286), 1, - anon_sym_typename, - STATE(2255), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2523), 1, sym_template_type, - STATE(2603), 1, - sym_qualified_type_identifier, - STATE(2691), 1, - sym__type_specifier, - STATE(3129), 1, - sym_argument_list, - STATE(3918), 1, - sym__scope_resolution, - STATE(4853), 1, sym_dependent_type_identifier, - ACTIONS(3258), 2, - sym_primitive_type, - sym_auto, - ACTIONS(3232), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2558), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [45992] = 25, - ACTIONS(3), 1, + [229103] = 5, + ACTIONS(10249), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5288), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(5296), 1, + ACTIONS(10371), 1, + anon_sym_LF, + ACTIONS(10614), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10616), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5298), 1, + anon_sym_PERCENT, + ACTIONS(10373), 13, anon_sym_PIPE_PIPE, - ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5302), 1, anon_sym_PIPE, - ACTIONS(5304), 1, anon_sym_CARET, - ACTIONS(5306), 1, anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - ACTIONS(5318), 1, - anon_sym_QMARK, - ACTIONS(5362), 1, - anon_sym_GT2, - STATE(2445), 1, - sym_argument_list, - STATE(4191), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - [46074] = 13, + anon_sym_LT_LT, + anon_sym_GT_GT, + [229134] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5180), 1, + ACTIONS(10736), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(7039), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(5212), 1, - anon_sym_LPAREN2, - ACTIONS(5214), 1, - anon_sym_STAR, - ACTIONS(5216), 1, - anon_sym_AMP_AMP, - ACTIONS(5218), 1, - anon_sym_AMP, - STATE(3187), 1, - sym_parameter_list, - STATE(3292), 1, - sym__abstract_declarator, - STATE(2722), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3227), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(4421), 10, + anon_sym___asm, + ACTIONS(7041), 15, 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_RBRACK, anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [46132] = 5, - ACTIONS(3), 1, + anon_sym_try, + [229163] = 12, + ACTIONS(10249), 1, sym_comment, - STATE(2447), 1, - sym_enumerator_list, - STATE(2635), 1, - sym__enum_base_clause, - ACTIONS(3832), 8, + ACTIONS(10632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10634), 1, + anon_sym_AMP_AMP, + ACTIONS(10636), 1, + anon_sym_PIPE, + ACTIONS(10638), 1, + anon_sym_CARET, + ACTIONS(10640), 1, + anon_sym_AMP, + ACTIONS(10738), 1, + anon_sym_LF, + ACTIONS(10614), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10642), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10616), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(10618), 4, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(3834), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + [229208] = 12, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10632), 1, anon_sym_PIPE_PIPE, + ACTIONS(10634), 1, anon_sym_AMP_AMP, + ACTIONS(10636), 1, + anon_sym_PIPE, + ACTIONS(10638), 1, anon_sym_CARET, + ACTIONS(10640), 1, + anon_sym_AMP, + ACTIONS(10740), 1, + anon_sym_LF, + ACTIONS(10614), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10642), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10616), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10618), 4, + anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [46174] = 5, - ACTIONS(3), 1, + anon_sym_LT, + [229253] = 3, + ACTIONS(10249), 1, sym_comment, - ACTIONS(5144), 1, - anon_sym_LBRACK, - STATE(2915), 1, - sym_new_declarator, - ACTIONS(4581), 10, + ACTIONS(10576), 1, + anon_sym_LF, + ACTIONS(10578), 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, - anon_sym_DOT, - ACTIONS(4579), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + [229280] = 12, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10632), 1, anon_sym_PIPE_PIPE, + ACTIONS(10634), 1, anon_sym_AMP_AMP, + ACTIONS(10636), 1, + anon_sym_PIPE, + ACTIONS(10638), 1, anon_sym_CARET, + ACTIONS(10640), 1, + anon_sym_AMP, + ACTIONS(10742), 1, + anon_sym_LF, + ACTIONS(10614), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10642), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10616), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10618), 4, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [46216] = 21, + anon_sym_LT, + [229325] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4176), 1, - anon_sym_COLON_COLON, - ACTIONS(5112), 1, - anon_sym_LPAREN2, - ACTIONS(5364), 1, - sym_identifier, - ACTIONS(5370), 1, - anon_sym_enum, - ACTIONS(5372), 1, - anon_sym_class, - ACTIONS(5374), 1, - anon_sym_struct, - ACTIONS(5376), 1, - anon_sym_union, - ACTIONS(5378), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(5380), 1, - anon_sym_typename, - STATE(1971), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2006), 1, - sym__type_specifier, - STATE(2041), 1, - sym_template_type, - STATE(2078), 1, - sym_qualified_type_identifier, - STATE(3014), 1, - sym_argument_list, - STATE(3897), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(5368), 2, - sym_primitive_type, - sym_auto, - ACTIONS(5366), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2112), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [46290] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(3867), 1, - anon_sym___attribute__, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5154), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5256), 1, - anon_sym_DASH_GT, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - STATE(2725), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5146), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(3149), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [46350] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4176), 1, + ACTIONS(7524), 1, anon_sym_COLON_COLON, - ACTIONS(5112), 1, - anon_sym_LPAREN2, - ACTIONS(5364), 1, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(10744), 1, sym_identifier, - ACTIONS(5370), 1, - anon_sym_enum, - ACTIONS(5372), 1, - anon_sym_class, - ACTIONS(5374), 1, - anon_sym_struct, - ACTIONS(5376), 1, - anon_sym_union, - ACTIONS(5378), 1, - anon_sym_decltype, - ACTIONS(5380), 1, - anon_sym_typename, - STATE(1971), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2011), 1, - sym__type_specifier, - STATE(2041), 1, - sym_template_type, - STATE(2078), 1, - sym_qualified_type_identifier, + ACTIONS(10746), 1, + anon_sym_template, STATE(3017), 1, - sym_argument_list, - STATE(3897), 1, + sym_pointer_type_declarator, + STATE(3018), 1, + sym_template_function, + STATE(3019), 1, + sym_destructor_name, + STATE(3021), 1, + sym_dependent_identifier, + STATE(3022), 1, + sym_qualified_identifier, + STATE(3023), 1, + sym_operator_name, + STATE(6141), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(5368), 2, - sym_primitive_type, - sym_auto, - ACTIONS(5366), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2112), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(8805), 1, + sym_ms_based_modifier, + STATE(8447), 3, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [46424] = 25, - ACTIONS(3), 1, + sym_template_type, + sym_dependent_type_identifier, + [229382] = 3, + ACTIONS(10249), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5288), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(5296), 1, + ACTIONS(10568), 1, + anon_sym_LF, + ACTIONS(10570), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5298), 1, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5302), 1, anon_sym_PIPE, - ACTIONS(5304), 1, anon_sym_CARET, - ACTIONS(5306), 1, anon_sym_AMP, - ACTIONS(5312), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5314), 1, + anon_sym_LT, anon_sym_LT_LT, - ACTIONS(5316), 1, anon_sym_GT_GT, - ACTIONS(5318), 1, - anon_sym_QMARK, - ACTIONS(5382), 1, - anon_sym_GT2, - STATE(2445), 1, - sym_argument_list, - STATE(4397), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5292), 2, + [229409] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8941), 1, + anon_sym_LT, + STATE(3100), 1, + sym_template_argument_list, + ACTIONS(3272), 2, + anon_sym___attribute, + anon_sym_COLON, + ACTIONS(3279), 14, + 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_LBRACE, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [229442] = 10, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10371), 1, + anon_sym_LF, + ACTIONS(10638), 1, + anon_sym_CARET, + ACTIONS(10640), 1, + anon_sym_AMP, + ACTIONS(10614), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, + ACTIONS(10620), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10642), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, + ACTIONS(10373), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(10616), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10618), 4, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - [46506] = 21, + [229483] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4176), 1, - anon_sym_COLON_COLON, - ACTIONS(5112), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8587), 1, + sym_identifier, + ACTIONS(8589), 1, anon_sym_LPAREN2, - ACTIONS(5364), 1, + ACTIONS(8599), 1, + sym_primitive_type, + ACTIONS(8601), 1, + anon_sym_STAR, + ACTIONS(8603), 1, + anon_sym_AMP_AMP, + ACTIONS(8605), 1, + anon_sym_AMP, + STATE(6322), 1, + sym_pointer_type_declarator, + STATE(6556), 1, + sym__type_declarator, + STATE(8727), 1, + sym_ms_based_modifier, + ACTIONS(8597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6320), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [229530] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, sym_identifier, - ACTIONS(5372), 1, - anon_sym_class, - ACTIONS(5374), 1, - anon_sym_struct, - ACTIONS(5376), 1, - anon_sym_union, - ACTIONS(5378), 1, - anon_sym_decltype, - ACTIONS(5384), 1, - anon_sym_enum, - ACTIONS(5386), 1, - anon_sym_typename, - STATE(1971), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2011), 1, - sym__type_specifier, - STATE(2041), 1, - sym_template_type, - STATE(2078), 1, - sym_qualified_type_identifier, - STATE(3137), 1, - sym_argument_list, - STATE(3897), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(5368), 2, + ACTIONS(8535), 1, + anon_sym_LPAREN2, + ACTIONS(8547), 1, sym_primitive_type, - sym_auto, - ACTIONS(5366), 4, + ACTIONS(8559), 1, + anon_sym_STAR, + ACTIONS(8561), 1, + anon_sym_AMP_AMP, + ACTIONS(8563), 1, + anon_sym_AMP, + STATE(2608), 1, + sym__type_declarator, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(8607), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2112), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [46580] = 25, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [229577] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5288), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5290), 1, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(8941), 1, + anon_sym_LT, + STATE(3100), 1, + sym_template_argument_list, + ACTIONS(4529), 2, + anon_sym___attribute, + anon_sym_COLON, + ACTIONS(3113), 14, anon_sym_COMMA, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5298), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5302), 1, - anon_sym_PIPE, - ACTIONS(5304), 1, - anon_sym_CARET, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - ACTIONS(5318), 1, - anon_sym_QMARK, - ACTIONS(5388), 1, - anon_sym_GT2, - STATE(2445), 1, - sym_argument_list, - STATE(4379), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - [46662] = 13, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [229610] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5180), 1, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5530), 1, + anon_sym_LT, + STATE(6287), 1, + sym_template_argument_list, + ACTIONS(5849), 4, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(5212), 1, + anon_sym_COLON, + anon_sym___asm, + ACTIONS(5720), 12, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5220), 1, - anon_sym_STAR, - ACTIONS(5222), 1, - anon_sym_AMP_AMP, - ACTIONS(5224), 1, - anon_sym_AMP, - STATE(3182), 1, - sym_parameter_list, - STATE(3308), 1, - sym__abstract_declarator, - STATE(3192), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3227), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(4589), 10, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [229643] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10062), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10060), 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_DASH_GT, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [46720] = 25, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [229670] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(8533), 1, + sym_identifier, + ACTIONS(8535), 1, anon_sym_LPAREN2, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5288), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5300), 1, + ACTIONS(8547), 1, + sym_primitive_type, + ACTIONS(8553), 1, + anon_sym_STAR, + ACTIONS(8555), 1, anon_sym_AMP_AMP, - ACTIONS(5302), 1, - anon_sym_PIPE, - ACTIONS(5304), 1, - anon_sym_CARET, - ACTIONS(5306), 1, + ACTIONS(8557), 1, anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - ACTIONS(5318), 1, - anon_sym_QMARK, - ACTIONS(5390), 1, - anon_sym_GT2, - STATE(2445), 1, - sym_argument_list, - STATE(4247), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5292), 2, + STATE(2719), 1, + sym_pointer_type_declarator, + STATE(7013), 1, + sym__type_declarator, + STATE(8805), 1, + sym_ms_based_modifier, + ACTIONS(8545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2713), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [229717] = 3, + ACTIONS(7514), 1, + anon_sym_LF, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(7512), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5294), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5308), 2, + 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(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - [46802] = 24, - ACTIONS(3), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [229744] = 12, + ACTIONS(10249), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, + ACTIONS(10632), 1, anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(10634), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, + ACTIONS(10636), 1, anon_sym_PIPE, - ACTIONS(5190), 1, + ACTIONS(10638), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(10640), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5354), 1, - anon_sym_SEMI, - ACTIONS(5392), 1, - anon_sym_COMMA, - ACTIONS(5395), 1, - anon_sym_RBRACE, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, + ACTIONS(10748), 1, + anon_sym_LF, + ACTIONS(10614), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5170), 2, + ACTIONS(10620), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5194), 2, + ACTIONS(10642), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 2, + ACTIONS(10616), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10618), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [46882] = 25, + anon_sym_LT, + [229789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, + ACTIONS(10752), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5288), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5290), 1, + anon_sym___asm, + ACTIONS(10750), 16, anon_sym_COMMA, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5300), 1, - anon_sym_AMP_AMP, - ACTIONS(5302), 1, - anon_sym_PIPE, - ACTIONS(5304), 1, - anon_sym_CARET, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - ACTIONS(5318), 1, - anon_sym_QMARK, - ACTIONS(5397), 1, + 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, - STATE(2445), 1, - sym_argument_list, - STATE(4324), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, + anon_sym_try, + anon_sym_requires, + [229816] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2520), 1, + anon_sym_TILDE, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6763), 1, + anon_sym_COLON_COLON, + ACTIONS(8553), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - [46964] = 4, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + anon_sym_template, + STATE(3017), 1, + sym_pointer_type_declarator, + STATE(3018), 1, + sym_template_function, + STATE(3019), 1, + sym_destructor_name, + STATE(3021), 1, + sym_dependent_identifier, + STATE(3022), 1, + sym_qualified_identifier, + STATE(3023), 1, + sym_operator_name, + STATE(6154), 1, + sym__scope_resolution, + STATE(8805), 1, + sym_ms_based_modifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [229873] = 4, ACTIONS(3), 1, sym_comment, - STATE(2605), 1, - sym_enumerator_list, - ACTIONS(3487), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3489), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(4647), 1, + anon_sym___attribute, + ACTIONS(10754), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(4649), 15, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [47004] = 23, + anon_sym_try, + anon_sym_requires, + [229901] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(8145), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(8159), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(8629), 1, + anon_sym_STAR, + ACTIONS(8631), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(8633), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5401), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5399), 2, + STATE(3798), 1, + sym_parameter_list, + STATE(6124), 1, + sym__function_declarator_seq, + STATE(6936), 1, + sym__abstract_declarator, + ACTIONS(8549), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [229943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4247), 1, + anon_sym___attribute, + ACTIONS(4249), 17, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - [47082] = 21, + anon_sym___attribute__, + 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, + [229969] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2550), 1, - anon_sym_decltype, - ACTIONS(4104), 1, - anon_sym_COLON_COLON, - ACTIONS(5112), 1, + ACTIONS(9398), 1, + anon_sym___attribute, + ACTIONS(9551), 1, + anon_sym_requires, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5258), 1, - sym_identifier, - ACTIONS(5260), 1, - anon_sym_enum, - ACTIONS(5262), 1, - anon_sym_class, - ACTIONS(5264), 1, - anon_sym_struct, - ACTIONS(5266), 1, - anon_sym_union, - ACTIONS(5268), 1, - anon_sym_typename, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, - sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(2640), 1, - sym__type_specifier, - STATE(3070), 1, - sym_argument_list, - STATE(3909), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [47156] = 24, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [230003] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(9398), 1, + anon_sym___attribute, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [230037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1875), 1, + anon_sym___attribute, + ACTIONS(1873), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5403), 1, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [230063] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(9589), 1, + anon_sym___attribute, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 10, anon_sym_COMMA, - ACTIONS(5405), 1, - anon_sym_RBRACE, - STATE(2120), 1, - sym_argument_list, - STATE(4323), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [47236] = 25, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [230097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4217), 1, + anon_sym___attribute, + ACTIONS(4219), 17, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4953), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5288), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5290), 1, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [230123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym___attribute, + ACTIONS(1877), 17, anon_sym_COMMA, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5298), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5302), 1, - anon_sym_PIPE, - ACTIONS(5304), 1, - anon_sym_CARET, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - ACTIONS(5318), 1, - anon_sym_QMARK, - ACTIONS(5407), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - STATE(2445), 1, - sym_argument_list, - STATE(4409), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - [47318] = 24, + anon_sym_try, + anon_sym_requires, + [230149] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10066), 1, + anon_sym___attribute, + ACTIONS(10759), 1, + anon_sym_requires, + ACTIONS(10756), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6306), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10064), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [230183] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10762), 1, + anon_sym_LBRACK_LBRACK, + STATE(6165), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6868), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + anon_sym___asm, + ACTIONS(6870), 12, anon_sym_COMMA, - ACTIONS(5346), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - ACTIONS(5409), 1, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [230213] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(9859), 1, + anon_sym___attribute, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 10, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [47398] = 25, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [230247] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4953), 1, + ACTIONS(10767), 1, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5288), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5290), 1, + STATE(6345), 1, + sym_parameter_list, + ACTIONS(6765), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(6232), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6767), 10, anon_sym_COMMA, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5298), 1, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [230283] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4243), 1, + anon_sym___attribute, + ACTIONS(4245), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5302), 1, - anon_sym_PIPE, - ACTIONS(5304), 1, - anon_sym_CARET, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - ACTIONS(5318), 1, - anon_sym_QMARK, - ACTIONS(5411), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - STATE(2445), 1, - sym_argument_list, - STATE(4320), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - [47480] = 21, + anon_sym_try, + anon_sym_requires, + [230309] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2550), 1, - anon_sym_decltype, - ACTIONS(4104), 1, + ACTIONS(3009), 1, anon_sym_COLON_COLON, - ACTIONS(5112), 1, - anon_sym_LPAREN2, - ACTIONS(5258), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6271), 1, sym_identifier, - ACTIONS(5260), 1, - anon_sym_enum, - ACTIONS(5262), 1, - anon_sym_class, - ACTIONS(5264), 1, - anon_sym_struct, - ACTIONS(5266), 1, - anon_sym_union, - ACTIONS(5268), 1, - anon_sym_typename, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, + ACTIONS(10769), 1, + anon_sym_virtual, + STATE(1312), 1, sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(2653), 1, - sym__type_specifier, - STATE(3127), 1, - sym_argument_list, - STATE(3909), 1, + STATE(6755), 1, + sym_access_specifier, + STATE(6919), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7448), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [47554] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5413), 1, - anon_sym_COMMA, - ACTIONS(5415), 1, - anon_sym_RBRACE, - STATE(2120), 1, - sym_argument_list, - STATE(4190), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [47634] = 21, + sym_dependent_type_identifier, + ACTIONS(10771), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [230357] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(4176), 1, + ACTIONS(3009), 1, anon_sym_COLON_COLON, - ACTIONS(5112), 1, - anon_sym_LPAREN2, - ACTIONS(5364), 1, - sym_identifier, - ACTIONS(5372), 1, - anon_sym_class, - ACTIONS(5374), 1, - anon_sym_struct, - ACTIONS(5376), 1, - anon_sym_union, - ACTIONS(5378), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(5384), 1, - anon_sym_enum, - ACTIONS(5386), 1, - anon_sym_typename, - STATE(1971), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2006), 1, - sym__type_specifier, - STATE(2041), 1, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(10773), 1, + anon_sym_virtual, + STATE(1312), 1, sym_template_type, - STATE(2078), 1, - sym_qualified_type_identifier, - STATE(3124), 1, - sym_argument_list, - STATE(3897), 1, + STATE(6820), 1, + sym_access_specifier, + STATE(6919), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(5368), 2, - sym_primitive_type, - sym_auto, - ACTIONS(5366), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2112), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(5439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7913), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [47708] = 25, + sym_dependent_type_identifier, + ACTIONS(10771), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [230405] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(111), 1, + anon_sym___asm, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(10190), 1, anon_sym_LPAREN2, - ACTIONS(4953), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5288), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5300), 1, - anon_sym_AMP_AMP, - ACTIONS(5302), 1, - anon_sym_PIPE, - ACTIONS(5304), 1, - anon_sym_CARET, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - ACTIONS(5318), 1, - anon_sym_QMARK, - ACTIONS(5417), 1, - anon_sym_GT2, - STATE(2445), 1, + ACTIONS(10198), 1, + anon_sym_EQ, + ACTIONS(10278), 1, + anon_sym_SEMI, + STATE(3277), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(7541), 1, + sym_gnu_asm_expression, + STATE(7542), 1, + aux_sym_declaration_repeat1, + ACTIONS(10200), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8148), 2, sym_argument_list, - STATE(4378), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - [47790] = 24, + sym_initializer_list, + [230457] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5348), 1, + ACTIONS(9859), 1, + anon_sym___attribute, + ACTIONS(9902), 1, + anon_sym_requires, + ACTIONS(9890), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 10, anon_sym_COMMA, - ACTIONS(5419), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - STATE(4301), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [47870] = 24, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [230491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(4213), 1, + anon_sym___attribute, + ACTIONS(4215), 17, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5348), 1, - anon_sym_COMMA, - ACTIONS(5421), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - STATE(4408), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [47950] = 24, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [230517] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10245), 1, + anon_sym___attribute, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6196), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(10243), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [230547] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(7832), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5348), 1, + STATE(5718), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9398), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 7, anon_sym_COMMA, - ACTIONS(5423), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - STATE(4234), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [48030] = 24, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [230585] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(7832), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5348), 1, + STATE(5730), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9589), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 7, anon_sym_COMMA, - ACTIONS(5425), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - STATE(4370), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [48110] = 25, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [230623] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(7832), 1, anon_sym_DASH_GT, - ACTIONS(5288), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5290), 1, + STATE(5731), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9859), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 7, anon_sym_COMMA, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5300), 1, - anon_sym_AMP_AMP, - ACTIONS(5302), 1, - anon_sym_PIPE, - ACTIONS(5304), 1, - anon_sym_CARET, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - ACTIONS(5318), 1, - anon_sym_QMARK, - ACTIONS(5427), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_GT2, - STATE(2445), 1, - sym_argument_list, - STATE(4429), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - [48192] = 24, + [230661] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(7832), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5429), 1, + STATE(5732), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10062), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 7, anon_sym_COMMA, - ACTIONS(5431), 1, - anon_sym_RBRACE, - STATE(2120), 1, - sym_argument_list, - STATE(4375), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [48272] = 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [230699] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3009), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(10775), 1, + anon_sym_virtual, + STATE(1312), 1, + sym_template_type, + STATE(6828), 1, + sym_access_specifier, + STATE(6919), 1, + sym__scope_resolution, + STATE(6169), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7263), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(10771), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [230747] = 3, ACTIONS(3), 1, sym_comment, - STATE(2552), 1, - sym_enumerator_list, - ACTIONS(3446), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3448), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(4213), 1, + anon_sym___attribute, + ACTIONS(4215), 17, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [48312] = 24, + anon_sym_try, + anon_sym_requires, + [230773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(4255), 1, + anon_sym___attribute, + ACTIONS(4257), 17, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5433), 1, - anon_sym_COMMA, - ACTIONS(5435), 1, - anon_sym_RBRACE, - STATE(2120), 1, - sym_argument_list, - STATE(4383), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [48392] = 24, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [230799] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(7832), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5348), 1, + ACTIONS(9525), 1, + anon_sym_requires, + STATE(5746), 1, + sym_trailing_return_type, + ACTIONS(9398), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 7, anon_sym_COMMA, - ACTIONS(5437), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - STATE(4314), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [48472] = 24, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [230837] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10767), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5348), 1, + STATE(6345), 1, + sym_parameter_list, + ACTIONS(6731), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(6232), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6733), 10, anon_sym_COMMA, - ACTIONS(5439), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - STATE(4195), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [48552] = 22, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [230873] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(7832), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5441), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [48627] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(9887), 1, + anon_sym_requires, + STATE(5751), 1, + sym_trailing_return_type, + ACTIONS(9859), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(9861), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 7, anon_sym_COMMA, - ACTIONS(5443), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [48704] = 17, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [230911] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(7832), 1, anon_sym_DASH_GT, - ACTIONS(4691), 1, - anon_sym_PIPE, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5242), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4689), 7, - anon_sym_DOT_DOT_DOT, + ACTIONS(10095), 1, + anon_sym_requires, + STATE(5753), 1, + sym_trailing_return_type, + ACTIONS(10062), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(10092), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 7, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [48769] = 16, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [230949] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(111), 1, + anon_sym___asm, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(10190), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5232), 1, - anon_sym_SLASH, - STATE(2120), 1, + ACTIONS(10198), 1, + anon_sym_EQ, + ACTIONS(10272), 1, + anon_sym_SEMI, + STATE(3277), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(7558), 1, + sym_gnu_asm_expression, + STATE(7559), 1, + aux_sym_declaration_repeat1, + ACTIONS(10200), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8148), 2, sym_argument_list, - ACTIONS(4691), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4689), 7, - 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, - [48832] = 11, + sym_initializer_list, + [231001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 1, + ACTIONS(4213), 1, + anon_sym___attribute, + ACTIONS(4215), 17, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5174), 1, - anon_sym_STAR, - ACTIONS(5176), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(5178), 1, - anon_sym_AMP, - ACTIONS(5180), 1, - anon_sym_LBRACK, - ACTIONS(5447), 1, - anon_sym_const, - STATE(3140), 1, - sym_parameter_list, - STATE(3267), 1, - sym__abstract_declarator, - STATE(3227), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5445), 16, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [48885] = 11, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [231027] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(10062), 1, + anon_sym___attribute, + ACTIONS(10780), 1, + anon_sym_requires, + ACTIONS(10777), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6304), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4953), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5296), 1, - anon_sym_SLASH, - STATE(2445), 1, - sym_argument_list, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4691), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(4689), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, + anon_sym_EQ, anon_sym_GT2, - [48938] = 23, + anon_sym_try, + [231061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(4181), 1, + anon_sym___attribute, + ACTIONS(4183), 17, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5449), 1, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [49015] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5288), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5300), 1, - anon_sym_AMP_AMP, - ACTIONS(5302), 1, - anon_sym_PIPE, - ACTIONS(5304), 1, - anon_sym_CARET, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - ACTIONS(5318), 1, - anon_sym_QMARK, - STATE(2445), 1, - sym_argument_list, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5451), 2, - anon_sym_COMMA, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - [49092] = 15, + anon_sym_try, + anon_sym_requires, + [231087] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(10066), 1, + anon_sym___attribute, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6306), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10064), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5232), 1, - anon_sym_SLASH, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4691), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4689), 9, - 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_RBRACK, - anon_sym_QMARK, - [49153] = 23, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [231121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(7039), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + anon_sym___asm, + ACTIONS(7041), 15, anon_sym_COMMA, - ACTIONS(5453), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [49230] = 22, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [231147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5288), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5300), 1, - anon_sym_AMP_AMP, - ACTIONS(5302), 1, - anon_sym_PIPE, - ACTIONS(5304), 1, - anon_sym_CARET, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4803), 3, + ACTIONS(4251), 1, + anon_sym___attribute, + ACTIONS(4253), 17, anon_sym_COMMA, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - [49305] = 13, + anon_sym_try, + anon_sym_requires, + [231173] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5180), 1, - anon_sym_LBRACK, - ACTIONS(5212), 1, - anon_sym_LPAREN2, - ACTIONS(5455), 1, - anon_sym_STAR, - ACTIONS(5457), 1, + ACTIONS(4561), 1, + anon_sym___attribute, + ACTIONS(10754), 2, anon_sym_AMP_AMP, - ACTIONS(5459), 1, - anon_sym_AMP, - STATE(3198), 1, - sym_parameter_list, - STATE(3381), 1, - sym__abstract_declarator, - STATE(3192), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3227), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(4589), 9, + anon_sym_and, + ACTIONS(10783), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(4563), 13, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_DASH_GT, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [49362] = 13, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [231203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5232), 1, - anon_sym_SLASH, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4691), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4689), 11, - anon_sym_DOT_DOT_DOT, + ACTIONS(4221), 1, + anon_sym___attribute, + ACTIONS(4223), 17, 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_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [49419] = 23, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [231229] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9589), 1, + anon_sym___attribute, + ACTIONS(9707), 1, + anon_sym_requires, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [231263] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10300), 1, + anon_sym___attribute, + ACTIONS(10785), 2, + anon_sym_final, + anon_sym_override, + STATE(6196), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(10298), 13, anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, anon_sym_COMMA, - ACTIONS(5461), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [231293] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5530), 1, anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [49496] = 23, + STATE(6287), 1, + sym_template_argument_list, + ACTIONS(7045), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7047), 13, + 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, + [231323] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3009), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(10788), 1, + anon_sym_virtual, + STATE(1312), 1, + sym_template_type, + STATE(6829), 1, + sym_access_specifier, + STATE(6919), 1, + sym__scope_resolution, + STATE(6170), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7714), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(10771), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [231371] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(111), 1, + anon_sym___asm, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(10190), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5463), 1, + ACTIONS(10198), 1, + anon_sym_EQ, + ACTIONS(10284), 1, anon_sym_SEMI, - STATE(2120), 1, + STATE(3277), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(7845), 1, + sym_gnu_asm_expression, + STATE(7846), 1, + aux_sym_declaration_repeat1, + ACTIONS(10200), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8148), 2, sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [49573] = 22, + sym_initializer_list, + [231423] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(111), 1, + anon_sym___asm, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(10190), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - STATE(2120), 1, + ACTIONS(10198), 1, + anon_sym_EQ, + ACTIONS(10262), 1, + anon_sym_SEMI, + STATE(3277), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(7780), 1, + sym_gnu_asm_expression, + STATE(7786), 1, + aux_sym_declaration_repeat1, + ACTIONS(10200), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8148), 2, sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5399), 2, + sym_initializer_list, + [231475] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(10062), 1, + anon_sym___attribute, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6304), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 10, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - [49648] = 22, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [231509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(2628), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5465), 2, + anon_sym___asm, + ACTIONS(2630), 15, anon_sym_COMMA, - anon_sym_RPAREN, - [49723] = 9, + 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, + [231535] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4953), 1, + ACTIONS(10767), 1, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4637), 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, - anon_sym_GT_GT, - ACTIONS(4635), 13, - anon_sym_DOT_DOT_DOT, + STATE(6345), 1, + sym_parameter_list, + ACTIONS(6739), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(6232), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6741), 10, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [231571] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4225), 1, + anon_sym___attribute, + ACTIONS(4227), 17, + 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_LT_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [49772] = 23, + anon_sym_try, + anon_sym_requires, + [231597] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10767), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5467), 1, + STATE(6345), 1, + sym_parameter_list, + ACTIONS(6735), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(6232), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6737), 10, anon_sym_COMMA, - ACTIONS(5469), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [49849] = 23, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [231633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4229), 1, + anon_sym___attribute, + ACTIONS(4231), 17, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5288), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5298), 1, anon_sym_PIPE_PIPE, - ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5302), 1, - anon_sym_PIPE, - ACTIONS(5304), 1, - anon_sym_CARET, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - ACTIONS(5318), 1, - anon_sym_QMARK, - STATE(2445), 1, - sym_argument_list, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5465), 2, - anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - [49926] = 12, + anon_sym_try, + anon_sym_requires, + [231659] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(111), 1, + anon_sym___asm, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(10190), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5232), 1, - anon_sym_SLASH, - STATE(2120), 1, + ACTIONS(10696), 1, + anon_sym_SEMI, + ACTIONS(10790), 1, + anon_sym_EQ, + STATE(3277), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(7549), 1, + sym_gnu_asm_expression, + STATE(7550), 1, + aux_sym_declaration_repeat1, + STATE(7720), 1, + sym_initializer_list, + STATE(8148), 1, sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4691), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4689), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(10200), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [231713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7235), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7237), 15, 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACK, - anon_sym_QMARK, - [49981] = 3, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [231739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4599), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4597), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2624), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(2626), 15, 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_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + 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_GT2, - sym_literal_suffix, - [50018] = 23, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [231765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(4233), 1, + anon_sym___attribute, + ACTIONS(4235), 17, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5471), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [50095] = 23, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [231791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(4237), 1, + anon_sym___attribute, + ACTIONS(4239), 17, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5473), 1, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [50172] = 23, + anon_sym___attribute__, + 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, + [231817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(4209), 1, + anon_sym___attribute, + ACTIONS(4211), 17, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5475), 1, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [50249] = 23, + anon_sym___attribute__, + 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, + [231843] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(111), 1, + anon_sym___asm, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(10190), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5477), 1, + ACTIONS(10198), 1, + anon_sym_EQ, + ACTIONS(10696), 1, anon_sym_SEMI, - STATE(2120), 1, + STATE(3277), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(7549), 1, + sym_gnu_asm_expression, + STATE(7550), 1, + aux_sym_declaration_repeat1, + ACTIONS(10200), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8148), 2, sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [50326] = 23, + sym_initializer_list, + [231895] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10767), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + STATE(6345), 1, + sym_parameter_list, + ACTIONS(6719), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(6232), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6721), 10, anon_sym_COMMA, - ACTIONS(5479), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [50403] = 23, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [231931] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(7832), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(9608), 1, + anon_sym_requires, + STATE(5747), 1, + sym_trailing_return_type, + ACTIONS(9589), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 7, anon_sym_COMMA, - ACTIONS(5481), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [50480] = 23, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [231969] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(8760), 1, + sym_identifier, + ACTIONS(8762), 1, + anon_sym_STAR, + ACTIONS(8764), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(8766), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5483), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, + STATE(6981), 1, + sym__field_declarator, + STATE(7110), 1, + sym_operator_name, + STATE(8704), 1, + sym_ms_based_modifier, + STATE(6712), 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, + [232012] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(3307), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, + ACTIONS(3309), 1, + anon_sym_AMP_AMP, + ACTIONS(3311), 1, + anon_sym_AMP, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10792), 1, anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [50557] = 23, + ACTIONS(10794), 1, + anon_sym_LBRACE, + STATE(3336), 1, + sym_parameter_list, + STATE(4575), 1, + sym_compound_statement, + STATE(6277), 1, + sym_template_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7453), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [232061] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(111), 1, + anon_sym___asm, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(10190), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5485), 1, + ACTIONS(10198), 1, + anon_sym_EQ, + STATE(3277), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(8116), 1, + sym_gnu_asm_expression, + ACTIONS(10200), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10796), 2, anon_sym_COMMA, - ACTIONS(5487), 1, - anon_sym_RPAREN, - STATE(2120), 1, + anon_sym_SEMI, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8148), 2, sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [50634] = 22, + sym_initializer_list, + [232108] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9398), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [232141] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + STATE(6165), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10800), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5489), 2, + anon_sym___asm, + ACTIONS(10798), 11, anon_sym_COMMA, anon_sym_RPAREN, - [50709] = 11, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [232170] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(5174), 1, + ACTIONS(3307), 1, anon_sym_STAR, - ACTIONS(5176), 1, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5178), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5180), 1, + ACTIONS(8408), 1, anon_sym_LBRACK, - ACTIONS(5493), 1, - anon_sym_const, - STATE(3140), 1, + ACTIONS(10792), 1, + anon_sym_LT, + ACTIONS(10802), 1, + anon_sym_LBRACE, + STATE(3336), 1, sym_parameter_list, - STATE(3288), 1, + STATE(3874), 1, + sym_compound_statement, + STATE(6248), 1, + sym_template_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7234), 1, sym__abstract_declarator, - STATE(3227), 5, + STATE(7433), 1, + sym_abstract_function_declarator, + STATE(6365), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, - sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5491), 16, - anon_sym_COMMA, + [232219] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7564), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9864), 1, + anon_sym_requires, + STATE(5816), 1, + sym_trailing_return_type, + ACTIONS(9861), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 7, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, anon_sym_COLON, + anon_sym_try, + [232256] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7564), 1, anon_sym_DASH_GT, + ACTIONS(9859), 1, + anon_sym_LBRACK, + STATE(5857), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [50762] = 23, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [232293] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(10804), 1, + sym_identifier, + ACTIONS(6508), 3, anon_sym_COMMA, - ACTIONS(5495), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [50839] = 13, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(6224), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(10807), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10810), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [232324] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5180), 1, - anon_sym_LBRACK, - ACTIONS(5212), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(5455), 1, + ACTIONS(3307), 1, anon_sym_STAR, - ACTIONS(5457), 1, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5459), 1, + ACTIONS(3311), 1, anon_sym_AMP, - STATE(3198), 1, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10792), 1, + anon_sym_LT, + ACTIONS(10813), 1, + anon_sym_LBRACE, + STATE(2879), 1, + sym_compound_statement, + STATE(3336), 1, sym_parameter_list, - STATE(3386), 1, + STATE(6260), 1, + sym_template_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7216), 1, + sym_abstract_function_declarator, + STATE(7234), 1, sym__abstract_declarator, - STATE(2792), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3227), 5, + STATE(6365), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, - sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(4421), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + [232373] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7564), 1, anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9403), 1, + anon_sym_requires, + STATE(5825), 1, + sym_trailing_return_type, + ACTIONS(9400), 2, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [50896] = 23, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [232410] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5497), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10792), 1, anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [50973] = 23, + ACTIONS(10815), 1, + anon_sym_LBRACE, + STATE(3336), 1, + sym_parameter_list, + STATE(5877), 1, + sym_compound_statement, + STATE(6239), 1, + sym_template_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7281), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [232459] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, + anon_sym_AMP_AMP, + ACTIONS(3311), 1, + anon_sym_AMP, + ACTIONS(8408), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(10792), 1, + anon_sym_LT, + ACTIONS(10817), 1, + anon_sym_LBRACE, + STATE(938), 1, + sym_compound_statement, + STATE(3336), 1, + sym_parameter_list, + STATE(6255), 1, + sym_template_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7387), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [232508] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10792), 1, + anon_sym_LT, + STATE(938), 1, + sym_compound_statement, + STATE(3336), 1, + sym_parameter_list, + STATE(6272), 1, + sym_template_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7399), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [232557] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6257), 1, + anon_sym_LBRACE, + ACTIONS(6277), 1, + sym_identifier, + ACTIONS(6279), 1, + anon_sym_COLON_COLON, + STATE(2448), 1, + sym_template_type, + STATE(2470), 1, + sym_field_declaration_list, + STATE(6899), 1, + sym__scope_resolution, + STATE(7286), 1, + sym_virtual_specifier, + STATE(8335), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2442), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [232606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6677), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6675), 14, anon_sym_COMMA, - ACTIONS(5499), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [51050] = 23, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [232631] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + STATE(6165), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6858), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + anon_sym___asm, + ACTIONS(6860), 11, anon_sym_COMMA, - ACTIONS(5501), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [51127] = 23, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [232660] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10062), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 8, anon_sym_COMMA, - ACTIONS(5503), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [51204] = 23, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [232693] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10819), 1, + anon_sym_requires, + ACTIONS(10062), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(10092), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 8, anon_sym_COMMA, - ACTIONS(5505), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [51281] = 23, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [232726] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5507), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10792), 1, anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [51358] = 23, + ACTIONS(10822), 1, + anon_sym_LBRACE, + STATE(3336), 1, + sym_parameter_list, + STATE(6212), 1, + sym_compound_statement, + STATE(6246), 1, + sym_template_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7508), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [232775] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, + sym_template_type, + STATE(1414), 1, + sym_field_declaration_list, + STATE(6933), 1, + sym__scope_resolution, + STATE(7397), 1, + sym_virtual_specifier, + STATE(8274), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1505), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [232824] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7564), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5509), 1, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9594), 1, + anon_sym_requires, + STATE(5890), 1, + sym_trailing_return_type, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 7, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [51435] = 20, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [232861] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, + ACTIONS(3311), 1, anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10792), 1, anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4697), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [51506] = 23, + ACTIONS(10824), 1, + anon_sym_LBRACE, + STATE(3336), 1, + sym_parameter_list, + STATE(3568), 1, + sym_compound_statement, + STATE(6281), 1, + sym_template_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7411), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [232910] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5511), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [51583] = 23, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10815), 1, + anon_sym_LBRACE, + ACTIONS(10826), 1, + anon_sym_requires, + STATE(3336), 1, + sym_parameter_list, + STATE(5864), 1, + sym_compound_statement, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6501), 1, + sym_requires_clause, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7304), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [232959] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5513), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10792), 1, anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [51660] = 9, + ACTIONS(10828), 1, + anon_sym_LBRACE, + STATE(3336), 1, + sym_parameter_list, + STATE(3707), 1, + sym_compound_statement, + STATE(6284), 1, + sym_template_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7404), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [233008] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(8708), 1, + sym_identifier, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4691), 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, - anon_sym_GT_GT, - ACTIONS(4689), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8712), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8714), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_GT2, - [51709] = 23, + ACTIONS(8716), 1, + anon_sym_AMP, + STATE(6403), 1, + sym__field_declarator, + STATE(6652), 1, + sym_operator_name, + STATE(8436), 1, + sym_ms_based_modifier, + STATE(6712), 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, + [233051] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6293), 1, + sym_identifier, + ACTIONS(6295), 1, + anon_sym_COLON_COLON, + ACTIONS(6297), 1, + anon_sym_LBRACE, + STATE(3178), 1, + sym_template_type, + STATE(3782), 1, + sym_field_declaration_list, + STATE(6893), 1, + sym__scope_resolution, + STATE(7417), 1, + sym_virtual_specifier, + STATE(8023), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(3154), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [233100] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10830), 1, + sym_identifier, + ACTIONS(6501), 3, anon_sym_COMMA, - ACTIONS(5515), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [51786] = 23, + anon_sym_COLON, + STATE(6279), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(10832), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10834), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [233131] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, + sym_template_type, + STATE(1414), 1, + sym_field_declaration_list, + STATE(6901), 1, + sym__scope_resolution, + STATE(7397), 1, + sym_virtual_specifier, + STATE(8274), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1505), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [233180] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7564), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(10062), 1, + anon_sym_LBRACK, + ACTIONS(10202), 1, + anon_sym_requires, + STATE(5849), 1, + sym_trailing_return_type, + ACTIONS(10092), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [233217] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5517), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [51863] = 20, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10822), 1, + anon_sym_LBRACE, + ACTIONS(10826), 1, + anon_sym_requires, + STATE(3336), 1, + sym_parameter_list, + STATE(6211), 1, + sym_compound_statement, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6464), 1, + sym_requires_clause, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7313), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [233266] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7564), 1, anon_sym_DASH_GT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4769), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [51934] = 21, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(5826), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [233303] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5300), 1, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5302), 1, - anon_sym_PIPE, - ACTIONS(5304), 1, - anon_sym_CARET, - ACTIONS(5306), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4769), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - [52007] = 23, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10802), 1, + anon_sym_LBRACE, + ACTIONS(10826), 1, + anon_sym_requires, + STATE(3336), 1, + sym_parameter_list, + STATE(3884), 1, + sym_compound_statement, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6420), 1, + sym_requires_clause, + STATE(7226), 1, + sym_abstract_function_declarator, + STATE(7234), 1, + sym__abstract_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [233352] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5519), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [52084] = 23, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10826), 1, + anon_sym_requires, + ACTIONS(10836), 1, + anon_sym_LBRACE, + STATE(3336), 1, + sym_parameter_list, + STATE(4169), 1, + sym_compound_statement, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6422), 1, + sym_requires_clause, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7492), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [233401] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3313), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6323), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1414), 1, + sym_field_declaration_list, + STATE(6924), 1, + sym__scope_resolution, + STATE(7397), 1, + sym_virtual_specifier, + STATE(8274), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1426), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [233450] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9589), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5521), 1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 8, anon_sym_COMMA, - ACTIONS(5523), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [52161] = 23, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [233483] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6317), 1, + sym_identifier, + ACTIONS(6319), 1, + anon_sym_COLON_COLON, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(3981), 1, + sym_template_type, + STATE(4380), 1, + sym_field_declaration_list, + STATE(6907), 1, + sym__scope_resolution, + STATE(7514), 1, + sym_virtual_specifier, + STATE(7979), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(3913), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [233532] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6257), 1, + anon_sym_LBRACE, + ACTIONS(6267), 1, + sym_identifier, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + STATE(2448), 1, + sym_template_type, + STATE(2470), 1, + sym_field_declaration_list, + STATE(6917), 1, + sym__scope_resolution, + STATE(7286), 1, + sym_virtual_specifier, + STATE(8335), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2442), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [233581] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(7838), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(9398), 1, + anon_sym___attribute, + STATE(6161), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 7, anon_sym_COMMA, - ACTIONS(5525), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [52238] = 23, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [233618] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5527), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [52315] = 23, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, + anon_sym_LBRACE, + ACTIONS(10826), 1, + anon_sym_requires, + STATE(947), 1, + sym_compound_statement, + STATE(3336), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6461), 1, + sym_requires_clause, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7497), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [233667] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(7838), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym___attribute, + STATE(6166), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + anon_sym_EQ, + anon_sym_GT2, + [233704] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(7838), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(9859), 1, + anon_sym___attribute, + STATE(6201), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 7, anon_sym_COMMA, - ACTIONS(5529), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [52392] = 23, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [233741] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10838), 1, + anon_sym_requires, + ACTIONS(10066), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(10104), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6105), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10064), 8, anon_sym_COMMA, - ACTIONS(5531), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [52469] = 23, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [233774] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(8708), 1, + sym_identifier, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(8712), 1, + anon_sym_STAR, + ACTIONS(8714), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(8716), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5533), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [52546] = 23, + STATE(6489), 1, + sym__field_declarator, + STATE(6652), 1, + sym_operator_name, + STATE(8436), 1, + sym_ms_based_modifier, + STATE(6712), 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, + [233817] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5535), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [52623] = 23, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10813), 1, + anon_sym_LBRACE, + ACTIONS(10826), 1, + anon_sym_requires, + STATE(2853), 1, + sym_compound_statement, + STATE(3336), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6478), 1, + sym_requires_clause, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7373), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [233866] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6303), 1, + anon_sym_COLON_COLON, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3037), 1, + sym_template_type, + STATE(3487), 1, + sym_field_declaration_list, + STATE(6904), 1, + sym__scope_resolution, + STATE(7296), 1, + sym_virtual_specifier, + STATE(8348), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(3028), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [233915] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6281), 1, + sym_identifier, + ACTIONS(6283), 1, + anon_sym_COLON_COLON, + ACTIONS(6285), 1, + anon_sym_LBRACE, + STATE(2938), 1, + sym_template_type, + STATE(3052), 1, + sym_field_declaration_list, + STATE(6895), 1, + sym__scope_resolution, + STATE(7374), 1, + sym_virtual_specifier, + STATE(8107), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2821), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [233964] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6311), 1, + sym_identifier, + ACTIONS(6313), 1, + anon_sym_COLON_COLON, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(4653), 1, + sym_template_type, + STATE(5285), 1, + sym_field_declaration_list, + STATE(6906), 1, + sym__scope_resolution, + STATE(7410), 1, + sym_virtual_specifier, + STATE(8072), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [234013] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(7836), 1, + anon_sym_requires, + ACTIONS(7838), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(10062), 1, + anon_sym___attribute, + STATE(6190), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6304), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 7, anon_sym_COMMA, - ACTIONS(5537), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [52700] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4495), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + anon_sym_EQ, + anon_sym_GT2, + [234050] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6285), 1, + anon_sym_LBRACE, + ACTIONS(6307), 1, + sym_identifier, + ACTIONS(6309), 1, + anon_sym_COLON_COLON, + STATE(2938), 1, + sym_template_type, + STATE(3052), 1, + sym_field_declaration_list, + STATE(6909), 1, + sym__scope_resolution, + STATE(7374), 1, + sym_virtual_specifier, + STATE(8107), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2821), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [234099] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7838), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(9398), 1, + anon_sym___attribute, + ACTIONS(9551), 1, + anon_sym_requires, + STATE(6195), 1, + sym_trailing_return_type, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 7, anon_sym_COMMA, - ACTIONS(5539), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [52777] = 23, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [234136] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(8408), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(8750), 1, + anon_sym_STAR, + ACTIONS(8752), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(8754), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5541), 1, + STATE(3371), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7004), 1, + sym__abstract_declarator, + ACTIONS(8549), 4, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [52854] = 23, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [234177] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(7838), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(9589), 1, + anon_sym___attribute, + ACTIONS(9707), 1, + anon_sym_requires, + STATE(6172), 1, + sym_trailing_return_type, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 7, anon_sym_COMMA, - ACTIONS(5543), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [52931] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4727), 1, anon_sym_LPAREN2, - ACTIONS(4953), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5300), 1, - anon_sym_AMP_AMP, - ACTIONS(5302), 1, - anon_sym_PIPE, - ACTIONS(5304), 1, - anon_sym_CARET, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4731), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, + anon_sym_EQ, anon_sym_GT2, - [53004] = 23, + [234214] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(7838), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(9859), 1, + anon_sym___attribute, + ACTIONS(9902), 1, + anon_sym_requires, + STATE(6188), 1, + sym_trailing_return_type, + ACTIONS(9890), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 7, anon_sym_COMMA, - ACTIONS(5545), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [234251] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + ACTIONS(6299), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, + sym_template_type, + STATE(1414), 1, + sym_field_declaration_list, + STATE(6946), 1, + sym__scope_resolution, + STATE(7397), 1, + sym_virtual_specifier, + STATE(8274), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1505), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [234300] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [53081] = 23, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10841), 1, + anon_sym_AMP, + ACTIONS(10843), 1, + sym_this, + STATE(6117), 1, + sym__scope_resolution, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7830), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [234343] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5547), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [53158] = 23, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10826), 1, + anon_sym_requires, + STATE(947), 1, + sym_compound_statement, + STATE(3336), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6510), 1, + sym_requires_clause, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7423), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [234392] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7564), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym_LBRACK, + STATE(5809), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 7, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [234429] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10066), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6105), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10064), 8, anon_sym_COMMA, - ACTIONS(5549), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [234462] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6259), 1, + sym_identifier, + ACTIONS(6261), 1, + anon_sym_COLON_COLON, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(2972), 1, + sym_template_type, + STATE(3382), 1, + sym_field_declaration_list, + STATE(6912), 1, + sym__scope_resolution, + STATE(7320), 1, + sym_virtual_specifier, + STATE(8247), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2984), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [234511] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5534), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [53235] = 23, + ACTIONS(10331), 1, + anon_sym_COLON_COLON, + ACTIONS(10841), 1, + anon_sym_AMP, + ACTIONS(10845), 1, + sym_this, + STATE(6117), 1, + sym__scope_resolution, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(8234), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [234554] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10794), 1, + anon_sym_LBRACE, + ACTIONS(10826), 1, + anon_sym_requires, + STATE(3336), 1, + sym_parameter_list, + STATE(4540), 1, + sym_compound_statement, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6506), 1, + sym_requires_clause, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7487), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [234603] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9554), 1, + anon_sym_requires, + ACTIONS(9398), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 8, anon_sym_COMMA, - ACTIONS(5551), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [53312] = 18, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [234636] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10847), 1, + sym_identifier, + ACTIONS(6520), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(6224), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(10832), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10834), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [234667] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7838), 1, + anon_sym_DASH_GT, + ACTIONS(10062), 1, + anon_sym___attribute, + ACTIONS(10780), 1, + anon_sym_requires, + STATE(6164), 1, + sym_trailing_return_type, + ACTIONS(10777), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6304), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(4691), 1, - anon_sym_PIPE, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, + anon_sym_EQ, + anon_sym_GT2, + [234704] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, + anon_sym_AMP_AMP, + ACTIONS(3311), 1, anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10824), 1, + anon_sym_LBRACE, + ACTIONS(10826), 1, + anon_sym_requires, + STATE(3336), 1, + sym_parameter_list, + STATE(3658), 1, + sym_compound_statement, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6450), 1, + sym_requires_clause, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7282), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [234753] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(1312), 1, + sym_template_type, + STATE(4945), 1, + sym_field_declaration_list, + STATE(6933), 1, + sym__scope_resolution, + STATE(7462), 1, + sym_virtual_specifier, + STATE(8199), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4588), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [234802] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1414), 1, + sym_field_declaration_list, + STATE(6944), 1, + sym__scope_resolution, + STATE(7397), 1, + sym_virtual_specifier, + STATE(8274), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(1426), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [234851] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(3307), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4689), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [53379] = 23, + ACTIONS(3311), 1, + anon_sym_AMP, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10826), 1, + anon_sym_requires, + ACTIONS(10828), 1, + anon_sym_LBRACE, + STATE(3336), 1, + sym_parameter_list, + STATE(3685), 1, + sym_compound_statement, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6417), 1, + sym_requires_clause, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7347), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [234900] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(4561), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, + ACTIONS(10849), 2, anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + anon_sym_or, + ACTIONS(10851), 2, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + anon_sym_and, + ACTIONS(4563), 11, anon_sym_COMMA, - ACTIONS(5553), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [53456] = 23, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [234929] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10853), 1, + sym_identifier, + ACTIONS(10855), 2, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7306), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [234962] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3296), 1, + anon_sym_COLON_COLON, + ACTIONS(3298), 4, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + anon_sym_COLON, + anon_sym___asm, + ACTIONS(3291), 12, anon_sym_COMMA, - ACTIONS(5555), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [53533] = 23, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [234989] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(8408), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(8726), 1, + anon_sym_LPAREN2, + ACTIONS(8728), 1, + anon_sym_STAR, + ACTIONS(8730), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(8732), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5557), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [53610] = 23, + STATE(3672), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6985), 1, + sym__abstract_declarator, + ACTIONS(8549), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [235030] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6253), 1, + sym_identifier, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2448), 1, + sym_template_type, + STATE(2470), 1, + sym_field_declaration_list, + STATE(6918), 1, + sym__scope_resolution, + STATE(7286), 1, + sym_virtual_specifier, + STATE(8335), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2442), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [235079] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(8760), 1, + sym_identifier, + ACTIONS(8762), 1, + anon_sym_STAR, + ACTIONS(8764), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(8766), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5559), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [53687] = 23, + STATE(6992), 1, + sym__field_declarator, + STATE(7110), 1, + sym_operator_name, + STATE(8704), 1, + sym_ms_based_modifier, + STATE(6712), 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, + [235122] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7502), 1, + anon_sym_requires, + ACTIONS(7564), 1, + anon_sym_DASH_GT, + ACTIONS(10062), 1, + anon_sym_LBRACK, + STATE(5788), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 7, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [235159] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9905), 1, + anon_sym_requires, + ACTIONS(9859), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(9861), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 8, anon_sym_COMMA, - ACTIONS(5561), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [53764] = 22, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [235192] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6287), 1, + sym_identifier, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2550), 1, + sym_template_type, + STATE(2675), 1, + sym_field_declaration_list, + STATE(6911), 1, + sym__scope_resolution, + STATE(7277), 1, + sym_virtual_specifier, + STATE(8339), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(2479), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [235241] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10859), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(10864), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10862), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + STATE(6294), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + ACTIONS(10857), 7, + anon_sym___declspec, + anon_sym_COLON, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + [235272] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4862), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10792), 1, anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53839] = 22, + ACTIONS(10836), 1, + anon_sym_LBRACE, + STATE(3336), 1, + sym_parameter_list, + STATE(4131), 1, + sym_compound_statement, + STATE(6249), 1, + sym_template_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7265), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [235321] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(4647), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(10851), 2, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5395), 2, + anon_sym_and, + ACTIONS(4649), 13, anon_sym_COMMA, - anon_sym_RBRACE, - [53914] = 23, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_or, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [235348] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4992), 1, + anon_sym_COLON, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(1312), 1, + sym_template_type, + STATE(4945), 1, + sym_field_declaration_list, + STATE(6901), 1, + sym__scope_resolution, + STATE(7462), 1, + sym_virtual_specifier, + STATE(8199), 1, + sym_base_class_clause, + ACTIONS(4994), 2, + anon_sym_final, + anon_sym_override, + STATE(4588), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [235397] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9859), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5288), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5300), 1, - anon_sym_AMP_AMP, - ACTIONS(5302), 1, - anon_sym_PIPE, - ACTIONS(5304), 1, - anon_sym_CARET, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - ACTIONS(5318), 1, - anon_sym_QMARK, - STATE(2445), 1, - sym_argument_list, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5489), 2, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 8, anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - [53991] = 18, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [235430] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9687), 1, + anon_sym_requires, + ACTIONS(9589), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [235463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5849), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4689), 6, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(5720), 13, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [54058] = 23, + 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, + [235487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10062), 1, + anon_sym___attribute, + ACTIONS(10060), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [235511] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(10062), 1, + anon_sym___attribute, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6304), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 8, anon_sym_COMMA, - ACTIONS(5563), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [54135] = 23, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + [235543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10684), 1, + anon_sym___attribute, + ACTIONS(10682), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [235567] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10066), 1, + anon_sym___attribute, + ACTIONS(10064), 15, anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, anon_sym_COMMA, - ACTIONS(5565), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [54212] = 23, + anon_sym___attribute__, + 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, + [235591] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(10066), 1, + anon_sym___attribute, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6306), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10064), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, + anon_sym_COLON, + [235623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10688), 1, + anon_sym___attribute, + ACTIONS(10686), 15, anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, anon_sym_COMMA, - ACTIONS(5567), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [54289] = 19, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [235647] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4689), 5, - anon_sym_DOT_DOT_DOT, + ACTIONS(10871), 1, + anon_sym___asm, + STATE(3233), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10867), 11, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [54358] = 23, + 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, + [235679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10875), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + anon_sym___asm, + ACTIONS(10873), 13, anon_sym_COMMA, - ACTIONS(5569), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [54435] = 23, + 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, + [235703] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(10879), 1, + anon_sym___attribute, + STATE(3196), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10877), 11, anon_sym_COMMA, - ACTIONS(5571), 1, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [54512] = 23, + 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, + [235735] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(10883), 1, + anon_sym___attribute, + STATE(3196), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10881), 11, anon_sym_COMMA, - ACTIONS(5573), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [54589] = 23, + 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, + [235767] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5208), 1, - anon_sym_SEMI, - ACTIONS(5342), 1, + ACTIONS(10887), 1, + anon_sym___attribute, + STATE(3196), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10885), 11, anon_sym_COMMA, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [54666] = 23, + 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, + [235799] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(10891), 1, + anon_sym___attribute, + STATE(3196), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10889), 11, anon_sym_COMMA, - ACTIONS(5575), 1, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [54743] = 12, + 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, + [235831] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4953), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5296), 1, - anon_sym_SLASH, - STATE(2445), 1, - sym_argument_list, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4691), 6, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(4689), 11, - anon_sym_DOT_DOT_DOT, + ACTIONS(10895), 1, + anon_sym___attribute, + STATE(3196), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10893), 11, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_GT2, - [54798] = 23, + 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, + [235863] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(10899), 1, + anon_sym___attribute, + STATE(3196), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10897), 11, anon_sym_COMMA, - ACTIONS(5577), 1, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [54875] = 23, + 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, + [235895] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(10903), 1, + anon_sym___attribute, + STATE(3196), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10901), 11, anon_sym_COMMA, - ACTIONS(5579), 1, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [54952] = 23, + 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, + [235927] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(10871), 1, + anon_sym___attribute, + STATE(3196), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10867), 11, anon_sym_COMMA, - ACTIONS(5581), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [55029] = 23, + 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, + [235959] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6283), 1, + anon_sym_COLON_COLON, + ACTIONS(10905), 1, + sym_identifier, + ACTIONS(10907), 1, + sym_primitive_type, + STATE(2624), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6895), 1, + sym__scope_resolution, + STATE(3061), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9652), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [235999] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7794), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5583), 1, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9554), 1, + anon_sym_requires, + STATE(6299), 1, + sym_trailing_return_type, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [55106] = 14, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [236035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, + ACTIONS(6904), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4691), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4689), 10, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(6906), 13, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, + 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, - [55165] = 22, + anon_sym_try, + [236059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(6908), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5585), 2, + anon_sym___asm, + ACTIONS(6910), 13, anon_sym_COMMA, anon_sym_RPAREN, - [55240] = 23, + 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, + [236083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(6912), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + anon_sym___asm, + ACTIONS(6914), 13, anon_sym_COMMA, - ACTIONS(5587), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [55317] = 23, + 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, + [236107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(6920), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5589), 1, + anon_sym___asm, + ACTIONS(6922), 13, anon_sym_COMMA, - ACTIONS(5591), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [55394] = 21, + 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, + [236131] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4803), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [55467] = 23, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(8355), 1, + anon_sym_COLON_COLON, + ACTIONS(10909), 1, + sym_identifier, + ACTIONS(10911), 1, + sym_primitive_type, + STATE(1462), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6905), 1, + sym__scope_resolution, + STATE(1372), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3011), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [236171] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5593), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [55544] = 20, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6261), 1, + anon_sym_COLON_COLON, + ACTIONS(10913), 1, + sym_identifier, + ACTIONS(10915), 1, + sym_primitive_type, + STATE(2372), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6912), 1, + sym__scope_resolution, + STATE(3206), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9745), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [236211] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4731), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(10879), 1, + anon_sym___asm, + STATE(3235), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10877), 11, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [55615] = 23, + 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, + [236243] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4953), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5288), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5300), 1, - anon_sym_AMP_AMP, - ACTIONS(5302), 1, - anon_sym_PIPE, - ACTIONS(5304), 1, - anon_sym_CARET, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - ACTIONS(5318), 1, - anon_sym_QMARK, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4862), 2, + ACTIONS(10883), 1, + anon_sym___asm, + STATE(3235), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10881), 11, anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - [55692] = 23, + 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, + [236275] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(10887), 1, + anon_sym___asm, + STATE(3235), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10885), 11, anon_sym_COMMA, - ACTIONS(5595), 1, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [55769] = 23, + 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, + [236307] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(10891), 1, + anon_sym___asm, + STATE(3235), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10889), 11, anon_sym_COMMA, - ACTIONS(5597), 1, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [55846] = 23, + 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, + [236339] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(10895), 1, + anon_sym___asm, + STATE(3235), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10893), 11, anon_sym_COMMA, - ACTIONS(5599), 1, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [55923] = 16, + 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, + [236371] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4953), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4691), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4689), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(10899), 1, + anon_sym___asm, + STATE(3235), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10897), 11, 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_GT2, - [55986] = 23, + 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, + [236403] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5601), 1, + ACTIONS(10903), 1, + anon_sym___asm, + STATE(3235), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10901), 11, anon_sym_COMMA, - ACTIONS(5603), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [56063] = 23, + 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, + [236435] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + ACTIONS(10871), 1, + anon_sym___asm, + STATE(3235), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10867), 11, anon_sym_COMMA, - ACTIONS(5605), 1, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [56140] = 23, + 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, + [236467] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6295), 1, + anon_sym_COLON_COLON, + ACTIONS(10917), 1, + sym_identifier, + ACTIONS(10919), 1, + sym_primitive_type, + STATE(2382), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6893), 1, + sym__scope_resolution, + STATE(3512), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9725), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [236507] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(7794), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5607), 1, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9687), 1, + anon_sym_requires, + STATE(6292), 1, + sym_trailing_return_type, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [56217] = 3, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [236543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4543), 21, + ACTIONS(10656), 1, + anon_sym___attribute, + ACTIONS(10654), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [236567] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7794), 1, anon_sym_DASH_GT, - [56254] = 4, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(6251), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [236603] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 1, - sym_literal_suffix, - ACTIONS(2407), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2399), 18, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6303), 1, + anon_sym_COLON_COLON, + ACTIONS(10921), 1, + sym_identifier, + ACTIONS(10923), 1, + sym_primitive_type, + STATE(2377), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6904), 1, + sym__scope_resolution, + STATE(3234), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9777), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [236643] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10475), 1, + anon_sym_TILDE, + ACTIONS(10925), 1, + sym_identifier, + ACTIONS(10927), 1, 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_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [56293] = 23, + ACTIONS(10930), 1, + anon_sym_COLON_COLON, + ACTIONS(10932), 1, + anon_sym_template, + STATE(6650), 1, + sym__scope_resolution, + STATE(8266), 1, + sym_operator_name, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(3683), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + [236685] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7794), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9905), 1, + anon_sym_requires, + STATE(6234), 1, + sym_trailing_return_type, + ACTIONS(9861), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [236721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10936), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + anon_sym___asm, + ACTIONS(10934), 13, anon_sym_COMMA, - ACTIONS(5611), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [56370] = 23, + 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, + [236745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10940), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + anon_sym___asm, + ACTIONS(10938), 13, anon_sym_COMMA, - ACTIONS(5613), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [56447] = 17, + 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, + [236769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, + ACTIONS(10944), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4691), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4689), 7, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(10942), 13, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, + 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, - [56512] = 14, + anon_sym_try, + [236793] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(3867), 1, - anon_sym___attribute__, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5204), 1, - anon_sym_LBRACK, - ACTIONS(5615), 1, + ACTIONS(7794), 1, anon_sym_DASH_GT, - ACTIONS(3810), 2, + ACTIONS(10062), 1, + anon_sym_LBRACK, + ACTIONS(10819), 1, + anon_sym_requires, + STATE(6258), 1, + sym_trailing_return_type, + ACTIONS(10092), 2, anon_sym_final, anon_sym_override, - STATE(3204), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5202), 5, - anon_sym_COMMA, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(3181), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [56571] = 8, + anon_sym_LBRACE, + anon_sym_try, + [236829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, + ACTIONS(10948), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4870), 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, - anon_sym_GT_GT, - ACTIONS(4868), 15, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(10946), 13, 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_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + 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, - [56618] = 18, + anon_sym_try, + [236853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4691), 1, - anon_sym_PIPE, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, + ACTIONS(6849), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4689), 7, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(6851), 13, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, + 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, - [56685] = 20, + anon_sym_try, + [236877] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4858), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [56756] = 23, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6313), 1, + anon_sym_COLON_COLON, + ACTIONS(10950), 1, + sym_identifier, + ACTIONS(10952), 1, + sym_primitive_type, + STATE(4406), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6906), 1, + sym__scope_resolution, + STATE(5306), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8331), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [236917] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(10954), 1, + sym_identifier, + ACTIONS(10956), 1, + sym_primitive_type, + STATE(5240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6917), 1, + sym__scope_resolution, + STATE(2475), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [236957] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(10958), 1, + sym_identifier, + ACTIONS(10960), 1, + sym_primitive_type, + STATE(2361), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6911), 1, + sym__scope_resolution, + STATE(2729), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9632), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [236997] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10628), 1, + anon_sym___attribute, + ACTIONS(10626), 15, anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, anon_sym_COMMA, - ACTIONS(5617), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [56833] = 21, + anon_sym___attribute__, + 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, + [237021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5300), 1, - anon_sym_AMP_AMP, - ACTIONS(5302), 1, - anon_sym_PIPE, - ACTIONS(5304), 1, - anon_sym_CARET, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4858), 4, + ACTIONS(10674), 1, + anon_sym___attribute, + ACTIONS(10672), 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_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [237045] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10706), 1, + anon_sym___attribute, + ACTIONS(10704), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [56906] = 23, + anon_sym_try, + anon_sym_requires, + [237069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10710), 1, + anon_sym___attribute, + ACTIONS(10708), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [237093] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9398), 1, + anon_sym___attribute, + ACTIONS(9538), 1, + anon_sym_requires, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 8, anon_sym_COMMA, - ACTIONS(5619), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [56983] = 23, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + [237125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10720), 1, + anon_sym___attribute, + ACTIONS(10718), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [237149] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7794), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(9589), 1, + anon_sym_LBRACK, + STATE(6298), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [237185] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4647), 1, + anon_sym___attribute, + ACTIONS(10962), 2, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + anon_sym_and, + ACTIONS(4649), 13, anon_sym_COMMA, - ACTIONS(5621), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [57060] = 14, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_or, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [237211] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(3867), 1, - anon_sym___attribute__, - ACTIONS(5148), 1, + ACTIONS(4561), 1, + anon_sym___attribute, + ACTIONS(10962), 2, anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5154), 1, + anon_sym_and, + ACTIONS(10964), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(4563), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5615), 1, - anon_sym_DASH_GT, - ACTIONS(3810), 2, + anon_sym_COLON, anon_sym_final, anon_sym_override, - STATE(2891), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5146), 5, + anon_sym_requires, + [237239] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10726), 1, + anon_sym___attribute, + ACTIONS(10724), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - STATE(3179), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [57119] = 7, + anon_sym___attribute__, + 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, + [237263] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3847), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(10966), 1, + sym_identifier, + ACTIONS(10968), 1, sym_primitive_type, - ACTIONS(5623), 1, + STATE(4516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6918), 1, + sym__scope_resolution, + STATE(2475), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [237303] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3313), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10970), 1, sym_identifier, - STATE(1289), 1, + ACTIONS(10972), 1, + sym_primitive_type, + STATE(1356), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3845), 4, + STATE(6924), 1, + sym__scope_resolution, + STATE(1372), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8447), 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, - ACTIONS(3463), 10, + [237343] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10976), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10974), 13, 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_DASH_GT, - ACTIONS(3465), 12, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [57164] = 21, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [237367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(6898), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6900), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4953), 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_GT2, + anon_sym_try, + [237391] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6927), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5300), 1, - anon_sym_AMP_AMP, - ACTIONS(5302), 1, - anon_sym_PIPE, - ACTIONS(5304), 1, - anon_sym_CARET, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4697), 4, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(6929), 13, anon_sym_COMMA, - anon_sym_QMARK, + 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, - [57237] = 23, + anon_sym_try, + [237415] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5625), 1, + ACTIONS(8408), 1, + anon_sym_LBRACK, + STATE(3336), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7029), 1, + sym__abstract_declarator, + ACTIONS(8549), 3, anon_sym_COMMA, - ACTIONS(5627), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [57314] = 13, + anon_sym_SEMI, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [237455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10662), 1, + anon_sym___attribute, + ACTIONS(10660), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5232), 1, - anon_sym_SLASH, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4827), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4825), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [237479] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9589), 1, + anon_sym___attribute, + ACTIONS(9667), 1, + anon_sym_requires, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + [237511] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + ACTIONS(10978), 1, + sym_identifier, + ACTIONS(10980), 1, + sym_primitive_type, + STATE(4272), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6933), 1, + sym__scope_resolution, + STATE(5050), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8285), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [237551] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10714), 1, + anon_sym___attribute, + ACTIONS(10712), 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_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [57371] = 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [237575] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4528), 21, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6279), 1, + anon_sym_COLON_COLON, + ACTIONS(10968), 1, + sym_primitive_type, + ACTIONS(10982), 1, + sym_identifier, + STATE(2482), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6899), 1, + sym__scope_resolution, + STATE(2475), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9618), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [237615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9398), 1, + anon_sym___attribute, + ACTIONS(9387), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [57408] = 23, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [237639] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(9398), 1, + anon_sym___attribute, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + anon_sym_COLON, + [237671] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7794), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5629), 1, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(9859), 1, + anon_sym_LBRACK, + STATE(6233), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 6, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [57485] = 14, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [237707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(10986), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10984), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4953), 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_GT2, + anon_sym_try, + [237731] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6837), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4827), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4825), 10, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(6839), 13, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, + 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, - [57544] = 9, + anon_sym_try, + [237755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, + ACTIONS(6841), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4821), 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, - anon_sym_GT_GT, - ACTIONS(4819), 13, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(6843), 13, 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_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, + 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, - [57593] = 23, + anon_sym_try, + [237779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(6845), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + anon_sym___asm, + ACTIONS(6847), 13, anon_sym_COMMA, - ACTIONS(5631), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [57670] = 22, + 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, + [237803] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + sym_primitive_type, + STATE(2360), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6911), 1, + sym__scope_resolution, + STATE(2729), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9797), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [237843] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9859), 1, + anon_sym___attribute, + ACTIONS(9893), 1, + anon_sym_requires, + ACTIONS(9890), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5633), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [57745] = 11, + anon_sym_COLON, + [237875] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(5174), 1, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8786), 1, anon_sym_STAR, - ACTIONS(5176), 1, + ACTIONS(8788), 1, anon_sym_AMP_AMP, - ACTIONS(5178), 1, + ACTIONS(8790), 1, anon_sym_AMP, - ACTIONS(5180), 1, - anon_sym_LBRACK, - ACTIONS(5635), 1, - anon_sym_const, - STATE(3140), 1, + STATE(3505), 1, sym_parameter_list, - STATE(3282), 1, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7022), 1, sym__abstract_declarator, - STATE(3227), 5, + ACTIONS(8549), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6365), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5024), 16, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, + [237915] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7794), 1, anon_sym_DASH_GT, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(10062), 1, + anon_sym_LBRACK, + STATE(6274), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [57798] = 23, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [237951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(6827), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + anon_sym___asm, + ACTIONS(6829), 13, anon_sym_COMMA, - ACTIONS(5637), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [57875] = 3, + 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, + [237975] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4524), 21, - anon_sym_DOT_DOT_DOT, + ACTIONS(10062), 1, + anon_sym___attribute, + ACTIONS(10992), 1, + anon_sym_requires, + ACTIONS(10777), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6304), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 8, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [57912] = 23, + [238007] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5639), 1, + ACTIONS(10066), 1, + anon_sym___attribute, + ACTIONS(10995), 1, + anon_sym_requires, + ACTIONS(10756), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6306), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10064), 8, anon_sym_COMMA, - ACTIONS(5641), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [57989] = 23, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + [238039] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(10970), 1, + sym_identifier, + ACTIONS(10972), 1, + sym_primitive_type, + STATE(1356), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6944), 1, + sym__scope_resolution, + STATE(1372), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8447), 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, + [238079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11000), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + anon_sym___asm, + ACTIONS(10998), 13, anon_sym_COMMA, - ACTIONS(5643), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [58066] = 3, + 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, + [238103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4601), 19, + ACTIONS(10624), 1, + anon_sym___attribute, + ACTIONS(10622), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [58103] = 22, + anon_sym_try, + anon_sym_requires, + [238127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, + ACTIONS(10652), 1, + anon_sym___attribute, + ACTIONS(10650), 15, anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5645), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [58178] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4495), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5647), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [58255] = 23, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [238151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, + ACTIONS(10680), 1, + anon_sym___attribute, + ACTIONS(10678), 15, anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, anon_sym_COMMA, - ACTIONS(5649), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [58332] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4495), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, - anon_sym_COMMA, - ACTIONS(5651), 1, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [58409] = 19, + anon_sym___attribute__, + 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, + [238175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4691), 1, - anon_sym_PIPE, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, - anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5304), 1, - anon_sym_CARET, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4689), 6, + ACTIONS(10734), 1, + anon_sym___attribute, + ACTIONS(10732), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [58478] = 19, + anon_sym_try, + anon_sym_requires, + [238199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(10752), 1, + anon_sym___attribute, + ACTIONS(10750), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4953), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5302), 1, - anon_sym_PIPE, - ACTIONS(5304), 1, - anon_sym_CARET, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4689), 6, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [238223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9589), 1, + anon_sym___attribute, + ACTIONS(9578), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [58547] = 8, + anon_sym_try, + anon_sym_requires, + [238247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, + ACTIONS(3281), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(4767), 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, - anon_sym_GT_GT, - ACTIONS(4765), 15, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(3274), 13, 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_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + 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, - [58594] = 23, + anon_sym_try, + [238271] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(9589), 1, + anon_sym___attribute, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5342), 1, + anon_sym_COLON, + [238303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(3274), 13, anon_sym_COMMA, - ACTIONS(5653), 1, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [58671] = 20, + 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, + [238327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - ACTIONS(4953), 1, + ACTIONS(3281), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_DASH_GT, - ACTIONS(5296), 1, - anon_sym_SLASH, - ACTIONS(5300), 1, - anon_sym_AMP_AMP, - ACTIONS(5302), 1, - anon_sym_PIPE, - ACTIONS(5304), 1, - anon_sym_CARET, - ACTIONS(5306), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_LT_EQ, - ACTIONS(5314), 1, - anon_sym_LT_LT, - ACTIONS(5316), 1, - anon_sym_GT_GT, - STATE(2445), 1, - sym_argument_list, - ACTIONS(5292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5310), 3, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - ACTIONS(4689), 5, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(3274), 13, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, + 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, - [58742] = 11, + anon_sym_try, + [238351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(3281), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5232), 1, - anon_sym_SLASH, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4691), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4689), 13, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(3274), 13, 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [58795] = 19, + 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, + [238375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1463), 1, - anon_sym_enum, - ACTIONS(1465), 1, - anon_sym_class, - ACTIONS(1467), 1, - anon_sym_struct, - ACTIONS(1469), 1, - anon_sym_union, - ACTIONS(1471), 1, - anon_sym_typename, - ACTIONS(2375), 1, - sym_identifier, - ACTIONS(2385), 1, - anon_sym_COLON_COLON, - STATE(1298), 1, - sym_template_type, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1326), 1, - sym__type_specifier, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3908), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [58863] = 22, + ACTIONS(3281), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(3274), 13, + 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, + [238399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3281), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(3274), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 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_GT2, + anon_sym_try, + [238423] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11004), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5655), 1, + anon_sym___asm, + ACTIONS(11002), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [58937] = 19, + 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, + [238447] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2313), 1, - sym_identifier, - ACTIONS(2319), 1, + ACTIONS(3009), 1, anon_sym_COLON_COLON, - ACTIONS(2323), 1, - anon_sym_enum, - ACTIONS(2325), 1, - anon_sym_class, - ACTIONS(2327), 1, - anon_sym_struct, - ACTIONS(2329), 1, - anon_sym_union, - ACTIONS(2331), 1, - anon_sym_typename, - STATE(1298), 1, - sym_template_type, - STATE(1338), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10909), 1, + sym_identifier, + ACTIONS(10911), 1, + sym_primitive_type, + STATE(1462), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3178), 1, - sym__type_specifier, - STATE(3912), 1, + STATE(6919), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2321), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1358), 7, + STATE(1372), 2, sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + sym_qualified_type_identifier, + STATE(8447), 3, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [59005] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4136), 1, - anon_sym_COLON_COLON, - ACTIONS(5069), 1, - sym_identifier, - ACTIONS(5075), 1, - anon_sym_enum, - ACTIONS(5077), 1, - anon_sym_class, - ACTIONS(5079), 1, - anon_sym_struct, - ACTIONS(5081), 1, - anon_sym_union, - ACTIONS(5083), 1, - anon_sym_decltype, - ACTIONS(5085), 1, - anon_sym_typename, - STATE(3478), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3761), 1, sym_template_type, - STATE(3848), 1, - sym__type_specifier, - STATE(3863), 1, - sym_qualified_type_identifier, - STATE(3878), 1, - sym__scope_resolution, - STATE(4853), 1, sym_dependent_type_identifier, - ACTIONS(5073), 2, - sym_primitive_type, - sym_auto, - ACTIONS(5071), 4, + ACTIONS(3011), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3872), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [59073] = 19, + [238487] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(3236), 1, - anon_sym_enum, - ACTIONS(3238), 1, - anon_sym_class, - ACTIONS(3240), 1, - anon_sym_struct, - ACTIONS(3242), 1, - anon_sym_union, - ACTIONS(3256), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(3260), 1, - anon_sym_typename, - ACTIONS(4194), 1, + ACTIONS(6251), 1, anon_sym_COLON_COLON, - ACTIONS(5057), 1, + ACTIONS(10978), 1, sym_identifier, - STATE(2255), 1, + ACTIONS(10980), 1, + sym_primitive_type, + STATE(4272), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2523), 1, - sym_template_type, - STATE(2603), 1, - sym_qualified_type_identifier, - STATE(3473), 1, - sym__type_specifier, - STATE(3876), 1, + STATE(6901), 1, sym__scope_resolution, - STATE(4853), 1, + STATE(5050), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, - ACTIONS(3258), 2, - sym_primitive_type, - sym_auto, - ACTIONS(3232), 4, + ACTIONS(8285), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2558), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [59141] = 19, + [238527] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1941), 1, - anon_sym_enum, - ACTIONS(1943), 1, - anon_sym_class, - ACTIONS(1945), 1, - anon_sym_struct, - ACTIONS(1947), 1, - anon_sym_union, - ACTIONS(1949), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(2375), 1, - sym_identifier, - ACTIONS(3110), 1, + ACTIONS(6309), 1, anon_sym_COLON_COLON, - ACTIONS(5061), 1, - anon_sym_typename, - STATE(1298), 1, - sym_template_type, - STATE(1413), 1, - sym__type_specifier, - STATE(1454), 1, - sym_qualified_type_identifier, - STATE(2900), 1, + ACTIONS(10907), 1, + sym_primitive_type, + ACTIONS(11006), 1, + sym_identifier, + STATE(4533), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3895), 1, + STATE(6909), 1, sym__scope_resolution, - STATE(4853), 1, + STATE(3061), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, - ACTIONS(1939), 2, - sym_primitive_type, - sym_auto, - ACTIONS(5059), 4, + ACTIONS(3937), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1410), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [59209] = 22, + [238567] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(9967), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5663), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_PIPE, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - ACTIONS(5681), 1, + ACTIONS(9971), 1, anon_sym_COLON, - ACTIONS(5683), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59283] = 19, + ACTIONS(11010), 1, + anon_sym___attribute, + ACTIONS(11012), 1, + anon_sym_EQ, + STATE(3192), 1, + sym_parameter_list, + STATE(6689), 1, + sym__function_declarator_seq, + STATE(7483), 1, + sym_bitfield_clause, + STATE(7485), 1, + sym_initializer_list, + STATE(6664), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11008), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [238613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2375), 1, - sym_identifier, - ACTIONS(2385), 1, - anon_sym_COLON_COLON, - ACTIONS(5091), 1, - anon_sym_enum, - ACTIONS(5093), 1, - anon_sym_class, - ACTIONS(5095), 1, - anon_sym_struct, - ACTIONS(5097), 1, - anon_sym_union, - ACTIONS(5099), 1, - anon_sym_typename, - STATE(1298), 1, - sym_template_type, - STATE(1326), 1, - sym__type_specifier, - STATE(1338), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3908), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2321), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [59351] = 19, + ACTIONS(9859), 1, + anon_sym___attribute, + ACTIONS(9848), 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_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [238637] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2313), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_COLON_COLON, - ACTIONS(2323), 1, - anon_sym_enum, - ACTIONS(2325), 1, - anon_sym_class, - ACTIONS(2327), 1, - anon_sym_struct, - ACTIONS(2329), 1, - anon_sym_union, - ACTIONS(2331), 1, - anon_sym_typename, - STATE(1298), 1, - sym_template_type, - STATE(1326), 1, - sym__type_specifier, - STATE(1338), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3912), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2321), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [59419] = 19, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(9859), 1, + anon_sym___attribute, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + [238669] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10869), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym___asm, + STATE(3233), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10877), 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, + [238701] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2550), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(4104), 1, + ACTIONS(6319), 1, anon_sym_COLON_COLON, - ACTIONS(5258), 1, + ACTIONS(11014), 1, sym_identifier, - ACTIONS(5260), 1, - anon_sym_enum, - ACTIONS(5262), 1, - anon_sym_class, - ACTIONS(5264), 1, - anon_sym_struct, - ACTIONS(5266), 1, - anon_sym_union, - ACTIONS(5268), 1, - anon_sym_typename, - STATE(2027), 1, + ACTIONS(11016), 1, + sym_primitive_type, + STATE(2515), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, - sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(2637), 1, - sym__type_specifier, - STATE(3909), 1, + STATE(6907), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2408), 7, + STATE(4315), 2, sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + sym_qualified_type_identifier, + STATE(8447), 3, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [59487] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2550), 1, - anon_sym_decltype, - ACTIONS(4104), 1, - anon_sym_COLON_COLON, - ACTIONS(5258), 1, - sym_identifier, - ACTIONS(5260), 1, - anon_sym_enum, - ACTIONS(5262), 1, - anon_sym_class, - ACTIONS(5264), 1, - anon_sym_struct, - ACTIONS(5266), 1, - anon_sym_union, - ACTIONS(5268), 1, - anon_sym_typename, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, sym_template_type, - STATE(2377), 1, - sym__type_specifier, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(3909), 1, - sym__scope_resolution, - STATE(4853), 1, sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2538), 4, + ACTIONS(9810), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [59555] = 3, + [238741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4779), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4777), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(7219), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7221), 13, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - 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_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + 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, - [59591] = 22, + anon_sym_try, + [238765] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5685), 1, + ACTIONS(10883), 1, + anon_sym___asm, + STATE(3233), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10881), 11, + anon_sym_COMMA, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [59665] = 19, + 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, + [238797] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10869), 1, + anon_sym_LBRACK, + ACTIONS(10887), 1, + anon_sym___asm, + STATE(3233), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10885), 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, + [238829] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10869), 1, + anon_sym_LBRACK, + ACTIONS(10891), 1, + anon_sym___asm, + STATE(3233), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10889), 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, + [238861] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10869), 1, + anon_sym_LBRACK, + ACTIONS(10895), 1, + anon_sym___asm, + STATE(3233), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10893), 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, + [238893] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10869), 1, + anon_sym_LBRACK, + ACTIONS(10899), 1, + anon_sym___asm, + STATE(3233), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10897), 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, + [238925] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10869), 1, + anon_sym_LBRACK, + ACTIONS(10903), 1, + anon_sym___asm, + STATE(3233), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10901), 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, + [238957] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2550), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(4104), 1, + ACTIONS(8355), 1, anon_sym_COLON_COLON, - ACTIONS(5258), 1, + ACTIONS(10909), 1, sym_identifier, - ACTIONS(5262), 1, - anon_sym_class, - ACTIONS(5264), 1, - anon_sym_struct, - ACTIONS(5266), 1, - anon_sym_union, - ACTIONS(5270), 1, - anon_sym_enum, - ACTIONS(5272), 1, - anon_sym_typename, - STATE(2027), 1, + ACTIONS(10911), 1, + sym_primitive_type, + STATE(5354), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, - sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(2656), 1, - sym__type_specifier, - STATE(3909), 1, + STATE(6905), 1, sym__scope_resolution, - STATE(4853), 1, + STATE(1372), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2538), 4, + ACTIONS(9839), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [59733] = 22, + [238997] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7821), 1, + anon_sym_DASH_GT, + ACTIONS(7836), 1, + anon_sym_requires, + STATE(6190), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6304), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 6, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, + anon_sym_EQ, + anon_sym_try, + [239030] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - ACTIONS(5687), 1, - anon_sym_RBRACK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59807] = 18, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10828), 1, + anon_sym_LBRACE, + STATE(3336), 1, + sym_parameter_list, + STATE(3731), 1, + sym_compound_statement, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7305), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [239073] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, + ACTIONS(11020), 1, + anon_sym___asm, + STATE(3277), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11018), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [239108] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3197), 1, anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10361), 1, + anon_sym_TILDE, + ACTIONS(11022), 1, sym_identifier, - ACTIONS(4429), 1, + ACTIONS(11024), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4667), 1, - anon_sym_STAR, - ACTIONS(4669), 1, - anon_sym_AMP_AMP, - ACTIONS(4671), 1, - anon_sym_AMP, - STATE(3526), 1, - sym__declarator, - STATE(3552), 1, + ACTIONS(11026), 1, + anon_sym_template, + STATE(6660), 1, sym__scope_resolution, - STATE(4416), 1, - sym_init_declarator, - STATE(5052), 1, - sym_ms_based_modifier, - STATE(4853), 2, + STATE(8294), 1, + sym_operator_name, + STATE(8447), 3, + sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, + STATE(2844), 4, + sym_template_method, sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [59873] = 22, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + [239147] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5689), 1, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10802), 1, + anon_sym_LBRACE, + STATE(3336), 1, + sym_parameter_list, + STATE(3991), 1, + sym_compound_statement, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7519), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [239190] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7821), 1, + anon_sym_DASH_GT, + ACTIONS(9551), 1, + anon_sym_requires, + STATE(6195), 1, + sym_trailing_return_type, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 6, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [239223] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(3307), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [59947] = 22, + ACTIONS(3309), 1, + anon_sym_AMP_AMP, + ACTIONS(3311), 1, + anon_sym_AMP, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10836), 1, + anon_sym_LBRACE, + STATE(3336), 1, + sym_parameter_list, + STATE(4198), 1, + sym_compound_statement, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7405), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [239266] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10853), 1, + sym_identifier, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7841), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [239295] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10853), 1, + sym_identifier, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7880), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [239324] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6243), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6643), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(10832), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10834), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [239351] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(8094), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym___attribute, + STATE(6534), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 5, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + anon_sym_GT2, + [239386] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(8094), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5691), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [60021] = 18, + ACTIONS(9589), 1, + anon_sym___attribute, + STATE(6535), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [239421] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(8094), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, + anon_sym___attribute, + STATE(6536), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 5, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(4617), 1, - anon_sym_STAR, - ACTIONS(4619), 1, - anon_sym_AMP_AMP, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(3523), 1, - sym__declarator, - STATE(3552), 1, - sym__scope_resolution, - STATE(4435), 1, - sym_init_declarator, - STATE(5210), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [60087] = 22, + anon_sym_GT2, + [239456] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(8094), 1, + anon_sym_DASH_GT, + ACTIONS(10062), 1, + anon_sym___attribute, + STATE(6537), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6304), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [239491] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5663), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_PIPE, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - ACTIONS(5683), 1, - anon_sym_QMARK, - ACTIONS(5693), 1, + ACTIONS(11030), 1, + anon_sym___asm, + STATE(3239), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6621), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11028), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60161] = 22, + anon_sym_asm, + anon_sym___asm__, + [239526] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5695), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [60235] = 22, + ACTIONS(11034), 1, + anon_sym___asm, + STATE(3239), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6621), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11032), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [239561] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(8094), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym___attribute, + ACTIONS(9575), 1, + anon_sym_requires, + STATE(6545), 1, + sym_trailing_return_type, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 5, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5697), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [60309] = 3, + anon_sym_GT2, + [239596] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4695), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4693), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(8094), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym___attribute, + ACTIONS(9833), 1, + anon_sym_requires, + STATE(6546), 1, + sym_trailing_return_type, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 5, 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_EQ, - anon_sym_LT_LT, + anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, anon_sym_GT2, - [60345] = 3, + [239631] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4725), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4723), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(8094), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, + anon_sym___attribute, + ACTIONS(9908), 1, + anon_sym_requires, + STATE(6547), 1, + sym_trailing_return_type, + ACTIONS(9890), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 5, 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_EQ, - anon_sym_LT_LT, + anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, anon_sym_GT2, - [60381] = 22, + [239666] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(8094), 1, + anon_sym_DASH_GT, + ACTIONS(10062), 1, + anon_sym___attribute, + ACTIONS(11036), 1, + anon_sym_requires, + STATE(6548), 1, + sym_trailing_return_type, + ACTIONS(10777), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6304), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 5, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + anon_sym_GT2, + [239701] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10853), 1, + sym_identifier, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7521), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [239730] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10853), 1, + sym_identifier, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7525), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [239759] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10853), 1, + sym_identifier, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7677), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [239788] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(8191), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5699), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [60455] = 22, + STATE(6251), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9398), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [239823] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(8191), 1, + anon_sym_DASH_GT, + STATE(6298), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9589), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 4, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [239858] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(8191), 1, + anon_sym_DASH_GT, + STATE(6233), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9859), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [239893] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7799), 1, + anon_sym_requires, + ACTIONS(8191), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5701), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [60529] = 22, + STATE(6274), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10062), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [239928] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(8191), 1, + anon_sym_DASH_GT, + ACTIONS(9554), 1, + anon_sym_requires, + STATE(6299), 1, + sym_trailing_return_type, + ACTIONS(9398), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 4, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [239963] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8191), 1, + anon_sym_DASH_GT, + ACTIONS(9687), 1, + anon_sym_requires, + STATE(6292), 1, + sym_trailing_return_type, + ACTIONS(9589), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [239998] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8191), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5703), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [60603] = 12, + ACTIONS(9905), 1, + anon_sym_requires, + STATE(6234), 1, + sym_trailing_return_type, + ACTIONS(9859), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(9861), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [240033] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5158), 1, + ACTIONS(8191), 1, anon_sym_DASH_GT, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5707), 1, + ACTIONS(10819), 1, + anon_sym_requires, + STATE(6258), 1, + sym_trailing_return_type, + ACTIONS(10062), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(3810), 2, + ACTIONS(10092), 2, anon_sym_final, anon_sym_override, - ACTIONS(5156), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5705), 7, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [240068] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10853), 1, + sym_identifier, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(9194), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [240097] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7772), 1, + anon_sym_DASH_GT, + ACTIONS(9893), 1, + anon_sym_requires, + STATE(6382), 1, + sym_trailing_return_type, + ACTIONS(9890), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + [240130] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10853), 1, + sym_identifier, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7545), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [240159] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, + anon_sym_AMP_AMP, + ACTIONS(3311), 1, + anon_sym_AMP, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10824), 1, + anon_sym_LBRACE, + STATE(3336), 1, + sym_parameter_list, + STATE(3616), 1, + sym_compound_statement, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7418), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [240202] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8139), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, + anon_sym_LPAREN2, + ACTIONS(9967), 1, + anon_sym_LBRACK, + ACTIONS(11041), 1, + anon_sym___attribute, + STATE(3192), 1, + sym_parameter_list, + STATE(6689), 1, + sym__function_declarator_seq, + STATE(6664), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11039), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - STATE(3090), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [60657] = 22, + anon_sym_try, + [240237] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10853), 1, + sym_identifier, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7585), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [240266] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7821), 1, + anon_sym_DASH_GT, + ACTIONS(7836), 1, + anon_sym_requires, + STATE(6201), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 6, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + anon_sym_EQ, + anon_sym_try, + [240299] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7772), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5709), 1, + ACTIONS(7803), 1, + anon_sym_requires, + STATE(6405), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [60731] = 18, + anon_sym_LBRACE, + anon_sym_LBRACK, + [240332] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10853), 1, + sym_identifier, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7651), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [240361] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(11043), 1, sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4667), 1, - anon_sym_STAR, - ACTIONS(4669), 1, - anon_sym_AMP_AMP, - ACTIONS(4671), 1, - anon_sym_AMP, - STATE(3529), 1, - sym__declarator, - STATE(3552), 1, - sym__scope_resolution, - STATE(4416), 1, - sym_init_declarator, - STATE(5052), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [60797] = 18, + ACTIONS(11045), 1, + aux_sym_preproc_if_token2, + ACTIONS(11047), 1, + aux_sym_preproc_else_token1, + ACTIONS(11049), 1, + aux_sym_preproc_elif_token1, + STATE(6728), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(6764), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(7063), 1, + sym_enumerator, + ACTIONS(11051), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8736), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(8740), 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, + [240400] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10853), 1, + sym_identifier, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7893), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [240429] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, + ACTIONS(3197), 1, anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10475), 1, + anon_sym_TILDE, + ACTIONS(10925), 1, sym_identifier, - ACTIONS(4429), 1, + ACTIONS(10930), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4617), 1, - anon_sym_STAR, - ACTIONS(4619), 1, - anon_sym_AMP_AMP, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(3552), 1, + ACTIONS(10932), 1, + anon_sym_template, + STATE(6650), 1, sym__scope_resolution, - STATE(3553), 1, - sym__declarator, - STATE(4416), 1, - sym_init_declarator, - STATE(5210), 1, - sym_ms_based_modifier, - STATE(4853), 2, + STATE(8266), 1, + sym_operator_name, + STATE(8447), 3, + sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, + STATE(3683), 4, + sym_template_method, sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [60863] = 22, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + [240468] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, - anon_sym_RBRACK, - ACTIONS(4495), 1, + ACTIONS(7772), 1, + anon_sym_DASH_GT, + ACTIONS(7803), 1, + anon_sym_requires, + STATE(6305), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6304), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60937] = 19, + [240501] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4136), 1, - anon_sym_COLON_COLON, - ACTIONS(5069), 1, - sym_identifier, - ACTIONS(5075), 1, - anon_sym_enum, - ACTIONS(5077), 1, - anon_sym_class, - ACTIONS(5079), 1, - anon_sym_struct, - ACTIONS(5081), 1, - anon_sym_union, - ACTIONS(5083), 1, - anon_sym_decltype, - ACTIONS(5085), 1, - anon_sym_typename, - STATE(3478), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3490), 1, - sym__type_specifier, - STATE(3761), 1, - sym_template_type, - STATE(3863), 1, - sym_qualified_type_identifier, - STATE(3878), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(5073), 2, - sym_primitive_type, - sym_auto, - ACTIONS(5071), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3872), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [61005] = 22, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11055), 1, + anon_sym___asm, + STATE(3277), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11053), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [240536] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5711), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [61079] = 19, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, + anon_sym_LBRACE, + STATE(951), 1, + sym_compound_statement, + STATE(3336), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7238), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [240579] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2375), 1, + ACTIONS(10419), 1, + anon_sym_TILDE, + ACTIONS(11057), 1, sym_identifier, - ACTIONS(2385), 1, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(5091), 1, - anon_sym_enum, - ACTIONS(5093), 1, - anon_sym_class, - ACTIONS(5095), 1, - anon_sym_struct, - ACTIONS(5097), 1, - anon_sym_union, - ACTIONS(5099), 1, - anon_sym_typename, - STATE(1298), 1, - sym_template_type, - STATE(1338), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3908), 1, - sym__scope_resolution, - STATE(4610), 1, - sym__type_specifier, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2321), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [61147] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 1, + ACTIONS(11061), 1, anon_sym_template, - ACTIONS(4176), 1, - anon_sym_COLON_COLON, - ACTIONS(5364), 1, - sym_identifier, - ACTIONS(5372), 1, - anon_sym_class, - ACTIONS(5374), 1, - anon_sym_struct, - ACTIONS(5376), 1, - anon_sym_union, - ACTIONS(5378), 1, - anon_sym_decltype, - ACTIONS(5384), 1, - anon_sym_enum, - ACTIONS(5386), 1, - anon_sym_typename, - STATE(1971), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2041), 1, - sym_template_type, - STATE(2078), 1, - sym_qualified_type_identifier, - STATE(2113), 1, - sym__type_specifier, - STATE(3897), 1, + STATE(6671), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(5368), 2, - sym_primitive_type, - sym_auto, - ACTIONS(5366), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2112), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7990), 1, + sym_operator_name, + STATE(8447), 3, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [61215] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(5324), 1, - sym_identifier, - ACTIONS(5330), 1, - anon_sym_enum, - ACTIONS(5332), 1, - anon_sym_class, - ACTIONS(5334), 1, - anon_sym_struct, - ACTIONS(5336), 1, - anon_sym_union, - ACTIONS(5338), 1, - anon_sym_decltype, - ACTIONS(5340), 1, - anon_sym_typename, - STATE(2004), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2280), 1, sym_template_type, - STATE(2285), 1, - sym__type_specifier, - STATE(2287), 1, - sym_qualified_type_identifier, - STATE(3902), 1, - sym__scope_resolution, - STATE(4853), 1, sym_dependent_type_identifier, - ACTIONS(5328), 2, - sym_primitive_type, - sym_auto, - ACTIONS(5326), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2288), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [61283] = 22, + STATE(3870), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + [240618] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7821), 1, + anon_sym_DASH_GT, + ACTIONS(9707), 1, + anon_sym_requires, + STATE(6172), 1, + sym_trailing_return_type, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 6, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + anon_sym_EQ, + anon_sym_try, + [240651] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5713), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [61357] = 19, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10822), 1, + anon_sym_LBRACE, + STATE(3336), 1, + sym_parameter_list, + STATE(6192), 1, + sym_compound_statement, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7339), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [240694] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2550), 1, - anon_sym_decltype, - ACTIONS(4104), 1, - anon_sym_COLON_COLON, - ACTIONS(5258), 1, + ACTIONS(10853), 1, sym_identifier, - ACTIONS(5260), 1, - anon_sym_enum, - ACTIONS(5262), 1, - anon_sym_class, - ACTIONS(5264), 1, - anon_sym_struct, - ACTIONS(5266), 1, - anon_sym_union, - ACTIONS(5268), 1, - anon_sym_typename, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, - sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(2636), 1, - sym__type_specifier, - STATE(3909), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [61425] = 3, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7732), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [240723] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4543), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(10196), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [61461] = 3, + ACTIONS(11065), 1, + anon_sym___asm, + STATE(3239), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6621), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11063), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [240758] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2399), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(10853), 1, + sym_identifier, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7901), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [240787] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10853), 1, + sym_identifier, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7817), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [240816] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10853), 1, + sym_identifier, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7849), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [240845] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [61497] = 3, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11065), 1, + anon_sym___asm, + STATE(3277), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11063), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [240880] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4856), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4854), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(11043), 1, + sym_identifier, + ACTIONS(11047), 1, + aux_sym_preproc_else_token1, + ACTIONS(11049), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11067), 1, + aux_sym_preproc_if_token2, + STATE(6739), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(6843), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(7063), 1, + sym_enumerator, + ACTIONS(11051), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8982), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(9151), 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, + [240919] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7772), 1, + anon_sym_DASH_GT, + ACTIONS(9538), 1, + anon_sym_requires, + STATE(6366), 1, + sym_trailing_return_type, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [61533] = 18, + [240952] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, + ACTIONS(3197), 1, anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10361), 1, + anon_sym_TILDE, + ACTIONS(11022), 1, sym_identifier, - ACTIONS(4429), 1, + ACTIONS(11069), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4617), 1, - anon_sym_STAR, - ACTIONS(4619), 1, - anon_sym_AMP_AMP, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(3552), 1, + ACTIONS(11071), 1, + anon_sym_template, + STATE(6661), 1, sym__scope_resolution, - STATE(3589), 1, - sym__declarator, - STATE(4689), 1, - sym_init_declarator, - STATE(5210), 1, - sym_ms_based_modifier, - STATE(4853), 2, + STATE(8042), 1, + sym_operator_name, + STATE(8447), 3, + sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, + STATE(2844), 4, + sym_template_method, sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [61599] = 3, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + [240991] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4673), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(7772), 1, + anon_sym_DASH_GT, + ACTIONS(10992), 1, + anon_sym_requires, + STATE(6383), 1, + sym_trailing_return_type, + ACTIONS(10777), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6304), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - 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_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [61635] = 3, + [241024] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4745), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4743), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [61671] = 18, + ACTIONS(10853), 1, + sym_identifier, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(8920), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [241053] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(10853), 1, sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4617), 1, - anon_sym_STAR, - ACTIONS(4619), 1, - anon_sym_AMP_AMP, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(3552), 1, - sym__scope_resolution, - STATE(3563), 1, - sym__declarator, - STATE(4250), 1, - sym_init_declarator, - STATE(5210), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [61737] = 18, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7604), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [241082] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + ACTIONS(9967), 1, anon_sym_LBRACK, - ACTIONS(4667), 1, + ACTIONS(11075), 1, + anon_sym___attribute, + STATE(3192), 1, + sym_parameter_list, + STATE(6689), 1, + sym__function_declarator_seq, + STATE(6664), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11073), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [241117] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LPAREN2, + ACTIONS(3307), 1, anon_sym_STAR, - ACTIONS(4669), 1, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(4671), 1, + ACTIONS(3311), 1, anon_sym_AMP, - STATE(3527), 1, - sym__declarator, - STATE(3552), 1, - sym__scope_resolution, - STATE(4416), 1, - sym_init_declarator, - STATE(5052), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [61803] = 3, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10813), 1, + anon_sym_LBRACE, + STATE(2859), 1, + sym_compound_statement, + STATE(3336), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7426), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [241160] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4741), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4739), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym___attribute, + STATE(6393), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - 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_EQ, - anon_sym_LT_LT, + anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [61839] = 20, + [241195] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5663), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_PIPE, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4731), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(11020), 1, + anon_sym___asm, + STATE(3239), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6621), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11018), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - [61909] = 19, + anon_sym_asm, + anon_sym___asm__, + [241230] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2550), 1, - anon_sym_decltype, - ACTIONS(4104), 1, - anon_sym_COLON_COLON, - ACTIONS(5258), 1, - sym_identifier, - ACTIONS(5262), 1, - anon_sym_class, - ACTIONS(5264), 1, - anon_sym_struct, - ACTIONS(5266), 1, - anon_sym_union, - ACTIONS(5270), 1, - anon_sym_enum, - ACTIONS(5272), 1, - anon_sym_typename, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, - sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(2645), 1, - sym__type_specifier, - STATE(3909), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [61977] = 22, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym___attribute, + STATE(6405), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + [241265] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, + anon_sym___attribute, + STATE(6302), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + [241300] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(7960), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5715), 1, + ACTIONS(10062), 1, + anon_sym___attribute, + STATE(6305), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6304), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 5, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [62051] = 22, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + [241335] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4322), 1, - anon_sym_RBRACK, - ACTIONS(4495), 1, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym___attribute, + ACTIONS(9538), 1, + anon_sym_requires, + STATE(6366), 1, + sym_trailing_return_type, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62125] = 19, + [241370] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2313), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_COLON_COLON, - ACTIONS(5047), 1, - anon_sym_enum, - ACTIONS(5049), 1, - anon_sym_class, - ACTIONS(5051), 1, - anon_sym_struct, - ACTIONS(5053), 1, - anon_sym_union, - ACTIONS(5055), 1, - anon_sym_typename, - STATE(1298), 1, - sym_template_type, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1326), 1, - sym__type_specifier, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3912), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [62193] = 19, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, + anon_sym___attribute, + ACTIONS(9667), 1, + anon_sym_requires, + STATE(6378), 1, + sym_trailing_return_type, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + [241405] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2550), 1, - anon_sym_decltype, - ACTIONS(4104), 1, - anon_sym_COLON_COLON, - ACTIONS(5258), 1, - sym_identifier, - ACTIONS(5262), 1, - anon_sym_class, - ACTIONS(5264), 1, - anon_sym_struct, - ACTIONS(5266), 1, - anon_sym_union, - ACTIONS(5270), 1, - anon_sym_enum, - ACTIONS(5272), 1, - anon_sym_typename, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, - sym_template_type, - STATE(2377), 1, - sym__type_specifier, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(3909), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [62261] = 19, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, + anon_sym___attribute, + ACTIONS(9893), 1, + anon_sym_requires, + STATE(6382), 1, + sym_trailing_return_type, + ACTIONS(9890), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + [241440] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2313), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_COLON_COLON, - STATE(1298), 1, - sym_template_type, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1326), 1, - sym__type_specifier, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3912), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [62329] = 21, + ACTIONS(7960), 1, + anon_sym_DASH_GT, + ACTIONS(10062), 1, + anon_sym___attribute, + ACTIONS(10992), 1, + anon_sym_requires, + STATE(6383), 1, + sym_trailing_return_type, + ACTIONS(10777), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6304), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + [241475] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5663), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_PIPE, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4803), 2, + ACTIONS(9967), 1, + anon_sym_LBRACK, + ACTIONS(11079), 1, + anon_sym___attribute, + STATE(3192), 1, + sym_parameter_list, + STATE(6689), 1, + sym__function_declarator_seq, + STATE(6664), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11077), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62401] = 22, + anon_sym_try, + [241510] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(9967), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5717), 1, + ACTIONS(11083), 1, + anon_sym___attribute, + STATE(3192), 1, + sym_parameter_list, + STATE(6689), 1, + sym__function_declarator_seq, + STATE(6664), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11081), 7, + anon_sym_COMMA, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [62475] = 19, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [241545] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1941), 1, - anon_sym_enum, - ACTIONS(1943), 1, - anon_sym_class, - ACTIONS(1945), 1, - anon_sym_struct, - ACTIONS(1947), 1, - anon_sym_union, - ACTIONS(1949), 1, - anon_sym_decltype, - ACTIONS(1953), 1, - anon_sym_typename, - ACTIONS(2375), 1, + ACTIONS(11043), 1, sym_identifier, - ACTIONS(3110), 1, - anon_sym_COLON_COLON, - STATE(1298), 1, - sym_template_type, - STATE(1413), 1, - sym__type_specifier, - STATE(1454), 1, - sym_qualified_type_identifier, - STATE(1465), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3895), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(1939), 2, - sym_primitive_type, - sym_auto, - ACTIONS(1937), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1410), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [62543] = 19, + ACTIONS(11047), 1, + aux_sym_preproc_else_token1, + ACTIONS(11049), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11085), 1, + aux_sym_preproc_if_token2, + STATE(6735), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(6788), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(7063), 1, + sym_enumerator, + ACTIONS(11051), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8619), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(8627), 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, + [241584] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10853), 1, + sym_identifier, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(8415), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [241613] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2542), 1, - anon_sym_enum, - ACTIONS(2544), 1, - anon_sym_class, - ACTIONS(2546), 1, - anon_sym_struct, - ACTIONS(2548), 1, - anon_sym_union, - ACTIONS(2550), 1, - anon_sym_decltype, - ACTIONS(2554), 1, - anon_sym_typename, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - ACTIONS(5036), 1, + ACTIONS(10853), 1, sym_identifier, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, - sym_template_type, - STATE(2377), 1, - sym__type_specifier, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(3923), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [62611] = 22, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(8528), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [241642] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10853), 1, + sym_identifier, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(8601), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [241671] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10853), 1, + sym_identifier, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(8662), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [241700] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10853), 1, + sym_identifier, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(8706), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [241729] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5719), 1, + ACTIONS(11055), 1, + anon_sym___asm, + STATE(3239), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6621), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11053), 7, + anon_sym_COMMA, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [62685] = 11, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [241764] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7821), 1, + anon_sym_DASH_GT, + ACTIONS(7836), 1, + anon_sym_requires, + STATE(6161), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 6, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5661), 1, - anon_sym_SLASH, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4691), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4689), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - [62737] = 18, + anon_sym_EQ, + anon_sym_try, + [241797] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(7772), 1, + anon_sym_DASH_GT, + ACTIONS(7803), 1, + anon_sym_requires, + STATE(6302), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4617), 1, - anon_sym_STAR, - ACTIONS(4619), 1, - anon_sym_AMP_AMP, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(3545), 1, - sym__declarator, - STATE(3552), 1, - sym__scope_resolution, - STATE(4286), 1, - sym_init_declarator, - STATE(5210), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [62803] = 19, + [241830] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(9967), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_PIPE, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4689), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + ACTIONS(11089), 1, + anon_sym___attribute, + STATE(3192), 1, + sym_parameter_list, + STATE(6689), 1, + sym__function_declarator_seq, + STATE(6664), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11087), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - [62871] = 11, + anon_sym_try, + [241865] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 1, + ACTIONS(7821), 1, + anon_sym_DASH_GT, + ACTIONS(9902), 1, + anon_sym_requires, + STATE(6188), 1, + sym_trailing_return_type, + ACTIONS(9890), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(5212), 1, + anon_sym_EQ, + anon_sym_try, + [241898] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(5220), 1, + ACTIONS(3307), 1, anon_sym_STAR, - ACTIONS(5222), 1, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5224), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5635), 1, - anon_sym_const, - STATE(3182), 1, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(10815), 1, + anon_sym_LBRACE, + STATE(3336), 1, sym_parameter_list, - STATE(3309), 1, + STATE(5790), 1, + sym_compound_statement, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7234), 1, sym__abstract_declarator, - STATE(3227), 5, + STATE(7328), 1, + sym_abstract_function_declarator, + STATE(6365), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, - sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5024), 15, + [241941] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7772), 1, + anon_sym_DASH_GT, + ACTIONS(7803), 1, + anon_sym_requires, + STATE(6393), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 6, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + anon_sym_LBRACK, + [241974] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7821), 1, anon_sym_DASH_GT, + ACTIONS(10780), 1, + anon_sym_requires, + STATE(6164), 1, + sym_trailing_return_type, + ACTIONS(10777), 2, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [62923] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4495), 1, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6304), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 6, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + anon_sym_EQ, + anon_sym_try, + [242007] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11043), 1, + sym_identifier, + ACTIONS(11047), 1, + aux_sym_preproc_else_token1, + ACTIONS(11049), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11091), 1, + aux_sym_preproc_if_token2, + STATE(6731), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(6795), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(7063), 1, + sym_enumerator, + ACTIONS(11051), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8421), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(8426), 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, + [242046] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7821), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5721), 1, + ACTIONS(7836), 1, + anon_sym_requires, + STATE(6166), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 6, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [62997] = 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [242079] = 13, ACTIONS(3), 1, sym_comment, - 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4761), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3305), 1, anon_sym_LPAREN2, + ACTIONS(3307), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(3311), 1, + anon_sym_AMP, + ACTIONS(8408), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [63033] = 18, + ACTIONS(10794), 1, + anon_sym_LBRACE, + STATE(3336), 1, + sym_parameter_list, + STATE(4558), 1, + sym_compound_statement, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7223), 1, + sym_abstract_function_declarator, + STATE(7234), 1, + sym__abstract_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [242122] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5667), 1, - anon_sym_PIPE, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4689), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - [63099] = 18, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11030), 1, + anon_sym___asm, + STATE(3277), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11028), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [242157] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(4691), 1, - anon_sym_PIPE, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11034), 1, + anon_sym___asm, + STATE(3277), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11032), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [242192] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7772), 1, anon_sym_DASH_GT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4689), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - [63165] = 22, + ACTIONS(9667), 1, + anon_sym_requires, + STATE(6378), 1, + sym_trailing_return_type, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + [242225] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5723), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [63239] = 22, + ACTIONS(8408), 1, + anon_sym_LBRACK, + STATE(951), 1, + sym_compound_statement, + STATE(3336), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7234), 1, + sym__abstract_declarator, + STATE(7446), 1, + sym_abstract_function_declarator, + STATE(6365), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [242268] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4254), 1, - anon_sym_RBRACK, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, + ACTIONS(10853), 1, + sym_identifier, + STATE(6425), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7710), 2, + sym__string, + sym_concatenated_string, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(153), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [242297] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4647), 1, + anon_sym___attribute, + ACTIONS(11093), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(4649), 11, anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63313] = 22, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [242321] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6293), 1, + sym_identifier, + ACTIONS(6295), 1, + anon_sym_COLON_COLON, + ACTIONS(7429), 1, + anon_sym_LBRACE, + STATE(3178), 1, + sym_template_type, + STATE(3355), 1, + sym_enumerator_list, + STATE(6893), 1, + sym__scope_resolution, + ACTIONS(11095), 2, + anon_sym_class, + anon_sym_struct, + STATE(3130), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [242361] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + ACTIONS(8927), 1, + anon_sym_LBRACE, + STATE(1312), 1, + sym_template_type, + STATE(4857), 1, + sym_enumerator_list, + STATE(6901), 1, + sym__scope_resolution, + ACTIONS(11097), 2, + anon_sym_class, + anon_sym_struct, + STATE(4591), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [242401] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6719), 1, + anon_sym___attribute, + ACTIONS(6727), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5725), 1, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(2650), 1, + sym_parameter_list, + STATE(6605), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6721), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [63387] = 19, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_try, + [242433] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6303), 1, + anon_sym_COLON_COLON, + ACTIONS(7366), 1, + anon_sym_LBRACE, + STATE(3037), 1, + sym_template_type, + STATE(3188), 1, + sym_enumerator_list, + STATE(6904), 1, + sym__scope_resolution, + ACTIONS(11099), 2, + anon_sym_class, + anon_sym_struct, + STATE(3038), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [242473] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2375), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(6249), 1, sym_identifier, - ACTIONS(2385), 1, + ACTIONS(6251), 1, anon_sym_COLON_COLON, - ACTIONS(5091), 1, - anon_sym_enum, - ACTIONS(5093), 1, + STATE(1312), 1, + sym_template_type, + STATE(1671), 1, + sym_enumerator_list, + STATE(6901), 1, + sym__scope_resolution, + ACTIONS(11101), 2, anon_sym_class, - ACTIONS(5095), 1, anon_sym_struct, - ACTIONS(5097), 1, - anon_sym_union, - ACTIONS(5099), 1, - anon_sym_typename, - STATE(1298), 1, + STATE(6742), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [242513] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6311), 1, + sym_identifier, + ACTIONS(6313), 1, + anon_sym_COLON_COLON, + ACTIONS(9163), 1, + anon_sym_LBRACE, + STATE(4653), 1, sym_template_type, - STATE(1338), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, + STATE(5249), 1, + sym_enumerator_list, + STATE(6906), 1, + sym__scope_resolution, + ACTIONS(11103), 2, + anon_sym_class, + anon_sym_struct, + STATE(4739), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(3908), 1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [242553] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6317), 1, + sym_identifier, + ACTIONS(6319), 1, + anon_sym_COLON_COLON, + ACTIONS(8279), 1, + anon_sym_LBRACE, + STATE(3981), 1, + sym_template_type, + STATE(4274), 1, + sym_enumerator_list, + STATE(6907), 1, sym__scope_resolution, - STATE(4646), 1, - sym__type_specifier, - STATE(4853), 1, + ACTIONS(11105), 2, + anon_sym_class, + anon_sym_struct, + STATE(3990), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2321), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + [242593] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + ACTIONS(8927), 1, + anon_sym_LBRACE, + STATE(1312), 1, + sym_template_type, + STATE(4857), 1, + sym_enumerator_list, + STATE(6933), 1, + sym__scope_resolution, + ACTIONS(11107), 2, + anon_sym_class, + anon_sym_struct, + STATE(5345), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [63455] = 22, + sym_dependent_type_identifier, + [242633] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(5849), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5727), 1, + ACTIONS(11109), 1, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [63529] = 22, + ACTIONS(11111), 1, + anon_sym_EQ, + ACTIONS(11113), 1, + anon_sym_COLON, + ACTIONS(11115), 1, + anon_sym_try, + STATE(443), 1, + sym_compound_statement, + STATE(7982), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(444), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [242671] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3313), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(6323), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1561), 1, + sym_enumerator_list, + STATE(6924), 1, + sym__scope_resolution, + ACTIONS(11117), 2, + anon_sym_class, + anon_sym_struct, + STATE(1636), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [242711] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5849), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5729), 1, + ACTIONS(11113), 1, + anon_sym_COLON, + ACTIONS(11119), 1, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [63603] = 17, + ACTIONS(11121), 1, + anon_sym_LBRACE, + ACTIONS(11123), 1, + anon_sym_EQ, + ACTIONS(11125), 1, + anon_sym_try, + STATE(1015), 1, + sym_compound_statement, + STATE(7996), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1016), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [242749] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(11129), 1, + anon_sym_EQ, + STATE(3361), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + ACTIONS(11127), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7027), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [242789] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(297), 1, + anon_sym_LBRACE, + ACTIONS(5849), 1, anon_sym_LBRACK, - ACTIONS(4691), 1, - anon_sym_PIPE, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5671), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4689), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(11113), 1, anon_sym_COLON, - anon_sym_QMARK, - [63667] = 22, + ACTIONS(11131), 1, + anon_sym_SEMI, + ACTIONS(11133), 1, + anon_sym_EQ, + ACTIONS(11135), 1, + anon_sym_try, + STATE(190), 1, + sym_compound_statement, + STATE(8183), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(191), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [242827] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4260), 1, - anon_sym_RBRACK, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63741] = 16, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11137), 1, + anon_sym_EQ, + STATE(3361), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + ACTIONS(11127), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7027), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [242867] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1561), 1, + sym_enumerator_list, + STATE(6944), 1, + sym__scope_resolution, + ACTIONS(11139), 2, + anon_sym_class, + anon_sym_struct, + STATE(1575), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [242907] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6727), 1, + anon_sym_LBRACK, + ACTIONS(6739), 1, + anon_sym___attribute, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + STATE(2650), 1, + sym_parameter_list, + STATE(6605), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6741), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_try, + [242939] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5849), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5661), 1, - anon_sym_SLASH, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4691), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4689), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(11113), 1, anon_sym_COLON, - anon_sym_QMARK, - [63803] = 18, + ACTIONS(11121), 1, + anon_sym_LBRACE, + ACTIONS(11123), 1, + anon_sym_EQ, + ACTIONS(11125), 1, + anon_sym_try, + ACTIONS(11141), 1, + anon_sym_SEMI, + STATE(1038), 1, + sym_compound_statement, + STATE(8049), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1041), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [242977] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6253), 1, sym_identifier, - ACTIONS(4429), 1, + ACTIONS(6255), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4617), 1, - anon_sym_STAR, - ACTIONS(4619), 1, - anon_sym_AMP_AMP, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(3517), 1, - sym__declarator, - STATE(3552), 1, - sym__scope_resolution, - STATE(4306), 1, - sym_init_declarator, - STATE(5210), 1, - sym_ms_based_modifier, - STATE(4853), 2, + ACTIONS(6939), 1, + anon_sym_LBRACE, + STATE(2448), 1, sym_template_type, + STATE(2761), 1, + sym_enumerator_list, + STATE(6918), 1, + sym__scope_resolution, + ACTIONS(11143), 2, + anon_sym_class, + anon_sym_struct, + STATE(5204), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [63869] = 22, + [243017] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6727), 1, + anon_sym_LBRACK, + ACTIONS(6731), 1, + anon_sym___attribute, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + STATE(2650), 1, + sym_parameter_list, + STATE(6605), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6733), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_try, + [243049] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6727), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5731), 1, + ACTIONS(6735), 1, + anon_sym___attribute, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(2650), 1, + sym_parameter_list, + STATE(6605), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6737), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [63943] = 15, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_try, + [243081] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(9398), 1, + anon_sym___attribute, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5661), 1, - anon_sym_SLASH, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4691), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4689), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_COLON, - anon_sym_QMARK, - [64003] = 22, + anon_sym_GT2, + [243111] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(9589), 1, + anon_sym___attribute, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5733), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [64077] = 3, + anon_sym_GT2, + [243141] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4528), 18, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(9859), 1, + anon_sym___attribute, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 6, 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_EQ, - anon_sym_LT_LT, + anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, anon_sym_GT2, - [64113] = 13, + [243171] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(10062), 1, + anon_sym___attribute, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6304), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5661), 1, - anon_sym_SLASH, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4691), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4689), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_QMARK, - [64169] = 22, + anon_sym_GT2, + [243201] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7911), 1, + anon_sym_requires, + ACTIONS(10066), 1, + anon_sym___attribute, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6306), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10064), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + anon_sym_GT2, + [243231] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7851), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, + ACTIONS(7911), 1, + anon_sym_requires, + STATE(6534), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 5, anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5735), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [64243] = 22, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [243263] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7851), 1, + anon_sym_DASH_GT, + ACTIONS(7911), 1, + anon_sym_requires, + STATE(6535), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + anon_sym_GT2, + [243295] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7851), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, + ACTIONS(7911), 1, + anon_sym_requires, + STATE(6536), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 5, anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5737), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [64317] = 19, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [243327] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(5324), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(6271), 1, sym_identifier, - ACTIONS(5330), 1, - anon_sym_enum, - ACTIONS(5332), 1, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, + sym_template_type, + STATE(1671), 1, + sym_enumerator_list, + STATE(6933), 1, + sym__scope_resolution, + ACTIONS(11145), 2, anon_sym_class, - ACTIONS(5334), 1, anon_sym_struct, - ACTIONS(5336), 1, - anon_sym_union, - ACTIONS(5338), 1, - anon_sym_decltype, - ACTIONS(5340), 1, - anon_sym_typename, - STATE(2004), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2154), 1, - sym__type_specifier, - STATE(2280), 1, - sym_template_type, - STATE(2287), 1, + STATE(1761), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(3902), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(5328), 2, - sym_primitive_type, - sym_auto, - ACTIONS(5326), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2288), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [64385] = 12, + sym_dependent_type_identifier, + [243367] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, + ACTIONS(7851), 1, anon_sym_DASH_GT, - ACTIONS(5661), 1, - anon_sym_SLASH, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4691), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4689), 12, + ACTIONS(7911), 1, + anon_sym_requires, + STATE(6537), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6304), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 5, anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - [64439] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, anon_sym_LBRACK, - ACTIONS(4617), 1, - anon_sym_STAR, - ACTIONS(4619), 1, - anon_sym_AMP_AMP, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(3518), 1, - sym__declarator, - STATE(3552), 1, - sym__scope_resolution, - STATE(4250), 1, - sym_init_declarator, - STATE(5210), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [64505] = 19, + anon_sym_GT2, + [243399] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4176), 1, - anon_sym_COLON_COLON, - ACTIONS(5364), 1, - sym_identifier, - ACTIONS(5370), 1, - anon_sym_enum, - ACTIONS(5372), 1, - anon_sym_class, - ACTIONS(5374), 1, - anon_sym_struct, - ACTIONS(5376), 1, - anon_sym_union, - ACTIONS(5378), 1, - anon_sym_decltype, - ACTIONS(5380), 1, - anon_sym_typename, - STATE(1971), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2002), 1, - sym__type_specifier, - STATE(2041), 1, - sym_template_type, - STATE(2078), 1, - sym_qualified_type_identifier, - STATE(3897), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(5368), 2, - sym_primitive_type, - sym_auto, - ACTIONS(5366), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2112), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [64573] = 18, + ACTIONS(297), 1, + anon_sym_LBRACE, + ACTIONS(5849), 1, + anon_sym_LBRACK, + ACTIONS(11113), 1, + anon_sym_COLON, + ACTIONS(11133), 1, + anon_sym_EQ, + ACTIONS(11135), 1, + anon_sym_try, + ACTIONS(11147), 1, + anon_sym_SEMI, + STATE(234), 1, + sym_compound_statement, + STATE(8273), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(235), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [243437] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(9398), 1, + anon_sym___attribute, + ACTIONS(9575), 1, + anon_sym_requires, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(4617), 1, - anon_sym_STAR, - ACTIONS(4619), 1, - anon_sym_AMP_AMP, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(3540), 1, - sym__declarator, - STATE(3552), 1, - sym__scope_resolution, - STATE(4380), 1, - sym_init_declarator, - STATE(5210), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [64639] = 22, + anon_sym_GT2, + [243467] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9589), 1, + anon_sym___attribute, + ACTIONS(9833), 1, + anon_sym_requires, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, + anon_sym_GT2, + [243497] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9859), 1, + anon_sym___attribute, + ACTIONS(9908), 1, + anon_sym_requires, + ACTIONS(9890), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 6, anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - ACTIONS(5739), 1, - anon_sym_RBRACK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64713] = 19, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [243527] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10062), 1, + anon_sym___attribute, + ACTIONS(11036), 1, + anon_sym_requires, + ACTIONS(10777), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6304), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [243557] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10066), 1, + anon_sym___attribute, + ACTIONS(11149), 1, + anon_sym_requires, + ACTIONS(10756), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6306), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10064), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [243587] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(4176), 1, - anon_sym_COLON_COLON, - ACTIONS(5364), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6259), 1, sym_identifier, - ACTIONS(5370), 1, - anon_sym_enum, - ACTIONS(5372), 1, + ACTIONS(6261), 1, + anon_sym_COLON_COLON, + ACTIONS(7345), 1, + anon_sym_LBRACE, + STATE(2972), 1, + sym_template_type, + STATE(3186), 1, + sym_enumerator_list, + STATE(6912), 1, + sym__scope_resolution, + ACTIONS(11152), 2, anon_sym_class, - ACTIONS(5374), 1, anon_sym_struct, - ACTIONS(5376), 1, - anon_sym_union, - ACTIONS(5378), 1, - anon_sym_decltype, - ACTIONS(5380), 1, - anon_sym_typename, - STATE(1971), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2005), 1, - sym__type_specifier, - STATE(2041), 1, - sym_template_type, - STATE(2078), 1, + STATE(3009), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(3897), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(5368), 2, - sym_primitive_type, - sym_auto, - ACTIONS(5366), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2112), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [64781] = 3, + sym_dependent_type_identifier, + [243627] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4735), 18, + ACTIONS(7851), 1, + anon_sym_DASH_GT, + ACTIONS(9575), 1, + anon_sym_requires, + STATE(6545), 1, + sym_trailing_return_type, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 5, 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_EQ, - anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_GT2, + [243659] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7851), 1, anon_sym_DASH_GT, + ACTIONS(9833), 1, + anon_sym_requires, + STATE(6546), 1, + sym_trailing_return_type, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_GT2, - [64817] = 3, + [243691] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4823), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(1613), 18, + ACTIONS(7851), 1, + anon_sym_DASH_GT, + ACTIONS(9908), 1, + anon_sym_requires, + STATE(6547), 1, + sym_trailing_return_type, + ACTIONS(9890), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 5, 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_EQ, - anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_GT2, + [243723] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7851), 1, anon_sym_DASH_GT, + ACTIONS(11036), 1, + anon_sym_requires, + STATE(6548), 1, + sym_trailing_return_type, + ACTIONS(10777), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6304), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_GT2, - [64853] = 18, + [243755] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, + ACTIONS(3009), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4667), 1, - anon_sym_STAR, - ACTIONS(4669), 1, - anon_sym_AMP_AMP, - ACTIONS(4671), 1, - anon_sym_AMP, - STATE(3515), 1, - sym__declarator, - STATE(3552), 1, - sym__scope_resolution, - STATE(4416), 1, - sym_init_declarator, - STATE(5052), 1, - sym_ms_based_modifier, - STATE(4853), 2, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6271), 1, + sym_identifier, + STATE(1312), 1, sym_template_type, + STATE(6889), 1, + sym_access_specifier, + STATE(6919), 1, + sym__scope_resolution, + STATE(7913), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [64919] = 22, + ACTIONS(10771), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [243793] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, - anon_sym_RBRACK, - ACTIONS(4495), 1, + ACTIONS(6719), 1, + anon_sym___asm, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10767), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64993] = 11, + STATE(6345), 1, + sym_parameter_list, + STATE(6620), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6721), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [243825] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6765), 1, + anon_sym___asm, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, + anon_sym_LPAREN2, + ACTIONS(10767), 1, + anon_sym_LBRACK, + STATE(6345), 1, + sym_parameter_list, + STATE(6620), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6767), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [243857] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 1, + ACTIONS(6739), 1, + anon_sym___asm, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, + anon_sym_LPAREN2, + ACTIONS(10767), 1, anon_sym_LBRACK, - ACTIONS(5212), 1, + STATE(6345), 1, + sym_parameter_list, + STATE(6620), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6741), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [243889] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6731), 1, + anon_sym___asm, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(5214), 1, - anon_sym_STAR, - ACTIONS(5216), 1, - anon_sym_AMP_AMP, - ACTIONS(5218), 1, - anon_sym_AMP, - ACTIONS(5635), 1, - anon_sym_const, - STATE(3187), 1, + ACTIONS(10767), 1, + anon_sym_LBRACK, + STATE(6345), 1, sym_parameter_list, - STATE(3299), 1, - sym__abstract_declarator, - STATE(3227), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5024), 15, + STATE(6620), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6733), 7, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [243921] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6735), 1, + anon_sym___asm, + ACTIONS(8139), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, + anon_sym_LPAREN2, + ACTIONS(10767), 1, + anon_sym_LBRACK, + STATE(6345), 1, + sym_parameter_list, + STATE(6620), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6737), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [65045] = 19, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [243953] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2544), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6281), 1, + sym_identifier, + ACTIONS(6283), 1, + anon_sym_COLON_COLON, + ACTIONS(7303), 1, + anon_sym_LBRACE, + STATE(2938), 1, + sym_template_type, + STATE(2966), 1, + sym_enumerator_list, + STATE(6895), 1, + sym__scope_resolution, + ACTIONS(11154), 2, anon_sym_class, - ACTIONS(2546), 1, anon_sym_struct, - ACTIONS(2548), 1, - anon_sym_union, - ACTIONS(2550), 1, + STATE(4337), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [243993] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(5849), 1, + anon_sym_LBRACK, + ACTIONS(11113), 1, + anon_sym_COLON, + ACTIONS(11156), 1, + anon_sym_SEMI, + ACTIONS(11158), 1, + anon_sym_EQ, + ACTIONS(11160), 1, + anon_sym_try, + STATE(491), 1, + sym_compound_statement, + STATE(8366), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(492), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [244031] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - ACTIONS(5036), 1, + ACTIONS(6287), 1, sym_identifier, - ACTIONS(5087), 1, - anon_sym_enum, - ACTIONS(5089), 1, - anon_sym_typename, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(6711), 1, + anon_sym_LBRACE, + STATE(2550), 1, sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(3542), 1, - sym__type_specifier, - STATE(3923), 1, + STATE(2629), 1, + sym_enumerator_list, + STATE(6911), 1, sym__scope_resolution, - STATE(4853), 1, + ACTIONS(11162), 2, + anon_sym_class, + anon_sym_struct, + STATE(2755), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + [244071] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6267), 1, + sym_identifier, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(6939), 1, + anon_sym_LBRACE, + STATE(2448), 1, + sym_template_type, + STATE(5448), 1, + sym_enumerator_list, + STATE(6917), 1, + sym__scope_resolution, + ACTIONS(11164), 2, + anon_sym_class, + anon_sym_struct, + STATE(5232), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [65113] = 22, + sym_dependent_type_identifier, + [244111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(5676), 1, + sym_identifier, + ACTIONS(5678), 13, + 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, + [244133] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6727), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5741), 1, + ACTIONS(6765), 1, + anon_sym___attribute, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(2650), 1, + sym_parameter_list, + STATE(6605), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6767), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [65187] = 9, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_try, + [244165] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(5849), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4691), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4689), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(11113), 1, anon_sym_COLON, - anon_sym_QMARK, - [65235] = 22, + ACTIONS(11158), 1, + anon_sym_EQ, + ACTIONS(11160), 1, + anon_sym_try, + ACTIONS(11166), 1, + anon_sym_SEMI, + STATE(503), 1, + sym_compound_statement, + STATE(7992), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(504), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [244203] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5663), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_PIPE, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - ACTIONS(5683), 1, - anon_sym_QMARK, - ACTIONS(5743), 1, - anon_sym_COLON, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65309] = 20, + ACTIONS(10879), 1, + anon_sym___attribute, + STATE(3354), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10877), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [244233] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5663), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_PIPE, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4697), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - [65379] = 22, + ACTIONS(10883), 1, + anon_sym___attribute, + STATE(3354), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10881), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [244263] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5745), 1, + ACTIONS(10887), 1, + anon_sym___attribute, + STATE(3354), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10885), 9, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [65453] = 20, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [244293] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5663), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_PIPE, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4769), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - [65523] = 22, + ACTIONS(10891), 1, + anon_sym___attribute, + STATE(3354), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10889), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [244323] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5663), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_PIPE, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - ACTIONS(5683), 1, - anon_sym_QMARK, - ACTIONS(5747), 1, - anon_sym_COLON, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65597] = 22, + ACTIONS(10895), 1, + anon_sym___attribute, + STATE(3354), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10893), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [244353] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5749), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [65671] = 22, + ACTIONS(10899), 1, + anon_sym___attribute, + STATE(3354), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10897), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [244383] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(5849), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5751), 1, + ACTIONS(11113), 1, + anon_sym_COLON, + ACTIONS(11168), 1, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [65745] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4495), 1, + ACTIONS(11170), 1, + anon_sym_LBRACE, + ACTIONS(11172), 1, + anon_sym_EQ, + ACTIONS(11174), 1, + anon_sym_try, + STATE(1123), 1, + sym_compound_statement, + STATE(8045), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4637), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4635), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - [65793] = 22, + anon_sym_LBRACK_LBRACK, + STATE(1124), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [244421] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4862), 1, - anon_sym_COLON, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5663), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_PIPE, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - ACTIONS(5683), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65867] = 22, + ACTIONS(10903), 1, + anon_sym___attribute, + STATE(3354), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10901), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [244451] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5663), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_PIPE, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - ACTIONS(5683), 1, - anon_sym_QMARK, - ACTIONS(5753), 1, - anon_sym_COLON, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65941] = 19, + ACTIONS(10871), 1, + anon_sym___attribute, + STATE(3354), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10867), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [244481] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2375), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6287), 1, sym_identifier, - ACTIONS(2385), 1, + ACTIONS(6289), 1, anon_sym_COLON_COLON, - ACTIONS(5093), 1, + ACTIONS(6711), 1, + anon_sym_LBRACE, + STATE(2550), 1, + sym_template_type, + STATE(2629), 1, + sym_enumerator_list, + STATE(6911), 1, + sym__scope_resolution, + ACTIONS(11176), 2, anon_sym_class, - ACTIONS(5095), 1, anon_sym_struct, - ACTIONS(5097), 1, - anon_sym_union, - ACTIONS(5101), 1, - anon_sym_enum, - ACTIONS(5103), 1, - anon_sym_typename, - STATE(1298), 1, - sym_template_type, - STATE(1338), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, + STATE(2895), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(3135), 1, - sym__type_specifier, - STATE(3908), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2321), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [66009] = 22, + sym_dependent_type_identifier, + [244521] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(5849), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5755), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [66083] = 22, + ACTIONS(11113), 1, + anon_sym_COLON, + ACTIONS(11170), 1, + anon_sym_LBRACE, + ACTIONS(11172), 1, + anon_sym_EQ, + ACTIONS(11174), 1, + anon_sym_try, + ACTIONS(11178), 1, + anon_sym_SEMI, + STATE(1165), 1, + sym_compound_statement, + STATE(8152), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1166), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [244559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5757), 1, + ACTIONS(6528), 1, + sym_identifier, + ACTIONS(6530), 13, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [66157] = 19, + 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, + [244581] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2313), 1, - sym_identifier, - ACTIONS(2319), 1, + ACTIONS(3009), 1, anon_sym_COLON_COLON, - ACTIONS(2325), 1, - anon_sym_class, - ACTIONS(2327), 1, - anon_sym_struct, - ACTIONS(2329), 1, - anon_sym_union, - ACTIONS(5063), 1, - anon_sym_enum, - ACTIONS(5065), 1, - anon_sym_typename, - STATE(1298), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6271), 1, + sym_identifier, + STATE(1312), 1, sym_template_type, - STATE(1338), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3201), 1, - sym__type_specifier, - STATE(3912), 1, + STATE(6884), 1, + sym_access_specifier, + STATE(6919), 1, sym__scope_resolution, - STATE(4853), 1, + STATE(7448), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2321), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + ACTIONS(10771), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [244619] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3009), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6271), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(6852), 1, + sym_access_specifier, + STATE(6919), 1, + sym__scope_resolution, + STATE(7427), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [66225] = 11, + sym_dependent_type_identifier, + ACTIONS(10771), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [244657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6524), 1, + sym_identifier, + ACTIONS(6526), 13, + 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, + [244679] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 1, + ACTIONS(8408), 1, anon_sym_LBRACK, - ACTIONS(5212), 1, + ACTIONS(8549), 1, + anon_sym_COLON, + ACTIONS(8726), 1, anon_sym_LPAREN2, - ACTIONS(5214), 1, + ACTIONS(8947), 1, anon_sym_STAR, - ACTIONS(5216), 1, + ACTIONS(8949), 1, anon_sym_AMP_AMP, - ACTIONS(5218), 1, + ACTIONS(8951), 1, anon_sym_AMP, - ACTIONS(5447), 1, - anon_sym_const, - STATE(3187), 1, + STATE(3668), 1, sym_parameter_list, - STATE(3310), 1, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7184), 1, sym__abstract_declarator, - STATE(3227), 5, + STATE(6365), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5445), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, + [244717] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5849), 1, + anon_sym_LBRACK, + ACTIONS(11113), 1, + anon_sym_COLON, + ACTIONS(11180), 1, + anon_sym_SEMI, + ACTIONS(11182), 1, + anon_sym_LBRACE, + ACTIONS(11184), 1, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + ACTIONS(11186), 1, + anon_sym_try, + STATE(1155), 1, + sym_compound_statement, + STATE(8175), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1156), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [244755] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(8104), 1, anon_sym_DASH_GT, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(5718), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [66277] = 22, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [244789] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(8104), 1, + anon_sym_DASH_GT, + ACTIONS(9589), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, + STATE(5730), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [244823] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(8104), 1, anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5663), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_PIPE, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - ACTIONS(5683), 1, - anon_sym_QMARK, - ACTIONS(5759), 1, - anon_sym_COLON, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66351] = 22, + ACTIONS(9859), 1, + anon_sym_LBRACK, + STATE(5731), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [244857] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(7732), 1, + anon_sym_requires, + ACTIONS(8104), 1, anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - ACTIONS(5761), 1, - anon_sym_RBRACK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66425] = 22, + ACTIONS(10062), 1, + anon_sym_LBRACK, + STATE(5732), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [244891] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(8104), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5763), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [66499] = 12, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9525), 1, + anon_sym_requires, + STATE(5746), 1, + sym_trailing_return_type, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [244925] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5158), 1, + ACTIONS(8104), 1, anon_sym_DASH_GT, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5204), 1, + ACTIONS(9589), 1, anon_sym_LBRACK, - ACTIONS(3810), 2, + ACTIONS(9608), 1, + anon_sym_requires, + STATE(5747), 1, + sym_trailing_return_type, + ACTIONS(9591), 2, anon_sym_final, anon_sym_override, - ACTIONS(5156), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5202), 7, - anon_sym_COMMA, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 4, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - STATE(3110), 7, - sym_type_qualifier, + [244959] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8104), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(9887), 1, + anon_sym_requires, + STATE(5751), 1, + sym_trailing_return_type, + ACTIONS(9861), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, sym_virtual_specifier, - sym_ref_qualifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [244993] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8104), 1, + anon_sym_DASH_GT, + ACTIONS(10062), 1, + anon_sym_LBRACK, + ACTIONS(10095), 1, + anon_sym_requires, + STATE(5753), 1, sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [66553] = 3, + ACTIONS(10092), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [245027] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4831), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4829), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5849), 1, + anon_sym_LBRACK, + ACTIONS(11113), 1, + anon_sym_COLON, + ACTIONS(11182), 1, + anon_sym_LBRACE, + ACTIONS(11184), 1, + anon_sym_EQ, + ACTIONS(11186), 1, + anon_sym_try, + ACTIONS(11188), 1, + anon_sym_SEMI, + STATE(1173), 1, + sym_compound_statement, + STATE(8252), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, anon_sym_LPAREN2, - anon_sym_STAR, - 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_EQ, - anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + STATE(1174), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [245065] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(700), 1, + anon_sym_LBRACE, + ACTIONS(5849), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [66589] = 19, + ACTIONS(11113), 1, + anon_sym_COLON, + ACTIONS(11190), 1, + anon_sym_SEMI, + ACTIONS(11192), 1, + anon_sym_EQ, + ACTIONS(11194), 1, + anon_sym_try, + STATE(554), 1, + sym_compound_statement, + STATE(8133), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(555), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [245103] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2375), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6277), 1, sym_identifier, - ACTIONS(2385), 1, + ACTIONS(6279), 1, anon_sym_COLON_COLON, - ACTIONS(5093), 1, + ACTIONS(6939), 1, + anon_sym_LBRACE, + STATE(2448), 1, + sym_template_type, + STATE(2761), 1, + sym_enumerator_list, + STATE(6899), 1, + sym__scope_resolution, + ACTIONS(11196), 2, anon_sym_class, - ACTIONS(5095), 1, anon_sym_struct, - ACTIONS(5097), 1, - anon_sym_union, - ACTIONS(5101), 1, - anon_sym_enum, - ACTIONS(5103), 1, - anon_sym_typename, - STATE(1298), 1, - sym_template_type, - STATE(1326), 1, - sym__type_specifier, - STATE(1338), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, + STATE(4151), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(3908), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2321), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [66657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4775), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4773), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [66693] = 19, + sym_dependent_type_identifier, + [245143] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(4176), 1, - anon_sym_COLON_COLON, - ACTIONS(5364), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, sym_identifier, - ACTIONS(5370), 1, - anon_sym_enum, - ACTIONS(5372), 1, + ACTIONS(6299), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, + sym_template_type, + STATE(1561), 1, + sym_enumerator_list, + STATE(6946), 1, + sym__scope_resolution, + ACTIONS(11198), 2, anon_sym_class, - ACTIONS(5374), 1, anon_sym_struct, - ACTIONS(5376), 1, - anon_sym_union, - ACTIONS(5378), 1, - anon_sym_decltype, - ACTIONS(5380), 1, - anon_sym_typename, - STATE(1971), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2041), 1, - sym_template_type, - STATE(2078), 1, + STATE(2245), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(2113), 1, - sym__type_specifier, - STATE(3897), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(5368), 2, - sym_primitive_type, - sym_auto, - ACTIONS(5366), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2112), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [66761] = 22, + sym_dependent_type_identifier, + [245183] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(700), 1, + anon_sym_LBRACE, + ACTIONS(5849), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5765), 1, + ACTIONS(11113), 1, + anon_sym_COLON, + ACTIONS(11192), 1, + anon_sym_EQ, + ACTIONS(11194), 1, + anon_sym_try, + ACTIONS(11200), 1, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [66835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4793), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4791), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [66871] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4272), 1, - anon_sym_RBRACK, - ACTIONS(4495), 1, + STATE(591), 1, + sym_compound_statement, + STATE(8103), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66945] = 11, + anon_sym_LBRACK_LBRACK, + STATE(592), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [245221] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 1, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(5849), 1, anon_sym_LBRACK, - ACTIONS(5212), 1, + ACTIONS(11111), 1, + anon_sym_EQ, + ACTIONS(11113), 1, + anon_sym_COLON, + ACTIONS(11115), 1, + anon_sym_try, + ACTIONS(11202), 1, + anon_sym_SEMI, + STATE(519), 1, + sym_compound_statement, + STATE(8220), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, anon_sym_LPAREN2, - ACTIONS(5214), 1, - anon_sym_STAR, - ACTIONS(5216), 1, - anon_sym_AMP_AMP, - ACTIONS(5218), 1, - anon_sym_AMP, - ACTIONS(5493), 1, - anon_sym_const, - STATE(3187), 1, - sym_parameter_list, - STATE(3311), 1, - sym__abstract_declarator, - STATE(3227), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5491), 15, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [66997] = 19, + STATE(524), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [245259] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2542), 1, - anon_sym_enum, - ACTIONS(2544), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, + sym_template_type, + STATE(1671), 1, + sym_enumerator_list, + STATE(6901), 1, + sym__scope_resolution, + ACTIONS(11204), 2, anon_sym_class, - ACTIONS(2546), 1, anon_sym_struct, - ACTIONS(2548), 1, - anon_sym_union, - ACTIONS(2550), 1, + STATE(4497), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [245299] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(2554), 1, - anon_sym_typename, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - ACTIONS(5036), 1, + ACTIONS(6307), 1, sym_identifier, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, + ACTIONS(6309), 1, + anon_sym_COLON_COLON, + ACTIONS(7303), 1, + anon_sym_LBRACE, + STATE(2938), 1, sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(3501), 1, - sym__type_specifier, - STATE(3923), 1, + STATE(2966), 1, + sym_enumerator_list, + STATE(6909), 1, sym__scope_resolution, - STATE(4853), 1, + ACTIONS(11206), 2, + anon_sym_class, + anon_sym_struct, + STATE(5233), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + [245339] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3009), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6271), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(6888), 1, + sym_access_specifier, + STATE(6919), 1, + sym__scope_resolution, + STATE(7543), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [67065] = 22, + sym_dependent_type_identifier, + ACTIONS(10771), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [245377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5672), 1, + sym_identifier, + ACTIONS(5674), 13, + 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, + [245399] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(4561), 1, + anon_sym___attribute, + ACTIONS(11093), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11208), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(4563), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5767), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [67139] = 22, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [245425] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11212), 1, + aux_sym_preproc_if_token1, + ACTIONS(11216), 1, + anon_sym_RBRACE, + ACTIONS(11214), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8374), 2, + sym_preproc_call, + sym_enumerator, + STATE(9175), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6809), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [245458] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5769), 1, + STATE(3226), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10881), 9, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [67213] = 22, + 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, + [245485] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6858), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(6165), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6860), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_try, + [245510] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11212), 1, + aux_sym_preproc_if_token1, + ACTIONS(11218), 1, + anon_sym_RBRACE, + ACTIONS(11214), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8236), 2, + sym_preproc_call, + sym_enumerator, + STATE(8699), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6645), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [245543] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11222), 1, + anon_sym_LT, + STATE(6723), 1, + sym_template_argument_list, + ACTIONS(11224), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5663), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_PIPE, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - ACTIONS(5683), 1, - anon_sym_QMARK, - ACTIONS(5771), 1, + ACTIONS(11220), 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, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67287] = 22, + anon_sym_try, + [245568] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - ACTIONS(5773), 1, - anon_sym_RBRACK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67361] = 18, + STATE(3226), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10885), 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, + [245595] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11210), 1, sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4617), 1, - anon_sym_STAR, - ACTIONS(4619), 1, - anon_sym_AMP_AMP, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(3519), 1, - sym__declarator, - STATE(3552), 1, - sym__scope_resolution, - STATE(4286), 1, - sym_init_declarator, - STATE(5210), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [67427] = 18, + ACTIONS(11212), 1, + aux_sym_preproc_if_token1, + ACTIONS(11226), 1, + anon_sym_RBRACE, + ACTIONS(11214), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8298), 2, + sym_preproc_call, + sym_enumerator, + STATE(8932), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6654), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [245628] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4617), 1, + ACTIONS(3307), 1, anon_sym_STAR, - ACTIONS(4619), 1, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(4621), 1, + ACTIONS(3311), 1, anon_sym_AMP, - STATE(3506), 1, - sym__declarator, - STATE(3552), 1, - sym__scope_resolution, - STATE(4355), 1, - sym_init_declarator, - STATE(5210), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [67493] = 18, + ACTIONS(8408), 1, + anon_sym_LBRACK, + STATE(3336), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7167), 1, + sym__abstract_declarator, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [245663] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + ACTIONS(8193), 1, + anon_sym_DASH_GT, + ACTIONS(8211), 1, + anon_sym_requires, + ACTIONS(9398), 1, anon_sym_LBRACK, - ACTIONS(4667), 1, - anon_sym_STAR, - ACTIONS(4669), 1, - anon_sym_AMP_AMP, - ACTIONS(4671), 1, - anon_sym_AMP, - STATE(3521), 1, - sym__declarator, - STATE(3552), 1, - sym__scope_resolution, - STATE(4416), 1, - sym_init_declarator, - STATE(5052), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [67559] = 22, + STATE(6776), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [245696] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(8193), 1, + anon_sym_DASH_GT, + ACTIONS(8211), 1, + anon_sym_requires, + ACTIONS(9589), 1, + anon_sym_LBRACK, + STATE(6779), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 3, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [245729] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8193), 1, + anon_sym_DASH_GT, + ACTIONS(8211), 1, + anon_sym_requires, + ACTIONS(9859), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + STATE(6780), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [245762] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8193), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5775), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [67633] = 18, + ACTIONS(8211), 1, + anon_sym_requires, + ACTIONS(10062), 1, + anon_sym_LBRACK, + STATE(6781), 1, + sym_trailing_return_type, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [245795] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5732), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10331), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4617), 1, - anon_sym_STAR, - ACTIONS(4619), 1, - anon_sym_AMP_AMP, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(3528), 1, - sym__declarator, - STATE(3552), 1, + ACTIONS(11228), 1, + sym_identifier, + STATE(6117), 1, sym__scope_resolution, - STATE(4257), 1, - sym_init_declarator, - STATE(5210), 1, - sym_ms_based_modifier, - STATE(4853), 2, + ACTIONS(5734), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7961), 2, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(8447), 3, + sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [67699] = 22, + [245830] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(8193), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5777), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [67773] = 22, + ACTIONS(9398), 1, + anon_sym_LBRACK, + ACTIONS(9716), 1, + anon_sym_requires, + STATE(6784), 1, + sym_trailing_return_type, + ACTIONS(9400), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [245863] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(8193), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5779), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [67847] = 22, + ACTIONS(9589), 1, + anon_sym_LBRACK, + ACTIONS(9875), 1, + anon_sym_requires, + STATE(6789), 1, + sym_trailing_return_type, + ACTIONS(9591), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [245896] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(8193), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, + ACTIONS(9999), 1, + anon_sym_requires, + STATE(6815), 1, + sym_trailing_return_type, + ACTIONS(9861), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [245929] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8193), 1, anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5781), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [67921] = 22, + ACTIONS(10062), 1, + anon_sym_LBRACK, + ACTIONS(11230), 1, + anon_sym_requires, + STATE(6819), 1, + sym_trailing_return_type, + ACTIONS(10092), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [245962] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6858), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6860), 8, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [245987] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10800), 2, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5783), 1, + anon_sym___asm, + STATE(5997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10798), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [67995] = 19, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [246012] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11212), 1, + aux_sym_preproc_if_token1, + ACTIONS(11233), 1, + anon_sym_RBRACE, + ACTIONS(11214), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8024), 2, + sym_preproc_call, + sym_enumerator, + STATE(8563), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6667), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [246045] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11212), 1, + aux_sym_preproc_if_token1, + ACTIONS(11235), 1, + anon_sym_RBRACE, + ACTIONS(11214), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8052), 2, + sym_preproc_call, + sym_enumerator, + STATE(8739), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6809), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [246078] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(700), 1, + anon_sym_LBRACE, + ACTIONS(5849), 1, + anon_sym_LBRACK, + ACTIONS(11113), 1, + anon_sym_COLON, + ACTIONS(11192), 1, + anon_sym_EQ, + ACTIONS(11194), 1, + anon_sym_try, + STATE(554), 1, + sym_compound_statement, + STATE(8133), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(555), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [246113] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2544), 1, - anon_sym_class, - ACTIONS(2546), 1, - anon_sym_struct, - ACTIONS(2548), 1, - anon_sym_union, - ACTIONS(2550), 1, - anon_sym_decltype, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - ACTIONS(5036), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11210), 1, sym_identifier, - ACTIONS(5087), 1, - anon_sym_enum, - ACTIONS(5089), 1, - anon_sym_typename, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, - sym_template_type, - STATE(2377), 1, - sym__type_specifier, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(3923), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [68063] = 3, + ACTIONS(11212), 1, + aux_sym_preproc_if_token1, + ACTIONS(11237), 1, + anon_sym_RBRACE, + ACTIONS(11214), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8191), 2, + sym_preproc_call, + sym_enumerator, + STATE(8605), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6633), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [246146] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4524), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11034), 1, + anon_sym___attribute, + STATE(3361), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11032), 5, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [246179] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11212), 1, + aux_sym_preproc_if_token1, + ACTIONS(11239), 1, + anon_sym_RBRACE, + ACTIONS(11214), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(7969), 2, + sym_preproc_call, + sym_enumerator, + STATE(8549), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6639), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [246212] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, anon_sym_LPAREN2, + ACTIONS(8408), 1, + anon_sym_LBRACK, + ACTIONS(8750), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8752), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(8754), 1, + anon_sym_AMP, + STATE(3371), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(6965), 1, + sym__abstract_declarator, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [246247] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11055), 1, + anon_sym___attribute, + STATE(3361), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11053), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, anon_sym_GT2, - [68099] = 22, + [246280] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(5849), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5785), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [68173] = 19, + ACTIONS(11113), 1, + anon_sym_COLON, + ACTIONS(11158), 1, + anon_sym_EQ, + ACTIONS(11160), 1, + anon_sym_try, + STATE(491), 1, + sym_compound_statement, + STATE(8366), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(492), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [246315] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2550), 1, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(4104), 1, - anon_sym_COLON_COLON, - ACTIONS(5258), 1, + ACTIONS(11241), 1, sym_identifier, - ACTIONS(5260), 1, - anon_sym_enum, - ACTIONS(5262), 1, - anon_sym_class, - ACTIONS(5264), 1, - anon_sym_struct, - ACTIONS(5266), 1, - anon_sym_union, - ACTIONS(5268), 1, - anon_sym_typename, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, - sym_template_type, - STATE(2396), 1, - sym_qualified_type_identifier, - STATE(2656), 1, - sym__type_specifier, - STATE(3909), 1, + ACTIONS(11243), 1, + anon_sym_COLON_COLON, + STATE(6669), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7529), 1, + sym_field_initializer, + STATE(7991), 1, + sym_operator_name, + STATE(7391), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(8447), 3, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [68241] = 22, + sym_template_type, + sym_dependent_type_identifier, + [246352] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(700), 1, + anon_sym_LBRACE, + ACTIONS(5849), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - ACTIONS(5787), 1, - anon_sym_RBRACK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68315] = 22, + ACTIONS(11113), 1, + anon_sym_COLON, + ACTIONS(11192), 1, + anon_sym_EQ, + ACTIONS(11194), 1, + anon_sym_try, + STATE(591), 1, + sym_compound_statement, + STATE(8103), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(592), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [246387] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4298), 1, - anon_sym_RBRACK, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68389] = 22, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11212), 1, + aux_sym_preproc_if_token1, + ACTIONS(11245), 1, + anon_sym_RBRACE, + ACTIONS(11214), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8255), 2, + sym_preproc_call, + sym_enumerator, + STATE(8781), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6809), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [246420] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5789), 1, + STATE(3226), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10889), 9, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [68463] = 3, + 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, + [246447] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4789), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4787), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(10879), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + STATE(3378), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10877), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [68499] = 22, + anon_sym_requires, + [246476] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10891), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5791), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [68573] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(5324), 1, - sym_identifier, - ACTIONS(5330), 1, - anon_sym_enum, - ACTIONS(5332), 1, - anon_sym_class, - ACTIONS(5334), 1, - anon_sym_struct, - ACTIONS(5336), 1, - anon_sym_union, - ACTIONS(5338), 1, - anon_sym_decltype, - ACTIONS(5340), 1, - anon_sym_typename, - STATE(2004), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2197), 1, - sym__type_specifier, - STATE(2280), 1, - sym_template_type, - STATE(2287), 1, - sym_qualified_type_identifier, - STATE(3902), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(5328), 2, - sym_primitive_type, - sym_auto, - ACTIONS(5326), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2288), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [68641] = 22, + STATE(3378), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10889), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [246505] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4310), 1, - anon_sym_RBRACK, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10895), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68715] = 22, + STATE(3378), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10893), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [246534] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10903), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5663), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_PIPE, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - ACTIONS(5683), 1, - anon_sym_QMARK, - ACTIONS(5793), 1, - anon_sym_COLON, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68789] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4625), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4623), 18, - anon_sym_DOT_DOT_DOT, + STATE(3378), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10901), 8, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [68825] = 18, + anon_sym_requires, + [246563] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11210), 1, sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + ACTIONS(11212), 1, + aux_sym_preproc_if_token1, + ACTIONS(11249), 1, + anon_sym_RBRACE, + ACTIONS(11214), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8001), 2, + sym_preproc_call, + sym_enumerator, + STATE(8472), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6809), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [246596] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10883), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - ACTIONS(4667), 1, - anon_sym_STAR, - ACTIONS(4669), 1, - anon_sym_AMP_AMP, - ACTIONS(4671), 1, - anon_sym_AMP, - STATE(3509), 1, - sym__declarator, - STATE(3552), 1, - sym__scope_resolution, - STATE(4416), 1, - sym_init_declarator, - STATE(5052), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [68891] = 22, + STATE(3378), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10881), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [246625] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10887), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5795), 1, + STATE(3378), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10885), 8, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [68965] = 18, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [246654] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + ACTIONS(10899), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - ACTIONS(4617), 1, - anon_sym_STAR, - ACTIONS(4619), 1, - anon_sym_AMP_AMP, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(3514), 1, - sym__declarator, - STATE(3552), 1, - sym__scope_resolution, - STATE(4418), 1, - sym_init_declarator, - STATE(5210), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [69031] = 19, + STATE(3378), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10897), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [246683] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3256), 1, - anon_sym_decltype, - ACTIONS(4156), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, - sym_identifier, - ACTIONS(5278), 1, - anon_sym_enum, - ACTIONS(5280), 1, - anon_sym_class, - ACTIONS(5282), 1, - anon_sym_struct, - ACTIONS(5284), 1, - anon_sym_union, - ACTIONS(5286), 1, - anon_sym_typename, - STATE(2255), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2523), 1, - sym_template_type, - STATE(2603), 1, - sym_qualified_type_identifier, - STATE(2693), 1, - sym__type_specifier, - STATE(3918), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3258), 2, - sym_primitive_type, - sym_auto, - ACTIONS(3232), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2558), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [69099] = 22, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(5849), 1, + anon_sym_LBRACK, + ACTIONS(11111), 1, + anon_sym_EQ, + ACTIONS(11113), 1, + anon_sym_COLON, + ACTIONS(11115), 1, + anon_sym_try, + STATE(519), 1, + sym_compound_statement, + STATE(8220), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(524), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [246718] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5797), 1, + STATE(3226), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10897), 9, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [69173] = 22, + 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, + [246745] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11212), 1, + aux_sym_preproc_if_token1, + ACTIONS(11251), 1, + anon_sym_RBRACE, + ACTIONS(11214), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8283), 2, + sym_preproc_call, + sym_enumerator, + STATE(8896), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6809), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [246778] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10871), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5799), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [69247] = 20, + STATE(3378), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10867), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [246807] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5663), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_PIPE, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4858), 3, - anon_sym_DOT_DOT_DOT, + STATE(3226), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10893), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - [69317] = 22, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [246834] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3305), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, + ACTIONS(3307), 1, + anon_sym_STAR, + ACTIONS(3309), 1, anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, + ACTIONS(3311), 1, anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - ACTIONS(5801), 1, - anon_sym_RBRACK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69391] = 3, + ACTIONS(8408), 1, + anon_sym_LBRACK, + STATE(3336), 1, + sym_parameter_list, + STATE(6368), 1, + sym__function_declarator_seq, + STATE(7209), 1, + sym__abstract_declarator, + STATE(6365), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [246869] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4649), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4647), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9961), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(10869), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [69427] = 18, + STATE(3226), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10901), 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, + [246896] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10930), 1, + anon_sym_COLON_COLON, + ACTIONS(10932), 1, anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, + ACTIONS(11253), 1, + sym_identifier, + STATE(3721), 1, + sym_template_method, + STATE(3722), 1, + sym_dependent_field_identifier, + STATE(3723), 1, + sym_qualified_field_identifier, + STATE(6650), 1, + sym__scope_resolution, + STATE(8266), 1, + sym_operator_name, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [246935] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3197), 1, anon_sym_operator, - ACTIONS(4419), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(11241), 1, sym_identifier, - ACTIONS(4429), 1, + ACTIONS(11243), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4617), 1, - anon_sym_STAR, - ACTIONS(4619), 1, - anon_sym_AMP_AMP, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(3552), 1, + STATE(6669), 1, sym__scope_resolution, - STATE(3561), 1, - sym__declarator, - STATE(4306), 1, - sym_init_declarator, - STATE(5210), 1, - sym_ms_based_modifier, - STATE(4853), 2, + STATE(7991), 1, + sym_operator_name, + STATE(8151), 1, + sym_field_initializer, + STATE(7391), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(8447), 3, + sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [69493] = 12, + [246972] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5158), 1, - anon_sym_DASH_GT, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5805), 1, + ACTIONS(11222), 1, + anon_sym_LT, + STATE(6720), 1, + sym_template_argument_list, + ACTIONS(11257), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5156), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5803), 7, + ACTIONS(11255), 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, - STATE(3110), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [69547] = 3, + anon_sym_try, + [246997] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4813), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4811), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11212), 1, + aux_sym_preproc_if_token1, + ACTIONS(11259), 1, + anon_sym_RBRACE, + ACTIONS(11214), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8050), 2, + sym_preproc_call, + sym_enumerator, + STATE(8721), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6809), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [247030] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11212), 1, + aux_sym_preproc_if_token1, + ACTIONS(11261), 1, + anon_sym_RBRACE, + ACTIONS(11214), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8248), 2, + sym_preproc_call, + sym_enumerator, + STATE(8745), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6809), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [247063] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11030), 1, + anon_sym___attribute, + STATE(3361), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11028), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, anon_sym_GT2, - [69583] = 22, + [247096] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5663), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_PIPE, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - ACTIONS(5683), 1, - anon_sym_QMARK, - ACTIONS(5807), 1, - anon_sym_COLON, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69657] = 22, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11212), 1, + aux_sym_preproc_if_token1, + ACTIONS(11263), 1, + anon_sym_RBRACE, + ACTIONS(11214), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8337), 2, + sym_preproc_call, + sym_enumerator, + STATE(9043), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6603), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [247129] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(5849), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5809), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [69731] = 22, + ACTIONS(11111), 1, + anon_sym_EQ, + ACTIONS(11113), 1, + anon_sym_COLON, + ACTIONS(11115), 1, + anon_sym_try, + STATE(443), 1, + sym_compound_statement, + STATE(7982), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(444), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [247164] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4332), 1, - anon_sym_RBRACK, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(297), 1, + anon_sym_LBRACE, + ACTIONS(5849), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69805] = 18, + ACTIONS(11113), 1, + anon_sym_COLON, + ACTIONS(11133), 1, + anon_sym_EQ, + ACTIONS(11135), 1, + anon_sym_try, + STATE(190), 1, + sym_compound_statement, + STATE(8183), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(191), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [247199] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, + ACTIONS(11020), 1, + anon_sym___attribute, + STATE(3361), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11018), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [247232] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3197), 1, anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(11024), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4617), 1, - anon_sym_STAR, - ACTIONS(4619), 1, - anon_sym_AMP_AMP, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(3541), 1, - sym__declarator, - STATE(3552), 1, + ACTIONS(11026), 1, + anon_sym_template, + ACTIONS(11265), 1, + sym_identifier, + STATE(2800), 1, + sym_qualified_field_identifier, + STATE(2814), 1, + sym_dependent_field_identifier, + STATE(2819), 1, + sym_template_method, + STATE(6660), 1, sym__scope_resolution, - STATE(4355), 1, - sym_init_declarator, - STATE(5210), 1, - sym_ms_based_modifier, - STATE(4853), 2, + STATE(8294), 1, + sym_operator_name, + STATE(8447), 3, + sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, + [247271] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(11069), 1, + anon_sym_COLON_COLON, + ACTIONS(11071), 1, + anon_sym_template, + ACTIONS(11265), 1, + sym_identifier, + STATE(2800), 1, + sym_qualified_field_identifier, + STATE(2814), 1, + sym_dependent_field_identifier, + STATE(2819), 1, + sym_template_method, + STATE(6661), 1, + sym__scope_resolution, + STATE(8042), 1, sym_operator_name, - [69871] = 13, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [247310] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5661), 1, - anon_sym_SLASH, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4827), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4825), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_QMARK, - [69927] = 8, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11212), 1, + aux_sym_preproc_if_token1, + ACTIONS(11267), 1, + anon_sym_RBRACE, + ACTIONS(11214), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8272), 2, + sym_preproc_call, + sym_enumerator, + STATE(8872), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6673), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [247343] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11212), 1, + aux_sym_preproc_if_token1, + ACTIONS(11269), 1, + anon_sym_RBRACE, + ACTIONS(11214), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8325), 2, + sym_preproc_call, + sym_enumerator, + STATE(9086), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6653), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [247376] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11273), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4870), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4868), 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(5997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11271), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [69973] = 22, + anon_sym_try, + [247401] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(5849), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - ACTIONS(5811), 1, - anon_sym_RBRACK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70047] = 3, + ACTIONS(11113), 1, + anon_sym_COLON, + ACTIONS(11158), 1, + anon_sym_EQ, + ACTIONS(11160), 1, + anon_sym_try, + STATE(503), 1, + sym_compound_statement, + STATE(7992), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(504), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [247436] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4817), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4815), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11065), 1, + anon_sym___attribute, + STATE(3361), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11063), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, anon_sym_GT2, - [70083] = 22, + [247469] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, - anon_sym_RBRACK, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70157] = 19, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11212), 1, + aux_sym_preproc_if_token1, + ACTIONS(11275), 1, + anon_sym_RBRACE, + ACTIONS(11214), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8322), 2, + sym_preproc_call, + sym_enumerator, + STATE(8981), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6809), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [247502] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1941), 1, - anon_sym_enum, - ACTIONS(1943), 1, - anon_sym_class, - ACTIONS(1945), 1, - anon_sym_struct, - ACTIONS(1947), 1, - anon_sym_union, - ACTIONS(1949), 1, - anon_sym_decltype, - ACTIONS(2375), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11210), 1, sym_identifier, - ACTIONS(3110), 1, + ACTIONS(11212), 1, + aux_sym_preproc_if_token1, + ACTIONS(11277), 1, + anon_sym_RBRACE, + ACTIONS(11214), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8018), 2, + sym_preproc_call, + sym_enumerator, + STATE(8540), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6672), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [247535] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(11243), 1, anon_sym_COLON_COLON, - ACTIONS(5061), 1, - anon_sym_typename, - STATE(1298), 1, - sym_template_type, - STATE(1454), 1, - sym_qualified_type_identifier, - STATE(2812), 1, - sym__type_specifier, - STATE(2900), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3895), 1, + ACTIONS(11279), 1, + sym_identifier, + ACTIONS(11281), 1, + anon_sym_template, + STATE(2800), 1, + sym_qualified_field_identifier, + STATE(2814), 1, + sym_dependent_field_identifier, + STATE(2819), 1, + sym_template_method, + STATE(6669), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(1939), 2, - sym_primitive_type, - sym_auto, - ACTIONS(5059), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1410), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7991), 1, + sym_operator_name, + STATE(8447), 3, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [70225] = 22, + sym_template_type, + sym_dependent_type_identifier, + [247574] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 1, - anon_sym_RBRACK, - ACTIONS(4495), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70299] = 19, + STATE(3226), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10867), 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, + [247601] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3236), 1, - anon_sym_enum, - ACTIONS(3238), 1, - anon_sym_class, - ACTIONS(3240), 1, - anon_sym_struct, - ACTIONS(3242), 1, - anon_sym_union, - ACTIONS(3256), 1, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(3260), 1, - anon_sym_typename, - ACTIONS(4194), 1, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(5057), 1, + ACTIONS(11061), 1, + anon_sym_template, + ACTIONS(11283), 1, sym_identifier, - STATE(2255), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2523), 1, - sym_template_type, - STATE(2603), 1, - sym_qualified_type_identifier, - STATE(2604), 1, - sym__type_specifier, - STATE(3876), 1, + STATE(3911), 1, + sym_template_method, + STATE(3912), 1, + sym_dependent_field_identifier, + STATE(3914), 1, + sym_qualified_field_identifier, + STATE(6671), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3258), 2, - sym_primitive_type, - sym_auto, - ACTIONS(3232), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2558), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(7990), 1, + sym_operator_name, + STATE(8447), 3, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [70367] = 22, + sym_template_type, + sym_dependent_type_identifier, + [247640] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5663), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_PIPE, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - ACTIONS(5683), 1, - anon_sym_QMARK, - ACTIONS(5813), 1, - anon_sym_COLON, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70441] = 12, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11212), 1, + aux_sym_preproc_if_token1, + ACTIONS(11285), 1, + anon_sym_RBRACE, + ACTIONS(11214), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8168), 2, + sym_preproc_call, + sym_enumerator, + STATE(8566), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6809), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [247673] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5158), 1, - anon_sym_DASH_GT, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5817), 1, - anon_sym_LBRACK, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5156), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5815), 7, - anon_sym_COMMA, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11212), 1, + aux_sym_preproc_if_token1, + ACTIONS(11287), 1, + anon_sym_RBRACE, + ACTIONS(11214), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8371), 2, + sym_preproc_call, + sym_enumerator, + STATE(9169), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6809), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [247706] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9961), 1, anon_sym_LPAREN2, + ACTIONS(10869), 1, + anon_sym_LBRACK, + STATE(3226), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10877), 9, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - STATE(3110), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [70495] = 22, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [247733] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4320), 1, - anon_sym_RBRACK, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70569] = 3, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11212), 1, + aux_sym_preproc_if_token1, + ACTIONS(11289), 1, + anon_sym_RBRACE, + ACTIONS(11214), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8014), 2, + sym_preproc_call, + sym_enumerator, + STATE(8511), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6623), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [247766] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1529), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(1531), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(297), 1, + anon_sym_LBRACE, + ACTIONS(5849), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [70605] = 9, + ACTIONS(11113), 1, + anon_sym_COLON, + ACTIONS(11133), 1, + anon_sym_EQ, + ACTIONS(11135), 1, + anon_sym_try, + STATE(234), 1, + sym_compound_statement, + STATE(8273), 1, + sym_field_initializer_list, + ACTIONS(5720), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(235), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [247801] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6267), 1, + sym_identifier, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(6939), 1, + anon_sym_LBRACE, + STATE(2448), 1, + sym_template_type, + STATE(5450), 1, + sym_enumerator_list, + STATE(6917), 1, + sym__scope_resolution, + STATE(5217), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [247837] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, + STATE(3320), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10877), 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, + [247863] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11127), 1, + anon_sym_COMMA, + STATE(3797), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7027), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [247899] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8141), 1, anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4821), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4819), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9667), 1, + anon_sym_requires, + STATE(6378), 1, + sym_trailing_return_type, + ACTIONS(9664), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_COLON, - anon_sym_QMARK, - [70653] = 8, + [247929] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + ACTIONS(8927), 1, + anon_sym_LBRACE, + STATE(1312), 1, + sym_template_type, + STATE(4761), 1, + sym_enumerator_list, + STATE(6933), 1, + sym__scope_resolution, + STATE(5342), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [247965] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(8141), 1, + anon_sym_DASH_GT, + ACTIONS(9893), 1, + anon_sym_requires, + STATE(6382), 1, + sym_trailing_return_type, + ACTIONS(9890), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 3, anon_sym_LPAREN2, - ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - STATE(2120), 1, - sym_argument_list, - ACTIONS(4767), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4765), 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [70699] = 12, + [247995] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5821), 1, - anon_sym_AMP_AMP, - ACTIONS(5824), 1, - anon_sym_AMP, - ACTIONS(5827), 1, - anon_sym_LBRACK, - ACTIONS(5829), 1, - anon_sym_const, - ACTIONS(5835), 1, + ACTIONS(8141), 1, anon_sym_DASH_GT, - ACTIONS(5841), 1, - anon_sym_noexcept, - ACTIONS(5844), 1, - anon_sym_throw, - ACTIONS(5838), 2, + ACTIONS(10992), 1, + anon_sym_requires, + STATE(6383), 1, + sym_trailing_return_type, + ACTIONS(10777), 2, anon_sym_final, anon_sym_override, - ACTIONS(5832), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5819), 7, - anon_sym_COMMA, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6304), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 3, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_COLON, - STATE(3110), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [70753] = 3, + [248025] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1518), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6281), 1, + sym_identifier, + ACTIONS(6283), 1, + anon_sym_COLON_COLON, + ACTIONS(7303), 1, + anon_sym_LBRACE, + STATE(2938), 1, + sym_template_type, + STATE(2997), 1, + sym_enumerator_list, + STATE(6895), 1, + sym__scope_resolution, + STATE(4354), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [248061] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5748), 6, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(1520), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(5750), 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_LT_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [70789] = 19, + [248081] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(3256), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(4156), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(6271), 1, sym_identifier, - ACTIONS(5278), 1, - anon_sym_enum, - ACTIONS(5280), 1, - anon_sym_class, - ACTIONS(5282), 1, - anon_sym_struct, - ACTIONS(5284), 1, - anon_sym_union, - ACTIONS(5286), 1, - anon_sym_typename, - STATE(2255), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2523), 1, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, sym_template_type, - STATE(2603), 1, - sym_qualified_type_identifier, - STATE(2604), 1, - sym__type_specifier, - STATE(3918), 1, + STATE(1674), 1, + sym_enumerator_list, + STATE(6933), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3258), 2, - sym_primitive_type, - sym_auto, - ACTIONS(3232), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2558), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(1765), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [70857] = 22, + sym_dependent_type_identifier, + [248117] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5847), 1, + STATE(3320), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10881), 8, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [70931] = 22, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [248143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(11293), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5849), 1, + ACTIONS(11291), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [71005] = 3, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [248163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4783), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4781), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(11297), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(11295), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - 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_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [71041] = 22, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [248183] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5663), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_PIPE, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - ACTIONS(5683), 1, - anon_sym_QMARK, - ACTIONS(5851), 1, - anon_sym_COLON, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71115] = 3, + STATE(3320), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10885), 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, + [248209] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4843), 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4841), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, + ACTIONS(10869), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [71151] = 22, + STATE(3320), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10889), 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, + [248235] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5853), 1, + STATE(3320), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10893), 8, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [71225] = 22, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [248261] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, + sym_template_type, + STATE(1674), 1, + sym_enumerator_list, + STATE(6901), 1, + sym__scope_resolution, + STATE(6743), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [248297] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5855), 1, + STATE(3320), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10897), 8, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [71299] = 22, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [248323] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1567), 1, + sym_enumerator_list, + STATE(6944), 1, + sym__scope_resolution, + STATE(1558), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [248359] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(8141), 1, + anon_sym_DASH_GT, + STATE(6393), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, anon_sym_LPAREN2, - ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5857), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [71373] = 22, + anon_sym_COLON, + [248389] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6287), 1, + sym_identifier, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(6711), 1, + anon_sym_LBRACE, + STATE(2550), 1, + sym_template_type, + STATE(2611), 1, + sym_enumerator_list, + STATE(6911), 1, + sym__scope_resolution, + STATE(2874), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [248425] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_RBRACK, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71447] = 22, + STATE(3320), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10901), 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, + [248451] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4294), 1, - anon_sym_RBRACK, - ACTIONS(4495), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5232), 1, - anon_sym_SLASH, - ACTIONS(5234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_AMP_AMP, - ACTIONS(5238), 1, - anon_sym_PIPE, - ACTIONS(5240), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_AMP, - ACTIONS(5254), 1, - anon_sym_QMARK, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5228), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5230), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5244), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5246), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5248), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71521] = 22, + STATE(3320), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10867), 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, + [248477] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(8141), 1, + anon_sym_DASH_GT, + STATE(6405), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6404), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 3, anon_sym_LPAREN2, - ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_DOT, - ACTIONS(5008), 1, - anon_sym_DASH_GT, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5661), 1, - anon_sym_SLASH, - ACTIONS(5663), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_PIPE, - ACTIONS(5669), 1, - anon_sym_CARET, - ACTIONS(5671), 1, - anon_sym_AMP, - ACTIONS(5683), 1, - anon_sym_QMARK, - ACTIONS(5859), 1, anon_sym_COLON, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5659), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5673), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5675), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5677), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71595] = 19, + [248507] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(4176), 1, - anon_sym_COLON_COLON, - ACTIONS(5364), 1, - sym_identifier, - ACTIONS(5372), 1, - anon_sym_class, - ACTIONS(5374), 1, - anon_sym_struct, - ACTIONS(5376), 1, - anon_sym_union, - ACTIONS(5378), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(5384), 1, - anon_sym_enum, - ACTIONS(5386), 1, - anon_sym_typename, - STATE(1971), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2002), 1, - sym__type_specifier, - STATE(2041), 1, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6303), 1, + anon_sym_COLON_COLON, + ACTIONS(7366), 1, + anon_sym_LBRACE, + STATE(3037), 1, sym_template_type, - STATE(2078), 1, - sym_qualified_type_identifier, - STATE(3897), 1, + STATE(3202), 1, + sym_enumerator_list, + STATE(6904), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(5368), 2, - sym_primitive_type, - sym_auto, - ACTIONS(5366), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2112), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(3045), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [71663] = 22, + sym_dependent_type_identifier, + [248543] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(8141), 1, + anon_sym_DASH_GT, + STATE(6302), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6301), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 3, anon_sym_LPAREN2, - ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5861), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [71737] = 22, + anon_sym_COLON, + [248573] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(7803), 1, + anon_sym_requires, + ACTIONS(8141), 1, + anon_sym_DASH_GT, + STATE(6305), 1, + sym_trailing_return_type, + ACTIONS(7801), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6304), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 3, anon_sym_LPAREN2, - ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5863), 1, - anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [71811] = 19, + anon_sym_COLON, + [248603] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2550), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(4104), 1, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6251), 1, anon_sym_COLON_COLON, - ACTIONS(5258), 1, + ACTIONS(8927), 1, + anon_sym_LBRACE, + STATE(1312), 1, + sym_template_type, + STATE(4761), 1, + sym_enumerator_list, + STATE(6901), 1, + sym__scope_resolution, + STATE(4594), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [248639] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6253), 1, sym_identifier, - ACTIONS(5260), 1, - anon_sym_enum, - ACTIONS(5262), 1, - anon_sym_class, - ACTIONS(5264), 1, - anon_sym_struct, - ACTIONS(5266), 1, - anon_sym_union, - ACTIONS(5268), 1, - anon_sym_typename, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2354), 1, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(6939), 1, + anon_sym_LBRACE, + STATE(2448), 1, sym_template_type, - STATE(2396), 1, + STATE(2792), 1, + sym_enumerator_list, + STATE(6918), 1, + sym__scope_resolution, + STATE(5214), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(2645), 1, - sym__type_specifier, - STATE(3909), 1, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [248675] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6311), 1, + sym_identifier, + ACTIONS(6313), 1, + anon_sym_COLON_COLON, + ACTIONS(9163), 1, + anon_sym_LBRACE, + STATE(4653), 1, + sym_template_type, + STATE(5213), 1, + sym_enumerator_list, + STATE(6906), 1, sym__scope_resolution, - STATE(4853), 1, + STATE(4895), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(2552), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2408), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + [248711] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3313), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(6323), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(1567), 1, + sym_enumerator_list, + STATE(6924), 1, + sym__scope_resolution, + STATE(1635), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [71879] = 22, + sym_dependent_type_identifier, + [248747] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, + anon_sym_LT, + STATE(3118), 1, + sym_template_argument_list, + ACTIONS(5849), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(5720), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4639), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [248773] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(6243), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(10832), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10834), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [248795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11301), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5865), 1, + ACTIONS(11299), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [248815] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [71953] = 19, + STATE(3118), 1, + sym_template_argument_list, + ACTIONS(3281), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3274), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [248841] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11257), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(11255), 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, + [248861] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(3256), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(4156), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, + ACTIONS(6317), 1, sym_identifier, - ACTIONS(5278), 1, - anon_sym_enum, - ACTIONS(5280), 1, - anon_sym_class, - ACTIONS(5282), 1, - anon_sym_struct, - ACTIONS(5284), 1, - anon_sym_union, - ACTIONS(5286), 1, - anon_sym_typename, - STATE(2255), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2523), 1, + ACTIONS(6319), 1, + anon_sym_COLON_COLON, + ACTIONS(8279), 1, + anon_sym_LBRACE, + STATE(3981), 1, sym_template_type, - STATE(2603), 1, - sym_qualified_type_identifier, - STATE(2679), 1, - sym__type_specifier, - STATE(3918), 1, + STATE(4248), 1, + sym_enumerator_list, + STATE(6907), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3258), 2, - sym_primitive_type, - sym_auto, - ACTIONS(3232), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2558), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(3997), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [72021] = 22, + sym_dependent_type_identifier, + [248897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(11305), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5867), 1, + ACTIONS(11303), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [72095] = 22, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [248917] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + sym_identifier, + ACTIONS(6299), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, + sym_template_type, + STATE(1567), 1, + sym_enumerator_list, + STATE(6946), 1, + sym__scope_resolution, + STATE(2247), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [248953] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + STATE(1312), 1, + sym_template_type, + STATE(1674), 1, + sym_enumerator_list, + STATE(6901), 1, + sym__scope_resolution, + STATE(4519), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [248989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11309), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5869), 1, + ACTIONS(11307), 10, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [72169] = 19, + 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, + [249009] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2375), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6277), 1, sym_identifier, - ACTIONS(2385), 1, + ACTIONS(6279), 1, anon_sym_COLON_COLON, - ACTIONS(5091), 1, - anon_sym_enum, - ACTIONS(5093), 1, - anon_sym_class, - ACTIONS(5095), 1, - anon_sym_struct, - ACTIONS(5097), 1, - anon_sym_union, - ACTIONS(5099), 1, - anon_sym_typename, - STATE(1298), 1, + ACTIONS(6939), 1, + anon_sym_LBRACE, + STATE(2448), 1, sym_template_type, - STATE(1338), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3052), 1, - sym__type_specifier, - STATE(3908), 1, + STATE(2792), 1, + sym_enumerator_list, + STATE(6899), 1, sym__scope_resolution, - STATE(4853), 1, + STATE(4152), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2321), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + [249045] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6287), 1, + sym_identifier, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(6711), 1, + anon_sym_LBRACE, + STATE(2550), 1, + sym_template_type, + STATE(2611), 1, + sym_enumerator_list, + STATE(6911), 1, + sym__scope_resolution, + STATE(2756), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [72237] = 22, + sym_dependent_type_identifier, + [249081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(7013), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5871), 1, + ACTIONS(7015), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [72311] = 22, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [249101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - ACTIONS(4639), 1, + ACTIONS(11313), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_DOT, - ACTIONS(4645), 1, - anon_sym_DASH_GT, - ACTIONS(5166), 1, - anon_sym_SLASH, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5186), 1, - anon_sym_AMP_AMP, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_AMP, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5873), 1, + ACTIONS(11311), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2120), 1, - sym_argument_list, - ACTIONS(5140), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5198), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [72385] = 11, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [249121] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6307), 1, + sym_identifier, + ACTIONS(6309), 1, + anon_sym_COLON_COLON, + ACTIONS(7303), 1, + anon_sym_LBRACE, + STATE(2938), 1, + sym_template_type, + STATE(2997), 1, + sym_enumerator_list, + STATE(6909), 1, + sym__scope_resolution, + STATE(5215), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [249157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 1, + ACTIONS(6972), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(5212), 1, - anon_sym_LPAREN2, - ACTIONS(5220), 1, - anon_sym_STAR, - ACTIONS(5222), 1, - anon_sym_AMP_AMP, - ACTIONS(5224), 1, - anon_sym_AMP, - ACTIONS(5493), 1, - anon_sym_const, - STATE(3182), 1, - sym_parameter_list, - STATE(3300), 1, - sym__abstract_declarator, - STATE(3227), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5491), 15, + ACTIONS(6974), 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_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [72437] = 11, + anon_sym_COLON, + anon_sym_try, + [249177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 1, + ACTIONS(11317), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(5212), 1, - anon_sym_LPAREN2, - ACTIONS(5220), 1, - anon_sym_STAR, - ACTIONS(5222), 1, - anon_sym_AMP_AMP, - ACTIONS(5224), 1, - anon_sym_AMP, - ACTIONS(5447), 1, - anon_sym_const, - STATE(3182), 1, - sym_parameter_list, - STATE(3294), 1, - sym__abstract_declarator, - STATE(3227), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5445), 15, + ACTIONS(11315), 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_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [72489] = 19, + anon_sym_COLON, + anon_sym_try, + [249197] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(4176), 1, - anon_sym_COLON_COLON, - ACTIONS(5364), 1, - sym_identifier, - ACTIONS(5372), 1, - anon_sym_class, - ACTIONS(5374), 1, - anon_sym_struct, - ACTIONS(5376), 1, - anon_sym_union, - ACTIONS(5378), 1, + ACTIONS(3355), 1, anon_sym_decltype, - ACTIONS(5384), 1, - anon_sym_enum, - ACTIONS(5386), 1, - anon_sym_typename, - STATE(1971), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2005), 1, - sym__type_specifier, - STATE(2041), 1, + ACTIONS(6293), 1, + sym_identifier, + ACTIONS(6295), 1, + anon_sym_COLON_COLON, + ACTIONS(7429), 1, + anon_sym_LBRACE, + STATE(3178), 1, sym_template_type, - STATE(2078), 1, - sym_qualified_type_identifier, - STATE(3897), 1, + STATE(3366), 1, + sym_enumerator_list, + STATE(6893), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(5368), 2, - sym_primitive_type, - sym_auto, - ACTIONS(5366), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2112), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(3135), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [72557] = 19, + sym_dependent_type_identifier, + [249233] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_decltype, - ACTIONS(1035), 1, + ACTIONS(8141), 1, + anon_sym_DASH_GT, + ACTIONS(9538), 1, + anon_sym_requires, + STATE(6366), 1, + sym_trailing_return_type, + ACTIONS(9535), 2, + anon_sym_final, + anon_sym_override, + STATE(6174), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [249263] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6259), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(6261), 1, anon_sym_COLON_COLON, - ACTIONS(2325), 1, - anon_sym_class, - ACTIONS(2327), 1, - anon_sym_struct, - ACTIONS(2329), 1, - anon_sym_union, - ACTIONS(5063), 1, - anon_sym_enum, - ACTIONS(5065), 1, - anon_sym_typename, - STATE(1298), 1, + ACTIONS(7345), 1, + anon_sym_LBRACE, + STATE(2972), 1, sym_template_type, - STATE(1326), 1, - sym__type_specifier, - STATE(1338), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym_qualified_type_identifier, - STATE(3912), 1, + STATE(3155), 1, + sym_enumerator_list, + STATE(6912), 1, sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(111), 2, - sym_primitive_type, - sym_auto, - ACTIONS(2321), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1358), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, + STATE(2993), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, sym_decltype, - sym_class_specifier, - sym_dependent_type, - [72625] = 12, + sym_dependent_type_identifier, + [249299] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5360), 1, - anon_sym_DASH_GT, - ACTIONS(5817), 1, + ACTIONS(11043), 1, + sym_identifier, + ACTIONS(11319), 1, + aux_sym_preproc_if_token2, + ACTIONS(11321), 1, + aux_sym_preproc_else_token1, + ACTIONS(11323), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11325), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(6982), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(8555), 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, + [249328] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10895), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - ACTIONS(3810), 2, + STATE(3646), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10893), 6, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5815), 6, + anon_sym_GT2, + anon_sym_requires, + [249355] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10264), 1, + anon_sym_try, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(548), 1, + sym_compound_statement, + STATE(549), 1, + sym_try_statement, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [249390] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11043), 1, + sym_identifier, + ACTIONS(11321), 1, + aux_sym_preproc_else_token1, + ACTIONS(11323), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11327), 1, + aux_sym_preproc_if_token2, + ACTIONS(11325), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(6982), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(8843), 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, + [249419] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10879), 1, + anon_sym___attribute, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3652), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10877), 6, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [249446] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11329), 1, + aux_sym_preproc_if_token2, + ACTIONS(11331), 1, + aux_sym_preproc_else_token1, + ACTIONS(11333), 1, + aux_sym_preproc_elif_token1, + STATE(6764), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8829), 1, + sym_enumerator, + ACTIONS(11335), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8736), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [249477] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11091), 1, + aux_sym_preproc_if_token2, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11331), 1, + aux_sym_preproc_else_token1, + ACTIONS(11333), 1, + aux_sym_preproc_elif_token1, + STATE(6795), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8829), 1, + sym_enumerator, + ACTIONS(11335), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8421), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [249508] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11043), 1, + sym_identifier, + ACTIONS(11321), 1, + aux_sym_preproc_else_token1, + ACTIONS(11323), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11337), 1, + aux_sym_preproc_if_token2, + ACTIONS(11325), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(6982), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(8844), 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, + [249537] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10666), 1, + anon_sym_COLON_COLON, + ACTIONS(11339), 1, + sym_identifier, + STATE(6092), 1, + sym__scope_resolution, + STATE(9251), 1, + sym_qualified_identifier, + ACTIONS(11341), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [249568] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, + ACTIONS(10879), 1, + anon_sym___attribute, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3646), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10877), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - STATE(3160), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [72678] = 12, + anon_sym_requires, + [249595] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5158), 1, - anon_sym_DASH_GT, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5877), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9997), 1, + anon_sym_try, + ACTIONS(10196), 1, anon_sym_LBRACK, - STATE(3231), 1, - sym_trailing_return_type, - ACTIONS(5156), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3175), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5875), 9, - anon_sym_COMMA, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(11170), 1, + anon_sym_LBRACE, + STATE(1292), 1, + sym_compound_statement, + STATE(1293), 1, + sym_try_statement, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [249630] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11331), 1, + aux_sym_preproc_else_token1, + ACTIONS(11333), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11343), 1, + aux_sym_preproc_if_token2, + STATE(6978), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8829), 1, + sym_enumerator, + ACTIONS(11335), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8432), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [249661] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(55), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10264), 1, + anon_sym_try, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(414), 1, + sym_compound_statement, + STATE(416), 1, + sym_try_statement, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [249696] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10276), 1, + anon_sym_try, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(465), 1, + sym_compound_statement, + STATE(466), 1, + sym_try_statement, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [249731] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(11345), 1, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - [72731] = 14, + STATE(1371), 1, + sym_attribute_specifier, + STATE(1645), 1, + sym__enum_base_clause, + STATE(1675), 1, + sym_enumerator_list, + ACTIONS(5506), 4, + anon_sym_COMMA, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [249762] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(11345), 1, + anon_sym_COLON, + STATE(1392), 1, + sym_attribute_specifier, + STATE(1646), 1, + sym__enum_base_clause, + STATE(1678), 1, + sym_enumerator_list, + ACTIONS(5456), 4, + anon_sym_COMMA, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [249793] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9997), 1, + anon_sym_try, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3742), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3193), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3394), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - [72788] = 12, + ACTIONS(11170), 1, + anon_sym_LBRACE, + STATE(1280), 1, + sym_compound_statement, + STATE(1281), 1, + sym_try_statement, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [249828] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5256), 1, - anon_sym_DASH_GT, - ACTIONS(5817), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5815), 6, - anon_sym_COMMA, + ACTIONS(10765), 1, anon_sym_LPAREN2, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11063), 4, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [249857] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10666), 1, + anon_sym_COLON_COLON, + ACTIONS(11347), 1, + sym_identifier, + STATE(6092), 1, + sym__scope_resolution, + STATE(9122), 1, + sym_qualified_identifier, + ACTIONS(11349), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [249888] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(9981), 1, + anon_sym_try, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11182), 1, anon_sym_LBRACE, - anon_sym_EQ, - STATE(3158), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [72841] = 13, + STATE(1185), 1, + sym_compound_statement, + STATE(1186), 1, + sym_try_statement, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [249923] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5180), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9981), 1, + anon_sym_try, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(5212), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(5885), 1, - anon_sym_STAR, - ACTIONS(5887), 1, - anon_sym_AMP_AMP, - ACTIONS(5889), 1, - anon_sym_AMP, - STATE(3265), 1, + ACTIONS(11182), 1, + anon_sym_LBRACE, + STATE(1187), 1, + sym_compound_statement, + STATE(1188), 1, + sym_try_statement, + STATE(3332), 1, sym_parameter_list, - STATE(3421), 1, - sym__abstract_declarator, - STATE(3192), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3227), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(4589), 7, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [249958] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(9997), 1, + anon_sym_try, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11170), 1, + anon_sym_LBRACE, + STATE(1284), 1, + sym_compound_statement, + STATE(1285), 1, + sym_try_statement, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [249993] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3347), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10881), 7, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_DASH_GT, + anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [72896] = 17, + anon_sym_try, + anon_sym_requires, + [250018] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(1927), 1, - anon_sym_STAR, - ACTIONS(1929), 1, - anon_sym_AMP, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(2558), 1, - sym_identifier, - ACTIONS(4439), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + ACTIONS(11247), 1, anon_sym_LBRACK, - STATE(3538), 1, - sym__scope_resolution, - STATE(3778), 1, - sym__declarator, - STATE(4944), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [72959] = 11, + STATE(3311), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10877), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [250043] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 1, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, anon_sym_LBRACK, - ACTIONS(5212), 1, + STATE(3347), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10885), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [250068] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(5455), 1, - anon_sym_STAR, - ACTIONS(5457), 1, - anon_sym_AMP_AMP, - ACTIONS(5459), 1, - anon_sym_AMP, - ACTIONS(5635), 1, - anon_sym_const, - STATE(3198), 1, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3311), 1, sym_parameter_list, - STATE(3387), 1, - sym__abstract_declarator, - STATE(3227), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5024), 14, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10897), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [73010] = 17, + anon_sym_requires, + [250093] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4605), 1, - sym_identifier, - ACTIONS(4607), 1, - anon_sym_STAR, - ACTIONS(4609), 1, - anon_sym_AMP_AMP, - ACTIONS(4611), 1, - anon_sym_AMP, - ACTIONS(4613), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10666), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - STATE(3560), 1, + ACTIONS(11351), 1, + sym_identifier, + STATE(6092), 1, sym__scope_resolution, - STATE(3870), 1, - sym__declarator, - STATE(4981), 1, - sym_ms_based_modifier, - STATE(4853), 2, + STATE(8546), 1, + sym_qualified_identifier, + ACTIONS(11353), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8447), 3, + sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [73073] = 17, + [250124] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(1927), 1, - anon_sym_STAR, - ACTIONS(1929), 1, - anon_sym_AMP, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(2558), 1, - sym_identifier, - ACTIONS(4439), 1, + ACTIONS(3009), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - STATE(3538), 1, - sym__scope_resolution, - STATE(3880), 1, - sym__declarator, - STATE(4944), 1, - sym_ms_based_modifier, - STATE(4853), 2, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(11355), 1, + anon_sym_virtual, + STATE(1312), 1, sym_template_type, + STATE(6919), 1, + sym__scope_resolution, + STATE(7427), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [73136] = 17, + [250157] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(1927), 1, - anon_sym_STAR, - ACTIONS(1929), 1, - anon_sym_AMP, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(2558), 1, - sym_identifier, - ACTIONS(4439), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(5732), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10331), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - STATE(3538), 1, + ACTIONS(11228), 1, + sym_identifier, + STATE(6117), 1, sym__scope_resolution, - STATE(3875), 1, - sym__declarator, - STATE(4944), 1, - sym_ms_based_modifier, - STATE(4853), 2, + STATE(7961), 2, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(8447), 3, + sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [73199] = 12, + [250188] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5204), 1, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10891), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - ACTIONS(5256), 1, - anon_sym_DASH_GT, - ACTIONS(3810), 2, + STATE(3652), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10889), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5202), 6, - anon_sym_COMMA, + anon_sym_requires, + [250215] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3347), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10877), 7, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - STATE(3158), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [73252] = 17, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [250240] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4605), 1, - sym_identifier, - ACTIONS(4607), 1, - anon_sym_STAR, - ACTIONS(4609), 1, - anon_sym_AMP_AMP, - ACTIONS(4611), 1, - anon_sym_AMP, - ACTIONS(4613), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + ACTIONS(10895), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - STATE(3560), 1, - sym__scope_resolution, - STATE(3837), 1, - sym__declarator, - STATE(4981), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [73315] = 17, + STATE(3652), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10893), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [250267] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(1927), 1, - anon_sym_STAR, - ACTIONS(1929), 1, - anon_sym_AMP, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(2558), 1, - sym_identifier, - ACTIONS(4439), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + ACTIONS(11247), 1, anon_sym_LBRACK, - STATE(3538), 1, - sym__scope_resolution, - STATE(3873), 1, - sym__declarator, - STATE(4944), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [73378] = 14, + STATE(3311), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10881), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [250292] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(3867), 1, - anon_sym___attribute__, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5154), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9973), 1, + anon_sym_try, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5891), 1, - anon_sym_DASH_GT, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - STATE(3153), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(5146), 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, + ACTIONS(11121), 1, + anon_sym_LBRACE, + STATE(1080), 1, + sym_compound_statement, + STATE(1081), 1, + sym_try_statement, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [250327] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(700), 1, anon_sym_LBRACE, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3218), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [73435] = 14, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10282), 1, + anon_sym_try, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(440), 1, + sym_compound_statement, + STATE(472), 1, + sym_try_statement, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [250362] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(3867), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11032), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [250391] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11331), 1, + aux_sym_preproc_else_token1, + ACTIONS(11333), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11357), 1, + aux_sym_preproc_if_token2, + STATE(6978), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8829), 1, + sym_enumerator, + ACTIONS(11335), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8474), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [250422] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6727), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11359), 1, + anon_sym_COMMA, + ACTIONS(11363), 1, + anon_sym___attribute, + STATE(2650), 1, + sym_parameter_list, + STATE(7180), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(11361), 2, + anon_sym_SEMI, anon_sym___attribute__, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5204), 1, + STATE(6605), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [250455] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9398), 1, anon_sym_LBRACK, - ACTIONS(5891), 1, - anon_sym_DASH_GT, - ACTIONS(3810), 2, + ACTIONS(9716), 1, + anon_sym_requires, + ACTIONS(9400), 2, anon_sym_final, anon_sym_override, - STATE(3204), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(5202), 3, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3216), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [73492] = 13, + anon_sym_COLON, + [250482] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5180), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9981), 1, + anon_sym_try, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(5212), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(5885), 1, - anon_sym_STAR, - ACTIONS(5887), 1, - anon_sym_AMP_AMP, - ACTIONS(5889), 1, - anon_sym_AMP, - STATE(3265), 1, + ACTIONS(11182), 1, + anon_sym_LBRACE, + STATE(1200), 1, + sym_compound_statement, + STATE(1201), 1, + sym_try_statement, + STATE(3332), 1, sym_parameter_list, - STATE(3430), 1, - sym__abstract_declarator, - STATE(3143), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3227), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(4421), 7, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [250517] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11043), 1, + sym_identifier, + ACTIONS(11321), 1, + aux_sym_preproc_else_token1, + ACTIONS(11323), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11365), 1, + aux_sym_preproc_if_token2, + ACTIONS(11325), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(6731), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(8426), 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, + [250546] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(297), 1, anon_sym_LBRACE, - anon_sym_DASH_GT, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10288), 1, + anon_sym_try, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(258), 1, + sym_compound_statement, + STATE(259), 1, + sym_try_statement, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [250581] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3347), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10897), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [73547] = 17, + anon_sym_try, + anon_sym_requires, + [250606] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(297), 1, + anon_sym_LBRACE, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(4667), 1, - anon_sym_STAR, - ACTIONS(4669), 1, - anon_sym_AMP_AMP, - ACTIONS(4671), 1, - anon_sym_AMP, - STATE(3552), 1, - sym__scope_resolution, - STATE(3628), 1, - sym__declarator, - STATE(5052), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [73610] = 17, + ACTIONS(10288), 1, + anon_sym_try, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(264), 1, + sym_compound_statement, + STATE(265), 1, + sym_try_statement, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [250641] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4605), 1, - sym_identifier, - ACTIONS(4607), 1, - anon_sym_STAR, - ACTIONS(4609), 1, - anon_sym_AMP_AMP, - ACTIONS(4611), 1, - anon_sym_AMP, - ACTIONS(4613), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(10196), 1, anon_sym_LBRACK, - STATE(3560), 1, - sym__scope_resolution, - STATE(3868), 1, - sym__declarator, - STATE(4981), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [73673] = 14, + ACTIONS(10264), 1, + anon_sym_try, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(539), 1, + sym_compound_statement, + STATE(540), 1, + sym_try_statement, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [250676] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9973), 1, + anon_sym_try, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3771), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3173), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3402), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - [73730] = 12, + ACTIONS(11121), 1, + anon_sym_LBRACE, + STATE(1049), 1, + sym_compound_statement, + STATE(1051), 1, + sym_try_statement, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [250711] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5821), 1, - anon_sym_AMP_AMP, - ACTIONS(5824), 1, - anon_sym_AMP, - ACTIONS(5827), 1, + ACTIONS(8211), 1, + anon_sym_requires, + ACTIONS(9398), 1, anon_sym_LBRACK, - ACTIONS(5841), 1, - anon_sym_noexcept, - ACTIONS(5844), 1, - anon_sym_throw, - ACTIONS(5893), 1, - anon_sym_const, - ACTIONS(5899), 1, - anon_sym_DASH_GT, - ACTIONS(5838), 2, + ACTIONS(5572), 2, anon_sym_final, anon_sym_override, - ACTIONS(5896), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5819), 6, - anon_sym_COMMA, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6103), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9387), 3, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(3158), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [73783] = 17, + anon_sym_COLON, + [250738] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4605), 1, - sym_identifier, - ACTIONS(4607), 1, - anon_sym_STAR, - ACTIONS(4609), 1, - anon_sym_AMP_AMP, - ACTIONS(4611), 1, - anon_sym_AMP, - ACTIONS(4613), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + ACTIONS(10903), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - STATE(3560), 1, - sym__scope_resolution, - STATE(3891), 1, - sym__declarator, - STATE(4981), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [73846] = 12, + STATE(3652), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10901), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [250765] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5821), 1, - anon_sym_AMP_AMP, - ACTIONS(5824), 1, - anon_sym_AMP, - ACTIONS(5827), 1, + ACTIONS(8211), 1, + anon_sym_requires, + ACTIONS(9589), 1, anon_sym_LBRACK, - ACTIONS(5841), 1, - anon_sym_noexcept, - ACTIONS(5844), 1, - anon_sym_throw, - ACTIONS(5893), 1, - anon_sym_const, - ACTIONS(5902), 1, - anon_sym_DASH_GT, - ACTIONS(5838), 2, + ACTIONS(5572), 2, anon_sym_final, anon_sym_override, - ACTIONS(5896), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5819), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 3, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - STATE(3160), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [73899] = 17, + anon_sym_COLON, + [250792] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4605), 1, - sym_identifier, - ACTIONS(4607), 1, - anon_sym_STAR, - ACTIONS(4609), 1, - anon_sym_AMP_AMP, - ACTIONS(4611), 1, - anon_sym_AMP, - ACTIONS(4613), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + ACTIONS(11247), 1, anon_sym_LBRACK, - STATE(3560), 1, - sym__scope_resolution, - STATE(3853), 1, - sym__declarator, - STATE(4981), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [73962] = 12, + STATE(3347), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10867), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [250817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5158), 1, - anon_sym_DASH_GT, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5907), 1, + ACTIONS(3256), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(3239), 1, - sym_trailing_return_type, - ACTIONS(5156), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3183), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5905), 9, + ACTIONS(3258), 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, + [250836] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8211), 1, + anon_sym_requires, + ACTIONS(9859), 1, + anon_sym_LBRACK, + ACTIONS(5572), 2, anon_sym_final, anon_sym_override, - [74015] = 17, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [250863] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(1927), 1, - anon_sym_STAR, - ACTIONS(1929), 1, - anon_sym_AMP, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(2558), 1, - sym_identifier, - ACTIONS(4439), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + ACTIONS(8211), 1, + anon_sym_requires, + ACTIONS(10062), 1, anon_sym_LBRACK, - STATE(3538), 1, - sym__scope_resolution, - STATE(3882), 1, - sym__declarator, - STATE(4944), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [74078] = 17, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [250890] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(8211), 1, + anon_sym_requires, + ACTIONS(10066), 1, + anon_sym_LBRACK, + ACTIONS(5572), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6105), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10064), 3, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4605), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [250917] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11210), 1, sym_identifier, - ACTIONS(4607), 1, - anon_sym_STAR, - ACTIONS(4609), 1, - anon_sym_AMP_AMP, - ACTIONS(4611), 1, - anon_sym_AMP, - ACTIONS(4613), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - STATE(3560), 1, - sym__scope_resolution, - STATE(3843), 1, - sym__declarator, - STATE(4981), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [74141] = 17, + ACTIONS(11331), 1, + aux_sym_preproc_else_token1, + ACTIONS(11333), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11367), 1, + aux_sym_preproc_if_token2, + STATE(6788), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8829), 1, + sym_enumerator, + ACTIONS(11335), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8619), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [250948] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(1927), 1, - anon_sym_STAR, - ACTIONS(1929), 1, - anon_sym_AMP, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(2558), 1, - sym_identifier, - ACTIONS(4439), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + ACTIONS(11247), 1, anon_sym_LBRACK, - STATE(3538), 1, - sym__scope_resolution, - STATE(3913), 1, - sym__declarator, - STATE(4944), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [74204] = 12, + STATE(3311), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10885), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [250973] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5204), 1, + ACTIONS(9589), 1, anon_sym_LBRACK, - ACTIONS(5360), 1, - anon_sym_DASH_GT, - ACTIONS(3810), 2, + ACTIONS(9875), 1, + anon_sym_requires, + ACTIONS(9591), 2, anon_sym_final, anon_sym_override, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5202), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6094), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9578), 3, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - STATE(3160), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [74257] = 17, + anon_sym_COLON, + [251000] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, + ACTIONS(1263), 1, anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4605), 1, - sym_identifier, - ACTIONS(4607), 1, - anon_sym_STAR, - ACTIONS(4609), 1, - anon_sym_AMP_AMP, - ACTIONS(4611), 1, - anon_sym_AMP, - ACTIONS(4613), 1, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10666), 1, anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - STATE(3560), 1, + ACTIONS(11369), 1, + sym_identifier, + STATE(6092), 1, sym__scope_resolution, - STATE(3861), 1, - sym__declarator, - STATE(4981), 1, - sym_ms_based_modifier, - STATE(4853), 2, + STATE(8582), 1, + sym_qualified_identifier, + ACTIONS(11371), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8447), 3, + sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [74320] = 11, + [251031] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 1, - anon_sym_LBRACK, - ACTIONS(5212), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(5447), 1, - anon_sym_const, - ACTIONS(5455), 1, - anon_sym_STAR, - ACTIONS(5457), 1, - anon_sym_AMP_AMP, - ACTIONS(5459), 1, - anon_sym_AMP, - STATE(3198), 1, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3311), 1, sym_parameter_list, - STATE(3345), 1, - sym__abstract_declarator, - STATE(3227), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5445), 14, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10889), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [74371] = 12, + anon_sym_requires, + [251056] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5158), 1, - anon_sym_DASH_GT, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5911), 1, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, anon_sym_LBRACK, - STATE(3252), 1, - sym_trailing_return_type, - ACTIONS(5156), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3162), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5909), 9, + STATE(3311), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10893), 7, anon_sym_COMMA, - anon_sym_LPAREN2, + 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, - [74424] = 17, + anon_sym_requires, + [251081] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4605), 1, + ACTIONS(11210), 1, sym_identifier, - ACTIONS(4607), 1, - anon_sym_STAR, - ACTIONS(4609), 1, - anon_sym_AMP_AMP, - ACTIONS(4611), 1, - anon_sym_AMP, - ACTIONS(4613), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - STATE(3560), 1, - sym__scope_resolution, - STATE(3858), 1, - sym__declarator, - STATE(4981), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [74487] = 17, + ACTIONS(11331), 1, + aux_sym_preproc_else_token1, + ACTIONS(11333), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11373), 1, + aux_sym_preproc_if_token2, + STATE(6978), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8829), 1, + sym_enumerator, + ACTIONS(11335), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8828), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [251112] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, - anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, + ACTIONS(9859), 1, anon_sym_LBRACK, - ACTIONS(4657), 1, - anon_sym_STAR, - ACTIONS(4659), 1, - anon_sym_AMP_AMP, - ACTIONS(4661), 1, - anon_sym_AMP, - STATE(3552), 1, - sym__scope_resolution, - STATE(3708), 1, - sym__declarator, - STATE(5266), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [74550] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3150), 13, - anon_sym_AMP, - anon_sym___based, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - sym_identifier, - anon_sym_template, - anon_sym_operator, - anon_sym_noexcept, - anon_sym_throw, - ACTIONS(3152), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9999), 1, + anon_sym_requires, + ACTIONS(9861), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6149), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9848), 3, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - [74585] = 14, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [251139] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10276), 1, + anon_sym_try, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3777), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3193), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3410), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - [74642] = 17, + STATE(467), 1, + sym_compound_statement, + STATE(468), 1, + sym_try_statement, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [251174] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(1923), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(4615), 1, - anon_sym_LBRACK, - ACTIONS(4617), 1, - anon_sym_STAR, - ACTIONS(4619), 1, - anon_sym_AMP_AMP, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(3552), 1, - sym__scope_resolution, - STATE(3672), 1, - sym__declarator, - STATE(5210), 1, - sym_ms_based_modifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3720), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [74705] = 12, + ACTIONS(10869), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym___attribute, + STATE(3799), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10877), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [251201] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5158), 1, - anon_sym_DASH_GT, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5915), 1, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10869), 1, anon_sym_LBRACK, - STATE(3256), 1, - sym_trailing_return_type, - ACTIONS(5156), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3183), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5913), 9, + ACTIONS(10883), 1, + anon_sym___attribute, + STATE(3799), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10881), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [251228] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10869), 1, + anon_sym_LBRACK, + ACTIONS(10887), 1, + anon_sym___attribute, + STATE(3799), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10885), 6, anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [251255] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3347), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10901), 7, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_final, anon_sym_override, - [74758] = 14, + anon_sym_try, + anon_sym_requires, + [251280] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, + ACTIONS(11210), 1, sym_identifier, - ACTIONS(5881), 1, - anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - STATE(3777), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - ACTIONS(3318), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3141), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3410), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3316), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - [74815] = 10, + ACTIONS(11331), 1, + aux_sym_preproc_else_token1, + ACTIONS(11333), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11375), 1, + aux_sym_preproc_if_token2, + STATE(6978), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8829), 1, + sym_enumerator, + ACTIONS(11335), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8838), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [251311] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5919), 1, - anon_sym_AMP_AMP, - ACTIONS(5922), 1, - anon_sym_AMP, - ACTIONS(5925), 1, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(5927), 1, - anon_sym_const, - ACTIONS(5933), 1, - anon_sym_noexcept, - ACTIONS(5936), 1, - anon_sym_throw, - ACTIONS(5930), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3177), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5917), 11, + ACTIONS(10891), 1, + anon_sym___attribute, + STATE(3799), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10889), 6, 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_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [74864] = 11, + anon_sym_requires, + [251338] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 1, - anon_sym_LBRACK, - ACTIONS(5212), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(5455), 1, - anon_sym_STAR, - ACTIONS(5457), 1, - anon_sym_AMP_AMP, - ACTIONS(5459), 1, - anon_sym_AMP, - ACTIONS(5493), 1, - anon_sym_const, - STATE(3198), 1, + ACTIONS(10869), 1, + anon_sym_LBRACK, + ACTIONS(10895), 1, + anon_sym___attribute, + STATE(3799), 1, sym_parameter_list, - STATE(3360), 1, - sym__abstract_declarator, - STATE(3227), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5491), 14, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10893), 6, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [74915] = 12, + anon_sym_requires, + [251365] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5204), 1, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10883), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - ACTIONS(5615), 1, - anon_sym_DASH_GT, - ACTIONS(3810), 2, + STATE(3646), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10881), 6, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5202), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_requires, + [251392] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_LBRACK, + ACTIONS(11377), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11379), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(4563), 6, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(3180), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [74967] = 12, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [251415] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5821), 1, - anon_sym_AMP_AMP, - ACTIONS(5824), 1, - anon_sym_AMP, - ACTIONS(5827), 1, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10887), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - ACTIONS(5841), 1, - anon_sym_noexcept, - ACTIONS(5844), 1, - anon_sym_throw, - ACTIONS(5893), 1, - anon_sym_const, - ACTIONS(5939), 1, - anon_sym_DASH_GT, - ACTIONS(5838), 2, + STATE(3646), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10885), 6, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - ACTIONS(5819), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_requires, + [251442] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(10869), 1, + anon_sym_LBRACK, + ACTIONS(10899), 1, + anon_sym___attribute, + STATE(3799), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10897), 6, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(5896), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3180), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [75019] = 12, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [251469] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5615), 1, - anon_sym_DASH_GT, - ACTIONS(5817), 1, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(3810), 2, + ACTIONS(10903), 1, + anon_sym___attribute, + STATE(3799), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10901), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_final, anon_sym_override, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5815), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_requires, + [251496] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10276), 1, + anon_sym_try, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + STATE(484), 1, + sym_compound_statement, + STATE(485), 1, + sym_try_statement, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [251531] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10869), 1, + anon_sym_LBRACK, + ACTIONS(10871), 1, + anon_sym___attribute, + STATE(3799), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10867), 6, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - STATE(3180), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [75071] = 12, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [251558] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5256), 1, - anon_sym_DASH_GT, - ACTIONS(5877), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10666), 1, + anon_sym_COLON_COLON, + ACTIONS(11381), 1, + sym_identifier, + STATE(6092), 1, + sym__scope_resolution, + STATE(9027), 1, + sym_qualified_identifier, + ACTIONS(11383), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [251589] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10899), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - STATE(3231), 1, - sym_trailing_return_type, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3188), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5875), 8, + STATE(3646), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10897), 6, anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [251616] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(297), 1, + anon_sym_LBRACE, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10288), 1, + anon_sym_try, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(195), 1, + sym_compound_statement, + STATE(202), 1, + sym_try_statement, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [251651] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3311), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10901), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_final, anon_sym_override, - [75123] = 10, + anon_sym_requires, + [251676] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5919), 1, - anon_sym_AMP_AMP, - ACTIONS(5922), 1, - anon_sym_AMP, - ACTIONS(5925), 1, + ACTIONS(11385), 1, + sym_identifier, + ACTIONS(11388), 1, + aux_sym_preproc_if_token1, + ACTIONS(11394), 1, + sym_preproc_directive, + ACTIONS(11397), 1, + anon_sym_RBRACE, + ACTIONS(11391), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8820), 2, + sym_preproc_call, + sym_enumerator, + STATE(6809), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [251705] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10871), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - ACTIONS(5933), 1, - anon_sym_noexcept, - ACTIONS(5936), 1, - anon_sym_throw, - ACTIONS(5942), 1, - anon_sym_const, - ACTIONS(5945), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3183), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5917), 10, + STATE(3646), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10867), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [251732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(3254), 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_DASH_GT, - anon_sym_final, - anon_sym_override, - [75171] = 12, + anon_sym_try, + [251751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5360), 1, - anon_sym_DASH_GT, - ACTIONS(5915), 1, + ACTIONS(3248), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(3256), 1, - sym_trailing_return_type, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3177), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5913), 8, + ACTIONS(3250), 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_final, - anon_sym_override, - anon_sym_GT2, - [75223] = 12, + anon_sym_COLON, + anon_sym_try, + [251770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5256), 1, - anon_sym_DASH_GT, - ACTIONS(5907), 1, + ACTIONS(3244), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(3239), 1, - sym_trailing_return_type, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3177), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5905), 8, + ACTIONS(3246), 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, + [251789] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11067), 1, + aux_sym_preproc_if_token2, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11331), 1, + aux_sym_preproc_else_token1, + ACTIONS(11333), 1, + aux_sym_preproc_elif_token1, + STATE(6739), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8829), 1, + sym_enumerator, + ACTIONS(11335), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8982), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [251820] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10062), 1, + anon_sym_LBRACK, + ACTIONS(11230), 1, + anon_sym_requires, + ACTIONS(10092), 2, anon_sym_final, anon_sym_override, - [75275] = 12, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6112), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10060), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [251847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5360), 1, - anon_sym_DASH_GT, - ACTIONS(5907), 1, + ACTIONS(4647), 1, anon_sym_LBRACK, - STATE(3239), 1, - sym_trailing_return_type, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3177), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5905), 8, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11379), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(4649), 8, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [75327] = 12, + anon_sym_requires, + [251868] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5360), 1, - anon_sym_DASH_GT, - ACTIONS(5877), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - STATE(3231), 1, - sym_trailing_return_type, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3184), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5875), 8, - anon_sym_COMMA, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11053), 4, anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [251897] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3311), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10867), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [75379] = 12, + anon_sym_requires, + [251922] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5256), 1, - anon_sym_DASH_GT, - ACTIONS(5915), 1, + ACTIONS(10066), 1, anon_sym_LBRACK, - STATE(3256), 1, - sym_trailing_return_type, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3177), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5913), 8, - anon_sym_COMMA, + ACTIONS(11399), 1, + anon_sym_requires, + ACTIONS(10104), 2, + anon_sym_final, + anon_sym_override, + STATE(5833), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6105), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10064), 3, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [251949] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3009), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(11402), 1, + anon_sym_virtual, + STATE(1312), 1, + sym_template_type, + STATE(6919), 1, + sym__scope_resolution, + STATE(7543), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [251982] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3347), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10889), 7, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_final, anon_sym_override, - [75431] = 12, + anon_sym_try, + anon_sym_requires, + [252007] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5256), 1, - anon_sym_DASH_GT, - ACTIONS(5911), 1, - anon_sym_LBRACK, - STATE(3252), 1, - sym_trailing_return_type, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3185), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5909), 8, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10666), 1, + anon_sym_COLON_COLON, + ACTIONS(11404), 1, + sym_identifier, + STATE(6092), 1, + sym__scope_resolution, + STATE(8810), 1, + sym_qualified_identifier, + ACTIONS(11406), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [252038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3264), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(3266), 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_final, - anon_sym_override, - [75483] = 12, + anon_sym_COLON, + anon_sym_try, + [252057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5360), 1, - anon_sym_DASH_GT, - ACTIONS(5911), 1, + ACTIONS(3268), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(3252), 1, - sym_trailing_return_type, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3186), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5909), 8, + ACTIONS(3270), 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_final, - anon_sym_override, - anon_sym_GT2, - [75535] = 12, + anon_sym_COLON, + anon_sym_try, + [252076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5615), 1, - anon_sym_DASH_GT, - ACTIONS(5915), 1, + ACTIONS(3260), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(3256), 1, - sym_trailing_return_type, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3177), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5913), 7, + ACTIONS(3262), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - [75586] = 6, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [252095] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5948), 1, - anon_sym_const, - ACTIONS(4385), 2, - anon_sym_AMP, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10903), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - STATE(3192), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5951), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(4387), 15, + STATE(3646), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10901), 6, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_DASH_GT, + anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [75625] = 7, + anon_sym_requires, + [252122] = 8, ACTIONS(3), 1, sym_comment, - STATE(3280), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(5961), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3193), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(5958), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(5956), 6, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11018), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [252151] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3009), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK, - ACTIONS(5954), 11, - anon_sym_AMP, - anon_sym___based, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6271), 1, sym_identifier, + ACTIONS(11408), 1, + anon_sym_virtual, + STATE(1312), 1, + sym_template_type, + STATE(6919), 1, + sym__scope_resolution, + STATE(7448), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [252184] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, anon_sym_template, - anon_sym_operator, - [75666] = 12, + ACTIONS(3009), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(11410), 1, + anon_sym_virtual, + STATE(1312), 1, + sym_template_type, + STATE(6919), 1, + sym__scope_resolution, + STATE(7913), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [252217] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5615), 1, - anon_sym_DASH_GT, - ACTIONS(5907), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10666), 1, + anon_sym_COLON_COLON, + ACTIONS(11412), 1, + sym_identifier, + STATE(6092), 1, + sym__scope_resolution, + STATE(8561), 1, + sym_qualified_identifier, + ACTIONS(11414), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [252248] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9973), 1, + anon_sym_try, + ACTIONS(10196), 1, anon_sym_LBRACK, - STATE(3239), 1, - sym_trailing_return_type, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3177), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5905), 7, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11121), 1, + anon_sym_LBRACE, + STATE(1052), 1, + sym_compound_statement, + STATE(1053), 1, + sym_try_statement, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [252283] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5074), 1, + anon_sym_LT, + STATE(3118), 1, + sym_template_argument_list, + ACTIONS(7045), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(7047), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - [75717] = 13, + anon_sym_COLON, + [252306] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(5118), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(700), 1, + anon_sym_LBRACE, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10282), 1, + anon_sym_try, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(5126), 1, - sym_identifier, - ACTIONS(5128), 1, - anon_sym_STAR, - ACTIONS(5130), 1, - anon_sym_AMP_AMP, - ACTIONS(5132), 1, - anon_sym_AMP, - STATE(3635), 1, - sym__field_declarator, - STATE(4991), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [75770] = 13, + STATE(615), 1, + sym_compound_statement, + STATE(616), 1, + sym_try_statement, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [252341] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(5116), 1, - sym_identifier, - ACTIONS(5118), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(5120), 1, - anon_sym_STAR, - ACTIONS(5122), 1, - anon_sym_AMP_AMP, - ACTIONS(5124), 1, - anon_sym_AMP, - STATE(3899), 1, - sym__field_declarator, - STATE(5085), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [75823] = 13, + ACTIONS(10883), 1, + anon_sym___attribute, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3652), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10881), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [252368] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(5116), 1, - sym_identifier, - ACTIONS(5118), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(5120), 1, - anon_sym_STAR, - ACTIONS(5122), 1, - anon_sym_AMP_AMP, - ACTIONS(5124), 1, - anon_sym_AMP, - STATE(3903), 1, - sym__field_declarator, - STATE(5085), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [75876] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5615), 1, - anon_sym_DASH_GT, - ACTIONS(5877), 1, + ACTIONS(10887), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - STATE(3231), 1, - sym_trailing_return_type, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3191), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5875), 7, + STATE(3652), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10885), 6, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [252395] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3347), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10893), 7, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - [75927] = 7, + anon_sym_try, + anon_sym_requires, + [252420] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3450), 1, - anon_sym_LBRACE, - ACTIONS(5964), 1, - anon_sym_COLON, - STATE(1307), 1, - sym__enum_base_clause, - STATE(1354), 1, - sym_enumerator_list, - ACTIONS(3832), 3, - anon_sym_AMP, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10899), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(3834), 18, + STATE(3652), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10897), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [75968] = 7, + anon_sym_requires, + [252447] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3450), 1, - anon_sym_LBRACE, - ACTIONS(5964), 1, - anon_sym_COLON, - STATE(1296), 1, - sym__enum_base_clause, - STATE(1313), 1, - sym_enumerator_list, - ACTIONS(3826), 3, - anon_sym_AMP, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10871), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(3828), 18, + STATE(3652), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10867), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [76009] = 11, + anon_sym_requires, + [252474] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(700), 1, + anon_sym_LBRACE, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(5212), 1, + ACTIONS(10282), 1, + anon_sym_try, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(5493), 1, - anon_sym_const, - ACTIONS(5885), 1, - anon_sym_STAR, - ACTIONS(5887), 1, - anon_sym_AMP_AMP, - ACTIONS(5889), 1, - anon_sym_AMP, - STATE(3265), 1, + STATE(620), 1, + sym_compound_statement, + STATE(621), 1, + sym_try_statement, + STATE(3332), 1, sym_parameter_list, - STATE(3422), 1, - sym__abstract_declarator, - STATE(3227), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5491), 12, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [76058] = 9, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [252509] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5966), 1, - anon_sym_AMP_AMP, - ACTIONS(5969), 1, - anon_sym_AMP, - ACTIONS(5972), 1, - anon_sym_const, - ACTIONS(5978), 1, - anon_sym_noexcept, - ACTIONS(5981), 1, - anon_sym_throw, - ACTIONS(5975), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3202), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5917), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11043), 1, + sym_identifier, + ACTIONS(11321), 1, + aux_sym_preproc_else_token1, + ACTIONS(11323), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11416), 1, + aux_sym_preproc_if_token2, + ACTIONS(11325), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(6843), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(9151), 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, + [252538] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(10891), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DASH_GT, + STATE(3646), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10889), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [76103] = 11, + anon_sym_requires, + [252565] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(5212), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(5635), 1, - anon_sym_const, - ACTIONS(5885), 1, - anon_sym_STAR, - ACTIONS(5887), 1, - anon_sym_AMP_AMP, - ACTIONS(5889), 1, - anon_sym_AMP, - STATE(3265), 1, + STATE(3332), 1, sym_parameter_list, - STATE(3425), 1, - sym__abstract_declarator, - STATE(3227), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5024), 12, - anon_sym_LBRACK_LBRACK, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11028), 4, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [76152] = 5, + anon_sym_try, + [252594] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5988), 1, - anon_sym___attribute__, - STATE(3204), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(5986), 3, - anon_sym_AMP, + ACTIONS(11043), 1, + sym_identifier, + ACTIONS(11321), 1, + aux_sym_preproc_else_token1, + ACTIONS(11323), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11418), 1, + aux_sym_preproc_if_token2, + ACTIONS(11325), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(6982), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(8433), 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, + [252623] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10887), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5984), 19, + STATE(3376), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10885), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [76189] = 13, + [252649] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(11424), 1, + anon_sym_delete, + ACTIONS(11426), 1, + anon_sym_new, + ACTIONS(11422), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11420), 5, anon_sym___based, - ACTIONS(2367), 1, + sym_identifier, + anon_sym_decltype, + anon_sym_template, anon_sym_operator, - ACTIONS(5118), 1, + [252671] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6727), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(5126), 1, - sym_identifier, - ACTIONS(5128), 1, + ACTIONS(11430), 1, + anon_sym___attribute, + STATE(2650), 1, + sym_parameter_list, + STATE(6605), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11428), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [252699] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11432), 1, + anon_sym_delete, + ACTIONS(11434), 1, + anon_sym_new, + ACTIONS(11422), 3, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(5130), 1, - anon_sym_AMP_AMP, - ACTIONS(5132), 1, - anon_sym_AMP, - STATE(3620), 1, - sym__field_declarator, - STATE(4991), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [76242] = 12, + anon_sym_COLON_COLON, + ACTIONS(11420), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [252721] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5615), 1, - anon_sym_DASH_GT, - ACTIONS(5911), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, anon_sym_LBRACK, - STATE(3252), 1, - sym_trailing_return_type, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3194), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5909), 7, + STATE(3525), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(11127), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - [76293] = 13, + STATE(7028), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [252751] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(11436), 1, + anon_sym_delete, + ACTIONS(11438), 1, + anon_sym_new, + ACTIONS(11422), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11420), 5, anon_sym___based, - ACTIONS(2367), 1, + sym_identifier, + anon_sym_decltype, + anon_sym_template, anon_sym_operator, - ACTIONS(5118), 1, - anon_sym_LPAREN2, - ACTIONS(5126), 1, + [252773] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(11440), 1, sym_identifier, - ACTIONS(5128), 1, + ACTIONS(11442), 1, + anon_sym_COLON_COLON, + STATE(2411), 1, + sym_template_type, + STATE(6900), 1, + sym__scope_resolution, + STATE(2421), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [252803] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11434), 1, + anon_sym_new, + ACTIONS(11444), 1, + anon_sym_delete, + ACTIONS(11422), 3, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(5130), 1, - anon_sym_AMP_AMP, - ACTIONS(5132), 1, - anon_sym_AMP, - STATE(3617), 1, - sym__field_declarator, - STATE(4991), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [76346] = 11, + anon_sym_COLON_COLON, + ACTIONS(11420), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [252825] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 1, - anon_sym_LBRACK, - ACTIONS(5212), 1, - anon_sym_LPAREN2, - ACTIONS(5447), 1, - anon_sym_const, - ACTIONS(5885), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3009), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6271), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(6919), 1, + sym__scope_resolution, + STATE(7481), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [252855] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11446), 1, + anon_sym_delete, + ACTIONS(11448), 1, + anon_sym_new, + ACTIONS(11422), 3, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(5887), 1, - anon_sym_AMP_AMP, - ACTIONS(5889), 1, - anon_sym_AMP, - STATE(3265), 1, - sym_parameter_list, - STATE(3429), 1, - sym__abstract_declarator, - STATE(3227), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5445), 12, + anon_sym_COLON_COLON, + ACTIONS(11420), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [252877] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(4065), 1, anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [76395] = 13, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11450), 1, + anon_sym_EQ, + STATE(3579), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(9178), 1, + sym_initializer_list, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [252909] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(11452), 1, + anon_sym_delete, + ACTIONS(11454), 1, + anon_sym_new, + ACTIONS(11422), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11420), 5, anon_sym___based, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(5116), 1, sym_identifier, - ACTIONS(5118), 1, - anon_sym_LPAREN2, - ACTIONS(5120), 1, - anon_sym_STAR, - ACTIONS(5122), 1, - anon_sym_AMP_AMP, - ACTIONS(5124), 1, - anon_sym_AMP, - STATE(3883), 1, - sym__field_declarator, - STATE(5085), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [76448] = 6, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [252931] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5991), 1, - anon_sym_const, - ACTIONS(4385), 2, - anon_sym_AMP, - anon_sym_LBRACK, - STATE(3210), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5994), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(4387), 14, - anon_sym_COMMA, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(10869), 1, + anon_sym_LBRACK, + STATE(3582), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10877), 6, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [76486] = 3, + anon_sym_requires, + [252955] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5997), 21, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(10869), 1, + anon_sym_LBRACK, + STATE(3582), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10881), 6, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [76518] = 5, + anon_sym_requires, + [252979] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6001), 1, - anon_sym___attribute__, - STATE(3212), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(5986), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5984), 18, - anon_sym_COMMA, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(10869), 1, + anon_sym_LBRACK, + STATE(3582), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10885), 6, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [76554] = 3, + anon_sym_requires, + [253003] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3913), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(3911), 21, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(10869), 1, + anon_sym_LBRACK, + STATE(3582), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10889), 6, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [76586] = 12, + anon_sym_requires, + [253027] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5821), 1, - anon_sym_AMP_AMP, - ACTIONS(5824), 1, - anon_sym_AMP, - ACTIONS(5827), 1, - anon_sym_LBRACK, - ACTIONS(5841), 1, - anon_sym_noexcept, - ACTIONS(5844), 1, - anon_sym_throw, - ACTIONS(5893), 1, - anon_sym_const, - ACTIONS(6004), 1, - anon_sym_DASH_GT, - ACTIONS(5838), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5819), 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(5896), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3214), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [76636] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5964), 1, - anon_sym_COLON, - STATE(1354), 1, - sym_enumerator_list, - STATE(3268), 1, - sym__enum_base_clause, - ACTIONS(3832), 3, - anon_sym_AMP, + ACTIONS(10869), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(3834), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(3582), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10893), 6, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [76674] = 12, + anon_sym_requires, + [253051] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5817), 1, - anon_sym_LBRACK, - ACTIONS(5891), 1, - anon_sym_DASH_GT, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5815), 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, + ACTIONS(10869), 1, + anon_sym_LBRACK, + STATE(3582), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10897), 6, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3214), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [76724] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5615), 1, - anon_sym_DASH_GT, - ACTIONS(5707), 1, - anon_sym_LBRACK, - ACTIONS(3810), 2, + anon_sym_EQ, anon_sym_final, anon_sym_override, - ACTIONS(5705), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3221), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [76774] = 12, + anon_sym_requires, + [253075] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5204), 1, - anon_sym_LBRACK, - ACTIONS(5891), 1, - anon_sym_DASH_GT, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5202), 3, + ACTIONS(10765), 1, anon_sym_LPAREN2, + ACTIONS(10869), 1, + anon_sym_LBRACK, + STATE(3582), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10901), 6, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3214), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [76824] = 6, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [253099] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5964), 1, - anon_sym_COLON, - STATE(1313), 1, - sym_enumerator_list, - STATE(3269), 1, - sym__enum_base_clause, - ACTIONS(3826), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(3828), 18, - anon_sym_COMMA, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(10869), 1, + anon_sym_LBRACK, + STATE(3582), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10867), 6, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [76862] = 3, + anon_sym_requires, + [253123] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3951), 3, - anon_sym_AMP, + ACTIONS(11456), 1, + anon_sym_delete, + ACTIONS(11458), 1, + anon_sym_new, + ACTIONS(11422), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11420), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [253145] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10883), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(3949), 21, + STATE(3376), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10881), 5, 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_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [76894] = 12, + [253171] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5615), 1, - anon_sym_DASH_GT, - ACTIONS(5805), 1, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10899), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5803), 3, + STATE(3376), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10897), 5, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [253197] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, anon_sym_LPAREN2, + ACTIONS(10871), 1, + anon_sym___attribute, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3376), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10867), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [253223] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11460), 1, + anon_sym_delete, + ACTIONS(11462), 1, + anon_sym_new, + ACTIONS(11422), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11420), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [253245] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3180), 7, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_trailing_return_type, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - [76944] = 3, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11034), 1, + anon_sym___attribute, + STATE(3797), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + ACTIONS(11032), 2, + anon_sym_COMMA, + anon_sym___attribute__, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [253275] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6009), 3, - anon_sym_AMP, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6007), 20, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11065), 1, + anon_sym___attribute, + STATE(3797), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + ACTIONS(11063), 2, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym___attribute__, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [253305] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(11020), 1, + anon_sym___attribute, + STATE(3797), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + ACTIONS(11018), 2, + anon_sym_COMMA, + anon_sym___attribute__, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [253335] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11055), 1, + anon_sym___attribute, + STATE(3797), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + ACTIONS(11053), 2, + anon_sym_COMMA, + anon_sym___attribute__, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [253365] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3414), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10877), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [76975] = 3, + anon_sym_requires, + [253389] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6013), 3, - anon_sym_AMP, + ACTIONS(11466), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6011), 20, - anon_sym_COMMA, + STATE(7515), 1, + sym_gnu_asm_input_operand, + STATE(9266), 1, + sym_string_literal, + ACTIONS(11464), 2, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, anon_sym_COLON, - anon_sym_DASH_GT, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [253413] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3414), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10889), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [77006] = 13, + anon_sym_requires, + [253437] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2381), 1, - anon_sym_AMP_AMP, - ACTIONS(2383), 1, - anon_sym_AMP, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6015), 1, + ACTIONS(11247), 1, anon_sym_LBRACK, - STATE(3266), 1, + STATE(3414), 1, sym_parameter_list, - STATE(3950), 1, - sym__abstract_declarator, - STATE(3228), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4421), 3, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10893), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [77057] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [253461] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6021), 3, - anon_sym_AMP, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6019), 20, + STATE(3414), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10901), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [77088] = 3, + anon_sym_requires, + [253485] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6025), 3, - anon_sym_AMP, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6023), 20, + STATE(3414), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10881), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [77119] = 3, + anon_sym_requires, + [253509] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6029), 3, - anon_sym_AMP, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6027), 20, + STATE(3414), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10885), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [77150] = 13, + anon_sym_requires, + [253533] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2381), 1, - anon_sym_AMP_AMP, - ACTIONS(2383), 1, - anon_sym_AMP, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6015), 1, + ACTIONS(11247), 1, anon_sym_LBRACK, - STATE(3266), 1, + STATE(3414), 1, sym_parameter_list, - STATE(3969), 1, - sym__abstract_declarator, - STATE(3379), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4589), 3, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10897), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [77201] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [253557] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6033), 3, - anon_sym_AMP, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6031), 20, + STATE(3414), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10867), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [77232] = 3, + anon_sym_requires, + [253581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6037), 3, - anon_sym_AMP, + ACTIONS(11468), 1, + anon_sym_delete, + ACTIONS(11470), 1, + anon_sym_new, + ACTIONS(11422), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11420), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [253603] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11454), 1, + anon_sym_new, + ACTIONS(11472), 1, + anon_sym_delete, + ACTIONS(11422), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11420), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [253625] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3009), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6271), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(6919), 1, + sym__scope_resolution, + STATE(7427), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [253655] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11476), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6035), 20, - anon_sym_COMMA, + STATE(7327), 1, + sym_gnu_asm_output_operand, + STATE(8886), 1, + sym_string_literal, + ACTIONS(11474), 2, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [77263] = 3, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [253679] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 3, - anon_sym_AMP, + ACTIONS(11478), 1, + anon_sym_delete, + ACTIONS(11480), 1, + anon_sym_new, + ACTIONS(11422), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11420), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [253701] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11462), 1, + anon_sym_new, + ACTIONS(11482), 1, + anon_sym_delete, + ACTIONS(11422), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11420), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [253723] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3009), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6271), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(6919), 1, + sym__scope_resolution, + STATE(7798), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [253753] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3009), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6271), 1, + sym_identifier, + STATE(1312), 1, + sym_template_type, + STATE(6919), 1, + sym__scope_resolution, + STATE(7543), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8447), 2, + sym_decltype, + sym_dependent_type_identifier, + [253783] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5913), 20, + STATE(3560), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(11127), 2, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_GT2, + STATE(7028), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [253813] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11454), 1, + anon_sym_new, + ACTIONS(11484), 1, + anon_sym_delete, + ACTIONS(11422), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11420), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [253835] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(11030), 1, + anon_sym___attribute, + STATE(3797), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + ACTIONS(11028), 2, + anon_sym_COMMA, + anon_sym___attribute__, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [253865] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6295), 1, + anon_sym_COLON_COLON, + ACTIONS(11486), 1, + sym_identifier, + ACTIONS(11488), 1, + anon_sym_template, + STATE(3133), 1, + sym_template_type, + STATE(3134), 1, + sym_dependent_type_identifier, + STATE(3190), 1, + sym_qualified_type_identifier, + STATE(6893), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [253896] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4083), 1, + anon_sym_LBRACE, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11490), 1, + sym_identifier, + ACTIONS(11492), 1, + anon_sym_COLON_COLON, + ACTIONS(11494), 1, + anon_sym_inline, + STATE(584), 1, + sym_declaration_list, + STATE(7010), 1, + sym_attribute_declaration, + STATE(7994), 1, + sym_nested_namespace_specifier, + STATE(9177), 1, + sym__namespace_specifier, + [253927] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6283), 1, + anon_sym_COLON_COLON, + ACTIONS(11496), 1, + sym_identifier, + ACTIONS(11498), 1, + anon_sym_template, + STATE(2934), 1, + sym_dependent_type_identifier, + STATE(2955), 1, + sym_template_type, + STATE(3010), 1, + sym_qualified_type_identifier, + STATE(6895), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [253958] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LBRACE, + ACTIONS(4356), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(11492), 1, + anon_sym_COLON_COLON, + ACTIONS(11494), 1, + anon_sym_inline, + ACTIONS(11500), 1, + sym_identifier, + STATE(433), 1, + sym_declaration_list, + STATE(7035), 1, + sym_attribute_declaration, + STATE(8243), 1, + sym_nested_namespace_specifier, + STATE(9177), 1, + sym__namespace_specifier, + [253989] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [77294] = 17, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11492), 1, + anon_sym_COLON_COLON, + ACTIONS(11494), 1, + anon_sym_inline, + ACTIONS(11502), 1, + sym_identifier, + STATE(424), 1, + sym_declaration_list, + STATE(7016), 1, + sym_attribute_declaration, + STATE(7966), 1, + sym_nested_namespace_specifier, + STATE(9177), 1, + sym__namespace_specifier, + [254020] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10074), 1, + anon_sym_COLON_COLON, + ACTIONS(11504), 1, + sym_identifier, + ACTIONS(11506), 1, + anon_sym_template, + STATE(1316), 1, + sym_template_type, + STATE(1317), 1, + sym_dependent_type_identifier, + STATE(1325), 1, + sym_qualified_type_identifier, + STATE(6898), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [254051] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6279), 1, + anon_sym_COLON_COLON, + ACTIONS(11508), 1, + sym_identifier, + ACTIONS(11510), 1, + anon_sym_template, + STATE(2463), 1, + sym_template_type, + STATE(2464), 1, + sym_dependent_type_identifier, + STATE(2518), 1, + sym_qualified_type_identifier, + STATE(6899), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [254082] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(11442), 1, + anon_sym_COLON_COLON, + ACTIONS(11512), 1, + sym_identifier, + ACTIONS(11514), 1, + anon_sym_template, + STATE(2412), 1, + sym_qualified_type_identifier, + STATE(2416), 1, + sym_template_type, + STATE(2418), 1, + sym_dependent_type_identifier, + STATE(6900), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [254113] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6251), 1, + anon_sym_COLON_COLON, + ACTIONS(11516), 1, + sym_identifier, + ACTIONS(11518), 1, + anon_sym_template, + STATE(1310), 1, + sym_dependent_type_identifier, + STATE(1311), 1, + sym_template_type, + STATE(1541), 1, + sym_qualified_type_identifier, + STATE(6901), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [254144] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10080), 1, + anon_sym_COLON_COLON, + ACTIONS(11520), 1, + sym_identifier, + ACTIONS(11522), 1, + anon_sym_template, + STATE(2463), 1, + sym_template_type, + STATE(2464), 1, + sym_dependent_type_identifier, + STATE(2518), 1, + sym_qualified_type_identifier, + STATE(6902), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [254175] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4053), 1, + anon_sym_LBRACE, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11492), 1, + anon_sym_COLON_COLON, + ACTIONS(11494), 1, + anon_sym_inline, + ACTIONS(11524), 1, + sym_identifier, + STATE(552), 1, + sym_declaration_list, + STATE(7018), 1, + sym_attribute_declaration, + STATE(8106), 1, + sym_nested_namespace_specifier, + STATE(9177), 1, + sym__namespace_specifier, + [254206] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6303), 1, + anon_sym_COLON_COLON, + ACTIONS(11526), 1, + sym_identifier, + ACTIONS(11528), 1, + anon_sym_template, + STATE(3030), 1, + sym_template_type, + STATE(3031), 1, + sym_dependent_type_identifier, + STATE(3127), 1, + sym_qualified_type_identifier, + STATE(6904), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [254237] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(8355), 1, + anon_sym_COLON_COLON, + ACTIONS(11516), 1, + sym_identifier, + ACTIONS(11518), 1, + anon_sym_template, + STATE(1308), 1, + sym_qualified_type_identifier, + STATE(1310), 1, + sym_dependent_type_identifier, + STATE(1311), 1, + sym_template_type, + STATE(6905), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [254268] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6313), 1, + anon_sym_COLON_COLON, + ACTIONS(11530), 1, + sym_identifier, + ACTIONS(11532), 1, + anon_sym_template, + STATE(4657), 1, + sym_template_type, + STATE(4658), 1, + sym_dependent_type_identifier, + STATE(4792), 1, + sym_qualified_type_identifier, + STATE(6906), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [254299] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6319), 1, + anon_sym_COLON_COLON, + ACTIONS(11534), 1, + sym_identifier, + ACTIONS(11536), 1, + anon_sym_template, + STATE(3903), 1, + sym_template_type, + STATE(3904), 1, + sym_dependent_type_identifier, + STATE(4050), 1, + sym_qualified_type_identifier, + STATE(6907), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [254330] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11538), 1, + sym_identifier, + ACTIONS(11542), 1, + sym_system_lib_string, + STATE(8536), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(11540), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [254351] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6309), 1, + anon_sym_COLON_COLON, + ACTIONS(11498), 1, + anon_sym_template, + ACTIONS(11544), 1, + sym_identifier, + STATE(2934), 1, + sym_dependent_type_identifier, + STATE(2955), 1, + sym_template_type, + STATE(3010), 1, + sym_qualified_type_identifier, + STATE(6909), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [254382] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(5118), 1, - anon_sym_LPAREN2, - ACTIONS(5126), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10666), 1, + anon_sym_COLON_COLON, + ACTIONS(11546), 1, sym_identifier, - ACTIONS(5128), 1, - anon_sym_STAR, - ACTIONS(5130), 1, - anon_sym_AMP_AMP, - ACTIONS(5132), 1, - anon_sym_AMP, - ACTIONS(6039), 1, - anon_sym_SEMI, - ACTIONS(6041), 1, - anon_sym_EQ, - ACTIONS(6043), 1, - anon_sym_COLON, - STATE(3448), 1, - sym__field_declarator, - STATE(4991), 1, - sym_ms_based_modifier, - STATE(4992), 1, - sym_bitfield_clause, - STATE(4993), 1, - sym_initializer_list, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [77353] = 3, + STATE(6092), 1, + sym__scope_resolution, + STATE(8710), 1, + sym_qualified_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [254409] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6047), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6045), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [77384] = 13, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6289), 1, + anon_sym_COLON_COLON, + ACTIONS(11548), 1, + sym_identifier, + ACTIONS(11550), 1, + anon_sym_template, + STATE(2554), 1, + sym_template_type, + STATE(2555), 1, + sym_dependent_type_identifier, + STATE(2589), 1, + sym_qualified_type_identifier, + STATE(6911), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [254440] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6015), 1, - anon_sym_LBRACK, - ACTIONS(6049), 1, - anon_sym_STAR, - ACTIONS(6051), 1, - anon_sym_AMP_AMP, - ACTIONS(6053), 1, - anon_sym_AMP, - STATE(3270), 1, - sym_parameter_list, - STATE(3935), 1, - sym__abstract_declarator, - STATE(3255), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4421), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [77435] = 17, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6261), 1, + anon_sym_COLON_COLON, + ACTIONS(11552), 1, + sym_identifier, + ACTIONS(11554), 1, + anon_sym_template, + STATE(2985), 1, + sym_dependent_type_identifier, + STATE(2994), 1, + sym_template_type, + STATE(3020), 1, + sym_qualified_type_identifier, + STATE(6912), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [254471] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(5118), 1, - anon_sym_LPAREN2, - ACTIONS(5126), 1, + ACTIONS(11556), 1, sym_identifier, - ACTIONS(5128), 1, - anon_sym_STAR, - ACTIONS(5130), 1, - anon_sym_AMP_AMP, - ACTIONS(5132), 1, - anon_sym_AMP, - ACTIONS(6043), 1, - anon_sym_COLON, - ACTIONS(6055), 1, - anon_sym_SEMI, - ACTIONS(6057), 1, - anon_sym_EQ, - STATE(3452), 1, - sym__field_declarator, - STATE(4854), 1, - sym_bitfield_clause, - STATE(4855), 1, - sym_initializer_list, - STATE(4991), 1, - sym_ms_based_modifier, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [77494] = 13, + ACTIONS(11558), 1, + sym_system_lib_string, + STATE(9202), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(11540), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [254492] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6015), 1, - anon_sym_LBRACK, - ACTIONS(6059), 1, - anon_sym_STAR, - ACTIONS(6061), 1, - anon_sym_AMP_AMP, - ACTIONS(6063), 1, - anon_sym_AMP, - STATE(3273), 1, - sym_parameter_list, - STATE(3940), 1, - sym__abstract_declarator, - STATE(3379), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4589), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [77545] = 4, + ACTIONS(11560), 1, + sym_identifier, + ACTIONS(11562), 1, + sym_system_lib_string, + STATE(8906), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(11540), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [254513] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6067), 1, - anon_sym_LPAREN2, - ACTIONS(6069), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6065), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [77578] = 3, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10666), 1, + anon_sym_COLON_COLON, + ACTIONS(11564), 1, + sym_identifier, + STATE(6092), 1, + sym__scope_resolution, + STATE(8789), 1, + sym_qualified_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [254540] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6073), 3, + ACTIONS(4561), 1, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6071), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(11566), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11568), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_and, + ACTIONS(4563), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [77609] = 3, + anon_sym_LBRACK, + [254561] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6077), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6075), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [77640] = 13, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6269), 1, + anon_sym_COLON_COLON, + ACTIONS(11570), 1, + sym_identifier, + ACTIONS(11572), 1, + anon_sym_template, + STATE(2463), 1, + sym_template_type, + STATE(2464), 1, + sym_dependent_type_identifier, + STATE(2518), 1, + sym_qualified_type_identifier, + STATE(6917), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [254592] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2381), 1, - anon_sym_AMP_AMP, - ACTIONS(2383), 1, - anon_sym_AMP, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6015), 1, - anon_sym_LBRACK, - STATE(3266), 1, - sym_parameter_list, - STATE(3962), 1, - sym__abstract_declarator, - STATE(3379), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6079), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [77691] = 3, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6255), 1, + anon_sym_COLON_COLON, + ACTIONS(11510), 1, + anon_sym_template, + ACTIONS(11574), 1, + sym_identifier, + STATE(2463), 1, + sym_template_type, + STATE(2464), 1, + sym_dependent_type_identifier, + STATE(2518), 1, + sym_qualified_type_identifier, + STATE(6918), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [254623] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6083), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6081), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [77722] = 3, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3009), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(11576), 1, + sym_identifier, + STATE(1308), 1, + sym_qualified_type_identifier, + STATE(1310), 1, + sym_dependent_type_identifier, + STATE(1311), 1, + sym_template_type, + STATE(6919), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [254654] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6087), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6085), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [77753] = 3, + ACTIONS(11578), 1, + sym_identifier, + ACTIONS(11580), 1, + sym_system_lib_string, + STATE(8924), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(11540), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [254675] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6091), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6089), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(4081), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [77784] = 13, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11492), 1, + anon_sym_COLON_COLON, + ACTIONS(11494), 1, + anon_sym_inline, + ACTIONS(11582), 1, + sym_identifier, + STATE(205), 1, + sym_declaration_list, + STATE(7046), 1, + sym_attribute_declaration, + STATE(8232), 1, + sym_nested_namespace_specifier, + STATE(9177), 1, + sym__namespace_specifier, + [254706] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6015), 1, - anon_sym_LBRACK, - ACTIONS(6049), 1, - anon_sym_STAR, - ACTIONS(6051), 1, - anon_sym_AMP_AMP, - ACTIONS(6053), 1, - anon_sym_AMP, - STATE(3270), 1, - sym_parameter_list, - STATE(3955), 1, - sym__abstract_declarator, - STATE(3379), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6079), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [77835] = 3, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10666), 1, + anon_sym_COLON_COLON, + ACTIONS(11584), 1, + sym_identifier, + STATE(6092), 1, + sym__scope_resolution, + STATE(8923), 1, + sym_qualified_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [254733] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6095), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6093), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [77866] = 3, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10666), 1, + anon_sym_COLON_COLON, + ACTIONS(11586), 1, + sym_identifier, + STATE(6092), 1, + sym__scope_resolution, + STATE(8876), 1, + sym_qualified_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [254760] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6099), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6097), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [77897] = 12, + ACTIONS(3313), 1, + anon_sym_COLON_COLON, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(11588), 1, + sym_identifier, + ACTIONS(11590), 1, + anon_sym_template, + STATE(1308), 1, + sym_qualified_type_identifier, + STATE(1310), 1, + sym_dependent_type_identifier, + STATE(1311), 1, + sym_template_type, + STATE(6924), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [254791] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5891), 1, - anon_sym_DASH_GT, - ACTIONS(5907), 1, - anon_sym_LBRACK, - STATE(3239), 1, - sym_trailing_return_type, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5905), 5, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - STATE(3177), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - [77946] = 5, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10666), 1, + anon_sym_COLON_COLON, + ACTIONS(11592), 1, + sym_identifier, + STATE(6092), 1, + sym__scope_resolution, + STATE(8604), 1, + sym_qualified_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [254818] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10666), 1, anon_sym_COLON_COLON, - STATE(3248), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5948), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(4385), 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, + ACTIONS(11594), 1, sym_identifier, - anon_sym_decltype, - sym_auto, - anon_sym_typename, + STATE(6092), 1, + sym__scope_resolution, + STATE(8570), 1, + sym_qualified_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [254845] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, anon_sym_template, - [77981] = 3, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(10666), 1, + anon_sym_COLON_COLON, + ACTIONS(11596), 1, + sym_identifier, + STATE(6092), 1, + sym__scope_resolution, + STATE(8670), 1, + sym_qualified_identifier, + STATE(8447), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [254872] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6103), 3, - anon_sym_AMP, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6101), 20, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + STATE(3579), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + ACTIONS(11028), 2, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [78012] = 17, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [254899] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(5118), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(5126), 1, - sym_identifier, - ACTIONS(5128), 1, - anon_sym_STAR, - ACTIONS(5130), 1, - anon_sym_AMP_AMP, - ACTIONS(5132), 1, - anon_sym_AMP, - ACTIONS(6043), 1, - anon_sym_COLON, - ACTIONS(6105), 1, - anon_sym_SEMI, - ACTIONS(6107), 1, + STATE(3579), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + ACTIONS(11032), 2, + anon_sym_LBRACE, anon_sym_EQ, - STATE(3453), 1, - sym__field_declarator, - STATE(4991), 1, - sym_ms_based_modifier, - STATE(5144), 1, - sym_bitfield_clause, - STATE(5146), 1, - sym_initializer_list, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [78071] = 13, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [254926] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6015), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(6049), 1, - anon_sym_STAR, - ACTIONS(6051), 1, - anon_sym_AMP_AMP, - ACTIONS(6053), 1, - anon_sym_AMP, - STATE(3270), 1, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(3579), 1, sym_parameter_list, - STATE(3952), 1, - sym__abstract_declarator, - STATE(3259), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6109), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [78122] = 3, + STATE(6342), 1, + sym__function_declarator_seq, + ACTIONS(11063), 2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [254953] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5907), 3, - anon_sym_AMP, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5905), 20, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + STATE(3579), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + ACTIONS(11018), 2, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [78153] = 3, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [254980] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6113), 3, - anon_sym_AMP, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6111), 20, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + STATE(3579), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + ACTIONS(11053), 2, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [78184] = 13, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [255007] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2381), 1, - anon_sym_AMP_AMP, - ACTIONS(2383), 1, - anon_sym_AMP, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6015), 1, - anon_sym_LBRACK, - STATE(3266), 1, - sym_parameter_list, - STATE(3933), 1, - sym__abstract_declarator, - STATE(3258), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6109), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [78235] = 13, + ACTIONS(1263), 1, + anon_sym_template, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6273), 1, + anon_sym_COLON_COLON, + ACTIONS(11576), 1, + sym_identifier, + STATE(1310), 1, + sym_dependent_type_identifier, + STATE(1311), 1, + sym_template_type, + STATE(1541), 1, + sym_qualified_type_identifier, + STATE(6933), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [255038] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6015), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(6049), 1, - anon_sym_STAR, - ACTIONS(6051), 1, - anon_sym_AMP_AMP, - ACTIONS(6053), 1, - anon_sym_AMP, - STATE(3270), 1, + STATE(3798), 1, sym_parameter_list, - STATE(3943), 1, - sym__abstract_declarator, - STATE(3379), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4589), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [78286] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6117), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6115), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10877), 5, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, anon_sym_COLON, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [78317] = 13, + anon_sym_requires, + [255061] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6015), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(6049), 1, - anon_sym_STAR, - ACTIONS(6051), 1, - anon_sym_AMP_AMP, - ACTIONS(6053), 1, - anon_sym_AMP, - STATE(3270), 1, + STATE(3798), 1, sym_parameter_list, - STATE(3956), 1, - sym__abstract_declarator, - STATE(3244), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6119), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [78368] = 13, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10881), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [255084] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2381), 1, - anon_sym_AMP_AMP, - ACTIONS(2383), 1, - anon_sym_AMP, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6015), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - STATE(3266), 1, + STATE(3798), 1, sym_parameter_list, - STATE(3926), 1, - sym__abstract_declarator, - STATE(3379), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6121), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [78419] = 13, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10885), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [255107] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6015), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(6049), 1, - anon_sym_STAR, - ACTIONS(6051), 1, - anon_sym_AMP_AMP, - ACTIONS(6053), 1, - anon_sym_AMP, - STATE(3270), 1, + STATE(3798), 1, sym_parameter_list, - STATE(3934), 1, - sym__abstract_declarator, - STATE(3379), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6121), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [78470] = 13, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10889), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [255130] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2381), 1, - anon_sym_AMP_AMP, - ACTIONS(2383), 1, - anon_sym_AMP, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6015), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - STATE(3266), 1, + STATE(3798), 1, sym_parameter_list, - STATE(3945), 1, - sym__abstract_declarator, - STATE(3240), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6119), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [78521] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6125), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6123), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10893), 5, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, anon_sym_COLON, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [78552] = 12, + anon_sym_requires, + [255153] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5891), 1, - anon_sym_DASH_GT, - ACTIONS(5915), 1, - anon_sym_LBRACK, - STATE(3256), 1, - sym_trailing_return_type, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5913), 5, + ACTIONS(9961), 1, anon_sym_LPAREN2, + ACTIONS(10869), 1, + anon_sym_LBRACK, + STATE(3798), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10897), 5, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_COLON, anon_sym_final, anon_sym_override, - STATE(3177), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - [78601] = 12, + anon_sym_requires, + [255176] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5891), 1, - anon_sym_DASH_GT, - ACTIONS(5911), 1, - anon_sym_LBRACK, - STATE(3252), 1, - sym_trailing_return_type, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5909), 5, + ACTIONS(9961), 1, anon_sym_LPAREN2, + ACTIONS(10869), 1, + anon_sym_LBRACK, + STATE(3798), 1, + sym_parameter_list, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10901), 5, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_COLON, anon_sym_final, anon_sym_override, - STATE(3247), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - [78650] = 13, + anon_sym_requires, + [255199] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6015), 1, + ACTIONS(10869), 1, anon_sym_LBRACK, - ACTIONS(6059), 1, - anon_sym_STAR, - ACTIONS(6061), 1, - anon_sym_AMP_AMP, - ACTIONS(6063), 1, - anon_sym_AMP, - STATE(3273), 1, + STATE(3798), 1, sym_parameter_list, - STATE(3937), 1, - sym__abstract_declarator, - STATE(3236), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4421), 3, - anon_sym_SEMI, + STATE(6129), 1, + sym__function_declarator_seq, + ACTIONS(10867), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [255222] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4083), 1, anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [78701] = 12, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11492), 1, + anon_sym_COLON_COLON, + ACTIONS(11494), 1, + anon_sym_inline, + ACTIONS(11598), 1, + sym_identifier, + STATE(477), 1, + sym_declaration_list, + STATE(7039), 1, + sym_attribute_declaration, + STATE(8228), 1, + sym_nested_namespace_specifier, + STATE(9177), 1, + sym__namespace_specifier, + [255253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, + ACTIONS(4647), 1, anon_sym_AMP, - ACTIONS(5160), 1, - anon_sym_noexcept, - ACTIONS(5162), 1, - anon_sym_throw, - ACTIONS(5877), 1, - anon_sym_LBRACK, - ACTIONS(5891), 1, - anon_sym_DASH_GT, - STATE(3231), 1, - sym_trailing_return_type, - ACTIONS(3871), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(5875), 5, + ACTIONS(11568), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(4649), 6, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_or, + [255272] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + ACTIONS(11600), 1, + sym_identifier, + ACTIONS(11602), 1, + anon_sym_template, + STATE(1308), 1, + sym_qualified_type_identifier, + STATE(1310), 1, + sym_dependent_type_identifier, + STATE(1311), 1, + sym_template_type, + STATE(6944), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [255303] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4053), 1, + anon_sym_LBRACE, + ACTIONS(4356), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(11492), 1, + anon_sym_COLON_COLON, + ACTIONS(11494), 1, + anon_sym_inline, + ACTIONS(11604), 1, + sym_identifier, + STATE(569), 1, + sym_declaration_list, + STATE(7043), 1, + sym_attribute_declaration, + STATE(8285), 1, + sym_nested_namespace_specifier, + STATE(9177), 1, + sym__namespace_specifier, + [255334] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3355), 1, + anon_sym_decltype, + ACTIONS(6299), 1, + anon_sym_COLON_COLON, + ACTIONS(11600), 1, + sym_identifier, + ACTIONS(11602), 1, + anon_sym_template, + STATE(1310), 1, + sym_dependent_type_identifier, + STATE(1311), 1, + sym_template_type, + STATE(1541), 1, + sym_qualified_type_identifier, + STATE(6946), 1, + sym__scope_resolution, + STATE(8447), 1, + sym_decltype, + [255365] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4081), 1, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - STATE(3262), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - [78750] = 11, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11492), 1, + anon_sym_COLON_COLON, + ACTIONS(11494), 1, + anon_sym_inline, + ACTIONS(11606), 1, + sym_identifier, + STATE(270), 1, + sym_declaration_list, + STATE(7040), 1, + sym_attribute_declaration, + STATE(8171), 1, + sym_nested_namespace_specifier, + STATE(9177), 1, + sym__namespace_specifier, + [255396] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, - anon_sym_AMP, - ACTIONS(6131), 1, - anon_sym_DASH_GT, - ACTIONS(6133), 1, - anon_sym_noexcept, - ACTIONS(6135), 1, - anon_sym_throw, - STATE(3729), 1, - sym_trailing_return_type, - ACTIONS(5875), 5, - anon_sym_COMMA, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9967), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11077), 1, anon_sym_RPAREN, + STATE(3332), 1, + sym_parameter_list, + STATE(6689), 1, + sym__function_declarator_seq, + STATE(7108), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [255422] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(10899), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3274), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - [78796] = 6, + STATE(3525), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10897), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + [255446] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6137), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(6139), 1, + ACTIONS(11247), 1, anon_sym_LBRACK, - STATE(3169), 1, + STATE(3672), 1, sym_parameter_list, - ACTIONS(5493), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5491), 17, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10897), 4, anon_sym_COLON, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [78832] = 4, + anon_sym_requires, + [255468] = 8, ACTIONS(3), 1, sym_comment, - STATE(1319), 1, - sym_enumerator_list, - ACTIONS(3487), 3, - anon_sym_AMP, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(3489), 18, - anon_sym_COMMA, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, + ACTIONS(11608), 1, + anon_sym_RPAREN, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [255494] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9961), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3672), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10867), 4, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [78864] = 4, + anon_sym_requires, + [255516] = 6, ACTIONS(3), 1, sym_comment, - STATE(1355), 1, - sym_enumerator_list, - ACTIONS(3446), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(3448), 18, - anon_sym_COMMA, + ACTIONS(9961), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3672), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10881), 4, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [78896] = 11, + anon_sym_requires, + [255538] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, - anon_sym_AMP, - ACTIONS(6133), 1, - anon_sym_noexcept, - ACTIONS(6135), 1, - anon_sym_throw, - ACTIONS(6141), 1, - anon_sym_DASH_GT, - STATE(3729), 1, - sym_trailing_return_type, - ACTIONS(5875), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, anon_sym_LPAREN2, + ACTIONS(10196), 1, anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3272), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - [78942] = 6, + ACTIONS(11610), 1, + anon_sym_COLON, + STATE(3834), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6621), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [255564] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6139), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - STATE(3169), 1, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11612), 1, + anon_sym_SEMI, + STATE(3332), 1, sym_parameter_list, - ACTIONS(6145), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6143), 17, - anon_sym_COMMA, - anon_sym_AMP_AMP, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [255590] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, + anon_sym_LT, + ACTIONS(11614), 1, anon_sym_SEMI, + ACTIONS(11616), 1, + anon_sym_EQ, + STATE(917), 1, + sym_template_argument_list, + STATE(7463), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [255616] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, + anon_sym_LT, + ACTIONS(11618), 1, + anon_sym_SEMI, + ACTIONS(11620), 1, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [78978] = 11, + STATE(917), 1, + sym_template_argument_list, + STATE(7435), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [255642] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, - anon_sym_AMP, - ACTIONS(6133), 1, - anon_sym_noexcept, - ACTIONS(6135), 1, - anon_sym_throw, - ACTIONS(6141), 1, - anon_sym_DASH_GT, - STATE(3776), 1, - sym_trailing_return_type, - ACTIONS(5913), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9967), 1, anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3202), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - [79024] = 11, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11087), 1, + anon_sym_RPAREN, + STATE(3332), 1, + sym_parameter_list, + STATE(6689), 1, + sym__function_declarator_seq, + STATE(7108), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [255668] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, - anon_sym_AMP, - ACTIONS(6133), 1, - anon_sym_noexcept, - ACTIONS(6135), 1, - anon_sym_throw, - ACTIONS(6147), 1, - anon_sym_DASH_GT, - STATE(3729), 1, - sym_trailing_return_type, - ACTIONS(5875), 5, - anon_sym_LPAREN2, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, + anon_sym_LT, + ACTIONS(11622), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(11624), 1, anon_sym_EQ, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3285), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - [79070] = 11, + STATE(917), 1, + sym_template_argument_list, + STATE(7444), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [255694] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, - anon_sym_AMP, - ACTIONS(6131), 1, - anon_sym_DASH_GT, - ACTIONS(6133), 1, - anon_sym_noexcept, - ACTIONS(6135), 1, - anon_sym_throw, - STATE(3776), 1, - sym_trailing_return_type, - ACTIONS(5913), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3202), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - [79116] = 11, + ACTIONS(11053), 1, + anon_sym_COLON, + STATE(3834), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6621), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [255720] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, - anon_sym_AMP, - ACTIONS(6131), 1, - anon_sym_DASH_GT, - ACTIONS(6133), 1, - anon_sym_noexcept, - ACTIONS(6135), 1, - anon_sym_throw, - STATE(3775), 1, - sym_trailing_return_type, - ACTIONS(5909), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3279), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - [79162] = 11, + ACTIONS(11063), 1, + anon_sym_COLON, + STATE(3834), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6621), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [255746] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, - anon_sym_AMP, - ACTIONS(6133), 1, - anon_sym_noexcept, - ACTIONS(6135), 1, - anon_sym_throw, - ACTIONS(6141), 1, - anon_sym_DASH_GT, - STATE(3745), 1, - sym_trailing_return_type, - ACTIONS(5905), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9961), 1, anon_sym_LPAREN2, + ACTIONS(11247), 1, anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3202), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - [79208] = 5, + STATE(3672), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10877), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [255768] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6151), 1, - anon_sym_LPAREN2, - STATE(3322), 1, - sym_preproc_argument_list, - ACTIONS(6153), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(3281), 1, + anon_sym_LBRACK, + ACTIONS(5074), 1, anon_sym_LT, - ACTIONS(6149), 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, - [79242] = 3, + STATE(6287), 1, + sym_template_argument_list, + ACTIONS(3274), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [255790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6157), 6, - anon_sym_LPAREN2, + ACTIONS(11628), 3, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_COLON_COLON, - anon_sym_LBRACK, - ACTIONS(6155), 16, - anon_sym_AMP, + ACTIONS(11626), 5, anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, sym_identifier, + anon_sym_decltype, anon_sym_template, anon_sym_operator, - [79272] = 11, + [255806] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, - anon_sym_AMP, - ACTIONS(6131), 1, - anon_sym_DASH_GT, - ACTIONS(6133), 1, - anon_sym_noexcept, - ACTIONS(6135), 1, - anon_sym_throw, - STATE(3745), 1, - sym_trailing_return_type, - ACTIONS(5905), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(11247), 1, anon_sym_LBRACK, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3202), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - [79318] = 3, + STATE(3371), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(11630), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [255828] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6161), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + ACTIONS(11466), 1, anon_sym_LBRACK, - ACTIONS(6159), 16, - anon_sym_AMP, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [79348] = 5, + STATE(7809), 1, + sym_gnu_asm_input_operand, + STATE(9266), 1, + sym_string_literal, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [255848] = 6, ACTIONS(3), 1, sym_comment, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4385), 5, - anon_sym_AMP, - anon_sym___based, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(6163), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(4387), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + ACTIONS(11247), 1, anon_sym_LBRACK, - anon_sym_GT2, - [79382] = 6, + STATE(3371), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10897), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [255870] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6137), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(6139), 1, + ACTIONS(11247), 1, anon_sym_LBRACK, - STATE(3169), 1, + STATE(3672), 1, sym_parameter_list, - ACTIONS(6168), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6166), 17, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10889), 4, anon_sym_COLON, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [79418] = 6, + anon_sym_requires, + [255892] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6137), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(6139), 1, + ACTIONS(11247), 1, anon_sym_LBRACK, - STATE(3169), 1, + STATE(3672), 1, sym_parameter_list, - ACTIONS(6172), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6170), 17, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10893), 4, anon_sym_COLON, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [79454] = 11, + anon_sym_requires, + [255914] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, - anon_sym_AMP, - ACTIONS(6133), 1, - anon_sym_noexcept, - ACTIONS(6135), 1, - anon_sym_throw, - ACTIONS(6147), 1, - anon_sym_DASH_GT, - STATE(3775), 1, - sym_trailing_return_type, - ACTIONS(5909), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9967), 1, anon_sym_LBRACK, - anon_sym_EQ, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3286), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - [79500] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, - anon_sym_AMP, - ACTIONS(6133), 1, - anon_sym_noexcept, - ACTIONS(6135), 1, - anon_sym_throw, - ACTIONS(6147), 1, - anon_sym_DASH_GT, - STATE(3776), 1, - sym_trailing_return_type, - ACTIONS(5913), 5, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3202), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - [79546] = 11, + ACTIONS(11039), 1, + anon_sym_RPAREN, + STATE(3332), 1, + sym_parameter_list, + STATE(6689), 1, + sym__function_declarator_seq, + STATE(7108), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [255940] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, - anon_sym_AMP, - ACTIONS(6133), 1, - anon_sym_noexcept, - ACTIONS(6135), 1, - anon_sym_throw, - ACTIONS(6147), 1, - anon_sym_DASH_GT, - STATE(3745), 1, - sym_trailing_return_type, - ACTIONS(5905), 5, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, anon_sym_LPAREN2, + ACTIONS(11632), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3202), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - [79592] = 11, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [255966] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, - anon_sym_AMP, - ACTIONS(6133), 1, - anon_sym_noexcept, - ACTIONS(6135), 1, - anon_sym_throw, - ACTIONS(6141), 1, - anon_sym_DASH_GT, - STATE(3775), 1, - sym_trailing_return_type, - ACTIONS(5909), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3276), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - [79638] = 6, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11634), 1, + anon_sym_SEMI, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [255992] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6137), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(6139), 1, + ACTIONS(11247), 1, anon_sym_LBRACK, - STATE(3169), 1, + STATE(3371), 1, sym_parameter_list, - ACTIONS(6176), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6174), 17, - anon_sym_COMMA, - anon_sym_AMP_AMP, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10881), 4, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [79674] = 6, + anon_sym_try, + [256014] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3852), 1, - anon_sym_COLON, - STATE(1354), 1, - sym_enumerator_list, - STATE(3268), 1, - sym__enum_base_clause, - ACTIONS(3832), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(3834), 15, + ACTIONS(9961), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3672), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10901), 4, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [79709] = 6, + anon_sym_requires, + [256036] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3108), 1, anon_sym_COLON_COLON, - ACTIONS(6178), 1, + ACTIONS(5074), 1, anon_sym_LT, - STATE(2473), 1, + ACTIONS(11636), 1, + anon_sym_SEMI, + ACTIONS(11638), 1, + anon_sym_EQ, + STATE(917), 1, sym_template_argument_list, - ACTIONS(3356), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(2423), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(7301), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [256062] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, + ACTIONS(10871), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [79744] = 16, + STATE(3525), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10867), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + [256086] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6180), 1, - anon_sym_COMMA, - ACTIONS(6182), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9967), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11073), 1, anon_sym_RPAREN, - ACTIONS(6188), 1, - anon_sym_SLASH, - ACTIONS(6190), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6192), 1, - anon_sym_AMP_AMP, - ACTIONS(6194), 1, - anon_sym_PIPE, - ACTIONS(6196), 1, - anon_sym_CARET, - ACTIONS(6198), 1, - anon_sym_AMP, - STATE(4235), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(6184), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6186), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6200), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6202), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6204), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6206), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79799] = 6, + STATE(3332), 1, + sym_parameter_list, + STATE(6689), 1, + sym__function_declarator_seq, + STATE(7108), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [256112] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11640), 1, + sym_identifier, + ACTIONS(11645), 1, + aux_sym_preproc_elif_token1, + STATE(6978), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8829), 1, + sym_enumerator, + ACTIONS(11643), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [256134] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(6208), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(3190), 1, + ACTIONS(11647), 1, + anon_sym_SEMI, + STATE(3332), 1, sym_parameter_list, - ACTIONS(6172), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6170), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [256160] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, + anon_sym_LT, + ACTIONS(11649), 1, + anon_sym_SEMI, + ACTIONS(11651), 1, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [79834] = 16, + STATE(917), 1, + sym_template_argument_list, + STATE(7470), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [256186] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6180), 1, - anon_sym_COMMA, - ACTIONS(6188), 1, - anon_sym_SLASH, - ACTIONS(6190), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6192), 1, - anon_sym_AMP_AMP, - ACTIONS(6194), 1, - anon_sym_PIPE, - ACTIONS(6196), 1, - anon_sym_CARET, - ACTIONS(6198), 1, - anon_sym_AMP, - ACTIONS(6210), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9967), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11081), 1, anon_sym_RPAREN, - STATE(4331), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(6184), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6186), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6200), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6202), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6204), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6206), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79889] = 6, + STATE(3332), 1, + sym_parameter_list, + STATE(6689), 1, + sym__function_declarator_seq, + STATE(7108), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [256212] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, - anon_sym_LBRACK, - ACTIONS(6208), 1, + ACTIONS(11653), 1, + sym_identifier, + ACTIONS(11658), 1, + aux_sym_preproc_elif_token1, + STATE(6982), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(11656), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [256232] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(3189), 1, + ACTIONS(10883), 1, + anon_sym___attribute, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3560), 1, sym_parameter_list, - ACTIONS(5493), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5491), 16, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10881), 3, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym___attribute__, + anon_sym_GT2, + [256256] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, + anon_sym_LT, + ACTIONS(6746), 1, + anon_sym_COMMA, + ACTIONS(11660), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11662), 1, + anon_sym_RBRACK, + ACTIONS(11665), 1, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, + STATE(917), 1, + sym_template_argument_list, + STATE(7681), 1, + aux_sym_structured_binding_declarator_repeat1, + [256284] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9961), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3672), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10885), 4, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [79924] = 13, + anon_sym_requires, + [256306] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(4421), 1, - anon_sym_LBRACE, - ACTIONS(6015), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(6212), 1, - anon_sym_STAR, - ACTIONS(6214), 1, - anon_sym_AMP_AMP, - ACTIONS(6216), 1, - anon_sym_AMP, - STATE(3341), 1, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11667), 1, + anon_sym_SEMI, + STATE(3332), 1, sym_parameter_list, - STATE(4133), 1, - sym__abstract_declarator, - STATE(3305), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [79973] = 6, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [256332] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(3362), 1, - anon_sym_LT, - STATE(1294), 1, - sym_template_argument_list, - ACTIONS(3358), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3360), 16, - anon_sym_DOT_DOT_DOT, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(10887), 1, + anon_sym___attribute, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3525), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10885), 3, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym___attribute__, + [256356] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3371), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10867), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_GT2, - [80008] = 5, - ACTIONS(6149), 1, - anon_sym_LF, - ACTIONS(6218), 1, - anon_sym_LPAREN2, - ACTIONS(6220), 1, + anon_sym_try, + [256378] = 8, + ACTIONS(3), 1, sym_comment, - STATE(3397), 1, - sym_preproc_argument_list, - ACTIONS(6153), 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, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80041] = 6, + ACTIONS(11669), 1, + anon_sym_SEMI, + ACTIONS(11671), 1, + anon_sym_EQ, + STATE(917), 1, + sym_template_argument_list, + STATE(7350), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [256404] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, - anon_sym_LBRACK, - ACTIONS(6208), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(3190), 1, + ACTIONS(10887), 1, + anon_sym___attribute, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3560), 1, sym_parameter_list, - ACTIONS(6145), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6143), 16, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10885), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, + anon_sym___attribute__, anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [80076] = 6, + [256428] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(6208), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(3190), 1, + ACTIONS(11673), 1, + anon_sym_SEMI, + STATE(3332), 1, sym_parameter_list, - ACTIONS(6168), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6166), 16, - anon_sym_COMMA, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [256454] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9967), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11675), 1, anon_sym_RPAREN, - anon_sym_AMP_AMP, + STATE(3332), 1, + sym_parameter_list, + STATE(6689), 1, + sym__function_declarator_seq, + STATE(7108), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [256480] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8139), 1, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [80111] = 6, + ACTIONS(9961), 1, + anon_sym_LPAREN2, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(11028), 1, + anon_sym_COLON, + STATE(3834), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6621), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [256506] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(6208), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(3189), 1, - sym_parameter_list, - ACTIONS(6176), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6174), 16, - anon_sym_COMMA, - anon_sym_AMP_AMP, + ACTIONS(11677), 1, anon_sym_SEMI, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [256532] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [80146] = 6, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11679), 1, + anon_sym_SEMI, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [256558] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(6178), 1, - anon_sym_LT, - STATE(2473), 1, - sym_template_argument_list, - ACTIONS(2459), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(2466), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, + ACTIONS(10899), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_final, - anon_sym_override, + STATE(3560), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10897), 3, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_GT2, - [80181] = 6, + [256582] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, + anon_sym_LPAREN2, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(6208), 1, + ACTIONS(11032), 1, + anon_sym_COLON, + STATE(3834), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6621), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [256608] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(3189), 1, + ACTIONS(10871), 1, + anon_sym___attribute, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3560), 1, sym_parameter_list, - ACTIONS(6172), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6170), 16, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10867), 3, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_GT2, + [256632] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, + anon_sym_LT, + ACTIONS(11681), 1, + anon_sym_SEMI, + ACTIONS(11683), 1, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [80216] = 10, + STATE(917), 1, + sym_template_argument_list, + STATE(7467), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [256658] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, - sym_identifier, - ACTIONS(6224), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11685), 1, anon_sym_RPAREN, - ACTIONS(6226), 1, + STATE(3332), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [256684] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9967), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(6228), 1, - anon_sym_defined, - ACTIONS(6234), 1, - sym_number_literal, - ACTIONS(6230), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6232), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6236), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3291), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [80259] = 6, + ACTIONS(11687), 1, + anon_sym_RPAREN, + STATE(3332), 1, + sym_parameter_list, + STATE(6689), 1, + sym__function_declarator_seq, + STATE(7108), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [256710] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(6238), 1, - anon_sym_LT, - STATE(2244), 1, - sym_template_argument_list, - ACTIONS(3356), 3, - anon_sym_AMP, - anon_sym_const, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, + anon_sym_LPAREN2, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(11018), 1, anon_sym_COLON, - ACTIONS(2423), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(3834), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6621), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [256736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11691), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11689), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [256752] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3371), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10885), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_final, - anon_sym_override, - [80294] = 13, + anon_sym_EQ, + anon_sym_try, + [256774] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(4589), 1, - anon_sym_LBRACE, - ACTIONS(6015), 1, + ACTIONS(10883), 1, + anon_sym___attribute, + ACTIONS(11247), 1, anon_sym_LBRACK, - ACTIONS(6212), 1, - anon_sym_STAR, - ACTIONS(6214), 1, - anon_sym_AMP_AMP, - ACTIONS(6216), 1, - anon_sym_AMP, - STATE(3341), 1, + STATE(3525), 1, sym_parameter_list, - STATE(4098), 1, - sym__abstract_declarator, - STATE(3379), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [80343] = 6, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10881), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + [256798] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, + ACTIONS(3108), 1, anon_sym_COLON_COLON, - ACTIONS(6238), 1, + ACTIONS(5074), 1, anon_sym_LT, - STATE(2244), 1, + ACTIONS(5849), 1, + anon_sym_LBRACK, + STATE(6287), 1, sym_template_argument_list, - ACTIONS(2459), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(2466), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5720), 4, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_try, + [256820] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11476), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_final, - anon_sym_override, - [80378] = 6, + STATE(7643), 1, + sym_gnu_asm_output_operand, + STATE(8886), 1, + sym_string_literal, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [256840] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3852), 1, - anon_sym_COLON, - STATE(1313), 1, - sym_enumerator_list, - STATE(3269), 1, - sym__enum_base_clause, - ACTIONS(3826), 3, + ACTIONS(11695), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11697), 1, + anon_sym_EQ, + ACTIONS(11693), 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, + [256858] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(4356), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5570), 1, + anon_sym___attribute__, + STATE(5693), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5750), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [256879] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4083), 1, + anon_sym_LBRACE, + ACTIONS(11492), 1, + anon_sym_COLON_COLON, + ACTIONS(11494), 1, + anon_sym_inline, + ACTIONS(11699), 1, + sym_identifier, + STATE(498), 1, + sym_declaration_list, + STATE(8267), 1, + sym_nested_namespace_specifier, + STATE(9177), 1, + sym__namespace_specifier, + [256904] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4758), 1, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(3828), 15, + ACTIONS(4760), 6, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [80413] = 6, + anon_sym_LBRACK, + anon_sym_requires, + [256919] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6727), 1, anon_sym_LBRACK, - ACTIONS(6208), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(3189), 1, + ACTIONS(11701), 1, + anon_sym_RPAREN, + STATE(2650), 1, sym_parameter_list, - ACTIONS(6145), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6143), 16, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [80448] = 6, + STATE(6605), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [256942] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6727), 1, anon_sym_LBRACK, - ACTIONS(6208), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(3189), 1, + ACTIONS(11703), 1, + anon_sym_RPAREN, + STATE(2650), 1, sym_parameter_list, - ACTIONS(6168), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6166), 16, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [80483] = 6, + STATE(6605), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [256965] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, + ACTIONS(11705), 1, anon_sym_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - STATE(3190), 1, - sym_parameter_list, - ACTIONS(5493), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5491), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, + ACTIONS(11707), 1, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [80518] = 6, + ACTIONS(11709), 1, + anon_sym_DOT, + STATE(7064), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [256984] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6727), 1, anon_sym_LBRACK, - ACTIONS(6208), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(3190), 1, - sym_parameter_list, - ACTIONS(6176), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6174), 16, - anon_sym_COMMA, + ACTIONS(11711), 1, anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [80553] = 10, + STATE(2650), 1, + sym_parameter_list, + STATE(6605), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [257007] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, + ACTIONS(4055), 1, + anon_sym_LBRACE, + ACTIONS(11492), 1, + anon_sym_COLON_COLON, + ACTIONS(11494), 1, + anon_sym_inline, + ACTIONS(11500), 1, sym_identifier, - ACTIONS(6226), 1, - anon_sym_LPAREN2, - ACTIONS(6228), 1, - anon_sym_defined, - ACTIONS(6240), 1, - anon_sym_RPAREN, - ACTIONS(6242), 1, - sym_number_literal, - ACTIONS(6230), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6232), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6236), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3293), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [80596] = 9, + STATE(433), 1, + sym_declaration_list, + STATE(8243), 1, + sym_nested_namespace_specifier, + STATE(9177), 1, + sym__namespace_specifier, + [257032] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, - sym_identifier, - ACTIONS(6246), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_defined, - ACTIONS(6254), 1, - sym_number_literal, - ACTIONS(6250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3396), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [80636] = 9, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(11713), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [257051] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, + ACTIONS(4053), 1, + anon_sym_LBRACE, + ACTIONS(11492), 1, + anon_sym_COLON_COLON, + ACTIONS(11494), 1, + anon_sym_inline, + ACTIONS(11604), 1, sym_identifier, - ACTIONS(6226), 1, - anon_sym_LPAREN2, - ACTIONS(6228), 1, - anon_sym_defined, - ACTIONS(6258), 1, - sym_number_literal, - ACTIONS(6230), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6232), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6236), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3350), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [80676] = 3, + STATE(569), 1, + sym_declaration_list, + STATE(8285), 1, + sym_nested_namespace_specifier, + STATE(9177), 1, + sym__namespace_specifier, + [257076] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5997), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(11247), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [80704] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6262), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6260), 15, + STATE(3336), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10877), 3, 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, - [80732] = 3, + anon_sym_SEMI, + [257097] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6266), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6264), 15, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3336), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10889), 3, 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, - [80760] = 9, + anon_sym_SEMI, + [257118] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, - sym_identifier, - ACTIONS(6246), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_defined, - ACTIONS(6268), 1, - sym_number_literal, - ACTIONS(6250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3417), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [80800] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6272), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6270), 15, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3505), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10881), 3, + anon_sym_DOT_DOT_DOT, 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, - [80828] = 9, + anon_sym_GT2, + [257139] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6188), 1, - anon_sym_SLASH, - ACTIONS(6184), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6186), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6202), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6204), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6206), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6276), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(6274), 7, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3505), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10885), 3, + 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, - [80868] = 3, + anon_sym_GT2, + [257160] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4599), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4597), 15, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3505), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10897), 3, + anon_sym_DOT_DOT_DOT, 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, - [80896] = 3, + anon_sym_GT2, + [257181] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6280), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6278), 15, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3505), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10867), 3, + anon_sym_DOT_DOT_DOT, 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, - [80924] = 9, + anon_sym_GT2, + [257202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, - sym_identifier, - ACTIONS(6246), 1, + ACTIONS(11715), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_defined, - ACTIONS(6282), 1, - sym_number_literal, - ACTIONS(6250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3405), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [80964] = 3, + STATE(7059), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11717), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [257219] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3951), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3949), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3336), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10881), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, + [257240] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(11719), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [80992] = 3, + [257259] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6087), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6085), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(11719), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [257278] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3336), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10885), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [81020] = 12, + [257299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6188), 1, - anon_sym_SLASH, - ACTIONS(6194), 1, - anon_sym_PIPE, - ACTIONS(6196), 1, - anon_sym_CARET, - ACTIONS(6198), 1, - anon_sym_AMP, - ACTIONS(6184), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6186), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6200), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6202), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6204), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6206), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6274), 4, + ACTIONS(10662), 1, + anon_sym___attribute, + ACTIONS(11721), 1, + anon_sym_EQ, + ACTIONS(10660), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [81066] = 9, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + [257316] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, - sym_identifier, - ACTIONS(6246), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6727), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_defined, - ACTIONS(6284), 1, - sym_number_literal, - ACTIONS(6250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3406), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [81106] = 7, + ACTIONS(11723), 1, + anon_sym_RPAREN, + STATE(2650), 1, + sym_parameter_list, + STATE(6605), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [257339] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6188), 1, - anon_sym_SLASH, - ACTIONS(6184), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6186), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6206), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6276), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6274), 9, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3336), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10893), 3, 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, - [81142] = 9, + anon_sym_SEMI, + [257360] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, - sym_identifier, - ACTIONS(6226), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6727), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(6228), 1, - anon_sym_defined, - ACTIONS(6286), 1, - sym_number_literal, - ACTIONS(6230), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6232), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6236), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3326), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [81182] = 9, + ACTIONS(11725), 1, + anon_sym_RPAREN, + STATE(2650), 1, + sym_parameter_list, + STATE(6605), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [257383] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, - sym_identifier, - ACTIONS(6226), 1, - anon_sym_LPAREN2, - ACTIONS(6228), 1, - anon_sym_defined, - ACTIONS(6288), 1, - sym_number_literal, - ACTIONS(6230), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6232), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6236), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3339), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [81222] = 9, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, + anon_sym_LT, + ACTIONS(11660), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11665), 1, + anon_sym_EQ, + STATE(917), 1, + sym_template_argument_list, + ACTIONS(6877), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [257406] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, + ACTIONS(4055), 1, + anon_sym_LBRACE, + ACTIONS(11492), 1, + anon_sym_COLON_COLON, + ACTIONS(11494), 1, + anon_sym_inline, + ACTIONS(11727), 1, sym_identifier, - ACTIONS(6226), 1, - anon_sym_LPAREN2, - ACTIONS(6228), 1, - anon_sym_defined, - ACTIONS(6290), 1, - sym_number_literal, - ACTIONS(6230), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6232), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6236), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3334), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [81262] = 3, + STATE(457), 1, + sym_declaration_list, + STATE(8345), 1, + sym_nested_namespace_specifier, + STATE(9177), 1, + sym__namespace_specifier, + [257431] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6033), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6031), 18, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3505), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10877), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_GT2, + [257452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4781), 1, + anon_sym_AMP, + ACTIONS(4783), 6, anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [81290] = 9, + anon_sym_requires, + [257467] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym___attribute__, + ACTIONS(7562), 1, + anon_sym___attribute, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + STATE(5741), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5934), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [257488] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(4083), 1, + anon_sym_LBRACE, + ACTIONS(11490), 1, sym_identifier, - ACTIONS(6246), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_defined, - ACTIONS(6292), 1, - sym_number_literal, - ACTIONS(6250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3409), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [81330] = 13, + ACTIONS(11492), 1, + anon_sym_COLON_COLON, + ACTIONS(11494), 1, + anon_sym_inline, + STATE(584), 1, + sym_declaration_list, + STATE(7994), 1, + sym_nested_namespace_specifier, + STATE(9177), 1, + sym__namespace_specifier, + [257513] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6188), 1, - anon_sym_SLASH, - ACTIONS(6192), 1, - anon_sym_AMP_AMP, - ACTIONS(6194), 1, - anon_sym_PIPE, - ACTIONS(6196), 1, - anon_sym_CARET, - ACTIONS(6198), 1, - anon_sym_AMP, - ACTIONS(6184), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6186), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6200), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6202), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6204), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6206), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6274), 3, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(11492), 1, + anon_sym_COLON_COLON, + ACTIONS(11494), 1, + anon_sym_inline, + ACTIONS(11582), 1, + sym_identifier, + STATE(205), 1, + sym_declaration_list, + STATE(8232), 1, + sym_nested_namespace_specifier, + STATE(9177), 1, + sym__namespace_specifier, + [257538] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3336), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10867), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [81378] = 3, + anon_sym_SEMI, + [257559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6296), 5, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(11731), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6294), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11729), 6, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - [81406] = 9, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + [257574] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(4053), 1, + anon_sym_LBRACE, + ACTIONS(11492), 1, + anon_sym_COLON_COLON, + ACTIONS(11494), 1, + anon_sym_inline, + ACTIONS(11733), 1, sym_identifier, - ACTIONS(6246), 1, + STATE(603), 1, + sym_declaration_list, + STATE(8230), 1, + sym_nested_namespace_specifier, + STATE(9177), 1, + sym__namespace_specifier, + [257599] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_defined, - ACTIONS(6298), 1, - sym_number_literal, - ACTIONS(6250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3416), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [81446] = 9, + ACTIONS(10196), 1, + anon_sym_LBRACK, + STATE(3298), 1, + sym_parameter_list, + STATE(6342), 1, + sym__function_declarator_seq, + STATE(6220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [257622] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, - sym_identifier, - ACTIONS(6246), 1, + ACTIONS(11735), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_defined, - ACTIONS(6300), 1, - sym_number_literal, - ACTIONS(6250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3415), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [81486] = 4, + STATE(7045), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11737), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [257639] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(11492), 1, + anon_sym_COLON_COLON, + ACTIONS(11494), 1, + anon_sym_inline, + ACTIONS(11740), 1, + sym_identifier, + STATE(247), 1, + sym_declaration_list, + STATE(8281), 1, + sym_nested_namespace_specifier, + STATE(9177), 1, + sym__namespace_specifier, + [257664] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6302), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(6069), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6065), 17, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3505), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10901), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_GT2, + [257685] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11744), 1, + anon_sym_AMP, + ACTIONS(11742), 6, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_LT, anon_sym_LBRACE, anon_sym_LBRACK, + [257700] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10662), 1, + anon_sym___attribute, + ACTIONS(11746), 1, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, + ACTIONS(10660), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [81516] = 3, + [257717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6276), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6274), 15, - anon_sym_COMMA, + ACTIONS(11748), 1, + anon_sym_LPAREN2, + STATE(7052), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11717), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [257734] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6727), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11750), 1, 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, - [81544] = 9, + STATE(2650), 1, + sym_parameter_list, + STATE(6605), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [257757] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, - sym_identifier, - ACTIONS(6246), 1, + ACTIONS(11752), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_defined, - ACTIONS(6304), 1, - sym_number_literal, - ACTIONS(6250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3414), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [81584] = 11, + STATE(7045), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11717), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [257774] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, - anon_sym_AMP, - ACTIONS(6133), 1, - anon_sym_noexcept, - ACTIONS(6135), 1, - anon_sym_throw, - ACTIONS(6306), 1, - anon_sym_DASH_GT, - STATE(3729), 1, - sym_trailing_return_type, - ACTIONS(5875), 3, + ACTIONS(5074), 1, + anon_sym_LT, + ACTIONS(7045), 1, + anon_sym_LBRACK, + STATE(6287), 1, + sym_template_argument_list, + ACTIONS(7047), 4, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3349), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - [81628] = 11, + anon_sym_try, + [257793] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, + anon_sym_LT, + ACTIONS(11660), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11754), 1, + anon_sym_EQ, + STATE(917), 1, + sym_template_argument_list, + ACTIONS(6853), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [257816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5743), 1, anon_sym_AMP, - ACTIONS(6133), 1, - anon_sym_noexcept, - ACTIONS(6135), 1, - anon_sym_throw, - ACTIONS(6306), 1, - anon_sym_DASH_GT, - STATE(3775), 1, - sym_trailing_return_type, - ACTIONS(5909), 3, + ACTIONS(5741), 6, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3365), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - [81672] = 3, + [257831] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6083), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6081), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3336), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10897), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, anon_sym_SEMI, + [257852] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(4065), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [81700] = 9, + ACTIONS(5074), 1, + anon_sym_LT, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + STATE(2770), 1, + sym_template_argument_list, + STATE(7860), 2, + sym_argument_list, + sym_initializer_list, + [257875] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, - sym_identifier, - ACTIONS(6246), 1, + ACTIONS(6721), 1, + anon_sym_COLON, + ACTIONS(6727), 1, + anon_sym_LBRACK, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_defined, - ACTIONS(6308), 1, - sym_number_literal, - ACTIONS(6250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3413), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [81740] = 6, + STATE(2650), 1, + sym_parameter_list, + STATE(7111), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [257898] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11756), 1, + anon_sym_LPAREN2, + STATE(7045), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11717), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [257915] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6727), 1, anon_sym_LBRACK, - ACTIONS(6208), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(3206), 1, - sym_parameter_list, - ACTIONS(5493), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5491), 15, - anon_sym_COMMA, + ACTIONS(11758), 1, anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [81774] = 9, + STATE(2650), 1, + sym_parameter_list, + STATE(6605), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [257938] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, - sym_identifier, - ACTIONS(6246), 1, + ACTIONS(6727), 1, + anon_sym_LBRACK, + ACTIONS(6767), 1, + anon_sym_COLON, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_defined, - ACTIONS(6310), 1, - sym_number_literal, - ACTIONS(6250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3412), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [81814] = 3, + STATE(2650), 1, + sym_parameter_list, + STATE(7111), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [257961] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6113), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6111), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(11247), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, + STATE(3505), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10889), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [81842] = 3, + [257982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6314), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6312), 15, + ACTIONS(11762), 1, 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, - [81870] = 11, + ACTIONS(11764), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11760), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [257999] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, - anon_sym_AMP, - ACTIONS(6133), 1, - anon_sym_noexcept, - ACTIONS(6135), 1, - anon_sym_throw, - ACTIONS(6306), 1, - anon_sym_DASH_GT, - STATE(3776), 1, - sym_trailing_return_type, - ACTIONS(5913), 3, + ACTIONS(11766), 1, + anon_sym_LBRACK, + ACTIONS(11769), 1, + anon_sym_EQ, + ACTIONS(11771), 1, + anon_sym_DOT, + STATE(7064), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [258018] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3505), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10893), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [258039] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6727), 1, anon_sym_LBRACK, - ACTIONS(6017), 5, + ACTIONS(6741), 1, + anon_sym_COLON, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, + anon_sym_LPAREN2, + STATE(2650), 1, + sym_parameter_list, + STATE(7111), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [258062] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11774), 1, + anon_sym_LPAREN2, + STATE(7069), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11717), 4, + anon_sym_inline, anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3202), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - [81914] = 5, + anon_sym_goto, + anon_sym___volatile__, + [258079] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6188), 1, - anon_sym_SLASH, - ACTIONS(6186), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6276), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6274), 13, - anon_sym_COMMA, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6727), 1, + anon_sym_LBRACK, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11776), 1, 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, - [81946] = 9, + STATE(2650), 1, + sym_parameter_list, + STATE(6605), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [258102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, - sym_identifier, - ACTIONS(6246), 1, + ACTIONS(11778), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_defined, - ACTIONS(6316), 1, - sym_number_literal, - ACTIONS(6250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3390), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [81986] = 3, + STATE(7045), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11717), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [258119] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3158), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3160), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11780), 1, anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + STATE(7071), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11717), 4, + anon_sym_inline, anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [82014] = 9, + anon_sym_goto, + anon_sym___volatile__, + [258136] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, - sym_identifier, - ACTIONS(6226), 1, + ACTIONS(11782), 1, anon_sym_LPAREN2, - ACTIONS(6228), 1, - anon_sym_defined, - ACTIONS(6318), 1, - sym_number_literal, - ACTIONS(6230), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6232), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6236), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3357), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [82054] = 14, + STATE(7045), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11717), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [258153] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6188), 1, - anon_sym_SLASH, - ACTIONS(6190), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6192), 1, - anon_sym_AMP_AMP, - ACTIONS(6194), 1, - anon_sym_PIPE, - ACTIONS(6196), 1, - anon_sym_CARET, - ACTIONS(6198), 1, - anon_sym_AMP, - ACTIONS(6184), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6186), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6200), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6202), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6204), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6206), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6320), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [82104] = 9, + ACTIONS(11784), 1, + anon_sym_LPAREN2, + STATE(7073), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11717), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [258170] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, - sym_identifier, - ACTIONS(6246), 1, + ACTIONS(11786), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_defined, - ACTIONS(6322), 1, - sym_number_literal, - ACTIONS(6250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3420), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [82144] = 3, + STATE(7045), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11717), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [258187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6326), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6324), 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, - [82172] = 12, + ACTIONS(11788), 1, + anon_sym_LPAREN2, + STATE(7075), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11717), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [258204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6188), 1, - anon_sym_SLASH, - ACTIONS(6196), 1, - anon_sym_CARET, - ACTIONS(6198), 1, - anon_sym_AMP, - ACTIONS(6276), 1, - anon_sym_PIPE, - ACTIONS(6184), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6186), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6200), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6202), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6204), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6206), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6274), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [82218] = 9, + ACTIONS(11790), 1, + anon_sym_LPAREN2, + STATE(7045), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11717), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [258221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, - sym_identifier, - ACTIONS(6246), 1, + ACTIONS(11792), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_defined, - ACTIONS(6328), 1, - sym_number_literal, - ACTIONS(6250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3403), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [82258] = 6, + STATE(7077), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11717), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [258238] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6188), 1, - anon_sym_SLASH, - ACTIONS(6184), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6186), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6276), 4, - anon_sym_PIPE, + ACTIONS(11794), 1, + anon_sym_LPAREN2, + STATE(7045), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11717), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [258255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4777), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6274), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + ACTIONS(4779), 6, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [82292] = 6, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_requires, + [258270] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, + ACTIONS(6727), 1, anon_sym_LBRACK, - ACTIONS(6208), 1, + ACTIONS(6733), 1, + anon_sym_COLON, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, anon_sym_LPAREN2, - STATE(3206), 1, + STATE(2650), 1, sym_parameter_list, - ACTIONS(6176), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6174), 15, + STATE(7111), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [258293] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3336), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + ACTIONS(10901), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [82326] = 9, + [258314] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, - sym_identifier, - ACTIONS(6226), 1, + ACTIONS(6727), 1, + anon_sym_LBRACK, + ACTIONS(6737), 1, + anon_sym_COLON, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9961), 1, anon_sym_LPAREN2, - ACTIONS(6228), 1, - anon_sym_defined, - ACTIONS(6330), 1, - sym_number_literal, - ACTIONS(6230), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6232), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6236), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3380), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [82366] = 10, + STATE(2650), 1, + sym_parameter_list, + STATE(7111), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [258337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6188), 1, - anon_sym_SLASH, - ACTIONS(6184), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6186), 2, + ACTIONS(11798), 1, + anon_sym_AMP, + ACTIONS(11796), 6, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6200), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6202), 2, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_LT, - ACTIONS(6204), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6206), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6276), 2, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_LBRACK, + [258352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11802), 1, anon_sym_AMP, - ACTIONS(6274), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + ACTIONS(11800), 6, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_CARET, - [82408] = 9, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + [258367] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, - sym_identifier, - ACTIONS(6226), 1, - anon_sym_LPAREN2, - ACTIONS(6228), 1, - anon_sym_defined, - ACTIONS(6332), 1, - sym_number_literal, - ACTIONS(6230), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6232), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6236), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3362), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [82448] = 9, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(11804), 1, + anon_sym_SEMI, + STATE(7195), 1, + aux_sym_field_declaration_repeat1, + STATE(9166), 1, + sym_attribute_specifier, + [258389] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, - sym_identifier, - ACTIONS(6246), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_defined, - ACTIONS(6334), 1, - sym_number_literal, - ACTIONS(6250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3418), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [82488] = 11, + ACTIONS(700), 1, + anon_sym_LBRACE, + ACTIONS(10282), 1, + anon_sym_try, + ACTIONS(11806), 1, + anon_sym_SEMI, + ACTIONS(11808), 1, + anon_sym_EQ, + STATE(594), 2, + sym_compound_statement, + sym_try_statement, + [258409] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 1, - anon_sym_const, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, - anon_sym_AMP, - ACTIONS(6133), 1, - anon_sym_noexcept, - ACTIONS(6135), 1, - anon_sym_throw, - ACTIONS(6306), 1, - anon_sym_DASH_GT, - STATE(3745), 1, - sym_trailing_return_type, - ACTIONS(5905), 3, - anon_sym_LPAREN2, + ACTIONS(297), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(6017), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - STATE(3202), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - [82532] = 9, + ACTIONS(10288), 1, + anon_sym_try, + ACTIONS(11810), 1, + anon_sym_SEMI, + ACTIONS(11812), 1, + anon_sym_EQ, + STATE(194), 2, + sym_compound_statement, + sym_try_statement, + [258429] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(11814), 1, + anon_sym_SEMI, + STATE(7195), 1, + aux_sym_field_declaration_repeat1, + STATE(8519), 1, + sym_attribute_specifier, + [258451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, + ACTIONS(11816), 2, + anon_sym_RBRACE, sym_identifier, - ACTIONS(6226), 1, - anon_sym_LPAREN2, - ACTIONS(6228), 1, - anon_sym_defined, - ACTIONS(6336), 1, - sym_number_literal, - ACTIONS(6230), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6232), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6236), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3320), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [82572] = 9, + ACTIONS(11818), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [258465] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, - sym_identifier, - ACTIONS(6226), 1, - anon_sym_LPAREN2, - ACTIONS(6228), 1, - anon_sym_defined, - ACTIONS(6338), 1, - sym_number_literal, - ACTIONS(6230), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6232), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6236), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3328), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [82612] = 9, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(11820), 1, + anon_sym_SEMI, + STATE(7195), 1, + aux_sym_field_declaration_repeat1, + STATE(9084), 1, + sym_attribute_specifier, + [258487] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, - sym_identifier, - ACTIONS(6226), 1, - anon_sym_LPAREN2, - ACTIONS(6228), 1, - anon_sym_defined, - ACTIONS(6340), 1, - sym_number_literal, - ACTIONS(6230), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6232), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6236), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3393), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [82652] = 9, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(11822), 1, + anon_sym_SEMI, + STATE(7195), 1, + aux_sym_field_declaration_repeat1, + STATE(8541), 1, + sym_attribute_specifier, + [258509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, + ACTIONS(11824), 2, + anon_sym_RBRACE, sym_identifier, - ACTIONS(6226), 1, - anon_sym_LPAREN2, - ACTIONS(6228), 1, - anon_sym_defined, - ACTIONS(6342), 1, - sym_number_literal, - ACTIONS(6230), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6232), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6236), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3359), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [82692] = 3, + ACTIONS(11826), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [258523] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6099), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6097), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(10276), 1, + anon_sym_try, + ACTIONS(11828), 1, anon_sym_SEMI, + ACTIONS(11830), 1, + anon_sym_EQ, + STATE(506), 2, + sym_compound_statement, + sym_try_statement, + [258543] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9997), 1, + anon_sym_try, + ACTIONS(11170), 1, anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(11832), 1, + anon_sym_SEMI, + ACTIONS(11834), 1, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [82720] = 9, + STATE(1127), 2, + sym_compound_statement, + sym_try_statement, + [258563] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, - sym_identifier, - ACTIONS(6226), 1, - anon_sym_LPAREN2, - ACTIONS(6228), 1, - anon_sym_defined, - ACTIONS(6344), 1, - sym_number_literal, - ACTIONS(6230), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6232), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6236), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3354), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [82760] = 9, + ACTIONS(297), 1, + anon_sym_LBRACE, + ACTIONS(10288), 1, + anon_sym_try, + ACTIONS(11836), 1, + anon_sym_SEMI, + ACTIONS(11838), 1, + anon_sym_EQ, + STATE(237), 2, + sym_compound_statement, + sym_try_statement, + [258583] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9997), 1, + anon_sym_try, + ACTIONS(11170), 1, + anon_sym_LBRACE, + ACTIONS(11840), 1, + anon_sym_SEMI, + ACTIONS(11842), 1, + anon_sym_EQ, + STATE(1171), 2, + sym_compound_statement, + sym_try_statement, + [258603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(11844), 2, + anon_sym_RBRACE, sym_identifier, - ACTIONS(6246), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_defined, - ACTIONS(6346), 1, - sym_number_literal, - ACTIONS(6250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3411), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [82800] = 9, + ACTIONS(11846), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [258617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(11824), 2, + anon_sym_RBRACE, sym_identifier, - ACTIONS(6246), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_defined, - ACTIONS(6348), 1, - sym_number_literal, - ACTIONS(6250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3392), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [82840] = 9, + ACTIONS(11826), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [258631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(11848), 2, + anon_sym_RBRACE, sym_identifier, - ACTIONS(6246), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_defined, - ACTIONS(6350), 1, - sym_number_literal, - ACTIONS(6250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3389), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [82880] = 9, + ACTIONS(11850), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [258645] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(10264), 1, + anon_sym_try, + ACTIONS(11852), 1, + anon_sym_SEMI, + ACTIONS(11854), 1, + anon_sym_EQ, + STATE(573), 2, + sym_compound_statement, + sym_try_statement, + [258665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, + ACTIONS(11645), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11643), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_identifier, - ACTIONS(6226), 1, - anon_sym_LPAREN2, - ACTIONS(6228), 1, - anon_sym_defined, - ACTIONS(6352), 1, - sym_number_literal, - ACTIONS(6230), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6232), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6236), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3316), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [82920] = 9, + [258679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, + ACTIONS(11856), 2, + anon_sym_RBRACE, sym_identifier, - ACTIONS(6226), 1, - anon_sym_LPAREN2, - ACTIONS(6228), 1, - anon_sym_defined, - ACTIONS(6354), 1, - sym_number_literal, - ACTIONS(6230), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6232), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6236), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3407), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [82960] = 3, + ACTIONS(11858), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [258693] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(5074), 1, anon_sym_LT, - ACTIONS(6356), 15, - anon_sym_COMMA, + ACTIONS(11224), 1, + anon_sym_LBRACK, + STATE(6723), 1, + sym_template_argument_list, + ACTIONS(11220), 3, 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, - [82988] = 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [258711] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3913), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3911), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(9973), 1, + anon_sym_try, + ACTIONS(11121), 1, + anon_sym_LBRACE, + ACTIONS(11860), 1, + anon_sym_SEMI, + ACTIONS(11862), 1, + anon_sym_EQ, + STATE(1021), 2, + sym_compound_statement, + sym_try_statement, + [258731] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11844), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(11846), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [258745] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, + ACTIONS(11864), 1, anon_sym_SEMI, + STATE(7139), 1, + aux_sym_field_declaration_repeat1, + STATE(8892), 1, + sym_attribute_specifier, + [258767] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9981), 1, + anon_sym_try, + ACTIONS(11182), 1, anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(11866), 1, + anon_sym_SEMI, + ACTIONS(11868), 1, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [83016] = 6, + STATE(1159), 2, + sym_compound_statement, + sym_try_statement, + [258787] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, - anon_sym_AMP, - ACTIONS(6163), 1, - anon_sym_const, - STATE(3379), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6360), 5, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - ACTIONS(4387), 11, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, anon_sym_COMMA, + ACTIONS(11870), 1, + anon_sym_SEMI, + STATE(7140), 1, + aux_sym_field_declaration_repeat1, + STATE(8905), 1, + sym_attribute_specifier, + [258809] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11273), 1, + anon_sym_LBRACK, + ACTIONS(11271), 2, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + STATE(6165), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [258827] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(11872), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [83050] = 11, + STATE(7195), 1, + aux_sym_field_declaration_repeat1, + STATE(8916), 1, + sym_attribute_specifier, + [258849] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6188), 1, - anon_sym_SLASH, - ACTIONS(6198), 1, - anon_sym_AMP, - ACTIONS(6276), 1, - anon_sym_PIPE, - ACTIONS(6184), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6186), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6200), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6202), 2, - anon_sym_GT, + ACTIONS(5074), 1, anon_sym_LT, - ACTIONS(6204), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6206), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6274), 5, - anon_sym_COMMA, + ACTIONS(11257), 1, + anon_sym_LBRACK, + STATE(6720), 1, + sym_template_argument_list, + ACTIONS(11255), 3, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [83094] = 6, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [258867] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, + ACTIONS(6858), 1, anon_sym_LBRACK, - ACTIONS(6208), 1, + ACTIONS(8139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6860), 2, anon_sym_LPAREN2, - STATE(3206), 1, - sym_parameter_list, - ACTIONS(6145), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6143), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_COLON, + STATE(5997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [258885] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(10264), 1, + anon_sym_try, + ACTIONS(11874), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [83128] = 9, + ACTIONS(11876), 1, + anon_sym_EQ, + STATE(449), 2, + sym_compound_statement, + sym_try_statement, + [258905] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(8948), 1, + sym_string_literal, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [258919] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(10276), 1, + anon_sym_try, + ACTIONS(11878), 1, + anon_sym_SEMI, + ACTIONS(11880), 1, + anon_sym_EQ, + STATE(494), 2, + sym_compound_statement, + sym_try_statement, + [258939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(11397), 2, + anon_sym_RBRACE, sym_identifier, - ACTIONS(6246), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_defined, - ACTIONS(6363), 1, - sym_number_literal, - ACTIONS(6250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3408), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [83168] = 3, + ACTIONS(11882), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [258953] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6013), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6011), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, + ACTIONS(11884), 1, anon_sym_SEMI, + STATE(7090), 1, + aux_sym_field_declaration_repeat1, + STATE(8884), 1, + sym_attribute_specifier, + [258975] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(8606), 1, + sym_string_literal, + ACTIONS(117), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [258989] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9981), 1, + anon_sym_try, + ACTIONS(11182), 1, anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(11886), 1, + anon_sym_SEMI, + ACTIONS(11888), 1, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - [83196] = 9, + STATE(1176), 2, + sym_compound_statement, + sym_try_statement, + [259009] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, - sym_identifier, - ACTIONS(6246), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_defined, - ACTIONS(6365), 1, - sym_number_literal, - ACTIONS(6250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3399), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [83236] = 9, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(11890), 1, + anon_sym_SEMI, + STATE(7195), 1, + aux_sym_field_declaration_repeat1, + STATE(9223), 1, + sym_attribute_specifier, + [259031] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(700), 1, + anon_sym_LBRACE, + ACTIONS(10282), 1, + anon_sym_try, + ACTIONS(11892), 1, + anon_sym_SEMI, + ACTIONS(11894), 1, + anon_sym_EQ, + STATE(558), 2, + sym_compound_statement, + sym_try_statement, + [259051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(11896), 2, + anon_sym_RBRACE, sym_identifier, - ACTIONS(6246), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_defined, - ACTIONS(6367), 1, - sym_number_literal, - ACTIONS(6250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(3398), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [83276] = 6, + ACTIONS(11898), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [259065] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, - anon_sym_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - STATE(3206), 1, - sym_parameter_list, - ACTIONS(6172), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6170), 15, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + ACTIONS(11900), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [83310] = 6, + STATE(7132), 1, + aux_sym_field_declaration_repeat1, + STATE(9140), 1, + sym_attribute_specifier, + [259087] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, - anon_sym_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - STATE(3206), 1, - sym_parameter_list, - ACTIONS(6168), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6166), 15, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + ACTIONS(11902), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [83344] = 3, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(6356), 1, - anon_sym_LF, - ACTIONS(6358), 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, - [83371] = 3, - ACTIONS(6220), 1, + STATE(7133), 1, + aux_sym_field_declaration_repeat1, + STATE(9142), 1, + sym_attribute_specifier, + [259109] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6260), 1, - anon_sym_LF, - ACTIONS(6262), 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, - [83398] = 12, - ACTIONS(6220), 1, + ACTIONS(9973), 1, + anon_sym_try, + ACTIONS(11121), 1, + anon_sym_LBRACE, + ACTIONS(11904), 1, + anon_sym_SEMI, + ACTIONS(11906), 1, + anon_sym_EQ, + STATE(1043), 2, + sym_compound_statement, + sym_try_statement, + [259129] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(6369), 1, - anon_sym_LF, - ACTIONS(6375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6377), 1, - anon_sym_AMP_AMP, - ACTIONS(6379), 1, - anon_sym_PIPE, - ACTIONS(6381), 1, - anon_sym_CARET, - ACTIONS(6383), 1, - anon_sym_AMP, - ACTIONS(6371), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6373), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6387), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [83443] = 3, - ACTIONS(6220), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(11908), 1, + anon_sym_SEMI, + STATE(7195), 1, + aux_sym_field_declaration_repeat1, + STATE(9144), 1, + sym_attribute_specifier, + [259151] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6270), 1, - anon_sym_LF, - ACTIONS(6272), 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, - [83470] = 12, - ACTIONS(6220), 1, + ACTIONS(11910), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(11912), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [259165] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(6375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6377), 1, - anon_sym_AMP_AMP, - ACTIONS(6379), 1, - anon_sym_PIPE, - ACTIONS(6381), 1, - anon_sym_CARET, - ACTIONS(6383), 1, - anon_sym_AMP, - ACTIONS(6391), 1, - anon_sym_LF, - ACTIONS(6371), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6373), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6387), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [83515] = 14, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(11914), 1, + anon_sym_SEMI, + STATE(7195), 1, + aux_sym_field_declaration_repeat1, + STATE(8708), 1, + sym_attribute_specifier, + [259187] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6188), 1, - anon_sym_SLASH, - ACTIONS(6190), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6192), 1, - anon_sym_AMP_AMP, - ACTIONS(6194), 1, - anon_sym_PIPE, - ACTIONS(6196), 1, - anon_sym_CARET, - ACTIONS(6198), 1, - anon_sym_AMP, - ACTIONS(6393), 1, - anon_sym_RPAREN, - ACTIONS(6184), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6186), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6200), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6202), 2, - anon_sym_GT, + ACTIONS(5074), 1, anon_sym_LT, - ACTIONS(6204), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6206), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83564] = 10, + ACTIONS(7045), 1, + anon_sym_LBRACK, + STATE(1873), 1, + sym_template_argument_list, + ACTIONS(7047), 3, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [259205] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, - anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3737), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - [83605] = 3, - ACTIONS(6220), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(11916), 1, + anon_sym_SEMI, + STATE(7119), 1, + aux_sym_field_declaration_repeat1, + STATE(8985), 1, + sym_attribute_specifier, + [259227] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6312), 1, - anon_sym_LF, - ACTIONS(6314), 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, + ACTIONS(5530), 1, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83632] = 12, - ACTIONS(6220), 1, + ACTIONS(7045), 1, + anon_sym_LBRACK, + STATE(1873), 1, + sym_template_argument_list, + ACTIONS(7047), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [259245] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(6375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6377), 1, - anon_sym_AMP_AMP, - ACTIONS(6379), 1, - anon_sym_PIPE, - ACTIONS(6381), 1, - anon_sym_CARET, - ACTIONS(6383), 1, - anon_sym_AMP, - ACTIONS(6395), 1, - anon_sym_LF, - ACTIONS(6371), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6373), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6387), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [83677] = 3, - ACTIONS(6220), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(11918), 1, + anon_sym_SEMI, + STATE(7084), 1, + aux_sym_field_declaration_repeat1, + STATE(9157), 1, + sym_attribute_specifier, + [259267] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(6278), 1, - anon_sym_LF, - ACTIONS(6280), 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, - [83704] = 4, - ACTIONS(6220), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(11920), 1, + anon_sym_SEMI, + STATE(7195), 1, + aux_sym_field_declaration_repeat1, + STATE(9159), 1, + sym_attribute_specifier, + [259289] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(6274), 1, - anon_sym_LF, - ACTIONS(6373), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6276), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83733] = 3, - ACTIONS(6220), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(11922), 1, + anon_sym_SEMI, + STATE(7195), 1, + aux_sym_field_declaration_repeat1, + STATE(9160), 1, + sym_attribute_specifier, + [259311] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(6274), 1, - anon_sym_LF, - ACTIONS(6276), 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, - [83760] = 3, - ACTIONS(6220), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(11924), 1, + anon_sym_SEMI, + STATE(7127), 1, + aux_sym_field_declaration_repeat1, + STATE(9023), 1, + sym_attribute_specifier, + [259333] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(6264), 1, - anon_sym_LF, - ACTIONS(6266), 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, - [83787] = 3, - ACTIONS(4597), 1, - anon_sym_LF, - ACTIONS(6220), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(11926), 1, + anon_sym_SEMI, + STATE(7195), 1, + aux_sym_field_declaration_repeat1, + STATE(9165), 1, + sym_attribute_specifier, + [259355] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(4599), 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, - [83814] = 10, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(11928), 1, + anon_sym_SEMI, + STATE(7195), 1, + aux_sym_field_declaration_repeat1, + STATE(9077), 1, + sym_attribute_specifier, + [259377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, + ACTIONS(11930), 2, + anon_sym_RBRACE, sym_identifier, - ACTIONS(5881), 1, - anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3777), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - [83855] = 12, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(6375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6377), 1, - anon_sym_AMP_AMP, - ACTIONS(6379), 1, - anon_sym_PIPE, - ACTIONS(6381), 1, - anon_sym_CARET, - ACTIONS(6383), 1, - anon_sym_AMP, - ACTIONS(6397), 1, - anon_sym_LF, - ACTIONS(6371), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6373), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6387), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [83900] = 3, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(6294), 1, - anon_sym_LF, - ACTIONS(6296), 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, - [83927] = 12, - ACTIONS(6220), 1, + ACTIONS(11932), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [259391] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(6375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6377), 1, - anon_sym_AMP_AMP, - ACTIONS(6379), 1, - anon_sym_PIPE, - ACTIONS(6381), 1, - anon_sym_CARET, - ACTIONS(6383), 1, - anon_sym_AMP, - ACTIONS(6399), 1, - anon_sym_LF, - ACTIONS(6371), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6373), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6387), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [83972] = 12, - ACTIONS(6220), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(11934), 1, + anon_sym_SEMI, + STATE(7141), 1, + aux_sym_field_declaration_repeat1, + STATE(8990), 1, + sym_attribute_specifier, + [259413] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(6375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6377), 1, - anon_sym_AMP_AMP, - ACTIONS(6379), 1, - anon_sym_PIPE, - ACTIONS(6381), 1, - anon_sym_CARET, - ACTIONS(6383), 1, - anon_sym_AMP, - ACTIONS(6401), 1, - anon_sym_LF, - ACTIONS(6371), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6373), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6387), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [84017] = 14, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(11936), 1, + anon_sym_SEMI, + STATE(7195), 1, + aux_sym_field_declaration_repeat1, + STATE(8996), 1, + sym_attribute_specifier, + [259435] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6188), 1, - anon_sym_SLASH, - ACTIONS(6190), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6192), 1, - anon_sym_AMP_AMP, - ACTIONS(6194), 1, - anon_sym_PIPE, - ACTIONS(6196), 1, - anon_sym_CARET, - ACTIONS(6198), 1, - anon_sym_AMP, - ACTIONS(6403), 1, - anon_sym_RPAREN, - ACTIONS(6184), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6186), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6200), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6202), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6204), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6206), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84066] = 12, - ACTIONS(6220), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(11938), 1, + anon_sym_SEMI, + STATE(7195), 1, + aux_sym_field_declaration_repeat1, + STATE(9000), 1, + sym_attribute_specifier, + [259457] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(6274), 1, - anon_sym_LF, - ACTIONS(6276), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6377), 1, - anon_sym_AMP_AMP, - ACTIONS(6379), 1, - anon_sym_PIPE, - ACTIONS(6381), 1, - anon_sym_CARET, - ACTIONS(6383), 1, - anon_sym_AMP, - ACTIONS(6371), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6373), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6387), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [84111] = 12, - ACTIONS(6220), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(11940), 1, + anon_sym_SEMI, + STATE(7195), 1, + aux_sym_field_declaration_repeat1, + STATE(9114), 1, + sym_attribute_specifier, + [259479] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6377), 1, - anon_sym_AMP_AMP, - ACTIONS(6379), 1, - anon_sym_PIPE, - ACTIONS(6381), 1, - anon_sym_CARET, - ACTIONS(6383), 1, - anon_sym_AMP, - ACTIONS(6405), 1, - anon_sym_LF, - ACTIONS(6371), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6373), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6387), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [84156] = 10, + ACTIONS(6144), 1, + sym_auto, + ACTIONS(6146), 1, + anon_sym_decltype, + STATE(1422), 1, + sym_decltype_auto, + ACTIONS(11942), 2, + anon_sym_COMMA, + anon_sym_GT2, + [259496] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, + ACTIONS(11492), 1, + anon_sym_COLON_COLON, + ACTIONS(11494), 1, + anon_sym_inline, + ACTIONS(11944), 1, sym_identifier, - ACTIONS(5881), 1, - anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3742), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(3320), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - [84197] = 11, - ACTIONS(6220), 1, + STATE(9177), 1, + sym__namespace_specifier, + STATE(9184), 1, + sym_nested_namespace_specifier, + [259515] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6274), 1, - anon_sym_LF, - ACTIONS(6379), 1, - anon_sym_PIPE, - ACTIONS(6381), 1, - anon_sym_CARET, - ACTIONS(6383), 1, - anon_sym_AMP, - ACTIONS(6276), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(6371), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6373), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6387), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [84240] = 10, - ACTIONS(6220), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(11946), 1, + anon_sym_SEMI, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [259532] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6274), 1, - anon_sym_LF, - ACTIONS(6381), 1, - anon_sym_CARET, - ACTIONS(6383), 1, - anon_sym_AMP, - ACTIONS(6371), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6276), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(6373), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6387), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, anon_sym_LT, - [84281] = 9, - ACTIONS(6220), 1, + STATE(914), 1, + sym_template_argument_list, + ACTIONS(3274), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [259549] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6274), 1, - anon_sym_LF, - ACTIONS(6383), 1, - anon_sym_AMP, - ACTIONS(6371), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6373), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6276), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(6387), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [84320] = 8, - ACTIONS(6220), 1, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(11948), 1, + sym_identifier, + STATE(1309), 1, + sym_template_type, + STATE(3726), 1, + sym_template_method, + STATE(8266), 1, + sym_operator_name, + [259568] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(6274), 1, - anon_sym_LF, - ACTIONS(6371), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6373), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6387), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6276), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - [84357] = 7, - ACTIONS(6220), 1, + ACTIONS(11950), 5, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [259579] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6274), 1, - anon_sym_LF, - ACTIONS(6371), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6373), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6387), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6276), 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, - [84392] = 6, - ACTIONS(6220), 1, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(11952), 1, + sym_identifier, + STATE(1309), 1, + sym_template_type, + STATE(2831), 1, + sym_template_method, + STATE(7991), 1, + sym_operator_name, + [259598] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6274), 1, - anon_sym_LF, - ACTIONS(6371), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6373), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6276), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [84425] = 5, - ACTIONS(6220), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(11954), 1, + anon_sym_SEMI, + STATE(7162), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [259615] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6274), 1, - anon_sym_LF, - ACTIONS(6371), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6373), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6276), 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, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84456] = 12, - ACTIONS(6220), 1, + STATE(2770), 1, + sym_template_argument_list, + ACTIONS(6992), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + [259632] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6377), 1, - anon_sym_AMP_AMP, - ACTIONS(6379), 1, - anon_sym_PIPE, - ACTIONS(6381), 1, - anon_sym_CARET, - ACTIONS(6383), 1, - anon_sym_AMP, - ACTIONS(6407), 1, - anon_sym_LF, - ACTIONS(6371), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6373), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6387), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [84501] = 3, - ACTIONS(6220), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(11956), 1, + anon_sym_SEMI, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [259649] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6324), 1, - anon_sym_LF, - ACTIONS(6326), 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, + ACTIONS(5074), 1, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84528] = 12, - ACTIONS(6220), 1, + ACTIONS(7045), 1, + anon_sym_LBRACK, + STATE(1716), 1, + sym_template_argument_list, + ACTIONS(7047), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [259666] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6377), 1, - anon_sym_AMP_AMP, - ACTIONS(6379), 1, - anon_sym_PIPE, - ACTIONS(6381), 1, - anon_sym_CARET, - ACTIONS(6383), 1, - anon_sym_AMP, - ACTIONS(6409), 1, - anon_sym_LF, - ACTIONS(6371), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6385), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6373), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6387), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [84573] = 6, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(11958), 1, + anon_sym_SEMI, + STATE(7193), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [259683] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, - anon_sym_LBRACK, - ACTIONS(6208), 1, + ACTIONS(9961), 1, anon_sym_LPAREN2, - STATE(3263), 1, + ACTIONS(10897), 1, + anon_sym_COLON, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3668), 1, sym_parameter_list, - ACTIONS(6145), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6143), 13, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [84605] = 6, + STATE(6358), 1, + sym__function_declarator_seq, + [259702] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11043), 1, + sym_identifier, + ACTIONS(11960), 1, + aux_sym_preproc_if_token2, + STATE(7063), 1, + sym_enumerator, + STATE(7329), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(7331), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [259721] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, + ACTIONS(9961), 1, + anon_sym_LPAREN2, + ACTIONS(10881), 1, + anon_sym_COLON, + ACTIONS(11247), 1, anon_sym_LBRACK, - ACTIONS(6208), 1, + STATE(3668), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + [259740] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(11962), 1, + anon_sym_SEMI, + STATE(7174), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [259757] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(3263), 1, + ACTIONS(11247), 1, + anon_sym_LBRACK, + ACTIONS(11964), 1, + anon_sym_RPAREN, + STATE(3336), 1, sym_parameter_list, - ACTIONS(6176), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6174), 13, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [84637] = 7, + STATE(6358), 1, + sym__function_declarator_seq, + [259776] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6411), 1, - anon_sym_LBRACE, - ACTIONS(6413), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(11966), 1, + anon_sym_SEMI, + STATE(7171), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [259793] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(11968), 1, + anon_sym_SEMI, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [259810] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9961), 1, + anon_sym_LPAREN2, + ACTIONS(10889), 1, anon_sym_COLON, - STATE(2560), 1, - sym_enumerator_list, - STATE(3458), 1, - sym__enum_base_clause, - ACTIONS(3826), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3828), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3668), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + [259829] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(11970), 1, + anon_sym_SEMI, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [259846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11972), 2, + anon_sym_class, + anon_sym_typename, + STATE(8089), 3, + sym_type_parameter_declaration, + sym_variadic_type_parameter_declaration, + sym_optional_type_parameter_declaration, + [259859] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(11974), 1, + anon_sym_SEMI, + STATE(7178), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [259876] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(11976), 1, + anon_sym_SEMI, + STATE(7208), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [259893] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11492), 1, + anon_sym_COLON_COLON, + ACTIONS(11494), 1, + anon_sym_inline, + ACTIONS(11978), 1, + sym_identifier, + STATE(7536), 1, + sym__namespace_specifier, + STATE(8114), 1, + sym_nested_namespace_specifier, + [259912] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(11247), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_GT2, - [84671] = 7, + ACTIONS(11980), 1, + anon_sym_RPAREN, + STATE(3336), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + [259931] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6415), 1, - anon_sym_LBRACE, - ACTIONS(6417), 1, - anon_sym_COLON, - STATE(2439), 1, - sym_enumerator_list, - STATE(3461), 1, - sym__enum_base_clause, - ACTIONS(3826), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3828), 12, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(11982), 1, + anon_sym_SEMI, + STATE(7175), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [259948] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(11984), 1, + anon_sym_SEMI, + STATE(7187), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [259965] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(11986), 1, + anon_sym_SEMI, + STATE(7206), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [259982] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(11988), 1, + anon_sym_SEMI, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [259999] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(11990), 1, + anon_sym_SEMI, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260016] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11492), 1, + anon_sym_COLON_COLON, + ACTIONS(11494), 1, + anon_sym_inline, + ACTIONS(11992), 1, + sym_identifier, + STATE(8891), 1, + sym_nested_namespace_specifier, + STATE(9177), 1, + sym__namespace_specifier, + [260035] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(11994), 1, + anon_sym_SEMI, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260052] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(11996), 1, + anon_sym_SEMI, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260069] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(11998), 1, + anon_sym_SEMI, + STATE(7160), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260086] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(12000), 1, + anon_sym_SEMI, + STATE(7186), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260103] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(12002), 1, + anon_sym_SEMI, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260120] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(12004), 1, + anon_sym_SEMI, + STATE(7194), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260137] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11359), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(12008), 1, + anon_sym___attribute, + STATE(7181), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(12006), 2, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - [84705] = 6, + anon_sym___attribute__, + [260154] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, - anon_sym_LBRACK, - ACTIONS(6208), 1, + ACTIONS(12010), 1, + anon_sym_COMMA, + ACTIONS(12015), 1, + anon_sym___attribute, + STATE(7181), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(12013), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [260171] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9961), 1, anon_sym_LPAREN2, - STATE(3263), 1, + ACTIONS(10877), 1, + anon_sym_COLON, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3668), 1, sym_parameter_list, - ACTIONS(6168), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6166), 13, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [84737] = 7, + STATE(6358), 1, + sym__function_declarator_seq, + [260190] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6411), 1, - anon_sym_LBRACE, - ACTIONS(6413), 1, - anon_sym_COLON, - STATE(2589), 1, - sym_enumerator_list, - STATE(3460), 1, - sym__enum_base_clause, - ACTIONS(3832), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3834), 12, + ACTIONS(6213), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6217), 1, + anon_sym_EQ, + ACTIONS(12017), 1, + sym_identifier, + ACTIONS(6215), 2, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, anon_sym_GT2, - [84771] = 7, + [260207] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6415), 1, - anon_sym_LBRACE, - ACTIONS(6417), 1, - anon_sym_COLON, - STATE(2447), 1, - sym_enumerator_list, - STATE(3459), 1, - sym__enum_base_clause, - ACTIONS(3832), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3834), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9961), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(10885), 1, + anon_sym_COLON, + ACTIONS(11247), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - [84805] = 6, + STATE(3668), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + [260226] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(6238), 1, - anon_sym_LT, - STATE(2244), 1, - sym_template_argument_list, - ACTIONS(2397), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(2405), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(12019), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - [84837] = 6, + STATE(7201), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260243] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, - anon_sym_LBRACK, - ACTIONS(6208), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(12021), 1, + anon_sym_SEMI, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260260] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(12023), 1, + anon_sym_SEMI, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260277] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9961), 1, anon_sym_LPAREN2, - STATE(3263), 1, + ACTIONS(10901), 1, + anon_sym_COLON, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3668), 1, sym_parameter_list, - ACTIONS(5493), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5491), 13, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [84869] = 6, + STATE(6358), 1, + sym__function_declarator_seq, + [260296] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, - anon_sym_LBRACK, - ACTIONS(6208), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - STATE(3263), 1, + ACTIONS(11247), 1, + anon_sym_LBRACK, + ACTIONS(12025), 1, + anon_sym_RPAREN, + STATE(3336), 1, sym_parameter_list, - ACTIONS(6172), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6170), 13, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - [84901] = 16, + STATE(6358), 1, + sym__function_declarator_seq, + [260315] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2319), 1, - anon_sym_COLON_COLON, - ACTIONS(2568), 1, - anon_sym___declspec, - ACTIONS(3427), 1, - anon_sym_LBRACE, - ACTIONS(3429), 1, - anon_sym_COLON, - ACTIONS(4118), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(1356), 1, - sym_field_declaration_list, - STATE(3468), 1, - sym_ms_declspec_modifier, - STATE(3912), 1, - sym__scope_resolution, - STATE(4019), 1, - sym_virtual_specifier, - STATE(4451), 1, - sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1402), 2, - sym__class_name, - sym_qualified_type_identifier, - [84952] = 16, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(12027), 1, + anon_sym_SEMI, + STATE(7144), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260332] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2568), 1, - anon_sym___declspec, - ACTIONS(3427), 1, - anon_sym_LBRACE, - ACTIONS(3429), 1, - anon_sym_COLON, - ACTIONS(4118), 1, - sym_identifier, - ACTIONS(4132), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(12029), 1, + anon_sym_SEMI, + STATE(7205), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260349] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(12031), 1, + anon_sym_SEMI, + STATE(7200), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260366] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(12033), 1, + anon_sym_SEMI, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260383] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(12035), 1, + anon_sym_SEMI, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260400] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12037), 1, + anon_sym_COMMA, + ACTIONS(12042), 1, + anon_sym___attribute, + STATE(7195), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(12040), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [260417] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + ACTIONS(12046), 1, anon_sym_COLON_COLON, - STATE(1302), 1, - sym_template_type, - STATE(1356), 1, - sym_field_declaration_list, - STATE(3492), 1, - sym_ms_declspec_modifier, - STATE(3881), 1, - sym__scope_resolution, - STATE(4019), 1, - sym_virtual_specifier, - STATE(4451), 1, - sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1385), 2, - sym__class_name, - sym_qualified_type_identifier, - [85003] = 16, + STATE(8127), 1, + sym_argument_list, + ACTIONS(12044), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [260434] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2568), 1, - anon_sym___declspec, - ACTIONS(3429), 1, - anon_sym_COLON, - ACTIONS(4174), 1, - sym_identifier, - ACTIONS(4176), 1, + ACTIONS(11492), 1, anon_sym_COLON_COLON, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2001), 1, - sym_template_type, - STATE(2114), 1, - sym_field_declaration_list, - STATE(3476), 1, - sym_ms_declspec_modifier, - STATE(3897), 1, - sym__scope_resolution, - STATE(4064), 1, - sym_virtual_specifier, - STATE(4678), 1, - sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1988), 2, - sym__class_name, - sym_qualified_type_identifier, - [85054] = 11, + ACTIONS(11494), 1, + anon_sym_inline, + ACTIONS(12048), 1, + sym_identifier, + STATE(8939), 1, + sym_nested_namespace_specifier, + STATE(9177), 1, + sym__namespace_specifier, + [260453] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2367), 1, + ACTIONS(3197), 1, anon_sym_operator, - ACTIONS(5118), 1, - anon_sym_LPAREN2, - ACTIONS(5126), 1, + ACTIONS(12050), 1, sym_identifier, - ACTIONS(5128), 1, - anon_sym_STAR, - ACTIONS(5130), 1, - anon_sym_AMP_AMP, - ACTIONS(5132), 1, - anon_sym_AMP, - STATE(3634), 1, - sym__field_declarator, - STATE(4991), 1, - sym_ms_based_modifier, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, + STATE(1309), 1, + sym_template_type, + STATE(2831), 1, sym_template_method, + STATE(8294), 1, sym_operator_name, - [85095] = 16, + [260472] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2568), 1, - anon_sym___declspec, - ACTIONS(3110), 1, + ACTIONS(11492), 1, anon_sym_COLON_COLON, - ACTIONS(3427), 1, - anon_sym_LBRACE, - ACTIONS(3429), 1, - anon_sym_COLON, - ACTIONS(4100), 1, + ACTIONS(11494), 1, + anon_sym_inline, + ACTIONS(11978), 1, sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(1356), 1, - sym_field_declaration_list, - STATE(3487), 1, - sym_ms_declspec_modifier, - STATE(3895), 1, - sym__scope_resolution, - STATE(4019), 1, - sym_virtual_specifier, - STATE(4451), 1, - sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1385), 2, - sym__class_name, - sym_qualified_type_identifier, - [85146] = 16, + STATE(7639), 1, + sym__namespace_specifier, + STATE(8293), 1, + sym_nested_namespace_specifier, + [260491] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2568), 1, - anon_sym___declspec, - ACTIONS(3429), 1, - anon_sym_COLON, - ACTIONS(4154), 1, - sym_identifier, - ACTIONS(4156), 1, - anon_sym_COLON_COLON, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2424), 1, - sym_template_type, - STATE(2611), 1, - sym_field_declaration_list, - STATE(3465), 1, - sym_ms_declspec_modifier, - STATE(3918), 1, - sym__scope_resolution, - STATE(4083), 1, - sym_virtual_specifier, - STATE(4818), 1, - sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(2272), 2, - sym__class_name, - sym_qualified_type_identifier, - [85197] = 16, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(12052), 1, + anon_sym_SEMI, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260508] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(12054), 1, + anon_sym_SEMI, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(12058), 1, + anon_sym_COLON_COLON, + ACTIONS(12056), 4, + anon_sym_virtual, + sym_identifier, + anon_sym_decltype, anon_sym_template, - ACTIONS(2568), 1, - anon_sym___declspec, - ACTIONS(3110), 1, + [260538] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11492), 1, anon_sym_COLON_COLON, - ACTIONS(3429), 1, + ACTIONS(11494), 1, + anon_sym_inline, + ACTIONS(12060), 1, + sym_identifier, + STATE(8964), 1, + sym_nested_namespace_specifier, + STATE(9177), 1, + sym__namespace_specifier, + [260557] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9961), 1, + anon_sym_LPAREN2, + ACTIONS(10867), 1, anon_sym_COLON, - ACTIONS(3747), 1, - anon_sym_LBRACE, - ACTIONS(4100), 1, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3668), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + [260576] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(12062), 1, + anon_sym_SEMI, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260593] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(12064), 1, + anon_sym_SEMI, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260610] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(12066), 1, + anon_sym_SEMI, + STATE(7151), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260627] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(12068), 1, + anon_sym_SEMI, + STATE(4574), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260644] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + ACTIONS(12070), 1, + anon_sym_RPAREN, + STATE(3336), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + [260663] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3197), 1, + anon_sym_operator, + ACTIONS(12050), 1, sym_identifier, - STATE(1302), 1, + STATE(1309), 1, sym_template_type, - STATE(1441), 1, - sym_field_declaration_list, - STATE(3472), 1, - sym_ms_declspec_modifier, - STATE(3895), 1, - sym__scope_resolution, - STATE(4145), 1, - sym_virtual_specifier, - STATE(4511), 1, - sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1367), 2, - sym__class_name, - sym_qualified_type_identifier, - [85248] = 11, + STATE(2831), 1, + sym_template_method, + STATE(8042), 1, + sym_operator_name, + [260682] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2367), 1, + ACTIONS(3197), 1, anon_sym_operator, - ACTIONS(5116), 1, + ACTIONS(12072), 1, sym_identifier, - ACTIONS(5118), 1, - anon_sym_LPAREN2, - ACTIONS(5120), 1, - anon_sym_STAR, - ACTIONS(5122), 1, - anon_sym_AMP_AMP, - ACTIONS(5124), 1, - anon_sym_AMP, - STATE(3884), 1, - sym__field_declarator, - STATE(5085), 1, - sym_ms_based_modifier, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, + STATE(1309), 1, + sym_template_type, + STATE(3921), 1, sym_template_method, + STATE(7990), 1, sym_operator_name, - [85289] = 16, + [260701] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2568), 1, - anon_sym___declspec, - ACTIONS(3429), 1, + ACTIONS(9961), 1, + anon_sym_LPAREN2, + ACTIONS(10893), 1, anon_sym_COLON, - ACTIONS(4122), 1, - sym_identifier, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(4126), 1, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3668), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + [260720] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5570), 1, + anon_sym___attribute__, + ACTIONS(12074), 1, + anon_sym_SEMI, + STATE(7172), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [260737] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6144), 1, + sym_auto, + ACTIONS(6146), 1, + anon_sym_decltype, + STATE(1422), 1, + sym_decltype_auto, + ACTIONS(12076), 2, + anon_sym_COMMA, + anon_sym_GT2, + [260754] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5074), 1, + anon_sym_LT, + ACTIONS(7045), 1, + anon_sym_LBRACK, + STATE(2255), 1, + sym_template_argument_list, + ACTIONS(7047), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [260771] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10813), 1, anon_sym_LBRACE, - STATE(2052), 1, - sym_template_type, - STATE(2338), 1, + STATE(2838), 1, + sym_compound_statement, + ACTIONS(10660), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [260785] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12078), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [260795] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3382), 1, sym_field_declaration_list, - STATE(3470), 1, - sym_ms_declspec_modifier, - STATE(3902), 1, - sym__scope_resolution, - STATE(4148), 1, - sym_virtual_specifier, - STATE(4683), 1, + STATE(8247), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(2025), 2, - sym__class_name, - sym_qualified_type_identifier, - [85340] = 16, + [260811] = 4, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12080), 1, + anon_sym_SQUOTE, + STATE(7504), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12082), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [260825] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2319), 1, - anon_sym_COLON_COLON, - ACTIONS(2568), 1, - anon_sym___declspec, - ACTIONS(3427), 1, - anon_sym_LBRACE, - ACTIONS(3429), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4118), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(1356), 1, + ACTIONS(6297), 1, + anon_sym_LBRACE, + STATE(3373), 1, sym_field_declaration_list, - STATE(3468), 1, - sym_ms_declspec_modifier, - STATE(3912), 1, - sym__scope_resolution, - STATE(4019), 1, - sym_virtual_specifier, - STATE(4451), 1, + STATE(8026), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1305), 2, - sym__class_name, - sym_qualified_type_identifier, - [85391] = 16, + [260841] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2319), 1, - anon_sym_COLON_COLON, - ACTIONS(2568), 1, - anon_sym___declspec, - ACTIONS(3427), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(3429), 1, + ACTIONS(11113), 1, anon_sym_COLON, - ACTIONS(4118), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(1356), 1, + STATE(7571), 1, + sym_compound_statement, + STATE(8154), 1, + sym_field_initializer_list, + [260857] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3177), 1, sym_field_declaration_list, - STATE(3468), 1, - sym_ms_declspec_modifier, - STATE(3912), 1, - sym__scope_resolution, - STATE(4019), 1, - sym_virtual_specifier, - STATE(4451), 1, + STATE(8251), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1403), 2, - sym__class_name, - sym_qualified_type_identifier, - [85442] = 6, + [260873] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(6178), 1, - anon_sym_LT, - STATE(2473), 1, - sym_template_argument_list, - ACTIONS(2397), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(2405), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10794), 1, + anon_sym_LBRACE, + STATE(4562), 1, + sym_compound_statement, + ACTIONS(10660), 2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_GT2, - [85473] = 11, + [260887] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(5118), 1, - anon_sym_LPAREN2, - ACTIONS(5126), 1, + ACTIONS(3401), 1, + anon_sym_LT, + ACTIONS(12084), 1, sym_identifier, - ACTIONS(5128), 1, - anon_sym_STAR, - ACTIONS(5130), 1, - anon_sym_AMP_AMP, - ACTIONS(5132), 1, - anon_sym_AMP, - STATE(3632), 1, - sym__field_declarator, - STATE(4991), 1, - sym_ms_based_modifier, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [85514] = 5, + STATE(720), 1, + sym_template_parameter_list, + STATE(1309), 1, + sym_template_type, + [260903] = 4, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12086), 1, + anon_sym_SQUOTE, + STATE(7504), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12082), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [260917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3477), 1, + ACTIONS(10802), 1, anon_sym_LBRACE, - ACTIONS(3452), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3454), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(3986), 1, + sym_compound_statement, + ACTIONS(10660), 2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_GT2, - [85543] = 16, + [260931] = 4, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12088), 1, + anon_sym_SQUOTE, + STATE(7504), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12082), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [260945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2568), 1, - anon_sym___declspec, - ACTIONS(3429), 1, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + STATE(8354), 1, + sym_argument_list, + ACTIONS(12090), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [260959] = 4, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12092), 1, + anon_sym_SQUOTE, + STATE(7504), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12082), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [260973] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12094), 1, + anon_sym_DQUOTE, + ACTIONS(12096), 1, + aux_sym_string_literal_token1, + ACTIONS(12098), 1, + sym_escape_sequence, + STATE(7267), 1, + aux_sym_string_literal_repeat1, + [260989] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4158), 1, + ACTIONS(6275), 1, anon_sym_LBRACE, - ACTIONS(4192), 1, - sym_identifier, - ACTIONS(4194), 1, - anon_sym_COLON_COLON, - STATE(2424), 1, - sym_template_type, - STATE(2611), 1, + STATE(5098), 1, sym_field_declaration_list, - STATE(3497), 1, - sym_ms_declspec_modifier, - STATE(3876), 1, - sym__scope_resolution, - STATE(4083), 1, - sym_virtual_specifier, - STATE(4818), 1, + STATE(8269), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(2272), 2, - sym__class_name, - sym_qualified_type_identifier, - [85594] = 16, + [261005] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12096), 1, + aux_sym_string_literal_token1, + ACTIONS(12098), 1, + sym_escape_sequence, + ACTIONS(12100), 1, + anon_sym_DQUOTE, + STATE(7267), 1, + aux_sym_string_literal_repeat1, + [261021] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2568), 1, - anon_sym___declspec, - ACTIONS(3429), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4134), 1, - sym_identifier, - ACTIONS(4136), 1, - anon_sym_COLON_COLON, - ACTIONS(4138), 1, + ACTIONS(6275), 1, anon_sym_LBRACE, - STATE(3464), 1, - sym_ms_declspec_modifier, - STATE(3592), 1, - sym_template_type, - STATE(3856), 1, + STATE(4922), 1, sym_field_declaration_list, - STATE(3878), 1, - sym__scope_resolution, - STATE(4015), 1, - sym_virtual_specifier, - STATE(4616), 1, + STATE(8270), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(3525), 2, - sym__class_name, - sym_qualified_type_identifier, - [85645] = 16, + [261037] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2319), 1, - anon_sym_COLON_COLON, - ACTIONS(2568), 1, - anon_sym___declspec, - ACTIONS(3427), 1, - anon_sym_LBRACE, - ACTIONS(3429), 1, - anon_sym_COLON, - ACTIONS(4118), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(1356), 1, - sym_field_declaration_list, - STATE(3468), 1, - sym_ms_declspec_modifier, - STATE(3912), 1, - sym__scope_resolution, - STATE(4019), 1, - sym_virtual_specifier, - STATE(4451), 1, - sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1404), 2, - sym__class_name, - sym_qualified_type_identifier, - [85696] = 17, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_LBRACK, + STATE(3336), 1, + sym_parameter_list, + STATE(6358), 1, + sym__function_declarator_seq, + [261053] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12096), 1, + aux_sym_string_literal_token1, + ACTIONS(12098), 1, + sym_escape_sequence, + ACTIONS(12102), 1, + anon_sym_DQUOTE, + STATE(7267), 1, + aux_sym_string_literal_repeat1, + [261069] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6043), 1, + ACTIONS(12104), 1, + anon_sym_COMMA, + STATE(7236), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(12107), 2, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6419), 1, + [261083] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12109), 1, anon_sym_COMMA, - ACTIONS(6421), 1, - anon_sym_SEMI, - ACTIONS(6423), 1, + STATE(7366), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(12111), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [261097] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10817), 1, anon_sym_LBRACE, - ACTIONS(6425), 1, - anon_sym_LBRACK, - ACTIONS(6427), 1, - anon_sym_EQ, - STATE(1108), 1, + STATE(952), 1, sym_compound_statement, - STATE(1109), 1, - sym_default_method_clause, - STATE(1110), 1, - sym_delete_method_clause, - STATE(2953), 1, - sym_parameter_list, - STATE(3845), 1, - aux_sym_field_declaration_repeat1, - STATE(5068), 1, - sym_bitfield_clause, - STATE(5069), 1, - sym_initializer_list, - STATE(3664), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [85749] = 16, + ACTIONS(10660), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [261111] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12113), 1, + anon_sym_DQUOTE, + ACTIONS(12115), 1, + aux_sym_string_literal_token1, + ACTIONS(12117), 1, + sym_escape_sequence, + STATE(7244), 1, + aux_sym_string_literal_repeat1, + [261127] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2568), 1, - anon_sym___declspec, - ACTIONS(3429), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4106), 1, + ACTIONS(6291), 1, anon_sym_LBRACE, - ACTIONS(4140), 1, - sym_identifier, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - STATE(2246), 1, - sym_template_type, - STATE(2382), 1, + STATE(2615), 1, sym_field_declaration_list, - STATE(3489), 1, - sym_ms_declspec_modifier, - STATE(3923), 1, - sym__scope_resolution, - STATE(4058), 1, - sym_virtual_specifier, - STATE(4771), 1, + STATE(8372), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(2066), 2, - sym__class_name, - sym_qualified_type_identifier, - [85800] = 16, + [261143] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12096), 1, + aux_sym_string_literal_token1, + ACTIONS(12098), 1, + sym_escape_sequence, + ACTIONS(12119), 1, + anon_sym_DQUOTE, + STATE(7267), 1, + aux_sym_string_literal_repeat1, + [261159] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2568), 1, - anon_sym___declspec, - ACTIONS(3427), 1, - anon_sym_LBRACE, - ACTIONS(3429), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4118), 1, - sym_identifier, - ACTIONS(4128), 1, - anon_sym_COLON_COLON, - STATE(1302), 1, - sym_template_type, - STATE(1356), 1, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(4391), 1, sym_field_declaration_list, - STATE(3480), 1, - sym_ms_declspec_modifier, - STATE(3888), 1, - sym__scope_resolution, - STATE(4019), 1, - sym_virtual_specifier, - STATE(4451), 1, + STATE(8029), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(3644), 2, - sym__class_name, - sym_qualified_type_identifier, - [85851] = 16, + [261175] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2385), 1, - anon_sym_COLON_COLON, - ACTIONS(2568), 1, - anon_sym___declspec, - ACTIONS(3427), 1, + ACTIONS(12121), 1, + anon_sym_LPAREN2, + ACTIONS(12123), 1, anon_sym_LBRACE, - ACTIONS(3429), 1, - anon_sym_COLON, - ACTIONS(4100), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(1356), 1, - sym_field_declaration_list, - STATE(3477), 1, - sym_ms_declspec_modifier, - STATE(3908), 1, - sym__scope_resolution, - STATE(4019), 1, - sym_virtual_specifier, - STATE(4451), 1, - sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1305), 2, - sym__class_name, - sym_qualified_type_identifier, - [85902] = 17, + STATE(936), 1, + sym_requirement_seq, + STATE(8170), 1, + sym_requires_parameter_list, + [261191] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12096), 1, + aux_sym_string_literal_token1, + ACTIONS(12098), 1, + sym_escape_sequence, + ACTIONS(12125), 1, + anon_sym_DQUOTE, + STATE(7267), 1, + aux_sym_string_literal_repeat1, + [261207] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12127), 1, + aux_sym_preproc_include_token2, + ACTIONS(12129), 1, + anon_sym_LPAREN, + ACTIONS(12131), 1, + sym_preproc_arg, + STATE(8120), 1, + sym_preproc_params, + [261223] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6043), 1, - anon_sym_COLON, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6419), 1, - anon_sym_COMMA, - ACTIONS(6425), 1, - anon_sym_LBRACK, - ACTIONS(6429), 1, - anon_sym_SEMI, - ACTIONS(6431), 1, + ACTIONS(4055), 1, anon_sym_LBRACE, - ACTIONS(6433), 1, + ACTIONS(12133), 1, + anon_sym_COLON_COLON, + ACTIONS(12135), 1, anon_sym_EQ, - STATE(1057), 1, - sym_compound_statement, - STATE(1059), 1, - sym_default_method_clause, - STATE(1060), 1, - sym_delete_method_clause, - STATE(2953), 1, - sym_parameter_list, - STATE(3838), 1, - aux_sym_field_declaration_repeat1, - STATE(4918), 1, - sym_bitfield_clause, - STATE(4928), 1, - sym_initializer_list, - STATE(3664), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [85955] = 17, + STATE(446), 1, + sym_declaration_list, + [261239] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6043), 1, - anon_sym_COLON, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6419), 1, + ACTIONS(8969), 1, anon_sym_COMMA, - ACTIONS(6425), 1, - anon_sym_LBRACK, - ACTIONS(6435), 1, - anon_sym_SEMI, - ACTIONS(6437), 1, + ACTIONS(12137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12139), 1, + anon_sym_GT2, + STATE(7626), 1, + aux_sym_template_argument_list_repeat1, + [261255] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6257), 1, anon_sym_LBRACE, - ACTIONS(6439), 1, - anon_sym_EQ, - STATE(1193), 1, - sym_compound_statement, - STATE(1199), 1, - sym_default_method_clause, - STATE(1201), 1, - sym_delete_method_clause, - STATE(2953), 1, - sym_parameter_list, - STATE(3800), 1, - aux_sym_field_declaration_repeat1, - STATE(5185), 1, - sym_bitfield_clause, - STATE(5186), 1, - sym_initializer_list, - STATE(3664), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [86008] = 16, + STATE(2514), 1, + sym_field_declaration_list, + STATE(8331), 1, + sym_base_class_clause, + [261271] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2568), 1, - anon_sym___declspec, - ACTIONS(3429), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4102), 1, - sym_identifier, - ACTIONS(4104), 1, - anon_sym_COLON_COLON, - ACTIONS(4106), 1, + ACTIONS(6291), 1, anon_sym_LBRACE, - STATE(2246), 1, - sym_template_type, - STATE(2382), 1, + STATE(2656), 1, sym_field_declaration_list, - STATE(3486), 1, - sym_ms_declspec_modifier, - STATE(3909), 1, - sym__scope_resolution, - STATE(4058), 1, - sym_virtual_specifier, - STATE(4771), 1, + STATE(7937), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(2066), 2, - sym__class_name, - sym_qualified_type_identifier, - [86059] = 11, + [261287] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(5116), 1, - sym_identifier, - ACTIONS(5118), 1, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(12133), 1, + anon_sym_COLON_COLON, + ACTIONS(12141), 1, + anon_sym_EQ, + STATE(223), 1, + sym_declaration_list, + [261303] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12143), 1, + anon_sym_DQUOTE, + ACTIONS(12145), 1, + aux_sym_string_literal_token1, + ACTIONS(12147), 1, + sym_escape_sequence, + STATE(7484), 1, + aux_sym_string_literal_repeat1, + [261319] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(6589), 1, anon_sym_LPAREN2, - ACTIONS(5120), 1, - anon_sym_STAR, - ACTIONS(5122), 1, - anon_sym_AMP_AMP, - ACTIONS(5124), 1, - anon_sym_AMP, - STATE(3907), 1, - sym__field_declarator, - STATE(5085), 1, - sym_ms_based_modifier, - STATE(3725), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [86100] = 17, + STATE(2921), 1, + sym_argument_list, + STATE(4125), 1, + sym_initializer_list, + [261335] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12149), 1, + anon_sym_DQUOTE, + ACTIONS(12151), 1, + aux_sym_string_literal_token1, + ACTIONS(12153), 1, + sym_escape_sequence, + STATE(7369), 1, + aux_sym_string_literal_repeat1, + [261351] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6441), 1, - sym_identifier, - ACTIONS(6443), 1, - anon_sym_TILDE, - ACTIONS(6445), 1, - anon_sym_COLON_COLON, - ACTIONS(6447), 1, - anon_sym_template, - ACTIONS(6449), 1, - anon_sym_operator, - STATE(1283), 1, - sym_qualified_type_identifier, - STATE(1291), 1, - sym_template_type, - STATE(1306), 1, - sym_dependent_type_identifier, - STATE(2173), 1, - sym_template_function, - STATE(2174), 1, - sym_destructor_name, - STATE(2175), 1, - sym_dependent_identifier, - STATE(2177), 1, - sym_qualified_identifier, - STATE(2181), 1, - sym_operator_name, - STATE(3456), 1, - sym__scope_resolution, - STATE(4393), 1, - sym_qualified_operator_cast_identifier, - STATE(4399), 1, - sym_operator_cast, - [86152] = 17, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(11113), 1, + anon_sym_COLON, + STATE(7557), 1, + sym_compound_statement, + STATE(7968), 1, + sym_field_initializer_list, + [261367] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2289), 1, - anon_sym_COLON_COLON, - ACTIONS(6451), 1, - sym_identifier, - ACTIONS(6453), 1, - anon_sym_template, - STATE(1283), 1, - sym_qualified_type_identifier, - STATE(1291), 1, - sym_template_type, - STATE(1306), 1, - sym_dependent_type_identifier, - STATE(2173), 1, - sym_template_function, - STATE(2174), 1, - sym_destructor_name, - STATE(2175), 1, - sym_dependent_identifier, - STATE(2177), 1, - sym_qualified_identifier, - STATE(2181), 1, - sym_operator_name, - STATE(3457), 1, - sym__scope_resolution, - STATE(4393), 1, - sym_qualified_operator_cast_identifier, - STATE(4399), 1, - sym_operator_cast, - [86204] = 5, + ACTIONS(12155), 1, + anon_sym___except, + ACTIONS(12157), 1, + anon_sym___finally, + STATE(315), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [261381] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6411), 1, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6291), 1, anon_sym_LBRACE, - STATE(2552), 1, - sym_enumerator_list, - ACTIONS(3446), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3448), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_GT2, - [86232] = 5, + STATE(2728), 1, + sym_field_declaration_list, + STATE(7944), 1, + sym_base_class_clause, + [261397] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6415), 1, + ACTIONS(9955), 1, anon_sym_LBRACE, - STATE(2438), 1, - sym_enumerator_list, - ACTIONS(3487), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3489), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(12121), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - [86260] = 5, + STATE(3801), 1, + sym_requirement_seq, + STATE(8121), 1, + sym_requires_parameter_list, + [261413] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6411), 1, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6291), 1, anon_sym_LBRACE, - STATE(2605), 1, - sym_enumerator_list, - ACTIONS(3487), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3489), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_GT2, - [86288] = 5, + STATE(2673), 1, + sym_field_declaration_list, + STATE(8321), 1, + sym_base_class_clause, + [261429] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6415), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - STATE(2477), 1, - sym_enumerator_list, - ACTIONS(3446), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3448), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - [86316] = 4, + ACTIONS(11113), 1, + anon_sym_COLON, + STATE(7563), 1, + sym_compound_statement, + STATE(8185), 1, + sym_field_initializer_list, + [261445] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12159), 1, + anon_sym_DQUOTE, + ACTIONS(12161), 1, + aux_sym_string_literal_token1, + ACTIONS(12163), 1, + sym_escape_sequence, + STATE(7275), 1, + aux_sym_string_literal_repeat1, + [261461] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(9945), 1, anon_sym_LBRACE, - ACTIONS(3452), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3454), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(12121), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_GT2, - [86342] = 17, + STATE(2912), 1, + sym_requirement_seq, + STATE(8178), 1, + sym_requires_parameter_list, + [261477] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(1933), 1, - anon_sym_COLON_COLON, - ACTIONS(6455), 1, + ACTIONS(3401), 1, + anon_sym_LT, + ACTIONS(12084), 1, sym_identifier, - ACTIONS(6457), 1, - anon_sym_template, - STATE(1291), 1, + STATE(717), 1, + sym_template_parameter_list, + STATE(1309), 1, sym_template_type, - STATE(1306), 1, - sym_dependent_type_identifier, - STATE(1392), 1, - sym_qualified_type_identifier, - STATE(2173), 1, - sym_template_function, - STATE(2174), 1, - sym_destructor_name, - STATE(2175), 1, - sym_dependent_identifier, - STATE(2177), 1, - sym_qualified_identifier, - STATE(2181), 1, - sym_operator_name, - STATE(3463), 1, - sym__scope_resolution, - STATE(4393), 1, - sym_qualified_operator_cast_identifier, - STATE(4399), 1, - sym_operator_cast, - [86394] = 14, + [261493] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3429), 1, - anon_sym_COLON, - ACTIONS(4134), 1, - sym_identifier, - ACTIONS(4136), 1, - anon_sym_COLON_COLON, - ACTIONS(4138), 1, + ACTIONS(12165), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12167), 1, + anon_sym_COMMA, + ACTIONS(12169), 1, anon_sym_LBRACE, - STATE(3592), 1, - sym_template_type, - STATE(3825), 1, - sym_field_declaration_list, - STATE(3878), 1, - sym__scope_resolution, - STATE(4046), 1, - sym_virtual_specifier, - STATE(4498), 1, - sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(3513), 2, - sym__class_name, - sym_qualified_type_identifier, - [86439] = 14, + STATE(7544), 1, + aux_sym_base_class_clause_repeat1, + [261509] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12171), 1, + anon_sym_DQUOTE, + ACTIONS(12173), 1, + aux_sym_string_literal_token1, + ACTIONS(12175), 1, + sym_escape_sequence, + STATE(7365), 1, + aux_sym_string_literal_repeat1, + [261525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3429), 1, + ACTIONS(10836), 1, + anon_sym_LBRACE, + STATE(4168), 1, + sym_compound_statement, + ACTIONS(10660), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [261539] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4154), 1, - sym_identifier, - ACTIONS(4156), 1, - anon_sym_COLON_COLON, - ACTIONS(4158), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(2424), 1, - sym_template_type, - STATE(2573), 1, + STATE(2470), 1, sym_field_declaration_list, - STATE(3918), 1, - sym__scope_resolution, - STATE(4127), 1, - sym_virtual_specifier, - STATE(4713), 1, + STATE(8335), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(2271), 2, - sym__class_name, - sym_qualified_type_identifier, - [86484] = 15, + [261555] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12177), 1, + anon_sym_DQUOTE, + ACTIONS(12179), 1, + aux_sym_string_literal_token1, + ACTIONS(12182), 1, + sym_escape_sequence, + STATE(7267), 1, + aux_sym_string_literal_repeat1, + [261571] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2564), 1, - anon_sym_COLON_COLON, - ACTIONS(6459), 1, + ACTIONS(3401), 1, + anon_sym_LT, + ACTIONS(12084), 1, sym_identifier, - ACTIONS(6461), 1, - anon_sym_template, - STATE(2173), 1, - sym_template_function, - STATE(2174), 1, - sym_destructor_name, - STATE(2175), 1, - sym_dependent_identifier, - STATE(2177), 1, - sym_qualified_identifier, - STATE(2181), 1, - sym_operator_name, - STATE(3466), 1, - sym__scope_resolution, - STATE(4393), 1, - sym_qualified_operator_cast_identifier, - STATE(4399), 1, - sym_operator_cast, - STATE(4853), 2, + STATE(722), 1, + sym_template_parameter_list, + STATE(1309), 1, sym_template_type, - sym_dependent_type_identifier, - [86531] = 14, + [261587] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3429), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4174), 1, - sym_identifier, - ACTIONS(4176), 1, - anon_sym_COLON_COLON, - ACTIONS(4178), 1, + ACTIONS(6291), 1, anon_sym_LBRACE, - STATE(2001), 1, - sym_template_type, - STATE(2097), 1, + STATE(2641), 1, sym_field_declaration_list, - STATE(3897), 1, - sym__scope_resolution, - STATE(4090), 1, - sym_virtual_specifier, - STATE(4642), 1, + STATE(7946), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1981), 2, - sym__class_name, - sym_qualified_type_identifier, - [86576] = 14, + [261603] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2319), 1, - anon_sym_COLON_COLON, - ACTIONS(3427), 1, - anon_sym_LBRACE, - ACTIONS(3429), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4118), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(1350), 1, + ACTIONS(6285), 1, + anon_sym_LBRACE, + STATE(3084), 1, sym_field_declaration_list, - STATE(3912), 1, - sym__scope_resolution, - STATE(4171), 1, - sym_virtual_specifier, - STATE(4726), 1, + STATE(8224), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1290), 2, - sym__class_name, - sym_qualified_type_identifier, - [86621] = 14, + [261619] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2319), 1, - anon_sym_COLON_COLON, - ACTIONS(3427), 1, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(3429), 1, + STATE(3485), 1, + sym_field_declaration_list, + STATE(8343), 1, + sym_base_class_clause, + [261635] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4118), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(1359), 1, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3487), 1, sym_field_declaration_list, - STATE(3912), 1, - sym__scope_resolution, - STATE(4172), 1, - sym_virtual_specifier, - STATE(4725), 1, + STATE(8348), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1309), 2, - sym__class_name, - sym_qualified_type_identifier, - [86666] = 14, + [261651] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3429), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4122), 1, - sym_identifier, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(4126), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - STATE(2052), 1, - sym_template_type, - STATE(2304), 1, + STATE(3207), 1, sym_field_declaration_list, - STATE(3902), 1, - sym__scope_resolution, - STATE(4109), 1, - sym_virtual_specifier, - STATE(4748), 1, + STATE(8352), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(2034), 2, - sym__class_name, - sym_qualified_type_identifier, - [86711] = 10, + [261667] = 4, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12185), 1, + anon_sym_SQUOTE, + STATE(7504), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12082), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [261681] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12096), 1, + aux_sym_string_literal_token1, + ACTIONS(12098), 1, + sym_escape_sequence, + ACTIONS(12187), 1, + anon_sym_DQUOTE, + STATE(7267), 1, + aux_sym_string_literal_repeat1, + [261697] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2381), 1, - anon_sym_AMP_AMP, - ACTIONS(2383), 1, - anon_sym_AMP, - ACTIONS(6015), 1, - anon_sym_LBRACK, - STATE(3266), 1, - sym_parameter_list, - STATE(3948), 1, - sym__abstract_declarator, - ACTIONS(5024), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [86748] = 14, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(5300), 1, + anon_sym_COLON, + STATE(1404), 1, + sym_field_declaration_list, + STATE(7980), 1, + sym_base_class_clause, + [261713] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3110), 1, - anon_sym_COLON_COLON, - ACTIONS(3429), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(3747), 1, + ACTIONS(6291), 1, anon_sym_LBRACE, - ACTIONS(4100), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(1437), 1, + STATE(2652), 1, sym_field_declaration_list, - STATE(3895), 1, - sym__scope_resolution, - STATE(4062), 1, - sym_virtual_specifier, - STATE(4458), 1, + STATE(7951), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1378), 2, - sym__class_name, - sym_qualified_type_identifier, - [86793] = 10, + [261729] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(9929), 1, + anon_sym_LBRACE, + ACTIONS(12121), 1, anon_sym_LPAREN2, - ACTIONS(6015), 1, - anon_sym_LBRACK, - ACTIONS(6049), 1, - anon_sym_STAR, - ACTIONS(6051), 1, - anon_sym_AMP_AMP, - ACTIONS(6053), 1, - anon_sym_AMP, - STATE(3270), 1, - sym_parameter_list, - STATE(3936), 1, - sym__abstract_declarator, - ACTIONS(5491), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [86830] = 14, + STATE(3880), 1, + sym_requirement_seq, + STATE(7995), 1, + sym_requires_parameter_list, + [261745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3429), 1, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4122), 1, - sym_identifier, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(4126), 1, + STATE(1402), 1, + sym_field_declaration_list, + STATE(8226), 1, + sym_base_class_clause, + [261761] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(2052), 1, - sym_template_type, - STATE(2303), 1, + STATE(2490), 1, sym_field_declaration_list, - STATE(3902), 1, - sym__scope_resolution, - STATE(4110), 1, - sym_virtual_specifier, - STATE(4743), 1, + STATE(8307), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(2035), 2, - sym__class_name, - sym_qualified_type_identifier, - [86875] = 5, + [261777] = 4, ACTIONS(3), 1, sym_comment, - STATE(3475), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3322), 3, - anon_sym_AMP, - sym_primitive_type, - sym_identifier, - ACTIONS(6463), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3324), 7, + ACTIONS(10815), 1, + anon_sym_LBRACE, + STATE(5855), 1, + sym_compound_statement, + ACTIONS(10660), 2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_LBRACK, + [261791] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10824), 1, anon_sym_LBRACE, + STATE(3614), 1, + sym_compound_statement, + ACTIONS(10660), 2, + anon_sym_LPAREN2, anon_sym_LBRACK, - anon_sym_EQ, - [86902] = 14, + [261805] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3429), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4174), 1, - sym_identifier, - ACTIONS(4176), 1, - anon_sym_COLON_COLON, - ACTIONS(4178), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(2001), 1, - sym_template_type, - STATE(2095), 1, + STATE(2491), 1, sym_field_declaration_list, - STATE(3897), 1, - sym__scope_resolution, - STATE(4091), 1, - sym_virtual_specifier, - STATE(4641), 1, + STATE(8311), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1990), 2, - sym__class_name, - sym_qualified_type_identifier, - [86947] = 14, + [261821] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12189), 1, + anon_sym_DQUOTE, + ACTIONS(12191), 1, + aux_sym_string_literal_token1, + ACTIONS(12193), 1, + sym_escape_sequence, + STATE(7303), 1, + aux_sym_string_literal_repeat1, + [261837] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2385), 1, - anon_sym_COLON_COLON, - ACTIONS(3427), 1, - anon_sym_LBRACE, - ACTIONS(3429), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4100), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(1350), 1, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2493), 1, sym_field_declaration_list, - STATE(3908), 1, - sym__scope_resolution, - STATE(4171), 1, - sym_virtual_specifier, - STATE(4726), 1, + STATE(8318), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1290), 2, - sym__class_name, - sym_qualified_type_identifier, - [86992] = 7, + [261853] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3465), 1, - anon_sym_AMP, - ACTIONS(6466), 1, - sym_identifier, - ACTIONS(6470), 1, - sym_primitive_type, - STATE(3475), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6468), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3463), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [87023] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3429), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4154), 1, - sym_identifier, - ACTIONS(4156), 1, - anon_sym_COLON_COLON, - ACTIONS(4158), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(2424), 1, - sym_template_type, - STATE(2620), 1, + STATE(2494), 1, sym_field_declaration_list, - STATE(3918), 1, - sym__scope_resolution, - STATE(4126), 1, - sym_virtual_specifier, - STATE(4715), 1, + STATE(8328), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(2268), 2, - sym__class_name, - sym_qualified_type_identifier, - [87068] = 14, + [261869] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3427), 1, + ACTIONS(9937), 1, anon_sym_LBRACE, - ACTIONS(3429), 1, + ACTIONS(12121), 1, + anon_sym_LPAREN2, + STATE(4127), 1, + sym_requirement_seq, + STATE(8350), 1, + sym_requires_parameter_list, + [261885] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4118), 1, - sym_identifier, - ACTIONS(4128), 1, - anon_sym_COLON_COLON, - STATE(1302), 1, - sym_template_type, - STATE(1350), 1, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3433), 1, sym_field_declaration_list, - STATE(3888), 1, - sym__scope_resolution, - STATE(4171), 1, - sym_virtual_specifier, - STATE(4726), 1, + STATE(8375), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(3636), 2, - sym__class_name, - sym_qualified_type_identifier, - [87113] = 10, + [261901] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(6015), 1, - anon_sym_LBRACK, - ACTIONS(6049), 1, - anon_sym_STAR, - ACTIONS(6051), 1, - anon_sym_AMP_AMP, - ACTIONS(6053), 1, - anon_sym_AMP, - STATE(3270), 1, - sym_parameter_list, - STATE(3924), 1, - sym__abstract_declarator, - ACTIONS(5445), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, anon_sym_COMMA, + ACTIONS(12137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12195), 1, anon_sym_GT2, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [87150] = 10, + STATE(7573), 1, + aux_sym_template_argument_list_repeat1, + [261917] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(6015), 1, - anon_sym_LBRACK, - ACTIONS(6049), 1, - anon_sym_STAR, - ACTIONS(6051), 1, - anon_sym_AMP_AMP, - ACTIONS(6053), 1, - anon_sym_AMP, - STATE(3270), 1, - sym_parameter_list, - STATE(3944), 1, - sym__abstract_declarator, - ACTIONS(5024), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [87187] = 14, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3434), 1, + sym_field_declaration_list, + STATE(8377), 1, + sym_base_class_clause, + [261933] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12129), 1, + anon_sym_LPAREN, + ACTIONS(12197), 1, + aux_sym_preproc_include_token2, + ACTIONS(12199), 1, + sym_preproc_arg, + STATE(8219), 1, + sym_preproc_params, + [261949] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2385), 1, - anon_sym_COLON_COLON, - ACTIONS(3427), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(3429), 1, + ACTIONS(11113), 1, anon_sym_COLON, - ACTIONS(4100), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(1359), 1, + STATE(7721), 1, + sym_compound_statement, + STATE(8214), 1, + sym_field_initializer_list, + [261965] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3438), 1, sym_field_declaration_list, - STATE(3908), 1, - sym__scope_resolution, - STATE(4172), 1, - sym_virtual_specifier, - STATE(4725), 1, + STATE(8378), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1309), 2, - sym__class_name, - sym_qualified_type_identifier, - [87232] = 14, + [261981] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3429), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4102), 1, - sym_identifier, - ACTIONS(4104), 1, - anon_sym_COLON_COLON, - ACTIONS(4106), 1, + ACTIONS(6297), 1, anon_sym_LBRACE, - STATE(2246), 1, - sym_template_type, - STATE(2366), 1, + STATE(3817), 1, sym_field_declaration_list, - STATE(3909), 1, - sym__scope_resolution, - STATE(4004), 1, - sym_virtual_specifier, - STATE(4806), 1, + STATE(8053), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(2096), 2, - sym__class_name, - sym_qualified_type_identifier, - [87277] = 14, + [261997] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3427), 1, - anon_sym_LBRACE, - ACTIONS(3429), 1, - anon_sym_COLON, - ACTIONS(4118), 1, + ACTIONS(3401), 1, + anon_sym_LT, + ACTIONS(12084), 1, sym_identifier, - ACTIONS(4128), 1, - anon_sym_COLON_COLON, - STATE(1302), 1, + STATE(721), 1, + sym_template_parameter_list, + STATE(1309), 1, sym_template_type, - STATE(1359), 1, + [262013] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3440), 1, sym_field_declaration_list, - STATE(3888), 1, - sym__scope_resolution, - STATE(4172), 1, - sym_virtual_specifier, - STATE(4725), 1, + STATE(8381), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(3640), 2, - sym__class_name, - sym_qualified_type_identifier, - [87322] = 14, + [262029] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3429), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4102), 1, - sym_identifier, - ACTIONS(4104), 1, - anon_sym_COLON_COLON, - ACTIONS(4106), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - STATE(2246), 1, - sym_template_type, - STATE(2374), 1, + STATE(3213), 1, sym_field_declaration_list, - STATE(3909), 1, - sym__scope_resolution, - STATE(4005), 1, - sym_virtual_specifier, - STATE(4811), 1, + STATE(8382), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(2090), 2, - sym__class_name, - sym_qualified_type_identifier, - [87367] = 14, + [262045] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3110), 1, - anon_sym_COLON_COLON, - ACTIONS(3427), 1, - anon_sym_LBRACE, - ACTIONS(3429), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4100), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(1350), 1, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2758), 1, sym_field_declaration_list, - STATE(3895), 1, - sym__scope_resolution, - STATE(4171), 1, - sym_virtual_specifier, - STATE(4726), 1, + STATE(8341), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1384), 2, - sym__class_name, - sym_qualified_type_identifier, - [87412] = 14, + [262061] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3110), 1, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12201), 1, + anon_sym_GT2, + STATE(7928), 1, + aux_sym_template_argument_list_repeat1, + [262077] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, anon_sym_COLON_COLON, - ACTIONS(3427), 1, + ACTIONS(3274), 1, + anon_sym_SEMI, + ACTIONS(5074), 1, + anon_sym_LT, + STATE(2444), 1, + sym_template_argument_list, + [262093] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12203), 1, + anon_sym_EQ, + STATE(6165), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [262107] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12205), 1, + anon_sym_GT2, + STATE(7591), 1, + aux_sym_template_argument_list_repeat1, + [262123] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12096), 1, + aux_sym_string_literal_token1, + ACTIONS(12098), 1, + sym_escape_sequence, + ACTIONS(12207), 1, + anon_sym_DQUOTE, + STATE(7267), 1, + aux_sym_string_literal_repeat1, + [262139] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10815), 1, + anon_sym_LBRACE, + STATE(5781), 1, + sym_compound_statement, + ACTIONS(10660), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [262153] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10828), 1, anon_sym_LBRACE, - ACTIONS(3429), 1, + STATE(3770), 1, + sym_compound_statement, + ACTIONS(10660), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [262167] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12209), 1, + anon_sym_COMMA, + STATE(7389), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(12211), 2, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4100), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(1359), 1, - sym_field_declaration_list, - STATE(3895), 1, - sym__scope_resolution, - STATE(4172), 1, - sym_virtual_specifier, - STATE(4725), 1, - sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1393), 2, - sym__class_name, - sym_qualified_type_identifier, - [87457] = 14, + [262181] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12213), 1, + anon_sym_DQUOTE, + ACTIONS(12215), 1, + aux_sym_string_literal_token1, + ACTIONS(12217), 1, + sym_escape_sequence, + STATE(7494), 1, + aux_sym_string_literal_repeat1, + [262197] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3429), 1, + ACTIONS(12219), 1, + anon_sym___except, + ACTIONS(12221), 1, + anon_sym___finally, + STATE(177), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [262211] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(11113), 1, anon_sym_COLON, - ACTIONS(4106), 1, + STATE(7832), 1, + sym_compound_statement, + STATE(8235), 1, + sym_field_initializer_list, + [262227] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12129), 1, + anon_sym_LPAREN, + ACTIONS(12223), 1, + aux_sym_preproc_include_token2, + ACTIONS(12225), 1, + sym_preproc_arg, + STATE(8177), 1, + sym_preproc_params, + [262243] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5074), 1, + anon_sym_LT, + STATE(914), 1, + sym_template_argument_list, + ACTIONS(7047), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [262257] = 4, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12227), 1, + anon_sym_SQUOTE, + STATE(7504), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12082), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [262271] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10822), 1, anon_sym_LBRACE, - ACTIONS(4140), 1, - sym_identifier, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - STATE(2246), 1, - sym_template_type, - STATE(2374), 1, - sym_field_declaration_list, - STATE(3923), 1, - sym__scope_resolution, - STATE(4005), 1, - sym_virtual_specifier, - STATE(4811), 1, - sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(2090), 2, - sym__class_name, - sym_qualified_type_identifier, - [87502] = 10, + STATE(6157), 1, + sym_compound_statement, + ACTIONS(10660), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [262285] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, + anon_sym_GT2, + STATE(7610), 1, + aux_sym_template_argument_list_repeat1, + [262301] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12231), 1, + anon_sym_GT2, + STATE(7635), 1, + aux_sym_template_argument_list_repeat1, + [262317] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(6015), 1, - anon_sym_LBRACK, - ACTIONS(6059), 1, - anon_sym_STAR, - ACTIONS(6061), 1, - anon_sym_AMP_AMP, - ACTIONS(6063), 1, - anon_sym_AMP, - STATE(3273), 1, - sym_parameter_list, - STATE(3958), 1, - sym__abstract_declarator, - ACTIONS(5491), 3, - anon_sym_SEMI, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6305), 1, anon_sym_LBRACE, - anon_sym_EQ, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [87539] = 10, + STATE(3463), 1, + sym_field_declaration_list, + STATE(8405), 1, + sym_base_class_clause, + [262333] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(6015), 1, - anon_sym_LBRACK, - ACTIONS(6059), 1, - anon_sym_STAR, - ACTIONS(6061), 1, - anon_sym_AMP_AMP, - ACTIONS(6063), 1, - anon_sym_AMP, - STATE(3273), 1, - sym_parameter_list, - STATE(3966), 1, - sym__abstract_declarator, - ACTIONS(5445), 3, - anon_sym_SEMI, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6263), 1, anon_sym_LBRACE, - anon_sym_EQ, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [87576] = 14, + STATE(3351), 1, + sym_field_declaration_list, + STATE(8286), 1, + sym_base_class_clause, + [262349] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3427), 1, - anon_sym_LBRACE, - ACTIONS(3429), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4118), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - STATE(1302), 1, - sym_template_type, - STATE(1350), 1, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3353), 1, sym_field_declaration_list, - STATE(3881), 1, - sym__scope_resolution, - STATE(4171), 1, - sym_virtual_specifier, - STATE(4726), 1, + STATE(8288), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1384), 2, - sym__class_name, - sym_qualified_type_identifier, - [87621] = 14, + [262365] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3427), 1, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6263), 1, anon_sym_LBRACE, - ACTIONS(3429), 1, + STATE(3365), 1, + sym_field_declaration_list, + STATE(8289), 1, + sym_base_class_clause, + [262381] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4118), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - STATE(1302), 1, - sym_template_type, - STATE(1359), 1, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3380), 1, sym_field_declaration_list, - STATE(3881), 1, - sym__scope_resolution, - STATE(4172), 1, - sym_virtual_specifier, - STATE(4725), 1, + STATE(8291), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1393), 2, - sym__class_name, - sym_qualified_type_identifier, - [87666] = 14, + [262397] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3110), 1, - anon_sym_COLON_COLON, - ACTIONS(3429), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(3747), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(4100), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(1436), 1, + STATE(3466), 1, sym_field_declaration_list, - STATE(3895), 1, - sym__scope_resolution, - STATE(4066), 1, - sym_virtual_specifier, - STATE(4460), 1, + STATE(8406), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(1377), 2, - sym__class_name, - sym_qualified_type_identifier, - [87711] = 14, + [262413] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3429), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4134), 1, - sym_identifier, - ACTIONS(4136), 1, - anon_sym_COLON_COLON, - ACTIONS(4138), 1, + ACTIONS(6263), 1, anon_sym_LBRACE, - STATE(3592), 1, - sym_template_type, - STATE(3826), 1, + STATE(3170), 1, sym_field_declaration_list, - STATE(3878), 1, - sym__scope_resolution, - STATE(4048), 1, - sym_virtual_specifier, - STATE(4508), 1, + STATE(8292), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(3512), 2, - sym__class_name, - sym_qualified_type_identifier, - [87756] = 10, + [262429] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(6015), 1, - anon_sym_LBRACK, - ACTIONS(6059), 1, - anon_sym_STAR, - ACTIONS(6061), 1, - anon_sym_AMP_AMP, - ACTIONS(6063), 1, - anon_sym_AMP, - STATE(3273), 1, - sym_parameter_list, - STATE(3941), 1, - sym__abstract_declarator, - ACTIONS(5024), 3, + ACTIONS(12078), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [87793] = 14, + anon_sym_try, + [262439] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3429), 1, + ACTIONS(12233), 1, + anon_sym___except, + ACTIONS(12235), 1, + anon_sym___finally, + STATE(699), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [262453] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12237), 1, + anon_sym_DQUOTE, + ACTIONS(12239), 1, + aux_sym_string_literal_token1, + ACTIONS(12241), 1, + sym_escape_sequence, + STATE(7336), 1, + aux_sym_string_literal_repeat1, + [262469] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12243), 1, + anon_sym_GT2, + STATE(7882), 1, + aux_sym_template_argument_list_repeat1, + [262485] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12245), 1, + anon_sym_COMMA, + STATE(7510), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(12247), 2, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4158), 1, + [262499] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10815), 1, anon_sym_LBRACE, - ACTIONS(4192), 1, + STATE(5821), 1, + sym_compound_statement, + ACTIONS(10660), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [262513] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11210), 1, sym_identifier, - ACTIONS(4194), 1, - anon_sym_COLON_COLON, - STATE(2424), 1, - sym_template_type, - STATE(2573), 1, - sym_field_declaration_list, - STATE(3876), 1, - sym__scope_resolution, - STATE(4127), 1, - sym_virtual_specifier, - STATE(4713), 1, - sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(2271), 2, - sym__class_name, - sym_qualified_type_identifier, - [87838] = 14, + ACTIONS(12249), 1, + aux_sym_preproc_if_token2, + STATE(6978), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8829), 1, + sym_enumerator, + [262529] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3429), 1, - anon_sym_COLON, - ACTIONS(4158), 1, - anon_sym_LBRACE, - ACTIONS(4192), 1, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12251), 1, + anon_sym_GT2, + STATE(7581), 1, + aux_sym_template_argument_list_repeat1, + [262545] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11043), 1, sym_identifier, - ACTIONS(4194), 1, - anon_sym_COLON_COLON, - STATE(2424), 1, + ACTIONS(12253), 1, + aux_sym_preproc_if_token2, + STATE(6982), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [262559] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12255), 1, + anon_sym___except, + ACTIONS(12257), 1, + anon_sym___finally, + STATE(366), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [262573] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3401), 1, + anon_sym_LT, + ACTIONS(12084), 1, + sym_identifier, + STATE(1309), 1, sym_template_type, - STATE(2620), 1, + STATE(7163), 1, + sym_template_parameter_list, + [262589] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(5300), 1, + anon_sym_COLON, + STATE(1405), 1, sym_field_declaration_list, - STATE(3876), 1, - sym__scope_resolution, - STATE(4126), 1, - sym_virtual_specifier, - STATE(4715), 1, + STATE(8117), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(2268), 2, - sym__class_name, - sym_qualified_type_identifier, - [87883] = 10, + [262605] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2381), 1, - anon_sym_AMP_AMP, - ACTIONS(2383), 1, - anon_sym_AMP, - ACTIONS(6015), 1, - anon_sym_LBRACK, - STATE(3266), 1, - sym_parameter_list, - STATE(3942), 1, - sym__abstract_declarator, - ACTIONS(5445), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12259), 1, + anon_sym_EQ, + STATE(7450), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [262619] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12096), 1, + aux_sym_string_literal_token1, + ACTIONS(12098), 1, + sym_escape_sequence, + ACTIONS(12261), 1, + anon_sym_DQUOTE, + STATE(7267), 1, + aux_sym_string_literal_repeat1, + [262635] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, + anon_sym_LT, + ACTIONS(12263), 1, anon_sym_SEMI, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [87920] = 5, + STATE(917), 1, + sym_template_argument_list, + [262651] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12265), 1, + anon_sym_DQUOTE, + ACTIONS(12267), 1, + aux_sym_string_literal_token1, + ACTIONS(12269), 1, + sym_escape_sequence, + STATE(7340), 1, + aux_sym_string_literal_repeat1, + [262667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 1, + ACTIONS(10822), 1, + anon_sym_LBRACE, + STATE(6181), 1, + sym_compound_statement, + ACTIONS(10660), 2, anon_sym_LPAREN2, - STATE(2389), 1, - sym_argument_list, - ACTIONS(3452), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3454), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_GT2, - [87947] = 10, + [262681] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12096), 1, + aux_sym_string_literal_token1, + ACTIONS(12098), 1, + sym_escape_sequence, + ACTIONS(12271), 1, + anon_sym_DQUOTE, + STATE(7267), 1, + aux_sym_string_literal_repeat1, + [262697] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12273), 1, + anon_sym_DQUOTE, + ACTIONS(12275), 1, + aux_sym_string_literal_token1, + ACTIONS(12277), 1, + sym_escape_sequence, + STATE(7466), 1, + aux_sym_string_literal_repeat1, + [262713] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12279), 1, + anon_sym_DQUOTE, + ACTIONS(12281), 1, + aux_sym_string_literal_token1, + ACTIONS(12283), 1, + sym_escape_sequence, + STATE(7232), 1, + aux_sym_string_literal_repeat1, + [262729] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2381), 1, - anon_sym_AMP_AMP, - ACTIONS(2383), 1, - anon_sym_AMP, - ACTIONS(6015), 1, - anon_sym_LBRACK, - STATE(3266), 1, - sym_parameter_list, - STATE(3939), 1, - sym__abstract_declarator, - ACTIONS(5491), 3, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [87984] = 14, + ACTIONS(12137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12285), 1, + anon_sym_GT2, + STATE(7653), 1, + aux_sym_template_argument_list_repeat1, + [262745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3429), 1, - anon_sym_COLON, - ACTIONS(4106), 1, + ACTIONS(4990), 1, anon_sym_LBRACE, - ACTIONS(4140), 1, - sym_identifier, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - STATE(2246), 1, - sym_template_type, - STATE(2366), 1, + ACTIONS(5300), 1, + anon_sym_COLON, + STATE(1386), 1, sym_field_declaration_list, - STATE(3923), 1, - sym__scope_resolution, - STATE(4004), 1, - sym_virtual_specifier, - STATE(4806), 1, + STATE(8038), 1, sym_base_class_clause, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - STATE(2096), 2, - sym__class_name, - sym_qualified_type_identifier, - [88029] = 15, + [262761] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(2373), 1, - anon_sym_COLON_COLON, - ACTIONS(6475), 1, + ACTIONS(3401), 1, + anon_sym_LT, + ACTIONS(12084), 1, sym_identifier, - ACTIONS(6477), 1, - anon_sym_template, - STATE(1283), 1, - sym_qualified_type_identifier, - STATE(1291), 1, + STATE(719), 1, + sym_template_parameter_list, + STATE(1309), 1, sym_template_type, - STATE(1306), 1, - sym_dependent_type_identifier, - STATE(2173), 1, - sym_template_function, - STATE(2174), 1, - sym_destructor_name, - STATE(2175), 1, - sym_dependent_identifier, - STATE(2177), 1, - sym_qualified_identifier, - STATE(2181), 1, - sym_operator_name, - STATE(3503), 1, - sym__scope_resolution, - [88075] = 9, + [262777] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_AMP, - ACTIONS(3749), 1, + ACTIONS(11210), 1, + sym_identifier, + ACTIONS(11960), 1, + aux_sym_preproc_if_token2, + STATE(7329), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8829), 1, + sym_enumerator, + [262793] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10828), 1, + anon_sym_LBRACE, + STATE(3729), 1, + sym_compound_statement, + ACTIONS(10660), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [262807] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4138), 1, + ACTIONS(6297), 1, anon_sym_LBRACE, - STATE(3813), 1, + STATE(3849), 1, sym_field_declaration_list, - STATE(4012), 1, - sym_virtual_specifier, - STATE(4473), 1, + STATE(8076), 1, sym_base_class_clause, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3444), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_EQ, - [88109] = 15, + [262823] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, - sym_identifier, - ACTIONS(6481), 1, - anon_sym_TILDE, - ACTIONS(6483), 1, - anon_sym_COLON_COLON, - ACTIONS(6485), 1, - anon_sym_template, - ACTIONS(6487), 1, - anon_sym_operator, - STATE(1283), 1, - sym_qualified_type_identifier, - STATE(1291), 1, - sym_template_type, - STATE(1306), 1, - sym_dependent_type_identifier, - STATE(2367), 1, - sym_operator_name, - STATE(2368), 1, - sym_qualified_identifier, - STATE(2369), 1, - sym_dependent_identifier, - STATE(2370), 1, - sym_destructor_name, - STATE(2372), 1, - sym_template_function, - STATE(3505), 1, - sym__scope_resolution, - [88155] = 13, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2602), 1, + sym_field_declaration_list, + STATE(7954), 1, + sym_base_class_clause, + [262839] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(6491), 1, - anon_sym_LPAREN2, - ACTIONS(6493), 1, - anon_sym_SEMI, - ACTIONS(6495), 1, - anon_sym_LBRACE, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6499), 1, + ACTIONS(12287), 1, anon_sym_EQ, - STATE(201), 1, - sym_compound_statement, - STATE(2751), 1, - sym_parameter_list, - STATE(4363), 1, - aux_sym_declaration_repeat1, - STATE(3623), 2, + STATE(6165), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4755), 2, - sym_argument_list, - sym_initializer_list, - [88197] = 12, + [262853] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2381), 1, - anon_sym_AMP_AMP, - ACTIONS(2383), 1, - anon_sym_AMP, - ACTIONS(6015), 1, - anon_sym_LBRACK, - ACTIONS(6501), 1, - anon_sym_LBRACE, - STATE(2163), 1, - sym_compound_statement, - STATE(3341), 1, - sym_parameter_list, - STATE(4025), 1, - sym_abstract_function_declarator, - STATE(4419), 1, - sym__abstract_declarator, - STATE(3728), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [88237] = 12, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12289), 1, + anon_sym_GT2, + STATE(7679), 1, + aux_sym_template_argument_list_repeat1, + [262869] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12291), 1, + anon_sym_DQUOTE, + ACTIONS(12293), 1, + aux_sym_string_literal_token1, + ACTIONS(12295), 1, + sym_escape_sequence, + STATE(7235), 1, + aux_sym_string_literal_repeat1, + [262885] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2381), 1, - anon_sym_AMP_AMP, - ACTIONS(2383), 1, - anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6297), 1, anon_sym_LBRACE, - ACTIONS(6015), 1, - anon_sym_LBRACK, - STATE(2681), 1, - sym_compound_statement, - STATE(3341), 1, - sym_parameter_list, - STATE(4121), 1, - sym_abstract_function_declarator, - STATE(4419), 1, - sym__abstract_declarator, - STATE(3728), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [88277] = 13, + STATE(3852), 1, + sym_field_declaration_list, + STATE(8077), 1, + sym_base_class_clause, + [262901] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6291), 1, anon_sym_LBRACE, - ACTIONS(3816), 1, + STATE(2675), 1, + sym_field_declaration_list, + STATE(8339), 1, + sym_base_class_clause, + [262917] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6499), 1, + ACTIONS(12297), 1, anon_sym_EQ, - ACTIONS(6503), 1, - anon_sym_LPAREN2, - ACTIONS(6505), 1, - anon_sym_SEMI, - ACTIONS(6507), 1, - anon_sym_COLON, - STATE(2694), 1, - sym_parameter_list, - STATE(4187), 1, - aux_sym_declaration_repeat1, - STATE(3716), 2, + STATE(7457), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4755), 2, - sym_argument_list, - sym_initializer_list, - [88319] = 12, + [262931] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2381), 1, - anon_sym_AMP_AMP, - ACTIONS(2383), 1, - anon_sym_AMP, - ACTIONS(6015), 1, - anon_sym_LBRACK, - ACTIONS(6509), 1, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6275), 1, anon_sym_LBRACE, - STATE(2373), 1, - sym_compound_statement, - STATE(3341), 1, - sym_parameter_list, - STATE(4111), 1, - sym_abstract_function_declarator, - STATE(4419), 1, - sym__abstract_declarator, - STATE(3728), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [88359] = 15, + STATE(4943), 1, + sym_field_declaration_list, + STATE(8195), 1, + sym_base_class_clause, + [262947] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6443), 1, - anon_sym_TILDE, - ACTIONS(6511), 1, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(4945), 1, + sym_field_declaration_list, + STATE(8199), 1, + sym_base_class_clause, + [262963] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11043), 1, sym_identifier, - ACTIONS(6513), 1, - anon_sym_COLON_COLON, - ACTIONS(6515), 1, - anon_sym_template, - ACTIONS(6517), 1, - anon_sym_operator, - STATE(1283), 1, - sym_qualified_type_identifier, - STATE(1291), 1, - sym_template_type, - STATE(1306), 1, - sym_dependent_type_identifier, - STATE(2173), 1, - sym_template_function, - STATE(2174), 1, - sym_destructor_name, - STATE(2175), 1, - sym_dependent_identifier, - STATE(2177), 1, - sym_qualified_identifier, - STATE(2181), 1, - sym_operator_name, - STATE(3511), 1, - sym__scope_resolution, - [88405] = 9, + ACTIONS(12299), 1, + aux_sym_preproc_if_token2, + STATE(7331), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [262977] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12301), 1, + anon_sym_DQUOTE, + ACTIONS(12303), 1, + aux_sym_string_literal_token1, + ACTIONS(12305), 1, + sym_escape_sequence, + STATE(7385), 1, + aux_sym_string_literal_repeat1, + [262993] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 1, - anon_sym_AMP, - ACTIONS(3749), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4138), 1, + ACTIONS(6275), 1, anon_sym_LBRACE, - STATE(3809), 1, + STATE(4762), 1, sym_field_declaration_list, - STATE(4008), 1, - sym_virtual_specifier, - STATE(4468), 1, + STATE(8208), 1, sym_base_class_clause, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3493), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_EQ, - [88439] = 9, + [263009] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12307), 1, + anon_sym_DQUOTE, + ACTIONS(12309), 1, + aux_sym_string_literal_token1, + ACTIONS(12311), 1, + sym_escape_sequence, + STATE(7403), 1, + aux_sym_string_literal_repeat1, + [263025] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3749), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4138), 1, + ACTIONS(6285), 1, anon_sym_LBRACE, - STATE(3808), 1, + STATE(3065), 1, sym_field_declaration_list, - STATE(4038), 1, - sym_virtual_specifier, - STATE(4465), 1, + STATE(7934), 1, sym_base_class_clause, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3438), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_EQ, - [88473] = 13, + [263041] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6285), 1, + anon_sym_LBRACE, + STATE(3066), 1, + sym_field_declaration_list, + STATE(8065), 1, + sym_base_class_clause, + [263057] = 4, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12313), 1, + anon_sym_SQUOTE, + STATE(7504), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12082), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [263071] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12096), 1, + aux_sym_string_literal_token1, + ACTIONS(12098), 1, + sym_escape_sequence, + ACTIONS(12315), 1, + anon_sym_DQUOTE, + STATE(7267), 1, + aux_sym_string_literal_repeat1, + [263087] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12317), 1, + anon_sym_COMMA, + STATE(7366), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(12320), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [263101] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6437), 1, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6257), 1, anon_sym_LBRACE, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(6491), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6499), 1, - anon_sym_EQ, - ACTIONS(6519), 1, + STATE(2511), 1, + sym_field_declaration_list, + STATE(7970), 1, + sym_base_class_clause, + [263117] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(5074), 1, + anon_sym_LT, + ACTIONS(12322), 1, anon_sym_SEMI, - STATE(1205), 1, - sym_compound_statement, - STATE(2751), 1, - sym_parameter_list, - STATE(4414), 1, - aux_sym_declaration_repeat1, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4755), 2, - sym_argument_list, - sym_initializer_list, - [88515] = 13, + STATE(917), 1, + sym_template_argument_list, + [263133] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12096), 1, + aux_sym_string_literal_token1, + ACTIONS(12098), 1, + sym_escape_sequence, + ACTIONS(12324), 1, + anon_sym_DQUOTE, + STATE(7267), 1, + aux_sym_string_literal_repeat1, + [263149] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, + ACTIONS(4990), 1, anon_sym_LBRACE, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6499), 1, - anon_sym_EQ, - ACTIONS(6503), 1, - anon_sym_LPAREN2, - ACTIONS(6505), 1, - anon_sym_SEMI, - ACTIONS(6521), 1, + ACTIONS(5300), 1, anon_sym_COLON, - STATE(2694), 1, - sym_parameter_list, - STATE(4187), 1, - aux_sym_declaration_repeat1, - STATE(3716), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4755), 2, - sym_argument_list, - sym_initializer_list, - [88557] = 6, + STATE(1407), 1, + sym_field_declaration_list, + STATE(8182), 1, + sym_base_class_clause, + [263165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(6523), 1, - anon_sym_LT, - STATE(3586), 1, - sym_template_argument_list, - ACTIONS(3356), 2, - anon_sym_AMP, + ACTIONS(12326), 1, + anon_sym___except, + ACTIONS(12328), 1, + anon_sym___finally, + STATE(343), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [263179] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(2423), 9, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(6285), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - [88585] = 13, + STATE(3068), 1, + sym_field_declaration_list, + STATE(8073), 1, + sym_base_class_clause, + [263195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(6491), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6499), 1, - anon_sym_EQ, - ACTIONS(6525), 1, - anon_sym_SEMI, - ACTIONS(6527), 1, + ACTIONS(10813), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(2854), 1, sym_compound_statement, - STATE(2751), 1, - sym_parameter_list, - STATE(4308), 1, - aux_sym_declaration_repeat1, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4755), 2, - sym_argument_list, - sym_initializer_list, - [88627] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(6491), 1, + ACTIONS(10660), 2, anon_sym_LPAREN2, - ACTIONS(6497), 1, anon_sym_LBRACK, - ACTIONS(6499), 1, - anon_sym_EQ, - ACTIONS(6529), 1, - anon_sym_SEMI, - ACTIONS(6531), 1, + [263209] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6285), 1, anon_sym_LBRACE, - STATE(526), 1, - sym_compound_statement, - STATE(2751), 1, - sym_parameter_list, - STATE(4281), 1, - aux_sym_declaration_repeat1, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4755), 2, - sym_argument_list, - sym_initializer_list, - [88669] = 13, + STATE(3069), 1, + sym_field_declaration_list, + STATE(8083), 1, + sym_base_class_clause, + [263225] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(6491), 1, + ACTIONS(12121), 1, anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6499), 1, - anon_sym_EQ, - ACTIONS(6533), 1, - anon_sym_SEMI, - ACTIONS(6535), 1, + ACTIONS(12330), 1, anon_sym_LBRACE, - STATE(559), 1, - sym_compound_statement, - STATE(2751), 1, - sym_parameter_list, - STATE(4249), 1, - aux_sym_declaration_repeat1, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4755), 2, - sym_argument_list, - sym_initializer_list, - [88711] = 6, + STATE(5903), 1, + sym_requirement_seq, + STATE(8324), 1, + sym_requires_parameter_list, + [263241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(6523), 1, - anon_sym_LT, - STATE(3586), 1, - sym_template_argument_list, - ACTIONS(2459), 2, - anon_sym_AMP, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(2466), 9, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(6315), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - [88739] = 13, + STATE(5266), 1, + sym_field_declaration_list, + STATE(8068), 1, + sym_base_class_clause, + [263257] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, + ACTIONS(9913), 1, anon_sym_LBRACE, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6499), 1, - anon_sym_EQ, - ACTIONS(6503), 1, + ACTIONS(12121), 1, anon_sym_LPAREN2, - ACTIONS(6505), 1, - anon_sym_SEMI, - ACTIONS(6537), 1, + STATE(4573), 1, + sym_requirement_seq, + STATE(8019), 1, + sym_requires_parameter_list, + [263273] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, anon_sym_COLON, - STATE(2694), 1, - sym_parameter_list, - STATE(4187), 1, - aux_sym_declaration_repeat1, - STATE(3716), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4755), 2, - sym_argument_list, - sym_initializer_list, - [88781] = 15, + ACTIONS(6297), 1, + anon_sym_LBRACE, + STATE(3818), 1, + sym_field_declaration_list, + STATE(8056), 1, + sym_base_class_clause, + [263289] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, - sym_identifier, - ACTIONS(6541), 1, - anon_sym_TILDE, - ACTIONS(6543), 1, - anon_sym_COLON_COLON, - ACTIONS(6545), 1, - anon_sym_template, - ACTIONS(6547), 1, - anon_sym_operator, - STATE(1283), 1, - sym_qualified_type_identifier, - STATE(1291), 1, - sym_template_type, - STATE(1306), 1, - sym_dependent_type_identifier, - STATE(2121), 1, - sym_operator_name, - STATE(2127), 1, - sym_qualified_identifier, - STATE(2132), 1, - sym_dependent_identifier, - STATE(2133), 1, - sym_destructor_name, - STATE(2135), 1, - sym_template_function, - STATE(3522), 1, - sym__scope_resolution, - [88827] = 13, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2522), 1, + sym_field_declaration_list, + STATE(7971), 1, + sym_base_class_clause, + [263305] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6431), 1, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6285), 1, anon_sym_LBRACE, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(6491), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6499), 1, - anon_sym_EQ, - ACTIONS(6549), 1, - anon_sym_SEMI, - STATE(1004), 1, - sym_compound_statement, - STATE(2751), 1, - sym_parameter_list, - STATE(4432), 1, - aux_sym_declaration_repeat1, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4755), 2, - sym_argument_list, - sym_initializer_list, - [88869] = 15, + STATE(3081), 1, + sym_field_declaration_list, + STATE(8221), 1, + sym_base_class_clause, + [263321] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12129), 1, + anon_sym_LPAREN, + ACTIONS(12332), 1, + aux_sym_preproc_include_token2, + ACTIONS(12334), 1, + sym_preproc_arg, + STATE(8391), 1, + sym_preproc_params, + [263337] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6443), 1, - anon_sym_TILDE, - ACTIONS(6517), 1, - anon_sym_operator, - ACTIONS(6551), 1, - sym_identifier, - ACTIONS(6553), 1, - anon_sym_COLON_COLON, - ACTIONS(6555), 1, - anon_sym_template, - STATE(2124), 1, - sym_qualified_type_identifier, - STATE(2173), 1, - sym_template_function, - STATE(2174), 1, - sym_destructor_name, - STATE(2175), 1, - sym_dependent_identifier, - STATE(2177), 1, - sym_qualified_identifier, - STATE(2181), 1, - sym_operator_name, - STATE(2254), 1, - sym_dependent_type_identifier, - STATE(2260), 1, - sym_template_type, - STATE(3524), 1, - sym__scope_resolution, - [88915] = 9, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(5285), 1, + sym_field_declaration_list, + STATE(8072), 1, + sym_base_class_clause, + [263353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 1, - anon_sym_AMP, - ACTIONS(3749), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4138), 1, + ACTIONS(6315), 1, anon_sym_LBRACE, - STATE(3824), 1, + STATE(5250), 1, sym_field_declaration_list, - STATE(4044), 1, - sym_virtual_specifier, - STATE(4494), 1, + STATE(8100), 1, sym_base_class_clause, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3485), 6, + [263369] = 4, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12336), 1, + anon_sym_SQUOTE, + STATE(7504), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12082), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [263383] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12096), 1, + aux_sym_string_literal_token1, + ACTIONS(12098), 1, + sym_escape_sequence, + ACTIONS(12338), 1, + anon_sym_DQUOTE, + STATE(7267), 1, + aux_sym_string_literal_repeat1, + [263399] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12129), 1, + anon_sym_LPAREN, + ACTIONS(12340), 1, + aux_sym_preproc_include_token2, + ACTIONS(12342), 1, + sym_preproc_arg, + STATE(7999), 1, + sym_preproc_params, + [263415] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10817), 1, + anon_sym_LBRACE, + STATE(946), 1, + sym_compound_statement, + ACTIONS(10660), 2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_EQ, - [88949] = 13, + [263429] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12344), 1, + anon_sym_DQUOTE, + ACTIONS(12346), 1, + aux_sym_string_literal_token1, + ACTIONS(12348), 1, + sym_escape_sequence, + STATE(7241), 1, + aux_sym_string_literal_repeat1, + [263445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6489), 1, + ACTIONS(12209), 1, anon_sym_COMMA, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6499), 1, - anon_sym_EQ, - ACTIONS(6503), 1, - anon_sym_LPAREN2, - ACTIONS(6505), 1, - anon_sym_SEMI, - ACTIONS(6557), 1, + STATE(7236), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(12350), 2, + anon_sym_RPAREN, anon_sym_COLON, - STATE(2694), 1, - sym_parameter_list, - STATE(4187), 1, - aux_sym_declaration_repeat1, - STATE(3716), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4755), 2, - sym_argument_list, - sym_initializer_list, - [88991] = 13, + [263459] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, + ACTIONS(4990), 1, anon_sym_LBRACE, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6499), 1, - anon_sym_EQ, - ACTIONS(6503), 1, - anon_sym_LPAREN2, - ACTIONS(6505), 1, - anon_sym_SEMI, - ACTIONS(6559), 1, + ACTIONS(5300), 1, anon_sym_COLON, - STATE(2694), 1, - sym_parameter_list, - STATE(4187), 1, - aux_sym_declaration_repeat1, - STATE(3716), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4755), 2, - sym_argument_list, - sym_initializer_list, - [89033] = 13, + STATE(1381), 1, + sym_field_declaration_list, + STATE(8032), 1, + sym_base_class_clause, + [263475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6423), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(6491), 1, + ACTIONS(8450), 1, anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6499), 1, - anon_sym_EQ, - ACTIONS(6561), 1, - anon_sym_SEMI, - STATE(1171), 1, - sym_compound_statement, - STATE(2751), 1, - sym_parameter_list, - STATE(4290), 1, - aux_sym_declaration_repeat1, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4755), 2, + STATE(7867), 2, sym_argument_list, sym_initializer_list, - [89075] = 13, + [263489] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, + ACTIONS(3919), 1, anon_sym_LBRACE, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6499), 1, - anon_sym_EQ, - ACTIONS(6503), 1, + ACTIONS(7383), 1, anon_sym_LPAREN2, - ACTIONS(6505), 1, - anon_sym_SEMI, - ACTIONS(6563), 1, - anon_sym_COLON, - STATE(2694), 1, - sym_parameter_list, - STATE(4187), 1, - aux_sym_declaration_repeat1, - STATE(3716), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4755), 2, + STATE(3777), 1, sym_argument_list, + STATE(4228), 1, sym_initializer_list, - [89117] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2381), 1, - anon_sym_AMP_AMP, - ACTIONS(2383), 1, - anon_sym_AMP, - ACTIONS(6015), 1, - anon_sym_LBRACK, - ACTIONS(6565), 1, - anon_sym_LBRACE, - STATE(3018), 1, - sym_compound_statement, - STATE(3341), 1, - sym_parameter_list, - STATE(4007), 1, - sym_abstract_function_declarator, - STATE(4419), 1, - sym__abstract_declarator, - STATE(3728), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [89157] = 9, + [263505] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3423), 1, - anon_sym_AMP, - ACTIONS(3749), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4138), 1, + ACTIONS(6285), 1, anon_sym_LBRACE, - STATE(3830), 1, + STATE(3003), 1, sym_field_declaration_list, - STATE(4055), 1, - sym_virtual_specifier, - STATE(4522), 1, + STATE(8085), 1, sym_base_class_clause, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3425), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_EQ, - [89191] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6541), 1, - anon_sym_TILDE, - ACTIONS(6547), 1, - anon_sym_operator, - ACTIONS(6567), 1, - sym_identifier, - ACTIONS(6569), 1, - anon_sym_COLON_COLON, - ACTIONS(6571), 1, - anon_sym_template, - STATE(1283), 1, - sym_qualified_type_identifier, - STATE(1291), 1, - sym_template_type, - STATE(1306), 1, - sym_dependent_type_identifier, - STATE(2121), 1, - sym_operator_name, - STATE(2127), 1, - sym_qualified_identifier, - STATE(2132), 1, - sym_dependent_identifier, - STATE(2133), 1, - sym_destructor_name, - STATE(2135), 1, - sym_template_function, - STATE(3532), 1, - sym__scope_resolution, - [89237] = 15, - ACTIONS(3), 1, + [263521] = 4, + ACTIONS(10249), 1, sym_comment, - ACTIONS(6481), 1, - anon_sym_TILDE, - ACTIONS(6487), 1, - anon_sym_operator, - ACTIONS(6573), 1, - sym_identifier, - ACTIONS(6575), 1, - anon_sym_COLON_COLON, - ACTIONS(6577), 1, - anon_sym_template, - STATE(2367), 1, - sym_operator_name, - STATE(2368), 1, - sym_qualified_identifier, - STATE(2369), 1, - sym_dependent_identifier, - STATE(2370), 1, - sym_destructor_name, - STATE(2372), 1, - sym_template_function, - STATE(2425), 1, - sym_template_type, - STATE(2450), 1, - sym_dependent_type_identifier, - STATE(2496), 1, - sym_qualified_type_identifier, - STATE(3533), 1, - sym__scope_resolution, - [89283] = 15, + ACTIONS(12352), 1, + anon_sym_SQUOTE, + STATE(7504), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12082), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [263535] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 1, - anon_sym_TILDE, - ACTIONS(6547), 1, - anon_sym_operator, - ACTIONS(6579), 1, - sym_identifier, - ACTIONS(6581), 1, - anon_sym_COLON_COLON, - ACTIONS(6583), 1, - anon_sym_template, - STATE(2121), 1, - sym_operator_name, - STATE(2124), 1, - sym_qualified_type_identifier, - STATE(2127), 1, - sym_qualified_identifier, - STATE(2132), 1, - sym_dependent_identifier, - STATE(2133), 1, - sym_destructor_name, - STATE(2135), 1, - sym_template_function, - STATE(2254), 1, - sym_dependent_type_identifier, - STATE(2260), 1, - sym_template_type, - STATE(3534), 1, - sym__scope_resolution, - [89329] = 15, + ACTIONS(12121), 1, + anon_sym_LPAREN2, + ACTIONS(12354), 1, + anon_sym_LBRACE, + STATE(6189), 1, + sym_requirement_seq, + STATE(7939), 1, + sym_requires_parameter_list, + [263551] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 1, - anon_sym_TILDE, - ACTIONS(6547), 1, - anon_sym_operator, - ACTIONS(6585), 1, - sym_identifier, - ACTIONS(6587), 1, - anon_sym_COLON_COLON, - ACTIONS(6589), 1, - anon_sym_template, - STATE(1283), 1, - sym_qualified_type_identifier, - STATE(1291), 1, - sym_template_type, - STATE(1306), 1, - sym_dependent_type_identifier, - STATE(2121), 1, - sym_operator_name, - STATE(2127), 1, - sym_qualified_identifier, - STATE(2132), 1, - sym_dependent_identifier, - STATE(2133), 1, - sym_destructor_name, - STATE(2135), 1, - sym_template_function, - STATE(3535), 1, - sym__scope_resolution, - [89375] = 15, + ACTIONS(3879), 1, + anon_sym_LBRACE, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + STATE(3979), 1, + sym_initializer_list, + STATE(4002), 1, + sym_argument_list, + [263567] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2363), 1, - anon_sym_COLON_COLON, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(6591), 1, - sym_identifier, - ACTIONS(6593), 1, - anon_sym_template, - STATE(1283), 1, - sym_qualified_type_identifier, - STATE(1291), 1, - sym_template_type, - STATE(1306), 1, - sym_dependent_type_identifier, - STATE(2173), 1, - sym_template_function, - STATE(2174), 1, - sym_destructor_name, - STATE(2175), 1, - sym_dependent_identifier, - STATE(2177), 1, - sym_qualified_identifier, - STATE(2181), 1, - sym_operator_name, - STATE(3536), 1, - sym__scope_resolution, - [89421] = 9, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(5300), 1, + anon_sym_COLON, + STATE(1408), 1, + sym_field_declaration_list, + STATE(8408), 1, + sym_base_class_clause, + [263583] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, - anon_sym_AMP, - ACTIONS(3749), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(4138), 1, + ACTIONS(6297), 1, anon_sym_LBRACE, - STATE(3827), 1, + STATE(3820), 1, sym_field_declaration_list, - STATE(4049), 1, - sym_virtual_specifier, - STATE(4509), 1, + STATE(8057), 1, sym_base_class_clause, - ACTIONS(3810), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3473), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_EQ, - [89455] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4439), 1, - anon_sym_COLON_COLON, - ACTIONS(6459), 1, - sym_identifier, - ACTIONS(6461), 1, - anon_sym_template, - STATE(2173), 1, - sym_template_function, - STATE(2174), 1, - sym_destructor_name, - STATE(2175), 1, - sym_dependent_identifier, - STATE(2177), 1, - sym_qualified_identifier, - STATE(2181), 1, - sym_operator_name, - STATE(3538), 1, - sym__scope_resolution, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - [89496] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3856), 1, - anon_sym_LPAREN2, - STATE(2165), 1, - sym_argument_list, - ACTIONS(3452), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3454), 9, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - [89521] = 12, + [263599] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1461), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(6491), 1, + STATE(946), 1, + sym_compound_statement, + ACTIONS(10660), 2, anon_sym_LPAREN2, - ACTIONS(6497), 1, anon_sym_LBRACK, - ACTIONS(6499), 1, - anon_sym_EQ, - ACTIONS(6595), 1, - anon_sym_SEMI, - STATE(2751), 1, - sym_parameter_list, - STATE(4411), 1, - aux_sym_declaration_repeat1, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4755), 2, - sym_argument_list, - sym_initializer_list, - [89560] = 12, + [263613] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1461), 1, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6263), 1, anon_sym_LBRACE, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(6491), 1, - anon_sym_LPAREN2, - ACTIONS(6493), 1, - anon_sym_SEMI, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6499), 1, - anon_sym_EQ, - STATE(2751), 1, - sym_parameter_list, - STATE(4363), 1, - aux_sym_declaration_repeat1, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4755), 2, - sym_argument_list, - sym_initializer_list, - [89599] = 10, + STATE(3370), 1, + sym_field_declaration_list, + STATE(8338), 1, + sym_base_class_clause, + [263629] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(5491), 1, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6263), 1, anon_sym_LBRACE, - ACTIONS(6015), 1, - anon_sym_LBRACK, - ACTIONS(6212), 1, - anon_sym_STAR, - ACTIONS(6214), 1, - anon_sym_AMP_AMP, - ACTIONS(6216), 1, - anon_sym_AMP, - STATE(3341), 1, - sym_parameter_list, - STATE(4179), 1, - sym__abstract_declarator, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [89634] = 9, - ACTIONS(3), 1, + STATE(3384), 1, + sym_field_declaration_list, + STATE(8340), 1, + sym_base_class_clause, + [263645] = 4, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12356), 1, + anon_sym_SQUOTE, + STATE(7504), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12082), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [263659] = 5, + ACTIONS(10249), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4194), 1, - anon_sym_COLON_COLON, - ACTIONS(6597), 1, - sym_identifier, - STATE(2255), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3876), 1, - sym__scope_resolution, - STATE(2590), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3232), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [89667] = 9, + ACTIONS(12096), 1, + aux_sym_string_literal_token1, + ACTIONS(12098), 1, + sym_escape_sequence, + ACTIONS(12358), 1, + anon_sym_DQUOTE, + STATE(7267), 1, + aux_sym_string_literal_repeat1, + [263675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2319), 1, - anon_sym_COLON_COLON, - ACTIONS(6599), 1, - sym_identifier, - STATE(1338), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3912), 1, - sym__scope_resolution, - STATE(1310), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2321), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [89700] = 12, + ACTIONS(10828), 1, + anon_sym_LBRACE, + STATE(3684), 1, + sym_compound_statement, + ACTIONS(10660), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [263689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1461), 1, + ACTIONS(10836), 1, anon_sym_LBRACE, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(6491), 1, + STATE(4224), 1, + sym_compound_statement, + ACTIONS(10660), 2, anon_sym_LPAREN2, - ACTIONS(6497), 1, anon_sym_LBRACK, - ACTIONS(6499), 1, - anon_sym_EQ, - ACTIONS(6533), 1, - anon_sym_SEMI, - STATE(2751), 1, - sym_parameter_list, - STATE(4249), 1, - aux_sym_declaration_repeat1, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4755), 2, - sym_argument_list, - sym_initializer_list, - [89739] = 13, + [263703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(6601), 1, + ACTIONS(12360), 1, sym_identifier, - ACTIONS(6603), 1, - anon_sym_COLON_COLON, - ACTIONS(6605), 1, - anon_sym_template, - STATE(2173), 1, - sym_template_function, - STATE(2174), 1, - sym_destructor_name, - STATE(2175), 1, - sym_dependent_identifier, - STATE(2177), 1, - sym_qualified_identifier, - STATE(2181), 1, - sym_operator_name, - STATE(3546), 1, - sym__scope_resolution, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - [89780] = 9, + ACTIONS(12362), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [263715] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4136), 1, - anon_sym_COLON_COLON, - ACTIONS(6597), 1, - sym_identifier, - STATE(3478), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3878), 1, - sym__scope_resolution, - STATE(3818), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(5071), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [89813] = 9, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(5272), 1, + sym_field_declaration_list, + STATE(8176), 1, + sym_base_class_clause, + [263731] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4176), 1, - anon_sym_COLON_COLON, - ACTIONS(6607), 1, - sym_identifier, - STATE(1971), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3897), 1, - sym__scope_resolution, - STATE(2081), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(5366), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [89846] = 6, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(5277), 1, + sym_field_declaration_list, + STATE(8190), 1, + sym_base_class_clause, + [263747] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(3354), 1, - anon_sym_LT, - STATE(3653), 1, - sym_template_argument_list, - ACTIONS(3863), 2, - anon_sym_LBRACK, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(3877), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(6315), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [89873] = 9, + STATE(5296), 1, + sym_field_declaration_list, + STATE(8192), 1, + sym_base_class_clause, + [263763] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4156), 1, - anon_sym_COLON_COLON, - ACTIONS(6609), 1, - sym_identifier, - STATE(2255), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3918), 1, - sym__scope_resolution, - STATE(2590), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3232), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [89906] = 6, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(5308), 1, + sym_field_declaration_list, + STATE(8207), 1, + sym_base_class_clause, + [263779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(3354), 1, - anon_sym_LT, - STATE(3653), 1, - sym_template_argument_list, - ACTIONS(2468), 2, + ACTIONS(10824), 1, + anon_sym_LBRACE, + STATE(3657), 1, + sym_compound_statement, + ACTIONS(10660), 2, + anon_sym_LPAREN2, anon_sym_LBRACK, + [263793] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(2461), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(6257), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [89933] = 13, + STATE(5453), 1, + sym_field_declaration_list, + STATE(8303), 1, + sym_base_class_clause, + [263809] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4429), 1, - anon_sym_COLON_COLON, - ACTIONS(6611), 1, - sym_identifier, - ACTIONS(6613), 1, - anon_sym_template, - STATE(3552), 1, - sym__scope_resolution, - STATE(3678), 1, - sym_destructor_name, - STATE(3679), 1, - sym_dependent_identifier, - STATE(3680), 1, - sym_qualified_identifier, - STATE(3681), 1, - sym_operator_name, - STATE(3686), 1, - sym_template_function, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - [89974] = 13, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(5456), 1, + sym_field_declaration_list, + STATE(8305), 1, + sym_base_class_clause, + [263825] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1461), 1, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6315), 1, anon_sym_LBRACE, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(6491), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6505), 1, - anon_sym_SEMI, - ACTIONS(6615), 1, - anon_sym_EQ, - STATE(2751), 1, - sym_parameter_list, - STATE(4186), 1, - sym_initializer_list, - STATE(4187), 1, - aux_sym_declaration_repeat1, - STATE(4755), 1, - sym_argument_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [90015] = 9, + STATE(5209), 1, + sym_field_declaration_list, + STATE(8227), 1, + sym_base_class_clause, + [263841] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(6617), 1, - sym_identifier, - STATE(2004), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3902), 1, - sym__scope_resolution, - STATE(2310), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(5326), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [90048] = 9, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(11113), 1, + anon_sym_COLON, + STATE(7537), 1, + sym_compound_statement, + STATE(8039), 1, + sym_field_initializer_list, + [263857] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2319), 1, - anon_sym_COLON_COLON, - ACTIONS(6599), 1, - sym_identifier, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3912), 1, - sym__scope_resolution, - STATE(1310), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [90081] = 10, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12364), 1, + anon_sym_GT2, + STATE(7547), 1, + aux_sym_template_argument_list_repeat1, + [263873] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(5024), 1, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6297), 1, + anon_sym_LBRACE, + STATE(3821), 1, + sym_field_declaration_list, + STATE(8060), 1, + sym_base_class_clause, + [263889] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10824), 1, anon_sym_LBRACE, - ACTIONS(6015), 1, + STATE(3526), 1, + sym_compound_statement, + ACTIONS(10660), 2, + anon_sym_LPAREN2, anon_sym_LBRACK, - ACTIONS(6212), 1, - anon_sym_STAR, - ACTIONS(6214), 1, - anon_sym_AMP_AMP, - ACTIONS(6216), 1, - anon_sym_AMP, - STATE(3341), 1, - sym_parameter_list, - STATE(4134), 1, - sym__abstract_declarator, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [90116] = 9, + [263903] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4142), 1, + ACTIONS(3108), 1, anon_sym_COLON_COLON, - ACTIONS(6597), 1, - sym_identifier, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3923), 1, - sym__scope_resolution, - STATE(2454), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [90149] = 9, + ACTIONS(5074), 1, + anon_sym_LT, + ACTIONS(12366), 1, + anon_sym_SEMI, + STATE(917), 1, + sym_template_argument_list, + [263919] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2385), 1, - anon_sym_COLON_COLON, - ACTIONS(6599), 1, - sym_identifier, - STATE(1338), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3908), 1, - sym__scope_resolution, - STATE(1310), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2321), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [90182] = 9, + ACTIONS(4990), 1, + anon_sym_LBRACE, + ACTIONS(5300), 1, + anon_sym_COLON, + STATE(1574), 1, + sym_field_declaration_list, + STATE(8005), 1, + sym_base_class_clause, + [263935] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2385), 1, - anon_sym_COLON_COLON, - ACTIONS(6599), 1, - sym_identifier, - STATE(1300), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3908), 1, - sym__scope_resolution, - STATE(1310), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [90215] = 13, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12368), 1, + anon_sym_GT2, + STATE(7593), 1, + aux_sym_template_argument_list_repeat1, + [263951] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1925), 1, - anon_sym_TILDE, - ACTIONS(2367), 1, - anon_sym_operator, - ACTIONS(4613), 1, + ACTIONS(3108), 1, anon_sym_COLON_COLON, - ACTIONS(6619), 1, - sym_identifier, - ACTIONS(6621), 1, - anon_sym_template, - STATE(2173), 1, - sym_template_function, - STATE(2174), 1, - sym_destructor_name, - STATE(2175), 1, - sym_dependent_identifier, - STATE(2177), 1, - sym_qualified_identifier, - STATE(2181), 1, - sym_operator_name, - STATE(3560), 1, - sym__scope_resolution, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - [90256] = 12, + ACTIONS(5074), 1, + anon_sym_LT, + ACTIONS(12370), 1, + anon_sym_SEMI, + STATE(917), 1, + sym_template_argument_list, + [263967] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1461), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(6491), 1, + STATE(950), 1, + sym_compound_statement, + ACTIONS(10660), 2, anon_sym_LPAREN2, - ACTIONS(6497), 1, anon_sym_LBRACK, - ACTIONS(6499), 1, - anon_sym_EQ, - ACTIONS(6525), 1, - anon_sym_SEMI, - STATE(2751), 1, - sym_parameter_list, - STATE(4308), 1, - aux_sym_declaration_repeat1, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4755), 2, - sym_argument_list, - sym_initializer_list, - [90295] = 10, + [263981] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(5445), 1, + ACTIONS(4990), 1, anon_sym_LBRACE, - ACTIONS(6015), 1, - anon_sym_LBRACK, - ACTIONS(6212), 1, - anon_sym_STAR, - ACTIONS(6214), 1, - anon_sym_AMP_AMP, - ACTIONS(6216), 1, - anon_sym_AMP, - STATE(3341), 1, - sym_parameter_list, - STATE(4147), 1, - sym__abstract_declarator, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [90330] = 12, + ACTIONS(5300), 1, + anon_sym_COLON, + STATE(1581), 1, + sym_field_declaration_list, + STATE(8332), 1, + sym_base_class_clause, + [263997] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1461), 1, + ACTIONS(3331), 1, anon_sym_LBRACE, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(6491), 1, + ACTIONS(6589), 1, anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6499), 1, - anon_sym_EQ, - ACTIONS(6529), 1, - anon_sym_SEMI, - STATE(2751), 1, - sym_parameter_list, - STATE(4281), 1, - aux_sym_declaration_repeat1, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4755), 2, - sym_argument_list, + STATE(2877), 1, sym_initializer_list, - [90369] = 9, + STATE(2921), 1, + sym_argument_list, + [264013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4104), 1, - anon_sym_COLON_COLON, - ACTIONS(6623), 1, - sym_identifier, - STATE(2027), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3909), 1, - sym__scope_resolution, - STATE(2454), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [90402] = 11, + ACTIONS(10813), 1, + anon_sym_LBRACE, + STATE(2852), 1, + sym_compound_statement, + ACTIONS(10660), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [264027] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3450), 1, + ACTIONS(12167), 1, + anon_sym_COMMA, + ACTIONS(12372), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12374), 1, anon_sym_LBRACE, - ACTIONS(4118), 1, - sym_identifier, - ACTIONS(4128), 1, - anon_sym_COLON_COLON, - STATE(1302), 1, - sym_template_type, - STATE(1316), 1, - sym_enumerator_list, - STATE(3888), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(6625), 2, - anon_sym_class, - anon_sym_struct, - STATE(3869), 2, - sym__class_name, - sym_qualified_type_identifier, - [90438] = 11, + STATE(7909), 1, + aux_sym_base_class_clause_repeat1, + [264043] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2319), 1, - anon_sym_COLON_COLON, - ACTIONS(3450), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(4118), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(1316), 1, - sym_enumerator_list, - STATE(3912), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(6627), 2, - anon_sym_class, - anon_sym_struct, - STATE(1478), 2, - sym__class_name, - sym_qualified_type_identifier, - [90474] = 11, + ACTIONS(11113), 1, + anon_sym_COLON, + STATE(7854), 1, + sym_compound_statement, + STATE(8105), 1, + sym_field_initializer_list, + [264059] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4174), 1, - sym_identifier, - ACTIONS(4176), 1, - anon_sym_COLON_COLON, - ACTIONS(6629), 1, + ACTIONS(4053), 1, anon_sym_LBRACE, - STATE(2001), 1, - sym_template_type, - STATE(2088), 1, - sym_enumerator_list, - STATE(3897), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(6631), 2, - anon_sym_class, - anon_sym_struct, - STATE(2031), 2, - sym__class_name, - sym_qualified_type_identifier, - [90510] = 11, + ACTIONS(12133), 1, + anon_sym_COLON_COLON, + ACTIONS(12376), 1, + anon_sym_EQ, + STATE(581), 1, + sym_declaration_list, + [264075] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3450), 1, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6297), 1, anon_sym_LBRACE, - ACTIONS(4118), 1, + STATE(3394), 1, + sym_field_declaration_list, + STATE(8061), 1, + sym_base_class_clause, + [264091] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3401), 1, + anon_sym_LT, + ACTIONS(12084), 1, sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - STATE(1302), 1, + STATE(718), 1, + sym_template_parameter_list, + STATE(1309), 1, sym_template_type, - STATE(1316), 1, - sym_enumerator_list, - STATE(3881), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(6633), 2, - anon_sym_class, - anon_sym_struct, - STATE(1468), 2, - sym__class_name, - sym_qualified_type_identifier, - [90546] = 11, + [264107] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12378), 1, + anon_sym_DQUOTE, + ACTIONS(12380), 1, + aux_sym_string_literal_token1, + ACTIONS(12382), 1, + sym_escape_sequence, + STATE(7443), 1, + aux_sym_string_literal_repeat1, + [264123] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3450), 1, + ACTIONS(10802), 1, anon_sym_LBRACE, - ACTIONS(4118), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - STATE(1302), 1, - sym_template_type, - STATE(1316), 1, - sym_enumerator_list, - STATE(3881), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(6635), 2, - anon_sym_class, - anon_sym_struct, - STATE(3307), 2, - sym__class_name, - sym_qualified_type_identifier, - [90582] = 3, + STATE(3882), 1, + sym_compound_statement, + ACTIONS(10660), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [264137] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 2, - anon_sym_AMP, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(2478), 10, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, + ACTIONS(6257), 1, anon_sym_LBRACE, - anon_sym_LBRACK, + STATE(2745), 1, + sym_field_declaration_list, + STATE(8357), 1, + sym_base_class_clause, + [264153] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12384), 1, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - [90602] = 3, + STATE(6165), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [264167] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11671), 1, + anon_sym_EQ, + STATE(7350), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [264181] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12386), 1, + anon_sym_DQUOTE, + ACTIONS(12388), 1, + aux_sym_string_literal_token1, + ACTIONS(12390), 1, + sym_escape_sequence, + STATE(7230), 1, + aux_sym_string_literal_repeat1, + [264197] = 4, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12392), 1, + anon_sym_SQUOTE, + STATE(7504), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12082), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [264211] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(5271), 1, + sym_field_declaration_list, + STATE(8244), 1, + sym_base_class_clause, + [264227] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12394), 1, + anon_sym_GT2, + STATE(7734), 1, + aux_sym_template_argument_list_repeat1, + [264243] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2494), 2, - anon_sym_AMP, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(2496), 10, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, + ACTIONS(6315), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - [90622] = 3, + STATE(5287), 1, + sym_field_declaration_list, + STATE(8254), 1, + sym_base_class_clause, + [264259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2451), 2, - anon_sym_AMP, - anon_sym_COLON, - ACTIONS(2453), 10, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(8945), 1, + anon_sym___attribute, + ACTIONS(8943), 3, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - [90642] = 3, + anon_sym___attribute__, + [264271] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12096), 1, + aux_sym_string_literal_token1, + ACTIONS(12098), 1, + sym_escape_sequence, + ACTIONS(12396), 1, + anon_sym_DQUOTE, + STATE(7267), 1, + aux_sym_string_literal_repeat1, + [264287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2488), 2, - anon_sym_AMP, - anon_sym_COLON, - ACTIONS(2490), 10, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12398), 1, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - [90662] = 3, + STATE(6165), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [264301] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 2, - anon_sym_AMP, - anon_sym_COLON, - ACTIONS(2506), 10, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11620), 1, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - [90682] = 11, + STATE(7435), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [264315] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3110), 1, - anon_sym_COLON_COLON, - ACTIONS(3450), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(4100), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(1316), 1, - sym_enumerator_list, - STATE(3895), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(6637), 2, - anon_sym_class, - anon_sym_struct, - STATE(3219), 2, - sym__class_name, - sym_qualified_type_identifier, - [90718] = 3, + STATE(952), 1, + sym_compound_statement, + ACTIONS(10660), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [264329] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 2, - anon_sym_AMP, - anon_sym_COLON, - ACTIONS(2510), 10, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(12400), 1, anon_sym_SEMI, - anon_sym_COLON_COLON, + ACTIONS(12402), 1, + anon_sym_DASH_GT, + ACTIONS(12404), 1, + anon_sym_noexcept, + STATE(8559), 1, + sym_trailing_return_type, + [264345] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12167), 1, + anon_sym_COMMA, + ACTIONS(12406), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12408), 1, anon_sym_LBRACE, - anon_sym_LBRACK, + STATE(7712), 1, + aux_sym_base_class_clause_repeat1, + [264361] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12129), 1, + anon_sym_LPAREN, + ACTIONS(12410), 1, + aux_sym_preproc_include_token2, + ACTIONS(12412), 1, + sym_preproc_arg, + STATE(8211), 1, + sym_preproc_params, + [264377] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12414), 1, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - [90738] = 3, + STATE(6165), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [264391] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 2, - anon_sym_AMP, - anon_sym_COLON, - ACTIONS(2449), 10, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11624), 1, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - [90758] = 11, + STATE(7444), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [264405] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4134), 1, - sym_identifier, - ACTIONS(4136), 1, - anon_sym_COLON_COLON, - ACTIONS(6639), 1, - anon_sym_LBRACE, - STATE(3592), 1, - sym_template_type, - STATE(3860), 1, - sym_enumerator_list, - STATE(3878), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(6641), 2, - anon_sym_class, - anon_sym_struct, - STATE(3610), 2, - sym__class_name, - sym_qualified_type_identifier, - [90794] = 11, + ACTIONS(12416), 1, + anon_sym_COMMA, + STATE(7452), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(12419), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [264419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4122), 1, - sym_identifier, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(6643), 1, + ACTIONS(10794), 1, anon_sym_LBRACE, - STATE(2052), 1, - sym_template_type, - STATE(2284), 1, - sym_enumerator_list, - STATE(3902), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(6645), 2, - anon_sym_class, - anon_sym_struct, - STATE(2220), 2, - sym__class_name, - sym_qualified_type_identifier, - [90830] = 11, + STATE(4539), 1, + sym_compound_statement, + ACTIONS(10660), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [264433] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4140), 1, - sym_identifier, - ACTIONS(4142), 1, + ACTIONS(3108), 1, anon_sym_COLON_COLON, - ACTIONS(6415), 1, - anon_sym_LBRACE, - STATE(2246), 1, - sym_template_type, - STATE(2387), 1, - sym_enumerator_list, - STATE(3923), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(6647), 2, - anon_sym_class, - anon_sym_struct, - STATE(3424), 2, - sym__class_name, - sym_qualified_type_identifier, - [90866] = 11, + ACTIONS(5074), 1, + anon_sym_LT, + ACTIONS(12421), 1, + anon_sym_SEMI, + STATE(917), 1, + sym_template_argument_list, + [264449] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4140), 1, - sym_identifier, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - ACTIONS(6415), 1, - anon_sym_LBRACE, - STATE(2246), 1, - sym_template_type, - STATE(2387), 1, - sym_enumerator_list, - STATE(3923), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(6649), 2, - anon_sym_class, - anon_sym_struct, - STATE(3750), 2, - sym__class_name, - sym_qualified_type_identifier, - [90902] = 11, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12423), 1, + anon_sym_GT2, + STATE(7523), 1, + aux_sym_template_argument_list_repeat1, + [264465] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4154), 1, - sym_identifier, - ACTIONS(4156), 1, - anon_sym_COLON_COLON, - ACTIONS(6411), 1, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6275), 1, anon_sym_LBRACE, - STATE(2424), 1, - sym_template_type, - STATE(2613), 1, - sym_enumerator_list, - STATE(3918), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(6651), 2, - anon_sym_class, - anon_sym_struct, - STATE(2669), 2, - sym__class_name, - sym_qualified_type_identifier, - [90938] = 11, + STATE(5078), 1, + sym_field_declaration_list, + STATE(8256), 1, + sym_base_class_clause, + [264481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2385), 1, - anon_sym_COLON_COLON, - ACTIONS(3450), 1, - anon_sym_LBRACE, - ACTIONS(4100), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(1316), 1, - sym_enumerator_list, - STATE(3908), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(6653), 2, - anon_sym_class, - anon_sym_struct, - STATE(1390), 2, - sym__class_name, - sym_qualified_type_identifier, - [90974] = 11, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12425), 1, + anon_sym_EQ, + STATE(6165), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [264495] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3110), 1, - anon_sym_COLON_COLON, - ACTIONS(3450), 1, - anon_sym_LBRACE, - ACTIONS(4100), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(1316), 1, - sym_enumerator_list, - STATE(3895), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(6655), 2, - anon_sym_class, - anon_sym_struct, - STATE(3200), 2, - sym__class_name, - sym_qualified_type_identifier, - [91010] = 11, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11616), 1, + anon_sym_EQ, + STATE(7463), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [264509] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4174), 1, - sym_identifier, - ACTIONS(4176), 1, + ACTIONS(3108), 1, anon_sym_COLON_COLON, - ACTIONS(6629), 1, - anon_sym_LBRACE, - STATE(2001), 1, - sym_template_type, - STATE(2088), 1, - sym_enumerator_list, - STATE(3897), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(6657), 2, - anon_sym_class, - anon_sym_struct, - STATE(2274), 2, - sym__class_name, - sym_qualified_type_identifier, - [91046] = 3, + ACTIONS(5074), 1, + anon_sym_LT, + ACTIONS(12427), 1, + anon_sym_SEMI, + STATE(917), 1, + sym_template_argument_list, + [264525] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 2, - anon_sym_AMP, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(2519), 10, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, + ACTIONS(6275), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - [91066] = 11, + STATE(5080), 1, + sym_field_declaration_list, + STATE(8259), 1, + sym_base_class_clause, + [264541] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4192), 1, - sym_identifier, - ACTIONS(4194), 1, - anon_sym_COLON_COLON, - ACTIONS(6411), 1, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6275), 1, anon_sym_LBRACE, - STATE(2424), 1, - sym_template_type, - STATE(2613), 1, - sym_enumerator_list, - STATE(3876), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(6659), 2, - anon_sym_class, - anon_sym_struct, - STATE(3423), 2, - sym__class_name, - sym_qualified_type_identifier, - [91102] = 3, + STATE(5082), 1, + sym_field_declaration_list, + STATE(8260), 1, + sym_base_class_clause, + [264557] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3479), 2, - anon_sym_AMP, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(3481), 10, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, + ACTIONS(6275), 1, anon_sym_LBRACE, - anon_sym_LBRACK, + STATE(5097), 1, + sym_field_declaration_list, + STATE(8262), 1, + sym_base_class_clause, + [264573] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12429), 1, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - [91122] = 10, + STATE(6165), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [264587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1461), 1, + ACTIONS(11683), 1, + anon_sym_EQ, + STATE(7467), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [264601] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9921), 1, anon_sym_LBRACE, - ACTIONS(6491), 1, + ACTIONS(12121), 1, anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6499), 1, + STATE(3656), 1, + sym_requirement_seq, + STATE(8017), 1, + sym_requires_parameter_list, + [264617] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12096), 1, + aux_sym_string_literal_token1, + ACTIONS(12098), 1, + sym_escape_sequence, + ACTIONS(12431), 1, + anon_sym_DQUOTE, + STATE(7267), 1, + aux_sym_string_literal_repeat1, + [264633] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12433), 1, anon_sym_EQ, - STATE(2751), 1, - sym_parameter_list, - ACTIONS(6661), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(3623), 2, + STATE(6165), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4755), 2, - sym_argument_list, - sym_initializer_list, - [91156] = 4, + [264647] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3405), 2, - anon_sym_AMP, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11651), 1, + anon_sym_EQ, + STATE(7470), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [264661] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(3407), 9, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(6275), 1, anon_sym_LBRACE, - anon_sym_LBRACK, + STATE(4893), 1, + sym_field_declaration_list, + STATE(8263), 1, + sym_base_class_clause, + [264677] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12435), 1, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - [91178] = 4, + STATE(6165), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [264691] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3405), 2, - anon_sym_AMP, - anon_sym_COLON, - ACTIONS(3407), 9, + ACTIONS(3647), 1, + anon_sym_LBRACE, + ACTIONS(7383), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(3777), 1, + sym_argument_list, + STATE(3778), 1, + sym_initializer_list, + [264707] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12437), 1, + anon_sym_GT2, + STATE(7851), 1, + aux_sym_template_argument_list_repeat1, + [264723] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4990), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - [91200] = 4, + ACTIONS(5300), 1, + anon_sym_COLON, + STATE(1677), 1, + sym_field_declaration_list, + STATE(8361), 1, + sym_base_class_clause, + [264739] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3475), 2, - anon_sym_AMP, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12439), 1, + anon_sym_GT2, + STATE(7598), 1, + aux_sym_template_argument_list_repeat1, + [264755] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(3477), 9, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(6297), 1, anon_sym_LBRACE, - anon_sym_LBRACK, + STATE(3782), 1, + sym_field_declaration_list, + STATE(8023), 1, + sym_base_class_clause, + [264771] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11638), 1, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - [91222] = 11, + STATE(7301), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [264785] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4102), 1, - sym_identifier, - ACTIONS(4104), 1, - anon_sym_COLON_COLON, - ACTIONS(6415), 1, + ACTIONS(4990), 1, anon_sym_LBRACE, - STATE(2246), 1, - sym_template_type, - STATE(2387), 1, - sym_enumerator_list, - STATE(3909), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(6663), 2, - anon_sym_class, - anon_sym_struct, - STATE(2737), 2, - sym__class_name, - sym_qualified_type_identifier, - [91258] = 9, - ACTIONS(3), 1, + ACTIONS(5300), 1, + anon_sym_COLON, + STATE(1680), 1, + sym_field_declaration_list, + STATE(8362), 1, + sym_base_class_clause, + [264801] = 5, + ACTIONS(10249), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LPAREN2, - ACTIONS(6015), 1, - anon_sym_LBRACK, - ACTIONS(6059), 1, - anon_sym_STAR, - ACTIONS(6061), 1, - anon_sym_AMP_AMP, - ACTIONS(6063), 1, - anon_sym_AMP, - STATE(3273), 1, - sym_parameter_list, - STATE(3968), 1, - sym__abstract_declarator, - STATE(3728), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [91290] = 11, + ACTIONS(12096), 1, + aux_sym_string_literal_token1, + ACTIONS(12098), 1, + sym_escape_sequence, + ACTIONS(12441), 1, + anon_sym_DQUOTE, + STATE(7267), 1, + aux_sym_string_literal_repeat1, + [264817] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3110), 1, + ACTIONS(3108), 1, anon_sym_COLON_COLON, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(6665), 1, + ACTIONS(5074), 1, + anon_sym_LT, + ACTIONS(12443), 1, + anon_sym_SEMI, + STATE(917), 1, + sym_template_argument_list, + [264833] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4277), 1, anon_sym_LBRACE, - STATE(1302), 1, - sym_template_type, - STATE(1445), 1, - sym_enumerator_list, - STATE(3895), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(6667), 2, - anon_sym_class, - anon_sym_struct, - STATE(1388), 2, - sym__class_name, - sym_qualified_type_identifier, - [91326] = 11, + ACTIONS(7433), 1, + anon_sym_LPAREN2, + STATE(4002), 1, + sym_argument_list, + STATE(5142), 1, + sym_initializer_list, + [264849] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4102), 1, - sym_identifier, - ACTIONS(4104), 1, - anon_sym_COLON_COLON, - ACTIONS(6415), 1, + ACTIONS(12167), 1, + anon_sym_COMMA, + ACTIONS(12445), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12447), 1, anon_sym_LBRACE, - STATE(2246), 1, - sym_template_type, - STATE(2387), 1, - sym_enumerator_list, - STATE(3909), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - ACTIONS(6669), 2, - anon_sym_class, - anon_sym_struct, - STATE(2600), 2, - sym__class_name, - sym_qualified_type_identifier, - [91362] = 8, + STATE(7539), 1, + aux_sym_base_class_clause_repeat1, + [264865] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, - anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3740), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [91391] = 7, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12449), 1, + anon_sym_GT2, + STATE(7617), 1, + aux_sym_template_argument_list_repeat1, + [264881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2694), 1, - sym_parameter_list, - STATE(3716), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6671), 5, + ACTIONS(12453), 1, + anon_sym___attribute, + ACTIONS(12451), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [264893] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12096), 1, + aux_sym_string_literal_token1, + ACTIONS(12098), 1, + sym_escape_sequence, + ACTIONS(12455), 1, + anon_sym_DQUOTE, + STATE(7267), 1, + aux_sym_string_literal_repeat1, + [264909] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12459), 1, + anon_sym___attribute, + ACTIONS(12457), 3, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [91418] = 8, + anon_sym___attribute__, + [264921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, - anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3736), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [91447] = 8, + ACTIONS(12461), 1, + anon_sym___except, + ACTIONS(12463), 1, + anon_sym___finally, + STATE(366), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [264935] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, + ACTIONS(10794), 1, + anon_sym_LBRACE, + STATE(4555), 1, + sym_compound_statement, + ACTIONS(10660), 2, anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3755), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [91476] = 9, + anon_sym_LBRACK, + [264949] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - ACTIONS(3749), 1, + ACTIONS(5300), 1, anon_sym_COLON, - STATE(1317), 1, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2684), 1, sym_field_declaration_list, - STATE(4184), 1, - sym_virtual_specifier, - STATE(4722), 1, + STATE(8047), 1, sym_base_class_clause, - ACTIONS(3423), 2, - anon_sym___based, - sym_identifier, - ACTIONS(3425), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - [91507] = 8, + [264965] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, - anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3760), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [91536] = 8, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6285), 1, + anon_sym_LBRACE, + STATE(3050), 1, + sym_field_declaration_list, + STATE(8069), 1, + sym_base_class_clause, + [264981] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, - anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3758), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [91565] = 8, + ACTIONS(4083), 1, + anon_sym_LBRACE, + ACTIONS(12133), 1, + anon_sym_COLON_COLON, + ACTIONS(12465), 1, + anon_sym_EQ, + STATE(431), 1, + sym_declaration_list, + [264997] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12467), 1, + anon_sym_DQUOTE, + ACTIONS(12469), 1, + aux_sym_string_literal_token1, + ACTIONS(12471), 1, + sym_escape_sequence, + STATE(7507), 1, + aux_sym_string_literal_repeat1, + [265013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, + ACTIONS(10836), 1, + anon_sym_LBRACE, + STATE(4197), 1, + sym_compound_statement, + ACTIONS(10660), 2, anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3772), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [91594] = 3, + anon_sym_LBRACK, + [265027] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12473), 1, + anon_sym_DQUOTE, + ACTIONS(12475), 1, + aux_sym_string_literal_token1, + ACTIONS(12477), 1, + sym_escape_sequence, + STATE(7478), 1, + aux_sym_string_literal_repeat1, + [265043] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12096), 1, + aux_sym_string_literal_token1, + ACTIONS(12098), 1, + sym_escape_sequence, + ACTIONS(12479), 1, + anon_sym_DQUOTE, + STATE(7267), 1, + aux_sym_string_literal_repeat1, + [265059] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 1, - anon_sym_AMP, - ACTIONS(3407), 10, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(4990), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(5300), 1, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - [91613] = 6, + STATE(1414), 1, + sym_field_declaration_list, + STATE(8274), 1, + sym_base_class_clause, + [265075] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, - anon_sym_AMP, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(6523), 1, - anon_sym_LT, - STATE(3586), 1, - sym_template_argument_list, - ACTIONS(2405), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6291), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [91638] = 10, + STATE(2737), 1, + sym_field_declaration_list, + STATE(8048), 1, + sym_base_class_clause, + [265091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6673), 1, - anon_sym_SEMI, - ACTIONS(6675), 1, + ACTIONS(10817), 1, anon_sym_LBRACE, - ACTIONS(6677), 1, - anon_sym_EQ, - ACTIONS(6679), 1, - anon_sym_COLON, - STATE(1068), 1, + STATE(950), 1, sym_compound_statement, - STATE(3990), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, + ACTIONS(10660), 2, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1078), 2, - sym_default_method_clause, - sym_delete_method_clause, - [91671] = 7, + anon_sym_LBRACK, + [265105] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2694), 1, - sym_parameter_list, - STATE(3716), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6681), 5, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6285), 1, anon_sym_LBRACE, - anon_sym_EQ, + STATE(3052), 1, + sym_field_declaration_list, + STATE(8107), 1, + sym_base_class_clause, + [265121] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, anon_sym_COLON, - [91698] = 8, + ACTIONS(6285), 1, + anon_sym_LBRACE, + STATE(3008), 1, + sym_field_declaration_list, + STATE(8159), 1, + sym_base_class_clause, + [265137] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, + ACTIONS(3401), 1, + anon_sym_LT, + ACTIONS(12084), 1, sym_identifier, - ACTIONS(5881), 1, - anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3739), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [91727] = 6, + STATE(716), 1, + sym_template_parameter_list, + STATE(1309), 1, + sym_template_type, + [265153] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3826), 1, - anon_sym_AMP, - ACTIONS(6683), 1, + ACTIONS(5300), 1, anon_sym_COLON, - STATE(3767), 1, - sym__enum_base_clause, - STATE(3832), 1, - sym_enumerator_list, - ACTIONS(3828), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(6321), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [91752] = 8, + STATE(4409), 1, + sym_field_declaration_list, + STATE(7974), 1, + sym_base_class_clause, + [265169] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, - anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3741), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [91781] = 6, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(4380), 1, + sym_field_declaration_list, + STATE(7979), 1, + sym_base_class_clause, + [265185] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, - anon_sym_AMP, - ACTIONS(6683), 1, + ACTIONS(5300), 1, anon_sym_COLON, - STATE(3765), 1, - sym__enum_base_clause, - STATE(3819), 1, - sym_enumerator_list, - ACTIONS(3834), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(6321), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [91806] = 10, + STATE(4287), 1, + sym_field_declaration_list, + STATE(7988), 1, + sym_base_class_clause, + [265201] = 4, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12481), 1, + anon_sym_SQUOTE, + STATE(7504), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12483), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [265215] = 4, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12486), 1, + anon_sym_SQUOTE, + STATE(7504), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12082), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [265229] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, - anon_sym_LBRACE, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(6685), 1, - anon_sym_SEMI, - ACTIONS(6687), 1, - anon_sym_EQ, - STATE(663), 1, + ACTIONS(6297), 1, + anon_sym_LBRACE, + STATE(3780), 1, + sym_field_declaration_list, + STATE(8021), 1, + sym_base_class_clause, + [265245] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12096), 1, + aux_sym_string_literal_token1, + ACTIONS(12098), 1, + sym_escape_sequence, + ACTIONS(12488), 1, + anon_sym_DQUOTE, + STATE(7267), 1, + aux_sym_string_literal_repeat1, + [265261] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10822), 1, + anon_sym_LBRACE, + STATE(6210), 1, sym_compound_statement, - STATE(3998), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, + ACTIONS(10660), 2, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(664), 2, - sym_default_method_clause, - sym_delete_method_clause, - [91839] = 4, + anon_sym_LBRACK, + [265275] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4593), 1, - anon_sym_LBRACK, - ACTIONS(6689), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4591), 9, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(4419), 1, + sym_field_declaration_list, + STATE(8028), 1, + sym_base_class_clause, + [265291] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12245), 1, anon_sym_COMMA, + STATE(7452), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(12490), 2, 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, - [91860] = 10, + [265305] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(6691), 1, - anon_sym_SEMI, - ACTIONS(6693), 1, + ACTIONS(6321), 1, anon_sym_LBRACE, - ACTIONS(6695), 1, - anon_sym_EQ, - STATE(979), 1, - sym_compound_statement, - STATE(3991), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(980), 2, - sym_default_method_clause, - sym_delete_method_clause, - [91893] = 10, + STATE(4422), 1, + sym_field_declaration_list, + STATE(8003), 1, + sym_base_class_clause, + [265321] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 1, - anon_sym_LBRACE, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, + ACTIONS(5300), 1, anon_sym_COLON, - ACTIONS(6697), 1, - anon_sym_SEMI, - ACTIONS(6699), 1, - anon_sym_EQ, - STATE(569), 1, - sym_compound_statement, - STATE(3999), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(570), 2, - sym_default_method_clause, - sym_delete_method_clause, - [91926] = 7, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(4376), 1, + sym_field_declaration_list, + STATE(8008), 1, + sym_base_class_clause, + [265337] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6425), 1, - anon_sym_LBRACK, - STATE(2953), 1, - sym_parameter_list, - STATE(3664), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6701), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(5300), 1, anon_sym_COLON, - [91953] = 8, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(4395), 1, + sym_field_declaration_list, + STATE(8009), 1, + sym_base_class_clause, + [265353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, - anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3866), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [91982] = 5, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(4401), 1, + sym_field_declaration_list, + STATE(8013), 1, + sym_base_class_clause, + [265369] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6705), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6708), 1, - anon_sym_LBRACK, - STATE(3619), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6703), 7, + ACTIONS(12109), 1, anon_sym_COMMA, + STATE(7237), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(12492), 2, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [92005] = 7, + anon_sym_COLON, + [265383] = 5, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12129), 1, + anon_sym_LPAREN, + ACTIONS(12494), 1, + aux_sym_preproc_include_token2, + ACTIONS(12496), 1, + sym_preproc_arg, + STATE(8369), 1, + sym_preproc_params, + [265399] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6425), 1, - anon_sym_LBRACK, - STATE(2953), 1, - sym_parameter_list, - STATE(3664), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6710), 5, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(5300), 1, + anon_sym_COLON, + ACTIONS(6321), 1, anon_sym_LBRACE, - anon_sym_EQ, + STATE(4278), 1, + sym_field_declaration_list, + STATE(8015), 1, + sym_base_class_clause, + [265415] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, anon_sym_COLON, - [92032] = 8, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3321), 1, + sym_field_declaration_list, + STATE(8241), 1, + sym_base_class_clause, + [265431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, + ACTIONS(10802), 1, + anon_sym_LBRACE, + STATE(4008), 1, + sym_compound_statement, + ACTIONS(10660), 2, anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3735), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [92061] = 9, + anon_sym_LBRACK, + [265445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - ACTIONS(3749), 1, + ACTIONS(12498), 1, + anon_sym_RPAREN, + ACTIONS(12500), 1, anon_sym_COLON, - STATE(1348), 1, - sym_field_declaration_list, - STATE(4174), 1, - sym_virtual_specifier, - STATE(4724), 1, - sym_base_class_clause, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3471), 2, - anon_sym___based, - sym_identifier, - ACTIONS(3473), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - [92092] = 5, + STATE(7904), 1, + sym_gnu_asm_input_operand_list, + [265458] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6714), 1, - anon_sym_LBRACK, - STATE(3619), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6712), 7, + ACTIONS(12502), 1, + anon_sym_RPAREN, + ACTIONS(12504), 1, + anon_sym_COLON, + STATE(7650), 1, + sym_gnu_asm_output_operand_list, + [265471] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12506), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [92115] = 8, + anon_sym_COLON, + [265480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, - anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3732), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [92144] = 8, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12508), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [265493] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, - anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3744), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [92173] = 10, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12510), 1, + anon_sym_GT2, + STATE(7654), 1, + aux_sym_template_argument_list_repeat1, + [265506] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6675), 1, - anon_sym_LBRACE, - ACTIONS(6677), 1, - anon_sym_EQ, - ACTIONS(6679), 1, + ACTIONS(12504), 1, anon_sym_COLON, - ACTIONS(6716), 1, - anon_sym_SEMI, - STATE(1172), 1, - sym_compound_statement, - STATE(3970), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1161), 2, - sym_default_method_clause, - sym_delete_method_clause, - [92206] = 7, + ACTIONS(12512), 1, + anon_sym_RPAREN, + STATE(7675), 1, + sym_gnu_asm_output_operand_list, + [265519] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2694), 1, - sym_parameter_list, - STATE(3716), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6718), 5, + ACTIONS(12514), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [92233] = 7, + ACTIONS(12516), 1, + anon_sym_GT2, + STATE(7656), 1, + aux_sym_template_parameter_list_repeat1, + [265532] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2694), 1, - sym_parameter_list, - STATE(3716), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6720), 5, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [92260] = 10, + ACTIONS(12518), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [265545] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12520), 1, + anon_sym_COMMA, + ACTIONS(12522), 1, + anon_sym_RBRACK_RBRACK, + STATE(7790), 1, + aux_sym_attribute_declaration_repeat1, + [265558] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, + ACTIONS(12524), 1, + anon_sym_COMMA, + ACTIONS(12526), 1, anon_sym_LBRACE, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_COLON, - ACTIONS(6687), 1, - anon_sym_EQ, - ACTIONS(6722), 1, - anon_sym_SEMI, - STATE(627), 1, - sym_compound_statement, - STATE(3984), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(618), 2, - sym_default_method_clause, - sym_delete_method_clause, - [92293] = 9, + STATE(7866), 1, + aux_sym_field_initializer_list_repeat1, + [265571] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(8961), 1, + anon_sym_RPAREN, + STATE(7575), 1, + aux_sym_argument_list_repeat1, + [265584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2319), 1, - anon_sym_COLON_COLON, - ACTIONS(4118), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(3912), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(4221), 2, - sym__class_name, - sym_qualified_type_identifier, - ACTIONS(6724), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [92324] = 9, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12528), 1, + anon_sym_GT2, + STATE(7680), 1, + aux_sym_template_argument_list_repeat1, + [265597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2319), 1, - anon_sym_COLON_COLON, - ACTIONS(4118), 1, + ACTIONS(12530), 1, sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(3912), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(4183), 2, - sym__class_name, - sym_qualified_type_identifier, - ACTIONS(6726), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [92355] = 7, + ACTIONS(12532), 2, + anon_sym_COMMA, + anon_sym_GT2, + [265608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6425), 1, - anon_sym_LBRACK, - STATE(2953), 1, - sym_parameter_list, - STATE(3664), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6728), 5, + ACTIONS(8963), 1, anon_sym_COMMA, + ACTIONS(8965), 1, + anon_sym_RBRACE, + STATE(7577), 1, + aux_sym_initializer_list_repeat1, + [265621] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12133), 3, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [92382] = 8, + [265630] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, + ACTIONS(12534), 1, sym_identifier, - ACTIONS(5881), 1, - anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3780), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [92411] = 7, + STATE(1309), 1, + sym_template_type, + STATE(3805), 1, + sym_template_function, + [265643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6425), 1, - anon_sym_LBRACK, - STATE(2953), 1, - sym_parameter_list, - STATE(3664), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6730), 5, - anon_sym_COMMA, + ACTIONS(12538), 1, + anon_sym_COLON_COLON, + ACTIONS(12536), 2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [92438] = 7, + [265654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6425), 1, - anon_sym_LBRACK, - STATE(2953), 1, - sym_parameter_list, - STATE(3664), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6732), 5, - anon_sym_COMMA, + ACTIONS(12540), 1, + anon_sym_catch, + STATE(295), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [265665] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12402), 1, + anon_sym_DASH_GT, + ACTIONS(12542), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [92465] = 9, + STATE(8584), 1, + sym_trailing_return_type, + [265678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, + ACTIONS(12167), 1, + anon_sym_COMMA, + ACTIONS(12544), 1, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1321), 1, - sym_field_declaration_list, - STATE(4131), 1, - sym_virtual_specifier, - STATE(4701), 1, - sym_base_class_clause, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3436), 2, - anon_sym___based, - sym_identifier, - ACTIONS(3438), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - [92496] = 8, + STATE(7715), 1, + aux_sym_base_class_clause_repeat1, + [265691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, - anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3749), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [92525] = 10, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12546), 1, + anon_sym_GT2, + STATE(7548), 1, + aux_sym_template_argument_list_repeat1, + [265704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_COLON, - ACTIONS(6734), 1, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(12548), 1, anon_sym_SEMI, - ACTIONS(6736), 1, - anon_sym_EQ, - STATE(589), 1, - sym_compound_statement, - STATE(4000), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(591), 2, - sym_default_method_clause, - sym_delete_method_clause, - [92558] = 10, + STATE(7659), 1, + aux_sym_declaration_repeat1, + [265717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(269), 1, - anon_sym_LBRACE, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_COLON, - ACTIONS(6738), 1, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(12550), 1, anon_sym_SEMI, - ACTIONS(6740), 1, - anon_sym_EQ, - STATE(239), 1, - sym_compound_statement, - STATE(3980), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(238), 2, - sym_default_method_clause, - sym_delete_method_clause, - [92591] = 9, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [265730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, + ACTIONS(12552), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12554), 2, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1322), 1, - sym_field_declaration_list, - STATE(4137), 1, - sym_virtual_specifier, - STATE(4703), 1, - sym_base_class_clause, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3491), 2, - anon_sym___based, - sym_identifier, - ACTIONS(3493), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - [92622] = 7, + [265741] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2694), 1, - sym_parameter_list, - STATE(3716), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6742), 5, + ACTIONS(12167), 1, anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(12408), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [92649] = 10, + STATE(7715), 1, + aux_sym_base_class_clause_repeat1, + [265754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, + ACTIONS(12504), 1, anon_sym_COLON, - ACTIONS(6693), 1, - anon_sym_LBRACE, - ACTIONS(6695), 1, - anon_sym_EQ, - ACTIONS(6744), 1, - anon_sym_SEMI, - STATE(1014), 1, - sym_compound_statement, - STATE(3987), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1016), 2, - sym_default_method_clause, - sym_delete_method_clause, - [92682] = 9, + ACTIONS(12556), 1, + anon_sym_RPAREN, + STATE(7584), 1, + sym_gnu_asm_output_operand_list, + [265767] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1347), 1, - sym_field_declaration_list, - STATE(4138), 1, - sym_virtual_specifier, - STATE(4707), 1, - sym_base_class_clause, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3442), 2, - anon_sym___based, - sym_identifier, - ACTIONS(3444), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - [92713] = 9, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12558), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [265780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1345), 1, - sym_field_declaration_list, - STATE(4155), 1, - sym_virtual_specifier, - STATE(4735), 1, - sym_base_class_clause, - ACTIONS(3431), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(3483), 2, - anon_sym___based, - sym_identifier, - ACTIONS(3485), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - [92744] = 10, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12560), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [265793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 1, - anon_sym_LBRACE, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_COLON, - ACTIONS(6699), 1, - anon_sym_EQ, - ACTIONS(6746), 1, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12562), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [265806] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(12564), 1, anon_sym_SEMI, - STATE(567), 1, - sym_compound_statement, - STATE(3975), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(566), 2, - sym_default_method_clause, - sym_delete_method_clause, - [92777] = 10, + STATE(7694), 1, + aux_sym_declaration_repeat1, + [265819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_COLON, - ACTIONS(6748), 1, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(12566), 1, anon_sym_SEMI, - ACTIONS(6750), 1, - anon_sym_LBRACE, - ACTIONS(6752), 1, - anon_sym_EQ, - STATE(1181), 1, - sym_compound_statement, - STATE(3976), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1204), 2, - sym_default_method_clause, - sym_delete_method_clause, - [92810] = 8, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [265832] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, - anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3886), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [92839] = 7, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12568), 1, + anon_sym_GT2, + STATE(7594), 1, + aux_sym_template_argument_list_repeat1, + [265845] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6425), 1, - anon_sym_LBRACK, - STATE(2953), 1, - sym_parameter_list, - STATE(3664), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6754), 5, + ACTIONS(10188), 1, anon_sym_COMMA, + ACTIONS(12570), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [92866] = 8, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [265858] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, - anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3751), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [92895] = 10, + ACTIONS(12572), 1, + anon_sym_COMMA, + ACTIONS(12574), 1, + anon_sym_RPAREN, + STATE(7660), 1, + aux_sym_parameter_list_repeat1, + [265871] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_COLON, - ACTIONS(6736), 1, - anon_sym_EQ, - ACTIONS(6756), 1, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(12576), 1, anon_sym_SEMI, - STATE(622), 1, - sym_compound_statement, - STATE(3985), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(623), 2, - sym_default_method_clause, - sym_delete_method_clause, - [92928] = 8, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [265884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, - anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3762), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [92957] = 10, + ACTIONS(12578), 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + [265893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(269), 1, + ACTIONS(12167), 1, + anon_sym_COMMA, + ACTIONS(12544), 1, anon_sym_LBRACE, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_COLON, - ACTIONS(6740), 1, - anon_sym_EQ, - ACTIONS(6758), 1, - anon_sym_SEMI, - STATE(204), 1, - sym_compound_statement, - STATE(3981), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(205), 2, - sym_default_method_clause, - sym_delete_method_clause, - [92990] = 4, + STATE(7801), 1, + aux_sym_base_class_clause_repeat1, + [265906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, - anon_sym_COLON_COLON, - ACTIONS(2521), 2, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2514), 8, + ACTIONS(12580), 1, + anon_sym_catch, + STATE(316), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [265917] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10188), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(12582), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [93011] = 8, + STATE(7600), 1, + aux_sym_declaration_repeat1, + [265930] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, - anon_sym_LPAREN2, - ACTIONS(5883), 1, - anon_sym_STAR, - STATE(3730), 1, - sym__type_declarator, - STATE(5048), 1, - sym_ms_based_modifier, - STATE(3946), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [93040] = 10, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(12584), 1, + anon_sym_SEMI, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [265943] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_COLON, - ACTIONS(6750), 1, - anon_sym_LBRACE, - ACTIONS(6752), 1, - anon_sym_EQ, - ACTIONS(6760), 1, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(12586), 1, anon_sym_SEMI, - STATE(1216), 1, - sym_compound_statement, - STATE(3971), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1217), 2, - sym_default_method_clause, - sym_delete_method_clause, - [93073] = 10, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [265956] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4154), 1, - sym_identifier, - ACTIONS(4156), 1, - anon_sym_COLON_COLON, - ACTIONS(6411), 1, - anon_sym_LBRACE, - STATE(2424), 1, - sym_template_type, - STATE(2566), 1, - sym_enumerator_list, - STATE(3918), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(2663), 2, - sym__class_name, - sym_qualified_type_identifier, - [93105] = 10, + ACTIONS(12572), 1, + anon_sym_COMMA, + ACTIONS(12588), 1, + anon_sym_RPAREN, + STATE(7697), 1, + aux_sym_parameter_list_repeat1, + [265969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4174), 1, - sym_identifier, - ACTIONS(4176), 1, - anon_sym_COLON_COLON, - ACTIONS(6629), 1, - anon_sym_LBRACE, - STATE(2001), 1, - sym_template_type, - STATE(2104), 1, - sym_enumerator_list, - STATE(3897), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(2266), 2, - sym__class_name, - sym_qualified_type_identifier, - [93137] = 10, + ACTIONS(12572), 1, + anon_sym_COMMA, + ACTIONS(12590), 1, + anon_sym_RPAREN, + STATE(7602), 1, + aux_sym_parameter_list_repeat1, + [265982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2385), 1, - anon_sym_COLON_COLON, - ACTIONS(3450), 1, - anon_sym_LBRACE, - ACTIONS(4100), 1, + ACTIONS(12592), 1, + anon_sym_catch, + STATE(310), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [265993] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12594), 1, sym_identifier, - STATE(1302), 1, + STATE(1309), 1, sym_template_type, - STATE(1325), 1, - sym_enumerator_list, - STATE(3908), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(1395), 2, - sym__class_name, - sym_qualified_type_identifier, - [93169] = 5, + STATE(3552), 1, + sym_template_function, + [266006] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_LT, - ACTIONS(6766), 1, - anon_sym_LBRACK, - STATE(3733), 1, - sym_template_argument_list, - ACTIONS(6762), 7, + ACTIONS(10209), 1, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [93191] = 9, + ACTIONS(12596), 1, + anon_sym_RPAREN, + STATE(7812), 1, + aux_sym_preproc_argument_list_repeat1, + [266019] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(269), 1, - anon_sym_LBRACE, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_COLON, - ACTIONS(6740), 1, - anon_sym_EQ, - STATE(239), 1, - sym_compound_statement, - STATE(3980), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(238), 2, - sym_default_method_clause, - sym_delete_method_clause, - [93221] = 6, + ACTIONS(9087), 1, + anon_sym_COMMA, + ACTIONS(9149), 1, + anon_sym_RBRACK, + STATE(7663), 1, + aux_sym_subscript_argument_list_repeat1, + [266032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4409), 1, + ACTIONS(12598), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(6768), 1, - sym_identifier, - ACTIONS(6774), 1, - sym_raw_string_literal, - STATE(3661), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6771), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [93245] = 3, + anon_sym_GT2, + [266041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4574), 1, - anon_sym_LBRACK, - ACTIONS(4572), 9, + ACTIONS(12598), 3, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_GT2, + [266050] = 4, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12600), 1, + aux_sym_preproc_include_token2, + ACTIONS(12602), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, + STATE(8961), 1, + sym_preproc_argument_list, + [266063] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12604), 1, anon_sym_GT2, - [93263] = 6, + STATE(7574), 1, + aux_sym_template_argument_list_repeat1, + [266076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6777), 1, - sym_identifier, - ACTIONS(6779), 1, - anon_sym_RPAREN, - ACTIONS(6783), 1, - sym_raw_string_literal, - STATE(3697), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6781), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [93287] = 5, + ACTIONS(12606), 1, + anon_sym_catch, + STATE(1091), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [266087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6787), 1, - anon_sym_LBRACK, - STATE(3714), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6785), 6, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [93309] = 3, + ACTIONS(12608), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4593), 1, - anon_sym_LBRACK, - ACTIONS(4591), 9, + ACTIONS(8969), 1, 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, + ACTIONS(12610), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266113] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12612), 1, anon_sym_GT2, - [93327] = 6, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266126] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(12614), 1, + anon_sym_RPAREN, + STATE(7658), 1, + aux_sym_argument_list_repeat1, + [266139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6777), 1, - sym_identifier, - ACTIONS(6783), 1, - sym_raw_string_literal, - ACTIONS(6789), 1, + ACTIONS(12616), 1, + anon_sym_COMMA, + ACTIONS(12618), 1, anon_sym_RPAREN, - STATE(3697), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6781), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [93351] = 10, + STATE(7815), 1, + aux_sym_preproc_params_repeat1, + [266152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2319), 1, - anon_sym_COLON_COLON, - ACTIONS(3450), 1, - anon_sym_LBRACE, - ACTIONS(4118), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(1325), 1, - sym_enumerator_list, - STATE(3912), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(1473), 2, - sym__class_name, - sym_qualified_type_identifier, - [93383] = 10, + ACTIONS(5468), 1, + anon_sym_RBRACE, + ACTIONS(12620), 1, + anon_sym_COMMA, + STATE(7669), 1, + aux_sym_initializer_list_repeat1, + [266165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3110), 1, - anon_sym_COLON_COLON, - ACTIONS(4100), 1, + ACTIONS(12622), 1, sym_identifier, - ACTIONS(6665), 1, - anon_sym_LBRACE, - STATE(1302), 1, + STATE(2461), 1, sym_template_type, - STATE(1428), 1, - sym_enumerator_list, - STATE(3895), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(1394), 2, - sym__class_name, - sym_qualified_type_identifier, - [93415] = 7, + STATE(3805), 1, + sym_template_function, + [266178] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2751), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6681), 4, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [93441] = 7, + ACTIONS(12624), 1, + anon_sym_GT2, + STATE(7582), 1, + aux_sym_template_argument_list_repeat1, + [266191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2751), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6742), 4, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [93467] = 7, + ACTIONS(12626), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2751), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6671), 4, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [93493] = 7, + ACTIONS(12628), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2751), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6720), 4, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [93519] = 10, + ACTIONS(12630), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266230] = 3, + ACTIONS(10249), 1, + sym_comment, + STATE(7402), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12632), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [266241] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3450), 1, - anon_sym_LBRACE, - ACTIONS(4118), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - STATE(1302), 1, - sym_template_type, - STATE(1325), 1, - sym_enumerator_list, - STATE(3881), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(3289), 2, - sym__class_name, - sym_qualified_type_identifier, - [93551] = 9, + ACTIONS(12500), 1, + anon_sym_COLON, + ACTIONS(12634), 1, + anon_sym_RPAREN, + STATE(7619), 1, + sym_gnu_asm_input_operand_list, + [266254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(269), 1, - anon_sym_LBRACE, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, + ACTIONS(12504), 1, anon_sym_COLON, - ACTIONS(6740), 1, - anon_sym_EQ, - STATE(204), 1, - sym_compound_statement, - STATE(3981), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(205), 2, - sym_default_method_clause, - sym_delete_method_clause, - [93581] = 10, + ACTIONS(12636), 1, + anon_sym_RPAREN, + STATE(7620), 1, + sym_gnu_asm_output_operand_list, + [266267] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3110), 1, - anon_sym_COLON_COLON, - ACTIONS(3450), 1, - anon_sym_LBRACE, - ACTIONS(4100), 1, + ACTIONS(12638), 1, sym_identifier, - STATE(1302), 1, + STATE(2461), 1, sym_template_type, - STATE(1325), 1, - sym_enumerator_list, - STATE(3895), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(3215), 2, - sym__class_name, - sym_qualified_type_identifier, - [93613] = 6, + STATE(2898), 1, + sym_template_function, + [266280] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6777), 1, - sym_identifier, - ACTIONS(6783), 1, - sym_raw_string_literal, - ACTIONS(6791), 1, - anon_sym_RPAREN, - STATE(3697), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6781), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [93637] = 3, + ACTIONS(9087), 1, + anon_sym_COMMA, + ACTIONS(9131), 1, + anon_sym_RBRACK, + STATE(7903), 1, + aux_sym_subscript_argument_list_repeat1, + [266293] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6795), 1, - anon_sym_LBRACK, - ACTIONS(6793), 9, + ACTIONS(8969), 1, 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, + ACTIONS(12640), 1, anon_sym_GT2, - [93655] = 3, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 1, - anon_sym_LBRACK, - ACTIONS(2461), 9, + ACTIONS(8969), 1, 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, + ACTIONS(12642), 1, anon_sym_GT2, - [93673] = 3, + STATE(7592), 1, + aux_sym_template_argument_list_repeat1, + [266319] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 1, - anon_sym_LBRACK, - ACTIONS(2461), 9, + ACTIONS(8969), 1, 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, + ACTIONS(12644), 1, anon_sym_GT2, - [93691] = 3, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 1, - anon_sym_LBRACK, - ACTIONS(2461), 9, + ACTIONS(8969), 1, 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, + ACTIONS(12646), 1, anon_sym_GT2, - [93709] = 3, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 1, - anon_sym_LBRACK, - ACTIONS(2461), 9, + ACTIONS(8969), 1, 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, + ACTIONS(12648), 1, anon_sym_GT2, - [93727] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6777), 1, - sym_identifier, - ACTIONS(6783), 1, - sym_raw_string_literal, - ACTIONS(6797), 1, - anon_sym_RPAREN, - STATE(3697), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6781), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [93751] = 3, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266358] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4799), 1, - anon_sym_LBRACK, - ACTIONS(4797), 9, + ACTIONS(8969), 1, 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, + ACTIONS(12650), 1, anon_sym_GT2, - [93769] = 7, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266371] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2741), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6681), 4, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, + ACTIONS(12652), 1, anon_sym_GT2, - [93795] = 9, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, - anon_sym_LBRACE, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_COLON, - ACTIONS(6687), 1, - anon_sym_EQ, - STATE(663), 1, - sym_compound_statement, - STATE(3998), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(664), 2, - sym_default_method_clause, - sym_delete_method_clause, - [93825] = 3, + ACTIONS(12654), 1, + sym_identifier, + STATE(1309), 1, + sym_template_type, + STATE(3097), 1, + sym_template_function, + [266397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 1, - anon_sym_LBRACK, - ACTIONS(2461), 9, + ACTIONS(8969), 1, 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, + ACTIONS(12656), 1, anon_sym_GT2, - [93843] = 9, + STATE(7599), 1, + aux_sym_template_argument_list_repeat1, + [266410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 1, - anon_sym_LBRACE, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_COLON, - ACTIONS(6699), 1, - anon_sym_EQ, - STATE(569), 1, - sym_compound_statement, - STATE(3999), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(570), 2, - sym_default_method_clause, - sym_delete_method_clause, - [93873] = 3, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12658), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, - anon_sym_LBRACK, - ACTIONS(6799), 9, + ACTIONS(8969), 1, 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, + ACTIONS(12660), 1, anon_sym_GT2, - [93891] = 7, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2751), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6718), 4, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [93917] = 3, + ACTIONS(12662), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6805), 1, - anon_sym_LBRACK, - ACTIONS(6803), 9, + ACTIONS(10188), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(12664), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - [93935] = 10, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [266462] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4174), 1, - sym_identifier, - ACTIONS(4176), 1, - anon_sym_COLON_COLON, - ACTIONS(6629), 1, - anon_sym_LBRACE, - STATE(2001), 1, - sym_template_type, - STATE(2104), 1, - sym_enumerator_list, - STATE(3897), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(2026), 2, - sym__class_name, - sym_qualified_type_identifier, - [93967] = 3, + ACTIONS(12514), 1, + anon_sym_COMMA, + ACTIONS(12666), 1, + anon_sym_GT2, + STATE(7758), 1, + aux_sym_template_parameter_list_repeat1, + [266475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6809), 1, - anon_sym_LBRACK, - ACTIONS(6807), 9, + ACTIONS(12572), 1, anon_sym_COMMA, + ACTIONS(12668), 1, 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, - [93985] = 10, + STATE(7774), 1, + aux_sym_parameter_list_repeat1, + [266488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4134), 1, - sym_identifier, - ACTIONS(4136), 1, - anon_sym_COLON_COLON, - ACTIONS(6639), 1, - anon_sym_LBRACE, - STATE(3592), 1, - sym_template_type, - STATE(3833), 1, - sym_enumerator_list, - STATE(3878), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(3612), 2, - sym__class_name, - sym_qualified_type_identifier, - [94017] = 10, + ACTIONS(12592), 1, + anon_sym_catch, + STATE(311), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [266499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4102), 1, - sym_identifier, - ACTIONS(4104), 1, - anon_sym_COLON_COLON, - ACTIONS(6415), 1, + ACTIONS(12504), 1, + anon_sym_COLON, + ACTIONS(12670), 1, + anon_sym_RPAREN, + STATE(7887), 1, + sym_gnu_asm_output_operand_list, + [266512] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12167), 1, + anon_sym_COMMA, + ACTIONS(12408), 1, anon_sym_LBRACE, - STATE(2246), 1, - sym_template_type, - STATE(2443), 1, - sym_enumerator_list, - STATE(3909), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(2748), 2, - sym__class_name, - sym_qualified_type_identifier, - [94049] = 10, + STATE(7712), 1, + aux_sym_base_class_clause_repeat1, + [266525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4122), 1, + ACTIONS(12672), 1, sym_identifier, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(6643), 1, - anon_sym_LBRACE, - STATE(2052), 1, + STATE(1309), 1, sym_template_type, - STATE(2297), 1, - sym_enumerator_list, - STATE(3902), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(2221), 2, - sym__class_name, - sym_qualified_type_identifier, - [94081] = 7, + STATE(2898), 1, + sym_template_function, + [266538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, + ACTIONS(12674), 1, anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2741), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6742), 4, + ACTIONS(12676), 1, + anon_sym_constexpr, + STATE(801), 1, + sym_condition_clause, + [266551] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, + ACTIONS(12678), 1, anon_sym_GT2, - [94107] = 6, + STATE(7611), 1, + aux_sym_template_argument_list_repeat1, + [266564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4394), 1, - anon_sym_RPAREN, - ACTIONS(6811), 1, - sym_identifier, - ACTIONS(6813), 1, - sym_raw_string_literal, - STATE(3661), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6781), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [94131] = 9, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12680), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266577] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_COLON, - ACTIONS(6736), 1, - anon_sym_EQ, - STATE(589), 1, - sym_compound_statement, - STATE(4000), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(591), 2, - sym_default_method_clause, - sym_delete_method_clause, - [94161] = 3, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12682), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6817), 1, - anon_sym_LBRACK, - ACTIONS(6815), 9, + ACTIONS(8969), 1, 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, + ACTIONS(12684), 1, anon_sym_GT2, - [94179] = 10, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266603] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4140), 1, - sym_identifier, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - ACTIONS(6415), 1, - anon_sym_LBRACE, - STATE(2246), 1, - sym_template_type, - STATE(2443), 1, - sym_enumerator_list, - STATE(3923), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(3768), 2, - sym__class_name, - sym_qualified_type_identifier, - [94211] = 10, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(12686), 1, + anon_sym_RPAREN, + STATE(7658), 1, + aux_sym_argument_list_repeat1, + [266616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3110), 1, - anon_sym_COLON_COLON, - ACTIONS(3450), 1, + ACTIONS(4053), 1, anon_sym_LBRACE, - ACTIONS(4100), 1, + ACTIONS(12133), 1, + anon_sym_COLON_COLON, + STATE(476), 1, + sym_declaration_list, + [266629] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12688), 1, sym_identifier, - STATE(1302), 1, + STATE(2947), 1, sym_template_type, - STATE(1325), 1, - sym_enumerator_list, - STATE(3895), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(3199), 2, - sym__class_name, - sym_qualified_type_identifier, - [94243] = 7, + STATE(3887), 1, + sym_template_function, + [266642] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2741), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6671), 4, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, + ACTIONS(12690), 1, + anon_sym_GT2, + STATE(7618), 1, + aux_sym_template_argument_list_repeat1, + [266655] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12692), 1, anon_sym_GT2, - [94269] = 3, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266668] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6821), 1, - anon_sym_LBRACK, - ACTIONS(6819), 9, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12694), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266681] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8969), 1, anon_sym_COMMA, + ACTIONS(12696), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266694] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12698), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(12700), 1, anon_sym_COLON, - anon_sym_GT2, - [94287] = 6, + STATE(7628), 1, + sym_gnu_asm_clobber_list, + [266707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6777), 1, - sym_identifier, - ACTIONS(6783), 1, - sym_raw_string_literal, - ACTIONS(6823), 1, + ACTIONS(12500), 1, + anon_sym_COLON, + ACTIONS(12702), 1, anon_sym_RPAREN, - STATE(3697), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6781), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [94311] = 6, + STATE(7629), 1, + sym_gnu_asm_input_operand_list, + [266720] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5460), 1, + anon_sym_RBRACE, + ACTIONS(12704), 1, + anon_sym_COMMA, + STATE(7669), 1, + aux_sym_initializer_list_repeat1, + [266733] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12520), 1, + anon_sym_COMMA, + ACTIONS(12706), 1, + anon_sym_RBRACK_RBRACK, + STATE(7790), 1, + aux_sym_attribute_declaration_repeat1, + [266746] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6777), 1, + ACTIONS(12708), 1, sym_identifier, - ACTIONS(6783), 1, - sym_raw_string_literal, - ACTIONS(6825), 1, - anon_sym_RPAREN, - STATE(3697), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6781), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [94335] = 9, + STATE(1309), 1, + sym_template_type, + STATE(3097), 1, + sym_template_function, + [266759] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 1, - anon_sym_LBRACE, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_COLON, - ACTIONS(6699), 1, - anon_sym_EQ, - STATE(567), 1, - sym_compound_statement, - STATE(3975), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(566), 2, - sym_default_method_clause, - sym_delete_method_clause, - [94365] = 10, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12710), 1, + anon_sym_GT2, + STATE(7627), 1, + aux_sym_template_argument_list_repeat1, + [266772] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12712), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266785] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3450), 1, - anon_sym_LBRACE, - ACTIONS(4118), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - STATE(1302), 1, - sym_template_type, - STATE(1325), 1, - sym_enumerator_list, - STATE(3881), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(1471), 2, - sym__class_name, - sym_qualified_type_identifier, - [94397] = 7, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12714), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266798] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2741), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6720), 4, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, + ACTIONS(12716), 1, anon_sym_GT2, - [94423] = 10, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266811] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4192), 1, - sym_identifier, - ACTIONS(4194), 1, - anon_sym_COLON_COLON, - ACTIONS(6411), 1, - anon_sym_LBRACE, - STATE(2424), 1, - sym_template_type, - STATE(2566), 1, - sym_enumerator_list, - STATE(3876), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(3426), 2, - sym__class_name, - sym_qualified_type_identifier, - [94455] = 9, + ACTIONS(12718), 1, + anon_sym_RPAREN, + ACTIONS(12720), 1, + anon_sym_COLON, + STATE(8841), 1, + sym_gnu_asm_goto_list, + [266824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, - anon_sym_LBRACE, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, + ACTIONS(12700), 1, anon_sym_COLON, - ACTIONS(6687), 1, - anon_sym_EQ, - STATE(627), 1, - sym_compound_statement, - STATE(3984), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(618), 2, - sym_default_method_clause, - sym_delete_method_clause, - [94485] = 3, + ACTIONS(12722), 1, + anon_sym_RPAREN, + STATE(7630), 1, + sym_gnu_asm_clobber_list, + [266837] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6829), 1, - anon_sym_LBRACK, - ACTIONS(6827), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(12720), 1, anon_sym_COLON, - anon_sym_GT2, - [94503] = 7, + ACTIONS(12724), 1, + anon_sym_RPAREN, + STATE(8853), 1, + sym_gnu_asm_goto_list, + [266850] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2741), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6718), 4, + ACTIONS(8955), 1, anon_sym_COMMA, + ACTIONS(12726), 1, anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT2, - [94529] = 10, + STATE(7885), 1, + aux_sym_generic_expression_repeat1, + [266863] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4140), 1, + ACTIONS(12728), 1, sym_identifier, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - ACTIONS(6415), 1, - anon_sym_LBRACE, - STATE(2246), 1, + STATE(1309), 1, sym_template_type, - STATE(2443), 1, - sym_enumerator_list, - STATE(3923), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(3427), 2, - sym__class_name, - sym_qualified_type_identifier, - [94561] = 5, + STATE(3805), 1, + sym_template_function, + [266876] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6708), 1, - anon_sym_LBRACK, - ACTIONS(6831), 1, - anon_sym_LBRACK_LBRACK, - STATE(3714), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6703), 6, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [94583] = 3, + ACTIONS(12730), 1, + anon_sym_GT2, + STATE(7636), 1, + aux_sym_template_argument_list_repeat1, + [266889] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 1, - anon_sym_LBRACK, - ACTIONS(4631), 9, + ACTIONS(8969), 1, 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, + ACTIONS(12732), 1, anon_sym_GT2, - [94601] = 5, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6714), 1, - anon_sym_LBRACK, - STATE(3714), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6712), 6, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12734), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266915] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12736), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [266928] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12738), 1, + sym_identifier, + STATE(1309), 1, + sym_template_type, + STATE(3097), 1, + sym_template_function, + [266941] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12592), 1, + anon_sym_catch, + STATE(226), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [266952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12538), 1, + anon_sym_COLON_COLON, + ACTIONS(12740), 2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [94623] = 6, + [266963] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6777), 1, + ACTIONS(12742), 1, sym_identifier, - ACTIONS(6783), 1, - sym_raw_string_literal, - ACTIONS(6834), 1, - anon_sym_RPAREN, - STATE(3697), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6781), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [94647] = 10, + STATE(1309), 1, + sym_template_type, + STATE(3887), 1, + sym_template_function, + [266976] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4102), 1, + ACTIONS(12744), 1, sym_identifier, - ACTIONS(4104), 1, - anon_sym_COLON_COLON, - ACTIONS(6415), 1, - anon_sym_LBRACE, - STATE(2246), 1, + STATE(1309), 1, sym_template_type, - STATE(2443), 1, - sym_enumerator_list, - STATE(3909), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(2564), 2, - sym__class_name, - sym_qualified_type_identifier, - [94679] = 10, + STATE(2898), 1, + sym_template_function, + [266989] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(3450), 1, - anon_sym_LBRACE, - ACTIONS(4118), 1, + ACTIONS(12746), 1, sym_identifier, - ACTIONS(4128), 1, - anon_sym_COLON_COLON, - STATE(1302), 1, + STATE(1309), 1, sym_template_type, - STATE(1325), 1, - sym_enumerator_list, - STATE(3888), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(3862), 2, - sym__class_name, - sym_qualified_type_identifier, - [94711] = 3, + STATE(3097), 1, + sym_template_function, + [267002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(3877), 9, + ACTIONS(12748), 3, 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, - [94729] = 9, + [267011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_COLON, - ACTIONS(6736), 1, - anon_sym_EQ, - STATE(622), 1, - sym_compound_statement, - STATE(3985), 1, - sym_field_initializer_list, - ACTIONS(3877), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(623), 2, - sym_default_method_clause, - sym_delete_method_clause, - [94759] = 5, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(12750), 1, + anon_sym_RPAREN, + STATE(7658), 1, + aux_sym_argument_list_repeat1, + [267024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6836), 1, - sym_identifier, - ACTIONS(6840), 1, - sym_system_lib_string, - STATE(5227), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(6838), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [94780] = 8, + ACTIONS(12674), 1, + anon_sym_LPAREN2, + ACTIONS(12752), 1, + anon_sym_constexpr, + STATE(815), 1, + sym_condition_clause, + [267037] = 3, + ACTIONS(10249), 1, + sym_comment, + STATE(7312), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12754), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [267048] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(6842), 1, - sym_identifier, - ACTIONS(6844), 1, + ACTIONS(4055), 1, + anon_sym_LBRACE, + ACTIONS(12133), 1, anon_sym_COLON_COLON, - STATE(3747), 1, - sym__scope_resolution, - STATE(4207), 1, - sym_field_initializer, - STATE(4170), 2, - sym_template_method, - sym_qualified_field_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - [94807] = 8, + STATE(473), 1, + sym_declaration_list, + [267061] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(6842), 1, - sym_identifier, - ACTIONS(6844), 1, - anon_sym_COLON_COLON, - STATE(3747), 1, - sym__scope_resolution, - STATE(4169), 1, - sym_field_initializer, - STATE(4170), 2, - sym_template_method, - sym_qualified_field_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - [94834] = 3, + ACTIONS(1959), 1, + anon_sym_while, + ACTIONS(12756), 1, + anon_sym_else, + STATE(298), 1, + sym_else_clause, + [267074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6848), 1, - anon_sym_LBRACK, - ACTIONS(6846), 8, + ACTIONS(5466), 1, + anon_sym_RBRACE, + ACTIONS(12758), 1, anon_sym_COMMA, + STATE(7669), 1, + aux_sym_initializer_list_repeat1, + [267087] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12500), 1, + anon_sym_COLON, + ACTIONS(12760), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + STATE(7673), 1, + sym_gnu_asm_input_operand_list, + [267100] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12504), 1, anon_sym_COLON, - [94851] = 8, + ACTIONS(12762), 1, + anon_sym_RPAREN, + STATE(7674), 1, + sym_gnu_asm_output_operand_list, + [267113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6852), 1, - anon_sym_EQ, - STATE(2741), 1, - sym_parameter_list, - ACTIONS(6850), 2, + ACTIONS(8969), 1, anon_sym_COMMA, + ACTIONS(12764), 1, anon_sym_GT2, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [94878] = 2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [267126] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6035), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(12766), 1, anon_sym_GT2, - [94893] = 2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [267139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6027), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(12768), 1, anon_sym_GT2, - [94908] = 2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [267152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5913), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(8959), 1, anon_sym_COMMA, + ACTIONS(9133), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [94923] = 9, + STATE(7818), 1, + aux_sym_argument_list_repeat1, + [267165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, + ACTIONS(12514), 1, + anon_sym_COMMA, + ACTIONS(12770), 1, + anon_sym_GT2, + STATE(7758), 1, + aux_sym_template_parameter_list_repeat1, + [267178] = 4, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12602), 1, anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(12772), 1, + aux_sym_preproc_include_token2, + STATE(8961), 1, + sym_preproc_argument_list, + [267191] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9259), 1, + anon_sym_RPAREN, + ACTIONS(12774), 1, + anon_sym_COMMA, + STATE(7658), 1, + aux_sym_argument_list_repeat1, + [267204] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10188), 1, anon_sym_COMMA, - ACTIONS(6856), 1, + ACTIONS(12777), 1, anon_sym_SEMI, - ACTIONS(6858), 1, - anon_sym_LBRACK, - STATE(3965), 1, - sym_parameter_list, - STATE(4413), 1, - aux_sym_type_definition_repeat2, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [94952] = 3, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [267217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6862), 1, - anon_sym_LBRACK, - ACTIONS(6860), 8, + ACTIONS(12572), 1, anon_sym_COMMA, + ACTIONS(12779), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [94969] = 9, + STATE(7774), 1, + aux_sym_parameter_list_repeat1, + [267230] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(12781), 1, + anon_sym_default, + ACTIONS(12783), 1, + anon_sym_delete, + ACTIONS(12785), 1, + aux_sym_pure_virtual_clause_token1, + [267243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12580), 1, + anon_sym_catch, + STATE(274), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [267254] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9087), 1, anon_sym_COMMA, - ACTIONS(6858), 1, - anon_sym_LBRACK, - ACTIONS(6864), 1, - anon_sym_SEMI, - STATE(3965), 1, - sym_parameter_list, - STATE(4327), 1, - aux_sym_type_definition_repeat2, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [94998] = 3, + ACTIONS(12787), 1, + anon_sym_RBRACK, + STATE(7787), 1, + aux_sym_subscript_argument_list_repeat1, + [267267] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4687), 1, - anon_sym_LBRACK, - ACTIONS(4685), 8, + ACTIONS(12789), 1, 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, - [95015] = 3, + ACTIONS(12791), 1, + anon_sym_RBRACK, + STATE(7833), 1, + aux_sym_lambda_capture_specifier_repeat1, + [267280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6868), 1, + ACTIONS(12793), 3, anon_sym_LBRACK, - ACTIONS(6866), 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, - [95032] = 9, + anon_sym_DOT, + [267289] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(12795), 1, + sym_identifier, + STATE(1309), 1, + sym_template_type, + STATE(3097), 1, + sym_template_function, + [267302] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10209), 1, anon_sym_COMMA, - ACTIONS(6858), 1, + ACTIONS(12797), 1, + anon_sym_RPAREN, + STATE(7812), 1, + aux_sym_preproc_argument_list_repeat1, + [267315] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12799), 3, anon_sym_LBRACK, - ACTIONS(6870), 1, - anon_sym_SEMI, - STATE(3965), 1, - sym_parameter_list, - STATE(4229), 1, - aux_sym_type_definition_repeat2, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [95061] = 9, + anon_sym_EQ, + anon_sym_DOT, + [267324] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(9027), 1, + anon_sym_RBRACE, + ACTIONS(12801), 1, anon_sym_COMMA, - ACTIONS(6858), 1, - anon_sym_LBRACK, - ACTIONS(6872), 1, - anon_sym_SEMI, - STATE(3965), 1, - sym_parameter_list, - STATE(4270), 1, - aux_sym_type_definition_repeat2, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [95090] = 7, + STATE(7669), 1, + aux_sym_initializer_list_repeat1, + [267337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(7255), 1, + anon_sym___attribute, + ACTIONS(7257), 2, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6858), 1, - anon_sym_LBRACK, - STATE(3965), 1, - sym_parameter_list, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6874), 3, + [267348] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12804), 1, anon_sym_COMMA, + ACTIONS(12806), 1, anon_sym_RPAREN, - anon_sym_SEMI, - [95115] = 3, + STATE(7763), 1, + aux_sym_requires_parameter_list_repeat1, + [267361] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6878), 1, - anon_sym_LBRACK, - ACTIONS(6876), 8, + ACTIONS(12520), 1, anon_sym_COMMA, + ACTIONS(12808), 1, + anon_sym_RBRACK_RBRACK, + STATE(7700), 1, + aux_sym_attribute_declaration_repeat1, + [267374] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12700), 1, + anon_sym_COLON, + ACTIONS(12810), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + STATE(7683), 1, + sym_gnu_asm_clobber_list, + [267387] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12500), 1, anon_sym_COLON, - [95132] = 9, + ACTIONS(12812), 1, + anon_sym_RPAREN, + STATE(7684), 1, + sym_gnu_asm_input_operand_list, + [267400] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, - anon_sym_COMMA, - ACTIONS(6858), 1, - anon_sym_LBRACK, - ACTIONS(6880), 1, - anon_sym_SEMI, - STATE(3965), 1, - sym_parameter_list, - STATE(4386), 1, - aux_sym_type_definition_repeat2, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [95161] = 9, + ACTIONS(12500), 1, + anon_sym_COLON, + ACTIONS(12814), 1, + anon_sym_RPAREN, + STATE(7723), 1, + sym_gnu_asm_input_operand_list, + [267413] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(6785), 1, anon_sym_COMMA, - ACTIONS(6858), 1, - anon_sym_LBRACK, - ACTIONS(6882), 1, - anon_sym_SEMI, - STATE(3965), 1, - sym_parameter_list, - STATE(4426), 1, - aux_sym_type_definition_repeat2, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [95190] = 9, + ACTIONS(6787), 1, + anon_sym_RPAREN, + STATE(7685), 1, + aux_sym__call_macro_with_decl_first_arg_repeat1, + [267426] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(12504), 1, + anon_sym_COLON, + ACTIONS(12816), 1, + anon_sym_RPAREN, + STATE(7724), 1, + sym_gnu_asm_output_operand_list, + [267439] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8969), 1, anon_sym_COMMA, - ACTIONS(6858), 1, - anon_sym_LBRACK, - ACTIONS(6884), 1, - anon_sym_SEMI, - STATE(3965), 1, - sym_parameter_list, - STATE(4332), 1, - aux_sym_type_definition_repeat2, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [95219] = 7, + ACTIONS(12818), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [267452] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6858), 1, - anon_sym_LBRACK, - STATE(3965), 1, - sym_parameter_list, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6886), 3, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [95244] = 7, + ACTIONS(12820), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [267465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2899), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6718), 3, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [95269] = 9, + ACTIONS(12822), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [267478] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(6778), 1, anon_sym_COMMA, - ACTIONS(6858), 1, - anon_sym_LBRACK, - ACTIONS(6888), 1, - anon_sym_SEMI, - STATE(3965), 1, - sym_parameter_list, - STATE(4430), 1, - aux_sym_type_definition_repeat2, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [95298] = 2, + ACTIONS(12824), 1, + anon_sym_RBRACK, + STATE(7822), 1, + aux_sym_structured_binding_declarator_repeat1, + [267491] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6075), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(12789), 1, anon_sym_COMMA, + ACTIONS(12826), 1, + anon_sym_RBRACK, + STATE(7833), 1, + aux_sym_lambda_capture_specifier_repeat1, + [267504] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12720), 1, + anon_sym_COLON, + ACTIONS(12828), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [95313] = 3, + STATE(9062), 1, + sym_gnu_asm_goto_list, + [267517] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6892), 1, - anon_sym_LBRACK, - ACTIONS(6890), 8, + ACTIONS(12700), 1, + anon_sym_COLON, + ACTIONS(12830), 1, + anon_sym_RPAREN, + STATE(7688), 1, + sym_gnu_asm_clobber_list, + [267530] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6785), 1, anon_sym_COMMA, + ACTIONS(12832), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + STATE(7727), 1, + aux_sym__call_macro_with_decl_first_arg_repeat1, + [267543] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4083), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(12133), 1, + anon_sym_COLON_COLON, + STATE(490), 1, + sym_declaration_list, + [267556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12834), 1, + anon_sym_catch, + STATE(663), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [267567] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12720), 1, anon_sym_COLON, - [95330] = 9, + ACTIONS(12836), 1, + anon_sym_RPAREN, + STATE(9124), 1, + sym_gnu_asm_goto_list, + [267580] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6844), 1, - anon_sym_COLON_COLON, - ACTIONS(6894), 1, - sym_identifier, - ACTIONS(6896), 1, - anon_sym_template, - STATE(3747), 1, - sym__scope_resolution, - STATE(4675), 1, - sym_qualified_field_identifier, - STATE(4681), 1, - sym_dependent_field_identifier, - STATE(4682), 1, - sym_template_method, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - [95359] = 3, + ACTIONS(8955), 1, + anon_sym_COMMA, + ACTIONS(12838), 1, + anon_sym_RPAREN, + STATE(7885), 1, + aux_sym_generic_expression_repeat1, + [267593] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, - anon_sym_LBRACK, - ACTIONS(6898), 8, + ACTIONS(12616), 1, anon_sym_COMMA, + ACTIONS(12840), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [95376] = 9, + STATE(7576), 1, + aux_sym_preproc_params_repeat1, + [267606] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12520), 1, + anon_sym_COMMA, + ACTIONS(12842), 1, + anon_sym_RBRACK_RBRACK, + STATE(7869), 1, + aux_sym_attribute_declaration_repeat1, + [267619] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(10188), 1, anon_sym_COMMA, - ACTIONS(6858), 1, - anon_sym_LBRACK, - ACTIONS(6902), 1, + ACTIONS(12844), 1, anon_sym_SEMI, - STATE(3965), 1, - sym_parameter_list, - STATE(4236), 1, - aux_sym_type_definition_repeat2, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [95405] = 6, + STATE(7718), 1, + aux_sym_declaration_repeat1, + [267632] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3826), 1, - anon_sym_AMP, - ACTIONS(6417), 1, - anon_sym_COLON, - STATE(2439), 1, - sym_enumerator_list, - STATE(2630), 1, - sym__enum_base_clause, - ACTIONS(3828), 5, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - anon_sym_LBRACK, - [95428] = 9, + ACTIONS(12846), 1, + sym_identifier, + STATE(1309), 1, + sym_template_type, + STATE(3097), 1, + sym_template_function, + [267645] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(10188), 1, anon_sym_COMMA, - ACTIONS(6858), 1, - anon_sym_LBRACK, - ACTIONS(6904), 1, + ACTIONS(12848), 1, anon_sym_SEMI, - STATE(3965), 1, - sym_parameter_list, - STATE(4299), 1, - aux_sym_type_definition_repeat2, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [95457] = 7, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [267658] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12720), 1, + anon_sym_COLON, + ACTIONS(12850), 1, + anon_sym_RPAREN, + STATE(8776), 1, + sym_gnu_asm_goto_list, + [267671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(7155), 1, + anon_sym___attribute, + ACTIONS(7157), 2, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2899), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6681), 3, + [267682] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12572), 1, anon_sym_COMMA, + ACTIONS(12852), 1, anon_sym_RPAREN, - anon_sym_SEMI, - [95482] = 2, + STATE(7774), 1, + aux_sym_parameter_list_repeat1, + [267695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6089), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(8935), 1, + anon_sym_RBRACE, + ACTIONS(8953), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [95497] = 2, + STATE(7877), 1, + aux_sym_initializer_list_repeat1, + [267708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6019), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(12804), 1, anon_sym_COMMA, + ACTIONS(12854), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [95512] = 9, + STATE(7671), 1, + aux_sym_requires_parameter_list_repeat1, + [267721] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(12520), 1, anon_sym_COMMA, - ACTIONS(6858), 1, - anon_sym_LBRACK, - ACTIONS(6906), 1, - anon_sym_SEMI, - STATE(3965), 1, - sym_parameter_list, - STATE(4313), 1, - aux_sym_type_definition_repeat2, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [95541] = 5, + ACTIONS(12856), 1, + anon_sym_RBRACK_RBRACK, + STATE(7790), 1, + aux_sym_attribute_declaration_repeat1, + [267734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6908), 1, - sym_identifier, - ACTIONS(6910), 1, - sym_system_lib_string, - STATE(5041), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(6838), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [95562] = 5, + ACTIONS(12606), 1, + anon_sym_catch, + STATE(1083), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [267745] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6912), 1, - sym_identifier, - ACTIONS(6914), 1, - sym_system_lib_string, - STATE(4859), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(6838), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [95583] = 9, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(9011), 1, + anon_sym_RPAREN, + STATE(7726), 1, + aux_sym_argument_list_repeat1, + [267758] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(12789), 1, anon_sym_COMMA, - ACTIONS(6858), 1, - anon_sym_LBRACK, - ACTIONS(6916), 1, - anon_sym_SEMI, - STATE(3965), 1, - sym_parameter_list, - STATE(4369), 1, - aux_sym_type_definition_repeat2, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [95612] = 6, + ACTIONS(12858), 1, + anon_sym_RBRACK, + STATE(7682), 1, + aux_sym_lambda_capture_specifier_repeat1, + [267771] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(3362), 1, - anon_sym_LT, - ACTIONS(3863), 1, - anon_sym_LBRACK, - STATE(2085), 1, - sym_template_argument_list, - ACTIONS(3877), 5, + ACTIONS(9013), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(9015), 1, + anon_sym_RBRACE, + STATE(7728), 1, + aux_sym_initializer_list_repeat1, + [267784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7187), 1, + anon_sym___attribute, + ACTIONS(7189), 2, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [95635] = 9, + [267795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(7101), 1, + anon_sym___attribute, + ACTIONS(7103), 2, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, - anon_sym_COMMA, - ACTIONS(6858), 1, - anon_sym_LBRACK, - ACTIONS(6918), 1, - anon_sym_SEMI, - STATE(3965), 1, - sym_parameter_list, - STATE(4441), 1, - aux_sym_type_definition_repeat2, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [95664] = 4, + [267806] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3452), 1, - anon_sym_AMP, - ACTIONS(3454), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(12860), 1, + sym_identifier, + STATE(1309), 1, + sym_template_type, + STATE(3097), 1, + sym_template_function, + [267819] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12862), 1, anon_sym_EQ, - [95683] = 9, + ACTIONS(11693), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [267830] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(10188), 1, anon_sym_COMMA, - ACTIONS(6858), 1, - anon_sym_LBRACK, - ACTIONS(6920), 1, + ACTIONS(12864), 1, anon_sym_SEMI, - STATE(3965), 1, - sym_parameter_list, - STATE(4366), 1, - aux_sym_type_definition_repeat2, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [95712] = 7, + STATE(7554), 1, + aux_sym_declaration_repeat1, + [267843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2899), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6671), 3, - anon_sym_COMMA, + ACTIONS(12504), 1, + anon_sym_COLON, + ACTIONS(12866), 1, anon_sym_RPAREN, - anon_sym_SEMI, - [95737] = 2, + STATE(7730), 1, + sym_gnu_asm_output_operand_list, + [267856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(12167), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(12374), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [95752] = 4, + STATE(7909), 1, + aux_sym_base_class_clause_repeat1, + [267869] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, - anon_sym_AMP, - STATE(3797), 1, - sym_enumerator_list, - ACTIONS(3489), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(12167), 1, + anon_sym_COMMA, + ACTIONS(12374), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [95771] = 2, + STATE(7715), 1, + aux_sym_base_class_clause_repeat1, + [267882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6045), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(12868), 1, anon_sym_GT2, - [95786] = 4, + STATE(7736), 1, + aux_sym_template_argument_list_repeat1, + [267895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, - anon_sym_AMP, - STATE(3817), 1, - sym_enumerator_list, - ACTIONS(3448), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(12870), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12872), 2, + anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [95805] = 6, + [267906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, - anon_sym_AMP, - ACTIONS(6417), 1, - anon_sym_COLON, - STATE(2447), 1, - sym_enumerator_list, - STATE(2635), 1, - sym__enum_base_clause, - ACTIONS(3834), 5, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(12872), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - [95828] = 2, + ACTIONS(12874), 1, + anon_sym_COMMA, + STATE(7715), 1, + aux_sym_base_class_clause_repeat1, + [267919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6101), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(10188), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(12877), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [95843] = 5, + STATE(7737), 1, + aux_sym_declaration_repeat1, + [267932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6922), 1, - sym_identifier, - ACTIONS(6924), 1, - sym_system_lib_string, - STATE(4935), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(6838), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [95864] = 7, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(12879), 1, + anon_sym_SEMI, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [267945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6858), 1, - anon_sym_LBRACK, - STATE(3965), 1, - sym_parameter_list, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6926), 3, + ACTIONS(10188), 1, anon_sym_COMMA, + ACTIONS(12881), 1, + anon_sym_SEMI, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [267958] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9009), 3, anon_sym_RPAREN, anon_sym_SEMI, - [95889] = 9, + anon_sym_COLON, + [267967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(12885), 1, + anon_sym_RPAREN, + ACTIONS(12883), 2, anon_sym_COMMA, - ACTIONS(6858), 1, - anon_sym_LBRACK, - ACTIONS(6928), 1, anon_sym_SEMI, - STATE(3965), 1, - sym_parameter_list, - STATE(4420), 1, - aux_sym_type_definition_repeat2, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [95918] = 7, + [267978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2899), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6742), 3, + ACTIONS(12887), 1, + anon_sym_catch, + STATE(962), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [267989] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12889), 1, anon_sym_COMMA, + ACTIONS(12891), 1, anon_sym_RPAREN, - anon_sym_SEMI, - [95943] = 2, + STATE(7767), 1, + aux_sym_alone_macro_call_repeat1, + [268002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6071), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12700), 1, + anon_sym_COLON, + ACTIONS(12893), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [95958] = 2, + STATE(7743), 1, + sym_gnu_asm_clobber_list, + [268015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5905), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12500), 1, + anon_sym_COLON, + ACTIONS(12895), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [95973] = 2, + STATE(7744), 1, + sym_gnu_asm_input_operand_list, + [268028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6115), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(12897), 1, anon_sym_GT2, - [95988] = 7, + STATE(7527), 1, + aux_sym_template_argument_list_repeat1, + [268041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6858), 1, - anon_sym_LBRACK, - STATE(3965), 1, - sym_parameter_list, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6930), 3, + ACTIONS(8959), 1, anon_sym_COMMA, + ACTIONS(12899), 1, anon_sym_RPAREN, - anon_sym_SEMI, - [96013] = 7, + STATE(7658), 1, + aux_sym_argument_list_repeat1, + [268054] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2899), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6720), 3, - anon_sym_COMMA, + ACTIONS(6875), 1, anon_sym_RPAREN, - anon_sym_SEMI, - [96038] = 8, + ACTIONS(12901), 1, + anon_sym_COMMA, + STATE(7727), 1, + aux_sym__call_macro_with_decl_first_arg_repeat1, + [268067] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6932), 1, - anon_sym_EQ, - STATE(2741), 1, - sym_parameter_list, - ACTIONS(6850), 2, + ACTIONS(5498), 1, + anon_sym_RBRACE, + ACTIONS(12904), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [96065] = 9, + STATE(7669), 1, + aux_sym_initializer_list_repeat1, + [268080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(7231), 1, + anon_sym___attribute, + ACTIONS(7233), 2, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + [268091] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12500), 1, + anon_sym_COLON, + ACTIONS(12906), 1, + anon_sym_RPAREN, + STATE(7750), 1, + sym_gnu_asm_input_operand_list, + [268104] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12700), 1, + anon_sym_COLON, + ACTIONS(12908), 1, + anon_sym_RPAREN, + STATE(7932), 1, + sym_gnu_asm_clobber_list, + [268117] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12504), 1, + anon_sym_COLON, + ACTIONS(12910), 1, + anon_sym_RPAREN, + STATE(7751), 1, + sym_gnu_asm_output_operand_list, + [268130] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8969), 1, anon_sym_COMMA, - ACTIONS(6858), 1, - anon_sym_LBRACK, - ACTIONS(6934), 1, - anon_sym_SEMI, - STATE(3965), 1, - sym_parameter_list, - STATE(4197), 1, - aux_sym_type_definition_repeat2, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [96094] = 2, + ACTIONS(12912), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [268143] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6007), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, anon_sym_COMMA, + ACTIONS(12914), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [268156] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12500), 1, + anon_sym_COLON, + ACTIONS(12916), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + STATE(7748), 1, + sym_gnu_asm_input_operand_list, + [268169] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(12918), 1, anon_sym_GT2, - [96109] = 2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [268182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6023), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(10188), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(12920), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [96124] = 6, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [268195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2468), 1, - anon_sym_LBRACK, - ACTIONS(3362), 1, - anon_sym_LT, - STATE(2085), 1, - sym_template_argument_list, - ACTIONS(2461), 5, + ACTIONS(10188), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(12922), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [96147] = 5, + STATE(7792), 1, + aux_sym_declaration_repeat1, + [268208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6938), 1, - anon_sym_LBRACK, - STATE(3619), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6936), 4, + ACTIONS(12924), 1, anon_sym_COMMA, + ACTIONS(12927), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - [96167] = 8, + STATE(7739), 1, + aux_sym_throw_specifier_repeat1, + [268221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(6603), 1, - anon_sym_COLON_COLON, - ACTIONS(6940), 1, - sym_identifier, - ACTIONS(6942), 1, - anon_sym_namespace, - STATE(3546), 1, - sym__scope_resolution, - STATE(5171), 1, - sym_qualified_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - [96193] = 5, + ACTIONS(12887), 1, + anon_sym_catch, + STATE(965), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [268232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6944), 1, - sym_raw_string_literal, - STATE(3666), 1, - sym_string_literal, - STATE(5060), 1, - sym_concatenated_string, - ACTIONS(6781), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [96213] = 5, + ACTIONS(7211), 1, + anon_sym___attribute, + ACTIONS(7213), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [268243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6946), 1, - sym_raw_string_literal, - STATE(3682), 1, - sym_string_literal, - STATE(4875), 1, - sym_concatenated_string, - ACTIONS(6781), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [96233] = 3, + ACTIONS(12540), 1, + anon_sym_catch, + STATE(145), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [268254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_AMP, - ACTIONS(3635), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96249] = 3, + ACTIONS(12720), 1, + anon_sym_COLON, + ACTIONS(12929), 1, + anon_sym_RPAREN, + STATE(9231), 1, + sym_gnu_asm_goto_list, + [268267] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3627), 1, - anon_sym_AMP, - ACTIONS(3629), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96265] = 3, + ACTIONS(12700), 1, + anon_sym_COLON, + ACTIONS(12931), 1, + anon_sym_RPAREN, + STATE(7762), 1, + sym_gnu_asm_clobber_list, + [268280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 1, - anon_sym_AMP, - ACTIONS(3625), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96281] = 3, + ACTIONS(12580), 1, + anon_sym_catch, + STATE(209), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [268291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3619), 1, - anon_sym_AMP, - ACTIONS(3621), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96297] = 3, + ACTIONS(12137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12933), 2, + anon_sym_COMMA, + anon_sym_GT2, + [268302] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 1, - anon_sym_AMP, - ACTIONS(3617), 7, + ACTIONS(12674), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96313] = 3, + ACTIONS(12935), 1, + anon_sym_constexpr, + STATE(830), 1, + sym_condition_clause, + [268315] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3611), 1, - anon_sym_AMP, - ACTIONS(3613), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96329] = 3, + ACTIONS(12700), 1, + anon_sym_COLON, + ACTIONS(12937), 1, + anon_sym_RPAREN, + STATE(7695), 1, + sym_gnu_asm_clobber_list, + [268328] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3607), 1, - anon_sym_AMP, - ACTIONS(3609), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96345] = 3, + ACTIONS(12939), 1, + anon_sym_COMMA, + ACTIONS(12942), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [268341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, - anon_sym_AMP, - ACTIONS(3597), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96361] = 3, + ACTIONS(12700), 1, + anon_sym_COLON, + ACTIONS(12944), 1, + anon_sym_RPAREN, + STATE(7755), 1, + sym_gnu_asm_clobber_list, + [268354] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12500), 1, + anon_sym_COLON, + ACTIONS(12946), 1, + anon_sym_RPAREN, + STATE(7757), 1, + sym_gnu_asm_input_operand_list, + [268367] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12948), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [268376] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12950), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [268385] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12889), 1, + anon_sym_COMMA, + ACTIONS(12952), 1, + anon_sym_RPAREN, + STATE(7722), 1, + aux_sym_alone_macro_call_repeat1, + [268398] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12720), 1, + anon_sym_COLON, + ACTIONS(12954), 1, + anon_sym_RPAREN, + STATE(9183), 1, + sym_gnu_asm_goto_list, + [268411] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12956), 1, + anon_sym_default, + ACTIONS(12958), 1, + anon_sym_delete, + ACTIONS(12960), 1, + aux_sym_pure_virtual_clause_token1, + [268424] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2490), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(12700), 1, anon_sym_COLON, - [96377] = 3, + ACTIONS(12962), 1, + anon_sym_RPAREN, + STATE(7760), 1, + sym_gnu_asm_clobber_list, + [268437] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, - anon_sym_AMP, - ACTIONS(3557), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96393] = 3, + ACTIONS(12964), 1, + anon_sym_COMMA, + ACTIONS(12967), 1, + anon_sym_GT2, + STATE(7758), 1, + aux_sym_template_parameter_list_repeat1, + [268450] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3645), 1, - anon_sym_AMP, - ACTIONS(3647), 7, + ACTIONS(12674), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96409] = 8, + ACTIONS(12969), 1, + anon_sym_constexpr, + STATE(822), 1, + sym_condition_clause, + [268463] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(6603), 1, - anon_sym_COLON_COLON, - ACTIONS(6948), 1, - sym_identifier, - ACTIONS(6950), 1, - anon_sym_namespace, - STATE(3546), 1, - sym__scope_resolution, - STATE(5239), 1, - sym_qualified_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - [96435] = 9, + ACTIONS(12720), 1, + anon_sym_COLON, + ACTIONS(12971), 1, + anon_sym_RPAREN, + STATE(9218), 1, + sym_gnu_asm_goto_list, + [268476] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(6043), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(8955), 1, anon_sym_COMMA, - ACTIONS(6952), 1, - anon_sym_SEMI, - ACTIONS(6954), 1, - anon_sym_EQ, - STATE(3953), 1, - aux_sym_field_declaration_repeat1, - STATE(5201), 1, - sym_bitfield_clause, - STATE(5202), 1, - sym_initializer_list, - [96463] = 5, + ACTIONS(12973), 1, + anon_sym_RPAREN, + STATE(7885), 1, + aux_sym_generic_expression_repeat1, + [268489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6956), 1, - sym_raw_string_literal, - STATE(3717), 1, - sym_string_literal, - STATE(4924), 1, - sym_concatenated_string, - ACTIONS(6781), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [96483] = 5, + ACTIONS(12720), 1, + anon_sym_COLON, + ACTIONS(12975), 1, + anon_sym_RPAREN, + STATE(8418), 1, + sym_gnu_asm_goto_list, + [268502] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6958), 1, - sym_raw_string_literal, - STATE(3676), 1, - sym_string_literal, - STATE(4960), 1, - sym_concatenated_string, - ACTIONS(6781), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [96503] = 3, + ACTIONS(12977), 1, + anon_sym_COMMA, + ACTIONS(12980), 1, + anon_sym_RPAREN, + STATE(7763), 1, + aux_sym_requires_parameter_list_repeat1, + [268515] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3689), 1, - anon_sym_AMP, - ACTIONS(3691), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(12982), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96519] = 3, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [268528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2451), 1, - anon_sym_LBRACK, - ACTIONS(2453), 7, + ACTIONS(8955), 1, anon_sym_COMMA, + ACTIONS(12984), 1, + anon_sym_RPAREN, + STATE(7885), 1, + aux_sym_generic_expression_repeat1, + [268541] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12674), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [96535] = 3, + ACTIONS(12986), 1, + anon_sym_constexpr, + STATE(851), 1, + sym_condition_clause, + [268554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2494), 1, - anon_sym_LBRACK, - ACTIONS(2496), 7, + ACTIONS(12988), 1, anon_sym_COMMA, + ACTIONS(12991), 1, + anon_sym_RPAREN, + STATE(7767), 1, + aux_sym_alone_macro_call_repeat1, + [268567] = 4, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12602), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [96551] = 3, + ACTIONS(12993), 1, + aux_sym_preproc_include_token2, + STATE(8961), 1, + sym_preproc_argument_list, + [268580] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3503), 1, - anon_sym_AMP, - ACTIONS(3505), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(12995), 1, + anon_sym_COMMA, + ACTIONS(12998), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96567] = 3, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [268593] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 1, - anon_sym_AMP, - ACTIONS(3513), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96583] = 3, + ACTIONS(6785), 1, + anon_sym_COMMA, + ACTIONS(6798), 1, + anon_sym_RPAREN, + STATE(7878), 1, + aux_sym__call_macro_with_decl_first_arg_repeat1, + [268606] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3563), 1, - anon_sym_AMP, - ACTIONS(3565), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96599] = 3, + ACTIONS(13000), 1, + sym_identifier, + STATE(1309), 1, + sym_template_type, + STATE(3097), 1, + sym_template_function, + [268619] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3567), 1, - anon_sym_AMP, - ACTIONS(3569), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(13002), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96615] = 5, + STATE(7552), 1, + aux_sym_declaration_repeat1, + [268632] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6960), 1, - sym_raw_string_literal, - STATE(3704), 1, - sym_string_literal, - STATE(4977), 1, - sym_concatenated_string, - ACTIONS(6781), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [96635] = 3, + ACTIONS(12520), 1, + anon_sym_COMMA, + ACTIONS(13004), 1, + anon_sym_RBRACK_RBRACK, + STATE(7823), 1, + aux_sym_attribute_declaration_repeat1, + [268645] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 1, - anon_sym_AMP, - ACTIONS(3501), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96651] = 3, + ACTIONS(13006), 1, + anon_sym_COMMA, + ACTIONS(13009), 1, + anon_sym_RPAREN, + STATE(7774), 1, + aux_sym_parameter_list_repeat1, + [268658] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3649), 1, - anon_sym_AMP, - ACTIONS(3651), 7, + ACTIONS(12674), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96667] = 3, + ACTIONS(13011), 1, + anon_sym_constexpr, + STATE(838), 1, + sym_condition_clause, + [268671] = 3, + ACTIONS(10249), 1, + sym_comment, + STATE(7394), 1, + aux_sym_char_literal_repeat1, + ACTIONS(13013), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [268682] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3665), 1, - anon_sym_AMP, - ACTIONS(3667), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96683] = 3, + ACTIONS(13015), 1, + anon_sym_COMMA, + ACTIONS(13017), 1, + anon_sym_RPAREN, + STATE(7868), 1, + aux_sym_throw_specifier_repeat1, + [268695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, - anon_sym_AMP, - ACTIONS(3675), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96699] = 3, + ACTIONS(13019), 1, + anon_sym_default, + ACTIONS(13021), 1, + anon_sym_delete, + ACTIONS(13023), 1, + aux_sym_pure_virtual_clause_token1, + [268708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, - anon_sym_AMP, - ACTIONS(3683), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96715] = 3, + ACTIONS(12572), 1, + anon_sym_COMMA, + ACTIONS(13025), 1, + anon_sym_RPAREN, + STATE(7774), 1, + aux_sym_parameter_list_repeat1, + [268721] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, - anon_sym_AMP, - ACTIONS(3687), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(13027), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96731] = 3, + STATE(7764), 1, + aux_sym_declaration_repeat1, + [268734] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3697), 1, - anon_sym_AMP, - ACTIONS(3699), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96747] = 3, + ACTIONS(12520), 1, + anon_sym_COMMA, + ACTIONS(13029), 1, + anon_sym_RBRACK_RBRACK, + STATE(7807), 1, + aux_sym_attribute_declaration_repeat1, + [268747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, - anon_sym_AMP, - ACTIONS(3497), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96763] = 3, + ACTIONS(7291), 1, + anon_sym___attribute, + ACTIONS(7293), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [268758] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3693), 1, - anon_sym_AMP, - ACTIONS(3695), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(13031), 1, + anon_sym_COMMA, + ACTIONS(13034), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96779] = 3, + STATE(7783), 1, + aux_sym_field_initializer_list_repeat1, + [268771] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, - anon_sym_AMP, - ACTIONS(3655), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96795] = 8, + ACTIONS(12520), 1, + anon_sym_COMMA, + ACTIONS(13036), 1, + anon_sym_RBRACK_RBRACK, + STATE(7804), 1, + aux_sym_attribute_declaration_repeat1, + [268784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(6603), 1, - anon_sym_COLON_COLON, - ACTIONS(6962), 1, - sym_identifier, - ACTIONS(6964), 1, - anon_sym_namespace, - STATE(3546), 1, - sym__scope_resolution, - STATE(5097), 1, - sym_qualified_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - [96821] = 3, + ACTIONS(7093), 1, + anon_sym___attribute, + ACTIONS(7095), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [268795] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LBRACK, - ACTIONS(2478), 7, + ACTIONS(10188), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(13038), 1, anon_sym_SEMI, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [268808] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9273), 1, + anon_sym_RBRACK, + ACTIONS(13040), 1, + anon_sym_COMMA, + STATE(7787), 1, + aux_sym_subscript_argument_list_repeat1, + [268821] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7149), 1, + anon_sym___attribute, + ACTIONS(7151), 2, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [96837] = 3, + [268832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 1, - sym_identifier, - ACTIONS(3743), 7, - sym_raw_string_literal, - anon_sym_RPAREN, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [96853] = 3, + ACTIONS(13043), 1, + anon_sym_catch, + STATE(136), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [268843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3657), 1, - anon_sym_AMP, - ACTIONS(3659), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96869] = 3, + ACTIONS(13045), 1, + anon_sym_COMMA, + ACTIONS(13048), 1, + anon_sym_RBRACK_RBRACK, + STATE(7790), 1, + aux_sym_attribute_declaration_repeat1, + [268856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3677), 1, - anon_sym_AMP, - ACTIONS(3679), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(5074), 1, + anon_sym_LT, + ACTIONS(7047), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96885] = 3, + STATE(2444), 1, + sym_template_argument_list, + [268869] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3705), 1, - anon_sym_AMP, - ACTIONS(3707), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(13050), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96901] = 3, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [268882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3669), 1, - anon_sym_AMP, - ACTIONS(3671), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96917] = 3, + ACTIONS(12887), 1, + anon_sym_catch, + STATE(966), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [268893] = 3, + ACTIONS(10249), 1, + sym_comment, + STATE(7227), 1, + aux_sym_char_literal_repeat1, + ACTIONS(13052), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [268904] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 1, - anon_sym_AMP, - ACTIONS(3561), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(13054), 1, + anon_sym_default, + ACTIONS(13056), 1, + anon_sym_delete, + ACTIONS(13058), 1, + aux_sym_pure_virtual_clause_token1, + [268917] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(13060), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96933] = 8, + STATE(7827), 1, + aux_sym_declaration_repeat1, + [268930] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(6603), 1, - anon_sym_COLON_COLON, - ACTIONS(6966), 1, - sym_identifier, - ACTIONS(6968), 1, - anon_sym_namespace, - STATE(3546), 1, - sym__scope_resolution, - STATE(4893), 1, - sym_qualified_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - [96959] = 3, + ACTIONS(12572), 1, + anon_sym_COMMA, + ACTIONS(13062), 1, + anon_sym_RPAREN, + STATE(7779), 1, + aux_sym_parameter_list_repeat1, + [268943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, - anon_sym_AMP, - ACTIONS(3525), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(13064), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13066), 2, + anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96975] = 3, + [268954] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3515), 1, - anon_sym_AMP, - ACTIONS(3517), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [96991] = 3, + ACTIONS(13068), 1, + sym_identifier, + STATE(1309), 1, + sym_template_type, + STATE(3097), 1, + sym_template_function, + [268967] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3507), 1, - anon_sym_AMP, - ACTIONS(3509), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [97007] = 3, + ACTIONS(13070), 1, + anon_sym_default, + ACTIONS(13072), 1, + anon_sym_delete, + ACTIONS(13074), 1, + aux_sym_pure_virtual_clause_token1, + [268980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, - anon_sym_AMP, - ACTIONS(3581), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(12167), 1, + anon_sym_COMMA, + ACTIONS(13076), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [97023] = 3, + STATE(7715), 1, + aux_sym_base_class_clause_repeat1, + [268993] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3637), 1, - anon_sym_AMP, - ACTIONS(3639), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(13078), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [97039] = 3, + STATE(7847), 1, + aux_sym_declaration_repeat1, + [269006] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3603), 1, - anon_sym_AMP, - ACTIONS(3605), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [97055] = 3, + ACTIONS(13080), 1, + sym_identifier, + STATE(2461), 1, + sym_template_type, + STATE(3552), 1, + sym_template_function, + [269019] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3641), 1, - anon_sym_AMP, - ACTIONS(3643), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [97071] = 8, + ACTIONS(12520), 1, + anon_sym_COMMA, + ACTIONS(13082), 1, + anon_sym_RBRACK_RBRACK, + STATE(7790), 1, + aux_sym_attribute_declaration_repeat1, + [269032] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 1, - anon_sym_LBRACE, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(640), 1, - sym_compound_statement, - STATE(3152), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [97097] = 9, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(9045), 1, + anon_sym_RPAREN, + STATE(7844), 1, + aux_sym_argument_list_repeat1, + [269045] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(6043), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(8955), 1, anon_sym_COMMA, - ACTIONS(6970), 1, - anon_sym_SEMI, - ACTIONS(6972), 1, - anon_sym_EQ, - STATE(3953), 1, - aux_sym_field_declaration_repeat1, - STATE(4947), 1, - sym_bitfield_clause, - STATE(4948), 1, - sym_initializer_list, - [97125] = 4, + ACTIONS(13084), 1, + anon_sym_RPAREN, + STATE(7885), 1, + aux_sym_generic_expression_repeat1, + [269058] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6976), 1, - anon_sym_AMP, - ACTIONS(6978), 2, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(6974), 5, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - anon_sym_LBRACK, - [97143] = 3, + ACTIONS(12520), 1, + anon_sym_COMMA, + ACTIONS(13086), 1, + anon_sym_RBRACK_RBRACK, + STATE(7790), 1, + aux_sym_attribute_declaration_repeat1, + [269071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 1, - anon_sym_LBRACK, - ACTIONS(2510), 7, + ACTIONS(13088), 3, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COLON, - [97159] = 8, + [269080] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2319), 1, - anon_sym_COLON_COLON, - ACTIONS(4118), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(3912), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(4200), 2, - sym__class_name, - sym_qualified_type_identifier, - [97185] = 3, + ACTIONS(13090), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [269089] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(2449), 7, + ACTIONS(8959), 1, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [97201] = 8, + ACTIONS(9151), 1, + anon_sym_RPAREN, + STATE(7644), 1, + aux_sym_argument_list_repeat1, + [269102] = 3, + ACTIONS(10249), 1, + sym_comment, + STATE(7225), 1, + aux_sym_char_literal_repeat1, + ACTIONS(13092), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [269113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(269), 1, - anon_sym_LBRACE, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(249), 1, - sym_compound_statement, - STATE(3152), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [97227] = 8, + ACTIONS(10457), 1, + anon_sym_RPAREN, + ACTIONS(13094), 1, + anon_sym_COMMA, + STATE(7812), 1, + aux_sym_preproc_argument_list_repeat1, + [269126] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12520), 1, + anon_sym_COMMA, + ACTIONS(13097), 1, + anon_sym_RBRACK_RBRACK, + STATE(7622), 1, + aux_sym_attribute_declaration_repeat1, + [269139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(6603), 1, - anon_sym_COLON_COLON, - ACTIONS(6980), 1, + ACTIONS(13099), 1, sym_identifier, - ACTIONS(6982), 1, - anon_sym_namespace, - STATE(3546), 1, - sym__scope_resolution, - STATE(5017), 1, - sym_qualified_identifier, - STATE(4853), 2, + STATE(1309), 1, sym_template_type, - sym_dependent_type_identifier, - [97253] = 9, + STATE(2898), 1, + sym_template_function, + [269152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(6043), 1, - anon_sym_COLON, - ACTIONS(6419), 1, + ACTIONS(13101), 1, anon_sym_COMMA, - ACTIONS(6984), 1, - anon_sym_SEMI, - ACTIONS(6986), 1, - anon_sym_EQ, - STATE(3953), 1, - aux_sym_field_declaration_repeat1, - STATE(5132), 1, - sym_bitfield_clause, - STATE(5133), 1, - sym_initializer_list, - [97281] = 3, + ACTIONS(13104), 1, + anon_sym_RPAREN, + STATE(7815), 1, + aux_sym_preproc_params_repeat1, + [269165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3661), 1, - anon_sym_AMP, - ACTIONS(3663), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [97297] = 5, + ACTIONS(13106), 1, + anon_sym_default, + ACTIONS(13108), 1, + anon_sym_delete, + ACTIONS(13110), 1, + aux_sym_pure_virtual_clause_token1, + [269178] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6988), 1, - sym_raw_string_literal, - STATE(3663), 1, - sym_string_literal, - STATE(5095), 1, - sym_concatenated_string, - ACTIONS(6781), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [97317] = 3, + ACTIONS(12504), 1, + anon_sym_COLON, + ACTIONS(13112), 1, + anon_sym_RPAREN, + STATE(7848), 1, + sym_gnu_asm_output_operand_list, + [269191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 1, - anon_sym_AMP, - ACTIONS(3585), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [97333] = 3, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(13114), 1, + anon_sym_RPAREN, + STATE(7658), 1, + aux_sym_argument_list_repeat1, + [269204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3575), 1, - anon_sym_AMP, - ACTIONS(3577), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [97349] = 3, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(13116), 1, + anon_sym_GT2, + STATE(7853), 1, + aux_sym_template_argument_list_repeat1, + [269217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3587), 1, - anon_sym_AMP, - ACTIONS(3589), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(4055), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [97365] = 3, + ACTIONS(12133), 1, + anon_sym_COLON_COLON, + STATE(456), 1, + sym_declaration_list, + [269230] = 3, + ACTIONS(10249), 1, + sym_comment, + STATE(7364), 1, + aux_sym_char_literal_repeat1, + ACTIONS(13118), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [269241] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3599), 1, - anon_sym_AMP, - ACTIONS(3601), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [97381] = 3, + ACTIONS(13120), 1, + anon_sym_COMMA, + ACTIONS(13123), 1, + anon_sym_RBRACK, + STATE(7822), 1, + aux_sym_structured_binding_declarator_repeat1, + [269254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3713), 1, - sym_identifier, - ACTIONS(3715), 7, - sym_raw_string_literal, - anon_sym_RPAREN, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [97397] = 8, + ACTIONS(12520), 1, + anon_sym_COMMA, + ACTIONS(13125), 1, + anon_sym_RBRACK_RBRACK, + STATE(7790), 1, + aux_sym_attribute_declaration_repeat1, + [269267] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6675), 1, - anon_sym_LBRACE, - STATE(1188), 1, - sym_compound_statement, - STATE(3152), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [97423] = 3, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(9031), 1, + anon_sym_RPAREN, + STATE(7873), 1, + aux_sym_argument_list_repeat1, + [269280] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3591), 1, - anon_sym_AMP, - ACTIONS(3593), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(13127), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [97439] = 8, + STATE(7855), 1, + aux_sym_declaration_repeat1, + [269293] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(6603), 1, - anon_sym_COLON_COLON, - ACTIONS(6990), 1, - sym_identifier, - ACTIONS(6992), 1, - anon_sym_namespace, - STATE(3546), 1, - sym__scope_resolution, - STATE(5058), 1, - sym_qualified_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - [97465] = 3, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(13129), 1, + anon_sym_SEMI, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [269306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 1, - anon_sym_AMP, - ACTIONS(3703), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(13131), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [97481] = 3, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [269319] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3709), 1, - anon_sym_AMP, - ACTIONS(3711), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [97497] = 8, + ACTIONS(13133), 1, + anon_sym_default, + ACTIONS(13135), 1, + anon_sym_delete, + ACTIONS(13137), 1, + aux_sym_pure_virtual_clause_token1, + [269332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6693), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - STATE(1040), 1, - sym_compound_statement, - STATE(3152), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [97523] = 3, + ACTIONS(12133), 1, + anon_sym_COLON_COLON, + STATE(246), 1, + sym_declaration_list, + [269345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3571), 1, - anon_sym_AMP, - ACTIONS(3573), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [97539] = 3, + ACTIONS(12789), 1, + anon_sym_COMMA, + ACTIONS(13139), 1, + anon_sym_RBRACK, + STATE(7664), 1, + aux_sym_lambda_capture_specifier_repeat1, + [269358] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 1, - anon_sym_AMP, - ACTIONS(3521), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [97555] = 8, + ACTIONS(9033), 1, + anon_sym_COMMA, + ACTIONS(9035), 1, + anon_sym_RBRACE, + STATE(7876), 1, + aux_sym_initializer_list_repeat1, + [269371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(610), 1, - sym_compound_statement, - STATE(3152), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [97581] = 7, + ACTIONS(13141), 1, + anon_sym_catch, + STATE(1087), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [269382] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13143), 1, + anon_sym_COMMA, + ACTIONS(13146), 1, + anon_sym_RBRACK, + STATE(7833), 1, + aux_sym_lambda_capture_specifier_repeat1, + [269395] = 3, + ACTIONS(10249), 1, + sym_comment, + STATE(7274), 1, + aux_sym_char_literal_repeat1, + ACTIONS(13148), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [269406] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13150), 1, + anon_sym_COMMA, + ACTIONS(13152), 1, + anon_sym_RPAREN, + STATE(7900), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [269419] = 3, + ACTIONS(10249), 1, + sym_comment, + STATE(7384), 1, + aux_sym_char_literal_repeat1, + ACTIONS(13154), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [269430] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3450), 1, + ACTIONS(4083), 1, anon_sym_LBRACE, - ACTIONS(6994), 1, + ACTIONS(12133), 1, + anon_sym_COLON_COLON, + STATE(585), 1, + sym_declaration_list, + [269443] = 3, + ACTIONS(10249), 1, + sym_comment, + STATE(7505), 1, + aux_sym_char_literal_repeat1, + ACTIONS(13156), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [269454] = 3, + ACTIONS(10249), 1, + sym_comment, + STATE(7438), 1, + aux_sym_char_literal_repeat1, + ACTIONS(13158), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [269465] = 3, + ACTIONS(10249), 1, + sym_comment, + STATE(7219), 1, + aux_sym_char_literal_repeat1, + ACTIONS(13160), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [269476] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12504), 1, anon_sym_COLON, - STATE(1307), 1, - sym__enum_base_clause, - STATE(1354), 1, - sym_enumerator_list, - ACTIONS(3832), 2, - anon_sym___based, - sym_identifier, - ACTIONS(3834), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - [97605] = 3, + ACTIONS(13162), 1, + anon_sym_RPAREN, + STATE(7520), 1, + sym_gnu_asm_output_operand_list, + [269489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, - anon_sym_AMP, - ACTIONS(3454), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [97621] = 3, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(13164), 1, + anon_sym_GT2, + STATE(7883), 1, + aux_sym_template_argument_list_repeat1, + [269502] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, - anon_sym_LBRACK, - ACTIONS(2506), 7, + ACTIONS(12514), 1, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [97637] = 5, + ACTIONS(13166), 1, + anon_sym_GT2, + STATE(7601), 1, + aux_sym_template_parameter_list_repeat1, + [269515] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6996), 1, - sym_raw_string_literal, - STATE(3705), 1, - sym_string_literal, - STATE(4856), 1, - sym_concatenated_string, - ACTIONS(6781), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [97657] = 7, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(13168), 1, + anon_sym_RPAREN, + STATE(7658), 1, + aux_sym_argument_list_repeat1, + [269528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6858), 1, - anon_sym_LBRACK, - STATE(3965), 1, - sym_parameter_list, - ACTIONS(6998), 2, + ACTIONS(10188), 1, anon_sym_COMMA, + ACTIONS(13170), 1, anon_sym_SEMI, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [97681] = 8, + STATE(7889), 1, + aux_sym_declaration_repeat1, + [269541] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(6603), 1, - anon_sym_COLON_COLON, - ACTIONS(7000), 1, - sym_identifier, - ACTIONS(7002), 1, - anon_sym_namespace, - STATE(3546), 1, - sym__scope_resolution, - STATE(4903), 1, - sym_qualified_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - [97707] = 8, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(13172), 1, + anon_sym_SEMI, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [269554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6750), 1, - anon_sym_LBRACE, - STATE(1180), 1, - sym_compound_statement, - STATE(3152), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [97733] = 7, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(13174), 1, + anon_sym_SEMI, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [269567] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3450), 1, - anon_sym_LBRACE, - ACTIONS(6994), 1, + ACTIONS(12500), 1, anon_sym_COLON, - STATE(1296), 1, - sym__enum_base_clause, - STATE(1313), 1, - sym_enumerator_list, - ACTIONS(3826), 2, - anon_sym___based, - sym_identifier, - ACTIONS(3828), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - [97757] = 8, + ACTIONS(13176), 1, + anon_sym_RPAREN, + STATE(7861), 1, + sym_gnu_asm_input_operand_list, + [269580] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, - anon_sym_LBRACE, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(581), 1, - sym_compound_statement, - STATE(3152), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [97783] = 8, + ACTIONS(12504), 1, + anon_sym_COLON, + ACTIONS(13178), 1, + anon_sym_RPAREN, + STATE(7862), 1, + sym_gnu_asm_output_operand_list, + [269593] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2319), 1, - anon_sym_COLON_COLON, - ACTIONS(4118), 1, - sym_identifier, - STATE(1302), 1, - sym_template_type, - STATE(3912), 1, - sym__scope_resolution, - STATE(4853), 1, - sym_dependent_type_identifier, - STATE(4140), 2, - sym__class_name, - sym_qualified_type_identifier, - [97809] = 3, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(13180), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [269606] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, - anon_sym_AMP, - ACTIONS(3454), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - [97825] = 7, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(13182), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [269619] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_SEMI, - STATE(2899), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [97848] = 5, + ACTIONS(12572), 1, + anon_sym_COMMA, + ACTIONS(13184), 1, + anon_sym_RPAREN, + STATE(7890), 1, + aux_sym_parameter_list_repeat1, + [269632] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7010), 1, - anon_sym_delete, - ACTIONS(7012), 1, - anon_sym_new, - ACTIONS(7008), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(7006), 3, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [97867] = 7, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(13186), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [269645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(7014), 1, - anon_sym_SEMI, - STATE(2899), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [97890] = 8, + ACTIONS(13043), 1, + anon_sym_catch, + STATE(139), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [269656] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4194), 1, - anon_sym_COLON_COLON, - ACTIONS(7016), 1, - sym_identifier, - ACTIONS(7018), 1, - anon_sym_template, - STATE(2425), 1, - sym_template_type, - STATE(2450), 1, - sym_dependent_type_identifier, - STATE(2496), 1, - sym_qualified_type_identifier, - STATE(3876), 1, - sym__scope_resolution, - [97915] = 7, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(13188), 1, + anon_sym_SEMI, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [269669] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6681), 1, - anon_sym_LBRACE, - STATE(3152), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [97938] = 8, + ACTIONS(9153), 1, + anon_sym_COMMA, + ACTIONS(9155), 1, + anon_sym_RBRACE, + STATE(7649), 1, + aux_sym_initializer_list_repeat1, + [269682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4136), 1, - anon_sym_COLON_COLON, - ACTIONS(7020), 1, - sym_identifier, - ACTIONS(7022), 1, - anon_sym_template, - STATE(3590), 1, - sym_dependent_type_identifier, - STATE(3591), 1, - sym_template_type, - STATE(3605), 1, - sym_qualified_type_identifier, - STATE(3878), 1, - sym__scope_resolution, - [97963] = 5, + ACTIONS(13141), 1, + anon_sym_catch, + STATE(1089), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [269693] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7024), 1, - anon_sym_delete, - ACTIONS(7026), 1, - anon_sym_new, - ACTIONS(7008), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(7006), 3, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [97982] = 7, + ACTIONS(12520), 1, + anon_sym_COMMA, + ACTIONS(13190), 1, + anon_sym_RBRACK_RBRACK, + STATE(7528), 1, + aux_sym_attribute_declaration_repeat1, + [269706] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(7028), 1, - anon_sym_RPAREN, - STATE(2899), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [98005] = 8, + ACTIONS(9087), 1, + anon_sym_COMMA, + ACTIONS(9113), 1, + anon_sym_RBRACK, + STATE(7892), 1, + aux_sym_subscript_argument_list_repeat1, + [269719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - ACTIONS(7030), 1, - sym_identifier, - STATE(1291), 1, - sym_template_type, - STATE(1306), 1, - sym_dependent_type_identifier, - STATE(1392), 1, - sym_qualified_type_identifier, - STATE(3881), 1, - sym__scope_resolution, - [98030] = 7, + ACTIONS(13192), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13194), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [269730] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(7032), 1, - anon_sym_SEMI, - STATE(2899), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [98053] = 7, + ACTIONS(12700), 1, + anon_sym_COLON, + ACTIONS(13196), 1, + anon_sym_RPAREN, + STATE(7863), 1, + sym_gnu_asm_clobber_list, + [269743] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6425), 1, - anon_sym_LBRACK, - ACTIONS(6701), 1, + ACTIONS(12500), 1, + anon_sym_COLON, + ACTIONS(13198), 1, anon_sym_RPAREN, - STATE(3217), 1, - sym_parameter_list, - STATE(3930), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [98076] = 7, + STATE(7864), 1, + sym_gnu_asm_input_operand_list, + [269756] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6425), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, + ACTIONS(12720), 1, + anon_sym_COLON, + ACTIONS(13200), 1, anon_sym_RPAREN, - STATE(3217), 1, - sym_parameter_list, - STATE(3930), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [98099] = 5, + STATE(8868), 1, + sym_gnu_asm_goto_list, + [269769] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7036), 1, - anon_sym_delete, - ACTIONS(7038), 1, - anon_sym_new, - ACTIONS(7008), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(7006), 3, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [98118] = 7, + ACTIONS(12700), 1, + anon_sym_COLON, + ACTIONS(13202), 1, + anon_sym_RPAREN, + STATE(7865), 1, + sym_gnu_asm_clobber_list, + [269782] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6858), 1, - anon_sym_LBRACK, - ACTIONS(7040), 1, + ACTIONS(12720), 1, + anon_sym_COLON, + ACTIONS(13204), 1, anon_sym_RPAREN, - STATE(3965), 1, - sym_parameter_list, - STATE(3784), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [98141] = 7, + STATE(8871), 1, + sym_gnu_asm_goto_list, + [269795] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(6603), 1, - anon_sym_COLON_COLON, - ACTIONS(7042), 1, - sym_identifier, - STATE(3546), 1, - sym__scope_resolution, - STATE(4885), 1, - sym_qualified_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - [98164] = 8, + ACTIONS(12524), 1, + anon_sym_COMMA, + ACTIONS(13206), 1, + anon_sym_LBRACE, + STATE(7783), 1, + aux_sym_field_initializer_list_repeat1, + [269808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(4128), 1, - anon_sym_COLON_COLON, - ACTIONS(7030), 1, - sym_identifier, - STATE(1291), 1, - sym_template_type, - STATE(1306), 1, - sym_dependent_type_identifier, - STATE(2124), 1, - sym_qualified_type_identifier, - STATE(3888), 1, - sym__scope_resolution, - [98189] = 7, + ACTIONS(13208), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13210), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [269819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(6603), 1, - anon_sym_COLON_COLON, - ACTIONS(7044), 1, - sym_identifier, - STATE(3546), 1, - sym__scope_resolution, - STATE(4910), 1, - sym_qualified_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - [98212] = 7, + ACTIONS(13015), 1, + anon_sym_COMMA, + ACTIONS(13212), 1, + anon_sym_RPAREN, + STATE(7739), 1, + aux_sym_throw_specifier_repeat1, + [269832] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6671), 1, - anon_sym_LBRACE, - STATE(3152), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [98235] = 7, + ACTIONS(12520), 1, + anon_sym_COMMA, + ACTIONS(13214), 1, + anon_sym_RBRACK_RBRACK, + STATE(7790), 1, + aux_sym_attribute_declaration_repeat1, + [269845] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6720), 1, - anon_sym_LBRACE, - STATE(3152), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [98258] = 7, + ACTIONS(6778), 1, + anon_sym_COMMA, + ACTIONS(13216), 1, + anon_sym_RBRACK, + STATE(7681), 1, + aux_sym_structured_binding_declarator_repeat1, + [269858] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6425), 1, - anon_sym_LBRACK, - ACTIONS(6754), 1, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(9141), 1, anon_sym_RPAREN, - STATE(3217), 1, - sym_parameter_list, - STATE(3930), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [98281] = 5, + STATE(7612), 1, + aux_sym_argument_list_repeat1, + [269871] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7046), 1, - anon_sym_delete, - ACTIONS(7048), 1, - anon_sym_new, - ACTIONS(7008), 2, - anon_sym_TILDE, + ACTIONS(4053), 1, + anon_sym_LBRACE, + ACTIONS(12133), 1, anon_sym_COLON_COLON, - ACTIONS(7006), 3, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [98300] = 7, + STATE(602), 1, + sym_declaration_list, + [269884] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(6603), 1, - anon_sym_COLON_COLON, - ACTIONS(7050), 1, - sym_identifier, - STATE(3546), 1, - sym__scope_resolution, - STATE(5020), 1, - sym_qualified_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - [98323] = 8, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(13218), 1, + anon_sym_RPAREN, + STATE(7658), 1, + aux_sym_argument_list_repeat1, + [269897] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3110), 1, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(12133), 1, anon_sym_COLON_COLON, - ACTIONS(7052), 1, - sym_identifier, - ACTIONS(7054), 1, - anon_sym_template, - STATE(1291), 1, - sym_template_type, - STATE(1306), 1, - sym_dependent_type_identifier, - STATE(1392), 1, - sym_qualified_type_identifier, - STATE(3895), 1, - sym__scope_resolution, - [98348] = 7, + STATE(203), 1, + sym_declaration_list, + [269910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, + ACTIONS(13220), 3, anon_sym_LBRACK, - ACTIONS(7056), 1, - anon_sym_SEMI, - STATE(2899), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [98371] = 8, + anon_sym_EQ, + anon_sym_DOT, + [269919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4176), 1, - anon_sym_COLON_COLON, - ACTIONS(7058), 1, - sym_identifier, - ACTIONS(7060), 1, - anon_sym_template, - STATE(2000), 1, - sym_dependent_type_identifier, - STATE(2013), 1, - sym_template_type, - STATE(2016), 1, - sym_qualified_type_identifier, - STATE(3897), 1, - sym__scope_resolution, - [98396] = 7, + ACTIONS(5510), 1, + anon_sym_RBRACE, + ACTIONS(13222), 1, + anon_sym_COMMA, + STATE(7669), 1, + aux_sym_initializer_list_repeat1, + [269932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(3362), 1, - anon_sym_LT, - ACTIONS(7062), 1, - anon_sym_LPAREN2, - ACTIONS(7064), 1, - anon_sym_LBRACE, - STATE(4238), 1, - sym_template_argument_list, - STATE(4033), 2, - sym_argument_list, - sym_initializer_list, - [98419] = 7, + ACTIONS(5312), 1, + anon_sym_RBRACE, + ACTIONS(13224), 1, + anon_sym_COMMA, + STATE(7669), 1, + aux_sym_initializer_list_repeat1, + [269945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6425), 1, - anon_sym_LBRACK, - ACTIONS(6710), 1, + ACTIONS(6785), 1, + anon_sym_COMMA, + ACTIONS(13226), 1, anon_sym_RPAREN, - STATE(3217), 1, - sym_parameter_list, - STATE(3930), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [98442] = 7, + STATE(7727), 1, + aux_sym__call_macro_with_decl_first_arg_repeat1, + [269958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(6603), 1, - anon_sym_COLON_COLON, - ACTIONS(7066), 1, - sym_identifier, - STATE(3546), 1, - sym__scope_resolution, - STATE(5092), 1, - sym_qualified_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - [98465] = 5, + ACTIONS(5609), 1, + anon_sym_EQ, + ACTIONS(5607), 2, + anon_sym_COMMA, + anon_sym_GT2, + [269969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7068), 1, - anon_sym_delete, - ACTIONS(7070), 1, - anon_sym_new, - ACTIONS(7008), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(7006), 3, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [98484] = 8, + ACTIONS(12504), 1, + anon_sym_COLON, + ACTIONS(13228), 1, + anon_sym_RPAREN, + STATE(7905), 1, + sym_gnu_asm_output_operand_list, + [269982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(7072), 1, - sym_identifier, - ACTIONS(7074), 1, - anon_sym_template, - STATE(2091), 1, - sym_template_type, - STATE(2093), 1, - sym_dependent_type_identifier, - STATE(2136), 1, - sym_qualified_type_identifier, - STATE(3902), 1, - sym__scope_resolution, - [98509] = 7, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(13230), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [269995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6425), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_RPAREN, - STATE(3217), 1, - sym_parameter_list, - STATE(3930), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [98532] = 5, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(13232), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [270008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7076), 1, - anon_sym_delete, - ACTIONS(7078), 1, - anon_sym_new, - ACTIONS(7008), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(7006), 3, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [98551] = 7, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(13234), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [270021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(7080), 1, - anon_sym_SEMI, - STATE(2899), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [98574] = 7, + ACTIONS(9143), 1, + anon_sym_COMMA, + ACTIONS(9145), 1, + anon_sym_RBRACE, + STATE(7621), 1, + aux_sym_initializer_list_repeat1, + [270034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6718), 1, - anon_sym_LBRACE, - STATE(3152), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [98597] = 7, + ACTIONS(13236), 1, + anon_sym_COMMA, + ACTIONS(13239), 1, + anon_sym_RPAREN, + STATE(7885), 1, + aux_sym_generic_expression_repeat1, + [270047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6425), 1, - anon_sym_LBRACK, - ACTIONS(6728), 1, + ACTIONS(12520), 1, + anon_sym_COMMA, + ACTIONS(13241), 1, + anon_sym_RBRACK_RBRACK, + STATE(7902), 1, + aux_sym_attribute_declaration_repeat1, + [270060] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12500), 1, + anon_sym_COLON, + ACTIONS(13243), 1, anon_sym_RPAREN, - STATE(3217), 1, - sym_parameter_list, - STATE(3930), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [98620] = 8, + STATE(7731), 1, + sym_gnu_asm_input_operand_list, + [270073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2385), 1, - anon_sym_COLON_COLON, - ACTIONS(7052), 1, - sym_identifier, - ACTIONS(7054), 1, - anon_sym_template, - STATE(1283), 1, - sym_qualified_type_identifier, - STATE(1291), 1, - sym_template_type, - STATE(1306), 1, - sym_dependent_type_identifier, - STATE(3908), 1, - sym__scope_resolution, - [98645] = 8, + ACTIONS(13245), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [270082] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4104), 1, - anon_sym_COLON_COLON, - ACTIONS(7082), 1, - sym_identifier, - ACTIONS(7084), 1, - anon_sym_template, - STATE(2124), 1, - sym_qualified_type_identifier, - STATE(2254), 1, - sym_dependent_type_identifier, - STATE(2260), 1, - sym_template_type, - STATE(3909), 1, - sym__scope_resolution, - [98670] = 7, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(13247), 1, + anon_sym_SEMI, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [270095] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(6603), 1, - anon_sym_COLON_COLON, - ACTIONS(7086), 1, - sym_identifier, - STATE(3546), 1, - sym__scope_resolution, - STATE(5267), 1, - sym_qualified_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - [98693] = 7, + ACTIONS(12572), 1, + anon_sym_COMMA, + ACTIONS(13249), 1, + anon_sym_RPAREN, + STATE(7774), 1, + aux_sym_parameter_list_repeat1, + [270108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(6603), 1, - anon_sym_COLON_COLON, - ACTIONS(7088), 1, - sym_identifier, - STATE(3546), 1, - sym__scope_resolution, - STATE(5241), 1, - sym_qualified_identifier, - STATE(4853), 2, - sym_template_type, - sym_dependent_type_identifier, - [98716] = 8, + ACTIONS(13043), 1, + anon_sym_catch, + STATE(138), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [270119] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(2319), 1, - anon_sym_COLON_COLON, - ACTIONS(7030), 1, - sym_identifier, - STATE(1283), 1, - sym_qualified_type_identifier, - STATE(1291), 1, - sym_template_type, - STATE(1306), 1, - sym_dependent_type_identifier, - STATE(3912), 1, - sym__scope_resolution, - [98741] = 7, + ACTIONS(9087), 1, + anon_sym_COMMA, + ACTIONS(13251), 1, + anon_sym_RBRACK, + STATE(7787), 1, + aux_sym_subscript_argument_list_repeat1, + [270132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(7090), 1, - anon_sym_SEMI, - STATE(2899), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [98764] = 5, + ACTIONS(13253), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [270141] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7092), 1, - anon_sym_delete, - ACTIONS(7094), 1, - anon_sym_new, - ACTIONS(7008), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(7006), 3, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [98783] = 7, + ACTIONS(10209), 1, + anon_sym_COMMA, + ACTIONS(13255), 1, + anon_sym_RPAREN, + STATE(7812), 1, + aux_sym_preproc_argument_list_repeat1, + [270154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6742), 1, - anon_sym_LBRACE, - STATE(3152), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [98806] = 7, + ACTIONS(12540), 1, + anon_sym_catch, + STATE(304), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [270165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(7096), 1, - anon_sym_SEMI, - STATE(2899), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [98829] = 7, + ACTIONS(13141), 1, + anon_sym_catch, + STATE(1088), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [270176] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(7098), 1, + ACTIONS(10188), 1, + anon_sym_COMMA, + ACTIONS(13257), 1, anon_sym_SEMI, - STATE(2899), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [98852] = 8, + STATE(7916), 1, + aux_sym_declaration_repeat1, + [270189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_COLON_COLON, - ACTIONS(7018), 1, - anon_sym_template, - ACTIONS(7100), 1, - sym_identifier, - STATE(2425), 1, - sym_template_type, - STATE(2450), 1, - sym_dependent_type_identifier, - STATE(2496), 1, - sym_qualified_type_identifier, - STATE(3918), 1, - sym__scope_resolution, - [98877] = 7, + ACTIONS(12606), 1, + anon_sym_catch, + STATE(1085), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [270200] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_template, - ACTIONS(6603), 1, - anon_sym_COLON_COLON, - ACTIONS(7102), 1, + ACTIONS(13259), 1, sym_identifier, - STATE(3546), 1, - sym__scope_resolution, - STATE(4842), 1, - sym_qualified_identifier, - STATE(4853), 2, + STATE(1309), 1, sym_template_type, - sym_dependent_type_identifier, - [98900] = 6, + STATE(6408), 1, + sym_template_function, + [270213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2468), 1, - anon_sym_LBRACK, - ACTIONS(3362), 1, - anon_sym_LT, - STATE(3653), 1, - sym_template_argument_list, - ACTIONS(2461), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [98921] = 6, + ACTIONS(13150), 1, + anon_sym_COMMA, + ACTIONS(13261), 1, + anon_sym_RPAREN, + STATE(7907), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [270226] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(3362), 1, - anon_sym_LT, - ACTIONS(3863), 1, - anon_sym_LBRACK, - STATE(3653), 1, - sym_template_argument_list, - ACTIONS(3877), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [98942] = 7, + ACTIONS(12504), 1, + anon_sym_COLON, + ACTIONS(13263), 1, + anon_sym_RPAREN, + STATE(7735), 1, + sym_gnu_asm_output_operand_list, + [270239] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - ACTIONS(6850), 1, + ACTIONS(12520), 1, anon_sym_COMMA, - STATE(2899), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [98965] = 8, + ACTIONS(13265), 1, + anon_sym_RBRACK_RBRACK, + STATE(7790), 1, + aux_sym_attribute_declaration_repeat1, + [270252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - ACTIONS(7084), 1, - anon_sym_template, - ACTIONS(7104), 1, - sym_identifier, - STATE(2124), 1, - sym_qualified_type_identifier, - STATE(2254), 1, - sym_dependent_type_identifier, - STATE(2260), 1, - sym_template_type, - STATE(3923), 1, - sym__scope_resolution, - [98990] = 5, + ACTIONS(9087), 1, + anon_sym_COMMA, + ACTIONS(13267), 1, + anon_sym_RBRACK, + STATE(7787), 1, + aux_sym_subscript_argument_list_repeat1, + [270265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3287), 1, - sym_parameter_list, - ACTIONS(5491), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(12700), 1, + anon_sym_COLON, + ACTIONS(13269), 1, + anon_sym_RPAREN, + STATE(7919), 1, + sym_gnu_asm_clobber_list, + [270278] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12500), 1, + anon_sym_COLON, + ACTIONS(13271), 1, + anon_sym_RPAREN, + STATE(7920), 1, + sym_gnu_asm_input_operand_list, + [270291] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8969), 1, anon_sym_COMMA, + ACTIONS(13273), 1, anon_sym_GT2, - [99008] = 3, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [270304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7112), 1, - anon_sym_LBRACK, - ACTIONS(7110), 5, + ACTIONS(13275), 1, anon_sym_COMMA, + ACTIONS(13278), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [99022] = 5, + STATE(7907), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [270317] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3275), 1, - sym_parameter_list, - ACTIONS(7114), 3, + ACTIONS(10188), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13280), 1, anon_sym_SEMI, - [99040] = 3, + STATE(7560), 1, + aux_sym_declaration_repeat1, + [270330] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6976), 1, - anon_sym_AMP, - ACTIONS(6974), 5, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(12167), 1, + anon_sym_COMMA, + ACTIONS(12447), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - [99054] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7116), 1, - anon_sym_LBRACK, - ACTIONS(7119), 1, - anon_sym_EQ, - ACTIONS(7121), 1, - anon_sym_DOT, - STATE(3928), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [99072] = 3, + STATE(7715), 1, + aux_sym_base_class_clause_repeat1, + [270343] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7126), 1, - anon_sym_LBRACK, - ACTIONS(7124), 5, + ACTIONS(6785), 1, anon_sym_COMMA, + ACTIONS(6816), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [99086] = 5, + STATE(7921), 1, + aux_sym__call_macro_with_decl_first_arg_repeat1, + [270356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6787), 1, - anon_sym_LBRACK, - ACTIONS(6785), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(3619), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [99104] = 5, + ACTIONS(8969), 1, + anon_sym_COMMA, + ACTIONS(13282), 1, + anon_sym_GT2, + STATE(7929), 1, + aux_sym_template_argument_list_repeat1, + [270369] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 1, - anon_sym_TILDE, - ACTIONS(7128), 1, - sym_identifier, - ACTIONS(7130), 1, - anon_sym_template, - STATE(2217), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [99122] = 5, + ACTIONS(12167), 1, + anon_sym_COMMA, + ACTIONS(12447), 1, + anon_sym_LBRACE, + STATE(7539), 1, + aux_sym_base_class_clause_repeat1, + [270382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7132), 1, - anon_sym_LBRACK, - ACTIONS(7134), 1, - anon_sym_EQ, - ACTIONS(7136), 1, - anon_sym_DOT, - STATE(3928), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [99140] = 5, + ACTIONS(13284), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13286), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [270393] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3275), 1, - sym_parameter_list, - ACTIONS(7138), 3, + ACTIONS(10188), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13288), 1, anon_sym_SEMI, - [99158] = 5, + STATE(7930), 1, + aux_sym_declaration_repeat1, + [270406] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3287), 1, - sym_parameter_list, - ACTIONS(7114), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(10188), 1, anon_sym_COMMA, - anon_sym_GT2, - [99176] = 5, + ACTIONS(13290), 1, + anon_sym_SEMI, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [270419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3287), 1, - sym_parameter_list, - ACTIONS(6170), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(10188), 1, anon_sym_COMMA, - anon_sym_GT2, - [99194] = 5, + ACTIONS(13292), 1, + anon_sym_SEMI, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [270432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3287), 1, - sym_parameter_list, - ACTIONS(6174), 3, + ACTIONS(13296), 1, + anon_sym_RPAREN, + ACTIONS(13294), 2, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [99212] = 5, + sym_identifier, + [270443] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3284), 1, - sym_parameter_list, - ACTIONS(6170), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [99230] = 3, + ACTIONS(1949), 1, + anon_sym_while, + ACTIONS(12756), 1, + anon_sym_else, + STATE(291), 1, + sym_else_clause, + [270456] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7142), 1, - anon_sym_AMP, - ACTIONS(7140), 5, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - anon_sym_LBRACK, - [99244] = 5, + ACTIONS(12720), 1, + anon_sym_COLON, + ACTIONS(13298), 1, + anon_sym_RPAREN, + STATE(9162), 1, + sym_gnu_asm_goto_list, + [270469] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3275), 1, - sym_parameter_list, - ACTIONS(6174), 3, + ACTIONS(12700), 1, + anon_sym_COLON, + ACTIONS(13300), 1, + anon_sym_RPAREN, + STATE(7922), 1, + sym_gnu_asm_clobber_list, + [270482] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6785), 1, anon_sym_COMMA, + ACTIONS(13302), 1, anon_sym_RPAREN, - anon_sym_SEMI, - [99262] = 5, + STATE(7727), 1, + aux_sym__call_macro_with_decl_first_arg_repeat1, + [270495] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3284), 1, - sym_parameter_list, - ACTIONS(6143), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [99280] = 5, + ACTIONS(12720), 1, + anon_sym_COLON, + ACTIONS(13304), 1, + anon_sym_RPAREN, + STATE(9168), 1, + sym_gnu_asm_goto_list, + [270508] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3284), 1, - sym_parameter_list, - ACTIONS(6166), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [99298] = 5, + ACTIONS(8955), 1, + anon_sym_COMMA, + ACTIONS(13306), 1, + anon_sym_RPAREN, + STATE(7885), 1, + aux_sym_generic_expression_repeat1, + [270521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3275), 1, - sym_parameter_list, - ACTIONS(5491), 3, + ACTIONS(7243), 1, + anon_sym___attribute, + ACTIONS(7245), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [270532] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13308), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - [99316] = 5, + anon_sym_COLON, + [270541] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3287), 1, - sym_parameter_list, - ACTIONS(6143), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(13310), 1, + sym_identifier, + STATE(1309), 1, + sym_template_type, + STATE(3097), 1, + sym_template_function, + [270554] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8969), 1, anon_sym_COMMA, + ACTIONS(13312), 1, anon_sym_GT2, - [99334] = 5, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [270567] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3287), 1, - sym_parameter_list, - ACTIONS(6166), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(8969), 1, anon_sym_COMMA, + ACTIONS(13314), 1, anon_sym_GT2, - [99352] = 5, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [270580] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3275), 1, - sym_parameter_list, - ACTIONS(7144), 3, + ACTIONS(8969), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [99370] = 3, + ACTIONS(13316), 1, + anon_sym_GT2, + STATE(7749), 1, + aux_sym_template_argument_list_repeat1, + [270593] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7148), 1, - anon_sym_LBRACK, - ACTIONS(7146), 5, + ACTIONS(10188), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(13318), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [99384] = 3, + STATE(7769), 1, + aux_sym_declaration_repeat1, + [270606] = 4, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12602), 1, + anon_sym_LPAREN2, + ACTIONS(13320), 1, + aux_sym_preproc_include_token2, + STATE(8961), 1, + sym_preproc_argument_list, + [270619] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7152), 1, - anon_sym_LBRACK, - ACTIONS(7150), 5, - anon_sym_COMMA, + ACTIONS(12720), 1, + anon_sym_COLON, + ACTIONS(13322), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [99398] = 5, + STATE(8448), 1, + sym_gnu_asm_goto_list, + [270632] = 3, + ACTIONS(10249), 1, + sym_comment, + STATE(7229), 1, + aux_sym_char_literal_repeat1, + ACTIONS(13324), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [270643] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6285), 1, + anon_sym_LBRACE, + STATE(3080), 1, + sym_field_declaration_list, + [270653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, + ACTIONS(12674), 1, anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3275), 1, - sym_parameter_list, - ACTIONS(6166), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [99416] = 3, + STATE(818), 1, + sym_condition_clause, + [270663] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4990), 1, + anon_sym_LBRACE, + STATE(1581), 1, + sym_field_declaration_list, + [270673] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2662), 1, + sym_field_declaration_list, + [270683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(4380), 1, + sym_field_declaration_list, + [270693] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12354), 1, + anon_sym_LBRACE, + STATE(6206), 1, + sym_requirement_seq, + [270703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7156), 1, - anon_sym_LBRACK, - ACTIONS(7154), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [99430] = 5, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(4287), 1, + sym_field_declaration_list, + [270713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3275), 1, - sym_parameter_list, - ACTIONS(6170), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [99448] = 3, + ACTIONS(700), 1, + anon_sym_LBRACE, + STATE(339), 1, + sym_compound_statement, + [270723] = 3, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13326), 1, + aux_sym_preproc_include_token2, + ACTIONS(13328), 1, + sym_preproc_arg, + [270733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7160), 1, - anon_sym_AMP, - ACTIONS(7158), 5, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(6291), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - [99462] = 5, + STATE(2684), 1, + sym_field_declaration_list, + [270743] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2685), 1, + sym_field_declaration_list, + [270753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, + ACTIONS(13330), 1, + sym_identifier, + ACTIONS(13332), 1, anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3287), 1, - sym_parameter_list, - ACTIONS(7138), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [99480] = 4, + [270763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, - anon_sym_COMMA, - STATE(3953), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(7165), 4, - anon_sym_SEMI, + ACTIONS(6291), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [99496] = 5, + STATE(2709), 1, + sym_field_declaration_list, + [270773] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4990), 1, + anon_sym_LBRACE, + STATE(1414), 1, + sym_field_declaration_list, + [270783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3362), 1, + ACTIONS(13334), 1, anon_sym_LT, - ACTIONS(6766), 1, - anon_sym_LBRACK, - STATE(3733), 1, + STATE(3588), 1, sym_template_argument_list, - ACTIONS(6762), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [99514] = 5, + [270793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3287), 1, - sym_parameter_list, - ACTIONS(7167), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [99532] = 5, + ACTIONS(13336), 1, + sym_identifier, + STATE(2461), 1, + sym_template_type, + [270803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3287), 1, - sym_parameter_list, - ACTIONS(7144), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [99550] = 3, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2737), 1, + sym_field_declaration_list, + [270813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7171), 1, - anon_sym_AMP, - ACTIONS(7169), 5, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(6291), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - [99564] = 5, + STATE(2651), 1, + sym_field_declaration_list, + [270823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, + ACTIONS(12674), 1, anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3284), 1, - sym_parameter_list, - ACTIONS(6174), 3, - anon_sym_SEMI, + STATE(798), 1, + sym_condition_clause, + [270833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3879), 1, anon_sym_LBRACE, - anon_sym_EQ, - [99582] = 3, + STATE(3979), 1, + sym_initializer_list, + [270843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4114), 1, - anon_sym_AMP, - ACTIONS(4112), 5, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(6291), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - [99596] = 3, + STATE(2599), 1, + sym_field_declaration_list, + [270853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7175), 1, - anon_sym_LBRACK, - ACTIONS(7173), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [99610] = 3, + ACTIONS(6453), 1, + anon_sym_LT, + STATE(2396), 1, + sym_template_argument_list, + [270863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7179), 1, - anon_sym_LBRACK, - ACTIONS(7177), 5, + ACTIONS(5734), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [99624] = 5, + anon_sym_RBRACK, + [270871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3275), 1, - sym_parameter_list, - ACTIONS(7167), 3, + ACTIONS(8266), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [99642] = 5, + anon_sym_RBRACK, + [270879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 1, - anon_sym_TILDE, - ACTIONS(7181), 1, + ACTIONS(13338), 1, sym_identifier, - ACTIONS(7183), 1, - anon_sym_template, - STATE(2217), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [99660] = 5, + STATE(1319), 1, + sym_template_type, + [270889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, - anon_sym_TILDE, - ACTIONS(7185), 1, - sym_identifier, - ACTIONS(7187), 1, - anon_sym_template, - STATE(2410), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [99678] = 3, + ACTIONS(55), 1, + anon_sym_LBRACE, + STATE(339), 1, + sym_compound_statement, + [270899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7191), 1, - anon_sym_LBRACK, - ACTIONS(7189), 5, + ACTIONS(9022), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [99692] = 5, + anon_sym_RBRACE, + [270907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3284), 1, - sym_parameter_list, - ACTIONS(5491), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [99710] = 6, + ACTIONS(6853), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [270915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6137), 1, + ACTIONS(13340), 1, anon_sym_LPAREN2, - ACTIONS(6497), 1, - anon_sym_LBRACK, - STATE(2694), 1, - sym_parameter_list, - STATE(3623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [99730] = 5, + STATE(9110), 1, + sym_parenthesized_expression, + [270925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3284), 1, + STATE(8385), 1, sym_parameter_list, - ACTIONS(7193), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [99748] = 5, + [270935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3275), 1, - sym_parameter_list, - ACTIONS(6143), 3, + ACTIONS(9027), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [99766] = 5, + anon_sym_RBRACE, + [270943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6675), 1, - anon_sym_LBRACE, - ACTIONS(6677), 1, - anon_sym_EQ, - STATE(1128), 1, - sym_compound_statement, - STATE(1129), 2, - sym_default_method_clause, - sym_delete_method_clause, - [99783] = 5, + ACTIONS(13342), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [270951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6750), 1, + ACTIONS(4055), 1, anon_sym_LBRACE, - ACTIONS(6752), 1, - anon_sym_EQ, - STATE(1136), 1, - sym_compound_statement, - STATE(1135), 2, - sym_default_method_clause, - sym_delete_method_clause, - [99800] = 5, + STATE(447), 1, + sym_declaration_list, + [270961] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(3362), 1, - anon_sym_LT, - STATE(4238), 1, - sym_template_argument_list, - ACTIONS(7195), 2, - anon_sym_LPAREN2, + ACTIONS(9289), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [270969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, anon_sym_LBRACE, - [99817] = 3, + STATE(7662), 1, + sym_compound_statement, + [270979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7199), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(7197), 3, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [99830] = 4, + ACTIONS(11249), 1, + anon_sym_RBRACE, + ACTIONS(13344), 1, + anon_sym_COMMA, + [270989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7201), 1, - anon_sym_catch, - ACTIONS(1502), 2, - anon_sym_else, - anon_sym_while, - STATE(3979), 2, - sym_catch_clause, - aux_sym_try_statement_repeat1, - [99845] = 5, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2527), 1, + sym_field_declaration_list, + [270999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - ACTIONS(6699), 1, - anon_sym_EQ, - STATE(546), 1, - sym_compound_statement, - STATE(550), 2, - sym_default_method_clause, - sym_delete_method_clause, - [99862] = 5, + STATE(2531), 1, + sym_field_declaration_list, + [271009] = 3, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13346), 1, + aux_sym_preproc_include_token2, + ACTIONS(13348), 1, + sym_preproc_arg, + [271019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6750), 1, + ACTIONS(6321), 1, anon_sym_LBRACE, - ACTIONS(6752), 1, - anon_sym_EQ, - STATE(1206), 1, - sym_compound_statement, - STATE(1211), 2, - sym_default_method_clause, - sym_delete_method_clause, - [99879] = 6, + STATE(4422), 1, + sym_field_declaration_list, + [271029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(3362), 1, - anon_sym_LT, - ACTIONS(7203), 1, - anon_sym_SEMI, - ACTIONS(7205), 1, - anon_sym_EQ, - STATE(1294), 1, - sym_template_argument_list, - [99898] = 6, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(4376), 1, + sym_field_declaration_list, + [271039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(3362), 1, + ACTIONS(13350), 1, anon_sym_LT, - ACTIONS(7207), 1, - anon_sym_SEMI, - ACTIONS(7209), 1, - anon_sym_EQ, - STATE(1294), 1, + STATE(3100), 1, sym_template_argument_list, - [99917] = 4, + [271049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7211), 1, - anon_sym_catch, - ACTIONS(1495), 2, - anon_sym_else, - anon_sym_while, - STATE(3979), 2, - sym_catch_clause, - aux_sym_try_statement_repeat1, - [99932] = 5, + ACTIONS(13340), 1, + anon_sym_LPAREN2, + STATE(7959), 1, + sym_parenthesized_expression, + [271059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(269), 1, + ACTIONS(6321), 1, anon_sym_LBRACE, - ACTIONS(6740), 1, - anon_sym_EQ, - STATE(196), 1, - sym_compound_statement, - STATE(194), 2, - sym_default_method_clause, - sym_delete_method_clause, - [99949] = 5, + STATE(4395), 1, + sym_field_declaration_list, + [271069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(269), 1, + ACTIONS(6297), 1, anon_sym_LBRACE, - ACTIONS(6740), 1, - anon_sym_EQ, - STATE(245), 1, - sym_compound_statement, - STATE(244), 2, - sym_default_method_clause, - sym_delete_method_clause, - [99966] = 3, + STATE(3780), 1, + sym_field_declaration_list, + [271079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7216), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(7214), 3, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [99979] = 6, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(4401), 1, + sym_field_declaration_list, + [271089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(3362), 1, - anon_sym_LT, - ACTIONS(7218), 1, - anon_sym_SEMI, - ACTIONS(7220), 1, - anon_sym_EQ, - STATE(1294), 1, - sym_template_argument_list, - [99998] = 5, + ACTIONS(4990), 1, + anon_sym_LBRACE, + STATE(1380), 1, + sym_field_declaration_list, + [271099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, + ACTIONS(6297), 1, anon_sym_LBRACE, - ACTIONS(6687), 1, - anon_sym_EQ, - STATE(588), 1, - sym_compound_statement, - STATE(571), 2, - sym_default_method_clause, - sym_delete_method_clause, - [100015] = 5, + STATE(3782), 1, + sym_field_declaration_list, + [271109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(6736), 1, - anon_sym_EQ, - STATE(552), 1, + STATE(566), 1, sym_compound_statement, - STATE(553), 2, - sym_default_method_clause, - sym_delete_method_clause, - [100032] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5112), 1, - anon_sym_LPAREN2, - ACTIONS(7224), 1, - anon_sym_COLON_COLON, - STATE(4692), 1, - sym_argument_list, - ACTIONS(7222), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [100049] = 5, + [271119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6693), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(6695), 1, - anon_sym_EQ, - STATE(1052), 1, + STATE(276), 1, sym_compound_statement, - STATE(1055), 2, - sym_default_method_clause, - sym_delete_method_clause, - [100066] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3275), 1, - sym_parameter_list, - ACTIONS(6850), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [100083] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4008), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4012), 1, - anon_sym_EQ, - ACTIONS(7226), 1, - sym_identifier, - ACTIONS(4010), 2, - anon_sym_COMMA, - anon_sym_GT2, - [100100] = 5, + [271129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6675), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(6677), 1, - anon_sym_EQ, - STATE(1186), 1, + STATE(319), 1, sym_compound_statement, - STATE(1183), 2, - sym_default_method_clause, - sym_delete_method_clause, - [100117] = 5, + [271139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6693), 1, + ACTIONS(6297), 1, anon_sym_LBRACE, - ACTIONS(6695), 1, - anon_sym_EQ, - STATE(1009), 1, - sym_compound_statement, - STATE(1010), 2, - sym_default_method_clause, - sym_delete_method_clause, - [100134] = 6, + STATE(3373), 1, + sym_field_declaration_list, + [271149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, + ACTIONS(12133), 1, anon_sym_COLON_COLON, - ACTIONS(3362), 1, - anon_sym_LT, - ACTIONS(7228), 1, + ACTIONS(13352), 1, anon_sym_SEMI, - ACTIONS(7230), 1, - anon_sym_EQ, - STATE(1294), 1, - sym_template_argument_list, - [100153] = 6, + [271159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(3362), 1, - anon_sym_LT, - ACTIONS(7232), 1, - anon_sym_SEMI, - ACTIONS(7234), 1, - anon_sym_EQ, - STATE(1294), 1, - sym_template_argument_list, - [100172] = 3, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(4278), 1, + sym_field_declaration_list, + [271169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 2, - anon_sym_class, - anon_sym_typename, - STATE(4637), 3, - sym_type_parameter_declaration, - sym_variadic_type_parameter_declaration, - sym_optional_type_parameter_declaration, - [100185] = 5, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(4279), 1, + sym_field_declaration_list, + [271179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3287), 1, - sym_parameter_list, - ACTIONS(6850), 2, - anon_sym_COMMA, - anon_sym_GT2, - [100202] = 6, + ACTIONS(13354), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [271187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(3362), 1, + ACTIONS(13356), 1, anon_sym_LT, - ACTIONS(7238), 1, - anon_sym_SEMI, - ACTIONS(7240), 1, - anon_sym_EQ, - STATE(1294), 1, + STATE(3892), 1, sym_template_argument_list, - [100221] = 6, + [271197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(3362), 1, + ACTIONS(5074), 1, anon_sym_LT, - ACTIONS(7242), 1, - anon_sym_SEMI, - ACTIONS(7244), 1, - anon_sym_EQ, - STATE(1294), 1, + STATE(2801), 1, sym_template_argument_list, - [100240] = 5, + [271207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(6687), 1, - anon_sym_EQ, - STATE(633), 1, + STATE(521), 1, sym_compound_statement, - STATE(631), 2, - sym_default_method_clause, - sym_delete_method_clause, - [100257] = 5, + [271217] = 3, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13358), 1, + aux_sym_preproc_include_token2, + ACTIONS(13360), 1, + sym_preproc_arg, + [271227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 1, + ACTIONS(4083), 1, anon_sym_LBRACE, - ACTIONS(6699), 1, - anon_sym_EQ, - STATE(612), 1, - sym_compound_statement, - STATE(538), 2, - sym_default_method_clause, - sym_delete_method_clause, - [100274] = 5, + STATE(501), 1, + sym_declaration_list, + [271237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(9929), 1, anon_sym_LBRACE, - ACTIONS(6736), 1, - anon_sym_EQ, - STATE(521), 1, + STATE(3978), 1, + sym_requirement_seq, + [271247] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11121), 1, + anon_sym_LBRACE, + STATE(1036), 1, sym_compound_statement, - STATE(604), 2, - sym_default_method_clause, - sym_delete_method_clause, - [100291] = 5, + [271257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, + ACTIONS(13362), 1, sym_identifier, - ACTIONS(7248), 1, + ACTIONS(13364), 1, + anon_sym_RPAREN, + [271267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13366), 1, + anon_sym_LPAREN2, + ACTIONS(13368), 1, + sym_raw_string_delimiter, + [271277] = 3, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13370), 1, + aux_sym_preproc_include_token2, + ACTIONS(13372), 1, + sym_preproc_arg, + [271287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13374), 1, + anon_sym_LT, + STATE(2558), 1, + sym_template_argument_list, + [271297] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13344), 1, anon_sym_COMMA, - ACTIONS(7250), 1, + ACTIONS(13376), 1, anon_sym_RBRACE, - STATE(4425), 1, - sym_enumerator, - [100307] = 5, + [271307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + STATE(9145), 1, + sym_argument_list, + [271317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, + ACTIONS(6321), 1, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1451), 1, + STATE(4418), 1, sym_field_declaration_list, - STATE(4638), 1, - sym_base_class_clause, - [100323] = 5, + [271327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(269), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(7252), 1, - anon_sym_SEMI, - ACTIONS(7254), 1, - anon_sym_EQ, - STATE(209), 1, - sym_compound_statement, - [100339] = 5, + STATE(4125), 1, + sym_initializer_list, + [271337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4106), 1, + ACTIONS(4990), 1, anon_sym_LBRACE, - STATE(2402), 1, + STATE(1569), 1, sym_field_declaration_list, - STATE(4803), 1, - sym_base_class_clause, - [100355] = 5, + [271347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4106), 1, + ACTIONS(6321), 1, anon_sym_LBRACE, - STATE(2433), 1, + STATE(4419), 1, sym_field_declaration_list, - STATE(4800), 1, - sym_base_class_clause, - [100371] = 5, + [271357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6750), 1, - anon_sym_LBRACE, - ACTIONS(7256), 1, - anon_sym_SEMI, - ACTIONS(7258), 1, - anon_sym_EQ, - STATE(1219), 1, - sym_compound_statement, - [100387] = 4, + ACTIONS(12858), 1, + anon_sym_RBRACK, + ACTIONS(13378), 1, + anon_sym_COMMA, + [271367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6565), 1, + ACTIONS(6321), 1, anon_sym_LBRACE, - STATE(3088), 1, - sym_compound_statement, - ACTIONS(6027), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [100401] = 5, + STATE(4435), 1, + sym_field_declaration_list, + [271377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4138), 1, + ACTIONS(6321), 1, anon_sym_LBRACE, - STATE(3792), 1, + STATE(4390), 1, sym_field_declaration_list, - STATE(4446), 1, - sym_base_class_clause, - [100417] = 5, + [271387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 1, - anon_sym_LT, - ACTIONS(7260), 1, - sym_identifier, - STATE(693), 1, - sym_template_parameter_list, - STATE(1303), 1, - sym_template_type, - [100433] = 4, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2514), 1, + sym_field_declaration_list, + [271397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7262), 1, - anon_sym_COMMA, - STATE(4047), 1, - aux_sym_field_initializer_list_repeat1, - ACTIONS(7264), 2, + ACTIONS(6321), 1, anon_sym_LBRACE, - anon_sym_EQ, - [100447] = 5, + STATE(4391), 1, + sym_field_declaration_list, + [271407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(3362), 1, + ACTIONS(13356), 1, anon_sym_LT, - ACTIONS(7266), 1, - anon_sym_SEMI, - STATE(1294), 1, + STATE(3735), 1, sym_template_argument_list, - [100463] = 5, + [271417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4138), 1, + ACTIONS(6321), 1, anon_sym_LBRACE, - STATE(3795), 1, + STATE(4400), 1, sym_field_declaration_list, - STATE(4445), 1, - sym_base_class_clause, - [100479] = 5, + [271427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, + ACTIONS(11235), 1, + anon_sym_RBRACE, + ACTIONS(13344), 1, anon_sym_COMMA, - ACTIONS(7268), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7270), 1, - anon_sym_GT2, - STATE(4377), 1, - aux_sym_template_argument_list_repeat1, - [100495] = 5, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(7272), 1, - anon_sym_DQUOTE, - ACTIONS(7274), 1, - aux_sym_string_literal_token1, - ACTIONS(7276), 1, - sym_escape_sequence, - STATE(4084), 1, - aux_sym_string_literal_repeat1, - [100511] = 5, + [271437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4138), 1, + ACTIONS(6321), 1, anon_sym_LBRACE, - STATE(3825), 1, + STATE(4254), 1, sym_field_declaration_list, - STATE(4498), 1, - sym_base_class_clause, - [100527] = 5, + [271447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4138), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(3826), 1, + STATE(2470), 1, sym_field_declaration_list, - STATE(4508), 1, - sym_base_class_clause, - [100543] = 5, + [271457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4138), 1, + ACTIONS(9921), 1, anon_sym_LBRACE, - STATE(3828), 1, - sym_field_declaration_list, - STATE(4516), 1, - sym_base_class_clause, - [100559] = 3, + STATE(3648), 1, + sym_requirement_seq, + [271467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7278), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7280), 3, + ACTIONS(11285), 1, + anon_sym_RBRACE, + ACTIONS(13344), 1, anon_sym_COMMA, + [271477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9913), 1, anon_sym_LBRACE, - anon_sym_EQ, - [100571] = 5, + STATE(4538), 1, + sym_requirement_seq, + [271487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, + ACTIONS(6297), 1, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1350), 1, + STATE(3817), 1, sym_field_declaration_list, - STATE(4726), 1, - sym_base_class_clause, - [100587] = 5, + [271497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(2461), 1, - anon_sym_SEMI, - ACTIONS(3362), 1, - anon_sym_LT, - STATE(2509), 1, - sym_template_argument_list, - [100603] = 5, + ACTIONS(6297), 1, + anon_sym_LBRACE, + STATE(3818), 1, + sym_field_declaration_list, + [271507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(3362), 1, - anon_sym_LT, - ACTIONS(7282), 1, - anon_sym_SEMI, - STATE(1294), 1, - sym_template_argument_list, - [100619] = 5, + ACTIONS(6297), 1, + anon_sym_LBRACE, + STATE(3820), 1, + sym_field_declaration_list, + [271517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4106), 1, + ACTIONS(6297), 1, anon_sym_LBRACE, - STATE(2459), 1, + STATE(3821), 1, sym_field_declaration_list, - STATE(4799), 1, - sym_base_class_clause, - [100635] = 5, + [271527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, - sym_identifier, - ACTIONS(7284), 1, - anon_sym_COMMA, - ACTIONS(7286), 1, + ACTIONS(11275), 1, anon_sym_RBRACE, - STATE(4389), 1, - sym_enumerator, - [100651] = 5, + ACTIONS(13344), 1, + anon_sym_COMMA, + [271537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4106), 1, + ACTIONS(6297), 1, anon_sym_LBRACE, - STATE(2475), 1, + STATE(3394), 1, sym_field_declaration_list, - STATE(4810), 1, - sym_base_class_clause, - [100667] = 4, + [271547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6501), 1, + ACTIONS(6297), 1, anon_sym_LBRACE, - STATE(2126), 1, - sym_compound_statement, - ACTIONS(6027), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [100681] = 5, + STATE(3395), 1, + sym_field_declaration_list, + [271557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7268), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7288), 1, - anon_sym_GT2, - STATE(4325), 1, - aux_sym_template_argument_list_repeat1, - [100697] = 5, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(7290), 1, - anon_sym_LF, - ACTIONS(7292), 1, - anon_sym_LPAREN, - ACTIONS(7294), 1, - sym_preproc_arg, - STATE(4590), 1, - sym_preproc_params, - [100713] = 5, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2745), 1, + sym_field_declaration_list, + [271567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(6321), 1, anon_sym_LBRACE, - ACTIONS(7296), 1, - anon_sym_SEMI, - ACTIONS(7298), 1, - anon_sym_EQ, - STATE(644), 1, - sym_compound_statement, - [100729] = 5, + STATE(4375), 1, + sym_field_declaration_list, + [271577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6750), 1, + ACTIONS(6321), 1, anon_sym_LBRACE, - ACTIONS(7300), 1, - anon_sym_SEMI, - ACTIONS(7302), 1, - anon_sym_EQ, - STATE(1195), 1, - sym_compound_statement, - [100745] = 5, + STATE(4425), 1, + sym_field_declaration_list, + [271587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 1, - anon_sym_LT, - ACTIONS(7260), 1, - sym_identifier, - STATE(1303), 1, - sym_template_type, - STATE(3994), 1, - sym_template_parameter_list, - [100761] = 2, + ACTIONS(13380), 1, + anon_sym_RPAREN, + ACTIONS(13382), 1, + aux_sym_alone_macro_call_token1, + [271597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ, - [100771] = 5, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(7304), 1, - anon_sym_DQUOTE, - ACTIONS(7306), 1, - aux_sym_string_literal_token1, - ACTIONS(7308), 1, - sym_escape_sequence, - STATE(4014), 1, - aux_sym_string_literal_repeat1, - [100787] = 3, + ACTIONS(12674), 1, + anon_sym_LPAREN2, + STATE(804), 1, + sym_condition_clause, + [271607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7310), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7312), 3, - anon_sym_COMMA, + ACTIONS(4990), 1, anon_sym_LBRACE, - anon_sym_EQ, - [100799] = 5, + STATE(1385), 1, + sym_field_declaration_list, + [271617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 1, + ACTIONS(297), 1, anon_sym_LBRACE, - ACTIONS(7314), 1, - anon_sym_SEMI, - ACTIONS(7316), 1, - anon_sym_EQ, - STATE(573), 1, + STATE(186), 1, sym_compound_statement, - [100815] = 5, + [271627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(3362), 1, + ACTIONS(5074), 1, anon_sym_LT, - ACTIONS(7318), 1, - anon_sym_SEMI, - STATE(1294), 1, + STATE(917), 1, sym_template_argument_list, - [100831] = 2, + [271637] = 3, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13384), 1, + aux_sym_preproc_include_token2, + ACTIONS(13386), 1, + sym_preproc_arg, + [271647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4528), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(650), 1, anon_sym_LBRACE, - anon_sym_EQ, - [100841] = 5, + STATE(346), 1, + sym_compound_statement, + [271657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 1, - anon_sym_LT, - ACTIONS(7260), 1, - sym_identifier, - STATE(689), 1, - sym_template_parameter_list, - STATE(1303), 1, - sym_template_type, - [100857] = 5, + ACTIONS(700), 1, + anon_sym_LBRACE, + STATE(387), 1, + sym_compound_statement, + [271667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4138), 1, + ACTIONS(4990), 1, anon_sym_LBRACE, - STATE(3790), 1, + STATE(1419), 1, sym_field_declaration_list, - STATE(4447), 1, - sym_base_class_clause, - [100873] = 5, + [271677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7268), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7320), 1, - anon_sym_GT2, - STATE(4438), 1, - aux_sym_template_argument_list_repeat1, - [100889] = 5, + ACTIONS(55), 1, + anon_sym_LBRACE, + STATE(7895), 1, + sym_compound_statement, + [271687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(3362), 1, + ACTIONS(13388), 1, + sym_identifier, + STATE(2461), 1, + sym_template_type, + [271697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4527), 1, anon_sym_LT, - ACTIONS(7322), 1, - anon_sym_SEMI, - STATE(1294), 1, + STATE(917), 1, sym_template_argument_list, - [100905] = 5, + [271707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4106), 1, + ACTIONS(13390), 1, + anon_sym_LT, + STATE(2801), 1, + sym_template_argument_list, + [271717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6285), 1, anon_sym_LBRACE, - STATE(2489), 1, + STATE(3065), 1, sym_field_declaration_list, - STATE(4808), 1, - sym_base_class_clause, - [100921] = 5, + [271727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4106), 1, + ACTIONS(13392), 1, + sym_identifier, + STATE(3909), 1, + sym_template_type, + [271737] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11170), 1, anon_sym_LBRACE, - STATE(2400), 1, - sym_field_declaration_list, - STATE(4807), 1, - sym_base_class_clause, - [100937] = 2, + STATE(1162), 1, + sym_compound_statement, + [271747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4524), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(6875), 2, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ, - [100947] = 5, + anon_sym_RPAREN, + [271755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4138), 1, + ACTIONS(6291), 1, anon_sym_LBRACE, - STATE(3806), 1, + STATE(2701), 1, sym_field_declaration_list, - STATE(4459), 1, - sym_base_class_clause, - [100963] = 5, + [271765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, + ACTIONS(6291), 1, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1460), 1, + STATE(2702), 1, sym_field_declaration_list, - STATE(4633), 1, - sym_base_class_clause, - [100979] = 5, + [271775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4138), 1, + ACTIONS(11121), 1, anon_sym_LBRACE, - STATE(3807), 1, - sym_field_declaration_list, - STATE(4463), 1, - sym_base_class_clause, - [100995] = 4, + STATE(1059), 1, + sym_compound_statement, + [271785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7324), 1, + ACTIONS(13344), 1, anon_sym_COMMA, - STATE(4047), 1, - aux_sym_field_initializer_list_repeat1, - ACTIONS(7327), 2, - anon_sym_LBRACE, - anon_sym_EQ, - [101009] = 5, + ACTIONS(13394), 1, + anon_sym_RBRACE, + [271795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4138), 1, + ACTIONS(1671), 1, anon_sym_LBRACE, - STATE(3811), 1, - sym_field_declaration_list, - STATE(4466), 1, - sym_base_class_clause, - [101025] = 5, + STATE(681), 1, + sym_compound_statement, + [271805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4138), 1, + ACTIONS(13344), 1, + anon_sym_COMMA, + ACTIONS(13396), 1, + anon_sym_RBRACE, + [271815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6297), 1, anon_sym_LBRACE, - STATE(3812), 1, + STATE(3845), 1, sym_field_declaration_list, - STATE(4471), 1, - sym_base_class_clause, - [101041] = 5, + [271825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, + ACTIONS(8450), 1, anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - ACTIONS(7329), 1, - anon_sym_RPAREN, - STATE(3275), 1, - sym_parameter_list, - [101057] = 5, + STATE(8715), 1, + sym_argument_list, + [271835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, + ACTIONS(6297), 1, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1450), 1, + STATE(3849), 1, sym_field_declaration_list, - STATE(4636), 1, - sym_base_class_clause, - [101073] = 5, + [271845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4138), 1, + ACTIONS(6297), 1, anon_sym_LBRACE, - STATE(3814), 1, + STATE(3850), 1, sym_field_declaration_list, - STATE(4444), 1, - sym_base_class_clause, - [101089] = 5, - ACTIONS(6220), 1, + [271855] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7274), 1, - aux_sym_string_literal_token1, - ACTIONS(7276), 1, - sym_escape_sequence, - ACTIONS(7331), 1, - anon_sym_DQUOTE, - STATE(4084), 1, - aux_sym_string_literal_repeat1, - [101105] = 5, + ACTIONS(6297), 1, + anon_sym_LBRACE, + STATE(3851), 1, + sym_field_declaration_list, + [271865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, + ACTIONS(12927), 2, anon_sym_COMMA, - ACTIONS(7268), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7333), 1, - anon_sym_GT2, - STATE(4246), 1, - aux_sym_template_argument_list_repeat1, - [101121] = 5, + anon_sym_RPAREN, + [271873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4138), 1, + ACTIONS(6297), 1, anon_sym_LBRACE, - STATE(3815), 1, + STATE(3852), 1, sym_field_declaration_list, - STATE(4477), 1, - sym_base_class_clause, - [101137] = 5, + [271883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4178), 1, + ACTIONS(6297), 1, anon_sym_LBRACE, - STATE(2077), 1, + STATE(3853), 1, sym_field_declaration_list, - STATE(4608), 1, - sym_base_class_clause, - [101153] = 5, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(7274), 1, - aux_sym_string_literal_token1, - ACTIONS(7276), 1, - sym_escape_sequence, - ACTIONS(7335), 1, - anon_sym_DQUOTE, - STATE(4084), 1, - aux_sym_string_literal_repeat1, - [101169] = 5, + [271893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4106), 1, + ACTIONS(6297), 1, anon_sym_LBRACE, - STATE(2374), 1, + STATE(3403), 1, sym_field_declaration_list, - STATE(4811), 1, - sym_base_class_clause, - [101185] = 5, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(7337), 1, - anon_sym_DQUOTE, - ACTIONS(7339), 1, - aux_sym_string_literal_token1, - ACTIONS(7341), 1, - sym_escape_sequence, - STATE(4057), 1, - aux_sym_string_literal_repeat1, - [101201] = 5, + [271903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, + ACTIONS(6315), 1, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1452), 1, + STATE(5272), 1, sym_field_declaration_list, - STATE(4542), 1, - sym_base_class_clause, - [101217] = 5, - ACTIONS(6220), 1, + [271913] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7343), 1, - anon_sym_DQUOTE, - ACTIONS(7345), 1, - aux_sym_string_literal_token1, - ACTIONS(7347), 1, - sym_escape_sequence, - STATE(4094), 1, - aux_sym_string_literal_repeat1, - [101233] = 5, + ACTIONS(8941), 1, + anon_sym_LT, + STATE(3100), 1, + sym_template_argument_list, + [271923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, + ACTIONS(6285), 1, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1448), 1, + STATE(3081), 1, sym_field_declaration_list, - STATE(4541), 1, - sym_base_class_clause, - [101249] = 5, + [271933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4106), 1, + ACTIONS(6285), 1, anon_sym_LBRACE, - STATE(2481), 1, + STATE(3082), 1, sym_field_declaration_list, - STATE(4706), 1, - sym_base_class_clause, - [101265] = 5, + [271943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4178), 1, + ACTIONS(1671), 1, anon_sym_LBRACE, - STATE(2095), 1, - sym_field_declaration_list, - STATE(4641), 1, - sym_base_class_clause, - [101281] = 5, + STATE(671), 1, + sym_compound_statement, + [271953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4106), 1, + ACTIONS(12084), 1, + sym_identifier, + STATE(1309), 1, + sym_template_type, + [271963] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6315), 1, anon_sym_LBRACE, - STATE(2388), 1, + STATE(5277), 1, sym_field_declaration_list, - STATE(4757), 1, - sym_base_class_clause, - [101297] = 5, + [271973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, + ACTIONS(6285), 1, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1443), 1, + STATE(3066), 1, sym_field_declaration_list, - STATE(4515), 1, - sym_base_class_clause, - [101313] = 5, + [271983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, + ACTIONS(6315), 1, anon_sym_LBRACE, - ACTIONS(7349), 1, - anon_sym_SEMI, - ACTIONS(7351), 1, - anon_sym_EQ, - STATE(659), 1, - sym_compound_statement, - [101329] = 5, - ACTIONS(6220), 1, + STATE(5296), 1, + sym_field_declaration_list, + [271993] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(7292), 1, - anon_sym_LPAREN, - ACTIONS(7353), 1, - anon_sym_LF, - ACTIONS(7355), 1, - sym_preproc_arg, - STATE(4753), 1, - sym_preproc_params, - [101345] = 5, + ACTIONS(10796), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [272001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4106), 1, + ACTIONS(6315), 1, anon_sym_LBRACE, - STATE(2476), 1, + STATE(5308), 1, sym_field_declaration_list, - STATE(4756), 1, - sym_base_class_clause, - [101361] = 5, + [272011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4178), 1, + ACTIONS(6285), 1, anon_sym_LBRACE, - STATE(2075), 1, + STATE(3083), 1, sym_field_declaration_list, - STATE(4606), 1, - sym_base_class_clause, - [101377] = 5, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(7292), 1, - anon_sym_LPAREN, - ACTIONS(7357), 1, - anon_sym_LF, - ACTIONS(7359), 1, - sym_preproc_arg, - STATE(4546), 1, - sym_preproc_params, - [101393] = 5, + [272021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4178), 1, + ACTIONS(1671), 1, anon_sym_LBRACE, - STATE(2073), 1, - sym_field_declaration_list, - STATE(4604), 1, - sym_base_class_clause, - [101409] = 2, + STATE(691), 1, + sym_compound_statement, + [272031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4829), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4990), 1, anon_sym_LBRACE, - anon_sym_EQ, - [101419] = 5, + STATE(1381), 1, + sym_field_declaration_list, + [272041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, + ACTIONS(6297), 1, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1440), 1, + STATE(3863), 1, sym_field_declaration_list, - STATE(4506), 1, - sym_base_class_clause, - [101435] = 5, + [272051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4178), 1, + ACTIONS(6297), 1, anon_sym_LBRACE, - STATE(2097), 1, + STATE(3864), 1, sym_field_declaration_list, - STATE(4642), 1, - sym_base_class_clause, - [101451] = 5, + [272061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, + ACTIONS(13398), 1, sym_identifier, - ACTIONS(7361), 1, - anon_sym_COMMA, - ACTIONS(7363), 1, - anon_sym_RBRACE, - STATE(4271), 1, - sym_enumerator, - [101467] = 5, + STATE(7773), 1, + sym_attribute, + [272071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1426), 1, - sym_field_declaration_list, - STATE(4503), 1, - sym_base_class_clause, - [101483] = 5, + ACTIONS(13400), 2, + anon_sym_COMMA, + anon_sym_GT2, + [272079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2281), 1, - sym_field_declaration_list, - STATE(4777), 1, - sym_base_class_clause, - [101499] = 5, + ACTIONS(12674), 1, + anon_sym_LPAREN2, + STATE(8149), 1, + sym_condition_clause, + [272089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2553), 1, - sym_field_declaration_list, - STATE(4720), 1, - sym_base_class_clause, - [101515] = 5, + ACTIONS(12674), 1, + anon_sym_LPAREN2, + STATE(831), 1, + sym_condition_clause, + [272099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4126), 1, + ACTIONS(6285), 1, anon_sym_LBRACE, - STATE(2343), 1, + STATE(3084), 1, sym_field_declaration_list, - STATE(4780), 1, - sym_base_class_clause, - [101531] = 5, + [272109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4158), 1, + ACTIONS(6285), 1, anon_sym_LBRACE, - STATE(2620), 1, + STATE(3085), 1, sym_field_declaration_list, - STATE(4715), 1, - sym_base_class_clause, - [101547] = 5, + [272119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4126), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - STATE(2348), 1, - sym_field_declaration_list, - STATE(4786), 1, - sym_base_class_clause, - [101563] = 5, + STATE(7789), 1, + sym_compound_statement, + [272129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4158), 1, + ACTIONS(6285), 1, anon_sym_LBRACE, - STATE(2573), 1, + STATE(2969), 1, sym_field_declaration_list, - STATE(4713), 1, - sym_base_class_clause, - [101579] = 5, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(7365), 1, - anon_sym_DQUOTE, - ACTIONS(7367), 1, - aux_sym_string_literal_token1, - ACTIONS(7370), 1, - sym_escape_sequence, - STATE(4084), 1, - aux_sym_string_literal_repeat1, - [101595] = 5, + [272139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2099), 1, - sym_field_declaration_list, - STATE(4644), 1, - sym_base_class_clause, - [101611] = 5, - ACTIONS(6220), 1, + ACTIONS(13402), 2, + anon_sym_COMMA, + anon_sym_GT2, + [272147] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7274), 1, - aux_sym_string_literal_token1, - ACTIONS(7276), 1, - sym_escape_sequence, - ACTIONS(7373), 1, - anon_sym_DQUOTE, - STATE(4084), 1, - aux_sym_string_literal_repeat1, - [101627] = 5, + ACTIONS(13404), 1, + sym_identifier, + STATE(2556), 1, + sym_template_type, + [272157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, + ACTIONS(13406), 1, sym_identifier, - ACTIONS(7375), 1, - anon_sym_COMMA, - ACTIONS(7377), 1, - anon_sym_RBRACE, - STATE(4360), 1, - sym_enumerator, - [101643] = 5, + STATE(1309), 1, + sym_template_type, + [272167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, + ACTIONS(13408), 2, anon_sym_COMMA, - ACTIONS(7268), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7379), 1, anon_sym_GT2, - STATE(4428), 1, - aux_sym_template_argument_list_repeat1, - [101659] = 5, + [272175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1425), 1, - sym_field_declaration_list, - STATE(4493), 1, - sym_base_class_clause, - [101675] = 5, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + STATE(8664), 1, + sym_argument_list, + [272185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4178), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - STATE(2072), 1, - sym_field_declaration_list, - STATE(4600), 1, - sym_base_class_clause, - [101691] = 5, + STATE(7308), 1, + sym_compound_statement, + [272195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2069), 1, - sym_field_declaration_list, - STATE(4598), 1, - sym_base_class_clause, - [101707] = 5, + ACTIONS(12674), 1, + anon_sym_LPAREN2, + STATE(833), 1, + sym_condition_clause, + [272205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2068), 1, - sym_field_declaration_list, - STATE(4597), 1, - sym_base_class_clause, - [101723] = 5, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(8264), 1, + sym_parameter_list, + [272215] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9125), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [272223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, + ACTIONS(12967), 2, + anon_sym_COMMA, + anon_sym_GT2, + [272231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6285), 1, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1359), 1, + STATE(3068), 1, sym_field_declaration_list, - STATE(4725), 1, - sym_base_class_clause, - [101739] = 5, - ACTIONS(6220), 1, + [272241] = 3, + ACTIONS(10249), 1, sym_comment, - ACTIONS(7274), 1, - aux_sym_string_literal_token1, - ACTIONS(7276), 1, - sym_escape_sequence, - ACTIONS(7381), 1, - anon_sym_DQUOTE, - STATE(4084), 1, - aux_sym_string_literal_repeat1, - [101755] = 5, + ACTIONS(13410), 1, + aux_sym_preproc_include_token2, + ACTIONS(13412), 1, + sym_preproc_arg, + [272251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, + ACTIONS(6315), 1, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1320), 1, + STATE(5209), 1, sym_field_declaration_list, - STATE(4723), 1, - sym_base_class_clause, - [101771] = 5, + [272261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 1, + ACTIONS(13356), 1, anon_sym_LT, - ACTIONS(7260), 1, - sym_identifier, - STATE(692), 1, - sym_template_parameter_list, - STATE(1303), 1, - sym_template_type, - [101787] = 2, + STATE(3026), 1, + sym_template_argument_list, + [272271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4673), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6315), 1, anon_sym_LBRACE, - anon_sym_EQ, - [101797] = 5, + STATE(5218), 1, + sym_field_declaration_list, + [272281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6143), 1, - anon_sym_LBRACE, - ACTIONS(7106), 1, + ACTIONS(13340), 1, anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3342), 1, - sym_parameter_list, - [101813] = 5, + STATE(8914), 1, + sym_parenthesized_expression, + [272291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(3362), 1, - anon_sym_LT, - ACTIONS(7383), 1, - anon_sym_SEMI, - STATE(1294), 1, - sym_template_argument_list, - [101829] = 2, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(8297), 1, + sym_parameter_list, + [272301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4811), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(700), 1, anon_sym_LBRACE, - anon_sym_EQ, - [101839] = 5, + STATE(437), 1, + sym_compound_statement, + [272311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2366), 1, - sym_field_declaration_list, - STATE(4806), 1, - sym_base_class_clause, - [101855] = 2, + ACTIONS(12674), 1, + anon_sym_LPAREN2, + STATE(823), 1, + sym_condition_clause, + [272321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1613), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(55), 1, anon_sym_LBRACE, - anon_sym_EQ, - [101865] = 5, + STATE(7891), 1, + sym_compound_statement, + [272331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6675), 1, + ACTIONS(4053), 1, anon_sym_LBRACE, - ACTIONS(7385), 1, - anon_sym_SEMI, - ACTIONS(7387), 1, - anon_sym_EQ, - STATE(1130), 1, - sym_compound_statement, - [101881] = 5, + STATE(582), 1, + sym_declaration_list, + [272341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7268), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7389), 1, - anon_sym_GT2, - STATE(4321), 1, - aux_sym_template_argument_list_repeat1, - [101897] = 5, + ACTIONS(6285), 1, + anon_sym_LBRACE, + STATE(3069), 1, + sym_field_declaration_list, + [272351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, + ACTIONS(12980), 2, anon_sym_COMMA, - ACTIONS(7268), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7391), 1, - anon_sym_GT2, - STATE(4381), 1, - aux_sym_template_argument_list_repeat1, - [101913] = 5, + anon_sym_RPAREN, + [272359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2441), 1, - sym_field_declaration_list, - STATE(4801), 1, - sym_base_class_clause, - [101929] = 5, + ACTIONS(13340), 1, + anon_sym_LPAREN2, + STATE(8323), 1, + sym_parenthesized_expression, + [272369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, + ACTIONS(12554), 2, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(7393), 1, - anon_sym_SEMI, - ACTIONS(7395), 1, - anon_sym_EQ, - STATE(616), 1, - sym_compound_statement, - [101945] = 5, + [272377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2333), 1, - sym_field_declaration_list, - STATE(4732), 1, - sym_base_class_clause, - [101961] = 5, + ACTIONS(13414), 1, + sym_identifier, + STATE(3032), 1, + sym_template_type, + [272387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4126), 1, + ACTIONS(3331), 1, anon_sym_LBRACE, - STATE(2331), 1, - sym_field_declaration_list, - STATE(4816), 1, - sym_base_class_clause, - [101977] = 5, + STATE(2877), 1, + sym_initializer_list, + [272397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2328), 1, - sym_field_declaration_list, - STATE(4828), 1, - sym_base_class_clause, - [101993] = 4, + ACTIONS(12991), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [272405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6509), 1, + ACTIONS(12536), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(2452), 1, - sym_compound_statement, - ACTIONS(6027), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [102007] = 5, + [272413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2327), 1, - sym_field_declaration_list, - STATE(4824), 1, - sym_base_class_clause, - [102023] = 4, + ACTIONS(13416), 1, + sym_identifier, + STATE(2977), 1, + sym_template_type, + [272423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5112), 1, - anon_sym_LPAREN2, - STATE(4669), 1, - sym_argument_list, - ACTIONS(7397), 2, + ACTIONS(13418), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [102037] = 5, + anon_sym_SEMI, + [272431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4126), 1, + ACTIONS(4990), 1, anon_sym_LBRACE, - STATE(2324), 1, + STATE(1382), 1, sym_field_declaration_list, - STATE(4823), 1, - sym_base_class_clause, - [102053] = 5, + [272441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4126), 1, + ACTIONS(13340), 1, + anon_sym_LPAREN2, + STATE(8440), 1, + sym_parenthesized_expression, + [272451] = 3, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13420), 1, + aux_sym_preproc_include_token2, + ACTIONS(13422), 1, + sym_preproc_arg, + [272461] = 3, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13424), 1, + aux_sym_preproc_include_token2, + ACTIONS(13426), 1, + sym_preproc_arg, + [272471] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9955), 1, anon_sym_LBRACE, - STATE(2323), 1, - sym_field_declaration_list, - STATE(4815), 1, - sym_base_class_clause, - [102069] = 3, + STATE(3677), 1, + sym_requirement_seq, + [272481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7399), 1, + ACTIONS(13428), 1, sym_identifier, - ACTIONS(7401), 3, + STATE(2461), 1, + sym_template_type, + [272491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5530), 1, + anon_sym_LT, + STATE(917), 1, + sym_template_argument_list, + [272501] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13009), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_GT2, - [102081] = 5, + [272509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7268), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7403), 1, - anon_sym_GT2, - STATE(4404), 1, - aux_sym_template_argument_list_repeat1, - [102097] = 5, + ACTIONS(12674), 1, + anon_sym_LPAREN2, + STATE(7983), 1, + sym_condition_clause, + [272519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, + ACTIONS(13398), 1, sym_identifier, - ACTIONS(7405), 1, + STATE(7781), 1, + sym_attribute, + [272529] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13430), 2, anon_sym_COMMA, - ACTIONS(7407), 1, - anon_sym_RBRACE, - STATE(4298), 1, - sym_enumerator, - [102113] = 5, + anon_sym_RBRACK_RBRACK, + [272537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4158), 1, + ACTIONS(11170), 1, anon_sym_LBRACE, - STATE(2602), 1, - sym_field_declaration_list, - STATE(4666), 1, - sym_base_class_clause, - [102129] = 5, + STATE(1115), 1, + sym_compound_statement, + [272547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(3362), 1, - anon_sym_LT, - ACTIONS(7409), 1, - anon_sym_SEMI, - STATE(1294), 1, - sym_template_argument_list, - [102145] = 4, + ACTIONS(12674), 1, + anon_sym_LPAREN2, + STATE(8164), 1, + sym_condition_clause, + [272557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACE, - STATE(2667), 1, - sym_compound_statement, - ACTIONS(6027), 2, + ACTIONS(12674), 1, anon_sym_LPAREN2, - anon_sym_LBRACK, - [102159] = 5, + STATE(839), 1, + sym_condition_clause, + [272567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4158), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - STATE(2612), 1, - sym_field_declaration_list, - STATE(4663), 1, - sym_base_class_clause, - [102175] = 5, + STATE(7638), 1, + sym_compound_statement, + [272577] = 3, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13432), 1, + aux_sym_preproc_include_token2, + ACTIONS(13434), 1, + sym_preproc_arg, + [272587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4158), 1, + ACTIONS(700), 1, anon_sym_LBRACE, - STATE(2621), 1, - sym_field_declaration_list, - STATE(4660), 1, - sym_base_class_clause, - [102191] = 5, + STATE(590), 1, + sym_compound_statement, + [272597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LBRACE, - ACTIONS(7411), 1, + ACTIONS(13436), 1, sym_identifier, - STATE(608), 1, - sym_declaration_list, - STATE(4218), 1, - sym_namespace_definition_name, - [102207] = 5, + STATE(1309), 1, + sym_template_type, + [272607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6693), 1, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + STATE(8567), 1, + sym_argument_list, + [272617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(7413), 1, - anon_sym_SEMI, - ACTIONS(7415), 1, - anon_sym_EQ, - STATE(1018), 1, + STATE(7371), 1, sym_compound_statement, - [102223] = 5, + [272627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2623), 1, - sym_field_declaration_list, - STATE(4656), 1, - sym_base_class_clause, - [102239] = 5, + ACTIONS(12674), 1, + anon_sym_LPAREN2, + STATE(841), 1, + sym_condition_clause, + [272637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4158), 1, + ACTIONS(6263), 1, anon_sym_LBRACE, - STATE(2617), 1, + STATE(3321), 1, sym_field_declaration_list, - STATE(4649), 1, - sym_base_class_clause, - [102255] = 5, + [272647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, + ACTIONS(13438), 1, sym_identifier, - ACTIONS(7417), 1, - anon_sym_COMMA, - ACTIONS(7419), 1, - anon_sym_RBRACE, - STATE(4342), 1, - sym_enumerator, - [102271] = 5, + STATE(3137), 1, + sym_template_type, + [272657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2618), 1, - sym_field_declaration_list, - STATE(4727), 1, - sym_base_class_clause, - [102287] = 5, + ACTIONS(8941), 1, + anon_sym_LT, + STATE(2502), 1, + sym_template_argument_list, + [272667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 1, - anon_sym_LT, - ACTIONS(7260), 1, - sym_identifier, - STATE(694), 1, - sym_template_parameter_list, - STATE(1303), 1, - sym_template_type, - [102303] = 5, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3382), 1, + sym_field_declaration_list, + [272677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, + ACTIONS(6263), 1, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1336), 1, + STATE(3177), 1, sym_field_declaration_list, - STATE(4653), 1, - sym_base_class_clause, - [102319] = 5, - ACTIONS(6220), 1, + [272687] = 3, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13440), 1, + aux_sym_preproc_include_token2, + ACTIONS(13442), 1, + sym_preproc_arg, + [272697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8858), 1, + anon_sym_LT, + STATE(4715), 1, + sym_template_argument_list, + [272707] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7292), 1, - anon_sym_LPAREN, - ACTIONS(7421), 1, - anon_sym_LF, - ACTIONS(7423), 1, - sym_preproc_arg, - STATE(4661), 1, - sym_preproc_params, - [102335] = 5, + ACTIONS(12674), 1, + anon_sym_LPAREN2, + STATE(825), 1, + sym_condition_clause, + [272717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6170), 1, - anon_sym_LBRACE, - ACTIONS(7106), 1, + ACTIONS(13340), 1, anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3342), 1, - sym_parameter_list, - [102351] = 5, + STATE(8517), 1, + sym_parenthesized_expression, + [272727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6166), 1, - anon_sym_LBRACE, - ACTIONS(7106), 1, + ACTIONS(10765), 1, anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3342), 1, + STATE(7984), 1, sym_parameter_list, - [102367] = 5, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(7274), 1, - aux_sym_string_literal_token1, - ACTIONS(7276), 1, - sym_escape_sequence, - ACTIONS(7425), 1, - anon_sym_DQUOTE, - STATE(4084), 1, - aux_sym_string_literal_repeat1, - [102383] = 5, + [272737] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, + ACTIONS(12883), 2, anon_sym_COMMA, - ACTIONS(7268), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7427), 1, - anon_sym_GT2, - STATE(4192), 1, - aux_sym_template_argument_list_repeat1, - [102399] = 5, + anon_sym_SEMI, + [272745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, + ACTIONS(297), 1, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1334), 1, - sym_field_declaration_list, - STATE(4654), 1, - sym_base_class_clause, - [102415] = 5, + STATE(162), 1, + sym_compound_statement, + [272755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, + ACTIONS(13444), 2, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1329), 1, - sym_field_declaration_list, - STATE(4655), 1, - sym_base_class_clause, - [102431] = 5, + [272763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - ACTIONS(3362), 1, - anon_sym_LT, - ACTIONS(7429), 1, - anon_sym_SEMI, - STATE(1294), 1, - sym_template_argument_list, - [102447] = 5, + ACTIONS(13034), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [272771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7431), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7433), 1, - anon_sym_COMMA, - ACTIONS(7435), 1, + ACTIONS(11170), 1, anon_sym_LBRACE, - STATE(4222), 1, - aux_sym_base_class_clause_repeat1, - [102463] = 5, - ACTIONS(6220), 1, + STATE(1229), 1, + sym_compound_statement, + [272781] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(7292), 1, - anon_sym_LPAREN, - ACTIONS(7437), 1, - anon_sym_LF, - ACTIONS(7439), 1, - sym_preproc_arg, - STATE(4784), 1, - sym_preproc_params, - [102479] = 5, + ACTIONS(13446), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [272789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(269), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(7441), 1, - anon_sym_SEMI, - ACTIONS(7443), 1, - anon_sym_EQ, - STATE(235), 1, + STATE(7701), 1, sym_compound_statement, - [102495] = 5, - ACTIONS(6220), 1, + [272799] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7274), 1, - aux_sym_string_literal_token1, - ACTIONS(7276), 1, - sym_escape_sequence, - ACTIONS(7445), 1, - anon_sym_DQUOTE, - STATE(4084), 1, - aux_sym_string_literal_repeat1, - [102511] = 5, + ACTIONS(13340), 1, + anon_sym_LPAREN2, + STATE(8033), 1, + sym_parenthesized_expression, + [272809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, + ACTIONS(13048), 2, anon_sym_COMMA, - ACTIONS(7268), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7447), 1, - anon_sym_GT2, - STATE(4396), 1, - aux_sym_template_argument_list_repeat1, - [102527] = 5, + anon_sym_RBRACK_RBRACK, + [272817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1437), 1, - sym_field_declaration_list, - STATE(4458), 1, - sym_base_class_clause, - [102543] = 5, + ACTIONS(9273), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [272825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, + ACTIONS(6285), 1, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1436), 1, + STATE(3003), 1, sym_field_declaration_list, - STATE(4460), 1, - sym_base_class_clause, - [102559] = 5, + [272835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5491), 1, + ACTIONS(6285), 1, anon_sym_LBRACE, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3342), 1, - sym_parameter_list, - [102575] = 5, + STATE(2991), 1, + sym_field_declaration_list, + [272845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4126), 1, + ACTIONS(6275), 1, anon_sym_LBRACE, - STATE(2304), 1, + STATE(4943), 1, sym_field_declaration_list, - STATE(4748), 1, - sym_base_class_clause, - [102591] = 5, + [272855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(7449), 1, - anon_sym_SEMI, - ACTIONS(7451), 1, - anon_sym_EQ, - STATE(560), 1, + STATE(7486), 1, sym_compound_statement, - [102607] = 5, + [272865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4126), 1, + ACTIONS(6275), 1, anon_sym_LBRACE, - STATE(2303), 1, + STATE(4945), 1, sym_field_declaration_list, - STATE(4743), 1, - sym_base_class_clause, - [102623] = 5, + [272875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4126), 1, + ACTIONS(6275), 1, anon_sym_LBRACE, - STATE(2301), 1, + STATE(4762), 1, sym_field_declaration_list, - STATE(4730), 1, - sym_base_class_clause, - [102639] = 5, + [272885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1434), 1, - sym_field_declaration_list, - STATE(4462), 1, - sym_base_class_clause, - [102655] = 5, + STATE(332), 1, + sym_compound_statement, + [272895] = 3, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13448), 1, + aux_sym_preproc_include_token2, + ACTIONS(13450), 1, + sym_preproc_arg, + [272905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 1, - anon_sym_LBRACE, - ACTIONS(7453), 1, + ACTIONS(13398), 1, sym_identifier, - STATE(568), 1, - sym_declaration_list, - STATE(4289), 1, - sym_namespace_definition_name, - [102671] = 5, + STATE(7858), 1, + sym_attribute, + [272915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, - sym_identifier, - ACTIONS(7455), 1, + ACTIONS(12674), 1, + anon_sym_LPAREN2, + STATE(8306), 1, + sym_condition_clause, + [272925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13344), 1, anon_sym_COMMA, - ACTIONS(7457), 1, + ACTIONS(13452), 1, anon_sym_RBRACE, - STATE(4268), 1, - sym_enumerator, - [102687] = 5, + [272935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1312), 1, - sym_field_declaration_list, - STATE(4699), 1, - sym_base_class_clause, - [102703] = 5, + STATE(7898), 1, + sym_compound_statement, + [272945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2393), 1, + ACTIONS(12123), 1, anon_sym_LBRACE, - ACTIONS(7459), 1, - sym_identifier, - STATE(250), 1, - sym_declaration_list, - STATE(4353), 1, - sym_namespace_definition_name, - [102719] = 5, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(7461), 1, - anon_sym_DQUOTE, - ACTIONS(7463), 1, - aux_sym_string_literal_token1, - ACTIONS(7465), 1, - sym_escape_sequence, - STATE(4086), 1, - aux_sym_string_literal_repeat1, - [102735] = 5, + STATE(945), 1, + sym_requirement_seq, + [272955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4158), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - STATE(2597), 1, - sym_field_declaration_list, - STATE(4609), 1, - sym_base_class_clause, - [102751] = 5, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(7467), 1, - anon_sym_DQUOTE, - ACTIONS(7469), 1, - aux_sym_string_literal_token1, - ACTIONS(7471), 1, - sym_escape_sequence, - STATE(4053), 1, - aux_sym_string_literal_repeat1, - [102767] = 5, - ACTIONS(6220), 1, + STATE(224), 1, + sym_declaration_list, + [272965] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7292), 1, - anon_sym_LPAREN, - ACTIONS(7473), 1, - anon_sym_LF, - ACTIONS(7475), 1, - sym_preproc_arg, - STATE(4714), 1, - sym_preproc_params, - [102783] = 5, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + STATE(8450), 1, + sym_argument_list, + [272975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6693), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(7477), 1, - anon_sym_SEMI, - ACTIONS(7479), 1, - anon_sym_EQ, - STATE(985), 1, + STATE(7324), 1, sym_compound_statement, - [102799] = 5, + [272985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4158), 1, + ACTIONS(13066), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(2586), 1, - sym_field_declaration_list, - STATE(4611), 1, - sym_base_class_clause, - [102815] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - ACTIONS(7481), 1, - anon_sym_RPAREN, - STATE(3275), 1, - sym_parameter_list, - [102831] = 5, + [272993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 1, - anon_sym_LT, - ACTIONS(7260), 1, - sym_identifier, - STATE(691), 1, - sym_template_parameter_list, - STATE(1303), 1, - sym_template_type, - [102847] = 5, + ACTIONS(11182), 1, + anon_sym_LBRACE, + STATE(1170), 1, + sym_compound_statement, + [273003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4158), 1, + ACTIONS(6315), 1, anon_sym_LBRACE, - STATE(2583), 1, + STATE(5289), 1, sym_field_declaration_list, - STATE(4617), 1, - sym_base_class_clause, - [102863] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2371), 1, - anon_sym_LT, - ACTIONS(7260), 1, - sym_identifier, - STATE(695), 1, - sym_template_parameter_list, - STATE(1303), 1, - sym_template_type, - [102879] = 5, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(7483), 1, - anon_sym_DQUOTE, - ACTIONS(7485), 1, - aux_sym_string_literal_token1, - ACTIONS(7487), 1, - sym_escape_sequence, - STATE(4143), 1, - aux_sym_string_literal_repeat1, - [102895] = 5, - ACTIONS(6220), 1, + [273013] = 3, + ACTIONS(10249), 1, sym_comment, - ACTIONS(7292), 1, - anon_sym_LPAREN, - ACTIONS(7489), 1, - anon_sym_LF, - ACTIONS(7491), 1, + ACTIONS(13454), 1, + aux_sym_preproc_include_token2, + ACTIONS(13456), 1, sym_preproc_arg, - STATE(4482), 1, - sym_preproc_params, - [102911] = 4, + [273023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7262), 1, - anon_sym_COMMA, - STATE(4010), 1, - aux_sym_field_initializer_list_repeat1, - ACTIONS(7493), 2, + ACTIONS(9945), 1, anon_sym_LBRACE, - anon_sym_EQ, - [102925] = 4, + STATE(2908), 1, + sym_requirement_seq, + [273033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7062), 1, - anon_sym_LPAREN2, - ACTIONS(7064), 1, - anon_sym_LBRACE, - STATE(4018), 2, - sym_argument_list, - sym_initializer_list, - [102939] = 5, + ACTIONS(5530), 1, + anon_sym_LT, + STATE(1469), 1, + sym_template_argument_list, + [273043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1314), 1, - sym_field_declaration_list, - STATE(4700), 1, - sym_base_class_clause, - [102955] = 5, + ACTIONS(13340), 1, + anon_sym_LPAREN2, + STATE(9044), 1, + sym_parenthesized_expression, + [273053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1311), 1, - sym_field_declaration_list, - STATE(4702), 1, - sym_base_class_clause, - [102971] = 5, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(8128), 1, + sym_parameter_list, + [273063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4178), 1, + ACTIONS(4990), 1, anon_sym_LBRACE, - STATE(2058), 1, + STATE(1384), 1, sym_field_declaration_list, - STATE(4575), 1, - sym_base_class_clause, - [102987] = 5, + [273073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, + ACTIONS(297), 1, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1343), 1, - sym_field_declaration_list, - STATE(4704), 1, - sym_base_class_clause, - [103003] = 5, + STATE(233), 1, + sym_compound_statement, + [273083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1349), 1, - sym_field_declaration_list, - STATE(4705), 1, - sym_base_class_clause, - [103019] = 5, + STATE(7742), 1, + sym_compound_statement, + [273093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6675), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(7495), 1, - anon_sym_SEMI, - ACTIONS(7497), 1, - anon_sym_EQ, - STATE(1097), 1, + STATE(7603), 1, sym_compound_statement, - [103035] = 5, + [273103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2061), 1, - sym_field_declaration_list, - STATE(4574), 1, - sym_base_class_clause, - [103051] = 5, + ACTIONS(13340), 1, + anon_sym_LPAREN2, + STATE(8188), 1, + sym_parenthesized_expression, + [273113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(7499), 1, - anon_sym_SEMI, - ACTIONS(7501), 1, - anon_sym_EQ, - STATE(594), 1, - sym_compound_statement, - [103067] = 5, + ACTIONS(13458), 1, + anon_sym_LT, + STATE(2502), 1, + sym_template_argument_list, + [273123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6174), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3342), 1, - sym_parameter_list, - [103083] = 5, + STATE(353), 1, + sym_compound_statement, + [273133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COLON, - ACTIONS(4178), 1, + ACTIONS(6315), 1, anon_sym_LBRACE, - STATE(2065), 1, + STATE(5271), 1, sym_field_declaration_list, - STATE(4573), 1, - sym_base_class_clause, - [103099] = 5, + [273143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2435), 1, + ACTIONS(6315), 1, anon_sym_LBRACE, - ACTIONS(7503), 1, - sym_identifier, - STATE(516), 1, - sym_declaration_list, - STATE(4401), 1, - sym_namespace_definition_name, - [103115] = 5, + STATE(5273), 1, + sym_field_declaration_list, + [273153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 1, - anon_sym_LT, - ACTIONS(7260), 1, - sym_identifier, - STATE(690), 1, - sym_template_parameter_list, - STATE(1303), 1, - sym_template_type, - [103131] = 5, + ACTIONS(11245), 1, + anon_sym_RBRACE, + ACTIONS(13344), 1, + anon_sym_COMMA, + [273163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - anon_sym_COMMA, - ACTIONS(7505), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7507), 1, + ACTIONS(6315), 1, anon_sym_LBRACE, - STATE(4258), 1, - aux_sym_base_class_clause_repeat1, - [103147] = 5, + STATE(5274), 1, + sym_field_declaration_list, + [273173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, + ACTIONS(6315), 1, anon_sym_LBRACE, - ACTIONS(3749), 1, - anon_sym_COLON, - STATE(1351), 1, + STATE(5287), 1, sym_field_declaration_list, - STATE(4711), 1, - sym_base_class_clause, - [103163] = 5, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(7509), 1, - anon_sym_DQUOTE, - ACTIONS(7511), 1, - aux_sym_string_literal_token1, - ACTIONS(7513), 1, - sym_escape_sequence, - STATE(4135), 1, - aux_sym_string_literal_repeat1, - [103179] = 3, + [273183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7517), 1, - anon_sym_RPAREN, - ACTIONS(7515), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [103190] = 4, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(5078), 1, + sym_field_declaration_list, + [273193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(7519), 1, - anon_sym_SEMI, - STATE(4240), 1, - aux_sym_declaration_repeat1, - [103203] = 2, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(5080), 1, + sym_field_declaration_list, + [273203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1516), 3, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - [103212] = 4, + ACTIONS(13398), 1, + sym_identifier, + STATE(7672), 1, + sym_attribute, + [273213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7521), 1, - anon_sym_COMMA, - ACTIONS(7524), 1, - anon_sym_RPAREN, - STATE(4189), 1, - aux_sym_throw_specifier_repeat1, - [103225] = 4, + ACTIONS(55), 1, + anon_sym_LBRACE, + STATE(7687), 1, + sym_compound_statement, + [273223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3987), 1, - anon_sym_RBRACE, - ACTIONS(7526), 1, - anon_sym_COMMA, - STATE(4219), 1, - aux_sym_initializer_list_repeat1, - [103238] = 4, + ACTIONS(12133), 1, + anon_sym_COLON_COLON, + ACTIONS(13460), 1, + anon_sym_SEMI, + [273233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7528), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [103251] = 4, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(5097), 1, + sym_field_declaration_list, + [273243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7530), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [103264] = 4, + ACTIONS(13398), 1, + sym_identifier, + STATE(8156), 1, + sym_attribute, + [273253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7532), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [103277] = 4, + ACTIONS(3919), 1, + anon_sym_LBRACE, + STATE(4228), 1, + sym_initializer_list, + [273263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7534), 1, - anon_sym_COMMA, - ACTIONS(7536), 1, - anon_sym_RPAREN, - STATE(4189), 1, - aux_sym_throw_specifier_repeat1, - [103290] = 4, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + STATE(8481), 1, + sym_argument_list, + [273273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, + ACTIONS(13104), 2, anon_sym_COMMA, - ACTIONS(7538), 1, anon_sym_RPAREN, - STATE(4228), 1, - aux_sym_argument_list_repeat1, - [103303] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3785), 1, - anon_sym_EQ, - ACTIONS(3783), 2, - anon_sym_COMMA, - anon_sym_GT2, - [103314] = 4, - ACTIONS(3), 1, + [273281] = 3, + ACTIONS(10249), 1, sym_comment, - ACTIONS(6854), 1, - anon_sym_COMMA, - ACTIONS(7540), 1, - anon_sym_SEMI, - STATE(4230), 1, - aux_sym_type_definition_repeat2, - [103327] = 4, + ACTIONS(13462), 1, + aux_sym_preproc_include_token2, + ACTIONS(13464), 1, + sym_preproc_arg, + [273291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, + ACTIONS(13398), 1, sym_identifier, - ACTIONS(7542), 1, - anon_sym_RBRACE, - STATE(4664), 1, - sym_enumerator, - [103340] = 2, + STATE(7813), 1, + sym_attribute, + [273301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6978), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [103349] = 3, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(4893), 1, + sym_field_declaration_list, + [273311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7544), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7546), 2, - anon_sym_COMMA, + ACTIONS(6315), 1, anon_sym_LBRACE, - [103360] = 4, + STATE(5288), 1, + sym_field_declaration_list, + [273321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - anon_sym_COMMA, - ACTIONS(7548), 1, + ACTIONS(6275), 1, anon_sym_LBRACE, - STATE(4220), 1, - aux_sym_base_class_clause_repeat1, - [103373] = 4, + STATE(4898), 1, + sym_field_declaration_list, + [273331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 1, + ACTIONS(12674), 1, anon_sym_LPAREN2, - ACTIONS(7552), 1, - anon_sym_constexpr, - STATE(879), 1, + STATE(802), 1, sym_condition_clause, - [103386] = 4, + [273341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7554), 1, - anon_sym_COMMA, - ACTIONS(7557), 1, - anon_sym_RPAREN, - STATE(4203), 1, - aux_sym_preproc_params_repeat1, - [103399] = 3, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(8066), 1, + sym_parameter_list, + [273351] = 3, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13466), 1, + aux_sym_preproc_include_token2, + ACTIONS(13468), 1, + sym_preproc_arg, + [273361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7559), 1, - anon_sym_catch, - STATE(106), 2, - sym_catch_clause, - aux_sym_try_statement_repeat1, - [103410] = 4, + ACTIONS(13340), 1, + anon_sym_LPAREN2, + STATE(7941), 1, + sym_parenthesized_expression, + [273371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6320), 1, - anon_sym_RPAREN, - ACTIONS(7561), 1, - anon_sym_COMMA, - STATE(4205), 1, - aux_sym_preproc_argument_list_repeat1, - [103423] = 2, + ACTIONS(5074), 1, + anon_sym_LT, + STATE(1469), 1, + sym_template_argument_list, + [273381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7564), 3, - anon_sym_COMMA, + ACTIONS(55), 1, anon_sym_LBRACE, - anon_sym_EQ, - [103432] = 2, + STATE(7740), 1, + sym_compound_statement, + [273391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 3, - anon_sym_COMMA, + ACTIONS(55), 1, anon_sym_LBRACE, - anon_sym_EQ, - [103441] = 2, + STATE(356), 1, + sym_compound_statement, + [273401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7566), 3, - anon_sym_COMMA, + ACTIONS(13340), 1, + anon_sym_LPAREN2, + STATE(8074), 1, + sym_parenthesized_expression, + [273411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(700), 1, anon_sym_LBRACE, - anon_sym_EQ, - [103450] = 4, + STATE(356), 1, + sym_compound_statement, + [273421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7534), 1, - anon_sym_COMMA, - ACTIONS(7568), 1, - anon_sym_RPAREN, - STATE(4194), 1, - aux_sym_throw_specifier_repeat1, - [103463] = 4, + ACTIONS(4990), 1, + anon_sym_LBRACE, + STATE(1404), 1, + sym_field_declaration_list, + [273431] = 3, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13470), 1, + aux_sym_preproc_include_token2, + ACTIONS(13472), 1, + sym_preproc_arg, + [273441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7570), 1, - anon_sym_COMMA, - ACTIONS(7573), 1, - anon_sym_RPAREN, - STATE(4210), 1, - aux_sym_parameter_list_repeat1, - [103476] = 4, + ACTIONS(55), 1, + anon_sym_LBRACE, + STATE(441), 1, + sym_compound_statement, + [273451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7575), 1, - anon_sym_COMMA, - ACTIONS(7578), 1, - anon_sym_RPAREN, - STATE(4211), 1, - aux_sym_alone_macro_call_repeat1, - [103489] = 4, + ACTIONS(6285), 1, + anon_sym_LBRACE, + STATE(3090), 1, + sym_field_declaration_list, + [273461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7580), 1, + ACTIONS(13123), 2, anon_sym_COMMA, - ACTIONS(7583), 1, - anon_sym_GT2, - STATE(4212), 1, - aux_sym_template_parameter_list_repeat1, - [103502] = 4, + anon_sym_RBRACK, + [273469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 1, - anon_sym_LPAREN2, - ACTIONS(7585), 1, - anon_sym_constexpr, - STATE(888), 1, - sym_condition_clause, - [103515] = 2, + ACTIONS(13398), 1, + sym_identifier, + STATE(7784), 1, + sym_attribute, + [273479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7587), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [103524] = 2, + ACTIONS(6285), 1, + anon_sym_LBRACE, + STATE(3091), 1, + sym_field_declaration_list, + [273489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7589), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [103533] = 4, + ACTIONS(55), 1, + anon_sym_LBRACE, + STATE(7793), 1, + sym_compound_statement, + [273499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7591), 1, - anon_sym_COMMA, - ACTIONS(7594), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [103546] = 3, + ACTIONS(4990), 1, + anon_sym_LBRACE, + STATE(1405), 1, + sym_field_declaration_list, + [273509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7268), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7596), 2, - anon_sym_COMMA, - anon_sym_GT2, - [103557] = 4, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(5239), 1, + sym_field_declaration_list, + [273519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(4083), 1, anon_sym_LBRACE, - ACTIONS(7598), 1, - anon_sym_COLON_COLON, - STATE(524), 1, + STATE(434), 1, sym_declaration_list, - [103570] = 4, + [273529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5395), 1, - anon_sym_RBRACE, - ACTIONS(7600), 1, - anon_sym_COMMA, - STATE(4219), 1, - aux_sym_initializer_list_repeat1, - [103583] = 4, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + STATE(8590), 1, + sym_argument_list, + [273539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7603), 1, - anon_sym_COMMA, - ACTIONS(7606), 1, + ACTIONS(4053), 1, anon_sym_LBRACE, - STATE(4220), 1, - aux_sym_base_class_clause_repeat1, - [103596] = 3, + STATE(488), 1, + sym_declaration_list, + [273549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7608), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7606), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [103607] = 4, + ACTIONS(13474), 1, + sym_identifier, + STATE(2947), 1, + sym_template_type, + [273559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - anon_sym_COMMA, - ACTIONS(7610), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - STATE(4220), 1, - aux_sym_base_class_clause_repeat1, - [103620] = 4, + STATE(248), 1, + sym_declaration_list, + [273569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - anon_sym_COMMA, - ACTIONS(7610), 1, - anon_sym_LBRACE, - STATE(4201), 1, - aux_sym_base_class_clause_repeat1, - [103633] = 4, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(8265), 1, + sym_parameter_list, + [273579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, + ACTIONS(13146), 2, anon_sym_COMMA, - ACTIONS(5439), 1, - anon_sym_RPAREN, - STATE(4195), 1, - aux_sym_argument_list_repeat1, - [103646] = 4, + anon_sym_RBRACK, + [273587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7612), 1, - anon_sym_COMMA, - ACTIONS(7615), 1, - anon_sym_RBRACE, - STATE(4225), 1, - aux_sym_enumerator_list_repeat1, - [103659] = 4, + ACTIONS(55), 1, + anon_sym_LBRACE, + STATE(7857), 1, + sym_compound_statement, + [273597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, - sym_identifier, - ACTIONS(7617), 1, + ACTIONS(11251), 1, anon_sym_RBRACE, - STATE(4664), 1, - sym_enumerator, - [103672] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5226), 1, + ACTIONS(13344), 1, anon_sym_COMMA, - ACTIONS(7619), 1, - anon_sym_RBRACK, - STATE(4262), 1, - aux_sym_lambda_capture_specifier_repeat1, - [103685] = 4, + [273607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 1, - anon_sym_RPAREN, - ACTIONS(7621), 1, - anon_sym_COMMA, - STATE(4228), 1, - aux_sym_argument_list_repeat1, - [103698] = 4, + ACTIONS(8941), 1, + anon_sym_LT, + STATE(917), 1, + sym_template_argument_list, + [273617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6854), 1, - anon_sym_COMMA, - ACTIONS(7624), 1, - anon_sym_SEMI, - STATE(4230), 1, - aux_sym_type_definition_repeat2, - [103711] = 4, + ACTIONS(13398), 1, + sym_identifier, + STATE(7886), 1, + sym_attribute, + [273627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7626), 1, - anon_sym_COMMA, - ACTIONS(7629), 1, - anon_sym_SEMI, - STATE(4230), 1, - aux_sym_type_definition_repeat2, - [103724] = 4, + ACTIONS(55), 1, + anon_sym_LBRACE, + STATE(7896), 1, + sym_compound_statement, + [273637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7631), 1, - anon_sym_COMMA, - ACTIONS(7633), 1, - anon_sym_RBRACE, - STATE(4225), 1, - aux_sym_enumerator_list_repeat1, - [103737] = 4, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3351), 1, + sym_field_declaration_list, + [273647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, - sym_identifier, - ACTIONS(7633), 1, - anon_sym_RBRACE, - STATE(4664), 1, - sym_enumerator, - [103750] = 4, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3353), 1, + sym_field_declaration_list, + [273657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7635), 1, - anon_sym_COMMA, - ACTIONS(7637), 1, - anon_sym_RPAREN, - STATE(4203), 1, - aux_sym_preproc_params_repeat1, - [103763] = 4, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + STATE(9021), 1, + sym_argument_list, + [273667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, - anon_sym_COMMA, - ACTIONS(7639), 1, - anon_sym_RPAREN, - STATE(4228), 1, - aux_sym_argument_list_repeat1, - [103776] = 4, + ACTIONS(4055), 1, + anon_sym_LBRACE, + STATE(458), 1, + sym_declaration_list, + [273677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6180), 1, - anon_sym_COMMA, - ACTIONS(7641), 1, - anon_sym_RPAREN, - STATE(4205), 1, - aux_sym_preproc_argument_list_repeat1, - [103789] = 4, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(5261), 1, + sym_field_declaration_list, + [273687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6854), 1, - anon_sym_COMMA, - ACTIONS(7643), 1, - anon_sym_SEMI, - STATE(4230), 1, - aux_sym_type_definition_repeat2, - [103802] = 4, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3365), 1, + sym_field_declaration_list, + [273697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7645), 1, - sym_identifier, - STATE(1303), 1, - sym_template_type, - STATE(2063), 1, - sym_template_method, - [103815] = 3, + ACTIONS(10765), 1, + anon_sym_LPAREN2, + STATE(8386), 1, + sym_parameter_list, + [273707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, - anon_sym_COLON_COLON, - ACTIONS(4685), 2, - anon_sym_LPAREN2, + ACTIONS(6263), 1, anon_sym_LBRACE, - [103826] = 4, + STATE(3380), 1, + sym_field_declaration_list, + [273717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7647), 1, + ACTIONS(13344), 1, anon_sym_COMMA, - ACTIONS(7649), 1, - anon_sym_RPAREN, - STATE(4210), 1, - aux_sym_parameter_list_repeat1, - [103839] = 4, + ACTIONS(13476), 1, + anon_sym_RBRACE, + [273727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7651), 1, - anon_sym_COMMA, - ACTIONS(7654), 1, - anon_sym_SEMI, - STATE(4240), 1, - aux_sym_declaration_repeat1, - [103852] = 4, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + STATE(8918), 1, + sym_argument_list, + [273737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7656), 1, - anon_sym_COMMA, - ACTIONS(7658), 1, - anon_sym_GT2, - STATE(4212), 1, - aux_sym_template_parameter_list_repeat1, - [103865] = 2, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3170), 1, + sym_field_declaration_list, + [273747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7660), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [103874] = 2, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3185), 1, + sym_field_declaration_list, + [273757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7660), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [103883] = 3, + ACTIONS(11182), 1, + anon_sym_LBRACE, + STATE(1194), 1, + sym_compound_statement, + [273767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7662), 1, - sym_identifier, - ACTIONS(7664), 2, - anon_sym_COMMA, - anon_sym_GT2, - [103894] = 4, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + STATE(8669), 1, + sym_argument_list, + [273777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7666), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [103907] = 4, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(5270), 1, + sym_field_declaration_list, + [273787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, + ACTIONS(13344), 1, anon_sym_COMMA, - ACTIONS(7668), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [103920] = 4, + ACTIONS(13478), 1, + anon_sym_RBRACE, + [273797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7670), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [103933] = 4, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(5091), 1, + sym_field_declaration_list, + [273807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(7672), 1, - anon_sym_SEMI, - STATE(4240), 1, - aux_sym_declaration_repeat1, - [103946] = 4, + ACTIONS(55), 1, + anon_sym_LBRACE, + STATE(7332), 1, + sym_compound_statement, + [273817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(7674), 1, - anon_sym_SEMI, - STATE(4240), 1, - aux_sym_declaration_repeat1, - [103959] = 4, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(5098), 1, + sym_field_declaration_list, + [273827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(7676), 1, - anon_sym_SEMI, - STATE(4293), 1, - aux_sym_declaration_repeat1, - [103972] = 4, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(5136), 1, + sym_field_declaration_list, + [273837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 1, - anon_sym_RBRACE, - ACTIONS(7678), 1, - anon_sym_COMMA, - STATE(4219), 1, - aux_sym_initializer_list_repeat1, - [103985] = 2, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(5137), 1, + sym_field_declaration_list, + [273847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7680), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [103994] = 4, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(4922), 1, + sym_field_declaration_list, + [273857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7682), 1, - anon_sym_GT2, - STATE(4193), 1, - aux_sym_template_argument_list_repeat1, - [104007] = 4, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(4924), 1, + sym_field_declaration_list, + [273867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5413), 1, - anon_sym_COMMA, - ACTIONS(5415), 1, - anon_sym_RBRACE, - STATE(4190), 1, - aux_sym_initializer_list_repeat1, - [104020] = 3, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(4786), 1, + sym_field_declaration_list, + [273877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7684), 1, - anon_sym_catch, - STATE(687), 2, - sym_catch_clause, - aux_sym_try_statement_repeat1, - [104031] = 4, + ACTIONS(55), 1, + anon_sym_LBRACE, + STATE(252), 1, + sym_compound_statement, + [273887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7686), 1, - anon_sym_COMMA, - ACTIONS(7688), 1, - anon_sym_RPAREN, - STATE(4211), 1, - aux_sym_alone_macro_call_repeat1, - [104044] = 4, + ACTIONS(11121), 1, + anon_sym_LBRACE, + STATE(979), 1, + sym_compound_statement, + [273897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(7690), 1, - anon_sym_SEMI, - STATE(4291), 1, - aux_sym_declaration_repeat1, - [104057] = 4, + ACTIONS(13334), 1, + anon_sym_LT, + STATE(3724), 1, + sym_template_argument_list, + [273907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - anon_sym_COMMA, - ACTIONS(7435), 1, + ACTIONS(4083), 1, anon_sym_LBRACE, - STATE(4220), 1, - aux_sym_base_class_clause_repeat1, - [104070] = 4, + STATE(586), 1, + sym_declaration_list, + [273917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7692), 1, - sym_identifier, - STATE(2451), 1, - sym_template_function, - STATE(2471), 1, - sym_template_type, - [104083] = 4, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(5266), 1, + sym_field_declaration_list, + [273927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - anon_sym_COMMA, - ACTIONS(7435), 1, + ACTIONS(6275), 1, anon_sym_LBRACE, - STATE(4222), 1, - aux_sym_base_class_clause_repeat1, - [104096] = 4, + STATE(4982), 1, + sym_field_declaration_list, + [273937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, - sym_identifier, - ACTIONS(7694), 1, - anon_sym_RBRACE, - STATE(4664), 1, - sym_enumerator, - [104109] = 4, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(4983), 1, + sym_field_declaration_list, + [273947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 1, - anon_sym_RBRACK, - ACTIONS(7696), 1, - anon_sym_COMMA, - STATE(4262), 1, - aux_sym_lambda_capture_specifier_repeat1, - [104122] = 4, + ACTIONS(4990), 1, + anon_sym_LBRACE, + STATE(1407), 1, + sym_field_declaration_list, + [273957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7699), 1, + ACTIONS(11287), 1, + anon_sym_RBRACE, + ACTIONS(13344), 1, anon_sym_COMMA, - ACTIONS(7702), 1, - anon_sym_RBRACK, - STATE(4263), 1, - aux_sym_structured_binding_declarator_repeat1, - [104135] = 4, + [273967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7704), 1, - sym_identifier, - STATE(1303), 1, - sym_template_type, - STATE(2203), 1, - sym_template_function, - [104148] = 4, + ACTIONS(297), 1, + anon_sym_LBRACE, + STATE(189), 1, + sym_compound_statement, + [273977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, - anon_sym_COMMA, - ACTIONS(7706), 1, - anon_sym_RPAREN, - STATE(4228), 1, - aux_sym_argument_list_repeat1, - [104161] = 4, + ACTIONS(4990), 1, + anon_sym_LBRACE, + STATE(1408), 1, + sym_field_declaration_list, + [273987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, - anon_sym_COMMA, - ACTIONS(5419), 1, - anon_sym_RPAREN, - STATE(4301), 1, - aux_sym_argument_list_repeat1, - [104174] = 4, + ACTIONS(6285), 1, + anon_sym_LBRACE, + STATE(3050), 1, + sym_field_declaration_list, + [273997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7708), 1, + ACTIONS(13480), 1, sym_identifier, - STATE(1303), 1, - sym_template_type, - STATE(2203), 1, - sym_template_function, - [104187] = 4, + ACTIONS(13482), 1, + anon_sym_LPAREN2, + [274007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7710), 1, - anon_sym_COMMA, - ACTIONS(7712), 1, - anon_sym_RBRACE, - STATE(4303), 1, - aux_sym_enumerator_list_repeat1, - [104200] = 4, + ACTIONS(6285), 1, + anon_sym_LBRACE, + STATE(3052), 1, + sym_field_declaration_list, + [274017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7714), 1, + ACTIONS(13484), 2, anon_sym_COMMA, - ACTIONS(7717), 1, - anon_sym_RBRACK_RBRACK, - STATE(4269), 1, - aux_sym_attribute_declaration_repeat1, - [104213] = 4, + anon_sym_LBRACE, + [274025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6854), 1, - anon_sym_COMMA, - ACTIONS(7719), 1, + ACTIONS(12133), 1, + anon_sym_COLON_COLON, + ACTIONS(13486), 1, anon_sym_SEMI, - STATE(4230), 1, - aux_sym_type_definition_repeat2, - [104226] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7721), 1, - anon_sym_COMMA, - ACTIONS(7723), 1, - anon_sym_RBRACE, - STATE(4231), 1, - aux_sym_enumerator_list_repeat1, - [104239] = 4, + [274035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7725), 1, - sym_identifier, - STATE(1303), 1, - sym_template_type, - STATE(2203), 1, - sym_template_function, - [104252] = 4, + ACTIONS(55), 1, + anon_sym_LBRACE, + STATE(273), 1, + sym_compound_statement, + [274045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7635), 1, - anon_sym_COMMA, - ACTIONS(7727), 1, - anon_sym_RPAREN, - STATE(4233), 1, - aux_sym_preproc_params_repeat1, - [104265] = 4, + ACTIONS(4081), 1, + anon_sym_LBRACE, + STATE(210), 1, + sym_declaration_list, + [274055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7694), 1, - anon_sym_RBRACE, - ACTIONS(7729), 1, - anon_sym_COMMA, - STATE(4225), 1, - aux_sym_enumerator_list_repeat1, - [104278] = 4, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(5285), 1, + sym_field_declaration_list, + [274065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, + ACTIONS(13344), 1, anon_sym_COMMA, - ACTIONS(5423), 1, - anon_sym_RPAREN, - STATE(4234), 1, - aux_sym_argument_list_repeat1, - [104291] = 4, + ACTIONS(13488), 1, + anon_sym_RBRACE, + [274075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 1, + ACTIONS(12674), 1, anon_sym_LPAREN2, - ACTIONS(7731), 1, - anon_sym_constexpr, - STATE(926), 1, + STATE(799), 1, sym_condition_clause, - [104304] = 4, + [274085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7647), 1, - anon_sym_COMMA, - ACTIONS(7733), 1, - anon_sym_RPAREN, - STATE(4239), 1, - aux_sym_parameter_list_repeat1, - [104317] = 4, + ACTIONS(4053), 1, + anon_sym_LBRACE, + STATE(604), 1, + sym_declaration_list, + [274095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 1, - anon_sym_COMMA, - ACTIONS(7737), 1, - anon_sym_RBRACK_RBRACK, - STATE(4269), 1, - aux_sym_attribute_declaration_repeat1, - [104330] = 4, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3369), 1, + sym_field_declaration_list, + [274105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7739), 1, - sym_identifier, - STATE(1303), 1, - sym_template_type, - STATE(2203), 1, - sym_template_function, - [104343] = 4, - ACTIONS(6218), 1, - anon_sym_LPAREN2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(7741), 1, - anon_sym_LF, - STATE(3397), 1, - sym_preproc_argument_list, - [104356] = 4, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3370), 1, + sym_field_declaration_list, + [274115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(7743), 1, - anon_sym_SEMI, - STATE(4240), 1, - aux_sym_declaration_repeat1, - [104369] = 4, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3374), 1, + sym_field_declaration_list, + [274125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 1, - anon_sym_COMMA, - ACTIONS(7745), 1, - anon_sym_RBRACK_RBRACK, - STATE(4295), 1, - aux_sym_attribute_declaration_repeat1, - [104382] = 4, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3375), 1, + sym_field_declaration_list, + [274135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7686), 1, - anon_sym_COMMA, - ACTIONS(7747), 1, - anon_sym_RPAREN, - STATE(4256), 1, - aux_sym_alone_macro_call_repeat1, - [104395] = 4, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3384), 1, + sym_field_declaration_list, + [274145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7749), 1, - sym_identifier, - STATE(2122), 1, - sym_template_function, - STATE(2262), 1, - sym_template_type, - [104408] = 4, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3387), 1, + sym_field_declaration_list, + [274155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7751), 1, - anon_sym_GT2, - STATE(4322), 1, - aux_sym_template_argument_list_repeat1, - [104421] = 4, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3145), 1, + sym_field_declaration_list, + [274165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(7753), 1, + ACTIONS(12740), 2, anon_sym_SEMI, - STATE(4248), 1, - aux_sym_declaration_repeat1, - [104434] = 3, + anon_sym_LBRACE, + [274173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7755), 1, - anon_sym_catch, - STATE(109), 2, - sym_catch_clause, - aux_sym_try_statement_repeat1, - [104445] = 4, + ACTIONS(13374), 1, + anon_sym_LT, + STATE(2801), 1, + sym_template_argument_list, + [274183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(5250), 1, + sym_field_declaration_list, + [274193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7757), 1, + ACTIONS(13490), 1, sym_identifier, - STATE(1303), 1, + STATE(2394), 1, sym_template_type, - STATE(2203), 1, - sym_template_function, - [104458] = 4, + [274203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 1, + ACTIONS(297), 1, anon_sym_LBRACE, - ACTIONS(7598), 1, - anon_sym_COLON_COLON, - STATE(511), 1, - sym_declaration_list, - [104471] = 4, + STATE(141), 1, + sym_compound_statement, + [274213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, + ACTIONS(11261), 1, + anon_sym_RBRACE, + ACTIONS(13344), 1, anon_sym_COMMA, - ACTIONS(7759), 1, - anon_sym_SEMI, - STATE(4240), 1, - aux_sym_declaration_repeat1, - [104484] = 4, + [274223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(7761), 1, + ACTIONS(12133), 1, + anon_sym_COLON_COLON, + ACTIONS(13492), 1, anon_sym_SEMI, - STATE(4240), 1, - aux_sym_declaration_repeat1, - [104497] = 3, + [274233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, - anon_sym_catch, - STATE(110), 2, - sym_catch_clause, - aux_sym_try_statement_repeat1, - [104508] = 4, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(5453), 1, + sym_field_declaration_list, + [274243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(7765), 1, - anon_sym_SEMI, - STATE(4240), 1, - aux_sym_declaration_repeat1, - [104521] = 4, + ACTIONS(6285), 1, + anon_sym_LBRACE, + STATE(3008), 1, + sym_field_declaration_list, + [274253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7767), 1, - sym_identifier, - STATE(2203), 1, - sym_template_function, - STATE(2262), 1, - sym_template_type, - [104534] = 4, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(5456), 1, + sym_field_declaration_list, + [274263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 1, - anon_sym_COMMA, - ACTIONS(7769), 1, - anon_sym_RBRACK_RBRACK, - STATE(4269), 1, - aux_sym_attribute_declaration_repeat1, - [104547] = 4, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(5457), 1, + sym_field_declaration_list, + [274273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, - anon_sym_COMMA, - ACTIONS(5437), 1, - anon_sym_RPAREN, - STATE(4314), 1, - aux_sym_argument_list_repeat1, - [104560] = 4, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2673), 1, + sym_field_declaration_list, + [274283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7686), 1, - anon_sym_COMMA, - ACTIONS(7771), 1, - anon_sym_RPAREN, - STATE(4211), 1, - aux_sym_alone_macro_call_repeat1, - [104573] = 4, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(5459), 1, + sym_field_declaration_list, + [274293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7773), 1, - anon_sym_COMMA, - ACTIONS(7775), 1, - anon_sym_RBRACE, - STATE(4316), 1, - aux_sym_enumerator_list_repeat1, - [104586] = 4, + ACTIONS(1671), 1, + anon_sym_LBRACE, + STATE(710), 1, + sym_compound_statement, + [274303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6854), 1, - anon_sym_COMMA, - ACTIONS(7777), 1, - anon_sym_SEMI, - STATE(4230), 1, - aux_sym_type_definition_repeat2, - [104599] = 4, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2510), 1, + sym_field_declaration_list, + [274313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7656), 1, - anon_sym_COMMA, - ACTIONS(7779), 1, - anon_sym_GT2, - STATE(4241), 1, - aux_sym_template_parameter_list_repeat1, - [104612] = 4, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2511), 1, + sym_field_declaration_list, + [274323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, - anon_sym_COMMA, - ACTIONS(7781), 1, - anon_sym_RPAREN, - STATE(4228), 1, - aux_sym_argument_list_repeat1, - [104625] = 4, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3485), 1, + sym_field_declaration_list, + [274333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, + ACTIONS(13398), 1, sym_identifier, - ACTIONS(7783), 1, - anon_sym_RBRACE, - STATE(4664), 1, - sym_enumerator, - [104638] = 4, + STATE(7691), 1, + sym_attribute, + [274343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7783), 1, - anon_sym_RBRACE, - ACTIONS(7785), 1, - anon_sym_COMMA, - STATE(4225), 1, - aux_sym_enumerator_list_repeat1, - [104651] = 4, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2520), 1, + sym_field_declaration_list, + [274353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7686), 1, - anon_sym_COMMA, - ACTIONS(7787), 1, - anon_sym_RPAREN, - STATE(4297), 1, - aux_sym_alone_macro_call_repeat1, - [104664] = 4, + ACTIONS(4990), 1, + anon_sym_LBRACE, + STATE(1574), 1, + sym_field_declaration_list, + [274363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, - sym_identifier, - STATE(1303), 1, - sym_template_type, - STATE(2203), 1, - sym_template_function, - [104677] = 4, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3487), 1, + sym_field_declaration_list, + [274373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(7791), 1, - anon_sym_SEMI, - STATE(4309), 1, - aux_sym_declaration_repeat1, - [104690] = 4, + ACTIONS(5074), 1, + anon_sym_LT, + STATE(2770), 1, + sym_template_argument_list, + [274383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7793), 1, - anon_sym_GT2, - STATE(4326), 1, - aux_sym_template_argument_list_repeat1, - [104703] = 4, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3207), 1, + sym_field_declaration_list, + [274393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(7795), 1, - anon_sym_SEMI, - STATE(4240), 1, - aux_sym_declaration_repeat1, - [104716] = 4, + ACTIONS(3647), 1, + anon_sym_LBRACE, + STATE(3778), 1, + sym_initializer_list, + [274403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(7797), 1, - anon_sym_SEMI, - STATE(4240), 1, - aux_sym_declaration_repeat1, - [104729] = 4, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2656), 1, + sym_field_declaration_list, + [274413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7647), 1, - anon_sym_COMMA, - ACTIONS(7799), 1, - anon_sym_RPAREN, - STATE(4329), 1, - aux_sym_parameter_list_repeat1, - [104742] = 4, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2521), 1, + sym_field_declaration_list, + [274423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7801), 1, - anon_sym_GT2, - STATE(4245), 1, - aux_sym_template_argument_list_repeat1, - [104755] = 4, + ACTIONS(297), 1, + anon_sym_LBRACE, + STATE(167), 1, + sym_compound_statement, + [274433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7803), 1, - sym_identifier, - STATE(1303), 1, - sym_template_type, - STATE(2122), 1, - sym_template_function, - [104768] = 4, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2522), 1, + sym_field_declaration_list, + [274443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6854), 1, - anon_sym_COMMA, - ACTIONS(7805), 1, - anon_sym_SEMI, - STATE(4230), 1, - aux_sym_type_definition_repeat2, - [104781] = 4, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2728), 1, + sym_field_declaration_list, + [274453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, + ACTIONS(13344), 1, anon_sym_COMMA, - ACTIONS(7807), 1, - anon_sym_RPAREN, - STATE(4228), 1, - aux_sym_argument_list_repeat1, - [104794] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7246), 1, - sym_identifier, - ACTIONS(7809), 1, + ACTIONS(13494), 1, anon_sym_RBRACE, - STATE(4664), 1, - sym_enumerator, - [104807] = 4, + [274463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7809), 1, - anon_sym_RBRACE, - ACTIONS(7811), 1, - anon_sym_COMMA, - STATE(4225), 1, - aux_sym_enumerator_list_repeat1, - [104820] = 4, + ACTIONS(55), 1, + anon_sym_LBRACE, + STATE(275), 1, + sym_compound_statement, + [274473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7686), 1, - anon_sym_COMMA, - ACTIONS(7813), 1, - anon_sym_RPAREN, - STATE(4211), 1, - aux_sym_alone_macro_call_repeat1, - [104833] = 4, - ACTIONS(6218), 1, - anon_sym_LPAREN2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(7815), 1, - anon_sym_LF, - STATE(3397), 1, - sym_preproc_argument_list, - [104846] = 4, + ACTIONS(12330), 1, + anon_sym_LBRACE, + STATE(5818), 1, + sym_requirement_seq, + [274483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 1, + ACTIONS(11259), 1, + anon_sym_RBRACE, + ACTIONS(13344), 1, anon_sym_COMMA, - ACTIONS(7817), 1, - anon_sym_RBRACK_RBRACK, - STATE(4278), 1, - aux_sym_attribute_declaration_repeat1, - [104859] = 4, + [274493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7819), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [104872] = 4, + ACTIONS(12674), 1, + anon_sym_LPAREN2, + STATE(8037), 1, + sym_condition_clause, + [274503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7821), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [104885] = 4, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2490), 1, + sym_field_declaration_list, + [274513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7823), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [104898] = 4, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2523), 1, + sym_field_declaration_list, + [274523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 1, - anon_sym_RBRACE, - ACTIONS(7825), 1, - anon_sym_COMMA, - STATE(4219), 1, - aux_sym_initializer_list_repeat1, - [104911] = 4, + ACTIONS(9203), 1, + anon_sym_LT, + STATE(2950), 1, + sym_template_argument_list, + [274533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7827), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [104924] = 4, + ACTIONS(12674), 1, + anon_sym_LPAREN2, + STATE(816), 1, + sym_condition_clause, + [274543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7829), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [104937] = 4, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2491), 1, + sym_field_declaration_list, + [274553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7831), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [104950] = 4, + ACTIONS(4990), 1, + anon_sym_LBRACE, + STATE(1578), 1, + sym_field_declaration_list, + [274563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6854), 1, - anon_sym_COMMA, - ACTIONS(7833), 1, - anon_sym_SEMI, - STATE(4230), 1, - aux_sym_type_definition_repeat2, - [104963] = 4, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2493), 1, + sym_field_declaration_list, + [274573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, + ACTIONS(13496), 1, sym_identifier, - ACTIONS(7835), 1, - anon_sym_RBRACE, - STATE(4664), 1, - sym_enumerator, - [104976] = 4, + STATE(4659), 1, + sym_template_type, + [274583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7647), 1, - anon_sym_COMMA, - ACTIONS(7837), 1, - anon_sym_RPAREN, - STATE(4210), 1, - aux_sym_parameter_list_repeat1, - [104989] = 4, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2494), 1, + sym_field_declaration_list, + [274593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2641), 1, + sym_field_declaration_list, + [274603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5210), 1, + ACTIONS(11216), 1, anon_sym_RBRACE, - ACTIONS(5356), 1, + ACTIONS(13344), 1, anon_sym_COMMA, - STATE(4251), 1, - aux_sym_initializer_list_repeat1, - [105002] = 4, + [274613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6180), 1, - anon_sym_COMMA, - ACTIONS(7839), 1, - anon_sym_RPAREN, - STATE(4205), 1, - aux_sym_preproc_argument_list_repeat1, - [105015] = 4, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3338), 1, + sym_field_declaration_list, + [274623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6854), 1, - anon_sym_COMMA, - ACTIONS(7841), 1, - anon_sym_SEMI, - STATE(4230), 1, - aux_sym_type_definition_repeat2, - [105028] = 4, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2652), 1, + sym_field_declaration_list, + [274633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, - sym_identifier, - ACTIONS(7843), 1, - anon_sym_RBRACE, - STATE(4664), 1, - sym_enumerator, - [105041] = 4, + ACTIONS(6263), 1, + anon_sym_LBRACE, + STATE(3340), 1, + sym_field_declaration_list, + [274643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7686), 1, - anon_sym_COMMA, - ACTIONS(7845), 1, - anon_sym_RPAREN, - STATE(4317), 1, - aux_sym_alone_macro_call_repeat1, - [105054] = 4, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2762), 1, + sym_field_declaration_list, + [274653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5403), 1, - anon_sym_COMMA, - ACTIONS(5405), 1, - anon_sym_RBRACE, - STATE(4323), 1, - aux_sym_initializer_list_repeat1, - [105067] = 4, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3433), 1, + sym_field_declaration_list, + [274663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7847), 1, - sym_identifier, - STATE(1303), 1, - sym_template_type, - STATE(2203), 1, - sym_template_function, - [105080] = 4, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3434), 1, + sym_field_declaration_list, + [274673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, - anon_sym_COMMA, - ACTIONS(5350), 1, - anon_sym_RPAREN, - STATE(4339), 1, - aux_sym_argument_list_repeat1, - [105093] = 4, + ACTIONS(55), 1, + anon_sym_LBRACE, + STATE(7745), 1, + sym_compound_statement, + [274683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7534), 1, - anon_sym_COMMA, - ACTIONS(7849), 1, - anon_sym_RPAREN, - STATE(4340), 1, - aux_sym_throw_specifier_repeat1, - [105106] = 4, + ACTIONS(4055), 1, + anon_sym_LBRACE, + STATE(474), 1, + sym_declaration_list, + [274693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, + ACTIONS(13498), 2, anon_sym_COMMA, - ACTIONS(7851), 1, anon_sym_RPAREN, - STATE(4228), 1, - aux_sym_argument_list_repeat1, - [105119] = 4, + [274701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7534), 1, - anon_sym_COMMA, - ACTIONS(7853), 1, - anon_sym_RPAREN, - STATE(4189), 1, - aux_sym_throw_specifier_repeat1, - [105132] = 4, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3438), 1, + sym_field_declaration_list, + [274711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 1, - anon_sym_LPAREN2, - ACTIONS(7855), 1, - anon_sym_constexpr, - STATE(1038), 1, - sym_condition_clause, - [105145] = 4, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3440), 1, + sym_field_declaration_list, + [274721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7857), 1, - anon_sym_COMMA, - ACTIONS(7859), 1, - anon_sym_RBRACE, - STATE(4274), 1, - aux_sym_enumerator_list_repeat1, - [105158] = 3, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2675), 1, + sym_field_declaration_list, + [274731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7863), 1, - anon_sym_EQ, - ACTIONS(7861), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [105169] = 4, + ACTIONS(9937), 1, + anon_sym_LBRACE, + STATE(4146), 1, + sym_requirement_seq, + [274741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5226), 1, - anon_sym_COMMA, - ACTIONS(7865), 1, - anon_sym_RBRACK, - STATE(4262), 1, - aux_sym_lambda_capture_specifier_repeat1, - [105182] = 4, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3213), 1, + sym_field_declaration_list, + [274751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4785), 1, - anon_sym_COMMA, - ACTIONS(7867), 1, - anon_sym_RBRACK, - STATE(4263), 1, - aux_sym_structured_binding_declarator_repeat1, - [105195] = 4, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3189), 1, + sym_field_declaration_list, + [274761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, - anon_sym_COMMA, - ACTIONS(5352), 1, - anon_sym_RPAREN, - STATE(4265), 1, - aux_sym_argument_list_repeat1, - [105208] = 4, + ACTIONS(13500), 1, + anon_sym_LPAREN2, + ACTIONS(13502), 1, + sym_raw_string_delimiter, + [274771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 1, + ACTIONS(13504), 2, anon_sym_COMMA, - ACTIONS(7869), 1, anon_sym_RBRACK_RBRACK, - STATE(4269), 1, - aux_sym_attribute_declaration_repeat1, - [105221] = 4, + [274779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 1, - anon_sym_LPAREN2, - ACTIONS(7871), 1, - anon_sym_constexpr, - STATE(852), 1, - sym_condition_clause, - [105234] = 4, + ACTIONS(4990), 1, + anon_sym_LBRACE, + STATE(1677), 1, + sym_field_declaration_list, + [274789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7873), 1, - sym_identifier, - STATE(1303), 1, - sym_template_type, - STATE(2122), 1, - sym_template_function, - [105247] = 4, - ACTIONS(6218), 1, - anon_sym_LPAREN2, - ACTIONS(6220), 1, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2758), 1, + sym_field_declaration_list, + [274799] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7875), 1, - anon_sym_LF, - STATE(3397), 1, - sym_preproc_argument_list, - [105260] = 4, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(2759), 1, + sym_field_declaration_list, + [274809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 1, - anon_sym_COMMA, - ACTIONS(7877), 1, - anon_sym_RBRACK_RBRACK, - STATE(4358), 1, - aux_sym_attribute_declaration_repeat1, - [105273] = 4, + ACTIONS(4990), 1, + anon_sym_LBRACE, + STATE(1402), 1, + sym_field_declaration_list, + [274819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4785), 1, + ACTIONS(13286), 2, anon_sym_COMMA, - ACTIONS(7879), 1, - anon_sym_RBRACK, - STATE(4345), 1, - aux_sym_structured_binding_declarator_repeat1, - [105286] = 4, + anon_sym_LBRACE, + [274827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2393), 1, + ACTIONS(4990), 1, anon_sym_LBRACE, - ACTIONS(7598), 1, - anon_sym_COLON_COLON, - STATE(199), 1, - sym_declaration_list, - [105299] = 3, + STATE(1680), 1, + sym_field_declaration_list, + [274837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7201), 1, - anon_sym_catch, - STATE(3974), 2, - sym_catch_clause, - aux_sym_try_statement_repeat1, - [105310] = 4, + ACTIONS(4990), 1, + anon_sym_LBRACE, + STATE(1681), 1, + sym_field_declaration_list, + [274847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(7881), 1, - anon_sym_SEMI, - STATE(4364), 1, - aux_sym_declaration_repeat1, - [105323] = 4, + ACTIONS(4990), 1, + anon_sym_LBRACE, + STATE(1683), 1, + sym_field_declaration_list, + [274857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7883), 1, + ACTIONS(13506), 1, sym_identifier, - STATE(1303), 1, + STATE(1309), 1, sym_template_type, - STATE(2122), 1, - sym_template_function, - [105336] = 4, + [274867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7686), 1, - anon_sym_COMMA, - ACTIONS(7885), 1, - anon_sym_RPAREN, - STATE(4211), 1, - aux_sym_alone_macro_call_repeat1, - [105349] = 4, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2615), 1, + sym_field_declaration_list, + [274877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 1, + ACTIONS(13508), 2, anon_sym_COMMA, - ACTIONS(7887), 1, - anon_sym_RBRACK_RBRACK, - STATE(4269), 1, - aux_sym_attribute_declaration_repeat1, - [105362] = 4, + anon_sym_GT2, + [274885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, - anon_sym_COMMA, - ACTIONS(5425), 1, - anon_sym_RPAREN, - STATE(4370), 1, - aux_sym_argument_list_repeat1, - [105375] = 4, + ACTIONS(650), 1, + anon_sym_LBRACE, + STATE(502), 1, + sym_compound_statement, + [274895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7889), 1, - anon_sym_COMMA, - ACTIONS(7891), 1, - anon_sym_RBRACE, - STATE(4372), 1, - aux_sym_enumerator_list_repeat1, - [105388] = 4, + ACTIONS(4277), 1, + anon_sym_LBRACE, + STATE(5142), 1, + sym_initializer_list, + [274905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 1, - anon_sym_COMMA, - ACTIONS(5431), 1, - anon_sym_RBRACE, - STATE(4375), 1, - aux_sym_initializer_list_repeat1, - [105401] = 4, - ACTIONS(3), 1, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2602), 1, + sym_field_declaration_list, + [274915] = 3, + ACTIONS(10249), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7893), 1, - anon_sym_GT2, - STATE(4384), 1, - aux_sym_template_argument_list_repeat1, - [105414] = 4, + ACTIONS(13510), 1, + aux_sym_preproc_include_token2, + ACTIONS(13512), 1, + sym_preproc_arg, + [274925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(7895), 1, - anon_sym_SEMI, - STATE(4240), 1, - aux_sym_declaration_repeat1, - [105427] = 4, + ACTIONS(6321), 1, + anon_sym_LBRACE, + STATE(4409), 1, + sym_field_declaration_list, + [274935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, + ACTIONS(13344), 1, anon_sym_COMMA, - ACTIONS(7897), 1, - anon_sym_SEMI, - STATE(4240), 1, - aux_sym_declaration_repeat1, - [105440] = 4, + ACTIONS(13514), 1, + anon_sym_RBRACE, + [274945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, - sym_identifier, - ACTIONS(7899), 1, - anon_sym_RBRACE, - STATE(4664), 1, - sym_enumerator, - [105453] = 4, + ACTIONS(6291), 1, + anon_sym_LBRACE, + STATE(2616), 1, + sym_field_declaration_list, + [274955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6854), 1, - anon_sym_COMMA, - ACTIONS(7901), 1, - anon_sym_SEMI, - STATE(4230), 1, - aux_sym_type_definition_repeat2, - [105466] = 4, + ACTIONS(4990), 1, + anon_sym_LBRACE, + STATE(1386), 1, + sym_field_declaration_list, + [274965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7647), 1, + ACTIONS(13344), 1, anon_sym_COMMA, - ACTIONS(7903), 1, - anon_sym_RPAREN, - STATE(4385), 1, - aux_sym_parameter_list_repeat1, - [105479] = 4, + ACTIONS(13516), 1, + anon_sym_RBRACE, + [274975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7686), 1, - anon_sym_COMMA, - ACTIONS(7905), 1, - anon_sym_RPAREN, - STATE(4357), 1, - aux_sym_alone_macro_call_repeat1, - [105492] = 4, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3462), 1, + sym_field_declaration_list, + [274985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6854), 1, - anon_sym_COMMA, - ACTIONS(7907), 1, - anon_sym_SEMI, - STATE(4230), 1, - aux_sym_type_definition_repeat2, - [105505] = 4, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3463), 1, + sym_field_declaration_list, + [274995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, - anon_sym_COMMA, - ACTIONS(7909), 1, - anon_sym_RPAREN, - STATE(4228), 1, - aux_sym_argument_list_repeat1, - [105518] = 4, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3464), 1, + sym_field_declaration_list, + [275005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, - sym_identifier, - ACTIONS(7911), 1, - anon_sym_RBRACE, - STATE(4664), 1, - sym_enumerator, - [105531] = 4, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3465), 1, + sym_field_declaration_list, + [275015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7911), 1, - anon_sym_RBRACE, - ACTIONS(7913), 1, - anon_sym_COMMA, - STATE(4225), 1, - aux_sym_enumerator_list_repeat1, - [105544] = 4, + ACTIONS(9049), 1, + anon_sym_RPAREN, + ACTIONS(9051), 1, + anon_sym_SEMI, + [275025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7915), 1, - sym_identifier, - STATE(1303), 1, - sym_template_type, - STATE(2203), 1, - sym_template_function, - [105557] = 4, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3466), 1, + sym_field_declaration_list, + [275035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, - anon_sym_COMMA, - ACTIONS(5435), 1, - anon_sym_RBRACE, - STATE(4383), 1, - aux_sym_initializer_list_repeat1, - [105570] = 4, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3467), 1, + sym_field_declaration_list, + [275045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3989), 1, - anon_sym_RBRACE, - ACTIONS(7917), 1, - anon_sym_COMMA, - STATE(4219), 1, - aux_sym_initializer_list_repeat1, - [105583] = 4, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3198), 1, + sym_field_declaration_list, + [275055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7919), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [105596] = 4, + ACTIONS(13518), 1, + anon_sym_LPAREN2, + ACTIONS(13520), 1, + sym_raw_string_delimiter, + [275065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7921), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [105609] = 4, + ACTIONS(8450), 1, + anon_sym_LPAREN2, + STATE(8859), 1, + sym_argument_list, + [275075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7923), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [105622] = 4, + ACTIONS(700), 1, + anon_sym_LBRACE, + STATE(320), 1, + sym_compound_statement, + [275085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7925), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [105635] = 4, + ACTIONS(11182), 1, + anon_sym_LBRACE, + STATE(1106), 1, + sym_compound_statement, + [275095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(7927), 1, - anon_sym_SEMI, - STATE(4412), 1, - aux_sym_declaration_repeat1, - [105648] = 4, + ACTIONS(13522), 1, + anon_sym_LPAREN2, + ACTIONS(13524), 1, + sym_raw_string_delimiter, + [275105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7929), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [105661] = 4, + ACTIONS(13374), 1, + anon_sym_LT, + STATE(2770), 1, + sym_template_argument_list, + [275115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7931), 1, - sym_identifier, - STATE(1303), 1, - sym_template_type, - STATE(2451), 1, - sym_template_function, - [105674] = 4, + ACTIONS(55), 1, + anon_sym_LBRACE, + STATE(7255), 1, + sym_compound_statement, + [275125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3985), 1, - anon_sym_RBRACE, - ACTIONS(7933), 1, - anon_sym_COMMA, - STATE(4219), 1, - aux_sym_initializer_list_repeat1, - [105687] = 4, + ACTIONS(13526), 1, + anon_sym_LPAREN2, + ACTIONS(13528), 1, + sym_raw_string_delimiter, + [275135] = 3, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13530), 1, + aux_sym_preproc_include_token2, + ACTIONS(13532), 1, + sym_preproc_arg, + [275145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7935), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [105700] = 4, + ACTIONS(13534), 1, + anon_sym_LPAREN2, + ACTIONS(13536), 1, + sym_raw_string_delimiter, + [275155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7647), 1, - anon_sym_COMMA, - ACTIONS(7937), 1, - anon_sym_RPAREN, - STATE(4210), 1, - aux_sym_parameter_list_repeat1, - [105713] = 4, + ACTIONS(13334), 1, + anon_sym_LT, + STATE(2987), 1, + sym_template_argument_list, + [275165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6854), 1, - anon_sym_COMMA, - ACTIONS(7939), 1, - anon_sym_SEMI, - STATE(4230), 1, - aux_sym_type_definition_repeat2, - [105726] = 4, + ACTIONS(13538), 1, + anon_sym_LPAREN2, + ACTIONS(13540), 1, + sym_raw_string_delimiter, + [275175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, - sym_identifier, - ACTIONS(7941), 1, - anon_sym_RBRACE, - STATE(4664), 1, - sym_enumerator, - [105739] = 3, + ACTIONS(13542), 1, + anon_sym_LPAREN2, + ACTIONS(13544), 1, + sym_raw_string_delimiter, + [275185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7945), 1, - anon_sym_RPAREN, - ACTIONS(7943), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [105750] = 4, + ACTIONS(13546), 1, + anon_sym_LPAREN2, + ACTIONS(13548), 1, + sym_raw_string_delimiter, + [275195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7947), 1, - anon_sym_COMMA, - ACTIONS(7949), 1, - anon_sym_RBRACE, - STATE(4423), 1, - aux_sym_enumerator_list_repeat1, - [105763] = 4, + ACTIONS(13550), 1, + anon_sym_LPAREN2, + ACTIONS(13552), 1, + sym_raw_string_delimiter, + [275205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 1, + ACTIONS(13554), 1, anon_sym_LPAREN2, - ACTIONS(7951), 1, - anon_sym_constexpr, - STATE(876), 1, - sym_condition_clause, - [105776] = 4, - ACTIONS(6218), 1, + ACTIONS(13556), 1, + sym_raw_string_delimiter, + [275215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13558), 1, anon_sym_LPAREN2, - ACTIONS(6220), 1, + ACTIONS(13560), 1, + sym_raw_string_delimiter, + [275225] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7953), 1, - anon_sym_LF, - STATE(3397), 1, - sym_preproc_argument_list, - [105789] = 4, + ACTIONS(13562), 1, + anon_sym_LPAREN2, + ACTIONS(13564), 1, + sym_raw_string_delimiter, + [275235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 1, - anon_sym_COMMA, - ACTIONS(7955), 1, - anon_sym_RBRACK_RBRACK, - STATE(4347), 1, - aux_sym_attribute_declaration_repeat1, - [105802] = 2, + ACTIONS(13566), 1, + anon_sym_LPAREN2, + ACTIONS(13568), 1, + sym_raw_string_delimiter, + [275245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7957), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [105811] = 4, + ACTIONS(13570), 1, + anon_sym_LPAREN2, + ACTIONS(13572), 1, + sym_raw_string_delimiter, + [275255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 1, - anon_sym_COMMA, - ACTIONS(7959), 1, - anon_sym_RBRACK_RBRACK, - STATE(4421), 1, - aux_sym_attribute_declaration_repeat1, - [105824] = 4, + ACTIONS(13574), 1, + anon_sym_LPAREN2, + ACTIONS(13576), 1, + sym_raw_string_delimiter, + [275265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7961), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [105837] = 4, + ACTIONS(13578), 1, + anon_sym_LPAREN2, + ACTIONS(13580), 1, + sym_raw_string_delimiter, + [275275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7963), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [105850] = 4, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3479), 1, + sym_field_declaration_list, + [275285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7965), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [105863] = 4, + ACTIONS(6305), 1, + anon_sym_LBRACE, + STATE(3480), 1, + sym_field_declaration_list, + [275295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, + ACTIONS(9259), 2, anon_sym_COMMA, - ACTIONS(7967), 1, - anon_sym_GT2, - STATE(4395), 1, - aux_sym_template_argument_list_repeat1, - [105876] = 2, + anon_sym_RPAREN, + [275303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7957), 3, - anon_sym_SEMI, + ACTIONS(4990), 1, anon_sym_LBRACE, - anon_sym_EQ, - [105885] = 4, + STATE(1387), 1, + sym_field_declaration_list, + [275313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, - sym_identifier, - STATE(1303), 1, - sym_template_type, - STATE(2203), 1, - sym_template_function, - [105898] = 4, + ACTIONS(6275), 1, + anon_sym_LBRACE, + STATE(5082), 1, + sym_field_declaration_list, + [275323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2435), 1, - anon_sym_LBRACE, - ACTIONS(7598), 1, - anon_sym_COLON_COLON, - STATE(557), 1, - sym_declaration_list, - [105911] = 3, + ACTIONS(13582), 1, + anon_sym_STAR, + [275330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, - anon_sym_catch, - STATE(103), 2, - sym_catch_clause, - aux_sym_try_statement_repeat1, - [105922] = 4, + ACTIONS(13584), 1, + sym_identifier, + [275337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, + ACTIONS(13586), 1, anon_sym_COMMA, - ACTIONS(7973), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [105935] = 4, + [275344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7975), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [105948] = 4, + ACTIONS(5238), 1, + anon_sym_SEMI, + [275351] = 2, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13588), 1, + aux_sym_preproc_include_token2, + [275358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7977), 1, - anon_sym_COMMA, - ACTIONS(7979), 1, - anon_sym_RBRACE, - STATE(4225), 1, - aux_sym_enumerator_list_repeat1, - [105961] = 4, + ACTIONS(13590), 1, + anon_sym_RPAREN, + [275365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7981), 1, - anon_sym_GT2, - STATE(4439), 1, - aux_sym_template_argument_list_repeat1, - [105974] = 4, + ACTIONS(13592), 1, + sym_raw_string_delimiter, + [275372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, - sym_identifier, - ACTIONS(7979), 1, - anon_sym_RBRACE, - STATE(4664), 1, - sym_enumerator, - [105987] = 4, + ACTIONS(5817), 1, + anon_sym_DOT_DOT_DOT, + [275379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, - anon_sym_COMMA, - ACTIONS(7983), 1, + ACTIONS(13594), 1, anon_sym_RPAREN, - STATE(4228), 1, - aux_sym_argument_list_repeat1, - [106000] = 4, + [275386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7985), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [106013] = 4, + ACTIONS(7688), 1, + anon_sym_RPAREN, + [275393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(7987), 1, + ACTIONS(9275), 1, anon_sym_SEMI, - STATE(4240), 1, - aux_sym_declaration_repeat1, - [106026] = 4, + [275400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(7989), 1, - anon_sym_SEMI, - STATE(4240), 1, - aux_sym_declaration_repeat1, - [106039] = 4, + ACTIONS(13596), 1, + aux_sym_preproc_if_token2, + [275407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(7991), 1, - anon_sym_SEMI, - STATE(4240), 1, - aux_sym_declaration_repeat1, - [106052] = 4, + ACTIONS(13598), 1, + anon_sym_RPAREN, + [275414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6854), 1, - anon_sym_COMMA, - ACTIONS(7993), 1, - anon_sym_SEMI, - STATE(4230), 1, - aux_sym_type_definition_repeat2, - [106065] = 4, + ACTIONS(13600), 1, + anon_sym_RPAREN, + [275421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(7995), 1, - anon_sym_SEMI, - STATE(4240), 1, - aux_sym_declaration_repeat1, - [106078] = 4, + ACTIONS(13602), 1, + anon_sym_RPAREN, + [275428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(7997), 1, - anon_sym_GT2, - STATE(4403), 1, - aux_sym_template_argument_list_repeat1, - [106091] = 4, + ACTIONS(13604), 1, + anon_sym_RPAREN, + [275435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(7999), 1, - anon_sym_SEMI, - STATE(4433), 1, - aux_sym_declaration_repeat1, - [106104] = 4, + ACTIONS(13606), 1, + aux_sym_preproc_if_token2, + [275442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8001), 1, - sym_identifier, - STATE(1303), 1, - sym_template_type, - STATE(3715), 1, - sym_template_function, - [106117] = 4, + ACTIONS(13608), 1, + anon_sym_RPAREN, + [275449] = 2, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13610), 1, + aux_sym_preproc_include_token2, + [275456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(8003), 1, - anon_sym_SEMI, - STATE(4410), 1, - aux_sym_declaration_repeat1, - [106130] = 4, + ACTIONS(13612), 1, + anon_sym_RPAREN, + [275463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 1, - anon_sym_LPAREN2, - ACTIONS(7108), 1, - anon_sym_LBRACK, - STATE(3342), 1, - sym_parameter_list, - [106143] = 4, + ACTIONS(13614), 1, + anon_sym_RPAREN, + [275470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6854), 1, - anon_sym_COMMA, - ACTIONS(8005), 1, - anon_sym_SEMI, - STATE(4230), 1, - aux_sym_type_definition_repeat2, - [106156] = 4, + ACTIONS(13616), 1, + anon_sym_STAR, + [275477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 1, - anon_sym_COMMA, - ACTIONS(8007), 1, - anon_sym_RBRACK_RBRACK, - STATE(4269), 1, - aux_sym_attribute_declaration_repeat1, - [106169] = 4, + ACTIONS(13618), 1, + aux_sym_preproc_if_token2, + [275484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, - sym_identifier, - ACTIONS(8009), 1, - anon_sym_RBRACE, - STATE(4664), 1, - sym_enumerator, - [106182] = 4, + ACTIONS(13620), 1, + aux_sym_preproc_if_token2, + [275491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8009), 1, - anon_sym_RBRACE, - ACTIONS(8011), 1, - anon_sym_COMMA, - STATE(4225), 1, - aux_sym_enumerator_list_repeat1, - [106195] = 4, + ACTIONS(13622), 1, + sym_identifier, + [275498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, - anon_sym_COMMA, - ACTIONS(5421), 1, + ACTIONS(9450), 1, anon_sym_RPAREN, - STATE(4408), 1, - aux_sym_argument_list_repeat1, - [106208] = 4, + [275505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8013), 1, - anon_sym_COMMA, - ACTIONS(8015), 1, - anon_sym_RBRACE, - STATE(4405), 1, - aux_sym_enumerator_list_repeat1, - [106221] = 4, + ACTIONS(13624), 1, + anon_sym_STAR, + [275512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6854), 1, - anon_sym_COMMA, - ACTIONS(8017), 1, - anon_sym_SEMI, - STATE(4230), 1, - aux_sym_type_definition_repeat2, - [106234] = 4, + ACTIONS(13626), 1, + aux_sym_preproc_if_token2, + [275519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(8019), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [106247] = 4, + ACTIONS(13628), 1, + sym_identifier, + [275526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(8021), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [106260] = 4, + ACTIONS(9261), 1, + anon_sym_SEMI, + [275533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(8023), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [106273] = 4, + ACTIONS(13630), 1, + anon_sym_SEMI, + [275540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6854), 1, - anon_sym_COMMA, - ACTIONS(8025), 1, - anon_sym_SEMI, - STATE(4230), 1, - aux_sym_type_definition_repeat2, - [106286] = 4, + ACTIONS(13632), 1, + aux_sym_preproc_if_token2, + [275547] = 2, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13634), 1, + aux_sym_preproc_include_token2, + [275554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(8027), 1, - anon_sym_SEMI, - STATE(4240), 1, - aux_sym_declaration_repeat1, - [106299] = 4, + ACTIONS(13636), 1, + aux_sym_preproc_if_token2, + [275561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(8029), 1, - anon_sym_SEMI, - STATE(4240), 1, - aux_sym_declaration_repeat1, - [106312] = 4, + ACTIONS(5768), 1, + anon_sym_DOT_DOT_DOT, + [275568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(8031), 1, - anon_sym_SEMI, - STATE(4240), 1, - aux_sym_declaration_repeat1, - [106325] = 4, + ACTIONS(8935), 1, + anon_sym_RBRACE, + [275575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(8033), 1, - anon_sym_GT2, - STATE(4427), 1, - aux_sym_template_argument_list_repeat1, - [106338] = 4, + ACTIONS(13638), 1, + anon_sym_RPAREN, + [275582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(8035), 1, - anon_sym_SEMI, - STATE(4431), 1, - aux_sym_declaration_repeat1, - [106351] = 4, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + [275589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(8037), 1, - anon_sym_GT2, - STATE(4376), 1, - aux_sym_template_argument_list_repeat1, - [106364] = 4, + ACTIONS(13640), 1, + anon_sym_RPAREN, + [275596] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13642), 1, + anon_sym_RPAREN, + [275603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(8039), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [106377] = 4, + ACTIONS(13644), 1, + anon_sym_RPAREN, + [275610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(8041), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [106390] = 4, + ACTIONS(13646), 1, + anon_sym_RPAREN, + [275617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_COMMA, - ACTIONS(8043), 1, - anon_sym_GT2, - STATE(4216), 1, - aux_sym_template_argument_list_repeat1, - [106403] = 4, + ACTIONS(13648), 1, + aux_sym_preproc_if_token2, + [275624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, + ACTIONS(13650), 1, sym_identifier, - ACTIONS(8045), 1, - anon_sym_RBRACE, - STATE(4664), 1, - sym_enumerator, - [106416] = 4, + [275631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6854), 1, - anon_sym_COMMA, - ACTIONS(8047), 1, + ACTIONS(13652), 1, + sym_identifier, + [275638] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13654), 1, anon_sym_SEMI, - STATE(4230), 1, - aux_sym_type_definition_repeat2, - [106429] = 3, + [275645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5112), 1, - anon_sym_LPAREN2, - STATE(5073), 1, - sym_argument_list, - [106439] = 3, + ACTIONS(13656), 1, + anon_sym_RPAREN, + [275652] = 2, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13658), 1, + aux_sym_preproc_include_token2, + [275659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2597), 1, - sym_field_declaration_list, - [106449] = 3, + ACTIONS(13660), 1, + sym_identifier, + [275666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - anon_sym_LBRACE, - STATE(3794), 1, - sym_field_declaration_list, - [106459] = 3, + ACTIONS(13662), 1, + anon_sym_RPAREN, + [275673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - anon_sym_LBRACE, - STATE(3849), 1, - sym_field_declaration_list, - [106469] = 3, + ACTIONS(13664), 1, + sym_auto, + [275680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - anon_sym_LBRACE, - STATE(3850), 1, - sym_field_declaration_list, - [106479] = 3, + ACTIONS(13666), 1, + anon_sym_SEMI, + [275687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, + ACTIONS(13668), 1, anon_sym_LBRACE, - STATE(3851), 1, - sym_field_declaration_list, - [106489] = 2, + [275694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1591), 2, - anon_sym_else, - anon_sym_while, - [106497] = 3, + ACTIONS(13670), 1, + sym_identifier, + [275701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 1, - anon_sym_LPAREN2, - STATE(859), 1, - sym_condition_clause, - [106507] = 2, + ACTIONS(13672), 1, + aux_sym_preproc_if_token2, + [275708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1599), 2, - anon_sym_else, - anon_sym_while, - [106515] = 3, + ACTIONS(13674), 1, + anon_sym_DOT_DOT_DOT, + [275715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1350), 1, - sym_field_declaration_list, - [106525] = 2, + ACTIONS(13677), 1, + anon_sym_RPAREN, + [275722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1623), 2, - anon_sym_else, - anon_sym_while, - [106533] = 2, + ACTIONS(13679), 1, + aux_sym_preproc_if_token2, + [275729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 2, - anon_sym_else, - anon_sym_while, - [106541] = 2, + ACTIONS(9277), 1, + anon_sym_SEMI, + [275736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1643), 2, - anon_sym_else, - anon_sym_while, - [106549] = 2, + ACTIONS(13681), 1, + anon_sym_DOT_DOT_DOT, + [275743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1575), 2, - anon_sym_else, - anon_sym_while, - [106557] = 2, + ACTIONS(13683), 1, + anon_sym_STAR, + [275750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1647), 2, - anon_sym_else, - anon_sym_while, - [106565] = 3, + ACTIONS(13685), 1, + aux_sym_preproc_if_token2, + [275757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - STATE(1452), 1, - sym_field_declaration_list, - [106575] = 3, + ACTIONS(13376), 1, + anon_sym_RBRACE, + [275764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - STATE(1448), 1, - sym_field_declaration_list, - [106585] = 3, + ACTIONS(13687), 1, + anon_sym_SEMI, + [275771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - anon_sym_LBRACE, - STATE(3788), 1, - sym_field_declaration_list, - [106595] = 3, + ACTIONS(13689), 1, + aux_sym_preproc_if_token2, + [275778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - STATE(1443), 1, - sym_field_declaration_list, - [106605] = 3, + ACTIONS(9225), 1, + anon_sym_SEMI, + [275785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - STATE(1440), 1, - sym_field_declaration_list, - [106615] = 3, + ACTIONS(13691), 1, + anon_sym_SEMI, + [275792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - STATE(1426), 1, - sym_field_declaration_list, - [106625] = 3, + ACTIONS(13693), 1, + anon_sym_SEMI, + [275799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - anon_sym_LBRACE, - STATE(3789), 1, - sym_field_declaration_list, - [106635] = 3, + ACTIONS(13695), 1, + sym_identifier, + [275806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1359), 1, - sym_field_declaration_list, - [106645] = 3, - ACTIONS(3), 1, + ACTIONS(13697), 1, + anon_sym_RPAREN, + [275813] = 2, + ACTIONS(10249), 1, sym_comment, - ACTIONS(4138), 1, - anon_sym_LBRACE, - STATE(3790), 1, - sym_field_declaration_list, - [106655] = 3, + ACTIONS(13699), 1, + aux_sym_preproc_include_token2, + [275820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - anon_sym_LBRACE, - STATE(3791), 1, - sym_field_declaration_list, - [106665] = 3, + ACTIONS(13701), 1, + anon_sym_RPAREN, + [275827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3354), 1, - anon_sym_LT, - STATE(3653), 1, - sym_template_argument_list, - [106675] = 3, + ACTIONS(13703), 1, + anon_sym_RPAREN, + [275834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - anon_sym_LBRACE, - STATE(3792), 1, - sym_field_declaration_list, - [106685] = 3, + ACTIONS(5236), 1, + anon_sym_SEMI, + [275841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - STATE(1425), 1, - sym_field_declaration_list, - [106695] = 3, + ACTIONS(13705), 1, + anon_sym_SEMI, + [275848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1655), 1, - anon_sym_while, - ACTIONS(8049), 1, - anon_sym_else, - [106705] = 3, + ACTIONS(13707), 1, + anon_sym_RPAREN, + [275855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - anon_sym_LBRACE, - STATE(3793), 1, - sym_field_declaration_list, - [106715] = 2, + ACTIONS(13709), 1, + anon_sym_RPAREN, + [275862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1665), 2, - anon_sym_else, - anon_sym_while, - [106723] = 3, + ACTIONS(13711), 1, + anon_sym_COMMA, + [275869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - anon_sym_LBRACE, - STATE(3795), 1, - sym_field_declaration_list, - [106733] = 2, + ACTIONS(12058), 1, + anon_sym_COLON, + [275876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1611), 2, - anon_sym_else, - anon_sym_while, - [106741] = 2, + ACTIONS(13713), 1, + anon_sym_RPAREN, + [275883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1677), 2, - anon_sym_else, - anon_sym_while, - [106749] = 3, + ACTIONS(13715), 1, + anon_sym_SEMI, + [275890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1320), 1, - sym_field_declaration_list, - [106759] = 3, + ACTIONS(13717), 1, + anon_sym_RPAREN, + [275897] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - anon_sym_LBRACE, - STATE(3854), 1, - sym_field_declaration_list, - [106769] = 3, + ACTIONS(13719), 1, + anon_sym_LPAREN2, + [275904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8051), 1, - anon_sym_LT, - STATE(2085), 1, - sym_template_argument_list, - [106779] = 3, + ACTIONS(8933), 1, + anon_sym_SEMI, + [275911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3354), 1, - anon_sym_LT, - STATE(1294), 1, - sym_template_argument_list, - [106789] = 2, + ACTIONS(13721), 1, + anon_sym_RPAREN, + [275918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1681), 2, - anon_sym_else, - anon_sym_while, - [106797] = 2, + ACTIONS(9307), 1, + anon_sym_COLON, + [275925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1685), 2, - anon_sym_else, - anon_sym_while, - [106805] = 3, - ACTIONS(6220), 1, + ACTIONS(13723), 1, + anon_sym_RPAREN, + [275932] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8053), 1, - anon_sym_LF, - ACTIONS(8055), 1, - sym_preproc_arg, - [106815] = 2, + ACTIONS(13725), 1, + sym_identifier, + [275939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1689), 2, - anon_sym_else, - anon_sym_while, - [106823] = 2, + ACTIONS(13727), 1, + anon_sym_COMMA, + [275946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1693), 2, - anon_sym_else, - anon_sym_while, - [106831] = 2, + ACTIONS(9480), 1, + anon_sym_RPAREN, + [275953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 2, - anon_sym_else, - anon_sym_while, - [106839] = 3, + ACTIONS(13729), 1, + anon_sym_RPAREN, + [275960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3362), 1, - anon_sym_LT, - STATE(2509), 1, - sym_template_argument_list, - [106849] = 2, + ACTIONS(13731), 1, + anon_sym_RPAREN, + [275967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1587), 2, - anon_sym_else, - anon_sym_while, - [106857] = 3, + ACTIONS(13733), 1, + sym_identifier, + [275974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, - anon_sym_while, - ACTIONS(8057), 1, - anon_sym_else, - [106867] = 2, + ACTIONS(13735), 1, + anon_sym_DQUOTE, + [275981] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1563), 2, - anon_sym_else, - anon_sym_while, - [106875] = 3, + ACTIONS(9015), 1, + anon_sym_RBRACE, + [275988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8059), 1, - anon_sym_LT, - STATE(2007), 1, - sym_template_argument_list, - [106885] = 3, + ACTIONS(13737), 1, + anon_sym_RPAREN, + [275995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(452), 1, - sym_compound_statement, - [106895] = 2, + ACTIONS(13739), 1, + anon_sym_COLON, + [276002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1673), 2, - anon_sym_else, - anon_sym_while, - [106903] = 3, + ACTIONS(13741), 1, + anon_sym_LPAREN2, + [276009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - STATE(1458), 1, - sym_field_declaration_list, - [106913] = 3, + ACTIONS(13743), 1, + sym_auto, + [276016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - anon_sym_LBRACE, - STATE(3806), 1, - sym_field_declaration_list, - [106923] = 3, + ACTIONS(13745), 1, + anon_sym_RPAREN, + [276023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8061), 1, + ACTIONS(13747), 1, anon_sym_RPAREN, - ACTIONS(8063), 1, - aux_sym_alone_macro_call_token1, - [106933] = 3, + [276030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - STATE(1460), 1, - sym_field_declaration_list, - [106943] = 2, + ACTIONS(11235), 1, + anon_sym_RBRACE, + [276037] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1661), 2, - anon_sym_else, - anon_sym_while, - [106951] = 3, + ACTIONS(13749), 1, + anon_sym_SEMI, + [276044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - anon_sym_LBRACE, - STATE(3807), 1, - sym_field_declaration_list, - [106961] = 2, + ACTIONS(13751), 1, + sym_auto, + [276051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1579), 2, - anon_sym_else, - anon_sym_while, - [106969] = 2, + ACTIONS(13753), 1, + sym_identifier, + [276058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1651), 2, - anon_sym_else, - anon_sym_while, - [106977] = 3, + ACTIONS(9297), 1, + anon_sym_SEMI, + [276065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5252), 1, - anon_sym_RBRACK, - ACTIONS(8065), 1, - anon_sym_COMMA, - [106987] = 3, - ACTIONS(6220), 1, + ACTIONS(13755), 1, + anon_sym_SEMI, + [276072] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8067), 1, - anon_sym_LF, - ACTIONS(8069), 1, - sym_preproc_arg, - [106997] = 3, + ACTIONS(13757), 1, + anon_sym_SEMI, + [276079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - STATE(1411), 1, - sym_field_declaration_list, - [107007] = 3, + ACTIONS(13759), 1, + anon_sym_RPAREN, + [276086] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(269), 1, - anon_sym_LBRACE, - STATE(179), 1, - sym_compound_statement, - [107017] = 3, + ACTIONS(13761), 1, + anon_sym_SEMI, + [276093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 1, - anon_sym_LPAREN2, - STATE(875), 1, - sym_condition_clause, - [107027] = 3, + ACTIONS(13763), 1, + anon_sym_RBRACE, + [276100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - STATE(1449), 1, - sym_field_declaration_list, - [107037] = 3, + ACTIONS(13765), 1, + sym_identifier, + [276107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3354), 1, - anon_sym_LT, - STATE(1493), 1, - sym_template_argument_list, - [107047] = 3, + ACTIONS(13767), 1, + sym_identifier, + [276114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - anon_sym_LBRACE, - STATE(3811), 1, - sym_field_declaration_list, - [107057] = 3, + ACTIONS(9341), 1, + anon_sym_RPAREN, + [276121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - anon_sym_LBRACE, - STATE(3812), 1, - sym_field_declaration_list, - [107067] = 3, + ACTIONS(13769), 1, + anon_sym_SEMI, + [276128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - STATE(1450), 1, - sym_field_declaration_list, - [107077] = 3, + ACTIONS(13771), 1, + anon_sym_LPAREN2, + [276135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - STATE(1437), 1, - sym_field_declaration_list, - [107087] = 3, + ACTIONS(13773), 1, + anon_sym_SEMI, + [276142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, + ACTIONS(13775), 1, anon_sym_LBRACE, - STATE(1436), 1, - sym_field_declaration_list, - [107097] = 2, + [276149] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4120), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [107105] = 3, + ACTIONS(13777), 1, + anon_sym_RPAREN, + [276156] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - STATE(1434), 1, - sym_field_declaration_list, - [107115] = 3, + ACTIONS(13779), 1, + sym_raw_string_delimiter, + [276163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - STATE(1453), 1, - sym_field_declaration_list, - [107125] = 3, + ACTIONS(13781), 1, + anon_sym_DQUOTE, + [276170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - anon_sym_LBRACE, - STATE(3814), 1, - sym_field_declaration_list, - [107135] = 3, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(8071), 1, - anon_sym_LF, - ACTIONS(8073), 1, - sym_preproc_arg, - [107145] = 2, + ACTIONS(7913), 1, + sym_identifier, + [276177] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1607), 2, - anon_sym_else, - anon_sym_while, - [107153] = 3, + ACTIONS(7588), 1, + anon_sym_RPAREN, + [276184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8051), 1, - anon_sym_LT, - STATE(819), 1, - sym_template_argument_list, - [107163] = 2, + ACTIONS(13783), 1, + anon_sym_DQUOTE, + [276191] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1603), 2, - anon_sym_else, - anon_sym_while, - [107171] = 2, + ACTIONS(13785), 1, + anon_sym_RPAREN, + [276198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1539), 2, - anon_sym_else, - anon_sym_while, - [107179] = 3, + ACTIONS(9347), 1, + anon_sym_RPAREN, + [276205] = 2, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12772), 1, + aux_sym_preproc_include_token2, + [276212] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - anon_sym_LBRACE, - STATE(3815), 1, - sym_field_declaration_list, - [107189] = 3, + ACTIONS(13787), 1, + aux_sym_preproc_if_token2, + [276219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8075), 1, + ACTIONS(10736), 1, sym_identifier, - STATE(2471), 1, - sym_template_type, - [107199] = 3, + [276226] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8077), 1, - anon_sym_LT, - STATE(2010), 1, - sym_template_argument_list, - [107209] = 2, + ACTIONS(9211), 1, + anon_sym_SEMI, + [276233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1543), 2, - anon_sym_else, - anon_sym_while, - [107217] = 3, + ACTIONS(11285), 1, + anon_sym_RBRACE, + [276240] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - STATE(1451), 1, - sym_field_declaration_list, - [107227] = 3, - ACTIONS(3), 1, + ACTIONS(13789), 1, + anon_sym_SEMI, + [276247] = 2, + ACTIONS(10249), 1, sym_comment, - ACTIONS(3362), 1, - anon_sym_LT, - STATE(1497), 1, - sym_template_argument_list, - [107237] = 2, + ACTIONS(13791), 1, + aux_sym_preproc_include_token2, + [276254] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 2, - anon_sym_else, - anon_sym_while, - [107245] = 3, + ACTIONS(13793), 1, + anon_sym_RPAREN, + [276261] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 1, - anon_sym_LBRACE, - STATE(2375), 1, - sym_initializer_list, - [107255] = 3, + ACTIONS(7734), 1, + anon_sym_RPAREN, + [276268] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3362), 1, - anon_sym_LT, - STATE(3653), 1, - sym_template_argument_list, - [107265] = 2, + ACTIONS(13795), 1, + anon_sym_SEMI, + [276275] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 2, - anon_sym_else, - anon_sym_while, - [107273] = 2, + ACTIONS(11649), 1, + anon_sym_SEMI, + [276282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 2, - anon_sym_else, - anon_sym_while, - [107281] = 3, + ACTIONS(13797), 1, + sym_identifier, + [276289] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8077), 1, - anon_sym_LT, - STATE(2276), 1, - sym_template_argument_list, - [107291] = 2, + ACTIONS(13799), 1, + aux_sym_preproc_if_token2, + [276296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107299] = 3, + ACTIONS(11249), 1, + anon_sym_RBRACE, + [276303] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 1, + ACTIONS(13801), 1, anon_sym_LPAREN2, - STATE(874), 1, - sym_condition_clause, - [107309] = 3, + [276310] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8051), 1, - anon_sym_LT, - STATE(822), 1, - sym_template_argument_list, - [107319] = 3, + ACTIONS(13803), 1, + anon_sym_SEMI, + [276317] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3354), 1, - anon_sym_LT, - STATE(1479), 1, - sym_template_argument_list, - [107329] = 2, + ACTIONS(13805), 1, + sym_identifier, + [276324] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107337] = 2, + ACTIONS(13807), 1, + sym_identifier, + [276331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107345] = 2, + ACTIONS(13809), 1, + anon_sym_DQUOTE, + [276338] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107353] = 3, + ACTIONS(13811), 1, + aux_sym_preproc_if_token2, + [276345] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - STATE(1422), 1, - sym_field_declaration_list, - [107363] = 3, + ACTIONS(13813), 1, + anon_sym_RPAREN, + [276352] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - STATE(1421), 1, - sym_field_declaration_list, - [107373] = 2, + ACTIONS(13815), 1, + aux_sym_preproc_if_token2, + [276359] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107381] = 3, + ACTIONS(13817), 1, + anon_sym_STAR, + [276366] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8079), 1, - sym_identifier, - STATE(4282), 1, - sym_attribute, - [107391] = 3, + ACTIONS(12542), 1, + anon_sym_SEMI, + [276373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8081), 1, - anon_sym_LPAREN2, - STATE(4773), 1, - sym_condition_clause, - [107401] = 3, - ACTIONS(6220), 1, + ACTIONS(9291), 1, + anon_sym_COLON, + [276380] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8083), 1, - anon_sym_LF, - ACTIONS(8085), 1, - sym_preproc_arg, - [107411] = 2, + ACTIONS(11618), 1, + anon_sym_SEMI, + [276387] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107419] = 2, - ACTIONS(6220), 1, + ACTIONS(13819), 1, + anon_sym_RPAREN, + [276394] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [107427] = 2, + ACTIONS(11275), 1, + anon_sym_RBRACE, + [276401] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107435] = 2, + ACTIONS(13821), 1, + aux_sym_preproc_if_token2, + [276408] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107443] = 2, + ACTIONS(13823), 1, + anon_sym_SEMI, + [276415] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107451] = 3, + ACTIONS(13452), 1, + anon_sym_RBRACE, + [276422] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACE, - STATE(4292), 1, - sym_compound_statement, - [107461] = 2, + ACTIONS(13825), 1, + anon_sym_RPAREN, + [276429] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107469] = 2, + ACTIONS(13827), 1, + aux_sym_preproc_if_token2, + [276436] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107477] = 2, + ACTIONS(13829), 1, + sym_identifier, + [276443] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107485] = 3, + ACTIONS(12366), 1, + anon_sym_SEMI, + [276450] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13831), 1, + anon_sym_RPAREN, + [276457] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13833), 1, + anon_sym_RBRACE, + [276464] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5112), 1, + ACTIONS(13835), 1, anon_sym_LPAREN2, - STATE(5044), 1, - sym_argument_list, - [107495] = 2, + [276471] = 2, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13837), 1, + aux_sym_preproc_include_token2, + [276478] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107503] = 2, + ACTIONS(13839), 1, + anon_sym_RPAREN, + [276485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107511] = 3, + ACTIONS(13841), 1, + anon_sym_COLON, + [276492] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8089), 1, - sym_identifier, - STATE(1303), 1, - sym_template_type, - [107521] = 2, + ACTIONS(13843), 1, + anon_sym_LPAREN2, + [276499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107529] = 2, + ACTIONS(9299), 1, + anon_sym_SEMI, + [276506] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107537] = 2, + ACTIONS(9311), 1, + anon_sym_RPAREN, + [276513] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107545] = 2, + ACTIONS(13845), 1, + sym_identifier, + [276520] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107553] = 2, + ACTIONS(13847), 1, + anon_sym_COLON, + [276527] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107561] = 2, + ACTIONS(11622), 1, + anon_sym_SEMI, + [276534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107569] = 2, + ACTIONS(13849), 1, + anon_sym_RPAREN, + [276541] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107577] = 2, + ACTIONS(13851), 1, + anon_sym_SEMI, + [276548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107585] = 3, + ACTIONS(13853), 1, + anon_sym_SEMI, + [276555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5112), 1, - anon_sym_LPAREN2, - STATE(4878), 1, - sym_argument_list, - [107595] = 2, + ACTIONS(13855), 1, + anon_sym_RPAREN, + [276562] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107603] = 2, + ACTIONS(5885), 1, + anon_sym_DOT_DOT_DOT, + [276569] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107611] = 2, + ACTIONS(13857), 1, + anon_sym_RPAREN, + [276576] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107619] = 2, + ACTIONS(13859), 1, + anon_sym_SEMI, + [276583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107627] = 3, + ACTIONS(13861), 1, + anon_sym_RPAREN, + [276590] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2056), 1, - sym_field_declaration_list, - [107637] = 3, + ACTIONS(13863), 1, + anon_sym_RPAREN, + [276597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2055), 1, - sym_field_declaration_list, - [107647] = 3, + ACTIONS(13865), 1, + sym_identifier, + [276604] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2054), 1, - sym_field_declaration_list, - [107657] = 2, + ACTIONS(13867), 1, + anon_sym_SEMI, + [276611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107665] = 2, + ACTIONS(13869), 1, + aux_sym_alone_macro_call_token1, + [276618] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107673] = 2, + ACTIONS(13871), 1, + sym_identifier, + [276625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107681] = 2, + ACTIONS(9283), 1, + anon_sym_RPAREN, + [276632] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107689] = 3, + ACTIONS(13873), 1, + anon_sym_STAR, + [276639] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8079), 1, - sym_identifier, - STATE(4392), 1, - sym_attribute, - [107699] = 2, + ACTIONS(13875), 1, + aux_sym_preproc_if_token2, + [276646] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107707] = 2, + ACTIONS(13877), 1, + anon_sym_LPAREN2, + [276653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107715] = 3, + ACTIONS(13879), 1, + anon_sym_DQUOTE, + [276660] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6523), 1, - anon_sym_LT, - STATE(3586), 1, - sym_template_argument_list, - [107725] = 3, + ACTIONS(13881), 1, + anon_sym_RPAREN, + [276667] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13883), 1, + sym_raw_string_delimiter, + [276674] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8091), 1, + ACTIONS(9325), 1, anon_sym_RPAREN, - ACTIONS(8093), 1, - aux_sym_alone_macro_call_token1, - [107735] = 2, + [276681] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107743] = 3, + ACTIONS(12421), 1, + anon_sym_SEMI, + [276688] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8095), 1, - anon_sym_default, - ACTIONS(8097), 1, - anon_sym_delete, - [107753] = 3, + ACTIONS(11245), 1, + anon_sym_RBRACE, + [276695] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACE, - STATE(4188), 1, - sym_compound_statement, - [107763] = 2, + ACTIONS(13885), 1, + anon_sym_LPAREN2, + [276702] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107771] = 2, + ACTIONS(13887), 1, + anon_sym_STAR, + [276709] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107779] = 3, - ACTIONS(6220), 1, + ACTIONS(13889), 1, + anon_sym_RPAREN, + [276716] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8099), 1, - anon_sym_LF, - ACTIONS(8101), 1, - sym_preproc_arg, - [107789] = 2, + ACTIONS(13891), 1, + sym_identifier, + [276723] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107797] = 2, + ACTIONS(9227), 1, + anon_sym_COLON, + [276730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107805] = 2, + ACTIONS(9051), 1, + anon_sym_SEMI, + [276737] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_else, - anon_sym_while, - [107813] = 2, + ACTIONS(13893), 1, + anon_sym_RPAREN, + [276744] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1639), 2, - anon_sym_else, - anon_sym_while, - [107821] = 2, + ACTIONS(13895), 1, + anon_sym_DQUOTE, + [276751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1635), 2, - anon_sym_else, - anon_sym_while, - [107829] = 2, + ACTIONS(13897), 1, + sym_identifier, + [276758] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1627), 2, - anon_sym_else, - anon_sym_while, - [107837] = 3, + ACTIONS(13899), 1, + anon_sym_SEMI, + [276765] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2049), 1, - sym_field_declaration_list, - [107847] = 3, + ACTIONS(13901), 1, + sym_identifier, + [276772] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2048), 1, - sym_field_declaration_list, - [107857] = 3, + ACTIONS(13903), 1, + anon_sym_DQUOTE, + [276779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2065), 1, - sym_field_declaration_list, - [107867] = 3, + ACTIONS(5995), 1, + anon_sym_SEMI, + [276786] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2062), 1, - sym_field_declaration_list, - [107877] = 3, + ACTIONS(13905), 1, + aux_sym_preproc_if_token2, + [276793] = 2, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10576), 1, + aux_sym_preproc_include_token2, + [276800] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2061), 1, - sym_field_declaration_list, - [107887] = 3, + ACTIONS(13907), 1, + anon_sym_STAR, + [276807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5112), 1, - anon_sym_LPAREN2, - STATE(5232), 1, - sym_argument_list, - [107897] = 2, + ACTIONS(9303), 1, + anon_sym_COLON, + [276814] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8103), 2, + ACTIONS(13909), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [107905] = 3, + [276821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2060), 1, - sym_field_declaration_list, - [107915] = 3, + ACTIONS(13911), 1, + anon_sym_DQUOTE, + [276828] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, - anon_sym_LBRACE, - STATE(227), 1, - sym_compound_statement, - [107925] = 3, + ACTIONS(13913), 1, + anon_sym_while, + [276835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2059), 1, - sym_field_declaration_list, - [107935] = 3, + ACTIONS(13915), 1, + anon_sym_DQUOTE, + [276842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2058), 1, - sym_field_declaration_list, - [107945] = 3, + ACTIONS(13917), 1, + aux_sym_preproc_if_token2, + [276849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2057), 1, - sym_field_declaration_list, - [107955] = 3, + ACTIONS(5240), 1, + anon_sym_SEMI, + [276856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2574), 1, - sym_field_declaration_list, - [107965] = 2, + ACTIONS(13909), 1, + anon_sym_DASH, + [276863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8105), 2, - anon_sym_COMMA, - anon_sym_GT2, - [107973] = 3, + ACTIONS(13909), 1, + anon_sym_PLUS, + [276870] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2572), 1, - sym_field_declaration_list, - [107983] = 2, + ACTIONS(13919), 1, + anon_sym_STAR, + [276877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7524), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [107991] = 2, + ACTIONS(13921), 1, + anon_sym_COLON, + [276884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [107999] = 3, + ACTIONS(13909), 1, + anon_sym_STAR, + [276891] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13923), 1, + anon_sym_SLASH, + [276898] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8107), 1, + ACTIONS(13925), 1, anon_sym_LPAREN2, - STATE(4863), 1, - sym_parenthesized_expression, - [108009] = 3, + [276905] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3362), 1, - anon_sym_LT, - STATE(1294), 1, - sym_template_argument_list, - [108019] = 3, + ACTIONS(13927), 1, + anon_sym_RPAREN, + [276912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - anon_sym_LBRACE, - STATE(3825), 1, - sym_field_declaration_list, - [108029] = 3, + ACTIONS(5262), 1, + anon_sym_SEMI, + [276919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2571), 1, - sym_field_declaration_list, - [108039] = 3, + ACTIONS(13929), 1, + sym_identifier, + [276926] = 2, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13931), 1, + aux_sym_preproc_include_token2, + [276933] = 2, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13933), 1, + aux_sym_preproc_include_token2, + [276940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, + ACTIONS(13935), 1, sym_identifier, - STATE(4664), 1, - sym_enumerator, - [108049] = 3, + [276947] = 2, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13937), 1, + aux_sym_preproc_include_token2, + [276954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - anon_sym_LBRACE, - STATE(3826), 1, - sym_field_declaration_list, - [108059] = 3, + ACTIONS(13909), 1, + anon_sym_PERCENT, + [276961] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(269), 1, - anon_sym_LBRACE, - STATE(107), 1, - sym_compound_statement, - [108069] = 3, + ACTIONS(13939), 1, + aux_sym_preproc_if_token2, + [276968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8081), 1, - anon_sym_LPAREN2, - STATE(4491), 1, - sym_condition_clause, - [108079] = 3, + ACTIONS(13941), 1, + aux_sym_preproc_if_token2, + [276975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - STATE(4783), 1, - sym_parameter_list, - [108089] = 2, - ACTIONS(6220), 1, + ACTIONS(13943), 1, + aux_sym_preproc_if_token2, + [276982] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13945), 1, + anon_sym_RPAREN, + [276989] = 2, + ACTIONS(10249), 1, sym_comment, - ACTIONS(8109), 2, + ACTIONS(13947), 1, anon_sym_LF, - sym_preproc_arg, - [108097] = 3, + [276996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - anon_sym_LBRACE, - STATE(3828), 1, - sym_field_declaration_list, - [108107] = 2, + ACTIONS(13949), 1, + anon_sym_SEMI, + [277003] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7557), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [108115] = 3, + ACTIONS(13909), 1, + anon_sym_PIPE_PIPE, + [277010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3362), 1, - anon_sym_LT, - STATE(4238), 1, - sym_template_argument_list, - [108125] = 3, + ACTIONS(13951), 1, + anon_sym_SEMI, + [277017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 1, - anon_sym_LPAREN2, - STATE(881), 1, - sym_condition_clause, - [108135] = 3, + ACTIONS(13909), 1, + anon_sym_AMP_AMP, + [277024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8059), 1, - anon_sym_LT, - STATE(2038), 1, - sym_template_argument_list, - [108145] = 3, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(8111), 1, - anon_sym_LF, - ACTIONS(8113), 1, - sym_preproc_arg, - [108155] = 2, + ACTIONS(13953), 1, + aux_sym_preproc_if_token2, + [277031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7573), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [108163] = 2, + ACTIONS(13909), 1, + anon_sym_PIPE, + [277038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7578), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [108171] = 2, + ACTIONS(13909), 1, + anon_sym_CARET, + [277045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8115), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - [108179] = 3, + ACTIONS(13955), 1, + sym_identifier, + [277052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - STATE(1418), 1, - sym_field_declaration_list, - [108189] = 3, + ACTIONS(13957), 1, + anon_sym_RPAREN, + [277059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 1, - anon_sym_LPAREN2, - STATE(889), 1, - sym_condition_clause, - [108199] = 2, + ACTIONS(13909), 1, + anon_sym_AMP, + [277066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7583), 2, - anon_sym_COMMA, - anon_sym_GT2, - [108207] = 3, + ACTIONS(5986), 1, + anon_sym_SEMI, + [277073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - STATE(1417), 1, - sym_field_declaration_list, - [108217] = 2, + ACTIONS(13959), 1, + anon_sym_EQ, + [277080] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8117), 2, - anon_sym_COMMA, - anon_sym_GT2, - [108225] = 3, + ACTIONS(13961), 1, + sym_identifier, + [277087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_LBRACE, - STATE(1416), 1, - sym_field_declaration_list, - [108235] = 3, - ACTIONS(6220), 1, + ACTIONS(13963), 1, + anon_sym_RPAREN, + [277094] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8119), 1, - anon_sym_LF, - ACTIONS(8121), 1, - sym_preproc_arg, - [108245] = 3, + ACTIONS(13965), 1, + sym_raw_string_delimiter, + [277101] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2068), 1, - sym_field_declaration_list, - [108255] = 3, + ACTIONS(13967), 1, + anon_sym_RPAREN, + [277108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2069), 1, - sym_field_declaration_list, - [108265] = 3, + ACTIONS(13969), 1, + sym_identifier, + [277115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2072), 1, - sym_field_declaration_list, - [108275] = 3, + ACTIONS(13909), 1, + anon_sym_EQ_EQ, + [277122] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2073), 1, - sym_field_declaration_list, - [108285] = 3, + ACTIONS(13971), 1, + anon_sym_SEMI, + [277129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2075), 1, - sym_field_declaration_list, - [108295] = 3, + ACTIONS(13973), 1, + anon_sym_SEMI, + [277136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2077), 1, - sym_field_declaration_list, - [108305] = 2, + ACTIONS(13975), 1, + anon_sym_RPAREN, + [277143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8123), 2, - anon_sym_COMMA, - anon_sym_GT2, - [108313] = 2, + ACTIONS(12443), 1, + anon_sym_SEMI, + [277150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8125), 2, - anon_sym_COMMA, - anon_sym_GT2, - [108321] = 2, + ACTIONS(9235), 1, + anon_sym_RPAREN, + [277157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8127), 2, - anon_sym_COMMA, - anon_sym_GT2, - [108329] = 3, + ACTIONS(13977), 1, + anon_sym_STAR, + [277164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2582), 1, - sym_field_declaration_list, - [108339] = 2, + ACTIONS(13979), 1, + anon_sym_RPAREN, + [277171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5441), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [108347] = 3, + ACTIONS(13909), 1, + anon_sym_BANG_EQ, + [277178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2583), 1, - sym_field_declaration_list, - [108357] = 2, + ACTIONS(13981), 1, + sym_auto, + [277185] = 2, + ACTIONS(5674), 1, + aux_sym_preproc_include_token2, + ACTIONS(10249), 1, + sym_comment, + [277192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5395), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [108365] = 3, + ACTIONS(13983), 1, + aux_sym_preproc_if_token2, + [277199] = 2, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(13985), 1, + aux_sym_preproc_include_token2, + [277206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1330), 1, - sym_field_declaration_list, - [108375] = 3, + ACTIONS(9193), 1, + anon_sym_COLON, + [277213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1327), 1, - sym_field_declaration_list, - [108385] = 3, + ACTIONS(13987), 1, + anon_sym_RPAREN, + [277220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1324), 1, - sym_field_declaration_list, - [108395] = 3, + ACTIONS(13989), 1, + anon_sym_RPAREN, + [277227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2585), 1, - sym_field_declaration_list, - [108405] = 3, + ACTIONS(13991), 1, + anon_sym_RPAREN, + [277234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2586), 1, - sym_field_declaration_list, - [108415] = 3, + ACTIONS(13993), 1, + anon_sym_SEMI, + [277241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8059), 1, - anon_sym_LT, - STATE(2003), 1, - sym_template_argument_list, - [108425] = 3, + ACTIONS(13995), 1, + anon_sym_STAR, + [277248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8129), 1, - anon_sym_LT, - STATE(2147), 1, - sym_template_argument_list, - [108435] = 3, + ACTIONS(13997), 1, + anon_sym_LPAREN2, + [277255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2595), 1, - sym_field_declaration_list, - [108445] = 3, - ACTIONS(6220), 1, + ACTIONS(13999), 1, + anon_sym_DQUOTE, + [277262] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8131), 1, - anon_sym_LF, - ACTIONS(8133), 1, - sym_preproc_arg, - [108455] = 3, + ACTIONS(14001), 1, + aux_sym_preproc_if_token2, + [277269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8135), 1, + ACTIONS(14003), 1, sym_identifier, - STATE(3588), 1, - sym_template_type, - [108465] = 3, + [277276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2596), 1, - sym_field_declaration_list, - [108475] = 2, + ACTIONS(14005), 1, + anon_sym_SEMI, + [277283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7615), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [108483] = 2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(8137), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [108491] = 3, + ACTIONS(14007), 1, + anon_sym_SEMI, + [277290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2601), 1, - sym_field_declaration_list, - [108501] = 2, + ACTIONS(14009), 1, + anon_sym_DQUOTE, + [277297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 2, - anon_sym_COMMA, + ACTIONS(9353), 1, anon_sym_RPAREN, - [108509] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4495), 1, - anon_sym_LPAREN2, - STATE(2165), 1, - sym_argument_list, - [108519] = 2, + [277304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8139), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [108527] = 3, + ACTIONS(9035), 1, + anon_sym_RBRACE, + [277311] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2301), 1, - sym_field_declaration_list, - [108537] = 2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(8141), 2, - anon_sym_LF, - sym_preproc_arg, - [108545] = 2, + ACTIONS(14011), 1, + anon_sym_RPAREN, + [277318] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8143), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [108553] = 3, + ACTIONS(9267), 1, + anon_sym_SEMI, + [277325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2303), 1, - sym_field_declaration_list, - [108563] = 3, + ACTIONS(14013), 1, + anon_sym_LPAREN2, + [277332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8059), 1, - anon_sym_LT, - STATE(2147), 1, - sym_template_argument_list, - [108573] = 2, + ACTIONS(14015), 1, + anon_sym_DQUOTE, + [277339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8145), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - [108581] = 3, + ACTIONS(14017), 1, + anon_sym_RPAREN, + [277346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACE, - STATE(4472), 1, - sym_compound_statement, - [108591] = 3, + ACTIONS(11251), 1, + anon_sym_RBRACE, + [277353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 1, - anon_sym_LPAREN2, - STATE(887), 1, - sym_condition_clause, - [108601] = 3, + ACTIONS(6013), 1, + anon_sym_SEMI, + [277360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2095), 1, - sym_field_declaration_list, - [108611] = 3, + ACTIONS(14019), 1, + anon_sym_SEMI, + [277367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2097), 1, - sym_field_declaration_list, - [108621] = 3, + ACTIONS(14021), 1, + anon_sym_RPAREN, + [277374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2099), 1, - sym_field_declaration_list, - [108631] = 2, + ACTIONS(14023), 1, + sym_auto, + [277381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8145), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - [108639] = 2, + ACTIONS(14025), 1, + anon_sym_STAR, + [277388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8145), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - [108647] = 3, + ACTIONS(14027), 1, + anon_sym_COLON, + [277395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2304), 1, - sym_field_declaration_list, - [108657] = 3, + ACTIONS(14029), 1, + anon_sym_RPAREN, + [277402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 1, - anon_sym_LPAREN2, - STATE(906), 1, - sym_condition_clause, - [108667] = 3, + ACTIONS(14031), 1, + sym_raw_string_delimiter, + [277409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 1, - anon_sym_LBRACE, - STATE(739), 1, - sym_compound_statement, - [108677] = 3, + ACTIONS(14033), 1, + anon_sym_SEMI, + [277416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8147), 1, - sym_identifier, - STATE(2008), 1, - sym_template_type, - [108687] = 2, + ACTIONS(14035), 1, + aux_sym_preproc_if_token2, + [277423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5399), 2, - anon_sym_COMMA, + ACTIONS(12322), 1, anon_sym_SEMI, - [108695] = 3, - ACTIONS(6220), 1, + [277430] = 2, + ACTIONS(10249), 1, sym_comment, - ACTIONS(8149), 1, - anon_sym_LF, - ACTIONS(8151), 1, - sym_preproc_arg, - [108705] = 2, + ACTIONS(14037), 1, + aux_sym_preproc_include_token2, + [277437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6661), 2, - anon_sym_COMMA, + ACTIONS(14039), 1, anon_sym_SEMI, - [108713] = 3, + [277444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3719), 1, - anon_sym_LBRACE, - STATE(2973), 1, - sym_initializer_list, - [108723] = 3, + ACTIONS(9231), 1, + anon_sym_COLON, + [277451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(224), 1, - sym_compound_statement, - [108733] = 2, + ACTIONS(14041), 1, + anon_sym_RPAREN, + [277458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8153), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [108741] = 2, + ACTIONS(14043), 1, + anon_sym_RPAREN, + [277465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8155), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - [108749] = 3, + ACTIONS(14045), 1, + anon_sym_SEMI, + [277472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3362), 1, - anon_sym_LT, - STATE(2085), 1, - sym_template_argument_list, - [108759] = 3, + ACTIONS(13909), 1, + anon_sym_GT, + [277479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8157), 1, - sym_identifier, - STATE(2063), 1, - sym_template_method, - [108769] = 3, + ACTIONS(14047), 1, + anon_sym_RBRACK, + [277486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 1, + ACTIONS(14049), 1, anon_sym_LPAREN2, - STATE(860), 1, - sym_condition_clause, - [108779] = 2, + [277493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8159), 2, - anon_sym_COMMA, - anon_sym_GT2, - [108787] = 3, + ACTIONS(9237), 1, + anon_sym_RPAREN, + [277500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2618), 1, - sym_field_declaration_list, - [108797] = 3, + ACTIONS(13394), 1, + anon_sym_RBRACE, + [277507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1339), 1, - sym_field_declaration_list, - [108807] = 3, + ACTIONS(9301), 1, + anon_sym_SEMI, + [277514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1337), 1, - sym_field_declaration_list, - [108817] = 3, + ACTIONS(14051), 1, + anon_sym_RPAREN, + [277521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1336), 1, - sym_field_declaration_list, - [108827] = 3, + ACTIONS(14053), 1, + anon_sym_RPAREN, + [277528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1335), 1, - sym_field_declaration_list, - [108837] = 3, + ACTIONS(14055), 1, + anon_sym_RPAREN, + [277535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1334), 1, - sym_field_declaration_list, - [108847] = 3, + ACTIONS(14057), 1, + sym_raw_string_delimiter, + [277542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1333), 1, - sym_field_declaration_list, - [108857] = 3, + ACTIONS(14059), 1, + anon_sym_STAR, + [277549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1332), 1, - sym_field_declaration_list, - [108867] = 3, - ACTIONS(3), 1, + ACTIONS(14061), 1, + anon_sym_RPAREN, + [277556] = 2, + ACTIONS(10249), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2493), 1, - sym_field_declaration_list, - [108877] = 3, + ACTIONS(14063), 1, + aux_sym_preproc_include_token2, + [277563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1329), 1, - sym_field_declaration_list, - [108887] = 3, + ACTIONS(14065), 1, + anon_sym_SEMI, + [277570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8079), 1, - sym_identifier, - STATE(4351), 1, - sym_attribute, - [108897] = 3, + ACTIONS(9315), 1, + anon_sym_RPAREN, + [277577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8081), 1, + ACTIONS(14067), 1, anon_sym_LPAREN2, - STATE(4676), 1, - sym_condition_clause, - [108907] = 3, + [277584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACE, - STATE(4204), 1, - sym_compound_statement, - [108917] = 3, + ACTIONS(14069), 1, + anon_sym_SEMI, + [277591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1328), 1, - sym_field_declaration_list, - [108927] = 2, - ACTIONS(6220), 1, + ACTIONS(14071), 1, + sym_identifier, + [277598] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8161), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [108935] = 3, + ACTIONS(14073), 1, + anon_sym_RPAREN, + [277605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2617), 1, - sym_field_declaration_list, - [108945] = 3, - ACTIONS(6220), 1, + ACTIONS(14075), 1, + aux_sym_preproc_if_token2, + [277612] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8163), 1, - anon_sym_LF, - ACTIONS(8165), 1, - sym_preproc_arg, - [108955] = 3, + ACTIONS(14077), 1, + sym_raw_string_delimiter, + [277619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2623), 1, - sym_field_declaration_list, - [108965] = 3, + ACTIONS(9251), 1, + anon_sym_SEMI, + [277626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACE, - STATE(4354), 1, - sym_compound_statement, - [108975] = 2, + ACTIONS(13396), 1, + anon_sym_RBRACE, + [277633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7702), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [108983] = 3, - ACTIONS(6220), 1, + ACTIONS(14079), 1, + aux_sym_preproc_if_token2, + [277640] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8167), 1, - anon_sym_LF, - ACTIONS(8169), 1, - sym_preproc_arg, - [108993] = 3, + ACTIONS(14081), 1, + anon_sym_RPAREN, + [277647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2621), 1, - sym_field_declaration_list, - [109003] = 3, + ACTIONS(14083), 1, + anon_sym_LPAREN2, + [277654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2612), 1, - sym_field_declaration_list, - [109013] = 3, + ACTIONS(14085), 1, + anon_sym_RPAREN, + [277661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2602), 1, - sym_field_declaration_list, - [109023] = 3, + ACTIONS(14087), 1, + sym_raw_string_delimiter, + [277668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1351), 1, - sym_field_declaration_list, - [109033] = 3, + ACTIONS(13476), 1, + anon_sym_RBRACE, + [277675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1349), 1, - sym_field_declaration_list, - [109043] = 3, + ACTIONS(14089), 1, + anon_sym_RPAREN, + [277682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1343), 1, - sym_field_declaration_list, - [109053] = 3, + ACTIONS(14091), 1, + anon_sym_RPAREN, + [277689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1311), 1, - sym_field_declaration_list, - [109063] = 3, + ACTIONS(14093), 1, + sym_raw_string_delimiter, + [277696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1314), 1, - sym_field_declaration_list, - [109073] = 3, + ACTIONS(14095), 1, + anon_sym_RPAREN, + [277703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2578), 1, - sym_field_declaration_list, - [109083] = 2, + ACTIONS(14097), 1, + anon_sym_RPAREN, + [277710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7717), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [109091] = 3, + ACTIONS(14099), 1, + anon_sym_RPAREN, + [277717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2323), 1, - sym_field_declaration_list, - [109101] = 3, + ACTIONS(14101), 1, + sym_raw_string_delimiter, + [277724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2324), 1, - sym_field_declaration_list, - [109111] = 3, + ACTIONS(14103), 1, + anon_sym_RPAREN, + [277731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8171), 1, - anon_sym_default, - ACTIONS(8173), 1, - anon_sym_delete, - [109121] = 3, + ACTIONS(14105), 1, + sym_raw_string_delimiter, + [277738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2359), 1, - sym_field_declaration_list, - [109131] = 2, - ACTIONS(6220), 1, + ACTIONS(14107), 1, + anon_sym_RPAREN, + [277745] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8175), 2, - anon_sym_LF, - sym_preproc_arg, - [109139] = 3, + ACTIONS(14109), 1, + sym_raw_string_delimiter, + [277752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8051), 1, - anon_sym_LT, - STATE(817), 1, - sym_template_argument_list, - [109149] = 3, + ACTIONS(14111), 1, + anon_sym_RPAREN, + [277759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LBRACE, - STATE(1312), 1, - sym_field_declaration_list, - [109159] = 3, + ACTIONS(14113), 1, + sym_raw_string_delimiter, + [277766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 1, + ACTIONS(14115), 1, anon_sym_RPAREN, - ACTIONS(8179), 1, - aux_sym_alone_macro_call_token1, - [109169] = 3, + [277773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2327), 1, - sym_field_declaration_list, - [109179] = 3, + ACTIONS(14117), 1, + sym_raw_string_delimiter, + [277780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8181), 1, - anon_sym_default, - ACTIONS(8183), 1, - anon_sym_delete, - [109189] = 3, + ACTIONS(14119), 1, + anon_sym_RPAREN, + [277787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8185), 1, - sym_identifier, - STATE(2063), 1, - sym_template_method, - [109199] = 2, + ACTIONS(14121), 1, + sym_raw_string_delimiter, + [277794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5354), 2, + ACTIONS(14123), 1, anon_sym_RPAREN, + [277801] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14125), 1, anon_sym_SEMI, - [109207] = 3, - ACTIONS(6220), 1, + [277808] = 2, + ACTIONS(10249), 1, sym_comment, - ACTIONS(8187), 1, - anon_sym_LF, - ACTIONS(8189), 1, - sym_preproc_arg, - [109217] = 3, + ACTIONS(14127), 1, + aux_sym_preproc_include_token2, + [277815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6208), 1, + ACTIONS(14129), 1, anon_sym_LPAREN2, - STATE(4789), 1, - sym_parameter_list, - [109227] = 3, + [277822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2328), 1, - sym_field_declaration_list, - [109237] = 3, + ACTIONS(14131), 1, + anon_sym_RPAREN, + [277829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 1, + ACTIONS(14133), 1, anon_sym_LPAREN2, - STATE(922), 1, - sym_condition_clause, - [109247] = 3, + [277836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8107), 1, + ACTIONS(14135), 1, anon_sym_LPAREN2, - STATE(4851), 1, - sym_parenthesized_expression, - [109257] = 3, + [277843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6178), 1, - anon_sym_LT, - STATE(2473), 1, - sym_template_argument_list, - [109267] = 3, + ACTIONS(14137), 1, + anon_sym_LPAREN2, + [277850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8079), 1, - sym_identifier, - STATE(4728), 1, - sym_attribute, - [109277] = 3, + ACTIONS(14139), 1, + anon_sym_RPAREN, + [277857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2331), 1, - sym_field_declaration_list, - [109287] = 3, + ACTIONS(14141), 1, + anon_sym_RPAREN, + [277864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 1, + ACTIONS(14143), 1, anon_sym_LPAREN2, - STATE(1036), 1, - sym_condition_clause, - [109297] = 3, + [277871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8191), 1, - anon_sym_default, - ACTIONS(8193), 1, - anon_sym_delete, - [109307] = 3, + ACTIONS(14145), 1, + anon_sym_SEMI, + [277878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 1, - anon_sym_LBRACE, - STATE(2166), 1, - sym_initializer_list, - [109317] = 3, + ACTIONS(14147), 1, + anon_sym_LPAREN2, + [277885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8107), 1, - anon_sym_LPAREN2, - STATE(5013), 1, - sym_parenthesized_expression, - [109327] = 3, - ACTIONS(6220), 1, + ACTIONS(14149), 1, + anon_sym_RPAREN, + [277892] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_LF, - ACTIONS(8197), 1, - sym_preproc_arg, - [109337] = 3, + ACTIONS(14151), 1, + anon_sym_RPAREN, + [277899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8199), 1, - sym_identifier, - ACTIONS(8201), 1, - anon_sym_LPAREN2, - [109347] = 2, + ACTIONS(14153), 1, + anon_sym_SEMI, + [277906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7515), 2, - anon_sym_COMMA, + ACTIONS(14155), 1, + anon_sym_RPAREN, + [277913] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14157), 1, anon_sym_SEMI, - [109355] = 3, + [277920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2453), 1, - sym_field_declaration_list, - [109365] = 3, + ACTIONS(13478), 1, + anon_sym_RBRACE, + [277927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2455), 1, - sym_field_declaration_list, - [109375] = 3, + ACTIONS(14159), 1, + anon_sym_LPAREN2, + [277934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACE, - STATE(4255), 1, - sym_compound_statement, - [109385] = 3, + ACTIONS(14161), 1, + anon_sym_SEMI, + [277941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8203), 1, - sym_identifier, - STATE(2262), 1, - sym_template_type, - [109395] = 3, + ACTIONS(14163), 1, + anon_sym_SEMI, + [277948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7260), 1, - sym_identifier, - STATE(1303), 1, - sym_template_type, - [109405] = 3, + ACTIONS(13909), 1, + anon_sym_GT_EQ, + [277955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8107), 1, - anon_sym_LPAREN2, - STATE(5169), 1, - sym_parenthesized_expression, - [109415] = 2, - ACTIONS(6220), 1, + ACTIONS(9369), 1, + anon_sym_RPAREN, + [277962] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13909), 1, + anon_sym_LT_EQ, + [277969] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13909), 1, + anon_sym_LT, + [277976] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8205), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [109423] = 3, + ACTIONS(12263), 1, + anon_sym_SEMI, + [277983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8081), 1, - anon_sym_LPAREN2, - STATE(4685), 1, - sym_condition_clause, - [109433] = 3, + ACTIONS(13909), 1, + anon_sym_LT_LT, + [277990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2333), 1, - sym_field_declaration_list, - [109443] = 3, + ACTIONS(14165), 1, + anon_sym_while, + [277997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_LPAREN2, - STATE(2389), 1, - sym_argument_list, - [109453] = 3, + ACTIONS(14167), 1, + anon_sym_RBRACE, + [278004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6208), 1, + ACTIONS(14169), 1, anon_sym_LPAREN2, - STATE(4605), 1, - sym_parameter_list, - [109463] = 3, + [278011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2441), 1, - sym_field_declaration_list, - [109473] = 3, + ACTIONS(13909), 1, + anon_sym_GT_GT, + [278018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2366), 1, - sym_field_declaration_list, - [109483] = 3, + ACTIONS(14171), 1, + sym_identifier, + [278025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - STATE(4587), 1, - sym_parameter_list, - [109493] = 3, + ACTIONS(9245), 1, + anon_sym_SEMI, + [278032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8107), 1, - anon_sym_LPAREN2, - STATE(5112), 1, - sym_parenthesized_expression, - [109503] = 3, + ACTIONS(14173), 1, + sym_identifier, + [278039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2374), 1, - sym_field_declaration_list, - [109513] = 3, + ACTIONS(13909), 1, + anon_sym_EQ, + [278046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 1, - anon_sym_LPAREN2, - STATE(854), 1, - sym_condition_clause, - [109523] = 3, + ACTIONS(14175), 1, + anon_sym_EQ, + [278053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 1, - anon_sym_LBRACE, - STATE(359), 1, - sym_compound_statement, - [109533] = 3, + ACTIONS(14177), 1, + sym_raw_string_content, + [278060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8207), 1, - anon_sym_default, - ACTIONS(8209), 1, - anon_sym_delete, - [109543] = 3, + ACTIONS(14179), 1, + aux_sym_preproc_if_token2, + [278067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - STATE(4691), 1, - sym_parameter_list, - [109553] = 3, + ACTIONS(14181), 1, + anon_sym_SEMI, + [278074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACE, - STATE(4287), 1, - sym_compound_statement, - [109563] = 3, + ACTIONS(14183), 1, + anon_sym_RPAREN, + [278081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2355), 1, - sym_field_declaration_list, - [109573] = 3, + ACTIONS(14185), 1, + anon_sym_DQUOTE, + [278088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8077), 1, - anon_sym_LT, - STATE(2461), 1, - sym_template_argument_list, - [109583] = 2, - ACTIONS(6220), 1, + ACTIONS(14187), 1, + anon_sym_STAR, + [278095] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8211), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [109591] = 3, + ACTIONS(9448), 1, + anon_sym_RPAREN, + [278102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2339), 1, - sym_field_declaration_list, - [109601] = 3, + ACTIONS(14189), 1, + anon_sym_DQUOTE, + [278109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8081), 1, - anon_sym_LPAREN2, - STATE(4793), 1, - sym_condition_clause, - [109611] = 3, + ACTIONS(14191), 1, + anon_sym_DQUOTE, + [278116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8079), 1, - sym_identifier, - STATE(4319), 1, - sym_attribute, - [109621] = 3, + ACTIONS(14193), 1, + anon_sym_RPAREN, + [278123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 1, - anon_sym_LBRACE, - STATE(193), 1, - sym_compound_statement, - [109631] = 3, - ACTIONS(6220), 1, + ACTIONS(11636), 1, + anon_sym_SEMI, + [278130] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8213), 1, - anon_sym_LF, - ACTIONS(8215), 1, - sym_preproc_arg, - [109641] = 3, + ACTIONS(14195), 1, + anon_sym_SEMI, + [278137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8217), 1, - sym_identifier, - ACTIONS(8219), 1, - anon_sym_inline, - [109651] = 3, + ACTIONS(14197), 1, + anon_sym_SEMI, + [278144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2340), 1, - sym_field_declaration_list, - [109661] = 3, + ACTIONS(14199), 1, + anon_sym_SEMI, + [278151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8221), 1, + ACTIONS(14201), 1, sym_identifier, - ACTIONS(8223), 1, - anon_sym_LPAREN2, - [109671] = 3, + [278158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8225), 1, + ACTIONS(14203), 1, sym_identifier, - STATE(2110), 1, - sym_template_type, - [109681] = 3, + [278165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 1, - anon_sym_LBRACE, - STATE(696), 1, - sym_compound_statement, - [109691] = 3, + ACTIONS(14205), 1, + anon_sym_RPAREN, + [278172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6238), 1, - anon_sym_LT, - STATE(2244), 1, - sym_template_argument_list, - [109701] = 3, + ACTIONS(14207), 1, + anon_sym_COMMA, + [278179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3362), 1, - anon_sym_LT, - STATE(1479), 1, - sym_template_argument_list, - [109711] = 3, + ACTIONS(14209), 1, + anon_sym_SEMI, + [278186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_LBRACE, - STATE(2678), 1, - sym_initializer_list, - [109721] = 3, + ACTIONS(14211), 1, + anon_sym_SEMI, + [278193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, - anon_sym_LBRACE, - STATE(378), 1, - sym_compound_statement, - [109731] = 3, + ACTIONS(13344), 1, + anon_sym_COMMA, + [278200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 1, - anon_sym_LPAREN2, - STATE(1012), 1, - sym_condition_clause, - [109741] = 3, + ACTIONS(14213), 1, + anon_sym_SEMI, + [278207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8077), 1, - anon_sym_LT, - STATE(2107), 1, - sym_template_argument_list, - [109751] = 3, + ACTIONS(9279), 1, + anon_sym_COLON, + [278214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2475), 1, - sym_field_declaration_list, - [109761] = 3, + ACTIONS(9155), 1, + anon_sym_RBRACE, + [278221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6208), 1, - anon_sym_LPAREN2, - STATE(4620), 1, - sym_parameter_list, - [109771] = 3, + ACTIONS(14215), 1, + sym_auto, + [278228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8227), 1, - anon_sym_default, - ACTIONS(8229), 1, - anon_sym_delete, - [109781] = 3, + ACTIONS(14217), 1, + anon_sym_DQUOTE, + [278235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2469), 1, - sym_field_declaration_list, - [109791] = 3, + ACTIONS(11754), 1, + anon_sym_EQ, + [278242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2472), 1, - sym_field_declaration_list, - [109801] = 3, + ACTIONS(14219), 1, + sym_identifier, + [278249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2489), 1, - sym_field_declaration_list, - [109811] = 3, + ACTIONS(14221), 1, + aux_sym_preproc_if_token2, + [278256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2476), 1, - sym_field_declaration_list, - [109821] = 3, + ACTIONS(11762), 1, + anon_sym_COMMA, + [278263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2392), 1, - sym_field_declaration_list, - [109831] = 3, + ACTIONS(14223), 1, + anon_sym_SEMI, + [278270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2400), 1, - sym_field_declaration_list, - [109841] = 3, + ACTIONS(14225), 1, + anon_sym_RPAREN, + [278277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2388), 1, - sym_field_declaration_list, - [109851] = 3, + ACTIONS(14227), 1, + anon_sym_RBRACE, + [278284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2402), 1, - sym_field_declaration_list, - [109861] = 3, + ACTIONS(14229), 1, + anon_sym_SEMI, + [278291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2488), 1, - sym_field_declaration_list, - [109871] = 3, + ACTIONS(14231), 1, + anon_sym_RPAREN, + [278298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2487), 1, - sym_field_declaration_list, - [109881] = 3, + ACTIONS(14233), 1, + anon_sym_DQUOTE, + [278305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2481), 1, - sym_field_declaration_list, - [109891] = 3, + ACTIONS(14235), 1, + sym_identifier, + [278312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2478), 1, - sym_field_declaration_list, - [109901] = 3, + ACTIONS(14237), 1, + sym_identifier, + [278319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2433), 1, - sym_field_declaration_list, - [109911] = 3, + ACTIONS(14239), 1, + aux_sym_preproc_if_token2, + [278326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8107), 1, - anon_sym_LPAREN2, - STATE(5179), 1, - sym_parenthesized_expression, - [109921] = 3, + ACTIONS(14241), 1, + anon_sym_COLON, + [278333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, - STATE(2459), 1, - sym_field_declaration_list, - [109931] = 3, + ACTIONS(14243), 1, + sym_identifier, + [278340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5346), 1, - anon_sym_SEMI, - ACTIONS(5409), 1, + ACTIONS(14245), 1, anon_sym_RPAREN, - [109941] = 3, + [278347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2350), 1, - sym_field_declaration_list, - [109951] = 3, + ACTIONS(14247), 1, + anon_sym_SEMI, + [278354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2360), 1, - sym_field_declaration_list, - [109961] = 3, + ACTIONS(14249), 1, + aux_sym_preproc_if_token2, + [278361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2281), 1, - sym_field_declaration_list, - [109971] = 3, + ACTIONS(14251), 1, + aux_sym_preproc_if_token2, + [278368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2573), 1, - sym_field_declaration_list, - [109981] = 3, + ACTIONS(5244), 1, + anon_sym_SEMI, + [278375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8231), 1, - anon_sym_default, - ACTIONS(8233), 1, - anon_sym_delete, - [109991] = 3, + ACTIONS(14253), 1, + anon_sym_LPAREN2, + [278382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2553), 1, - sym_field_declaration_list, - [110001] = 3, + ACTIONS(9293), 1, + anon_sym_SEMI, + [278389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2348), 1, - sym_field_declaration_list, - [110011] = 3, + ACTIONS(9209), 1, + anon_sym_COLON, + [278396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8235), 1, - anon_sym_RPAREN, - ACTIONS(8237), 1, - aux_sym_alone_macro_call_token1, - [110021] = 3, + ACTIONS(5765), 1, + anon_sym_DOT_DOT_DOT, + [278403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2347), 1, - sym_field_declaration_list, - [110031] = 3, + ACTIONS(5745), 1, + anon_sym_DOT_DOT_DOT, + [278410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2345), 1, - sym_field_declaration_list, - [110041] = 3, + ACTIONS(14255), 1, + anon_sym_RPAREN, + [278417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8051), 1, - anon_sym_LT, - STATE(1995), 1, - sym_template_argument_list, - [110051] = 3, + ACTIONS(14257), 1, + sym_auto, + [278424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8079), 1, - sym_identifier, - STATE(4394), 1, - sym_attribute, - [110061] = 3, + ACTIONS(14259), 1, + anon_sym_RPAREN, + [278431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8081), 1, - anon_sym_LPAREN2, - STATE(4504), 1, - sym_condition_clause, - [110071] = 3, + ACTIONS(14261), 1, + anon_sym_SEMI, + [278438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2341), 1, - sym_field_declaration_list, - [110081] = 3, + ACTIONS(14263), 1, + anon_sym_COLON, + [278445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_LBRACE, - STATE(2620), 1, - sym_field_declaration_list, - [110091] = 2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(8239), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [110099] = 3, + ACTIONS(14265), 1, + sym_identifier, + [278452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5344), 1, - anon_sym_RPAREN, - ACTIONS(5346), 1, - anon_sym_SEMI, - [110109] = 3, + ACTIONS(14267), 1, + aux_sym_preproc_if_token2, + [278459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8241), 1, - sym_identifier, - STATE(2492), 1, - sym_template_method, - [110119] = 3, + ACTIONS(14269), 1, + anon_sym_RPAREN, + [278466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(2343), 1, - sym_field_declaration_list, - [110129] = 3, + ACTIONS(14271), 1, + anon_sym_RPAREN, + [278473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LBRACE, - STATE(4402), 1, - sym_compound_statement, - [110139] = 2, + ACTIONS(14273), 1, + sym_raw_string_content, + [278480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8243), 1, - anon_sym_SQUOTE, - [110146] = 2, + ACTIONS(14275), 1, + aux_sym_preproc_if_token2, + [278487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8245), 1, + ACTIONS(14277), 1, anon_sym_LPAREN2, - [110153] = 2, + [278494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8247), 1, - anon_sym_SEMI, - [110160] = 2, - ACTIONS(3), 1, + ACTIONS(14279), 1, + anon_sym_RPAREN, + [278501] = 2, + ACTIONS(10249), 1, sym_comment, - ACTIONS(5773), 1, - anon_sym_RBRACK, - [110167] = 2, + ACTIONS(14281), 1, + aux_sym_preproc_include_token2, + [278508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8249), 1, - sym_identifier, - [110174] = 2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(8251), 1, - anon_sym_LF, - [110181] = 2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(8253), 1, - anon_sym_LF, - [110188] = 2, + ACTIONS(14283), 1, + aux_sym_preproc_if_token2, + [278515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7322), 1, + ACTIONS(14285), 1, anon_sym_SEMI, - [110195] = 2, + [278522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8255), 1, - sym_identifier, - [110202] = 2, + ACTIONS(14287), 1, + anon_sym_DQUOTE, + [278529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8257), 1, + ACTIONS(14289), 1, anon_sym_RPAREN, - [110209] = 2, + [278536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8259), 1, + ACTIONS(7043), 1, sym_identifier, - [110216] = 2, + [278543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8261), 1, - anon_sym_RPAREN, - [110223] = 2, + ACTIONS(14291), 1, + aux_sym_preproc_if_token2, + [278550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8263), 1, - aux_sym_preproc_if_token2, - [110230] = 2, + ACTIONS(14293), 1, + anon_sym_RPAREN, + [278557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5405), 1, + ACTIONS(11287), 1, anon_sym_RBRACE, - [110237] = 2, + [278564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5409), 1, - anon_sym_RPAREN, - [110244] = 2, + ACTIONS(14295), 1, + anon_sym_SEMI, + [278571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8265), 1, - aux_sym_preproc_if_token2, - [110251] = 2, + ACTIONS(8965), 1, + anon_sym_RBRACE, + [278578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8267), 1, + ACTIONS(14297), 1, anon_sym_SEMI, - [110258] = 2, + [278585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8269), 1, + ACTIONS(12370), 1, anon_sym_SEMI, - [110265] = 2, + [278592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - [110272] = 2, + ACTIONS(14299), 1, + anon_sym_SEMI, + [278599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8271), 1, - anon_sym_SEMI, - [110279] = 2, + ACTIONS(14301), 1, + anon_sym_RPAREN, + [278606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8273), 1, - anon_sym_SEMI, - [110286] = 2, + ACTIONS(14303), 1, + anon_sym_DQUOTE, + [278613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6825), 1, - anon_sym_RPAREN, - [110293] = 2, + ACTIONS(14305), 1, + anon_sym_DQUOTE, + [278620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8275), 1, + ACTIONS(14307), 1, + sym_identifier, + [278627] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14309), 1, sym_identifier, - [110300] = 2, + [278634] = 2, + ACTIONS(5678), 1, + aux_sym_preproc_include_token2, + ACTIONS(10249), 1, + sym_comment, + [278641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5571), 1, + ACTIONS(14311), 1, anon_sym_SEMI, - [110307] = 2, - ACTIONS(6220), 1, + [278648] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(7815), 1, - anon_sym_LF, - [110314] = 2, + ACTIONS(14313), 1, + anon_sym_RBRACE, + [278655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5573), 1, - anon_sym_RPAREN, - [110321] = 2, + ACTIONS(14315), 1, + anon_sym_LPAREN2, + [278662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7230), 1, - anon_sym_EQ, - [110328] = 2, + ACTIONS(14317), 1, + anon_sym_LPAREN2, + [278669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8277), 1, - anon_sym_SEMI, - [110335] = 2, + ACTIONS(9472), 1, + anon_sym_RPAREN, + [278676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8279), 1, - anon_sym_SEMI, - [110342] = 2, + ACTIONS(14319), 1, + anon_sym_RPAREN, + [278683] = 2, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10568), 1, + aux_sym_preproc_include_token2, + [278690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8281), 1, - anon_sym_COLON, - [110349] = 2, + ACTIONS(14321), 1, + anon_sym_SEMI, + [278697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5509), 1, + ACTIONS(14323), 1, anon_sym_SEMI, - [110356] = 2, + [278704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5575), 1, + ACTIONS(14325), 1, anon_sym_SEMI, - [110363] = 2, + [278711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 1, + ACTIONS(14327), 1, anon_sym_SEMI, - [110370] = 2, + [278718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7775), 1, - anon_sym_RBRACE, - [110377] = 2, + ACTIONS(14329), 1, + anon_sym_LPAREN2, + [278725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7244), 1, - anon_sym_EQ, - [110384] = 2, - ACTIONS(6220), 1, + ACTIONS(13488), 1, + anon_sym_RBRACE, + [278732] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8283), 1, - anon_sym_LF, - [110391] = 2, + ACTIONS(14331), 1, + aux_sym_preproc_if_token2, + [278739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8285), 1, - anon_sym_SEMI, - [110398] = 2, + ACTIONS(14333), 1, + anon_sym_COLON, + [278746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8287), 1, + ACTIONS(14335), 1, anon_sym_SEMI, - [110405] = 2, + [278753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5501), 1, + ACTIONS(14337), 1, anon_sym_SEMI, - [110412] = 2, + [278760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8289), 1, + ACTIONS(9349), 1, anon_sym_RPAREN, - [110419] = 2, + [278767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6797), 1, - anon_sym_RPAREN, - [110426] = 2, + ACTIONS(13909), 1, + anon_sym_STAR_EQ, + [278774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5583), 1, - anon_sym_SEMI, - [110433] = 2, + ACTIONS(14339), 1, + anon_sym_LPAREN2, + [278781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8291), 1, - sym_identifier, - [110440] = 2, + ACTIONS(14341), 1, + anon_sym_LPAREN2, + [278788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8293), 1, - anon_sym_RPAREN, - [110447] = 2, + ACTIONS(14343), 1, + anon_sym_SEMI, + [278795] = 2, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12993), 1, + aux_sym_preproc_include_token2, + [278802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8295), 1, - anon_sym_RPAREN, - [110454] = 2, + ACTIONS(14345), 1, + anon_sym_SEMI, + [278809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8297), 1, - aux_sym_preproc_if_token2, - [110461] = 2, + ACTIONS(9462), 1, + anon_sym_RPAREN, + [278816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8299), 1, + ACTIONS(14347), 1, anon_sym_SEMI, - [110468] = 2, + [278823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8301), 1, - anon_sym_SEMI, - [110475] = 2, - ACTIONS(6220), 1, + ACTIONS(14349), 1, + ts_builtin_sym_end, + [278830] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8303), 1, - anon_sym_LF, - [110482] = 2, + ACTIONS(14351), 1, + anon_sym_DQUOTE, + [278837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8305), 1, - anon_sym_SEMI, - [110489] = 2, + ACTIONS(14353), 1, + anon_sym_RPAREN, + [278844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7266), 1, - anon_sym_SEMI, - [110496] = 2, + ACTIONS(14355), 1, + anon_sym_COLON, + [278851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4300), 1, + ACTIONS(14357), 1, anon_sym_SEMI, - [110503] = 2, + [278858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8307), 1, - sym_identifier, - [110510] = 2, - ACTIONS(6220), 1, + ACTIONS(9145), 1, + anon_sym_RBRACE, + [278865] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8309), 1, - anon_sym_LF, - [110517] = 2, + ACTIONS(14359), 1, + anon_sym_SEMI, + [278872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8311), 1, + ACTIONS(14361), 1, anon_sym_RPAREN, - [110524] = 2, + [278879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8313), 1, - anon_sym_SEMI, - [110531] = 2, + ACTIONS(14363), 1, + anon_sym_RPAREN, + [278886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8315), 1, - sym_identifier, - [110538] = 2, + ACTIONS(14365), 1, + sym_raw_string_content, + [278893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8317), 1, - sym_identifier, - [110545] = 2, + ACTIONS(14367), 1, + anon_sym_RPAREN, + [278900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7203), 1, + ACTIONS(14369), 1, anon_sym_SEMI, - [110552] = 2, + [278907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8319), 1, - anon_sym_SQUOTE, - [110559] = 2, - ACTIONS(6220), 1, + ACTIONS(14371), 1, + sym_auto, + [278914] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8321), 1, - anon_sym_LF, - [110566] = 2, + ACTIONS(12427), 1, + anon_sym_SEMI, + [278921] = 2, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(12600), 1, + aux_sym_preproc_include_token2, + [278928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8323), 1, - aux_sym_preproc_if_token2, - [110573] = 2, + ACTIONS(14373), 1, + anon_sym_RPAREN, + [278935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4795), 1, - sym_identifier, - [110580] = 2, + ACTIONS(14375), 1, + anon_sym_RPAREN, + [278942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8325), 1, - anon_sym_SQUOTE, - [110587] = 2, + ACTIONS(14377), 1, + anon_sym_RPAREN, + [278949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8327), 1, - anon_sym_SEMI, - [110594] = 2, + ACTIONS(14379), 1, + anon_sym_RPAREN, + [278956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, - anon_sym_SEMI, - [110601] = 2, + ACTIONS(14381), 1, + sym_raw_string_delimiter, + [278963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 1, - anon_sym_RPAREN, - [110608] = 2, - ACTIONS(6220), 1, + ACTIONS(14383), 1, + anon_sym_DQUOTE, + [278970] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8329), 1, - anon_sym_LF, - [110615] = 2, + ACTIONS(14385), 1, + anon_sym_LPAREN2, + [278977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7238), 1, - anon_sym_SEMI, - [110622] = 2, + ACTIONS(11261), 1, + anon_sym_RBRACE, + [278984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 1, - anon_sym_SEMI, - [110629] = 2, + ACTIONS(14387), 1, + anon_sym_DQUOTE, + [278991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8331), 1, - sym_identifier, - [110636] = 2, + ACTIONS(14389), 1, + anon_sym_RPAREN, + [278998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8333), 1, + ACTIONS(5762), 1, + anon_sym_DOT_DOT_DOT, + [279005] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14391), 1, anon_sym_SEMI, - [110643] = 2, + [279012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8335), 1, - aux_sym_preproc_if_token2, - [110650] = 2, + ACTIONS(14393), 1, + anon_sym_DQUOTE, + [279019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5475), 1, - anon_sym_SEMI, - [110657] = 2, + ACTIONS(14395), 1, + anon_sym_RPAREN, + [279026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5210), 1, - anon_sym_RBRACE, - [110664] = 2, + ACTIONS(14397), 1, + anon_sym_SEMI, + [279033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7383), 1, + ACTIONS(14399), 1, anon_sym_SEMI, - [110671] = 2, + [279040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5607), 1, + ACTIONS(14401), 1, anon_sym_SEMI, - [110678] = 2, + [279047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 1, + ACTIONS(14403), 1, anon_sym_RPAREN, - [110685] = 2, + [279054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8337), 1, - anon_sym_COMMA, - [110692] = 2, - ACTIONS(6220), 1, + ACTIONS(14405), 1, + sym_identifier, + [279061] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8339), 1, - anon_sym_LF, - [110699] = 2, + ACTIONS(14407), 1, + sym_identifier, + [279068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5453), 1, + ACTIONS(5252), 1, anon_sym_SEMI, - [110706] = 2, + [279075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8341), 1, - sym_identifier, - [110713] = 2, + ACTIONS(14409), 1, + anon_sym_DQUOTE, + [279082] = 2, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(14411), 1, + anon_sym_LF, + [279089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5449), 1, - anon_sym_SEMI, - [110720] = 2, + ACTIONS(14413), 1, + anon_sym_LPAREN2, + [279096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8343), 1, - anon_sym_SEMI, - [110727] = 2, + ACTIONS(14415), 1, + anon_sym_RPAREN, + [279103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7240), 1, - anon_sym_EQ, - [110734] = 2, + ACTIONS(14417), 1, + sym_this, + [279110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8345), 1, + ACTIONS(7902), 1, sym_identifier, - [110741] = 2, + [279117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8347), 1, - anon_sym_RPAREN, - [110748] = 2, + ACTIONS(14419), 1, + aux_sym_preproc_if_token2, + [279124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5531), 1, + ACTIONS(9305), 1, anon_sym_SEMI, - [110755] = 2, + [279131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5537), 1, + ACTIONS(14421), 1, anon_sym_RPAREN, - [110762] = 2, + [279138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6834), 1, - anon_sym_RPAREN, - [110769] = 2, + ACTIONS(5793), 1, + anon_sym_DOT_DOT_DOT, + [279145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8349), 1, + ACTIONS(14423), 1, sym_identifier, - [110776] = 2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(8351), 1, - anon_sym_LF, - [110783] = 2, + [279152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8353), 1, + ACTIONS(14425), 1, sym_identifier, - [110790] = 2, + [279159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8355), 1, - anon_sym_SEMI, - [110797] = 2, + ACTIONS(14427), 1, + aux_sym_preproc_if_token2, + [279166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8357), 1, - anon_sym_SEMI, - [110804] = 2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(8359), 1, - anon_sym_LF, - [110811] = 2, + ACTIONS(13909), 1, + anon_sym_SLASH_EQ, + [279173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8361), 1, - sym_identifier, - [110818] = 2, - ACTIONS(3), 1, + ACTIONS(14429), 1, + anon_sym_SEMI, + [279180] = 2, + ACTIONS(10249), 1, sym_comment, - ACTIONS(5611), 1, - anon_sym_RPAREN, - [110825] = 2, + ACTIONS(10544), 1, + aux_sym_preproc_include_token2, + [279187] = 2, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(14431), 1, + aux_sym_preproc_include_token2, + [279194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 1, + ACTIONS(14433), 1, anon_sym_RPAREN, - [110832] = 2, + [279201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8363), 1, + ACTIONS(14435), 1, anon_sym_SEMI, - [110839] = 2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(7741), 1, - anon_sym_LF, - [110846] = 2, + [279208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5344), 1, - anon_sym_RPAREN, - [110853] = 2, - ACTIONS(6220), 1, + ACTIONS(14437), 1, + sym_identifier, + [279215] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, - anon_sym_LF, - [110860] = 2, + ACTIONS(14439), 1, + anon_sym_LPAREN2, + [279222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5208), 1, - anon_sym_SEMI, - [110867] = 2, + ACTIONS(14441), 1, + anon_sym_LPAREN2, + [279229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8367), 1, - anon_sym_COLON, - [110874] = 2, + ACTIONS(14443), 1, + anon_sym_LPAREN2, + [279236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8369), 1, - aux_sym_preproc_if_token2, - [110881] = 2, + ACTIONS(14445), 1, + anon_sym_LPAREN2, + [279243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8371), 1, - anon_sym_SEMI, - [110888] = 2, + ACTIONS(14447), 1, + aux_sym_preproc_if_token2, + [279250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8373), 1, - anon_sym_SEMI, - [110895] = 2, + ACTIONS(14449), 1, + anon_sym_LPAREN2, + [279257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8375), 1, + ACTIONS(14451), 1, aux_sym_preproc_if_token2, - [110902] = 2, + [279264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8377), 1, - anon_sym_STAR, - [110909] = 2, + ACTIONS(14453), 1, + anon_sym_RPAREN, + [279271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, + ACTIONS(14455), 1, anon_sym_SEMI, - [110916] = 2, + [279278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8381), 1, + ACTIONS(13909), 1, + anon_sym_PERCENT_EQ, + [279285] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14457), 1, anon_sym_COLON, - [110923] = 2, + [279292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8383), 1, - anon_sym_SEMI, - [110930] = 2, + ACTIONS(14459), 1, + anon_sym_while, + [279299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8385), 1, + ACTIONS(14461), 1, anon_sym_SEMI, - [110937] = 2, + [279306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 1, - sym_identifier, - [110944] = 2, + ACTIONS(14463), 1, + anon_sym_LPAREN2, + [279313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5619), 1, + ACTIONS(14465), 1, anon_sym_RPAREN, - [110951] = 2, + [279320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 1, - anon_sym_SEMI, - [110958] = 2, + ACTIONS(13494), 1, + anon_sym_RBRACE, + [279327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8387), 1, - anon_sym_SEMI, - [110965] = 2, + ACTIONS(14467), 1, + aux_sym_preproc_if_token2, + [279334] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14469), 1, + anon_sym_EQ, + [279341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(14471), 1, + sym_raw_string_content, + [279348] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14473), 1, anon_sym_SEMI, - [110972] = 2, + [279355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8389), 1, - ts_builtin_sym_end, - [110979] = 2, + ACTIONS(14475), 1, + anon_sym_STAR, + [279362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7234), 1, - anon_sym_EQ, - [110986] = 2, + ACTIONS(14477), 1, + sym_identifier, + [279369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8391), 1, - anon_sym_LPAREN2, - [110993] = 2, + ACTIONS(14479), 1, + anon_sym_RPAREN, + [279376] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14481), 1, + anon_sym_COMMA, + [279383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8393), 1, + ACTIONS(14483), 1, anon_sym_SEMI, - [111000] = 2, + [279390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5595), 1, + ACTIONS(14485), 1, anon_sym_SEMI, - [111007] = 2, + [279397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5621), 1, - anon_sym_RPAREN, - [111014] = 2, + ACTIONS(14487), 1, + sym_identifier, + [279404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, + ACTIONS(14489), 1, anon_sym_RPAREN, - [111021] = 2, + [279411] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14491), 1, + anon_sym_COLON, + [279418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8395), 1, + ACTIONS(8102), 1, sym_identifier, - [111028] = 2, + [279425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5811), 1, - anon_sym_RBRACK, - [111035] = 2, + ACTIONS(14493), 1, + anon_sym_SEMI, + [279432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8397), 1, - anon_sym_RPAREN, - [111042] = 2, + ACTIONS(14495), 1, + anon_sym_LPAREN2, + [279439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5629), 1, - anon_sym_RPAREN, - [111049] = 2, + ACTIONS(14497), 1, + anon_sym_LPAREN2, + [279446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8399), 1, - anon_sym_SEMI, - [111056] = 2, + ACTIONS(14499), 1, + anon_sym_LPAREN2, + [279453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7723), 1, - anon_sym_RBRACE, - [111063] = 2, + ACTIONS(14501), 1, + anon_sym_SEMI, + [279460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_RPAREN, - [111070] = 2, + ACTIONS(14503), 1, + anon_sym_LPAREN2, + [279467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8401), 1, + ACTIONS(14505), 1, aux_sym_preproc_if_token2, - [111077] = 2, - ACTIONS(6220), 1, + [279474] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8403), 1, - anon_sym_LF, - [111084] = 2, + ACTIONS(13909), 1, + anon_sym_PLUS_EQ, + [279481] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14507), 1, + anon_sym_while, + [279488] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5260), 1, + anon_sym_SEMI, + [279495] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14509), 1, + anon_sym_LPAREN2, + [279502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8405), 1, - sym_identifier, - [111091] = 2, + ACTIONS(13909), 1, + anon_sym_DASH_EQ, + [279509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8407), 1, - anon_sym_RPAREN, - [111098] = 2, + ACTIONS(14511), 1, + anon_sym_STAR, + [279516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8409), 1, - aux_sym_preproc_if_token2, - [111105] = 2, + ACTIONS(14513), 1, + anon_sym_EQ, + [279523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8411), 1, - aux_sym_preproc_if_token2, - [111112] = 2, + ACTIONS(14515), 1, + sym_raw_string_content, + [279530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8413), 1, - anon_sym_SEMI, - [111119] = 2, + ACTIONS(14517), 1, + anon_sym_COMMA, + [279537] = 2, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(10524), 1, + aux_sym_preproc_include_token2, + [279544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7209), 1, - anon_sym_EQ, - [111126] = 2, + ACTIONS(14519), 1, + sym_identifier, + [279551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5637), 1, - anon_sym_RPAREN, - [111133] = 2, + ACTIONS(14521), 1, + anon_sym_DQUOTE, + [279558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(14523), 1, anon_sym_RPAREN, - [111140] = 2, + [279565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8415), 1, + ACTIONS(14525), 1, anon_sym_COLON, - [111147] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8417), 1, - sym_identifier, - [111154] = 2, + [279572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7712), 1, - anon_sym_RBRACE, - [111161] = 2, + ACTIONS(5796), 1, + anon_sym_DOT_DOT_DOT, + [279579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8419), 1, - anon_sym_STAR, - [111168] = 2, + ACTIONS(14527), 1, + anon_sym_LPAREN2, + [279586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8421), 1, - anon_sym_RPAREN, - [111175] = 2, + ACTIONS(14529), 1, + anon_sym_LPAREN2, + [279593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7859), 1, - anon_sym_RBRACE, - [111182] = 2, + ACTIONS(14531), 1, + anon_sym_LPAREN2, + [279600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8423), 1, + ACTIONS(14533), 1, anon_sym_RPAREN, - [111189] = 2, + [279607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8425), 1, + ACTIONS(14535), 1, anon_sym_LPAREN2, - [111196] = 2, + [279614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5499), 1, - anon_sym_RPAREN, - [111203] = 2, + ACTIONS(14537), 1, + anon_sym_SEMI, + [279621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8427), 1, - anon_sym_LPAREN2, - [111210] = 2, + ACTIONS(14539), 1, + anon_sym_SEMI, + [279628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5617), 1, - anon_sym_SEMI, - [111217] = 2, + ACTIONS(14541), 1, + anon_sym_while, + [279635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8429), 1, + ACTIONS(14543), 1, anon_sym_LPAREN2, - [111224] = 2, + [279642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8431), 1, + ACTIONS(11614), 1, anon_sym_SEMI, - [111231] = 2, + [279649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8433), 1, - anon_sym_STAR, - [111238] = 2, + ACTIONS(8143), 1, + sym_identifier, + [279656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8435), 1, - anon_sym_SEMI, - [111245] = 2, + ACTIONS(14545), 1, + anon_sym_EQ, + [279663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8437), 1, - anon_sym_SEMI, - [111252] = 2, + ACTIONS(14547), 1, + sym_raw_string_content, + [279670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8439), 1, - anon_sym_LPAREN2, - [111259] = 2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(8441), 1, - anon_sym_LF, - [111266] = 2, + ACTIONS(14549), 1, + anon_sym_COMMA, + [279677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5497), 1, + ACTIONS(14551), 1, anon_sym_RPAREN, - [111273] = 2, + [279684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8443), 1, - sym_identifier, - [111280] = 2, + ACTIONS(13909), 1, + anon_sym_LT_LT_EQ, + [279691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8445), 1, - anon_sym_LPAREN2, - [111287] = 2, + ACTIONS(14553), 1, + anon_sym_SEMI, + [279698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8447), 1, - sym_identifier, - [111294] = 2, + ACTIONS(14555), 1, + anon_sym_RPAREN, + [279705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8449), 1, - anon_sym_SQUOTE, - [111301] = 2, + ACTIONS(14557), 1, + anon_sym_COLON, + [279712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8451), 1, - sym_identifier, - [111308] = 2, + ACTIONS(9335), 1, + anon_sym_RPAREN, + [279719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8453), 1, - anon_sym_RPAREN, - [111315] = 2, + ACTIONS(14559), 1, + anon_sym_LPAREN2, + [279726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(14561), 1, anon_sym_LPAREN2, - [111322] = 2, + [279733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8457), 1, - sym_identifier, - [111329] = 2, + ACTIONS(14563), 1, + anon_sym_LPAREN2, + [279740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8459), 1, + ACTIONS(14565), 1, anon_sym_RPAREN, - [111336] = 2, + [279747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8461), 1, - anon_sym_SEMI, - [111343] = 2, + ACTIONS(14567), 1, + anon_sym_LPAREN2, + [279754] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11216), 1, + anon_sym_RBRACE, + [279761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, + ACTIONS(14569), 1, anon_sym_SEMI, - [111350] = 2, + [279768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8465), 1, - anon_sym_while, - [111357] = 2, + ACTIONS(14571), 1, + anon_sym_LPAREN2, + [279775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5653), 1, - anon_sym_RPAREN, - [111364] = 2, + ACTIONS(13909), 1, + anon_sym_GT_GT_EQ, + [279782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - [111371] = 2, + ACTIONS(13909), 1, + anon_sym_AMP_EQ, + [279789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8469), 1, - anon_sym_RPAREN, - [111378] = 2, + ACTIONS(14573), 1, + anon_sym_EQ, + [279796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_RPAREN, - [111385] = 2, + ACTIONS(14575), 1, + sym_raw_string_content, + [279803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8471), 1, - anon_sym_SEMI, - [111392] = 2, + ACTIONS(14577), 1, + anon_sym_COMMA, + [279810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8473), 1, - anon_sym_COLON, - [111399] = 2, + ACTIONS(13909), 1, + anon_sym_CARET_EQ, + [279817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5605), 1, - anon_sym_SEMI, - [111406] = 2, + ACTIONS(14579), 1, + anon_sym_LPAREN2, + [279824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5415), 1, - anon_sym_RBRACE, - [111413] = 2, + ACTIONS(14581), 1, + anon_sym_RPAREN, + [279831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7232), 1, - anon_sym_SEMI, - [111420] = 2, + ACTIONS(14583), 1, + anon_sym_RPAREN, + [279838] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14585), 1, + anon_sym_COLON, + [279845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8475), 1, + ACTIONS(14587), 1, anon_sym_RPAREN, - [111427] = 2, + [279852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8477), 1, + ACTIONS(14589), 1, anon_sym_LPAREN2, - [111434] = 2, + [279859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7429), 1, - anon_sym_SEMI, - [111441] = 2, + ACTIONS(14591), 1, + anon_sym_LPAREN2, + [279866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5483), 1, - anon_sym_RPAREN, - [111448] = 2, + ACTIONS(5738), 1, + anon_sym_DOT_DOT_DOT, + [279873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5569), 1, - anon_sym_SEMI, - [111455] = 2, + ACTIONS(14593), 1, + anon_sym_LPAREN2, + [279880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, - anon_sym_SEMI, - [111462] = 2, + ACTIONS(14595), 1, + anon_sym_LPAREN2, + [279887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8479), 1, + ACTIONS(14597), 1, anon_sym_RPAREN, - [111469] = 2, + [279894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8481), 1, - sym_identifier, - [111476] = 2, + ACTIONS(13909), 1, + anon_sym_PIPE_EQ, + [279901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8483), 1, - anon_sym_SQUOTE, - [111483] = 2, + ACTIONS(14599), 1, + anon_sym_RPAREN, + [279908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8485), 1, - anon_sym_SEMI, - [111490] = 2, + ACTIONS(14601), 1, + anon_sym_EQ, + [279915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5463), 1, - anon_sym_SEMI, - [111497] = 2, + ACTIONS(14603), 1, + sym_raw_string_content, + [279922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8487), 1, - sym_identifier, - [111504] = 2, + ACTIONS(13909), 1, + anon_sym_or, + [279929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8489), 1, - anon_sym_SEMI, - [111511] = 2, + ACTIONS(13909), 1, + anon_sym_and, + [279936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8491), 1, + ACTIONS(14605), 1, anon_sym_SEMI, - [111518] = 2, + [279943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7220), 1, - anon_sym_EQ, - [111525] = 2, + ACTIONS(14607), 1, + anon_sym_RPAREN, + [279950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8493), 1, - sym_identifier, - [111532] = 2, + ACTIONS(14609), 1, + aux_sym_preproc_if_token2, + [279957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8495), 1, - anon_sym_SEMI, - [111539] = 2, + ACTIONS(14611), 1, + anon_sym_LPAREN2, + [279964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8497), 1, - anon_sym_SEMI, - [111546] = 2, + ACTIONS(14613), 1, + anon_sym_LPAREN2, + [279971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8499), 1, - anon_sym_SEMI, - [111553] = 2, + ACTIONS(14615), 1, + anon_sym_LPAREN2, + [279978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5643), 1, + ACTIONS(14617), 1, anon_sym_SEMI, - [111560] = 2, + [279985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8501), 1, - aux_sym_alone_macro_call_token1, - [111567] = 2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(8503), 1, - anon_sym_LF, - [111574] = 2, + ACTIONS(14619), 1, + sym_raw_string_content, + [279992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8505), 1, - aux_sym_preproc_if_token2, - [111581] = 2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(7875), 1, - anon_sym_LF, - [111588] = 2, - ACTIONS(6220), 1, + ACTIONS(14621), 1, + anon_sym_SEMI, + [279999] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8507), 1, - anon_sym_LF, - [111595] = 2, + ACTIONS(13909), 1, + anon_sym_bitor, + [280006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8509), 1, + ACTIONS(14623), 1, anon_sym_RPAREN, - [111602] = 2, + [280013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8511), 1, + ACTIONS(14625), 1, anon_sym_RPAREN, - [111609] = 2, + [280020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8513), 1, - sym_identifier, - [111616] = 2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(8515), 1, - anon_sym_LF, - [111623] = 2, + ACTIONS(14627), 1, + anon_sym_LPAREN2, + [280027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 1, - anon_sym_RPAREN, - [111630] = 2, + ACTIONS(14629), 1, + anon_sym_LPAREN2, + [280034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8517), 1, - anon_sym_STAR, - [111637] = 2, + ACTIONS(14631), 1, + anon_sym_LPAREN2, + [280041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, + ACTIONS(14633), 1, anon_sym_SEMI, - [111644] = 2, + [280048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8519), 1, - anon_sym_SEMI, - [111651] = 2, + ACTIONS(14635), 1, + sym_raw_string_content, + [280055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8521), 1, - anon_sym_SEMI, - [111658] = 2, + ACTIONS(11259), 1, + anon_sym_RBRACE, + [280062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8523), 1, - anon_sym_STAR, - [111665] = 2, + ACTIONS(14637), 1, + anon_sym_RPAREN, + [280069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8525), 1, + ACTIONS(14639), 1, anon_sym_LPAREN2, - [111672] = 2, + [280076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8527), 1, + ACTIONS(14641), 1, anon_sym_LPAREN2, - [111679] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8529), 1, - aux_sym_preproc_if_token2, - [111686] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5597), 1, - anon_sym_SEMI, - [111693] = 2, + [280083] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6689), 1, - sym_identifier, - [111700] = 2, + ACTIONS(14643), 1, + anon_sym_LPAREN2, + [280090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7228), 1, - anon_sym_SEMI, - [111707] = 2, + ACTIONS(14645), 1, + sym_raw_string_content, + [280097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5471), 1, + ACTIONS(14647), 1, anon_sym_RPAREN, - [111714] = 2, + [280104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6789), 1, - anon_sym_RPAREN, - [111721] = 2, + ACTIONS(14649), 1, + anon_sym_LPAREN2, + [280111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8531), 1, - anon_sym_SEMI, - [111728] = 2, + ACTIONS(14651), 1, + sym_raw_string_content, + [280118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5461), 1, + ACTIONS(14653), 1, anon_sym_RPAREN, - [111735] = 2, + [280125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5529), 1, - anon_sym_SEMI, - [111742] = 2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(8533), 1, - anon_sym_LF, - [111749] = 2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(8535), 1, - anon_sym_LF, - [111756] = 2, - ACTIONS(6220), 1, + ACTIONS(14655), 1, + anon_sym_LPAREN2, + [280132] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8537), 1, - anon_sym_LF, - [111763] = 2, + ACTIONS(14657), 1, + sym_raw_string_content, + [280139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8539), 1, - anon_sym_SEMI, - [111770] = 2, + ACTIONS(14659), 1, + anon_sym_RPAREN, + [280146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8541), 1, - anon_sym_SEMI, - [111777] = 2, + ACTIONS(14661), 1, + sym_raw_string_content, + [280153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8543), 1, - anon_sym_SEMI, - [111784] = 2, + ACTIONS(14663), 1, + anon_sym_RPAREN, + [280160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8545), 1, - aux_sym_preproc_if_token2, - [111791] = 2, + ACTIONS(14665), 1, + sym_raw_string_content, + [280167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8547), 1, - anon_sym_SEMI, - [111798] = 2, + ACTIONS(14667), 1, + anon_sym_RPAREN, + [280174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 1, - anon_sym_SEMI, - [111805] = 2, + ACTIONS(14669), 1, + sym_raw_string_content, + [280181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8549), 1, + ACTIONS(14671), 1, anon_sym_RPAREN, - [111812] = 2, + [280188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7205), 1, - anon_sym_EQ, - [111819] = 2, + ACTIONS(14673), 1, + sym_raw_string_content, + [280195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5557), 1, + ACTIONS(14675), 1, anon_sym_RPAREN, - [111826] = 2, + [280202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8551), 1, - anon_sym_RPAREN, - [111833] = 2, + ACTIONS(14677), 1, + sym_raw_string_content, + [280209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, + ACTIONS(14679), 1, anon_sym_RPAREN, - [111840] = 2, + [280216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5547), 1, - anon_sym_RPAREN, - [111847] = 2, + ACTIONS(14681), 1, + anon_sym_SEMI, + [280223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, + ACTIONS(14683), 1, anon_sym_SEMI, - [111854] = 2, + [280230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8553), 1, - sym_identifier, - [111861] = 2, + ACTIONS(14685), 1, + anon_sym_LPAREN2, + [280237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5473), 1, - anon_sym_SEMI, - [111868] = 2, + ACTIONS(14687), 1, + anon_sym_LPAREN2, + [280244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5567), 1, - anon_sym_RPAREN, - [111875] = 2, + ACTIONS(14689), 1, + sym_identifier, + [280251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5495), 1, + ACTIONS(14691), 1, anon_sym_SEMI, - [111882] = 2, + [280258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7891), 1, - anon_sym_RBRACE, - [111889] = 2, + ACTIONS(14693), 1, + anon_sym_LPAREN2, + [280265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8555), 1, + ACTIONS(14695), 1, anon_sym_STAR, - [111896] = 2, + [280272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8557), 1, - anon_sym_SEMI, - [111903] = 2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(8559), 1, - anon_sym_LF, - [111910] = 2, + ACTIONS(14697), 1, + anon_sym_RPAREN, + [280279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8561), 1, - anon_sym_COLON, - [111917] = 2, + ACTIONS(14699), 1, + anon_sym_DQUOTE, + [280286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8563), 1, + ACTIONS(14701), 1, anon_sym_RPAREN, - [111924] = 2, + [280293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8565), 1, - anon_sym_SEMI, - [111931] = 2, + ACTIONS(14703), 1, + anon_sym_RPAREN, + [280300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8567), 1, - anon_sym_SEMI, - [111938] = 2, + ACTIONS(13909), 1, + anon_sym_xor, + [280307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7409), 1, + ACTIONS(11681), 1, anon_sym_SEMI, - [111945] = 2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(8569), 1, - anon_sym_LF, - [111952] = 2, + [280314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8571), 1, - aux_sym_preproc_if_token2, - [111959] = 2, + ACTIONS(14705), 1, + anon_sym_RPAREN, + [280321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6779), 1, + ACTIONS(14707), 1, anon_sym_RPAREN, - [111966] = 2, - ACTIONS(6220), 1, + [280328] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8573), 1, - anon_sym_LF, - [111973] = 2, + ACTIONS(14709), 1, + aux_sym_preproc_if_token2, + [280335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7218), 1, - anon_sym_SEMI, - [111980] = 2, + ACTIONS(5811), 1, + anon_sym_DOT_DOT_DOT, + [280342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8575), 1, - anon_sym_RPAREN, - [111987] = 2, + ACTIONS(14711), 1, + anon_sym_EQ, + [280349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8577), 1, - anon_sym_SEMI, - [111994] = 2, + ACTIONS(14713), 1, + anon_sym_LPAREN2, + [280356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8579), 1, - anon_sym_SEMI, - [112001] = 2, + ACTIONS(14715), 1, + sym_auto, + [280363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8581), 1, - anon_sym_LPAREN2, - [112008] = 2, + ACTIONS(14717), 1, + sym_identifier, + [280370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8583), 1, - anon_sym_RPAREN, - [112015] = 2, + ACTIONS(14719), 1, + sym_raw_string_content, + [280377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8585), 1, - anon_sym_RPAREN, - [112022] = 2, + ACTIONS(13909), 1, + anon_sym_bitand, + [280384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5431), 1, - anon_sym_RBRACE, - [112029] = 2, + ACTIONS(14721), 1, + aux_sym_preproc_if_token2, + [280391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8587), 1, + ACTIONS(14723), 1, anon_sym_SEMI, - [112036] = 2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(8589), 1, - anon_sym_LF, - [112043] = 2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(8591), 1, - anon_sym_LF, - [112050] = 2, + [280398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5479), 1, + ACTIONS(14725), 1, anon_sym_RPAREN, - [112057] = 2, + [280405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8593), 1, + ACTIONS(14727), 1, anon_sym_SEMI, - [112064] = 2, + [280412] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, - anon_sym_RPAREN, - [112071] = 2, + ACTIONS(14729), 1, + sym_auto, + [280419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8595), 1, - anon_sym_LPAREN2, - [112078] = 2, + ACTIONS(13909), 1, + anon_sym_not_eq, + [280426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(14731), 1, anon_sym_SEMI, - [112085] = 2, + [280433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8599), 1, - anon_sym_LPAREN2, - [112092] = 2, + ACTIONS(14733), 1, + anon_sym_SEMI, + [280440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8601), 1, - anon_sym_LPAREN2, - [112099] = 2, + ACTIONS(9281), 1, + anon_sym_COLON, + [280447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8603), 1, - anon_sym_COLON, - [112106] = 2, + ACTIONS(14735), 1, + anon_sym_SEMI, + [280454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8605), 1, - anon_sym_LPAREN2, - [112113] = 2, + ACTIONS(14737), 1, + anon_sym_DQUOTE, + [280461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, - anon_sym_RPAREN, - [112120] = 2, + ACTIONS(14739), 1, + anon_sym_SEMI, + [280468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8607), 1, - anon_sym_COMMA, - [112127] = 2, + ACTIONS(14741), 1, + anon_sym_STAR, + [280475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8609), 1, - anon_sym_LPAREN2, - [112134] = 2, + ACTIONS(14743), 1, + anon_sym_SEMI, + [280482] = 2, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(14745), 1, + aux_sym_preproc_include_token2, + [280489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8611), 1, - aux_sym_preproc_if_token2, - [112141] = 2, + ACTIONS(14747), 1, + anon_sym_SEMI, + [280496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 1, - anon_sym_RPAREN, - [112148] = 2, + ACTIONS(14749), 1, + anon_sym_DQUOTE, + [280503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8613), 1, - anon_sym_RPAREN, - [112155] = 2, + ACTIONS(14751), 1, + anon_sym_SEMI, + [280510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8615), 1, + ACTIONS(14753), 1, aux_sym_preproc_if_token2, - [112162] = 2, + [280517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8617), 1, + ACTIONS(14755), 1, aux_sym_preproc_if_token2, - [112169] = 2, + [280524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, + ACTIONS(14757), 1, anon_sym_SEMI, - [112176] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8621), 1, - anon_sym_while, - [112183] = 2, + [280531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5505), 1, - anon_sym_RPAREN, - [112190] = 2, + ACTIONS(13909), 1, + anon_sym_DOT_STAR, + [280538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8623), 1, - anon_sym_LPAREN2, - [112197] = 2, + ACTIONS(13909), 1, + anon_sym_DASH_GT_STAR, + [280545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8625), 1, - aux_sym_preproc_if_token2, - [112204] = 2, + ACTIONS(14759), 1, + anon_sym_RPAREN, + [280552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8627), 1, - aux_sym_preproc_if_token2, - [112211] = 2, + ACTIONS(14761), 1, + anon_sym_SEMI, + [280559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 1, + ACTIONS(14763), 1, anon_sym_SEMI, - [112218] = 2, + [280566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8631), 1, + ACTIONS(14765), 1, anon_sym_SEMI, - [112225] = 2, + [280573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(14767), 1, anon_sym_SEMI, - [112232] = 2, + [280580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5647), 1, - anon_sym_RPAREN, - [112239] = 2, + ACTIONS(14769), 1, + sym_identifier, + [280587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8635), 1, - sym_identifier, - [112246] = 2, + ACTIONS(14771), 1, + anon_sym_RPAREN, + [280594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5549), 1, - anon_sym_SEMI, - [112253] = 2, + ACTIONS(9309), 1, + anon_sym_COLON, + [280601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 1, + ACTIONS(9351), 1, anon_sym_RPAREN, - [112260] = 2, + [280608] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8639), 1, - sym_identifier, - [112267] = 2, + ACTIONS(14773), 1, + anon_sym_SEMI, + [280615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8641), 1, - sym_identifier, - [112274] = 2, + ACTIONS(14775), 1, + anon_sym_SEMI, + [280622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5555), 1, - anon_sym_RPAREN, - [112281] = 2, + ACTIONS(14777), 1, + anon_sym_RBRACE, + [280629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5561), 1, + ACTIONS(14779), 1, anon_sym_RPAREN, - [112288] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8643), 1, - anon_sym_SEMI, - [112295] = 2, + [280636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5443), 1, - anon_sym_RPAREN, - [112302] = 2, + ACTIONS(13514), 1, + anon_sym_RBRACE, + [280643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8645), 1, - anon_sym_SEMI, - [112309] = 2, + ACTIONS(14781), 1, + anon_sym_COLON, + [280650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8647), 1, + ACTIONS(14783), 1, sym_identifier, - [112316] = 2, + [280657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8649), 1, - anon_sym_SEMI, - [112323] = 2, + ACTIONS(14785), 1, + anon_sym_RPAREN, + [280664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8651), 1, - anon_sym_SEMI, - [112330] = 2, + ACTIONS(14787), 1, + anon_sym_RPAREN, + [280671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8653), 1, + ACTIONS(14789), 1, sym_identifier, - [112337] = 2, + [280678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8655), 1, - anon_sym_SEMI, - [112344] = 2, + ACTIONS(13516), 1, + anon_sym_RBRACE, + [280685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 1, - aux_sym_preproc_if_token2, - [112351] = 2, + ACTIONS(14791), 1, + anon_sym_RPAREN, + [280692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8659), 1, - aux_sym_preproc_if_token2, - [112358] = 2, + ACTIONS(12538), 1, + anon_sym_COLON_COLON, + [280699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8661), 1, - anon_sym_SEMI, - [112365] = 2, + ACTIONS(12885), 1, + anon_sym_RPAREN, + [280706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8663), 1, + ACTIONS(14793), 1, sym_identifier, - [112372] = 2, + [280713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, + ACTIONS(9213), 1, anon_sym_RPAREN, - [112379] = 2, + [280720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 1, - anon_sym_LPAREN2, - [112386] = 2, + ACTIONS(14795), 1, + sym_identifier, + [280727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8667), 1, - anon_sym_LPAREN2, - [112393] = 2, + ACTIONS(9215), 1, + anon_sym_RPAREN, + [280734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5503), 1, + ACTIONS(14797), 1, anon_sym_RPAREN, - [112400] = 2, - ACTIONS(3715), 1, - anon_sym_LF, - ACTIONS(6220), 1, - sym_comment, - [112407] = 2, + [280741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8669), 1, - anon_sym_while, - [112414] = 2, + ACTIONS(14799), 1, + anon_sym_SEMI, + [280748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8671), 1, + ACTIONS(14801), 1, anon_sym_LPAREN2, - [112421] = 2, + [280755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8673), 1, - anon_sym_LPAREN2, - [112428] = 2, + ACTIONS(9373), 1, + anon_sym_RPAREN, + [280762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8675), 1, - anon_sym_SEMI, - [112435] = 2, + ACTIONS(5814), 1, + anon_sym_DOT_DOT_DOT, + [280769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8677), 1, - aux_sym_preproc_if_token2, - [112442] = 2, + ACTIONS(9223), 1, + anon_sym_RPAREN, + [280776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5587), 1, - anon_sym_SEMI, - [112449] = 2, + ACTIONS(14803), 1, + sym_identifier, + [280783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8679), 1, - sym_identifier, - [112456] = 2, + ACTIONS(14805), 1, + anon_sym_SEMI, + [280790] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8681), 1, + ACTIONS(14807), 1, aux_sym_preproc_if_token2, - [112463] = 2, - ACTIONS(3743), 1, - anon_sym_LF, - ACTIONS(6220), 1, + [280797] = 2, + ACTIONS(3), 1, sym_comment, - [112470] = 2, + ACTIONS(9049), 1, + anon_sym_RPAREN, + [280804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4383), 1, - anon_sym_LBRACE, - [112477] = 2, + ACTIONS(9313), 1, + anon_sym_COLON, + [280811] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14809), 1, + anon_sym_RPAREN, + [280818] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8683), 1, + ACTIONS(14811), 1, anon_sym_SEMI, - [112484] = 2, + [280825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8685), 1, - aux_sym_preproc_if_token2, - [112491] = 2, + ACTIONS(14813), 1, + anon_sym_LPAREN2, + [280832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7207), 1, - anon_sym_SEMI, - [112498] = 2, + ACTIONS(14815), 1, + anon_sym_LPAREN2, + [280839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8687), 1, - anon_sym_RPAREN, - [112505] = 2, + ACTIONS(14817), 1, + sym_identifier, + [280846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8689), 1, + ACTIONS(14819), 1, anon_sym_RPAREN, - [112512] = 2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(8691), 1, - anon_sym_LF, - [112519] = 2, + [280853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8693), 1, - anon_sym_SEMI, - [112526] = 2, + ACTIONS(14821), 1, + anon_sym_LPAREN2, + [280860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8695), 1, + ACTIONS(14823), 1, anon_sym_SEMI, - [112533] = 2, - ACTIONS(6220), 1, - sym_comment, - ACTIONS(8697), 1, - anon_sym_LF, - [112540] = 2, - ACTIONS(3), 1, + [280867] = 2, + ACTIONS(10249), 1, sym_comment, - ACTIONS(8699), 1, - aux_sym_preproc_if_token2, - [112547] = 2, + ACTIONS(13320), 1, + aux_sym_preproc_include_token2, + [280874] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8701), 1, - anon_sym_SEMI, - [112554] = 2, + ACTIONS(14825), 1, + anon_sym_RPAREN, + [280881] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8703), 1, - anon_sym_LPAREN2, - [112561] = 2, + ACTIONS(14827), 1, + sym_identifier, + [280888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7949), 1, - anon_sym_RBRACE, - [112568] = 2, + ACTIONS(14829), 1, + sym_raw_string_content, + [280895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8705), 1, - aux_sym_preproc_if_token2, - [112575] = 2, + ACTIONS(14831), 1, + anon_sym_COMMA, + [280902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8707), 1, - anon_sym_while, - [112582] = 2, + ACTIONS(14833), 1, + anon_sym_RBRACK, + [280909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8709), 1, - anon_sym_SEMI, - [112589] = 2, + ACTIONS(14835), 1, + anon_sym_RPAREN, + [280916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8711), 1, + ACTIONS(14837), 1, anon_sym_SEMI, - [112596] = 2, + [280923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8713), 1, - anon_sym_SEMI, - [112603] = 2, + ACTIONS(14839), 1, + anon_sym_LPAREN2, + [280930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5527), 1, - anon_sym_SEMI, - [112610] = 2, + ACTIONS(14841), 1, + anon_sym_LPAREN2, + [280937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8715), 1, + ACTIONS(14843), 1, sym_identifier, - [112617] = 2, + [280944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 1, + ACTIONS(14845), 1, anon_sym_RPAREN, - [112624] = 2, + [280951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8717), 1, - sym_identifier, - [112631] = 2, + ACTIONS(14847), 1, + anon_sym_DQUOTE, + [280958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5515), 1, - anon_sym_RPAREN, - [112638] = 2, + ACTIONS(14849), 1, + sym_identifier, + [280965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8719), 1, - anon_sym_LPAREN2, - [112645] = 2, + ACTIONS(14851), 1, + sym_raw_string_content, + [280972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8721), 1, - anon_sym_LPAREN2, - [112652] = 2, - ACTIONS(6220), 1, + ACTIONS(14853), 1, + sym_identifier, + [280979] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8723), 1, - anon_sym_LF, - [112659] = 2, + ACTIONS(14855), 1, + anon_sym_RPAREN, + [280986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8725), 1, - anon_sym_while, - [112666] = 2, + ACTIONS(14857), 1, + sym_raw_string_delimiter, + [280993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8727), 1, - aux_sym_preproc_if_token2, - [112673] = 2, + ACTIONS(14859), 1, + anon_sym_LPAREN2, + [281000] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8729), 1, - aux_sym_preproc_if_token2, - [112680] = 2, + ACTIONS(14861), 1, + sym_identifier, + [281007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8731), 1, - anon_sym_SEMI, - [112687] = 2, + ACTIONS(9229), 1, + anon_sym_COLON, + [281014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5513), 1, + ACTIONS(14863), 1, anon_sym_SEMI, - [112694] = 2, + [281021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, + ACTIONS(14865), 1, sym_identifier, - [112701] = 2, + [281028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8735), 1, - anon_sym_SEMI, - [112708] = 2, - ACTIONS(3), 1, + ACTIONS(14867), 1, + sym_raw_string_content, + [281035] = 2, + ACTIONS(10249), 1, sym_comment, - ACTIONS(8737), 1, - anon_sym_SEMI, - [112715] = 2, + ACTIONS(14869), 1, + aux_sym_preproc_include_token2, + [281042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5533), 1, - anon_sym_RPAREN, - [112722] = 2, + ACTIONS(14871), 1, + sym_identifier, + [281049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8739), 1, + ACTIONS(14873), 1, anon_sym_LPAREN2, - [112729] = 2, + [281056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - anon_sym_RPAREN, - [112736] = 2, + ACTIONS(14875), 1, + sym_identifier, + [281063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8741), 1, - anon_sym_RPAREN, - [112743] = 2, + ACTIONS(9243), 1, + anon_sym_COLON, + [281070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 1, + ACTIONS(14877), 1, anon_sym_RPAREN, - [112750] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8743), 1, - sym_identifier, - [112757] = 2, + [281077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8745), 1, + ACTIONS(14879), 1, sym_identifier, - [112764] = 2, + [281084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8747), 1, - anon_sym_STAR, - [112771] = 2, + ACTIONS(14881), 1, + sym_raw_string_content, + [281091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8749), 1, - anon_sym_SEMI, - [112778] = 2, + ACTIONS(14883), 1, + sym_identifier, + [281098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8751), 1, - aux_sym_preproc_if_token2, - [112785] = 2, + ACTIONS(14885), 1, + anon_sym_LPAREN2, + [281105] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8753), 1, - anon_sym_LPAREN2, - [112792] = 2, + ACTIONS(14887), 1, + sym_identifier, + [281112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8755), 1, - anon_sym_LPAREN2, - [112799] = 2, + ACTIONS(14889), 1, + anon_sym_DQUOTE, + [281119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8757), 1, - anon_sym_LPAREN2, - [112806] = 2, + ACTIONS(14891), 1, + sym_identifier, + [281126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8759), 1, - anon_sym_SEMI, - [112813] = 2, + ACTIONS(14893), 1, + sym_raw_string_content, + [281133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, + ACTIONS(14895), 1, anon_sym_RPAREN, - [112820] = 2, + [281140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8761), 1, - anon_sym_SEMI, - [112827] = 2, + ACTIONS(14897), 1, + sym_identifier, + [281147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8763), 1, - sym_identifier, - [112834] = 2, - ACTIONS(6220), 1, + ACTIONS(14899), 1, + sym_raw_string_content, + [281154] = 2, + ACTIONS(10249), 1, sym_comment, - ACTIONS(8765), 1, - anon_sym_LF, - [112841] = 2, + ACTIONS(14901), 1, + aux_sym_preproc_include_token2, + [281161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8767), 1, - sym_identifier, - [112848] = 2, + ACTIONS(14903), 1, + sym_raw_string_content, + [281168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8769), 1, - sym_identifier, - [112855] = 2, + ACTIONS(14905), 1, + anon_sym_LBRACE, + [281175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8771), 1, - anon_sym_COLON, - [112862] = 2, + ACTIONS(14907), 1, + sym_raw_string_content, + [281182] = 2, + ACTIONS(10249), 1, + sym_comment, + ACTIONS(14909), 1, + aux_sym_preproc_include_token2, + [281189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8773), 1, - anon_sym_SEMI, - [112869] = 2, + ACTIONS(14911), 1, + sym_raw_string_content, + [281196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8775), 1, + ACTIONS(14913), 1, anon_sym_SEMI, - [112876] = 2, + [281203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5599), 1, + ACTIONS(14915), 1, + sym_raw_string_content, + [281210] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11669), 1, anon_sym_SEMI, - [112883] = 2, - ACTIONS(6220), 1, + [281217] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(7953), 1, - anon_sym_LF, - [112890] = 2, - ACTIONS(6220), 1, + ACTIONS(14917), 1, + sym_raw_string_content, + [281224] = 2, + ACTIONS(10249), 1, sym_comment, - ACTIONS(8777), 1, - anon_sym_LF, - [112897] = 2, + ACTIONS(14919), 1, + aux_sym_preproc_include_token2, + [281231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8779), 1, - anon_sym_RPAREN, - [112904] = 2, + ACTIONS(14921), 1, + sym_raw_string_content, + [281238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8781), 1, - sym_identifier, - [112911] = 2, + ACTIONS(5820), 1, + anon_sym_DOT_DOT_DOT, + [281245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8783), 1, + ACTIONS(14923), 1, + sym_raw_string_content, + [281252] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14925), 1, sym_identifier, - [112918] = 2, + [281259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8785), 1, - anon_sym_STAR, - [112925] = 2, + ACTIONS(14927), 1, + sym_raw_string_content, + [281266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8787), 1, - anon_sym_LPAREN2, - [112932] = 2, + ACTIONS(14929), 1, + anon_sym_RPAREN, + [281273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8789), 1, - anon_sym_LPAREN2, - [112939] = 2, + ACTIONS(14931), 1, + sym_raw_string_content, + [281280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8791), 1, - anon_sym_SEMI, - [112946] = 2, + ACTIONS(14933), 1, + anon_sym_LPAREN2, + [281287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8793), 1, - anon_sym_SQUOTE, - [112953] = 2, + ACTIONS(14935), 1, + anon_sym_LPAREN2, + [281294] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8795), 1, - sym_identifier, - [112960] = 2, + ACTIONS(14937), 1, + anon_sym_RPAREN, + [281301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4927), 1, - sym_identifier, - [112967] = 2, + ACTIONS(14939), 1, + anon_sym_LPAREN2, + [281308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7242), 1, - anon_sym_SEMI, - [112974] = 2, + ACTIONS(14941), 1, + anon_sym_LPAREN2, + [281315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4379), 1, - anon_sym_LBRACE, - [112981] = 2, + ACTIONS(14943), 1, + anon_sym_LPAREN2, + [281322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7318), 1, - anon_sym_SEMI, - [112988] = 2, + ACTIONS(14945), 1, + anon_sym_LPAREN2, + [281329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8797), 1, - anon_sym_SEMI, - [112995] = 2, + ACTIONS(14947), 1, + anon_sym_LPAREN2, + [281336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4326), 1, - anon_sym_SEMI, - [113002] = 2, + ACTIONS(14949), 1, + anon_sym_DQUOTE, + [281343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8799), 1, + ACTIONS(14951), 1, anon_sym_LPAREN2, - [113009] = 2, + [281350] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8801), 1, + ACTIONS(14953), 1, anon_sym_LPAREN2, - [113016] = 2, + [281357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8803), 1, - aux_sym_preproc_if_token2, - [113023] = 2, + ACTIONS(14955), 1, + sym_identifier, + [281364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8805), 1, - aux_sym_preproc_if_token2, - [113030] = 2, - ACTIONS(6220), 1, + ACTIONS(14957), 1, + anon_sym_LPAREN2, + [281371] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8807), 1, - anon_sym_LF, - [113037] = 2, - ACTIONS(6220), 1, + ACTIONS(14959), 1, + anon_sym_LPAREN2, + [281378] = 2, + ACTIONS(10249), 1, sym_comment, - ACTIONS(8809), 1, + ACTIONS(14961), 1, anon_sym_LF, - [113044] = 2, + [281385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8811), 1, - aux_sym_preproc_if_token2, - [113051] = 2, - ACTIONS(6220), 1, + ACTIONS(14963), 1, + anon_sym_LPAREN2, + [281392] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8813), 1, - anon_sym_LF, - [113058] = 2, + ACTIONS(14965), 1, + anon_sym_LPAREN2, + [281399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8815), 1, - sym_identifier, - [113065] = 2, + ACTIONS(14967), 1, + anon_sym_LPAREN2, + [281406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8817), 1, + ACTIONS(14969), 1, anon_sym_LPAREN2, - [113072] = 2, + [281413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8819), 1, + ACTIONS(14971), 1, anon_sym_LPAREN2, - [113079] = 2, + [281420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8015), 1, - anon_sym_RBRACE, - [113086] = 2, + ACTIONS(14973), 1, + anon_sym_LPAREN2, + [281427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, - anon_sym_SEMI, - [113093] = 2, + ACTIONS(14975), 1, + anon_sym_LPAREN2, + [281434] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8821), 1, + ACTIONS(14977), 1, anon_sym_LPAREN2, - [113100] = 2, + [281441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8823), 1, - anon_sym_RPAREN, - [113107] = 2, + ACTIONS(14979), 1, + anon_sym_LPAREN2, + [281448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8825), 1, - anon_sym_while, - [113114] = 2, + ACTIONS(14981), 1, + anon_sym_LPAREN2, + [281455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8827), 1, + ACTIONS(14983), 1, anon_sym_LPAREN2, - [113121] = 2, + [281462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8829), 1, + ACTIONS(14985), 1, anon_sym_SEMI, - [113128] = 2, + [281469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5435), 1, - anon_sym_RBRACE, - [113135] = 2, + ACTIONS(14987), 1, + anon_sym_SEMI, + [281476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5651), 1, + ACTIONS(14989), 1, anon_sym_SEMI, - [113142] = 2, + [281483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8831), 1, - anon_sym_RPAREN, - [113149] = 2, + ACTIONS(14991), 1, + anon_sym_DQUOTE, + [281490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8833), 1, - anon_sym_SEMI, - [113156] = 2, + ACTIONS(14993), 1, + anon_sym_DQUOTE, + [281497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8835), 1, - anon_sym_STAR, - [113163] = 2, + ACTIONS(14995), 1, + anon_sym_LPAREN2, + [281504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7282), 1, - anon_sym_SEMI, - [113170] = 2, - ACTIONS(6220), 1, + ACTIONS(14997), 1, + anon_sym_LPAREN2, + [281511] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8837), 1, - anon_sym_LF, - [113177] = 2, + ACTIONS(14999), 1, + anon_sym_LPAREN2, + [281518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8839), 1, - anon_sym_SEMI, + ACTIONS(15001), 1, + anon_sym_LPAREN2, + [281525] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15003), 1, + anon_sym_LPAREN2, + [281532] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15005), 1, + sym_identifier, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1949)] = 0, - [SMALL_STATE(1950)] = 73, - [SMALL_STATE(1951)] = 140, - [SMALL_STATE(1952)] = 201, - [SMALL_STATE(1953)] = 270, - [SMALL_STATE(1954)] = 341, - [SMALL_STATE(1955)] = 410, - [SMALL_STATE(1956)] = 471, - [SMALL_STATE(1957)] = 532, - [SMALL_STATE(1958)] = 593, - [SMALL_STATE(1959)] = 654, - [SMALL_STATE(1960)] = 715, - [SMALL_STATE(1961)] = 776, - [SMALL_STATE(1962)] = 837, - [SMALL_STATE(1963)] = 898, - [SMALL_STATE(1964)] = 959, - [SMALL_STATE(1965)] = 1020, - [SMALL_STATE(1966)] = 1080, - [SMALL_STATE(1967)] = 1188, - [SMALL_STATE(1968)] = 1248, - [SMALL_STATE(1969)] = 1356, - [SMALL_STATE(1970)] = 1464, - [SMALL_STATE(1971)] = 1527, - [SMALL_STATE(1972)] = 1594, - [SMALL_STATE(1973)] = 1653, - [SMALL_STATE(1974)] = 1712, - [SMALL_STATE(1975)] = 1770, - [SMALL_STATE(1976)] = 1828, - [SMALL_STATE(1977)] = 1886, - [SMALL_STATE(1978)] = 1944, - [SMALL_STATE(1979)] = 2002, - [SMALL_STATE(1980)] = 2060, - [SMALL_STATE(1981)] = 2118, - [SMALL_STATE(1982)] = 2187, - [SMALL_STATE(1983)] = 2254, - [SMALL_STATE(1984)] = 2323, - [SMALL_STATE(1985)] = 2392, - [SMALL_STATE(1986)] = 2475, - [SMALL_STATE(1987)] = 2540, - [SMALL_STATE(1988)] = 2609, - [SMALL_STATE(1989)] = 2678, - [SMALL_STATE(1990)] = 2743, - [SMALL_STATE(1991)] = 2812, - [SMALL_STATE(1992)] = 2883, - [SMALL_STATE(1993)] = 2945, - [SMALL_STATE(1994)] = 3015, - [SMALL_STATE(1995)] = 3085, - [SMALL_STATE(1996)] = 3149, - [SMALL_STATE(1997)] = 3225, - [SMALL_STATE(1998)] = 3287, - [SMALL_STATE(1999)] = 3363, - [SMALL_STATE(2000)] = 3422, - [SMALL_STATE(2001)] = 3479, - [SMALL_STATE(2002)] = 3536, - [SMALL_STATE(2003)] = 3601, - [SMALL_STATE(2004)] = 3656, - [SMALL_STATE(2005)] = 3719, - [SMALL_STATE(2006)] = 3784, - [SMALL_STATE(2007)] = 3849, - [SMALL_STATE(2008)] = 3912, - [SMALL_STATE(2009)] = 3967, - [SMALL_STATE(2010)] = 4022, - [SMALL_STATE(2011)] = 4085, - [SMALL_STATE(2012)] = 4150, - [SMALL_STATE(2013)] = 4205, - [SMALL_STATE(2014)] = 4262, - [SMALL_STATE(2015)] = 4324, - [SMALL_STATE(2016)] = 4378, - [SMALL_STATE(2017)] = 4432, - [SMALL_STATE(2018)] = 4486, - [SMALL_STATE(2019)] = 4544, - [SMALL_STATE(2020)] = 4604, - [SMALL_STATE(2021)] = 4666, - [SMALL_STATE(2022)] = 4726, - [SMALL_STATE(2023)] = 4792, - [SMALL_STATE(2024)] = 4852, - [SMALL_STATE(2025)] = 4906, - [SMALL_STATE(2026)] = 4972, - [SMALL_STATE(2027)] = 5032, - [SMALL_STATE(2028)] = 5094, - [SMALL_STATE(2029)] = 5160, - [SMALL_STATE(2030)] = 5220, - [SMALL_STATE(2031)] = 5278, - [SMALL_STATE(2032)] = 5338, - [SMALL_STATE(2033)] = 5404, - [SMALL_STATE(2034)] = 5464, - [SMALL_STATE(2035)] = 5530, - [SMALL_STATE(2036)] = 5596, - [SMALL_STATE(2037)] = 5651, - [SMALL_STATE(2038)] = 5706, - [SMALL_STATE(2039)] = 5761, - [SMALL_STATE(2040)] = 5828, - [SMALL_STATE(2041)] = 5887, - [SMALL_STATE(2042)] = 5942, - [SMALL_STATE(2043)] = 6007, - [SMALL_STATE(2044)] = 6076, - [SMALL_STATE(2045)] = 6137, - [SMALL_STATE(2046)] = 6196, - [SMALL_STATE(2047)] = 6253, - [SMALL_STATE(2048)] = 6317, - [SMALL_STATE(2049)] = 6369, - [SMALL_STATE(2050)] = 6421, - [SMALL_STATE(2051)] = 6473, - [SMALL_STATE(2052)] = 6525, - [SMALL_STATE(2053)] = 6579, - [SMALL_STATE(2054)] = 6633, - [SMALL_STATE(2055)] = 6685, - [SMALL_STATE(2056)] = 6737, - [SMALL_STATE(2057)] = 6789, - [SMALL_STATE(2058)] = 6841, - [SMALL_STATE(2059)] = 6893, - [SMALL_STATE(2060)] = 6945, - [SMALL_STATE(2061)] = 6997, - [SMALL_STATE(2062)] = 7049, - [SMALL_STATE(2063)] = 7101, - [SMALL_STATE(2064)] = 7153, - [SMALL_STATE(2065)] = 7205, - [SMALL_STATE(2066)] = 7257, - [SMALL_STATE(2067)] = 7321, - [SMALL_STATE(2068)] = 7373, - [SMALL_STATE(2069)] = 7425, - [SMALL_STATE(2070)] = 7477, - [SMALL_STATE(2071)] = 7529, - [SMALL_STATE(2072)] = 7581, - [SMALL_STATE(2073)] = 7633, - [SMALL_STATE(2074)] = 7685, - [SMALL_STATE(2075)] = 7737, - [SMALL_STATE(2076)] = 7789, - [SMALL_STATE(2077)] = 7881, - [SMALL_STATE(2078)] = 7933, - [SMALL_STATE(2079)] = 7985, - [SMALL_STATE(2080)] = 8037, - [SMALL_STATE(2081)] = 8089, - [SMALL_STATE(2082)] = 8141, - [SMALL_STATE(2083)] = 8233, - [SMALL_STATE(2084)] = 8285, - [SMALL_STATE(2085)] = 8337, - [SMALL_STATE(2086)] = 8391, - [SMALL_STATE(2087)] = 8455, - [SMALL_STATE(2088)] = 8519, - [SMALL_STATE(2089)] = 8571, - [SMALL_STATE(2090)] = 8625, - [SMALL_STATE(2091)] = 8689, - [SMALL_STATE(2092)] = 8743, - [SMALL_STATE(2093)] = 8795, - [SMALL_STATE(2094)] = 8849, - [SMALL_STATE(2095)] = 8901, - [SMALL_STATE(2096)] = 8953, - [SMALL_STATE(2097)] = 9017, - [SMALL_STATE(2098)] = 9069, - [SMALL_STATE(2099)] = 9121, - [SMALL_STATE(2100)] = 9173, - [SMALL_STATE(2101)] = 9225, - [SMALL_STATE(2102)] = 9277, - [SMALL_STATE(2103)] = 9329, - [SMALL_STATE(2104)] = 9381, - [SMALL_STATE(2105)] = 9433, - [SMALL_STATE(2106)] = 9485, - [SMALL_STATE(2107)] = 9549, - [SMALL_STATE(2108)] = 9601, - [SMALL_STATE(2109)] = 9653, - [SMALL_STATE(2110)] = 9705, - [SMALL_STATE(2111)] = 9757, - [SMALL_STATE(2112)] = 9849, - [SMALL_STATE(2113)] = 9901, - [SMALL_STATE(2114)] = 9953, - [SMALL_STATE(2115)] = 10005, - [SMALL_STATE(2116)] = 10057, - [SMALL_STATE(2117)] = 10109, - [SMALL_STATE(2118)] = 10200, - [SMALL_STATE(2119)] = 10291, - [SMALL_STATE(2120)] = 10342, - [SMALL_STATE(2121)] = 10393, - [SMALL_STATE(2122)] = 10444, - [SMALL_STATE(2123)] = 10495, - [SMALL_STATE(2124)] = 10558, - [SMALL_STATE(2125)] = 10609, - [SMALL_STATE(2126)] = 10674, - [SMALL_STATE(2127)] = 10725, - [SMALL_STATE(2128)] = 10776, - [SMALL_STATE(2129)] = 10867, - [SMALL_STATE(2130)] = 10918, - [SMALL_STATE(2131)] = 10983, - [SMALL_STATE(2132)] = 11074, - [SMALL_STATE(2133)] = 11125, - [SMALL_STATE(2134)] = 11176, - [SMALL_STATE(2135)] = 11267, - [SMALL_STATE(2136)] = 11318, - [SMALL_STATE(2137)] = 11369, - [SMALL_STATE(2138)] = 11420, - [SMALL_STATE(2139)] = 11471, - [SMALL_STATE(2140)] = 11562, - [SMALL_STATE(2141)] = 11627, - [SMALL_STATE(2142)] = 11678, - [SMALL_STATE(2143)] = 11729, - [SMALL_STATE(2144)] = 11820, - [SMALL_STATE(2145)] = 11871, - [SMALL_STATE(2146)] = 11962, - [SMALL_STATE(2147)] = 12013, - [SMALL_STATE(2148)] = 12064, - [SMALL_STATE(2149)] = 12127, - [SMALL_STATE(2150)] = 12218, - [SMALL_STATE(2151)] = 12269, - [SMALL_STATE(2152)] = 12354, - [SMALL_STATE(2153)] = 12405, - [SMALL_STATE(2154)] = 12496, - [SMALL_STATE(2155)] = 12557, - [SMALL_STATE(2156)] = 12608, - [SMALL_STATE(2157)] = 12693, - [SMALL_STATE(2158)] = 12754, - [SMALL_STATE(2159)] = 12821, - [SMALL_STATE(2160)] = 12872, - [SMALL_STATE(2161)] = 12963, - [SMALL_STATE(2162)] = 13014, - [SMALL_STATE(2163)] = 13079, - [SMALL_STATE(2164)] = 13130, - [SMALL_STATE(2165)] = 13199, - [SMALL_STATE(2166)] = 13250, - [SMALL_STATE(2167)] = 13301, - [SMALL_STATE(2168)] = 13352, - [SMALL_STATE(2169)] = 13425, - [SMALL_STATE(2170)] = 13476, - [SMALL_STATE(2171)] = 13541, - [SMALL_STATE(2172)] = 13610, - [SMALL_STATE(2173)] = 13661, - [SMALL_STATE(2174)] = 13712, - [SMALL_STATE(2175)] = 13763, - [SMALL_STATE(2176)] = 13814, - [SMALL_STATE(2177)] = 13889, - [SMALL_STATE(2178)] = 13940, - [SMALL_STATE(2179)] = 14017, - [SMALL_STATE(2180)] = 14078, - [SMALL_STATE(2181)] = 14157, - [SMALL_STATE(2182)] = 14208, - [SMALL_STATE(2183)] = 14289, - [SMALL_STATE(2184)] = 14372, - [SMALL_STATE(2185)] = 14463, - [SMALL_STATE(2186)] = 14554, - [SMALL_STATE(2187)] = 14639, - [SMALL_STATE(2188)] = 14690, - [SMALL_STATE(2189)] = 14741, - [SMALL_STATE(2190)] = 14806, - [SMALL_STATE(2191)] = 14857, - [SMALL_STATE(2192)] = 14908, - [SMALL_STATE(2193)] = 14999, - [SMALL_STATE(2194)] = 15050, - [SMALL_STATE(2195)] = 15101, - [SMALL_STATE(2196)] = 15192, - [SMALL_STATE(2197)] = 15261, - [SMALL_STATE(2198)] = 15322, - [SMALL_STATE(2199)] = 15413, - [SMALL_STATE(2200)] = 15464, - [SMALL_STATE(2201)] = 15515, - [SMALL_STATE(2202)] = 15606, - [SMALL_STATE(2203)] = 15659, - [SMALL_STATE(2204)] = 15710, - [SMALL_STATE(2205)] = 15761, - [SMALL_STATE(2206)] = 15848, - [SMALL_STATE(2207)] = 15899, - [SMALL_STATE(2208)] = 15950, - [SMALL_STATE(2209)] = 16011, - [SMALL_STATE(2210)] = 16062, - [SMALL_STATE(2211)] = 16125, - [SMALL_STATE(2212)] = 16176, - [SMALL_STATE(2213)] = 16245, - [SMALL_STATE(2214)] = 16296, - [SMALL_STATE(2215)] = 16359, - [SMALL_STATE(2216)] = 16424, - [SMALL_STATE(2217)] = 16515, - [SMALL_STATE(2218)] = 16566, - [SMALL_STATE(2219)] = 16617, - [SMALL_STATE(2220)] = 16672, - [SMALL_STATE(2221)] = 16729, - [SMALL_STATE(2222)] = 16786, - [SMALL_STATE(2223)] = 16837, - [SMALL_STATE(2224)] = 16888, - [SMALL_STATE(2225)] = 16979, - [SMALL_STATE(2226)] = 17064, - [SMALL_STATE(2227)] = 17153, - [SMALL_STATE(2228)] = 17214, - [SMALL_STATE(2229)] = 17305, - [SMALL_STATE(2230)] = 17361, - [SMALL_STATE(2231)] = 17421, - [SMALL_STATE(2232)] = 17479, - [SMALL_STATE(2233)] = 17533, - [SMALL_STATE(2234)] = 17583, - [SMALL_STATE(2235)] = 17633, - [SMALL_STATE(2236)] = 17683, - [SMALL_STATE(2237)] = 17733, - [SMALL_STATE(2238)] = 17783, - [SMALL_STATE(2239)] = 17833, - [SMALL_STATE(2240)] = 17883, - [SMALL_STATE(2241)] = 17937, - [SMALL_STATE(2242)] = 17993, - [SMALL_STATE(2243)] = 18049, - [SMALL_STATE(2244)] = 18105, - [SMALL_STATE(2245)] = 18155, - [SMALL_STATE(2246)] = 18213, - [SMALL_STATE(2247)] = 18265, - [SMALL_STATE(2248)] = 18319, - [SMALL_STATE(2249)] = 18381, - [SMALL_STATE(2250)] = 18439, - [SMALL_STATE(2251)] = 18489, - [SMALL_STATE(2252)] = 18545, - [SMALL_STATE(2253)] = 18601, - [SMALL_STATE(2254)] = 18663, - [SMALL_STATE(2255)] = 18715, - [SMALL_STATE(2256)] = 18773, - [SMALL_STATE(2257)] = 18827, - [SMALL_STATE(2258)] = 18885, - [SMALL_STATE(2259)] = 18939, - [SMALL_STATE(2260)] = 18995, - [SMALL_STATE(2261)] = 19047, - [SMALL_STATE(2262)] = 19107, - [SMALL_STATE(2263)] = 19157, - [SMALL_STATE(2264)] = 19207, - [SMALL_STATE(2265)] = 19257, - [SMALL_STATE(2266)] = 19311, - [SMALL_STATE(2267)] = 19364, - [SMALL_STATE(2268)] = 19417, - [SMALL_STATE(2269)] = 19478, - [SMALL_STATE(2270)] = 19539, - [SMALL_STATE(2271)] = 19600, - [SMALL_STATE(2272)] = 19661, - [SMALL_STATE(2273)] = 19722, - [SMALL_STATE(2274)] = 19775, - [SMALL_STATE(2275)] = 19828, - [SMALL_STATE(2276)] = 19889, - [SMALL_STATE(2277)] = 19940, - [SMALL_STATE(2278)] = 20001, - [SMALL_STATE(2279)] = 20052, - [SMALL_STATE(2280)] = 20103, - [SMALL_STATE(2281)] = 20154, - [SMALL_STATE(2282)] = 20202, - [SMALL_STATE(2283)] = 20252, - [SMALL_STATE(2284)] = 20300, - [SMALL_STATE(2285)] = 20348, - [SMALL_STATE(2286)] = 20396, - [SMALL_STATE(2287)] = 20444, - [SMALL_STATE(2288)] = 20492, - [SMALL_STATE(2289)] = 20540, - [SMALL_STATE(2290)] = 20624, - [SMALL_STATE(2291)] = 20672, - [SMALL_STATE(2292)] = 20720, - [SMALL_STATE(2293)] = 20768, - [SMALL_STATE(2294)] = 20860, - [SMALL_STATE(2295)] = 20912, - [SMALL_STATE(2296)] = 20960, - [SMALL_STATE(2297)] = 21008, - [SMALL_STATE(2298)] = 21056, - [SMALL_STATE(2299)] = 21104, - [SMALL_STATE(2300)] = 21152, - [SMALL_STATE(2301)] = 21200, - [SMALL_STATE(2302)] = 21248, - [SMALL_STATE(2303)] = 21296, - [SMALL_STATE(2304)] = 21344, - [SMALL_STATE(2305)] = 21392, - [SMALL_STATE(2306)] = 21440, - [SMALL_STATE(2307)] = 21532, - [SMALL_STATE(2308)] = 21614, - [SMALL_STATE(2309)] = 21662, - [SMALL_STATE(2310)] = 21710, - [SMALL_STATE(2311)] = 21758, - [SMALL_STATE(2312)] = 21820, - [SMALL_STATE(2313)] = 21880, - [SMALL_STATE(2314)] = 21960, - [SMALL_STATE(2315)] = 22038, - [SMALL_STATE(2316)] = 22114, - [SMALL_STATE(2317)] = 22188, - [SMALL_STATE(2318)] = 22260, - [SMALL_STATE(2319)] = 22330, - [SMALL_STATE(2320)] = 22396, - [SMALL_STATE(2321)] = 22460, - [SMALL_STATE(2322)] = 22508, - [SMALL_STATE(2323)] = 22556, - [SMALL_STATE(2324)] = 22604, - [SMALL_STATE(2325)] = 22652, - [SMALL_STATE(2326)] = 22700, - [SMALL_STATE(2327)] = 22748, - [SMALL_STATE(2328)] = 22796, - [SMALL_STATE(2329)] = 22844, - [SMALL_STATE(2330)] = 22892, - [SMALL_STATE(2331)] = 22940, - [SMALL_STATE(2332)] = 22988, - [SMALL_STATE(2333)] = 23048, - [SMALL_STATE(2334)] = 23096, - [SMALL_STATE(2335)] = 23144, - [SMALL_STATE(2336)] = 23230, - [SMALL_STATE(2337)] = 23278, - [SMALL_STATE(2338)] = 23328, - [SMALL_STATE(2339)] = 23376, - [SMALL_STATE(2340)] = 23424, - [SMALL_STATE(2341)] = 23472, - [SMALL_STATE(2342)] = 23520, - [SMALL_STATE(2343)] = 23578, - [SMALL_STATE(2344)] = 23626, - [SMALL_STATE(2345)] = 23674, - [SMALL_STATE(2346)] = 23722, - [SMALL_STATE(2347)] = 23804, - [SMALL_STATE(2348)] = 23852, - [SMALL_STATE(2349)] = 23900, - [SMALL_STATE(2350)] = 23982, - [SMALL_STATE(2351)] = 24030, - [SMALL_STATE(2352)] = 24088, - [SMALL_STATE(2353)] = 24154, - [SMALL_STATE(2354)] = 24214, - [SMALL_STATE(2355)] = 24264, - [SMALL_STATE(2356)] = 24312, - [SMALL_STATE(2357)] = 24360, - [SMALL_STATE(2358)] = 24408, - [SMALL_STATE(2359)] = 24490, - [SMALL_STATE(2360)] = 24538, - [SMALL_STATE(2361)] = 24586, - [SMALL_STATE(2362)] = 24646, - [SMALL_STATE(2363)] = 24693, - [SMALL_STATE(2364)] = 24774, - [SMALL_STATE(2365)] = 24821, - [SMALL_STATE(2366)] = 24868, - [SMALL_STATE(2367)] = 24915, - [SMALL_STATE(2368)] = 24962, - [SMALL_STATE(2369)] = 25009, - [SMALL_STATE(2370)] = 25056, - [SMALL_STATE(2371)] = 25103, - [SMALL_STATE(2372)] = 25150, - [SMALL_STATE(2373)] = 25197, - [SMALL_STATE(2374)] = 25244, - [SMALL_STATE(2375)] = 25291, - [SMALL_STATE(2376)] = 25338, - [SMALL_STATE(2377)] = 25385, - [SMALL_STATE(2378)] = 25432, - [SMALL_STATE(2379)] = 25491, - [SMALL_STATE(2380)] = 25538, - [SMALL_STATE(2381)] = 25585, - [SMALL_STATE(2382)] = 25632, - [SMALL_STATE(2383)] = 25679, - [SMALL_STATE(2384)] = 25726, - [SMALL_STATE(2385)] = 25773, - [SMALL_STATE(2386)] = 25820, - [SMALL_STATE(2387)] = 25867, - [SMALL_STATE(2388)] = 25914, - [SMALL_STATE(2389)] = 25961, - [SMALL_STATE(2390)] = 26008, - [SMALL_STATE(2391)] = 26055, - [SMALL_STATE(2392)] = 26102, - [SMALL_STATE(2393)] = 26149, - [SMALL_STATE(2394)] = 26196, - [SMALL_STATE(2395)] = 26243, - [SMALL_STATE(2396)] = 26304, - [SMALL_STATE(2397)] = 26351, - [SMALL_STATE(2398)] = 26398, - [SMALL_STATE(2399)] = 26445, - [SMALL_STATE(2400)] = 26492, - [SMALL_STATE(2401)] = 26539, - [SMALL_STATE(2402)] = 26586, - [SMALL_STATE(2403)] = 26633, - [SMALL_STATE(2404)] = 26692, - [SMALL_STATE(2405)] = 26749, - [SMALL_STATE(2406)] = 26828, - [SMALL_STATE(2407)] = 26875, - [SMALL_STATE(2408)] = 26922, - [SMALL_STATE(2409)] = 26969, - [SMALL_STATE(2410)] = 27016, - [SMALL_STATE(2411)] = 27063, - [SMALL_STATE(2412)] = 27140, - [SMALL_STATE(2413)] = 27215, - [SMALL_STATE(2414)] = 27288, - [SMALL_STATE(2415)] = 27359, - [SMALL_STATE(2416)] = 27406, - [SMALL_STATE(2417)] = 27475, - [SMALL_STATE(2418)] = 27522, - [SMALL_STATE(2419)] = 27569, - [SMALL_STATE(2420)] = 27620, - [SMALL_STATE(2421)] = 27685, - [SMALL_STATE(2422)] = 27732, - [SMALL_STATE(2423)] = 27779, - [SMALL_STATE(2424)] = 27826, - [SMALL_STATE(2425)] = 27875, - [SMALL_STATE(2426)] = 27924, - [SMALL_STATE(2427)] = 27971, - [SMALL_STATE(2428)] = 28018, - [SMALL_STATE(2429)] = 28065, - [SMALL_STATE(2430)] = 28128, - [SMALL_STATE(2431)] = 28175, - [SMALL_STATE(2432)] = 28234, - [SMALL_STATE(2433)] = 28281, - [SMALL_STATE(2434)] = 28328, - [SMALL_STATE(2435)] = 28411, - [SMALL_STATE(2436)] = 28458, - [SMALL_STATE(2437)] = 28505, - [SMALL_STATE(2438)] = 28552, - [SMALL_STATE(2439)] = 28599, - [SMALL_STATE(2440)] = 28646, - [SMALL_STATE(2441)] = 28693, - [SMALL_STATE(2442)] = 28740, - [SMALL_STATE(2443)] = 28787, - [SMALL_STATE(2444)] = 28834, - [SMALL_STATE(2445)] = 28881, - [SMALL_STATE(2446)] = 28928, - [SMALL_STATE(2447)] = 28975, - [SMALL_STATE(2448)] = 29022, - [SMALL_STATE(2449)] = 29069, - [SMALL_STATE(2450)] = 29116, - [SMALL_STATE(2451)] = 29165, - [SMALL_STATE(2452)] = 29212, - [SMALL_STATE(2453)] = 29259, - [SMALL_STATE(2454)] = 29306, - [SMALL_STATE(2455)] = 29353, - [SMALL_STATE(2456)] = 29400, - [SMALL_STATE(2457)] = 29457, - [SMALL_STATE(2458)] = 29538, - [SMALL_STATE(2459)] = 29585, - [SMALL_STATE(2460)] = 29632, - [SMALL_STATE(2461)] = 29679, - [SMALL_STATE(2462)] = 29726, - [SMALL_STATE(2463)] = 29773, - [SMALL_STATE(2464)] = 29854, - [SMALL_STATE(2465)] = 29901, - [SMALL_STATE(2466)] = 29948, - [SMALL_STATE(2467)] = 30033, - [SMALL_STATE(2468)] = 30080, - [SMALL_STATE(2469)] = 30127, - [SMALL_STATE(2470)] = 30174, - [SMALL_STATE(2471)] = 30221, - [SMALL_STATE(2472)] = 30268, - [SMALL_STATE(2473)] = 30315, - [SMALL_STATE(2474)] = 30362, - [SMALL_STATE(2475)] = 30421, - [SMALL_STATE(2476)] = 30468, - [SMALL_STATE(2477)] = 30515, - [SMALL_STATE(2478)] = 30562, - [SMALL_STATE(2479)] = 30609, - [SMALL_STATE(2480)] = 30656, - [SMALL_STATE(2481)] = 30707, - [SMALL_STATE(2482)] = 30754, - [SMALL_STATE(2483)] = 30801, - [SMALL_STATE(2484)] = 30882, - [SMALL_STATE(2485)] = 30929, - [SMALL_STATE(2486)] = 30976, - [SMALL_STATE(2487)] = 31023, - [SMALL_STATE(2488)] = 31070, - [SMALL_STATE(2489)] = 31117, - [SMALL_STATE(2490)] = 31164, - [SMALL_STATE(2491)] = 31215, - [SMALL_STATE(2492)] = 31262, - [SMALL_STATE(2493)] = 31309, - [SMALL_STATE(2494)] = 31356, - [SMALL_STATE(2495)] = 31421, - [SMALL_STATE(2496)] = 31467, - [SMALL_STATE(2497)] = 31513, - [SMALL_STATE(2498)] = 31567, - [SMALL_STATE(2499)] = 31653, - [SMALL_STATE(2500)] = 31707, - [SMALL_STATE(2501)] = 31757, - [SMALL_STATE(2502)] = 31803, - [SMALL_STATE(2503)] = 31859, - [SMALL_STATE(2504)] = 31905, - [SMALL_STATE(2505)] = 31951, - [SMALL_STATE(2506)] = 31997, - [SMALL_STATE(2507)] = 32043, - [SMALL_STATE(2508)] = 32089, - [SMALL_STATE(2509)] = 32175, - [SMALL_STATE(2510)] = 32229, - [SMALL_STATE(2511)] = 32315, - [SMALL_STATE(2512)] = 32401, - [SMALL_STATE(2513)] = 32484, - [SMALL_STATE(2514)] = 32567, - [SMALL_STATE(2515)] = 32650, - [SMALL_STATE(2516)] = 32701, - [SMALL_STATE(2517)] = 32784, - [SMALL_STATE(2518)] = 32867, - [SMALL_STATE(2519)] = 32950, - [SMALL_STATE(2520)] = 33033, - [SMALL_STATE(2521)] = 33116, - [SMALL_STATE(2522)] = 33167, - [SMALL_STATE(2523)] = 33247, - [SMALL_STATE(2524)] = 33293, - [SMALL_STATE(2525)] = 33373, - [SMALL_STATE(2526)] = 33453, - [SMALL_STATE(2527)] = 33533, - [SMALL_STATE(2528)] = 33585, - [SMALL_STATE(2529)] = 33665, - [SMALL_STATE(2530)] = 33745, - [SMALL_STATE(2531)] = 33825, - [SMALL_STATE(2532)] = 33905, - [SMALL_STATE(2533)] = 33985, - [SMALL_STATE(2534)] = 34065, - [SMALL_STATE(2535)] = 34145, - [SMALL_STATE(2536)] = 34225, - [SMALL_STATE(2537)] = 34305, - [SMALL_STATE(2538)] = 34349, - [SMALL_STATE(2539)] = 34429, - [SMALL_STATE(2540)] = 34509, - [SMALL_STATE(2541)] = 34589, - [SMALL_STATE(2542)] = 34669, - [SMALL_STATE(2543)] = 34713, - [SMALL_STATE(2544)] = 34793, - [SMALL_STATE(2545)] = 34873, - [SMALL_STATE(2546)] = 34953, - [SMALL_STATE(2547)] = 35005, - [SMALL_STATE(2548)] = 35085, - [SMALL_STATE(2549)] = 35164, - [SMALL_STATE(2550)] = 35243, - [SMALL_STATE(2551)] = 35286, - [SMALL_STATE(2552)] = 35361, - [SMALL_STATE(2553)] = 35404, - [SMALL_STATE(2554)] = 35447, - [SMALL_STATE(2555)] = 35490, - [SMALL_STATE(2556)] = 35565, - [SMALL_STATE(2557)] = 35608, - [SMALL_STATE(2558)] = 35683, - [SMALL_STATE(2559)] = 35726, - [SMALL_STATE(2560)] = 35769, - [SMALL_STATE(2561)] = 35812, - [SMALL_STATE(2562)] = 35891, - [SMALL_STATE(2563)] = 35966, - [SMALL_STATE(2564)] = 36009, - [SMALL_STATE(2565)] = 36058, - [SMALL_STATE(2566)] = 36101, - [SMALL_STATE(2567)] = 36144, - [SMALL_STATE(2568)] = 36187, - [SMALL_STATE(2569)] = 36266, - [SMALL_STATE(2570)] = 36341, - [SMALL_STATE(2571)] = 36420, - [SMALL_STATE(2572)] = 36463, - [SMALL_STATE(2573)] = 36506, - [SMALL_STATE(2574)] = 36549, - [SMALL_STATE(2575)] = 36592, - [SMALL_STATE(2576)] = 36635, - [SMALL_STATE(2577)] = 36682, - [SMALL_STATE(2578)] = 36757, - [SMALL_STATE(2579)] = 36800, - [SMALL_STATE(2580)] = 36875, - [SMALL_STATE(2581)] = 36950, - [SMALL_STATE(2582)] = 37025, - [SMALL_STATE(2583)] = 37068, - [SMALL_STATE(2584)] = 37111, - [SMALL_STATE(2585)] = 37190, - [SMALL_STATE(2586)] = 37233, - [SMALL_STATE(2587)] = 37276, - [SMALL_STATE(2588)] = 37351, - [SMALL_STATE(2589)] = 37394, - [SMALL_STATE(2590)] = 37437, - [SMALL_STATE(2591)] = 37480, - [SMALL_STATE(2592)] = 37523, - [SMALL_STATE(2593)] = 37566, - [SMALL_STATE(2594)] = 37645, - [SMALL_STATE(2595)] = 37694, - [SMALL_STATE(2596)] = 37737, - [SMALL_STATE(2597)] = 37780, - [SMALL_STATE(2598)] = 37823, - [SMALL_STATE(2599)] = 37866, - [SMALL_STATE(2600)] = 37941, - [SMALL_STATE(2601)] = 37990, - [SMALL_STATE(2602)] = 38033, - [SMALL_STATE(2603)] = 38076, - [SMALL_STATE(2604)] = 38119, - [SMALL_STATE(2605)] = 38162, - [SMALL_STATE(2606)] = 38205, - [SMALL_STATE(2607)] = 38248, - [SMALL_STATE(2608)] = 38323, - [SMALL_STATE(2609)] = 38398, - [SMALL_STATE(2610)] = 38477, - [SMALL_STATE(2611)] = 38552, - [SMALL_STATE(2612)] = 38595, - [SMALL_STATE(2613)] = 38638, - [SMALL_STATE(2614)] = 38681, - [SMALL_STATE(2615)] = 38724, - [SMALL_STATE(2616)] = 38803, - [SMALL_STATE(2617)] = 38846, - [SMALL_STATE(2618)] = 38889, - [SMALL_STATE(2619)] = 38932, - [SMALL_STATE(2620)] = 39007, - [SMALL_STATE(2621)] = 39050, - [SMALL_STATE(2622)] = 39093, - [SMALL_STATE(2623)] = 39172, - [SMALL_STATE(2624)] = 39215, - [SMALL_STATE(2625)] = 39258, - [SMALL_STATE(2626)] = 39301, - [SMALL_STATE(2627)] = 39344, - [SMALL_STATE(2628)] = 39387, - [SMALL_STATE(2629)] = 39435, - [SMALL_STATE(2630)] = 39483, - [SMALL_STATE(2631)] = 39527, - [SMALL_STATE(2632)] = 39573, - [SMALL_STATE(2633)] = 39625, - [SMALL_STATE(2634)] = 39677, - [SMALL_STATE(2635)] = 39721, - [SMALL_STATE(2636)] = 39765, - [SMALL_STATE(2637)] = 39817, - [SMALL_STATE(2638)] = 39869, - [SMALL_STATE(2639)] = 39916, - [SMALL_STATE(2640)] = 39963, - [SMALL_STATE(2641)] = 40014, - [SMALL_STATE(2642)] = 40055, - [SMALL_STATE(2643)] = 40124, - [SMALL_STATE(2644)] = 40193, - [SMALL_STATE(2645)] = 40240, - [SMALL_STATE(2646)] = 40291, - [SMALL_STATE(2647)] = 40334, - [SMALL_STATE(2648)] = 40403, - [SMALL_STATE(2649)] = 40472, - [SMALL_STATE(2650)] = 40519, - [SMALL_STATE(2651)] = 40588, - [SMALL_STATE(2652)] = 40657, - [SMALL_STATE(2653)] = 40698, - [SMALL_STATE(2654)] = 40749, - [SMALL_STATE(2655)] = 40818, - [SMALL_STATE(2656)] = 40887, - [SMALL_STATE(2657)] = 40938, - [SMALL_STATE(2658)] = 40978, - [SMALL_STATE(2659)] = 41018, - [SMALL_STATE(2660)] = 41058, - [SMALL_STATE(2661)] = 41098, - [SMALL_STATE(2662)] = 41176, - [SMALL_STATE(2663)] = 41216, - [SMALL_STATE(2664)] = 41262, - [SMALL_STATE(2665)] = 41308, - [SMALL_STATE(2666)] = 41348, - [SMALL_STATE(2667)] = 41394, - [SMALL_STATE(2668)] = 41434, - [SMALL_STATE(2669)] = 41474, - [SMALL_STATE(2670)] = 41520, - [SMALL_STATE(2671)] = 41572, - [SMALL_STATE(2672)] = 41612, - [SMALL_STATE(2673)] = 41652, - [SMALL_STATE(2674)] = 41702, - [SMALL_STATE(2675)] = 41742, - [SMALL_STATE(2676)] = 41782, - [SMALL_STATE(2677)] = 41832, - [SMALL_STATE(2678)] = 41872, - [SMALL_STATE(2679)] = 41912, - [SMALL_STATE(2680)] = 41962, - [SMALL_STATE(2681)] = 42014, - [SMALL_STATE(2682)] = 42054, - [SMALL_STATE(2683)] = 42094, - [SMALL_STATE(2684)] = 42134, - [SMALL_STATE(2685)] = 42184, - [SMALL_STATE(2686)] = 42236, - [SMALL_STATE(2687)] = 42276, - [SMALL_STATE(2688)] = 42322, - [SMALL_STATE(2689)] = 42362, - [SMALL_STATE(2690)] = 42402, - [SMALL_STATE(2691)] = 42448, - [SMALL_STATE(2692)] = 42498, - [SMALL_STATE(2693)] = 42538, - [SMALL_STATE(2694)] = 42588, - [SMALL_STATE(2695)] = 42649, - [SMALL_STATE(2696)] = 42694, - [SMALL_STATE(2697)] = 42749, - [SMALL_STATE(2698)] = 42808, - [SMALL_STATE(2699)] = 42853, - [SMALL_STATE(2700)] = 42912, - [SMALL_STATE(2701)] = 42957, - [SMALL_STATE(2702)] = 43016, - [SMALL_STATE(2703)] = 43093, - [SMALL_STATE(2704)] = 43138, - [SMALL_STATE(2705)] = 43207, - [SMALL_STATE(2706)] = 43266, - [SMALL_STATE(2707)] = 43331, - [SMALL_STATE(2708)] = 43394, - [SMALL_STATE(2709)] = 43467, - [SMALL_STATE(2710)] = 43528, - [SMALL_STATE(2711)] = 43571, - [SMALL_STATE(2712)] = 43644, - [SMALL_STATE(2713)] = 43727, - [SMALL_STATE(2714)] = 43772, - [SMALL_STATE(2715)] = 43845, - [SMALL_STATE(2716)] = 43918, - [SMALL_STATE(2717)] = 43987, - [SMALL_STATE(2718)] = 44032, - [SMALL_STATE(2719)] = 44099, - [SMALL_STATE(2720)] = 44170, - [SMALL_STATE(2721)] = 44227, - [SMALL_STATE(2722)] = 44302, - [SMALL_STATE(2723)] = 44360, - [SMALL_STATE(2724)] = 44418, - [SMALL_STATE(2725)] = 44498, - [SMALL_STATE(2726)] = 44558, - [SMALL_STATE(2727)] = 44632, - [SMALL_STATE(2728)] = 44706, - [SMALL_STATE(2729)] = 44786, - [SMALL_STATE(2730)] = 44860, - [SMALL_STATE(2731)] = 44942, - [SMALL_STATE(2732)] = 45016, - [SMALL_STATE(2733)] = 45090, - [SMALL_STATE(2734)] = 45170, - [SMALL_STATE(2735)] = 45250, - [SMALL_STATE(2736)] = 45330, - [SMALL_STATE(2737)] = 45404, - [SMALL_STATE(2738)] = 45446, - [SMALL_STATE(2739)] = 45524, - [SMALL_STATE(2740)] = 45604, - [SMALL_STATE(2741)] = 45684, - [SMALL_STATE(2742)] = 45744, - [SMALL_STATE(2743)] = 45784, - [SMALL_STATE(2744)] = 45844, - [SMALL_STATE(2745)] = 45918, - [SMALL_STATE(2746)] = 45992, - [SMALL_STATE(2747)] = 46074, - [SMALL_STATE(2748)] = 46132, - [SMALL_STATE(2749)] = 46174, - [SMALL_STATE(2750)] = 46216, - [SMALL_STATE(2751)] = 46290, - [SMALL_STATE(2752)] = 46350, - [SMALL_STATE(2753)] = 46424, - [SMALL_STATE(2754)] = 46506, - [SMALL_STATE(2755)] = 46580, - [SMALL_STATE(2756)] = 46662, - [SMALL_STATE(2757)] = 46720, - [SMALL_STATE(2758)] = 46802, - [SMALL_STATE(2759)] = 46882, - [SMALL_STATE(2760)] = 46964, - [SMALL_STATE(2761)] = 47004, - [SMALL_STATE(2762)] = 47082, - [SMALL_STATE(2763)] = 47156, - [SMALL_STATE(2764)] = 47236, - [SMALL_STATE(2765)] = 47318, - [SMALL_STATE(2766)] = 47398, - [SMALL_STATE(2767)] = 47480, - [SMALL_STATE(2768)] = 47554, - [SMALL_STATE(2769)] = 47634, - [SMALL_STATE(2770)] = 47708, - [SMALL_STATE(2771)] = 47790, - [SMALL_STATE(2772)] = 47870, - [SMALL_STATE(2773)] = 47950, - [SMALL_STATE(2774)] = 48030, - [SMALL_STATE(2775)] = 48110, - [SMALL_STATE(2776)] = 48192, - [SMALL_STATE(2777)] = 48272, - [SMALL_STATE(2778)] = 48312, - [SMALL_STATE(2779)] = 48392, - [SMALL_STATE(2780)] = 48472, - [SMALL_STATE(2781)] = 48552, - [SMALL_STATE(2782)] = 48627, - [SMALL_STATE(2783)] = 48704, - [SMALL_STATE(2784)] = 48769, - [SMALL_STATE(2785)] = 48832, - [SMALL_STATE(2786)] = 48885, - [SMALL_STATE(2787)] = 48938, - [SMALL_STATE(2788)] = 49015, - [SMALL_STATE(2789)] = 49092, - [SMALL_STATE(2790)] = 49153, - [SMALL_STATE(2791)] = 49230, - [SMALL_STATE(2792)] = 49305, - [SMALL_STATE(2793)] = 49362, - [SMALL_STATE(2794)] = 49419, - [SMALL_STATE(2795)] = 49496, - [SMALL_STATE(2796)] = 49573, - [SMALL_STATE(2797)] = 49648, - [SMALL_STATE(2798)] = 49723, - [SMALL_STATE(2799)] = 49772, - [SMALL_STATE(2800)] = 49849, - [SMALL_STATE(2801)] = 49926, - [SMALL_STATE(2802)] = 49981, - [SMALL_STATE(2803)] = 50018, - [SMALL_STATE(2804)] = 50095, - [SMALL_STATE(2805)] = 50172, - [SMALL_STATE(2806)] = 50249, - [SMALL_STATE(2807)] = 50326, - [SMALL_STATE(2808)] = 50403, - [SMALL_STATE(2809)] = 50480, - [SMALL_STATE(2810)] = 50557, - [SMALL_STATE(2811)] = 50634, - [SMALL_STATE(2812)] = 50709, - [SMALL_STATE(2813)] = 50762, - [SMALL_STATE(2814)] = 50839, - [SMALL_STATE(2815)] = 50896, - [SMALL_STATE(2816)] = 50973, - [SMALL_STATE(2817)] = 51050, - [SMALL_STATE(2818)] = 51127, - [SMALL_STATE(2819)] = 51204, - [SMALL_STATE(2820)] = 51281, - [SMALL_STATE(2821)] = 51358, - [SMALL_STATE(2822)] = 51435, - [SMALL_STATE(2823)] = 51506, - [SMALL_STATE(2824)] = 51583, - [SMALL_STATE(2825)] = 51660, - [SMALL_STATE(2826)] = 51709, - [SMALL_STATE(2827)] = 51786, - [SMALL_STATE(2828)] = 51863, - [SMALL_STATE(2829)] = 51934, - [SMALL_STATE(2830)] = 52007, - [SMALL_STATE(2831)] = 52084, - [SMALL_STATE(2832)] = 52161, - [SMALL_STATE(2833)] = 52238, - [SMALL_STATE(2834)] = 52315, - [SMALL_STATE(2835)] = 52392, - [SMALL_STATE(2836)] = 52469, - [SMALL_STATE(2837)] = 52546, - [SMALL_STATE(2838)] = 52623, - [SMALL_STATE(2839)] = 52700, - [SMALL_STATE(2840)] = 52777, - [SMALL_STATE(2841)] = 52854, - [SMALL_STATE(2842)] = 52931, - [SMALL_STATE(2843)] = 53004, - [SMALL_STATE(2844)] = 53081, - [SMALL_STATE(2845)] = 53158, - [SMALL_STATE(2846)] = 53235, - [SMALL_STATE(2847)] = 53312, - [SMALL_STATE(2848)] = 53379, - [SMALL_STATE(2849)] = 53456, - [SMALL_STATE(2850)] = 53533, - [SMALL_STATE(2851)] = 53610, - [SMALL_STATE(2852)] = 53687, - [SMALL_STATE(2853)] = 53764, - [SMALL_STATE(2854)] = 53839, - [SMALL_STATE(2855)] = 53914, - [SMALL_STATE(2856)] = 53991, - [SMALL_STATE(2857)] = 54058, - [SMALL_STATE(2858)] = 54135, - [SMALL_STATE(2859)] = 54212, - [SMALL_STATE(2860)] = 54289, - [SMALL_STATE(2861)] = 54358, - [SMALL_STATE(2862)] = 54435, - [SMALL_STATE(2863)] = 54512, - [SMALL_STATE(2864)] = 54589, - [SMALL_STATE(2865)] = 54666, - [SMALL_STATE(2866)] = 54743, - [SMALL_STATE(2867)] = 54798, - [SMALL_STATE(2868)] = 54875, - [SMALL_STATE(2869)] = 54952, - [SMALL_STATE(2870)] = 55029, - [SMALL_STATE(2871)] = 55106, - [SMALL_STATE(2872)] = 55165, - [SMALL_STATE(2873)] = 55240, - [SMALL_STATE(2874)] = 55317, - [SMALL_STATE(2875)] = 55394, - [SMALL_STATE(2876)] = 55467, - [SMALL_STATE(2877)] = 55544, - [SMALL_STATE(2878)] = 55615, - [SMALL_STATE(2879)] = 55692, - [SMALL_STATE(2880)] = 55769, - [SMALL_STATE(2881)] = 55846, - [SMALL_STATE(2882)] = 55923, - [SMALL_STATE(2883)] = 55986, - [SMALL_STATE(2884)] = 56063, - [SMALL_STATE(2885)] = 56140, - [SMALL_STATE(2886)] = 56217, - [SMALL_STATE(2887)] = 56254, - [SMALL_STATE(2888)] = 56293, - [SMALL_STATE(2889)] = 56370, - [SMALL_STATE(2890)] = 56447, - [SMALL_STATE(2891)] = 56512, - [SMALL_STATE(2892)] = 56571, - [SMALL_STATE(2893)] = 56618, - [SMALL_STATE(2894)] = 56685, - [SMALL_STATE(2895)] = 56756, - [SMALL_STATE(2896)] = 56833, - [SMALL_STATE(2897)] = 56906, - [SMALL_STATE(2898)] = 56983, - [SMALL_STATE(2899)] = 57060, - [SMALL_STATE(2900)] = 57119, - [SMALL_STATE(2901)] = 57164, - [SMALL_STATE(2902)] = 57237, - [SMALL_STATE(2903)] = 57314, - [SMALL_STATE(2904)] = 57371, - [SMALL_STATE(2905)] = 57408, - [SMALL_STATE(2906)] = 57485, - [SMALL_STATE(2907)] = 57544, - [SMALL_STATE(2908)] = 57593, - [SMALL_STATE(2909)] = 57670, - [SMALL_STATE(2910)] = 57745, - [SMALL_STATE(2911)] = 57798, - [SMALL_STATE(2912)] = 57875, - [SMALL_STATE(2913)] = 57912, - [SMALL_STATE(2914)] = 57989, - [SMALL_STATE(2915)] = 58066, - [SMALL_STATE(2916)] = 58103, - [SMALL_STATE(2917)] = 58178, - [SMALL_STATE(2918)] = 58255, - [SMALL_STATE(2919)] = 58332, - [SMALL_STATE(2920)] = 58409, - [SMALL_STATE(2921)] = 58478, - [SMALL_STATE(2922)] = 58547, - [SMALL_STATE(2923)] = 58594, - [SMALL_STATE(2924)] = 58671, - [SMALL_STATE(2925)] = 58742, - [SMALL_STATE(2926)] = 58795, - [SMALL_STATE(2927)] = 58863, - [SMALL_STATE(2928)] = 58937, - [SMALL_STATE(2929)] = 59005, - [SMALL_STATE(2930)] = 59073, - [SMALL_STATE(2931)] = 59141, - [SMALL_STATE(2932)] = 59209, - [SMALL_STATE(2933)] = 59283, - [SMALL_STATE(2934)] = 59351, - [SMALL_STATE(2935)] = 59419, - [SMALL_STATE(2936)] = 59487, - [SMALL_STATE(2937)] = 59555, - [SMALL_STATE(2938)] = 59591, - [SMALL_STATE(2939)] = 59665, - [SMALL_STATE(2940)] = 59733, - [SMALL_STATE(2941)] = 59807, - [SMALL_STATE(2942)] = 59873, - [SMALL_STATE(2943)] = 59947, - [SMALL_STATE(2944)] = 60021, - [SMALL_STATE(2945)] = 60087, - [SMALL_STATE(2946)] = 60161, - [SMALL_STATE(2947)] = 60235, - [SMALL_STATE(2948)] = 60309, - [SMALL_STATE(2949)] = 60345, - [SMALL_STATE(2950)] = 60381, - [SMALL_STATE(2951)] = 60455, - [SMALL_STATE(2952)] = 60529, - [SMALL_STATE(2953)] = 60603, - [SMALL_STATE(2954)] = 60657, - [SMALL_STATE(2955)] = 60731, - [SMALL_STATE(2956)] = 60797, - [SMALL_STATE(2957)] = 60863, - [SMALL_STATE(2958)] = 60937, - [SMALL_STATE(2959)] = 61005, - [SMALL_STATE(2960)] = 61079, - [SMALL_STATE(2961)] = 61147, - [SMALL_STATE(2962)] = 61215, - [SMALL_STATE(2963)] = 61283, - [SMALL_STATE(2964)] = 61357, - [SMALL_STATE(2965)] = 61425, - [SMALL_STATE(2966)] = 61461, - [SMALL_STATE(2967)] = 61497, - [SMALL_STATE(2968)] = 61533, - [SMALL_STATE(2969)] = 61599, - [SMALL_STATE(2970)] = 61635, - [SMALL_STATE(2971)] = 61671, - [SMALL_STATE(2972)] = 61737, - [SMALL_STATE(2973)] = 61803, - [SMALL_STATE(2974)] = 61839, - [SMALL_STATE(2975)] = 61909, - [SMALL_STATE(2976)] = 61977, - [SMALL_STATE(2977)] = 62051, - [SMALL_STATE(2978)] = 62125, - [SMALL_STATE(2979)] = 62193, - [SMALL_STATE(2980)] = 62261, - [SMALL_STATE(2981)] = 62329, - [SMALL_STATE(2982)] = 62401, - [SMALL_STATE(2983)] = 62475, - [SMALL_STATE(2984)] = 62543, - [SMALL_STATE(2985)] = 62611, - [SMALL_STATE(2986)] = 62685, - [SMALL_STATE(2987)] = 62737, - [SMALL_STATE(2988)] = 62803, - [SMALL_STATE(2989)] = 62871, - [SMALL_STATE(2990)] = 62923, - [SMALL_STATE(2991)] = 62997, - [SMALL_STATE(2992)] = 63033, - [SMALL_STATE(2993)] = 63099, - [SMALL_STATE(2994)] = 63165, - [SMALL_STATE(2995)] = 63239, - [SMALL_STATE(2996)] = 63313, - [SMALL_STATE(2997)] = 63387, - [SMALL_STATE(2998)] = 63455, - [SMALL_STATE(2999)] = 63529, - [SMALL_STATE(3000)] = 63603, - [SMALL_STATE(3001)] = 63667, - [SMALL_STATE(3002)] = 63741, - [SMALL_STATE(3003)] = 63803, - [SMALL_STATE(3004)] = 63869, - [SMALL_STATE(3005)] = 63943, - [SMALL_STATE(3006)] = 64003, - [SMALL_STATE(3007)] = 64077, - [SMALL_STATE(3008)] = 64113, - [SMALL_STATE(3009)] = 64169, - [SMALL_STATE(3010)] = 64243, - [SMALL_STATE(3011)] = 64317, - [SMALL_STATE(3012)] = 64385, - [SMALL_STATE(3013)] = 64439, - [SMALL_STATE(3014)] = 64505, - [SMALL_STATE(3015)] = 64573, - [SMALL_STATE(3016)] = 64639, - [SMALL_STATE(3017)] = 64713, - [SMALL_STATE(3018)] = 64781, - [SMALL_STATE(3019)] = 64817, - [SMALL_STATE(3020)] = 64853, - [SMALL_STATE(3021)] = 64919, - [SMALL_STATE(3022)] = 64993, - [SMALL_STATE(3023)] = 65045, - [SMALL_STATE(3024)] = 65113, - [SMALL_STATE(3025)] = 65187, - [SMALL_STATE(3026)] = 65235, - [SMALL_STATE(3027)] = 65309, - [SMALL_STATE(3028)] = 65379, - [SMALL_STATE(3029)] = 65453, - [SMALL_STATE(3030)] = 65523, - [SMALL_STATE(3031)] = 65597, - [SMALL_STATE(3032)] = 65671, - [SMALL_STATE(3033)] = 65745, - [SMALL_STATE(3034)] = 65793, - [SMALL_STATE(3035)] = 65867, - [SMALL_STATE(3036)] = 65941, - [SMALL_STATE(3037)] = 66009, - [SMALL_STATE(3038)] = 66083, - [SMALL_STATE(3039)] = 66157, - [SMALL_STATE(3040)] = 66225, - [SMALL_STATE(3041)] = 66277, - [SMALL_STATE(3042)] = 66351, - [SMALL_STATE(3043)] = 66425, - [SMALL_STATE(3044)] = 66499, - [SMALL_STATE(3045)] = 66553, - [SMALL_STATE(3046)] = 66589, - [SMALL_STATE(3047)] = 66657, - [SMALL_STATE(3048)] = 66693, - [SMALL_STATE(3049)] = 66761, - [SMALL_STATE(3050)] = 66835, - [SMALL_STATE(3051)] = 66871, - [SMALL_STATE(3052)] = 66945, - [SMALL_STATE(3053)] = 66997, - [SMALL_STATE(3054)] = 67065, - [SMALL_STATE(3055)] = 67139, - [SMALL_STATE(3056)] = 67213, - [SMALL_STATE(3057)] = 67287, - [SMALL_STATE(3058)] = 67361, - [SMALL_STATE(3059)] = 67427, - [SMALL_STATE(3060)] = 67493, - [SMALL_STATE(3061)] = 67559, - [SMALL_STATE(3062)] = 67633, - [SMALL_STATE(3063)] = 67699, - [SMALL_STATE(3064)] = 67773, - [SMALL_STATE(3065)] = 67847, - [SMALL_STATE(3066)] = 67921, - [SMALL_STATE(3067)] = 67995, - [SMALL_STATE(3068)] = 68063, - [SMALL_STATE(3069)] = 68099, - [SMALL_STATE(3070)] = 68173, - [SMALL_STATE(3071)] = 68241, - [SMALL_STATE(3072)] = 68315, - [SMALL_STATE(3073)] = 68389, - [SMALL_STATE(3074)] = 68463, - [SMALL_STATE(3075)] = 68499, - [SMALL_STATE(3076)] = 68573, - [SMALL_STATE(3077)] = 68641, - [SMALL_STATE(3078)] = 68715, - [SMALL_STATE(3079)] = 68789, - [SMALL_STATE(3080)] = 68825, - [SMALL_STATE(3081)] = 68891, - [SMALL_STATE(3082)] = 68965, - [SMALL_STATE(3083)] = 69031, - [SMALL_STATE(3084)] = 69099, - [SMALL_STATE(3085)] = 69173, - [SMALL_STATE(3086)] = 69247, - [SMALL_STATE(3087)] = 69317, - [SMALL_STATE(3088)] = 69391, - [SMALL_STATE(3089)] = 69427, - [SMALL_STATE(3090)] = 69493, - [SMALL_STATE(3091)] = 69547, - [SMALL_STATE(3092)] = 69583, - [SMALL_STATE(3093)] = 69657, - [SMALL_STATE(3094)] = 69731, - [SMALL_STATE(3095)] = 69805, - [SMALL_STATE(3096)] = 69871, - [SMALL_STATE(3097)] = 69927, - [SMALL_STATE(3098)] = 69973, - [SMALL_STATE(3099)] = 70047, - [SMALL_STATE(3100)] = 70083, - [SMALL_STATE(3101)] = 70157, - [SMALL_STATE(3102)] = 70225, - [SMALL_STATE(3103)] = 70299, - [SMALL_STATE(3104)] = 70367, - [SMALL_STATE(3105)] = 70441, - [SMALL_STATE(3106)] = 70495, - [SMALL_STATE(3107)] = 70569, - [SMALL_STATE(3108)] = 70605, - [SMALL_STATE(3109)] = 70653, - [SMALL_STATE(3110)] = 70699, - [SMALL_STATE(3111)] = 70753, - [SMALL_STATE(3112)] = 70789, - [SMALL_STATE(3113)] = 70857, - [SMALL_STATE(3114)] = 70931, - [SMALL_STATE(3115)] = 71005, - [SMALL_STATE(3116)] = 71041, - [SMALL_STATE(3117)] = 71115, - [SMALL_STATE(3118)] = 71151, - [SMALL_STATE(3119)] = 71225, - [SMALL_STATE(3120)] = 71299, - [SMALL_STATE(3121)] = 71373, - [SMALL_STATE(3122)] = 71447, - [SMALL_STATE(3123)] = 71521, - [SMALL_STATE(3124)] = 71595, - [SMALL_STATE(3125)] = 71663, - [SMALL_STATE(3126)] = 71737, - [SMALL_STATE(3127)] = 71811, - [SMALL_STATE(3128)] = 71879, - [SMALL_STATE(3129)] = 71953, - [SMALL_STATE(3130)] = 72021, - [SMALL_STATE(3131)] = 72095, - [SMALL_STATE(3132)] = 72169, - [SMALL_STATE(3133)] = 72237, - [SMALL_STATE(3134)] = 72311, - [SMALL_STATE(3135)] = 72385, - [SMALL_STATE(3136)] = 72437, - [SMALL_STATE(3137)] = 72489, - [SMALL_STATE(3138)] = 72557, - [SMALL_STATE(3139)] = 72625, - [SMALL_STATE(3140)] = 72678, - [SMALL_STATE(3141)] = 72731, - [SMALL_STATE(3142)] = 72788, - [SMALL_STATE(3143)] = 72841, - [SMALL_STATE(3144)] = 72896, - [SMALL_STATE(3145)] = 72959, - [SMALL_STATE(3146)] = 73010, - [SMALL_STATE(3147)] = 73073, - [SMALL_STATE(3148)] = 73136, - [SMALL_STATE(3149)] = 73199, - [SMALL_STATE(3150)] = 73252, - [SMALL_STATE(3151)] = 73315, - [SMALL_STATE(3152)] = 73378, - [SMALL_STATE(3153)] = 73435, - [SMALL_STATE(3154)] = 73492, - [SMALL_STATE(3155)] = 73547, - [SMALL_STATE(3156)] = 73610, - [SMALL_STATE(3157)] = 73673, - [SMALL_STATE(3158)] = 73730, - [SMALL_STATE(3159)] = 73783, - [SMALL_STATE(3160)] = 73846, - [SMALL_STATE(3161)] = 73899, - [SMALL_STATE(3162)] = 73962, - [SMALL_STATE(3163)] = 74015, - [SMALL_STATE(3164)] = 74078, - [SMALL_STATE(3165)] = 74141, - [SMALL_STATE(3166)] = 74204, - [SMALL_STATE(3167)] = 74257, - [SMALL_STATE(3168)] = 74320, - [SMALL_STATE(3169)] = 74371, - [SMALL_STATE(3170)] = 74424, - [SMALL_STATE(3171)] = 74487, - [SMALL_STATE(3172)] = 74550, - [SMALL_STATE(3173)] = 74585, - [SMALL_STATE(3174)] = 74642, - [SMALL_STATE(3175)] = 74705, - [SMALL_STATE(3176)] = 74758, - [SMALL_STATE(3177)] = 74815, - [SMALL_STATE(3178)] = 74864, - [SMALL_STATE(3179)] = 74915, - [SMALL_STATE(3180)] = 74967, - [SMALL_STATE(3181)] = 75019, - [SMALL_STATE(3182)] = 75071, - [SMALL_STATE(3183)] = 75123, - [SMALL_STATE(3184)] = 75171, - [SMALL_STATE(3185)] = 75223, - [SMALL_STATE(3186)] = 75275, - [SMALL_STATE(3187)] = 75327, - [SMALL_STATE(3188)] = 75379, - [SMALL_STATE(3189)] = 75431, - [SMALL_STATE(3190)] = 75483, - [SMALL_STATE(3191)] = 75535, - [SMALL_STATE(3192)] = 75586, - [SMALL_STATE(3193)] = 75625, - [SMALL_STATE(3194)] = 75666, - [SMALL_STATE(3195)] = 75717, - [SMALL_STATE(3196)] = 75770, - [SMALL_STATE(3197)] = 75823, - [SMALL_STATE(3198)] = 75876, - [SMALL_STATE(3199)] = 75927, - [SMALL_STATE(3200)] = 75968, - [SMALL_STATE(3201)] = 76009, - [SMALL_STATE(3202)] = 76058, - [SMALL_STATE(3203)] = 76103, - [SMALL_STATE(3204)] = 76152, - [SMALL_STATE(3205)] = 76189, - [SMALL_STATE(3206)] = 76242, - [SMALL_STATE(3207)] = 76293, - [SMALL_STATE(3208)] = 76346, - [SMALL_STATE(3209)] = 76395, - [SMALL_STATE(3210)] = 76448, - [SMALL_STATE(3211)] = 76486, - [SMALL_STATE(3212)] = 76518, - [SMALL_STATE(3213)] = 76554, - [SMALL_STATE(3214)] = 76586, - [SMALL_STATE(3215)] = 76636, - [SMALL_STATE(3216)] = 76674, - [SMALL_STATE(3217)] = 76724, - [SMALL_STATE(3218)] = 76774, - [SMALL_STATE(3219)] = 76824, - [SMALL_STATE(3220)] = 76862, - [SMALL_STATE(3221)] = 76894, - [SMALL_STATE(3222)] = 76944, - [SMALL_STATE(3223)] = 76975, - [SMALL_STATE(3224)] = 77006, - [SMALL_STATE(3225)] = 77057, - [SMALL_STATE(3226)] = 77088, - [SMALL_STATE(3227)] = 77119, - [SMALL_STATE(3228)] = 77150, - [SMALL_STATE(3229)] = 77201, - [SMALL_STATE(3230)] = 77232, - [SMALL_STATE(3231)] = 77263, - [SMALL_STATE(3232)] = 77294, - [SMALL_STATE(3233)] = 77353, - [SMALL_STATE(3234)] = 77384, - [SMALL_STATE(3235)] = 77435, - [SMALL_STATE(3236)] = 77494, - [SMALL_STATE(3237)] = 77545, - [SMALL_STATE(3238)] = 77578, - [SMALL_STATE(3239)] = 77609, - [SMALL_STATE(3240)] = 77640, - [SMALL_STATE(3241)] = 77691, - [SMALL_STATE(3242)] = 77722, - [SMALL_STATE(3243)] = 77753, - [SMALL_STATE(3244)] = 77784, - [SMALL_STATE(3245)] = 77835, - [SMALL_STATE(3246)] = 77866, - [SMALL_STATE(3247)] = 77897, - [SMALL_STATE(3248)] = 77946, - [SMALL_STATE(3249)] = 77981, - [SMALL_STATE(3250)] = 78012, - [SMALL_STATE(3251)] = 78071, - [SMALL_STATE(3252)] = 78122, - [SMALL_STATE(3253)] = 78153, - [SMALL_STATE(3254)] = 78184, - [SMALL_STATE(3255)] = 78235, - [SMALL_STATE(3256)] = 78286, - [SMALL_STATE(3257)] = 78317, - [SMALL_STATE(3258)] = 78368, - [SMALL_STATE(3259)] = 78419, - [SMALL_STATE(3260)] = 78470, - [SMALL_STATE(3261)] = 78521, - [SMALL_STATE(3262)] = 78552, - [SMALL_STATE(3263)] = 78601, - [SMALL_STATE(3264)] = 78650, - [SMALL_STATE(3265)] = 78701, - [SMALL_STATE(3266)] = 78750, - [SMALL_STATE(3267)] = 78796, - [SMALL_STATE(3268)] = 78832, - [SMALL_STATE(3269)] = 78864, - [SMALL_STATE(3270)] = 78896, - [SMALL_STATE(3271)] = 78942, - [SMALL_STATE(3272)] = 78978, - [SMALL_STATE(3273)] = 79024, - [SMALL_STATE(3274)] = 79070, - [SMALL_STATE(3275)] = 79116, - [SMALL_STATE(3276)] = 79162, - [SMALL_STATE(3277)] = 79208, - [SMALL_STATE(3278)] = 79242, - [SMALL_STATE(3279)] = 79272, - [SMALL_STATE(3280)] = 79318, - [SMALL_STATE(3281)] = 79348, - [SMALL_STATE(3282)] = 79382, - [SMALL_STATE(3283)] = 79418, - [SMALL_STATE(3284)] = 79454, - [SMALL_STATE(3285)] = 79500, - [SMALL_STATE(3286)] = 79546, - [SMALL_STATE(3287)] = 79592, - [SMALL_STATE(3288)] = 79638, - [SMALL_STATE(3289)] = 79674, - [SMALL_STATE(3290)] = 79709, - [SMALL_STATE(3291)] = 79744, - [SMALL_STATE(3292)] = 79799, - [SMALL_STATE(3293)] = 79834, - [SMALL_STATE(3294)] = 79889, - [SMALL_STATE(3295)] = 79924, - [SMALL_STATE(3296)] = 79973, - [SMALL_STATE(3297)] = 80008, - [SMALL_STATE(3298)] = 80041, - [SMALL_STATE(3299)] = 80076, - [SMALL_STATE(3300)] = 80111, - [SMALL_STATE(3301)] = 80146, - [SMALL_STATE(3302)] = 80181, - [SMALL_STATE(3303)] = 80216, - [SMALL_STATE(3304)] = 80259, - [SMALL_STATE(3305)] = 80294, - [SMALL_STATE(3306)] = 80343, - [SMALL_STATE(3307)] = 80378, - [SMALL_STATE(3308)] = 80413, - [SMALL_STATE(3309)] = 80448, - [SMALL_STATE(3310)] = 80483, - [SMALL_STATE(3311)] = 80518, - [SMALL_STATE(3312)] = 80553, - [SMALL_STATE(3313)] = 80596, - [SMALL_STATE(3314)] = 80636, - [SMALL_STATE(3315)] = 80676, - [SMALL_STATE(3316)] = 80704, - [SMALL_STATE(3317)] = 80732, - [SMALL_STATE(3318)] = 80760, - [SMALL_STATE(3319)] = 80800, - [SMALL_STATE(3320)] = 80828, - [SMALL_STATE(3321)] = 80868, - [SMALL_STATE(3322)] = 80896, - [SMALL_STATE(3323)] = 80924, - [SMALL_STATE(3324)] = 80964, - [SMALL_STATE(3325)] = 80992, - [SMALL_STATE(3326)] = 81020, - [SMALL_STATE(3327)] = 81066, - [SMALL_STATE(3328)] = 81106, - [SMALL_STATE(3329)] = 81142, - [SMALL_STATE(3330)] = 81182, - [SMALL_STATE(3331)] = 81222, - [SMALL_STATE(3332)] = 81262, - [SMALL_STATE(3333)] = 81290, - [SMALL_STATE(3334)] = 81330, - [SMALL_STATE(3335)] = 81378, - [SMALL_STATE(3336)] = 81406, - [SMALL_STATE(3337)] = 81446, - [SMALL_STATE(3338)] = 81486, - [SMALL_STATE(3339)] = 81516, - [SMALL_STATE(3340)] = 81544, - [SMALL_STATE(3341)] = 81584, - [SMALL_STATE(3342)] = 81628, - [SMALL_STATE(3343)] = 81672, - [SMALL_STATE(3344)] = 81700, - [SMALL_STATE(3345)] = 81740, - [SMALL_STATE(3346)] = 81774, - [SMALL_STATE(3347)] = 81814, - [SMALL_STATE(3348)] = 81842, - [SMALL_STATE(3349)] = 81870, - [SMALL_STATE(3350)] = 81914, - [SMALL_STATE(3351)] = 81946, - [SMALL_STATE(3352)] = 81986, - [SMALL_STATE(3353)] = 82014, - [SMALL_STATE(3354)] = 82054, - [SMALL_STATE(3355)] = 82104, - [SMALL_STATE(3356)] = 82144, - [SMALL_STATE(3357)] = 82172, - [SMALL_STATE(3358)] = 82218, - [SMALL_STATE(3359)] = 82258, - [SMALL_STATE(3360)] = 82292, - [SMALL_STATE(3361)] = 82326, - [SMALL_STATE(3362)] = 82366, - [SMALL_STATE(3363)] = 82408, - [SMALL_STATE(3364)] = 82448, - [SMALL_STATE(3365)] = 82488, - [SMALL_STATE(3366)] = 82532, - [SMALL_STATE(3367)] = 82572, - [SMALL_STATE(3368)] = 82612, - [SMALL_STATE(3369)] = 82652, - [SMALL_STATE(3370)] = 82692, - [SMALL_STATE(3371)] = 82720, - [SMALL_STATE(3372)] = 82760, - [SMALL_STATE(3373)] = 82800, - [SMALL_STATE(3374)] = 82840, - [SMALL_STATE(3375)] = 82880, - [SMALL_STATE(3376)] = 82920, - [SMALL_STATE(3377)] = 82960, - [SMALL_STATE(3378)] = 82988, - [SMALL_STATE(3379)] = 83016, - [SMALL_STATE(3380)] = 83050, - [SMALL_STATE(3381)] = 83094, - [SMALL_STATE(3382)] = 83128, - [SMALL_STATE(3383)] = 83168, - [SMALL_STATE(3384)] = 83196, - [SMALL_STATE(3385)] = 83236, - [SMALL_STATE(3386)] = 83276, - [SMALL_STATE(3387)] = 83310, - [SMALL_STATE(3388)] = 83344, - [SMALL_STATE(3389)] = 83371, - [SMALL_STATE(3390)] = 83398, - [SMALL_STATE(3391)] = 83443, - [SMALL_STATE(3392)] = 83470, - [SMALL_STATE(3393)] = 83515, - [SMALL_STATE(3394)] = 83564, - [SMALL_STATE(3395)] = 83605, - [SMALL_STATE(3396)] = 83632, - [SMALL_STATE(3397)] = 83677, - [SMALL_STATE(3398)] = 83704, - [SMALL_STATE(3399)] = 83733, - [SMALL_STATE(3400)] = 83760, - [SMALL_STATE(3401)] = 83787, - [SMALL_STATE(3402)] = 83814, - [SMALL_STATE(3403)] = 83855, - [SMALL_STATE(3404)] = 83900, - [SMALL_STATE(3405)] = 83927, - [SMALL_STATE(3406)] = 83972, - [SMALL_STATE(3407)] = 84017, - [SMALL_STATE(3408)] = 84066, - [SMALL_STATE(3409)] = 84111, - [SMALL_STATE(3410)] = 84156, - [SMALL_STATE(3411)] = 84197, - [SMALL_STATE(3412)] = 84240, - [SMALL_STATE(3413)] = 84281, - [SMALL_STATE(3414)] = 84320, - [SMALL_STATE(3415)] = 84357, - [SMALL_STATE(3416)] = 84392, - [SMALL_STATE(3417)] = 84425, - [SMALL_STATE(3418)] = 84456, - [SMALL_STATE(3419)] = 84501, - [SMALL_STATE(3420)] = 84528, - [SMALL_STATE(3421)] = 84573, - [SMALL_STATE(3422)] = 84605, - [SMALL_STATE(3423)] = 84637, - [SMALL_STATE(3424)] = 84671, - [SMALL_STATE(3425)] = 84705, - [SMALL_STATE(3426)] = 84737, - [SMALL_STATE(3427)] = 84771, - [SMALL_STATE(3428)] = 84805, - [SMALL_STATE(3429)] = 84837, - [SMALL_STATE(3430)] = 84869, - [SMALL_STATE(3431)] = 84901, - [SMALL_STATE(3432)] = 84952, - [SMALL_STATE(3433)] = 85003, - [SMALL_STATE(3434)] = 85054, - [SMALL_STATE(3435)] = 85095, - [SMALL_STATE(3436)] = 85146, - [SMALL_STATE(3437)] = 85197, - [SMALL_STATE(3438)] = 85248, - [SMALL_STATE(3439)] = 85289, - [SMALL_STATE(3440)] = 85340, - [SMALL_STATE(3441)] = 85391, - [SMALL_STATE(3442)] = 85442, - [SMALL_STATE(3443)] = 85473, - [SMALL_STATE(3444)] = 85514, - [SMALL_STATE(3445)] = 85543, - [SMALL_STATE(3446)] = 85594, - [SMALL_STATE(3447)] = 85645, - [SMALL_STATE(3448)] = 85696, - [SMALL_STATE(3449)] = 85749, - [SMALL_STATE(3450)] = 85800, - [SMALL_STATE(3451)] = 85851, - [SMALL_STATE(3452)] = 85902, - [SMALL_STATE(3453)] = 85955, - [SMALL_STATE(3454)] = 86008, - [SMALL_STATE(3455)] = 86059, - [SMALL_STATE(3456)] = 86100, - [SMALL_STATE(3457)] = 86152, - [SMALL_STATE(3458)] = 86204, - [SMALL_STATE(3459)] = 86232, - [SMALL_STATE(3460)] = 86260, - [SMALL_STATE(3461)] = 86288, - [SMALL_STATE(3462)] = 86316, - [SMALL_STATE(3463)] = 86342, - [SMALL_STATE(3464)] = 86394, - [SMALL_STATE(3465)] = 86439, - [SMALL_STATE(3466)] = 86484, - [SMALL_STATE(3467)] = 86531, - [SMALL_STATE(3468)] = 86576, - [SMALL_STATE(3469)] = 86621, - [SMALL_STATE(3470)] = 86666, - [SMALL_STATE(3471)] = 86711, - [SMALL_STATE(3472)] = 86748, - [SMALL_STATE(3473)] = 86793, - [SMALL_STATE(3474)] = 86830, - [SMALL_STATE(3475)] = 86875, - [SMALL_STATE(3476)] = 86902, - [SMALL_STATE(3477)] = 86947, - [SMALL_STATE(3478)] = 86992, - [SMALL_STATE(3479)] = 87023, - [SMALL_STATE(3480)] = 87068, - [SMALL_STATE(3481)] = 87113, - [SMALL_STATE(3482)] = 87150, - [SMALL_STATE(3483)] = 87187, - [SMALL_STATE(3484)] = 87232, - [SMALL_STATE(3485)] = 87277, - [SMALL_STATE(3486)] = 87322, - [SMALL_STATE(3487)] = 87367, - [SMALL_STATE(3488)] = 87412, - [SMALL_STATE(3489)] = 87457, - [SMALL_STATE(3490)] = 87502, - [SMALL_STATE(3491)] = 87539, - [SMALL_STATE(3492)] = 87576, - [SMALL_STATE(3493)] = 87621, - [SMALL_STATE(3494)] = 87666, - [SMALL_STATE(3495)] = 87711, - [SMALL_STATE(3496)] = 87756, - [SMALL_STATE(3497)] = 87793, - [SMALL_STATE(3498)] = 87838, - [SMALL_STATE(3499)] = 87883, - [SMALL_STATE(3500)] = 87920, - [SMALL_STATE(3501)] = 87947, - [SMALL_STATE(3502)] = 87984, - [SMALL_STATE(3503)] = 88029, - [SMALL_STATE(3504)] = 88075, - [SMALL_STATE(3505)] = 88109, - [SMALL_STATE(3506)] = 88155, - [SMALL_STATE(3507)] = 88197, - [SMALL_STATE(3508)] = 88237, - [SMALL_STATE(3509)] = 88277, - [SMALL_STATE(3510)] = 88319, - [SMALL_STATE(3511)] = 88359, - [SMALL_STATE(3512)] = 88405, - [SMALL_STATE(3513)] = 88439, - [SMALL_STATE(3514)] = 88473, - [SMALL_STATE(3515)] = 88515, - [SMALL_STATE(3516)] = 88557, - [SMALL_STATE(3517)] = 88585, - [SMALL_STATE(3518)] = 88627, - [SMALL_STATE(3519)] = 88669, - [SMALL_STATE(3520)] = 88711, - [SMALL_STATE(3521)] = 88739, - [SMALL_STATE(3522)] = 88781, - [SMALL_STATE(3523)] = 88827, - [SMALL_STATE(3524)] = 88869, - [SMALL_STATE(3525)] = 88915, - [SMALL_STATE(3526)] = 88949, - [SMALL_STATE(3527)] = 88991, - [SMALL_STATE(3528)] = 89033, - [SMALL_STATE(3529)] = 89075, - [SMALL_STATE(3530)] = 89117, - [SMALL_STATE(3531)] = 89157, - [SMALL_STATE(3532)] = 89191, - [SMALL_STATE(3533)] = 89237, - [SMALL_STATE(3534)] = 89283, - [SMALL_STATE(3535)] = 89329, - [SMALL_STATE(3536)] = 89375, - [SMALL_STATE(3537)] = 89421, - [SMALL_STATE(3538)] = 89455, - [SMALL_STATE(3539)] = 89496, - [SMALL_STATE(3540)] = 89521, - [SMALL_STATE(3541)] = 89560, - [SMALL_STATE(3542)] = 89599, - [SMALL_STATE(3543)] = 89634, - [SMALL_STATE(3544)] = 89667, - [SMALL_STATE(3545)] = 89700, - [SMALL_STATE(3546)] = 89739, - [SMALL_STATE(3547)] = 89780, - [SMALL_STATE(3548)] = 89813, - [SMALL_STATE(3549)] = 89846, - [SMALL_STATE(3550)] = 89873, - [SMALL_STATE(3551)] = 89906, - [SMALL_STATE(3552)] = 89933, - [SMALL_STATE(3553)] = 89974, - [SMALL_STATE(3554)] = 90015, - [SMALL_STATE(3555)] = 90048, - [SMALL_STATE(3556)] = 90081, - [SMALL_STATE(3557)] = 90116, - [SMALL_STATE(3558)] = 90149, - [SMALL_STATE(3559)] = 90182, - [SMALL_STATE(3560)] = 90215, - [SMALL_STATE(3561)] = 90256, - [SMALL_STATE(3562)] = 90295, - [SMALL_STATE(3563)] = 90330, - [SMALL_STATE(3564)] = 90369, - [SMALL_STATE(3565)] = 90402, - [SMALL_STATE(3566)] = 90438, - [SMALL_STATE(3567)] = 90474, - [SMALL_STATE(3568)] = 90510, - [SMALL_STATE(3569)] = 90546, - [SMALL_STATE(3570)] = 90582, - [SMALL_STATE(3571)] = 90602, - [SMALL_STATE(3572)] = 90622, - [SMALL_STATE(3573)] = 90642, - [SMALL_STATE(3574)] = 90662, - [SMALL_STATE(3575)] = 90682, - [SMALL_STATE(3576)] = 90718, - [SMALL_STATE(3577)] = 90738, - [SMALL_STATE(3578)] = 90758, - [SMALL_STATE(3579)] = 90794, - [SMALL_STATE(3580)] = 90830, - [SMALL_STATE(3581)] = 90866, - [SMALL_STATE(3582)] = 90902, - [SMALL_STATE(3583)] = 90938, - [SMALL_STATE(3584)] = 90974, - [SMALL_STATE(3585)] = 91010, - [SMALL_STATE(3586)] = 91046, - [SMALL_STATE(3587)] = 91066, - [SMALL_STATE(3588)] = 91102, - [SMALL_STATE(3589)] = 91122, - [SMALL_STATE(3590)] = 91156, - [SMALL_STATE(3591)] = 91178, - [SMALL_STATE(3592)] = 91200, - [SMALL_STATE(3593)] = 91222, - [SMALL_STATE(3594)] = 91258, - [SMALL_STATE(3595)] = 91290, - [SMALL_STATE(3596)] = 91326, - [SMALL_STATE(3597)] = 91362, - [SMALL_STATE(3598)] = 91391, - [SMALL_STATE(3599)] = 91418, - [SMALL_STATE(3600)] = 91447, - [SMALL_STATE(3601)] = 91476, - [SMALL_STATE(3602)] = 91507, - [SMALL_STATE(3603)] = 91536, - [SMALL_STATE(3604)] = 91565, - [SMALL_STATE(3605)] = 91594, - [SMALL_STATE(3606)] = 91613, - [SMALL_STATE(3607)] = 91638, - [SMALL_STATE(3608)] = 91671, - [SMALL_STATE(3609)] = 91698, - [SMALL_STATE(3610)] = 91727, - [SMALL_STATE(3611)] = 91752, - [SMALL_STATE(3612)] = 91781, - [SMALL_STATE(3613)] = 91806, - [SMALL_STATE(3614)] = 91839, - [SMALL_STATE(3615)] = 91860, - [SMALL_STATE(3616)] = 91893, - [SMALL_STATE(3617)] = 91926, - [SMALL_STATE(3618)] = 91953, - [SMALL_STATE(3619)] = 91982, - [SMALL_STATE(3620)] = 92005, - [SMALL_STATE(3621)] = 92032, - [SMALL_STATE(3622)] = 92061, - [SMALL_STATE(3623)] = 92092, - [SMALL_STATE(3624)] = 92115, - [SMALL_STATE(3625)] = 92144, - [SMALL_STATE(3626)] = 92173, - [SMALL_STATE(3627)] = 92206, - [SMALL_STATE(3628)] = 92233, - [SMALL_STATE(3629)] = 92260, - [SMALL_STATE(3630)] = 92293, - [SMALL_STATE(3631)] = 92324, - [SMALL_STATE(3632)] = 92355, - [SMALL_STATE(3633)] = 92382, - [SMALL_STATE(3634)] = 92411, - [SMALL_STATE(3635)] = 92438, - [SMALL_STATE(3636)] = 92465, - [SMALL_STATE(3637)] = 92496, - [SMALL_STATE(3638)] = 92525, - [SMALL_STATE(3639)] = 92558, - [SMALL_STATE(3640)] = 92591, - [SMALL_STATE(3641)] = 92622, - [SMALL_STATE(3642)] = 92649, - [SMALL_STATE(3643)] = 92682, - [SMALL_STATE(3644)] = 92713, - [SMALL_STATE(3645)] = 92744, - [SMALL_STATE(3646)] = 92777, - [SMALL_STATE(3647)] = 92810, - [SMALL_STATE(3648)] = 92839, - [SMALL_STATE(3649)] = 92866, - [SMALL_STATE(3650)] = 92895, - [SMALL_STATE(3651)] = 92928, - [SMALL_STATE(3652)] = 92957, - [SMALL_STATE(3653)] = 92990, - [SMALL_STATE(3654)] = 93011, - [SMALL_STATE(3655)] = 93040, - [SMALL_STATE(3656)] = 93073, - [SMALL_STATE(3657)] = 93105, - [SMALL_STATE(3658)] = 93137, - [SMALL_STATE(3659)] = 93169, - [SMALL_STATE(3660)] = 93191, - [SMALL_STATE(3661)] = 93221, - [SMALL_STATE(3662)] = 93245, - [SMALL_STATE(3663)] = 93263, - [SMALL_STATE(3664)] = 93287, - [SMALL_STATE(3665)] = 93309, - [SMALL_STATE(3666)] = 93327, - [SMALL_STATE(3667)] = 93351, - [SMALL_STATE(3668)] = 93383, - [SMALL_STATE(3669)] = 93415, - [SMALL_STATE(3670)] = 93441, - [SMALL_STATE(3671)] = 93467, - [SMALL_STATE(3672)] = 93493, - [SMALL_STATE(3673)] = 93519, - [SMALL_STATE(3674)] = 93551, - [SMALL_STATE(3675)] = 93581, - [SMALL_STATE(3676)] = 93613, - [SMALL_STATE(3677)] = 93637, - [SMALL_STATE(3678)] = 93655, - [SMALL_STATE(3679)] = 93673, - [SMALL_STATE(3680)] = 93691, - [SMALL_STATE(3681)] = 93709, - [SMALL_STATE(3682)] = 93727, - [SMALL_STATE(3683)] = 93751, - [SMALL_STATE(3684)] = 93769, - [SMALL_STATE(3685)] = 93795, - [SMALL_STATE(3686)] = 93825, - [SMALL_STATE(3687)] = 93843, - [SMALL_STATE(3688)] = 93873, - [SMALL_STATE(3689)] = 93891, - [SMALL_STATE(3690)] = 93917, - [SMALL_STATE(3691)] = 93935, - [SMALL_STATE(3692)] = 93967, - [SMALL_STATE(3693)] = 93985, - [SMALL_STATE(3694)] = 94017, - [SMALL_STATE(3695)] = 94049, - [SMALL_STATE(3696)] = 94081, - [SMALL_STATE(3697)] = 94107, - [SMALL_STATE(3698)] = 94131, - [SMALL_STATE(3699)] = 94161, - [SMALL_STATE(3700)] = 94179, - [SMALL_STATE(3701)] = 94211, - [SMALL_STATE(3702)] = 94243, - [SMALL_STATE(3703)] = 94269, - [SMALL_STATE(3704)] = 94287, - [SMALL_STATE(3705)] = 94311, - [SMALL_STATE(3706)] = 94335, - [SMALL_STATE(3707)] = 94365, - [SMALL_STATE(3708)] = 94397, - [SMALL_STATE(3709)] = 94423, - [SMALL_STATE(3710)] = 94455, - [SMALL_STATE(3711)] = 94485, - [SMALL_STATE(3712)] = 94503, - [SMALL_STATE(3713)] = 94529, - [SMALL_STATE(3714)] = 94561, - [SMALL_STATE(3715)] = 94583, - [SMALL_STATE(3716)] = 94601, - [SMALL_STATE(3717)] = 94623, - [SMALL_STATE(3718)] = 94647, - [SMALL_STATE(3719)] = 94679, - [SMALL_STATE(3720)] = 94711, - [SMALL_STATE(3721)] = 94729, - [SMALL_STATE(3722)] = 94759, - [SMALL_STATE(3723)] = 94780, - [SMALL_STATE(3724)] = 94807, - [SMALL_STATE(3725)] = 94834, - [SMALL_STATE(3726)] = 94851, - [SMALL_STATE(3727)] = 94878, - [SMALL_STATE(3728)] = 94893, - [SMALL_STATE(3729)] = 94908, - [SMALL_STATE(3730)] = 94923, - [SMALL_STATE(3731)] = 94952, - [SMALL_STATE(3732)] = 94969, - [SMALL_STATE(3733)] = 94998, - [SMALL_STATE(3734)] = 95015, - [SMALL_STATE(3735)] = 95032, - [SMALL_STATE(3736)] = 95061, - [SMALL_STATE(3737)] = 95090, - [SMALL_STATE(3738)] = 95115, - [SMALL_STATE(3739)] = 95132, - [SMALL_STATE(3740)] = 95161, - [SMALL_STATE(3741)] = 95190, - [SMALL_STATE(3742)] = 95219, - [SMALL_STATE(3743)] = 95244, - [SMALL_STATE(3744)] = 95269, - [SMALL_STATE(3745)] = 95298, - [SMALL_STATE(3746)] = 95313, - [SMALL_STATE(3747)] = 95330, - [SMALL_STATE(3748)] = 95359, - [SMALL_STATE(3749)] = 95376, - [SMALL_STATE(3750)] = 95405, - [SMALL_STATE(3751)] = 95428, - [SMALL_STATE(3752)] = 95457, - [SMALL_STATE(3753)] = 95482, - [SMALL_STATE(3754)] = 95497, - [SMALL_STATE(3755)] = 95512, - [SMALL_STATE(3756)] = 95541, - [SMALL_STATE(3757)] = 95562, - [SMALL_STATE(3758)] = 95583, - [SMALL_STATE(3759)] = 95612, - [SMALL_STATE(3760)] = 95635, - [SMALL_STATE(3761)] = 95664, - [SMALL_STATE(3762)] = 95683, - [SMALL_STATE(3763)] = 95712, - [SMALL_STATE(3764)] = 95737, - [SMALL_STATE(3765)] = 95752, - [SMALL_STATE(3766)] = 95771, - [SMALL_STATE(3767)] = 95786, - [SMALL_STATE(3768)] = 95805, - [SMALL_STATE(3769)] = 95828, - [SMALL_STATE(3770)] = 95843, - [SMALL_STATE(3771)] = 95864, - [SMALL_STATE(3772)] = 95889, - [SMALL_STATE(3773)] = 95918, - [SMALL_STATE(3774)] = 95943, - [SMALL_STATE(3775)] = 95958, - [SMALL_STATE(3776)] = 95973, - [SMALL_STATE(3777)] = 95988, - [SMALL_STATE(3778)] = 96013, - [SMALL_STATE(3779)] = 96038, - [SMALL_STATE(3780)] = 96065, - [SMALL_STATE(3781)] = 96094, - [SMALL_STATE(3782)] = 96109, - [SMALL_STATE(3783)] = 96124, - [SMALL_STATE(3784)] = 96147, - [SMALL_STATE(3785)] = 96167, - [SMALL_STATE(3786)] = 96193, - [SMALL_STATE(3787)] = 96213, - [SMALL_STATE(3788)] = 96233, - [SMALL_STATE(3789)] = 96249, - [SMALL_STATE(3790)] = 96265, - [SMALL_STATE(3791)] = 96281, - [SMALL_STATE(3792)] = 96297, - [SMALL_STATE(3793)] = 96313, - [SMALL_STATE(3794)] = 96329, - [SMALL_STATE(3795)] = 96345, - [SMALL_STATE(3796)] = 96361, - [SMALL_STATE(3797)] = 96377, - [SMALL_STATE(3798)] = 96393, - [SMALL_STATE(3799)] = 96409, - [SMALL_STATE(3800)] = 96435, - [SMALL_STATE(3801)] = 96463, - [SMALL_STATE(3802)] = 96483, - [SMALL_STATE(3803)] = 96503, - [SMALL_STATE(3804)] = 96519, - [SMALL_STATE(3805)] = 96535, - [SMALL_STATE(3806)] = 96551, - [SMALL_STATE(3807)] = 96567, - [SMALL_STATE(3808)] = 96583, - [SMALL_STATE(3809)] = 96599, - [SMALL_STATE(3810)] = 96615, - [SMALL_STATE(3811)] = 96635, - [SMALL_STATE(3812)] = 96651, - [SMALL_STATE(3813)] = 96667, - [SMALL_STATE(3814)] = 96683, - [SMALL_STATE(3815)] = 96699, - [SMALL_STATE(3816)] = 96715, - [SMALL_STATE(3817)] = 96731, - [SMALL_STATE(3818)] = 96747, - [SMALL_STATE(3819)] = 96763, - [SMALL_STATE(3820)] = 96779, - [SMALL_STATE(3821)] = 96795, - [SMALL_STATE(3822)] = 96821, - [SMALL_STATE(3823)] = 96837, - [SMALL_STATE(3824)] = 96853, - [SMALL_STATE(3825)] = 96869, - [SMALL_STATE(3826)] = 96885, - [SMALL_STATE(3827)] = 96901, - [SMALL_STATE(3828)] = 96917, - [SMALL_STATE(3829)] = 96933, - [SMALL_STATE(3830)] = 96959, - [SMALL_STATE(3831)] = 96975, - [SMALL_STATE(3832)] = 96991, - [SMALL_STATE(3833)] = 97007, - [SMALL_STATE(3834)] = 97023, - [SMALL_STATE(3835)] = 97039, - [SMALL_STATE(3836)] = 97055, - [SMALL_STATE(3837)] = 97071, - [SMALL_STATE(3838)] = 97097, - [SMALL_STATE(3839)] = 97125, - [SMALL_STATE(3840)] = 97143, - [SMALL_STATE(3841)] = 97159, - [SMALL_STATE(3842)] = 97185, - [SMALL_STATE(3843)] = 97201, - [SMALL_STATE(3844)] = 97227, - [SMALL_STATE(3845)] = 97253, - [SMALL_STATE(3846)] = 97281, - [SMALL_STATE(3847)] = 97297, - [SMALL_STATE(3848)] = 97317, - [SMALL_STATE(3849)] = 97333, - [SMALL_STATE(3850)] = 97349, - [SMALL_STATE(3851)] = 97365, - [SMALL_STATE(3852)] = 97381, - [SMALL_STATE(3853)] = 97397, - [SMALL_STATE(3854)] = 97423, - [SMALL_STATE(3855)] = 97439, - [SMALL_STATE(3856)] = 97465, - [SMALL_STATE(3857)] = 97481, - [SMALL_STATE(3858)] = 97497, - [SMALL_STATE(3859)] = 97523, - [SMALL_STATE(3860)] = 97539, - [SMALL_STATE(3861)] = 97555, - [SMALL_STATE(3862)] = 97581, - [SMALL_STATE(3863)] = 97605, - [SMALL_STATE(3864)] = 97621, - [SMALL_STATE(3865)] = 97637, - [SMALL_STATE(3866)] = 97657, - [SMALL_STATE(3867)] = 97681, - [SMALL_STATE(3868)] = 97707, - [SMALL_STATE(3869)] = 97733, - [SMALL_STATE(3870)] = 97757, - [SMALL_STATE(3871)] = 97783, - [SMALL_STATE(3872)] = 97809, - [SMALL_STATE(3873)] = 97825, - [SMALL_STATE(3874)] = 97848, - [SMALL_STATE(3875)] = 97867, - [SMALL_STATE(3876)] = 97890, - [SMALL_STATE(3877)] = 97915, - [SMALL_STATE(3878)] = 97938, - [SMALL_STATE(3879)] = 97963, - [SMALL_STATE(3880)] = 97982, - [SMALL_STATE(3881)] = 98005, - [SMALL_STATE(3882)] = 98030, - [SMALL_STATE(3883)] = 98053, - [SMALL_STATE(3884)] = 98076, - [SMALL_STATE(3885)] = 98099, - [SMALL_STATE(3886)] = 98118, - [SMALL_STATE(3887)] = 98141, - [SMALL_STATE(3888)] = 98164, - [SMALL_STATE(3889)] = 98189, - [SMALL_STATE(3890)] = 98212, - [SMALL_STATE(3891)] = 98235, - [SMALL_STATE(3892)] = 98258, - [SMALL_STATE(3893)] = 98281, - [SMALL_STATE(3894)] = 98300, - [SMALL_STATE(3895)] = 98323, - [SMALL_STATE(3896)] = 98348, - [SMALL_STATE(3897)] = 98371, - [SMALL_STATE(3898)] = 98396, - [SMALL_STATE(3899)] = 98419, - [SMALL_STATE(3900)] = 98442, - [SMALL_STATE(3901)] = 98465, - [SMALL_STATE(3902)] = 98484, - [SMALL_STATE(3903)] = 98509, - [SMALL_STATE(3904)] = 98532, - [SMALL_STATE(3905)] = 98551, - [SMALL_STATE(3906)] = 98574, - [SMALL_STATE(3907)] = 98597, - [SMALL_STATE(3908)] = 98620, - [SMALL_STATE(3909)] = 98645, - [SMALL_STATE(3910)] = 98670, - [SMALL_STATE(3911)] = 98693, - [SMALL_STATE(3912)] = 98716, - [SMALL_STATE(3913)] = 98741, - [SMALL_STATE(3914)] = 98764, - [SMALL_STATE(3915)] = 98783, - [SMALL_STATE(3916)] = 98806, - [SMALL_STATE(3917)] = 98829, - [SMALL_STATE(3918)] = 98852, - [SMALL_STATE(3919)] = 98877, - [SMALL_STATE(3920)] = 98900, - [SMALL_STATE(3921)] = 98921, - [SMALL_STATE(3922)] = 98942, - [SMALL_STATE(3923)] = 98965, - [SMALL_STATE(3924)] = 98990, - [SMALL_STATE(3925)] = 99008, - [SMALL_STATE(3926)] = 99022, - [SMALL_STATE(3927)] = 99040, - [SMALL_STATE(3928)] = 99054, - [SMALL_STATE(3929)] = 99072, - [SMALL_STATE(3930)] = 99086, - [SMALL_STATE(3931)] = 99104, - [SMALL_STATE(3932)] = 99122, - [SMALL_STATE(3933)] = 99140, - [SMALL_STATE(3934)] = 99158, - [SMALL_STATE(3935)] = 99176, - [SMALL_STATE(3936)] = 99194, - [SMALL_STATE(3937)] = 99212, - [SMALL_STATE(3938)] = 99230, - [SMALL_STATE(3939)] = 99244, - [SMALL_STATE(3940)] = 99262, - [SMALL_STATE(3941)] = 99280, - [SMALL_STATE(3942)] = 99298, - [SMALL_STATE(3943)] = 99316, - [SMALL_STATE(3944)] = 99334, - [SMALL_STATE(3945)] = 99352, - [SMALL_STATE(3946)] = 99370, - [SMALL_STATE(3947)] = 99384, - [SMALL_STATE(3948)] = 99398, - [SMALL_STATE(3949)] = 99416, - [SMALL_STATE(3950)] = 99430, - [SMALL_STATE(3951)] = 99448, - [SMALL_STATE(3952)] = 99462, - [SMALL_STATE(3953)] = 99480, - [SMALL_STATE(3954)] = 99496, - [SMALL_STATE(3955)] = 99514, - [SMALL_STATE(3956)] = 99532, - [SMALL_STATE(3957)] = 99550, - [SMALL_STATE(3958)] = 99564, - [SMALL_STATE(3959)] = 99582, - [SMALL_STATE(3960)] = 99596, - [SMALL_STATE(3961)] = 99610, - [SMALL_STATE(3962)] = 99624, - [SMALL_STATE(3963)] = 99642, - [SMALL_STATE(3964)] = 99660, - [SMALL_STATE(3965)] = 99678, - [SMALL_STATE(3966)] = 99692, - [SMALL_STATE(3967)] = 99710, - [SMALL_STATE(3968)] = 99730, - [SMALL_STATE(3969)] = 99748, - [SMALL_STATE(3970)] = 99766, - [SMALL_STATE(3971)] = 99783, - [SMALL_STATE(3972)] = 99800, - [SMALL_STATE(3973)] = 99817, - [SMALL_STATE(3974)] = 99830, - [SMALL_STATE(3975)] = 99845, - [SMALL_STATE(3976)] = 99862, - [SMALL_STATE(3977)] = 99879, - [SMALL_STATE(3978)] = 99898, - [SMALL_STATE(3979)] = 99917, - [SMALL_STATE(3980)] = 99932, - [SMALL_STATE(3981)] = 99949, - [SMALL_STATE(3982)] = 99966, - [SMALL_STATE(3983)] = 99979, - [SMALL_STATE(3984)] = 99998, - [SMALL_STATE(3985)] = 100015, - [SMALL_STATE(3986)] = 100032, - [SMALL_STATE(3987)] = 100049, - [SMALL_STATE(3988)] = 100066, - [SMALL_STATE(3989)] = 100083, - [SMALL_STATE(3990)] = 100100, - [SMALL_STATE(3991)] = 100117, - [SMALL_STATE(3992)] = 100134, - [SMALL_STATE(3993)] = 100153, - [SMALL_STATE(3994)] = 100172, - [SMALL_STATE(3995)] = 100185, - [SMALL_STATE(3996)] = 100202, - [SMALL_STATE(3997)] = 100221, - [SMALL_STATE(3998)] = 100240, - [SMALL_STATE(3999)] = 100257, - [SMALL_STATE(4000)] = 100274, - [SMALL_STATE(4001)] = 100291, - [SMALL_STATE(4002)] = 100307, - [SMALL_STATE(4003)] = 100323, - [SMALL_STATE(4004)] = 100339, - [SMALL_STATE(4005)] = 100355, - [SMALL_STATE(4006)] = 100371, - [SMALL_STATE(4007)] = 100387, - [SMALL_STATE(4008)] = 100401, - [SMALL_STATE(4009)] = 100417, - [SMALL_STATE(4010)] = 100433, - [SMALL_STATE(4011)] = 100447, - [SMALL_STATE(4012)] = 100463, - [SMALL_STATE(4013)] = 100479, - [SMALL_STATE(4014)] = 100495, - [SMALL_STATE(4015)] = 100511, - [SMALL_STATE(4016)] = 100527, - [SMALL_STATE(4017)] = 100543, - [SMALL_STATE(4018)] = 100559, - [SMALL_STATE(4019)] = 100571, - [SMALL_STATE(4020)] = 100587, - [SMALL_STATE(4021)] = 100603, - [SMALL_STATE(4022)] = 100619, - [SMALL_STATE(4023)] = 100635, - [SMALL_STATE(4024)] = 100651, - [SMALL_STATE(4025)] = 100667, - [SMALL_STATE(4026)] = 100681, - [SMALL_STATE(4027)] = 100697, - [SMALL_STATE(4028)] = 100713, - [SMALL_STATE(4029)] = 100729, - [SMALL_STATE(4030)] = 100745, - [SMALL_STATE(4031)] = 100761, - [SMALL_STATE(4032)] = 100771, - [SMALL_STATE(4033)] = 100787, - [SMALL_STATE(4034)] = 100799, - [SMALL_STATE(4035)] = 100815, - [SMALL_STATE(4036)] = 100831, - [SMALL_STATE(4037)] = 100841, - [SMALL_STATE(4038)] = 100857, - [SMALL_STATE(4039)] = 100873, - [SMALL_STATE(4040)] = 100889, - [SMALL_STATE(4041)] = 100905, - [SMALL_STATE(4042)] = 100921, - [SMALL_STATE(4043)] = 100937, - [SMALL_STATE(4044)] = 100947, - [SMALL_STATE(4045)] = 100963, - [SMALL_STATE(4046)] = 100979, - [SMALL_STATE(4047)] = 100995, - [SMALL_STATE(4048)] = 101009, - [SMALL_STATE(4049)] = 101025, - [SMALL_STATE(4050)] = 101041, - [SMALL_STATE(4051)] = 101057, - [SMALL_STATE(4052)] = 101073, - [SMALL_STATE(4053)] = 101089, - [SMALL_STATE(4054)] = 101105, - [SMALL_STATE(4055)] = 101121, - [SMALL_STATE(4056)] = 101137, - [SMALL_STATE(4057)] = 101153, - [SMALL_STATE(4058)] = 101169, - [SMALL_STATE(4059)] = 101185, - [SMALL_STATE(4060)] = 101201, - [SMALL_STATE(4061)] = 101217, - [SMALL_STATE(4062)] = 101233, - [SMALL_STATE(4063)] = 101249, - [SMALL_STATE(4064)] = 101265, - [SMALL_STATE(4065)] = 101281, - [SMALL_STATE(4066)] = 101297, - [SMALL_STATE(4067)] = 101313, - [SMALL_STATE(4068)] = 101329, - [SMALL_STATE(4069)] = 101345, - [SMALL_STATE(4070)] = 101361, - [SMALL_STATE(4071)] = 101377, - [SMALL_STATE(4072)] = 101393, - [SMALL_STATE(4073)] = 101409, - [SMALL_STATE(4074)] = 101419, - [SMALL_STATE(4075)] = 101435, - [SMALL_STATE(4076)] = 101451, - [SMALL_STATE(4077)] = 101467, - [SMALL_STATE(4078)] = 101483, - [SMALL_STATE(4079)] = 101499, - [SMALL_STATE(4080)] = 101515, - [SMALL_STATE(4081)] = 101531, - [SMALL_STATE(4082)] = 101547, - [SMALL_STATE(4083)] = 101563, - [SMALL_STATE(4084)] = 101579, - [SMALL_STATE(4085)] = 101595, - [SMALL_STATE(4086)] = 101611, - [SMALL_STATE(4087)] = 101627, - [SMALL_STATE(4088)] = 101643, - [SMALL_STATE(4089)] = 101659, - [SMALL_STATE(4090)] = 101675, - [SMALL_STATE(4091)] = 101691, - [SMALL_STATE(4092)] = 101707, - [SMALL_STATE(4093)] = 101723, - [SMALL_STATE(4094)] = 101739, - [SMALL_STATE(4095)] = 101755, - [SMALL_STATE(4096)] = 101771, - [SMALL_STATE(4097)] = 101787, - [SMALL_STATE(4098)] = 101797, - [SMALL_STATE(4099)] = 101813, - [SMALL_STATE(4100)] = 101829, - [SMALL_STATE(4101)] = 101839, - [SMALL_STATE(4102)] = 101855, - [SMALL_STATE(4103)] = 101865, - [SMALL_STATE(4104)] = 101881, - [SMALL_STATE(4105)] = 101897, - [SMALL_STATE(4106)] = 101913, - [SMALL_STATE(4107)] = 101929, - [SMALL_STATE(4108)] = 101945, - [SMALL_STATE(4109)] = 101961, - [SMALL_STATE(4110)] = 101977, - [SMALL_STATE(4111)] = 101993, - [SMALL_STATE(4112)] = 102007, - [SMALL_STATE(4113)] = 102023, - [SMALL_STATE(4114)] = 102037, - [SMALL_STATE(4115)] = 102053, - [SMALL_STATE(4116)] = 102069, - [SMALL_STATE(4117)] = 102081, - [SMALL_STATE(4118)] = 102097, - [SMALL_STATE(4119)] = 102113, - [SMALL_STATE(4120)] = 102129, - [SMALL_STATE(4121)] = 102145, - [SMALL_STATE(4122)] = 102159, - [SMALL_STATE(4123)] = 102175, - [SMALL_STATE(4124)] = 102191, - [SMALL_STATE(4125)] = 102207, - [SMALL_STATE(4126)] = 102223, - [SMALL_STATE(4127)] = 102239, - [SMALL_STATE(4128)] = 102255, - [SMALL_STATE(4129)] = 102271, - [SMALL_STATE(4130)] = 102287, - [SMALL_STATE(4131)] = 102303, - [SMALL_STATE(4132)] = 102319, - [SMALL_STATE(4133)] = 102335, - [SMALL_STATE(4134)] = 102351, - [SMALL_STATE(4135)] = 102367, - [SMALL_STATE(4136)] = 102383, - [SMALL_STATE(4137)] = 102399, - [SMALL_STATE(4138)] = 102415, - [SMALL_STATE(4139)] = 102431, - [SMALL_STATE(4140)] = 102447, - [SMALL_STATE(4141)] = 102463, - [SMALL_STATE(4142)] = 102479, - [SMALL_STATE(4143)] = 102495, - [SMALL_STATE(4144)] = 102511, - [SMALL_STATE(4145)] = 102527, - [SMALL_STATE(4146)] = 102543, - [SMALL_STATE(4147)] = 102559, - [SMALL_STATE(4148)] = 102575, - [SMALL_STATE(4149)] = 102591, - [SMALL_STATE(4150)] = 102607, - [SMALL_STATE(4151)] = 102623, - [SMALL_STATE(4152)] = 102639, - [SMALL_STATE(4153)] = 102655, - [SMALL_STATE(4154)] = 102671, - [SMALL_STATE(4155)] = 102687, - [SMALL_STATE(4156)] = 102703, - [SMALL_STATE(4157)] = 102719, - [SMALL_STATE(4158)] = 102735, - [SMALL_STATE(4159)] = 102751, - [SMALL_STATE(4160)] = 102767, - [SMALL_STATE(4161)] = 102783, - [SMALL_STATE(4162)] = 102799, - [SMALL_STATE(4163)] = 102815, - [SMALL_STATE(4164)] = 102831, - [SMALL_STATE(4165)] = 102847, - [SMALL_STATE(4166)] = 102863, - [SMALL_STATE(4167)] = 102879, - [SMALL_STATE(4168)] = 102895, - [SMALL_STATE(4169)] = 102911, - [SMALL_STATE(4170)] = 102925, - [SMALL_STATE(4171)] = 102939, - [SMALL_STATE(4172)] = 102955, - [SMALL_STATE(4173)] = 102971, - [SMALL_STATE(4174)] = 102987, - [SMALL_STATE(4175)] = 103003, - [SMALL_STATE(4176)] = 103019, - [SMALL_STATE(4177)] = 103035, - [SMALL_STATE(4178)] = 103051, - [SMALL_STATE(4179)] = 103067, - [SMALL_STATE(4180)] = 103083, - [SMALL_STATE(4181)] = 103099, - [SMALL_STATE(4182)] = 103115, - [SMALL_STATE(4183)] = 103131, - [SMALL_STATE(4184)] = 103147, - [SMALL_STATE(4185)] = 103163, - [SMALL_STATE(4186)] = 103179, - [SMALL_STATE(4187)] = 103190, - [SMALL_STATE(4188)] = 103203, - [SMALL_STATE(4189)] = 103212, - [SMALL_STATE(4190)] = 103225, - [SMALL_STATE(4191)] = 103238, - [SMALL_STATE(4192)] = 103251, - [SMALL_STATE(4193)] = 103264, - [SMALL_STATE(4194)] = 103277, - [SMALL_STATE(4195)] = 103290, - [SMALL_STATE(4196)] = 103303, - [SMALL_STATE(4197)] = 103314, - [SMALL_STATE(4198)] = 103327, - [SMALL_STATE(4199)] = 103340, - [SMALL_STATE(4200)] = 103349, - [SMALL_STATE(4201)] = 103360, - [SMALL_STATE(4202)] = 103373, - [SMALL_STATE(4203)] = 103386, - [SMALL_STATE(4204)] = 103399, - [SMALL_STATE(4205)] = 103410, - [SMALL_STATE(4206)] = 103423, - [SMALL_STATE(4207)] = 103432, - [SMALL_STATE(4208)] = 103441, - [SMALL_STATE(4209)] = 103450, - [SMALL_STATE(4210)] = 103463, - [SMALL_STATE(4211)] = 103476, - [SMALL_STATE(4212)] = 103489, - [SMALL_STATE(4213)] = 103502, - [SMALL_STATE(4214)] = 103515, - [SMALL_STATE(4215)] = 103524, - [SMALL_STATE(4216)] = 103533, - [SMALL_STATE(4217)] = 103546, - [SMALL_STATE(4218)] = 103557, - [SMALL_STATE(4219)] = 103570, - [SMALL_STATE(4220)] = 103583, - [SMALL_STATE(4221)] = 103596, - [SMALL_STATE(4222)] = 103607, - [SMALL_STATE(4223)] = 103620, - [SMALL_STATE(4224)] = 103633, - [SMALL_STATE(4225)] = 103646, - [SMALL_STATE(4226)] = 103659, - [SMALL_STATE(4227)] = 103672, - [SMALL_STATE(4228)] = 103685, - [SMALL_STATE(4229)] = 103698, - [SMALL_STATE(4230)] = 103711, - [SMALL_STATE(4231)] = 103724, - [SMALL_STATE(4232)] = 103737, - [SMALL_STATE(4233)] = 103750, - [SMALL_STATE(4234)] = 103763, - [SMALL_STATE(4235)] = 103776, - [SMALL_STATE(4236)] = 103789, - [SMALL_STATE(4237)] = 103802, - [SMALL_STATE(4238)] = 103815, - [SMALL_STATE(4239)] = 103826, - [SMALL_STATE(4240)] = 103839, - [SMALL_STATE(4241)] = 103852, - [SMALL_STATE(4242)] = 103865, - [SMALL_STATE(4243)] = 103874, - [SMALL_STATE(4244)] = 103883, - [SMALL_STATE(4245)] = 103894, - [SMALL_STATE(4246)] = 103907, - [SMALL_STATE(4247)] = 103920, - [SMALL_STATE(4248)] = 103933, - [SMALL_STATE(4249)] = 103946, - [SMALL_STATE(4250)] = 103959, - [SMALL_STATE(4251)] = 103972, - [SMALL_STATE(4252)] = 103985, - [SMALL_STATE(4253)] = 103994, - [SMALL_STATE(4254)] = 104007, - [SMALL_STATE(4255)] = 104020, - [SMALL_STATE(4256)] = 104031, - [SMALL_STATE(4257)] = 104044, - [SMALL_STATE(4258)] = 104057, - [SMALL_STATE(4259)] = 104070, - [SMALL_STATE(4260)] = 104083, - [SMALL_STATE(4261)] = 104096, - [SMALL_STATE(4262)] = 104109, - [SMALL_STATE(4263)] = 104122, - [SMALL_STATE(4264)] = 104135, - [SMALL_STATE(4265)] = 104148, - [SMALL_STATE(4266)] = 104161, - [SMALL_STATE(4267)] = 104174, - [SMALL_STATE(4268)] = 104187, - [SMALL_STATE(4269)] = 104200, - [SMALL_STATE(4270)] = 104213, - [SMALL_STATE(4271)] = 104226, - [SMALL_STATE(4272)] = 104239, - [SMALL_STATE(4273)] = 104252, - [SMALL_STATE(4274)] = 104265, - [SMALL_STATE(4275)] = 104278, - [SMALL_STATE(4276)] = 104291, - [SMALL_STATE(4277)] = 104304, - [SMALL_STATE(4278)] = 104317, - [SMALL_STATE(4279)] = 104330, - [SMALL_STATE(4280)] = 104343, - [SMALL_STATE(4281)] = 104356, - [SMALL_STATE(4282)] = 104369, - [SMALL_STATE(4283)] = 104382, - [SMALL_STATE(4284)] = 104395, - [SMALL_STATE(4285)] = 104408, - [SMALL_STATE(4286)] = 104421, - [SMALL_STATE(4287)] = 104434, - [SMALL_STATE(4288)] = 104445, - [SMALL_STATE(4289)] = 104458, - [SMALL_STATE(4290)] = 104471, - [SMALL_STATE(4291)] = 104484, - [SMALL_STATE(4292)] = 104497, - [SMALL_STATE(4293)] = 104508, - [SMALL_STATE(4294)] = 104521, - [SMALL_STATE(4295)] = 104534, - [SMALL_STATE(4296)] = 104547, - [SMALL_STATE(4297)] = 104560, - [SMALL_STATE(4298)] = 104573, - [SMALL_STATE(4299)] = 104586, - [SMALL_STATE(4300)] = 104599, - [SMALL_STATE(4301)] = 104612, - [SMALL_STATE(4302)] = 104625, - [SMALL_STATE(4303)] = 104638, - [SMALL_STATE(4304)] = 104651, - [SMALL_STATE(4305)] = 104664, - [SMALL_STATE(4306)] = 104677, - [SMALL_STATE(4307)] = 104690, - [SMALL_STATE(4308)] = 104703, - [SMALL_STATE(4309)] = 104716, - [SMALL_STATE(4310)] = 104729, - [SMALL_STATE(4311)] = 104742, - [SMALL_STATE(4312)] = 104755, - [SMALL_STATE(4313)] = 104768, - [SMALL_STATE(4314)] = 104781, - [SMALL_STATE(4315)] = 104794, - [SMALL_STATE(4316)] = 104807, - [SMALL_STATE(4317)] = 104820, - [SMALL_STATE(4318)] = 104833, - [SMALL_STATE(4319)] = 104846, - [SMALL_STATE(4320)] = 104859, - [SMALL_STATE(4321)] = 104872, - [SMALL_STATE(4322)] = 104885, - [SMALL_STATE(4323)] = 104898, - [SMALL_STATE(4324)] = 104911, - [SMALL_STATE(4325)] = 104924, - [SMALL_STATE(4326)] = 104937, - [SMALL_STATE(4327)] = 104950, - [SMALL_STATE(4328)] = 104963, - [SMALL_STATE(4329)] = 104976, - [SMALL_STATE(4330)] = 104989, - [SMALL_STATE(4331)] = 105002, - [SMALL_STATE(4332)] = 105015, - [SMALL_STATE(4333)] = 105028, - [SMALL_STATE(4334)] = 105041, - [SMALL_STATE(4335)] = 105054, - [SMALL_STATE(4336)] = 105067, - [SMALL_STATE(4337)] = 105080, - [SMALL_STATE(4338)] = 105093, - [SMALL_STATE(4339)] = 105106, - [SMALL_STATE(4340)] = 105119, - [SMALL_STATE(4341)] = 105132, - [SMALL_STATE(4342)] = 105145, - [SMALL_STATE(4343)] = 105158, - [SMALL_STATE(4344)] = 105169, - [SMALL_STATE(4345)] = 105182, - [SMALL_STATE(4346)] = 105195, - [SMALL_STATE(4347)] = 105208, - [SMALL_STATE(4348)] = 105221, - [SMALL_STATE(4349)] = 105234, - [SMALL_STATE(4350)] = 105247, - [SMALL_STATE(4351)] = 105260, - [SMALL_STATE(4352)] = 105273, - [SMALL_STATE(4353)] = 105286, - [SMALL_STATE(4354)] = 105299, - [SMALL_STATE(4355)] = 105310, - [SMALL_STATE(4356)] = 105323, - [SMALL_STATE(4357)] = 105336, - [SMALL_STATE(4358)] = 105349, - [SMALL_STATE(4359)] = 105362, - [SMALL_STATE(4360)] = 105375, - [SMALL_STATE(4361)] = 105388, - [SMALL_STATE(4362)] = 105401, - [SMALL_STATE(4363)] = 105414, - [SMALL_STATE(4364)] = 105427, - [SMALL_STATE(4365)] = 105440, - [SMALL_STATE(4366)] = 105453, - [SMALL_STATE(4367)] = 105466, - [SMALL_STATE(4368)] = 105479, - [SMALL_STATE(4369)] = 105492, - [SMALL_STATE(4370)] = 105505, - [SMALL_STATE(4371)] = 105518, - [SMALL_STATE(4372)] = 105531, - [SMALL_STATE(4373)] = 105544, - [SMALL_STATE(4374)] = 105557, - [SMALL_STATE(4375)] = 105570, - [SMALL_STATE(4376)] = 105583, - [SMALL_STATE(4377)] = 105596, - [SMALL_STATE(4378)] = 105609, - [SMALL_STATE(4379)] = 105622, - [SMALL_STATE(4380)] = 105635, - [SMALL_STATE(4381)] = 105648, - [SMALL_STATE(4382)] = 105661, - [SMALL_STATE(4383)] = 105674, - [SMALL_STATE(4384)] = 105687, - [SMALL_STATE(4385)] = 105700, - [SMALL_STATE(4386)] = 105713, - [SMALL_STATE(4387)] = 105726, - [SMALL_STATE(4388)] = 105739, - [SMALL_STATE(4389)] = 105750, - [SMALL_STATE(4390)] = 105763, - [SMALL_STATE(4391)] = 105776, - [SMALL_STATE(4392)] = 105789, - [SMALL_STATE(4393)] = 105802, - [SMALL_STATE(4394)] = 105811, - [SMALL_STATE(4395)] = 105824, - [SMALL_STATE(4396)] = 105837, - [SMALL_STATE(4397)] = 105850, - [SMALL_STATE(4398)] = 105863, - [SMALL_STATE(4399)] = 105876, - [SMALL_STATE(4400)] = 105885, - [SMALL_STATE(4401)] = 105898, - [SMALL_STATE(4402)] = 105911, - [SMALL_STATE(4403)] = 105922, - [SMALL_STATE(4404)] = 105935, - [SMALL_STATE(4405)] = 105948, - [SMALL_STATE(4406)] = 105961, - [SMALL_STATE(4407)] = 105974, - [SMALL_STATE(4408)] = 105987, - [SMALL_STATE(4409)] = 106000, - [SMALL_STATE(4410)] = 106013, - [SMALL_STATE(4411)] = 106026, - [SMALL_STATE(4412)] = 106039, - [SMALL_STATE(4413)] = 106052, - [SMALL_STATE(4414)] = 106065, - [SMALL_STATE(4415)] = 106078, - [SMALL_STATE(4416)] = 106091, - [SMALL_STATE(4417)] = 106104, - [SMALL_STATE(4418)] = 106117, - [SMALL_STATE(4419)] = 106130, - [SMALL_STATE(4420)] = 106143, - [SMALL_STATE(4421)] = 106156, - [SMALL_STATE(4422)] = 106169, - [SMALL_STATE(4423)] = 106182, - [SMALL_STATE(4424)] = 106195, - [SMALL_STATE(4425)] = 106208, - [SMALL_STATE(4426)] = 106221, - [SMALL_STATE(4427)] = 106234, - [SMALL_STATE(4428)] = 106247, - [SMALL_STATE(4429)] = 106260, - [SMALL_STATE(4430)] = 106273, - [SMALL_STATE(4431)] = 106286, - [SMALL_STATE(4432)] = 106299, - [SMALL_STATE(4433)] = 106312, - [SMALL_STATE(4434)] = 106325, - [SMALL_STATE(4435)] = 106338, - [SMALL_STATE(4436)] = 106351, - [SMALL_STATE(4437)] = 106364, - [SMALL_STATE(4438)] = 106377, - [SMALL_STATE(4439)] = 106390, - [SMALL_STATE(4440)] = 106403, - [SMALL_STATE(4441)] = 106416, - [SMALL_STATE(4442)] = 106429, - [SMALL_STATE(4443)] = 106439, - [SMALL_STATE(4444)] = 106449, - [SMALL_STATE(4445)] = 106459, - [SMALL_STATE(4446)] = 106469, - [SMALL_STATE(4447)] = 106479, - [SMALL_STATE(4448)] = 106489, - [SMALL_STATE(4449)] = 106497, - [SMALL_STATE(4450)] = 106507, - [SMALL_STATE(4451)] = 106515, - [SMALL_STATE(4452)] = 106525, - [SMALL_STATE(4453)] = 106533, - [SMALL_STATE(4454)] = 106541, - [SMALL_STATE(4455)] = 106549, - [SMALL_STATE(4456)] = 106557, - [SMALL_STATE(4457)] = 106565, - [SMALL_STATE(4458)] = 106575, - [SMALL_STATE(4459)] = 106585, - [SMALL_STATE(4460)] = 106595, - [SMALL_STATE(4461)] = 106605, - [SMALL_STATE(4462)] = 106615, - [SMALL_STATE(4463)] = 106625, - [SMALL_STATE(4464)] = 106635, - [SMALL_STATE(4465)] = 106645, - [SMALL_STATE(4466)] = 106655, - [SMALL_STATE(4467)] = 106665, - [SMALL_STATE(4468)] = 106675, - [SMALL_STATE(4469)] = 106685, - [SMALL_STATE(4470)] = 106695, - [SMALL_STATE(4471)] = 106705, - [SMALL_STATE(4472)] = 106715, - [SMALL_STATE(4473)] = 106723, - [SMALL_STATE(4474)] = 106733, - [SMALL_STATE(4475)] = 106741, - [SMALL_STATE(4476)] = 106749, - [SMALL_STATE(4477)] = 106759, - [SMALL_STATE(4478)] = 106769, - [SMALL_STATE(4479)] = 106779, - [SMALL_STATE(4480)] = 106789, - [SMALL_STATE(4481)] = 106797, - [SMALL_STATE(4482)] = 106805, - [SMALL_STATE(4483)] = 106815, - [SMALL_STATE(4484)] = 106823, - [SMALL_STATE(4485)] = 106831, - [SMALL_STATE(4486)] = 106839, - [SMALL_STATE(4487)] = 106849, - [SMALL_STATE(4488)] = 106857, - [SMALL_STATE(4489)] = 106867, - [SMALL_STATE(4490)] = 106875, - [SMALL_STATE(4491)] = 106885, - [SMALL_STATE(4492)] = 106895, - [SMALL_STATE(4493)] = 106903, - [SMALL_STATE(4494)] = 106913, - [SMALL_STATE(4495)] = 106923, - [SMALL_STATE(4496)] = 106933, - [SMALL_STATE(4497)] = 106943, - [SMALL_STATE(4498)] = 106951, - [SMALL_STATE(4499)] = 106961, - [SMALL_STATE(4500)] = 106969, - [SMALL_STATE(4501)] = 106977, - [SMALL_STATE(4502)] = 106987, - [SMALL_STATE(4503)] = 106997, - [SMALL_STATE(4504)] = 107007, - [SMALL_STATE(4505)] = 107017, - [SMALL_STATE(4506)] = 107027, - [SMALL_STATE(4507)] = 107037, - [SMALL_STATE(4508)] = 107047, - [SMALL_STATE(4509)] = 107057, - [SMALL_STATE(4510)] = 107067, - [SMALL_STATE(4511)] = 107077, - [SMALL_STATE(4512)] = 107087, - [SMALL_STATE(4513)] = 107097, - [SMALL_STATE(4514)] = 107105, - [SMALL_STATE(4515)] = 107115, - [SMALL_STATE(4516)] = 107125, - [SMALL_STATE(4517)] = 107135, - [SMALL_STATE(4518)] = 107145, - [SMALL_STATE(4519)] = 107153, - [SMALL_STATE(4520)] = 107163, - [SMALL_STATE(4521)] = 107171, - [SMALL_STATE(4522)] = 107179, - [SMALL_STATE(4523)] = 107189, - [SMALL_STATE(4524)] = 107199, - [SMALL_STATE(4525)] = 107209, - [SMALL_STATE(4526)] = 107217, - [SMALL_STATE(4527)] = 107227, - [SMALL_STATE(4528)] = 107237, - [SMALL_STATE(4529)] = 107245, - [SMALL_STATE(4530)] = 107255, - [SMALL_STATE(4531)] = 107265, - [SMALL_STATE(4532)] = 107273, - [SMALL_STATE(4533)] = 107281, - [SMALL_STATE(4534)] = 107291, - [SMALL_STATE(4535)] = 107299, - [SMALL_STATE(4536)] = 107309, - [SMALL_STATE(4537)] = 107319, - [SMALL_STATE(4538)] = 107329, - [SMALL_STATE(4539)] = 107337, - [SMALL_STATE(4540)] = 107345, - [SMALL_STATE(4541)] = 107353, - [SMALL_STATE(4542)] = 107363, - [SMALL_STATE(4543)] = 107373, - [SMALL_STATE(4544)] = 107381, - [SMALL_STATE(4545)] = 107391, - [SMALL_STATE(4546)] = 107401, - [SMALL_STATE(4547)] = 107411, - [SMALL_STATE(4548)] = 107419, - [SMALL_STATE(4549)] = 107427, - [SMALL_STATE(4550)] = 107435, - [SMALL_STATE(4551)] = 107443, - [SMALL_STATE(4552)] = 107451, - [SMALL_STATE(4553)] = 107461, - [SMALL_STATE(4554)] = 107469, - [SMALL_STATE(4555)] = 107477, - [SMALL_STATE(4556)] = 107485, - [SMALL_STATE(4557)] = 107495, - [SMALL_STATE(4558)] = 107503, - [SMALL_STATE(4559)] = 107511, - [SMALL_STATE(4560)] = 107521, - [SMALL_STATE(4561)] = 107529, - [SMALL_STATE(4562)] = 107537, - [SMALL_STATE(4563)] = 107545, - [SMALL_STATE(4564)] = 107553, - [SMALL_STATE(4565)] = 107561, - [SMALL_STATE(4566)] = 107569, - [SMALL_STATE(4567)] = 107577, - [SMALL_STATE(4568)] = 107585, - [SMALL_STATE(4569)] = 107595, - [SMALL_STATE(4570)] = 107603, - [SMALL_STATE(4571)] = 107611, - [SMALL_STATE(4572)] = 107619, - [SMALL_STATE(4573)] = 107627, - [SMALL_STATE(4574)] = 107637, - [SMALL_STATE(4575)] = 107647, - [SMALL_STATE(4576)] = 107657, - [SMALL_STATE(4577)] = 107665, - [SMALL_STATE(4578)] = 107673, - [SMALL_STATE(4579)] = 107681, - [SMALL_STATE(4580)] = 107689, - [SMALL_STATE(4581)] = 107699, - [SMALL_STATE(4582)] = 107707, - [SMALL_STATE(4583)] = 107715, - [SMALL_STATE(4584)] = 107725, - [SMALL_STATE(4585)] = 107735, - [SMALL_STATE(4586)] = 107743, - [SMALL_STATE(4587)] = 107753, - [SMALL_STATE(4588)] = 107763, - [SMALL_STATE(4589)] = 107771, - [SMALL_STATE(4590)] = 107779, - [SMALL_STATE(4591)] = 107789, - [SMALL_STATE(4592)] = 107797, - [SMALL_STATE(4593)] = 107805, - [SMALL_STATE(4594)] = 107813, - [SMALL_STATE(4595)] = 107821, - [SMALL_STATE(4596)] = 107829, - [SMALL_STATE(4597)] = 107837, - [SMALL_STATE(4598)] = 107847, - [SMALL_STATE(4599)] = 107857, - [SMALL_STATE(4600)] = 107867, - [SMALL_STATE(4601)] = 107877, - [SMALL_STATE(4602)] = 107887, - [SMALL_STATE(4603)] = 107897, - [SMALL_STATE(4604)] = 107905, - [SMALL_STATE(4605)] = 107915, - [SMALL_STATE(4606)] = 107925, - [SMALL_STATE(4607)] = 107935, - [SMALL_STATE(4608)] = 107945, - [SMALL_STATE(4609)] = 107955, - [SMALL_STATE(4610)] = 107965, - [SMALL_STATE(4611)] = 107973, - [SMALL_STATE(4612)] = 107983, - [SMALL_STATE(4613)] = 107991, - [SMALL_STATE(4614)] = 107999, - [SMALL_STATE(4615)] = 108009, - [SMALL_STATE(4616)] = 108019, - [SMALL_STATE(4617)] = 108029, - [SMALL_STATE(4618)] = 108039, - [SMALL_STATE(4619)] = 108049, - [SMALL_STATE(4620)] = 108059, - [SMALL_STATE(4621)] = 108069, - [SMALL_STATE(4622)] = 108079, - [SMALL_STATE(4623)] = 108089, - [SMALL_STATE(4624)] = 108097, - [SMALL_STATE(4625)] = 108107, - [SMALL_STATE(4626)] = 108115, - [SMALL_STATE(4627)] = 108125, - [SMALL_STATE(4628)] = 108135, - [SMALL_STATE(4629)] = 108145, - [SMALL_STATE(4630)] = 108155, - [SMALL_STATE(4631)] = 108163, - [SMALL_STATE(4632)] = 108171, - [SMALL_STATE(4633)] = 108179, - [SMALL_STATE(4634)] = 108189, - [SMALL_STATE(4635)] = 108199, - [SMALL_STATE(4636)] = 108207, - [SMALL_STATE(4637)] = 108217, - [SMALL_STATE(4638)] = 108225, - [SMALL_STATE(4639)] = 108235, - [SMALL_STATE(4640)] = 108245, - [SMALL_STATE(4641)] = 108255, - [SMALL_STATE(4642)] = 108265, - [SMALL_STATE(4643)] = 108275, - [SMALL_STATE(4644)] = 108285, - [SMALL_STATE(4645)] = 108295, - [SMALL_STATE(4646)] = 108305, - [SMALL_STATE(4647)] = 108313, - [SMALL_STATE(4648)] = 108321, - [SMALL_STATE(4649)] = 108329, - [SMALL_STATE(4650)] = 108339, - [SMALL_STATE(4651)] = 108347, - [SMALL_STATE(4652)] = 108357, - [SMALL_STATE(4653)] = 108365, - [SMALL_STATE(4654)] = 108375, - [SMALL_STATE(4655)] = 108385, - [SMALL_STATE(4656)] = 108395, - [SMALL_STATE(4657)] = 108405, - [SMALL_STATE(4658)] = 108415, - [SMALL_STATE(4659)] = 108425, - [SMALL_STATE(4660)] = 108435, - [SMALL_STATE(4661)] = 108445, - [SMALL_STATE(4662)] = 108455, - [SMALL_STATE(4663)] = 108465, - [SMALL_STATE(4664)] = 108475, - [SMALL_STATE(4665)] = 108483, - [SMALL_STATE(4666)] = 108491, - [SMALL_STATE(4667)] = 108501, - [SMALL_STATE(4668)] = 108509, - [SMALL_STATE(4669)] = 108519, - [SMALL_STATE(4670)] = 108527, - [SMALL_STATE(4671)] = 108537, - [SMALL_STATE(4672)] = 108545, - [SMALL_STATE(4673)] = 108553, - [SMALL_STATE(4674)] = 108563, - [SMALL_STATE(4675)] = 108573, - [SMALL_STATE(4676)] = 108581, - [SMALL_STATE(4677)] = 108591, - [SMALL_STATE(4678)] = 108601, - [SMALL_STATE(4679)] = 108611, - [SMALL_STATE(4680)] = 108621, - [SMALL_STATE(4681)] = 108631, - [SMALL_STATE(4682)] = 108639, - [SMALL_STATE(4683)] = 108647, - [SMALL_STATE(4684)] = 108657, - [SMALL_STATE(4685)] = 108667, - [SMALL_STATE(4686)] = 108677, - [SMALL_STATE(4687)] = 108687, - [SMALL_STATE(4688)] = 108695, - [SMALL_STATE(4689)] = 108705, - [SMALL_STATE(4690)] = 108713, - [SMALL_STATE(4691)] = 108723, - [SMALL_STATE(4692)] = 108733, - [SMALL_STATE(4693)] = 108741, - [SMALL_STATE(4694)] = 108749, - [SMALL_STATE(4695)] = 108759, - [SMALL_STATE(4696)] = 108769, - [SMALL_STATE(4697)] = 108779, - [SMALL_STATE(4698)] = 108787, - [SMALL_STATE(4699)] = 108797, - [SMALL_STATE(4700)] = 108807, - [SMALL_STATE(4701)] = 108817, - [SMALL_STATE(4702)] = 108827, - [SMALL_STATE(4703)] = 108837, - [SMALL_STATE(4704)] = 108847, - [SMALL_STATE(4705)] = 108857, - [SMALL_STATE(4706)] = 108867, - [SMALL_STATE(4707)] = 108877, - [SMALL_STATE(4708)] = 108887, - [SMALL_STATE(4709)] = 108897, - [SMALL_STATE(4710)] = 108907, - [SMALL_STATE(4711)] = 108917, - [SMALL_STATE(4712)] = 108927, - [SMALL_STATE(4713)] = 108935, - [SMALL_STATE(4714)] = 108945, - [SMALL_STATE(4715)] = 108955, - [SMALL_STATE(4716)] = 108965, - [SMALL_STATE(4717)] = 108975, - [SMALL_STATE(4718)] = 108983, - [SMALL_STATE(4719)] = 108993, - [SMALL_STATE(4720)] = 109003, - [SMALL_STATE(4721)] = 109013, - [SMALL_STATE(4722)] = 109023, - [SMALL_STATE(4723)] = 109033, - [SMALL_STATE(4724)] = 109043, - [SMALL_STATE(4725)] = 109053, - [SMALL_STATE(4726)] = 109063, - [SMALL_STATE(4727)] = 109073, - [SMALL_STATE(4728)] = 109083, - [SMALL_STATE(4729)] = 109091, - [SMALL_STATE(4730)] = 109101, - [SMALL_STATE(4731)] = 109111, - [SMALL_STATE(4732)] = 109121, - [SMALL_STATE(4733)] = 109131, - [SMALL_STATE(4734)] = 109139, - [SMALL_STATE(4735)] = 109149, - [SMALL_STATE(4736)] = 109159, - [SMALL_STATE(4737)] = 109169, - [SMALL_STATE(4738)] = 109179, - [SMALL_STATE(4739)] = 109189, - [SMALL_STATE(4740)] = 109199, - [SMALL_STATE(4741)] = 109207, - [SMALL_STATE(4742)] = 109217, - [SMALL_STATE(4743)] = 109227, - [SMALL_STATE(4744)] = 109237, - [SMALL_STATE(4745)] = 109247, - [SMALL_STATE(4746)] = 109257, - [SMALL_STATE(4747)] = 109267, - [SMALL_STATE(4748)] = 109277, - [SMALL_STATE(4749)] = 109287, - [SMALL_STATE(4750)] = 109297, - [SMALL_STATE(4751)] = 109307, - [SMALL_STATE(4752)] = 109317, - [SMALL_STATE(4753)] = 109327, - [SMALL_STATE(4754)] = 109337, - [SMALL_STATE(4755)] = 109347, - [SMALL_STATE(4756)] = 109355, - [SMALL_STATE(4757)] = 109365, - [SMALL_STATE(4758)] = 109375, - [SMALL_STATE(4759)] = 109385, - [SMALL_STATE(4760)] = 109395, - [SMALL_STATE(4761)] = 109405, - [SMALL_STATE(4762)] = 109415, - [SMALL_STATE(4763)] = 109423, - [SMALL_STATE(4764)] = 109433, - [SMALL_STATE(4765)] = 109443, - [SMALL_STATE(4766)] = 109453, - [SMALL_STATE(4767)] = 109463, - [SMALL_STATE(4768)] = 109473, - [SMALL_STATE(4769)] = 109483, - [SMALL_STATE(4770)] = 109493, - [SMALL_STATE(4771)] = 109503, - [SMALL_STATE(4772)] = 109513, - [SMALL_STATE(4773)] = 109523, - [SMALL_STATE(4774)] = 109533, - [SMALL_STATE(4775)] = 109543, - [SMALL_STATE(4776)] = 109553, - [SMALL_STATE(4777)] = 109563, - [SMALL_STATE(4778)] = 109573, - [SMALL_STATE(4779)] = 109583, - [SMALL_STATE(4780)] = 109591, - [SMALL_STATE(4781)] = 109601, - [SMALL_STATE(4782)] = 109611, - [SMALL_STATE(4783)] = 109621, - [SMALL_STATE(4784)] = 109631, - [SMALL_STATE(4785)] = 109641, - [SMALL_STATE(4786)] = 109651, - [SMALL_STATE(4787)] = 109661, - [SMALL_STATE(4788)] = 109671, - [SMALL_STATE(4789)] = 109681, - [SMALL_STATE(4790)] = 109691, - [SMALL_STATE(4791)] = 109701, - [SMALL_STATE(4792)] = 109711, - [SMALL_STATE(4793)] = 109721, - [SMALL_STATE(4794)] = 109731, - [SMALL_STATE(4795)] = 109741, - [SMALL_STATE(4796)] = 109751, - [SMALL_STATE(4797)] = 109761, - [SMALL_STATE(4798)] = 109771, - [SMALL_STATE(4799)] = 109781, - [SMALL_STATE(4800)] = 109791, - [SMALL_STATE(4801)] = 109801, - [SMALL_STATE(4802)] = 109811, - [SMALL_STATE(4803)] = 109821, - [SMALL_STATE(4804)] = 109831, - [SMALL_STATE(4805)] = 109841, - [SMALL_STATE(4806)] = 109851, - [SMALL_STATE(4807)] = 109861, - [SMALL_STATE(4808)] = 109871, - [SMALL_STATE(4809)] = 109881, - [SMALL_STATE(4810)] = 109891, - [SMALL_STATE(4811)] = 109901, - [SMALL_STATE(4812)] = 109911, - [SMALL_STATE(4813)] = 109921, - [SMALL_STATE(4814)] = 109931, - [SMALL_STATE(4815)] = 109941, - [SMALL_STATE(4816)] = 109951, - [SMALL_STATE(4817)] = 109961, - [SMALL_STATE(4818)] = 109971, - [SMALL_STATE(4819)] = 109981, - [SMALL_STATE(4820)] = 109991, - [SMALL_STATE(4821)] = 110001, - [SMALL_STATE(4822)] = 110011, - [SMALL_STATE(4823)] = 110021, - [SMALL_STATE(4824)] = 110031, - [SMALL_STATE(4825)] = 110041, - [SMALL_STATE(4826)] = 110051, - [SMALL_STATE(4827)] = 110061, - [SMALL_STATE(4828)] = 110071, - [SMALL_STATE(4829)] = 110081, - [SMALL_STATE(4830)] = 110091, - [SMALL_STATE(4831)] = 110099, - [SMALL_STATE(4832)] = 110109, - [SMALL_STATE(4833)] = 110119, - [SMALL_STATE(4834)] = 110129, - [SMALL_STATE(4835)] = 110139, - [SMALL_STATE(4836)] = 110146, - [SMALL_STATE(4837)] = 110153, - [SMALL_STATE(4838)] = 110160, - [SMALL_STATE(4839)] = 110167, - [SMALL_STATE(4840)] = 110174, - [SMALL_STATE(4841)] = 110181, - [SMALL_STATE(4842)] = 110188, - [SMALL_STATE(4843)] = 110195, - [SMALL_STATE(4844)] = 110202, - [SMALL_STATE(4845)] = 110209, - [SMALL_STATE(4846)] = 110216, - [SMALL_STATE(4847)] = 110223, - [SMALL_STATE(4848)] = 110230, - [SMALL_STATE(4849)] = 110237, - [SMALL_STATE(4850)] = 110244, - [SMALL_STATE(4851)] = 110251, - [SMALL_STATE(4852)] = 110258, - [SMALL_STATE(4853)] = 110265, - [SMALL_STATE(4854)] = 110272, - [SMALL_STATE(4855)] = 110279, - [SMALL_STATE(4856)] = 110286, - [SMALL_STATE(4857)] = 110293, - [SMALL_STATE(4858)] = 110300, - [SMALL_STATE(4859)] = 110307, - [SMALL_STATE(4860)] = 110314, - [SMALL_STATE(4861)] = 110321, - [SMALL_STATE(4862)] = 110328, - [SMALL_STATE(4863)] = 110335, - [SMALL_STATE(4864)] = 110342, - [SMALL_STATE(4865)] = 110349, - [SMALL_STATE(4866)] = 110356, - [SMALL_STATE(4867)] = 110363, - [SMALL_STATE(4868)] = 110370, - [SMALL_STATE(4869)] = 110377, - [SMALL_STATE(4870)] = 110384, - [SMALL_STATE(4871)] = 110391, - [SMALL_STATE(4872)] = 110398, - [SMALL_STATE(4873)] = 110405, - [SMALL_STATE(4874)] = 110412, - [SMALL_STATE(4875)] = 110419, - [SMALL_STATE(4876)] = 110426, - [SMALL_STATE(4877)] = 110433, - [SMALL_STATE(4878)] = 110440, - [SMALL_STATE(4879)] = 110447, - [SMALL_STATE(4880)] = 110454, - [SMALL_STATE(4881)] = 110461, - [SMALL_STATE(4882)] = 110468, - [SMALL_STATE(4883)] = 110475, - [SMALL_STATE(4884)] = 110482, - [SMALL_STATE(4885)] = 110489, - [SMALL_STATE(4886)] = 110496, - [SMALL_STATE(4887)] = 110503, - [SMALL_STATE(4888)] = 110510, - [SMALL_STATE(4889)] = 110517, - [SMALL_STATE(4890)] = 110524, - [SMALL_STATE(4891)] = 110531, - [SMALL_STATE(4892)] = 110538, - [SMALL_STATE(4893)] = 110545, - [SMALL_STATE(4894)] = 110552, - [SMALL_STATE(4895)] = 110559, - [SMALL_STATE(4896)] = 110566, - [SMALL_STATE(4897)] = 110573, - [SMALL_STATE(4898)] = 110580, - [SMALL_STATE(4899)] = 110587, - [SMALL_STATE(4900)] = 110594, - [SMALL_STATE(4901)] = 110601, - [SMALL_STATE(4902)] = 110608, - [SMALL_STATE(4903)] = 110615, - [SMALL_STATE(4904)] = 110622, - [SMALL_STATE(4905)] = 110629, - [SMALL_STATE(4906)] = 110636, - [SMALL_STATE(4907)] = 110643, - [SMALL_STATE(4908)] = 110650, - [SMALL_STATE(4909)] = 110657, - [SMALL_STATE(4910)] = 110664, - [SMALL_STATE(4911)] = 110671, - [SMALL_STATE(4912)] = 110678, - [SMALL_STATE(4913)] = 110685, - [SMALL_STATE(4914)] = 110692, - [SMALL_STATE(4915)] = 110699, - [SMALL_STATE(4916)] = 110706, - [SMALL_STATE(4917)] = 110713, - [SMALL_STATE(4918)] = 110720, - [SMALL_STATE(4919)] = 110727, - [SMALL_STATE(4920)] = 110734, - [SMALL_STATE(4921)] = 110741, - [SMALL_STATE(4922)] = 110748, - [SMALL_STATE(4923)] = 110755, - [SMALL_STATE(4924)] = 110762, - [SMALL_STATE(4925)] = 110769, - [SMALL_STATE(4926)] = 110776, - [SMALL_STATE(4927)] = 110783, - [SMALL_STATE(4928)] = 110790, - [SMALL_STATE(4929)] = 110797, - [SMALL_STATE(4930)] = 110804, - [SMALL_STATE(4931)] = 110811, - [SMALL_STATE(4932)] = 110818, - [SMALL_STATE(4933)] = 110825, - [SMALL_STATE(4934)] = 110832, - [SMALL_STATE(4935)] = 110839, - [SMALL_STATE(4936)] = 110846, - [SMALL_STATE(4937)] = 110853, - [SMALL_STATE(4938)] = 110860, - [SMALL_STATE(4939)] = 110867, - [SMALL_STATE(4940)] = 110874, - [SMALL_STATE(4941)] = 110881, - [SMALL_STATE(4942)] = 110888, - [SMALL_STATE(4943)] = 110895, - [SMALL_STATE(4944)] = 110902, - [SMALL_STATE(4945)] = 110909, - [SMALL_STATE(4946)] = 110916, - [SMALL_STATE(4947)] = 110923, - [SMALL_STATE(4948)] = 110930, - [SMALL_STATE(4949)] = 110937, - [SMALL_STATE(4950)] = 110944, - [SMALL_STATE(4951)] = 110951, - [SMALL_STATE(4952)] = 110958, - [SMALL_STATE(4953)] = 110965, - [SMALL_STATE(4954)] = 110972, - [SMALL_STATE(4955)] = 110979, - [SMALL_STATE(4956)] = 110986, - [SMALL_STATE(4957)] = 110993, - [SMALL_STATE(4958)] = 111000, - [SMALL_STATE(4959)] = 111007, - [SMALL_STATE(4960)] = 111014, - [SMALL_STATE(4961)] = 111021, - [SMALL_STATE(4962)] = 111028, - [SMALL_STATE(4963)] = 111035, - [SMALL_STATE(4964)] = 111042, - [SMALL_STATE(4965)] = 111049, - [SMALL_STATE(4966)] = 111056, - [SMALL_STATE(4967)] = 111063, - [SMALL_STATE(4968)] = 111070, - [SMALL_STATE(4969)] = 111077, - [SMALL_STATE(4970)] = 111084, - [SMALL_STATE(4971)] = 111091, - [SMALL_STATE(4972)] = 111098, - [SMALL_STATE(4973)] = 111105, - [SMALL_STATE(4974)] = 111112, - [SMALL_STATE(4975)] = 111119, - [SMALL_STATE(4976)] = 111126, - [SMALL_STATE(4977)] = 111133, - [SMALL_STATE(4978)] = 111140, - [SMALL_STATE(4979)] = 111147, - [SMALL_STATE(4980)] = 111154, - [SMALL_STATE(4981)] = 111161, - [SMALL_STATE(4982)] = 111168, - [SMALL_STATE(4983)] = 111175, - [SMALL_STATE(4984)] = 111182, - [SMALL_STATE(4985)] = 111189, - [SMALL_STATE(4986)] = 111196, - [SMALL_STATE(4987)] = 111203, - [SMALL_STATE(4988)] = 111210, - [SMALL_STATE(4989)] = 111217, - [SMALL_STATE(4990)] = 111224, - [SMALL_STATE(4991)] = 111231, - [SMALL_STATE(4992)] = 111238, - [SMALL_STATE(4993)] = 111245, - [SMALL_STATE(4994)] = 111252, - [SMALL_STATE(4995)] = 111259, - [SMALL_STATE(4996)] = 111266, - [SMALL_STATE(4997)] = 111273, - [SMALL_STATE(4998)] = 111280, - [SMALL_STATE(4999)] = 111287, - [SMALL_STATE(5000)] = 111294, - [SMALL_STATE(5001)] = 111301, - [SMALL_STATE(5002)] = 111308, - [SMALL_STATE(5003)] = 111315, - [SMALL_STATE(5004)] = 111322, - [SMALL_STATE(5005)] = 111329, - [SMALL_STATE(5006)] = 111336, - [SMALL_STATE(5007)] = 111343, - [SMALL_STATE(5008)] = 111350, - [SMALL_STATE(5009)] = 111357, - [SMALL_STATE(5010)] = 111364, - [SMALL_STATE(5011)] = 111371, - [SMALL_STATE(5012)] = 111378, - [SMALL_STATE(5013)] = 111385, - [SMALL_STATE(5014)] = 111392, - [SMALL_STATE(5015)] = 111399, - [SMALL_STATE(5016)] = 111406, - [SMALL_STATE(5017)] = 111413, - [SMALL_STATE(5018)] = 111420, - [SMALL_STATE(5019)] = 111427, - [SMALL_STATE(5020)] = 111434, - [SMALL_STATE(5021)] = 111441, - [SMALL_STATE(5022)] = 111448, - [SMALL_STATE(5023)] = 111455, - [SMALL_STATE(5024)] = 111462, - [SMALL_STATE(5025)] = 111469, - [SMALL_STATE(5026)] = 111476, - [SMALL_STATE(5027)] = 111483, - [SMALL_STATE(5028)] = 111490, - [SMALL_STATE(5029)] = 111497, - [SMALL_STATE(5030)] = 111504, - [SMALL_STATE(5031)] = 111511, - [SMALL_STATE(5032)] = 111518, - [SMALL_STATE(5033)] = 111525, - [SMALL_STATE(5034)] = 111532, - [SMALL_STATE(5035)] = 111539, - [SMALL_STATE(5036)] = 111546, - [SMALL_STATE(5037)] = 111553, - [SMALL_STATE(5038)] = 111560, - [SMALL_STATE(5039)] = 111567, - [SMALL_STATE(5040)] = 111574, - [SMALL_STATE(5041)] = 111581, - [SMALL_STATE(5042)] = 111588, - [SMALL_STATE(5043)] = 111595, - [SMALL_STATE(5044)] = 111602, - [SMALL_STATE(5045)] = 111609, - [SMALL_STATE(5046)] = 111616, - [SMALL_STATE(5047)] = 111623, - [SMALL_STATE(5048)] = 111630, - [SMALL_STATE(5049)] = 111637, - [SMALL_STATE(5050)] = 111644, - [SMALL_STATE(5051)] = 111651, - [SMALL_STATE(5052)] = 111658, - [SMALL_STATE(5053)] = 111665, - [SMALL_STATE(5054)] = 111672, - [SMALL_STATE(5055)] = 111679, - [SMALL_STATE(5056)] = 111686, - [SMALL_STATE(5057)] = 111693, - [SMALL_STATE(5058)] = 111700, - [SMALL_STATE(5059)] = 111707, - [SMALL_STATE(5060)] = 111714, - [SMALL_STATE(5061)] = 111721, - [SMALL_STATE(5062)] = 111728, - [SMALL_STATE(5063)] = 111735, - [SMALL_STATE(5064)] = 111742, - [SMALL_STATE(5065)] = 111749, - [SMALL_STATE(5066)] = 111756, - [SMALL_STATE(5067)] = 111763, - [SMALL_STATE(5068)] = 111770, - [SMALL_STATE(5069)] = 111777, - [SMALL_STATE(5070)] = 111784, - [SMALL_STATE(5071)] = 111791, - [SMALL_STATE(5072)] = 111798, - [SMALL_STATE(5073)] = 111805, - [SMALL_STATE(5074)] = 111812, - [SMALL_STATE(5075)] = 111819, - [SMALL_STATE(5076)] = 111826, - [SMALL_STATE(5077)] = 111833, - [SMALL_STATE(5078)] = 111840, - [SMALL_STATE(5079)] = 111847, - [SMALL_STATE(5080)] = 111854, - [SMALL_STATE(5081)] = 111861, - [SMALL_STATE(5082)] = 111868, - [SMALL_STATE(5083)] = 111875, - [SMALL_STATE(5084)] = 111882, - [SMALL_STATE(5085)] = 111889, - [SMALL_STATE(5086)] = 111896, - [SMALL_STATE(5087)] = 111903, - [SMALL_STATE(5088)] = 111910, - [SMALL_STATE(5089)] = 111917, - [SMALL_STATE(5090)] = 111924, - [SMALL_STATE(5091)] = 111931, - [SMALL_STATE(5092)] = 111938, - [SMALL_STATE(5093)] = 111945, - [SMALL_STATE(5094)] = 111952, - [SMALL_STATE(5095)] = 111959, - [SMALL_STATE(5096)] = 111966, - [SMALL_STATE(5097)] = 111973, - [SMALL_STATE(5098)] = 111980, - [SMALL_STATE(5099)] = 111987, - [SMALL_STATE(5100)] = 111994, - [SMALL_STATE(5101)] = 112001, - [SMALL_STATE(5102)] = 112008, - [SMALL_STATE(5103)] = 112015, - [SMALL_STATE(5104)] = 112022, - [SMALL_STATE(5105)] = 112029, - [SMALL_STATE(5106)] = 112036, - [SMALL_STATE(5107)] = 112043, - [SMALL_STATE(5108)] = 112050, - [SMALL_STATE(5109)] = 112057, - [SMALL_STATE(5110)] = 112064, - [SMALL_STATE(5111)] = 112071, - [SMALL_STATE(5112)] = 112078, - [SMALL_STATE(5113)] = 112085, - [SMALL_STATE(5114)] = 112092, - [SMALL_STATE(5115)] = 112099, - [SMALL_STATE(5116)] = 112106, - [SMALL_STATE(5117)] = 112113, - [SMALL_STATE(5118)] = 112120, - [SMALL_STATE(5119)] = 112127, - [SMALL_STATE(5120)] = 112134, - [SMALL_STATE(5121)] = 112141, - [SMALL_STATE(5122)] = 112148, - [SMALL_STATE(5123)] = 112155, - [SMALL_STATE(5124)] = 112162, - [SMALL_STATE(5125)] = 112169, - [SMALL_STATE(5126)] = 112176, - [SMALL_STATE(5127)] = 112183, - [SMALL_STATE(5128)] = 112190, - [SMALL_STATE(5129)] = 112197, - [SMALL_STATE(5130)] = 112204, - [SMALL_STATE(5131)] = 112211, - [SMALL_STATE(5132)] = 112218, - [SMALL_STATE(5133)] = 112225, - [SMALL_STATE(5134)] = 112232, - [SMALL_STATE(5135)] = 112239, - [SMALL_STATE(5136)] = 112246, - [SMALL_STATE(5137)] = 112253, - [SMALL_STATE(5138)] = 112260, - [SMALL_STATE(5139)] = 112267, - [SMALL_STATE(5140)] = 112274, - [SMALL_STATE(5141)] = 112281, - [SMALL_STATE(5142)] = 112288, - [SMALL_STATE(5143)] = 112295, - [SMALL_STATE(5144)] = 112302, - [SMALL_STATE(5145)] = 112309, - [SMALL_STATE(5146)] = 112316, - [SMALL_STATE(5147)] = 112323, - [SMALL_STATE(5148)] = 112330, - [SMALL_STATE(5149)] = 112337, - [SMALL_STATE(5150)] = 112344, - [SMALL_STATE(5151)] = 112351, - [SMALL_STATE(5152)] = 112358, - [SMALL_STATE(5153)] = 112365, - [SMALL_STATE(5154)] = 112372, - [SMALL_STATE(5155)] = 112379, - [SMALL_STATE(5156)] = 112386, - [SMALL_STATE(5157)] = 112393, - [SMALL_STATE(5158)] = 112400, - [SMALL_STATE(5159)] = 112407, - [SMALL_STATE(5160)] = 112414, - [SMALL_STATE(5161)] = 112421, - [SMALL_STATE(5162)] = 112428, - [SMALL_STATE(5163)] = 112435, - [SMALL_STATE(5164)] = 112442, - [SMALL_STATE(5165)] = 112449, - [SMALL_STATE(5166)] = 112456, - [SMALL_STATE(5167)] = 112463, - [SMALL_STATE(5168)] = 112470, - [SMALL_STATE(5169)] = 112477, - [SMALL_STATE(5170)] = 112484, - [SMALL_STATE(5171)] = 112491, - [SMALL_STATE(5172)] = 112498, - [SMALL_STATE(5173)] = 112505, - [SMALL_STATE(5174)] = 112512, - [SMALL_STATE(5175)] = 112519, - [SMALL_STATE(5176)] = 112526, - [SMALL_STATE(5177)] = 112533, - [SMALL_STATE(5178)] = 112540, - [SMALL_STATE(5179)] = 112547, - [SMALL_STATE(5180)] = 112554, - [SMALL_STATE(5181)] = 112561, - [SMALL_STATE(5182)] = 112568, - [SMALL_STATE(5183)] = 112575, - [SMALL_STATE(5184)] = 112582, - [SMALL_STATE(5185)] = 112589, - [SMALL_STATE(5186)] = 112596, - [SMALL_STATE(5187)] = 112603, - [SMALL_STATE(5188)] = 112610, - [SMALL_STATE(5189)] = 112617, - [SMALL_STATE(5190)] = 112624, - [SMALL_STATE(5191)] = 112631, - [SMALL_STATE(5192)] = 112638, - [SMALL_STATE(5193)] = 112645, - [SMALL_STATE(5194)] = 112652, - [SMALL_STATE(5195)] = 112659, - [SMALL_STATE(5196)] = 112666, - [SMALL_STATE(5197)] = 112673, - [SMALL_STATE(5198)] = 112680, - [SMALL_STATE(5199)] = 112687, - [SMALL_STATE(5200)] = 112694, - [SMALL_STATE(5201)] = 112701, - [SMALL_STATE(5202)] = 112708, - [SMALL_STATE(5203)] = 112715, - [SMALL_STATE(5204)] = 112722, - [SMALL_STATE(5205)] = 112729, - [SMALL_STATE(5206)] = 112736, - [SMALL_STATE(5207)] = 112743, - [SMALL_STATE(5208)] = 112750, - [SMALL_STATE(5209)] = 112757, - [SMALL_STATE(5210)] = 112764, - [SMALL_STATE(5211)] = 112771, - [SMALL_STATE(5212)] = 112778, - [SMALL_STATE(5213)] = 112785, - [SMALL_STATE(5214)] = 112792, - [SMALL_STATE(5215)] = 112799, - [SMALL_STATE(5216)] = 112806, - [SMALL_STATE(5217)] = 112813, - [SMALL_STATE(5218)] = 112820, - [SMALL_STATE(5219)] = 112827, - [SMALL_STATE(5220)] = 112834, - [SMALL_STATE(5221)] = 112841, - [SMALL_STATE(5222)] = 112848, - [SMALL_STATE(5223)] = 112855, - [SMALL_STATE(5224)] = 112862, - [SMALL_STATE(5225)] = 112869, - [SMALL_STATE(5226)] = 112876, - [SMALL_STATE(5227)] = 112883, - [SMALL_STATE(5228)] = 112890, - [SMALL_STATE(5229)] = 112897, - [SMALL_STATE(5230)] = 112904, - [SMALL_STATE(5231)] = 112911, - [SMALL_STATE(5232)] = 112918, - [SMALL_STATE(5233)] = 112925, - [SMALL_STATE(5234)] = 112932, - [SMALL_STATE(5235)] = 112939, - [SMALL_STATE(5236)] = 112946, - [SMALL_STATE(5237)] = 112953, - [SMALL_STATE(5238)] = 112960, - [SMALL_STATE(5239)] = 112967, - [SMALL_STATE(5240)] = 112974, - [SMALL_STATE(5241)] = 112981, - [SMALL_STATE(5242)] = 112988, - [SMALL_STATE(5243)] = 112995, - [SMALL_STATE(5244)] = 113002, - [SMALL_STATE(5245)] = 113009, - [SMALL_STATE(5246)] = 113016, - [SMALL_STATE(5247)] = 113023, - [SMALL_STATE(5248)] = 113030, - [SMALL_STATE(5249)] = 113037, - [SMALL_STATE(5250)] = 113044, - [SMALL_STATE(5251)] = 113051, - [SMALL_STATE(5252)] = 113058, - [SMALL_STATE(5253)] = 113065, - [SMALL_STATE(5254)] = 113072, - [SMALL_STATE(5255)] = 113079, - [SMALL_STATE(5256)] = 113086, - [SMALL_STATE(5257)] = 113093, - [SMALL_STATE(5258)] = 113100, - [SMALL_STATE(5259)] = 113107, - [SMALL_STATE(5260)] = 113114, - [SMALL_STATE(5261)] = 113121, - [SMALL_STATE(5262)] = 113128, - [SMALL_STATE(5263)] = 113135, - [SMALL_STATE(5264)] = 113142, - [SMALL_STATE(5265)] = 113149, - [SMALL_STATE(5266)] = 113156, - [SMALL_STATE(5267)] = 113163, - [SMALL_STATE(5268)] = 113170, - [SMALL_STATE(5269)] = 113177, + [SMALL_STATE(2795)] = 0, + [SMALL_STATE(2796)] = 71, + [SMALL_STATE(2797)] = 148, + [SMALL_STATE(2798)] = 219, + [SMALL_STATE(2799)] = 290, + [SMALL_STATE(2800)] = 379, + [SMALL_STATE(2801)] = 450, + [SMALL_STATE(2802)] = 521, + [SMALL_STATE(2803)] = 604, + [SMALL_STATE(2804)] = 675, + [SMALL_STATE(2805)] = 750, + [SMALL_STATE(2806)] = 821, + [SMALL_STATE(2807)] = 892, + [SMALL_STATE(2808)] = 977, + [SMALL_STATE(2809)] = 1062, + [SMALL_STATE(2810)] = 1141, + [SMALL_STATE(2811)] = 1214, + [SMALL_STATE(2812)] = 1289, + [SMALL_STATE(2813)] = 1368, + [SMALL_STATE(2814)] = 1439, + [SMALL_STATE(2815)] = 1510, + [SMALL_STATE(2816)] = 1581, + [SMALL_STATE(2817)] = 1664, + [SMALL_STATE(2818)] = 1735, + [SMALL_STATE(2819)] = 1818, + [SMALL_STATE(2820)] = 1889, + [SMALL_STATE(2821)] = 1968, + [SMALL_STATE(2822)] = 2051, + [SMALL_STATE(2823)] = 2134, + [SMALL_STATE(2824)] = 2205, + [SMALL_STATE(2825)] = 2290, + [SMALL_STATE(2826)] = 2361, + [SMALL_STATE(2827)] = 2432, + [SMALL_STATE(2828)] = 2509, + [SMALL_STATE(2829)] = 2580, + [SMALL_STATE(2830)] = 2651, + [SMALL_STATE(2831)] = 2722, + [SMALL_STATE(2832)] = 2793, + [SMALL_STATE(2833)] = 2864, + [SMALL_STATE(2834)] = 2935, + [SMALL_STATE(2835)] = 3020, + [SMALL_STATE(2836)] = 3099, + [SMALL_STATE(2837)] = 3182, + [SMALL_STATE(2838)] = 3267, + [SMALL_STATE(2839)] = 3337, + [SMALL_STATE(2840)] = 3407, + [SMALL_STATE(2841)] = 3477, + [SMALL_STATE(2842)] = 3547, + [SMALL_STATE(2843)] = 3617, + [SMALL_STATE(2844)] = 3687, + [SMALL_STATE(2845)] = 3757, + [SMALL_STATE(2846)] = 3827, + [SMALL_STATE(2847)] = 3897, + [SMALL_STATE(2848)] = 3967, + [SMALL_STATE(2849)] = 4037, + [SMALL_STATE(2850)] = 4107, + [SMALL_STATE(2851)] = 4177, + [SMALL_STATE(2852)] = 4247, + [SMALL_STATE(2853)] = 4317, + [SMALL_STATE(2854)] = 4387, + [SMALL_STATE(2855)] = 4457, + [SMALL_STATE(2856)] = 4527, + [SMALL_STATE(2857)] = 4597, + [SMALL_STATE(2858)] = 4671, + [SMALL_STATE(2859)] = 4741, + [SMALL_STATE(2860)] = 4811, + [SMALL_STATE(2861)] = 4881, + [SMALL_STATE(2862)] = 4951, + [SMALL_STATE(2863)] = 5021, + [SMALL_STATE(2864)] = 5091, + [SMALL_STATE(2865)] = 5161, + [SMALL_STATE(2866)] = 5231, + [SMALL_STATE(2867)] = 5309, + [SMALL_STATE(2868)] = 5379, + [SMALL_STATE(2869)] = 5449, + [SMALL_STATE(2870)] = 5519, + [SMALL_STATE(2871)] = 5589, + [SMALL_STATE(2872)] = 5659, + [SMALL_STATE(2873)] = 5729, + [SMALL_STATE(2874)] = 5799, + [SMALL_STATE(2875)] = 5883, + [SMALL_STATE(2876)] = 5953, + [SMALL_STATE(2877)] = 6023, + [SMALL_STATE(2878)] = 6093, + [SMALL_STATE(2879)] = 6163, + [SMALL_STATE(2880)] = 6233, + [SMALL_STATE(2881)] = 6303, + [SMALL_STATE(2882)] = 6373, + [SMALL_STATE(2883)] = 6461, + [SMALL_STATE(2884)] = 6531, + [SMALL_STATE(2885)] = 6601, + [SMALL_STATE(2886)] = 6671, + [SMALL_STATE(2887)] = 6741, + [SMALL_STATE(2888)] = 6811, + [SMALL_STATE(2889)] = 6881, + [SMALL_STATE(2890)] = 6951, + [SMALL_STATE(2891)] = 7021, + [SMALL_STATE(2892)] = 7091, + [SMALL_STATE(2893)] = 7161, + [SMALL_STATE(2894)] = 7231, + [SMALL_STATE(2895)] = 7301, + [SMALL_STATE(2896)] = 7385, + [SMALL_STATE(2897)] = 7455, + [SMALL_STATE(2898)] = 7525, + [SMALL_STATE(2899)] = 7595, + [SMALL_STATE(2900)] = 7665, + [SMALL_STATE(2901)] = 7735, + [SMALL_STATE(2902)] = 7805, + [SMALL_STATE(2903)] = 7875, + [SMALL_STATE(2904)] = 7945, + [SMALL_STATE(2905)] = 8015, + [SMALL_STATE(2906)] = 8085, + [SMALL_STATE(2907)] = 8155, + [SMALL_STATE(2908)] = 8225, + [SMALL_STATE(2909)] = 8295, + [SMALL_STATE(2910)] = 8365, + [SMALL_STATE(2911)] = 8435, + [SMALL_STATE(2912)] = 8505, + [SMALL_STATE(2913)] = 8575, + [SMALL_STATE(2914)] = 8645, + [SMALL_STATE(2915)] = 8715, + [SMALL_STATE(2916)] = 8785, + [SMALL_STATE(2917)] = 8855, + [SMALL_STATE(2918)] = 8933, + [SMALL_STATE(2919)] = 9003, + [SMALL_STATE(2920)] = 9073, + [SMALL_STATE(2921)] = 9143, + [SMALL_STATE(2922)] = 9213, + [SMALL_STATE(2923)] = 9283, + [SMALL_STATE(2924)] = 9353, + [SMALL_STATE(2925)] = 9423, + [SMALL_STATE(2926)] = 9493, + [SMALL_STATE(2927)] = 9563, + [SMALL_STATE(2928)] = 9633, + [SMALL_STATE(2929)] = 9703, + [SMALL_STATE(2930)] = 9776, + [SMALL_STATE(2931)] = 9851, + [SMALL_STATE(2932)] = 9920, + [SMALL_STATE(2933)] = 9989, + [SMALL_STATE(2934)] = 10058, + [SMALL_STATE(2935)] = 10129, + [SMALL_STATE(2936)] = 10202, + [SMALL_STATE(2937)] = 10271, + [SMALL_STATE(2938)] = 10340, + [SMALL_STATE(2939)] = 10411, + [SMALL_STATE(2940)] = 10490, + [SMALL_STATE(2941)] = 10559, + [SMALL_STATE(2942)] = 10638, + [SMALL_STATE(2943)] = 10711, + [SMALL_STATE(2944)] = 10780, + [SMALL_STATE(2945)] = 10853, + [SMALL_STATE(2946)] = 10926, + [SMALL_STATE(2947)] = 10995, + [SMALL_STATE(2948)] = 11064, + [SMALL_STATE(2949)] = 11137, + [SMALL_STATE(2950)] = 11212, + [SMALL_STATE(2951)] = 11281, + [SMALL_STATE(2952)] = 11354, + [SMALL_STATE(2953)] = 11473, + [SMALL_STATE(2954)] = 11546, + [SMALL_STATE(2955)] = 11619, + [SMALL_STATE(2956)] = 11690, + [SMALL_STATE(2957)] = 11765, + [SMALL_STATE(2958)] = 11884, + [SMALL_STATE(2959)] = 11953, + [SMALL_STATE(2960)] = 12026, + [SMALL_STATE(2961)] = 12099, + [SMALL_STATE(2962)] = 12168, + [SMALL_STATE(2963)] = 12247, + [SMALL_STATE(2964)] = 12316, + [SMALL_STATE(2965)] = 12389, + [SMALL_STATE(2966)] = 12463, + [SMALL_STATE(2967)] = 12537, + [SMALL_STATE(2968)] = 12609, + [SMALL_STATE(2969)] = 12695, + [SMALL_STATE(2970)] = 12769, + [SMALL_STATE(2971)] = 12843, + [SMALL_STATE(2972)] = 12915, + [SMALL_STATE(2973)] = 12985, + [SMALL_STATE(2974)] = 13059, + [SMALL_STATE(2975)] = 13131, + [SMALL_STATE(2976)] = 13203, + [SMALL_STATE(2977)] = 13283, + [SMALL_STATE(2978)] = 13351, + [SMALL_STATE(2979)] = 13423, + [SMALL_STATE(2980)] = 13499, + [SMALL_STATE(2981)] = 13571, + [SMALL_STATE(2982)] = 13643, + [SMALL_STATE(2983)] = 13717, + [SMALL_STATE(2984)] = 13785, + [SMALL_STATE(2985)] = 13865, + [SMALL_STATE(2986)] = 13935, + [SMALL_STATE(2987)] = 14013, + [SMALL_STATE(2988)] = 14081, + [SMALL_STATE(2989)] = 14153, + [SMALL_STATE(2990)] = 14233, + [SMALL_STATE(2991)] = 14305, + [SMALL_STATE(2992)] = 14379, + [SMALL_STATE(2993)] = 14453, + [SMALL_STATE(2994)] = 14535, + [SMALL_STATE(2995)] = 14605, + [SMALL_STATE(2996)] = 14677, + [SMALL_STATE(2997)] = 14753, + [SMALL_STATE(2998)] = 14827, + [SMALL_STATE(2999)] = 14901, + [SMALL_STATE(3000)] = 14971, + [SMALL_STATE(3001)] = 15051, + [SMALL_STATE(3002)] = 15127, + [SMALL_STATE(3003)] = 15195, + [SMALL_STATE(3004)] = 15269, + [SMALL_STATE(3005)] = 15341, + [SMALL_STATE(3006)] = 15409, + [SMALL_STATE(3007)] = 15481, + [SMALL_STATE(3008)] = 15557, + [SMALL_STATE(3009)] = 15631, + [SMALL_STATE(3010)] = 15713, + [SMALL_STATE(3011)] = 15781, + [SMALL_STATE(3012)] = 15855, + [SMALL_STATE(3013)] = 15923, + [SMALL_STATE(3014)] = 15991, + [SMALL_STATE(3015)] = 16065, + [SMALL_STATE(3016)] = 16139, + [SMALL_STATE(3017)] = 16206, + [SMALL_STATE(3018)] = 16273, + [SMALL_STATE(3019)] = 16340, + [SMALL_STATE(3020)] = 16407, + [SMALL_STATE(3021)] = 16474, + [SMALL_STATE(3022)] = 16541, + [SMALL_STATE(3023)] = 16608, + [SMALL_STATE(3024)] = 16675, + [SMALL_STATE(3025)] = 16754, + [SMALL_STATE(3026)] = 16833, + [SMALL_STATE(3027)] = 16900, + [SMALL_STATE(3028)] = 16979, + [SMALL_STATE(3029)] = 17058, + [SMALL_STATE(3030)] = 17125, + [SMALL_STATE(3031)] = 17194, + [SMALL_STATE(3032)] = 17263, + [SMALL_STATE(3033)] = 17330, + [SMALL_STATE(3034)] = 17397, + [SMALL_STATE(3035)] = 17464, + [SMALL_STATE(3036)] = 17531, + [SMALL_STATE(3037)] = 17598, + [SMALL_STATE(3038)] = 17667, + [SMALL_STATE(3039)] = 17748, + [SMALL_STATE(3040)] = 17815, + [SMALL_STATE(3041)] = 17882, + [SMALL_STATE(3042)] = 17949, + [SMALL_STATE(3043)] = 18016, + [SMALL_STATE(3044)] = 18083, + [SMALL_STATE(3045)] = 18150, + [SMALL_STATE(3046)] = 18231, + [SMALL_STATE(3047)] = 18298, + [SMALL_STATE(3048)] = 18365, + [SMALL_STATE(3049)] = 18432, + [SMALL_STATE(3050)] = 18499, + [SMALL_STATE(3051)] = 18566, + [SMALL_STATE(3052)] = 18633, + [SMALL_STATE(3053)] = 18700, + [SMALL_STATE(3054)] = 18817, + [SMALL_STATE(3055)] = 18884, + [SMALL_STATE(3056)] = 18951, + [SMALL_STATE(3057)] = 19018, + [SMALL_STATE(3058)] = 19085, + [SMALL_STATE(3059)] = 19152, + [SMALL_STATE(3060)] = 19219, + [SMALL_STATE(3061)] = 19286, + [SMALL_STATE(3062)] = 19353, + [SMALL_STATE(3063)] = 19420, + [SMALL_STATE(3064)] = 19487, + [SMALL_STATE(3065)] = 19554, + [SMALL_STATE(3066)] = 19621, + [SMALL_STATE(3067)] = 19688, + [SMALL_STATE(3068)] = 19755, + [SMALL_STATE(3069)] = 19822, + [SMALL_STATE(3070)] = 19889, + [SMALL_STATE(3071)] = 19956, + [SMALL_STATE(3072)] = 20023, + [SMALL_STATE(3073)] = 20090, + [SMALL_STATE(3074)] = 20157, + [SMALL_STATE(3075)] = 20224, + [SMALL_STATE(3076)] = 20291, + [SMALL_STATE(3077)] = 20358, + [SMALL_STATE(3078)] = 20425, + [SMALL_STATE(3079)] = 20492, + [SMALL_STATE(3080)] = 20559, + [SMALL_STATE(3081)] = 20626, + [SMALL_STATE(3082)] = 20693, + [SMALL_STATE(3083)] = 20760, + [SMALL_STATE(3084)] = 20827, + [SMALL_STATE(3085)] = 20894, + [SMALL_STATE(3086)] = 20961, + [SMALL_STATE(3087)] = 21028, + [SMALL_STATE(3088)] = 21095, + [SMALL_STATE(3089)] = 21162, + [SMALL_STATE(3090)] = 21229, + [SMALL_STATE(3091)] = 21296, + [SMALL_STATE(3092)] = 21363, + [SMALL_STATE(3093)] = 21430, + [SMALL_STATE(3094)] = 21497, + [SMALL_STATE(3095)] = 21564, + [SMALL_STATE(3096)] = 21681, + [SMALL_STATE(3097)] = 21798, + [SMALL_STATE(3098)] = 21865, + [SMALL_STATE(3099)] = 21982, + [SMALL_STATE(3100)] = 22053, + [SMALL_STATE(3101)] = 22120, + [SMALL_STATE(3102)] = 22187, + [SMALL_STATE(3103)] = 22257, + [SMALL_STATE(3104)] = 22327, + [SMALL_STATE(3105)] = 22397, + [SMALL_STATE(3106)] = 22467, + [SMALL_STATE(3107)] = 22537, + [SMALL_STATE(3108)] = 22607, + [SMALL_STATE(3109)] = 22683, + [SMALL_STATE(3110)] = 22753, + [SMALL_STATE(3111)] = 22825, + [SMALL_STATE(3112)] = 22895, + [SMALL_STATE(3113)] = 22967, + [SMALL_STATE(3114)] = 23037, + [SMALL_STATE(3115)] = 23113, + [SMALL_STATE(3116)] = 23195, + [SMALL_STATE(3117)] = 23277, + [SMALL_STATE(3118)] = 23359, + [SMALL_STATE(3119)] = 23427, + [SMALL_STATE(3120)] = 23497, + [SMALL_STATE(3121)] = 23567, + [SMALL_STATE(3122)] = 23649, + [SMALL_STATE(3123)] = 23725, + [SMALL_STATE(3124)] = 23841, + [SMALL_STATE(3125)] = 23957, + [SMALL_STATE(3126)] = 24027, + [SMALL_STATE(3127)] = 24097, + [SMALL_STATE(3128)] = 24163, + [SMALL_STATE(3129)] = 24272, + [SMALL_STATE(3130)] = 24343, + [SMALL_STATE(3131)] = 24422, + [SMALL_STATE(3132)] = 24503, + [SMALL_STATE(3133)] = 24568, + [SMALL_STATE(3134)] = 24635, + [SMALL_STATE(3135)] = 24702, + [SMALL_STATE(3136)] = 24781, + [SMALL_STATE(3137)] = 24856, + [SMALL_STATE(3138)] = 24921, + [SMALL_STATE(3139)] = 25002, + [SMALL_STATE(3140)] = 25077, + [SMALL_STATE(3141)] = 25158, + [SMALL_STATE(3142)] = 25229, + [SMALL_STATE(3143)] = 25306, + [SMALL_STATE(3144)] = 25377, + [SMALL_STATE(3145)] = 25448, + [SMALL_STATE(3146)] = 25519, + [SMALL_STATE(3147)] = 25584, + [SMALL_STATE(3148)] = 25649, + [SMALL_STATE(3149)] = 25714, + [SMALL_STATE(3150)] = 25779, + [SMALL_STATE(3151)] = 25844, + [SMALL_STATE(3152)] = 25909, + [SMALL_STATE(3153)] = 25974, + [SMALL_STATE(3154)] = 26039, + [SMALL_STATE(3155)] = 26116, + [SMALL_STATE(3156)] = 26187, + [SMALL_STATE(3157)] = 26258, + [SMALL_STATE(3158)] = 26367, + [SMALL_STATE(3159)] = 26480, + [SMALL_STATE(3160)] = 26585, + [SMALL_STATE(3161)] = 26686, + [SMALL_STATE(3162)] = 26785, + [SMALL_STATE(3163)] = 26882, + [SMALL_STATE(3164)] = 26977, + [SMALL_STATE(3165)] = 27068, + [SMALL_STATE(3166)] = 27155, + [SMALL_STATE(3167)] = 27264, + [SMALL_STATE(3168)] = 27377, + [SMALL_STATE(3169)] = 27486, + [SMALL_STATE(3170)] = 27599, + [SMALL_STATE(3171)] = 27670, + [SMALL_STATE(3172)] = 27735, + [SMALL_STATE(3173)] = 27806, + [SMALL_STATE(3174)] = 27883, + [SMALL_STATE(3175)] = 27992, + [SMALL_STATE(3176)] = 28057, + [SMALL_STATE(3177)] = 28122, + [SMALL_STATE(3178)] = 28193, + [SMALL_STATE(3179)] = 28260, + [SMALL_STATE(3180)] = 28325, + [SMALL_STATE(3181)] = 28406, + [SMALL_STATE(3182)] = 28489, + [SMALL_STATE(3183)] = 28574, + [SMALL_STATE(3184)] = 28639, + [SMALL_STATE(3185)] = 28716, + [SMALL_STATE(3186)] = 28787, + [SMALL_STATE(3187)] = 28858, + [SMALL_STATE(3188)] = 28939, + [SMALL_STATE(3189)] = 29009, + [SMALL_STATE(3190)] = 29079, + [SMALL_STATE(3191)] = 29143, + [SMALL_STATE(3192)] = 29213, + [SMALL_STATE(3193)] = 29331, + [SMALL_STATE(3194)] = 29395, + [SMALL_STATE(3195)] = 29463, + [SMALL_STATE(3196)] = 29527, + [SMALL_STATE(3197)] = 29645, + [SMALL_STATE(3198)] = 29709, + [SMALL_STATE(3199)] = 29779, + [SMALL_STATE(3200)] = 29891, + [SMALL_STATE(3201)] = 30003, + [SMALL_STATE(3202)] = 30067, + [SMALL_STATE(3203)] = 30137, + [SMALL_STATE(3204)] = 30207, + [SMALL_STATE(3205)] = 30277, + [SMALL_STATE(3206)] = 30343, + [SMALL_STATE(3207)] = 30407, + [SMALL_STATE(3208)] = 30477, + [SMALL_STATE(3209)] = 30541, + [SMALL_STATE(3210)] = 30611, + [SMALL_STATE(3211)] = 30675, + [SMALL_STATE(3212)] = 30745, + [SMALL_STATE(3213)] = 30815, + [SMALL_STATE(3214)] = 30885, + [SMALL_STATE(3215)] = 30994, + [SMALL_STATE(3216)] = 31057, + [SMALL_STATE(3217)] = 31166, + [SMALL_STATE(3218)] = 31245, + [SMALL_STATE(3219)] = 31350, + [SMALL_STATE(3220)] = 31451, + [SMALL_STATE(3221)] = 31548, + [SMALL_STATE(3222)] = 31643, + [SMALL_STATE(3223)] = 31734, + [SMALL_STATE(3224)] = 31823, + [SMALL_STATE(3225)] = 31886, + [SMALL_STATE(3226)] = 31995, + [SMALL_STATE(3227)] = 32112, + [SMALL_STATE(3228)] = 32225, + [SMALL_STATE(3229)] = 32310, + [SMALL_STATE(3230)] = 32391, + [SMALL_STATE(3231)] = 32474, + [SMALL_STATE(3232)] = 32537, + [SMALL_STATE(3233)] = 32608, + [SMALL_STATE(3234)] = 32725, + [SMALL_STATE(3235)] = 32788, + [SMALL_STATE(3236)] = 32905, + [SMALL_STATE(3237)] = 33014, + [SMALL_STATE(3238)] = 33175, + [SMALL_STATE(3239)] = 33284, + [SMALL_STATE(3240)] = 33401, + [SMALL_STATE(3241)] = 33510, + [SMALL_STATE(3242)] = 33619, + [SMALL_STATE(3243)] = 33690, + [SMALL_STATE(3244)] = 33763, + [SMALL_STATE(3245)] = 33826, + [SMALL_STATE(3246)] = 33935, + [SMALL_STATE(3247)] = 34008, + [SMALL_STATE(3248)] = 34071, + [SMALL_STATE(3249)] = 34180, + [SMALL_STATE(3250)] = 34293, + [SMALL_STATE(3251)] = 34356, + [SMALL_STATE(3252)] = 34469, + [SMALL_STATE(3253)] = 34540, + [SMALL_STATE(3254)] = 34701, + [SMALL_STATE(3255)] = 34810, + [SMALL_STATE(3256)] = 34919, + [SMALL_STATE(3257)] = 35028, + [SMALL_STATE(3258)] = 35137, + [SMALL_STATE(3259)] = 35246, + [SMALL_STATE(3260)] = 35313, + [SMALL_STATE(3261)] = 35422, + [SMALL_STATE(3262)] = 35531, + [SMALL_STATE(3263)] = 35640, + [SMALL_STATE(3264)] = 35749, + [SMALL_STATE(3265)] = 35822, + [SMALL_STATE(3266)] = 35931, + [SMALL_STATE(3267)] = 36040, + [SMALL_STATE(3268)] = 36149, + [SMALL_STATE(3269)] = 36212, + [SMALL_STATE(3270)] = 36321, + [SMALL_STATE(3271)] = 36430, + [SMALL_STATE(3272)] = 36539, + [SMALL_STATE(3273)] = 36648, + [SMALL_STATE(3274)] = 36757, + [SMALL_STATE(3275)] = 36866, + [SMALL_STATE(3276)] = 36975, + [SMALL_STATE(3277)] = 37054, + [SMALL_STATE(3278)] = 37171, + [SMALL_STATE(3279)] = 37244, + [SMALL_STATE(3280)] = 37323, + [SMALL_STATE(3281)] = 37396, + [SMALL_STATE(3282)] = 37557, + [SMALL_STATE(3283)] = 37666, + [SMALL_STATE(3284)] = 37775, + [SMALL_STATE(3285)] = 37854, + [SMALL_STATE(3286)] = 37927, + [SMALL_STATE(3287)] = 37996, + [SMALL_STATE(3288)] = 38105, + [SMALL_STATE(3289)] = 38214, + [SMALL_STATE(3290)] = 38293, + [SMALL_STATE(3291)] = 38366, + [SMALL_STATE(3292)] = 38475, + [SMALL_STATE(3293)] = 38584, + [SMALL_STATE(3294)] = 38693, + [SMALL_STATE(3295)] = 38802, + [SMALL_STATE(3296)] = 38867, + [SMALL_STATE(3297)] = 38932, + [SMALL_STATE(3298)] = 39041, + [SMALL_STATE(3299)] = 39158, + [SMALL_STATE(3300)] = 39224, + [SMALL_STATE(3301)] = 39286, + [SMALL_STATE(3302)] = 39394, + [SMALL_STATE(3303)] = 39506, + [SMALL_STATE(3304)] = 39568, + [SMALL_STATE(3305)] = 39630, + [SMALL_STATE(3306)] = 39738, + [SMALL_STATE(3307)] = 39800, + [SMALL_STATE(3308)] = 39870, + [SMALL_STATE(3309)] = 39938, + [SMALL_STATE(3310)] = 40000, + [SMALL_STATE(3311)] = 40068, + [SMALL_STATE(3312)] = 40184, + [SMALL_STATE(3313)] = 40246, + [SMALL_STATE(3314)] = 40308, + [SMALL_STATE(3315)] = 40374, + [SMALL_STATE(3316)] = 40464, + [SMALL_STATE(3317)] = 40526, + [SMALL_STATE(3318)] = 40588, + [SMALL_STATE(3319)] = 40660, + [SMALL_STATE(3320)] = 40732, + [SMALL_STATE(3321)] = 40848, + [SMALL_STATE(3322)] = 40910, + [SMALL_STATE(3323)] = 40998, + [SMALL_STATE(3324)] = 41082, + [SMALL_STATE(3325)] = 41144, + [SMALL_STATE(3326)] = 41206, + [SMALL_STATE(3327)] = 41318, + [SMALL_STATE(3328)] = 41380, + [SMALL_STATE(3329)] = 41488, + [SMALL_STATE(3330)] = 41600, + [SMALL_STATE(3331)] = 41668, + [SMALL_STATE(3332)] = 41730, + [SMALL_STATE(3333)] = 41846, + [SMALL_STATE(3334)] = 41908, + [SMALL_STATE(3335)] = 42012, + [SMALL_STATE(3336)] = 42084, + [SMALL_STATE(3337)] = 42200, + [SMALL_STATE(3338)] = 42262, + [SMALL_STATE(3339)] = 42324, + [SMALL_STATE(3340)] = 42390, + [SMALL_STATE(3341)] = 42452, + [SMALL_STATE(3342)] = 42520, + [SMALL_STATE(3343)] = 42582, + [SMALL_STATE(3344)] = 42644, + [SMALL_STATE(3345)] = 42706, + [SMALL_STATE(3346)] = 42778, + [SMALL_STATE(3347)] = 42844, + [SMALL_STATE(3348)] = 42960, + [SMALL_STATE(3349)] = 43060, + [SMALL_STATE(3350)] = 43132, + [SMALL_STATE(3351)] = 43194, + [SMALL_STATE(3352)] = 43256, + [SMALL_STATE(3353)] = 43318, + [SMALL_STATE(3354)] = 43380, + [SMALL_STATE(3355)] = 43496, + [SMALL_STATE(3356)] = 43564, + [SMALL_STATE(3357)] = 43630, + [SMALL_STATE(3358)] = 43698, + [SMALL_STATE(3359)] = 43760, + [SMALL_STATE(3360)] = 43822, + [SMALL_STATE(3361)] = 43884, + [SMALL_STATE(3362)] = 44000, + [SMALL_STATE(3363)] = 44062, + [SMALL_STATE(3364)] = 44124, + [SMALL_STATE(3365)] = 44192, + [SMALL_STATE(3366)] = 44254, + [SMALL_STATE(3367)] = 44322, + [SMALL_STATE(3368)] = 44390, + [SMALL_STATE(3369)] = 44454, + [SMALL_STATE(3370)] = 44516, + [SMALL_STATE(3371)] = 44578, + [SMALL_STATE(3372)] = 44694, + [SMALL_STATE(3373)] = 44762, + [SMALL_STATE(3374)] = 44830, + [SMALL_STATE(3375)] = 44892, + [SMALL_STATE(3376)] = 44954, + [SMALL_STATE(3377)] = 45070, + [SMALL_STATE(3378)] = 45166, + [SMALL_STATE(3379)] = 45282, + [SMALL_STATE(3380)] = 45350, + [SMALL_STATE(3381)] = 45412, + [SMALL_STATE(3382)] = 45474, + [SMALL_STATE(3383)] = 45536, + [SMALL_STATE(3384)] = 45598, + [SMALL_STATE(3385)] = 45660, + [SMALL_STATE(3386)] = 45722, + [SMALL_STATE(3387)] = 45784, + [SMALL_STATE(3388)] = 45846, + [SMALL_STATE(3389)] = 45912, + [SMALL_STATE(3390)] = 45980, + [SMALL_STATE(3391)] = 46042, + [SMALL_STATE(3392)] = 46150, + [SMALL_STATE(3393)] = 46218, + [SMALL_STATE(3394)] = 46326, + [SMALL_STATE(3395)] = 46394, + [SMALL_STATE(3396)] = 46462, + [SMALL_STATE(3397)] = 46556, + [SMALL_STATE(3398)] = 46618, + [SMALL_STATE(3399)] = 46696, + [SMALL_STATE(3400)] = 46758, + [SMALL_STATE(3401)] = 46838, + [SMALL_STATE(3402)] = 46920, + [SMALL_STATE(3403)] = 46988, + [SMALL_STATE(3404)] = 47056, + [SMALL_STATE(3405)] = 47122, + [SMALL_STATE(3406)] = 47184, + [SMALL_STATE(3407)] = 47254, + [SMALL_STATE(3408)] = 47316, + [SMALL_STATE(3409)] = 47378, + [SMALL_STATE(3410)] = 47440, + [SMALL_STATE(3411)] = 47502, + [SMALL_STATE(3412)] = 47564, + [SMALL_STATE(3413)] = 47628, + [SMALL_STATE(3414)] = 47694, + [SMALL_STATE(3415)] = 47809, + [SMALL_STATE(3416)] = 47870, + [SMALL_STATE(3417)] = 47947, + [SMALL_STATE(3418)] = 48022, + [SMALL_STATE(3419)] = 48125, + [SMALL_STATE(3420)] = 48224, + [SMALL_STATE(3421)] = 48319, + [SMALL_STATE(3422)] = 48412, + [SMALL_STATE(3423)] = 48501, + [SMALL_STATE(3424)] = 48588, + [SMALL_STATE(3425)] = 48649, + [SMALL_STATE(3426)] = 48732, + [SMALL_STATE(3427)] = 48811, + [SMALL_STATE(3428)] = 48876, + [SMALL_STATE(3429)] = 48957, + [SMALL_STATE(3430)] = 49024, + [SMALL_STATE(3431)] = 49085, + [SMALL_STATE(3432)] = 49150, + [SMALL_STATE(3433)] = 49217, + [SMALL_STATE(3434)] = 49278, + [SMALL_STATE(3435)] = 49339, + [SMALL_STATE(3436)] = 49404, + [SMALL_STATE(3437)] = 49479, + [SMALL_STATE(3438)] = 49540, + [SMALL_STATE(3439)] = 49601, + [SMALL_STATE(3440)] = 49668, + [SMALL_STATE(3441)] = 49729, + [SMALL_STATE(3442)] = 49790, + [SMALL_STATE(3443)] = 49851, + [SMALL_STATE(3444)] = 49912, + [SMALL_STATE(3445)] = 49973, + [SMALL_STATE(3446)] = 50034, + [SMALL_STATE(3447)] = 50095, + [SMALL_STATE(3448)] = 50156, + [SMALL_STATE(3449)] = 50217, + [SMALL_STATE(3450)] = 50292, + [SMALL_STATE(3451)] = 50367, + [SMALL_STATE(3452)] = 50428, + [SMALL_STATE(3453)] = 50535, + [SMALL_STATE(3454)] = 50608, + [SMALL_STATE(3455)] = 50683, + [SMALL_STATE(3456)] = 50744, + [SMALL_STATE(3457)] = 50805, + [SMALL_STATE(3458)] = 50912, + [SMALL_STATE(3459)] = 50973, + [SMALL_STATE(3460)] = 51034, + [SMALL_STATE(3461)] = 51099, + [SMALL_STATE(3462)] = 51164, + [SMALL_STATE(3463)] = 51225, + [SMALL_STATE(3464)] = 51286, + [SMALL_STATE(3465)] = 51347, + [SMALL_STATE(3466)] = 51408, + [SMALL_STATE(3467)] = 51469, + [SMALL_STATE(3468)] = 51530, + [SMALL_STATE(3469)] = 51591, + [SMALL_STATE(3470)] = 51698, + [SMALL_STATE(3471)] = 51761, + [SMALL_STATE(3472)] = 51826, + [SMALL_STATE(3473)] = 51887, + [SMALL_STATE(3474)] = 51954, + [SMALL_STATE(3475)] = 52065, + [SMALL_STATE(3476)] = 52126, + [SMALL_STATE(3477)] = 52187, + [SMALL_STATE(3478)] = 52294, + [SMALL_STATE(3479)] = 52355, + [SMALL_STATE(3480)] = 52416, + [SMALL_STATE(3481)] = 52477, + [SMALL_STATE(3482)] = 52538, + [SMALL_STATE(3483)] = 52605, + [SMALL_STATE(3484)] = 52672, + [SMALL_STATE(3485)] = 52733, + [SMALL_STATE(3486)] = 52794, + [SMALL_STATE(3487)] = 52855, + [SMALL_STATE(3488)] = 52916, + [SMALL_STATE(3489)] = 52977, + [SMALL_STATE(3490)] = 53038, + [SMALL_STATE(3491)] = 53099, + [SMALL_STATE(3492)] = 53176, + [SMALL_STATE(3493)] = 53245, + [SMALL_STATE(3494)] = 53310, + [SMALL_STATE(3495)] = 53373, + [SMALL_STATE(3496)] = 53436, + [SMALL_STATE(3497)] = 53547, + [SMALL_STATE(3498)] = 53608, + [SMALL_STATE(3499)] = 53669, + [SMALL_STATE(3500)] = 53730, + [SMALL_STATE(3501)] = 53791, + [SMALL_STATE(3502)] = 53852, + [SMALL_STATE(3503)] = 53917, + [SMALL_STATE(3504)] = 53986, + [SMALL_STATE(3505)] = 54055, + [SMALL_STATE(3506)] = 54170, + [SMALL_STATE(3507)] = 54233, + [SMALL_STATE(3508)] = 54294, + [SMALL_STATE(3509)] = 54355, + [SMALL_STATE(3510)] = 54416, + [SMALL_STATE(3511)] = 54485, + [SMALL_STATE(3512)] = 54546, + [SMALL_STATE(3513)] = 54607, + [SMALL_STATE(3514)] = 54668, + [SMALL_STATE(3515)] = 54775, + [SMALL_STATE(3516)] = 54844, + [SMALL_STATE(3517)] = 54905, + [SMALL_STATE(3518)] = 54972, + [SMALL_STATE(3519)] = 55045, + [SMALL_STATE(3520)] = 55106, + [SMALL_STATE(3521)] = 55167, + [SMALL_STATE(3522)] = 55278, + [SMALL_STATE(3523)] = 55339, + [SMALL_STATE(3524)] = 55400, + [SMALL_STATE(3525)] = 55506, + [SMALL_STATE(3526)] = 55620, + [SMALL_STATE(3527)] = 55680, + [SMALL_STATE(3528)] = 55740, + [SMALL_STATE(3529)] = 55800, + [SMALL_STATE(3530)] = 55904, + [SMALL_STATE(3531)] = 55964, + [SMALL_STATE(3532)] = 56038, + [SMALL_STATE(3533)] = 56194, + [SMALL_STATE(3534)] = 56254, + [SMALL_STATE(3535)] = 56314, + [SMALL_STATE(3536)] = 56374, + [SMALL_STATE(3537)] = 56436, + [SMALL_STATE(3538)] = 56550, + [SMALL_STATE(3539)] = 56626, + [SMALL_STATE(3540)] = 56782, + [SMALL_STATE(3541)] = 56842, + [SMALL_STATE(3542)] = 56902, + [SMALL_STATE(3543)] = 57058, + [SMALL_STATE(3544)] = 57118, + [SMALL_STATE(3545)] = 57192, + [SMALL_STATE(3546)] = 57348, + [SMALL_STATE(3547)] = 57408, + [SMALL_STATE(3548)] = 57468, + [SMALL_STATE(3549)] = 57534, + [SMALL_STATE(3550)] = 57594, + [SMALL_STATE(3551)] = 57654, + [SMALL_STATE(3552)] = 57810, + [SMALL_STATE(3553)] = 57870, + [SMALL_STATE(3554)] = 57970, + [SMALL_STATE(3555)] = 58030, + [SMALL_STATE(3556)] = 58134, + [SMALL_STATE(3557)] = 58194, + [SMALL_STATE(3558)] = 58254, + [SMALL_STATE(3559)] = 58314, + [SMALL_STATE(3560)] = 58374, + [SMALL_STATE(3561)] = 58488, + [SMALL_STATE(3562)] = 58584, + [SMALL_STATE(3563)] = 58676, + [SMALL_STATE(3564)] = 58736, + [SMALL_STATE(3565)] = 58800, + [SMALL_STATE(3566)] = 58890, + [SMALL_STATE(3567)] = 58954, + [SMALL_STATE(3568)] = 59018, + [SMALL_STATE(3569)] = 59078, + [SMALL_STATE(3570)] = 59164, + [SMALL_STATE(3571)] = 59272, + [SMALL_STATE(3572)] = 59332, + [SMALL_STATE(3573)] = 59416, + [SMALL_STATE(3574)] = 59490, + [SMALL_STATE(3575)] = 59550, + [SMALL_STATE(3576)] = 59610, + [SMALL_STATE(3577)] = 59672, + [SMALL_STATE(3578)] = 59734, + [SMALL_STATE(3579)] = 59794, + [SMALL_STATE(3580)] = 59908, + [SMALL_STATE(3581)] = 60016, + [SMALL_STATE(3582)] = 60098, + [SMALL_STATE(3583)] = 60212, + [SMALL_STATE(3584)] = 60280, + [SMALL_STATE(3585)] = 60340, + [SMALL_STATE(3586)] = 60418, + [SMALL_STATE(3587)] = 60478, + [SMALL_STATE(3588)] = 60538, + [SMALL_STATE(3589)] = 60600, + [SMALL_STATE(3590)] = 60660, + [SMALL_STATE(3591)] = 60740, + [SMALL_STATE(3592)] = 60806, + [SMALL_STATE(3593)] = 60870, + [SMALL_STATE(3594)] = 60936, + [SMALL_STATE(3595)] = 61092, + [SMALL_STATE(3596)] = 61196, + [SMALL_STATE(3597)] = 61256, + [SMALL_STATE(3598)] = 61316, + [SMALL_STATE(3599)] = 61382, + [SMALL_STATE(3600)] = 61442, + [SMALL_STATE(3601)] = 61598, + [SMALL_STATE(3602)] = 61706, + [SMALL_STATE(3603)] = 61770, + [SMALL_STATE(3604)] = 61830, + [SMALL_STATE(3605)] = 61904, + [SMALL_STATE(3606)] = 62008, + [SMALL_STATE(3607)] = 62074, + [SMALL_STATE(3608)] = 62134, + [SMALL_STATE(3609)] = 62206, + [SMALL_STATE(3610)] = 62266, + [SMALL_STATE(3611)] = 62332, + [SMALL_STATE(3612)] = 62396, + [SMALL_STATE(3613)] = 62552, + [SMALL_STATE(3614)] = 62664, + [SMALL_STATE(3615)] = 62724, + [SMALL_STATE(3616)] = 62790, + [SMALL_STATE(3617)] = 62850, + [SMALL_STATE(3618)] = 62920, + [SMALL_STATE(3619)] = 62980, + [SMALL_STATE(3620)] = 63040, + [SMALL_STATE(3621)] = 63112, + [SMALL_STATE(3622)] = 63218, + [SMALL_STATE(3623)] = 63292, + [SMALL_STATE(3624)] = 63366, + [SMALL_STATE(3625)] = 63440, + [SMALL_STATE(3626)] = 63546, + [SMALL_STATE(3627)] = 63618, + [SMALL_STATE(3628)] = 63724, + [SMALL_STATE(3629)] = 63834, + [SMALL_STATE(3630)] = 63910, + [SMALL_STATE(3631)] = 63984, + [SMALL_STATE(3632)] = 64086, + [SMALL_STATE(3633)] = 64184, + [SMALL_STATE(3634)] = 64278, + [SMALL_STATE(3635)] = 64370, + [SMALL_STATE(3636)] = 64458, + [SMALL_STATE(3637)] = 64544, + [SMALL_STATE(3638)] = 64626, + [SMALL_STATE(3639)] = 64704, + [SMALL_STATE(3640)] = 64784, + [SMALL_STATE(3641)] = 64858, + [SMALL_STATE(3642)] = 64964, + [SMALL_STATE(3643)] = 65074, + [SMALL_STATE(3644)] = 65134, + [SMALL_STATE(3645)] = 65244, + [SMALL_STATE(3646)] = 65304, + [SMALL_STATE(3647)] = 65418, + [SMALL_STATE(3648)] = 65488, + [SMALL_STATE(3649)] = 65548, + [SMALL_STATE(3650)] = 65608, + [SMALL_STATE(3651)] = 65668, + [SMALL_STATE(3652)] = 65742, + [SMALL_STATE(3653)] = 65856, + [SMALL_STATE(3654)] = 65916, + [SMALL_STATE(3655)] = 65976, + [SMALL_STATE(3656)] = 66038, + [SMALL_STATE(3657)] = 66098, + [SMALL_STATE(3658)] = 66158, + [SMALL_STATE(3659)] = 66218, + [SMALL_STATE(3660)] = 66290, + [SMALL_STATE(3661)] = 66394, + [SMALL_STATE(3662)] = 66550, + [SMALL_STATE(3663)] = 66618, + [SMALL_STATE(3664)] = 66677, + [SMALL_STATE(3665)] = 66736, + [SMALL_STATE(3666)] = 66795, + [SMALL_STATE(3667)] = 66854, + [SMALL_STATE(3668)] = 66913, + [SMALL_STATE(3669)] = 67026, + [SMALL_STATE(3670)] = 67085, + [SMALL_STATE(3671)] = 67144, + [SMALL_STATE(3672)] = 67203, + [SMALL_STATE(3673)] = 67316, + [SMALL_STATE(3674)] = 67375, + [SMALL_STATE(3675)] = 67434, + [SMALL_STATE(3676)] = 67493, + [SMALL_STATE(3677)] = 67552, + [SMALL_STATE(3678)] = 67611, + [SMALL_STATE(3679)] = 67670, + [SMALL_STATE(3680)] = 67731, + [SMALL_STATE(3681)] = 67790, + [SMALL_STATE(3682)] = 67849, + [SMALL_STATE(3683)] = 67908, + [SMALL_STATE(3684)] = 67967, + [SMALL_STATE(3685)] = 68026, + [SMALL_STATE(3686)] = 68085, + [SMALL_STATE(3687)] = 68144, + [SMALL_STATE(3688)] = 68203, + [SMALL_STATE(3689)] = 68262, + [SMALL_STATE(3690)] = 68321, + [SMALL_STATE(3691)] = 68390, + [SMALL_STATE(3692)] = 68487, + [SMALL_STATE(3693)] = 68584, + [SMALL_STATE(3694)] = 68643, + [SMALL_STATE(3695)] = 68740, + [SMALL_STATE(3696)] = 68837, + [SMALL_STATE(3697)] = 68900, + [SMALL_STATE(3698)] = 68959, + [SMALL_STATE(3699)] = 69018, + [SMALL_STATE(3700)] = 69077, + [SMALL_STATE(3701)] = 69136, + [SMALL_STATE(3702)] = 69195, + [SMALL_STATE(3703)] = 69254, + [SMALL_STATE(3704)] = 69313, + [SMALL_STATE(3705)] = 69382, + [SMALL_STATE(3706)] = 69441, + [SMALL_STATE(3707)] = 69500, + [SMALL_STATE(3708)] = 69559, + [SMALL_STATE(3709)] = 69618, + [SMALL_STATE(3710)] = 69715, + [SMALL_STATE(3711)] = 69812, + [SMALL_STATE(3712)] = 69871, + [SMALL_STATE(3713)] = 69934, + [SMALL_STATE(3714)] = 69993, + [SMALL_STATE(3715)] = 70052, + [SMALL_STATE(3716)] = 70111, + [SMALL_STATE(3717)] = 70174, + [SMALL_STATE(3718)] = 70233, + [SMALL_STATE(3719)] = 70292, + [SMALL_STATE(3720)] = 70351, + [SMALL_STATE(3721)] = 70416, + [SMALL_STATE(3722)] = 70475, + [SMALL_STATE(3723)] = 70534, + [SMALL_STATE(3724)] = 70593, + [SMALL_STATE(3725)] = 70652, + [SMALL_STATE(3726)] = 70711, + [SMALL_STATE(3727)] = 70770, + [SMALL_STATE(3728)] = 70829, + [SMALL_STATE(3729)] = 70888, + [SMALL_STATE(3730)] = 70947, + [SMALL_STATE(3731)] = 71010, + [SMALL_STATE(3732)] = 71069, + [SMALL_STATE(3733)] = 71138, + [SMALL_STATE(3734)] = 71197, + [SMALL_STATE(3735)] = 71256, + [SMALL_STATE(3736)] = 71317, + [SMALL_STATE(3737)] = 71376, + [SMALL_STATE(3738)] = 71435, + [SMALL_STATE(3739)] = 71494, + [SMALL_STATE(3740)] = 71553, + [SMALL_STATE(3741)] = 71612, + [SMALL_STATE(3742)] = 71671, + [SMALL_STATE(3743)] = 71730, + [SMALL_STATE(3744)] = 71789, + [SMALL_STATE(3745)] = 71848, + [SMALL_STATE(3746)] = 71907, + [SMALL_STATE(3747)] = 71966, + [SMALL_STATE(3748)] = 72027, + [SMALL_STATE(3749)] = 72086, + [SMALL_STATE(3750)] = 72145, + [SMALL_STATE(3751)] = 72204, + [SMALL_STATE(3752)] = 72263, + [SMALL_STATE(3753)] = 72322, + [SMALL_STATE(3754)] = 72381, + [SMALL_STATE(3755)] = 72440, + [SMALL_STATE(3756)] = 72499, + [SMALL_STATE(3757)] = 72558, + [SMALL_STATE(3758)] = 72617, + [SMALL_STATE(3759)] = 72676, + [SMALL_STATE(3760)] = 72743, + [SMALL_STATE(3761)] = 72802, + [SMALL_STATE(3762)] = 72861, + [SMALL_STATE(3763)] = 72920, + [SMALL_STATE(3764)] = 72979, + [SMALL_STATE(3765)] = 73038, + [SMALL_STATE(3766)] = 73097, + [SMALL_STATE(3767)] = 73156, + [SMALL_STATE(3768)] = 73215, + [SMALL_STATE(3769)] = 73274, + [SMALL_STATE(3770)] = 73333, + [SMALL_STATE(3771)] = 73392, + [SMALL_STATE(3772)] = 73451, + [SMALL_STATE(3773)] = 73510, + [SMALL_STATE(3774)] = 73569, + [SMALL_STATE(3775)] = 73628, + [SMALL_STATE(3776)] = 73687, + [SMALL_STATE(3777)] = 73746, + [SMALL_STATE(3778)] = 73805, + [SMALL_STATE(3779)] = 73864, + [SMALL_STATE(3780)] = 73923, + [SMALL_STATE(3781)] = 73982, + [SMALL_STATE(3782)] = 74041, + [SMALL_STATE(3783)] = 74100, + [SMALL_STATE(3784)] = 74159, + [SMALL_STATE(3785)] = 74218, + [SMALL_STATE(3786)] = 74277, + [SMALL_STATE(3787)] = 74336, + [SMALL_STATE(3788)] = 74395, + [SMALL_STATE(3789)] = 74454, + [SMALL_STATE(3790)] = 74513, + [SMALL_STATE(3791)] = 74572, + [SMALL_STATE(3792)] = 74639, + [SMALL_STATE(3793)] = 74698, + [SMALL_STATE(3794)] = 74763, + [SMALL_STATE(3795)] = 74822, + [SMALL_STATE(3796)] = 74887, + [SMALL_STATE(3797)] = 74952, + [SMALL_STATE(3798)] = 75065, + [SMALL_STATE(3799)] = 75178, + [SMALL_STATE(3800)] = 75291, + [SMALL_STATE(3801)] = 75350, + [SMALL_STATE(3802)] = 75409, + [SMALL_STATE(3803)] = 75476, + [SMALL_STATE(3804)] = 75535, + [SMALL_STATE(3805)] = 75594, + [SMALL_STATE(3806)] = 75653, + [SMALL_STATE(3807)] = 75712, + [SMALL_STATE(3808)] = 75771, + [SMALL_STATE(3809)] = 75830, + [SMALL_STATE(3810)] = 75895, + [SMALL_STATE(3811)] = 75954, + [SMALL_STATE(3812)] = 76013, + [SMALL_STATE(3813)] = 76072, + [SMALL_STATE(3814)] = 76131, + [SMALL_STATE(3815)] = 76190, + [SMALL_STATE(3816)] = 76249, + [SMALL_STATE(3817)] = 76308, + [SMALL_STATE(3818)] = 76367, + [SMALL_STATE(3819)] = 76426, + [SMALL_STATE(3820)] = 76485, + [SMALL_STATE(3821)] = 76544, + [SMALL_STATE(3822)] = 76603, + [SMALL_STATE(3823)] = 76662, + [SMALL_STATE(3824)] = 76721, + [SMALL_STATE(3825)] = 76780, + [SMALL_STATE(3826)] = 76839, + [SMALL_STATE(3827)] = 76898, + [SMALL_STATE(3828)] = 76957, + [SMALL_STATE(3829)] = 77016, + [SMALL_STATE(3830)] = 77075, + [SMALL_STATE(3831)] = 77142, + [SMALL_STATE(3832)] = 77201, + [SMALL_STATE(3833)] = 77260, + [SMALL_STATE(3834)] = 77325, + [SMALL_STATE(3835)] = 77438, + [SMALL_STATE(3836)] = 77501, + [SMALL_STATE(3837)] = 77566, + [SMALL_STATE(3838)] = 77625, + [SMALL_STATE(3839)] = 77684, + [SMALL_STATE(3840)] = 77743, + [SMALL_STATE(3841)] = 77812, + [SMALL_STATE(3842)] = 77875, + [SMALL_STATE(3843)] = 77938, + [SMALL_STATE(3844)] = 78001, + [SMALL_STATE(3845)] = 78064, + [SMALL_STATE(3846)] = 78123, + [SMALL_STATE(3847)] = 78186, + [SMALL_STATE(3848)] = 78249, + [SMALL_STATE(3849)] = 78312, + [SMALL_STATE(3850)] = 78371, + [SMALL_STATE(3851)] = 78430, + [SMALL_STATE(3852)] = 78489, + [SMALL_STATE(3853)] = 78548, + [SMALL_STATE(3854)] = 78607, + [SMALL_STATE(3855)] = 78666, + [SMALL_STATE(3856)] = 78729, + [SMALL_STATE(3857)] = 78788, + [SMALL_STATE(3858)] = 78847, + [SMALL_STATE(3859)] = 78910, + [SMALL_STATE(3860)] = 78973, + [SMALL_STATE(3861)] = 79036, + [SMALL_STATE(3862)] = 79099, + [SMALL_STATE(3863)] = 79158, + [SMALL_STATE(3864)] = 79217, + [SMALL_STATE(3865)] = 79276, + [SMALL_STATE(3866)] = 79335, + [SMALL_STATE(3867)] = 79394, + [SMALL_STATE(3868)] = 79455, + [SMALL_STATE(3869)] = 79514, + [SMALL_STATE(3870)] = 79620, + [SMALL_STATE(3871)] = 79678, + [SMALL_STATE(3872)] = 79736, + [SMALL_STATE(3873)] = 79794, + [SMALL_STATE(3874)] = 79852, + [SMALL_STATE(3875)] = 79910, + [SMALL_STATE(3876)] = 79968, + [SMALL_STATE(3877)] = 80026, + [SMALL_STATE(3878)] = 80084, + [SMALL_STATE(3879)] = 80142, + [SMALL_STATE(3880)] = 80200, + [SMALL_STATE(3881)] = 80258, + [SMALL_STATE(3882)] = 80316, + [SMALL_STATE(3883)] = 80374, + [SMALL_STATE(3884)] = 80432, + [SMALL_STATE(3885)] = 80490, + [SMALL_STATE(3886)] = 80548, + [SMALL_STATE(3887)] = 80606, + [SMALL_STATE(3888)] = 80664, + [SMALL_STATE(3889)] = 80726, + [SMALL_STATE(3890)] = 80784, + [SMALL_STATE(3891)] = 80842, + [SMALL_STATE(3892)] = 80900, + [SMALL_STATE(3893)] = 80958, + [SMALL_STATE(3894)] = 81016, + [SMALL_STATE(3895)] = 81074, + [SMALL_STATE(3896)] = 81132, + [SMALL_STATE(3897)] = 81190, + [SMALL_STATE(3898)] = 81248, + [SMALL_STATE(3899)] = 81306, + [SMALL_STATE(3900)] = 81364, + [SMALL_STATE(3901)] = 81422, + [SMALL_STATE(3902)] = 81480, + [SMALL_STATE(3903)] = 81538, + [SMALL_STATE(3904)] = 81598, + [SMALL_STATE(3905)] = 81658, + [SMALL_STATE(3906)] = 81716, + [SMALL_STATE(3907)] = 81774, + [SMALL_STATE(3908)] = 81844, + [SMALL_STATE(3909)] = 81902, + [SMALL_STATE(3910)] = 81960, + [SMALL_STATE(3911)] = 82018, + [SMALL_STATE(3912)] = 82076, + [SMALL_STATE(3913)] = 82134, + [SMALL_STATE(3914)] = 82204, + [SMALL_STATE(3915)] = 82262, + [SMALL_STATE(3916)] = 82322, + [SMALL_STATE(3917)] = 82380, + [SMALL_STATE(3918)] = 82438, + [SMALL_STATE(3919)] = 82500, + [SMALL_STATE(3920)] = 82570, + [SMALL_STATE(3921)] = 82672, + [SMALL_STATE(3922)] = 82730, + [SMALL_STATE(3923)] = 82788, + [SMALL_STATE(3924)] = 82846, + [SMALL_STATE(3925)] = 82908, + [SMALL_STATE(3926)] = 82966, + [SMALL_STATE(3927)] = 83038, + [SMALL_STATE(3928)] = 83110, + [SMALL_STATE(3929)] = 83172, + [SMALL_STATE(3930)] = 83274, + [SMALL_STATE(3931)] = 83344, + [SMALL_STATE(3932)] = 83402, + [SMALL_STATE(3933)] = 83460, + [SMALL_STATE(3934)] = 83518, + [SMALL_STATE(3935)] = 83576, + [SMALL_STATE(3936)] = 83634, + [SMALL_STATE(3937)] = 83692, + [SMALL_STATE(3938)] = 83750, + [SMALL_STATE(3939)] = 83852, + [SMALL_STATE(3940)] = 83910, + [SMALL_STATE(3941)] = 83968, + [SMALL_STATE(3942)] = 84026, + [SMALL_STATE(3943)] = 84084, + [SMALL_STATE(3944)] = 84154, + [SMALL_STATE(3945)] = 84212, + [SMALL_STATE(3946)] = 84270, + [SMALL_STATE(3947)] = 84328, + [SMALL_STATE(3948)] = 84386, + [SMALL_STATE(3949)] = 84444, + [SMALL_STATE(3950)] = 84550, + [SMALL_STATE(3951)] = 84608, + [SMALL_STATE(3952)] = 84670, + [SMALL_STATE(3953)] = 84732, + [SMALL_STATE(3954)] = 84790, + [SMALL_STATE(3955)] = 84848, + [SMALL_STATE(3956)] = 84922, + [SMALL_STATE(3957)] = 84994, + [SMALL_STATE(3958)] = 85094, + [SMALL_STATE(3959)] = 85192, + [SMALL_STATE(3960)] = 85286, + [SMALL_STATE(3961)] = 85376, + [SMALL_STATE(3962)] = 85462, + [SMALL_STATE(3963)] = 85546, + [SMALL_STATE(3964)] = 85626, + [SMALL_STATE(3965)] = 85702, + [SMALL_STATE(3966)] = 85780, + [SMALL_STATE(3967)] = 85846, + [SMALL_STATE(3968)] = 85918, + [SMALL_STATE(3969)] = 85984, + [SMALL_STATE(3970)] = 86042, + [SMALL_STATE(3971)] = 86100, + [SMALL_STATE(3972)] = 86158, + [SMALL_STATE(3973)] = 86216, + [SMALL_STATE(3974)] = 86274, + [SMALL_STATE(3975)] = 86332, + [SMALL_STATE(3976)] = 86390, + [SMALL_STATE(3977)] = 86448, + [SMALL_STATE(3978)] = 86506, + [SMALL_STATE(3979)] = 86564, + [SMALL_STATE(3980)] = 86622, + [SMALL_STATE(3981)] = 86680, + [SMALL_STATE(3982)] = 86740, + [SMALL_STATE(3983)] = 86798, + [SMALL_STATE(3984)] = 86856, + [SMALL_STATE(3985)] = 86958, + [SMALL_STATE(3986)] = 87016, + [SMALL_STATE(3987)] = 87074, + [SMALL_STATE(3988)] = 87132, + [SMALL_STATE(3989)] = 87238, + [SMALL_STATE(3990)] = 87340, + [SMALL_STATE(3991)] = 87410, + [SMALL_STATE(3992)] = 87468, + [SMALL_STATE(3993)] = 87526, + [SMALL_STATE(3994)] = 87584, + [SMALL_STATE(3995)] = 87642, + [SMALL_STATE(3996)] = 87700, + [SMALL_STATE(3997)] = 87770, + [SMALL_STATE(3998)] = 87840, + [SMALL_STATE(3999)] = 87898, + [SMALL_STATE(4000)] = 87956, + [SMALL_STATE(4001)] = 88014, + [SMALL_STATE(4002)] = 88072, + [SMALL_STATE(4003)] = 88130, + [SMALL_STATE(4004)] = 88188, + [SMALL_STATE(4005)] = 88250, + [SMALL_STATE(4006)] = 88308, + [SMALL_STATE(4007)] = 88414, + [SMALL_STATE(4008)] = 88472, + [SMALL_STATE(4009)] = 88530, + [SMALL_STATE(4010)] = 88594, + [SMALL_STATE(4011)] = 88656, + [SMALL_STATE(4012)] = 88714, + [SMALL_STATE(4013)] = 88772, + [SMALL_STATE(4014)] = 88834, + [SMALL_STATE(4015)] = 88892, + [SMALL_STATE(4016)] = 88950, + [SMALL_STATE(4017)] = 89008, + [SMALL_STATE(4018)] = 89078, + [SMALL_STATE(4019)] = 89136, + [SMALL_STATE(4020)] = 89194, + [SMALL_STATE(4021)] = 89254, + [SMALL_STATE(4022)] = 89317, + [SMALL_STATE(4023)] = 89420, + [SMALL_STATE(4024)] = 89523, + [SMALL_STATE(4025)] = 89626, + [SMALL_STATE(4026)] = 89691, + [SMALL_STATE(4027)] = 89754, + [SMALL_STATE(4028)] = 89857, + [SMALL_STATE(4029)] = 89926, + [SMALL_STATE(4030)] = 89983, + [SMALL_STATE(4031)] = 90086, + [SMALL_STATE(4032)] = 90189, + [SMALL_STATE(4033)] = 90292, + [SMALL_STATE(4034)] = 90395, + [SMALL_STATE(4035)] = 90498, + [SMALL_STATE(4036)] = 90567, + [SMALL_STATE(4037)] = 90624, + [SMALL_STATE(4038)] = 90727, + [SMALL_STATE(4039)] = 90830, + [SMALL_STATE(4040)] = 90933, + [SMALL_STATE(4041)] = 90990, + [SMALL_STATE(4042)] = 91093, + [SMALL_STATE(4043)] = 91164, + [SMALL_STATE(4044)] = 91221, + [SMALL_STATE(4045)] = 91324, + [SMALL_STATE(4046)] = 91427, + [SMALL_STATE(4047)] = 91530, + [SMALL_STATE(4048)] = 91633, + [SMALL_STATE(4049)] = 91736, + [SMALL_STATE(4050)] = 91839, + [SMALL_STATE(4051)] = 91896, + [SMALL_STATE(4052)] = 91999, + [SMALL_STATE(4053)] = 92102, + [SMALL_STATE(4054)] = 92205, + [SMALL_STATE(4055)] = 92308, + [SMALL_STATE(4056)] = 92411, + [SMALL_STATE(4057)] = 92514, + [SMALL_STATE(4058)] = 92617, + [SMALL_STATE(4059)] = 92674, + [SMALL_STATE(4060)] = 92777, + [SMALL_STATE(4061)] = 92848, + [SMALL_STATE(4062)] = 92951, + [SMALL_STATE(4063)] = 93054, + [SMALL_STATE(4064)] = 93125, + [SMALL_STATE(4065)] = 93220, + [SMALL_STATE(4066)] = 93315, + [SMALL_STATE(4067)] = 93418, + [SMALL_STATE(4068)] = 93521, + [SMALL_STATE(4069)] = 93624, + [SMALL_STATE(4070)] = 93727, + [SMALL_STATE(4071)] = 93830, + [SMALL_STATE(4072)] = 93891, + [SMALL_STATE(4073)] = 93954, + [SMALL_STATE(4074)] = 94057, + [SMALL_STATE(4075)] = 94160, + [SMALL_STATE(4076)] = 94217, + [SMALL_STATE(4077)] = 94320, + [SMALL_STATE(4078)] = 94423, + [SMALL_STATE(4079)] = 94526, + [SMALL_STATE(4080)] = 94629, + [SMALL_STATE(4081)] = 94732, + [SMALL_STATE(4082)] = 94789, + [SMALL_STATE(4083)] = 94892, + [SMALL_STATE(4084)] = 94995, + [SMALL_STATE(4085)] = 95098, + [SMALL_STATE(4086)] = 95201, + [SMALL_STATE(4087)] = 95304, + [SMALL_STATE(4088)] = 95375, + [SMALL_STATE(4089)] = 95478, + [SMALL_STATE(4090)] = 95581, + [SMALL_STATE(4091)] = 95684, + [SMALL_STATE(4092)] = 95787, + [SMALL_STATE(4093)] = 95890, + [SMALL_STATE(4094)] = 95947, + [SMALL_STATE(4095)] = 96004, + [SMALL_STATE(4096)] = 96107, + [SMALL_STATE(4097)] = 96210, + [SMALL_STATE(4098)] = 96267, + [SMALL_STATE(4099)] = 96326, + [SMALL_STATE(4100)] = 96383, + [SMALL_STATE(4101)] = 96486, + [SMALL_STATE(4102)] = 96589, + [SMALL_STATE(4103)] = 96692, + [SMALL_STATE(4104)] = 96795, + [SMALL_STATE(4105)] = 96898, + [SMALL_STATE(4106)] = 96955, + [SMALL_STATE(4107)] = 97058, + [SMALL_STATE(4108)] = 97161, + [SMALL_STATE(4109)] = 97218, + [SMALL_STATE(4110)] = 97321, + [SMALL_STATE(4111)] = 97424, + [SMALL_STATE(4112)] = 97527, + [SMALL_STATE(4113)] = 97590, + [SMALL_STATE(4114)] = 97693, + [SMALL_STATE(4115)] = 97796, + [SMALL_STATE(4116)] = 97899, + [SMALL_STATE(4117)] = 98002, + [SMALL_STATE(4118)] = 98105, + [SMALL_STATE(4119)] = 98208, + [SMALL_STATE(4120)] = 98311, + [SMALL_STATE(4121)] = 98414, + [SMALL_STATE(4122)] = 98517, + [SMALL_STATE(4123)] = 98620, + [SMALL_STATE(4124)] = 98676, + [SMALL_STATE(4125)] = 98776, + [SMALL_STATE(4126)] = 98832, + [SMALL_STATE(4127)] = 98888, + [SMALL_STATE(4128)] = 98944, + [SMALL_STATE(4129)] = 99000, + [SMALL_STATE(4130)] = 99056, + [SMALL_STATE(4131)] = 99112, + [SMALL_STATE(4132)] = 99168, + [SMALL_STATE(4133)] = 99224, + [SMALL_STATE(4134)] = 99280, + [SMALL_STATE(4135)] = 99336, + [SMALL_STATE(4136)] = 99392, + [SMALL_STATE(4137)] = 99448, + [SMALL_STATE(4138)] = 99512, + [SMALL_STATE(4139)] = 99568, + [SMALL_STATE(4140)] = 99624, + [SMALL_STATE(4141)] = 99680, + [SMALL_STATE(4142)] = 99780, + [SMALL_STATE(4143)] = 99836, + [SMALL_STATE(4144)] = 99892, + [SMALL_STATE(4145)] = 99948, + [SMALL_STATE(4146)] = 100004, + [SMALL_STATE(4147)] = 100060, + [SMALL_STATE(4148)] = 100116, + [SMALL_STATE(4149)] = 100172, + [SMALL_STATE(4150)] = 100228, + [SMALL_STATE(4151)] = 100328, + [SMALL_STATE(4152)] = 100398, + [SMALL_STATE(4153)] = 100468, + [SMALL_STATE(4154)] = 100532, + [SMALL_STATE(4155)] = 100596, + [SMALL_STATE(4156)] = 100696, + [SMALL_STATE(4157)] = 100752, + [SMALL_STATE(4158)] = 100852, + [SMALL_STATE(4159)] = 100908, + [SMALL_STATE(4160)] = 101008, + [SMALL_STATE(4161)] = 101064, + [SMALL_STATE(4162)] = 101158, + [SMALL_STATE(4163)] = 101252, + [SMALL_STATE(4164)] = 101308, + [SMALL_STATE(4165)] = 101408, + [SMALL_STATE(4166)] = 101508, + [SMALL_STATE(4167)] = 101566, + [SMALL_STATE(4168)] = 101622, + [SMALL_STATE(4169)] = 101678, + [SMALL_STATE(4170)] = 101734, + [SMALL_STATE(4171)] = 101826, + [SMALL_STATE(4172)] = 101882, + [SMALL_STATE(4173)] = 101982, + [SMALL_STATE(4174)] = 102038, + [SMALL_STATE(4175)] = 102110, + [SMALL_STATE(4176)] = 102210, + [SMALL_STATE(4177)] = 102310, + [SMALL_STATE(4178)] = 102366, + [SMALL_STATE(4179)] = 102422, + [SMALL_STATE(4180)] = 102478, + [SMALL_STATE(4181)] = 102534, + [SMALL_STATE(4182)] = 102590, + [SMALL_STATE(4183)] = 102690, + [SMALL_STATE(4184)] = 102746, + [SMALL_STATE(4185)] = 102802, + [SMALL_STATE(4186)] = 102902, + [SMALL_STATE(4187)] = 102974, + [SMALL_STATE(4188)] = 103074, + [SMALL_STATE(4189)] = 103146, + [SMALL_STATE(4190)] = 103202, + [SMALL_STATE(4191)] = 103258, + [SMALL_STATE(4192)] = 103314, + [SMALL_STATE(4193)] = 103370, + [SMALL_STATE(4194)] = 103426, + [SMALL_STATE(4195)] = 103490, + [SMALL_STATE(4196)] = 103546, + [SMALL_STATE(4197)] = 103646, + [SMALL_STATE(4198)] = 103702, + [SMALL_STATE(4199)] = 103758, + [SMALL_STATE(4200)] = 103814, + [SMALL_STATE(4201)] = 103870, + [SMALL_STATE(4202)] = 103926, + [SMALL_STATE(4203)] = 103982, + [SMALL_STATE(4204)] = 104038, + [SMALL_STATE(4205)] = 104138, + [SMALL_STATE(4206)] = 104194, + [SMALL_STATE(4207)] = 104250, + [SMALL_STATE(4208)] = 104306, + [SMALL_STATE(4209)] = 104362, + [SMALL_STATE(4210)] = 104418, + [SMALL_STATE(4211)] = 104474, + [SMALL_STATE(4212)] = 104534, + [SMALL_STATE(4213)] = 104590, + [SMALL_STATE(4214)] = 104690, + [SMALL_STATE(4215)] = 104746, + [SMALL_STATE(4216)] = 104802, + [SMALL_STATE(4217)] = 104858, + [SMALL_STATE(4218)] = 104914, + [SMALL_STATE(4219)] = 104970, + [SMALL_STATE(4220)] = 105070, + [SMALL_STATE(4221)] = 105126, + [SMALL_STATE(4222)] = 105182, + [SMALL_STATE(4223)] = 105254, + [SMALL_STATE(4224)] = 105310, + [SMALL_STATE(4225)] = 105366, + [SMALL_STATE(4226)] = 105422, + [SMALL_STATE(4227)] = 105478, + [SMALL_STATE(4228)] = 105578, + [SMALL_STATE(4229)] = 105634, + [SMALL_STATE(4230)] = 105690, + [SMALL_STATE(4231)] = 105746, + [SMALL_STATE(4232)] = 105802, + [SMALL_STATE(4233)] = 105858, + [SMALL_STATE(4234)] = 105914, + [SMALL_STATE(4235)] = 105970, + [SMALL_STATE(4236)] = 106026, + [SMALL_STATE(4237)] = 106082, + [SMALL_STATE(4238)] = 106138, + [SMALL_STATE(4239)] = 106194, + [SMALL_STATE(4240)] = 106250, + [SMALL_STATE(4241)] = 106306, + [SMALL_STATE(4242)] = 106406, + [SMALL_STATE(4243)] = 106498, + [SMALL_STATE(4244)] = 106554, + [SMALL_STATE(4245)] = 106610, + [SMALL_STATE(4246)] = 106666, + [SMALL_STATE(4247)] = 106722, + [SMALL_STATE(4248)] = 106815, + [SMALL_STATE(4249)] = 106874, + [SMALL_STATE(4250)] = 106967, + [SMALL_STATE(4251)] = 107060, + [SMALL_STATE(4252)] = 107115, + [SMALL_STATE(4253)] = 107174, + [SMALL_STATE(4254)] = 107233, + [SMALL_STATE(4255)] = 107292, + [SMALL_STATE(4256)] = 107385, + [SMALL_STATE(4257)] = 107478, + [SMALL_STATE(4258)] = 107571, + [SMALL_STATE(4259)] = 107662, + [SMALL_STATE(4260)] = 107755, + [SMALL_STATE(4261)] = 107810, + [SMALL_STATE(4262)] = 107901, + [SMALL_STATE(4263)] = 108010, + [SMALL_STATE(4264)] = 108103, + [SMALL_STATE(4265)] = 108196, + [SMALL_STATE(4266)] = 108289, + [SMALL_STATE(4267)] = 108382, + [SMALL_STATE(4268)] = 108453, + [SMALL_STATE(4269)] = 108512, + [SMALL_STATE(4270)] = 108583, + [SMALL_STATE(4271)] = 108654, + [SMALL_STATE(4272)] = 108747, + [SMALL_STATE(4273)] = 108818, + [SMALL_STATE(4274)] = 108911, + [SMALL_STATE(4275)] = 108970, + [SMALL_STATE(4276)] = 109041, + [SMALL_STATE(4277)] = 109150, + [SMALL_STATE(4278)] = 109243, + [SMALL_STATE(4279)] = 109302, + [SMALL_STATE(4280)] = 109361, + [SMALL_STATE(4281)] = 109454, + [SMALL_STATE(4282)] = 109509, + [SMALL_STATE(4283)] = 109602, + [SMALL_STATE(4284)] = 109695, + [SMALL_STATE(4285)] = 109754, + [SMALL_STATE(4286)] = 109813, + [SMALL_STATE(4287)] = 109906, + [SMALL_STATE(4288)] = 109965, + [SMALL_STATE(4289)] = 110024, + [SMALL_STATE(4290)] = 110117, + [SMALL_STATE(4291)] = 110210, + [SMALL_STATE(4292)] = 110303, + [SMALL_STATE(4293)] = 110396, + [SMALL_STATE(4294)] = 110451, + [SMALL_STATE(4295)] = 110544, + [SMALL_STATE(4296)] = 110615, + [SMALL_STATE(4297)] = 110708, + [SMALL_STATE(4298)] = 110762, + [SMALL_STATE(4299)] = 110852, + [SMALL_STATE(4300)] = 110916, + [SMALL_STATE(4301)] = 111008, + [SMALL_STATE(4302)] = 111096, + [SMALL_STATE(4303)] = 111150, + [SMALL_STATE(4304)] = 111210, + [SMALL_STATE(4305)] = 111298, + [SMALL_STATE(4306)] = 111358, + [SMALL_STATE(4307)] = 111448, + [SMALL_STATE(4308)] = 111540, + [SMALL_STATE(4309)] = 111628, + [SMALL_STATE(4310)] = 111682, + [SMALL_STATE(4311)] = 111774, + [SMALL_STATE(4312)] = 111834, + [SMALL_STATE(4313)] = 111898, + [SMALL_STATE(4314)] = 111988, + [SMALL_STATE(4315)] = 112042, + [SMALL_STATE(4316)] = 112096, + [SMALL_STATE(4317)] = 112150, + [SMALL_STATE(4318)] = 112238, + [SMALL_STATE(4319)] = 112292, + [SMALL_STATE(4320)] = 112360, + [SMALL_STATE(4321)] = 112452, + [SMALL_STATE(4322)] = 112540, + [SMALL_STATE(4323)] = 112632, + [SMALL_STATE(4324)] = 112724, + [SMALL_STATE(4325)] = 112778, + [SMALL_STATE(4326)] = 112838, + [SMALL_STATE(4327)] = 112928, + [SMALL_STATE(4328)] = 112988, + [SMALL_STATE(4329)] = 113076, + [SMALL_STATE(4330)] = 113136, + [SMALL_STATE(4331)] = 113225, + [SMALL_STATE(4332)] = 113324, + [SMALL_STATE(4333)] = 113413, + [SMALL_STATE(4334)] = 113502, + [SMALL_STATE(4335)] = 113591, + [SMALL_STATE(4336)] = 113680, + [SMALL_STATE(4337)] = 113769, + [SMALL_STATE(4338)] = 113836, + [SMALL_STATE(4339)] = 113925, + [SMALL_STATE(4340)] = 114014, + [SMALL_STATE(4341)] = 114103, + [SMALL_STATE(4342)] = 114156, + [SMALL_STATE(4343)] = 114245, + [SMALL_STATE(4344)] = 114334, + [SMALL_STATE(4345)] = 114423, + [SMALL_STATE(4346)] = 114512, + [SMALL_STATE(4347)] = 114601, + [SMALL_STATE(4348)] = 114654, + [SMALL_STATE(4349)] = 114713, + [SMALL_STATE(4350)] = 114802, + [SMALL_STATE(4351)] = 114861, + [SMALL_STATE(4352)] = 114950, + [SMALL_STATE(4353)] = 115039, + [SMALL_STATE(4354)] = 115128, + [SMALL_STATE(4355)] = 115195, + [SMALL_STATE(4356)] = 115284, + [SMALL_STATE(4357)] = 115337, + [SMALL_STATE(4358)] = 115426, + [SMALL_STATE(4359)] = 115515, + [SMALL_STATE(4360)] = 115604, + [SMALL_STATE(4361)] = 115693, + [SMALL_STATE(4362)] = 115752, + [SMALL_STATE(4363)] = 115807, + [SMALL_STATE(4364)] = 115896, + [SMALL_STATE(4365)] = 115959, + [SMALL_STATE(4366)] = 116048, + [SMALL_STATE(4367)] = 116137, + [SMALL_STATE(4368)] = 116226, + [SMALL_STATE(4369)] = 116315, + [SMALL_STATE(4370)] = 116404, + [SMALL_STATE(4371)] = 116493, + [SMALL_STATE(4372)] = 116582, + [SMALL_STATE(4373)] = 116671, + [SMALL_STATE(4374)] = 116734, + [SMALL_STATE(4375)] = 116786, + [SMALL_STATE(4376)] = 116838, + [SMALL_STATE(4377)] = 116890, + [SMALL_STATE(4378)] = 116942, + [SMALL_STATE(4379)] = 116994, + [SMALL_STATE(4380)] = 117062, + [SMALL_STATE(4381)] = 117114, + [SMALL_STATE(4382)] = 117166, + [SMALL_STATE(4383)] = 117218, + [SMALL_STATE(4384)] = 117270, + [SMALL_STATE(4385)] = 117338, + [SMALL_STATE(4386)] = 117390, + [SMALL_STATE(4387)] = 117442, + [SMALL_STATE(4388)] = 117494, + [SMALL_STATE(4389)] = 117582, + [SMALL_STATE(4390)] = 117670, + [SMALL_STATE(4391)] = 117722, + [SMALL_STATE(4392)] = 117774, + [SMALL_STATE(4393)] = 117860, + [SMALL_STATE(4394)] = 117912, + [SMALL_STATE(4395)] = 117964, + [SMALL_STATE(4396)] = 118016, + [SMALL_STATE(4397)] = 118074, + [SMALL_STATE(4398)] = 118126, + [SMALL_STATE(4399)] = 118178, + [SMALL_STATE(4400)] = 118230, + [SMALL_STATE(4401)] = 118282, + [SMALL_STATE(4402)] = 118334, + [SMALL_STATE(4403)] = 118386, + [SMALL_STATE(4404)] = 118438, + [SMALL_STATE(4405)] = 118490, + [SMALL_STATE(4406)] = 118542, + [SMALL_STATE(4407)] = 118610, + [SMALL_STATE(4408)] = 118662, + [SMALL_STATE(4409)] = 118714, + [SMALL_STATE(4410)] = 118766, + [SMALL_STATE(4411)] = 118852, + [SMALL_STATE(4412)] = 118920, + [SMALL_STATE(4413)] = 118972, + [SMALL_STATE(4414)] = 119040, + [SMALL_STATE(4415)] = 119092, + [SMALL_STATE(4416)] = 119144, + [SMALL_STATE(4417)] = 119196, + [SMALL_STATE(4418)] = 119248, + [SMALL_STATE(4419)] = 119300, + [SMALL_STATE(4420)] = 119352, + [SMALL_STATE(4421)] = 119404, + [SMALL_STATE(4422)] = 119472, + [SMALL_STATE(4423)] = 119524, + [SMALL_STATE(4424)] = 119576, + [SMALL_STATE(4425)] = 119632, + [SMALL_STATE(4426)] = 119684, + [SMALL_STATE(4427)] = 119736, + [SMALL_STATE(4428)] = 119788, + [SMALL_STATE(4429)] = 119840, + [SMALL_STATE(4430)] = 119906, + [SMALL_STATE(4431)] = 119958, + [SMALL_STATE(4432)] = 120010, + [SMALL_STATE(4433)] = 120062, + [SMALL_STATE(4434)] = 120114, + [SMALL_STATE(4435)] = 120166, + [SMALL_STATE(4436)] = 120218, + [SMALL_STATE(4437)] = 120321, + [SMALL_STATE(4438)] = 120390, + [SMALL_STATE(4439)] = 120463, + [SMALL_STATE(4440)] = 120542, + [SMALL_STATE(4441)] = 120621, + [SMALL_STATE(4442)] = 120700, + [SMALL_STATE(4443)] = 120785, + [SMALL_STATE(4444)] = 120870, + [SMALL_STATE(4445)] = 120955, + [SMALL_STATE(4446)] = 121034, + [SMALL_STATE(4447)] = 121101, + [SMALL_STATE(4448)] = 121152, + [SMALL_STATE(4449)] = 121231, + [SMALL_STATE(4450)] = 121318, + [SMALL_STATE(4451)] = 121397, + [SMALL_STATE(4452)] = 121492, + [SMALL_STATE(4453)] = 121559, + [SMALL_STATE(4454)] = 121652, + [SMALL_STATE(4455)] = 121735, + [SMALL_STATE(4456)] = 121820, + [SMALL_STATE(4457)] = 121899, + [SMALL_STATE(4458)] = 121950, + [SMALL_STATE(4459)] = 122007, + [SMALL_STATE(4460)] = 122098, + [SMALL_STATE(4461)] = 122165, + [SMALL_STATE(4462)] = 122248, + [SMALL_STATE(4463)] = 122305, + [SMALL_STATE(4464)] = 122364, + [SMALL_STATE(4465)] = 122451, + [SMALL_STATE(4466)] = 122554, + [SMALL_STATE(4467)] = 122633, + [SMALL_STATE(4468)] = 122716, + [SMALL_STATE(4469)] = 122819, + [SMALL_STATE(4470)] = 122906, + [SMALL_STATE(4471)] = 122985, + [SMALL_STATE(4472)] = 123052, + [SMALL_STATE(4473)] = 123137, + [SMALL_STATE(4474)] = 123222, + [SMALL_STATE(4475)] = 123307, + [SMALL_STATE(4476)] = 123396, + [SMALL_STATE(4477)] = 123447, + [SMALL_STATE(4478)] = 123506, + [SMALL_STATE(4479)] = 123581, + [SMALL_STATE(4480)] = 123660, + [SMALL_STATE(4481)] = 123745, + [SMALL_STATE(4482)] = 123824, + [SMALL_STATE(4483)] = 123923, + [SMALL_STATE(4484)] = 124022, + [SMALL_STATE(4485)] = 124107, + [SMALL_STATE(4486)] = 124186, + [SMALL_STATE(4487)] = 124289, + [SMALL_STATE(4488)] = 124360, + [SMALL_STATE(4489)] = 124445, + [SMALL_STATE(4490)] = 124530, + [SMALL_STATE(4491)] = 124587, + [SMALL_STATE(4492)] = 124686, + [SMALL_STATE(4493)] = 124765, + [SMALL_STATE(4494)] = 124822, + [SMALL_STATE(4495)] = 124921, + [SMALL_STATE(4496)] = 125008, + [SMALL_STATE(4497)] = 125107, + [SMALL_STATE(4498)] = 125171, + [SMALL_STATE(4499)] = 125225, + [SMALL_STATE(4500)] = 125307, + [SMALL_STATE(4501)] = 125357, + [SMALL_STATE(4502)] = 125409, + [SMALL_STATE(4503)] = 125463, + [SMALL_STATE(4504)] = 125517, + [SMALL_STATE(4505)] = 125569, + [SMALL_STATE(4506)] = 125623, + [SMALL_STATE(4507)] = 125709, + [SMALL_STATE(4508)] = 125769, + [SMALL_STATE(4509)] = 125823, + [SMALL_STATE(4510)] = 125909, + [SMALL_STATE(4511)] = 125963, + [SMALL_STATE(4512)] = 126017, + [SMALL_STATE(4513)] = 126077, + [SMALL_STATE(4514)] = 126131, + [SMALL_STATE(4515)] = 126197, + [SMALL_STATE(4516)] = 126251, + [SMALL_STATE(4517)] = 126317, + [SMALL_STATE(4518)] = 126371, + [SMALL_STATE(4519)] = 126477, + [SMALL_STATE(4520)] = 126541, + [SMALL_STATE(4521)] = 126623, + [SMALL_STATE(4522)] = 126677, + [SMALL_STATE(4523)] = 126737, + [SMALL_STATE(4524)] = 126843, + [SMALL_STATE(4525)] = 126949, + [SMALL_STATE(4526)] = 127003, + [SMALL_STATE(4527)] = 127097, + [SMALL_STATE(4528)] = 127183, + [SMALL_STATE(4529)] = 127243, + [SMALL_STATE(4530)] = 127329, + [SMALL_STATE(4531)] = 127383, + [SMALL_STATE(4532)] = 127437, + [SMALL_STATE(4533)] = 127488, + [SMALL_STATE(4534)] = 127553, + [SMALL_STATE(4535)] = 127620, + [SMALL_STATE(4536)] = 127675, + [SMALL_STATE(4537)] = 127724, + [SMALL_STATE(4538)] = 127805, + [SMALL_STATE(4539)] = 127854, + [SMALL_STATE(4540)] = 127903, + [SMALL_STATE(4541)] = 127952, + [SMALL_STATE(4542)] = 128017, + [SMALL_STATE(4543)] = 128098, + [SMALL_STATE(4544)] = 128147, + [SMALL_STATE(4545)] = 128238, + [SMALL_STATE(4546)] = 128287, + [SMALL_STATE(4547)] = 128364, + [SMALL_STATE(4548)] = 128441, + [SMALL_STATE(4549)] = 128518, + [SMALL_STATE(4550)] = 128595, + [SMALL_STATE(4551)] = 128644, + [SMALL_STATE(4552)] = 128693, + [SMALL_STATE(4553)] = 128742, + [SMALL_STATE(4554)] = 128791, + [SMALL_STATE(4555)] = 128872, + [SMALL_STATE(4556)] = 128921, + [SMALL_STATE(4557)] = 128974, + [SMALL_STATE(4558)] = 129065, + [SMALL_STATE(4559)] = 129114, + [SMALL_STATE(4560)] = 129169, + [SMALL_STATE(4561)] = 129250, + [SMALL_STATE(4562)] = 129299, + [SMALL_STATE(4563)] = 129348, + [SMALL_STATE(4564)] = 129403, + [SMALL_STATE(4565)] = 129486, + [SMALL_STATE(4566)] = 129569, + [SMALL_STATE(4567)] = 129652, + [SMALL_STATE(4568)] = 129705, + [SMALL_STATE(4569)] = 129788, + [SMALL_STATE(4570)] = 129871, + [SMALL_STATE(4571)] = 129954, + [SMALL_STATE(4572)] = 130011, + [SMALL_STATE(4573)] = 130060, + [SMALL_STATE(4574)] = 130109, + [SMALL_STATE(4575)] = 130164, + [SMALL_STATE(4576)] = 130213, + [SMALL_STATE(4577)] = 130262, + [SMALL_STATE(4578)] = 130311, + [SMALL_STATE(4579)] = 130360, + [SMALL_STATE(4580)] = 130409, + [SMALL_STATE(4581)] = 130487, + [SMALL_STATE(4582)] = 130547, + [SMALL_STATE(4583)] = 130621, + [SMALL_STATE(4584)] = 130679, + [SMALL_STATE(4585)] = 130767, + [SMALL_STATE(4586)] = 130827, + [SMALL_STATE(4587)] = 130907, + [SMALL_STATE(4588)] = 131001, + [SMALL_STATE(4589)] = 131061, + [SMALL_STATE(4590)] = 131135, + [SMALL_STATE(4591)] = 131215, + [SMALL_STATE(4592)] = 131277, + [SMALL_STATE(4593)] = 131359, + [SMALL_STATE(4594)] = 131407, + [SMALL_STATE(4595)] = 131469, + [SMALL_STATE(4596)] = 131527, + [SMALL_STATE(4597)] = 131605, + [SMALL_STATE(4598)] = 131691, + [SMALL_STATE(4599)] = 131739, + [SMALL_STATE(4600)] = 131839, + [SMALL_STATE(4601)] = 131935, + [SMALL_STATE(4602)] = 132029, + [SMALL_STATE(4603)] = 132123, + [SMALL_STATE(4604)] = 132215, + [SMALL_STATE(4605)] = 132307, + [SMALL_STATE(4606)] = 132397, + [SMALL_STATE(4607)] = 132445, + [SMALL_STATE(4608)] = 132535, + [SMALL_STATE(4609)] = 132611, + [SMALL_STATE(4610)] = 132683, + [SMALL_STATE(4611)] = 132759, + [SMALL_STATE(4612)] = 132835, + [SMALL_STATE(4613)] = 132911, + [SMALL_STATE(4614)] = 132987, + [SMALL_STATE(4615)] = 133035, + [SMALL_STATE(4616)] = 133125, + [SMALL_STATE(4617)] = 133183, + [SMALL_STATE(4618)] = 133257, + [SMALL_STATE(4619)] = 133315, + [SMALL_STATE(4620)] = 133405, + [SMALL_STATE(4621)] = 133501, + [SMALL_STATE(4622)] = 133567, + [SMALL_STATE(4623)] = 133651, + [SMALL_STATE(4624)] = 133731, + [SMALL_STATE(4625)] = 133823, + [SMALL_STATE(4626)] = 133903, + [SMALL_STATE(4627)] = 133999, + [SMALL_STATE(4628)] = 134083, + [SMALL_STATE(4629)] = 134131, + [SMALL_STATE(4630)] = 134197, + [SMALL_STATE(4631)] = 134287, + [SMALL_STATE(4632)] = 134375, + [SMALL_STATE(4633)] = 134459, + [SMALL_STATE(4634)] = 134541, + [SMALL_STATE(4635)] = 134631, + [SMALL_STATE(4636)] = 134707, + [SMALL_STATE(4637)] = 134779, + [SMALL_STATE(4638)] = 134847, + [SMALL_STATE(4639)] = 134917, + [SMALL_STATE(4640)] = 135013, + [SMALL_STATE(4641)] = 135087, + [SMALL_STATE(4642)] = 135177, + [SMALL_STATE(4643)] = 135247, + [SMALL_STATE(4644)] = 135331, + [SMALL_STATE(4645)] = 135423, + [SMALL_STATE(4646)] = 135519, + [SMALL_STATE(4647)] = 135579, + [SMALL_STATE(4648)] = 135671, + [SMALL_STATE(4649)] = 135739, + [SMALL_STATE(4650)] = 135836, + [SMALL_STATE(4651)] = 135933, + [SMALL_STATE(4652)] = 135986, + [SMALL_STATE(4653)] = 136043, + [SMALL_STATE(4654)] = 136092, + [SMALL_STATE(4655)] = 136189, + [SMALL_STATE(4656)] = 136286, + [SMALL_STATE(4657)] = 136383, + [SMALL_STATE(4658)] = 136432, + [SMALL_STATE(4659)] = 136481, + [SMALL_STATE(4660)] = 136528, + [SMALL_STATE(4661)] = 136625, + [SMALL_STATE(4662)] = 136678, + [SMALL_STATE(4663)] = 136773, + [SMALL_STATE(4664)] = 136870, + [SMALL_STATE(4665)] = 136967, + [SMALL_STATE(4666)] = 137064, + [SMALL_STATE(4667)] = 137161, + [SMALL_STATE(4668)] = 137258, + [SMALL_STATE(4669)] = 137355, + [SMALL_STATE(4670)] = 137452, + [SMALL_STATE(4671)] = 137549, + [SMALL_STATE(4672)] = 137602, + [SMALL_STATE(4673)] = 137699, + [SMALL_STATE(4674)] = 137796, + [SMALL_STATE(4675)] = 137893, + [SMALL_STATE(4676)] = 137966, + [SMALL_STATE(4677)] = 138063, + [SMALL_STATE(4678)] = 138160, + [SMALL_STATE(4679)] = 138217, + [SMALL_STATE(4680)] = 138314, + [SMALL_STATE(4681)] = 138365, + [SMALL_STATE(4682)] = 138416, + [SMALL_STATE(4683)] = 138467, + [SMALL_STATE(4684)] = 138518, + [SMALL_STATE(4685)] = 138569, + [SMALL_STATE(4686)] = 138666, + [SMALL_STATE(4687)] = 138763, + [SMALL_STATE(4688)] = 138860, + [SMALL_STATE(4689)] = 138911, + [SMALL_STATE(4690)] = 139008, + [SMALL_STATE(4691)] = 139073, + [SMALL_STATE(4692)] = 139124, + [SMALL_STATE(4693)] = 139175, + [SMALL_STATE(4694)] = 139228, + [SMALL_STATE(4695)] = 139325, + [SMALL_STATE(4696)] = 139376, + [SMALL_STATE(4697)] = 139427, + [SMALL_STATE(4698)] = 139524, + [SMALL_STATE(4699)] = 139621, + [SMALL_STATE(4700)] = 139672, + [SMALL_STATE(4701)] = 139769, + [SMALL_STATE(4702)] = 139820, + [SMALL_STATE(4703)] = 139917, + [SMALL_STATE(4704)] = 140014, + [SMALL_STATE(4705)] = 140067, + [SMALL_STATE(4706)] = 140162, + [SMALL_STATE(4707)] = 140209, + [SMALL_STATE(4708)] = 140256, + [SMALL_STATE(4709)] = 140303, + [SMALL_STATE(4710)] = 140350, + [SMALL_STATE(4711)] = 140397, + [SMALL_STATE(4712)] = 140444, + [SMALL_STATE(4713)] = 140491, + [SMALL_STATE(4714)] = 140564, + [SMALL_STATE(4715)] = 140661, + [SMALL_STATE(4716)] = 140708, + [SMALL_STATE(4717)] = 140805, + [SMALL_STATE(4718)] = 140902, + [SMALL_STATE(4719)] = 140999, + [SMALL_STATE(4720)] = 141056, + [SMALL_STATE(4721)] = 141105, + [SMALL_STATE(4722)] = 141154, + [SMALL_STATE(4723)] = 141233, + [SMALL_STATE(4724)] = 141312, + [SMALL_STATE(4725)] = 141409, + [SMALL_STATE(4726)] = 141506, + [SMALL_STATE(4727)] = 141603, + [SMALL_STATE(4728)] = 141656, + [SMALL_STATE(4729)] = 141753, + [SMALL_STATE(4730)] = 141850, + [SMALL_STATE(4731)] = 141947, + [SMALL_STATE(4732)] = 142020, + [SMALL_STATE(4733)] = 142117, + [SMALL_STATE(4734)] = 142190, + [SMALL_STATE(4735)] = 142237, + [SMALL_STATE(4736)] = 142334, + [SMALL_STATE(4737)] = 142385, + [SMALL_STATE(4738)] = 142439, + [SMALL_STATE(4739)] = 142511, + [SMALL_STATE(4740)] = 142571, + [SMALL_STATE(4741)] = 142645, + [SMALL_STATE(4742)] = 142739, + [SMALL_STATE(4743)] = 142813, + [SMALL_STATE(4744)] = 142887, + [SMALL_STATE(4745)] = 142981, + [SMALL_STATE(4746)] = 143055, + [SMALL_STATE(4747)] = 143107, + [SMALL_STATE(4748)] = 143195, + [SMALL_STATE(4749)] = 143287, + [SMALL_STATE(4750)] = 143357, + [SMALL_STATE(4751)] = 143449, + [SMALL_STATE(4752)] = 143501, + [SMALL_STATE(4753)] = 143595, + [SMALL_STATE(4754)] = 143667, + [SMALL_STATE(4755)] = 143739, + [SMALL_STATE(4756)] = 143831, + [SMALL_STATE(4757)] = 143923, + [SMALL_STATE(4758)] = 143975, + [SMALL_STATE(4759)] = 144069, + [SMALL_STATE(4760)] = 144163, + [SMALL_STATE(4761)] = 144257, + [SMALL_STATE(4762)] = 144309, + [SMALL_STATE(4763)] = 144361, + [SMALL_STATE(4764)] = 144453, + [SMALL_STATE(4765)] = 144541, + [SMALL_STATE(4766)] = 144633, + [SMALL_STATE(4767)] = 144725, + [SMALL_STATE(4768)] = 144819, + [SMALL_STATE(4769)] = 144913, + [SMALL_STATE(4770)] = 145007, + [SMALL_STATE(4771)] = 145071, + [SMALL_STATE(4772)] = 145157, + [SMALL_STATE(4773)] = 145241, + [SMALL_STATE(4774)] = 145323, + [SMALL_STATE(4775)] = 145403, + [SMALL_STATE(4776)] = 145479, + [SMALL_STATE(4777)] = 145553, + [SMALL_STATE(4778)] = 145623, + [SMALL_STATE(4779)] = 145689, + [SMALL_STATE(4780)] = 145783, + [SMALL_STATE(4781)] = 145851, + [SMALL_STATE(4782)] = 145945, + [SMALL_STATE(4783)] = 146039, + [SMALL_STATE(4784)] = 146113, + [SMALL_STATE(4785)] = 146187, + [SMALL_STATE(4786)] = 146275, + [SMALL_STATE(4787)] = 146327, + [SMALL_STATE(4788)] = 146419, + [SMALL_STATE(4789)] = 146471, + [SMALL_STATE(4790)] = 146565, + [SMALL_STATE(4791)] = 146653, + [SMALL_STATE(4792)] = 146745, + [SMALL_STATE(4793)] = 146791, + [SMALL_STATE(4794)] = 146883, + [SMALL_STATE(4795)] = 146957, + [SMALL_STATE(4796)] = 147031, + [SMALL_STATE(4797)] = 147083, + [SMALL_STATE(4798)] = 147157, + [SMALL_STATE(4799)] = 147231, + [SMALL_STATE(4800)] = 147305, + [SMALL_STATE(4801)] = 147365, + [SMALL_STATE(4802)] = 147437, + [SMALL_STATE(4803)] = 147531, + [SMALL_STATE(4804)] = 147625, + [SMALL_STATE(4805)] = 147719, + [SMALL_STATE(4806)] = 147767, + [SMALL_STATE(4807)] = 147861, + [SMALL_STATE(4808)] = 147953, + [SMALL_STATE(4809)] = 148045, + [SMALL_STATE(4810)] = 148137, + [SMALL_STATE(4811)] = 148231, + [SMALL_STATE(4812)] = 148289, + [SMALL_STATE(4813)] = 148347, + [SMALL_STATE(4814)] = 148441, + [SMALL_STATE(4815)] = 148499, + [SMALL_STATE(4816)] = 148557, + [SMALL_STATE(4817)] = 148645, + [SMALL_STATE(4818)] = 148703, + [SMALL_STATE(4819)] = 148797, + [SMALL_STATE(4820)] = 148889, + [SMALL_STATE(4821)] = 148983, + [SMALL_STATE(4822)] = 149075, + [SMALL_STATE(4823)] = 149167, + [SMALL_STATE(4824)] = 149261, + [SMALL_STATE(4825)] = 149355, + [SMALL_STATE(4826)] = 149407, + [SMALL_STATE(4827)] = 149501, + [SMALL_STATE(4828)] = 149561, + [SMALL_STATE(4829)] = 149621, + [SMALL_STATE(4830)] = 149715, + [SMALL_STATE(4831)] = 149807, + [SMALL_STATE(4832)] = 149885, + [SMALL_STATE(4833)] = 149973, + [SMALL_STATE(4834)] = 150067, + [SMALL_STATE(4835)] = 150159, + [SMALL_STATE(4836)] = 150217, + [SMALL_STATE(4837)] = 150311, + [SMALL_STATE(4838)] = 150399, + [SMALL_STATE(4839)] = 150451, + [SMALL_STATE(4840)] = 150539, + [SMALL_STATE(4841)] = 150599, + [SMALL_STATE(4842)] = 150693, + [SMALL_STATE(4843)] = 150753, + [SMALL_STATE(4844)] = 150847, + [SMALL_STATE(4845)] = 150939, + [SMALL_STATE(4846)] = 151033, + [SMALL_STATE(4847)] = 151127, + [SMALL_STATE(4848)] = 151189, + [SMALL_STATE(4849)] = 151281, + [SMALL_STATE(4850)] = 151331, + [SMALL_STATE(4851)] = 151383, + [SMALL_STATE(4852)] = 151477, + [SMALL_STATE(4853)] = 151533, + [SMALL_STATE(4854)] = 151585, + [SMALL_STATE(4855)] = 151637, + [SMALL_STATE(4856)] = 151731, + [SMALL_STATE(4857)] = 151795, + [SMALL_STATE(4858)] = 151847, + [SMALL_STATE(4859)] = 151939, + [SMALL_STATE(4860)] = 151991, + [SMALL_STATE(4861)] = 152051, + [SMALL_STATE(4862)] = 152145, + [SMALL_STATE(4863)] = 152233, + [SMALL_STATE(4864)] = 152325, + [SMALL_STATE(4865)] = 152389, + [SMALL_STATE(4866)] = 152475, + [SMALL_STATE(4867)] = 152559, + [SMALL_STATE(4868)] = 152641, + [SMALL_STATE(4869)] = 152721, + [SMALL_STATE(4870)] = 152797, + [SMALL_STATE(4871)] = 152871, + [SMALL_STATE(4872)] = 152941, + [SMALL_STATE(4873)] = 153007, + [SMALL_STATE(4874)] = 153075, + [SMALL_STATE(4875)] = 153163, + [SMALL_STATE(4876)] = 153255, + [SMALL_STATE(4877)] = 153343, + [SMALL_STATE(4878)] = 153435, + [SMALL_STATE(4879)] = 153521, + [SMALL_STATE(4880)] = 153615, + [SMALL_STATE(4881)] = 153703, + [SMALL_STATE(4882)] = 153795, + [SMALL_STATE(4883)] = 153883, + [SMALL_STATE(4884)] = 153977, + [SMALL_STATE(4885)] = 154065, + [SMALL_STATE(4886)] = 154149, + [SMALL_STATE(4887)] = 154231, + [SMALL_STATE(4888)] = 154311, + [SMALL_STATE(4889)] = 154383, + [SMALL_STATE(4890)] = 154461, + [SMALL_STATE(4891)] = 154555, + [SMALL_STATE(4892)] = 154631, + [SMALL_STATE(4893)] = 154685, + [SMALL_STATE(4894)] = 154737, + [SMALL_STATE(4895)] = 154795, + [SMALL_STATE(4896)] = 154855, + [SMALL_STATE(4897)] = 154915, + [SMALL_STATE(4898)] = 154975, + [SMALL_STATE(4899)] = 155027, + [SMALL_STATE(4900)] = 155085, + [SMALL_STATE(4901)] = 155137, + [SMALL_STATE(4902)] = 155231, + [SMALL_STATE(4903)] = 155283, + [SMALL_STATE(4904)] = 155377, + [SMALL_STATE(4905)] = 155449, + [SMALL_STATE(4906)] = 155521, + [SMALL_STATE(4907)] = 155615, + [SMALL_STATE(4908)] = 155687, + [SMALL_STATE(4909)] = 155773, + [SMALL_STATE(4910)] = 155867, + [SMALL_STATE(4911)] = 155959, + [SMALL_STATE(4912)] = 156033, + [SMALL_STATE(4913)] = 156127, + [SMALL_STATE(4914)] = 156221, + [SMALL_STATE(4915)] = 156295, + [SMALL_STATE(4916)] = 156387, + [SMALL_STATE(4917)] = 156459, + [SMALL_STATE(4918)] = 156547, + [SMALL_STATE(4919)] = 156613, + [SMALL_STATE(4920)] = 156667, + [SMALL_STATE(4921)] = 156759, + [SMALL_STATE(4922)] = 156850, + [SMALL_STATE(4923)] = 156895, + [SMALL_STATE(4924)] = 156986, + [SMALL_STATE(4925)] = 157031, + [SMALL_STATE(4926)] = 157122, + [SMALL_STATE(4927)] = 157213, + [SMALL_STATE(4928)] = 157304, + [SMALL_STATE(4929)] = 157349, + [SMALL_STATE(4930)] = 157440, + [SMALL_STATE(4931)] = 157531, + [SMALL_STATE(4932)] = 157576, + [SMALL_STATE(4933)] = 157667, + [SMALL_STATE(4934)] = 157712, + [SMALL_STATE(4935)] = 157803, + [SMALL_STATE(4936)] = 157894, + [SMALL_STATE(4937)] = 157939, + [SMALL_STATE(4938)] = 158030, + [SMALL_STATE(4939)] = 158103, + [SMALL_STATE(4940)] = 158148, + [SMALL_STATE(4941)] = 158239, + [SMALL_STATE(4942)] = 158330, + [SMALL_STATE(4943)] = 158403, + [SMALL_STATE(4944)] = 158448, + [SMALL_STATE(4945)] = 158493, + [SMALL_STATE(4946)] = 158538, + [SMALL_STATE(4947)] = 158629, + [SMALL_STATE(4948)] = 158674, + [SMALL_STATE(4949)] = 158765, + [SMALL_STATE(4950)] = 158856, + [SMALL_STATE(4951)] = 158933, + [SMALL_STATE(4952)] = 159024, + [SMALL_STATE(4953)] = 159101, + [SMALL_STATE(4954)] = 159192, + [SMALL_STATE(4955)] = 159283, + [SMALL_STATE(4956)] = 159328, + [SMALL_STATE(4957)] = 159373, + [SMALL_STATE(4958)] = 159464, + [SMALL_STATE(4959)] = 159555, + [SMALL_STATE(4960)] = 159628, + [SMALL_STATE(4961)] = 159719, + [SMALL_STATE(4962)] = 159810, + [SMALL_STATE(4963)] = 159861, + [SMALL_STATE(4964)] = 159906, + [SMALL_STATE(4965)] = 159997, + [SMALL_STATE(4966)] = 160088, + [SMALL_STATE(4967)] = 160133, + [SMALL_STATE(4968)] = 160224, + [SMALL_STATE(4969)] = 160315, + [SMALL_STATE(4970)] = 160406, + [SMALL_STATE(4971)] = 160451, + [SMALL_STATE(4972)] = 160542, + [SMALL_STATE(4973)] = 160623, + [SMALL_STATE(4974)] = 160704, + [SMALL_STATE(4975)] = 160795, + [SMALL_STATE(4976)] = 160886, + [SMALL_STATE(4977)] = 160977, + [SMALL_STATE(4978)] = 161022, + [SMALL_STATE(4979)] = 161067, + [SMALL_STATE(4980)] = 161112, + [SMALL_STATE(4981)] = 161203, + [SMALL_STATE(4982)] = 161294, + [SMALL_STATE(4983)] = 161339, + [SMALL_STATE(4984)] = 161384, + [SMALL_STATE(4985)] = 161475, + [SMALL_STATE(4986)] = 161566, + [SMALL_STATE(4987)] = 161657, + [SMALL_STATE(4988)] = 161748, + [SMALL_STATE(4989)] = 161839, + [SMALL_STATE(4990)] = 161912, + [SMALL_STATE(4991)] = 161985, + [SMALL_STATE(4992)] = 162076, + [SMALL_STATE(4993)] = 162167, + [SMALL_STATE(4994)] = 162240, + [SMALL_STATE(4995)] = 162313, + [SMALL_STATE(4996)] = 162404, + [SMALL_STATE(4997)] = 162477, + [SMALL_STATE(4998)] = 162522, + [SMALL_STATE(4999)] = 162595, + [SMALL_STATE(5000)] = 162668, + [SMALL_STATE(5001)] = 162741, + [SMALL_STATE(5002)] = 162814, + [SMALL_STATE(5003)] = 162859, + [SMALL_STATE(5004)] = 162904, + [SMALL_STATE(5005)] = 162955, + [SMALL_STATE(5006)] = 163046, + [SMALL_STATE(5007)] = 163137, + [SMALL_STATE(5008)] = 163208, + [SMALL_STATE(5009)] = 163279, + [SMALL_STATE(5010)] = 163350, + [SMALL_STATE(5011)] = 163421, + [SMALL_STATE(5012)] = 163502, + [SMALL_STATE(5013)] = 163589, + [SMALL_STATE(5014)] = 163634, + [SMALL_STATE(5015)] = 163707, + [SMALL_STATE(5016)] = 163780, + [SMALL_STATE(5017)] = 163853, + [SMALL_STATE(5018)] = 163944, + [SMALL_STATE(5019)] = 164035, + [SMALL_STATE(5020)] = 164116, + [SMALL_STATE(5021)] = 164207, + [SMALL_STATE(5022)] = 164254, + [SMALL_STATE(5023)] = 164327, + [SMALL_STATE(5024)] = 164408, + [SMALL_STATE(5025)] = 164499, + [SMALL_STATE(5026)] = 164590, + [SMALL_STATE(5027)] = 164667, + [SMALL_STATE(5028)] = 164718, + [SMALL_STATE(5029)] = 164809, + [SMALL_STATE(5030)] = 164900, + [SMALL_STATE(5031)] = 164991, + [SMALL_STATE(5032)] = 165036, + [SMALL_STATE(5033)] = 165081, + [SMALL_STATE(5034)] = 165172, + [SMALL_STATE(5035)] = 165253, + [SMALL_STATE(5036)] = 165298, + [SMALL_STATE(5037)] = 165389, + [SMALL_STATE(5038)] = 165434, + [SMALL_STATE(5039)] = 165525, + [SMALL_STATE(5040)] = 165616, + [SMALL_STATE(5041)] = 165707, + [SMALL_STATE(5042)] = 165752, + [SMALL_STATE(5043)] = 165833, + [SMALL_STATE(5044)] = 165924, + [SMALL_STATE(5045)] = 166015, + [SMALL_STATE(5046)] = 166106, + [SMALL_STATE(5047)] = 166197, + [SMALL_STATE(5048)] = 166288, + [SMALL_STATE(5049)] = 166379, + [SMALL_STATE(5050)] = 166424, + [SMALL_STATE(5051)] = 166469, + [SMALL_STATE(5052)] = 166560, + [SMALL_STATE(5053)] = 166651, + [SMALL_STATE(5054)] = 166696, + [SMALL_STATE(5055)] = 166741, + [SMALL_STATE(5056)] = 166832, + [SMALL_STATE(5057)] = 166923, + [SMALL_STATE(5058)] = 167014, + [SMALL_STATE(5059)] = 167105, + [SMALL_STATE(5060)] = 167196, + [SMALL_STATE(5061)] = 167241, + [SMALL_STATE(5062)] = 167286, + [SMALL_STATE(5063)] = 167363, + [SMALL_STATE(5064)] = 167454, + [SMALL_STATE(5065)] = 167545, + [SMALL_STATE(5066)] = 167636, + [SMALL_STATE(5067)] = 167727, + [SMALL_STATE(5068)] = 167818, + [SMALL_STATE(5069)] = 167863, + [SMALL_STATE(5070)] = 167954, + [SMALL_STATE(5071)] = 168045, + [SMALL_STATE(5072)] = 168116, + [SMALL_STATE(5073)] = 168207, + [SMALL_STATE(5074)] = 168258, + [SMALL_STATE(5075)] = 168349, + [SMALL_STATE(5076)] = 168420, + [SMALL_STATE(5077)] = 168491, + [SMALL_STATE(5078)] = 168536, + [SMALL_STATE(5079)] = 168581, + [SMALL_STATE(5080)] = 168652, + [SMALL_STATE(5081)] = 168697, + [SMALL_STATE(5082)] = 168742, + [SMALL_STATE(5083)] = 168787, + [SMALL_STATE(5084)] = 168878, + [SMALL_STATE(5085)] = 168923, + [SMALL_STATE(5086)] = 169014, + [SMALL_STATE(5087)] = 169087, + [SMALL_STATE(5088)] = 169178, + [SMALL_STATE(5089)] = 169251, + [SMALL_STATE(5090)] = 169324, + [SMALL_STATE(5091)] = 169415, + [SMALL_STATE(5092)] = 169460, + [SMALL_STATE(5093)] = 169551, + [SMALL_STATE(5094)] = 169642, + [SMALL_STATE(5095)] = 169733, + [SMALL_STATE(5096)] = 169778, + [SMALL_STATE(5097)] = 169851, + [SMALL_STATE(5098)] = 169896, + [SMALL_STATE(5099)] = 169941, + [SMALL_STATE(5100)] = 170032, + [SMALL_STATE(5101)] = 170077, + [SMALL_STATE(5102)] = 170168, + [SMALL_STATE(5103)] = 170213, + [SMALL_STATE(5104)] = 170304, + [SMALL_STATE(5105)] = 170349, + [SMALL_STATE(5106)] = 170440, + [SMALL_STATE(5107)] = 170485, + [SMALL_STATE(5108)] = 170576, + [SMALL_STATE(5109)] = 170625, + [SMALL_STATE(5110)] = 170716, + [SMALL_STATE(5111)] = 170803, + [SMALL_STATE(5112)] = 170848, + [SMALL_STATE(5113)] = 170939, + [SMALL_STATE(5114)] = 170984, + [SMALL_STATE(5115)] = 171075, + [SMALL_STATE(5116)] = 171120, + [SMALL_STATE(5117)] = 171211, + [SMALL_STATE(5118)] = 171302, + [SMALL_STATE(5119)] = 171393, + [SMALL_STATE(5120)] = 171484, + [SMALL_STATE(5121)] = 171575, + [SMALL_STATE(5122)] = 171648, + [SMALL_STATE(5123)] = 171739, + [SMALL_STATE(5124)] = 171784, + [SMALL_STATE(5125)] = 171875, + [SMALL_STATE(5126)] = 171920, + [SMALL_STATE(5127)] = 172011, + [SMALL_STATE(5128)] = 172062, + [SMALL_STATE(5129)] = 172153, + [SMALL_STATE(5130)] = 172244, + [SMALL_STATE(5131)] = 172327, + [SMALL_STATE(5132)] = 172418, + [SMALL_STATE(5133)] = 172509, + [SMALL_STATE(5134)] = 172600, + [SMALL_STATE(5135)] = 172691, + [SMALL_STATE(5136)] = 172782, + [SMALL_STATE(5137)] = 172827, + [SMALL_STATE(5138)] = 172872, + [SMALL_STATE(5139)] = 172916, + [SMALL_STATE(5140)] = 172994, + [SMALL_STATE(5141)] = 173038, + [SMALL_STATE(5142)] = 173116, + [SMALL_STATE(5143)] = 173160, + [SMALL_STATE(5144)] = 173238, + [SMALL_STATE(5145)] = 173324, + [SMALL_STATE(5146)] = 173368, + [SMALL_STATE(5147)] = 173446, + [SMALL_STATE(5148)] = 173492, + [SMALL_STATE(5149)] = 173536, + [SMALL_STATE(5150)] = 173580, + [SMALL_STATE(5151)] = 173624, + [SMALL_STATE(5152)] = 173672, + [SMALL_STATE(5153)] = 173716, + [SMALL_STATE(5154)] = 173760, + [SMALL_STATE(5155)] = 173846, + [SMALL_STATE(5156)] = 173900, + [SMALL_STATE(5157)] = 173978, + [SMALL_STATE(5158)] = 174022, + [SMALL_STATE(5159)] = 174092, + [SMALL_STATE(5160)] = 174136, + [SMALL_STATE(5161)] = 174206, + [SMALL_STATE(5162)] = 174276, + [SMALL_STATE(5163)] = 174346, + [SMALL_STATE(5164)] = 174390, + [SMALL_STATE(5165)] = 174436, + [SMALL_STATE(5166)] = 174480, + [SMALL_STATE(5167)] = 174558, + [SMALL_STATE(5168)] = 174644, + [SMALL_STATE(5169)] = 174698, + [SMALL_STATE(5170)] = 174742, + [SMALL_STATE(5171)] = 174786, + [SMALL_STATE(5172)] = 174830, + [SMALL_STATE(5173)] = 174916, + [SMALL_STATE(5174)] = 174960, + [SMALL_STATE(5175)] = 175004, + [SMALL_STATE(5176)] = 175048, + [SMALL_STATE(5177)] = 175092, + [SMALL_STATE(5178)] = 175136, + [SMALL_STATE(5179)] = 175180, + [SMALL_STATE(5180)] = 175268, + [SMALL_STATE(5181)] = 175312, + [SMALL_STATE(5182)] = 175356, + [SMALL_STATE(5183)] = 175400, + [SMALL_STATE(5184)] = 175444, + [SMALL_STATE(5185)] = 175492, + [SMALL_STATE(5186)] = 175570, + [SMALL_STATE(5187)] = 175656, + [SMALL_STATE(5188)] = 175734, + [SMALL_STATE(5189)] = 175778, + [SMALL_STATE(5190)] = 175822, + [SMALL_STATE(5191)] = 175866, + [SMALL_STATE(5192)] = 175918, + [SMALL_STATE(5193)] = 175962, + [SMALL_STATE(5194)] = 176006, + [SMALL_STATE(5195)] = 176050, + [SMALL_STATE(5196)] = 176094, + [SMALL_STATE(5197)] = 176142, + [SMALL_STATE(5198)] = 176228, + [SMALL_STATE(5199)] = 176272, + [SMALL_STATE(5200)] = 176316, + [SMALL_STATE(5201)] = 176360, + [SMALL_STATE(5202)] = 176404, + [SMALL_STATE(5203)] = 176447, + [SMALL_STATE(5204)] = 176516, + [SMALL_STATE(5205)] = 176573, + [SMALL_STATE(5206)] = 176658, + [SMALL_STATE(5207)] = 176727, + [SMALL_STATE(5208)] = 176812, + [SMALL_STATE(5209)] = 176897, + [SMALL_STATE(5210)] = 176946, + [SMALL_STATE(5211)] = 177015, + [SMALL_STATE(5212)] = 177064, + [SMALL_STATE(5213)] = 177149, + [SMALL_STATE(5214)] = 177198, + [SMALL_STATE(5215)] = 177255, + [SMALL_STATE(5216)] = 177312, + [SMALL_STATE(5217)] = 177381, + [SMALL_STATE(5218)] = 177436, + [SMALL_STATE(5219)] = 177485, + [SMALL_STATE(5220)] = 177534, + [SMALL_STATE(5221)] = 177579, + [SMALL_STATE(5222)] = 177664, + [SMALL_STATE(5223)] = 177713, + [SMALL_STATE(5224)] = 177798, + [SMALL_STATE(5225)] = 177867, + [SMALL_STATE(5226)] = 177952, + [SMALL_STATE(5227)] = 178021, + [SMALL_STATE(5228)] = 178072, + [SMALL_STATE(5229)] = 178125, + [SMALL_STATE(5230)] = 178194, + [SMALL_STATE(5231)] = 178243, + [SMALL_STATE(5232)] = 178312, + [SMALL_STATE(5233)] = 178367, + [SMALL_STATE(5234)] = 178424, + [SMALL_STATE(5235)] = 178499, + [SMALL_STATE(5236)] = 178568, + [SMALL_STATE(5237)] = 178637, + [SMALL_STATE(5238)] = 178696, + [SMALL_STATE(5239)] = 178781, + [SMALL_STATE(5240)] = 178830, + [SMALL_STATE(5241)] = 178889, + [SMALL_STATE(5242)] = 178974, + [SMALL_STATE(5243)] = 179049, + [SMALL_STATE(5244)] = 179098, + [SMALL_STATE(5245)] = 179147, + [SMALL_STATE(5246)] = 179216, + [SMALL_STATE(5247)] = 179265, + [SMALL_STATE(5248)] = 179310, + [SMALL_STATE(5249)] = 179395, + [SMALL_STATE(5250)] = 179444, + [SMALL_STATE(5251)] = 179493, + [SMALL_STATE(5252)] = 179562, + [SMALL_STATE(5253)] = 179604, + [SMALL_STATE(5254)] = 179646, + [SMALL_STATE(5255)] = 179730, + [SMALL_STATE(5256)] = 179772, + [SMALL_STATE(5257)] = 179840, + [SMALL_STATE(5258)] = 179908, + [SMALL_STATE(5259)] = 179950, + [SMALL_STATE(5260)] = 179992, + [SMALL_STATE(5261)] = 180060, + [SMALL_STATE(5262)] = 180102, + [SMALL_STATE(5263)] = 180170, + [SMALL_STATE(5264)] = 180212, + [SMALL_STATE(5265)] = 180254, + [SMALL_STATE(5266)] = 180296, + [SMALL_STATE(5267)] = 180338, + [SMALL_STATE(5268)] = 180406, + [SMALL_STATE(5269)] = 180448, + [SMALL_STATE(5270)] = 180490, + [SMALL_STATE(5271)] = 180532, + [SMALL_STATE(5272)] = 180574, + [SMALL_STATE(5273)] = 180616, + [SMALL_STATE(5274)] = 180658, + [SMALL_STATE(5275)] = 180700, + [SMALL_STATE(5276)] = 180742, + [SMALL_STATE(5277)] = 180784, + [SMALL_STATE(5278)] = 180826, + [SMALL_STATE(5279)] = 180868, + [SMALL_STATE(5280)] = 180910, + [SMALL_STATE(5281)] = 180952, + [SMALL_STATE(5282)] = 180994, + [SMALL_STATE(5283)] = 181062, + [SMALL_STATE(5284)] = 181104, + [SMALL_STATE(5285)] = 181146, + [SMALL_STATE(5286)] = 181188, + [SMALL_STATE(5287)] = 181230, + [SMALL_STATE(5288)] = 181272, + [SMALL_STATE(5289)] = 181314, + [SMALL_STATE(5290)] = 181356, + [SMALL_STATE(5291)] = 181398, + [SMALL_STATE(5292)] = 181476, + [SMALL_STATE(5293)] = 181518, + [SMALL_STATE(5294)] = 181560, + [SMALL_STATE(5295)] = 181602, + [SMALL_STATE(5296)] = 181680, + [SMALL_STATE(5297)] = 181722, + [SMALL_STATE(5298)] = 181800, + [SMALL_STATE(5299)] = 181842, + [SMALL_STATE(5300)] = 181884, + [SMALL_STATE(5301)] = 181926, + [SMALL_STATE(5302)] = 181968, + [SMALL_STATE(5303)] = 182010, + [SMALL_STATE(5304)] = 182094, + [SMALL_STATE(5305)] = 182136, + [SMALL_STATE(5306)] = 182178, + [SMALL_STATE(5307)] = 182220, + [SMALL_STATE(5308)] = 182262, + [SMALL_STATE(5309)] = 182304, + [SMALL_STATE(5310)] = 182346, + [SMALL_STATE(5311)] = 182414, + [SMALL_STATE(5312)] = 182456, + [SMALL_STATE(5313)] = 182524, + [SMALL_STATE(5314)] = 182566, + [SMALL_STATE(5315)] = 182608, + [SMALL_STATE(5316)] = 182650, + [SMALL_STATE(5317)] = 182692, + [SMALL_STATE(5318)] = 182776, + [SMALL_STATE(5319)] = 182818, + [SMALL_STATE(5320)] = 182860, + [SMALL_STATE(5321)] = 182902, + [SMALL_STATE(5322)] = 182944, + [SMALL_STATE(5323)] = 183022, + [SMALL_STATE(5324)] = 183064, + [SMALL_STATE(5325)] = 183141, + [SMALL_STATE(5326)] = 183218, + [SMALL_STATE(5327)] = 183295, + [SMALL_STATE(5328)] = 183372, + [SMALL_STATE(5329)] = 183449, + [SMALL_STATE(5330)] = 183532, + [SMALL_STATE(5331)] = 183615, + [SMALL_STATE(5332)] = 183692, + [SMALL_STATE(5333)] = 183769, + [SMALL_STATE(5334)] = 183852, + [SMALL_STATE(5335)] = 183935, + [SMALL_STATE(5336)] = 184012, + [SMALL_STATE(5337)] = 184089, + [SMALL_STATE(5338)] = 184172, + [SMALL_STATE(5339)] = 184249, + [SMALL_STATE(5340)] = 184298, + [SMALL_STATE(5341)] = 184375, + [SMALL_STATE(5342)] = 184452, + [SMALL_STATE(5343)] = 184507, + [SMALL_STATE(5344)] = 184560, + [SMALL_STATE(5345)] = 184609, + [SMALL_STATE(5346)] = 184664, + [SMALL_STATE(5347)] = 184747, + [SMALL_STATE(5348)] = 184827, + [SMALL_STATE(5349)] = 184907, + [SMALL_STATE(5350)] = 184983, + [SMALL_STATE(5351)] = 185063, + [SMALL_STATE(5352)] = 185143, + [SMALL_STATE(5353)] = 185219, + [SMALL_STATE(5354)] = 185263, + [SMALL_STATE(5355)] = 185319, + [SMALL_STATE(5356)] = 185363, + [SMALL_STATE(5357)] = 185419, + [SMALL_STATE(5358)] = 185463, + [SMALL_STATE(5359)] = 185539, + [SMALL_STATE(5360)] = 185615, + [SMALL_STATE(5361)] = 185681, + [SMALL_STATE(5362)] = 185725, + [SMALL_STATE(5363)] = 185769, + [SMALL_STATE(5364)] = 185845, + [SMALL_STATE(5365)] = 185889, + [SMALL_STATE(5366)] = 185933, + [SMALL_STATE(5367)] = 185987, + [SMALL_STATE(5368)] = 186067, + [SMALL_STATE(5369)] = 186143, + [SMALL_STATE(5370)] = 186219, + [SMALL_STATE(5371)] = 186299, + [SMALL_STATE(5372)] = 186343, + [SMALL_STATE(5373)] = 186423, + [SMALL_STATE(5374)] = 186467, + [SMALL_STATE(5375)] = 186543, + [SMALL_STATE(5376)] = 186619, + [SMALL_STATE(5377)] = 186685, + [SMALL_STATE(5378)] = 186767, + [SMALL_STATE(5379)] = 186833, + [SMALL_STATE(5380)] = 186909, + [SMALL_STATE(5381)] = 186985, + [SMALL_STATE(5382)] = 187067, + [SMALL_STATE(5383)] = 187149, + [SMALL_STATE(5384)] = 187203, + [SMALL_STATE(5385)] = 187279, + [SMALL_STATE(5386)] = 187361, + [SMALL_STATE(5387)] = 187441, + [SMALL_STATE(5388)] = 187521, + [SMALL_STATE(5389)] = 187597, + [SMALL_STATE(5390)] = 187673, + [SMALL_STATE(5391)] = 187749, + [SMALL_STATE(5392)] = 187829, + [SMALL_STATE(5393)] = 187873, + [SMALL_STATE(5394)] = 187923, + [SMALL_STATE(5395)] = 188003, + [SMALL_STATE(5396)] = 188085, + [SMALL_STATE(5397)] = 188161, + [SMALL_STATE(5398)] = 188237, + [SMALL_STATE(5399)] = 188317, + [SMALL_STATE(5400)] = 188397, + [SMALL_STATE(5401)] = 188479, + [SMALL_STATE(5402)] = 188559, + [SMALL_STATE(5403)] = 188635, + [SMALL_STATE(5404)] = 188677, + [SMALL_STATE(5405)] = 188721, + [SMALL_STATE(5406)] = 188801, + [SMALL_STATE(5407)] = 188867, + [SMALL_STATE(5408)] = 188947, + [SMALL_STATE(5409)] = 189027, + [SMALL_STATE(5410)] = 189077, + [SMALL_STATE(5411)] = 189121, + [SMALL_STATE(5412)] = 189197, + [SMALL_STATE(5413)] = 189277, + [SMALL_STATE(5414)] = 189353, + [SMALL_STATE(5415)] = 189434, + [SMALL_STATE(5416)] = 189515, + [SMALL_STATE(5417)] = 189596, + [SMALL_STATE(5418)] = 189647, + [SMALL_STATE(5419)] = 189722, + [SMALL_STATE(5420)] = 189797, + [SMALL_STATE(5421)] = 189878, + [SMALL_STATE(5422)] = 189959, + [SMALL_STATE(5423)] = 190040, + [SMALL_STATE(5424)] = 190115, + [SMALL_STATE(5425)] = 190190, + [SMALL_STATE(5426)] = 190271, + [SMALL_STATE(5427)] = 190352, + [SMALL_STATE(5428)] = 190433, + [SMALL_STATE(5429)] = 190484, + [SMALL_STATE(5430)] = 190565, + [SMALL_STATE(5431)] = 190646, + [SMALL_STATE(5432)] = 190727, + [SMALL_STATE(5433)] = 190808, + [SMALL_STATE(5434)] = 190889, + [SMALL_STATE(5435)] = 190970, + [SMALL_STATE(5436)] = 191051, + [SMALL_STATE(5437)] = 191132, + [SMALL_STATE(5438)] = 191213, + [SMALL_STATE(5439)] = 191294, + [SMALL_STATE(5440)] = 191337, + [SMALL_STATE(5441)] = 191418, + [SMALL_STATE(5442)] = 191499, + [SMALL_STATE(5443)] = 191580, + [SMALL_STATE(5444)] = 191661, + [SMALL_STATE(5445)] = 191742, + [SMALL_STATE(5446)] = 191823, + [SMALL_STATE(5447)] = 191904, + [SMALL_STATE(5448)] = 191985, + [SMALL_STATE(5449)] = 192028, + [SMALL_STATE(5450)] = 192071, + [SMALL_STATE(5451)] = 192114, + [SMALL_STATE(5452)] = 192157, + [SMALL_STATE(5453)] = 192200, + [SMALL_STATE(5454)] = 192243, + [SMALL_STATE(5455)] = 192286, + [SMALL_STATE(5456)] = 192329, + [SMALL_STATE(5457)] = 192372, + [SMALL_STATE(5458)] = 192415, + [SMALL_STATE(5459)] = 192458, + [SMALL_STATE(5460)] = 192501, + [SMALL_STATE(5461)] = 192582, + [SMALL_STATE(5462)] = 192663, + [SMALL_STATE(5463)] = 192744, + [SMALL_STATE(5464)] = 192825, + [SMALL_STATE(5465)] = 192906, + [SMALL_STATE(5466)] = 192984, + [SMALL_STATE(5467)] = 193058, + [SMALL_STATE(5468)] = 193132, + [SMALL_STATE(5469)] = 193206, + [SMALL_STATE(5470)] = 193284, + [SMALL_STATE(5471)] = 193362, + [SMALL_STATE(5472)] = 193436, + [SMALL_STATE(5473)] = 193506, + [SMALL_STATE(5474)] = 193576, + [SMALL_STATE(5475)] = 193654, + [SMALL_STATE(5476)] = 193728, + [SMALL_STATE(5477)] = 193802, + [SMALL_STATE(5478)] = 193876, + [SMALL_STATE(5479)] = 193950, + [SMALL_STATE(5480)] = 194028, + [SMALL_STATE(5481)] = 194102, + [SMALL_STATE(5482)] = 194180, + [SMALL_STATE(5483)] = 194254, + [SMALL_STATE(5484)] = 194332, + [SMALL_STATE(5485)] = 194406, + [SMALL_STATE(5486)] = 194480, + [SMALL_STATE(5487)] = 194554, + [SMALL_STATE(5488)] = 194628, + [SMALL_STATE(5489)] = 194702, + [SMALL_STATE(5490)] = 194776, + [SMALL_STATE(5491)] = 194854, + [SMALL_STATE(5492)] = 194932, + [SMALL_STATE(5493)] = 195006, + [SMALL_STATE(5494)] = 195080, + [SMALL_STATE(5495)] = 195154, + [SMALL_STATE(5496)] = 195228, + [SMALL_STATE(5497)] = 195298, + [SMALL_STATE(5498)] = 195372, + [SMALL_STATE(5499)] = 195446, + [SMALL_STATE(5500)] = 195520, + [SMALL_STATE(5501)] = 195594, + [SMALL_STATE(5502)] = 195668, + [SMALL_STATE(5503)] = 195742, + [SMALL_STATE(5504)] = 195812, + [SMALL_STATE(5505)] = 195886, + [SMALL_STATE(5506)] = 195960, + [SMALL_STATE(5507)] = 196034, + [SMALL_STATE(5508)] = 196108, + [SMALL_STATE(5509)] = 196182, + [SMALL_STATE(5510)] = 196252, + [SMALL_STATE(5511)] = 196326, + [SMALL_STATE(5512)] = 196400, + [SMALL_STATE(5513)] = 196478, + [SMALL_STATE(5514)] = 196552, + [SMALL_STATE(5515)] = 196630, + [SMALL_STATE(5516)] = 196700, + [SMALL_STATE(5517)] = 196774, + [SMALL_STATE(5518)] = 196848, + [SMALL_STATE(5519)] = 196918, + [SMALL_STATE(5520)] = 196992, + [SMALL_STATE(5521)] = 197066, + [SMALL_STATE(5522)] = 197144, + [SMALL_STATE(5523)] = 197222, + [SMALL_STATE(5524)] = 197296, + [SMALL_STATE(5525)] = 197374, + [SMALL_STATE(5526)] = 197448, + [SMALL_STATE(5527)] = 197522, + [SMALL_STATE(5528)] = 197592, + [SMALL_STATE(5529)] = 197666, + [SMALL_STATE(5530)] = 197744, + [SMALL_STATE(5531)] = 197818, + [SMALL_STATE(5532)] = 197892, + [SMALL_STATE(5533)] = 197966, + [SMALL_STATE(5534)] = 198044, + [SMALL_STATE(5535)] = 198118, + [SMALL_STATE(5536)] = 198196, + [SMALL_STATE(5537)] = 198270, + [SMALL_STATE(5538)] = 198344, + [SMALL_STATE(5539)] = 198418, + [SMALL_STATE(5540)] = 198492, + [SMALL_STATE(5541)] = 198566, + [SMALL_STATE(5542)] = 198640, + [SMALL_STATE(5543)] = 198718, + [SMALL_STATE(5544)] = 198785, + [SMALL_STATE(5545)] = 198858, + [SMALL_STATE(5546)] = 198931, + [SMALL_STATE(5547)] = 198998, + [SMALL_STATE(5548)] = 199065, + [SMALL_STATE(5549)] = 199132, + [SMALL_STATE(5550)] = 199169, + [SMALL_STATE(5551)] = 199236, + [SMALL_STATE(5552)] = 199277, + [SMALL_STATE(5553)] = 199314, + [SMALL_STATE(5554)] = 199381, + [SMALL_STATE(5555)] = 199448, + [SMALL_STATE(5556)] = 199521, + [SMALL_STATE(5557)] = 199588, + [SMALL_STATE(5558)] = 199655, + [SMALL_STATE(5559)] = 199722, + [SMALL_STATE(5560)] = 199789, + [SMALL_STATE(5561)] = 199862, + [SMALL_STATE(5562)] = 199929, + [SMALL_STATE(5563)] = 199996, + [SMALL_STATE(5564)] = 200063, + [SMALL_STATE(5565)] = 200136, + [SMALL_STATE(5566)] = 200203, + [SMALL_STATE(5567)] = 200270, + [SMALL_STATE(5568)] = 200337, + [SMALL_STATE(5569)] = 200404, + [SMALL_STATE(5570)] = 200471, + [SMALL_STATE(5571)] = 200538, + [SMALL_STATE(5572)] = 200611, + [SMALL_STATE(5573)] = 200678, + [SMALL_STATE(5574)] = 200745, + [SMALL_STATE(5575)] = 200790, + [SMALL_STATE(5576)] = 200863, + [SMALL_STATE(5577)] = 200930, + [SMALL_STATE(5578)] = 201003, + [SMALL_STATE(5579)] = 201048, + [SMALL_STATE(5580)] = 201115, + [SMALL_STATE(5581)] = 201158, + [SMALL_STATE(5582)] = 201225, + [SMALL_STATE(5583)] = 201292, + [SMALL_STATE(5584)] = 201359, + [SMALL_STATE(5585)] = 201426, + [SMALL_STATE(5586)] = 201499, + [SMALL_STATE(5587)] = 201566, + [SMALL_STATE(5588)] = 201633, + [SMALL_STATE(5589)] = 201700, + [SMALL_STATE(5590)] = 201773, + [SMALL_STATE(5591)] = 201840, + [SMALL_STATE(5592)] = 201913, + [SMALL_STATE(5593)] = 201980, + [SMALL_STATE(5594)] = 202047, + [SMALL_STATE(5595)] = 202120, + [SMALL_STATE(5596)] = 202187, + [SMALL_STATE(5597)] = 202253, + [SMALL_STATE(5598)] = 202319, + [SMALL_STATE(5599)] = 202385, + [SMALL_STATE(5600)] = 202451, + [SMALL_STATE(5601)] = 202517, + [SMALL_STATE(5602)] = 202583, + [SMALL_STATE(5603)] = 202649, + [SMALL_STATE(5604)] = 202715, + [SMALL_STATE(5605)] = 202781, + [SMALL_STATE(5606)] = 202847, + [SMALL_STATE(5607)] = 202913, + [SMALL_STATE(5608)] = 202979, + [SMALL_STATE(5609)] = 203045, + [SMALL_STATE(5610)] = 203111, + [SMALL_STATE(5611)] = 203177, + [SMALL_STATE(5612)] = 203243, + [SMALL_STATE(5613)] = 203309, + [SMALL_STATE(5614)] = 203349, + [SMALL_STATE(5615)] = 203415, + [SMALL_STATE(5616)] = 203480, + [SMALL_STATE(5617)] = 203545, + [SMALL_STATE(5618)] = 203610, + [SMALL_STATE(5619)] = 203675, + [SMALL_STATE(5620)] = 203740, + [SMALL_STATE(5621)] = 203805, + [SMALL_STATE(5622)] = 203870, + [SMALL_STATE(5623)] = 203935, + [SMALL_STATE(5624)] = 204000, + [SMALL_STATE(5625)] = 204065, + [SMALL_STATE(5626)] = 204102, + [SMALL_STATE(5627)] = 204167, + [SMALL_STATE(5628)] = 204232, + [SMALL_STATE(5629)] = 204297, + [SMALL_STATE(5630)] = 204362, + [SMALL_STATE(5631)] = 204427, + [SMALL_STATE(5632)] = 204492, + [SMALL_STATE(5633)] = 204557, + [SMALL_STATE(5634)] = 204622, + [SMALL_STATE(5635)] = 204687, + [SMALL_STATE(5636)] = 204752, + [SMALL_STATE(5637)] = 204817, + [SMALL_STATE(5638)] = 204882, + [SMALL_STATE(5639)] = 204947, + [SMALL_STATE(5640)] = 205012, + [SMALL_STATE(5641)] = 205077, + [SMALL_STATE(5642)] = 205142, + [SMALL_STATE(5643)] = 205207, + [SMALL_STATE(5644)] = 205272, + [SMALL_STATE(5645)] = 205337, + [SMALL_STATE(5646)] = 205402, + [SMALL_STATE(5647)] = 205466, + [SMALL_STATE(5648)] = 205524, + [SMALL_STATE(5649)] = 205588, + [SMALL_STATE(5650)] = 205646, + [SMALL_STATE(5651)] = 205710, + [SMALL_STATE(5652)] = 205774, + [SMALL_STATE(5653)] = 205838, + [SMALL_STATE(5654)] = 205896, + [SMALL_STATE(5655)] = 205960, + [SMALL_STATE(5656)] = 206018, + [SMALL_STATE(5657)] = 206081, + [SMALL_STATE(5658)] = 206142, + [SMALL_STATE(5659)] = 206205, + [SMALL_STATE(5660)] = 206266, + [SMALL_STATE(5661)] = 206327, + [SMALL_STATE(5662)] = 206390, + [SMALL_STATE(5663)] = 206453, + [SMALL_STATE(5664)] = 206516, + [SMALL_STATE(5665)] = 206579, + [SMALL_STATE(5666)] = 206642, + [SMALL_STATE(5667)] = 206705, + [SMALL_STATE(5668)] = 206768, + [SMALL_STATE(5669)] = 206829, + [SMALL_STATE(5670)] = 206892, + [SMALL_STATE(5671)] = 206955, + [SMALL_STATE(5672)] = 207006, + [SMALL_STATE(5673)] = 207067, + [SMALL_STATE(5674)] = 207118, + [SMALL_STATE(5675)] = 207169, + [SMALL_STATE(5676)] = 207232, + [SMALL_STATE(5677)] = 207295, + [SMALL_STATE(5678)] = 207358, + [SMALL_STATE(5679)] = 207421, + [SMALL_STATE(5680)] = 207482, + [SMALL_STATE(5681)] = 207545, + [SMALL_STATE(5682)] = 207608, + [SMALL_STATE(5683)] = 207671, + [SMALL_STATE(5684)] = 207732, + [SMALL_STATE(5685)] = 207794, + [SMALL_STATE(5686)] = 207856, + [SMALL_STATE(5687)] = 207918, + [SMALL_STATE(5688)] = 207980, + [SMALL_STATE(5689)] = 208042, + [SMALL_STATE(5690)] = 208104, + [SMALL_STATE(5691)] = 208166, + [SMALL_STATE(5692)] = 208240, + [SMALL_STATE(5693)] = 208314, + [SMALL_STATE(5694)] = 208356, + [SMALL_STATE(5695)] = 208398, + [SMALL_STATE(5696)] = 208472, + [SMALL_STATE(5697)] = 208534, + [SMALL_STATE(5698)] = 208596, + [SMALL_STATE(5699)] = 208658, + [SMALL_STATE(5700)] = 208712, + [SMALL_STATE(5701)] = 208774, + [SMALL_STATE(5702)] = 208836, + [SMALL_STATE(5703)] = 208898, + [SMALL_STATE(5704)] = 208960, + [SMALL_STATE(5705)] = 209022, + [SMALL_STATE(5706)] = 209084, + [SMALL_STATE(5707)] = 209146, + [SMALL_STATE(5708)] = 209208, + [SMALL_STATE(5709)] = 209257, + [SMALL_STATE(5710)] = 209288, + [SMALL_STATE(5711)] = 209340, + [SMALL_STATE(5712)] = 209410, + [SMALL_STATE(5713)] = 209462, + [SMALL_STATE(5714)] = 209502, + [SMALL_STATE(5715)] = 209536, + [SMALL_STATE(5716)] = 209588, + [SMALL_STATE(5717)] = 209640, + [SMALL_STATE(5718)] = 209692, + [SMALL_STATE(5719)] = 209730, + [SMALL_STATE(5720)] = 209782, + [SMALL_STATE(5721)] = 209830, + [SMALL_STATE(5722)] = 209882, + [SMALL_STATE(5723)] = 209934, + [SMALL_STATE(5724)] = 209986, + [SMALL_STATE(5725)] = 210020, + [SMALL_STATE(5726)] = 210072, + [SMALL_STATE(5727)] = 210124, + [SMALL_STATE(5728)] = 210176, + [SMALL_STATE(5729)] = 210228, + [SMALL_STATE(5730)] = 210280, + [SMALL_STATE(5731)] = 210318, + [SMALL_STATE(5732)] = 210356, + [SMALL_STATE(5733)] = 210394, + [SMALL_STATE(5734)] = 210446, + [SMALL_STATE(5735)] = 210498, + [SMALL_STATE(5736)] = 210550, + [SMALL_STATE(5737)] = 210596, + [SMALL_STATE(5738)] = 210648, + [SMALL_STATE(5739)] = 210700, + [SMALL_STATE(5740)] = 210752, + [SMALL_STATE(5741)] = 210804, + [SMALL_STATE(5742)] = 210844, + [SMALL_STATE(5743)] = 210876, + [SMALL_STATE(5744)] = 210928, + [SMALL_STATE(5745)] = 210980, + [SMALL_STATE(5746)] = 211018, + [SMALL_STATE(5747)] = 211056, + [SMALL_STATE(5748)] = 211094, + [SMALL_STATE(5749)] = 211146, + [SMALL_STATE(5750)] = 211184, + [SMALL_STATE(5751)] = 211218, + [SMALL_STATE(5752)] = 211256, + [SMALL_STATE(5753)] = 211290, + [SMALL_STATE(5754)] = 211328, + [SMALL_STATE(5755)] = 211380, + [SMALL_STATE(5756)] = 211432, + [SMALL_STATE(5757)] = 211484, + [SMALL_STATE(5758)] = 211536, + [SMALL_STATE(5759)] = 211588, + [SMALL_STATE(5760)] = 211640, + [SMALL_STATE(5761)] = 211692, + [SMALL_STATE(5762)] = 211744, + [SMALL_STATE(5763)] = 211814, + [SMALL_STATE(5764)] = 211866, + [SMALL_STATE(5765)] = 211918, + [SMALL_STATE(5766)] = 211970, + [SMALL_STATE(5767)] = 212040, + [SMALL_STATE(5768)] = 212092, + [SMALL_STATE(5769)] = 212144, + [SMALL_STATE(5770)] = 212196, + [SMALL_STATE(5771)] = 212230, + [SMALL_STATE(5772)] = 212282, + [SMALL_STATE(5773)] = 212334, + [SMALL_STATE(5774)] = 212386, + [SMALL_STATE(5775)] = 212445, + [SMALL_STATE(5776)] = 212488, + [SMALL_STATE(5777)] = 212547, + [SMALL_STATE(5778)] = 212576, + [SMALL_STATE(5779)] = 212635, + [SMALL_STATE(5780)] = 212694, + [SMALL_STATE(5781)] = 212753, + [SMALL_STATE(5782)] = 212782, + [SMALL_STATE(5783)] = 212841, + [SMALL_STATE(5784)] = 212900, + [SMALL_STATE(5785)] = 212959, + [SMALL_STATE(5786)] = 213018, + [SMALL_STATE(5787)] = 213077, + [SMALL_STATE(5788)] = 213136, + [SMALL_STATE(5789)] = 213173, + [SMALL_STATE(5790)] = 213202, + [SMALL_STATE(5791)] = 213231, + [SMALL_STATE(5792)] = 213260, + [SMALL_STATE(5793)] = 213319, + [SMALL_STATE(5794)] = 213378, + [SMALL_STATE(5795)] = 213407, + [SMALL_STATE(5796)] = 213466, + [SMALL_STATE(5797)] = 213525, + [SMALL_STATE(5798)] = 213568, + [SMALL_STATE(5799)] = 213627, + [SMALL_STATE(5800)] = 213686, + [SMALL_STATE(5801)] = 213745, + [SMALL_STATE(5802)] = 213804, + [SMALL_STATE(5803)] = 213863, + [SMALL_STATE(5804)] = 213922, + [SMALL_STATE(5805)] = 213975, + [SMALL_STATE(5806)] = 214034, + [SMALL_STATE(5807)] = 214093, + [SMALL_STATE(5808)] = 214152, + [SMALL_STATE(5809)] = 214211, + [SMALL_STATE(5810)] = 214248, + [SMALL_STATE(5811)] = 214277, + [SMALL_STATE(5812)] = 214322, + [SMALL_STATE(5813)] = 214381, + [SMALL_STATE(5814)] = 214440, + [SMALL_STATE(5815)] = 214501, + [SMALL_STATE(5816)] = 214560, + [SMALL_STATE(5817)] = 214597, + [SMALL_STATE(5818)] = 214656, + [SMALL_STATE(5819)] = 214685, + [SMALL_STATE(5820)] = 214744, + [SMALL_STATE(5821)] = 214803, + [SMALL_STATE(5822)] = 214832, + [SMALL_STATE(5823)] = 214861, + [SMALL_STATE(5824)] = 214920, + [SMALL_STATE(5825)] = 214949, + [SMALL_STATE(5826)] = 214986, + [SMALL_STATE(5827)] = 215023, + [SMALL_STATE(5828)] = 215078, + [SMALL_STATE(5829)] = 215137, + [SMALL_STATE(5830)] = 215196, + [SMALL_STATE(5831)] = 215227, + [SMALL_STATE(5832)] = 215286, + [SMALL_STATE(5833)] = 215345, + [SMALL_STATE(5834)] = 215378, + [SMALL_STATE(5835)] = 215437, + [SMALL_STATE(5836)] = 215466, + [SMALL_STATE(5837)] = 215525, + [SMALL_STATE(5838)] = 215584, + [SMALL_STATE(5839)] = 215643, + [SMALL_STATE(5840)] = 215702, + [SMALL_STATE(5841)] = 215761, + [SMALL_STATE(5842)] = 215820, + [SMALL_STATE(5843)] = 215853, + [SMALL_STATE(5844)] = 215912, + [SMALL_STATE(5845)] = 215941, + [SMALL_STATE(5846)] = 216000, + [SMALL_STATE(5847)] = 216059, + [SMALL_STATE(5848)] = 216118, + [SMALL_STATE(5849)] = 216177, + [SMALL_STATE(5850)] = 216214, + [SMALL_STATE(5851)] = 216243, + [SMALL_STATE(5852)] = 216302, + [SMALL_STATE(5853)] = 216361, + [SMALL_STATE(5854)] = 216390, + [SMALL_STATE(5855)] = 216449, + [SMALL_STATE(5856)] = 216478, + [SMALL_STATE(5857)] = 216537, + [SMALL_STATE(5858)] = 216574, + [SMALL_STATE(5859)] = 216629, + [SMALL_STATE(5860)] = 216688, + [SMALL_STATE(5861)] = 216741, + [SMALL_STATE(5862)] = 216800, + [SMALL_STATE(5863)] = 216859, + [SMALL_STATE(5864)] = 216918, + [SMALL_STATE(5865)] = 216947, + [SMALL_STATE(5866)] = 217006, + [SMALL_STATE(5867)] = 217065, + [SMALL_STATE(5868)] = 217124, + [SMALL_STATE(5869)] = 217183, + [SMALL_STATE(5870)] = 217244, + [SMALL_STATE(5871)] = 217299, + [SMALL_STATE(5872)] = 217358, + [SMALL_STATE(5873)] = 217417, + [SMALL_STATE(5874)] = 217446, + [SMALL_STATE(5875)] = 217505, + [SMALL_STATE(5876)] = 217534, + [SMALL_STATE(5877)] = 217593, + [SMALL_STATE(5878)] = 217622, + [SMALL_STATE(5879)] = 217681, + [SMALL_STATE(5880)] = 217742, + [SMALL_STATE(5881)] = 217801, + [SMALL_STATE(5882)] = 217860, + [SMALL_STATE(5883)] = 217919, + [SMALL_STATE(5884)] = 217978, + [SMALL_STATE(5885)] = 218007, + [SMALL_STATE(5886)] = 218066, + [SMALL_STATE(5887)] = 218125, + [SMALL_STATE(5888)] = 218184, + [SMALL_STATE(5889)] = 218245, + [SMALL_STATE(5890)] = 218306, + [SMALL_STATE(5891)] = 218343, + [SMALL_STATE(5892)] = 218404, + [SMALL_STATE(5893)] = 218463, + [SMALL_STATE(5894)] = 218522, + [SMALL_STATE(5895)] = 218555, + [SMALL_STATE(5896)] = 218614, + [SMALL_STATE(5897)] = 218673, + [SMALL_STATE(5898)] = 218732, + [SMALL_STATE(5899)] = 218791, + [SMALL_STATE(5900)] = 218850, + [SMALL_STATE(5901)] = 218909, + [SMALL_STATE(5902)] = 218942, + [SMALL_STATE(5903)] = 219003, + [SMALL_STATE(5904)] = 219032, + [SMALL_STATE(5905)] = 219091, + [SMALL_STATE(5906)] = 219150, + [SMALL_STATE(5907)] = 219209, + [SMALL_STATE(5908)] = 219268, + [SMALL_STATE(5909)] = 219327, + [SMALL_STATE(5910)] = 219386, + [SMALL_STATE(5911)] = 219445, + [SMALL_STATE(5912)] = 219476, + [SMALL_STATE(5913)] = 219539, + [SMALL_STATE(5914)] = 219582, + [SMALL_STATE(5915)] = 219635, + [SMALL_STATE(5916)] = 219672, + [SMALL_STATE(5917)] = 219709, + [SMALL_STATE(5918)] = 219768, + [SMALL_STATE(5919)] = 219827, + [SMALL_STATE(5920)] = 219886, + [SMALL_STATE(5921)] = 219926, + [SMALL_STATE(5922)] = 219954, + [SMALL_STATE(5923)] = 220006, + [SMALL_STATE(5924)] = 220050, + [SMALL_STATE(5925)] = 220090, + [SMALL_STATE(5926)] = 220140, + [SMALL_STATE(5927)] = 220180, + [SMALL_STATE(5928)] = 220232, + [SMALL_STATE(5929)] = 220272, + [SMALL_STATE(5930)] = 220312, + [SMALL_STATE(5931)] = 220340, + [SMALL_STATE(5932)] = 220404, + [SMALL_STATE(5933)] = 220444, + [SMALL_STATE(5934)] = 220484, + [SMALL_STATE(5935)] = 220516, + [SMALL_STATE(5936)] = 220556, + [SMALL_STATE(5937)] = 220600, + [SMALL_STATE(5938)] = 220664, + [SMALL_STATE(5939)] = 220704, + [SMALL_STATE(5940)] = 220746, + [SMALL_STATE(5941)] = 220790, + [SMALL_STATE(5942)] = 220818, + [SMALL_STATE(5943)] = 220882, + [SMALL_STATE(5944)] = 220922, + [SMALL_STATE(5945)] = 220972, + [SMALL_STATE(5946)] = 221022, + [SMALL_STATE(5947)] = 221062, + [SMALL_STATE(5948)] = 221112, + [SMALL_STATE(5949)] = 221176, + [SMALL_STATE(5950)] = 221228, + [SMALL_STATE(5951)] = 221280, + [SMALL_STATE(5952)] = 221332, + [SMALL_STATE(5953)] = 221372, + [SMALL_STATE(5954)] = 221424, + [SMALL_STATE(5955)] = 221474, + [SMALL_STATE(5956)] = 221526, + [SMALL_STATE(5957)] = 221554, + [SMALL_STATE(5958)] = 221604, + [SMALL_STATE(5959)] = 221656, + [SMALL_STATE(5960)] = 221708, + [SMALL_STATE(5961)] = 221748, + [SMALL_STATE(5962)] = 221812, + [SMALL_STATE(5963)] = 221852, + [SMALL_STATE(5964)] = 221902, + [SMALL_STATE(5965)] = 221934, + [SMALL_STATE(5966)] = 221984, + [SMALL_STATE(5967)] = 222048, + [SMALL_STATE(5968)] = 222098, + [SMALL_STATE(5969)] = 222148, + [SMALL_STATE(5970)] = 222200, + [SMALL_STATE(5971)] = 222240, + [SMALL_STATE(5972)] = 222280, + [SMALL_STATE(5973)] = 222320, + [SMALL_STATE(5974)] = 222384, + [SMALL_STATE(5975)] = 222436, + [SMALL_STATE(5976)] = 222488, + [SMALL_STATE(5977)] = 222528, + [SMALL_STATE(5978)] = 222578, + [SMALL_STATE(5979)] = 222630, + [SMALL_STATE(5980)] = 222664, + [SMALL_STATE(5981)] = 222704, + [SMALL_STATE(5982)] = 222744, + [SMALL_STATE(5983)] = 222784, + [SMALL_STATE(5984)] = 222830, + [SMALL_STATE(5985)] = 222858, + [SMALL_STATE(5986)] = 222898, + [SMALL_STATE(5987)] = 222962, + [SMALL_STATE(5988)] = 223002, + [SMALL_STATE(5989)] = 223042, + [SMALL_STATE(5990)] = 223106, + [SMALL_STATE(5991)] = 223146, + [SMALL_STATE(5992)] = 223198, + [SMALL_STATE(5993)] = 223262, + [SMALL_STATE(5994)] = 223302, + [SMALL_STATE(5995)] = 223354, + [SMALL_STATE(5996)] = 223404, + [SMALL_STATE(5997)] = 223444, + [SMALL_STATE(5998)] = 223476, + [SMALL_STATE(5999)] = 223528, + [SMALL_STATE(6000)] = 223568, + [SMALL_STATE(6001)] = 223596, + [SMALL_STATE(6002)] = 223642, + [SMALL_STATE(6003)] = 223692, + [SMALL_STATE(6004)] = 223732, + [SMALL_STATE(6005)] = 223784, + [SMALL_STATE(6006)] = 223824, + [SMALL_STATE(6007)] = 223876, + [SMALL_STATE(6008)] = 223924, + [SMALL_STATE(6009)] = 223964, + [SMALL_STATE(6010)] = 224004, + [SMALL_STATE(6011)] = 224044, + [SMALL_STATE(6012)] = 224096, + [SMALL_STATE(6013)] = 224124, + [SMALL_STATE(6014)] = 224170, + [SMALL_STATE(6015)] = 224210, + [SMALL_STATE(6016)] = 224250, + [SMALL_STATE(6017)] = 224290, + [SMALL_STATE(6018)] = 224330, + [SMALL_STATE(6019)] = 224370, + [SMALL_STATE(6020)] = 224434, + [SMALL_STATE(6021)] = 224462, + [SMALL_STATE(6022)] = 224514, + [SMALL_STATE(6023)] = 224554, + [SMALL_STATE(6024)] = 224594, + [SMALL_STATE(6025)] = 224634, + [SMALL_STATE(6026)] = 224674, + [SMALL_STATE(6027)] = 224706, + [SMALL_STATE(6028)] = 224756, + [SMALL_STATE(6029)] = 224796, + [SMALL_STATE(6030)] = 224860, + [SMALL_STATE(6031)] = 224900, + [SMALL_STATE(6032)] = 224940, + [SMALL_STATE(6033)] = 224980, + [SMALL_STATE(6034)] = 225020, + [SMALL_STATE(6035)] = 225060, + [SMALL_STATE(6036)] = 225100, + [SMALL_STATE(6037)] = 225140, + [SMALL_STATE(6038)] = 225180, + [SMALL_STATE(6039)] = 225244, + [SMALL_STATE(6040)] = 225272, + [SMALL_STATE(6041)] = 225312, + [SMALL_STATE(6042)] = 225344, + [SMALL_STATE(6043)] = 225396, + [SMALL_STATE(6044)] = 225424, + [SMALL_STATE(6045)] = 225476, + [SMALL_STATE(6046)] = 225516, + [SMALL_STATE(6047)] = 225566, + [SMALL_STATE(6048)] = 225618, + [SMALL_STATE(6049)] = 225664, + [SMALL_STATE(6050)] = 225704, + [SMALL_STATE(6051)] = 225744, + [SMALL_STATE(6052)] = 225794, + [SMALL_STATE(6053)] = 225846, + [SMALL_STATE(6054)] = 225898, + [SMALL_STATE(6055)] = 225962, + [SMALL_STATE(6056)] = 226002, + [SMALL_STATE(6057)] = 226054, + [SMALL_STATE(6058)] = 226106, + [SMALL_STATE(6059)] = 226146, + [SMALL_STATE(6060)] = 226196, + [SMALL_STATE(6061)] = 226248, + [SMALL_STATE(6062)] = 226294, + [SMALL_STATE(6063)] = 226334, + [SMALL_STATE(6064)] = 226374, + [SMALL_STATE(6065)] = 226424, + [SMALL_STATE(6066)] = 226464, + [SMALL_STATE(6067)] = 226504, + [SMALL_STATE(6068)] = 226544, + [SMALL_STATE(6069)] = 226584, + [SMALL_STATE(6070)] = 226620, + [SMALL_STATE(6071)] = 226660, + [SMALL_STATE(6072)] = 226710, + [SMALL_STATE(6073)] = 226759, + [SMALL_STATE(6074)] = 226794, + [SMALL_STATE(6075)] = 226821, + [SMALL_STATE(6076)] = 226868, + [SMALL_STATE(6077)] = 226911, + [SMALL_STATE(6078)] = 226938, + [SMALL_STATE(6079)] = 226965, + [SMALL_STATE(6080)] = 227012, + [SMALL_STATE(6081)] = 227057, + [SMALL_STATE(6082)] = 227102, + [SMALL_STATE(6083)] = 227159, + [SMALL_STATE(6084)] = 227186, + [SMALL_STATE(6085)] = 227215, + [SMALL_STATE(6086)] = 227242, + [SMALL_STATE(6087)] = 227269, + [SMALL_STATE(6088)] = 227316, + [SMALL_STATE(6089)] = 227361, + [SMALL_STATE(6090)] = 227404, + [SMALL_STATE(6091)] = 227431, + [SMALL_STATE(6092)] = 227470, + [SMALL_STATE(6093)] = 227527, + [SMALL_STATE(6094)] = 227554, + [SMALL_STATE(6095)] = 227581, + [SMALL_STATE(6096)] = 227626, + [SMALL_STATE(6097)] = 227653, + [SMALL_STATE(6098)] = 227700, + [SMALL_STATE(6099)] = 227745, + [SMALL_STATE(6100)] = 227772, + [SMALL_STATE(6101)] = 227799, + [SMALL_STATE(6102)] = 227826, + [SMALL_STATE(6103)] = 227873, + [SMALL_STATE(6104)] = 227900, + [SMALL_STATE(6105)] = 227927, + [SMALL_STATE(6106)] = 227954, + [SMALL_STATE(6107)] = 228003, + [SMALL_STATE(6108)] = 228030, + [SMALL_STATE(6109)] = 228057, + [SMALL_STATE(6110)] = 228084, + [SMALL_STATE(6111)] = 228131, + [SMALL_STATE(6112)] = 228176, + [SMALL_STATE(6113)] = 228203, + [SMALL_STATE(6114)] = 228246, + [SMALL_STATE(6115)] = 228293, + [SMALL_STATE(6116)] = 228348, + [SMALL_STATE(6117)] = 228395, + [SMALL_STATE(6118)] = 228452, + [SMALL_STATE(6119)] = 228479, + [SMALL_STATE(6120)] = 228516, + [SMALL_STATE(6121)] = 228573, + [SMALL_STATE(6122)] = 228600, + [SMALL_STATE(6123)] = 228645, + [SMALL_STATE(6124)] = 228678, + [SMALL_STATE(6125)] = 228705, + [SMALL_STATE(6126)] = 228752, + [SMALL_STATE(6127)] = 228797, + [SMALL_STATE(6128)] = 228824, + [SMALL_STATE(6129)] = 228869, + [SMALL_STATE(6130)] = 228896, + [SMALL_STATE(6131)] = 228941, + [SMALL_STATE(6132)] = 228986, + [SMALL_STATE(6133)] = 229013, + [SMALL_STATE(6134)] = 229046, + [SMALL_STATE(6135)] = 229103, + [SMALL_STATE(6136)] = 229134, + [SMALL_STATE(6137)] = 229163, + [SMALL_STATE(6138)] = 229208, + [SMALL_STATE(6139)] = 229253, + [SMALL_STATE(6140)] = 229280, + [SMALL_STATE(6141)] = 229325, + [SMALL_STATE(6142)] = 229382, + [SMALL_STATE(6143)] = 229409, + [SMALL_STATE(6144)] = 229442, + [SMALL_STATE(6145)] = 229483, + [SMALL_STATE(6146)] = 229530, + [SMALL_STATE(6147)] = 229577, + [SMALL_STATE(6148)] = 229610, + [SMALL_STATE(6149)] = 229643, + [SMALL_STATE(6150)] = 229670, + [SMALL_STATE(6151)] = 229717, + [SMALL_STATE(6152)] = 229744, + [SMALL_STATE(6153)] = 229789, + [SMALL_STATE(6154)] = 229816, + [SMALL_STATE(6155)] = 229873, + [SMALL_STATE(6156)] = 229901, + [SMALL_STATE(6157)] = 229943, + [SMALL_STATE(6158)] = 229969, + [SMALL_STATE(6159)] = 230003, + [SMALL_STATE(6160)] = 230037, + [SMALL_STATE(6161)] = 230063, + [SMALL_STATE(6162)] = 230097, + [SMALL_STATE(6163)] = 230123, + [SMALL_STATE(6164)] = 230149, + [SMALL_STATE(6165)] = 230183, + [SMALL_STATE(6166)] = 230213, + [SMALL_STATE(6167)] = 230247, + [SMALL_STATE(6168)] = 230283, + [SMALL_STATE(6169)] = 230309, + [SMALL_STATE(6170)] = 230357, + [SMALL_STATE(6171)] = 230405, + [SMALL_STATE(6172)] = 230457, + [SMALL_STATE(6173)] = 230491, + [SMALL_STATE(6174)] = 230517, + [SMALL_STATE(6175)] = 230547, + [SMALL_STATE(6176)] = 230585, + [SMALL_STATE(6177)] = 230623, + [SMALL_STATE(6178)] = 230661, + [SMALL_STATE(6179)] = 230699, + [SMALL_STATE(6180)] = 230747, + [SMALL_STATE(6181)] = 230773, + [SMALL_STATE(6182)] = 230799, + [SMALL_STATE(6183)] = 230837, + [SMALL_STATE(6184)] = 230873, + [SMALL_STATE(6185)] = 230911, + [SMALL_STATE(6186)] = 230949, + [SMALL_STATE(6187)] = 231001, + [SMALL_STATE(6188)] = 231027, + [SMALL_STATE(6189)] = 231061, + [SMALL_STATE(6190)] = 231087, + [SMALL_STATE(6191)] = 231121, + [SMALL_STATE(6192)] = 231147, + [SMALL_STATE(6193)] = 231173, + [SMALL_STATE(6194)] = 231203, + [SMALL_STATE(6195)] = 231229, + [SMALL_STATE(6196)] = 231263, + [SMALL_STATE(6197)] = 231293, + [SMALL_STATE(6198)] = 231323, + [SMALL_STATE(6199)] = 231371, + [SMALL_STATE(6200)] = 231423, + [SMALL_STATE(6201)] = 231475, + [SMALL_STATE(6202)] = 231509, + [SMALL_STATE(6203)] = 231535, + [SMALL_STATE(6204)] = 231571, + [SMALL_STATE(6205)] = 231597, + [SMALL_STATE(6206)] = 231633, + [SMALL_STATE(6207)] = 231659, + [SMALL_STATE(6208)] = 231713, + [SMALL_STATE(6209)] = 231739, + [SMALL_STATE(6210)] = 231765, + [SMALL_STATE(6211)] = 231791, + [SMALL_STATE(6212)] = 231817, + [SMALL_STATE(6213)] = 231843, + [SMALL_STATE(6214)] = 231895, + [SMALL_STATE(6215)] = 231931, + [SMALL_STATE(6216)] = 231969, + [SMALL_STATE(6217)] = 232012, + [SMALL_STATE(6218)] = 232061, + [SMALL_STATE(6219)] = 232108, + [SMALL_STATE(6220)] = 232141, + [SMALL_STATE(6221)] = 232170, + [SMALL_STATE(6222)] = 232219, + [SMALL_STATE(6223)] = 232256, + [SMALL_STATE(6224)] = 232293, + [SMALL_STATE(6225)] = 232324, + [SMALL_STATE(6226)] = 232373, + [SMALL_STATE(6227)] = 232410, + [SMALL_STATE(6228)] = 232459, + [SMALL_STATE(6229)] = 232508, + [SMALL_STATE(6230)] = 232557, + [SMALL_STATE(6231)] = 232606, + [SMALL_STATE(6232)] = 232631, + [SMALL_STATE(6233)] = 232660, + [SMALL_STATE(6234)] = 232693, + [SMALL_STATE(6235)] = 232726, + [SMALL_STATE(6236)] = 232775, + [SMALL_STATE(6237)] = 232824, + [SMALL_STATE(6238)] = 232861, + [SMALL_STATE(6239)] = 232910, + [SMALL_STATE(6240)] = 232959, + [SMALL_STATE(6241)] = 233008, + [SMALL_STATE(6242)] = 233051, + [SMALL_STATE(6243)] = 233100, + [SMALL_STATE(6244)] = 233131, + [SMALL_STATE(6245)] = 233180, + [SMALL_STATE(6246)] = 233217, + [SMALL_STATE(6247)] = 233266, + [SMALL_STATE(6248)] = 233303, + [SMALL_STATE(6249)] = 233352, + [SMALL_STATE(6250)] = 233401, + [SMALL_STATE(6251)] = 233450, + [SMALL_STATE(6252)] = 233483, + [SMALL_STATE(6253)] = 233532, + [SMALL_STATE(6254)] = 233581, + [SMALL_STATE(6255)] = 233618, + [SMALL_STATE(6256)] = 233667, + [SMALL_STATE(6257)] = 233704, + [SMALL_STATE(6258)] = 233741, + [SMALL_STATE(6259)] = 233774, + [SMALL_STATE(6260)] = 233817, + [SMALL_STATE(6261)] = 233866, + [SMALL_STATE(6262)] = 233915, + [SMALL_STATE(6263)] = 233964, + [SMALL_STATE(6264)] = 234013, + [SMALL_STATE(6265)] = 234050, + [SMALL_STATE(6266)] = 234099, + [SMALL_STATE(6267)] = 234136, + [SMALL_STATE(6268)] = 234177, + [SMALL_STATE(6269)] = 234214, + [SMALL_STATE(6270)] = 234251, + [SMALL_STATE(6271)] = 234300, + [SMALL_STATE(6272)] = 234343, + [SMALL_STATE(6273)] = 234392, + [SMALL_STATE(6274)] = 234429, + [SMALL_STATE(6275)] = 234462, + [SMALL_STATE(6276)] = 234511, + [SMALL_STATE(6277)] = 234554, + [SMALL_STATE(6278)] = 234603, + [SMALL_STATE(6279)] = 234636, + [SMALL_STATE(6280)] = 234667, + [SMALL_STATE(6281)] = 234704, + [SMALL_STATE(6282)] = 234753, + [SMALL_STATE(6283)] = 234802, + [SMALL_STATE(6284)] = 234851, + [SMALL_STATE(6285)] = 234900, + [SMALL_STATE(6286)] = 234929, + [SMALL_STATE(6287)] = 234962, + [SMALL_STATE(6288)] = 234989, + [SMALL_STATE(6289)] = 235030, + [SMALL_STATE(6290)] = 235079, + [SMALL_STATE(6291)] = 235122, + [SMALL_STATE(6292)] = 235159, + [SMALL_STATE(6293)] = 235192, + [SMALL_STATE(6294)] = 235241, + [SMALL_STATE(6295)] = 235272, + [SMALL_STATE(6296)] = 235321, + [SMALL_STATE(6297)] = 235348, + [SMALL_STATE(6298)] = 235397, + [SMALL_STATE(6299)] = 235430, + [SMALL_STATE(6300)] = 235463, + [SMALL_STATE(6301)] = 235487, + [SMALL_STATE(6302)] = 235511, + [SMALL_STATE(6303)] = 235543, + [SMALL_STATE(6304)] = 235567, + [SMALL_STATE(6305)] = 235591, + [SMALL_STATE(6306)] = 235623, + [SMALL_STATE(6307)] = 235647, + [SMALL_STATE(6308)] = 235679, + [SMALL_STATE(6309)] = 235703, + [SMALL_STATE(6310)] = 235735, + [SMALL_STATE(6311)] = 235767, + [SMALL_STATE(6312)] = 235799, + [SMALL_STATE(6313)] = 235831, + [SMALL_STATE(6314)] = 235863, + [SMALL_STATE(6315)] = 235895, + [SMALL_STATE(6316)] = 235927, + [SMALL_STATE(6317)] = 235959, + [SMALL_STATE(6318)] = 235999, + [SMALL_STATE(6319)] = 236035, + [SMALL_STATE(6320)] = 236059, + [SMALL_STATE(6321)] = 236083, + [SMALL_STATE(6322)] = 236107, + [SMALL_STATE(6323)] = 236131, + [SMALL_STATE(6324)] = 236171, + [SMALL_STATE(6325)] = 236211, + [SMALL_STATE(6326)] = 236243, + [SMALL_STATE(6327)] = 236275, + [SMALL_STATE(6328)] = 236307, + [SMALL_STATE(6329)] = 236339, + [SMALL_STATE(6330)] = 236371, + [SMALL_STATE(6331)] = 236403, + [SMALL_STATE(6332)] = 236435, + [SMALL_STATE(6333)] = 236467, + [SMALL_STATE(6334)] = 236507, + [SMALL_STATE(6335)] = 236543, + [SMALL_STATE(6336)] = 236567, + [SMALL_STATE(6337)] = 236603, + [SMALL_STATE(6338)] = 236643, + [SMALL_STATE(6339)] = 236685, + [SMALL_STATE(6340)] = 236721, + [SMALL_STATE(6341)] = 236745, + [SMALL_STATE(6342)] = 236769, + [SMALL_STATE(6343)] = 236793, + [SMALL_STATE(6344)] = 236829, + [SMALL_STATE(6345)] = 236853, + [SMALL_STATE(6346)] = 236877, + [SMALL_STATE(6347)] = 236917, + [SMALL_STATE(6348)] = 236957, + [SMALL_STATE(6349)] = 236997, + [SMALL_STATE(6350)] = 237021, + [SMALL_STATE(6351)] = 237045, + [SMALL_STATE(6352)] = 237069, + [SMALL_STATE(6353)] = 237093, + [SMALL_STATE(6354)] = 237125, + [SMALL_STATE(6355)] = 237149, + [SMALL_STATE(6356)] = 237185, + [SMALL_STATE(6357)] = 237211, + [SMALL_STATE(6358)] = 237239, + [SMALL_STATE(6359)] = 237263, + [SMALL_STATE(6360)] = 237303, + [SMALL_STATE(6361)] = 237343, + [SMALL_STATE(6362)] = 237367, + [SMALL_STATE(6363)] = 237391, + [SMALL_STATE(6364)] = 237415, + [SMALL_STATE(6365)] = 237455, + [SMALL_STATE(6366)] = 237479, + [SMALL_STATE(6367)] = 237511, + [SMALL_STATE(6368)] = 237551, + [SMALL_STATE(6369)] = 237575, + [SMALL_STATE(6370)] = 237615, + [SMALL_STATE(6371)] = 237639, + [SMALL_STATE(6372)] = 237671, + [SMALL_STATE(6373)] = 237707, + [SMALL_STATE(6374)] = 237731, + [SMALL_STATE(6375)] = 237755, + [SMALL_STATE(6376)] = 237779, + [SMALL_STATE(6377)] = 237803, + [SMALL_STATE(6378)] = 237843, + [SMALL_STATE(6379)] = 237875, + [SMALL_STATE(6380)] = 237915, + [SMALL_STATE(6381)] = 237951, + [SMALL_STATE(6382)] = 237975, + [SMALL_STATE(6383)] = 238007, + [SMALL_STATE(6384)] = 238039, + [SMALL_STATE(6385)] = 238079, + [SMALL_STATE(6386)] = 238103, + [SMALL_STATE(6387)] = 238127, + [SMALL_STATE(6388)] = 238151, + [SMALL_STATE(6389)] = 238175, + [SMALL_STATE(6390)] = 238199, + [SMALL_STATE(6391)] = 238223, + [SMALL_STATE(6392)] = 238247, + [SMALL_STATE(6393)] = 238271, + [SMALL_STATE(6394)] = 238303, + [SMALL_STATE(6395)] = 238327, + [SMALL_STATE(6396)] = 238351, + [SMALL_STATE(6397)] = 238375, + [SMALL_STATE(6398)] = 238399, + [SMALL_STATE(6399)] = 238423, + [SMALL_STATE(6400)] = 238447, + [SMALL_STATE(6401)] = 238487, + [SMALL_STATE(6402)] = 238527, + [SMALL_STATE(6403)] = 238567, + [SMALL_STATE(6404)] = 238613, + [SMALL_STATE(6405)] = 238637, + [SMALL_STATE(6406)] = 238669, + [SMALL_STATE(6407)] = 238701, + [SMALL_STATE(6408)] = 238741, + [SMALL_STATE(6409)] = 238765, + [SMALL_STATE(6410)] = 238797, + [SMALL_STATE(6411)] = 238829, + [SMALL_STATE(6412)] = 238861, + [SMALL_STATE(6413)] = 238893, + [SMALL_STATE(6414)] = 238925, + [SMALL_STATE(6415)] = 238957, + [SMALL_STATE(6416)] = 238997, + [SMALL_STATE(6417)] = 239030, + [SMALL_STATE(6418)] = 239073, + [SMALL_STATE(6419)] = 239108, + [SMALL_STATE(6420)] = 239147, + [SMALL_STATE(6421)] = 239190, + [SMALL_STATE(6422)] = 239223, + [SMALL_STATE(6423)] = 239266, + [SMALL_STATE(6424)] = 239295, + [SMALL_STATE(6425)] = 239324, + [SMALL_STATE(6426)] = 239351, + [SMALL_STATE(6427)] = 239386, + [SMALL_STATE(6428)] = 239421, + [SMALL_STATE(6429)] = 239456, + [SMALL_STATE(6430)] = 239491, + [SMALL_STATE(6431)] = 239526, + [SMALL_STATE(6432)] = 239561, + [SMALL_STATE(6433)] = 239596, + [SMALL_STATE(6434)] = 239631, + [SMALL_STATE(6435)] = 239666, + [SMALL_STATE(6436)] = 239701, + [SMALL_STATE(6437)] = 239730, + [SMALL_STATE(6438)] = 239759, + [SMALL_STATE(6439)] = 239788, + [SMALL_STATE(6440)] = 239823, + [SMALL_STATE(6441)] = 239858, + [SMALL_STATE(6442)] = 239893, + [SMALL_STATE(6443)] = 239928, + [SMALL_STATE(6444)] = 239963, + [SMALL_STATE(6445)] = 239998, + [SMALL_STATE(6446)] = 240033, + [SMALL_STATE(6447)] = 240068, + [SMALL_STATE(6448)] = 240097, + [SMALL_STATE(6449)] = 240130, + [SMALL_STATE(6450)] = 240159, + [SMALL_STATE(6451)] = 240202, + [SMALL_STATE(6452)] = 240237, + [SMALL_STATE(6453)] = 240266, + [SMALL_STATE(6454)] = 240299, + [SMALL_STATE(6455)] = 240332, + [SMALL_STATE(6456)] = 240361, + [SMALL_STATE(6457)] = 240400, + [SMALL_STATE(6458)] = 240429, + [SMALL_STATE(6459)] = 240468, + [SMALL_STATE(6460)] = 240501, + [SMALL_STATE(6461)] = 240536, + [SMALL_STATE(6462)] = 240579, + [SMALL_STATE(6463)] = 240618, + [SMALL_STATE(6464)] = 240651, + [SMALL_STATE(6465)] = 240694, + [SMALL_STATE(6466)] = 240723, + [SMALL_STATE(6467)] = 240758, + [SMALL_STATE(6468)] = 240787, + [SMALL_STATE(6469)] = 240816, + [SMALL_STATE(6470)] = 240845, + [SMALL_STATE(6471)] = 240880, + [SMALL_STATE(6472)] = 240919, + [SMALL_STATE(6473)] = 240952, + [SMALL_STATE(6474)] = 240991, + [SMALL_STATE(6475)] = 241024, + [SMALL_STATE(6476)] = 241053, + [SMALL_STATE(6477)] = 241082, + [SMALL_STATE(6478)] = 241117, + [SMALL_STATE(6479)] = 241160, + [SMALL_STATE(6480)] = 241195, + [SMALL_STATE(6481)] = 241230, + [SMALL_STATE(6482)] = 241265, + [SMALL_STATE(6483)] = 241300, + [SMALL_STATE(6484)] = 241335, + [SMALL_STATE(6485)] = 241370, + [SMALL_STATE(6486)] = 241405, + [SMALL_STATE(6487)] = 241440, + [SMALL_STATE(6488)] = 241475, + [SMALL_STATE(6489)] = 241510, + [SMALL_STATE(6490)] = 241545, + [SMALL_STATE(6491)] = 241584, + [SMALL_STATE(6492)] = 241613, + [SMALL_STATE(6493)] = 241642, + [SMALL_STATE(6494)] = 241671, + [SMALL_STATE(6495)] = 241700, + [SMALL_STATE(6496)] = 241729, + [SMALL_STATE(6497)] = 241764, + [SMALL_STATE(6498)] = 241797, + [SMALL_STATE(6499)] = 241830, + [SMALL_STATE(6500)] = 241865, + [SMALL_STATE(6501)] = 241898, + [SMALL_STATE(6502)] = 241941, + [SMALL_STATE(6503)] = 241974, + [SMALL_STATE(6504)] = 242007, + [SMALL_STATE(6505)] = 242046, + [SMALL_STATE(6506)] = 242079, + [SMALL_STATE(6507)] = 242122, + [SMALL_STATE(6508)] = 242157, + [SMALL_STATE(6509)] = 242192, + [SMALL_STATE(6510)] = 242225, + [SMALL_STATE(6511)] = 242268, + [SMALL_STATE(6512)] = 242297, + [SMALL_STATE(6513)] = 242321, + [SMALL_STATE(6514)] = 242361, + [SMALL_STATE(6515)] = 242401, + [SMALL_STATE(6516)] = 242433, + [SMALL_STATE(6517)] = 242473, + [SMALL_STATE(6518)] = 242513, + [SMALL_STATE(6519)] = 242553, + [SMALL_STATE(6520)] = 242593, + [SMALL_STATE(6521)] = 242633, + [SMALL_STATE(6522)] = 242671, + [SMALL_STATE(6523)] = 242711, + [SMALL_STATE(6524)] = 242749, + [SMALL_STATE(6525)] = 242789, + [SMALL_STATE(6526)] = 242827, + [SMALL_STATE(6527)] = 242867, + [SMALL_STATE(6528)] = 242907, + [SMALL_STATE(6529)] = 242939, + [SMALL_STATE(6530)] = 242977, + [SMALL_STATE(6531)] = 243017, + [SMALL_STATE(6532)] = 243049, + [SMALL_STATE(6533)] = 243081, + [SMALL_STATE(6534)] = 243111, + [SMALL_STATE(6535)] = 243141, + [SMALL_STATE(6536)] = 243171, + [SMALL_STATE(6537)] = 243201, + [SMALL_STATE(6538)] = 243231, + [SMALL_STATE(6539)] = 243263, + [SMALL_STATE(6540)] = 243295, + [SMALL_STATE(6541)] = 243327, + [SMALL_STATE(6542)] = 243367, + [SMALL_STATE(6543)] = 243399, + [SMALL_STATE(6544)] = 243437, + [SMALL_STATE(6545)] = 243467, + [SMALL_STATE(6546)] = 243497, + [SMALL_STATE(6547)] = 243527, + [SMALL_STATE(6548)] = 243557, + [SMALL_STATE(6549)] = 243587, + [SMALL_STATE(6550)] = 243627, + [SMALL_STATE(6551)] = 243659, + [SMALL_STATE(6552)] = 243691, + [SMALL_STATE(6553)] = 243723, + [SMALL_STATE(6554)] = 243755, + [SMALL_STATE(6555)] = 243793, + [SMALL_STATE(6556)] = 243825, + [SMALL_STATE(6557)] = 243857, + [SMALL_STATE(6558)] = 243889, + [SMALL_STATE(6559)] = 243921, + [SMALL_STATE(6560)] = 243953, + [SMALL_STATE(6561)] = 243993, + [SMALL_STATE(6562)] = 244031, + [SMALL_STATE(6563)] = 244071, + [SMALL_STATE(6564)] = 244111, + [SMALL_STATE(6565)] = 244133, + [SMALL_STATE(6566)] = 244165, + [SMALL_STATE(6567)] = 244203, + [SMALL_STATE(6568)] = 244233, + [SMALL_STATE(6569)] = 244263, + [SMALL_STATE(6570)] = 244293, + [SMALL_STATE(6571)] = 244323, + [SMALL_STATE(6572)] = 244353, + [SMALL_STATE(6573)] = 244383, + [SMALL_STATE(6574)] = 244421, + [SMALL_STATE(6575)] = 244451, + [SMALL_STATE(6576)] = 244481, + [SMALL_STATE(6577)] = 244521, + [SMALL_STATE(6578)] = 244559, + [SMALL_STATE(6579)] = 244581, + [SMALL_STATE(6580)] = 244619, + [SMALL_STATE(6581)] = 244657, + [SMALL_STATE(6582)] = 244679, + [SMALL_STATE(6583)] = 244717, + [SMALL_STATE(6584)] = 244755, + [SMALL_STATE(6585)] = 244789, + [SMALL_STATE(6586)] = 244823, + [SMALL_STATE(6587)] = 244857, + [SMALL_STATE(6588)] = 244891, + [SMALL_STATE(6589)] = 244925, + [SMALL_STATE(6590)] = 244959, + [SMALL_STATE(6591)] = 244993, + [SMALL_STATE(6592)] = 245027, + [SMALL_STATE(6593)] = 245065, + [SMALL_STATE(6594)] = 245103, + [SMALL_STATE(6595)] = 245143, + [SMALL_STATE(6596)] = 245183, + [SMALL_STATE(6597)] = 245221, + [SMALL_STATE(6598)] = 245259, + [SMALL_STATE(6599)] = 245299, + [SMALL_STATE(6600)] = 245339, + [SMALL_STATE(6601)] = 245377, + [SMALL_STATE(6602)] = 245399, + [SMALL_STATE(6603)] = 245425, + [SMALL_STATE(6604)] = 245458, + [SMALL_STATE(6605)] = 245485, + [SMALL_STATE(6606)] = 245510, + [SMALL_STATE(6607)] = 245543, + [SMALL_STATE(6608)] = 245568, + [SMALL_STATE(6609)] = 245595, + [SMALL_STATE(6610)] = 245628, + [SMALL_STATE(6611)] = 245663, + [SMALL_STATE(6612)] = 245696, + [SMALL_STATE(6613)] = 245729, + [SMALL_STATE(6614)] = 245762, + [SMALL_STATE(6615)] = 245795, + [SMALL_STATE(6616)] = 245830, + [SMALL_STATE(6617)] = 245863, + [SMALL_STATE(6618)] = 245896, + [SMALL_STATE(6619)] = 245929, + [SMALL_STATE(6620)] = 245962, + [SMALL_STATE(6621)] = 245987, + [SMALL_STATE(6622)] = 246012, + [SMALL_STATE(6623)] = 246045, + [SMALL_STATE(6624)] = 246078, + [SMALL_STATE(6625)] = 246113, + [SMALL_STATE(6626)] = 246146, + [SMALL_STATE(6627)] = 246179, + [SMALL_STATE(6628)] = 246212, + [SMALL_STATE(6629)] = 246247, + [SMALL_STATE(6630)] = 246280, + [SMALL_STATE(6631)] = 246315, + [SMALL_STATE(6632)] = 246352, + [SMALL_STATE(6633)] = 246387, + [SMALL_STATE(6634)] = 246420, + [SMALL_STATE(6635)] = 246447, + [SMALL_STATE(6636)] = 246476, + [SMALL_STATE(6637)] = 246505, + [SMALL_STATE(6638)] = 246534, + [SMALL_STATE(6639)] = 246563, + [SMALL_STATE(6640)] = 246596, + [SMALL_STATE(6641)] = 246625, + [SMALL_STATE(6642)] = 246654, + [SMALL_STATE(6643)] = 246683, + [SMALL_STATE(6644)] = 246718, + [SMALL_STATE(6645)] = 246745, + [SMALL_STATE(6646)] = 246778, + [SMALL_STATE(6647)] = 246807, + [SMALL_STATE(6648)] = 246834, + [SMALL_STATE(6649)] = 246869, + [SMALL_STATE(6650)] = 246896, + [SMALL_STATE(6651)] = 246935, + [SMALL_STATE(6652)] = 246972, + [SMALL_STATE(6653)] = 246997, + [SMALL_STATE(6654)] = 247030, + [SMALL_STATE(6655)] = 247063, + [SMALL_STATE(6656)] = 247096, + [SMALL_STATE(6657)] = 247129, + [SMALL_STATE(6658)] = 247164, + [SMALL_STATE(6659)] = 247199, + [SMALL_STATE(6660)] = 247232, + [SMALL_STATE(6661)] = 247271, + [SMALL_STATE(6662)] = 247310, + [SMALL_STATE(6663)] = 247343, + [SMALL_STATE(6664)] = 247376, + [SMALL_STATE(6665)] = 247401, + [SMALL_STATE(6666)] = 247436, + [SMALL_STATE(6667)] = 247469, + [SMALL_STATE(6668)] = 247502, + [SMALL_STATE(6669)] = 247535, + [SMALL_STATE(6670)] = 247574, + [SMALL_STATE(6671)] = 247601, + [SMALL_STATE(6672)] = 247640, + [SMALL_STATE(6673)] = 247673, + [SMALL_STATE(6674)] = 247706, + [SMALL_STATE(6675)] = 247733, + [SMALL_STATE(6676)] = 247766, + [SMALL_STATE(6677)] = 247801, + [SMALL_STATE(6678)] = 247837, + [SMALL_STATE(6679)] = 247863, + [SMALL_STATE(6680)] = 247899, + [SMALL_STATE(6681)] = 247929, + [SMALL_STATE(6682)] = 247965, + [SMALL_STATE(6683)] = 247995, + [SMALL_STATE(6684)] = 248025, + [SMALL_STATE(6685)] = 248061, + [SMALL_STATE(6686)] = 248081, + [SMALL_STATE(6687)] = 248117, + [SMALL_STATE(6688)] = 248143, + [SMALL_STATE(6689)] = 248163, + [SMALL_STATE(6690)] = 248183, + [SMALL_STATE(6691)] = 248209, + [SMALL_STATE(6692)] = 248235, + [SMALL_STATE(6693)] = 248261, + [SMALL_STATE(6694)] = 248297, + [SMALL_STATE(6695)] = 248323, + [SMALL_STATE(6696)] = 248359, + [SMALL_STATE(6697)] = 248389, + [SMALL_STATE(6698)] = 248425, + [SMALL_STATE(6699)] = 248451, + [SMALL_STATE(6700)] = 248477, + [SMALL_STATE(6701)] = 248507, + [SMALL_STATE(6702)] = 248543, + [SMALL_STATE(6703)] = 248573, + [SMALL_STATE(6704)] = 248603, + [SMALL_STATE(6705)] = 248639, + [SMALL_STATE(6706)] = 248675, + [SMALL_STATE(6707)] = 248711, + [SMALL_STATE(6708)] = 248747, + [SMALL_STATE(6709)] = 248773, + [SMALL_STATE(6710)] = 248795, + [SMALL_STATE(6711)] = 248815, + [SMALL_STATE(6712)] = 248841, + [SMALL_STATE(6713)] = 248861, + [SMALL_STATE(6714)] = 248897, + [SMALL_STATE(6715)] = 248917, + [SMALL_STATE(6716)] = 248953, + [SMALL_STATE(6717)] = 248989, + [SMALL_STATE(6718)] = 249009, + [SMALL_STATE(6719)] = 249045, + [SMALL_STATE(6720)] = 249081, + [SMALL_STATE(6721)] = 249101, + [SMALL_STATE(6722)] = 249121, + [SMALL_STATE(6723)] = 249157, + [SMALL_STATE(6724)] = 249177, + [SMALL_STATE(6725)] = 249197, + [SMALL_STATE(6726)] = 249233, + [SMALL_STATE(6727)] = 249263, + [SMALL_STATE(6728)] = 249299, + [SMALL_STATE(6729)] = 249328, + [SMALL_STATE(6730)] = 249355, + [SMALL_STATE(6731)] = 249390, + [SMALL_STATE(6732)] = 249419, + [SMALL_STATE(6733)] = 249446, + [SMALL_STATE(6734)] = 249477, + [SMALL_STATE(6735)] = 249508, + [SMALL_STATE(6736)] = 249537, + [SMALL_STATE(6737)] = 249568, + [SMALL_STATE(6738)] = 249595, + [SMALL_STATE(6739)] = 249630, + [SMALL_STATE(6740)] = 249661, + [SMALL_STATE(6741)] = 249696, + [SMALL_STATE(6742)] = 249731, + [SMALL_STATE(6743)] = 249762, + [SMALL_STATE(6744)] = 249793, + [SMALL_STATE(6745)] = 249828, + [SMALL_STATE(6746)] = 249857, + [SMALL_STATE(6747)] = 249888, + [SMALL_STATE(6748)] = 249923, + [SMALL_STATE(6749)] = 249958, + [SMALL_STATE(6750)] = 249993, + [SMALL_STATE(6751)] = 250018, + [SMALL_STATE(6752)] = 250043, + [SMALL_STATE(6753)] = 250068, + [SMALL_STATE(6754)] = 250093, + [SMALL_STATE(6755)] = 250124, + [SMALL_STATE(6756)] = 250157, + [SMALL_STATE(6757)] = 250188, + [SMALL_STATE(6758)] = 250215, + [SMALL_STATE(6759)] = 250240, + [SMALL_STATE(6760)] = 250267, + [SMALL_STATE(6761)] = 250292, + [SMALL_STATE(6762)] = 250327, + [SMALL_STATE(6763)] = 250362, + [SMALL_STATE(6764)] = 250391, + [SMALL_STATE(6765)] = 250422, + [SMALL_STATE(6766)] = 250455, + [SMALL_STATE(6767)] = 250482, + [SMALL_STATE(6768)] = 250517, + [SMALL_STATE(6769)] = 250546, + [SMALL_STATE(6770)] = 250581, + [SMALL_STATE(6771)] = 250606, + [SMALL_STATE(6772)] = 250641, + [SMALL_STATE(6773)] = 250676, + [SMALL_STATE(6774)] = 250711, + [SMALL_STATE(6775)] = 250738, + [SMALL_STATE(6776)] = 250765, + [SMALL_STATE(6777)] = 250792, + [SMALL_STATE(6778)] = 250817, + [SMALL_STATE(6779)] = 250836, + [SMALL_STATE(6780)] = 250863, + [SMALL_STATE(6781)] = 250890, + [SMALL_STATE(6782)] = 250917, + [SMALL_STATE(6783)] = 250948, + [SMALL_STATE(6784)] = 250973, + [SMALL_STATE(6785)] = 251000, + [SMALL_STATE(6786)] = 251031, + [SMALL_STATE(6787)] = 251056, + [SMALL_STATE(6788)] = 251081, + [SMALL_STATE(6789)] = 251112, + [SMALL_STATE(6790)] = 251139, + [SMALL_STATE(6791)] = 251174, + [SMALL_STATE(6792)] = 251201, + [SMALL_STATE(6793)] = 251228, + [SMALL_STATE(6794)] = 251255, + [SMALL_STATE(6795)] = 251280, + [SMALL_STATE(6796)] = 251311, + [SMALL_STATE(6797)] = 251338, + [SMALL_STATE(6798)] = 251365, + [SMALL_STATE(6799)] = 251392, + [SMALL_STATE(6800)] = 251415, + [SMALL_STATE(6801)] = 251442, + [SMALL_STATE(6802)] = 251469, + [SMALL_STATE(6803)] = 251496, + [SMALL_STATE(6804)] = 251531, + [SMALL_STATE(6805)] = 251558, + [SMALL_STATE(6806)] = 251589, + [SMALL_STATE(6807)] = 251616, + [SMALL_STATE(6808)] = 251651, + [SMALL_STATE(6809)] = 251676, + [SMALL_STATE(6810)] = 251705, + [SMALL_STATE(6811)] = 251732, + [SMALL_STATE(6812)] = 251751, + [SMALL_STATE(6813)] = 251770, + [SMALL_STATE(6814)] = 251789, + [SMALL_STATE(6815)] = 251820, + [SMALL_STATE(6816)] = 251847, + [SMALL_STATE(6817)] = 251868, + [SMALL_STATE(6818)] = 251897, + [SMALL_STATE(6819)] = 251922, + [SMALL_STATE(6820)] = 251949, + [SMALL_STATE(6821)] = 251982, + [SMALL_STATE(6822)] = 252007, + [SMALL_STATE(6823)] = 252038, + [SMALL_STATE(6824)] = 252057, + [SMALL_STATE(6825)] = 252076, + [SMALL_STATE(6826)] = 252095, + [SMALL_STATE(6827)] = 252122, + [SMALL_STATE(6828)] = 252151, + [SMALL_STATE(6829)] = 252184, + [SMALL_STATE(6830)] = 252217, + [SMALL_STATE(6831)] = 252248, + [SMALL_STATE(6832)] = 252283, + [SMALL_STATE(6833)] = 252306, + [SMALL_STATE(6834)] = 252341, + [SMALL_STATE(6835)] = 252368, + [SMALL_STATE(6836)] = 252395, + [SMALL_STATE(6837)] = 252420, + [SMALL_STATE(6838)] = 252447, + [SMALL_STATE(6839)] = 252474, + [SMALL_STATE(6840)] = 252509, + [SMALL_STATE(6841)] = 252538, + [SMALL_STATE(6842)] = 252565, + [SMALL_STATE(6843)] = 252594, + [SMALL_STATE(6844)] = 252623, + [SMALL_STATE(6845)] = 252649, + [SMALL_STATE(6846)] = 252671, + [SMALL_STATE(6847)] = 252699, + [SMALL_STATE(6848)] = 252721, + [SMALL_STATE(6849)] = 252751, + [SMALL_STATE(6850)] = 252773, + [SMALL_STATE(6851)] = 252803, + [SMALL_STATE(6852)] = 252825, + [SMALL_STATE(6853)] = 252855, + [SMALL_STATE(6854)] = 252877, + [SMALL_STATE(6855)] = 252909, + [SMALL_STATE(6856)] = 252931, + [SMALL_STATE(6857)] = 252955, + [SMALL_STATE(6858)] = 252979, + [SMALL_STATE(6859)] = 253003, + [SMALL_STATE(6860)] = 253027, + [SMALL_STATE(6861)] = 253051, + [SMALL_STATE(6862)] = 253075, + [SMALL_STATE(6863)] = 253099, + [SMALL_STATE(6864)] = 253123, + [SMALL_STATE(6865)] = 253145, + [SMALL_STATE(6866)] = 253171, + [SMALL_STATE(6867)] = 253197, + [SMALL_STATE(6868)] = 253223, + [SMALL_STATE(6869)] = 253245, + [SMALL_STATE(6870)] = 253275, + [SMALL_STATE(6871)] = 253305, + [SMALL_STATE(6872)] = 253335, + [SMALL_STATE(6873)] = 253365, + [SMALL_STATE(6874)] = 253389, + [SMALL_STATE(6875)] = 253413, + [SMALL_STATE(6876)] = 253437, + [SMALL_STATE(6877)] = 253461, + [SMALL_STATE(6878)] = 253485, + [SMALL_STATE(6879)] = 253509, + [SMALL_STATE(6880)] = 253533, + [SMALL_STATE(6881)] = 253557, + [SMALL_STATE(6882)] = 253581, + [SMALL_STATE(6883)] = 253603, + [SMALL_STATE(6884)] = 253625, + [SMALL_STATE(6885)] = 253655, + [SMALL_STATE(6886)] = 253679, + [SMALL_STATE(6887)] = 253701, + [SMALL_STATE(6888)] = 253723, + [SMALL_STATE(6889)] = 253753, + [SMALL_STATE(6890)] = 253783, + [SMALL_STATE(6891)] = 253813, + [SMALL_STATE(6892)] = 253835, + [SMALL_STATE(6893)] = 253865, + [SMALL_STATE(6894)] = 253896, + [SMALL_STATE(6895)] = 253927, + [SMALL_STATE(6896)] = 253958, + [SMALL_STATE(6897)] = 253989, + [SMALL_STATE(6898)] = 254020, + [SMALL_STATE(6899)] = 254051, + [SMALL_STATE(6900)] = 254082, + [SMALL_STATE(6901)] = 254113, + [SMALL_STATE(6902)] = 254144, + [SMALL_STATE(6903)] = 254175, + [SMALL_STATE(6904)] = 254206, + [SMALL_STATE(6905)] = 254237, + [SMALL_STATE(6906)] = 254268, + [SMALL_STATE(6907)] = 254299, + [SMALL_STATE(6908)] = 254330, + [SMALL_STATE(6909)] = 254351, + [SMALL_STATE(6910)] = 254382, + [SMALL_STATE(6911)] = 254409, + [SMALL_STATE(6912)] = 254440, + [SMALL_STATE(6913)] = 254471, + [SMALL_STATE(6914)] = 254492, + [SMALL_STATE(6915)] = 254513, + [SMALL_STATE(6916)] = 254540, + [SMALL_STATE(6917)] = 254561, + [SMALL_STATE(6918)] = 254592, + [SMALL_STATE(6919)] = 254623, + [SMALL_STATE(6920)] = 254654, + [SMALL_STATE(6921)] = 254675, + [SMALL_STATE(6922)] = 254706, + [SMALL_STATE(6923)] = 254733, + [SMALL_STATE(6924)] = 254760, + [SMALL_STATE(6925)] = 254791, + [SMALL_STATE(6926)] = 254818, + [SMALL_STATE(6927)] = 254845, + [SMALL_STATE(6928)] = 254872, + [SMALL_STATE(6929)] = 254899, + [SMALL_STATE(6930)] = 254926, + [SMALL_STATE(6931)] = 254953, + [SMALL_STATE(6932)] = 254980, + [SMALL_STATE(6933)] = 255007, + [SMALL_STATE(6934)] = 255038, + [SMALL_STATE(6935)] = 255061, + [SMALL_STATE(6936)] = 255084, + [SMALL_STATE(6937)] = 255107, + [SMALL_STATE(6938)] = 255130, + [SMALL_STATE(6939)] = 255153, + [SMALL_STATE(6940)] = 255176, + [SMALL_STATE(6941)] = 255199, + [SMALL_STATE(6942)] = 255222, + [SMALL_STATE(6943)] = 255253, + [SMALL_STATE(6944)] = 255272, + [SMALL_STATE(6945)] = 255303, + [SMALL_STATE(6946)] = 255334, + [SMALL_STATE(6947)] = 255365, + [SMALL_STATE(6948)] = 255396, + [SMALL_STATE(6949)] = 255422, + [SMALL_STATE(6950)] = 255446, + [SMALL_STATE(6951)] = 255468, + [SMALL_STATE(6952)] = 255494, + [SMALL_STATE(6953)] = 255516, + [SMALL_STATE(6954)] = 255538, + [SMALL_STATE(6955)] = 255564, + [SMALL_STATE(6956)] = 255590, + [SMALL_STATE(6957)] = 255616, + [SMALL_STATE(6958)] = 255642, + [SMALL_STATE(6959)] = 255668, + [SMALL_STATE(6960)] = 255694, + [SMALL_STATE(6961)] = 255720, + [SMALL_STATE(6962)] = 255746, + [SMALL_STATE(6963)] = 255768, + [SMALL_STATE(6964)] = 255790, + [SMALL_STATE(6965)] = 255806, + [SMALL_STATE(6966)] = 255828, + [SMALL_STATE(6967)] = 255848, + [SMALL_STATE(6968)] = 255870, + [SMALL_STATE(6969)] = 255892, + [SMALL_STATE(6970)] = 255914, + [SMALL_STATE(6971)] = 255940, + [SMALL_STATE(6972)] = 255966, + [SMALL_STATE(6973)] = 255992, + [SMALL_STATE(6974)] = 256014, + [SMALL_STATE(6975)] = 256036, + [SMALL_STATE(6976)] = 256062, + [SMALL_STATE(6977)] = 256086, + [SMALL_STATE(6978)] = 256112, + [SMALL_STATE(6979)] = 256134, + [SMALL_STATE(6980)] = 256160, + [SMALL_STATE(6981)] = 256186, + [SMALL_STATE(6982)] = 256212, + [SMALL_STATE(6983)] = 256232, + [SMALL_STATE(6984)] = 256256, + [SMALL_STATE(6985)] = 256284, + [SMALL_STATE(6986)] = 256306, + [SMALL_STATE(6987)] = 256332, + [SMALL_STATE(6988)] = 256356, + [SMALL_STATE(6989)] = 256378, + [SMALL_STATE(6990)] = 256404, + [SMALL_STATE(6991)] = 256428, + [SMALL_STATE(6992)] = 256454, + [SMALL_STATE(6993)] = 256480, + [SMALL_STATE(6994)] = 256506, + [SMALL_STATE(6995)] = 256532, + [SMALL_STATE(6996)] = 256558, + [SMALL_STATE(6997)] = 256582, + [SMALL_STATE(6998)] = 256608, + [SMALL_STATE(6999)] = 256632, + [SMALL_STATE(7000)] = 256658, + [SMALL_STATE(7001)] = 256684, + [SMALL_STATE(7002)] = 256710, + [SMALL_STATE(7003)] = 256736, + [SMALL_STATE(7004)] = 256752, + [SMALL_STATE(7005)] = 256774, + [SMALL_STATE(7006)] = 256798, + [SMALL_STATE(7007)] = 256820, + [SMALL_STATE(7008)] = 256840, + [SMALL_STATE(7009)] = 256858, + [SMALL_STATE(7010)] = 256879, + [SMALL_STATE(7011)] = 256904, + [SMALL_STATE(7012)] = 256919, + [SMALL_STATE(7013)] = 256942, + [SMALL_STATE(7014)] = 256965, + [SMALL_STATE(7015)] = 256984, + [SMALL_STATE(7016)] = 257007, + [SMALL_STATE(7017)] = 257032, + [SMALL_STATE(7018)] = 257051, + [SMALL_STATE(7019)] = 257076, + [SMALL_STATE(7020)] = 257097, + [SMALL_STATE(7021)] = 257118, + [SMALL_STATE(7022)] = 257139, + [SMALL_STATE(7023)] = 257160, + [SMALL_STATE(7024)] = 257181, + [SMALL_STATE(7025)] = 257202, + [SMALL_STATE(7026)] = 257219, + [SMALL_STATE(7027)] = 257240, + [SMALL_STATE(7028)] = 257259, + [SMALL_STATE(7029)] = 257278, + [SMALL_STATE(7030)] = 257299, + [SMALL_STATE(7031)] = 257316, + [SMALL_STATE(7032)] = 257339, + [SMALL_STATE(7033)] = 257360, + [SMALL_STATE(7034)] = 257383, + [SMALL_STATE(7035)] = 257406, + [SMALL_STATE(7036)] = 257431, + [SMALL_STATE(7037)] = 257452, + [SMALL_STATE(7038)] = 257467, + [SMALL_STATE(7039)] = 257488, + [SMALL_STATE(7040)] = 257513, + [SMALL_STATE(7041)] = 257538, + [SMALL_STATE(7042)] = 257559, + [SMALL_STATE(7043)] = 257574, + [SMALL_STATE(7044)] = 257599, + [SMALL_STATE(7045)] = 257622, + [SMALL_STATE(7046)] = 257639, + [SMALL_STATE(7047)] = 257664, + [SMALL_STATE(7048)] = 257685, + [SMALL_STATE(7049)] = 257700, + [SMALL_STATE(7050)] = 257717, + [SMALL_STATE(7051)] = 257734, + [SMALL_STATE(7052)] = 257757, + [SMALL_STATE(7053)] = 257774, + [SMALL_STATE(7054)] = 257793, + [SMALL_STATE(7055)] = 257816, + [SMALL_STATE(7056)] = 257831, + [SMALL_STATE(7057)] = 257852, + [SMALL_STATE(7058)] = 257875, + [SMALL_STATE(7059)] = 257898, + [SMALL_STATE(7060)] = 257915, + [SMALL_STATE(7061)] = 257938, + [SMALL_STATE(7062)] = 257961, + [SMALL_STATE(7063)] = 257982, + [SMALL_STATE(7064)] = 257999, + [SMALL_STATE(7065)] = 258018, + [SMALL_STATE(7066)] = 258039, + [SMALL_STATE(7067)] = 258062, + [SMALL_STATE(7068)] = 258079, + [SMALL_STATE(7069)] = 258102, + [SMALL_STATE(7070)] = 258119, + [SMALL_STATE(7071)] = 258136, + [SMALL_STATE(7072)] = 258153, + [SMALL_STATE(7073)] = 258170, + [SMALL_STATE(7074)] = 258187, + [SMALL_STATE(7075)] = 258204, + [SMALL_STATE(7076)] = 258221, + [SMALL_STATE(7077)] = 258238, + [SMALL_STATE(7078)] = 258255, + [SMALL_STATE(7079)] = 258270, + [SMALL_STATE(7080)] = 258293, + [SMALL_STATE(7081)] = 258314, + [SMALL_STATE(7082)] = 258337, + [SMALL_STATE(7083)] = 258352, + [SMALL_STATE(7084)] = 258367, + [SMALL_STATE(7085)] = 258389, + [SMALL_STATE(7086)] = 258409, + [SMALL_STATE(7087)] = 258429, + [SMALL_STATE(7088)] = 258451, + [SMALL_STATE(7089)] = 258465, + [SMALL_STATE(7090)] = 258487, + [SMALL_STATE(7091)] = 258509, + [SMALL_STATE(7092)] = 258523, + [SMALL_STATE(7093)] = 258543, + [SMALL_STATE(7094)] = 258563, + [SMALL_STATE(7095)] = 258583, + [SMALL_STATE(7096)] = 258603, + [SMALL_STATE(7097)] = 258617, + [SMALL_STATE(7098)] = 258631, + [SMALL_STATE(7099)] = 258645, + [SMALL_STATE(7100)] = 258665, + [SMALL_STATE(7101)] = 258679, + [SMALL_STATE(7102)] = 258693, + [SMALL_STATE(7103)] = 258711, + [SMALL_STATE(7104)] = 258731, + [SMALL_STATE(7105)] = 258745, + [SMALL_STATE(7106)] = 258767, + [SMALL_STATE(7107)] = 258787, + [SMALL_STATE(7108)] = 258809, + [SMALL_STATE(7109)] = 258827, + [SMALL_STATE(7110)] = 258849, + [SMALL_STATE(7111)] = 258867, + [SMALL_STATE(7112)] = 258885, + [SMALL_STATE(7113)] = 258905, + [SMALL_STATE(7114)] = 258919, + [SMALL_STATE(7115)] = 258939, + [SMALL_STATE(7116)] = 258953, + [SMALL_STATE(7117)] = 258975, + [SMALL_STATE(7118)] = 258989, + [SMALL_STATE(7119)] = 259009, + [SMALL_STATE(7120)] = 259031, + [SMALL_STATE(7121)] = 259051, + [SMALL_STATE(7122)] = 259065, + [SMALL_STATE(7123)] = 259087, + [SMALL_STATE(7124)] = 259109, + [SMALL_STATE(7125)] = 259129, + [SMALL_STATE(7126)] = 259151, + [SMALL_STATE(7127)] = 259165, + [SMALL_STATE(7128)] = 259187, + [SMALL_STATE(7129)] = 259205, + [SMALL_STATE(7130)] = 259227, + [SMALL_STATE(7131)] = 259245, + [SMALL_STATE(7132)] = 259267, + [SMALL_STATE(7133)] = 259289, + [SMALL_STATE(7134)] = 259311, + [SMALL_STATE(7135)] = 259333, + [SMALL_STATE(7136)] = 259355, + [SMALL_STATE(7137)] = 259377, + [SMALL_STATE(7138)] = 259391, + [SMALL_STATE(7139)] = 259413, + [SMALL_STATE(7140)] = 259435, + [SMALL_STATE(7141)] = 259457, + [SMALL_STATE(7142)] = 259479, + [SMALL_STATE(7143)] = 259496, + [SMALL_STATE(7144)] = 259515, + [SMALL_STATE(7145)] = 259532, + [SMALL_STATE(7146)] = 259549, + [SMALL_STATE(7147)] = 259568, + [SMALL_STATE(7148)] = 259579, + [SMALL_STATE(7149)] = 259598, + [SMALL_STATE(7150)] = 259615, + [SMALL_STATE(7151)] = 259632, + [SMALL_STATE(7152)] = 259649, + [SMALL_STATE(7153)] = 259666, + [SMALL_STATE(7154)] = 259683, + [SMALL_STATE(7155)] = 259702, + [SMALL_STATE(7156)] = 259721, + [SMALL_STATE(7157)] = 259740, + [SMALL_STATE(7158)] = 259757, + [SMALL_STATE(7159)] = 259776, + [SMALL_STATE(7160)] = 259793, + [SMALL_STATE(7161)] = 259810, + [SMALL_STATE(7162)] = 259829, + [SMALL_STATE(7163)] = 259846, + [SMALL_STATE(7164)] = 259859, + [SMALL_STATE(7165)] = 259876, + [SMALL_STATE(7166)] = 259893, + [SMALL_STATE(7167)] = 259912, + [SMALL_STATE(7168)] = 259931, + [SMALL_STATE(7169)] = 259948, + [SMALL_STATE(7170)] = 259965, + [SMALL_STATE(7171)] = 259982, + [SMALL_STATE(7172)] = 259999, + [SMALL_STATE(7173)] = 260016, + [SMALL_STATE(7174)] = 260035, + [SMALL_STATE(7175)] = 260052, + [SMALL_STATE(7176)] = 260069, + [SMALL_STATE(7177)] = 260086, + [SMALL_STATE(7178)] = 260103, + [SMALL_STATE(7179)] = 260120, + [SMALL_STATE(7180)] = 260137, + [SMALL_STATE(7181)] = 260154, + [SMALL_STATE(7182)] = 260171, + [SMALL_STATE(7183)] = 260190, + [SMALL_STATE(7184)] = 260207, + [SMALL_STATE(7185)] = 260226, + [SMALL_STATE(7186)] = 260243, + [SMALL_STATE(7187)] = 260260, + [SMALL_STATE(7188)] = 260277, + [SMALL_STATE(7189)] = 260296, + [SMALL_STATE(7190)] = 260315, + [SMALL_STATE(7191)] = 260332, + [SMALL_STATE(7192)] = 260349, + [SMALL_STATE(7193)] = 260366, + [SMALL_STATE(7194)] = 260383, + [SMALL_STATE(7195)] = 260400, + [SMALL_STATE(7196)] = 260417, + [SMALL_STATE(7197)] = 260434, + [SMALL_STATE(7198)] = 260453, + [SMALL_STATE(7199)] = 260472, + [SMALL_STATE(7200)] = 260491, + [SMALL_STATE(7201)] = 260508, + [SMALL_STATE(7202)] = 260525, + [SMALL_STATE(7203)] = 260538, + [SMALL_STATE(7204)] = 260557, + [SMALL_STATE(7205)] = 260576, + [SMALL_STATE(7206)] = 260593, + [SMALL_STATE(7207)] = 260610, + [SMALL_STATE(7208)] = 260627, + [SMALL_STATE(7209)] = 260644, + [SMALL_STATE(7210)] = 260663, + [SMALL_STATE(7211)] = 260682, + [SMALL_STATE(7212)] = 260701, + [SMALL_STATE(7213)] = 260720, + [SMALL_STATE(7214)] = 260737, + [SMALL_STATE(7215)] = 260754, + [SMALL_STATE(7216)] = 260771, + [SMALL_STATE(7217)] = 260785, + [SMALL_STATE(7218)] = 260795, + [SMALL_STATE(7219)] = 260811, + [SMALL_STATE(7220)] = 260825, + [SMALL_STATE(7221)] = 260841, + [SMALL_STATE(7222)] = 260857, + [SMALL_STATE(7223)] = 260873, + [SMALL_STATE(7224)] = 260887, + [SMALL_STATE(7225)] = 260903, + [SMALL_STATE(7226)] = 260917, + [SMALL_STATE(7227)] = 260931, + [SMALL_STATE(7228)] = 260945, + [SMALL_STATE(7229)] = 260959, + [SMALL_STATE(7230)] = 260973, + [SMALL_STATE(7231)] = 260989, + [SMALL_STATE(7232)] = 261005, + [SMALL_STATE(7233)] = 261021, + [SMALL_STATE(7234)] = 261037, + [SMALL_STATE(7235)] = 261053, + [SMALL_STATE(7236)] = 261069, + [SMALL_STATE(7237)] = 261083, + [SMALL_STATE(7238)] = 261097, + [SMALL_STATE(7239)] = 261111, + [SMALL_STATE(7240)] = 261127, + [SMALL_STATE(7241)] = 261143, + [SMALL_STATE(7242)] = 261159, + [SMALL_STATE(7243)] = 261175, + [SMALL_STATE(7244)] = 261191, + [SMALL_STATE(7245)] = 261207, + [SMALL_STATE(7246)] = 261223, + [SMALL_STATE(7247)] = 261239, + [SMALL_STATE(7248)] = 261255, + [SMALL_STATE(7249)] = 261271, + [SMALL_STATE(7250)] = 261287, + [SMALL_STATE(7251)] = 261303, + [SMALL_STATE(7252)] = 261319, + [SMALL_STATE(7253)] = 261335, + [SMALL_STATE(7254)] = 261351, + [SMALL_STATE(7255)] = 261367, + [SMALL_STATE(7256)] = 261381, + [SMALL_STATE(7257)] = 261397, + [SMALL_STATE(7258)] = 261413, + [SMALL_STATE(7259)] = 261429, + [SMALL_STATE(7260)] = 261445, + [SMALL_STATE(7261)] = 261461, + [SMALL_STATE(7262)] = 261477, + [SMALL_STATE(7263)] = 261493, + [SMALL_STATE(7264)] = 261509, + [SMALL_STATE(7265)] = 261525, + [SMALL_STATE(7266)] = 261539, + [SMALL_STATE(7267)] = 261555, + [SMALL_STATE(7268)] = 261571, + [SMALL_STATE(7269)] = 261587, + [SMALL_STATE(7270)] = 261603, + [SMALL_STATE(7271)] = 261619, + [SMALL_STATE(7272)] = 261635, + [SMALL_STATE(7273)] = 261651, + [SMALL_STATE(7274)] = 261667, + [SMALL_STATE(7275)] = 261681, + [SMALL_STATE(7276)] = 261697, + [SMALL_STATE(7277)] = 261713, + [SMALL_STATE(7278)] = 261729, + [SMALL_STATE(7279)] = 261745, + [SMALL_STATE(7280)] = 261761, + [SMALL_STATE(7281)] = 261777, + [SMALL_STATE(7282)] = 261791, + [SMALL_STATE(7283)] = 261805, + [SMALL_STATE(7284)] = 261821, + [SMALL_STATE(7285)] = 261837, + [SMALL_STATE(7286)] = 261853, + [SMALL_STATE(7287)] = 261869, + [SMALL_STATE(7288)] = 261885, + [SMALL_STATE(7289)] = 261901, + [SMALL_STATE(7290)] = 261917, + [SMALL_STATE(7291)] = 261933, + [SMALL_STATE(7292)] = 261949, + [SMALL_STATE(7293)] = 261965, + [SMALL_STATE(7294)] = 261981, + [SMALL_STATE(7295)] = 261997, + [SMALL_STATE(7296)] = 262013, + [SMALL_STATE(7297)] = 262029, + [SMALL_STATE(7298)] = 262045, + [SMALL_STATE(7299)] = 262061, + [SMALL_STATE(7300)] = 262077, + [SMALL_STATE(7301)] = 262093, + [SMALL_STATE(7302)] = 262107, + [SMALL_STATE(7303)] = 262123, + [SMALL_STATE(7304)] = 262139, + [SMALL_STATE(7305)] = 262153, + [SMALL_STATE(7306)] = 262167, + [SMALL_STATE(7307)] = 262181, + [SMALL_STATE(7308)] = 262197, + [SMALL_STATE(7309)] = 262211, + [SMALL_STATE(7310)] = 262227, + [SMALL_STATE(7311)] = 262243, + [SMALL_STATE(7312)] = 262257, + [SMALL_STATE(7313)] = 262271, + [SMALL_STATE(7314)] = 262285, + [SMALL_STATE(7315)] = 262301, + [SMALL_STATE(7316)] = 262317, + [SMALL_STATE(7317)] = 262333, + [SMALL_STATE(7318)] = 262349, + [SMALL_STATE(7319)] = 262365, + [SMALL_STATE(7320)] = 262381, + [SMALL_STATE(7321)] = 262397, + [SMALL_STATE(7322)] = 262413, + [SMALL_STATE(7323)] = 262429, + [SMALL_STATE(7324)] = 262439, + [SMALL_STATE(7325)] = 262453, + [SMALL_STATE(7326)] = 262469, + [SMALL_STATE(7327)] = 262485, + [SMALL_STATE(7328)] = 262499, + [SMALL_STATE(7329)] = 262513, + [SMALL_STATE(7330)] = 262529, + [SMALL_STATE(7331)] = 262545, + [SMALL_STATE(7332)] = 262559, + [SMALL_STATE(7333)] = 262573, + [SMALL_STATE(7334)] = 262589, + [SMALL_STATE(7335)] = 262605, + [SMALL_STATE(7336)] = 262619, + [SMALL_STATE(7337)] = 262635, + [SMALL_STATE(7338)] = 262651, + [SMALL_STATE(7339)] = 262667, + [SMALL_STATE(7340)] = 262681, + [SMALL_STATE(7341)] = 262697, + [SMALL_STATE(7342)] = 262713, + [SMALL_STATE(7343)] = 262729, + [SMALL_STATE(7344)] = 262745, + [SMALL_STATE(7345)] = 262761, + [SMALL_STATE(7346)] = 262777, + [SMALL_STATE(7347)] = 262793, + [SMALL_STATE(7348)] = 262807, + [SMALL_STATE(7349)] = 262823, + [SMALL_STATE(7350)] = 262839, + [SMALL_STATE(7351)] = 262853, + [SMALL_STATE(7352)] = 262869, + [SMALL_STATE(7353)] = 262885, + [SMALL_STATE(7354)] = 262901, + [SMALL_STATE(7355)] = 262917, + [SMALL_STATE(7356)] = 262931, + [SMALL_STATE(7357)] = 262947, + [SMALL_STATE(7358)] = 262963, + [SMALL_STATE(7359)] = 262977, + [SMALL_STATE(7360)] = 262993, + [SMALL_STATE(7361)] = 263009, + [SMALL_STATE(7362)] = 263025, + [SMALL_STATE(7363)] = 263041, + [SMALL_STATE(7364)] = 263057, + [SMALL_STATE(7365)] = 263071, + [SMALL_STATE(7366)] = 263087, + [SMALL_STATE(7367)] = 263101, + [SMALL_STATE(7368)] = 263117, + [SMALL_STATE(7369)] = 263133, + [SMALL_STATE(7370)] = 263149, + [SMALL_STATE(7371)] = 263165, + [SMALL_STATE(7372)] = 263179, + [SMALL_STATE(7373)] = 263195, + [SMALL_STATE(7374)] = 263209, + [SMALL_STATE(7375)] = 263225, + [SMALL_STATE(7376)] = 263241, + [SMALL_STATE(7377)] = 263257, + [SMALL_STATE(7378)] = 263273, + [SMALL_STATE(7379)] = 263289, + [SMALL_STATE(7380)] = 263305, + [SMALL_STATE(7381)] = 263321, + [SMALL_STATE(7382)] = 263337, + [SMALL_STATE(7383)] = 263353, + [SMALL_STATE(7384)] = 263369, + [SMALL_STATE(7385)] = 263383, + [SMALL_STATE(7386)] = 263399, + [SMALL_STATE(7387)] = 263415, + [SMALL_STATE(7388)] = 263429, + [SMALL_STATE(7389)] = 263445, + [SMALL_STATE(7390)] = 263459, + [SMALL_STATE(7391)] = 263475, + [SMALL_STATE(7392)] = 263489, + [SMALL_STATE(7393)] = 263505, + [SMALL_STATE(7394)] = 263521, + [SMALL_STATE(7395)] = 263535, + [SMALL_STATE(7396)] = 263551, + [SMALL_STATE(7397)] = 263567, + [SMALL_STATE(7398)] = 263583, + [SMALL_STATE(7399)] = 263599, + [SMALL_STATE(7400)] = 263613, + [SMALL_STATE(7401)] = 263629, + [SMALL_STATE(7402)] = 263645, + [SMALL_STATE(7403)] = 263659, + [SMALL_STATE(7404)] = 263675, + [SMALL_STATE(7405)] = 263689, + [SMALL_STATE(7406)] = 263703, + [SMALL_STATE(7407)] = 263715, + [SMALL_STATE(7408)] = 263731, + [SMALL_STATE(7409)] = 263747, + [SMALL_STATE(7410)] = 263763, + [SMALL_STATE(7411)] = 263779, + [SMALL_STATE(7412)] = 263793, + [SMALL_STATE(7413)] = 263809, + [SMALL_STATE(7414)] = 263825, + [SMALL_STATE(7415)] = 263841, + [SMALL_STATE(7416)] = 263857, + [SMALL_STATE(7417)] = 263873, + [SMALL_STATE(7418)] = 263889, + [SMALL_STATE(7419)] = 263903, + [SMALL_STATE(7420)] = 263919, + [SMALL_STATE(7421)] = 263935, + [SMALL_STATE(7422)] = 263951, + [SMALL_STATE(7423)] = 263967, + [SMALL_STATE(7424)] = 263981, + [SMALL_STATE(7425)] = 263997, + [SMALL_STATE(7426)] = 264013, + [SMALL_STATE(7427)] = 264027, + [SMALL_STATE(7428)] = 264043, + [SMALL_STATE(7429)] = 264059, + [SMALL_STATE(7430)] = 264075, + [SMALL_STATE(7431)] = 264091, + [SMALL_STATE(7432)] = 264107, + [SMALL_STATE(7433)] = 264123, + [SMALL_STATE(7434)] = 264137, + [SMALL_STATE(7435)] = 264153, + [SMALL_STATE(7436)] = 264167, + [SMALL_STATE(7437)] = 264181, + [SMALL_STATE(7438)] = 264197, + [SMALL_STATE(7439)] = 264211, + [SMALL_STATE(7440)] = 264227, + [SMALL_STATE(7441)] = 264243, + [SMALL_STATE(7442)] = 264259, + [SMALL_STATE(7443)] = 264271, + [SMALL_STATE(7444)] = 264287, + [SMALL_STATE(7445)] = 264301, + [SMALL_STATE(7446)] = 264315, + [SMALL_STATE(7447)] = 264329, + [SMALL_STATE(7448)] = 264345, + [SMALL_STATE(7449)] = 264361, + [SMALL_STATE(7450)] = 264377, + [SMALL_STATE(7451)] = 264391, + [SMALL_STATE(7452)] = 264405, + [SMALL_STATE(7453)] = 264419, + [SMALL_STATE(7454)] = 264433, + [SMALL_STATE(7455)] = 264449, + [SMALL_STATE(7456)] = 264465, + [SMALL_STATE(7457)] = 264481, + [SMALL_STATE(7458)] = 264495, + [SMALL_STATE(7459)] = 264509, + [SMALL_STATE(7460)] = 264525, + [SMALL_STATE(7461)] = 264541, + [SMALL_STATE(7462)] = 264557, + [SMALL_STATE(7463)] = 264573, + [SMALL_STATE(7464)] = 264587, + [SMALL_STATE(7465)] = 264601, + [SMALL_STATE(7466)] = 264617, + [SMALL_STATE(7467)] = 264633, + [SMALL_STATE(7468)] = 264647, + [SMALL_STATE(7469)] = 264661, + [SMALL_STATE(7470)] = 264677, + [SMALL_STATE(7471)] = 264691, + [SMALL_STATE(7472)] = 264707, + [SMALL_STATE(7473)] = 264723, + [SMALL_STATE(7474)] = 264739, + [SMALL_STATE(7475)] = 264755, + [SMALL_STATE(7476)] = 264771, + [SMALL_STATE(7477)] = 264785, + [SMALL_STATE(7478)] = 264801, + [SMALL_STATE(7479)] = 264817, + [SMALL_STATE(7480)] = 264833, + [SMALL_STATE(7481)] = 264849, + [SMALL_STATE(7482)] = 264865, + [SMALL_STATE(7483)] = 264881, + [SMALL_STATE(7484)] = 264893, + [SMALL_STATE(7485)] = 264909, + [SMALL_STATE(7486)] = 264921, + [SMALL_STATE(7487)] = 264935, + [SMALL_STATE(7488)] = 264949, + [SMALL_STATE(7489)] = 264965, + [SMALL_STATE(7490)] = 264981, + [SMALL_STATE(7491)] = 264997, + [SMALL_STATE(7492)] = 265013, + [SMALL_STATE(7493)] = 265027, + [SMALL_STATE(7494)] = 265043, + [SMALL_STATE(7495)] = 265059, + [SMALL_STATE(7496)] = 265075, + [SMALL_STATE(7497)] = 265091, + [SMALL_STATE(7498)] = 265105, + [SMALL_STATE(7499)] = 265121, + [SMALL_STATE(7500)] = 265137, + [SMALL_STATE(7501)] = 265153, + [SMALL_STATE(7502)] = 265169, + [SMALL_STATE(7503)] = 265185, + [SMALL_STATE(7504)] = 265201, + [SMALL_STATE(7505)] = 265215, + [SMALL_STATE(7506)] = 265229, + [SMALL_STATE(7507)] = 265245, + [SMALL_STATE(7508)] = 265261, + [SMALL_STATE(7509)] = 265275, + [SMALL_STATE(7510)] = 265291, + [SMALL_STATE(7511)] = 265305, + [SMALL_STATE(7512)] = 265321, + [SMALL_STATE(7513)] = 265337, + [SMALL_STATE(7514)] = 265353, + [SMALL_STATE(7515)] = 265369, + [SMALL_STATE(7516)] = 265383, + [SMALL_STATE(7517)] = 265399, + [SMALL_STATE(7518)] = 265415, + [SMALL_STATE(7519)] = 265431, + [SMALL_STATE(7520)] = 265445, + [SMALL_STATE(7521)] = 265458, + [SMALL_STATE(7522)] = 265471, + [SMALL_STATE(7523)] = 265480, + [SMALL_STATE(7524)] = 265493, + [SMALL_STATE(7525)] = 265506, + [SMALL_STATE(7526)] = 265519, + [SMALL_STATE(7527)] = 265532, + [SMALL_STATE(7528)] = 265545, + [SMALL_STATE(7529)] = 265558, + [SMALL_STATE(7530)] = 265571, + [SMALL_STATE(7531)] = 265584, + [SMALL_STATE(7532)] = 265597, + [SMALL_STATE(7533)] = 265608, + [SMALL_STATE(7534)] = 265621, + [SMALL_STATE(7535)] = 265630, + [SMALL_STATE(7536)] = 265643, + [SMALL_STATE(7537)] = 265654, + [SMALL_STATE(7538)] = 265665, + [SMALL_STATE(7539)] = 265678, + [SMALL_STATE(7540)] = 265691, + [SMALL_STATE(7541)] = 265704, + [SMALL_STATE(7542)] = 265717, + [SMALL_STATE(7543)] = 265730, + [SMALL_STATE(7544)] = 265741, + [SMALL_STATE(7545)] = 265754, + [SMALL_STATE(7546)] = 265767, + [SMALL_STATE(7547)] = 265780, + [SMALL_STATE(7548)] = 265793, + [SMALL_STATE(7549)] = 265806, + [SMALL_STATE(7550)] = 265819, + [SMALL_STATE(7551)] = 265832, + [SMALL_STATE(7552)] = 265845, + [SMALL_STATE(7553)] = 265858, + [SMALL_STATE(7554)] = 265871, + [SMALL_STATE(7555)] = 265884, + [SMALL_STATE(7556)] = 265893, + [SMALL_STATE(7557)] = 265906, + [SMALL_STATE(7558)] = 265917, + [SMALL_STATE(7559)] = 265930, + [SMALL_STATE(7560)] = 265943, + [SMALL_STATE(7561)] = 265956, + [SMALL_STATE(7562)] = 265969, + [SMALL_STATE(7563)] = 265982, + [SMALL_STATE(7564)] = 265993, + [SMALL_STATE(7565)] = 266006, + [SMALL_STATE(7566)] = 266019, + [SMALL_STATE(7567)] = 266032, + [SMALL_STATE(7568)] = 266041, + [SMALL_STATE(7569)] = 266050, + [SMALL_STATE(7570)] = 266063, + [SMALL_STATE(7571)] = 266076, + [SMALL_STATE(7572)] = 266087, + [SMALL_STATE(7573)] = 266100, + [SMALL_STATE(7574)] = 266113, + [SMALL_STATE(7575)] = 266126, + [SMALL_STATE(7576)] = 266139, + [SMALL_STATE(7577)] = 266152, + [SMALL_STATE(7578)] = 266165, + [SMALL_STATE(7579)] = 266178, + [SMALL_STATE(7580)] = 266191, + [SMALL_STATE(7581)] = 266204, + [SMALL_STATE(7582)] = 266217, + [SMALL_STATE(7583)] = 266230, + [SMALL_STATE(7584)] = 266241, + [SMALL_STATE(7585)] = 266254, + [SMALL_STATE(7586)] = 266267, + [SMALL_STATE(7587)] = 266280, + [SMALL_STATE(7588)] = 266293, + [SMALL_STATE(7589)] = 266306, + [SMALL_STATE(7590)] = 266319, + [SMALL_STATE(7591)] = 266332, + [SMALL_STATE(7592)] = 266345, + [SMALL_STATE(7593)] = 266358, + [SMALL_STATE(7594)] = 266371, + [SMALL_STATE(7595)] = 266384, + [SMALL_STATE(7596)] = 266397, + [SMALL_STATE(7597)] = 266410, + [SMALL_STATE(7598)] = 266423, + [SMALL_STATE(7599)] = 266436, + [SMALL_STATE(7600)] = 266449, + [SMALL_STATE(7601)] = 266462, + [SMALL_STATE(7602)] = 266475, + [SMALL_STATE(7603)] = 266488, + [SMALL_STATE(7604)] = 266499, + [SMALL_STATE(7605)] = 266512, + [SMALL_STATE(7606)] = 266525, + [SMALL_STATE(7607)] = 266538, + [SMALL_STATE(7608)] = 266551, + [SMALL_STATE(7609)] = 266564, + [SMALL_STATE(7610)] = 266577, + [SMALL_STATE(7611)] = 266590, + [SMALL_STATE(7612)] = 266603, + [SMALL_STATE(7613)] = 266616, + [SMALL_STATE(7614)] = 266629, + [SMALL_STATE(7615)] = 266642, + [SMALL_STATE(7616)] = 266655, + [SMALL_STATE(7617)] = 266668, + [SMALL_STATE(7618)] = 266681, + [SMALL_STATE(7619)] = 266694, + [SMALL_STATE(7620)] = 266707, + [SMALL_STATE(7621)] = 266720, + [SMALL_STATE(7622)] = 266733, + [SMALL_STATE(7623)] = 266746, + [SMALL_STATE(7624)] = 266759, + [SMALL_STATE(7625)] = 266772, + [SMALL_STATE(7626)] = 266785, + [SMALL_STATE(7627)] = 266798, + [SMALL_STATE(7628)] = 266811, + [SMALL_STATE(7629)] = 266824, + [SMALL_STATE(7630)] = 266837, + [SMALL_STATE(7631)] = 266850, + [SMALL_STATE(7632)] = 266863, + [SMALL_STATE(7633)] = 266876, + [SMALL_STATE(7634)] = 266889, + [SMALL_STATE(7635)] = 266902, + [SMALL_STATE(7636)] = 266915, + [SMALL_STATE(7637)] = 266928, + [SMALL_STATE(7638)] = 266941, + [SMALL_STATE(7639)] = 266952, + [SMALL_STATE(7640)] = 266963, + [SMALL_STATE(7641)] = 266976, + [SMALL_STATE(7642)] = 266989, + [SMALL_STATE(7643)] = 267002, + [SMALL_STATE(7644)] = 267011, + [SMALL_STATE(7645)] = 267024, + [SMALL_STATE(7646)] = 267037, + [SMALL_STATE(7647)] = 267048, + [SMALL_STATE(7648)] = 267061, + [SMALL_STATE(7649)] = 267074, + [SMALL_STATE(7650)] = 267087, + [SMALL_STATE(7651)] = 267100, + [SMALL_STATE(7652)] = 267113, + [SMALL_STATE(7653)] = 267126, + [SMALL_STATE(7654)] = 267139, + [SMALL_STATE(7655)] = 267152, + [SMALL_STATE(7656)] = 267165, + [SMALL_STATE(7657)] = 267178, + [SMALL_STATE(7658)] = 267191, + [SMALL_STATE(7659)] = 267204, + [SMALL_STATE(7660)] = 267217, + [SMALL_STATE(7661)] = 267230, + [SMALL_STATE(7662)] = 267243, + [SMALL_STATE(7663)] = 267254, + [SMALL_STATE(7664)] = 267267, + [SMALL_STATE(7665)] = 267280, + [SMALL_STATE(7666)] = 267289, + [SMALL_STATE(7667)] = 267302, + [SMALL_STATE(7668)] = 267315, + [SMALL_STATE(7669)] = 267324, + [SMALL_STATE(7670)] = 267337, + [SMALL_STATE(7671)] = 267348, + [SMALL_STATE(7672)] = 267361, + [SMALL_STATE(7673)] = 267374, + [SMALL_STATE(7674)] = 267387, + [SMALL_STATE(7675)] = 267400, + [SMALL_STATE(7676)] = 267413, + [SMALL_STATE(7677)] = 267426, + [SMALL_STATE(7678)] = 267439, + [SMALL_STATE(7679)] = 267452, + [SMALL_STATE(7680)] = 267465, + [SMALL_STATE(7681)] = 267478, + [SMALL_STATE(7682)] = 267491, + [SMALL_STATE(7683)] = 267504, + [SMALL_STATE(7684)] = 267517, + [SMALL_STATE(7685)] = 267530, + [SMALL_STATE(7686)] = 267543, + [SMALL_STATE(7687)] = 267556, + [SMALL_STATE(7688)] = 267567, + [SMALL_STATE(7689)] = 267580, + [SMALL_STATE(7690)] = 267593, + [SMALL_STATE(7691)] = 267606, + [SMALL_STATE(7692)] = 267619, + [SMALL_STATE(7693)] = 267632, + [SMALL_STATE(7694)] = 267645, + [SMALL_STATE(7695)] = 267658, + [SMALL_STATE(7696)] = 267671, + [SMALL_STATE(7697)] = 267682, + [SMALL_STATE(7698)] = 267695, + [SMALL_STATE(7699)] = 267708, + [SMALL_STATE(7700)] = 267721, + [SMALL_STATE(7701)] = 267734, + [SMALL_STATE(7702)] = 267745, + [SMALL_STATE(7703)] = 267758, + [SMALL_STATE(7704)] = 267771, + [SMALL_STATE(7705)] = 267784, + [SMALL_STATE(7706)] = 267795, + [SMALL_STATE(7707)] = 267806, + [SMALL_STATE(7708)] = 267819, + [SMALL_STATE(7709)] = 267830, + [SMALL_STATE(7710)] = 267843, + [SMALL_STATE(7711)] = 267856, + [SMALL_STATE(7712)] = 267869, + [SMALL_STATE(7713)] = 267882, + [SMALL_STATE(7714)] = 267895, + [SMALL_STATE(7715)] = 267906, + [SMALL_STATE(7716)] = 267919, + [SMALL_STATE(7717)] = 267932, + [SMALL_STATE(7718)] = 267945, + [SMALL_STATE(7719)] = 267958, + [SMALL_STATE(7720)] = 267967, + [SMALL_STATE(7721)] = 267978, + [SMALL_STATE(7722)] = 267989, + [SMALL_STATE(7723)] = 268002, + [SMALL_STATE(7724)] = 268015, + [SMALL_STATE(7725)] = 268028, + [SMALL_STATE(7726)] = 268041, + [SMALL_STATE(7727)] = 268054, + [SMALL_STATE(7728)] = 268067, + [SMALL_STATE(7729)] = 268080, + [SMALL_STATE(7730)] = 268091, + [SMALL_STATE(7731)] = 268104, + [SMALL_STATE(7732)] = 268117, + [SMALL_STATE(7733)] = 268130, + [SMALL_STATE(7734)] = 268143, + [SMALL_STATE(7735)] = 268156, + [SMALL_STATE(7736)] = 268169, + [SMALL_STATE(7737)] = 268182, + [SMALL_STATE(7738)] = 268195, + [SMALL_STATE(7739)] = 268208, + [SMALL_STATE(7740)] = 268221, + [SMALL_STATE(7741)] = 268232, + [SMALL_STATE(7742)] = 268243, + [SMALL_STATE(7743)] = 268254, + [SMALL_STATE(7744)] = 268267, + [SMALL_STATE(7745)] = 268280, + [SMALL_STATE(7746)] = 268291, + [SMALL_STATE(7747)] = 268302, + [SMALL_STATE(7748)] = 268315, + [SMALL_STATE(7749)] = 268328, + [SMALL_STATE(7750)] = 268341, + [SMALL_STATE(7751)] = 268354, + [SMALL_STATE(7752)] = 268367, + [SMALL_STATE(7753)] = 268376, + [SMALL_STATE(7754)] = 268385, + [SMALL_STATE(7755)] = 268398, + [SMALL_STATE(7756)] = 268411, + [SMALL_STATE(7757)] = 268424, + [SMALL_STATE(7758)] = 268437, + [SMALL_STATE(7759)] = 268450, + [SMALL_STATE(7760)] = 268463, + [SMALL_STATE(7761)] = 268476, + [SMALL_STATE(7762)] = 268489, + [SMALL_STATE(7763)] = 268502, + [SMALL_STATE(7764)] = 268515, + [SMALL_STATE(7765)] = 268528, + [SMALL_STATE(7766)] = 268541, + [SMALL_STATE(7767)] = 268554, + [SMALL_STATE(7768)] = 268567, + [SMALL_STATE(7769)] = 268580, + [SMALL_STATE(7770)] = 268593, + [SMALL_STATE(7771)] = 268606, + [SMALL_STATE(7772)] = 268619, + [SMALL_STATE(7773)] = 268632, + [SMALL_STATE(7774)] = 268645, + [SMALL_STATE(7775)] = 268658, + [SMALL_STATE(7776)] = 268671, + [SMALL_STATE(7777)] = 268682, + [SMALL_STATE(7778)] = 268695, + [SMALL_STATE(7779)] = 268708, + [SMALL_STATE(7780)] = 268721, + [SMALL_STATE(7781)] = 268734, + [SMALL_STATE(7782)] = 268747, + [SMALL_STATE(7783)] = 268758, + [SMALL_STATE(7784)] = 268771, + [SMALL_STATE(7785)] = 268784, + [SMALL_STATE(7786)] = 268795, + [SMALL_STATE(7787)] = 268808, + [SMALL_STATE(7788)] = 268821, + [SMALL_STATE(7789)] = 268832, + [SMALL_STATE(7790)] = 268843, + [SMALL_STATE(7791)] = 268856, + [SMALL_STATE(7792)] = 268869, + [SMALL_STATE(7793)] = 268882, + [SMALL_STATE(7794)] = 268893, + [SMALL_STATE(7795)] = 268904, + [SMALL_STATE(7796)] = 268917, + [SMALL_STATE(7797)] = 268930, + [SMALL_STATE(7798)] = 268943, + [SMALL_STATE(7799)] = 268954, + [SMALL_STATE(7800)] = 268967, + [SMALL_STATE(7801)] = 268980, + [SMALL_STATE(7802)] = 268993, + [SMALL_STATE(7803)] = 269006, + [SMALL_STATE(7804)] = 269019, + [SMALL_STATE(7805)] = 269032, + [SMALL_STATE(7806)] = 269045, + [SMALL_STATE(7807)] = 269058, + [SMALL_STATE(7808)] = 269071, + [SMALL_STATE(7809)] = 269080, + [SMALL_STATE(7810)] = 269089, + [SMALL_STATE(7811)] = 269102, + [SMALL_STATE(7812)] = 269113, + [SMALL_STATE(7813)] = 269126, + [SMALL_STATE(7814)] = 269139, + [SMALL_STATE(7815)] = 269152, + [SMALL_STATE(7816)] = 269165, + [SMALL_STATE(7817)] = 269178, + [SMALL_STATE(7818)] = 269191, + [SMALL_STATE(7819)] = 269204, + [SMALL_STATE(7820)] = 269217, + [SMALL_STATE(7821)] = 269230, + [SMALL_STATE(7822)] = 269241, + [SMALL_STATE(7823)] = 269254, + [SMALL_STATE(7824)] = 269267, + [SMALL_STATE(7825)] = 269280, + [SMALL_STATE(7826)] = 269293, + [SMALL_STATE(7827)] = 269306, + [SMALL_STATE(7828)] = 269319, + [SMALL_STATE(7829)] = 269332, + [SMALL_STATE(7830)] = 269345, + [SMALL_STATE(7831)] = 269358, + [SMALL_STATE(7832)] = 269371, + [SMALL_STATE(7833)] = 269382, + [SMALL_STATE(7834)] = 269395, + [SMALL_STATE(7835)] = 269406, + [SMALL_STATE(7836)] = 269419, + [SMALL_STATE(7837)] = 269430, + [SMALL_STATE(7838)] = 269443, + [SMALL_STATE(7839)] = 269454, + [SMALL_STATE(7840)] = 269465, + [SMALL_STATE(7841)] = 269476, + [SMALL_STATE(7842)] = 269489, + [SMALL_STATE(7843)] = 269502, + [SMALL_STATE(7844)] = 269515, + [SMALL_STATE(7845)] = 269528, + [SMALL_STATE(7846)] = 269541, + [SMALL_STATE(7847)] = 269554, + [SMALL_STATE(7848)] = 269567, + [SMALL_STATE(7849)] = 269580, + [SMALL_STATE(7850)] = 269593, + [SMALL_STATE(7851)] = 269606, + [SMALL_STATE(7852)] = 269619, + [SMALL_STATE(7853)] = 269632, + [SMALL_STATE(7854)] = 269645, + [SMALL_STATE(7855)] = 269656, + [SMALL_STATE(7856)] = 269669, + [SMALL_STATE(7857)] = 269682, + [SMALL_STATE(7858)] = 269693, + [SMALL_STATE(7859)] = 269706, + [SMALL_STATE(7860)] = 269719, + [SMALL_STATE(7861)] = 269730, + [SMALL_STATE(7862)] = 269743, + [SMALL_STATE(7863)] = 269756, + [SMALL_STATE(7864)] = 269769, + [SMALL_STATE(7865)] = 269782, + [SMALL_STATE(7866)] = 269795, + [SMALL_STATE(7867)] = 269808, + [SMALL_STATE(7868)] = 269819, + [SMALL_STATE(7869)] = 269832, + [SMALL_STATE(7870)] = 269845, + [SMALL_STATE(7871)] = 269858, + [SMALL_STATE(7872)] = 269871, + [SMALL_STATE(7873)] = 269884, + [SMALL_STATE(7874)] = 269897, + [SMALL_STATE(7875)] = 269910, + [SMALL_STATE(7876)] = 269919, + [SMALL_STATE(7877)] = 269932, + [SMALL_STATE(7878)] = 269945, + [SMALL_STATE(7879)] = 269958, + [SMALL_STATE(7880)] = 269969, + [SMALL_STATE(7881)] = 269982, + [SMALL_STATE(7882)] = 269995, + [SMALL_STATE(7883)] = 270008, + [SMALL_STATE(7884)] = 270021, + [SMALL_STATE(7885)] = 270034, + [SMALL_STATE(7886)] = 270047, + [SMALL_STATE(7887)] = 270060, + [SMALL_STATE(7888)] = 270073, + [SMALL_STATE(7889)] = 270082, + [SMALL_STATE(7890)] = 270095, + [SMALL_STATE(7891)] = 270108, + [SMALL_STATE(7892)] = 270119, + [SMALL_STATE(7893)] = 270132, + [SMALL_STATE(7894)] = 270141, + [SMALL_STATE(7895)] = 270154, + [SMALL_STATE(7896)] = 270165, + [SMALL_STATE(7897)] = 270176, + [SMALL_STATE(7898)] = 270189, + [SMALL_STATE(7899)] = 270200, + [SMALL_STATE(7900)] = 270213, + [SMALL_STATE(7901)] = 270226, + [SMALL_STATE(7902)] = 270239, + [SMALL_STATE(7903)] = 270252, + [SMALL_STATE(7904)] = 270265, + [SMALL_STATE(7905)] = 270278, + [SMALL_STATE(7906)] = 270291, + [SMALL_STATE(7907)] = 270304, + [SMALL_STATE(7908)] = 270317, + [SMALL_STATE(7909)] = 270330, + [SMALL_STATE(7910)] = 270343, + [SMALL_STATE(7911)] = 270356, + [SMALL_STATE(7912)] = 270369, + [SMALL_STATE(7913)] = 270382, + [SMALL_STATE(7914)] = 270393, + [SMALL_STATE(7915)] = 270406, + [SMALL_STATE(7916)] = 270419, + [SMALL_STATE(7917)] = 270432, + [SMALL_STATE(7918)] = 270443, + [SMALL_STATE(7919)] = 270456, + [SMALL_STATE(7920)] = 270469, + [SMALL_STATE(7921)] = 270482, + [SMALL_STATE(7922)] = 270495, + [SMALL_STATE(7923)] = 270508, + [SMALL_STATE(7924)] = 270521, + [SMALL_STATE(7925)] = 270532, + [SMALL_STATE(7926)] = 270541, + [SMALL_STATE(7927)] = 270554, + [SMALL_STATE(7928)] = 270567, + [SMALL_STATE(7929)] = 270580, + [SMALL_STATE(7930)] = 270593, + [SMALL_STATE(7931)] = 270606, + [SMALL_STATE(7932)] = 270619, + [SMALL_STATE(7933)] = 270632, + [SMALL_STATE(7934)] = 270643, + [SMALL_STATE(7935)] = 270653, + [SMALL_STATE(7936)] = 270663, + [SMALL_STATE(7937)] = 270673, + [SMALL_STATE(7938)] = 270683, + [SMALL_STATE(7939)] = 270693, + [SMALL_STATE(7940)] = 270703, + [SMALL_STATE(7941)] = 270713, + [SMALL_STATE(7942)] = 270723, + [SMALL_STATE(7943)] = 270733, + [SMALL_STATE(7944)] = 270743, + [SMALL_STATE(7945)] = 270753, + [SMALL_STATE(7946)] = 270763, + [SMALL_STATE(7947)] = 270773, + [SMALL_STATE(7948)] = 270783, + [SMALL_STATE(7949)] = 270793, + [SMALL_STATE(7950)] = 270803, + [SMALL_STATE(7951)] = 270813, + [SMALL_STATE(7952)] = 270823, + [SMALL_STATE(7953)] = 270833, + [SMALL_STATE(7954)] = 270843, + [SMALL_STATE(7955)] = 270853, + [SMALL_STATE(7956)] = 270863, + [SMALL_STATE(7957)] = 270871, + [SMALL_STATE(7958)] = 270879, + [SMALL_STATE(7959)] = 270889, + [SMALL_STATE(7960)] = 270899, + [SMALL_STATE(7961)] = 270907, + [SMALL_STATE(7962)] = 270915, + [SMALL_STATE(7963)] = 270925, + [SMALL_STATE(7964)] = 270935, + [SMALL_STATE(7965)] = 270943, + [SMALL_STATE(7966)] = 270951, + [SMALL_STATE(7967)] = 270961, + [SMALL_STATE(7968)] = 270969, + [SMALL_STATE(7969)] = 270979, + [SMALL_STATE(7970)] = 270989, + [SMALL_STATE(7971)] = 270999, + [SMALL_STATE(7972)] = 271009, + [SMALL_STATE(7973)] = 271019, + [SMALL_STATE(7974)] = 271029, + [SMALL_STATE(7975)] = 271039, + [SMALL_STATE(7976)] = 271049, + [SMALL_STATE(7977)] = 271059, + [SMALL_STATE(7978)] = 271069, + [SMALL_STATE(7979)] = 271079, + [SMALL_STATE(7980)] = 271089, + [SMALL_STATE(7981)] = 271099, + [SMALL_STATE(7982)] = 271109, + [SMALL_STATE(7983)] = 271119, + [SMALL_STATE(7984)] = 271129, + [SMALL_STATE(7985)] = 271139, + [SMALL_STATE(7986)] = 271149, + [SMALL_STATE(7987)] = 271159, + [SMALL_STATE(7988)] = 271169, + [SMALL_STATE(7989)] = 271179, + [SMALL_STATE(7990)] = 271187, + [SMALL_STATE(7991)] = 271197, + [SMALL_STATE(7992)] = 271207, + [SMALL_STATE(7993)] = 271217, + [SMALL_STATE(7994)] = 271227, + [SMALL_STATE(7995)] = 271237, + [SMALL_STATE(7996)] = 271247, + [SMALL_STATE(7997)] = 271257, + [SMALL_STATE(7998)] = 271267, + [SMALL_STATE(7999)] = 271277, + [SMALL_STATE(8000)] = 271287, + [SMALL_STATE(8001)] = 271297, + [SMALL_STATE(8002)] = 271307, + [SMALL_STATE(8003)] = 271317, + [SMALL_STATE(8004)] = 271327, + [SMALL_STATE(8005)] = 271337, + [SMALL_STATE(8006)] = 271347, + [SMALL_STATE(8007)] = 271357, + [SMALL_STATE(8008)] = 271367, + [SMALL_STATE(8009)] = 271377, + [SMALL_STATE(8010)] = 271387, + [SMALL_STATE(8011)] = 271397, + [SMALL_STATE(8012)] = 271407, + [SMALL_STATE(8013)] = 271417, + [SMALL_STATE(8014)] = 271427, + [SMALL_STATE(8015)] = 271437, + [SMALL_STATE(8016)] = 271447, + [SMALL_STATE(8017)] = 271457, + [SMALL_STATE(8018)] = 271467, + [SMALL_STATE(8019)] = 271477, + [SMALL_STATE(8020)] = 271487, + [SMALL_STATE(8021)] = 271497, + [SMALL_STATE(8022)] = 271507, + [SMALL_STATE(8023)] = 271517, + [SMALL_STATE(8024)] = 271527, + [SMALL_STATE(8025)] = 271537, + [SMALL_STATE(8026)] = 271547, + [SMALL_STATE(8027)] = 271557, + [SMALL_STATE(8028)] = 271567, + [SMALL_STATE(8029)] = 271577, + [SMALL_STATE(8030)] = 271587, + [SMALL_STATE(8031)] = 271597, + [SMALL_STATE(8032)] = 271607, + [SMALL_STATE(8033)] = 271617, + [SMALL_STATE(8034)] = 271627, + [SMALL_STATE(8035)] = 271637, + [SMALL_STATE(8036)] = 271647, + [SMALL_STATE(8037)] = 271657, + [SMALL_STATE(8038)] = 271667, + [SMALL_STATE(8039)] = 271677, + [SMALL_STATE(8040)] = 271687, + [SMALL_STATE(8041)] = 271697, + [SMALL_STATE(8042)] = 271707, + [SMALL_STATE(8043)] = 271717, + [SMALL_STATE(8044)] = 271727, + [SMALL_STATE(8045)] = 271737, + [SMALL_STATE(8046)] = 271747, + [SMALL_STATE(8047)] = 271755, + [SMALL_STATE(8048)] = 271765, + [SMALL_STATE(8049)] = 271775, + [SMALL_STATE(8050)] = 271785, + [SMALL_STATE(8051)] = 271795, + [SMALL_STATE(8052)] = 271805, + [SMALL_STATE(8053)] = 271815, + [SMALL_STATE(8054)] = 271825, + [SMALL_STATE(8055)] = 271835, + [SMALL_STATE(8056)] = 271845, + [SMALL_STATE(8057)] = 271855, + [SMALL_STATE(8058)] = 271865, + [SMALL_STATE(8059)] = 271873, + [SMALL_STATE(8060)] = 271883, + [SMALL_STATE(8061)] = 271893, + [SMALL_STATE(8062)] = 271903, + [SMALL_STATE(8063)] = 271913, + [SMALL_STATE(8064)] = 271923, + [SMALL_STATE(8065)] = 271933, + [SMALL_STATE(8066)] = 271943, + [SMALL_STATE(8067)] = 271953, + [SMALL_STATE(8068)] = 271963, + [SMALL_STATE(8069)] = 271973, + [SMALL_STATE(8070)] = 271983, + [SMALL_STATE(8071)] = 271993, + [SMALL_STATE(8072)] = 272001, + [SMALL_STATE(8073)] = 272011, + [SMALL_STATE(8074)] = 272021, + [SMALL_STATE(8075)] = 272031, + [SMALL_STATE(8076)] = 272041, + [SMALL_STATE(8077)] = 272051, + [SMALL_STATE(8078)] = 272061, + [SMALL_STATE(8079)] = 272071, + [SMALL_STATE(8080)] = 272079, + [SMALL_STATE(8081)] = 272089, + [SMALL_STATE(8082)] = 272099, + [SMALL_STATE(8083)] = 272109, + [SMALL_STATE(8084)] = 272119, + [SMALL_STATE(8085)] = 272129, + [SMALL_STATE(8086)] = 272139, + [SMALL_STATE(8087)] = 272147, + [SMALL_STATE(8088)] = 272157, + [SMALL_STATE(8089)] = 272167, + [SMALL_STATE(8090)] = 272175, + [SMALL_STATE(8091)] = 272185, + [SMALL_STATE(8092)] = 272195, + [SMALL_STATE(8093)] = 272205, + [SMALL_STATE(8094)] = 272215, + [SMALL_STATE(8095)] = 272223, + [SMALL_STATE(8096)] = 272231, + [SMALL_STATE(8097)] = 272241, + [SMALL_STATE(8098)] = 272251, + [SMALL_STATE(8099)] = 272261, + [SMALL_STATE(8100)] = 272271, + [SMALL_STATE(8101)] = 272281, + [SMALL_STATE(8102)] = 272291, + [SMALL_STATE(8103)] = 272301, + [SMALL_STATE(8104)] = 272311, + [SMALL_STATE(8105)] = 272321, + [SMALL_STATE(8106)] = 272331, + [SMALL_STATE(8107)] = 272341, + [SMALL_STATE(8108)] = 272351, + [SMALL_STATE(8109)] = 272359, + [SMALL_STATE(8110)] = 272369, + [SMALL_STATE(8111)] = 272377, + [SMALL_STATE(8112)] = 272387, + [SMALL_STATE(8113)] = 272397, + [SMALL_STATE(8114)] = 272405, + [SMALL_STATE(8115)] = 272413, + [SMALL_STATE(8116)] = 272423, + [SMALL_STATE(8117)] = 272431, + [SMALL_STATE(8118)] = 272441, + [SMALL_STATE(8119)] = 272451, + [SMALL_STATE(8120)] = 272461, + [SMALL_STATE(8121)] = 272471, + [SMALL_STATE(8122)] = 272481, + [SMALL_STATE(8123)] = 272491, + [SMALL_STATE(8124)] = 272501, + [SMALL_STATE(8125)] = 272509, + [SMALL_STATE(8126)] = 272519, + [SMALL_STATE(8127)] = 272529, + [SMALL_STATE(8128)] = 272537, + [SMALL_STATE(8129)] = 272547, + [SMALL_STATE(8130)] = 272557, + [SMALL_STATE(8131)] = 272567, + [SMALL_STATE(8132)] = 272577, + [SMALL_STATE(8133)] = 272587, + [SMALL_STATE(8134)] = 272597, + [SMALL_STATE(8135)] = 272607, + [SMALL_STATE(8136)] = 272617, + [SMALL_STATE(8137)] = 272627, + [SMALL_STATE(8138)] = 272637, + [SMALL_STATE(8139)] = 272647, + [SMALL_STATE(8140)] = 272657, + [SMALL_STATE(8141)] = 272667, + [SMALL_STATE(8142)] = 272677, + [SMALL_STATE(8143)] = 272687, + [SMALL_STATE(8144)] = 272697, + [SMALL_STATE(8145)] = 272707, + [SMALL_STATE(8146)] = 272717, + [SMALL_STATE(8147)] = 272727, + [SMALL_STATE(8148)] = 272737, + [SMALL_STATE(8149)] = 272745, + [SMALL_STATE(8150)] = 272755, + [SMALL_STATE(8151)] = 272763, + [SMALL_STATE(8152)] = 272771, + [SMALL_STATE(8153)] = 272781, + [SMALL_STATE(8154)] = 272789, + [SMALL_STATE(8155)] = 272799, + [SMALL_STATE(8156)] = 272809, + [SMALL_STATE(8157)] = 272817, + [SMALL_STATE(8158)] = 272825, + [SMALL_STATE(8159)] = 272835, + [SMALL_STATE(8160)] = 272845, + [SMALL_STATE(8161)] = 272855, + [SMALL_STATE(8162)] = 272865, + [SMALL_STATE(8163)] = 272875, + [SMALL_STATE(8164)] = 272885, + [SMALL_STATE(8165)] = 272895, + [SMALL_STATE(8166)] = 272905, + [SMALL_STATE(8167)] = 272915, + [SMALL_STATE(8168)] = 272925, + [SMALL_STATE(8169)] = 272935, + [SMALL_STATE(8170)] = 272945, + [SMALL_STATE(8171)] = 272955, + [SMALL_STATE(8172)] = 272965, + [SMALL_STATE(8173)] = 272975, + [SMALL_STATE(8174)] = 272985, + [SMALL_STATE(8175)] = 272993, + [SMALL_STATE(8176)] = 273003, + [SMALL_STATE(8177)] = 273013, + [SMALL_STATE(8178)] = 273023, + [SMALL_STATE(8179)] = 273033, + [SMALL_STATE(8180)] = 273043, + [SMALL_STATE(8181)] = 273053, + [SMALL_STATE(8182)] = 273063, + [SMALL_STATE(8183)] = 273073, + [SMALL_STATE(8184)] = 273083, + [SMALL_STATE(8185)] = 273093, + [SMALL_STATE(8186)] = 273103, + [SMALL_STATE(8187)] = 273113, + [SMALL_STATE(8188)] = 273123, + [SMALL_STATE(8189)] = 273133, + [SMALL_STATE(8190)] = 273143, + [SMALL_STATE(8191)] = 273153, + [SMALL_STATE(8192)] = 273163, + [SMALL_STATE(8193)] = 273173, + [SMALL_STATE(8194)] = 273183, + [SMALL_STATE(8195)] = 273193, + [SMALL_STATE(8196)] = 273203, + [SMALL_STATE(8197)] = 273213, + [SMALL_STATE(8198)] = 273223, + [SMALL_STATE(8199)] = 273233, + [SMALL_STATE(8200)] = 273243, + [SMALL_STATE(8201)] = 273253, + [SMALL_STATE(8202)] = 273263, + [SMALL_STATE(8203)] = 273273, + [SMALL_STATE(8204)] = 273281, + [SMALL_STATE(8205)] = 273291, + [SMALL_STATE(8206)] = 273301, + [SMALL_STATE(8207)] = 273311, + [SMALL_STATE(8208)] = 273321, + [SMALL_STATE(8209)] = 273331, + [SMALL_STATE(8210)] = 273341, + [SMALL_STATE(8211)] = 273351, + [SMALL_STATE(8212)] = 273361, + [SMALL_STATE(8213)] = 273371, + [SMALL_STATE(8214)] = 273381, + [SMALL_STATE(8215)] = 273391, + [SMALL_STATE(8216)] = 273401, + [SMALL_STATE(8217)] = 273411, + [SMALL_STATE(8218)] = 273421, + [SMALL_STATE(8219)] = 273431, + [SMALL_STATE(8220)] = 273441, + [SMALL_STATE(8221)] = 273451, + [SMALL_STATE(8222)] = 273461, + [SMALL_STATE(8223)] = 273469, + [SMALL_STATE(8224)] = 273479, + [SMALL_STATE(8225)] = 273489, + [SMALL_STATE(8226)] = 273499, + [SMALL_STATE(8227)] = 273509, + [SMALL_STATE(8228)] = 273519, + [SMALL_STATE(8229)] = 273529, + [SMALL_STATE(8230)] = 273539, + [SMALL_STATE(8231)] = 273549, + [SMALL_STATE(8232)] = 273559, + [SMALL_STATE(8233)] = 273569, + [SMALL_STATE(8234)] = 273579, + [SMALL_STATE(8235)] = 273587, + [SMALL_STATE(8236)] = 273597, + [SMALL_STATE(8237)] = 273607, + [SMALL_STATE(8238)] = 273617, + [SMALL_STATE(8239)] = 273627, + [SMALL_STATE(8240)] = 273637, + [SMALL_STATE(8241)] = 273647, + [SMALL_STATE(8242)] = 273657, + [SMALL_STATE(8243)] = 273667, + [SMALL_STATE(8244)] = 273677, + [SMALL_STATE(8245)] = 273687, + [SMALL_STATE(8246)] = 273697, + [SMALL_STATE(8247)] = 273707, + [SMALL_STATE(8248)] = 273717, + [SMALL_STATE(8249)] = 273727, + [SMALL_STATE(8250)] = 273737, + [SMALL_STATE(8251)] = 273747, + [SMALL_STATE(8252)] = 273757, + [SMALL_STATE(8253)] = 273767, + [SMALL_STATE(8254)] = 273777, + [SMALL_STATE(8255)] = 273787, + [SMALL_STATE(8256)] = 273797, + [SMALL_STATE(8257)] = 273807, + [SMALL_STATE(8258)] = 273817, + [SMALL_STATE(8259)] = 273827, + [SMALL_STATE(8260)] = 273837, + [SMALL_STATE(8261)] = 273847, + [SMALL_STATE(8262)] = 273857, + [SMALL_STATE(8263)] = 273867, + [SMALL_STATE(8264)] = 273877, + [SMALL_STATE(8265)] = 273887, + [SMALL_STATE(8266)] = 273897, + [SMALL_STATE(8267)] = 273907, + [SMALL_STATE(8268)] = 273917, + [SMALL_STATE(8269)] = 273927, + [SMALL_STATE(8270)] = 273937, + [SMALL_STATE(8271)] = 273947, + [SMALL_STATE(8272)] = 273957, + [SMALL_STATE(8273)] = 273967, + [SMALL_STATE(8274)] = 273977, + [SMALL_STATE(8275)] = 273987, + [SMALL_STATE(8276)] = 273997, + [SMALL_STATE(8277)] = 274007, + [SMALL_STATE(8278)] = 274017, + [SMALL_STATE(8279)] = 274025, + [SMALL_STATE(8280)] = 274035, + [SMALL_STATE(8281)] = 274045, + [SMALL_STATE(8282)] = 274055, + [SMALL_STATE(8283)] = 274065, + [SMALL_STATE(8284)] = 274075, + [SMALL_STATE(8285)] = 274085, + [SMALL_STATE(8286)] = 274095, + [SMALL_STATE(8287)] = 274105, + [SMALL_STATE(8288)] = 274115, + [SMALL_STATE(8289)] = 274125, + [SMALL_STATE(8290)] = 274135, + [SMALL_STATE(8291)] = 274145, + [SMALL_STATE(8292)] = 274155, + [SMALL_STATE(8293)] = 274165, + [SMALL_STATE(8294)] = 274173, + [SMALL_STATE(8295)] = 274183, + [SMALL_STATE(8296)] = 274193, + [SMALL_STATE(8297)] = 274203, + [SMALL_STATE(8298)] = 274213, + [SMALL_STATE(8299)] = 274223, + [SMALL_STATE(8300)] = 274233, + [SMALL_STATE(8301)] = 274243, + [SMALL_STATE(8302)] = 274253, + [SMALL_STATE(8303)] = 274263, + [SMALL_STATE(8304)] = 274273, + [SMALL_STATE(8305)] = 274283, + [SMALL_STATE(8306)] = 274293, + [SMALL_STATE(8307)] = 274303, + [SMALL_STATE(8308)] = 274313, + [SMALL_STATE(8309)] = 274323, + [SMALL_STATE(8310)] = 274333, + [SMALL_STATE(8311)] = 274343, + [SMALL_STATE(8312)] = 274353, + [SMALL_STATE(8313)] = 274363, + [SMALL_STATE(8314)] = 274373, + [SMALL_STATE(8315)] = 274383, + [SMALL_STATE(8316)] = 274393, + [SMALL_STATE(8317)] = 274403, + [SMALL_STATE(8318)] = 274413, + [SMALL_STATE(8319)] = 274423, + [SMALL_STATE(8320)] = 274433, + [SMALL_STATE(8321)] = 274443, + [SMALL_STATE(8322)] = 274453, + [SMALL_STATE(8323)] = 274463, + [SMALL_STATE(8324)] = 274473, + [SMALL_STATE(8325)] = 274483, + [SMALL_STATE(8326)] = 274493, + [SMALL_STATE(8327)] = 274503, + [SMALL_STATE(8328)] = 274513, + [SMALL_STATE(8329)] = 274523, + [SMALL_STATE(8330)] = 274533, + [SMALL_STATE(8331)] = 274543, + [SMALL_STATE(8332)] = 274553, + [SMALL_STATE(8333)] = 274563, + [SMALL_STATE(8334)] = 274573, + [SMALL_STATE(8335)] = 274583, + [SMALL_STATE(8336)] = 274593, + [SMALL_STATE(8337)] = 274603, + [SMALL_STATE(8338)] = 274613, + [SMALL_STATE(8339)] = 274623, + [SMALL_STATE(8340)] = 274633, + [SMALL_STATE(8341)] = 274643, + [SMALL_STATE(8342)] = 274653, + [SMALL_STATE(8343)] = 274663, + [SMALL_STATE(8344)] = 274673, + [SMALL_STATE(8345)] = 274683, + [SMALL_STATE(8346)] = 274693, + [SMALL_STATE(8347)] = 274701, + [SMALL_STATE(8348)] = 274711, + [SMALL_STATE(8349)] = 274721, + [SMALL_STATE(8350)] = 274731, + [SMALL_STATE(8351)] = 274741, + [SMALL_STATE(8352)] = 274751, + [SMALL_STATE(8353)] = 274761, + [SMALL_STATE(8354)] = 274771, + [SMALL_STATE(8355)] = 274779, + [SMALL_STATE(8356)] = 274789, + [SMALL_STATE(8357)] = 274799, + [SMALL_STATE(8358)] = 274809, + [SMALL_STATE(8359)] = 274819, + [SMALL_STATE(8360)] = 274827, + [SMALL_STATE(8361)] = 274837, + [SMALL_STATE(8362)] = 274847, + [SMALL_STATE(8363)] = 274857, + [SMALL_STATE(8364)] = 274867, + [SMALL_STATE(8365)] = 274877, + [SMALL_STATE(8366)] = 274885, + [SMALL_STATE(8367)] = 274895, + [SMALL_STATE(8368)] = 274905, + [SMALL_STATE(8369)] = 274915, + [SMALL_STATE(8370)] = 274925, + [SMALL_STATE(8371)] = 274935, + [SMALL_STATE(8372)] = 274945, + [SMALL_STATE(8373)] = 274955, + [SMALL_STATE(8374)] = 274965, + [SMALL_STATE(8375)] = 274975, + [SMALL_STATE(8376)] = 274985, + [SMALL_STATE(8377)] = 274995, + [SMALL_STATE(8378)] = 275005, + [SMALL_STATE(8379)] = 275015, + [SMALL_STATE(8380)] = 275025, + [SMALL_STATE(8381)] = 275035, + [SMALL_STATE(8382)] = 275045, + [SMALL_STATE(8383)] = 275055, + [SMALL_STATE(8384)] = 275065, + [SMALL_STATE(8385)] = 275075, + [SMALL_STATE(8386)] = 275085, + [SMALL_STATE(8387)] = 275095, + [SMALL_STATE(8388)] = 275105, + [SMALL_STATE(8389)] = 275115, + [SMALL_STATE(8390)] = 275125, + [SMALL_STATE(8391)] = 275135, + [SMALL_STATE(8392)] = 275145, + [SMALL_STATE(8393)] = 275155, + [SMALL_STATE(8394)] = 275165, + [SMALL_STATE(8395)] = 275175, + [SMALL_STATE(8396)] = 275185, + [SMALL_STATE(8397)] = 275195, + [SMALL_STATE(8398)] = 275205, + [SMALL_STATE(8399)] = 275215, + [SMALL_STATE(8400)] = 275225, + [SMALL_STATE(8401)] = 275235, + [SMALL_STATE(8402)] = 275245, + [SMALL_STATE(8403)] = 275255, + [SMALL_STATE(8404)] = 275265, + [SMALL_STATE(8405)] = 275275, + [SMALL_STATE(8406)] = 275285, + [SMALL_STATE(8407)] = 275295, + [SMALL_STATE(8408)] = 275303, + [SMALL_STATE(8409)] = 275313, + [SMALL_STATE(8410)] = 275323, + [SMALL_STATE(8411)] = 275330, + [SMALL_STATE(8412)] = 275337, + [SMALL_STATE(8413)] = 275344, + [SMALL_STATE(8414)] = 275351, + [SMALL_STATE(8415)] = 275358, + [SMALL_STATE(8416)] = 275365, + [SMALL_STATE(8417)] = 275372, + [SMALL_STATE(8418)] = 275379, + [SMALL_STATE(8419)] = 275386, + [SMALL_STATE(8420)] = 275393, + [SMALL_STATE(8421)] = 275400, + [SMALL_STATE(8422)] = 275407, + [SMALL_STATE(8423)] = 275414, + [SMALL_STATE(8424)] = 275421, + [SMALL_STATE(8425)] = 275428, + [SMALL_STATE(8426)] = 275435, + [SMALL_STATE(8427)] = 275442, + [SMALL_STATE(8428)] = 275449, + [SMALL_STATE(8429)] = 275456, + [SMALL_STATE(8430)] = 275463, + [SMALL_STATE(8431)] = 275470, + [SMALL_STATE(8432)] = 275477, + [SMALL_STATE(8433)] = 275484, + [SMALL_STATE(8434)] = 275491, + [SMALL_STATE(8435)] = 275498, + [SMALL_STATE(8436)] = 275505, + [SMALL_STATE(8437)] = 275512, + [SMALL_STATE(8438)] = 275519, + [SMALL_STATE(8439)] = 275526, + [SMALL_STATE(8440)] = 275533, + [SMALL_STATE(8441)] = 275540, + [SMALL_STATE(8442)] = 275547, + [SMALL_STATE(8443)] = 275554, + [SMALL_STATE(8444)] = 275561, + [SMALL_STATE(8445)] = 275568, + [SMALL_STATE(8446)] = 275575, + [SMALL_STATE(8447)] = 275582, + [SMALL_STATE(8448)] = 275589, + [SMALL_STATE(8449)] = 275596, + [SMALL_STATE(8450)] = 275603, + [SMALL_STATE(8451)] = 275610, + [SMALL_STATE(8452)] = 275617, + [SMALL_STATE(8453)] = 275624, + [SMALL_STATE(8454)] = 275631, + [SMALL_STATE(8455)] = 275638, + [SMALL_STATE(8456)] = 275645, + [SMALL_STATE(8457)] = 275652, + [SMALL_STATE(8458)] = 275659, + [SMALL_STATE(8459)] = 275666, + [SMALL_STATE(8460)] = 275673, + [SMALL_STATE(8461)] = 275680, + [SMALL_STATE(8462)] = 275687, + [SMALL_STATE(8463)] = 275694, + [SMALL_STATE(8464)] = 275701, + [SMALL_STATE(8465)] = 275708, + [SMALL_STATE(8466)] = 275715, + [SMALL_STATE(8467)] = 275722, + [SMALL_STATE(8468)] = 275729, + [SMALL_STATE(8469)] = 275736, + [SMALL_STATE(8470)] = 275743, + [SMALL_STATE(8471)] = 275750, + [SMALL_STATE(8472)] = 275757, + [SMALL_STATE(8473)] = 275764, + [SMALL_STATE(8474)] = 275771, + [SMALL_STATE(8475)] = 275778, + [SMALL_STATE(8476)] = 275785, + [SMALL_STATE(8477)] = 275792, + [SMALL_STATE(8478)] = 275799, + [SMALL_STATE(8479)] = 275806, + [SMALL_STATE(8480)] = 275813, + [SMALL_STATE(8481)] = 275820, + [SMALL_STATE(8482)] = 275827, + [SMALL_STATE(8483)] = 275834, + [SMALL_STATE(8484)] = 275841, + [SMALL_STATE(8485)] = 275848, + [SMALL_STATE(8486)] = 275855, + [SMALL_STATE(8487)] = 275862, + [SMALL_STATE(8488)] = 275869, + [SMALL_STATE(8489)] = 275876, + [SMALL_STATE(8490)] = 275883, + [SMALL_STATE(8491)] = 275890, + [SMALL_STATE(8492)] = 275897, + [SMALL_STATE(8493)] = 275904, + [SMALL_STATE(8494)] = 275911, + [SMALL_STATE(8495)] = 275918, + [SMALL_STATE(8496)] = 275925, + [SMALL_STATE(8497)] = 275932, + [SMALL_STATE(8498)] = 275939, + [SMALL_STATE(8499)] = 275946, + [SMALL_STATE(8500)] = 275953, + [SMALL_STATE(8501)] = 275960, + [SMALL_STATE(8502)] = 275967, + [SMALL_STATE(8503)] = 275974, + [SMALL_STATE(8504)] = 275981, + [SMALL_STATE(8505)] = 275988, + [SMALL_STATE(8506)] = 275995, + [SMALL_STATE(8507)] = 276002, + [SMALL_STATE(8508)] = 276009, + [SMALL_STATE(8509)] = 276016, + [SMALL_STATE(8510)] = 276023, + [SMALL_STATE(8511)] = 276030, + [SMALL_STATE(8512)] = 276037, + [SMALL_STATE(8513)] = 276044, + [SMALL_STATE(8514)] = 276051, + [SMALL_STATE(8515)] = 276058, + [SMALL_STATE(8516)] = 276065, + [SMALL_STATE(8517)] = 276072, + [SMALL_STATE(8518)] = 276079, + [SMALL_STATE(8519)] = 276086, + [SMALL_STATE(8520)] = 276093, + [SMALL_STATE(8521)] = 276100, + [SMALL_STATE(8522)] = 276107, + [SMALL_STATE(8523)] = 276114, + [SMALL_STATE(8524)] = 276121, + [SMALL_STATE(8525)] = 276128, + [SMALL_STATE(8526)] = 276135, + [SMALL_STATE(8527)] = 276142, + [SMALL_STATE(8528)] = 276149, + [SMALL_STATE(8529)] = 276156, + [SMALL_STATE(8530)] = 276163, + [SMALL_STATE(8531)] = 276170, + [SMALL_STATE(8532)] = 276177, + [SMALL_STATE(8533)] = 276184, + [SMALL_STATE(8534)] = 276191, + [SMALL_STATE(8535)] = 276198, + [SMALL_STATE(8536)] = 276205, + [SMALL_STATE(8537)] = 276212, + [SMALL_STATE(8538)] = 276219, + [SMALL_STATE(8539)] = 276226, + [SMALL_STATE(8540)] = 276233, + [SMALL_STATE(8541)] = 276240, + [SMALL_STATE(8542)] = 276247, + [SMALL_STATE(8543)] = 276254, + [SMALL_STATE(8544)] = 276261, + [SMALL_STATE(8545)] = 276268, + [SMALL_STATE(8546)] = 276275, + [SMALL_STATE(8547)] = 276282, + [SMALL_STATE(8548)] = 276289, + [SMALL_STATE(8549)] = 276296, + [SMALL_STATE(8550)] = 276303, + [SMALL_STATE(8551)] = 276310, + [SMALL_STATE(8552)] = 276317, + [SMALL_STATE(8553)] = 276324, + [SMALL_STATE(8554)] = 276331, + [SMALL_STATE(8555)] = 276338, + [SMALL_STATE(8556)] = 276345, + [SMALL_STATE(8557)] = 276352, + [SMALL_STATE(8558)] = 276359, + [SMALL_STATE(8559)] = 276366, + [SMALL_STATE(8560)] = 276373, + [SMALL_STATE(8561)] = 276380, + [SMALL_STATE(8562)] = 276387, + [SMALL_STATE(8563)] = 276394, + [SMALL_STATE(8564)] = 276401, + [SMALL_STATE(8565)] = 276408, + [SMALL_STATE(8566)] = 276415, + [SMALL_STATE(8567)] = 276422, + [SMALL_STATE(8568)] = 276429, + [SMALL_STATE(8569)] = 276436, + [SMALL_STATE(8570)] = 276443, + [SMALL_STATE(8571)] = 276450, + [SMALL_STATE(8572)] = 276457, + [SMALL_STATE(8573)] = 276464, + [SMALL_STATE(8574)] = 276471, + [SMALL_STATE(8575)] = 276478, + [SMALL_STATE(8576)] = 276485, + [SMALL_STATE(8577)] = 276492, + [SMALL_STATE(8578)] = 276499, + [SMALL_STATE(8579)] = 276506, + [SMALL_STATE(8580)] = 276513, + [SMALL_STATE(8581)] = 276520, + [SMALL_STATE(8582)] = 276527, + [SMALL_STATE(8583)] = 276534, + [SMALL_STATE(8584)] = 276541, + [SMALL_STATE(8585)] = 276548, + [SMALL_STATE(8586)] = 276555, + [SMALL_STATE(8587)] = 276562, + [SMALL_STATE(8588)] = 276569, + [SMALL_STATE(8589)] = 276576, + [SMALL_STATE(8590)] = 276583, + [SMALL_STATE(8591)] = 276590, + [SMALL_STATE(8592)] = 276597, + [SMALL_STATE(8593)] = 276604, + [SMALL_STATE(8594)] = 276611, + [SMALL_STATE(8595)] = 276618, + [SMALL_STATE(8596)] = 276625, + [SMALL_STATE(8597)] = 276632, + [SMALL_STATE(8598)] = 276639, + [SMALL_STATE(8599)] = 276646, + [SMALL_STATE(8600)] = 276653, + [SMALL_STATE(8601)] = 276660, + [SMALL_STATE(8602)] = 276667, + [SMALL_STATE(8603)] = 276674, + [SMALL_STATE(8604)] = 276681, + [SMALL_STATE(8605)] = 276688, + [SMALL_STATE(8606)] = 276695, + [SMALL_STATE(8607)] = 276702, + [SMALL_STATE(8608)] = 276709, + [SMALL_STATE(8609)] = 276716, + [SMALL_STATE(8610)] = 276723, + [SMALL_STATE(8611)] = 276730, + [SMALL_STATE(8612)] = 276737, + [SMALL_STATE(8613)] = 276744, + [SMALL_STATE(8614)] = 276751, + [SMALL_STATE(8615)] = 276758, + [SMALL_STATE(8616)] = 276765, + [SMALL_STATE(8617)] = 276772, + [SMALL_STATE(8618)] = 276779, + [SMALL_STATE(8619)] = 276786, + [SMALL_STATE(8620)] = 276793, + [SMALL_STATE(8621)] = 276800, + [SMALL_STATE(8622)] = 276807, + [SMALL_STATE(8623)] = 276814, + [SMALL_STATE(8624)] = 276821, + [SMALL_STATE(8625)] = 276828, + [SMALL_STATE(8626)] = 276835, + [SMALL_STATE(8627)] = 276842, + [SMALL_STATE(8628)] = 276849, + [SMALL_STATE(8629)] = 276856, + [SMALL_STATE(8630)] = 276863, + [SMALL_STATE(8631)] = 276870, + [SMALL_STATE(8632)] = 276877, + [SMALL_STATE(8633)] = 276884, + [SMALL_STATE(8634)] = 276891, + [SMALL_STATE(8635)] = 276898, + [SMALL_STATE(8636)] = 276905, + [SMALL_STATE(8637)] = 276912, + [SMALL_STATE(8638)] = 276919, + [SMALL_STATE(8639)] = 276926, + [SMALL_STATE(8640)] = 276933, + [SMALL_STATE(8641)] = 276940, + [SMALL_STATE(8642)] = 276947, + [SMALL_STATE(8643)] = 276954, + [SMALL_STATE(8644)] = 276961, + [SMALL_STATE(8645)] = 276968, + [SMALL_STATE(8646)] = 276975, + [SMALL_STATE(8647)] = 276982, + [SMALL_STATE(8648)] = 276989, + [SMALL_STATE(8649)] = 276996, + [SMALL_STATE(8650)] = 277003, + [SMALL_STATE(8651)] = 277010, + [SMALL_STATE(8652)] = 277017, + [SMALL_STATE(8653)] = 277024, + [SMALL_STATE(8654)] = 277031, + [SMALL_STATE(8655)] = 277038, + [SMALL_STATE(8656)] = 277045, + [SMALL_STATE(8657)] = 277052, + [SMALL_STATE(8658)] = 277059, + [SMALL_STATE(8659)] = 277066, + [SMALL_STATE(8660)] = 277073, + [SMALL_STATE(8661)] = 277080, + [SMALL_STATE(8662)] = 277087, + [SMALL_STATE(8663)] = 277094, + [SMALL_STATE(8664)] = 277101, + [SMALL_STATE(8665)] = 277108, + [SMALL_STATE(8666)] = 277115, + [SMALL_STATE(8667)] = 277122, + [SMALL_STATE(8668)] = 277129, + [SMALL_STATE(8669)] = 277136, + [SMALL_STATE(8670)] = 277143, + [SMALL_STATE(8671)] = 277150, + [SMALL_STATE(8672)] = 277157, + [SMALL_STATE(8673)] = 277164, + [SMALL_STATE(8674)] = 277171, + [SMALL_STATE(8675)] = 277178, + [SMALL_STATE(8676)] = 277185, + [SMALL_STATE(8677)] = 277192, + [SMALL_STATE(8678)] = 277199, + [SMALL_STATE(8679)] = 277206, + [SMALL_STATE(8680)] = 277213, + [SMALL_STATE(8681)] = 277220, + [SMALL_STATE(8682)] = 277227, + [SMALL_STATE(8683)] = 277234, + [SMALL_STATE(8684)] = 277241, + [SMALL_STATE(8685)] = 277248, + [SMALL_STATE(8686)] = 277255, + [SMALL_STATE(8687)] = 277262, + [SMALL_STATE(8688)] = 277269, + [SMALL_STATE(8689)] = 277276, + [SMALL_STATE(8690)] = 277283, + [SMALL_STATE(8691)] = 277290, + [SMALL_STATE(8692)] = 277297, + [SMALL_STATE(8693)] = 277304, + [SMALL_STATE(8694)] = 277311, + [SMALL_STATE(8695)] = 277318, + [SMALL_STATE(8696)] = 277325, + [SMALL_STATE(8697)] = 277332, + [SMALL_STATE(8698)] = 277339, + [SMALL_STATE(8699)] = 277346, + [SMALL_STATE(8700)] = 277353, + [SMALL_STATE(8701)] = 277360, + [SMALL_STATE(8702)] = 277367, + [SMALL_STATE(8703)] = 277374, + [SMALL_STATE(8704)] = 277381, + [SMALL_STATE(8705)] = 277388, + [SMALL_STATE(8706)] = 277395, + [SMALL_STATE(8707)] = 277402, + [SMALL_STATE(8708)] = 277409, + [SMALL_STATE(8709)] = 277416, + [SMALL_STATE(8710)] = 277423, + [SMALL_STATE(8711)] = 277430, + [SMALL_STATE(8712)] = 277437, + [SMALL_STATE(8713)] = 277444, + [SMALL_STATE(8714)] = 277451, + [SMALL_STATE(8715)] = 277458, + [SMALL_STATE(8716)] = 277465, + [SMALL_STATE(8717)] = 277472, + [SMALL_STATE(8718)] = 277479, + [SMALL_STATE(8719)] = 277486, + [SMALL_STATE(8720)] = 277493, + [SMALL_STATE(8721)] = 277500, + [SMALL_STATE(8722)] = 277507, + [SMALL_STATE(8723)] = 277514, + [SMALL_STATE(8724)] = 277521, + [SMALL_STATE(8725)] = 277528, + [SMALL_STATE(8726)] = 277535, + [SMALL_STATE(8727)] = 277542, + [SMALL_STATE(8728)] = 277549, + [SMALL_STATE(8729)] = 277556, + [SMALL_STATE(8730)] = 277563, + [SMALL_STATE(8731)] = 277570, + [SMALL_STATE(8732)] = 277577, + [SMALL_STATE(8733)] = 277584, + [SMALL_STATE(8734)] = 277591, + [SMALL_STATE(8735)] = 277598, + [SMALL_STATE(8736)] = 277605, + [SMALL_STATE(8737)] = 277612, + [SMALL_STATE(8738)] = 277619, + [SMALL_STATE(8739)] = 277626, + [SMALL_STATE(8740)] = 277633, + [SMALL_STATE(8741)] = 277640, + [SMALL_STATE(8742)] = 277647, + [SMALL_STATE(8743)] = 277654, + [SMALL_STATE(8744)] = 277661, + [SMALL_STATE(8745)] = 277668, + [SMALL_STATE(8746)] = 277675, + [SMALL_STATE(8747)] = 277682, + [SMALL_STATE(8748)] = 277689, + [SMALL_STATE(8749)] = 277696, + [SMALL_STATE(8750)] = 277703, + [SMALL_STATE(8751)] = 277710, + [SMALL_STATE(8752)] = 277717, + [SMALL_STATE(8753)] = 277724, + [SMALL_STATE(8754)] = 277731, + [SMALL_STATE(8755)] = 277738, + [SMALL_STATE(8756)] = 277745, + [SMALL_STATE(8757)] = 277752, + [SMALL_STATE(8758)] = 277759, + [SMALL_STATE(8759)] = 277766, + [SMALL_STATE(8760)] = 277773, + [SMALL_STATE(8761)] = 277780, + [SMALL_STATE(8762)] = 277787, + [SMALL_STATE(8763)] = 277794, + [SMALL_STATE(8764)] = 277801, + [SMALL_STATE(8765)] = 277808, + [SMALL_STATE(8766)] = 277815, + [SMALL_STATE(8767)] = 277822, + [SMALL_STATE(8768)] = 277829, + [SMALL_STATE(8769)] = 277836, + [SMALL_STATE(8770)] = 277843, + [SMALL_STATE(8771)] = 277850, + [SMALL_STATE(8772)] = 277857, + [SMALL_STATE(8773)] = 277864, + [SMALL_STATE(8774)] = 277871, + [SMALL_STATE(8775)] = 277878, + [SMALL_STATE(8776)] = 277885, + [SMALL_STATE(8777)] = 277892, + [SMALL_STATE(8778)] = 277899, + [SMALL_STATE(8779)] = 277906, + [SMALL_STATE(8780)] = 277913, + [SMALL_STATE(8781)] = 277920, + [SMALL_STATE(8782)] = 277927, + [SMALL_STATE(8783)] = 277934, + [SMALL_STATE(8784)] = 277941, + [SMALL_STATE(8785)] = 277948, + [SMALL_STATE(8786)] = 277955, + [SMALL_STATE(8787)] = 277962, + [SMALL_STATE(8788)] = 277969, + [SMALL_STATE(8789)] = 277976, + [SMALL_STATE(8790)] = 277983, + [SMALL_STATE(8791)] = 277990, + [SMALL_STATE(8792)] = 277997, + [SMALL_STATE(8793)] = 278004, + [SMALL_STATE(8794)] = 278011, + [SMALL_STATE(8795)] = 278018, + [SMALL_STATE(8796)] = 278025, + [SMALL_STATE(8797)] = 278032, + [SMALL_STATE(8798)] = 278039, + [SMALL_STATE(8799)] = 278046, + [SMALL_STATE(8800)] = 278053, + [SMALL_STATE(8801)] = 278060, + [SMALL_STATE(8802)] = 278067, + [SMALL_STATE(8803)] = 278074, + [SMALL_STATE(8804)] = 278081, + [SMALL_STATE(8805)] = 278088, + [SMALL_STATE(8806)] = 278095, + [SMALL_STATE(8807)] = 278102, + [SMALL_STATE(8808)] = 278109, + [SMALL_STATE(8809)] = 278116, + [SMALL_STATE(8810)] = 278123, + [SMALL_STATE(8811)] = 278130, + [SMALL_STATE(8812)] = 278137, + [SMALL_STATE(8813)] = 278144, + [SMALL_STATE(8814)] = 278151, + [SMALL_STATE(8815)] = 278158, + [SMALL_STATE(8816)] = 278165, + [SMALL_STATE(8817)] = 278172, + [SMALL_STATE(8818)] = 278179, + [SMALL_STATE(8819)] = 278186, + [SMALL_STATE(8820)] = 278193, + [SMALL_STATE(8821)] = 278200, + [SMALL_STATE(8822)] = 278207, + [SMALL_STATE(8823)] = 278214, + [SMALL_STATE(8824)] = 278221, + [SMALL_STATE(8825)] = 278228, + [SMALL_STATE(8826)] = 278235, + [SMALL_STATE(8827)] = 278242, + [SMALL_STATE(8828)] = 278249, + [SMALL_STATE(8829)] = 278256, + [SMALL_STATE(8830)] = 278263, + [SMALL_STATE(8831)] = 278270, + [SMALL_STATE(8832)] = 278277, + [SMALL_STATE(8833)] = 278284, + [SMALL_STATE(8834)] = 278291, + [SMALL_STATE(8835)] = 278298, + [SMALL_STATE(8836)] = 278305, + [SMALL_STATE(8837)] = 278312, + [SMALL_STATE(8838)] = 278319, + [SMALL_STATE(8839)] = 278326, + [SMALL_STATE(8840)] = 278333, + [SMALL_STATE(8841)] = 278340, + [SMALL_STATE(8842)] = 278347, + [SMALL_STATE(8843)] = 278354, + [SMALL_STATE(8844)] = 278361, + [SMALL_STATE(8845)] = 278368, + [SMALL_STATE(8846)] = 278375, + [SMALL_STATE(8847)] = 278382, + [SMALL_STATE(8848)] = 278389, + [SMALL_STATE(8849)] = 278396, + [SMALL_STATE(8850)] = 278403, + [SMALL_STATE(8851)] = 278410, + [SMALL_STATE(8852)] = 278417, + [SMALL_STATE(8853)] = 278424, + [SMALL_STATE(8854)] = 278431, + [SMALL_STATE(8855)] = 278438, + [SMALL_STATE(8856)] = 278445, + [SMALL_STATE(8857)] = 278452, + [SMALL_STATE(8858)] = 278459, + [SMALL_STATE(8859)] = 278466, + [SMALL_STATE(8860)] = 278473, + [SMALL_STATE(8861)] = 278480, + [SMALL_STATE(8862)] = 278487, + [SMALL_STATE(8863)] = 278494, + [SMALL_STATE(8864)] = 278501, + [SMALL_STATE(8865)] = 278508, + [SMALL_STATE(8866)] = 278515, + [SMALL_STATE(8867)] = 278522, + [SMALL_STATE(8868)] = 278529, + [SMALL_STATE(8869)] = 278536, + [SMALL_STATE(8870)] = 278543, + [SMALL_STATE(8871)] = 278550, + [SMALL_STATE(8872)] = 278557, + [SMALL_STATE(8873)] = 278564, + [SMALL_STATE(8874)] = 278571, + [SMALL_STATE(8875)] = 278578, + [SMALL_STATE(8876)] = 278585, + [SMALL_STATE(8877)] = 278592, + [SMALL_STATE(8878)] = 278599, + [SMALL_STATE(8879)] = 278606, + [SMALL_STATE(8880)] = 278613, + [SMALL_STATE(8881)] = 278620, + [SMALL_STATE(8882)] = 278627, + [SMALL_STATE(8883)] = 278634, + [SMALL_STATE(8884)] = 278641, + [SMALL_STATE(8885)] = 278648, + [SMALL_STATE(8886)] = 278655, + [SMALL_STATE(8887)] = 278662, + [SMALL_STATE(8888)] = 278669, + [SMALL_STATE(8889)] = 278676, + [SMALL_STATE(8890)] = 278683, + [SMALL_STATE(8891)] = 278690, + [SMALL_STATE(8892)] = 278697, + [SMALL_STATE(8893)] = 278704, + [SMALL_STATE(8894)] = 278711, + [SMALL_STATE(8895)] = 278718, + [SMALL_STATE(8896)] = 278725, + [SMALL_STATE(8897)] = 278732, + [SMALL_STATE(8898)] = 278739, + [SMALL_STATE(8899)] = 278746, + [SMALL_STATE(8900)] = 278753, + [SMALL_STATE(8901)] = 278760, + [SMALL_STATE(8902)] = 278767, + [SMALL_STATE(8903)] = 278774, + [SMALL_STATE(8904)] = 278781, + [SMALL_STATE(8905)] = 278788, + [SMALL_STATE(8906)] = 278795, + [SMALL_STATE(8907)] = 278802, + [SMALL_STATE(8908)] = 278809, + [SMALL_STATE(8909)] = 278816, + [SMALL_STATE(8910)] = 278823, + [SMALL_STATE(8911)] = 278830, + [SMALL_STATE(8912)] = 278837, + [SMALL_STATE(8913)] = 278844, + [SMALL_STATE(8914)] = 278851, + [SMALL_STATE(8915)] = 278858, + [SMALL_STATE(8916)] = 278865, + [SMALL_STATE(8917)] = 278872, + [SMALL_STATE(8918)] = 278879, + [SMALL_STATE(8919)] = 278886, + [SMALL_STATE(8920)] = 278893, + [SMALL_STATE(8921)] = 278900, + [SMALL_STATE(8922)] = 278907, + [SMALL_STATE(8923)] = 278914, + [SMALL_STATE(8924)] = 278921, + [SMALL_STATE(8925)] = 278928, + [SMALL_STATE(8926)] = 278935, + [SMALL_STATE(8927)] = 278942, + [SMALL_STATE(8928)] = 278949, + [SMALL_STATE(8929)] = 278956, + [SMALL_STATE(8930)] = 278963, + [SMALL_STATE(8931)] = 278970, + [SMALL_STATE(8932)] = 278977, + [SMALL_STATE(8933)] = 278984, + [SMALL_STATE(8934)] = 278991, + [SMALL_STATE(8935)] = 278998, + [SMALL_STATE(8936)] = 279005, + [SMALL_STATE(8937)] = 279012, + [SMALL_STATE(8938)] = 279019, + [SMALL_STATE(8939)] = 279026, + [SMALL_STATE(8940)] = 279033, + [SMALL_STATE(8941)] = 279040, + [SMALL_STATE(8942)] = 279047, + [SMALL_STATE(8943)] = 279054, + [SMALL_STATE(8944)] = 279061, + [SMALL_STATE(8945)] = 279068, + [SMALL_STATE(8946)] = 279075, + [SMALL_STATE(8947)] = 279082, + [SMALL_STATE(8948)] = 279089, + [SMALL_STATE(8949)] = 279096, + [SMALL_STATE(8950)] = 279103, + [SMALL_STATE(8951)] = 279110, + [SMALL_STATE(8952)] = 279117, + [SMALL_STATE(8953)] = 279124, + [SMALL_STATE(8954)] = 279131, + [SMALL_STATE(8955)] = 279138, + [SMALL_STATE(8956)] = 279145, + [SMALL_STATE(8957)] = 279152, + [SMALL_STATE(8958)] = 279159, + [SMALL_STATE(8959)] = 279166, + [SMALL_STATE(8960)] = 279173, + [SMALL_STATE(8961)] = 279180, + [SMALL_STATE(8962)] = 279187, + [SMALL_STATE(8963)] = 279194, + [SMALL_STATE(8964)] = 279201, + [SMALL_STATE(8965)] = 279208, + [SMALL_STATE(8966)] = 279215, + [SMALL_STATE(8967)] = 279222, + [SMALL_STATE(8968)] = 279229, + [SMALL_STATE(8969)] = 279236, + [SMALL_STATE(8970)] = 279243, + [SMALL_STATE(8971)] = 279250, + [SMALL_STATE(8972)] = 279257, + [SMALL_STATE(8973)] = 279264, + [SMALL_STATE(8974)] = 279271, + [SMALL_STATE(8975)] = 279278, + [SMALL_STATE(8976)] = 279285, + [SMALL_STATE(8977)] = 279292, + [SMALL_STATE(8978)] = 279299, + [SMALL_STATE(8979)] = 279306, + [SMALL_STATE(8980)] = 279313, + [SMALL_STATE(8981)] = 279320, + [SMALL_STATE(8982)] = 279327, + [SMALL_STATE(8983)] = 279334, + [SMALL_STATE(8984)] = 279341, + [SMALL_STATE(8985)] = 279348, + [SMALL_STATE(8986)] = 279355, + [SMALL_STATE(8987)] = 279362, + [SMALL_STATE(8988)] = 279369, + [SMALL_STATE(8989)] = 279376, + [SMALL_STATE(8990)] = 279383, + [SMALL_STATE(8991)] = 279390, + [SMALL_STATE(8992)] = 279397, + [SMALL_STATE(8993)] = 279404, + [SMALL_STATE(8994)] = 279411, + [SMALL_STATE(8995)] = 279418, + [SMALL_STATE(8996)] = 279425, + [SMALL_STATE(8997)] = 279432, + [SMALL_STATE(8998)] = 279439, + [SMALL_STATE(8999)] = 279446, + [SMALL_STATE(9000)] = 279453, + [SMALL_STATE(9001)] = 279460, + [SMALL_STATE(9002)] = 279467, + [SMALL_STATE(9003)] = 279474, + [SMALL_STATE(9004)] = 279481, + [SMALL_STATE(9005)] = 279488, + [SMALL_STATE(9006)] = 279495, + [SMALL_STATE(9007)] = 279502, + [SMALL_STATE(9008)] = 279509, + [SMALL_STATE(9009)] = 279516, + [SMALL_STATE(9010)] = 279523, + [SMALL_STATE(9011)] = 279530, + [SMALL_STATE(9012)] = 279537, + [SMALL_STATE(9013)] = 279544, + [SMALL_STATE(9014)] = 279551, + [SMALL_STATE(9015)] = 279558, + [SMALL_STATE(9016)] = 279565, + [SMALL_STATE(9017)] = 279572, + [SMALL_STATE(9018)] = 279579, + [SMALL_STATE(9019)] = 279586, + [SMALL_STATE(9020)] = 279593, + [SMALL_STATE(9021)] = 279600, + [SMALL_STATE(9022)] = 279607, + [SMALL_STATE(9023)] = 279614, + [SMALL_STATE(9024)] = 279621, + [SMALL_STATE(9025)] = 279628, + [SMALL_STATE(9026)] = 279635, + [SMALL_STATE(9027)] = 279642, + [SMALL_STATE(9028)] = 279649, + [SMALL_STATE(9029)] = 279656, + [SMALL_STATE(9030)] = 279663, + [SMALL_STATE(9031)] = 279670, + [SMALL_STATE(9032)] = 279677, + [SMALL_STATE(9033)] = 279684, + [SMALL_STATE(9034)] = 279691, + [SMALL_STATE(9035)] = 279698, + [SMALL_STATE(9036)] = 279705, + [SMALL_STATE(9037)] = 279712, + [SMALL_STATE(9038)] = 279719, + [SMALL_STATE(9039)] = 279726, + [SMALL_STATE(9040)] = 279733, + [SMALL_STATE(9041)] = 279740, + [SMALL_STATE(9042)] = 279747, + [SMALL_STATE(9043)] = 279754, + [SMALL_STATE(9044)] = 279761, + [SMALL_STATE(9045)] = 279768, + [SMALL_STATE(9046)] = 279775, + [SMALL_STATE(9047)] = 279782, + [SMALL_STATE(9048)] = 279789, + [SMALL_STATE(9049)] = 279796, + [SMALL_STATE(9050)] = 279803, + [SMALL_STATE(9051)] = 279810, + [SMALL_STATE(9052)] = 279817, + [SMALL_STATE(9053)] = 279824, + [SMALL_STATE(9054)] = 279831, + [SMALL_STATE(9055)] = 279838, + [SMALL_STATE(9056)] = 279845, + [SMALL_STATE(9057)] = 279852, + [SMALL_STATE(9058)] = 279859, + [SMALL_STATE(9059)] = 279866, + [SMALL_STATE(9060)] = 279873, + [SMALL_STATE(9061)] = 279880, + [SMALL_STATE(9062)] = 279887, + [SMALL_STATE(9063)] = 279894, + [SMALL_STATE(9064)] = 279901, + [SMALL_STATE(9065)] = 279908, + [SMALL_STATE(9066)] = 279915, + [SMALL_STATE(9067)] = 279922, + [SMALL_STATE(9068)] = 279929, + [SMALL_STATE(9069)] = 279936, + [SMALL_STATE(9070)] = 279943, + [SMALL_STATE(9071)] = 279950, + [SMALL_STATE(9072)] = 279957, + [SMALL_STATE(9073)] = 279964, + [SMALL_STATE(9074)] = 279971, + [SMALL_STATE(9075)] = 279978, + [SMALL_STATE(9076)] = 279985, + [SMALL_STATE(9077)] = 279992, + [SMALL_STATE(9078)] = 279999, + [SMALL_STATE(9079)] = 280006, + [SMALL_STATE(9080)] = 280013, + [SMALL_STATE(9081)] = 280020, + [SMALL_STATE(9082)] = 280027, + [SMALL_STATE(9083)] = 280034, + [SMALL_STATE(9084)] = 280041, + [SMALL_STATE(9085)] = 280048, + [SMALL_STATE(9086)] = 280055, + [SMALL_STATE(9087)] = 280062, + [SMALL_STATE(9088)] = 280069, + [SMALL_STATE(9089)] = 280076, + [SMALL_STATE(9090)] = 280083, + [SMALL_STATE(9091)] = 280090, + [SMALL_STATE(9092)] = 280097, + [SMALL_STATE(9093)] = 280104, + [SMALL_STATE(9094)] = 280111, + [SMALL_STATE(9095)] = 280118, + [SMALL_STATE(9096)] = 280125, + [SMALL_STATE(9097)] = 280132, + [SMALL_STATE(9098)] = 280139, + [SMALL_STATE(9099)] = 280146, + [SMALL_STATE(9100)] = 280153, + [SMALL_STATE(9101)] = 280160, + [SMALL_STATE(9102)] = 280167, + [SMALL_STATE(9103)] = 280174, + [SMALL_STATE(9104)] = 280181, + [SMALL_STATE(9105)] = 280188, + [SMALL_STATE(9106)] = 280195, + [SMALL_STATE(9107)] = 280202, + [SMALL_STATE(9108)] = 280209, + [SMALL_STATE(9109)] = 280216, + [SMALL_STATE(9110)] = 280223, + [SMALL_STATE(9111)] = 280230, + [SMALL_STATE(9112)] = 280237, + [SMALL_STATE(9113)] = 280244, + [SMALL_STATE(9114)] = 280251, + [SMALL_STATE(9115)] = 280258, + [SMALL_STATE(9116)] = 280265, + [SMALL_STATE(9117)] = 280272, + [SMALL_STATE(9118)] = 280279, + [SMALL_STATE(9119)] = 280286, + [SMALL_STATE(9120)] = 280293, + [SMALL_STATE(9121)] = 280300, + [SMALL_STATE(9122)] = 280307, + [SMALL_STATE(9123)] = 280314, + [SMALL_STATE(9124)] = 280321, + [SMALL_STATE(9125)] = 280328, + [SMALL_STATE(9126)] = 280335, + [SMALL_STATE(9127)] = 280342, + [SMALL_STATE(9128)] = 280349, + [SMALL_STATE(9129)] = 280356, + [SMALL_STATE(9130)] = 280363, + [SMALL_STATE(9131)] = 280370, + [SMALL_STATE(9132)] = 280377, + [SMALL_STATE(9133)] = 280384, + [SMALL_STATE(9134)] = 280391, + [SMALL_STATE(9135)] = 280398, + [SMALL_STATE(9136)] = 280405, + [SMALL_STATE(9137)] = 280412, + [SMALL_STATE(9138)] = 280419, + [SMALL_STATE(9139)] = 280426, + [SMALL_STATE(9140)] = 280433, + [SMALL_STATE(9141)] = 280440, + [SMALL_STATE(9142)] = 280447, + [SMALL_STATE(9143)] = 280454, + [SMALL_STATE(9144)] = 280461, + [SMALL_STATE(9145)] = 280468, + [SMALL_STATE(9146)] = 280475, + [SMALL_STATE(9147)] = 280482, + [SMALL_STATE(9148)] = 280489, + [SMALL_STATE(9149)] = 280496, + [SMALL_STATE(9150)] = 280503, + [SMALL_STATE(9151)] = 280510, + [SMALL_STATE(9152)] = 280517, + [SMALL_STATE(9153)] = 280524, + [SMALL_STATE(9154)] = 280531, + [SMALL_STATE(9155)] = 280538, + [SMALL_STATE(9156)] = 280545, + [SMALL_STATE(9157)] = 280552, + [SMALL_STATE(9158)] = 280559, + [SMALL_STATE(9159)] = 280566, + [SMALL_STATE(9160)] = 280573, + [SMALL_STATE(9161)] = 280580, + [SMALL_STATE(9162)] = 280587, + [SMALL_STATE(9163)] = 280594, + [SMALL_STATE(9164)] = 280601, + [SMALL_STATE(9165)] = 280608, + [SMALL_STATE(9166)] = 280615, + [SMALL_STATE(9167)] = 280622, + [SMALL_STATE(9168)] = 280629, + [SMALL_STATE(9169)] = 280636, + [SMALL_STATE(9170)] = 280643, + [SMALL_STATE(9171)] = 280650, + [SMALL_STATE(9172)] = 280657, + [SMALL_STATE(9173)] = 280664, + [SMALL_STATE(9174)] = 280671, + [SMALL_STATE(9175)] = 280678, + [SMALL_STATE(9176)] = 280685, + [SMALL_STATE(9177)] = 280692, + [SMALL_STATE(9178)] = 280699, + [SMALL_STATE(9179)] = 280706, + [SMALL_STATE(9180)] = 280713, + [SMALL_STATE(9181)] = 280720, + [SMALL_STATE(9182)] = 280727, + [SMALL_STATE(9183)] = 280734, + [SMALL_STATE(9184)] = 280741, + [SMALL_STATE(9185)] = 280748, + [SMALL_STATE(9186)] = 280755, + [SMALL_STATE(9187)] = 280762, + [SMALL_STATE(9188)] = 280769, + [SMALL_STATE(9189)] = 280776, + [SMALL_STATE(9190)] = 280783, + [SMALL_STATE(9191)] = 280790, + [SMALL_STATE(9192)] = 280797, + [SMALL_STATE(9193)] = 280804, + [SMALL_STATE(9194)] = 280811, + [SMALL_STATE(9195)] = 280818, + [SMALL_STATE(9196)] = 280825, + [SMALL_STATE(9197)] = 280832, + [SMALL_STATE(9198)] = 280839, + [SMALL_STATE(9199)] = 280846, + [SMALL_STATE(9200)] = 280853, + [SMALL_STATE(9201)] = 280860, + [SMALL_STATE(9202)] = 280867, + [SMALL_STATE(9203)] = 280874, + [SMALL_STATE(9204)] = 280881, + [SMALL_STATE(9205)] = 280888, + [SMALL_STATE(9206)] = 280895, + [SMALL_STATE(9207)] = 280902, + [SMALL_STATE(9208)] = 280909, + [SMALL_STATE(9209)] = 280916, + [SMALL_STATE(9210)] = 280923, + [SMALL_STATE(9211)] = 280930, + [SMALL_STATE(9212)] = 280937, + [SMALL_STATE(9213)] = 280944, + [SMALL_STATE(9214)] = 280951, + [SMALL_STATE(9215)] = 280958, + [SMALL_STATE(9216)] = 280965, + [SMALL_STATE(9217)] = 280972, + [SMALL_STATE(9218)] = 280979, + [SMALL_STATE(9219)] = 280986, + [SMALL_STATE(9220)] = 280993, + [SMALL_STATE(9221)] = 281000, + [SMALL_STATE(9222)] = 281007, + [SMALL_STATE(9223)] = 281014, + [SMALL_STATE(9224)] = 281021, + [SMALL_STATE(9225)] = 281028, + [SMALL_STATE(9226)] = 281035, + [SMALL_STATE(9227)] = 281042, + [SMALL_STATE(9228)] = 281049, + [SMALL_STATE(9229)] = 281056, + [SMALL_STATE(9230)] = 281063, + [SMALL_STATE(9231)] = 281070, + [SMALL_STATE(9232)] = 281077, + [SMALL_STATE(9233)] = 281084, + [SMALL_STATE(9234)] = 281091, + [SMALL_STATE(9235)] = 281098, + [SMALL_STATE(9236)] = 281105, + [SMALL_STATE(9237)] = 281112, + [SMALL_STATE(9238)] = 281119, + [SMALL_STATE(9239)] = 281126, + [SMALL_STATE(9240)] = 281133, + [SMALL_STATE(9241)] = 281140, + [SMALL_STATE(9242)] = 281147, + [SMALL_STATE(9243)] = 281154, + [SMALL_STATE(9244)] = 281161, + [SMALL_STATE(9245)] = 281168, + [SMALL_STATE(9246)] = 281175, + [SMALL_STATE(9247)] = 281182, + [SMALL_STATE(9248)] = 281189, + [SMALL_STATE(9249)] = 281196, + [SMALL_STATE(9250)] = 281203, + [SMALL_STATE(9251)] = 281210, + [SMALL_STATE(9252)] = 281217, + [SMALL_STATE(9253)] = 281224, + [SMALL_STATE(9254)] = 281231, + [SMALL_STATE(9255)] = 281238, + [SMALL_STATE(9256)] = 281245, + [SMALL_STATE(9257)] = 281252, + [SMALL_STATE(9258)] = 281259, + [SMALL_STATE(9259)] = 281266, + [SMALL_STATE(9260)] = 281273, + [SMALL_STATE(9261)] = 281280, + [SMALL_STATE(9262)] = 281287, + [SMALL_STATE(9263)] = 281294, + [SMALL_STATE(9264)] = 281301, + [SMALL_STATE(9265)] = 281308, + [SMALL_STATE(9266)] = 281315, + [SMALL_STATE(9267)] = 281322, + [SMALL_STATE(9268)] = 281329, + [SMALL_STATE(9269)] = 281336, + [SMALL_STATE(9270)] = 281343, + [SMALL_STATE(9271)] = 281350, + [SMALL_STATE(9272)] = 281357, + [SMALL_STATE(9273)] = 281364, + [SMALL_STATE(9274)] = 281371, + [SMALL_STATE(9275)] = 281378, + [SMALL_STATE(9276)] = 281385, + [SMALL_STATE(9277)] = 281392, + [SMALL_STATE(9278)] = 281399, + [SMALL_STATE(9279)] = 281406, + [SMALL_STATE(9280)] = 281413, + [SMALL_STATE(9281)] = 281420, + [SMALL_STATE(9282)] = 281427, + [SMALL_STATE(9283)] = 281434, + [SMALL_STATE(9284)] = 281441, + [SMALL_STATE(9285)] = 281448, + [SMALL_STATE(9286)] = 281455, + [SMALL_STATE(9287)] = 281462, + [SMALL_STATE(9288)] = 281469, + [SMALL_STATE(9289)] = 281476, + [SMALL_STATE(9290)] = 281483, + [SMALL_STATE(9291)] = 281490, + [SMALL_STATE(9292)] = 281497, + [SMALL_STATE(9293)] = 281504, + [SMALL_STATE(9294)] = 281511, + [SMALL_STATE(9295)] = 281518, + [SMALL_STATE(9296)] = 281525, + [SMALL_STATE(9297)] = 281532, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 60), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 60), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(800), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3756), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5004), - [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3313), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5001), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4639), - [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(824), - [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1937), - [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1883), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1937), - [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1256), - [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3144), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1488), - [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(140), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2534), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1251), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5193), - [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3914), - [421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4580), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5160), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4602), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1480), - [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(30), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1571), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1308), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1228), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1300), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1474), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3566), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1704), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1721), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3440), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4390), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4827), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1836), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5223), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4535), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(868), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5244), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1550), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5224), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5225), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4839), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1918), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1708), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2646), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4665), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4059), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2677), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5019), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1299), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1499), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1358), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2980), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(785), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(767), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1859), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1762), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4156), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3855), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5234), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1763), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1840), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4834), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1882), - [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2726), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5119), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4956), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1230), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2261), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(793), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3770), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5222), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3355), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5221), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4741), - [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(328), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2524), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1261), - [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(66), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4276), - [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4545), - [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1905), - [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4946), - [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4744), - [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(873), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5213), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1549), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4942), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4941), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5219), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(787), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1755), - [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4153), - [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3829), - [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5214), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1756), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1921), - [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4552), - [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4998), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(799), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3722), - [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4887), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3373), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4843), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4718), - [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(475), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2545), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1246), - [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(60), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4341), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4781), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1867), - [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4939), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4749), - [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(858), - [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5253), - [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1554), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4934), - [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4906), - [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4891), - [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(786), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1740), - [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4181), - [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3867), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5254), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1731), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1877), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4776), - [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(44), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5156), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(809), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3757), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5252), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3327), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5237), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4517), - [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(494), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2541), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1248), - [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(34), - [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4202), - [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4621), - [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1862), - [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5115), - [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4627), - [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1024), - [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5101), - [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1552), - [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5100), - [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5099), - [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5080), - [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(784), - [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1723), - [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4124), - [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3821), - [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5003), - [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1719), - [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1886), - [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4710), - [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(49), - [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4989), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 11), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 11), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(808), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1250), - [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1937), - [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1937), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1833), - [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1833), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(140), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2534), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1308), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5193), - [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3914), - [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4544), - [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5160), - [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), - [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1568), - [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1228), - [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1300), - [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1474), - [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3566), - [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1704), - [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1721), - [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3440), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4390), - [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4827), - [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4535), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(868), - [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5244), - [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1550), - [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5224), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5225), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4839), - [1134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1918), - [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1708), - [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2646), - [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4665), - [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4059), - [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2677), - [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5019), - [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1299), - [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1358), - [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2980), - [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4760), - [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1859), - [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1762), - [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1763), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1840), - [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4834), - [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1882), - [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2726), - [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4956), - [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1230), - [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2261), - [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 11), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 11), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(802), - [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(475), - [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2545), - [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(60), - [1227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4341), - [1230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4781), - [1233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4749), - [1236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(858), - [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5253), - [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1554), - [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4934), - [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4906), - [1251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4891), - [1254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1740), - [1257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1731), - [1260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1877), - [1263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4776), - [1266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(801), - [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(328), - [1272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2524), - [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(66), - [1278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4276), - [1281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4545), - [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4744), - [1287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(873), - [1290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5213), - [1293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1549), - [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4942), - [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4941), - [1302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5219), - [1305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1755), - [1308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1756), - [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1921), - [1314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4552), - [1317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(806), - [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(494), - [1323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2541), - [1326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(34), - [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4202), - [1332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4621), - [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4627), - [1338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1024), - [1341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5101), - [1344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1552), - [1347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5100), - [1350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5099), - [1353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5080), - [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1723), - [1359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1719), - [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1886), - [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4710), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), - [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(810), - [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(704), - [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2547), - [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(63), - [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4213), - [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4763), - [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4634), - [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(996), - [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5257), - [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1553), - [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5091), - [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5090), - [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4927), - [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1724), - [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1722), - [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1895), - [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4758), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(4797), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 9), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 9), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), - [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(4622), - [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(4775), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, .production_id = 119), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, .production_id = 119), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), - [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(4766), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 8, .production_id = 151), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 8, .production_id = 151), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 143), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 143), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 144), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 144), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 145), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 145), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 149), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 149), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 150), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 150), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 98), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 98), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 110), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 110), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 66), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 66), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 129), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 129), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 135), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 135), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 47), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 47), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 84), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 84), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 142), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 142), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 141), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 141), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 39), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 39), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 77), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 77), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 154), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 154), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 153), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 153), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 152), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 152), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 136), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 136), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 38), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 38), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 134), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 134), - [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 39), - [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 39), - [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 49), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 49), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 111), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 111), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 40), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 40), - [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 42), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 42), - [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3), - [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3), - [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 18), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 18), - [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, .production_id = 44), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, .production_id = 44), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 52), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 52), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, .production_id = 6), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, .production_id = 6), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 36), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 36), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 50), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 50), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, .production_id = 45), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, .production_id = 45), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 57), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 57), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 6), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 6), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 18), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 18), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 6), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 6), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 32), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 32), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 57), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 57), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 58), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 58), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 59), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 59), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 60), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 60), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 29), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 29), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 10), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 10), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 10), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 10), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 28), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 28), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 6), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 6), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 61), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 61), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 10), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 10), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 146), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 146), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alone_macro_call, 6), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alone_macro_call, 6), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 128), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 128), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 127), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 127), - [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alone_macro_call, 5), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alone_macro_call, 5), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 118), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 118), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, .production_id = 117), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, .production_id = 117), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 17), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 17), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 18), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 18), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 18), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 18), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 17), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 17), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 96), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 96), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 60), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 60), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 95), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 95), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 94), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 94), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 6), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 6), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 93), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 93), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 91), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 91), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 86), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 86), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 9), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 9), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alone_macro_call, 4), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alone_macro_call, 4), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 60), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 60), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1482), - [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4925), - [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3358), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5145), - [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4629), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3147), - [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5139), - [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2224), - [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3144), - [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3144), - [2035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2535), - [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1308), - [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5193), - [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3463), - [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4708), - [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5160), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4602), - [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5148), - [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1228), - [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1465), - [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1410), - [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3595), - [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1657), - [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1735), - [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3437), - [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5155), - [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1299), - [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1499), - [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4864), - [2092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2983), - [2095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4009), - [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(767), - [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(812), - [2104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3844), - [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5053), - [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(862), - [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1230), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4961), - [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3323), - [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4931), - [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4688), - [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2526), - [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5088), - [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4164), - [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(796), - [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3785), - [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5260), - [2214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1098), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4845), - [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3333), - [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4979), - [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4502), - [2237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2533), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4978), - [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4182), - [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(805), - [2251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3799), - [2254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5245), - [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1081), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), - [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(4742), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5025), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2401] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [2412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [2415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1235), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, .production_id = 1), - [2425] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 26), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 25), - [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 25), REDUCE(sym_qualified_type_identifier, 2, .production_id = 26), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 26), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 25), - [2470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 25), REDUCE(sym_qualified_type_identifier, 2, .production_id = 26), - [2473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 25), SHIFT(1237), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 13), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, .production_id = 14), - [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 13), REDUCE(sym_template_function, 2, .production_id = 14), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 13), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, .production_id = 14), - [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 13), REDUCE(sym_template_function, 2, .production_id = 14), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 138), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 138), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5031), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 96), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 96), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 60), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 60), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 95), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 95), - [2636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2170), - [2639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1250), - [2642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1937), - [2645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1937), - [2648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1833), - [2651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(140), - [2654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3914), - [2657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4544), - [2660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(30), - [2663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1568), - [2666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4668), - [2669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4390), - [2672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4827), - [2675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1836), - [2678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5223), - [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4535), - [2684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(868), - [2687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5244), - [2690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1550), - [2693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5224), - [2696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5225), - [2699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4839), - [2702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1918), - [2705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1708), - [2708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2646), - [2711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4665), - [2714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4059), - [2717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2677), - [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4760), - [2723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1859), - [2726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1762), - [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1763), - [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1840), - [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4834), - [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1882), - [2741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2726), - [2744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4956), - [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2261), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_statement, 1), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_statement, 1), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [2756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2162), - [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(328), - [2762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(66), - [2765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4276), - [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4545), - [2771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1905), - [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4946), - [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4744), - [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(873), - [2783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5213), - [2786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1549), - [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4942), - [2792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4941), - [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5219), - [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1755), - [2801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1756), - [2804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1921), - [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4552), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 84), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 84), - [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2125), - [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(704), - [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(63), - [2825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4213), - [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4763), - [2831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1767), - [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5014), - [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4634), - [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(996), - [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5257), - [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1553), - [2849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5091), - [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5090), - [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4927), - [2858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1724), - [2861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1722), - [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1895), - [2867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4758), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 84), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 84), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 140), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 140), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 131), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 131), - [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 49), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 49), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 2), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 2), - [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 43), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 43), - [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 116), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 116), - [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4), - [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 10), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 10), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 61), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 61), - [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 60), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 60), - [2918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2130), - [2921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4455), - [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(39), - [2927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4348), - [2930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4709), - [2933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4696), - [2936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(871), - [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5233), - [2942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1551), - [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5031), - [2948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5034), - [2951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4997), - [2954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1745), - [2957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1748), - [2960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1774), - [2963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4716), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 128), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 128), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 148), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 148), - [2974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2140), - [2977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(475), - [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(60), - [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4341), - [2986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4781), - [2989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1867), - [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4939), - [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4749), - [2998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(858), - [3001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5253), - [3004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1554), - [3007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4934), - [3010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4906), - [3013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4891), - [3016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1740), - [3019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1731), - [3022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1877), - [3025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4776), - [3028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2215), - [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(494), - [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(34), - [3037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4202), - [3040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4621), - [3043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1862), - [3046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5115), - [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4627), - [3052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1024), - [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5101), - [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1552), - [3061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5100), - [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5099), - [3067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5080), - [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1723), - [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1719), - [3076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1886), - [3079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4710), - [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 10), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 10), - [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3), - [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 49), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 49), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 50), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 50), - [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 49), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 49), - [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 43), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 43), - [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 104), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 104), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 33), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 33), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [3158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_annotation, 1), - [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_annotation, 1), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3), - [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4), - [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4), - [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2), - [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [3326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1268), - [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [3333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1308), - [3336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5193), - [3339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4708), - [3342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5160), - [3345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1228), - [3348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1299), - [3351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1230), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, .production_id = 1), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 71), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 71), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 15), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 15), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 15), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 15), - [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [3380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1466), - [3383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4985), - [3386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4826), - [3389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4987), - [3392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1470), - [3395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1469), - [3398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1382), - [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 25), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 25), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [3411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), - [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), - [3418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, .production_id = 10), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, .production_id = 10), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [3433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1289), - [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 35), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 35), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, .production_id = 35), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, .production_id = 35), - [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 37), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 37), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_function_specifier, 1), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_function_specifier, 1), - [3460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1331), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 10), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 10), - [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1), - [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2), - [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 10), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 10), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 70), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 70), - [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 35), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 35), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 72), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 72), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 76), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 76), - [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 75), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 75), - [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 36), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 36), - [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 76), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 76), - [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), - [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, .production_id = 36), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, .production_id = 36), - [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), - [3531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(1466), - [3534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4985), - [3537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4826), - [3540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4987), - [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(1470), - [3546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(1469), - [3549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(1499), - [3552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(1382), - [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 103), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 103), - [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, .production_id = 34), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, .production_id = 34), - [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 69), - [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 69), - [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 69), - [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 69), - [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, .production_id = 9), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, .production_id = 9), - [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 6, .production_id = 132), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 6, .production_id = 132), - [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 34), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 34), - [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), - [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), - [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 132), - [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 132), - [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 105), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 105), - [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 106), - [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 106), - [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 6, .production_id = 132), - [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 6, .production_id = 132), - [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 27), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 27), - [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 107), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 107), - [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 105), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 105), - [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 106), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 106), - [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 107), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 107), - [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 106), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 106), - [3627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 107), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 107), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [3633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 105), - [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 105), - [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 15), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 15), - [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 75), - [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 75), - [3653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [3657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 36), - [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 36), - [3661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), - [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 69), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 69), - [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 36), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 36), - [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 76), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 76), - [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 34), - [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 34), - [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 75), - [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 75), - [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4), - [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 69), - [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 69), - [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 73), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 73), - [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 9), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 9), - [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 34), - [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 34), - [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 9), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 9), - [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 79), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1501), - [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5111), - [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4782), - [3798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5113), - [3801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1414), - [3804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1502), - [3807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1424), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [3826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 10), - [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 10), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 35), - [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 35), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1412), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [3856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1573), - [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1), - [3885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [3995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2), - [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1), - [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_specifier_repeat1, 2), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_specifier_repeat1, 2), - [4374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_specifier_repeat1, 2), SHIFT_REPEAT(1382), - [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, .production_id = 108), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 108), - [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, .production_id = 11), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 11), - [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [4389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(1950), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [4406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1954), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [4413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(4159), - [4416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1954), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [4441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1970), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [4456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1986), - [4459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(4167), - [4462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1986), - [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [4471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 25), SHIFT(1242), - [4474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 25), SHIFT(1239), - [4477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1233), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 26), SHIFT(1242), - [4487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1234), - [4490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1999), - [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 67), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 67), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 48), - [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 48), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 33), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 33), - [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 15), - [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 15), - [4519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1242), - [4522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [4526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [4530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2018), - [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 82), - [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 82), - [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 101), - [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 101), - [4541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 66), - [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 66), - [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 47), - [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 47), - [4561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression, 1), - [4564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1237), - [4567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression, 1), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2), - [4574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2), - [4576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 26), SHIFT(1239), - [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, .production_id = 120), - [4581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, .production_id = 120), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2), - [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2), - [4593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, .production_id = 120), - [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, .production_id = 120), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 63), - [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 63), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 8), - [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 8), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2), - [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 63), - [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 63), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 56), - [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 56), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_macro_with_decl_first_arg, 5, .production_id = 122), - [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_macro_with_decl_first_arg, 5, .production_id = 122), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_macro_with_decl_first_arg, 6, .production_id = 139), - [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_macro_with_decl_first_arg, 6, .production_id = 139), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [4675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_macro_with_decl_first_arg, 7, .production_id = 147), - [4679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_macro_with_decl_first_arg, 7, .production_id = 147), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 90), - [4683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 90), - [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, .production_id = 88), - [4687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, .production_id = 88), - [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 81), - [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 81), - [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [4721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4), - [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 80), - [4725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 80), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3), - [4733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3), - [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, .production_id = 23), - [4737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, .production_id = 23), - [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 21), - [4741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 21), - [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 20), - [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 20), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 1, .production_id = 3), - [4749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 1, .production_id = 3), - [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(4999), - [4754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3677), - [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2), - [4763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2), - [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [4767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5), - [4771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5), - [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 99), - [4775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 99), - [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 100), - [4779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 100), - [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 121), - [4783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 121), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 65), - [4789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 65), - [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 46), - [4793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 46), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3), - [4799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 41), - [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 41), - [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [4809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [4813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, .production_id = 113), - [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, .production_id = 113), - [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [4821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 11), - [4827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 11), - [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [4831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [4835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 55), - [4839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 55), - [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, .production_id = 130), - [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, .production_id = 130), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 54), - [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 54), - [4849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 54), SHIFT(1242), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 19), - [4856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 19), - [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2), - [4860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2), - [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 125), - [4864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 125), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [4868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, .production_id = 5), - [4870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, .production_id = 5), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [4876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2245), - [4879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(4059), - [4882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2245), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [4893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1239), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [4920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2265), - [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 43), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [4971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 54), SHIFT(1239), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [5012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 54), SHIFT(1244), - [5015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2497), - [5018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(4061), - [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2497), - [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [5044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 26), SHIFT(1234), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), - [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [5107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 26), SHIFT(1233), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 16), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 16), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .dynamic_precedence = 1, .production_id = 16), - [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .dynamic_precedence = 1, .production_id = 16), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), - [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 53), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), - [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [5392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT(1736), - [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [5399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 83), - [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, .production_id = 133), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 112), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2), - [5447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [5451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 1), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [5459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, .production_id = 116), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [5489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, .production_id = 138), - [5491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 3), - [5493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 3), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 102), - [5635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 1), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [5645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 16), - [5707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 16), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [5733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [5803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 3, .dynamic_precedence = 1, .production_id = 16), - [5805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 3, .dynamic_precedence = 1, .production_id = 16), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [5815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .dynamic_precedence = 1, .production_id = 16), - [5817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .dynamic_precedence = 1, .production_id = 16), - [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), - [5821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(3229), - [5824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(3229), - [5827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), - [5829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(1414), - [5832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(1414), - [5835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(2548), - [5838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(3261), - [5841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(3237), - [5844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4836), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [5875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 24), - [5877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 24), - [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [5893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(1228), - [5896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(1228), - [5899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(2622), - [5902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(2609), - [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 3, .production_id = 16), - [5907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 3, .production_id = 16), - [5909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 16), - [5911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 16), - [5913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 24), - [5915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 24), - [5917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), - [5919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3229), - [5922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3229), - [5925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), - [5927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(1228), - [5930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(1228), - [5933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3237), - [5936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4836), - [5939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(2570), - [5942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(1414), - [5945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(1414), - [5948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(1228), - [5951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(1228), - [5954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [5956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [5958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(3280), - [5961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(3278), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [5966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3332), - [5969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3332), - [5972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3172), - [5975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3172), - [5978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3338), - [5981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(5114), - [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [5986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [5988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5193), - [5991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(1414), - [5994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(1414), - [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5), - [5999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 5), - [6001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5111), - [6004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(2549), - [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 126), - [6009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 126), - [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3), - [6013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [6021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 87), - [6025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 87), - [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [6029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1), - [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1), - [6033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1), - [6035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 124), - [6037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 124), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [6045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [6047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [6069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1), - [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [6073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2), - [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 4, .production_id = 16), - [6077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 4, .production_id = 16), - [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 15), - [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4), - [6083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4), - [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4), - [6087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4), - [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 18), - [6091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 18), - [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 92), - [6095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 92), - [6097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3), - [6099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3), - [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 18), - [6103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 18), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [6109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5), - [6113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5), - [6115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 3, .production_id = 24), - [6117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 3, .production_id = 24), - [6119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 15), - [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [6123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1), - [6125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [6143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 31), - [6145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 31), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [6153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [6155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [6159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [6163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3172), - [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2), - [6168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 2), - [6170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 6), - [6172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 6), - [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 4), - [6176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 4), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [6260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [6262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [6264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [6266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [6272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 41), - [6276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 41), - [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 8), - [6280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 8), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [6294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [6296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [6312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [6314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [6320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [6324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [6326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [6358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [6360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3172), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), - [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), - [6463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3475), - [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), - [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), - [6472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1572), - [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), - [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), - [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [6661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 6), - [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [6671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 31), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [6681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 123), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 123), - [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [6705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(4708), - [6708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [6710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 64), - [6712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [6714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 6), - [6720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, .dynamic_precedence = 1), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), - [6728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, .dynamic_precedence = 1), - [6730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 6), - [6732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 31), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [6742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 64), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 6), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [6762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 74), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [6766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 74), - [6768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(3661), - [6771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(4032), - [6774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(3661), - [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [6785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [6787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [6793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, .dynamic_precedence = -1), - [6795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, .dynamic_precedence = -1), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [6799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [6801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [6803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 18), - [6805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 18), - [6807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 87), - [6809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 87), - [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [6815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 124), - [6817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 124), - [6819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 18), - [6821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 18), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [6827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, .dynamic_precedence = -1), - [6829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, .dynamic_precedence = -1), - [6831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(4782), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [6848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 49), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [6860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 18), - [6862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 18), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [6866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [6868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [6874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 123), - [6876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 124), - [6878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 124), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [6886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 64), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [6890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 87), - [6892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 87), - [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), - [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [6898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 18), - [6900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 18), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [6926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 6), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 31), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [6936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [6938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), - [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [6974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3), - [6976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 3), - [6978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [6998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 6), - [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [7006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1), - [7008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), - [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), - [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [7110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 18), - [7112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 18), - [7114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 62), - [7116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1851), - [7119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [7121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(4905), - [7124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 18), - [7126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 18), - [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [7138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 30), - [7140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5), - [7142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 5), - [7144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 47), - [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [7148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [7150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 124), - [7152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 124), - [7154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [7156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [7158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4), - [7160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 4), - [7162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 85), SHIFT_REPEAT(3434), - [7165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 85), - [7167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 97), - [7169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6), - [7171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 6), - [7173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [7175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [7177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 87), - [7179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 87), - [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), - [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), - [7189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 16), - [7191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 16), - [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, .production_id = 45), - [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 89), - [7197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 22), - [7199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 22), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [7211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(4769), - [7214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 12), - [7216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 12), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [7222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 7), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [7264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [7280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [7312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, .production_id = 74), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [7324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(3723), - [7327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), - [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [7365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [7367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(4084), - [7370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(4084), - [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [7397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 68), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [7401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), - [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [7435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3), - [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), - [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [7483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), - [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2), - [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), - [7515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, .production_id = 51), - [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, .production_id = 109), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [7521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), SHIFT_REPEAT(2512), - [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3), - [7548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [7554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(4672), - [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [7561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(3371), - [7564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3), - [7566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 74), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [7570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(836), - [7573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [7575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_alone_macro_call_repeat1, 2), SHIFT_REPEAT(5038), - [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_alone_macro_call_repeat1, 2), - [7580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), SHIFT_REPEAT(823), - [7583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [7587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2), - [7589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2), - [7591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), SHIFT_REPEAT(1262), - [7594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), - [7596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 3), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [7600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1543), - [7603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), SHIFT_REPEAT(3630), - [7606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [7610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4), - [7612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(4618), - [7615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [7621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1661), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [7626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 85), SHIFT_REPEAT(3618), - [7629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 85), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [7651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 85), SHIFT_REPEAT(2968), - [7654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 85), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [7660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, .production_id = 49), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [7664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [7680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 78), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [7696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), SHIFT_REPEAT(1768), - [7699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), SHIFT_REPEAT(4999), - [7702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [7714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(4747), - [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [7861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 7), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [7957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, .production_id = 25), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), - [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), - [8087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), - [8103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4), - [8105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, .production_id = 137), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [8109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), - [8115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition_name, 4), - [8117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, .production_id = 44), - [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), - [8123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, .production_id = 115), - [8125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, .production_id = 114), - [8127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 2), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [8133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [8137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), - [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 68), - [8141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [8145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 25), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), - [8153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 7), - [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition_name, 3), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [8159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, .production_id = 19), - [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), - [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [8165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), - [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [8175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [8187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [8189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), - [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [8205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), - [8213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [8215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [8217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), - [8219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), - [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [8239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [8389] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [8617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 95), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [8657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 128), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [8677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 95), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [8681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 128), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [8785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0, 0, 0), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6913), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9272), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9227), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8143), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8931), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8696), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8002), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8895), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7766), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8125), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8898), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8284), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8577), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8476), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8551), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8638), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8599), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8846), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9061), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7025), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8507), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8184), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6942), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6822), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9185), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9189), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9052), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8862), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6908), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8943), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8944), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7972), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7607), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8326), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8632), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8209), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8770), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8764), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8778), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9013), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8161), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8545), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8478), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8344), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6903), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9112), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9113), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6914), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8956), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8957), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8553), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8097), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7645), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8080), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8576), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8330), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9111), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9195), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9201), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8987), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8091), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8461), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8084), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6947), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6830), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9197), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9198), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 11), + [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 80), + [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 11), + [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 80), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(736), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6914), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8956), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6010), + [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8957), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8097), + [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(733), + [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2039), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(901), + [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5548), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1452), + [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(137), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4076), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1620), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1460), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8931), + [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6851), + [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8205), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8696), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8002), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), + [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1356), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5953), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1598), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(955), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8895), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6527), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2305), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2349), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5444), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7645), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8080), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2144), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8576), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8330), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9111), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9195), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9201), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8987), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8091), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8461), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2184), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1826), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8599), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8846), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9061), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7025), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4532), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7583), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7341), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4199), + [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4207), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), + [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8507), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2254), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5541), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(775), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8084), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2058), + [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1849), + [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6947), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6830), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9197), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9198), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1850), + [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2135), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7998), + [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2103), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5347), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5659), + [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8862), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1084), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6920), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8547), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), + [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8454), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8165), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7747), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8129), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8581), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8081), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9196), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8565), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8690), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8463), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8136), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8524), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8131), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6897), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9220), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9212), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(732), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6920), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8547), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6015), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8454), + [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8165), + [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(368), + [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4086), + [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1465), + [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1602), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7747), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8129), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2153), + [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8581), + [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8081), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9196), + [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), + [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8565), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8690), + [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8463), + [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8136), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8524), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(779), + [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8131), + [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1858), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6897), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6805), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9220), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9212), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2145), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(731), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6908), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8943), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5971), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8944), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7972), + [840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(333), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4057), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1457), + [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1591), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7607), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8326), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2099), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8632), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8209), + [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8770), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1685), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8764), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8778), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9013), + [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8161), + [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8545), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(796), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8344), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1833), + [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6903), + [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6736), + [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9112), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9113), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1834), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2100), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), + [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(737), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6913), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9272), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6023), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9227), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8143), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(733), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2039), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(901), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5548), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1452), + [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(589), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4122), + [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1620), + [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1461), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8931), + [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6851), + [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8205), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8696), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8002), + [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), + [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1356), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5953), + [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), + [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1582), + [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(955), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8895), + [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6527), + [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2305), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2349), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5444), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7766), + [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8125), + [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2001), + [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8898), + [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8284), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(797), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8577), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1662), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8476), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8551), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8638), + [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2184), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1826), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8599), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8846), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9061), + [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7025), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5184), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7583), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7341), + [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5247), + [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4207), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8507), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2254), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5541), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(772), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8184), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2058), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1870), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6942), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6822), + [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9185), + [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9189), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2096), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7998), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2103), + [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5347), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5659), + [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(81), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9052), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8862), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1084), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 15), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 15), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8067), + [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), + [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 15), + [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 15), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(749), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(783), + [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [1287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2014), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2014), + [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4076), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1150), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8931), + [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6851), + [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8078), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8696), + [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1356), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6021), + [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(955), + [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8895), + [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), + [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6527), + [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2305), + [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2349), + [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5444), + [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7645), + [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8080), + [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8330), + [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9111), + [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), + [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9195), + [1373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9201), + [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8987), + [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8091), + [1382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8461), + [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2184), + [1388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1826), + [1391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8599), + [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8846), + [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9061), + [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7025), + [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4532), + [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7583), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7341), + [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4199), + [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4207), + [1418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), + [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8507), + [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5541), + [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8067), + [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8084), + [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2058), + [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1849), + [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1850), + [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2135), + [1445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7998), + [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2103), + [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5347), + [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5659), + [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8862), + [1460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1084), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8389), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9249), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(745), + [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(308), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(263), + [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4122), + [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7766), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8125), + [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8284), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(797), + [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8577), + [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1662), + [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8476), + [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8551), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8638), + [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8389), + [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9249), + [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8184), + [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1870), + [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), + [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2096), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(748), + [1544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(368), + [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4086), + [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7747), + [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8129), + [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8081), + [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9196), + [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), + [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8565), + [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8690), + [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8463), + [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8136), + [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8524), + [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8131), + [1592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1858), + [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), + [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2145), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(742), + [1608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(333), + [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(269), + [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4057), + [1617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7607), + [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8326), + [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8209), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8770), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1685), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8764), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8778), + [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9013), + [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8161), + [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8545), + [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8344), + [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1833), + [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1834), + [1662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2100), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7775), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8167), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9170), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8130), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9210), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8585), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8593), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8552), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8173), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8842), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8197), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7759), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8104), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8968), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8257), + [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(744), + [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(677), + [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4082), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7775), + [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8167), + [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8130), + [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(847), + [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9210), + [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1655), + [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8585), + [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8593), + [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8552), + [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8173), + [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8842), + [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8197), + [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1867), + [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), + [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2154), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8126), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9130), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9174), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6522), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9020), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9270), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9295), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7072), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9115), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2581), + [1884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(783), + [1887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2143), + [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2014), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2014), + [1898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2032), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [1905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6851), + [1908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6021), + [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7252), + [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8550), + [1917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8067), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), + [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8102), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 10), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 10), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8102), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, 0, 47), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, 0, 47), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, 0, 10), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, 0, 10), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 52), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 52), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, 0, 166), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, 0, 166), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 106), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 106), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8093), + [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8093), + [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 67), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 67), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 152), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 152), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2, 0, 0), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2, 0, 0), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 153), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 153), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 53), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 53), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 53), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 53), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 54), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 54), + [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 56), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 56), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 10), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 10), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(2581), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(2032), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(6851), + [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(7252), + [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(8550), + [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(8067), + [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(2581), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(2032), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), + [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(6851), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), + [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(7252), + [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(8550), + [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(8067), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 5, 0, 158), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 5, 0, 158), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3, 0, 0), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3, 0, 0), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3, 0, 0), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3, 0, 0), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 134), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 134), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 87), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 87), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 10), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 10), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 175), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 175), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 107), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 107), + [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(2581), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(2032), + [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(6851), + [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(7252), + [2142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(8550), + [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(8067), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 87), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 87), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 116), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 116), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 117), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 117), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 134), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 134), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 185), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 185), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 157), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 157), + [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 128), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 128), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 26), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 26), + [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 27), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 27), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, 0, 27), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, 0, 27), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, 0, 26), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, 0, 26), + [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 177), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 177), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 38), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 38), + [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 11), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 11), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 11), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 11), + [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 39), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 39), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 45), + [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 45), + [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 139), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 139), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 47), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 47), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, 0, 182), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, 0, 182), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 183), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 183), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3, 0, 0), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3, 0, 0), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7963), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 140), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 140), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 129), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 129), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6, 0, 203), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6, 0, 203), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, 0, 215), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, 0, 215), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, 0, 6), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, 0, 6), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, 0, 58), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, 0, 58), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 130), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 130), + [2280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7963), + [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 80), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 80), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 4), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 4), + [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 131), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 131), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 61), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 61), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 49), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 49), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3, 0, 0), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3, 0, 0), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8147), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2, 0, 0), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2, 0, 0), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 68), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 68), + [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 27), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 27), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3, 0, 0), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3, 0, 0), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 70), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 70), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 77), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 77), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 6), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 6), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, 0, 6), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, 0, 6), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, 0, 77), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, 0, 77), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 78), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 78), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 79), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 79), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 80), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 80), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 81), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 81), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 11), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 11), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, 0, 124), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, 0, 124), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 167), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 167), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 94), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 94), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 95), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 95), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 96), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 96), + [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8147), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3, 0, 0), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3, 0, 0), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 6), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 6), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 59), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 59), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, 0, 58), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, 0, 58), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4, 0, 0), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4, 0, 0), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4, 0, 0), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4, 0, 0), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 114), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 114), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 5, 0, 0), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 5, 0, 0), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 168), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 168), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, 0, 169), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, 0, 169), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 119), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 119), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, 0, 170), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, 0, 170), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, 0, 11), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, 0, 11), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, 0, 10), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, 0, 10), + [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2620), + [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1925), + [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6864), + [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7392), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alone_macro_call, 5, 0, 0), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alone_macro_call, 5, 0, 0), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alone_macro_call, 6, 0, 0), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alone_macro_call, 6, 0, 0), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alone_macro_call, 4, 0, 0), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alone_macro_call, 4, 0, 0), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [2494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [2497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8614), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 80), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8965), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9171), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7942), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8569), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8592), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6595), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8488), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6746), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9228), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 11), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 11), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 80), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [2632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1754), + [2635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8614), + [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5980), + [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8965), + [2646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7942), + [2649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5187), + [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8569), + [2655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3263), + [2658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5548), + [2661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5548), + [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1615), + [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4089), + [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1620), + [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), + [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8931), + [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5766), + [2685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8126), + [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8696), + [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8002), + [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1356), + [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8592), + [2700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(955), + [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1619), + [2706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8895), + [2709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1454), + [2712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6595), + [2715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2291), + [2718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2354), + [2721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5462), + [2724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), + [2727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8507), + [2730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2254), + [2733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5499), + [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7224), + [2739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [2742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(929), + [2745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8488), + [2748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6746), + [2751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9228), + [2754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [2757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1084), + [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8453), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8434), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8132), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7500), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9211), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8665), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9161), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8119), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9235), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8453), + [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5982), + [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8434), + [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8132), + [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(651), + [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), + [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4078), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1594), + [2880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7500), + [2883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(922), + [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6785), + [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9211), + [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(651), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8210), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [2951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8210), + [2954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8665), + [2957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6014), + [2960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9161), + [2963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8119), + [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(667), + [2969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1617), + [2972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4091), + [2975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1608), + [2978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7295), + [2981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(933), + [2984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6754), + [2987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9235), + [2990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(667), + [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6541), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8538), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8951), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9224), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9221), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7262), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9232), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7431), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9215), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7345), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9204), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9238), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9229), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9241), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9236), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8815), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [3091] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), + [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [3099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [3105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(877), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), + [3110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 1), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [3117] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8387), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6685), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8773), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9261), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9292), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8775), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8353), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [3235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(885), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), + [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 2, 0), + [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 2, 0), + [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 3, 0), + [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 3, 0), + [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 1, 0), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 1, 0), + [3256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2, 0, 0), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2, 0, 0), + [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 2, 0), + [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 2, 0), + [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 1, 0), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 1, 0), + [3268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 3, 0), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 3, 0), + [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 36), + [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 0, 35), + [3276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 0, 35), REDUCE(sym_qualified_type_identifier, 2, 0, 36), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 0, 36), + [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 35), + [3283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 35), REDUCE(sym_qualified_type_identifier, 2, 0, 36), + [3286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 35), SHIFT(874), + [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 17), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, 0, 18), + [3293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 17), REDUCE(sym_template_function, 2, 0, 18), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 17), + [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, 0, 18), + [3300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 17), REDUCE(sym_template_function, 2, 0, 18), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6364), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 46), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 46), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7425), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8969), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9264), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9293), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8550), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8392), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8383), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8402), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [3439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2596), + [3442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(783), + [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2143), + [3448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2143), + [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2014), + [3454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(333), + [3457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2032), + [3460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6851), + [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8078), + [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(37), + [3469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6021), + [3472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7252), + [3475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7607), + [3478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8326), + [3481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2099), + [3484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8632), + [3487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8209), + [3490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(848), + [3493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8770), + [3496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1685), + [3499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8764), + [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8778), + [3505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9013), + [3508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8161), + [3511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8545), + [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2184), + [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1826), + [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8599), + [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8846), + [3526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9061), + [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7025), + [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(4532), + [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7583), + [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7341), + [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(4199), + [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(4207), + [3547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8550), + [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8067), + [3553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8344), + [3556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2058), + [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1833), + [3562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1834), + [3565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2100), + [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7998), + [3571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2103), + [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5347), + [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5659), + [3580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8862), + [3583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2601), + [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(308), + [3589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(40), + [3592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7766), + [3595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8125), + [3598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2001), + [3601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8898), + [3604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8284), + [3607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(797), + [3610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8577), + [3613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1662), + [3616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8476), + [3619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8551), + [3622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8638), + [3625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8389), + [3628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9249), + [3631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8184), + [3634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1870), + [3637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1877), + [3640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2096), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7471), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [3653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2592), + [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(149), + [3659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(47), + [3662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7645), + [3665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8080), + [3668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2144), + [3671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8576), + [3674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8330), + [3677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(849), + [3680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9111), + [3683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1649), + [3686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9195), + [3689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9201), + [3692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8987), + [3695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8091), + [3698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8461), + [3701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8084), + [3704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1849), + [3707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1850), + [3710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2135), + [3713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2604), + [3716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7759), + [3719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2134), + [3722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9170), + [3725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8104), + [3728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8968), + [3731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8257), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [3736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2627), + [3739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(368), + [3742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(56), + [3745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7747), + [3748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8129), + [3751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2153), + [3754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8581), + [3757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8081), + [3760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(850), + [3763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9196), + [3766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1648), + [3769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8565), + [3772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8690), + [3775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8463), + [3778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8136), + [3781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8524), + [3784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8131), + [3787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1858), + [3790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1859), + [3793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2145), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [3798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2595), + [3801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(677), + [3804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(62), + [3807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7775), + [3810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8167), + [3813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8130), + [3816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(847), + [3819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9210), + [3822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1655), + [3825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8585), + [3828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8593), + [3831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8552), + [3834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8173), + [3837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8842), + [3840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8197), + [3843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1867), + [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1868), + [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2154), + [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 35), SHIFT(894), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9040), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9273), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9296), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9200), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7392), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6599), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8999), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9267), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9294), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7070), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9022), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8769), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), + [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [4175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(955), + [4178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8895), + [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, 0, 22), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, 0, 22), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8401), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, 0, 33), + [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, 0, 33), + [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, 0, 41), + [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, 0, 41), + [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), + [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), + [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, 0, 55), + [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, 0, 55), + [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2, 0, 0), + [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2, 0, 0), + [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, 0, 66), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, 0, 66), + [4233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 73), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 73), + [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 74), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 74), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [4243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3, 0, 0), + [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3, 0, 0), + [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 126), + [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 126), + [4251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 127), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 127), + [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, 0, 181), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, 0, 181), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7333), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [4269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7480), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), + [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8233), + [4317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8233), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 29), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 29), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), + [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6708), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8766), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8768), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8967), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [4364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 67), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 67), + [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 187), + [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 187), + [4372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 188), + [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 188), + [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 130), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 130), + [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 80), + [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 80), + [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 131), + [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 131), + [4388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 202), + [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 202), + [4392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 11), + [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 11), + [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 67), + [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 67), + [4400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 207), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 207), + [4404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 187), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 187), + [4408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 208), + [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 208), + [4412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 188), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 188), + [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 183), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 183), + [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 202), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 202), + [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 218), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 218), + [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 57), + [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 57), + [4432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 67), + [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 67), + [4436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 207), + [4438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 207), + [4440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 68), + [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 68), + [4444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 208), + [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 208), + [4448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 67), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 67), + [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 7, 0, 218), + [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 7, 0, 218), + [4456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 80), + [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 80), + [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 57), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 57), + [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), + [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 81), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 81), + [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 11), + [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 11), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8181), + [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_annotation, 1, 0, 0), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_annotation, 1, 0, 0), + [4482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8181), + [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8246), + [4487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8246), + [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [4494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2617), + [4497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2089), + [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6845), + [4503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7471), + [4506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2653), + [4509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1966), + [4512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6853), + [4515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7480), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [4524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1234), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 1), + [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 35), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 0, 35), + [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), + [4541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 0), + [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 0), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9019), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), + [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, 0, 23), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, 0, 23), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [4647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, 0, 55), + [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, 0, 55), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [4671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1447), + [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [4678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(955), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [4683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8895), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [4688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [4694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [4698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [4702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 21), + [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 21), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8904), + [4712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), + [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), + [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [4718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1440), + [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [4723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [4725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(955), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8895), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [4735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), + [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), + [4739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(794), + [4742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1927), + [4745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2072), + [4748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2072), + [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6021), + [4754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4, 0, 0), + [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4, 0, 0), + [4758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2, 0, 0), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2, 0, 0), + [4762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2408), + [4765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(786), + [4768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1985), + [4771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2073), + [4774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6883), + [4777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4, 0, 0), + [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4, 0, 0), + [4781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3, 0, 0), + [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3, 0, 0), + [4785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, -1, 0), + [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, -1, 0), + [4789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [4793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [4797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 96), + [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 96), + [4801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 98), + [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 98), + [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 101), + [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 101), + [4809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 10), + [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 10), + [4813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 11), + [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 11), + [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 99), + [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 99), + [4821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2734), + [4824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(784), + [4827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2231), + [4830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2231), + [4833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2217), + [4836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6868), + [4839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2232), + [4842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1896), + [4845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8599), + [4848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8846), + [4851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9061), + [4854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7025), + [4857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(4532), + [4860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7583), + [4863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7341), + [4866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(4199), + [4869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(4207), + [4872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2233), + [4875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7998), + [4878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2234), + [4881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(5367), + [4884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(5659), + [4887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8862), + [4890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 49), + [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 49), + [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, 0, 13), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, 0, 13), + [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4, 0, 0), + [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4, 0, 0), + [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 10), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 10), + [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, 0, 145), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, 0, 145), + [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, 0, 146), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, 0, 146), + [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, 0, 147), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, 0, 147), + [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 13), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 13), + [4930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 145), + [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 145), + [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 6, 0, 190), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 6, 0, 190), + [4938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 146), + [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 146), + [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 147), + [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 147), + [4946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 105), + [4948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 105), + [4950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 47), + [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 47), + [4954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 47), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 47), + [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, 0, 149), + [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, 0, 149), + [4962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 48), + [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 48), + [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 144), + [4972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 144), + [4974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 5, 0, 148), + [4976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 5, 0, 148), + [4978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, 0, 10), + [4980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, 0, 10), + [4982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 1, 0, 14), + [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 1, 0, 14), + [4986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 7), + [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 7), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 21), + [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 21), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [5002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, 0, 49), + [5004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, 0, 49), + [5006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, 0, 47), + [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, 0, 47), + [5010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, 0, 103), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, 0, 103), + [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, 0, 95), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, 0, 95), + [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, 0, 96), + [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, 0, 96), + [5026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 103), + [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 103), + [5030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 95), + [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 95), + [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 96), + [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 96), + [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, 0, 104), + [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, 0, 104), + [5042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 51), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 51), + [5046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 10), + [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 10), + [5050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 49), + [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 49), + [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 47), + [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 47), + [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 12), + [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 12), + [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 7), + [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 7), + [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 190), + [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 190), + [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 100), + [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 100), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [5076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [5080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1593), + [5083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1421), + [5086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1618), + [5089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8766), + [5092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8310), + [5095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8768), + [5098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8967), + [5101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1470), + [5104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 28), + [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 28), + [5108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), + [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), + [5112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), + [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), + [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 48), + [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 48), + [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, 0, 48), + [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, 0, 48), + [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, 0, 11), + [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, 0, 11), + [5128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [5131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [5134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 11), + [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 11), + [5138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1672), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), + [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), + [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [5149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1434), + [5152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), + [5154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), + [5156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 76), + [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, -1, 76), + [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 37), + [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 37), + [5164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), + [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), + [5168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 37), + [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 37), + [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 76), + [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 76), + [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [5180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [5184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), + [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), + [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), + [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), + [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [5234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [5246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 50), + [5248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 50), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [5266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 98), + [5268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 98), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8823), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6850), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8915), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8874), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8693), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [5346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(2581), + [5349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(783), + [5352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [5355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [5358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(2014), + [5361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(2400), + [5364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(2032), + [5367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6851), + [5370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1918), + [5373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), + [5375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6021), + [5378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7252), + [5381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(2184), + [5384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1826), + [5387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8599), + [5390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8846), + [5393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9061), + [5396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7025), + [5399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(4532), + [5402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7583), + [5405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7341), + [5408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(4199), + [5411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(4207), + [5414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8550), + [5417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6850), + [5420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8067), + [5423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(2058), + [5426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7998), + [5429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(2103), + [5432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5347), + [5435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5659), + [5438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8862), + [5441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [5446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 96), + [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 96), + [5450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 12), + [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 12), + [5454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 48), + [5456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 48), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [5462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 10), + [5464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 10), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [5476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 47), + [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 47), + [5480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 101), + [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 101), + [5484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 148), + [5486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 148), + [5488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 49), + [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 49), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [5494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 144), + [5496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 144), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [5500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 105), + [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 105), + [5504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 11), + [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 11), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [5512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 47), + [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 47), + [5516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 51), + [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 51), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [5522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 10), + [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 10), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8837), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7956), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6921), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6896), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8931), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [5578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1652), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [5591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), + [5596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), + [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [5601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [5607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, 0, 110), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [5611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), + [5613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), + [5615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1593), + [5618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1627), + [5621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1618), + [5624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8766), + [5627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8310), + [5630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8768), + [5633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8967), + [5636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2254), + [5639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1470), + [5642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(955), + [5645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1631), + [5648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), + [5651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8931), + [5654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8126), + [5657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8696), + [5660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8895), + [5663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1084), + [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [5672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [5674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [5676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8649), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8667), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8689), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8701), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [5720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), + [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8651), + [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8873), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9297), + [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1, 0, 0), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [5738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(9007), + [5741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), + [5743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), + [5745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8902), + [5748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), + [5762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8959), + [5765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8798), + [5768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(9063), + [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [5793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8975), + [5796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(9003), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [5811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(9033), + [5814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(9046), + [5817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(9051), + [5820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(9047), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [5833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 108), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [5845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 80), + [5847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 0), + [5849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), + [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 196), + [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 108), + [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [5875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [5885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8623), + [5888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 156), + [5890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(9121), + [5893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8634), + [5896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8643), + [5899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8650), + [5902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8652), + [5905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8654), + [5908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8655), + [5911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8658), + [5914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8666), + [5917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8674), + [5920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8717), + [5923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8785), + [5926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8787), + [5929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8788), + [5932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8790), + [5935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8794), + [5938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(9067), + [5941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(9068), + [5944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(9078), + [5947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(9132), + [5950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(9138), + [5953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8633), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8525), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8793), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), + [5992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8630), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8979), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9006), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8449), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9026), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9045), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8954), + [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8777), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8702), + [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8803), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8588), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8657), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9119), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9259), + [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9120), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [6081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8629), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8696), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8895), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8904), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [6170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(955), + [6173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2249), + [6176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), + [6179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8931), + [6182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8205), + [6185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8696), + [6188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8895), + [6191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1084), + [6194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), + [6196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), + [6198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [6208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym_argument_list, 2, 0, 0), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, 0, 0), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [6219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, 0, 151), + [6221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, 0, 151), + [6223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, 0, 15), + [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, 0, 15), + [6227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [6231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2346), + [6234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2267), + [6237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9019), + [6240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(894), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8390), + [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), + [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), + [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [6325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(883), + [6328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), + [6331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(9073), + [6334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(878), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8398), + [6347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(876), + [6350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2357), + [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9073), + [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [6363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2705), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [6370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2640), + [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9058), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [6399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2387), + [6402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(9058), + [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9093), + [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [6417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [6421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_specifier_repeat1, 2, 0, 0), + [6423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_specifier_repeat1, 2, 0, 0), + [6425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1470), + [6428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2393), + [6431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(9093), + [6434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2383), + [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9089), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [6455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2426), + [6458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(9089), + [6461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2388), + [6464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2434), + [6467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8998), + [6470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4, 0, 0), + [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4, 0, 0), + [6474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2419), + [6477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5, 0, 0), + [6479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5, 0, 0), + [6481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6, 0, 0), + [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6, 0, 0), + [6485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(884), + [6488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2413), + [6491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, 0, 65), + [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, 0, 65), + [6495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2, 0, 0), + [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2, 0, 0), + [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [6501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [6503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [6505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2437), + [6508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [6510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [6512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7260), + [6515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8392), + [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [6522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [6524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, 0, 216), + [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, 0, 216), + [6528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5, 0, 0), + [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5, 0, 0), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9038), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8903), + [6538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 35), SHIFT(883), + [6541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, 0, 132), + [6543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, 0, 132), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8998), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [6561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(892), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [6568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 35), SHIFT(887), + [6571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3844), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [6578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3855), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [6585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 46), + [6587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 46), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8492), + [6597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 21), + [6599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 21), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [6603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 64), + [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 64), + [6607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 36), SHIFT(884), + [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6148), + [6612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [6620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [6626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 35), SHIFT(884), + [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [6631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [6633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 92), + [6635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 92), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [6641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), + [6643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [6653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2677), + [6656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(9082), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8404), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8997), + [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8997), + [6675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2, 0, 0), + [6677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2, 0, 0), + [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), + [6687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), + [6690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(874), + [6693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), + [6696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2575), + [6699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7338), + [6702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8404), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [6719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, 1, 6), + [6721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 6), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [6731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, 1, 86), + [6733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 86), + [6735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, 1, 176), + [6737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 176), + [6739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, 1, 42), + [6741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 42), + [6743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7965), + [6746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(8497), + [6749] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(6361), + [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), + [6765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), + [6767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), + [6769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2609), + [6772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7264), + [6775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8390), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8497), + [6780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(6361), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [6791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(889), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9082), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [6818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2632), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [6827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 178), + [6829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 178), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [6837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [6839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [6841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 120), + [6843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 120), + [6845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 27), + [6847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 27), + [6849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 88), + [6851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 88), + [6853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 2, 0, 0), + [6855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 2, 0, 0), + [6858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [6860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8400), + [6868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [6870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [6872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8196), + [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__call_macro_with_decl_first_arg_repeat1, 2, 0, 0), + [6877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), + [6879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), + [6882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2695), + [6885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7432), + [6888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8400), + [6891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2696), + [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [6898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [6900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [6904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 43), + [6906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 43), + [6908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), + [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, 1), + [6914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), + [6916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 63), + [6918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 63), + [6920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 44), + [6922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 44), + [6924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(887), + [6927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 27), + [6929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 27), + [6931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 91), + [6933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 91), + [6935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 137), + [6937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 137), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [6941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 113), + [6943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 113), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [6947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, 0, 171), + [6949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, 0, 171), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [6963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 71), + [6965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 1, 71), + [6967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 71), SHIFT(884), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [6972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 121), + [6974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 121), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9057), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9057), + [6990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 1, 122), + [6992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 1, 122), + [6994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 1, 122), SHIFT(884), + [6997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 41), + [6999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 41), + [7001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, 0, 171), + [7003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, 0, 171), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9018), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9018), + [7009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 0, 35), + [7011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 0, 35), + [7013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 18), + [7015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 18), + [7017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), + [7019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [7027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), + [7029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [7033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 15), + [7035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 15), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [7039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), + [7041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [7045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 75), + [7047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 0, 75), + [7049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 75), SHIFT(884), + [7052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2812), + [7055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7251), + [7058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8399), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [7063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, 0, 5), + [7065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, 0, 5), + [7067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 5, 0, 0), + [7069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5, 0, 0), + [7071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [7073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [7075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [7077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [7079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), + [7081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), + [7083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 55), + [7085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 55), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [7089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 85), + [7091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 85), + [7093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 223), + [7095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 223), + [7097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), + [7099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), + [7101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 162), + [7103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 162), + [7105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 72), + [7107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 72), + [7109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 111), + [7111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 111), + [7113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [7115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [7117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 46), + [7119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 46), + [7121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 197), + [7123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 197), + [7125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 135), + [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 135), + [7129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), + [7131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), + [7137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 136), + [7139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 136), + [7141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, 0, 184), + [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, 0, 184), + [7145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [7147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [7149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 226), + [7151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 226), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [7155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 199), + [7157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 199), + [7159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 30), + [7161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 30), + [7163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_macro_with_decl_first_arg, 7, 0, 217), + [7165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_macro_with_decl_first_arg, 7, 0, 217), + [7167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 112), + [7169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 112), + [7171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 55), + [7173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 55), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9038), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), + [7179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [7181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [7183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, 0, 9), + [7185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, 0, 9), + [7187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 200), + [7189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 200), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9081), + [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9081), + [7195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 1, 0, 3), + [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 1, 0, 3), + [7199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [7203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 172), + [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 172), + [7207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 85), + [7209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 85), + [7211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 214), + [7213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 214), + [7215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 62), + [7217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 62), + [7219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2, 0, 0), + [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2, 0, 0), + [7223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [7227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 90), + [7229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 90), + [7231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 213), + [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 213), + [7235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), + [7237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), + [7239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [7241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [7243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 109), + [7245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 109), + [7247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 8), + [7249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 8), + [7251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), + [7253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), + [7255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 161), + [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 161), + [7259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 2, 0, 31), + [7261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 2, 0, 31), + [7263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [7267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_macro_with_decl_first_arg, 6, 0, 204), + [7269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_macro_with_decl_first_arg, 6, 0, 204), + [7271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2, 0, 0), + [7273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2, 0, 0), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), + [7279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, 0, 159), + [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, 0, 159), + [7283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_macro_with_decl_first_arg, 5, 0, 173), + [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_macro_with_decl_first_arg, 5, 0, 173), + [7287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), + [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), + [7291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 222), + [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 222), + [7295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), + [7297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [7311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 36), SHIFT(883), + [7314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [7316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9072), + [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9072), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8573), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [7342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 36), SHIFT(887), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [7353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3001), + [7356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7307), + [7359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8387), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [7380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 36), SHIFT(889), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9128), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [7395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 2, 0, 0), + [7397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), + [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [7401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [7419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8719), + [7441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3, 0, 0), + [7443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3, 0, 0), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [7449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4, 0, 0), + [7451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4, 0, 0), + [7453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 123), + [7455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 123), + [7457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5, 0, 0), + [7459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5, 0, 0), + [7461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 179), + [7463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 179), + [7465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2, 0, 0), + [7467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2, 0, 0), + [7469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), + [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [7477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8966), + [7480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8966), + [7483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8166), + [7486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), + [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9039), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), + [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7074), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8782), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [7504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6086), + [7507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5767), + [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [7512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [7514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8592), + [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8966), + [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8966), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [7568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8310), + [7571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7074), + [7574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7074), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [7579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5717), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [7604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [7624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6458), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8465), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [7680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), + [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8635), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [7746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [7748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [7758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [7762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [7774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6335), + [7777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5739), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8869), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), + [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [7796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5756), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8995), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9028), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [7823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5759), + [7826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8931), + [7829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8931), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [7840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8223), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [7845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [7853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5771), + [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [7860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [7866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [7868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [7876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [7878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [7884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 75), SHIFT(874), + [7887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 71), SHIFT(883), + [7890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 75), SHIFT(894), + [7893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 1, 122), SHIFT(883), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [7904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8238), + [7907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [7915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3510), + [7918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7325), + [7921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8403), + [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [7944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [7964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [7978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8587), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8849), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8850), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8935), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8955), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9017), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9059), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9126), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9187), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9255), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8417), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8444), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [8106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [8108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [8110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4029), + [8113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4036), + [8116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 75), SHIFT(883), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [8121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 1, 122), SHIFT(887), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [8126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 71), SHIFT(887), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [8131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 4, 0, 138), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), + [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), + [8169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 75), SHIFT(887), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [8176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), + [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [8184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [8186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [8188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 36), SHIFT(892), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [8195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5755), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), + [8202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3830), + [8205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7361), + [8208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8398), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [8213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3835), + [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [8266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 2, 0, 0), + [8268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 2, 0, 0), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), + [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), + [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), + [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), + [8297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), + [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9060), + [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), + [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [8307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4324), + [8310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(9039), + [8313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [8315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [8319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), + [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [8331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), + [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), + [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), + [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9083), + [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), + [8349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [8351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), + [8357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), + [8359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [8361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [8365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [8369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), + [8373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), + [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), + [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [8379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), + [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), + [8391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 36), SHIFT(876), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8769), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [8422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8742), + [8426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4347), + [8429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4341), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), + [8442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 57), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8903), + [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), + [8458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4324), + [8461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), + [8463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(9039), + [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [8470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4324), + [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), + [8475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(9039), + [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), + [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), + [8496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 21), + [8498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 21), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8685), + [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 2), + [8506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 1, 0, 2), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [8520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 1, 0, 0), + [8522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 1, 0, 0), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), + [8530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 36), SHIFT(878), + [8533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), + [8541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), + [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [8545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [8547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), + [8551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [8569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [8571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [8579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), + [8581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), + [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [8595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), + [8597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), + [8599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), + [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), + [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [8619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [8633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), + [8635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4424), + [8638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [8640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4593), + [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [8645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(9096), + [8648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), + [8650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), + [8652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4593), + [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [8657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(9096), + [8660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [8664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [8678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [8682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [8698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [8700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 21), + [8702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 21), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8732), + [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6607), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), + [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6259), + [8718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 2), + [8720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 2), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [8732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8998), + [8744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4606), + [8747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8769), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [8754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6267), + [8756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 143), + [8758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 143), + [8760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7102), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [8766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6216), + [8768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4593), + [8771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(9096), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [8790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [8798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 2, 0, 0), + [8800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 2, 0, 0), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [8804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2434), + [8807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8998), + [8810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2434), + [8813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [8815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8998), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [8860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2677), + [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), + [8865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(9082), + [8868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4567), + [8871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2677), + [8874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(9082), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), + [8885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [8887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [8889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8931), + [8892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8931), + [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [8899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [8937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [8939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [8943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 182), + [8945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 182), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), + [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [8975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [8981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [8985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [8989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [8993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [9009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 83), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [9019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 141), SHIFT(1851), + [9022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 141), + [9024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT(1851), + [9027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [9037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8966), + [9040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8966), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9088), + [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9088), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [9093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [9099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [9103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [9125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 115), + [9127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, 0, 191), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [9173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [9179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [9205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 5, 0, 186), + [9207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 3, 0, 83), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [9213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 192), + [9215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 193), + [9217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, 0, 202), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8484), + [9223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 195), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [9233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, 0, 165), + [9235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 154), + [9237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 155), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8941), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8991), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [9253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 1, 0), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), + [9259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8909), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8819), + [9273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9109), + [9289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 142), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [9295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [9311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 1, 209), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [9315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 5, 0, 210), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [9373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 4, 0, 194), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [9387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), + [9389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8966), + [9392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8966), + [9395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8166), + [9398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), + [9400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6086), + [9403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5767), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [9470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, 0, 55), + [9472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_expression_lhs, 3, 0, 55), + [9474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, 0, 84), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [9516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8310), + [9519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7074), + [9522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7074), + [9525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5717), + [9528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 1, 0, 0), + [9530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 1, 0, 0), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [9535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6335), + [9538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5739), + [9541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8931), + [9544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8931), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [9551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5759), + [9554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5756), + [9557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(5362), + [9560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(5364), + [9563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(5357), + [9566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(5365), + [9569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(5373), + [9572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(5361), + [9575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5771), + [9578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), + [9580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8966), + [9583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8966), + [9586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8166), + [9589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), + [9591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(6086), + [9594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5767), + [9597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [9599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7074), + [9602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7074), + [9605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8310), + [9608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5717), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [9613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1663), + [9616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [9618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [9620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), + [9622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [9624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [9626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), + [9628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), + [9630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [9632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [9634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [9636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), + [9638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [9640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [9644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [9646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9001), + [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [9650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [9652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [9654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), + [9656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [9658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [9660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), + [9662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), + [9664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(6335), + [9667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5739), + [9670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), SHIFT(1234), + [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), + [9675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 37), SHIFT(1234), + [9678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), SHIFT(5410), + [9681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), SHIFT(5353), + [9684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 76), SHIFT(5371), + [9687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5756), + [9690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), SHIFT(1234), + [9693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 37), SHIFT(5355), + [9696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 21), + [9698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 21), + [9700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 76), SHIFT(1234), + [9703] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(1234), + [9707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5759), + [9710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8931), + [9713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8931), + [9716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5755), + [9719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 2), + [9721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 2), + [9723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [9725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [9727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [9729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6513), + [9731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [9733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [9735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), + [9737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [9739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9042), + [9741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), + [9743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [9745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [9747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [9749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), + [9751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [9753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [9755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), + [9757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [9759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8971), + [9761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), + [9763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), SHIFT(1234), + [9766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(5549), + [9769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(5549), + [9772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(5552), + [9775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [9777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [9781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), + [9783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [9785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [9787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), + [9789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [9791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9074), + [9793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), + [9795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [9797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [9799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [9801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), + [9803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), + [9805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), SHIFT(1234), + [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [9810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [9812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), + [9814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), + [9816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [9818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [9820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), + [9822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9090), + [9826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), + [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), + [9830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), SHIFT(1234), + [9833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5771), + [9836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8310), + [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [9841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), + [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), + [9845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(5404), + [9848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), + [9850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8966), + [9853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8966), + [9856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8166), + [9859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), + [9861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(6086), + [9864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5767), + [9867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 2), + [9869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 2), + [9871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 21), + [9873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 21), + [9875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5755), + [9878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8310), + [9881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7074), + [9884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7074), + [9887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5717), + [9890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(6335), + [9893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5739), + [9896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8931), + [9899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8931), + [9902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5759), + [9905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5756), + [9908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5771), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [9925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7465), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [9931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [9933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7278), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [9939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [9949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), + [9951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [9967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8239), + [9983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 2, 0, 0), + [9985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 2, 0, 0), + [9987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 1, 0, 0), + [9989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 1, 0, 0), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), + [9999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5755), + [10002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1, 0, 0), + [10004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1, 0, 0), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [10008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [10010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7623), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [10016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [10020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [10024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), + [10026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7395), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), + [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), + [10034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), + [10036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), + [10038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [10042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [10044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 3, 0, 0), + [10046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 3, 0, 0), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [10050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), + [10052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7375), + [10054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), + [10056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [10058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), + [10060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), + [10062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), + [10064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), + [10066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), + [10068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), + [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), + [10086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [10090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [10092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(6086), + [10095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5717), + [10098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [10102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [10104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(6086), + [10107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5717), + [10110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6799), + [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), + [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), + [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6193), + [10122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8688), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [10130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7707), + [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6512), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7595), + [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), + [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), + [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9012), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7945), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), + [10174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4, 0, 0), + [10176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4, 0, 0), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [10184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3, 0, 0), + [10186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3, 0, 0), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), + [10202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5767), + [10205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3, 0, 0), + [10207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3, 0, 0), + [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8890), + [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [10217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), + [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [10227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [10231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), + [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [10237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1, 0, 0), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [10241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1, 0, 0), + [10243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_postfix, 1, 0, 0), + [10245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_postfix, 1, 0, 0), + [10247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [10251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4, 0, 0), + [10253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4, 0, 0), + [10255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5767), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8184), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [10268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5, 0, 0), + [10270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5, 0, 0), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8344), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [10298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), + [10300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), + [10302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(6086), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [10309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6711), + [10311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7771), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [10321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [10323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [10325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), + [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8950), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), + [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [10335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), + [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [10339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), + [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [10343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8276), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), + [10347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), + [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [10355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [10357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [10359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8797), + [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7814), + [10367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [10371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 55), + [10373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 55), + [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7642), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [10383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7693), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [10393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7586), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6984), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [10407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [10409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), + [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7614), + [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8438), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7803), + [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7606), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [10457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [10467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [10469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8795), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7535), + [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7564), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [10501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7632), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [10507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8166), + [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [10524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [10526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), + [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), + [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [10536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7666), + [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [10544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 8), + [10546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 8), + [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [10552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [10556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7640), + [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [10562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [10566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7578), + [10568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [10570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [10576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [10578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [10594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7641), + [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), + [10616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), + [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), + [10620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), + [10622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [10624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [10626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [10628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [10632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), + [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), + [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), + [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), + [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), + [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7899), + [10650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 180), + [10652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 180), + [10654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1, 0, 0), + [10656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1, 0, 0), + [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [10660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [10662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7300), + [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7799), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [10672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 125), + [10674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 125), + [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [10678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 120), + [10680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 120), + [10682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 178), + [10684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, 0, 178), + [10686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 7, 0, 24), + [10688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 7, 0, 24), + [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7145), + [10702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7926), + [10704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [10706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [10708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 27), + [10710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 27), + [10712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 34), + [10714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, 0, 34), + [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), + [10718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [10720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), + [10724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 25), + [10726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, 0, 25), + [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [10732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 27), + [10734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 27), + [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [10744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6963), + [10746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7637), + [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [10750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2, 0, 0), + [10752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2, 0, 0), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [10756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(6335), + [10759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5759), + [10762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8205), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [10767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [10769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), + [10771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7202), + [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), + [10775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), + [10777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(6335), + [10780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5759), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [10785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(6335), + [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6554), + [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [10796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 6), + [10798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [10800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [10804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6224), + [10807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7388), + [10810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8396), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [10819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5756), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [10830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), + [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8396), + [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [10838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5756), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), + [10843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7830), + [10845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8234), + [10847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), + [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), + [10853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6709), + [10855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), + [10857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), + [10859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(8766), + [10862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), + [10864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(8967), + [10867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 86), + [10869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [10871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 86), + [10873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [10875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [10877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 40), + [10879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 40), + [10881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 6), + [10883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 6), + [10885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), + [10887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), + [10889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 82), + [10891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 82), + [10893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 63), + [10895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 63), + [10897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 42), + [10899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 42), + [10901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 133), + [10903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 4, 0, 133), + [10905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [10909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [10911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [10913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [10915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [10917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [10923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [10927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(9154), + [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [10932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7146), + [10934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 120), + [10936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 120), + [10938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 27), + [10940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 27), + [10942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 1, 25), + [10944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 1, 25), + [10946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 27), + [10948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 27), + [10950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), + [10952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), + [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [10956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), + [10958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [10960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [10966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [10968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [10970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [10972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [10974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), + [10976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), + [10978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [10980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), + [10982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [10984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [10986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [10988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [10992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5739), + [10995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5739), + [10998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 178), + [11000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 178), + [11002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), + [11004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), + [11006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [11008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 6), + [11010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 6), + [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [11014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [11016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [11018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 86), + [11020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 4, 1, 86), + [11022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [11026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7198), + [11028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 6), + [11030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 2, 1, 6), + [11032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, 1, 0), + [11034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_declarator, 2, 1, 0), + [11036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5771), + [11039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 176), + [11041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 5, 1, 176), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), + [11049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8616), + [11053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 176), + [11055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 5, 1, 176), + [11057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [11061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7211), + [11063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 42), + [11065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 3, 1, 42), + [11067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 11), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [11071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7210), + [11073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 6), + [11075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 2, 1, 6), + [11077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 42), + [11079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 3, 1, 42), + [11081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), + [11083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), + [11087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 86), + [11089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 4, 1, 86), + [11091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 80), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [11095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6725), + [11097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6704), + [11099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6701), + [11101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6693), + [11103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6706), + [11105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), + [11107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6681), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [11117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), + [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), + [11127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 67), + [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [11139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6695), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [11143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6705), + [11145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6686), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [11149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5771), + [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), + [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6684), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), + [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6719), + [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6677), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [11176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6697), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7828), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), + [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), + [11196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6718), + [11198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), + [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6716), + [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), + [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), + [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), + [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8514), + [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [11220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 102), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [11224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 102), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [11228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7054), + [11230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5755), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [11241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), + [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [11255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), + [11257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), + [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [11271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [11273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [11279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7150), + [11281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7148), + [11283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [11291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 178), + [11293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 178), + [11295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 1, 25), + [11297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 1, 25), + [11299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [11301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [11303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [11305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [11307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 27), + [11309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 27), + [11311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 120), + [11313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 120), + [11315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 27), + [11317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 27), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8840), + [11327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 80), + [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), + [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8827), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8832), + [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6989), + [11341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6910), + [11343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 11), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [11347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6999), + [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6925), + [11351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), + [11353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), + [11355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [11361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 27), + [11363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 1, 0, 27), + [11365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 80), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), + [11369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), + [11371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6922), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), + [11375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 80), + [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [11381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6956), + [11383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6923), + [11385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7708), + [11388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6031), + [11391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8814), + [11394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8143), + [11397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [11399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5755), + [11402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6888), + [11404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6975), + [11406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), + [11408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), + [11410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6889), + [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), + [11414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6915), + [11416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 11), + [11418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 11), + [11420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1, 0, 0), + [11422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1, 0, 0), + [11424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [11426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [11428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 6), + [11430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 6), + [11432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [11434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [11436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [11438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), + [11440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), + [11444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [11446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [11448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [11452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [11454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [11456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [11458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [11460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [11462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), + [11464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9234), + [11468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [11470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), + [11472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [11474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8856), + [11478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [11480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [11482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [11484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [11486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [11488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8139), + [11490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7686), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), + [11494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8881), + [11496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), + [11498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8231), + [11500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7820), + [11502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7246), + [11504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [11506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7958), + [11508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [11510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8040), + [11512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [11514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8296), + [11516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [11518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8134), + [11520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), + [11522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8122), + [11524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7429), + [11526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [11528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8111), + [11530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [11532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8334), + [11534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [11536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8044), + [11538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7657), + [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8536), + [11544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), + [11546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7368), + [11548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [11550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8087), + [11552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [11554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8115), + [11556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7931), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9202), + [11560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7768), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8906), + [11564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7337), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [11570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), + [11572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7949), + [11574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), + [11576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [11578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7569), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8924), + [11582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7829), + [11584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7459), + [11586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7422), + [11588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [11590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8088), + [11592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7454), + [11594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7419), + [11596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7479), + [11598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7490), + [11600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [11602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8363), + [11604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7872), + [11606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [11626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 32), + [11628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 32), + [11630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, 0, 59), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [11640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7708), + [11643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [11645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [11653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(7008), + [11656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [11658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), + [11662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(6361), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), + [11689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 16), + [11691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 16), + [11693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 7), + [11695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 7), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [11699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7837), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8478), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [11713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 57), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), + [11719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 67), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [11727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7647), + [11729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5, 0, 0), + [11731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 5, 0, 0), + [11733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7613), + [11735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), + [11737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7147), + [11740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7874), + [11742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6, 0, 0), + [11744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 6, 0, 0), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), + [11760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), + [11764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [11766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(2142), + [11769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), + [11771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(8478), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [11796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3, 0, 0), + [11798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 3, 0, 0), + [11800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4, 0, 0), + [11802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 4, 0, 0), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [11816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 80), + [11818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 80), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [11824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 80), + [11826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 80), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [11844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 11), + [11846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 11), + [11848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 81), + [11850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 81), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [11856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 11), + [11858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 11), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [11882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [11896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 130), + [11898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 130), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [11910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 183), + [11912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 183), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [11930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 131), + [11932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 131), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [11942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, 0, 164), + [11944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8198), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [11948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7948), + [11950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), + [11952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8314), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [11960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [11978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7534), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [11992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8279), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [12006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 89), + [12008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 2, 0, 89), + [12010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 118), SHIFT_REPEAT(6125), + [12013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 118), + [12015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 118), + [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7879), + [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [12037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 189), SHIFT_REPEAT(6241), + [12040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 189), + [12042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 189), + [12044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 7), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8411), + [12048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8299), + [12050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8388), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [12056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 1, 0, 0), + [12058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1, 0, 0), + [12060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7986), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), + [12072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8012), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [12076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, 0, 201), + [12078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, 0, 35), + [12080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [12082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7504), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), + [12086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), + [12088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [12090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 93), + [12092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [12094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [12098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7267), + [12100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [12102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [12104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 224), SHIFT_REPEAT(6457), + [12107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 224), + [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), + [12111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 198), + [12113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [12117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7244), + [12119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6564), + [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [12125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), + [12131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8442), + [12133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 1, 0, 20), + [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8365), + [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [12143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), + [12147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7484), + [12149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8676), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), + [12153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7369), + [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8109), + [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8280), + [12159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [12163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7275), + [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), + [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [12169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2, 0, 0), + [12171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), + [12175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7365), + [12177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [12179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(7267), + [12182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(7267), + [12185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [12187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [12189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [12193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7303), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [12199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8639), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [12207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [12211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 212), + [12213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), + [12217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7494), + [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), + [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8319), + [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [12225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8574), + [12227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), + [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), + [12237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [12241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7336), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [12247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 160), + [12249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [12253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [12261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [12265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [12269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7340), + [12271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [12273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), + [12277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7466), + [12279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [12283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7232), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [12291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), + [12295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7235), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [12299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), + [12301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [12305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7385), + [12307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), + [12311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7403), + [12313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [12315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [12317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 211), SHIFT_REPEAT(6966), + [12320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 211), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [12324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8883), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8186), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [12334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9226), + [12336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [12338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [12342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8457), + [12344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [12348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7241), + [12350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 220), + [12352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [12356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), + [12358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), + [12362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1, 0, 0), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), + [12374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4, 0, 0), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [12378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), + [12382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7443), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [12386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), + [12390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), + [12392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [12396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), + [12408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3, 0, 0), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [12412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8640), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [12416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 211), SHIFT_REPEAT(7007), + [12419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 211), + [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [12431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [12441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), + [12447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5, 0, 0), + [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [12451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 6), + [12453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 6), + [12455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [12457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 206), + [12459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 206), + [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8212), + [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8217), + [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), + [12467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), + [12471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7507), + [12473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), + [12477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7478), + [12479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [12481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), + [12483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(7504), + [12486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [12488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [12490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 198), + [12492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 160), + [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [12496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9147), + [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), + [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), + [12506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 228), + [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), + [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), + [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [12526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), + [12532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2, 0, 0), + [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [12536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 2, 0, 0), + [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), + [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [12544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 6, 0, 0), + [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), + [12554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4, 0, 0), + [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [12578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 2, 0, 60), + [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7963), + [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), + [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), + [12598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, 0, 67), + [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [12602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), + [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), + [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), + [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), + [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), + [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), + [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7989), + [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), + [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [12632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), + [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), + [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), + [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), + [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), + [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), + [12740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 3, 0, 0), + [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), + [12748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 160), + [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7935), + [12754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), + [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), + [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [12774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), + [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [12779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8875), + [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8877), + [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8893), + [12787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), + [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), + [12793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 205), + [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [12799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), + [12801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1588), + [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9245), + [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), + [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), + [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), + [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8527), + [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), + [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8359), + [12872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), + [12874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(6198), + [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [12883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, 0, 69), + [12885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, 0, 150), + [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8233), + [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), + [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9275), + [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [12895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [12901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__call_macro_with_decl_first_arg_repeat1, 2, 0, 0), SHIFT_REPEAT(1757), + [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [12924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4031), + [12927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), + [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [12933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 3, 0), + [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), + [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [12939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(900), + [12942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), + [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), + [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [12948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2, 0, 0), + [12950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2, 0, 0), + [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8648), + [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), + [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8811), + [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8812), + [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8813), + [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), + [12964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(958), + [12967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), + [12969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), + [12971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), + [12973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [12975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [12977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1023), + [12980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), + [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), + [12988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_alone_macro_call_repeat1, 2, 0, 0), SHIFT_REPEAT(8594), + [12991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_alone_macro_call_repeat1, 2, 0, 0), + [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [12995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 118), SHIFT_REPEAT(5503), + [12998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 118), + [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [13006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(978), + [13009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), + [13013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7394), + [13015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [13017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [13019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8651), + [13021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8618), + [13023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8873), + [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [13031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6651), + [13034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [13040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1756), + [13043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8102), + [13045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(8200), + [13048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), + [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [13052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7227), + [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9136), + [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8712), + [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8668), + [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8278), + [13066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 5, 0, 0), + [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), + [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9146), + [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9150), + [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9190), + [13076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 7, 0, 0), + [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [13088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 219), + [13090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 160), + [13092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7225), + [13094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5987), + [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [13099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [13101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(7989), + [13104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8649), + [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8659), + [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8667), + [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [13118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7364), + [13120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8497), + [13123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), + [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8689), + [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8700), + [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8701), + [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), + [13141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), + [13143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6276), + [13146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), + [13148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), + [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8992), + [13152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 221), + [13154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7384), + [13156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7505), + [13158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7438), + [13160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), + [13194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 102), + [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [13206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), + [13210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 0), + [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [13220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 97), + [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [13236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4101), + [13239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), + [13241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [13243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [13245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 219), + [13247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [13249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [13251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [13253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 212), + [13255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [13257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [13259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [13261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 225), + [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [13265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [13267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [13275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 227), SHIFT_REPEAT(8992), + [13278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 227), + [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [13282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [13284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), + [13286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3, 0, 0), + [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), + [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), + [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [13308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 228), + [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), + [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [13324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7229), + [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [13328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8729), + [13330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8661), + [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8237), + [13338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), + [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [13342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_parameter_pack_expansion, 2, 0, 29), + [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), + [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [13348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9243), + [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), + [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [13358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), + [13360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), + [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), + [13364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), + [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8919), + [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8887), + [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [13372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8711), + [13374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8947), + [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), + [13384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), + [13386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), + [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), + [13390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [13392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), + [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [13396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [13398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [13400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 2, 0), + [13402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, 0, 163), + [13404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), + [13406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [13408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, 0, 58), + [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [13412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8414), + [13414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), + [13416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8393), + [13418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 174), + [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [13422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8480), + [13424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [13426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8542), + [13428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), + [13430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 7), + [13432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [13434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8962), + [13436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), + [13438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7975), + [13440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [13442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8642), + [13444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 102), + [13446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 0), + [13448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [13450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8678), + [13452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [13454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [13456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8765), + [13458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [13460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [13462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), + [13464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), + [13466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [13468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8864), + [13470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [13472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8428), + [13474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8329), + [13476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [13478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [13480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [13482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9179), + [13484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 6, 0, 0), + [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [13488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [13490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), + [13492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [13494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), + [13498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 221), + [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8800), + [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9262), + [13504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 93), + [13506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), + [13508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, 0, 29), + [13510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [13512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9247), + [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [13516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8984), + [13520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9265), + [13522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9010), + [13524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9268), + [13526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9030), + [13528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9271), + [13530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [13532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9253), + [13534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9049), + [13536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9274), + [13538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9066), + [13540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9276), + [13542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9076), + [13544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9277), + [13546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9085), + [13548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9278), + [13550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9091), + [13552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9279), + [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9094), + [13556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9280), + [13558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9097), + [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9281), + [13562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9099), + [13564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9282), + [13566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9101), + [13568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9283), + [13570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9103), + [13572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9284), + [13574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9105), + [13576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9285), + [13578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9107), + [13580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9286), + [13582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [13584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [13586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [13588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [13590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9148), + [13592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9149), + [13594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [13596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 130), + [13598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [13600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [13602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [13604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [13606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 130), + [13608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [13610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [13612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), + [13614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [13616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [13618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 131), + [13620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 131), + [13622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [13624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [13626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [13628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [13630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [13632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 130), + [13634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [13636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 131), + [13638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [13640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [13642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [13644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [13646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [13648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [13650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [13652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [13654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [13656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [13658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [13660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9123), + [13662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [13664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8702), + [13666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [13668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2, 0, 0), + [13670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8894), + [13672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [13674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(9155), + [13677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9208), + [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), + [13691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [13693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), + [13697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8626), + [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [13701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [13703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [13707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8836), + [13713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [13717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8460), + [13721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), + [13723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [13725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8222), + [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [13729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), + [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8803), + [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9237), + [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9259), + [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [13759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [13763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 80), + [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8714), + [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8609), + [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [13775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3, 0, 0), + [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9069), + [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9118), + [13781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [13783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [13787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [13789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [13793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [13797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), + [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [13801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [13803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [13805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8960), + [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [13809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9167), + [13813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [13821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [13825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [13833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 131), + [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8508), + [13837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [13841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [13845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9053), + [13847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [13849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [13851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [13853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [13855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8503), + [13857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [13859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [13861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [13863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [13865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), + [13867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [13869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), + [13871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8680), + [13873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [13875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [13877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [13879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [13881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8830), + [13883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8835), + [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [13887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [13889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8771), + [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [13895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [13897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), + [13899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [13901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), + [13903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [13905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), + [13907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [13911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), + [13915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [13917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8792), + [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [13921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [13923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8675), + [13927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), + [13931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [13935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8889), + [13937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [13939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 183), + [13941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 130), + [13943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [13945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8911), + [13947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [13949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [13951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [13953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 131), + [13955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8963), + [13957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [13959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [13961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8430), + [13963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9134), + [13965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9143), + [13967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [13969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [13971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [13977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [13981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8588), + [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [13995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [13997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8703), + [13999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), + [14001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [14005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [14007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [14009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [14011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8825), + [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8882), + [14015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [14019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [14023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8657), + [14025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [14027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [14029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8866), + [14031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8867), + [14033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [14035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [14037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [14039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [14041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [14043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [14045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [14047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), + [14049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9137), + [14051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9214), + [14053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [14055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [14057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9291), + [14059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [14061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [14063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [14065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [14067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), + [14069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [14071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8562), + [14073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8686), + [14075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), + [14077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8804), + [14079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8885), + [14081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [14083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9129), + [14085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8554), + [14087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8600), + [14089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [14091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8930), + [14093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8933), + [14095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [14097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [14099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9269), + [14101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9290), + [14103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), + [14105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8533), + [14107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), + [14109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8617), + [14111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8691), + [14113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8697), + [14115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8807), + [14117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8808), + [14119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8879), + [14121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8880), + [14123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [14125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [14127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [14129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8384), + [14131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [14133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9217), + [14135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [14137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [14139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [14141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [14143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [14145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [14147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [14149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [14151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [14153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [14155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [14157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [14159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [14161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [14163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [14165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7962), + [14167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 81), + [14169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), + [14171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [14173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [14175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [14177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), + [14179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [14181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [14183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [14185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), + [14187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [14189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [14191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [14193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [14195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [14197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [14199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [14201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), + [14203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), + [14205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [14207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8734), + [14209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [14211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [14215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8777), + [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [14219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), + [14221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [14223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [14225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [14227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 11), + [14229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [14231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8929), + [14233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [14235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8851), + [14237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8826), + [14239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 183), + [14241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [14243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), + [14245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [14247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [14249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 183), + [14251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8572), + [14253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [14255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [14257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8449), + [14259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [14261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [14263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [14265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9207), + [14267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 183), + [14269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [14271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [14273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9203), + [14275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [14277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [14279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [14281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [14283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [14285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [14287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [14289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [14291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [14293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [14295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [14297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [14299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [14301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [14303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [14305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [14307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), + [14309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8772), + [14311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [14313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 130), + [14315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [14317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8860), + [14319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [14321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [14323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [14325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [14327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [14329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [14331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [14333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [14335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [14337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [14339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8922), + [14341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8852), + [14343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [14345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [14347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [14349] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [14351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [14353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [14355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [14357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [14359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [14361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [14363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [14365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8479), + [14367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8936), + [14369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [14371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8954), + [14373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [14375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [14377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [14379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [14381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8937), + [14383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [14385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), + [14387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [14389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [14391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [14393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [14395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [14397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [14399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [14401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [14403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [14405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [14407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [14409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [14411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [14413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [14417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7957), + [14419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [14421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [14425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [14427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [14429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [14431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [14433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [14435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [14437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [14439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), + [14441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [14443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [14445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [14447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 81), + [14449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [14451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [14455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [14457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [14459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), + [14461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [14463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9181), + [14465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [14467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 81), + [14469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [14471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9199), + [14473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [14475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [14477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8516), + [14479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [14481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9257), + [14483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [14485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [14487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), + [14489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), + [14491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [14493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [14495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), + [14497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [14499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [14501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [14503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [14505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [14507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), + [14509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), + [14511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [14513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [14515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), + [14517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8521), + [14519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8716), + [14521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [14523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), + [14525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [14527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), + [14529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [14531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [14533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [14535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [14537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [14539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [14541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8180), + [14543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8580), + [14545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [14547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), + [14549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8595), + [14551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [14553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [14555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8602), + [14557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [14559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8202), + [14561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [14563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [14565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [14567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [14569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [14571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8641), + [14573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [14575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8647), + [14577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8656), + [14579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), + [14581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [14583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8663), + [14585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [14587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8229), + [14591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [14593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [14597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [14599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [14601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8694), + [14605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [14607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8707), + [14609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 81), + [14611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), + [14613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [14615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [14617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8723), + [14621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [14623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8726), + [14625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [14627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8249), + [14629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [14631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [14633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [14635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8735), + [14637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8737), + [14639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), + [14641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [14643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [14645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8743), + [14647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8744), + [14649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [14651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8747), + [14653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8748), + [14655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [14657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8751), + [14659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8752), + [14661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8753), + [14663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8754), + [14665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8755), + [14667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8756), + [14669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8757), + [14671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8758), + [14673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8759), + [14675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8760), + [14677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8761), + [14679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8762), + [14681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [14683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [14685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [14687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [14689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8799), + [14691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [14693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [14695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [14697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [14699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [14701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [14703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [14705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [14707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [14709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [14711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [14713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8824), + [14715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9120), + [14717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), + [14719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8834), + [14721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [14723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [14725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [14727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [14729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9119), + [14731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [14733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [14735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [14737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [14739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [14741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), + [14743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [14745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [14747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [14749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [14751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [14753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 81), + [14755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [14757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [14759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [14761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [14763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [14765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [14767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [14769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [14771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [14773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [14775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [14777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 183), + [14779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [14781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [14783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [14785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [14787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [14789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [14791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [14793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8429), + [14795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8917), + [14797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [14799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [14801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [14803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9127), + [14805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [14807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [14809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8784), + [14811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [14813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [14815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [14817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8983), + [14819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8946), + [14821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [14823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [14825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9219), + [14827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), + [14829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8993), + [14831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [14833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), + [14835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, 0, 55), + [14837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [14839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [14841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [14843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9009), + [14845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [14847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [14849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), + [14851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9015), + [14853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8878), + [14855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), + [14857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9014), + [14859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [14861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9029), + [14863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [14865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), + [14867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9035), + [14869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [14871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [14873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [14875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9048), + [14877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [14879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), + [14881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9054), + [14883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8718), + [14885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [14887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9065), + [14889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [14891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), + [14893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9070), + [14895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [14897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), + [14899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9079), + [14901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [14903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9087), + [14905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4, 0, 0), + [14907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9092), + [14909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [14911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9095), + [14913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [14915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9098), + [14917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9100), + [14919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [14921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9102), + [14923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9104), + [14925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9056), + [14927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9106), + [14929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [14931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9108), + [14933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [14935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9131), + [14937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [14939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [14941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9205), + [14943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [14945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [14947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9216), + [14949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [14951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [14953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9225), + [14955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), + [14957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [14959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9233), + [14961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [14963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9239), + [14965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9242), + [14967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9244), + [14969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9246), + [14971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9248), + [14973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9250), + [14975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9252), + [14977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9254), + [14979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9256), + [14981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9258), + [14983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9260), + [14985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [14987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [14989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [14991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [14993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [14995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [14997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [14999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [15001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [15003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [15005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8660), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token_raw_string_delimiter = 0, + ts_external_token_raw_string_content = 1, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token_raw_string_delimiter] = sym_raw_string_delimiter, + [ts_external_token_raw_string_content] = sym_raw_string_content, +}; + +static const bool ts_external_scanner_states[4][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token_raw_string_delimiter] = true, + [ts_external_token_raw_string_content] = true, + }, + [2] = { + [ts_external_token_raw_string_delimiter] = true, + }, + [3] = { + [ts_external_token_raw_string_content] = true, + }, }; #ifdef __cplusplus extern "C" { #endif -void *tree_sitter_cpp_external_scanner_create(void); -void tree_sitter_cpp_external_scanner_destroy(void *); -bool tree_sitter_cpp_external_scanner_scan(void *, TSLexer *, const bool *); -unsigned tree_sitter_cpp_external_scanner_serialize(void *, char *); -void tree_sitter_cpp_external_scanner_deserialize(void *, const char *, unsigned); +void *tree_sitter_mozcpp_external_scanner_create(void); +void tree_sitter_mozcpp_external_scanner_destroy(void *); +bool tree_sitter_mozcpp_external_scanner_scan(void *, TSLexer *, const bool *); +unsigned tree_sitter_mozcpp_external_scanner_serialize(void *, char *); +void tree_sitter_mozcpp_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 -#define extern __declspec(dllexport) +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) #endif -extern const TSLanguage *tree_sitter_cpp(void) { +TS_PUBLIC const TSLanguage *tree_sitter_mozcpp(void) { static const TSLanguage language = { - .version = LANGUAGE_VERSION, + .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, @@ -408981,18 +699564,18 @@ extern const TSLanguage *tree_sitter_cpp(void) { .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, + .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, .external_scanner = { &ts_external_scanner_states[0][0], ts_external_scanner_symbol_map, - tree_sitter_cpp_external_scanner_create, - tree_sitter_cpp_external_scanner_destroy, - tree_sitter_cpp_external_scanner_scan, - tree_sitter_cpp_external_scanner_serialize, - tree_sitter_cpp_external_scanner_deserialize, + tree_sitter_mozcpp_external_scanner_create, + tree_sitter_mozcpp_external_scanner_destroy, + tree_sitter_mozcpp_external_scanner_scan, + tree_sitter_mozcpp_external_scanner_serialize, + tree_sitter_mozcpp_external_scanner_deserialize, }, .primary_state_ids = ts_primary_state_ids, }; diff --git a/tree-sitter-mozcpp/src/scanner.c b/tree-sitter-mozcpp/src/scanner.c new file mode 100644 index 000000000..e4338cd82 --- /dev/null +++ b/tree-sitter-mozcpp/src/scanner.c @@ -0,0 +1,148 @@ +#include "tree_sitter/alloc.h" +#include "tree_sitter/parser.h" + +#include +#include +#include + +enum TokenType { RAW_STRING_DELIMITER, RAW_STRING_CONTENT }; + +/// The spec limits delimiters to 16 chars +#define MAX_DELIMITER_LENGTH 16 + +typedef struct { + uint8_t delimiter_length; + wchar_t delimiter[MAX_DELIMITER_LENGTH]; +} Scanner; + +static inline void advance(TSLexer *lexer) { lexer->advance(lexer, false); } + +static inline void reset(Scanner *scanner) { + scanner->delimiter_length = 0; + memset(scanner->delimiter, 0, sizeof scanner->delimiter); +} + +/// Scan the raw string delimiter in R"delimiter(content)delimiter" +static bool scan_raw_string_delimiter(Scanner *scanner, TSLexer *lexer) { + if (scanner->delimiter_length > 0) { + // Closing delimiter: must exactly match the opening delimiter. + // We already checked this when scanning content, but this is how we + // know when to stop. We can't stop at ", because R"""hello""" is valid. + for (int i = 0; i < scanner->delimiter_length; ++i) { + if (lexer->lookahead != scanner->delimiter[i]) { + return false; + } + advance(lexer); + } + reset(scanner); + return true; + } + + // Opening delimiter: record the d-char-sequence up to (. + // d-char is any basic character except parens, backslashes, and spaces. + for (;;) { + if (scanner->delimiter_length >= MAX_DELIMITER_LENGTH || lexer->eof(lexer) || lexer->lookahead == '\\' || + iswspace(lexer->lookahead)) { + return false; + } + if (lexer->lookahead == '(') { + // Rather than create a token for an empty delimiter, we fail and + // let the grammar fall back to a delimiter-less rule. + return scanner->delimiter_length > 0; + } + scanner->delimiter[scanner->delimiter_length++] = lexer->lookahead; + advance(lexer); + } +} + +/// Scan the raw string content in R"delimiter(content)delimiter" +static bool scan_raw_string_content(Scanner *scanner, TSLexer *lexer) { + // The progress made through the delimiter since the last ')'. + // The delimiter may not contain ')' so a single counter suffices. + for (int delimiter_index = -1;;) { + // If we hit EOF, consider the content to terminate there. + // This forms an incomplete raw_string_literal, and models the code + // well. + if (lexer->eof(lexer)) { + lexer->mark_end(lexer); + return true; + } + + if (delimiter_index >= 0) { + if (delimiter_index == scanner->delimiter_length) { + if (lexer->lookahead == '"') { + return true; + } + delimiter_index = -1; + } else { + if (lexer->lookahead == scanner->delimiter[delimiter_index]) { + delimiter_index += 1; + } else { + delimiter_index = -1; + } + } + } + + if (delimiter_index == -1 && lexer->lookahead == ')') { + // The content doesn't include the )delimiter" part. + // We must still scan through it, but exclude it from the token. + lexer->mark_end(lexer); + delimiter_index = 0; + } + + advance(lexer); + } +} + +void *tree_sitter_mozcpp_external_scanner_create() { + Scanner *scanner = (Scanner *)ts_calloc(1, sizeof(Scanner)); + memset(scanner, 0, sizeof(Scanner)); + return scanner; +} + +bool tree_sitter_mozcpp_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { + Scanner *scanner = (Scanner *)payload; + + if (valid_symbols[RAW_STRING_DELIMITER] && valid_symbols[RAW_STRING_CONTENT]) { + // we're in error recovery + return false; + } + + // No skipping leading whitespace: raw-string grammar is space-sensitive. + if (valid_symbols[RAW_STRING_DELIMITER]) { + lexer->result_symbol = RAW_STRING_DELIMITER; + return scan_raw_string_delimiter(scanner, lexer); + } + + if (valid_symbols[RAW_STRING_CONTENT]) { + lexer->result_symbol = RAW_STRING_CONTENT; + return scan_raw_string_content(scanner, lexer); + } + + return false; +} + +unsigned tree_sitter_mozcpp_external_scanner_serialize(void *payload, char *buffer) { + static_assert(MAX_DELIMITER_LENGTH * sizeof(wchar_t) < TREE_SITTER_SERIALIZATION_BUFFER_SIZE, + "Serialized delimiter is too long!"); + + Scanner *scanner = (Scanner *)payload; + size_t size = scanner->delimiter_length * sizeof(wchar_t); + memcpy(buffer, scanner->delimiter, size); + return (unsigned)size; +} + +void tree_sitter_mozcpp_external_scanner_deserialize(void *payload, const char *buffer, unsigned length) { + assert(length % sizeof(wchar_t) == 0 && "Can't decode serialized delimiter!"); + + Scanner *scanner = (Scanner *)payload; + scanner->delimiter_length = length / sizeof(wchar_t); + if (length > 0) { + memcpy(&scanner->delimiter[0], buffer, length); + } +} + +void tree_sitter_mozcpp_external_scanner_destroy(void *payload) { + Scanner *scanner = (Scanner *)payload; + ts_free(scanner); +} diff --git a/tree-sitter-mozcpp/src/scanner.cc b/tree-sitter-mozcpp/src/scanner.cc deleted file mode 100644 index ca89bb340..000000000 --- a/tree-sitter-mozcpp/src/scanner.cc +++ /dev/null @@ -1,119 +0,0 @@ -#include -#include -#include - -namespace { - -using std::wstring; -using std::iswspace; - -enum TokenType { - RAW_STRING_LITERAL, -}; - -struct Scanner { - bool scan(TSLexer *lexer, const bool *valid_symbols) { - while (iswspace(lexer->lookahead)) { - lexer->advance(lexer, true); - } - - lexer->result_symbol = RAW_STRING_LITERAL; - - // Raw string literals can start with: R, LR, uR, UR, u8R - // Consume 'R' - if (lexer->lookahead == 'L' || lexer->lookahead == 'U') { - lexer->advance(lexer, false); - if (lexer->lookahead != 'R') { - return false; - } - } else if (lexer->lookahead == 'u') { - lexer->advance(lexer, false); - if (lexer->lookahead == '8') { - lexer->advance(lexer, false); - if (lexer->lookahead != 'R') { - return false; - } - } else if (lexer->lookahead != 'R') { - return false; - } - } else if (lexer->lookahead != 'R') { - return false; - } - lexer->advance(lexer, false); - - // Consume '"' - if (lexer->lookahead != '"') return false; - lexer->advance(lexer, false); - - // Consume '(', delimiter - wstring delimiter; - for (;;) { - if (lexer->lookahead == 0 || lexer->lookahead == '\\' || iswspace(lexer->lookahead)) { - return false; - } - if (lexer->lookahead == '(') { - lexer->advance(lexer, false); - break; - } - delimiter += lexer->lookahead; - lexer->advance(lexer, false); - } - - // Consume content, delimiter, ')', '"' - int delimiter_index = -1; - for (;;) { - if (lexer->lookahead == 0) return false; - - if (delimiter_index >= 0) { - if (static_cast(delimiter_index) == delimiter.size()) { - if (lexer->lookahead == '"') { - lexer->advance(lexer, false); - return true; - } else { - delimiter_index = -1; - } - } else { - if (lexer->lookahead == delimiter[delimiter_index]) { - delimiter_index++; - } else { - delimiter_index = -1; - } - } - } - - if (delimiter_index == -1 && lexer->lookahead == ')') { - delimiter_index = 0; - } - - lexer->advance(lexer, false); - } - } -}; - -} - -extern "C" { - -void *tree_sitter_cpp_external_scanner_create() { - return new Scanner(); -} - -bool tree_sitter_cpp_external_scanner_scan(void *payload, TSLexer *lexer, - const bool *valid_symbols) { - Scanner *scanner = static_cast(payload); - return scanner->scan(lexer, valid_symbols); -} - -unsigned tree_sitter_cpp_external_scanner_serialize(void *payload, char *buffer) { - return 0; -} - -void tree_sitter_cpp_external_scanner_deserialize(void *payload, const char *buffer, unsigned length) { -} - -void tree_sitter_cpp_external_scanner_destroy(void *payload) { - Scanner *scanner = static_cast(payload); - delete scanner; -} - -} diff --git a/tree-sitter-mozcpp/src/tree_sitter/alloc.h b/tree-sitter-mozcpp/src/tree_sitter/alloc.h new file mode 100644 index 000000000..1abdd1201 --- /dev/null +++ b/tree-sitter-mozcpp/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/tree-sitter-mozcpp/src/tree_sitter/array.h b/tree-sitter-mozcpp/src/tree_sitter/array.h new file mode 100644 index 000000000..a17a574f0 --- /dev/null +++ b/tree-sitter-mozcpp/src/tree_sitter/array.h @@ -0,0 +1,291 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(push) +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(pop) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/tree-sitter-mozcpp/src/tree_sitter/parser.h b/tree-sitter-mozcpp/src/tree_sitter/parser.h index 2b14ac104..cdbe64ccc 100644 --- a/tree-sitter-mozcpp/src/tree_sitter/parser.h +++ b/tree-sitter-mozcpp/src/tree_sitter/parser.h @@ -13,12 +13,17 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -typedef uint16_t TSStateId; - #ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata TSLanguageMetadata; +typedef struct TSLanguageMetadata { + uint8_t major_version; + uint8_t minor_version; + uint8_t patch_version; +} TSLanguageMetadata; #endif typedef struct { @@ -27,10 +32,11 @@ typedef struct { bool inherited; } TSFieldMapEntry; +// Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; -} TSFieldMapSlice; +} TSMapSlice; typedef struct { bool visible; @@ -48,6 +54,7 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); }; typedef enum { @@ -79,6 +86,12 @@ typedef struct { uint16_t external_lex_state; } TSLexMode; +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + typedef union { TSParseAction action; struct { @@ -87,8 +100,13 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { - uint32_t version; + uint32_t abi_version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; @@ -104,13 +122,13 @@ struct TSLanguage { const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; - const TSFieldMapSlice *field_map_slices; + const TSMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; + const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -124,15 +142,48 @@ struct TSLanguage { void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; + const char *name; + const TSSymbol *reserved_words; + uint16_t max_reserved_word_set_size; + uint32_t supertype_count; + const TSSymbol *supertype_symbols; + const TSMapSlice *supertype_map_slices; + const TSSymbol *supertype_map_entries; + TSLanguageMetadata metadata; }; +static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + const TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + const TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + #define START_LEXER() \ bool result = false; \ bool skip = false; \ + UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -148,6 +199,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -166,7 +228,7 @@ struct TSLanguage { * Parse Table Macros */ -#define SMALL_STATE(id) id - LARGE_STATE_COUNT +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) #define STATE(id) id @@ -176,7 +238,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value \ + .state = (state_value) \ } \ }} @@ -184,7 +246,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value, \ + .state = (state_value), \ .repetition = true \ } \ }} @@ -197,14 +259,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \ diff --git a/tree-sitter-mozjs/Cargo.toml b/tree-sitter-mozjs/Cargo.toml index c89404593..b1f3915fe 100644 --- a/tree-sitter-mozjs/Cargo.toml +++ b/tree-sitter-mozjs/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-mozjs" description = "Mozjs grammar for the tree-sitter parsing library" -version = "0.20.2" +version = "0.20.3" authors = ["Calixte Denizet "] license = "MIT" readme = "bindings/rust/README.md" @@ -21,13 +21,16 @@ include = [ path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = "=0.22.6" +tree-sitter-language="0.1.0" [build-dependencies] cc = "^1.0" # This dependency is not used at all for this crate, but it is here so that # dependabot can send notifications when there are updates for this grammar -tree-sitter-javascript = "0.21.4" +tree-sitter-javascript = "0.23.1" [package.metadata.cargo-udeps.ignore] build = ["tree-sitter-javascript"] + +[dev-dependencies] +tree-sitter = "=0.25.3" diff --git a/tree-sitter-mozjs/bindings/rust/README.md b/tree-sitter-mozjs/bindings/rust/README.md index b39797b71..a6bd19573 100644 --- a/tree-sitter-mozjs/bindings/rust/README.md +++ b/tree-sitter-mozjs/bindings/rust/README.md @@ -1,6 +1,6 @@ # tree-sitter-mozjs -This crate provides a Mozjs grammar for the [tree-sitter][] parsing library. To +This crate provides a Mozjs grammar for the [tree-sitter][] parsing library. To use this crate, add it to the `[dependencies]` section of your `Cargo.toml` file. (Note that you will probably also need to depend on the [`tree-sitter`][tree-sitter crate] crate to use the parsed result in any useful @@ -8,8 +8,8 @@ way.) ``` toml [dependencies] -tree-sitter = "0.17" -tree-sitter-mozjs = "0.16" +tree-sitter = "0.25.3" +tree-sitter-mozjs = "0.20.3" ``` Typically, you will use the [language][language func] function to add this @@ -22,15 +22,18 @@ let code = r#" } "#; let mut parser = Parser::new(); -parser.set_language(tree_sitter_mozjs::language()).expect("Error loading Mozjs grammar"); -let parsed = parser.parse(code, None); +let language = tree_sitter_mozjs::LANGUAGE; +parser + .set_language(&language.into()) + .expect("Error loading Mozjs parser"); +let tree = parser.parse(code, None).unwrap(); +assert!(!tree.root_node().has_error()); ``` If you have any questions, please reach out to us in the [tree-sitter discussions] page. [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -[language func]: https://docs.rs/tree-sitter-mozjs/*/tree_sitter_mozjs/fn.language.html [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html [tree-sitter]: https://tree-sitter.github.io/ [tree-sitter crate]: https://crates.io/crates/tree-sitter diff --git a/tree-sitter-mozjs/bindings/rust/build.rs b/tree-sitter-mozjs/bindings/rust/build.rs index f5f4f72f0..8458c3269 100644 --- a/tree-sitter-mozjs/bindings/rust/build.rs +++ b/tree-sitter-mozjs/bindings/rust/build.rs @@ -1,20 +1,22 @@ -// Adapted from tree-sitter-javascript bindings -use std::path::Path; -extern crate cc; - fn main() { - let src_dir = Path::new("src"); + let src_dir = std::path::Path::new("src"); let mut c_config = cc::Build::new(); - c_config.include(src_dir); c_config - .flag_if_supported("-Wno-unused-parameter") - .flag_if_supported("-Wno-unused-but-set-variable") - .flag_if_supported("-Wno-trigraphs"); + .std("c11") + .include(src_dir) + .flag_if_supported("-Wno-unused-parameter"); + + #[cfg(target_env = "msvc")] + c_config.flag("-utf-8"); + let parser_path = src_dir.join("parser.c"); c_config.file(&parser_path); + println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); + let scanner_path = src_dir.join("scanner.c"); c_config.file(&scanner_path); - println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); - c_config.compile("parser-scanner"); + println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + + c_config.compile("tree-sitter-mozjs"); } diff --git a/tree-sitter-mozjs/bindings/rust/lib.rs b/tree-sitter-mozjs/bindings/rust/lib.rs index f31d68f99..fa7ccadf0 100644 --- a/tree-sitter-mozjs/bindings/rust/lib.rs +++ b/tree-sitter-mozjs/bindings/rust/lib.rs @@ -5,9 +5,9 @@ // See the LICENSE file in this repo for license details. // ------------------------------------------------------------------------------------------------ -//! This crate provides a Mozjs grammar for the [tree-sitter][] parsing library. +//! This crate provides Mozjs grammar support for the [tree-sitter][] parsing library. //! -//! Typically, you will use the [language][language func] function to add this grammar to a +//! Typically, you will use the [LANGUAGE][] constant to add this grammar to a //! tree-sitter [Parser][], and then use the parser to parse some code: //! //! ``` @@ -19,30 +19,27 @@ //! } //! "#; //! let mut parser = Parser::new(); -//! parser.set_language(&tree_sitter_mozjs::language()).expect("Error loading Mozjs grammar"); -//! let parsed = parser.parse(code, None); -//! # let parsed = parsed.unwrap(); -//! # let root = parsed.root_node(); -//! # assert!(!root.has_error()); +//! let language = tree_sitter_mozjs::LANGUAGE; +//! parser +//! .set_language(&language.into()) +//! .expect("Error loading Mozjs parser"); +//! let tree = parser.parse(code, None).unwrap(); +//! assert!(!tree.root_node().has_error()); //! ``` //! -//! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -//! [language func]: fn.language.html //! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html //! [tree-sitter]: https://tree-sitter.github.io/ -use tree_sitter::Language; +use tree_sitter_language::LanguageFn; extern "C" { - fn tree_sitter_mozjs() -> Language; + fn tree_sitter_mozjs() -> *const (); } -/// Returns the tree-sitter [Language][] for this grammar. +/// The tree-sitter [`LanguageFn`][LanguageFn] for this grammar. /// -/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -pub fn language() -> Language { - unsafe { tree_sitter_mozjs() } -} +/// [LanguageFn]: https://docs.rs/tree-sitter-language/*/tree_sitter_language/struct.LanguageFn.html +pub const LANGUAGE: LanguageFn = unsafe { LanguageFn::from_raw(tree_sitter_mozjs) }; /// The source of the Mozjs tree-sitter grammar description. pub const GRAMMAR: &str = include_str!("../../grammar.js"); @@ -55,10 +52,10 @@ pub const NODE_TYPES: &str = include_str!("../../src/node-types.json"); #[cfg(test)] mod tests { #[test] - fn can_load_grammar() { + fn test_can_load_grammar() { let mut parser = tree_sitter::Parser::new(); parser - .set_language(&super::language()) - .expect("Error loading Mozjs grammar"); + .set_language(&super::LANGUAGE.into()) + .expect("Error loading Mozjs parser"); } } diff --git a/tree-sitter-mozjs/package.json b/tree-sitter-mozjs/package.json index 168dd3223..d20d76c9f 100644 --- a/tree-sitter-mozjs/package.json +++ b/tree-sitter-mozjs/package.json @@ -13,7 +13,7 @@ "nan": "^2.14.2" }, "devDependencies": { - "tree-sitter-cli": "^0.20.7" + "tree-sitter-cli": "^0.25.3" }, "scripts": { "build": "tree-sitter generate && node-gyp build", diff --git a/tree-sitter-mozjs/src/grammar.json b/tree-sitter-mozjs/src/grammar.json index 6f54abda1..01190efc2 100644 --- a/tree-sitter-mozjs/src/grammar.json +++ b/tree-sitter-mozjs/src/grammar.json @@ -1,5 +1,7 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "mozjs", + "inherits": "javascript", "word": "identifier", "rules": { "program": { @@ -1729,10 +1731,6 @@ "type": "SYMBOL", "name": "primary_expression" }, - { - "type": "SYMBOL", - "name": "glimmer_template" - }, { "type": "SYMBOL", "name": "_jsx_element" @@ -2405,76 +2403,6 @@ } ] }, - "glimmer_template": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "open_tag", - "content": { - "type": "SYMBOL", - "name": "glimmer_opening_tag" - } - }, - { - "type": "FIELD", - "name": "content", - "content": { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_glimmer_template_content" - } - } - }, - { - "type": "FIELD", - "name": "close_tag", - "content": { - "type": "SYMBOL", - "name": "glimmer_closing_tag" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "open_tag", - "content": { - "type": "SYMBOL", - "name": "glimmer_opening_tag" - } - }, - { - "type": "FIELD", - "name": "close_tag", - "content": { - "type": "SYMBOL", - "name": "glimmer_closing_tag" - } - } - ] - } - ] - }, - "_glimmer_template_content": { - "type": "PATTERN", - "value": ".{1,}" - }, - "glimmer_opening_tag": { - "type": "STRING", - "value": "" - }, "_jsx_element": { "type": "CHOICE", "members": [ @@ -3464,19 +3392,44 @@ { "type": "FIELD", "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "arguments" + } + } + ] + } + }, + { + "type": "PREC", + "value": "template_call", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "arguments" + "name": "primary_expression" }, { "type": "SYMBOL", - "name": "template_string" + "name": "new_expression" } ] } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "template_string" + } } ] } @@ -6199,14 +6152,6 @@ "name": "class_static_block" } }, - { - "type": "FIELD", - "name": "template", - "content": { - "type": "SYMBOL", - "name": "glimmer_template" - } - }, { "type": "STRING", "value": ";" @@ -6769,6 +6714,10 @@ "type": "STRING", "value": "member" }, + { + "type": "STRING", + "value": "template_call" + }, { "type": "STRING", "value": "call" @@ -6857,6 +6806,10 @@ "type": "STRING", "value": "member" }, + { + "type": "STRING", + "value": "template_call" + }, { "type": "STRING", "value": "new" @@ -6991,6 +6944,6 @@ "expression", "primary_expression", "pattern" - ] -} - + ], + "reserved": {} +} \ No newline at end of file diff --git a/tree-sitter-mozjs/src/node-types.json b/tree-sitter-mozjs/src/node-types.json index e5e4cd1a6..bbabb45a7 100644 --- a/tree-sitter-mozjs/src/node-types.json +++ b/tree-sitter-mozjs/src/node-types.json @@ -45,10 +45,6 @@ "type": "binary_expression", "named": true }, - { - "type": "glimmer_template", - "named": true - }, { "type": "jsx_element", "named": true @@ -890,16 +886,6 @@ "named": true } ] - }, - "template": { - "multiple": true, - "required": false, - "types": [ - { - "type": "glimmer_template", - "named": true - } - ] } } }, @@ -1628,32 +1614,6 @@ } } }, - { - "type": "glimmer_template", - "named": true, - "fields": { - "close_tag": { - "multiple": false, - "required": true, - "types": [ - { - "type": "glimmer_closing_tag", - "named": true - } - ] - }, - "open_tag": { - "multiple": false, - "required": true, - "types": [ - { - "type": "glimmer_opening_tag", - "named": true - } - ] - } - } - }, { "type": "if_statement", "named": true, @@ -2462,6 +2422,7 @@ { "type": "program", "named": true, + "root": true, "fields": {}, "children": { "multiple": true, @@ -3340,7 +3301,8 @@ }, { "type": "comment", - "named": true + "named": true, + "extra": true }, { "type": "const", @@ -3406,14 +3368,6 @@ "type": "get", "named": false }, - { - "type": "glimmer_closing_tag", - "named": true - }, - { - "type": "glimmer_opening_tag", - "named": true - }, { "type": "hash_bang_line", "named": true @@ -3424,7 +3378,8 @@ }, { "type": "html_comment", - "named": true + "named": true, + "extra": true }, { "type": "identifier", diff --git a/tree-sitter-mozjs/src/parser.c b/tree-sitter-mozjs/src/parser.c index df129d7eb..e47859579 100644 --- a/tree-sitter-mozjs/src/parser.c +++ b/tree-sitter-mozjs/src/parser.c @@ -1,30 +1,25 @@ -#include +/* Automatically generated by tree-sitter v0.25.3 (2a835ee029dca1c325e6f1c01dbce40396f6123e) */ + +#include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#ifdef _MSC_VER -#pragma optimize("", off) -#elif defined(__clang__) -#pragma clang optimize off -#elif defined(__GNUC__) -#pragma GCC optimize ("O0") -#endif - #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1751 -#define LARGE_STATE_COUNT 331 -#define SYMBOL_COUNT 265 +#define STATE_COUNT 1731 +#define LARGE_STATE_COUNT 328 +#define SYMBOL_COUNT 260 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 137 +#define TOKEN_COUNT 134 #define EXTERNAL_TOKEN_COUNT 8 -#define FIELD_COUNT 38 +#define FIELD_COUNT 36 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 113 +#define MAX_RESERVED_WORD_SET_SIZE 0 +#define PRODUCTION_ID_COUNT 111 +#define SUPERTYPE_COUNT 0 -enum { +enum ts_symbol_identifiers { sym_identifier = 1, sym_hash_bang_line = 2, anon_sym_export = 3, @@ -66,233 +61,228 @@ enum { anon_sym_EQ = 39, anon_sym_LBRACK = 40, anon_sym_RBRACK = 41, - sym__glimmer_template_content = 42, - sym_glimmer_opening_tag = 43, - sym_glimmer_closing_tag = 44, - sym_html_character_reference = 45, - anon_sym_LT = 46, - anon_sym_GT = 47, - sym_jsx_identifier = 48, - anon_sym_DOT = 49, - anon_sym_LT_SLASH = 50, - anon_sym_SLASH_GT = 51, - anon_sym_DQUOTE = 52, - anon_sym_SQUOTE = 53, - sym_unescaped_double_jsx_string_fragment = 54, - sym_unescaped_single_jsx_string_fragment = 55, - anon_sym_class = 56, - anon_sym_extends = 57, - anon_sym_async = 58, - anon_sym_function = 59, - anon_sym_EQ_GT = 60, - sym_optional_chain = 61, - anon_sym_new = 62, - anon_sym_PLUS_EQ = 63, - anon_sym_DASH_EQ = 64, - anon_sym_STAR_EQ = 65, - anon_sym_SLASH_EQ = 66, - anon_sym_PERCENT_EQ = 67, - anon_sym_CARET_EQ = 68, - anon_sym_AMP_EQ = 69, - anon_sym_PIPE_EQ = 70, - anon_sym_GT_GT_EQ = 71, - anon_sym_GT_GT_GT_EQ = 72, - anon_sym_LT_LT_EQ = 73, - anon_sym_STAR_STAR_EQ = 74, - anon_sym_AMP_AMP_EQ = 75, - anon_sym_PIPE_PIPE_EQ = 76, - anon_sym_QMARK_QMARK_EQ = 77, - anon_sym_DOT_DOT_DOT = 78, - anon_sym_AMP_AMP = 79, - anon_sym_PIPE_PIPE = 80, - anon_sym_GT_GT = 81, - anon_sym_GT_GT_GT = 82, - anon_sym_LT_LT = 83, - anon_sym_AMP = 84, - anon_sym_CARET = 85, - anon_sym_PIPE = 86, - anon_sym_PLUS = 87, - anon_sym_DASH = 88, - anon_sym_SLASH = 89, - anon_sym_PERCENT = 90, - anon_sym_STAR_STAR = 91, - anon_sym_LT_EQ = 92, - anon_sym_EQ_EQ = 93, - anon_sym_EQ_EQ_EQ = 94, - anon_sym_BANG_EQ = 95, - anon_sym_BANG_EQ_EQ = 96, - anon_sym_GT_EQ = 97, - anon_sym_QMARK_QMARK = 98, - anon_sym_instanceof = 99, - anon_sym_BANG = 100, - anon_sym_TILDE = 101, - anon_sym_typeof = 102, - anon_sym_void = 103, - anon_sym_delete = 104, - anon_sym_PLUS_PLUS = 105, - anon_sym_DASH_DASH = 106, - sym_unescaped_double_string_fragment = 107, - sym_unescaped_single_string_fragment = 108, - sym_escape_sequence = 109, - sym_comment = 110, - anon_sym_BQUOTE = 111, - anon_sym_DOLLAR_LBRACE = 112, - anon_sym_SLASH2 = 113, - sym_regex_pattern = 114, - sym_regex_flags = 115, - sym_number = 116, - sym_private_property_identifier = 117, - anon_sym_target = 118, - anon_sym_meta = 119, - sym_this = 120, - sym_super = 121, - sym_true = 122, - sym_false = 123, - sym_null = 124, - sym_undefined = 125, - anon_sym_AT = 126, - anon_sym_static = 127, - aux_sym_method_definition_token1 = 128, - anon_sym_get = 129, - anon_sym_set = 130, - sym_preproc = 131, - sym__automatic_semicolon = 132, - sym__template_chars = 133, - sym__ternary_qmark = 134, - sym_html_comment = 135, - sym_jsx_text = 136, - sym_program = 137, - sym_export_statement = 138, - sym_namespace_export = 139, - sym_export_clause = 140, - sym_export_specifier = 141, - sym__module_export_name = 142, - sym_declaration = 143, - sym_import = 144, - sym_import_statement = 145, - sym_import_clause = 146, - sym__from_clause = 147, - sym_namespace_import = 148, - sym_named_imports = 149, - sym_import_specifier = 150, - sym_import_attribute = 151, - sym_statement = 152, - sym_expression_statement = 153, - sym_variable_declaration = 154, - sym_lexical_declaration = 155, - sym_variable_declarator = 156, - sym_statement_block = 157, - sym_else_clause = 158, - sym_if_statement = 159, - sym_switch_statement = 160, - sym_for_statement = 161, - sym_for_in_statement = 162, - sym__for_header = 163, - sym_while_statement = 164, - sym_do_statement = 165, - sym_try_statement = 166, - sym_with_statement = 167, - sym_break_statement = 168, - sym_continue_statement = 169, - sym_debugger_statement = 170, - sym_return_statement = 171, - sym_throw_statement = 172, - sym_empty_statement = 173, - sym_labeled_statement = 174, - sym_switch_body = 175, - sym_switch_case = 176, - sym_switch_default = 177, - sym_catch_clause = 178, - sym_finally_clause = 179, - sym_parenthesized_expression = 180, - sym_expression = 181, - sym_primary_expression = 182, - sym_yield_expression = 183, - sym_object = 184, - sym_object_pattern = 185, - sym_assignment_pattern = 186, - sym_object_assignment_pattern = 187, - sym_array = 188, - sym_array_pattern = 189, - sym_glimmer_template = 190, - sym_jsx_element = 191, - sym_jsx_expression = 192, - sym_jsx_opening_element = 193, - sym_nested_identifier = 194, - sym_jsx_namespace_name = 195, - sym_jsx_closing_element = 196, - sym_jsx_self_closing_element = 197, - sym_jsx_attribute = 198, - sym__jsx_string = 199, - sym_class = 200, - sym_class_declaration = 201, - sym_class_heritage = 202, - sym_function_expression = 203, - sym_function_declaration = 204, - sym_generator_function = 205, - sym_generator_function_declaration = 206, - sym_arrow_function = 207, - sym_call_expression = 208, - sym_new_expression = 209, - sym_await_expression = 210, - sym_member_expression = 211, - sym_subscript_expression = 212, - sym_assignment_expression = 213, - sym__augmented_assignment_lhs = 214, - sym_augmented_assignment_expression = 215, - sym__initializer = 216, - sym__destructuring_pattern = 217, - sym_spread_element = 218, - sym_ternary_expression = 219, - sym_binary_expression = 220, - sym_unary_expression = 221, - sym_update_expression = 222, - sym_sequence_expression = 223, - sym_string = 224, - sym_template_string = 225, - sym_template_substitution = 226, - sym_regex = 227, - sym_meta_property = 228, - sym_arguments = 229, - sym_decorator = 230, - sym_decorator_member_expression = 231, - sym_decorator_call_expression = 232, - sym_class_body = 233, - sym_field_definition = 234, - sym_formal_parameters = 235, - sym_class_static_block = 236, - sym_pattern = 237, - sym_rest_pattern = 238, - sym_method_definition = 239, - sym_pair = 240, - sym_pair_pattern = 241, - sym__property_name = 242, - sym_computed_property_name = 243, - aux_sym_program_repeat1 = 244, - aux_sym_export_statement_repeat1 = 245, - aux_sym_export_clause_repeat1 = 246, - aux_sym_named_imports_repeat1 = 247, - aux_sym_variable_declaration_repeat1 = 248, - aux_sym_switch_body_repeat1 = 249, - aux_sym_object_repeat1 = 250, - aux_sym_object_pattern_repeat1 = 251, - aux_sym_array_repeat1 = 252, - aux_sym_array_pattern_repeat1 = 253, - aux_sym_glimmer_template_repeat1 = 254, - aux_sym_jsx_element_repeat1 = 255, - aux_sym_jsx_opening_element_repeat1 = 256, - aux_sym__jsx_string_repeat1 = 257, - aux_sym__jsx_string_repeat2 = 258, - aux_sym_sequence_expression_repeat1 = 259, - aux_sym_string_repeat1 = 260, - aux_sym_string_repeat2 = 261, - aux_sym_template_string_repeat1 = 262, - aux_sym_class_body_repeat1 = 263, - aux_sym_formal_parameters_repeat1 = 264, - alias_sym_property_identifier = 265, - alias_sym_shorthand_property_identifier = 266, - alias_sym_shorthand_property_identifier_pattern = 267, - alias_sym_statement_identifier = 268, + sym_html_character_reference = 42, + anon_sym_LT = 43, + anon_sym_GT = 44, + sym_jsx_identifier = 45, + anon_sym_DOT = 46, + anon_sym_LT_SLASH = 47, + anon_sym_SLASH_GT = 48, + anon_sym_DQUOTE = 49, + anon_sym_SQUOTE = 50, + sym_unescaped_double_jsx_string_fragment = 51, + sym_unescaped_single_jsx_string_fragment = 52, + anon_sym_class = 53, + anon_sym_extends = 54, + anon_sym_async = 55, + anon_sym_function = 56, + anon_sym_EQ_GT = 57, + sym_optional_chain = 58, + anon_sym_new = 59, + anon_sym_PLUS_EQ = 60, + anon_sym_DASH_EQ = 61, + anon_sym_STAR_EQ = 62, + anon_sym_SLASH_EQ = 63, + anon_sym_PERCENT_EQ = 64, + anon_sym_CARET_EQ = 65, + anon_sym_AMP_EQ = 66, + anon_sym_PIPE_EQ = 67, + anon_sym_GT_GT_EQ = 68, + anon_sym_GT_GT_GT_EQ = 69, + anon_sym_LT_LT_EQ = 70, + anon_sym_STAR_STAR_EQ = 71, + anon_sym_AMP_AMP_EQ = 72, + anon_sym_PIPE_PIPE_EQ = 73, + anon_sym_QMARK_QMARK_EQ = 74, + anon_sym_DOT_DOT_DOT = 75, + anon_sym_AMP_AMP = 76, + anon_sym_PIPE_PIPE = 77, + anon_sym_GT_GT = 78, + anon_sym_GT_GT_GT = 79, + anon_sym_LT_LT = 80, + anon_sym_AMP = 81, + anon_sym_CARET = 82, + anon_sym_PIPE = 83, + anon_sym_PLUS = 84, + anon_sym_DASH = 85, + anon_sym_SLASH = 86, + anon_sym_PERCENT = 87, + anon_sym_STAR_STAR = 88, + anon_sym_LT_EQ = 89, + anon_sym_EQ_EQ = 90, + anon_sym_EQ_EQ_EQ = 91, + anon_sym_BANG_EQ = 92, + anon_sym_BANG_EQ_EQ = 93, + anon_sym_GT_EQ = 94, + anon_sym_QMARK_QMARK = 95, + anon_sym_instanceof = 96, + anon_sym_BANG = 97, + anon_sym_TILDE = 98, + anon_sym_typeof = 99, + anon_sym_void = 100, + anon_sym_delete = 101, + anon_sym_PLUS_PLUS = 102, + anon_sym_DASH_DASH = 103, + sym_unescaped_double_string_fragment = 104, + sym_unescaped_single_string_fragment = 105, + sym_escape_sequence = 106, + sym_comment = 107, + anon_sym_BQUOTE = 108, + anon_sym_DOLLAR_LBRACE = 109, + anon_sym_SLASH2 = 110, + sym_regex_pattern = 111, + sym_regex_flags = 112, + sym_number = 113, + sym_private_property_identifier = 114, + anon_sym_target = 115, + anon_sym_meta = 116, + sym_this = 117, + sym_super = 118, + sym_true = 119, + sym_false = 120, + sym_null = 121, + sym_undefined = 122, + anon_sym_AT = 123, + anon_sym_static = 124, + aux_sym_method_definition_token1 = 125, + anon_sym_get = 126, + anon_sym_set = 127, + sym_preproc = 128, + sym__automatic_semicolon = 129, + sym__template_chars = 130, + sym__ternary_qmark = 131, + sym_html_comment = 132, + sym_jsx_text = 133, + sym_program = 134, + sym_export_statement = 135, + sym_namespace_export = 136, + sym_export_clause = 137, + sym_export_specifier = 138, + sym__module_export_name = 139, + sym_declaration = 140, + sym_import = 141, + sym_import_statement = 142, + sym_import_clause = 143, + sym__from_clause = 144, + sym_namespace_import = 145, + sym_named_imports = 146, + sym_import_specifier = 147, + sym_import_attribute = 148, + sym_statement = 149, + sym_expression_statement = 150, + sym_variable_declaration = 151, + sym_lexical_declaration = 152, + sym_variable_declarator = 153, + sym_statement_block = 154, + sym_else_clause = 155, + sym_if_statement = 156, + sym_switch_statement = 157, + sym_for_statement = 158, + sym_for_in_statement = 159, + sym__for_header = 160, + sym_while_statement = 161, + sym_do_statement = 162, + sym_try_statement = 163, + sym_with_statement = 164, + sym_break_statement = 165, + sym_continue_statement = 166, + sym_debugger_statement = 167, + sym_return_statement = 168, + sym_throw_statement = 169, + sym_empty_statement = 170, + sym_labeled_statement = 171, + sym_switch_body = 172, + sym_switch_case = 173, + sym_switch_default = 174, + sym_catch_clause = 175, + sym_finally_clause = 176, + sym_parenthesized_expression = 177, + sym_expression = 178, + sym_primary_expression = 179, + sym_yield_expression = 180, + sym_object = 181, + sym_object_pattern = 182, + sym_assignment_pattern = 183, + sym_object_assignment_pattern = 184, + sym_array = 185, + sym_array_pattern = 186, + sym_jsx_element = 187, + sym_jsx_expression = 188, + sym_jsx_opening_element = 189, + sym_nested_identifier = 190, + sym_jsx_namespace_name = 191, + sym_jsx_closing_element = 192, + sym_jsx_self_closing_element = 193, + sym_jsx_attribute = 194, + sym__jsx_string = 195, + sym_class = 196, + sym_class_declaration = 197, + sym_class_heritage = 198, + sym_function_expression = 199, + sym_function_declaration = 200, + sym_generator_function = 201, + sym_generator_function_declaration = 202, + sym_arrow_function = 203, + sym_call_expression = 204, + sym_new_expression = 205, + sym_await_expression = 206, + sym_member_expression = 207, + sym_subscript_expression = 208, + sym_assignment_expression = 209, + sym__augmented_assignment_lhs = 210, + sym_augmented_assignment_expression = 211, + sym__initializer = 212, + sym__destructuring_pattern = 213, + sym_spread_element = 214, + sym_ternary_expression = 215, + sym_binary_expression = 216, + sym_unary_expression = 217, + sym_update_expression = 218, + sym_sequence_expression = 219, + sym_string = 220, + sym_template_string = 221, + sym_template_substitution = 222, + sym_regex = 223, + sym_meta_property = 224, + sym_arguments = 225, + sym_decorator = 226, + sym_decorator_member_expression = 227, + sym_decorator_call_expression = 228, + sym_class_body = 229, + sym_field_definition = 230, + sym_formal_parameters = 231, + sym_class_static_block = 232, + sym_pattern = 233, + sym_rest_pattern = 234, + sym_method_definition = 235, + sym_pair = 236, + sym_pair_pattern = 237, + sym__property_name = 238, + sym_computed_property_name = 239, + aux_sym_program_repeat1 = 240, + aux_sym_export_statement_repeat1 = 241, + aux_sym_export_clause_repeat1 = 242, + aux_sym_named_imports_repeat1 = 243, + aux_sym_variable_declaration_repeat1 = 244, + aux_sym_switch_body_repeat1 = 245, + aux_sym_object_repeat1 = 246, + aux_sym_object_pattern_repeat1 = 247, + aux_sym_array_repeat1 = 248, + aux_sym_array_pattern_repeat1 = 249, + aux_sym_jsx_element_repeat1 = 250, + aux_sym_jsx_opening_element_repeat1 = 251, + aux_sym__jsx_string_repeat1 = 252, + aux_sym__jsx_string_repeat2 = 253, + aux_sym_sequence_expression_repeat1 = 254, + aux_sym_string_repeat1 = 255, + aux_sym_string_repeat2 = 256, + aux_sym_template_string_repeat1 = 257, + aux_sym_class_body_repeat1 = 258, + aux_sym_formal_parameters_repeat1 = 259, + alias_sym_property_identifier = 260, + alias_sym_shorthand_property_identifier = 261, + alias_sym_shorthand_property_identifier_pattern = 262, + alias_sym_statement_identifier = 263, }; static const char * const ts_symbol_names[] = { @@ -338,9 +328,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_EQ] = "=", [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", - [sym__glimmer_template_content] = "_glimmer_template_content", - [sym_glimmer_opening_tag] = "glimmer_opening_tag", - [sym_glimmer_closing_tag] = "glimmer_closing_tag", [sym_html_character_reference] = "html_character_reference", [anon_sym_LT] = "<", [anon_sym_GT] = ">", @@ -486,7 +473,6 @@ static const char * const ts_symbol_names[] = { [sym_object_assignment_pattern] = "object_assignment_pattern", [sym_array] = "array", [sym_array_pattern] = "array_pattern", - [sym_glimmer_template] = "glimmer_template", [sym_jsx_element] = "jsx_element", [sym_jsx_expression] = "jsx_expression", [sym_jsx_opening_element] = "jsx_opening_element", @@ -550,7 +536,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_object_pattern_repeat1] = "object_pattern_repeat1", [aux_sym_array_repeat1] = "array_repeat1", [aux_sym_array_pattern_repeat1] = "array_pattern_repeat1", - [aux_sym_glimmer_template_repeat1] = "glimmer_template_repeat1", [aux_sym_jsx_element_repeat1] = "jsx_element_repeat1", [aux_sym_jsx_opening_element_repeat1] = "jsx_opening_element_repeat1", [aux_sym__jsx_string_repeat1] = "_jsx_string_repeat1", @@ -610,9 +595,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_EQ] = anon_sym_EQ, [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_RBRACK] = anon_sym_RBRACK, - [sym__glimmer_template_content] = sym__glimmer_template_content, - [sym_glimmer_opening_tag] = sym_glimmer_opening_tag, - [sym_glimmer_closing_tag] = sym_glimmer_closing_tag, [sym_html_character_reference] = sym_html_character_reference, [anon_sym_LT] = anon_sym_LT, [anon_sym_GT] = anon_sym_GT, @@ -758,7 +740,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_object_assignment_pattern] = sym_object_assignment_pattern, [sym_array] = sym_array, [sym_array_pattern] = sym_array_pattern, - [sym_glimmer_template] = sym_glimmer_template, [sym_jsx_element] = sym_jsx_element, [sym_jsx_expression] = sym_jsx_expression, [sym_jsx_opening_element] = sym_jsx_opening_element, @@ -822,7 +803,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_object_pattern_repeat1] = aux_sym_object_pattern_repeat1, [aux_sym_array_repeat1] = aux_sym_array_repeat1, [aux_sym_array_pattern_repeat1] = aux_sym_array_pattern_repeat1, - [aux_sym_glimmer_template_repeat1] = aux_sym_glimmer_template_repeat1, [aux_sym_jsx_element_repeat1] = aux_sym_jsx_element_repeat1, [aux_sym_jsx_opening_element_repeat1] = aux_sym_jsx_opening_element_repeat1, [aux_sym__jsx_string_repeat1] = aux_sym__jsx_string_repeat1, @@ -1008,18 +988,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym__glimmer_template_content] = { - .visible = false, - .named = true, - }, - [sym_glimmer_opening_tag] = { - .visible = true, - .named = true, - }, - [sym_glimmer_closing_tag] = { - .visible = true, - .named = true, - }, [sym_html_character_reference] = { .visible = true, .named = true, @@ -1604,10 +1572,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_glimmer_template] = { - .visible = true, - .named = true, - }, [sym_jsx_element] = { .visible = true, .named = true, @@ -1861,10 +1825,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_glimmer_template_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_jsx_element_repeat1] = { .visible = false, .named = false, @@ -1923,7 +1883,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, }; -enum { +enum ts_field_identifiers { field_alias = 1, field_alternative = 2, field_argument = 3, @@ -1934,34 +1894,32 @@ enum { field_condition = 8, field_consequence = 9, field_constructor = 10, - field_content = 11, - field_declaration = 12, - field_decorator = 13, - field_finalizer = 14, - field_flags = 15, - field_function = 16, - field_handler = 17, - field_increment = 18, - field_index = 19, - field_initializer = 20, - field_key = 21, - field_kind = 22, - field_label = 23, - field_left = 24, - field_member = 25, - field_name = 26, - field_object = 27, - field_open_tag = 28, - field_operator = 29, - field_optional_chain = 30, - field_parameter = 31, - field_parameters = 32, - field_pattern = 33, - field_property = 34, - field_right = 35, - field_source = 36, - field_template = 37, - field_value = 38, + field_declaration = 11, + field_decorator = 12, + field_finalizer = 13, + field_flags = 14, + field_function = 15, + field_handler = 16, + field_increment = 17, + field_index = 18, + field_initializer = 19, + field_key = 20, + field_kind = 21, + field_label = 22, + field_left = 23, + field_member = 24, + field_name = 25, + field_object = 26, + field_open_tag = 27, + field_operator = 28, + field_optional_chain = 29, + field_parameter = 30, + field_parameters = 31, + field_pattern = 32, + field_property = 33, + field_right = 34, + field_source = 35, + field_value = 36, }; static const char * const ts_field_names[] = { @@ -1976,7 +1934,6 @@ static const char * const ts_field_names[] = { [field_condition] = "condition", [field_consequence] = "consequence", [field_constructor] = "constructor", - [field_content] = "content", [field_declaration] = "declaration", [field_decorator] = "decorator", [field_finalizer] = "finalizer", @@ -2002,17 +1959,16 @@ static const char * const ts_field_names[] = { [field_property] = "property", [field_right] = "right", [field_source] = "source", - [field_template] = "template", [field_value] = "value", }; -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { +static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [2] = {.index = 0, .length = 1}, [3] = {.index = 1, .length = 1}, [5] = {.index = 2, .length = 1}, [6] = {.index = 3, .length = 1}, - [7] = {.index = 4, .length = 2}, - [8] = {.index = 6, .length = 1}, + [7] = {.index = 4, .length = 1}, + [8] = {.index = 5, .length = 2}, [9] = {.index = 7, .length = 2}, [10] = {.index = 9, .length = 2}, [11] = {.index = 11, .length = 2}, @@ -2032,88 +1988,86 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [28] = {.index = 40, .length = 2}, [29] = {.index = 42, .length = 2}, [30] = {.index = 44, .length = 1}, - [31] = {.index = 45, .length = 3}, - [32] = {.index = 48, .length = 1}, - [33] = {.index = 49, .length = 1}, - [34] = {.index = 50, .length = 1}, - [35] = {.index = 51, .length = 1}, - [36] = {.index = 52, .length = 1}, - [37] = {.index = 53, .length = 2}, - [38] = {.index = 55, .length = 1}, - [39] = {.index = 56, .length = 2}, - [40] = {.index = 58, .length = 2}, - [41] = {.index = 60, .length = 1}, - [42] = {.index = 18, .length = 2}, - [43] = {.index = 20, .length = 2}, - [44] = {.index = 61, .length = 3}, - [45] = {.index = 64, .length = 2}, - [46] = {.index = 64, .length = 2}, - [47] = {.index = 66, .length = 3}, - [48] = {.index = 66, .length = 3}, - [49] = {.index = 69, .length = 3}, + [31] = {.index = 45, .length = 1}, + [32] = {.index = 46, .length = 1}, + [33] = {.index = 47, .length = 1}, + [34] = {.index = 48, .length = 1}, + [35] = {.index = 49, .length = 2}, + [36] = {.index = 51, .length = 1}, + [37] = {.index = 52, .length = 2}, + [38] = {.index = 54, .length = 2}, + [39] = {.index = 56, .length = 1}, + [40] = {.index = 18, .length = 2}, + [41] = {.index = 20, .length = 2}, + [42] = {.index = 57, .length = 3}, + [43] = {.index = 60, .length = 2}, + [44] = {.index = 60, .length = 2}, + [45] = {.index = 62, .length = 3}, + [46] = {.index = 62, .length = 3}, + [47] = {.index = 65, .length = 3}, + [48] = {.index = 68, .length = 2}, + [49] = {.index = 70, .length = 2}, [50] = {.index = 72, .length = 2}, [51] = {.index = 74, .length = 2}, - [52] = {.index = 76, .length = 2}, - [53] = {.index = 78, .length = 2}, - [54] = {.index = 80, .length = 1}, - [55] = {.index = 81, .length = 1}, - [56] = {.index = 18, .length = 2}, - [57] = {.index = 82, .length = 2}, + [52] = {.index = 76, .length = 1}, + [53] = {.index = 77, .length = 1}, + [54] = {.index = 18, .length = 2}, + [55] = {.index = 78, .length = 2}, + [56] = {.index = 80, .length = 3}, + [57] = {.index = 83, .length = 1}, [58] = {.index = 84, .length = 3}, - [59] = {.index = 87, .length = 1}, - [60] = {.index = 88, .length = 3}, - [61] = {.index = 91, .length = 6}, - [62] = {.index = 97, .length = 2}, - [63] = {.index = 99, .length = 3}, - [64] = {.index = 102, .length = 2}, - [65] = {.index = 104, .length = 2}, - [66] = {.index = 106, .length = 1}, - [67] = {.index = 107, .length = 2}, - [68] = {.index = 109, .length = 2}, - [69] = {.index = 111, .length = 2}, - [70] = {.index = 113, .length = 4}, - [71] = {.index = 117, .length = 2}, - [72] = {.index = 119, .length = 2}, - [73] = {.index = 121, .length = 2}, - [74] = {.index = 119, .length = 2}, - [75] = {.index = 123, .length = 2}, - [76] = {.index = 125, .length = 3}, - [77] = {.index = 128, .length = 2}, - [78] = {.index = 130, .length = 2}, - [79] = {.index = 132, .length = 2}, - [80] = {.index = 134, .length = 3}, - [81] = {.index = 137, .length = 2}, - [82] = {.index = 139, .length = 2}, - [83] = {.index = 141, .length = 4}, - [84] = {.index = 145, .length = 2}, - [85] = {.index = 147, .length = 2}, - [86] = {.index = 149, .length = 3}, - [87] = {.index = 152, .length = 2}, - [88] = {.index = 154, .length = 3}, - [89] = {.index = 157, .length = 3}, - [90] = {.index = 160, .length = 3}, - [91] = {.index = 163, .length = 2}, + [59] = {.index = 87, .length = 6}, + [60] = {.index = 93, .length = 2}, + [61] = {.index = 95, .length = 3}, + [62] = {.index = 98, .length = 2}, + [63] = {.index = 100, .length = 2}, + [64] = {.index = 102, .length = 1}, + [65] = {.index = 103, .length = 2}, + [66] = {.index = 105, .length = 2}, + [67] = {.index = 107, .length = 1}, + [68] = {.index = 108, .length = 2}, + [69] = {.index = 110, .length = 2}, + [70] = {.index = 112, .length = 2}, + [71] = {.index = 114, .length = 2}, + [72] = {.index = 112, .length = 2}, + [73] = {.index = 116, .length = 2}, + [74] = {.index = 118, .length = 3}, + [75] = {.index = 121, .length = 2}, + [76] = {.index = 123, .length = 2}, + [77] = {.index = 125, .length = 2}, + [78] = {.index = 127, .length = 3}, + [79] = {.index = 130, .length = 2}, + [80] = {.index = 132, .length = 2}, + [81] = {.index = 134, .length = 4}, + [82] = {.index = 138, .length = 2}, + [83] = {.index = 140, .length = 2}, + [84] = {.index = 142, .length = 3}, + [85] = {.index = 145, .length = 2}, + [86] = {.index = 147, .length = 3}, + [87] = {.index = 150, .length = 3}, + [88] = {.index = 153, .length = 3}, + [89] = {.index = 156, .length = 2}, + [90] = {.index = 158, .length = 3}, + [91] = {.index = 161, .length = 4}, [92] = {.index = 165, .length = 3}, - [93] = {.index = 168, .length = 4}, - [94] = {.index = 172, .length = 3}, - [95] = {.index = 172, .length = 3}, - [96] = {.index = 175, .length = 3}, - [97] = {.index = 178, .length = 3}, - [98] = {.index = 181, .length = 3}, - [99] = {.index = 184, .length = 4}, - [100] = {.index = 188, .length = 2}, - [101] = {.index = 190, .length = 4}, - [102] = {.index = 194, .length = 4}, - [103] = {.index = 198, .length = 4}, - [104] = {.index = 202, .length = 3}, - [105] = {.index = 205, .length = 2}, - [106] = {.index = 207, .length = 4}, - [107] = {.index = 211, .length = 5}, - [108] = {.index = 216, .length = 4}, - [109] = {.index = 220, .length = 5}, - [110] = {.index = 225, .length = 4}, - [111] = {.index = 229, .length = 4}, - [112] = {.index = 233, .length = 5}, + [93] = {.index = 165, .length = 3}, + [94] = {.index = 168, .length = 3}, + [95] = {.index = 171, .length = 3}, + [96] = {.index = 174, .length = 3}, + [97] = {.index = 177, .length = 4}, + [98] = {.index = 181, .length = 2}, + [99] = {.index = 183, .length = 4}, + [100] = {.index = 187, .length = 4}, + [101] = {.index = 191, .length = 4}, + [102] = {.index = 195, .length = 3}, + [103] = {.index = 198, .length = 2}, + [104] = {.index = 200, .length = 4}, + [105] = {.index = 204, .length = 5}, + [106] = {.index = 209, .length = 4}, + [107] = {.index = 213, .length = 5}, + [108] = {.index = 218, .length = 4}, + [109] = {.index = 222, .length = 4}, + [110] = {.index = 226, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2126,19 +2080,19 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [3] = {field_body, 1}, [4] = - {field_close_tag, 1}, - {field_open_tag, 0}, - [6] = {field_constructor, 1}, - [7] = + [5] = {field_argument, 1}, {field_operator, 0}, - [9] = + [7] = {field_arguments, 1}, {field_function, 0}, - [11] = + [9] = {field_argument, 0}, {field_operator, 1}, + [11] = + {field_close_tag, 1}, + {field_open_tag, 0}, [13] = {field_decorator, 0, .inherited = true}, {field_decorator, 1, .inherited = true}, @@ -2188,268 +2142,259 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [44] = {field_label, 1}, [45] = - {field_close_tag, 2}, - {field_content, 1}, - {field_open_tag, 0}, - [48] = {field_name, 1}, - [49] = + [46] = {field_attribute, 0}, - [50] = - {field_template, 0}, - [51] = + [47] = {field_member, 0}, - [52] = + [48] = {field_property, 0}, - [53] = + [49] = {field_body, 2}, {field_name, 1}, - [55] = + [51] = {field_body, 2}, - [56] = + [52] = {field_body, 2}, {field_parameters, 1}, - [58] = + [54] = {field_arguments, 2}, {field_constructor, 1}, - [60] = + [56] = {field_pattern, 1}, - [61] = + [57] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [64] = + [60] = {field_object, 0}, {field_property, 2}, - [66] = + [62] = {field_object, 0}, {field_optional_chain, 1}, {field_property, 2}, - [69] = + [65] = {field_arguments, 2}, {field_function, 0}, {field_optional_chain, 1}, - [72] = + [68] = {field_close_tag, 2}, {field_open_tag, 0}, - [74] = + [70] = {field_body, 2}, {field_parameters, 0}, - [76] = + [72] = {field_declaration, 2}, {field_decorator, 0, .inherited = true}, - [78] = + [74] = {field_body, 2}, {field_decorator, 0, .inherited = true}, - [80] = + [76] = {field_source, 2, .inherited = true}, - [81] = + [77] = {field_value, 2}, - [82] = + [78] = {field_key, 0}, {field_value, 2}, - [84] = + [80] = {field_body, 2}, {field_name, 0}, {field_parameters, 1}, - [87] = + [83] = {field_value, 1}, - [88] = + [84] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [91] = + [87] = {field_body, 3}, {field_kind, 2, .inherited = true}, {field_left, 2, .inherited = true}, {field_operator, 2, .inherited = true}, {field_right, 2, .inherited = true}, {field_value, 2, .inherited = true}, - [97] = + [93] = {field_body, 1}, {field_condition, 3}, - [99] = + [95] = {field_body, 1}, {field_finalizer, 3}, {field_handler, 2}, - [102] = + [98] = {field_attribute, 2, .inherited = true}, {field_name, 1}, - [104] = + [100] = {field_attribute, 0, .inherited = true}, {field_attribute, 1, .inherited = true}, - [106] = + [102] = {field_property, 1}, - [107] = + [103] = {field_property, 0}, {field_value, 1, .inherited = true}, - [109] = + [105] = {field_decorator, 0, .inherited = true}, {field_property, 1}, - [111] = + [107] = {field_member, 1, .inherited = true}, - {field_template, 1, .inherited = true}, - [113] = + [108] = {field_member, 0, .inherited = true}, {field_member, 1, .inherited = true}, - {field_template, 0, .inherited = true}, - {field_template, 1, .inherited = true}, - [117] = + [110] = {field_body, 3}, {field_name, 1}, - [119] = + [112] = {field_body, 3}, {field_parameter, 1}, - [121] = + [114] = {field_body, 3}, {field_parameters, 2}, - [123] = + [116] = {field_body, 3}, {field_parameters, 1}, - [125] = + [118] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, - [128] = + [121] = {field_flags, 3}, {field_pattern, 1}, - [130] = + [123] = {field_index, 2}, {field_object, 0}, - [132] = + [125] = {field_declaration, 3}, {field_decorator, 0, .inherited = true}, - [134] = + [127] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [137] = + [130] = {field_body, 3}, {field_decorator, 0, .inherited = true}, - [139] = + [132] = {field_alias, 2}, {field_name, 0}, - [141] = + [134] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_parameters, 2}, - [145] = + [138] = {field_property, 1}, {field_value, 2, .inherited = true}, - [147] = + [140] = {field_decorator, 0, .inherited = true}, {field_property, 2}, - [149] = + [142] = {field_decorator, 0, .inherited = true}, {field_property, 1}, {field_value, 2, .inherited = true}, - [152] = + [145] = {field_body, 4}, {field_parameters, 3}, - [154] = + [147] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [157] = + [150] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [160] = + [153] = {field_index, 3}, {field_object, 0}, {field_optional_chain, 1}, - [163] = + [156] = {field_decorator, 0, .inherited = true}, {field_value, 3}, - [165] = + [158] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [168] = + [161] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_parameters, 3}, - [172] = + [165] = {field_left, 1}, {field_operator, 2}, {field_right, 3}, - [175] = + [168] = {field_body, 5}, {field_condition, 3}, {field_initializer, 2}, - [178] = + [171] = {field_decorator, 0, .inherited = true}, {field_property, 2}, {field_value, 3, .inherited = true}, - [181] = + [174] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [184] = + [177] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_parameters, 4}, - [188] = + [181] = {field_body, 3}, {field_value, 1}, - [190] = + [183] = {field_kind, 1}, {field_left, 2}, {field_operator, 3}, {field_right, 4}, - [194] = + [187] = {field_body, 6}, {field_condition, 3}, {field_increment, 4}, {field_initializer, 2}, - [198] = + [191] = {field_body, 6}, {field_condition, 3}, {field_condition, 4}, {field_initializer, 2}, - [202] = + [195] = {field_body, 6}, {field_condition, 4}, {field_initializer, 2}, - [205] = + [198] = {field_body, 4}, {field_parameter, 2}, - [207] = + [200] = {field_body, 6}, {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_parameters, 5}, - [211] = + [204] = {field_kind, 1}, {field_left, 2}, {field_operator, 4}, {field_right, 5}, {field_value, 3, .inherited = true}, - [216] = + [209] = {field_kind, 1}, {field_left, 2}, {field_operator, 4}, {field_right, 5}, - [220] = + [213] = {field_body, 7}, {field_condition, 3}, {field_condition, 4}, {field_increment, 5}, {field_initializer, 2}, - [225] = + [218] = {field_body, 7}, {field_condition, 4}, {field_increment, 5}, {field_initializer, 2}, - [229] = + [222] = {field_body, 7}, {field_condition, 4}, {field_condition, 5}, {field_initializer, 2}, - [233] = + [226] = {field_body, 8}, {field_condition, 4}, {field_condition, 5}, @@ -2486,19 +2431,19 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [30] = { [1] = alias_sym_statement_identifier, }, - [45] = { + [43] = { [2] = alias_sym_property_identifier, }, - [47] = { + [45] = { [2] = alias_sym_property_identifier, }, - [56] = { + [54] = { [0] = alias_sym_shorthand_property_identifier_pattern, }, - [72] = { + [70] = { [1] = sym_identifier, }, - [94] = { + [92] = { [1] = sym_identifier, }, }; @@ -2523,54 +2468,54 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [12] = 12, [13] = 13, [14] = 14, - [15] = 12, - [16] = 12, - [17] = 14, - [18] = 12, + [15] = 15, + [16] = 14, + [17] = 15, + [18] = 14, [19] = 14, - [20] = 20, - [21] = 12, - [22] = 14, - [23] = 23, - [24] = 14, - [25] = 14, - [26] = 12, + [20] = 15, + [21] = 15, + [22] = 15, + [23] = 14, + [24] = 24, + [25] = 25, + [26] = 26, [27] = 27, - [28] = 28, - [29] = 29, + [28] = 27, + [29] = 26, [30] = 30, [31] = 31, [32] = 32, [33] = 33, - [34] = 27, - [35] = 35, + [34] = 34, + [35] = 31, [36] = 36, [37] = 30, [38] = 38, [39] = 39, - [40] = 36, + [40] = 40, [41] = 41, [42] = 42, - [43] = 28, - [44] = 38, - [45] = 45, - [46] = 29, - [47] = 47, - [48] = 48, - [49] = 33, - [50] = 42, - [51] = 41, - [52] = 32, - [53] = 39, - [54] = 47, - [55] = 48, - [56] = 31, - [57] = 35, - [58] = 58, - [59] = 58, - [60] = 58, - [61] = 58, - [62] = 58, + [43] = 43, + [44] = 44, + [45] = 36, + [46] = 34, + [47] = 32, + [48] = 38, + [49] = 39, + [50] = 40, + [51] = 33, + [52] = 41, + [53] = 42, + [54] = 43, + [55] = 44, + [56] = 56, + [57] = 56, + [58] = 56, + [59] = 56, + [60] = 56, + [61] = 61, + [62] = 62, [63] = 63, [64] = 64, [65] = 65, @@ -2585,109 +2530,109 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [74] = 74, [75] = 75, [76] = 76, - [77] = 77, - [78] = 78, - [79] = 79, - [80] = 78, - [81] = 78, - [82] = 78, - [83] = 78, - [84] = 78, + [77] = 76, + [78] = 76, + [79] = 76, + [80] = 76, + [81] = 76, + [82] = 82, + [83] = 83, + [84] = 83, [85] = 85, [86] = 85, [87] = 87, - [88] = 87, + [88] = 88, [89] = 89, - [90] = 90, + [90] = 87, [91] = 91, - [92] = 92, - [93] = 89, - [94] = 91, - [95] = 95, - [96] = 95, - [97] = 97, + [92] = 88, + [93] = 93, + [94] = 94, + [95] = 94, + [96] = 96, + [97] = 96, [98] = 98, [99] = 99, - [100] = 99, + [100] = 96, [101] = 101, [102] = 102, [103] = 103, - [104] = 99, + [104] = 103, [105] = 105, [106] = 106, [107] = 107, [108] = 108, - [109] = 108, - [110] = 110, - [111] = 111, - [112] = 111, + [109] = 109, + [110] = 108, + [111] = 109, + [112] = 112, [113] = 113, - [114] = 110, + [114] = 114, [115] = 115, [116] = 116, - [117] = 115, - [118] = 118, - [119] = 119, - [120] = 118, + [117] = 117, + [118] = 115, + [119] = 113, + [120] = 117, [121] = 116, - [122] = 119, + [122] = 122, [123] = 123, [124] = 124, [125] = 125, - [126] = 124, + [126] = 126, [127] = 127, - [128] = 128, - [129] = 128, - [130] = 127, - [131] = 124, - [132] = 132, + [128] = 126, + [129] = 126, + [130] = 130, + [131] = 131, + [132] = 127, [133] = 133, - [134] = 134, - [135] = 128, - [136] = 124, - [137] = 127, - [138] = 128, - [139] = 127, - [140] = 125, - [141] = 124, - [142] = 142, - [143] = 133, + [134] = 127, + [135] = 135, + [136] = 136, + [137] = 137, + [138] = 130, + [139] = 139, + [140] = 123, + [141] = 141, + [142] = 131, + [143] = 143, [144] = 144, - [145] = 134, - [146] = 144, - [147] = 134, - [148] = 148, - [149] = 134, - [150] = 150, - [151] = 132, - [152] = 144, - [153] = 153, - [154] = 154, - [155] = 155, - [156] = 156, - [157] = 157, - [158] = 125, + [145] = 143, + [146] = 146, + [147] = 137, + [148] = 123, + [149] = 122, + [150] = 124, + [151] = 125, + [152] = 126, + [153] = 127, + [154] = 133, + [155] = 131, + [156] = 124, + [157] = 123, + [158] = 130, [159] = 159, - [160] = 144, - [161] = 144, - [162] = 132, - [163] = 128, - [164] = 150, - [165] = 134, - [166] = 132, - [167] = 127, - [168] = 168, - [169] = 169, - [170] = 132, - [171] = 125, - [172] = 125, - [173] = 148, + [160] = 160, + [161] = 130, + [162] = 124, + [163] = 125, + [164] = 143, + [165] = 125, + [166] = 143, + [167] = 123, + [168] = 124, + [169] = 125, + [170] = 126, + [171] = 127, + [172] = 143, + [173] = 130, [174] = 174, [175] = 175, [176] = 176, [177] = 177, [178] = 178, - [179] = 174, + [179] = 179, [180] = 180, [181] = 181, [182] = 182, @@ -2697,166 +2642,166 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [186] = 186, [187] = 187, [188] = 188, - [189] = 189, + [189] = 175, [190] = 190, [191] = 191, [192] = 192, - [193] = 178, + [193] = 193, [194] = 194, - [195] = 176, - [196] = 177, - [197] = 181, - [198] = 194, - [199] = 192, - [200] = 176, - [201] = 201, - [202] = 176, - [203] = 189, - [204] = 204, - [205] = 178, - [206] = 177, - [207] = 204, - [208] = 188, + [195] = 195, + [196] = 196, + [197] = 197, + [198] = 198, + [199] = 176, + [200] = 177, + [201] = 178, + [202] = 179, + [203] = 180, + [204] = 181, + [205] = 182, + [206] = 183, + [207] = 184, + [208] = 185, [209] = 209, - [210] = 187, - [211] = 182, - [212] = 174, - [213] = 213, + [210] = 191, + [211] = 211, + [212] = 175, + [213] = 211, [214] = 214, - [215] = 215, - [216] = 175, - [217] = 201, - [218] = 191, - [219] = 184, + [215] = 188, + [216] = 216, + [217] = 190, + [218] = 218, + [219] = 211, [220] = 175, - [221] = 177, - [222] = 222, - [223] = 194, + [221] = 190, + [222] = 191, + [223] = 223, [224] = 192, - [225] = 181, - [226] = 226, - [227] = 226, - [228] = 228, - [229] = 213, - [230] = 188, - [231] = 215, - [232] = 214, - [233] = 209, - [234] = 228, - [235] = 222, - [236] = 194, - [237] = 192, - [238] = 187, - [239] = 182, - [240] = 174, - [241] = 228, - [242] = 213, - [243] = 214, - [244] = 178, - [245] = 215, - [246] = 188, - [247] = 176, - [248] = 181, - [249] = 222, - [250] = 178, - [251] = 215, - [252] = 177, - [253] = 204, - [254] = 226, - [255] = 222, - [256] = 184, - [257] = 257, - [258] = 204, - [259] = 222, - [260] = 194, - [261] = 261, - [262] = 187, - [263] = 214, - [264] = 201, - [265] = 265, - [266] = 266, - [267] = 192, - [268] = 191, - [269] = 204, - [270] = 189, - [271] = 188, - [272] = 191, - [273] = 228, - [274] = 187, - [275] = 182, - [276] = 182, - [277] = 213, - [278] = 226, - [279] = 214, - [280] = 215, - [281] = 175, - [282] = 201, - [283] = 191, - [284] = 181, - [285] = 285, - [286] = 184, - [287] = 184, - [288] = 226, - [289] = 289, - [290] = 175, + [225] = 193, + [226] = 195, + [227] = 196, + [228] = 198, + [229] = 176, + [230] = 177, + [231] = 198, + [232] = 179, + [233] = 180, + [234] = 181, + [235] = 182, + [236] = 183, + [237] = 184, + [238] = 185, + [239] = 214, + [240] = 188, + [241] = 241, + [242] = 242, + [243] = 192, + [244] = 190, + [245] = 191, + [246] = 246, + [247] = 192, + [248] = 193, + [249] = 249, + [250] = 195, + [251] = 251, + [252] = 196, + [253] = 193, + [254] = 198, + [255] = 176, + [256] = 177, + [257] = 178, + [258] = 179, + [259] = 180, + [260] = 181, + [261] = 182, + [262] = 183, + [263] = 184, + [264] = 185, + [265] = 187, + [266] = 195, + [267] = 214, + [268] = 251, + [269] = 188, + [270] = 251, + [271] = 175, + [272] = 214, + [273] = 196, + [274] = 190, + [275] = 191, + [276] = 192, + [277] = 193, + [278] = 195, + [279] = 196, + [280] = 198, + [281] = 176, + [282] = 177, + [283] = 178, + [284] = 179, + [285] = 180, + [286] = 181, + [287] = 182, + [288] = 183, + [289] = 184, + [290] = 185, [291] = 291, - [292] = 174, - [293] = 261, - [294] = 201, - [295] = 213, - [296] = 228, - [297] = 297, - [298] = 297, - [299] = 297, + [292] = 197, + [293] = 214, + [294] = 188, + [295] = 251, + [296] = 251, + [297] = 178, + [298] = 298, + [299] = 298, [300] = 300, [301] = 300, - [302] = 302, - [303] = 302, - [304] = 302, + [302] = 300, + [303] = 303, + [304] = 303, [305] = 305, - [306] = 306, - [307] = 306, + [306] = 303, + [307] = 305, [308] = 305, - [309] = 305, - [310] = 306, + [309] = 309, + [310] = 309, [311] = 311, - [312] = 311, - [313] = 72, - [314] = 314, - [315] = 64, - [316] = 69, - [317] = 73, - [318] = 311, + [312] = 62, + [313] = 64, + [314] = 309, + [315] = 309, + [316] = 65, + [317] = 309, + [318] = 318, [319] = 319, [320] = 320, - [321] = 321, - [322] = 322, - [323] = 311, - [324] = 324, - [325] = 321, - [326] = 322, - [327] = 322, - [328] = 311, - [329] = 311, - [330] = 319, - [331] = 73, - [332] = 74, + [321] = 320, + [322] = 318, + [323] = 61, + [324] = 319, + [325] = 319, + [326] = 326, + [327] = 309, + [328] = 328, + [329] = 329, + [330] = 326, + [331] = 331, + [332] = 332, [333] = 333, - [334] = 324, - [335] = 69, - [336] = 336, - [337] = 72, + [334] = 309, + [335] = 320, + [336] = 63, + [337] = 67, [338] = 338, - [339] = 64, - [340] = 340, - [341] = 341, + [339] = 61, + [340] = 64, + [341] = 65, [342] = 342, [343] = 343, [344] = 344, [345] = 345, - [346] = 76, - [347] = 347, - [348] = 348, + [346] = 346, + [347] = 62, + [348] = 331, [349] = 349, [350] = 350, [351] = 351, @@ -2884,12 +2829,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [373] = 373, [374] = 374, [375] = 375, - [376] = 356, + [376] = 376, [377] = 377, - [378] = 319, + [378] = 378, [379] = 379, [380] = 380, - [381] = 381, + [381] = 328, [382] = 382, [383] = 383, [384] = 384, @@ -2897,7 +2842,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [386] = 386, [387] = 387, [388] = 388, - [389] = 389, + [389] = 362, [390] = 390, [391] = 391, [392] = 392, @@ -2905,7 +2850,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [394] = 394, [395] = 395, [396] = 396, - [397] = 311, + [397] = 397, [398] = 398, [399] = 399, [400] = 400, @@ -2928,122 +2873,122 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [417] = 417, [418] = 418, [419] = 419, - [420] = 420, + [420] = 309, [421] = 421, - [422] = 422, - [423] = 311, - [424] = 311, - [425] = 349, - [426] = 422, + [422] = 309, + [423] = 423, + [424] = 424, + [425] = 425, + [426] = 426, [427] = 427, [428] = 428, [429] = 429, [430] = 430, [431] = 431, [432] = 432, - [433] = 348, - [434] = 434, + [433] = 433, + [434] = 431, [435] = 435, - [436] = 436, - [437] = 434, - [438] = 434, + [436] = 338, + [437] = 431, + [438] = 438, [439] = 439, - [440] = 440, + [440] = 439, [441] = 441, - [442] = 441, - [443] = 348, - [444] = 444, + [442] = 438, + [443] = 443, + [444] = 338, [445] = 445, [446] = 446, [447] = 447, - [448] = 448, + [448] = 432, [449] = 449, [450] = 450, [451] = 451, [452] = 452, - [453] = 449, - [454] = 435, - [455] = 441, - [456] = 449, - [457] = 430, - [458] = 431, - [459] = 429, - [460] = 439, - [461] = 348, - [462] = 441, - [463] = 463, - [464] = 464, - [465] = 436, + [453] = 453, + [454] = 338, + [455] = 435, + [456] = 432, + [457] = 438, + [458] = 430, + [459] = 439, + [460] = 428, + [461] = 433, + [462] = 427, + [463] = 429, + [464] = 438, + [465] = 465, [466] = 466, - [467] = 467, - [468] = 435, - [469] = 463, - [470] = 449, - [471] = 471, - [472] = 472, - [473] = 449, - [474] = 472, - [475] = 441, - [476] = 464, - [477] = 471, - [478] = 432, - [479] = 449, - [480] = 441, - [481] = 481, - [482] = 467, - [483] = 483, - [484] = 435, - [485] = 466, + [467] = 439, + [468] = 453, + [469] = 439, + [470] = 466, + [471] = 465, + [472] = 439, + [473] = 438, + [474] = 474, + [475] = 438, + [476] = 476, + [477] = 477, + [478] = 474, + [479] = 479, + [480] = 480, + [481] = 480, + [482] = 476, + [483] = 477, + [484] = 432, + [485] = 432, [486] = 486, - [487] = 483, - [488] = 488, - [489] = 435, - [490] = 481, - [491] = 471, - [492] = 441, - [493] = 449, - [494] = 494, - [495] = 472, - [496] = 483, - [497] = 488, - [498] = 441, - [499] = 441, - [500] = 449, - [501] = 486, - [502] = 449, - [503] = 494, - [504] = 435, - [505] = 505, + [487] = 487, + [488] = 453, + [489] = 439, + [490] = 438, + [491] = 491, + [492] = 474, + [493] = 479, + [494] = 480, + [495] = 439, + [496] = 487, + [497] = 438, + [498] = 486, + [499] = 438, + [500] = 439, + [501] = 491, + [502] = 432, + [503] = 503, + [504] = 504, + [505] = 66, [506] = 506, [507] = 507, - [508] = 63, - [509] = 509, + [508] = 508, + [509] = 62, [510] = 510, - [511] = 72, - [512] = 395, + [511] = 64, + [512] = 512, [513] = 513, - [514] = 64, + [514] = 514, [515] = 515, [516] = 516, [517] = 517, [518] = 518, [519] = 519, - [520] = 69, + [520] = 520, [521] = 521, - [522] = 522, + [522] = 61, [523] = 523, - [524] = 76, - [525] = 525, + [524] = 524, + [525] = 65, [526] = 526, [527] = 527, [528] = 528, [529] = 529, [530] = 530, [531] = 531, - [532] = 421, - [533] = 396, + [532] = 532, + [533] = 533, [534] = 534, - [535] = 535, + [535] = 403, [536] = 536, [537] = 537, [538] = 538, @@ -3061,45 +3006,45 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [550] = 550, [551] = 551, [552] = 552, - [553] = 553, + [553] = 67, [554] = 554, [555] = 555, [556] = 556, [557] = 557, - [558] = 366, + [558] = 558, [559] = 559, - [560] = 73, - [561] = 360, + [560] = 560, + [561] = 561, [562] = 562, [563] = 563, [564] = 564, [565] = 565, - [566] = 74, + [566] = 566, [567] = 567, [568] = 568, [569] = 569, [570] = 570, [571] = 571, - [572] = 572, + [572] = 63, [573] = 573, [574] = 574, [575] = 575, - [576] = 576, + [576] = 544, [577] = 577, - [578] = 578, - [579] = 579, - [580] = 580, + [578] = 561, + [579] = 360, + [580] = 361, [581] = 581, [582] = 582, [583] = 583, [584] = 584, - [585] = 585, + [585] = 504, [586] = 586, [587] = 587, [588] = 588, [589] = 589, [590] = 590, - [591] = 591, + [591] = 567, [592] = 592, [593] = 593, [594] = 594, @@ -3108,321 +3053,321 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [597] = 597, [598] = 598, [599] = 599, - [600] = 600, - [601] = 601, - [602] = 602, - [603] = 603, + [600] = 503, + [601] = 508, + [602] = 356, + [603] = 371, [604] = 604, [605] = 605, - [606] = 76, - [607] = 74, - [608] = 505, - [609] = 551, - [610] = 541, + [606] = 606, + [607] = 607, + [608] = 608, + [609] = 507, + [610] = 610, [611] = 513, - [612] = 73, - [613] = 506, - [614] = 507, - [615] = 69, - [616] = 72, - [617] = 64, - [618] = 570, - [619] = 619, - [620] = 564, - [621] = 538, - [622] = 538, - [623] = 567, - [624] = 567, - [625] = 596, - [626] = 529, - [627] = 596, - [628] = 555, - [629] = 599, - [630] = 601, - [631] = 543, - [632] = 594, - [633] = 536, - [634] = 586, - [635] = 546, - [636] = 601, - [637] = 637, - [638] = 534, - [639] = 562, - [640] = 539, - [641] = 583, - [642] = 552, - [643] = 643, - [644] = 542, - [645] = 513, - [646] = 599, - [647] = 571, - [648] = 570, - [649] = 521, - [650] = 63, - [651] = 531, - [652] = 523, - [653] = 527, - [654] = 546, - [655] = 531, - [656] = 527, - [657] = 529, - [658] = 543, - [659] = 542, - [660] = 534, - [661] = 586, - [662] = 555, - [663] = 563, - [664] = 664, - [665] = 665, - [666] = 523, - [667] = 536, - [668] = 562, - [669] = 63, - [670] = 521, - [671] = 509, - [672] = 541, - [673] = 583, - [674] = 571, - [675] = 675, - [676] = 676, - [677] = 510, - [678] = 603, - [679] = 564, - [680] = 552, - [681] = 539, - [682] = 682, - [683] = 551, - [684] = 684, - [685] = 563, - [686] = 605, - [687] = 573, - [688] = 688, - [689] = 600, - [690] = 554, - [691] = 587, - [692] = 589, - [693] = 693, - [694] = 694, - [695] = 695, - [696] = 557, - [697] = 697, - [698] = 698, - [699] = 699, - [700] = 700, - [701] = 694, - [702] = 551, - [703] = 688, - [704] = 66, - [705] = 705, - [706] = 71, - [707] = 516, - [708] = 535, - [709] = 513, - [710] = 576, - [711] = 711, - [712] = 712, - [713] = 572, - [714] = 714, - [715] = 715, - [716] = 541, - [717] = 545, - [718] = 579, - [719] = 537, - [720] = 565, - [721] = 721, - [722] = 694, - [723] = 723, - [724] = 724, - [725] = 570, - [726] = 726, - [727] = 727, - [728] = 726, - [729] = 697, - [730] = 730, - [731] = 698, - [732] = 569, - [733] = 733, - [734] = 715, - [735] = 588, - [736] = 602, - [737] = 604, - [738] = 730, - [739] = 575, - [740] = 595, - [741] = 553, - [742] = 578, - [743] = 556, - [744] = 540, - [745] = 577, - [746] = 699, - [747] = 584, - [748] = 705, - [749] = 513, - [750] = 530, - [751] = 598, - [752] = 67, - [753] = 597, - [754] = 515, - [755] = 593, - [756] = 711, - [757] = 70, - [758] = 548, - [759] = 759, - [760] = 77, - [761] = 559, - [762] = 544, - [763] = 568, - [764] = 68, - [765] = 75, - [766] = 574, + [612] = 521, + [613] = 567, + [614] = 66, + [615] = 544, + [616] = 510, + [617] = 561, + [618] = 66, + [619] = 524, + [620] = 506, + [621] = 512, + [622] = 508, + [623] = 595, + [624] = 533, + [625] = 599, + [626] = 581, + [627] = 537, + [628] = 520, + [629] = 582, + [630] = 586, + [631] = 588, + [632] = 73, + [633] = 564, + [634] = 534, + [635] = 589, + [636] = 575, + [637] = 608, + [638] = 592, + [639] = 547, + [640] = 597, + [641] = 604, + [642] = 538, + [643] = 544, + [644] = 539, + [645] = 540, + [646] = 607, + [647] = 541, + [648] = 561, + [649] = 590, + [650] = 567, + [651] = 542, + [652] = 545, + [653] = 569, + [654] = 550, + [655] = 571, + [656] = 565, + [657] = 657, + [658] = 514, + [659] = 529, + [660] = 508, + [661] = 574, + [662] = 70, + [663] = 555, + [664] = 74, + [665] = 657, + [666] = 515, + [667] = 71, + [668] = 543, + [669] = 594, + [670] = 596, + [671] = 566, + [672] = 556, + [673] = 594, + [674] = 548, + [675] = 605, + [676] = 605, + [677] = 559, + [678] = 560, + [679] = 583, + [680] = 598, + [681] = 606, + [682] = 581, + [683] = 568, + [684] = 586, + [685] = 588, + [686] = 589, + [687] = 575, + [688] = 608, + [689] = 592, + [690] = 595, + [691] = 597, + [692] = 604, + [693] = 607, + [694] = 590, + [695] = 570, + [696] = 587, + [697] = 593, + [698] = 599, + [699] = 562, + [700] = 593, + [701] = 584, + [702] = 536, + [703] = 527, + [704] = 596, + [705] = 546, + [706] = 69, + [707] = 508, + [708] = 573, + [709] = 577, + [710] = 528, + [711] = 577, + [712] = 587, + [713] = 72, + [714] = 531, + [715] = 563, + [716] = 518, + [717] = 516, + [718] = 519, + [719] = 719, + [720] = 520, + [721] = 517, + [722] = 557, + [723] = 584, + [724] = 549, + [725] = 523, + [726] = 558, + [727] = 583, + [728] = 526, + [729] = 68, + [730] = 598, + [731] = 606, + [732] = 530, + [733] = 551, + [734] = 552, + [735] = 554, + [736] = 75, + [737] = 532, + [738] = 582, + [739] = 739, + [740] = 544, + [741] = 719, + [742] = 561, + [743] = 743, + [744] = 567, + [745] = 745, + [746] = 746, + [747] = 747, + [748] = 748, + [749] = 749, + [750] = 750, + [751] = 751, + [752] = 752, + [753] = 753, + [754] = 754, + [755] = 575, + [756] = 596, + [757] = 757, + [758] = 758, + [759] = 561, + [760] = 760, + [761] = 761, + [762] = 567, + [763] = 763, + [764] = 590, + [765] = 765, + [766] = 577, [767] = 767, - [768] = 705, - [769] = 517, - [770] = 549, - [771] = 518, - [772] = 714, - [773] = 519, - [774] = 581, - [775] = 592, - [776] = 664, - [777] = 550, - [778] = 778, - [779] = 525, - [780] = 517, - [781] = 547, - [782] = 580, - [783] = 526, - [784] = 65, - [785] = 582, - [786] = 786, - [787] = 522, - [788] = 693, - [789] = 585, - [790] = 790, - [791] = 790, - [792] = 590, - [793] = 694, - [794] = 733, - [795] = 591, - [796] = 528, - [797] = 797, - [798] = 538, - [799] = 567, - [800] = 596, - [801] = 601, - [802] = 586, - [803] = 534, - [804] = 539, - [805] = 552, - [806] = 599, - [807] = 521, - [808] = 529, - [809] = 523, - [810] = 527, - [811] = 531, - [812] = 542, - [813] = 555, - [814] = 563, - [815] = 536, - [816] = 562, - [817] = 571, - [818] = 583, - [819] = 564, - [820] = 543, + [768] = 745, + [769] = 769, + [770] = 605, + [771] = 593, + [772] = 599, + [773] = 773, + [774] = 610, + [775] = 775, + [776] = 757, + [777] = 758, + [778] = 584, + [779] = 594, + [780] = 780, + [781] = 781, + [782] = 782, + [783] = 783, + [784] = 775, + [785] = 780, + [786] = 765, + [787] = 787, + [788] = 782, + [789] = 773, + [790] = 583, + [791] = 607, + [792] = 544, + [793] = 761, + [794] = 657, + [795] = 598, + [796] = 606, + [797] = 581, + [798] = 767, + [799] = 582, + [800] = 800, + [801] = 801, + [802] = 802, + [803] = 587, + [804] = 761, + [805] = 805, + [806] = 586, + [807] = 783, + [808] = 588, + [809] = 787, + [810] = 589, + [811] = 811, + [812] = 604, + [813] = 608, + [814] = 761, + [815] = 592, + [816] = 760, + [817] = 783, + [818] = 595, + [819] = 819, + [820] = 597, [821] = 821, - [822] = 546, - [823] = 823, - [824] = 824, - [825] = 551, - [826] = 541, - [827] = 723, - [828] = 570, - [829] = 829, - [830] = 830, + [822] = 822, + [823] = 822, + [824] = 590, + [825] = 825, + [826] = 826, + [827] = 827, + [828] = 520, + [829] = 825, + [830] = 577, [831] = 831, [832] = 832, [833] = 833, - [834] = 555, - [835] = 551, - [836] = 833, - [837] = 541, - [838] = 564, - [839] = 833, - [840] = 546, - [841] = 583, - [842] = 562, - [843] = 543, - [844] = 844, - [845] = 539, - [846] = 552, - [847] = 599, - [848] = 536, - [849] = 849, - [850] = 529, - [851] = 833, - [852] = 521, - [853] = 538, - [854] = 523, - [855] = 844, - [856] = 664, - [857] = 571, - [858] = 534, - [859] = 833, - [860] = 563, - [861] = 567, - [862] = 586, - [863] = 601, - [864] = 570, - [865] = 527, - [866] = 790, - [867] = 542, - [868] = 531, - [869] = 596, - [870] = 517, + [834] = 825, + [835] = 825, + [836] = 825, + [837] = 825, + [838] = 753, + [839] = 594, + [840] = 508, + [841] = 605, + [842] = 583, + [843] = 598, + [844] = 606, + [845] = 581, + [846] = 582, + [847] = 586, + [848] = 588, + [849] = 589, + [850] = 575, + [851] = 608, + [852] = 592, + [853] = 595, + [854] = 597, + [855] = 604, + [856] = 607, + [857] = 587, + [858] = 593, + [859] = 599, + [860] = 584, + [861] = 596, + [862] = 862, + [863] = 863, + [864] = 862, + [865] = 745, + [866] = 863, + [867] = 863, + [868] = 863, + [869] = 869, + [870] = 863, [871] = 871, [872] = 872, [873] = 871, - [874] = 871, - [875] = 872, - [876] = 823, - [877] = 871, - [878] = 871, - [879] = 871, - [880] = 513, - [881] = 881, - [882] = 882, - [883] = 883, - [884] = 883, + [874] = 874, + [875] = 875, + [876] = 876, + [877] = 877, + [878] = 878, + [879] = 879, + [880] = 876, + [881] = 875, + [882] = 878, + [883] = 875, + [884] = 878, [885] = 885, - [886] = 885, - [887] = 883, - [888] = 883, - [889] = 885, - [890] = 885, - [891] = 891, - [892] = 892, - [893] = 893, - [894] = 892, - [895] = 895, - [896] = 896, - [897] = 897, - [898] = 897, - [899] = 896, - [900] = 896, - [901] = 897, - [902] = 897, - [903] = 896, - [904] = 896, - [905] = 897, - [906] = 896, - [907] = 897, + [886] = 886, + [887] = 887, + [888] = 887, + [889] = 886, + [890] = 887, + [891] = 886, + [892] = 886, + [893] = 886, + [894] = 887, + [895] = 887, + [896] = 886, + [897] = 887, + [898] = 898, + [899] = 898, + [900] = 898, + [901] = 901, + [902] = 898, + [903] = 898, + [904] = 898, + [905] = 905, + [906] = 906, + [907] = 907, [908] = 908, - [909] = 908, + [909] = 909, [910] = 910, - [911] = 908, - [912] = 908, - [913] = 908, - [914] = 908, + [911] = 911, + [912] = 912, + [913] = 913, + [914] = 914, [915] = 915, [916] = 916, [917] = 917, @@ -3439,19 +3384,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [928] = 928, [929] = 929, [930] = 930, - [931] = 72, + [931] = 931, [932] = 932, [933] = 933, [934] = 934, [935] = 935, [936] = 936, - [937] = 64, + [937] = 937, [938] = 938, [939] = 939, [940] = 940, [941] = 941, - [942] = 942, - [943] = 943, + [942] = 64, + [943] = 62, [944] = 944, [945] = 945, [946] = 946, @@ -3471,340 +3416,340 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [960] = 960, [961] = 961, [962] = 962, - [963] = 963, - [964] = 964, + [963] = 910, + [964] = 962, [965] = 965, [966] = 966, - [967] = 967, - [968] = 968, - [969] = 526, + [967] = 61, + [968] = 65, + [969] = 969, [970] = 970, - [971] = 971, + [971] = 918, [972] = 972, - [973] = 973, - [974] = 569, - [975] = 69, - [976] = 976, + [973] = 920, + [974] = 974, + [975] = 975, + [976] = 918, [977] = 977, - [978] = 73, + [978] = 978, [979] = 979, [980] = 980, - [981] = 927, - [982] = 982, - [983] = 983, - [984] = 921, + [981] = 530, + [982] = 928, + [983] = 923, + [984] = 984, [985] = 985, [986] = 986, - [987] = 923, - [988] = 927, - [989] = 982, - [990] = 964, - [991] = 991, - [992] = 950, - [993] = 938, - [994] = 994, - [995] = 958, - [996] = 996, - [997] = 994, + [987] = 987, + [988] = 988, + [989] = 571, + [990] = 517, + [991] = 922, + [992] = 992, + [993] = 993, + [994] = 927, + [995] = 995, + [996] = 978, + [997] = 997, [998] = 998, - [999] = 963, - [1000] = 568, - [1001] = 996, - [1002] = 1002, - [1003] = 1003, + [999] = 923, + [1000] = 992, + [1001] = 985, + [1002] = 993, + [1003] = 995, [1004] = 1004, - [1005] = 1005, - [1006] = 1006, - [1007] = 1007, - [1008] = 604, - [1009] = 1009, - [1010] = 1010, - [1011] = 1011, - [1012] = 1011, - [1013] = 1009, - [1014] = 991, - [1015] = 605, - [1016] = 958, + [1005] = 998, + [1006] = 980, + [1007] = 977, + [1008] = 986, + [1009] = 987, + [1010] = 988, + [1011] = 997, + [1012] = 926, + [1013] = 1013, + [1014] = 1014, + [1015] = 1015, + [1016] = 1016, [1017] = 1017, - [1018] = 1005, + [1018] = 1018, [1019] = 1019, - [1020] = 1007, - [1021] = 1006, - [1022] = 1010, - [1023] = 1004, - [1024] = 998, - [1025] = 1003, + [1020] = 1014, + [1021] = 1021, + [1022] = 1022, + [1023] = 1014, + [1024] = 1019, + [1025] = 1022, [1026] = 1026, - [1027] = 1027, - [1028] = 1028, - [1029] = 1029, - [1030] = 1028, - [1031] = 1031, - [1032] = 1026, - [1033] = 1033, - [1034] = 1034, - [1035] = 1035, + [1027] = 1015, + [1028] = 1013, + [1029] = 1018, + [1030] = 1016, + [1031] = 1017, + [1032] = 1014, + [1033] = 1014, + [1034] = 1026, + [1035] = 1021, [1036] = 1036, [1037] = 1037, - [1038] = 1036, - [1039] = 1027, - [1040] = 1033, - [1041] = 1035, - [1042] = 1029, - [1043] = 1036, - [1044] = 1036, - [1045] = 1031, + [1038] = 1038, + [1039] = 1037, + [1040] = 1038, + [1041] = 1037, + [1042] = 1042, + [1043] = 1042, + [1044] = 1038, + [1045] = 1042, [1046] = 1037, - [1047] = 1036, - [1048] = 1034, + [1047] = 1042, + [1048] = 1038, [1049] = 1049, [1050] = 1050, - [1051] = 1050, - [1052] = 1052, - [1053] = 1053, - [1054] = 1053, - [1055] = 1053, - [1056] = 1050, - [1057] = 1052, - [1058] = 1052, - [1059] = 1052, - [1060] = 1050, - [1061] = 1053, + [1051] = 1049, + [1052] = 1050, + [1053] = 1049, + [1054] = 1049, + [1055] = 1050, + [1056] = 1056, + [1057] = 1050, + [1058] = 1058, + [1059] = 1059, + [1060] = 1060, + [1061] = 1061, [1062] = 1062, - [1063] = 1063, - [1064] = 1062, - [1065] = 1063, - [1066] = 1063, - [1067] = 1063, - [1068] = 1062, + [1063] = 1061, + [1064] = 1058, + [1065] = 1065, + [1066] = 1062, + [1067] = 1060, + [1068] = 1060, [1069] = 1069, - [1070] = 1062, + [1070] = 1061, [1071] = 1071, - [1072] = 1071, - [1073] = 1073, - [1074] = 1074, - [1075] = 1071, - [1076] = 1076, - [1077] = 1073, - [1078] = 1078, - [1079] = 1079, - [1080] = 1080, - [1081] = 1076, + [1072] = 1062, + [1073] = 1061, + [1074] = 1058, + [1075] = 1058, + [1076] = 1065, + [1077] = 1065, + [1078] = 1060, + [1079] = 1065, + [1080] = 1062, + [1081] = 1081, [1082] = 1082, - [1083] = 1073, - [1084] = 1078, - [1085] = 1078, - [1086] = 1074, - [1087] = 1076, - [1088] = 1071, - [1089] = 1078, - [1090] = 1074, - [1091] = 1073, - [1092] = 1076, - [1093] = 1074, + [1083] = 1083, + [1084] = 1084, + [1085] = 1085, + [1086] = 1086, + [1087] = 1087, + [1088] = 1088, + [1089] = 1089, + [1090] = 1087, + [1091] = 1091, + [1092] = 1087, + [1093] = 1087, [1094] = 1094, - [1095] = 1095, + [1095] = 1087, [1096] = 1096, [1097] = 1097, [1098] = 1098, [1099] = 1099, - [1100] = 1100, - [1101] = 1100, + [1100] = 1087, + [1101] = 1101, [1102] = 1102, [1103] = 1103, - [1104] = 1100, + [1104] = 1104, [1105] = 1105, [1106] = 1106, [1107] = 1107, - [1108] = 1100, + [1108] = 1108, [1109] = 1109, [1110] = 1110, [1111] = 1111, [1112] = 1112, [1113] = 1113, - [1114] = 1100, - [1115] = 1115, - [1116] = 1100, + [1114] = 1114, + [1115] = 521, + [1116] = 1116, [1117] = 1117, [1118] = 1118, [1119] = 1119, [1120] = 1120, - [1121] = 1121, - [1122] = 1122, + [1121] = 1085, + [1122] = 1118, [1123] = 1123, - [1124] = 1124, - [1125] = 1125, - [1126] = 1117, + [1124] = 524, + [1125] = 1083, + [1126] = 1107, [1127] = 1127, - [1128] = 594, + [1128] = 1128, [1129] = 1129, - [1130] = 1121, - [1131] = 1131, + [1130] = 1130, + [1131] = 1088, [1132] = 1132, - [1133] = 1133, - [1134] = 1096, - [1135] = 1102, - [1136] = 1097, - [1137] = 1137, + [1133] = 1103, + [1134] = 1134, + [1135] = 1135, + [1136] = 1136, + [1137] = 1117, [1138] = 1138, [1139] = 1139, [1140] = 1140, [1141] = 1141, - [1142] = 603, + [1142] = 548, [1143] = 1143, [1144] = 1144, - [1145] = 1145, - [1146] = 1125, - [1147] = 1147, + [1145] = 551, + [1146] = 552, + [1147] = 574, [1148] = 1148, [1149] = 1149, - [1150] = 1129, - [1151] = 1107, - [1152] = 1152, + [1150] = 1144, + [1151] = 1151, + [1152] = 574, [1153] = 1153, - [1154] = 1154, - [1155] = 554, - [1156] = 549, - [1157] = 1157, - [1158] = 525, - [1159] = 1159, - [1160] = 1160, - [1161] = 547, + [1154] = 1139, + [1155] = 549, + [1156] = 1156, + [1157] = 1140, + [1158] = 1149, + [1159] = 1151, + [1160] = 1140, + [1161] = 570, [1162] = 1162, [1163] = 1163, - [1164] = 1163, + [1164] = 1164, [1165] = 1165, [1166] = 1166, - [1167] = 1154, - [1168] = 1168, - [1169] = 1169, + [1167] = 1167, + [1168] = 1162, + [1169] = 1144, [1170] = 1170, - [1171] = 1171, - [1172] = 1172, - [1173] = 1173, - [1174] = 1174, - [1175] = 1175, - [1176] = 547, + [1171] = 1144, + [1172] = 1143, + [1173] = 1138, + [1174] = 549, + [1175] = 1170, + [1176] = 559, [1177] = 1177, - [1178] = 592, - [1179] = 1179, - [1180] = 582, - [1181] = 1181, - [1182] = 1182, + [1178] = 1178, + [1179] = 1153, + [1180] = 1180, + [1181] = 1140, + [1182] = 570, [1183] = 1183, - [1184] = 600, + [1184] = 1184, [1185] = 1185, - [1186] = 594, + [1186] = 524, [1187] = 1187, - [1188] = 1188, - [1189] = 579, - [1190] = 1187, - [1191] = 1168, - [1192] = 1177, - [1193] = 592, - [1194] = 582, - [1195] = 1175, - [1196] = 579, - [1197] = 1166, - [1198] = 1168, - [1199] = 1199, - [1200] = 1174, - [1201] = 576, - [1202] = 1202, + [1188] = 540, + [1189] = 559, + [1190] = 548, + [1191] = 1163, + [1192] = 1192, + [1193] = 1193, + [1194] = 1194, + [1195] = 1195, + [1196] = 539, + [1197] = 540, + [1198] = 551, + [1199] = 1141, + [1200] = 539, + [1201] = 552, + [1202] = 521, [1203] = 1203, [1204] = 1204, - [1205] = 600, - [1206] = 554, - [1207] = 549, + [1205] = 1205, + [1206] = 1206, + [1207] = 1108, [1208] = 1208, [1209] = 1209, - [1210] = 576, - [1211] = 1172, - [1212] = 1170, - [1213] = 1171, - [1214] = 1169, - [1215] = 1171, - [1216] = 1168, - [1217] = 525, - [1218] = 603, - [1219] = 1171, + [1210] = 1210, + [1211] = 1211, + [1212] = 1212, + [1213] = 1213, + [1214] = 1214, + [1215] = 1215, + [1216] = 1216, + [1217] = 1217, + [1218] = 1109, + [1219] = 1219, [1220] = 1220, - [1221] = 1221, - [1222] = 1222, + [1221] = 1212, + [1222] = 1214, [1223] = 1223, [1224] = 1224, [1225] = 1225, - [1226] = 1226, - [1227] = 1227, - [1228] = 1228, - [1229] = 1227, - [1230] = 1226, - [1231] = 1224, - [1232] = 1232, + [1226] = 1096, + [1227] = 1208, + [1228] = 1220, + [1229] = 1225, + [1230] = 1230, + [1231] = 1210, + [1232] = 1208, [1233] = 1233, - [1234] = 1225, - [1235] = 1227, - [1236] = 1236, + [1234] = 1234, + [1235] = 1165, + [1236] = 1217, [1237] = 1237, - [1238] = 1238, + [1238] = 1206, [1239] = 1239, - [1240] = 1224, + [1240] = 1225, [1241] = 1225, - [1242] = 1226, - [1243] = 1243, + [1242] = 1242, + [1243] = 1216, [1244] = 1244, - [1245] = 1245, + [1245] = 1219, [1246] = 1246, - [1247] = 1247, - [1248] = 1248, - [1249] = 1249, - [1250] = 1250, - [1251] = 1251, - [1252] = 1252, + [1247] = 1215, + [1248] = 1209, + [1249] = 1211, + [1250] = 1214, + [1251] = 1116, + [1252] = 1230, [1253] = 1253, - [1254] = 1254, - [1255] = 1103, - [1256] = 1256, + [1254] = 1223, + [1255] = 1255, + [1256] = 1214, [1257] = 1257, [1258] = 1258, [1259] = 1259, [1260] = 1260, [1261] = 1261, - [1262] = 1262, - [1263] = 1263, - [1264] = 1260, - [1265] = 1265, - [1266] = 1259, - [1267] = 1256, - [1268] = 1253, - [1269] = 1247, + [1262] = 1261, + [1263] = 1244, + [1264] = 1264, + [1265] = 1223, + [1266] = 1223, + [1267] = 1267, + [1268] = 1268, + [1269] = 1269, [1270] = 1270, [1271] = 1271, - [1272] = 1272, - [1273] = 1124, - [1274] = 1249, - [1275] = 1123, - [1276] = 1223, + [1272] = 1242, + [1273] = 1098, + [1274] = 1274, + [1275] = 1275, + [1276] = 1271, [1277] = 1277, - [1278] = 1248, + [1278] = 1208, [1279] = 1279, - [1280] = 1257, - [1281] = 1243, - [1282] = 1226, - [1283] = 1227, - [1284] = 1225, - [1285] = 1224, - [1286] = 1239, - [1287] = 1221, - [1288] = 1237, - [1289] = 1236, - [1290] = 1118, + [1280] = 1280, + [1281] = 1281, + [1282] = 1264, + [1283] = 1283, + [1284] = 1284, + [1285] = 1285, + [1286] = 1283, + [1287] = 1287, + [1288] = 1288, + [1289] = 1289, + [1290] = 1290, [1291] = 1291, [1292] = 1292, - [1293] = 1254, - [1294] = 1122, - [1295] = 1228, - [1296] = 1159, + [1293] = 1293, + [1294] = 1294, + [1295] = 1295, + [1296] = 1296, [1297] = 1297, [1298] = 1298, [1299] = 1299, @@ -3813,109 +3758,109 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1302] = 1302, [1303] = 1303, [1304] = 1304, - [1305] = 1305, + [1305] = 1299, [1306] = 1306, [1307] = 1307, [1308] = 1308, [1309] = 1309, [1310] = 1310, - [1311] = 1311, - [1312] = 1312, + [1311] = 1302, + [1312] = 1290, [1313] = 1313, [1314] = 1314, [1315] = 1315, [1316] = 1316, - [1317] = 1317, - [1318] = 1303, + [1317] = 1302, + [1318] = 1304, [1319] = 1319, - [1320] = 1320, - [1321] = 1321, - [1322] = 1322, - [1323] = 1323, + [1320] = 1301, + [1321] = 1298, + [1322] = 1283, + [1323] = 1287, [1324] = 1324, [1325] = 1325, [1326] = 1326, [1327] = 1327, - [1328] = 1308, + [1328] = 1328, [1329] = 1329, [1330] = 1330, [1331] = 1331, [1332] = 1332, - [1333] = 1333, + [1333] = 342, [1334] = 1334, - [1335] = 1335, + [1335] = 1330, [1336] = 1336, - [1337] = 1337, + [1337] = 1285, [1338] = 1338, [1339] = 1339, - [1340] = 1300, - [1341] = 1338, - [1342] = 1329, - [1343] = 1323, + [1340] = 1340, + [1341] = 1341, + [1342] = 1342, + [1343] = 1325, [1344] = 1344, - [1345] = 1317, - [1346] = 1299, - [1347] = 1344, - [1348] = 347, - [1349] = 1349, + [1345] = 1345, + [1346] = 1346, + [1347] = 1347, + [1348] = 1348, + [1349] = 1291, [1350] = 1350, - [1351] = 1339, - [1352] = 1322, - [1353] = 1353, - [1354] = 1354, - [1355] = 1355, - [1356] = 1315, + [1351] = 1319, + [1352] = 1304, + [1353] = 1324, + [1354] = 1293, + [1355] = 1299, + [1356] = 1306, [1357] = 1357, - [1358] = 1358, - [1359] = 1359, - [1360] = 1360, - [1361] = 1327, - [1362] = 1326, - [1363] = 1325, - [1364] = 1364, - [1365] = 1306, - [1366] = 1366, - [1367] = 1335, - [1368] = 1334, - [1369] = 1369, - [1370] = 1370, - [1371] = 1321, - [1372] = 1319, - [1373] = 1373, - [1374] = 1305, - [1375] = 1304, - [1376] = 1302, - [1377] = 1320, - [1378] = 1301, - [1379] = 1316, + [1358] = 1328, + [1359] = 1310, + [1360] = 1301, + [1361] = 1361, + [1362] = 1362, + [1363] = 1350, + [1364] = 1361, + [1365] = 1308, + [1366] = 1331, + [1367] = 1309, + [1368] = 1332, + [1369] = 1308, + [1370] = 1309, + [1371] = 1371, + [1372] = 1372, + [1373] = 1302, + [1374] = 1374, + [1375] = 1290, + [1376] = 1376, + [1377] = 1329, + [1378] = 1336, + [1379] = 1379, [1380] = 1380, - [1381] = 1320, - [1382] = 1299, - [1383] = 1344, + [1381] = 1381, + [1382] = 1382, + [1383] = 1383, [1384] = 1384, [1385] = 1385, - [1386] = 1339, + [1386] = 1386, [1387] = 1387, [1388] = 1388, [1389] = 1389, - [1390] = 1301, - [1391] = 1305, - [1392] = 1322, - [1393] = 1339, - [1394] = 1329, - [1395] = 1324, - [1396] = 1324, + [1390] = 1390, + [1391] = 1391, + [1392] = 1392, + [1393] = 1393, + [1394] = 1394, + [1395] = 1395, + [1396] = 1396, [1397] = 1397, [1398] = 1398, - [1399] = 1319, + [1399] = 1399, [1400] = 1400, - [1401] = 1401, + [1401] = 565, [1402] = 1402, [1403] = 1403, [1404] = 1404, - [1405] = 1405, + [1405] = 1383, [1406] = 1406, - [1407] = 1407, + [1407] = 1385, [1408] = 1408, [1409] = 1409, [1410] = 1410, @@ -3941,15 +3886,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1430] = 1430, [1431] = 1431, [1432] = 1432, - [1433] = 1433, + [1433] = 1398, [1434] = 1434, - [1435] = 1435, + [1435] = 1419, [1436] = 1436, [1437] = 1437, [1438] = 1438, [1439] = 1439, [1440] = 1440, - [1441] = 1441, + [1441] = 1422, [1442] = 1442, [1443] = 1443, [1444] = 1444, @@ -3958,8 +3903,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1447] = 1447, [1448] = 1448, [1449] = 1449, - [1450] = 1450, - [1451] = 1279, + [1450] = 514, + [1451] = 543, [1452] = 1452, [1453] = 1453, [1454] = 1454, @@ -3969,21 +3914,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1458] = 1458, [1459] = 1459, [1460] = 1460, - [1461] = 1443, - [1462] = 1444, + [1461] = 1461, + [1462] = 1462, [1463] = 1463, [1464] = 1464, - [1465] = 1465, - [1466] = 1466, - [1467] = 1467, + [1465] = 1395, + [1466] = 1394, + [1467] = 1402, [1468] = 1468, - [1469] = 1443, - [1470] = 1444, + [1469] = 1469, + [1470] = 1470, [1471] = 1471, [1472] = 1472, [1473] = 1473, [1474] = 1474, - [1475] = 1401, + [1475] = 1475, [1476] = 1476, [1477] = 1477, [1478] = 1478, @@ -3991,156 +3936,156 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1480] = 1480, [1481] = 1481, [1482] = 1482, - [1483] = 1483, - [1484] = 1405, - [1485] = 1485, + [1483] = 1382, + [1484] = 1386, + [1485] = 1399, [1486] = 1486, - [1487] = 1410, - [1488] = 1488, - [1489] = 1489, - [1490] = 1490, + [1487] = 1487, + [1488] = 1445, + [1489] = 1446, + [1490] = 1412, [1491] = 1491, - [1492] = 1477, - [1493] = 1474, - [1494] = 1491, - [1495] = 1495, - [1496] = 1496, - [1497] = 1497, - [1498] = 1498, - [1499] = 1499, - [1500] = 1478, - [1501] = 1501, - [1502] = 1502, - [1503] = 1503, - [1504] = 1504, - [1505] = 1505, + [1492] = 1492, + [1493] = 1493, + [1494] = 1494, + [1495] = 1387, + [1496] = 1388, + [1497] = 1389, + [1498] = 1392, + [1499] = 1408, + [1500] = 1409, + [1501] = 1414, + [1502] = 1418, + [1503] = 1426, + [1504] = 1427, + [1505] = 1428, [1506] = 1506, [1507] = 1507, - [1508] = 1508, + [1508] = 1470, [1509] = 1509, [1510] = 1510, - [1511] = 1490, + [1511] = 1511, [1512] = 1512, [1513] = 1513, [1514] = 1514, [1515] = 1515, - [1516] = 1482, + [1516] = 1440, [1517] = 1517, [1518] = 1518, - [1519] = 1519, + [1519] = 1417, [1520] = 1520, [1521] = 1521, - [1522] = 1479, + [1522] = 1522, [1523] = 1523, - [1524] = 1524, - [1525] = 1444, + [1524] = 1452, + [1525] = 1525, [1526] = 1526, [1527] = 1527, - [1528] = 1443, + [1528] = 1528, [1529] = 1529, - [1530] = 1530, + [1530] = 1205, [1531] = 1531, - [1532] = 1465, - [1533] = 1533, - [1534] = 1464, - [1535] = 1463, - [1536] = 1460, - [1537] = 1450, - [1538] = 1445, - [1539] = 1448, + [1532] = 1479, + [1533] = 1486, + [1534] = 1534, + [1535] = 1482, + [1536] = 1536, + [1537] = 1525, + [1538] = 1526, + [1539] = 1512, [1540] = 1540, [1541] = 1541, [1542] = 1542, - [1543] = 1428, - [1544] = 1544, - [1545] = 1545, - [1546] = 1427, - [1547] = 1545, - [1548] = 1544, + [1543] = 1510, + [1544] = 1457, + [1545] = 1469, + [1546] = 1494, + [1547] = 1480, + [1548] = 1511, [1549] = 1549, - [1550] = 1426, - [1551] = 1551, + [1550] = 1550, + [1551] = 1383, [1552] = 1552, [1553] = 1553, - [1554] = 1441, - [1555] = 1555, - [1556] = 1436, - [1557] = 1557, + [1554] = 1385, + [1555] = 1476, + [1556] = 1540, + [1557] = 1468, [1558] = 1558, [1559] = 1559, - [1560] = 1560, + [1560] = 1443, [1561] = 1561, - [1562] = 1523, + [1562] = 1562, [1563] = 1563, - [1564] = 1564, - [1565] = 1431, - [1566] = 1566, - [1567] = 1510, - [1568] = 1502, - [1569] = 1499, - [1570] = 1497, - [1571] = 1496, - [1572] = 1495, - [1573] = 1430, - [1574] = 1507, - [1575] = 1476, - [1576] = 1576, - [1577] = 1577, - [1578] = 1466, - [1579] = 1542, + [1564] = 1396, + [1565] = 1404, + [1566] = 1410, + [1567] = 1562, + [1568] = 1381, + [1569] = 1569, + [1570] = 1423, + [1571] = 1513, + [1572] = 1514, + [1573] = 1515, + [1574] = 1424, + [1575] = 1439, + [1576] = 1442, + [1577] = 1478, + [1578] = 1563, + [1579] = 1579, [1580] = 1580, - [1581] = 537, - [1582] = 1449, - [1583] = 1447, - [1584] = 1446, - [1585] = 1442, - [1586] = 1440, - [1587] = 1439, - [1588] = 1438, - [1589] = 1437, - [1590] = 1435, - [1591] = 1434, - [1592] = 1433, - [1593] = 1432, - [1594] = 572, - [1595] = 1414, - [1596] = 1416, - [1597] = 577, - [1598] = 1413, - [1599] = 1561, - [1600] = 1501, - [1601] = 1503, - [1602] = 1504, - [1603] = 1518, - [1604] = 1519, - [1605] = 1520, - [1606] = 1560, - [1607] = 1418, - [1608] = 1559, - [1609] = 1429, - [1610] = 1412, - [1611] = 1611, - [1612] = 1409, + [1581] = 1581, + [1582] = 1438, + [1583] = 1583, + [1584] = 1383, + [1585] = 1492, + [1586] = 1385, + [1587] = 1463, + [1588] = 1588, + [1589] = 1589, + [1590] = 1590, + [1591] = 1534, + [1592] = 1400, + [1593] = 1589, + [1594] = 1432, + [1595] = 1447, + [1596] = 1413, + [1597] = 1420, + [1598] = 1421, + [1599] = 1599, + [1600] = 1600, + [1601] = 1460, + [1602] = 1542, + [1603] = 1603, + [1604] = 1390, + [1605] = 1416, + [1606] = 1429, + [1607] = 1430, + [1608] = 1431, + [1609] = 1481, + [1610] = 1471, + [1611] = 1472, + [1612] = 1475, [1613] = 1613, - [1614] = 1558, - [1615] = 1557, - [1616] = 1553, + [1614] = 1493, + [1615] = 1528, + [1616] = 1616, [1617] = 1617, - [1618] = 1541, - [1619] = 1406, - [1620] = 1402, - [1621] = 1489, + [1618] = 1453, + [1619] = 1603, + [1620] = 1620, + [1621] = 1621, [1622] = 1531, - [1623] = 1481, - [1624] = 1485, - [1625] = 1580, + [1623] = 1559, + [1624] = 1624, + [1625] = 1625, [1626] = 1626, - [1627] = 1419, - [1628] = 1527, - [1629] = 1526, - [1630] = 1400, - [1631] = 1631, - [1632] = 1512, + [1627] = 1625, + [1628] = 1628, + [1629] = 1629, + [1630] = 1630, + [1631] = 1224, + [1632] = 1632, [1633] = 1633, [1634] = 1634, [1635] = 1635, @@ -4148,359 +4093,193 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1637] = 1637, [1638] = 1638, [1639] = 1639, - [1640] = 1480, - [1641] = 1506, - [1642] = 1508, - [1643] = 1509, - [1644] = 1644, - [1645] = 1645, + [1640] = 1640, + [1641] = 1641, + [1642] = 1642, + [1643] = 1643, + [1644] = 1624, + [1645] = 1629, [1646] = 1646, - [1647] = 1277, + [1647] = 1647, [1648] = 1648, [1649] = 1649, [1650] = 1650, [1651] = 1651, [1652] = 1652, - [1653] = 1653, - [1654] = 1654, - [1655] = 1655, - [1656] = 1651, - [1657] = 1646, - [1658] = 1655, - [1659] = 1659, + [1653] = 1647, + [1654] = 1648, + [1655] = 1640, + [1656] = 1656, + [1657] = 1657, + [1658] = 1658, + [1659] = 1648, [1660] = 1660, [1661] = 1661, [1662] = 1662, [1663] = 1663, [1664] = 1664, [1665] = 1665, - [1666] = 1666, - [1667] = 1667, - [1668] = 1668, + [1666] = 1651, + [1667] = 1626, + [1668] = 1651, [1669] = 1669, - [1670] = 1645, + [1670] = 1670, [1671] = 1671, - [1672] = 1663, + [1672] = 1642, [1673] = 1673, - [1674] = 1674, - [1675] = 1675, + [1674] = 1625, + [1675] = 1649, [1676] = 1676, - [1677] = 1677, - [1678] = 1646, + [1677] = 1624, + [1678] = 1678, [1679] = 1679, - [1680] = 1680, - [1681] = 1681, - [1682] = 1665, + [1680] = 1642, + [1681] = 1651, + [1682] = 1682, [1683] = 1683, [1684] = 1684, - [1685] = 1685, - [1686] = 1666, + [1685] = 1638, + [1686] = 1629, [1687] = 1687, - [1688] = 1688, - [1689] = 1652, + [1688] = 1642, + [1689] = 1639, [1690] = 1690, [1691] = 1691, [1692] = 1692, [1693] = 1693, - [1694] = 1694, - [1695] = 1695, - [1696] = 1674, - [1697] = 1675, - [1698] = 1691, - [1699] = 1699, - [1700] = 1700, - [1701] = 1668, - [1702] = 1691, - [1703] = 1703, + [1694] = 1629, + [1695] = 1693, + [1696] = 1696, + [1697] = 1663, + [1698] = 1656, + [1699] = 1665, + [1700] = 1693, + [1701] = 1701, + [1702] = 1702, + [1703] = 1693, [1704] = 1704, - [1705] = 1685, - [1706] = 1706, - [1707] = 1669, - [1708] = 1644, + [1705] = 1648, + [1706] = 1626, + [1707] = 1679, + [1708] = 1626, [1709] = 1709, - [1710] = 1710, - [1711] = 1690, - [1712] = 1709, - [1713] = 1688, - [1714] = 1691, - [1715] = 1715, - [1716] = 1669, - [1717] = 1674, - [1718] = 1675, - [1719] = 1644, - [1720] = 1646, + [1710] = 1640, + [1711] = 1625, + [1712] = 1624, + [1713] = 1642, + [1714] = 1714, + [1715] = 1626, + [1716] = 1639, + [1717] = 1640, + [1718] = 1682, + [1719] = 1639, + [1720] = 1640, [1721] = 1721, - [1722] = 1722, + [1722] = 1673, [1723] = 1723, - [1724] = 1654, - [1725] = 1651, - [1726] = 1726, - [1727] = 1652, - [1728] = 1728, - [1729] = 1654, - [1730] = 1644, - [1731] = 1651, - [1732] = 1646, - [1733] = 1675, - [1734] = 1674, - [1735] = 1654, - [1736] = 1655, - [1737] = 1737, - [1738] = 1738, - [1739] = 1669, - [1740] = 1655, - [1741] = 1671, - [1742] = 1677, - [1743] = 1674, - [1744] = 1651, - [1745] = 1652, - [1746] = 1675, - [1747] = 1654, - [1748] = 1748, - [1749] = 1667, - [1750] = 1652, + [1724] = 1724, + [1725] = 1625, + [1726] = 1678, + [1727] = 1624, + [1728] = 1724, + [1729] = 1639, + [1730] = 1662, }; -static inline bool sym__glimmer_template_content_character_set_1(int32_t c) { - return (c < 8192 - ? (c < ' ' - ? (c < '\r' - ? c == '\t' - : c <= '\r') - : (c <= ' ' || (c < 5760 - ? c == 160 - : c <= 5760))) - : (c <= 8203 || (c < 8287 - ? (c < 8239 - ? (c >= 8232 && c <= 8233) - : c <= 8239) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} - -static inline bool anon_sym_BANG_character_set_1(int32_t c) { - return (c < 8192 - ? (c < ' ' - ? (c < '\r' - ? (c >= '\t' && c <= '\n') - : c <= '\r') - : (c <= ' ' || (c < 5760 - ? c == 160 - : c <= 5760))) - : (c <= 8203 || (c < 8287 - ? (c < 8239 - ? (c >= 8232 && c <= 8233) - : c <= 8239) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} - -static inline bool sym_unescaped_double_string_fragment_character_set_1(int32_t c) { - return (c < 8232 - ? (c < 160 - ? (c < ' ' - ? c == '\t' - : c <= ' ') - : (c <= 160 || (c < 8192 - ? c == 5760 - : c <= 8203))) - : (c <= 8233 || (c < 12288 - ? (c < 8287 - ? c == 8239 - : c <= 8288) - : (c <= 12288 || c == 65279)))); -} - -static inline bool sym_identifier_character_set_1(int32_t c) { - return (c < 160 - ? (c < ':' - ? (c < 0 - ? c == 0 - : (c <= '#' || (c >= '%' && c <= '/'))) - : (c <= '@' || (c < '`' - ? (c >= '[' && c <= '^') - : (c <= '`' || (c >= '{' && c <= '~'))))) - : (c <= 160 || (c < 8239 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || (c >= 8232 && c <= 8233))) - : (c <= 8239 || (c < 12288 - ? (c >= 8287 && c <= 8288) - : (c <= 12288 || c == 65279)))))); -} - -static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 5760 - ? (c < ':' - ? (c < 0 - ? c == 0 - : (c <= '#' || (c >= '%' && c <= '/'))) - : (c <= '@' || (c < '`' - ? (c >= '[' && c <= '^') - : (c <= '~' || c == 160)))) - : (c <= 5760 || (c < 8287 - ? (c < 8232 - ? (c >= 8192 && c <= 8203) - : (c <= 8233 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} - -static inline bool sym_identifier_character_set_3(int32_t c) { - return (c < 8232 - ? (c < 160 - ? (c < 0 - ? c == 0 - : c <= '~') - : (c <= 160 || (c < 8192 - ? c == 5760 - : c <= 8203))) - : (c <= 8233 || (c < 12288 - ? (c < 8287 - ? c == 8239 - : c <= 8288) - : (c <= 12288 || c == 65279)))); -} - -static inline bool sym_identifier_character_set_4(int32_t c) { - return (c < 160 - ? (c < ':' - ? (c < 0 - ? c == 0 - : (c <= '#' || (c >= '%' && c <= '/'))) - : (c <= '@' || (c < '`' - ? (c >= '[' && c <= '^') - : (c <= '`' || (c >= '|' && c <= '~'))))) - : (c <= 160 || (c < 8239 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || (c >= 8232 && c <= 8233))) - : (c <= 8239 || (c < 12288 - ? (c >= 8287 && c <= 8288) - : (c <= 12288 || c == 65279)))))); -} - -static inline bool sym_private_property_identifier_character_set_1(int32_t c) { - return (c < 5760 - ? (c < '[' - ? (c < 0 - ? c == 0 - : (c <= '#' || (c >= '%' && c <= '@'))) - : (c <= '^' || (c < '{' - ? c == '`' - : (c <= '~' || c == 160)))) - : (c <= 5760 || (c < 8287 - ? (c < 8232 - ? (c >= 8192 && c <= 8203) - : (c <= 8233 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} +static const TSCharacterRange extras_character_set_1[] = { + {'\t', '\r'}, {' ', ' '}, {0xa0, 0xa0}, {0x1680, 0x1680}, {0x2000, 0x200b}, {0x2028, 0x2029}, {0x202f, 0x202f}, {0x205f, 0x2060}, + {0x3000, 0x3000}, {0xfeff, 0xfeff}, +}; -static inline bool sym_preproc_character_set_1(int32_t c) { - return (c < 5760 - ? (c < '`' - ? (c < '%' - ? (c >= 0 && c <= '#') - : (c <= '@' || (c >= '[' && c <= '^'))) - : (c <= '`' || (c < 160 - ? (c >= '{' && c <= '~') - : c <= 160))) - : (c <= 5760 || (c < 8287 - ? (c < 8232 - ? (c >= 8192 && c <= 8203) - : (c <= 8233 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} +static const TSCharacterRange sym_identifier_character_set_1[] = { + {'$', '$'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0x7f, 0x9f}, {0xa1, 0x167f}, {0x1681, 0x1fff}, + {0x200c, 0x2027}, {0x202a, 0x202e}, {0x2030, 0x205e}, {0x2061, 0x2fff}, {0x3001, 0xfefe}, {0xff00, 0x10ffff}, +}; -static inline bool sym_preproc_character_set_2(int32_t c) { - return (c < 5760 - ? (c < '[' - ? (c < '%' - ? (c >= 0 && c <= '#') - : (c <= '/' || (c >= ':' && c <= '@'))) - : (c <= '^' || (c < '{' - ? c == '`' - : (c <= '~' || c == 160)))) - : (c <= 5760 || (c < 8287 - ? (c < 8232 - ? (c >= 8192 && c <= 8203) - : (c <= 8233 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} +static const TSCharacterRange sym_identifier_character_set_2[] = { + {'$', '$'}, {'0', '9'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0x7f, 0x9f}, {0xa1, 0x167f}, + {0x1681, 0x1fff}, {0x200c, 0x2027}, {0x202a, 0x202e}, {0x2030, 0x205e}, {0x2061, 0x2fff}, {0x3001, 0xfefe}, {0xff00, 0x10ffff}, +}; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(159); - if (lookahead == '!') ADVANCE(267); - if (lookahead == '"') ADVANCE(200); - if (lookahead == '#') ADVANCE(1); - if (lookahead == '$') ADVANCE(314); - if (lookahead == '%') ADVANCE(255); - if (lookahead == '&') ADVANCE(242); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '(') ADVANCE(167); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(162); - if (lookahead == '+') ADVANCE(249); - if (lookahead == ',') ADVANCE(165); - if (lookahead == '-') ADVANCE(251); - if (lookahead == '.') ADVANCE(196); - if (lookahead == '/') ADVANCE(294); - if (lookahead == '0') ADVANCE(299); - if (lookahead == ':') ADVANCE(170); - if (lookahead == ';') ADVANCE(168); - if (lookahead == '<') ADVANCE(186); - if (lookahead == '=') ADVANCE(173); - if (lookahead == '>') ADVANCE(192); - if (lookahead == '?') ADVANCE(44); - if (lookahead == '@') ADVANCE(319); - if (lookahead == '[') ADVANCE(175); - if (lookahead == '\\') ADVANCE(113); - if (lookahead == ']') ADVANCE(176); - if (lookahead == '^') ADVANCE(245); - if (lookahead == '`') ADVANCE(292); - if (lookahead == 's') ADVANCE(312); - if (lookahead == '{') ADVANCE(164); - if (lookahead == '|') ADVANCE(246); - if (lookahead == '}') ADVANCE(166); - if (lookahead == '~') ADVANCE(268); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(156) - if (lookahead != 0 && - lookahead > 31) ADVANCE(316); + if (eof) ADVANCE(139); + ADVANCE_MAP( + '!', 239, + '"', 172, + '#', 1, + '$', 286, + '%', 227, + '&', 214, + '\'', 173, + '(', 147, + ')', 149, + '*', 142, + '+', 221, + ',', 145, + '-', 223, + '.', 168, + '/', 266, + '0', 271, + ':', 150, + ';', 148, + '<', 160, + '=', 153, + '>', 164, + '?', 41, + '@', 291, + '[', 155, + '\\', 93, + ']', 156, + '^', 217, + '`', 264, + 's', 284, + '{', 144, + '|', 218, + '}', 146, + '~', 240, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(136); + if (lookahead > '@') ADVANCE(288); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(321); - if (lookahead == '!') ADVANCE(160); + if (lookahead == '\n') ADVANCE(293); + if (lookahead == '!') ADVANCE(140); if (lookahead == '\\') ADVANCE(3); - if (sym_preproc_character_set_1(lookahead)) ADVANCE(10); - if (lookahead != 0) ADVANCE(317); + if (set_contains(extras_character_set_1, 10, lookahead) || + (!eof && lookahead <= 0x08) || + (0x0e <= lookahead && lookahead <= 0x1f) || + ('!' <= lookahead && lookahead <= '#') || + ('%' <= lookahead && lookahead <= '@') || + ('[' <= lookahead && lookahead <= '^') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= '~')) ADVANCE(10); + if (lookahead > '#') ADVANCE(289); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(321); + if (lookahead == '\n') ADVANCE(293); if (lookahead == '\\') ADVANCE(3); - if (sym_preproc_character_set_1(lookahead)) ADVANCE(10); - if (lookahead != 0) ADVANCE(317); + if (set_contains(extras_character_set_1, 10, lookahead) || + (!eof && lookahead <= 0x08) || + (0x0e <= lookahead && lookahead <= 0x1f) || + ('!' <= lookahead && lookahead <= '#') || + ('%' <= lookahead && lookahead <= '@') || + ('[' <= lookahead && lookahead <= '^') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= '~')) ADVANCE(10); + if (lookahead > '#') ADVANCE(289); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(321); + if (lookahead == '\n') ADVANCE(293); if (lookahead == 'u') ADVANCE(4); if (lookahead != 0) ADVANCE(10); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(321); + if (lookahead == '\n') ADVANCE(293); if (lookahead == '{') ADVANCE(7); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || @@ -4508,1960 +4287,1842 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(10); END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(321); - if (lookahead == '}') ADVANCE(317); + if (lookahead == '\n') ADVANCE(293); + if (lookahead == '}') ADVANCE(289); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5); if (lookahead != 0) ADVANCE(10); END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(321); + if (lookahead == '\n') ADVANCE(293); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(317); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(289); if (lookahead != 0) ADVANCE(10); END_STATE(); case 7: - if (lookahead == '\n') ADVANCE(321); + if (lookahead == '\n') ADVANCE(293); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5); if (lookahead != 0) ADVANCE(10); END_STATE(); case 8: - if (lookahead == '\n') ADVANCE(321); + if (lookahead == '\n') ADVANCE(293); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(6); if (lookahead != 0) ADVANCE(10); END_STATE(); case 9: - if (lookahead == '\n') ADVANCE(321); + if (lookahead == '\n') ADVANCE(293); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(8); if (lookahead != 0) ADVANCE(10); END_STATE(); case 10: - if (lookahead == '\n') ADVANCE(321); + if (lookahead == '\n') ADVANCE(293); if (lookahead != 0) ADVANCE(10); END_STATE(); case 11: - if (lookahead == '\n') ADVANCE(320); - if (lookahead == '\t' || - lookahead == '\r' || + if (lookahead == '\n') ADVANCE(292); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(11); END_STATE(); case 12: - if (lookahead == '\n') SKIP(12) - if (lookahead == '/') ADVANCE(178); - if (lookahead == '<') ADVANCE(180); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(179); - if (lookahead != 0) ADVANCE(177); + if (lookahead == '\n') SKIP(46); + if (lookahead == '/') ADVANCE(33); + if (lookahead == '[') ADVANCE(88); + if (lookahead == '\\') ADVANCE(135); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(267); + if (lookahead != 0) ADVANCE(268); END_STATE(); case 13: - if (lookahead == '\n') SKIP(48) - if (lookahead == '/') ADVANCE(36); - if (lookahead == '[') ADVANCE(92); - if (lookahead == '\\') ADVANCE(155); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(295); - if (lookahead != 0) ADVANCE(296); + ADVANCE_MAP( + '!', 239, + '"', 172, + '#', 89, + '%', 226, + '&', 215, + '\'', 173, + '(', 147, + ')', 149, + '*', 143, + '+', 220, + ',', 145, + '-', 222, + '.', 169, + '/', 224, + '0', 271, + ':', 150, + ';', 148, + '<', 162, + '=', 153, + '>', 165, + '?', 42, + '@', 291, + '[', 155, + '\\', 94, + ']', 156, + '^', 216, + '`', 264, + '{', 144, + '|', 219, + '}', 146, + '~', 240, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(13); + if (lookahead > '#') ADVANCE(288); END_STATE(); case 14: - if (lookahead == '!') ADVANCE(267); - if (lookahead == '"') ADVANCE(200); - if (lookahead == '#') ADVANCE(93); - if (lookahead == '%') ADVANCE(254); - if (lookahead == '&') ADVANCE(243); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '(') ADVANCE(167); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(163); - if (lookahead == '+') ADVANCE(248); - if (lookahead == ',') ADVANCE(165); - if (lookahead == '-') ADVANCE(250); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(252); - if (lookahead == '0') ADVANCE(299); - if (lookahead == ':') ADVANCE(170); - if (lookahead == ';') ADVANCE(168); - if (lookahead == '<') ADVANCE(189); - if (lookahead == '=') ADVANCE(173); - if (lookahead == '>') ADVANCE(193); - if (lookahead == '?') ADVANCE(45); - if (lookahead == '@') ADVANCE(319); - if (lookahead == '[') ADVANCE(175); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == ']') ADVANCE(176); - if (lookahead == '^') ADVANCE(244); - if (lookahead == '`') ADVANCE(292); - if (lookahead == '{') ADVANCE(164); - if (lookahead == '|') ADVANCE(247); - if (lookahead == '}') ADVANCE(166); - if (lookahead == '~') ADVANCE(268); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(14) - if (lookahead != 0 && - lookahead > 31) ADVANCE(316); + ADVANCE_MAP( + '!', 238, + '"', 172, + '#', 2, + '\'', 173, + '(', 147, + '*', 141, + '+', 220, + ',', 145, + '-', 222, + '.', 39, + '/', 224, + '0', 271, + ';', 148, + '<', 158, + '@', 291, + '[', 155, + '\\', 94, + '`', 264, + 's', 284, + '{', 144, + '}', 146, + '~', 240, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(14); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(288); END_STATE(); case 15: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(200); - if (lookahead == '#') ADVANCE(2); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '(') ADVANCE(167); - if (lookahead == '*') ADVANCE(161); - if (lookahead == '+') ADVANCE(248); - if (lookahead == ',') ADVANCE(165); - if (lookahead == '-') ADVANCE(250); - if (lookahead == '.') ADVANCE(42); - if (lookahead == '/') ADVANCE(252); - if (lookahead == '0') ADVANCE(299); - if (lookahead == ';') ADVANCE(168); - if (lookahead == '<') ADVANCE(190); - if (lookahead == '@') ADVANCE(319); - if (lookahead == '[') ADVANCE(175); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == '`') ADVANCE(292); - if (lookahead == 's') ADVANCE(312); - if (lookahead == '{') ADVANCE(164); - if (lookahead == '}') ADVANCE(166); - if (lookahead == '~') ADVANCE(268); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(15) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(316); + ADVANCE_MAP( + '!', 238, + '"', 172, + '#', 89, + '\'', 173, + '(', 147, + ')', 149, + '+', 220, + ',', 145, + '-', 222, + '.', 39, + '/', 224, + '0', 271, + ';', 148, + '<', 158, + '@', 291, + '[', 155, + '\\', 94, + ']', 156, + '`', 264, + '{', 144, + '}', 146, + '~', 240, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(15); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(288); END_STATE(); case 16: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(200); - if (lookahead == '#') ADVANCE(93); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '(') ADVANCE(167); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '+') ADVANCE(248); - if (lookahead == ',') ADVANCE(165); - if (lookahead == '-') ADVANCE(250); - if (lookahead == '.') ADVANCE(42); - if (lookahead == '/') ADVANCE(252); - if (lookahead == '0') ADVANCE(299); - if (lookahead == ';') ADVANCE(168); - if (lookahead == '<') ADVANCE(190); - if (lookahead == '@') ADVANCE(319); - if (lookahead == '[') ADVANCE(175); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == ']') ADVANCE(176); - if (lookahead == '`') ADVANCE(292); - if (lookahead == '{') ADVANCE(164); - if (lookahead == '}') ADVANCE(166); - if (lookahead == '~') ADVANCE(268); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(16) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != '^' && - lookahead != '|') ADVANCE(316); + ADVANCE_MAP( + '!', 238, + '"', 172, + '#', 89, + '\'', 173, + '(', 147, + '+', 220, + '-', 222, + '.', 169, + '/', 224, + '0', 271, + '<', 158, + '@', 291, + '[', 155, + '\\', 94, + '`', 264, + '{', 144, + '~', 240, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(16); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(288); END_STATE(); case 17: - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(200); - if (lookahead == '#') ADVANCE(93); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '(') ADVANCE(167); - if (lookahead == '+') ADVANCE(248); - if (lookahead == '-') ADVANCE(250); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(252); - if (lookahead == '0') ADVANCE(299); - if (lookahead == '<') ADVANCE(190); - if (lookahead == '@') ADVANCE(319); - if (lookahead == '[') ADVANCE(175); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == '`') ADVANCE(292); - if (lookahead == '{') ADVANCE(164); - if (lookahead == '~') ADVANCE(268); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(17) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|' && - lookahead != '}') ADVANCE(316); + ADVANCE_MAP( + '!', 86, + '"', 172, + '#', 89, + '%', 227, + '&', 214, + '\'', 173, + '(', 147, + ')', 149, + '*', 142, + '+', 221, + ',', 145, + '-', 223, + '.', 169, + '/', 225, + '0', 271, + ':', 150, + ';', 148, + '<', 161, + '=', 153, + '>', 164, + '?', 41, + '@', 291, + '[', 155, + '\\', 94, + ']', 156, + '^', 217, + '`', 264, + '{', 144, + '|', 218, + '}', 146, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(17); + if (lookahead > '#' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(288); END_STATE(); case 18: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(200); - if (lookahead == '#') ADVANCE(93); - if (lookahead == '%') ADVANCE(255); - if (lookahead == '&') ADVANCE(242); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '(') ADVANCE(167); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(162); - if (lookahead == '+') ADVANCE(249); - if (lookahead == ',') ADVANCE(165); - if (lookahead == '-') ADVANCE(251); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(253); - if (lookahead == '0') ADVANCE(299); - if (lookahead == ':') ADVANCE(170); - if (lookahead == ';') ADVANCE(168); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(173); - if (lookahead == '>') ADVANCE(192); - if (lookahead == '?') ADVANCE(44); - if (lookahead == '@') ADVANCE(319); - if (lookahead == '[') ADVANCE(175); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == ']') ADVANCE(176); - if (lookahead == '^') ADVANCE(245); - if (lookahead == '`') ADVANCE(292); - if (lookahead == '{') ADVANCE(164); - if (lookahead == '|') ADVANCE(246); - if (lookahead == '}') ADVANCE(166); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(18) - if (lookahead != 0 && - lookahead > 31 && - lookahead != '~') ADVANCE(316); + ADVANCE_MAP( + '!', 86, + '%', 226, + '&', 215, + '(', 147, + ')', 149, + '*', 143, + '+', 220, + ',', 145, + '-', 222, + '.', 167, + '/', 224, + ':', 150, + ';', 148, + '<', 162, + '=', 87, + '>', 165, + '?', 42, + '[', 155, + '\\', 94, + ']', 156, + '^', 216, + '`', 264, + '{', 144, + '|', 219, + '}', 146, + ); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(269); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(19); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '`' || '~' < lookahead)) ADVANCE(288); END_STATE(); case 19: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '%') ADVANCE(254); - if (lookahead == '&') ADVANCE(243); - if (lookahead == '(') ADVANCE(167); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(163); - if (lookahead == '+') ADVANCE(248); - if (lookahead == ',') ADVANCE(165); - if (lookahead == '-') ADVANCE(250); - if (lookahead == '.') ADVANCE(195); - if (lookahead == '/') ADVANCE(252); - if (lookahead == ':') ADVANCE(170); - if (lookahead == ';') ADVANCE(168); - if (lookahead == '<') ADVANCE(188); - if (lookahead == '=') ADVANCE(172); - if (lookahead == '>') ADVANCE(193); - if (lookahead == '?') ADVANCE(45); - if (lookahead == '[') ADVANCE(175); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == ']') ADVANCE(176); - if (lookahead == '^') ADVANCE(244); - if (lookahead == '`') ADVANCE(292); - if (lookahead == '{') ADVANCE(164); - if (lookahead == '|') ADVANCE(247); - if (lookahead == '}') ADVANCE(166); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(19) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '\'' || '@' < lookahead) && - lookahead != '~') ADVANCE(316); + ADVANCE_MAP( + '!', 86, + '%', 226, + '&', 215, + '(', 147, + ')', 149, + '*', 143, + '+', 220, + ',', 145, + '-', 222, + '.', 167, + '/', 224, + ':', 150, + ';', 148, + '<', 162, + '=', 87, + '>', 165, + '?', 42, + '[', 155, + '\\', 94, + ']', 156, + '^', 216, + '`', 264, + '{', 144, + '|', 219, + '}', 146, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(19); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(288); END_STATE(); case 20: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '%') ADVANCE(254); - if (lookahead == '&') ADVANCE(243); - if (lookahead == '(') ADVANCE(167); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(163); - if (lookahead == '+') ADVANCE(248); - if (lookahead == ',') ADVANCE(165); - if (lookahead == '-') ADVANCE(250); - if (lookahead == '.') ADVANCE(195); - if (lookahead == '/') ADVANCE(252); - if (lookahead == ':') ADVANCE(170); - if (lookahead == ';') ADVANCE(168); - if (lookahead == '<') ADVANCE(188); - if (lookahead == '=') ADVANCE(89); - if (lookahead == '>') ADVANCE(193); - if (lookahead == '?') ADVANCE(45); - if (lookahead == '[') ADVANCE(175); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == ']') ADVANCE(176); - if (lookahead == '^') ADVANCE(244); - if (lookahead == '`') ADVANCE(292); - if (lookahead == '{') ADVANCE(164); - if (lookahead == '|') ADVANCE(247); - if (lookahead == '}') ADVANCE(166); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(21) - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(297); - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '\'' || '@' < lookahead) && - lookahead != '~') ADVANCE(316); + ADVANCE_MAP( + '"', 172, + '#', 89, + '&', 25, + '\'', 173, + '*', 141, + ',', 145, + '.', 39, + '/', 33, + '0', 271, + ';', 148, + '<', 159, + '@', 291, + '[', 155, + '\\', 94, + 's', 284, + '{', 144, + '}', 146, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(20); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(288); END_STATE(); case 21: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '%') ADVANCE(254); - if (lookahead == '&') ADVANCE(243); - if (lookahead == '(') ADVANCE(167); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(163); - if (lookahead == '+') ADVANCE(248); - if (lookahead == ',') ADVANCE(165); - if (lookahead == '-') ADVANCE(250); - if (lookahead == '.') ADVANCE(195); - if (lookahead == '/') ADVANCE(252); - if (lookahead == ':') ADVANCE(170); - if (lookahead == ';') ADVANCE(168); - if (lookahead == '<') ADVANCE(188); - if (lookahead == '=') ADVANCE(89); - if (lookahead == '>') ADVANCE(193); - if (lookahead == '?') ADVANCE(45); - if (lookahead == '[') ADVANCE(175); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == ']') ADVANCE(176); - if (lookahead == '^') ADVANCE(244); - if (lookahead == '`') ADVANCE(292); - if (lookahead == '{') ADVANCE(164); - if (lookahead == '|') ADVANCE(247); - if (lookahead == '}') ADVANCE(166); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(21) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '\'' || '@' < lookahead) && - lookahead != '~') ADVANCE(316); + ADVANCE_MAP( + '"', 172, + '#', 89, + '\'', 173, + '(', 147, + '*', 141, + '.', 169, + '/', 33, + '0', 271, + '@', 291, + '[', 155, + '\\', 94, + 's', 284, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(21); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(288); END_STATE(); case 22: - if (lookahead == '"') ADVANCE(200); - if (lookahead == '#') ADVANCE(93); - if (lookahead == '&') ADVANCE(28); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '(') ADVANCE(167); - if (lookahead == '*') ADVANCE(161); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(36); - if (lookahead == '0') ADVANCE(299); - if (lookahead == '<') ADVANCE(185); - if (lookahead == '@') ADVANCE(319); - if (lookahead == '[') ADVANCE(175); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == 's') ADVANCE(312); - if (lookahead == '{') ADVANCE(164); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(22) - if (lookahead != 0 && - lookahead > '!' && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(316); + if (lookahead == '"') ADVANCE(172); + if (lookahead == '&') ADVANCE(26); + if (lookahead == '/') ADVANCE(175); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(174); + if (lookahead != 0) ADVANCE(176); END_STATE(); case 23: - if (lookahead == '"') ADVANCE(200); - if (lookahead == '#') ADVANCE(93); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '*') ADVANCE(161); - if (lookahead == ',') ADVANCE(165); - if (lookahead == '.') ADVANCE(42); - if (lookahead == '/') ADVANCE(36); - if (lookahead == '0') ADVANCE(299); - if (lookahead == ';') ADVANCE(168); - if (lookahead == '<') ADVANCE(108); - if (lookahead == '@') ADVANCE(319); - if (lookahead == '[') ADVANCE(175); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == 's') ADVANCE(312); - if (lookahead == '{') ADVANCE(164); - if (lookahead == '}') ADVANCE(166); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(23) - if (lookahead != 0 && - lookahead > '!' && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(316); + if (lookahead == '"') ADVANCE(172); + if (lookahead == '/') ADVANCE(33); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(23); END_STATE(); case 24: - if (lookahead == '"') ADVANCE(200); - if (lookahead == '&') ADVANCE(29); - if (lookahead == '/') ADVANCE(203); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(202); - if (lookahead != 0) ADVANCE(204); + if (lookahead == '"') ADVANCE(172); + if (lookahead == '/') ADVANCE(243); + if (lookahead == '\\') ADVANCE(96); + if (lookahead == '\n' || + lookahead == '\r') SKIP(23); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(246); + if (lookahead != 0) ADVANCE(248); END_STATE(); case 25: - if (lookahead == '"') ADVANCE(200); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '.') ADVANCE(195); - if (lookahead == '/') ADVANCE(37); - if (lookahead == ':') ADVANCE(170); - if (lookahead == '<') ADVANCE(184); - if (lookahead == '=') ADVANCE(171); - if (lookahead == '>') ADVANCE(191); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == '{') ADVANCE(164); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(25) - if (lookahead == '$' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(308); - if (lookahead != 0 && - lookahead > '~') ADVANCE(316); + if (lookahead == '#') ADVANCE(107); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 26: - if (lookahead == '"') ADVANCE(200); - if (lookahead == '/') ADVANCE(36); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(26) + if (lookahead == '#') ADVANCE(107); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + if (lookahead != 0) ADVANCE(176); END_STATE(); case 27: - if (lookahead == '"') ADVANCE(200); - if (lookahead == '/') ADVANCE(271); - if (lookahead == '\\') ADVANCE(116); - if (lookahead == '\n' || - lookahead == '\r') SKIP(26) - if (sym_unescaped_double_string_fragment_character_set_1(lookahead)) ADVANCE(274); - if (lookahead != 0) ADVANCE(276); + if (lookahead == '#') ADVANCE(107); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + if (lookahead != 0) ADVANCE(182); END_STATE(); case 28: - if (lookahead == '#') ADVANCE(127); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(87); + if (lookahead == '$') ADVANCE(97); + if (lookahead == '/') ADVANCE(33); + if (lookahead == '\\') ADVANCE(96); + if (lookahead == '`') ADVANCE(264); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(29); END_STATE(); case 29: - if (lookahead == '#') ADVANCE(127); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(87); - if (lookahead != 0) ADVANCE(204); + if (lookahead == '$') ADVANCE(97); + if (lookahead == '/') ADVANCE(33); + if (lookahead == '`') ADVANCE(264); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(29); END_STATE(); case 30: - if (lookahead == '#') ADVANCE(127); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(87); - if (lookahead != 0) ADVANCE(210); + if (lookahead == '&') ADVANCE(27); + if (lookahead == '\'') ADVANCE(173); + if (lookahead == '/') ADVANCE(181); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(180); + if (lookahead != 0) ADVANCE(182); END_STATE(); case 31: - if (lookahead == '$') ADVANCE(117); - if (lookahead == '/') ADVANCE(36); - if (lookahead == '\\') ADVANCE(116); - if (lookahead == '`') ADVANCE(292); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(32) + if (lookahead == '\'') ADVANCE(173); + if (lookahead == '/') ADVANCE(33); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(31); END_STATE(); case 32: - if (lookahead == '$') ADVANCE(117); - if (lookahead == '/') ADVANCE(36); - if (lookahead == '`') ADVANCE(292); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(32) + if (lookahead == '\'') ADVANCE(173); + if (lookahead == '/') ADVANCE(249); + if (lookahead == '\\') ADVANCE(96); + if (lookahead == '\n' || + lookahead == '\r') SKIP(31); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(252); + if (lookahead != 0) ADVANCE(254); END_STATE(); case 33: - if (lookahead == '&') ADVANCE(30); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '/') ADVANCE(209); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(208); - if (lookahead != 0) ADVANCE(210); + if (lookahead == '*') ADVANCE(36); + if (lookahead == '/') ADVANCE(263); END_STATE(); case 34: - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '/') ADVANCE(36); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(34) + if (lookahead == '*') ADVANCE(36); + if (lookahead == '/') ADVANCE(263); + if (lookahead == '>') ADVANCE(171); END_STATE(); case 35: - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '/') ADVANCE(277); - if (lookahead == '\\') ADVANCE(116); - if (lookahead == '\n' || - lookahead == '\r') SKIP(34) - if (sym_unescaped_double_string_fragment_character_set_1(lookahead)) ADVANCE(280); - if (lookahead != 0) ADVANCE(282); + if (lookahead == '*') ADVANCE(35); + if (lookahead == '/') ADVANCE(260); + if (lookahead != 0) ADVANCE(36); END_STATE(); case 36: - if (lookahead == '*') ADVANCE(39); - if (lookahead == '/') ADVANCE(291); + if (lookahead == '*') ADVANCE(35); + if (lookahead != 0) ADVANCE(36); END_STATE(); case 37: - if (lookahead == '*') ADVANCE(39); - if (lookahead == '/') ADVANCE(291); - if (lookahead == '>') ADVANCE(199); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(36); + if (lookahead != 0) ADVANCE(178); END_STATE(); case 38: - if (lookahead == '*') ADVANCE(38); - if (lookahead == '/') ADVANCE(288); - if (lookahead != 0) ADVANCE(39); + if (lookahead == '*') ADVANCE(183); + if (lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(36); + if (lookahead != 0) ADVANCE(184); END_STATE(); case 39: - if (lookahead == '*') ADVANCE(38); - if (lookahead != 0) ADVANCE(39); + if (lookahead == '.') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); case 40: - if (lookahead == '*') ADVANCE(205); - if (lookahead == '#' || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(39); - if (lookahead != 0) ADVANCE(206); + if (lookahead == '.') ADVANCE(187); END_STATE(); case 41: - if (lookahead == '*') ADVANCE(211); - if (lookahead == '#' || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(39); - if (lookahead != 0) ADVANCE(212); + if (lookahead == '.') ADVANCE(187); + if (lookahead == '?') ADVANCE(237); END_STATE(); case 42: - if (lookahead == '.') ADVANCE(46); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + if (lookahead == '.') ADVANCE(187); + if (lookahead == '?') ADVANCE(236); END_STATE(); case 43: - if (lookahead == '.') ADVANCE(215); + if (lookahead == '.') ADVANCE(203); END_STATE(); case 44: - if (lookahead == '.') ADVANCE(215); - if (lookahead == '?') ADVANCE(265); + if (lookahead == '.') ADVANCE(167); + if (lookahead == '/') ADVANCE(34); + if (lookahead == ':') ADVANCE(150); + if (lookahead == '=') ADVANCE(151); + if (lookahead == '>') ADVANCE(163); + if (lookahead == '\\') ADVANCE(94); + if (lookahead == '{') ADVANCE(144); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(44); + if (lookahead == '$' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(280); + if (lookahead > '~') ADVANCE(288); END_STATE(); case 45: - if (lookahead == '.') ADVANCE(215); - if (lookahead == '?') ADVANCE(264); + if (lookahead == '/') ADVANCE(266); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(46); END_STATE(); case 46: - if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(33); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(46); END_STATE(); case 47: - if (lookahead == '/') ADVANCE(294); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(48) + if (lookahead == ';') ADVANCE(157); END_STATE(); case 48: - if (lookahead == '/') ADVANCE(36); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(48) + if (lookahead == ';') ADVANCE(157); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); END_STATE(); case 49: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); END_STATE(); case 50: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); END_STATE(); case 51: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); END_STATE(); case 52: - if (lookahead == ';') ADVANCE(183); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(51); + if (lookahead == ';') ADVANCE(157); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); END_STATE(); case 53: - if (lookahead == ';') ADVANCE(183); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); + if (lookahead == ';') ADVANCE(157); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(52); END_STATE(); case 54: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(53); END_STATE(); case 55: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(54); END_STATE(); case 56: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(55); END_STATE(); case 57: - if (lookahead == ';') ADVANCE(183); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(56); + if (lookahead == ';') ADVANCE(157); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 58: - if (lookahead == ';') ADVANCE(183); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(57); + if (lookahead == ';') ADVANCE(157); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 59: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); case 60: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); END_STATE(); case 61: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(60); END_STATE(); case 62: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); END_STATE(); case 63: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); END_STATE(); case 64: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); END_STATE(); case 65: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); END_STATE(); case 66: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(65); END_STATE(); case 67: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 68: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(67); END_STATE(); case 69: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(68); END_STATE(); case 70: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(69); END_STATE(); case 71: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(70); END_STATE(); case 72: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71); END_STATE(); case 73: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); END_STATE(); case 74: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(73); END_STATE(); case 75: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); END_STATE(); case 76: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(75); END_STATE(); case 77: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(76); END_STATE(); case 78: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(77); END_STATE(); case 79: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(78); END_STATE(); case 80: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(79); END_STATE(); case 81: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); case 82: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(81); END_STATE(); case 83: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(82); END_STATE(); case 84: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); END_STATE(); case 85: - if (lookahead == ';') ADVANCE(183); + if (lookahead == ';') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); END_STATE(); case 86: - if (lookahead == ';') ADVANCE(183); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + if (lookahead == '=') ADVANCE(233); END_STATE(); case 87: - if (lookahead == ';') ADVANCE(183); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); + if (lookahead == '=') ADVANCE(231); END_STATE(); case 88: - if (lookahead == '=') ADVANCE(261); + if (lookahead == '\\') ADVANCE(134); + if (lookahead == ']') ADVANCE(268); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(88); END_STATE(); case 89: - if (lookahead == '=') ADVANCE(259); + if (lookahead == '\\') ADVANCE(95); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(290); END_STATE(); case 90: - if (lookahead == '>') ADVANCE(181); + if (lookahead == 'e') ADVANCE(92); END_STATE(); case 91: - if (lookahead == '>') ADVANCE(182); + if (lookahead == 'g') ADVANCE(90); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(91); END_STATE(); case 92: - if (lookahead == '\\') ADVANCE(154); - if (lookahead == ']') ADVANCE(296); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(92); + if (lookahead == 't') ADVANCE(11); END_STATE(); case 93: - if (lookahead == '\\') ADVANCE(115); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(318); + if (lookahead == 'u') ADVANCE(98); + if (lookahead == 'x') ADVANCE(124); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(257); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(259); + if (lookahead != 0) ADVANCE(255); END_STATE(); case 94: - if (lookahead == 'a') ADVANCE(110); + if (lookahead == 'u') ADVANCE(99); END_STATE(); case 95: - if (lookahead == 'a') ADVANCE(111); + if (lookahead == 'u') ADVANCE(100); END_STATE(); case 96: - if (lookahead == 'e') ADVANCE(104); + if (lookahead == 'u') ADVANCE(101); + if (lookahead == 'x') ADVANCE(124); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(257); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(259); + if (lookahead != 0) ADVANCE(255); END_STATE(); case 97: - if (lookahead == 'e') ADVANCE(90); + if (lookahead == '{') ADVANCE(265); END_STATE(); case 98: - if (lookahead == 'e') ADVANCE(109); + if (lookahead == '{') ADVANCE(117); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(129); END_STATE(); case 99: - if (lookahead == 'e') ADVANCE(91); + if (lookahead == '{') ADVANCE(122); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(130); END_STATE(); case 100: - if (lookahead == 'e') ADVANCE(105); + if (lookahead == '{') ADVANCE(123); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(131); END_STATE(); case 101: - if (lookahead == 'g') ADVANCE(98); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(101); + if (lookahead == '{') ADVANCE(125); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(121); END_STATE(); case 102: - if (lookahead == 'l') ADVANCE(94); + if (lookahead == '}') ADVANCE(288); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(102); END_STATE(); case 103: - if (lookahead == 'l') ADVANCE(95); + if (lookahead == '}') ADVANCE(255); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(103); END_STATE(); case 104: - if (lookahead == 'm') ADVANCE(106); + if (lookahead == '}') ADVANCE(256); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(104); END_STATE(); case 105: - if (lookahead == 'm') ADVANCE(107); + if (lookahead == '}') ADVANCE(290); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(105); END_STATE(); case 106: - if (lookahead == 'p') ADVANCE(102); + if (lookahead == '+' || + lookahead == '-') ADVANCE(113); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); END_STATE(); case 107: - if (lookahead == 'p') ADVANCE(103); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(51); END_STATE(); case 108: - if (lookahead == 't') ADVANCE(96); + if (lookahead == '0' || + lookahead == '1') ADVANCE(274); END_STATE(); case 109: - if (lookahead == 't') ADVANCE(11); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(275); END_STATE(); case 110: - if (lookahead == 't') ADVANCE(97); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(272); END_STATE(); case 111: - if (lookahead == 't') ADVANCE(99); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); case 112: - if (lookahead == 't') ADVANCE(100); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); END_STATE(); case 113: - if (lookahead == 'u') ADVANCE(118); - if (lookahead == 'x') ADVANCE(144); - if (lookahead == '\r' || - lookahead == '?') ADVANCE(285); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(287); - if (lookahead != 0) ADVANCE(283); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); END_STATE(); case 114: - if (lookahead == 'u') ADVANCE(119); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(288); END_STATE(); case 115: - if (lookahead == 'u') ADVANCE(120); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(255); END_STATE(); case 116: - if (lookahead == 'u') ADVANCE(121); - if (lookahead == 'x') ADVANCE(144); - if (lookahead == '\r' || - lookahead == '?') ADVANCE(285); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(287); - if (lookahead != 0) ADVANCE(283); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(276); END_STATE(); case 117: - if (lookahead == '{') ADVANCE(293); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(104); END_STATE(); case 118: - if (lookahead == '{') ADVANCE(137); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(149); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(256); END_STATE(); case 119: - if (lookahead == '{') ADVANCE(142); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(290); END_STATE(); case 120: - if (lookahead == '{') ADVANCE(143); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(151); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(56); END_STATE(); case 121: - if (lookahead == '{') ADVANCE(145); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(124); END_STATE(); case 122: - if (lookahead == '}') ADVANCE(316); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(122); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(102); END_STATE(); case 123: - if (lookahead == '}') ADVANCE(283); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(123); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(105); END_STATE(); case 124: - if (lookahead == '}') ADVANCE(284); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(124); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); END_STATE(); case 125: - if (lookahead == '}') ADVANCE(318); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(103); END_STATE(); case 126: - if (lookahead == '+' || - lookahead == '-') ADVANCE(133); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); END_STATE(); case 127: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(140); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(53); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); END_STATE(); case 128: - if (lookahead == '0' || - lookahead == '1') ADVANCE(301); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(119); END_STATE(); case 129: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(302); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(126); END_STATE(); case 130: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(300); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(127); END_STATE(); case 131: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(128); END_STATE(); case 132: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(304); + if (lookahead != 0 && + lookahead != '#' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(176); END_STATE(); case 133: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); + if (lookahead != 0 && + lookahead != '#' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(182); END_STATE(); case 134: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(316); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(88); END_STATE(); case 135: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(283); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(268); END_STATE(); case 136: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); + if (eof) ADVANCE(139); + ADVANCE_MAP( + '!', 239, + '"', 172, + '#', 1, + '$', 286, + '%', 227, + '&', 214, + '\'', 173, + '(', 147, + ')', 149, + '*', 142, + '+', 221, + ',', 145, + '-', 223, + '.', 168, + '/', 225, + '0', 271, + ':', 150, + ';', 148, + '<', 160, + '=', 153, + '>', 164, + '?', 41, + '@', 291, + '[', 155, + '\\', 94, + ']', 156, + '^', 217, + '`', 264, + 's', 284, + '{', 144, + '|', 218, + '}', 146, + '~', 240, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(136); + if (lookahead > '@') ADVANCE(288); END_STATE(); case 137: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(124); + if (eof) ADVANCE(139); + ADVANCE_MAP( + '!', 239, + '"', 172, + '#', 2, + '%', 226, + '&', 215, + '\'', 173, + '(', 147, + '*', 143, + '+', 220, + ',', 145, + '-', 222, + '.', 169, + '/', 224, + '0', 271, + ';', 148, + '<', 162, + '=', 152, + '>', 165, + '?', 42, + '@', 291, + '[', 155, + '\\', 94, + '^', 216, + '`', 264, + '{', 144, + '|', 219, + '}', 146, + '~', 240, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(137); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead)) ADVANCE(288); END_STATE(); case 138: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(284); + if (eof) ADVANCE(139); + ADVANCE_MAP( + '!', 238, + '"', 172, + '#', 1, + '\'', 173, + '(', 147, + ')', 149, + '*', 141, + '+', 220, + ',', 145, + '-', 222, + '.', 169, + '/', 224, + '0', 271, + ':', 150, + ';', 148, + '<', 158, + '=', 154, + '>', 163, + '?', 40, + '@', 291, + '[', 155, + '\\', 94, + ']', 156, + '`', 264, + '{', 144, + '}', 146, + '~', 240, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(138); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(288); END_STATE(); case 139: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(318); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 140: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(58); + ACCEPT_TOKEN(sym_hash_bang_line); + if (lookahead == '\n') ADVANCE(293); + if (lookahead != 0) ADVANCE(140); END_STATE(); case 141: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 142: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(122); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(229); + if (lookahead == '=') ADVANCE(190); END_STATE(); case 143: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(125); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(228); END_STATE(); case 144: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(135); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 145: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(123); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 146: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(138); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 147: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(134); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 148: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(139); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 149: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(146); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 150: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(147); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 151: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(148); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 152: - if (lookahead != 0 && - lookahead != '#' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(204); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(231); END_STATE(); case 153: - if (lookahead != 0 && - lookahead != '#' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(210); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(231); + if (lookahead == '>') ADVANCE(186); END_STATE(); case 154: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(92); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(186); END_STATE(); case 155: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(296); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 156: - if (eof) ADVANCE(159); - if (lookahead == '!') ADVANCE(267); - if (lookahead == '"') ADVANCE(200); - if (lookahead == '#') ADVANCE(1); - if (lookahead == '$') ADVANCE(314); - if (lookahead == '%') ADVANCE(255); - if (lookahead == '&') ADVANCE(242); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '(') ADVANCE(167); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(162); - if (lookahead == '+') ADVANCE(249); - if (lookahead == ',') ADVANCE(165); - if (lookahead == '-') ADVANCE(251); - if (lookahead == '.') ADVANCE(196); - if (lookahead == '/') ADVANCE(253); - if (lookahead == '0') ADVANCE(299); - if (lookahead == ':') ADVANCE(170); - if (lookahead == ';') ADVANCE(168); - if (lookahead == '<') ADVANCE(186); - if (lookahead == '=') ADVANCE(173); - if (lookahead == '>') ADVANCE(192); - if (lookahead == '?') ADVANCE(44); - if (lookahead == '@') ADVANCE(319); - if (lookahead == '[') ADVANCE(175); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == ']') ADVANCE(176); - if (lookahead == '^') ADVANCE(245); - if (lookahead == '`') ADVANCE(292); - if (lookahead == 's') ADVANCE(312); - if (lookahead == '{') ADVANCE(164); - if (lookahead == '|') ADVANCE(246); - if (lookahead == '}') ADVANCE(166); - if (lookahead == '~') ADVANCE(268); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(156) - if (lookahead != 0 && - lookahead > 31) ADVANCE(316); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 157: - if (eof) ADVANCE(159); - if (lookahead == '!') ADVANCE(267); - if (lookahead == '"') ADVANCE(200); - if (lookahead == '#') ADVANCE(2); - if (lookahead == '%') ADVANCE(254); - if (lookahead == '&') ADVANCE(243); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '(') ADVANCE(167); - if (lookahead == '*') ADVANCE(163); - if (lookahead == '+') ADVANCE(248); - if (lookahead == ',') ADVANCE(165); - if (lookahead == '-') ADVANCE(250); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(252); - if (lookahead == '0') ADVANCE(299); - if (lookahead == ';') ADVANCE(168); - if (lookahead == '<') ADVANCE(189); - if (lookahead == '=') ADVANCE(172); - if (lookahead == '>') ADVANCE(193); - if (lookahead == '?') ADVANCE(45); - if (lookahead == '@') ADVANCE(319); - if (lookahead == '[') ADVANCE(175); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == '^') ADVANCE(244); - if (lookahead == '`') ADVANCE(292); - if (lookahead == '{') ADVANCE(164); - if (lookahead == '|') ADVANCE(247); - if (lookahead == '}') ADVANCE(166); - if (lookahead == '~') ADVANCE(268); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(157) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(316); + ACCEPT_TOKEN(sym_html_character_reference); END_STATE(); case 158: - if (eof) ADVANCE(159); - if (lookahead == '!') ADVANCE(266); - if (lookahead == '"') ADVANCE(200); - if (lookahead == '#') ADVANCE(1); - if (lookahead == '\'') ADVANCE(201); - if (lookahead == '(') ADVANCE(167); - if (lookahead == ')') ADVANCE(169); - if (lookahead == '*') ADVANCE(161); - if (lookahead == '+') ADVANCE(248); - if (lookahead == ',') ADVANCE(165); - if (lookahead == '-') ADVANCE(250); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(252); - if (lookahead == '0') ADVANCE(299); - if (lookahead == ':') ADVANCE(170); - if (lookahead == ';') ADVANCE(168); - if (lookahead == '<') ADVANCE(190); - if (lookahead == '=') ADVANCE(174); - if (lookahead == '>') ADVANCE(191); - if (lookahead == '?') ADVANCE(43); - if (lookahead == '@') ADVANCE(319); - if (lookahead == '[') ADVANCE(175); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == ']') ADVANCE(176); - if (lookahead == '`') ADVANCE(292); - if (lookahead == '{') ADVANCE(164); - if (lookahead == '}') ADVANCE(166); - if (lookahead == '~') ADVANCE(268); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(158) - if (lookahead != 0 && - lookahead > 31 && - lookahead != '%' && - lookahead != '&' && - lookahead != '^' && - lookahead != '|') ADVANCE(316); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 159: - ACCEPT_TOKEN(ts_builtin_sym_end); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '/') ADVANCE(170); END_STATE(); case 160: - ACCEPT_TOKEN(sym_hash_bang_line); - if (lookahead == '\n') ADVANCE(321); - if (lookahead != 0) ADVANCE(160); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '/') ADVANCE(170); + if (lookahead == '<') ADVANCE(213); + if (lookahead == '=') ADVANCE(230); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(213); + if (lookahead == '=') ADVANCE(230); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(257); - if (lookahead == '=') ADVANCE(218); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(212); + if (lookahead == '=') ADVANCE(230); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(256); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(235); + if (lookahead == '>') ADVANCE(208); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(235); + if (lookahead == '>') ADVANCE(209); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(sym_jsx_identifier); + if (lookahead == '$' || + lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_LT_SLASH); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_GT); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(259); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(259); - if (lookahead == '>') ADVANCE(214); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(214); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(26); + if (lookahead == '/') ADVANCE(175); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(174); + if (lookahead != 0 && + lookahead != '"') ADVANCE(176); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(132); + if (lookahead == '*') ADVANCE(178); + if (lookahead == '/') ADVANCE(179); + if (lookahead != 0 && + lookahead != '"') ADVANCE(176); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(132); + if (lookahead != 0 && + lookahead != '"') ADVANCE(176); END_STATE(); case 177: - ACCEPT_TOKEN(sym__glimmer_template_content); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(37); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '/') ADVANCE(176); + if (lookahead != 0 && + lookahead != '"') ADVANCE(178); END_STATE(); case 178: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '*') ADVANCE(39); - if (lookahead == '/') ADVANCE(291); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(37); + if (lookahead == '*') ADVANCE(177); + if (lookahead != 0 && + lookahead != '"') ADVANCE(178); END_STATE(); case 179: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(178); - if (lookahead == '<') ADVANCE(180); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(179); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(261); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(176); if (lookahead != 0 && - lookahead != '\n') ADVANCE(177); + lookahead != '"') ADVANCE(179); END_STATE(); case 180: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(112); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(27); + if (lookahead == '/') ADVANCE(181); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(180); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(182); END_STATE(); case 181: - ACCEPT_TOKEN(sym_glimmer_opening_tag); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(133); + if (lookahead == '*') ADVANCE(184); + if (lookahead == '/') ADVANCE(185); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(182); END_STATE(); case 182: - ACCEPT_TOKEN(sym_glimmer_closing_tag); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(133); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(182); END_STATE(); case 183: - ACCEPT_TOKEN(sym_html_character_reference); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(38); + if (lookahead == '*') ADVANCE(183); + if (lookahead == '/') ADVANCE(182); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(184); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(38); + if (lookahead == '*') ADVANCE(183); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(184); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '/') ADVANCE(198); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(262); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(182); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(185); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '/') ADVANCE(198); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(258); - if (lookahead == 't') ADVANCE(96); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(241); - if (lookahead == '=') ADVANCE(258); + ACCEPT_TOKEN(sym_optional_chain); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(240); - if (lookahead == '=') ADVANCE(258); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(240); - if (lookahead == '=') ADVANCE(258); - if (lookahead == 't') ADVANCE(96); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == 't') ADVANCE(96); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(263); - if (lookahead == '>') ADVANCE(236); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(263); - if (lookahead == '>') ADVANCE(237); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 194: - ACCEPT_TOKEN(sym_jsx_identifier); - if (lookahead == '$' || - lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(46); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_LT_SLASH); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_SLASH_GT); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); END_STATE(); case 202: - ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(29); - if (lookahead == '/') ADVANCE(203); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(202); - if (lookahead != 0 && - lookahead != '"') ADVANCE(204); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); case 203: - ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(152); - if (lookahead == '*') ADVANCE(206); - if (lookahead == '/') ADVANCE(207); - if (lookahead != 0 && - lookahead != '"') ADVANCE(204); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 204: - ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(152); - if (lookahead != 0 && - lookahead != '"') ADVANCE(204); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 205: - ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(40); - if (lookahead == '*') ADVANCE(205); - if (lookahead == '/') ADVANCE(204); - if (lookahead != 0 && - lookahead != '"') ADVANCE(206); + ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '=') ADVANCE(200); END_STATE(); case 206: - ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(40); - if (lookahead == '*') ADVANCE(205); - if (lookahead != 0 && - lookahead != '"') ADVANCE(206); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 207: - ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == 8232 || - lookahead == 8233) ADVANCE(204); - if (lookahead != 0 && - lookahead != '"') ADVANCE(207); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '=') ADVANCE(201); END_STATE(); case 208: - ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(30); - if (lookahead == '/') ADVANCE(209); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(208); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(210); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(196); + if (lookahead == '>') ADVANCE(211); END_STATE(); case 209: - ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(153); - if (lookahead == '*') ADVANCE(212); - if (lookahead == '/') ADVANCE(213); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(210); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(210); END_STATE(); case 210: - ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(153); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(210); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); case 211: - ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(41); - if (lookahead == '*') ADVANCE(211); - if (lookahead == '/') ADVANCE(210); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(212); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(197); END_STATE(); case 212: - ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(41); - if (lookahead == '*') ADVANCE(211); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(212); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 213: - ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(290); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == 8232 || - lookahead == 8233) ADVANCE(210); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(213); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(198); END_STATE(); case 214: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(205); + if (lookahead == '=') ADVANCE(194); END_STATE(); case 215: - ACCEPT_TOKEN(sym_optional_chain); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(204); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(193); END_STATE(); case 218: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(195); + if (lookahead == '|') ADVANCE(207); END_STATE(); case 219: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(206); END_STATE(); case 220: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(241); END_STATE(); case 221: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(241); + if (lookahead == '=') ADVANCE(188); END_STATE(); case 222: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(242); END_STATE(); case 223: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(242); + if (lookahead == '=') ADVANCE(189); END_STATE(); case 224: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(36); + if (lookahead == '/') ADVANCE(263); END_STATE(); case 225: - ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(36); + if (lookahead == '/') ADVANCE(263); + if (lookahead == '=') ADVANCE(191); END_STATE(); case 226: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 227: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(192); END_STATE(); case 228: - ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 229: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(199); END_STATE(); case 230: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 231: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(232); END_STATE(); case 232: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); case 233: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(228); + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(234); END_STATE(); case 234: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); case 235: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(229); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 236: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(224); - if (lookahead == '>') ADVANCE(239); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); case 237: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(238); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(202); END_STATE(); case 238: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 239: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(225); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(233); END_STATE(); case 240: - ACCEPT_TOKEN(anon_sym_LT_LT); - END_STATE(); - case 241: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(226); - END_STATE(); - case 242: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(233); - if (lookahead == '=') ADVANCE(222); - END_STATE(); - case 243: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(232); - END_STATE(); - case 244: - ACCEPT_TOKEN(anon_sym_CARET); - END_STATE(); - case 245: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(221); - END_STATE(); - case 246: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(223); - if (lookahead == '|') ADVANCE(235); - END_STATE(); - case 247: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(234); - END_STATE(); - case 248: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(269); - END_STATE(); - case 249: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(269); - if (lookahead == '=') ADVANCE(216); - END_STATE(); - case 250: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(270); - END_STATE(); - case 251: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(270); - if (lookahead == '=') ADVANCE(217); - END_STATE(); - case 252: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(39); - if (lookahead == '/') ADVANCE(291); - END_STATE(); - case 253: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(39); - if (lookahead == '/') ADVANCE(291); - if (lookahead == '=') ADVANCE(219); - END_STATE(); - case 254: - ACCEPT_TOKEN(anon_sym_PERCENT); - END_STATE(); - case 255: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(220); - END_STATE(); - case 256: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - END_STATE(); - case 257: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(227); - END_STATE(); - case 258: - ACCEPT_TOKEN(anon_sym_LT_EQ); - END_STATE(); - case 259: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(260); - END_STATE(); - case 260: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); - END_STATE(); - case 261: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(262); - END_STATE(); - case 262: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); - END_STATE(); - case 263: - ACCEPT_TOKEN(anon_sym_GT_EQ); - END_STATE(); - case 264: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - END_STATE(); - case 265: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(230); - END_STATE(); - case 266: - ACCEPT_TOKEN(anon_sym_BANG); - END_STATE(); - case 267: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(261); - END_STATE(); - case 268: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 269: + case 241: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 270: + case 242: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 271: + case 243: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(273); - if (lookahead == '/') ADVANCE(275); + if (lookahead == '*') ADVANCE(245); + if (lookahead == '/') ADVANCE(247); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(276); + lookahead != '\\') ADVANCE(248); END_STATE(); - case 272: + case 244: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '/') ADVANCE(276); + if (lookahead == '*') ADVANCE(244); + if (lookahead == '/') ADVANCE(248); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(273); + lookahead != '\\') ADVANCE(245); END_STATE(); - case 273: + case 245: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(272); + if (lookahead == '*') ADVANCE(244); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(273); + lookahead != '\\') ADVANCE(245); END_STATE(); - case 274: + case 246: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '/') ADVANCE(271); - if (sym_unescaped_double_string_fragment_character_set_1(lookahead)) ADVANCE(274); - if (lookahead != 0 && + if (lookahead == '/') ADVANCE(243); + if ((set_contains(extras_character_set_1, 10, lookahead)) && lookahead != '\n' && - lookahead != '\r' && + lookahead != '\r') ADVANCE(246); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(276); + lookahead != '\\') ADVANCE(248); END_STATE(); - case 275: + case 247: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(276); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(248); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(275); + lookahead != '\\') ADVANCE(247); END_STATE(); - case 276: + case 248: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(276); + lookahead != '\\') ADVANCE(248); END_STATE(); - case 277: + case 249: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '/') ADVANCE(281); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '/') ADVANCE(253); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(282); + lookahead != '\\') ADVANCE(254); END_STATE(); - case 278: + case 250: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(278); - if (lookahead == '/') ADVANCE(282); + if (lookahead == '*') ADVANCE(250); + if (lookahead == '/') ADVANCE(254); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(279); + lookahead != '\\') ADVANCE(251); END_STATE(); - case 279: + case 251: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(278); + if (lookahead == '*') ADVANCE(250); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(279); + lookahead != '\\') ADVANCE(251); END_STATE(); - case 280: + case 252: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '/') ADVANCE(277); - if (sym_unescaped_double_string_fragment_character_set_1(lookahead)) ADVANCE(280); - if (lookahead != 0 && + if (lookahead == '/') ADVANCE(249); + if ((set_contains(extras_character_set_1, 10, lookahead)) && lookahead != '\n' && - lookahead != '\r' && + lookahead != '\r') ADVANCE(252); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && lookahead != '\'' && - lookahead != '\\') ADVANCE(282); + lookahead != '\\') ADVANCE(254); END_STATE(); - case 281: + case 253: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(282); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(254); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(281); + lookahead != '\\') ADVANCE(253); END_STATE(); - case 282: + case 254: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(282); + lookahead != '\\') ADVANCE(254); END_STATE(); - case 283: + case 255: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 284: + case 256: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(114); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(316); + if (lookahead == '\\') ADVANCE(94); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(288); END_STATE(); - case 285: + case 257: ACCEPT_TOKEN(sym_escape_sequence); if (lookahead == '\n' || - lookahead == 8232 || - lookahead == 8233) ADVANCE(283); + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(255); END_STATE(); - case 286: + case 258: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(283); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(255); END_STATE(); - case 287: + case 259: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(286); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(258); END_STATE(); - case 288: + case 260: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 289: + case 261: ACCEPT_TOKEN(sym_comment); if (lookahead == '\n' || lookahead == '\r' || - lookahead == 8232 || - lookahead == 8233) ADVANCE(204); + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(176); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(291); - if (lookahead != 0) ADVANCE(207); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(263); + if (lookahead != 0) ADVANCE(179); END_STATE(); - case 290: + case 262: ACCEPT_TOKEN(sym_comment); if (lookahead == '\n' || lookahead == '\r' || - lookahead == 8232 || - lookahead == 8233) ADVANCE(210); + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(182); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(291); - if (lookahead != 0) ADVANCE(213); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(263); + if (lookahead != 0) ADVANCE(185); END_STATE(); - case 291: + case 263: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != 8232 && - lookahead != 8233) ADVANCE(291); + lookahead != 0x2028 && + lookahead != 0x2029) ADVANCE(263); END_STATE(); - case 292: + case 264: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 293: + case 265: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 294: + case 266: ACCEPT_TOKEN(anon_sym_SLASH2); END_STATE(); - case 295: + case 267: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '\n') SKIP(48) - if (lookahead == '/') ADVANCE(36); - if (lookahead == '[') ADVANCE(92); - if (lookahead == '\\') ADVANCE(155); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(295); - if (lookahead != 0) ADVANCE(296); + if (lookahead == '\n') SKIP(46); + if (lookahead == '/') ADVANCE(33); + if (lookahead == '[') ADVANCE(88); + if (lookahead == '\\') ADVANCE(135); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(267); + if (lookahead != 0) ADVANCE(268); END_STATE(); - case 296: + case 268: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '[') ADVANCE(92); - if (lookahead == '\\') ADVANCE(155); + if (lookahead == '[') ADVANCE(88); + if (lookahead == '\\') ADVANCE(135); if (lookahead != 0 && lookahead != '\n' && - lookahead != '/') ADVANCE(296); + lookahead != '/') ADVANCE(268); END_STATE(); - case 297: + case 269: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '\\') ADVANCE(114); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(297); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(316); + if (lookahead == '\\') ADVANCE(94); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(269); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(288); END_STATE(); - case 298: + case 270: ACCEPT_TOKEN(sym_number); END_STATE(); - case 299: + case 271: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(307); - if (lookahead == '0') ADVANCE(304); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(128); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(126); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(129); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(136); - if (lookahead == '_') ADVANCE(132); - if (lookahead == 'n') ADVANCE(298); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); + ADVANCE_MAP( + '.', 279, + '0', 273, + '_', 112, + 'n', 270, + 'B', 108, + 'b', 108, + 'E', 106, + 'e', 106, + 'O', 109, + 'o', 109, + 'X', 116, + 'x', 116, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); END_STATE(); - case 300: + case 272: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(307); + if (lookahead == '.') ADVANCE(279); + if (lookahead == '_') ADVANCE(110); + if (lookahead == 'n') ADVANCE(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(126); - if (lookahead == '_') ADVANCE(130); - if (lookahead == 'n') ADVANCE(298); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(300); + lookahead == 'e') ADVANCE(106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(272); + END_STATE(); + case 273: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(112); + if (lookahead == 'n') ADVANCE(270); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); END_STATE(); - case 301: + case 274: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(128); - if (lookahead == 'n') ADVANCE(298); + if (lookahead == '_') ADVANCE(108); + if (lookahead == 'n') ADVANCE(270); if (lookahead == '0' || - lookahead == '1') ADVANCE(301); + lookahead == '1') ADVANCE(274); END_STATE(); - case 302: + case 275: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(129); - if (lookahead == 'n') ADVANCE(298); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(302); + if (lookahead == '_') ADVANCE(109); + if (lookahead == 'n') ADVANCE(270); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(275); END_STATE(); - case 303: + case 276: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(136); - if (lookahead == 'n') ADVANCE(298); + if (lookahead == '_') ADVANCE(116); + if (lookahead == 'n') ADVANCE(270); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(276); END_STATE(); - case 304: - ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(132); - if (lookahead == 'n') ADVANCE(298); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(304); - END_STATE(); - case 305: + case 277: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(133); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); + if (lookahead == '_') ADVANCE(111); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); - case 306: + case 278: ACCEPT_TOKEN(sym_number); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(126); - if (lookahead == '_') ADVANCE(131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + if (lookahead == '_') ADVANCE(113); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); END_STATE(); - case 307: + case 279: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(126); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + lookahead == 'e') ADVANCE(106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); - case 308: + case 280: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(194); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '-') ADVANCE(166); + if (lookahead == '\\') ADVANCE(94); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(308); - if (!sym_identifier_character_set_3(lookahead)) ADVANCE(316); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(280); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(288); END_STATE(); - case 309: + case 281: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == 'a') ADVANCE(313); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(316); + if (lookahead == '\\') ADVANCE(94); + if (lookahead == 'a') ADVANCE(285); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(288); END_STATE(); - case 310: + case 282: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == 'c') ADVANCE(315); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(316); + if (lookahead == '\\') ADVANCE(94); + if (lookahead == 'c') ADVANCE(287); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(288); END_STATE(); - case 311: + case 283: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == 'i') ADVANCE(310); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(316); + if (lookahead == '\\') ADVANCE(94); + if (lookahead == 'i') ADVANCE(282); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(288); END_STATE(); - case 312: + case 284: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == 't') ADVANCE(309); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(316); + if (lookahead == '\\') ADVANCE(94); + if (lookahead == 't') ADVANCE(281); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(288); END_STATE(); - case 313: + case 285: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == 't') ADVANCE(311); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(316); + if (lookahead == '\\') ADVANCE(94); + if (lookahead == 't') ADVANCE(283); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(288); END_STATE(); - case 314: + case 286: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == '{') ADVANCE(293); - if (!sym_identifier_character_set_4(lookahead)) ADVANCE(316); + if (lookahead == '\\') ADVANCE(94); + if (lookahead == '{') ADVANCE(265); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(288); END_STATE(); - case 315: + case 287: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(101); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(316); + if (lookahead == '\\') ADVANCE(94); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(91); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(288); END_STATE(); - case 316: + case 288: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(114); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(316); + if (lookahead == '\\') ADVANCE(94); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(288); END_STATE(); - case 317: + case 289: ACCEPT_TOKEN(sym_private_property_identifier); - if (lookahead == '\n') ADVANCE(321); + if (lookahead == '\n') ADVANCE(293); if (lookahead == '\\') ADVANCE(3); - if (sym_preproc_character_set_2(lookahead)) ADVANCE(10); - if (lookahead != 0) ADVANCE(317); + if (set_contains(extras_character_set_1, 10, lookahead) || + (!eof && lookahead <= 0x08) || + (0x0e <= lookahead && lookahead <= 0x1f) || + ('!' <= lookahead && lookahead <= '#') || + ('%' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '@') || + ('[' <= lookahead && lookahead <= '^') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= '~')) ADVANCE(10); + if (lookahead > '#') ADVANCE(289); END_STATE(); - case 318: + case 290: ACCEPT_TOKEN(sym_private_property_identifier); - if (lookahead == '\\') ADVANCE(115); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(318); + if (lookahead == '\\') ADVANCE(95); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(290); END_STATE(); - case 319: + case 291: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 320: + case 292: ACCEPT_TOKEN(aux_sym_method_definition_token1); - if (lookahead == '\n') ADVANCE(320); - if (lookahead == '\t' || - lookahead == '\r' || + if (lookahead == '\n') ADVANCE(292); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(11); END_STATE(); - case 321: + case 293: ACCEPT_TOKEN(sym_preproc); END_STATE(); default: @@ -6474,39 +6135,28 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (lookahead == 'a') ADVANCE(1); - if (lookahead == 'b') ADVANCE(2); - if (lookahead == 'c') ADVANCE(3); - if (lookahead == 'd') ADVANCE(4); - if (lookahead == 'e') ADVANCE(5); - if (lookahead == 'f') ADVANCE(6); - if (lookahead == 'g') ADVANCE(7); - if (lookahead == 'i') ADVANCE(8); - if (lookahead == 'l') ADVANCE(9); - if (lookahead == 'm') ADVANCE(10); - if (lookahead == 'n') ADVANCE(11); - if (lookahead == 'o') ADVANCE(12); - if (lookahead == 'r') ADVANCE(13); - if (lookahead == 's') ADVANCE(14); - if (lookahead == 't') ADVANCE(15); - if (lookahead == 'u') ADVANCE(16); - if (lookahead == 'v') ADVANCE(17); - if (lookahead == 'w') ADVANCE(18); - if (lookahead == 'y') ADVANCE(19); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8203) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8239 || - lookahead == 8287 || - lookahead == 8288 || - lookahead == 12288 || - lookahead == 65279) SKIP(0) + ADVANCE_MAP( + 'a', 1, + 'b', 2, + 'c', 3, + 'd', 4, + 'e', 5, + 'f', 6, + 'g', 7, + 'i', 8, + 'l', 9, + 'm', 10, + 'n', 11, + 'o', 12, + 'r', 13, + 's', 14, + 't', 15, + 'u', 16, + 'v', 17, + 'w', 18, + 'y', 19, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(0); END_STATE(); case 1: if (lookahead == 's') ADVANCE(20); @@ -7129,1829 +6779,1740 @@ 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 = 158, .external_lex_state = 2}, - [2] = {.lex_state = 15, .external_lex_state = 2}, - [3] = {.lex_state = 15, .external_lex_state = 2}, - [4] = {.lex_state = 15, .external_lex_state = 2}, - [5] = {.lex_state = 15, .external_lex_state = 2}, - [6] = {.lex_state = 15, .external_lex_state = 2}, - [7] = {.lex_state = 158, .external_lex_state = 2}, - [8] = {.lex_state = 158, .external_lex_state = 2}, - [9] = {.lex_state = 158, .external_lex_state = 2}, - [10] = {.lex_state = 158, .external_lex_state = 2}, - [11] = {.lex_state = 158, .external_lex_state = 2}, - [12] = {.lex_state = 158, .external_lex_state = 2}, - [13] = {.lex_state = 158, .external_lex_state = 2}, - [14] = {.lex_state = 158, .external_lex_state = 2}, - [15] = {.lex_state = 158, .external_lex_state = 2}, - [16] = {.lex_state = 158, .external_lex_state = 2}, - [17] = {.lex_state = 158, .external_lex_state = 2}, - [18] = {.lex_state = 158, .external_lex_state = 2}, - [19] = {.lex_state = 158, .external_lex_state = 2}, - [20] = {.lex_state = 158, .external_lex_state = 2}, - [21] = {.lex_state = 158, .external_lex_state = 2}, - [22] = {.lex_state = 158, .external_lex_state = 2}, - [23] = {.lex_state = 158, .external_lex_state = 2}, - [24] = {.lex_state = 158, .external_lex_state = 2}, - [25] = {.lex_state = 158, .external_lex_state = 2}, - [26] = {.lex_state = 158, .external_lex_state = 2}, - [27] = {.lex_state = 158, .external_lex_state = 2}, - [28] = {.lex_state = 158, .external_lex_state = 2}, - [29] = {.lex_state = 158, .external_lex_state = 2}, - [30] = {.lex_state = 158, .external_lex_state = 2}, - [31] = {.lex_state = 158, .external_lex_state = 2}, - [32] = {.lex_state = 158, .external_lex_state = 2}, - [33] = {.lex_state = 158, .external_lex_state = 2}, - [34] = {.lex_state = 158, .external_lex_state = 2}, - [35] = {.lex_state = 158, .external_lex_state = 2}, - [36] = {.lex_state = 158, .external_lex_state = 2}, - [37] = {.lex_state = 158, .external_lex_state = 2}, - [38] = {.lex_state = 158, .external_lex_state = 2}, - [39] = {.lex_state = 158, .external_lex_state = 2}, - [40] = {.lex_state = 158, .external_lex_state = 2}, - [41] = {.lex_state = 158, .external_lex_state = 2}, - [42] = {.lex_state = 158, .external_lex_state = 2}, - [43] = {.lex_state = 158, .external_lex_state = 2}, - [44] = {.lex_state = 158, .external_lex_state = 2}, - [45] = {.lex_state = 158, .external_lex_state = 2}, - [46] = {.lex_state = 158, .external_lex_state = 2}, - [47] = {.lex_state = 158, .external_lex_state = 2}, - [48] = {.lex_state = 158, .external_lex_state = 2}, - [49] = {.lex_state = 158, .external_lex_state = 2}, - [50] = {.lex_state = 158, .external_lex_state = 2}, - [51] = {.lex_state = 158, .external_lex_state = 2}, - [52] = {.lex_state = 158, .external_lex_state = 2}, - [53] = {.lex_state = 158, .external_lex_state = 2}, - [54] = {.lex_state = 158, .external_lex_state = 2}, - [55] = {.lex_state = 158, .external_lex_state = 2}, - [56] = {.lex_state = 158, .external_lex_state = 2}, - [57] = {.lex_state = 158, .external_lex_state = 2}, - [58] = {.lex_state = 14, .external_lex_state = 3}, - [59] = {.lex_state = 14, .external_lex_state = 4}, - [60] = {.lex_state = 14, .external_lex_state = 4}, - [61] = {.lex_state = 14, .external_lex_state = 3}, - [62] = {.lex_state = 14, .external_lex_state = 3}, - [63] = {.lex_state = 157, .external_lex_state = 4}, - [64] = {.lex_state = 157, .external_lex_state = 4}, - [65] = {.lex_state = 157, .external_lex_state = 4}, - [66] = {.lex_state = 157, .external_lex_state = 4}, - [67] = {.lex_state = 157, .external_lex_state = 4}, - [68] = {.lex_state = 157, .external_lex_state = 4}, - [69] = {.lex_state = 157, .external_lex_state = 4}, - [70] = {.lex_state = 157, .external_lex_state = 4}, - [71] = {.lex_state = 157, .external_lex_state = 4}, - [72] = {.lex_state = 157, .external_lex_state = 4}, - [73] = {.lex_state = 157, .external_lex_state = 4}, - [74] = {.lex_state = 157, .external_lex_state = 4}, - [75] = {.lex_state = 157, .external_lex_state = 4}, - [76] = {.lex_state = 157, .external_lex_state = 4}, - [77] = {.lex_state = 157, .external_lex_state = 4}, - [78] = {.lex_state = 16, .external_lex_state = 2}, - [79] = {.lex_state = 16, .external_lex_state = 2}, - [80] = {.lex_state = 16, .external_lex_state = 2}, - [81] = {.lex_state = 16, .external_lex_state = 2}, - [82] = {.lex_state = 16, .external_lex_state = 2}, - [83] = {.lex_state = 16, .external_lex_state = 2}, - [84] = {.lex_state = 16, .external_lex_state = 2}, - [85] = {.lex_state = 16, .external_lex_state = 2}, - [86] = {.lex_state = 16, .external_lex_state = 2}, - [87] = {.lex_state = 16, .external_lex_state = 2}, - [88] = {.lex_state = 16, .external_lex_state = 2}, - [89] = {.lex_state = 16, .external_lex_state = 2}, - [90] = {.lex_state = 16, .external_lex_state = 2}, - [91] = {.lex_state = 16, .external_lex_state = 2}, - [92] = {.lex_state = 16, .external_lex_state = 2}, - [93] = {.lex_state = 16, .external_lex_state = 2}, - [94] = {.lex_state = 16, .external_lex_state = 2}, - [95] = {.lex_state = 16, .external_lex_state = 2}, - [96] = {.lex_state = 16, .external_lex_state = 2}, - [97] = {.lex_state = 16, .external_lex_state = 2}, - [98] = {.lex_state = 16, .external_lex_state = 2}, - [99] = {.lex_state = 16, .external_lex_state = 2}, - [100] = {.lex_state = 16, .external_lex_state = 2}, - [101] = {.lex_state = 16, .external_lex_state = 2}, - [102] = {.lex_state = 16, .external_lex_state = 2}, - [103] = {.lex_state = 16, .external_lex_state = 2}, - [104] = {.lex_state = 16, .external_lex_state = 2}, - [105] = {.lex_state = 16, .external_lex_state = 2}, - [106] = {.lex_state = 16, .external_lex_state = 2}, - [107] = {.lex_state = 16, .external_lex_state = 2}, - [108] = {.lex_state = 16, .external_lex_state = 2}, - [109] = {.lex_state = 16, .external_lex_state = 2}, - [110] = {.lex_state = 16, .external_lex_state = 2}, - [111] = {.lex_state = 16, .external_lex_state = 2}, - [112] = {.lex_state = 16, .external_lex_state = 2}, - [113] = {.lex_state = 16, .external_lex_state = 5}, - [114] = {.lex_state = 16, .external_lex_state = 2}, - [115] = {.lex_state = 16, .external_lex_state = 2}, - [116] = {.lex_state = 16, .external_lex_state = 2}, - [117] = {.lex_state = 16, .external_lex_state = 2}, - [118] = {.lex_state = 16, .external_lex_state = 2}, - [119] = {.lex_state = 16, .external_lex_state = 2}, - [120] = {.lex_state = 16, .external_lex_state = 2}, - [121] = {.lex_state = 16, .external_lex_state = 2}, - [122] = {.lex_state = 16, .external_lex_state = 2}, - [123] = {.lex_state = 16, .external_lex_state = 2}, - [124] = {.lex_state = 16, .external_lex_state = 2}, - [125] = {.lex_state = 16, .external_lex_state = 2}, - [126] = {.lex_state = 16, .external_lex_state = 2}, - [127] = {.lex_state = 16, .external_lex_state = 2}, - [128] = {.lex_state = 16, .external_lex_state = 2}, - [129] = {.lex_state = 16, .external_lex_state = 2}, + [1] = {.lex_state = 138, .external_lex_state = 2}, + [2] = {.lex_state = 14, .external_lex_state = 2}, + [3] = {.lex_state = 14, .external_lex_state = 2}, + [4] = {.lex_state = 14, .external_lex_state = 2}, + [5] = {.lex_state = 14, .external_lex_state = 2}, + [6] = {.lex_state = 14, .external_lex_state = 2}, + [7] = {.lex_state = 138, .external_lex_state = 2}, + [8] = {.lex_state = 138, .external_lex_state = 2}, + [9] = {.lex_state = 138, .external_lex_state = 2}, + [10] = {.lex_state = 138, .external_lex_state = 2}, + [11] = {.lex_state = 138, .external_lex_state = 2}, + [12] = {.lex_state = 138, .external_lex_state = 2}, + [13] = {.lex_state = 138, .external_lex_state = 2}, + [14] = {.lex_state = 138, .external_lex_state = 2}, + [15] = {.lex_state = 138, .external_lex_state = 2}, + [16] = {.lex_state = 138, .external_lex_state = 2}, + [17] = {.lex_state = 138, .external_lex_state = 2}, + [18] = {.lex_state = 138, .external_lex_state = 2}, + [19] = {.lex_state = 138, .external_lex_state = 2}, + [20] = {.lex_state = 138, .external_lex_state = 2}, + [21] = {.lex_state = 138, .external_lex_state = 2}, + [22] = {.lex_state = 138, .external_lex_state = 2}, + [23] = {.lex_state = 138, .external_lex_state = 2}, + [24] = {.lex_state = 138, .external_lex_state = 2}, + [25] = {.lex_state = 138, .external_lex_state = 2}, + [26] = {.lex_state = 138, .external_lex_state = 2}, + [27] = {.lex_state = 138, .external_lex_state = 2}, + [28] = {.lex_state = 138, .external_lex_state = 2}, + [29] = {.lex_state = 138, .external_lex_state = 2}, + [30] = {.lex_state = 138, .external_lex_state = 2}, + [31] = {.lex_state = 138, .external_lex_state = 2}, + [32] = {.lex_state = 138, .external_lex_state = 2}, + [33] = {.lex_state = 138, .external_lex_state = 2}, + [34] = {.lex_state = 138, .external_lex_state = 2}, + [35] = {.lex_state = 138, .external_lex_state = 2}, + [36] = {.lex_state = 138, .external_lex_state = 2}, + [37] = {.lex_state = 138, .external_lex_state = 2}, + [38] = {.lex_state = 138, .external_lex_state = 2}, + [39] = {.lex_state = 138, .external_lex_state = 2}, + [40] = {.lex_state = 138, .external_lex_state = 2}, + [41] = {.lex_state = 138, .external_lex_state = 2}, + [42] = {.lex_state = 138, .external_lex_state = 2}, + [43] = {.lex_state = 138, .external_lex_state = 2}, + [44] = {.lex_state = 138, .external_lex_state = 2}, + [45] = {.lex_state = 138, .external_lex_state = 2}, + [46] = {.lex_state = 138, .external_lex_state = 2}, + [47] = {.lex_state = 138, .external_lex_state = 2}, + [48] = {.lex_state = 138, .external_lex_state = 2}, + [49] = {.lex_state = 138, .external_lex_state = 2}, + [50] = {.lex_state = 138, .external_lex_state = 2}, + [51] = {.lex_state = 138, .external_lex_state = 2}, + [52] = {.lex_state = 138, .external_lex_state = 2}, + [53] = {.lex_state = 138, .external_lex_state = 2}, + [54] = {.lex_state = 138, .external_lex_state = 2}, + [55] = {.lex_state = 138, .external_lex_state = 2}, + [56] = {.lex_state = 13, .external_lex_state = 3}, + [57] = {.lex_state = 13, .external_lex_state = 4}, + [58] = {.lex_state = 13, .external_lex_state = 4}, + [59] = {.lex_state = 13, .external_lex_state = 3}, + [60] = {.lex_state = 13, .external_lex_state = 3}, + [61] = {.lex_state = 137, .external_lex_state = 4}, + [62] = {.lex_state = 137, .external_lex_state = 4}, + [63] = {.lex_state = 137, .external_lex_state = 4}, + [64] = {.lex_state = 137, .external_lex_state = 4}, + [65] = {.lex_state = 137, .external_lex_state = 4}, + [66] = {.lex_state = 137, .external_lex_state = 4}, + [67] = {.lex_state = 137, .external_lex_state = 4}, + [68] = {.lex_state = 137, .external_lex_state = 4}, + [69] = {.lex_state = 137, .external_lex_state = 4}, + [70] = {.lex_state = 137, .external_lex_state = 4}, + [71] = {.lex_state = 137, .external_lex_state = 4}, + [72] = {.lex_state = 137, .external_lex_state = 4}, + [73] = {.lex_state = 137, .external_lex_state = 4}, + [74] = {.lex_state = 137, .external_lex_state = 4}, + [75] = {.lex_state = 137, .external_lex_state = 4}, + [76] = {.lex_state = 15, .external_lex_state = 2}, + [77] = {.lex_state = 15, .external_lex_state = 2}, + [78] = {.lex_state = 15, .external_lex_state = 2}, + [79] = {.lex_state = 15, .external_lex_state = 2}, + [80] = {.lex_state = 15, .external_lex_state = 2}, + [81] = {.lex_state = 15, .external_lex_state = 2}, + [82] = {.lex_state = 15, .external_lex_state = 2}, + [83] = {.lex_state = 15, .external_lex_state = 2}, + [84] = {.lex_state = 15, .external_lex_state = 2}, + [85] = {.lex_state = 15, .external_lex_state = 2}, + [86] = {.lex_state = 15, .external_lex_state = 2}, + [87] = {.lex_state = 15, .external_lex_state = 2}, + [88] = {.lex_state = 15, .external_lex_state = 2}, + [89] = {.lex_state = 15, .external_lex_state = 2}, + [90] = {.lex_state = 15, .external_lex_state = 2}, + [91] = {.lex_state = 15, .external_lex_state = 2}, + [92] = {.lex_state = 15, .external_lex_state = 2}, + [93] = {.lex_state = 15, .external_lex_state = 2}, + [94] = {.lex_state = 15, .external_lex_state = 2}, + [95] = {.lex_state = 15, .external_lex_state = 2}, + [96] = {.lex_state = 15, .external_lex_state = 2}, + [97] = {.lex_state = 15, .external_lex_state = 2}, + [98] = {.lex_state = 15, .external_lex_state = 2}, + [99] = {.lex_state = 15, .external_lex_state = 2}, + [100] = {.lex_state = 15, .external_lex_state = 2}, + [101] = {.lex_state = 15, .external_lex_state = 2}, + [102] = {.lex_state = 15, .external_lex_state = 2}, + [103] = {.lex_state = 15, .external_lex_state = 2}, + [104] = {.lex_state = 15, .external_lex_state = 2}, + [105] = {.lex_state = 15, .external_lex_state = 2}, + [106] = {.lex_state = 15, .external_lex_state = 2}, + [107] = {.lex_state = 15, .external_lex_state = 2}, + [108] = {.lex_state = 15, .external_lex_state = 2}, + [109] = {.lex_state = 15, .external_lex_state = 2}, + [110] = {.lex_state = 15, .external_lex_state = 2}, + [111] = {.lex_state = 15, .external_lex_state = 2}, + [112] = {.lex_state = 15, .external_lex_state = 5}, + [113] = {.lex_state = 15, .external_lex_state = 2}, + [114] = {.lex_state = 15, .external_lex_state = 2}, + [115] = {.lex_state = 15, .external_lex_state = 2}, + [116] = {.lex_state = 15, .external_lex_state = 2}, + [117] = {.lex_state = 15, .external_lex_state = 2}, + [118] = {.lex_state = 15, .external_lex_state = 2}, + [119] = {.lex_state = 15, .external_lex_state = 2}, + [120] = {.lex_state = 15, .external_lex_state = 2}, + [121] = {.lex_state = 15, .external_lex_state = 2}, + [122] = {.lex_state = 15, .external_lex_state = 2}, + [123] = {.lex_state = 15, .external_lex_state = 2}, + [124] = {.lex_state = 15, .external_lex_state = 2}, + [125] = {.lex_state = 15, .external_lex_state = 2}, + [126] = {.lex_state = 15, .external_lex_state = 2}, + [127] = {.lex_state = 15, .external_lex_state = 2}, + [128] = {.lex_state = 15, .external_lex_state = 2}, + [129] = {.lex_state = 15, .external_lex_state = 2}, [130] = {.lex_state = 16, .external_lex_state = 2}, - [131] = {.lex_state = 16, .external_lex_state = 2}, - [132] = {.lex_state = 16, .external_lex_state = 2}, - [133] = {.lex_state = 16, .external_lex_state = 2}, - [134] = {.lex_state = 16, .external_lex_state = 2}, - [135] = {.lex_state = 16, .external_lex_state = 2}, - [136] = {.lex_state = 16, .external_lex_state = 2}, - [137] = {.lex_state = 16, .external_lex_state = 2}, + [131] = {.lex_state = 17, .external_lex_state = 4}, + [132] = {.lex_state = 15, .external_lex_state = 2}, + [133] = {.lex_state = 15, .external_lex_state = 2}, + [134] = {.lex_state = 15, .external_lex_state = 2}, + [135] = {.lex_state = 15, .external_lex_state = 2}, + [136] = {.lex_state = 15, .external_lex_state = 2}, + [137] = {.lex_state = 15, .external_lex_state = 2}, [138] = {.lex_state = 16, .external_lex_state = 2}, - [139] = {.lex_state = 16, .external_lex_state = 2}, - [140] = {.lex_state = 16, .external_lex_state = 2}, - [141] = {.lex_state = 16, .external_lex_state = 2}, - [142] = {.lex_state = 16, .external_lex_state = 2}, - [143] = {.lex_state = 16, .external_lex_state = 2}, - [144] = {.lex_state = 17, .external_lex_state = 2}, - [145] = {.lex_state = 16, .external_lex_state = 2}, - [146] = {.lex_state = 17, .external_lex_state = 2}, - [147] = {.lex_state = 16, .external_lex_state = 2}, - [148] = {.lex_state = 16, .external_lex_state = 2}, - [149] = {.lex_state = 16, .external_lex_state = 2}, - [150] = {.lex_state = 16, .external_lex_state = 2}, - [151] = {.lex_state = 16, .external_lex_state = 2}, - [152] = {.lex_state = 17, .external_lex_state = 2}, - [153] = {.lex_state = 16, .external_lex_state = 2}, - [154] = {.lex_state = 16, .external_lex_state = 2}, - [155] = {.lex_state = 16, .external_lex_state = 2}, - [156] = {.lex_state = 16, .external_lex_state = 2}, - [157] = {.lex_state = 16, .external_lex_state = 2}, + [139] = {.lex_state = 15, .external_lex_state = 2}, + [140] = {.lex_state = 15, .external_lex_state = 2}, + [141] = {.lex_state = 15, .external_lex_state = 2}, + [142] = {.lex_state = 17, .external_lex_state = 4}, + [143] = {.lex_state = 15, .external_lex_state = 2}, + [144] = {.lex_state = 15, .external_lex_state = 2}, + [145] = {.lex_state = 15, .external_lex_state = 2}, + [146] = {.lex_state = 15, .external_lex_state = 2}, + [147] = {.lex_state = 15, .external_lex_state = 2}, + [148] = {.lex_state = 15, .external_lex_state = 2}, + [149] = {.lex_state = 15, .external_lex_state = 2}, + [150] = {.lex_state = 15, .external_lex_state = 2}, + [151] = {.lex_state = 15, .external_lex_state = 2}, + [152] = {.lex_state = 15, .external_lex_state = 2}, + [153] = {.lex_state = 15, .external_lex_state = 2}, + [154] = {.lex_state = 15, .external_lex_state = 2}, + [155] = {.lex_state = 17, .external_lex_state = 4}, + [156] = {.lex_state = 15, .external_lex_state = 2}, + [157] = {.lex_state = 15, .external_lex_state = 2}, [158] = {.lex_state = 16, .external_lex_state = 2}, - [159] = {.lex_state = 16, .external_lex_state = 2}, - [160] = {.lex_state = 17, .external_lex_state = 2}, - [161] = {.lex_state = 17, .external_lex_state = 2}, - [162] = {.lex_state = 16, .external_lex_state = 2}, - [163] = {.lex_state = 16, .external_lex_state = 2}, - [164] = {.lex_state = 16, .external_lex_state = 2}, - [165] = {.lex_state = 16, .external_lex_state = 2}, - [166] = {.lex_state = 16, .external_lex_state = 2}, - [167] = {.lex_state = 16, .external_lex_state = 2}, - [168] = {.lex_state = 16, .external_lex_state = 2}, - [169] = {.lex_state = 16, .external_lex_state = 2}, - [170] = {.lex_state = 16, .external_lex_state = 2}, - [171] = {.lex_state = 16, .external_lex_state = 2}, - [172] = {.lex_state = 16, .external_lex_state = 2}, + [159] = {.lex_state = 15, .external_lex_state = 2}, + [160] = {.lex_state = 15, .external_lex_state = 2}, + [161] = {.lex_state = 16, .external_lex_state = 2}, + [162] = {.lex_state = 15, .external_lex_state = 2}, + [163] = {.lex_state = 15, .external_lex_state = 2}, + [164] = {.lex_state = 15, .external_lex_state = 2}, + [165] = {.lex_state = 15, .external_lex_state = 2}, + [166] = {.lex_state = 15, .external_lex_state = 2}, + [167] = {.lex_state = 15, .external_lex_state = 2}, + [168] = {.lex_state = 15, .external_lex_state = 2}, + [169] = {.lex_state = 15, .external_lex_state = 2}, + [170] = {.lex_state = 15, .external_lex_state = 2}, + [171] = {.lex_state = 15, .external_lex_state = 2}, + [172] = {.lex_state = 15, .external_lex_state = 2}, [173] = {.lex_state = 16, .external_lex_state = 2}, - [174] = {.lex_state = 16, .external_lex_state = 2}, - [175] = {.lex_state = 16, .external_lex_state = 2}, - [176] = {.lex_state = 16, .external_lex_state = 2}, - [177] = {.lex_state = 16, .external_lex_state = 2}, - [178] = {.lex_state = 16, .external_lex_state = 2}, - [179] = {.lex_state = 16, .external_lex_state = 2}, - [180] = {.lex_state = 16, .external_lex_state = 2}, - [181] = {.lex_state = 16, .external_lex_state = 2}, - [182] = {.lex_state = 16, .external_lex_state = 2}, - [183] = {.lex_state = 16, .external_lex_state = 2}, - [184] = {.lex_state = 16, .external_lex_state = 2}, - [185] = {.lex_state = 16, .external_lex_state = 2}, - [186] = {.lex_state = 16, .external_lex_state = 2}, - [187] = {.lex_state = 16, .external_lex_state = 2}, - [188] = {.lex_state = 16, .external_lex_state = 2}, - [189] = {.lex_state = 16, .external_lex_state = 2}, - [190] = {.lex_state = 16, .external_lex_state = 2}, - [191] = {.lex_state = 16, .external_lex_state = 2}, - [192] = {.lex_state = 16, .external_lex_state = 2}, - [193] = {.lex_state = 16, .external_lex_state = 2}, - [194] = {.lex_state = 16, .external_lex_state = 2}, - [195] = {.lex_state = 16, .external_lex_state = 2}, - [196] = {.lex_state = 16, .external_lex_state = 2}, - [197] = {.lex_state = 16, .external_lex_state = 2}, - [198] = {.lex_state = 16, .external_lex_state = 2}, - [199] = {.lex_state = 16, .external_lex_state = 2}, - [200] = {.lex_state = 16, .external_lex_state = 2}, - [201] = {.lex_state = 16, .external_lex_state = 2}, - [202] = {.lex_state = 16, .external_lex_state = 2}, - [203] = {.lex_state = 16, .external_lex_state = 2}, - [204] = {.lex_state = 16, .external_lex_state = 2}, - [205] = {.lex_state = 16, .external_lex_state = 2}, - [206] = {.lex_state = 16, .external_lex_state = 2}, - [207] = {.lex_state = 16, .external_lex_state = 2}, - [208] = {.lex_state = 16, .external_lex_state = 2}, - [209] = {.lex_state = 16, .external_lex_state = 2}, - [210] = {.lex_state = 16, .external_lex_state = 2}, - [211] = {.lex_state = 16, .external_lex_state = 2}, - [212] = {.lex_state = 16, .external_lex_state = 2}, - [213] = {.lex_state = 16, .external_lex_state = 2}, - [214] = {.lex_state = 16, .external_lex_state = 2}, - [215] = {.lex_state = 16, .external_lex_state = 2}, - [216] = {.lex_state = 16, .external_lex_state = 2}, - [217] = {.lex_state = 16, .external_lex_state = 2}, - [218] = {.lex_state = 16, .external_lex_state = 2}, - [219] = {.lex_state = 16, .external_lex_state = 2}, - [220] = {.lex_state = 16, .external_lex_state = 2}, - [221] = {.lex_state = 16, .external_lex_state = 2}, - [222] = {.lex_state = 16, .external_lex_state = 2}, - [223] = {.lex_state = 16, .external_lex_state = 2}, - [224] = {.lex_state = 16, .external_lex_state = 2}, - [225] = {.lex_state = 16, .external_lex_state = 2}, - [226] = {.lex_state = 16, .external_lex_state = 2}, - [227] = {.lex_state = 16, .external_lex_state = 2}, - [228] = {.lex_state = 16, .external_lex_state = 2}, - [229] = {.lex_state = 16, .external_lex_state = 2}, - [230] = {.lex_state = 16, .external_lex_state = 2}, - [231] = {.lex_state = 16, .external_lex_state = 2}, - [232] = {.lex_state = 16, .external_lex_state = 2}, - [233] = {.lex_state = 16, .external_lex_state = 2}, - [234] = {.lex_state = 16, .external_lex_state = 2}, - [235] = {.lex_state = 16, .external_lex_state = 2}, - [236] = {.lex_state = 16, .external_lex_state = 2}, - [237] = {.lex_state = 16, .external_lex_state = 2}, - [238] = {.lex_state = 16, .external_lex_state = 2}, - [239] = {.lex_state = 16, .external_lex_state = 2}, - [240] = {.lex_state = 16, .external_lex_state = 2}, - [241] = {.lex_state = 16, .external_lex_state = 2}, - [242] = {.lex_state = 16, .external_lex_state = 2}, - [243] = {.lex_state = 16, .external_lex_state = 2}, - [244] = {.lex_state = 16, .external_lex_state = 2}, - [245] = {.lex_state = 16, .external_lex_state = 2}, - [246] = {.lex_state = 16, .external_lex_state = 2}, - [247] = {.lex_state = 16, .external_lex_state = 2}, - [248] = {.lex_state = 16, .external_lex_state = 2}, - [249] = {.lex_state = 16, .external_lex_state = 2}, - [250] = {.lex_state = 16, .external_lex_state = 2}, - [251] = {.lex_state = 16, .external_lex_state = 2}, - [252] = {.lex_state = 16, .external_lex_state = 2}, - [253] = {.lex_state = 16, .external_lex_state = 2}, - [254] = {.lex_state = 16, .external_lex_state = 2}, - [255] = {.lex_state = 16, .external_lex_state = 2}, - [256] = {.lex_state = 16, .external_lex_state = 2}, - [257] = {.lex_state = 16, .external_lex_state = 2}, - [258] = {.lex_state = 16, .external_lex_state = 2}, - [259] = {.lex_state = 16, .external_lex_state = 2}, - [260] = {.lex_state = 16, .external_lex_state = 2}, - [261] = {.lex_state = 16, .external_lex_state = 2}, - [262] = {.lex_state = 16, .external_lex_state = 2}, - [263] = {.lex_state = 16, .external_lex_state = 2}, - [264] = {.lex_state = 16, .external_lex_state = 2}, - [265] = {.lex_state = 16, .external_lex_state = 2}, - [266] = {.lex_state = 16, .external_lex_state = 2}, - [267] = {.lex_state = 16, .external_lex_state = 2}, - [268] = {.lex_state = 16, .external_lex_state = 2}, - [269] = {.lex_state = 16, .external_lex_state = 2}, - [270] = {.lex_state = 16, .external_lex_state = 2}, - [271] = {.lex_state = 16, .external_lex_state = 2}, - [272] = {.lex_state = 16, .external_lex_state = 2}, - [273] = {.lex_state = 16, .external_lex_state = 2}, - [274] = {.lex_state = 16, .external_lex_state = 2}, - [275] = {.lex_state = 16, .external_lex_state = 2}, - [276] = {.lex_state = 16, .external_lex_state = 2}, - [277] = {.lex_state = 16, .external_lex_state = 2}, - [278] = {.lex_state = 16, .external_lex_state = 2}, - [279] = {.lex_state = 16, .external_lex_state = 2}, - [280] = {.lex_state = 16, .external_lex_state = 2}, - [281] = {.lex_state = 16, .external_lex_state = 2}, - [282] = {.lex_state = 16, .external_lex_state = 2}, - [283] = {.lex_state = 16, .external_lex_state = 2}, - [284] = {.lex_state = 16, .external_lex_state = 2}, - [285] = {.lex_state = 16, .external_lex_state = 2}, - [286] = {.lex_state = 16, .external_lex_state = 2}, - [287] = {.lex_state = 16, .external_lex_state = 2}, - [288] = {.lex_state = 16, .external_lex_state = 2}, - [289] = {.lex_state = 16, .external_lex_state = 2}, - [290] = {.lex_state = 16, .external_lex_state = 2}, - [291] = {.lex_state = 16, .external_lex_state = 2}, - [292] = {.lex_state = 16, .external_lex_state = 2}, - [293] = {.lex_state = 16, .external_lex_state = 2}, - [294] = {.lex_state = 16, .external_lex_state = 2}, - [295] = {.lex_state = 16, .external_lex_state = 2}, - [296] = {.lex_state = 16, .external_lex_state = 2}, - [297] = {.lex_state = 18, .external_lex_state = 4}, - [298] = {.lex_state = 18, .external_lex_state = 4}, - [299] = {.lex_state = 18, .external_lex_state = 4}, - [300] = {.lex_state = 18, .external_lex_state = 4}, - [301] = {.lex_state = 18, .external_lex_state = 4}, - [302] = {.lex_state = 18, .external_lex_state = 4}, - [303] = {.lex_state = 18, .external_lex_state = 4}, - [304] = {.lex_state = 18, .external_lex_state = 4}, - [305] = {.lex_state = 18, .external_lex_state = 4}, - [306] = {.lex_state = 18, .external_lex_state = 4}, - [307] = {.lex_state = 18, .external_lex_state = 4}, - [308] = {.lex_state = 18, .external_lex_state = 4}, - [309] = {.lex_state = 18, .external_lex_state = 4}, - [310] = {.lex_state = 18, .external_lex_state = 4}, - [311] = {.lex_state = 18, .external_lex_state = 3}, - [312] = {.lex_state = 18, .external_lex_state = 3}, - [313] = {.lex_state = 158, .external_lex_state = 5}, - [314] = {.lex_state = 158, .external_lex_state = 2}, - [315] = {.lex_state = 158, .external_lex_state = 5}, - [316] = {.lex_state = 158, .external_lex_state = 2}, - [317] = {.lex_state = 158, .external_lex_state = 2}, - [318] = {.lex_state = 18, .external_lex_state = 4}, - [319] = {.lex_state = 18, .external_lex_state = 3}, - [320] = {.lex_state = 158, .external_lex_state = 2}, - [321] = {.lex_state = 18, .external_lex_state = 4}, - [322] = {.lex_state = 18, .external_lex_state = 4}, - [323] = {.lex_state = 18, .external_lex_state = 4}, - [324] = {.lex_state = 18, .external_lex_state = 3}, - [325] = {.lex_state = 18, .external_lex_state = 4}, - [326] = {.lex_state = 18, .external_lex_state = 4}, - [327] = {.lex_state = 18, .external_lex_state = 4}, - [328] = {.lex_state = 18, .external_lex_state = 4}, - [329] = {.lex_state = 18, .external_lex_state = 4}, - [330] = {.lex_state = 18, .external_lex_state = 3}, - [331] = {.lex_state = 158, .external_lex_state = 5}, - [332] = {.lex_state = 158, .external_lex_state = 5}, - [333] = {.lex_state = 158, .external_lex_state = 5}, - [334] = {.lex_state = 18, .external_lex_state = 3}, - [335] = {.lex_state = 158, .external_lex_state = 5}, - [336] = {.lex_state = 158, .external_lex_state = 5}, - [337] = {.lex_state = 158, .external_lex_state = 5}, - [338] = {.lex_state = 158, .external_lex_state = 2}, - [339] = {.lex_state = 158, .external_lex_state = 5}, - [340] = {.lex_state = 158, .external_lex_state = 5}, - [341] = {.lex_state = 158, .external_lex_state = 5}, - [342] = {.lex_state = 158, .external_lex_state = 5}, - [343] = {.lex_state = 158, .external_lex_state = 5}, - [344] = {.lex_state = 158, .external_lex_state = 5}, - [345] = {.lex_state = 158, .external_lex_state = 5}, - [346] = {.lex_state = 158, .external_lex_state = 5}, - [347] = {.lex_state = 158, .external_lex_state = 2}, - [348] = {.lex_state = 158, .external_lex_state = 5}, - [349] = {.lex_state = 18, .external_lex_state = 3}, - [350] = {.lex_state = 158, .external_lex_state = 2}, - [351] = {.lex_state = 158, .external_lex_state = 5}, - [352] = {.lex_state = 158, .external_lex_state = 2}, - [353] = {.lex_state = 158, .external_lex_state = 2}, - [354] = {.lex_state = 158, .external_lex_state = 2}, - [355] = {.lex_state = 158, .external_lex_state = 2}, - [356] = {.lex_state = 18, .external_lex_state = 4}, - [357] = {.lex_state = 158, .external_lex_state = 2}, - [358] = {.lex_state = 158, .external_lex_state = 2}, - [359] = {.lex_state = 158, .external_lex_state = 2}, - [360] = {.lex_state = 158, .external_lex_state = 2}, - [361] = {.lex_state = 158, .external_lex_state = 2}, - [362] = {.lex_state = 158, .external_lex_state = 2}, - [363] = {.lex_state = 158, .external_lex_state = 2}, - [364] = {.lex_state = 158, .external_lex_state = 2}, - [365] = {.lex_state = 158, .external_lex_state = 2}, - [366] = {.lex_state = 158, .external_lex_state = 2}, - [367] = {.lex_state = 158, .external_lex_state = 2}, - [368] = {.lex_state = 158, .external_lex_state = 2}, - [369] = {.lex_state = 158, .external_lex_state = 2}, - [370] = {.lex_state = 158, .external_lex_state = 2}, - [371] = {.lex_state = 158, .external_lex_state = 2}, - [372] = {.lex_state = 158, .external_lex_state = 2}, - [373] = {.lex_state = 158, .external_lex_state = 2}, - [374] = {.lex_state = 158, .external_lex_state = 2}, - [375] = {.lex_state = 158, .external_lex_state = 2}, - [376] = {.lex_state = 18, .external_lex_state = 4}, - [377] = {.lex_state = 158, .external_lex_state = 2}, - [378] = {.lex_state = 18, .external_lex_state = 3}, - [379] = {.lex_state = 158, .external_lex_state = 2}, - [380] = {.lex_state = 158, .external_lex_state = 2}, - [381] = {.lex_state = 158, .external_lex_state = 2}, - [382] = {.lex_state = 158, .external_lex_state = 2}, - [383] = {.lex_state = 158, .external_lex_state = 2}, - [384] = {.lex_state = 158, .external_lex_state = 2}, - [385] = {.lex_state = 158, .external_lex_state = 2}, - [386] = {.lex_state = 158, .external_lex_state = 2}, - [387] = {.lex_state = 158, .external_lex_state = 2}, - [388] = {.lex_state = 158, .external_lex_state = 2}, - [389] = {.lex_state = 158, .external_lex_state = 2}, - [390] = {.lex_state = 158, .external_lex_state = 2}, - [391] = {.lex_state = 158, .external_lex_state = 2}, - [392] = {.lex_state = 158, .external_lex_state = 2}, - [393] = {.lex_state = 158, .external_lex_state = 2}, - [394] = {.lex_state = 158, .external_lex_state = 2}, - [395] = {.lex_state = 158, .external_lex_state = 2}, - [396] = {.lex_state = 158, .external_lex_state = 2}, - [397] = {.lex_state = 18, .external_lex_state = 3}, - [398] = {.lex_state = 158, .external_lex_state = 2}, - [399] = {.lex_state = 158, .external_lex_state = 2}, - [400] = {.lex_state = 158, .external_lex_state = 2}, - [401] = {.lex_state = 158, .external_lex_state = 2}, - [402] = {.lex_state = 158, .external_lex_state = 2}, - [403] = {.lex_state = 158, .external_lex_state = 2}, - [404] = {.lex_state = 158, .external_lex_state = 2}, - [405] = {.lex_state = 158, .external_lex_state = 2}, - [406] = {.lex_state = 158, .external_lex_state = 2}, - [407] = {.lex_state = 158, .external_lex_state = 2}, - [408] = {.lex_state = 158, .external_lex_state = 2}, - [409] = {.lex_state = 158, .external_lex_state = 2}, - [410] = {.lex_state = 158, .external_lex_state = 2}, - [411] = {.lex_state = 158, .external_lex_state = 2}, - [412] = {.lex_state = 158, .external_lex_state = 2}, - [413] = {.lex_state = 158, .external_lex_state = 2}, - [414] = {.lex_state = 158, .external_lex_state = 2}, - [415] = {.lex_state = 158, .external_lex_state = 2}, - [416] = {.lex_state = 158, .external_lex_state = 2}, - [417] = {.lex_state = 158, .external_lex_state = 2}, - [418] = {.lex_state = 158, .external_lex_state = 2}, - [419] = {.lex_state = 158, .external_lex_state = 2}, - [420] = {.lex_state = 158, .external_lex_state = 2}, - [421] = {.lex_state = 158, .external_lex_state = 2}, - [422] = {.lex_state = 18, .external_lex_state = 4}, - [423] = {.lex_state = 18, .external_lex_state = 3}, - [424] = {.lex_state = 18, .external_lex_state = 3}, - [425] = {.lex_state = 18, .external_lex_state = 3}, - [426] = {.lex_state = 18, .external_lex_state = 4}, - [427] = {.lex_state = 18, .external_lex_state = 3}, - [428] = {.lex_state = 18, .external_lex_state = 4}, - [429] = {.lex_state = 18, .external_lex_state = 3}, - [430] = {.lex_state = 18, .external_lex_state = 3}, - [431] = {.lex_state = 18, .external_lex_state = 3}, - [432] = {.lex_state = 18, .external_lex_state = 3}, - [433] = {.lex_state = 18, .external_lex_state = 3}, - [434] = {.lex_state = 18, .external_lex_state = 4}, - [435] = {.lex_state = 18, .external_lex_state = 3}, - [436] = {.lex_state = 18, .external_lex_state = 3}, - [437] = {.lex_state = 18, .external_lex_state = 4}, - [438] = {.lex_state = 18, .external_lex_state = 4}, - [439] = {.lex_state = 18, .external_lex_state = 3}, - [440] = {.lex_state = 18, .external_lex_state = 3}, - [441] = {.lex_state = 18, .external_lex_state = 3}, - [442] = {.lex_state = 18, .external_lex_state = 3}, - [443] = {.lex_state = 158, .external_lex_state = 2}, - [444] = {.lex_state = 158, .external_lex_state = 2}, - [445] = {.lex_state = 158, .external_lex_state = 2}, - [446] = {.lex_state = 158, .external_lex_state = 2}, - [447] = {.lex_state = 158, .external_lex_state = 2}, - [448] = {.lex_state = 158, .external_lex_state = 2}, - [449] = {.lex_state = 18, .external_lex_state = 3}, - [450] = {.lex_state = 158, .external_lex_state = 2}, - [451] = {.lex_state = 158, .external_lex_state = 2}, - [452] = {.lex_state = 158, .external_lex_state = 2}, - [453] = {.lex_state = 18, .external_lex_state = 3}, - [454] = {.lex_state = 18, .external_lex_state = 3}, - [455] = {.lex_state = 18, .external_lex_state = 4}, - [456] = {.lex_state = 18, .external_lex_state = 4}, - [457] = {.lex_state = 18, .external_lex_state = 4}, - [458] = {.lex_state = 18, .external_lex_state = 4}, - [459] = {.lex_state = 18, .external_lex_state = 4}, - [460] = {.lex_state = 18, .external_lex_state = 4}, - [461] = {.lex_state = 18, .external_lex_state = 4}, - [462] = {.lex_state = 18, .external_lex_state = 4}, - [463] = {.lex_state = 18, .external_lex_state = 4}, - [464] = {.lex_state = 18, .external_lex_state = 4}, - [465] = {.lex_state = 18, .external_lex_state = 4}, - [466] = {.lex_state = 18, .external_lex_state = 3}, - [467] = {.lex_state = 18, .external_lex_state = 3}, - [468] = {.lex_state = 18, .external_lex_state = 4}, - [469] = {.lex_state = 18, .external_lex_state = 4}, - [470] = {.lex_state = 18, .external_lex_state = 4}, - [471] = {.lex_state = 18, .external_lex_state = 3}, - [472] = {.lex_state = 18, .external_lex_state = 3}, - [473] = {.lex_state = 18, .external_lex_state = 4}, - [474] = {.lex_state = 18, .external_lex_state = 3}, - [475] = {.lex_state = 18, .external_lex_state = 4}, - [476] = {.lex_state = 18, .external_lex_state = 4}, - [477] = {.lex_state = 18, .external_lex_state = 3}, - [478] = {.lex_state = 18, .external_lex_state = 4}, - [479] = {.lex_state = 18, .external_lex_state = 4}, - [480] = {.lex_state = 18, .external_lex_state = 4}, - [481] = {.lex_state = 18, .external_lex_state = 3}, - [482] = {.lex_state = 18, .external_lex_state = 3}, - [483] = {.lex_state = 18, .external_lex_state = 3}, - [484] = {.lex_state = 18, .external_lex_state = 4}, - [485] = {.lex_state = 18, .external_lex_state = 3}, - [486] = {.lex_state = 18, .external_lex_state = 3}, - [487] = {.lex_state = 18, .external_lex_state = 3}, - [488] = {.lex_state = 18, .external_lex_state = 3}, - [489] = {.lex_state = 18, .external_lex_state = 4}, - [490] = {.lex_state = 18, .external_lex_state = 3}, - [491] = {.lex_state = 18, .external_lex_state = 3}, - [492] = {.lex_state = 18, .external_lex_state = 3}, - [493] = {.lex_state = 18, .external_lex_state = 3}, - [494] = {.lex_state = 18, .external_lex_state = 3}, - [495] = {.lex_state = 18, .external_lex_state = 3}, - [496] = {.lex_state = 18, .external_lex_state = 3}, - [497] = {.lex_state = 18, .external_lex_state = 3}, - [498] = {.lex_state = 18, .external_lex_state = 3}, - [499] = {.lex_state = 18, .external_lex_state = 3}, - [500] = {.lex_state = 18, .external_lex_state = 3}, - [501] = {.lex_state = 18, .external_lex_state = 3}, - [502] = {.lex_state = 18, .external_lex_state = 3}, - [503] = {.lex_state = 18, .external_lex_state = 3}, - [504] = {.lex_state = 18, .external_lex_state = 3}, - [505] = {.lex_state = 19, .external_lex_state = 3}, - [506] = {.lex_state = 19, .external_lex_state = 3}, - [507] = {.lex_state = 19, .external_lex_state = 3}, - [508] = {.lex_state = 19, .external_lex_state = 4}, - [509] = {.lex_state = 19, .external_lex_state = 3}, - [510] = {.lex_state = 19, .external_lex_state = 3}, - [511] = {.lex_state = 19, .external_lex_state = 4}, - [512] = {.lex_state = 16, .external_lex_state = 2}, - [513] = {.lex_state = 19, .external_lex_state = 3}, - [514] = {.lex_state = 19, .external_lex_state = 4}, - [515] = {.lex_state = 19, .external_lex_state = 3}, - [516] = {.lex_state = 19, .external_lex_state = 3}, - [517] = {.lex_state = 20, .external_lex_state = 3}, - [518] = {.lex_state = 19, .external_lex_state = 3}, - [519] = {.lex_state = 19, .external_lex_state = 3}, - [520] = {.lex_state = 19, .external_lex_state = 3}, - [521] = {.lex_state = 19, .external_lex_state = 3}, - [522] = {.lex_state = 19, .external_lex_state = 3}, - [523] = {.lex_state = 19, .external_lex_state = 3}, - [524] = {.lex_state = 19, .external_lex_state = 3}, - [525] = {.lex_state = 19, .external_lex_state = 3}, - [526] = {.lex_state = 19, .external_lex_state = 3}, - [527] = {.lex_state = 19, .external_lex_state = 3}, - [528] = {.lex_state = 19, .external_lex_state = 3}, - [529] = {.lex_state = 19, .external_lex_state = 3}, - [530] = {.lex_state = 19, .external_lex_state = 3}, - [531] = {.lex_state = 19, .external_lex_state = 3}, - [532] = {.lex_state = 16, .external_lex_state = 2}, - [533] = {.lex_state = 16, .external_lex_state = 2}, - [534] = {.lex_state = 19, .external_lex_state = 3}, - [535] = {.lex_state = 19, .external_lex_state = 3}, - [536] = {.lex_state = 19, .external_lex_state = 3}, - [537] = {.lex_state = 19, .external_lex_state = 3}, - [538] = {.lex_state = 19, .external_lex_state = 3}, - [539] = {.lex_state = 19, .external_lex_state = 3}, - [540] = {.lex_state = 19, .external_lex_state = 3}, - [541] = {.lex_state = 19, .external_lex_state = 3}, - [542] = {.lex_state = 19, .external_lex_state = 3}, - [543] = {.lex_state = 19, .external_lex_state = 3}, - [544] = {.lex_state = 19, .external_lex_state = 3}, - [545] = {.lex_state = 19, .external_lex_state = 3}, - [546] = {.lex_state = 19, .external_lex_state = 3}, - [547] = {.lex_state = 19, .external_lex_state = 3}, - [548] = {.lex_state = 19, .external_lex_state = 3}, - [549] = {.lex_state = 19, .external_lex_state = 3}, - [550] = {.lex_state = 19, .external_lex_state = 3}, - [551] = {.lex_state = 19, .external_lex_state = 3}, - [552] = {.lex_state = 19, .external_lex_state = 3}, - [553] = {.lex_state = 19, .external_lex_state = 3}, - [554] = {.lex_state = 19, .external_lex_state = 3}, - [555] = {.lex_state = 19, .external_lex_state = 3}, - [556] = {.lex_state = 19, .external_lex_state = 3}, - [557] = {.lex_state = 19, .external_lex_state = 3}, - [558] = {.lex_state = 16, .external_lex_state = 2}, - [559] = {.lex_state = 19, .external_lex_state = 3}, - [560] = {.lex_state = 19, .external_lex_state = 3}, - [561] = {.lex_state = 16, .external_lex_state = 2}, - [562] = {.lex_state = 19, .external_lex_state = 3}, - [563] = {.lex_state = 19, .external_lex_state = 3}, - [564] = {.lex_state = 19, .external_lex_state = 3}, - [565] = {.lex_state = 19, .external_lex_state = 3}, - [566] = {.lex_state = 19, .external_lex_state = 3}, - [567] = {.lex_state = 19, .external_lex_state = 3}, - [568] = {.lex_state = 19, .external_lex_state = 3}, - [569] = {.lex_state = 19, .external_lex_state = 3}, - [570] = {.lex_state = 19, .external_lex_state = 3}, - [571] = {.lex_state = 19, .external_lex_state = 3}, - [572] = {.lex_state = 19, .external_lex_state = 3}, - [573] = {.lex_state = 19, .external_lex_state = 3}, - [574] = {.lex_state = 19, .external_lex_state = 3}, - [575] = {.lex_state = 19, .external_lex_state = 3}, - [576] = {.lex_state = 19, .external_lex_state = 3}, - [577] = {.lex_state = 19, .external_lex_state = 3}, - [578] = {.lex_state = 19, .external_lex_state = 3}, - [579] = {.lex_state = 19, .external_lex_state = 3}, - [580] = {.lex_state = 19, .external_lex_state = 3}, - [581] = {.lex_state = 19, .external_lex_state = 3}, - [582] = {.lex_state = 19, .external_lex_state = 3}, - [583] = {.lex_state = 19, .external_lex_state = 3}, - [584] = {.lex_state = 19, .external_lex_state = 3}, - [585] = {.lex_state = 19, .external_lex_state = 3}, - [586] = {.lex_state = 19, .external_lex_state = 3}, - [587] = {.lex_state = 19, .external_lex_state = 3}, - [588] = {.lex_state = 19, .external_lex_state = 3}, - [589] = {.lex_state = 19, .external_lex_state = 3}, - [590] = {.lex_state = 19, .external_lex_state = 3}, - [591] = {.lex_state = 19, .external_lex_state = 3}, - [592] = {.lex_state = 19, .external_lex_state = 3}, - [593] = {.lex_state = 19, .external_lex_state = 3}, - [594] = {.lex_state = 19, .external_lex_state = 3}, - [595] = {.lex_state = 19, .external_lex_state = 3}, - [596] = {.lex_state = 19, .external_lex_state = 3}, - [597] = {.lex_state = 19, .external_lex_state = 3}, - [598] = {.lex_state = 19, .external_lex_state = 3}, - [599] = {.lex_state = 19, .external_lex_state = 3}, - [600] = {.lex_state = 19, .external_lex_state = 3}, - [601] = {.lex_state = 19, .external_lex_state = 3}, - [602] = {.lex_state = 19, .external_lex_state = 3}, - [603] = {.lex_state = 19, .external_lex_state = 3}, - [604] = {.lex_state = 19, .external_lex_state = 3}, - [605] = {.lex_state = 19, .external_lex_state = 3}, - [606] = {.lex_state = 19, .external_lex_state = 4}, - [607] = {.lex_state = 19, .external_lex_state = 4}, - [608] = {.lex_state = 19, .external_lex_state = 4}, - [609] = {.lex_state = 19, .external_lex_state = 3}, - [610] = {.lex_state = 19, .external_lex_state = 3}, - [611] = {.lex_state = 19, .external_lex_state = 3}, - [612] = {.lex_state = 19, .external_lex_state = 4}, - [613] = {.lex_state = 19, .external_lex_state = 4}, - [614] = {.lex_state = 19, .external_lex_state = 4}, - [615] = {.lex_state = 19, .external_lex_state = 4}, - [616] = {.lex_state = 19, .external_lex_state = 4}, - [617] = {.lex_state = 19, .external_lex_state = 4}, - [618] = {.lex_state = 19, .external_lex_state = 3}, - [619] = {.lex_state = 19, .external_lex_state = 3}, - [620] = {.lex_state = 19, .external_lex_state = 4}, - [621] = {.lex_state = 19, .external_lex_state = 4}, - [622] = {.lex_state = 19, .external_lex_state = 4}, - [623] = {.lex_state = 19, .external_lex_state = 4}, - [624] = {.lex_state = 19, .external_lex_state = 4}, - [625] = {.lex_state = 19, .external_lex_state = 4}, - [626] = {.lex_state = 19, .external_lex_state = 4}, - [627] = {.lex_state = 19, .external_lex_state = 4}, - [628] = {.lex_state = 19, .external_lex_state = 4}, - [629] = {.lex_state = 19, .external_lex_state = 4}, - [630] = {.lex_state = 19, .external_lex_state = 4}, - [631] = {.lex_state = 19, .external_lex_state = 4}, - [632] = {.lex_state = 19, .external_lex_state = 4}, - [633] = {.lex_state = 19, .external_lex_state = 4}, - [634] = {.lex_state = 19, .external_lex_state = 4}, - [635] = {.lex_state = 19, .external_lex_state = 4}, - [636] = {.lex_state = 19, .external_lex_state = 4}, - [637] = {.lex_state = 19, .external_lex_state = 4}, - [638] = {.lex_state = 19, .external_lex_state = 4}, - [639] = {.lex_state = 19, .external_lex_state = 4}, - [640] = {.lex_state = 19, .external_lex_state = 4}, - [641] = {.lex_state = 19, .external_lex_state = 4}, - [642] = {.lex_state = 19, .external_lex_state = 4}, - [643] = {.lex_state = 19, .external_lex_state = 4}, - [644] = {.lex_state = 19, .external_lex_state = 4}, - [645] = {.lex_state = 19, .external_lex_state = 4}, - [646] = {.lex_state = 19, .external_lex_state = 4}, - [647] = {.lex_state = 19, .external_lex_state = 4}, - [648] = {.lex_state = 19, .external_lex_state = 4}, - [649] = {.lex_state = 19, .external_lex_state = 4}, - [650] = {.lex_state = 19, .external_lex_state = 4}, - [651] = {.lex_state = 19, .external_lex_state = 4}, - [652] = {.lex_state = 19, .external_lex_state = 4}, - [653] = {.lex_state = 19, .external_lex_state = 4}, - [654] = {.lex_state = 19, .external_lex_state = 4}, - [655] = {.lex_state = 19, .external_lex_state = 4}, - [656] = {.lex_state = 19, .external_lex_state = 4}, - [657] = {.lex_state = 19, .external_lex_state = 4}, - [658] = {.lex_state = 19, .external_lex_state = 4}, - [659] = {.lex_state = 19, .external_lex_state = 4}, - [660] = {.lex_state = 19, .external_lex_state = 4}, - [661] = {.lex_state = 19, .external_lex_state = 4}, - [662] = {.lex_state = 19, .external_lex_state = 4}, - [663] = {.lex_state = 19, .external_lex_state = 4}, - [664] = {.lex_state = 19, .external_lex_state = 4}, - [665] = {.lex_state = 19, .external_lex_state = 4}, - [666] = {.lex_state = 19, .external_lex_state = 4}, - [667] = {.lex_state = 19, .external_lex_state = 4}, - [668] = {.lex_state = 19, .external_lex_state = 4}, - [669] = {.lex_state = 19, .external_lex_state = 4}, - [670] = {.lex_state = 19, .external_lex_state = 4}, - [671] = {.lex_state = 19, .external_lex_state = 4}, - [672] = {.lex_state = 19, .external_lex_state = 4}, - [673] = {.lex_state = 19, .external_lex_state = 4}, - [674] = {.lex_state = 19, .external_lex_state = 4}, - [675] = {.lex_state = 19, .external_lex_state = 4}, - [676] = {.lex_state = 19, .external_lex_state = 4}, - [677] = {.lex_state = 19, .external_lex_state = 4}, - [678] = {.lex_state = 19, .external_lex_state = 4}, - [679] = {.lex_state = 19, .external_lex_state = 4}, - [680] = {.lex_state = 19, .external_lex_state = 4}, - [681] = {.lex_state = 19, .external_lex_state = 4}, - [682] = {.lex_state = 19, .external_lex_state = 4}, - [683] = {.lex_state = 19, .external_lex_state = 4}, - [684] = {.lex_state = 19, .external_lex_state = 3}, - [685] = {.lex_state = 19, .external_lex_state = 4}, - [686] = {.lex_state = 19, .external_lex_state = 4}, - [687] = {.lex_state = 19, .external_lex_state = 4}, - [688] = {.lex_state = 19, .external_lex_state = 3}, - [689] = {.lex_state = 19, .external_lex_state = 4}, - [690] = {.lex_state = 19, .external_lex_state = 4}, - [691] = {.lex_state = 19, .external_lex_state = 4}, - [692] = {.lex_state = 19, .external_lex_state = 4}, - [693] = {.lex_state = 19, .external_lex_state = 3}, - [694] = {.lex_state = 19, .external_lex_state = 3}, - [695] = {.lex_state = 19, .external_lex_state = 3}, - [696] = {.lex_state = 19, .external_lex_state = 4}, - [697] = {.lex_state = 19, .external_lex_state = 3}, - [698] = {.lex_state = 19, .external_lex_state = 3}, - [699] = {.lex_state = 19, .external_lex_state = 3}, - [700] = {.lex_state = 19, .external_lex_state = 3}, - [701] = {.lex_state = 19, .external_lex_state = 3}, - [702] = {.lex_state = 19, .external_lex_state = 3}, - [703] = {.lex_state = 19, .external_lex_state = 3}, - [704] = {.lex_state = 19, .external_lex_state = 4}, - [705] = {.lex_state = 19, .external_lex_state = 3}, - [706] = {.lex_state = 19, .external_lex_state = 4}, - [707] = {.lex_state = 19, .external_lex_state = 4}, - [708] = {.lex_state = 19, .external_lex_state = 4}, - [709] = {.lex_state = 19, .external_lex_state = 4}, - [710] = {.lex_state = 19, .external_lex_state = 4}, - [711] = {.lex_state = 19, .external_lex_state = 3}, - [712] = {.lex_state = 19, .external_lex_state = 3}, - [713] = {.lex_state = 19, .external_lex_state = 4}, - [714] = {.lex_state = 19, .external_lex_state = 3}, - [715] = {.lex_state = 19, .external_lex_state = 3}, - [716] = {.lex_state = 19, .external_lex_state = 3}, - [717] = {.lex_state = 19, .external_lex_state = 4}, - [718] = {.lex_state = 19, .external_lex_state = 4}, - [719] = {.lex_state = 19, .external_lex_state = 4}, - [720] = {.lex_state = 19, .external_lex_state = 4}, - [721] = {.lex_state = 19, .external_lex_state = 3}, - [722] = {.lex_state = 19, .external_lex_state = 3}, - [723] = {.lex_state = 19, .external_lex_state = 3}, - [724] = {.lex_state = 19, .external_lex_state = 3}, - [725] = {.lex_state = 19, .external_lex_state = 3}, - [726] = {.lex_state = 19, .external_lex_state = 3}, - [727] = {.lex_state = 19, .external_lex_state = 3}, - [728] = {.lex_state = 19, .external_lex_state = 3}, - [729] = {.lex_state = 19, .external_lex_state = 3}, - [730] = {.lex_state = 19, .external_lex_state = 3}, - [731] = {.lex_state = 19, .external_lex_state = 3}, - [732] = {.lex_state = 19, .external_lex_state = 4}, - [733] = {.lex_state = 19, .external_lex_state = 3}, - [734] = {.lex_state = 19, .external_lex_state = 3}, - [735] = {.lex_state = 19, .external_lex_state = 4}, - [736] = {.lex_state = 19, .external_lex_state = 4}, - [737] = {.lex_state = 19, .external_lex_state = 4}, - [738] = {.lex_state = 19, .external_lex_state = 3}, - [739] = {.lex_state = 19, .external_lex_state = 4}, - [740] = {.lex_state = 19, .external_lex_state = 4}, - [741] = {.lex_state = 19, .external_lex_state = 4}, - [742] = {.lex_state = 19, .external_lex_state = 4}, - [743] = {.lex_state = 19, .external_lex_state = 4}, - [744] = {.lex_state = 19, .external_lex_state = 4}, - [745] = {.lex_state = 19, .external_lex_state = 4}, - [746] = {.lex_state = 19, .external_lex_state = 3}, - [747] = {.lex_state = 19, .external_lex_state = 4}, - [748] = {.lex_state = 19, .external_lex_state = 3}, - [749] = {.lex_state = 19, .external_lex_state = 4}, - [750] = {.lex_state = 19, .external_lex_state = 4}, - [751] = {.lex_state = 19, .external_lex_state = 4}, - [752] = {.lex_state = 19, .external_lex_state = 4}, - [753] = {.lex_state = 19, .external_lex_state = 4}, - [754] = {.lex_state = 19, .external_lex_state = 4}, - [755] = {.lex_state = 19, .external_lex_state = 4}, - [756] = {.lex_state = 19, .external_lex_state = 3}, - [757] = {.lex_state = 19, .external_lex_state = 4}, - [758] = {.lex_state = 19, .external_lex_state = 4}, - [759] = {.lex_state = 19, .external_lex_state = 3}, - [760] = {.lex_state = 19, .external_lex_state = 4}, - [761] = {.lex_state = 19, .external_lex_state = 4}, - [762] = {.lex_state = 19, .external_lex_state = 4}, - [763] = {.lex_state = 19, .external_lex_state = 4}, - [764] = {.lex_state = 19, .external_lex_state = 4}, - [765] = {.lex_state = 19, .external_lex_state = 4}, - [766] = {.lex_state = 19, .external_lex_state = 4}, - [767] = {.lex_state = 19, .external_lex_state = 3}, - [768] = {.lex_state = 19, .external_lex_state = 3}, - [769] = {.lex_state = 20, .external_lex_state = 4}, - [770] = {.lex_state = 19, .external_lex_state = 4}, - [771] = {.lex_state = 19, .external_lex_state = 4}, - [772] = {.lex_state = 19, .external_lex_state = 3}, - [773] = {.lex_state = 19, .external_lex_state = 4}, - [774] = {.lex_state = 19, .external_lex_state = 4}, - [775] = {.lex_state = 19, .external_lex_state = 4}, - [776] = {.lex_state = 19, .external_lex_state = 4}, - [777] = {.lex_state = 19, .external_lex_state = 4}, - [778] = {.lex_state = 19, .external_lex_state = 3}, - [779] = {.lex_state = 19, .external_lex_state = 4}, - [780] = {.lex_state = 20, .external_lex_state = 4}, - [781] = {.lex_state = 19, .external_lex_state = 4}, - [782] = {.lex_state = 19, .external_lex_state = 4}, - [783] = {.lex_state = 19, .external_lex_state = 4}, - [784] = {.lex_state = 19, .external_lex_state = 4}, - [785] = {.lex_state = 19, .external_lex_state = 4}, - [786] = {.lex_state = 19, .external_lex_state = 3}, - [787] = {.lex_state = 19, .external_lex_state = 4}, - [788] = {.lex_state = 19, .external_lex_state = 3}, - [789] = {.lex_state = 19, .external_lex_state = 4}, - [790] = {.lex_state = 19, .external_lex_state = 3}, - [791] = {.lex_state = 19, .external_lex_state = 3}, - [792] = {.lex_state = 19, .external_lex_state = 4}, - [793] = {.lex_state = 19, .external_lex_state = 3}, - [794] = {.lex_state = 19, .external_lex_state = 3}, - [795] = {.lex_state = 19, .external_lex_state = 4}, - [796] = {.lex_state = 19, .external_lex_state = 4}, - [797] = {.lex_state = 19, .external_lex_state = 4}, - [798] = {.lex_state = 19, .external_lex_state = 3}, - [799] = {.lex_state = 19, .external_lex_state = 3}, - [800] = {.lex_state = 19, .external_lex_state = 3}, - [801] = {.lex_state = 19, .external_lex_state = 3}, - [802] = {.lex_state = 19, .external_lex_state = 3}, - [803] = {.lex_state = 19, .external_lex_state = 3}, - [804] = {.lex_state = 19, .external_lex_state = 3}, - [805] = {.lex_state = 19, .external_lex_state = 3}, - [806] = {.lex_state = 19, .external_lex_state = 3}, - [807] = {.lex_state = 19, .external_lex_state = 3}, - [808] = {.lex_state = 19, .external_lex_state = 3}, - [809] = {.lex_state = 19, .external_lex_state = 3}, - [810] = {.lex_state = 19, .external_lex_state = 3}, - [811] = {.lex_state = 19, .external_lex_state = 3}, - [812] = {.lex_state = 19, .external_lex_state = 3}, - [813] = {.lex_state = 19, .external_lex_state = 3}, - [814] = {.lex_state = 19, .external_lex_state = 3}, - [815] = {.lex_state = 19, .external_lex_state = 3}, - [816] = {.lex_state = 19, .external_lex_state = 3}, - [817] = {.lex_state = 19, .external_lex_state = 3}, - [818] = {.lex_state = 19, .external_lex_state = 3}, - [819] = {.lex_state = 19, .external_lex_state = 3}, - [820] = {.lex_state = 19, .external_lex_state = 3}, - [821] = {.lex_state = 19, .external_lex_state = 3}, - [822] = {.lex_state = 19, .external_lex_state = 3}, - [823] = {.lex_state = 19, .external_lex_state = 3}, - [824] = {.lex_state = 19, .external_lex_state = 4}, - [825] = {.lex_state = 19, .external_lex_state = 3}, - [826] = {.lex_state = 19, .external_lex_state = 3}, - [827] = {.lex_state = 19, .external_lex_state = 3}, - [828] = {.lex_state = 19, .external_lex_state = 3}, - [829] = {.lex_state = 19, .external_lex_state = 3}, - [830] = {.lex_state = 19, .external_lex_state = 3}, - [831] = {.lex_state = 19, .external_lex_state = 4}, - [832] = {.lex_state = 19, .external_lex_state = 4}, - [833] = {.lex_state = 19, .external_lex_state = 3}, - [834] = {.lex_state = 19, .external_lex_state = 3}, - [835] = {.lex_state = 19, .external_lex_state = 3}, - [836] = {.lex_state = 19, .external_lex_state = 3}, - [837] = {.lex_state = 19, .external_lex_state = 3}, - [838] = {.lex_state = 19, .external_lex_state = 3}, - [839] = {.lex_state = 19, .external_lex_state = 3}, - [840] = {.lex_state = 19, .external_lex_state = 3}, - [841] = {.lex_state = 19, .external_lex_state = 3}, - [842] = {.lex_state = 19, .external_lex_state = 3}, - [843] = {.lex_state = 19, .external_lex_state = 3}, - [844] = {.lex_state = 19, .external_lex_state = 3}, - [845] = {.lex_state = 19, .external_lex_state = 3}, - [846] = {.lex_state = 19, .external_lex_state = 3}, - [847] = {.lex_state = 19, .external_lex_state = 3}, - [848] = {.lex_state = 19, .external_lex_state = 3}, - [849] = {.lex_state = 19, .external_lex_state = 3}, - [850] = {.lex_state = 19, .external_lex_state = 3}, - [851] = {.lex_state = 19, .external_lex_state = 3}, - [852] = {.lex_state = 19, .external_lex_state = 3}, - [853] = {.lex_state = 19, .external_lex_state = 3}, - [854] = {.lex_state = 19, .external_lex_state = 3}, - [855] = {.lex_state = 19, .external_lex_state = 3}, - [856] = {.lex_state = 19, .external_lex_state = 3}, - [857] = {.lex_state = 19, .external_lex_state = 3}, - [858] = {.lex_state = 19, .external_lex_state = 3}, - [859] = {.lex_state = 19, .external_lex_state = 3}, - [860] = {.lex_state = 19, .external_lex_state = 3}, - [861] = {.lex_state = 19, .external_lex_state = 3}, - [862] = {.lex_state = 19, .external_lex_state = 3}, - [863] = {.lex_state = 19, .external_lex_state = 3}, - [864] = {.lex_state = 19, .external_lex_state = 3}, - [865] = {.lex_state = 19, .external_lex_state = 3}, - [866] = {.lex_state = 19, .external_lex_state = 3}, - [867] = {.lex_state = 19, .external_lex_state = 3}, - [868] = {.lex_state = 19, .external_lex_state = 3}, - [869] = {.lex_state = 19, .external_lex_state = 3}, - [870] = {.lex_state = 20, .external_lex_state = 3}, - [871] = {.lex_state = 23, .external_lex_state = 2}, - [872] = {.lex_state = 19, .external_lex_state = 3}, - [873] = {.lex_state = 23, .external_lex_state = 2}, - [874] = {.lex_state = 23, .external_lex_state = 2}, - [875] = {.lex_state = 19, .external_lex_state = 3}, - [876] = {.lex_state = 19, .external_lex_state = 3}, - [877] = {.lex_state = 23, .external_lex_state = 2}, - [878] = {.lex_state = 23, .external_lex_state = 2}, - [879] = {.lex_state = 23, .external_lex_state = 2}, - [880] = {.lex_state = 19, .external_lex_state = 3}, - [881] = {.lex_state = 23, .external_lex_state = 2}, - [882] = {.lex_state = 23, .external_lex_state = 2}, - [883] = {.lex_state = 23, .external_lex_state = 2}, - [884] = {.lex_state = 23, .external_lex_state = 2}, - [885] = {.lex_state = 23, .external_lex_state = 2}, - [886] = {.lex_state = 23, .external_lex_state = 2}, - [887] = {.lex_state = 23, .external_lex_state = 2}, - [888] = {.lex_state = 23, .external_lex_state = 2}, - [889] = {.lex_state = 23, .external_lex_state = 2}, - [890] = {.lex_state = 23, .external_lex_state = 2}, - [891] = {.lex_state = 23, .external_lex_state = 2}, - [892] = {.lex_state = 16, .external_lex_state = 2}, - [893] = {.lex_state = 23, .external_lex_state = 2}, - [894] = {.lex_state = 16, .external_lex_state = 2}, - [895] = {.lex_state = 16, .external_lex_state = 2}, - [896] = {.lex_state = 14, .external_lex_state = 2}, - [897] = {.lex_state = 14, .external_lex_state = 2}, - [898] = {.lex_state = 14, .external_lex_state = 2}, - [899] = {.lex_state = 14, .external_lex_state = 2}, - [900] = {.lex_state = 14, .external_lex_state = 2}, - [901] = {.lex_state = 14, .external_lex_state = 2}, - [902] = {.lex_state = 14, .external_lex_state = 2}, - [903] = {.lex_state = 14, .external_lex_state = 2}, - [904] = {.lex_state = 14, .external_lex_state = 2}, - [905] = {.lex_state = 14, .external_lex_state = 2}, - [906] = {.lex_state = 14, .external_lex_state = 2}, - [907] = {.lex_state = 14, .external_lex_state = 2}, - [908] = {.lex_state = 14, .external_lex_state = 2}, - [909] = {.lex_state = 14, .external_lex_state = 2}, - [910] = {.lex_state = 14, .external_lex_state = 5}, - [911] = {.lex_state = 14, .external_lex_state = 2}, - [912] = {.lex_state = 14, .external_lex_state = 2}, - [913] = {.lex_state = 14, .external_lex_state = 2}, - [914] = {.lex_state = 14, .external_lex_state = 2}, - [915] = {.lex_state = 14, .external_lex_state = 2}, - [916] = {.lex_state = 14, .external_lex_state = 2}, - [917] = {.lex_state = 14, .external_lex_state = 2}, - [918] = {.lex_state = 14, .external_lex_state = 2}, - [919] = {.lex_state = 23, .external_lex_state = 2}, - [920] = {.lex_state = 23, .external_lex_state = 2}, - [921] = {.lex_state = 14, .external_lex_state = 5}, - [922] = {.lex_state = 23, .external_lex_state = 2}, - [923] = {.lex_state = 14, .external_lex_state = 5}, - [924] = {.lex_state = 14, .external_lex_state = 2}, - [925] = {.lex_state = 14, .external_lex_state = 2}, - [926] = {.lex_state = 14, .external_lex_state = 5}, - [927] = {.lex_state = 14, .external_lex_state = 5}, - [928] = {.lex_state = 14, .external_lex_state = 5}, - [929] = {.lex_state = 14, .external_lex_state = 2}, - [930] = {.lex_state = 14, .external_lex_state = 2}, - [931] = {.lex_state = 23, .external_lex_state = 5}, - [932] = {.lex_state = 23, .external_lex_state = 2}, - [933] = {.lex_state = 23, .external_lex_state = 2}, - [934] = {.lex_state = 23, .external_lex_state = 2}, - [935] = {.lex_state = 22, .external_lex_state = 2}, - [936] = {.lex_state = 23, .external_lex_state = 2}, - [937] = {.lex_state = 23, .external_lex_state = 5}, - [938] = {.lex_state = 14, .external_lex_state = 5}, - [939] = {.lex_state = 23, .external_lex_state = 2}, - [940] = {.lex_state = 23, .external_lex_state = 2}, - [941] = {.lex_state = 23, .external_lex_state = 2}, - [942] = {.lex_state = 23, .external_lex_state = 2}, - [943] = {.lex_state = 23, .external_lex_state = 2}, - [944] = {.lex_state = 23, .external_lex_state = 2}, - [945] = {.lex_state = 14, .external_lex_state = 2}, - [946] = {.lex_state = 23, .external_lex_state = 2}, - [947] = {.lex_state = 23, .external_lex_state = 2}, - [948] = {.lex_state = 23, .external_lex_state = 2}, - [949] = {.lex_state = 23, .external_lex_state = 2}, - [950] = {.lex_state = 14, .external_lex_state = 5}, - [951] = {.lex_state = 23, .external_lex_state = 2}, - [952] = {.lex_state = 23, .external_lex_state = 2}, - [953] = {.lex_state = 23, .external_lex_state = 2}, - [954] = {.lex_state = 14, .external_lex_state = 5}, - [955] = {.lex_state = 23, .external_lex_state = 2}, - [956] = {.lex_state = 23, .external_lex_state = 2}, - [957] = {.lex_state = 23, .external_lex_state = 2}, - [958] = {.lex_state = 14, .external_lex_state = 5}, - [959] = {.lex_state = 23, .external_lex_state = 2}, - [960] = {.lex_state = 23, .external_lex_state = 2}, - [961] = {.lex_state = 23, .external_lex_state = 2}, - [962] = {.lex_state = 23, .external_lex_state = 2}, - [963] = {.lex_state = 14, .external_lex_state = 5}, - [964] = {.lex_state = 14, .external_lex_state = 5}, - [965] = {.lex_state = 23, .external_lex_state = 2}, - [966] = {.lex_state = 23, .external_lex_state = 2}, - [967] = {.lex_state = 23, .external_lex_state = 2}, - [968] = {.lex_state = 23, .external_lex_state = 2}, - [969] = {.lex_state = 23, .external_lex_state = 2}, - [970] = {.lex_state = 23, .external_lex_state = 2}, - [971] = {.lex_state = 23, .external_lex_state = 2}, - [972] = {.lex_state = 23, .external_lex_state = 2}, - [973] = {.lex_state = 22, .external_lex_state = 2}, - [974] = {.lex_state = 23, .external_lex_state = 2}, - [975] = {.lex_state = 23, .external_lex_state = 2}, - [976] = {.lex_state = 23, .external_lex_state = 2}, - [977] = {.lex_state = 23, .external_lex_state = 2}, - [978] = {.lex_state = 23, .external_lex_state = 2}, - [979] = {.lex_state = 23, .external_lex_state = 2}, - [980] = {.lex_state = 23, .external_lex_state = 2}, - [981] = {.lex_state = 14, .external_lex_state = 2}, - [982] = {.lex_state = 14, .external_lex_state = 2}, - [983] = {.lex_state = 14, .external_lex_state = 2}, - [984] = {.lex_state = 14, .external_lex_state = 2}, - [985] = {.lex_state = 158, .external_lex_state = 2}, - [986] = {.lex_state = 14, .external_lex_state = 2}, - [987] = {.lex_state = 14, .external_lex_state = 2}, - [988] = {.lex_state = 14, .external_lex_state = 2}, - [989] = {.lex_state = 14, .external_lex_state = 2}, - [990] = {.lex_state = 14, .external_lex_state = 2}, - [991] = {.lex_state = 14, .external_lex_state = 2}, - [992] = {.lex_state = 14, .external_lex_state = 2}, - [993] = {.lex_state = 14, .external_lex_state = 2}, - [994] = {.lex_state = 14, .external_lex_state = 2}, - [995] = {.lex_state = 14, .external_lex_state = 2}, - [996] = {.lex_state = 14, .external_lex_state = 2}, - [997] = {.lex_state = 14, .external_lex_state = 2}, - [998] = {.lex_state = 14, .external_lex_state = 2}, - [999] = {.lex_state = 14, .external_lex_state = 2}, - [1000] = {.lex_state = 23, .external_lex_state = 2}, - [1001] = {.lex_state = 14, .external_lex_state = 2}, - [1002] = {.lex_state = 23, .external_lex_state = 2}, - [1003] = {.lex_state = 14, .external_lex_state = 2}, - [1004] = {.lex_state = 14, .external_lex_state = 2}, - [1005] = {.lex_state = 14, .external_lex_state = 2}, - [1006] = {.lex_state = 14, .external_lex_state = 2}, - [1007] = {.lex_state = 14, .external_lex_state = 2}, - [1008] = {.lex_state = 23, .external_lex_state = 2}, - [1009] = {.lex_state = 14, .external_lex_state = 2}, - [1010] = {.lex_state = 14, .external_lex_state = 2}, - [1011] = {.lex_state = 158, .external_lex_state = 2}, - [1012] = {.lex_state = 158, .external_lex_state = 2}, - [1013] = {.lex_state = 14, .external_lex_state = 2}, - [1014] = {.lex_state = 14, .external_lex_state = 2}, - [1015] = {.lex_state = 23, .external_lex_state = 2}, - [1016] = {.lex_state = 14, .external_lex_state = 2}, - [1017] = {.lex_state = 23, .external_lex_state = 2}, - [1018] = {.lex_state = 14, .external_lex_state = 2}, - [1019] = {.lex_state = 23, .external_lex_state = 2}, - [1020] = {.lex_state = 14, .external_lex_state = 2}, - [1021] = {.lex_state = 14, .external_lex_state = 2}, - [1022] = {.lex_state = 14, .external_lex_state = 2}, - [1023] = {.lex_state = 14, .external_lex_state = 2}, - [1024] = {.lex_state = 14, .external_lex_state = 2}, - [1025] = {.lex_state = 14, .external_lex_state = 2}, - [1026] = {.lex_state = 14, .external_lex_state = 2}, - [1027] = {.lex_state = 14, .external_lex_state = 2}, - [1028] = {.lex_state = 14, .external_lex_state = 2}, - [1029] = {.lex_state = 14, .external_lex_state = 2}, - [1030] = {.lex_state = 14, .external_lex_state = 2}, - [1031] = {.lex_state = 14, .external_lex_state = 2}, - [1032] = {.lex_state = 14, .external_lex_state = 2}, - [1033] = {.lex_state = 14, .external_lex_state = 2}, - [1034] = {.lex_state = 14, .external_lex_state = 2}, - [1035] = {.lex_state = 14, .external_lex_state = 2}, - [1036] = {.lex_state = 18, .external_lex_state = 2}, - [1037] = {.lex_state = 14, .external_lex_state = 2}, - [1038] = {.lex_state = 18, .external_lex_state = 2}, - [1039] = {.lex_state = 14, .external_lex_state = 2}, - [1040] = {.lex_state = 14, .external_lex_state = 2}, - [1041] = {.lex_state = 14, .external_lex_state = 2}, - [1042] = {.lex_state = 14, .external_lex_state = 2}, - [1043] = {.lex_state = 18, .external_lex_state = 2}, - [1044] = {.lex_state = 18, .external_lex_state = 2}, - [1045] = {.lex_state = 14, .external_lex_state = 2}, - [1046] = {.lex_state = 14, .external_lex_state = 2}, - [1047] = {.lex_state = 18, .external_lex_state = 2}, - [1048] = {.lex_state = 14, .external_lex_state = 2}, - [1049] = {.lex_state = 158, .external_lex_state = 2}, - [1050] = {.lex_state = 25, .external_lex_state = 2}, - [1051] = {.lex_state = 25, .external_lex_state = 2}, - [1052] = {.lex_state = 22, .external_lex_state = 6}, - [1053] = {.lex_state = 22, .external_lex_state = 6}, - [1054] = {.lex_state = 22, .external_lex_state = 6}, - [1055] = {.lex_state = 22, .external_lex_state = 6}, - [1056] = {.lex_state = 25, .external_lex_state = 2}, - [1057] = {.lex_state = 22, .external_lex_state = 6}, - [1058] = {.lex_state = 22, .external_lex_state = 6}, - [1059] = {.lex_state = 22, .external_lex_state = 6}, - [1060] = {.lex_state = 25, .external_lex_state = 2}, - [1061] = {.lex_state = 22, .external_lex_state = 6}, - [1062] = {.lex_state = 25, .external_lex_state = 2}, - [1063] = {.lex_state = 25, .external_lex_state = 2}, - [1064] = {.lex_state = 25, .external_lex_state = 2}, - [1065] = {.lex_state = 25, .external_lex_state = 2}, - [1066] = {.lex_state = 25, .external_lex_state = 2}, - [1067] = {.lex_state = 25, .external_lex_state = 2}, - [1068] = {.lex_state = 25, .external_lex_state = 2}, - [1069] = {.lex_state = 22, .external_lex_state = 6}, - [1070] = {.lex_state = 25, .external_lex_state = 2}, - [1071] = {.lex_state = 25, .external_lex_state = 2}, - [1072] = {.lex_state = 25, .external_lex_state = 2}, - [1073] = {.lex_state = 25, .external_lex_state = 2}, - [1074] = {.lex_state = 25, .external_lex_state = 2}, - [1075] = {.lex_state = 25, .external_lex_state = 2}, - [1076] = {.lex_state = 25, .external_lex_state = 2}, - [1077] = {.lex_state = 25, .external_lex_state = 2}, - [1078] = {.lex_state = 25, .external_lex_state = 2}, - [1079] = {.lex_state = 25, .external_lex_state = 2}, - [1080] = {.lex_state = 25, .external_lex_state = 2}, - [1081] = {.lex_state = 25, .external_lex_state = 2}, - [1082] = {.lex_state = 25, .external_lex_state = 2}, - [1083] = {.lex_state = 25, .external_lex_state = 2}, - [1084] = {.lex_state = 25, .external_lex_state = 2}, - [1085] = {.lex_state = 25, .external_lex_state = 2}, - [1086] = {.lex_state = 25, .external_lex_state = 2}, - [1087] = {.lex_state = 25, .external_lex_state = 2}, - [1088] = {.lex_state = 25, .external_lex_state = 2}, - [1089] = {.lex_state = 25, .external_lex_state = 2}, - [1090] = {.lex_state = 25, .external_lex_state = 2}, - [1091] = {.lex_state = 25, .external_lex_state = 2}, - [1092] = {.lex_state = 25, .external_lex_state = 2}, - [1093] = {.lex_state = 25, .external_lex_state = 2}, - [1094] = {.lex_state = 158, .external_lex_state = 2}, - [1095] = {.lex_state = 158, .external_lex_state = 2}, - [1096] = {.lex_state = 158, .external_lex_state = 2}, - [1097] = {.lex_state = 158, .external_lex_state = 2}, - [1098] = {.lex_state = 158, .external_lex_state = 2}, - [1099] = {.lex_state = 158, .external_lex_state = 2}, - [1100] = {.lex_state = 158, .external_lex_state = 2}, - [1101] = {.lex_state = 158, .external_lex_state = 2}, - [1102] = {.lex_state = 158, .external_lex_state = 2}, - [1103] = {.lex_state = 158, .external_lex_state = 2}, - [1104] = {.lex_state = 158, .external_lex_state = 2}, - [1105] = {.lex_state = 25, .external_lex_state = 2}, - [1106] = {.lex_state = 158, .external_lex_state = 2}, - [1107] = {.lex_state = 158, .external_lex_state = 2}, - [1108] = {.lex_state = 158, .external_lex_state = 2}, - [1109] = {.lex_state = 158, .external_lex_state = 5}, - [1110] = {.lex_state = 158, .external_lex_state = 5}, - [1111] = {.lex_state = 158, .external_lex_state = 2}, - [1112] = {.lex_state = 158, .external_lex_state = 2}, - [1113] = {.lex_state = 158, .external_lex_state = 2}, - [1114] = {.lex_state = 158, .external_lex_state = 2}, - [1115] = {.lex_state = 158, .external_lex_state = 2}, - [1116] = {.lex_state = 158, .external_lex_state = 2}, - [1117] = {.lex_state = 158, .external_lex_state = 2}, - [1118] = {.lex_state = 158, .external_lex_state = 2}, - [1119] = {.lex_state = 158, .external_lex_state = 2}, - [1120] = {.lex_state = 158, .external_lex_state = 2}, - [1121] = {.lex_state = 158, .external_lex_state = 2}, - [1122] = {.lex_state = 158, .external_lex_state = 5}, - [1123] = {.lex_state = 158, .external_lex_state = 5}, - [1124] = {.lex_state = 158, .external_lex_state = 5}, - [1125] = {.lex_state = 31, .external_lex_state = 7}, - [1126] = {.lex_state = 158, .external_lex_state = 5}, - [1127] = {.lex_state = 158, .external_lex_state = 2}, - [1128] = {.lex_state = 158, .external_lex_state = 2}, - [1129] = {.lex_state = 31, .external_lex_state = 7}, - [1130] = {.lex_state = 158, .external_lex_state = 2}, - [1131] = {.lex_state = 158, .external_lex_state = 2}, - [1132] = {.lex_state = 158, .external_lex_state = 5}, - [1133] = {.lex_state = 158, .external_lex_state = 2}, - [1134] = {.lex_state = 158, .external_lex_state = 5}, - [1135] = {.lex_state = 158, .external_lex_state = 5}, - [1136] = {.lex_state = 158, .external_lex_state = 5}, - [1137] = {.lex_state = 158, .external_lex_state = 5}, - [1138] = {.lex_state = 158, .external_lex_state = 5}, - [1139] = {.lex_state = 25, .external_lex_state = 2}, - [1140] = {.lex_state = 25, .external_lex_state = 2}, - [1141] = {.lex_state = 158, .external_lex_state = 2}, - [1142] = {.lex_state = 158, .external_lex_state = 2}, - [1143] = {.lex_state = 158, .external_lex_state = 2}, - [1144] = {.lex_state = 158, .external_lex_state = 2}, - [1145] = {.lex_state = 158, .external_lex_state = 2}, - [1146] = {.lex_state = 31, .external_lex_state = 7}, - [1147] = {.lex_state = 158, .external_lex_state = 2}, - [1148] = {.lex_state = 158, .external_lex_state = 5}, - [1149] = {.lex_state = 31, .external_lex_state = 7}, - [1150] = {.lex_state = 31, .external_lex_state = 7}, - [1151] = {.lex_state = 158, .external_lex_state = 5}, - [1152] = {.lex_state = 25, .external_lex_state = 2}, - [1153] = {.lex_state = 158, .external_lex_state = 2}, - [1154] = {.lex_state = 158, .external_lex_state = 2}, - [1155] = {.lex_state = 22, .external_lex_state = 6}, - [1156] = {.lex_state = 22, .external_lex_state = 6}, - [1157] = {.lex_state = 25, .external_lex_state = 2}, - [1158] = {.lex_state = 22, .external_lex_state = 6}, - [1159] = {.lex_state = 158, .external_lex_state = 2}, - [1160] = {.lex_state = 22, .external_lex_state = 6}, - [1161] = {.lex_state = 22, .external_lex_state = 6}, - [1162] = {.lex_state = 158, .external_lex_state = 2}, - [1163] = {.lex_state = 158, .external_lex_state = 2}, - [1164] = {.lex_state = 158, .external_lex_state = 2}, - [1165] = {.lex_state = 158, .external_lex_state = 2}, - [1166] = {.lex_state = 22, .external_lex_state = 6}, - [1167] = {.lex_state = 158, .external_lex_state = 2}, - [1168] = {.lex_state = 25, .external_lex_state = 2}, - [1169] = {.lex_state = 14, .external_lex_state = 2}, - [1170] = {.lex_state = 158, .external_lex_state = 2}, - [1171] = {.lex_state = 25, .external_lex_state = 2}, - [1172] = {.lex_state = 158, .external_lex_state = 2}, - [1173] = {.lex_state = 22, .external_lex_state = 6}, - [1174] = {.lex_state = 158, .external_lex_state = 2}, - [1175] = {.lex_state = 158, .external_lex_state = 2}, - [1176] = {.lex_state = 25, .external_lex_state = 2}, - [1177] = {.lex_state = 25, .external_lex_state = 2}, - [1178] = {.lex_state = 22, .external_lex_state = 6}, - [1179] = {.lex_state = 22, .external_lex_state = 6}, - [1180] = {.lex_state = 22, .external_lex_state = 6}, - [1181] = {.lex_state = 22, .external_lex_state = 6}, - [1182] = {.lex_state = 22, .external_lex_state = 6}, - [1183] = {.lex_state = 22, .external_lex_state = 6}, - [1184] = {.lex_state = 25, .external_lex_state = 2}, - [1185] = {.lex_state = 158, .external_lex_state = 2}, - [1186] = {.lex_state = 158, .external_lex_state = 5}, - [1187] = {.lex_state = 158, .external_lex_state = 2}, - [1188] = {.lex_state = 158, .external_lex_state = 5}, - [1189] = {.lex_state = 22, .external_lex_state = 6}, - [1190] = {.lex_state = 158, .external_lex_state = 2}, - [1191] = {.lex_state = 25, .external_lex_state = 2}, - [1192] = {.lex_state = 22, .external_lex_state = 6}, - [1193] = {.lex_state = 25, .external_lex_state = 2}, - [1194] = {.lex_state = 25, .external_lex_state = 2}, - [1195] = {.lex_state = 158, .external_lex_state = 2}, - [1196] = {.lex_state = 25, .external_lex_state = 2}, - [1197] = {.lex_state = 25, .external_lex_state = 2}, - [1198] = {.lex_state = 25, .external_lex_state = 2}, - [1199] = {.lex_state = 158, .external_lex_state = 2}, - [1200] = {.lex_state = 158, .external_lex_state = 2}, - [1201] = {.lex_state = 25, .external_lex_state = 2}, - [1202] = {.lex_state = 158, .external_lex_state = 5}, - [1203] = {.lex_state = 25, .external_lex_state = 2}, - [1204] = {.lex_state = 25, .external_lex_state = 2}, - [1205] = {.lex_state = 22, .external_lex_state = 6}, - [1206] = {.lex_state = 25, .external_lex_state = 2}, - [1207] = {.lex_state = 25, .external_lex_state = 2}, - [1208] = {.lex_state = 25, .external_lex_state = 2}, - [1209] = {.lex_state = 25, .external_lex_state = 2}, - [1210] = {.lex_state = 22, .external_lex_state = 6}, - [1211] = {.lex_state = 158, .external_lex_state = 2}, - [1212] = {.lex_state = 158, .external_lex_state = 2}, - [1213] = {.lex_state = 25, .external_lex_state = 2}, - [1214] = {.lex_state = 14, .external_lex_state = 2}, - [1215] = {.lex_state = 25, .external_lex_state = 2}, - [1216] = {.lex_state = 25, .external_lex_state = 2}, - [1217] = {.lex_state = 25, .external_lex_state = 2}, - [1218] = {.lex_state = 158, .external_lex_state = 5}, - [1219] = {.lex_state = 25, .external_lex_state = 2}, - [1220] = {.lex_state = 24, .external_lex_state = 2}, - [1221] = {.lex_state = 158, .external_lex_state = 2}, - [1222] = {.lex_state = 158, .external_lex_state = 2}, - [1223] = {.lex_state = 158, .external_lex_state = 2}, - [1224] = {.lex_state = 35, .external_lex_state = 8}, - [1225] = {.lex_state = 27, .external_lex_state = 8}, - [1226] = {.lex_state = 27, .external_lex_state = 8}, - [1227] = {.lex_state = 35, .external_lex_state = 8}, - [1228] = {.lex_state = 158, .external_lex_state = 2}, - [1229] = {.lex_state = 35, .external_lex_state = 8}, - [1230] = {.lex_state = 27, .external_lex_state = 8}, - [1231] = {.lex_state = 35, .external_lex_state = 8}, - [1232] = {.lex_state = 24, .external_lex_state = 2}, - [1233] = {.lex_state = 33, .external_lex_state = 2}, - [1234] = {.lex_state = 27, .external_lex_state = 8}, - [1235] = {.lex_state = 35, .external_lex_state = 8}, - [1236] = {.lex_state = 158, .external_lex_state = 5}, - [1237] = {.lex_state = 158, .external_lex_state = 5}, - [1238] = {.lex_state = 158, .external_lex_state = 5}, - [1239] = {.lex_state = 158, .external_lex_state = 2}, - [1240] = {.lex_state = 35, .external_lex_state = 8}, - [1241] = {.lex_state = 27, .external_lex_state = 8}, - [1242] = {.lex_state = 27, .external_lex_state = 8}, - [1243] = {.lex_state = 158, .external_lex_state = 2}, - [1244] = {.lex_state = 31, .external_lex_state = 7}, - [1245] = {.lex_state = 158, .external_lex_state = 5}, - [1246] = {.lex_state = 158, .external_lex_state = 2}, - [1247] = {.lex_state = 158, .external_lex_state = 2}, - [1248] = {.lex_state = 158, .external_lex_state = 2}, - [1249] = {.lex_state = 158, .external_lex_state = 2}, - [1250] = {.lex_state = 158, .external_lex_state = 2}, - [1251] = {.lex_state = 158, .external_lex_state = 2}, - [1252] = {.lex_state = 158, .external_lex_state = 2}, - [1253] = {.lex_state = 158, .external_lex_state = 2}, - [1254] = {.lex_state = 158, .external_lex_state = 2}, - [1255] = {.lex_state = 158, .external_lex_state = 5}, - [1256] = {.lex_state = 158, .external_lex_state = 2}, - [1257] = {.lex_state = 158, .external_lex_state = 2}, - [1258] = {.lex_state = 24, .external_lex_state = 2}, - [1259] = {.lex_state = 158, .external_lex_state = 5}, - [1260] = {.lex_state = 158, .external_lex_state = 5}, - [1261] = {.lex_state = 33, .external_lex_state = 2}, - [1262] = {.lex_state = 35, .external_lex_state = 8}, - [1263] = {.lex_state = 158, .external_lex_state = 5}, - [1264] = {.lex_state = 158, .external_lex_state = 5}, - [1265] = {.lex_state = 27, .external_lex_state = 8}, - [1266] = {.lex_state = 158, .external_lex_state = 5}, - [1267] = {.lex_state = 158, .external_lex_state = 2}, - [1268] = {.lex_state = 158, .external_lex_state = 2}, - [1269] = {.lex_state = 158, .external_lex_state = 2}, - [1270] = {.lex_state = 158, .external_lex_state = 2}, - [1271] = {.lex_state = 33, .external_lex_state = 2}, - [1272] = {.lex_state = 158, .external_lex_state = 2}, - [1273] = {.lex_state = 158, .external_lex_state = 2}, - [1274] = {.lex_state = 158, .external_lex_state = 2}, - [1275] = {.lex_state = 158, .external_lex_state = 2}, - [1276] = {.lex_state = 158, .external_lex_state = 2}, - [1277] = {.lex_state = 158, .external_lex_state = 5}, - [1278] = {.lex_state = 158, .external_lex_state = 2}, - [1279] = {.lex_state = 158, .external_lex_state = 5}, - [1280] = {.lex_state = 158, .external_lex_state = 2}, - [1281] = {.lex_state = 158, .external_lex_state = 2}, - [1282] = {.lex_state = 27, .external_lex_state = 8}, - [1283] = {.lex_state = 35, .external_lex_state = 8}, - [1284] = {.lex_state = 27, .external_lex_state = 8}, - [1285] = {.lex_state = 35, .external_lex_state = 8}, - [1286] = {.lex_state = 158, .external_lex_state = 2}, - [1287] = {.lex_state = 158, .external_lex_state = 2}, - [1288] = {.lex_state = 158, .external_lex_state = 5}, - [1289] = {.lex_state = 158, .external_lex_state = 5}, - [1290] = {.lex_state = 158, .external_lex_state = 5}, - [1291] = {.lex_state = 158, .external_lex_state = 5}, - [1292] = {.lex_state = 158, .external_lex_state = 2}, - [1293] = {.lex_state = 158, .external_lex_state = 2}, - [1294] = {.lex_state = 158, .external_lex_state = 2}, - [1295] = {.lex_state = 158, .external_lex_state = 2}, - [1296] = {.lex_state = 158, .external_lex_state = 2}, - [1297] = {.lex_state = 158, .external_lex_state = 2}, - [1298] = {.lex_state = 158, .external_lex_state = 2}, - [1299] = {.lex_state = 158, .external_lex_state = 2}, - [1300] = {.lex_state = 158, .external_lex_state = 2}, - [1301] = {.lex_state = 158, .external_lex_state = 2}, - [1302] = {.lex_state = 158, .external_lex_state = 2}, - [1303] = {.lex_state = 158, .external_lex_state = 2}, - [1304] = {.lex_state = 158, .external_lex_state = 2}, - [1305] = {.lex_state = 158, .external_lex_state = 2}, - [1306] = {.lex_state = 158, .external_lex_state = 2}, - [1307] = {.lex_state = 158, .external_lex_state = 2}, - [1308] = {.lex_state = 158, .external_lex_state = 2}, - [1309] = {.lex_state = 158, .external_lex_state = 2}, - [1310] = {.lex_state = 158, .external_lex_state = 2}, - [1311] = {.lex_state = 158, .external_lex_state = 2}, - [1312] = {.lex_state = 158, .external_lex_state = 5}, - [1313] = {.lex_state = 158, .external_lex_state = 2}, - [1314] = {.lex_state = 158, .external_lex_state = 5}, - [1315] = {.lex_state = 158, .external_lex_state = 2}, - [1316] = {.lex_state = 14, .external_lex_state = 2}, - [1317] = {.lex_state = 158, .external_lex_state = 2}, - [1318] = {.lex_state = 158, .external_lex_state = 2}, - [1319] = {.lex_state = 12, .external_lex_state = 2}, - [1320] = {.lex_state = 12, .external_lex_state = 2}, - [1321] = {.lex_state = 158, .external_lex_state = 2}, - [1322] = {.lex_state = 158, .external_lex_state = 2}, - [1323] = {.lex_state = 158, .external_lex_state = 2}, - [1324] = {.lex_state = 158, .external_lex_state = 2}, - [1325] = {.lex_state = 158, .external_lex_state = 2}, - [1326] = {.lex_state = 158, .external_lex_state = 2}, - [1327] = {.lex_state = 158, .external_lex_state = 2}, - [1328] = {.lex_state = 158, .external_lex_state = 2}, - [1329] = {.lex_state = 158, .external_lex_state = 2}, - [1330] = {.lex_state = 158, .external_lex_state = 2}, - [1331] = {.lex_state = 158, .external_lex_state = 2}, - [1332] = {.lex_state = 158, .external_lex_state = 2}, - [1333] = {.lex_state = 158, .external_lex_state = 2}, - [1334] = {.lex_state = 158, .external_lex_state = 2}, - [1335] = {.lex_state = 158, .external_lex_state = 2}, - [1336] = {.lex_state = 158, .external_lex_state = 2}, - [1337] = {.lex_state = 158, .external_lex_state = 2}, - [1338] = {.lex_state = 158, .external_lex_state = 2}, - [1339] = {.lex_state = 158, .external_lex_state = 2}, - [1340] = {.lex_state = 158, .external_lex_state = 2}, - [1341] = {.lex_state = 158, .external_lex_state = 2}, - [1342] = {.lex_state = 158, .external_lex_state = 2}, - [1343] = {.lex_state = 158, .external_lex_state = 2}, - [1344] = {.lex_state = 158, .external_lex_state = 2}, - [1345] = {.lex_state = 158, .external_lex_state = 2}, - [1346] = {.lex_state = 158, .external_lex_state = 2}, - [1347] = {.lex_state = 158, .external_lex_state = 2}, - [1348] = {.lex_state = 158, .external_lex_state = 2}, - [1349] = {.lex_state = 158, .external_lex_state = 2}, - [1350] = {.lex_state = 158, .external_lex_state = 2}, - [1351] = {.lex_state = 158, .external_lex_state = 2}, - [1352] = {.lex_state = 158, .external_lex_state = 2}, - [1353] = {.lex_state = 158, .external_lex_state = 5}, - [1354] = {.lex_state = 158, .external_lex_state = 5}, - [1355] = {.lex_state = 158, .external_lex_state = 2}, - [1356] = {.lex_state = 158, .external_lex_state = 2}, - [1357] = {.lex_state = 12, .external_lex_state = 2}, - [1358] = {.lex_state = 158, .external_lex_state = 2}, - [1359] = {.lex_state = 158, .external_lex_state = 2}, - [1360] = {.lex_state = 158, .external_lex_state = 2}, - [1361] = {.lex_state = 158, .external_lex_state = 2}, - [1362] = {.lex_state = 158, .external_lex_state = 2}, - [1363] = {.lex_state = 158, .external_lex_state = 2}, - [1364] = {.lex_state = 158, .external_lex_state = 2}, - [1365] = {.lex_state = 158, .external_lex_state = 2}, - [1366] = {.lex_state = 158, .external_lex_state = 5}, - [1367] = {.lex_state = 158, .external_lex_state = 2}, - [1368] = {.lex_state = 158, .external_lex_state = 2}, - [1369] = {.lex_state = 158, .external_lex_state = 2}, - [1370] = {.lex_state = 158, .external_lex_state = 5}, - [1371] = {.lex_state = 158, .external_lex_state = 2}, - [1372] = {.lex_state = 12, .external_lex_state = 2}, - [1373] = {.lex_state = 158, .external_lex_state = 2}, - [1374] = {.lex_state = 158, .external_lex_state = 2}, - [1375] = {.lex_state = 158, .external_lex_state = 2}, - [1376] = {.lex_state = 158, .external_lex_state = 2}, - [1377] = {.lex_state = 12, .external_lex_state = 2}, - [1378] = {.lex_state = 158, .external_lex_state = 2}, - [1379] = {.lex_state = 14, .external_lex_state = 2}, - [1380] = {.lex_state = 158, .external_lex_state = 2}, - [1381] = {.lex_state = 12, .external_lex_state = 2}, - [1382] = {.lex_state = 158, .external_lex_state = 2}, - [1383] = {.lex_state = 158, .external_lex_state = 2}, - [1384] = {.lex_state = 158, .external_lex_state = 5}, - [1385] = {.lex_state = 158, .external_lex_state = 5}, - [1386] = {.lex_state = 158, .external_lex_state = 2}, - [1387] = {.lex_state = 158, .external_lex_state = 2}, - [1388] = {.lex_state = 158, .external_lex_state = 5}, - [1389] = {.lex_state = 158, .external_lex_state = 5}, - [1390] = {.lex_state = 158, .external_lex_state = 2}, - [1391] = {.lex_state = 158, .external_lex_state = 2}, - [1392] = {.lex_state = 158, .external_lex_state = 2}, - [1393] = {.lex_state = 158, .external_lex_state = 2}, - [1394] = {.lex_state = 158, .external_lex_state = 2}, - [1395] = {.lex_state = 158, .external_lex_state = 2}, - [1396] = {.lex_state = 158, .external_lex_state = 2}, - [1397] = {.lex_state = 158, .external_lex_state = 2}, - [1398] = {.lex_state = 158, .external_lex_state = 2}, - [1399] = {.lex_state = 12, .external_lex_state = 2}, - [1400] = {.lex_state = 158, .external_lex_state = 2}, - [1401] = {.lex_state = 158, .external_lex_state = 2}, - [1402] = {.lex_state = 158, .external_lex_state = 2}, - [1403] = {.lex_state = 158, .external_lex_state = 5}, - [1404] = {.lex_state = 158, .external_lex_state = 5}, - [1405] = {.lex_state = 158, .external_lex_state = 2}, - [1406] = {.lex_state = 158, .external_lex_state = 2}, - [1407] = {.lex_state = 158, .external_lex_state = 2}, - [1408] = {.lex_state = 158, .external_lex_state = 2}, - [1409] = {.lex_state = 158, .external_lex_state = 2}, - [1410] = {.lex_state = 158, .external_lex_state = 2}, - [1411] = {.lex_state = 158, .external_lex_state = 2}, - [1412] = {.lex_state = 158, .external_lex_state = 2}, - [1413] = {.lex_state = 158, .external_lex_state = 2}, - [1414] = {.lex_state = 158, .external_lex_state = 2}, - [1415] = {.lex_state = 158, .external_lex_state = 5}, - [1416] = {.lex_state = 14, .external_lex_state = 2}, - [1417] = {.lex_state = 158, .external_lex_state = 2}, - [1418] = {.lex_state = 14, .external_lex_state = 2}, - [1419] = {.lex_state = 158, .external_lex_state = 2}, - [1420] = {.lex_state = 158, .external_lex_state = 5}, - [1421] = {.lex_state = 158, .external_lex_state = 5}, - [1422] = {.lex_state = 158, .external_lex_state = 2}, - [1423] = {.lex_state = 158, .external_lex_state = 2}, - [1424] = {.lex_state = 158, .external_lex_state = 2}, - [1425] = {.lex_state = 158, .external_lex_state = 2}, - [1426] = {.lex_state = 158, .external_lex_state = 2}, - [1427] = {.lex_state = 158, .external_lex_state = 2}, - [1428] = {.lex_state = 158, .external_lex_state = 2}, - [1429] = {.lex_state = 158, .external_lex_state = 2}, - [1430] = {.lex_state = 158, .external_lex_state = 2}, - [1431] = {.lex_state = 158, .external_lex_state = 2}, - [1432] = {.lex_state = 158, .external_lex_state = 2}, - [1433] = {.lex_state = 158, .external_lex_state = 2}, - [1434] = {.lex_state = 158, .external_lex_state = 2}, - [1435] = {.lex_state = 158, .external_lex_state = 2}, - [1436] = {.lex_state = 158, .external_lex_state = 2}, - [1437] = {.lex_state = 158, .external_lex_state = 2}, - [1438] = {.lex_state = 158, .external_lex_state = 2}, - [1439] = {.lex_state = 158, .external_lex_state = 2}, - [1440] = {.lex_state = 158, .external_lex_state = 2}, - [1441] = {.lex_state = 158, .external_lex_state = 2}, - [1442] = {.lex_state = 158, .external_lex_state = 2}, - [1443] = {.lex_state = 158, .external_lex_state = 2}, - [1444] = {.lex_state = 158, .external_lex_state = 2}, - [1445] = {.lex_state = 158, .external_lex_state = 2}, - [1446] = {.lex_state = 158, .external_lex_state = 2}, - [1447] = {.lex_state = 158, .external_lex_state = 2}, - [1448] = {.lex_state = 158, .external_lex_state = 2}, - [1449] = {.lex_state = 158, .external_lex_state = 2}, - [1450] = {.lex_state = 158, .external_lex_state = 2}, - [1451] = {.lex_state = 158, .external_lex_state = 2}, - [1452] = {.lex_state = 158, .external_lex_state = 2}, - [1453] = {.lex_state = 158, .external_lex_state = 2}, - [1454] = {.lex_state = 158, .external_lex_state = 2}, - [1455] = {.lex_state = 158, .external_lex_state = 2}, - [1456] = {.lex_state = 158, .external_lex_state = 2}, - [1457] = {.lex_state = 158, .external_lex_state = 2}, - [1458] = {.lex_state = 158, .external_lex_state = 2}, - [1459] = {.lex_state = 158, .external_lex_state = 2}, - [1460] = {.lex_state = 158, .external_lex_state = 2}, - [1461] = {.lex_state = 158, .external_lex_state = 2}, - [1462] = {.lex_state = 158, .external_lex_state = 2}, - [1463] = {.lex_state = 158, .external_lex_state = 2}, - [1464] = {.lex_state = 158, .external_lex_state = 2}, - [1465] = {.lex_state = 158, .external_lex_state = 2}, - [1466] = {.lex_state = 158, .external_lex_state = 2}, - [1467] = {.lex_state = 158, .external_lex_state = 5}, - [1468] = {.lex_state = 158, .external_lex_state = 2}, - [1469] = {.lex_state = 158, .external_lex_state = 2}, - [1470] = {.lex_state = 158, .external_lex_state = 2}, - [1471] = {.lex_state = 158, .external_lex_state = 2}, - [1472] = {.lex_state = 158, .external_lex_state = 2}, - [1473] = {.lex_state = 158, .external_lex_state = 2}, - [1474] = {.lex_state = 158, .external_lex_state = 2}, - [1475] = {.lex_state = 158, .external_lex_state = 2}, - [1476] = {.lex_state = 158, .external_lex_state = 2}, - [1477] = {.lex_state = 158, .external_lex_state = 2}, - [1478] = {.lex_state = 158, .external_lex_state = 2}, - [1479] = {.lex_state = 158, .external_lex_state = 2}, - [1480] = {.lex_state = 158, .external_lex_state = 2}, - [1481] = {.lex_state = 158, .external_lex_state = 2}, - [1482] = {.lex_state = 158, .external_lex_state = 2}, - [1483] = {.lex_state = 158, .external_lex_state = 5}, - [1484] = {.lex_state = 158, .external_lex_state = 2}, - [1485] = {.lex_state = 158, .external_lex_state = 2}, - [1486] = {.lex_state = 158, .external_lex_state = 5}, - [1487] = {.lex_state = 158, .external_lex_state = 2}, - [1488] = {.lex_state = 158, .external_lex_state = 2}, - [1489] = {.lex_state = 158, .external_lex_state = 2}, - [1490] = {.lex_state = 158, .external_lex_state = 2}, - [1491] = {.lex_state = 158, .external_lex_state = 2}, - [1492] = {.lex_state = 158, .external_lex_state = 2}, - [1493] = {.lex_state = 158, .external_lex_state = 2}, - [1494] = {.lex_state = 158, .external_lex_state = 2}, - [1495] = {.lex_state = 158, .external_lex_state = 2}, - [1496] = {.lex_state = 158, .external_lex_state = 2}, - [1497] = {.lex_state = 158, .external_lex_state = 2}, - [1498] = {.lex_state = 158, .external_lex_state = 2}, - [1499] = {.lex_state = 158, .external_lex_state = 2}, - [1500] = {.lex_state = 158, .external_lex_state = 2}, - [1501] = {.lex_state = 158, .external_lex_state = 2}, - [1502] = {.lex_state = 158, .external_lex_state = 2}, - [1503] = {.lex_state = 158, .external_lex_state = 2}, - [1504] = {.lex_state = 158, .external_lex_state = 2}, - [1505] = {.lex_state = 158, .external_lex_state = 2}, - [1506] = {.lex_state = 158, .external_lex_state = 2}, - [1507] = {.lex_state = 158, .external_lex_state = 2}, - [1508] = {.lex_state = 158, .external_lex_state = 2}, - [1509] = {.lex_state = 158, .external_lex_state = 2}, - [1510] = {.lex_state = 158, .external_lex_state = 2}, - [1511] = {.lex_state = 158, .external_lex_state = 2}, - [1512] = {.lex_state = 158, .external_lex_state = 2}, - [1513] = {.lex_state = 158, .external_lex_state = 2}, - [1514] = {.lex_state = 158, .external_lex_state = 2}, - [1515] = {.lex_state = 158, .external_lex_state = 2}, - [1516] = {.lex_state = 158, .external_lex_state = 2}, - [1517] = {.lex_state = 158, .external_lex_state = 2}, - [1518] = {.lex_state = 158, .external_lex_state = 2}, - [1519] = {.lex_state = 158, .external_lex_state = 2}, - [1520] = {.lex_state = 158, .external_lex_state = 2}, - [1521] = {.lex_state = 158, .external_lex_state = 5}, - [1522] = {.lex_state = 158, .external_lex_state = 2}, - [1523] = {.lex_state = 158, .external_lex_state = 2}, - [1524] = {.lex_state = 158, .external_lex_state = 5}, - [1525] = {.lex_state = 158, .external_lex_state = 2}, - [1526] = {.lex_state = 158, .external_lex_state = 2}, - [1527] = {.lex_state = 158, .external_lex_state = 2}, - [1528] = {.lex_state = 158, .external_lex_state = 2}, - [1529] = {.lex_state = 158, .external_lex_state = 5}, - [1530] = {.lex_state = 158, .external_lex_state = 5}, - [1531] = {.lex_state = 158, .external_lex_state = 2}, - [1532] = {.lex_state = 158, .external_lex_state = 2}, - [1533] = {.lex_state = 158, .external_lex_state = 5}, - [1534] = {.lex_state = 158, .external_lex_state = 2}, - [1535] = {.lex_state = 158, .external_lex_state = 2}, - [1536] = {.lex_state = 158, .external_lex_state = 2}, - [1537] = {.lex_state = 158, .external_lex_state = 2}, - [1538] = {.lex_state = 158, .external_lex_state = 2}, - [1539] = {.lex_state = 158, .external_lex_state = 2}, - [1540] = {.lex_state = 158, .external_lex_state = 2}, - [1541] = {.lex_state = 158, .external_lex_state = 2}, - [1542] = {.lex_state = 158, .external_lex_state = 2}, - [1543] = {.lex_state = 158, .external_lex_state = 2}, - [1544] = {.lex_state = 158, .external_lex_state = 2}, - [1545] = {.lex_state = 158, .external_lex_state = 2}, - [1546] = {.lex_state = 158, .external_lex_state = 2}, - [1547] = {.lex_state = 158, .external_lex_state = 2}, - [1548] = {.lex_state = 158, .external_lex_state = 2}, - [1549] = {.lex_state = 158, .external_lex_state = 2}, - [1550] = {.lex_state = 158, .external_lex_state = 2}, - [1551] = {.lex_state = 158, .external_lex_state = 5}, - [1552] = {.lex_state = 158, .external_lex_state = 5}, - [1553] = {.lex_state = 158, .external_lex_state = 2}, - [1554] = {.lex_state = 158, .external_lex_state = 2}, - [1555] = {.lex_state = 25, .external_lex_state = 2}, - [1556] = {.lex_state = 158, .external_lex_state = 2}, - [1557] = {.lex_state = 158, .external_lex_state = 2}, - [1558] = {.lex_state = 158, .external_lex_state = 2}, - [1559] = {.lex_state = 158, .external_lex_state = 2}, - [1560] = {.lex_state = 158, .external_lex_state = 2}, - [1561] = {.lex_state = 158, .external_lex_state = 2}, - [1562] = {.lex_state = 158, .external_lex_state = 2}, - [1563] = {.lex_state = 158, .external_lex_state = 2}, - [1564] = {.lex_state = 158, .external_lex_state = 2}, - [1565] = {.lex_state = 158, .external_lex_state = 2}, - [1566] = {.lex_state = 158, .external_lex_state = 2}, - [1567] = {.lex_state = 158, .external_lex_state = 2}, - [1568] = {.lex_state = 158, .external_lex_state = 2}, - [1569] = {.lex_state = 158, .external_lex_state = 2}, - [1570] = {.lex_state = 158, .external_lex_state = 2}, - [1571] = {.lex_state = 158, .external_lex_state = 2}, - [1572] = {.lex_state = 158, .external_lex_state = 2}, - [1573] = {.lex_state = 158, .external_lex_state = 2}, - [1574] = {.lex_state = 158, .external_lex_state = 2}, - [1575] = {.lex_state = 158, .external_lex_state = 2}, - [1576] = {.lex_state = 158, .external_lex_state = 2}, - [1577] = {.lex_state = 158, .external_lex_state = 2}, - [1578] = {.lex_state = 158, .external_lex_state = 2}, - [1579] = {.lex_state = 158, .external_lex_state = 2}, - [1580] = {.lex_state = 158, .external_lex_state = 2}, - [1581] = {.lex_state = 158, .external_lex_state = 5}, - [1582] = {.lex_state = 158, .external_lex_state = 2}, - [1583] = {.lex_state = 158, .external_lex_state = 2}, - [1584] = {.lex_state = 158, .external_lex_state = 2}, - [1585] = {.lex_state = 158, .external_lex_state = 2}, - [1586] = {.lex_state = 158, .external_lex_state = 2}, - [1587] = {.lex_state = 158, .external_lex_state = 2}, - [1588] = {.lex_state = 158, .external_lex_state = 2}, - [1589] = {.lex_state = 158, .external_lex_state = 2}, - [1590] = {.lex_state = 158, .external_lex_state = 2}, - [1591] = {.lex_state = 158, .external_lex_state = 2}, - [1592] = {.lex_state = 158, .external_lex_state = 2}, - [1593] = {.lex_state = 158, .external_lex_state = 2}, - [1594] = {.lex_state = 158, .external_lex_state = 5}, - [1595] = {.lex_state = 158, .external_lex_state = 2}, - [1596] = {.lex_state = 14, .external_lex_state = 2}, - [1597] = {.lex_state = 158, .external_lex_state = 5}, - [1598] = {.lex_state = 158, .external_lex_state = 2}, - [1599] = {.lex_state = 158, .external_lex_state = 2}, - [1600] = {.lex_state = 158, .external_lex_state = 2}, - [1601] = {.lex_state = 158, .external_lex_state = 2}, - [1602] = {.lex_state = 158, .external_lex_state = 2}, - [1603] = {.lex_state = 158, .external_lex_state = 2}, - [1604] = {.lex_state = 158, .external_lex_state = 2}, - [1605] = {.lex_state = 158, .external_lex_state = 2}, - [1606] = {.lex_state = 158, .external_lex_state = 2}, - [1607] = {.lex_state = 14, .external_lex_state = 2}, - [1608] = {.lex_state = 158, .external_lex_state = 2}, - [1609] = {.lex_state = 158, .external_lex_state = 2}, - [1610] = {.lex_state = 158, .external_lex_state = 2}, - [1611] = {.lex_state = 158, .external_lex_state = 5}, - [1612] = {.lex_state = 158, .external_lex_state = 2}, - [1613] = {.lex_state = 158, .external_lex_state = 2}, - [1614] = {.lex_state = 158, .external_lex_state = 2}, - [1615] = {.lex_state = 158, .external_lex_state = 2}, - [1616] = {.lex_state = 158, .external_lex_state = 2}, - [1617] = {.lex_state = 158, .external_lex_state = 5}, - [1618] = {.lex_state = 158, .external_lex_state = 2}, - [1619] = {.lex_state = 158, .external_lex_state = 2}, - [1620] = {.lex_state = 158, .external_lex_state = 2}, - [1621] = {.lex_state = 158, .external_lex_state = 2}, - [1622] = {.lex_state = 158, .external_lex_state = 2}, - [1623] = {.lex_state = 158, .external_lex_state = 2}, - [1624] = {.lex_state = 158, .external_lex_state = 2}, - [1625] = {.lex_state = 158, .external_lex_state = 2}, - [1626] = {.lex_state = 158, .external_lex_state = 2}, - [1627] = {.lex_state = 158, .external_lex_state = 2}, - [1628] = {.lex_state = 158, .external_lex_state = 2}, - [1629] = {.lex_state = 158, .external_lex_state = 2}, - [1630] = {.lex_state = 158, .external_lex_state = 2}, - [1631] = {.lex_state = 158, .external_lex_state = 2}, - [1632] = {.lex_state = 158, .external_lex_state = 2}, - [1633] = {.lex_state = 158, .external_lex_state = 2}, - [1634] = {.lex_state = 158, .external_lex_state = 2}, - [1635] = {.lex_state = 158, .external_lex_state = 2}, - [1636] = {.lex_state = 158, .external_lex_state = 5}, - [1637] = {.lex_state = 158, .external_lex_state = 2}, - [1638] = {.lex_state = 158, .external_lex_state = 5}, - [1639] = {.lex_state = 158, .external_lex_state = 2}, - [1640] = {.lex_state = 158, .external_lex_state = 2}, - [1641] = {.lex_state = 158, .external_lex_state = 2}, - [1642] = {.lex_state = 158, .external_lex_state = 2}, - [1643] = {.lex_state = 158, .external_lex_state = 2}, - [1644] = {.lex_state = 158, .external_lex_state = 2}, - [1645] = {.lex_state = 158, .external_lex_state = 2}, - [1646] = {.lex_state = 158, .external_lex_state = 2}, - [1647] = {.lex_state = 158, .external_lex_state = 2}, - [1648] = {.lex_state = 158, .external_lex_state = 2}, - [1649] = {.lex_state = 158, .external_lex_state = 2}, - [1650] = {.lex_state = 158, .external_lex_state = 2}, - [1651] = {.lex_state = 158, .external_lex_state = 2}, - [1652] = {.lex_state = 158, .external_lex_state = 2}, - [1653] = {.lex_state = 158, .external_lex_state = 2}, - [1654] = {.lex_state = 158, .external_lex_state = 2}, - [1655] = {.lex_state = 13, .external_lex_state = 9}, - [1656] = {.lex_state = 158, .external_lex_state = 2}, - [1657] = {.lex_state = 158, .external_lex_state = 2}, - [1658] = {.lex_state = 13, .external_lex_state = 9}, - [1659] = {.lex_state = 158, .external_lex_state = 2}, - [1660] = {.lex_state = 158, .external_lex_state = 2}, - [1661] = {.lex_state = 158, .external_lex_state = 2}, - [1662] = {.lex_state = 158, .external_lex_state = 2}, - [1663] = {.lex_state = 158, .external_lex_state = 2}, - [1664] = {.lex_state = 158, .external_lex_state = 2}, - [1665] = {.lex_state = 158, .external_lex_state = 2}, - [1666] = {.lex_state = 158, .external_lex_state = 2}, - [1667] = {.lex_state = 158, .external_lex_state = 2}, - [1668] = {.lex_state = 158, .external_lex_state = 2}, - [1669] = {.lex_state = 47, .external_lex_state = 2}, - [1670] = {.lex_state = 158, .external_lex_state = 2}, - [1671] = {.lex_state = 158, .external_lex_state = 2}, - [1672] = {.lex_state = 158, .external_lex_state = 2}, - [1673] = {.lex_state = 158, .external_lex_state = 2}, - [1674] = {.lex_state = 158, .external_lex_state = 2}, - [1675] = {.lex_state = 158, .external_lex_state = 2}, - [1676] = {.lex_state = 158, .external_lex_state = 2}, - [1677] = {.lex_state = 158, .external_lex_state = 2}, - [1678] = {.lex_state = 158, .external_lex_state = 2}, - [1679] = {.lex_state = 158, .external_lex_state = 2}, - [1680] = {.lex_state = 158, .external_lex_state = 2}, - [1681] = {.lex_state = 158, .external_lex_state = 2}, - [1682] = {.lex_state = 158, .external_lex_state = 2}, - [1683] = {.lex_state = 158, .external_lex_state = 2}, - [1684] = {.lex_state = 158, .external_lex_state = 2}, - [1685] = {.lex_state = 158, .external_lex_state = 2}, - [1686] = {.lex_state = 158, .external_lex_state = 2}, - [1687] = {.lex_state = 158, .external_lex_state = 2}, - [1688] = {.lex_state = 158, .external_lex_state = 2}, - [1689] = {.lex_state = 158, .external_lex_state = 2}, - [1690] = {.lex_state = 158, .external_lex_state = 2}, - [1691] = {.lex_state = 158, .external_lex_state = 2}, - [1692] = {.lex_state = 158, .external_lex_state = 2}, - [1693] = {.lex_state = 158, .external_lex_state = 2}, - [1694] = {.lex_state = 158, .external_lex_state = 2}, - [1695] = {.lex_state = 158, .external_lex_state = 2}, - [1696] = {.lex_state = 158, .external_lex_state = 2}, - [1697] = {.lex_state = 158, .external_lex_state = 2}, - [1698] = {.lex_state = 158, .external_lex_state = 2}, - [1699] = {.lex_state = 158, .external_lex_state = 2}, - [1700] = {.lex_state = 158, .external_lex_state = 2}, - [1701] = {.lex_state = 158, .external_lex_state = 2}, - [1702] = {.lex_state = 158, .external_lex_state = 2}, - [1703] = {.lex_state = 158, .external_lex_state = 2}, - [1704] = {.lex_state = 158, .external_lex_state = 2}, - [1705] = {.lex_state = 158, .external_lex_state = 2}, - [1706] = {.lex_state = 158, .external_lex_state = 2}, - [1707] = {.lex_state = 47, .external_lex_state = 2}, - [1708] = {.lex_state = 158, .external_lex_state = 2}, - [1709] = {.lex_state = 158, .external_lex_state = 2}, - [1710] = {.lex_state = 158, .external_lex_state = 2}, - [1711] = {.lex_state = 158, .external_lex_state = 2}, - [1712] = {.lex_state = 158, .external_lex_state = 2}, - [1713] = {.lex_state = 158, .external_lex_state = 2}, - [1714] = {.lex_state = 158, .external_lex_state = 2}, - [1715] = {.lex_state = 158, .external_lex_state = 2}, - [1716] = {.lex_state = 47, .external_lex_state = 2}, - [1717] = {.lex_state = 158, .external_lex_state = 2}, - [1718] = {.lex_state = 158, .external_lex_state = 2}, - [1719] = {.lex_state = 158, .external_lex_state = 2}, - [1720] = {.lex_state = 158, .external_lex_state = 2}, - [1721] = {.lex_state = 158, .external_lex_state = 2}, - [1722] = {.lex_state = 158, .external_lex_state = 2}, - [1723] = {.lex_state = 158, .external_lex_state = 2}, - [1724] = {.lex_state = 158, .external_lex_state = 2}, - [1725] = {.lex_state = 158, .external_lex_state = 2}, - [1726] = {.lex_state = 158, .external_lex_state = 2}, - [1727] = {.lex_state = 158, .external_lex_state = 2}, - [1728] = {.lex_state = 158, .external_lex_state = 2}, - [1729] = {.lex_state = 158, .external_lex_state = 2}, - [1730] = {.lex_state = 158, .external_lex_state = 2}, - [1731] = {.lex_state = 158, .external_lex_state = 2}, - [1732] = {.lex_state = 158, .external_lex_state = 2}, - [1733] = {.lex_state = 158, .external_lex_state = 2}, - [1734] = {.lex_state = 158, .external_lex_state = 2}, - [1735] = {.lex_state = 158, .external_lex_state = 2}, - [1736] = {.lex_state = 13, .external_lex_state = 9}, - [1737] = {.lex_state = 158, .external_lex_state = 2}, - [1738] = {.lex_state = 158, .external_lex_state = 2}, - [1739] = {.lex_state = 47, .external_lex_state = 2}, - [1740] = {.lex_state = 13, .external_lex_state = 9}, - [1741] = {.lex_state = 158, .external_lex_state = 2}, - [1742] = {.lex_state = 158, .external_lex_state = 2}, - [1743] = {.lex_state = 158, .external_lex_state = 2}, - [1744] = {.lex_state = 158, .external_lex_state = 2}, - [1745] = {.lex_state = 158, .external_lex_state = 2}, - [1746] = {.lex_state = 158, .external_lex_state = 2}, - [1747] = {.lex_state = 158, .external_lex_state = 2}, - [1748] = {.lex_state = 158, .external_lex_state = 2}, - [1749] = {.lex_state = 158, .external_lex_state = 2}, - [1750] = {.lex_state = 158, .external_lex_state = 2}, -}; - -enum { - ts_external_token__automatic_semicolon = 0, - ts_external_token__template_chars = 1, - ts_external_token__ternary_qmark = 2, - ts_external_token_html_comment = 3, - ts_external_token_PIPE_PIPE = 4, - ts_external_token_escape_sequence = 5, - ts_external_token_regex_pattern = 6, - ts_external_token_jsx_text = 7, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token__automatic_semicolon] = sym__automatic_semicolon, - [ts_external_token__template_chars] = sym__template_chars, - [ts_external_token__ternary_qmark] = sym__ternary_qmark, - [ts_external_token_html_comment] = sym_html_comment, - [ts_external_token_PIPE_PIPE] = anon_sym_PIPE_PIPE, - [ts_external_token_escape_sequence] = sym_escape_sequence, - [ts_external_token_regex_pattern] = sym_regex_pattern, - [ts_external_token_jsx_text] = sym_jsx_text, -}; - -static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token__automatic_semicolon] = true, - [ts_external_token__template_chars] = true, - [ts_external_token__ternary_qmark] = true, - [ts_external_token_html_comment] = true, - [ts_external_token_PIPE_PIPE] = true, - [ts_external_token_escape_sequence] = true, - [ts_external_token_jsx_text] = true, - }, - [2] = { - [ts_external_token_html_comment] = true, - }, - [3] = { - [ts_external_token__ternary_qmark] = true, - [ts_external_token_html_comment] = true, - [ts_external_token_PIPE_PIPE] = true, - }, - [4] = { - [ts_external_token__automatic_semicolon] = true, - [ts_external_token__ternary_qmark] = true, - [ts_external_token_html_comment] = true, - [ts_external_token_PIPE_PIPE] = true, - }, - [5] = { - [ts_external_token__automatic_semicolon] = true, - [ts_external_token_html_comment] = true, - }, - [6] = { - [ts_external_token_html_comment] = true, - [ts_external_token_jsx_text] = true, - }, - [7] = { - [ts_external_token__template_chars] = true, - [ts_external_token_html_comment] = true, - [ts_external_token_escape_sequence] = true, - }, - [8] = { - [ts_external_token_html_comment] = true, - [ts_external_token_escape_sequence] = true, - }, - [9] = { - [ts_external_token_html_comment] = true, - [ts_external_token_regex_pattern] = true, - }, + [174] = {.lex_state = 15, .external_lex_state = 2}, + [175] = {.lex_state = 15, .external_lex_state = 2}, + [176] = {.lex_state = 15, .external_lex_state = 2}, + [177] = {.lex_state = 15, .external_lex_state = 2}, + [178] = {.lex_state = 15, .external_lex_state = 2}, + [179] = {.lex_state = 15, .external_lex_state = 2}, + [180] = {.lex_state = 15, .external_lex_state = 2}, + [181] = {.lex_state = 15, .external_lex_state = 2}, + [182] = {.lex_state = 15, .external_lex_state = 2}, + [183] = {.lex_state = 15, .external_lex_state = 2}, + [184] = {.lex_state = 15, .external_lex_state = 2}, + [185] = {.lex_state = 15, .external_lex_state = 2}, + [186] = {.lex_state = 15, .external_lex_state = 2}, + [187] = {.lex_state = 15, .external_lex_state = 2}, + [188] = {.lex_state = 15, .external_lex_state = 2}, + [189] = {.lex_state = 15, .external_lex_state = 2}, + [190] = {.lex_state = 15, .external_lex_state = 2}, + [191] = {.lex_state = 15, .external_lex_state = 2}, + [192] = {.lex_state = 15, .external_lex_state = 2}, + [193] = {.lex_state = 15, .external_lex_state = 2}, + [194] = {.lex_state = 15, .external_lex_state = 2}, + [195] = {.lex_state = 15, .external_lex_state = 2}, + [196] = {.lex_state = 15, .external_lex_state = 2}, + [197] = {.lex_state = 15, .external_lex_state = 2}, + [198] = {.lex_state = 15, .external_lex_state = 2}, + [199] = {.lex_state = 15, .external_lex_state = 2}, + [200] = {.lex_state = 15, .external_lex_state = 2}, + [201] = {.lex_state = 15, .external_lex_state = 2}, + [202] = {.lex_state = 15, .external_lex_state = 2}, + [203] = {.lex_state = 15, .external_lex_state = 2}, + [204] = {.lex_state = 15, .external_lex_state = 2}, + [205] = {.lex_state = 15, .external_lex_state = 2}, + [206] = {.lex_state = 15, .external_lex_state = 2}, + [207] = {.lex_state = 15, .external_lex_state = 2}, + [208] = {.lex_state = 15, .external_lex_state = 2}, + [209] = {.lex_state = 15, .external_lex_state = 2}, + [210] = {.lex_state = 15, .external_lex_state = 2}, + [211] = {.lex_state = 15, .external_lex_state = 2}, + [212] = {.lex_state = 15, .external_lex_state = 2}, + [213] = {.lex_state = 15, .external_lex_state = 2}, + [214] = {.lex_state = 15, .external_lex_state = 2}, + [215] = {.lex_state = 15, .external_lex_state = 2}, + [216] = {.lex_state = 15, .external_lex_state = 2}, + [217] = {.lex_state = 15, .external_lex_state = 2}, + [218] = {.lex_state = 15, .external_lex_state = 2}, + [219] = {.lex_state = 15, .external_lex_state = 2}, + [220] = {.lex_state = 15, .external_lex_state = 2}, + [221] = {.lex_state = 15, .external_lex_state = 2}, + [222] = {.lex_state = 15, .external_lex_state = 2}, + [223] = {.lex_state = 15, .external_lex_state = 2}, + [224] = {.lex_state = 15, .external_lex_state = 2}, + [225] = {.lex_state = 15, .external_lex_state = 2}, + [226] = {.lex_state = 15, .external_lex_state = 2}, + [227] = {.lex_state = 15, .external_lex_state = 2}, + [228] = {.lex_state = 15, .external_lex_state = 2}, + [229] = {.lex_state = 15, .external_lex_state = 2}, + [230] = {.lex_state = 15, .external_lex_state = 2}, + [231] = {.lex_state = 15, .external_lex_state = 2}, + [232] = {.lex_state = 15, .external_lex_state = 2}, + [233] = {.lex_state = 15, .external_lex_state = 2}, + [234] = {.lex_state = 15, .external_lex_state = 2}, + [235] = {.lex_state = 15, .external_lex_state = 2}, + [236] = {.lex_state = 15, .external_lex_state = 2}, + [237] = {.lex_state = 15, .external_lex_state = 2}, + [238] = {.lex_state = 15, .external_lex_state = 2}, + [239] = {.lex_state = 15, .external_lex_state = 2}, + [240] = {.lex_state = 15, .external_lex_state = 2}, + [241] = {.lex_state = 15, .external_lex_state = 2}, + [242] = {.lex_state = 15, .external_lex_state = 2}, + [243] = {.lex_state = 15, .external_lex_state = 2}, + [244] = {.lex_state = 15, .external_lex_state = 2}, + [245] = {.lex_state = 15, .external_lex_state = 2}, + [246] = {.lex_state = 15, .external_lex_state = 2}, + [247] = {.lex_state = 15, .external_lex_state = 2}, + [248] = {.lex_state = 15, .external_lex_state = 2}, + [249] = {.lex_state = 15, .external_lex_state = 2}, + [250] = {.lex_state = 15, .external_lex_state = 2}, + [251] = {.lex_state = 15, .external_lex_state = 2}, + [252] = {.lex_state = 15, .external_lex_state = 2}, + [253] = {.lex_state = 15, .external_lex_state = 2}, + [254] = {.lex_state = 15, .external_lex_state = 2}, + [255] = {.lex_state = 15, .external_lex_state = 2}, + [256] = {.lex_state = 15, .external_lex_state = 2}, + [257] = {.lex_state = 15, .external_lex_state = 2}, + [258] = {.lex_state = 15, .external_lex_state = 2}, + [259] = {.lex_state = 15, .external_lex_state = 2}, + [260] = {.lex_state = 15, .external_lex_state = 2}, + [261] = {.lex_state = 15, .external_lex_state = 2}, + [262] = {.lex_state = 15, .external_lex_state = 2}, + [263] = {.lex_state = 15, .external_lex_state = 2}, + [264] = {.lex_state = 15, .external_lex_state = 2}, + [265] = {.lex_state = 15, .external_lex_state = 2}, + [266] = {.lex_state = 15, .external_lex_state = 2}, + [267] = {.lex_state = 15, .external_lex_state = 2}, + [268] = {.lex_state = 15, .external_lex_state = 2}, + [269] = {.lex_state = 15, .external_lex_state = 2}, + [270] = {.lex_state = 15, .external_lex_state = 2}, + [271] = {.lex_state = 15, .external_lex_state = 2}, + [272] = {.lex_state = 15, .external_lex_state = 2}, + [273] = {.lex_state = 15, .external_lex_state = 2}, + [274] = {.lex_state = 15, .external_lex_state = 2}, + [275] = {.lex_state = 15, .external_lex_state = 2}, + [276] = {.lex_state = 15, .external_lex_state = 2}, + [277] = {.lex_state = 15, .external_lex_state = 2}, + [278] = {.lex_state = 15, .external_lex_state = 2}, + [279] = {.lex_state = 15, .external_lex_state = 2}, + [280] = {.lex_state = 15, .external_lex_state = 2}, + [281] = {.lex_state = 15, .external_lex_state = 2}, + [282] = {.lex_state = 15, .external_lex_state = 2}, + [283] = {.lex_state = 15, .external_lex_state = 2}, + [284] = {.lex_state = 15, .external_lex_state = 2}, + [285] = {.lex_state = 15, .external_lex_state = 2}, + [286] = {.lex_state = 15, .external_lex_state = 2}, + [287] = {.lex_state = 15, .external_lex_state = 2}, + [288] = {.lex_state = 15, .external_lex_state = 2}, + [289] = {.lex_state = 15, .external_lex_state = 2}, + [290] = {.lex_state = 15, .external_lex_state = 2}, + [291] = {.lex_state = 15, .external_lex_state = 2}, + [292] = {.lex_state = 15, .external_lex_state = 2}, + [293] = {.lex_state = 15, .external_lex_state = 2}, + [294] = {.lex_state = 15, .external_lex_state = 2}, + [295] = {.lex_state = 15, .external_lex_state = 2}, + [296] = {.lex_state = 15, .external_lex_state = 2}, + [297] = {.lex_state = 15, .external_lex_state = 2}, + [298] = {.lex_state = 17, .external_lex_state = 4}, + [299] = {.lex_state = 17, .external_lex_state = 4}, + [300] = {.lex_state = 17, .external_lex_state = 4}, + [301] = {.lex_state = 17, .external_lex_state = 4}, + [302] = {.lex_state = 17, .external_lex_state = 4}, + [303] = {.lex_state = 17, .external_lex_state = 4}, + [304] = {.lex_state = 17, .external_lex_state = 4}, + [305] = {.lex_state = 17, .external_lex_state = 4}, + [306] = {.lex_state = 17, .external_lex_state = 4}, + [307] = {.lex_state = 17, .external_lex_state = 4}, + [308] = {.lex_state = 17, .external_lex_state = 4}, + [309] = {.lex_state = 17, .external_lex_state = 3}, + [310] = {.lex_state = 17, .external_lex_state = 3}, + [311] = {.lex_state = 138, .external_lex_state = 2}, + [312] = {.lex_state = 138, .external_lex_state = 5}, + [313] = {.lex_state = 138, .external_lex_state = 5}, + [314] = {.lex_state = 17, .external_lex_state = 4}, + [315] = {.lex_state = 17, .external_lex_state = 4}, + [316] = {.lex_state = 138, .external_lex_state = 2}, + [317] = {.lex_state = 17, .external_lex_state = 4}, + [318] = {.lex_state = 17, .external_lex_state = 4}, + [319] = {.lex_state = 17, .external_lex_state = 4}, + [320] = {.lex_state = 17, .external_lex_state = 3}, + [321] = {.lex_state = 17, .external_lex_state = 3}, + [322] = {.lex_state = 17, .external_lex_state = 4}, + [323] = {.lex_state = 138, .external_lex_state = 2}, + [324] = {.lex_state = 17, .external_lex_state = 4}, + [325] = {.lex_state = 17, .external_lex_state = 4}, + [326] = {.lex_state = 17, .external_lex_state = 3}, + [327] = {.lex_state = 17, .external_lex_state = 4}, + [328] = {.lex_state = 17, .external_lex_state = 3}, + [329] = {.lex_state = 138, .external_lex_state = 2}, + [330] = {.lex_state = 17, .external_lex_state = 3}, + [331] = {.lex_state = 17, .external_lex_state = 4}, + [332] = {.lex_state = 138, .external_lex_state = 2}, + [333] = {.lex_state = 138, .external_lex_state = 5}, + [334] = {.lex_state = 17, .external_lex_state = 3}, + [335] = {.lex_state = 17, .external_lex_state = 3}, + [336] = {.lex_state = 138, .external_lex_state = 5}, + [337] = {.lex_state = 138, .external_lex_state = 5}, + [338] = {.lex_state = 138, .external_lex_state = 5}, + [339] = {.lex_state = 138, .external_lex_state = 5}, + [340] = {.lex_state = 138, .external_lex_state = 5}, + [341] = {.lex_state = 138, .external_lex_state = 5}, + [342] = {.lex_state = 138, .external_lex_state = 2}, + [343] = {.lex_state = 138, .external_lex_state = 5}, + [344] = {.lex_state = 138, .external_lex_state = 5}, + [345] = {.lex_state = 138, .external_lex_state = 5}, + [346] = {.lex_state = 138, .external_lex_state = 2}, + [347] = {.lex_state = 138, .external_lex_state = 5}, + [348] = {.lex_state = 17, .external_lex_state = 4}, + [349] = {.lex_state = 138, .external_lex_state = 5}, + [350] = {.lex_state = 138, .external_lex_state = 5}, + [351] = {.lex_state = 138, .external_lex_state = 5}, + [352] = {.lex_state = 138, .external_lex_state = 5}, + [353] = {.lex_state = 138, .external_lex_state = 5}, + [354] = {.lex_state = 138, .external_lex_state = 2}, + [355] = {.lex_state = 138, .external_lex_state = 2}, + [356] = {.lex_state = 138, .external_lex_state = 2}, + [357] = {.lex_state = 138, .external_lex_state = 2}, + [358] = {.lex_state = 138, .external_lex_state = 2}, + [359] = {.lex_state = 138, .external_lex_state = 2}, + [360] = {.lex_state = 138, .external_lex_state = 2}, + [361] = {.lex_state = 138, .external_lex_state = 2}, + [362] = {.lex_state = 17, .external_lex_state = 4}, + [363] = {.lex_state = 138, .external_lex_state = 2}, + [364] = {.lex_state = 138, .external_lex_state = 2}, + [365] = {.lex_state = 138, .external_lex_state = 2}, + [366] = {.lex_state = 138, .external_lex_state = 2}, + [367] = {.lex_state = 138, .external_lex_state = 2}, + [368] = {.lex_state = 138, .external_lex_state = 2}, + [369] = {.lex_state = 138, .external_lex_state = 2}, + [370] = {.lex_state = 138, .external_lex_state = 2}, + [371] = {.lex_state = 138, .external_lex_state = 2}, + [372] = {.lex_state = 138, .external_lex_state = 2}, + [373] = {.lex_state = 138, .external_lex_state = 2}, + [374] = {.lex_state = 138, .external_lex_state = 2}, + [375] = {.lex_state = 138, .external_lex_state = 2}, + [376] = {.lex_state = 138, .external_lex_state = 2}, + [377] = {.lex_state = 138, .external_lex_state = 2}, + [378] = {.lex_state = 138, .external_lex_state = 2}, + [379] = {.lex_state = 138, .external_lex_state = 2}, + [380] = {.lex_state = 138, .external_lex_state = 2}, + [381] = {.lex_state = 17, .external_lex_state = 3}, + [382] = {.lex_state = 138, .external_lex_state = 2}, + [383] = {.lex_state = 138, .external_lex_state = 2}, + [384] = {.lex_state = 138, .external_lex_state = 2}, + [385] = {.lex_state = 138, .external_lex_state = 2}, + [386] = {.lex_state = 138, .external_lex_state = 2}, + [387] = {.lex_state = 138, .external_lex_state = 2}, + [388] = {.lex_state = 138, .external_lex_state = 2}, + [389] = {.lex_state = 17, .external_lex_state = 4}, + [390] = {.lex_state = 138, .external_lex_state = 2}, + [391] = {.lex_state = 138, .external_lex_state = 2}, + [392] = {.lex_state = 138, .external_lex_state = 2}, + [393] = {.lex_state = 138, .external_lex_state = 2}, + [394] = {.lex_state = 138, .external_lex_state = 2}, + [395] = {.lex_state = 138, .external_lex_state = 2}, + [396] = {.lex_state = 138, .external_lex_state = 2}, + [397] = {.lex_state = 138, .external_lex_state = 2}, + [398] = {.lex_state = 138, .external_lex_state = 2}, + [399] = {.lex_state = 138, .external_lex_state = 2}, + [400] = {.lex_state = 138, .external_lex_state = 2}, + [401] = {.lex_state = 138, .external_lex_state = 2}, + [402] = {.lex_state = 138, .external_lex_state = 2}, + [403] = {.lex_state = 138, .external_lex_state = 2}, + [404] = {.lex_state = 138, .external_lex_state = 2}, + [405] = {.lex_state = 138, .external_lex_state = 2}, + [406] = {.lex_state = 138, .external_lex_state = 2}, + [407] = {.lex_state = 138, .external_lex_state = 2}, + [408] = {.lex_state = 138, .external_lex_state = 2}, + [409] = {.lex_state = 138, .external_lex_state = 2}, + [410] = {.lex_state = 138, .external_lex_state = 2}, + [411] = {.lex_state = 138, .external_lex_state = 2}, + [412] = {.lex_state = 138, .external_lex_state = 2}, + [413] = {.lex_state = 138, .external_lex_state = 2}, + [414] = {.lex_state = 138, .external_lex_state = 2}, + [415] = {.lex_state = 138, .external_lex_state = 2}, + [416] = {.lex_state = 138, .external_lex_state = 2}, + [417] = {.lex_state = 138, .external_lex_state = 2}, + [418] = {.lex_state = 138, .external_lex_state = 2}, + [419] = {.lex_state = 138, .external_lex_state = 2}, + [420] = {.lex_state = 17, .external_lex_state = 3}, + [421] = {.lex_state = 138, .external_lex_state = 2}, + [422] = {.lex_state = 17, .external_lex_state = 3}, + [423] = {.lex_state = 138, .external_lex_state = 2}, + [424] = {.lex_state = 138, .external_lex_state = 2}, + [425] = {.lex_state = 17, .external_lex_state = 3}, + [426] = {.lex_state = 17, .external_lex_state = 4}, + [427] = {.lex_state = 17, .external_lex_state = 3}, + [428] = {.lex_state = 17, .external_lex_state = 3}, + [429] = {.lex_state = 17, .external_lex_state = 3}, + [430] = {.lex_state = 17, .external_lex_state = 3}, + [431] = {.lex_state = 17, .external_lex_state = 4}, + [432] = {.lex_state = 17, .external_lex_state = 3}, + [433] = {.lex_state = 17, .external_lex_state = 3}, + [434] = {.lex_state = 17, .external_lex_state = 4}, + [435] = {.lex_state = 17, .external_lex_state = 3}, + [436] = {.lex_state = 17, .external_lex_state = 3}, + [437] = {.lex_state = 17, .external_lex_state = 4}, + [438] = {.lex_state = 17, .external_lex_state = 3}, + [439] = {.lex_state = 17, .external_lex_state = 3}, + [440] = {.lex_state = 17, .external_lex_state = 3}, + [441] = {.lex_state = 17, .external_lex_state = 3}, + [442] = {.lex_state = 17, .external_lex_state = 3}, + [443] = {.lex_state = 138, .external_lex_state = 2}, + [444] = {.lex_state = 138, .external_lex_state = 2}, + [445] = {.lex_state = 138, .external_lex_state = 2}, + [446] = {.lex_state = 138, .external_lex_state = 2}, + [447] = {.lex_state = 138, .external_lex_state = 2}, + [448] = {.lex_state = 17, .external_lex_state = 3}, + [449] = {.lex_state = 138, .external_lex_state = 2}, + [450] = {.lex_state = 138, .external_lex_state = 2}, + [451] = {.lex_state = 138, .external_lex_state = 2}, + [452] = {.lex_state = 138, .external_lex_state = 2}, + [453] = {.lex_state = 17, .external_lex_state = 3}, + [454] = {.lex_state = 17, .external_lex_state = 4}, + [455] = {.lex_state = 17, .external_lex_state = 4}, + [456] = {.lex_state = 17, .external_lex_state = 4}, + [457] = {.lex_state = 17, .external_lex_state = 4}, + [458] = {.lex_state = 17, .external_lex_state = 4}, + [459] = {.lex_state = 17, .external_lex_state = 4}, + [460] = {.lex_state = 17, .external_lex_state = 4}, + [461] = {.lex_state = 17, .external_lex_state = 4}, + [462] = {.lex_state = 17, .external_lex_state = 4}, + [463] = {.lex_state = 17, .external_lex_state = 4}, + [464] = {.lex_state = 17, .external_lex_state = 4}, + [465] = {.lex_state = 17, .external_lex_state = 4}, + [466] = {.lex_state = 17, .external_lex_state = 4}, + [467] = {.lex_state = 17, .external_lex_state = 4}, + [468] = {.lex_state = 17, .external_lex_state = 3}, + [469] = {.lex_state = 17, .external_lex_state = 4}, + [470] = {.lex_state = 17, .external_lex_state = 4}, + [471] = {.lex_state = 17, .external_lex_state = 4}, + [472] = {.lex_state = 17, .external_lex_state = 4}, + [473] = {.lex_state = 17, .external_lex_state = 4}, + [474] = {.lex_state = 17, .external_lex_state = 3}, + [475] = {.lex_state = 17, .external_lex_state = 4}, + [476] = {.lex_state = 17, .external_lex_state = 3}, + [477] = {.lex_state = 17, .external_lex_state = 3}, + [478] = {.lex_state = 17, .external_lex_state = 3}, + [479] = {.lex_state = 17, .external_lex_state = 3}, + [480] = {.lex_state = 17, .external_lex_state = 3}, + [481] = {.lex_state = 17, .external_lex_state = 3}, + [482] = {.lex_state = 17, .external_lex_state = 3}, + [483] = {.lex_state = 17, .external_lex_state = 3}, + [484] = {.lex_state = 17, .external_lex_state = 4}, + [485] = {.lex_state = 17, .external_lex_state = 4}, + [486] = {.lex_state = 17, .external_lex_state = 3}, + [487] = {.lex_state = 17, .external_lex_state = 3}, + [488] = {.lex_state = 17, .external_lex_state = 3}, + [489] = {.lex_state = 17, .external_lex_state = 3}, + [490] = {.lex_state = 17, .external_lex_state = 3}, + [491] = {.lex_state = 17, .external_lex_state = 3}, + [492] = {.lex_state = 17, .external_lex_state = 3}, + [493] = {.lex_state = 17, .external_lex_state = 3}, + [494] = {.lex_state = 17, .external_lex_state = 3}, + [495] = {.lex_state = 17, .external_lex_state = 3}, + [496] = {.lex_state = 17, .external_lex_state = 3}, + [497] = {.lex_state = 17, .external_lex_state = 3}, + [498] = {.lex_state = 17, .external_lex_state = 3}, + [499] = {.lex_state = 17, .external_lex_state = 3}, + [500] = {.lex_state = 17, .external_lex_state = 3}, + [501] = {.lex_state = 17, .external_lex_state = 3}, + [502] = {.lex_state = 17, .external_lex_state = 3}, + [503] = {.lex_state = 13, .external_lex_state = 3}, + [504] = {.lex_state = 13, .external_lex_state = 3}, + [505] = {.lex_state = 13, .external_lex_state = 4}, + [506] = {.lex_state = 13, .external_lex_state = 3}, + [507] = {.lex_state = 13, .external_lex_state = 3}, + [508] = {.lex_state = 13, .external_lex_state = 3}, + [509] = {.lex_state = 13, .external_lex_state = 4}, + [510] = {.lex_state = 13, .external_lex_state = 3}, + [511] = {.lex_state = 13, .external_lex_state = 4}, + [512] = {.lex_state = 13, .external_lex_state = 3}, + [513] = {.lex_state = 13, .external_lex_state = 3}, + [514] = {.lex_state = 13, .external_lex_state = 3}, + [515] = {.lex_state = 13, .external_lex_state = 3}, + [516] = {.lex_state = 13, .external_lex_state = 3}, + [517] = {.lex_state = 13, .external_lex_state = 3}, + [518] = {.lex_state = 13, .external_lex_state = 3}, + [519] = {.lex_state = 13, .external_lex_state = 3}, + [520] = {.lex_state = 18, .external_lex_state = 3}, + [521] = {.lex_state = 13, .external_lex_state = 3}, + [522] = {.lex_state = 13, .external_lex_state = 3}, + [523] = {.lex_state = 13, .external_lex_state = 3}, + [524] = {.lex_state = 13, .external_lex_state = 3}, + [525] = {.lex_state = 13, .external_lex_state = 3}, + [526] = {.lex_state = 13, .external_lex_state = 3}, + [527] = {.lex_state = 13, .external_lex_state = 3}, + [528] = {.lex_state = 13, .external_lex_state = 3}, + [529] = {.lex_state = 13, .external_lex_state = 3}, + [530] = {.lex_state = 13, .external_lex_state = 3}, + [531] = {.lex_state = 13, .external_lex_state = 3}, + [532] = {.lex_state = 13, .external_lex_state = 3}, + [533] = {.lex_state = 13, .external_lex_state = 3}, + [534] = {.lex_state = 13, .external_lex_state = 3}, + [535] = {.lex_state = 15, .external_lex_state = 2}, + [536] = {.lex_state = 13, .external_lex_state = 3}, + [537] = {.lex_state = 13, .external_lex_state = 3}, + [538] = {.lex_state = 13, .external_lex_state = 3}, + [539] = {.lex_state = 13, .external_lex_state = 3}, + [540] = {.lex_state = 13, .external_lex_state = 3}, + [541] = {.lex_state = 13, .external_lex_state = 3}, + [542] = {.lex_state = 13, .external_lex_state = 3}, + [543] = {.lex_state = 13, .external_lex_state = 3}, + [544] = {.lex_state = 13, .external_lex_state = 3}, + [545] = {.lex_state = 13, .external_lex_state = 3}, + [546] = {.lex_state = 13, .external_lex_state = 3}, + [547] = {.lex_state = 13, .external_lex_state = 3}, + [548] = {.lex_state = 13, .external_lex_state = 3}, + [549] = {.lex_state = 13, .external_lex_state = 3}, + [550] = {.lex_state = 13, .external_lex_state = 3}, + [551] = {.lex_state = 13, .external_lex_state = 3}, + [552] = {.lex_state = 13, .external_lex_state = 3}, + [553] = {.lex_state = 13, .external_lex_state = 3}, + [554] = {.lex_state = 13, .external_lex_state = 3}, + [555] = {.lex_state = 13, .external_lex_state = 3}, + [556] = {.lex_state = 13, .external_lex_state = 3}, + [557] = {.lex_state = 13, .external_lex_state = 3}, + [558] = {.lex_state = 13, .external_lex_state = 3}, + [559] = {.lex_state = 13, .external_lex_state = 3}, + [560] = {.lex_state = 13, .external_lex_state = 3}, + [561] = {.lex_state = 13, .external_lex_state = 3}, + [562] = {.lex_state = 13, .external_lex_state = 3}, + [563] = {.lex_state = 13, .external_lex_state = 3}, + [564] = {.lex_state = 13, .external_lex_state = 3}, + [565] = {.lex_state = 13, .external_lex_state = 3}, + [566] = {.lex_state = 13, .external_lex_state = 3}, + [567] = {.lex_state = 13, .external_lex_state = 3}, + [568] = {.lex_state = 13, .external_lex_state = 3}, + [569] = {.lex_state = 13, .external_lex_state = 3}, + [570] = {.lex_state = 13, .external_lex_state = 3}, + [571] = {.lex_state = 13, .external_lex_state = 3}, + [572] = {.lex_state = 13, .external_lex_state = 3}, + [573] = {.lex_state = 13, .external_lex_state = 3}, + [574] = {.lex_state = 13, .external_lex_state = 3}, + [575] = {.lex_state = 13, .external_lex_state = 3}, + [576] = {.lex_state = 13, .external_lex_state = 3}, + [577] = {.lex_state = 13, .external_lex_state = 3}, + [578] = {.lex_state = 13, .external_lex_state = 3}, + [579] = {.lex_state = 15, .external_lex_state = 2}, + [580] = {.lex_state = 15, .external_lex_state = 2}, + [581] = {.lex_state = 13, .external_lex_state = 3}, + [582] = {.lex_state = 13, .external_lex_state = 3}, + [583] = {.lex_state = 13, .external_lex_state = 3}, + [584] = {.lex_state = 13, .external_lex_state = 3}, + [585] = {.lex_state = 13, .external_lex_state = 4}, + [586] = {.lex_state = 13, .external_lex_state = 3}, + [587] = {.lex_state = 13, .external_lex_state = 3}, + [588] = {.lex_state = 13, .external_lex_state = 3}, + [589] = {.lex_state = 13, .external_lex_state = 3}, + [590] = {.lex_state = 13, .external_lex_state = 3}, + [591] = {.lex_state = 13, .external_lex_state = 3}, + [592] = {.lex_state = 13, .external_lex_state = 3}, + [593] = {.lex_state = 13, .external_lex_state = 3}, + [594] = {.lex_state = 13, .external_lex_state = 3}, + [595] = {.lex_state = 13, .external_lex_state = 3}, + [596] = {.lex_state = 13, .external_lex_state = 3}, + [597] = {.lex_state = 13, .external_lex_state = 3}, + [598] = {.lex_state = 13, .external_lex_state = 3}, + [599] = {.lex_state = 13, .external_lex_state = 3}, + [600] = {.lex_state = 13, .external_lex_state = 4}, + [601] = {.lex_state = 13, .external_lex_state = 3}, + [602] = {.lex_state = 15, .external_lex_state = 2}, + [603] = {.lex_state = 15, .external_lex_state = 2}, + [604] = {.lex_state = 13, .external_lex_state = 3}, + [605] = {.lex_state = 13, .external_lex_state = 3}, + [606] = {.lex_state = 13, .external_lex_state = 3}, + [607] = {.lex_state = 13, .external_lex_state = 3}, + [608] = {.lex_state = 13, .external_lex_state = 3}, + [609] = {.lex_state = 13, .external_lex_state = 4}, + [610] = {.lex_state = 13, .external_lex_state = 3}, + [611] = {.lex_state = 13, .external_lex_state = 4}, + [612] = {.lex_state = 13, .external_lex_state = 4}, + [613] = {.lex_state = 13, .external_lex_state = 4}, + [614] = {.lex_state = 13, .external_lex_state = 4}, + [615] = {.lex_state = 13, .external_lex_state = 4}, + [616] = {.lex_state = 13, .external_lex_state = 4}, + [617] = {.lex_state = 13, .external_lex_state = 4}, + [618] = {.lex_state = 13, .external_lex_state = 4}, + [619] = {.lex_state = 13, .external_lex_state = 4}, + [620] = {.lex_state = 13, .external_lex_state = 4}, + [621] = {.lex_state = 13, .external_lex_state = 4}, + [622] = {.lex_state = 13, .external_lex_state = 4}, + [623] = {.lex_state = 13, .external_lex_state = 4}, + [624] = {.lex_state = 13, .external_lex_state = 4}, + [625] = {.lex_state = 13, .external_lex_state = 4}, + [626] = {.lex_state = 13, .external_lex_state = 4}, + [627] = {.lex_state = 13, .external_lex_state = 4}, + [628] = {.lex_state = 18, .external_lex_state = 4}, + [629] = {.lex_state = 13, .external_lex_state = 4}, + [630] = {.lex_state = 13, .external_lex_state = 4}, + [631] = {.lex_state = 13, .external_lex_state = 4}, + [632] = {.lex_state = 13, .external_lex_state = 4}, + [633] = {.lex_state = 13, .external_lex_state = 4}, + [634] = {.lex_state = 13, .external_lex_state = 4}, + [635] = {.lex_state = 13, .external_lex_state = 4}, + [636] = {.lex_state = 13, .external_lex_state = 4}, + [637] = {.lex_state = 13, .external_lex_state = 4}, + [638] = {.lex_state = 13, .external_lex_state = 4}, + [639] = {.lex_state = 13, .external_lex_state = 4}, + [640] = {.lex_state = 13, .external_lex_state = 4}, + [641] = {.lex_state = 13, .external_lex_state = 4}, + [642] = {.lex_state = 13, .external_lex_state = 4}, + [643] = {.lex_state = 13, .external_lex_state = 3}, + [644] = {.lex_state = 13, .external_lex_state = 4}, + [645] = {.lex_state = 13, .external_lex_state = 4}, + [646] = {.lex_state = 13, .external_lex_state = 4}, + [647] = {.lex_state = 13, .external_lex_state = 4}, + [648] = {.lex_state = 13, .external_lex_state = 3}, + [649] = {.lex_state = 13, .external_lex_state = 4}, + [650] = {.lex_state = 13, .external_lex_state = 3}, + [651] = {.lex_state = 13, .external_lex_state = 4}, + [652] = {.lex_state = 13, .external_lex_state = 4}, + [653] = {.lex_state = 13, .external_lex_state = 4}, + [654] = {.lex_state = 13, .external_lex_state = 4}, + [655] = {.lex_state = 13, .external_lex_state = 4}, + [656] = {.lex_state = 13, .external_lex_state = 4}, + [657] = {.lex_state = 13, .external_lex_state = 3}, + [658] = {.lex_state = 13, .external_lex_state = 4}, + [659] = {.lex_state = 13, .external_lex_state = 4}, + [660] = {.lex_state = 13, .external_lex_state = 4}, + [661] = {.lex_state = 13, .external_lex_state = 4}, + [662] = {.lex_state = 13, .external_lex_state = 4}, + [663] = {.lex_state = 13, .external_lex_state = 4}, + [664] = {.lex_state = 13, .external_lex_state = 4}, + [665] = {.lex_state = 13, .external_lex_state = 3}, + [666] = {.lex_state = 13, .external_lex_state = 4}, + [667] = {.lex_state = 13, .external_lex_state = 4}, + [668] = {.lex_state = 13, .external_lex_state = 4}, + [669] = {.lex_state = 13, .external_lex_state = 4}, + [670] = {.lex_state = 13, .external_lex_state = 4}, + [671] = {.lex_state = 13, .external_lex_state = 4}, + [672] = {.lex_state = 13, .external_lex_state = 4}, + [673] = {.lex_state = 13, .external_lex_state = 4}, + [674] = {.lex_state = 13, .external_lex_state = 4}, + [675] = {.lex_state = 13, .external_lex_state = 4}, + [676] = {.lex_state = 13, .external_lex_state = 4}, + [677] = {.lex_state = 13, .external_lex_state = 4}, + [678] = {.lex_state = 13, .external_lex_state = 4}, + [679] = {.lex_state = 13, .external_lex_state = 4}, + [680] = {.lex_state = 13, .external_lex_state = 4}, + [681] = {.lex_state = 13, .external_lex_state = 4}, + [682] = {.lex_state = 13, .external_lex_state = 4}, + [683] = {.lex_state = 13, .external_lex_state = 4}, + [684] = {.lex_state = 13, .external_lex_state = 4}, + [685] = {.lex_state = 13, .external_lex_state = 4}, + [686] = {.lex_state = 13, .external_lex_state = 4}, + [687] = {.lex_state = 13, .external_lex_state = 4}, + [688] = {.lex_state = 13, .external_lex_state = 4}, + [689] = {.lex_state = 13, .external_lex_state = 4}, + [690] = {.lex_state = 13, .external_lex_state = 4}, + [691] = {.lex_state = 13, .external_lex_state = 4}, + [692] = {.lex_state = 13, .external_lex_state = 4}, + [693] = {.lex_state = 13, .external_lex_state = 4}, + [694] = {.lex_state = 13, .external_lex_state = 4}, + [695] = {.lex_state = 13, .external_lex_state = 4}, + [696] = {.lex_state = 13, .external_lex_state = 4}, + [697] = {.lex_state = 13, .external_lex_state = 4}, + [698] = {.lex_state = 13, .external_lex_state = 4}, + [699] = {.lex_state = 13, .external_lex_state = 4}, + [700] = {.lex_state = 13, .external_lex_state = 4}, + [701] = {.lex_state = 13, .external_lex_state = 4}, + [702] = {.lex_state = 13, .external_lex_state = 4}, + [703] = {.lex_state = 13, .external_lex_state = 4}, + [704] = {.lex_state = 13, .external_lex_state = 4}, + [705] = {.lex_state = 13, .external_lex_state = 4}, + [706] = {.lex_state = 13, .external_lex_state = 4}, + [707] = {.lex_state = 13, .external_lex_state = 4}, + [708] = {.lex_state = 13, .external_lex_state = 4}, + [709] = {.lex_state = 13, .external_lex_state = 4}, + [710] = {.lex_state = 13, .external_lex_state = 4}, + [711] = {.lex_state = 13, .external_lex_state = 4}, + [712] = {.lex_state = 13, .external_lex_state = 4}, + [713] = {.lex_state = 13, .external_lex_state = 4}, + [714] = {.lex_state = 13, .external_lex_state = 4}, + [715] = {.lex_state = 13, .external_lex_state = 4}, + [716] = {.lex_state = 13, .external_lex_state = 4}, + [717] = {.lex_state = 13, .external_lex_state = 4}, + [718] = {.lex_state = 13, .external_lex_state = 4}, + [719] = {.lex_state = 13, .external_lex_state = 3}, + [720] = {.lex_state = 18, .external_lex_state = 4}, + [721] = {.lex_state = 13, .external_lex_state = 4}, + [722] = {.lex_state = 13, .external_lex_state = 4}, + [723] = {.lex_state = 13, .external_lex_state = 4}, + [724] = {.lex_state = 13, .external_lex_state = 4}, + [725] = {.lex_state = 13, .external_lex_state = 4}, + [726] = {.lex_state = 13, .external_lex_state = 4}, + [727] = {.lex_state = 13, .external_lex_state = 4}, + [728] = {.lex_state = 13, .external_lex_state = 4}, + [729] = {.lex_state = 13, .external_lex_state = 4}, + [730] = {.lex_state = 13, .external_lex_state = 4}, + [731] = {.lex_state = 13, .external_lex_state = 4}, + [732] = {.lex_state = 13, .external_lex_state = 4}, + [733] = {.lex_state = 13, .external_lex_state = 4}, + [734] = {.lex_state = 13, .external_lex_state = 4}, + [735] = {.lex_state = 13, .external_lex_state = 4}, + [736] = {.lex_state = 13, .external_lex_state = 4}, + [737] = {.lex_state = 13, .external_lex_state = 4}, + [738] = {.lex_state = 13, .external_lex_state = 4}, + [739] = {.lex_state = 13, .external_lex_state = 3}, + [740] = {.lex_state = 13, .external_lex_state = 3}, + [741] = {.lex_state = 13, .external_lex_state = 3}, + [742] = {.lex_state = 13, .external_lex_state = 3}, + [743] = {.lex_state = 13, .external_lex_state = 3}, + [744] = {.lex_state = 13, .external_lex_state = 3}, + [745] = {.lex_state = 13, .external_lex_state = 4}, + [746] = {.lex_state = 13, .external_lex_state = 4}, + [747] = {.lex_state = 13, .external_lex_state = 4}, + [748] = {.lex_state = 13, .external_lex_state = 4}, + [749] = {.lex_state = 13, .external_lex_state = 4}, + [750] = {.lex_state = 13, .external_lex_state = 4}, + [751] = {.lex_state = 13, .external_lex_state = 4}, + [752] = {.lex_state = 13, .external_lex_state = 4}, + [753] = {.lex_state = 13, .external_lex_state = 3}, + [754] = {.lex_state = 13, .external_lex_state = 4}, + [755] = {.lex_state = 13, .external_lex_state = 3}, + [756] = {.lex_state = 13, .external_lex_state = 3}, + [757] = {.lex_state = 13, .external_lex_state = 3}, + [758] = {.lex_state = 13, .external_lex_state = 3}, + [759] = {.lex_state = 13, .external_lex_state = 3}, + [760] = {.lex_state = 13, .external_lex_state = 3}, + [761] = {.lex_state = 13, .external_lex_state = 3}, + [762] = {.lex_state = 13, .external_lex_state = 3}, + [763] = {.lex_state = 13, .external_lex_state = 3}, + [764] = {.lex_state = 13, .external_lex_state = 3}, + [765] = {.lex_state = 13, .external_lex_state = 3}, + [766] = {.lex_state = 13, .external_lex_state = 3}, + [767] = {.lex_state = 13, .external_lex_state = 3}, + [768] = {.lex_state = 13, .external_lex_state = 4}, + [769] = {.lex_state = 13, .external_lex_state = 3}, + [770] = {.lex_state = 13, .external_lex_state = 3}, + [771] = {.lex_state = 13, .external_lex_state = 3}, + [772] = {.lex_state = 13, .external_lex_state = 3}, + [773] = {.lex_state = 13, .external_lex_state = 3}, + [774] = {.lex_state = 13, .external_lex_state = 4}, + [775] = {.lex_state = 13, .external_lex_state = 3}, + [776] = {.lex_state = 13, .external_lex_state = 3}, + [777] = {.lex_state = 13, .external_lex_state = 3}, + [778] = {.lex_state = 13, .external_lex_state = 3}, + [779] = {.lex_state = 13, .external_lex_state = 3}, + [780] = {.lex_state = 13, .external_lex_state = 3}, + [781] = {.lex_state = 13, .external_lex_state = 3}, + [782] = {.lex_state = 13, .external_lex_state = 3}, + [783] = {.lex_state = 13, .external_lex_state = 3}, + [784] = {.lex_state = 13, .external_lex_state = 3}, + [785] = {.lex_state = 13, .external_lex_state = 3}, + [786] = {.lex_state = 13, .external_lex_state = 3}, + [787] = {.lex_state = 13, .external_lex_state = 3}, + [788] = {.lex_state = 13, .external_lex_state = 3}, + [789] = {.lex_state = 13, .external_lex_state = 3}, + [790] = {.lex_state = 13, .external_lex_state = 3}, + [791] = {.lex_state = 13, .external_lex_state = 3}, + [792] = {.lex_state = 13, .external_lex_state = 3}, + [793] = {.lex_state = 13, .external_lex_state = 3}, + [794] = {.lex_state = 13, .external_lex_state = 3}, + [795] = {.lex_state = 13, .external_lex_state = 3}, + [796] = {.lex_state = 13, .external_lex_state = 3}, + [797] = {.lex_state = 13, .external_lex_state = 3}, + [798] = {.lex_state = 13, .external_lex_state = 3}, + [799] = {.lex_state = 13, .external_lex_state = 3}, + [800] = {.lex_state = 13, .external_lex_state = 3}, + [801] = {.lex_state = 13, .external_lex_state = 3}, + [802] = {.lex_state = 13, .external_lex_state = 3}, + [803] = {.lex_state = 13, .external_lex_state = 3}, + [804] = {.lex_state = 13, .external_lex_state = 3}, + [805] = {.lex_state = 13, .external_lex_state = 3}, + [806] = {.lex_state = 13, .external_lex_state = 3}, + [807] = {.lex_state = 13, .external_lex_state = 3}, + [808] = {.lex_state = 13, .external_lex_state = 3}, + [809] = {.lex_state = 13, .external_lex_state = 3}, + [810] = {.lex_state = 13, .external_lex_state = 3}, + [811] = {.lex_state = 13, .external_lex_state = 3}, + [812] = {.lex_state = 13, .external_lex_state = 3}, + [813] = {.lex_state = 13, .external_lex_state = 3}, + [814] = {.lex_state = 13, .external_lex_state = 3}, + [815] = {.lex_state = 13, .external_lex_state = 3}, + [816] = {.lex_state = 13, .external_lex_state = 3}, + [817] = {.lex_state = 13, .external_lex_state = 3}, + [818] = {.lex_state = 13, .external_lex_state = 3}, + [819] = {.lex_state = 13, .external_lex_state = 3}, + [820] = {.lex_state = 13, .external_lex_state = 3}, + [821] = {.lex_state = 13, .external_lex_state = 3}, + [822] = {.lex_state = 13, .external_lex_state = 3}, + [823] = {.lex_state = 13, .external_lex_state = 3}, + [824] = {.lex_state = 13, .external_lex_state = 3}, + [825] = {.lex_state = 20, .external_lex_state = 2}, + [826] = {.lex_state = 13, .external_lex_state = 4}, + [827] = {.lex_state = 13, .external_lex_state = 3}, + [828] = {.lex_state = 18, .external_lex_state = 3}, + [829] = {.lex_state = 20, .external_lex_state = 2}, + [830] = {.lex_state = 13, .external_lex_state = 3}, + [831] = {.lex_state = 13, .external_lex_state = 4}, + [832] = {.lex_state = 13, .external_lex_state = 3}, + [833] = {.lex_state = 13, .external_lex_state = 3}, + [834] = {.lex_state = 20, .external_lex_state = 2}, + [835] = {.lex_state = 20, .external_lex_state = 2}, + [836] = {.lex_state = 20, .external_lex_state = 2}, + [837] = {.lex_state = 20, .external_lex_state = 2}, + [838] = {.lex_state = 13, .external_lex_state = 3}, + [839] = {.lex_state = 13, .external_lex_state = 3}, + [840] = {.lex_state = 13, .external_lex_state = 3}, + [841] = {.lex_state = 13, .external_lex_state = 3}, + [842] = {.lex_state = 13, .external_lex_state = 3}, + [843] = {.lex_state = 13, .external_lex_state = 3}, + [844] = {.lex_state = 13, .external_lex_state = 3}, + [845] = {.lex_state = 13, .external_lex_state = 3}, + [846] = {.lex_state = 13, .external_lex_state = 3}, + [847] = {.lex_state = 13, .external_lex_state = 3}, + [848] = {.lex_state = 13, .external_lex_state = 3}, + [849] = {.lex_state = 13, .external_lex_state = 3}, + [850] = {.lex_state = 13, .external_lex_state = 3}, + [851] = {.lex_state = 13, .external_lex_state = 3}, + [852] = {.lex_state = 13, .external_lex_state = 3}, + [853] = {.lex_state = 13, .external_lex_state = 3}, + [854] = {.lex_state = 13, .external_lex_state = 3}, + [855] = {.lex_state = 13, .external_lex_state = 3}, + [856] = {.lex_state = 13, .external_lex_state = 3}, + [857] = {.lex_state = 13, .external_lex_state = 3}, + [858] = {.lex_state = 13, .external_lex_state = 3}, + [859] = {.lex_state = 13, .external_lex_state = 3}, + [860] = {.lex_state = 13, .external_lex_state = 3}, + [861] = {.lex_state = 13, .external_lex_state = 3}, + [862] = {.lex_state = 13, .external_lex_state = 3}, + [863] = {.lex_state = 13, .external_lex_state = 3}, + [864] = {.lex_state = 13, .external_lex_state = 3}, + [865] = {.lex_state = 13, .external_lex_state = 3}, + [866] = {.lex_state = 13, .external_lex_state = 3}, + [867] = {.lex_state = 13, .external_lex_state = 3}, + [868] = {.lex_state = 13, .external_lex_state = 3}, + [869] = {.lex_state = 13, .external_lex_state = 3}, + [870] = {.lex_state = 13, .external_lex_state = 3}, + [871] = {.lex_state = 13, .external_lex_state = 3}, + [872] = {.lex_state = 20, .external_lex_state = 2}, + [873] = {.lex_state = 13, .external_lex_state = 3}, + [874] = {.lex_state = 20, .external_lex_state = 2}, + [875] = {.lex_state = 20, .external_lex_state = 2}, + [876] = {.lex_state = 15, .external_lex_state = 2}, + [877] = {.lex_state = 20, .external_lex_state = 2}, + [878] = {.lex_state = 20, .external_lex_state = 2}, + [879] = {.lex_state = 20, .external_lex_state = 2}, + [880] = {.lex_state = 15, .external_lex_state = 2}, + [881] = {.lex_state = 20, .external_lex_state = 2}, + [882] = {.lex_state = 20, .external_lex_state = 2}, + [883] = {.lex_state = 20, .external_lex_state = 2}, + [884] = {.lex_state = 20, .external_lex_state = 2}, + [885] = {.lex_state = 15, .external_lex_state = 2}, + [886] = {.lex_state = 13, .external_lex_state = 2}, + [887] = {.lex_state = 13, .external_lex_state = 2}, + [888] = {.lex_state = 13, .external_lex_state = 2}, + [889] = {.lex_state = 13, .external_lex_state = 2}, + [890] = {.lex_state = 13, .external_lex_state = 2}, + [891] = {.lex_state = 13, .external_lex_state = 2}, + [892] = {.lex_state = 13, .external_lex_state = 2}, + [893] = {.lex_state = 13, .external_lex_state = 2}, + [894] = {.lex_state = 13, .external_lex_state = 2}, + [895] = {.lex_state = 13, .external_lex_state = 2}, + [896] = {.lex_state = 13, .external_lex_state = 2}, + [897] = {.lex_state = 13, .external_lex_state = 2}, + [898] = {.lex_state = 13, .external_lex_state = 2}, + [899] = {.lex_state = 13, .external_lex_state = 2}, + [900] = {.lex_state = 13, .external_lex_state = 2}, + [901] = {.lex_state = 13, .external_lex_state = 5}, + [902] = {.lex_state = 13, .external_lex_state = 2}, + [903] = {.lex_state = 13, .external_lex_state = 2}, + [904] = {.lex_state = 13, .external_lex_state = 2}, + [905] = {.lex_state = 20, .external_lex_state = 2}, + [906] = {.lex_state = 13, .external_lex_state = 2}, + [907] = {.lex_state = 13, .external_lex_state = 2}, + [908] = {.lex_state = 13, .external_lex_state = 2}, + [909] = {.lex_state = 13, .external_lex_state = 2}, + [910] = {.lex_state = 13, .external_lex_state = 5}, + [911] = {.lex_state = 13, .external_lex_state = 2}, + [912] = {.lex_state = 13, .external_lex_state = 2}, + [913] = {.lex_state = 20, .external_lex_state = 2}, + [914] = {.lex_state = 13, .external_lex_state = 5}, + [915] = {.lex_state = 13, .external_lex_state = 2}, + [916] = {.lex_state = 13, .external_lex_state = 5}, + [917] = {.lex_state = 13, .external_lex_state = 2}, + [918] = {.lex_state = 13, .external_lex_state = 5}, + [919] = {.lex_state = 20, .external_lex_state = 2}, + [920] = {.lex_state = 13, .external_lex_state = 5}, + [921] = {.lex_state = 13, .external_lex_state = 2}, + [922] = {.lex_state = 13, .external_lex_state = 5}, + [923] = {.lex_state = 13, .external_lex_state = 5}, + [924] = {.lex_state = 13, .external_lex_state = 5}, + [925] = {.lex_state = 21, .external_lex_state = 2}, + [926] = {.lex_state = 13, .external_lex_state = 5}, + [927] = {.lex_state = 13, .external_lex_state = 5}, + [928] = {.lex_state = 13, .external_lex_state = 5}, + [929] = {.lex_state = 20, .external_lex_state = 2}, + [930] = {.lex_state = 20, .external_lex_state = 2}, + [931] = {.lex_state = 21, .external_lex_state = 2}, + [932] = {.lex_state = 20, .external_lex_state = 2}, + [933] = {.lex_state = 20, .external_lex_state = 2}, + [934] = {.lex_state = 20, .external_lex_state = 2}, + [935] = {.lex_state = 20, .external_lex_state = 2}, + [936] = {.lex_state = 20, .external_lex_state = 2}, + [937] = {.lex_state = 20, .external_lex_state = 2}, + [938] = {.lex_state = 20, .external_lex_state = 2}, + [939] = {.lex_state = 20, .external_lex_state = 2}, + [940] = {.lex_state = 20, .external_lex_state = 2}, + [941] = {.lex_state = 20, .external_lex_state = 2}, + [942] = {.lex_state = 20, .external_lex_state = 5}, + [943] = {.lex_state = 20, .external_lex_state = 5}, + [944] = {.lex_state = 20, .external_lex_state = 2}, + [945] = {.lex_state = 20, .external_lex_state = 2}, + [946] = {.lex_state = 20, .external_lex_state = 2}, + [947] = {.lex_state = 20, .external_lex_state = 2}, + [948] = {.lex_state = 20, .external_lex_state = 2}, + [949] = {.lex_state = 20, .external_lex_state = 2}, + [950] = {.lex_state = 20, .external_lex_state = 2}, + [951] = {.lex_state = 20, .external_lex_state = 2}, + [952] = {.lex_state = 20, .external_lex_state = 2}, + [953] = {.lex_state = 20, .external_lex_state = 2}, + [954] = {.lex_state = 20, .external_lex_state = 2}, + [955] = {.lex_state = 20, .external_lex_state = 2}, + [956] = {.lex_state = 20, .external_lex_state = 2}, + [957] = {.lex_state = 20, .external_lex_state = 2}, + [958] = {.lex_state = 20, .external_lex_state = 2}, + [959] = {.lex_state = 20, .external_lex_state = 2}, + [960] = {.lex_state = 20, .external_lex_state = 2}, + [961] = {.lex_state = 20, .external_lex_state = 2}, + [962] = {.lex_state = 13, .external_lex_state = 2}, + [963] = {.lex_state = 13, .external_lex_state = 2}, + [964] = {.lex_state = 13, .external_lex_state = 2}, + [965] = {.lex_state = 20, .external_lex_state = 2}, + [966] = {.lex_state = 20, .external_lex_state = 2}, + [967] = {.lex_state = 20, .external_lex_state = 2}, + [968] = {.lex_state = 20, .external_lex_state = 2}, + [969] = {.lex_state = 20, .external_lex_state = 2}, + [970] = {.lex_state = 13, .external_lex_state = 2}, + [971] = {.lex_state = 13, .external_lex_state = 2}, + [972] = {.lex_state = 138, .external_lex_state = 2}, + [973] = {.lex_state = 13, .external_lex_state = 2}, + [974] = {.lex_state = 13, .external_lex_state = 2}, + [975] = {.lex_state = 20, .external_lex_state = 2}, + [976] = {.lex_state = 13, .external_lex_state = 2}, + [977] = {.lex_state = 13, .external_lex_state = 2}, + [978] = {.lex_state = 13, .external_lex_state = 2}, + [979] = {.lex_state = 20, .external_lex_state = 2}, + [980] = {.lex_state = 13, .external_lex_state = 2}, + [981] = {.lex_state = 20, .external_lex_state = 2}, + [982] = {.lex_state = 13, .external_lex_state = 2}, + [983] = {.lex_state = 13, .external_lex_state = 2}, + [984] = {.lex_state = 20, .external_lex_state = 2}, + [985] = {.lex_state = 13, .external_lex_state = 2}, + [986] = {.lex_state = 13, .external_lex_state = 2}, + [987] = {.lex_state = 13, .external_lex_state = 2}, + [988] = {.lex_state = 13, .external_lex_state = 2}, + [989] = {.lex_state = 20, .external_lex_state = 2}, + [990] = {.lex_state = 20, .external_lex_state = 2}, + [991] = {.lex_state = 13, .external_lex_state = 2}, + [992] = {.lex_state = 13, .external_lex_state = 2}, + [993] = {.lex_state = 13, .external_lex_state = 2}, + [994] = {.lex_state = 13, .external_lex_state = 2}, + [995] = {.lex_state = 13, .external_lex_state = 2}, + [996] = {.lex_state = 13, .external_lex_state = 2}, + [997] = {.lex_state = 138, .external_lex_state = 2}, + [998] = {.lex_state = 13, .external_lex_state = 2}, + [999] = {.lex_state = 13, .external_lex_state = 2}, + [1000] = {.lex_state = 13, .external_lex_state = 2}, + [1001] = {.lex_state = 13, .external_lex_state = 2}, + [1002] = {.lex_state = 13, .external_lex_state = 2}, + [1003] = {.lex_state = 13, .external_lex_state = 2}, + [1004] = {.lex_state = 20, .external_lex_state = 2}, + [1005] = {.lex_state = 13, .external_lex_state = 2}, + [1006] = {.lex_state = 13, .external_lex_state = 2}, + [1007] = {.lex_state = 13, .external_lex_state = 2}, + [1008] = {.lex_state = 13, .external_lex_state = 2}, + [1009] = {.lex_state = 13, .external_lex_state = 2}, + [1010] = {.lex_state = 13, .external_lex_state = 2}, + [1011] = {.lex_state = 138, .external_lex_state = 2}, + [1012] = {.lex_state = 13, .external_lex_state = 2}, + [1013] = {.lex_state = 13, .external_lex_state = 2}, + [1014] = {.lex_state = 17, .external_lex_state = 2}, + [1015] = {.lex_state = 13, .external_lex_state = 2}, + [1016] = {.lex_state = 13, .external_lex_state = 2}, + [1017] = {.lex_state = 13, .external_lex_state = 2}, + [1018] = {.lex_state = 13, .external_lex_state = 2}, + [1019] = {.lex_state = 13, .external_lex_state = 2}, + [1020] = {.lex_state = 17, .external_lex_state = 2}, + [1021] = {.lex_state = 13, .external_lex_state = 2}, + [1022] = {.lex_state = 13, .external_lex_state = 2}, + [1023] = {.lex_state = 17, .external_lex_state = 2}, + [1024] = {.lex_state = 13, .external_lex_state = 2}, + [1025] = {.lex_state = 13, .external_lex_state = 2}, + [1026] = {.lex_state = 13, .external_lex_state = 2}, + [1027] = {.lex_state = 13, .external_lex_state = 2}, + [1028] = {.lex_state = 13, .external_lex_state = 2}, + [1029] = {.lex_state = 13, .external_lex_state = 2}, + [1030] = {.lex_state = 13, .external_lex_state = 2}, + [1031] = {.lex_state = 13, .external_lex_state = 2}, + [1032] = {.lex_state = 17, .external_lex_state = 2}, + [1033] = {.lex_state = 17, .external_lex_state = 2}, + [1034] = {.lex_state = 13, .external_lex_state = 2}, + [1035] = {.lex_state = 13, .external_lex_state = 2}, + [1036] = {.lex_state = 138, .external_lex_state = 2}, + [1037] = {.lex_state = 20, .external_lex_state = 6}, + [1038] = {.lex_state = 20, .external_lex_state = 6}, + [1039] = {.lex_state = 20, .external_lex_state = 6}, + [1040] = {.lex_state = 20, .external_lex_state = 6}, + [1041] = {.lex_state = 20, .external_lex_state = 6}, + [1042] = {.lex_state = 44, .external_lex_state = 2}, + [1043] = {.lex_state = 44, .external_lex_state = 2}, + [1044] = {.lex_state = 20, .external_lex_state = 6}, + [1045] = {.lex_state = 44, .external_lex_state = 2}, + [1046] = {.lex_state = 20, .external_lex_state = 6}, + [1047] = {.lex_state = 44, .external_lex_state = 2}, + [1048] = {.lex_state = 20, .external_lex_state = 6}, + [1049] = {.lex_state = 44, .external_lex_state = 2}, + [1050] = {.lex_state = 44, .external_lex_state = 2}, + [1051] = {.lex_state = 44, .external_lex_state = 2}, + [1052] = {.lex_state = 44, .external_lex_state = 2}, + [1053] = {.lex_state = 44, .external_lex_state = 2}, + [1054] = {.lex_state = 44, .external_lex_state = 2}, + [1055] = {.lex_state = 44, .external_lex_state = 2}, + [1056] = {.lex_state = 20, .external_lex_state = 6}, + [1057] = {.lex_state = 44, .external_lex_state = 2}, + [1058] = {.lex_state = 44, .external_lex_state = 2}, + [1059] = {.lex_state = 138, .external_lex_state = 2}, + [1060] = {.lex_state = 44, .external_lex_state = 2}, + [1061] = {.lex_state = 44, .external_lex_state = 2}, + [1062] = {.lex_state = 44, .external_lex_state = 2}, + [1063] = {.lex_state = 44, .external_lex_state = 2}, + [1064] = {.lex_state = 44, .external_lex_state = 2}, + [1065] = {.lex_state = 44, .external_lex_state = 2}, + [1066] = {.lex_state = 44, .external_lex_state = 2}, + [1067] = {.lex_state = 44, .external_lex_state = 2}, + [1068] = {.lex_state = 44, .external_lex_state = 2}, + [1069] = {.lex_state = 138, .external_lex_state = 2}, + [1070] = {.lex_state = 44, .external_lex_state = 2}, + [1071] = {.lex_state = 44, .external_lex_state = 2}, + [1072] = {.lex_state = 44, .external_lex_state = 2}, + [1073] = {.lex_state = 44, .external_lex_state = 2}, + [1074] = {.lex_state = 44, .external_lex_state = 2}, + [1075] = {.lex_state = 44, .external_lex_state = 2}, + [1076] = {.lex_state = 44, .external_lex_state = 2}, + [1077] = {.lex_state = 44, .external_lex_state = 2}, + [1078] = {.lex_state = 44, .external_lex_state = 2}, + [1079] = {.lex_state = 44, .external_lex_state = 2}, + [1080] = {.lex_state = 44, .external_lex_state = 2}, + [1081] = {.lex_state = 138, .external_lex_state = 2}, + [1082] = {.lex_state = 138, .external_lex_state = 2}, + [1083] = {.lex_state = 138, .external_lex_state = 2}, + [1084] = {.lex_state = 138, .external_lex_state = 2}, + [1085] = {.lex_state = 138, .external_lex_state = 2}, + [1086] = {.lex_state = 138, .external_lex_state = 2}, + [1087] = {.lex_state = 138, .external_lex_state = 2}, + [1088] = {.lex_state = 138, .external_lex_state = 2}, + [1089] = {.lex_state = 138, .external_lex_state = 5}, + [1090] = {.lex_state = 138, .external_lex_state = 2}, + [1091] = {.lex_state = 138, .external_lex_state = 5}, + [1092] = {.lex_state = 138, .external_lex_state = 2}, + [1093] = {.lex_state = 138, .external_lex_state = 2}, + [1094] = {.lex_state = 44, .external_lex_state = 2}, + [1095] = {.lex_state = 138, .external_lex_state = 2}, + [1096] = {.lex_state = 138, .external_lex_state = 2}, + [1097] = {.lex_state = 138, .external_lex_state = 2}, + [1098] = {.lex_state = 138, .external_lex_state = 2}, + [1099] = {.lex_state = 138, .external_lex_state = 2}, + [1100] = {.lex_state = 138, .external_lex_state = 2}, + [1101] = {.lex_state = 138, .external_lex_state = 2}, + [1102] = {.lex_state = 138, .external_lex_state = 2}, + [1103] = {.lex_state = 138, .external_lex_state = 2}, + [1104] = {.lex_state = 138, .external_lex_state = 2}, + [1105] = {.lex_state = 138, .external_lex_state = 2}, + [1106] = {.lex_state = 138, .external_lex_state = 2}, + [1107] = {.lex_state = 138, .external_lex_state = 2}, + [1108] = {.lex_state = 138, .external_lex_state = 5}, + [1109] = {.lex_state = 138, .external_lex_state = 5}, + [1110] = {.lex_state = 138, .external_lex_state = 2}, + [1111] = {.lex_state = 138, .external_lex_state = 2}, + [1112] = {.lex_state = 138, .external_lex_state = 2}, + [1113] = {.lex_state = 28, .external_lex_state = 7}, + [1114] = {.lex_state = 138, .external_lex_state = 2}, + [1115] = {.lex_state = 138, .external_lex_state = 2}, + [1116] = {.lex_state = 138, .external_lex_state = 5}, + [1117] = {.lex_state = 28, .external_lex_state = 7}, + [1118] = {.lex_state = 28, .external_lex_state = 7}, + [1119] = {.lex_state = 138, .external_lex_state = 2}, + [1120] = {.lex_state = 138, .external_lex_state = 5}, + [1121] = {.lex_state = 138, .external_lex_state = 5}, + [1122] = {.lex_state = 28, .external_lex_state = 7}, + [1123] = {.lex_state = 44, .external_lex_state = 2}, + [1124] = {.lex_state = 138, .external_lex_state = 2}, + [1125] = {.lex_state = 138, .external_lex_state = 5}, + [1126] = {.lex_state = 138, .external_lex_state = 5}, + [1127] = {.lex_state = 138, .external_lex_state = 2}, + [1128] = {.lex_state = 138, .external_lex_state = 2}, + [1129] = {.lex_state = 138, .external_lex_state = 2}, + [1130] = {.lex_state = 44, .external_lex_state = 2}, + [1131] = {.lex_state = 138, .external_lex_state = 5}, + [1132] = {.lex_state = 138, .external_lex_state = 5}, + [1133] = {.lex_state = 138, .external_lex_state = 5}, + [1134] = {.lex_state = 44, .external_lex_state = 2}, + [1135] = {.lex_state = 138, .external_lex_state = 5}, + [1136] = {.lex_state = 138, .external_lex_state = 5}, + [1137] = {.lex_state = 28, .external_lex_state = 7}, + [1138] = {.lex_state = 138, .external_lex_state = 2}, + [1139] = {.lex_state = 138, .external_lex_state = 2}, + [1140] = {.lex_state = 44, .external_lex_state = 2}, + [1141] = {.lex_state = 20, .external_lex_state = 6}, + [1142] = {.lex_state = 44, .external_lex_state = 2}, + [1143] = {.lex_state = 20, .external_lex_state = 6}, + [1144] = {.lex_state = 44, .external_lex_state = 2}, + [1145] = {.lex_state = 20, .external_lex_state = 6}, + [1146] = {.lex_state = 20, .external_lex_state = 6}, + [1147] = {.lex_state = 20, .external_lex_state = 6}, + [1148] = {.lex_state = 138, .external_lex_state = 5}, + [1149] = {.lex_state = 13, .external_lex_state = 2}, + [1150] = {.lex_state = 44, .external_lex_state = 2}, + [1151] = {.lex_state = 138, .external_lex_state = 2}, + [1152] = {.lex_state = 44, .external_lex_state = 2}, + [1153] = {.lex_state = 138, .external_lex_state = 2}, + [1154] = {.lex_state = 138, .external_lex_state = 2}, + [1155] = {.lex_state = 44, .external_lex_state = 2}, + [1156] = {.lex_state = 138, .external_lex_state = 2}, + [1157] = {.lex_state = 44, .external_lex_state = 2}, + [1158] = {.lex_state = 13, .external_lex_state = 2}, + [1159] = {.lex_state = 138, .external_lex_state = 2}, + [1160] = {.lex_state = 44, .external_lex_state = 2}, + [1161] = {.lex_state = 20, .external_lex_state = 6}, + [1162] = {.lex_state = 138, .external_lex_state = 2}, + [1163] = {.lex_state = 138, .external_lex_state = 2}, + [1164] = {.lex_state = 138, .external_lex_state = 5}, + [1165] = {.lex_state = 138, .external_lex_state = 2}, + [1166] = {.lex_state = 44, .external_lex_state = 2}, + [1167] = {.lex_state = 44, .external_lex_state = 2}, + [1168] = {.lex_state = 138, .external_lex_state = 2}, + [1169] = {.lex_state = 44, .external_lex_state = 2}, + [1170] = {.lex_state = 138, .external_lex_state = 2}, + [1171] = {.lex_state = 44, .external_lex_state = 2}, + [1172] = {.lex_state = 44, .external_lex_state = 2}, + [1173] = {.lex_state = 138, .external_lex_state = 2}, + [1174] = {.lex_state = 20, .external_lex_state = 6}, + [1175] = {.lex_state = 138, .external_lex_state = 2}, + [1176] = {.lex_state = 44, .external_lex_state = 2}, + [1177] = {.lex_state = 44, .external_lex_state = 2}, + [1178] = {.lex_state = 138, .external_lex_state = 2}, + [1179] = {.lex_state = 138, .external_lex_state = 2}, + [1180] = {.lex_state = 20, .external_lex_state = 6}, + [1181] = {.lex_state = 44, .external_lex_state = 2}, + [1182] = {.lex_state = 44, .external_lex_state = 2}, + [1183] = {.lex_state = 20, .external_lex_state = 6}, + [1184] = {.lex_state = 20, .external_lex_state = 6}, + [1185] = {.lex_state = 138, .external_lex_state = 2}, + [1186] = {.lex_state = 138, .external_lex_state = 5}, + [1187] = {.lex_state = 44, .external_lex_state = 2}, + [1188] = {.lex_state = 20, .external_lex_state = 6}, + [1189] = {.lex_state = 20, .external_lex_state = 6}, + [1190] = {.lex_state = 20, .external_lex_state = 6}, + [1191] = {.lex_state = 138, .external_lex_state = 2}, + [1192] = {.lex_state = 20, .external_lex_state = 6}, + [1193] = {.lex_state = 138, .external_lex_state = 2}, + [1194] = {.lex_state = 20, .external_lex_state = 6}, + [1195] = {.lex_state = 20, .external_lex_state = 6}, + [1196] = {.lex_state = 44, .external_lex_state = 2}, + [1197] = {.lex_state = 44, .external_lex_state = 2}, + [1198] = {.lex_state = 44, .external_lex_state = 2}, + [1199] = {.lex_state = 44, .external_lex_state = 2}, + [1200] = {.lex_state = 20, .external_lex_state = 6}, + [1201] = {.lex_state = 44, .external_lex_state = 2}, + [1202] = {.lex_state = 138, .external_lex_state = 5}, + [1203] = {.lex_state = 44, .external_lex_state = 2}, + [1204] = {.lex_state = 138, .external_lex_state = 2}, + [1205] = {.lex_state = 138, .external_lex_state = 5}, + [1206] = {.lex_state = 138, .external_lex_state = 5}, + [1207] = {.lex_state = 138, .external_lex_state = 2}, + [1208] = {.lex_state = 24, .external_lex_state = 8}, + [1209] = {.lex_state = 138, .external_lex_state = 2}, + [1210] = {.lex_state = 138, .external_lex_state = 2}, + [1211] = {.lex_state = 138, .external_lex_state = 2}, + [1212] = {.lex_state = 138, .external_lex_state = 5}, + [1213] = {.lex_state = 22, .external_lex_state = 2}, + [1214] = {.lex_state = 24, .external_lex_state = 8}, + [1215] = {.lex_state = 138, .external_lex_state = 2}, + [1216] = {.lex_state = 138, .external_lex_state = 2}, + [1217] = {.lex_state = 138, .external_lex_state = 2}, + [1218] = {.lex_state = 138, .external_lex_state = 2}, + [1219] = {.lex_state = 138, .external_lex_state = 2}, + [1220] = {.lex_state = 138, .external_lex_state = 2}, + [1221] = {.lex_state = 138, .external_lex_state = 5}, + [1222] = {.lex_state = 24, .external_lex_state = 8}, + [1223] = {.lex_state = 32, .external_lex_state = 8}, + [1224] = {.lex_state = 138, .external_lex_state = 5}, + [1225] = {.lex_state = 32, .external_lex_state = 8}, + [1226] = {.lex_state = 138, .external_lex_state = 5}, + [1227] = {.lex_state = 24, .external_lex_state = 8}, + [1228] = {.lex_state = 138, .external_lex_state = 2}, + [1229] = {.lex_state = 32, .external_lex_state = 8}, + [1230] = {.lex_state = 138, .external_lex_state = 2}, + [1231] = {.lex_state = 138, .external_lex_state = 2}, + [1232] = {.lex_state = 24, .external_lex_state = 8}, + [1233] = {.lex_state = 138, .external_lex_state = 2}, + [1234] = {.lex_state = 138, .external_lex_state = 2}, + [1235] = {.lex_state = 138, .external_lex_state = 2}, + [1236] = {.lex_state = 138, .external_lex_state = 2}, + [1237] = {.lex_state = 28, .external_lex_state = 7}, + [1238] = {.lex_state = 138, .external_lex_state = 5}, + [1239] = {.lex_state = 30, .external_lex_state = 2}, + [1240] = {.lex_state = 32, .external_lex_state = 8}, + [1241] = {.lex_state = 32, .external_lex_state = 8}, + [1242] = {.lex_state = 138, .external_lex_state = 2}, + [1243] = {.lex_state = 138, .external_lex_state = 2}, + [1244] = {.lex_state = 138, .external_lex_state = 5}, + [1245] = {.lex_state = 138, .external_lex_state = 2}, + [1246] = {.lex_state = 138, .external_lex_state = 5}, + [1247] = {.lex_state = 138, .external_lex_state = 2}, + [1248] = {.lex_state = 138, .external_lex_state = 2}, + [1249] = {.lex_state = 138, .external_lex_state = 2}, + [1250] = {.lex_state = 24, .external_lex_state = 8}, + [1251] = {.lex_state = 138, .external_lex_state = 2}, + [1252] = {.lex_state = 138, .external_lex_state = 2}, + [1253] = {.lex_state = 138, .external_lex_state = 2}, + [1254] = {.lex_state = 32, .external_lex_state = 8}, + [1255] = {.lex_state = 138, .external_lex_state = 5}, + [1256] = {.lex_state = 24, .external_lex_state = 8}, + [1257] = {.lex_state = 138, .external_lex_state = 2}, + [1258] = {.lex_state = 22, .external_lex_state = 2}, + [1259] = {.lex_state = 30, .external_lex_state = 2}, + [1260] = {.lex_state = 138, .external_lex_state = 2}, + [1261] = {.lex_state = 138, .external_lex_state = 2}, + [1262] = {.lex_state = 138, .external_lex_state = 2}, + [1263] = {.lex_state = 138, .external_lex_state = 5}, + [1264] = {.lex_state = 138, .external_lex_state = 5}, + [1265] = {.lex_state = 32, .external_lex_state = 8}, + [1266] = {.lex_state = 32, .external_lex_state = 8}, + [1267] = {.lex_state = 30, .external_lex_state = 2}, + [1268] = {.lex_state = 138, .external_lex_state = 2}, + [1269] = {.lex_state = 138, .external_lex_state = 2}, + [1270] = {.lex_state = 138, .external_lex_state = 5}, + [1271] = {.lex_state = 138, .external_lex_state = 2}, + [1272] = {.lex_state = 138, .external_lex_state = 2}, + [1273] = {.lex_state = 138, .external_lex_state = 5}, + [1274] = {.lex_state = 138, .external_lex_state = 2}, + [1275] = {.lex_state = 138, .external_lex_state = 5}, + [1276] = {.lex_state = 138, .external_lex_state = 2}, + [1277] = {.lex_state = 24, .external_lex_state = 8}, + [1278] = {.lex_state = 24, .external_lex_state = 8}, + [1279] = {.lex_state = 32, .external_lex_state = 8}, + [1280] = {.lex_state = 138, .external_lex_state = 2}, + [1281] = {.lex_state = 22, .external_lex_state = 2}, + [1282] = {.lex_state = 138, .external_lex_state = 5}, + [1283] = {.lex_state = 138, .external_lex_state = 2}, + [1284] = {.lex_state = 138, .external_lex_state = 2}, + [1285] = {.lex_state = 138, .external_lex_state = 2}, + [1286] = {.lex_state = 138, .external_lex_state = 2}, + [1287] = {.lex_state = 138, .external_lex_state = 2}, + [1288] = {.lex_state = 138, .external_lex_state = 2}, + [1289] = {.lex_state = 138, .external_lex_state = 2}, + [1290] = {.lex_state = 138, .external_lex_state = 2}, + [1291] = {.lex_state = 13, .external_lex_state = 2}, + [1292] = {.lex_state = 138, .external_lex_state = 2}, + [1293] = {.lex_state = 138, .external_lex_state = 2}, + [1294] = {.lex_state = 138, .external_lex_state = 5}, + [1295] = {.lex_state = 138, .external_lex_state = 2}, + [1296] = {.lex_state = 138, .external_lex_state = 2}, + [1297] = {.lex_state = 138, .external_lex_state = 2}, + [1298] = {.lex_state = 138, .external_lex_state = 2}, + [1299] = {.lex_state = 138, .external_lex_state = 2}, + [1300] = {.lex_state = 138, .external_lex_state = 5}, + [1301] = {.lex_state = 138, .external_lex_state = 2}, + [1302] = {.lex_state = 138, .external_lex_state = 2}, + [1303] = {.lex_state = 138, .external_lex_state = 2}, + [1304] = {.lex_state = 138, .external_lex_state = 2}, + [1305] = {.lex_state = 138, .external_lex_state = 2}, + [1306] = {.lex_state = 138, .external_lex_state = 2}, + [1307] = {.lex_state = 138, .external_lex_state = 5}, + [1308] = {.lex_state = 138, .external_lex_state = 2}, + [1309] = {.lex_state = 138, .external_lex_state = 2}, + [1310] = {.lex_state = 138, .external_lex_state = 2}, + [1311] = {.lex_state = 138, .external_lex_state = 2}, + [1312] = {.lex_state = 138, .external_lex_state = 2}, + [1313] = {.lex_state = 138, .external_lex_state = 5}, + [1314] = {.lex_state = 138, .external_lex_state = 5}, + [1315] = {.lex_state = 138, .external_lex_state = 5}, + [1316] = {.lex_state = 138, .external_lex_state = 2}, + [1317] = {.lex_state = 138, .external_lex_state = 2}, + [1318] = {.lex_state = 138, .external_lex_state = 2}, + [1319] = {.lex_state = 138, .external_lex_state = 2}, + [1320] = {.lex_state = 138, .external_lex_state = 2}, + [1321] = {.lex_state = 138, .external_lex_state = 2}, + [1322] = {.lex_state = 138, .external_lex_state = 2}, + [1323] = {.lex_state = 138, .external_lex_state = 2}, + [1324] = {.lex_state = 138, .external_lex_state = 2}, + [1325] = {.lex_state = 138, .external_lex_state = 2}, + [1326] = {.lex_state = 138, .external_lex_state = 2}, + [1327] = {.lex_state = 138, .external_lex_state = 2}, + [1328] = {.lex_state = 138, .external_lex_state = 2}, + [1329] = {.lex_state = 138, .external_lex_state = 2}, + [1330] = {.lex_state = 138, .external_lex_state = 2}, + [1331] = {.lex_state = 138, .external_lex_state = 2}, + [1332] = {.lex_state = 138, .external_lex_state = 2}, + [1333] = {.lex_state = 138, .external_lex_state = 2}, + [1334] = {.lex_state = 138, .external_lex_state = 2}, + [1335] = {.lex_state = 138, .external_lex_state = 2}, + [1336] = {.lex_state = 138, .external_lex_state = 2}, + [1337] = {.lex_state = 138, .external_lex_state = 2}, + [1338] = {.lex_state = 138, .external_lex_state = 5}, + [1339] = {.lex_state = 138, .external_lex_state = 2}, + [1340] = {.lex_state = 138, .external_lex_state = 2}, + [1341] = {.lex_state = 138, .external_lex_state = 2}, + [1342] = {.lex_state = 138, .external_lex_state = 2}, + [1343] = {.lex_state = 138, .external_lex_state = 2}, + [1344] = {.lex_state = 138, .external_lex_state = 2}, + [1345] = {.lex_state = 138, .external_lex_state = 5}, + [1346] = {.lex_state = 138, .external_lex_state = 5}, + [1347] = {.lex_state = 138, .external_lex_state = 2}, + [1348] = {.lex_state = 138, .external_lex_state = 2}, + [1349] = {.lex_state = 13, .external_lex_state = 2}, + [1350] = {.lex_state = 138, .external_lex_state = 2}, + [1351] = {.lex_state = 138, .external_lex_state = 2}, + [1352] = {.lex_state = 138, .external_lex_state = 2}, + [1353] = {.lex_state = 138, .external_lex_state = 2}, + [1354] = {.lex_state = 138, .external_lex_state = 2}, + [1355] = {.lex_state = 138, .external_lex_state = 2}, + [1356] = {.lex_state = 138, .external_lex_state = 2}, + [1357] = {.lex_state = 138, .external_lex_state = 2}, + [1358] = {.lex_state = 138, .external_lex_state = 2}, + [1359] = {.lex_state = 138, .external_lex_state = 2}, + [1360] = {.lex_state = 138, .external_lex_state = 2}, + [1361] = {.lex_state = 138, .external_lex_state = 2}, + [1362] = {.lex_state = 138, .external_lex_state = 2}, + [1363] = {.lex_state = 138, .external_lex_state = 2}, + [1364] = {.lex_state = 138, .external_lex_state = 2}, + [1365] = {.lex_state = 138, .external_lex_state = 2}, + [1366] = {.lex_state = 138, .external_lex_state = 2}, + [1367] = {.lex_state = 138, .external_lex_state = 2}, + [1368] = {.lex_state = 138, .external_lex_state = 2}, + [1369] = {.lex_state = 138, .external_lex_state = 2}, + [1370] = {.lex_state = 138, .external_lex_state = 2}, + [1371] = {.lex_state = 138, .external_lex_state = 2}, + [1372] = {.lex_state = 138, .external_lex_state = 2}, + [1373] = {.lex_state = 138, .external_lex_state = 2}, + [1374] = {.lex_state = 138, .external_lex_state = 2}, + [1375] = {.lex_state = 138, .external_lex_state = 2}, + [1376] = {.lex_state = 138, .external_lex_state = 5}, + [1377] = {.lex_state = 138, .external_lex_state = 2}, + [1378] = {.lex_state = 138, .external_lex_state = 2}, + [1379] = {.lex_state = 138, .external_lex_state = 2}, + [1380] = {.lex_state = 138, .external_lex_state = 5}, + [1381] = {.lex_state = 138, .external_lex_state = 2}, + [1382] = {.lex_state = 138, .external_lex_state = 2}, + [1383] = {.lex_state = 138, .external_lex_state = 2}, + [1384] = {.lex_state = 138, .external_lex_state = 5}, + [1385] = {.lex_state = 138, .external_lex_state = 2}, + [1386] = {.lex_state = 138, .external_lex_state = 2}, + [1387] = {.lex_state = 138, .external_lex_state = 2}, + [1388] = {.lex_state = 138, .external_lex_state = 2}, + [1389] = {.lex_state = 138, .external_lex_state = 2}, + [1390] = {.lex_state = 138, .external_lex_state = 2}, + [1391] = {.lex_state = 138, .external_lex_state = 2}, + [1392] = {.lex_state = 138, .external_lex_state = 2}, + [1393] = {.lex_state = 138, .external_lex_state = 5}, + [1394] = {.lex_state = 138, .external_lex_state = 2}, + [1395] = {.lex_state = 138, .external_lex_state = 2}, + [1396] = {.lex_state = 138, .external_lex_state = 2}, + [1397] = {.lex_state = 138, .external_lex_state = 5}, + [1398] = {.lex_state = 138, .external_lex_state = 2}, + [1399] = {.lex_state = 138, .external_lex_state = 2}, + [1400] = {.lex_state = 138, .external_lex_state = 2}, + [1401] = {.lex_state = 138, .external_lex_state = 5}, + [1402] = {.lex_state = 138, .external_lex_state = 2}, + [1403] = {.lex_state = 138, .external_lex_state = 5}, + [1404] = {.lex_state = 138, .external_lex_state = 2}, + [1405] = {.lex_state = 138, .external_lex_state = 2}, + [1406] = {.lex_state = 138, .external_lex_state = 2}, + [1407] = {.lex_state = 138, .external_lex_state = 2}, + [1408] = {.lex_state = 138, .external_lex_state = 2}, + [1409] = {.lex_state = 138, .external_lex_state = 2}, + [1410] = {.lex_state = 138, .external_lex_state = 2}, + [1411] = {.lex_state = 138, .external_lex_state = 2}, + [1412] = {.lex_state = 138, .external_lex_state = 2}, + [1413] = {.lex_state = 138, .external_lex_state = 2}, + [1414] = {.lex_state = 138, .external_lex_state = 2}, + [1415] = {.lex_state = 138, .external_lex_state = 2}, + [1416] = {.lex_state = 138, .external_lex_state = 2}, + [1417] = {.lex_state = 138, .external_lex_state = 2}, + [1418] = {.lex_state = 138, .external_lex_state = 2}, + [1419] = {.lex_state = 138, .external_lex_state = 2}, + [1420] = {.lex_state = 138, .external_lex_state = 2}, + [1421] = {.lex_state = 138, .external_lex_state = 2}, + [1422] = {.lex_state = 138, .external_lex_state = 2}, + [1423] = {.lex_state = 138, .external_lex_state = 2}, + [1424] = {.lex_state = 138, .external_lex_state = 2}, + [1425] = {.lex_state = 138, .external_lex_state = 5}, + [1426] = {.lex_state = 138, .external_lex_state = 2}, + [1427] = {.lex_state = 138, .external_lex_state = 2}, + [1428] = {.lex_state = 138, .external_lex_state = 2}, + [1429] = {.lex_state = 138, .external_lex_state = 2}, + [1430] = {.lex_state = 138, .external_lex_state = 2}, + [1431] = {.lex_state = 138, .external_lex_state = 2}, + [1432] = {.lex_state = 138, .external_lex_state = 2}, + [1433] = {.lex_state = 138, .external_lex_state = 2}, + [1434] = {.lex_state = 138, .external_lex_state = 2}, + [1435] = {.lex_state = 138, .external_lex_state = 2}, + [1436] = {.lex_state = 138, .external_lex_state = 2}, + [1437] = {.lex_state = 138, .external_lex_state = 2}, + [1438] = {.lex_state = 138, .external_lex_state = 2}, + [1439] = {.lex_state = 138, .external_lex_state = 2}, + [1440] = {.lex_state = 138, .external_lex_state = 2}, + [1441] = {.lex_state = 138, .external_lex_state = 2}, + [1442] = {.lex_state = 138, .external_lex_state = 2}, + [1443] = {.lex_state = 138, .external_lex_state = 2}, + [1444] = {.lex_state = 138, .external_lex_state = 5}, + [1445] = {.lex_state = 138, .external_lex_state = 2}, + [1446] = {.lex_state = 138, .external_lex_state = 2}, + [1447] = {.lex_state = 138, .external_lex_state = 2}, + [1448] = {.lex_state = 138, .external_lex_state = 2}, + [1449] = {.lex_state = 138, .external_lex_state = 2}, + [1450] = {.lex_state = 138, .external_lex_state = 5}, + [1451] = {.lex_state = 138, .external_lex_state = 5}, + [1452] = {.lex_state = 13, .external_lex_state = 2}, + [1453] = {.lex_state = 138, .external_lex_state = 2}, + [1454] = {.lex_state = 138, .external_lex_state = 2}, + [1455] = {.lex_state = 138, .external_lex_state = 2}, + [1456] = {.lex_state = 138, .external_lex_state = 2}, + [1457] = {.lex_state = 138, .external_lex_state = 2}, + [1458] = {.lex_state = 138, .external_lex_state = 2}, + [1459] = {.lex_state = 138, .external_lex_state = 2}, + [1460] = {.lex_state = 138, .external_lex_state = 2}, + [1461] = {.lex_state = 138, .external_lex_state = 2}, + [1462] = {.lex_state = 138, .external_lex_state = 2}, + [1463] = {.lex_state = 138, .external_lex_state = 2}, + [1464] = {.lex_state = 138, .external_lex_state = 2}, + [1465] = {.lex_state = 138, .external_lex_state = 2}, + [1466] = {.lex_state = 138, .external_lex_state = 2}, + [1467] = {.lex_state = 138, .external_lex_state = 2}, + [1468] = {.lex_state = 138, .external_lex_state = 2}, + [1469] = {.lex_state = 138, .external_lex_state = 2}, + [1470] = {.lex_state = 138, .external_lex_state = 2}, + [1471] = {.lex_state = 138, .external_lex_state = 2}, + [1472] = {.lex_state = 138, .external_lex_state = 2}, + [1473] = {.lex_state = 138, .external_lex_state = 2}, + [1474] = {.lex_state = 138, .external_lex_state = 2}, + [1475] = {.lex_state = 138, .external_lex_state = 2}, + [1476] = {.lex_state = 138, .external_lex_state = 2}, + [1477] = {.lex_state = 138, .external_lex_state = 2}, + [1478] = {.lex_state = 138, .external_lex_state = 2}, + [1479] = {.lex_state = 138, .external_lex_state = 2}, + [1480] = {.lex_state = 138, .external_lex_state = 2}, + [1481] = {.lex_state = 138, .external_lex_state = 2}, + [1482] = {.lex_state = 138, .external_lex_state = 2}, + [1483] = {.lex_state = 138, .external_lex_state = 2}, + [1484] = {.lex_state = 138, .external_lex_state = 2}, + [1485] = {.lex_state = 138, .external_lex_state = 2}, + [1486] = {.lex_state = 138, .external_lex_state = 2}, + [1487] = {.lex_state = 138, .external_lex_state = 2}, + [1488] = {.lex_state = 138, .external_lex_state = 2}, + [1489] = {.lex_state = 138, .external_lex_state = 2}, + [1490] = {.lex_state = 138, .external_lex_state = 2}, + [1491] = {.lex_state = 138, .external_lex_state = 5}, + [1492] = {.lex_state = 138, .external_lex_state = 2}, + [1493] = {.lex_state = 138, .external_lex_state = 2}, + [1494] = {.lex_state = 138, .external_lex_state = 2}, + [1495] = {.lex_state = 138, .external_lex_state = 2}, + [1496] = {.lex_state = 138, .external_lex_state = 2}, + [1497] = {.lex_state = 138, .external_lex_state = 2}, + [1498] = {.lex_state = 138, .external_lex_state = 2}, + [1499] = {.lex_state = 138, .external_lex_state = 2}, + [1500] = {.lex_state = 138, .external_lex_state = 2}, + [1501] = {.lex_state = 138, .external_lex_state = 2}, + [1502] = {.lex_state = 138, .external_lex_state = 2}, + [1503] = {.lex_state = 138, .external_lex_state = 2}, + [1504] = {.lex_state = 138, .external_lex_state = 2}, + [1505] = {.lex_state = 138, .external_lex_state = 2}, + [1506] = {.lex_state = 138, .external_lex_state = 2}, + [1507] = {.lex_state = 138, .external_lex_state = 5}, + [1508] = {.lex_state = 138, .external_lex_state = 2}, + [1509] = {.lex_state = 138, .external_lex_state = 5}, + [1510] = {.lex_state = 138, .external_lex_state = 2}, + [1511] = {.lex_state = 138, .external_lex_state = 2}, + [1512] = {.lex_state = 138, .external_lex_state = 2}, + [1513] = {.lex_state = 138, .external_lex_state = 2}, + [1514] = {.lex_state = 138, .external_lex_state = 2}, + [1515] = {.lex_state = 138, .external_lex_state = 2}, + [1516] = {.lex_state = 138, .external_lex_state = 2}, + [1517] = {.lex_state = 138, .external_lex_state = 2}, + [1518] = {.lex_state = 138, .external_lex_state = 5}, + [1519] = {.lex_state = 138, .external_lex_state = 2}, + [1520] = {.lex_state = 138, .external_lex_state = 2}, + [1521] = {.lex_state = 138, .external_lex_state = 2}, + [1522] = {.lex_state = 138, .external_lex_state = 2}, + [1523] = {.lex_state = 138, .external_lex_state = 5}, + [1524] = {.lex_state = 13, .external_lex_state = 2}, + [1525] = {.lex_state = 13, .external_lex_state = 2}, + [1526] = {.lex_state = 138, .external_lex_state = 2}, + [1527] = {.lex_state = 138, .external_lex_state = 5}, + [1528] = {.lex_state = 138, .external_lex_state = 2}, + [1529] = {.lex_state = 138, .external_lex_state = 2}, + [1530] = {.lex_state = 138, .external_lex_state = 2}, + [1531] = {.lex_state = 138, .external_lex_state = 2}, + [1532] = {.lex_state = 138, .external_lex_state = 2}, + [1533] = {.lex_state = 138, .external_lex_state = 2}, + [1534] = {.lex_state = 138, .external_lex_state = 2}, + [1535] = {.lex_state = 138, .external_lex_state = 2}, + [1536] = {.lex_state = 138, .external_lex_state = 5}, + [1537] = {.lex_state = 13, .external_lex_state = 2}, + [1538] = {.lex_state = 138, .external_lex_state = 2}, + [1539] = {.lex_state = 138, .external_lex_state = 2}, + [1540] = {.lex_state = 138, .external_lex_state = 2}, + [1541] = {.lex_state = 138, .external_lex_state = 5}, + [1542] = {.lex_state = 138, .external_lex_state = 2}, + [1543] = {.lex_state = 138, .external_lex_state = 2}, + [1544] = {.lex_state = 138, .external_lex_state = 2}, + [1545] = {.lex_state = 138, .external_lex_state = 2}, + [1546] = {.lex_state = 138, .external_lex_state = 2}, + [1547] = {.lex_state = 138, .external_lex_state = 2}, + [1548] = {.lex_state = 138, .external_lex_state = 2}, + [1549] = {.lex_state = 138, .external_lex_state = 2}, + [1550] = {.lex_state = 138, .external_lex_state = 2}, + [1551] = {.lex_state = 138, .external_lex_state = 2}, + [1552] = {.lex_state = 138, .external_lex_state = 2}, + [1553] = {.lex_state = 44, .external_lex_state = 2}, + [1554] = {.lex_state = 138, .external_lex_state = 2}, + [1555] = {.lex_state = 138, .external_lex_state = 2}, + [1556] = {.lex_state = 138, .external_lex_state = 2}, + [1557] = {.lex_state = 138, .external_lex_state = 2}, + [1558] = {.lex_state = 138, .external_lex_state = 2}, + [1559] = {.lex_state = 138, .external_lex_state = 2}, + [1560] = {.lex_state = 138, .external_lex_state = 2}, + [1561] = {.lex_state = 138, .external_lex_state = 5}, + [1562] = {.lex_state = 138, .external_lex_state = 2}, + [1563] = {.lex_state = 138, .external_lex_state = 2}, + [1564] = {.lex_state = 138, .external_lex_state = 2}, + [1565] = {.lex_state = 138, .external_lex_state = 2}, + [1566] = {.lex_state = 138, .external_lex_state = 2}, + [1567] = {.lex_state = 138, .external_lex_state = 2}, + [1568] = {.lex_state = 138, .external_lex_state = 2}, + [1569] = {.lex_state = 138, .external_lex_state = 2}, + [1570] = {.lex_state = 138, .external_lex_state = 2}, + [1571] = {.lex_state = 138, .external_lex_state = 2}, + [1572] = {.lex_state = 138, .external_lex_state = 2}, + [1573] = {.lex_state = 138, .external_lex_state = 2}, + [1574] = {.lex_state = 138, .external_lex_state = 2}, + [1575] = {.lex_state = 138, .external_lex_state = 2}, + [1576] = {.lex_state = 138, .external_lex_state = 2}, + [1577] = {.lex_state = 138, .external_lex_state = 2}, + [1578] = {.lex_state = 138, .external_lex_state = 2}, + [1579] = {.lex_state = 138, .external_lex_state = 2}, + [1580] = {.lex_state = 138, .external_lex_state = 5}, + [1581] = {.lex_state = 138, .external_lex_state = 2}, + [1582] = {.lex_state = 138, .external_lex_state = 2}, + [1583] = {.lex_state = 138, .external_lex_state = 5}, + [1584] = {.lex_state = 138, .external_lex_state = 2}, + [1585] = {.lex_state = 138, .external_lex_state = 2}, + [1586] = {.lex_state = 138, .external_lex_state = 2}, + [1587] = {.lex_state = 138, .external_lex_state = 2}, + [1588] = {.lex_state = 138, .external_lex_state = 5}, + [1589] = {.lex_state = 138, .external_lex_state = 2}, + [1590] = {.lex_state = 138, .external_lex_state = 2}, + [1591] = {.lex_state = 138, .external_lex_state = 2}, + [1592] = {.lex_state = 138, .external_lex_state = 2}, + [1593] = {.lex_state = 138, .external_lex_state = 2}, + [1594] = {.lex_state = 138, .external_lex_state = 2}, + [1595] = {.lex_state = 138, .external_lex_state = 2}, + [1596] = {.lex_state = 138, .external_lex_state = 2}, + [1597] = {.lex_state = 138, .external_lex_state = 2}, + [1598] = {.lex_state = 138, .external_lex_state = 2}, + [1599] = {.lex_state = 138, .external_lex_state = 2}, + [1600] = {.lex_state = 138, .external_lex_state = 2}, + [1601] = {.lex_state = 138, .external_lex_state = 2}, + [1602] = {.lex_state = 138, .external_lex_state = 2}, + [1603] = {.lex_state = 138, .external_lex_state = 2}, + [1604] = {.lex_state = 138, .external_lex_state = 2}, + [1605] = {.lex_state = 138, .external_lex_state = 2}, + [1606] = {.lex_state = 138, .external_lex_state = 2}, + [1607] = {.lex_state = 138, .external_lex_state = 2}, + [1608] = {.lex_state = 138, .external_lex_state = 2}, + [1609] = {.lex_state = 138, .external_lex_state = 2}, + [1610] = {.lex_state = 138, .external_lex_state = 2}, + [1611] = {.lex_state = 138, .external_lex_state = 2}, + [1612] = {.lex_state = 138, .external_lex_state = 2}, + [1613] = {.lex_state = 138, .external_lex_state = 2}, + [1614] = {.lex_state = 138, .external_lex_state = 2}, + [1615] = {.lex_state = 138, .external_lex_state = 2}, + [1616] = {.lex_state = 138, .external_lex_state = 2}, + [1617] = {.lex_state = 138, .external_lex_state = 2}, + [1618] = {.lex_state = 138, .external_lex_state = 2}, + [1619] = {.lex_state = 138, .external_lex_state = 2}, + [1620] = {.lex_state = 138, .external_lex_state = 2}, + [1621] = {.lex_state = 138, .external_lex_state = 2}, + [1622] = {.lex_state = 138, .external_lex_state = 2}, + [1623] = {.lex_state = 138, .external_lex_state = 2}, + [1624] = {.lex_state = 138, .external_lex_state = 2}, + [1625] = {.lex_state = 138, .external_lex_state = 2}, + [1626] = {.lex_state = 138, .external_lex_state = 2}, + [1627] = {.lex_state = 138, .external_lex_state = 2}, + [1628] = {.lex_state = 138, .external_lex_state = 2}, + [1629] = {.lex_state = 45, .external_lex_state = 2}, + [1630] = {.lex_state = 138, .external_lex_state = 2}, + [1631] = {.lex_state = 138, .external_lex_state = 2}, + [1632] = {.lex_state = 138, .external_lex_state = 2}, + [1633] = {.lex_state = 138, .external_lex_state = 2}, + [1634] = {.lex_state = 138, .external_lex_state = 2}, + [1635] = {.lex_state = 138, .external_lex_state = 2}, + [1636] = {.lex_state = 138, .external_lex_state = 2}, + [1637] = {.lex_state = 138, .external_lex_state = 2}, + [1638] = {.lex_state = 138, .external_lex_state = 2}, + [1639] = {.lex_state = 138, .external_lex_state = 2}, + [1640] = {.lex_state = 138, .external_lex_state = 2}, + [1641] = {.lex_state = 138, .external_lex_state = 2}, + [1642] = {.lex_state = 138, .external_lex_state = 2}, + [1643] = {.lex_state = 138, .external_lex_state = 2}, + [1644] = {.lex_state = 138, .external_lex_state = 2}, + [1645] = {.lex_state = 45, .external_lex_state = 2}, + [1646] = {.lex_state = 138, .external_lex_state = 2}, + [1647] = {.lex_state = 138, .external_lex_state = 2}, + [1648] = {.lex_state = 138, .external_lex_state = 2}, + [1649] = {.lex_state = 138, .external_lex_state = 2}, + [1650] = {.lex_state = 138, .external_lex_state = 2}, + [1651] = {.lex_state = 138, .external_lex_state = 2}, + [1652] = {.lex_state = 138, .external_lex_state = 2}, + [1653] = {.lex_state = 138, .external_lex_state = 2}, + [1654] = {.lex_state = 138, .external_lex_state = 2}, + [1655] = {.lex_state = 138, .external_lex_state = 2}, + [1656] = {.lex_state = 138, .external_lex_state = 2}, + [1657] = {.lex_state = 138, .external_lex_state = 2}, + [1658] = {.lex_state = 138, .external_lex_state = 2}, + [1659] = {.lex_state = 138, .external_lex_state = 2}, + [1660] = {.lex_state = 138, .external_lex_state = 2}, + [1661] = {.lex_state = 138, .external_lex_state = 2}, + [1662] = {.lex_state = 138, .external_lex_state = 2}, + [1663] = {.lex_state = 138, .external_lex_state = 2}, + [1664] = {.lex_state = 138, .external_lex_state = 2}, + [1665] = {.lex_state = 138, .external_lex_state = 2}, + [1666] = {.lex_state = 138, .external_lex_state = 2}, + [1667] = {.lex_state = 138, .external_lex_state = 2}, + [1668] = {.lex_state = 138, .external_lex_state = 2}, + [1669] = {.lex_state = 138, .external_lex_state = 2}, + [1670] = {.lex_state = 138, .external_lex_state = 2}, + [1671] = {.lex_state = 138, .external_lex_state = 2}, + [1672] = {.lex_state = 138, .external_lex_state = 2}, + [1673] = {.lex_state = 138, .external_lex_state = 2}, + [1674] = {.lex_state = 138, .external_lex_state = 2}, + [1675] = {.lex_state = 138, .external_lex_state = 2}, + [1676] = {.lex_state = 138, .external_lex_state = 2}, + [1677] = {.lex_state = 138, .external_lex_state = 2}, + [1678] = {.lex_state = 138, .external_lex_state = 2}, + [1679] = {.lex_state = 138, .external_lex_state = 2}, + [1680] = {.lex_state = 138, .external_lex_state = 2}, + [1681] = {.lex_state = 138, .external_lex_state = 2}, + [1682] = {.lex_state = 138, .external_lex_state = 2}, + [1683] = {.lex_state = 138, .external_lex_state = 2}, + [1684] = {.lex_state = 138, .external_lex_state = 2}, + [1685] = {.lex_state = 138, .external_lex_state = 2}, + [1686] = {.lex_state = 45, .external_lex_state = 2}, + [1687] = {.lex_state = 138, .external_lex_state = 2}, + [1688] = {.lex_state = 138, .external_lex_state = 2}, + [1689] = {.lex_state = 138, .external_lex_state = 2}, + [1690] = {.lex_state = 138, .external_lex_state = 2}, + [1691] = {.lex_state = 138, .external_lex_state = 2}, + [1692] = {.lex_state = 138, .external_lex_state = 2}, + [1693] = {.lex_state = 12, .external_lex_state = 9}, + [1694] = {.lex_state = 45, .external_lex_state = 2}, + [1695] = {.lex_state = 12, .external_lex_state = 9}, + [1696] = {.lex_state = 138, .external_lex_state = 2}, + [1697] = {.lex_state = 138, .external_lex_state = 2}, + [1698] = {.lex_state = 138, .external_lex_state = 2}, + [1699] = {.lex_state = 138, .external_lex_state = 2}, + [1700] = {.lex_state = 12, .external_lex_state = 9}, + [1701] = {.lex_state = 138, .external_lex_state = 2}, + [1702] = {.lex_state = 138, .external_lex_state = 2}, + [1703] = {.lex_state = 12, .external_lex_state = 9}, + [1704] = {.lex_state = 138, .external_lex_state = 2}, + [1705] = {.lex_state = 138, .external_lex_state = 2}, + [1706] = {.lex_state = 138, .external_lex_state = 2}, + [1707] = {.lex_state = 138, .external_lex_state = 2}, + [1708] = {.lex_state = 138, .external_lex_state = 2}, + [1709] = {.lex_state = 138, .external_lex_state = 2}, + [1710] = {.lex_state = 138, .external_lex_state = 2}, + [1711] = {.lex_state = 138, .external_lex_state = 2}, + [1712] = {.lex_state = 138, .external_lex_state = 2}, + [1713] = {.lex_state = 138, .external_lex_state = 2}, + [1714] = {.lex_state = 138, .external_lex_state = 2}, + [1715] = {.lex_state = 138, .external_lex_state = 2}, + [1716] = {.lex_state = 138, .external_lex_state = 2}, + [1717] = {.lex_state = 138, .external_lex_state = 2}, + [1718] = {.lex_state = 138, .external_lex_state = 2}, + [1719] = {.lex_state = 138, .external_lex_state = 2}, + [1720] = {.lex_state = 138, .external_lex_state = 2}, + [1721] = {.lex_state = 138, .external_lex_state = 2}, + [1722] = {.lex_state = 138, .external_lex_state = 2}, + [1723] = {.lex_state = 138, .external_lex_state = 2}, + [1724] = {.lex_state = 138, .external_lex_state = 2}, + [1725] = {.lex_state = 138, .external_lex_state = 2}, + [1726] = {.lex_state = 138, .external_lex_state = 2}, + [1727] = {.lex_state = 138, .external_lex_state = 2}, + [1728] = {.lex_state = 138, .external_lex_state = 2}, + [1729] = {.lex_state = 138, .external_lex_state = 2}, + [1730] = {.lex_state = 138, .external_lex_state = 2}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { + [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [sym_hash_bang_line] = ACTIONS(1), @@ -8994,7 +8555,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), - [sym_glimmer_opening_tag] = ACTIONS(1), [anon_sym_LT] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), @@ -9079,73 +8639,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), [sym_jsx_text] = ACTIONS(1), }, - [1] = { - [sym_program] = STATE(1728), - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(20), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(1)] = { + [sym_program] = STATE(1701), + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(13), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(1138), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -9172,127 +8731,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [2] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(26), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1715), - [sym_object_assignment_pattern] = STATE(1356), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1715), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1715), - [sym_spread_element] = STATE(1322), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(831), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [sym_rest_pattern] = STATE(1356), - [sym_method_definition] = STATE(1322), - [sym_pair] = STATE(1322), - [sym_pair_pattern] = STATE(1356), - [sym__property_name] = STATE(1350), - [sym_computed_property_name] = STATE(1350), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(919), - [aux_sym_object_repeat1] = STATE(1329), - [aux_sym_object_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(99), - [anon_sym_export] = ACTIONS(101), - [anon_sym_STAR] = ACTIONS(103), + [STATE(2)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1635), + [sym_object_assignment_pattern] = STATE(1351), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1635), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1635), + [sym_spread_element] = STATE(1360), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(747), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [sym_rest_pattern] = STATE(1351), + [sym_method_definition] = STATE(1360), + [sym_pair] = STATE(1360), + [sym_pair_pattern] = STATE(1351), + [sym__property_name] = STATE(1284), + [sym_computed_property_name] = STATE(1284), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(905), + [aux_sym_object_repeat1] = STATE(1286), + [aux_sym_object_pattern_repeat1] = STATE(1287), + [sym_identifier] = ACTIONS(97), + [anon_sym_export] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(105), - [anon_sym_RBRACE] = ACTIONS(107), + [anon_sym_COMMA] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(105), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(109), + [anon_sym_let] = ACTIONS(107), [anon_sym_const] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), @@ -9309,130 +8866,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(51), [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(113), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(111), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(117), - [sym_private_property_identifier] = ACTIONS(119), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(121), - [aux_sym_method_definition_token1] = ACTIONS(123), - [anon_sym_get] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(115), + [sym_private_property_identifier] = ACTIONS(117), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(119), + [aux_sym_method_definition_token1] = ACTIONS(121), + [anon_sym_get] = ACTIONS(123), + [anon_sym_set] = ACTIONS(123), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [3] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(21), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1715), - [sym_object_assignment_pattern] = STATE(1356), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1715), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1715), - [sym_spread_element] = STATE(1352), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(831), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [sym_rest_pattern] = STATE(1356), - [sym_method_definition] = STATE(1352), - [sym_pair] = STATE(1352), - [sym_pair_pattern] = STATE(1356), - [sym__property_name] = STATE(1350), - [sym_computed_property_name] = STATE(1350), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(919), - [aux_sym_object_repeat1] = STATE(1342), - [aux_sym_object_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(127), - [anon_sym_export] = ACTIONS(129), - [anon_sym_STAR] = ACTIONS(103), + [STATE(3)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1635), + [sym_object_assignment_pattern] = STATE(1351), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1635), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1635), + [sym_spread_element] = STATE(1360), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(747), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [sym_rest_pattern] = STATE(1351), + [sym_method_definition] = STATE(1360), + [sym_pair] = STATE(1360), + [sym_pair_pattern] = STATE(1351), + [sym__property_name] = STATE(1284), + [sym_computed_property_name] = STATE(1284), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(905), + [aux_sym_object_repeat1] = STATE(1286), + [aux_sym_object_pattern_repeat1] = STATE(1287), + [sym_identifier] = ACTIONS(97), + [anon_sym_export] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(105), - [anon_sym_RBRACE] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(125), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(133), + [anon_sym_let] = ACTIONS(107), [anon_sym_const] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), @@ -9449,126 +9004,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(51), [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(135), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(111), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(117), - [sym_private_property_identifier] = ACTIONS(119), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(137), - [aux_sym_method_definition_token1] = ACTIONS(123), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(139), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(115), + [sym_private_property_identifier] = ACTIONS(117), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(119), + [aux_sym_method_definition_token1] = ACTIONS(121), + [anon_sym_get] = ACTIONS(123), + [anon_sym_set] = ACTIONS(123), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [4] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(21), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1715), - [sym_object_assignment_pattern] = STATE(1356), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1715), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1715), - [sym_spread_element] = STATE(1352), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(831), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [sym_rest_pattern] = STATE(1356), - [sym_method_definition] = STATE(1352), - [sym_pair] = STATE(1352), - [sym_pair_pattern] = STATE(1356), - [sym__property_name] = STATE(1350), - [sym_computed_property_name] = STATE(1350), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(919), - [aux_sym_object_repeat1] = STATE(1342), - [aux_sym_object_pattern_repeat1] = STATE(1341), + [STATE(4)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(18), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1635), + [sym_object_assignment_pattern] = STATE(1351), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1635), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1635), + [sym_spread_element] = STATE(1320), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(747), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [sym_rest_pattern] = STATE(1351), + [sym_method_definition] = STATE(1320), + [sym_pair] = STATE(1320), + [sym_pair_pattern] = STATE(1351), + [sym__property_name] = STATE(1284), + [sym_computed_property_name] = STATE(1284), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(905), + [aux_sym_object_repeat1] = STATE(1322), + [aux_sym_object_pattern_repeat1] = STATE(1287), [sym_identifier] = ACTIONS(127), [anon_sym_export] = ACTIONS(129), - [anon_sym_STAR] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(101), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(105), - [anon_sym_RBRACE] = ACTIONS(141), + [anon_sym_COMMA] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(131), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -9589,130 +9142,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(51), [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), [anon_sym_async] = ACTIONS(135), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(117), - [sym_private_property_identifier] = ACTIONS(119), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(115), + [sym_private_property_identifier] = ACTIONS(117), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(137), - [aux_sym_method_definition_token1] = ACTIONS(123), + [aux_sym_method_definition_token1] = ACTIONS(121), [anon_sym_get] = ACTIONS(139), [anon_sym_set] = ACTIONS(139), - [sym_preproc] = ACTIONS(97), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [5] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1715), - [sym_object_assignment_pattern] = STATE(1356), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1715), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1715), - [sym_spread_element] = STATE(1352), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(831), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [sym_rest_pattern] = STATE(1356), - [sym_method_definition] = STATE(1352), - [sym_pair] = STATE(1352), - [sym_pair_pattern] = STATE(1356), - [sym__property_name] = STATE(1350), - [sym_computed_property_name] = STATE(1350), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(919), - [aux_sym_object_repeat1] = STATE(1342), - [aux_sym_object_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(127), - [anon_sym_export] = ACTIONS(129), - [anon_sym_STAR] = ACTIONS(103), + [STATE(5)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1635), + [sym_object_assignment_pattern] = STATE(1351), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1635), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1635), + [sym_spread_element] = STATE(1360), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(747), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [sym_rest_pattern] = STATE(1351), + [sym_method_definition] = STATE(1360), + [sym_pair] = STATE(1360), + [sym_pair_pattern] = STATE(1351), + [sym__property_name] = STATE(1284), + [sym_computed_property_name] = STATE(1284), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(905), + [aux_sym_object_repeat1] = STATE(1286), + [aux_sym_object_pattern_repeat1] = STATE(1287), + [sym_identifier] = ACTIONS(97), + [anon_sym_export] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(105), - [anon_sym_RBRACE] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(141), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(133), + [anon_sym_let] = ACTIONS(107), [anon_sym_const] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), @@ -9729,130 +9280,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(51), [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(135), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(111), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(117), - [sym_private_property_identifier] = ACTIONS(119), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(137), - [aux_sym_method_definition_token1] = ACTIONS(123), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(139), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(115), + [sym_private_property_identifier] = ACTIONS(117), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(119), + [aux_sym_method_definition_token1] = ACTIONS(121), + [anon_sym_get] = ACTIONS(123), + [anon_sym_set] = ACTIONS(123), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [6] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(26), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1715), - [sym_object_assignment_pattern] = STATE(1356), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1715), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1715), - [sym_spread_element] = STATE(1322), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(831), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [sym_rest_pattern] = STATE(1356), - [sym_method_definition] = STATE(1322), - [sym_pair] = STATE(1322), - [sym_pair_pattern] = STATE(1356), - [sym__property_name] = STATE(1350), - [sym_computed_property_name] = STATE(1350), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(919), - [aux_sym_object_repeat1] = STATE(1329), - [aux_sym_object_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(145), - [anon_sym_export] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(103), + [STATE(6)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(18), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1635), + [sym_object_assignment_pattern] = STATE(1351), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1635), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1635), + [sym_spread_element] = STATE(1320), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(747), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [sym_rest_pattern] = STATE(1351), + [sym_method_definition] = STATE(1320), + [sym_pair] = STATE(1320), + [sym_pair_pattern] = STATE(1351), + [sym__property_name] = STATE(1284), + [sym_computed_property_name] = STATE(1284), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(905), + [aux_sym_object_repeat1] = STATE(1322), + [aux_sym_object_pattern_repeat1] = STATE(1287), + [sym_identifier] = ACTIONS(143), + [anon_sym_export] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(101), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(105), - [anon_sym_RBRACE] = ACTIONS(107), + [anon_sym_COMMA] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(131), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(149), + [anon_sym_let] = ACTIONS(147), [anon_sym_const] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), @@ -9869,244 +9418,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(51), [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(117), - [sym_private_property_identifier] = ACTIONS(119), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(153), - [aux_sym_method_definition_token1] = ACTIONS(123), - [anon_sym_get] = ACTIONS(155), - [anon_sym_set] = ACTIONS(155), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(115), + [sym_private_property_identifier] = ACTIONS(117), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(151), + [aux_sym_method_definition_token1] = ACTIONS(121), + [anon_sym_get] = ACTIONS(153), + [anon_sym_set] = ACTIONS(153), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [7] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), + [STATE(7)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1195), - [ts_builtin_sym_end] = ACTIONS(157), - [sym_identifier] = ACTIONS(159), - [anon_sym_export] = ACTIONS(162), - [anon_sym_default] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(157), - [anon_sym_import] = ACTIONS(170), - [anon_sym_with] = ACTIONS(173), - [anon_sym_var] = ACTIONS(176), - [anon_sym_let] = ACTIONS(179), - [anon_sym_const] = ACTIONS(182), - [anon_sym_if] = ACTIONS(185), - [anon_sym_switch] = ACTIONS(188), - [anon_sym_for] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(194), - [anon_sym_SEMI] = ACTIONS(197), - [anon_sym_await] = ACTIONS(200), - [anon_sym_while] = ACTIONS(203), - [anon_sym_do] = ACTIONS(206), - [anon_sym_try] = ACTIONS(209), - [anon_sym_break] = ACTIONS(212), - [anon_sym_continue] = ACTIONS(215), - [anon_sym_debugger] = ACTIONS(218), - [anon_sym_return] = ACTIONS(221), - [anon_sym_throw] = ACTIONS(224), - [anon_sym_case] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(230), - [sym_glimmer_opening_tag] = ACTIONS(233), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(239), - [anon_sym_SQUOTE] = ACTIONS(242), - [anon_sym_class] = ACTIONS(245), - [anon_sym_async] = ACTIONS(248), - [anon_sym_function] = ACTIONS(251), - [anon_sym_new] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_BANG] = ACTIONS(263), - [anon_sym_TILDE] = ACTIONS(263), - [anon_sym_typeof] = ACTIONS(257), - [anon_sym_void] = ACTIONS(257), - [anon_sym_delete] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), + [aux_sym_export_statement_repeat1] = STATE(1138), + [ts_builtin_sym_end] = ACTIONS(155), + [sym_identifier] = ACTIONS(157), + [anon_sym_export] = ACTIONS(160), + [anon_sym_default] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(155), + [anon_sym_import] = ACTIONS(168), + [anon_sym_with] = ACTIONS(171), + [anon_sym_var] = ACTIONS(174), + [anon_sym_let] = ACTIONS(177), + [anon_sym_const] = ACTIONS(180), + [anon_sym_if] = ACTIONS(183), + [anon_sym_switch] = ACTIONS(186), + [anon_sym_for] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(192), + [anon_sym_SEMI] = ACTIONS(195), + [anon_sym_await] = ACTIONS(198), + [anon_sym_while] = ACTIONS(201), + [anon_sym_do] = ACTIONS(204), + [anon_sym_try] = ACTIONS(207), + [anon_sym_break] = ACTIONS(210), + [anon_sym_continue] = ACTIONS(213), + [anon_sym_debugger] = ACTIONS(216), + [anon_sym_return] = ACTIONS(219), + [anon_sym_throw] = ACTIONS(222), + [anon_sym_case] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(234), + [anon_sym_SQUOTE] = ACTIONS(237), + [anon_sym_class] = ACTIONS(240), + [anon_sym_async] = ACTIONS(243), + [anon_sym_function] = ACTIONS(246), + [anon_sym_new] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(252), + [anon_sym_DASH] = ACTIONS(252), + [anon_sym_SLASH] = ACTIONS(255), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_typeof] = ACTIONS(252), + [anon_sym_void] = ACTIONS(252), + [anon_sym_delete] = ACTIONS(252), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(269), - [sym_number] = ACTIONS(272), - [sym_private_property_identifier] = ACTIONS(275), - [sym_this] = ACTIONS(278), - [sym_super] = ACTIONS(278), - [sym_true] = ACTIONS(278), - [sym_false] = ACTIONS(278), - [sym_null] = ACTIONS(278), - [sym_undefined] = ACTIONS(281), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_static] = ACTIONS(287), - [anon_sym_get] = ACTIONS(287), - [anon_sym_set] = ACTIONS(287), - [sym_preproc] = ACTIONS(290), + [anon_sym_BQUOTE] = ACTIONS(264), + [sym_number] = ACTIONS(267), + [sym_private_property_identifier] = ACTIONS(270), + [sym_this] = ACTIONS(273), + [sym_super] = ACTIONS(273), + [sym_true] = ACTIONS(273), + [sym_false] = ACTIONS(273), + [sym_null] = ACTIONS(273), + [sym_undefined] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_static] = ACTIONS(282), + [anon_sym_get] = ACTIONS(282), + [anon_sym_set] = ACTIONS(282), + [sym_preproc] = ACTIONS(285), [sym_html_comment] = ACTIONS(5), }, - [8] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(8)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(10), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(293), + [anon_sym_default] = ACTIONS(288), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(295), + [anon_sym_RBRACE] = ACTIONS(290), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10126,115 +9671,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(49), [anon_sym_return] = ACTIONS(51), [anon_sym_throw] = ACTIONS(53), - [anon_sym_case] = ACTIONS(293), + [anon_sym_case] = ACTIONS(288), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [9] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(9)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(11), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(297), + [anon_sym_default] = ACTIONS(292), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(299), + [anon_sym_RBRACE] = ACTIONS(294), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10254,115 +9797,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(49), [anon_sym_return] = ACTIONS(51), [anon_sym_throw] = ACTIONS(53), - [anon_sym_case] = ACTIONS(297), + [anon_sym_case] = ACTIONS(292), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [10] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(10)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(301), + [anon_sym_default] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(303), + [anon_sym_RBRACE] = ACTIONS(298), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10382,115 +9923,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(49), [anon_sym_return] = ACTIONS(51), [anon_sym_throw] = ACTIONS(53), - [anon_sym_case] = ACTIONS(301), + [anon_sym_case] = ACTIONS(296), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [11] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(8), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_program_repeat1] = STATE(8), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(11)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(305), + [anon_sym_default] = ACTIONS(300), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(307), + [anon_sym_RBRACE] = ACTIONS(302), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10510,114 +10049,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(49), [anon_sym_return] = ACTIONS(51), [anon_sym_throw] = ACTIONS(53), - [anon_sym_case] = ACTIONS(305), + [anon_sym_case] = ACTIONS(300), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [12] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), + [STATE(12)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1195), + [aux_sym_export_statement_repeat1] = STATE(1138), + [ts_builtin_sym_end] = ACTIONS(304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(309), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10639,108 +10176,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [13] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(23), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(1195), - [ts_builtin_sym_end] = ACTIONS(311), + [STATE(13)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1138), + [ts_builtin_sym_end] = ACTIONS(306), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -10765,111 +10300,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [14] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(12), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(14)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(308), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10891,111 +10424,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [15] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(15)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_RBRACE] = ACTIONS(310), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11017,111 +10548,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [16] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), + [STATE(16)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1195), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(317), + [anon_sym_RBRACE] = ACTIONS(312), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11143,111 +10672,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [17] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), + [STATE(17)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(1195), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(314), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11269,111 +10796,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [18] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), + [STATE(18)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1195), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_RBRACE] = ACTIONS(316), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11395,111 +10920,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [19] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(21), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(19)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_RBRACE] = ACTIONS(318), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11521,111 +11044,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [20] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1195), - [ts_builtin_sym_end] = ACTIONS(311), + [STATE(20)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(19), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(320), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11647,111 +11168,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [21] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(21)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(325), + [anon_sym_RBRACE] = ACTIONS(322), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11773,111 +11292,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [22] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(15), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(22)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_RBRACE] = ACTIONS(324), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11899,111 +11416,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [23] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), + [STATE(23)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1195), - [ts_builtin_sym_end] = ACTIONS(329), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(326), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -12025,111 +11540,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [24] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(24)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(12), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(1138), + [ts_builtin_sym_end] = ACTIONS(306), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(331), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -12151,123 +11664,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [25] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(26), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(333), + [STATE(25)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(1632), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1173), + [sym_identifier] = ACTIONS(328), + [anon_sym_export] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(332), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(334), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(336), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), + [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), + [anon_sym_for] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), + [anon_sym_while] = ACTIONS(342), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -12277,111 +11786,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(344), + [anon_sym_async] = ACTIONS(346), + [anon_sym_function] = ACTIONS(348), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(350), + [anon_sym_get] = ACTIONS(350), + [anon_sym_set] = ACTIONS(350), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [26] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(26)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(413), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(335), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -12403,121 +11908,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [27] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(390), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1175), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), + [STATE(27)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(382), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1173), + [sym_identifier] = ACTIONS(328), + [anon_sym_export] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(332), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(343), + [anon_sym_with] = ACTIONS(334), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(345), + [anon_sym_let] = ACTIONS(336), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(347), + [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(349), + [anon_sym_for] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(351), + [anon_sym_while] = ACTIONS(342), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -12527,106 +12030,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(353), - [anon_sym_async] = ACTIONS(355), - [anon_sym_function] = ACTIONS(357), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(344), + [anon_sym_async] = ACTIONS(346), + [anon_sym_function] = ACTIONS(348), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(359), - [anon_sym_get] = ACTIONS(359), - [anon_sym_set] = ACTIONS(359), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(350), + [anon_sym_get] = ACTIONS(350), + [anon_sym_set] = ACTIONS(350), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [28] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(405), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(28)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(382), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -12651,245 +12152,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [29] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(406), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), - [sym_html_comment] = ACTIONS(5), - }, - [30] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(386), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1175), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), + [STATE(29)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(413), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1173), + [sym_identifier] = ACTIONS(328), + [anon_sym_export] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(332), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(343), + [anon_sym_with] = ACTIONS(334), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(345), + [anon_sym_let] = ACTIONS(336), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(347), + [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(349), + [anon_sym_for] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(351), + [anon_sym_while] = ACTIONS(342), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -12899,106 +12274,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(353), - [anon_sym_async] = ACTIONS(355), - [anon_sym_function] = ACTIONS(357), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(344), + [anon_sym_async] = ACTIONS(346), + [anon_sym_function] = ACTIONS(348), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(359), - [anon_sym_get] = ACTIONS(359), - [anon_sym_set] = ACTIONS(359), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(350), + [anon_sym_get] = ACTIONS(350), + [anon_sym_set] = ACTIONS(350), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [31] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(347), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(30)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(416), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -13023,121 +12396,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [32] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(354), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1175), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), + [STATE(31)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(379), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1173), + [sym_identifier] = ACTIONS(328), + [anon_sym_export] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(332), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(343), + [anon_sym_with] = ACTIONS(334), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(345), + [anon_sym_let] = ACTIONS(336), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(347), + [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(349), + [anon_sym_for] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(351), + [anon_sym_while] = ACTIONS(342), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -13147,121 +12518,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(353), - [anon_sym_async] = ACTIONS(355), - [anon_sym_function] = ACTIONS(357), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(344), + [anon_sym_async] = ACTIONS(346), + [anon_sym_function] = ACTIONS(348), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(359), - [anon_sym_get] = ACTIONS(359), - [anon_sym_set] = ACTIONS(359), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(350), + [anon_sym_get] = ACTIONS(350), + [anon_sym_set] = ACTIONS(350), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [33] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(359), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [STATE(32)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(1333), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1173), + [sym_identifier] = ACTIONS(328), + [anon_sym_export] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(332), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(334), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(336), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), + [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), + [anon_sym_for] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), + [anon_sym_while] = ACTIONS(342), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -13271,121 +12640,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(344), + [anon_sym_async] = ACTIONS(346), + [anon_sym_function] = ACTIONS(348), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(350), + [anon_sym_get] = ACTIONS(350), + [anon_sym_set] = ACTIONS(350), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [34] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(390), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [STATE(33)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(383), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1173), + [sym_identifier] = ACTIONS(328), + [anon_sym_export] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(332), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(334), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(336), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), + [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), + [anon_sym_for] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), + [anon_sym_while] = ACTIONS(342), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -13395,121 +12762,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(344), + [anon_sym_async] = ACTIONS(346), + [anon_sym_function] = ACTIONS(348), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(350), + [anon_sym_get] = ACTIONS(350), + [anon_sym_set] = ACTIONS(350), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [35] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(362), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1175), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), + [STATE(34)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(391), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1173), + [sym_identifier] = ACTIONS(328), + [anon_sym_export] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(332), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(343), + [anon_sym_with] = ACTIONS(334), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(345), + [anon_sym_let] = ACTIONS(336), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(347), + [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(349), + [anon_sym_for] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(351), + [anon_sym_while] = ACTIONS(342), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -13519,106 +12884,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(353), - [anon_sym_async] = ACTIONS(355), - [anon_sym_function] = ACTIONS(357), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(344), + [anon_sym_async] = ACTIONS(346), + [anon_sym_function] = ACTIONS(348), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(359), - [anon_sym_get] = ACTIONS(359), - [anon_sym_set] = ACTIONS(359), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(350), + [anon_sym_get] = ACTIONS(350), + [anon_sym_set] = ACTIONS(350), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [36] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(401), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(35)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(379), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -13643,121 +13006,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [37] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(386), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [STATE(36)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(401), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1173), + [sym_identifier] = ACTIONS(328), + [anon_sym_export] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(332), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(334), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(336), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), + [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), + [anon_sym_for] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), + [anon_sym_while] = ACTIONS(342), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -13767,121 +13128,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(344), + [anon_sym_async] = ACTIONS(346), + [anon_sym_function] = ACTIONS(348), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(350), + [anon_sym_get] = ACTIONS(350), + [anon_sym_set] = ACTIONS(350), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [38] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(373), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1175), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), + [STATE(37)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(416), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1173), + [sym_identifier] = ACTIONS(328), + [anon_sym_export] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(332), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(343), + [anon_sym_with] = ACTIONS(334), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(345), + [anon_sym_let] = ACTIONS(336), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(347), + [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(349), + [anon_sym_for] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(351), + [anon_sym_while] = ACTIONS(342), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -13891,121 +13250,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(353), - [anon_sym_async] = ACTIONS(355), - [anon_sym_function] = ACTIONS(357), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(344), + [anon_sym_async] = ACTIONS(346), + [anon_sym_function] = ACTIONS(348), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(359), - [anon_sym_get] = ACTIONS(359), - [anon_sym_set] = ACTIONS(359), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(350), + [anon_sym_get] = ACTIONS(350), + [anon_sym_set] = ACTIONS(350), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [39] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(392), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1175), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), + [STATE(38)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(417), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1173), + [sym_identifier] = ACTIONS(328), + [anon_sym_export] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(332), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(343), + [anon_sym_with] = ACTIONS(334), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(345), + [anon_sym_let] = ACTIONS(336), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(347), + [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(349), + [anon_sym_for] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(351), + [anon_sym_while] = ACTIONS(342), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -14015,121 +13372,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(353), - [anon_sym_async] = ACTIONS(355), - [anon_sym_function] = ACTIONS(357), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(344), + [anon_sym_async] = ACTIONS(346), + [anon_sym_function] = ACTIONS(348), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(359), - [anon_sym_get] = ACTIONS(359), - [anon_sym_set] = ACTIONS(359), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(350), + [anon_sym_get] = ACTIONS(350), + [anon_sym_set] = ACTIONS(350), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [40] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(401), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1175), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), + [STATE(39)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(418), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1173), + [sym_identifier] = ACTIONS(328), + [anon_sym_export] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(332), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(343), + [anon_sym_with] = ACTIONS(334), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(345), + [anon_sym_let] = ACTIONS(336), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(347), + [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(349), + [anon_sym_for] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(351), + [anon_sym_while] = ACTIONS(342), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -14139,121 +13494,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(353), - [anon_sym_async] = ACTIONS(355), - [anon_sym_function] = ACTIONS(357), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(344), + [anon_sym_async] = ACTIONS(346), + [anon_sym_function] = ACTIONS(348), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(359), - [anon_sym_get] = ACTIONS(359), - [anon_sym_set] = ACTIONS(359), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(350), + [anon_sym_get] = ACTIONS(350), + [anon_sym_set] = ACTIONS(350), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [41] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(393), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1175), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), + [STATE(40)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(423), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1173), + [sym_identifier] = ACTIONS(328), + [anon_sym_export] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(332), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(343), + [anon_sym_with] = ACTIONS(334), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(345), + [anon_sym_let] = ACTIONS(336), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(347), + [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(349), + [anon_sym_for] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(351), + [anon_sym_while] = ACTIONS(342), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -14263,121 +13616,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(353), - [anon_sym_async] = ACTIONS(355), - [anon_sym_function] = ACTIONS(357), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(344), + [anon_sym_async] = ACTIONS(346), + [anon_sym_function] = ACTIONS(348), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(359), - [anon_sym_get] = ACTIONS(359), - [anon_sym_set] = ACTIONS(359), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(350), + [anon_sym_get] = ACTIONS(350), + [anon_sym_set] = ACTIONS(350), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [42] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(418), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1175), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), + [STATE(41)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(366), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1173), + [sym_identifier] = ACTIONS(328), + [anon_sym_export] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(332), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(343), + [anon_sym_with] = ACTIONS(334), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(345), + [anon_sym_let] = ACTIONS(336), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(347), + [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(349), + [anon_sym_for] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(351), + [anon_sym_while] = ACTIONS(342), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -14387,121 +13738,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(353), - [anon_sym_async] = ACTIONS(355), - [anon_sym_function] = ACTIONS(357), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(344), + [anon_sym_async] = ACTIONS(346), + [anon_sym_function] = ACTIONS(348), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(359), - [anon_sym_get] = ACTIONS(359), - [anon_sym_set] = ACTIONS(359), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(350), + [anon_sym_get] = ACTIONS(350), + [anon_sym_set] = ACTIONS(350), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [43] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(405), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1175), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), + [STATE(42)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(372), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1173), + [sym_identifier] = ACTIONS(328), + [anon_sym_export] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(332), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(343), + [anon_sym_with] = ACTIONS(334), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(345), + [anon_sym_let] = ACTIONS(336), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(347), + [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(349), + [anon_sym_for] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(351), + [anon_sym_while] = ACTIONS(342), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -14511,121 +13860,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(353), - [anon_sym_async] = ACTIONS(355), - [anon_sym_function] = ACTIONS(357), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(344), + [anon_sym_async] = ACTIONS(346), + [anon_sym_function] = ACTIONS(348), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(359), - [anon_sym_get] = ACTIONS(359), - [anon_sym_set] = ACTIONS(359), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(350), + [anon_sym_get] = ACTIONS(350), + [anon_sym_set] = ACTIONS(350), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [44] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(373), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [STATE(43)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(375), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1173), + [sym_identifier] = ACTIONS(328), + [anon_sym_export] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(332), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(334), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(336), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), + [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), + [anon_sym_for] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), + [anon_sym_while] = ACTIONS(342), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -14635,121 +13982,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(344), + [anon_sym_async] = ACTIONS(346), + [anon_sym_function] = ACTIONS(348), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(350), + [anon_sym_get] = ACTIONS(350), + [anon_sym_set] = ACTIONS(350), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [45] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(1648), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1175), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), + [STATE(44)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(377), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1173), + [sym_identifier] = ACTIONS(328), + [anon_sym_export] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(332), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(343), + [anon_sym_with] = ACTIONS(334), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(345), + [anon_sym_let] = ACTIONS(336), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(347), + [anon_sym_if] = ACTIONS(338), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(349), + [anon_sym_for] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(351), + [anon_sym_while] = ACTIONS(342), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -14759,121 +14104,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(353), - [anon_sym_async] = ACTIONS(355), - [anon_sym_function] = ACTIONS(357), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(344), + [anon_sym_async] = ACTIONS(346), + [anon_sym_function] = ACTIONS(348), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(359), - [anon_sym_get] = ACTIONS(359), - [anon_sym_set] = ACTIONS(359), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(350), + [anon_sym_get] = ACTIONS(350), + [anon_sym_set] = ACTIONS(350), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [46] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(406), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1175), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), + [STATE(45)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(401), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(343), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(345), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(347), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(349), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(351), + [anon_sym_while] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -14883,121 +14226,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(353), - [anon_sym_async] = ACTIONS(355), - [anon_sym_function] = ACTIONS(357), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(359), - [anon_sym_get] = ACTIONS(359), - [anon_sym_set] = ACTIONS(359), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [47] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), + [STATE(46)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), [sym_statement] = STATE(391), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1175), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(343), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(345), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(347), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(349), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(351), + [anon_sym_while] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -15007,121 +14348,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(353), - [anon_sym_async] = ACTIONS(355), - [anon_sym_function] = ACTIONS(357), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(359), - [anon_sym_get] = ACTIONS(359), - [anon_sym_set] = ACTIONS(359), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [48] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(414), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1175), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), + [STATE(47)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(342), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(343), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(345), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(347), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(349), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(351), + [anon_sym_while] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -15131,121 +14470,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(353), - [anon_sym_async] = ACTIONS(355), - [anon_sym_function] = ACTIONS(357), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(359), - [anon_sym_get] = ACTIONS(359), - [anon_sym_set] = ACTIONS(359), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [49] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(359), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1175), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), + [STATE(48)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(417), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(343), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(345), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(347), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(349), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(351), + [anon_sym_while] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), [anon_sym_try] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), @@ -15255,106 +14592,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(353), - [anon_sym_async] = ACTIONS(355), - [anon_sym_function] = ACTIONS(357), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(359), - [anon_sym_get] = ACTIONS(359), - [anon_sym_set] = ACTIONS(359), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [50] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), + [STATE(49)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), [sym_statement] = STATE(418), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -15379,106 +14714,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [51] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(393), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(50)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(423), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -15503,106 +14836,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [52] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(354), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(51)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(383), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -15627,106 +14958,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [53] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(392), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(52)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(366), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -15751,106 +15080,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [54] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(391), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(53)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(372), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -15875,106 +15202,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [55] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(414), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(54)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(375), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -15999,230 +15324,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), - [sym_html_comment] = ACTIONS(5), - }, - [56] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(1348), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1175), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(343), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(345), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(347), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(351), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(353), - [anon_sym_async] = ACTIONS(355), - [anon_sym_function] = ACTIONS(357), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(359), - [anon_sym_get] = ACTIONS(359), - [anon_sym_set] = ACTIONS(359), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [57] = { - [sym_export_statement] = STATE(367), - [sym_declaration] = STATE(367), - [sym_import] = STATE(1130), - [sym_import_statement] = STATE(367), - [sym_statement] = STATE(362), - [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_statement_block] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_for_in_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_with_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_debugger_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_empty_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1420), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1195), + [STATE(55)] = { + [sym_export_statement] = STATE(402), + [sym_declaration] = STATE(402), + [sym_import] = STATE(1215), + [sym_import_statement] = STATE(402), + [sym_statement] = STATE(377), + [sym_expression_statement] = STATE(402), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_for_in_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_with_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_debugger_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_empty_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1397), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1138), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -16247,22423 +15446,21974 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [sym_preproc] = ACTIONS(97), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [sym_preproc] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [58] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(571), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_COMMA] = ACTIONS(369), - [anon_sym_RBRACE] = ACTIONS(369), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(369), - [anon_sym_RPAREN] = ACTIONS(369), - [anon_sym_await] = ACTIONS(375), - [anon_sym_in] = ACTIONS(377), - [anon_sym_COLON] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_RBRACK] = ACTIONS(369), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [sym_optional_chain] = ACTIONS(369), - [anon_sym_new] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_GT_GT_GT] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(369), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(369), - [anon_sym_STAR_STAR] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_QMARK_QMARK] = ACTIONS(369), - [anon_sym_instanceof] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(399), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(56)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(577), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(356), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_COMMA] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(360), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_SEMI] = ACTIONS(360), + [anon_sym_RPAREN] = ACTIONS(360), + [anon_sym_await] = ACTIONS(366), + [anon_sym_in] = ACTIONS(368), + [anon_sym_COLON] = ACTIONS(360), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_RBRACK] = ACTIONS(360), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_GT] = ACTIONS(368), + [anon_sym_DOT] = ACTIONS(368), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [sym_optional_chain] = ACTIONS(360), + [anon_sym_new] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(360), + [anon_sym_PIPE_PIPE] = ACTIONS(360), + [anon_sym_GT_GT] = ACTIONS(368), + [anon_sym_GT_GT_GT] = ACTIONS(360), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_AMP] = ACTIONS(368), + [anon_sym_CARET] = ACTIONS(360), + [anon_sym_PIPE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_PERCENT] = ACTIONS(360), + [anon_sym_STAR_STAR] = ACTIONS(360), + [anon_sym_LT_EQ] = ACTIONS(360), + [anon_sym_EQ_EQ] = ACTIONS(368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(360), + [anon_sym_BANG_EQ] = ACTIONS(368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(360), + [anon_sym_GT_EQ] = ACTIONS(360), + [anon_sym_QMARK_QMARK] = ACTIONS(360), + [anon_sym_instanceof] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), - [sym__ternary_qmark] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + [sym__ternary_qmark] = ACTIONS(360), [sym_html_comment] = ACTIONS(5), }, - [59] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(674), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_STAR] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_COMMA] = ACTIONS(369), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), + [STATE(57)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(709), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_COMMA] = ACTIONS(360), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(369), - [anon_sym_await] = ACTIONS(427), - [anon_sym_in] = ACTIONS(377), - [anon_sym_of] = ACTIONS(377), - [anon_sym_yield] = ACTIONS(429), + [anon_sym_SEMI] = ACTIONS(360), + [anon_sym_await] = ACTIONS(416), + [anon_sym_in] = ACTIONS(368), + [anon_sym_of] = ACTIONS(368), + [anon_sym_yield] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [sym_optional_chain] = ACTIONS(369), - [anon_sym_new] = ACTIONS(437), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_GT_GT_GT] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(369), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(369), - [anon_sym_STAR_STAR] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_QMARK_QMARK] = ACTIONS(369), - [anon_sym_instanceof] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(420), + [anon_sym_GT] = ACTIONS(368), + [anon_sym_DOT] = ACTIONS(368), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [sym_optional_chain] = ACTIONS(360), + [anon_sym_new] = ACTIONS(428), + [anon_sym_AMP_AMP] = ACTIONS(360), + [anon_sym_PIPE_PIPE] = ACTIONS(360), + [anon_sym_GT_GT] = ACTIONS(368), + [anon_sym_GT_GT_GT] = ACTIONS(360), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_AMP] = ACTIONS(368), + [anon_sym_CARET] = ACTIONS(360), + [anon_sym_PIPE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_PERCENT] = ACTIONS(360), + [anon_sym_STAR_STAR] = ACTIONS(360), + [anon_sym_LT_EQ] = ACTIONS(360), + [anon_sym_EQ_EQ] = ACTIONS(368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(360), + [anon_sym_BANG_EQ] = ACTIONS(368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(360), + [anon_sym_GT_EQ] = ACTIONS(360), + [anon_sym_QMARK_QMARK] = ACTIONS(360), + [anon_sym_instanceof] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), - [sym__automatic_semicolon] = ACTIONS(369), - [sym__ternary_qmark] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), + [sym__automatic_semicolon] = ACTIONS(360), + [sym__ternary_qmark] = ACTIONS(360), [sym_html_comment] = ACTIONS(5), }, - [60] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(647), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_COMMA] = ACTIONS(369), - [anon_sym_RBRACE] = ACTIONS(369), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), + [STATE(58)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(711), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_STAR] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_COMMA] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(360), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(360), [anon_sym_await] = ACTIONS(37), - [anon_sym_in] = ACTIONS(377), + [anon_sym_in] = ACTIONS(368), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [sym_optional_chain] = ACTIONS(369), - [anon_sym_new] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_GT_GT_GT] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(369), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_PERCENT] = ACTIONS(369), - [anon_sym_STAR_STAR] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_QMARK_QMARK] = ACTIONS(369), - [anon_sym_instanceof] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(420), + [anon_sym_GT] = ACTIONS(368), + [anon_sym_DOT] = ACTIONS(368), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [sym_optional_chain] = ACTIONS(360), + [anon_sym_new] = ACTIONS(71), + [anon_sym_AMP_AMP] = ACTIONS(360), + [anon_sym_PIPE_PIPE] = ACTIONS(360), + [anon_sym_GT_GT] = ACTIONS(368), + [anon_sym_GT_GT_GT] = ACTIONS(360), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_AMP] = ACTIONS(368), + [anon_sym_CARET] = ACTIONS(360), + [anon_sym_PIPE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(360), + [anon_sym_STAR_STAR] = ACTIONS(360), + [anon_sym_LT_EQ] = ACTIONS(360), + [anon_sym_EQ_EQ] = ACTIONS(368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(360), + [anon_sym_BANG_EQ] = ACTIONS(368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(360), + [anon_sym_GT_EQ] = ACTIONS(360), + [anon_sym_QMARK_QMARK] = ACTIONS(360), + [anon_sym_instanceof] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(73), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), - [sym__automatic_semicolon] = ACTIONS(369), - [sym__ternary_qmark] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), + [sym__automatic_semicolon] = ACTIONS(360), + [sym__ternary_qmark] = ACTIONS(360), [sym_html_comment] = ACTIONS(5), }, - [61] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(817), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_STAR] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_in] = ACTIONS(377), - [anon_sym_COLON] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [sym_optional_chain] = ACTIONS(369), - [anon_sym_new] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_GT_GT_GT] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(369), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(369), - [anon_sym_STAR_STAR] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_QMARK_QMARK] = ACTIONS(369), - [anon_sym_instanceof] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(59)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(766), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_STAR] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_in] = ACTIONS(368), + [anon_sym_COLON] = ACTIONS(360), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_GT] = ACTIONS(368), + [anon_sym_DOT] = ACTIONS(368), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [sym_optional_chain] = ACTIONS(360), + [anon_sym_new] = ACTIONS(468), + [anon_sym_AMP_AMP] = ACTIONS(360), + [anon_sym_PIPE_PIPE] = ACTIONS(360), + [anon_sym_GT_GT] = ACTIONS(368), + [anon_sym_GT_GT_GT] = ACTIONS(360), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_AMP] = ACTIONS(368), + [anon_sym_CARET] = ACTIONS(360), + [anon_sym_PIPE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_PERCENT] = ACTIONS(360), + [anon_sym_STAR_STAR] = ACTIONS(360), + [anon_sym_LT_EQ] = ACTIONS(360), + [anon_sym_EQ_EQ] = ACTIONS(368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(360), + [anon_sym_BANG_EQ] = ACTIONS(368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(360), + [anon_sym_GT_EQ] = ACTIONS(360), + [anon_sym_QMARK_QMARK] = ACTIONS(360), + [anon_sym_instanceof] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), - [sym__ternary_qmark] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), + [sym__ternary_qmark] = ACTIONS(360), [sym_html_comment] = ACTIONS(5), }, - [62] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(857), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_STAR] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_in] = ACTIONS(377), - [anon_sym_of] = ACTIONS(377), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [sym_optional_chain] = ACTIONS(369), - [anon_sym_new] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_GT_GT_GT] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(369), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_PERCENT] = ACTIONS(369), - [anon_sym_STAR_STAR] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_QMARK_QMARK] = ACTIONS(369), - [anon_sym_instanceof] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(60)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(830), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_in] = ACTIONS(368), + [anon_sym_of] = ACTIONS(368), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_GT] = ACTIONS(368), + [anon_sym_DOT] = ACTIONS(368), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [sym_optional_chain] = ACTIONS(360), + [anon_sym_new] = ACTIONS(492), + [anon_sym_AMP_AMP] = ACTIONS(360), + [anon_sym_PIPE_PIPE] = ACTIONS(360), + [anon_sym_GT_GT] = ACTIONS(368), + [anon_sym_GT_GT_GT] = ACTIONS(360), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_AMP] = ACTIONS(368), + [anon_sym_CARET] = ACTIONS(360), + [anon_sym_PIPE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(360), + [anon_sym_STAR_STAR] = ACTIONS(360), + [anon_sym_LT_EQ] = ACTIONS(360), + [anon_sym_EQ_EQ] = ACTIONS(368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(360), + [anon_sym_BANG_EQ] = ACTIONS(368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(360), + [anon_sym_GT_EQ] = ACTIONS(360), + [anon_sym_QMARK_QMARK] = ACTIONS(360), + [anon_sym_instanceof] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), - [sym__ternary_qmark] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), + [sym__ternary_qmark] = ACTIONS(360), [sym_html_comment] = ACTIONS(5), }, - [63] = { - [ts_builtin_sym_end] = ACTIONS(515), - [sym_identifier] = ACTIONS(517), - [anon_sym_export] = ACTIONS(517), - [anon_sym_STAR] = ACTIONS(519), - [anon_sym_default] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(515), - [anon_sym_COMMA] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(515), - [anon_sym_import] = ACTIONS(517), - [anon_sym_with] = ACTIONS(517), - [anon_sym_var] = ACTIONS(517), - [anon_sym_let] = ACTIONS(517), - [anon_sym_const] = ACTIONS(517), - [anon_sym_else] = ACTIONS(517), - [anon_sym_if] = ACTIONS(517), - [anon_sym_switch] = ACTIONS(517), - [anon_sym_for] = ACTIONS(517), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(515), - [anon_sym_await] = ACTIONS(517), - [anon_sym_in] = ACTIONS(519), - [anon_sym_while] = ACTIONS(517), - [anon_sym_do] = ACTIONS(517), - [anon_sym_try] = ACTIONS(517), - [anon_sym_break] = ACTIONS(517), - [anon_sym_continue] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_return] = ACTIONS(517), - [anon_sym_throw] = ACTIONS(517), - [anon_sym_case] = ACTIONS(517), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(523), - [anon_sym_LBRACK] = ACTIONS(515), - [sym_glimmer_opening_tag] = ACTIONS(515), - [anon_sym_LT] = ACTIONS(517), - [anon_sym_GT] = ACTIONS(519), - [anon_sym_DOT] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(515), - [anon_sym_SQUOTE] = ACTIONS(515), - [anon_sym_class] = ACTIONS(517), - [anon_sym_async] = ACTIONS(517), - [anon_sym_function] = ACTIONS(517), - [sym_optional_chain] = ACTIONS(521), - [anon_sym_new] = ACTIONS(517), - [anon_sym_AMP_AMP] = ACTIONS(521), - [anon_sym_PIPE_PIPE] = ACTIONS(521), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_GT_GT_GT] = ACTIONS(521), - [anon_sym_LT_LT] = ACTIONS(521), - [anon_sym_AMP] = ACTIONS(519), - [anon_sym_CARET] = ACTIONS(521), - [anon_sym_PIPE] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(517), - [anon_sym_PERCENT] = ACTIONS(521), - [anon_sym_STAR_STAR] = ACTIONS(521), - [anon_sym_LT_EQ] = ACTIONS(521), - [anon_sym_EQ_EQ] = ACTIONS(519), - [anon_sym_EQ_EQ_EQ] = ACTIONS(521), - [anon_sym_BANG_EQ] = ACTIONS(519), - [anon_sym_BANG_EQ_EQ] = ACTIONS(521), - [anon_sym_GT_EQ] = ACTIONS(521), - [anon_sym_QMARK_QMARK] = ACTIONS(521), - [anon_sym_instanceof] = ACTIONS(519), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(515), - [anon_sym_typeof] = ACTIONS(517), - [anon_sym_void] = ACTIONS(517), - [anon_sym_delete] = ACTIONS(517), - [anon_sym_PLUS_PLUS] = ACTIONS(515), - [anon_sym_DASH_DASH] = ACTIONS(515), + [STATE(61)] = { + [ts_builtin_sym_end] = ACTIONS(506), + [sym_identifier] = ACTIONS(508), + [anon_sym_export] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(508), + [anon_sym_default] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_COMMA] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_import] = ACTIONS(508), + [anon_sym_with] = ACTIONS(508), + [anon_sym_var] = ACTIONS(508), + [anon_sym_let] = ACTIONS(508), + [anon_sym_const] = ACTIONS(508), + [anon_sym_else] = ACTIONS(508), + [anon_sym_if] = ACTIONS(508), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_for] = ACTIONS(508), + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_await] = ACTIONS(508), + [anon_sym_in] = ACTIONS(508), + [anon_sym_of] = ACTIONS(508), + [anon_sym_while] = ACTIONS(508), + [anon_sym_do] = ACTIONS(508), + [anon_sym_try] = ACTIONS(508), + [anon_sym_break] = ACTIONS(508), + [anon_sym_continue] = ACTIONS(508), + [anon_sym_debugger] = ACTIONS(508), + [anon_sym_return] = ACTIONS(508), + [anon_sym_throw] = ACTIONS(508), + [anon_sym_case] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_DOT] = ACTIONS(508), + [anon_sym_DQUOTE] = ACTIONS(506), + [anon_sym_SQUOTE] = ACTIONS(506), + [anon_sym_class] = ACTIONS(508), + [anon_sym_async] = ACTIONS(508), + [anon_sym_function] = ACTIONS(508), + [sym_optional_chain] = ACTIONS(506), + [anon_sym_new] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(506), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_GT_GT] = ACTIONS(508), + [anon_sym_GT_GT_GT] = ACTIONS(506), + [anon_sym_LT_LT] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_CARET] = ACTIONS(506), + [anon_sym_PIPE] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_SLASH] = ACTIONS(508), + [anon_sym_PERCENT] = ACTIONS(506), + [anon_sym_STAR_STAR] = ACTIONS(506), + [anon_sym_LT_EQ] = ACTIONS(506), + [anon_sym_EQ_EQ] = ACTIONS(508), + [anon_sym_EQ_EQ_EQ] = ACTIONS(506), + [anon_sym_BANG_EQ] = ACTIONS(508), + [anon_sym_BANG_EQ_EQ] = ACTIONS(506), + [anon_sym_GT_EQ] = ACTIONS(506), + [anon_sym_QMARK_QMARK] = ACTIONS(506), + [anon_sym_instanceof] = ACTIONS(508), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_typeof] = ACTIONS(508), + [anon_sym_void] = ACTIONS(508), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_PLUS_PLUS] = ACTIONS(506), + [anon_sym_DASH_DASH] = ACTIONS(506), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(515), - [sym_number] = ACTIONS(515), - [sym_private_property_identifier] = ACTIONS(517), - [sym_this] = ACTIONS(517), - [sym_super] = ACTIONS(517), - [sym_true] = ACTIONS(517), - [sym_false] = ACTIONS(517), - [sym_null] = ACTIONS(517), - [sym_undefined] = ACTIONS(517), - [anon_sym_AT] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [sym_preproc] = ACTIONS(515), - [sym__automatic_semicolon] = ACTIONS(525), - [sym__ternary_qmark] = ACTIONS(521), + [anon_sym_BQUOTE] = ACTIONS(506), + [sym_number] = ACTIONS(506), + [sym_private_property_identifier] = ACTIONS(508), + [sym_this] = ACTIONS(508), + [sym_super] = ACTIONS(508), + [sym_true] = ACTIONS(508), + [sym_false] = ACTIONS(508), + [sym_null] = ACTIONS(508), + [sym_undefined] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(506), + [anon_sym_static] = ACTIONS(508), + [anon_sym_get] = ACTIONS(508), + [anon_sym_set] = ACTIONS(508), + [sym_preproc] = ACTIONS(506), + [sym__automatic_semicolon] = ACTIONS(506), + [sym__ternary_qmark] = ACTIONS(506), [sym_html_comment] = ACTIONS(5), }, - [64] = { - [ts_builtin_sym_end] = ACTIONS(515), - [sym_identifier] = ACTIONS(517), - [anon_sym_export] = ACTIONS(517), - [anon_sym_STAR] = ACTIONS(517), - [anon_sym_default] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(515), - [anon_sym_COMMA] = ACTIONS(515), - [anon_sym_RBRACE] = ACTIONS(515), - [anon_sym_import] = ACTIONS(517), - [anon_sym_with] = ACTIONS(517), - [anon_sym_var] = ACTIONS(517), - [anon_sym_let] = ACTIONS(517), - [anon_sym_const] = ACTIONS(517), - [anon_sym_else] = ACTIONS(517), - [anon_sym_if] = ACTIONS(517), - [anon_sym_switch] = ACTIONS(517), - [anon_sym_for] = ACTIONS(517), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(515), - [anon_sym_await] = ACTIONS(517), - [anon_sym_in] = ACTIONS(517), - [anon_sym_while] = ACTIONS(517), - [anon_sym_do] = ACTIONS(517), - [anon_sym_try] = ACTIONS(517), - [anon_sym_break] = ACTIONS(517), - [anon_sym_continue] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_return] = ACTIONS(517), - [anon_sym_throw] = ACTIONS(517), - [anon_sym_case] = ACTIONS(517), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(515), - [sym_glimmer_opening_tag] = ACTIONS(515), - [anon_sym_LT] = ACTIONS(517), - [anon_sym_GT] = ACTIONS(517), - [anon_sym_DOT] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(515), - [anon_sym_SQUOTE] = ACTIONS(515), - [anon_sym_class] = ACTIONS(517), - [anon_sym_async] = ACTIONS(517), - [anon_sym_function] = ACTIONS(517), - [sym_optional_chain] = ACTIONS(515), - [anon_sym_new] = ACTIONS(517), - [anon_sym_AMP_AMP] = ACTIONS(515), - [anon_sym_PIPE_PIPE] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(517), - [anon_sym_GT_GT_GT] = ACTIONS(515), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_AMP] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(517), - [anon_sym_PERCENT] = ACTIONS(515), - [anon_sym_STAR_STAR] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(515), - [anon_sym_EQ_EQ] = ACTIONS(517), - [anon_sym_EQ_EQ_EQ] = ACTIONS(515), - [anon_sym_BANG_EQ] = ACTIONS(517), - [anon_sym_BANG_EQ_EQ] = ACTIONS(515), - [anon_sym_GT_EQ] = ACTIONS(515), - [anon_sym_QMARK_QMARK] = ACTIONS(515), - [anon_sym_instanceof] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(515), - [anon_sym_typeof] = ACTIONS(517), - [anon_sym_void] = ACTIONS(517), - [anon_sym_delete] = ACTIONS(517), - [anon_sym_PLUS_PLUS] = ACTIONS(515), - [anon_sym_DASH_DASH] = ACTIONS(515), + [STATE(62)] = { + [ts_builtin_sym_end] = ACTIONS(506), + [sym_identifier] = ACTIONS(508), + [anon_sym_export] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(508), + [anon_sym_default] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_COMMA] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_import] = ACTIONS(508), + [anon_sym_with] = ACTIONS(508), + [anon_sym_var] = ACTIONS(508), + [anon_sym_let] = ACTIONS(508), + [anon_sym_const] = ACTIONS(508), + [anon_sym_else] = ACTIONS(508), + [anon_sym_if] = ACTIONS(508), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_for] = ACTIONS(508), + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_await] = ACTIONS(508), + [anon_sym_in] = ACTIONS(508), + [anon_sym_of] = ACTIONS(508), + [anon_sym_while] = ACTIONS(508), + [anon_sym_do] = ACTIONS(508), + [anon_sym_try] = ACTIONS(508), + [anon_sym_break] = ACTIONS(508), + [anon_sym_continue] = ACTIONS(508), + [anon_sym_debugger] = ACTIONS(508), + [anon_sym_return] = ACTIONS(508), + [anon_sym_throw] = ACTIONS(508), + [anon_sym_case] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_DOT] = ACTIONS(508), + [anon_sym_DQUOTE] = ACTIONS(506), + [anon_sym_SQUOTE] = ACTIONS(506), + [anon_sym_class] = ACTIONS(508), + [anon_sym_async] = ACTIONS(508), + [anon_sym_function] = ACTIONS(508), + [sym_optional_chain] = ACTIONS(506), + [anon_sym_new] = ACTIONS(508), + [anon_sym_AMP_AMP] = ACTIONS(506), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_GT_GT] = ACTIONS(508), + [anon_sym_GT_GT_GT] = ACTIONS(506), + [anon_sym_LT_LT] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_CARET] = ACTIONS(506), + [anon_sym_PIPE] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_SLASH] = ACTIONS(508), + [anon_sym_PERCENT] = ACTIONS(506), + [anon_sym_STAR_STAR] = ACTIONS(506), + [anon_sym_LT_EQ] = ACTIONS(506), + [anon_sym_EQ_EQ] = ACTIONS(508), + [anon_sym_EQ_EQ_EQ] = ACTIONS(506), + [anon_sym_BANG_EQ] = ACTIONS(508), + [anon_sym_BANG_EQ_EQ] = ACTIONS(506), + [anon_sym_GT_EQ] = ACTIONS(506), + [anon_sym_QMARK_QMARK] = ACTIONS(506), + [anon_sym_instanceof] = ACTIONS(508), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_typeof] = ACTIONS(508), + [anon_sym_void] = ACTIONS(508), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_PLUS_PLUS] = ACTIONS(506), + [anon_sym_DASH_DASH] = ACTIONS(506), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(515), - [sym_number] = ACTIONS(515), - [sym_private_property_identifier] = ACTIONS(517), - [sym_this] = ACTIONS(517), - [sym_super] = ACTIONS(517), - [sym_true] = ACTIONS(517), - [sym_false] = ACTIONS(517), - [sym_null] = ACTIONS(517), - [sym_undefined] = ACTIONS(517), - [anon_sym_AT] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [sym_preproc] = ACTIONS(515), - [sym__automatic_semicolon] = ACTIONS(527), - [sym__ternary_qmark] = ACTIONS(515), + [anon_sym_BQUOTE] = ACTIONS(506), + [sym_number] = ACTIONS(506), + [sym_private_property_identifier] = ACTIONS(508), + [sym_this] = ACTIONS(508), + [sym_super] = ACTIONS(508), + [sym_true] = ACTIONS(508), + [sym_false] = ACTIONS(508), + [sym_null] = ACTIONS(508), + [sym_undefined] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(506), + [anon_sym_static] = ACTIONS(508), + [anon_sym_get] = ACTIONS(508), + [anon_sym_set] = ACTIONS(508), + [sym_preproc] = ACTIONS(506), + [sym__automatic_semicolon] = ACTIONS(510), + [sym__ternary_qmark] = ACTIONS(506), [sym_html_comment] = ACTIONS(5), }, - [65] = { - [ts_builtin_sym_end] = ACTIONS(529), - [sym_identifier] = ACTIONS(531), - [anon_sym_export] = ACTIONS(531), - [anon_sym_STAR] = ACTIONS(533), - [anon_sym_default] = ACTIONS(531), - [anon_sym_LBRACE] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(529), - [anon_sym_import] = ACTIONS(531), - [anon_sym_with] = ACTIONS(531), - [anon_sym_var] = ACTIONS(531), - [anon_sym_let] = ACTIONS(531), - [anon_sym_const] = ACTIONS(531), - [anon_sym_else] = ACTIONS(531), - [anon_sym_if] = ACTIONS(531), - [anon_sym_switch] = ACTIONS(531), - [anon_sym_for] = ACTIONS(531), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_SEMI] = ACTIONS(529), - [anon_sym_await] = ACTIONS(531), - [anon_sym_in] = ACTIONS(533), - [anon_sym_while] = ACTIONS(531), - [anon_sym_do] = ACTIONS(531), - [anon_sym_try] = ACTIONS(531), - [anon_sym_break] = ACTIONS(531), - [anon_sym_continue] = ACTIONS(531), - [anon_sym_debugger] = ACTIONS(531), - [anon_sym_return] = ACTIONS(531), - [anon_sym_throw] = ACTIONS(531), - [anon_sym_case] = ACTIONS(531), - [anon_sym_yield] = ACTIONS(531), - [anon_sym_LBRACK] = ACTIONS(529), - [sym_glimmer_opening_tag] = ACTIONS(529), - [anon_sym_LT] = ACTIONS(531), - [anon_sym_GT] = ACTIONS(533), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_DQUOTE] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_class] = ACTIONS(531), - [anon_sym_async] = ACTIONS(531), - [anon_sym_function] = ACTIONS(531), - [sym_optional_chain] = ACTIONS(535), - [anon_sym_new] = ACTIONS(531), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [anon_sym_GT_GT] = ACTIONS(533), - [anon_sym_GT_GT_GT] = ACTIONS(535), - [anon_sym_LT_LT] = ACTIONS(535), - [anon_sym_AMP] = ACTIONS(533), - [anon_sym_CARET] = ACTIONS(535), - [anon_sym_PIPE] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_PERCENT] = ACTIONS(535), - [anon_sym_STAR_STAR] = ACTIONS(535), - [anon_sym_LT_EQ] = ACTIONS(535), - [anon_sym_EQ_EQ] = ACTIONS(533), - [anon_sym_EQ_EQ_EQ] = ACTIONS(535), - [anon_sym_BANG_EQ] = ACTIONS(533), - [anon_sym_BANG_EQ_EQ] = ACTIONS(535), - [anon_sym_GT_EQ] = ACTIONS(535), - [anon_sym_QMARK_QMARK] = ACTIONS(535), - [anon_sym_instanceof] = ACTIONS(533), - [anon_sym_BANG] = ACTIONS(531), - [anon_sym_TILDE] = ACTIONS(529), - [anon_sym_typeof] = ACTIONS(531), - [anon_sym_void] = ACTIONS(531), - [anon_sym_delete] = ACTIONS(531), - [anon_sym_PLUS_PLUS] = ACTIONS(529), - [anon_sym_DASH_DASH] = ACTIONS(529), + [STATE(63)] = { + [ts_builtin_sym_end] = ACTIONS(512), + [sym_identifier] = ACTIONS(514), + [anon_sym_export] = ACTIONS(514), + [anon_sym_STAR] = ACTIONS(514), + [anon_sym_default] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_COMMA] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(512), + [anon_sym_import] = ACTIONS(514), + [anon_sym_with] = ACTIONS(514), + [anon_sym_var] = ACTIONS(514), + [anon_sym_let] = ACTIONS(514), + [anon_sym_const] = ACTIONS(514), + [anon_sym_else] = ACTIONS(514), + [anon_sym_if] = ACTIONS(514), + [anon_sym_switch] = ACTIONS(514), + [anon_sym_for] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_await] = ACTIONS(514), + [anon_sym_in] = ACTIONS(514), + [anon_sym_of] = ACTIONS(514), + [anon_sym_while] = ACTIONS(514), + [anon_sym_do] = ACTIONS(514), + [anon_sym_try] = ACTIONS(514), + [anon_sym_break] = ACTIONS(514), + [anon_sym_continue] = ACTIONS(514), + [anon_sym_debugger] = ACTIONS(514), + [anon_sym_return] = ACTIONS(514), + [anon_sym_throw] = ACTIONS(514), + [anon_sym_case] = ACTIONS(514), + [anon_sym_yield] = ACTIONS(514), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(514), + [anon_sym_GT] = ACTIONS(514), + [anon_sym_DOT] = ACTIONS(514), + [anon_sym_DQUOTE] = ACTIONS(512), + [anon_sym_SQUOTE] = ACTIONS(512), + [anon_sym_class] = ACTIONS(514), + [anon_sym_async] = ACTIONS(514), + [anon_sym_function] = ACTIONS(514), + [sym_optional_chain] = ACTIONS(512), + [anon_sym_new] = ACTIONS(514), + [anon_sym_AMP_AMP] = ACTIONS(512), + [anon_sym_PIPE_PIPE] = ACTIONS(512), + [anon_sym_GT_GT] = ACTIONS(514), + [anon_sym_GT_GT_GT] = ACTIONS(512), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(514), + [anon_sym_CARET] = ACTIONS(512), + [anon_sym_PIPE] = ACTIONS(514), + [anon_sym_PLUS] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(514), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PERCENT] = ACTIONS(512), + [anon_sym_STAR_STAR] = ACTIONS(512), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_EQ_EQ] = ACTIONS(514), + [anon_sym_EQ_EQ_EQ] = ACTIONS(512), + [anon_sym_BANG_EQ] = ACTIONS(514), + [anon_sym_BANG_EQ_EQ] = ACTIONS(512), + [anon_sym_GT_EQ] = ACTIONS(512), + [anon_sym_QMARK_QMARK] = ACTIONS(512), + [anon_sym_instanceof] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(514), + [anon_sym_TILDE] = ACTIONS(512), + [anon_sym_typeof] = ACTIONS(514), + [anon_sym_void] = ACTIONS(514), + [anon_sym_delete] = ACTIONS(514), + [anon_sym_PLUS_PLUS] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(512), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(529), - [sym_number] = ACTIONS(529), - [sym_private_property_identifier] = ACTIONS(531), - [sym_this] = ACTIONS(531), - [sym_super] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_null] = ACTIONS(531), - [sym_undefined] = ACTIONS(531), - [anon_sym_AT] = ACTIONS(529), - [anon_sym_static] = ACTIONS(531), - [anon_sym_get] = ACTIONS(531), - [anon_sym_set] = ACTIONS(531), - [sym_preproc] = ACTIONS(529), - [sym__automatic_semicolon] = ACTIONS(537), - [sym__ternary_qmark] = ACTIONS(535), + [anon_sym_BQUOTE] = ACTIONS(512), + [sym_number] = ACTIONS(512), + [sym_private_property_identifier] = ACTIONS(514), + [sym_this] = ACTIONS(514), + [sym_super] = ACTIONS(514), + [sym_true] = ACTIONS(514), + [sym_false] = ACTIONS(514), + [sym_null] = ACTIONS(514), + [sym_undefined] = ACTIONS(514), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_static] = ACTIONS(514), + [anon_sym_get] = ACTIONS(514), + [anon_sym_set] = ACTIONS(514), + [sym_preproc] = ACTIONS(512), + [sym__automatic_semicolon] = ACTIONS(512), + [sym__ternary_qmark] = ACTIONS(512), [sym_html_comment] = ACTIONS(5), }, - [66] = { - [ts_builtin_sym_end] = ACTIONS(539), - [sym_identifier] = ACTIONS(541), - [anon_sym_export] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_default] = ACTIONS(541), - [anon_sym_LBRACE] = ACTIONS(539), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(539), - [anon_sym_import] = ACTIONS(541), - [anon_sym_with] = ACTIONS(541), - [anon_sym_var] = ACTIONS(541), - [anon_sym_let] = ACTIONS(541), - [anon_sym_const] = ACTIONS(541), - [anon_sym_else] = ACTIONS(541), - [anon_sym_if] = ACTIONS(541), - [anon_sym_switch] = ACTIONS(541), - [anon_sym_for] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(539), - [anon_sym_SEMI] = ACTIONS(539), - [anon_sym_await] = ACTIONS(541), - [anon_sym_in] = ACTIONS(543), - [anon_sym_while] = ACTIONS(541), - [anon_sym_do] = ACTIONS(541), - [anon_sym_try] = ACTIONS(541), - [anon_sym_break] = ACTIONS(541), - [anon_sym_continue] = ACTIONS(541), - [anon_sym_debugger] = ACTIONS(541), - [anon_sym_return] = ACTIONS(541), - [anon_sym_throw] = ACTIONS(541), - [anon_sym_case] = ACTIONS(541), - [anon_sym_yield] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(539), - [sym_glimmer_opening_tag] = ACTIONS(539), - [anon_sym_LT] = ACTIONS(541), - [anon_sym_GT] = ACTIONS(543), - [anon_sym_DOT] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_SQUOTE] = ACTIONS(539), - [anon_sym_class] = ACTIONS(541), - [anon_sym_async] = ACTIONS(541), - [anon_sym_function] = ACTIONS(541), - [sym_optional_chain] = ACTIONS(545), - [anon_sym_new] = ACTIONS(541), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(543), - [anon_sym_GT_GT_GT] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(543), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(543), - [anon_sym_PLUS] = ACTIONS(541), - [anon_sym_DASH] = ACTIONS(541), - [anon_sym_SLASH] = ACTIONS(541), - [anon_sym_PERCENT] = ACTIONS(545), - [anon_sym_STAR_STAR] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(543), - [anon_sym_EQ_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(543), - [anon_sym_BANG_EQ_EQ] = ACTIONS(545), - [anon_sym_GT_EQ] = ACTIONS(545), - [anon_sym_QMARK_QMARK] = ACTIONS(545), - [anon_sym_instanceof] = ACTIONS(543), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_TILDE] = ACTIONS(539), - [anon_sym_typeof] = ACTIONS(541), - [anon_sym_void] = ACTIONS(541), - [anon_sym_delete] = ACTIONS(541), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(539), + [STATE(64)] = { + [ts_builtin_sym_end] = ACTIONS(516), + [sym_identifier] = ACTIONS(518), + [anon_sym_export] = ACTIONS(518), + [anon_sym_STAR] = ACTIONS(518), + [anon_sym_default] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(516), + [anon_sym_COMMA] = ACTIONS(516), + [anon_sym_RBRACE] = ACTIONS(516), + [anon_sym_import] = ACTIONS(518), + [anon_sym_with] = ACTIONS(518), + [anon_sym_var] = ACTIONS(518), + [anon_sym_let] = ACTIONS(518), + [anon_sym_const] = ACTIONS(518), + [anon_sym_else] = ACTIONS(518), + [anon_sym_if] = ACTIONS(518), + [anon_sym_switch] = ACTIONS(518), + [anon_sym_for] = ACTIONS(518), + [anon_sym_LPAREN] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_await] = ACTIONS(518), + [anon_sym_in] = ACTIONS(518), + [anon_sym_of] = ACTIONS(518), + [anon_sym_while] = ACTIONS(518), + [anon_sym_do] = ACTIONS(518), + [anon_sym_try] = ACTIONS(518), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(518), + [anon_sym_debugger] = ACTIONS(518), + [anon_sym_return] = ACTIONS(518), + [anon_sym_throw] = ACTIONS(518), + [anon_sym_case] = ACTIONS(518), + [anon_sym_yield] = ACTIONS(518), + [anon_sym_LBRACK] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(518), + [anon_sym_GT] = ACTIONS(518), + [anon_sym_DOT] = ACTIONS(518), + [anon_sym_DQUOTE] = ACTIONS(516), + [anon_sym_SQUOTE] = ACTIONS(516), + [anon_sym_class] = ACTIONS(518), + [anon_sym_async] = ACTIONS(518), + [anon_sym_function] = ACTIONS(518), + [sym_optional_chain] = ACTIONS(516), + [anon_sym_new] = ACTIONS(518), + [anon_sym_AMP_AMP] = ACTIONS(516), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_GT_GT] = ACTIONS(518), + [anon_sym_GT_GT_GT] = ACTIONS(516), + [anon_sym_LT_LT] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(516), + [anon_sym_PIPE] = ACTIONS(518), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_SLASH] = ACTIONS(518), + [anon_sym_PERCENT] = ACTIONS(516), + [anon_sym_STAR_STAR] = ACTIONS(516), + [anon_sym_LT_EQ] = ACTIONS(516), + [anon_sym_EQ_EQ] = ACTIONS(518), + [anon_sym_EQ_EQ_EQ] = ACTIONS(516), + [anon_sym_BANG_EQ] = ACTIONS(518), + [anon_sym_BANG_EQ_EQ] = ACTIONS(516), + [anon_sym_GT_EQ] = ACTIONS(516), + [anon_sym_QMARK_QMARK] = ACTIONS(516), + [anon_sym_instanceof] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(516), + [anon_sym_typeof] = ACTIONS(518), + [anon_sym_void] = ACTIONS(518), + [anon_sym_delete] = ACTIONS(518), + [anon_sym_PLUS_PLUS] = ACTIONS(516), + [anon_sym_DASH_DASH] = ACTIONS(516), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(539), - [sym_number] = ACTIONS(539), - [sym_private_property_identifier] = ACTIONS(541), - [sym_this] = ACTIONS(541), - [sym_super] = ACTIONS(541), - [sym_true] = ACTIONS(541), - [sym_false] = ACTIONS(541), - [sym_null] = ACTIONS(541), - [sym_undefined] = ACTIONS(541), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_static] = ACTIONS(541), - [anon_sym_get] = ACTIONS(541), - [anon_sym_set] = ACTIONS(541), - [sym_preproc] = ACTIONS(539), - [sym__automatic_semicolon] = ACTIONS(547), - [sym__ternary_qmark] = ACTIONS(545), + [anon_sym_BQUOTE] = ACTIONS(516), + [sym_number] = ACTIONS(516), + [sym_private_property_identifier] = ACTIONS(518), + [sym_this] = ACTIONS(518), + [sym_super] = ACTIONS(518), + [sym_true] = ACTIONS(518), + [sym_false] = ACTIONS(518), + [sym_null] = ACTIONS(518), + [sym_undefined] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_get] = ACTIONS(518), + [anon_sym_set] = ACTIONS(518), + [sym_preproc] = ACTIONS(516), + [sym__automatic_semicolon] = ACTIONS(520), + [sym__ternary_qmark] = ACTIONS(516), [sym_html_comment] = ACTIONS(5), }, - [67] = { - [ts_builtin_sym_end] = ACTIONS(549), - [sym_identifier] = ACTIONS(551), - [anon_sym_export] = ACTIONS(551), - [anon_sym_STAR] = ACTIONS(553), - [anon_sym_default] = ACTIONS(551), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_COMMA] = ACTIONS(555), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_import] = ACTIONS(551), - [anon_sym_with] = ACTIONS(551), - [anon_sym_var] = ACTIONS(551), - [anon_sym_let] = ACTIONS(551), - [anon_sym_const] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_switch] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_SEMI] = ACTIONS(549), - [anon_sym_await] = ACTIONS(551), - [anon_sym_in] = ACTIONS(553), - [anon_sym_while] = ACTIONS(551), - [anon_sym_do] = ACTIONS(551), - [anon_sym_try] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_debugger] = ACTIONS(551), - [anon_sym_return] = ACTIONS(551), - [anon_sym_throw] = ACTIONS(551), - [anon_sym_case] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(549), - [sym_glimmer_opening_tag] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(553), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_SQUOTE] = ACTIONS(549), - [anon_sym_class] = ACTIONS(551), - [anon_sym_async] = ACTIONS(551), - [anon_sym_function] = ACTIONS(551), - [sym_optional_chain] = ACTIONS(555), - [anon_sym_new] = ACTIONS(551), - [anon_sym_AMP_AMP] = ACTIONS(555), - [anon_sym_PIPE_PIPE] = ACTIONS(555), - [anon_sym_GT_GT] = ACTIONS(553), - [anon_sym_GT_GT_GT] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(553), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_STAR_STAR] = ACTIONS(555), - [anon_sym_LT_EQ] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(553), - [anon_sym_EQ_EQ_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ] = ACTIONS(553), - [anon_sym_BANG_EQ_EQ] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(555), - [anon_sym_QMARK_QMARK] = ACTIONS(555), - [anon_sym_instanceof] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_typeof] = ACTIONS(551), - [anon_sym_void] = ACTIONS(551), - [anon_sym_delete] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(549), - [anon_sym_DASH_DASH] = ACTIONS(549), + [STATE(65)] = { + [ts_builtin_sym_end] = ACTIONS(522), + [sym_identifier] = ACTIONS(524), + [anon_sym_export] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_default] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_COMMA] = ACTIONS(522), + [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_import] = ACTIONS(524), + [anon_sym_with] = ACTIONS(524), + [anon_sym_var] = ACTIONS(524), + [anon_sym_let] = ACTIONS(524), + [anon_sym_const] = ACTIONS(524), + [anon_sym_else] = ACTIONS(524), + [anon_sym_if] = ACTIONS(524), + [anon_sym_switch] = ACTIONS(524), + [anon_sym_for] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_in] = ACTIONS(524), + [anon_sym_of] = ACTIONS(524), + [anon_sym_while] = ACTIONS(524), + [anon_sym_do] = ACTIONS(524), + [anon_sym_try] = ACTIONS(524), + [anon_sym_break] = ACTIONS(524), + [anon_sym_continue] = ACTIONS(524), + [anon_sym_debugger] = ACTIONS(524), + [anon_sym_return] = ACTIONS(524), + [anon_sym_throw] = ACTIONS(524), + [anon_sym_case] = ACTIONS(524), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(524), + [anon_sym_DQUOTE] = ACTIONS(522), + [anon_sym_SQUOTE] = ACTIONS(522), + [anon_sym_class] = ACTIONS(524), + [anon_sym_async] = ACTIONS(524), + [anon_sym_function] = ACTIONS(524), + [sym_optional_chain] = ACTIONS(522), + [anon_sym_new] = ACTIONS(524), + [anon_sym_AMP_AMP] = ACTIONS(522), + [anon_sym_PIPE_PIPE] = ACTIONS(522), + [anon_sym_GT_GT] = ACTIONS(524), + [anon_sym_GT_GT_GT] = ACTIONS(522), + [anon_sym_LT_LT] = ACTIONS(522), + [anon_sym_AMP] = ACTIONS(524), + [anon_sym_CARET] = ACTIONS(522), + [anon_sym_PIPE] = ACTIONS(524), + [anon_sym_PLUS] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_SLASH] = ACTIONS(524), + [anon_sym_PERCENT] = ACTIONS(522), + [anon_sym_STAR_STAR] = ACTIONS(522), + [anon_sym_LT_EQ] = ACTIONS(522), + [anon_sym_EQ_EQ] = ACTIONS(524), + [anon_sym_EQ_EQ_EQ] = ACTIONS(522), + [anon_sym_BANG_EQ] = ACTIONS(524), + [anon_sym_BANG_EQ_EQ] = ACTIONS(522), + [anon_sym_GT_EQ] = ACTIONS(522), + [anon_sym_QMARK_QMARK] = ACTIONS(522), + [anon_sym_instanceof] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_typeof] = ACTIONS(524), + [anon_sym_void] = ACTIONS(524), + [anon_sym_delete] = ACTIONS(524), + [anon_sym_PLUS_PLUS] = ACTIONS(522), + [anon_sym_DASH_DASH] = ACTIONS(522), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(549), - [sym_number] = ACTIONS(549), - [sym_private_property_identifier] = ACTIONS(551), - [sym_this] = ACTIONS(551), - [sym_super] = ACTIONS(551), - [sym_true] = ACTIONS(551), - [sym_false] = ACTIONS(551), - [sym_null] = ACTIONS(551), - [sym_undefined] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(549), - [anon_sym_static] = ACTIONS(551), - [anon_sym_get] = ACTIONS(551), - [anon_sym_set] = ACTIONS(551), - [sym_preproc] = ACTIONS(549), - [sym__automatic_semicolon] = ACTIONS(557), - [sym__ternary_qmark] = ACTIONS(555), + [anon_sym_BQUOTE] = ACTIONS(522), + [sym_number] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(524), + [sym_this] = ACTIONS(524), + [sym_super] = ACTIONS(524), + [sym_true] = ACTIONS(524), + [sym_false] = ACTIONS(524), + [sym_null] = ACTIONS(524), + [sym_undefined] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(522), + [anon_sym_static] = ACTIONS(524), + [anon_sym_get] = ACTIONS(524), + [anon_sym_set] = ACTIONS(524), + [sym_preproc] = ACTIONS(522), + [sym__automatic_semicolon] = ACTIONS(522), + [sym__ternary_qmark] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [68] = { - [ts_builtin_sym_end] = ACTIONS(559), - [sym_identifier] = ACTIONS(561), - [anon_sym_export] = ACTIONS(561), - [anon_sym_STAR] = ACTIONS(563), - [anon_sym_default] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_RBRACE] = ACTIONS(559), - [anon_sym_import] = ACTIONS(561), - [anon_sym_with] = ACTIONS(561), - [anon_sym_var] = ACTIONS(561), - [anon_sym_let] = ACTIONS(561), - [anon_sym_const] = ACTIONS(561), - [anon_sym_else] = ACTIONS(561), - [anon_sym_if] = ACTIONS(561), - [anon_sym_switch] = ACTIONS(561), - [anon_sym_for] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(559), - [anon_sym_SEMI] = ACTIONS(559), - [anon_sym_await] = ACTIONS(561), - [anon_sym_in] = ACTIONS(563), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(561), - [anon_sym_try] = ACTIONS(561), - [anon_sym_break] = ACTIONS(561), - [anon_sym_continue] = ACTIONS(561), - [anon_sym_debugger] = ACTIONS(561), - [anon_sym_return] = ACTIONS(561), - [anon_sym_throw] = ACTIONS(561), - [anon_sym_case] = ACTIONS(561), - [anon_sym_yield] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(559), - [sym_glimmer_opening_tag] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_GT] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_DQUOTE] = ACTIONS(559), - [anon_sym_SQUOTE] = ACTIONS(559), - [anon_sym_class] = ACTIONS(561), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(561), - [sym_optional_chain] = ACTIONS(565), - [anon_sym_new] = ACTIONS(561), - [anon_sym_AMP_AMP] = ACTIONS(565), - [anon_sym_PIPE_PIPE] = ACTIONS(565), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_GT_GT_GT] = ACTIONS(565), - [anon_sym_LT_LT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_STAR_STAR] = ACTIONS(565), - [anon_sym_LT_EQ] = ACTIONS(565), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_EQ_EQ_EQ] = ACTIONS(565), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ_EQ] = ACTIONS(565), - [anon_sym_GT_EQ] = ACTIONS(565), - [anon_sym_QMARK_QMARK] = ACTIONS(565), - [anon_sym_instanceof] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(561), - [anon_sym_TILDE] = ACTIONS(559), - [anon_sym_typeof] = ACTIONS(561), - [anon_sym_void] = ACTIONS(561), - [anon_sym_delete] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(559), - [anon_sym_DASH_DASH] = ACTIONS(559), + [STATE(66)] = { + [ts_builtin_sym_end] = ACTIONS(516), + [sym_identifier] = ACTIONS(518), + [anon_sym_export] = ACTIONS(518), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_default] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(516), + [anon_sym_COMMA] = ACTIONS(528), + [anon_sym_RBRACE] = ACTIONS(516), + [anon_sym_import] = ACTIONS(518), + [anon_sym_with] = ACTIONS(518), + [anon_sym_var] = ACTIONS(518), + [anon_sym_let] = ACTIONS(518), + [anon_sym_const] = ACTIONS(518), + [anon_sym_else] = ACTIONS(518), + [anon_sym_if] = ACTIONS(518), + [anon_sym_switch] = ACTIONS(518), + [anon_sym_for] = ACTIONS(518), + [anon_sym_LPAREN] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_await] = ACTIONS(518), + [anon_sym_in] = ACTIONS(526), + [anon_sym_while] = ACTIONS(518), + [anon_sym_do] = ACTIONS(518), + [anon_sym_try] = ACTIONS(518), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(518), + [anon_sym_debugger] = ACTIONS(518), + [anon_sym_return] = ACTIONS(518), + [anon_sym_throw] = ACTIONS(518), + [anon_sym_case] = ACTIONS(518), + [anon_sym_yield] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(518), + [anon_sym_GT] = ACTIONS(526), + [anon_sym_DOT] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(516), + [anon_sym_SQUOTE] = ACTIONS(516), + [anon_sym_class] = ACTIONS(518), + [anon_sym_async] = ACTIONS(518), + [anon_sym_function] = ACTIONS(518), + [sym_optional_chain] = ACTIONS(528), + [anon_sym_new] = ACTIONS(518), + [anon_sym_AMP_AMP] = ACTIONS(528), + [anon_sym_PIPE_PIPE] = ACTIONS(528), + [anon_sym_GT_GT] = ACTIONS(526), + [anon_sym_GT_GT_GT] = ACTIONS(528), + [anon_sym_LT_LT] = ACTIONS(528), + [anon_sym_AMP] = ACTIONS(526), + [anon_sym_CARET] = ACTIONS(528), + [anon_sym_PIPE] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_SLASH] = ACTIONS(518), + [anon_sym_PERCENT] = ACTIONS(528), + [anon_sym_STAR_STAR] = ACTIONS(528), + [anon_sym_LT_EQ] = ACTIONS(528), + [anon_sym_EQ_EQ] = ACTIONS(526), + [anon_sym_EQ_EQ_EQ] = ACTIONS(528), + [anon_sym_BANG_EQ] = ACTIONS(526), + [anon_sym_BANG_EQ_EQ] = ACTIONS(528), + [anon_sym_GT_EQ] = ACTIONS(528), + [anon_sym_QMARK_QMARK] = ACTIONS(528), + [anon_sym_instanceof] = ACTIONS(526), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(516), + [anon_sym_typeof] = ACTIONS(518), + [anon_sym_void] = ACTIONS(518), + [anon_sym_delete] = ACTIONS(518), + [anon_sym_PLUS_PLUS] = ACTIONS(516), + [anon_sym_DASH_DASH] = ACTIONS(516), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(559), - [sym_number] = ACTIONS(559), - [sym_private_property_identifier] = ACTIONS(561), - [sym_this] = ACTIONS(561), - [sym_super] = ACTIONS(561), - [sym_true] = ACTIONS(561), - [sym_false] = ACTIONS(561), - [sym_null] = ACTIONS(561), - [sym_undefined] = ACTIONS(561), - [anon_sym_AT] = ACTIONS(559), - [anon_sym_static] = ACTIONS(561), - [anon_sym_get] = ACTIONS(561), - [anon_sym_set] = ACTIONS(561), - [sym_preproc] = ACTIONS(559), - [sym__automatic_semicolon] = ACTIONS(567), - [sym__ternary_qmark] = ACTIONS(565), + [anon_sym_BQUOTE] = ACTIONS(516), + [sym_number] = ACTIONS(516), + [sym_private_property_identifier] = ACTIONS(518), + [sym_this] = ACTIONS(518), + [sym_super] = ACTIONS(518), + [sym_true] = ACTIONS(518), + [sym_false] = ACTIONS(518), + [sym_null] = ACTIONS(518), + [sym_undefined] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_get] = ACTIONS(518), + [anon_sym_set] = ACTIONS(518), + [sym_preproc] = ACTIONS(516), + [sym__automatic_semicolon] = ACTIONS(532), + [sym__ternary_qmark] = ACTIONS(528), [sym_html_comment] = ACTIONS(5), }, - [69] = { - [ts_builtin_sym_end] = ACTIONS(569), - [sym_identifier] = ACTIONS(571), - [anon_sym_export] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_default] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_COMMA] = ACTIONS(569), - [anon_sym_RBRACE] = ACTIONS(569), - [anon_sym_import] = ACTIONS(571), - [anon_sym_with] = ACTIONS(571), - [anon_sym_var] = ACTIONS(571), - [anon_sym_let] = ACTIONS(571), - [anon_sym_const] = ACTIONS(571), - [anon_sym_else] = ACTIONS(571), - [anon_sym_if] = ACTIONS(571), - [anon_sym_switch] = ACTIONS(571), - [anon_sym_for] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_SEMI] = ACTIONS(569), - [anon_sym_await] = ACTIONS(571), - [anon_sym_in] = ACTIONS(571), - [anon_sym_while] = ACTIONS(571), - [anon_sym_do] = ACTIONS(571), - [anon_sym_try] = ACTIONS(571), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_debugger] = ACTIONS(571), - [anon_sym_return] = ACTIONS(571), - [anon_sym_throw] = ACTIONS(571), - [anon_sym_case] = ACTIONS(571), - [anon_sym_yield] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(569), - [sym_glimmer_opening_tag] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(571), - [anon_sym_GT] = ACTIONS(571), - [anon_sym_DOT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(569), - [anon_sym_class] = ACTIONS(571), - [anon_sym_async] = ACTIONS(571), - [anon_sym_function] = ACTIONS(571), - [sym_optional_chain] = ACTIONS(569), - [anon_sym_new] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(569), - [anon_sym_GT_GT] = ACTIONS(571), - [anon_sym_GT_GT_GT] = ACTIONS(569), - [anon_sym_LT_LT] = ACTIONS(569), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(569), - [anon_sym_PIPE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(571), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(569), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_LT_EQ] = ACTIONS(569), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_EQ_EQ_EQ] = ACTIONS(569), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_BANG_EQ_EQ] = ACTIONS(569), - [anon_sym_GT_EQ] = ACTIONS(569), - [anon_sym_QMARK_QMARK] = ACTIONS(569), - [anon_sym_instanceof] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_TILDE] = ACTIONS(569), - [anon_sym_typeof] = ACTIONS(571), - [anon_sym_void] = ACTIONS(571), - [anon_sym_delete] = ACTIONS(571), - [anon_sym_PLUS_PLUS] = ACTIONS(569), - [anon_sym_DASH_DASH] = ACTIONS(569), + [STATE(67)] = { + [ts_builtin_sym_end] = ACTIONS(534), + [sym_identifier] = ACTIONS(536), + [anon_sym_export] = ACTIONS(536), + [anon_sym_STAR] = ACTIONS(536), + [anon_sym_default] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_RBRACE] = ACTIONS(534), + [anon_sym_import] = ACTIONS(536), + [anon_sym_with] = ACTIONS(536), + [anon_sym_var] = ACTIONS(536), + [anon_sym_let] = ACTIONS(536), + [anon_sym_const] = ACTIONS(536), + [anon_sym_else] = ACTIONS(536), + [anon_sym_if] = ACTIONS(536), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_for] = ACTIONS(536), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(534), + [anon_sym_await] = ACTIONS(536), + [anon_sym_in] = ACTIONS(536), + [anon_sym_of] = ACTIONS(536), + [anon_sym_while] = ACTIONS(536), + [anon_sym_do] = ACTIONS(536), + [anon_sym_try] = ACTIONS(536), + [anon_sym_break] = ACTIONS(536), + [anon_sym_continue] = ACTIONS(536), + [anon_sym_debugger] = ACTIONS(536), + [anon_sym_return] = ACTIONS(536), + [anon_sym_throw] = ACTIONS(536), + [anon_sym_case] = ACTIONS(536), + [anon_sym_yield] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(534), + [anon_sym_LT] = ACTIONS(536), + [anon_sym_GT] = ACTIONS(536), + [anon_sym_DOT] = ACTIONS(536), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(534), + [anon_sym_class] = ACTIONS(536), + [anon_sym_async] = ACTIONS(536), + [anon_sym_function] = ACTIONS(536), + [sym_optional_chain] = ACTIONS(534), + [anon_sym_new] = ACTIONS(536), + [anon_sym_AMP_AMP] = ACTIONS(534), + [anon_sym_PIPE_PIPE] = ACTIONS(534), + [anon_sym_GT_GT] = ACTIONS(536), + [anon_sym_GT_GT_GT] = ACTIONS(534), + [anon_sym_LT_LT] = ACTIONS(534), + [anon_sym_AMP] = ACTIONS(536), + [anon_sym_CARET] = ACTIONS(534), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_DASH] = ACTIONS(536), + [anon_sym_SLASH] = ACTIONS(536), + [anon_sym_PERCENT] = ACTIONS(534), + [anon_sym_STAR_STAR] = ACTIONS(534), + [anon_sym_LT_EQ] = ACTIONS(534), + [anon_sym_EQ_EQ] = ACTIONS(536), + [anon_sym_EQ_EQ_EQ] = ACTIONS(534), + [anon_sym_BANG_EQ] = ACTIONS(536), + [anon_sym_BANG_EQ_EQ] = ACTIONS(534), + [anon_sym_GT_EQ] = ACTIONS(534), + [anon_sym_QMARK_QMARK] = ACTIONS(534), + [anon_sym_instanceof] = ACTIONS(536), + [anon_sym_BANG] = ACTIONS(536), + [anon_sym_TILDE] = ACTIONS(534), + [anon_sym_typeof] = ACTIONS(536), + [anon_sym_void] = ACTIONS(536), + [anon_sym_delete] = ACTIONS(536), + [anon_sym_PLUS_PLUS] = ACTIONS(534), + [anon_sym_DASH_DASH] = ACTIONS(534), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(569), - [sym_number] = ACTIONS(569), - [sym_private_property_identifier] = ACTIONS(571), - [sym_this] = ACTIONS(571), - [sym_super] = ACTIONS(571), - [sym_true] = ACTIONS(571), - [sym_false] = ACTIONS(571), - [sym_null] = ACTIONS(571), - [sym_undefined] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(569), - [anon_sym_static] = ACTIONS(571), - [anon_sym_get] = ACTIONS(571), - [anon_sym_set] = ACTIONS(571), - [sym_preproc] = ACTIONS(569), - [sym__automatic_semicolon] = ACTIONS(569), - [sym__ternary_qmark] = ACTIONS(569), + [anon_sym_BQUOTE] = ACTIONS(534), + [sym_number] = ACTIONS(534), + [sym_private_property_identifier] = ACTIONS(536), + [sym_this] = ACTIONS(536), + [sym_super] = ACTIONS(536), + [sym_true] = ACTIONS(536), + [sym_false] = ACTIONS(536), + [sym_null] = ACTIONS(536), + [sym_undefined] = ACTIONS(536), + [anon_sym_AT] = ACTIONS(534), + [anon_sym_static] = ACTIONS(536), + [anon_sym_get] = ACTIONS(536), + [anon_sym_set] = ACTIONS(536), + [sym_preproc] = ACTIONS(534), + [sym__automatic_semicolon] = ACTIONS(534), + [sym__ternary_qmark] = ACTIONS(534), [sym_html_comment] = ACTIONS(5), }, - [70] = { - [ts_builtin_sym_end] = ACTIONS(573), - [sym_identifier] = ACTIONS(575), - [anon_sym_export] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_default] = ACTIONS(575), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(579), - [anon_sym_RBRACE] = ACTIONS(573), - [anon_sym_import] = ACTIONS(575), - [anon_sym_with] = ACTIONS(575), - [anon_sym_var] = ACTIONS(575), - [anon_sym_let] = ACTIONS(575), - [anon_sym_const] = ACTIONS(575), - [anon_sym_else] = ACTIONS(575), - [anon_sym_if] = ACTIONS(575), - [anon_sym_switch] = ACTIONS(575), - [anon_sym_for] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(573), - [anon_sym_SEMI] = ACTIONS(573), - [anon_sym_await] = ACTIONS(575), - [anon_sym_in] = ACTIONS(577), - [anon_sym_while] = ACTIONS(575), - [anon_sym_do] = ACTIONS(575), - [anon_sym_try] = ACTIONS(575), - [anon_sym_break] = ACTIONS(575), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_debugger] = ACTIONS(575), - [anon_sym_return] = ACTIONS(575), - [anon_sym_throw] = ACTIONS(575), - [anon_sym_case] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(573), - [sym_glimmer_opening_tag] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(575), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DQUOTE] = ACTIONS(573), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_class] = ACTIONS(575), - [anon_sym_async] = ACTIONS(575), - [anon_sym_function] = ACTIONS(575), - [sym_optional_chain] = ACTIONS(579), - [anon_sym_new] = ACTIONS(575), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_GT_GT_GT] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_SLASH] = ACTIONS(575), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_STAR_STAR] = ACTIONS(579), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(577), - [anon_sym_BANG_EQ_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_QMARK_QMARK] = ACTIONS(579), - [anon_sym_instanceof] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_typeof] = ACTIONS(575), - [anon_sym_void] = ACTIONS(575), - [anon_sym_delete] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(573), + [STATE(68)] = { + [ts_builtin_sym_end] = ACTIONS(538), + [sym_identifier] = ACTIONS(540), + [anon_sym_export] = ACTIONS(540), + [anon_sym_STAR] = ACTIONS(542), + [anon_sym_default] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(538), + [anon_sym_COMMA] = ACTIONS(544), + [anon_sym_RBRACE] = ACTIONS(538), + [anon_sym_import] = ACTIONS(540), + [anon_sym_with] = ACTIONS(540), + [anon_sym_var] = ACTIONS(540), + [anon_sym_let] = ACTIONS(540), + [anon_sym_const] = ACTIONS(540), + [anon_sym_else] = ACTIONS(540), + [anon_sym_if] = ACTIONS(540), + [anon_sym_switch] = ACTIONS(540), + [anon_sym_for] = ACTIONS(540), + [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_SEMI] = ACTIONS(538), + [anon_sym_await] = ACTIONS(540), + [anon_sym_in] = ACTIONS(542), + [anon_sym_while] = ACTIONS(540), + [anon_sym_do] = ACTIONS(540), + [anon_sym_try] = ACTIONS(540), + [anon_sym_break] = ACTIONS(540), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_debugger] = ACTIONS(540), + [anon_sym_return] = ACTIONS(540), + [anon_sym_throw] = ACTIONS(540), + [anon_sym_case] = ACTIONS(540), + [anon_sym_yield] = ACTIONS(540), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(540), + [anon_sym_GT] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(542), + [anon_sym_DQUOTE] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(538), + [anon_sym_class] = ACTIONS(540), + [anon_sym_async] = ACTIONS(540), + [anon_sym_function] = ACTIONS(540), + [sym_optional_chain] = ACTIONS(544), + [anon_sym_new] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_GT_GT] = ACTIONS(542), + [anon_sym_GT_GT_GT] = ACTIONS(544), + [anon_sym_LT_LT] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(542), + [anon_sym_CARET] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(542), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_STAR_STAR] = ACTIONS(544), + [anon_sym_LT_EQ] = ACTIONS(544), + [anon_sym_EQ_EQ] = ACTIONS(542), + [anon_sym_EQ_EQ_EQ] = ACTIONS(544), + [anon_sym_BANG_EQ] = ACTIONS(542), + [anon_sym_BANG_EQ_EQ] = ACTIONS(544), + [anon_sym_GT_EQ] = ACTIONS(544), + [anon_sym_QMARK_QMARK] = ACTIONS(544), + [anon_sym_instanceof] = ACTIONS(542), + [anon_sym_BANG] = ACTIONS(540), + [anon_sym_TILDE] = ACTIONS(538), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(538), + [anon_sym_DASH_DASH] = ACTIONS(538), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(573), - [sym_number] = ACTIONS(573), - [sym_private_property_identifier] = ACTIONS(575), - [sym_this] = ACTIONS(575), - [sym_super] = ACTIONS(575), - [sym_true] = ACTIONS(575), - [sym_false] = ACTIONS(575), - [sym_null] = ACTIONS(575), - [sym_undefined] = ACTIONS(575), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_static] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), - [sym_preproc] = ACTIONS(573), - [sym__automatic_semicolon] = ACTIONS(581), - [sym__ternary_qmark] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(538), + [sym_number] = ACTIONS(538), + [sym_private_property_identifier] = ACTIONS(540), + [sym_this] = ACTIONS(540), + [sym_super] = ACTIONS(540), + [sym_true] = ACTIONS(540), + [sym_false] = ACTIONS(540), + [sym_null] = ACTIONS(540), + [sym_undefined] = ACTIONS(540), + [anon_sym_AT] = ACTIONS(538), + [anon_sym_static] = ACTIONS(540), + [anon_sym_get] = ACTIONS(540), + [anon_sym_set] = ACTIONS(540), + [sym_preproc] = ACTIONS(538), + [sym__automatic_semicolon] = ACTIONS(546), + [sym__ternary_qmark] = ACTIONS(544), [sym_html_comment] = ACTIONS(5), }, - [71] = { - [ts_builtin_sym_end] = ACTIONS(583), - [sym_identifier] = ACTIONS(585), - [anon_sym_export] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_default] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(583), - [anon_sym_import] = ACTIONS(585), - [anon_sym_with] = ACTIONS(585), - [anon_sym_var] = ACTIONS(585), - [anon_sym_let] = ACTIONS(585), - [anon_sym_const] = ACTIONS(585), - [anon_sym_else] = ACTIONS(585), - [anon_sym_if] = ACTIONS(585), - [anon_sym_switch] = ACTIONS(585), - [anon_sym_for] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(583), - [anon_sym_SEMI] = ACTIONS(583), - [anon_sym_await] = ACTIONS(585), - [anon_sym_in] = ACTIONS(587), - [anon_sym_while] = ACTIONS(585), - [anon_sym_do] = ACTIONS(585), - [anon_sym_try] = ACTIONS(585), - [anon_sym_break] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(585), - [anon_sym_debugger] = ACTIONS(585), - [anon_sym_return] = ACTIONS(585), - [anon_sym_throw] = ACTIONS(585), - [anon_sym_case] = ACTIONS(585), - [anon_sym_yield] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(583), - [sym_glimmer_opening_tag] = ACTIONS(583), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(587), - [anon_sym_DOT] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(583), - [anon_sym_class] = ACTIONS(585), - [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(585), - [sym_optional_chain] = ACTIONS(589), - [anon_sym_new] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(587), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_STAR_STAR] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(587), - [anon_sym_EQ_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(587), - [anon_sym_BANG_EQ_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_QMARK_QMARK] = ACTIONS(589), - [anon_sym_instanceof] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(585), - [anon_sym_void] = ACTIONS(585), - [anon_sym_delete] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), + [STATE(69)] = { + [ts_builtin_sym_end] = ACTIONS(548), + [sym_identifier] = ACTIONS(550), + [anon_sym_export] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_default] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_import] = ACTIONS(550), + [anon_sym_with] = ACTIONS(550), + [anon_sym_var] = ACTIONS(550), + [anon_sym_let] = ACTIONS(550), + [anon_sym_const] = ACTIONS(550), + [anon_sym_else] = ACTIONS(550), + [anon_sym_if] = ACTIONS(550), + [anon_sym_switch] = ACTIONS(550), + [anon_sym_for] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(548), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_await] = ACTIONS(550), + [anon_sym_in] = ACTIONS(552), + [anon_sym_while] = ACTIONS(550), + [anon_sym_do] = ACTIONS(550), + [anon_sym_try] = ACTIONS(550), + [anon_sym_break] = ACTIONS(550), + [anon_sym_continue] = ACTIONS(550), + [anon_sym_debugger] = ACTIONS(550), + [anon_sym_return] = ACTIONS(550), + [anon_sym_throw] = ACTIONS(550), + [anon_sym_case] = ACTIONS(550), + [anon_sym_yield] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(552), + [anon_sym_DOT] = ACTIONS(552), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(548), + [anon_sym_class] = ACTIONS(550), + [anon_sym_async] = ACTIONS(550), + [anon_sym_function] = ACTIONS(550), + [sym_optional_chain] = ACTIONS(554), + [anon_sym_new] = ACTIONS(550), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(552), + [anon_sym_GT_GT_GT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_CARET] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(552), + [anon_sym_PLUS] = ACTIONS(550), + [anon_sym_DASH] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(554), + [anon_sym_STAR_STAR] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_EQ_EQ] = ACTIONS(552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(554), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_QMARK_QMARK] = ACTIONS(554), + [anon_sym_instanceof] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(550), + [anon_sym_TILDE] = ACTIONS(548), + [anon_sym_typeof] = ACTIONS(550), + [anon_sym_void] = ACTIONS(550), + [anon_sym_delete] = ACTIONS(550), + [anon_sym_PLUS_PLUS] = ACTIONS(548), + [anon_sym_DASH_DASH] = ACTIONS(548), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(583), - [sym_number] = ACTIONS(583), - [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(585), - [sym_super] = ACTIONS(585), - [sym_true] = ACTIONS(585), - [sym_false] = ACTIONS(585), - [sym_null] = ACTIONS(585), - [sym_undefined] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(583), - [anon_sym_static] = ACTIONS(585), - [anon_sym_get] = ACTIONS(585), - [anon_sym_set] = ACTIONS(585), - [sym_preproc] = ACTIONS(583), - [sym__automatic_semicolon] = ACTIONS(591), - [sym__ternary_qmark] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(548), + [sym_number] = ACTIONS(548), + [sym_private_property_identifier] = ACTIONS(550), + [sym_this] = ACTIONS(550), + [sym_super] = ACTIONS(550), + [sym_true] = ACTIONS(550), + [sym_false] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [sym_undefined] = ACTIONS(550), + [anon_sym_AT] = ACTIONS(548), + [anon_sym_static] = ACTIONS(550), + [anon_sym_get] = ACTIONS(550), + [anon_sym_set] = ACTIONS(550), + [sym_preproc] = ACTIONS(548), + [sym__automatic_semicolon] = ACTIONS(556), + [sym__ternary_qmark] = ACTIONS(554), [sym_html_comment] = ACTIONS(5), }, - [72] = { - [ts_builtin_sym_end] = ACTIONS(569), - [sym_identifier] = ACTIONS(571), - [anon_sym_export] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_default] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_COMMA] = ACTIONS(569), - [anon_sym_RBRACE] = ACTIONS(569), - [anon_sym_import] = ACTIONS(571), - [anon_sym_with] = ACTIONS(571), - [anon_sym_var] = ACTIONS(571), - [anon_sym_let] = ACTIONS(571), - [anon_sym_const] = ACTIONS(571), - [anon_sym_else] = ACTIONS(571), - [anon_sym_if] = ACTIONS(571), - [anon_sym_switch] = ACTIONS(571), - [anon_sym_for] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_SEMI] = ACTIONS(569), - [anon_sym_await] = ACTIONS(571), - [anon_sym_in] = ACTIONS(571), - [anon_sym_while] = ACTIONS(571), - [anon_sym_do] = ACTIONS(571), - [anon_sym_try] = ACTIONS(571), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_debugger] = ACTIONS(571), - [anon_sym_return] = ACTIONS(571), - [anon_sym_throw] = ACTIONS(571), - [anon_sym_case] = ACTIONS(571), - [anon_sym_yield] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(569), - [sym_glimmer_opening_tag] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(571), - [anon_sym_GT] = ACTIONS(571), - [anon_sym_DOT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(569), - [anon_sym_class] = ACTIONS(571), - [anon_sym_async] = ACTIONS(571), - [anon_sym_function] = ACTIONS(571), - [sym_optional_chain] = ACTIONS(569), - [anon_sym_new] = ACTIONS(571), - [anon_sym_AMP_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(569), - [anon_sym_GT_GT] = ACTIONS(571), - [anon_sym_GT_GT_GT] = ACTIONS(569), - [anon_sym_LT_LT] = ACTIONS(569), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_CARET] = ACTIONS(569), - [anon_sym_PIPE] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(571), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(569), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_LT_EQ] = ACTIONS(569), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_EQ_EQ_EQ] = ACTIONS(569), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_BANG_EQ_EQ] = ACTIONS(569), - [anon_sym_GT_EQ] = ACTIONS(569), - [anon_sym_QMARK_QMARK] = ACTIONS(569), - [anon_sym_instanceof] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_TILDE] = ACTIONS(569), - [anon_sym_typeof] = ACTIONS(571), - [anon_sym_void] = ACTIONS(571), - [anon_sym_delete] = ACTIONS(571), - [anon_sym_PLUS_PLUS] = ACTIONS(569), - [anon_sym_DASH_DASH] = ACTIONS(569), + [STATE(70)] = { + [ts_builtin_sym_end] = ACTIONS(558), + [sym_identifier] = ACTIONS(560), + [anon_sym_export] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_default] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(564), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_import] = ACTIONS(560), + [anon_sym_with] = ACTIONS(560), + [anon_sym_var] = ACTIONS(560), + [anon_sym_let] = ACTIONS(560), + [anon_sym_const] = ACTIONS(560), + [anon_sym_else] = ACTIONS(560), + [anon_sym_if] = ACTIONS(560), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_for] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_await] = ACTIONS(560), + [anon_sym_in] = ACTIONS(562), + [anon_sym_while] = ACTIONS(560), + [anon_sym_do] = ACTIONS(560), + [anon_sym_try] = ACTIONS(560), + [anon_sym_break] = ACTIONS(560), + [anon_sym_continue] = ACTIONS(560), + [anon_sym_debugger] = ACTIONS(560), + [anon_sym_return] = ACTIONS(560), + [anon_sym_throw] = ACTIONS(560), + [anon_sym_case] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(560), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_DQUOTE] = ACTIONS(558), + [anon_sym_SQUOTE] = ACTIONS(558), + [anon_sym_class] = ACTIONS(560), + [anon_sym_async] = ACTIONS(560), + [anon_sym_function] = ACTIONS(560), + [sym_optional_chain] = ACTIONS(564), + [anon_sym_new] = ACTIONS(560), + [anon_sym_AMP_AMP] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_GT_GT_GT] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(560), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_STAR_STAR] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_EQ_EQ_EQ] = ACTIONS(564), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ_EQ] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(564), + [anon_sym_QMARK_QMARK] = ACTIONS(564), + [anon_sym_instanceof] = ACTIONS(562), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_typeof] = ACTIONS(560), + [anon_sym_void] = ACTIONS(560), + [anon_sym_delete] = ACTIONS(560), + [anon_sym_PLUS_PLUS] = ACTIONS(558), + [anon_sym_DASH_DASH] = ACTIONS(558), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(569), - [sym_number] = ACTIONS(569), - [sym_private_property_identifier] = ACTIONS(571), - [sym_this] = ACTIONS(571), - [sym_super] = ACTIONS(571), - [sym_true] = ACTIONS(571), - [sym_false] = ACTIONS(571), - [sym_null] = ACTIONS(571), - [sym_undefined] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(569), - [anon_sym_static] = ACTIONS(571), - [anon_sym_get] = ACTIONS(571), - [anon_sym_set] = ACTIONS(571), - [sym_preproc] = ACTIONS(569), - [sym__automatic_semicolon] = ACTIONS(593), - [sym__ternary_qmark] = ACTIONS(569), + [anon_sym_BQUOTE] = ACTIONS(558), + [sym_number] = ACTIONS(558), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(560), + [sym_super] = ACTIONS(560), + [sym_true] = ACTIONS(560), + [sym_false] = ACTIONS(560), + [sym_null] = ACTIONS(560), + [sym_undefined] = ACTIONS(560), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_static] = ACTIONS(560), + [anon_sym_get] = ACTIONS(560), + [anon_sym_set] = ACTIONS(560), + [sym_preproc] = ACTIONS(558), + [sym__automatic_semicolon] = ACTIONS(566), + [sym__ternary_qmark] = ACTIONS(564), [sym_html_comment] = ACTIONS(5), }, - [73] = { - [ts_builtin_sym_end] = ACTIONS(595), - [sym_identifier] = ACTIONS(597), - [anon_sym_export] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_default] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_import] = ACTIONS(597), - [anon_sym_with] = ACTIONS(597), - [anon_sym_var] = ACTIONS(597), - [anon_sym_let] = ACTIONS(597), - [anon_sym_const] = ACTIONS(597), - [anon_sym_else] = ACTIONS(597), - [anon_sym_if] = ACTIONS(597), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_for] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(595), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_await] = ACTIONS(597), - [anon_sym_in] = ACTIONS(597), - [anon_sym_while] = ACTIONS(597), - [anon_sym_do] = ACTIONS(597), - [anon_sym_try] = ACTIONS(597), - [anon_sym_break] = ACTIONS(597), - [anon_sym_continue] = ACTIONS(597), - [anon_sym_debugger] = ACTIONS(597), - [anon_sym_return] = ACTIONS(597), - [anon_sym_throw] = ACTIONS(597), - [anon_sym_case] = ACTIONS(597), - [anon_sym_yield] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(595), - [sym_glimmer_opening_tag] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(597), - [anon_sym_DQUOTE] = ACTIONS(595), - [anon_sym_SQUOTE] = ACTIONS(595), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(597), - [anon_sym_function] = ACTIONS(597), - [sym_optional_chain] = ACTIONS(595), - [anon_sym_new] = ACTIONS(597), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(597), - [anon_sym_GT_GT_GT] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(597), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_STAR_STAR] = ACTIONS(595), - [anon_sym_LT_EQ] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(597), - [anon_sym_EQ_EQ_EQ] = ACTIONS(595), - [anon_sym_BANG_EQ] = ACTIONS(597), - [anon_sym_BANG_EQ_EQ] = ACTIONS(595), - [anon_sym_GT_EQ] = ACTIONS(595), - [anon_sym_QMARK_QMARK] = ACTIONS(595), - [anon_sym_instanceof] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(597), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(597), - [anon_sym_void] = ACTIONS(597), - [anon_sym_delete] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), + [STATE(71)] = { + [ts_builtin_sym_end] = ACTIONS(568), + [sym_identifier] = ACTIONS(570), + [anon_sym_export] = ACTIONS(570), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_default] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(574), + [anon_sym_RBRACE] = ACTIONS(568), + [anon_sym_import] = ACTIONS(570), + [anon_sym_with] = ACTIONS(570), + [anon_sym_var] = ACTIONS(570), + [anon_sym_let] = ACTIONS(570), + [anon_sym_const] = ACTIONS(570), + [anon_sym_else] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_for] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_SEMI] = ACTIONS(568), + [anon_sym_await] = ACTIONS(570), + [anon_sym_in] = ACTIONS(572), + [anon_sym_while] = ACTIONS(570), + [anon_sym_do] = ACTIONS(570), + [anon_sym_try] = ACTIONS(570), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(570), + [anon_sym_debugger] = ACTIONS(570), + [anon_sym_return] = ACTIONS(570), + [anon_sym_throw] = ACTIONS(570), + [anon_sym_case] = ACTIONS(570), + [anon_sym_yield] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_class] = ACTIONS(570), + [anon_sym_async] = ACTIONS(570), + [anon_sym_function] = ACTIONS(570), + [sym_optional_chain] = ACTIONS(574), + [anon_sym_new] = ACTIONS(570), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE_PIPE] = ACTIONS(574), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_GT_GT_GT] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(570), + [anon_sym_SLASH] = ACTIONS(570), + [anon_sym_PERCENT] = ACTIONS(574), + [anon_sym_STAR_STAR] = ACTIONS(574), + [anon_sym_LT_EQ] = ACTIONS(574), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_EQ_EQ_EQ] = ACTIONS(574), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ_EQ] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(574), + [anon_sym_QMARK_QMARK] = ACTIONS(574), + [anon_sym_instanceof] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(568), + [anon_sym_typeof] = ACTIONS(570), + [anon_sym_void] = ACTIONS(570), + [anon_sym_delete] = ACTIONS(570), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_number] = ACTIONS(595), - [sym_private_property_identifier] = ACTIONS(597), - [sym_this] = ACTIONS(597), - [sym_super] = ACTIONS(597), - [sym_true] = ACTIONS(597), - [sym_false] = ACTIONS(597), - [sym_null] = ACTIONS(597), - [sym_undefined] = ACTIONS(597), - [anon_sym_AT] = ACTIONS(595), - [anon_sym_static] = ACTIONS(597), - [anon_sym_get] = ACTIONS(597), - [anon_sym_set] = ACTIONS(597), - [sym_preproc] = ACTIONS(595), - [sym__automatic_semicolon] = ACTIONS(595), - [sym__ternary_qmark] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(568), + [sym_number] = ACTIONS(568), + [sym_private_property_identifier] = ACTIONS(570), + [sym_this] = ACTIONS(570), + [sym_super] = ACTIONS(570), + [sym_true] = ACTIONS(570), + [sym_false] = ACTIONS(570), + [sym_null] = ACTIONS(570), + [sym_undefined] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(568), + [anon_sym_static] = ACTIONS(570), + [anon_sym_get] = ACTIONS(570), + [anon_sym_set] = ACTIONS(570), + [sym_preproc] = ACTIONS(568), + [sym__automatic_semicolon] = ACTIONS(576), + [sym__ternary_qmark] = ACTIONS(574), [sym_html_comment] = ACTIONS(5), }, - [74] = { - [ts_builtin_sym_end] = ACTIONS(599), - [sym_identifier] = ACTIONS(601), - [anon_sym_export] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_default] = ACTIONS(601), - [anon_sym_LBRACE] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_RBRACE] = ACTIONS(599), - [anon_sym_import] = ACTIONS(601), - [anon_sym_with] = ACTIONS(601), - [anon_sym_var] = ACTIONS(601), - [anon_sym_let] = ACTIONS(601), - [anon_sym_const] = ACTIONS(601), - [anon_sym_else] = ACTIONS(601), - [anon_sym_if] = ACTIONS(601), - [anon_sym_switch] = ACTIONS(601), - [anon_sym_for] = ACTIONS(601), - [anon_sym_LPAREN] = ACTIONS(599), - [anon_sym_SEMI] = ACTIONS(599), - [anon_sym_await] = ACTIONS(601), - [anon_sym_in] = ACTIONS(601), - [anon_sym_while] = ACTIONS(601), - [anon_sym_do] = ACTIONS(601), - [anon_sym_try] = ACTIONS(601), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(601), - [anon_sym_debugger] = ACTIONS(601), - [anon_sym_return] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(601), - [anon_sym_case] = ACTIONS(601), - [anon_sym_yield] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(599), - [sym_glimmer_opening_tag] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_DOT] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(599), - [anon_sym_SQUOTE] = ACTIONS(599), - [anon_sym_class] = ACTIONS(601), - [anon_sym_async] = ACTIONS(601), - [anon_sym_function] = ACTIONS(601), - [sym_optional_chain] = ACTIONS(599), - [anon_sym_new] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(599), - [anon_sym_PIPE_PIPE] = ACTIONS(599), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(599), - [anon_sym_LT_LT] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(601), - [anon_sym_CARET] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(599), - [anon_sym_STAR_STAR] = ACTIONS(599), - [anon_sym_LT_EQ] = ACTIONS(599), - [anon_sym_EQ_EQ] = ACTIONS(601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(599), - [anon_sym_BANG_EQ] = ACTIONS(601), - [anon_sym_BANG_EQ_EQ] = ACTIONS(599), - [anon_sym_GT_EQ] = ACTIONS(599), - [anon_sym_QMARK_QMARK] = ACTIONS(599), - [anon_sym_instanceof] = ACTIONS(601), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(599), - [anon_sym_typeof] = ACTIONS(601), - [anon_sym_void] = ACTIONS(601), - [anon_sym_delete] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), + [STATE(72)] = { + [ts_builtin_sym_end] = ACTIONS(578), + [sym_identifier] = ACTIONS(580), + [anon_sym_export] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_default] = ACTIONS(580), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(584), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_import] = ACTIONS(580), + [anon_sym_with] = ACTIONS(580), + [anon_sym_var] = ACTIONS(580), + [anon_sym_let] = ACTIONS(580), + [anon_sym_const] = ACTIONS(580), + [anon_sym_else] = ACTIONS(580), + [anon_sym_if] = ACTIONS(580), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_for] = ACTIONS(580), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_SEMI] = ACTIONS(578), + [anon_sym_await] = ACTIONS(580), + [anon_sym_in] = ACTIONS(582), + [anon_sym_while] = ACTIONS(580), + [anon_sym_do] = ACTIONS(580), + [anon_sym_try] = ACTIONS(580), + [anon_sym_break] = ACTIONS(580), + [anon_sym_continue] = ACTIONS(580), + [anon_sym_debugger] = ACTIONS(580), + [anon_sym_return] = ACTIONS(580), + [anon_sym_throw] = ACTIONS(580), + [anon_sym_case] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(580), + [anon_sym_LBRACK] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(578), + [anon_sym_SQUOTE] = ACTIONS(578), + [anon_sym_class] = ACTIONS(580), + [anon_sym_async] = ACTIONS(580), + [anon_sym_function] = ACTIONS(580), + [sym_optional_chain] = ACTIONS(584), + [anon_sym_new] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(584), + [anon_sym_PIPE_PIPE] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_GT_GT_GT] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(584), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_STAR_STAR] = ACTIONS(584), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_EQ_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ_EQ] = ACTIONS(584), + [anon_sym_BANG_EQ] = ACTIONS(582), + [anon_sym_BANG_EQ_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_QMARK_QMARK] = ACTIONS(584), + [anon_sym_instanceof] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_typeof] = ACTIONS(580), + [anon_sym_void] = ACTIONS(580), + [anon_sym_delete] = ACTIONS(580), + [anon_sym_PLUS_PLUS] = ACTIONS(578), + [anon_sym_DASH_DASH] = ACTIONS(578), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(599), - [sym_number] = ACTIONS(599), - [sym_private_property_identifier] = ACTIONS(601), - [sym_this] = ACTIONS(601), - [sym_super] = ACTIONS(601), - [sym_true] = ACTIONS(601), - [sym_false] = ACTIONS(601), - [sym_null] = ACTIONS(601), - [sym_undefined] = ACTIONS(601), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_static] = ACTIONS(601), - [anon_sym_get] = ACTIONS(601), - [anon_sym_set] = ACTIONS(601), - [sym_preproc] = ACTIONS(599), - [sym__automatic_semicolon] = ACTIONS(599), - [sym__ternary_qmark] = ACTIONS(599), + [anon_sym_BQUOTE] = ACTIONS(578), + [sym_number] = ACTIONS(578), + [sym_private_property_identifier] = ACTIONS(580), + [sym_this] = ACTIONS(580), + [sym_super] = ACTIONS(580), + [sym_true] = ACTIONS(580), + [sym_false] = ACTIONS(580), + [sym_null] = ACTIONS(580), + [sym_undefined] = ACTIONS(580), + [anon_sym_AT] = ACTIONS(578), + [anon_sym_static] = ACTIONS(580), + [anon_sym_get] = ACTIONS(580), + [anon_sym_set] = ACTIONS(580), + [sym_preproc] = ACTIONS(578), + [sym__automatic_semicolon] = ACTIONS(586), + [sym__ternary_qmark] = ACTIONS(584), [sym_html_comment] = ACTIONS(5), }, - [75] = { - [ts_builtin_sym_end] = ACTIONS(603), - [sym_identifier] = ACTIONS(605), - [anon_sym_export] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(607), - [anon_sym_default] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(603), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_RBRACE] = ACTIONS(603), - [anon_sym_import] = ACTIONS(605), - [anon_sym_with] = ACTIONS(605), - [anon_sym_var] = ACTIONS(605), - [anon_sym_let] = ACTIONS(605), - [anon_sym_const] = ACTIONS(605), - [anon_sym_else] = ACTIONS(605), - [anon_sym_if] = ACTIONS(605), - [anon_sym_switch] = ACTIONS(605), - [anon_sym_for] = ACTIONS(605), - [anon_sym_LPAREN] = ACTIONS(603), - [anon_sym_SEMI] = ACTIONS(603), - [anon_sym_await] = ACTIONS(605), - [anon_sym_in] = ACTIONS(607), - [anon_sym_while] = ACTIONS(605), - [anon_sym_do] = ACTIONS(605), - [anon_sym_try] = ACTIONS(605), - [anon_sym_break] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(605), - [anon_sym_debugger] = ACTIONS(605), - [anon_sym_return] = ACTIONS(605), - [anon_sym_throw] = ACTIONS(605), - [anon_sym_case] = ACTIONS(605), - [anon_sym_yield] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(603), - [sym_glimmer_opening_tag] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(605), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_DQUOTE] = ACTIONS(603), - [anon_sym_SQUOTE] = ACTIONS(603), - [anon_sym_class] = ACTIONS(605), - [anon_sym_async] = ACTIONS(605), - [anon_sym_function] = ACTIONS(605), - [sym_optional_chain] = ACTIONS(609), - [anon_sym_new] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(609), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_PLUS] = ACTIONS(605), - [anon_sym_DASH] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(605), - [anon_sym_PERCENT] = ACTIONS(609), - [anon_sym_STAR_STAR] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_EQ_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ_EQ] = ACTIONS(609), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_QMARK_QMARK] = ACTIONS(609), - [anon_sym_instanceof] = ACTIONS(607), - [anon_sym_BANG] = ACTIONS(605), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_typeof] = ACTIONS(605), - [anon_sym_void] = ACTIONS(605), - [anon_sym_delete] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(603), + [STATE(73)] = { + [ts_builtin_sym_end] = ACTIONS(588), + [sym_identifier] = ACTIONS(590), + [anon_sym_export] = ACTIONS(590), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_default] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_COMMA] = ACTIONS(594), + [anon_sym_RBRACE] = ACTIONS(588), + [anon_sym_import] = ACTIONS(590), + [anon_sym_with] = ACTIONS(590), + [anon_sym_var] = ACTIONS(590), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(590), + [anon_sym_else] = ACTIONS(590), + [anon_sym_if] = ACTIONS(590), + [anon_sym_switch] = ACTIONS(590), + [anon_sym_for] = ACTIONS(590), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_SEMI] = ACTIONS(588), + [anon_sym_await] = ACTIONS(590), + [anon_sym_in] = ACTIONS(592), + [anon_sym_while] = ACTIONS(590), + [anon_sym_do] = ACTIONS(590), + [anon_sym_try] = ACTIONS(590), + [anon_sym_break] = ACTIONS(590), + [anon_sym_continue] = ACTIONS(590), + [anon_sym_debugger] = ACTIONS(590), + [anon_sym_return] = ACTIONS(590), + [anon_sym_throw] = ACTIONS(590), + [anon_sym_case] = ACTIONS(590), + [anon_sym_yield] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(588), + [anon_sym_LT] = ACTIONS(590), + [anon_sym_GT] = ACTIONS(592), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(588), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_class] = ACTIONS(590), + [anon_sym_async] = ACTIONS(590), + [anon_sym_function] = ACTIONS(590), + [sym_optional_chain] = ACTIONS(594), + [anon_sym_new] = ACTIONS(590), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_GT_GT] = ACTIONS(592), + [anon_sym_GT_GT_GT] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(594), + [anon_sym_AMP] = ACTIONS(592), + [anon_sym_CARET] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(592), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_PERCENT] = ACTIONS(594), + [anon_sym_STAR_STAR] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(594), + [anon_sym_EQ_EQ] = ACTIONS(592), + [anon_sym_EQ_EQ_EQ] = ACTIONS(594), + [anon_sym_BANG_EQ] = ACTIONS(592), + [anon_sym_BANG_EQ_EQ] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(594), + [anon_sym_QMARK_QMARK] = ACTIONS(594), + [anon_sym_instanceof] = ACTIONS(592), + [anon_sym_BANG] = ACTIONS(590), + [anon_sym_TILDE] = ACTIONS(588), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(603), - [sym_number] = ACTIONS(603), - [sym_private_property_identifier] = ACTIONS(605), - [sym_this] = ACTIONS(605), - [sym_super] = ACTIONS(605), - [sym_true] = ACTIONS(605), - [sym_false] = ACTIONS(605), - [sym_null] = ACTIONS(605), - [sym_undefined] = ACTIONS(605), - [anon_sym_AT] = ACTIONS(603), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [sym_preproc] = ACTIONS(603), - [sym__automatic_semicolon] = ACTIONS(611), - [sym__ternary_qmark] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(588), + [sym_number] = ACTIONS(588), + [sym_private_property_identifier] = ACTIONS(590), + [sym_this] = ACTIONS(590), + [sym_super] = ACTIONS(590), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_undefined] = ACTIONS(590), + [anon_sym_AT] = ACTIONS(588), + [anon_sym_static] = ACTIONS(590), + [anon_sym_get] = ACTIONS(590), + [anon_sym_set] = ACTIONS(590), + [sym_preproc] = ACTIONS(588), + [sym__automatic_semicolon] = ACTIONS(596), + [sym__ternary_qmark] = ACTIONS(594), [sym_html_comment] = ACTIONS(5), }, - [76] = { - [ts_builtin_sym_end] = ACTIONS(613), - [sym_identifier] = ACTIONS(615), - [anon_sym_export] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_default] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_RBRACE] = ACTIONS(613), - [anon_sym_import] = ACTIONS(615), - [anon_sym_with] = ACTIONS(615), - [anon_sym_var] = ACTIONS(615), - [anon_sym_let] = ACTIONS(615), - [anon_sym_const] = ACTIONS(615), - [anon_sym_else] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_switch] = ACTIONS(615), - [anon_sym_for] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(613), - [anon_sym_SEMI] = ACTIONS(613), - [anon_sym_await] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_while] = ACTIONS(615), - [anon_sym_do] = ACTIONS(615), - [anon_sym_try] = ACTIONS(615), - [anon_sym_break] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(615), - [anon_sym_debugger] = ACTIONS(615), - [anon_sym_return] = ACTIONS(615), - [anon_sym_throw] = ACTIONS(615), - [anon_sym_case] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [sym_glimmer_opening_tag] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_DQUOTE] = ACTIONS(613), - [anon_sym_SQUOTE] = ACTIONS(613), - [anon_sym_class] = ACTIONS(615), - [anon_sym_async] = ACTIONS(615), - [anon_sym_function] = ACTIONS(615), - [sym_optional_chain] = ACTIONS(613), - [anon_sym_new] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(613), - [anon_sym_STAR_STAR] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_QMARK_QMARK] = ACTIONS(613), - [anon_sym_instanceof] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_typeof] = ACTIONS(615), - [anon_sym_void] = ACTIONS(615), - [anon_sym_delete] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), + [STATE(74)] = { + [ts_builtin_sym_end] = ACTIONS(598), + [sym_identifier] = ACTIONS(600), + [anon_sym_export] = ACTIONS(600), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_default] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(598), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_RBRACE] = ACTIONS(598), + [anon_sym_import] = ACTIONS(600), + [anon_sym_with] = ACTIONS(600), + [anon_sym_var] = ACTIONS(600), + [anon_sym_let] = ACTIONS(600), + [anon_sym_const] = ACTIONS(600), + [anon_sym_else] = ACTIONS(600), + [anon_sym_if] = ACTIONS(600), + [anon_sym_switch] = ACTIONS(600), + [anon_sym_for] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_await] = ACTIONS(600), + [anon_sym_in] = ACTIONS(602), + [anon_sym_while] = ACTIONS(600), + [anon_sym_do] = ACTIONS(600), + [anon_sym_try] = ACTIONS(600), + [anon_sym_break] = ACTIONS(600), + [anon_sym_continue] = ACTIONS(600), + [anon_sym_debugger] = ACTIONS(600), + [anon_sym_return] = ACTIONS(600), + [anon_sym_throw] = ACTIONS(600), + [anon_sym_case] = ACTIONS(600), + [anon_sym_yield] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(600), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_DOT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(598), + [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_class] = ACTIONS(600), + [anon_sym_async] = ACTIONS(600), + [anon_sym_function] = ACTIONS(600), + [sym_optional_chain] = ACTIONS(604), + [anon_sym_new] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(604), + [anon_sym_PIPE_PIPE] = ACTIONS(604), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_GT_GT_GT] = ACTIONS(604), + [anon_sym_LT_LT] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(604), + [anon_sym_PIPE] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_SLASH] = ACTIONS(600), + [anon_sym_PERCENT] = ACTIONS(604), + [anon_sym_STAR_STAR] = ACTIONS(604), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_EQ_EQ] = ACTIONS(602), + [anon_sym_EQ_EQ_EQ] = ACTIONS(604), + [anon_sym_BANG_EQ] = ACTIONS(602), + [anon_sym_BANG_EQ_EQ] = ACTIONS(604), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_QMARK_QMARK] = ACTIONS(604), + [anon_sym_instanceof] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(600), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_typeof] = ACTIONS(600), + [anon_sym_void] = ACTIONS(600), + [anon_sym_delete] = ACTIONS(600), + [anon_sym_PLUS_PLUS] = ACTIONS(598), + [anon_sym_DASH_DASH] = ACTIONS(598), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(613), - [sym_number] = ACTIONS(613), - [sym_private_property_identifier] = ACTIONS(615), - [sym_this] = ACTIONS(615), - [sym_super] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_null] = ACTIONS(615), - [sym_undefined] = ACTIONS(615), - [anon_sym_AT] = ACTIONS(613), - [anon_sym_static] = ACTIONS(615), - [anon_sym_get] = ACTIONS(615), - [anon_sym_set] = ACTIONS(615), - [sym_preproc] = ACTIONS(613), - [sym__automatic_semicolon] = ACTIONS(613), - [sym__ternary_qmark] = ACTIONS(613), + [anon_sym_BQUOTE] = ACTIONS(598), + [sym_number] = ACTIONS(598), + [sym_private_property_identifier] = ACTIONS(600), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(600), + [anon_sym_AT] = ACTIONS(598), + [anon_sym_static] = ACTIONS(600), + [anon_sym_get] = ACTIONS(600), + [anon_sym_set] = ACTIONS(600), + [sym_preproc] = ACTIONS(598), + [sym__automatic_semicolon] = ACTIONS(606), + [sym__ternary_qmark] = ACTIONS(604), [sym_html_comment] = ACTIONS(5), }, - [77] = { - [ts_builtin_sym_end] = ACTIONS(617), - [sym_identifier] = ACTIONS(619), - [anon_sym_export] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_default] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_import] = ACTIONS(619), - [anon_sym_with] = ACTIONS(619), - [anon_sym_var] = ACTIONS(619), - [anon_sym_let] = ACTIONS(619), - [anon_sym_const] = ACTIONS(619), - [anon_sym_else] = ACTIONS(619), - [anon_sym_if] = ACTIONS(619), - [anon_sym_switch] = ACTIONS(619), - [anon_sym_for] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_await] = ACTIONS(619), - [anon_sym_in] = ACTIONS(621), - [anon_sym_while] = ACTIONS(619), - [anon_sym_do] = ACTIONS(619), - [anon_sym_try] = ACTIONS(619), - [anon_sym_break] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(619), - [anon_sym_debugger] = ACTIONS(619), - [anon_sym_return] = ACTIONS(619), - [anon_sym_throw] = ACTIONS(619), - [anon_sym_case] = ACTIONS(619), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(617), - [sym_glimmer_opening_tag] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_DQUOTE] = ACTIONS(617), - [anon_sym_SQUOTE] = ACTIONS(617), - [anon_sym_class] = ACTIONS(619), - [anon_sym_async] = ACTIONS(619), - [anon_sym_function] = ACTIONS(619), - [sym_optional_chain] = ACTIONS(623), - [anon_sym_new] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_STAR_STAR] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(623), - [anon_sym_QMARK_QMARK] = ACTIONS(623), - [anon_sym_instanceof] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_typeof] = ACTIONS(619), - [anon_sym_void] = ACTIONS(619), - [anon_sym_delete] = ACTIONS(619), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), + [STATE(75)] = { + [ts_builtin_sym_end] = ACTIONS(608), + [sym_identifier] = ACTIONS(610), + [anon_sym_export] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_default] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(614), + [anon_sym_RBRACE] = ACTIONS(608), + [anon_sym_import] = ACTIONS(610), + [anon_sym_with] = ACTIONS(610), + [anon_sym_var] = ACTIONS(610), + [anon_sym_let] = ACTIONS(610), + [anon_sym_const] = ACTIONS(610), + [anon_sym_else] = ACTIONS(610), + [anon_sym_if] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(610), + [anon_sym_for] = ACTIONS(610), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_await] = ACTIONS(610), + [anon_sym_in] = ACTIONS(612), + [anon_sym_while] = ACTIONS(610), + [anon_sym_do] = ACTIONS(610), + [anon_sym_try] = ACTIONS(610), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(610), + [anon_sym_debugger] = ACTIONS(610), + [anon_sym_return] = ACTIONS(610), + [anon_sym_throw] = ACTIONS(610), + [anon_sym_case] = ACTIONS(610), + [anon_sym_yield] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(608), + [anon_sym_SQUOTE] = ACTIONS(608), + [anon_sym_class] = ACTIONS(610), + [anon_sym_async] = ACTIONS(610), + [anon_sym_function] = ACTIONS(610), + [sym_optional_chain] = ACTIONS(614), + [anon_sym_new] = ACTIONS(610), + [anon_sym_AMP_AMP] = ACTIONS(614), + [anon_sym_PIPE_PIPE] = ACTIONS(614), + [anon_sym_GT_GT] = ACTIONS(612), + [anon_sym_GT_GT_GT] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(614), + [anon_sym_AMP] = ACTIONS(612), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(610), + [anon_sym_PERCENT] = ACTIONS(614), + [anon_sym_STAR_STAR] = ACTIONS(614), + [anon_sym_LT_EQ] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(614), + [anon_sym_BANG_EQ] = ACTIONS(612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(614), + [anon_sym_GT_EQ] = ACTIONS(614), + [anon_sym_QMARK_QMARK] = ACTIONS(614), + [anon_sym_instanceof] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(610), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(610), + [anon_sym_void] = ACTIONS(610), + [anon_sym_delete] = ACTIONS(610), + [anon_sym_PLUS_PLUS] = ACTIONS(608), + [anon_sym_DASH_DASH] = ACTIONS(608), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(617), - [sym_number] = ACTIONS(617), - [sym_private_property_identifier] = ACTIONS(619), - [sym_this] = ACTIONS(619), - [sym_super] = ACTIONS(619), - [sym_true] = ACTIONS(619), - [sym_false] = ACTIONS(619), - [sym_null] = ACTIONS(619), - [sym_undefined] = ACTIONS(619), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_static] = ACTIONS(619), - [anon_sym_get] = ACTIONS(619), - [anon_sym_set] = ACTIONS(619), - [sym_preproc] = ACTIONS(617), - [sym__automatic_semicolon] = ACTIONS(625), - [sym__ternary_qmark] = ACTIONS(623), + [anon_sym_BQUOTE] = ACTIONS(608), + [sym_number] = ACTIONS(608), + [sym_private_property_identifier] = ACTIONS(610), + [sym_this] = ACTIONS(610), + [sym_super] = ACTIONS(610), + [sym_true] = ACTIONS(610), + [sym_false] = ACTIONS(610), + [sym_null] = ACTIONS(610), + [sym_undefined] = ACTIONS(610), + [anon_sym_AT] = ACTIONS(608), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), + [sym_preproc] = ACTIONS(608), + [sym__automatic_semicolon] = ACTIONS(616), + [sym__ternary_qmark] = ACTIONS(614), [sym_html_comment] = ACTIONS(5), }, - [78] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(794), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1154), - [sym_assignment_pattern] = STATE(1327), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1154), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1154), - [sym_spread_element] = STATE(1362), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [sym_pattern] = STATE(1278), - [sym_rest_pattern] = STATE(1185), - [aux_sym_export_statement_repeat1] = STATE(1274), - [aux_sym_array_repeat1] = STATE(1363), - [aux_sym_array_pattern_repeat1] = STATE(1321), - [sym_identifier] = ACTIONS(627), - [anon_sym_export] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(473), - [anon_sym_RBRACK] = ACTIONS(633), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(635), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(76)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(767), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1179), + [sym_assignment_pattern] = STATE(1377), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1179), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(481), + [sym_subscript_expression] = STATE(481), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1179), + [sym_spread_element] = STATE(1330), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [sym_pattern] = STATE(1261), + [sym_rest_pattern] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(1219), + [aux_sym_array_repeat1] = STATE(1331), + [aux_sym_array_pattern_repeat1] = STATE(1368), + [sym_identifier] = ACTIONS(618), + [anon_sym_export] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_RBRACK] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(628), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(629), - [anon_sym_get] = ACTIONS(629), - [anon_sym_set] = ACTIONS(629), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(620), + [anon_sym_get] = ACTIONS(620), + [anon_sym_set] = ACTIONS(620), [sym_html_comment] = ACTIONS(5), }, - [79] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(712), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1154), - [sym_assignment_pattern] = STATE(1327), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1154), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1154), - [sym_spread_element] = STATE(1326), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [sym_pattern] = STATE(1278), - [sym_rest_pattern] = STATE(1185), - [aux_sym_export_statement_repeat1] = STATE(1274), - [aux_sym_array_repeat1] = STATE(1325), - [aux_sym_array_pattern_repeat1] = STATE(1321), - [sym_identifier] = ACTIONS(627), - [anon_sym_export] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(473), - [anon_sym_RBRACK] = ACTIONS(639), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(635), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(77)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(798), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1179), + [sym_assignment_pattern] = STATE(1377), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1179), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(481), + [sym_subscript_expression] = STATE(481), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1179), + [sym_spread_element] = STATE(1335), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [sym_pattern] = STATE(1261), + [sym_rest_pattern] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(1219), + [aux_sym_array_repeat1] = STATE(1366), + [aux_sym_array_pattern_repeat1] = STATE(1368), + [sym_identifier] = ACTIONS(618), + [anon_sym_export] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_RBRACK] = ACTIONS(632), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(628), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(629), - [anon_sym_get] = ACTIONS(629), - [anon_sym_set] = ACTIONS(629), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(620), + [anon_sym_get] = ACTIONS(620), + [anon_sym_set] = ACTIONS(620), [sym_html_comment] = ACTIONS(5), }, - [80] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(794), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1154), - [sym_assignment_pattern] = STATE(1327), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1154), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1154), - [sym_spread_element] = STATE(1362), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [sym_pattern] = STATE(1278), - [sym_rest_pattern] = STATE(1185), - [aux_sym_export_statement_repeat1] = STATE(1274), - [aux_sym_array_repeat1] = STATE(1363), - [aux_sym_array_pattern_repeat1] = STATE(1321), - [sym_identifier] = ACTIONS(627), - [anon_sym_export] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(473), - [anon_sym_RBRACK] = ACTIONS(641), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(635), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(78)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(767), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1179), + [sym_assignment_pattern] = STATE(1377), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1179), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(481), + [sym_subscript_expression] = STATE(481), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1179), + [sym_spread_element] = STATE(1330), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [sym_pattern] = STATE(1261), + [sym_rest_pattern] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(1219), + [aux_sym_array_repeat1] = STATE(1331), + [aux_sym_array_pattern_repeat1] = STATE(1368), + [sym_identifier] = ACTIONS(618), + [anon_sym_export] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_RBRACK] = ACTIONS(634), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(628), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(629), - [anon_sym_get] = ACTIONS(629), - [anon_sym_set] = ACTIONS(629), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(620), + [anon_sym_get] = ACTIONS(620), + [anon_sym_set] = ACTIONS(620), [sym_html_comment] = ACTIONS(5), }, - [81] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(794), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1154), - [sym_assignment_pattern] = STATE(1327), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1154), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1154), - [sym_spread_element] = STATE(1362), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [sym_pattern] = STATE(1278), - [sym_rest_pattern] = STATE(1185), - [aux_sym_export_statement_repeat1] = STATE(1274), - [aux_sym_array_repeat1] = STATE(1363), - [aux_sym_array_pattern_repeat1] = STATE(1321), - [sym_identifier] = ACTIONS(627), - [anon_sym_export] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(473), - [anon_sym_RBRACK] = ACTIONS(643), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(635), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(79)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(767), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1179), + [sym_assignment_pattern] = STATE(1377), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1179), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(481), + [sym_subscript_expression] = STATE(481), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1179), + [sym_spread_element] = STATE(1330), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [sym_pattern] = STATE(1261), + [sym_rest_pattern] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(1219), + [aux_sym_array_repeat1] = STATE(1331), + [aux_sym_array_pattern_repeat1] = STATE(1368), + [sym_identifier] = ACTIONS(618), + [anon_sym_export] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_RBRACK] = ACTIONS(636), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(628), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(629), - [anon_sym_get] = ACTIONS(629), - [anon_sym_set] = ACTIONS(629), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(620), + [anon_sym_get] = ACTIONS(620), + [anon_sym_set] = ACTIONS(620), [sym_html_comment] = ACTIONS(5), }, - [82] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(794), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1154), - [sym_assignment_pattern] = STATE(1327), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1154), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1154), - [sym_spread_element] = STATE(1362), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [sym_pattern] = STATE(1278), - [sym_rest_pattern] = STATE(1185), - [aux_sym_export_statement_repeat1] = STATE(1274), - [aux_sym_array_repeat1] = STATE(1363), - [aux_sym_array_pattern_repeat1] = STATE(1321), - [sym_identifier] = ACTIONS(627), - [anon_sym_export] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(473), - [anon_sym_RBRACK] = ACTIONS(645), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(635), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(80)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(767), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1179), + [sym_assignment_pattern] = STATE(1377), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1179), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(481), + [sym_subscript_expression] = STATE(481), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1179), + [sym_spread_element] = STATE(1330), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [sym_pattern] = STATE(1261), + [sym_rest_pattern] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(1219), + [aux_sym_array_repeat1] = STATE(1331), + [aux_sym_array_pattern_repeat1] = STATE(1368), + [sym_identifier] = ACTIONS(618), + [anon_sym_export] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_RBRACK] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(628), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(629), - [anon_sym_get] = ACTIONS(629), - [anon_sym_set] = ACTIONS(629), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(620), + [anon_sym_get] = ACTIONS(620), + [anon_sym_set] = ACTIONS(620), [sym_html_comment] = ACTIONS(5), }, - [83] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(733), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1154), - [sym_assignment_pattern] = STATE(1327), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1154), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1154), - [sym_spread_element] = STATE(1326), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [sym_pattern] = STATE(1278), - [sym_rest_pattern] = STATE(1185), - [aux_sym_export_statement_repeat1] = STATE(1274), - [aux_sym_array_repeat1] = STATE(1325), - [aux_sym_array_pattern_repeat1] = STATE(1321), - [sym_identifier] = ACTIONS(627), - [anon_sym_export] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(473), - [anon_sym_RBRACK] = ACTIONS(639), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(635), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(81)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(767), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1179), + [sym_assignment_pattern] = STATE(1377), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1179), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(481), + [sym_subscript_expression] = STATE(481), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1179), + [sym_spread_element] = STATE(1330), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [sym_pattern] = STATE(1261), + [sym_rest_pattern] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(1219), + [aux_sym_array_repeat1] = STATE(1331), + [aux_sym_array_pattern_repeat1] = STATE(1368), + [sym_identifier] = ACTIONS(618), + [anon_sym_export] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_RBRACK] = ACTIONS(640), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(628), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(629), - [anon_sym_get] = ACTIONS(629), - [anon_sym_set] = ACTIONS(629), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(620), + [anon_sym_get] = ACTIONS(620), + [anon_sym_set] = ACTIONS(620), [sym_html_comment] = ACTIONS(5), }, - [84] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(794), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1154), - [sym_assignment_pattern] = STATE(1327), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1154), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1154), - [sym_spread_element] = STATE(1362), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [sym_pattern] = STATE(1278), - [sym_rest_pattern] = STATE(1185), - [aux_sym_export_statement_repeat1] = STATE(1274), - [aux_sym_array_repeat1] = STATE(1363), - [aux_sym_array_pattern_repeat1] = STATE(1321), - [sym_identifier] = ACTIONS(627), - [anon_sym_export] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(473), - [anon_sym_RBRACK] = ACTIONS(647), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(635), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(82)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(821), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1179), + [sym_assignment_pattern] = STATE(1377), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1179), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(481), + [sym_subscript_expression] = STATE(481), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1179), + [sym_spread_element] = STATE(1335), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [sym_pattern] = STATE(1261), + [sym_rest_pattern] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(1219), + [aux_sym_array_repeat1] = STATE(1366), + [aux_sym_array_pattern_repeat1] = STATE(1368), + [sym_identifier] = ACTIONS(618), + [anon_sym_export] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_RBRACK] = ACTIONS(632), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(628), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(629), - [anon_sym_get] = ACTIONS(629), - [anon_sym_set] = ACTIONS(629), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(620), + [anon_sym_get] = ACTIONS(620), + [anon_sym_set] = ACTIONS(620), [sym_html_comment] = ACTIONS(5), }, - [85] = { - [sym_declaration] = STATE(372), - [sym_import] = STATE(1130), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(797), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1293), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), + [STATE(83)] = { + [sym_declaration] = STATE(408), + [sym_import] = STATE(1215), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(826), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1242), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(649), + [anon_sym_let] = ACTIONS(642), [anon_sym_const] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(651), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(344), + [anon_sym_async] = ACTIONS(644), + [anon_sym_function] = ACTIONS(348), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [86] = { - [sym_declaration] = STATE(372), - [sym_import] = STATE(1130), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(797), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1254), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), + [STATE(84)] = { + [sym_declaration] = STATE(408), + [sym_import] = STATE(1215), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(826), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1272), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(649), + [anon_sym_let] = ACTIONS(642), [anon_sym_const] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(353), - [anon_sym_async] = ACTIONS(653), - [anon_sym_function] = ACTIONS(357), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(646), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [87] = { - [sym_declaration] = STATE(394), - [sym_import] = STATE(1130), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(832), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1254), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), + [STATE(85)] = { + [sym_declaration] = STATE(396), + [sym_import] = STATE(1215), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(831), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1242), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(649), + [anon_sym_let] = ACTIONS(642), [anon_sym_const] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(353), - [anon_sym_async] = ACTIONS(653), - [anon_sym_function] = ACTIONS(357), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(344), + [anon_sym_async] = ACTIONS(644), + [anon_sym_function] = ACTIONS(348), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [88] = { - [sym_declaration] = STATE(394), - [sym_import] = STATE(1130), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(832), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_class_declaration] = STATE(368), - [sym_function_expression] = STATE(747), - [sym_function_declaration] = STATE(368), - [sym_generator_function] = STATE(747), - [sym_generator_function_declaration] = STATE(368), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1293), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), + [STATE(86)] = { + [sym_declaration] = STATE(396), + [sym_import] = STATE(1215), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(831), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(702), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(702), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1272), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(649), + [anon_sym_let] = ACTIONS(642), [anon_sym_const] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(651), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(646), + [anon_sym_function] = ACTIONS(69), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [89] = { - [sym_import] = STATE(1121), - [sym_variable_declaration] = STATE(114), - [sym_lexical_declaration] = STATE(114), - [sym_empty_statement] = STATE(114), - [sym_parenthesized_expression] = STATE(494), - [sym_expression] = STATE(731), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1317), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(494), - [sym_subscript_expression] = STATE(494), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1667), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(655), - [anon_sym_export] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(659), - [anon_sym_import] = ACTIONS(371), - [anon_sym_var] = ACTIONS(661), - [anon_sym_let] = ACTIONS(663), - [anon_sym_const] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(667), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(669), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(87)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(871), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1153), + [sym_assignment_pattern] = STATE(1329), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1153), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(480), + [sym_subscript_expression] = STATE(480), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1153), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [sym_pattern] = STATE(1262), + [sym_rest_pattern] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(1219), + [aux_sym_array_pattern_repeat1] = STATE(1332), + [sym_identifier] = ACTIONS(648), + [anon_sym_export] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_RBRACK] = ACTIONS(658), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(660), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_DOT_DOT_DOT] = ACTIONS(662), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(657), - [anon_sym_get] = ACTIONS(657), - [anon_sym_set] = ACTIONS(657), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(650), + [anon_sym_get] = ACTIONS(650), + [anon_sym_set] = ACTIONS(650), [sym_html_comment] = ACTIONS(5), }, - [90] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(778), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1154), - [sym_assignment_pattern] = STATE(1563), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1154), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1154), - [sym_spread_element] = STATE(1332), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [sym_pattern] = STATE(1333), - [sym_rest_pattern] = STATE(1185), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(627), - [anon_sym_export] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(675), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(473), - [anon_sym_RBRACK] = ACTIONS(675), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(635), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(88)] = { + [sym_import] = STATE(1247), + [sym_variable_declaration] = STATE(110), + [sym_lexical_declaration] = STATE(110), + [sym_empty_statement] = STATE(110), + [sym_parenthesized_expression] = STATE(491), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1378), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1378), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(491), + [sym_subscript_expression] = STATE(491), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1378), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1724), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(666), + [anon_sym_export] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_import] = ACTIONS(362), + [anon_sym_var] = ACTIONS(672), + [anon_sym_let] = ACTIONS(674), + [anon_sym_const] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_SEMI] = ACTIONS(678), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(682), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(629), - [anon_sym_get] = ACTIONS(629), - [anon_sym_set] = ACTIONS(629), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), [sym_html_comment] = ACTIONS(5), }, - [91] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(875), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1167), - [sym_assignment_pattern] = STATE(1327), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1167), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1167), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [sym_pattern] = STATE(1278), - [sym_rest_pattern] = STATE(1185), - [aux_sym_export_statement_repeat1] = STATE(1274), - [aux_sym_array_pattern_repeat1] = STATE(1321), - [sym_identifier] = ACTIONS(678), - [anon_sym_export] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_COMMA] = ACTIONS(684), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(688), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(690), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(89)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(864), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1179), + [sym_assignment_pattern] = STATE(1377), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1179), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(494), + [sym_subscript_expression] = STATE(494), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1179), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [sym_pattern] = STATE(1261), + [sym_rest_pattern] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(1219), + [aux_sym_array_pattern_repeat1] = STATE(1368), + [sym_identifier] = ACTIONS(686), + [anon_sym_export] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_RBRACK] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(696), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(662), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(680), - [anon_sym_get] = ACTIONS(680), - [anon_sym_set] = ACTIONS(680), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(698), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(688), + [anon_sym_get] = ACTIONS(688), + [anon_sym_set] = ACTIONS(688), [sym_html_comment] = ACTIONS(5), }, - [92] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(855), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1154), - [sym_assignment_pattern] = STATE(1327), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1154), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(496), - [sym_subscript_expression] = STATE(496), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1154), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [sym_pattern] = STATE(1278), - [sym_rest_pattern] = STATE(1185), - [aux_sym_export_statement_repeat1] = STATE(1274), - [aux_sym_array_pattern_repeat1] = STATE(1321), - [sym_identifier] = ACTIONS(696), - [anon_sym_export] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(684), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(698), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_RBRACK] = ACTIONS(688), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(90)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(871), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1153), + [sym_assignment_pattern] = STATE(1377), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1153), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(480), + [sym_subscript_expression] = STATE(480), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1153), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [sym_pattern] = STATE(1261), + [sym_rest_pattern] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(1219), + [aux_sym_array_pattern_repeat1] = STATE(1368), + [sym_identifier] = ACTIONS(648), + [anon_sym_export] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_RBRACK] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(660), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_DOT_DOT_DOT] = ACTIONS(662), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(706), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(698), - [anon_sym_get] = ACTIONS(698), - [anon_sym_set] = ACTIONS(698), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(650), + [anon_sym_get] = ACTIONS(650), + [anon_sym_set] = ACTIONS(650), [sym_html_comment] = ACTIONS(5), }, - [93] = { - [sym_import] = STATE(1121), - [sym_variable_declaration] = STATE(110), - [sym_lexical_declaration] = STATE(110), - [sym_empty_statement] = STATE(110), - [sym_parenthesized_expression] = STATE(494), - [sym_expression] = STATE(698), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1317), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1317), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(494), - [sym_subscript_expression] = STATE(494), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1317), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1749), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(655), - [anon_sym_export] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(659), - [anon_sym_import] = ACTIONS(371), - [anon_sym_var] = ACTIONS(661), - [anon_sym_let] = ACTIONS(663), - [anon_sym_const] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(667), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(669), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(91)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1179), + [sym_assignment_pattern] = STATE(1434), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1179), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(481), + [sym_subscript_expression] = STATE(481), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1179), + [sym_spread_element] = STATE(1341), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [sym_pattern] = STATE(1342), + [sym_rest_pattern] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(618), + [anon_sym_export] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_COMMA] = ACTIONS(700), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_RBRACK] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(628), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(657), - [anon_sym_get] = ACTIONS(657), - [anon_sym_set] = ACTIONS(657), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(620), + [anon_sym_get] = ACTIONS(620), + [anon_sym_set] = ACTIONS(620), [sym_html_comment] = ACTIONS(5), }, - [94] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(875), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1167), - [sym_assignment_pattern] = STATE(1361), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1167), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1167), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [sym_pattern] = STATE(1248), - [sym_rest_pattern] = STATE(1185), - [aux_sym_export_statement_repeat1] = STATE(1274), - [aux_sym_array_pattern_repeat1] = STATE(1371), - [sym_identifier] = ACTIONS(678), - [anon_sym_export] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_COMMA] = ACTIONS(684), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(708), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(690), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(92)] = { + [sym_import] = STATE(1247), + [sym_variable_declaration] = STATE(108), + [sym_lexical_declaration] = STATE(108), + [sym_empty_statement] = STATE(108), + [sym_parenthesized_expression] = STATE(491), + [sym_expression] = STATE(822), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1378), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1378), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(491), + [sym_subscript_expression] = STATE(491), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1378), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1728), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(666), + [anon_sym_export] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_import] = ACTIONS(362), + [anon_sym_var] = ACTIONS(672), + [anon_sym_let] = ACTIONS(674), + [anon_sym_const] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_SEMI] = ACTIONS(678), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(682), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(680), - [anon_sym_get] = ACTIONS(680), - [anon_sym_set] = ACTIONS(680), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), [sym_html_comment] = ACTIONS(5), }, - [95] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(722), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1154), - [sym_assignment_pattern] = STATE(1336), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1154), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1154), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1730), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [sym_pattern] = STATE(1272), - [sym_rest_pattern] = STATE(1185), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(627), - [anon_sym_export] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_RPAREN] = ACTIONS(710), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(635), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(93)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(871), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1153), + [sym_assignment_pattern] = STATE(1434), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1153), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(480), + [sym_subscript_expression] = STATE(480), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1153), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [sym_pattern] = STATE(1342), + [sym_rest_pattern] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(648), + [anon_sym_export] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(703), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_RBRACK] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(660), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_DOT_DOT_DOT] = ACTIONS(662), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(650), + [anon_sym_get] = ACTIONS(650), + [anon_sym_set] = ACTIONS(650), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(94)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(804), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1179), + [sym_assignment_pattern] = STATE(1372), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1179), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(481), + [sym_subscript_expression] = STATE(481), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1179), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1654), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [sym_pattern] = STATE(1280), + [sym_rest_pattern] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(618), + [anon_sym_export] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_RPAREN] = ACTIONS(705), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(628), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(662), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(629), - [anon_sym_get] = ACTIONS(629), - [anon_sym_set] = ACTIONS(629), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(620), + [anon_sym_get] = ACTIONS(620), + [anon_sym_set] = ACTIONS(620), [sym_html_comment] = ACTIONS(5), }, - [96] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), + [STATE(95)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), [sym_expression] = STATE(793), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1154), - [sym_assignment_pattern] = STATE(1336), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1154), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1154), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1644), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [sym_pattern] = STATE(1272), - [sym_rest_pattern] = STATE(1185), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(627), - [anon_sym_export] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_RPAREN] = ACTIONS(710), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(635), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1179), + [sym_assignment_pattern] = STATE(1372), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1179), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(481), + [sym_subscript_expression] = STATE(481), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1179), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1659), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [sym_pattern] = STATE(1280), + [sym_rest_pattern] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(618), + [anon_sym_export] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_RPAREN] = ACTIONS(705), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(628), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(662), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(629), - [anon_sym_get] = ACTIONS(629), - [anon_sym_set] = ACTIONS(629), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(620), + [anon_sym_get] = ACTIONS(620), + [anon_sym_set] = ACTIONS(620), [sym_html_comment] = ACTIONS(5), }, - [97] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(875), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1167), - [sym_assignment_pattern] = STATE(1563), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1167), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1167), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [sym_pattern] = STATE(1333), - [sym_rest_pattern] = STATE(1185), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(678), - [anon_sym_export] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_COMMA] = ACTIONS(712), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(712), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(690), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(96)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(783), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_spread_element] = STATE(1369), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [aux_sym_array_repeat1] = STATE(1370), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_COMMA] = ACTIONS(707), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_RPAREN] = ACTIONS(709), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(680), - [anon_sym_get] = ACTIONS(680), - [anon_sym_set] = ACTIONS(680), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [98] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(778), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_spread_element] = STATE(1332), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_RPAREN] = ACTIONS(714), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_RBRACK] = ACTIONS(714), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(97)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(817), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_spread_element] = STATE(1365), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [aux_sym_array_repeat1] = STATE(1367), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_COMMA] = ACTIONS(707), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_RPAREN] = ACTIONS(713), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [99] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(768), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_spread_element] = STATE(1299), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [aux_sym_array_repeat1] = STATE(1344), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_COMMA] = ACTIONS(718), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_RPAREN] = ACTIONS(720), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(98)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(871), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1153), + [sym_assignment_pattern] = STATE(1449), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1153), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(480), + [sym_subscript_expression] = STATE(480), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1153), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [sym_pattern] = STATE(1348), + [sym_rest_pattern] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(648), + [anon_sym_export] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_RPAREN] = ACTIONS(715), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(660), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_DOT_DOT_DOT] = ACTIONS(662), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(650), + [anon_sym_get] = ACTIONS(650), + [anon_sym_set] = ACTIONS(650), [sym_html_comment] = ACTIONS(5), }, - [100] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(705), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_spread_element] = STATE(1382), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [aux_sym_array_repeat1] = STATE(1383), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_COMMA] = ACTIONS(718), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_RPAREN] = ACTIONS(722), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(99)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_spread_element] = STATE(1341), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_COMMA] = ACTIONS(717), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_RPAREN] = ACTIONS(717), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_RBRACK] = ACTIONS(717), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [101] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(875), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1167), - [sym_assignment_pattern] = STATE(1472), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1167), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1167), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [sym_pattern] = STATE(1397), - [sym_rest_pattern] = STATE(1185), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(678), - [anon_sym_export] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_RPAREN] = ACTIONS(724), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(686), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(690), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(100)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(807), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_spread_element] = STATE(1308), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [aux_sym_array_repeat1] = STATE(1309), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_COMMA] = ACTIONS(707), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(680), - [anon_sym_get] = ACTIONS(680), - [anon_sym_set] = ACTIONS(680), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [102] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(875), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1167), - [sym_assignment_pattern] = STATE(1336), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1167), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1167), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [sym_pattern] = STATE(1272), - [sym_rest_pattern] = STATE(1185), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(678), - [anon_sym_export] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_RPAREN] = ACTIONS(710), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(686), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(690), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(101)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(871), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1153), + [sym_assignment_pattern] = STATE(1372), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1153), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(480), + [sym_subscript_expression] = STATE(480), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1153), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [sym_pattern] = STATE(1280), + [sym_rest_pattern] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(648), + [anon_sym_export] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_RPAREN] = ACTIONS(705), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(660), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_DOT_DOT_DOT] = ACTIONS(662), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(680), - [anon_sym_get] = ACTIONS(680), - [anon_sym_set] = ACTIONS(680), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(650), + [anon_sym_get] = ACTIONS(650), + [anon_sym_set] = ACTIONS(650), [sym_html_comment] = ACTIONS(5), }, - [103] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(875), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1167), - [sym_assignment_pattern] = STATE(1472), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1167), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1167), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [sym_pattern] = STATE(1397), - [sym_rest_pattern] = STATE(1185), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(678), - [anon_sym_export] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_RPAREN] = ACTIONS(726), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(686), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(690), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(102)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(871), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1153), + [sym_assignment_pattern] = STATE(1449), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1153), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(480), + [sym_subscript_expression] = STATE(480), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1153), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [sym_pattern] = STATE(1348), + [sym_rest_pattern] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(648), + [anon_sym_export] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(660), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_DOT_DOT_DOT] = ACTIONS(662), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(680), - [anon_sym_get] = ACTIONS(680), - [anon_sym_set] = ACTIONS(680), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(650), + [anon_sym_get] = ACTIONS(650), + [anon_sym_set] = ACTIONS(650), [sym_html_comment] = ACTIONS(5), }, - [104] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(748), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_spread_element] = STATE(1346), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [aux_sym_array_repeat1] = STATE(1347), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_COMMA] = ACTIONS(718), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_RPAREN] = ACTIONS(728), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(103)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(787), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_spread_element] = STATE(1675), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1675), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_RBRACE] = ACTIONS(723), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [105] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(875), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1167), - [sym_assignment_pattern] = STATE(1472), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1167), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1167), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [sym_pattern] = STATE(1397), - [sym_rest_pattern] = STATE(1185), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(678), - [anon_sym_export] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(686), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(690), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(104)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_spread_element] = STATE(1649), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1649), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(680), - [anon_sym_get] = ACTIONS(680), - [anon_sym_set] = ACTIONS(680), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [106] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(821), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1154), - [sym_assignment_pattern] = STATE(1505), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1154), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1154), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [sym_pattern] = STATE(1360), - [sym_rest_pattern] = STATE(1185), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(627), - [anon_sym_export] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(635), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(105)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(827), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1179), + [sym_assignment_pattern] = STATE(1590), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1179), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(481), + [sym_subscript_expression] = STATE(481), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1179), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [sym_pattern] = STATE(1374), + [sym_rest_pattern] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(618), + [anon_sym_export] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(628), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(662), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(629), - [anon_sym_get] = ACTIONS(629), - [anon_sym_set] = ACTIONS(629), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(620), + [anon_sym_get] = ACTIONS(620), + [anon_sym_set] = ACTIONS(620), [sym_html_comment] = ACTIONS(5), }, - [107] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(875), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1167), - [sym_assignment_pattern] = STATE(1505), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1167), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1167), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [sym_pattern] = STATE(1360), - [sym_rest_pattern] = STATE(1185), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(678), - [anon_sym_export] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(686), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(690), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(106)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(871), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1153), + [sym_assignment_pattern] = STATE(1449), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1153), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(480), + [sym_subscript_expression] = STATE(480), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1153), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [sym_pattern] = STATE(1348), + [sym_rest_pattern] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(648), + [anon_sym_export] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(660), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_DOT_DOT_DOT] = ACTIONS(662), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(680), - [anon_sym_get] = ACTIONS(680), - [anon_sym_set] = ACTIONS(680), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(650), + [anon_sym_get] = ACTIONS(650), + [anon_sym_set] = ACTIONS(650), [sym_html_comment] = ACTIONS(5), }, - [108] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(726), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_spread_element] = STATE(1690), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1690), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_RBRACE] = ACTIONS(730), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(107)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(871), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1153), + [sym_assignment_pattern] = STATE(1590), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1153), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(480), + [sym_subscript_expression] = STATE(480), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1153), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [sym_pattern] = STATE(1374), + [sym_rest_pattern] = STATE(1204), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(648), + [anon_sym_export] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(660), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_DOT_DOT_DOT] = ACTIONS(662), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(650), + [anon_sym_get] = ACTIONS(650), + [anon_sym_set] = ACTIONS(650), [sym_html_comment] = ACTIONS(5), }, - [109] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(728), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_spread_element] = STATE(1711), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1711), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_RBRACE] = ACTIONS(732), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(108)] = { + [sym_import] = STATE(1247), + [sym_empty_statement] = STATE(116), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(780), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1647), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_SEMI] = ACTIONS(678), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [110] = { - [sym_import] = STATE(1121), + [STATE(109)] = { + [sym_import] = STATE(1247), [sym_empty_statement] = STATE(115), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(693), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1668), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(667), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(788), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1698), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_SEMI] = ACTIONS(678), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [111] = { - [sym_import] = STATE(1121), - [sym_empty_statement] = STATE(122), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(715), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1677), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(667), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(110)] = { + [sym_import] = STATE(1247), + [sym_empty_statement] = STATE(121), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(785), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1653), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_SEMI] = ACTIONS(678), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [112] = { - [sym_import] = STATE(1121), - [sym_empty_statement] = STATE(119), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(734), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1742), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(667), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(111)] = { + [sym_import] = STATE(1247), + [sym_empty_statement] = STATE(118), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(782), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1656), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_SEMI] = ACTIONS(678), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [113] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(637), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1529), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), + [STATE(112)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(748), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1583), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(734), + [anon_sym_SEMI] = ACTIONS(727), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), - [sym__automatic_semicolon] = ACTIONS(734), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), + [sym__automatic_semicolon] = ACTIONS(727), [sym_html_comment] = ACTIONS(5), }, - [114] = { - [sym_import] = STATE(1121), - [sym_empty_statement] = STATE(117), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(788), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1701), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(667), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(113)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(816), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1638), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [115] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(738), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1671), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(114)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(871), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1336), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1336), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1336), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(731), + [anon_sym_export] = ACTIONS(733), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_import] = ACTIONS(362), + [anon_sym_var] = ACTIONS(735), + [anon_sym_let] = ACTIONS(737), + [anon_sym_const] = ACTIONS(739), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(741), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(733), + [anon_sym_get] = ACTIONS(733), + [anon_sym_set] = ACTIONS(733), [sym_html_comment] = ACTIONS(5), }, - [116] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(746), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1672), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_RPAREN] = ACTIONS(738), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(115)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(777), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1718), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [117] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(730), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1741), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(116)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(784), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [118] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(772), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1686), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(117)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1679), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [119] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(756), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), + [STATE(118)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(758), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), [sym_sequence_expression] = STATE(1682), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_RPAREN] = ACTIONS(744), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [120] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(714), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1666), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_RPAREN] = ACTIONS(746), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(119)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(760), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1685), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [121] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(699), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1663), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_RPAREN] = ACTIONS(748), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(120)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(776), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1707), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [122] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(711), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1665), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(121)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(775), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1730), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_RPAREN] = ACTIONS(757), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [123] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(503), - [sym_expression] = STATE(875), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1345), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1345), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(503), - [sym_subscript_expression] = STATE(503), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1345), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(752), - [anon_sym_export] = ACTIONS(754), - [anon_sym_LBRACE] = ACTIONS(659), - [anon_sym_import] = ACTIONS(371), - [anon_sym_var] = ACTIONS(756), - [anon_sym_let] = ACTIONS(758), - [anon_sym_const] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(669), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(762), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(122)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(765), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1722), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(764), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(754), - [anon_sym_get] = ACTIONS(754), - [anon_sym_set] = ACTIONS(754), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [124] = { - [sym_import] = STATE(1130), - [sym_statement_block] = STATE(742), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(641), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(123)] = { + [sym_import] = STATE(1247), + [sym_statement_block] = STATE(526), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(795), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [125] = { - [sym_import] = STATE(1130), - [sym_statement_block] = STATE(758), - [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(623), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [STATE(124)] = { + [sym_import] = STATE(1247), + [sym_statement_block] = STATE(541), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(764), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [126] = { - [sym_import] = STATE(1121), - [sym_statement_block] = STATE(578), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(583), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(125)] = { + [sym_import] = STATE(1247), + [sym_statement_block] = STATE(554), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(803), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [127] = { - [sym_import] = STATE(1121), + [STATE(126)] = { + [sym_import] = STATE(1247), [sym_statement_block] = STATE(556), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(562), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(771), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [128] = { - [sym_import] = STATE(1121), - [sym_statement_block] = STATE(530), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(536), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(127)] = { + [sym_import] = STATE(1247), + [sym_statement_block] = STATE(563), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(772), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [129] = { - [sym_import] = STATE(1121), - [sym_statement_block] = STATE(530), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(815), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), + [STATE(128)] = { + [sym_import] = STATE(1215), + [sym_statement_block] = STATE(672), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(700), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), + [sym_array] = STATE(702), [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [130] = { - [sym_import] = STATE(1121), + [STATE(129)] = { + [sym_import] = STATE(1247), [sym_statement_block] = STATE(556), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(816), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), - [sym_html_comment] = ACTIONS(5), - }, - [131] = { - [sym_import] = STATE(1121), - [sym_statement_block] = STATE(578), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(818), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), - [sym_html_comment] = ACTIONS(5), - }, - [132] = { - [sym_import] = STATE(1121), - [sym_statement_block] = STATE(544), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(820), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(593), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [133] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(703), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1685), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), - [sym_html_comment] = ACTIONS(5), - }, - [134] = { - [sym_import] = STATE(1121), - [sym_statement_block] = STATE(557), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(563), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(130)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(871), + [sym_primary_expression] = STATE(504), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(503), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [135] = { - [sym_import] = STATE(1130), - [sym_statement_block] = STATE(750), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(633), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(131)] = { + [sym_namespace_export] = STATE(1581), + [sym_export_clause] = STATE(1246), + [sym_declaration] = STATE(380), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_class_declaration] = STATE(363), + [sym_function_declaration] = STATE(363), + [sym_generator_function_declaration] = STATE(363), + [sym_decorator] = STATE(1004), + [aux_sym_export_statement_repeat1] = STATE(1269), + [aux_sym_object_repeat1] = STATE(1352), + [aux_sym_object_pattern_repeat1] = STATE(1324), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_default] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_var] = ACTIONS(777), + [anon_sym_let] = ACTIONS(779), + [anon_sym_const] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_class] = ACTIONS(791), + [anon_sym_async] = ACTIONS(793), + [anon_sym_function] = ACTIONS(795), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(91), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), [sym_html_comment] = ACTIONS(5), }, - [136] = { - [sym_import] = STATE(1130), - [sym_statement_block] = STATE(742), + [STATE(132)] = { + [sym_import] = STATE(1215), + [sym_statement_block] = STATE(715), [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(673), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), + [sym_expression] = STATE(625), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), [sym_member_expression] = STATE(484), [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [137] = { - [sym_import] = STATE(1130), - [sym_statement_block] = STATE(743), - [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(668), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [STATE(133)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(773), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1663), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [138] = { - [sym_import] = STATE(1130), - [sym_statement_block] = STATE(750), - [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(667), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [STATE(134)] = { + [sym_import] = STATE(1247), + [sym_statement_block] = STATE(563), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(599), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [139] = { - [sym_import] = STATE(1130), - [sym_statement_block] = STATE(743), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(639), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(135)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(805), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1630), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [140] = { - [sym_import] = STATE(1130), - [sym_statement_block] = STATE(758), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(624), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(136)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(802), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1687), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [141] = { - [sym_import] = STATE(1121), - [sym_statement_block] = STATE(578), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(841), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(137)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(761), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1648), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [142] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(643), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_sequence_expression] = STATE(1530), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(138)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(871), + [sym_primary_expression] = STATE(504), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(503), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(801), + [anon_sym_export] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(805), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(803), + [anon_sym_get] = ACTIONS(803), + [anon_sym_set] = ACTIONS(803), [sym_html_comment] = ACTIONS(5), }, - [143] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(688), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1705), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(139)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(781), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1652), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [144] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(468), - [sym_expression] = STATE(872), - [sym_primary_expression] = STATE(677), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(747), + [STATE(140)] = { + [sym_import] = STATE(1215), + [sym_statement_block] = STATE(728), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(730), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(747), + [sym_array] = STATE(702), [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(671), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(468), - [sym_subscript_expression] = STATE(468), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(772), - [anon_sym_export] = ACTIONS(774), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(774), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(776), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(778), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(780), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(774), - [anon_sym_get] = ACTIONS(774), - [anon_sym_set] = ACTIONS(774), - [sym_html_comment] = ACTIONS(5), - }, - [145] = { - [sym_import] = STATE(1130), - [sym_statement_block] = STATE(696), - [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(663), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), [sym_member_expression] = STATE(484), [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), - [sym_html_comment] = ACTIONS(5), - }, - [146] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(875), - [sym_primary_expression] = STATE(510), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(509), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [147] = { - [sym_import] = STATE(1121), - [sym_statement_block] = STATE(557), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(814), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(141)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(763), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1657), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [148] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(729), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1713), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), - [sym_html_comment] = ACTIONS(5), - }, - [149] = { - [sym_import] = STATE(1121), - [sym_statement_block] = STATE(557), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(860), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(142)] = { + [sym_namespace_export] = STATE(1581), + [sym_export_clause] = STATE(1246), + [sym_declaration] = STATE(380), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_class_declaration] = STATE(363), + [sym_function_declaration] = STATE(363), + [sym_generator_function_declaration] = STATE(363), + [sym_decorator] = STATE(1004), + [aux_sym_export_statement_repeat1] = STATE(1269), + [aux_sym_object_repeat1] = STATE(1352), + [aux_sym_object_pattern_repeat1] = STATE(1324), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_default] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(807), + [anon_sym_var] = ACTIONS(777), + [anon_sym_let] = ACTIONS(779), + [anon_sym_const] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_class] = ACTIONS(791), + [anon_sym_async] = ACTIONS(793), + [anon_sym_function] = ACTIONS(795), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(91), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), [sym_html_comment] = ACTIONS(5), }, - [150] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(694), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1708), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(143)] = { + [sym_import] = STATE(1247), + [sym_statement_block] = STATE(560), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(596), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [151] = { - [sym_import] = STATE(1130), - [sym_statement_block] = STATE(762), + [STATE(144)] = { + [sym_import] = STATE(1215), [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(631), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), + [sym_expression] = STATE(749), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), [sym_member_expression] = STATE(484), [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_sequence_expression] = STATE(1588), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [152] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(468), - [sym_expression] = STATE(872), - [sym_primary_expression] = STATE(677), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(671), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(468), - [sym_subscript_expression] = STATE(468), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(784), - [anon_sym_export] = ACTIONS(786), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(786), + [STATE(145)] = { + [sym_import] = STATE(1215), + [sym_statement_block] = STATE(678), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(670), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(776), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(780), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(786), - [anon_sym_get] = ACTIONS(786), - [anon_sym_set] = ACTIONS(786), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [153] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(759), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1679), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(146)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(801), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1709), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [154] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(695), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1676), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(147)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(814), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1705), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [155] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(700), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1673), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(148)] = { + [sym_import] = STATE(1215), + [sym_statement_block] = STATE(728), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(680), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [156] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(721), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1726), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(149)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(786), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1673), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [157] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(724), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1737), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(150)] = { + [sym_import] = STATE(1215), + [sym_statement_block] = STATE(647), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(694), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [158] = { - [sym_import] = STATE(1121), - [sym_statement_block] = STATE(548), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(861), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(151)] = { + [sym_import] = STATE(1215), + [sym_statement_block] = STATE(735), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(696), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [159] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(727), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1738), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(152)] = { + [sym_import] = STATE(1215), + [sym_statement_block] = STATE(672), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(697), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [160] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(875), - [sym_primary_expression] = STATE(510), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(509), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(790), - [anon_sym_export] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(792), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(794), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(153)] = { + [sym_import] = STATE(1215), + [sym_statement_block] = STATE(715), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(698), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(792), - [anon_sym_get] = ACTIONS(792), - [anon_sym_set] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [161] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(875), - [sym_primary_expression] = STATE(510), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(509), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(796), - [anon_sym_export] = ACTIONS(798), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(798), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(154)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(789), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1697), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(798), - [anon_sym_get] = ACTIONS(798), - [anon_sym_set] = ACTIONS(798), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [162] = { - [sym_import] = STATE(1121), - [sym_statement_block] = STATE(544), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(843), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(155)] = { + [sym_namespace_export] = STATE(1581), + [sym_export_clause] = STATE(1246), + [sym_declaration] = STATE(380), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_class_declaration] = STATE(363), + [sym_function_declaration] = STATE(363), + [sym_generator_function_declaration] = STATE(363), + [sym_decorator] = STATE(1004), + [aux_sym_export_statement_repeat1] = STATE(1269), + [aux_sym_object_repeat1] = STATE(1318), + [aux_sym_object_pattern_repeat1] = STATE(1324), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_default] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_var] = ACTIONS(777), + [anon_sym_let] = ACTIONS(779), + [anon_sym_const] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_class] = ACTIONS(791), + [anon_sym_async] = ACTIONS(793), + [anon_sym_function] = ACTIONS(795), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(91), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), [sym_html_comment] = ACTIONS(5), }, - [163] = { - [sym_import] = STATE(1121), - [sym_statement_block] = STATE(530), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(848), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(156)] = { + [sym_import] = STATE(1247), + [sym_statement_block] = STATE(541), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(590), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [164] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(701), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1719), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(157)] = { + [sym_import] = STATE(1247), + [sym_statement_block] = STATE(526), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(598), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [165] = { - [sym_import] = STATE(1130), - [sym_statement_block] = STATE(696), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(685), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), + [STATE(158)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(456), + [sym_expression] = STATE(873), + [sym_primary_expression] = STATE(585), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(600), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(456), + [sym_subscript_expression] = STATE(456), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(811), + [anon_sym_export] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(813), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), - [sym_html_comment] = ACTIONS(5), - }, - [166] = { - [sym_import] = STATE(1121), - [sym_statement_block] = STATE(544), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(543), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), - [sym_html_comment] = ACTIONS(5), - }, - [167] = { - [sym_import] = STATE(1121), - [sym_statement_block] = STATE(556), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(842), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(817), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(819), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(813), + [anon_sym_get] = ACTIONS(813), + [anon_sym_set] = ACTIONS(813), [sym_html_comment] = ACTIONS(5), }, - [168] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(786), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1687), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(159)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(819), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1676), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [169] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(767), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1683), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(160)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(800), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1691), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [170] = { - [sym_import] = STATE(1130), - [sym_statement_block] = STATE(762), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(658), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), + [STATE(161)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(456), + [sym_expression] = STATE(873), + [sym_primary_expression] = STATE(585), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(600), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(456), + [sym_subscript_expression] = STATE(456), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(821), + [anon_sym_export] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(823), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(819), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(823), + [anon_sym_get] = ACTIONS(823), + [anon_sym_set] = ACTIONS(823), [sym_html_comment] = ACTIONS(5), }, - [171] = { - [sym_import] = STATE(1121), - [sym_statement_block] = STATE(548), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(799), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), + [STATE(162)] = { + [sym_import] = STATE(1215), + [sym_statement_block] = STATE(647), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(649), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), + [sym_array] = STATE(702), [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), - [sym_html_comment] = ACTIONS(5), - }, - [172] = { - [sym_import] = STATE(1121), - [sym_statement_block] = STATE(548), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(567), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), - [sym_html_comment] = ACTIONS(5), - }, - [173] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(697), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_sequence_expression] = STATE(1688), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [174] = { - [sym_import] = STATE(1130), + [STATE(163)] = { + [sym_import] = STATE(1215), + [sym_statement_block] = STATE(735), [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(640), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), + [sym_expression] = STATE(712), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), [sym_member_expression] = STATE(484), [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [175] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(523), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), - [sym_html_comment] = ACTIONS(5), - }, - [176] = { - [sym_import] = STATE(1130), + [STATE(164)] = { + [sym_import] = STATE(1215), + [sym_statement_block] = STATE(678), [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(679), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), + [sym_expression] = STATE(704), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), [sym_member_expression] = STATE(484), [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [177] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(840), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(165)] = { + [sym_import] = STATE(1247), + [sym_statement_block] = STATE(554), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [178] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(506), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(166)] = { + [sym_import] = STATE(1247), + [sym_statement_block] = STATE(560), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(861), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [179] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(804), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(167)] = { + [sym_import] = STATE(1247), + [sym_statement_block] = STATE(526), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(843), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [180] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(849), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(168)] = { + [sym_import] = STATE(1247), + [sym_statement_block] = STATE(541), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(824), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [181] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(507), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(169)] = { + [sym_import] = STATE(1247), + [sym_statement_block] = STATE(554), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(857), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [182] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(803), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(170)] = { + [sym_import] = STATE(1247), + [sym_statement_block] = STATE(556), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(858), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [183] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(684), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1296), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1296), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(490), - [sym_subscript_expression] = STATE(490), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1296), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(804), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(806), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(171)] = { + [sym_import] = STATE(1247), + [sym_statement_block] = STATE(563), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(859), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(808), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [184] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(172)] = { + [sym_import] = STATE(1247), + [sym_statement_block] = STATE(560), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(756), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [185] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(619), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(173)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(871), + [sym_primary_expression] = STATE(504), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(503), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(827), + [anon_sym_export] = ACTIONS(829), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(831), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(829), + [anon_sym_get] = ACTIONS(829), + [anon_sym_set] = ACTIONS(829), [sym_html_comment] = ACTIONS(5), }, - [186] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(821), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(174)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(769), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_sequence_expression] = STATE(1671), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [187] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(802), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(175)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(510), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [188] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(801), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), + [STATE(176)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(630), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), + [sym_array] = STATE(702), [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), - [sym_html_comment] = ACTIONS(5), - }, - [189] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(776), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), - [sym_html_comment] = ACTIONS(5), - }, - [190] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(875), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1159), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1159), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1159), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(686), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(814), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(816), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [191] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(868), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [192] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(800), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), + [STATE(177)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(631), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), + [sym_array] = STATE(702), [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [193] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(506), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), + [STATE(178)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(635), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), + [sym_array] = STATE(702), [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [194] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(798), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), + [STATE(179)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(636), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), + [sym_array] = STATE(702), [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [195] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(620), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), + [STATE(180)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(637), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [196] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(654), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), + [STATE(181)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(638), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [197] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(507), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), - [sym_html_comment] = ACTIONS(5), - }, - [198] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(622), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), + [STATE(182)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(623), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [199] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(625), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), + [STATE(183)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(640), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [200] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(564), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(184)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(641), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [201] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(865), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(185)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(646), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [202] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(838), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(186)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(746), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [203] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(856), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(187)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(864), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [204] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(836), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), + [STATE(188)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(611), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), + [sym_array] = STATE(702), [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [205] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(506), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(189)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(510), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [206] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(822), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(190)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(507), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [207] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(859), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(191)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(594), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [208] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(636), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(192)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(605), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [209] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(735), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(193)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(583), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [210] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(661), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), + [STATE(194)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(751), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [211] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(660), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(195)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(606), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [212] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(681), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(196)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(581), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [213] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(680), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(197)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(610), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [214] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(629), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(198)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(582), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [215] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(670), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(199)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(586), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [216] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(666), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(200)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(588), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [217] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(656), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(201)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(589), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [218] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(651), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(202)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(575), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [219] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(644), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(203)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(608), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [220] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(854), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(204)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(592), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [221] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(546), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(205)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(595), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [222] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(529), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(206)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(597), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [223] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(538), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(207)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [224] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(596), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(208)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(607), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [225] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(507), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), + [STATE(209)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(754), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), + [sym_array] = STATE(702), [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [226] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(628), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), + [STATE(210)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(673), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [227] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(834), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(211)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(865), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [228] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(505), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(212)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(616), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [229] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(805), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), + [STATE(213)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(768), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), + [sym_array] = STATE(702), [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [230] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(601), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(214)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(584), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [231] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(852), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(215)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(513), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [232] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(806), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), + [STATE(216)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(871), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1165), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1165), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(479), + [sym_subscript_expression] = STATE(479), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1165), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(833), + [anon_sym_export] = ACTIONS(835), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(837), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(839), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(835), + [anon_sym_get] = ACTIONS(835), + [anon_sym_set] = ACTIONS(835), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(217)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(609), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), + [sym_array] = STATE(702), [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [233] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(588), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(218)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(739), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [234] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(608), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), + [STATE(219)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(745), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), - [sym_html_comment] = ACTIONS(5), - }, - [235] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(850), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [236] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(853), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(220)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(510), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [237] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(869), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(221)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(507), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [238] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(586), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(222)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(779), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [239] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(534), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(223)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(743), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [240] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(539), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(224)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(770), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [241] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(505), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(225)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(790), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [242] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(552), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(226)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(796), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [243] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(599), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(227)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(797), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [244] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(613), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(228)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(799), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [245] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(521), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(229)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(806), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [246] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(863), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(230)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(808), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [247] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(819), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), + [STATE(231)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(629), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), + [sym_array] = STATE(702), [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), - [sym_html_comment] = ACTIONS(5), - }, - [248] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(614), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [249] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(808), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(232)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(755), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [250] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(613), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [STATE(233)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(813), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [251] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(807), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(234)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(815), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [252] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(635), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [STATE(235)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(818), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [253] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(839), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(236)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(820), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [254] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(813), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(237)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(812), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [255] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(657), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(238)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(791), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [256] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(812), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(239)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(778), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [257] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(682), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(240)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(513), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [258] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(851), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(241)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [259] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(626), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [STATE(242)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(833), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [260] = { - [sym_import] = STATE(1130), + [STATE(243)] = { + [sym_import] = STATE(1215), [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(621), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), + [sym_expression] = STATE(675), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), [sym_member_expression] = STATE(484), [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [261] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(855), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(244)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(609), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [262] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(862), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(245)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(669), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [263] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(847), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(246)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(869), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [264] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(527), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(247)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(676), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [265] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(829), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(248)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(679), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [266] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(830), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(249)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(743), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1235), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1235), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(493), + [sym_subscript_expression] = STATE(493), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1235), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(841), + [anon_sym_export] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(843), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(845), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(847), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(843), + [anon_sym_get] = ACTIONS(843), + [anon_sym_set] = ACTIONS(843), [sym_html_comment] = ACTIONS(5), }, - [267] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(627), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), + [STATE(250)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(681), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [268] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(531), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(251)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(868), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [269] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(833), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(252)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(682), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [270] = { - [sym_import] = STATE(1130), + [STATE(253)] = { + [sym_import] = STATE(1215), [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(664), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), + [sym_expression] = STATE(727), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), [sym_member_expression] = STATE(484), [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [271] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(630), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), + [STATE(254)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(738), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [272] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(811), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(255)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(684), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [273] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(505), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(256)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(685), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [274] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(634), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), + [STATE(257)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(686), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [275] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(638), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), + [STATE(258)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(687), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [276] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(259)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(688), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [277] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(642), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), + [STATE(260)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(689), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [278] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(555), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(261)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(690), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [279] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(646), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), + [STATE(262)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(691), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [280] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(649), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), + [STATE(263)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(692), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [281] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(652), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), + [STATE(264)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(693), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [282] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(653), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [STATE(265)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(862), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [283] = { - [sym_import] = STATE(1130), + [STATE(266)] = { + [sym_import] = STATE(1215), [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(655), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), + [sym_expression] = STATE(731), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), [sym_member_expression] = STATE(484), [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [284] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(614), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), + [STATE(267)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(701), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [285] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(676), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), + [STATE(268)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(863), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(269)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(611), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(270)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(866), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [286] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(542), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(271)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(485), + [sym_expression] = STATE(616), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1716), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1716), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1020), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1716), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1717), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(406), + [anon_sym_export] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(416), + [anon_sym_yield] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_typeof] = ACTIONS(430), + [anon_sym_void] = ACTIONS(430), + [anon_sym_delete] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(438), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(408), + [anon_sym_get] = ACTIONS(408), + [anon_sym_set] = ACTIONS(408), [sym_html_comment] = ACTIONS(5), }, - [287] = { - [sym_import] = STATE(1130), + [STATE(272)] = { + [sym_import] = STATE(1215), [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(659), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), + [sym_expression] = STATE(723), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), [sym_member_expression] = STATE(484), [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [288] = { - [sym_import] = STATE(1130), + [STATE(273)] = { + [sym_import] = STATE(1215), [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(662), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), + [sym_expression] = STATE(626), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), [sym_member_expression] = STATE(484), [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [289] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(684), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [STATE(274)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(507), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [290] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(809), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(275)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(839), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [291] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(675), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1043), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1727), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1725), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(451), - [anon_sym_export] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(457), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [STATE(276)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(841), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(459), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(453), - [anon_sym_get] = ACTIONS(453), - [anon_sym_set] = ACTIONS(453), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [292] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), - [sym_expression] = STATE(845), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(277)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(842), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [293] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(454), + [STATE(278)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), [sym_expression] = STATE(844), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1745), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1745), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1044), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1745), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1656), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(361), - [anon_sym_export] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(375), - [anon_sym_yield] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(393), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), - [anon_sym_typeof] = ACTIONS(399), - [anon_sym_void] = ACTIONS(399), - [anon_sym_delete] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(363), - [anon_sym_get] = ACTIONS(363), - [anon_sym_set] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [294] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(435), - [sym_expression] = STATE(810), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1689), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1689), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(435), - [sym_subscript_expression] = STATE(435), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1038), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1689), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1744), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(461), - [anon_sym_export] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(475), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(483), + [STATE(279)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(845), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(485), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(463), - [anon_sym_get] = ACTIONS(463), - [anon_sym_set] = ACTIONS(463), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [295] = { - [sym_import] = STATE(1121), - [sym_parenthesized_expression] = STATE(504), + [STATE(280)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), [sym_expression] = STATE(846), - [sym_primary_expression] = STATE(581), - [sym_yield_expression] = STATE(580), - [sym_object] = STATE(584), - [sym_object_pattern] = STATE(1750), - [sym_array] = STATE(584), - [sym_array_pattern] = STATE(1750), - [sym_glimmer_template] = STATE(580), - [sym_jsx_element] = STATE(580), - [sym_jsx_opening_element] = STATE(1052), - [sym_jsx_self_closing_element] = STATE(580), - [sym_class] = STATE(584), - [sym_function_expression] = STATE(584), - [sym_generator_function] = STATE(584), - [sym_arrow_function] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_new_expression] = STATE(580), - [sym_await_expression] = STATE(580), - [sym_member_expression] = STATE(504), - [sym_subscript_expression] = STATE(504), - [sym_assignment_expression] = STATE(580), - [sym__augmented_assignment_lhs] = STATE(1047), - [sym_augmented_assignment_expression] = STATE(580), - [sym__destructuring_pattern] = STATE(1750), - [sym_ternary_expression] = STATE(580), - [sym_binary_expression] = STATE(580), - [sym_unary_expression] = STATE(580), - [sym_update_expression] = STATE(580), - [sym_string] = STATE(584), - [sym_template_string] = STATE(584), - [sym_regex] = STATE(584), - [sym_meta_property] = STATE(584), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1731), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(371), - [anon_sym_let] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(473), - [sym_glimmer_opening_tag] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_class] = ACTIONS(391), - [anon_sym_async] = ACTIONS(499), - [anon_sym_function] = ACTIONS(395), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(407), - [sym_number] = ACTIONS(409), - [sym_private_property_identifier] = ACTIONS(511), - [sym_this] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_true] = ACTIONS(413), - [sym_false] = ACTIONS(413), - [sym_null] = ACTIONS(413), - [sym_undefined] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(491), - [anon_sym_get] = ACTIONS(491), - [anon_sym_set] = ACTIONS(491), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [296] = { - [sym_import] = STATE(1130), - [sym_parenthesized_expression] = STATE(484), - [sym_expression] = STATE(608), - [sym_primary_expression] = STATE(774), - [sym_yield_expression] = STATE(782), - [sym_object] = STATE(747), - [sym_object_pattern] = STATE(1652), - [sym_array] = STATE(747), - [sym_array_pattern] = STATE(1652), - [sym_glimmer_template] = STATE(782), - [sym_jsx_element] = STATE(782), - [sym_jsx_opening_element] = STATE(1058), - [sym_jsx_self_closing_element] = STATE(782), - [sym_class] = STATE(747), - [sym_function_expression] = STATE(747), - [sym_generator_function] = STATE(747), - [sym_arrow_function] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_new_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(782), - [sym__augmented_assignment_lhs] = STATE(1036), - [sym_augmented_assignment_expression] = STATE(782), - [sym__destructuring_pattern] = STATE(1652), - [sym_ternary_expression] = STATE(782), - [sym_binary_expression] = STATE(782), - [sym_unary_expression] = STATE(782), - [sym_update_expression] = STATE(782), - [sym_string] = STATE(747), - [sym_template_string] = STATE(747), - [sym_regex] = STATE(747), - [sym_meta_property] = STATE(747), - [sym_decorator] = STATE(1017), - [sym_formal_parameters] = STATE(1651), - [aux_sym_export_statement_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(417), - [anon_sym_export] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_import] = ACTIONS(425), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(431), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(435), - [anon_sym_new] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), + [STATE(281)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(847), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(447), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(419), - [anon_sym_get] = ACTIONS(419), - [anon_sym_set] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [297] = { - [sym_namespace_export] = STATE(1425), - [sym_export_clause] = STATE(1238), - [sym_declaration] = STATE(403), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_class_declaration] = STATE(368), - [sym_function_declaration] = STATE(368), - [sym_generator_function_declaration] = STATE(368), - [sym_decorator] = STATE(1017), - [aux_sym_export_statement_repeat1] = STATE(1251), - [aux_sym_object_repeat1] = STATE(1378), - [aux_sym_object_pattern_repeat1] = STATE(1302), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_default] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(822), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(826), - [anon_sym_var] = ACTIONS(828), - [anon_sym_let] = ACTIONS(830), - [anon_sym_const] = ACTIONS(830), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_class] = ACTIONS(842), - [anon_sym_async] = ACTIONS(844), - [anon_sym_function] = ACTIONS(846), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(824), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(282)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(848), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_AT] = ACTIONS(93), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [298] = { - [sym_namespace_export] = STATE(1425), - [sym_export_clause] = STATE(1238), - [sym_declaration] = STATE(403), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_class_declaration] = STATE(368), - [sym_function_declaration] = STATE(368), - [sym_generator_function_declaration] = STATE(368), - [sym_decorator] = STATE(1017), - [aux_sym_export_statement_repeat1] = STATE(1251), - [aux_sym_object_repeat1] = STATE(1378), - [aux_sym_object_pattern_repeat1] = STATE(1302), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_default] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(822), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(852), - [anon_sym_var] = ACTIONS(828), - [anon_sym_let] = ACTIONS(830), - [anon_sym_const] = ACTIONS(830), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_class] = ACTIONS(842), - [anon_sym_async] = ACTIONS(844), - [anon_sym_function] = ACTIONS(846), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(824), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(283)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(849), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_AT] = ACTIONS(93), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [299] = { - [sym_namespace_export] = STATE(1425), - [sym_export_clause] = STATE(1238), - [sym_declaration] = STATE(403), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_class_declaration] = STATE(368), - [sym_function_declaration] = STATE(368), - [sym_generator_function_declaration] = STATE(368), - [sym_decorator] = STATE(1017), - [aux_sym_export_statement_repeat1] = STATE(1251), - [aux_sym_object_repeat1] = STATE(1301), - [aux_sym_object_pattern_repeat1] = STATE(1302), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_default] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(822), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(854), - [anon_sym_var] = ACTIONS(828), - [anon_sym_let] = ACTIONS(830), - [anon_sym_const] = ACTIONS(830), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_class] = ACTIONS(842), - [anon_sym_async] = ACTIONS(844), - [anon_sym_function] = ACTIONS(846), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(824), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(284)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(850), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_AT] = ACTIONS(93), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [300] = { - [sym_namespace_export] = STATE(1425), - [sym_export_clause] = STATE(1238), - [sym_declaration] = STATE(403), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_class_declaration] = STATE(368), - [sym_function_declaration] = STATE(368), - [sym_generator_function_declaration] = STATE(368), - [sym_decorator] = STATE(1017), - [aux_sym_export_statement_repeat1] = STATE(1251), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_default] = ACTIONS(856), - [anon_sym_LBRACE] = ACTIONS(822), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_var] = ACTIONS(828), - [anon_sym_let] = ACTIONS(830), - [anon_sym_const] = ACTIONS(830), - [anon_sym_LPAREN] = ACTIONS(824), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(858), - [anon_sym_EQ] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_class] = ACTIONS(842), - [anon_sym_async] = ACTIONS(844), - [anon_sym_function] = ACTIONS(846), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(824), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(285)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(851), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_AT] = ACTIONS(93), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [301] = { - [sym_namespace_export] = STATE(1425), - [sym_export_clause] = STATE(1238), - [sym_declaration] = STATE(403), - [sym_variable_declaration] = STATE(368), - [sym_lexical_declaration] = STATE(368), - [sym_class_declaration] = STATE(368), - [sym_function_declaration] = STATE(368), - [sym_generator_function_declaration] = STATE(368), - [sym_decorator] = STATE(1017), - [aux_sym_export_statement_repeat1] = STATE(1251), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_default] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(822), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_var] = ACTIONS(828), - [anon_sym_let] = ACTIONS(830), - [anon_sym_const] = ACTIONS(830), - [anon_sym_LPAREN] = ACTIONS(824), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(862), - [anon_sym_EQ] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_class] = ACTIONS(842), - [anon_sym_async] = ACTIONS(844), - [anon_sym_function] = ACTIONS(846), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(824), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(286)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(852), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_AT] = ACTIONS(93), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [302] = { - [sym_string] = STATE(1622), - [sym_formal_parameters] = STATE(1674), - [sym__property_name] = STATE(1622), - [sym_computed_property_name] = STATE(1622), - [aux_sym_object_repeat1] = STATE(1301), - [aux_sym_object_pattern_repeat1] = STATE(1302), - [sym_identifier] = ACTIONS(864), - [anon_sym_export] = ACTIONS(866), - [anon_sym_STAR] = ACTIONS(868), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(854), - [anon_sym_let] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(871), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(880), - [anon_sym_async] = ACTIONS(866), - [anon_sym_function] = ACTIONS(882), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(287)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(853), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [sym_number] = ACTIONS(884), - [sym_private_property_identifier] = ACTIONS(884), - [anon_sym_static] = ACTIONS(866), - [anon_sym_get] = ACTIONS(886), - [anon_sym_set] = ACTIONS(886), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [303] = { - [sym_string] = STATE(1622), - [sym_formal_parameters] = STATE(1674), - [sym__property_name] = STATE(1622), - [sym_computed_property_name] = STATE(1622), - [aux_sym_object_repeat1] = STATE(1378), - [aux_sym_object_pattern_repeat1] = STATE(1302), - [sym_identifier] = ACTIONS(864), - [anon_sym_export] = ACTIONS(866), - [anon_sym_STAR] = ACTIONS(868), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(852), - [anon_sym_let] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(871), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(880), - [anon_sym_async] = ACTIONS(866), - [anon_sym_function] = ACTIONS(882), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(288)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(854), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [sym_number] = ACTIONS(884), - [sym_private_property_identifier] = ACTIONS(884), - [anon_sym_static] = ACTIONS(866), - [anon_sym_get] = ACTIONS(886), - [anon_sym_set] = ACTIONS(886), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [304] = { - [sym_string] = STATE(1622), - [sym_formal_parameters] = STATE(1674), - [sym__property_name] = STATE(1622), - [sym_computed_property_name] = STATE(1622), - [aux_sym_object_repeat1] = STATE(1378), - [aux_sym_object_pattern_repeat1] = STATE(1302), - [sym_identifier] = ACTIONS(864), - [anon_sym_export] = ACTIONS(866), - [anon_sym_STAR] = ACTIONS(868), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(826), - [anon_sym_let] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(871), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(880), - [anon_sym_async] = ACTIONS(866), - [anon_sym_function] = ACTIONS(882), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(289)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(855), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [sym_number] = ACTIONS(884), - [sym_private_property_identifier] = ACTIONS(884), - [anon_sym_static] = ACTIONS(866), - [anon_sym_get] = ACTIONS(886), - [anon_sym_set] = ACTIONS(886), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [305] = { - [sym_string] = STATE(1622), - [sym__property_name] = STATE(1622), - [sym_computed_property_name] = STATE(1622), - [aux_sym_object_repeat1] = STATE(1301), - [aux_sym_object_pattern_repeat1] = STATE(1302), - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(868), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(854), - [anon_sym_let] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(880), - [anon_sym_async] = ACTIONS(890), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(290)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(856), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [sym_number] = ACTIONS(884), - [sym_private_property_identifier] = ACTIONS(884), - [anon_sym_static] = ACTIONS(888), - [anon_sym_get] = ACTIONS(892), - [anon_sym_set] = ACTIONS(892), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [306] = { - [sym_string] = STATE(1622), - [sym__property_name] = STATE(1622), - [sym_computed_property_name] = STATE(1622), - [aux_sym_object_repeat1] = STATE(1378), - [aux_sym_object_pattern_repeat1] = STATE(1302), - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(852), - [anon_sym_let] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(880), - [anon_sym_async] = ACTIONS(888), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(291)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(448), + [sym_expression] = STATE(827), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1719), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1719), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(448), + [sym_subscript_expression] = STATE(448), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1719), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1640), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(366), + [anon_sym_yield] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_typeof] = ACTIONS(388), + [anon_sym_void] = ACTIONS(388), + [anon_sym_delete] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(394), + [anon_sym_DASH_DASH] = ACTIONS(394), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [sym_number] = ACTIONS(884), - [sym_private_property_identifier] = ACTIONS(884), - [anon_sym_static] = ACTIONS(888), - [anon_sym_get] = ACTIONS(888), - [anon_sym_set] = ACTIONS(888), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [307] = { - [sym_string] = STATE(1622), - [sym__property_name] = STATE(1622), - [sym_computed_property_name] = STATE(1622), - [aux_sym_object_repeat1] = STATE(1378), - [aux_sym_object_pattern_repeat1] = STATE(1302), - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(826), - [anon_sym_let] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(880), - [anon_sym_async] = ACTIONS(888), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(292)] = { + [sym_import] = STATE(1215), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(774), + [sym_primary_expression] = STATE(620), + [sym_yield_expression] = STATE(627), + [sym_object] = STATE(702), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(702), + [sym_array_pattern] = STATE(1689), + [sym_jsx_element] = STATE(627), + [sym_jsx_opening_element] = STATE(1041), + [sym_jsx_self_closing_element] = STATE(627), + [sym_class] = STATE(702), + [sym_function_expression] = STATE(702), + [sym_generator_function] = STATE(702), + [sym_arrow_function] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_new_expression] = STATE(621), + [sym_await_expression] = STATE(627), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(627), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(627), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_unary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_string] = STATE(702), + [sym_template_string] = STATE(702), + [sym_regex] = STATE(702), + [sym_meta_property] = STATE(702), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1655), + [aux_sym_export_statement_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(442), + [anon_sym_export] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_import] = ACTIONS(414), + [anon_sym_let] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(448), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_typeof] = ACTIONS(73), + [anon_sym_void] = ACTIONS(73), + [anon_sym_delete] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [sym_number] = ACTIONS(884), - [sym_private_property_identifier] = ACTIONS(884), - [anon_sym_static] = ACTIONS(888), - [anon_sym_get] = ACTIONS(888), - [anon_sym_set] = ACTIONS(888), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), [sym_html_comment] = ACTIONS(5), }, - [308] = { - [sym_string] = STATE(1622), - [sym__property_name] = STATE(1622), - [sym_computed_property_name] = STATE(1622), - [aux_sym_object_repeat1] = STATE(1378), - [aux_sym_object_pattern_repeat1] = STATE(1302), - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(868), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(826), - [anon_sym_let] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(880), - [anon_sym_async] = ACTIONS(890), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(293)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(860), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [sym_number] = ACTIONS(884), - [sym_private_property_identifier] = ACTIONS(884), - [anon_sym_static] = ACTIONS(888), - [anon_sym_get] = ACTIONS(892), - [anon_sym_set] = ACTIONS(892), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [309] = { - [sym_string] = STATE(1622), - [sym__property_name] = STATE(1622), - [sym_computed_property_name] = STATE(1622), - [aux_sym_object_repeat1] = STATE(1378), - [aux_sym_object_pattern_repeat1] = STATE(1302), - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(868), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(852), - [anon_sym_let] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(880), - [anon_sym_async] = ACTIONS(890), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(294)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(502), + [sym_expression] = STATE(513), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1729), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1729), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(502), + [sym_subscript_expression] = STATE(502), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1014), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1729), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1710), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(480), + [anon_sym_export] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(494), + [anon_sym_void] = ACTIONS(494), + [anon_sym_delete] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [sym_number] = ACTIONS(884), - [sym_private_property_identifier] = ACTIONS(884), - [anon_sym_static] = ACTIONS(888), - [anon_sym_get] = ACTIONS(892), - [anon_sym_set] = ACTIONS(892), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(502), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(482), + [anon_sym_get] = ACTIONS(482), + [anon_sym_set] = ACTIONS(482), [sym_html_comment] = ACTIONS(5), }, - [310] = { - [sym_string] = STATE(1622), - [sym__property_name] = STATE(1622), - [sym_computed_property_name] = STATE(1622), - [aux_sym_object_repeat1] = STATE(1301), - [aux_sym_object_pattern_repeat1] = STATE(1302), - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(854), - [anon_sym_let] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(880), - [anon_sym_async] = ACTIONS(888), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(295)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(870), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [sym_number] = ACTIONS(884), - [sym_private_property_identifier] = ACTIONS(884), - [anon_sym_static] = ACTIONS(888), - [anon_sym_get] = ACTIONS(888), - [anon_sym_set] = ACTIONS(888), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [311] = { - [sym_formal_parameters] = STATE(1743), - [sym_identifier] = ACTIONS(894), - [anon_sym_export] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(824), - [anon_sym_let] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(824), - [anon_sym_EQ] = ACTIONS(901), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_RBRACK] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_async] = ACTIONS(896), - [anon_sym_function] = ACTIONS(903), - [anon_sym_EQ_GT] = ACTIONS(905), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(296)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(867), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_static] = ACTIONS(896), - [anon_sym_get] = ACTIONS(896), - [anon_sym_set] = ACTIONS(896), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [312] = { - [sym_formal_parameters] = STATE(1743), - [sym_identifier] = ACTIONS(894), - [anon_sym_export] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(824), - [anon_sym_let] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(824), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_RBRACK] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_async] = ACTIONS(896), - [anon_sym_function] = ACTIONS(903), - [anon_sym_EQ_GT] = ACTIONS(905), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(297)] = { + [sym_import] = STATE(1247), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(810), + [sym_primary_expression] = STATE(506), + [sym_yield_expression] = STATE(537), + [sym_object] = STATE(536), + [sym_object_pattern] = STATE(1639), + [sym_array] = STATE(536), + [sym_array_pattern] = STATE(1639), + [sym_jsx_element] = STATE(537), + [sym_jsx_opening_element] = STATE(1039), + [sym_jsx_self_closing_element] = STATE(537), + [sym_class] = STATE(536), + [sym_function_expression] = STATE(536), + [sym_generator_function] = STATE(536), + [sym_arrow_function] = STATE(536), + [sym_call_expression] = STATE(536), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(537), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(537), + [sym__augmented_assignment_lhs] = STATE(1032), + [sym_augmented_assignment_expression] = STATE(537), + [sym__destructuring_pattern] = STATE(1639), + [sym_ternary_expression] = STATE(537), + [sym_binary_expression] = STATE(537), + [sym_unary_expression] = STATE(537), + [sym_update_expression] = STATE(537), + [sym_string] = STATE(536), + [sym_template_string] = STATE(536), + [sym_regex] = STATE(536), + [sym_meta_property] = STATE(536), + [sym_decorator] = STATE(1004), + [sym_formal_parameters] = STATE(1720), + [aux_sym_export_statement_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(452), + [anon_sym_export] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_import] = ACTIONS(362), + [anon_sym_let] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_SQUOTE] = ACTIONS(378), + [anon_sym_class] = ACTIONS(380), + [anon_sym_async] = ACTIONS(466), + [anon_sym_function] = ACTIONS(384), + [anon_sym_new] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(472), + [anon_sym_typeof] = ACTIONS(470), + [anon_sym_void] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_static] = ACTIONS(896), - [anon_sym_get] = ACTIONS(896), - [anon_sym_set] = ACTIONS(896), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(396), + [sym_number] = ACTIONS(398), + [sym_private_property_identifier] = ACTIONS(476), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), [sym_html_comment] = ACTIONS(5), }, - [313] = { - [ts_builtin_sym_end] = ACTIONS(569), - [sym_identifier] = ACTIONS(571), - [anon_sym_export] = ACTIONS(571), - [anon_sym_default] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_COMMA] = ACTIONS(569), - [anon_sym_RBRACE] = ACTIONS(569), - [anon_sym_import] = ACTIONS(571), - [anon_sym_with] = ACTIONS(571), - [anon_sym_var] = ACTIONS(571), - [anon_sym_let] = ACTIONS(571), - [anon_sym_const] = ACTIONS(571), - [anon_sym_else] = ACTIONS(571), - [anon_sym_if] = ACTIONS(571), - [anon_sym_switch] = ACTIONS(571), - [anon_sym_for] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_SEMI] = ACTIONS(569), - [anon_sym_await] = ACTIONS(571), - [anon_sym_while] = ACTIONS(571), - [anon_sym_do] = ACTIONS(571), - [anon_sym_try] = ACTIONS(571), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_debugger] = ACTIONS(571), - [anon_sym_return] = ACTIONS(571), - [anon_sym_throw] = ACTIONS(571), - [anon_sym_case] = ACTIONS(571), - [anon_sym_catch] = ACTIONS(571), - [anon_sym_finally] = ACTIONS(571), - [anon_sym_yield] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(569), - [sym_glimmer_opening_tag] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(569), - [anon_sym_class] = ACTIONS(571), - [anon_sym_async] = ACTIONS(571), - [anon_sym_function] = ACTIONS(571), - [anon_sym_new] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(571), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(569), - [anon_sym_typeof] = ACTIONS(571), - [anon_sym_void] = ACTIONS(571), - [anon_sym_delete] = ACTIONS(571), - [anon_sym_PLUS_PLUS] = ACTIONS(569), - [anon_sym_DASH_DASH] = ACTIONS(569), + [STATE(298)] = { + [sym_namespace_export] = STATE(1581), + [sym_export_clause] = STATE(1246), + [sym_declaration] = STATE(380), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_class_declaration] = STATE(363), + [sym_function_declaration] = STATE(363), + [sym_generator_function_declaration] = STATE(363), + [sym_decorator] = STATE(1004), + [aux_sym_export_statement_repeat1] = STATE(1269), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_default] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_var] = ACTIONS(777), + [anon_sym_let] = ACTIONS(779), + [anon_sym_const] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_class] = ACTIONS(791), + [anon_sym_async] = ACTIONS(793), + [anon_sym_function] = ACTIONS(795), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(569), - [sym_number] = ACTIONS(569), - [sym_private_property_identifier] = ACTIONS(571), - [sym_this] = ACTIONS(571), - [sym_super] = ACTIONS(571), - [sym_true] = ACTIONS(571), - [sym_false] = ACTIONS(571), - [sym_null] = ACTIONS(571), - [sym_undefined] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(569), - [anon_sym_static] = ACTIONS(571), - [anon_sym_get] = ACTIONS(571), - [anon_sym_set] = ACTIONS(571), - [sym_preproc] = ACTIONS(569), - [sym__automatic_semicolon] = ACTIONS(909), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(91), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), [sym_html_comment] = ACTIONS(5), }, - [314] = { - [sym_catch_clause] = STATE(320), - [sym_finally_clause] = STATE(377), - [ts_builtin_sym_end] = ACTIONS(911), - [sym_identifier] = ACTIONS(913), - [anon_sym_export] = ACTIONS(913), - [anon_sym_default] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_import] = ACTIONS(913), - [anon_sym_with] = ACTIONS(913), - [anon_sym_var] = ACTIONS(913), - [anon_sym_let] = ACTIONS(913), - [anon_sym_const] = ACTIONS(913), - [anon_sym_else] = ACTIONS(913), - [anon_sym_if] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(913), - [anon_sym_for] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(911), - [anon_sym_await] = ACTIONS(913), - [anon_sym_while] = ACTIONS(913), - [anon_sym_do] = ACTIONS(913), - [anon_sym_try] = ACTIONS(913), - [anon_sym_break] = ACTIONS(913), - [anon_sym_continue] = ACTIONS(913), - [anon_sym_debugger] = ACTIONS(913), - [anon_sym_return] = ACTIONS(913), - [anon_sym_throw] = ACTIONS(913), - [anon_sym_case] = ACTIONS(913), - [anon_sym_catch] = ACTIONS(915), - [anon_sym_finally] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(911), - [sym_glimmer_opening_tag] = ACTIONS(911), - [anon_sym_LT] = ACTIONS(913), - [anon_sym_DQUOTE] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(911), - [anon_sym_class] = ACTIONS(913), - [anon_sym_async] = ACTIONS(913), - [anon_sym_function] = ACTIONS(913), - [anon_sym_new] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_TILDE] = ACTIONS(911), - [anon_sym_typeof] = ACTIONS(913), - [anon_sym_void] = ACTIONS(913), - [anon_sym_delete] = ACTIONS(913), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_DASH_DASH] = ACTIONS(911), + [STATE(299)] = { + [sym_namespace_export] = STATE(1581), + [sym_export_clause] = STATE(1246), + [sym_declaration] = STATE(380), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_class_declaration] = STATE(363), + [sym_function_declaration] = STATE(363), + [sym_generator_function_declaration] = STATE(363), + [sym_decorator] = STATE(1004), + [aux_sym_export_statement_repeat1] = STATE(1269), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_default] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_var] = ACTIONS(777), + [anon_sym_let] = ACTIONS(779), + [anon_sym_const] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_class] = ACTIONS(791), + [anon_sym_async] = ACTIONS(793), + [anon_sym_function] = ACTIONS(795), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(911), - [sym_number] = ACTIONS(911), - [sym_private_property_identifier] = ACTIONS(913), - [sym_this] = ACTIONS(913), - [sym_super] = ACTIONS(913), - [sym_true] = ACTIONS(913), - [sym_false] = ACTIONS(913), - [sym_null] = ACTIONS(913), - [sym_undefined] = ACTIONS(913), - [anon_sym_AT] = ACTIONS(911), - [anon_sym_static] = ACTIONS(913), - [anon_sym_get] = ACTIONS(913), - [anon_sym_set] = ACTIONS(913), - [sym_preproc] = ACTIONS(911), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(91), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), [sym_html_comment] = ACTIONS(5), }, - [315] = { - [ts_builtin_sym_end] = ACTIONS(515), - [sym_identifier] = ACTIONS(517), - [anon_sym_export] = ACTIONS(517), - [anon_sym_default] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(515), - [anon_sym_COMMA] = ACTIONS(515), - [anon_sym_RBRACE] = ACTIONS(515), - [anon_sym_import] = ACTIONS(517), - [anon_sym_with] = ACTIONS(517), - [anon_sym_var] = ACTIONS(517), - [anon_sym_let] = ACTIONS(517), - [anon_sym_const] = ACTIONS(517), - [anon_sym_else] = ACTIONS(517), - [anon_sym_if] = ACTIONS(517), - [anon_sym_switch] = ACTIONS(517), - [anon_sym_for] = ACTIONS(517), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(515), - [anon_sym_await] = ACTIONS(517), - [anon_sym_while] = ACTIONS(517), - [anon_sym_do] = ACTIONS(517), - [anon_sym_try] = ACTIONS(517), - [anon_sym_break] = ACTIONS(517), - [anon_sym_continue] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_return] = ACTIONS(517), - [anon_sym_throw] = ACTIONS(517), - [anon_sym_case] = ACTIONS(517), - [anon_sym_catch] = ACTIONS(517), - [anon_sym_finally] = ACTIONS(517), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(515), - [sym_glimmer_opening_tag] = ACTIONS(515), - [anon_sym_LT] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(515), - [anon_sym_SQUOTE] = ACTIONS(515), - [anon_sym_class] = ACTIONS(517), - [anon_sym_async] = ACTIONS(517), - [anon_sym_function] = ACTIONS(517), - [anon_sym_new] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_TILDE] = ACTIONS(515), - [anon_sym_typeof] = ACTIONS(517), - [anon_sym_void] = ACTIONS(517), - [anon_sym_delete] = ACTIONS(517), - [anon_sym_PLUS_PLUS] = ACTIONS(515), - [anon_sym_DASH_DASH] = ACTIONS(515), + [STATE(300)] = { + [sym_string] = STATE(1544), + [sym_formal_parameters] = STATE(1672), + [sym__property_name] = STATE(1544), + [sym_computed_property_name] = STATE(1544), + [aux_sym_object_repeat1] = STATE(1318), + [aux_sym_object_pattern_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(857), + [anon_sym_export] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_let] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(871), + [anon_sym_SQUOTE] = ACTIONS(873), + [anon_sym_async] = ACTIONS(859), + [anon_sym_function] = ACTIONS(875), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(515), - [sym_number] = ACTIONS(515), - [sym_private_property_identifier] = ACTIONS(517), - [sym_this] = ACTIONS(517), - [sym_super] = ACTIONS(517), - [sym_true] = ACTIONS(517), - [sym_false] = ACTIONS(517), - [sym_null] = ACTIONS(517), - [sym_undefined] = ACTIONS(517), - [anon_sym_AT] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [sym_preproc] = ACTIONS(515), - [sym__automatic_semicolon] = ACTIONS(525), + [anon_sym_BQUOTE] = ACTIONS(773), + [sym_number] = ACTIONS(877), + [sym_private_property_identifier] = ACTIONS(877), + [anon_sym_static] = ACTIONS(859), + [anon_sym_get] = ACTIONS(879), + [anon_sym_set] = ACTIONS(879), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), [sym_html_comment] = ACTIONS(5), }, - [316] = { - [ts_builtin_sym_end] = ACTIONS(569), - [sym_identifier] = ACTIONS(571), - [anon_sym_export] = ACTIONS(571), - [anon_sym_default] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_COMMA] = ACTIONS(569), - [anon_sym_RBRACE] = ACTIONS(569), - [anon_sym_import] = ACTIONS(571), - [anon_sym_with] = ACTIONS(571), - [anon_sym_var] = ACTIONS(571), - [anon_sym_let] = ACTIONS(571), - [anon_sym_const] = ACTIONS(571), - [anon_sym_else] = ACTIONS(571), - [anon_sym_if] = ACTIONS(571), - [anon_sym_switch] = ACTIONS(571), - [anon_sym_for] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_SEMI] = ACTIONS(569), - [anon_sym_await] = ACTIONS(571), - [anon_sym_while] = ACTIONS(571), - [anon_sym_do] = ACTIONS(571), - [anon_sym_try] = ACTIONS(571), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_debugger] = ACTIONS(571), - [anon_sym_return] = ACTIONS(571), - [anon_sym_throw] = ACTIONS(571), - [anon_sym_case] = ACTIONS(571), - [anon_sym_catch] = ACTIONS(571), - [anon_sym_finally] = ACTIONS(571), - [anon_sym_yield] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(569), - [sym_glimmer_opening_tag] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(569), - [anon_sym_class] = ACTIONS(571), - [anon_sym_async] = ACTIONS(571), - [anon_sym_function] = ACTIONS(571), - [anon_sym_new] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(571), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(569), - [anon_sym_typeof] = ACTIONS(571), - [anon_sym_void] = ACTIONS(571), - [anon_sym_delete] = ACTIONS(571), - [anon_sym_PLUS_PLUS] = ACTIONS(569), - [anon_sym_DASH_DASH] = ACTIONS(569), + [STATE(301)] = { + [sym_string] = STATE(1544), + [sym_formal_parameters] = STATE(1672), + [sym__property_name] = STATE(1544), + [sym_computed_property_name] = STATE(1544), + [aux_sym_object_repeat1] = STATE(1352), + [aux_sym_object_pattern_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(857), + [anon_sym_export] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(807), + [anon_sym_let] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(871), + [anon_sym_SQUOTE] = ACTIONS(873), + [anon_sym_async] = ACTIONS(859), + [anon_sym_function] = ACTIONS(875), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(569), - [sym_number] = ACTIONS(569), - [sym_private_property_identifier] = ACTIONS(571), - [sym_this] = ACTIONS(571), - [sym_super] = ACTIONS(571), - [sym_true] = ACTIONS(571), - [sym_false] = ACTIONS(571), - [sym_null] = ACTIONS(571), - [sym_undefined] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(569), - [anon_sym_static] = ACTIONS(571), - [anon_sym_get] = ACTIONS(571), - [anon_sym_set] = ACTIONS(571), - [sym_preproc] = ACTIONS(569), + [anon_sym_BQUOTE] = ACTIONS(773), + [sym_number] = ACTIONS(877), + [sym_private_property_identifier] = ACTIONS(877), + [anon_sym_static] = ACTIONS(859), + [anon_sym_get] = ACTIONS(879), + [anon_sym_set] = ACTIONS(879), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), [sym_html_comment] = ACTIONS(5), }, - [317] = { - [ts_builtin_sym_end] = ACTIONS(595), - [sym_identifier] = ACTIONS(597), - [anon_sym_export] = ACTIONS(597), - [anon_sym_default] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_import] = ACTIONS(597), - [anon_sym_with] = ACTIONS(597), - [anon_sym_var] = ACTIONS(597), - [anon_sym_let] = ACTIONS(597), - [anon_sym_const] = ACTIONS(597), - [anon_sym_else] = ACTIONS(597), - [anon_sym_if] = ACTIONS(597), - [anon_sym_switch] = ACTIONS(597), - [anon_sym_for] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(595), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_await] = ACTIONS(597), - [anon_sym_while] = ACTIONS(597), - [anon_sym_do] = ACTIONS(597), - [anon_sym_try] = ACTIONS(597), - [anon_sym_break] = ACTIONS(597), - [anon_sym_continue] = ACTIONS(597), - [anon_sym_debugger] = ACTIONS(597), - [anon_sym_return] = ACTIONS(597), - [anon_sym_throw] = ACTIONS(597), - [anon_sym_case] = ACTIONS(597), - [anon_sym_catch] = ACTIONS(597), - [anon_sym_finally] = ACTIONS(597), - [anon_sym_yield] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(595), - [sym_glimmer_opening_tag] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(597), - [anon_sym_DQUOTE] = ACTIONS(595), - [anon_sym_SQUOTE] = ACTIONS(595), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(597), - [anon_sym_function] = ACTIONS(597), - [anon_sym_new] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(595), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_typeof] = ACTIONS(597), - [anon_sym_void] = ACTIONS(597), - [anon_sym_delete] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), + [STATE(302)] = { + [sym_string] = STATE(1544), + [sym_formal_parameters] = STATE(1672), + [sym__property_name] = STATE(1544), + [sym_computed_property_name] = STATE(1544), + [aux_sym_object_repeat1] = STATE(1352), + [aux_sym_object_pattern_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(857), + [anon_sym_export] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_let] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(871), + [anon_sym_SQUOTE] = ACTIONS(873), + [anon_sym_async] = ACTIONS(859), + [anon_sym_function] = ACTIONS(875), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_number] = ACTIONS(595), - [sym_private_property_identifier] = ACTIONS(597), - [sym_this] = ACTIONS(597), - [sym_super] = ACTIONS(597), - [sym_true] = ACTIONS(597), - [sym_false] = ACTIONS(597), - [sym_null] = ACTIONS(597), - [sym_undefined] = ACTIONS(597), - [anon_sym_AT] = ACTIONS(595), - [anon_sym_static] = ACTIONS(597), - [anon_sym_get] = ACTIONS(597), - [anon_sym_set] = ACTIONS(597), - [sym_preproc] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(773), + [sym_number] = ACTIONS(877), + [sym_private_property_identifier] = ACTIONS(877), + [anon_sym_static] = ACTIONS(859), + [anon_sym_get] = ACTIONS(879), + [anon_sym_set] = ACTIONS(879), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), [sym_html_comment] = ACTIONS(5), }, - [318] = { - [sym_formal_parameters] = STATE(1674), - [sym_identifier] = ACTIONS(919), - [anon_sym_export] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(824), - [anon_sym_let] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_EQ] = ACTIONS(901), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_async] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(303)] = { + [sym_string] = STATE(1544), + [sym__property_name] = STATE(1544), + [sym_computed_property_name] = STATE(1544), + [aux_sym_object_repeat1] = STATE(1352), + [aux_sym_object_pattern_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(881), + [anon_sym_export] = ACTIONS(881), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(807), + [anon_sym_let] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(871), + [anon_sym_SQUOTE] = ACTIONS(873), + [anon_sym_async] = ACTIONS(883), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_static] = ACTIONS(921), - [anon_sym_get] = ACTIONS(921), - [anon_sym_set] = ACTIONS(921), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(773), + [sym_number] = ACTIONS(877), + [sym_private_property_identifier] = ACTIONS(877), + [anon_sym_static] = ACTIONS(881), + [anon_sym_get] = ACTIONS(885), + [anon_sym_set] = ACTIONS(885), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), [sym_html_comment] = ACTIONS(5), }, - [319] = { - [sym_formal_parameters] = STATE(1717), - [sym_identifier] = ACTIONS(925), - [anon_sym_export] = ACTIONS(927), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_COMMA] = ACTIONS(929), - [anon_sym_RBRACE] = ACTIONS(929), - [anon_sym_let] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(929), - [anon_sym_in] = ACTIONS(835), - [anon_sym_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_RBRACK] = ACTIONS(929), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_async] = ACTIONS(927), - [anon_sym_function] = ACTIONS(903), - [anon_sym_EQ_GT] = ACTIONS(934), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(304)] = { + [sym_string] = STATE(1544), + [sym__property_name] = STATE(1544), + [sym_computed_property_name] = STATE(1544), + [aux_sym_object_repeat1] = STATE(1318), + [aux_sym_object_pattern_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(881), + [anon_sym_export] = ACTIONS(881), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_let] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(871), + [anon_sym_SQUOTE] = ACTIONS(873), + [anon_sym_async] = ACTIONS(883), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_static] = ACTIONS(927), - [anon_sym_get] = ACTIONS(927), - [anon_sym_set] = ACTIONS(927), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(773), + [sym_number] = ACTIONS(877), + [sym_private_property_identifier] = ACTIONS(877), + [anon_sym_static] = ACTIONS(881), + [anon_sym_get] = ACTIONS(885), + [anon_sym_set] = ACTIONS(885), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), [sym_html_comment] = ACTIONS(5), }, - [320] = { - [sym_finally_clause] = STATE(352), - [ts_builtin_sym_end] = ACTIONS(936), - [sym_identifier] = ACTIONS(938), - [anon_sym_export] = ACTIONS(938), - [anon_sym_default] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_import] = ACTIONS(938), - [anon_sym_with] = ACTIONS(938), - [anon_sym_var] = ACTIONS(938), - [anon_sym_let] = ACTIONS(938), - [anon_sym_const] = ACTIONS(938), - [anon_sym_else] = ACTIONS(938), - [anon_sym_if] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(938), - [anon_sym_for] = ACTIONS(938), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_await] = ACTIONS(938), - [anon_sym_while] = ACTIONS(938), - [anon_sym_do] = ACTIONS(938), - [anon_sym_try] = ACTIONS(938), - [anon_sym_break] = ACTIONS(938), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_debugger] = ACTIONS(938), - [anon_sym_return] = ACTIONS(938), - [anon_sym_throw] = ACTIONS(938), - [anon_sym_case] = ACTIONS(938), - [anon_sym_finally] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_LBRACK] = ACTIONS(936), - [sym_glimmer_opening_tag] = ACTIONS(936), - [anon_sym_LT] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(936), - [anon_sym_SQUOTE] = ACTIONS(936), - [anon_sym_class] = ACTIONS(938), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(936), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_typeof] = ACTIONS(938), - [anon_sym_void] = ACTIONS(938), - [anon_sym_delete] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(936), + [STATE(305)] = { + [sym_string] = STATE(1544), + [sym__property_name] = STATE(1544), + [sym_computed_property_name] = STATE(1544), + [aux_sym_object_repeat1] = STATE(1352), + [aux_sym_object_pattern_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(881), + [anon_sym_export] = ACTIONS(881), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(807), + [anon_sym_let] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(871), + [anon_sym_SQUOTE] = ACTIONS(873), + [anon_sym_async] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(936), - [sym_number] = ACTIONS(936), - [sym_private_property_identifier] = ACTIONS(938), - [sym_this] = ACTIONS(938), - [sym_super] = ACTIONS(938), - [sym_true] = ACTIONS(938), - [sym_false] = ACTIONS(938), - [sym_null] = ACTIONS(938), - [sym_undefined] = ACTIONS(938), - [anon_sym_AT] = ACTIONS(936), - [anon_sym_static] = ACTIONS(938), - [anon_sym_get] = ACTIONS(938), - [anon_sym_set] = ACTIONS(938), - [sym_preproc] = ACTIONS(936), + [anon_sym_BQUOTE] = ACTIONS(773), + [sym_number] = ACTIONS(877), + [sym_private_property_identifier] = ACTIONS(877), + [anon_sym_static] = ACTIONS(881), + [anon_sym_get] = ACTIONS(881), + [anon_sym_set] = ACTIONS(881), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), [sym_html_comment] = ACTIONS(5), }, - [321] = { - [sym_formal_parameters] = STATE(1674), - [sym_identifier] = ACTIONS(919), - [anon_sym_export] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_let] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(862), - [anon_sym_EQ] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_async] = ACTIONS(921), - [anon_sym_function] = ACTIONS(882), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(306)] = { + [sym_string] = STATE(1544), + [sym__property_name] = STATE(1544), + [sym_computed_property_name] = STATE(1544), + [aux_sym_object_repeat1] = STATE(1352), + [aux_sym_object_pattern_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(881), + [anon_sym_export] = ACTIONS(881), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_let] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(871), + [anon_sym_SQUOTE] = ACTIONS(873), + [anon_sym_async] = ACTIONS(883), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_static] = ACTIONS(921), - [anon_sym_get] = ACTIONS(921), - [anon_sym_set] = ACTIONS(921), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(773), + [sym_number] = ACTIONS(877), + [sym_private_property_identifier] = ACTIONS(877), + [anon_sym_static] = ACTIONS(881), + [anon_sym_get] = ACTIONS(885), + [anon_sym_set] = ACTIONS(885), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), [sym_html_comment] = ACTIONS(5), }, - [322] = { - [sym_variable_declarator] = STATE(1266), - [sym_object_pattern] = STATE(1188), - [sym_array_pattern] = STATE(1188), - [sym__destructuring_pattern] = STATE(1188), - [aux_sym_object_repeat1] = STATE(1378), - [aux_sym_object_pattern_repeat1] = STATE(1302), - [sym_identifier] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(826), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(944), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(307)] = { + [sym_string] = STATE(1544), + [sym__property_name] = STATE(1544), + [sym_computed_property_name] = STATE(1544), + [aux_sym_object_repeat1] = STATE(1352), + [aux_sym_object_pattern_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(881), + [anon_sym_export] = ACTIONS(881), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_let] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(871), + [anon_sym_SQUOTE] = ACTIONS(873), + [anon_sym_async] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(773), + [sym_number] = ACTIONS(877), + [sym_private_property_identifier] = ACTIONS(877), + [anon_sym_static] = ACTIONS(881), + [anon_sym_get] = ACTIONS(881), + [anon_sym_set] = ACTIONS(881), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), [sym_html_comment] = ACTIONS(5), }, - [323] = { - [sym_formal_parameters] = STATE(1696), - [sym_identifier] = ACTIONS(946), - [anon_sym_export] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_let] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_of] = ACTIONS(835), - [anon_sym_EQ] = ACTIONS(901), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_async] = ACTIONS(948), - [anon_sym_function] = ACTIONS(923), - [anon_sym_EQ_GT] = ACTIONS(950), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(308)] = { + [sym_string] = STATE(1544), + [sym__property_name] = STATE(1544), + [sym_computed_property_name] = STATE(1544), + [aux_sym_object_repeat1] = STATE(1318), + [aux_sym_object_pattern_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(881), + [anon_sym_export] = ACTIONS(881), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_let] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(871), + [anon_sym_SQUOTE] = ACTIONS(873), + [anon_sym_async] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_static] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(773), + [sym_number] = ACTIONS(877), + [sym_private_property_identifier] = ACTIONS(877), + [anon_sym_static] = ACTIONS(881), + [anon_sym_get] = ACTIONS(881), + [anon_sym_set] = ACTIONS(881), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), [sym_html_comment] = ACTIONS(5), }, - [324] = { - [sym_formal_parameters] = STATE(1717), - [sym_identifier] = ACTIONS(925), - [anon_sym_export] = ACTIONS(927), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_COMMA] = ACTIONS(952), - [anon_sym_RBRACE] = ACTIONS(952), - [anon_sym_let] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(952), - [anon_sym_in] = ACTIONS(835), - [anon_sym_EQ] = ACTIONS(901), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_RBRACK] = ACTIONS(952), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_async] = ACTIONS(927), - [anon_sym_function] = ACTIONS(903), - [anon_sym_EQ_GT] = ACTIONS(934), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(309)] = { + [sym_formal_parameters] = STATE(1642), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(889), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(773), + [anon_sym_let] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(773), + [anon_sym_EQ] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_RBRACK] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_async] = ACTIONS(889), + [anon_sym_function] = ACTIONS(896), + [anon_sym_EQ_GT] = ACTIONS(898), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_static] = ACTIONS(927), - [anon_sym_get] = ACTIONS(927), - [anon_sym_set] = ACTIONS(927), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_static] = ACTIONS(889), + [anon_sym_get] = ACTIONS(889), + [anon_sym_set] = ACTIONS(889), + [sym__ternary_qmark] = ACTIONS(773), [sym_html_comment] = ACTIONS(5), }, - [325] = { - [sym_formal_parameters] = STATE(1674), - [sym_identifier] = ACTIONS(919), - [anon_sym_export] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_let] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(858), - [anon_sym_EQ] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_async] = ACTIONS(921), - [anon_sym_function] = ACTIONS(954), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(310)] = { + [sym_formal_parameters] = STATE(1642), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(889), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(773), + [anon_sym_let] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(773), + [anon_sym_EQ] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_RBRACK] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_async] = ACTIONS(889), + [anon_sym_function] = ACTIONS(896), + [anon_sym_EQ_GT] = ACTIONS(898), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_static] = ACTIONS(921), - [anon_sym_get] = ACTIONS(921), - [anon_sym_set] = ACTIONS(921), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_static] = ACTIONS(889), + [anon_sym_get] = ACTIONS(889), + [anon_sym_set] = ACTIONS(889), + [sym__ternary_qmark] = ACTIONS(773), [sym_html_comment] = ACTIONS(5), }, - [326] = { - [sym_variable_declarator] = STATE(1266), - [sym_object_pattern] = STATE(1188), - [sym_array_pattern] = STATE(1188), - [sym__destructuring_pattern] = STATE(1188), - [aux_sym_object_repeat1] = STATE(1378), - [aux_sym_object_pattern_repeat1] = STATE(1302), - [sym_identifier] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(852), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(944), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(311)] = { + [sym_catch_clause] = STATE(329), + [sym_finally_clause] = STATE(395), + [ts_builtin_sym_end] = ACTIONS(902), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(904), + [anon_sym_default] = ACTIONS(904), + [anon_sym_LBRACE] = ACTIONS(902), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_import] = ACTIONS(904), + [anon_sym_with] = ACTIONS(904), + [anon_sym_var] = ACTIONS(904), + [anon_sym_let] = ACTIONS(904), + [anon_sym_const] = ACTIONS(904), + [anon_sym_else] = ACTIONS(904), + [anon_sym_if] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(904), + [anon_sym_for] = ACTIONS(904), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_await] = ACTIONS(904), + [anon_sym_while] = ACTIONS(904), + [anon_sym_do] = ACTIONS(904), + [anon_sym_try] = ACTIONS(904), + [anon_sym_break] = ACTIONS(904), + [anon_sym_continue] = ACTIONS(904), + [anon_sym_debugger] = ACTIONS(904), + [anon_sym_return] = ACTIONS(904), + [anon_sym_throw] = ACTIONS(904), + [anon_sym_case] = ACTIONS(904), + [anon_sym_catch] = ACTIONS(906), + [anon_sym_finally] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(904), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(902), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(902), + [anon_sym_class] = ACTIONS(904), + [anon_sym_async] = ACTIONS(904), + [anon_sym_function] = ACTIONS(904), + [anon_sym_new] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(904), + [anon_sym_BANG] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(902), + [anon_sym_typeof] = ACTIONS(904), + [anon_sym_void] = ACTIONS(904), + [anon_sym_delete] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(902), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(902), + [sym_number] = ACTIONS(902), + [sym_private_property_identifier] = ACTIONS(904), + [sym_this] = ACTIONS(904), + [sym_super] = ACTIONS(904), + [sym_true] = ACTIONS(904), + [sym_false] = ACTIONS(904), + [sym_null] = ACTIONS(904), + [sym_undefined] = ACTIONS(904), + [anon_sym_AT] = ACTIONS(902), + [anon_sym_static] = ACTIONS(904), + [anon_sym_get] = ACTIONS(904), + [anon_sym_set] = ACTIONS(904), + [sym_preproc] = ACTIONS(902), [sym_html_comment] = ACTIONS(5), }, - [327] = { - [sym_variable_declarator] = STATE(1266), - [sym_object_pattern] = STATE(1188), - [sym_array_pattern] = STATE(1188), - [sym__destructuring_pattern] = STATE(1188), - [aux_sym_object_repeat1] = STATE(1301), - [aux_sym_object_pattern_repeat1] = STATE(1302), - [sym_identifier] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(944), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(312)] = { + [ts_builtin_sym_end] = ACTIONS(506), + [sym_identifier] = ACTIONS(508), + [anon_sym_export] = ACTIONS(508), + [anon_sym_default] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_COMMA] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_import] = ACTIONS(508), + [anon_sym_with] = ACTIONS(508), + [anon_sym_var] = ACTIONS(508), + [anon_sym_let] = ACTIONS(508), + [anon_sym_const] = ACTIONS(508), + [anon_sym_else] = ACTIONS(508), + [anon_sym_if] = ACTIONS(508), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_for] = ACTIONS(508), + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_await] = ACTIONS(508), + [anon_sym_while] = ACTIONS(508), + [anon_sym_do] = ACTIONS(508), + [anon_sym_try] = ACTIONS(508), + [anon_sym_break] = ACTIONS(508), + [anon_sym_continue] = ACTIONS(508), + [anon_sym_debugger] = ACTIONS(508), + [anon_sym_return] = ACTIONS(508), + [anon_sym_throw] = ACTIONS(508), + [anon_sym_case] = ACTIONS(508), + [anon_sym_catch] = ACTIONS(508), + [anon_sym_finally] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(506), + [anon_sym_SQUOTE] = ACTIONS(506), + [anon_sym_class] = ACTIONS(508), + [anon_sym_async] = ACTIONS(508), + [anon_sym_function] = ACTIONS(508), + [anon_sym_new] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_SLASH] = ACTIONS(508), + [anon_sym_BANG] = ACTIONS(506), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_typeof] = ACTIONS(508), + [anon_sym_void] = ACTIONS(508), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_PLUS_PLUS] = ACTIONS(506), + [anon_sym_DASH_DASH] = ACTIONS(506), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(506), + [sym_number] = ACTIONS(506), + [sym_private_property_identifier] = ACTIONS(508), + [sym_this] = ACTIONS(508), + [sym_super] = ACTIONS(508), + [sym_true] = ACTIONS(508), + [sym_false] = ACTIONS(508), + [sym_null] = ACTIONS(508), + [sym_undefined] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(506), + [anon_sym_static] = ACTIONS(508), + [anon_sym_get] = ACTIONS(508), + [anon_sym_set] = ACTIONS(508), + [sym_preproc] = ACTIONS(506), + [sym__automatic_semicolon] = ACTIONS(910), [sym_html_comment] = ACTIONS(5), }, - [328] = { - [sym_formal_parameters] = STATE(1674), - [sym_identifier] = ACTIONS(919), - [anon_sym_export] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(824), - [anon_sym_let] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_EQ] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_async] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_EQ_GT] = ACTIONS(848), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(313)] = { + [ts_builtin_sym_end] = ACTIONS(516), + [sym_identifier] = ACTIONS(518), + [anon_sym_export] = ACTIONS(518), + [anon_sym_default] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(516), + [anon_sym_COMMA] = ACTIONS(516), + [anon_sym_RBRACE] = ACTIONS(516), + [anon_sym_import] = ACTIONS(518), + [anon_sym_with] = ACTIONS(518), + [anon_sym_var] = ACTIONS(518), + [anon_sym_let] = ACTIONS(518), + [anon_sym_const] = ACTIONS(518), + [anon_sym_else] = ACTIONS(518), + [anon_sym_if] = ACTIONS(518), + [anon_sym_switch] = ACTIONS(518), + [anon_sym_for] = ACTIONS(518), + [anon_sym_LPAREN] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_await] = ACTIONS(518), + [anon_sym_while] = ACTIONS(518), + [anon_sym_do] = ACTIONS(518), + [anon_sym_try] = ACTIONS(518), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(518), + [anon_sym_debugger] = ACTIONS(518), + [anon_sym_return] = ACTIONS(518), + [anon_sym_throw] = ACTIONS(518), + [anon_sym_case] = ACTIONS(518), + [anon_sym_catch] = ACTIONS(518), + [anon_sym_finally] = ACTIONS(518), + [anon_sym_yield] = ACTIONS(518), + [anon_sym_LBRACK] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_DQUOTE] = ACTIONS(516), + [anon_sym_SQUOTE] = ACTIONS(516), + [anon_sym_class] = ACTIONS(518), + [anon_sym_async] = ACTIONS(518), + [anon_sym_function] = ACTIONS(518), + [anon_sym_new] = ACTIONS(518), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_SLASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_TILDE] = ACTIONS(516), + [anon_sym_typeof] = ACTIONS(518), + [anon_sym_void] = ACTIONS(518), + [anon_sym_delete] = ACTIONS(518), + [anon_sym_PLUS_PLUS] = ACTIONS(516), + [anon_sym_DASH_DASH] = ACTIONS(516), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_static] = ACTIONS(921), - [anon_sym_get] = ACTIONS(921), - [anon_sym_set] = ACTIONS(921), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(516), + [sym_number] = ACTIONS(516), + [sym_private_property_identifier] = ACTIONS(518), + [sym_this] = ACTIONS(518), + [sym_super] = ACTIONS(518), + [sym_true] = ACTIONS(518), + [sym_false] = ACTIONS(518), + [sym_null] = ACTIONS(518), + [sym_undefined] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_get] = ACTIONS(518), + [anon_sym_set] = ACTIONS(518), + [sym_preproc] = ACTIONS(516), + [sym__automatic_semicolon] = ACTIONS(532), [sym_html_comment] = ACTIONS(5), }, - [329] = { - [sym_formal_parameters] = STATE(1696), - [sym_identifier] = ACTIONS(946), - [anon_sym_export] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_let] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_in] = ACTIONS(835), - [anon_sym_of] = ACTIONS(835), - [anon_sym_EQ] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_async] = ACTIONS(948), - [anon_sym_function] = ACTIONS(923), - [anon_sym_EQ_GT] = ACTIONS(950), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(314)] = { + [sym_formal_parameters] = STATE(1672), + [sym_identifier] = ACTIONS(912), + [anon_sym_export] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(773), + [anon_sym_let] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_EQ] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(916), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_static] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [sym__automatic_semicolon] = ACTIONS(824), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_static] = ACTIONS(914), + [anon_sym_get] = ACTIONS(914), + [anon_sym_set] = ACTIONS(914), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), [sym_html_comment] = ACTIONS(5), }, - [330] = { - [sym_formal_parameters] = STATE(1743), - [sym_identifier] = ACTIONS(894), - [anon_sym_export] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_COMMA] = ACTIONS(958), - [anon_sym_RBRACE] = ACTIONS(958), - [anon_sym_let] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(958), - [anon_sym_in] = ACTIONS(835), - [anon_sym_EQ] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(824), - [anon_sym_RBRACK] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_async] = ACTIONS(896), - [anon_sym_function] = ACTIONS(903), - [anon_sym_EQ_GT] = ACTIONS(905), - [sym_optional_chain] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_STAR_STAR_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(824), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(824), - [anon_sym_QMARK_QMARK] = ACTIONS(835), - [anon_sym_instanceof] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), + [STATE(315)] = { + [sym_formal_parameters] = STATE(1680), + [sym_identifier] = ACTIONS(918), + [anon_sym_export] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_let] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_of] = ACTIONS(784), + [anon_sym_EQ] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_async] = ACTIONS(920), + [anon_sym_function] = ACTIONS(916), + [anon_sym_EQ_GT] = ACTIONS(922), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_static] = ACTIONS(896), - [anon_sym_get] = ACTIONS(896), - [anon_sym_set] = ACTIONS(896), - [sym__ternary_qmark] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_static] = ACTIONS(920), + [anon_sym_get] = ACTIONS(920), + [anon_sym_set] = ACTIONS(920), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), [sym_html_comment] = ACTIONS(5), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(595), 18, - sym__automatic_semicolon, + [STATE(316)] = { + [ts_builtin_sym_end] = ACTIONS(522), + [sym_identifier] = ACTIONS(524), + [anon_sym_export] = ACTIONS(524), + [anon_sym_default] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_COMMA] = ACTIONS(522), + [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_import] = ACTIONS(524), + [anon_sym_with] = ACTIONS(524), + [anon_sym_var] = ACTIONS(524), + [anon_sym_let] = ACTIONS(524), + [anon_sym_const] = ACTIONS(524), + [anon_sym_else] = ACTIONS(524), + [anon_sym_if] = ACTIONS(524), + [anon_sym_switch] = ACTIONS(524), + [anon_sym_for] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_while] = ACTIONS(524), + [anon_sym_do] = ACTIONS(524), + [anon_sym_try] = ACTIONS(524), + [anon_sym_break] = ACTIONS(524), + [anon_sym_continue] = ACTIONS(524), + [anon_sym_debugger] = ACTIONS(524), + [anon_sym_return] = ACTIONS(524), + [anon_sym_throw] = ACTIONS(524), + [anon_sym_case] = ACTIONS(524), + [anon_sym_catch] = ACTIONS(524), + [anon_sym_finally] = ACTIONS(524), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(522), + [anon_sym_DQUOTE] = ACTIONS(522), + [anon_sym_SQUOTE] = ACTIONS(522), + [anon_sym_class] = ACTIONS(524), + [anon_sym_async] = ACTIONS(524), + [anon_sym_function] = ACTIONS(524), + [anon_sym_new] = ACTIONS(524), + [anon_sym_PLUS] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_SLASH] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_typeof] = ACTIONS(524), + [anon_sym_void] = ACTIONS(524), + [anon_sym_delete] = ACTIONS(524), + [anon_sym_PLUS_PLUS] = ACTIONS(522), + [anon_sym_DASH_DASH] = ACTIONS(522), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(522), + [sym_number] = ACTIONS(522), + [sym_private_property_identifier] = ACTIONS(524), + [sym_this] = ACTIONS(524), + [sym_super] = ACTIONS(524), + [sym_true] = ACTIONS(524), + [sym_false] = ACTIONS(524), + [sym_null] = ACTIONS(524), + [sym_undefined] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(522), + [anon_sym_static] = ACTIONS(524), + [anon_sym_get] = ACTIONS(524), + [anon_sym_set] = ACTIONS(524), + [sym_preproc] = ACTIONS(522), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(317)] = { + [sym_formal_parameters] = STATE(1680), + [sym_identifier] = ACTIONS(918), + [anon_sym_export] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_let] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_of] = ACTIONS(784), + [anon_sym_EQ] = ACTIONS(924), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_async] = ACTIONS(920), + [anon_sym_function] = ACTIONS(916), + [anon_sym_EQ_GT] = ACTIONS(922), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_static] = ACTIONS(920), + [anon_sym_get] = ACTIONS(920), + [anon_sym_set] = ACTIONS(920), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(318)] = { + [sym_formal_parameters] = STATE(1672), + [sym_identifier] = ACTIONS(912), + [anon_sym_export] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_let] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(926), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_static] = ACTIONS(914), + [anon_sym_get] = ACTIONS(914), + [anon_sym_set] = ACTIONS(914), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(319)] = { + [sym_variable_declarator] = STATE(1263), + [sym_object_pattern] = STATE(1148), + [sym_array_pattern] = STATE(1148), + [sym__destructuring_pattern] = STATE(1148), + [aux_sym_object_repeat1] = STATE(1352), + [aux_sym_object_pattern_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(932), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(773), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(320)] = { + [sym_formal_parameters] = STATE(1642), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(889), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(934), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_let] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(934), + [anon_sym_in] = ACTIONS(784), + [anon_sym_EQ] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_RBRACK] = ACTIONS(934), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_async] = ACTIONS(889), + [anon_sym_function] = ACTIONS(896), + [anon_sym_EQ_GT] = ACTIONS(898), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_static] = ACTIONS(889), + [anon_sym_get] = ACTIONS(889), + [anon_sym_set] = ACTIONS(889), + [sym__ternary_qmark] = ACTIONS(773), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(321)] = { + [sym_formal_parameters] = STATE(1688), + [sym_identifier] = ACTIONS(940), + [anon_sym_export] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_let] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(944), + [anon_sym_in] = ACTIONS(784), + [anon_sym_EQ] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_RBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_async] = ACTIONS(942), + [anon_sym_function] = ACTIONS(896), + [anon_sym_EQ_GT] = ACTIONS(949), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_static] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [sym__ternary_qmark] = ACTIONS(773), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(322)] = { + [sym_formal_parameters] = STATE(1672), + [sym_identifier] = ACTIONS(912), + [anon_sym_export] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_let] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(875), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_static] = ACTIONS(914), + [anon_sym_get] = ACTIONS(914), + [anon_sym_set] = ACTIONS(914), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(323)] = { + [ts_builtin_sym_end] = ACTIONS(506), + [sym_identifier] = ACTIONS(508), + [anon_sym_export] = ACTIONS(508), + [anon_sym_default] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_COMMA] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_import] = ACTIONS(508), + [anon_sym_with] = ACTIONS(508), + [anon_sym_var] = ACTIONS(508), + [anon_sym_let] = ACTIONS(508), + [anon_sym_const] = ACTIONS(508), + [anon_sym_else] = ACTIONS(508), + [anon_sym_if] = ACTIONS(508), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_for] = ACTIONS(508), + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_await] = ACTIONS(508), + [anon_sym_while] = ACTIONS(508), + [anon_sym_do] = ACTIONS(508), + [anon_sym_try] = ACTIONS(508), + [anon_sym_break] = ACTIONS(508), + [anon_sym_continue] = ACTIONS(508), + [anon_sym_debugger] = ACTIONS(508), + [anon_sym_return] = ACTIONS(508), + [anon_sym_throw] = ACTIONS(508), + [anon_sym_case] = ACTIONS(508), + [anon_sym_catch] = ACTIONS(508), + [anon_sym_finally] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(506), + [anon_sym_SQUOTE] = ACTIONS(506), + [anon_sym_class] = ACTIONS(508), + [anon_sym_async] = ACTIONS(508), + [anon_sym_function] = ACTIONS(508), + [anon_sym_new] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_SLASH] = ACTIONS(508), + [anon_sym_BANG] = ACTIONS(506), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_typeof] = ACTIONS(508), + [anon_sym_void] = ACTIONS(508), + [anon_sym_delete] = ACTIONS(508), + [anon_sym_PLUS_PLUS] = ACTIONS(506), + [anon_sym_DASH_DASH] = ACTIONS(506), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(506), + [sym_number] = ACTIONS(506), + [sym_private_property_identifier] = ACTIONS(508), + [sym_this] = ACTIONS(508), + [sym_super] = ACTIONS(508), + [sym_true] = ACTIONS(508), + [sym_false] = ACTIONS(508), + [sym_null] = ACTIONS(508), + [sym_undefined] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(506), + [anon_sym_static] = ACTIONS(508), + [anon_sym_get] = ACTIONS(508), + [anon_sym_set] = ACTIONS(508), + [sym_preproc] = ACTIONS(506), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(324)] = { + [sym_variable_declarator] = STATE(1263), + [sym_object_pattern] = STATE(1148), + [sym_array_pattern] = STATE(1148), + [sym__destructuring_pattern] = STATE(1148), + [aux_sym_object_repeat1] = STATE(1318), + [aux_sym_object_pattern_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_LPAREN] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(932), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(773), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(325)] = { + [sym_variable_declarator] = STATE(1263), + [sym_object_pattern] = STATE(1148), + [sym_array_pattern] = STATE(1148), + [sym__destructuring_pattern] = STATE(1148), + [aux_sym_object_repeat1] = STATE(1352), + [aux_sym_object_pattern_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(932), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(773), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(326)] = { + [sym_formal_parameters] = STATE(1688), + [sym_identifier] = ACTIONS(940), + [anon_sym_export] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_let] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(951), + [anon_sym_in] = ACTIONS(784), + [anon_sym_EQ] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_RBRACK] = ACTIONS(951), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_async] = ACTIONS(942), + [anon_sym_function] = ACTIONS(896), + [anon_sym_EQ_GT] = ACTIONS(949), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_static] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [sym__ternary_qmark] = ACTIONS(773), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(327)] = { + [sym_formal_parameters] = STATE(1672), + [sym_identifier] = ACTIONS(912), + [anon_sym_export] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(773), + [anon_sym_let] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_in] = ACTIONS(784), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_async] = ACTIONS(914), + [anon_sym_function] = ACTIONS(916), + [anon_sym_EQ_GT] = ACTIONS(797), + [sym_optional_chain] = ACTIONS(773), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_GT_GT_GT] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_STAR_STAR] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(773), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_QMARK_QMARK] = ACTIONS(784), + [anon_sym_instanceof] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_DASH_DASH] = ACTIONS(773), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_static] = ACTIONS(914), + [anon_sym_get] = ACTIONS(914), + [anon_sym_set] = ACTIONS(914), + [sym__automatic_semicolon] = ACTIONS(773), + [sym__ternary_qmark] = ACTIONS(773), + [sym_html_comment] = ACTIONS(5), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 13, + ACTIONS(887), 1, + sym_identifier, + ACTIONS(891), 1, + anon_sym_LPAREN, + ACTIONS(894), 1, + anon_sym_EQ, + ACTIONS(896), 1, + anon_sym_function, + ACTIONS(898), 1, + anon_sym_EQ_GT, + ACTIONS(953), 1, + anon_sym_in, + ACTIONS(956), 1, + anon_sym_of, + STATE(1642), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(889), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(773), 13, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(799), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(784), 20, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [91] = 5, + ACTIONS(908), 1, + anon_sym_finally, + STATE(388), 1, + sym_finally_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(958), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -38674,7 +37424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(597), 44, + ACTIONS(960), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38697,7 +37447,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -38719,19 +37468,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [71] = 3, + [166] = 12, + ACTIONS(887), 1, + sym_identifier, + ACTIONS(891), 1, + anon_sym_LPAREN, + ACTIONS(894), 1, + anon_sym_EQ, + ACTIONS(896), 1, + anon_sym_function, + ACTIONS(898), 1, + anon_sym_EQ_GT, + STATE(1642), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(599), 18, + ACTIONS(962), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(889), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(773), 11, + sym__ternary_qmark, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(799), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(784), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [255] = 11, + ACTIONS(797), 1, + anon_sym_EQ_GT, + ACTIONS(851), 1, + anon_sym_EQ, + ACTIONS(875), 1, + anon_sym_function, + ACTIONS(891), 1, + anon_sym_LPAREN, + ACTIONS(912), 1, + sym_identifier, + STATE(1672), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(914), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(773), 13, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(799), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(784), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [341] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(965), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -38742,7 +37642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(601), 44, + ACTIONS(967), 44, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38764,8 +37664,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_finally, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -38787,20 +37687,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [142] = 4, - ACTIONS(591), 1, + [411] = 4, + ACTIONS(616), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(583), 17, + ACTIONS(608), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -38811,7 +37711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(585), 44, + ACTIONS(610), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38834,7 +37734,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -38856,34 +37755,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [215] = 12, - ACTIONS(894), 1, + [483] = 11, + ACTIONS(891), 1, + anon_sym_LPAREN, + ACTIONS(896), 1, + anon_sym_function, + ACTIONS(900), 1, + anon_sym_EQ, + ACTIONS(940), 1, sym_identifier, - ACTIONS(898), 1, + ACTIONS(949), 1, + anon_sym_EQ_GT, + STATE(1688), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(942), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(773), 13, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(799), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(784), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [569] = 13, + ACTIONS(887), 1, + sym_identifier, + ACTIONS(891), 1, anon_sym_LPAREN, - ACTIONS(903), 1, + ACTIONS(896), 1, anon_sym_function, - ACTIONS(905), 1, + ACTIONS(898), 1, anon_sym_EQ_GT, - ACTIONS(907), 1, + ACTIONS(934), 1, + anon_sym_RBRACK, + ACTIONS(937), 1, anon_sym_EQ, - STATE(1743), 1, + ACTIONS(944), 1, + anon_sym_COMMA, + STATE(1642), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(964), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(896), 6, + ACTIONS(889), 6, anon_sym_export, anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(824), 11, + ACTIONS(773), 11, sym__ternary_qmark, anon_sym_LBRACK, anon_sym_DOT, @@ -38895,7 +37869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(850), 15, + ACTIONS(799), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -38911,7 +37885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 21, + ACTIONS(784), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38933,11 +37907,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [304] = 3, + [659] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(569), 18, + ACTIONS(512), 18, sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, @@ -38945,7 +37919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -38956,7 +37930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(571), 44, + ACTIONS(514), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38979,7 +37953,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -39001,20 +37974,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [375] = 4, + [729] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(971), 2, + ACTIONS(534), 18, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(967), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -39025,7 +37997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(969), 44, + ACTIONS(536), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39048,7 +38020,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -39070,20 +38041,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [448] = 4, - ACTIONS(973), 1, - sym__automatic_semicolon, + [799] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(569), 17, + ACTIONS(969), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -39094,7 +38064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(571), 44, + ACTIONS(971), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39117,7 +38087,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -39139,18 +38108,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [521] = 3, + [869] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(975), 17, + ACTIONS(506), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -39161,7 +38131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(977), 45, + ACTIONS(508), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39183,9 +38153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, - anon_sym_finally, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -39207,20 +38175,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [592] = 4, - ACTIONS(979), 1, + [939] = 4, + ACTIONS(973), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(515), 17, + ACTIONS(516), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -39231,7 +38199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(517), 44, + ACTIONS(518), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39254,7 +38222,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -39276,20 +38243,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [665] = 4, - ACTIONS(581), 1, - sym__automatic_semicolon, + [1011] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(573), 17, + ACTIONS(522), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -39300,7 +38266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(575), 44, + ACTIONS(524), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39323,7 +38289,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -39345,20 +38310,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [738] = 4, - ACTIONS(547), 1, - sym__automatic_semicolon, + [1081] = 5, + ACTIONS(979), 1, + anon_sym_else, + STATE(364), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(539), 17, + ACTIONS(975), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -39369,7 +38336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(541), 44, + ACTIONS(977), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39377,7 +38344,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -39392,7 +38358,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -39414,20 +38379,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [811] = 4, - ACTIONS(537), 1, + [1155] = 4, + ACTIONS(586), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(529), 17, + ACTIONS(578), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -39438,7 +38403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(531), 44, + ACTIONS(580), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39461,7 +38426,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -39483,20 +38447,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [884] = 4, - ACTIONS(611), 1, + [1227] = 4, + ACTIONS(576), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(603), 17, + ACTIONS(568), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -39507,7 +38471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(605), 44, + ACTIONS(570), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39530,7 +38494,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -39552,20 +38515,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [957] = 4, - ACTIONS(567), 1, - sym__automatic_semicolon, + [1299] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(559), 17, + ACTIONS(985), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(981), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -39576,7 +38539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(561), 44, + ACTIONS(983), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39599,7 +38562,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -39621,20 +38583,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1030] = 4, - ACTIONS(625), 1, - sym__automatic_semicolon, + [1371] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(617), 17, + ACTIONS(987), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -39645,7 +38605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(619), 44, + ACTIONS(989), 44, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39667,8 +38627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_finally, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -39690,19 +38650,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1103] = 3, + [1441] = 4, + ACTIONS(991), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(613), 18, - sym__automatic_semicolon, + ACTIONS(506), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -39713,7 +38674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(615), 44, + ACTIONS(508), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39736,7 +38697,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -39758,22 +38718,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1174] = 5, - ACTIONS(985), 1, - anon_sym_else, - STATE(358), 1, - sym_else_clause, + [1513] = 11, + ACTIONS(797), 1, + anon_sym_EQ_GT, + ACTIONS(851), 1, + anon_sym_EQ, + ACTIONS(891), 1, + anon_sym_LPAREN, + ACTIONS(912), 1, + sym_identifier, + ACTIONS(926), 1, + anon_sym_function, + STATE(1672), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(981), 17, + ACTIONS(914), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(773), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(799), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(784), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [1599] = 4, + ACTIONS(556), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(548), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -39784,7 +38817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(983), 43, + ACTIONS(550), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39792,6 +38825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -39806,7 +38840,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -39828,19 +38861,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1249] = 3, + [1671] = 4, + ACTIONS(546), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(987), 18, - sym__automatic_semicolon, + ACTIONS(538), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -39851,7 +38885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(989), 44, + ACTIONS(540), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39874,7 +38908,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -39896,96 +38929,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1320] = 13, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(898), 1, - anon_sym_LPAREN, - ACTIONS(903), 1, - anon_sym_function, - ACTIONS(905), 1, - anon_sym_EQ_GT, - ACTIONS(907), 1, - anon_sym_EQ, - ACTIONS(991), 1, - anon_sym_in, - ACTIONS(994), 1, - anon_sym_of, - STATE(1743), 1, - sym_formal_parameters, + [1743] = 4, + ACTIONS(566), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(896), 6, + ACTIONS(558), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + anon_sym_AT, + sym_preproc, + ACTIONS(560), 43, anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(824), 13, - sym__ternary_qmark, - anon_sym_COMMA, + [1815] = 4, + ACTIONS(596), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(588), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(850), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 20, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + sym_number, + anon_sym_AT, + sym_preproc, + ACTIONS(590), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1411] = 3, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [1887] = 4, + ACTIONS(606), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(996), 17, + ACTIONS(598), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -39996,7 +39089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(998), 45, + ACTIONS(600), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40018,9 +39111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, - anon_sym_finally, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -40042,20 +39133,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1482] = 4, - ACTIONS(557), 1, - sym__automatic_semicolon, + [1959] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(549), 17, + ACTIONS(993), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -40066,7 +39155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(551), 44, + ACTIONS(995), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40089,7 +39178,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -40111,18 +39199,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1555] = 3, + [2028] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1000), 17, + ACTIONS(997), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -40133,7 +39221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1002), 44, + ACTIONS(999), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40156,7 +39244,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -40178,18 +39265,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1625] = 3, + [2097] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1004), 17, + ACTIONS(1001), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -40200,7 +39287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1006), 44, + ACTIONS(1003), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40223,7 +39310,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -40245,18 +39331,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1695] = 3, + [2166] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1008), 17, + ACTIONS(1005), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -40267,7 +39353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1010), 44, + ACTIONS(1007), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40290,7 +39376,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -40312,18 +39397,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1765] = 3, + [2235] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1012), 17, + ACTIONS(1005), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -40334,7 +39419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1014), 44, + ACTIONS(1007), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40357,7 +39442,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -40379,93 +39463,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1835] = 11, - ACTIONS(848), 1, - anon_sym_EQ_GT, - ACTIONS(860), 1, - anon_sym_EQ, - ACTIONS(898), 1, - anon_sym_LPAREN, - ACTIONS(919), 1, - sym_identifier, - ACTIONS(954), 1, - anon_sym_function, - STATE(1674), 1, - sym_formal_parameters, + [2304] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(921), 6, + ACTIONS(1009), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + anon_sym_AT, + sym_preproc, + ACTIONS(1011), 43, anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(824), 13, - sym__automatic_semicolon, - sym__ternary_qmark, + [2373] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1013), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(850), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + sym_number, + anon_sym_AT, + sym_preproc, + ACTIONS(1015), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1921] = 3, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [2442] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1012), 17, + ACTIONS(1017), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -40476,7 +39617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1014), 44, + ACTIONS(1019), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40499,7 +39640,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -40521,18 +39661,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1991] = 3, + [2511] = 12, + ACTIONS(797), 1, + anon_sym_EQ_GT, + ACTIONS(851), 1, + anon_sym_EQ, + ACTIONS(855), 1, + anon_sym_COLON, + ACTIONS(928), 1, + sym_identifier, + ACTIONS(930), 1, + anon_sym_LBRACE, + ACTIONS(932), 1, + anon_sym_LBRACK, + STATE(1263), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1148), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(773), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(799), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(784), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [2598] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1016), 17, + ACTIONS(1021), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -40543,7 +39758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1018), 44, + ACTIONS(1023), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40566,7 +39781,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -40588,18 +39802,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2061] = 3, + [2667] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1020), 17, + ACTIONS(1025), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -40610,7 +39824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1022), 44, + ACTIONS(1027), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40633,7 +39847,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -40655,18 +39868,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2131] = 3, + [2736] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1024), 17, + ACTIONS(1029), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -40677,7 +39890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1026), 44, + ACTIONS(1031), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40700,7 +39913,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -40722,18 +39934,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2201] = 3, + [2805] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1028), 17, + ACTIONS(1033), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -40744,7 +39956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1030), 44, + ACTIONS(1035), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40767,7 +39979,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -40789,18 +40000,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2271] = 3, + [2874] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1032), 17, + ACTIONS(1037), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -40811,7 +40022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1034), 44, + ACTIONS(1039), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40834,7 +40045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -40856,18 +40066,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2341] = 3, + [2943] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1028), 17, + ACTIONS(1041), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -40878,7 +40088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1030), 44, + ACTIONS(1043), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40901,7 +40111,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -40923,18 +40132,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2411] = 3, + [3012] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1028), 17, + ACTIONS(997), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -40945,7 +40154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1030), 44, + ACTIONS(999), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40968,7 +40177,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -40990,18 +40198,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2481] = 3, + [3081] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1028), 17, + ACTIONS(997), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -41012,7 +40220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1030), 44, + ACTIONS(999), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41035,7 +40243,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -41057,18 +40264,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2551] = 3, + [3150] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1036), 17, + ACTIONS(1045), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -41079,7 +40286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1038), 44, + ACTIONS(1047), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41102,7 +40309,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -41124,18 +40330,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2621] = 3, + [3219] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1040), 17, + ACTIONS(1049), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -41146,7 +40352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1042), 44, + ACTIONS(1051), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41169,7 +40375,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -41191,18 +40396,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2691] = 3, + [3288] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1044), 17, + ACTIONS(1053), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -41213,7 +40418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1046), 44, + ACTIONS(1055), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41236,7 +40441,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -41258,18 +40462,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2761] = 3, + [3357] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1048), 17, + ACTIONS(1057), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -41280,7 +40484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1050), 44, + ACTIONS(1059), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41303,7 +40507,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -41325,18 +40528,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2831] = 3, + [3426] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1028), 17, + ACTIONS(1061), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -41347,7 +40550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1030), 44, + ACTIONS(1063), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41370,7 +40573,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -41392,18 +40594,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2901] = 3, + [3495] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1028), 17, + ACTIONS(1065), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -41414,7 +40616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1030), 44, + ACTIONS(1067), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41437,7 +40639,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -41459,18 +40660,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2971] = 3, + [3564] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1052), 17, + ACTIONS(1069), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -41481,7 +40682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1054), 44, + ACTIONS(1071), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41504,7 +40705,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -41526,18 +40726,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3041] = 3, + [3633] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1056), 17, + ACTIONS(1073), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -41548,7 +40748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1058), 44, + ACTIONS(1075), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41571,7 +40771,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -41593,18 +40792,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3111] = 3, + [3702] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1060), 17, + ACTIONS(1077), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -41615,7 +40814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1062), 44, + ACTIONS(1079), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41638,7 +40837,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -41660,18 +40858,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3181] = 3, + [3771] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1064), 17, + ACTIONS(1081), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -41682,7 +40880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1066), 44, + ACTIONS(1083), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41705,7 +40903,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -41727,33 +40924,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3251] = 11, - ACTIONS(848), 1, - anon_sym_EQ_GT, - ACTIONS(860), 1, - anon_sym_EQ, - ACTIONS(882), 1, - anon_sym_function, - ACTIONS(898), 1, + [3840] = 13, + ACTIONS(891), 1, anon_sym_LPAREN, - ACTIONS(919), 1, + ACTIONS(896), 1, + anon_sym_function, + ACTIONS(900), 1, + anon_sym_EQ, + ACTIONS(940), 1, sym_identifier, - STATE(1674), 1, + ACTIONS(949), 1, + anon_sym_EQ_GT, + ACTIONS(953), 1, + anon_sym_in, + ACTIONS(956), 1, + anon_sym_of, + STATE(1688), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(921), 6, + ACTIONS(942), 6, anon_sym_export, anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(824), 13, - sym__automatic_semicolon, + ACTIONS(773), 11, sym__ternary_qmark, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -41764,7 +40963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(850), 15, + ACTIONS(799), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -41780,9 +40979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 21, + ACTIONS(784), 20, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -41802,18 +41000,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [3337] = 3, + [3929] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1068), 17, + ACTIONS(1085), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -41824,7 +41022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1070), 44, + ACTIONS(1087), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41847,7 +41045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -41869,95 +41066,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3407] = 13, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(898), 1, - anon_sym_LPAREN, - ACTIONS(903), 1, - anon_sym_function, - ACTIONS(905), 1, - anon_sym_EQ_GT, - ACTIONS(929), 1, - anon_sym_COMMA, - ACTIONS(958), 1, - anon_sym_RBRACK, - ACTIONS(961), 1, - anon_sym_EQ, - STATE(1743), 1, - sym_formal_parameters, + [3998] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(896), 6, + ACTIONS(1089), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + anon_sym_AT, + sym_preproc, + ACTIONS(1091), 43, anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(824), 11, - sym__ternary_qmark, + [4067] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1093), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(850), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + sym_number, + anon_sym_AT, + sym_preproc, + ACTIONS(1095), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [3497] = 3, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [4136] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1072), 17, + ACTIONS(997), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -41968,7 +41220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1074), 44, + ACTIONS(999), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41991,7 +41243,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -42013,18 +41264,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3567] = 3, + [4205] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, + ACTIONS(997), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -42035,7 +41286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1078), 44, + ACTIONS(999), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42058,7 +41309,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -42080,18 +41330,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3637] = 3, + [4274] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1080), 17, + ACTIONS(1097), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -42102,7 +41352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1082), 44, + ACTIONS(1099), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42125,7 +41375,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -42147,18 +41396,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3707] = 3, + [4343] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1084), 17, + ACTIONS(1101), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -42169,7 +41418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1086), 44, + ACTIONS(1103), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42192,7 +41441,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -42214,18 +41462,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3777] = 3, + [4412] = 12, + ACTIONS(797), 1, + anon_sym_EQ_GT, + ACTIONS(849), 1, + anon_sym_COLON, + ACTIONS(851), 1, + anon_sym_EQ, + ACTIONS(928), 1, + sym_identifier, + ACTIONS(930), 1, + anon_sym_LBRACE, + ACTIONS(932), 1, + anon_sym_LBRACK, + STATE(1263), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1148), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(773), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(799), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(784), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [4499] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1088), 17, + ACTIONS(1105), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -42236,7 +41559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1090), 44, + ACTIONS(1107), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42259,7 +41582,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -42281,18 +41603,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3847] = 3, + [4568] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1092), 17, + ACTIONS(1109), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -42303,7 +41625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1094), 44, + ACTIONS(1111), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42326,7 +41648,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -42348,18 +41669,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3917] = 3, + [4637] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1096), 17, + ACTIONS(1097), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -42370,7 +41691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1098), 44, + ACTIONS(1099), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42393,7 +41714,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -42415,18 +41735,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3987] = 3, + [4706] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1100), 17, + ACTIONS(1113), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -42437,7 +41757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1102), 44, + ACTIONS(1115), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42460,7 +41780,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -42482,18 +41801,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4057] = 3, + [4775] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1104), 17, + ACTIONS(997), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -42504,7 +41823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1106), 44, + ACTIONS(999), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42527,7 +41846,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -42549,18 +41867,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4127] = 3, + [4844] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1108), 17, + ACTIONS(1117), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -42571,7 +41889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1110), 44, + ACTIONS(1119), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42594,7 +41912,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -42616,18 +41933,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4197] = 3, + [4913] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1112), 17, + ACTIONS(1121), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -42638,7 +41955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1114), 44, + ACTIONS(1123), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42661,7 +41978,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -42683,18 +41999,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4267] = 3, + [4982] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1116), 17, + ACTIONS(1125), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -42705,7 +42021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1118), 44, + ACTIONS(1127), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42728,7 +42044,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -42750,18 +42065,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4337] = 3, + [5051] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1120), 17, + ACTIONS(1129), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -42772,7 +42087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1122), 44, + ACTIONS(1131), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42795,7 +42110,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -42817,18 +42131,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4407] = 3, + [5120] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1124), 17, + ACTIONS(1133), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -42839,7 +42153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1126), 44, + ACTIONS(1135), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42862,7 +42176,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -42884,18 +42197,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4477] = 3, + [5189] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1128), 17, + ACTIONS(1137), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -42906,7 +42219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1130), 44, + ACTIONS(1139), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42929,7 +42242,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -42951,18 +42263,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4547] = 3, + [5258] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1132), 17, + ACTIONS(1141), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -42973,7 +42285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1134), 44, + ACTIONS(1143), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42996,7 +42308,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -43018,18 +42329,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4617] = 3, + [5327] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1136), 17, + ACTIONS(1145), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -43040,7 +42351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1138), 44, + ACTIONS(1147), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43063,7 +42374,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -43085,18 +42395,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4687] = 3, + [5396] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1140), 17, + ACTIONS(1149), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -43107,7 +42417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1142), 44, + ACTIONS(1151), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43130,7 +42440,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -43152,93 +42461,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4757] = 11, - ACTIONS(898), 1, - anon_sym_LPAREN, - ACTIONS(901), 1, - anon_sym_EQ, - ACTIONS(903), 1, - anon_sym_function, - ACTIONS(925), 1, - sym_identifier, - ACTIONS(934), 1, - anon_sym_EQ_GT, - STATE(1717), 1, - sym_formal_parameters, + [5465] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(927), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(824), 13, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(850), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [4843] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1144), 17, + ACTIONS(1153), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -43249,7 +42483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1146), 44, + ACTIONS(1155), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43272,7 +42506,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -43294,18 +42527,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4913] = 3, + [5534] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1144), 17, + ACTIONS(1157), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -43316,7 +42549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1146), 44, + ACTIONS(1159), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43339,7 +42572,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -43361,18 +42593,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4983] = 3, + [5603] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1148), 17, + ACTIONS(1161), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -43383,7 +42615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1150), 44, + ACTIONS(1163), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43406,7 +42638,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -43428,18 +42659,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5053] = 3, + [5672] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1152), 17, + ACTIONS(1165), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -43450,7 +42681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1154), 44, + ACTIONS(1167), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43473,7 +42704,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -43495,18 +42725,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5123] = 3, + [5741] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1156), 17, + ACTIONS(1169), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -43517,7 +42747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1158), 44, + ACTIONS(1171), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43540,7 +42770,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -43562,18 +42791,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5193] = 3, + [5810] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1160), 17, + ACTIONS(1173), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -43584,7 +42813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1162), 44, + ACTIONS(1175), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43607,7 +42836,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -43629,18 +42857,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5263] = 3, + [5879] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1164), 17, + ACTIONS(1177), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -43651,7 +42879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1166), 44, + ACTIONS(1179), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43674,7 +42902,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -43696,18 +42923,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5333] = 3, + [5948] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1168), 17, + ACTIONS(1181), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -43718,7 +42945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1170), 44, + ACTIONS(1183), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43741,7 +42968,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -43763,18 +42989,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5403] = 3, + [6017] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1172), 17, + ACTIONS(1185), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -43785,7 +43011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1174), 44, + ACTIONS(1187), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43808,7 +43034,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -43830,18 +43055,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5473] = 3, + [6086] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1176), 17, + ACTIONS(1189), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -43852,7 +43077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1178), 44, + ACTIONS(1191), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43875,7 +43100,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -43897,18 +43121,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5543] = 3, + [6155] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1180), 17, + ACTIONS(1193), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -43919,7 +43143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1182), 44, + ACTIONS(1195), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43942,7 +43166,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -43964,18 +43187,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5613] = 3, + [6224] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1184), 17, + ACTIONS(1193), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -43986,7 +43209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1186), 44, + ACTIONS(1195), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -44009,7 +43232,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -44031,18 +43253,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5683] = 3, + [6293] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1188), 17, + ACTIONS(1197), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -44053,7 +43275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1190), 44, + ACTIONS(1199), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -44076,7 +43298,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -44098,18 +43319,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5753] = 3, + [6362] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1192), 17, + ACTIONS(1201), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -44120,7 +43341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1194), 44, + ACTIONS(1203), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -44143,7 +43364,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -44165,18 +43385,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5823] = 3, + [6431] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1196), 17, + ACTIONS(1205), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -44187,7 +43407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1198), 44, + ACTIONS(1207), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -44210,7 +43430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -44232,18 +43451,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5893] = 3, + [6500] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1200), 17, + ACTIONS(1209), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -44254,7 +43473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1202), 44, + ACTIONS(1211), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -44277,7 +43496,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -44299,18 +43517,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5963] = 3, + [6569] = 11, + ACTIONS(891), 1, + anon_sym_LPAREN, + ACTIONS(896), 1, + anon_sym_function, + ACTIONS(1213), 1, + sym_identifier, + ACTIONS(1217), 1, + anon_sym_EQ, + ACTIONS(1219), 1, + anon_sym_EQ_GT, + STATE(1713), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1215), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(773), 11, + sym__ternary_qmark, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(799), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(784), 22, + anon_sym_STAR, + anon_sym_in, + anon_sym_of, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [6654] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1204), 17, + ACTIONS(1221), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -44321,7 +43613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1206), 44, + ACTIONS(1223), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -44344,7 +43636,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -44366,18 +43657,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6033] = 3, + [6723] = 11, + ACTIONS(891), 1, + anon_sym_LPAREN, + ACTIONS(896), 1, + anon_sym_function, + ACTIONS(900), 1, + anon_sym_EQ, + ACTIONS(1213), 1, + sym_identifier, + ACTIONS(1219), 1, + anon_sym_EQ_GT, + STATE(1713), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1215), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(773), 11, + sym__ternary_qmark, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(799), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(784), 22, + anon_sym_STAR, + anon_sym_in, + anon_sym_of, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [6808] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1208), 17, + ACTIONS(1225), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -44388,7 +43753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1210), 44, + ACTIONS(1227), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -44411,7 +43776,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -44433,353 +43797,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6103] = 3, + [6877] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1212), 17, + ACTIONS(1229), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(1214), 44, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [6173] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1216), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(1218), 44, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [6243] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1220), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(1222), 44, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [6313] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1108), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(1110), 44, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [6383] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1224), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(1226), 44, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [6453] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1228), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -44790,7 +43819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1230), 44, + ACTIONS(1231), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -44813,7 +43842,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_case, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -44835,30 +43863,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6523] = 12, - ACTIONS(848), 1, - anon_sym_EQ_GT, - ACTIONS(858), 1, - anon_sym_COLON, - ACTIONS(860), 1, + [6946] = 13, + ACTIONS(894), 1, anon_sym_EQ, - ACTIONS(940), 1, - sym_identifier, - ACTIONS(942), 1, + ACTIONS(898), 1, + anon_sym_EQ_GT, + ACTIONS(930), 1, anon_sym_LBRACE, - ACTIONS(944), 1, + ACTIONS(932), 1, anon_sym_LBRACK, - STATE(1266), 1, + ACTIONS(953), 1, + anon_sym_in, + ACTIONS(956), 1, + anon_sym_of, + ACTIONS(1233), 1, + sym_identifier, + STATE(1244), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1188), 3, + STATE(1091), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(824), 14, - sym__automatic_semicolon, + ACTIONS(773), 13, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -44872,7 +43901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(850), 15, + ACTIONS(799), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44888,9 +43917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 21, + ACTIONS(784), 20, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -44910,32 +43938,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [6610] = 11, - ACTIONS(898), 1, - anon_sym_LPAREN, - ACTIONS(903), 1, - anon_sym_function, - ACTIONS(1232), 1, - sym_identifier, - ACTIONS(1236), 1, - anon_sym_EQ, - ACTIONS(1238), 1, + [7034] = 11, + ACTIONS(797), 1, anon_sym_EQ_GT, - STATE(1734), 1, - sym_formal_parameters, + ACTIONS(851), 1, + anon_sym_EQ, + ACTIONS(928), 1, + sym_identifier, + ACTIONS(930), 1, + anon_sym_LBRACE, + ACTIONS(932), 1, + anon_sym_LBRACK, + STATE(1263), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1234), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(824), 11, + STATE(1148), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(773), 13, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, sym_optional_chain, anon_sym_LT_EQ, @@ -44945,7 +43972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(850), 15, + ACTIONS(799), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44961,10 +43988,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 22, + ACTIONS(784), 21, anon_sym_STAR, anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -44984,42 +44010,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [6695] = 11, - ACTIONS(898), 1, - anon_sym_LPAREN, - ACTIONS(901), 1, - anon_sym_EQ, - ACTIONS(903), 1, - anon_sym_function, - ACTIONS(1232), 1, - sym_identifier, - ACTIONS(1238), 1, - anon_sym_EQ_GT, - STATE(1734), 1, - sym_formal_parameters, + [7117] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1234), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(824), 11, + ACTIONS(1235), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(1237), 36, sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45035,10 +44065,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 22, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [7183] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1239), 21, anon_sym_STAR, anon_sym_in, - anon_sym_of, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -45057,47 +44099,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [6780] = 13, - ACTIONS(898), 1, + ACTIONS(1241), 36, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(901), 1, - anon_sym_EQ, - ACTIONS(903), 1, - anon_sym_function, - ACTIONS(925), 1, - sym_identifier, - ACTIONS(934), 1, - anon_sym_EQ_GT, - ACTIONS(991), 1, - anon_sym_in, - ACTIONS(994), 1, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - STATE(1717), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(927), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(824), 11, - sym__ternary_qmark, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45113,8 +44128,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 20, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [7249] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1243), 21, anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -45133,45 +44162,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [6869] = 12, - ACTIONS(848), 1, - anon_sym_EQ_GT, - ACTIONS(860), 1, - anon_sym_EQ, - ACTIONS(862), 1, - anon_sym_COLON, - ACTIONS(940), 1, - sym_identifier, - ACTIONS(942), 1, - anon_sym_LBRACE, - ACTIONS(944), 1, - anon_sym_LBRACK, - STATE(1266), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1188), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(824), 14, - sym__automatic_semicolon, + ACTIONS(1245), 36, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45187,9 +44191,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 21, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [7315] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1247), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -45208,46 +44225,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [6956] = 13, - ACTIONS(905), 1, - anon_sym_EQ_GT, - ACTIONS(907), 1, - anon_sym_EQ, - ACTIONS(942), 1, - anon_sym_LBRACE, - ACTIONS(944), 1, - anon_sym_LBRACK, - ACTIONS(991), 1, - anon_sym_in, - ACTIONS(994), 1, - anon_sym_of, - ACTIONS(1240), 1, - sym_identifier, - STATE(1259), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1110), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(824), 13, + ACTIONS(1249), 36, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45263,62 +44254,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 20, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - [7044] = 11, - ACTIONS(848), 1, - anon_sym_EQ_GT, - ACTIONS(860), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [7381] = 11, + ACTIONS(786), 1, + anon_sym_COLON, + ACTIONS(807), 1, + anon_sym_RBRACE, + ACTIONS(1255), 1, + anon_sym_LPAREN, + ACTIONS(1258), 1, anon_sym_EQ, - ACTIONS(940), 1, - sym_identifier, - ACTIONS(942), 1, - anon_sym_LBRACE, - ACTIONS(944), 1, - anon_sym_LBRACK, - STATE(1266), 1, - sym_variable_declarator, + ACTIONS(1260), 1, + anon_sym_EQ_GT, + STATE(1324), 1, + aux_sym_object_pattern_repeat1, + STATE(1352), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1188), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(824), 13, + ACTIONS(1253), 15, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(850), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45334,7 +44312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 21, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45355,15 +44333,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [7127] = 3, + [7463] = 5, + ACTIONS(1264), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1242), 21, + ACTIONS(1262), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -45382,7 +44376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1244), 36, + ACTIONS(1253), 21, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -45396,21 +44390,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -45419,11 +44398,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7193] = 3, + [7533] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1246), 21, + ACTIONS(1266), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -45445,7 +44424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1248), 36, + ACTIONS(1268), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -45482,46 +44461,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7259] = 3, + [7599] = 11, + ACTIONS(786), 1, + anon_sym_COLON, + ACTIONS(809), 1, + anon_sym_RBRACE, + ACTIONS(1255), 1, + anon_sym_LPAREN, + ACTIONS(1258), 1, + anon_sym_EQ, + ACTIONS(1260), 1, + anon_sym_EQ_GT, + STATE(1318), 1, + aux_sym_object_repeat1, + STATE(1324), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1250), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1252), 36, + ACTIONS(1253), 15, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45537,19 +44511,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [7325] = 3, + ACTIONS(1251), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7681] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1254), 21, + ACTIONS(1270), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -45571,7 +44558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1256), 36, + ACTIONS(1272), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -45608,11 +44595,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7391] = 3, + [7747] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(989), 21, + ACTIONS(971), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -45634,7 +44621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(987), 36, + ACTIONS(969), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -45671,25 +44658,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7457] = 11, - ACTIONS(837), 1, - anon_sym_COLON, - ACTIONS(852), 1, + [7813] = 11, + ACTIONS(775), 1, anon_sym_RBRACE, - ACTIONS(1262), 1, + ACTIONS(786), 1, + anon_sym_COLON, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1265), 1, + ACTIONS(1258), 1, anon_sym_EQ, - ACTIONS(1267), 1, + ACTIONS(1260), 1, anon_sym_EQ_GT, - STATE(1302), 1, + STATE(1324), 1, aux_sym_object_pattern_repeat1, - STATE(1378), 1, + STATE(1352), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1260), 15, + ACTIONS(1253), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -45705,7 +44692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1269), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45721,7 +44708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 20, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45742,13 +44729,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7539] = 5, - ACTIONS(1271), 1, + [7895] = 6, + ACTIONS(1264), 1, anon_sym_EQ, + ACTIONS(1274), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1269), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45764,7 +44753,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 20, + ACTIONS(1253), 19, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45785,15 +44794,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1260), 21, + [7966] = 6, + ACTIONS(898), 1, + anon_sym_EQ_GT, + ACTIONS(900), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(799), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(773), 19, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -45807,14 +44838,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7609] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1273), 21, + ACTIONS(784), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -45833,20 +44859,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1275), 36, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, + [8037] = 6, + ACTIONS(894), 1, + anon_sym_EQ, + ACTIONS(898), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(799), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45862,6 +44883,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(773), 19, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -45870,41 +44903,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7675] = 11, - ACTIONS(826), 1, - anon_sym_RBRACE, - ACTIONS(837), 1, - anon_sym_COLON, - ACTIONS(1262), 1, - anon_sym_LPAREN, - ACTIONS(1265), 1, + ACTIONS(784), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [8108] = 12, + ACTIONS(900), 1, anon_sym_EQ, - ACTIONS(1267), 1, + ACTIONS(930), 1, + anon_sym_LBRACE, + ACTIONS(949), 1, anon_sym_EQ_GT, - STATE(1302), 1, - aux_sym_object_pattern_repeat1, - STATE(1378), 1, - aux_sym_object_repeat1, + ACTIONS(953), 1, + anon_sym_in, + ACTIONS(956), 1, + anon_sym_of, + ACTIONS(1276), 1, + sym_identifier, + ACTIONS(1278), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1260), 15, - sym__automatic_semicolon, + STATE(1338), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(773), 11, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DOT, sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1269), 15, + ACTIONS(799), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45920,9 +44974,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 20, + ACTIONS(784), 20, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -45941,41 +44994,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7757] = 11, - ACTIONS(837), 1, - anon_sym_COLON, - ACTIONS(854), 1, - anon_sym_RBRACE, - ACTIONS(1262), 1, - anon_sym_LPAREN, - ACTIONS(1265), 1, - anon_sym_EQ, - ACTIONS(1267), 1, + anon_sym_instanceof, + [8191] = 6, + ACTIONS(1274), 1, anon_sym_EQ_GT, - STATE(1301), 1, - aux_sym_object_repeat1, - STATE(1302), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(1281), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1260), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1269), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45991,7 +45019,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 20, + ACTIONS(1253), 19, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46012,280 +45060,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7839] = 3, + [8262] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1277), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1279), 36, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [7905] = 12, - ACTIONS(901), 1, - anon_sym_EQ, - ACTIONS(934), 1, - anon_sym_EQ_GT, - ACTIONS(942), 1, + ACTIONS(1285), 15, anon_sym_LBRACE, - ACTIONS(991), 1, - anon_sym_in, - ACTIONS(994), 1, - anon_sym_of, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1283), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1388), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(824), 11, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(850), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 20, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [7988] = 6, - ACTIONS(901), 1, - anon_sym_EQ, - ACTIONS(905), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(850), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(824), 19, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(835), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8059] = 6, - ACTIONS(905), 1, - anon_sym_EQ_GT, - ACTIONS(907), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(850), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(824), 19, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(835), 20, - anon_sym_STAR, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8130] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(987), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -46296,7 +45080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(989), 41, + ACTIONS(1283), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -46316,7 +45100,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -46338,78 +45121,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8195] = 3, + [8326] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1288), 15, + ACTIONS(969), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(1286), 41, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [8260] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1292), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -46420,7 +45141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1290), 41, + ACTIONS(971), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -46440,7 +45161,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -46462,16 +45182,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8325] = 3, + [8390] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1296), 15, + ACTIONS(1285), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -46482,7 +45202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1294), 41, + ACTIONS(1283), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -46502,7 +45222,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -46524,16 +45243,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8390] = 3, + [8454] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1292), 15, + ACTIONS(1289), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -46544,7 +45263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1290), 41, + ACTIONS(1287), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -46564,7 +45283,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -46586,16 +45304,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8455] = 3, + [8518] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1300), 15, + ACTIONS(1293), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -46606,7 +45324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1298), 41, + ACTIONS(1291), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -46626,7 +45344,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -46648,15 +45365,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8520] = 6, - ACTIONS(1271), 1, + [8582] = 5, + ACTIONS(1281), 1, anon_sym_EQ, - ACTIONS(1302), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1269), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46672,7 +45387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1260), 19, + ACTIONS(1253), 19, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -46692,7 +45407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1258), 20, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46713,16 +45428,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8591] = 3, + [8650] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1292), 15, + ACTIONS(1285), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -46733,7 +45448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1290), 41, + ACTIONS(1283), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -46753,7 +45468,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -46775,16 +45489,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8656] = 3, + [8714] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1306), 15, + ACTIONS(1297), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -46795,7 +45509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1304), 41, + ACTIONS(1295), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -46815,7 +45529,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -46837,16 +45550,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8721] = 3, + [8778] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1292), 15, + ACTIONS(1285), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -46857,7 +45570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1290), 41, + ACTIONS(1283), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -46877,7 +45590,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [8842] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1301), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + anon_sym_AT, + sym_preproc, + ACTIONS(1299), 40, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, anon_sym_class, anon_sym_async, anon_sym_function, @@ -46899,15 +45672,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8786] = 6, - ACTIONS(1302), 1, + [8906] = 7, + ACTIONS(1274), 1, anon_sym_EQ_GT, - ACTIONS(1308), 1, + ACTIONS(1306), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1269), 15, + ACTIONS(1303), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1253), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46923,27 +45715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1260), 19, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1258), 20, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46964,13 +45736,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8857] = 5, - ACTIONS(1308), 1, - anon_sym_EQ, + [8977] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1269), 15, + ACTIONS(971), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(969), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46986,18 +45788,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1260), 19, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -47006,9 +45796,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1258), 20, + [9040] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1270), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -47027,15 +45822,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8925] = 6, - ACTIONS(901), 1, + ACTIONS(1272), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [9103] = 5, + ACTIONS(1264), 1, anon_sym_EQ, - ACTIONS(950), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(850), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47051,10 +45878,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(824), 17, + ACTIONS(1253), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, @@ -47069,7 +45897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 20, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47090,15 +45918,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8994] = 6, - ACTIONS(1310), 1, - anon_sym_EQ, - ACTIONS(1312), 1, + [9170] = 6, + ACTIONS(1260), 1, anon_sym_EQ_GT, + ACTIONS(1264), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1269), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47114,13 +45942,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1260), 17, + ACTIONS(1253), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -47132,7 +45960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1258), 20, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47153,11 +45981,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9063] = 3, + [9239] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1246), 21, + ACTIONS(1247), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -47179,7 +46007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1248), 33, + ACTIONS(1249), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -47213,33 +46041,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9126] = 3, + [9302] = 6, + ACTIONS(797), 1, + anon_sym_EQ_GT, + ACTIONS(851), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1250), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(799), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(773), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(784), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1252), 33, + [9371] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1239), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(1241), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -47273,11 +46164,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9189] = 3, + [9434] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1242), 21, + ACTIONS(1266), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -47299,7 +46190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1244), 33, + ACTIONS(1268), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -47333,11 +46224,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9252] = 3, + [9497] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1277), 21, + ACTIONS(1235), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -47359,7 +46250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1279), 33, + ACTIONS(1237), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -47393,11 +46284,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9315] = 3, + [9560] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(989), 21, + ACTIONS(1243), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -47419,7 +46310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(987), 33, + ACTIONS(1245), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -47453,15 +46344,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9378] = 6, - ACTIONS(848), 1, + [9623] = 6, + ACTIONS(1260), 1, anon_sym_EQ_GT, - ACTIONS(860), 1, + ACTIONS(1309), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(850), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47477,7 +46368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(824), 17, + ACTIONS(1253), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -47495,7 +46386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 20, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47516,17 +46407,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9447] = 7, - ACTIONS(858), 1, + [9692] = 7, + ACTIONS(855), 1, anon_sym_COLON, - ACTIONS(1267), 1, + ACTIONS(1260), 1, anon_sym_EQ_GT, - ACTIONS(1314), 1, + ACTIONS(1309), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1269), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47542,7 +46433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1260), 16, + ACTIONS(1253), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -47559,7 +46450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1258), 20, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47580,17 +46471,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9518] = 7, - ACTIONS(848), 1, + [9763] = 7, + ACTIONS(797), 1, anon_sym_EQ_GT, - ACTIONS(858), 1, - anon_sym_COLON, - ACTIONS(860), 1, + ACTIONS(851), 1, anon_sym_EQ, + ACTIONS(855), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(850), 15, + ACTIONS(799), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47606,7 +46497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(824), 16, + ACTIONS(773), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -47623,7 +46514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 20, + ACTIONS(784), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47644,43 +46535,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9589] = 3, + [9834] = 6, + ACTIONS(922), 1, + anon_sym_EQ_GT, + ACTIONS(924), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1273), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1275), 33, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + ACTIONS(799), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47696,6 +46559,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(773), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -47704,20 +46577,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9652] = 7, - ACTIONS(901), 1, + ACTIONS(784), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9903] = 7, + ACTIONS(1313), 1, anon_sym_EQ, - ACTIONS(934), 1, + ACTIONS(1316), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(952), 4, + ACTIONS(1311), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(824), 13, + ACTIONS(1253), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -47731,7 +46625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(850), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47747,7 +46641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 20, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47768,22 +46662,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9723] = 7, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1318), 1, + [9974] = 6, + ACTIONS(797), 1, anon_sym_EQ_GT, + ACTIONS(900), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1316), 4, + ACTIONS(799), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(773), 17, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1260), 13, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(784), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10043] = 7, + ACTIONS(797), 1, + anon_sym_EQ_GT, + ACTIONS(849), 1, + anon_sym_COLON, + ACTIONS(851), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(799), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(773), 16, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -47795,7 +46768,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1269), 15, + ACTIONS(784), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10114] = 7, + ACTIONS(849), 1, + anon_sym_COLON, + ACTIONS(1260), 1, + anon_sym_EQ_GT, + ACTIONS(1309), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47811,7 +46815,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 20, + ACTIONS(1253), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47832,13 +46853,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9794] = 5, - ACTIONS(1271), 1, + [10185] = 6, + ACTIONS(900), 1, anon_sym_EQ, + ACTIONS(922), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1269), 15, + ACTIONS(799), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47854,11 +46877,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1260), 18, + ACTIONS(773), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, @@ -47873,7 +46895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1258), 20, + ACTIONS(784), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47894,17 +46916,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9861] = 7, - ACTIONS(862), 1, - anon_sym_COLON, - ACTIONS(1267), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, + [10254] = 6, + ACTIONS(1264), 1, anon_sym_EQ, + ACTIONS(1318), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1269), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47920,12 +46940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1260), 16, + ACTIONS(1253), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -47937,7 +46958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1258), 20, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47958,15 +46979,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9932] = 6, - ACTIONS(1267), 1, + [10323] = 7, + ACTIONS(898), 1, anon_sym_EQ_GT, - ACTIONS(1271), 1, + ACTIONS(937), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1269), 15, + ACTIONS(934), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(773), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(799), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47982,13 +47022,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1260), 17, + ACTIONS(784), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10394] = 6, + ACTIONS(1318), 1, + anon_sym_EQ_GT, + ACTIONS(1320), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1262), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1253), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -48000,7 +47085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1258), 20, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48021,20 +47106,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10001] = 7, - ACTIONS(931), 1, + [10463] = 7, + ACTIONS(900), 1, anon_sym_EQ, - ACTIONS(934), 1, + ACTIONS(949), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(929), 4, + ACTIONS(951), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(824), 13, + ACTIONS(773), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -48048,7 +47133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(850), 15, + ACTIONS(799), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48064,7 +47149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 20, + ACTIONS(784), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48085,20 +47170,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10072] = 7, - ACTIONS(1318), 1, - anon_sym_EQ_GT, - ACTIONS(1322), 1, + [10534] = 7, + ACTIONS(1264), 1, anon_sym_EQ, + ACTIONS(1316), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 4, + ACTIONS(1322), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1260), 13, + ACTIONS(1253), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -48112,7 +47197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1269), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48128,7 +47213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 20, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48149,15 +47234,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10143] = 6, - ACTIONS(1267), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, + [10605] = 7, + ACTIONS(946), 1, anon_sym_EQ, + ACTIONS(949), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1269), 15, + ACTIONS(944), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(773), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(799), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48173,25 +47277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1260), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1258), 20, + ACTIONS(784), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48212,20 +47298,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10212] = 7, - ACTIONS(1302), 1, - anon_sym_EQ_GT, - ACTIONS(1328), 1, + [10676] = 6, + ACTIONS(1264), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1325), 4, + ACTIONS(1322), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1260), 13, + ACTIONS(1253), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -48239,7 +47323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1269), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48255,7 +47339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 20, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48276,15 +47360,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10283] = 6, - ACTIONS(848), 1, - anon_sym_EQ_GT, - ACTIONS(901), 1, + [10744] = 6, + ACTIONS(1313), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(850), 15, + ACTIONS(1311), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1253), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48300,25 +47401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(824), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(835), 20, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48339,17 +47422,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10352] = 7, - ACTIONS(848), 1, - anon_sym_EQ_GT, - ACTIONS(860), 1, + [10812] = 6, + ACTIONS(1306), 1, anon_sym_EQ, - ACTIONS(862), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(850), 15, + ACTIONS(1303), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1253), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48365,24 +47463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(824), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(835), 20, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48403,20 +47484,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10423] = 7, - ACTIONS(905), 1, - anon_sym_EQ_GT, - ACTIONS(961), 1, + [10880] = 7, + ACTIONS(894), 1, anon_sym_EQ, + ACTIONS(898), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(958), 4, + ACTIONS(962), 3, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(824), 13, + ACTIONS(773), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -48430,7 +47510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(850), 15, + ACTIONS(799), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48446,7 +47526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 20, + ACTIONS(784), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48467,43 +47547,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10494] = 3, + [10950] = 7, + ACTIONS(1274), 1, + anon_sym_EQ_GT, + ACTIONS(1281), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1254), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1256), 33, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1324), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1253), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48519,23 +47589,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [10557] = 6, - ACTIONS(1271), 1, + ACTIONS(1251), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11020] = 5, + ACTIONS(1309), 1, anon_sym_EQ, - ACTIONS(1312), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1269), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48551,13 +47632,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1260), 17, + ACTIONS(1253), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -48569,7 +47650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1258), 20, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48590,15 +47671,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10626] = 6, - ACTIONS(950), 1, - anon_sym_EQ_GT, - ACTIONS(956), 1, + [11086] = 5, + ACTIONS(1320), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(850), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48614,7 +47693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(824), 17, + ACTIONS(1253), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -48632,7 +47711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 20, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48653,20 +47732,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10695] = 6, - ACTIONS(1271), 1, + [11152] = 8, + ACTIONS(894), 1, anon_sym_EQ, + ACTIONS(898), 1, + anon_sym_EQ_GT, + ACTIONS(953), 1, + anon_sym_in, + ACTIONS(1327), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1316), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1260), 13, + ACTIONS(773), 15, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -48678,7 +47760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1269), 15, + ACTIONS(799), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48694,9 +47776,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 20, + ACTIONS(784), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -48715,19 +47796,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10763] = 7, - ACTIONS(1302), 1, + [11224] = 8, + ACTIONS(1274), 1, anon_sym_EQ_GT, - ACTIONS(1308), 1, + ACTIONS(1281), 1, anon_sym_EQ, + ACTIONS(1329), 1, + anon_sym_in, + ACTIONS(1332), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1331), 3, + ACTIONS(1253), 15, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1262), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1251), 19, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11296] = 8, + ACTIONS(1274), 1, + anon_sym_EQ_GT, + ACTIONS(1303), 1, anon_sym_RBRACK, - ACTIONS(1260), 13, + ACTIONS(1306), 1, + anon_sym_EQ, + ACTIONS(1311), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1253), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -48741,7 +47886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1269), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48757,7 +47902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 20, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48778,20 +47923,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10833] = 6, - ACTIONS(1322), 1, + [11367] = 6, + ACTIONS(900), 1, anon_sym_EQ, + ACTIONS(949), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1260), 13, + ACTIONS(773), 15, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -48803,7 +47947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1269), 15, + ACTIONS(799), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48819,7 +47963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 20, + ACTIONS(784), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48840,13 +47984,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10901] = 5, - ACTIONS(1310), 1, + [11434] = 6, + ACTIONS(1264), 1, anon_sym_EQ, + ACTIONS(1316), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1269), 15, + ACTIONS(1253), 15, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48862,13 +48024,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1260), 17, - sym__automatic_semicolon, + ACTIONS(1251), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11501] = 7, + ACTIONS(1281), 1, + anon_sym_EQ, + ACTIONS(1329), 1, + anon_sym_in, + ACTIONS(1332), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1253), 15, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -48880,9 +48071,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1258), 20, + ACTIONS(1262), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1251), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -48901,19 +48107,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10967] = 7, - ACTIONS(905), 1, + [11570] = 8, + ACTIONS(898), 1, anon_sym_EQ_GT, - ACTIONS(907), 1, + ACTIONS(934), 1, + anon_sym_RBRACK, + ACTIONS(937), 1, anon_sym_EQ, + ACTIONS(944), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(964), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(824), 13, + ACTIONS(773), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -48927,7 +48133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(850), 15, + ACTIONS(799), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48943,7 +48149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 20, + ACTIONS(784), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48964,23 +48170,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11037] = 8, - ACTIONS(1302), 1, - anon_sym_EQ_GT, - ACTIONS(1308), 1, + [11641] = 6, + ACTIONS(1281), 1, anon_sym_EQ, - ACTIONS(1334), 1, - anon_sym_in, - ACTIONS(1337), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1260), 15, - sym__ternary_qmark, + ACTIONS(1324), 3, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1253), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -48992,7 +48194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1269), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -49008,8 +48210,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 19, + ACTIONS(1251), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -49028,18 +48231,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11109] = 6, - ACTIONS(1328), 1, + [11708] = 7, + ACTIONS(1303), 1, + anon_sym_RBRACK, + ACTIONS(1306), 1, anon_sym_EQ, + ACTIONS(1311), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1325), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1260), 13, + ACTIONS(1253), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -49053,7 +48255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1269), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -49069,7 +48271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 20, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49090,23 +48292,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11177] = 8, - ACTIONS(905), 1, - anon_sym_EQ_GT, - ACTIONS(907), 1, + [11776] = 6, + ACTIONS(1217), 1, anon_sym_EQ, - ACTIONS(991), 1, - anon_sym_in, - ACTIONS(1339), 1, - anon_sym_of, + ACTIONS(1219), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(824), 15, + ACTIONS(773), 14, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -49118,7 +48315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(850), 15, + ACTIONS(799), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -49134,8 +48331,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 19, + ACTIONS(784), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -49154,13 +48352,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11249] = 5, - ACTIONS(1314), 1, + [11842] = 8, + ACTIONS(1264), 1, anon_sym_EQ, + ACTIONS(1316), 1, + anon_sym_EQ_GT, + ACTIONS(1329), 1, + anon_sym_in, + ACTIONS(1332), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1269), 15, + ACTIONS(1253), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -49176,13 +48394,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1260), 17, - sym__automatic_semicolon, + ACTIONS(1251), 19, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11912] = 6, + ACTIONS(1264), 1, + anon_sym_EQ, + ACTIONS(1334), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1253), 14, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -49194,7 +48437,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1258), 20, + ACTIONS(1262), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49215,17 +48474,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11315] = 6, - ACTIONS(1308), 1, + [11978] = 8, + ACTIONS(900), 1, anon_sym_EQ, + ACTIONS(949), 1, + anon_sym_EQ_GT, + ACTIONS(953), 1, + anon_sym_in, + ACTIONS(1327), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1331), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1260), 13, + ACTIONS(773), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -49239,7 +48500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1269), 15, + ACTIONS(799), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -49255,9 +48516,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 20, + ACTIONS(784), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -49276,21 +48536,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11382] = 8, - ACTIONS(905), 1, + [12048] = 6, + ACTIONS(1334), 1, anon_sym_EQ_GT, - ACTIONS(929), 1, - anon_sym_COMMA, - ACTIONS(958), 1, - anon_sym_RBRACK, - ACTIONS(961), 1, + ACTIONS(1336), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(824), 13, + ACTIONS(1253), 14, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -49302,7 +48559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(850), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -49318,7 +48575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 20, + ACTIONS(1251), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49339,19 +48596,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11453] = 6, - ACTIONS(901), 1, + [12114] = 6, + ACTIONS(900), 1, anon_sym_EQ, - ACTIONS(934), 1, + ACTIONS(1219), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(824), 15, + ACTIONS(773), 14, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -49363,7 +48619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(850), 15, + ACTIONS(799), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -49379,7 +48635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 20, + ACTIONS(784), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49400,19 +48656,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11520] = 6, - ACTIONS(1271), 1, + [12180] = 7, + ACTIONS(1264), 1, anon_sym_EQ, - ACTIONS(1318), 1, - anon_sym_EQ_GT, + ACTIONS(1329), 1, + anon_sym_in, + ACTIONS(1332), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1260), 15, + ACTIONS(1253), 13, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -49424,7 +48680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1269), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -49440,9 +48696,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 20, + ACTIONS(1251), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -49461,21 +48716,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11587] = 7, - ACTIONS(1308), 1, + [12247] = 5, + ACTIONS(1336), 1, anon_sym_EQ, - ACTIONS(1334), 1, - anon_sym_in, - ACTIONS(1337), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1260), 15, + ACTIONS(1253), 14, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -49487,7 +48737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1269), 15, + ACTIONS(1262), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -49503,8 +48753,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 19, + ACTIONS(1251), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -49523,633 +48774,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11656] = 8, - ACTIONS(1302), 1, - anon_sym_EQ_GT, - ACTIONS(1320), 1, - anon_sym_COMMA, - ACTIONS(1325), 1, - anon_sym_RBRACK, - ACTIONS(1328), 1, - anon_sym_EQ, + [12310] = 7, + ACTIONS(396), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + STATE(519), 1, + sym_arguments, + STATE(558), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1260), 13, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1269), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 20, + ACTIONS(1338), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11727] = 7, - ACTIONS(1320), 1, - anon_sym_COMMA, - ACTIONS(1325), 1, - anon_sym_RBRACK, - ACTIONS(1328), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1260), 13, + ACTIONS(1340), 27, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1269), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11795] = 8, - ACTIONS(901), 1, - anon_sym_EQ, - ACTIONS(934), 1, - anon_sym_EQ_GT, - ACTIONS(991), 1, - anon_sym_in, - ACTIONS(1339), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(824), 13, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + [12370] = 10, + ACTIONS(396), 1, anon_sym_BQUOTE, - ACTIONS(850), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 19, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11865] = 6, - ACTIONS(1236), 1, - anon_sym_EQ, - ACTIONS(1238), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(824), 14, - sym__ternary_qmark, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1348), 1, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(850), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11931] = 6, - ACTIONS(901), 1, - anon_sym_EQ, - ACTIONS(1238), 1, - anon_sym_EQ_GT, + STATE(519), 1, + sym_arguments, + STATE(558), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(824), 14, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(850), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(835), 20, + ACTIONS(1338), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11997] = 6, - ACTIONS(1341), 1, - anon_sym_EQ, - ACTIONS(1343), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1260), 14, + ACTIONS(1340), 24, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1269), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12063] = 8, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1318), 1, - anon_sym_EQ_GT, - ACTIONS(1334), 1, - anon_sym_in, - ACTIONS(1337), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1260), 13, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1269), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 19, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12133] = 6, - ACTIONS(1271), 1, + [12436] = 5, + ACTIONS(530), 1, anon_sym_EQ, - ACTIONS(1343), 1, - anon_sym_EQ_GT, + ACTIONS(1350), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1260), 14, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1269), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 20, + ACTIONS(518), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12199] = 7, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1334), 1, - anon_sym_in, - ACTIONS(1337), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1260), 13, + ACTIONS(516), 29, sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1269), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 19, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12266] = 5, - ACTIONS(1341), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1260), 14, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1269), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1258), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12329] = 10, - ACTIONS(407), 1, + [12492] = 8, + ACTIONS(396), 1, anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1348), 1, sym_optional_chain, + STATE(558), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1345), 12, + ACTIONS(1352), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50162,11 +48961,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1347), 22, + ACTIONS(1354), 25, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -50185,24 +48985,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [12395] = 9, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [12553] = 8, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 12, + ACTIONS(1356), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50215,7 +49014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1361), 24, + ACTIONS(1358), 25, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50240,27 +49039,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [12459] = 10, - ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, + [12614] = 4, + ACTIONS(1264), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1363), 12, + ACTIONS(1251), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50273,16 +49059,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1365), 22, + ACTIONS(1253), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -50296,15 +49086,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [12525] = 5, - ACTIONS(523), 1, - anon_sym_EQ, - ACTIONS(1367), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [12667] = 4, + ACTIONS(1362), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(517), 12, + ACTIONS(508), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50317,7 +49108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(515), 29, + ACTIONS(506), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50347,16 +49138,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12581] = 5, - ACTIONS(1349), 1, + [12720] = 9, + ACTIONS(1342), 1, anon_sym_LPAREN, - STATE(518), 1, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + STATE(550), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1369), 12, - anon_sym_STAR, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1364), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -50368,7 +49168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1371), 28, + ACTIONS(1366), 23, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50377,6 +49177,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [12783] = 4, + ACTIONS(1350), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(518), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(516), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, @@ -50397,21 +49241,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12636] = 8, - ACTIONS(1349), 1, + [12836] = 5, + ACTIONS(396), 1, + anon_sym_BQUOTE, + STATE(558), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1352), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1354), 28, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1351), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1353), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1373), 1, sym_optional_chain, - STATE(518), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [12891] = 9, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + STATE(550), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1369), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1370), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50424,7 +49321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1371), 25, + ACTIONS(1372), 23, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50447,16 +49344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12697] = 4, - ACTIONS(1375), 1, - sym__automatic_semicolon, + [12954] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(571), 12, + ACTIONS(1374), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50469,7 +49362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(569), 29, + ACTIONS(1376), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50499,61 +49392,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12750] = 3, + [13004] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1136), 16, + ACTIONS(1378), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1380), 29, + sym__ternary_qmark, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1138), 26, - anon_sym_export, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [12801] = 4, - ACTIONS(1271), 1, - anon_sym_EQ, + [13054] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1258), 12, + ACTIONS(1382), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50566,7 +49456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1260), 29, + ACTIONS(1384), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50596,13 +49486,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12854] = 4, - ACTIONS(1367), 1, - sym__automatic_semicolon, + [13104] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(517), 12, + ACTIONS(1386), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50615,7 +49503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(515), 29, + ACTIONS(1388), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50645,11 +49533,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12907] = 3, + [13154] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(563), 12, + ACTIONS(1390), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50662,7 +49550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(565), 29, + ACTIONS(1392), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50692,11 +49580,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12957] = 3, + [13204] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1377), 12, + ACTIONS(1394), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50709,7 +49597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1379), 29, + ACTIONS(1396), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50739,13 +49627,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13007] = 4, - ACTIONS(1385), 1, + [13254] = 4, + ACTIONS(1402), 1, sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1381), 13, + ACTIONS(1398), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50759,7 +49647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_instanceof, - ACTIONS(1383), 27, + ACTIONS(1400), 27, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50787,11 +49675,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13059] = 3, + [13306] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1387), 12, + ACTIONS(1404), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50804,7 +49692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1389), 29, + ACTIONS(1406), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50834,11 +49722,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13109] = 3, + [13356] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1391), 12, + ACTIONS(508), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50851,7 +49739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1393), 29, + ACTIONS(506), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50881,11 +49769,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13159] = 3, + [13406] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(571), 12, + ACTIONS(1408), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50898,7 +49786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(569), 29, + ACTIONS(1410), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50928,77 +49816,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13209] = 22, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1409), 1, - anon_sym_PIPE, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, + [13456] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1412), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1397), 10, + ACTIONS(1414), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [13297] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13506] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1423), 12, + ACTIONS(524), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51011,7 +49880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1425), 29, + ACTIONS(522), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51041,34 +49910,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13347] = 13, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, + [13556] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1416), 12, anon_sym_STAR, - anon_sym_SLASH, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -51077,32 +49924,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 18, + ACTIONS(1418), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [13417] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13606] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(615), 12, + ACTIONS(552), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51115,7 +49974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(613), 29, + ACTIONS(554), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51145,11 +50004,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13467] = 3, + [13656] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1427), 12, + ACTIONS(542), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51162,7 +50021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1429), 29, + ACTIONS(544), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51192,11 +50051,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13517] = 3, + [13706] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1431), 12, + ACTIONS(562), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51209,7 +50068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1433), 29, + ACTIONS(564), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51239,29 +50098,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13567] = 11, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, + [13756] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 12, + ACTIONS(1420), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51274,31 +50115,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 19, + ACTIONS(1422), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [13633] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13806] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1435), 12, + ACTIONS(602), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51311,7 +50162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1437), 29, + ACTIONS(604), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51341,81 +50192,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13683] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, + [13856] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(572), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1439), 6, + ACTIONS(574), 29, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - [13779] = 3, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13906] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 12, + ACTIONS(582), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51428,7 +50256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1453), 29, + ACTIONS(584), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51458,125 +50286,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13829] = 18, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, + [13956] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(592), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1409), 4, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 13, + ACTIONS(594), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [13909] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1228), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1230), 26, - anon_sym_export, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [13959] = 3, + [14006] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1140), 15, + ACTIONS(1149), 16, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACK, - sym_glimmer_opening_tag, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BANG, @@ -51587,13 +50354,12 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1142), 26, + ACTIONS(1151), 25, anon_sym_export, anon_sym_import, anon_sym_let, anon_sym_await, anon_sym_yield, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -51614,78 +50380,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14009] = 23, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1397), 9, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [14099] = 3, + [14056] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1455), 12, + ACTIONS(1251), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51698,7 +50397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1457), 29, + ACTIONS(1253), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51728,81 +50427,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14149] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1453), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [14245] = 3, + [14106] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1459), 12, + ACTIONS(1352), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51815,7 +50444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1461), 29, + ACTIONS(1354), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51845,139 +50474,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14295] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1463), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [14391] = 14, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, + [14156] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1424), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1411), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 18, + ACTIONS(1426), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [14463] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [14206] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1465), 12, + ACTIONS(1428), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51990,7 +50538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1467), 29, + ACTIONS(1430), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -52020,18 +50568,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14513] = 5, - ACTIONS(1476), 1, - anon_sym_EQ, + [14256] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1473), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1469), 12, + ACTIONS(1432), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52044,13 +50585,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 24, + ACTIONS(1434), 29, sym__ternary_qmark, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -52069,149 +50615,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14567] = 24, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, + [14306] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1436), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1397), 8, + ACTIONS(1438), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - [14659] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1478), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [14755] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [14356] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1480), 12, + ACTIONS(1440), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52224,7 +50679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1478), 29, + ACTIONS(1442), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -52254,11 +50709,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14805] = 3, + [14406] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1482), 12, + ACTIONS(1444), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52271,7 +50726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1484), 29, + ACTIONS(1446), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -52301,81 +50756,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14855] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, + [14456] = 5, + ACTIONS(1455), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1486), 6, + ACTIONS(1452), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_RBRACK, - [14951] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1488), 12, + ACTIONS(1448), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52388,18 +50780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1490), 29, + ACTIONS(1450), 24, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -52418,11 +50805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15001] = 3, + [14510] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1492), 12, + ACTIONS(1457), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52435,7 +50822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1494), 29, + ACTIONS(1459), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -52465,11 +50852,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15051] = 3, + [14560] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1496), 12, + ACTIONS(1461), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52482,7 +50869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1498), 29, + ACTIONS(1463), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -52512,11 +50899,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15101] = 3, + [14610] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1500), 12, + ACTIONS(1465), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52529,7 +50916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1502), 29, + ACTIONS(1467), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -52559,18 +50946,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15151] = 5, - ACTIONS(523), 1, - anon_sym_EQ, + [14660] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1504), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(519), 12, + ACTIONS(1469), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52583,13 +50963,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(521), 24, + ACTIONS(1471), 29, sym__ternary_qmark, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -52608,75 +50993,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15205] = 20, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, + [14710] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1469), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1409), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1397), 11, + ACTIONS(1471), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [15289] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [14760] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1507), 12, + ACTIONS(1473), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52689,7 +51057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1509), 29, + ACTIONS(1475), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -52719,11 +51087,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15339] = 3, + [14810] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1511), 12, + ACTIONS(1469), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52736,7 +51104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1513), 29, + ACTIONS(1471), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -52766,81 +51134,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15389] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, + [14860] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1515), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [15485] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1517), 12, + ACTIONS(1469), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52853,7 +51151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1519), 29, + ACTIONS(1471), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -52883,11 +51181,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15535] = 3, + [14910] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1521), 12, + ACTIONS(536), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52900,7 +51198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1523), 29, + ACTIONS(534), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -52930,58 +51228,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15585] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1036), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1038), 26, - anon_sym_export, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [15635] = 3, + [14960] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1525), 12, + ACTIONS(1477), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52994,7 +51245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1527), 29, + ACTIONS(1479), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -53024,11 +51275,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15685] = 3, + [15010] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(597), 12, + ACTIONS(1481), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53041,7 +51292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(595), 29, + ACTIONS(1483), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -53071,268 +51322,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15735] = 3, + [15060] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1024), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1026), 26, - anon_sym_export, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [15785] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1485), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1519), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [15881] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1523), 6, + ACTIONS(1487), 29, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - [15977] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1529), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [16073] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [15110] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1531), 12, + ACTIONS(1489), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53345,7 +51386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1533), 29, + ACTIONS(1491), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -53375,11 +51416,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16123] = 3, + [15160] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(601), 12, + ACTIONS(1473), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53392,7 +51433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(599), 29, + ACTIONS(1475), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -53422,81 +51463,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16173] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, + [15210] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1494), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [16269] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1535), 12, + ACTIONS(1493), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53509,7 +51480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1537), 29, + ACTIONS(1495), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -53539,11 +51510,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16319] = 3, + [15260] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1539), 12, + ACTIONS(1497), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53556,7 +51527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1541), 29, + ACTIONS(1499), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -53586,18 +51557,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16369] = 5, - ACTIONS(1550), 1, + [15310] = 5, + ACTIONS(1508), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1547), 4, + ACTIONS(1505), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1543), 12, + ACTIONS(1501), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53610,7 +51581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1545), 24, + ACTIONS(1503), 24, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_LPAREN, @@ -53635,81 +51606,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16423] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1552), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [16519] = 3, + [15364] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1554), 12, + ACTIONS(612), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53722,7 +51623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1556), 29, + ACTIONS(614), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -53752,11 +51653,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16569] = 3, + [15414] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1558), 12, + ACTIONS(1510), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53769,7 +51670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1560), 29, + ACTIONS(1512), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -53799,11 +51700,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16619] = 3, + [15464] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1562), 12, + ACTIONS(1514), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53816,7 +51717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1564), 29, + ACTIONS(1516), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -53846,11 +51747,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16669] = 3, + [15514] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1566), 12, + ACTIONS(1518), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53863,7 +51764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1568), 29, + ACTIONS(1520), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -53893,11 +51794,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16719] = 3, + [15564] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1570), 12, + ACTIONS(1522), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53910,7 +51811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1572), 29, + ACTIONS(1524), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -53940,11 +51841,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16769] = 3, + [15614] = 5, + ACTIONS(530), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1574), 12, + ACTIONS(1526), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(526), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53957,18 +51865,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1576), 29, + ACTIONS(528), 24, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -53987,11 +51890,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16819] = 3, + [15668] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1578), 12, + ACTIONS(1529), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54004,7 +51907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1580), 29, + ACTIONS(1531), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -54034,11 +51937,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16869] = 3, + [15718] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1570), 12, + ACTIONS(1533), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54051,7 +51954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1572), 29, + ACTIONS(1535), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -54081,11 +51984,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16919] = 3, + [15768] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1582), 12, + ACTIONS(1537), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54098,7 +52001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1584), 29, + ACTIONS(1539), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -54128,17 +52031,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16969] = 6, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1373), 1, - sym_optional_chain, + [15818] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1582), 12, + ACTIONS(1541), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54151,7 +52048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1584), 26, + ACTIONS(1543), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -54161,7 +52058,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -54178,11 +52078,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17025] = 3, + [15868] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1570), 12, + ACTIONS(514), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54195,7 +52095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1572), 29, + ACTIONS(512), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -54225,81 +52125,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17075] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1580), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [17171] = 3, + [15918] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1258), 12, + ACTIONS(1545), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54312,7 +52142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1260), 29, + ACTIONS(1547), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -54342,11 +52172,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17221] = 3, + [15968] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(577), 12, + ACTIONS(1549), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54359,7 +52189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(579), 29, + ACTIONS(1551), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -54389,62 +52219,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17271] = 22, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [16018] = 20, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1565), 1, + anon_sym_PIPE, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1445), 1, - anon_sym_PIPE, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1397), 10, + ACTIONS(1555), 12, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -54454,12 +52279,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, - [17359] = 3, + anon_sym_BQUOTE, + [16101] = 4, + ACTIONS(1455), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1586), 12, + ACTIONS(1448), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54472,15 +52301,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1588), 29, + ACTIONS(1450), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -54502,81 +52329,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17409] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [16152] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1581), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1591), 1, sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1590), 6, + ACTIONS(1579), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [17505] = 3, + anon_sym_BQUOTE, + [16245] = 4, + ACTIONS(1508), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(587), 12, + ACTIONS(1501), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54589,15 +52416,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(589), 29, + ACTIONS(1503), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -54619,58 +52444,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17555] = 3, + [16296] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(543), 12, - anon_sym_STAR, - anon_sym_in, + ACTIONS(1013), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1015), 25, + anon_sym_export, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(545), 29, - sym__ternary_qmark, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [16345] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1017), 15, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17605] = 3, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1019), 25, + anon_sym_export, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [16394] = 10, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(533), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1565), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54683,182 +52568,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(535), 29, + ACTIONS(1555), 20, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17655] = 3, + [16457] = 21, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1570), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1572), 29, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1555), 11, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [16542] = 25, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, anon_sym_AMP_AMP, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1585), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [17705] = 3, + ACTIONS(1591), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(607), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(609), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1593), 7, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_BQUOTE, + [16635] = 25, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, anon_sym_AMP_AMP, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1585), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [17755] = 3, + ACTIONS(1591), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1592), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1594), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1595), 7, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_BQUOTE, + [16728] = 10, + ACTIONS(81), 1, + anon_sym_BQUOTE, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, anon_sym_DOT, + ACTIONS(1603), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [17805] = 3, + STATE(718), 1, + sym_arguments, + STATE(726), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1596), 12, + ACTIONS(1338), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54871,20 +52820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1598), 29, + ACTIONS(1340), 21, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -54900,51 +52842,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [17855] = 16, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [16791] = 22, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1413), 1, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 7, + ACTIONS(1575), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1397), 16, + ACTIONS(1573), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1555), 10, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -54952,179 +52904,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [16878] = 25, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, anon_sym_AMP_AMP, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1575), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [17931] = 3, + ACTIONS(1479), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [16971] = 13, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(621), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1567), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1565), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(623), 29, + ACTIONS(1555), 19, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17981] = 3, + [17040] = 19, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(553), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1565), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(555), 29, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1555), 12, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18031] = 21, - ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [17121] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1409), 1, - anon_sym_PIPE, - ACTIONS(1413), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1397), 11, - sym__ternary_qmark, + ACTIONS(1438), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [18117] = 3, + anon_sym_BQUOTE, + [17214] = 4, + ACTIONS(530), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1600), 12, + ACTIONS(526), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55137,15 +53180,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1602), 29, + ACTIONS(528), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -55167,30 +53208,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18167] = 11, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [17265] = 12, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1415), 1, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, anon_sym_STAR_STAR, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 12, + ACTIONS(1553), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1565), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -55199,10 +53241,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 19, + ACTIONS(1555), 19, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -55215,112 +53256,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [18233] = 3, + anon_sym_BQUOTE, + [17332] = 25, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1604), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1606), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1487), 7, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_BQUOTE, + [17425] = 25, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, anon_sym_AMP_AMP, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1585), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18283] = 3, + ACTIONS(1591), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1608), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1610), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1605), 7, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_BQUOTE, + [17518] = 10, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18333] = 3, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1612), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1565), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55333,196 +53431,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1614), 29, + ACTIONS(1555), 20, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18383] = 3, + [17581] = 25, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1616), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1618), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1499), 7, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_BQUOTE, + [17674] = 17, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1569), 1, anon_sym_PERCENT, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18433] = 3, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(615), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1565), 4, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(613), 28, - sym__automatic_semicolon, + ACTIONS(1555), 14, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_while, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18482] = 3, + [17751] = 25, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(601), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(599), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1418), 7, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_while, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [17844] = 25, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, anon_sym_AMP_AMP, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1567), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1575), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1512), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_BQUOTE, - [18531] = 10, - ACTIONS(83), 1, + [17937] = 7, + ACTIONS(81), 1, anon_sym_BQUOTE, - ACTIONS(1620), 1, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(1626), 1, - sym_optional_chain, + STATE(718), 1, + sym_arguments, + STATE(726), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1345), 12, + ACTIONS(1338), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55535,13 +53741,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1347), 19, + ACTIONS(1340), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -55555,13 +53764,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [18594] = 4, - ACTIONS(523), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [17994] = 4, + ACTIONS(1281), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(519), 12, + ACTIONS(1251), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55574,7 +53785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(521), 27, + ACTIONS(1253), 27, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -55602,164 +53813,437 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18645] = 4, - ACTIONS(1476), 1, - anon_sym_EQ, + [18045] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1469), 12, - anon_sym_STAR, - anon_sym_in, + ACTIONS(1001), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LT, - anon_sym_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1003), 25, + anon_sym_export, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [18094] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1045), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1047), 25, + anon_sym_export, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [18143] = 23, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1559), 1, anon_sym_GT_GT, + ACTIONS(1563), 1, anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, anon_sym_PIPE, + STATE(550), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 27, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1555), 9, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [18232] = 25, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, anon_sym_AMP_AMP, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1567), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1575), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1607), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_BQUOTE, - [18696] = 4, - ACTIONS(1308), 1, - anon_sym_EQ, + [18325] = 15, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1258), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1565), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1260), 27, + ACTIONS(1555), 17, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18747] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(597), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + [18398] = 25, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1559), 1, anon_sym_GT_GT, + ACTIONS(1563), 1, anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(595), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1609), 7, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_while, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [18491] = 21, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1565), 1, + anon_sym_PIPE, + ACTIONS(1569), 1, anon_sym_PERCENT, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1585), 1, + anon_sym_CARET, + STATE(550), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1575), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18796] = 9, - ACTIONS(83), 1, + ACTIONS(1555), 11, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1620), 1, + [18576] = 8, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1611), 1, sym_optional_chain, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 12, + ACTIONS(1356), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55772,7 +54256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1361), 21, + ACTIONS(1358), 22, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -55794,27 +54278,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [18857] = 10, - ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1620), 1, + [18634] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(741), 2, - sym_template_string, + ACTIONS(1553), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1575), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1613), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [18726] = 9, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_DOT, + ACTIONS(1611), 1, + sym_optional_chain, + STATE(654), 1, sym_arguments, - ACTIONS(1363), 12, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1370), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55827,7 +54376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1365), 19, + ACTIONS(1372), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -55847,11 +54396,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [18920] = 3, + anon_sym_BQUOTE, + [18786] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(571), 12, + ACTIONS(1404), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55864,16 +54414,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(569), 28, + ACTIONS(1406), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55893,13 +54442,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18969] = 4, - ACTIONS(1630), 1, - sym__automatic_semicolon, + [18834] = 4, + ACTIONS(530), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(571), 12, + ACTIONS(526), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55912,15 +54461,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(569), 27, + ACTIONS(528), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_while, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55940,13 +54488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19020] = 4, - ACTIONS(1632), 1, + [18884] = 5, + ACTIONS(520), 1, sym__automatic_semicolon, + ACTIONS(530), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(517), 12, + ACTIONS(518), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55959,15 +54509,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(515), 27, + ACTIONS(516), 25, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_while, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55987,13 +54535,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19071] = 4, - ACTIONS(1550), 1, + [18936] = 4, + ACTIONS(1455), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1543), 12, + ACTIONS(1448), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56006,16 +54554,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1545), 27, + ACTIONS(1450), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -56034,857 +54581,605 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19122] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [18986] = 9, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1364), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1366), 20, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [19046] = 4, + ACTIONS(1508), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1501), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1634), 4, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1503), 26, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [19216] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, - anon_sym_GT_GT, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1650), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1666), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, - sym__ternary_qmark, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [19096] = 6, + ACTIONS(530), 1, + anon_sym_EQ, + ACTIONS(532), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(516), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(526), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1654), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1660), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1529), 4, - sym__automatic_semicolon, + ACTIONS(528), 23, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [19310] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1678), 1, - anon_sym_GT_GT, - ACTIONS(1682), 1, - anon_sym_AMP, - ACTIONS(1684), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1686), 1, - anon_sym_PIPE, - ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1700), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1702), 1, - sym__ternary_qmark, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [19150] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1670), 2, + ACTIONS(1412), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1680), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1688), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1696), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1698), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1672), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1694), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1463), 4, + ACTIONS(1414), 27, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - [19404] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, - anon_sym_GT_GT, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1650), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1666), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, - sym__ternary_qmark, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [19198] = 8, + ACTIONS(81), 1, + anon_sym_BQUOTE, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_DOT, + ACTIONS(1603), 1, + sym_optional_chain, + STATE(726), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1352), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1654), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, + ACTIONS(1354), 22, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(741), 2, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [19256] = 5, + ACTIONS(81), 1, + anon_sym_BQUOTE, + STATE(726), 1, sym_template_string, - sym_arguments, - ACTIONS(1638), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1352), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1660), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1463), 4, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1354), 25, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [19498] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1678), 1, - anon_sym_GT_GT, - ACTIONS(1682), 1, - anon_sym_AMP, - ACTIONS(1684), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1686), 1, - anon_sym_PIPE, - ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1700), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1702), 1, - sym__ternary_qmark, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [19308] = 4, + ACTIONS(1264), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1670), 2, + ACTIONS(1251), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1680), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1688), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1696), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1698), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1672), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1694), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1494), 4, + ACTIONS(1253), 26, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - [19592] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, - anon_sym_GT_GT, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1650), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1666), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, - sym__ternary_qmark, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [19358] = 10, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_DOT, + ACTIONS(1611), 1, + sym_optional_chain, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1565), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1654), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1660), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1494), 4, + ACTIONS(1555), 18, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [19686] = 16, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(1626), 1, - sym_optional_chain, - ACTIONS(1644), 1, - anon_sym_GT_GT, - ACTIONS(1656), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1658), 1, - anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [19419] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(582), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 14, + ACTIONS(584), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [19760] = 26, - ACTIONS(83), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1620), 1, + [19466] = 25, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1674), 1, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1623), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1625), 1, anon_sym_PIPE_PIPE, - ACTIONS(1678), 1, + ACTIONS(1627), 1, anon_sym_GT_GT, - ACTIONS(1682), 1, + ACTIONS(1631), 1, anon_sym_AMP, - ACTIONS(1684), 1, + ACTIONS(1633), 1, anon_sym_CARET, - ACTIONS(1686), 1, + ACTIONS(1635), 1, anon_sym_PIPE, - ACTIONS(1690), 1, + ACTIONS(1639), 1, anon_sym_PERCENT, - ACTIONS(1692), 1, - anon_sym_STAR_STAR, - ACTIONS(1700), 1, + ACTIONS(1647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1702), 1, + ACTIONS(1649), 1, sym__ternary_qmark, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1670), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1680), 2, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1688), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1696), 2, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1698), 2, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1672), 3, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1694), 3, + ACTIONS(1641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1439), 4, + ACTIONS(1512), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, - [19854] = 16, - ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1620), 1, + [19557] = 10, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1678), 1, - anon_sym_GT_GT, - ACTIONS(1690), 1, - anon_sym_PERCENT, - ACTIONS(1692), 1, + ACTIONS(1617), 1, anon_sym_STAR_STAR, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1670), 2, + ACTIONS(1565), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1680), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1688), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 14, + ACTIONS(1555), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [19928] = 26, - ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(1626), 1, - sym_optional_chain, - ACTIONS(1640), 1, - anon_sym_AMP_AMP, - ACTIONS(1642), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, - anon_sym_GT_GT, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, - anon_sym_PERCENT, - ACTIONS(1658), 1, - anon_sym_STAR_STAR, - ACTIONS(1666), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, - sym__ternary_qmark, + [19618] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1352), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1662), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1664), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1660), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1515), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [20022] = 21, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1409), 1, - anon_sym_PIPE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(1626), 1, - sym_optional_chain, - ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1656), 1, - anon_sym_PERCENT, - ACTIONS(1658), 1, - anon_sym_STAR_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1636), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1654), 2, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1660), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1397), 9, + ACTIONS(1354), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [20106] = 11, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1692), 1, - anon_sym_STAR_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1397), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [20170] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(1626), 1, - sym_optional_chain, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1678), 1, - anon_sym_GT_GT, - ACTIONS(1682), 1, - anon_sym_AMP, - ACTIONS(1684), 1, - anon_sym_CARET, - ACTIONS(1686), 1, - anon_sym_PIPE, - ACTIONS(1690), 1, - anon_sym_PERCENT, - ACTIONS(1692), 1, - anon_sym_STAR_STAR, - ACTIONS(1700), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1702), 1, - sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1670), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1680), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1688), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1696), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1698), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1672), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1694), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1478), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - [20264] = 3, + anon_sym_BQUOTE, + [19665] = 4, + ACTIONS(1651), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1592), 12, + ACTIONS(1398), 14, anon_sym_STAR, anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -56895,15 +55190,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1594), 27, + anon_sym_instanceof, + ACTIONS(1400), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56919,233 +55212,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20312] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, + [19714] = 21, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1640), 1, - anon_sym_AMP_AMP, - ACTIONS(1642), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1627), 1, anon_sym_GT_GT, - ACTIONS(1648), 1, + ACTIONS(1631), 1, anon_sym_AMP, - ACTIONS(1650), 1, + ACTIONS(1633), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1635), 1, anon_sym_PIPE, - ACTIONS(1656), 1, + ACTIONS(1639), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, - anon_sym_STAR_STAR, - ACTIONS(1666), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, - sym__ternary_qmark, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1646), 2, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1654), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1660), 3, + ACTIONS(1641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1453), 4, + ACTIONS(1555), 9, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [20406] = 22, - ACTIONS(83), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1620), 1, + [19797] = 22, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1678), 1, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1623), 1, + anon_sym_AMP_AMP, + ACTIONS(1627), 1, anon_sym_GT_GT, - ACTIONS(1682), 1, + ACTIONS(1631), 1, anon_sym_AMP, - ACTIONS(1684), 1, + ACTIONS(1633), 1, anon_sym_CARET, - ACTIONS(1686), 1, + ACTIONS(1635), 1, anon_sym_PIPE, - ACTIONS(1690), 1, + ACTIONS(1639), 1, anon_sym_PERCENT, - ACTIONS(1692), 1, - anon_sym_STAR_STAR, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1670), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1680), 2, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1688), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1696), 2, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1698), 2, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1672), 3, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1694), 3, + ACTIONS(1641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1397), 8, + ACTIONS(1555), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [20492] = 26, - ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1620), 1, + [19882] = 13, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1678), 1, - anon_sym_GT_GT, - ACTIONS(1682), 1, - anon_sym_AMP, - ACTIONS(1684), 1, - anon_sym_CARET, - ACTIONS(1686), 1, - anon_sym_PIPE, - ACTIONS(1690), 1, - anon_sym_PERCENT, - ACTIONS(1692), 1, + ACTIONS(1617), 1, anon_sym_STAR_STAR, - ACTIONS(1700), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1702), 1, - sym__ternary_qmark, + ACTIONS(1639), 1, + anon_sym_PERCENT, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1670), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1680), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1688), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1696), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1698), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1672), 3, + ACTIONS(1565), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1694), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1486), 4, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1555), 17, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, - [20586] = 11, - ACTIONS(83), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(1626), 1, - sym_optional_chain, - ACTIONS(1658), 1, - anon_sym_STAR_STAR, + [19949] = 5, + ACTIONS(596), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 12, + ACTIONS(588), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(592), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57158,556 +55416,359 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 17, - sym__automatic_semicolon, + ACTIONS(594), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [20650] = 28, - ACTIONS(83), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(1626), 1, - sym_optional_chain, - ACTIONS(1640), 1, - anon_sym_AMP_AMP, - ACTIONS(1642), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, - anon_sym_GT_GT, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, - anon_sym_PERCENT, - ACTIONS(1658), 1, - anon_sym_STAR_STAR, - ACTIONS(1666), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, - sym__ternary_qmark, - ACTIONS(1704), 1, - anon_sym_COMMA, - STATE(1290), 1, - aux_sym_sequence_expression_repeat1, + [20000] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1514), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1662), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1664), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1706), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1660), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [20748] = 23, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(1626), 1, - sym_optional_chain, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_GT_GT, - ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1684), 1, - anon_sym_CARET, - ACTIONS(1686), 1, anon_sym_PIPE, - ACTIONS(1690), 1, - anon_sym_PERCENT, - ACTIONS(1692), 1, - anon_sym_STAR_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1670), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1680), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1696), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1698), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1672), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1694), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1397), 7, + ACTIONS(1516), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [20836] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, - anon_sym_GT_GT, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1650), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1666), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, - sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1636), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1662), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1664), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1660), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1519), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [20930] = 14, - ACTIONS(83), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(1626), 1, - sym_optional_chain, - ACTIONS(1690), 1, - anon_sym_PERCENT, - ACTIONS(1692), 1, - anon_sym_STAR_STAR, + [20047] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1670), 2, + ACTIONS(592), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1688), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 16, + ACTIONS(594), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [21000] = 26, - ACTIONS(83), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1620), 1, + [20094] = 19, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1640), 1, - anon_sym_AMP_AMP, - ACTIONS(1642), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1627), 1, anon_sym_GT_GT, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, + ACTIONS(1639), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, - anon_sym_STAR_STAR, - ACTIONS(1666), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, - sym__ternary_qmark, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1565), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1646), 2, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1654), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1660), 3, + ACTIONS(1641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1580), 4, + ACTIONS(1555), 10, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [21094] = 20, - ACTIONS(83), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1620), 1, + [20173] = 20, + ACTIONS(1565), 1, + anon_sym_PIPE, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1678), 1, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1627), 1, anon_sym_GT_GT, - ACTIONS(1690), 1, + ACTIONS(1631), 1, + anon_sym_AMP, + ACTIONS(1639), 1, anon_sym_PERCENT, - ACTIONS(1692), 1, - anon_sym_STAR_STAR, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1409), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1628), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1670), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1680), 2, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1688), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1696), 2, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1698), 2, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1672), 3, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1694), 3, + ACTIONS(1641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1397), 9, + ACTIONS(1555), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - [21176] = 28, - ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1620), 1, + [20254] = 21, + ACTIONS(1565), 1, + anon_sym_PIPE, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1640), 1, - anon_sym_AMP_AMP, - ACTIONS(1642), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1627), 1, anon_sym_GT_GT, - ACTIONS(1648), 1, + ACTIONS(1631), 1, anon_sym_AMP, - ACTIONS(1650), 1, + ACTIONS(1633), 1, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, + ACTIONS(1639), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, - anon_sym_STAR_STAR, - ACTIONS(1666), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, - sym__ternary_qmark, - ACTIONS(1704), 1, - anon_sym_COMMA, - STATE(1290), 1, - aux_sym_sequence_expression_repeat1, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1646), 2, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1654), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1708), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1660), 3, + ACTIONS(1641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [21274] = 24, - ACTIONS(83), 1, + ACTIONS(1555), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1620), 1, + [20337] = 12, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1640), 1, - anon_sym_AMP_AMP, - ACTIONS(1642), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, - anon_sym_GT_GT, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, - anon_sym_PERCENT, - ACTIONS(1658), 1, + ACTIONS(1617), 1, anon_sym_STAR_STAR, + ACTIONS(1639), 1, + anon_sym_PERCENT, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1654), 2, + ACTIONS(1565), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1660), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1397), 6, + ACTIONS(1555), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [21364] = 4, - ACTIONS(1271), 1, - anon_sym_EQ, + anon_sym_instanceof, + anon_sym_BQUOTE, + [20402] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1258), 12, + ACTIONS(1465), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57720,7 +55781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1260), 26, + ACTIONS(1467), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -57747,144 +55808,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21414] = 21, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1409), 1, - anon_sym_PIPE, - ACTIONS(1620), 1, + [20449] = 17, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1678), 1, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1627), 1, anon_sym_GT_GT, - ACTIONS(1682), 1, - anon_sym_AMP, - ACTIONS(1690), 1, + ACTIONS(1639), 1, anon_sym_PERCENT, - ACTIONS(1692), 1, - anon_sym_STAR_STAR, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1670), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1680), 2, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1688), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1696), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1698), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1672), 3, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1694), 3, + ACTIONS(1641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1397), 9, + ACTIONS(1565), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1555), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, - [21498] = 26, - ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1620), 1, + [20524] = 23, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1640), 1, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1623), 1, anon_sym_AMP_AMP, - ACTIONS(1642), 1, + ACTIONS(1625), 1, anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, + ACTIONS(1627), 1, anon_sym_GT_GT, - ACTIONS(1648), 1, + ACTIONS(1631), 1, anon_sym_AMP, - ACTIONS(1650), 1, + ACTIONS(1633), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1635), 1, anon_sym_PIPE, - ACTIONS(1656), 1, + ACTIONS(1639), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, - anon_sym_STAR_STAR, - ACTIONS(1666), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, - sym__ternary_qmark, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1646), 2, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1654), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1660), 3, + ACTIONS(1641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1552), 4, + ACTIONS(1555), 7, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [21592] = 4, - ACTIONS(1550), 1, - anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [20611] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1543), 12, + ACTIONS(1424), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57897,7 +55947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1545), 26, + ACTIONS(1426), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -57924,82 +55974,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21642] = 22, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1409), 1, - anon_sym_PIPE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(1626), 1, - sym_optional_chain, - ACTIONS(1678), 1, - anon_sym_GT_GT, - ACTIONS(1682), 1, - anon_sym_AMP, - ACTIONS(1684), 1, - anon_sym_CARET, - ACTIONS(1690), 1, - anon_sym_PERCENT, - ACTIONS(1692), 1, - anon_sym_STAR_STAR, + [20658] = 5, + ACTIONS(1455), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1670), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1680), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1688), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1696), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1698), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1672), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1694), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1397), 8, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1653), 4, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [21728] = 6, - ACTIONS(523), 1, - anon_sym_EQ, - ACTIONS(525), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(515), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(519), 12, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1448), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58012,11 +55998,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(521), 23, + ACTIONS(1450), 21, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -58036,94 +56020,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21782] = 18, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(1626), 1, - sym_optional_chain, - ACTIONS(1644), 1, - anon_sym_GT_GT, - ACTIONS(1656), 1, - anon_sym_PERCENT, - ACTIONS(1658), 1, - anon_sym_STAR_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1636), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1660), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1409), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1397), 11, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [21860] = 13, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(1626), 1, - sym_optional_chain, - ACTIONS(1690), 1, - anon_sym_PERCENT, - ACTIONS(1692), 1, - anon_sym_STAR_STAR, + [20709] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1670), 2, + ACTIONS(1428), 12, anon_sym_STAR, - anon_sym_SLASH, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -58132,48 +56034,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 16, + ACTIONS(1430), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [21928] = 11, - ACTIONS(83), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(1626), 1, - sym_optional_chain, - ACTIONS(1692), 1, - anon_sym_STAR_STAR, + [20756] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 12, + ACTIONS(1432), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58186,175 +56081,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 17, + ACTIONS(1434), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [21992] = 26, - ACTIONS(83), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1620), 1, + [20803] = 25, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1640), 1, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1623), 1, anon_sym_AMP_AMP, - ACTIONS(1642), 1, + ACTIONS(1625), 1, anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, + ACTIONS(1627), 1, anon_sym_GT_GT, - ACTIONS(1648), 1, + ACTIONS(1631), 1, anon_sym_AMP, - ACTIONS(1650), 1, + ACTIONS(1633), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1635), 1, anon_sym_PIPE, - ACTIONS(1656), 1, + ACTIONS(1639), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, - anon_sym_STAR_STAR, - ACTIONS(1666), 1, + ACTIONS(1647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, + ACTIONS(1649), 1, sym__ternary_qmark, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1646), 2, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1654), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1660), 3, + ACTIONS(1641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1486), 4, + ACTIONS(1609), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [22086] = 18, - ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(1626), 1, - sym_optional_chain, - ACTIONS(1678), 1, - anon_sym_GT_GT, - ACTIONS(1690), 1, - anon_sym_PERCENT, - ACTIONS(1692), 1, - anon_sym_STAR_STAR, + [20894] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1670), 2, + ACTIONS(1436), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1680), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1688), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1672), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1694), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1409), 4, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 11, + ACTIONS(1438), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [22164] = 11, - ACTIONS(83), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(1626), 1, - sym_optional_chain, - ACTIONS(1658), 1, - anon_sym_STAR_STAR, + [20941] = 5, + ACTIONS(1508), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 12, + ACTIONS(1655), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1501), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58367,658 +56242,456 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 17, - sym__automatic_semicolon, + ACTIONS(1503), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [22228] = 26, - ACTIONS(83), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1620), 1, + [20992] = 25, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1640), 1, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1623), 1, anon_sym_AMP_AMP, - ACTIONS(1642), 1, + ACTIONS(1625), 1, anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, + ACTIONS(1627), 1, anon_sym_GT_GT, - ACTIONS(1648), 1, + ACTIONS(1631), 1, anon_sym_AMP, - ACTIONS(1650), 1, + ACTIONS(1633), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1635), 1, anon_sym_PIPE, - ACTIONS(1656), 1, + ACTIONS(1639), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, - anon_sym_STAR_STAR, - ACTIONS(1666), 1, + ACTIONS(1647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, + ACTIONS(1649), 1, sym__ternary_qmark, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1646), 2, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1654), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1660), 3, + ACTIONS(1641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1439), 4, + ACTIONS(1438), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [22322] = 26, - ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1620), 1, + [21083] = 5, + ACTIONS(530), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1657), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(526), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(528), 21, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, - anon_sym_GT_GT, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1650), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1666), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, - sym__ternary_qmark, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21134] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1440), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1654), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1660), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1478), 4, + ACTIONS(1442), 26, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [22416] = 24, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1678), 1, - anon_sym_GT_GT, - ACTIONS(1682), 1, - anon_sym_AMP, - ACTIONS(1684), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1686), 1, - anon_sym_PIPE, - ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1692), 1, anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21181] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1670), 2, + ACTIONS(1457), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1680), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1688), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1696), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1698), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1672), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1694), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1397), 6, + ACTIONS(1459), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_QMARK_QMARK, - [22506] = 23, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1644), 1, - anon_sym_GT_GT, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1650), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21228] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1533), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1654), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1660), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1397), 7, + ACTIONS(1535), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [22594] = 22, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1644), 1, - anon_sym_GT_GT, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1650), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21275] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1473), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1654), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1660), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1397), 8, + ACTIONS(1475), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [22680] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1678), 1, - anon_sym_GT_GT, - ACTIONS(1682), 1, - anon_sym_AMP, - ACTIONS(1684), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1686), 1, - anon_sym_PIPE, - ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1700), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1702), 1, - sym__ternary_qmark, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21322] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1670), 2, + ACTIONS(1541), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1680), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1688), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1696), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1698), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1672), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1694), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1515), 4, + ACTIONS(1543), 26, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - [22774] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1678), 1, - anon_sym_GT_GT, - ACTIONS(1682), 1, - anon_sym_AMP, - ACTIONS(1684), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1686), 1, - anon_sym_PIPE, - ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1700), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1702), 1, - sym__ternary_qmark, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21369] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1670), 2, + ACTIONS(1518), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1680), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1688), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1696), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1698), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1672), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1694), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1523), 4, + ACTIONS(1520), 26, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - [22868] = 27, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1678), 1, - anon_sym_GT_GT, - ACTIONS(1682), 1, - anon_sym_AMP, - ACTIONS(1684), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1686), 1, - anon_sym_PIPE, - ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1700), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1702), 1, - sym__ternary_qmark, - ACTIONS(1712), 1, - anon_sym_in, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21416] = 5, + ACTIONS(1306), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1670), 2, + ACTIONS(1303), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1251), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1672), 2, + anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1680), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1688), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1696), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1698), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1694), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1710), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - [22964] = 28, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, + ACTIONS(1253), 21, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, - anon_sym_GT_GT, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1650), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1666), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, - sym__ternary_qmark, - ACTIONS(1704), 1, - anon_sym_COMMA, - STATE(1290), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1636), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1662), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1664), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1715), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1660), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [23062] = 13, - ACTIONS(83), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(1626), 1, - sym_optional_chain, - ACTIONS(1656), 1, - anon_sym_PERCENT, - ACTIONS(1658), 1, - anon_sym_STAR_STAR, + [21467] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1374), 12, anon_sym_STAR, - anon_sym_SLASH, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -59027,170 +56700,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 16, + ACTIONS(1376), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [23130] = 26, - ACTIONS(83), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(1626), 1, - sym_optional_chain, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1678), 1, - anon_sym_GT_GT, - ACTIONS(1682), 1, - anon_sym_AMP, - ACTIONS(1684), 1, - anon_sym_CARET, - ACTIONS(1686), 1, - anon_sym_PIPE, - ACTIONS(1690), 1, - anon_sym_PERCENT, - ACTIONS(1692), 1, - anon_sym_STAR_STAR, - ACTIONS(1700), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1702), 1, - sym__ternary_qmark, + [21514] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1670), 2, + ACTIONS(562), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1680), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1688), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1696), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1698), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1672), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1694), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1453), 4, + ACTIONS(564), 26, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - [23224] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1678), 1, - anon_sym_GT_GT, - ACTIONS(1682), 1, - anon_sym_AMP, - ACTIONS(1684), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1686), 1, - anon_sym_PIPE, - ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1700), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1702), 1, - sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1670), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1680), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1688), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1696), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1698), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1672), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1694), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1519), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - [23318] = 5, - ACTIONS(523), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21561] = 4, + ACTIONS(1309), 1, anon_sym_EQ, - ACTIONS(1632), 1, - sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(517), 12, + ACTIONS(1251), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59203,13 +56793,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(515), 25, + ACTIONS(1253), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59229,79 +56819,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23370] = 22, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1409), 1, - anon_sym_PIPE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(1626), 1, - sym_optional_chain, - ACTIONS(1644), 1, - anon_sym_GT_GT, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1656), 1, - anon_sym_PERCENT, - ACTIONS(1658), 1, - anon_sym_STAR_STAR, + [21610] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1549), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1654), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1660), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1397), 8, + ACTIONS(1551), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [23456] = 5, - ACTIONS(1620), 1, - anon_sym_LPAREN, - STATE(771), 1, - sym_arguments, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21657] = 5, + ACTIONS(566), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1369), 12, + ACTIONS(558), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(562), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59314,13 +56885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1371), 25, - sym__automatic_semicolon, + ACTIONS(564), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59340,13 +56909,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23508] = 4, - ACTIONS(1476), 1, - anon_sym_EQ, + [21708] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1469), 12, + ACTIONS(1481), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59359,7 +56926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 26, + ACTIONS(1483), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -59386,297 +56953,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23558] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(1626), 1, - sym_optional_chain, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1678), 1, - anon_sym_GT_GT, - ACTIONS(1682), 1, - anon_sym_AMP, - ACTIONS(1684), 1, - anon_sym_CARET, - ACTIONS(1686), 1, - anon_sym_PIPE, - ACTIONS(1690), 1, - anon_sym_PERCENT, - ACTIONS(1692), 1, - anon_sym_STAR_STAR, - ACTIONS(1700), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1702), 1, - sym__ternary_qmark, + [21755] = 5, + ACTIONS(606), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1670), 2, + ACTIONS(598), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(602), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1680), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1688), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1696), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1698), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1672), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1694), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1580), 4, - sym__automatic_semicolon, + ACTIONS(604), 23, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - [23652] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1678), 1, - anon_sym_GT_GT, - ACTIONS(1682), 1, - anon_sym_AMP, - ACTIONS(1684), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1686), 1, - anon_sym_PIPE, - ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1700), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1702), 1, - sym__ternary_qmark, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21806] = 5, + ACTIONS(1313), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1670), 2, + ACTIONS(1311), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1251), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1680), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1688), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1696), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1698), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1672), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1694), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1552), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - [23746] = 28, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, + ACTIONS(1253), 21, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, - anon_sym_GT_GT, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1650), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1666), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, - sym__ternary_qmark, - ACTIONS(1717), 1, - anon_sym_COMMA, - ACTIONS(1720), 1, - anon_sym_RBRACE, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21857] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1463), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1378), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1654), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1660), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [23844] = 28, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, + ACTIONS(1380), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1622), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, - anon_sym_GT_GT, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1650), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1666), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, - sym__ternary_qmark, - ACTIONS(1722), 1, - anon_sym_COMMA, - ACTIONS(1725), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1463), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1636), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1662), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1664), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1660), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [23942] = 8, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(1727), 1, - sym_optional_chain, - STATE(771), 1, - sym_arguments, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21904] = 5, + ACTIONS(576), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1369), 12, + ACTIONS(568), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(572), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59689,13 +57111,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1371), 22, - sym__automatic_semicolon, + ACTIONS(574), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -59712,11 +57135,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24000] = 3, + [21955] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1608), 12, + ACTIONS(1444), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59729,7 +57152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1610), 27, + ACTIONS(1446), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -59737,7 +57160,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59757,269 +57179,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24048] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, + [22002] = 25, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1674), 1, + ACTIONS(1663), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1665), 1, anon_sym_PIPE_PIPE, - ACTIONS(1678), 1, + ACTIONS(1667), 1, anon_sym_GT_GT, - ACTIONS(1682), 1, + ACTIONS(1671), 1, anon_sym_AMP, - ACTIONS(1684), 1, + ACTIONS(1673), 1, anon_sym_CARET, - ACTIONS(1686), 1, + ACTIONS(1675), 1, anon_sym_PIPE, - ACTIONS(1690), 1, + ACTIONS(1679), 1, anon_sym_PERCENT, - ACTIONS(1692), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - ACTIONS(1700), 1, + ACTIONS(1689), 1, anon_sym_QMARK_QMARK, - ACTIONS(1702), 1, + ACTIONS(1691), 1, sym__ternary_qmark, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1670), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1680), 2, + ACTIONS(1669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1688), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1696), 2, + ACTIONS(1685), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1698), 2, + ACTIONS(1687), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1672), 3, + ACTIONS(1661), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1694), 3, + ACTIONS(1683), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1529), 4, + ACTIONS(1605), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, - [24142] = 20, - ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1620), 1, + [22093] = 25, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1644), 1, + ACTIONS(1663), 1, + anon_sym_AMP_AMP, + ACTIONS(1665), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1667), 1, anon_sym_GT_GT, - ACTIONS(1656), 1, + ACTIONS(1671), 1, + anon_sym_AMP, + ACTIONS(1673), 1, + anon_sym_CARET, + ACTIONS(1675), 1, + anon_sym_PIPE, + ACTIONS(1679), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, + ACTIONS(1689), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1691), 1, + sym__ternary_qmark, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1409), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1628), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1646), 2, + ACTIONS(1669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1654), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + ACTIONS(1685), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, + ACTIONS(1687), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, + ACTIONS(1661), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1660), 3, + ACTIONS(1683), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1397), 9, + ACTIONS(1499), 5, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [24224] = 14, - ACTIONS(83), 1, + anon_sym_of, anon_sym_BQUOTE, - ACTIONS(1620), 1, + [22184] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1522), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1524), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1622), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1656), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1658), 1, anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [22231] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1485), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 16, + ACTIONS(1487), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [24294] = 28, - ACTIONS(83), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1620), 1, + [22278] = 25, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1640), 1, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1623), 1, anon_sym_AMP_AMP, - ACTIONS(1642), 1, + ACTIONS(1625), 1, anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, + ACTIONS(1627), 1, anon_sym_GT_GT, - ACTIONS(1648), 1, + ACTIONS(1631), 1, anon_sym_AMP, - ACTIONS(1650), 1, + ACTIONS(1633), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1635), 1, anon_sym_PIPE, - ACTIONS(1656), 1, + ACTIONS(1639), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, - anon_sym_STAR_STAR, - ACTIONS(1666), 1, + ACTIONS(1647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, + ACTIONS(1649), 1, sym__ternary_qmark, - ACTIONS(1725), 1, - anon_sym_RBRACE, - ACTIONS(1729), 1, - anon_sym_COMMA, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1628), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1646), 2, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1654), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1660), 3, + ACTIONS(1641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24392] = 4, - ACTIONS(523), 1, - anon_sym_EQ, + ACTIONS(1605), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [22369] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(519), 12, + ACTIONS(1469), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60032,7 +57482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(521), 26, + ACTIONS(1471), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -60059,147 +57509,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24442] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [22416] = 25, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1617), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1623), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1625), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1627), 1, + anon_sym_GT_GT, + ACTIONS(1631), 1, + anon_sym_AMP, + ACTIONS(1633), 1, + anon_sym_CARET, + ACTIONS(1635), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1639), 1, + anon_sym_PERCENT, + ACTIONS(1647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1649), 1, sym__ternary_qmark, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1732), 4, + ACTIONS(1607), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [24536] = 26, - ACTIONS(83), 1, + anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(1620), 1, + [22507] = 25, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1640), 1, + ACTIONS(1663), 1, anon_sym_AMP_AMP, - ACTIONS(1642), 1, + ACTIONS(1665), 1, anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, + ACTIONS(1667), 1, anon_sym_GT_GT, - ACTIONS(1648), 1, + ACTIONS(1671), 1, anon_sym_AMP, - ACTIONS(1650), 1, + ACTIONS(1673), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1675), 1, anon_sym_PIPE, - ACTIONS(1656), 1, + ACTIONS(1679), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - ACTIONS(1666), 1, + ACTIONS(1689), 1, anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, + ACTIONS(1691), 1, sym__ternary_qmark, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1646), 2, + ACTIONS(1669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1654), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + ACTIONS(1685), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, + ACTIONS(1687), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, + ACTIONS(1661), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1660), 3, + ACTIONS(1683), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1523), 4, + ACTIONS(1607), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - [24630] = 3, + anon_sym_of, + anon_sym_BQUOTE, + [22598] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1616), 12, + ACTIONS(1493), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60212,7 +57658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1618), 26, + ACTIONS(1495), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -60239,11 +57685,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24677] = 3, + [22645] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1558), 12, + ACTIONS(1497), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60256,7 +57702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1560), 26, + ACTIONS(1499), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -60283,124 +57729,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24724] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [22692] = 25, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1663), 1, + anon_sym_AMP_AMP, + ACTIONS(1665), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1667), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1671), 1, anon_sym_AMP, - ACTIONS(1407), 1, + ACTIONS(1673), 1, anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1675), 1, + anon_sym_PIPE, + ACTIONS(1679), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1689), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1691), 1, sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1736), 1, - anon_sym_RBRACK, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1685), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1687), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1661), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1683), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24821] = 3, + ACTIONS(1593), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [22783] = 25, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_DOT, + ACTIONS(1611), 1, + sym_optional_chain, + ACTIONS(1663), 1, + anon_sym_AMP_AMP, + ACTIONS(1665), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1667), 1, + anon_sym_GT_GT, + ACTIONS(1671), 1, + anon_sym_AMP, + ACTIONS(1673), 1, + anon_sym_CARET, + ACTIONS(1675), 1, + anon_sym_PIPE, + ACTIONS(1679), 1, + anon_sym_PERCENT, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + ACTIONS(1689), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1691), 1, + sym__ternary_qmark, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1600), 12, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1659), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1669), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1685), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1687), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1661), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1683), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1418), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [22874] = 15, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_DOT, + ACTIONS(1611), 1, + sym_optional_chain, + ACTIONS(1667), 1, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1679), 1, + anon_sym_PERCENT, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + STATE(654), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1659), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1669), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1565), 7, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1602), 26, + ACTIONS(1555), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24868] = 3, + [22945] = 10, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_DOT, + ACTIONS(1611), 1, + sym_optional_chain, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1511), 12, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1565), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60413,38 +57949,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1513), 26, + ACTIONS(1555), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24915] = 3, + [23006] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1586), 12, + ACTIONS(1529), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60457,7 +57985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1588), 26, + ACTIONS(1531), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -60484,263 +58012,331 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24962] = 3, + [23053] = 22, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_DOT, + ACTIONS(1611), 1, + sym_optional_chain, + ACTIONS(1663), 1, + anon_sym_AMP_AMP, + ACTIONS(1667), 1, + anon_sym_GT_GT, + ACTIONS(1671), 1, + anon_sym_AMP, + ACTIONS(1673), 1, + anon_sym_CARET, + ACTIONS(1675), 1, + anon_sym_PIPE, + ACTIONS(1679), 1, + anon_sym_PERCENT, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + STATE(654), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1659), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1669), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1685), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1687), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1661), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1683), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1555), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [23138] = 13, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_DOT, + ACTIONS(1611), 1, + sym_optional_chain, + ACTIONS(1679), 1, + anon_sym_PERCENT, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(587), 12, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1659), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1565), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(589), 26, + ACTIONS(1555), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [25009] = 28, - ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [23205] = 19, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1667), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1679), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1738), 1, - anon_sym_SEMI, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1565), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1685), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1687), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1661), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1683), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25106] = 28, - ACTIONS(407), 1, + ACTIONS(1555), 10, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [23284] = 20, + ACTIONS(1565), 1, + anon_sym_PIPE, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1667), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1671), 1, anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1679), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1740), 1, - anon_sym_RPAREN, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1685), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1687), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1661), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1683), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25203] = 28, - ACTIONS(407), 1, + ACTIONS(1555), 10, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [23365] = 21, + ACTIONS(1565), 1, + anon_sym_PIPE, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1667), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1671), 1, anon_sym_AMP, - ACTIONS(1407), 1, + ACTIONS(1673), 1, anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1679), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1742), 1, - anon_sym_RPAREN, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1685), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1687), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1661), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1683), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25300] = 3, + ACTIONS(1555), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [23448] = 12, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_DOT, + ACTIONS(1611), 1, + sym_optional_chain, + ACTIONS(1679), 1, + anon_sym_PERCENT, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1521), 12, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1659), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1565), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -60749,393 +58345,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1523), 26, + ACTIONS(1555), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25347] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [23513] = 10, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1744), 1, - anon_sym_RBRACK, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1565), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1555), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [25444] = 28, - ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [23574] = 17, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1667), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1679), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1746), 1, - anon_sym_SEMI, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1661), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1683), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25541] = 28, - ACTIONS(407), 1, + ACTIONS(1565), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1555), 12, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [23649] = 23, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1663), 1, + anon_sym_AMP_AMP, + ACTIONS(1665), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1667), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1671), 1, anon_sym_AMP, - ACTIONS(1407), 1, + ACTIONS(1673), 1, anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1675), 1, + anon_sym_PIPE, + ACTIONS(1679), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1748), 1, - anon_sym_RPAREN, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1685), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1687), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1661), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1683), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25638] = 28, - ACTIONS(407), 1, + ACTIONS(1555), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [23736] = 25, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1663), 1, + anon_sym_AMP_AMP, + ACTIONS(1665), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1667), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1671), 1, anon_sym_AMP, - ACTIONS(1407), 1, + ACTIONS(1673), 1, anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1675), 1, + anon_sym_PIPE, + ACTIONS(1679), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1689), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1691), 1, sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1750), 1, - anon_sym_RPAREN, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1685), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1687), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1661), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1683), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25735] = 28, - ACTIONS(407), 1, + ACTIONS(1609), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [23827] = 25, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1663), 1, + anon_sym_AMP_AMP, + ACTIONS(1665), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1667), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1671), 1, anon_sym_AMP, - ACTIONS(1407), 1, + ACTIONS(1673), 1, anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1675), 1, + anon_sym_PIPE, + ACTIONS(1679), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1689), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1691), 1, sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1752), 1, - anon_sym_RPAREN, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1685), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1687), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1661), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1683), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25832] = 5, - ACTIONS(523), 1, - anon_sym_EQ, + ACTIONS(1438), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [23918] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1754), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(519), 12, + ACTIONS(1537), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61148,9 +58687,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(521), 21, + ACTIONS(1539), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61170,200 +58714,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25883] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [23965] = 25, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1663), 1, + anon_sym_AMP_AMP, + ACTIONS(1665), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1667), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1671), 1, anon_sym_AMP, - ACTIONS(1407), 1, + ACTIONS(1673), 1, anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1675), 1, + anon_sym_PIPE, + ACTIONS(1679), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1689), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1691), 1, sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1756), 1, - anon_sym_RBRACK, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1685), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1687), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1661), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1683), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25980] = 5, - ACTIONS(547), 1, + ACTIONS(1479), 5, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(539), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(543), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(545), 23, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [24056] = 25, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, anon_sym_LBRACK, + ACTIONS(1601), 1, anon_sym_DOT, + ACTIONS(1611), 1, sym_optional_chain, + ACTIONS(1663), 1, anon_sym_AMP_AMP, + ACTIONS(1665), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1667), 1, + anon_sym_GT_GT, + ACTIONS(1671), 1, + anon_sym_AMP, + ACTIONS(1673), 1, anon_sym_CARET, + ACTIONS(1675), 1, + anon_sym_PIPE, + ACTIONS(1679), 1, anon_sym_PERCENT, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1689), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1691), 1, + sym__ternary_qmark, + STATE(654), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1659), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1669), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1685), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1687), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1661), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1683), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26031] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(718), 1, + ACTIONS(1487), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(1349), 1, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [24147] = 25, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1663), 1, + anon_sym_AMP_AMP, + ACTIONS(1665), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1667), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1671), 1, anon_sym_AMP, - ACTIONS(1407), 1, + ACTIONS(1673), 1, anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1675), 1, + anon_sym_PIPE, + ACTIONS(1679), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1689), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1691), 1, sym__ternary_qmark, - ACTIONS(1758), 1, - anon_sym_RPAREN, - STATE(1395), 1, - aux_sym_array_repeat1, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1685), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1687), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1661), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1683), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26128] = 5, - ACTIONS(591), 1, + ACTIONS(1512), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [24238] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(583), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(587), 12, + ACTIONS(612), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61376,11 +58929,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(589), 23, + ACTIONS(614), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61400,26 +58956,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26179] = 3, + [24285] = 25, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_DOT, + ACTIONS(1611), 1, + sym_optional_chain, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1623), 1, + anon_sym_AMP_AMP, + ACTIONS(1625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1627), 1, + anon_sym_GT_GT, + ACTIONS(1631), 1, + anon_sym_AMP, + ACTIONS(1633), 1, + anon_sym_CARET, + ACTIONS(1635), 1, + anon_sym_PIPE, + ACTIONS(1639), 1, + anon_sym_PERCENT, + ACTIONS(1647), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1649), 1, + sym__ternary_qmark, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1377), 12, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1619), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1379), 26, + ACTIONS(1645), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1621), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1641), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1487), 5, sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [24376] = 25, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_DOT, + ACTIONS(1611), 1, + sym_optional_chain, + ACTIONS(1663), 1, + anon_sym_AMP_AMP, + ACTIONS(1665), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1667), 1, + anon_sym_GT_GT, + ACTIONS(1671), 1, + anon_sym_AMP, + ACTIONS(1673), 1, + anon_sym_CARET, + ACTIONS(1675), 1, + anon_sym_PIPE, + ACTIONS(1679), 1, + anon_sym_PERCENT, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + ACTIONS(1689), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1691), 1, + sym__ternary_qmark, + STATE(654), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1659), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1669), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1685), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1687), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1661), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1683), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1595), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [24467] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1251), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1253), 26, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -61444,11 +59132,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26226] = 3, + [24514] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1455), 12, + ACTIONS(552), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61461,7 +59149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1457), 26, + ACTIONS(554), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -61488,13 +59176,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26273] = 4, - ACTIONS(1310), 1, - anon_sym_EQ, + [24561] = 25, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_DOT, + ACTIONS(1611), 1, + sym_optional_chain, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1623), 1, + anon_sym_AMP_AMP, + ACTIONS(1625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1627), 1, + anon_sym_GT_GT, + ACTIONS(1631), 1, + anon_sym_AMP, + ACTIONS(1633), 1, + anon_sym_CARET, + ACTIONS(1635), 1, + anon_sym_PIPE, + ACTIONS(1639), 1, + anon_sym_PERCENT, + ACTIONS(1647), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1649), 1, + sym__ternary_qmark, + STATE(654), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1619), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1643), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1645), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1621), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1641), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1499), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [24652] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1258), 12, + ACTIONS(1461), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61507,10 +59259,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1260), 25, + ACTIONS(1463), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, @@ -61533,11 +59286,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26322] = 3, + [24699] = 5, + ACTIONS(556), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1570), 12, + ACTIONS(548), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(552), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61550,14 +59308,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1572), 26, - sym__automatic_semicolon, + ACTIONS(554), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61577,149 +59332,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26369] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [24750] = 4, + ACTIONS(1320), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1251), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1253), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1351), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1760), 1, - anon_sym_RPAREN, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [24799] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1545), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1547), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [26466] = 28, - ACTIONS(407), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(718), 1, - anon_sym_COMMA, - ACTIONS(1349), 1, + [24846] = 25, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1663), 1, + anon_sym_AMP_AMP, + ACTIONS(1665), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1667), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1671), 1, anon_sym_AMP, - ACTIONS(1407), 1, + ACTIONS(1673), 1, anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1675), 1, + anon_sym_PIPE, + ACTIONS(1679), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1689), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1691), 1, sym__ternary_qmark, - ACTIONS(1762), 1, - anon_sym_RBRACK, - STATE(1334), 1, - aux_sym_array_repeat1, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1685), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1687), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1661), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1683), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26563] = 3, + ACTIONS(1579), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [24937] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1554), 12, + ACTIONS(542), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61732,7 +59504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1556), 26, + ACTIONS(544), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -61759,156 +59531,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26610] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [24984] = 25, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1617), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1623), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1625), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1627), 1, + anon_sym_GT_GT, + ACTIONS(1631), 1, + anon_sym_AMP, + ACTIONS(1633), 1, + anon_sym_CARET, + ACTIONS(1635), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1639), 1, + anon_sym_PERCENT, + ACTIONS(1647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1649), 1, sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1764), 1, - anon_sym_RPAREN, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26707] = 28, - ACTIONS(407), 1, + ACTIONS(1579), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [25075] = 25, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1617), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1623), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1625), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1627), 1, + anon_sym_GT_GT, + ACTIONS(1631), 1, + anon_sym_AMP, + ACTIONS(1633), 1, + anon_sym_CARET, + ACTIONS(1635), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1639), 1, + anon_sym_PERCENT, + ACTIONS(1647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1649), 1, sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1766), 1, - anon_sym_SEMI, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26804] = 5, - ACTIONS(1476), 1, - anon_sym_EQ, + ACTIONS(1479), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [25166] = 5, + ACTIONS(586), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1768), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1469), 12, + ACTIONS(578), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(582), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61921,9 +59685,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 21, + ACTIONS(584), 23, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61943,11 +59709,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26855] = 3, + [25217] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1482), 12, + ACTIONS(602), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61960,7 +59726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1484), 26, + ACTIONS(604), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -61987,11 +59753,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26902] = 3, + [25264] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1570), 12, + ACTIONS(1510), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62004,7 +59770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1572), 26, + ACTIONS(1512), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -62031,11 +59797,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26949] = 3, + [25311] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1459), 12, + ACTIONS(1390), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62048,7 +59814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1461), 26, + ACTIONS(1392), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -62075,11 +59841,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26996] = 3, + [25358] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1531), 12, + ACTIONS(1382), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62092,7 +59858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1533), 26, + ACTIONS(1384), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -62119,156 +59885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27043] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1770), 1, - anon_sym_COLON, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27140] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1772), 1, - anon_sym_RPAREN, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27237] = 5, - ACTIONS(1271), 1, - anon_sym_EQ, + [25405] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1316), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1258), 12, + ACTIONS(1394), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62281,9 +59902,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1260), 21, + ACTIONS(1396), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -62303,87 +59929,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27288] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1774), 1, - anon_sym_RPAREN, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27385] = 5, - ACTIONS(1550), 1, + [25452] = 5, + ACTIONS(1264), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1776), 4, + ACTIONS(1322), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1543), 12, + ACTIONS(1251), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62396,7 +59953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1545), 21, + ACTIONS(1253), 21, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -62418,425 +59975,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27436] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1778), 1, - anon_sym_RBRACE, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, + [25503] = 4, + ACTIONS(1651), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1398), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27533] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1780), 1, - anon_sym_RPAREN, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - [27630] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + ACTIONS(1400), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1351), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1782), 1, - anon_sym_RBRACE, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27727] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1784), 1, - anon_sym_RBRACK, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [25552] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1386), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27824] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1786), 1, - anon_sym_RPAREN, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27921] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + ACTIONS(1388), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1351), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1788), 1, - anon_sym_SEMI, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1419), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [28018] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [25599] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1539), 12, + ACTIONS(1489), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62849,7 +60081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1541), 26, + ACTIONS(1491), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -62876,216 +60108,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28065] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(718), 1, - anon_sym_COMMA, - ACTIONS(1349), 1, + [25646] = 25, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1617), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1623), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1625), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1627), 1, + anon_sym_GT_GT, + ACTIONS(1631), 1, + anon_sym_AMP, + ACTIONS(1633), 1, + anon_sym_CARET, + ACTIONS(1635), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1639), 1, + anon_sym_PERCENT, + ACTIONS(1647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1649), 1, sym__ternary_qmark, - ACTIONS(1790), 1, - anon_sym_RBRACK, - STATE(1334), 1, - aux_sym_array_repeat1, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28162] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(1734), 1, + ACTIONS(1595), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(1792), 1, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_BQUOTE, + [25737] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1469), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [28259] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, + ACTIONS(1471), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1622), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, - anon_sym_GT_GT, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1650), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1666), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, - sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1628), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1636), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1646), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1662), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1664), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1590), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1638), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1660), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [28352] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [25784] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1604), 12, + ACTIONS(1408), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -63098,7 +60235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1606), 26, + ACTIONS(1410), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -63125,11 +60262,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28399] = 3, + [25831] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1612), 12, + ACTIONS(1473), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -63142,7 +60279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1614), 26, + ACTIONS(1475), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -63169,80 +60306,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28446] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [25878] = 25, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1617), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1623), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1625), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1627), 1, + anon_sym_GT_GT, + ACTIONS(1631), 1, + anon_sym_AMP, + ACTIONS(1633), 1, + anon_sym_CARET, + ACTIONS(1635), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1639), 1, + anon_sym_PERCENT, + ACTIONS(1647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1649), 1, sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1794), 1, - anon_sym_RPAREN, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28543] = 3, + ACTIONS(1593), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [25969] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1566), 12, + ACTIONS(1416), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -63255,7 +60389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1568), 26, + ACTIONS(1418), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -63282,11 +60416,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28590] = 3, + [26016] = 5, + ACTIONS(546), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1596), 12, + ACTIONS(538), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(542), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -63299,14 +60438,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1598), 26, - sym__automatic_semicolon, + ACTIONS(544), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -63326,55 +60462,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28637] = 3, + [26067] = 25, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_DOT, + ACTIONS(1611), 1, + sym_optional_chain, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1623), 1, + anon_sym_AMP_AMP, + ACTIONS(1625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1627), 1, + anon_sym_GT_GT, + ACTIONS(1631), 1, + anon_sym_AMP, + ACTIONS(1633), 1, + anon_sym_CARET, + ACTIONS(1635), 1, + anon_sym_PIPE, + ACTIONS(1639), 1, + anon_sym_PERCENT, + ACTIONS(1647), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1649), 1, + sym__ternary_qmark, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1507), 12, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1619), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1509), 26, + ACTIONS(1645), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1621), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1641), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1418), 5, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_BQUOTE, + [26158] = 15, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, anon_sym_LBRACK, + ACTIONS(1601), 1, anon_sym_DOT, + ACTIONS(1611), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1627), 1, + anon_sym_GT_GT, + ACTIONS(1639), 1, + anon_sym_PERCENT, + STATE(654), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1619), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(1637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1565), 7, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1555), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28684] = 3, + [26229] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1578), 12, + ACTIONS(1420), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -63387,7 +60601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1580), 26, + ACTIONS(1422), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -63414,11 +60628,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28731] = 3, + [26276] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1517), 12, + ACTIONS(1469), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -63431,7 +60645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1519), 26, + ACTIONS(1471), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -63458,11 +60672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28778] = 3, + [26323] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1465), 12, + ACTIONS(1469), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -63475,7 +60689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1467), 26, + ACTIONS(1471), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -63502,11 +60716,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28825] = 3, + [26370] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1574), 12, + ACTIONS(1477), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -63519,7 +60733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1576), 26, + ACTIONS(1479), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -63546,80 +60760,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28872] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, - anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_COMMA, - ACTIONS(1796), 1, - anon_sym_RPAREN, - STATE(1118), 1, - aux_sym_sequence_expression_repeat1, + [26417] = 5, + ACTIONS(616), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(608), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(612), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1411), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(614), 23, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [28969] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [26468] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1258), 12, + ACTIONS(572), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -63632,7 +60823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1260), 26, + ACTIONS(574), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -63659,84 +60850,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29016] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(718), 1, - anon_sym_COMMA, - ACTIONS(1349), 1, + [26515] = 21, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1667), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1671), 1, anon_sym_AMP, - ACTIONS(1407), 1, + ACTIONS(1673), 1, anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1675), 1, + anon_sym_PIPE, + ACTIONS(1679), 1, + anon_sym_PERCENT, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + STATE(654), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1659), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1669), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1685), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1687), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1661), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1683), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1555), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [26598] = 25, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1581), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1591), 1, sym__ternary_qmark, - ACTIONS(1798), 1, - anon_sym_RPAREN, - STATE(1396), 1, - aux_sym_array_repeat1, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29113] = 4, - ACTIONS(1314), 1, + ACTIONS(1693), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [26688] = 6, + ACTIONS(1455), 1, anon_sym_EQ, + ACTIONS(1653), 1, + anon_sym_of, + ACTIONS(1695), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1258), 12, + ACTIONS(1448), 11, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -63747,11 +60999,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1260), 25, - sym__automatic_semicolon, + ACTIONS(1450), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -63773,11 +61023,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29162] = 3, + [26740] = 5, + ACTIONS(1281), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 12, + ACTIONS(1324), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1251), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -63790,14 +61046,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1453), 26, - sym__automatic_semicolon, + ACTIONS(1253), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -63817,13 +61068,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29209] = 3, + [26790] = 6, + ACTIONS(1508), 1, + anon_sym_EQ, + ACTIONS(1655), 1, + anon_sym_of, + ACTIONS(1698), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(553), 12, + ACTIONS(1501), 11, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -63834,14 +61090,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(555), 26, - sym__automatic_semicolon, + ACTIONS(1503), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -63861,59 +61114,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29256] = 5, - ACTIONS(557), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(549), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(553), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(555), 23, - sym__ternary_qmark, - anon_sym_COMMA, + [26842] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, anon_sym_AMP_AMP, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1567), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1575), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [29307] = 3, + ACTIONS(1701), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [26932] = 6, + ACTIONS(530), 1, + anon_sym_EQ, + ACTIONS(1657), 1, + anon_sym_of, + ACTIONS(1703), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(621), 12, + ACTIONS(526), 11, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -63924,14 +61201,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(623), 26, - sym__automatic_semicolon, + ACTIONS(528), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -63951,55 +61225,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29354] = 3, + [26984] = 26, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_DOT, + ACTIONS(1611), 1, + sym_optional_chain, + ACTIONS(1663), 1, + anon_sym_AMP_AMP, + ACTIONS(1665), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1667), 1, + anon_sym_GT_GT, + ACTIONS(1671), 1, + anon_sym_AMP, + ACTIONS(1673), 1, + anon_sym_CARET, + ACTIONS(1675), 1, + anon_sym_PIPE, + ACTIONS(1679), 1, + anon_sym_PERCENT, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + ACTIONS(1689), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1691), 1, + sym__ternary_qmark, + ACTIONS(1708), 1, + anon_sym_in, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(563), 12, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1659), 2, anon_sym_STAR, - anon_sym_in, + anon_sym_SLASH, + ACTIONS(1661), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1669), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1685), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(565), 26, + ACTIONS(1687), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1683), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1706), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + [27076] = 27, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, anon_sym_LBRACK, + ACTIONS(1601), 1, anon_sym_DOT, + ACTIONS(1611), 1, sym_optional_chain, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1623), 1, anon_sym_AMP_AMP, + ACTIONS(1625), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1627), 1, + anon_sym_GT_GT, + ACTIONS(1631), 1, + anon_sym_AMP, + ACTIONS(1633), 1, anon_sym_CARET, + ACTIONS(1635), 1, + anon_sym_PIPE, + ACTIONS(1639), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1647), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1649), 1, + sym__ternary_qmark, + ACTIONS(1711), 1, + anon_sym_COMMA, + ACTIONS(1714), 1, + anon_sym_RBRACE, + STATE(654), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1605), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1619), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1643), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1621), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1641), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [29401] = 3, + [27170] = 5, + ACTIONS(1716), 1, + anon_sym_LPAREN, + ACTIONS(1719), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(607), 12, + ACTIONS(1251), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -64012,14 +61379,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(609), 26, + ACTIONS(1253), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -64039,126 +61403,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29448] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [27220] = 27, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, - anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, - anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1617), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1623), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1625), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1627), 1, + anon_sym_GT_GT, + ACTIONS(1631), 1, + anon_sym_AMP, + ACTIONS(1633), 1, + anon_sym_CARET, + ACTIONS(1635), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1639), 1, + anon_sym_PERCENT, + ACTIONS(1647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1649), 1, sym__ternary_qmark, - ACTIONS(1734), 1, + ACTIONS(1721), 1, anon_sym_COMMA, - ACTIONS(1800), 1, - anon_sym_RPAREN, - STATE(1118), 1, + STATE(654), 1, + sym_arguments, + STATE(1226), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1723), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29545] = 5, - ACTIONS(581), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(573), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(577), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(579), 23, - sym__ternary_qmark, - anon_sym_COMMA, + [27314] = 27, + ACTIONS(1597), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1599), 1, anon_sym_LBRACK, + ACTIONS(1601), 1, anon_sym_DOT, + ACTIONS(1611), 1, sym_optional_chain, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1623), 1, anon_sym_AMP_AMP, + ACTIONS(1625), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1627), 1, + anon_sym_GT_GT, + ACTIONS(1631), 1, + anon_sym_AMP, + ACTIONS(1633), 1, anon_sym_CARET, + ACTIONS(1635), 1, + anon_sym_PIPE, + ACTIONS(1639), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1647), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1649), 1, + sym__ternary_qmark, + ACTIONS(1721), 1, + anon_sym_COMMA, + STATE(654), 1, + sym_arguments, + STATE(1226), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1619), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1643), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1725), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1621), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1641), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [29596] = 3, + [27408] = 5, + ACTIONS(1727), 1, + anon_sym_LPAREN, + ACTIONS(1730), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1492), 12, + ACTIONS(1529), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -64171,14 +61558,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1494), 26, + ACTIONS(1531), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -64198,87 +61582,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29643] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [27458] = 27, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1623), 1, + anon_sym_AMP_AMP, + ACTIONS(1625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1627), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1631), 1, anon_sym_AMP, - ACTIONS(1407), 1, + ACTIONS(1633), 1, anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1635), 1, + anon_sym_PIPE, + ACTIONS(1639), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1647), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1649), 1, + sym__ternary_qmark, + ACTIONS(1714), 1, + anon_sym_RBRACE, + ACTIONS(1732), 1, + anon_sym_COMMA, + STATE(654), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1593), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1619), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1643), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1645), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1621), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1641), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [27552] = 27, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_DOT, + ACTIONS(1611), 1, + sym_optional_chain, + ACTIONS(1617), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1623), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1625), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1627), 1, + anon_sym_GT_GT, + ACTIONS(1631), 1, + anon_sym_AMP, + ACTIONS(1633), 1, + anon_sym_CARET, + ACTIONS(1635), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1639), 1, + anon_sym_PERCENT, + ACTIONS(1647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1649), 1, sym__ternary_qmark, - ACTIONS(1734), 1, + ACTIONS(1721), 1, anon_sym_COMMA, - ACTIONS(1802), 1, - anon_sym_RPAREN, - STATE(1118), 1, + STATE(654), 1, + sym_arguments, + STATE(1226), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1735), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29740] = 5, - ACTIONS(625), 1, - sym__automatic_semicolon, + [27646] = 6, + ACTIONS(1281), 1, + anon_sym_EQ, + ACTIONS(1329), 1, + anon_sym_in, + ACTIONS(1332), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(617), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(621), 12, + ACTIONS(1251), 11, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -64289,7 +61738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(623), 23, + ACTIONS(1253), 23, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -64313,419 +61762,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29791] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1525), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1527), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [27698] = 27, + ACTIONS(1597), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1599), 1, anon_sym_LBRACK, + ACTIONS(1601), 1, anon_sym_DOT, + ACTIONS(1611), 1, sym_optional_chain, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1623), 1, anon_sym_AMP_AMP, + ACTIONS(1625), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1627), 1, + anon_sym_GT_GT, + ACTIONS(1631), 1, + anon_sym_AMP, + ACTIONS(1633), 1, anon_sym_CARET, + ACTIONS(1635), 1, + anon_sym_PIPE, + ACTIONS(1639), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1647), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [29838] = 3, + ACTIONS(1649), 1, + sym__ternary_qmark, + ACTIONS(1737), 1, + anon_sym_COMMA, + ACTIONS(1740), 1, + anon_sym_RBRACE, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1480), 12, + ACTIONS(1593), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1619), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1478), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [29885] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1535), 12, - anon_sym_STAR, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1537), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1641), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [27792] = 20, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(1565), 1, + anon_sym_PIPE, + ACTIONS(1746), 1, + anon_sym_GT_GT, + ACTIONS(1750), 1, + anon_sym_AMP, + ACTIONS(1754), 1, anon_sym_PERCENT, + ACTIONS(1756), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [29932] = 5, - ACTIONS(567), 1, - sym__automatic_semicolon, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(559), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(563), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1742), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1748), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1752), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1760), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(565), 23, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1762), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [29983] = 5, - ACTIONS(611), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(603), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(607), 12, - anon_sym_STAR, + ACTIONS(1744), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(609), 23, + ACTIONS(1758), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1555), 8, sym__ternary_qmark, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [27871] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1746), 1, + anon_sym_GT_GT, + ACTIONS(1750), 1, + anon_sym_AMP, + ACTIONS(1754), 1, + anon_sym_PERCENT, + ACTIONS(1756), 1, + anon_sym_STAR_STAR, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1770), 1, + anon_sym_PIPE, + ACTIONS(1772), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [30034] = 3, + ACTIONS(1774), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1562), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1742), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1748), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1752), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1760), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1564), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1762), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1499), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(1744), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [30081] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [27960] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1581), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1591), 1, sym__ternary_qmark, - ACTIONS(1734), 1, + ACTIONS(1776), 1, anon_sym_COMMA, - ACTIONS(1804), 1, - anon_sym_RBRACE, - STATE(1118), 1, + ACTIONS(1778), 1, + anon_sym_RPAREN, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30178] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(718), 1, - anon_sym_COMMA, - ACTIONS(1349), 1, + [28053] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1581), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1591), 1, sym__ternary_qmark, - ACTIONS(1806), 1, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1780), 1, anon_sym_RPAREN, - STATE(1324), 1, - aux_sym_array_repeat1, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30275] = 4, - ACTIONS(1808), 1, - sym_regex_flags, + [28146] = 6, + ACTIONS(1505), 1, + anon_sym_RBRACK, + ACTIONS(1508), 1, + anon_sym_EQ, + ACTIONS(1655), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1381), 13, + ACTIONS(1501), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -64738,14 +62107,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1383), 24, - sym__automatic_semicolon, + ACTIONS(1503), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -64761,171 +62125,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30324] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1496), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1498), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [28197] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, anon_sym_AMP_AMP, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1585), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [30371] = 3, + ACTIONS(1591), 1, + sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1782), 1, + anon_sym_RPAREN, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1387), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1389), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [30418] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [28290] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1581), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1591), 1, sym__ternary_qmark, - ACTIONS(1734), 1, + ACTIONS(1776), 1, anon_sym_COMMA, - ACTIONS(1810), 1, + ACTIONS(1784), 1, anon_sym_RPAREN, - STATE(1118), 1, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30515] = 3, + [28383] = 6, + ACTIONS(530), 1, + anon_sym_EQ, + ACTIONS(1526), 1, + anon_sym_RBRACK, + ACTIONS(1657), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1391), 12, + ACTIONS(526), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -64938,14 +62284,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1393), 26, - sym__automatic_semicolon, + ACTIONS(528), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -64965,1953 +62306,2164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30562] = 6, - ACTIONS(1622), 1, + [28434] = 27, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1727), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1582), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1559), 1, anon_sym_GT_GT, + ACTIONS(1563), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1584), 23, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, anon_sym_AMP_AMP, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1585), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [30615] = 3, + ACTIONS(1591), 1, + sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1786), 1, + anon_sym_RPAREN, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1570), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1572), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [30662] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, + [28527] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1640), 1, - anon_sym_AMP_AMP, - ACTIONS(1642), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, + ACTIONS(1746), 1, anon_sym_GT_GT, - ACTIONS(1648), 1, + ACTIONS(1750), 1, anon_sym_AMP, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, + ACTIONS(1754), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, + ACTIONS(1756), 1, anon_sym_STAR_STAR, - ACTIONS(1666), 1, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_CARET, + ACTIONS(1770), 1, + anon_sym_PIPE, + ACTIONS(1772), 1, anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, + ACTIONS(1774), 1, sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1742), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1646), 2, + ACTIONS(1748), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1654), 2, + ACTIONS(1752), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + ACTIONS(1760), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, + ACTIONS(1762), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1660), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1710), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [30755] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1500), 12, - anon_sym_STAR, + ACTIONS(1438), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(1744), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1502), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1758), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [30802] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [28616] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1581), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1591), 1, sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1788), 1, + anon_sym_RBRACK, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1812), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [30895] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1427), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1429), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [28709] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1746), 1, + anon_sym_GT_GT, + ACTIONS(1750), 1, + anon_sym_AMP, + ACTIONS(1754), 1, + anon_sym_PERCENT, + ACTIONS(1756), 1, + anon_sym_STAR_STAR, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1770), 1, + anon_sym_PIPE, + ACTIONS(1772), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [30942] = 4, - ACTIONS(1808), 1, - sym_regex_flags, + ACTIONS(1774), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1381), 14, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1742), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_of, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1748), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1752), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1760), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1762), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1579), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(1744), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1383), 23, - sym__automatic_semicolon, - sym__ternary_qmark, + [28798] = 27, + ACTIONS(707), 1, anon_sym_COMMA, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, anon_sym_AMP_AMP, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1585), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [30991] = 3, + ACTIONS(1591), 1, + sym__ternary_qmark, + ACTIONS(1790), 1, + anon_sym_RBRACK, + STATE(550), 1, + sym_arguments, + STATE(1363), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1488), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1490), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [28891] = 25, + ACTIONS(1597), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1599), 1, anon_sym_LBRACK, + ACTIONS(1601), 1, anon_sym_DOT, + ACTIONS(1611), 1, sym_optional_chain, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1623), 1, anon_sym_AMP_AMP, + ACTIONS(1625), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1627), 1, + anon_sym_GT_GT, + ACTIONS(1631), 1, + anon_sym_AMP, + ACTIONS(1633), 1, anon_sym_CARET, + ACTIONS(1635), 1, + anon_sym_PIPE, + ACTIONS(1639), 1, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1647), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [31038] = 3, + ACTIONS(1649), 1, + sym__ternary_qmark, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1582), 12, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1619), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1584), 26, + ACTIONS(1645), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1621), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1641), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1706), 3, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + [28980] = 27, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, anon_sym_AMP_AMP, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1585), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [31085] = 3, + ACTIONS(1591), 1, + sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1792), 1, + anon_sym_RPAREN, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1431), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1433), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29073] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1746), 1, + anon_sym_GT_GT, + ACTIONS(1750), 1, + anon_sym_AMP, + ACTIONS(1754), 1, + anon_sym_PERCENT, + ACTIONS(1756), 1, + anon_sym_STAR_STAR, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1770), 1, + anon_sym_PIPE, + ACTIONS(1772), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [31132] = 5, - ACTIONS(537), 1, - sym__automatic_semicolon, + ACTIONS(1774), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(529), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(533), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1742), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1748), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1752), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1760), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(535), 23, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(1762), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1607), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(1744), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29162] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1746), 1, + anon_sym_GT_GT, + ACTIONS(1750), 1, + anon_sym_AMP, + ACTIONS(1754), 1, + anon_sym_PERCENT, + ACTIONS(1756), 1, + anon_sym_STAR_STAR, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1770), 1, + anon_sym_PIPE, + ACTIONS(1772), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [31183] = 3, + ACTIONS(1774), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1570), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1742), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1748), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1752), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1760), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1572), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1762), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1487), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(1744), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29251] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1746), 1, + anon_sym_GT_GT, + ACTIONS(1750), 1, + anon_sym_AMP, + ACTIONS(1754), 1, + anon_sym_PERCENT, + ACTIONS(1756), 1, + anon_sym_STAR_STAR, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_CARET, + ACTIONS(1770), 1, + anon_sym_PIPE, + ACTIONS(1772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1774), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1742), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1748), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1752), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1760), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1762), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1512), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(1744), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [31230] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [29340] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1581), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1591), 1, sym__ternary_qmark, - ACTIONS(1734), 1, + ACTIONS(1776), 1, anon_sym_COMMA, - ACTIONS(1814), 1, - anon_sym_RPAREN, - STATE(1118), 1, + ACTIONS(1794), 1, + anon_sym_RBRACK, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31327] = 3, + [29433] = 25, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_DOT, + ACTIONS(1611), 1, + sym_optional_chain, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1623), 1, + anon_sym_AMP_AMP, + ACTIONS(1625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1627), 1, + anon_sym_GT_GT, + ACTIONS(1631), 1, + anon_sym_AMP, + ACTIONS(1633), 1, + anon_sym_CARET, + ACTIONS(1635), 1, + anon_sym_PIPE, + ACTIONS(1639), 1, + anon_sym_PERCENT, + ACTIONS(1647), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1649), 1, + sym__ternary_qmark, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1423), 12, + ACTIONS(1615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1619), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1425), 26, + ACTIONS(1645), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1613), 3, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + ACTIONS(1621), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1641), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29522] = 27, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, anon_sym_AMP_AMP, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1796), 1, + anon_sym_RPAREN, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1567), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1575), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [31374] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [29615] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1581), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1591), 1, sym__ternary_qmark, - ACTIONS(1734), 1, + ACTIONS(1776), 1, anon_sym_COMMA, - ACTIONS(1816), 1, - anon_sym_SEMI, - STATE(1118), 1, + ACTIONS(1798), 1, + anon_sym_RPAREN, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31471] = 3, + [29708] = 27, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1800), 1, + anon_sym_RPAREN, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(577), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(579), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29801] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1746), 1, + anon_sym_GT_GT, + ACTIONS(1750), 1, + anon_sym_AMP, + ACTIONS(1754), 1, + anon_sym_PERCENT, + ACTIONS(1756), 1, + anon_sym_STAR_STAR, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1770), 1, + anon_sym_PIPE, + ACTIONS(1772), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [31518] = 5, - ACTIONS(1322), 1, - anon_sym_EQ, + ACTIONS(1774), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1258), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1742), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1748), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1752), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1760), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1260), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1762), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1595), 3, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_BQUOTE, - [31569] = 5, - ACTIONS(1328), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1325), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1258), 12, - anon_sym_STAR, + ACTIONS(1744), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1260), 21, - sym__ternary_qmark, + ACTIONS(1758), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29890] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1746), 1, + anon_sym_GT_GT, + ACTIONS(1750), 1, + anon_sym_AMP, + ACTIONS(1754), 1, + anon_sym_PERCENT, + ACTIONS(1756), 1, + anon_sym_STAR_STAR, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1770), 1, + anon_sym_PIPE, + ACTIONS(1772), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [31620] = 3, + ACTIONS(1774), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(543), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1742), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1748), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1752), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1760), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(545), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1762), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1605), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(1744), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [31667] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [29979] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1581), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1591), 1, sym__ternary_qmark, - ACTIONS(1734), 1, + ACTIONS(1776), 1, anon_sym_COMMA, - ACTIONS(1818), 1, - anon_sym_RPAREN, - STATE(1118), 1, + ACTIONS(1802), 1, + anon_sym_SEMI, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31764] = 28, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(718), 1, - anon_sym_COMMA, - ACTIONS(1349), 1, + [30072] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1581), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1591), 1, sym__ternary_qmark, - ACTIONS(1820), 1, - anon_sym_RBRACK, - STATE(1368), 1, - aux_sym_array_repeat1, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1804), 1, + anon_sym_COLON, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31861] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(533), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(535), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [30165] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, anon_sym_AMP_AMP, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1585), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [31908] = 3, + ACTIONS(1591), 1, + sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1806), 1, + anon_sym_SEMI, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1435), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1437), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [31955] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, + [30258] = 27, + ACTIONS(707), 1, + anon_sym_COMMA, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1640), 1, - anon_sym_AMP_AMP, - ACTIONS(1642), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1648), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1666), 1, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, + ACTIONS(1591), 1, sym__ternary_qmark, + ACTIONS(1808), 1, + anon_sym_RPAREN, + STATE(550), 1, + sym_arguments, + STATE(1375), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1646), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1654), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1822), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1660), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32047] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [30351] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_AMP_AMP, - ACTIONS(1830), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1840), 1, - anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1854), 1, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1856), 1, + ACTIONS(1591), 1, sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1810), 1, + anon_sym_RPAREN, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1463), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1824), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32139] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [30444] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_AMP_AMP, - ACTIONS(1830), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1840), 1, - anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1854), 1, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1856), 1, + ACTIONS(1591), 1, sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1812), 1, + anon_sym_SEMI, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1494), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1824), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32231] = 16, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [30537] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1832), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1844), 1, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1814), 1, + anon_sym_RBRACK, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1824), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 7, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 12, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [32303] = 11, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [30630] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1846), 1, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, anon_sym_STAR_STAR, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1816), 1, + anon_sym_RBRACE, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 12, + ACTIONS(1553), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 15, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [32365] = 22, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [30723] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1832), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1840), 1, - anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1818), 1, + anon_sym_SEMI, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1824), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1397), 6, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [32449] = 23, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [30816] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_AMP_AMP, - ACTIONS(1832), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1840), 1, - anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1820), 1, + anon_sym_RBRACK, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1824), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1397), 5, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [32535] = 14, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [30909] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1844), 1, + ACTIONS(1746), 1, + anon_sym_GT_GT, + ACTIONS(1750), 1, + anon_sym_AMP, + ACTIONS(1754), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1756), 1, anon_sym_STAR_STAR, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_CARET, + ACTIONS(1770), 1, + anon_sym_PIPE, + ACTIONS(1772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1774), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1824), 2, + ACTIONS(1742), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1842), 2, - anon_sym_PLUS, + ACTIONS(1748), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1752), 2, + anon_sym_PLUS, anon_sym_DASH, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 8, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1760), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 14, - sym__ternary_qmark, + ACTIONS(1762), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1593), 3, anon_sym_LBRACE, anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + anon_sym_BQUOTE, + ACTIONS(1744), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [32603] = 20, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [30998] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1832), 1, + ACTIONS(1746), 1, anon_sym_GT_GT, - ACTIONS(1844), 1, + ACTIONS(1750), 1, + anon_sym_AMP, + ACTIONS(1754), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1756), 1, anon_sym_STAR_STAR, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_CARET, + ACTIONS(1770), 1, + anon_sym_PIPE, + ACTIONS(1772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1774), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1409), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1824), 2, + ACTIONS(1742), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1748), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1752), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1760), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1762), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1609), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(1744), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1758), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1397), 7, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [32683] = 21, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1409), 1, - anon_sym_PIPE, - ACTIONS(1832), 1, - anon_sym_GT_GT, - ACTIONS(1836), 1, - anon_sym_AMP, - ACTIONS(1844), 1, - anon_sym_PERCENT, - ACTIONS(1846), 1, - anon_sym_STAR_STAR, + [31087] = 6, + ACTIONS(1452), 1, + anon_sym_RBRACK, + ACTIONS(1455), 1, + anon_sym_EQ, + ACTIONS(1653), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1824), 2, + ACTIONS(1448), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1834), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1842), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1848), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1397), 7, + ACTIONS(1450), 21, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [32765] = 22, - ACTIONS(407), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [31138] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1409), 1, - anon_sym_PIPE, - ACTIONS(1832), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1844), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1822), 1, + anon_sym_RPAREN, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1824), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1397), 6, + [31231] = 6, + ACTIONS(1303), 1, + anon_sym_RBRACK, + ACTIONS(1306), 1, + anon_sym_EQ, + ACTIONS(1311), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1251), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1253), 21, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [32849] = 26, - ACTIONS(407), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [31282] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_AMP_AMP, - ACTIONS(1830), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1746), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1750), 1, anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1840), 1, - anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1754), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1756), 1, anon_sym_STAR_STAR, - ACTIONS(1854), 1, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_CARET, + ACTIONS(1770), 1, + anon_sym_PIPE, + ACTIONS(1772), 1, anon_sym_QMARK_QMARK, - ACTIONS(1856), 1, + ACTIONS(1774), 1, sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1439), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1824), 2, + ACTIONS(1742), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1748), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1752), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1760), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1762), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1418), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(1744), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1758), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32941] = 13, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [31371] = 15, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1844), 1, + ACTIONS(1746), 1, + anon_sym_GT_GT, + ACTIONS(1754), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1756), 1, anon_sym_STAR_STAR, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1824), 2, + ACTIONS(1742), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 10, + ACTIONS(1748), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1752), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1565), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 14, + ACTIONS(1555), 13, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -66919,29 +64471,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [33007] = 11, - ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [31440] = 10, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1846), 1, + ACTIONS(1756), 1, anon_sym_STAR_STAR, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 12, + ACTIONS(1565), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -66954,7 +64504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 15, + ACTIONS(1555), 16, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, @@ -66970,1028 +64520,1108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [33069] = 18, - ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [31499] = 27, + ACTIONS(707), 1, + anon_sym_COMMA, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1832), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1844), 1, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + ACTIONS(1824), 1, + anon_sym_RBRACK, + STATE(550), 1, + sym_arguments, + STATE(1350), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1824), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1575), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1409), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1397), 9, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [33145] = 24, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [31592] = 21, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_AMP_AMP, - ACTIONS(1830), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1746), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1750), 1, anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1840), 1, - anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1754), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1756), 1, anon_sym_STAR_STAR, + ACTIONS(1768), 1, + anon_sym_CARET, + ACTIONS(1770), 1, + anon_sym_PIPE, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1824), 2, + ACTIONS(1742), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1748), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1752), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1760), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1762), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1744), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1758), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1397), 4, + ACTIONS(1555), 7, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [33233] = 26, - ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [31673] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_AMP_AMP, - ACTIONS(1830), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1840), 1, - anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1854), 1, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1856), 1, + ACTIONS(1591), 1, sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1826), 1, + anon_sym_RPAREN, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1515), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1824), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33325] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [31766] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_AMP_AMP, - ACTIONS(1830), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1840), 1, - anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1854), 1, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1856), 1, + ACTIONS(1591), 1, sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1828), 1, + anon_sym_RPAREN, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1523), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1824), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33417] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [31859] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_AMP_AMP, - ACTIONS(1830), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1840), 1, - anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1854), 1, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1856), 1, + ACTIONS(1591), 1, sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1830), 1, + anon_sym_RBRACE, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1453), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1824), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33509] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [31952] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_AMP_AMP, - ACTIONS(1830), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1746), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1750), 1, anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1840), 1, - anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1754), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1756), 1, anon_sym_STAR_STAR, - ACTIONS(1854), 1, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_CARET, + ACTIONS(1770), 1, + anon_sym_PIPE, + ACTIONS(1772), 1, anon_sym_QMARK_QMARK, - ACTIONS(1856), 1, + ACTIONS(1774), 1, sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1519), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1824), 2, + ACTIONS(1742), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1748), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1752), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1760), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1762), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1479), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(1744), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1758), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33601] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [32041] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_AMP_AMP, - ACTIONS(1830), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1840), 1, - anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1854), 1, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1856), 1, + ACTIONS(1591), 1, sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1832), 1, + anon_sym_RPAREN, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1552), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1824), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33693] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [32134] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_AMP_AMP, - ACTIONS(1830), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1840), 1, - anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1854), 1, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1856), 1, + ACTIONS(1591), 1, sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1834), 1, + anon_sym_RPAREN, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1580), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1824), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33785] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [32227] = 22, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_AMP_AMP, - ACTIONS(1830), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1746), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1750), 1, anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1840), 1, - anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1754), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1756), 1, anon_sym_STAR_STAR, - ACTIONS(1854), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1856), 1, - sym__ternary_qmark, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1768), 1, + anon_sym_CARET, + ACTIONS(1770), 1, + anon_sym_PIPE, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1529), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1824), 2, + ACTIONS(1742), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1748), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1752), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1760), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1762), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1744), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1758), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33877] = 26, - ACTIONS(407), 1, + ACTIONS(1555), 6, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [32310] = 27, + ACTIONS(707), 1, + anon_sym_COMMA, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_AMP_AMP, - ACTIONS(1830), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1840), 1, - anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1854), 1, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1856), 1, + ACTIONS(1591), 1, sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1357), 2, + ACTIONS(1836), 1, + anon_sym_RPAREN, + STATE(550), 1, + sym_arguments, + STATE(1312), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1478), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1824), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32403] = 13, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1754), 1, + anon_sym_PERCENT, + ACTIONS(1756), 1, + anon_sym_STAR_STAR, + STATE(550), 1, sym_arguments, - ACTIONS(1826), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1742), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1752), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1565), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1555), 15, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [33969] = 26, - ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [32468] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1581), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1591), 1, sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1838), 1, + anon_sym_RBRACE, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1858), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34061] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [32561] = 19, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_AMP_AMP, - ACTIONS(1830), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1746), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, - anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1840), 1, - anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1754), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1756), 1, anon_sym_STAR_STAR, - ACTIONS(1854), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1856), 1, - sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1486), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1824), 2, + ACTIONS(1565), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1742), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1748), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1752), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1760), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1762), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1744), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1758), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34153] = 6, - ACTIONS(1308), 1, - anon_sym_EQ, - ACTIONS(1334), 1, - anon_sym_in, - ACTIONS(1337), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1258), 11, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1260), 23, + ACTIONS(1555), 8, sym__ternary_qmark, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [32638] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, anon_sym_AMP_AMP, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1585), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [34205] = 5, - ACTIONS(1860), 1, - anon_sym_LPAREN, - ACTIONS(1863), 1, - anon_sym_COLON, + ACTIONS(1591), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1435), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1437), 23, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1840), 3, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + [32727] = 23, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1746), 1, + anon_sym_GT_GT, + ACTIONS(1750), 1, + anon_sym_AMP, + ACTIONS(1754), 1, + anon_sym_PERCENT, + ACTIONS(1756), 1, + anon_sym_STAR_STAR, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [34255] = 6, - ACTIONS(523), 1, - anon_sym_EQ, - ACTIONS(1754), 1, - anon_sym_of, - ACTIONS(1865), 1, - anon_sym_in, + ACTIONS(1770), 1, + anon_sym_PIPE, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(519), 11, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1742), 2, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1748), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1752), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1760), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(521), 23, + ACTIONS(1762), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1744), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1555), 5, sym__ternary_qmark, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [32812] = 21, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(1565), 1, + anon_sym_PIPE, + ACTIONS(1746), 1, + anon_sym_GT_GT, + ACTIONS(1750), 1, + anon_sym_AMP, + ACTIONS(1754), 1, anon_sym_PERCENT, + ACTIONS(1756), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [34307] = 6, - ACTIONS(1476), 1, - anon_sym_EQ, ACTIONS(1768), 1, - anon_sym_of, - ACTIONS(1868), 1, - anon_sym_in, + anon_sym_CARET, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1469), 11, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1742), 2, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1748), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1752), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1760), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 23, + ACTIONS(1762), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1744), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1555), 7, sym__ternary_qmark, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [32893] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, anon_sym_AMP_AMP, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1585), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [34359] = 5, - ACTIONS(1308), 1, - anon_sym_EQ, + ACTIONS(1591), 1, + sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1842), 1, + anon_sym_RPAREN, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1331), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1258), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1260), 21, - sym__ternary_qmark, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32986] = 12, + ACTIONS(1342), 1, anon_sym_LPAREN, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(1754), 1, anon_sym_PERCENT, + ACTIONS(1756), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [34409] = 6, - ACTIONS(1550), 1, - anon_sym_EQ, - ACTIONS(1776), 1, - anon_sym_of, - ACTIONS(1871), 1, - anon_sym_in, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1543), 11, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1742), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1565), 10, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -67999,174 +65629,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1545), 23, + ACTIONS(1555), 15, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [34461] = 26, - ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [33049] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1581), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1591), 1, sym__ternary_qmark, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1844), 1, + anon_sym_RPAREN, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1720), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34553] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [33142] = 27, + ACTIONS(707), 1, + anon_sym_COMMA, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1581), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1591), 1, sym__ternary_qmark, + ACTIONS(1846), 1, + anon_sym_RPAREN, + STATE(550), 1, + sym_arguments, + STATE(1290), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1725), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34645] = 5, - ACTIONS(1874), 1, + [33235] = 10, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1877), 1, - anon_sym_COLON, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1756), 1, + anon_sym_STAR_STAR, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1258), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1565), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -68179,1434 +65811,1794 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1260), 23, - sym__automatic_semicolon, + ACTIONS(1555), 16, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [34695] = 27, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, + [33294] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1640), 1, - anon_sym_AMP_AMP, - ACTIONS(1642), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1644), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1648), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1658), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1666), 1, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1668), 1, + ACTIONS(1591), 1, sym__ternary_qmark, - ACTIONS(1879), 1, - anon_sym_SEMI, - ACTIONS(1881), 1, - sym__automatic_semicolon, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1848), 1, + anon_sym_RPAREN, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1636), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1646), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1654), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1662), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1664), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1638), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1660), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34789] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [33387] = 17, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_AMP_AMP, - ACTIONS(1830), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1746), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, - anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1840), 1, - anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1754), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1756), 1, anon_sym_STAR_STAR, - ACTIONS(1854), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1856), 1, - sym__ternary_qmark, - ACTIONS(1883), 1, - anon_sym_COLON, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1824), 2, + ACTIONS(1742), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1748), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1752), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1852), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1744), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1758), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34880] = 26, - ACTIONS(407), 1, + ACTIONS(1565), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1555), 10, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [33460] = 27, + ACTIONS(707), 1, + anon_sym_COMMA, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1515), 1, - anon_sym_of, - ACTIONS(1889), 1, - anon_sym_AMP_AMP, - ACTIONS(1891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1893), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1897), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1899), 1, - anon_sym_CARET, - ACTIONS(1901), 1, - anon_sym_PIPE, - ACTIONS(1905), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1915), 1, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1917), 1, + ACTIONS(1591), 1, sym__ternary_qmark, + ACTIONS(1850), 1, + anon_sym_RBRACK, + STATE(550), 1, + sym_arguments, + STATE(1350), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1903), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1887), 3, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1909), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34971] = 6, - ACTIONS(523), 1, - anon_sym_EQ, - ACTIONS(1504), 1, - anon_sym_RBRACK, - ACTIONS(1754), 1, + [33553] = 27, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1559), 1, + anon_sym_GT_GT, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_PERCENT, + ACTIONS(1571), 1, + anon_sym_STAR_STAR, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + ACTIONS(1776), 1, anon_sym_COMMA, + ACTIONS(1852), 1, + anon_sym_SEMI, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(519), 12, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1553), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1561), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1567), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1575), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(521), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1573), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [35022] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [33646] = 27, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_AMP_AMP, - ACTIONS(1830), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1840), 1, - anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1854), 1, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1856), 1, + ACTIONS(1591), 1, sym__ternary_qmark, - ACTIONS(1919), 1, - anon_sym_COLON, + ACTIONS(1776), 1, + anon_sym_COMMA, + ACTIONS(1854), 1, + anon_sym_SEMI, + STATE(550), 1, + sym_arguments, + STATE(1096), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1824), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1848), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [35113] = 6, - ACTIONS(1473), 1, - anon_sym_RBRACK, - ACTIONS(1476), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1469), 12, - anon_sym_STAR, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1471), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1573), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [35164] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [33739] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1529), 1, - anon_sym_of, - ACTIONS(1889), 1, + ACTIONS(1860), 1, anon_sym_AMP_AMP, - ACTIONS(1891), 1, + ACTIONS(1862), 1, anon_sym_PIPE_PIPE, - ACTIONS(1893), 1, + ACTIONS(1864), 1, anon_sym_GT_GT, - ACTIONS(1897), 1, + ACTIONS(1868), 1, anon_sym_AMP, - ACTIONS(1899), 1, + ACTIONS(1870), 1, anon_sym_CARET, - ACTIONS(1901), 1, + ACTIONS(1872), 1, anon_sym_PIPE, - ACTIONS(1905), 1, + ACTIONS(1876), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1878), 1, anon_sym_STAR_STAR, - ACTIONS(1915), 1, + ACTIONS(1886), 1, anon_sym_QMARK_QMARK, - ACTIONS(1917), 1, + ACTIONS(1888), 1, sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1438), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(1856), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 2, + ACTIONS(1866), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1903), 2, + ACTIONS(1874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1884), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1887), 3, + ACTIONS(1858), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1909), 3, + ACTIONS(1880), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35255] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [33827] = 24, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(101), 1, + anon_sym_STAR, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(113), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(1892), 1, + anon_sym_LBRACE, + ACTIONS(1894), 1, + anon_sym_RBRACE, + ACTIONS(1896), 1, + anon_sym_LBRACK, + ACTIONS(1898), 1, + anon_sym_async, + ACTIONS(1902), 1, + anon_sym_static, + STATE(913), 1, + aux_sym_export_statement_repeat1, + STATE(1004), 1, + sym_decorator, + STATE(1287), 1, + aux_sym_object_pattern_repeat1, + STATE(1322), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1900), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1904), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1890), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1284), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1320), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1351), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1646), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [33913] = 25, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1828), 1, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1623), 1, anon_sym_AMP_AMP, - ACTIONS(1830), 1, + ACTIONS(1625), 1, anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1627), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1631), 1, anon_sym_AMP, - ACTIONS(1838), 1, + ACTIONS(1633), 1, anon_sym_CARET, - ACTIONS(1840), 1, + ACTIONS(1635), 1, anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1639), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, - anon_sym_STAR_STAR, - ACTIONS(1854), 1, + ACTIONS(1647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1856), 1, + ACTIONS(1649), 1, sym__ternary_qmark, - ACTIONS(1921), 1, - anon_sym_COLON, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1824), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1906), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35346] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [34001] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1486), 1, - anon_sym_of, - ACTIONS(1889), 1, - anon_sym_AMP_AMP, - ACTIONS(1891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1893), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1897), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1899), 1, - anon_sym_CARET, - ACTIONS(1901), 1, - anon_sym_PIPE, - ACTIONS(1905), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1915), 1, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1917), 1, + ACTIONS(1591), 1, sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1903), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1887), 3, + ACTIONS(1908), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1909), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35437] = 26, - ACTIONS(407), 1, + [34089] = 4, + ACTIONS(1402), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1398), 14, + anon_sym_STAR, + anon_sym_in, + anon_sym_of, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + ACTIONS(1400), 20, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [34135] = 24, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(101), 1, + anon_sym_STAR, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(113), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(1892), 1, + anon_sym_LBRACE, + ACTIONS(1896), 1, + anon_sym_LBRACK, + ACTIONS(1912), 1, + anon_sym_RBRACE, + ACTIONS(1914), 1, + anon_sym_async, + ACTIONS(1916), 1, + anon_sym_static, + STATE(913), 1, + aux_sym_export_statement_repeat1, + STATE(1004), 1, + sym_decorator, + STATE(1286), 1, + aux_sym_object_repeat1, + STATE(1287), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1900), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1918), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1910), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1284), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1351), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1360), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1646), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [34221] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1580), 1, - anon_sym_of, - ACTIONS(1889), 1, + ACTIONS(1860), 1, anon_sym_AMP_AMP, - ACTIONS(1891), 1, + ACTIONS(1862), 1, anon_sym_PIPE_PIPE, - ACTIONS(1893), 1, + ACTIONS(1864), 1, anon_sym_GT_GT, - ACTIONS(1897), 1, + ACTIONS(1868), 1, anon_sym_AMP, - ACTIONS(1899), 1, + ACTIONS(1870), 1, anon_sym_CARET, - ACTIONS(1901), 1, + ACTIONS(1872), 1, anon_sym_PIPE, - ACTIONS(1905), 1, + ACTIONS(1876), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1878), 1, anon_sym_STAR_STAR, - ACTIONS(1915), 1, + ACTIONS(1886), 1, anon_sym_QMARK_QMARK, - ACTIONS(1917), 1, + ACTIONS(1888), 1, sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1579), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(1856), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 2, + ACTIONS(1866), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1903), 2, + ACTIONS(1874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1884), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1887), 3, + ACTIONS(1858), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1909), 3, + ACTIONS(1880), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35528] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [34309] = 26, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1601), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1611), 1, sym_optional_chain, - ACTIONS(1519), 1, - anon_sym_of, - ACTIONS(1889), 1, + ACTIONS(1617), 1, + anon_sym_STAR_STAR, + ACTIONS(1623), 1, anon_sym_AMP_AMP, - ACTIONS(1891), 1, + ACTIONS(1625), 1, anon_sym_PIPE_PIPE, - ACTIONS(1893), 1, + ACTIONS(1627), 1, anon_sym_GT_GT, - ACTIONS(1897), 1, + ACTIONS(1631), 1, anon_sym_AMP, - ACTIONS(1899), 1, + ACTIONS(1633), 1, anon_sym_CARET, - ACTIONS(1901), 1, + ACTIONS(1635), 1, anon_sym_PIPE, - ACTIONS(1905), 1, + ACTIONS(1639), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_STAR_STAR, - ACTIONS(1915), 1, + ACTIONS(1647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1917), 1, + ACTIONS(1649), 1, sym__ternary_qmark, + ACTIONS(1920), 1, + anon_sym_SEMI, + ACTIONS(1922), 1, + sym__automatic_semicolon, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 2, + ACTIONS(1629), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1903), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, + ACTIONS(1643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1887), 3, + ACTIONS(1621), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1909), 3, + ACTIONS(1641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35619] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [34399] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1478), 1, - anon_sym_of, - ACTIONS(1889), 1, - anon_sym_AMP_AMP, - ACTIONS(1891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1893), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1897), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1899), 1, - anon_sym_CARET, - ACTIONS(1901), 1, - anon_sym_PIPE, - ACTIONS(1905), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1915), 1, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1917), 1, + ACTIONS(1591), 1, sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1903), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1887), 3, + ACTIONS(1714), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1909), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35710] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [34487] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, + ACTIONS(1563), 1, anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, + ACTIONS(1581), 1, anon_sym_AMP_AMP, - ACTIONS(1443), 1, + ACTIONS(1583), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, anon_sym_PIPE, - ACTIONS(1447), 1, + ACTIONS(1589), 1, anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, + ACTIONS(1591), 1, sym__ternary_qmark, - ACTIONS(1923), 1, - anon_sym_RBRACK, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1575), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1577), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1740), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35801] = 14, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, + [34575] = 24, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(101), 1, + anon_sym_STAR, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(113), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(1892), 1, + anon_sym_LBRACE, + ACTIONS(1896), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1905), 1, - anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_STAR_STAR, + ACTIONS(1926), 1, + anon_sym_RBRACE, + ACTIONS(1928), 1, + anon_sym_async, + ACTIONS(1930), 1, + anon_sym_static, + STATE(913), 1, + aux_sym_export_statement_repeat1, + STATE(1004), 1, + sym_decorator, + STATE(1287), 1, + aux_sym_object_pattern_repeat1, + STATE(1322), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1900), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1932), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1924), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1284), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1320), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1351), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1646), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [34661] = 24, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(101), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1903), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 8, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(113), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(1892), 1, + anon_sym_LBRACE, + ACTIONS(1896), 1, + anon_sym_LBRACK, + ACTIONS(1936), 1, + anon_sym_RBRACE, + ACTIONS(1938), 1, + anon_sym_async, + ACTIONS(1940), 1, + anon_sym_static, + STATE(913), 1, + aux_sym_export_statement_repeat1, + STATE(1004), 1, + sym_decorator, + STATE(1287), 1, + aux_sym_object_pattern_repeat1, + STATE(1322), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1900), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1942), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1934), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1284), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1320), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1351), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1646), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [34747] = 24, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(101), 1, + anon_sym_STAR, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(113), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(1892), 1, + anon_sym_LBRACE, + ACTIONS(1896), 1, + anon_sym_LBRACK, + ACTIONS(1946), 1, + anon_sym_RBRACE, + ACTIONS(1948), 1, + anon_sym_async, + ACTIONS(1950), 1, + anon_sym_static, + STATE(913), 1, + aux_sym_export_statement_repeat1, + STATE(1004), 1, + sym_decorator, + STATE(1287), 1, + aux_sym_object_pattern_repeat1, + STATE(1322), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1900), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1952), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1944), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1284), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1320), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1351), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1646), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [34833] = 24, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(101), 1, + anon_sym_STAR, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(113), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(1892), 1, + anon_sym_LBRACE, + ACTIONS(1896), 1, + anon_sym_LBRACK, + ACTIONS(1956), 1, + anon_sym_RBRACE, + ACTIONS(1958), 1, + anon_sym_async, + ACTIONS(1960), 1, + anon_sym_static, + STATE(913), 1, + aux_sym_export_statement_repeat1, + STATE(1004), 1, + sym_decorator, + STATE(1287), 1, + aux_sym_object_pattern_repeat1, + STATE(1322), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1900), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1962), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1954), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1284), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1320), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1351), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1646), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [34919] = 6, + ACTIONS(1264), 1, + anon_sym_EQ, + ACTIONS(1329), 1, anon_sym_in, + ACTIONS(1332), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1251), 11, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 13, + ACTIONS(1253), 21, sym__ternary_qmark, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [35868] = 20, - ACTIONS(407), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [34969] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1893), 1, + ACTIONS(1860), 1, + anon_sym_AMP_AMP, + ACTIONS(1862), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1864), 1, anon_sym_GT_GT, - ACTIONS(1905), 1, + ACTIONS(1868), 1, + anon_sym_AMP, + ACTIONS(1870), 1, + anon_sym_CARET, + ACTIONS(1872), 1, + anon_sym_PIPE, + ACTIONS(1876), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1878), 1, anon_sym_STAR_STAR, + ACTIONS(1886), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1888), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1409), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1885), 2, + ACTIONS(1605), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(1856), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 2, + ACTIONS(1866), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1903), 2, + ACTIONS(1874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1884), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1887), 3, + ACTIONS(1858), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1909), 3, + ACTIONS(1880), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1397), 6, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [35947] = 21, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1409), 1, - anon_sym_PIPE, - ACTIONS(1893), 1, - anon_sym_GT_GT, - ACTIONS(1897), 1, - anon_sym_AMP, - ACTIONS(1905), 1, - anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_STAR_STAR, + [35057] = 4, + ACTIONS(1336), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1251), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1903), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1887), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1909), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1397), 6, + ACTIONS(1253), 22, sym__ternary_qmark, + anon_sym_LPAREN, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [36028] = 26, - ACTIONS(407), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [35103] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1453), 1, - anon_sym_of, - ACTIONS(1889), 1, + ACTIONS(1860), 1, anon_sym_AMP_AMP, - ACTIONS(1891), 1, + ACTIONS(1862), 1, anon_sym_PIPE_PIPE, - ACTIONS(1893), 1, + ACTIONS(1864), 1, anon_sym_GT_GT, - ACTIONS(1897), 1, + ACTIONS(1868), 1, anon_sym_AMP, - ACTIONS(1899), 1, + ACTIONS(1870), 1, anon_sym_CARET, - ACTIONS(1901), 1, + ACTIONS(1872), 1, anon_sym_PIPE, - ACTIONS(1905), 1, + ACTIONS(1876), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1878), 1, anon_sym_STAR_STAR, - ACTIONS(1915), 1, + ACTIONS(1886), 1, anon_sym_QMARK_QMARK, - ACTIONS(1917), 1, + ACTIONS(1888), 1, sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1607), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(1856), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 2, + ACTIONS(1866), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1903), 2, + ACTIONS(1874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1884), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1887), 3, + ACTIONS(1858), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1909), 3, + ACTIONS(1880), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36119] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [35191] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, + ACTIONS(1860), 1, anon_sym_AMP_AMP, - ACTIONS(1830), 1, + ACTIONS(1862), 1, anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1864), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1868), 1, anon_sym_AMP, - ACTIONS(1838), 1, + ACTIONS(1870), 1, anon_sym_CARET, - ACTIONS(1840), 1, + ACTIONS(1872), 1, anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1876), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1878), 1, anon_sym_STAR_STAR, - ACTIONS(1854), 1, + ACTIONS(1886), 1, anon_sym_QMARK_QMARK, - ACTIONS(1856), 1, + ACTIONS(1888), 1, sym__ternary_qmark, - ACTIONS(1925), 1, - anon_sym_LBRACE, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1824), 2, + ACTIONS(1593), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(1856), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1866), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1884), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1858), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1880), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36210] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [35279] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1439), 1, - anon_sym_of, - ACTIONS(1889), 1, + ACTIONS(1860), 1, anon_sym_AMP_AMP, - ACTIONS(1891), 1, + ACTIONS(1862), 1, anon_sym_PIPE_PIPE, - ACTIONS(1893), 1, + ACTIONS(1864), 1, anon_sym_GT_GT, - ACTIONS(1897), 1, + ACTIONS(1868), 1, anon_sym_AMP, - ACTIONS(1899), 1, + ACTIONS(1870), 1, anon_sym_CARET, - ACTIONS(1901), 1, + ACTIONS(1872), 1, anon_sym_PIPE, - ACTIONS(1905), 1, + ACTIONS(1876), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1878), 1, anon_sym_STAR_STAR, - ACTIONS(1915), 1, + ACTIONS(1886), 1, anon_sym_QMARK_QMARK, - ACTIONS(1917), 1, + ACTIONS(1888), 1, sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1418), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(1856), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 2, + ACTIONS(1866), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1903), 2, + ACTIONS(1874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1884), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1887), 3, + ACTIONS(1858), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1909), 3, + ACTIONS(1880), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36301] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [35367] = 15, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_AMP_AMP, - ACTIONS(1830), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1864), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, - anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1840), 1, - anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1876), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1878), 1, anon_sym_STAR_STAR, - ACTIONS(1854), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1856), 1, - sym__ternary_qmark, - ACTIONS(1927), 1, - anon_sym_COLON, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1824), 2, + ACTIONS(1856), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1866), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1565), 7, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1555), 12, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [35435] = 10, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1878), 1, + anon_sym_STAR_STAR, + STATE(550), 1, sym_arguments, - ACTIONS(1826), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1565), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1555), 15, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [36392] = 22, - ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [35493] = 21, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1409), 1, - anon_sym_PIPE, - ACTIONS(1893), 1, + ACTIONS(1864), 1, anon_sym_GT_GT, - ACTIONS(1897), 1, + ACTIONS(1868), 1, anon_sym_AMP, - ACTIONS(1899), 1, + ACTIONS(1870), 1, anon_sym_CARET, - ACTIONS(1905), 1, + ACTIONS(1872), 1, + anon_sym_PIPE, + ACTIONS(1876), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1878), 1, anon_sym_STAR_STAR, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1856), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 2, + ACTIONS(1866), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1903), 2, + ACTIONS(1874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1884), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1887), 3, + ACTIONS(1858), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1909), 3, + ACTIONS(1880), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1397), 5, + ACTIONS(1555), 6, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [36475] = 26, - ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [35573] = 22, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1463), 1, - anon_sym_of, - ACTIONS(1889), 1, + ACTIONS(1860), 1, anon_sym_AMP_AMP, - ACTIONS(1891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1893), 1, + ACTIONS(1864), 1, anon_sym_GT_GT, - ACTIONS(1897), 1, + ACTIONS(1868), 1, anon_sym_AMP, - ACTIONS(1899), 1, + ACTIONS(1870), 1, anon_sym_CARET, - ACTIONS(1901), 1, + ACTIONS(1872), 1, anon_sym_PIPE, - ACTIONS(1905), 1, + ACTIONS(1876), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1878), 1, anon_sym_STAR_STAR, - ACTIONS(1915), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1917), 1, - sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1856), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 2, + ACTIONS(1866), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1903), 2, + ACTIONS(1874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1884), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1887), 3, + ACTIONS(1858), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1909), 3, + ACTIONS(1880), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36566] = 13, - ACTIONS(407), 1, + ACTIONS(1555), 5, + sym__ternary_qmark, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [35655] = 13, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1905), 1, + ACTIONS(1876), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1878), 1, anon_sym_STAR_STAR, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1856), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 10, + ACTIONS(1874), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1565), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 13, + ACTIONS(1555), 14, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -69620,2140 +67612,2075 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [36631] = 26, - ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [35719] = 19, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1401), 1, + ACTIONS(1864), 1, anon_sym_GT_GT, - ACTIONS(1405), 1, - anon_sym_AMP, - ACTIONS(1407), 1, - anon_sym_CARET, - ACTIONS(1413), 1, + ACTIONS(1876), 1, anon_sym_PERCENT, - ACTIONS(1415), 1, + ACTIONS(1878), 1, anon_sym_STAR_STAR, - ACTIONS(1441), 1, - anon_sym_AMP_AMP, - ACTIONS(1443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_PIPE, - ACTIONS(1447), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1449), 1, - sym__ternary_qmark, - ACTIONS(1929), 1, - anon_sym_RBRACK, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, + ACTIONS(1565), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1856), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1866), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1411), 2, + ACTIONS(1874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 2, + ACTIONS(1884), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1399), 3, + ACTIONS(1858), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 3, + ACTIONS(1880), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36722] = 27, - ACTIONS(407), 1, + ACTIONS(1555), 7, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [35795] = 20, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1710), 1, - anon_sym_of, - ACTIONS(1889), 1, - anon_sym_AMP_AMP, - ACTIONS(1891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1893), 1, + ACTIONS(1565), 1, + anon_sym_PIPE, + ACTIONS(1864), 1, anon_sym_GT_GT, - ACTIONS(1897), 1, + ACTIONS(1868), 1, anon_sym_AMP, - ACTIONS(1899), 1, - anon_sym_CARET, - ACTIONS(1901), 1, - anon_sym_PIPE, - ACTIONS(1905), 1, + ACTIONS(1876), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1878), 1, anon_sym_STAR_STAR, - ACTIONS(1915), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1917), 1, - sym__ternary_qmark, - ACTIONS(1931), 1, - anon_sym_in, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1856), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1887), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1895), 2, + ACTIONS(1866), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1903), 2, + ACTIONS(1874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1884), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1909), 3, + ACTIONS(1858), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1880), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36815] = 26, - ACTIONS(407), 1, + ACTIONS(1555), 7, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [35873] = 21, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1552), 1, - anon_sym_of, - ACTIONS(1889), 1, - anon_sym_AMP_AMP, - ACTIONS(1891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1893), 1, + ACTIONS(1565), 1, + anon_sym_PIPE, + ACTIONS(1864), 1, anon_sym_GT_GT, - ACTIONS(1897), 1, + ACTIONS(1868), 1, anon_sym_AMP, - ACTIONS(1899), 1, + ACTIONS(1870), 1, anon_sym_CARET, - ACTIONS(1901), 1, - anon_sym_PIPE, - ACTIONS(1905), 1, + ACTIONS(1876), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1878), 1, anon_sym_STAR_STAR, - ACTIONS(1915), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1917), 1, - sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1856), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 2, + ACTIONS(1866), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1903), 2, + ACTIONS(1874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1884), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1887), 3, + ACTIONS(1858), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1909), 3, + ACTIONS(1880), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36906] = 23, - ACTIONS(407), 1, + ACTIONS(1555), 6, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [35953] = 12, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1889), 1, - anon_sym_AMP_AMP, - ACTIONS(1893), 1, - anon_sym_GT_GT, - ACTIONS(1897), 1, - anon_sym_AMP, - ACTIONS(1899), 1, - anon_sym_CARET, - ACTIONS(1901), 1, - anon_sym_PIPE, - ACTIONS(1905), 1, + ACTIONS(1876), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1878), 1, anon_sym_STAR_STAR, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1856), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 2, + ACTIONS(1565), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1555), 14, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1903), 2, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [36015] = 10, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1878), 1, + anon_sym_STAR_STAR, + STATE(550), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1565), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1555), 15, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [36073] = 17, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1864), 1, + anon_sym_GT_GT, + ACTIONS(1876), 1, + anon_sym_PERCENT, + ACTIONS(1878), 1, + anon_sym_STAR_STAR, + STATE(550), 1, sym_arguments, - ACTIONS(1887), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1856), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1866), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1874), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1858), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1909), 3, + ACTIONS(1880), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1397), 4, + ACTIONS(1565), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1555), 9, sym__ternary_qmark, anon_sym_of, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, - [36991] = 26, - ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [36145] = 23, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, + ACTIONS(1860), 1, anon_sym_AMP_AMP, - ACTIONS(1830), 1, + ACTIONS(1862), 1, anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1864), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1868), 1, anon_sym_AMP, - ACTIONS(1838), 1, + ACTIONS(1870), 1, anon_sym_CARET, - ACTIONS(1840), 1, + ACTIONS(1872), 1, anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1876), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1878), 1, anon_sym_STAR_STAR, - ACTIONS(1854), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1856), 1, - sym__ternary_qmark, - ACTIONS(1934), 1, - anon_sym_COLON, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1824), 2, + ACTIONS(1856), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1866), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1884), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1858), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1880), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37082] = 26, - ACTIONS(407), 1, + ACTIONS(1555), 4, + sym__ternary_qmark, + anon_sym_of, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1349), 1, + [36229] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1523), 1, - anon_sym_of, - ACTIONS(1889), 1, + ACTIONS(1860), 1, anon_sym_AMP_AMP, - ACTIONS(1891), 1, + ACTIONS(1862), 1, anon_sym_PIPE_PIPE, - ACTIONS(1893), 1, + ACTIONS(1864), 1, anon_sym_GT_GT, - ACTIONS(1897), 1, + ACTIONS(1868), 1, anon_sym_AMP, - ACTIONS(1899), 1, + ACTIONS(1870), 1, anon_sym_CARET, - ACTIONS(1901), 1, + ACTIONS(1872), 1, anon_sym_PIPE, - ACTIONS(1905), 1, + ACTIONS(1876), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1878), 1, anon_sym_STAR_STAR, - ACTIONS(1915), 1, + ACTIONS(1886), 1, anon_sym_QMARK_QMARK, - ACTIONS(1917), 1, + ACTIONS(1888), 1, sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1609), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(1856), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 2, + ACTIONS(1866), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1903), 2, + ACTIONS(1874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1884), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1887), 3, + ACTIONS(1858), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1909), 3, + ACTIONS(1880), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37173] = 26, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [36317] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1494), 1, - anon_sym_of, - ACTIONS(1889), 1, + ACTIONS(1860), 1, anon_sym_AMP_AMP, - ACTIONS(1891), 1, + ACTIONS(1862), 1, anon_sym_PIPE_PIPE, - ACTIONS(1893), 1, + ACTIONS(1864), 1, anon_sym_GT_GT, - ACTIONS(1897), 1, + ACTIONS(1868), 1, anon_sym_AMP, - ACTIONS(1899), 1, + ACTIONS(1870), 1, anon_sym_CARET, - ACTIONS(1901), 1, + ACTIONS(1872), 1, anon_sym_PIPE, - ACTIONS(1905), 1, + ACTIONS(1876), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1878), 1, anon_sym_STAR_STAR, - ACTIONS(1915), 1, + ACTIONS(1886), 1, anon_sym_QMARK_QMARK, - ACTIONS(1917), 1, + ACTIONS(1888), 1, sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1479), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(1856), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 2, + ACTIONS(1866), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1903), 2, + ACTIONS(1874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1884), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1887), 3, + ACTIONS(1858), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1909), 3, + ACTIONS(1880), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37264] = 22, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [36405] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1893), 1, + ACTIONS(1860), 1, + anon_sym_AMP_AMP, + ACTIONS(1862), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1864), 1, anon_sym_GT_GT, - ACTIONS(1897), 1, + ACTIONS(1868), 1, anon_sym_AMP, - ACTIONS(1899), 1, + ACTIONS(1870), 1, anon_sym_CARET, - ACTIONS(1901), 1, + ACTIONS(1872), 1, anon_sym_PIPE, - ACTIONS(1905), 1, + ACTIONS(1876), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1878), 1, anon_sym_STAR_STAR, + ACTIONS(1886), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1888), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1487), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(1856), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 2, + ACTIONS(1866), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1903), 2, + ACTIONS(1874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1884), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1887), 3, + ACTIONS(1858), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1909), 3, + ACTIONS(1880), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1397), 5, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [37347] = 11, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [36493] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1907), 1, + ACTIONS(1860), 1, + anon_sym_AMP_AMP, + ACTIONS(1862), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1864), 1, + anon_sym_GT_GT, + ACTIONS(1868), 1, + anon_sym_AMP, + ACTIONS(1870), 1, + anon_sym_CARET, + ACTIONS(1872), 1, + anon_sym_PIPE, + ACTIONS(1876), 1, + anon_sym_PERCENT, + ACTIONS(1878), 1, anon_sym_STAR_STAR, + ACTIONS(1886), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1888), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 12, + ACTIONS(1512), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(1856), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1866), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1874), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1882), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 14, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(1884), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [37408] = 6, - ACTIONS(1547), 1, - anon_sym_RBRACK, - ACTIONS(1550), 1, - anon_sym_EQ, - ACTIONS(1776), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1543), 12, - anon_sym_STAR, + ACTIONS(1858), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1545), 21, - sym__ternary_qmark, + ACTIONS(1880), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36581] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1860), 1, anon_sym_AMP_AMP, + ACTIONS(1862), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1864), 1, + anon_sym_GT_GT, + ACTIONS(1868), 1, + anon_sym_AMP, + ACTIONS(1870), 1, anon_sym_CARET, + ACTIONS(1872), 1, + anon_sym_PIPE, + ACTIONS(1876), 1, anon_sym_PERCENT, + ACTIONS(1878), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1886), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [37459] = 11, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - anon_sym_LBRACK, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(1355), 1, - sym_optional_chain, - ACTIONS(1907), 1, - anon_sym_STAR_STAR, + ACTIONS(1888), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 12, + ACTIONS(1595), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(1856), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1866), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1874), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1882), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1397), 14, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(1884), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [37520] = 6, - ACTIONS(1320), 1, - anon_sym_COMMA, - ACTIONS(1325), 1, - anon_sym_RBRACK, - ACTIONS(1328), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1258), 12, - anon_sym_STAR, + ACTIONS(1858), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1260), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1880), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [37571] = 24, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [36669] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1889), 1, + ACTIONS(1860), 1, anon_sym_AMP_AMP, - ACTIONS(1891), 1, + ACTIONS(1862), 1, anon_sym_PIPE_PIPE, - ACTIONS(1893), 1, + ACTIONS(1864), 1, anon_sym_GT_GT, - ACTIONS(1897), 1, + ACTIONS(1868), 1, anon_sym_AMP, - ACTIONS(1899), 1, + ACTIONS(1870), 1, anon_sym_CARET, - ACTIONS(1901), 1, + ACTIONS(1872), 1, anon_sym_PIPE, - ACTIONS(1905), 1, + ACTIONS(1876), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1878), 1, anon_sym_STAR_STAR, + ACTIONS(1886), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1888), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1499), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(1856), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 2, + ACTIONS(1866), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1903), 2, + ACTIONS(1874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, + ACTIONS(1882), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 2, + ACTIONS(1884), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1397), 3, - sym__ternary_qmark, - anon_sym_of, - anon_sym_QMARK_QMARK, - ACTIONS(1887), 3, + ACTIONS(1858), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1909), 3, + ACTIONS(1880), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37658] = 18, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [36757] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1893), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1905), 1, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + ACTIONS(1964), 1, + anon_sym_RBRACK, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1903), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1887), 3, + ACTIONS(1575), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1909), 3, + ACTIONS(1573), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1409), 4, + [36844] = 25, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1746), 1, + anon_sym_GT_GT, + ACTIONS(1750), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1397), 8, - sym__ternary_qmark, - anon_sym_of, + ACTIONS(1754), 1, + anon_sym_PERCENT, + ACTIONS(1756), 1, + anon_sym_STAR_STAR, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, anon_sym_CARET, + ACTIONS(1770), 1, + anon_sym_PIPE, + ACTIONS(1772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1774), 1, + sym__ternary_qmark, + ACTIONS(1966), 1, + anon_sym_COLON, + STATE(550), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1742), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1748), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1752), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1760), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1762), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [37733] = 16, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + ACTIONS(1744), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36931] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1893), 1, + ACTIONS(1559), 1, anon_sym_GT_GT, - ACTIONS(1905), 1, + ACTIONS(1563), 1, + anon_sym_AMP, + ACTIONS(1569), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1571), 1, anon_sym_STAR_STAR, + ACTIONS(1581), 1, + anon_sym_AMP_AMP, + ACTIONS(1583), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1585), 1, + anon_sym_CARET, + ACTIONS(1587), 1, + anon_sym_PIPE, + ACTIONS(1589), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1591), 1, + sym__ternary_qmark, + ACTIONS(1968), 1, + anon_sym_RBRACK, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1885), 2, + ACTIONS(1553), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 2, + ACTIONS(1561), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1903), 2, + ACTIONS(1567), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1409), 7, + ACTIONS(1575), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1577), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1557), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1397), 11, - sym__ternary_qmark, + ACTIONS(1573), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37018] = 26, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1706), 1, anon_sym_of, + ACTIONS(1860), 1, anon_sym_AMP_AMP, + ACTIONS(1862), 1, anon_sym_PIPE_PIPE, + ACTIONS(1864), 1, + anon_sym_GT_GT, + ACTIONS(1868), 1, + anon_sym_AMP, + ACTIONS(1870), 1, anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1872), 1, + anon_sym_PIPE, + ACTIONS(1876), 1, + anon_sym_PERCENT, + ACTIONS(1878), 1, + anon_sym_STAR_STAR, + ACTIONS(1886), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [37804] = 4, - ACTIONS(1385), 1, - sym_regex_flags, + ACTIONS(1888), 1, + sym__ternary_qmark, + ACTIONS(1970), 1, + anon_sym_in, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1381), 14, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1856), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_of, + anon_sym_SLASH, + ACTIONS(1858), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1866), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1874), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1882), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1884), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1880), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1383), 20, - sym__ternary_qmark, + [37107] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1746), 1, + anon_sym_GT_GT, + ACTIONS(1750), 1, + anon_sym_AMP, + ACTIONS(1754), 1, + anon_sym_PERCENT, + ACTIONS(1756), 1, + anon_sym_STAR_STAR, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1768), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1770), 1, + anon_sym_PIPE, + ACTIONS(1772), 1, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [37850] = 24, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(103), 1, - anon_sym_STAR, - ACTIONS(105), 1, - anon_sym_COMMA, - ACTIONS(115), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(123), 1, - aux_sym_method_definition_token1, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(1938), 1, - anon_sym_LBRACE, - ACTIONS(1940), 1, - anon_sym_RBRACE, - ACTIONS(1942), 1, - anon_sym_LBRACK, - ACTIONS(1944), 1, - anon_sym_async, - ACTIONS(1948), 1, - anon_sym_static, - STATE(922), 1, - aux_sym_export_statement_repeat1, - STATE(1017), 1, - sym_decorator, - STATE(1329), 1, - aux_sym_object_repeat1, - STATE(1341), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(1774), 1, + sym__ternary_qmark, + ACTIONS(1973), 1, + anon_sym_COLON, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1946), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1950), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1936), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1322), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1350), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1356), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1650), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [37936] = 25, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1620), 1, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1742), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1748), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1752), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1760), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1762), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1744), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37194] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1626), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_AMP_AMP, - ACTIONS(1830), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1746), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1750), 1, anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1840), 1, - anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1754), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1756), 1, anon_sym_STAR_STAR, - ACTIONS(1854), 1, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_CARET, + ACTIONS(1770), 1, + anon_sym_PIPE, + ACTIONS(1772), 1, anon_sym_QMARK_QMARK, - ACTIONS(1856), 1, + ACTIONS(1774), 1, sym__ternary_qmark, + ACTIONS(1975), 1, + anon_sym_COLON, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1824), 2, + ACTIONS(1742), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1748), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1752), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1760), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1762), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(741), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1744), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1758), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38024] = 24, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(103), 1, - anon_sym_STAR, - ACTIONS(105), 1, - anon_sym_COMMA, - ACTIONS(115), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(123), 1, - aux_sym_method_definition_token1, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(1938), 1, - anon_sym_LBRACE, - ACTIONS(1942), 1, - anon_sym_LBRACK, - ACTIONS(1954), 1, - anon_sym_RBRACE, - ACTIONS(1956), 1, - anon_sym_async, - ACTIONS(1958), 1, - anon_sym_static, - STATE(922), 1, - aux_sym_export_statement_repeat1, - STATE(1017), 1, - sym_decorator, - STATE(1341), 1, - aux_sym_object_pattern_repeat1, - STATE(1342), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1946), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1960), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1952), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1350), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1352), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1356), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1650), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [38110] = 24, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(103), 1, - anon_sym_STAR, - ACTIONS(105), 1, - anon_sym_COMMA, - ACTIONS(115), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(123), 1, - aux_sym_method_definition_token1, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(1938), 1, - anon_sym_LBRACE, - ACTIONS(1942), 1, - anon_sym_LBRACK, - ACTIONS(1964), 1, - anon_sym_RBRACE, - ACTIONS(1966), 1, - anon_sym_async, - ACTIONS(1968), 1, - anon_sym_static, - STATE(922), 1, - aux_sym_export_statement_repeat1, - STATE(1017), 1, - sym_decorator, - STATE(1329), 1, - aux_sym_object_repeat1, - STATE(1341), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1946), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1970), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1962), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1322), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1350), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1356), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1650), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [38196] = 25, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, + [37281] = 25, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1351), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1353), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1355), 1, + ACTIONS(1360), 1, sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_AMP_AMP, - ACTIONS(1830), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1832), 1, + ACTIONS(1746), 1, anon_sym_GT_GT, - ACTIONS(1836), 1, + ACTIONS(1750), 1, anon_sym_AMP, - ACTIONS(1838), 1, - anon_sym_CARET, - ACTIONS(1840), 1, - anon_sym_PIPE, - ACTIONS(1844), 1, + ACTIONS(1754), 1, anon_sym_PERCENT, - ACTIONS(1846), 1, + ACTIONS(1756), 1, anon_sym_STAR_STAR, - ACTIONS(1854), 1, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_CARET, + ACTIONS(1770), 1, + anon_sym_PIPE, + ACTIONS(1772), 1, anon_sym_QMARK_QMARK, - ACTIONS(1856), 1, + ACTIONS(1774), 1, sym__ternary_qmark, + ACTIONS(1977), 1, + anon_sym_COLON, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 2, + ACTIONS(1368), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1824), 2, + ACTIONS(1742), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1748), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1842), 2, + ACTIONS(1752), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1850), 2, + ACTIONS(1760), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, + ACTIONS(1762), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(553), 2, - sym_template_string, - sym_arguments, - ACTIONS(1826), 3, + ACTIONS(1744), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1848), 3, + ACTIONS(1758), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38284] = 6, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1334), 1, - anon_sym_in, - ACTIONS(1337), 1, - anon_sym_of, + [37368] = 25, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1746), 1, + anon_sym_GT_GT, + ACTIONS(1750), 1, + anon_sym_AMP, + ACTIONS(1754), 1, + anon_sym_PERCENT, + ACTIONS(1756), 1, + anon_sym_STAR_STAR, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_CARET, + ACTIONS(1770), 1, + anon_sym_PIPE, + ACTIONS(1772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1774), 1, + sym__ternary_qmark, + ACTIONS(1979), 1, + anon_sym_LBRACE, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1258), 11, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1742), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1748), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1752), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1760), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1762), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1744), 3, + anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1758), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37455] = 25, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + sym_optional_chain, + ACTIONS(1746), 1, anon_sym_GT_GT, + ACTIONS(1750), 1, anon_sym_AMP, + ACTIONS(1754), 1, + anon_sym_PERCENT, + ACTIONS(1756), 1, + anon_sym_STAR_STAR, + ACTIONS(1764), 1, + anon_sym_AMP_AMP, + ACTIONS(1766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_CARET, + ACTIONS(1770), 1, anon_sym_PIPE, + ACTIONS(1772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1774), 1, + sym__ternary_qmark, + ACTIONS(1981), 1, + anon_sym_COLON, + STATE(550), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1742), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1748), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1752), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1760), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1260), 21, - sym__ternary_qmark, + ACTIONS(1762), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1744), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37542] = 24, + ACTIONS(1342), 1, anon_sym_LPAREN, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1360), 1, sym_optional_chain, + ACTIONS(1746), 1, + anon_sym_GT_GT, + ACTIONS(1750), 1, + anon_sym_AMP, + ACTIONS(1754), 1, + anon_sym_PERCENT, + ACTIONS(1756), 1, + anon_sym_STAR_STAR, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_CARET, + ACTIONS(1770), 1, + anon_sym_PIPE, + ACTIONS(1772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1774), 1, + sym__ternary_qmark, + STATE(550), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1742), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1748), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1752), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1760), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1762), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1744), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [38334] = 24, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(103), 1, - anon_sym_STAR, - ACTIONS(105), 1, - anon_sym_COMMA, - ACTIONS(115), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(123), 1, - aux_sym_method_definition_token1, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(1938), 1, - anon_sym_LBRACE, - ACTIONS(1942), 1, - anon_sym_LBRACK, - ACTIONS(1974), 1, - anon_sym_RBRACE, - ACTIONS(1976), 1, - anon_sym_async, - ACTIONS(1978), 1, - anon_sym_static, - STATE(922), 1, - aux_sym_export_statement_repeat1, - STATE(1017), 1, - sym_decorator, - STATE(1329), 1, - aux_sym_object_repeat1, - STATE(1341), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1946), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1980), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1972), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1322), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1350), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1356), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1650), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [38420] = 24, - ACTIONS(93), 1, + [37626] = 21, + ACTIONS(91), 1, anon_sym_AT, - ACTIONS(103), 1, + ACTIONS(101), 1, anon_sym_STAR, - ACTIONS(105), 1, - anon_sym_COMMA, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(123), 1, + ACTIONS(121), 1, aux_sym_method_definition_token1, - ACTIONS(878), 1, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(1938), 1, + ACTIONS(1892), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(1896), 1, anon_sym_LBRACK, - ACTIONS(1984), 1, - anon_sym_RBRACE, - ACTIONS(1986), 1, - anon_sym_async, ACTIONS(1988), 1, + anon_sym_async, + ACTIONS(1990), 1, anon_sym_static, - STATE(922), 1, + STATE(913), 1, aux_sym_export_statement_repeat1, - STATE(1017), 1, + STATE(1004), 1, sym_decorator, - STATE(1329), 1, - aux_sym_object_repeat1, - STATE(1341), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1946), 2, + ACTIONS(1900), 2, sym_number, sym_private_property_identifier, - ACTIONS(1990), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1982), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1322), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1350), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1356), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1650), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [38506] = 24, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(103), 1, - anon_sym_STAR, - ACTIONS(105), 1, + ACTIONS(1985), 2, anon_sym_COMMA, - ACTIONS(115), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(123), 1, - aux_sym_method_definition_token1, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(1938), 1, - anon_sym_LBRACE, - ACTIONS(1942), 1, - anon_sym_LBRACK, - ACTIONS(1994), 1, anon_sym_RBRACE, - ACTIONS(1996), 1, - anon_sym_async, - ACTIONS(1998), 1, - anon_sym_static, - STATE(922), 1, - aux_sym_export_statement_repeat1, - STATE(1017), 1, - sym_decorator, - STATE(1329), 1, - aux_sym_object_repeat1, - STATE(1341), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1946), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2000), 2, + ACTIONS(1992), 2, anon_sym_get, anon_sym_set, - ACTIONS(1992), 3, + ACTIONS(1983), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1322), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1350), 3, + STATE(1284), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1356), 3, + STATE(1552), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1650), 3, + STATE(1579), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1646), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [38592] = 4, - ACTIONS(1341), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1258), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1260), 22, - sym__ternary_qmark, + [37704] = 24, + ACTIONS(1597), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(1599), 1, anon_sym_LBRACK, + ACTIONS(1601), 1, anon_sym_DOT, + ACTIONS(1611), 1, sym_optional_chain, + ACTIONS(1746), 1, + anon_sym_GT_GT, + ACTIONS(1750), 1, + anon_sym_AMP, + ACTIONS(1754), 1, + anon_sym_PERCENT, + ACTIONS(1756), 1, + anon_sym_STAR_STAR, + ACTIONS(1764), 1, anon_sym_AMP_AMP, + ACTIONS(1766), 1, anon_sym_PIPE_PIPE, + ACTIONS(1768), 1, + anon_sym_CARET, + ACTIONS(1770), 1, + anon_sym_PIPE, + ACTIONS(1772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1774), 1, + sym__ternary_qmark, + STATE(654), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1368), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1742), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1748), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1752), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1760), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1762), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1744), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [38638] = 21, - ACTIONS(93), 1, + [37788] = 20, + ACTIONS(91), 1, anon_sym_AT, - ACTIONS(103), 1, + ACTIONS(101), 1, anon_sym_STAR, - ACTIONS(115), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(123), 1, + ACTIONS(121), 1, aux_sym_method_definition_token1, - ACTIONS(878), 1, + ACTIONS(711), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(1938), 1, - anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(1996), 1, + anon_sym_COMMA, + ACTIONS(1998), 1, + anon_sym_RBRACE, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2007), 1, + ACTIONS(2002), 1, anon_sym_async, - ACTIONS(2009), 1, + ACTIONS(2006), 1, anon_sym_static, - STATE(922), 1, + STATE(913), 1, aux_sym_export_statement_repeat1, - STATE(1017), 1, + STATE(1004), 1, sym_decorator, + STATE(1283), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1946), 2, + ACTIONS(2004), 2, sym_number, sym_private_property_identifier, - ACTIONS(2004), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2011), 2, + ACTIONS(2008), 2, anon_sym_get, anon_sym_set, - ACTIONS(2002), 3, + ACTIONS(1994), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1350), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1637), 3, + STATE(1301), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1639), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1650), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [38716] = 23, - ACTIONS(2016), 1, + STATE(1371), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [37858] = 21, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2012), 1, anon_sym_STAR, - ACTIONS(2019), 1, + ACTIONS(2014), 1, anon_sym_RBRACE, - ACTIONS(2021), 1, + ACTIONS(2016), 1, anon_sym_SEMI, - ACTIONS(2024), 1, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(2027), 1, - sym_glimmer_opening_tag, - ACTIONS(2030), 1, + ACTIONS(2020), 1, anon_sym_DQUOTE, - ACTIONS(2033), 1, + ACTIONS(2022), 1, anon_sym_SQUOTE, - ACTIONS(2036), 1, + ACTIONS(2024), 1, anon_sym_async, - ACTIONS(2042), 1, - anon_sym_AT, - ACTIONS(2045), 1, + ACTIONS(2028), 1, anon_sym_static, - ACTIONS(2048), 1, + ACTIONS(2030), 1, aux_sym_method_definition_token1, - STATE(882), 1, + STATE(878), 1, aux_sym_class_body_repeat1, - STATE(920), 1, + STATE(919), 1, aux_sym_export_statement_repeat1, - STATE(976), 1, - sym_glimmer_template, - STATE(979), 1, + STATE(965), 1, sym_class_static_block, - STATE(980), 1, + STATE(966), 1, sym_method_definition, - STATE(1017), 1, + STATE(1004), 1, sym_decorator, - STATE(1551), 1, + STATE(1536), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2039), 2, + ACTIONS(2026), 2, sym_number, sym_private_property_identifier, - ACTIONS(2051), 2, + ACTIONS(2032), 2, anon_sym_get, anon_sym_set, - ACTIONS(2013), 3, + ACTIONS(2010), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1148), 3, + STATE(1120), 3, sym_string, sym__property_name, sym_computed_property_name, - [38793] = 23, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2056), 1, + [37929] = 14, + ACTIONS(662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(1892), 1, + anon_sym_LBRACE, + ACTIONS(1896), 1, + anon_sym_LBRACK, + ACTIONS(2036), 1, + anon_sym_COMMA, + ACTIONS(2038), 1, + anon_sym_RBRACE, + STATE(1323), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2040), 2, + sym_number, + sym_private_property_identifier, + STATE(1319), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1646), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(1683), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2034), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [37986] = 21, + ACTIONS(2045), 1, anon_sym_STAR, - ACTIONS(2058), 1, + ACTIONS(2048), 1, anon_sym_RBRACE, - ACTIONS(2060), 1, + ACTIONS(2050), 1, anon_sym_SEMI, - ACTIONS(2062), 1, + ACTIONS(2053), 1, anon_sym_LBRACK, - ACTIONS(2064), 1, - sym_glimmer_opening_tag, - ACTIONS(2066), 1, + ACTIONS(2056), 1, anon_sym_DQUOTE, - ACTIONS(2068), 1, + ACTIONS(2059), 1, anon_sym_SQUOTE, - ACTIONS(2070), 1, + ACTIONS(2062), 1, anon_sym_async, - ACTIONS(2074), 1, + ACTIONS(2068), 1, + anon_sym_AT, + ACTIONS(2071), 1, anon_sym_static, - ACTIONS(2076), 1, + ACTIONS(2074), 1, aux_sym_method_definition_token1, - STATE(890), 1, + STATE(877), 1, aux_sym_class_body_repeat1, - STATE(920), 1, + STATE(919), 1, aux_sym_export_statement_repeat1, - STATE(976), 1, - sym_glimmer_template, - STATE(979), 1, + STATE(965), 1, sym_class_static_block, - STATE(980), 1, + STATE(966), 1, sym_method_definition, - STATE(1017), 1, + STATE(1004), 1, sym_decorator, - STATE(1551), 1, + STATE(1536), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2072), 2, + ACTIONS(2065), 2, sym_number, sym_private_property_identifier, - ACTIONS(2078), 2, + ACTIONS(2077), 2, anon_sym_get, anon_sym_set, - ACTIONS(2054), 3, + ACTIONS(2042), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1148), 3, + STATE(1120), 3, sym_string, sym__property_name, sym_computed_property_name, - [38870] = 23, - ACTIONS(93), 1, + [38057] = 21, + ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2056), 1, + ACTIONS(2012), 1, anon_sym_STAR, - ACTIONS(2062), 1, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(2064), 1, - sym_glimmer_opening_tag, - ACTIONS(2066), 1, + ACTIONS(2020), 1, anon_sym_DQUOTE, - ACTIONS(2068), 1, + ACTIONS(2022), 1, anon_sym_SQUOTE, - ACTIONS(2070), 1, + ACTIONS(2024), 1, anon_sym_async, - ACTIONS(2074), 1, + ACTIONS(2028), 1, anon_sym_static, - ACTIONS(2076), 1, + ACTIONS(2030), 1, aux_sym_method_definition_token1, ACTIONS(2080), 1, anon_sym_RBRACE, ACTIONS(2082), 1, anon_sym_SEMI, - STATE(885), 1, + STATE(877), 1, aux_sym_class_body_repeat1, - STATE(920), 1, + STATE(919), 1, aux_sym_export_statement_repeat1, - STATE(976), 1, - sym_glimmer_template, - STATE(979), 1, + STATE(965), 1, sym_class_static_block, - STATE(980), 1, + STATE(966), 1, sym_method_definition, - STATE(1017), 1, + STATE(1004), 1, sym_decorator, - STATE(1551), 1, + STATE(1536), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2072), 2, + ACTIONS(2026), 2, sym_number, sym_private_property_identifier, - ACTIONS(2078), 2, + ACTIONS(2032), 2, anon_sym_get, anon_sym_set, - ACTIONS(2054), 3, + ACTIONS(2010), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1148), 3, + STATE(1120), 3, sym_string, sym__property_name, sym_computed_property_name, - [38947] = 23, - ACTIONS(93), 1, + [38128] = 18, + ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2056), 1, + ACTIONS(101), 1, anon_sym_STAR, - ACTIONS(2062), 1, - anon_sym_LBRACK, - ACTIONS(2064), 1, - sym_glimmer_opening_tag, - ACTIONS(2066), 1, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(711), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(2068), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2070), 1, + ACTIONS(2000), 1, + anon_sym_LBRACK, + ACTIONS(2088), 1, anon_sym_async, - ACTIONS(2074), 1, + ACTIONS(2090), 1, anon_sym_static, - ACTIONS(2076), 1, - aux_sym_method_definition_token1, - ACTIONS(2084), 1, - anon_sym_RBRACE, - ACTIONS(2086), 1, - anon_sym_SEMI, - STATE(882), 1, - aux_sym_class_body_repeat1, - STATE(920), 1, + STATE(913), 1, aux_sym_export_statement_repeat1, - STATE(976), 1, - sym_glimmer_template, - STATE(979), 1, - sym_class_static_block, - STATE(980), 1, - sym_method_definition, - STATE(1017), 1, + STATE(1004), 1, sym_decorator, - STATE(1551), 1, - sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2072), 2, + ACTIONS(2004), 2, sym_number, sym_private_property_identifier, - ACTIONS(2078), 2, + ACTIONS(2086), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2092), 2, anon_sym_get, anon_sym_set, - ACTIONS(2054), 3, + ACTIONS(2084), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1148), 3, + STATE(1371), 3, sym_string, sym__property_name, sym_computed_property_name, - [39024] = 23, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2056), 1, - anon_sym_STAR, - ACTIONS(2062), 1, - anon_sym_LBRACK, - ACTIONS(2064), 1, - sym_glimmer_opening_tag, - ACTIONS(2066), 1, + STATE(1579), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + [38193] = 14, + ACTIONS(662), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(2068), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2070), 1, - anon_sym_async, - ACTIONS(2074), 1, - anon_sym_static, - ACTIONS(2076), 1, - aux_sym_method_definition_token1, - ACTIONS(2086), 1, - anon_sym_SEMI, - ACTIONS(2088), 1, + ACTIONS(1892), 1, + anon_sym_LBRACE, + ACTIONS(1896), 1, + anon_sym_LBRACK, + ACTIONS(2036), 1, + anon_sym_COMMA, + ACTIONS(2096), 1, anon_sym_RBRACE, - STATE(882), 1, - aux_sym_class_body_repeat1, - STATE(920), 1, - aux_sym_export_statement_repeat1, - STATE(976), 1, - sym_glimmer_template, - STATE(979), 1, - sym_class_static_block, - STATE(980), 1, - sym_method_definition, - STATE(1017), 1, - sym_decorator, - STATE(1551), 1, - sym_field_definition, + STATE(1287), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2072), 2, + ACTIONS(2040), 2, sym_number, sym_private_property_identifier, - ACTIONS(2078), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2054), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1148), 3, + STATE(1351), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1646), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(1683), 3, sym_string, sym__property_name, sym_computed_property_name, - [39101] = 23, - ACTIONS(93), 1, + ACTIONS(2094), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [38250] = 21, + ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2056), 1, + ACTIONS(2012), 1, anon_sym_STAR, - ACTIONS(2062), 1, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(2064), 1, - sym_glimmer_opening_tag, - ACTIONS(2066), 1, + ACTIONS(2020), 1, anon_sym_DQUOTE, - ACTIONS(2068), 1, + ACTIONS(2022), 1, anon_sym_SQUOTE, - ACTIONS(2070), 1, + ACTIONS(2024), 1, anon_sym_async, - ACTIONS(2074), 1, + ACTIONS(2028), 1, anon_sym_static, - ACTIONS(2076), 1, + ACTIONS(2030), 1, aux_sym_method_definition_token1, - ACTIONS(2090), 1, + ACTIONS(2098), 1, anon_sym_RBRACE, - ACTIONS(2092), 1, + ACTIONS(2100), 1, anon_sym_SEMI, - STATE(886), 1, + STATE(884), 1, aux_sym_class_body_repeat1, - STATE(920), 1, + STATE(919), 1, aux_sym_export_statement_repeat1, - STATE(976), 1, - sym_glimmer_template, - STATE(979), 1, + STATE(965), 1, sym_class_static_block, - STATE(980), 1, + STATE(966), 1, sym_method_definition, - STATE(1017), 1, + STATE(1004), 1, sym_decorator, - STATE(1551), 1, + STATE(1536), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2072), 2, + ACTIONS(2026), 2, sym_number, sym_private_property_identifier, - ACTIONS(2078), 2, + ACTIONS(2032), 2, anon_sym_get, anon_sym_set, - ACTIONS(2054), 3, + ACTIONS(2010), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1148), 3, + STATE(1120), 3, sym_string, sym__property_name, sym_computed_property_name, - [39178] = 23, - ACTIONS(93), 1, + [38321] = 21, + ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2056), 1, + ACTIONS(2012), 1, anon_sym_STAR, - ACTIONS(2062), 1, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(2064), 1, - sym_glimmer_opening_tag, - ACTIONS(2066), 1, + ACTIONS(2020), 1, anon_sym_DQUOTE, - ACTIONS(2068), 1, + ACTIONS(2022), 1, anon_sym_SQUOTE, - ACTIONS(2070), 1, + ACTIONS(2024), 1, anon_sym_async, - ACTIONS(2074), 1, + ACTIONS(2028), 1, anon_sym_static, - ACTIONS(2076), 1, + ACTIONS(2030), 1, aux_sym_method_definition_token1, - ACTIONS(2094), 1, - anon_sym_RBRACE, - ACTIONS(2096), 1, + ACTIONS(2082), 1, anon_sym_SEMI, - STATE(889), 1, + ACTIONS(2102), 1, + anon_sym_RBRACE, + STATE(877), 1, aux_sym_class_body_repeat1, - STATE(920), 1, + STATE(919), 1, aux_sym_export_statement_repeat1, - STATE(976), 1, - sym_glimmer_template, - STATE(979), 1, + STATE(965), 1, sym_class_static_block, - STATE(980), 1, + STATE(966), 1, sym_method_definition, - STATE(1017), 1, + STATE(1004), 1, sym_decorator, - STATE(1551), 1, + STATE(1536), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2072), 2, + ACTIONS(2026), 2, sym_number, sym_private_property_identifier, - ACTIONS(2078), 2, + ACTIONS(2032), 2, anon_sym_get, anon_sym_set, - ACTIONS(2054), 3, + ACTIONS(2010), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1148), 3, + STATE(1120), 3, sym_string, sym__property_name, sym_computed_property_name, - [39255] = 23, - ACTIONS(93), 1, + [38392] = 21, + ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2056), 1, + ACTIONS(2012), 1, anon_sym_STAR, - ACTIONS(2062), 1, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(2064), 1, - sym_glimmer_opening_tag, - ACTIONS(2066), 1, + ACTIONS(2020), 1, anon_sym_DQUOTE, - ACTIONS(2068), 1, + ACTIONS(2022), 1, anon_sym_SQUOTE, - ACTIONS(2070), 1, + ACTIONS(2024), 1, anon_sym_async, - ACTIONS(2074), 1, + ACTIONS(2028), 1, anon_sym_static, - ACTIONS(2076), 1, + ACTIONS(2030), 1, aux_sym_method_definition_token1, - ACTIONS(2086), 1, - anon_sym_SEMI, - ACTIONS(2098), 1, + ACTIONS(2104), 1, anon_sym_RBRACE, + ACTIONS(2106), 1, + anon_sym_SEMI, STATE(882), 1, aux_sym_class_body_repeat1, - STATE(920), 1, + STATE(919), 1, aux_sym_export_statement_repeat1, - STATE(976), 1, - sym_glimmer_template, - STATE(979), 1, + STATE(965), 1, sym_class_static_block, - STATE(980), 1, + STATE(966), 1, sym_method_definition, - STATE(1017), 1, + STATE(1004), 1, sym_decorator, - STATE(1551), 1, + STATE(1536), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2072), 2, + ACTIONS(2026), 2, sym_number, sym_private_property_identifier, - ACTIONS(2078), 2, + ACTIONS(2032), 2, anon_sym_get, anon_sym_set, - ACTIONS(2054), 3, + ACTIONS(2010), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1148), 3, + STATE(1120), 3, sym_string, sym__property_name, sym_computed_property_name, - [39332] = 23, - ACTIONS(93), 1, + [38463] = 21, + ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2056), 1, + ACTIONS(2012), 1, anon_sym_STAR, - ACTIONS(2062), 1, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(2064), 1, - sym_glimmer_opening_tag, - ACTIONS(2066), 1, + ACTIONS(2020), 1, anon_sym_DQUOTE, - ACTIONS(2068), 1, + ACTIONS(2022), 1, anon_sym_SQUOTE, - ACTIONS(2070), 1, + ACTIONS(2024), 1, anon_sym_async, - ACTIONS(2074), 1, + ACTIONS(2028), 1, anon_sym_static, - ACTIONS(2076), 1, + ACTIONS(2030), 1, aux_sym_method_definition_token1, - ACTIONS(2086), 1, + ACTIONS(2082), 1, anon_sym_SEMI, - ACTIONS(2100), 1, + ACTIONS(2108), 1, anon_sym_RBRACE, - STATE(882), 1, + STATE(877), 1, aux_sym_class_body_repeat1, - STATE(920), 1, + STATE(919), 1, aux_sym_export_statement_repeat1, - STATE(976), 1, - sym_glimmer_template, - STATE(979), 1, + STATE(965), 1, sym_class_static_block, - STATE(980), 1, + STATE(966), 1, sym_method_definition, - STATE(1017), 1, + STATE(1004), 1, sym_decorator, - STATE(1551), 1, + STATE(1536), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2072), 2, + ACTIONS(2026), 2, sym_number, sym_private_property_identifier, - ACTIONS(2078), 2, + ACTIONS(2032), 2, anon_sym_get, anon_sym_set, - ACTIONS(2054), 3, + ACTIONS(2010), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1148), 3, + STATE(1120), 3, sym_string, sym__property_name, sym_computed_property_name, - [39409] = 20, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(103), 1, - anon_sym_STAR, - ACTIONS(123), 1, - aux_sym_method_definition_token1, - ACTIONS(716), 1, + [38534] = 12, + ACTIONS(662), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(878), 1, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2106), 1, - anon_sym_RBRACE, - ACTIONS(2108), 1, + ACTIONS(1892), 1, + anon_sym_LBRACE, + ACTIONS(1896), 1, anon_sym_LBRACK, - ACTIONS(2110), 1, - anon_sym_async, - ACTIONS(2114), 1, - anon_sym_static, - STATE(922), 1, - aux_sym_export_statement_repeat1, - STATE(1017), 1, - sym_decorator, - STATE(1394), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2112), 2, + ACTIONS(2040), 2, sym_number, sym_private_property_identifier, - ACTIONS(2116), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2102), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1359), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1392), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - [39479] = 14, - ACTIONS(692), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(1938), 1, - anon_sym_LBRACE, - ACTIONS(1942), 1, - anon_sym_LBRACK, - ACTIONS(2120), 1, + ACTIONS(2112), 2, anon_sym_COMMA, - ACTIONS(2122), 1, anon_sym_RBRACE, - STATE(1338), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2124), 2, - sym_number, - sym_private_property_identifier, - STATE(1315), 3, + STATE(1552), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1650), 3, + STATE(1646), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(1664), 3, + STATE(1683), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2118), 7, + ACTIONS(2110), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71761,665 +69688,573 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [39536] = 18, - ACTIONS(93), 1, - anon_sym_AT, + [38586] = 15, ACTIONS(103), 1, - anon_sym_STAR, - ACTIONS(123), 1, - aux_sym_method_definition_token1, - ACTIONS(716), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2130), 1, - anon_sym_async, - ACTIONS(2132), 1, - anon_sym_static, - STATE(922), 1, - aux_sym_export_statement_repeat1, - STATE(1017), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2112), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2128), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2134), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2126), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1359), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1637), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - [39601] = 14, - ACTIONS(692), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(878), 1, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(1938), 1, - anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2120), 1, - anon_sym_COMMA, - ACTIONS(2138), 1, + ACTIONS(2114), 1, + anon_sym_STAR, + ACTIONS(2116), 1, anon_sym_RBRACE, - STATE(1341), 1, + ACTIONS(2120), 1, + anon_sym_EQ, + STATE(1324), 1, aux_sym_object_pattern_repeat1, + STATE(1352), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2124), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - STATE(1356), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1650), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(1664), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2136), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, + ACTIONS(885), 2, anon_sym_get, anon_sym_set, - [39658] = 12, - ACTIONS(692), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(1938), 1, - anon_sym_LBRACE, - ACTIONS(1942), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2124), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2142), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1639), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1650), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(1664), 3, + ACTIONS(2118), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2140), 7, + ACTIONS(881), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [39710] = 15, - ACTIONS(105), 1, + [38642] = 16, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(852), 1, - anon_sym_RBRACE, - ACTIONS(878), 1, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(883), 1, + anon_sym_async, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2144), 1, + ACTIONS(2114), 1, anon_sym_STAR, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, - STATE(1302), 1, + ACTIONS(2122), 1, + anon_sym_RBRACE, + STATE(1324), 1, aux_sym_object_pattern_repeat1, - STATE(1378), 1, + STATE(1352), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(892), 2, + ACTIONS(885), 2, anon_sym_get, anon_sym_set, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 5, + ACTIONS(881), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [39766] = 16, - ACTIONS(105), 1, + [38700] = 16, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(852), 1, + ACTIONS(775), 1, anon_sym_RBRACE, - ACTIONS(878), 1, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(890), 1, + ACTIONS(883), 1, anon_sym_async, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2144), 1, + ACTIONS(2114), 1, anon_sym_STAR, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, - STATE(1302), 1, + STATE(1324), 1, aux_sym_object_pattern_repeat1, - STATE(1378), 1, + STATE(1352), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(892), 2, + ACTIONS(885), 2, anon_sym_get, anon_sym_set, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 4, + ACTIONS(881), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [39824] = 16, - ACTIONS(105), 1, + [38758] = 15, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(878), 1, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(890), 1, - anon_sym_async, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2144), 1, + ACTIONS(2114), 1, anon_sym_STAR, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, - ACTIONS(2150), 1, + ACTIONS(2122), 1, anon_sym_RBRACE, - STATE(1302), 1, + STATE(1324), 1, aux_sym_object_pattern_repeat1, - STATE(1378), 1, + STATE(1352), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(892), 2, + ACTIONS(885), 2, anon_sym_get, anon_sym_set, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 4, + ACTIONS(881), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [39882] = 15, - ACTIONS(105), 1, + [38814] = 16, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(826), 1, - anon_sym_RBRACE, - ACTIONS(878), 1, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(883), 1, + anon_sym_async, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2144), 1, + ACTIONS(2114), 1, anon_sym_STAR, - ACTIONS(2148), 1, + ACTIONS(2116), 1, + anon_sym_RBRACE, + ACTIONS(2120), 1, anon_sym_EQ, - STATE(1302), 1, + STATE(1324), 1, aux_sym_object_pattern_repeat1, - STATE(1378), 1, + STATE(1352), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(892), 2, + ACTIONS(885), 2, anon_sym_get, anon_sym_set, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 5, + ACTIONS(881), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [39938] = 15, - ACTIONS(105), 1, + [38872] = 15, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(878), 1, + ACTIONS(809), 1, + anon_sym_RBRACE, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2144), 1, + ACTIONS(2114), 1, anon_sym_STAR, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, - ACTIONS(2152), 1, - anon_sym_RBRACE, - STATE(1302), 1, - aux_sym_object_pattern_repeat1, - STATE(1378), 1, + STATE(1318), 1, aux_sym_object_repeat1, + STATE(1324), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(892), 2, + ACTIONS(885), 2, anon_sym_get, anon_sym_set, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 5, + ACTIONS(881), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [39994] = 16, - ACTIONS(105), 1, + [38928] = 15, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(826), 1, + ACTIONS(775), 1, anon_sym_RBRACE, - ACTIONS(878), 1, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(890), 1, - anon_sym_async, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2144), 1, + ACTIONS(2114), 1, anon_sym_STAR, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, - STATE(1302), 1, + STATE(1324), 1, aux_sym_object_pattern_repeat1, - STATE(1378), 1, + STATE(1352), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(892), 2, + ACTIONS(885), 2, anon_sym_get, anon_sym_set, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 4, + ACTIONS(881), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [40052] = 16, - ACTIONS(105), 1, + [38984] = 15, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(854), 1, - anon_sym_RBRACE, - ACTIONS(878), 1, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(890), 1, - anon_sym_async, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2144), 1, + ACTIONS(2114), 1, anon_sym_STAR, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, - STATE(1301), 1, - aux_sym_object_repeat1, - STATE(1302), 1, + ACTIONS(2124), 1, + anon_sym_RBRACE, + STATE(1324), 1, aux_sym_object_pattern_repeat1, + STATE(1352), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(892), 2, + ACTIONS(885), 2, anon_sym_get, anon_sym_set, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 4, + ACTIONS(881), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [40110] = 15, - ACTIONS(105), 1, + [39040] = 16, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(854), 1, + ACTIONS(809), 1, anon_sym_RBRACE, - ACTIONS(878), 1, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(883), 1, + anon_sym_async, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2144), 1, + ACTIONS(2114), 1, anon_sym_STAR, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, - STATE(1301), 1, + STATE(1318), 1, aux_sym_object_repeat1, - STATE(1302), 1, + STATE(1324), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(892), 2, + ACTIONS(885), 2, anon_sym_get, anon_sym_set, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 5, + ACTIONS(881), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [40166] = 15, - ACTIONS(105), 1, + [39098] = 16, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(878), 1, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(883), 1, + anon_sym_async, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2144), 1, + ACTIONS(2114), 1, anon_sym_STAR, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, - ACTIONS(2154), 1, + ACTIONS(2124), 1, anon_sym_RBRACE, - STATE(1302), 1, + STATE(1324), 1, aux_sym_object_pattern_repeat1, - STATE(1378), 1, + STATE(1352), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(892), 2, + ACTIONS(885), 2, anon_sym_get, anon_sym_set, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 5, + ACTIONS(881), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [40222] = 16, - ACTIONS(105), 1, + [39156] = 15, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(878), 1, + ACTIONS(807), 1, + anon_sym_RBRACE, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(890), 1, - anon_sym_async, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2144), 1, + ACTIONS(2114), 1, anon_sym_STAR, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, - ACTIONS(2154), 1, - anon_sym_RBRACE, - STATE(1302), 1, + STATE(1324), 1, aux_sym_object_pattern_repeat1, - STATE(1378), 1, + STATE(1352), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(892), 2, + ACTIONS(885), 2, anon_sym_get, anon_sym_set, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 4, + ACTIONS(881), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [40280] = 15, - ACTIONS(105), 1, + [39212] = 16, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(878), 1, + ACTIONS(807), 1, + anon_sym_RBRACE, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(883), 1, + anon_sym_async, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2144), 1, + ACTIONS(2114), 1, anon_sym_STAR, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, - ACTIONS(2150), 1, - anon_sym_RBRACE, - STATE(1302), 1, + STATE(1324), 1, aux_sym_object_pattern_repeat1, - STATE(1378), 1, + STATE(1352), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(892), 2, + ACTIONS(885), 2, anon_sym_get, anon_sym_set, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 5, + ACTIONS(881), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [40336] = 16, - ACTIONS(105), 1, + [39270] = 13, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(878), 1, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(890), 1, - anon_sym_async, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2144), 1, - anon_sym_STAR, - ACTIONS(2148), 1, - anon_sym_EQ, - ACTIONS(2152), 1, + ACTIONS(2116), 1, anon_sym_RBRACE, - STATE(1302), 1, + ACTIONS(2120), 1, + anon_sym_EQ, + STATE(1324), 1, aux_sym_object_pattern_repeat1, - STATE(1378), 1, + STATE(1352), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(892), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 4, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [40394] = 13, - ACTIONS(105), 1, + anon_sym_get, + anon_sym_set, + [39321] = 13, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(878), 1, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, - ACTIONS(2154), 1, + ACTIONS(2122), 1, anon_sym_RBRACE, - STATE(1302), 1, + STATE(1324), 1, aux_sym_object_pattern_repeat1, - STATE(1378), 1, + STATE(1352), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72427,37 +70262,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [40445] = 13, - ACTIONS(105), 1, + [39372] = 13, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(878), 1, + ACTIONS(775), 1, + anon_sym_RBRACE, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, - ACTIONS(2150), 1, - anon_sym_RBRACE, - STATE(1302), 1, + STATE(1324), 1, aux_sym_object_pattern_repeat1, - STATE(1378), 1, + STATE(1352), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72465,76 +70300,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [40496] = 14, - ACTIONS(2062), 1, + [39423] = 14, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(2066), 1, + ACTIONS(2020), 1, anon_sym_DQUOTE, - ACTIONS(2068), 1, + ACTIONS(2022), 1, anon_sym_SQUOTE, - ACTIONS(2156), 1, + ACTIONS(2126), 1, anon_sym_STAR, - ACTIONS(2158), 1, + ACTIONS(2128), 1, anon_sym_LBRACE, - ACTIONS(2160), 1, + ACTIONS(2130), 1, anon_sym_async, - ACTIONS(2166), 1, + ACTIONS(2136), 1, sym__automatic_semicolon, - STATE(970), 1, + STATE(969), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2162), 2, + ACTIONS(2132), 2, sym_number, sym_private_property_identifier, - ACTIONS(2164), 2, + ACTIONS(2134), 2, anon_sym_get, anon_sym_set, - ACTIONS(2146), 3, + ACTIONS(2118), 3, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - STATE(1138), 3, + STATE(1135), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2054), 4, + ACTIONS(2010), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [40549] = 13, - ACTIONS(105), 1, + [39476] = 13, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(852), 1, + ACTIONS(807), 1, anon_sym_RBRACE, - ACTIONS(878), 1, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, - STATE(1302), 1, + STATE(1324), 1, aux_sym_object_pattern_repeat1, - STATE(1378), 1, + STATE(1352), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72542,37 +70377,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [40600] = 13, - ACTIONS(105), 1, + [39527] = 13, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(854), 1, - anon_sym_RBRACE, - ACTIONS(878), 1, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, - STATE(1301), 1, - aux_sym_object_repeat1, - STATE(1302), 1, + ACTIONS(2124), 1, + anon_sym_RBRACE, + STATE(1324), 1, aux_sym_object_pattern_repeat1, + STATE(1352), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72580,37 +70415,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [40651] = 13, - ACTIONS(105), 1, + [39578] = 13, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(826), 1, + ACTIONS(809), 1, anon_sym_RBRACE, - ACTIONS(878), 1, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, - STATE(1302), 1, - aux_sym_object_pattern_repeat1, - STATE(1378), 1, + STATE(1318), 1, aux_sym_object_repeat1, + STATE(1324), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72618,440 +70453,397 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [40702] = 13, - ACTIONS(105), 1, - anon_sym_COMMA, - ACTIONS(878), 1, + [39629] = 18, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2148), 1, - anon_sym_EQ, - ACTIONS(2152), 1, - anon_sym_RBRACE, - STATE(1302), 1, - aux_sym_object_pattern_repeat1, - STATE(1378), 1, - aux_sym_object_repeat1, + ACTIONS(2139), 1, + anon_sym_export, + ACTIONS(2141), 1, + anon_sym_STAR, + ACTIONS(2143), 1, + anon_sym_class, + ACTIONS(2145), 1, + anon_sym_async, + ACTIONS(2149), 1, + anon_sym_static, + ACTIONS(2151), 1, + aux_sym_method_definition_token1, + ACTIONS(2153), 1, + anon_sym_get, + ACTIONS(2155), 1, + anon_sym_set, + STATE(954), 1, + aux_sym_export_statement_repeat1, + STATE(1004), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(881), 2, + anon_sym_let, + sym_identifier, + ACTIONS(2147), 2, sym_number, sym_private_property_identifier, - ACTIONS(2146), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1622), 3, + STATE(1456), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40753] = 12, - ACTIONS(878), 1, + [39689] = 13, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(883), 1, + anon_sym_async, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2144), 1, + ACTIONS(2114), 1, anon_sym_STAR, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(892), 2, + ACTIONS(885), 2, anon_sym_get, anon_sym_set, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2169), 2, + ACTIONS(2157), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 5, + ACTIONS(881), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [40801] = 13, - ACTIONS(878), 1, + [39739] = 12, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2144), 1, + ACTIONS(2114), 1, anon_sym_STAR, - ACTIONS(2172), 1, - anon_sym_RBRACE, - STATE(1390), 1, - aux_sym_object_repeat1, + ACTIONS(2120), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(892), 2, + ACTIONS(885), 2, anon_sym_get, anon_sym_set, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1622), 3, + ACTIONS(2157), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 5, + ACTIONS(881), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [40851] = 14, - ACTIONS(878), 1, + [39787] = 13, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(890), 1, - anon_sym_async, - ACTIONS(2104), 1, + ACTIONS(1996), 1, anon_sym_COMMA, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2144), 1, + ACTIONS(2114), 1, anon_sym_STAR, - ACTIONS(2172), 1, + ACTIONS(2160), 1, anon_sym_RBRACE, - STATE(1390), 1, + STATE(1304), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(892), 2, + ACTIONS(885), 2, anon_sym_get, anon_sym_set, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 4, + ACTIONS(881), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [40903] = 13, - ACTIONS(878), 1, + [39837] = 14, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(890), 1, + ACTIONS(883), 1, anon_sym_async, - ACTIONS(2108), 1, + ACTIONS(1996), 1, + anon_sym_COMMA, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2144), 1, + ACTIONS(2114), 1, anon_sym_STAR, - ACTIONS(2148), 1, - anon_sym_EQ, + ACTIONS(2160), 1, + anon_sym_RBRACE, + STATE(1304), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(892), 2, + ACTIONS(885), 2, anon_sym_get, anon_sym_set, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2169), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 4, + ACTIONS(881), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [40953] = 18, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(878), 1, + [39889] = 11, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2174), 1, - anon_sym_export, - ACTIONS(2176), 1, + ACTIONS(2162), 1, anon_sym_STAR, - ACTIONS(2178), 1, - anon_sym_class, - ACTIONS(2180), 1, - anon_sym_async, - ACTIONS(2184), 1, - anon_sym_static, - ACTIONS(2186), 1, - aux_sym_method_definition_token1, - ACTIONS(2188), 1, + ACTIONS(2166), 1, anon_sym_get, - ACTIONS(2190), 1, + ACTIONS(2168), 1, anon_sym_set, - STATE(977), 1, - aux_sym_export_statement_repeat1, - STATE(1017), 1, - sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(888), 2, - anon_sym_let, - sym_identifier, - ACTIONS(2182), 2, + ACTIONS(2164), 2, sym_number, sym_private_property_identifier, - STATE(1626), 3, + STATE(1499), 3, sym_string, sym__property_name, sym_computed_property_name, - [41013] = 16, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2062), 1, - anon_sym_LBRACK, - ACTIONS(2066), 1, + ACTIONS(2118), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(881), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [39934] = 11, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(2068), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2192), 1, + ACTIONS(2000), 1, + anon_sym_LBRACK, + ACTIONS(2114), 1, anon_sym_STAR, - ACTIONS(2194), 1, - anon_sym_async, - ACTIONS(2198), 1, - anon_sym_static, - ACTIONS(2200), 1, - aux_sym_method_definition_token1, - ACTIONS(2202), 1, - anon_sym_get, - ACTIONS(2204), 1, - anon_sym_set, - STATE(977), 1, - aux_sym_export_statement_repeat1, - STATE(1017), 1, - sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2196), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(2054), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1137), 3, + ACTIONS(885), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2118), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2170), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - [41068] = 11, - ACTIONS(878), 1, + ACTIONS(881), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [39979] = 12, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(883), 1, + anon_sym_async, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2206), 1, + ACTIONS(2114), 1, anon_sym_STAR, - ACTIONS(2210), 1, - anon_sym_get, - ACTIONS(2212), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2208), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - STATE(1587), 3, + ACTIONS(885), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2118), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2170), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2146), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(888), 5, + ACTIONS(881), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [41113] = 16, - ACTIONS(93), 1, + [40026] = 16, + ACTIONS(91), 1, anon_sym_AT, - ACTIONS(878), 1, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(2141), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2145), 1, anon_sym_async, - ACTIONS(2184), 1, + ACTIONS(2149), 1, anon_sym_static, - ACTIONS(2186), 1, + ACTIONS(2151), 1, aux_sym_method_definition_token1, - ACTIONS(2188), 1, + ACTIONS(2153), 1, anon_sym_get, - ACTIONS(2190), 1, + ACTIONS(2155), 1, anon_sym_set, - STATE(977), 1, + STATE(954), 1, aux_sym_export_statement_repeat1, - STATE(1017), 1, + STATE(1004), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2182), 2, + ACTIONS(2147), 2, sym_number, sym_private_property_identifier, - ACTIONS(888), 3, + ACTIONS(881), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1626), 3, + STATE(1456), 3, sym_string, sym__property_name, sym_computed_property_name, - [41168] = 11, - ACTIONS(878), 1, + [40081] = 10, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2126), 1, anon_sym_STAR, - ACTIONS(2218), 1, - anon_sym_get, - ACTIONS(2220), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2216), 2, + ACTIONS(2172), 2, sym_number, sym_private_property_identifier, - STATE(1569), 3, + ACTIONS(2174), 2, + anon_sym_get, + anon_sym_set, + STATE(1457), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2146), 4, + ACTIONS(2118), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(888), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [41213] = 11, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2172), 1, - anon_sym_RBRACE, - STATE(1390), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(884), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2146), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1622), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [41258] = 10, - ACTIONS(878), 1, + [40124] = 10, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2169), 2, + ACTIONS(2157), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1622), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73059,232 +70851,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [41301] = 12, - ACTIONS(2062), 1, + [40167] = 12, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(2066), 1, + ACTIONS(2020), 1, anon_sym_DQUOTE, - ACTIONS(2068), 1, + ACTIONS(2022), 1, anon_sym_SQUOTE, - ACTIONS(2222), 1, + ACTIONS(2176), 1, anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2178), 1, anon_sym_async, - ACTIONS(2228), 1, + ACTIONS(2182), 1, anon_sym_get, - ACTIONS(2230), 1, + ACTIONS(2184), 1, anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2226), 2, + ACTIONS(2180), 2, sym_number, sym_private_property_identifier, STATE(1132), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2054), 4, + ACTIONS(2010), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - ACTIONS(2146), 4, + ACTIONS(2118), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - [41348] = 10, - ACTIONS(878), 1, + [40214] = 11, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(1996), 1, + anon_sym_COMMA, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2232), 1, - anon_sym_STAR, + ACTIONS(2160), 1, + anon_sym_RBRACE, + STATE(1304), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2234), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - ACTIONS(2236), 2, - anon_sym_get, - anon_sym_set, - STATE(1567), 3, + ACTIONS(2118), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2146), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(888), 5, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [41391] = 10, - ACTIONS(878), 1, + anon_sym_get, + anon_sym_set, + [40259] = 10, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2156), 1, + ACTIONS(2186), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2238), 2, + ACTIONS(2188), 2, sym_number, sym_private_property_identifier, - ACTIONS(2240), 2, + ACTIONS(2190), 2, anon_sym_get, anon_sym_set, - STATE(1531), 3, + STATE(1480), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2146), 4, + ACTIONS(2118), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(888), 5, + ACTIONS(881), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [41434] = 12, - ACTIONS(878), 1, + [40302] = 16, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2020), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(2022), 1, anon_sym_SQUOTE, - ACTIONS(890), 1, - anon_sym_async, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2144), 1, + ACTIONS(2192), 1, anon_sym_STAR, + ACTIONS(2194), 1, + anon_sym_async, + ACTIONS(2198), 1, + anon_sym_static, + ACTIONS(2200), 1, + aux_sym_method_definition_token1, + ACTIONS(2202), 1, + anon_sym_get, + ACTIONS(2204), 1, + anon_sym_set, + STATE(954), 1, + aux_sym_export_statement_repeat1, + STATE(1004), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(2196), 2, sym_number, sym_private_property_identifier, - ACTIONS(892), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2146), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2242), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1622), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(888), 4, + ACTIONS(2010), 3, anon_sym_export, anon_sym_let, sym_identifier, - anon_sym_static, - [41481] = 11, - ACTIONS(878), 1, + STATE(1136), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [40357] = 11, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2144), 1, + ACTIONS(2206), 1, anon_sym_STAR, + ACTIONS(2210), 1, + anon_sym_get, + ACTIONS(2212), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(2208), 2, sym_number, sym_private_property_identifier, - ACTIONS(892), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2146), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2242), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1622), 3, + STATE(1482), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [41526] = 4, - ACTIONS(2244), 1, + ACTIONS(2118), 4, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(571), 7, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(881), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(569), 11, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, + [40402] = 9, + ACTIONS(871), 1, anon_sym_DQUOTE, + ACTIONS(873), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41556] = 3, + ACTIONS(2000), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2246), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2248), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41584] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2250), 7, + ACTIONS(2118), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2170), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1544), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73292,104 +71057,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2252), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, + [40442] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, + ACTIONS(873), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41612] = 3, + ACTIONS(2000), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2250), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2252), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(2214), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41640] = 6, - ACTIONS(2258), 1, + STATE(1501), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2118), 4, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(2260), 1, - anon_sym_DOT, - STATE(1019), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2254), 8, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2256), 8, - anon_sym_STAR, - anon_sym_LBRACK, + [40480] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, + ACTIONS(873), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41674] = 3, + ACTIONS(2000), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2250), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2252), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(2188), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41702] = 4, - ACTIONS(2262), 1, + STATE(1480), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2118), 4, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(517), 7, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73397,41 +71117,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(515), 11, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41732] = 8, - ACTIONS(878), 1, + [40518] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2264), 2, + ACTIONS(2172), 2, sym_number, sym_private_property_identifier, - STATE(1589), 3, + STATE(1457), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2146), 4, + ACTIONS(2118), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73439,36 +71147,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [41770] = 3, + [40556] = 6, + ACTIONS(2220), 1, + anon_sym_LPAREN, + ACTIONS(2222), 1, + anon_sym_DOT, + STATE(979), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2266), 7, + ACTIONS(2216), 8, anon_sym_export, anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2268), 12, + ACTIONS(2218), 8, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41798] = 3, + [40590] = 8, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(2000), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2270), 7, + ACTIONS(2224), 2, + sym_number, + sym_private_property_identifier, + STATE(1484), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2118), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73476,24 +71205,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2272), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, + [40628] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, + ACTIONS(873), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41826] = 3, + ACTIONS(2000), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2274), 7, + ACTIONS(2226), 2, + sym_number, + sym_private_property_identifier, + STATE(1485), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2118), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73501,24 +71235,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2276), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, + [40666] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, + ACTIONS(873), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41854] = 3, + ACTIONS(2000), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2278), 7, + ACTIONS(2228), 2, + sym_number, + sym_private_property_identifier, + STATE(1500), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2118), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73526,24 +71265,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2280), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41882] = 3, + [40704] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2278), 7, + ACTIONS(2230), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73551,24 +71277,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2280), 12, + ACTIONS(2232), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41910] = 3, + [40731] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2278), 7, + ACTIONS(2230), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73576,55 +71301,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2280), 12, + ACTIONS(2232), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41938] = 9, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - anon_sym_LBRACK, + [40758] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2146), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2242), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1622), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(2234), 9, anon_sym_export, anon_sym_let, + anon_sym_DOT, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [41978] = 3, + ACTIONS(2236), 9, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [40785] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2278), 7, + ACTIONS(2230), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73632,24 +71349,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2280), 12, + ACTIONS(2232), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42006] = 3, + [40812] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2278), 7, + ACTIONS(2230), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73657,24 +71373,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2280), 12, + ACTIONS(2232), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42034] = 3, + [40839] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2278), 7, + ACTIONS(2230), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73682,24 +71397,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2280), 12, + ACTIONS(2232), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42062] = 3, + [40866] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2246), 7, + ACTIONS(2238), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73707,42 +71421,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2248), 12, + ACTIONS(2240), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42090] = 8, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - anon_sym_LBRACK, + [40893] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2282), 2, - sym_number, - sym_private_property_identifier, - STATE(1588), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2146), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(888), 7, + ACTIONS(2242), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73750,11 +71445,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42128] = 3, + ACTIONS(2244), 11, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [40920] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2250), 7, + ACTIONS(2242), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73762,24 +71469,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2252), 12, + ACTIONS(2244), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42156] = 3, + [40947] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2246), 7, + ACTIONS(2242), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73787,24 +71493,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2248), 12, + ACTIONS(2244), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42184] = 3, + [40974] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2284), 7, + ACTIONS(2242), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73812,42 +71517,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2286), 12, + ACTIONS(2244), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42212] = 8, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - anon_sym_LBRACK, + [41001] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2238), 2, - sym_number, - sym_private_property_identifier, - STATE(1531), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2146), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(888), 7, + ACTIONS(2242), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73855,11 +71541,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42250] = 3, + ACTIONS(2244), 11, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [41028] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2246), 7, + ACTIONS(2242), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73867,24 +71565,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2248), 12, + ACTIONS(2244), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42278] = 3, + [41055] = 4, + ACTIONS(2246), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2246), 7, + ACTIONS(518), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73892,24 +71591,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2248), 12, + ACTIONS(516), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42306] = 3, + [41084] = 4, + ACTIONS(2248), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2250), 7, + ACTIONS(508), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73917,42 +71616,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2252), 12, + ACTIONS(506), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42334] = 8, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - anon_sym_LBRACK, + [41113] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2234), 2, - sym_number, - sym_private_property_identifier, - STATE(1567), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2146), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(888), 7, + ACTIONS(2238), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73960,11 +71639,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42372] = 3, + ACTIONS(2240), 11, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [41140] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2246), 7, + ACTIONS(2238), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73972,24 +71663,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2248), 12, + ACTIONS(2240), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42400] = 3, + [41167] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2246), 7, + ACTIONS(2238), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73997,24 +71687,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2248), 12, + ACTIONS(2240), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42428] = 3, + [41194] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2250), 7, + ACTIONS(2238), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74022,24 +71711,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2252), 12, + ACTIONS(2240), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42456] = 3, + [41221] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2246), 7, + ACTIONS(2250), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74047,42 +71735,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2248), 12, + ACTIONS(2252), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42484] = 8, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - anon_sym_LBRACK, + [41248] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2288), 2, - sym_number, - sym_private_property_identifier, - STATE(1571), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2146), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(888), 7, + ACTIONS(2238), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74090,29 +71759,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42522] = 8, - ACTIONS(878), 1, + ACTIONS(2240), 11, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, - anon_sym_LBRACK, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [41275] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2290), 2, - sym_number, - sym_private_property_identifier, - STATE(1572), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2146), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(888), 7, + ACTIONS(2254), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74120,11 +71783,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42560] = 3, + ACTIONS(2256), 11, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [41302] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2246), 7, + ACTIONS(2258), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74132,24 +71807,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2248), 12, + ACTIONS(2260), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42588] = 3, + [41329] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2246), 7, + ACTIONS(2238), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74157,24 +71831,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2248), 12, + ACTIONS(2240), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42616] = 3, + [41356] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2246), 7, + ACTIONS(2238), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74182,24 +71855,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2248), 12, + ACTIONS(2240), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42644] = 3, + [41383] = 6, + ACTIONS(2266), 1, + anon_sym_AT, + STATE(954), 1, + aux_sym_export_statement_repeat1, + STATE(1004), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2264), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + aux_sym_method_definition_token1, + ACTIONS(2262), 8, + anon_sym_export, + anon_sym_let, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [41416] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 7, + ACTIONS(2269), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74207,24 +71906,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2294), 12, + ACTIONS(2271), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42672] = 3, + [41443] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1431), 7, + ACTIONS(2238), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74232,23 +71930,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1433), 11, + ACTIONS(2240), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42699] = 3, + [41470] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2296), 7, + ACTIONS(2238), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74256,23 +71954,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2298), 11, + ACTIONS(2240), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42726] = 3, + [41497] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2300), 7, + ACTIONS(2230), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74280,23 +71978,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2302), 11, + ACTIONS(2232), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42753] = 3, + [41524] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2304), 7, + ACTIONS(2238), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74304,35 +72002,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2306), 11, + ACTIONS(2240), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42780] = 3, + [41551] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2308), 9, + ACTIONS(2273), 7, anon_sym_export, anon_sym_let, - anon_sym_DOT, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2310), 9, + ACTIONS(2275), 11, anon_sym_STAR, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -74340,11 +72038,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42807] = 3, + [41578] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1539), 7, + ACTIONS(2277), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74352,47 +72050,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1541), 11, + ACTIONS(2279), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42834] = 3, + [41604] = 11, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(2000), 1, + anon_sym_LBRACK, + ACTIONS(2118), 1, + anon_sym_LPAREN, + ACTIONS(2281), 1, + anon_sym_STAR, + ACTIONS(2285), 1, + anon_sym_get, + ACTIONS(2287), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(571), 7, + ACTIONS(2283), 2, + sym_number, + sym_private_property_identifier, + STATE(1503), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(881), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, + [41646] = 11, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(2000), 1, + anon_sym_LBRACK, + ACTIONS(2118), 1, + anon_sym_LPAREN, + ACTIONS(2289), 1, + anon_sym_STAR, + ACTIONS(2293), 1, anon_sym_get, + ACTIONS(2295), 1, anon_sym_set, - ACTIONS(569), 11, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2291), 2, + sym_number, + sym_private_property_identifier, + STATE(1408), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(881), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [41688] = 11, + ACTIONS(871), 1, anon_sym_DQUOTE, + ACTIONS(873), 1, anon_sym_SQUOTE, + ACTIONS(2000), 1, + anon_sym_LBRACK, + ACTIONS(2118), 1, + anon_sym_LPAREN, + ACTIONS(2297), 1, + anon_sym_STAR, + ACTIONS(2301), 1, + anon_sym_get, + ACTIONS(2303), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2299), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [42861] = 3, + STATE(1426), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(881), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [41730] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2312), 7, + ACTIONS(2305), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74400,50 +72166,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2314), 11, + ACTIONS(2307), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42888] = 6, - ACTIONS(2320), 1, - anon_sym_AT, - STATE(977), 1, - aux_sym_export_statement_repeat1, - STATE(1017), 1, - sym_decorator, + [41756] = 4, + ACTIONS(2309), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2318), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - aux_sym_method_definition_token1, - ACTIONS(2316), 8, + ACTIONS(2305), 7, anon_sym_export, anon_sym_let, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42921] = 3, + ACTIONS(2307), 9, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [41784] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(597), 7, + ACTIONS(508), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74451,23 +72213,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(595), 11, + ACTIONS(506), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42948] = 3, + [41810] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2323), 7, + ACTIONS(524), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74475,25 +72236,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2325), 11, + ACTIONS(522), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42975] = 4, - ACTIONS(2327), 1, - anon_sym_SEMI, + [41836] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2323), 7, + ACTIONS(2312), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74501,342 +72259,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2325), 10, + ACTIONS(2314), 10, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [43004] = 10, - ACTIONS(878), 1, + [41862] = 9, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, - ACTIONS(2232), 1, - anon_sym_STAR, + ACTIONS(2316), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2234), 2, + ACTIONS(2318), 2, sym_number, sym_private_property_identifier, - ACTIONS(2236), 2, - anon_sym_get, - anon_sym_set, - STATE(1567), 3, + STATE(1547), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 5, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [43044] = 11, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2146), 1, - anon_sym_LPAREN, - ACTIONS(2330), 1, - anon_sym_STAR, - ACTIONS(2334), 1, anon_sym_get, - ACTIONS(2336), 1, anon_sym_set, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2332), 2, - sym_number, - sym_private_property_identifier, - STATE(1434), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(888), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [43086] = 12, - ACTIONS(878), 1, + [41900] = 10, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, - ACTIONS(2338), 1, + ACTIONS(2320), 1, anon_sym_STAR, - ACTIONS(2340), 1, - anon_sym_async, - ACTIONS(2344), 1, - anon_sym_get, - ACTIONS(2346), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2342), 2, + ACTIONS(2318), 2, sym_number, sym_private_property_identifier, - STATE(1498), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(888), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [43130] = 11, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2146), 1, - anon_sym_LPAREN, - ACTIONS(2348), 1, - anon_sym_STAR, - ACTIONS(2352), 1, + ACTIONS(2322), 2, anon_sym_get, - ACTIONS(2354), 1, anon_sym_set, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2350), 2, - sym_number, - sym_private_property_identifier, - STATE(1439), 3, + STATE(1547), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 5, + ACTIONS(881), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [43172] = 13, - ACTIONS(93), 1, + [41940] = 13, + ACTIONS(91), 1, anon_sym_AT, - ACTIONS(828), 1, + ACTIONS(777), 1, anon_sym_var, - ACTIONS(842), 1, + ACTIONS(791), 1, anon_sym_class, - ACTIONS(844), 1, + ACTIONS(793), 1, anon_sym_async, - ACTIONS(846), 1, + ACTIONS(795), 1, anon_sym_function, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, - ACTIONS(2356), 1, + ACTIONS(2324), 1, anon_sym_default, - STATE(374), 1, + STATE(368), 1, sym_declaration, - STATE(1017), 1, + STATE(1004), 1, sym_decorator, - STATE(1251), 1, + STATE(1269), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(830), 2, + ACTIONS(779), 2, anon_sym_let, anon_sym_const, - STATE(368), 5, + STATE(363), 5, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, sym_function_declaration, sym_generator_function_declaration, - [43218] = 9, - ACTIONS(878), 1, + [41986] = 11, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, - ACTIONS(2358), 1, - anon_sym_EQ_GT, + ACTIONS(2326), 1, + anon_sym_STAR, + ACTIONS(2330), 1, + anon_sym_get, + ACTIONS(2332), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2360), 2, + ACTIONS(2328), 2, sym_number, sym_private_property_identifier, - STATE(1510), 3, + STATE(1535), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [43256] = 11, - ACTIONS(878), 1, + [42028] = 12, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, - ACTIONS(2362), 1, + ACTIONS(2334), 1, anon_sym_STAR, - ACTIONS(2366), 1, + ACTIONS(2336), 1, + anon_sym_async, + ACTIONS(2340), 1, anon_sym_get, - ACTIONS(2368), 1, + ACTIONS(2342), 1, anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2364), 2, + ACTIONS(2338), 2, sym_number, sym_private_property_identifier, - STATE(1499), 3, + STATE(1569), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 5, + ACTIONS(881), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [42072] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2344), 7, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [43298] = 10, - ACTIONS(878), 1, + anon_sym_get, + anon_sym_set, + ACTIONS(2346), 10, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [42098] = 10, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, - ACTIONS(2370), 1, + ACTIONS(2186), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2360), 2, + ACTIONS(2188), 2, sym_number, sym_private_property_identifier, - ACTIONS(2372), 2, + ACTIONS(2190), 2, anon_sym_get, anon_sym_set, - STATE(1510), 3, + STATE(1480), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 5, + ACTIONS(881), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [43338] = 11, - ACTIONS(878), 1, + [42138] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, - ACTIONS(2374), 1, - anon_sym_STAR, - ACTIONS(2378), 1, - anon_sym_get, - ACTIONS(2380), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2376), 2, + ACTIONS(2348), 2, sym_number, sym_private_property_identifier, - STATE(1591), 3, + STATE(1548), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 5, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [43380] = 8, - ACTIONS(878), 1, + anon_sym_get, + anon_sym_set, + [42173] = 10, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(883), 1, + anon_sym_async, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, - anon_sym_LPAREN, + ACTIONS(2114), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2382), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - STATE(1495), 3, + ACTIONS(885), 2, + anon_sym_get, + anon_sym_set, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [42212] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2350), 8, anon_sym_export, anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43415] = 8, - ACTIONS(878), 1, + ACTIONS(2352), 8, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [42237] = 8, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2384), 2, + ACTIONS(2354), 2, sym_number, sym_private_property_identifier, - STATE(1442), 3, + STATE(1428), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74844,53 +72583,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43450] = 8, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2146), 1, - anon_sym_LPAREN, + [42272] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2386), 2, - sym_number, - sym_private_property_identifier, - STATE(1438), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(1420), 8, anon_sym_export, anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43485] = 8, - ACTIONS(878), 1, + ACTIONS(1422), 8, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [42297] = 8, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2388), 2, + ACTIONS(2356), 2, sym_number, sym_private_property_identifier, - STATE(1437), 3, + STATE(1409), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74898,26 +72632,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43520] = 8, - ACTIONS(878), 1, + [42332] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2390), 2, + ACTIONS(2318), 2, sym_number, sym_private_property_identifier, - STATE(1433), 3, + STATE(1547), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74925,53 +72659,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43555] = 8, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2146), 1, - anon_sym_LPAREN, + [42367] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2360), 2, - sym_number, - sym_private_property_identifier, - STATE(1510), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(2216), 8, anon_sym_export, anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43590] = 8, - ACTIONS(878), 1, + ACTIONS(2218), 8, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [42392] = 8, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2392), 2, + ACTIONS(2358), 2, sym_number, sym_private_property_identifier, - STATE(1432), 3, + STATE(1546), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -74979,26 +72708,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43625] = 8, - ACTIONS(878), 1, + [42427] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2394), 2, + ACTIONS(2360), 2, sym_number, sym_private_property_identifier, - STATE(1592), 3, + STATE(1559), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75006,56 +72735,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43660] = 11, - ACTIONS(878), 1, + [42462] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2396), 1, - anon_sym_STAR, - ACTIONS(2398), 1, - anon_sym_async, - ACTIONS(2402), 1, - anon_sym_get, - ACTIONS(2404), 1, - anon_sym_set, + ACTIONS(2118), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2400), 2, + ACTIONS(2362), 2, sym_number, sym_private_property_identifier, - STATE(1497), 3, + STATE(1572), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 4, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [43701] = 8, - ACTIONS(878), 1, + anon_sym_get, + anon_sym_set, + [42497] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2406), 2, + ACTIONS(2364), 2, sym_number, sym_private_property_identifier, - STATE(1496), 3, + STATE(1573), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75063,11 +72789,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43736] = 3, + [42532] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1535), 8, + ACTIONS(1541), 8, anon_sym_export, anon_sym_let, anon_sym_class, @@ -75076,7 +72802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1537), 8, + ACTIONS(1543), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -75085,38 +72811,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [43761] = 8, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2146), 1, - anon_sym_LPAREN, + [42557] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2408), 2, - sym_number, - sym_private_property_identifier, - STATE(1593), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(888), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43796] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2254), 8, + ACTIONS(1386), 8, anon_sym_export, anon_sym_let, anon_sym_class, @@ -75125,7 +72824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2256), 8, + ACTIONS(1388), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -75134,26 +72833,26 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [43821] = 8, - ACTIONS(878), 1, + [42582] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2410), 2, + ACTIONS(2366), 2, sym_number, sym_private_property_identifier, - STATE(1601), 3, + STATE(1414), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75161,53 +72860,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43856] = 8, - ACTIONS(878), 1, + [42617] = 11, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, - anon_sym_LPAREN, + ACTIONS(2368), 1, + anon_sym_STAR, + ACTIONS(2370), 1, + anon_sym_async, + ACTIONS(2374), 1, + anon_sym_get, + ACTIONS(2376), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2412), 2, + ACTIONS(2372), 2, sym_number, sym_private_property_identifier, - STATE(1602), 3, + STATE(1382), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [43891] = 8, - ACTIONS(878), 1, + [42658] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2414), 2, + ACTIONS(2378), 2, sym_number, sym_private_property_identifier, - STATE(1446), 3, + STATE(1388), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75215,26 +72917,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43926] = 8, - ACTIONS(878), 1, + [42693] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2416), 2, + ACTIONS(2380), 2, sym_number, sym_private_property_identifier, - STATE(1604), 3, + STATE(1399), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75242,26 +72944,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43961] = 8, - ACTIONS(878), 1, + [42728] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2418), 2, + ACTIONS(2382), 2, sym_number, sym_private_property_identifier, - STATE(1605), 3, + STATE(1389), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75269,195 +72971,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43996] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1612), 8, - anon_sym_export, - anon_sym_let, - anon_sym_class, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1614), 8, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [44021] = 10, - ACTIONS(878), 1, + [42763] = 10, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2156), 1, + ACTIONS(2126), 1, anon_sym_STAR, - ACTIONS(2420), 1, + ACTIONS(2384), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2238), 2, + ACTIONS(2172), 2, sym_number, sym_private_property_identifier, - ACTIONS(2240), 2, + ACTIONS(2174), 2, anon_sym_get, anon_sym_set, - STATE(1531), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(888), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [44060] = 8, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2146), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2422), 2, - sym_number, - sym_private_property_identifier, - STATE(1449), 3, + STATE(1457), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [44095] = 12, - ACTIONS(93), 1, + [42802] = 12, + ACTIONS(91), 1, anon_sym_AT, - ACTIONS(828), 1, + ACTIONS(777), 1, anon_sym_var, - ACTIONS(842), 1, + ACTIONS(791), 1, anon_sym_class, - ACTIONS(844), 1, + ACTIONS(793), 1, anon_sym_async, - ACTIONS(846), 1, + ACTIONS(795), 1, anon_sym_function, - ACTIONS(2424), 1, + ACTIONS(2386), 1, anon_sym_default, - STATE(374), 1, + STATE(368), 1, sym_declaration, - STATE(1017), 1, + STATE(1004), 1, sym_decorator, - STATE(1251), 1, + STATE(1269), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(830), 2, + ACTIONS(779), 2, anon_sym_let, anon_sym_const, - STATE(368), 5, + STATE(363), 5, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, sym_function_declaration, sym_generator_function_declaration, - [44138] = 12, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(828), 1, - anon_sym_var, - ACTIONS(842), 1, - anon_sym_class, - ACTIONS(844), 1, - anon_sym_async, - ACTIONS(846), 1, - anon_sym_function, - ACTIONS(2356), 1, - anon_sym_default, - STATE(374), 1, - sym_declaration, - STATE(1017), 1, - sym_decorator, - STATE(1251), 1, - aux_sym_export_statement_repeat1, + [42845] = 8, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(2000), 1, + anon_sym_LBRACK, + ACTIONS(2118), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(830), 2, + ACTIONS(2388), 2, + sym_number, + sym_private_property_identifier, + STATE(1427), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(881), 7, + anon_sym_export, anon_sym_let, - anon_sym_const, - STATE(368), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [44181] = 10, - ACTIONS(878), 1, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [42880] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(890), 1, - anon_sym_async, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2144), 1, - anon_sym_STAR, + ACTIONS(2118), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(2188), 2, sym_number, sym_private_property_identifier, - ACTIONS(892), 2, + STATE(1480), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(881), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [42915] = 11, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(2000), 1, + anon_sym_LBRACK, + ACTIONS(2390), 1, + anon_sym_STAR, + ACTIONS(2392), 1, + anon_sym_async, + ACTIONS(2396), 1, anon_sym_get, + ACTIONS(2398), 1, anon_sym_set, - STATE(1622), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2394), 2, + sym_number, + sym_private_property_identifier, + STATE(1483), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 4, + ACTIONS(881), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [44220] = 8, - ACTIONS(878), 1, + [42956] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2426), 2, + ACTIONS(2400), 2, sym_number, sym_private_property_identifier, - STATE(1585), 3, + STATE(1494), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75465,48 +73142,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44255] = 3, + [42991] = 8, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(2000), 1, + anon_sym_LBRACK, + ACTIONS(2118), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1616), 8, + ACTIONS(2402), 2, + sym_number, + sym_private_property_identifier, + STATE(1496), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1618), 8, - anon_sym_STAR, - anon_sym_LBRACK, + [43026] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, + ACTIONS(873), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [44280] = 8, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2234), 2, + ACTIONS(2404), 2, sym_number, sym_private_property_identifier, - STATE(1567), 3, + STATE(1497), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75514,11 +73196,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44315] = 3, + [43061] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2428), 8, + ACTIONS(2406), 8, anon_sym_export, anon_sym_let, anon_sym_class, @@ -75527,7 +73209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2430), 8, + ACTIONS(2408), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -75536,26 +73218,26 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [44340] = 8, - ACTIONS(878), 1, + [43086] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2432), 2, + ACTIONS(2410), 2, sym_number, sym_private_property_identifier, - STATE(1584), 3, + STATE(1504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75563,48 +73245,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44375] = 3, + [43121] = 8, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(2000), 1, + anon_sym_LBRACK, + ACTIONS(2118), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2434), 8, + ACTIONS(2412), 2, + sym_number, + sym_private_property_identifier, + STATE(1505), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2436), 8, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [44400] = 8, - ACTIONS(878), 1, + [43156] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2438), 2, + ACTIONS(2414), 2, sym_number, sym_private_property_identifier, - STATE(1520), 3, + STATE(1511), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75612,26 +73299,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44435] = 8, - ACTIONS(878), 1, + [43191] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2440), 2, + ACTIONS(2416), 2, sym_number, sym_private_property_identifier, - STATE(1519), 3, + STATE(1623), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75639,26 +73326,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44470] = 8, - ACTIONS(878), 1, + [43226] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2442), 2, + ACTIONS(2418), 2, sym_number, sym_private_property_identifier, - STATE(1582), 3, + STATE(1514), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75666,26 +73353,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44505] = 8, - ACTIONS(878), 1, + [43261] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2444), 2, + ACTIONS(2420), 2, sym_number, sym_private_property_identifier, - STATE(1504), 3, + STATE(1515), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75693,56 +73380,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44540] = 11, - ACTIONS(878), 1, + [43296] = 12, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(777), 1, + anon_sym_var, + ACTIONS(791), 1, + anon_sym_class, + ACTIONS(793), 1, + anon_sym_async, + ACTIONS(795), 1, + anon_sym_function, + ACTIONS(2324), 1, + anon_sym_default, + STATE(368), 1, + sym_declaration, + STATE(1004), 1, + sym_decorator, + STATE(1269), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(779), 2, + anon_sym_let, + anon_sym_const, + STATE(363), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [43339] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2446), 1, - anon_sym_STAR, - ACTIONS(2448), 1, - anon_sym_async, - ACTIONS(2452), 1, - anon_sym_get, - ACTIONS(2454), 1, - anon_sym_set, + ACTIONS(2118), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2450), 2, + ACTIONS(2422), 2, sym_number, sym_private_property_identifier, - STATE(1570), 3, + STATE(1386), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 4, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [44581] = 8, - ACTIONS(878), 1, + anon_sym_get, + anon_sym_set, + [43374] = 7, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2456), 2, + ACTIONS(2424), 2, sym_number, sym_private_property_identifier, - STATE(1503), 3, + STATE(1392), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75750,24 +73463,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44616] = 7, - ACTIONS(878), 1, + [43406] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2426), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [43428] = 7, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2458), 2, + ACTIONS(2428), 2, sym_number, sym_private_property_identifier, - STATE(1501), 3, + STATE(1387), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75775,24 +73508,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44648] = 7, - ACTIONS(878), 1, + [43460] = 7, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2360), 2, + ACTIONS(2430), 2, sym_number, sym_private_property_identifier, - STATE(1510), 3, + STATE(1543), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75800,24 +73533,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44680] = 7, - ACTIONS(878), 1, + [43492] = 7, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2238), 2, + ACTIONS(2432), 2, sym_number, sym_private_property_identifier, - STATE(1531), 3, + STATE(1571), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75825,24 +73558,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44712] = 7, - ACTIONS(878), 1, + [43524] = 7, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2442), 2, + ACTIONS(2434), 2, sym_number, sym_private_property_identifier, - STATE(1582), 3, + STATE(1418), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75850,24 +73583,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44744] = 7, - ACTIONS(878), 1, + [43556] = 7, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(884), 2, + ACTIONS(2436), 2, sym_number, sym_private_property_identifier, - STATE(1622), 3, + STATE(1609), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75875,24 +73608,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44776] = 7, - ACTIONS(878), 1, + [43588] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2438), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [43610] = 7, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2460), 2, + ACTIONS(2172), 2, sym_number, sym_private_property_identifier, - STATE(1590), 3, + STATE(1457), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75900,24 +73653,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44808] = 7, - ACTIONS(878), 1, + [43642] = 7, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2462), 2, + ACTIONS(2188), 2, sym_number, sym_private_property_identifier, - STATE(1600), 3, + STATE(1480), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75925,24 +73678,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44840] = 7, - ACTIONS(878), 1, + [43674] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2440), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [43696] = 7, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2464), 2, + ACTIONS(2442), 2, sym_number, sym_private_property_identifier, - STATE(1440), 3, + STATE(1481), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75950,24 +73723,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44872] = 7, - ACTIONS(878), 1, + [43728] = 7, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2466), 2, + ACTIONS(2318), 2, sym_number, sym_private_property_identifier, - STATE(1603), 3, + STATE(1547), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -75975,24 +73748,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44904] = 7, - ACTIONS(878), 1, + [43760] = 7, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2468), 2, + ACTIONS(2400), 2, sym_number, sym_private_property_identifier, - STATE(1583), 3, + STATE(1494), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -76000,44 +73773,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44936] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2470), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [44958] = 7, - ACTIONS(878), 1, + [43792] = 7, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2472), 2, + ACTIONS(2444), 2, sym_number, sym_private_property_identifier, - STATE(1568), 3, + STATE(1495), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -76045,44 +73798,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44990] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2474), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [45012] = 7, - ACTIONS(878), 1, + [43824] = 7, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2234), 2, + ACTIONS(2446), 2, sym_number, sym_private_property_identifier, - STATE(1567), 3, + STATE(1498), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -76090,24 +73823,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [45044] = 7, - ACTIONS(878), 1, + [43856] = 7, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2476), 2, + ACTIONS(2448), 2, sym_number, sym_private_property_identifier, - STATE(1586), 3, + STATE(1502), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -76115,24 +73848,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [45076] = 7, - ACTIONS(878), 1, + [43888] = 7, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2478), 2, + ACTIONS(2450), 2, sym_number, sym_private_property_identifier, - STATE(1447), 3, + STATE(1510), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -76140,24 +73873,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [45108] = 7, - ACTIONS(878), 1, + [43920] = 7, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2422), 2, + ACTIONS(2452), 2, sym_number, sym_private_property_identifier, - STATE(1449), 3, + STATE(1513), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -76165,11 +73898,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [45140] = 2, + [43952] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2480), 15, + ACTIONS(2454), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76185,11 +73918,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [45162] = 2, + [43974] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2482), 15, + ACTIONS(2456), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76205,49 +73938,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [45184] = 7, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2484), 2, - sym_number, - sym_private_property_identifier, - STATE(1435), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(888), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [45216] = 7, - ACTIONS(878), 1, + [43996] = 7, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2486), 2, + ACTIONS(2358), 2, sym_number, sym_private_property_identifier, - STATE(1502), 3, + STATE(1546), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -76255,44 +73963,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [45248] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2488), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [45270] = 7, - ACTIONS(878), 1, + [44028] = 7, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2490), 2, + ACTIONS(877), 2, sym_number, sym_private_property_identifier, - STATE(1518), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(888), 7, + ACTIONS(881), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -76300,1034 +73988,1033 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [45302] = 11, - ACTIONS(2066), 1, + [44060] = 11, + ACTIONS(2020), 1, anon_sym_DQUOTE, - ACTIONS(2068), 1, + ACTIONS(2022), 1, anon_sym_SQUOTE, - ACTIONS(2492), 1, + ACTIONS(2458), 1, sym_identifier, - ACTIONS(2494), 1, + ACTIONS(2460), 1, anon_sym_STAR, - ACTIONS(2496), 1, + ACTIONS(2462), 1, anon_sym_LBRACE, - ACTIONS(2500), 1, + ACTIONS(2466), 1, anon_sym_DOT, - STATE(1263), 1, + STATE(1255), 1, sym_string, - STATE(1459), 1, + STATE(1461), 1, sym_import_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1706), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(2498), 3, + ACTIONS(2464), 2, anon_sym_LPAREN, sym_optional_chain, - anon_sym_BQUOTE, - [45340] = 11, - ACTIONS(2502), 1, - sym_identifier, - ACTIONS(2504), 1, - anon_sym_LBRACE, - ACTIONS(2506), 1, - anon_sym_COLON, - ACTIONS(2508), 1, - anon_sym_GT, - ACTIONS(2510), 1, - sym_jsx_identifier, - ACTIONS(2512), 1, - anon_sym_DOT, - ACTIONS(2514), 1, - anon_sym_SLASH_GT, - STATE(1092), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1157), 2, - sym_jsx_expression, - sym_jsx_attribute, - [45376] = 11, - ACTIONS(2502), 1, - sym_identifier, - ACTIONS(2504), 1, + STATE(1634), 2, + sym_namespace_import, + sym_named_imports, + [44097] = 8, + ACTIONS(2468), 1, anon_sym_LBRACE, - ACTIONS(2506), 1, - anon_sym_COLON, - ACTIONS(2508), 1, - anon_sym_GT, - ACTIONS(2510), 1, - sym_jsx_identifier, - ACTIONS(2512), 1, - anon_sym_DOT, - ACTIONS(2516), 1, - anon_sym_SLASH_GT, - STATE(1081), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, - sym_jsx_namespace_name, + ACTIONS(2472), 1, + anon_sym_LT, + ACTIONS(2474), 1, + anon_sym_LT_SLASH, + STATE(1046), 1, + sym_jsx_opening_element, + STATE(1176), 1, + sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + ACTIONS(2470), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1044), 4, + sym_jsx_element, sym_jsx_expression, - sym_jsx_attribute, - [45412] = 8, - ACTIONS(2518), 1, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [44127] = 8, + ACTIONS(2468), 1, anon_sym_LBRACE, - ACTIONS(2522), 1, + ACTIONS(2472), 1, anon_sym_LT, - ACTIONS(2524), 1, + ACTIONS(2478), 1, anon_sym_LT_SLASH, - STATE(547), 1, + STATE(540), 1, sym_jsx_closing_element, - STATE(1057), 1, + STATE(1046), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2520), 2, + ACTIONS(2476), 2, sym_jsx_text, sym_html_character_reference, - STATE(1061), 4, + STATE(1056), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [45442] = 8, - ACTIONS(2518), 1, + [44157] = 8, + ACTIONS(2468), 1, anon_sym_LBRACE, - ACTIONS(2522), 1, + ACTIONS(2472), 1, anon_sym_LT, - ACTIONS(2528), 1, + ACTIONS(2478), 1, anon_sym_LT_SLASH, - STATE(690), 1, + STATE(559), 1, sym_jsx_closing_element, - STATE(1057), 1, + STATE(1046), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2526), 2, + ACTIONS(2480), 2, sym_jsx_text, sym_html_character_reference, - STATE(1069), 4, + STATE(1038), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [45472] = 8, - ACTIONS(2518), 1, + [44187] = 8, + ACTIONS(2468), 1, anon_sym_LBRACE, - ACTIONS(2522), 1, + ACTIONS(2472), 1, anon_sym_LT, - ACTIONS(2530), 1, + ACTIONS(2482), 1, anon_sym_LT_SLASH, - STATE(1057), 1, - sym_jsx_opening_element, - STATE(1206), 1, + STATE(645), 1, sym_jsx_closing_element, + STATE(1046), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2526), 2, + ACTIONS(2476), 2, sym_jsx_text, sym_html_character_reference, - STATE(1069), 4, + STATE(1056), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [45502] = 8, - ACTIONS(2518), 1, + [44217] = 8, + ACTIONS(2468), 1, anon_sym_LBRACE, - ACTIONS(2522), 1, + ACTIONS(2472), 1, anon_sym_LT, - ACTIONS(2532), 1, + ACTIONS(2482), 1, anon_sym_LT_SLASH, - STATE(1057), 1, - sym_jsx_opening_element, - STATE(1155), 1, + STATE(677), 1, sym_jsx_closing_element, + STATE(1046), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2526), 2, + ACTIONS(2484), 2, sym_jsx_text, sym_html_character_reference, - STATE(1069), 4, + STATE(1040), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [45532] = 11, - ACTIONS(2502), 1, + [44247] = 11, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2506), 1, + ACTIONS(2490), 1, anon_sym_COLON, - ACTIONS(2508), 1, + ACTIONS(2492), 1, anon_sym_GT, - ACTIONS(2510), 1, + ACTIONS(2494), 1, + sym_jsx_identifier, + ACTIONS(2496), 1, + anon_sym_DOT, + ACTIONS(2498), 1, + anon_sym_SLASH_GT, + STATE(1073), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1130), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1187), 2, + sym_jsx_expression, + sym_jsx_attribute, + [44283] = 11, + ACTIONS(2486), 1, + sym_identifier, + ACTIONS(2488), 1, + anon_sym_LBRACE, + ACTIONS(2490), 1, + anon_sym_COLON, + ACTIONS(2492), 1, + anon_sym_GT, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2512), 1, + ACTIONS(2496), 1, anon_sym_DOT, - ACTIONS(2534), 1, + ACTIONS(2500), 1, anon_sym_SLASH_GT, - STATE(1087), 1, + STATE(1063), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [45568] = 8, - ACTIONS(2518), 1, + [44319] = 8, + ACTIONS(2468), 1, anon_sym_LBRACE, - ACTIONS(2522), 1, + ACTIONS(2472), 1, anon_sym_LT, - ACTIONS(2532), 1, + ACTIONS(2474), 1, anon_sym_LT_SLASH, - STATE(1057), 1, + STATE(1046), 1, sym_jsx_opening_element, - STATE(1161), 1, + STATE(1197), 1, sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2536), 2, + ACTIONS(2476), 2, sym_jsx_text, sym_html_character_reference, - STATE(1055), 4, + STATE(1056), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [45598] = 8, - ACTIONS(2518), 1, + [44349] = 11, + ACTIONS(2486), 1, + sym_identifier, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2522), 1, - anon_sym_LT, - ACTIONS(2528), 1, - anon_sym_LT_SLASH, - STATE(781), 1, - sym_jsx_closing_element, - STATE(1057), 1, - sym_jsx_opening_element, + ACTIONS(2490), 1, + anon_sym_COLON, + ACTIONS(2492), 1, + anon_sym_GT, + ACTIONS(2494), 1, + sym_jsx_identifier, + ACTIONS(2496), 1, + anon_sym_DOT, + ACTIONS(2502), 1, + anon_sym_SLASH_GT, + STATE(1061), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1130), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2538), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(1053), 4, - sym_jsx_element, + STATE(1187), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [45628] = 8, - ACTIONS(2518), 1, + sym_jsx_attribute, + [44385] = 8, + ACTIONS(2468), 1, anon_sym_LBRACE, - ACTIONS(2522), 1, + ACTIONS(2472), 1, anon_sym_LT, - ACTIONS(2530), 1, + ACTIONS(2506), 1, anon_sym_LT_SLASH, - STATE(1057), 1, + STATE(1046), 1, sym_jsx_opening_element, - STATE(1176), 1, + STATE(1189), 1, sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2540), 2, + ACTIONS(2504), 2, sym_jsx_text, sym_html_character_reference, - STATE(1054), 4, + STATE(1048), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [45658] = 11, - ACTIONS(2502), 1, + [44415] = 11, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2506), 1, + ACTIONS(2490), 1, anon_sym_COLON, - ACTIONS(2508), 1, + ACTIONS(2492), 1, anon_sym_GT, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2512), 1, + ACTIONS(2496), 1, anon_sym_DOT, - ACTIONS(2542), 1, + ACTIONS(2508), 1, anon_sym_SLASH_GT, - STATE(1076), 1, + STATE(1070), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [45694] = 8, - ACTIONS(2518), 1, + [44451] = 8, + ACTIONS(2468), 1, anon_sym_LBRACE, - ACTIONS(2522), 1, + ACTIONS(2472), 1, anon_sym_LT, - ACTIONS(2524), 1, + ACTIONS(2506), 1, anon_sym_LT_SLASH, - STATE(554), 1, - sym_jsx_closing_element, - STATE(1057), 1, + STATE(1046), 1, sym_jsx_opening_element, + STATE(1188), 1, + sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2526), 2, + ACTIONS(2476), 2, sym_jsx_text, sym_html_character_reference, - STATE(1069), 4, + STATE(1056), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [45724] = 10, - ACTIONS(2502), 1, + [44481] = 10, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2508), 1, + ACTIONS(2492), 1, anon_sym_GT, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2512), 1, + ACTIONS(2496), 1, anon_sym_DOT, - ACTIONS(2514), 1, + ACTIONS(2508), 1, anon_sym_SLASH_GT, - STATE(1084), 1, + STATE(1074), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [45757] = 10, - ACTIONS(2502), 1, + [44514] = 10, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2506), 1, + ACTIONS(2490), 1, anon_sym_COLON, - ACTIONS(2508), 1, + ACTIONS(2492), 1, anon_sym_GT, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2542), 1, + ACTIONS(2498), 1, anon_sym_SLASH_GT, - STATE(1075), 1, + STATE(1072), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [45790] = 10, - ACTIONS(2502), 1, + [44547] = 10, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2508), 1, + ACTIONS(2492), 1, anon_sym_GT, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2512), 1, + ACTIONS(2496), 1, anon_sym_DOT, - ACTIONS(2542), 1, + ACTIONS(2502), 1, anon_sym_SLASH_GT, - STATE(1078), 1, + STATE(1064), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [45823] = 10, - ACTIONS(2502), 1, + [44580] = 10, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2506), 1, + ACTIONS(2490), 1, anon_sym_COLON, - ACTIONS(2508), 1, + ACTIONS(2492), 1, anon_sym_GT, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2534), 1, + ACTIONS(2500), 1, anon_sym_SLASH_GT, - STATE(1088), 1, + STATE(1062), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [45856] = 10, - ACTIONS(2502), 1, + [44613] = 10, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2506), 1, - anon_sym_COLON, - ACTIONS(2508), 1, + ACTIONS(2492), 1, anon_sym_GT, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2516), 1, + ACTIONS(2496), 1, + anon_sym_DOT, + ACTIONS(2500), 1, anon_sym_SLASH_GT, - STATE(1071), 1, + STATE(1058), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [45889] = 10, - ACTIONS(2502), 1, + [44646] = 10, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2506), 1, - anon_sym_COLON, - ACTIONS(2508), 1, + ACTIONS(2492), 1, anon_sym_GT, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2514), 1, + ACTIONS(2496), 1, + anon_sym_DOT, + ACTIONS(2498), 1, anon_sym_SLASH_GT, - STATE(1072), 1, + STATE(1075), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [45922] = 10, - ACTIONS(2502), 1, + [44679] = 10, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2508), 1, + ACTIONS(2490), 1, + anon_sym_COLON, + ACTIONS(2492), 1, anon_sym_GT, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2512), 1, - anon_sym_DOT, - ACTIONS(2516), 1, + ACTIONS(2502), 1, anon_sym_SLASH_GT, - STATE(1089), 1, + STATE(1080), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [45955] = 7, - ACTIONS(2544), 1, + [44712] = 7, + ACTIONS(2510), 1, anon_sym_LBRACE, - ACTIONS(2550), 1, + ACTIONS(2516), 1, anon_sym_LT, - ACTIONS(2553), 1, + ACTIONS(2519), 1, anon_sym_LT_SLASH, - STATE(1057), 1, + STATE(1046), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2547), 2, + ACTIONS(2513), 2, sym_jsx_text, sym_html_character_reference, - STATE(1069), 4, + STATE(1056), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [45982] = 10, - ACTIONS(2502), 1, + [44739] = 10, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2508), 1, + ACTIONS(2490), 1, + anon_sym_COLON, + ACTIONS(2492), 1, anon_sym_GT, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2512), 1, - anon_sym_DOT, - ACTIONS(2534), 1, + ACTIONS(2508), 1, anon_sym_SLASH_GT, - STATE(1085), 1, + STATE(1066), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46015] = 9, - ACTIONS(2502), 1, + [44772] = 9, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2555), 1, + ACTIONS(2521), 1, anon_sym_GT, - ACTIONS(2557), 1, + ACTIONS(2523), 1, anon_sym_SLASH_GT, - STATE(1082), 1, + STATE(1071), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46045] = 9, - ACTIONS(2502), 1, - sym_identifier, - ACTIONS(2504), 1, + [44802] = 7, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2510), 1, - sym_jsx_identifier, - ACTIONS(2555), 1, - anon_sym_GT, - ACTIONS(2559), 1, - anon_sym_SLASH_GT, - STATE(1082), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, - sym_jsx_namespace_name, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(2527), 1, + anon_sym_DQUOTE, + ACTIONS(2529), 1, + anon_sym_SQUOTE, + STATE(1037), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1167), 4, + sym_jsx_element, sym_jsx_expression, - sym_jsx_attribute, - [46075] = 9, - ACTIONS(2502), 1, + sym_jsx_self_closing_element, + sym__jsx_string, + [44828] = 9, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2508), 1, + ACTIONS(2492), 1, anon_sym_GT, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2542), 1, + ACTIONS(2498), 1, anon_sym_SLASH_GT, - STATE(1090), 1, + STATE(1076), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46105] = 9, - ACTIONS(2502), 1, + [44858] = 9, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2561), 1, + ACTIONS(2531), 1, anon_sym_GT, - ACTIONS(2563), 1, + ACTIONS(2533), 1, anon_sym_SLASH_GT, - STATE(1082), 1, + STATE(1071), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46135] = 9, - ACTIONS(2502), 1, + [44888] = 9, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2555), 1, + ACTIONS(2535), 1, anon_sym_GT, - ACTIONS(2565), 1, + ACTIONS(2537), 1, anon_sym_SLASH_GT, - STATE(1082), 1, + STATE(1071), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46165] = 9, - ACTIONS(2502), 1, + [44918] = 9, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2567), 1, + ACTIONS(2531), 1, anon_sym_GT, - ACTIONS(2569), 1, + ACTIONS(2539), 1, anon_sym_SLASH_GT, - STATE(1082), 1, + STATE(1071), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46195] = 9, - ACTIONS(2502), 1, + [44948] = 9, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2508), 1, - anon_sym_GT, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2516), 1, + ACTIONS(2521), 1, + anon_sym_GT, + ACTIONS(2541), 1, anon_sym_SLASH_GT, - STATE(1093), 1, + STATE(1071), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46225] = 9, - ACTIONS(2502), 1, + [44978] = 9, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2571), 1, + ACTIONS(2543), 1, anon_sym_GT, - ACTIONS(2573), 1, + ACTIONS(2545), 1, anon_sym_SLASH_GT, - STATE(1082), 1, + STATE(1071), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46255] = 7, - ACTIONS(2504), 1, - anon_sym_LBRACE, - ACTIONS(2575), 1, - anon_sym_LT, - ACTIONS(2577), 1, - anon_sym_DQUOTE, - ACTIONS(2579), 1, - anon_sym_SQUOTE, - STATE(1059), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1203), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [46281] = 7, - ACTIONS(2504), 1, + [45008] = 9, + ACTIONS(2486), 1, + sym_identifier, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2575), 1, - anon_sym_LT, - ACTIONS(2577), 1, - anon_sym_DQUOTE, - ACTIONS(2579), 1, - anon_sym_SQUOTE, - STATE(1059), 1, - sym_jsx_opening_element, + ACTIONS(2494), 1, + sym_jsx_identifier, + ACTIONS(2535), 1, + anon_sym_GT, + ACTIONS(2547), 1, + anon_sym_SLASH_GT, + STATE(1071), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1130), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1204), 4, - sym_jsx_element, + STATE(1187), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [46307] = 9, - ACTIONS(2502), 1, + sym_jsx_attribute, + [45038] = 9, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2510), 1, - sym_jsx_identifier, - ACTIONS(2567), 1, + ACTIONS(2492), 1, anon_sym_GT, - ACTIONS(2581), 1, + ACTIONS(2494), 1, + sym_jsx_identifier, + ACTIONS(2502), 1, anon_sym_SLASH_GT, - STATE(1082), 1, + STATE(1077), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46337] = 8, - ACTIONS(2583), 1, + [45068] = 9, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2586), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2591), 1, + ACTIONS(2492), 1, + anon_sym_GT, + ACTIONS(2494), 1, sym_jsx_identifier, - STATE(1082), 1, + ACTIONS(2500), 1, + anon_sym_SLASH_GT, + STATE(1065), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2589), 2, - anon_sym_GT, - anon_sym_SLASH_GT, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46365] = 9, - ACTIONS(2502), 1, + [45098] = 7, + ACTIONS(2488), 1, + anon_sym_LBRACE, + ACTIONS(2525), 1, + anon_sym_LT, + ACTIONS(2527), 1, + anon_sym_DQUOTE, + ACTIONS(2529), 1, + anon_sym_SQUOTE, + STATE(1037), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1166), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [45124] = 9, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2508), 1, - anon_sym_GT, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2514), 1, + ACTIONS(2531), 1, + anon_sym_GT, + ACTIONS(2549), 1, anon_sym_SLASH_GT, - STATE(1086), 1, + STATE(1071), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46395] = 9, - ACTIONS(2502), 1, + [45154] = 8, + ACTIONS(2551), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2554), 1, anon_sym_LBRACE, - ACTIONS(2510), 1, + ACTIONS(2559), 1, sym_jsx_identifier, - ACTIONS(2571), 1, - anon_sym_GT, - ACTIONS(2594), 1, - anon_sym_SLASH_GT, - STATE(1082), 1, + STATE(1071), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + ACTIONS(2557), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46425] = 9, - ACTIONS(2502), 1, + [45182] = 9, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2571), 1, + ACTIONS(2535), 1, anon_sym_GT, - ACTIONS(2596), 1, + ACTIONS(2562), 1, anon_sym_SLASH_GT, - STATE(1082), 1, + STATE(1071), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46455] = 9, - ACTIONS(2502), 1, + [45212] = 9, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2561), 1, + ACTIONS(2531), 1, anon_sym_GT, - ACTIONS(2598), 1, + ACTIONS(2564), 1, anon_sym_SLASH_GT, - STATE(1082), 1, + STATE(1071), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46485] = 9, - ACTIONS(2502), 1, + [45242] = 9, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2567), 1, + ACTIONS(2521), 1, anon_sym_GT, - ACTIONS(2600), 1, + ACTIONS(2566), 1, anon_sym_SLASH_GT, - STATE(1082), 1, + STATE(1071), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46515] = 9, - ACTIONS(2502), 1, + [45272] = 9, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2555), 1, + ACTIONS(2521), 1, anon_sym_GT, - ACTIONS(2602), 1, + ACTIONS(2568), 1, anon_sym_SLASH_GT, - STATE(1082), 1, + STATE(1071), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46545] = 9, - ACTIONS(2502), 1, + [45302] = 9, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2571), 1, + ACTIONS(2543), 1, anon_sym_GT, - ACTIONS(2604), 1, + ACTIONS(2570), 1, anon_sym_SLASH_GT, - STATE(1082), 1, + STATE(1071), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46575] = 9, - ACTIONS(2502), 1, + [45332] = 9, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2561), 1, + ACTIONS(2543), 1, anon_sym_GT, - ACTIONS(2606), 1, + ACTIONS(2572), 1, anon_sym_SLASH_GT, - STATE(1082), 1, + STATE(1071), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46605] = 9, - ACTIONS(2502), 1, + [45362] = 9, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2508), 1, + ACTIONS(2492), 1, anon_sym_GT, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2534), 1, + ACTIONS(2508), 1, anon_sym_SLASH_GT, - STATE(1074), 1, + STATE(1079), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46635] = 9, - ACTIONS(2502), 1, + [45392] = 9, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2567), 1, + ACTIONS(2543), 1, anon_sym_GT, - ACTIONS(2608), 1, + ACTIONS(2574), 1, anon_sym_SLASH_GT, - STATE(1082), 1, + STATE(1071), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46665] = 9, - ACTIONS(2502), 1, + [45422] = 9, + ACTIONS(2486), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, - ACTIONS(2510), 1, + ACTIONS(2494), 1, sym_jsx_identifier, - ACTIONS(2561), 1, + ACTIONS(2535), 1, anon_sym_GT, - ACTIONS(2610), 1, + ACTIONS(2576), 1, anon_sym_SLASH_GT, - STATE(1082), 1, + STATE(1071), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1152), 1, + STATE(1130), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1157), 2, + STATE(1187), 2, sym_jsx_expression, sym_jsx_attribute, - [46695] = 8, - ACTIONS(878), 1, + [45452] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2612), 1, + ACTIONS(2578), 1, sym_identifier, - ACTIONS(2614), 1, + ACTIONS(2580), 1, anon_sym_COMMA, - ACTIONS(2616), 1, + ACTIONS(2582), 1, anon_sym_RBRACE, - STATE(1311), 1, - sym_import_specifier, + STATE(1292), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1662), 2, + STATE(1297), 2, sym__module_export_name, sym_string, - [46722] = 8, - ACTIONS(878), 1, + [45479] = 8, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2618), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2586), 1, anon_sym_COMMA, - ACTIONS(2622), 1, + ACTIONS(2588), 1, anon_sym_RBRACE, - STATE(1310), 1, - sym_export_specifier, + STATE(1340), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1349), 2, + STATE(1714), 2, sym__module_export_name, sym_string, - [46749] = 2, + [45506] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2624), 7, + ACTIONS(2590), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -77335,11 +75022,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [46763] = 2, + [45520] = 6, + ACTIONS(930), 1, + anon_sym_LBRACE, + ACTIONS(932), 1, + anon_sym_LBRACK, + ACTIONS(2592), 1, + sym_identifier, + STATE(1221), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1148), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [45542] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2626), 7, + ACTIONS(2594), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -77347,313 +75050,283 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [46777] = 7, - ACTIONS(878), 1, + [45556] = 7, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2618), 1, + ACTIONS(2578), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2596), 1, anon_sym_RBRACE, - STATE(1458), 1, + STATE(1464), 1, sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1349), 2, + STATE(1297), 2, sym__module_export_name, sym_string, - [46801] = 7, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2618), 1, - sym_identifier, - ACTIONS(2630), 1, + [45580] = 7, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(809), 1, anon_sym_RBRACE, - STATE(1458), 1, - sym_export_specifier, + ACTIONS(2120), 1, + anon_sym_EQ, + STATE(1318), 1, + aux_sym_object_repeat1, + STATE(1324), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1349), 2, - sym__module_export_name, - sym_string, - [46825] = 7, - ACTIONS(105), 1, + ACTIONS(2118), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [45604] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2598), 7, anon_sym_COMMA, - ACTIONS(2148), 1, - anon_sym_EQ, - ACTIONS(2154), 1, anon_sym_RBRACE, - STATE(1302), 1, - aux_sym_object_pattern_repeat1, - STATE(1378), 1, - aux_sym_object_repeat1, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_RBRACK, + [45618] = 5, + ACTIONS(2604), 1, + anon_sym_EQ, + STATE(1164), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2146), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [46849] = 7, - ACTIONS(105), 1, + ACTIONS(2602), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(2600), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [45638] = 7, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, - ACTIONS(2150), 1, + ACTIONS(2124), 1, anon_sym_RBRACE, - STATE(1302), 1, + STATE(1324), 1, aux_sym_object_pattern_repeat1, - STATE(1378), 1, + STATE(1352), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - [46873] = 2, + [45662] = 6, + ACTIONS(2606), 1, + anon_sym_EQ, + ACTIONS(2608), 1, + sym__automatic_semicolon, + STATE(1345), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2632), 7, + ACTIONS(2600), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(2602), 2, anon_sym_in, anon_sym_of, - anon_sym_EQ, - anon_sym_RBRACK, - [46887] = 4, - ACTIONS(2634), 1, + [45684] = 7, + ACTIONS(103), 1, anon_sym_COMMA, - STATE(1103), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(775), 1, + anon_sym_RBRACE, + ACTIONS(2120), 1, + anon_sym_EQ, + STATE(1324), 1, + aux_sym_object_pattern_repeat1, + STATE(1352), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1590), 5, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2118), 2, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_RBRACK, - [46905] = 7, - ACTIONS(105), 1, + [45708] = 7, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(854), 1, - anon_sym_RBRACE, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, - STATE(1301), 1, - aux_sym_object_repeat1, - STATE(1302), 1, + ACTIONS(2122), 1, + anon_sym_RBRACE, + STATE(1324), 1, aux_sym_object_pattern_repeat1, + STATE(1352), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - [46929] = 5, - ACTIONS(2506), 1, + [45732] = 5, + ACTIONS(2490), 1, anon_sym_COLON, - ACTIONS(2637), 1, + ACTIONS(2611), 1, sym_identifier, - ACTIONS(2641), 1, + ACTIONS(2615), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2639), 4, + ACTIONS(2613), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46949] = 7, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2612), 1, - sym_identifier, - ACTIONS(2643), 1, - anon_sym_RBRACE, - STATE(1422), 1, - sym_import_specifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1662), 2, - sym__module_export_name, - sym_string, - [46973] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2645), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - anon_sym_RBRACK, - [46987] = 7, - ACTIONS(105), 1, + [45752] = 7, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(852), 1, + ACTIONS(2116), 1, anon_sym_RBRACE, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, - STATE(1302), 1, + STATE(1324), 1, aux_sym_object_pattern_repeat1, - STATE(1378), 1, + STATE(1352), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - [47011] = 5, - ACTIONS(2651), 1, - anon_sym_EQ, - STATE(1202), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2649), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(2647), 3, - sym__automatic_semicolon, + [45776] = 4, + ACTIONS(1776), 1, anon_sym_COMMA, - anon_sym_SEMI, - [47031] = 6, - ACTIONS(2653), 1, - anon_sym_EQ, - ACTIONS(2655), 1, - sym__automatic_semicolon, - STATE(1314), 1, - sym__initializer, + STATE(1098), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2647), 2, - anon_sym_COMMA, + ACTIONS(2617), 5, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(2649), 2, - anon_sym_in, - anon_sym_of, - [47053] = 6, - ACTIONS(942), 1, - anon_sym_LBRACE, - ACTIONS(944), 1, - anon_sym_LBRACK, - ACTIONS(2658), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [45794] = 7, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(2584), 1, sym_identifier, - STATE(1259), 1, - sym_variable_declarator, + ACTIONS(2619), 1, + anon_sym_RBRACE, + STATE(1437), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1110), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [47075] = 6, - ACTIONS(942), 1, - anon_sym_LBRACE, - ACTIONS(944), 1, - anon_sym_LBRACK, - ACTIONS(2660), 1, - sym_identifier, - STATE(1260), 1, - sym_variable_declarator, + STATE(1714), 2, + sym__module_export_name, + sym_string, + [45818] = 4, + ACTIONS(2621), 1, + anon_sym_COMMA, + STATE(1098), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1109), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [47097] = 6, - ACTIONS(942), 1, + ACTIONS(1613), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [45836] = 6, + ACTIONS(930), 1, anon_sym_LBRACE, - ACTIONS(944), 1, + ACTIONS(932), 1, anon_sym_LBRACK, - ACTIONS(2662), 1, + ACTIONS(2592), 1, sym_identifier, - STATE(1366), 1, + STATE(1307), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1188), 3, + STATE(1148), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [47119] = 7, - ACTIONS(105), 1, + [45858] = 7, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(2148), 1, - anon_sym_EQ, - ACTIONS(2152), 1, + ACTIONS(807), 1, anon_sym_RBRACE, - STATE(1302), 1, + ACTIONS(2120), 1, + anon_sym_EQ, + STATE(1324), 1, aux_sym_object_pattern_repeat1, - STATE(1378), 1, + STATE(1352), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2146), 2, + ACTIONS(2118), 2, anon_sym_LPAREN, anon_sym_COLON, - [47143] = 7, - ACTIONS(878), 1, + [45882] = 7, + ACTIONS(871), 1, anon_sym_DQUOTE, - ACTIONS(880), 1, + ACTIONS(873), 1, anon_sym_SQUOTE, - ACTIONS(2612), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2664), 1, + ACTIONS(2624), 1, anon_sym_RBRACE, - STATE(1422), 1, + STATE(1437), 1, sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1662), 2, + STATE(1714), 2, sym__module_export_name, sym_string, - [47167] = 7, - ACTIONS(105), 1, - anon_sym_COMMA, - ACTIONS(826), 1, + [45906] = 7, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(2578), 1, + sym_identifier, + ACTIONS(2626), 1, anon_sym_RBRACE, - ACTIONS(2148), 1, - anon_sym_EQ, - STATE(1302), 1, - aux_sym_object_pattern_repeat1, - STATE(1378), 1, - aux_sym_object_repeat1, + STATE(1464), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2146), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [47191] = 2, + STATE(1297), 2, + sym__module_export_name, + sym_string, + [45930] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2666), 7, + ACTIONS(2628), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -77661,7173 +75334,7085 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [47205] = 4, - ACTIONS(1734), 1, - anon_sym_COMMA, - STATE(1103), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2668), 5, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [47223] = 6, - ACTIONS(942), 1, + [45944] = 6, + ACTIONS(930), 1, anon_sym_LBRACE, - ACTIONS(944), 1, + ACTIONS(932), 1, anon_sym_LBRACK, - ACTIONS(2662), 1, + ACTIONS(2592), 1, sym_identifier, - STATE(1266), 1, + STATE(1263), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1188), 3, + STATE(1148), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [47245] = 6, - ACTIONS(942), 1, + [45966] = 6, + ACTIONS(930), 1, anon_sym_LBRACE, - ACTIONS(944), 1, + ACTIONS(932), 1, anon_sym_LBRACK, - ACTIONS(2662), 1, + ACTIONS(2630), 1, sym_identifier, - STATE(1264), 1, + STATE(1212), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1188), 3, + STATE(1089), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [47267] = 6, - ACTIONS(407), 1, - anon_sym_BQUOTE, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(1353), 1, - anon_sym_DOT, - ACTIONS(2670), 1, - sym_optional_chain, + [45988] = 6, + ACTIONS(930), 1, + anon_sym_LBRACE, + ACTIONS(932), 1, + anon_sym_LBRACK, + ACTIONS(2632), 1, + sym_identifier, + STATE(1244), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(553), 2, - sym_template_string, - sym_arguments, - [47288] = 2, + STATE(1091), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [46010] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1768), 6, - sym__automatic_semicolon, + ACTIONS(2634), 7, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_in, anon_sym_of, anon_sym_EQ, - [47301] = 2, + anon_sym_RBRACK, + [46024] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1776), 6, + ACTIONS(1657), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_in, anon_sym_of, anon_sym_EQ, - [47314] = 2, + [46037] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1754), 6, + ACTIONS(1653), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_in, anon_sym_of, anon_sym_EQ, - [47327] = 5, - ACTIONS(2674), 1, + [46050] = 6, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(2578), 1, + sym_identifier, + STATE(1464), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1297), 2, + sym__module_export_name, + sym_string, + [46071] = 5, + ACTIONS(2636), 1, + anon_sym_default, + ACTIONS(2638), 1, + anon_sym_RBRACE, + ACTIONS(2640), 1, + anon_sym_case, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1129), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [46090] = 5, + ACTIONS(1892), 1, + anon_sym_LBRACE, + ACTIONS(2642), 1, + sym_identifier, + ACTIONS(2644), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1253), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [46109] = 5, + ACTIONS(2649), 1, anon_sym_BQUOTE, - ACTIONS(2676), 1, + ACTIONS(2651), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2672), 2, + ACTIONS(2646), 2, sym__template_chars, sym_escape_sequence, - STATE(1149), 2, + STATE(1113), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [47346] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2666), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [47359] = 6, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2612), 1, + [46128] = 5, + ACTIONS(930), 1, + anon_sym_LBRACE, + ACTIONS(932), 1, + anon_sym_LBRACK, + ACTIONS(2654), 1, sym_identifier, - STATE(1422), 1, - sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1662), 2, - sym__module_export_name, - sym_string, - [47380] = 2, + STATE(1338), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [46147] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1594), 6, + ACTIONS(1406), 6, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_from, anon_sym_LPAREN, anon_sym_COLON, - [47393] = 5, - ACTIONS(2676), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2680), 1, + [46160] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1655), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [46173] = 5, + ACTIONS(2658), 1, anon_sym_BQUOTE, + ACTIONS(2660), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2678), 2, + ACTIONS(2656), 2, sym__template_chars, sym_escape_sequence, - STATE(1146), 2, + STATE(1122), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [47412] = 6, - ACTIONS(83), 1, + [46192] = 5, + ACTIONS(2660), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2664), 1, anon_sym_BQUOTE, - ACTIONS(1620), 1, - anon_sym_LPAREN, - ACTIONS(1624), 1, - anon_sym_DOT, - ACTIONS(2682), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(741), 2, - sym_template_string, - sym_arguments, - [47433] = 6, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2618), 1, + ACTIONS(2662), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1113), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [46211] = 5, + ACTIONS(1892), 1, + anon_sym_LBRACE, + ACTIONS(2644), 1, + anon_sym_LBRACK, + ACTIONS(2666), 1, sym_identifier, - STATE(1458), 1, - sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1349), 2, - sym__module_export_name, - sym_string, - [47454] = 6, - ACTIONS(2653), 1, + STATE(1723), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [46230] = 6, + ACTIONS(2606), 1, anon_sym_EQ, - ACTIONS(2684), 1, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1552), 1, + STATE(1384), 1, sym__initializer, - STATE(1556), 1, + STATE(1540), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2686), 2, + ACTIONS(2670), 2, sym__automatic_semicolon, anon_sym_SEMI, - [47475] = 5, - ACTIONS(2688), 1, - anon_sym_default, - ACTIONS(2691), 1, - anon_sym_RBRACE, - ACTIONS(2693), 1, - anon_sym_case, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1133), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [47494] = 2, + [46251] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2624), 6, + ACTIONS(2594), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_in, anon_sym_of, anon_sym_EQ, - [47507] = 2, + [46264] = 5, + ACTIONS(2660), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2672), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2662), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1113), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [46283] = 3, + ACTIONS(2674), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2676), 5, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46298] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1414), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COLON, + [46311] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2632), 6, + ACTIONS(2590), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_in, anon_sym_of, anon_sym_EQ, - [47520] = 2, + [46324] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2626), 6, + ACTIONS(2634), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_in, anon_sym_of, anon_sym_EQ, - [47533] = 6, - ACTIONS(2653), 1, - anon_sym_EQ, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1403), 1, - sym__initializer, - STATE(1491), 1, - sym_formal_parameters, + [46337] = 6, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(2584), 1, + sym_identifier, + STATE(1437), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2696), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47554] = 6, - ACTIONS(2653), 1, - anon_sym_EQ, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1404), 1, - sym__initializer, - STATE(1490), 1, - sym_formal_parameters, + STATE(1714), 2, + sym__module_export_name, + sym_string, + [46358] = 5, + ACTIONS(2636), 1, + anon_sym_default, + ACTIONS(2640), 1, + anon_sym_case, + ACTIONS(2678), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2698), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47575] = 3, - ACTIONS(2700), 1, - sym_identifier, + STATE(1111), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [46377] = 5, + ACTIONS(2680), 1, + anon_sym_default, + ACTIONS(2683), 1, + anon_sym_RBRACE, + ACTIONS(2685), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2702), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - anon_sym_SLASH_GT, - [47590] = 3, - ACTIONS(2704), 1, + STATE(1129), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [46396] = 4, + ACTIONS(2688), 1, sym_identifier, + ACTIONS(2692), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2706), 5, + ACTIONS(2690), 4, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [47605] = 5, - ACTIONS(1938), 1, - anon_sym_LBRACE, - ACTIONS(2708), 1, - sym_identifier, - ACTIONS(2710), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1748), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [47624] = 2, + [46413] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1610), 6, - anon_sym_as, + ACTIONS(2598), 6, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [46426] = 6, + ACTIONS(2606), 1, + anon_sym_EQ, + ACTIONS(2668), 1, anon_sym_LPAREN, - anon_sym_COLON, - [47637] = 5, - ACTIONS(942), 1, - anon_sym_LBRACE, - ACTIONS(944), 1, - anon_sym_LBRACK, - ACTIONS(2712), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1388), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [47656] = 5, - ACTIONS(1938), 1, - anon_sym_LBRACE, - ACTIONS(2710), 1, - anon_sym_LBRACK, - ACTIONS(2714), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1222), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [47675] = 5, - ACTIONS(2716), 1, - anon_sym_default, - ACTIONS(2718), 1, - anon_sym_RBRACE, - ACTIONS(2720), 1, - anon_sym_case, + STATE(1561), 1, + sym__initializer, + STATE(1605), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1147), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [47694] = 5, - ACTIONS(2676), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2722), 1, - anon_sym_BQUOTE, + ACTIONS(2694), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [46447] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2672), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1149), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [47713] = 5, - ACTIONS(2716), 1, - anon_sym_default, - ACTIONS(2720), 1, - anon_sym_case, - ACTIONS(2724), 1, - anon_sym_RBRACE, + ACTIONS(2628), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [46460] = 3, + ACTIONS(2696), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1133), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [47732] = 6, - ACTIONS(2653), 1, + ACTIONS(2698), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + [46475] = 6, + ACTIONS(2606), 1, anon_sym_EQ, - ACTIONS(2684), 1, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1419), 1, - sym_formal_parameters, - STATE(1467), 1, + STATE(1380), 1, sym__initializer, + STATE(1591), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2726), 2, + ACTIONS(2700), 2, sym__automatic_semicolon, anon_sym_SEMI, - [47753] = 5, - ACTIONS(2731), 1, - anon_sym_BQUOTE, - ACTIONS(2733), 1, - anon_sym_DOLLAR_LBRACE, + [46496] = 6, + ACTIONS(2606), 1, + anon_sym_EQ, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1491), 1, + sym__initializer, + STATE(1592), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2728), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1149), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [47772] = 5, - ACTIONS(2676), 1, + ACTIONS(2702), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [46517] = 5, + ACTIONS(2660), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2738), 1, + ACTIONS(2706), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2736), 2, + ACTIONS(2704), 2, sym__template_chars, sym_escape_sequence, - STATE(1125), 2, + STATE(1118), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [47791] = 2, + [46536] = 6, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2708), 1, + anon_sym_export, + ACTIONS(2710), 1, + anon_sym_class, + STATE(954), 1, + aux_sym_export_statement_repeat1, + STATE(1004), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2645), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [47804] = 4, - ACTIONS(2740), 1, + [46556] = 6, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2744), 1, - anon_sym_EQ, + ACTIONS(2714), 1, + anon_sym_LBRACE, + ACTIONS(2716), 1, + anon_sym_extends, + STATE(652), 1, + sym_class_body, + STATE(1577), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2742), 4, - anon_sym_LBRACE, + [46576] = 6, + ACTIONS(2718), 1, + sym_identifier, + ACTIONS(2720), 1, anon_sym_GT, + ACTIONS(2722), 1, sym_jsx_identifier, - anon_sym_SLASH_GT, - [47821] = 4, - ACTIONS(2148), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2146), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2169), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [47837] = 3, - ACTIONS(2746), 1, - anon_sym_EQ, + STATE(1407), 1, + sym_nested_identifier, + STATE(1651), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47851] = 3, - ACTIONS(1511), 1, + [46596] = 3, + ACTIONS(2726), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1513), 4, + ACTIONS(2724), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [47865] = 3, - ACTIONS(1496), 1, + [46610] = 3, + ACTIONS(1469), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1471), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46624] = 3, + ACTIONS(2730), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1498), 4, + ACTIONS(2728), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [47879] = 3, - ACTIONS(2749), 1, + [46638] = 6, + ACTIONS(2732), 1, sym_identifier, + ACTIONS(2734), 1, + anon_sym_GT, + ACTIONS(2736), 1, + sym_jsx_identifier, + STATE(1054), 1, + sym_nested_identifier, + STATE(1060), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2751), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47893] = 3, - ACTIONS(1427), 1, + [46658] = 3, + ACTIONS(1469), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1429), 4, + ACTIONS(1471), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [47907] = 3, - ACTIONS(2753), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1316), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47921] = 3, - ACTIONS(2757), 1, + [46672] = 3, + ACTIONS(1469), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2755), 4, + ACTIONS(1471), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [47935] = 3, - ACTIONS(1488), 1, + [46686] = 3, + ACTIONS(1549), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1490), 4, + ACTIONS(1551), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [47949] = 5, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2759), 1, + [46700] = 4, + ACTIONS(2606), 1, + anon_sym_EQ, + STATE(1345), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2600), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [46716] = 6, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(2738), 1, sym_identifier, + ACTIONS(2740), 1, + anon_sym_LBRACK, + ACTIONS(2742), 1, + sym_private_property_identifier, + STATE(642), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1692), 2, - sym__module_export_name, - sym_string, - [47967] = 6, - ACTIONS(2761), 1, + [46736] = 6, + ACTIONS(2734), 1, + anon_sym_GT, + ACTIONS(2744), 1, sym_identifier, - ACTIONS(2763), 1, - anon_sym_LBRACE, - ACTIONS(2765), 1, - anon_sym_extends, - STATE(707), 1, - sym_class_body, - STATE(1522), 1, - sym_class_heritage, + ACTIONS(2746), 1, + sym_jsx_identifier, + STATE(1051), 1, + sym_nested_identifier, + STATE(1067), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47987] = 6, - ACTIONS(2763), 1, + [46756] = 6, + ACTIONS(2714), 1, anon_sym_LBRACE, - ACTIONS(2765), 1, + ACTIONS(2716), 1, anon_sym_extends, - ACTIONS(2767), 1, + ACTIONS(2748), 1, sym_identifier, - STATE(707), 1, + STATE(652), 1, sym_class_body, - STATE(1522), 1, + STATE(1577), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48007] = 5, - ACTIONS(878), 1, - anon_sym_DQUOTE, - ACTIONS(880), 1, - anon_sym_SQUOTE, - ACTIONS(2769), 1, + [46776] = 3, + ACTIONS(1549), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1457), 2, - sym__module_export_name, - sym_string, - [48025] = 3, - ACTIONS(2773), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2771), 4, - sym_jsx_text, + ACTIONS(1551), 4, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [48039] = 3, - ACTIONS(2775), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46790] = 3, + ACTIONS(2750), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 4, + ACTIONS(1311), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - [48053] = 6, - ACTIONS(2778), 1, + [46804] = 6, + ACTIONS(2716), 1, + anon_sym_extends, + ACTIONS(2753), 1, + sym_identifier, + ACTIONS(2755), 1, + anon_sym_LBRACE, + STATE(545), 1, + sym_class_body, + STATE(1478), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46824] = 3, + ACTIONS(1469), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1471), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46838] = 5, + ACTIONS(1996), 1, + anon_sym_COMMA, + ACTIONS(2160), 1, + anon_sym_RBRACE, + STATE(1304), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2118), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [46856] = 6, + ACTIONS(2757), 1, sym_identifier, - ACTIONS(2780), 1, + ACTIONS(2759), 1, anon_sym_GT, - ACTIONS(2782), 1, + ACTIONS(2761), 1, sym_jsx_identifier, - STATE(1525), 1, + STATE(1554), 1, sym_nested_identifier, - STATE(1691), 1, + STATE(1668), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48073] = 6, - ACTIONS(1620), 1, + [46876] = 6, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(2784), 1, + ACTIONS(2763), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2765), 1, anon_sym_LBRACK, - ACTIONS(2788), 1, + ACTIONS(2767), 1, sym_private_property_identifier, - STATE(717), 1, + STATE(538), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48093] = 6, - ACTIONS(2763), 1, + [46896] = 6, + ACTIONS(2714), 1, anon_sym_LBRACE, - ACTIONS(2765), 1, + ACTIONS(2716), 1, anon_sym_extends, - ACTIONS(2790), 1, + ACTIONS(2769), 1, sym_identifier, - STATE(720), 1, + STATE(652), 1, sym_class_body, - STATE(1562), 1, + STATE(1577), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48113] = 6, - ACTIONS(2792), 1, + [46916] = 6, + ACTIONS(2771), 1, sym_identifier, - ACTIONS(2794), 1, + ACTIONS(2773), 1, anon_sym_GT, - ACTIONS(2796), 1, + ACTIONS(2775), 1, sym_jsx_identifier, - STATE(1064), 1, + STATE(1586), 1, sym_nested_identifier, - STATE(1073), 1, + STATE(1681), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48133] = 6, - ACTIONS(2120), 1, + [46936] = 3, + ACTIONS(1537), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1539), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [46950] = 6, + ACTIONS(2036), 1, anon_sym_COMMA, - ACTIONS(2146), 1, + ACTIONS(2118), 1, anon_sym_COLON, - ACTIONS(2148), 1, + ACTIONS(2120), 1, anon_sym_EQ, - ACTIONS(2798), 1, + ACTIONS(2777), 1, anon_sym_RBRACE, - STATE(1376), 1, + STATE(1324), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48153] = 3, - ACTIONS(2802), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2800), 4, - sym_jsx_text, + [46970] = 6, + ACTIONS(2714), 1, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [48167] = 6, - ACTIONS(2765), 1, + ACTIONS(2716), 1, anon_sym_extends, - ACTIONS(2804), 1, + ACTIONS(2779), 1, sym_identifier, - ACTIONS(2806), 1, - anon_sym_LBRACE, - STATE(516), 1, + STATE(651), 1, sym_class_body, - STATE(1479), 1, + STATE(1593), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48187] = 6, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2808), 1, - anon_sym_export, - ACTIONS(2810), 1, - anon_sym_class, - STATE(977), 1, - aux_sym_export_statement_repeat1, - STATE(1017), 1, - sym_decorator, + [46990] = 4, + ACTIONS(2783), 1, + anon_sym_in, + ACTIONS(2785), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48207] = 3, - ACTIONS(1488), 1, + ACTIONS(2781), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [47006] = 3, + ACTIONS(2787), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1322), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47020] = 3, + ACTIONS(2789), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1490), 4, + ACTIONS(2791), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [48221] = 3, - ACTIONS(2812), 1, + [47034] = 3, + ACTIONS(2793), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2814), 4, + ACTIONS(2795), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [48235] = 3, - ACTIONS(1570), 1, - anon_sym_LT, + [47048] = 6, + ACTIONS(2036), 1, + anon_sym_COMMA, + ACTIONS(2118), 1, + anon_sym_COLON, + ACTIONS(2120), 1, + anon_sym_EQ, + ACTIONS(2797), 1, + anon_sym_RBRACE, + STATE(1353), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1572), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [48249] = 3, - ACTIONS(2818), 1, - anon_sym_LT, + [47068] = 6, + ACTIONS(2734), 1, + anon_sym_GT, + ACTIONS(2799), 1, + sym_identifier, + ACTIONS(2801), 1, + sym_jsx_identifier, + STATE(1049), 1, + sym_nested_identifier, + STATE(1078), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2816), 4, - sym_jsx_text, + [47088] = 6, + ACTIONS(2716), 1, + anon_sym_extends, + ACTIONS(2755), 1, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [48263] = 3, - ACTIONS(1570), 1, - anon_sym_LT, + ACTIONS(2803), 1, + sym_identifier, + STATE(542), 1, + sym_class_body, + STATE(1589), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1572), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [48277] = 3, - ACTIONS(2818), 1, - anon_sym_LT, + [47108] = 6, + ACTIONS(2734), 1, + anon_sym_GT, + ACTIONS(2805), 1, + sym_identifier, + ACTIONS(2807), 1, + sym_jsx_identifier, + STATE(1053), 1, + sym_nested_identifier, + STATE(1068), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2816), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [48291] = 3, - ACTIONS(2818), 1, - anon_sym_LT, + [47128] = 3, + ACTIONS(2730), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2816), 4, - sym_jsx_text, + ACTIONS(2728), 4, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [48305] = 3, - ACTIONS(2818), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [47142] = 6, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2809), 1, + anon_sym_export, + ACTIONS(2811), 1, + anon_sym_class, + STATE(954), 1, + aux_sym_export_statement_repeat1, + STATE(1004), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47162] = 3, + ACTIONS(1469), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2816), 4, + ACTIONS(1471), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [48319] = 3, - ACTIONS(1600), 1, + [47176] = 6, + ACTIONS(2714), 1, + anon_sym_LBRACE, + ACTIONS(2716), 1, + anon_sym_extends, + ACTIONS(2813), 1, + sym_identifier, + STATE(651), 1, + sym_class_body, + STATE(1593), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47196] = 3, + ACTIONS(1493), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1602), 4, + ACTIONS(1495), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [48333] = 2, + [47210] = 3, + ACTIONS(2815), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2817), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [47224] = 4, + ACTIONS(2120), 1, anon_sym_EQ, - anon_sym_RBRACK, - [48345] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1594), 5, - sym__automatic_semicolon, - anon_sym_with, + ACTIONS(2118), 2, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [48357] = 6, - ACTIONS(2765), 1, - anon_sym_extends, - ACTIONS(2806), 1, - anon_sym_LBRACE, - ACTIONS(2820), 1, - sym_identifier, - STATE(565), 1, - sym_class_body, - STATE(1523), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [48377] = 4, - ACTIONS(2653), 1, + anon_sym_COLON, + ACTIONS(2157), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [47240] = 3, + ACTIONS(2819), 1, anon_sym_EQ, - STATE(1314), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2647), 3, - sym__automatic_semicolon, + ACTIONS(1311), 4, anon_sym_COMMA, - anon_sym_SEMI, - [48393] = 3, - ACTIONS(1570), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47254] = 3, + ACTIONS(2824), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1572), 4, + ACTIONS(2822), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [48407] = 6, - ACTIONS(2763), 1, - anon_sym_LBRACE, - ACTIONS(2765), 1, - anon_sym_extends, - ACTIONS(2822), 1, - sym_identifier, - STATE(720), 1, - sym_class_body, - STATE(1562), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [48427] = 6, - ACTIONS(2824), 1, - sym_identifier, + [47268] = 6, ACTIONS(2826), 1, - anon_sym_GT, + sym_identifier, ACTIONS(2828), 1, + anon_sym_GT, + ACTIONS(2830), 1, sym_jsx_identifier, - STATE(1470), 1, + STATE(1385), 1, sym_nested_identifier, - STATE(1702), 1, + STATE(1666), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48447] = 3, - ACTIONS(2812), 1, + [47288] = 3, + ACTIONS(1537), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1539), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [47302] = 3, + ACTIONS(2834), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2814), 4, + ACTIONS(2832), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [48461] = 3, - ACTIONS(1570), 1, - sym_identifier, + [47316] = 3, + ACTIONS(2838), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1572), 4, + ACTIONS(2836), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [48475] = 3, - ACTIONS(1570), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [47330] = 5, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(2840), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1572), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [48489] = 6, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2830), 1, - anon_sym_export, - ACTIONS(2832), 1, - anon_sym_class, - STATE(977), 1, - aux_sym_export_statement_repeat1, - STATE(1017), 1, - sym_decorator, + STATE(1474), 2, + sym__module_export_name, + sym_string, + [47348] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48509] = 3, - ACTIONS(1570), 1, + ACTIONS(1414), 5, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [47360] = 3, + ACTIONS(2842), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1572), 4, + ACTIONS(2844), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [48523] = 3, - ACTIONS(2773), 1, - sym_identifier, + [47374] = 3, + ACTIONS(1432), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2771), 4, + ACTIONS(1434), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [48537] = 6, - ACTIONS(2834), 1, - sym_identifier, - ACTIONS(2836), 1, - anon_sym_GT, - ACTIONS(2838), 1, - sym_jsx_identifier, - STATE(1444), 1, - sym_nested_identifier, - STATE(1714), 1, - sym_jsx_namespace_name, + sym_html_character_reference, + anon_sym_LT_SLASH, + [47388] = 3, + ACTIONS(1493), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48557] = 5, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2172), 1, - anon_sym_RBRACE, - STATE(1390), 1, - aux_sym_object_repeat1, + ACTIONS(1495), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [47402] = 3, + ACTIONS(1469), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2146), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [48575] = 6, - ACTIONS(2763), 1, + ACTIONS(1471), 4, + sym_jsx_text, anon_sym_LBRACE, - ACTIONS(2765), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [47416] = 6, + ACTIONS(2714), 1, + anon_sym_LBRACE, + ACTIONS(2716), 1, anon_sym_extends, - ACTIONS(2840), 1, + ACTIONS(2846), 1, sym_identifier, - STATE(707), 1, + STATE(651), 1, sym_class_body, - STATE(1522), 1, + STATE(1593), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48595] = 3, - ACTIONS(1570), 1, - sym_identifier, + [47436] = 3, + ACTIONS(2834), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1572), 4, + ACTIONS(2832), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [48609] = 4, - ACTIONS(2844), 1, - anon_sym_in, - ACTIONS(2846), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2842), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [48625] = 3, + sym_html_character_reference, + anon_sym_LT_SLASH, + [47450] = 5, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, ACTIONS(2848), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2850), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [48639] = 3, - ACTIONS(2852), 1, - sym_identifier, + STATE(1704), 2, + sym__module_export_name, + sym_string, + [47468] = 3, + ACTIONS(2834), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2854), 4, + ACTIONS(2832), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [48653] = 3, - ACTIONS(1600), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [47482] = 3, + ACTIONS(2834), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1602), 4, + ACTIONS(2832), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [48667] = 3, - ACTIONS(1511), 1, + [47496] = 3, + ACTIONS(1428), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1513), 4, + ACTIONS(1430), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [48681] = 3, - ACTIONS(1496), 1, + [47510] = 3, + ACTIONS(1432), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1498), 4, + ACTIONS(1434), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [48695] = 3, - ACTIONS(2856), 1, + [47524] = 3, + ACTIONS(1469), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2858), 4, + ACTIONS(1471), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [48709] = 3, - ACTIONS(2860), 1, + [47538] = 3, + ACTIONS(2726), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2862), 4, + ACTIONS(2724), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [48723] = 3, - ACTIONS(1570), 1, + [47552] = 3, + ACTIONS(1428), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1572), 4, + ACTIONS(1430), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [48737] = 6, - ACTIONS(2120), 1, - anon_sym_COMMA, - ACTIONS(2146), 1, - anon_sym_COLON, - ACTIONS(2148), 1, - anon_sym_EQ, - ACTIONS(2864), 1, - anon_sym_RBRACE, - STATE(1302), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [48757] = 6, - ACTIONS(2763), 1, - anon_sym_LBRACE, - ACTIONS(2765), 1, - anon_sym_extends, - ACTIONS(2866), 1, - sym_identifier, - STATE(720), 1, - sym_class_body, - STATE(1562), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [48777] = 6, - ACTIONS(2794), 1, - anon_sym_GT, - ACTIONS(2868), 1, - sym_identifier, - ACTIONS(2870), 1, - sym_jsx_identifier, - STATE(1062), 1, - sym_nested_identifier, - STATE(1083), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [48797] = 6, - ACTIONS(1349), 1, - anon_sym_LPAREN, - ACTIONS(2872), 1, - sym_identifier, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 1, - sym_private_property_identifier, - STATE(545), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [48817] = 6, - ACTIONS(2794), 1, - anon_sym_GT, - ACTIONS(2878), 1, + [47566] = 3, + ACTIONS(1469), 1, sym_identifier, - ACTIONS(2880), 1, - sym_jsx_identifier, - STATE(1070), 1, - sym_nested_identifier, - STATE(1091), 1, - sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48837] = 6, - ACTIONS(2882), 1, - sym_identifier, - ACTIONS(2884), 1, + ACTIONS(1471), 4, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(2886), 1, sym_jsx_identifier, - STATE(1462), 1, - sym_nested_identifier, - STATE(1698), 1, - sym_jsx_namespace_name, + anon_sym_SLASH_GT, + [47580] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48857] = 3, - ACTIONS(1427), 1, + ACTIONS(1406), 5, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [47592] = 3, + ACTIONS(2850), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1429), 4, + ACTIONS(2852), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [48871] = 2, + [47606] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1311), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_RBRACK, + [47618] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1610), 5, + ACTIONS(1730), 4, sym__automatic_semicolon, - anon_sym_with, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - [48883] = 6, - ACTIONS(2794), 1, - anon_sym_GT, - ACTIONS(2888), 1, - sym_identifier, - ACTIONS(2890), 1, - sym_jsx_identifier, - STATE(1068), 1, - sym_nested_identifier, - STATE(1077), 1, - sym_jsx_namespace_name, + [47629] = 4, + ACTIONS(2854), 1, + anon_sym_COMMA, + STATE(1275), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2856), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47644] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48903] = 6, + ACTIONS(1657), 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [47655] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2892), 1, - sym_html_character_reference, - ACTIONS(2895), 1, + ACTIONS(2858), 1, anon_sym_DQUOTE, - ACTIONS(2897), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(1220), 1, - aux_sym__jsx_string_repeat1, - [48922] = 5, - ACTIONS(2684), 1, + STATE(1277), 1, + aux_sym_string_repeat1, + ACTIONS(2860), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [47672] = 5, + ACTIONS(2668), 1, anon_sym_LPAREN, - ACTIONS(2900), 1, + ACTIONS(2862), 1, sym_identifier, - ACTIONS(2902), 1, + ACTIONS(2864), 1, anon_sym_STAR, - STATE(1546), 1, + STATE(1585), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48939] = 4, - ACTIONS(2904), 1, - anon_sym_EQ, - STATE(1540), 1, - sym__initializer, + [47689] = 5, + ACTIONS(2755), 1, + anon_sym_LBRACE, + ACTIONS(2866), 1, + anon_sym_extends, + STATE(529), 1, + sym_class_body, + STATE(1475), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2649), 2, - anon_sym_in, - anon_sym_of, - [48954] = 5, - ACTIONS(2806), 1, + [47706] = 5, + ACTIONS(2714), 1, anon_sym_LBRACE, - ACTIONS(2906), 1, + ACTIONS(2866), 1, anon_sym_extends, - STATE(591), 1, + STATE(75), 1, sym_class_body, - STATE(1406), 1, + STATE(1578), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48971] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [47723] = 4, + ACTIONS(2854), 1, + anon_sym_COMMA, + STATE(1238), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2908), 1, - anon_sym_SQUOTE, - STATE(1262), 1, - aux_sym_string_repeat2, - ACTIONS(2910), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [48988] = 5, + sym_comment, + ACTIONS(2868), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47738] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2908), 1, + ACTIONS(2870), 1, + sym_html_character_reference, + ACTIONS(2872), 1, anon_sym_DQUOTE, - STATE(1265), 1, - aux_sym_string_repeat1, - ACTIONS(2912), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [49005] = 5, + ACTIONS(2874), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1281), 1, + aux_sym__jsx_string_repeat1, + [47757] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2914), 1, + ACTIONS(2876), 1, anon_sym_DQUOTE, - STATE(1284), 1, + STATE(1278), 1, aux_sym_string_repeat1, - ACTIONS(2916), 2, + ACTIONS(2878), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [49022] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [47774] = 5, + ACTIONS(1597), 1, + anon_sym_LPAREN, + ACTIONS(1601), 1, + anon_sym_DOT, + ACTIONS(2880), 1, + sym_optional_chain, + STATE(654), 1, + sym_arguments, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2914), 1, - anon_sym_SQUOTE, - STATE(1285), 1, - aux_sym_string_repeat2, - ACTIONS(2918), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [49039] = 5, - ACTIONS(2684), 1, + sym_comment, + [47791] = 5, + ACTIONS(2668), 1, anon_sym_LPAREN, - ACTIONS(2920), 1, + ACTIONS(2882), 1, sym_identifier, - ACTIONS(2922), 1, + ACTIONS(2884), 1, anon_sym_STAR, - STATE(1595), 1, + STATE(1396), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49056] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [47808] = 5, + ACTIONS(2714), 1, + anon_sym_LBRACE, + ACTIONS(2866), 1, + anon_sym_extends, + STATE(699), 1, + sym_class_body, + STATE(1594), 1, + sym_class_heritage, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2924), 1, - anon_sym_SQUOTE, - STATE(1231), 1, - aux_sym_string_repeat2, - ACTIONS(2926), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [49073] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [47825] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2924), 1, - anon_sym_DQUOTE, - STATE(1234), 1, - aux_sym_string_repeat1, - ACTIONS(2928), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [49090] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + ACTIONS(1653), 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [47836] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2886), 1, + anon_sym_class, + STATE(954), 1, + aux_sym_export_statement_repeat1, + STATE(1004), 1, + sym_decorator, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2930), 1, - anon_sym_SQUOTE, - STATE(1262), 1, - aux_sym_string_repeat2, - ACTIONS(2910), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [49107] = 6, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [47853] = 5, + ACTIONS(2714), 1, + anon_sym_LBRACE, + ACTIONS(2866), 1, + anon_sym_extends, + STATE(70), 1, + sym_class_body, + STATE(1460), 1, + sym_class_heritage, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2932), 1, - sym_html_character_reference, - ACTIONS(2934), 1, - anon_sym_DQUOTE, - ACTIONS(2936), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(1258), 1, - aux_sym__jsx_string_repeat1, - [49126] = 6, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [47870] = 4, + ACTIONS(2854), 1, + anon_sym_COMMA, + STATE(1206), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2934), 1, - anon_sym_SQUOTE, - ACTIONS(2938), 1, - sym_html_character_reference, - ACTIONS(2940), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(1261), 1, - aux_sym__jsx_string_repeat2, - [49145] = 5, + sym_comment, + ACTIONS(2888), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47885] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2930), 1, + ACTIONS(2890), 1, anon_sym_DQUOTE, - STATE(1265), 1, + STATE(1208), 1, aux_sym_string_repeat1, - ACTIONS(2912), 2, + ACTIONS(2892), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [49162] = 5, + [47902] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2942), 1, + ACTIONS(2890), 1, anon_sym_SQUOTE, - STATE(1224), 1, + STATE(1225), 1, aux_sym_string_repeat2, - ACTIONS(2944), 2, + ACTIONS(2894), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [49179] = 4, - ACTIONS(2946), 1, - anon_sym_COMMA, - STATE(1245), 1, - aux_sym_variable_declaration_repeat1, + [47919] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2948), 2, + ACTIONS(2118), 4, sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - [49194] = 4, - ACTIONS(2946), 1, + anon_sym_EQ, + [47930] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2858), 1, + anon_sym_SQUOTE, + STATE(1279), 1, + aux_sym_string_repeat2, + ACTIONS(2896), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [47947] = 4, + ACTIONS(1721), 1, anon_sym_COMMA, - STATE(1245), 1, - aux_sym_variable_declaration_repeat1, + STATE(1273), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2950), 2, + ACTIONS(2617), 2, sym__automatic_semicolon, anon_sym_SEMI, - [49209] = 4, - ACTIONS(2952), 1, - anon_sym_from, - STATE(1638), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, + [47962] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49224] = 5, - ACTIONS(2763), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2898), 1, + anon_sym_DQUOTE, + STATE(1277), 1, + aux_sym_string_repeat1, + ACTIONS(2860), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [47979] = 5, + ACTIONS(2714), 1, anon_sym_LBRACE, - ACTIONS(2906), 1, + ACTIONS(2866), 1, anon_sym_extends, - STATE(706), 1, + STATE(662), 1, sym_class_body, - STATE(1426), 1, + STATE(1601), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49241] = 5, + [47996] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2956), 1, + ACTIONS(2898), 1, anon_sym_SQUOTE, - STATE(1262), 1, + STATE(1279), 1, aux_sym_string_repeat2, - ACTIONS(2910), 2, + ACTIONS(2896), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [49258] = 5, - ACTIONS(3), 1, + [48013] = 5, + ACTIONS(2668), 1, + anon_sym_LPAREN, + ACTIONS(2900), 1, + sym_identifier, + ACTIONS(2902), 1, + anon_sym_STAR, + STATE(1564), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [48030] = 5, + ACTIONS(2714), 1, + anon_sym_LBRACE, + ACTIONS(2866), 1, + anon_sym_extends, + STATE(659), 1, + sym_class_body, + STATE(1612), 1, + sym_class_heritage, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2956), 1, - anon_sym_DQUOTE, - STATE(1265), 1, - aux_sym_string_repeat1, - ACTIONS(2912), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [49275] = 5, + sym_comment, + [48047] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2942), 1, + ACTIONS(2904), 1, anon_sym_DQUOTE, - STATE(1225), 1, + STATE(1277), 1, aux_sym_string_repeat1, - ACTIONS(2958), 2, + ACTIONS(2860), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [49292] = 5, - ACTIONS(2763), 1, - anon_sym_LBRACE, + [48064] = 4, ACTIONS(2906), 1, + anon_sym_COMMA, + STATE(1233), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1840), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [48079] = 5, + ACTIONS(2866), 1, anon_sym_extends, - STATE(692), 1, + ACTIONS(2909), 1, + anon_sym_LBRACE, + STATE(333), 1, sym_class_body, - STATE(1492), 1, + STATE(1415), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48096] = 3, + ACTIONS(2911), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1322), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [48109] = 5, + ACTIONS(2755), 1, + anon_sym_LBRACE, + ACTIONS(2866), 1, + anon_sym_extends, + STATE(562), 1, + sym_class_body, + STATE(1432), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49309] = 2, + [48126] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2960), 4, + ACTIONS(2913), 4, sym__template_chars, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR_LBRACE, - [49320] = 4, - ACTIONS(2962), 1, + [48137] = 4, + ACTIONS(2854), 1, anon_sym_COMMA, - STATE(1245), 1, + STATE(1275), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2965), 2, + ACTIONS(2915), 2, sym__automatic_semicolon, anon_sym_SEMI, - [49335] = 4, - ACTIONS(2146), 1, - anon_sym_COLON, - ACTIONS(2148), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2967), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [49350] = 5, - ACTIONS(2684), 1, - anon_sym_LPAREN, - ACTIONS(2969), 1, - sym_identifier, - ACTIONS(2971), 1, - anon_sym_STAR, - STATE(1595), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, + [48152] = 6, + ACTIONS(3), 1, sym_comment, - [49367] = 5, - ACTIONS(684), 1, - anon_sym_COMMA, - ACTIONS(2973), 1, - anon_sym_EQ, - ACTIONS(2975), 1, - anon_sym_RBRACK, - STATE(1367), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(2917), 1, + sym_html_character_reference, + ACTIONS(2920), 1, + anon_sym_SQUOTE, + ACTIONS(2922), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1239), 1, + aux_sym__jsx_string_repeat2, + [48171] = 5, + ACTIONS(3), 1, sym_comment, - [49384] = 5, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2977), 1, - anon_sym_class, - STATE(977), 1, - aux_sym_export_statement_repeat1, - STATE(1017), 1, - sym_decorator, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(2904), 1, + anon_sym_SQUOTE, + STATE(1279), 1, + aux_sym_string_repeat2, + ACTIONS(2896), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [48188] = 5, + ACTIONS(3), 1, sym_comment, - [49401] = 3, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - ACTIONS(2146), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2242), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [49414] = 5, - ACTIONS(93), 1, + ACTIONS(2925), 1, + anon_sym_SQUOTE, + STATE(1279), 1, + aux_sym_string_repeat2, + ACTIONS(2896), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [48205] = 5, + ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2979), 1, + ACTIONS(2811), 1, anon_sym_class, - STATE(977), 1, + STATE(954), 1, aux_sym_export_statement_repeat1, - STATE(1017), 1, + STATE(1004), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49431] = 5, - ACTIONS(2906), 1, - anon_sym_extends, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(342), 1, - sym_class_body, - STATE(1452), 1, - sym_class_heritage, + [48222] = 5, + ACTIONS(2668), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, + sym_identifier, + ACTIONS(2929), 1, + anon_sym_STAR, + STATE(1396), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49448] = 5, - ACTIONS(2906), 1, - anon_sym_extends, - ACTIONS(2983), 1, - anon_sym_LBRACE, - STATE(65), 1, - sym_class_body, - STATE(1460), 1, - sym_class_heritage, + [48239] = 4, + ACTIONS(2854), 1, + anon_sym_COMMA, + STATE(1264), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49465] = 5, - ACTIONS(93), 1, + ACTIONS(2931), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [48254] = 5, + ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2810), 1, + ACTIONS(2933), 1, anon_sym_class, - STATE(977), 1, + STATE(954), 1, aux_sym_export_statement_repeat1, - STATE(1017), 1, + STATE(1004), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49482] = 4, - ACTIONS(2985), 1, - anon_sym_COMMA, - STATE(1255), 1, - aux_sym_sequence_expression_repeat1, + [48271] = 4, + ACTIONS(2935), 1, + anon_sym_from, + STATE(1403), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1590), 2, + ACTIONS(2937), 2, sym__automatic_semicolon, anon_sym_SEMI, - [49497] = 3, - ACTIONS(2500), 1, + [48286] = 5, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(2939), 1, + sym_optional_chain, + STATE(550), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2498), 3, - anon_sym_LPAREN, - sym_optional_chain, - anon_sym_BQUOTE, - [49510] = 5, - ACTIONS(2684), 1, + [48303] = 5, + ACTIONS(2668), 1, anon_sym_LPAREN, - ACTIONS(2988), 1, + ACTIONS(2941), 1, sym_identifier, - ACTIONS(2990), 1, + ACTIONS(2943), 1, anon_sym_STAR, - STATE(1546), 1, + STATE(1585), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49527] = 6, + [48320] = 5, + ACTIONS(2714), 1, + anon_sym_LBRACE, + ACTIONS(2866), 1, + anon_sym_extends, + STATE(736), 1, + sym_class_body, + STATE(1563), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48337] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2992), 1, - sym_html_character_reference, - ACTIONS(2994), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - ACTIONS(2996), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(1220), 1, - aux_sym__jsx_string_repeat1, - [49546] = 4, - ACTIONS(2946), 1, - anon_sym_COMMA, - STATE(1237), 1, - aux_sym_variable_declaration_repeat1, + STATE(1227), 1, + aux_sym_string_repeat1, + ACTIONS(2947), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [48354] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2998), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49561] = 4, - ACTIONS(2946), 1, - anon_sym_COMMA, - STATE(1236), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(1655), 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [48365] = 5, + ACTIONS(2668), 1, + anon_sym_LPAREN, + ACTIONS(2949), 1, + sym_identifier, + ACTIONS(2951), 1, + anon_sym_STAR, + STATE(1396), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3000), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49576] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [48382] = 4, + ACTIONS(2953), 1, + anon_sym_EQ, + STATE(1617), 1, + sym__initializer, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2994), 1, - anon_sym_SQUOTE, - ACTIONS(3002), 1, - sym_html_character_reference, - ACTIONS(3004), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(1271), 1, - aux_sym__jsx_string_repeat2, - [49595] = 5, + sym_comment, + ACTIONS(2602), 2, + anon_sym_in, + anon_sym_of, + [48397] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3006), 1, + ACTIONS(2876), 1, anon_sym_SQUOTE, - STATE(1262), 1, + STATE(1241), 1, aux_sym_string_repeat2, - ACTIONS(3008), 2, + ACTIONS(2955), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [49612] = 4, - ACTIONS(3011), 1, + [48414] = 4, + ACTIONS(2957), 1, anon_sym_with, - STATE(1611), 1, + STATE(1507), 1, sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3013), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49627] = 4, - ACTIONS(2946), 1, - anon_sym_COMMA, - STATE(1289), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3015), 2, + ACTIONS(2959), 2, sym__automatic_semicolon, anon_sym_SEMI, - [49642] = 5, + [48429] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3017), 1, + ACTIONS(2961), 1, anon_sym_DQUOTE, - STATE(1265), 1, + STATE(1232), 1, aux_sym_string_repeat1, - ACTIONS(3019), 2, + ACTIONS(2963), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [49659] = 4, - ACTIONS(2946), 1, - anon_sym_COMMA, - STATE(1288), 1, - aux_sym_variable_declaration_repeat1, + [48446] = 4, + ACTIONS(2460), 1, + anon_sym_STAR, + ACTIONS(2462), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3022), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49674] = 3, - ACTIONS(3024), 1, - anon_sym_DOT, - ACTIONS(5), 2, + STATE(1637), 2, + sym_namespace_import, + sym_named_imports, + [48461] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(2965), 1, + sym_html_character_reference, + ACTIONS(2967), 1, + anon_sym_DQUOTE, + ACTIONS(2969), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1213), 1, + aux_sym__jsx_string_repeat1, + [48480] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2498), 3, - anon_sym_LPAREN, - sym_optional_chain, - anon_sym_BQUOTE, - [49687] = 5, - ACTIONS(2763), 1, - anon_sym_LBRACE, - ACTIONS(2906), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2967), 1, + anon_sym_SQUOTE, + ACTIONS(2971), 1, + sym_html_character_reference, + ACTIONS(2973), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1267), 1, + aux_sym__jsx_string_repeat2, + [48499] = 5, + ACTIONS(2866), 1, anon_sym_extends, - STATE(784), 1, + ACTIONS(2909), 1, + anon_sym_LBRACE, + STATE(351), 1, sym_class_body, - STATE(1536), 1, + STATE(1529), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49704] = 5, - ACTIONS(2684), 1, - anon_sym_LPAREN, - ACTIONS(3026), 1, - sym_identifier, - ACTIONS(3028), 1, - anon_sym_STAR, - STATE(1414), 1, - sym_formal_parameters, + [48516] = 5, + ACTIONS(654), 1, + anon_sym_COMMA, + ACTIONS(2975), 1, + anon_sym_EQ, + ACTIONS(2977), 1, + anon_sym_RBRACK, + STATE(1361), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49721] = 4, - ACTIONS(3030), 1, + [48533] = 5, + ACTIONS(654), 1, anon_sym_COMMA, - STATE(1270), 1, - aux_sym_array_repeat1, + ACTIONS(2975), 1, + anon_sym_EQ, + ACTIONS(2979), 1, + anon_sym_RBRACK, + STATE(1364), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1812), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [49736] = 6, + [48550] = 4, + ACTIONS(2854), 1, + anon_sym_COMMA, + STATE(1282), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2981), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [48565] = 4, + ACTIONS(2854), 1, + anon_sym_COMMA, + STATE(1275), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2983), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [48580] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3033), 1, - sym_html_character_reference, - ACTIONS(3036), 1, + ACTIONS(2945), 1, + anon_sym_SQUOTE, + STATE(1229), 1, + aux_sym_string_repeat2, + ACTIONS(2985), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [48597] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2961), 1, + anon_sym_SQUOTE, + STATE(1240), 1, + aux_sym_string_repeat2, + ACTIONS(2987), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [48614] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2872), 1, anon_sym_SQUOTE, - ACTIONS(3038), 1, + ACTIONS(2989), 1, + sym_html_character_reference, + ACTIONS(2991), 1, sym_unescaped_single_jsx_string_fragment, - STATE(1271), 1, + STATE(1239), 1, aux_sym__jsx_string_repeat2, - [49755] = 5, - ACTIONS(2973), 1, + [48633] = 4, + ACTIONS(2118), 1, + anon_sym_COLON, + ACTIONS(2120), 1, anon_sym_EQ, - ACTIONS(3041), 1, - anon_sym_COMMA, - ACTIONS(3043), 1, - anon_sym_RPAREN, - STATE(1330), 1, - aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, - sym_comment, - [49772] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1754), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [49783] = 5, - ACTIONS(93), 1, + sym_comment, + ACTIONS(2993), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [48648] = 5, + ACTIONS(91), 1, anon_sym_AT, - ACTIONS(3045), 1, + ACTIONS(2995), 1, anon_sym_class, - STATE(977), 1, + STATE(954), 1, aux_sym_export_statement_repeat1, - STATE(1017), 1, + STATE(1004), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49800] = 2, + [48665] = 5, + ACTIONS(2957), 1, + anon_sym_with, + ACTIONS(2997), 1, + anon_sym_SEMI, + ACTIONS(2999), 1, + sym__automatic_semicolon, + STATE(1523), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1776), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [49811] = 5, - ACTIONS(2763), 1, - anon_sym_LBRACE, - ACTIONS(2906), 1, - anon_sym_extends, - STATE(795), 1, - sym_class_body, - STATE(1619), 1, - sym_class_heritage, + [48682] = 5, + ACTIONS(2668), 1, + anon_sym_LPAREN, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3003), 1, + anon_sym_STAR, + STATE(1585), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48699] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2710), 1, + anon_sym_class, + STATE(954), 1, + aux_sym_export_statement_repeat1, + STATE(1004), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49828] = 2, + [48716] = 4, + ACTIONS(3005), 1, + anon_sym_COMMA, + STATE(1273), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2146), 4, + ACTIONS(1613), 2, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_EQ, - [49839] = 5, - ACTIONS(684), 1, - anon_sym_COMMA, - ACTIONS(2973), 1, - anon_sym_EQ, - ACTIONS(3047), 1, - anon_sym_RBRACK, - STATE(1335), 1, - aux_sym_array_pattern_repeat1, + [48731] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49856] = 2, + ACTIONS(2118), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2170), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [48744] = 4, + ACTIONS(3008), 1, + anon_sym_COMMA, + STATE(1275), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1863), 4, + ACTIONS(3011), 2, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_EQ, - [49867] = 5, - ACTIONS(2684), 1, + [48759] = 5, + ACTIONS(2668), 1, anon_sym_LPAREN, - ACTIONS(3049), 1, + ACTIONS(3013), 1, sym_identifier, - ACTIONS(3051), 1, + ACTIONS(3015), 1, anon_sym_STAR, - STATE(1427), 1, + STATE(1492), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49884] = 5, - ACTIONS(2806), 1, - anon_sym_LBRACE, - ACTIONS(2906), 1, - anon_sym_extends, - STATE(589), 1, - sym_class_body, - STATE(1477), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [49901] = 5, + [48776] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3053), 1, + ACTIONS(3017), 1, anon_sym_DQUOTE, - STATE(1241), 1, + STATE(1277), 1, aux_sym_string_repeat1, - ACTIONS(3055), 2, + ACTIONS(3019), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [49918] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3053), 1, - anon_sym_SQUOTE, - STATE(1240), 1, - aux_sym_string_repeat2, - ACTIONS(3057), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [49935] = 5, + [48793] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3059), 1, + ACTIONS(2925), 1, anon_sym_DQUOTE, - STATE(1265), 1, + STATE(1277), 1, aux_sym_string_repeat1, - ACTIONS(2912), 2, + ACTIONS(2860), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [49952] = 5, + [48810] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3059), 1, + ACTIONS(3022), 1, anon_sym_SQUOTE, - STATE(1262), 1, + STATE(1279), 1, aux_sym_string_repeat2, - ACTIONS(2910), 2, + ACTIONS(3024), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [49969] = 5, - ACTIONS(2906), 1, - anon_sym_extends, - ACTIONS(2983), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym_class_body, - STATE(1550), 1, - sym_class_heritage, + [48827] = 5, + ACTIONS(2975), 1, + anon_sym_EQ, + ACTIONS(3027), 1, + anon_sym_COMMA, + ACTIONS(3029), 1, + anon_sym_RPAREN, + STATE(1303), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49986] = 5, - ACTIONS(2684), 1, - anon_sym_LPAREN, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_STAR, - STATE(1546), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, + [48844] = 6, + ACTIONS(3), 1, sym_comment, - [50003] = 4, - ACTIONS(2946), 1, - anon_sym_COMMA, - STATE(1245), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - ACTIONS(3065), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50018] = 4, - ACTIONS(2946), 1, + ACTIONS(3031), 1, + sym_html_character_reference, + ACTIONS(3034), 1, + anon_sym_DQUOTE, + ACTIONS(3036), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1281), 1, + aux_sym__jsx_string_repeat1, + [48863] = 4, + ACTIONS(2854), 1, anon_sym_COMMA, - STATE(1245), 1, + STATE(1275), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3067), 2, + ACTIONS(3039), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50033] = 4, - ACTIONS(1704), 1, + [48878] = 4, + ACTIONS(1996), 1, anon_sym_COMMA, - STATE(1255), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2668), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50048] = 5, - ACTIONS(3011), 1, - anon_sym_with, - ACTIONS(3069), 1, - anon_sym_SEMI, - ACTIONS(3071), 1, - sym__automatic_semicolon, - STATE(1486), 1, - sym_import_attribute, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50065] = 4, - ACTIONS(2494), 1, - anon_sym_STAR, - ACTIONS(2496), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1699), 2, - sym_namespace_import, - sym_named_imports, - [50080] = 5, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2832), 1, - anon_sym_class, - STATE(977), 1, - aux_sym_export_statement_repeat1, - STATE(1017), 1, - sym_decorator, + ACTIONS(3041), 1, + anon_sym_RBRACE, + STATE(1334), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50097] = 2, + [48892] = 4, + ACTIONS(2668), 1, + anon_sym_LPAREN, + ACTIONS(3043), 1, + anon_sym_COLON, + STATE(1556), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1768), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [50108] = 5, - ACTIONS(2684), 1, + [48906] = 4, + ACTIONS(2668), 1, anon_sym_LPAREN, - ACTIONS(3073), 1, + ACTIONS(3045), 1, sym_identifier, - ACTIONS(3075), 1, - anon_sym_STAR, - STATE(1595), 1, + STATE(1565), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50125] = 3, - ACTIONS(3077), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1316), 3, + [48920] = 4, + ACTIONS(1996), 1, anon_sym_COMMA, + ACTIONS(3047), 1, anon_sym_RBRACE, - anon_sym_RBRACK, - [50138] = 5, - ACTIONS(2906), 1, - anon_sym_extends, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(333), 1, - sym_class_body, - STATE(1517), 1, - sym_class_heritage, + STATE(1334), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50155] = 4, - ACTIONS(3079), 1, + [48934] = 4, + ACTIONS(2036), 1, anon_sym_COMMA, - ACTIONS(3082), 1, + ACTIONS(3049), 1, anon_sym_RBRACE, - STATE(1298), 1, + STATE(1379), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50169] = 4, - ACTIONS(718), 1, - anon_sym_COMMA, - ACTIONS(1806), 1, - anon_sym_RPAREN, - STATE(1324), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50183] = 4, - ACTIONS(2684), 1, - anon_sym_LPAREN, - ACTIONS(3084), 1, - sym_identifier, - STATE(1465), 1, - sym_formal_parameters, + [48948] = 4, + ACTIONS(2935), 1, + anon_sym_from, + ACTIONS(3051), 1, + anon_sym_as, + STATE(1527), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50197] = 4, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(3086), 1, + [48962] = 4, + ACTIONS(2624), 1, anon_sym_RBRACE, - STATE(1307), 1, - aux_sym_object_repeat1, + ACTIONS(3053), 1, + anon_sym_COMMA, + STATE(1326), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50211] = 4, - ACTIONS(2120), 1, + [48976] = 4, + ACTIONS(707), 1, anon_sym_COMMA, - ACTIONS(3088), 1, - anon_sym_RBRACE, - STATE(1298), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3055), 1, + anon_sym_RPAREN, + STATE(1233), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50225] = 4, - ACTIONS(2684), 1, - anon_sym_LPAREN, - ACTIONS(3090), 1, + [48990] = 4, + ACTIONS(2738), 1, sym_identifier, - STATE(1543), 1, - sym_formal_parameters, + ACTIONS(2740), 1, + anon_sym_LBRACK, + ACTIONS(2742), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50239] = 4, - ACTIONS(2120), 1, + [49004] = 4, + ACTIONS(3057), 1, anon_sym_COMMA, - ACTIONS(3092), 1, + ACTIONS(3059), 1, anon_sym_RBRACE, - STATE(1298), 1, - aux_sym_object_pattern_repeat1, + STATE(1316), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50253] = 4, - ACTIONS(2104), 1, + [49018] = 4, + ACTIONS(2036), 1, anon_sym_COMMA, - ACTIONS(3094), 1, + ACTIONS(3061), 1, anon_sym_RBRACE, - STATE(1307), 1, - aux_sym_object_repeat1, + STATE(1379), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50267] = 4, - ACTIONS(3096), 1, - anon_sym_LPAREN, - ACTIONS(3098), 1, - anon_sym_await, - STATE(57), 1, - sym__for_header, + [49032] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50281] = 4, - ACTIONS(3100), 1, - anon_sym_COMMA, - ACTIONS(3103), 1, - anon_sym_RBRACE, - STATE(1307), 1, - aux_sym_object_repeat1, + ACTIONS(3063), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [49042] = 4, + ACTIONS(3065), 1, + anon_sym_LBRACE, + ACTIONS(3067), 1, + anon_sym_LPAREN, + STATE(346), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50295] = 4, - ACTIONS(2684), 1, - anon_sym_LPAREN, - ACTIONS(3105), 1, - sym_identifier, - STATE(1532), 1, - sym_formal_parameters, + [49056] = 4, + ACTIONS(3069), 1, + anon_sym_COMMA, + ACTIONS(3072), 1, + anon_sym_RBRACE, + STATE(1296), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50309] = 3, - ACTIONS(3107), 1, + [49070] = 3, + ACTIONS(3074), 1, anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3109), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50321] = 4, - ACTIONS(3111), 1, + ACTIONS(3076), 2, anon_sym_COMMA, - ACTIONS(3113), 1, anon_sym_RBRACE, - STATE(1355), 1, - aux_sym_export_clause_repeat1, + [49082] = 4, + ACTIONS(3078), 1, + anon_sym_LPAREN, + ACTIONS(3080), 1, + anon_sym_await, + STATE(51), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50335] = 4, - ACTIONS(3115), 1, + [49096] = 4, + ACTIONS(1996), 1, anon_sym_COMMA, - ACTIONS(3117), 1, + ACTIONS(3082), 1, anon_sym_RBRACE, - STATE(1364), 1, - aux_sym_named_imports_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50349] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3119), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [50359] = 4, - ACTIONS(2066), 1, - anon_sym_DQUOTE, - ACTIONS(2068), 1, - anon_sym_SQUOTE, - STATE(1353), 1, - sym_string, + STATE(1334), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50373] = 2, + [49110] = 3, + ACTIONS(3084), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2842), 3, + ACTIONS(3086), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [50383] = 4, - ACTIONS(2120), 1, + [49122] = 4, + ACTIONS(1996), 1, anon_sym_COMMA, - ACTIONS(3121), 1, + ACTIONS(3041), 1, anon_sym_RBRACE, - STATE(1375), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50397] = 4, - ACTIONS(2784), 1, - sym_identifier, - ACTIONS(2786), 1, - anon_sym_LBRACK, - ACTIONS(2788), 1, - sym_private_property_identifier, + STATE(1305), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50411] = 3, - ACTIONS(3077), 1, - anon_sym_EQ, + [49136] = 4, + ACTIONS(2490), 1, + anon_sym_COLON, + ACTIONS(2496), 1, + anon_sym_DOT, + ACTIONS(3088), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1337), 2, - anon_sym_in, - anon_sym_of, - [50423] = 4, - ACTIONS(2684), 1, - anon_sym_LPAREN, - ACTIONS(3123), 1, - sym_identifier, - STATE(1543), 1, - sym_formal_parameters, + [49150] = 4, + ACTIONS(715), 1, + anon_sym_RPAREN, + ACTIONS(3090), 1, + anon_sym_COMMA, + STATE(1357), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50437] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3125), 1, - sym__glimmer_template_content, - ACTIONS(3127), 1, - sym_glimmer_closing_tag, - STATE(1357), 1, - aux_sym_glimmer_template_repeat1, - [50453] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3129), 1, - sym__glimmer_template_content, - ACTIONS(3131), 1, - sym_glimmer_closing_tag, - STATE(1372), 1, - aux_sym_glimmer_template_repeat1, - [50469] = 4, - ACTIONS(684), 1, + [49164] = 4, + ACTIONS(1996), 1, anon_sym_COMMA, - ACTIONS(3047), 1, - anon_sym_RBRACK, - STATE(1337), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(3092), 1, + anon_sym_RBRACE, + STATE(1334), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50483] = 4, - ACTIONS(2104), 1, + [49178] = 4, + ACTIONS(1996), 1, anon_sym_COMMA, - ACTIONS(3133), 1, + ACTIONS(3094), 1, anon_sym_RBRACE, - STATE(1374), 1, + STATE(1334), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50497] = 4, - ACTIONS(2684), 1, + [49192] = 4, + ACTIONS(2668), 1, anon_sym_LPAREN, - ACTIONS(3135), 1, + ACTIONS(3096), 1, sym_identifier, - STATE(1428), 1, + STATE(1404), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50511] = 4, - ACTIONS(718), 1, - anon_sym_COMMA, - ACTIONS(3137), 1, - anon_sym_RPAREN, - STATE(1270), 1, - aux_sym_array_repeat1, + [49206] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50525] = 4, - ACTIONS(718), 1, + ACTIONS(3011), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(1790), 1, - anon_sym_RBRACK, - STATE(1270), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50539] = 4, - ACTIONS(718), 1, + anon_sym_SEMI, + [49216] = 4, + ACTIONS(707), 1, anon_sym_COMMA, - ACTIONS(1790), 1, - anon_sym_RBRACK, - STATE(1334), 1, + ACTIONS(1836), 1, + anon_sym_RPAREN, + STATE(1312), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50553] = 4, - ACTIONS(684), 1, + [49230] = 4, + ACTIONS(707), 1, anon_sym_COMMA, - ACTIONS(3047), 1, - anon_sym_RBRACK, - STATE(1335), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(1836), 1, + anon_sym_RPAREN, + STATE(1233), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50567] = 4, - ACTIONS(2684), 1, + [49244] = 4, + ACTIONS(2668), 1, anon_sym_LPAREN, - ACTIONS(3139), 1, + ACTIONS(3098), 1, sym_identifier, - STATE(1465), 1, + STATE(1413), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50581] = 4, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(3133), 1, - anon_sym_RBRACE, - STATE(1307), 1, - aux_sym_object_repeat1, + [49258] = 4, + ACTIONS(2490), 1, + anon_sym_COLON, + ACTIONS(2496), 1, + anon_sym_DOT, + ACTIONS(3100), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50595] = 4, - ACTIONS(724), 1, - anon_sym_RPAREN, - ACTIONS(3141), 1, + [49272] = 4, + ACTIONS(707), 1, anon_sym_COMMA, - STATE(1387), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(3102), 1, + anon_sym_RPAREN, + STATE(1233), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50609] = 4, - ACTIONS(3143), 1, - anon_sym_LBRACE, - ACTIONS(3145), 1, - anon_sym_LPAREN, - STATE(338), 1, - sym_statement_block, + [49286] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50623] = 2, + ACTIONS(3104), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [49296] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1812), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [50633] = 3, - ACTIONS(2973), 1, - anon_sym_EQ, + ACTIONS(3106), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [49306] = 3, + ACTIONS(3108), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3147), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [50645] = 4, - ACTIONS(718), 1, + ACTIONS(3110), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49318] = 4, + ACTIONS(2626), 1, + anon_sym_RBRACE, + ACTIONS(3112), 1, anon_sym_COMMA, - ACTIONS(3149), 1, - anon_sym_RBRACK, - STATE(1270), 1, - aux_sym_array_repeat1, + STATE(1296), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50659] = 4, - ACTIONS(684), 1, - anon_sym_COMMA, - ACTIONS(3151), 1, - anon_sym_RBRACK, - STATE(1337), 1, - aux_sym_array_pattern_repeat1, + [49332] = 4, + ACTIONS(2490), 1, + anon_sym_COLON, + ACTIONS(2496), 1, + anon_sym_DOT, + ACTIONS(3114), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50673] = 4, - ACTIONS(3041), 1, + [49346] = 4, + ACTIONS(1996), 1, anon_sym_COMMA, - ACTIONS(3043), 1, - anon_sym_RPAREN, - STATE(1330), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(3116), 1, + anon_sym_RBRACE, + STATE(1334), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50687] = 4, - ACTIONS(3147), 1, - anon_sym_RBRACK, - ACTIONS(3153), 1, + [49360] = 4, + ACTIONS(2036), 1, anon_sym_COMMA, - STATE(1337), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(3118), 1, + anon_sym_RBRACE, + STATE(1354), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50701] = 4, - ACTIONS(2120), 1, + [49374] = 4, + ACTIONS(1996), 1, anon_sym_COMMA, - ACTIONS(3121), 1, + ACTIONS(3120), 1, anon_sym_RBRACE, - STATE(1298), 1, - aux_sym_object_pattern_repeat1, + STATE(1355), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50715] = 4, - ACTIONS(2506), 1, - anon_sym_COLON, - ACTIONS(2512), 1, - anon_sym_DOT, - ACTIONS(3156), 1, - anon_sym_GT, + [49388] = 4, + ACTIONS(3122), 1, + anon_sym_LPAREN, + ACTIONS(3124), 1, + anon_sym_await, + STATE(33), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50729] = 4, - ACTIONS(2684), 1, - anon_sym_LPAREN, - ACTIONS(3158), 1, - sym_identifier, - STATE(1465), 1, - sym_formal_parameters, + [49402] = 4, + ACTIONS(1996), 1, + anon_sym_COMMA, + ACTIONS(3120), 1, + anon_sym_RBRACE, + STATE(1334), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50743] = 4, - ACTIONS(2120), 1, + [49416] = 4, + ACTIONS(2036), 1, anon_sym_COMMA, - ACTIONS(3160), 1, + ACTIONS(3118), 1, anon_sym_RBRACE, - STATE(1298), 1, + STATE(1379), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50757] = 4, - ACTIONS(2104), 1, + [49430] = 4, + ACTIONS(2036), 1, anon_sym_COMMA, - ACTIONS(3162), 1, + ACTIONS(3126), 1, anon_sym_RBRACE, - STATE(1307), 1, - aux_sym_object_repeat1, + STATE(1379), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50771] = 4, - ACTIONS(2684), 1, + [49444] = 4, + ACTIONS(2668), 1, anon_sym_LPAREN, - ACTIONS(3164), 1, + ACTIONS(3128), 1, sym_identifier, - STATE(1543), 1, + STATE(1596), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50785] = 4, - ACTIONS(718), 1, + [49458] = 4, + ACTIONS(3130), 1, anon_sym_COMMA, - ACTIONS(1806), 1, - anon_sym_RPAREN, - STATE(1270), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50799] = 3, - ACTIONS(2753), 1, - anon_sym_EQ, + ACTIONS(3133), 1, + anon_sym_RBRACE, + STATE(1326), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1337), 2, + [49472] = 3, + ACTIONS(1641), 1, anon_sym_in, - anon_sym_of, - [50811] = 4, - ACTIONS(718), 1, - anon_sym_COMMA, - ACTIONS(1798), 1, - anon_sym_RPAREN, - STATE(1396), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50825] = 4, - ACTIONS(718), 1, - anon_sym_COMMA, - ACTIONS(1798), 1, - anon_sym_RPAREN, - STATE(1270), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50839] = 4, - ACTIONS(981), 1, - anon_sym_while, - ACTIONS(3166), 1, - anon_sym_else, - STATE(358), 1, - sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50853] = 3, - ACTIONS(3168), 1, - anon_sym_as, + ACTIONS(1719), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [49484] = 3, + ACTIONS(2466), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3170), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50865] = 4, - ACTIONS(2684), 1, + ACTIONS(2464), 2, anon_sym_LPAREN, - ACTIONS(3172), 1, - anon_sym_COLON, - STATE(1627), 1, - sym_formal_parameters, + sym_optional_chain, + [49496] = 4, + ACTIONS(654), 1, + anon_sym_COMMA, + ACTIONS(2979), 1, + anon_sym_RBRACK, + STATE(1364), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50879] = 4, - ACTIONS(2506), 1, - anon_sym_COLON, - ACTIONS(2512), 1, - anon_sym_DOT, - ACTIONS(3174), 1, - anon_sym_GT, + [49510] = 4, + ACTIONS(707), 1, + anon_sym_COMMA, + ACTIONS(1790), 1, + anon_sym_RBRACK, + STATE(1363), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50893] = 4, - ACTIONS(2104), 1, + [49524] = 4, + ACTIONS(707), 1, anon_sym_COMMA, - ACTIONS(3162), 1, - anon_sym_RBRACE, - STATE(1305), 1, - aux_sym_object_repeat1, + ACTIONS(1790), 1, + anon_sym_RBRACK, + STATE(1233), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50907] = 2, + [49538] = 4, + ACTIONS(654), 1, + anon_sym_COMMA, + ACTIONS(2979), 1, + anon_sym_RBRACK, + STATE(1362), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3176), 3, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_SEMI, - [50917] = 2, + [49552] = 4, + ACTIONS(975), 1, + anon_sym_while, + ACTIONS(3135), 1, + anon_sym_else, + STATE(364), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3178), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [50927] = 4, - ACTIONS(2630), 1, - anon_sym_RBRACE, - ACTIONS(3180), 1, + [49566] = 4, + ACTIONS(3137), 1, anon_sym_COMMA, - STATE(1398), 1, - aux_sym_export_clause_repeat1, + ACTIONS(3140), 1, + anon_sym_RBRACE, + STATE(1334), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50941] = 4, - ACTIONS(2120), 1, + [49580] = 4, + ACTIONS(707), 1, anon_sym_COMMA, - ACTIONS(3160), 1, - anon_sym_RBRACE, - STATE(1304), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(1824), 1, + anon_sym_RBRACK, + STATE(1350), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50955] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3182), 1, - sym__glimmer_template_content, - ACTIONS(3185), 1, - sym_glimmer_closing_tag, - STATE(1357), 1, - aux_sym_glimmer_template_repeat1, - [50971] = 3, - ACTIONS(1660), 1, - anon_sym_in, + [49594] = 3, + ACTIONS(2787), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [50983] = 4, - ACTIONS(2684), 1, + ACTIONS(1332), 2, + anon_sym_in, + anon_sym_of, + [49606] = 4, + ACTIONS(2668), 1, anon_sym_LPAREN, - ACTIONS(3187), 1, - anon_sym_COLON, - STATE(1627), 1, + ACTIONS(3142), 1, + sym_identifier, + STATE(1404), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50997] = 3, - ACTIONS(2973), 1, - anon_sym_EQ, + [49620] = 3, + ACTIONS(3144), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2602), 2, + anon_sym_in, + anon_sym_of, + [49632] = 3, + ACTIONS(3146), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3189), 2, + ACTIONS(3148), 2, anon_sym_COMMA, anon_sym_RBRACE, - [51009] = 4, - ACTIONS(684), 1, + [49644] = 4, + ACTIONS(3150), 1, anon_sym_COMMA, - ACTIONS(2975), 1, - anon_sym_RBRACK, - STATE(1367), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(3152), 1, + anon_sym_RBRACE, + STATE(1289), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51023] = 4, - ACTIONS(718), 1, - anon_sym_COMMA, - ACTIONS(1820), 1, - anon_sym_RBRACK, - STATE(1368), 1, - aux_sym_array_repeat1, + [49658] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51037] = 4, - ACTIONS(718), 1, + ACTIONS(1840), 3, anon_sym_COMMA, - ACTIONS(1820), 1, + anon_sym_RPAREN, anon_sym_RBRACK, - STATE(1270), 1, - aux_sym_array_repeat1, + [49668] = 3, + ACTIONS(2975), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51051] = 4, - ACTIONS(2664), 1, - anon_sym_RBRACE, - ACTIONS(3191), 1, + ACTIONS(3154), 2, anon_sym_COMMA, - STATE(1369), 1, - aux_sym_named_imports_repeat1, + anon_sym_RBRACK, + [49680] = 4, + ACTIONS(2668), 1, + anon_sym_LPAREN, + ACTIONS(3156), 1, + sym_identifier, + STATE(1413), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51065] = 4, - ACTIONS(3193), 1, - anon_sym_LPAREN, - ACTIONS(3195), 1, - anon_sym_await, - STATE(35), 1, - sym__for_header, + [49694] = 4, + ACTIONS(3158), 1, + sym_identifier, + STATE(925), 1, + sym_decorator_member_expression, + STATE(984), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51079] = 2, + [49708] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2965), 3, + ACTIONS(2781), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [51089] = 4, - ACTIONS(684), 1, - anon_sym_COMMA, - ACTIONS(3197), 1, - anon_sym_RBRACK, - STATE(1337), 1, - aux_sym_array_pattern_repeat1, + [49718] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51103] = 4, - ACTIONS(718), 1, - anon_sym_COMMA, - ACTIONS(3199), 1, - anon_sym_RBRACK, - STATE(1270), 1, - aux_sym_array_repeat1, + ACTIONS(3160), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [49728] = 4, + ACTIONS(2020), 1, + anon_sym_DQUOTE, + ACTIONS(2022), 1, + anon_sym_SQUOTE, + STATE(1313), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51117] = 4, - ACTIONS(3201), 1, - anon_sym_COMMA, - ACTIONS(3204), 1, - anon_sym_RBRACE, - STATE(1369), 1, - aux_sym_named_imports_repeat1, + [49742] = 3, + ACTIONS(2975), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51131] = 2, + ACTIONS(3162), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [49754] = 4, + ACTIONS(2763), 1, + sym_identifier, + ACTIONS(2765), 1, + anon_sym_LBRACK, + ACTIONS(2767), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3206), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [51141] = 4, - ACTIONS(684), 1, + [49768] = 4, + ACTIONS(707), 1, anon_sym_COMMA, - ACTIONS(2975), 1, + ACTIONS(3164), 1, anon_sym_RBRACK, - STATE(1337), 1, - aux_sym_array_pattern_repeat1, + STATE(1233), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51155] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3125), 1, - sym__glimmer_template_content, - ACTIONS(3208), 1, - sym_glimmer_closing_tag, - STATE(1357), 1, - aux_sym_glimmer_template_repeat1, - [51171] = 4, - ACTIONS(2952), 1, - anon_sym_from, - ACTIONS(3210), 1, - anon_sym_as, - STATE(1617), 1, - sym__from_clause, + [49782] = 4, + ACTIONS(2036), 1, + anon_sym_COMMA, + ACTIONS(3049), 1, + anon_sym_RBRACE, + STATE(1293), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51185] = 4, - ACTIONS(2104), 1, + [49796] = 4, + ACTIONS(1996), 1, anon_sym_COMMA, - ACTIONS(3212), 1, + ACTIONS(3166), 1, anon_sym_RBRACE, - STATE(1307), 1, + STATE(1334), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51199] = 4, - ACTIONS(2120), 1, + [49810] = 4, + ACTIONS(2036), 1, anon_sym_COMMA, - ACTIONS(3214), 1, + ACTIONS(3168), 1, anon_sym_RBRACE, - STATE(1298), 1, + STATE(1379), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51213] = 4, - ACTIONS(2120), 1, + [49824] = 4, + ACTIONS(2036), 1, anon_sym_COMMA, - ACTIONS(3216), 1, + ACTIONS(3170), 1, anon_sym_RBRACE, - STATE(1298), 1, + STATE(1379), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51227] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3218), 1, - sym__glimmer_template_content, - ACTIONS(3220), 1, - sym_glimmer_closing_tag, - STATE(1399), 1, - aux_sym_glimmer_template_repeat1, - [51243] = 4, - ACTIONS(2104), 1, + [49838] = 4, + ACTIONS(1996), 1, anon_sym_COMMA, - ACTIONS(3222), 1, + ACTIONS(3172), 1, anon_sym_RBRACE, - STATE(1307), 1, + STATE(1334), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51257] = 4, - ACTIONS(2872), 1, + [49852] = 4, + ACTIONS(2668), 1, + anon_sym_LPAREN, + ACTIONS(3174), 1, sym_identifier, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 1, - sym_private_property_identifier, + STATE(1404), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [49866] = 4, + ACTIONS(3162), 1, + anon_sym_RPAREN, + ACTIONS(3176), 1, + anon_sym_COMMA, + STATE(1357), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [49880] = 3, + ACTIONS(3179), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51271] = 4, - ACTIONS(3224), 1, + ACTIONS(2464), 2, + anon_sym_LPAREN, + sym_optional_chain, + [49892] = 4, + ACTIONS(2668), 1, + anon_sym_LPAREN, + ACTIONS(3181), 1, sym_identifier, - STATE(935), 1, - sym_decorator_member_expression, - STATE(1002), 1, - sym_decorator_call_expression, + STATE(1413), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51285] = 5, - ACTIONS(3), 1, + [49906] = 4, + ACTIONS(1996), 1, + anon_sym_COMMA, + ACTIONS(3047), 1, + anon_sym_RBRACE, + STATE(1299), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [49920] = 4, + ACTIONS(654), 1, + anon_sym_COMMA, + ACTIONS(3183), 1, + anon_sym_RBRACK, + STATE(1362), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3226), 1, - sym__glimmer_template_content, - ACTIONS(3228), 1, - sym_glimmer_closing_tag, - STATE(1319), 1, - aux_sym_glimmer_template_repeat1, - [51301] = 4, - ACTIONS(718), 1, + sym_comment, + [49934] = 4, + ACTIONS(3154), 1, + anon_sym_RBRACK, + ACTIONS(3185), 1, anon_sym_COMMA, - ACTIONS(1758), 1, - anon_sym_RPAREN, - STATE(1395), 1, - aux_sym_array_repeat1, + STATE(1362), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51315] = 4, - ACTIONS(718), 1, + [49948] = 4, + ACTIONS(707), 1, anon_sym_COMMA, - ACTIONS(1758), 1, - anon_sym_RPAREN, - STATE(1270), 1, + ACTIONS(3188), 1, + anon_sym_RBRACK, + STATE(1233), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51329] = 2, + [49962] = 4, + ACTIONS(654), 1, + anon_sym_COMMA, + ACTIONS(3190), 1, + anon_sym_RBRACK, + STATE(1362), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3230), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [51339] = 3, - ACTIONS(3232), 1, - sym_identifier, + [49976] = 4, + ACTIONS(707), 1, + anon_sym_COMMA, + ACTIONS(1846), 1, + anon_sym_RPAREN, + STATE(1290), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3234), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51351] = 4, - ACTIONS(2506), 1, - anon_sym_COLON, - ACTIONS(2512), 1, - anon_sym_DOT, - ACTIONS(3236), 1, - anon_sym_GT, + [49990] = 4, + ACTIONS(707), 1, + anon_sym_COMMA, + ACTIONS(1824), 1, + anon_sym_RBRACK, + STATE(1233), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51365] = 4, - ACTIONS(3238), 1, + [50004] = 4, + ACTIONS(707), 1, anon_sym_COMMA, - ACTIONS(3241), 1, + ACTIONS(1846), 1, anon_sym_RPAREN, - STATE(1387), 1, - aux_sym_formal_parameters_repeat1, + STATE(1233), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51379] = 3, - ACTIONS(3243), 1, - sym__automatic_semicolon, + [50018] = 4, + ACTIONS(654), 1, + anon_sym_COMMA, + ACTIONS(2977), 1, + anon_sym_RBRACK, + STATE(1362), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2649), 2, - anon_sym_in, - anon_sym_of, - [51391] = 3, - ACTIONS(3245), 1, - sym_identifier, + [50032] = 4, + ACTIONS(707), 1, + anon_sym_COMMA, + ACTIONS(1808), 1, + anon_sym_RPAREN, + STATE(1375), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3247), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51403] = 4, - ACTIONS(2104), 1, + [50046] = 4, + ACTIONS(707), 1, anon_sym_COMMA, - ACTIONS(3249), 1, - anon_sym_RBRACE, - STATE(1307), 1, - aux_sym_object_repeat1, + ACTIONS(1808), 1, + anon_sym_RPAREN, + STATE(1233), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51417] = 4, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(3251), 1, - anon_sym_RBRACE, - STATE(1307), 1, - aux_sym_object_repeat1, + [50060] = 4, + ACTIONS(2668), 1, + anon_sym_LPAREN, + ACTIONS(3192), 1, + anon_sym_COLON, + STATE(1556), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51431] = 4, - ACTIONS(2104), 1, + [50074] = 4, + ACTIONS(3027), 1, anon_sym_COMMA, - ACTIONS(3253), 1, - anon_sym_RBRACE, - STATE(1391), 1, - aux_sym_object_repeat1, + ACTIONS(3029), 1, + anon_sym_RPAREN, + STATE(1303), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51445] = 4, - ACTIONS(2506), 1, + [50088] = 4, + ACTIONS(2490), 1, anon_sym_COLON, - ACTIONS(2512), 1, + ACTIONS(2496), 1, anon_sym_DOT, - ACTIONS(3255), 1, + ACTIONS(3194), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51459] = 4, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(3253), 1, - anon_sym_RBRACE, - STATE(1307), 1, - aux_sym_object_repeat1, + [50102] = 3, + ACTIONS(2975), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51473] = 4, - ACTIONS(718), 1, + ACTIONS(3196), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [50114] = 4, + ACTIONS(707), 1, anon_sym_COMMA, - ACTIONS(3257), 1, + ACTIONS(3198), 1, anon_sym_RPAREN, - STATE(1270), 1, + STATE(1233), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51487] = 4, - ACTIONS(718), 1, + [50128] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3200), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [50138] = 4, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(3259), 1, - anon_sym_RPAREN, - STATE(1270), 1, - aux_sym_array_repeat1, + ACTIONS(2977), 1, + anon_sym_RBRACK, + STATE(1361), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51501] = 3, - ACTIONS(2973), 1, + [50152] = 3, + ACTIONS(2911), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3241), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51513] = 4, - ACTIONS(3261), 1, + ACTIONS(1332), 2, + anon_sym_in, + anon_sym_of, + [50164] = 4, + ACTIONS(3202), 1, anon_sym_COMMA, - ACTIONS(3264), 1, + ACTIONS(3205), 1, anon_sym_RBRACE, - STATE(1398), 1, - aux_sym_export_clause_repeat1, + STATE(1379), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51527] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [50178] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3125), 1, - sym__glimmer_template_content, - ACTIONS(3266), 1, - sym_glimmer_closing_tag, - STATE(1357), 1, - aux_sym_glimmer_template_repeat1, - [51543] = 3, - ACTIONS(3143), 1, + sym_comment, + ACTIONS(3207), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50187] = 3, + ACTIONS(2128), 1, anon_sym_LBRACE, - STATE(967), 1, + STATE(949), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51554] = 3, - ACTIONS(2684), 1, + [50198] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1612), 1, + STATE(1429), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51565] = 3, - ACTIONS(3268), 1, - anon_sym_LBRACE, - STATE(67), 1, - sym_statement_block, + [50209] = 3, + ACTIONS(2490), 1, + anon_sym_COLON, + ACTIONS(3100), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51576] = 2, + [50220] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3270), 2, + ACTIONS(3209), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51585] = 2, + [50229] = 3, + ACTIONS(2496), 1, + anon_sym_DOT, + ACTIONS(3100), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3272), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51594] = 3, - ACTIONS(3274), 1, + [50240] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(31), 1, - sym_parenthesized_expression, + STATE(1430), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51605] = 3, - ACTIONS(2806), 1, - anon_sym_LBRACE, - STATE(597), 1, - sym_class_body, + [50251] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1531), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51616] = 3, - ACTIONS(3274), 1, + [50262] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1471), 1, - sym_parenthesized_expression, + STATE(1532), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51627] = 2, + [50273] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1533), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3276), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [51636] = 3, - ACTIONS(3278), 1, + [50284] = 3, + ACTIONS(3065), 1, anon_sym_LBRACE, - STATE(515), 1, + STATE(930), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51647] = 3, - ACTIONS(3274), 1, + [50295] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(44), 1, - sym_parenthesized_expression, + STATE(1462), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51658] = 3, - ACTIONS(3143), 1, - anon_sym_LBRACE, - STATE(314), 1, - sym_statement_block, + [50306] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1539), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51669] = 3, - ACTIONS(3278), 1, - anon_sym_LBRACE, - STATE(593), 1, - sym_statement_block, + [50317] = 3, + ACTIONS(3211), 1, + anon_sym_SEMI, + ACTIONS(3213), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51680] = 3, - ACTIONS(2684), 1, + [50328] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1541), 1, + STATE(1420), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50339] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1447), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51691] = 3, - ACTIONS(3278), 1, + [50350] = 3, + ACTIONS(3215), 1, anon_sym_LBRACE, - STATE(519), 1, + STATE(663), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51702] = 2, + [50361] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3280), 2, + ACTIONS(1735), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51711] = 3, - ACTIONS(3282), 1, - sym_identifier, - ACTIONS(3284), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51722] = 2, + [50370] = 3, + ACTIONS(3217), 1, + anon_sym_LPAREN, + STATE(28), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3286), 2, - anon_sym_in, - anon_sym_of, - [51731] = 3, - ACTIONS(2872), 1, - sym_identifier, - ACTIONS(2876), 1, - sym_private_property_identifier, + [50381] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1431), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51742] = 3, - ACTIONS(2158), 1, + [50392] = 3, + ACTIONS(3065), 1, anon_sym_LBRACE, - STATE(941), 1, + STATE(950), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51753] = 2, + [50403] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1715), 2, + ACTIONS(1520), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51762] = 2, + [50412] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1421), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(521), 2, - sym__automatic_semicolon, + [50423] = 3, + ACTIONS(3219), 1, anon_sym_SEMI, - [51771] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3204), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51780] = 3, - ACTIONS(3288), 1, - sym_identifier, - ACTIONS(3290), 1, - anon_sym_STAR, + ACTIONS(3221), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51791] = 2, + [50434] = 3, + ACTIONS(3215), 1, + anon_sym_LBRACE, + STATE(633), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3292), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51800] = 3, - ACTIONS(2952), 1, - anon_sym_from, - STATE(1636), 1, - sym__from_clause, + [50445] = 3, + ACTIONS(2490), 1, + anon_sym_COLON, + ACTIONS(3114), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51811] = 3, - ACTIONS(2763), 1, - anon_sym_LBRACE, - STATE(757), 1, - sym_class_body, + [50456] = 3, + ACTIONS(2118), 1, + anon_sym_LPAREN, + ACTIONS(2316), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51822] = 3, - ACTIONS(3278), 1, - anon_sym_LBRACE, - STATE(540), 1, - sym_statement_block, + [50467] = 3, + ACTIONS(2496), 1, + anon_sym_DOT, + ACTIONS(3114), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51833] = 3, - ACTIONS(3278), 1, - anon_sym_LBRACE, - STATE(595), 1, - sym_statement_block, + [50478] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1560), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51844] = 3, - ACTIONS(3143), 1, - anon_sym_LBRACE, - STATE(936), 1, - sym_statement_block, + [50489] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1567), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51855] = 3, - ACTIONS(3143), 1, + [50500] = 3, + ACTIONS(3215), 1, anon_sym_LBRACE, - STATE(934), 1, + STATE(68), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51866] = 3, - ACTIONS(3143), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym_statement_block, + [50511] = 3, + ACTIONS(2118), 1, + anon_sym_LPAREN, + ACTIONS(3223), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51877] = 3, - ACTIONS(2684), 1, + [50522] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1527), 1, + STATE(1493), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51888] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1526), 1, - sym_formal_parameters, + [50533] = 3, + ACTIONS(3215), 1, + anon_sym_LBRACE, + STATE(717), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51899] = 3, - ACTIONS(2684), 1, + [50544] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1400), 1, + STATE(1568), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51910] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1512), 1, - sym_formal_parameters, + [50555] = 3, + ACTIONS(2909), 1, + anon_sym_LBRACE, + STATE(349), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51921] = 3, - ACTIONS(3143), 1, + [50566] = 3, + ACTIONS(3065), 1, anon_sym_LBRACE, - STATE(957), 1, + STATE(932), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51932] = 3, - ACTIONS(2684), 1, + [50577] = 3, + ACTIONS(3225), 1, anon_sym_LPAREN, - STATE(1509), 1, - sym_formal_parameters, + STATE(31), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51943] = 3, - ACTIONS(2684), 1, + [50588] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1508), 1, + STATE(1570), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51954] = 3, - ACTIONS(2684), 1, + [50599] = 3, + ACTIONS(3225), 1, anon_sym_LPAREN, - STATE(1506), 1, - sym_formal_parameters, + STATE(32), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51965] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1480), 1, - sym_formal_parameters, + [50610] = 3, + ACTIONS(3215), 1, + anon_sym_LBRACE, + STATE(74), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51976] = 3, - ACTIONS(3143), 1, + [50621] = 3, + ACTIONS(3215), 1, anon_sym_LBRACE, - STATE(961), 1, + STATE(71), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51987] = 3, - ACTIONS(2684), 1, + [50632] = 3, + ACTIONS(3225), 1, anon_sym_LPAREN, - STATE(1580), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51998] = 3, - ACTIONS(2506), 1, - anon_sym_COLON, - ACTIONS(3236), 1, - anon_sym_GT, + STATE(34), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52009] = 3, - ACTIONS(2512), 1, - anon_sym_DOT, - ACTIONS(3236), 1, - anon_sym_GT, + [50643] = 3, + ACTIONS(2128), 1, + anon_sym_LBRACE, + STATE(956), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52020] = 3, - ACTIONS(3294), 1, + [50654] = 3, + ACTIONS(2128), 1, anon_sym_LBRACE, - STATE(704), 1, + STATE(957), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52031] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1485), 1, - sym_formal_parameters, + [50665] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52042] = 3, - ACTIONS(2684), 1, + ACTIONS(3227), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50674] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1481), 1, + STATE(1574), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52053] = 3, - ACTIONS(3143), 1, - anon_sym_LBRACE, - STATE(951), 1, - sym_statement_block, + [50685] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1575), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52064] = 3, - ACTIONS(2684), 1, + [50696] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1489), 1, + STATE(1576), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52075] = 3, - ACTIONS(3143), 1, + [50707] = 3, + ACTIONS(3065), 1, anon_sym_LBRACE, - STATE(953), 1, + STATE(933), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52086] = 2, + [50718] = 3, + ACTIONS(3065), 1, + anon_sym_LBRACE, + STATE(934), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1863), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [52095] = 3, - ACTIONS(2981), 1, + [50729] = 3, + ACTIONS(3065), 1, anon_sym_LBRACE, - STATE(345), 1, - sym_class_body, + STATE(929), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52106] = 3, - ACTIONS(3296), 1, + [50740] = 3, + ACTIONS(2755), 1, anon_sym_LBRACE, - STATE(344), 1, - sym_statement_block, + STATE(527), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52117] = 3, - ACTIONS(3298), 1, - anon_sym_COMMA, - ACTIONS(3300), 1, - anon_sym_from, + [50751] = 3, + ACTIONS(3217), 1, + anon_sym_LPAREN, + STATE(27), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52128] = 3, - ACTIONS(3296), 1, - anon_sym_LBRACE, - STATE(343), 1, - sym_statement_block, + [50762] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52139] = 3, - ACTIONS(2684), 1, + ACTIONS(3154), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [50771] = 3, + ACTIONS(3225), 1, anon_sym_LPAREN, - STATE(1576), 1, - sym_formal_parameters, + STATE(47), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52150] = 2, + [50782] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3302), 2, + ACTIONS(3229), 2, anon_sym_COMMA, anon_sym_RBRACE, - [52159] = 2, + [50791] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3264), 2, + ACTIONS(3133), 2, anon_sym_COMMA, anon_sym_RBRACE, - [52168] = 3, - ACTIONS(2952), 1, - anon_sym_from, - STATE(1291), 1, - sym__from_clause, + [50800] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1566), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52179] = 3, - ACTIONS(2983), 1, + [50811] = 3, + ACTIONS(2128), 1, anon_sym_LBRACE, - STATE(77), 1, - sym_class_body, + STATE(945), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52190] = 3, - ACTIONS(2506), 1, - anon_sym_COLON, - ACTIONS(3156), 1, - anon_sym_GT, + [50822] = 3, + ACTIONS(3065), 1, + anon_sym_LBRACE, + STATE(940), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52201] = 3, - ACTIONS(2512), 1, - anon_sym_DOT, - ACTIONS(3156), 1, - anon_sym_GT, + [50833] = 3, + ACTIONS(3225), 1, + anon_sym_LPAREN, + STATE(46), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52212] = 3, - ACTIONS(3268), 1, + [50844] = 3, + ACTIONS(2128), 1, anon_sym_LBRACE, - STATE(68), 1, + STATE(952), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52223] = 3, - ACTIONS(3268), 1, + [50855] = 3, + ACTIONS(2128), 1, anon_sym_LBRACE, - STATE(75), 1, + STATE(953), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52234] = 3, - ACTIONS(3294), 1, - anon_sym_LBRACE, - STATE(687), 1, - sym_statement_block, + [50866] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52245] = 3, - ACTIONS(2684), 1, + ACTIONS(528), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50875] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1402), 1, + STATE(1471), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52256] = 2, + [50886] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1472), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3304), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52265] = 3, - ACTIONS(2158), 1, + [50897] = 3, + ACTIONS(3231), 1, anon_sym_LBRACE, - STATE(972), 1, + STATE(528), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52276] = 3, - ACTIONS(2506), 1, - anon_sym_COLON, - ACTIONS(3255), 1, - anon_sym_GT, + [50908] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52287] = 3, - ACTIONS(2512), 1, - anon_sym_DOT, - ACTIONS(3255), 1, - anon_sym_GT, + ACTIONS(3233), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [50917] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52298] = 3, - ACTIONS(3306), 1, - anon_sym_LBRACE, - STATE(417), 1, - sym_switch_body, + ACTIONS(3162), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50926] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52309] = 2, + ACTIONS(1376), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50935] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3241), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [52318] = 2, + ACTIONS(1446), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50944] = 3, + ACTIONS(3235), 1, + sym_identifier, + ACTIONS(3237), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3308), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [52327] = 3, - ACTIONS(3278), 1, + [50955] = 3, + ACTIONS(3215), 1, anon_sym_LBRACE, - STATE(590), 1, + STATE(634), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52338] = 3, - ACTIONS(2684), 1, + [50966] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1409), 1, + STATE(1487), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52349] = 3, - ACTIONS(2684), 1, + [50977] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3239), 2, + anon_sym_in, + anon_sym_of, + [50986] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1412), 1, + STATE(1400), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52360] = 3, - ACTIONS(2806), 1, - anon_sym_LBRACE, - STATE(585), 1, - sym_class_body, + [50997] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1591), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52371] = 3, - ACTIONS(3310), 1, + [51008] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(52), 1, - sym__for_header, + STATE(1520), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52382] = 3, - ACTIONS(2806), 1, + [51019] = 3, + ACTIONS(3241), 1, + anon_sym_COMMA, + ACTIONS(3243), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51030] = 3, + ACTIONS(2714), 1, anon_sym_LBRACE, - STATE(587), 1, + STATE(72), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52393] = 3, - ACTIONS(3143), 1, + [51041] = 3, + ACTIONS(2935), 1, + anon_sym_from, + STATE(1270), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51052] = 3, + ACTIONS(3245), 1, anon_sym_LBRACE, - STATE(959), 1, + STATE(350), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52404] = 3, - ACTIONS(3143), 1, + [51063] = 3, + ACTIONS(2128), 1, anon_sym_LBRACE, - STATE(949), 1, + STATE(936), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52415] = 3, - ACTIONS(3274), 1, + [51074] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3072), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [51083] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(30), 1, - sym_parenthesized_expression, + STATE(1595), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52426] = 2, + [51094] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1597), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3312), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52435] = 3, - ACTIONS(3274), 1, + [51105] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(56), 1, - sym_parenthesized_expression, + STATE(1598), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52446] = 3, - ACTIONS(3143), 1, + [51116] = 3, + ACTIONS(2128), 1, anon_sym_LBRACE, - STATE(952), 1, + STATE(937), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52457] = 3, - ACTIONS(3314), 1, - anon_sym_SEMI, - ACTIONS(3316), 1, - sym__automatic_semicolon, + [51127] = 3, + ACTIONS(2128), 1, + anon_sym_LBRACE, + STATE(938), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52468] = 3, - ACTIONS(3274), 1, + [51138] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(38), 1, - sym_parenthesized_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [52479] = 2, + STATE(1618), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3318), 2, + [51149] = 3, + ACTIONS(3231), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [52488] = 3, - ACTIONS(3143), 1, - anon_sym_LBRACE, - STATE(940), 1, + STATE(531), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52499] = 3, - ACTIONS(2158), 1, + [51160] = 3, + ACTIONS(3231), 1, anon_sym_LBRACE, - STATE(939), 1, + STATE(532), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52510] = 3, - ACTIONS(2158), 1, - anon_sym_LBRACE, - STATE(968), 1, - sym_statement_block, + [51171] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52521] = 3, - ACTIONS(2763), 1, + ACTIONS(3247), 2, anon_sym_LBRACE, - STATE(789), 1, - sym_class_body, + anon_sym_EQ_GT, + [51180] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52532] = 3, - ACTIONS(3294), 1, + ACTIONS(3249), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [51189] = 3, + ACTIONS(2755), 1, anon_sym_LBRACE, - STATE(792), 1, - sym_statement_block, + STATE(533), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52543] = 3, - ACTIONS(3143), 1, + [51200] = 3, + ACTIONS(2128), 1, anon_sym_LBRACE, - STATE(968), 1, + STATE(939), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52554] = 3, - ACTIONS(2684), 1, + [51211] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1429), 1, + STATE(1522), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52565] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1430), 1, - sym_formal_parameters, + [51222] = 3, + ACTIONS(2755), 1, + anon_sym_LBRACE, + STATE(573), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52576] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1431), 1, - sym_formal_parameters, + [51233] = 3, + ACTIONS(2128), 1, + anon_sym_LBRACE, + STATE(946), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52587] = 3, - ACTIONS(2684), 1, + [51244] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1436), 1, + STATE(1602), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52598] = 3, - ACTIONS(2684), 1, + [51255] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1441), 1, + STATE(1603), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52609] = 3, - ACTIONS(3310), 1, - anon_sym_LPAREN, - STATE(32), 1, - sym__for_header, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [52620] = 3, - ACTIONS(2684), 1, + [51266] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1553), 1, + STATE(1604), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52631] = 3, - ACTIONS(2684), 1, + [51277] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1448), 1, + STATE(1606), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52642] = 3, - ACTIONS(2684), 1, + [51288] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1557), 1, + STATE(1607), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52653] = 3, - ACTIONS(2684), 1, + [51299] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1558), 1, + STATE(1608), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52664] = 2, + [51310] = 3, + ACTIONS(2128), 1, + anon_sym_LBRACE, + STATE(947), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3189), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [52673] = 3, - ACTIONS(3143), 1, + [51321] = 3, + ACTIONS(3245), 1, anon_sym_LBRACE, - STATE(960), 1, + STATE(353), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52684] = 3, - ACTIONS(2684), 1, + [51332] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1445), 1, + STATE(1610), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52695] = 3, - ACTIONS(3143), 1, - anon_sym_LBRACE, - STATE(932), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [52706] = 3, - ACTIONS(3143), 1, - anon_sym_LBRACE, - STATE(962), 1, - sym_statement_block, + [51343] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1611), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52717] = 3, - ACTIONS(2684), 1, + [51354] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1450), 1, + STATE(1614), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52728] = 3, - ACTIONS(3143), 1, - anon_sym_LBRACE, - STATE(939), 1, - sym_statement_block, + [51365] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52739] = 3, - ACTIONS(3143), 1, + ACTIONS(3251), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51374] = 3, + ACTIONS(3231), 1, anon_sym_LBRACE, - STATE(966), 1, + STATE(518), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52750] = 3, - ACTIONS(3296), 1, + [51385] = 3, + ACTIONS(3215), 1, anon_sym_LBRACE, - STATE(341), 1, + STATE(73), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52761] = 3, - ACTIONS(2684), 1, + [51396] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1453), 1, + STATE(1615), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52772] = 3, - ACTIONS(2684), 1, + [51407] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1455), 1, + STATE(1622), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52783] = 3, - ACTIONS(3274), 1, + [51418] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(37), 1, - sym_parenthesized_expression, + STATE(1479), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52794] = 3, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(340), 1, - sym_class_body, + [51429] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1486), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52805] = 3, - ACTIONS(2684), 1, + [51440] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1559), 1, + STATE(1512), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52816] = 3, - ACTIONS(2684), 1, + [51451] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1560), 1, + STATE(1443), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52827] = 3, - ACTIONS(2684), 1, + [51462] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1561), 1, + STATE(1562), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52838] = 2, + [51473] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1381), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3320), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52847] = 3, - ACTIONS(2763), 1, - anon_sym_LBRACE, - STATE(691), 1, - sym_class_body, + [51484] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1423), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52858] = 3, - ACTIONS(2806), 1, - anon_sym_LBRACE, - STATE(522), 1, - sym_class_body, + [51495] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1424), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52869] = 2, + [51506] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1439), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3322), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52878] = 3, - ACTIONS(2512), 1, - anon_sym_DOT, - ACTIONS(3174), 1, - anon_sym_GT, + [51517] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1442), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52889] = 3, - ACTIONS(3143), 1, + [51528] = 3, + ACTIONS(3253), 1, anon_sym_LBRACE, - STATE(965), 1, - sym_statement_block, + STATE(1541), 1, + sym_object, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52900] = 3, - ACTIONS(3143), 1, - anon_sym_LBRACE, - STATE(955), 1, - sym_statement_block, + [51539] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52911] = 3, - ACTIONS(2506), 1, - anon_sym_COLON, - ACTIONS(3174), 1, - anon_sym_GT, + ACTIONS(3255), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51548] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1453), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52922] = 2, + [51559] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1706), 2, + ACTIONS(3257), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52931] = 2, + [51568] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1463), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1708), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52940] = 3, - ACTIONS(2684), 1, + [51579] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1490), 1, + STATE(1468), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52951] = 3, - ACTIONS(3278), 1, + [51590] = 3, + ACTIONS(2128), 1, anon_sym_LBRACE, - STATE(573), 1, + STATE(959), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52962] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1471), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52971] = 3, - ACTIONS(3294), 1, - anon_sym_LBRACE, - STATE(765), 1, - sym_statement_block, + [51601] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1476), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52982] = 3, - ACTIONS(3294), 1, - anon_sym_LBRACE, - STATE(764), 1, - sym_statement_block, + [51612] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1516), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52993] = 3, - ACTIONS(2763), 1, - anon_sym_LBRACE, - STATE(760), 1, - sym_class_body, + [51623] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1526), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53004] = 3, - ACTIONS(2158), 1, + [51634] = 3, + ACTIONS(2128), 1, anon_sym_LBRACE, - STATE(953), 1, + STATE(940), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53015] = 3, - ACTIONS(3268), 1, - anon_sym_LBRACE, - STATE(66), 1, - sym_statement_block, + [51645] = 3, + ACTIONS(3259), 1, + sym_identifier, + ACTIONS(3261), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53026] = 3, - ACTIONS(2158), 1, - anon_sym_LBRACE, - STATE(951), 1, - sym_statement_block, + [51656] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53037] = 3, - ACTIONS(2844), 1, - anon_sym_in, - ACTIONS(2846), 1, - anon_sym_of, + ACTIONS(3263), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51665] = 3, + ACTIONS(3225), 1, + anon_sym_LPAREN, + STATE(35), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53048] = 3, - ACTIONS(3278), 1, + [51676] = 3, + ACTIONS(3245), 1, anon_sym_LBRACE, - STATE(598), 1, + STATE(344), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53059] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1493), 1, - sym_formal_parameters, + [51687] = 3, + ACTIONS(3065), 1, + anon_sym_LBRACE, + STATE(424), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53070] = 3, - ACTIONS(3294), 1, + [51698] = 3, + ACTIONS(3245), 1, anon_sym_LBRACE, - STATE(740), 1, + STATE(352), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53081] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1463), 1, - sym_formal_parameters, + [51709] = 3, + ACTIONS(3265), 1, + anon_sym_SEMI, + ACTIONS(3267), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53092] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1534), 1, - sym_formal_parameters, + [51720] = 3, + ACTIONS(3269), 1, + sym_identifier, + ACTIONS(3271), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53103] = 3, - ACTIONS(3294), 1, - anon_sym_LBRACE, - STATE(744), 1, - sym_statement_block, + [51731] = 3, + ACTIONS(2763), 1, + sym_identifier, + ACTIONS(2767), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53114] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1464), 1, - sym_formal_parameters, + [51742] = 3, + ACTIONS(2128), 1, + anon_sym_LBRACE, + STATE(941), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53125] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1535), 1, - sym_formal_parameters, + [51753] = 3, + ACTIONS(3273), 1, + anon_sym_SEMI, + ACTIONS(3275), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53136] = 3, - ACTIONS(3143), 1, + [51764] = 3, + ACTIONS(3065), 1, anon_sym_LBRACE, - STATE(350), 1, + STATE(960), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53147] = 3, - ACTIONS(2983), 1, + [51775] = 3, + ACTIONS(2909), 1, anon_sym_LBRACE, - STATE(70), 1, + STATE(343), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53158] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3324), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53167] = 2, + [51786] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3326), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53176] = 3, - ACTIONS(3143), 1, + ACTIONS(1730), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [51795] = 3, + ACTIONS(3065), 1, anon_sym_LBRACE, - STATE(948), 1, + STATE(935), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53187] = 3, - ACTIONS(2158), 1, + [51806] = 3, + ACTIONS(3065), 1, anon_sym_LBRACE, - STATE(961), 1, + STATE(946), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53198] = 3, - ACTIONS(3328), 1, - sym_identifier, - ACTIONS(3330), 1, - sym_jsx_identifier, + [51817] = 3, + ACTIONS(3065), 1, + anon_sym_LBRACE, + STATE(947), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53209] = 3, - ACTIONS(2158), 1, + [51828] = 3, + ACTIONS(3065), 1, anon_sym_LBRACE, - STATE(957), 1, + STATE(948), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53220] = 3, - ACTIONS(3143), 1, - anon_sym_LBRACE, - STATE(947), 1, - sym_statement_block, + [51839] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1390), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53231] = 3, - ACTIONS(3143), 1, - anon_sym_LBRACE, - STATE(946), 1, - sym_statement_block, + [51850] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53242] = 3, - ACTIONS(3143), 1, - anon_sym_LBRACE, - STATE(944), 1, - sym_statement_block, + ACTIONS(3277), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51859] = 3, + ACTIONS(2738), 1, + sym_identifier, + ACTIONS(2742), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53253] = 3, - ACTIONS(3143), 1, + [51870] = 3, + ACTIONS(3065), 1, anon_sym_LBRACE, - STATE(943), 1, + STATE(941), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53264] = 3, - ACTIONS(3143), 1, + [51881] = 3, + ACTIONS(3065), 1, anon_sym_LBRACE, - STATE(942), 1, + STATE(959), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53275] = 3, - ACTIONS(2763), 1, + [51892] = 3, + ACTIONS(2128), 1, anon_sym_LBRACE, - STATE(787), 1, - sym_class_body, + STATE(951), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53286] = 2, + [51903] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3147), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [53295] = 3, - ACTIONS(3143), 1, + ACTIONS(3279), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51912] = 3, + ACTIONS(3065), 1, anon_sym_LBRACE, - STATE(387), 1, + STATE(955), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53306] = 3, - ACTIONS(2158), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym_statement_block, + [51923] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1587), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53317] = 3, - ACTIONS(3332), 1, + [51934] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(336), 1, - sym_parenthesized_expression, + STATE(1534), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53328] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1537), 1, - sym_formal_parameters, + [51945] = 3, + ACTIONS(3065), 1, + anon_sym_LBRACE, + STATE(938), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53339] = 3, - ACTIONS(2684), 1, + [51956] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1539), 1, + STATE(1528), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53350] = 3, - ACTIONS(2684), 1, + [51967] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1554), 1, + STATE(1542), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53361] = 3, - ACTIONS(2684), 1, + [51978] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1565), 1, + STATE(1557), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53372] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1573), 1, - sym_formal_parameters, + [51989] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53383] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1609), 1, - sym_formal_parameters, + ACTIONS(3281), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [51998] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53394] = 3, - ACTIONS(2158), 1, + ACTIONS(3283), 2, anon_sym_LBRACE, - STATE(934), 1, - sym_statement_block, + anon_sym_EQ_GT, + [52007] = 3, + ACTIONS(2490), 1, + anon_sym_COLON, + ACTIONS(3088), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53405] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1538), 1, - sym_formal_parameters, + [52018] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53416] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1610), 1, - sym_formal_parameters, + ACTIONS(3205), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52027] = 3, + ACTIONS(3285), 1, + sym_identifier, + ACTIONS(3287), 1, + sym_jsx_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52038] = 3, + ACTIONS(2496), 1, + anon_sym_DOT, + ACTIONS(3088), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53427] = 3, - ACTIONS(3296), 1, + [52049] = 3, + ACTIONS(3065), 1, anon_sym_LBRACE, - STATE(351), 1, + STATE(939), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53438] = 2, + [52060] = 3, + ACTIONS(3065), 1, + anon_sym_LBRACE, + STATE(951), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3334), 2, + [52071] = 3, + ACTIONS(3065), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [53447] = 3, - ACTIONS(2684), 1, + STATE(937), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52082] = 3, + ACTIONS(3289), 1, anon_sym_LPAREN, - STATE(1620), 1, - sym_formal_parameters, + STATE(345), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53458] = 3, - ACTIONS(2684), 1, + [52093] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1474), 1, + STATE(1545), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53469] = 3, - ACTIONS(3143), 1, + [52104] = 3, + ACTIONS(3065), 1, anon_sym_LBRACE, - STATE(956), 1, + STATE(953), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53480] = 2, + [52115] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1461), 2, + ACTIONS(3291), 2, sym__automatic_semicolon, anon_sym_SEMI, - [53489] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1621), 1, - sym_formal_parameters, + [52124] = 3, + ACTIONS(2128), 1, + anon_sym_LBRACE, + STATE(944), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53500] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1623), 1, - sym_formal_parameters, + [52135] = 3, + ACTIONS(2714), 1, + anon_sym_LBRACE, + STATE(706), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53511] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1624), 1, - sym_formal_parameters, + [52146] = 3, + ACTIONS(3231), 1, + anon_sym_LBRACE, + STATE(555), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53522] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1625), 1, - sym_formal_parameters, + [52157] = 3, + ACTIONS(3231), 1, + anon_sym_LBRACE, + STATE(564), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53533] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1640), 1, - sym_formal_parameters, + [52168] = 3, + ACTIONS(3215), 1, + anon_sym_LBRACE, + STATE(729), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53544] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1641), 1, - sym_formal_parameters, + [52179] = 3, + ACTIONS(3065), 1, + anon_sym_LBRACE, + STATE(944), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53555] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1642), 1, - sym_formal_parameters, + [52190] = 3, + ACTIONS(3065), 1, + anon_sym_LBRACE, + STATE(949), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53566] = 3, - ACTIONS(2684), 1, + [52201] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1643), 1, + STATE(1416), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53577] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1632), 1, - sym_formal_parameters, + [52212] = 3, + ACTIONS(3065), 1, + anon_sym_LBRACE, + STATE(956), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53588] = 3, - ACTIONS(2684), 1, + [52223] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1630), 1, + STATE(1555), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53599] = 3, - ACTIONS(2684), 1, + [52234] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1629), 1, + STATE(1440), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53610] = 3, - ACTIONS(2684), 1, + [52245] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1628), 1, + STATE(1538), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53621] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1556), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53630] = 3, - ACTIONS(3294), 1, + [52256] = 3, + ACTIONS(3065), 1, anon_sym_LBRACE, - STATE(773), 1, + STATE(957), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53641] = 3, - ACTIONS(3336), 1, - sym_identifier, - ACTIONS(3338), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [53652] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1576), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53661] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1618), 1, - sym_formal_parameters, + [52267] = 3, + ACTIONS(3065), 1, + anon_sym_LBRACE, + STATE(945), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53672] = 3, - ACTIONS(2158), 1, + [52278] = 3, + ACTIONS(3065), 1, anon_sym_LBRACE, - STATE(942), 1, + STATE(952), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53683] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1616), 1, - sym_formal_parameters, + [52289] = 3, + ACTIONS(2714), 1, + anon_sym_LBRACE, + STATE(708), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53694] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1615), 1, - sym_formal_parameters, + [52300] = 3, + ACTIONS(2714), 1, + anon_sym_LBRACE, + STATE(69), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53705] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1614), 1, - sym_formal_parameters, + [52311] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53716] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1608), 1, - sym_formal_parameters, + ACTIONS(3140), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52320] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53727] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1606), 1, - sym_formal_parameters, + ACTIONS(1503), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52329] = 3, + ACTIONS(2935), 1, + anon_sym_from, + STATE(1393), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53738] = 3, - ACTIONS(2684), 1, + [52340] = 3, + ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(1599), 1, + STATE(1410), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53749] = 3, - ACTIONS(2158), 1, - anon_sym_LBRACE, - STATE(943), 1, - sym_statement_block, + [52351] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53760] = 3, - ACTIONS(2784), 1, - sym_identifier, - ACTIONS(2788), 1, - sym_private_property_identifier, + ACTIONS(1723), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52360] = 3, + ACTIONS(2490), 1, + anon_sym_COLON, + ACTIONS(3194), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53771] = 3, - ACTIONS(2158), 1, + [52371] = 3, + ACTIONS(3215), 1, anon_sym_LBRACE, - STATE(944), 1, + STATE(716), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53782] = 3, - ACTIONS(2158), 1, - anon_sym_LBRACE, - STATE(936), 1, - sym_statement_block, + [52382] = 3, + ACTIONS(2496), 1, + anon_sym_DOT, + ACTIONS(3194), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53793] = 3, - ACTIONS(3294), 1, + [52393] = 3, + ACTIONS(3065), 1, anon_sym_LBRACE, - STATE(755), 1, + STATE(936), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53804] = 2, + [52404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3340), 2, + ACTIONS(1725), 2, sym__automatic_semicolon, anon_sym_SEMI, - [53813] = 3, - ACTIONS(3294), 1, + [52413] = 3, + ACTIONS(2755), 1, anon_sym_LBRACE, - STATE(754), 1, - sym_statement_block, + STATE(515), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53824] = 3, - ACTIONS(3342), 1, - anon_sym_LBRACE, - STATE(1483), 1, - sym_object, + [52424] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53835] = 3, - ACTIONS(2158), 1, + ACTIONS(3196), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52433] = 3, + ACTIONS(2128), 1, anon_sym_LBRACE, - STATE(946), 1, + STATE(948), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53846] = 3, - ACTIONS(2158), 1, + [52444] = 3, + ACTIONS(2128), 1, anon_sym_LBRACE, - STATE(947), 1, + STATE(950), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53857] = 3, - ACTIONS(2158), 1, + [52455] = 3, + ACTIONS(2714), 1, anon_sym_LBRACE, - STATE(948), 1, - sym_statement_block, + STATE(666), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53868] = 3, - ACTIONS(3344), 1, - anon_sym_SEMI, - ACTIONS(3346), 1, - sym__automatic_semicolon, + [52466] = 3, + ACTIONS(2714), 1, + anon_sym_LBRACE, + STATE(703), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53879] = 3, - ACTIONS(3294), 1, + [52477] = 3, + ACTIONS(3215), 1, anon_sym_LBRACE, - STATE(751), 1, + STATE(710), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53890] = 3, - ACTIONS(2763), 1, + [52488] = 3, + ACTIONS(3231), 1, anon_sym_LBRACE, - STATE(753), 1, - sym_class_body, + STATE(516), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53901] = 3, - ACTIONS(3294), 1, + [52499] = 3, + ACTIONS(3215), 1, anon_sym_LBRACE, - STATE(752), 1, + STATE(664), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53912] = 3, - ACTIONS(2158), 1, + [52510] = 3, + ACTIONS(3215), 1, anon_sym_LBRACE, - STATE(940), 1, + STATE(667), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53923] = 3, - ACTIONS(2684), 1, + [52521] = 3, + ACTIONS(3293), 1, + anon_sym_LBRACE, + STATE(374), 1, + sym_switch_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52532] = 3, + ACTIONS(3225), 1, anon_sym_LPAREN, - STATE(1511), 1, - sym_formal_parameters, + STATE(1599), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53934] = 3, - ACTIONS(2158), 1, + [52543] = 3, + ACTIONS(2714), 1, anon_sym_LBRACE, - STATE(949), 1, - sym_statement_block, + STATE(713), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53945] = 3, - ACTIONS(2158), 1, + [52554] = 3, + ACTIONS(2128), 1, anon_sym_LBRACE, - STATE(952), 1, + STATE(955), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53956] = 3, - ACTIONS(2158), 1, + [52565] = 3, + ACTIONS(2128), 1, anon_sym_LBRACE, - STATE(956), 1, + STATE(958), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53967] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1494), 1, - sym_formal_parameters, + [52576] = 3, + ACTIONS(2128), 1, + anon_sym_LBRACE, + STATE(930), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53978] = 3, - ACTIONS(3143), 1, + [52587] = 3, + ACTIONS(2128), 1, anon_sym_LBRACE, - STATE(941), 1, + STATE(932), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53989] = 3, - ACTIONS(2158), 1, + [52598] = 3, + ACTIONS(2128), 1, anon_sym_LBRACE, - STATE(955), 1, + STATE(933), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54000] = 3, - ACTIONS(2158), 1, + [52609] = 3, + ACTIONS(2128), 1, anon_sym_LBRACE, - STATE(965), 1, + STATE(934), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54011] = 3, - ACTIONS(2158), 1, + [52620] = 3, + ACTIONS(2128), 1, anon_sym_LBRACE, - STATE(967), 1, + STATE(929), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54022] = 3, - ACTIONS(3348), 1, - sym_identifier, - ACTIONS(3350), 1, - anon_sym_STAR, + [52631] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1619), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54033] = 3, - ACTIONS(2158), 1, + [52642] = 3, + ACTIONS(3215), 1, anon_sym_LBRACE, - STATE(966), 1, + STATE(714), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54044] = 3, - ACTIONS(2146), 1, - anon_sym_LPAREN, - ACTIONS(3352), 1, - anon_sym_EQ_GT, + [52653] = 3, + ACTIONS(3215), 1, + anon_sym_LBRACE, + STATE(737), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54055] = 3, - ACTIONS(2146), 1, - anon_sym_LPAREN, - ACTIONS(2358), 1, - anon_sym_EQ_GT, + [52664] = 3, + ACTIONS(2714), 1, + anon_sym_LBRACE, + STATE(624), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54066] = 3, - ACTIONS(2684), 1, - anon_sym_LPAREN, - STATE(1513), 1, - sym_formal_parameters, + [52675] = 3, + ACTIONS(3065), 1, + anon_sym_LBRACE, + STATE(311), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54077] = 3, - ACTIONS(3354), 1, - anon_sym_SEMI, - ACTIONS(3356), 1, - sym__automatic_semicolon, + [52686] = 3, + ACTIONS(3215), 1, + anon_sym_LBRACE, + STATE(632), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54088] = 2, + [52697] = 3, + ACTIONS(2128), 1, + anon_sym_LBRACE, + STATE(960), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3103), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [54097] = 3, - ACTIONS(3358), 1, - anon_sym_SEMI, - ACTIONS(3360), 1, - sym__automatic_semicolon, + [52708] = 3, + ACTIONS(3295), 1, + sym_identifier, + ACTIONS(3297), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54108] = 2, + [52719] = 3, + ACTIONS(2783), 1, + anon_sym_in, + ACTIONS(2785), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3082), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [54117] = 3, - ACTIONS(2158), 1, + [52730] = 3, + ACTIONS(3231), 1, anon_sym_LBRACE, - STATE(959), 1, + STATE(534), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54128] = 3, - ACTIONS(2158), 1, + [52741] = 3, + ACTIONS(3065), 1, anon_sym_LBRACE, - STATE(960), 1, + STATE(958), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54139] = 3, - ACTIONS(2158), 1, + [52752] = 3, + ACTIONS(2128), 1, anon_sym_LBRACE, - STATE(932), 1, + STATE(975), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54150] = 3, - ACTIONS(2158), 1, + [52763] = 3, + ACTIONS(3065), 1, anon_sym_LBRACE, - STATE(962), 1, + STATE(332), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54161] = 2, - ACTIONS(1818), 1, - anon_sym_RPAREN, + [52774] = 3, + ACTIONS(2128), 1, + anon_sym_LBRACE, + STATE(935), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54169] = 2, - ACTIONS(3362), 1, - anon_sym_target, + [52785] = 3, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1469), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54177] = 2, - ACTIONS(3364), 1, + [52796] = 2, + ACTIONS(3299), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54185] = 2, - ACTIONS(2146), 1, - anon_sym_LPAREN, + [52804] = 2, + ACTIONS(2316), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54193] = 2, - ACTIONS(3366), 1, - anon_sym_while, + [52812] = 2, + ACTIONS(1573), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54201] = 2, - ACTIONS(3368), 1, - sym_identifier, + [52820] = 2, + ACTIONS(3301), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54209] = 2, - ACTIONS(3370), 1, - anon_sym_EQ, + [52828] = 2, + ACTIONS(3303), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54217] = 2, - ACTIONS(3372), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, + [52836] = 3, + ACTIONS(3), 1, sym_comment, - [54225] = 2, - ACTIONS(3374), 1, - anon_sym_EQ, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3305), 1, + anon_sym_SLASH2, + [52846] = 2, + ACTIONS(1834), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54233] = 2, - ACTIONS(3376), 1, - sym_identifier, + [52854] = 2, + ACTIONS(2118), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54241] = 2, - ACTIONS(1694), 1, - anon_sym_in, + [52862] = 2, + ACTIONS(3307), 1, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54249] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3378), 1, - sym_regex_pattern, - [54259] = 2, - ACTIONS(3380), 1, - anon_sym_EQ_GT, + [52870] = 2, + ACTIONS(3309), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54267] = 2, - ACTIONS(3382), 1, - anon_sym_EQ_GT, + [52878] = 2, + ACTIONS(3243), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54275] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3384), 1, - sym_regex_pattern, - [54285] = 2, - ACTIONS(3117), 1, - anon_sym_RBRACE, + [52886] = 2, + ACTIONS(3311), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54293] = 2, - ACTIONS(3113), 1, - anon_sym_RBRACE, + [52894] = 2, + ACTIONS(3313), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54301] = 2, - ACTIONS(3386), 1, + [52902] = 2, + ACTIONS(3315), 1, anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54309] = 2, - ACTIONS(3388), 1, - anon_sym_as, + [52910] = 2, + ACTIONS(1844), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54317] = 2, - ACTIONS(1748), 1, - anon_sym_RPAREN, + [52918] = 2, + ACTIONS(2787), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54325] = 2, - ACTIONS(3390), 1, - anon_sym_COLON, + [52926] = 2, + ACTIONS(3317), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54333] = 2, - ACTIONS(1760), 1, - anon_sym_RPAREN, + [52934] = 2, + ACTIONS(3319), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54341] = 2, - ACTIONS(1764), 1, - anon_sym_RPAREN, + [52942] = 2, + ACTIONS(3321), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54349] = 2, - ACTIONS(1788), 1, - anon_sym_SEMI, + [52950] = 2, + ACTIONS(3323), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54357] = 2, - ACTIONS(1738), 1, - anon_sym_SEMI, + [52958] = 2, + ACTIONS(3223), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54365] = 3, + [52966] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3392), 1, + ACTIONS(3325), 1, anon_sym_SLASH2, - [54375] = 2, - ACTIONS(3394), 1, - anon_sym_target, + [52976] = 2, + ACTIONS(3327), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54383] = 2, - ACTIONS(1794), 1, - anon_sym_RPAREN, + [52984] = 2, + ACTIONS(1802), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54391] = 2, - ACTIONS(1796), 1, + [52992] = 2, + ACTIONS(1784), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54399] = 2, - ACTIONS(1750), 1, - anon_sym_RPAREN, + [53000] = 2, + ACTIONS(1838), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54407] = 2, - ACTIONS(3396), 1, - anon_sym_EQ_GT, + [53008] = 2, + ACTIONS(3329), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54415] = 2, - ACTIONS(3352), 1, - anon_sym_EQ_GT, + [53016] = 2, + ACTIONS(3114), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54423] = 2, - ACTIONS(3398), 1, - anon_sym_RPAREN, + [53024] = 2, + ACTIONS(1804), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54431] = 2, - ACTIONS(1766), 1, + [53032] = 2, + ACTIONS(1812), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54439] = 2, - ACTIONS(2358), 1, + [53040] = 2, + ACTIONS(1832), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53048] = 2, + ACTIONS(3331), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54447] = 2, - ACTIONS(3400), 1, - anon_sym_RPAREN, + [53056] = 2, + ACTIONS(1806), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54455] = 2, - ACTIONS(3402), 1, - sym_identifier, + [53064] = 2, + ACTIONS(1786), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54463] = 2, - ACTIONS(3404), 1, + [53072] = 2, + ACTIONS(3333), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54471] = 2, - ACTIONS(1800), 1, + [53080] = 2, + ACTIONS(1822), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54479] = 2, - ACTIONS(1804), 1, - anon_sym_RBRACE, + [53088] = 2, + ACTIONS(3335), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54487] = 2, - ACTIONS(3406), 1, - sym_identifier, + [53096] = 2, + ACTIONS(3337), 1, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54495] = 2, - ACTIONS(1756), 1, - anon_sym_RBRACK, + [53104] = 2, + ACTIONS(1810), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54503] = 2, - ACTIONS(1810), 1, - anon_sym_RPAREN, + [53112] = 2, + ACTIONS(1794), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54511] = 2, - ACTIONS(1814), 1, - anon_sym_RPAREN, + [53120] = 2, + ACTIONS(3339), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54519] = 2, - ACTIONS(1744), 1, - anon_sym_RBRACK, + [53128] = 2, + ACTIONS(3341), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54527] = 2, - ACTIONS(2753), 1, - anon_sym_EQ, + [53136] = 2, + ACTIONS(3100), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54535] = 2, - ACTIONS(1778), 1, - anon_sym_RBRACE, + [53144] = 2, + ACTIONS(1758), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54543] = 2, - ACTIONS(3174), 1, + [53152] = 2, + ACTIONS(3088), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54551] = 2, - ACTIONS(3408), 1, + [53160] = 2, + ACTIONS(3343), 1, anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54559] = 2, - ACTIONS(3410), 1, - sym_identifier, + [53168] = 2, + ACTIONS(3059), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54567] = 2, - ACTIONS(3412), 1, - anon_sym_from, + [53176] = 2, + ACTIONS(1792), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54575] = 2, - ACTIONS(3414), 1, - anon_sym_from, + [53184] = 2, + ACTIONS(3345), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54583] = 2, - ACTIONS(3416), 1, - anon_sym_EQ_GT, + [53192] = 2, + ACTIONS(1814), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54591] = 2, - ACTIONS(3418), 1, + [53200] = 2, + ACTIONS(3347), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54599] = 2, - ACTIONS(3156), 1, - anon_sym_GT, + [53208] = 2, + ACTIONS(1816), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54607] = 2, - ACTIONS(3420), 1, - anon_sym_from, + [53216] = 2, + ACTIONS(1848), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54615] = 2, - ACTIONS(3422), 1, - anon_sym_COLON, + [53224] = 2, + ACTIONS(3349), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54623] = 2, - ACTIONS(1816), 1, - anon_sym_SEMI, + [53232] = 2, + ACTIONS(3351), 1, + anon_sym_target, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53240] = 2, + ACTIONS(1778), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53248] = 2, + ACTIONS(3353), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54631] = 2, - ACTIONS(3255), 1, + [53256] = 2, + ACTIONS(3194), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54639] = 2, - ACTIONS(3424), 1, - sym_identifier, + [53264] = 2, + ACTIONS(1780), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54647] = 2, - ACTIONS(3426), 1, - anon_sym_from, + [53272] = 2, + ACTIONS(3355), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54655] = 2, - ACTIONS(1736), 1, - anon_sym_RBRACK, + [53280] = 2, + ACTIONS(3357), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54663] = 2, - ACTIONS(3300), 1, - anon_sym_from, + [53288] = 2, + ACTIONS(1782), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54671] = 3, + [53296] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3428), 1, + ACTIONS(3359), 1, anon_sym_SLASH2, - [54681] = 2, - ACTIONS(1740), 1, - anon_sym_RPAREN, + [53306] = 2, + ACTIONS(1830), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54689] = 2, - ACTIONS(3394), 1, - anon_sym_meta, + [53314] = 2, + ACTIONS(3361), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54697] = 2, - ACTIONS(3430), 1, - anon_sym_as, + [53322] = 2, + ACTIONS(3363), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54705] = 2, - ACTIONS(1782), 1, - anon_sym_RBRACE, + [53330] = 2, + ACTIONS(3365), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54713] = 2, - ACTIONS(3362), 1, - anon_sym_meta, + [53338] = 2, + ACTIONS(3367), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54721] = 2, - ACTIONS(1784), 1, - anon_sym_RBRACK, + [53346] = 2, + ACTIONS(3152), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54729] = 2, - ACTIONS(3236), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_html_comment, + [53354] = 3, + ACTIONS(3), 1, sym_comment, - [54737] = 2, - ACTIONS(3432), 1, - anon_sym_EQ, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [54745] = 3, + ACTIONS(3369), 1, + sym_regex_pattern, + [53364] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3434), 1, + ACTIONS(3371), 1, anon_sym_SLASH2, - [54755] = 2, - ACTIONS(3436), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, + [53374] = 3, + ACTIONS(3), 1, sym_comment, - [54763] = 2, - ACTIONS(3438), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [54771] = 2, - ACTIONS(1752), 1, - anon_sym_RPAREN, + ACTIONS(3373), 1, + sym_regex_pattern, + [53384] = 2, + ACTIONS(3375), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54779] = 2, - ACTIONS(3440), 1, - anon_sym_EQ_GT, + [53392] = 2, + ACTIONS(1820), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54787] = 2, - ACTIONS(3442), 1, - anon_sym_from, + [53400] = 2, + ACTIONS(1818), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54795] = 2, - ACTIONS(3444), 1, - anon_sym_function, + [53408] = 2, + ACTIONS(3351), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54803] = 2, - ACTIONS(3446), 1, - sym_identifier, + [53416] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3377), 1, + sym_regex_pattern, + [53426] = 2, + ACTIONS(3379), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54811] = 2, - ACTIONS(1417), 1, - anon_sym_in, + [53434] = 2, + ACTIONS(3381), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54819] = 2, - ACTIONS(3448), 1, - anon_sym_EQ_GT, + [53442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3383), 1, + sym_regex_pattern, + [53452] = 2, + ACTIONS(3385), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54827] = 2, - ACTIONS(1770), 1, - anon_sym_COLON, + [53460] = 2, + ACTIONS(1842), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54835] = 2, - ACTIONS(3450), 1, - anon_sym_EQ, + [53468] = 2, + ACTIONS(1683), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54843] = 2, - ACTIONS(3452), 1, - ts_builtin_sym_end, + [53476] = 2, + ACTIONS(1798), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54851] = 2, - ACTIONS(1909), 1, + [53484] = 2, + ACTIONS(1880), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54859] = 2, - ACTIONS(1772), 1, + [53492] = 2, + ACTIONS(3387), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54867] = 2, - ACTIONS(3454), 1, + [53500] = 2, + ACTIONS(3389), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54875] = 2, - ACTIONS(3456), 1, + [53508] = 2, + ACTIONS(3391), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54883] = 2, - ACTIONS(3458), 1, + [53516] = 2, + ACTIONS(3393), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54891] = 2, - ACTIONS(3460), 1, + [53524] = 2, + ACTIONS(3395), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54899] = 2, - ACTIONS(1660), 1, - anon_sym_in, + [53532] = 2, + ACTIONS(3397), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54907] = 3, - ACTIONS(3), 1, + [53540] = 2, + ACTIONS(1641), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [53548] = 2, + ACTIONS(3399), 1, + anon_sym_EQ, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3462), 1, - sym_regex_pattern, - [54917] = 2, - ACTIONS(1774), 1, - anon_sym_RPAREN, + sym_comment, + [53556] = 2, + ACTIONS(3401), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54925] = 2, - ACTIONS(1780), 1, + [53564] = 2, + ACTIONS(1800), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [53572] = 2, + ACTIONS(2911), 1, + anon_sym_EQ, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3464), 1, - anon_sym_SLASH2, - [54943] = 3, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3466), 1, - sym_regex_pattern, - [54953] = 2, - ACTIONS(1786), 1, - anon_sym_RPAREN, + [53580] = 2, + ACTIONS(3403), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54961] = 2, - ACTIONS(1792), 1, - anon_sym_SEMI, + [53588] = 2, + ACTIONS(3405), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54969] = 2, - ACTIONS(3468), 1, - anon_sym_EQ_GT, + [53596] = 2, + ACTIONS(1788), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54977] = 2, - ACTIONS(3470), 1, - anon_sym_EQ_GT, + [53604] = 2, + ACTIONS(3407), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54985] = 2, - ACTIONS(3077), 1, - anon_sym_EQ, + [53612] = 2, + ACTIONS(1854), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54993] = 2, - ACTIONS(3472), 1, + [53620] = 2, + ACTIONS(3409), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55001] = 2, - ACTIONS(1848), 1, - anon_sym_in, + [53628] = 2, + ACTIONS(3341), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55009] = 2, - ACTIONS(3474), 1, - anon_sym_RPAREN, + [53636] = 2, + ACTIONS(3411), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55017] = 2, - ACTIONS(1746), 1, + [53644] = 2, + ACTIONS(1852), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55025] = 2, - ACTIONS(3476), 1, + [53652] = 2, + ACTIONS(3413), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, + [53660] = 2, + ACTIONS(1796), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(331)] = 0, - [SMALL_STATE(332)] = 71, - [SMALL_STATE(333)] = 142, - [SMALL_STATE(334)] = 215, - [SMALL_STATE(335)] = 304, - [SMALL_STATE(336)] = 375, - [SMALL_STATE(337)] = 448, - [SMALL_STATE(338)] = 521, - [SMALL_STATE(339)] = 592, - [SMALL_STATE(340)] = 665, - [SMALL_STATE(341)] = 738, - [SMALL_STATE(342)] = 811, - [SMALL_STATE(343)] = 884, - [SMALL_STATE(344)] = 957, - [SMALL_STATE(345)] = 1030, - [SMALL_STATE(346)] = 1103, - [SMALL_STATE(347)] = 1174, - [SMALL_STATE(348)] = 1249, - [SMALL_STATE(349)] = 1320, - [SMALL_STATE(350)] = 1411, - [SMALL_STATE(351)] = 1482, - [SMALL_STATE(352)] = 1555, - [SMALL_STATE(353)] = 1625, - [SMALL_STATE(354)] = 1695, - [SMALL_STATE(355)] = 1765, - [SMALL_STATE(356)] = 1835, - [SMALL_STATE(357)] = 1921, - [SMALL_STATE(358)] = 1991, - [SMALL_STATE(359)] = 2061, - [SMALL_STATE(360)] = 2131, - [SMALL_STATE(361)] = 2201, - [SMALL_STATE(362)] = 2271, - [SMALL_STATE(363)] = 2341, - [SMALL_STATE(364)] = 2411, - [SMALL_STATE(365)] = 2481, - [SMALL_STATE(366)] = 2551, - [SMALL_STATE(367)] = 2621, - [SMALL_STATE(368)] = 2691, - [SMALL_STATE(369)] = 2761, - [SMALL_STATE(370)] = 2831, - [SMALL_STATE(371)] = 2901, - [SMALL_STATE(372)] = 2971, - [SMALL_STATE(373)] = 3041, - [SMALL_STATE(374)] = 3111, - [SMALL_STATE(375)] = 3181, - [SMALL_STATE(376)] = 3251, - [SMALL_STATE(377)] = 3337, - [SMALL_STATE(378)] = 3407, - [SMALL_STATE(379)] = 3497, - [SMALL_STATE(380)] = 3567, - [SMALL_STATE(381)] = 3637, - [SMALL_STATE(382)] = 3707, - [SMALL_STATE(383)] = 3777, - [SMALL_STATE(384)] = 3847, - [SMALL_STATE(385)] = 3917, - [SMALL_STATE(386)] = 3987, - [SMALL_STATE(387)] = 4057, - [SMALL_STATE(388)] = 4127, - [SMALL_STATE(389)] = 4197, - [SMALL_STATE(390)] = 4267, - [SMALL_STATE(391)] = 4337, - [SMALL_STATE(392)] = 4407, - [SMALL_STATE(393)] = 4477, - [SMALL_STATE(394)] = 4547, - [SMALL_STATE(395)] = 4617, - [SMALL_STATE(396)] = 4687, - [SMALL_STATE(397)] = 4757, - [SMALL_STATE(398)] = 4843, - [SMALL_STATE(399)] = 4913, - [SMALL_STATE(400)] = 4983, - [SMALL_STATE(401)] = 5053, - [SMALL_STATE(402)] = 5123, - [SMALL_STATE(403)] = 5193, - [SMALL_STATE(404)] = 5263, - [SMALL_STATE(405)] = 5333, - [SMALL_STATE(406)] = 5403, - [SMALL_STATE(407)] = 5473, - [SMALL_STATE(408)] = 5543, - [SMALL_STATE(409)] = 5613, - [SMALL_STATE(410)] = 5683, - [SMALL_STATE(411)] = 5753, - [SMALL_STATE(412)] = 5823, - [SMALL_STATE(413)] = 5893, - [SMALL_STATE(414)] = 5963, - [SMALL_STATE(415)] = 6033, - [SMALL_STATE(416)] = 6103, - [SMALL_STATE(417)] = 6173, - [SMALL_STATE(418)] = 6243, - [SMALL_STATE(419)] = 6313, - [SMALL_STATE(420)] = 6383, - [SMALL_STATE(421)] = 6453, - [SMALL_STATE(422)] = 6523, - [SMALL_STATE(423)] = 6610, - [SMALL_STATE(424)] = 6695, - [SMALL_STATE(425)] = 6780, - [SMALL_STATE(426)] = 6869, - [SMALL_STATE(427)] = 6956, - [SMALL_STATE(428)] = 7044, - [SMALL_STATE(429)] = 7127, - [SMALL_STATE(430)] = 7193, - [SMALL_STATE(431)] = 7259, - [SMALL_STATE(432)] = 7325, - [SMALL_STATE(433)] = 7391, - [SMALL_STATE(434)] = 7457, - [SMALL_STATE(435)] = 7539, - [SMALL_STATE(436)] = 7609, - [SMALL_STATE(437)] = 7675, - [SMALL_STATE(438)] = 7757, - [SMALL_STATE(439)] = 7839, - [SMALL_STATE(440)] = 7905, - [SMALL_STATE(441)] = 7988, - [SMALL_STATE(442)] = 8059, - [SMALL_STATE(443)] = 8130, - [SMALL_STATE(444)] = 8195, - [SMALL_STATE(445)] = 8260, - [SMALL_STATE(446)] = 8325, - [SMALL_STATE(447)] = 8390, - [SMALL_STATE(448)] = 8455, - [SMALL_STATE(449)] = 8520, - [SMALL_STATE(450)] = 8591, - [SMALL_STATE(451)] = 8656, - [SMALL_STATE(452)] = 8721, - [SMALL_STATE(453)] = 8786, - [SMALL_STATE(454)] = 8857, - [SMALL_STATE(455)] = 8925, - [SMALL_STATE(456)] = 8994, - [SMALL_STATE(457)] = 9063, - [SMALL_STATE(458)] = 9126, - [SMALL_STATE(459)] = 9189, - [SMALL_STATE(460)] = 9252, - [SMALL_STATE(461)] = 9315, - [SMALL_STATE(462)] = 9378, - [SMALL_STATE(463)] = 9447, - [SMALL_STATE(464)] = 9518, - [SMALL_STATE(465)] = 9589, - [SMALL_STATE(466)] = 9652, - [SMALL_STATE(467)] = 9723, - [SMALL_STATE(468)] = 9794, - [SMALL_STATE(469)] = 9861, - [SMALL_STATE(470)] = 9932, - [SMALL_STATE(471)] = 10001, - [SMALL_STATE(472)] = 10072, - [SMALL_STATE(473)] = 10143, - [SMALL_STATE(474)] = 10212, - [SMALL_STATE(475)] = 10283, - [SMALL_STATE(476)] = 10352, - [SMALL_STATE(477)] = 10423, - [SMALL_STATE(478)] = 10494, - [SMALL_STATE(479)] = 10557, - [SMALL_STATE(480)] = 10626, - [SMALL_STATE(481)] = 10695, - [SMALL_STATE(482)] = 10763, - [SMALL_STATE(483)] = 10833, - [SMALL_STATE(484)] = 10901, - [SMALL_STATE(485)] = 10967, - [SMALL_STATE(486)] = 11037, - [SMALL_STATE(487)] = 11109, - [SMALL_STATE(488)] = 11177, - [SMALL_STATE(489)] = 11249, - [SMALL_STATE(490)] = 11315, - [SMALL_STATE(491)] = 11382, - [SMALL_STATE(492)] = 11453, - [SMALL_STATE(493)] = 11520, - [SMALL_STATE(494)] = 11587, - [SMALL_STATE(495)] = 11656, - [SMALL_STATE(496)] = 11727, - [SMALL_STATE(497)] = 11795, - [SMALL_STATE(498)] = 11865, - [SMALL_STATE(499)] = 11931, - [SMALL_STATE(500)] = 11997, - [SMALL_STATE(501)] = 12063, - [SMALL_STATE(502)] = 12133, - [SMALL_STATE(503)] = 12199, - [SMALL_STATE(504)] = 12266, - [SMALL_STATE(505)] = 12329, - [SMALL_STATE(506)] = 12395, - [SMALL_STATE(507)] = 12459, - [SMALL_STATE(508)] = 12525, - [SMALL_STATE(509)] = 12581, - [SMALL_STATE(510)] = 12636, - [SMALL_STATE(511)] = 12697, - [SMALL_STATE(512)] = 12750, - [SMALL_STATE(513)] = 12801, - [SMALL_STATE(514)] = 12854, - [SMALL_STATE(515)] = 12907, - [SMALL_STATE(516)] = 12957, - [SMALL_STATE(517)] = 13007, - [SMALL_STATE(518)] = 13059, - [SMALL_STATE(519)] = 13109, - [SMALL_STATE(520)] = 13159, - [SMALL_STATE(521)] = 13209, - [SMALL_STATE(522)] = 13297, - [SMALL_STATE(523)] = 13347, - [SMALL_STATE(524)] = 13417, - [SMALL_STATE(525)] = 13467, - [SMALL_STATE(526)] = 13517, - [SMALL_STATE(527)] = 13567, - [SMALL_STATE(528)] = 13633, - [SMALL_STATE(529)] = 13683, - [SMALL_STATE(530)] = 13779, - [SMALL_STATE(531)] = 13829, - [SMALL_STATE(532)] = 13909, - [SMALL_STATE(533)] = 13959, - [SMALL_STATE(534)] = 14009, - [SMALL_STATE(535)] = 14099, - [SMALL_STATE(536)] = 14149, - [SMALL_STATE(537)] = 14245, - [SMALL_STATE(538)] = 14295, - [SMALL_STATE(539)] = 14391, - [SMALL_STATE(540)] = 14463, - [SMALL_STATE(541)] = 14513, - [SMALL_STATE(542)] = 14567, - [SMALL_STATE(543)] = 14659, - [SMALL_STATE(544)] = 14755, - [SMALL_STATE(545)] = 14805, - [SMALL_STATE(546)] = 14855, - [SMALL_STATE(547)] = 14951, - [SMALL_STATE(548)] = 15001, - [SMALL_STATE(549)] = 15051, - [SMALL_STATE(550)] = 15101, - [SMALL_STATE(551)] = 15151, - [SMALL_STATE(552)] = 15205, - [SMALL_STATE(553)] = 15289, - [SMALL_STATE(554)] = 15339, - [SMALL_STATE(555)] = 15389, - [SMALL_STATE(556)] = 15485, - [SMALL_STATE(557)] = 15535, - [SMALL_STATE(558)] = 15585, - [SMALL_STATE(559)] = 15635, - [SMALL_STATE(560)] = 15685, - [SMALL_STATE(561)] = 15735, - [SMALL_STATE(562)] = 15785, - [SMALL_STATE(563)] = 15881, - [SMALL_STATE(564)] = 15977, - [SMALL_STATE(565)] = 16073, - [SMALL_STATE(566)] = 16123, - [SMALL_STATE(567)] = 16173, - [SMALL_STATE(568)] = 16269, - [SMALL_STATE(569)] = 16319, - [SMALL_STATE(570)] = 16369, - [SMALL_STATE(571)] = 16423, - [SMALL_STATE(572)] = 16519, - [SMALL_STATE(573)] = 16569, - [SMALL_STATE(574)] = 16619, - [SMALL_STATE(575)] = 16669, - [SMALL_STATE(576)] = 16719, - [SMALL_STATE(577)] = 16769, - [SMALL_STATE(578)] = 16819, - [SMALL_STATE(579)] = 16869, - [SMALL_STATE(580)] = 16919, - [SMALL_STATE(581)] = 16969, - [SMALL_STATE(582)] = 17025, - [SMALL_STATE(583)] = 17075, - [SMALL_STATE(584)] = 17171, - [SMALL_STATE(585)] = 17221, - [SMALL_STATE(586)] = 17271, - [SMALL_STATE(587)] = 17359, - [SMALL_STATE(588)] = 17409, - [SMALL_STATE(589)] = 17505, - [SMALL_STATE(590)] = 17555, - [SMALL_STATE(591)] = 17605, - [SMALL_STATE(592)] = 17655, - [SMALL_STATE(593)] = 17705, - [SMALL_STATE(594)] = 17755, - [SMALL_STATE(595)] = 17805, - [SMALL_STATE(596)] = 17855, - [SMALL_STATE(597)] = 17931, - [SMALL_STATE(598)] = 17981, - [SMALL_STATE(599)] = 18031, - [SMALL_STATE(600)] = 18117, - [SMALL_STATE(601)] = 18167, - [SMALL_STATE(602)] = 18233, - [SMALL_STATE(603)] = 18283, - [SMALL_STATE(604)] = 18333, - [SMALL_STATE(605)] = 18383, - [SMALL_STATE(606)] = 18433, - [SMALL_STATE(607)] = 18482, - [SMALL_STATE(608)] = 18531, - [SMALL_STATE(609)] = 18594, - [SMALL_STATE(610)] = 18645, - [SMALL_STATE(611)] = 18696, - [SMALL_STATE(612)] = 18747, - [SMALL_STATE(613)] = 18796, - [SMALL_STATE(614)] = 18857, - [SMALL_STATE(615)] = 18920, - [SMALL_STATE(616)] = 18969, - [SMALL_STATE(617)] = 19020, - [SMALL_STATE(618)] = 19071, - [SMALL_STATE(619)] = 19122, - [SMALL_STATE(620)] = 19216, - [SMALL_STATE(621)] = 19310, - [SMALL_STATE(622)] = 19404, - [SMALL_STATE(623)] = 19498, - [SMALL_STATE(624)] = 19592, - [SMALL_STATE(625)] = 19686, - [SMALL_STATE(626)] = 19760, - [SMALL_STATE(627)] = 19854, - [SMALL_STATE(628)] = 19928, - [SMALL_STATE(629)] = 20022, - [SMALL_STATE(630)] = 20106, - [SMALL_STATE(631)] = 20170, - [SMALL_STATE(632)] = 20264, - [SMALL_STATE(633)] = 20312, - [SMALL_STATE(634)] = 20406, - [SMALL_STATE(635)] = 20492, - [SMALL_STATE(636)] = 20586, - [SMALL_STATE(637)] = 20650, - [SMALL_STATE(638)] = 20748, - [SMALL_STATE(639)] = 20836, - [SMALL_STATE(640)] = 20930, - [SMALL_STATE(641)] = 21000, - [SMALL_STATE(642)] = 21094, - [SMALL_STATE(643)] = 21176, - [SMALL_STATE(644)] = 21274, - [SMALL_STATE(645)] = 21364, - [SMALL_STATE(646)] = 21414, - [SMALL_STATE(647)] = 21498, - [SMALL_STATE(648)] = 21592, - [SMALL_STATE(649)] = 21642, - [SMALL_STATE(650)] = 21728, - [SMALL_STATE(651)] = 21782, - [SMALL_STATE(652)] = 21860, - [SMALL_STATE(653)] = 21928, - [SMALL_STATE(654)] = 21992, - [SMALL_STATE(655)] = 22086, - [SMALL_STATE(656)] = 22164, - [SMALL_STATE(657)] = 22228, - [SMALL_STATE(658)] = 22322, - [SMALL_STATE(659)] = 22416, - [SMALL_STATE(660)] = 22506, - [SMALL_STATE(661)] = 22594, - [SMALL_STATE(662)] = 22680, - [SMALL_STATE(663)] = 22774, - [SMALL_STATE(664)] = 22868, - [SMALL_STATE(665)] = 22964, - [SMALL_STATE(666)] = 23062, - [SMALL_STATE(667)] = 23130, - [SMALL_STATE(668)] = 23224, - [SMALL_STATE(669)] = 23318, - [SMALL_STATE(670)] = 23370, - [SMALL_STATE(671)] = 23456, - [SMALL_STATE(672)] = 23508, - [SMALL_STATE(673)] = 23558, - [SMALL_STATE(674)] = 23652, - [SMALL_STATE(675)] = 23746, - [SMALL_STATE(676)] = 23844, - [SMALL_STATE(677)] = 23942, - [SMALL_STATE(678)] = 24000, - [SMALL_STATE(679)] = 24048, - [SMALL_STATE(680)] = 24142, - [SMALL_STATE(681)] = 24224, - [SMALL_STATE(682)] = 24294, - [SMALL_STATE(683)] = 24392, - [SMALL_STATE(684)] = 24442, - [SMALL_STATE(685)] = 24536, - [SMALL_STATE(686)] = 24630, - [SMALL_STATE(687)] = 24677, - [SMALL_STATE(688)] = 24724, - [SMALL_STATE(689)] = 24821, - [SMALL_STATE(690)] = 24868, - [SMALL_STATE(691)] = 24915, - [SMALL_STATE(692)] = 24962, - [SMALL_STATE(693)] = 25009, - [SMALL_STATE(694)] = 25106, - [SMALL_STATE(695)] = 25203, - [SMALL_STATE(696)] = 25300, - [SMALL_STATE(697)] = 25347, - [SMALL_STATE(698)] = 25444, - [SMALL_STATE(699)] = 25541, - [SMALL_STATE(700)] = 25638, - [SMALL_STATE(701)] = 25735, - [SMALL_STATE(702)] = 25832, - [SMALL_STATE(703)] = 25883, - [SMALL_STATE(704)] = 25980, - [SMALL_STATE(705)] = 26031, - [SMALL_STATE(706)] = 26128, - [SMALL_STATE(707)] = 26179, - [SMALL_STATE(708)] = 26226, - [SMALL_STATE(709)] = 26273, - [SMALL_STATE(710)] = 26322, - [SMALL_STATE(711)] = 26369, - [SMALL_STATE(712)] = 26466, - [SMALL_STATE(713)] = 26563, - [SMALL_STATE(714)] = 26610, - [SMALL_STATE(715)] = 26707, - [SMALL_STATE(716)] = 26804, - [SMALL_STATE(717)] = 26855, - [SMALL_STATE(718)] = 26902, - [SMALL_STATE(719)] = 26949, - [SMALL_STATE(720)] = 26996, - [SMALL_STATE(721)] = 27043, - [SMALL_STATE(722)] = 27140, - [SMALL_STATE(723)] = 27237, - [SMALL_STATE(724)] = 27288, - [SMALL_STATE(725)] = 27385, - [SMALL_STATE(726)] = 27436, - [SMALL_STATE(727)] = 27533, - [SMALL_STATE(728)] = 27630, - [SMALL_STATE(729)] = 27727, - [SMALL_STATE(730)] = 27824, - [SMALL_STATE(731)] = 27921, - [SMALL_STATE(732)] = 28018, - [SMALL_STATE(733)] = 28065, - [SMALL_STATE(734)] = 28162, - [SMALL_STATE(735)] = 28259, - [SMALL_STATE(736)] = 28352, - [SMALL_STATE(737)] = 28399, - [SMALL_STATE(738)] = 28446, - [SMALL_STATE(739)] = 28543, - [SMALL_STATE(740)] = 28590, - [SMALL_STATE(741)] = 28637, - [SMALL_STATE(742)] = 28684, - [SMALL_STATE(743)] = 28731, - [SMALL_STATE(744)] = 28778, - [SMALL_STATE(745)] = 28825, - [SMALL_STATE(746)] = 28872, - [SMALL_STATE(747)] = 28969, - [SMALL_STATE(748)] = 29016, - [SMALL_STATE(749)] = 29113, - [SMALL_STATE(750)] = 29162, - [SMALL_STATE(751)] = 29209, - [SMALL_STATE(752)] = 29256, - [SMALL_STATE(753)] = 29307, - [SMALL_STATE(754)] = 29354, - [SMALL_STATE(755)] = 29401, - [SMALL_STATE(756)] = 29448, - [SMALL_STATE(757)] = 29545, - [SMALL_STATE(758)] = 29596, - [SMALL_STATE(759)] = 29643, - [SMALL_STATE(760)] = 29740, - [SMALL_STATE(761)] = 29791, - [SMALL_STATE(762)] = 29838, - [SMALL_STATE(763)] = 29885, - [SMALL_STATE(764)] = 29932, - [SMALL_STATE(765)] = 29983, - [SMALL_STATE(766)] = 30034, - [SMALL_STATE(767)] = 30081, - [SMALL_STATE(768)] = 30178, - [SMALL_STATE(769)] = 30275, - [SMALL_STATE(770)] = 30324, - [SMALL_STATE(771)] = 30371, - [SMALL_STATE(772)] = 30418, - [SMALL_STATE(773)] = 30515, - [SMALL_STATE(774)] = 30562, - [SMALL_STATE(775)] = 30615, - [SMALL_STATE(776)] = 30662, - [SMALL_STATE(777)] = 30755, - [SMALL_STATE(778)] = 30802, - [SMALL_STATE(779)] = 30895, - [SMALL_STATE(780)] = 30942, - [SMALL_STATE(781)] = 30991, - [SMALL_STATE(782)] = 31038, - [SMALL_STATE(783)] = 31085, - [SMALL_STATE(784)] = 31132, - [SMALL_STATE(785)] = 31183, - [SMALL_STATE(786)] = 31230, - [SMALL_STATE(787)] = 31327, - [SMALL_STATE(788)] = 31374, - [SMALL_STATE(789)] = 31471, - [SMALL_STATE(790)] = 31518, - [SMALL_STATE(791)] = 31569, - [SMALL_STATE(792)] = 31620, - [SMALL_STATE(793)] = 31667, - [SMALL_STATE(794)] = 31764, - [SMALL_STATE(795)] = 31861, - [SMALL_STATE(796)] = 31908, - [SMALL_STATE(797)] = 31955, - [SMALL_STATE(798)] = 32047, - [SMALL_STATE(799)] = 32139, - [SMALL_STATE(800)] = 32231, - [SMALL_STATE(801)] = 32303, - [SMALL_STATE(802)] = 32365, - [SMALL_STATE(803)] = 32449, - [SMALL_STATE(804)] = 32535, - [SMALL_STATE(805)] = 32603, - [SMALL_STATE(806)] = 32683, - [SMALL_STATE(807)] = 32765, - [SMALL_STATE(808)] = 32849, - [SMALL_STATE(809)] = 32941, - [SMALL_STATE(810)] = 33007, - [SMALL_STATE(811)] = 33069, - [SMALL_STATE(812)] = 33145, - [SMALL_STATE(813)] = 33233, - [SMALL_STATE(814)] = 33325, - [SMALL_STATE(815)] = 33417, - [SMALL_STATE(816)] = 33509, - [SMALL_STATE(817)] = 33601, - [SMALL_STATE(818)] = 33693, - [SMALL_STATE(819)] = 33785, - [SMALL_STATE(820)] = 33877, - [SMALL_STATE(821)] = 33969, - [SMALL_STATE(822)] = 34061, - [SMALL_STATE(823)] = 34153, - [SMALL_STATE(824)] = 34205, - [SMALL_STATE(825)] = 34255, - [SMALL_STATE(826)] = 34307, - [SMALL_STATE(827)] = 34359, - [SMALL_STATE(828)] = 34409, - [SMALL_STATE(829)] = 34461, - [SMALL_STATE(830)] = 34553, - [SMALL_STATE(831)] = 34645, - [SMALL_STATE(832)] = 34695, - [SMALL_STATE(833)] = 34789, - [SMALL_STATE(834)] = 34880, - [SMALL_STATE(835)] = 34971, - [SMALL_STATE(836)] = 35022, - [SMALL_STATE(837)] = 35113, - [SMALL_STATE(838)] = 35164, - [SMALL_STATE(839)] = 35255, - [SMALL_STATE(840)] = 35346, - [SMALL_STATE(841)] = 35437, - [SMALL_STATE(842)] = 35528, - [SMALL_STATE(843)] = 35619, - [SMALL_STATE(844)] = 35710, - [SMALL_STATE(845)] = 35801, - [SMALL_STATE(846)] = 35868, - [SMALL_STATE(847)] = 35947, - [SMALL_STATE(848)] = 36028, - [SMALL_STATE(849)] = 36119, - [SMALL_STATE(850)] = 36210, - [SMALL_STATE(851)] = 36301, - [SMALL_STATE(852)] = 36392, - [SMALL_STATE(853)] = 36475, - [SMALL_STATE(854)] = 36566, - [SMALL_STATE(855)] = 36631, - [SMALL_STATE(856)] = 36722, - [SMALL_STATE(857)] = 36815, - [SMALL_STATE(858)] = 36906, - [SMALL_STATE(859)] = 36991, - [SMALL_STATE(860)] = 37082, - [SMALL_STATE(861)] = 37173, - [SMALL_STATE(862)] = 37264, - [SMALL_STATE(863)] = 37347, - [SMALL_STATE(864)] = 37408, - [SMALL_STATE(865)] = 37459, - [SMALL_STATE(866)] = 37520, - [SMALL_STATE(867)] = 37571, - [SMALL_STATE(868)] = 37658, - [SMALL_STATE(869)] = 37733, - [SMALL_STATE(870)] = 37804, - [SMALL_STATE(871)] = 37850, - [SMALL_STATE(872)] = 37936, - [SMALL_STATE(873)] = 38024, - [SMALL_STATE(874)] = 38110, - [SMALL_STATE(875)] = 38196, - [SMALL_STATE(876)] = 38284, - [SMALL_STATE(877)] = 38334, - [SMALL_STATE(878)] = 38420, - [SMALL_STATE(879)] = 38506, - [SMALL_STATE(880)] = 38592, - [SMALL_STATE(881)] = 38638, - [SMALL_STATE(882)] = 38716, - [SMALL_STATE(883)] = 38793, - [SMALL_STATE(884)] = 38870, - [SMALL_STATE(885)] = 38947, - [SMALL_STATE(886)] = 39024, - [SMALL_STATE(887)] = 39101, - [SMALL_STATE(888)] = 39178, - [SMALL_STATE(889)] = 39255, - [SMALL_STATE(890)] = 39332, - [SMALL_STATE(891)] = 39409, - [SMALL_STATE(892)] = 39479, - [SMALL_STATE(893)] = 39536, - [SMALL_STATE(894)] = 39601, - [SMALL_STATE(895)] = 39658, - [SMALL_STATE(896)] = 39710, - [SMALL_STATE(897)] = 39766, - [SMALL_STATE(898)] = 39824, - [SMALL_STATE(899)] = 39882, - [SMALL_STATE(900)] = 39938, - [SMALL_STATE(901)] = 39994, - [SMALL_STATE(902)] = 40052, - [SMALL_STATE(903)] = 40110, - [SMALL_STATE(904)] = 40166, - [SMALL_STATE(905)] = 40222, - [SMALL_STATE(906)] = 40280, - [SMALL_STATE(907)] = 40336, - [SMALL_STATE(908)] = 40394, - [SMALL_STATE(909)] = 40445, - [SMALL_STATE(910)] = 40496, - [SMALL_STATE(911)] = 40549, - [SMALL_STATE(912)] = 40600, - [SMALL_STATE(913)] = 40651, - [SMALL_STATE(914)] = 40702, - [SMALL_STATE(915)] = 40753, - [SMALL_STATE(916)] = 40801, - [SMALL_STATE(917)] = 40851, - [SMALL_STATE(918)] = 40903, - [SMALL_STATE(919)] = 40953, - [SMALL_STATE(920)] = 41013, - [SMALL_STATE(921)] = 41068, - [SMALL_STATE(922)] = 41113, - [SMALL_STATE(923)] = 41168, - [SMALL_STATE(924)] = 41213, - [SMALL_STATE(925)] = 41258, - [SMALL_STATE(926)] = 41301, - [SMALL_STATE(927)] = 41348, - [SMALL_STATE(928)] = 41391, - [SMALL_STATE(929)] = 41434, - [SMALL_STATE(930)] = 41481, - [SMALL_STATE(931)] = 41526, - [SMALL_STATE(932)] = 41556, - [SMALL_STATE(933)] = 41584, - [SMALL_STATE(934)] = 41612, - [SMALL_STATE(935)] = 41640, - [SMALL_STATE(936)] = 41674, - [SMALL_STATE(937)] = 41702, - [SMALL_STATE(938)] = 41732, - [SMALL_STATE(939)] = 41770, - [SMALL_STATE(940)] = 41798, - [SMALL_STATE(941)] = 41826, - [SMALL_STATE(942)] = 41854, - [SMALL_STATE(943)] = 41882, - [SMALL_STATE(944)] = 41910, - [SMALL_STATE(945)] = 41938, - [SMALL_STATE(946)] = 41978, - [SMALL_STATE(947)] = 42006, - [SMALL_STATE(948)] = 42034, - [SMALL_STATE(949)] = 42062, - [SMALL_STATE(950)] = 42090, - [SMALL_STATE(951)] = 42128, - [SMALL_STATE(952)] = 42156, - [SMALL_STATE(953)] = 42184, - [SMALL_STATE(954)] = 42212, - [SMALL_STATE(955)] = 42250, - [SMALL_STATE(956)] = 42278, - [SMALL_STATE(957)] = 42306, - [SMALL_STATE(958)] = 42334, - [SMALL_STATE(959)] = 42372, - [SMALL_STATE(960)] = 42400, - [SMALL_STATE(961)] = 42428, - [SMALL_STATE(962)] = 42456, - [SMALL_STATE(963)] = 42484, - [SMALL_STATE(964)] = 42522, - [SMALL_STATE(965)] = 42560, - [SMALL_STATE(966)] = 42588, - [SMALL_STATE(967)] = 42616, - [SMALL_STATE(968)] = 42644, - [SMALL_STATE(969)] = 42672, - [SMALL_STATE(970)] = 42699, - [SMALL_STATE(971)] = 42726, - [SMALL_STATE(972)] = 42753, - [SMALL_STATE(973)] = 42780, - [SMALL_STATE(974)] = 42807, - [SMALL_STATE(975)] = 42834, - [SMALL_STATE(976)] = 42861, - [SMALL_STATE(977)] = 42888, - [SMALL_STATE(978)] = 42921, - [SMALL_STATE(979)] = 42948, - [SMALL_STATE(980)] = 42975, - [SMALL_STATE(981)] = 43004, - [SMALL_STATE(982)] = 43044, - [SMALL_STATE(983)] = 43086, - [SMALL_STATE(984)] = 43130, - [SMALL_STATE(985)] = 43172, - [SMALL_STATE(986)] = 43218, - [SMALL_STATE(987)] = 43256, - [SMALL_STATE(988)] = 43298, - [SMALL_STATE(989)] = 43338, - [SMALL_STATE(990)] = 43380, - [SMALL_STATE(991)] = 43415, - [SMALL_STATE(992)] = 43450, - [SMALL_STATE(993)] = 43485, - [SMALL_STATE(994)] = 43520, - [SMALL_STATE(995)] = 43555, - [SMALL_STATE(996)] = 43590, - [SMALL_STATE(997)] = 43625, - [SMALL_STATE(998)] = 43660, - [SMALL_STATE(999)] = 43701, - [SMALL_STATE(1000)] = 43736, - [SMALL_STATE(1001)] = 43761, - [SMALL_STATE(1002)] = 43796, - [SMALL_STATE(1003)] = 43821, - [SMALL_STATE(1004)] = 43856, - [SMALL_STATE(1005)] = 43891, - [SMALL_STATE(1006)] = 43926, - [SMALL_STATE(1007)] = 43961, - [SMALL_STATE(1008)] = 43996, - [SMALL_STATE(1009)] = 44021, - [SMALL_STATE(1010)] = 44060, - [SMALL_STATE(1011)] = 44095, - [SMALL_STATE(1012)] = 44138, - [SMALL_STATE(1013)] = 44181, - [SMALL_STATE(1014)] = 44220, - [SMALL_STATE(1015)] = 44255, - [SMALL_STATE(1016)] = 44280, - [SMALL_STATE(1017)] = 44315, - [SMALL_STATE(1018)] = 44340, - [SMALL_STATE(1019)] = 44375, - [SMALL_STATE(1020)] = 44400, - [SMALL_STATE(1021)] = 44435, - [SMALL_STATE(1022)] = 44470, - [SMALL_STATE(1023)] = 44505, - [SMALL_STATE(1024)] = 44540, - [SMALL_STATE(1025)] = 44581, - [SMALL_STATE(1026)] = 44616, - [SMALL_STATE(1027)] = 44648, - [SMALL_STATE(1028)] = 44680, - [SMALL_STATE(1029)] = 44712, - [SMALL_STATE(1030)] = 44744, - [SMALL_STATE(1031)] = 44776, - [SMALL_STATE(1032)] = 44808, - [SMALL_STATE(1033)] = 44840, - [SMALL_STATE(1034)] = 44872, - [SMALL_STATE(1035)] = 44904, - [SMALL_STATE(1036)] = 44936, - [SMALL_STATE(1037)] = 44958, - [SMALL_STATE(1038)] = 44990, - [SMALL_STATE(1039)] = 45012, - [SMALL_STATE(1040)] = 45044, - [SMALL_STATE(1041)] = 45076, - [SMALL_STATE(1042)] = 45108, - [SMALL_STATE(1043)] = 45140, - [SMALL_STATE(1044)] = 45162, - [SMALL_STATE(1045)] = 45184, - [SMALL_STATE(1046)] = 45216, - [SMALL_STATE(1047)] = 45248, - [SMALL_STATE(1048)] = 45270, - [SMALL_STATE(1049)] = 45302, - [SMALL_STATE(1050)] = 45340, - [SMALL_STATE(1051)] = 45376, - [SMALL_STATE(1052)] = 45412, - [SMALL_STATE(1053)] = 45442, - [SMALL_STATE(1054)] = 45472, - [SMALL_STATE(1055)] = 45502, - [SMALL_STATE(1056)] = 45532, - [SMALL_STATE(1057)] = 45568, - [SMALL_STATE(1058)] = 45598, - [SMALL_STATE(1059)] = 45628, - [SMALL_STATE(1060)] = 45658, - [SMALL_STATE(1061)] = 45694, - [SMALL_STATE(1062)] = 45724, - [SMALL_STATE(1063)] = 45757, - [SMALL_STATE(1064)] = 45790, - [SMALL_STATE(1065)] = 45823, - [SMALL_STATE(1066)] = 45856, - [SMALL_STATE(1067)] = 45889, - [SMALL_STATE(1068)] = 45922, - [SMALL_STATE(1069)] = 45955, - [SMALL_STATE(1070)] = 45982, - [SMALL_STATE(1071)] = 46015, - [SMALL_STATE(1072)] = 46045, - [SMALL_STATE(1073)] = 46075, - [SMALL_STATE(1074)] = 46105, - [SMALL_STATE(1075)] = 46135, - [SMALL_STATE(1076)] = 46165, - [SMALL_STATE(1077)] = 46195, - [SMALL_STATE(1078)] = 46225, - [SMALL_STATE(1079)] = 46255, - [SMALL_STATE(1080)] = 46281, - [SMALL_STATE(1081)] = 46307, - [SMALL_STATE(1082)] = 46337, - [SMALL_STATE(1083)] = 46365, - [SMALL_STATE(1084)] = 46395, - [SMALL_STATE(1085)] = 46425, - [SMALL_STATE(1086)] = 46455, - [SMALL_STATE(1087)] = 46485, - [SMALL_STATE(1088)] = 46515, - [SMALL_STATE(1089)] = 46545, - [SMALL_STATE(1090)] = 46575, - [SMALL_STATE(1091)] = 46605, - [SMALL_STATE(1092)] = 46635, - [SMALL_STATE(1093)] = 46665, - [SMALL_STATE(1094)] = 46695, - [SMALL_STATE(1095)] = 46722, - [SMALL_STATE(1096)] = 46749, - [SMALL_STATE(1097)] = 46763, - [SMALL_STATE(1098)] = 46777, - [SMALL_STATE(1099)] = 46801, - [SMALL_STATE(1100)] = 46825, - [SMALL_STATE(1101)] = 46849, - [SMALL_STATE(1102)] = 46873, - [SMALL_STATE(1103)] = 46887, - [SMALL_STATE(1104)] = 46905, - [SMALL_STATE(1105)] = 46929, - [SMALL_STATE(1106)] = 46949, - [SMALL_STATE(1107)] = 46973, - [SMALL_STATE(1108)] = 46987, - [SMALL_STATE(1109)] = 47011, - [SMALL_STATE(1110)] = 47031, - [SMALL_STATE(1111)] = 47053, - [SMALL_STATE(1112)] = 47075, - [SMALL_STATE(1113)] = 47097, - [SMALL_STATE(1114)] = 47119, - [SMALL_STATE(1115)] = 47143, - [SMALL_STATE(1116)] = 47167, - [SMALL_STATE(1117)] = 47191, - [SMALL_STATE(1118)] = 47205, - [SMALL_STATE(1119)] = 47223, - [SMALL_STATE(1120)] = 47245, - [SMALL_STATE(1121)] = 47267, - [SMALL_STATE(1122)] = 47288, - [SMALL_STATE(1123)] = 47301, - [SMALL_STATE(1124)] = 47314, - [SMALL_STATE(1125)] = 47327, - [SMALL_STATE(1126)] = 47346, - [SMALL_STATE(1127)] = 47359, - [SMALL_STATE(1128)] = 47380, - [SMALL_STATE(1129)] = 47393, - [SMALL_STATE(1130)] = 47412, - [SMALL_STATE(1131)] = 47433, - [SMALL_STATE(1132)] = 47454, - [SMALL_STATE(1133)] = 47475, - [SMALL_STATE(1134)] = 47494, - [SMALL_STATE(1135)] = 47507, - [SMALL_STATE(1136)] = 47520, - [SMALL_STATE(1137)] = 47533, - [SMALL_STATE(1138)] = 47554, - [SMALL_STATE(1139)] = 47575, - [SMALL_STATE(1140)] = 47590, - [SMALL_STATE(1141)] = 47605, - [SMALL_STATE(1142)] = 47624, - [SMALL_STATE(1143)] = 47637, - [SMALL_STATE(1144)] = 47656, - [SMALL_STATE(1145)] = 47675, - [SMALL_STATE(1146)] = 47694, - [SMALL_STATE(1147)] = 47713, - [SMALL_STATE(1148)] = 47732, - [SMALL_STATE(1149)] = 47753, - [SMALL_STATE(1150)] = 47772, - [SMALL_STATE(1151)] = 47791, - [SMALL_STATE(1152)] = 47804, - [SMALL_STATE(1153)] = 47821, - [SMALL_STATE(1154)] = 47837, - [SMALL_STATE(1155)] = 47851, - [SMALL_STATE(1156)] = 47865, - [SMALL_STATE(1157)] = 47879, - [SMALL_STATE(1158)] = 47893, - [SMALL_STATE(1159)] = 47907, - [SMALL_STATE(1160)] = 47921, - [SMALL_STATE(1161)] = 47935, - [SMALL_STATE(1162)] = 47949, - [SMALL_STATE(1163)] = 47967, - [SMALL_STATE(1164)] = 47987, - [SMALL_STATE(1165)] = 48007, - [SMALL_STATE(1166)] = 48025, - [SMALL_STATE(1167)] = 48039, - [SMALL_STATE(1168)] = 48053, - [SMALL_STATE(1169)] = 48073, - [SMALL_STATE(1170)] = 48093, - [SMALL_STATE(1171)] = 48113, - [SMALL_STATE(1172)] = 48133, - [SMALL_STATE(1173)] = 48153, - [SMALL_STATE(1174)] = 48167, - [SMALL_STATE(1175)] = 48187, - [SMALL_STATE(1176)] = 48207, - [SMALL_STATE(1177)] = 48221, - [SMALL_STATE(1178)] = 48235, - [SMALL_STATE(1179)] = 48249, - [SMALL_STATE(1180)] = 48263, - [SMALL_STATE(1181)] = 48277, - [SMALL_STATE(1182)] = 48291, - [SMALL_STATE(1183)] = 48305, - [SMALL_STATE(1184)] = 48319, - [SMALL_STATE(1185)] = 48333, - [SMALL_STATE(1186)] = 48345, - [SMALL_STATE(1187)] = 48357, - [SMALL_STATE(1188)] = 48377, - [SMALL_STATE(1189)] = 48393, - [SMALL_STATE(1190)] = 48407, - [SMALL_STATE(1191)] = 48427, - [SMALL_STATE(1192)] = 48447, - [SMALL_STATE(1193)] = 48461, - [SMALL_STATE(1194)] = 48475, - [SMALL_STATE(1195)] = 48489, - [SMALL_STATE(1196)] = 48509, - [SMALL_STATE(1197)] = 48523, - [SMALL_STATE(1198)] = 48537, - [SMALL_STATE(1199)] = 48557, - [SMALL_STATE(1200)] = 48575, - [SMALL_STATE(1201)] = 48595, - [SMALL_STATE(1202)] = 48609, - [SMALL_STATE(1203)] = 48625, - [SMALL_STATE(1204)] = 48639, - [SMALL_STATE(1205)] = 48653, - [SMALL_STATE(1206)] = 48667, - [SMALL_STATE(1207)] = 48681, - [SMALL_STATE(1208)] = 48695, - [SMALL_STATE(1209)] = 48709, - [SMALL_STATE(1210)] = 48723, - [SMALL_STATE(1211)] = 48737, - [SMALL_STATE(1212)] = 48757, - [SMALL_STATE(1213)] = 48777, - [SMALL_STATE(1214)] = 48797, - [SMALL_STATE(1215)] = 48817, - [SMALL_STATE(1216)] = 48837, - [SMALL_STATE(1217)] = 48857, - [SMALL_STATE(1218)] = 48871, - [SMALL_STATE(1219)] = 48883, - [SMALL_STATE(1220)] = 48903, - [SMALL_STATE(1221)] = 48922, - [SMALL_STATE(1222)] = 48939, - [SMALL_STATE(1223)] = 48954, - [SMALL_STATE(1224)] = 48971, - [SMALL_STATE(1225)] = 48988, - [SMALL_STATE(1226)] = 49005, - [SMALL_STATE(1227)] = 49022, - [SMALL_STATE(1228)] = 49039, - [SMALL_STATE(1229)] = 49056, - [SMALL_STATE(1230)] = 49073, - [SMALL_STATE(1231)] = 49090, - [SMALL_STATE(1232)] = 49107, - [SMALL_STATE(1233)] = 49126, - [SMALL_STATE(1234)] = 49145, - [SMALL_STATE(1235)] = 49162, - [SMALL_STATE(1236)] = 49179, - [SMALL_STATE(1237)] = 49194, - [SMALL_STATE(1238)] = 49209, - [SMALL_STATE(1239)] = 49224, - [SMALL_STATE(1240)] = 49241, - [SMALL_STATE(1241)] = 49258, - [SMALL_STATE(1242)] = 49275, - [SMALL_STATE(1243)] = 49292, - [SMALL_STATE(1244)] = 49309, - [SMALL_STATE(1245)] = 49320, - [SMALL_STATE(1246)] = 49335, - [SMALL_STATE(1247)] = 49350, - [SMALL_STATE(1248)] = 49367, - [SMALL_STATE(1249)] = 49384, - [SMALL_STATE(1250)] = 49401, - [SMALL_STATE(1251)] = 49414, - [SMALL_STATE(1252)] = 49431, - [SMALL_STATE(1253)] = 49448, - [SMALL_STATE(1254)] = 49465, - [SMALL_STATE(1255)] = 49482, - [SMALL_STATE(1256)] = 49497, - [SMALL_STATE(1257)] = 49510, - [SMALL_STATE(1258)] = 49527, - [SMALL_STATE(1259)] = 49546, - [SMALL_STATE(1260)] = 49561, - [SMALL_STATE(1261)] = 49576, - [SMALL_STATE(1262)] = 49595, - [SMALL_STATE(1263)] = 49612, - [SMALL_STATE(1264)] = 49627, - [SMALL_STATE(1265)] = 49642, - [SMALL_STATE(1266)] = 49659, - [SMALL_STATE(1267)] = 49674, - [SMALL_STATE(1268)] = 49687, - [SMALL_STATE(1269)] = 49704, - [SMALL_STATE(1270)] = 49721, - [SMALL_STATE(1271)] = 49736, - [SMALL_STATE(1272)] = 49755, - [SMALL_STATE(1273)] = 49772, - [SMALL_STATE(1274)] = 49783, - [SMALL_STATE(1275)] = 49800, - [SMALL_STATE(1276)] = 49811, - [SMALL_STATE(1277)] = 49828, - [SMALL_STATE(1278)] = 49839, - [SMALL_STATE(1279)] = 49856, - [SMALL_STATE(1280)] = 49867, - [SMALL_STATE(1281)] = 49884, - [SMALL_STATE(1282)] = 49901, - [SMALL_STATE(1283)] = 49918, - [SMALL_STATE(1284)] = 49935, - [SMALL_STATE(1285)] = 49952, - [SMALL_STATE(1286)] = 49969, - [SMALL_STATE(1287)] = 49986, - [SMALL_STATE(1288)] = 50003, - [SMALL_STATE(1289)] = 50018, - [SMALL_STATE(1290)] = 50033, - [SMALL_STATE(1291)] = 50048, - [SMALL_STATE(1292)] = 50065, - [SMALL_STATE(1293)] = 50080, - [SMALL_STATE(1294)] = 50097, - [SMALL_STATE(1295)] = 50108, - [SMALL_STATE(1296)] = 50125, - [SMALL_STATE(1297)] = 50138, - [SMALL_STATE(1298)] = 50155, - [SMALL_STATE(1299)] = 50169, - [SMALL_STATE(1300)] = 50183, - [SMALL_STATE(1301)] = 50197, - [SMALL_STATE(1302)] = 50211, - [SMALL_STATE(1303)] = 50225, - [SMALL_STATE(1304)] = 50239, - [SMALL_STATE(1305)] = 50253, - [SMALL_STATE(1306)] = 50267, - [SMALL_STATE(1307)] = 50281, - [SMALL_STATE(1308)] = 50295, - [SMALL_STATE(1309)] = 50309, - [SMALL_STATE(1310)] = 50321, - [SMALL_STATE(1311)] = 50335, - [SMALL_STATE(1312)] = 50349, - [SMALL_STATE(1313)] = 50359, - [SMALL_STATE(1314)] = 50373, - [SMALL_STATE(1315)] = 50383, - [SMALL_STATE(1316)] = 50397, - [SMALL_STATE(1317)] = 50411, - [SMALL_STATE(1318)] = 50423, - [SMALL_STATE(1319)] = 50437, - [SMALL_STATE(1320)] = 50453, - [SMALL_STATE(1321)] = 50469, - [SMALL_STATE(1322)] = 50483, - [SMALL_STATE(1323)] = 50497, - [SMALL_STATE(1324)] = 50511, - [SMALL_STATE(1325)] = 50525, - [SMALL_STATE(1326)] = 50539, - [SMALL_STATE(1327)] = 50553, - [SMALL_STATE(1328)] = 50567, - [SMALL_STATE(1329)] = 50581, - [SMALL_STATE(1330)] = 50595, - [SMALL_STATE(1331)] = 50609, - [SMALL_STATE(1332)] = 50623, - [SMALL_STATE(1333)] = 50633, - [SMALL_STATE(1334)] = 50645, - [SMALL_STATE(1335)] = 50659, - [SMALL_STATE(1336)] = 50673, - [SMALL_STATE(1337)] = 50687, - [SMALL_STATE(1338)] = 50701, - [SMALL_STATE(1339)] = 50715, - [SMALL_STATE(1340)] = 50729, - [SMALL_STATE(1341)] = 50743, - [SMALL_STATE(1342)] = 50757, - [SMALL_STATE(1343)] = 50771, - [SMALL_STATE(1344)] = 50785, - [SMALL_STATE(1345)] = 50799, - [SMALL_STATE(1346)] = 50811, - [SMALL_STATE(1347)] = 50825, - [SMALL_STATE(1348)] = 50839, - [SMALL_STATE(1349)] = 50853, - [SMALL_STATE(1350)] = 50865, - [SMALL_STATE(1351)] = 50879, - [SMALL_STATE(1352)] = 50893, - [SMALL_STATE(1353)] = 50907, - [SMALL_STATE(1354)] = 50917, - [SMALL_STATE(1355)] = 50927, - [SMALL_STATE(1356)] = 50941, - [SMALL_STATE(1357)] = 50955, - [SMALL_STATE(1358)] = 50971, - [SMALL_STATE(1359)] = 50983, - [SMALL_STATE(1360)] = 50997, - [SMALL_STATE(1361)] = 51009, - [SMALL_STATE(1362)] = 51023, - [SMALL_STATE(1363)] = 51037, - [SMALL_STATE(1364)] = 51051, - [SMALL_STATE(1365)] = 51065, - [SMALL_STATE(1366)] = 51079, - [SMALL_STATE(1367)] = 51089, - [SMALL_STATE(1368)] = 51103, - [SMALL_STATE(1369)] = 51117, - [SMALL_STATE(1370)] = 51131, - [SMALL_STATE(1371)] = 51141, - [SMALL_STATE(1372)] = 51155, - [SMALL_STATE(1373)] = 51171, - [SMALL_STATE(1374)] = 51185, - [SMALL_STATE(1375)] = 51199, - [SMALL_STATE(1376)] = 51213, - [SMALL_STATE(1377)] = 51227, - [SMALL_STATE(1378)] = 51243, - [SMALL_STATE(1379)] = 51257, - [SMALL_STATE(1380)] = 51271, - [SMALL_STATE(1381)] = 51285, - [SMALL_STATE(1382)] = 51301, - [SMALL_STATE(1383)] = 51315, - [SMALL_STATE(1384)] = 51329, - [SMALL_STATE(1385)] = 51339, - [SMALL_STATE(1386)] = 51351, - [SMALL_STATE(1387)] = 51365, - [SMALL_STATE(1388)] = 51379, - [SMALL_STATE(1389)] = 51391, - [SMALL_STATE(1390)] = 51403, - [SMALL_STATE(1391)] = 51417, - [SMALL_STATE(1392)] = 51431, - [SMALL_STATE(1393)] = 51445, - [SMALL_STATE(1394)] = 51459, - [SMALL_STATE(1395)] = 51473, - [SMALL_STATE(1396)] = 51487, - [SMALL_STATE(1397)] = 51501, - [SMALL_STATE(1398)] = 51513, - [SMALL_STATE(1399)] = 51527, - [SMALL_STATE(1400)] = 51543, - [SMALL_STATE(1401)] = 51554, - [SMALL_STATE(1402)] = 51565, - [SMALL_STATE(1403)] = 51576, - [SMALL_STATE(1404)] = 51585, - [SMALL_STATE(1405)] = 51594, - [SMALL_STATE(1406)] = 51605, - [SMALL_STATE(1407)] = 51616, - [SMALL_STATE(1408)] = 51627, - [SMALL_STATE(1409)] = 51636, - [SMALL_STATE(1410)] = 51647, - [SMALL_STATE(1411)] = 51658, - [SMALL_STATE(1412)] = 51669, - [SMALL_STATE(1413)] = 51680, - [SMALL_STATE(1414)] = 51691, - [SMALL_STATE(1415)] = 51702, - [SMALL_STATE(1416)] = 51711, - [SMALL_STATE(1417)] = 51722, - [SMALL_STATE(1418)] = 51731, - [SMALL_STATE(1419)] = 51742, - [SMALL_STATE(1420)] = 51753, - [SMALL_STATE(1421)] = 51762, - [SMALL_STATE(1422)] = 51771, - [SMALL_STATE(1423)] = 51780, - [SMALL_STATE(1424)] = 51791, - [SMALL_STATE(1425)] = 51800, - [SMALL_STATE(1426)] = 51811, - [SMALL_STATE(1427)] = 51822, - [SMALL_STATE(1428)] = 51833, - [SMALL_STATE(1429)] = 51844, - [SMALL_STATE(1430)] = 51855, - [SMALL_STATE(1431)] = 51866, - [SMALL_STATE(1432)] = 51877, - [SMALL_STATE(1433)] = 51888, - [SMALL_STATE(1434)] = 51899, - [SMALL_STATE(1435)] = 51910, - [SMALL_STATE(1436)] = 51921, - [SMALL_STATE(1437)] = 51932, - [SMALL_STATE(1438)] = 51943, - [SMALL_STATE(1439)] = 51954, - [SMALL_STATE(1440)] = 51965, - [SMALL_STATE(1441)] = 51976, - [SMALL_STATE(1442)] = 51987, - [SMALL_STATE(1443)] = 51998, - [SMALL_STATE(1444)] = 52009, - [SMALL_STATE(1445)] = 52020, - [SMALL_STATE(1446)] = 52031, - [SMALL_STATE(1447)] = 52042, - [SMALL_STATE(1448)] = 52053, - [SMALL_STATE(1449)] = 52064, - [SMALL_STATE(1450)] = 52075, - [SMALL_STATE(1451)] = 52086, - [SMALL_STATE(1452)] = 52095, - [SMALL_STATE(1453)] = 52106, - [SMALL_STATE(1454)] = 52117, - [SMALL_STATE(1455)] = 52128, - [SMALL_STATE(1456)] = 52139, - [SMALL_STATE(1457)] = 52150, - [SMALL_STATE(1458)] = 52159, - [SMALL_STATE(1459)] = 52168, - [SMALL_STATE(1460)] = 52179, - [SMALL_STATE(1461)] = 52190, - [SMALL_STATE(1462)] = 52201, - [SMALL_STATE(1463)] = 52212, - [SMALL_STATE(1464)] = 52223, - [SMALL_STATE(1465)] = 52234, - [SMALL_STATE(1466)] = 52245, - [SMALL_STATE(1467)] = 52256, - [SMALL_STATE(1468)] = 52265, - [SMALL_STATE(1469)] = 52276, - [SMALL_STATE(1470)] = 52287, - [SMALL_STATE(1471)] = 52298, - [SMALL_STATE(1472)] = 52309, - [SMALL_STATE(1473)] = 52318, - [SMALL_STATE(1474)] = 52327, - [SMALL_STATE(1475)] = 52338, - [SMALL_STATE(1476)] = 52349, - [SMALL_STATE(1477)] = 52360, - [SMALL_STATE(1478)] = 52371, - [SMALL_STATE(1479)] = 52382, - [SMALL_STATE(1480)] = 52393, - [SMALL_STATE(1481)] = 52404, - [SMALL_STATE(1482)] = 52415, - [SMALL_STATE(1483)] = 52426, - [SMALL_STATE(1484)] = 52435, - [SMALL_STATE(1485)] = 52446, - [SMALL_STATE(1486)] = 52457, - [SMALL_STATE(1487)] = 52468, - [SMALL_STATE(1488)] = 52479, - [SMALL_STATE(1489)] = 52488, - [SMALL_STATE(1490)] = 52499, - [SMALL_STATE(1491)] = 52510, - [SMALL_STATE(1492)] = 52521, - [SMALL_STATE(1493)] = 52532, - [SMALL_STATE(1494)] = 52543, - [SMALL_STATE(1495)] = 52554, - [SMALL_STATE(1496)] = 52565, - [SMALL_STATE(1497)] = 52576, - [SMALL_STATE(1498)] = 52587, - [SMALL_STATE(1499)] = 52598, - [SMALL_STATE(1500)] = 52609, - [SMALL_STATE(1501)] = 52620, - [SMALL_STATE(1502)] = 52631, - [SMALL_STATE(1503)] = 52642, - [SMALL_STATE(1504)] = 52653, - [SMALL_STATE(1505)] = 52664, - [SMALL_STATE(1506)] = 52673, - [SMALL_STATE(1507)] = 52684, - [SMALL_STATE(1508)] = 52695, - [SMALL_STATE(1509)] = 52706, - [SMALL_STATE(1510)] = 52717, - [SMALL_STATE(1511)] = 52728, - [SMALL_STATE(1512)] = 52739, - [SMALL_STATE(1513)] = 52750, - [SMALL_STATE(1514)] = 52761, - [SMALL_STATE(1515)] = 52772, - [SMALL_STATE(1516)] = 52783, - [SMALL_STATE(1517)] = 52794, - [SMALL_STATE(1518)] = 52805, - [SMALL_STATE(1519)] = 52816, - [SMALL_STATE(1520)] = 52827, - [SMALL_STATE(1521)] = 52838, - [SMALL_STATE(1522)] = 52847, - [SMALL_STATE(1523)] = 52858, - [SMALL_STATE(1524)] = 52869, - [SMALL_STATE(1525)] = 52878, - [SMALL_STATE(1526)] = 52889, - [SMALL_STATE(1527)] = 52900, - [SMALL_STATE(1528)] = 52911, - [SMALL_STATE(1529)] = 52922, - [SMALL_STATE(1530)] = 52931, - [SMALL_STATE(1531)] = 52940, - [SMALL_STATE(1532)] = 52951, - [SMALL_STATE(1533)] = 52962, - [SMALL_STATE(1534)] = 52971, - [SMALL_STATE(1535)] = 52982, - [SMALL_STATE(1536)] = 52993, - [SMALL_STATE(1537)] = 53004, - [SMALL_STATE(1538)] = 53015, - [SMALL_STATE(1539)] = 53026, - [SMALL_STATE(1540)] = 53037, - [SMALL_STATE(1541)] = 53048, - [SMALL_STATE(1542)] = 53059, - [SMALL_STATE(1543)] = 53070, - [SMALL_STATE(1544)] = 53081, - [SMALL_STATE(1545)] = 53092, - [SMALL_STATE(1546)] = 53103, - [SMALL_STATE(1547)] = 53114, - [SMALL_STATE(1548)] = 53125, - [SMALL_STATE(1549)] = 53136, - [SMALL_STATE(1550)] = 53147, - [SMALL_STATE(1551)] = 53158, - [SMALL_STATE(1552)] = 53167, - [SMALL_STATE(1553)] = 53176, - [SMALL_STATE(1554)] = 53187, - [SMALL_STATE(1555)] = 53198, - [SMALL_STATE(1556)] = 53209, - [SMALL_STATE(1557)] = 53220, - [SMALL_STATE(1558)] = 53231, - [SMALL_STATE(1559)] = 53242, - [SMALL_STATE(1560)] = 53253, - [SMALL_STATE(1561)] = 53264, - [SMALL_STATE(1562)] = 53275, - [SMALL_STATE(1563)] = 53286, - [SMALL_STATE(1564)] = 53295, - [SMALL_STATE(1565)] = 53306, - [SMALL_STATE(1566)] = 53317, - [SMALL_STATE(1567)] = 53328, - [SMALL_STATE(1568)] = 53339, - [SMALL_STATE(1569)] = 53350, - [SMALL_STATE(1570)] = 53361, - [SMALL_STATE(1571)] = 53372, - [SMALL_STATE(1572)] = 53383, - [SMALL_STATE(1573)] = 53394, - [SMALL_STATE(1574)] = 53405, - [SMALL_STATE(1575)] = 53416, - [SMALL_STATE(1576)] = 53427, - [SMALL_STATE(1577)] = 53438, - [SMALL_STATE(1578)] = 53447, - [SMALL_STATE(1579)] = 53458, - [SMALL_STATE(1580)] = 53469, - [SMALL_STATE(1581)] = 53480, - [SMALL_STATE(1582)] = 53489, - [SMALL_STATE(1583)] = 53500, - [SMALL_STATE(1584)] = 53511, - [SMALL_STATE(1585)] = 53522, - [SMALL_STATE(1586)] = 53533, - [SMALL_STATE(1587)] = 53544, - [SMALL_STATE(1588)] = 53555, - [SMALL_STATE(1589)] = 53566, - [SMALL_STATE(1590)] = 53577, - [SMALL_STATE(1591)] = 53588, - [SMALL_STATE(1592)] = 53599, - [SMALL_STATE(1593)] = 53610, - [SMALL_STATE(1594)] = 53621, - [SMALL_STATE(1595)] = 53630, - [SMALL_STATE(1596)] = 53641, - [SMALL_STATE(1597)] = 53652, - [SMALL_STATE(1598)] = 53661, - [SMALL_STATE(1599)] = 53672, - [SMALL_STATE(1600)] = 53683, - [SMALL_STATE(1601)] = 53694, - [SMALL_STATE(1602)] = 53705, - [SMALL_STATE(1603)] = 53716, - [SMALL_STATE(1604)] = 53727, - [SMALL_STATE(1605)] = 53738, - [SMALL_STATE(1606)] = 53749, - [SMALL_STATE(1607)] = 53760, - [SMALL_STATE(1608)] = 53771, - [SMALL_STATE(1609)] = 53782, - [SMALL_STATE(1610)] = 53793, - [SMALL_STATE(1611)] = 53804, - [SMALL_STATE(1612)] = 53813, - [SMALL_STATE(1613)] = 53824, - [SMALL_STATE(1614)] = 53835, - [SMALL_STATE(1615)] = 53846, - [SMALL_STATE(1616)] = 53857, - [SMALL_STATE(1617)] = 53868, - [SMALL_STATE(1618)] = 53879, - [SMALL_STATE(1619)] = 53890, - [SMALL_STATE(1620)] = 53901, - [SMALL_STATE(1621)] = 53912, - [SMALL_STATE(1622)] = 53923, - [SMALL_STATE(1623)] = 53934, - [SMALL_STATE(1624)] = 53945, - [SMALL_STATE(1625)] = 53956, - [SMALL_STATE(1626)] = 53967, - [SMALL_STATE(1627)] = 53978, - [SMALL_STATE(1628)] = 53989, - [SMALL_STATE(1629)] = 54000, - [SMALL_STATE(1630)] = 54011, - [SMALL_STATE(1631)] = 54022, - [SMALL_STATE(1632)] = 54033, - [SMALL_STATE(1633)] = 54044, - [SMALL_STATE(1634)] = 54055, - [SMALL_STATE(1635)] = 54066, - [SMALL_STATE(1636)] = 54077, - [SMALL_STATE(1637)] = 54088, - [SMALL_STATE(1638)] = 54097, - [SMALL_STATE(1639)] = 54108, - [SMALL_STATE(1640)] = 54117, - [SMALL_STATE(1641)] = 54128, - [SMALL_STATE(1642)] = 54139, - [SMALL_STATE(1643)] = 54150, - [SMALL_STATE(1644)] = 54161, - [SMALL_STATE(1645)] = 54169, - [SMALL_STATE(1646)] = 54177, - [SMALL_STATE(1647)] = 54185, - [SMALL_STATE(1648)] = 54193, - [SMALL_STATE(1649)] = 54201, - [SMALL_STATE(1650)] = 54209, - [SMALL_STATE(1651)] = 54217, - [SMALL_STATE(1652)] = 54225, - [SMALL_STATE(1653)] = 54233, - [SMALL_STATE(1654)] = 54241, - [SMALL_STATE(1655)] = 54249, - [SMALL_STATE(1656)] = 54259, - [SMALL_STATE(1657)] = 54267, - [SMALL_STATE(1658)] = 54275, - [SMALL_STATE(1659)] = 54285, - [SMALL_STATE(1660)] = 54293, - [SMALL_STATE(1661)] = 54301, - [SMALL_STATE(1662)] = 54309, - [SMALL_STATE(1663)] = 54317, - [SMALL_STATE(1664)] = 54325, - [SMALL_STATE(1665)] = 54333, - [SMALL_STATE(1666)] = 54341, - [SMALL_STATE(1667)] = 54349, - [SMALL_STATE(1668)] = 54357, - [SMALL_STATE(1669)] = 54365, - [SMALL_STATE(1670)] = 54375, - [SMALL_STATE(1671)] = 54383, - [SMALL_STATE(1672)] = 54391, - [SMALL_STATE(1673)] = 54399, - [SMALL_STATE(1674)] = 54407, - [SMALL_STATE(1675)] = 54415, - [SMALL_STATE(1676)] = 54423, - [SMALL_STATE(1677)] = 54431, - [SMALL_STATE(1678)] = 54439, - [SMALL_STATE(1679)] = 54447, - [SMALL_STATE(1680)] = 54455, - [SMALL_STATE(1681)] = 54463, - [SMALL_STATE(1682)] = 54471, - [SMALL_STATE(1683)] = 54479, - [SMALL_STATE(1684)] = 54487, - [SMALL_STATE(1685)] = 54495, - [SMALL_STATE(1686)] = 54503, - [SMALL_STATE(1687)] = 54511, - [SMALL_STATE(1688)] = 54519, - [SMALL_STATE(1689)] = 54527, - [SMALL_STATE(1690)] = 54535, - [SMALL_STATE(1691)] = 54543, - [SMALL_STATE(1692)] = 54551, - [SMALL_STATE(1693)] = 54559, - [SMALL_STATE(1694)] = 54567, - [SMALL_STATE(1695)] = 54575, - [SMALL_STATE(1696)] = 54583, - [SMALL_STATE(1697)] = 54591, - [SMALL_STATE(1698)] = 54599, - [SMALL_STATE(1699)] = 54607, - [SMALL_STATE(1700)] = 54615, - [SMALL_STATE(1701)] = 54623, - [SMALL_STATE(1702)] = 54631, - [SMALL_STATE(1703)] = 54639, - [SMALL_STATE(1704)] = 54647, - [SMALL_STATE(1705)] = 54655, - [SMALL_STATE(1706)] = 54663, - [SMALL_STATE(1707)] = 54671, - [SMALL_STATE(1708)] = 54681, - [SMALL_STATE(1709)] = 54689, - [SMALL_STATE(1710)] = 54697, - [SMALL_STATE(1711)] = 54705, - [SMALL_STATE(1712)] = 54713, - [SMALL_STATE(1713)] = 54721, - [SMALL_STATE(1714)] = 54729, - [SMALL_STATE(1715)] = 54737, - [SMALL_STATE(1716)] = 54745, - [SMALL_STATE(1717)] = 54755, - [SMALL_STATE(1718)] = 54763, - [SMALL_STATE(1719)] = 54771, - [SMALL_STATE(1720)] = 54779, - [SMALL_STATE(1721)] = 54787, - [SMALL_STATE(1722)] = 54795, - [SMALL_STATE(1723)] = 54803, - [SMALL_STATE(1724)] = 54811, - [SMALL_STATE(1725)] = 54819, - [SMALL_STATE(1726)] = 54827, - [SMALL_STATE(1727)] = 54835, - [SMALL_STATE(1728)] = 54843, - [SMALL_STATE(1729)] = 54851, - [SMALL_STATE(1730)] = 54859, - [SMALL_STATE(1731)] = 54867, - [SMALL_STATE(1732)] = 54875, - [SMALL_STATE(1733)] = 54883, - [SMALL_STATE(1734)] = 54891, - [SMALL_STATE(1735)] = 54899, - [SMALL_STATE(1736)] = 54907, - [SMALL_STATE(1737)] = 54917, - [SMALL_STATE(1738)] = 54925, - [SMALL_STATE(1739)] = 54933, - [SMALL_STATE(1740)] = 54943, - [SMALL_STATE(1741)] = 54953, - [SMALL_STATE(1742)] = 54961, - [SMALL_STATE(1743)] = 54969, - [SMALL_STATE(1744)] = 54977, - [SMALL_STATE(1745)] = 54985, - [SMALL_STATE(1746)] = 54993, - [SMALL_STATE(1747)] = 55001, - [SMALL_STATE(1748)] = 55009, - [SMALL_STATE(1749)] = 55017, - [SMALL_STATE(1750)] = 55025, + [SMALL_STATE(328)] = 0, + [SMALL_STATE(329)] = 91, + [SMALL_STATE(330)] = 166, + [SMALL_STATE(331)] = 255, + [SMALL_STATE(332)] = 341, + [SMALL_STATE(333)] = 411, + [SMALL_STATE(334)] = 483, + [SMALL_STATE(335)] = 569, + [SMALL_STATE(336)] = 659, + [SMALL_STATE(337)] = 729, + [SMALL_STATE(338)] = 799, + [SMALL_STATE(339)] = 869, + [SMALL_STATE(340)] = 939, + [SMALL_STATE(341)] = 1011, + [SMALL_STATE(342)] = 1081, + [SMALL_STATE(343)] = 1155, + [SMALL_STATE(344)] = 1227, + [SMALL_STATE(345)] = 1299, + [SMALL_STATE(346)] = 1371, + [SMALL_STATE(347)] = 1441, + [SMALL_STATE(348)] = 1513, + [SMALL_STATE(349)] = 1599, + [SMALL_STATE(350)] = 1671, + [SMALL_STATE(351)] = 1743, + [SMALL_STATE(352)] = 1815, + [SMALL_STATE(353)] = 1887, + [SMALL_STATE(354)] = 1959, + [SMALL_STATE(355)] = 2028, + [SMALL_STATE(356)] = 2097, + [SMALL_STATE(357)] = 2166, + [SMALL_STATE(358)] = 2235, + [SMALL_STATE(359)] = 2304, + [SMALL_STATE(360)] = 2373, + [SMALL_STATE(361)] = 2442, + [SMALL_STATE(362)] = 2511, + [SMALL_STATE(363)] = 2598, + [SMALL_STATE(364)] = 2667, + [SMALL_STATE(365)] = 2736, + [SMALL_STATE(366)] = 2805, + [SMALL_STATE(367)] = 2874, + [SMALL_STATE(368)] = 2943, + [SMALL_STATE(369)] = 3012, + [SMALL_STATE(370)] = 3081, + [SMALL_STATE(371)] = 3150, + [SMALL_STATE(372)] = 3219, + [SMALL_STATE(373)] = 3288, + [SMALL_STATE(374)] = 3357, + [SMALL_STATE(375)] = 3426, + [SMALL_STATE(376)] = 3495, + [SMALL_STATE(377)] = 3564, + [SMALL_STATE(378)] = 3633, + [SMALL_STATE(379)] = 3702, + [SMALL_STATE(380)] = 3771, + [SMALL_STATE(381)] = 3840, + [SMALL_STATE(382)] = 3929, + [SMALL_STATE(383)] = 3998, + [SMALL_STATE(384)] = 4067, + [SMALL_STATE(385)] = 4136, + [SMALL_STATE(386)] = 4205, + [SMALL_STATE(387)] = 4274, + [SMALL_STATE(388)] = 4343, + [SMALL_STATE(389)] = 4412, + [SMALL_STATE(390)] = 4499, + [SMALL_STATE(391)] = 4568, + [SMALL_STATE(392)] = 4637, + [SMALL_STATE(393)] = 4706, + [SMALL_STATE(394)] = 4775, + [SMALL_STATE(395)] = 4844, + [SMALL_STATE(396)] = 4913, + [SMALL_STATE(397)] = 4982, + [SMALL_STATE(398)] = 5051, + [SMALL_STATE(399)] = 5120, + [SMALL_STATE(400)] = 5189, + [SMALL_STATE(401)] = 5258, + [SMALL_STATE(402)] = 5327, + [SMALL_STATE(403)] = 5396, + [SMALL_STATE(404)] = 5465, + [SMALL_STATE(405)] = 5534, + [SMALL_STATE(406)] = 5603, + [SMALL_STATE(407)] = 5672, + [SMALL_STATE(408)] = 5741, + [SMALL_STATE(409)] = 5810, + [SMALL_STATE(410)] = 5879, + [SMALL_STATE(411)] = 5948, + [SMALL_STATE(412)] = 6017, + [SMALL_STATE(413)] = 6086, + [SMALL_STATE(414)] = 6155, + [SMALL_STATE(415)] = 6224, + [SMALL_STATE(416)] = 6293, + [SMALL_STATE(417)] = 6362, + [SMALL_STATE(418)] = 6431, + [SMALL_STATE(419)] = 6500, + [SMALL_STATE(420)] = 6569, + [SMALL_STATE(421)] = 6654, + [SMALL_STATE(422)] = 6723, + [SMALL_STATE(423)] = 6808, + [SMALL_STATE(424)] = 6877, + [SMALL_STATE(425)] = 6946, + [SMALL_STATE(426)] = 7034, + [SMALL_STATE(427)] = 7117, + [SMALL_STATE(428)] = 7183, + [SMALL_STATE(429)] = 7249, + [SMALL_STATE(430)] = 7315, + [SMALL_STATE(431)] = 7381, + [SMALL_STATE(432)] = 7463, + [SMALL_STATE(433)] = 7533, + [SMALL_STATE(434)] = 7599, + [SMALL_STATE(435)] = 7681, + [SMALL_STATE(436)] = 7747, + [SMALL_STATE(437)] = 7813, + [SMALL_STATE(438)] = 7895, + [SMALL_STATE(439)] = 7966, + [SMALL_STATE(440)] = 8037, + [SMALL_STATE(441)] = 8108, + [SMALL_STATE(442)] = 8191, + [SMALL_STATE(443)] = 8262, + [SMALL_STATE(444)] = 8326, + [SMALL_STATE(445)] = 8390, + [SMALL_STATE(446)] = 8454, + [SMALL_STATE(447)] = 8518, + [SMALL_STATE(448)] = 8582, + [SMALL_STATE(449)] = 8650, + [SMALL_STATE(450)] = 8714, + [SMALL_STATE(451)] = 8778, + [SMALL_STATE(452)] = 8842, + [SMALL_STATE(453)] = 8906, + [SMALL_STATE(454)] = 8977, + [SMALL_STATE(455)] = 9040, + [SMALL_STATE(456)] = 9103, + [SMALL_STATE(457)] = 9170, + [SMALL_STATE(458)] = 9239, + [SMALL_STATE(459)] = 9302, + [SMALL_STATE(460)] = 9371, + [SMALL_STATE(461)] = 9434, + [SMALL_STATE(462)] = 9497, + [SMALL_STATE(463)] = 9560, + [SMALL_STATE(464)] = 9623, + [SMALL_STATE(465)] = 9692, + [SMALL_STATE(466)] = 9763, + [SMALL_STATE(467)] = 9834, + [SMALL_STATE(468)] = 9903, + [SMALL_STATE(469)] = 9974, + [SMALL_STATE(470)] = 10043, + [SMALL_STATE(471)] = 10114, + [SMALL_STATE(472)] = 10185, + [SMALL_STATE(473)] = 10254, + [SMALL_STATE(474)] = 10323, + [SMALL_STATE(475)] = 10394, + [SMALL_STATE(476)] = 10463, + [SMALL_STATE(477)] = 10534, + [SMALL_STATE(478)] = 10605, + [SMALL_STATE(479)] = 10676, + [SMALL_STATE(480)] = 10744, + [SMALL_STATE(481)] = 10812, + [SMALL_STATE(482)] = 10880, + [SMALL_STATE(483)] = 10950, + [SMALL_STATE(484)] = 11020, + [SMALL_STATE(485)] = 11086, + [SMALL_STATE(486)] = 11152, + [SMALL_STATE(487)] = 11224, + [SMALL_STATE(488)] = 11296, + [SMALL_STATE(489)] = 11367, + [SMALL_STATE(490)] = 11434, + [SMALL_STATE(491)] = 11501, + [SMALL_STATE(492)] = 11570, + [SMALL_STATE(493)] = 11641, + [SMALL_STATE(494)] = 11708, + [SMALL_STATE(495)] = 11776, + [SMALL_STATE(496)] = 11842, + [SMALL_STATE(497)] = 11912, + [SMALL_STATE(498)] = 11978, + [SMALL_STATE(499)] = 12048, + [SMALL_STATE(500)] = 12114, + [SMALL_STATE(501)] = 12180, + [SMALL_STATE(502)] = 12247, + [SMALL_STATE(503)] = 12310, + [SMALL_STATE(504)] = 12370, + [SMALL_STATE(505)] = 12436, + [SMALL_STATE(506)] = 12492, + [SMALL_STATE(507)] = 12553, + [SMALL_STATE(508)] = 12614, + [SMALL_STATE(509)] = 12667, + [SMALL_STATE(510)] = 12720, + [SMALL_STATE(511)] = 12783, + [SMALL_STATE(512)] = 12836, + [SMALL_STATE(513)] = 12891, + [SMALL_STATE(514)] = 12954, + [SMALL_STATE(515)] = 13004, + [SMALL_STATE(516)] = 13054, + [SMALL_STATE(517)] = 13104, + [SMALL_STATE(518)] = 13154, + [SMALL_STATE(519)] = 13204, + [SMALL_STATE(520)] = 13254, + [SMALL_STATE(521)] = 13306, + [SMALL_STATE(522)] = 13356, + [SMALL_STATE(523)] = 13406, + [SMALL_STATE(524)] = 13456, + [SMALL_STATE(525)] = 13506, + [SMALL_STATE(526)] = 13556, + [SMALL_STATE(527)] = 13606, + [SMALL_STATE(528)] = 13656, + [SMALL_STATE(529)] = 13706, + [SMALL_STATE(530)] = 13756, + [SMALL_STATE(531)] = 13806, + [SMALL_STATE(532)] = 13856, + [SMALL_STATE(533)] = 13906, + [SMALL_STATE(534)] = 13956, + [SMALL_STATE(535)] = 14006, + [SMALL_STATE(536)] = 14056, + [SMALL_STATE(537)] = 14106, + [SMALL_STATE(538)] = 14156, + [SMALL_STATE(539)] = 14206, + [SMALL_STATE(540)] = 14256, + [SMALL_STATE(541)] = 14306, + [SMALL_STATE(542)] = 14356, + [SMALL_STATE(543)] = 14406, + [SMALL_STATE(544)] = 14456, + [SMALL_STATE(545)] = 14510, + [SMALL_STATE(546)] = 14560, + [SMALL_STATE(547)] = 14610, + [SMALL_STATE(548)] = 14660, + [SMALL_STATE(549)] = 14710, + [SMALL_STATE(550)] = 14760, + [SMALL_STATE(551)] = 14810, + [SMALL_STATE(552)] = 14860, + [SMALL_STATE(553)] = 14910, + [SMALL_STATE(554)] = 14960, + [SMALL_STATE(555)] = 15010, + [SMALL_STATE(556)] = 15060, + [SMALL_STATE(557)] = 15110, + [SMALL_STATE(558)] = 15160, + [SMALL_STATE(559)] = 15210, + [SMALL_STATE(560)] = 15260, + [SMALL_STATE(561)] = 15310, + [SMALL_STATE(562)] = 15364, + [SMALL_STATE(563)] = 15414, + [SMALL_STATE(564)] = 15464, + [SMALL_STATE(565)] = 15514, + [SMALL_STATE(566)] = 15564, + [SMALL_STATE(567)] = 15614, + [SMALL_STATE(568)] = 15668, + [SMALL_STATE(569)] = 15718, + [SMALL_STATE(570)] = 15768, + [SMALL_STATE(571)] = 15818, + [SMALL_STATE(572)] = 15868, + [SMALL_STATE(573)] = 15918, + [SMALL_STATE(574)] = 15968, + [SMALL_STATE(575)] = 16018, + [SMALL_STATE(576)] = 16101, + [SMALL_STATE(577)] = 16152, + [SMALL_STATE(578)] = 16245, + [SMALL_STATE(579)] = 16296, + [SMALL_STATE(580)] = 16345, + [SMALL_STATE(581)] = 16394, + [SMALL_STATE(582)] = 16457, + [SMALL_STATE(583)] = 16542, + [SMALL_STATE(584)] = 16635, + [SMALL_STATE(585)] = 16728, + [SMALL_STATE(586)] = 16791, + [SMALL_STATE(587)] = 16878, + [SMALL_STATE(588)] = 16971, + [SMALL_STATE(589)] = 17040, + [SMALL_STATE(590)] = 17121, + [SMALL_STATE(591)] = 17214, + [SMALL_STATE(592)] = 17265, + [SMALL_STATE(593)] = 17332, + [SMALL_STATE(594)] = 17425, + [SMALL_STATE(595)] = 17518, + [SMALL_STATE(596)] = 17581, + [SMALL_STATE(597)] = 17674, + [SMALL_STATE(598)] = 17751, + [SMALL_STATE(599)] = 17844, + [SMALL_STATE(600)] = 17937, + [SMALL_STATE(601)] = 17994, + [SMALL_STATE(602)] = 18045, + [SMALL_STATE(603)] = 18094, + [SMALL_STATE(604)] = 18143, + [SMALL_STATE(605)] = 18232, + [SMALL_STATE(606)] = 18325, + [SMALL_STATE(607)] = 18398, + [SMALL_STATE(608)] = 18491, + [SMALL_STATE(609)] = 18576, + [SMALL_STATE(610)] = 18634, + [SMALL_STATE(611)] = 18726, + [SMALL_STATE(612)] = 18786, + [SMALL_STATE(613)] = 18834, + [SMALL_STATE(614)] = 18884, + [SMALL_STATE(615)] = 18936, + [SMALL_STATE(616)] = 18986, + [SMALL_STATE(617)] = 19046, + [SMALL_STATE(618)] = 19096, + [SMALL_STATE(619)] = 19150, + [SMALL_STATE(620)] = 19198, + [SMALL_STATE(621)] = 19256, + [SMALL_STATE(622)] = 19308, + [SMALL_STATE(623)] = 19358, + [SMALL_STATE(624)] = 19419, + [SMALL_STATE(625)] = 19466, + [SMALL_STATE(626)] = 19557, + [SMALL_STATE(627)] = 19618, + [SMALL_STATE(628)] = 19665, + [SMALL_STATE(629)] = 19714, + [SMALL_STATE(630)] = 19797, + [SMALL_STATE(631)] = 19882, + [SMALL_STATE(632)] = 19949, + [SMALL_STATE(633)] = 20000, + [SMALL_STATE(634)] = 20047, + [SMALL_STATE(635)] = 20094, + [SMALL_STATE(636)] = 20173, + [SMALL_STATE(637)] = 20254, + [SMALL_STATE(638)] = 20337, + [SMALL_STATE(639)] = 20402, + [SMALL_STATE(640)] = 20449, + [SMALL_STATE(641)] = 20524, + [SMALL_STATE(642)] = 20611, + [SMALL_STATE(643)] = 20658, + [SMALL_STATE(644)] = 20709, + [SMALL_STATE(645)] = 20756, + [SMALL_STATE(646)] = 20803, + [SMALL_STATE(647)] = 20894, + [SMALL_STATE(648)] = 20941, + [SMALL_STATE(649)] = 20992, + [SMALL_STATE(650)] = 21083, + [SMALL_STATE(651)] = 21134, + [SMALL_STATE(652)] = 21181, + [SMALL_STATE(653)] = 21228, + [SMALL_STATE(654)] = 21275, + [SMALL_STATE(655)] = 21322, + [SMALL_STATE(656)] = 21369, + [SMALL_STATE(657)] = 21416, + [SMALL_STATE(658)] = 21467, + [SMALL_STATE(659)] = 21514, + [SMALL_STATE(660)] = 21561, + [SMALL_STATE(661)] = 21610, + [SMALL_STATE(662)] = 21657, + [SMALL_STATE(663)] = 21708, + [SMALL_STATE(664)] = 21755, + [SMALL_STATE(665)] = 21806, + [SMALL_STATE(666)] = 21857, + [SMALL_STATE(667)] = 21904, + [SMALL_STATE(668)] = 21955, + [SMALL_STATE(669)] = 22002, + [SMALL_STATE(670)] = 22093, + [SMALL_STATE(671)] = 22184, + [SMALL_STATE(672)] = 22231, + [SMALL_STATE(673)] = 22278, + [SMALL_STATE(674)] = 22369, + [SMALL_STATE(675)] = 22416, + [SMALL_STATE(676)] = 22507, + [SMALL_STATE(677)] = 22598, + [SMALL_STATE(678)] = 22645, + [SMALL_STATE(679)] = 22692, + [SMALL_STATE(680)] = 22783, + [SMALL_STATE(681)] = 22874, + [SMALL_STATE(682)] = 22945, + [SMALL_STATE(683)] = 23006, + [SMALL_STATE(684)] = 23053, + [SMALL_STATE(685)] = 23138, + [SMALL_STATE(686)] = 23205, + [SMALL_STATE(687)] = 23284, + [SMALL_STATE(688)] = 23365, + [SMALL_STATE(689)] = 23448, + [SMALL_STATE(690)] = 23513, + [SMALL_STATE(691)] = 23574, + [SMALL_STATE(692)] = 23649, + [SMALL_STATE(693)] = 23736, + [SMALL_STATE(694)] = 23827, + [SMALL_STATE(695)] = 23918, + [SMALL_STATE(696)] = 23965, + [SMALL_STATE(697)] = 24056, + [SMALL_STATE(698)] = 24147, + [SMALL_STATE(699)] = 24238, + [SMALL_STATE(700)] = 24285, + [SMALL_STATE(701)] = 24376, + [SMALL_STATE(702)] = 24467, + [SMALL_STATE(703)] = 24514, + [SMALL_STATE(704)] = 24561, + [SMALL_STATE(705)] = 24652, + [SMALL_STATE(706)] = 24699, + [SMALL_STATE(707)] = 24750, + [SMALL_STATE(708)] = 24799, + [SMALL_STATE(709)] = 24846, + [SMALL_STATE(710)] = 24937, + [SMALL_STATE(711)] = 24984, + [SMALL_STATE(712)] = 25075, + [SMALL_STATE(713)] = 25166, + [SMALL_STATE(714)] = 25217, + [SMALL_STATE(715)] = 25264, + [SMALL_STATE(716)] = 25311, + [SMALL_STATE(717)] = 25358, + [SMALL_STATE(718)] = 25405, + [SMALL_STATE(719)] = 25452, + [SMALL_STATE(720)] = 25503, + [SMALL_STATE(721)] = 25552, + [SMALL_STATE(722)] = 25599, + [SMALL_STATE(723)] = 25646, + [SMALL_STATE(724)] = 25737, + [SMALL_STATE(725)] = 25784, + [SMALL_STATE(726)] = 25831, + [SMALL_STATE(727)] = 25878, + [SMALL_STATE(728)] = 25969, + [SMALL_STATE(729)] = 26016, + [SMALL_STATE(730)] = 26067, + [SMALL_STATE(731)] = 26158, + [SMALL_STATE(732)] = 26229, + [SMALL_STATE(733)] = 26276, + [SMALL_STATE(734)] = 26323, + [SMALL_STATE(735)] = 26370, + [SMALL_STATE(736)] = 26417, + [SMALL_STATE(737)] = 26468, + [SMALL_STATE(738)] = 26515, + [SMALL_STATE(739)] = 26598, + [SMALL_STATE(740)] = 26688, + [SMALL_STATE(741)] = 26740, + [SMALL_STATE(742)] = 26790, + [SMALL_STATE(743)] = 26842, + [SMALL_STATE(744)] = 26932, + [SMALL_STATE(745)] = 26984, + [SMALL_STATE(746)] = 27076, + [SMALL_STATE(747)] = 27170, + [SMALL_STATE(748)] = 27220, + [SMALL_STATE(749)] = 27314, + [SMALL_STATE(750)] = 27408, + [SMALL_STATE(751)] = 27458, + [SMALL_STATE(752)] = 27552, + [SMALL_STATE(753)] = 27646, + [SMALL_STATE(754)] = 27698, + [SMALL_STATE(755)] = 27792, + [SMALL_STATE(756)] = 27871, + [SMALL_STATE(757)] = 27960, + [SMALL_STATE(758)] = 28053, + [SMALL_STATE(759)] = 28146, + [SMALL_STATE(760)] = 28197, + [SMALL_STATE(761)] = 28290, + [SMALL_STATE(762)] = 28383, + [SMALL_STATE(763)] = 28434, + [SMALL_STATE(764)] = 28527, + [SMALL_STATE(765)] = 28616, + [SMALL_STATE(766)] = 28709, + [SMALL_STATE(767)] = 28798, + [SMALL_STATE(768)] = 28891, + [SMALL_STATE(769)] = 28980, + [SMALL_STATE(770)] = 29073, + [SMALL_STATE(771)] = 29162, + [SMALL_STATE(772)] = 29251, + [SMALL_STATE(773)] = 29340, + [SMALL_STATE(774)] = 29433, + [SMALL_STATE(775)] = 29522, + [SMALL_STATE(776)] = 29615, + [SMALL_STATE(777)] = 29708, + [SMALL_STATE(778)] = 29801, + [SMALL_STATE(779)] = 29890, + [SMALL_STATE(780)] = 29979, + [SMALL_STATE(781)] = 30072, + [SMALL_STATE(782)] = 30165, + [SMALL_STATE(783)] = 30258, + [SMALL_STATE(784)] = 30351, + [SMALL_STATE(785)] = 30444, + [SMALL_STATE(786)] = 30537, + [SMALL_STATE(787)] = 30630, + [SMALL_STATE(788)] = 30723, + [SMALL_STATE(789)] = 30816, + [SMALL_STATE(790)] = 30909, + [SMALL_STATE(791)] = 30998, + [SMALL_STATE(792)] = 31087, + [SMALL_STATE(793)] = 31138, + [SMALL_STATE(794)] = 31231, + [SMALL_STATE(795)] = 31282, + [SMALL_STATE(796)] = 31371, + [SMALL_STATE(797)] = 31440, + [SMALL_STATE(798)] = 31499, + [SMALL_STATE(799)] = 31592, + [SMALL_STATE(800)] = 31673, + [SMALL_STATE(801)] = 31766, + [SMALL_STATE(802)] = 31859, + [SMALL_STATE(803)] = 31952, + [SMALL_STATE(804)] = 32041, + [SMALL_STATE(805)] = 32134, + [SMALL_STATE(806)] = 32227, + [SMALL_STATE(807)] = 32310, + [SMALL_STATE(808)] = 32403, + [SMALL_STATE(809)] = 32468, + [SMALL_STATE(810)] = 32561, + [SMALL_STATE(811)] = 32638, + [SMALL_STATE(812)] = 32727, + [SMALL_STATE(813)] = 32812, + [SMALL_STATE(814)] = 32893, + [SMALL_STATE(815)] = 32986, + [SMALL_STATE(816)] = 33049, + [SMALL_STATE(817)] = 33142, + [SMALL_STATE(818)] = 33235, + [SMALL_STATE(819)] = 33294, + [SMALL_STATE(820)] = 33387, + [SMALL_STATE(821)] = 33460, + [SMALL_STATE(822)] = 33553, + [SMALL_STATE(823)] = 33646, + [SMALL_STATE(824)] = 33739, + [SMALL_STATE(825)] = 33827, + [SMALL_STATE(826)] = 33913, + [SMALL_STATE(827)] = 34001, + [SMALL_STATE(828)] = 34089, + [SMALL_STATE(829)] = 34135, + [SMALL_STATE(830)] = 34221, + [SMALL_STATE(831)] = 34309, + [SMALL_STATE(832)] = 34399, + [SMALL_STATE(833)] = 34487, + [SMALL_STATE(834)] = 34575, + [SMALL_STATE(835)] = 34661, + [SMALL_STATE(836)] = 34747, + [SMALL_STATE(837)] = 34833, + [SMALL_STATE(838)] = 34919, + [SMALL_STATE(839)] = 34969, + [SMALL_STATE(840)] = 35057, + [SMALL_STATE(841)] = 35103, + [SMALL_STATE(842)] = 35191, + [SMALL_STATE(843)] = 35279, + [SMALL_STATE(844)] = 35367, + [SMALL_STATE(845)] = 35435, + [SMALL_STATE(846)] = 35493, + [SMALL_STATE(847)] = 35573, + [SMALL_STATE(848)] = 35655, + [SMALL_STATE(849)] = 35719, + [SMALL_STATE(850)] = 35795, + [SMALL_STATE(851)] = 35873, + [SMALL_STATE(852)] = 35953, + [SMALL_STATE(853)] = 36015, + [SMALL_STATE(854)] = 36073, + [SMALL_STATE(855)] = 36145, + [SMALL_STATE(856)] = 36229, + [SMALL_STATE(857)] = 36317, + [SMALL_STATE(858)] = 36405, + [SMALL_STATE(859)] = 36493, + [SMALL_STATE(860)] = 36581, + [SMALL_STATE(861)] = 36669, + [SMALL_STATE(862)] = 36757, + [SMALL_STATE(863)] = 36844, + [SMALL_STATE(864)] = 36931, + [SMALL_STATE(865)] = 37018, + [SMALL_STATE(866)] = 37107, + [SMALL_STATE(867)] = 37194, + [SMALL_STATE(868)] = 37281, + [SMALL_STATE(869)] = 37368, + [SMALL_STATE(870)] = 37455, + [SMALL_STATE(871)] = 37542, + [SMALL_STATE(872)] = 37626, + [SMALL_STATE(873)] = 37704, + [SMALL_STATE(874)] = 37788, + [SMALL_STATE(875)] = 37858, + [SMALL_STATE(876)] = 37929, + [SMALL_STATE(877)] = 37986, + [SMALL_STATE(878)] = 38057, + [SMALL_STATE(879)] = 38128, + [SMALL_STATE(880)] = 38193, + [SMALL_STATE(881)] = 38250, + [SMALL_STATE(882)] = 38321, + [SMALL_STATE(883)] = 38392, + [SMALL_STATE(884)] = 38463, + [SMALL_STATE(885)] = 38534, + [SMALL_STATE(886)] = 38586, + [SMALL_STATE(887)] = 38642, + [SMALL_STATE(888)] = 38700, + [SMALL_STATE(889)] = 38758, + [SMALL_STATE(890)] = 38814, + [SMALL_STATE(891)] = 38872, + [SMALL_STATE(892)] = 38928, + [SMALL_STATE(893)] = 38984, + [SMALL_STATE(894)] = 39040, + [SMALL_STATE(895)] = 39098, + [SMALL_STATE(896)] = 39156, + [SMALL_STATE(897)] = 39212, + [SMALL_STATE(898)] = 39270, + [SMALL_STATE(899)] = 39321, + [SMALL_STATE(900)] = 39372, + [SMALL_STATE(901)] = 39423, + [SMALL_STATE(902)] = 39476, + [SMALL_STATE(903)] = 39527, + [SMALL_STATE(904)] = 39578, + [SMALL_STATE(905)] = 39629, + [SMALL_STATE(906)] = 39689, + [SMALL_STATE(907)] = 39739, + [SMALL_STATE(908)] = 39787, + [SMALL_STATE(909)] = 39837, + [SMALL_STATE(910)] = 39889, + [SMALL_STATE(911)] = 39934, + [SMALL_STATE(912)] = 39979, + [SMALL_STATE(913)] = 40026, + [SMALL_STATE(914)] = 40081, + [SMALL_STATE(915)] = 40124, + [SMALL_STATE(916)] = 40167, + [SMALL_STATE(917)] = 40214, + [SMALL_STATE(918)] = 40259, + [SMALL_STATE(919)] = 40302, + [SMALL_STATE(920)] = 40357, + [SMALL_STATE(921)] = 40402, + [SMALL_STATE(922)] = 40442, + [SMALL_STATE(923)] = 40480, + [SMALL_STATE(924)] = 40518, + [SMALL_STATE(925)] = 40556, + [SMALL_STATE(926)] = 40590, + [SMALL_STATE(927)] = 40628, + [SMALL_STATE(928)] = 40666, + [SMALL_STATE(929)] = 40704, + [SMALL_STATE(930)] = 40731, + [SMALL_STATE(931)] = 40758, + [SMALL_STATE(932)] = 40785, + [SMALL_STATE(933)] = 40812, + [SMALL_STATE(934)] = 40839, + [SMALL_STATE(935)] = 40866, + [SMALL_STATE(936)] = 40893, + [SMALL_STATE(937)] = 40920, + [SMALL_STATE(938)] = 40947, + [SMALL_STATE(939)] = 40974, + [SMALL_STATE(940)] = 41001, + [SMALL_STATE(941)] = 41028, + [SMALL_STATE(942)] = 41055, + [SMALL_STATE(943)] = 41084, + [SMALL_STATE(944)] = 41113, + [SMALL_STATE(945)] = 41140, + [SMALL_STATE(946)] = 41167, + [SMALL_STATE(947)] = 41194, + [SMALL_STATE(948)] = 41221, + [SMALL_STATE(949)] = 41248, + [SMALL_STATE(950)] = 41275, + [SMALL_STATE(951)] = 41302, + [SMALL_STATE(952)] = 41329, + [SMALL_STATE(953)] = 41356, + [SMALL_STATE(954)] = 41383, + [SMALL_STATE(955)] = 41416, + [SMALL_STATE(956)] = 41443, + [SMALL_STATE(957)] = 41470, + [SMALL_STATE(958)] = 41497, + [SMALL_STATE(959)] = 41524, + [SMALL_STATE(960)] = 41551, + [SMALL_STATE(961)] = 41578, + [SMALL_STATE(962)] = 41604, + [SMALL_STATE(963)] = 41646, + [SMALL_STATE(964)] = 41688, + [SMALL_STATE(965)] = 41730, + [SMALL_STATE(966)] = 41756, + [SMALL_STATE(967)] = 41784, + [SMALL_STATE(968)] = 41810, + [SMALL_STATE(969)] = 41836, + [SMALL_STATE(970)] = 41862, + [SMALL_STATE(971)] = 41900, + [SMALL_STATE(972)] = 41940, + [SMALL_STATE(973)] = 41986, + [SMALL_STATE(974)] = 42028, + [SMALL_STATE(975)] = 42072, + [SMALL_STATE(976)] = 42098, + [SMALL_STATE(977)] = 42138, + [SMALL_STATE(978)] = 42173, + [SMALL_STATE(979)] = 42212, + [SMALL_STATE(980)] = 42237, + [SMALL_STATE(981)] = 42272, + [SMALL_STATE(982)] = 42297, + [SMALL_STATE(983)] = 42332, + [SMALL_STATE(984)] = 42367, + [SMALL_STATE(985)] = 42392, + [SMALL_STATE(986)] = 42427, + [SMALL_STATE(987)] = 42462, + [SMALL_STATE(988)] = 42497, + [SMALL_STATE(989)] = 42532, + [SMALL_STATE(990)] = 42557, + [SMALL_STATE(991)] = 42582, + [SMALL_STATE(992)] = 42617, + [SMALL_STATE(993)] = 42658, + [SMALL_STATE(994)] = 42693, + [SMALL_STATE(995)] = 42728, + [SMALL_STATE(996)] = 42763, + [SMALL_STATE(997)] = 42802, + [SMALL_STATE(998)] = 42845, + [SMALL_STATE(999)] = 42880, + [SMALL_STATE(1000)] = 42915, + [SMALL_STATE(1001)] = 42956, + [SMALL_STATE(1002)] = 42991, + [SMALL_STATE(1003)] = 43026, + [SMALL_STATE(1004)] = 43061, + [SMALL_STATE(1005)] = 43086, + [SMALL_STATE(1006)] = 43121, + [SMALL_STATE(1007)] = 43156, + [SMALL_STATE(1008)] = 43191, + [SMALL_STATE(1009)] = 43226, + [SMALL_STATE(1010)] = 43261, + [SMALL_STATE(1011)] = 43296, + [SMALL_STATE(1012)] = 43339, + [SMALL_STATE(1013)] = 43374, + [SMALL_STATE(1014)] = 43406, + [SMALL_STATE(1015)] = 43428, + [SMALL_STATE(1016)] = 43460, + [SMALL_STATE(1017)] = 43492, + [SMALL_STATE(1018)] = 43524, + [SMALL_STATE(1019)] = 43556, + [SMALL_STATE(1020)] = 43588, + [SMALL_STATE(1021)] = 43610, + [SMALL_STATE(1022)] = 43642, + [SMALL_STATE(1023)] = 43674, + [SMALL_STATE(1024)] = 43696, + [SMALL_STATE(1025)] = 43728, + [SMALL_STATE(1026)] = 43760, + [SMALL_STATE(1027)] = 43792, + [SMALL_STATE(1028)] = 43824, + [SMALL_STATE(1029)] = 43856, + [SMALL_STATE(1030)] = 43888, + [SMALL_STATE(1031)] = 43920, + [SMALL_STATE(1032)] = 43952, + [SMALL_STATE(1033)] = 43974, + [SMALL_STATE(1034)] = 43996, + [SMALL_STATE(1035)] = 44028, + [SMALL_STATE(1036)] = 44060, + [SMALL_STATE(1037)] = 44097, + [SMALL_STATE(1038)] = 44127, + [SMALL_STATE(1039)] = 44157, + [SMALL_STATE(1040)] = 44187, + [SMALL_STATE(1041)] = 44217, + [SMALL_STATE(1042)] = 44247, + [SMALL_STATE(1043)] = 44283, + [SMALL_STATE(1044)] = 44319, + [SMALL_STATE(1045)] = 44349, + [SMALL_STATE(1046)] = 44385, + [SMALL_STATE(1047)] = 44415, + [SMALL_STATE(1048)] = 44451, + [SMALL_STATE(1049)] = 44481, + [SMALL_STATE(1050)] = 44514, + [SMALL_STATE(1051)] = 44547, + [SMALL_STATE(1052)] = 44580, + [SMALL_STATE(1053)] = 44613, + [SMALL_STATE(1054)] = 44646, + [SMALL_STATE(1055)] = 44679, + [SMALL_STATE(1056)] = 44712, + [SMALL_STATE(1057)] = 44739, + [SMALL_STATE(1058)] = 44772, + [SMALL_STATE(1059)] = 44802, + [SMALL_STATE(1060)] = 44828, + [SMALL_STATE(1061)] = 44858, + [SMALL_STATE(1062)] = 44888, + [SMALL_STATE(1063)] = 44918, + [SMALL_STATE(1064)] = 44948, + [SMALL_STATE(1065)] = 44978, + [SMALL_STATE(1066)] = 45008, + [SMALL_STATE(1067)] = 45038, + [SMALL_STATE(1068)] = 45068, + [SMALL_STATE(1069)] = 45098, + [SMALL_STATE(1070)] = 45124, + [SMALL_STATE(1071)] = 45154, + [SMALL_STATE(1072)] = 45182, + [SMALL_STATE(1073)] = 45212, + [SMALL_STATE(1074)] = 45242, + [SMALL_STATE(1075)] = 45272, + [SMALL_STATE(1076)] = 45302, + [SMALL_STATE(1077)] = 45332, + [SMALL_STATE(1078)] = 45362, + [SMALL_STATE(1079)] = 45392, + [SMALL_STATE(1080)] = 45422, + [SMALL_STATE(1081)] = 45452, + [SMALL_STATE(1082)] = 45479, + [SMALL_STATE(1083)] = 45506, + [SMALL_STATE(1084)] = 45520, + [SMALL_STATE(1085)] = 45542, + [SMALL_STATE(1086)] = 45556, + [SMALL_STATE(1087)] = 45580, + [SMALL_STATE(1088)] = 45604, + [SMALL_STATE(1089)] = 45618, + [SMALL_STATE(1090)] = 45638, + [SMALL_STATE(1091)] = 45662, + [SMALL_STATE(1092)] = 45684, + [SMALL_STATE(1093)] = 45708, + [SMALL_STATE(1094)] = 45732, + [SMALL_STATE(1095)] = 45752, + [SMALL_STATE(1096)] = 45776, + [SMALL_STATE(1097)] = 45794, + [SMALL_STATE(1098)] = 45818, + [SMALL_STATE(1099)] = 45836, + [SMALL_STATE(1100)] = 45858, + [SMALL_STATE(1101)] = 45882, + [SMALL_STATE(1102)] = 45906, + [SMALL_STATE(1103)] = 45930, + [SMALL_STATE(1104)] = 45944, + [SMALL_STATE(1105)] = 45966, + [SMALL_STATE(1106)] = 45988, + [SMALL_STATE(1107)] = 46010, + [SMALL_STATE(1108)] = 46024, + [SMALL_STATE(1109)] = 46037, + [SMALL_STATE(1110)] = 46050, + [SMALL_STATE(1111)] = 46071, + [SMALL_STATE(1112)] = 46090, + [SMALL_STATE(1113)] = 46109, + [SMALL_STATE(1114)] = 46128, + [SMALL_STATE(1115)] = 46147, + [SMALL_STATE(1116)] = 46160, + [SMALL_STATE(1117)] = 46173, + [SMALL_STATE(1118)] = 46192, + [SMALL_STATE(1119)] = 46211, + [SMALL_STATE(1120)] = 46230, + [SMALL_STATE(1121)] = 46251, + [SMALL_STATE(1122)] = 46264, + [SMALL_STATE(1123)] = 46283, + [SMALL_STATE(1124)] = 46298, + [SMALL_STATE(1125)] = 46311, + [SMALL_STATE(1126)] = 46324, + [SMALL_STATE(1127)] = 46337, + [SMALL_STATE(1128)] = 46358, + [SMALL_STATE(1129)] = 46377, + [SMALL_STATE(1130)] = 46396, + [SMALL_STATE(1131)] = 46413, + [SMALL_STATE(1132)] = 46426, + [SMALL_STATE(1133)] = 46447, + [SMALL_STATE(1134)] = 46460, + [SMALL_STATE(1135)] = 46475, + [SMALL_STATE(1136)] = 46496, + [SMALL_STATE(1137)] = 46517, + [SMALL_STATE(1138)] = 46536, + [SMALL_STATE(1139)] = 46556, + [SMALL_STATE(1140)] = 46576, + [SMALL_STATE(1141)] = 46596, + [SMALL_STATE(1142)] = 46610, + [SMALL_STATE(1143)] = 46624, + [SMALL_STATE(1144)] = 46638, + [SMALL_STATE(1145)] = 46658, + [SMALL_STATE(1146)] = 46672, + [SMALL_STATE(1147)] = 46686, + [SMALL_STATE(1148)] = 46700, + [SMALL_STATE(1149)] = 46716, + [SMALL_STATE(1150)] = 46736, + [SMALL_STATE(1151)] = 46756, + [SMALL_STATE(1152)] = 46776, + [SMALL_STATE(1153)] = 46790, + [SMALL_STATE(1154)] = 46804, + [SMALL_STATE(1155)] = 46824, + [SMALL_STATE(1156)] = 46838, + [SMALL_STATE(1157)] = 46856, + [SMALL_STATE(1158)] = 46876, + [SMALL_STATE(1159)] = 46896, + [SMALL_STATE(1160)] = 46916, + [SMALL_STATE(1161)] = 46936, + [SMALL_STATE(1162)] = 46950, + [SMALL_STATE(1163)] = 46970, + [SMALL_STATE(1164)] = 46990, + [SMALL_STATE(1165)] = 47006, + [SMALL_STATE(1166)] = 47020, + [SMALL_STATE(1167)] = 47034, + [SMALL_STATE(1168)] = 47048, + [SMALL_STATE(1169)] = 47068, + [SMALL_STATE(1170)] = 47088, + [SMALL_STATE(1171)] = 47108, + [SMALL_STATE(1172)] = 47128, + [SMALL_STATE(1173)] = 47142, + [SMALL_STATE(1174)] = 47162, + [SMALL_STATE(1175)] = 47176, + [SMALL_STATE(1176)] = 47196, + [SMALL_STATE(1177)] = 47210, + [SMALL_STATE(1178)] = 47224, + [SMALL_STATE(1179)] = 47240, + [SMALL_STATE(1180)] = 47254, + [SMALL_STATE(1181)] = 47268, + [SMALL_STATE(1182)] = 47288, + [SMALL_STATE(1183)] = 47302, + [SMALL_STATE(1184)] = 47316, + [SMALL_STATE(1185)] = 47330, + [SMALL_STATE(1186)] = 47348, + [SMALL_STATE(1187)] = 47360, + [SMALL_STATE(1188)] = 47374, + [SMALL_STATE(1189)] = 47388, + [SMALL_STATE(1190)] = 47402, + [SMALL_STATE(1191)] = 47416, + [SMALL_STATE(1192)] = 47436, + [SMALL_STATE(1193)] = 47450, + [SMALL_STATE(1194)] = 47468, + [SMALL_STATE(1195)] = 47482, + [SMALL_STATE(1196)] = 47496, + [SMALL_STATE(1197)] = 47510, + [SMALL_STATE(1198)] = 47524, + [SMALL_STATE(1199)] = 47538, + [SMALL_STATE(1200)] = 47552, + [SMALL_STATE(1201)] = 47566, + [SMALL_STATE(1202)] = 47580, + [SMALL_STATE(1203)] = 47592, + [SMALL_STATE(1204)] = 47606, + [SMALL_STATE(1205)] = 47618, + [SMALL_STATE(1206)] = 47629, + [SMALL_STATE(1207)] = 47644, + [SMALL_STATE(1208)] = 47655, + [SMALL_STATE(1209)] = 47672, + [SMALL_STATE(1210)] = 47689, + [SMALL_STATE(1211)] = 47706, + [SMALL_STATE(1212)] = 47723, + [SMALL_STATE(1213)] = 47738, + [SMALL_STATE(1214)] = 47757, + [SMALL_STATE(1215)] = 47774, + [SMALL_STATE(1216)] = 47791, + [SMALL_STATE(1217)] = 47808, + [SMALL_STATE(1218)] = 47825, + [SMALL_STATE(1219)] = 47836, + [SMALL_STATE(1220)] = 47853, + [SMALL_STATE(1221)] = 47870, + [SMALL_STATE(1222)] = 47885, + [SMALL_STATE(1223)] = 47902, + [SMALL_STATE(1224)] = 47919, + [SMALL_STATE(1225)] = 47930, + [SMALL_STATE(1226)] = 47947, + [SMALL_STATE(1227)] = 47962, + [SMALL_STATE(1228)] = 47979, + [SMALL_STATE(1229)] = 47996, + [SMALL_STATE(1230)] = 48013, + [SMALL_STATE(1231)] = 48030, + [SMALL_STATE(1232)] = 48047, + [SMALL_STATE(1233)] = 48064, + [SMALL_STATE(1234)] = 48079, + [SMALL_STATE(1235)] = 48096, + [SMALL_STATE(1236)] = 48109, + [SMALL_STATE(1237)] = 48126, + [SMALL_STATE(1238)] = 48137, + [SMALL_STATE(1239)] = 48152, + [SMALL_STATE(1240)] = 48171, + [SMALL_STATE(1241)] = 48188, + [SMALL_STATE(1242)] = 48205, + [SMALL_STATE(1243)] = 48222, + [SMALL_STATE(1244)] = 48239, + [SMALL_STATE(1245)] = 48254, + [SMALL_STATE(1246)] = 48271, + [SMALL_STATE(1247)] = 48286, + [SMALL_STATE(1248)] = 48303, + [SMALL_STATE(1249)] = 48320, + [SMALL_STATE(1250)] = 48337, + [SMALL_STATE(1251)] = 48354, + [SMALL_STATE(1252)] = 48365, + [SMALL_STATE(1253)] = 48382, + [SMALL_STATE(1254)] = 48397, + [SMALL_STATE(1255)] = 48414, + [SMALL_STATE(1256)] = 48429, + [SMALL_STATE(1257)] = 48446, + [SMALL_STATE(1258)] = 48461, + [SMALL_STATE(1259)] = 48480, + [SMALL_STATE(1260)] = 48499, + [SMALL_STATE(1261)] = 48516, + [SMALL_STATE(1262)] = 48533, + [SMALL_STATE(1263)] = 48550, + [SMALL_STATE(1264)] = 48565, + [SMALL_STATE(1265)] = 48580, + [SMALL_STATE(1266)] = 48597, + [SMALL_STATE(1267)] = 48614, + [SMALL_STATE(1268)] = 48633, + [SMALL_STATE(1269)] = 48648, + [SMALL_STATE(1270)] = 48665, + [SMALL_STATE(1271)] = 48682, + [SMALL_STATE(1272)] = 48699, + [SMALL_STATE(1273)] = 48716, + [SMALL_STATE(1274)] = 48731, + [SMALL_STATE(1275)] = 48744, + [SMALL_STATE(1276)] = 48759, + [SMALL_STATE(1277)] = 48776, + [SMALL_STATE(1278)] = 48793, + [SMALL_STATE(1279)] = 48810, + [SMALL_STATE(1280)] = 48827, + [SMALL_STATE(1281)] = 48844, + [SMALL_STATE(1282)] = 48863, + [SMALL_STATE(1283)] = 48878, + [SMALL_STATE(1284)] = 48892, + [SMALL_STATE(1285)] = 48906, + [SMALL_STATE(1286)] = 48920, + [SMALL_STATE(1287)] = 48934, + [SMALL_STATE(1288)] = 48948, + [SMALL_STATE(1289)] = 48962, + [SMALL_STATE(1290)] = 48976, + [SMALL_STATE(1291)] = 48990, + [SMALL_STATE(1292)] = 49004, + [SMALL_STATE(1293)] = 49018, + [SMALL_STATE(1294)] = 49032, + [SMALL_STATE(1295)] = 49042, + [SMALL_STATE(1296)] = 49056, + [SMALL_STATE(1297)] = 49070, + [SMALL_STATE(1298)] = 49082, + [SMALL_STATE(1299)] = 49096, + [SMALL_STATE(1300)] = 49110, + [SMALL_STATE(1301)] = 49122, + [SMALL_STATE(1302)] = 49136, + [SMALL_STATE(1303)] = 49150, + [SMALL_STATE(1304)] = 49164, + [SMALL_STATE(1305)] = 49178, + [SMALL_STATE(1306)] = 49192, + [SMALL_STATE(1307)] = 49206, + [SMALL_STATE(1308)] = 49216, + [SMALL_STATE(1309)] = 49230, + [SMALL_STATE(1310)] = 49244, + [SMALL_STATE(1311)] = 49258, + [SMALL_STATE(1312)] = 49272, + [SMALL_STATE(1313)] = 49286, + [SMALL_STATE(1314)] = 49296, + [SMALL_STATE(1315)] = 49306, + [SMALL_STATE(1316)] = 49318, + [SMALL_STATE(1317)] = 49332, + [SMALL_STATE(1318)] = 49346, + [SMALL_STATE(1319)] = 49360, + [SMALL_STATE(1320)] = 49374, + [SMALL_STATE(1321)] = 49388, + [SMALL_STATE(1322)] = 49402, + [SMALL_STATE(1323)] = 49416, + [SMALL_STATE(1324)] = 49430, + [SMALL_STATE(1325)] = 49444, + [SMALL_STATE(1326)] = 49458, + [SMALL_STATE(1327)] = 49472, + [SMALL_STATE(1328)] = 49484, + [SMALL_STATE(1329)] = 49496, + [SMALL_STATE(1330)] = 49510, + [SMALL_STATE(1331)] = 49524, + [SMALL_STATE(1332)] = 49538, + [SMALL_STATE(1333)] = 49552, + [SMALL_STATE(1334)] = 49566, + [SMALL_STATE(1335)] = 49580, + [SMALL_STATE(1336)] = 49594, + [SMALL_STATE(1337)] = 49606, + [SMALL_STATE(1338)] = 49620, + [SMALL_STATE(1339)] = 49632, + [SMALL_STATE(1340)] = 49644, + [SMALL_STATE(1341)] = 49658, + [SMALL_STATE(1342)] = 49668, + [SMALL_STATE(1343)] = 49680, + [SMALL_STATE(1344)] = 49694, + [SMALL_STATE(1345)] = 49708, + [SMALL_STATE(1346)] = 49718, + [SMALL_STATE(1347)] = 49728, + [SMALL_STATE(1348)] = 49742, + [SMALL_STATE(1349)] = 49754, + [SMALL_STATE(1350)] = 49768, + [SMALL_STATE(1351)] = 49782, + [SMALL_STATE(1352)] = 49796, + [SMALL_STATE(1353)] = 49810, + [SMALL_STATE(1354)] = 49824, + [SMALL_STATE(1355)] = 49838, + [SMALL_STATE(1356)] = 49852, + [SMALL_STATE(1357)] = 49866, + [SMALL_STATE(1358)] = 49880, + [SMALL_STATE(1359)] = 49892, + [SMALL_STATE(1360)] = 49906, + [SMALL_STATE(1361)] = 49920, + [SMALL_STATE(1362)] = 49934, + [SMALL_STATE(1363)] = 49948, + [SMALL_STATE(1364)] = 49962, + [SMALL_STATE(1365)] = 49976, + [SMALL_STATE(1366)] = 49990, + [SMALL_STATE(1367)] = 50004, + [SMALL_STATE(1368)] = 50018, + [SMALL_STATE(1369)] = 50032, + [SMALL_STATE(1370)] = 50046, + [SMALL_STATE(1371)] = 50060, + [SMALL_STATE(1372)] = 50074, + [SMALL_STATE(1373)] = 50088, + [SMALL_STATE(1374)] = 50102, + [SMALL_STATE(1375)] = 50114, + [SMALL_STATE(1376)] = 50128, + [SMALL_STATE(1377)] = 50138, + [SMALL_STATE(1378)] = 50152, + [SMALL_STATE(1379)] = 50164, + [SMALL_STATE(1380)] = 50178, + [SMALL_STATE(1381)] = 50187, + [SMALL_STATE(1382)] = 50198, + [SMALL_STATE(1383)] = 50209, + [SMALL_STATE(1384)] = 50220, + [SMALL_STATE(1385)] = 50229, + [SMALL_STATE(1386)] = 50240, + [SMALL_STATE(1387)] = 50251, + [SMALL_STATE(1388)] = 50262, + [SMALL_STATE(1389)] = 50273, + [SMALL_STATE(1390)] = 50284, + [SMALL_STATE(1391)] = 50295, + [SMALL_STATE(1392)] = 50306, + [SMALL_STATE(1393)] = 50317, + [SMALL_STATE(1394)] = 50328, + [SMALL_STATE(1395)] = 50339, + [SMALL_STATE(1396)] = 50350, + [SMALL_STATE(1397)] = 50361, + [SMALL_STATE(1398)] = 50370, + [SMALL_STATE(1399)] = 50381, + [SMALL_STATE(1400)] = 50392, + [SMALL_STATE(1401)] = 50403, + [SMALL_STATE(1402)] = 50412, + [SMALL_STATE(1403)] = 50423, + [SMALL_STATE(1404)] = 50434, + [SMALL_STATE(1405)] = 50445, + [SMALL_STATE(1406)] = 50456, + [SMALL_STATE(1407)] = 50467, + [SMALL_STATE(1408)] = 50478, + [SMALL_STATE(1409)] = 50489, + [SMALL_STATE(1410)] = 50500, + [SMALL_STATE(1411)] = 50511, + [SMALL_STATE(1412)] = 50522, + [SMALL_STATE(1413)] = 50533, + [SMALL_STATE(1414)] = 50544, + [SMALL_STATE(1415)] = 50555, + [SMALL_STATE(1416)] = 50566, + [SMALL_STATE(1417)] = 50577, + [SMALL_STATE(1418)] = 50588, + [SMALL_STATE(1419)] = 50599, + [SMALL_STATE(1420)] = 50610, + [SMALL_STATE(1421)] = 50621, + [SMALL_STATE(1422)] = 50632, + [SMALL_STATE(1423)] = 50643, + [SMALL_STATE(1424)] = 50654, + [SMALL_STATE(1425)] = 50665, + [SMALL_STATE(1426)] = 50674, + [SMALL_STATE(1427)] = 50685, + [SMALL_STATE(1428)] = 50696, + [SMALL_STATE(1429)] = 50707, + [SMALL_STATE(1430)] = 50718, + [SMALL_STATE(1431)] = 50729, + [SMALL_STATE(1432)] = 50740, + [SMALL_STATE(1433)] = 50751, + [SMALL_STATE(1434)] = 50762, + [SMALL_STATE(1435)] = 50771, + [SMALL_STATE(1436)] = 50782, + [SMALL_STATE(1437)] = 50791, + [SMALL_STATE(1438)] = 50800, + [SMALL_STATE(1439)] = 50811, + [SMALL_STATE(1440)] = 50822, + [SMALL_STATE(1441)] = 50833, + [SMALL_STATE(1442)] = 50844, + [SMALL_STATE(1443)] = 50855, + [SMALL_STATE(1444)] = 50866, + [SMALL_STATE(1445)] = 50875, + [SMALL_STATE(1446)] = 50886, + [SMALL_STATE(1447)] = 50897, + [SMALL_STATE(1448)] = 50908, + [SMALL_STATE(1449)] = 50917, + [SMALL_STATE(1450)] = 50926, + [SMALL_STATE(1451)] = 50935, + [SMALL_STATE(1452)] = 50944, + [SMALL_STATE(1453)] = 50955, + [SMALL_STATE(1454)] = 50966, + [SMALL_STATE(1455)] = 50977, + [SMALL_STATE(1456)] = 50986, + [SMALL_STATE(1457)] = 50997, + [SMALL_STATE(1458)] = 51008, + [SMALL_STATE(1459)] = 51019, + [SMALL_STATE(1460)] = 51030, + [SMALL_STATE(1461)] = 51041, + [SMALL_STATE(1462)] = 51052, + [SMALL_STATE(1463)] = 51063, + [SMALL_STATE(1464)] = 51074, + [SMALL_STATE(1465)] = 51083, + [SMALL_STATE(1466)] = 51094, + [SMALL_STATE(1467)] = 51105, + [SMALL_STATE(1468)] = 51116, + [SMALL_STATE(1469)] = 51127, + [SMALL_STATE(1470)] = 51138, + [SMALL_STATE(1471)] = 51149, + [SMALL_STATE(1472)] = 51160, + [SMALL_STATE(1473)] = 51171, + [SMALL_STATE(1474)] = 51180, + [SMALL_STATE(1475)] = 51189, + [SMALL_STATE(1476)] = 51200, + [SMALL_STATE(1477)] = 51211, + [SMALL_STATE(1478)] = 51222, + [SMALL_STATE(1479)] = 51233, + [SMALL_STATE(1480)] = 51244, + [SMALL_STATE(1481)] = 51255, + [SMALL_STATE(1482)] = 51266, + [SMALL_STATE(1483)] = 51277, + [SMALL_STATE(1484)] = 51288, + [SMALL_STATE(1485)] = 51299, + [SMALL_STATE(1486)] = 51310, + [SMALL_STATE(1487)] = 51321, + [SMALL_STATE(1488)] = 51332, + [SMALL_STATE(1489)] = 51343, + [SMALL_STATE(1490)] = 51354, + [SMALL_STATE(1491)] = 51365, + [SMALL_STATE(1492)] = 51374, + [SMALL_STATE(1493)] = 51385, + [SMALL_STATE(1494)] = 51396, + [SMALL_STATE(1495)] = 51407, + [SMALL_STATE(1496)] = 51418, + [SMALL_STATE(1497)] = 51429, + [SMALL_STATE(1498)] = 51440, + [SMALL_STATE(1499)] = 51451, + [SMALL_STATE(1500)] = 51462, + [SMALL_STATE(1501)] = 51473, + [SMALL_STATE(1502)] = 51484, + [SMALL_STATE(1503)] = 51495, + [SMALL_STATE(1504)] = 51506, + [SMALL_STATE(1505)] = 51517, + [SMALL_STATE(1506)] = 51528, + [SMALL_STATE(1507)] = 51539, + [SMALL_STATE(1508)] = 51548, + [SMALL_STATE(1509)] = 51559, + [SMALL_STATE(1510)] = 51568, + [SMALL_STATE(1511)] = 51579, + [SMALL_STATE(1512)] = 51590, + [SMALL_STATE(1513)] = 51601, + [SMALL_STATE(1514)] = 51612, + [SMALL_STATE(1515)] = 51623, + [SMALL_STATE(1516)] = 51634, + [SMALL_STATE(1517)] = 51645, + [SMALL_STATE(1518)] = 51656, + [SMALL_STATE(1519)] = 51665, + [SMALL_STATE(1520)] = 51676, + [SMALL_STATE(1521)] = 51687, + [SMALL_STATE(1522)] = 51698, + [SMALL_STATE(1523)] = 51709, + [SMALL_STATE(1524)] = 51720, + [SMALL_STATE(1525)] = 51731, + [SMALL_STATE(1526)] = 51742, + [SMALL_STATE(1527)] = 51753, + [SMALL_STATE(1528)] = 51764, + [SMALL_STATE(1529)] = 51775, + [SMALL_STATE(1530)] = 51786, + [SMALL_STATE(1531)] = 51795, + [SMALL_STATE(1532)] = 51806, + [SMALL_STATE(1533)] = 51817, + [SMALL_STATE(1534)] = 51828, + [SMALL_STATE(1535)] = 51839, + [SMALL_STATE(1536)] = 51850, + [SMALL_STATE(1537)] = 51859, + [SMALL_STATE(1538)] = 51870, + [SMALL_STATE(1539)] = 51881, + [SMALL_STATE(1540)] = 51892, + [SMALL_STATE(1541)] = 51903, + [SMALL_STATE(1542)] = 51912, + [SMALL_STATE(1543)] = 51923, + [SMALL_STATE(1544)] = 51934, + [SMALL_STATE(1545)] = 51945, + [SMALL_STATE(1546)] = 51956, + [SMALL_STATE(1547)] = 51967, + [SMALL_STATE(1548)] = 51978, + [SMALL_STATE(1549)] = 51989, + [SMALL_STATE(1550)] = 51998, + [SMALL_STATE(1551)] = 52007, + [SMALL_STATE(1552)] = 52018, + [SMALL_STATE(1553)] = 52027, + [SMALL_STATE(1554)] = 52038, + [SMALL_STATE(1555)] = 52049, + [SMALL_STATE(1556)] = 52060, + [SMALL_STATE(1557)] = 52071, + [SMALL_STATE(1558)] = 52082, + [SMALL_STATE(1559)] = 52093, + [SMALL_STATE(1560)] = 52104, + [SMALL_STATE(1561)] = 52115, + [SMALL_STATE(1562)] = 52124, + [SMALL_STATE(1563)] = 52135, + [SMALL_STATE(1564)] = 52146, + [SMALL_STATE(1565)] = 52157, + [SMALL_STATE(1566)] = 52168, + [SMALL_STATE(1567)] = 52179, + [SMALL_STATE(1568)] = 52190, + [SMALL_STATE(1569)] = 52201, + [SMALL_STATE(1570)] = 52212, + [SMALL_STATE(1571)] = 52223, + [SMALL_STATE(1572)] = 52234, + [SMALL_STATE(1573)] = 52245, + [SMALL_STATE(1574)] = 52256, + [SMALL_STATE(1575)] = 52267, + [SMALL_STATE(1576)] = 52278, + [SMALL_STATE(1577)] = 52289, + [SMALL_STATE(1578)] = 52300, + [SMALL_STATE(1579)] = 52311, + [SMALL_STATE(1580)] = 52320, + [SMALL_STATE(1581)] = 52329, + [SMALL_STATE(1582)] = 52340, + [SMALL_STATE(1583)] = 52351, + [SMALL_STATE(1584)] = 52360, + [SMALL_STATE(1585)] = 52371, + [SMALL_STATE(1586)] = 52382, + [SMALL_STATE(1587)] = 52393, + [SMALL_STATE(1588)] = 52404, + [SMALL_STATE(1589)] = 52413, + [SMALL_STATE(1590)] = 52424, + [SMALL_STATE(1591)] = 52433, + [SMALL_STATE(1592)] = 52444, + [SMALL_STATE(1593)] = 52455, + [SMALL_STATE(1594)] = 52466, + [SMALL_STATE(1595)] = 52477, + [SMALL_STATE(1596)] = 52488, + [SMALL_STATE(1597)] = 52499, + [SMALL_STATE(1598)] = 52510, + [SMALL_STATE(1599)] = 52521, + [SMALL_STATE(1600)] = 52532, + [SMALL_STATE(1601)] = 52543, + [SMALL_STATE(1602)] = 52554, + [SMALL_STATE(1603)] = 52565, + [SMALL_STATE(1604)] = 52576, + [SMALL_STATE(1605)] = 52587, + [SMALL_STATE(1606)] = 52598, + [SMALL_STATE(1607)] = 52609, + [SMALL_STATE(1608)] = 52620, + [SMALL_STATE(1609)] = 52631, + [SMALL_STATE(1610)] = 52642, + [SMALL_STATE(1611)] = 52653, + [SMALL_STATE(1612)] = 52664, + [SMALL_STATE(1613)] = 52675, + [SMALL_STATE(1614)] = 52686, + [SMALL_STATE(1615)] = 52697, + [SMALL_STATE(1616)] = 52708, + [SMALL_STATE(1617)] = 52719, + [SMALL_STATE(1618)] = 52730, + [SMALL_STATE(1619)] = 52741, + [SMALL_STATE(1620)] = 52752, + [SMALL_STATE(1621)] = 52763, + [SMALL_STATE(1622)] = 52774, + [SMALL_STATE(1623)] = 52785, + [SMALL_STATE(1624)] = 52796, + [SMALL_STATE(1625)] = 52804, + [SMALL_STATE(1626)] = 52812, + [SMALL_STATE(1627)] = 52820, + [SMALL_STATE(1628)] = 52828, + [SMALL_STATE(1629)] = 52836, + [SMALL_STATE(1630)] = 52846, + [SMALL_STATE(1631)] = 52854, + [SMALL_STATE(1632)] = 52862, + [SMALL_STATE(1633)] = 52870, + [SMALL_STATE(1634)] = 52878, + [SMALL_STATE(1635)] = 52886, + [SMALL_STATE(1636)] = 52894, + [SMALL_STATE(1637)] = 52902, + [SMALL_STATE(1638)] = 52910, + [SMALL_STATE(1639)] = 52918, + [SMALL_STATE(1640)] = 52926, + [SMALL_STATE(1641)] = 52934, + [SMALL_STATE(1642)] = 52942, + [SMALL_STATE(1643)] = 52950, + [SMALL_STATE(1644)] = 52958, + [SMALL_STATE(1645)] = 52966, + [SMALL_STATE(1646)] = 52976, + [SMALL_STATE(1647)] = 52984, + [SMALL_STATE(1648)] = 52992, + [SMALL_STATE(1649)] = 53000, + [SMALL_STATE(1650)] = 53008, + [SMALL_STATE(1651)] = 53016, + [SMALL_STATE(1652)] = 53024, + [SMALL_STATE(1653)] = 53032, + [SMALL_STATE(1654)] = 53040, + [SMALL_STATE(1655)] = 53048, + [SMALL_STATE(1656)] = 53056, + [SMALL_STATE(1657)] = 53064, + [SMALL_STATE(1658)] = 53072, + [SMALL_STATE(1659)] = 53080, + [SMALL_STATE(1660)] = 53088, + [SMALL_STATE(1661)] = 53096, + [SMALL_STATE(1662)] = 53104, + [SMALL_STATE(1663)] = 53112, + [SMALL_STATE(1664)] = 53120, + [SMALL_STATE(1665)] = 53128, + [SMALL_STATE(1666)] = 53136, + [SMALL_STATE(1667)] = 53144, + [SMALL_STATE(1668)] = 53152, + [SMALL_STATE(1669)] = 53160, + [SMALL_STATE(1670)] = 53168, + [SMALL_STATE(1671)] = 53176, + [SMALL_STATE(1672)] = 53184, + [SMALL_STATE(1673)] = 53192, + [SMALL_STATE(1674)] = 53200, + [SMALL_STATE(1675)] = 53208, + [SMALL_STATE(1676)] = 53216, + [SMALL_STATE(1677)] = 53224, + [SMALL_STATE(1678)] = 53232, + [SMALL_STATE(1679)] = 53240, + [SMALL_STATE(1680)] = 53248, + [SMALL_STATE(1681)] = 53256, + [SMALL_STATE(1682)] = 53264, + [SMALL_STATE(1683)] = 53272, + [SMALL_STATE(1684)] = 53280, + [SMALL_STATE(1685)] = 53288, + [SMALL_STATE(1686)] = 53296, + [SMALL_STATE(1687)] = 53306, + [SMALL_STATE(1688)] = 53314, + [SMALL_STATE(1689)] = 53322, + [SMALL_STATE(1690)] = 53330, + [SMALL_STATE(1691)] = 53338, + [SMALL_STATE(1692)] = 53346, + [SMALL_STATE(1693)] = 53354, + [SMALL_STATE(1694)] = 53364, + [SMALL_STATE(1695)] = 53374, + [SMALL_STATE(1696)] = 53384, + [SMALL_STATE(1697)] = 53392, + [SMALL_STATE(1698)] = 53400, + [SMALL_STATE(1699)] = 53408, + [SMALL_STATE(1700)] = 53416, + [SMALL_STATE(1701)] = 53426, + [SMALL_STATE(1702)] = 53434, + [SMALL_STATE(1703)] = 53442, + [SMALL_STATE(1704)] = 53452, + [SMALL_STATE(1705)] = 53460, + [SMALL_STATE(1706)] = 53468, + [SMALL_STATE(1707)] = 53476, + [SMALL_STATE(1708)] = 53484, + [SMALL_STATE(1709)] = 53492, + [SMALL_STATE(1710)] = 53500, + [SMALL_STATE(1711)] = 53508, + [SMALL_STATE(1712)] = 53516, + [SMALL_STATE(1713)] = 53524, + [SMALL_STATE(1714)] = 53532, + [SMALL_STATE(1715)] = 53540, + [SMALL_STATE(1716)] = 53548, + [SMALL_STATE(1717)] = 53556, + [SMALL_STATE(1718)] = 53564, + [SMALL_STATE(1719)] = 53572, + [SMALL_STATE(1720)] = 53580, + [SMALL_STATE(1721)] = 53588, + [SMALL_STATE(1722)] = 53596, + [SMALL_STATE(1723)] = 53604, + [SMALL_STATE(1724)] = 53612, + [SMALL_STATE(1725)] = 53620, + [SMALL_STATE(1726)] = 53628, + [SMALL_STATE(1727)] = 53636, + [SMALL_STATE(1728)] = 53644, + [SMALL_STATE(1729)] = 53652, + [SMALL_STATE(1730)] = 53660, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -84835,1679 +82420,1718 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(469), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(301), - [165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1049), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1516), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1120), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(426), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1119), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1405), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1407), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1306), - [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(96), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(395), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(234), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1410), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(45), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1411), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1389), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1385), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1415), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(113), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(142), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(60), - [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(83), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1381), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1213), - [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1226), - [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1227), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1212), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(321), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1228), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(152), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(248), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1736), - [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(248), - [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(244), - [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1129), - [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(747), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1735), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(747), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(749), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1380), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(476), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(367), - [293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 100), - [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 100), - [297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, .production_id = 38), - [299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, .production_id = 38), - [301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), - [305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 59), - [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 59), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), - [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), - [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 80), - [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 80), - [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 80), - [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 80), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 76), - [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 76), - [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, .production_id = 76), - [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, .production_id = 76), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 98), - [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 98), - [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 98), - [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 98), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 88), - [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 88), - [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 88), - [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 88), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 71), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 71), - [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 71), - [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 71), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 37), - [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 37), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 37), - [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 37), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, .production_id = 69), - [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, .production_id = 69), - [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 88), - [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 88), - [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, .production_id = 88), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, .production_id = 88), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 92), - [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 92), - [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 92), - [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 92), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), - [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(33), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(1027), - [871] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(102), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(261), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(102), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 6), - [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 6), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(206), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 28), - [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 28), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, .production_id = 19), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(221), - [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_rest_pattern, 2, .production_id = 19), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, .production_id = 62), - [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, .production_id = 62), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 6), - [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 6), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 24), - [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 24), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(157), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 105), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 105), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 63), - [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 63), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 30), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 30), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 61), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 61), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 54), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 54), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 60), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 60), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 14), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 14), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, .production_id = 23), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, .production_id = 23), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 54), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 54), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 26), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 26), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 55), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 55), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 13), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 13), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 27), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 27), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 52), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 52), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 29), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 29), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 30), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 30), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 20), - [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 20), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 20), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 20), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 21), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 21), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 6), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 6), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 91), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 91), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 37), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 37), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 112), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 112), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 111), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 111), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 110), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 110), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 109), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 109), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 79), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 79), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 54), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 54), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 98), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 98), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 3), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 3), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 103), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 103), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 102), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 102), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 62), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 62), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 92), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 92), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 88), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 88), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 88), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 88), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 96), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 96), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 71), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 71), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 76), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 76), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 25), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 25), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 104), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 104), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 80), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 80), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, .production_id = 23), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, .production_id = 23), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 47), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 47), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 45), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 45), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 46), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 46), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 90), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 90), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 4), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 78), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 78), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 48), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 48), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(94), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 108), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, .production_id = 108), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 107), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, .production_id = 107), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 101), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 101), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 95), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 95), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 94), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 94), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(194), - [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(223), - [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), - [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(159), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 9), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 9), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 8), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 8), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 53), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 53), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 41), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 41), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 40), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 40), - [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, .production_id = 39), - [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, .production_id = 39), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 44), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 44), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 38), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 38), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, .production_id = 32), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, .production_id = 32), - [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, .production_id = 31), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, .production_id = 31), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 72), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 72), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 42), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, .production_id = 73), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, .production_id = 73), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 17), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 17), - [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 17), REDUCE(sym_object_pattern, 3, .production_id = 18), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 18), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 16), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 16), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 49), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 49), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 15), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 7), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 7), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 43), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 43), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 11), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 11), - [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 50), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 50), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 44), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 74), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 74), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 51), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 51), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 89), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 6), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 6), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, .production_id = 7), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, .production_id = 7), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 17), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 17), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 87), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 87), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 64), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 64), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 75), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 75), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 81), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 81), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 73), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 73), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, .production_id = 32), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, .production_id = 32), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 77), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 77), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 42), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 59), - [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 59), SHIFT(267), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 42), REDUCE(sym_assignment_expression, 3, .production_id = 42), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 42), - [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 56), REDUCE(sym_assignment_expression, 3, .production_id = 42), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 56), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 56), REDUCE(sym_assignment_expression, 3, .production_id = 15), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 18), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(298), + [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1036), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1519), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1084), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(389), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1435), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1600), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1298), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(95), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1441), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1613), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1300), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1315), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(112), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1144), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1214), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1254), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1159), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(322), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1248), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(158), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(217), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1137), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(702), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(702), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(660), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1344), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(470), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(402), + [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 57), + [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 57), + [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), + [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 98), + [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 98), + [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 36), + [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 36), + [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 67), + [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 67), + [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 74), + [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 74), + [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 74), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 74), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 69), + [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 69), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 69), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 69), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 78), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 78), + [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 78), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 78), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 86), + [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 86), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 86), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 86), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 90), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 90), + [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 90), + [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 90), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 96), + [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 96), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 96), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 96), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 86), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 86), + [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 86), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 86), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 35), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 35), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 35), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 35), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(26), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1025), + [864] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), SHIFT(101), + [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(187), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(101), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 6), + [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 6), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(191), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(222), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 19), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(141), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 28), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 28), + [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 19), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 103), + [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 103), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 24), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 24), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 60), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 60), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 6), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 6), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 74), + [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 74), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 52), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 52), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 52), + [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 52), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 20), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 20), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 23), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 23), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 58), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 58), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 107), + [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 107), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 50), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 50), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 23), + [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 23), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 108), + [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 108), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 20), + [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 20), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 25), + [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 25), + [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 109), + [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 109), + [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 53), + [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 53), + [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 110), + [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 110), + [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 69), + [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 69), + [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 21), + [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 21), + [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 3), + [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 3), + [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 59), + [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 59), + [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 26), + [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 26), + [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 96), + [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 96), + [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 89), + [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 89), + [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 61), + [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 61), + [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 27), + [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 27), + [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 35), + [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 35), + [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 29), + [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 29), + [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 77), + [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 77), + [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 30), + [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 30), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 30), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 30), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 94), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 94), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 60), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 60), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 78), + [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 78), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 13), + [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 13), + [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 86), + [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 86), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 86), + [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 86), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 90), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 90), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 14), + [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 14), + [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 52), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 52), + [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 100), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 100), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 101), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 101), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 6), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 6), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 45), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 45), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 43), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 43), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 46), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 46), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 88), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 88), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 4), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 44), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 44), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 76), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 76), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(87), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 105), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 105), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 93), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 93), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 92), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 92), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 106), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 106), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 99), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 99), + [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(193), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(225), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(174), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 7), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 7), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 17), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 17), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 79), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 79), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 85), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 85), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 37), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 37), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 1, 38), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 1, 38), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 39), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 39), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 41), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 41), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 47), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 47), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 48), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 48), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 49), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 49), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 6), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 6), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 62), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 62), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 9), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 9), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 70), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 70), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 71), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 71), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 72), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 72), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 10), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 10), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 11), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 11), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 16), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 16), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), + [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 18), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 73), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 73), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 71), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 71), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 75), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 75), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 31), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 31), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 36), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 36), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 31), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 31), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 42), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 42), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 40), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 87), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 15), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 42), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 18), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 40), + [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 57), + [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 57), SHIFT(250), + [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54), REDUCE(sym_assignment_expression, 3, 0, 15), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54), + [1716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54), REDUCE(sym_assignment_expression, 3, 0, 40), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 40), REDUCE(sym_assignment_expression, 3, 0, 40), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 40), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 57), - [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 17), REDUCE(sym_object_pattern, 3, .production_id = 18), - [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 59), SHIFT(237), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1277), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1028), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), - [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(882), - [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(293), - [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1377), - [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1282), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1283), - [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(928), - [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1148), - [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1380), - [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(910), - [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1009), - [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(954), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [2166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(1468), - [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 18), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 99), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 99), - [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 93), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 93), - [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 76), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 76), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 98), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 98), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 58), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 58), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 106), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 106), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 88), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 88), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 83), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 83), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, .production_id = 6), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, .production_id = 6), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 35), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 35), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, .production_id = 38), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, .production_id = 38), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 45), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 45), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 34), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 34), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), - [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), SHIFT_REPEAT(1380), - [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 35), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 35), - [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 35), SHIFT_REPEAT(971), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 10), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 10), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(108), - [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(1069), - [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(1219), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 65), SHIFT_REPEAT(1105), - [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 65), SHIFT_REPEAT(109), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 65), - [2591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 65), SHIFT_REPEAT(1105), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 18), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), - [2634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), SHIFT_REPEAT(233), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), SHIFT(1417), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 85), - [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1700), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(156), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 68), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 66), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, .production_id = 45), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 45), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, .production_id = 36), - [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(1149), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [2733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(169), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(223), - [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 33), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 33), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 32), - [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 32), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), - [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(194), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, .dynamic_precedence = -1), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, .dynamic_precedence = -1), - [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 64), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 64), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 22), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2), SHIFT_REPEAT(1220), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2), - [2897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2), SHIFT_REPEAT(1220), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(1113), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 18), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), SHIFT_REPEAT(209), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(1262), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [3019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1265), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [3030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(98), - [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2), SHIFT_REPEAT(1271), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2), - [3038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2), SHIFT_REPEAT(1271), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(895), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(893), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, .production_id = 5), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(97), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, .production_id = 5), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 20), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [3182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), SHIFT_REPEAT(1357), - [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 57), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(1127), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(105), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(1131), - [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 86), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 84), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 82), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, .production_id = 82), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 67), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, .production_id = 97), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3452] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 55), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 57), SHIFT(278), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [2042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1224), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1021), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), + [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(877), + [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(265), + [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1222), + [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1223), + [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(914), + [2065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1120), + [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1344), + [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(901), + [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(996), + [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(924), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(1620), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 91), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 91), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 43), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 43), + [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 97), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 97), + [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 104), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 104), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 74), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 74), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 81), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 81), + [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 56), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 56), + [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), + [2266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), SHIFT_REPEAT(1344), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 86), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 86), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 96), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 96), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 33), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 33), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33), SHIFT_REPEAT(961), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 6), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 6), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 36), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 36), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 9), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 9), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [2510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(104), + [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1056), + [2516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1169), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [2551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(1094), + [2554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(103), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), + [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(1094), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 18), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(1455), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 4), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 4), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [2621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1113), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [2651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(136), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, 0, 34), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [2685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 83), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 43), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 43), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 64), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 66), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [2750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(225), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 22), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 4), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 4), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), + [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(193), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 62), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 62), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 31), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 31), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 32), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 32), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [2906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1239), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), + [2922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1239), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(292), + [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1099), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1277), + [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1279), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1281), + [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), + [3036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1281), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1110), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 20), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(1127), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(879), + [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(106), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(93), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 55), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [3202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 82), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 65), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 80), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 80), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 84), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, 0, 95), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [3379] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token__automatic_semicolon = 0, + ts_external_token__template_chars = 1, + ts_external_token__ternary_qmark = 2, + ts_external_token_html_comment = 3, + ts_external_token_PIPE_PIPE = 4, + ts_external_token_escape_sequence = 5, + ts_external_token_regex_pattern = 6, + ts_external_token_jsx_text = 7, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__automatic_semicolon] = sym__automatic_semicolon, + [ts_external_token__template_chars] = sym__template_chars, + [ts_external_token__ternary_qmark] = sym__ternary_qmark, + [ts_external_token_html_comment] = sym_html_comment, + [ts_external_token_PIPE_PIPE] = anon_sym_PIPE_PIPE, + [ts_external_token_escape_sequence] = sym_escape_sequence, + [ts_external_token_regex_pattern] = sym_regex_pattern, + [ts_external_token_jsx_text] = sym_jsx_text, +}; + +static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token__template_chars] = true, + [ts_external_token__ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + [ts_external_token_escape_sequence] = true, + [ts_external_token_jsx_text] = true, + }, + [2] = { + [ts_external_token_html_comment] = true, + }, + [3] = { + [ts_external_token__ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + }, + [4] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token__ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + }, + [5] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_html_comment] = true, + }, + [6] = { + [ts_external_token_html_comment] = true, + [ts_external_token_jsx_text] = true, + }, + [7] = { + [ts_external_token__template_chars] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_escape_sequence] = true, + }, + [8] = { + [ts_external_token_html_comment] = true, + [ts_external_token_escape_sequence] = true, + }, + [9] = { + [ts_external_token_html_comment] = true, + [ts_external_token_regex_pattern] = true, + }, }; #ifdef __cplusplus @@ -86519,13 +84143,17 @@ bool tree_sitter_mozjs_external_scanner_scan(void *, TSLexer *, const bool *); unsigned tree_sitter_mozjs_external_scanner_serialize(void *, char *); void tree_sitter_mozjs_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 -#define extern __declspec(dllexport) +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) #endif -extern const TSLanguage *tree_sitter_mozjs(void) { +TS_PUBLIC const TSLanguage *tree_sitter_mozjs(void) { static const TSLanguage language = { - .version = LANGUAGE_VERSION, + .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, @@ -86547,7 +84175,7 @@ extern const TSLanguage *tree_sitter_mozjs(void) { .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, + .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, diff --git a/tree-sitter-mozjs/src/scanner.c b/tree-sitter-mozjs/src/scanner.c index 8a60286b5..aaca9eac1 100644 --- a/tree-sitter-mozjs/src/scanner.c +++ b/tree-sitter-mozjs/src/scanner.c @@ -1,13 +1,364 @@ -#include +#include "tree_sitter/parser.h" -#include "./tree_sitter_javascript_scanner.c" +#include +#include + +enum TokenType { + AUTOMATIC_SEMICOLON, + TEMPLATE_CHARS, + TERNARY_QMARK, + HTML_COMMENT, + LOGICAL_OR, + ESCAPE_SEQUENCE, + REGEX_PATTERN, + JSX_TEXT, +}; void *tree_sitter_mozjs_external_scanner_create() { return NULL; } + void tree_sitter_mozjs_external_scanner_destroy(void *p) {} -void tree_sitter_mozjs_external_scanner_reset(void *p) {} -unsigned tree_sitter_mozjs_external_scanner_serialize(void *p, char *buffer) { return 0; } + +unsigned tree_sitter_mozjs_external_scanner_serialize(void *payload, char *buffer) { return 0; } + void tree_sitter_mozjs_external_scanner_deserialize(void *p, const char *b, unsigned n) {} +static inline void advance(TSLexer *lexer) { lexer->advance(lexer, false); } + +static inline void skip(TSLexer *lexer) { lexer->advance(lexer, true); } + +static bool scan_template_chars(TSLexer *lexer) { + lexer->result_symbol = TEMPLATE_CHARS; + for (bool has_content = false;; has_content = true) { + lexer->mark_end(lexer); + switch (lexer->lookahead) { + case '`': + return has_content; + case '\0': + return false; + case '$': + advance(lexer); + if (lexer->lookahead == '{') { + return has_content; + } + break; + case '\\': + return has_content; + default: + advance(lexer); + } + } +} + +typedef enum { + REJECT, // Semicolon is illegal, ie a syntax error occurred + NO_NEWLINE, // Unclear if semicolon will be legal, continue + ACCEPT, // Semicolon is legal, assuming a comment was encountered +} WhitespaceResult; + +/** + * @param consume If false, only consume enough to check if comment indicates semicolon-legality + */ +static WhitespaceResult scan_whitespace_and_comments(TSLexer *lexer, bool *scanned_comment, bool consume) { + bool saw_block_newline = false; + + for (;;) { + while (iswspace(lexer->lookahead)) { + skip(lexer); + } + + if (lexer->lookahead == '/') { + skip(lexer); + + if (lexer->lookahead == '/') { + skip(lexer); + while (lexer->lookahead != 0 && lexer->lookahead != '\n' && lexer->lookahead != 0x2028 && + lexer->lookahead != 0x2029) { + skip(lexer); + } + *scanned_comment = true; + } else if (lexer->lookahead == '*') { + skip(lexer); + while (lexer->lookahead != 0) { + if (lexer->lookahead == '*') { + skip(lexer); + if (lexer->lookahead == '/') { + skip(lexer); + *scanned_comment = true; + + if (lexer->lookahead != '/' && !consume) { + return saw_block_newline ? ACCEPT : NO_NEWLINE; + } + + break; + } + } else if (lexer->lookahead == '\n' || lexer->lookahead == 0x2028 || lexer->lookahead == 0x2029) { + saw_block_newline = true; + skip(lexer); + } else { + skip(lexer); + } + } + } else { + return REJECT; + } + } else { + return ACCEPT; + } + } +} + +static bool scan_automatic_semicolon(TSLexer *lexer, bool comment_condition, bool *scanned_comment) { + lexer->result_symbol = AUTOMATIC_SEMICOLON; + lexer->mark_end(lexer); + + for (;;) { + if (lexer->lookahead == 0) { + return true; + } + + if (lexer->lookahead == '/') { + WhitespaceResult result = scan_whitespace_and_comments(lexer, scanned_comment, false); + if (result == REJECT) { + return false; + } + + if (result == ACCEPT && comment_condition && lexer->lookahead != ',' && lexer->lookahead != '=') { + return true; + } + } + + if (lexer->lookahead == '}') { + return true; + } + + if (lexer->is_at_included_range_start(lexer)) { + return true; + } + + if (lexer->lookahead == '\n' || lexer->lookahead == 0x2028 || lexer->lookahead == 0x2029) { + break; + } + + if (!iswspace(lexer->lookahead)) { + return false; + } + + skip(lexer); + } + + skip(lexer); + + if (scan_whitespace_and_comments(lexer, scanned_comment, true) == REJECT) { + return false; + } + + switch (lexer->lookahead) { + case '`': + case ',': + case ':': + case ';': + case '*': + case '%': + case '>': + case '<': + case '=': + case '[': + case '(': + case '?': + case '^': + case '|': + case '&': + case '/': + return false; + + // Insert a semicolon before decimals literals but not otherwise. + case '.': + skip(lexer); + return iswdigit(lexer->lookahead); + + // Insert a semicolon before `--` and `++`, but not before binary `+` or `-`. + case '+': + skip(lexer); + return lexer->lookahead == '+'; + case '-': + skip(lexer); + return lexer->lookahead == '-'; + + // Don't insert a semicolon before `!=`, but do insert one before a unary `!`. + case '!': + skip(lexer); + return lexer->lookahead != '='; + + // Don't insert a semicolon before `in` or `instanceof`, but do insert one + // before an identifier. + case 'i': + skip(lexer); + + if (lexer->lookahead != 'n') { + return true; + } + skip(lexer); + + if (!iswalpha(lexer->lookahead)) { + return false; + } + + for (unsigned i = 0; i < 8; i++) { + if (lexer->lookahead != "stanceof"[i]) { + return true; + } + skip(lexer); + } + + if (!iswalpha(lexer->lookahead)) { + return false; + } + break; + + default: + break; + } + + return true; +} + +static bool scan_ternary_qmark(TSLexer *lexer) { + for (;;) { + if (!iswspace(lexer->lookahead)) { + break; + } + skip(lexer); + } + + if (lexer->lookahead == '?') { + advance(lexer); + + if (lexer->lookahead == '?') { + return false; + } + + lexer->mark_end(lexer); + lexer->result_symbol = TERNARY_QMARK; + + if (lexer->lookahead == '.') { + advance(lexer); + if (iswdigit(lexer->lookahead)) { + return true; + } + return false; + } + return true; + } + return false; +} + +static bool scan_html_comment(TSLexer *lexer) { + while (iswspace(lexer->lookahead) || lexer->lookahead == 0x2028 || lexer->lookahead == 0x2029) { + skip(lexer); + } + + const char *comment_start = ""; + + if (lexer->lookahead == '<') { + for (unsigned i = 0; i < 4; i++) { + if (lexer->lookahead != comment_start[i]) { + return false; + } + advance(lexer); + } + } else if (lexer->lookahead == '-') { + for (unsigned i = 0; i < 3; i++) { + if (lexer->lookahead != comment_end[i]) { + return false; + } + advance(lexer); + } + } else { + return false; + } + + while (lexer->lookahead != 0 && lexer->lookahead != '\n' && lexer->lookahead != 0x2028 && + lexer->lookahead != 0x2029) { + advance(lexer); + } + + lexer->result_symbol = HTML_COMMENT; + lexer->mark_end(lexer); + + return true; +} + +static bool scan_jsx_text(TSLexer *lexer) { + // saw_text will be true if we see any non-whitespace content, or any whitespace content that is not a newline and + // does not immediately follow a newline. + bool saw_text = false; + // at_newline will be true if we are currently at a newline, or if we are at whitespace that is not a newline but + // immediately follows a newline. + bool at_newline = false; + + while (lexer->lookahead != 0 && lexer->lookahead != '<' && lexer->lookahead != '>' && lexer->lookahead != '{' && + lexer->lookahead != '}' && lexer->lookahead != '&') { + bool is_wspace = iswspace(lexer->lookahead); + if (lexer->lookahead == '\n') { + at_newline = true; + } else { + // If at_newline is already true, and we see some whitespace, then it must stay true. + // Otherwise, it should be false. + // + // See the table below to determine the logic for computing `saw_text`. + // + // |------------------------------------| + // | at_newline | is_wspace | saw_text | + // |------------|-----------|-----------| + // | false (0) | false (0) | true (1) | + // | false (0) | true (1) | true (1) | + // | true (1) | false (0) | true (1) | + // | true (1) | true (1) | false (0) | + // |------------------------------------| + + at_newline &= is_wspace; + if (!at_newline) { + saw_text = true; + } + } + + advance(lexer); + } + + lexer->result_symbol = JSX_TEXT; + return saw_text; +} + bool tree_sitter_mozjs_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { - return tree_sitter_javascript_external_scanner_mozjs_scan(payload, lexer, valid_symbols); + if (valid_symbols[TEMPLATE_CHARS]) { + if (valid_symbols[AUTOMATIC_SEMICOLON]) { + return false; + } + return scan_template_chars(lexer); + } + + if (valid_symbols[JSX_TEXT] && scan_jsx_text(lexer)) { + return true; + } + + if (valid_symbols[AUTOMATIC_SEMICOLON]) { + bool scanned_comment = false; + bool ret = scan_automatic_semicolon(lexer, !valid_symbols[LOGICAL_OR], &scanned_comment); + if (!ret && !scanned_comment && valid_symbols[TERNARY_QMARK] && lexer->lookahead == '?') { + return scan_ternary_qmark(lexer); + } + return ret; + } + + if (valid_symbols[TERNARY_QMARK]) { + return scan_ternary_qmark(lexer); + } + + if (valid_symbols[HTML_COMMENT] && !valid_symbols[LOGICAL_OR] && !valid_symbols[ESCAPE_SEQUENCE] && + !valid_symbols[REGEX_PATTERN]) { + return scan_html_comment(lexer); + } + + return false; } diff --git a/tree-sitter-mozjs/src/tree_sitter/alloc.h b/tree-sitter-mozjs/src/tree_sitter/alloc.h new file mode 100644 index 000000000..1abdd1201 --- /dev/null +++ b/tree-sitter-mozjs/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/tree-sitter-mozjs/src/tree_sitter/array.h b/tree-sitter-mozjs/src/tree_sitter/array.h new file mode 100644 index 000000000..a17a574f0 --- /dev/null +++ b/tree-sitter-mozjs/src/tree_sitter/array.h @@ -0,0 +1,291 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(push) +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(pop) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/tree-sitter-mozjs/src/tree_sitter/parser.h b/tree-sitter-mozjs/src/tree_sitter/parser.h index 2b14ac104..cdbe64ccc 100644 --- a/tree-sitter-mozjs/src/tree_sitter/parser.h +++ b/tree-sitter-mozjs/src/tree_sitter/parser.h @@ -13,12 +13,17 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -typedef uint16_t TSStateId; - #ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata TSLanguageMetadata; +typedef struct TSLanguageMetadata { + uint8_t major_version; + uint8_t minor_version; + uint8_t patch_version; +} TSLanguageMetadata; #endif typedef struct { @@ -27,10 +32,11 @@ typedef struct { bool inherited; } TSFieldMapEntry; +// Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; -} TSFieldMapSlice; +} TSMapSlice; typedef struct { bool visible; @@ -48,6 +54,7 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); }; typedef enum { @@ -79,6 +86,12 @@ typedef struct { uint16_t external_lex_state; } TSLexMode; +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + typedef union { TSParseAction action; struct { @@ -87,8 +100,13 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { - uint32_t version; + uint32_t abi_version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; @@ -104,13 +122,13 @@ struct TSLanguage { const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; - const TSFieldMapSlice *field_map_slices; + const TSMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; + const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -124,15 +142,48 @@ struct TSLanguage { void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; + const char *name; + const TSSymbol *reserved_words; + uint16_t max_reserved_word_set_size; + uint32_t supertype_count; + const TSSymbol *supertype_symbols; + const TSMapSlice *supertype_map_slices; + const TSSymbol *supertype_map_entries; + TSLanguageMetadata metadata; }; +static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + const TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + const TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + #define START_LEXER() \ bool result = false; \ bool skip = false; \ + UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -148,6 +199,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -166,7 +228,7 @@ struct TSLanguage { * Parse Table Macros */ -#define SMALL_STATE(id) id - LARGE_STATE_COUNT +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) #define STATE(id) id @@ -176,7 +238,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value \ + .state = (state_value) \ } \ }} @@ -184,7 +246,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value, \ + .state = (state_value), \ .repetition = true \ } \ }} @@ -197,14 +259,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \ diff --git a/tree-sitter-mozjs/src/tree_sitter_javascript_scanner.c b/tree-sitter-mozjs/src/tree_sitter_javascript_scanner.c deleted file mode 100644 index 04f42d4c8..000000000 --- a/tree-sitter-mozjs/src/tree_sitter_javascript_scanner.c +++ /dev/null @@ -1,364 +0,0 @@ -#include "tree_sitter/parser.h" - -#include -#include - -enum TokenType { - AUTOMATIC_SEMICOLON, - TEMPLATE_CHARS, - TERNARY_QMARK, - HTML_COMMENT, - LOGICAL_OR, - ESCAPE_SEQUENCE, - REGEX_PATTERN, - JSX_TEXT, -}; - -void *tree_sitter_javascript_external_scanner_mozjs_create() { return NULL; } - -void tree_sitter_javascript_external_scanner_mozjs_destroy(void *p) {} - -unsigned tree_sitter_javascript_external_scanner_mozjs_serialize(void *payload, char *buffer) { return 0; } - -void tree_sitter_javascript_external_scanner_mozjs_deserialize(void *p, const char *b, unsigned n) {} - -static inline void advance(TSLexer *lexer) { lexer->advance(lexer, false); } - -static inline void skip(TSLexer *lexer) { lexer->advance(lexer, true); } - -static bool scan_template_chars(TSLexer *lexer) { - lexer->result_symbol = TEMPLATE_CHARS; - for (bool has_content = false;; has_content = true) { - lexer->mark_end(lexer); - switch (lexer->lookahead) { - case '`': - return has_content; - case '\0': - return false; - case '$': - advance(lexer); - if (lexer->lookahead == '{') { - return has_content; - } - break; - case '\\': - return has_content; - default: - advance(lexer); - } - } -} - -typedef enum { - REJECT, // Semicolon is illegal, ie a syntax error occurred - NO_NEWLINE, // Unclear if semicolon will be legal, continue - ACCEPT, // Semicolon is legal, assuming a comment was encountered -} WhitespaceResult; - -/** - * @param consume If false, only consume enough to check if comment indicates semicolon-legality - */ -static WhitespaceResult scan_whitespace_and_comments(TSLexer *lexer, bool *scanned_comment, bool consume) { - bool saw_block_newline = false; - - for (;;) { - while (iswspace(lexer->lookahead)) { - skip(lexer); - } - - if (lexer->lookahead == '/') { - skip(lexer); - - if (lexer->lookahead == '/') { - skip(lexer); - while (lexer->lookahead != 0 && lexer->lookahead != '\n' && lexer->lookahead != 0x2028 && - lexer->lookahead != 0x2029) { - skip(lexer); - } - *scanned_comment = true; - } else if (lexer->lookahead == '*') { - skip(lexer); - while (lexer->lookahead != 0) { - if (lexer->lookahead == '*') { - skip(lexer); - if (lexer->lookahead == '/') { - skip(lexer); - *scanned_comment = true; - - if (lexer->lookahead != '/' && !consume) { - return saw_block_newline ? ACCEPT : NO_NEWLINE; - } - - break; - } - } else if (lexer->lookahead == '\n' || lexer->lookahead == 0x2028 || lexer->lookahead == 0x2029) { - saw_block_newline = true; - skip(lexer); - } else { - skip(lexer); - } - } - } else { - return REJECT; - } - } else { - return ACCEPT; - } - } -} - -static bool scan_automatic_semicolon(TSLexer *lexer, bool comment_condition, bool *scanned_comment) { - lexer->result_symbol = AUTOMATIC_SEMICOLON; - lexer->mark_end(lexer); - - for (;;) { - if (lexer->lookahead == 0) { - return true; - } - - if (lexer->lookahead == '/') { - WhitespaceResult result = scan_whitespace_and_comments(lexer, scanned_comment, false); - if (result == REJECT) { - return false; - } - - if (result == ACCEPT && comment_condition && lexer->lookahead != ',' && lexer->lookahead != '=') { - return true; - } - } - - if (lexer->lookahead == '}') { - return true; - } - - if (lexer->is_at_included_range_start(lexer)) { - return true; - } - - if (lexer->lookahead == '\n' || lexer->lookahead == 0x2028 || lexer->lookahead == 0x2029) { - break; - } - - if (!iswspace(lexer->lookahead)) { - return false; - } - - skip(lexer); - } - - skip(lexer); - - if (scan_whitespace_and_comments(lexer, scanned_comment, true) == REJECT) { - return false; - } - - switch (lexer->lookahead) { - case '`': - case ',': - case ':': - case ';': - case '*': - case '%': - case '>': - case '<': - case '=': - case '[': - case '(': - case '?': - case '^': - case '|': - case '&': - case '/': - return false; - - // Insert a semicolon before decimals literals but not otherwise. - case '.': - skip(lexer); - return iswdigit(lexer->lookahead); - - // Insert a semicolon before `--` and `++`, but not before binary `+` or `-`. - case '+': - skip(lexer); - return lexer->lookahead == '+'; - case '-': - skip(lexer); - return lexer->lookahead == '-'; - - // Don't insert a semicolon before `!=`, but do insert one before a unary `!`. - case '!': - skip(lexer); - return lexer->lookahead != '='; - - // Don't insert a semicolon before `in` or `instanceof`, but do insert one - // before an identifier. - case 'i': - skip(lexer); - - if (lexer->lookahead != 'n') { - return true; - } - skip(lexer); - - if (!iswalpha(lexer->lookahead)) { - return false; - } - - for (unsigned i = 0; i < 8; i++) { - if (lexer->lookahead != "stanceof"[i]) { - return true; - } - skip(lexer); - } - - if (!iswalpha(lexer->lookahead)) { - return false; - } - break; - - default: - break; - } - - return true; -} - -static bool scan_ternary_qmark(TSLexer *lexer) { - for (;;) { - if (!iswspace(lexer->lookahead)) { - break; - } - skip(lexer); - } - - if (lexer->lookahead == '?') { - advance(lexer); - - if (lexer->lookahead == '?') { - return false; - } - - lexer->mark_end(lexer); - lexer->result_symbol = TERNARY_QMARK; - - if (lexer->lookahead == '.') { - advance(lexer); - if (iswdigit(lexer->lookahead)) { - return true; - } - return false; - } - return true; - } - return false; -} - -static bool scan_html_comment(TSLexer *lexer) { - while (iswspace(lexer->lookahead) || lexer->lookahead == 0x2028 || lexer->lookahead == 0x2029) { - skip(lexer); - } - - const char *comment_start = ""; - - if (lexer->lookahead == '<') { - for (unsigned i = 0; i < 4; i++) { - if (lexer->lookahead != comment_start[i]) { - return false; - } - advance(lexer); - } - } else if (lexer->lookahead == '-') { - for (unsigned i = 0; i < 3; i++) { - if (lexer->lookahead != comment_end[i]) { - return false; - } - advance(lexer); - } - } else { - return false; - } - - while (lexer->lookahead != 0 && lexer->lookahead != '\n' && lexer->lookahead != 0x2028 && - lexer->lookahead != 0x2029) { - advance(lexer); - } - - lexer->result_symbol = HTML_COMMENT; - lexer->mark_end(lexer); - - return true; -} - -static bool scan_jsx_text(TSLexer *lexer) { - // saw_text will be true if we see any non-whitespace content, or any whitespace content that is not a newline and - // does not immediately follow a newline. - bool saw_text = false; - // at_newline will be true if we are currently at a newline, or if we are at whitespace that is not a newline but - // immediately follows a newline. - bool at_newline = false; - - while (lexer->lookahead != 0 && lexer->lookahead != '<' && lexer->lookahead != '>' && lexer->lookahead != '{' && - lexer->lookahead != '}' && lexer->lookahead != '&') { - bool is_wspace = iswspace(lexer->lookahead); - if (lexer->lookahead == '\n') { - at_newline = true; - } else { - // If at_newline is already true, and we see some whitespace, then it must stay true. - // Otherwise, it should be false. - // - // See the table below to determine the logic for computing `saw_text`. - // - // |------------------------------------| - // | at_newline | is_wspace | saw_text | - // |------------|-----------|-----------| - // | false (0) | false (0) | true (1) | - // | false (0) | true (1) | true (1) | - // | true (1) | false (0) | true (1) | - // | true (1) | true (1) | false (0) | - // |------------------------------------| - - at_newline &= is_wspace; - if (!at_newline) { - saw_text = true; - } - } - - advance(lexer); - } - - lexer->result_symbol = JSX_TEXT; - return saw_text; -} - -bool tree_sitter_javascript_external_scanner_mozjs_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { - if (valid_symbols[TEMPLATE_CHARS]) { - if (valid_symbols[AUTOMATIC_SEMICOLON]) { - return false; - } - return scan_template_chars(lexer); - } - - if (valid_symbols[JSX_TEXT] && scan_jsx_text(lexer)) { - return true; - } - - if (valid_symbols[AUTOMATIC_SEMICOLON]) { - bool scanned_comment = false; - bool ret = scan_automatic_semicolon(lexer, !valid_symbols[LOGICAL_OR], &scanned_comment); - if (!ret && !scanned_comment && valid_symbols[TERNARY_QMARK] && lexer->lookahead == '?') { - return scan_ternary_qmark(lexer); - } - return ret; - } - - if (valid_symbols[TERNARY_QMARK]) { - return scan_ternary_qmark(lexer); - } - - if (valid_symbols[HTML_COMMENT] && !valid_symbols[LOGICAL_OR] && !valid_symbols[ESCAPE_SEQUENCE] && - !valid_symbols[REGEX_PATTERN]) { - return scan_html_comment(lexer); - } - - return false; -} diff --git a/tree-sitter-preproc/Cargo.toml b/tree-sitter-preproc/Cargo.toml index ff8e96101..85a564fce 100644 --- a/tree-sitter-preproc/Cargo.toml +++ b/tree-sitter-preproc/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-preproc" description = "Preproc grammar for the tree-sitter parsing library" -version = "0.20.2" +version = "0.20.3" authors = ["Calixte Denizet "] license = "MIT" readme = "bindings/rust/README.md" @@ -21,7 +21,10 @@ include = [ path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = "=0.22.6" +tree-sitter-language="0.1.0" [build-dependencies] cc = "^1.0" + +[dev-dependencies] +tree-sitter = "=0.25.3" diff --git a/tree-sitter-preproc/bindings/rust/README.md b/tree-sitter-preproc/bindings/rust/README.md index 153d5ecc5..5b3baa687 100644 --- a/tree-sitter-preproc/bindings/rust/README.md +++ b/tree-sitter-preproc/bindings/rust/README.md @@ -1,6 +1,6 @@ # tree-sitter-preproc -This crate provides a Preproc grammar for the [tree-sitter][] parsing library. To +This crate provides a Preproc grammar for the [tree-sitter][] parsing library. To use this crate, add it to the `[dependencies]` section of your `Cargo.toml` file. (Note that you will probably also need to depend on the [`tree-sitter`][tree-sitter crate] crate to use the parsed result in any useful @@ -8,11 +8,11 @@ way.) ``` toml [dependencies] -tree-sitter = "0.17" -tree-sitter-preproc = "0.16" +tree-sitter = "0.25.3" +tree-sitter-preproc = "0.20.3" ``` -Typically, you will use the [language][language func] function to add this +Typically, you will use the [LANGUAGE][] function to add this grammar to a tree-sitter [Parser][], and then use the parser to parse some code: ``` rust @@ -22,15 +22,18 @@ let code = r#" } "#; let mut parser = Parser::new(); -parser.set_language(tree_sitter_preproc::language()).expect("Error loading Preproc grammar"); -let parsed = parser.parse(code, None); +let language = tree_sitter_preproc::LANGUAGE; +parser + .set_language(&language.into()) + .expect("Error loading Preproc parser"); +let tree = parser.parse(code, None).unwrap(); +assert!(!tree.root_node().has_error()); ``` If you have any questions, please reach out to us in the [tree-sitter discussions] page. [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -[language func]: https://docs.rs/tree-sitter-preproc/*/tree_sitter_preproc/fn.language.html [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html [tree-sitter]: https://tree-sitter.github.io/ [tree-sitter crate]: https://crates.io/crates/tree-sitter diff --git a/tree-sitter-preproc/bindings/rust/lib.rs b/tree-sitter-preproc/bindings/rust/lib.rs index 2ff077a05..fd149c3ef 100644 --- a/tree-sitter-preproc/bindings/rust/lib.rs +++ b/tree-sitter-preproc/bindings/rust/lib.rs @@ -5,9 +5,9 @@ // See the LICENSE file in this repo for license details. // ------------------------------------------------------------------------------------------------ -//! This crate provides a Preproc grammar for the [tree-sitter][] parsing library. +//! This crate provides Preproc grammar support for the [tree-sitter][] parsing library. //! -//! Typically, you will use the [language][language func] function to add this grammar to a +//! Typically, you will use the [LANGUAGE][] constant to add this grammar to a //! tree-sitter [Parser][], and then use the parser to parse some code: //! //! ``` @@ -19,30 +19,27 @@ //! } //! "#; //! let mut parser = Parser::new(); -//! parser.set_language(&tree_sitter_preproc::language()).expect("Error loading Preproc grammar"); -//! let parsed = parser.parse(code, None); -//! # let parsed = parsed.unwrap(); -//! # let root = parsed.root_node(); -//! # assert!(!root.has_error()); +//! let language = tree_sitter_preproc::LANGUAGE; +//! parser +//! .set_language(&language.into()) +//! .expect("Error loading Preproc parser"); +//! let tree = parser.parse(code, None).unwrap(); +//! assert!(!tree.root_node().has_error()); //! ``` //! -//! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -//! [language func]: fn.language.html //! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html //! [tree-sitter]: https://tree-sitter.github.io/ -use tree_sitter::Language; +use tree_sitter_language::LanguageFn; extern "C" { - fn tree_sitter_preproc() -> Language; + fn tree_sitter_preproc() -> *const (); } -/// Returns the tree-sitter [Language][] for this grammar. +/// The tree-sitter [`LanguageFn`][LanguageFn] for this grammar. /// -/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -pub fn language() -> Language { - unsafe { tree_sitter_preproc() } -} +/// [LanguageFn]: https://docs.rs/tree-sitter-language/*/tree_sitter_language/struct.LanguageFn.html +pub const LANGUAGE: LanguageFn = unsafe { LanguageFn::from_raw(tree_sitter_preproc) }; /// The source of the Preproc tree-sitter grammar description. pub const GRAMMAR: &str = include_str!("../../grammar.js"); @@ -55,10 +52,10 @@ pub const NODE_TYPES: &str = include_str!("../../src/node-types.json"); #[cfg(test)] mod tests { #[test] - fn can_load_grammar() { + fn test_can_load_grammar() { let mut parser = tree_sitter::Parser::new(); parser - .set_language(&super::language()) - .expect("Error loading Preproc grammar"); + .set_language(&super::LANGUAGE.into()) + .expect("Error loading Preproc parser"); } } diff --git a/tree-sitter-preproc/package.json b/tree-sitter-preproc/package.json index 60b8ec670..65ae80aa0 100644 --- a/tree-sitter-preproc/package.json +++ b/tree-sitter-preproc/package.json @@ -13,7 +13,7 @@ "nan": "^2.14.2" }, "devDependencies": { - "tree-sitter-cli": "^0.20.7" + "tree-sitter-cli": "^0.25.3" }, "scripts": { "build": "tree-sitter generate && node-gyp build", diff --git a/tree-sitter-preproc/src/grammar.json b/tree-sitter-preproc/src/grammar.json index 2000ac8e0..545c1ce30 100644 --- a/tree-sitter-preproc/src/grammar.json +++ b/tree-sitter-preproc/src/grammar.json @@ -1,4 +1,5 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "preproc", "rules": { "translation_unit": { @@ -378,6 +379,6 @@ } ], "inline": [], - "supertypes": [] -} - + "supertypes": [], + "reserved": {} +} \ No newline at end of file diff --git a/tree-sitter-preproc/src/node-types.json b/tree-sitter-preproc/src/node-types.json index 6a1253d14..5bff9cf74 100644 --- a/tree-sitter-preproc/src/node-types.json +++ b/tree-sitter-preproc/src/node-types.json @@ -250,6 +250,7 @@ { "type": "translation_unit", "named": true, + "root": true, "fields": {}, "children": { "multiple": true, diff --git a/tree-sitter-preproc/src/parser.c b/tree-sitter-preproc/src/parser.c index 37ac3c086..e55ea82c4 100644 --- a/tree-sitter-preproc/src/parser.c +++ b/tree-sitter-preproc/src/parser.c @@ -1,7 +1,8 @@ -#include +/* Automatically generated by tree-sitter v0.25.3 (2a835ee029dca1c325e6f1c01dbce40396f6123e) */ + +#include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif @@ -14,9 +15,11 @@ #define EXTERNAL_TOKEN_COUNT 1 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 5 +#define MAX_RESERVED_WORD_SET_SIZE 0 #define PRODUCTION_ID_COUNT 1 +#define SUPERTYPE_COUNT 0 -enum { +enum ts_symbol_identifiers { sym_identifier = 1, sym_nothing = 2, sym_preproc_continuation_line = 3, @@ -300,10 +303,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [9] = 9, [10] = 10, [11] = 11, - [12] = 8, + [12] = 12, [13] = 13, [14] = 8, - [15] = 15, + [15] = 8, [16] = 16, [17] = 17, [18] = 18, @@ -318,39 +321,39 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [27] = 27, [28] = 28, [29] = 29, - [30] = 21, - [31] = 22, - [32] = 24, - [33] = 25, - [34] = 26, - [35] = 21, - [36] = 27, - [37] = 20, - [38] = 19, - [39] = 25, - [40] = 18, - [41] = 23, - [42] = 28, - [43] = 27, - [44] = 16, - [45] = 29, - [46] = 17, - [47] = 22, - [48] = 17, - [49] = 20, - [50] = 23, - [51] = 19, + [30] = 16, + [31] = 17, + [32] = 22, + [33] = 18, + [34] = 19, + [35] = 23, + [36] = 24, + [37] = 25, + [38] = 26, + [39] = 27, + [40] = 28, + [41] = 29, + [42] = 20, + [43] = 16, + [44] = 18, + [45] = 19, + [46] = 20, + [47] = 21, + [48] = 22, + [49] = 23, + [50] = 24, + [51] = 25, [52] = 26, - [53] = 18, + [53] = 27, [54] = 28, - [55] = 24, - [56] = 16, - [57] = 29, + [55] = 29, + [56] = 17, + [57] = 21, [58] = 58, [59] = 59, - [60] = 59, + [60] = 58, [61] = 58, - [62] = 58, + [62] = 59, [63] = 59, [64] = 64, [65] = 65, @@ -358,57 +361,57 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [67] = 65, [68] = 68, [69] = 69, - [70] = 70, + [70] = 69, [71] = 71, - [72] = 70, + [72] = 68, [73] = 73, [74] = 74, - [75] = 68, - [76] = 70, - [77] = 68, - [78] = 71, + [75] = 75, + [76] = 75, + [77] = 73, + [78] = 75, [79] = 79, - [80] = 69, - [81] = 79, - [82] = 74, - [83] = 71, + [80] = 79, + [81] = 71, + [82] = 69, + [83] = 68, [84] = 79, - [85] = 69, - [86] = 74, + [85] = 71, + [86] = 73, [87] = 87, - [88] = 87, + [88] = 88, [89] = 89, [90] = 90, - [91] = 89, + [91] = 91, [92] = 92, [93] = 93, [94] = 94, [95] = 95, - [96] = 96, + [96] = 88, [97] = 97, - [98] = 95, + [98] = 93, [99] = 97, - [100] = 94, - [101] = 92, - [102] = 102, - [103] = 103, - [104] = 103, + [100] = 100, + [101] = 94, + [102] = 89, + [103] = 87, + [104] = 89, [105] = 90, - [106] = 89, - [107] = 107, - [108] = 107, - [109] = 95, - [110] = 97, - [111] = 94, - [112] = 107, - [113] = 92, - [114] = 103, - [115] = 87, - [116] = 90, - [117] = 96, - [118] = 93, - [119] = 96, - [120] = 93, + [106] = 92, + [107] = 94, + [108] = 87, + [109] = 100, + [110] = 90, + [111] = 92, + [112] = 93, + [113] = 97, + [114] = 100, + [115] = 115, + [116] = 91, + [117] = 95, + [118] = 91, + [119] = 95, + [120] = 88, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -417,16 +420,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(73); - if (lookahead == '"') ADVANCE(14); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '\'') ADVANCE(15); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '>') ADVANCE(97); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(12); - if (lookahead == '\n' || - lookahead == '\r') SKIP(72) + ADVANCE_MAP( + '"', 15, + '#', 23, + '\'', 16, + '/', 17, + '<', 96, + '>', 97, + '\t', 13, + ' ', 13, + ); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(72); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -471,316 +475,329 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 9: if (lookahead == '\n') ADVANCE(101); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(9) + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(9); END_STATE(); case 10: - if (lookahead == '\n') ADVANCE(78); - if (lookahead == '\r') ADVANCE(78); - if (lookahead == '"') ADVANCE(14); - if (lookahead == '#') ADVANCE(83); - if (lookahead == '\'') ADVANCE(15); - if (lookahead == '/') ADVANCE(82); - if (lookahead == 'R') ADVANCE(75); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(79); + ADVANCE_MAP( + '\n', 78, + '"', 15, + '#', 83, + '\'', 16, + '/', 82, + 'R', 75, + '\t', 79, + ' ', 79, + ); + if ((0x0b <= lookahead && lookahead <= '\r')) ADVANCE(78); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); if (lookahead != 0) ADVANCE(89); END_STATE(); case 11: - if (lookahead == '\n') ADVANCE(80); - if (lookahead == '\r') ADVANCE(80); - if (lookahead == '"') ADVANCE(14); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '\'') ADVANCE(15); - if (lookahead == '/') ADVANCE(82); - if (lookahead == 'R') ADVANCE(75); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(81); + ADVANCE_MAP( + '\n', 80, + '"', 15, + '#', 85, + '\'', 16, + '/', 82, + 'R', 75, + '\t', 81, + ' ', 81, + ); + if ((0x0b <= lookahead && lookahead <= '\r')) ADVANCE(80); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); if (lookahead != 0) ADVANCE(89); END_STATE(); case 12: - if (lookahead == '"') ADVANCE(14); - if (lookahead == '#') ADVANCE(22); - if (lookahead == '\'') ADVANCE(15); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '>') ADVANCE(97); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(12); - if (lookahead == '\n' || - lookahead == '\r') SKIP(13) + if (lookahead == '\r') ADVANCE(114); + if (lookahead != 0) ADVANCE(113); + END_STATE(); + case 13: + ADVANCE_MAP( + '"', 15, + '#', 23, + '\'', 16, + '/', 17, + '<', 96, + '>', 97, + '\t', 13, + ' ', 13, + ); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(14); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); END_STATE(); - case 13: - if (lookahead == '"') ADVANCE(14); - if (lookahead == '#') ADVANCE(23); - if (lookahead == '\'') ADVANCE(15); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '>') ADVANCE(97); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(13); - if (lookahead == '\n' || - lookahead == '\r') SKIP(13) + case 14: + ADVANCE_MAP( + '"', 15, + '#', 24, + '\'', 16, + '/', 17, + '<', 96, + '>', 97, + '\t', 14, + ' ', 14, + ); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(14); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); END_STATE(); - case 14: + case 15: if (lookahead == '"') ADVANCE(108); if (lookahead == '\\') ADVANCE(69); - if (lookahead != 0) ADVANCE(14); - END_STATE(); - case 15: - if (lookahead == '\'') ADVANCE(109); - if (lookahead == '\\') ADVANCE(70); if (lookahead != 0) ADVANCE(15); END_STATE(); case 16: - if (lookahead == '*') ADVANCE(18); - if (lookahead == '/') ADVANCE(113); + if (lookahead == '\'') ADVANCE(109); + if (lookahead == '\\') ADVANCE(70); + if (lookahead != 0) ADVANCE(16); END_STATE(); case 17: - if (lookahead == '*') ADVANCE(17); - if (lookahead == '/') ADVANCE(112); - if (lookahead != 0) ADVANCE(18); + if (lookahead == '*') ADVANCE(19); + if (lookahead == '/') ADVANCE(113); END_STATE(); case 18: - if (lookahead == '*') ADVANCE(17); - if (lookahead != 0) ADVANCE(18); + if (lookahead == '*') ADVANCE(18); + if (lookahead == '/') ADVANCE(112); + if (lookahead != 0) ADVANCE(19); END_STATE(); case 19: - if (lookahead == 'a') ADVANCE(43); + if (lookahead == '*') ADVANCE(18); + if (lookahead != 0) ADVANCE(19); END_STATE(); case 20: - if (lookahead == 'a') ADVANCE(107); + if (lookahead == 'a') ADVANCE(44); END_STATE(); case 21: - if (lookahead == 'c') ADVANCE(50); + if (lookahead == 'a') ADVANCE(107); END_STATE(); case 22: - if (lookahead == 'd') ADVANCE(31); - if (lookahead == 'e') ADVANCE(49); - if (lookahead == 'i') ADVANCE(38); - if (lookahead == 'l') ADVANCE(44); - if (lookahead == 'p') ADVANCE(59); - if (lookahead == 'u') ADVANCE(54); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(22); + if (lookahead == 'c') ADVANCE(51); END_STATE(); case 23: - if (lookahead == 'd') ADVANCE(31); - if (lookahead == 'e') ADVANCE(48); - if (lookahead == 'i') ADVANCE(38); - if (lookahead == 'u') ADVANCE(54); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(23); + ADVANCE_MAP( + 'd', 32, + 'e', 50, + 'i', 39, + 'l', 45, + 'p', 60, + 'u', 55, + '\t', 23, + ' ', 23, + ); END_STATE(); case 24: - if (lookahead == 'd') ADVANCE(31); - if (lookahead == 'e') ADVANCE(53); - if (lookahead == 'i') ADVANCE(38); - if (lookahead == 'l') ADVANCE(44); - if (lookahead == 'p') ADVANCE(59); - if (lookahead == 'u') ADVANCE(54); + if (lookahead == 'd') ADVANCE(32); + if (lookahead == 'e') ADVANCE(49); + if (lookahead == 'i') ADVANCE(39); + if (lookahead == 'u') ADVANCE(55); if (lookahead == '\t' || lookahead == ' ') ADVANCE(24); END_STATE(); case 25: - if (lookahead == 'd') ADVANCE(31); - if (lookahead == 'e') ADVANCE(62); - if (lookahead == 'i') ADVANCE(38); - if (lookahead == 'l') ADVANCE(44); - if (lookahead == 'p') ADVANCE(59); - if (lookahead == 'u') ADVANCE(54); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(25); + ADVANCE_MAP( + 'd', 32, + 'e', 54, + 'i', 39, + 'l', 45, + 'p', 60, + 'u', 55, + '\t', 25, + ' ', 25, + ); END_STATE(); case 26: - if (lookahead == 'd') ADVANCE(31); - if (lookahead == 'e') ADVANCE(52); - if (lookahead == 'i') ADVANCE(38); - if (lookahead == 'u') ADVANCE(54); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(26); + ADVANCE_MAP( + 'd', 32, + 'e', 63, + 'i', 39, + 'l', 45, + 'p', 60, + 'u', 55, + '\t', 26, + ' ', 26, + ); END_STATE(); case 27: - if (lookahead == 'd') ADVANCE(31); - if (lookahead == 'i') ADVANCE(38); - if (lookahead == 'u') ADVANCE(54); + if (lookahead == 'd') ADVANCE(32); + if (lookahead == 'e') ADVANCE(53); + if (lookahead == 'i') ADVANCE(39); + if (lookahead == 'u') ADVANCE(55); if (lookahead == '\t' || lookahead == ' ') ADVANCE(27); END_STATE(); case 28: - if (lookahead == 'd') ADVANCE(47); + if (lookahead == 'd') ADVANCE(32); + if (lookahead == 'i') ADVANCE(39); + if (lookahead == 'u') ADVANCE(55); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(28); END_STATE(); case 29: - if (lookahead == 'd') ADVANCE(33); + if (lookahead == 'd') ADVANCE(48); END_STATE(); case 30: - if (lookahead == 'd') ADVANCE(36); + if (lookahead == 'd') ADVANCE(34); END_STATE(); case 31: - if (lookahead == 'e') ADVANCE(42); + if (lookahead == 'd') ADVANCE(37); END_STATE(); case 32: - if (lookahead == 'e') ADVANCE(107); + if (lookahead == 'e') ADVANCE(43); END_STATE(); case 33: - if (lookahead == 'e') ADVANCE(94); + if (lookahead == 'e') ADVANCE(107); END_STATE(); case 34: - if (lookahead == 'e') ADVANCE(65); + if (lookahead == 'e') ADVANCE(94); END_STATE(); case 35: - if (lookahead == 'e') ADVANCE(67); + if (lookahead == 'e') ADVANCE(66); END_STATE(); case 36: - if (lookahead == 'e') ADVANCE(39); + if (lookahead == 'e') ADVANCE(68); END_STATE(); case 37: - if (lookahead == 'e') ADVANCE(7); + if (lookahead == 'e') ADVANCE(40); END_STATE(); case 38: - if (lookahead == 'f') ADVANCE(1); - if (lookahead == 'n') ADVANCE(21); + if (lookahead == 'e') ADVANCE(7); END_STATE(); case 39: - if (lookahead == 'f') ADVANCE(66); + if (lookahead == 'f') ADVANCE(1); + if (lookahead == 'n') ADVANCE(22); END_STATE(); case 40: - if (lookahead == 'f') ADVANCE(6); + if (lookahead == 'f') ADVANCE(67); END_STATE(); case 41: - if (lookahead == 'f') ADVANCE(8); + if (lookahead == 'f') ADVANCE(6); END_STATE(); case 42: - if (lookahead == 'f') ADVANCE(46); + if (lookahead == 'f') ADVANCE(8); END_STATE(); case 43: - if (lookahead == 'g') ADVANCE(51); + if (lookahead == 'f') ADVANCE(47); END_STATE(); case 44: - if (lookahead == 'i') ADVANCE(55); + if (lookahead == 'g') ADVANCE(52); END_STATE(); case 45: - if (lookahead == 'i') ADVANCE(40); - if (lookahead == 's') ADVANCE(37); + if (lookahead == 'i') ADVANCE(56); END_STATE(); case 46: - if (lookahead == 'i') ADVANCE(56); + if (lookahead == 'i') ADVANCE(41); + if (lookahead == 's') ADVANCE(38); END_STATE(); case 47: - if (lookahead == 'i') ADVANCE(41); + if (lookahead == 'i') ADVANCE(57); END_STATE(); case 48: - if (lookahead == 'l') ADVANCE(45); - if (lookahead == 'n') ADVANCE(28); + if (lookahead == 'i') ADVANCE(42); END_STATE(); case 49: - if (lookahead == 'l') ADVANCE(45); - if (lookahead == 'n') ADVANCE(28); - if (lookahead == 'r') ADVANCE(60); + if (lookahead == 'l') ADVANCE(46); + if (lookahead == 'n') ADVANCE(29); END_STATE(); case 50: - if (lookahead == 'l') ADVANCE(64); + if (lookahead == 'l') ADVANCE(46); + if (lookahead == 'n') ADVANCE(29); + if (lookahead == 'r') ADVANCE(61); END_STATE(); case 51: - if (lookahead == 'm') ADVANCE(20); + if (lookahead == 'l') ADVANCE(65); END_STATE(); case 52: - if (lookahead == 'n') ADVANCE(28); + if (lookahead == 'm') ADVANCE(21); END_STATE(); case 53: - if (lookahead == 'n') ADVANCE(28); - if (lookahead == 'r') ADVANCE(60); + if (lookahead == 'n') ADVANCE(29); END_STATE(); case 54: - if (lookahead == 'n') ADVANCE(30); + if (lookahead == 'n') ADVANCE(29); + if (lookahead == 'r') ADVANCE(61); END_STATE(); case 55: - if (lookahead == 'n') ADVANCE(32); + if (lookahead == 'n') ADVANCE(31); END_STATE(); case 56: - if (lookahead == 'n') ADVANCE(35); + if (lookahead == 'n') ADVANCE(33); END_STATE(); case 57: - if (lookahead == 'n') ADVANCE(34); + if (lookahead == 'n') ADVANCE(36); END_STATE(); case 58: - if (lookahead == 'o') ADVANCE(61); + if (lookahead == 'n') ADVANCE(35); END_STATE(); case 59: - if (lookahead == 'r') ADVANCE(19); + if (lookahead == 'o') ADVANCE(62); END_STATE(); case 60: - if (lookahead == 'r') ADVANCE(58); + if (lookahead == 'r') ADVANCE(20); END_STATE(); case 61: - if (lookahead == 'r') ADVANCE(107); + if (lookahead == 'r') ADVANCE(59); END_STATE(); case 62: - if (lookahead == 'r') ADVANCE(60); + if (lookahead == 'r') ADVANCE(107); END_STATE(); case 63: - if (lookahead == 't') ADVANCE(95); + if (lookahead == 'r') ADVANCE(61); END_STATE(); case 64: - if (lookahead == 'u') ADVANCE(29); + if (lookahead == 't') ADVANCE(95); END_STATE(); case 65: - if (lookahead == 'x') ADVANCE(63); + if (lookahead == 'u') ADVANCE(30); END_STATE(); case 66: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(106); + if (lookahead == 'x') ADVANCE(64); END_STATE(); case 67: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(100); + lookahead == ' ') ADVANCE(106); END_STATE(); case 68: - if (lookahead != 0 && - lookahead != '\r') ADVANCE(113); - if (lookahead == '\r') ADVANCE(114); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(100); END_STATE(); case 69: - if (lookahead != 0) ADVANCE(14); + if (lookahead != 0) ADVANCE(15); END_STATE(); case 70: - if (lookahead != 0) ADVANCE(15); + if (lookahead != 0) ADVANCE(16); END_STATE(); case 71: if (eof) ADVANCE(73); - if (lookahead == '\n') ADVANCE(77); - if (lookahead == '\r') ADVANCE(77); - if (lookahead == '"') ADVANCE(14); - if (lookahead == '#') ADVANCE(86); - if (lookahead == '\'') ADVANCE(15); - if (lookahead == '/') ADVANCE(82); - if (lookahead == 'R') ADVANCE(75); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(76); + ADVANCE_MAP( + '\n', 77, + '"', 15, + '#', 86, + '\'', 16, + '/', 82, + 'R', 75, + '\t', 76, + ' ', 76, + ); + if ((0x0b <= lookahead && lookahead <= '\r')) ADVANCE(77); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); if (lookahead != 0) ADVANCE(89); END_STATE(); case 72: if (eof) ADVANCE(73); - if (lookahead == '"') ADVANCE(14); - if (lookahead == '#') ADVANCE(23); - if (lookahead == '\'') ADVANCE(15); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '>') ADVANCE(97); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(13); - if (lookahead == '\n' || - lookahead == '\r') SKIP(72) + ADVANCE_MAP( + '"', 15, + '#', 24, + '\'', 16, + '/', 17, + '<', 96, + '>', 97, + '\t', 14, + ' ', 14, + ); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(72); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); @@ -801,150 +818,162 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 76: ACCEPT_TOKEN(sym_nothing); if (lookahead == '\n') ADVANCE(77); - if (lookahead == '\r') ADVANCE(77); if (lookahead == '#') ADVANCE(86); if (lookahead == '/') ADVANCE(82); if (lookahead == 'R') ADVANCE(75); if (lookahead == '\t' || lookahead == ' ') ADVANCE(76); + if ((0x0b <= lookahead && lookahead <= '\r')) ADVANCE(77); if (lookahead != 0 && lookahead != '"' && + lookahead != '#' && lookahead != '\'' && - (lookahead < '0' || '9' < lookahead)) ADVANCE(89); + (lookahead < '/' || '9' < lookahead)) ADVANCE(89); END_STATE(); case 77: ACCEPT_TOKEN(sym_nothing); if (lookahead == '\n') ADVANCE(77); - if (lookahead == '\r') ADVANCE(77); if (lookahead == '#') ADVANCE(88); if (lookahead == '/') ADVANCE(82); if (lookahead == 'R') ADVANCE(75); if (lookahead == '\t' || lookahead == ' ') ADVANCE(77); + if ((0x0b <= lookahead && lookahead <= '\r')) ADVANCE(77); if (lookahead != 0 && lookahead != '"' && + lookahead != '#' && lookahead != '\'' && - (lookahead < '0' || '9' < lookahead)) ADVANCE(89); + (lookahead < '/' || '9' < lookahead)) ADVANCE(89); END_STATE(); case 78: ACCEPT_TOKEN(sym_nothing); if (lookahead == '\n') ADVANCE(78); - if (lookahead == '\r') ADVANCE(78); if (lookahead == '#') ADVANCE(84); if (lookahead == '/') ADVANCE(82); if (lookahead == 'R') ADVANCE(75); if (lookahead == '\t' || lookahead == ' ') ADVANCE(78); + if ((0x0b <= lookahead && lookahead <= '\r')) ADVANCE(78); if (lookahead != 0 && lookahead != '"' && + lookahead != '#' && lookahead != '\'' && - (lookahead < '0' || '9' < lookahead)) ADVANCE(89); + (lookahead < '/' || '9' < lookahead)) ADVANCE(89); END_STATE(); case 79: ACCEPT_TOKEN(sym_nothing); if (lookahead == '\n') ADVANCE(78); - if (lookahead == '\r') ADVANCE(78); if (lookahead == '#') ADVANCE(83); if (lookahead == '/') ADVANCE(82); if (lookahead == 'R') ADVANCE(75); if (lookahead == '\t' || lookahead == ' ') ADVANCE(79); + if ((0x0b <= lookahead && lookahead <= '\r')) ADVANCE(78); if (lookahead != 0 && lookahead != '"' && + lookahead != '#' && lookahead != '\'' && - (lookahead < '0' || '9' < lookahead)) ADVANCE(89); + (lookahead < '/' || '9' < lookahead)) ADVANCE(89); END_STATE(); case 80: ACCEPT_TOKEN(sym_nothing); if (lookahead == '\n') ADVANCE(80); - if (lookahead == '\r') ADVANCE(80); if (lookahead == '#') ADVANCE(87); if (lookahead == '/') ADVANCE(82); if (lookahead == 'R') ADVANCE(75); if (lookahead == '\t' || lookahead == ' ') ADVANCE(80); + if ((0x0b <= lookahead && lookahead <= '\r')) ADVANCE(80); if (lookahead != 0 && lookahead != '"' && + lookahead != '#' && lookahead != '\'' && - (lookahead < '0' || '9' < lookahead)) ADVANCE(89); + (lookahead < '/' || '9' < lookahead)) ADVANCE(89); END_STATE(); case 81: ACCEPT_TOKEN(sym_nothing); if (lookahead == '\n') ADVANCE(80); - if (lookahead == '\r') ADVANCE(80); if (lookahead == '#') ADVANCE(85); if (lookahead == '/') ADVANCE(82); if (lookahead == 'R') ADVANCE(75); if (lookahead == '\t' || lookahead == ' ') ADVANCE(81); + if ((0x0b <= lookahead && lookahead <= '\r')) ADVANCE(80); if (lookahead != 0 && lookahead != '"' && + lookahead != '#' && lookahead != '\'' && - (lookahead < '0' || '9' < lookahead)) ADVANCE(89); + (lookahead < '/' || '9' < lookahead)) ADVANCE(89); END_STATE(); case 82: ACCEPT_TOKEN(sym_nothing); - if (lookahead == '*') ADVANCE(18); + if (lookahead == '*') ADVANCE(19); if (lookahead == '/') ADVANCE(113); END_STATE(); case 83: ACCEPT_TOKEN(sym_nothing); - if (lookahead == 'd') ADVANCE(31); - if (lookahead == 'e') ADVANCE(49); - if (lookahead == 'i') ADVANCE(38); - if (lookahead == 'l') ADVANCE(44); - if (lookahead == 'p') ADVANCE(59); - if (lookahead == 'u') ADVANCE(54); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(22); + ADVANCE_MAP( + 'd', 32, + 'e', 50, + 'i', 39, + 'l', 45, + 'p', 60, + 'u', 55, + '\t', 23, + ' ', 23, + ); END_STATE(); case 84: ACCEPT_TOKEN(sym_nothing); - if (lookahead == 'd') ADVANCE(31); - if (lookahead == 'e') ADVANCE(48); - if (lookahead == 'i') ADVANCE(38); - if (lookahead == 'u') ADVANCE(54); + if (lookahead == 'd') ADVANCE(32); + if (lookahead == 'e') ADVANCE(49); + if (lookahead == 'i') ADVANCE(39); + if (lookahead == 'u') ADVANCE(55); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(23); + lookahead == ' ') ADVANCE(24); END_STATE(); case 85: ACCEPT_TOKEN(sym_nothing); - if (lookahead == 'd') ADVANCE(31); - if (lookahead == 'e') ADVANCE(53); - if (lookahead == 'i') ADVANCE(38); - if (lookahead == 'l') ADVANCE(44); - if (lookahead == 'p') ADVANCE(59); - if (lookahead == 'u') ADVANCE(54); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(24); + ADVANCE_MAP( + 'd', 32, + 'e', 54, + 'i', 39, + 'l', 45, + 'p', 60, + 'u', 55, + '\t', 25, + ' ', 25, + ); END_STATE(); case 86: ACCEPT_TOKEN(sym_nothing); - if (lookahead == 'd') ADVANCE(31); - if (lookahead == 'e') ADVANCE(62); - if (lookahead == 'i') ADVANCE(38); - if (lookahead == 'l') ADVANCE(44); - if (lookahead == 'p') ADVANCE(59); - if (lookahead == 'u') ADVANCE(54); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(25); + ADVANCE_MAP( + 'd', 32, + 'e', 63, + 'i', 39, + 'l', 45, + 'p', 60, + 'u', 55, + '\t', 26, + ' ', 26, + ); END_STATE(); case 87: ACCEPT_TOKEN(sym_nothing); - if (lookahead == 'd') ADVANCE(31); - if (lookahead == 'e') ADVANCE(52); - if (lookahead == 'i') ADVANCE(38); - if (lookahead == 'u') ADVANCE(54); + if (lookahead == 'd') ADVANCE(32); + if (lookahead == 'e') ADVANCE(53); + if (lookahead == 'i') ADVANCE(39); + if (lookahead == 'u') ADVANCE(55); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(26); + lookahead == ' ') ADVANCE(27); END_STATE(); case 88: ACCEPT_TOKEN(sym_nothing); - if (lookahead == 'd') ADVANCE(31); - if (lookahead == 'i') ADVANCE(38); - if (lookahead == 'u') ADVANCE(54); + if (lookahead == 'd') ADVANCE(32); + if (lookahead == 'i') ADVANCE(39); + if (lookahead == 'u') ADVANCE(55); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(27); + lookahead == ' ') ADVANCE(28); END_STATE(); case 89: ACCEPT_TOKEN(sym_nothing); @@ -979,7 +1008,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 94: ACCEPT_TOKEN(aux_sym_preproc_include_token1); - if (lookahead == '_') ADVANCE(57); + if (lookahead == '_') ADVANCE(58); if (lookahead == '\t' || lookahead == ' ') ADVANCE(95); END_STATE(); @@ -996,9 +1025,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 98: ACCEPT_TOKEN(sym_path); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(98); if (lookahead != 0 && lookahead != '>') ADVANCE(99); @@ -1058,15 +1085,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 113: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(68); + if (lookahead == '\\') ADVANCE(12); if (lookahead != 0 && lookahead != '\n') ADVANCE(113); END_STATE(); case 114: ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(113); - if (lookahead == '\\') ADVANCE(68); + if (lookahead == '\\') ADVANCE(12); + if (lookahead != 0) ADVANCE(113); END_STATE(); default: return false; @@ -1086,8 +1112,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9] = {.lex_state = 10, .external_lex_state = 1}, [10] = {.lex_state = 10, .external_lex_state = 1}, [11] = {.lex_state = 11, .external_lex_state = 1}, - [12] = {.lex_state = 11, .external_lex_state = 1}, - [13] = {.lex_state = 71, .external_lex_state = 1}, + [12] = {.lex_state = 71, .external_lex_state = 1}, + [13] = {.lex_state = 11, .external_lex_state = 1}, [14] = {.lex_state = 71, .external_lex_state = 1}, [15] = {.lex_state = 11, .external_lex_state = 1}, [16] = {.lex_state = 10, .external_lex_state = 1}, @@ -1106,32 +1132,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [29] = {.lex_state = 10, .external_lex_state = 1}, [30] = {.lex_state = 11, .external_lex_state = 1}, [31] = {.lex_state = 71, .external_lex_state = 1}, - [32] = {.lex_state = 11, .external_lex_state = 1}, - [33] = {.lex_state = 11, .external_lex_state = 1}, - [34] = {.lex_state = 11, .external_lex_state = 1}, + [32] = {.lex_state = 71, .external_lex_state = 1}, + [33] = {.lex_state = 71, .external_lex_state = 1}, + [34] = {.lex_state = 71, .external_lex_state = 1}, [35] = {.lex_state = 71, .external_lex_state = 1}, - [36] = {.lex_state = 11, .external_lex_state = 1}, + [36] = {.lex_state = 71, .external_lex_state = 1}, [37] = {.lex_state = 71, .external_lex_state = 1}, [38] = {.lex_state = 71, .external_lex_state = 1}, [39] = {.lex_state = 71, .external_lex_state = 1}, [40] = {.lex_state = 71, .external_lex_state = 1}, - [41] = {.lex_state = 11, .external_lex_state = 1}, + [41] = {.lex_state = 71, .external_lex_state = 1}, [42] = {.lex_state = 71, .external_lex_state = 1}, [43] = {.lex_state = 71, .external_lex_state = 1}, - [44] = {.lex_state = 71, .external_lex_state = 1}, - [45] = {.lex_state = 71, .external_lex_state = 1}, - [46] = {.lex_state = 71, .external_lex_state = 1}, + [44] = {.lex_state = 11, .external_lex_state = 1}, + [45] = {.lex_state = 11, .external_lex_state = 1}, + [46] = {.lex_state = 11, .external_lex_state = 1}, [47] = {.lex_state = 11, .external_lex_state = 1}, [48] = {.lex_state = 11, .external_lex_state = 1}, [49] = {.lex_state = 11, .external_lex_state = 1}, - [50] = {.lex_state = 71, .external_lex_state = 1}, + [50] = {.lex_state = 11, .external_lex_state = 1}, [51] = {.lex_state = 11, .external_lex_state = 1}, - [52] = {.lex_state = 71, .external_lex_state = 1}, + [52] = {.lex_state = 11, .external_lex_state = 1}, [53] = {.lex_state = 11, .external_lex_state = 1}, [54] = {.lex_state = 11, .external_lex_state = 1}, - [55] = {.lex_state = 71, .external_lex_state = 1}, + [55] = {.lex_state = 11, .external_lex_state = 1}, [56] = {.lex_state = 11, .external_lex_state = 1}, - [57] = {.lex_state = 11, .external_lex_state = 1}, + [57] = {.lex_state = 71, .external_lex_state = 1}, [58] = {.lex_state = 0}, [59] = {.lex_state = 0}, [60] = {.lex_state = 0}, @@ -1163,56 +1189,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [86] = {.lex_state = 93}, [87] = {.lex_state = 9}, [88] = {.lex_state = 9}, - [89] = {.lex_state = 9}, - [90] = {.lex_state = 0}, - [91] = {.lex_state = 9}, - [92] = {.lex_state = 0}, + [89] = {.lex_state = 0}, + [90] = {.lex_state = 9}, + [91] = {.lex_state = 0}, + [92] = {.lex_state = 98}, [93] = {.lex_state = 0}, - [94] = {.lex_state = 9}, + [94] = {.lex_state = 0}, [95] = {.lex_state = 0}, - [96] = {.lex_state = 0}, - [97] = {.lex_state = 0}, + [96] = {.lex_state = 9}, + [97] = {.lex_state = 9}, [98] = {.lex_state = 0}, - [99] = {.lex_state = 0}, - [100] = {.lex_state = 9}, + [99] = {.lex_state = 9}, + [100] = {.lex_state = 0}, [101] = {.lex_state = 0}, [102] = {.lex_state = 0}, [103] = {.lex_state = 9}, - [104] = {.lex_state = 9}, - [105] = {.lex_state = 0}, - [106] = {.lex_state = 9}, - [107] = {.lex_state = 98}, - [108] = {.lex_state = 98}, + [104] = {.lex_state = 0}, + [105] = {.lex_state = 9}, + [106] = {.lex_state = 98}, + [107] = {.lex_state = 0}, + [108] = {.lex_state = 9}, [109] = {.lex_state = 0}, - [110] = {.lex_state = 0}, - [111] = {.lex_state = 9}, - [112] = {.lex_state = 98}, - [113] = {.lex_state = 0}, - [114] = {.lex_state = 9}, - [115] = {.lex_state = 9}, + [110] = {.lex_state = 9}, + [111] = {.lex_state = 98}, + [112] = {.lex_state = 0}, + [113] = {.lex_state = 9}, + [114] = {.lex_state = 0}, + [115] = {.lex_state = 0}, [116] = {.lex_state = 0}, [117] = {.lex_state = 0}, [118] = {.lex_state = 0}, [119] = {.lex_state = 0}, - [120] = {.lex_state = 0}, -}; - -enum { - ts_external_token_raw_string_literal = 0, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token_raw_string_literal] = sym_raw_string_literal, -}; - -static const bool ts_external_scanner_states[2][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token_raw_string_literal] = true, - }, + [120] = {.lex_state = 9}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { + [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [aux_sym_preproc_include_token1] = ACTIONS(1), @@ -1231,17 +1243,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(1), [sym_raw_string_literal] = ACTIONS(1), }, - [1] = { - [sym_translation_unit] = STATE(102), - [sym__top_level_item] = STATE(13), - [sym_preproc_include] = STATE(13), - [sym_define] = STATE(13), - [sym_preproc_if] = STATE(13), - [sym_undef] = STATE(13), - [sym_preproc_nothing] = STATE(13), - [sym_string_literal] = STATE(13), - [sym_char_literal] = STATE(13), - [aux_sym_translation_unit_repeat1] = STATE(13), + [STATE(1)] = { + [sym_translation_unit] = STATE(115), + [sym__top_level_item] = STATE(12), + [sym_preproc_include] = STATE(12), + [sym_define] = STATE(12), + [sym_preproc_if] = STATE(12), + [sym_undef] = STATE(12), + [sym_preproc_nothing] = STATE(12), + [sym_string_literal] = STATE(12), + [sym_char_literal] = STATE(12), + [aux_sym_translation_unit_repeat1] = STATE(12), [ts_builtin_sym_end] = ACTIONS(3), [sym_nothing] = ACTIONS(5), [aux_sym_preproc_include_token1] = ACTIONS(7), @@ -1255,19 +1267,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_raw_string_literal] = ACTIONS(21), }, - [2] = { + [STATE(2)] = { [sym__top_level_item] = STATE(8), [sym_preproc_include] = STATE(8), [sym_define] = STATE(8), [sym_preproc_if] = STATE(8), - [sym_preproc_elif] = STATE(62), - [sym_preproc_else] = STATE(101), + [sym_preproc_elif] = STATE(60), + [sym_preproc_else] = STATE(109), [sym_undef] = STATE(8), [sym_preproc_nothing] = STATE(8), [sym_string_literal] = STATE(8), [sym_char_literal] = STATE(8), [aux_sym_translation_unit_repeat1] = STATE(8), - [aux_sym_preproc_if_repeat1] = STATE(62), + [aux_sym_preproc_if_repeat1] = STATE(60), [sym_nothing] = ACTIONS(23), [aux_sym_preproc_include_token1] = ACTIONS(25), [aux_sym_define_token1] = ACTIONS(27), @@ -1283,19 +1295,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(23), [sym_raw_string_literal] = ACTIONS(45), }, - [3] = { - [sym__top_level_item] = STATE(2), - [sym_preproc_include] = STATE(2), - [sym_define] = STATE(2), - [sym_preproc_if] = STATE(2), - [sym_preproc_elif] = STATE(59), - [sym_preproc_else] = STATE(95), - [sym_undef] = STATE(2), - [sym_preproc_nothing] = STATE(2), - [sym_string_literal] = STATE(2), - [sym_char_literal] = STATE(2), - [aux_sym_translation_unit_repeat1] = STATE(2), - [aux_sym_preproc_if_repeat1] = STATE(59), + [STATE(3)] = { + [sym__top_level_item] = STATE(5), + [sym_preproc_include] = STATE(5), + [sym_define] = STATE(5), + [sym_preproc_if] = STATE(5), + [sym_preproc_elif] = STATE(63), + [sym_preproc_else] = STATE(101), + [sym_undef] = STATE(5), + [sym_preproc_nothing] = STATE(5), + [sym_string_literal] = STATE(5), + [sym_char_literal] = STATE(5), + [aux_sym_translation_unit_repeat1] = STATE(5), + [aux_sym_preproc_if_repeat1] = STATE(63), [sym_nothing] = ACTIONS(47), [aux_sym_preproc_include_token1] = ACTIONS(25), [aux_sym_define_token1] = ACTIONS(27), @@ -1311,19 +1323,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(47), [sym_raw_string_literal] = ACTIONS(51), }, - [4] = { - [sym__top_level_item] = STATE(7), - [sym_preproc_include] = STATE(7), - [sym_define] = STATE(7), - [sym_preproc_if] = STATE(7), - [sym_preproc_elif] = STATE(63), - [sym_preproc_else] = STATE(109), - [sym_undef] = STATE(7), - [sym_preproc_nothing] = STATE(7), - [sym_string_literal] = STATE(7), - [sym_char_literal] = STATE(7), - [aux_sym_translation_unit_repeat1] = STATE(7), - [aux_sym_preproc_if_repeat1] = STATE(63), + [STATE(4)] = { + [sym__top_level_item] = STATE(2), + [sym_preproc_include] = STATE(2), + [sym_define] = STATE(2), + [sym_preproc_if] = STATE(2), + [sym_preproc_elif] = STATE(59), + [sym_preproc_else] = STATE(107), + [sym_undef] = STATE(2), + [sym_preproc_nothing] = STATE(2), + [sym_string_literal] = STATE(2), + [sym_char_literal] = STATE(2), + [aux_sym_translation_unit_repeat1] = STATE(2), + [aux_sym_preproc_if_repeat1] = STATE(59), [sym_nothing] = ACTIONS(53), [aux_sym_preproc_include_token1] = ACTIONS(25), [aux_sym_define_token1] = ACTIONS(27), @@ -1339,13 +1351,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_raw_string_literal] = ACTIONS(57), }, - [5] = { + [STATE(5)] = { [sym__top_level_item] = STATE(8), [sym_preproc_include] = STATE(8), [sym_define] = STATE(8), [sym_preproc_if] = STATE(8), [sym_preproc_elif] = STATE(61), - [sym_preproc_else] = STATE(92), + [sym_preproc_else] = STATE(114), [sym_undef] = STATE(8), [sym_preproc_nothing] = STATE(8), [sym_string_literal] = STATE(8), @@ -1367,19 +1379,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(23), [sym_raw_string_literal] = ACTIONS(45), }, - [6] = { - [sym__top_level_item] = STATE(5), - [sym_preproc_include] = STATE(5), - [sym_define] = STATE(5), - [sym_preproc_if] = STATE(5), - [sym_preproc_elif] = STATE(60), - [sym_preproc_else] = STATE(98), - [sym_undef] = STATE(5), - [sym_preproc_nothing] = STATE(5), - [sym_string_literal] = STATE(5), - [sym_char_literal] = STATE(5), - [aux_sym_translation_unit_repeat1] = STATE(5), - [aux_sym_preproc_if_repeat1] = STATE(60), + [STATE(6)] = { + [sym__top_level_item] = STATE(7), + [sym_preproc_include] = STATE(7), + [sym_define] = STATE(7), + [sym_preproc_if] = STATE(7), + [sym_preproc_elif] = STATE(62), + [sym_preproc_else] = STATE(94), + [sym_undef] = STATE(7), + [sym_preproc_nothing] = STATE(7), + [sym_string_literal] = STATE(7), + [sym_char_literal] = STATE(7), + [aux_sym_translation_unit_repeat1] = STATE(7), + [aux_sym_preproc_if_repeat1] = STATE(62), [sym_nothing] = ACTIONS(61), [aux_sym_preproc_include_token1] = ACTIONS(25), [aux_sym_define_token1] = ACTIONS(27), @@ -1395,13 +1407,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(61), [sym_raw_string_literal] = ACTIONS(65), }, - [7] = { + [STATE(7)] = { [sym__top_level_item] = STATE(8), [sym_preproc_include] = STATE(8), [sym_define] = STATE(8), [sym_preproc_if] = STATE(8), [sym_preproc_elif] = STATE(58), - [sym_preproc_else] = STATE(113), + [sym_preproc_else] = STATE(100), [sym_undef] = STATE(8), [sym_preproc_nothing] = STATE(8), [sym_string_literal] = STATE(8), @@ -1423,7 +1435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(23), [sym_raw_string_literal] = ACTIONS(45), }, - [8] = { + [STATE(8)] = { [sym__top_level_item] = STATE(8), [sym_preproc_include] = STATE(8), [sym_define] = STATE(8), @@ -1448,7 +1460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(69), [sym_raw_string_literal] = ACTIONS(95), }, - [9] = { + [STATE(9)] = { [sym__top_level_item] = STATE(8), [sym_preproc_include] = STATE(8), [sym_define] = STATE(8), @@ -1473,7 +1485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(23), [sym_raw_string_literal] = ACTIONS(45), }, - [10] = { + [STATE(10)] = { [sym__top_level_item] = STATE(9), [sym_preproc_include] = STATE(9), [sym_define] = STATE(9), @@ -1498,16 +1510,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(100), [sym_raw_string_literal] = ACTIONS(104), }, - [11] = { - [sym__top_level_item] = STATE(15), - [sym_preproc_include] = STATE(15), - [sym_define] = STATE(15), - [sym_preproc_if] = STATE(15), - [sym_undef] = STATE(15), - [sym_preproc_nothing] = STATE(15), - [sym_string_literal] = STATE(15), - [sym_char_literal] = STATE(15), - [aux_sym_translation_unit_repeat1] = STATE(15), + [STATE(11)] = { + [sym__top_level_item] = STATE(13), + [sym_preproc_include] = STATE(13), + [sym_define] = STATE(13), + [sym_preproc_if] = STATE(13), + [sym_undef] = STATE(13), + [sym_preproc_nothing] = STATE(13), + [sym_string_literal] = STATE(13), + [sym_char_literal] = STATE(13), + [aux_sym_translation_unit_repeat1] = STATE(13), [sym_nothing] = ACTIONS(106), [aux_sym_preproc_include_token1] = ACTIONS(108), [aux_sym_define_token1] = ACTIONS(110), @@ -1521,30 +1533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(106), [sym_raw_string_literal] = ACTIONS(124), }, - [12] = { - [sym__top_level_item] = STATE(12), - [sym_preproc_include] = STATE(12), - [sym_define] = STATE(12), - [sym_preproc_if] = STATE(12), - [sym_undef] = STATE(12), - [sym_preproc_nothing] = STATE(12), - [sym_string_literal] = STATE(12), - [sym_char_literal] = STATE(12), - [aux_sym_translation_unit_repeat1] = STATE(12), - [sym_nothing] = ACTIONS(126), - [aux_sym_preproc_include_token1] = ACTIONS(129), - [aux_sym_define_token1] = ACTIONS(132), - [aux_sym_preproc_if_token1] = ACTIONS(135), - [aux_sym_preproc_if_token2] = ACTIONS(81), - [aux_sym_undef_token1] = ACTIONS(138), - [aux_sym_preproc_nothing_token1] = ACTIONS(141), - [aux_sym_string_literal_token1] = ACTIONS(144), - [aux_sym_char_literal_token1] = ACTIONS(147), - [sym_integer_literal] = ACTIONS(150), - [sym_comment] = ACTIONS(126), - [sym_raw_string_literal] = ACTIONS(150), - }, - [13] = { + [STATE(12)] = { [sym__top_level_item] = STATE(14), [sym_preproc_include] = STATE(14), [sym_define] = STATE(14), @@ -1554,8 +1543,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(14), [sym_char_literal] = STATE(14), [aux_sym_translation_unit_repeat1] = STATE(14), - [ts_builtin_sym_end] = ACTIONS(153), - [sym_nothing] = ACTIONS(155), + [ts_builtin_sym_end] = ACTIONS(126), + [sym_nothing] = ACTIONS(128), [aux_sym_preproc_include_token1] = ACTIONS(7), [aux_sym_define_token1] = ACTIONS(9), [aux_sym_preproc_if_token1] = ACTIONS(11), @@ -1563,55 +1552,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_nothing_token1] = ACTIONS(15), [aux_sym_string_literal_token1] = ACTIONS(17), [aux_sym_char_literal_token1] = ACTIONS(19), - [sym_integer_literal] = ACTIONS(157), - [sym_comment] = ACTIONS(155), - [sym_raw_string_literal] = ACTIONS(157), - }, - [14] = { - [sym__top_level_item] = STATE(14), - [sym_preproc_include] = STATE(14), - [sym_define] = STATE(14), - [sym_preproc_if] = STATE(14), - [sym_undef] = STATE(14), - [sym_preproc_nothing] = STATE(14), - [sym_string_literal] = STATE(14), - [sym_char_literal] = STATE(14), - [aux_sym_translation_unit_repeat1] = STATE(14), - [ts_builtin_sym_end] = ACTIONS(159), - [sym_nothing] = ACTIONS(161), - [aux_sym_preproc_include_token1] = ACTIONS(164), - [aux_sym_define_token1] = ACTIONS(167), - [aux_sym_preproc_if_token1] = ACTIONS(170), - [aux_sym_undef_token1] = ACTIONS(173), - [aux_sym_preproc_nothing_token1] = ACTIONS(176), - [aux_sym_string_literal_token1] = ACTIONS(179), - [aux_sym_char_literal_token1] = ACTIONS(182), - [sym_integer_literal] = ACTIONS(185), - [sym_comment] = ACTIONS(161), - [sym_raw_string_literal] = ACTIONS(185), + [sym_integer_literal] = ACTIONS(130), + [sym_comment] = ACTIONS(128), + [sym_raw_string_literal] = ACTIONS(130), }, - [15] = { - [sym__top_level_item] = STATE(12), - [sym_preproc_include] = STATE(12), - [sym_define] = STATE(12), - [sym_preproc_if] = STATE(12), - [sym_undef] = STATE(12), - [sym_preproc_nothing] = STATE(12), - [sym_string_literal] = STATE(12), - [sym_char_literal] = STATE(12), - [aux_sym_translation_unit_repeat1] = STATE(12), - [sym_nothing] = ACTIONS(188), + [STATE(13)] = { + [sym__top_level_item] = STATE(15), + [sym_preproc_include] = STATE(15), + [sym_define] = STATE(15), + [sym_preproc_if] = STATE(15), + [sym_undef] = STATE(15), + [sym_preproc_nothing] = STATE(15), + [sym_string_literal] = STATE(15), + [sym_char_literal] = STATE(15), + [aux_sym_translation_unit_repeat1] = STATE(15), + [sym_nothing] = ACTIONS(132), [aux_sym_preproc_include_token1] = ACTIONS(108), [aux_sym_define_token1] = ACTIONS(110), [aux_sym_preproc_if_token1] = ACTIONS(112), - [aux_sym_preproc_if_token2] = ACTIONS(190), + [aux_sym_preproc_if_token2] = ACTIONS(134), [aux_sym_undef_token1] = ACTIONS(116), [aux_sym_preproc_nothing_token1] = ACTIONS(118), [aux_sym_string_literal_token1] = ACTIONS(120), [aux_sym_char_literal_token1] = ACTIONS(122), - [sym_integer_literal] = ACTIONS(192), - [sym_comment] = ACTIONS(188), - [sym_raw_string_literal] = ACTIONS(192), + [sym_integer_literal] = ACTIONS(136), + [sym_comment] = ACTIONS(132), + [sym_raw_string_literal] = ACTIONS(136), + }, + [STATE(14)] = { + [sym__top_level_item] = STATE(14), + [sym_preproc_include] = STATE(14), + [sym_define] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_undef] = STATE(14), + [sym_preproc_nothing] = STATE(14), + [sym_string_literal] = STATE(14), + [sym_char_literal] = STATE(14), + [aux_sym_translation_unit_repeat1] = STATE(14), + [ts_builtin_sym_end] = ACTIONS(138), + [sym_nothing] = ACTIONS(140), + [aux_sym_preproc_include_token1] = ACTIONS(143), + [aux_sym_define_token1] = ACTIONS(146), + [aux_sym_preproc_if_token1] = ACTIONS(149), + [aux_sym_undef_token1] = ACTIONS(152), + [aux_sym_preproc_nothing_token1] = ACTIONS(155), + [aux_sym_string_literal_token1] = ACTIONS(158), + [aux_sym_char_literal_token1] = ACTIONS(161), + [sym_integer_literal] = ACTIONS(164), + [sym_comment] = ACTIONS(140), + [sym_raw_string_literal] = ACTIONS(164), + }, + [STATE(15)] = { + [sym__top_level_item] = STATE(15), + [sym_preproc_include] = STATE(15), + [sym_define] = STATE(15), + [sym_preproc_if] = STATE(15), + [sym_undef] = STATE(15), + [sym_preproc_nothing] = STATE(15), + [sym_string_literal] = STATE(15), + [sym_char_literal] = STATE(15), + [aux_sym_translation_unit_repeat1] = STATE(15), + [sym_nothing] = ACTIONS(167), + [aux_sym_preproc_include_token1] = ACTIONS(170), + [aux_sym_define_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(176), + [aux_sym_preproc_if_token2] = ACTIONS(81), + [aux_sym_undef_token1] = ACTIONS(179), + [aux_sym_preproc_nothing_token1] = ACTIONS(182), + [aux_sym_string_literal_token1] = ACTIONS(185), + [aux_sym_char_literal_token1] = ACTIONS(188), + [sym_integer_literal] = ACTIONS(191), + [sym_comment] = ACTIONS(167), + [sym_raw_string_literal] = ACTIONS(191), }, }; @@ -1855,10 +1867,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_char_literal_token1, sym_comment, [266] = 2, - ACTIONS(216), 2, + ACTIONS(196), 2, sym_raw_string_literal, sym_integer_literal, - ACTIONS(214), 10, + ACTIONS(194), 10, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, @@ -1870,11 +1882,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_char_literal_token1, sym_comment, [283] = 2, - ACTIONS(220), 3, + ACTIONS(200), 3, sym_raw_string_literal, ts_builtin_sym_end, sym_integer_literal, - ACTIONS(218), 9, + ACTIONS(198), 9, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, @@ -1885,56 +1897,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_char_literal_token1, sym_comment, [300] = 2, - ACTIONS(228), 2, + ACTIONS(220), 3, sym_raw_string_literal, + ts_builtin_sym_end, sym_integer_literal, - ACTIONS(226), 10, + ACTIONS(218), 9, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_undef_token1, aux_sym_preproc_nothing_token1, aux_sym_string_literal_token1, aux_sym_char_literal_token1, sym_comment, [317] = 2, - ACTIONS(232), 2, + ACTIONS(204), 3, sym_raw_string_literal, + ts_builtin_sym_end, sym_integer_literal, - ACTIONS(230), 10, + ACTIONS(202), 9, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_undef_token1, aux_sym_preproc_nothing_token1, aux_sym_string_literal_token1, aux_sym_char_literal_token1, sym_comment, [334] = 2, - ACTIONS(236), 2, + ACTIONS(208), 3, sym_raw_string_literal, + ts_builtin_sym_end, sym_integer_literal, - ACTIONS(234), 10, + ACTIONS(206), 9, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_undef_token1, aux_sym_preproc_nothing_token1, aux_sym_string_literal_token1, aux_sym_char_literal_token1, sym_comment, [351] = 2, - ACTIONS(216), 3, + ACTIONS(224), 3, sym_raw_string_literal, ts_builtin_sym_end, sym_integer_literal, - ACTIONS(214), 9, + ACTIONS(222), 9, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, @@ -1945,26 +1957,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_char_literal_token1, sym_comment, [368] = 2, - ACTIONS(240), 2, + ACTIONS(228), 3, sym_raw_string_literal, + ts_builtin_sym_end, sym_integer_literal, - ACTIONS(238), 10, + ACTIONS(226), 9, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_undef_token1, aux_sym_preproc_nothing_token1, aux_sym_string_literal_token1, aux_sym_char_literal_token1, sym_comment, [385] = 2, - ACTIONS(212), 3, + ACTIONS(232), 3, sym_raw_string_literal, ts_builtin_sym_end, sym_integer_literal, - ACTIONS(210), 9, + ACTIONS(230), 9, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, @@ -1975,11 +1987,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_char_literal_token1, sym_comment, [402] = 2, - ACTIONS(208), 3, + ACTIONS(236), 3, sym_raw_string_literal, ts_builtin_sym_end, sym_integer_literal, - ACTIONS(206), 9, + ACTIONS(234), 9, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, @@ -1990,11 +2002,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_char_literal_token1, sym_comment, [419] = 2, - ACTIONS(232), 3, + ACTIONS(240), 3, sym_raw_string_literal, ts_builtin_sym_end, sym_integer_literal, - ACTIONS(230), 9, + ACTIONS(238), 9, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, @@ -2005,11 +2017,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_char_literal_token1, sym_comment, [436] = 2, - ACTIONS(204), 3, + ACTIONS(244), 3, sym_raw_string_literal, ts_builtin_sym_end, sym_integer_literal, - ACTIONS(202), 9, + ACTIONS(242), 9, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, @@ -2020,26 +2032,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_char_literal_token1, sym_comment, [453] = 2, - ACTIONS(224), 2, + ACTIONS(248), 3, sym_raw_string_literal, + ts_builtin_sym_end, sym_integer_literal, - ACTIONS(222), 10, + ACTIONS(246), 9, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_undef_token1, aux_sym_preproc_nothing_token1, aux_sym_string_literal_token1, aux_sym_char_literal_token1, sym_comment, [470] = 2, - ACTIONS(244), 3, + ACTIONS(212), 3, sym_raw_string_literal, ts_builtin_sym_end, sym_integer_literal, - ACTIONS(242), 9, + ACTIONS(210), 9, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, @@ -2050,11 +2062,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_char_literal_token1, sym_comment, [487] = 2, - ACTIONS(240), 3, + ACTIONS(196), 3, sym_raw_string_literal, ts_builtin_sym_end, sym_integer_literal, - ACTIONS(238), 9, + ACTIONS(194), 9, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, @@ -2065,55 +2077,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_char_literal_token1, sym_comment, [504] = 2, - ACTIONS(196), 3, + ACTIONS(204), 2, sym_raw_string_literal, - ts_builtin_sym_end, sym_integer_literal, - ACTIONS(194), 9, + ACTIONS(202), 10, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_undef_token1, aux_sym_preproc_nothing_token1, aux_sym_string_literal_token1, aux_sym_char_literal_token1, sym_comment, [521] = 2, - ACTIONS(248), 3, + ACTIONS(208), 2, sym_raw_string_literal, - ts_builtin_sym_end, sym_integer_literal, - ACTIONS(246), 9, + ACTIONS(206), 10, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_undef_token1, aux_sym_preproc_nothing_token1, aux_sym_string_literal_token1, aux_sym_char_literal_token1, sym_comment, [538] = 2, - ACTIONS(200), 3, + ACTIONS(212), 2, sym_raw_string_literal, - ts_builtin_sym_end, sym_integer_literal, - ACTIONS(198), 9, + ACTIONS(210), 10, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_undef_token1, aux_sym_preproc_nothing_token1, aux_sym_string_literal_token1, aux_sym_char_literal_token1, sym_comment, [555] = 2, - ACTIONS(220), 2, + ACTIONS(216), 2, sym_raw_string_literal, sym_integer_literal, - ACTIONS(218), 10, + ACTIONS(214), 10, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, @@ -2125,10 +2137,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_char_literal_token1, sym_comment, [572] = 2, - ACTIONS(200), 2, + ACTIONS(220), 2, sym_raw_string_literal, sym_integer_literal, - ACTIONS(198), 10, + ACTIONS(218), 10, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, @@ -2140,10 +2152,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_char_literal_token1, sym_comment, [589] = 2, - ACTIONS(212), 2, + ACTIONS(224), 2, sym_raw_string_literal, sym_integer_literal, - ACTIONS(210), 10, + ACTIONS(222), 10, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, @@ -2155,25 +2167,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_char_literal_token1, sym_comment, [606] = 2, - ACTIONS(224), 3, + ACTIONS(228), 2, sym_raw_string_literal, - ts_builtin_sym_end, sym_integer_literal, - ACTIONS(222), 9, + ACTIONS(226), 10, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_undef_token1, aux_sym_preproc_nothing_token1, aux_sym_string_literal_token1, aux_sym_char_literal_token1, sym_comment, [623] = 2, - ACTIONS(208), 2, + ACTIONS(232), 2, sym_raw_string_literal, sym_integer_literal, - ACTIONS(206), 10, + ACTIONS(230), 10, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, @@ -2185,25 +2197,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_char_literal_token1, sym_comment, [640] = 2, - ACTIONS(236), 3, + ACTIONS(236), 2, sym_raw_string_literal, - ts_builtin_sym_end, sym_integer_literal, - ACTIONS(234), 9, + ACTIONS(234), 10, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_undef_token1, aux_sym_preproc_nothing_token1, aux_sym_string_literal_token1, aux_sym_char_literal_token1, sym_comment, [657] = 2, - ACTIONS(204), 2, + ACTIONS(240), 2, sym_raw_string_literal, sym_integer_literal, - ACTIONS(202), 10, + ACTIONS(238), 10, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, @@ -2230,25 +2242,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_char_literal_token1, sym_comment, [691] = 2, - ACTIONS(228), 3, + ACTIONS(248), 2, sym_raw_string_literal, - ts_builtin_sym_end, sym_integer_literal, - ACTIONS(226), 9, + ACTIONS(246), 10, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_undef_token1, aux_sym_preproc_nothing_token1, aux_sym_string_literal_token1, aux_sym_char_literal_token1, sym_comment, [708] = 2, - ACTIONS(196), 2, + ACTIONS(200), 2, sym_raw_string_literal, sym_integer_literal, - ACTIONS(194), 10, + ACTIONS(198), 10, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, @@ -2260,15 +2272,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_char_literal_token1, sym_comment, [725] = 2, - ACTIONS(248), 2, + ACTIONS(216), 3, sym_raw_string_literal, + ts_builtin_sym_end, sym_integer_literal, - ACTIONS(246), 10, + ACTIONS(214), 9, sym_nothing, aux_sym_preproc_include_token1, aux_sym_define_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_undef_token1, aux_sym_preproc_nothing_token1, aux_sym_string_literal_token1, @@ -2281,7 +2293,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(254), 1, aux_sym_preproc_else_token1, - STATE(116), 1, + STATE(104), 1, sym_preproc_else, STATE(64), 2, sym_preproc_elif, @@ -2293,7 +2305,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, ACTIONS(256), 1, aux_sym_preproc_if_token2, - STATE(101), 1, + STATE(109), 1, sym_preproc_else, STATE(64), 2, sym_preproc_elif, @@ -2305,7 +2317,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, ACTIONS(258), 1, aux_sym_preproc_if_token2, - STATE(92), 1, + STATE(102), 1, sym_preproc_else, STATE(64), 2, sym_preproc_elif, @@ -2317,7 +2329,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, ACTIONS(260), 1, aux_sym_preproc_if_token2, - STATE(90), 1, + STATE(89), 1, sym_preproc_else, STATE(64), 2, sym_preproc_elif, @@ -2329,7 +2341,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, ACTIONS(262), 1, aux_sym_preproc_if_token2, - STATE(105), 1, + STATE(100), 1, sym_preproc_else, STATE(64), 2, sym_preproc_elif, @@ -2341,7 +2353,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, ACTIONS(264), 1, aux_sym_preproc_if_token2, - STATE(113), 1, + STATE(114), 1, sym_preproc_else, STATE(64), 2, sym_preproc_elif, @@ -2362,7 +2374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(275), 1, aux_sym_string_literal_token1, - STATE(25), 1, + STATE(46), 1, sym_string_literal, [869] = 4, ACTIONS(277), 1, @@ -2371,7 +2383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(281), 1, aux_sym_string_literal_token1, - STATE(39), 1, + STATE(20), 1, sym_string_literal, [882] = 4, ACTIONS(283), 1, @@ -2380,140 +2392,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(287), 1, aux_sym_string_literal_token1, - STATE(33), 1, + STATE(42), 1, sym_string_literal, [895] = 3, ACTIONS(289), 1, sym_preproc_continuation_line, ACTIONS(291), 1, sym_preproc_line, - STATE(69), 1, + STATE(81), 1, aux_sym_define_repeat1, [905] = 3, ACTIONS(293), 1, sym_preproc_continuation_line, ACTIONS(295), 1, sym_preproc_line, - STATE(73), 1, + STATE(74), 1, aux_sym_define_repeat1, [915] = 3, - ACTIONS(297), 1, + ACTIONS(293), 1, sym_preproc_continuation_line, - ACTIONS(299), 1, + ACTIONS(297), 1, sym_preproc_line, - STATE(86), 1, + STATE(74), 1, aux_sym_define_repeat1, [925] = 3, ACTIONS(293), 1, sym_preproc_continuation_line, - ACTIONS(301), 1, + ACTIONS(299), 1, sym_preproc_line, - STATE(73), 1, + STATE(74), 1, aux_sym_define_repeat1, [935] = 3, - ACTIONS(303), 1, + ACTIONS(301), 1, sym_preproc_continuation_line, - ACTIONS(305), 1, + ACTIONS(303), 1, sym_preproc_line, - STATE(74), 1, + STATE(71), 1, aux_sym_define_repeat1, [945] = 3, - ACTIONS(307), 1, + ACTIONS(305), 1, sym_preproc_continuation_line, - ACTIONS(310), 1, + ACTIONS(307), 1, sym_preproc_line, - STATE(73), 1, + STATE(76), 1, aux_sym_define_repeat1, [955] = 3, - ACTIONS(293), 1, + ACTIONS(309), 1, sym_preproc_continuation_line, ACTIONS(312), 1, sym_preproc_line, - STATE(73), 1, + STATE(74), 1, aux_sym_define_repeat1, [965] = 3, - ACTIONS(314), 1, + ACTIONS(293), 1, sym_preproc_continuation_line, - ACTIONS(316), 1, + ACTIONS(314), 1, sym_preproc_line, - STATE(85), 1, + STATE(74), 1, aux_sym_define_repeat1, [975] = 3, - ACTIONS(318), 1, + ACTIONS(293), 1, sym_preproc_continuation_line, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_preproc_line, - STATE(82), 1, + STATE(74), 1, aux_sym_define_repeat1, [985] = 3, - ACTIONS(322), 1, + ACTIONS(318), 1, sym_preproc_continuation_line, - ACTIONS(324), 1, + ACTIONS(320), 1, sym_preproc_line, - STATE(80), 1, + STATE(78), 1, aux_sym_define_repeat1, [995] = 3, ACTIONS(293), 1, sym_preproc_continuation_line, - ACTIONS(326), 1, + ACTIONS(322), 1, sym_preproc_line, - STATE(73), 1, + STATE(74), 1, aux_sym_define_repeat1, [1005] = 3, - ACTIONS(328), 1, + ACTIONS(324), 1, sym_preproc_continuation_line, - ACTIONS(330), 1, + ACTIONS(326), 1, sym_preproc_line, - STATE(83), 1, + STATE(70), 1, aux_sym_define_repeat1, [1015] = 3, - ACTIONS(293), 1, + ACTIONS(328), 1, sym_preproc_continuation_line, - ACTIONS(332), 1, + ACTIONS(330), 1, sym_preproc_line, - STATE(73), 1, + STATE(82), 1, aux_sym_define_repeat1, [1025] = 3, - ACTIONS(334), 1, + ACTIONS(293), 1, sym_preproc_continuation_line, - ACTIONS(336), 1, + ACTIONS(332), 1, sym_preproc_line, - STATE(71), 1, + STATE(74), 1, aux_sym_define_repeat1, [1035] = 3, ACTIONS(293), 1, sym_preproc_continuation_line, - ACTIONS(338), 1, + ACTIONS(334), 1, sym_preproc_line, - STATE(73), 1, + STATE(74), 1, aux_sym_define_repeat1, [1045] = 3, - ACTIONS(293), 1, + ACTIONS(336), 1, sym_preproc_continuation_line, - ACTIONS(340), 1, + ACTIONS(338), 1, sym_preproc_line, - STATE(73), 1, + STATE(85), 1, aux_sym_define_repeat1, [1055] = 3, - ACTIONS(342), 1, + ACTIONS(340), 1, sym_preproc_continuation_line, - ACTIONS(344), 1, + ACTIONS(342), 1, sym_preproc_line, - STATE(78), 1, + STATE(69), 1, aux_sym_define_repeat1, [1065] = 3, ACTIONS(293), 1, sym_preproc_continuation_line, - ACTIONS(346), 1, + ACTIONS(344), 1, sym_preproc_line, - STATE(73), 1, + STATE(74), 1, aux_sym_define_repeat1, [1075] = 3, - ACTIONS(293), 1, + ACTIONS(346), 1, sym_preproc_continuation_line, ACTIONS(348), 1, sym_preproc_line, - STATE(73), 1, + STATE(75), 1, aux_sym_define_repeat1, [1085] = 1, ACTIONS(350), 1, @@ -2523,88 +2535,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, [1093] = 1, ACTIONS(354), 1, - anon_sym_LF, + aux_sym_preproc_if_token2, [1097] = 1, ACTIONS(356), 1, - aux_sym_preproc_if_token2, + anon_sym_LF, [1101] = 1, ACTIONS(358), 1, - anon_sym_LF, + sym_identifier, [1105] = 1, - ACTIONS(260), 1, - aux_sym_preproc_if_token2, - [1109] = 1, ACTIONS(360), 1, - sym_identifier, - [1113] = 1, + sym_path, + [1109] = 1, ACTIONS(362), 1, - anon_sym_LF, - [1117] = 1, - ACTIONS(256), 1, + anon_sym_GT, + [1113] = 1, + ACTIONS(262), 1, aux_sym_preproc_if_token2, - [1121] = 1, + [1117] = 1, ACTIONS(364), 1, sym_identifier, - [1125] = 1, + [1121] = 1, ACTIONS(366), 1, - anon_sym_GT, - [1129] = 1, - ACTIONS(258), 1, - aux_sym_preproc_if_token2, - [1133] = 1, + anon_sym_LF, + [1125] = 1, ACTIONS(368), 1, - anon_sym_GT, - [1137] = 1, + anon_sym_LF, + [1129] = 1, ACTIONS(370), 1, + anon_sym_GT, + [1133] = 1, + ACTIONS(372), 1, anon_sym_LF, + [1137] = 1, + ACTIONS(250), 1, + aux_sym_preproc_if_token2, [1141] = 1, - ACTIONS(262), 1, + ACTIONS(264), 1, aux_sym_preproc_if_token2, [1145] = 1, - ACTIONS(372), 1, - ts_builtin_sym_end, - [1149] = 1, ACTIONS(374), 1, - anon_sym_LF, - [1153] = 1, + aux_sym_preproc_if_token2, + [1149] = 1, ACTIONS(376), 1, anon_sym_LF, - [1157] = 1, + [1153] = 1, ACTIONS(378), 1, aux_sym_preproc_if_token2, - [1161] = 1, + [1157] = 1, ACTIONS(380), 1, anon_sym_LF, - [1165] = 1, + [1161] = 1, ACTIONS(382), 1, sym_path, + [1165] = 1, + ACTIONS(256), 1, + aux_sym_preproc_if_token2, [1169] = 1, ACTIONS(384), 1, - sym_path, + anon_sym_LF, [1173] = 1, - ACTIONS(264), 1, + ACTIONS(258), 1, aux_sym_preproc_if_token2, [1177] = 1, ACTIONS(386), 1, - anon_sym_GT, + anon_sym_LF, [1181] = 1, ACTIONS(388), 1, - anon_sym_LF, + sym_path, [1185] = 1, ACTIONS(390), 1, - sym_path, + anon_sym_GT, [1189] = 1, - ACTIONS(250), 1, - aux_sym_preproc_if_token2, - [1193] = 1, ACTIONS(392), 1, anon_sym_LF, + [1193] = 1, + ACTIONS(260), 1, + aux_sym_preproc_if_token2, [1197] = 1, ACTIONS(394), 1, - anon_sym_LF, + ts_builtin_sym_end, [1201] = 1, ACTIONS(396), 1, - aux_sym_preproc_if_token2, + sym_identifier, [1205] = 1, ACTIONS(398), 1, sym_identifier, @@ -2616,7 +2628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, [1217] = 1, ACTIONS(404), 1, - sym_identifier, + anon_sym_LF, }; static const uint32_t ts_small_parse_table_map[] = { @@ -2730,193 +2742,207 @@ static const uint32_t ts_small_parse_table_map[] = { static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0, 0, 0), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8), - [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(65), - [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(117), - [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6), - [81] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [83] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(118), - [86] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(79), - [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(27), - [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), - [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8), - [98] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 2), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(66), + [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3), + [81] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), + [83] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(117), + [86] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(73), + [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(18), + [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(19), + [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [98] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 2, 0, 0), [100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 1), + [102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 1, 0, 0), [104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(12), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(67), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(119), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(120), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(84), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(36), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(34), - [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(12), - [153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(14), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(66), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(96), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(93), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(81), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(43), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(52), - [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(14), - [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define, 5), - [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define, 5), - [198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undef, 5), - [200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undef, 5), - [202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4), - [204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4), - [206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define, 4), - [208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define, 4), - [210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 4), - [212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 4), - [214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_nothing, 3), - [216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_nothing, 3), - [218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 3), - [220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 3), - [222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_nothing, 2), - [224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_nothing, 2), - [226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 2), - [228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 2), - [230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 2), - [232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 2), - [234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 1), - [236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 1), - [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 1), - [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 1), - [242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undef, 4), - [244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undef, 4), - [246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5), - [248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5), - [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), + [116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), + [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), + [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(14), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(67), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(91), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(95), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(14), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(15), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(119), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(15), + [194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 0), + [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 0), + [198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undef, 5, 0, 0), + [200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undef, 5, 0, 0), + [202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 1, 0, 0), + [204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 1, 0, 0), + [206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 1, 0, 0), + [208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 1, 0, 0), + [210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 2, 0, 0), + [212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 2, 0, 0), + [214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 2, 0, 0), + [216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 2, 0, 0), + [218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_nothing, 2, 0, 0), + [220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_nothing, 2, 0, 0), + [222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 3, 0, 0), + [224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 3, 0, 0), + [226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_nothing, 3, 0, 0), + [228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_nothing, 3, 0, 0), + [230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 4, 0, 0), + [232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 4, 0, 0), + [234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define, 4, 0, 0), + [236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define, 4, 0, 0), + [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 0), + [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 0), + [242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undef, 4, 0, 0), + [244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undef, 4, 0, 0), + [246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define, 5, 0, 0), + [248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define, 5, 0, 0), + [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(10), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_repeat1, 2), SHIFT_REPEAT(73), - [310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_define_repeat1, 2), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_repeat1, 2, 0, 0), SHIFT_REPEAT(74), + [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_define_repeat1, 2, 0, 0), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [372] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [394] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token_raw_string_literal = 0, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token_raw_string_literal] = sym_raw_string_literal, +}; + +static const bool ts_external_scanner_states[2][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token_raw_string_literal] = true, + }, }; #ifdef __cplusplus @@ -2928,13 +2954,17 @@ bool tree_sitter_preproc_external_scanner_scan(void *, TSLexer *, const bool *); unsigned tree_sitter_preproc_external_scanner_serialize(void *, char *); void tree_sitter_preproc_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 -#define extern __declspec(dllexport) +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) #endif -extern const TSLanguage *tree_sitter_preproc(void) { +TS_PUBLIC const TSLanguage *tree_sitter_preproc(void) { static const TSLanguage language = { - .version = LANGUAGE_VERSION, + .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, @@ -2953,7 +2983,7 @@ extern const TSLanguage *tree_sitter_preproc(void) { .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, + .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, .external_scanner = { &ts_external_scanner_states[0][0], diff --git a/tree-sitter-preproc/src/tree_sitter/alloc.h b/tree-sitter-preproc/src/tree_sitter/alloc.h new file mode 100644 index 000000000..1abdd1201 --- /dev/null +++ b/tree-sitter-preproc/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/tree-sitter-preproc/src/tree_sitter/array.h b/tree-sitter-preproc/src/tree_sitter/array.h new file mode 100644 index 000000000..a17a574f0 --- /dev/null +++ b/tree-sitter-preproc/src/tree_sitter/array.h @@ -0,0 +1,291 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(push) +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(pop) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/tree-sitter-preproc/src/tree_sitter/parser.h b/tree-sitter-preproc/src/tree_sitter/parser.h index 2b14ac104..cdbe64ccc 100644 --- a/tree-sitter-preproc/src/tree_sitter/parser.h +++ b/tree-sitter-preproc/src/tree_sitter/parser.h @@ -13,12 +13,17 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -typedef uint16_t TSStateId; - #ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata TSLanguageMetadata; +typedef struct TSLanguageMetadata { + uint8_t major_version; + uint8_t minor_version; + uint8_t patch_version; +} TSLanguageMetadata; #endif typedef struct { @@ -27,10 +32,11 @@ typedef struct { bool inherited; } TSFieldMapEntry; +// Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; -} TSFieldMapSlice; +} TSMapSlice; typedef struct { bool visible; @@ -48,6 +54,7 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); }; typedef enum { @@ -79,6 +86,12 @@ typedef struct { uint16_t external_lex_state; } TSLexMode; +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + typedef union { TSParseAction action; struct { @@ -87,8 +100,13 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { - uint32_t version; + uint32_t abi_version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; @@ -104,13 +122,13 @@ struct TSLanguage { const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; - const TSFieldMapSlice *field_map_slices; + const TSMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; + const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -124,15 +142,48 @@ struct TSLanguage { void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; + const char *name; + const TSSymbol *reserved_words; + uint16_t max_reserved_word_set_size; + uint32_t supertype_count; + const TSSymbol *supertype_symbols; + const TSMapSlice *supertype_map_slices; + const TSSymbol *supertype_map_entries; + TSLanguageMetadata metadata; }; +static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + const TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + const TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + #define START_LEXER() \ bool result = false; \ bool skip = false; \ + UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -148,6 +199,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -166,7 +228,7 @@ struct TSLanguage { * Parse Table Macros */ -#define SMALL_STATE(id) id - LARGE_STATE_COUNT +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) #define STATE(id) id @@ -176,7 +238,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value \ + .state = (state_value) \ } \ }} @@ -184,7 +246,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value, \ + .state = (state_value), \ .repetition = true \ } \ }} @@ -197,14 +259,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \